[
  {
    "path": ".github/actions/nix-common-setup/action.yml",
    "content": "name: Setup Nix Environment\ninputs:\n  CACHIX_AUTH_TOKEN:\n    required: true\n    description: 'Cachix Auth Token'\nruns:\n  using: \"composite\"\n  steps:\n\n    - name: Installing Nix\n      uses: cachix/install-nix-action@v31\n      with:\n        nix_path: nixpkgs=channel:nixos-unstable\n\n    - uses: cachix/cachix-action@v17\n      with:\n        name: tweag-monad-bayes\n        authToken: \"${{ inputs.CACHIX_AUTH_TOKEN }}\"\n"
  },
  {
    "path": ".github/dependabot.yml",
    "content": "version: 2\nupdates:\n\n  - package-ecosystem: github-actions\n    directory: \"/\"\n    schedule:\n      interval: daily\n      time: '00:00'\n      timezone: UTC\n    open-pull-requests-limit: 10\n    commit-message:\n        prefix: \"chore\"\n        include: \"scope\"\n\n# By default, when `package-ecosystem: github-actions` is set,\n# dependabot only looks in the `.github/workflows` directory,\n# even when setting `directory: \"/\"`.\n# But we need to keep updating the common nix setup as well.\n# Hopefully the following works.\n  - package-ecosystem: github-actions\n    directory: \"/.github/actions/nix-common-setup\"\n    schedule:\n      interval: daily\n      time: '00:00'\n      timezone: UTC\n    open-pull-requests-limit: 10\n    commit-message:\n        prefix: \"chore-actions\"\n        include: \"scope\"\n"
  },
  {
    "path": ".github/workflows/ci.yml",
    "content": "name: ci\non:\n  push:\n    branches:\n      - newdocs\n      - master\npermissions:\n  contents: write\njobs:\n  deploy:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v6\n      - uses: actions/setup-python@v6\n        with:\n          python-version: 3.x\n      - run: pip install mkdocs-material\n      # - run: mkdocs gh-deploy --force\n"
  },
  {
    "path": ".github/workflows/nix.yml",
    "content": "---\nname: \"nix-build\"\n\non:\n  pull_request:\n  push:\n    branches:\n      - master\n\njobs:\n\n  lint:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v6\n      - name: Setup Nix Environment\n        uses: ./.github/actions/nix-common-setup\n        with:\n          CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}\n      - name: Lint\n        run: nix --print-build-logs build .#pre-commit\n\n  build:\n    needs: lint\n    strategy:\n      matrix:\n        include:\n          - os: ubuntu-latest\n            system: x86_64-linux\n          - os: macos-latest\n            system: x86_64-darwin\n    runs-on: ${{ matrix.os }}\n    steps:\n      - uses: actions/checkout@v6\n      - name: Setup Nix Environment\n        uses: ./.github/actions/nix-common-setup\n        with:\n          CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}\n      - name: Build\n        run: nix --print-build-logs build .#packages.${{ matrix.system }}.monad-bayes\n      - name: Development environment (package only)\n        run: nix --print-build-logs develop .#packages.${{ matrix.system }}.monad-bayes --command echo Ready\n\n  build-all-ghcs:\n    needs: lint\n    strategy:\n      matrix:\n        ghc: [\"ghc90\", \"ghc92\", \"ghc94\", \"ghc96\", \"ghc98\", \"ghc910\"]\n        include:\n          - os: ubuntu-latest\n            system: x86_64-linux\n          - os: macos-latest\n            system: x86_64-darwin\n    runs-on: ${{ matrix.os }}\n    steps:\n      - uses: actions/checkout@v6\n      - name: Setup Nix Environment\n        uses: ./.github/actions/nix-common-setup\n        with:\n          CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}\n      - name: Build\n        run: nix --print-build-logs build .#packages.${{ matrix.system }}.monad-bayes-per-ghc.${{ matrix.ghc }}\n      - name: Development environment (package only)\n        run: nix --print-build-logs develop .#packages.${{ matrix.system }}.monad-bayes-per-ghc.${{ matrix.ghc }} --command echo Ready\n\n  notebooks:\n    needs:\n      - build\n      - build-all-ghcs\n    strategy:\n      matrix:\n        include:\n          - os: ubuntu-latest\n            system: x86_64-linux\n          # Jupyenv doesn't support Darwin yet, https://github.com/tweag/jupyenv/issues/388\n          # - os: macos-latest\n          #   system: x86_64-darwin\n    runs-on: ${{ matrix.os }}\n    steps:\n      - uses: actions/checkout@v6\n      - name: Setup Nix Environment\n        uses: ./.github/actions/nix-common-setup\n        with:\n          CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}\n      - name: Development environment (complete)\n        run: nix --print-build-logs develop --command echo Ready\n      - name: Check whether notebook *.html files are up to date\n        run: |\n          ./regenerate_notebooks.sh\n          git diff --exit-code || (echo \"Please update notebooks by running regenerate_notebooks.sh, and inspecting and committing the result.\" && exit 1)\n"
  },
  {
    "path": ".github/workflows/update-flake-lock.yml",
    "content": "name: update-flake-lock\non:\n  workflow_dispatch: # allows manual triggering\n  schedule:\n    - cron: '0 0 * * 0' # runs weekly on Sunday at 00:00\n\njobs:\n  lockfile:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v6\n      - name: Install Nix\n        uses: cachix/install-nix-action@v31\n        with:\n          extra_nix_config: |\n            access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}\n      - name: Update flake.lock\n        uses: DeterminateSystems/update-flake-lock@v28\n"
  },
  {
    "path": ".gitignore",
    "content": "src/data\ndocs/site\nvenv\n_cache\ndocs/build\n*.csv\n*.pdf\n*.dat\n*.aux\n*.chi\n*.chs.h\n*.dyn_hi\n*.dyn_o\n*.eventlog\n*.hi\n*.hp\nstack.yaml.lock\n.vscode/*\n*.o\n*.prof\n.HTF/\n.cabal-sandbox/\n.ghc.environment.*\n.hpc\n.hsenv\n.vscode\n.envrc\n.stack-work/\ncabal-dev\ncabal.project.local\ncabal.project.local~\ncabal.sandbox.config\ndist\ndist-*\n/result\n/.pre-commit-config.yaml\n/.direnv\nvenv/\n.venv/\n.ipynb_checkpoints/\n.netlify/\n.jupyter/\nbuild/\ncache/\n"
  },
  {
    "path": ".hlint.yaml",
    "content": "- ignore: {}\n"
  },
  {
    "path": "CHANGELOG.md",
    "content": "# 1.3.0.4\n\n- Allowed GHC 9.10\n- Updated some version bounds\n\n# 1.3.0.3\n\n- Relaxed some version bounds\n\n# 1.3.0.2\n\n- Relaxed some version bounds\n\n# 1.3.0.1\n\n- Support for GHC 9.8\n\n# 1.3.0\n\n- Support for GHC 9.6\n- Replaced transformers' `ListT` by\n  (https://github.com/tweag/monad-bayes/pull/295)\n- Naming fixes for `Sampler` and `SamplerT`\n\n# 1.2.0\n\n- Renamed monad transformers idiomatically\n  (https://github.com/tweag/monad-bayes/pull/295)\n\n# 1.1.1\n\n- add fixture tests for benchmark models\n- extensive documentation improvements\n- add `poissonPdf`\n- Fix TUI inference\n- Fix flaky test\n- Support GHC 9.4\n\n# 1.1.0\n\n- extensive notebook improvements\n\n# 1.0.0 (2022-09-10)\n\n- host website from repo\n- host notebooks from repo\n- use histogram-fill\n\n# 0.2.0 (2022-07-26)\n\n- rename various functions to match the names of the corresponding types (e.g. `Enumerator` goes with `enumerator`)\n- add configs as arguments to inference methods `smc` and `mcmc`\n- add rudimentary tests for all inference methods\n- put `mcmc` as inference method in new module `Control.Monad.Bayes.Inference.MCMC`\n- update history of changelog in line with semantic versioning conventions\n- bumped to GHC 9.2.3\n\n# 0.1.5 (2022-07-26)\n\n- Refactor of sampler to be parametric in the choice of a pair of IO monad and RNG\n\n# 0.1.4 (2022-06-15)\n\nAddition of new helper functions, plotting tools, tests, and Integrator monad.\n\n- helpers include: `toEmpirical` (list of samples to empirical distribution) and `toBins` (simple histogramming)\n- `Integrator` is an instance of `MonadDistribution` for numerical integration\n- `notebooks` now contains working notebook-based tutorials and examples\n- new tests, including with conjugate distributions to compare analytic solution against inferred posterior\n- `models` directory is cleaned up. New sequential models using `pipes` package to represent monadic streams\n\n# 0.1.3 (2022-06-08)\n\nClean up of unused functions and broken code\n\n- remove unused functions in `Weighted` and `Population`\n- remove broken models in `models`\n- explicit imports\n- added some global language extensions\n\n# 0.1.2 (2022-06-08)\n\nAdd documentation\n\n- docs written in markdown\n- docs built by sphinx\n\n# 0.1.1 (2020-04-08)\n\n- New exported function: `Control.Monad.Bayes.Class` now exports `discrete`.\n\n# 0.1.0 (2020-02-17)\n\nInitial release.\n"
  },
  {
    "path": "LICENSE.md",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2020 Adam Scibior\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n"
  },
  {
    "path": "MAINTAINERS.md",
    "content": "# GHC compatibility and Cabal dependency version bounds\n\n## Overview\n\n`monad-bayes` supports the three most recent [major versions][ghc-major] of\nGHC:\n- CI builds and tests against **all supported versions**. The CI setup is the\n  source of truth for which GHC versions `monad-bayes` supports.\n- The local environment (e.g., stack.yaml) sets up **a supported version** of\n  GHC.\n- The Cabal dependency version bounds for each dependency are as follows:\n  The **lower bound** is taken from `cabal gen-bounds` run against the oldest\n  supported GHC version. The **upper bound** is taken from `cabal gen-bounds`\n  run against the newest supported GHC version.\n\n## What to do when a new major GHC version has been released\n\nA **new major GHC version** has been released. Here's what you need to do:\n- **Add the new major GHC version** to the CI build matrix and **drop the\n  oldest version** that was previously supported.\n- Make sure the the **local environment** (e.g., stack.yaml) still sets up a\n  supported version of GHC. If not, update it.\n- Update the Cabal **dependency bounds** as described above.\n\n## How to release a new version\n\n- Open a separate branch `release` and a merge request. On this branch, do the following:\n- Update the file `CHANGELOG.md`, using the diff to the last release.\n- Increment the version in `monad-bayes.cabal`. See the [Hackage Package\n  Versioning Policy][hackage-pvp].\n- Upload the package candidate sources:\n  ```console\n  $ dir=$(mktemp -d monad-bayes-sdist.XXXXXX)\n  $ cabal v2-sdist --builddir=\"$dir\"\n  $ cabal upload --user=<hackage user> --password=<hackage password> \"$dir/sdist/*.tar.gz\"\n  $ rm -rf \"$dir\"\n  ```\n- Upload the package candidate documentation:\n  ```console\n  $ dir=$(mktemp -d monad-bayes-docs.XXXXXX)\n  $ cabal v2-haddock --builddir=\"$dir\" --haddock-for-hackage --enable-doc\n  $ cabal upload --documentation --user=<hackage user> --password=<hackage password> \"$dir/*-docs.tar.gz\"\n  $ rm -rf \"$dir\"\n  ```\n- Check the candidate's Hackage page, make sure everything looks as expected.\n- When you're ready, and the CI passes for your merge request, repeat the above `cabal upload` commands (for sources and\n  documentation), adding `--publish` so the uploads are no longer marked as\n  candidates but as proper releases.\n- Merge the `release` branch.\n- Add a `git` tag in the form `vmajor-major-minor`, e.g. `v1.1.0`, to the commit that was uploaded:\n  ```console\n  git tag v1.2.3\n  git push --tags\n  ```\n\n[ghc-major]: https://gitlab.haskell.org/ghc/ghc/wikis/working-conventions/releases#major-releases\n[hackage-pvp]: https://pvp.haskell.org/\n\n\n## Documentation\n\nThe docs are built with MkDocs. Serve locally with: `mkdocs serve`. Site is served online with Netlify.\n\n# Benchmarking\n\n## Quick benchmark\n\n* Run `cabal run single -- -m MODEL -a ALG`\n  * For `MODEL`, insert e.g. `LR100`\n  * For `ALG`, insert e.g. `SMC`\n  * See `benchmark/Single.hs` for details\n\n## Extensive benchmark\n\n* Run `cabal bench speed-bench`\n* It will run several benchmarks of differing complexity, and try to plot them using Python Pandas\n* Look at `samples.pdf`\n"
  },
  {
    "path": "README.md",
    "content": "# [Monad-Bayes](https://monad-bayes.netlify.app/)\n\nA library for probabilistic programming in Haskell. \n\n<!-- [![Hackage](https://img.shields.io/hackage/v/monad-bayes.svg)](https://hackage.haskell.org/package/monad-bayes)\n[![Stackage](http://stackage.org/package/monad-bayes/badge/lts)](http://stackage.org/lts/package/monad-bayes)\n[![Hackage Deps](https://img.shields.io/hackage-deps/v/monad-bayes.svg)](http://packdeps.haskellers.com/reverse/monad-bayes)\n[![Build status](https://badge.buildkite.com/147af088063e8619fcf52ecf93fa7dd3353a2e8a252ef8e6ad.svg?branch=master)](https://buildkite.com/tweag-1/monad-bayes) -->\n\n[See the docs](https://monad-bayes.netlify.app/) for a user guide, notebook-style tutorials, an example gallery, and a detailed account of the implementation.\n\n<!-- Monad-Bayes is a library for **probabilistic programming in Haskell**. The emphasis is on composition of inference algorithms, and is implemented in terms of monad transformers. -->\n\n<!-- See the [documentation](https://monad-bayes.netlify.app/) for a quick-start user guide and a reference overview of how it all works. -->\n\nCreated by [Adam Scibior][adam-web] ([@adscib][adam-github]), documentation, website and newer features by [Reuben][reuben-web], maintained by [Tweag][tweagio].\n\n## Project status\n\nNow that `monad-bayes` has been released on Hackage, and the documentation and the API has been updated, we will focus on adding new features. See the Github issues to get a sense of what is being prepared, and please feel free to make requests.\n\n## Background\n\nThe basis for the code in this repository is the ICFP 2018 paper [2]. For the\ncode associated with the Haskell2015 paper [1], see the [`haskell2015`\ntag][haskell2015-tag].\n\n[1] Adam M. Ścibior, Zoubin Ghahramani, and Andrew D. Gordon. 2015. [Practical\nprobabilistic programming with monads][haskell2015-doi]. In _Proceedings of the\n2015 ACM SIGPLAN Symposium on Haskell_ (Haskell ’15), Association for Computing\nMachinery, Vancouver, BC, Canada, 165–176.\n\n[2] Adam M. Ścibior, Ohad Kammar, and Zoubin Ghahramani. 2018. [Functional\nprogramming for modular Bayesian inference][icfp2018-doi]. In _Proceedings of\nthe ACM on Programming Languages_ Volume 2, ICFP (July 2018), 83:1–83:29.\n\n[3] Adam M. Ścibior. 2019. [Formally justified and modular Bayesian inference\nfor probabilistic programs][thesis-doi]. Thesis. University of Cambridge.\n\n## Hacking\n\n1. Install `stack` by following [these instructions][stack-install].\n\n2. Clone the repository using one of these URLs:\n   ```\n   git clone git@github.com:tweag/monad-bayes.git\n   git clone https://github.com/tweag/monad-bayes.git\n   ```\n\nNow you can use `stack build`, `stack test` and `stack ghci`.\n\n**To view the notebooks, go to the website**. To use the notebooks interactively:\n\n1. Compile the source: `stack build`\n2. If you do not have `nix` [install it](https://nixos.org/download.html).\n3. Run `nix develop --system x86_64-darwin --extra-experimental-features nix-command --extra-experimental-features flakes` - this should open a nix shell. For Linux use `x86_64-linux` for `--system` option instead. \n4. Run `jupyter-lab` from the nix shell to load the notebooks.\n\nYour mileage may vary. \n\n[adam-github]: https://github.com/adscib\n[adam-web]: https://www.cs.ubc.ca/~ascibior/\n[reuben-web]: https://reubencohngordon.com/\n[haskell2015-doi]: https://doi.org/10.1145/2804302.2804317\n[haskell2015-tag]: https://github.com/tweag/monad-bayes/tree/haskell2015\n[icfp2018-doi]: https://doi.org/10.1145/3236778\n[models]: https://github.com/tweag/monad-bayes/tree/master/models\n[stack-install]: https://docs.haskellstack.org/en/stable/install_and_upgrade/\n[thesis-doi]: https://doi.org/10.17863/CAM.42233\n[tweagio]: https://tweag.io\n"
  },
  {
    "path": "Setup.hs",
    "content": "import Distribution.Simple\n\nmain = defaultMain\n"
  },
  {
    "path": "benchmark/SSM.hs",
    "content": "module Main where\n\nimport Control.Monad (forM_)\nimport Control.Monad.Bayes.Inference.MCMC\nimport Control.Monad.Bayes.Inference.PMMH as PMMH (pmmh)\nimport Control.Monad.Bayes.Inference.RMSMC (rmsmcDynamic)\nimport Control.Monad.Bayes.Inference.SMC\nimport Control.Monad.Bayes.Inference.SMC2 as SMC2 (smc2)\nimport Control.Monad.Bayes.Population\nimport Control.Monad.Bayes.Population (resampleMultinomial, runPopulationT)\nimport Control.Monad.Bayes.Sampler.Strict (sampleIO, sampleIOfixed, sampleWith)\nimport Control.Monad.Bayes.Weighted (unweighted)\nimport Control.Monad.IO.Class (MonadIO (liftIO))\nimport NonlinearSSM (generateData, model, param)\nimport NonlinearSSM.Algorithms\nimport System.Random.Stateful (mkStdGen, newIOGenM)\n\nmain :: IO ()\nmain = sampleIOfixed $ do\n  dat <- generateData t\n  let ys = map snd dat\n  forM_ [SMC, RMSMCDynamic, PMMH, SMC2] $ \\alg -> do\n    liftIO $ print alg\n    result <- runAlgFixed ys alg\n    liftIO $ putStrLn result\n"
  },
  {
    "path": "benchmark/Single.hs",
    "content": "{-# LANGUAGE DerivingStrategies #-}\n{-# LANGUAGE ImportQualifiedPost #-}\n\nimport Control.Applicative (Applicative (..))\nimport Control.Monad.Bayes.Sampler.Strict\nimport Data.Time (diffUTCTime, getCurrentTime)\nimport Helper\nimport Options.Applicative\n  ( ParserInfo,\n    auto,\n    execParser,\n    fullDesc,\n    help,\n    info,\n    long,\n    maybeReader,\n    option,\n    short,\n  )\n-- Prelude exports liftA2 from GHC 9.6 on, see https://github.com/haskell/core-libraries-committee/blob/main/guides/export-lifta2-prelude.md\n-- import Control.Applicative further up can be removed once we don't support GHC <= 9.4 anymore\n\nimport Prelude hiding (Applicative (..))\n\ninfer :: Model -> Alg -> IO ()\ninfer model alg = do\n  x <- sampleIOfixed (runAlg model alg)\n  print x\n\nopts :: ParserInfo (Model, Alg)\nopts = flip info fullDesc $ liftA2 (,) model alg\n  where\n    model =\n      option\n        (maybeReader parseModel)\n        ( long \"model\"\n            <> short 'm'\n            <> help \"Model\"\n        )\n    alg =\n      option\n        auto\n        ( long \"alg\"\n            <> short 'a'\n            <> help \"Inference algorithm\"\n        )\n\nmain :: IO ()\nmain = do\n  (model, alg) <- execParser opts\n  startTime <- getCurrentTime\n  infer model alg\n  endTime <- getCurrentTime\n  print (diffUTCTime endTime startTime)\n"
  },
  {
    "path": "benchmark/Speed.hs",
    "content": "{-# LANGUAGE DerivingStrategies #-}\n{-# LANGUAGE ImportQualifiedPost #-}\n{-# OPTIONS_GHC -Wall #-}\n\nmodule Main (main) where\n\nimport Control.Monad.Bayes.Class (MonadMeasure)\nimport Control.Monad.Bayes.Inference.MCMC (MCMCConfig (MCMCConfig, numBurnIn, numMCMCSteps, proposal), Proposal (SingleSiteMH))\nimport Control.Monad.Bayes.Inference.RMSMC (rmsmcDynamic)\nimport Control.Monad.Bayes.Inference.SMC (SMCConfig (SMCConfig, numParticles, numSteps, resampler), smc)\nimport Control.Monad.Bayes.Population (resampleSystematic, runPopulationT)\nimport Control.Monad.Bayes.Sampler.Strict (SamplerIO, sampleIOfixed)\nimport Control.Monad.Bayes.Traced (mh)\nimport Control.Monad.Bayes.Weighted (unweighted)\nimport Criterion.Main\n  ( Benchmark,\n    Benchmarkable,\n    bench,\n    defaultConfig,\n    defaultMainWith,\n    nfIO,\n  )\nimport Criterion.Types (Config (csvFile, rawDataFile))\nimport Data.Functor (void)\nimport Data.Maybe (listToMaybe)\nimport Data.Text qualified as T\nimport HMM qualified\nimport LDA qualified\nimport LogReg qualified\nimport System.Directory (removeFile)\nimport System.IO.Error (catchIOError, isDoesNotExistError)\nimport System.Process.Typed (runProcess)\n\ndata ProbProgSys = MonadBayes\n  deriving stock (Show)\n\ndata Model = LR [(Double, Bool)] | HMM [Double] | LDA [[T.Text]]\n\ninstance Show Model where\n  show (LR xs) = \"LR\" ++ show (length xs)\n  show (HMM xs) = \"HMM\" ++ show (length xs)\n  show (LDA xs) = \"LDA\" ++ show (maybe 0 length $ listToMaybe xs)\n\nbuildModel :: (MonadMeasure m) => Model -> m String\nbuildModel (LR dataset) = show <$> LogReg.logisticRegression dataset\nbuildModel (HMM dataset) = show <$> HMM.hmm dataset\nbuildModel (LDA dataset) = show <$> LDA.lda dataset\n\nmodelLength :: Model -> Int\nmodelLength (LR xs) = length xs\nmodelLength (HMM xs) = length xs\nmodelLength (LDA xs) = sum (map length xs)\n\ndata Alg = MH Int | SMC Int | RMSMC Int Int\n\ninstance Show Alg where\n  show (MH n) = \"MH\" ++ show n\n  show (SMC n) = \"SMC\" ++ show n\n  show (RMSMC n t) = \"RMSMC\" ++ show n ++ \"-\" ++ show t\n\nrunAlg :: Model -> Alg -> SamplerIO String\nrunAlg model (MH n) = show <$> unweighted (mh n (buildModel model))\nrunAlg model (SMC n) = show <$> runPopulationT (smc SMCConfig {numSteps = (modelLength model), numParticles = n, resampler = resampleSystematic} (buildModel model))\nrunAlg model (RMSMC n t) =\n  show\n    <$> runPopulationT\n      ( rmsmcDynamic\n          MCMCConfig {numMCMCSteps = t, numBurnIn = 0, proposal = SingleSiteMH}\n          SMCConfig {numSteps = modelLength model, numParticles = n, resampler = resampleSystematic}\n          (buildModel model)\n      )\n\nprepareBenchmarkable :: ProbProgSys -> Model -> Alg -> Benchmarkable\nprepareBenchmarkable MonadBayes model alg = nfIO $ sampleIOfixed (runAlg model alg)\n\nprepareBenchmark :: ProbProgSys -> Model -> Alg -> Benchmark\nprepareBenchmark MonadBayes model alg =\n  bench (show MonadBayes ++ sep ++ show model ++ sep ++ show alg) $\n    prepareBenchmarkable MonadBayes model alg\n  where\n    sep = \"_\" :: String\n\n-- | Checks if the requested benchmark is implemented.\nsupported :: (ProbProgSys, Model, Alg) -> Bool\nsupported (_, _, RMSMC _ _) = True\nsupported _ = True\n\nsystems :: [ProbProgSys]\nsystems =\n  [ MonadBayes\n  ]\n\nlengthBenchmarks :: [(Double, Bool)] -> [Double] -> [[T.Text]] -> [Benchmark]\nlengthBenchmarks lrData hmmData ldaData = benchmarks\n  where\n    lrLengths = 10 : map (* 100) [1 :: Int .. 10]\n    hmmLengths = 10 : map (* 100) [1 :: Int .. 10]\n    ldaLengths = 5 : map (* 50) [1 :: Int .. 10]\n    models =\n      map (LR . (`take` lrData)) lrLengths\n        ++ map (HMM . (`take` hmmData)) hmmLengths\n        ++ map (\\n -> LDA $ map (take n) ldaData) ldaLengths\n    algs =\n      [ MH 100,\n        SMC 100,\n        RMSMC 10 1\n      ]\n    benchmarks = map (uncurry3 (prepareBenchmark)) $ filter supported xs\n      where\n        uncurry3 f (x, y, z) = f x y z\n        xs = do\n          m <- models\n          s <- systems\n          a <- algs\n          return (s, m, a)\n\nsamplesBenchmarks :: [(Double, Bool)] -> [Double] -> [[T.Text]] -> [Benchmark]\nsamplesBenchmarks lrData hmmData ldaData = benchmarks\n  where\n    lrLengths = [50 :: Int]\n    hmmLengths = [20 :: Int]\n    ldaLengths = [10 :: Int]\n    models =\n      map (LR . (`take` lrData)) lrLengths\n        ++ map (HMM . (`take` hmmData)) hmmLengths\n        ++ map (\\n -> LDA $ map (take n) ldaData) ldaLengths\n    algs =\n      map (\\x -> MH (100 * x)) [1 .. 10]\n        ++ map (\\x -> SMC (100 * x)) [1 .. 10]\n        ++ map (\\x -> RMSMC 10 (10 * x)) [1 .. 10]\n    benchmarks = map (uncurry3 (prepareBenchmark)) $ filter supported xs\n      where\n        uncurry3 f (x, y, z) = f x y z\n        xs = do\n          a <- algs\n          s <- systems\n          m <- models\n          return (s, m, a)\n\nspeedLengthCSV :: FilePath\nspeedLengthCSV = \"speed-length.csv\"\n\nspeedSamplesCSV :: FilePath\nspeedSamplesCSV = \"speed-samples.csv\"\n\nrawDAT :: FilePath\nrawDAT = \"raw.dat\"\n\ncleanupLastRun :: IO ()\ncleanupLastRun = mapM_ removeIfExists [speedLengthCSV, speedSamplesCSV, rawDAT]\n\nremoveIfExists :: FilePath -> IO ()\nremoveIfExists file = do\n  putStrLn $ \"Removing: \" ++ file\n  catchIOError (removeFile file) $ \\e ->\n    if isDoesNotExistError e\n      then putStrLn \"Didn't find file, not removing\"\n      else ioError e\n\nmain :: IO ()\nmain = do\n  cleanupLastRun\n  lrData <- sampleIOfixed (LogReg.syntheticData 1000)\n  hmmData <- sampleIOfixed (HMM.syntheticData 1000)\n  ldaData <- sampleIOfixed (LDA.syntheticData 5 1000)\n  let configLength = defaultConfig {csvFile = Just speedLengthCSV, rawDataFile = Just rawDAT}\n  defaultMainWith configLength (lengthBenchmarks lrData hmmData ldaData)\n  let configSamples = defaultConfig {csvFile = Just speedSamplesCSV, rawDataFile = Just rawDAT}\n  defaultMainWith configSamples (samplesBenchmarks lrData hmmData ldaData)\n  void $ runProcess \"python plots.py\"\n"
  },
  {
    "path": "default.nix",
    "content": "(\n  import\n    (\n      let\n        lock = builtins.fromJSON (builtins.readFile ./flake.lock);\n      in\n      fetchTarball {\n        url = \"https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz\";\n        sha256 = lock.nodes.flake-compat.locked.narHash;\n      }\n    )\n    { src = ./.; }\n).defaultNix\n"
  },
  {
    "path": "docs/docs/examples.md",
    "content": "---\ntitle: Example Gallery\n---\n\n## [Histograms](/notebooks/Histogram.html)\n\n## [JSON (with `lens`)](/notebooks/Lenses.html)\n\n## [Diagrams](/notebooks/Diagrams.html)\n\n## [Probabilistic Parsing](/notebooks/Parsing.html)\n\n## [Streams (with `pipes`)](/notebooks/Streaming.html)\n\n## [Ising models](/notebooks/Ising.html)\n\n## [Physics](/notebooks/ClassicalPhysics.html)\n\n"
  },
  {
    "path": "docs/docs/index.md",
    "content": "# Welcome to Monad-Bayes\n\nMonad-Bayes is a library for **probabilistic programming** written in **Haskell**.\n\n**Define distributions** [as programs](/notebooks/Introduction.html)\n\n**Perform inference** [with a variety of standard methods](tutorials.md) [defined compositionally](http://approximateinference.org/accepted/ScibiorGhahramani2016.pdf)\n\n**Integrate with Haskell code** [like this](examples.md) because Monad-Bayes is just a library, not a separate language\n\n## Example\n\n```haskell\nmodel :: Distribution Double\nmodel = do\n     x <- bernoulli 0.5\n     normal (if x then (-3) else 3) 1\n\nimage :: Distribution Plot\nimage = fmap (plot . histogram 200) (replicateM 100000 model)\n\nsampler image\n```\n\nThe program `model` is a mixture of Gaussians. Its type `Distribution Double` represents a distribution over reals. \n`image` is a program too: as its type shows, it is a distribution over plots. In particular, plots that arise from forming a 200 bin histogram out of 100000 independent identically distributed (iid) draws from `model`. \nTo sample from `image`, we simply write `sampler image`, with the result shown below:\n\n\n<img src=\"images/plot.png\" \n     width=\"450\" \n     height=\"300\" />"
  },
  {
    "path": "docs/docs/javascripts/mathjax.js",
    "content": "window.MathJax = {\n    tex: {\n      inlineMath: [[\"\\\\(\", \"\\\\)\"]],\n      displayMath: [[\"\\\\[\", \"\\\\]\"]],\n      processEscapes: true,\n      processEnvironments: true\n    },\n    options: {\n      ignoreHtmlClass: \".*|\",\n      processHtmlClass: \"arithmatex\"\n    }\n  };\n  \n  document$.subscribe(() => {\n    MathJax.typesetPromise()\n  })"
  },
  {
    "path": "docs/docs/notebooks/AdvancedSampling.html",
    "content": "<!DOCTYPE html>\n<html>\n<head><meta charset=\"utf-8\" />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n<title>AdvancedSampling</title><script src=\"https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js\"></script>\n\n\n\n\n<style type=\"text/css\">\n    pre { line-height: 125%; }\ntd.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\nspan.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\ntd.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\nspan.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.highlight .hll { background-color: var(--jp-cell-editor-active-background) }\n.highlight { background: var(--jp-cell-editor-background); color: var(--jp-mirror-editor-variable-color) }\n.highlight .c { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment */\n.highlight .err { color: var(--jp-mirror-editor-error-color) } /* Error */\n.highlight .k { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword */\n.highlight .o { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator */\n.highlight .p { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation */\n.highlight .ch { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Hashbang */\n.highlight .cm { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Multiline */\n.highlight .cp { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Preproc */\n.highlight .cpf { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.PreprocFile */\n.highlight .c1 { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Single */\n.highlight .cs { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Special */\n.highlight .kc { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Constant */\n.highlight .kd { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Declaration */\n.highlight .kn { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Namespace */\n.highlight .kp { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Pseudo */\n.highlight .kr { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Reserved */\n.highlight .kt { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Type */\n.highlight .m { color: var(--jp-mirror-editor-number-color) } /* Literal.Number */\n.highlight .s { color: var(--jp-mirror-editor-string-color) } /* Literal.String */\n.highlight .ow { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator.Word */\n.highlight .w { color: var(--jp-mirror-editor-variable-color) } /* Text.Whitespace */\n.highlight .mb { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Bin */\n.highlight .mf { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Float */\n.highlight .mh { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Hex */\n.highlight .mi { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer */\n.highlight .mo { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Oct */\n.highlight .sa { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Affix */\n.highlight .sb { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Backtick */\n.highlight .sc { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Char */\n.highlight .dl { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Delimiter */\n.highlight .sd { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Doc */\n.highlight .s2 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Double */\n.highlight .se { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Escape */\n.highlight .sh { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Heredoc */\n.highlight .si { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Interpol */\n.highlight .sx { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Other */\n.highlight .sr { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Regex */\n.highlight .s1 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Single */\n.highlight .ss { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Symbol */\n.highlight .il { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer.Long */\n  </style>\n\n\n\n<style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\n * Mozilla scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n[data-jp-theme-scrollbars='true'] {\n  scrollbar-color: rgb(var(--jp-scrollbar-thumb-color))\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar. These selectors\n * will match lower in the tree, and so will override the above */\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n  scrollbar-width: thin;\n}\n\n/*\n * Webkit scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-corner {\n  background: var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-thumb {\n  background: rgb(var(--jp-scrollbar-thumb-color));\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-right: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-bottom: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar */\n\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-corner,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-corner {\n  background-color: transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-thumb,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid transparent;\n  border-right: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid transparent;\n  border-bottom: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny::-webkit-scrollbar,\n.jp-scrollbar-tiny::-webkit-scrollbar-corner {\n  background-color: transparent;\n  height: 4px;\n  width: 4px;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:horizontal {\n  border-left: 0px solid transparent;\n  border-right: 0px solid transparent;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:vertical {\n  border-top: 0px solid transparent;\n  border-bottom: 0px solid transparent;\n}\n\n/*\n * Phosphor\n */\n\n.lm-ScrollBar[data-orientation='horizontal'] {\n  min-height: 16px;\n  max-height: 16px;\n  min-width: 45px;\n  border-top: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] {\n  min-width: 16px;\n  max-width: 16px;\n  min-height: 45px;\n  border-left: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar-button {\n  background-color: #f0f0f0;\n  background-position: center center;\n  min-height: 15px;\n  max-height: 15px;\n  min-width: 15px;\n  max-width: 15px;\n}\n\n.lm-ScrollBar-button:hover {\n  background-color: #dadada;\n}\n\n.lm-ScrollBar-button.lm-mod-active {\n  background-color: #cdcdcd;\n}\n\n.lm-ScrollBar-track {\n  background: #f0f0f0;\n}\n\n.lm-ScrollBar-thumb {\n  background: #cdcdcd;\n}\n\n.lm-ScrollBar-thumb:hover {\n  background: #bababa;\n}\n\n.lm-ScrollBar-thumb.lm-mod-active {\n  background: #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal'] .lm-ScrollBar-thumb {\n  height: 100%;\n  min-width: 15px;\n  border-left: 1px solid #a0a0a0;\n  border-right: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] .lm-ScrollBar-thumb {\n  width: 100%;\n  min-height: 15px;\n  border-top: 1px solid #a0a0a0;\n  border-bottom: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-left);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-right);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-up);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-down);\n  background-size: 17px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Widget, /* </DEPRECATED> */\n.lm-Widget {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  cursor: default;\n}\n\n\n/* <DEPRECATED> */ .p-Widget.p-mod-hidden, /* </DEPRECATED> */\n.lm-Widget.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-CommandPalette, /* </DEPRECATED> */\n.lm-CommandPalette {\n  display: flex;\n  flex-direction: column;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-search, /* </DEPRECATED> */\n.lm-CommandPalette-search {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-content, /* </DEPRECATED> */\n.lm-CommandPalette-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  min-height: 0;\n  overflow: auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-header, /* </DEPRECATED> */\n.lm-CommandPalette-header {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-item, /* </DEPRECATED> */\n.lm-CommandPalette-item {\n  display: flex;\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemIcon, /* </DEPRECATED> */\n.lm-CommandPalette-itemIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemContent, /* </DEPRECATED> */\n.lm-CommandPalette-itemContent {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemShortcut, /* </DEPRECATED> */\n.lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemLabel, /* </DEPRECATED> */\n.lm-CommandPalette-itemLabel {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.lm-close-icon {\n\tborder:1px solid transparent;\n  background-color: transparent;\n  position: absolute;\n\tz-index:1;\n\tright:3%;\n\ttop: 0;\n\tbottom: 0;\n\tmargin: auto;\n\tpadding: 7px 0;\n\tdisplay: none;\n\tvertical-align: middle;\n  outline: 0;\n  cursor: pointer;\n}\n.lm-close-icon:after {\n\tcontent: \"X\";\n\tdisplay: block;\n\twidth: 15px;\n\theight: 15px;\n\ttext-align: center;\n\tcolor:#000;\n\tfont-weight: normal;\n\tfont-size: 12px;\n\tcursor: pointer;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-DockPanel, /* </DEPRECATED> */\n.lm-DockPanel {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-widget, /* </DEPRECATED> */\n.lm-DockPanel-widget {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-tabBar, /* </DEPRECATED> */\n.lm-DockPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle, /* </DEPRECATED> */\n.lm-DockPanel-handle {\n  z-index: 2;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle:after, /* </DEPRECATED> */\n.lm-DockPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal'] {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical'] {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal']:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical']:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay, /* </DEPRECATED> */\n.lm-DockPanel-overlay {\n  z-index: 3;\n  box-sizing: border-box;\n  pointer-events: none;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-overlay.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Menu, /* </DEPRECATED> */\n.lm-Menu {\n  z-index: 10000;\n  position: absolute;\n  white-space: nowrap;\n  overflow-x: hidden;\n  overflow-y: auto;\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-content, /* </DEPRECATED> */\n.lm-Menu-content {\n  margin: 0;\n  padding: 0;\n  display: table;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-item, /* </DEPRECATED> */\n.lm-Menu-item {\n  display: table-row;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-item.p-mod-hidden,\n.p-Menu-item.p-mod-collapsed,\n/* </DEPRECATED> */\n.lm-Menu-item.lm-mod-hidden,\n.lm-Menu-item.lm-mod-collapsed {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-itemIcon,\n.p-Menu-itemSubmenuIcon,\n/* </DEPRECATED> */\n.lm-Menu-itemIcon,\n.lm-Menu-itemSubmenuIcon {\n  display: table-cell;\n  text-align: center;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemLabel, /* </DEPRECATED> */\n.lm-Menu-itemLabel {\n  display: table-cell;\n  text-align: left;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemShortcut, /* </DEPRECATED> */\n.lm-Menu-itemShortcut {\n  display: table-cell;\n  text-align: right;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-MenuBar, /* </DEPRECATED> */\n.lm-MenuBar {\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-MenuBar-content, /* </DEPRECATED> */\n.lm-MenuBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex-direction: row;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p--MenuBar-item, /* </DEPRECATED> */\n.lm-MenuBar-item {\n  box-sizing: border-box;\n}\n\n\n/* <DEPRECATED> */\n.p-MenuBar-itemIcon,\n.p-MenuBar-itemLabel,\n/* </DEPRECATED> */\n.lm-MenuBar-itemIcon,\n.lm-MenuBar-itemLabel {\n  display: inline-block;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-ScrollBar, /* </DEPRECATED> */\n.lm-ScrollBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='horizontal'] {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='vertical'] {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-button, /* </DEPRECATED> */\n.lm-ScrollBar-button {\n  box-sizing: border-box;\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-track, /* </DEPRECATED> */\n.lm-ScrollBar-track {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  flex: 1 1 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-thumb, /* </DEPRECATED> */\n.lm-ScrollBar-thumb {\n  box-sizing: border-box;\n  position: absolute;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-SplitPanel-child, /* </DEPRECATED> */\n.lm-SplitPanel-child {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle, /* </DEPRECATED> */\n.lm-SplitPanel-handle {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-SplitPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle:after, /* </DEPRECATED> */\n.lm-SplitPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabBar, /* </DEPRECATED> */\n.lm-TabBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='horizontal'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] {\n  flex-direction: row;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='vertical'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] {\n  flex-direction: column;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-content, /* </DEPRECATED> */\n.lm-TabBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex: 1 1 auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='horizontal'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] > .lm-TabBar-content {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='vertical'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] > .lm-TabBar-content {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar-tab {\n  display: flex;\n  flex-direction: row;\n  box-sizing: border-box;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar-tabIcon,\n.p-TabBar-tabCloseIcon,\n/* </DEPRECATED> */\n.lm-TabBar-tabIcon,\n.lm-TabBar-tabCloseIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tabLabel, /* </DEPRECATED> */\n.lm-TabBar-tabLabel {\n  flex: 1 1 auto;\n  overflow: hidden;\n  white-space: nowrap;\n}\n\n\n.lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab.p-mod-hidden, /* </DEPRECATED> */\n.lm-TabBar-tab.lm-mod-hidden {\n  display: none !important;\n}\n\n\n.lm-TabBar-addButton.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar.p-mod-dragging .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab {\n  position: relative;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='horizontal'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='horizontal'] .lm-TabBar-tab {\n  left: 0;\n  transition: left 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='vertical'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='vertical'] .lm-TabBar-tab {\n  top: 0;\n  transition: top 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging .p-TabBar-tab.p-mod-dragging,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab.lm-mod-dragging {\n  transition: none;\n}\n\n.lm-TabBar-tabLabel .lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n  background: inherit;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabPanel-tabBar, /* </DEPRECATED> */\n.lm-TabPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-TabPanel-stackedPanel, /* </DEPRECATED> */\n.lm-TabPanel-stackedPanel {\n  z-index: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n@charset \"UTF-8\";\nhtml{\n  -webkit-box-sizing:border-box;\n          box-sizing:border-box; }\n\n*,\n*::before,\n*::after{\n  -webkit-box-sizing:inherit;\n          box-sizing:inherit; }\n\nbody{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none;\n  color:#182026;\n  font-family:-apple-system, \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Open Sans\", \"Helvetica Neue\", \"Icons16\", sans-serif; }\n\np{\n  margin-bottom:10px;\n  margin-top:0; }\n\nsmall{\n  font-size:12px; }\n\nstrong{\n  font-weight:600; }\n\n::-moz-selection{\n  background:rgba(125, 188, 255, 0.6); }\n\n::selection{\n  background:rgba(125, 188, 255, 0.6); }\n.bp3-heading{\n  color:#182026;\n  font-weight:600;\n  margin:0 0 10px;\n  padding:0; }\n  .bp3-dark .bp3-heading{\n    color:#f5f8fa; }\n\nh1.bp3-heading, .bp3-running-text h1{\n  font-size:36px;\n  line-height:40px; }\n\nh2.bp3-heading, .bp3-running-text h2{\n  font-size:28px;\n  line-height:32px; }\n\nh3.bp3-heading, .bp3-running-text h3{\n  font-size:22px;\n  line-height:25px; }\n\nh4.bp3-heading, .bp3-running-text h4{\n  font-size:18px;\n  line-height:21px; }\n\nh5.bp3-heading, .bp3-running-text h5{\n  font-size:16px;\n  line-height:19px; }\n\nh6.bp3-heading, .bp3-running-text h6{\n  font-size:14px;\n  line-height:16px; }\n.bp3-ui-text{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none; }\n\n.bp3-monospace-text{\n  font-family:monospace;\n  text-transform:none; }\n\n.bp3-text-muted{\n  color:#5c7080; }\n  .bp3-dark .bp3-text-muted{\n    color:#a7b6c2; }\n\n.bp3-text-disabled{\n  color:rgba(92, 112, 128, 0.6); }\n  .bp3-dark .bp3-text-disabled{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-text-overflow-ellipsis{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal; }\n.bp3-running-text{\n  font-size:14px;\n  line-height:1.5; }\n  .bp3-running-text h1{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h1{\n      color:#f5f8fa; }\n  .bp3-running-text h2{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h2{\n      color:#f5f8fa; }\n  .bp3-running-text h3{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h3{\n      color:#f5f8fa; }\n  .bp3-running-text h4{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h4{\n      color:#f5f8fa; }\n  .bp3-running-text h5{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h5{\n      color:#f5f8fa; }\n  .bp3-running-text h6{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h6{\n      color:#f5f8fa; }\n  .bp3-running-text hr{\n    border:none;\n    border-bottom:1px solid rgba(16, 22, 26, 0.15);\n    margin:20px 0; }\n    .bp3-dark .bp3-running-text hr{\n      border-color:rgba(255, 255, 255, 0.15); }\n  .bp3-running-text p{\n    margin:0 0 10px;\n    padding:0; }\n\n.bp3-text-large{\n  font-size:16px; }\n\n.bp3-text-small{\n  font-size:12px; }\na{\n  color:#106ba3;\n  text-decoration:none; }\n  a:hover{\n    color:#106ba3;\n    cursor:pointer;\n    text-decoration:underline; }\n  a .bp3-icon, a .bp3-icon-standard, a .bp3-icon-large{\n    color:inherit; }\n  a code,\n  .bp3-dark a code{\n    color:inherit; }\n  .bp3-dark a,\n  .bp3-dark a:hover{\n    color:#48aff0; }\n    .bp3-dark a .bp3-icon, .bp3-dark a .bp3-icon-standard, .bp3-dark a .bp3-icon-large,\n    .bp3-dark a:hover .bp3-icon,\n    .bp3-dark a:hover .bp3-icon-standard,\n    .bp3-dark a:hover .bp3-icon-large{\n      color:inherit; }\n.bp3-running-text code, .bp3-code{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  font-size:smaller;\n  padding:2px 5px; }\n  .bp3-dark .bp3-running-text code, .bp3-running-text .bp3-dark code, .bp3-dark .bp3-code{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n  .bp3-running-text a > code, a > .bp3-code{\n    color:#137cbd; }\n    .bp3-dark .bp3-running-text a > code, .bp3-running-text .bp3-dark a > code, .bp3-dark a > .bp3-code{\n      color:inherit; }\n\n.bp3-running-text pre, .bp3-code-block{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n  color:#182026;\n  display:block;\n  font-size:13px;\n  line-height:1.4;\n  margin:10px 0;\n  padding:13px 15px 12px;\n  word-break:break-all;\n  word-wrap:break-word; }\n  .bp3-dark .bp3-running-text pre, .bp3-running-text .bp3-dark pre, .bp3-dark .bp3-code-block{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n  .bp3-running-text pre > code, .bp3-code-block > code{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit;\n    font-size:inherit;\n    padding:0; }\n\n.bp3-running-text kbd, .bp3-key{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-family:inherit;\n  font-size:12px;\n  height:24px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  line-height:24px;\n  min-width:24px;\n  padding:3px 6px;\n  vertical-align:middle; }\n  .bp3-running-text kbd .bp3-icon, .bp3-key .bp3-icon, .bp3-running-text kbd .bp3-icon-standard, .bp3-key .bp3-icon-standard, .bp3-running-text kbd .bp3-icon-large, .bp3-key .bp3-icon-large{\n    margin-right:5px; }\n  .bp3-dark .bp3-running-text kbd, .bp3-running-text .bp3-dark kbd, .bp3-dark .bp3-key{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n.bp3-running-text blockquote, .bp3-blockquote{\n  border-left:solid 4px rgba(167, 182, 194, 0.5);\n  margin:0 0 10px;\n  padding:0 20px; }\n  .bp3-dark .bp3-running-text blockquote, .bp3-running-text .bp3-dark blockquote, .bp3-dark .bp3-blockquote{\n    border-color:rgba(115, 134, 148, 0.5); }\n.bp3-running-text ul,\n.bp3-running-text ol, .bp3-list{\n  margin:10px 0;\n  padding-left:30px; }\n  .bp3-running-text ul li:not(:last-child), .bp3-running-text ol li:not(:last-child), .bp3-list li:not(:last-child){\n    margin-bottom:5px; }\n  .bp3-running-text ul ol, .bp3-running-text ol ol, .bp3-list ol,\n  .bp3-running-text ul ul,\n  .bp3-running-text ol ul,\n  .bp3-list ul{\n    margin-top:5px; }\n\n.bp3-list-unstyled{\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-list-unstyled li{\n    padding:0; }\n.bp3-rtl{\n  text-align:right; }\n\n.bp3-dark{\n  color:#f5f8fa; }\n\n:focus{\n  outline:rgba(19, 124, 189, 0.6) auto 2px;\n  outline-offset:2px;\n  -moz-outline-radius:6px; }\n\n.bp3-focus-disabled :focus{\n  outline:none !important; }\n  .bp3-focus-disabled :focus ~ .bp3-control-indicator{\n    outline:none !important; }\n\n.bp3-alert{\n  max-width:400px;\n  padding:20px; }\n\n.bp3-alert-body{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-alert-body .bp3-icon{\n    font-size:40px;\n    margin-right:20px;\n    margin-top:0; }\n\n.bp3-alert-contents{\n  word-break:break-word; }\n\n.bp3-alert-footer{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:reverse;\n      -ms-flex-direction:row-reverse;\n          flex-direction:row-reverse;\n  margin-top:10px; }\n  .bp3-alert-footer .bp3-button{\n    margin-left:10px; }\n.bp3-breadcrumbs{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  cursor:default;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:wrap;\n      flex-wrap:wrap;\n  height:30px;\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-breadcrumbs > li{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n    .bp3-breadcrumbs > li::after{\n      background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z' fill='%235C7080'/%3e%3c/svg%3e\");\n      content:\"\";\n      display:block;\n      height:16px;\n      margin:0 5px;\n      width:16px; }\n    .bp3-breadcrumbs > li:last-of-type::after{\n      display:none; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumb-current,\n.bp3-breadcrumbs-collapsed{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-size:16px; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumbs-collapsed{\n  color:#5c7080; }\n\n.bp3-breadcrumb:hover{\n  text-decoration:none; }\n\n.bp3-breadcrumb.bp3-disabled{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-breadcrumb .bp3-icon{\n  margin-right:5px; }\n\n.bp3-breadcrumb-current{\n  color:inherit;\n  font-weight:600; }\n  .bp3-breadcrumb-current .bp3-input{\n    font-size:inherit;\n    font-weight:inherit;\n    vertical-align:baseline; }\n\n.bp3-breadcrumbs-collapsed{\n  background:#ced9e0;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  margin-right:2px;\n  padding:1px 5px;\n  vertical-align:text-bottom; }\n  .bp3-breadcrumbs-collapsed::before{\n    background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cg fill='%235C7080'%3e%3ccircle cx='2' cy='8.03' r='2'/%3e%3ccircle cx='14' cy='8.03' r='2'/%3e%3ccircle cx='8' cy='8.03' r='2'/%3e%3c/g%3e%3c/svg%3e\") center no-repeat;\n    content:\"\";\n    display:block;\n    height:16px;\n    width:16px; }\n  .bp3-breadcrumbs-collapsed:hover{\n    background:#bfccd6;\n    color:#182026;\n    text-decoration:none; }\n\n.bp3-dark .bp3-breadcrumb,\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumbs > li::after{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumb.bp3-disabled{\n  color:rgba(167, 182, 194, 0.6); }\n\n.bp3-dark .bp3-breadcrumb-current{\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-breadcrumbs-collapsed:hover{\n    background:rgba(16, 22, 26, 0.6);\n    color:#f5f8fa; }\n.bp3-button{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  min-height:30px;\n  min-width:30px; }\n  .bp3-button > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-button > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-button::before,\n  .bp3-button > *{\n    margin-right:7px; }\n  .bp3-button:empty::before,\n  .bp3-button > :last-child{\n    margin-right:0; }\n  .bp3-button:empty{\n    padding:0 !important; }\n  .bp3-button:disabled, .bp3-button.bp3-disabled{\n    cursor:not-allowed; }\n  .bp3-button.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button.bp3-align-right,\n  .bp3-align-right .bp3-button{\n    text-align:right; }\n  .bp3-button.bp3-align-left,\n  .bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026; }\n    .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active:hover, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-button.bp3-intent-primary{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover, .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover{\n      background-color:#106ba3;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      background-color:#0e5a8a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:disabled, .bp3-button.bp3-intent-primary.bp3-disabled{\n      background-color:rgba(19, 124, 189, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-success{\n    background-color:#0f9960;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover, .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover{\n      background-color:#0d8050;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      background-color:#0a6640;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:disabled, .bp3-button.bp3-intent-success.bp3-disabled{\n      background-color:rgba(15, 153, 96, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-warning{\n    background-color:#d9822b;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover, .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover{\n      background-color:#bf7326;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      background-color:#a66321;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:disabled, .bp3-button.bp3-intent-warning.bp3-disabled{\n      background-color:rgba(217, 130, 43, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-danger{\n    background-color:#db3737;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover, .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover{\n      background-color:#c23030;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      background-color:#a82a2a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:disabled, .bp3-button.bp3-intent-danger.bp3-disabled{\n      background-color:rgba(219, 55, 55, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n    stroke:#ffffff; }\n  .bp3-button.bp3-large,\n  .bp3-large .bp3-button{\n    min-height:40px;\n    min-width:40px;\n    font-size:16px;\n    padding:5px 15px; }\n    .bp3-button.bp3-large::before,\n    .bp3-button.bp3-large > *,\n    .bp3-large .bp3-button::before,\n    .bp3-large .bp3-button > *{\n      margin-right:10px; }\n    .bp3-button.bp3-large:empty::before,\n    .bp3-button.bp3-large > :last-child,\n    .bp3-large .bp3-button:empty::before,\n    .bp3-large .bp3-button > :last-child{\n      margin-right:0; }\n  .bp3-button.bp3-small,\n  .bp3-small .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-button.bp3-loading{\n    position:relative; }\n    .bp3-button.bp3-loading[class*=\"bp3-icon-\"]::before{\n      visibility:hidden; }\n    .bp3-button.bp3-loading .bp3-button-spinner{\n      margin:0;\n      position:absolute; }\n    .bp3-button.bp3-loading > :not(.bp3-button-spinner){\n      visibility:hidden; }\n  .bp3-button[class*=\"bp3-icon-\"]::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    color:#5c7080; }\n  .bp3-button .bp3-icon, .bp3-button .bp3-icon-standard, .bp3-button .bp3-icon-large{\n    color:#5c7080; }\n    .bp3-button .bp3-icon.bp3-align-right, .bp3-button .bp3-icon-standard.bp3-align-right, .bp3-button .bp3-icon-large.bp3-align-right{\n      margin-left:7px; }\n  .bp3-button .bp3-icon:first-child:last-child,\n  .bp3-button .bp3-spinner + .bp3-icon:last-child{\n    margin:0 -7px; }\n  .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"])[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n      color:#a7b6c2; }\n  .bp3-dark .bp3-button[class*=\"bp3-intent-\"]{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:hover{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.3); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n      stroke:#8a9ba8; }\n  .bp3-button:disabled::before,\n  .bp3-button:disabled .bp3-icon, .bp3-button:disabled .bp3-icon-standard, .bp3-button:disabled .bp3-icon-large, .bp3-button.bp3-disabled::before,\n  .bp3-button.bp3-disabled .bp3-icon, .bp3-button.bp3-disabled .bp3-icon-standard, .bp3-button.bp3-disabled .bp3-icon-large, .bp3-button[class*=\"bp3-intent-\"]::before,\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-icon, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-standard, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-large{\n    color:inherit !important; }\n  .bp3-button.bp3-minimal{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button.bp3-minimal:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-minimal:active, .bp3-button.bp3-minimal.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-minimal:disabled, .bp3-button.bp3-minimal:disabled:hover, .bp3-button.bp3-minimal.bp3-disabled, .bp3-button.bp3-minimal.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-minimal{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-minimal:hover, .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-minimal:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-minimal:disabled, .bp3-dark .bp3-button.bp3-minimal:disabled:hover, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover, .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover, .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover, .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover, .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button.bp3-outlined{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    border:1px solid rgba(24, 32, 38, 0.2);\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box; }\n    .bp3-button.bp3-outlined:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-outlined:active, .bp3-button.bp3-outlined.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-outlined:hover, .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-outlined:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover, .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover, .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover, .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover, .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      border-color:rgba(92, 112, 128, 0.1); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      border-color:rgba(255, 255, 255, 0.4); }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        border-color:rgba(255, 255, 255, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      border-color:rgba(16, 107, 163, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        border-color:rgba(16, 107, 163, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        border-color:rgba(72, 175, 240, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          border-color:rgba(72, 175, 240, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      border-color:rgba(13, 128, 80, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        border-color:rgba(13, 128, 80, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        border-color:rgba(61, 204, 145, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          border-color:rgba(61, 204, 145, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      border-color:rgba(191, 115, 38, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        border-color:rgba(191, 115, 38, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        border-color:rgba(255, 179, 102, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          border-color:rgba(255, 179, 102, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      border-color:rgba(194, 48, 48, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        border-color:rgba(194, 48, 48, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        border-color:rgba(255, 115, 115, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          border-color:rgba(255, 115, 115, 0.2); }\n\na.bp3-button{\n  text-align:center;\n  text-decoration:none;\n  -webkit-transition:none;\n  transition:none; }\n  a.bp3-button, a.bp3-button:hover, a.bp3-button:active{\n    color:#182026; }\n  a.bp3-button.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6); }\n\n.bp3-button-text{\n  -webkit-box-flex:0;\n      -ms-flex:0 1 auto;\n          flex:0 1 auto; }\n\n.bp3-button.bp3-align-left .bp3-button-text, .bp3-button.bp3-align-right .bp3-button-text,\n.bp3-button-group.bp3-align-left .bp3-button-text,\n.bp3-button-group.bp3-align-right .bp3-button-text{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto; }\n.bp3-button-group{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex; }\n  .bp3-button-group .bp3-button{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    position:relative;\n    z-index:4; }\n    .bp3-button-group .bp3-button:focus{\n      z-index:5; }\n    .bp3-button-group .bp3-button:hover{\n      z-index:6; }\n    .bp3-button-group .bp3-button:active, .bp3-button-group .bp3-button.bp3-active{\n      z-index:7; }\n    .bp3-button-group .bp3-button:disabled, .bp3-button-group .bp3-button.bp3-disabled{\n      z-index:3; }\n    .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]{\n      z-index:9; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:focus{\n        z-index:10; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:hover{\n        z-index:11; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n        z-index:12; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n        z-index:8; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:first-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:first-child){\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    border-bottom-right-radius:0;\n    border-top-right-radius:0;\n    margin-right:-1px; }\n  .bp3-button-group.bp3-minimal .bp3-button{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button-group.bp3-minimal .bp3-button{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button-group .bp3-popover-wrapper,\n  .bp3-button-group .bp3-popover-target{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button-group .bp3-button.bp3-fill,\n  .bp3-button-group.bp3-fill .bp3-button:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-vertical{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column;\n    vertical-align:top; }\n    .bp3-button-group.bp3-vertical.bp3-fill{\n      height:100%;\n      width:unset; }\n    .bp3-button-group.bp3-vertical .bp3-button{\n      margin-right:0 !important;\n      width:100%; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:first-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:first-child{\n      border-radius:3px 3px 0 0; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:last-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:last-child{\n      border-radius:0 0 3px 3px; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:not(:last-child){\n      margin-bottom:-1px; }\n  .bp3-button-group.bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    margin-right:1px; }\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-button:not(:last-child){\n    margin-bottom:1px; }\n.bp3-callout{\n  font-size:14px;\n  line-height:1.5;\n  background-color:rgba(138, 155, 168, 0.15);\n  border-radius:3px;\n  padding:10px 12px 9px;\n  position:relative;\n  width:100%; }\n  .bp3-callout[class*=\"bp3-icon-\"]{\n    padding-left:40px; }\n    .bp3-callout[class*=\"bp3-icon-\"]::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout.bp3-callout-icon{\n    padding-left:40px; }\n    .bp3-callout.bp3-callout-icon > .bp3-icon:first-child{\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout .bp3-heading{\n    line-height:20px;\n    margin-bottom:5px;\n    margin-top:0; }\n    .bp3-callout .bp3-heading:last-child{\n      margin-bottom:0; }\n  .bp3-dark .bp3-callout{\n    background-color:rgba(138, 155, 168, 0.2); }\n    .bp3-dark .bp3-callout[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n  .bp3-callout.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15); }\n    .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-primary .bp3-heading{\n      color:#106ba3; }\n    .bp3-dark .bp3-callout.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-primary .bp3-heading{\n        color:#48aff0; }\n  .bp3-callout.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15); }\n    .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-success .bp3-heading{\n      color:#0d8050; }\n    .bp3-dark .bp3-callout.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-success .bp3-heading{\n        color:#3dcc91; }\n  .bp3-callout.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15); }\n    .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-warning .bp3-heading{\n      color:#bf7326; }\n    .bp3-dark .bp3-callout.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-warning .bp3-heading{\n        color:#ffb366; }\n  .bp3-callout.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15); }\n    .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-danger .bp3-heading{\n      color:#c23030; }\n    .bp3-dark .bp3-callout.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-danger .bp3-heading{\n        color:#ff7373; }\n  .bp3-running-text .bp3-callout{\n    margin:20px 0; }\n.bp3-card{\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n  padding:20px;\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-card.bp3-dark,\n  .bp3-dark .bp3-card{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-0{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n  .bp3-elevation-0.bp3-dark,\n  .bp3-dark .bp3-elevation-0{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-1{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-1.bp3-dark,\n  .bp3-dark .bp3-elevation-1{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-2{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-2.bp3-dark,\n  .bp3-dark .bp3-elevation-2{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-3{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-3.bp3-dark,\n  .bp3-dark .bp3-elevation-3{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-4{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-4.bp3-dark,\n  .bp3-dark .bp3-elevation-4{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:hover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  cursor:pointer; }\n  .bp3-card.bp3-interactive:hover.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:hover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:active{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  opacity:0.9;\n  -webkit-transition-duration:0;\n          transition-duration:0; }\n  .bp3-card.bp3-interactive:active.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:active{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-collapse{\n  height:0;\n  overflow-y:hidden;\n  -webkit-transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-collapse .bp3-collapse-body{\n    -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-collapse .bp3-collapse-body[aria-hidden=\"true\"]{\n      display:none; }\n\n.bp3-context-menu .bp3-popover-target{\n  display:block; }\n\n.bp3-context-menu-popover-target{\n  position:fixed; }\n\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-dialog-container{\n  opacity:1;\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  min-height:100%;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  width:100%; }\n  .bp3-dialog-container.bp3-overlay-enter > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5); }\n  .bp3-dialog-container.bp3-overlay-enter-active > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear-active > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-dialog-container.bp3-overlay-exit > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-dialog-container.bp3-overlay-exit-active > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n\n.bp3-dialog{\n  background:#ebf1f5;\n  border-radius:6px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:30px 0;\n  padding-bottom:20px;\n  pointer-events:all;\n  -webkit-user-select:text;\n     -moz-user-select:text;\n      -ms-user-select:text;\n          user-select:text;\n  width:500px; }\n  .bp3-dialog:focus{\n    outline:0; }\n  .bp3-dialog.bp3-dark,\n  .bp3-dark .bp3-dialog{\n    background:#293742;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-dialog-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:6px 6px 0 0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding-left:20px;\n  padding-right:5px;\n  z-index:30; }\n  .bp3-dialog-header .bp3-icon-large,\n  .bp3-dialog-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-dialog-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-dialog-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-dialog-header{\n    background:#30404d;\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-dialog-header .bp3-icon-large,\n    .bp3-dark .bp3-dialog-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-dialog-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  margin:20px; }\n\n.bp3-dialog-footer{\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  margin:0 20px; }\n\n.bp3-dialog-footer-actions{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:end;\n      -ms-flex-pack:end;\n          justify-content:flex-end; }\n  .bp3-dialog-footer-actions .bp3-button{\n    margin-left:10px; }\n.bp3-multistep-dialog-panels{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n\n.bp3-multistep-dialog-left-panel{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column; }\n  .bp3-dark .bp3-multistep-dialog-left-panel{\n    background:#202b33; }\n\n.bp3-multistep-dialog-right-panel{\n  background-color:#f5f8fa;\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  border-radius:0 0 6px 0;\n  -webkit-box-flex:3;\n      -ms-flex:3;\n          flex:3;\n  min-width:0; }\n  .bp3-dark .bp3-multistep-dialog-right-panel{\n    background-color:#293742;\n    border-left:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-multistep-dialog-footer{\n  background-color:#ffffff;\n  border-radius:0 0 6px 0;\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  padding:10px; }\n  .bp3-dark .bp3-multistep-dialog-footer{\n    background:#30404d;\n    border-top:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-dialog-step-container{\n  background-color:#f5f8fa;\n  border-bottom:1px solid rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-dialog-step-container{\n    background:#293742;\n    border-bottom:1px solid rgba(16, 22, 26, 0.4); }\n  .bp3-dialog-step-container.bp3-dialog-step-viewed{\n    background-color:#ffffff; }\n    .bp3-dark .bp3-dialog-step-container.bp3-dialog-step-viewed{\n      background:#30404d; }\n\n.bp3-dialog-step{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#f5f8fa;\n  border-radius:6px;\n  cursor:not-allowed;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:4px;\n  padding:6px 14px; }\n  .bp3-dark .bp3-dialog-step{\n    background:#293742; }\n  .bp3-dialog-step-viewed .bp3-dialog-step{\n    background-color:#ffffff;\n    cursor:pointer; }\n    .bp3-dark .bp3-dialog-step-viewed .bp3-dialog-step{\n      background:#30404d; }\n  .bp3-dialog-step:hover{\n    background-color:#f5f8fa; }\n    .bp3-dark .bp3-dialog-step:hover{\n      background:#293742; }\n\n.bp3-dialog-step-icon{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:rgba(92, 112, 128, 0.6);\n  border-radius:50%;\n  color:#ffffff;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:25px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  width:25px; }\n  .bp3-dark .bp3-dialog-step-icon{\n    background-color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#2b95d6; }\n  .bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#8a9ba8; }\n\n.bp3-dialog-step-title{\n  color:rgba(92, 112, 128, 0.6);\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  padding-left:10px; }\n  .bp3-dark .bp3-dialog-step-title{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-title{\n    color:#2b95d6; }\n  .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n    color:#182026; }\n    .bp3-dark .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n      color:#f5f8fa; }\n.bp3-drawer{\n  background:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0;\n  padding:0; }\n  .bp3-drawer:focus{\n    outline:0; }\n  .bp3-drawer.bp3-position-top{\n    height:50%;\n    left:0;\n    right:0;\n    top:0; }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter, .bp3-drawer.bp3-position-top.bp3-overlay-appear{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter-active, .bp3-drawer.bp3-position-top.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit-active{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-bottom{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter-active, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-left{\n    bottom:0;\n    left:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter, .bp3-drawer.bp3-position-left.bp3-overlay-appear{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter-active, .bp3-drawer.bp3-position-left.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit-active{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-right{\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter, .bp3-drawer.bp3-position-right.bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter-active, .bp3-drawer.bp3-position-right.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right):not(.bp3-vertical){\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right).bp3-vertical{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-dark,\n  .bp3-dark .bp3-drawer{\n    background:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-drawer-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border-radius:0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding:5px;\n  padding-left:20px;\n  position:relative; }\n  .bp3-drawer-header .bp3-icon-large,\n  .bp3-drawer-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-drawer-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-drawer-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-drawer-header{\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-drawer-header .bp3-icon-large,\n    .bp3-dark .bp3-drawer-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-drawer-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  overflow:auto; }\n\n.bp3-drawer-footer{\n  -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  padding:10px 20px;\n  position:relative; }\n  .bp3-dark .bp3-drawer-footer{\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4); }\n.bp3-editable-text{\n  cursor:text;\n  display:inline-block;\n  max-width:100%;\n  position:relative;\n  vertical-align:top;\n  white-space:nowrap; }\n  .bp3-editable-text::before{\n    bottom:-3px;\n    left:-3px;\n    position:absolute;\n    right:-3px;\n    top:-3px;\n    border-radius:3px;\n    content:\"\";\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#137cbd; }\n  .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4); }\n  .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#0f9960; }\n  .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4); }\n  .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#d9822b; }\n  .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4); }\n  .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#db3737; }\n  .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4); }\n  .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-dark .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#48aff0; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4);\n            box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#3dcc91; }\n  .bp3-dark .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4);\n            box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#ffb366; }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#ff7373; }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-editable-text-input,\n.bp3-editable-text-content{\n  color:inherit;\n  display:inherit;\n  font:inherit;\n  letter-spacing:inherit;\n  max-width:inherit;\n  min-width:inherit;\n  position:relative;\n  resize:none;\n  text-transform:inherit;\n  vertical-align:top; }\n\n.bp3-editable-text-input{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0;\n  white-space:pre-wrap;\n  width:100%; }\n  .bp3-editable-text-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:focus{\n    outline:none; }\n  .bp3-editable-text-input::-ms-clear{\n    display:none; }\n\n.bp3-editable-text-content{\n  overflow:hidden;\n  padding-right:2px;\n  text-overflow:ellipsis;\n  white-space:pre; }\n  .bp3-editable-text-editing > .bp3-editable-text-content{\n    left:0;\n    position:absolute;\n    visibility:hidden; }\n  .bp3-editable-text-placeholder > .bp3-editable-text-content{\n    color:rgba(92, 112, 128, 0.6); }\n    .bp3-dark .bp3-editable-text-placeholder > .bp3-editable-text-content{\n      color:rgba(167, 182, 194, 0.6); }\n\n.bp3-editable-text.bp3-multiline{\n  display:block; }\n  .bp3-editable-text.bp3-multiline .bp3-editable-text-content{\n    overflow:auto;\n    white-space:pre-wrap;\n    word-wrap:break-word; }\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-control-group{\n  -webkit-transform:translateZ(0);\n          transform:translateZ(0);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:stretch;\n      -ms-flex-align:stretch;\n          align-items:stretch; }\n  .bp3-control-group > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select,\n  .bp3-control-group .bp3-input,\n  .bp3-control-group .bp3-select{\n    position:relative; }\n  .bp3-control-group .bp3-input{\n    border-radius:inherit;\n    z-index:2; }\n    .bp3-control-group .bp3-input:focus{\n      border-radius:3px;\n      z-index:14; }\n    .bp3-control-group .bp3-input[class*=\"bp3-intent\"]{\n      z-index:13; }\n      .bp3-control-group .bp3-input[class*=\"bp3-intent\"]:focus{\n        z-index:15; }\n    .bp3-control-group .bp3-input[readonly], .bp3-control-group .bp3-input:disabled, .bp3-control-group .bp3-input.bp3-disabled{\n      z-index:1; }\n  .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input{\n    z-index:13; }\n    .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input:focus{\n      z-index:15; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select select,\n  .bp3-control-group .bp3-select select{\n    -webkit-transform:translateZ(0);\n            transform:translateZ(0);\n    border-radius:inherit;\n    z-index:4; }\n    .bp3-control-group .bp3-button:focus,\n    .bp3-control-group .bp3-html-select select:focus,\n    .bp3-control-group .bp3-select select:focus{\n      z-index:5; }\n    .bp3-control-group .bp3-button:hover,\n    .bp3-control-group .bp3-html-select select:hover,\n    .bp3-control-group .bp3-select select:hover{\n      z-index:6; }\n    .bp3-control-group .bp3-button:active,\n    .bp3-control-group .bp3-html-select select:active,\n    .bp3-control-group .bp3-select select:active{\n      z-index:7; }\n    .bp3-control-group .bp3-button[readonly], .bp3-control-group .bp3-button:disabled, .bp3-control-group .bp3-button.bp3-disabled,\n    .bp3-control-group .bp3-html-select select[readonly],\n    .bp3-control-group .bp3-html-select select:disabled,\n    .bp3-control-group .bp3-html-select select.bp3-disabled,\n    .bp3-control-group .bp3-select select[readonly],\n    .bp3-control-group .bp3-select select:disabled,\n    .bp3-control-group .bp3-select select.bp3-disabled{\n      z-index:3; }\n    .bp3-control-group .bp3-button[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]{\n      z-index:9; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:focus{\n        z-index:10; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:hover{\n        z-index:11; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:active{\n        z-index:12; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"][readonly], .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:disabled, .bp3-control-group .bp3-button[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"].bp3-disabled{\n        z-index:8; }\n  .bp3-control-group .bp3-input-group > .bp3-icon,\n  .bp3-control-group .bp3-input-group > .bp3-button,\n  .bp3-control-group .bp3-input-group > .bp3-input-left-container,\n  .bp3-control-group .bp3-input-group > .bp3-input-action{\n    z-index:16; }\n  .bp3-control-group .bp3-select::after,\n  .bp3-control-group .bp3-html-select::after,\n  .bp3-control-group .bp3-select > .bp3-icon,\n  .bp3-control-group .bp3-html-select > .bp3-icon{\n    z-index:17; }\n  .bp3-control-group .bp3-select:focus-within{\n    z-index:5; }\n  .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:-1px; }\n  .bp3-control-group:not(.bp3-vertical) > .bp3-divider:not(:first-child){\n    margin-left:6px; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:0; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > .bp3-button + .bp3-button{\n    margin-left:1px; }\n  .bp3-control-group .bp3-popover-wrapper,\n  .bp3-control-group .bp3-popover-target{\n    border-radius:inherit; }\n  .bp3-control-group > :first-child{\n    border-radius:3px 0 0 3px; }\n  .bp3-control-group > :last-child{\n    border-radius:0 3px 3px 0;\n    margin-right:0; }\n  .bp3-control-group > :only-child{\n    border-radius:3px;\n    margin-right:0; }\n  .bp3-control-group .bp3-input-group .bp3-button{\n    border-radius:3px; }\n  .bp3-control-group .bp3-numeric-input:not(:first-child) .bp3-input-group{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-control-group.bp3-fill{\n    width:100%; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-fill > *:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-vertical{\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-control-group.bp3-vertical > *{\n      margin-top:-1px; }\n    .bp3-control-group.bp3-vertical > :first-child{\n      border-radius:3px 3px 0 0;\n      margin-top:0; }\n    .bp3-control-group.bp3-vertical > :last-child{\n      border-radius:0 0 3px 3px; }\n.bp3-control{\n  cursor:pointer;\n  display:block;\n  margin-bottom:10px;\n  position:relative;\n  text-transform:none; }\n  .bp3-control input:checked ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control input:checked ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control:not(.bp3-align-right){\n    padding-left:26px; }\n    .bp3-control:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-26px; }\n  .bp3-control.bp3-align-right{\n    padding-right:26px; }\n    .bp3-control.bp3-align-right .bp3-control-indicator{\n      margin-right:-26px; }\n  .bp3-control.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-control.bp3-inline{\n    display:inline-block;\n    margin-right:20px; }\n  .bp3-control input{\n    left:0;\n    opacity:0;\n    position:absolute;\n    top:0;\n    z-index:-1; }\n  .bp3-control .bp3-control-indicator{\n    background-clip:padding-box;\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    border:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    cursor:pointer;\n    display:inline-block;\n    font-size:16px;\n    height:1em;\n    margin-right:10px;\n    margin-top:-3px;\n    position:relative;\n    -webkit-user-select:none;\n       -moz-user-select:none;\n        -ms-user-select:none;\n            user-select:none;\n    vertical-align:middle;\n    width:1em; }\n    .bp3-control .bp3-control-indicator::before{\n      content:\"\";\n      display:block;\n      height:1em;\n      width:1em; }\n  .bp3-control:hover .bp3-control-indicator{\n    background-color:#ebf1f5; }\n  .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n    background:#d8e1e8;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    cursor:not-allowed; }\n  .bp3-control input:focus ~ .bp3-control-indicator{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:2px;\n    -moz-outline-radius:6px; }\n  .bp3-control.bp3-align-right .bp3-control-indicator{\n    float:right;\n    margin-left:10px;\n    margin-top:1px; }\n  .bp3-control.bp3-large{\n    font-size:16px; }\n    .bp3-control.bp3-large:not(.bp3-align-right){\n      padding-left:30px; }\n      .bp3-control.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n        margin-left:-30px; }\n    .bp3-control.bp3-large.bp3-align-right{\n      padding-right:30px; }\n      .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n        margin-right:-30px; }\n    .bp3-control.bp3-large .bp3-control-indicator{\n      font-size:20px; }\n    .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-top:0; }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control.bp3-checkbox .bp3-control-indicator{\n    border-radius:3px; }\n  .bp3-control.bp3-checkbox input:checked ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0012 5z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-radio .bp3-control-indicator{\n    border-radius:50%; }\n  .bp3-control.bp3-radio input:checked ~ .bp3-control-indicator::before{\n    background-image:radial-gradient(#ffffff, #ffffff 28%, transparent 32%); }\n  .bp3-control.bp3-radio input:checked:disabled ~ .bp3-control-indicator::before{\n    opacity:0.5; }\n  .bp3-control.bp3-radio input:focus ~ .bp3-control-indicator{\n    -moz-outline-radius:16px; }\n  .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(167, 182, 194, 0.5); }\n  .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(115, 134, 148, 0.5); }\n  .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(92, 112, 128, 0.5); }\n  .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5); }\n    .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5); }\n    .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch:not(.bp3-align-right){\n    padding-left:38px; }\n    .bp3-control.bp3-switch:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-38px; }\n  .bp3-control.bp3-switch.bp3-align-right{\n    padding-right:38px; }\n    .bp3-control.bp3-switch.bp3-align-right .bp3-control-indicator{\n      margin-right:-38px; }\n  .bp3-control.bp3-switch .bp3-control-indicator{\n    border:none;\n    border-radius:1.75em;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important;\n    min-width:1.75em;\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:auto; }\n    .bp3-control.bp3-switch .bp3-control-indicator::before{\n      background:#ffffff;\n      border-radius:50%;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n      height:calc(1em - 4px);\n      left:0;\n      margin:2px;\n      position:absolute;\n      -webkit-transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      width:calc(1em - 4px); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    left:calc(100% - 1em); }\n  .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right){\n    padding-left:45px; }\n    .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-45px; }\n  .bp3-control.bp3-switch.bp3-large.bp3-align-right{\n    padding-right:45px; }\n    .bp3-control.bp3-switch.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-right:-45px; }\n  .bp3-dark .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.7); }\n  .bp3-dark .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.9); }\n  .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(57, 75, 89, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-dark .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch .bp3-control-indicator::before{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-control.bp3-switch .bp3-switch-inner-text{\n    font-size:0.7em;\n    text-align:center; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:first-child{\n    line-height:0;\n    margin-left:0.5em;\n    margin-right:1.2em;\n    visibility:hidden; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:last-child{\n    line-height:1em;\n    margin-left:1.2em;\n    margin-right:0.5em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:first-child{\n    line-height:1em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:last-child{\n    line-height:0;\n    visibility:hidden; }\n  .bp3-dark .bp3-control{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-control.bp3-disabled{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-control .bp3-control-indicator{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-control:hover .bp3-control-indicator{\n      background-color:#30404d; }\n    .bp3-dark .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n      background:#202b33;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-control input:disabled ~ .bp3-control-indicator{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      cursor:not-allowed; }\n    .bp3-dark .bp3-control.bp3-checkbox input:disabled:checked ~ .bp3-control-indicator, .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-file-input{\n  cursor:pointer;\n  display:inline-block;\n  height:30px;\n  position:relative; }\n  .bp3-file-input input{\n    margin:0;\n    min-width:200px;\n    opacity:0; }\n    .bp3-file-input input:disabled + .bp3-file-upload-input,\n    .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n      background:rgba(206, 217, 224, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      resize:none; }\n      .bp3-file-input input:disabled + .bp3-file-upload-input::after,\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n        background-color:rgba(206, 217, 224, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(92, 112, 128, 0.6);\n        cursor:not-allowed;\n        outline:none; }\n        .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active:hover,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active:hover{\n          background:rgba(206, 217, 224, 0.7); }\n      .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input, .bp3-dark\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n        background:rgba(57, 75, 89, 0.5);\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after, .bp3-dark\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n          background-color:rgba(57, 75, 89, 0.5);\n          background-image:none;\n          -webkit-box-shadow:none;\n                  box-shadow:none;\n          color:rgba(167, 182, 194, 0.6); }\n          .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-dark\n          .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active{\n            background:rgba(57, 75, 89, 0.7); }\n  .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#182026; }\n  .bp3-dark .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#f5f8fa; }\n  .bp3-file-input.bp3-fill{\n    width:100%; }\n  .bp3-file-input.bp3-large,\n  .bp3-large .bp3-file-input{\n    height:40px; }\n  .bp3-file-input .bp3-file-upload-input-custom-text::after{\n    content:attr(bp3-button-text); }\n\n.bp3-file-upload-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle;\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:rgba(92, 112, 128, 0.6);\n  left:0;\n  padding-right:80px;\n  position:absolute;\n  right:0;\n  top:0;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-file-upload-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:focus, .bp3-file-upload-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-file-upload-input[type=\"search\"], .bp3-file-upload-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-file-upload-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-file-upload-input:disabled, .bp3-file-upload-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-file-upload-input::after{\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026;\n    min-height:24px;\n    min-width:24px;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    border-radius:3px;\n    content:\"Browse\";\n    line-height:24px;\n    margin:3px;\n    position:absolute;\n    right:0;\n    text-align:center;\n    top:0;\n    width:70px; }\n    .bp3-file-upload-input::after:hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-file-upload-input::after:active, .bp3-file-upload-input::after.bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-file-upload-input::after:disabled, .bp3-file-upload-input::after.bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-file-upload-input::after:disabled.bp3-active, .bp3-file-upload-input::after:disabled.bp3-active:hover, .bp3-file-upload-input::after.bp3-disabled.bp3-active, .bp3-file-upload-input::after.bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-file-upload-input:hover::after{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-file-upload-input:active::after{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-large .bp3-file-upload-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px;\n    padding-right:95px; }\n    .bp3-large .bp3-file-upload-input[type=\"search\"], .bp3-large .bp3-file-upload-input.bp3-round{\n      padding:0 15px; }\n    .bp3-large .bp3-file-upload-input::after{\n      min-height:30px;\n      min-width:30px;\n      line-height:30px;\n      margin:5px;\n      width:85px; }\n  .bp3-dark .bp3-file-upload-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:disabled, .bp3-dark .bp3-file-upload-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::after{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n      color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover, .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover{\n        background-color:#30404d;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        background-color:#202b33;\n        background-image:none;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n      .bp3-dark .bp3-file-upload-input::after:disabled, .bp3-dark .bp3-file-upload-input::after.bp3-disabled{\n        background-color:rgba(57, 75, 89, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-upload-input::after:disabled.bp3-active, .bp3-dark .bp3-file-upload-input::after.bp3-disabled.bp3-active{\n          background:rgba(57, 75, 89, 0.7); }\n      .bp3-dark .bp3-file-upload-input::after .bp3-button-spinner .bp3-spinner-head{\n        background:rgba(16, 22, 26, 0.5);\n        stroke:#8a9ba8; }\n    .bp3-dark .bp3-file-upload-input:hover::after{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:active::after{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n.bp3-file-upload-input::after{\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n.bp3-form-group{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0 0 15px; }\n  .bp3-form-group label.bp3-label{\n    margin-bottom:5px; }\n  .bp3-form-group .bp3-control{\n    margin-top:7px; }\n  .bp3-form-group .bp3-form-helper-text{\n    color:#5c7080;\n    font-size:12px;\n    margin-top:5px; }\n  .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#106ba3; }\n  .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#0d8050; }\n  .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#bf7326; }\n  .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#c23030; }\n  .bp3-form-group.bp3-inline{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row; }\n    .bp3-form-group.bp3-inline.bp3-large label.bp3-label{\n      line-height:40px;\n      margin:0 10px 0 0; }\n    .bp3-form-group.bp3-inline label.bp3-label{\n      line-height:30px;\n      margin:0 10px 0 0; }\n  .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-dark .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#48aff0; }\n  .bp3-dark .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#3dcc91; }\n  .bp3-dark .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#ffb366; }\n  .bp3-dark .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#ff7373; }\n  .bp3-dark .bp3-form-group .bp3-form-helper-text{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(167, 182, 194, 0.6) !important; }\n.bp3-input-group{\n  display:block;\n  position:relative; }\n  .bp3-input-group .bp3-input{\n    position:relative;\n    width:100%; }\n    .bp3-input-group .bp3-input:not(:first-child){\n      padding-left:30px; }\n    .bp3-input-group .bp3-input:not(:last-child){\n      padding-right:30px; }\n  .bp3-input-group .bp3-input-action,\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-button,\n  .bp3-input-group > .bp3-icon{\n    position:absolute;\n    top:0; }\n    .bp3-input-group .bp3-input-action:first-child,\n    .bp3-input-group > .bp3-input-left-container:first-child,\n    .bp3-input-group > .bp3-button:first-child,\n    .bp3-input-group > .bp3-icon:first-child{\n      left:0; }\n    .bp3-input-group .bp3-input-action:last-child,\n    .bp3-input-group > .bp3-input-left-container:last-child,\n    .bp3-input-group > .bp3-button:last-child,\n    .bp3-input-group > .bp3-icon:last-child{\n      right:0; }\n  .bp3-input-group .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    margin:3px;\n    padding:0 7px; }\n    .bp3-input-group .bp3-button:empty{\n      padding:0; }\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-icon{\n    z-index:1; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon{\n    color:#5c7080; }\n    .bp3-input-group > .bp3-input-left-container > .bp3-icon:empty,\n    .bp3-input-group > .bp3-icon:empty{\n      font-family:\"Icons16\", sans-serif;\n      font-size:16px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon,\n  .bp3-input-group .bp3-input-action > .bp3-spinner{\n    margin:7px; }\n  .bp3-input-group .bp3-tag{\n    margin:5px; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus),\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n    color:#5c7080; }\n    .bp3-dark .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus), .bp3-dark\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n      color:#a7b6c2; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large{\n      color:#5c7080; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled,\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled{\n    color:rgba(92, 112, 128, 0.6) !important; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-large{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-input-group.bp3-disabled{\n    cursor:not-allowed; }\n    .bp3-input-group.bp3-disabled .bp3-icon{\n      color:rgba(92, 112, 128, 0.6); }\n  .bp3-input-group.bp3-large .bp3-button{\n    min-height:30px;\n    min-width:30px;\n    margin:5px; }\n  .bp3-input-group.bp3-large > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-large > .bp3-icon,\n  .bp3-input-group.bp3-large .bp3-input-action > .bp3-spinner{\n    margin:12px; }\n  .bp3-input-group.bp3-large .bp3-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input-group.bp3-large .bp3-input[type=\"search\"], .bp3-input-group.bp3-large .bp3-input.bp3-round{\n      padding:0 15px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:first-child){\n      padding-left:40px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:last-child){\n      padding-right:40px; }\n  .bp3-input-group.bp3-small .bp3-button{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small .bp3-tag{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-small > .bp3-icon,\n  .bp3-input-group.bp3-small .bp3-input-action > .bp3-spinner{\n    margin:4px; }\n  .bp3-input-group.bp3-small .bp3-input{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input-group.bp3-small .bp3-input[type=\"search\"], .bp3-input-group.bp3-small .bp3-input.bp3-round{\n      padding:0 12px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:first-child){\n      padding-left:24px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:last-child){\n      padding-right:24px; }\n  .bp3-input-group.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-input-group.bp3-round .bp3-button,\n  .bp3-input-group.bp3-round .bp3-input,\n  .bp3-input-group.bp3-round .bp3-tag{\n    border-radius:30px; }\n  .bp3-dark .bp3-input-group .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-input-group.bp3-disabled .bp3-icon{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-input-group.bp3-intent-primary .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input-group.bp3-intent-primary .bp3-input:disabled, .bp3-input-group.bp3-intent-primary .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-primary > .bp3-icon{\n    color:#106ba3; }\n    .bp3-dark .bp3-input-group.bp3-intent-primary > .bp3-icon{\n      color:#48aff0; }\n  .bp3-input-group.bp3-intent-success .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input-group.bp3-intent-success .bp3-input:disabled, .bp3-input-group.bp3-intent-success .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-success > .bp3-icon{\n    color:#0d8050; }\n    .bp3-dark .bp3-input-group.bp3-intent-success > .bp3-icon{\n      color:#3dcc91; }\n  .bp3-input-group.bp3-intent-warning .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input-group.bp3-intent-warning .bp3-input:disabled, .bp3-input-group.bp3-intent-warning .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-warning > .bp3-icon{\n    color:#bf7326; }\n    .bp3-dark .bp3-input-group.bp3-intent-warning > .bp3-icon{\n      color:#ffb366; }\n  .bp3-input-group.bp3-intent-danger .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input-group.bp3-intent-danger .bp3-input:disabled, .bp3-input-group.bp3-intent-danger .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-danger > .bp3-icon{\n    color:#c23030; }\n    .bp3-dark .bp3-input-group.bp3-intent-danger > .bp3-icon{\n      color:#ff7373; }\n.bp3-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle; }\n  .bp3-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:focus, .bp3-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-input[type=\"search\"], .bp3-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-input:disabled, .bp3-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-input.bp3-large{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input.bp3-large[type=\"search\"], .bp3-input.bp3-large.bp3-round{\n      padding:0 15px; }\n  .bp3-input.bp3-small{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input.bp3-small[type=\"search\"], .bp3-input.bp3-small.bp3-round{\n      padding:0 12px; }\n  .bp3-input.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-dark .bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input:disabled, .bp3-dark .bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-input.bp3-intent-primary{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input.bp3-intent-primary:disabled, .bp3-input.bp3-intent-primary.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary:focus{\n        -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n                box-shadow:inset 0 0 0 1px #137cbd; }\n      .bp3-dark .bp3-input.bp3-intent-primary:disabled, .bp3-dark .bp3-input.bp3-intent-primary.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-success{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input.bp3-intent-success:disabled, .bp3-input.bp3-intent-success.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success:focus{\n        -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n                box-shadow:inset 0 0 0 1px #0f9960; }\n      .bp3-dark .bp3-input.bp3-intent-success:disabled, .bp3-dark .bp3-input.bp3-intent-success.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-warning{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input.bp3-intent-warning:disabled, .bp3-input.bp3-intent-warning.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning:focus{\n        -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n                box-shadow:inset 0 0 0 1px #d9822b; }\n      .bp3-dark .bp3-input.bp3-intent-warning:disabled, .bp3-dark .bp3-input.bp3-intent-warning.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-danger{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input.bp3-intent-danger:disabled, .bp3-input.bp3-intent-danger.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger:focus{\n        -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #db3737;\n                box-shadow:inset 0 0 0 1px #db3737; }\n      .bp3-dark .bp3-input.bp3-intent-danger:disabled, .bp3-dark .bp3-input.bp3-intent-danger.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input::-ms-clear{\n    display:none; }\ntextarea.bp3-input{\n  max-width:100%;\n  padding:10px; }\n  textarea.bp3-input, textarea.bp3-input.bp3-large, textarea.bp3-input.bp3-small{\n    height:auto;\n    line-height:inherit; }\n  textarea.bp3-input.bp3-small{\n    padding:8px; }\n  .bp3-dark textarea.bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark textarea.bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input:disabled, .bp3-dark textarea.bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\nlabel.bp3-label{\n  display:block;\n  margin-bottom:15px;\n  margin-top:0; }\n  label.bp3-label .bp3-html-select,\n  label.bp3-label .bp3-input,\n  label.bp3-label .bp3-select,\n  label.bp3-label .bp3-slider,\n  label.bp3-label .bp3-popover-wrapper{\n    display:block;\n    margin-top:5px;\n    text-transform:none; }\n  label.bp3-label .bp3-button-group{\n    margin-top:5px; }\n  label.bp3-label .bp3-select select,\n  label.bp3-label .bp3-html-select select{\n    font-weight:400;\n    vertical-align:top;\n    width:100%; }\n  label.bp3-label.bp3-disabled,\n  label.bp3-label.bp3-disabled .bp3-text-muted{\n    color:rgba(92, 112, 128, 0.6); }\n  label.bp3-label.bp3-inline{\n    line-height:30px; }\n    label.bp3-label.bp3-inline .bp3-html-select,\n    label.bp3-label.bp3-inline .bp3-input,\n    label.bp3-label.bp3-inline .bp3-input-group,\n    label.bp3-label.bp3-inline .bp3-select,\n    label.bp3-label.bp3-inline .bp3-popover-wrapper{\n      display:inline-block;\n      margin:0 0 0 5px;\n      vertical-align:top; }\n    label.bp3-label.bp3-inline .bp3-button-group{\n      margin:0 0 0 5px; }\n    label.bp3-label.bp3-inline .bp3-input-group .bp3-input{\n      margin-left:0; }\n    label.bp3-label.bp3-inline.bp3-large{\n      line-height:40px; }\n  label.bp3-label:not(.bp3-inline) .bp3-popover-target{\n    display:block; }\n  .bp3-dark label.bp3-label{\n    color:#f5f8fa; }\n    .bp3-dark label.bp3-label.bp3-disabled,\n    .bp3-dark label.bp3-label.bp3-disabled .bp3-text-muted{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 14px;\n          flex:1 1 14px;\n  min-height:0;\n  padding:0;\n  width:30px; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:first-child{\n    border-radius:0 3px 0 0; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:last-child{\n    border-radius:0 0 3px 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:first-child{\n  border-radius:3px 0 0 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:last-child{\n  border-radius:0 0 0 3px; }\n\n.bp3-numeric-input.bp3-large .bp3-button-group.bp3-vertical > .bp3-button{\n  width:40px; }\n\nform{\n  display:block; }\n.bp3-html-select select,\n.bp3-select select{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  -moz-appearance:none;\n  -webkit-appearance:none;\n  border-radius:3px;\n  height:30px;\n  padding:0 25px 0 10px;\n  width:100%; }\n  .bp3-html-select select > *, .bp3-select select > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-html-select select > .bp3-fill, .bp3-select select > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-html-select select::before,\n  .bp3-select select::before, .bp3-html-select select > *, .bp3-select select > *{\n    margin-right:7px; }\n  .bp3-html-select select:empty::before,\n  .bp3-select select:empty::before,\n  .bp3-html-select select > :last-child,\n  .bp3-select select > :last-child{\n    margin-right:0; }\n  .bp3-html-select select:hover,\n  .bp3-select select:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-html-select select:active,\n  .bp3-select select:active, .bp3-html-select select.bp3-active,\n  .bp3-select select.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-html-select select:disabled,\n  .bp3-select select:disabled, .bp3-html-select select.bp3-disabled,\n  .bp3-select select.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-html-select select:disabled.bp3-active,\n    .bp3-select select:disabled.bp3-active, .bp3-html-select select:disabled.bp3-active:hover,\n    .bp3-select select:disabled.bp3-active:hover, .bp3-html-select select.bp3-disabled.bp3-active,\n    .bp3-select select.bp3-disabled.bp3-active, .bp3-html-select select.bp3-disabled.bp3-active:hover,\n    .bp3-select select.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n\n.bp3-html-select.bp3-minimal select,\n.bp3-select.bp3-minimal select{\n  background:none;\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  .bp3-html-select.bp3-minimal select:hover,\n  .bp3-select.bp3-minimal select:hover{\n    background:rgba(167, 182, 194, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026;\n    text-decoration:none; }\n  .bp3-html-select.bp3-minimal select:active,\n  .bp3-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal select.bp3-active,\n  .bp3-select.bp3-minimal select.bp3-active{\n    background:rgba(115, 134, 148, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026; }\n  .bp3-html-select.bp3-minimal select:disabled,\n  .bp3-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal select:disabled:hover,\n  .bp3-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal select.bp3-disabled,\n  .bp3-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal select.bp3-disabled:hover,\n  .bp3-select.bp3-minimal select.bp3-disabled:hover{\n    background:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n    .bp3-html-select.bp3-minimal select:disabled.bp3-active,\n    .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active{\n      background:rgba(115, 134, 148, 0.3); }\n  .bp3-dark .bp3-html-select.bp3-minimal select, .bp3-html-select.bp3-minimal .bp3-dark select,\n  .bp3-dark .bp3-select.bp3-minimal select, .bp3-select.bp3-minimal .bp3-dark select{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover, .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover{\n      background:rgba(138, 155, 168, 0.15); }\n    .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:rgba(138, 155, 168, 0.3);\n      color:#f5f8fa; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal .bp3-dark select:disabled,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled, .bp3-select.bp3-minimal .bp3-dark select:disabled, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled:hover, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover{\n      background:none;\n      color:rgba(167, 182, 194, 0.6);\n      cursor:not-allowed; }\n      .bp3-dark .bp3-html-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active{\n        background:rgba(138, 155, 168, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-primary,\n  .bp3-select.bp3-minimal select.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover{\n      background:rgba(19, 124, 189, 0.15);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:rgba(19, 124, 189, 0.3);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled{\n      background:none;\n      color:rgba(16, 107, 163, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active{\n        background:rgba(19, 124, 189, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n      stroke:#106ba3; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary{\n      color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.2);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(72, 175, 240, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-success,\n  .bp3-select.bp3-minimal select.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover{\n      background:rgba(15, 153, 96, 0.15);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:rgba(15, 153, 96, 0.3);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled{\n      background:none;\n      color:rgba(13, 128, 80, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active{\n        background:rgba(15, 153, 96, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n      stroke:#0d8050; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success{\n      color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.2);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(61, 204, 145, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-warning,\n  .bp3-select.bp3-minimal select.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover{\n      background:rgba(217, 130, 43, 0.15);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:rgba(217, 130, 43, 0.3);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled{\n      background:none;\n      color:rgba(191, 115, 38, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active{\n        background:rgba(217, 130, 43, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n      stroke:#bf7326; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning{\n      color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.2);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(255, 179, 102, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-danger,\n  .bp3-select.bp3-minimal select.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover{\n      background:rgba(219, 55, 55, 0.15);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:rgba(219, 55, 55, 0.3);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled{\n      background:none;\n      color:rgba(194, 48, 48, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active{\n        background:rgba(219, 55, 55, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n      stroke:#c23030; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger{\n      color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.2);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(255, 115, 115, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n\n.bp3-html-select.bp3-large select,\n.bp3-select.bp3-large select{\n  font-size:16px;\n  height:40px;\n  padding-right:35px; }\n\n.bp3-dark .bp3-html-select select, .bp3-dark .bp3-select select{\n  background-color:#394b59;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n  color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover, .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    background-color:#202b33;\n    background-image:none;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-html-select select:disabled, .bp3-dark .bp3-select select:disabled, .bp3-dark .bp3-html-select select.bp3-disabled, .bp3-dark .bp3-select select.bp3-disabled{\n    background-color:rgba(57, 75, 89, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-html-select select:disabled.bp3-active, .bp3-dark .bp3-select select:disabled.bp3-active, .bp3-dark .bp3-html-select select.bp3-disabled.bp3-active, .bp3-dark .bp3-select select.bp3-disabled.bp3-active{\n      background:rgba(57, 75, 89, 0.7); }\n  .bp3-dark .bp3-html-select select .bp3-button-spinner .bp3-spinner-head, .bp3-dark .bp3-select select .bp3-button-spinner .bp3-spinner-head{\n    background:rgba(16, 22, 26, 0.5);\n    stroke:#8a9ba8; }\n\n.bp3-html-select select:disabled,\n.bp3-select select:disabled{\n  background-color:rgba(206, 217, 224, 0.5);\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-html-select .bp3-icon,\n.bp3-select .bp3-icon, .bp3-select::after{\n  color:#5c7080;\n  pointer-events:none;\n  position:absolute;\n  right:7px;\n  top:7px; }\n  .bp3-html-select .bp3-disabled.bp3-icon,\n  .bp3-select .bp3-disabled.bp3-icon, .bp3-disabled.bp3-select::after{\n    color:rgba(92, 112, 128, 0.6); }\n.bp3-html-select,\n.bp3-select{\n  display:inline-block;\n  letter-spacing:normal;\n  position:relative;\n  vertical-align:middle; }\n  .bp3-html-select select::-ms-expand,\n  .bp3-select select::-ms-expand{\n    display:none; }\n  .bp3-html-select .bp3-icon,\n  .bp3-select .bp3-icon{\n    color:#5c7080; }\n    .bp3-html-select .bp3-icon:hover,\n    .bp3-select .bp3-icon:hover{\n      color:#182026; }\n    .bp3-dark .bp3-html-select .bp3-icon, .bp3-dark\n    .bp3-select .bp3-icon{\n      color:#a7b6c2; }\n      .bp3-dark .bp3-html-select .bp3-icon:hover, .bp3-dark\n      .bp3-select .bp3-icon:hover{\n        color:#f5f8fa; }\n  .bp3-html-select.bp3-large::after,\n  .bp3-html-select.bp3-large .bp3-icon,\n  .bp3-select.bp3-large::after,\n  .bp3-select.bp3-large .bp3-icon{\n    right:12px;\n    top:12px; }\n  .bp3-html-select.bp3-fill,\n  .bp3-html-select.bp3-fill select,\n  .bp3-select.bp3-fill,\n  .bp3-select.bp3-fill select{\n    width:100%; }\n  .bp3-dark .bp3-html-select option, .bp3-dark\n  .bp3-select option{\n    background-color:#30404d;\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select option:disabled, .bp3-dark\n  .bp3-select option:disabled{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-html-select::after, .bp3-dark\n  .bp3-select::after{\n    color:#a7b6c2; }\n\n.bp3-select::after{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  content:\"\"; }\n.bp3-running-text table, table.bp3-html-table{\n  border-spacing:0;\n  font-size:14px; }\n  .bp3-running-text table th, table.bp3-html-table th,\n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    padding:11px;\n    text-align:left;\n    vertical-align:top; }\n  .bp3-running-text table th, table.bp3-html-table th{\n    color:#182026;\n    font-weight:600; }\n  \n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    color:#182026; }\n  .bp3-running-text table tbody tr:first-child th, table.bp3-html-table tbody tr:first-child th,\n  .bp3-running-text table tbody tr:first-child td,\n  table.bp3-html-table tbody tr:first-child td,\n  .bp3-running-text table tfoot tr:first-child th,\n  table.bp3-html-table tfoot tr:first-child th,\n  .bp3-running-text table tfoot tr:first-child td,\n  table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-running-text table th, .bp3-running-text .bp3-dark table th, .bp3-dark table.bp3-html-table th{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table td, .bp3-running-text .bp3-dark table td, .bp3-dark table.bp3-html-table td{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table tbody tr:first-child th, .bp3-running-text .bp3-dark table tbody tr:first-child th, .bp3-dark table.bp3-html-table tbody tr:first-child th,\n  .bp3-dark .bp3-running-text table tbody tr:first-child td,\n  .bp3-running-text .bp3-dark table tbody tr:first-child td,\n  .bp3-dark table.bp3-html-table tbody tr:first-child td,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child th,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child th,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child th,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child td,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child td,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-condensed th,\ntable.bp3-html-table.bp3-html-table-condensed td, table.bp3-html-table.bp3-small th,\ntable.bp3-html-table.bp3-small td{\n  padding-bottom:6px;\n  padding-top:6px; }\n\ntable.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n  background:rgba(191, 204, 214, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n  -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered tbody tr td,\ntable.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n  -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n  table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n    -webkit-box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-interactive tbody tr:hover td{\n  background-color:rgba(191, 204, 214, 0.3);\n  cursor:pointer; }\n\ntable.bp3-html-table.bp3-interactive tbody tr:active td{\n  background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-dark table.bp3-html-table{ }\n  .bp3-dark table.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n    background:rgba(92, 112, 128, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td,\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n      -webkit-box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15);\n              box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:first-child{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:hover td{\n    background-color:rgba(92, 112, 128, 0.3);\n    cursor:pointer; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:active td{\n    background-color:rgba(92, 112, 128, 0.4); }\n\n.bp3-key-combo{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center; }\n  .bp3-key-combo > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-key-combo > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-key-combo::before,\n  .bp3-key-combo > *{\n    margin-right:5px; }\n  .bp3-key-combo:empty::before,\n  .bp3-key-combo > :last-child{\n    margin-right:0; }\n\n.bp3-hotkey-dialog{\n  padding-bottom:0;\n  top:40px; }\n  .bp3-hotkey-dialog .bp3-dialog-body{\n    margin:0;\n    padding:0; }\n  .bp3-hotkey-dialog .bp3-hotkey-label{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1; }\n\n.bp3-hotkey-column{\n  margin:auto;\n  max-height:80vh;\n  overflow-y:auto;\n  padding:30px; }\n  .bp3-hotkey-column .bp3-heading{\n    margin-bottom:20px; }\n    .bp3-hotkey-column .bp3-heading:not(:first-child){\n      margin-top:40px; }\n\n.bp3-hotkey{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:justify;\n      -ms-flex-pack:justify;\n          justify-content:space-between;\n  margin-left:0;\n  margin-right:0; }\n  .bp3-hotkey:not(:last-child){\n    margin-bottom:10px; }\n.bp3-icon{\n  display:inline-block;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  vertical-align:text-bottom; }\n  .bp3-icon:not(:empty)::before{\n    content:\"\" !important;\n    content:unset !important; }\n  .bp3-icon > svg{\n    display:block; }\n    .bp3-icon > svg:not([fill]){\n      fill:currentColor; }\n\n.bp3-icon.bp3-intent-primary, .bp3-icon-standard.bp3-intent-primary, .bp3-icon-large.bp3-intent-primary{\n  color:#106ba3; }\n  .bp3-dark .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-icon-large.bp3-intent-primary{\n    color:#48aff0; }\n\n.bp3-icon.bp3-intent-success, .bp3-icon-standard.bp3-intent-success, .bp3-icon-large.bp3-intent-success{\n  color:#0d8050; }\n  .bp3-dark .bp3-icon.bp3-intent-success, .bp3-dark .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-icon-large.bp3-intent-success{\n    color:#3dcc91; }\n\n.bp3-icon.bp3-intent-warning, .bp3-icon-standard.bp3-intent-warning, .bp3-icon-large.bp3-intent-warning{\n  color:#bf7326; }\n  .bp3-dark .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-icon-large.bp3-intent-warning{\n    color:#ffb366; }\n\n.bp3-icon.bp3-intent-danger, .bp3-icon-standard.bp3-intent-danger, .bp3-icon-large.bp3-intent-danger{\n  color:#c23030; }\n  .bp3-dark .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-icon-large.bp3-intent-danger{\n    color:#ff7373; }\n\nspan.bp3-icon-standard{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon-large{\n  font-family:\"Icons20\", sans-serif;\n  font-size:20px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon:empty{\n  font-family:\"Icons20\";\n  font-size:inherit;\n  font-style:normal;\n  font-weight:400;\n  line-height:1; }\n  span.bp3-icon:empty::before{\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased; }\n\n.bp3-icon-add::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-artifact::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-folder::before{\n  content:\"\"; }\n\n.bp3-icon-airplane::before{\n  content:\"\"; }\n\n.bp3-icon-align-center::before{\n  content:\"\"; }\n\n.bp3-icon-align-justify::before{\n  content:\"\"; }\n\n.bp3-icon-align-left::before{\n  content:\"\"; }\n\n.bp3-icon-align-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-horizontal-center::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-left::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-top::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-vertical-center::before{\n  content:\"\"; }\n\n.bp3-icon-annotation::before{\n  content:\"\"; }\n\n.bp3-icon-application::before{\n  content:\"\"; }\n\n.bp3-icon-applications::before{\n  content:\"\"; }\n\n.bp3-icon-archive::before{\n  content:\"\"; }\n\n.bp3-icon-arrow-bottom-left::before{\n  content:\"↙\"; }\n\n.bp3-icon-arrow-bottom-right::before{\n  content:\"↘\"; }\n\n.bp3-icon-arrow-down::before{\n  content:\"↓\"; }\n\n.bp3-icon-arrow-left::before{\n  content:\"←\"; }\n\n.bp3-icon-arrow-right::before{\n  content:\"→\"; }\n\n.bp3-icon-arrow-top-left::before{\n  content:\"↖\"; }\n\n.bp3-icon-arrow-top-right::before{\n  content:\"↗\"; }\n\n.bp3-icon-arrow-up::before{\n  content:\"↑\"; }\n\n.bp3-icon-arrows-horizontal::before{\n  content:\"↔\"; }\n\n.bp3-icon-arrows-vertical::before{\n  content:\"↕\"; }\n\n.bp3-icon-asterisk::before{\n  content:\"*\"; }\n\n.bp3-icon-automatic-updates::before{\n  content:\"\"; }\n\n.bp3-icon-badge::before{\n  content:\"\"; }\n\n.bp3-icon-ban-circle::before{\n  content:\"\"; }\n\n.bp3-icon-bank-account::before{\n  content:\"\"; }\n\n.bp3-icon-barcode::before{\n  content:\"\"; }\n\n.bp3-icon-blank::before{\n  content:\"\"; }\n\n.bp3-icon-blocked-person::before{\n  content:\"\"; }\n\n.bp3-icon-bold::before{\n  content:\"\"; }\n\n.bp3-icon-book::before{\n  content:\"\"; }\n\n.bp3-icon-bookmark::before{\n  content:\"\"; }\n\n.bp3-icon-box::before{\n  content:\"\"; }\n\n.bp3-icon-briefcase::before{\n  content:\"\"; }\n\n.bp3-icon-bring-data::before{\n  content:\"\"; }\n\n.bp3-icon-build::before{\n  content:\"\"; }\n\n.bp3-icon-calculator::before{\n  content:\"\"; }\n\n.bp3-icon-calendar::before{\n  content:\"\"; }\n\n.bp3-icon-camera::before{\n  content:\"\"; }\n\n.bp3-icon-caret-down::before{\n  content:\"⌄\"; }\n\n.bp3-icon-caret-left::before{\n  content:\"〈\"; }\n\n.bp3-icon-caret-right::before{\n  content:\"〉\"; }\n\n.bp3-icon-caret-up::before{\n  content:\"⌃\"; }\n\n.bp3-icon-cell-tower::before{\n  content:\"\"; }\n\n.bp3-icon-changes::before{\n  content:\"\"; }\n\n.bp3-icon-chart::before{\n  content:\"\"; }\n\n.bp3-icon-chat::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-backward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-forward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-circle::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-down::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-left::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-right::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-up::before{\n  content:\"\"; }\n\n.bp3-icon-citation::before{\n  content:\"\"; }\n\n.bp3-icon-clean::before{\n  content:\"\"; }\n\n.bp3-icon-clipboard::before{\n  content:\"\"; }\n\n.bp3-icon-cloud::before{\n  content:\"☁\"; }\n\n.bp3-icon-cloud-download::before{\n  content:\"\"; }\n\n.bp3-icon-cloud-upload::before{\n  content:\"\"; }\n\n.bp3-icon-code::before{\n  content:\"\"; }\n\n.bp3-icon-code-block::before{\n  content:\"\"; }\n\n.bp3-icon-cog::before{\n  content:\"\"; }\n\n.bp3-icon-collapse-all::before{\n  content:\"\"; }\n\n.bp3-icon-column-layout::before{\n  content:\"\"; }\n\n.bp3-icon-comment::before{\n  content:\"\"; }\n\n.bp3-icon-comparison::before{\n  content:\"\"; }\n\n.bp3-icon-compass::before{\n  content:\"\"; }\n\n.bp3-icon-compressed::before{\n  content:\"\"; }\n\n.bp3-icon-confirm::before{\n  content:\"\"; }\n\n.bp3-icon-console::before{\n  content:\"\"; }\n\n.bp3-icon-contrast::before{\n  content:\"\"; }\n\n.bp3-icon-control::before{\n  content:\"\"; }\n\n.bp3-icon-credit-card::before{\n  content:\"\"; }\n\n.bp3-icon-cross::before{\n  content:\"✗\"; }\n\n.bp3-icon-crown::before{\n  content:\"\"; }\n\n.bp3-icon-cube::before{\n  content:\"\"; }\n\n.bp3-icon-cube-add::before{\n  content:\"\"; }\n\n.bp3-icon-cube-remove::before{\n  content:\"\"; }\n\n.bp3-icon-curved-range-chart::before{\n  content:\"\"; }\n\n.bp3-icon-cut::before{\n  content:\"\"; }\n\n.bp3-icon-dashboard::before{\n  content:\"\"; }\n\n.bp3-icon-data-lineage::before{\n  content:\"\"; }\n\n.bp3-icon-database::before{\n  content:\"\"; }\n\n.bp3-icon-delete::before{\n  content:\"\"; }\n\n.bp3-icon-delta::before{\n  content:\"Δ\"; }\n\n.bp3-icon-derive-column::before{\n  content:\"\"; }\n\n.bp3-icon-desktop::before{\n  content:\"\"; }\n\n.bp3-icon-diagnosis::before{\n  content:\"\"; }\n\n.bp3-icon-diagram-tree::before{\n  content:\"\"; }\n\n.bp3-icon-direction-left::before{\n  content:\"\"; }\n\n.bp3-icon-direction-right::before{\n  content:\"\"; }\n\n.bp3-icon-disable::before{\n  content:\"\"; }\n\n.bp3-icon-document::before{\n  content:\"\"; }\n\n.bp3-icon-document-open::before{\n  content:\"\"; }\n\n.bp3-icon-document-share::before{\n  content:\"\"; }\n\n.bp3-icon-dollar::before{\n  content:\"$\"; }\n\n.bp3-icon-dot::before{\n  content:\"•\"; }\n\n.bp3-icon-double-caret-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-double-caret-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-doughnut-chart::before{\n  content:\"\"; }\n\n.bp3-icon-download::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-draw::before{\n  content:\"\"; }\n\n.bp3-icon-drive-time::before{\n  content:\"\"; }\n\n.bp3-icon-duplicate::before{\n  content:\"\"; }\n\n.bp3-icon-edit::before{\n  content:\"✎\"; }\n\n.bp3-icon-eject::before{\n  content:\"⏏\"; }\n\n.bp3-icon-endorsed::before{\n  content:\"\"; }\n\n.bp3-icon-envelope::before{\n  content:\"✉\"; }\n\n.bp3-icon-equals::before{\n  content:\"\"; }\n\n.bp3-icon-eraser::before{\n  content:\"\"; }\n\n.bp3-icon-error::before{\n  content:\"\"; }\n\n.bp3-icon-euro::before{\n  content:\"€\"; }\n\n.bp3-icon-exchange::before{\n  content:\"\"; }\n\n.bp3-icon-exclude-row::before{\n  content:\"\"; }\n\n.bp3-icon-expand-all::before{\n  content:\"\"; }\n\n.bp3-icon-export::before{\n  content:\"\"; }\n\n.bp3-icon-eye-off::before{\n  content:\"\"; }\n\n.bp3-icon-eye-on::before{\n  content:\"\"; }\n\n.bp3-icon-eye-open::before{\n  content:\"\"; }\n\n.bp3-icon-fast-backward::before{\n  content:\"\"; }\n\n.bp3-icon-fast-forward::before{\n  content:\"\"; }\n\n.bp3-icon-feed::before{\n  content:\"\"; }\n\n.bp3-icon-feed-subscribed::before{\n  content:\"\"; }\n\n.bp3-icon-film::before{\n  content:\"\"; }\n\n.bp3-icon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-filter-keep::before{\n  content:\"\"; }\n\n.bp3-icon-filter-list::before{\n  content:\"\"; }\n\n.bp3-icon-filter-open::before{\n  content:\"\"; }\n\n.bp3-icon-filter-remove::before{\n  content:\"\"; }\n\n.bp3-icon-flag::before{\n  content:\"⚑\"; }\n\n.bp3-icon-flame::before{\n  content:\"\"; }\n\n.bp3-icon-flash::before{\n  content:\"\"; }\n\n.bp3-icon-floppy-disk::before{\n  content:\"\"; }\n\n.bp3-icon-flow-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flow-end::before{\n  content:\"\"; }\n\n.bp3-icon-flow-linear::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flows::before{\n  content:\"\"; }\n\n.bp3-icon-folder-close::before{\n  content:\"\"; }\n\n.bp3-icon-folder-new::before{\n  content:\"\"; }\n\n.bp3-icon-folder-open::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared-open::before{\n  content:\"\"; }\n\n.bp3-icon-follower::before{\n  content:\"\"; }\n\n.bp3-icon-following::before{\n  content:\"\"; }\n\n.bp3-icon-font::before{\n  content:\"\"; }\n\n.bp3-icon-fork::before{\n  content:\"\"; }\n\n.bp3-icon-form::before{\n  content:\"\"; }\n\n.bp3-icon-full-circle::before{\n  content:\"\"; }\n\n.bp3-icon-full-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-fullscreen::before{\n  content:\"\"; }\n\n.bp3-icon-function::before{\n  content:\"\"; }\n\n.bp3-icon-gantt-chart::before{\n  content:\"\"; }\n\n.bp3-icon-geolocation::before{\n  content:\"\"; }\n\n.bp3-icon-geosearch::before{\n  content:\"\"; }\n\n.bp3-icon-git-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-commit::before{\n  content:\"\"; }\n\n.bp3-icon-git-merge::before{\n  content:\"\"; }\n\n.bp3-icon-git-new-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-pull::before{\n  content:\"\"; }\n\n.bp3-icon-git-push::before{\n  content:\"\"; }\n\n.bp3-icon-git-repo::before{\n  content:\"\"; }\n\n.bp3-icon-glass::before{\n  content:\"\"; }\n\n.bp3-icon-globe::before{\n  content:\"\"; }\n\n.bp3-icon-globe-network::before{\n  content:\"\"; }\n\n.bp3-icon-graph::before{\n  content:\"\"; }\n\n.bp3-icon-graph-remove::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-grid::before{\n  content:\"\"; }\n\n.bp3-icon-grid-view::before{\n  content:\"\"; }\n\n.bp3-icon-group-objects::before{\n  content:\"\"; }\n\n.bp3-icon-grouped-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-hand::before{\n  content:\"\"; }\n\n.bp3-icon-hand-down::before{\n  content:\"\"; }\n\n.bp3-icon-hand-left::before{\n  content:\"\"; }\n\n.bp3-icon-hand-right::before{\n  content:\"\"; }\n\n.bp3-icon-hand-up::before{\n  content:\"\"; }\n\n.bp3-icon-header::before{\n  content:\"\"; }\n\n.bp3-icon-header-one::before{\n  content:\"\"; }\n\n.bp3-icon-header-two::before{\n  content:\"\"; }\n\n.bp3-icon-headset::before{\n  content:\"\"; }\n\n.bp3-icon-heart::before{\n  content:\"♥\"; }\n\n.bp3-icon-heart-broken::before{\n  content:\"\"; }\n\n.bp3-icon-heat-grid::before{\n  content:\"\"; }\n\n.bp3-icon-heatmap::before{\n  content:\"\"; }\n\n.bp3-icon-help::before{\n  content:\"?\"; }\n\n.bp3-icon-helper-management::before{\n  content:\"\"; }\n\n.bp3-icon-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-history::before{\n  content:\"\"; }\n\n.bp3-icon-home::before{\n  content:\"⌂\"; }\n\n.bp3-icon-horizontal-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-id-number::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-left::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-right::before{\n  content:\"\"; }\n\n.bp3-icon-import::before{\n  content:\"\"; }\n\n.bp3-icon-inbox::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-geo::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-search::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-update::before{\n  content:\"\"; }\n\n.bp3-icon-info-sign::before{\n  content:\"ℹ\"; }\n\n.bp3-icon-inheritance::before{\n  content:\"\"; }\n\n.bp3-icon-inner-join::before{\n  content:\"\"; }\n\n.bp3-icon-insert::before{\n  content:\"\"; }\n\n.bp3-icon-intersection::before{\n  content:\"\"; }\n\n.bp3-icon-ip-address::before{\n  content:\"\"; }\n\n.bp3-icon-issue::before{\n  content:\"\"; }\n\n.bp3-icon-issue-closed::before{\n  content:\"\"; }\n\n.bp3-icon-issue-new::before{\n  content:\"\"; }\n\n.bp3-icon-italic::before{\n  content:\"\"; }\n\n.bp3-icon-join-table::before{\n  content:\"\"; }\n\n.bp3-icon-key::before{\n  content:\"\"; }\n\n.bp3-icon-key-backspace::before{\n  content:\"\"; }\n\n.bp3-icon-key-command::before{\n  content:\"\"; }\n\n.bp3-icon-key-control::before{\n  content:\"\"; }\n\n.bp3-icon-key-delete::before{\n  content:\"\"; }\n\n.bp3-icon-key-enter::before{\n  content:\"\"; }\n\n.bp3-icon-key-escape::before{\n  content:\"\"; }\n\n.bp3-icon-key-option::before{\n  content:\"\"; }\n\n.bp3-icon-key-shift::before{\n  content:\"\"; }\n\n.bp3-icon-key-tab::before{\n  content:\"\"; }\n\n.bp3-icon-known-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-lab-test::before{\n  content:\"\"; }\n\n.bp3-icon-label::before{\n  content:\"\"; }\n\n.bp3-icon-layer::before{\n  content:\"\"; }\n\n.bp3-icon-layers::before{\n  content:\"\"; }\n\n.bp3-icon-layout::before{\n  content:\"\"; }\n\n.bp3-icon-layout-auto::before{\n  content:\"\"; }\n\n.bp3-icon-layout-balloon::before{\n  content:\"\"; }\n\n.bp3-icon-layout-circle::before{\n  content:\"\"; }\n\n.bp3-icon-layout-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-group-by::before{\n  content:\"\"; }\n\n.bp3-icon-layout-hierarchy::before{\n  content:\"\"; }\n\n.bp3-icon-layout-linear::before{\n  content:\"\"; }\n\n.bp3-icon-layout-skew-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-sorted-clusters::before{\n  content:\"\"; }\n\n.bp3-icon-learning::before{\n  content:\"\"; }\n\n.bp3-icon-left-join::before{\n  content:\"\"; }\n\n.bp3-icon-less-than::before{\n  content:\"\"; }\n\n.bp3-icon-less-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-lifesaver::before{\n  content:\"\"; }\n\n.bp3-icon-lightbulb::before{\n  content:\"\"; }\n\n.bp3-icon-link::before{\n  content:\"\"; }\n\n.bp3-icon-list::before{\n  content:\"☰\"; }\n\n.bp3-icon-list-columns::before{\n  content:\"\"; }\n\n.bp3-icon-list-detail-view::before{\n  content:\"\"; }\n\n.bp3-icon-locate::before{\n  content:\"\"; }\n\n.bp3-icon-lock::before{\n  content:\"\"; }\n\n.bp3-icon-log-in::before{\n  content:\"\"; }\n\n.bp3-icon-log-out::before{\n  content:\"\"; }\n\n.bp3-icon-manual::before{\n  content:\"\"; }\n\n.bp3-icon-manually-entered-data::before{\n  content:\"\"; }\n\n.bp3-icon-map::before{\n  content:\"\"; }\n\n.bp3-icon-map-create::before{\n  content:\"\"; }\n\n.bp3-icon-map-marker::before{\n  content:\"\"; }\n\n.bp3-icon-maximize::before{\n  content:\"\"; }\n\n.bp3-icon-media::before{\n  content:\"\"; }\n\n.bp3-icon-menu::before{\n  content:\"\"; }\n\n.bp3-icon-menu-closed::before{\n  content:\"\"; }\n\n.bp3-icon-menu-open::before{\n  content:\"\"; }\n\n.bp3-icon-merge-columns::before{\n  content:\"\"; }\n\n.bp3-icon-merge-links::before{\n  content:\"\"; }\n\n.bp3-icon-minimize::before{\n  content:\"\"; }\n\n.bp3-icon-minus::before{\n  content:\"−\"; }\n\n.bp3-icon-mobile-phone::before{\n  content:\"\"; }\n\n.bp3-icon-mobile-video::before{\n  content:\"\"; }\n\n.bp3-icon-moon::before{\n  content:\"\"; }\n\n.bp3-icon-more::before{\n  content:\"\"; }\n\n.bp3-icon-mountain::before{\n  content:\"\"; }\n\n.bp3-icon-move::before{\n  content:\"\"; }\n\n.bp3-icon-mugshot::before{\n  content:\"\"; }\n\n.bp3-icon-multi-select::before{\n  content:\"\"; }\n\n.bp3-icon-music::before{\n  content:\"\"; }\n\n.bp3-icon-new-drawing::before{\n  content:\"\"; }\n\n.bp3-icon-new-grid-item::before{\n  content:\"\"; }\n\n.bp3-icon-new-layer::before{\n  content:\"\"; }\n\n.bp3-icon-new-layers::before{\n  content:\"\"; }\n\n.bp3-icon-new-link::before{\n  content:\"\"; }\n\n.bp3-icon-new-object::before{\n  content:\"\"; }\n\n.bp3-icon-new-person::before{\n  content:\"\"; }\n\n.bp3-icon-new-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-new-text-box::before{\n  content:\"\"; }\n\n.bp3-icon-ninja::before{\n  content:\"\"; }\n\n.bp3-icon-not-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-notifications::before{\n  content:\"\"; }\n\n.bp3-icon-notifications-updated::before{\n  content:\"\"; }\n\n.bp3-icon-numbered-list::before{\n  content:\"\"; }\n\n.bp3-icon-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-office::before{\n  content:\"\"; }\n\n.bp3-icon-offline::before{\n  content:\"\"; }\n\n.bp3-icon-oil-field::before{\n  content:\"\"; }\n\n.bp3-icon-one-column::before{\n  content:\"\"; }\n\n.bp3-icon-outdated::before{\n  content:\"\"; }\n\n.bp3-icon-page-layout::before{\n  content:\"\"; }\n\n.bp3-icon-panel-stats::before{\n  content:\"\"; }\n\n.bp3-icon-panel-table::before{\n  content:\"\"; }\n\n.bp3-icon-paperclip::before{\n  content:\"\"; }\n\n.bp3-icon-paragraph::before{\n  content:\"\"; }\n\n.bp3-icon-path::before{\n  content:\"\"; }\n\n.bp3-icon-path-search::before{\n  content:\"\"; }\n\n.bp3-icon-pause::before{\n  content:\"\"; }\n\n.bp3-icon-people::before{\n  content:\"\"; }\n\n.bp3-icon-percentage::before{\n  content:\"\"; }\n\n.bp3-icon-person::before{\n  content:\"\"; }\n\n.bp3-icon-phone::before{\n  content:\"☎\"; }\n\n.bp3-icon-pie-chart::before{\n  content:\"\"; }\n\n.bp3-icon-pin::before{\n  content:\"\"; }\n\n.bp3-icon-pivot::before{\n  content:\"\"; }\n\n.bp3-icon-pivot-table::before{\n  content:\"\"; }\n\n.bp3-icon-play::before{\n  content:\"\"; }\n\n.bp3-icon-plus::before{\n  content:\"+\"; }\n\n.bp3-icon-polygon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-power::before{\n  content:\"\"; }\n\n.bp3-icon-predictive-analysis::before{\n  content:\"\"; }\n\n.bp3-icon-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-presentation::before{\n  content:\"\"; }\n\n.bp3-icon-print::before{\n  content:\"⎙\"; }\n\n.bp3-icon-projects::before{\n  content:\"\"; }\n\n.bp3-icon-properties::before{\n  content:\"\"; }\n\n.bp3-icon-property::before{\n  content:\"\"; }\n\n.bp3-icon-publish-function::before{\n  content:\"\"; }\n\n.bp3-icon-pulse::before{\n  content:\"\"; }\n\n.bp3-icon-random::before{\n  content:\"\"; }\n\n.bp3-icon-record::before{\n  content:\"\"; }\n\n.bp3-icon-redo::before{\n  content:\"\"; }\n\n.bp3-icon-refresh::before{\n  content:\"\"; }\n\n.bp3-icon-regression-chart::before{\n  content:\"\"; }\n\n.bp3-icon-remove::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-repeat::before{\n  content:\"\"; }\n\n.bp3-icon-reset::before{\n  content:\"\"; }\n\n.bp3-icon-resolve::before{\n  content:\"\"; }\n\n.bp3-icon-rig::before{\n  content:\"\"; }\n\n.bp3-icon-right-join::before{\n  content:\"\"; }\n\n.bp3-icon-ring::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-document::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-page::before{\n  content:\"\"; }\n\n.bp3-icon-satellite::before{\n  content:\"\"; }\n\n.bp3-icon-saved::before{\n  content:\"\"; }\n\n.bp3-icon-scatter-plot::before{\n  content:\"\"; }\n\n.bp3-icon-search::before{\n  content:\"\"; }\n\n.bp3-icon-search-around::before{\n  content:\"\"; }\n\n.bp3-icon-search-template::before{\n  content:\"\"; }\n\n.bp3-icon-search-text::before{\n  content:\"\"; }\n\n.bp3-icon-segmented-control::before{\n  content:\"\"; }\n\n.bp3-icon-select::before{\n  content:\"\"; }\n\n.bp3-icon-selection::before{\n  content:\"⦿\"; }\n\n.bp3-icon-send-to::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-graph::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-map::before{\n  content:\"\"; }\n\n.bp3-icon-series-add::before{\n  content:\"\"; }\n\n.bp3-icon-series-configuration::before{\n  content:\"\"; }\n\n.bp3-icon-series-derived::before{\n  content:\"\"; }\n\n.bp3-icon-series-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-series-search::before{\n  content:\"\"; }\n\n.bp3-icon-settings::before{\n  content:\"\"; }\n\n.bp3-icon-share::before{\n  content:\"\"; }\n\n.bp3-icon-shield::before{\n  content:\"\"; }\n\n.bp3-icon-shop::before{\n  content:\"\"; }\n\n.bp3-icon-shopping-cart::before{\n  content:\"\"; }\n\n.bp3-icon-signal-search::before{\n  content:\"\"; }\n\n.bp3-icon-sim-card::before{\n  content:\"\"; }\n\n.bp3-icon-slash::before{\n  content:\"\"; }\n\n.bp3-icon-small-cross::before{\n  content:\"\"; }\n\n.bp3-icon-small-minus::before{\n  content:\"\"; }\n\n.bp3-icon-small-plus::before{\n  content:\"\"; }\n\n.bp3-icon-small-tick::before{\n  content:\"\"; }\n\n.bp3-icon-snowflake::before{\n  content:\"\"; }\n\n.bp3-icon-social-media::before{\n  content:\"\"; }\n\n.bp3-icon-sort::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-asc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-split-columns::before{\n  content:\"\"; }\n\n.bp3-icon-square::before{\n  content:\"\"; }\n\n.bp3-icon-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-star::before{\n  content:\"★\"; }\n\n.bp3-icon-star-empty::before{\n  content:\"☆\"; }\n\n.bp3-icon-step-backward::before{\n  content:\"\"; }\n\n.bp3-icon-step-chart::before{\n  content:\"\"; }\n\n.bp3-icon-step-forward::before{\n  content:\"\"; }\n\n.bp3-icon-stop::before{\n  content:\"\"; }\n\n.bp3-icon-stopwatch::before{\n  content:\"\"; }\n\n.bp3-icon-strikethrough::before{\n  content:\"\"; }\n\n.bp3-icon-style::before{\n  content:\"\"; }\n\n.bp3-icon-swap-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-swap-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-circle::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-cross::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-diamond::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-square::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-down::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-up::before{\n  content:\"\"; }\n\n.bp3-icon-tag::before{\n  content:\"\"; }\n\n.bp3-icon-take-action::before{\n  content:\"\"; }\n\n.bp3-icon-taxi::before{\n  content:\"\"; }\n\n.bp3-icon-text-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-th::before{\n  content:\"\"; }\n\n.bp3-icon-th-derived::before{\n  content:\"\"; }\n\n.bp3-icon-th-disconnect::before{\n  content:\"\"; }\n\n.bp3-icon-th-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-th-list::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-down::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-up::before{\n  content:\"\"; }\n\n.bp3-icon-tick::before{\n  content:\"✓\"; }\n\n.bp3-icon-tick-circle::before{\n  content:\"\"; }\n\n.bp3-icon-time::before{\n  content:\"⏲\"; }\n\n.bp3-icon-timeline-area-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-events::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-line-chart::before{\n  content:\"\"; }\n\n.bp3-icon-tint::before{\n  content:\"\"; }\n\n.bp3-icon-torch::before{\n  content:\"\"; }\n\n.bp3-icon-tractor::before{\n  content:\"\"; }\n\n.bp3-icon-train::before{\n  content:\"\"; }\n\n.bp3-icon-translate::before{\n  content:\"\"; }\n\n.bp3-icon-trash::before{\n  content:\"\"; }\n\n.bp3-icon-tree::before{\n  content:\"\"; }\n\n.bp3-icon-trending-down::before{\n  content:\"\"; }\n\n.bp3-icon-trending-up::before{\n  content:\"\"; }\n\n.bp3-icon-truck::before{\n  content:\"\"; }\n\n.bp3-icon-two-columns::before{\n  content:\"\"; }\n\n.bp3-icon-unarchive::before{\n  content:\"\"; }\n\n.bp3-icon-underline::before{\n  content:\"⎁\"; }\n\n.bp3-icon-undo::before{\n  content:\"⎌\"; }\n\n.bp3-icon-ungroup-objects::before{\n  content:\"\"; }\n\n.bp3-icon-unknown-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-unlock::before{\n  content:\"\"; }\n\n.bp3-icon-unpin::before{\n  content:\"\"; }\n\n.bp3-icon-unresolve::before{\n  content:\"\"; }\n\n.bp3-icon-updated::before{\n  content:\"\"; }\n\n.bp3-icon-upload::before{\n  content:\"\"; }\n\n.bp3-icon-user::before{\n  content:\"\"; }\n\n.bp3-icon-variable::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-video::before{\n  content:\"\"; }\n\n.bp3-icon-volume-down::before{\n  content:\"\"; }\n\n.bp3-icon-volume-off::before{\n  content:\"\"; }\n\n.bp3-icon-volume-up::before{\n  content:\"\"; }\n\n.bp3-icon-walk::before{\n  content:\"\"; }\n\n.bp3-icon-warning-sign::before{\n  content:\"\"; }\n\n.bp3-icon-waterfall-chart::before{\n  content:\"\"; }\n\n.bp3-icon-widget::before{\n  content:\"\"; }\n\n.bp3-icon-widget-button::before{\n  content:\"\"; }\n\n.bp3-icon-widget-footer::before{\n  content:\"\"; }\n\n.bp3-icon-widget-header::before{\n  content:\"\"; }\n\n.bp3-icon-wrench::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-in::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-out::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-to-fit::before{\n  content:\"\"; }\n.bp3-submenu > .bp3-popover-wrapper{\n  display:block; }\n\n.bp3-submenu .bp3-popover-target{\n  display:block; }\n  .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{ }\n\n.bp3-submenu.bp3-popover{\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0 5px; }\n  .bp3-submenu.bp3-popover > .bp3-popover-content{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-submenu.bp3-popover, .bp3-submenu.bp3-popover.bp3-dark{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-dark .bp3-submenu.bp3-popover > .bp3-popover-content, .bp3-submenu.bp3-popover.bp3-dark > .bp3-popover-content{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n.bp3-menu{\n  background:#ffffff;\n  border-radius:3px;\n  color:#182026;\n  list-style:none;\n  margin:0;\n  min-width:180px;\n  padding:5px;\n  text-align:left; }\n\n.bp3-menu-divider{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px; }\n  .bp3-dark .bp3-menu-divider{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-menu-item{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  border-radius:2px;\n  color:inherit;\n  line-height:20px;\n  padding:5px 7px;\n  text-decoration:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-menu-item > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-menu-item > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > *{\n    margin-right:7px; }\n  .bp3-menu-item:empty::before,\n  .bp3-menu-item > :last-child{\n    margin-right:0; }\n  .bp3-menu-item > .bp3-fill{\n    word-break:break-word; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    background-color:rgba(167, 182, 194, 0.3);\n    cursor:pointer;\n    text-decoration:none; }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-dark .bp3-menu-item{\n    color:inherit; }\n    .bp3-dark .bp3-menu-item:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n      background-color:rgba(138, 155, 168, 0.15);\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-disabled{\n      background-color:inherit;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-menu-item.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-primary::before, .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary:active, .bp3-menu-item.bp3-intent-primary:active::before, .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-success::before, .bp3-menu-item.bp3-intent-success::after,\n    .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-menu-item.bp3-intent-success:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success:active, .bp3-menu-item.bp3-intent-success:active::before, .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-warning::before, .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning:active, .bp3-menu-item.bp3-intent-warning:active::before, .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-danger::before, .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger:active, .bp3-menu-item.bp3-intent-danger:active::before, .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    margin-right:7px; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > .bp3-icon{\n    color:#5c7080;\n    margin-top:2px; }\n  .bp3-menu-item .bp3-menu-item-label{\n    color:#5c7080; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    color:inherit; }\n  .bp3-menu-item.bp3-active, .bp3-menu-item:active{\n    background-color:rgba(115, 134, 148, 0.3); }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit !important;\n    color:rgba(92, 112, 128, 0.6) !important;\n    cursor:not-allowed !important;\n    outline:none !important; }\n    .bp3-menu-item.bp3-disabled::before,\n    .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-large .bp3-menu-item{\n    font-size:16px;\n    line-height:22px;\n    padding:9px 7px; }\n    .bp3-large .bp3-menu-item .bp3-icon{\n      margin-top:3px; }\n    .bp3-large .bp3-menu-item::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      margin-right:10px;\n      margin-top:1px; }\n\nbutton.bp3-menu-item{\n  background:none;\n  border:none;\n  text-align:left;\n  width:100%; }\n.bp3-menu-header{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px;\n  cursor:default;\n  padding-left:2px; }\n  .bp3-dark .bp3-menu-header{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n  .bp3-menu-header:first-of-type{\n    border-top:none; }\n  .bp3-menu-header > h6{\n    color:#182026;\n    font-weight:600;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    line-height:17px;\n    margin:0;\n    padding:10px 7px 0 1px; }\n    .bp3-dark .bp3-menu-header > h6{\n      color:#f5f8fa; }\n  .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n  .bp3-large .bp3-menu-header > h6{\n    font-size:18px;\n    padding-bottom:5px;\n    padding-top:15px; }\n  .bp3-large .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n\n.bp3-dark .bp3-menu{\n  background:#30404d;\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-menu-item{ }\n  .bp3-dark .bp3-menu-item.bp3-intent-primary{\n    color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary::before, .bp3-dark .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary:active, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-success{\n    color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success::before, .bp3-dark .bp3-menu-item.bp3-intent-success::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success:active, .bp3-dark .bp3-menu-item.bp3-intent-success:active::before, .bp3-dark .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-warning{\n    color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning::before, .bp3-dark .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning:active, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-danger{\n    color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger::before, .bp3-dark .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger:active, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item::before,\n  .bp3-dark .bp3-menu-item > .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item .bp3-menu-item-label{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item.bp3-active, .bp3-dark .bp3-menu-item:active{\n    background-color:rgba(138, 155, 168, 0.3); }\n  .bp3-dark .bp3-menu-item.bp3-disabled{\n    color:rgba(167, 182, 194, 0.6) !important; }\n    .bp3-dark .bp3-menu-item.bp3-disabled::before,\n    .bp3-dark .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-dark .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(167, 182, 194, 0.6) !important; }\n\n.bp3-dark .bp3-menu-divider,\n.bp3-dark .bp3-menu-header{\n  border-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-dark .bp3-menu-header > h6{\n  color:#f5f8fa; }\n\n.bp3-label .bp3-menu{\n  margin-top:5px; }\n.bp3-navbar{\n  background-color:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  height:50px;\n  padding:0 15px;\n  position:relative;\n  width:100%;\n  z-index:10; }\n  .bp3-navbar.bp3-dark,\n  .bp3-dark .bp3-navbar{\n    background-color:#394b59; }\n  .bp3-navbar.bp3-dark{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-navbar{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-navbar.bp3-fixed-top{\n    left:0;\n    position:fixed;\n    right:0;\n    top:0; }\n\n.bp3-navbar-heading{\n  font-size:16px;\n  margin-right:15px; }\n\n.bp3-navbar-group{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:50px; }\n  .bp3-navbar-group.bp3-align-left{\n    float:left; }\n  .bp3-navbar-group.bp3-align-right{\n    float:right; }\n\n.bp3-navbar-divider{\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  height:20px;\n  margin:0 10px; }\n  .bp3-dark .bp3-navbar-divider{\n    border-left-color:rgba(255, 255, 255, 0.15); }\n.bp3-non-ideal-state{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  height:100%;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  text-align:center;\n  width:100%; }\n  .bp3-non-ideal-state > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-non-ideal-state > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-non-ideal-state::before,\n  .bp3-non-ideal-state > *{\n    margin-bottom:20px; }\n  .bp3-non-ideal-state:empty::before,\n  .bp3-non-ideal-state > :last-child{\n    margin-bottom:0; }\n  .bp3-non-ideal-state > *{\n    max-width:400px; }\n\n.bp3-non-ideal-state-visual{\n  color:rgba(92, 112, 128, 0.6);\n  font-size:60px; }\n  .bp3-dark .bp3-non-ideal-state-visual{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-overflow-list{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:nowrap;\n      flex-wrap:nowrap;\n  min-width:0; }\n\n.bp3-overflow-list-spacer{\n  -ms-flex-negative:1;\n      flex-shrink:1;\n  width:1px; }\n\nbody.bp3-overlay-open{\n  overflow:hidden; }\n\n.bp3-overlay{\n  bottom:0;\n  left:0;\n  position:static;\n  right:0;\n  top:0;\n  z-index:20; }\n  .bp3-overlay:not(.bp3-overlay-open){\n    pointer-events:none; }\n  .bp3-overlay.bp3-overlay-container{\n    overflow:hidden;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-scroll-container{\n    overflow:auto;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-scroll-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-inline{\n    display:inline;\n    overflow:visible; }\n\n.bp3-overlay-content{\n  position:fixed;\n  z-index:20; }\n  .bp3-overlay-inline .bp3-overlay-content,\n  .bp3-overlay-scroll-container .bp3-overlay-content{\n    position:absolute; }\n\n.bp3-overlay-backdrop{\n  bottom:0;\n  left:0;\n  position:fixed;\n  right:0;\n  top:0;\n  opacity:1;\n  background-color:rgba(16, 22, 26, 0.7);\n  overflow:auto;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  z-index:20; }\n  .bp3-overlay-backdrop.bp3-overlay-enter, .bp3-overlay-backdrop.bp3-overlay-appear{\n    opacity:0; }\n  .bp3-overlay-backdrop.bp3-overlay-enter-active, .bp3-overlay-backdrop.bp3-overlay-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop.bp3-overlay-exit{\n    opacity:1; }\n  .bp3-overlay-backdrop.bp3-overlay-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop:focus{\n    outline:none; }\n  .bp3-overlay-inline .bp3-overlay-backdrop{\n    position:absolute; }\n.bp3-panel-stack{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-view{\n    background-color:#30404d; }\n  .bp3-panel-stack-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter, .bp3-panel-stack-push .bp3-panel-stack-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter-active, .bp3-panel-stack-push .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter, .bp3-panel-stack-pop .bp3-panel-stack-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter-active, .bp3-panel-stack-pop .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-panel-stack2{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack2-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack2-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack2-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack2-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack2-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack2-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-view{\n    background-color:#30404d; }\n  .bp3-panel-stack2-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter, .bp3-panel-stack2-push .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter-active, .bp3-panel-stack2-push .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter, .bp3-panel-stack2-pop .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter-active, .bp3-panel-stack2-pop .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-popover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  border-radius:3px;\n  display:inline-block;\n  z-index:20; }\n  .bp3-popover .bp3-popover-arrow{\n    height:30px;\n    position:absolute;\n    width:30px; }\n    .bp3-popover .bp3-popover-arrow::before{\n      height:20px;\n      margin:5px;\n      width:20px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover{\n    margin-bottom:17px;\n    margin-top:-17px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n      bottom:-11px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover{\n    margin-left:17px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n      left:-11px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover{\n    margin-top:17px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n      top:-11px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover{\n    margin-left:-17px;\n    margin-right:17px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n      right:-11px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-popover > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-popover > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n    top:-0.3934px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n    right:-0.3934px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n    left:-0.3934px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n    bottom:-0.3934px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-popover .bp3-popover-content{\n    background:#ffffff;\n    color:inherit; }\n  .bp3-popover .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-popover .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-popover .bp3-popover-arrow-fill{\n    fill:#ffffff; }\n  .bp3-popover-enter > .bp3-popover, .bp3-popover-appear > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3); }\n  .bp3-popover-enter-active > .bp3-popover, .bp3-popover-appear-active > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover-exit > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover .bp3-popover-content{\n    border-radius:3px;\n    position:relative; }\n  .bp3-popover.bp3-popover-content-sizing .bp3-popover-content{\n    max-width:350px;\n    padding:20px; }\n  .bp3-popover-target + .bp3-overlay .bp3-popover.bp3-popover-content-sizing{\n    width:350px; }\n  .bp3-popover.bp3-minimal{\n    margin:0 !important; }\n    .bp3-popover.bp3-minimal .bp3-popover-arrow{\n      display:none; }\n    .bp3-popover.bp3-minimal.bp3-popover{\n      -webkit-transform:scale(1);\n              transform:scale(1); }\n      .bp3-popover-enter > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-enter-active > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n      .bp3-popover-exit > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-exit-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover.bp3-dark,\n  .bp3-dark .bp3-popover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-popover .bp3-popover-content{\n      background:#30404d;\n      color:inherit; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-popover .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-fill{\n      fill:#30404d; }\n\n.bp3-popover-arrow::before{\n  border-radius:2px;\n  content:\"\";\n  display:block;\n  position:absolute;\n  -webkit-transform:rotate(45deg);\n          transform:rotate(45deg); }\n\n.bp3-tether-pinned .bp3-popover-arrow{\n  display:none; }\n\n.bp3-popover-backdrop{\n  background:rgba(255, 255, 255, 0); }\n\n.bp3-transition-container{\n  opacity:1;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  z-index:20; }\n  .bp3-transition-container.bp3-popover-enter, .bp3-transition-container.bp3-popover-appear{\n    opacity:0; }\n  .bp3-transition-container.bp3-popover-enter-active, .bp3-transition-container.bp3-popover-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container.bp3-popover-exit{\n    opacity:1; }\n  .bp3-transition-container.bp3-popover-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container:focus{\n    outline:none; }\n  .bp3-transition-container.bp3-popover-leave .bp3-popover-content{\n    pointer-events:none; }\n  .bp3-transition-container[data-x-out-of-boundaries]{\n    display:none; }\n\nspan.bp3-popover-target{\n  display:inline-block; }\n\n.bp3-popover-wrapper.bp3-fill{\n  width:100%; }\n\n.bp3-portal{\n  left:0;\n  position:absolute;\n  right:0;\n  top:0; }\n@-webkit-keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n@keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n\n.bp3-progress-bar{\n  background:rgba(92, 112, 128, 0.2);\n  border-radius:40px;\n  display:block;\n  height:8px;\n  overflow:hidden;\n  position:relative;\n  width:100%; }\n  .bp3-progress-bar .bp3-progress-meter{\n    background:linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%);\n    background-color:rgba(92, 112, 128, 0.8);\n    background-size:30px 30px;\n    border-radius:40px;\n    height:100%;\n    position:absolute;\n    -webkit-transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:100%; }\n  .bp3-progress-bar:not(.bp3-no-animation):not(.bp3-no-stripes) .bp3-progress-meter{\n    animation:linear-progress-bar-stripes 300ms linear infinite reverse; }\n  .bp3-progress-bar.bp3-no-stripes .bp3-progress-meter{\n    background-image:none; }\n\n.bp3-dark .bp3-progress-bar{\n  background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-progress-bar .bp3-progress-meter{\n    background-color:#8a9ba8; }\n\n.bp3-progress-bar.bp3-intent-primary .bp3-progress-meter{\n  background-color:#137cbd; }\n\n.bp3-progress-bar.bp3-intent-success .bp3-progress-meter{\n  background-color:#0f9960; }\n\n.bp3-progress-bar.bp3-intent-warning .bp3-progress-meter{\n  background-color:#d9822b; }\n\n.bp3-progress-bar.bp3-intent-danger .bp3-progress-meter{\n  background-color:#db3737; }\n@-webkit-keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n@keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n.bp3-skeleton{\n  -webkit-animation:1000ms linear infinite alternate skeleton-glow;\n          animation:1000ms linear infinite alternate skeleton-glow;\n  background:rgba(206, 217, 224, 0.2);\n  background-clip:padding-box !important;\n  border-color:rgba(206, 217, 224, 0.2) !important;\n  border-radius:2px;\n  -webkit-box-shadow:none !important;\n          box-shadow:none !important;\n  color:transparent !important;\n  cursor:default;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-skeleton::before, .bp3-skeleton::after,\n  .bp3-skeleton *{\n    visibility:hidden !important; }\n.bp3-slider{\n  height:40px;\n  min-width:150px;\n  width:100%;\n  cursor:default;\n  outline:none;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-slider:hover{\n    cursor:pointer; }\n  .bp3-slider:active{\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-slider.bp3-disabled{\n    cursor:not-allowed;\n    opacity:0.5; }\n  .bp3-slider.bp3-slider-unlabeled{\n    height:16px; }\n\n.bp3-slider-track,\n.bp3-slider-progress{\n  height:6px;\n  left:0;\n  right:0;\n  top:5px;\n  position:absolute; }\n\n.bp3-slider-track{\n  border-radius:3px;\n  overflow:hidden; }\n\n.bp3-slider-progress{\n  background:rgba(92, 112, 128, 0.2); }\n  .bp3-dark .bp3-slider-progress{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-slider-progress.bp3-intent-primary{\n    background-color:#137cbd; }\n  .bp3-slider-progress.bp3-intent-success{\n    background-color:#0f9960; }\n  .bp3-slider-progress.bp3-intent-warning{\n    background-color:#d9822b; }\n  .bp3-slider-progress.bp3-intent-danger{\n    background-color:#db3737; }\n\n.bp3-slider-handle{\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n  cursor:pointer;\n  height:16px;\n  left:0;\n  position:absolute;\n  top:0;\n  width:16px; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-slider-handle:active, .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-slider-handle:disabled, .bp3-slider-handle.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-slider-handle:disabled.bp3-active, .bp3-slider-handle:disabled.bp3-active:hover, .bp3-slider-handle.bp3-disabled.bp3-active, .bp3-slider-handle.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n  .bp3-slider-handle:focus{\n    z-index:1; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n    cursor:-webkit-grab;\n    cursor:grab;\n    z-index:2; }\n  .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-disabled .bp3-slider-handle{\n    background:#bfccd6;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    pointer-events:none; }\n  .bp3-dark .bp3-slider-handle{\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover, .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-slider-handle:disabled, .bp3-dark .bp3-slider-handle.bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-slider-handle:disabled.bp3-active, .bp3-dark .bp3-slider-handle.bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-slider-handle .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-slider-handle, .bp3-dark .bp3-slider-handle:hover{\n      background-color:#394b59; }\n    .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#293742; }\n  .bp3-dark .bp3-disabled .bp3-slider-handle{\n    background:#5c7080;\n    border-color:#5c7080;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-slider-handle .bp3-slider-label{\n    background:#394b59;\n    border-radius:3px;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n    color:#f5f8fa;\n    margin-left:8px; }\n    .bp3-dark .bp3-slider-handle .bp3-slider-label{\n      background:#e1e8ed;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n      color:#394b59; }\n    .bp3-disabled .bp3-slider-handle .bp3-slider-label{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-slider-handle.bp3-start, .bp3-slider-handle.bp3-end{\n    width:8px; }\n  .bp3-slider-handle.bp3-start{\n    border-bottom-right-radius:0;\n    border-top-right-radius:0; }\n  .bp3-slider-handle.bp3-end{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0;\n    margin-left:8px; }\n    .bp3-slider-handle.bp3-end .bp3-slider-label{\n      margin-left:0; }\n\n.bp3-slider-label{\n  -webkit-transform:translate(-50%, 20px);\n          transform:translate(-50%, 20px);\n  display:inline-block;\n  font-size:12px;\n  line-height:1;\n  padding:2px 5px;\n  position:absolute;\n  vertical-align:top; }\n\n.bp3-slider.bp3-vertical{\n  height:150px;\n  min-width:40px;\n  width:40px; }\n  .bp3-slider.bp3-vertical .bp3-slider-track,\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    bottom:0;\n    height:auto;\n    left:5px;\n    top:0;\n    width:6px; }\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    top:auto; }\n  .bp3-slider.bp3-vertical .bp3-slider-label{\n    -webkit-transform:translate(20px, 50%);\n            transform:translate(20px, 50%); }\n  .bp3-slider.bp3-vertical .bp3-slider-handle{\n    top:auto; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle .bp3-slider-label{\n      margin-left:0;\n      margin-top:-8px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end, .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      height:8px;\n      margin-left:0;\n      width:16px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      border-bottom-right-radius:3px;\n      border-top-left-radius:0; }\n      .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start .bp3-slider-label{\n        -webkit-transform:translate(20px);\n                transform:translate(20px); }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end{\n      border-bottom-left-radius:0;\n      border-bottom-right-radius:0;\n      border-top-left-radius:3px;\n      margin-bottom:8px; }\n\n@-webkit-keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n@keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n.bp3-spinner{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  overflow:visible;\n  vertical-align:middle; }\n  .bp3-spinner svg{\n    display:block; }\n  .bp3-spinner path{\n    fill-opacity:0; }\n  .bp3-spinner .bp3-spinner-head{\n    stroke:rgba(92, 112, 128, 0.8);\n    stroke-linecap:round;\n    -webkit-transform-origin:center;\n            transform-origin:center;\n    -webkit-transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-spinner .bp3-spinner-track{\n    stroke:rgba(92, 112, 128, 0.2); }\n\n.bp3-spinner-animation{\n  -webkit-animation:pt-spinner-animation 500ms linear infinite;\n          animation:pt-spinner-animation 500ms linear infinite; }\n  .bp3-no-spin > .bp3-spinner-animation{\n    -webkit-animation:none;\n            animation:none; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-head{\n  stroke:#8a9ba8; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-track{\n  stroke:rgba(16, 22, 26, 0.5); }\n\n.bp3-spinner.bp3-intent-primary .bp3-spinner-head{\n  stroke:#137cbd; }\n\n.bp3-spinner.bp3-intent-success .bp3-spinner-head{\n  stroke:#0f9960; }\n\n.bp3-spinner.bp3-intent-warning .bp3-spinner-head{\n  stroke:#d9822b; }\n\n.bp3-spinner.bp3-intent-danger .bp3-spinner-head{\n  stroke:#db3737; }\n.bp3-tabs.bp3-vertical{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-list{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab{\n      border-radius:3px;\n      padding:0 10px;\n      width:100%; }\n      .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab[aria-selected=\"true\"]{\n        background-color:rgba(19, 124, 189, 0.2);\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n      background-color:rgba(19, 124, 189, 0.2);\n      border-radius:3px;\n      bottom:0;\n      height:auto;\n      left:0;\n      right:0;\n      top:0; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-panel{\n    margin-top:0;\n    padding-left:20px; }\n\n.bp3-tab-list{\n  -webkit-box-align:end;\n      -ms-flex-align:end;\n          align-items:flex-end;\n  border:none;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  list-style:none;\n  margin:0;\n  padding:0;\n  position:relative; }\n  .bp3-tab-list > *:not(:last-child){\n    margin-right:20px; }\n\n.bp3-tab{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:#182026;\n  cursor:pointer;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  font-size:14px;\n  line-height:30px;\n  max-width:100%;\n  position:relative;\n  vertical-align:top; }\n  .bp3-tab a{\n    color:inherit;\n    display:block;\n    text-decoration:none; }\n  .bp3-tab-indicator-wrapper ~ .bp3-tab{\n    background-color:transparent !important;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important; }\n  .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-tab[aria-selected=\"true\"]{\n    border-radius:0;\n    -webkit-box-shadow:inset 0 -3px 0 #106ba3;\n            box-shadow:inset 0 -3px 0 #106ba3; }\n  .bp3-tab[aria-selected=\"true\"], .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#106ba3; }\n  .bp3-tab:focus{\n    -moz-outline-radius:0; }\n  .bp3-large > .bp3-tab{\n    font-size:16px;\n    line-height:40px; }\n\n.bp3-tab-panel{\n  margin-top:20px; }\n  .bp3-tab-panel[aria-hidden=\"true\"]{\n    display:none; }\n\n.bp3-tab-indicator-wrapper{\n  left:0;\n  pointer-events:none;\n  position:absolute;\n  top:0;\n  -webkit-transform:translateX(0), translateY(0);\n          transform:translateX(0), translateY(0);\n  -webkit-transition:height, width, -webkit-transform;\n  transition:height, width, -webkit-transform;\n  transition:height, transform, width;\n  transition:height, transform, width, -webkit-transform;\n  -webkit-transition-duration:200ms;\n          transition-duration:200ms;\n  -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n          transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n    background-color:#106ba3;\n    bottom:0;\n    height:3px;\n    left:0;\n    position:absolute;\n    right:0; }\n  .bp3-tab-indicator-wrapper.bp3-no-animation{\n    -webkit-transition:none;\n    transition:none; }\n\n.bp3-dark .bp3-tab{\n  color:#f5f8fa; }\n  .bp3-dark .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"]{\n    -webkit-box-shadow:inset 0 -3px 0 #48aff0;\n            box-shadow:inset 0 -3px 0 #48aff0; }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"], .bp3-dark .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#48aff0; }\n\n.bp3-dark .bp3-tab-indicator{\n  background-color:#48aff0; }\n\n.bp3-flex-expander{\n  -webkit-box-flex:1;\n      -ms-flex:1 1;\n          flex:1 1; }\n.bp3-tag{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#5c7080;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:#f5f8fa;\n  font-size:12px;\n  line-height:16px;\n  max-width:100%;\n  min-height:20px;\n  min-width:20px;\n  padding:2px 6px;\n  position:relative; }\n  .bp3-tag.bp3-interactive{\n    cursor:pointer; }\n    .bp3-tag.bp3-interactive:hover{\n      background-color:rgba(92, 112, 128, 0.85); }\n    .bp3-tag.bp3-interactive.bp3-active, .bp3-tag.bp3-interactive:active{\n      background-color:rgba(92, 112, 128, 0.7); }\n  .bp3-tag > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag::before,\n  .bp3-tag > *{\n    margin-right:4px; }\n  .bp3-tag:empty::before,\n  .bp3-tag > :last-child{\n    margin-right:0; }\n  .bp3-tag:focus{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:0;\n    -moz-outline-radius:6px; }\n  .bp3-tag.bp3-round{\n    border-radius:30px;\n    padding-left:8px;\n    padding-right:8px; }\n  .bp3-dark .bp3-tag{\n    background-color:#bfccd6;\n    color:#182026; }\n    .bp3-dark .bp3-tag.bp3-interactive{\n      cursor:pointer; }\n      .bp3-dark .bp3-tag.bp3-interactive:hover{\n        background-color:rgba(191, 204, 214, 0.85); }\n      .bp3-dark .bp3-tag.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-interactive:active{\n        background-color:rgba(191, 204, 214, 0.7); }\n    .bp3-dark .bp3-tag > .bp3-icon, .bp3-dark .bp3-tag .bp3-icon-standard, .bp3-dark .bp3-tag .bp3-icon-large{\n      fill:currentColor; }\n  .bp3-tag > .bp3-icon, .bp3-tag .bp3-icon-standard, .bp3-tag .bp3-icon-large{\n    fill:#ffffff; }\n  .bp3-tag.bp3-large,\n  .bp3-large .bp3-tag{\n    font-size:14px;\n    line-height:20px;\n    min-height:30px;\n    min-width:30px;\n    padding:5px 10px; }\n    .bp3-tag.bp3-large::before,\n    .bp3-tag.bp3-large > *,\n    .bp3-large .bp3-tag::before,\n    .bp3-large .bp3-tag > *{\n      margin-right:7px; }\n    .bp3-tag.bp3-large:empty::before,\n    .bp3-tag.bp3-large > :last-child,\n    .bp3-large .bp3-tag:empty::before,\n    .bp3-large .bp3-tag > :last-child{\n      margin-right:0; }\n    .bp3-tag.bp3-large.bp3-round,\n    .bp3-large .bp3-tag.bp3-round{\n      padding-left:12px;\n      padding-right:12px; }\n  .bp3-tag.bp3-intent-primary{\n    background:#137cbd;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.85); }\n      .bp3-tag.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.7); }\n  .bp3-tag.bp3-intent-success{\n    background:#0f9960;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.85); }\n      .bp3-tag.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.7); }\n  .bp3-tag.bp3-intent-warning{\n    background:#d9822b;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.85); }\n      .bp3-tag.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.7); }\n  .bp3-tag.bp3-intent-danger{\n    background:#db3737;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.85); }\n      .bp3-tag.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.7); }\n  .bp3-tag.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-tag.bp3-minimal > .bp3-icon, .bp3-tag.bp3-minimal .bp3-icon-standard, .bp3-tag.bp3-minimal .bp3-icon-large{\n    fill:#5c7080; }\n  .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n    background-color:rgba(138, 155, 168, 0.2);\n    color:#182026; }\n    .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n        background-color:rgba(92, 112, 128, 0.3); }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n        background-color:rgba(92, 112, 128, 0.4); }\n    .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n      color:#f5f8fa; }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n          background-color:rgba(191, 204, 214, 0.3); }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n          background-color:rgba(191, 204, 214, 0.4); }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) > .bp3-icon, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n        fill:#a7b6c2; }\n  .bp3-tag.bp3-minimal.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15);\n    color:#106ba3; }\n    .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-primary > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-large{\n      fill:#137cbd; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25);\n      color:#48aff0; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n          background-color:rgba(19, 124, 189, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n          background-color:rgba(19, 124, 189, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15);\n    color:#0d8050; }\n    .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-success > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-large{\n      fill:#0f9960; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25);\n      color:#3dcc91; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n          background-color:rgba(15, 153, 96, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n          background-color:rgba(15, 153, 96, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15);\n    color:#bf7326; }\n    .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-warning > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-large{\n      fill:#d9822b; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25);\n      color:#ffb366; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n          background-color:rgba(217, 130, 43, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n          background-color:rgba(217, 130, 43, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15);\n    color:#c23030; }\n    .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-danger > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-large{\n      fill:#db3737; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25);\n      color:#ff7373; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n          background-color:rgba(219, 55, 55, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n          background-color:rgba(219, 55, 55, 0.45); }\n\n.bp3-tag-remove{\n  background:none;\n  border:none;\n  color:inherit;\n  cursor:pointer;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin-bottom:-2px;\n  margin-right:-6px !important;\n  margin-top:-2px;\n  opacity:0.5;\n  padding:2px;\n  padding-left:0; }\n  .bp3-tag-remove:hover{\n    background:none;\n    opacity:0.8;\n    text-decoration:none; }\n  .bp3-tag-remove:active{\n    opacity:1; }\n  .bp3-tag-remove:empty::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    content:\"\"; }\n  .bp3-large .bp3-tag-remove{\n    margin-right:-10px !important;\n    padding:0 5px 0 0; }\n    .bp3-large .bp3-tag-remove:empty::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1; }\n.bp3-tag-input{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  cursor:text;\n  height:auto;\n  line-height:inherit;\n  min-height:30px;\n  padding-left:5px;\n  padding-right:0; }\n  .bp3-tag-input > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag-input > .bp3-tag-input-values{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag-input .bp3-tag-input-icon{\n    color:#5c7080;\n    margin-left:2px;\n    margin-right:7px;\n    margin-top:7px; }\n  .bp3-tag-input .bp3-tag-input-values{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row;\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    -ms-flex-item-align:stretch;\n        align-self:stretch;\n    -ms-flex-wrap:wrap;\n        flex-wrap:wrap;\n    margin-right:7px;\n    margin-top:5px;\n    min-width:0; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      -webkit-box-flex:0;\n          -ms-flex-positive:0;\n              flex-grow:0;\n      -ms-flex-negative:0;\n          flex-shrink:0; }\n    .bp3-tag-input .bp3-tag-input-values > .bp3-fill{\n      -webkit-box-flex:1;\n          -ms-flex-positive:1;\n              flex-grow:1;\n      -ms-flex-negative:1;\n          flex-shrink:1; }\n    .bp3-tag-input .bp3-tag-input-values::before,\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-right:5px; }\n    .bp3-tag-input .bp3-tag-input-values:empty::before,\n    .bp3-tag-input .bp3-tag-input-values > :last-child{\n      margin-right:0; }\n    .bp3-tag-input .bp3-tag-input-values:first-child .bp3-input-ghost:first-child{\n      padding-left:5px; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-bottom:5px; }\n  .bp3-tag-input .bp3-tag{\n    overflow-wrap:break-word; }\n    .bp3-tag-input .bp3-tag.bp3-active{\n      outline:rgba(19, 124, 189, 0.6) auto 2px;\n      outline-offset:0;\n      -moz-outline-radius:6px; }\n  .bp3-tag-input .bp3-input-ghost{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:20px;\n    width:80px; }\n    .bp3-tag-input .bp3-input-ghost:disabled, .bp3-tag-input .bp3-input-ghost.bp3-disabled{\n      cursor:not-allowed; }\n  .bp3-tag-input .bp3-button,\n  .bp3-tag-input .bp3-spinner{\n    margin:3px;\n    margin-left:0; }\n  .bp3-tag-input .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-tag-input.bp3-large{\n    height:auto;\n    min-height:40px; }\n    .bp3-tag-input.bp3-large::before,\n    .bp3-tag-input.bp3-large > *{\n      margin-right:10px; }\n    .bp3-tag-input.bp3-large:empty::before,\n    .bp3-tag-input.bp3-large > :last-child{\n      margin-right:0; }\n    .bp3-tag-input.bp3-large .bp3-tag-input-icon{\n      margin-left:5px;\n      margin-top:10px; }\n    .bp3-tag-input.bp3-large .bp3-input-ghost{\n      line-height:30px; }\n    .bp3-tag-input.bp3-large .bp3-button{\n      min-height:30px;\n      min-width:30px;\n      padding:5px 10px;\n      margin:5px;\n      margin-left:0; }\n    .bp3-tag-input.bp3-large .bp3-spinner{\n      margin:8px;\n      margin-left:0; }\n  .bp3-tag-input.bp3-active{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-tag-input .bp3-tag-input-icon, .bp3-tag-input.bp3-dark .bp3-tag-input-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-tag-input .bp3-input-ghost, .bp3-tag-input.bp3-dark .bp3-input-ghost{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-webkit-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-moz-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost:-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tag-input.bp3-active, .bp3-tag-input.bp3-dark.bp3-active{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-primary, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-success, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-warning, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-danger, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-input-ghost{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0; }\n  .bp3-input-ghost::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:focus{\n    outline:none !important; }\n.bp3-toast{\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:20px 0 0;\n  max-width:500px;\n  min-width:300px;\n  pointer-events:all;\n  position:relative !important; }\n  .bp3-toast.bp3-toast-enter, .bp3-toast.bp3-toast-appear{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active, .bp3-toast.bp3-toast-appear-active{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-enter ~ .bp3-toast, .bp3-toast.bp3-toast-appear ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active ~ .bp3-toast, .bp3-toast.bp3-toast-appear-active ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-exit{\n    opacity:1;\n    -webkit-filter:blur(0);\n            filter:blur(0); }\n  .bp3-toast.bp3-toast-exit-active{\n    opacity:0;\n    -webkit-filter:blur(10px);\n            filter:blur(10px);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:opacity, filter;\n    transition-property:opacity, filter, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast.bp3-toast-exit ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0); }\n  .bp3-toast.bp3-toast-exit-active ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px);\n    -webkit-transition-delay:50ms;\n            transition-delay:50ms;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast .bp3-button-group{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    padding:5px;\n    padding-left:0; }\n  .bp3-toast > .bp3-icon{\n    color:#5c7080;\n    margin:12px;\n    margin-right:0; }\n  .bp3-toast.bp3-dark,\n  .bp3-dark .bp3-toast{\n    background-color:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-toast.bp3-dark > .bp3-icon,\n    .bp3-dark .bp3-toast > .bp3-icon{\n      color:#a7b6c2; }\n  .bp3-toast[class*=\"bp3-intent-\"] a{\n    color:rgba(255, 255, 255, 0.7); }\n    .bp3-toast[class*=\"bp3-intent-\"] a:hover{\n      color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] > .bp3-icon{\n    color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::before,\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button .bp3-icon, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    color:rgba(255, 255, 255, 0.7) !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:focus{\n    outline-color:rgba(255, 255, 255, 0.5); }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:hover{\n    background-color:rgba(255, 255, 255, 0.15) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    background-color:rgba(255, 255, 255, 0.3) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::after{\n    background:rgba(255, 255, 255, 0.3) !important; }\n  .bp3-toast.bp3-intent-primary{\n    background-color:#137cbd;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-success{\n    background-color:#0f9960;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-warning{\n    background-color:#d9822b;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-danger{\n    background-color:#db3737;\n    color:#ffffff; }\n\n.bp3-toast-message{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  padding:11px;\n  word-break:break-word; }\n\n.bp3-toast-container{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box !important;\n  display:-ms-flexbox !important;\n  display:flex !important;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  left:0;\n  overflow:hidden;\n  padding:0 20px 20px;\n  pointer-events:none;\n  right:0;\n  z-index:40; }\n  .bp3-toast-container.bp3-toast-container-in-portal{\n    position:fixed; }\n  .bp3-toast-container.bp3-toast-container-inline{\n    position:absolute; }\n  .bp3-toast-container.bp3-toast-container-top{\n    top:0; }\n  .bp3-toast-container.bp3-toast-container-bottom{\n    bottom:0;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:reverse;\n        -ms-flex-direction:column-reverse;\n            flex-direction:column-reverse;\n    top:auto; }\n  .bp3-toast-container.bp3-toast-container-left{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start; }\n  .bp3-toast-container.bp3-toast-container-right{\n    -webkit-box-align:end;\n        -ms-flex-align:end;\n            align-items:flex-end; }\n\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active) ~ .bp3-toast, .bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active) ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-exit-active ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-leave-active ~ .bp3-toast{\n  -webkit-transform:translateY(60px);\n          transform:translateY(60px); }\n.bp3-tooltip{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1); }\n  .bp3-tooltip .bp3-popover-arrow{\n    height:22px;\n    position:absolute;\n    width:22px; }\n    .bp3-tooltip .bp3-popover-arrow::before{\n      height:14px;\n      margin:4px;\n      width:14px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip{\n    margin-bottom:11px;\n    margin-top:-11px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n      bottom:-8px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip{\n    margin-left:11px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n      left:-8px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip{\n    margin-top:11px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n      top:-8px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip{\n    margin-left:-11px;\n    margin-right:11px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n      right:-8px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-tooltip > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-tooltip > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n    top:-0.22183px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n    right:-0.22183px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n    left:-0.22183px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n    bottom:-0.22183px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-tooltip .bp3-popover-content{\n    background:#394b59;\n    color:#f5f8fa; }\n  .bp3-tooltip .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-tooltip .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-tooltip .bp3-popover-arrow-fill{\n    fill:#394b59; }\n  .bp3-popover-enter > .bp3-tooltip, .bp3-popover-appear > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8); }\n  .bp3-popover-enter-active > .bp3-tooltip, .bp3-popover-appear-active > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover-exit > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tooltip .bp3-popover-content{\n    padding:10px 12px; }\n  .bp3-tooltip.bp3-dark,\n  .bp3-dark .bp3-tooltip{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-tooltip .bp3-popover-content{\n      background:#e1e8ed;\n      color:#394b59; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-fill{\n      fill:#e1e8ed; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-content{\n    background:#137cbd;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-arrow-fill{\n    fill:#137cbd; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-content{\n    background:#0f9960;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-arrow-fill{\n    fill:#0f9960; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-content{\n    background:#d9822b;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-arrow-fill{\n    fill:#d9822b; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-content{\n    background:#db3737;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-arrow-fill{\n    fill:#db3737; }\n\n.bp3-tooltip-indicator{\n  border-bottom:dotted 1px;\n  cursor:help; }\n.bp3-tree .bp3-icon, .bp3-tree .bp3-icon-standard, .bp3-tree .bp3-icon-large{\n  color:#5c7080; }\n  .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-tree .bp3-icon.bp3-intent-success, .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-tree-node-list{\n  list-style:none;\n  margin:0;\n  padding-left:0; }\n\n.bp3-tree-root{\n  background-color:transparent;\n  cursor:default;\n  padding-left:0;\n  position:relative; }\n\n.bp3-tree-node-content-0{\n  padding-left:0px; }\n\n.bp3-tree-node-content-1{\n  padding-left:23px; }\n\n.bp3-tree-node-content-2{\n  padding-left:46px; }\n\n.bp3-tree-node-content-3{\n  padding-left:69px; }\n\n.bp3-tree-node-content-4{\n  padding-left:92px; }\n\n.bp3-tree-node-content-5{\n  padding-left:115px; }\n\n.bp3-tree-node-content-6{\n  padding-left:138px; }\n\n.bp3-tree-node-content-7{\n  padding-left:161px; }\n\n.bp3-tree-node-content-8{\n  padding-left:184px; }\n\n.bp3-tree-node-content-9{\n  padding-left:207px; }\n\n.bp3-tree-node-content-10{\n  padding-left:230px; }\n\n.bp3-tree-node-content-11{\n  padding-left:253px; }\n\n.bp3-tree-node-content-12{\n  padding-left:276px; }\n\n.bp3-tree-node-content-13{\n  padding-left:299px; }\n\n.bp3-tree-node-content-14{\n  padding-left:322px; }\n\n.bp3-tree-node-content-15{\n  padding-left:345px; }\n\n.bp3-tree-node-content-16{\n  padding-left:368px; }\n\n.bp3-tree-node-content-17{\n  padding-left:391px; }\n\n.bp3-tree-node-content-18{\n  padding-left:414px; }\n\n.bp3-tree-node-content-19{\n  padding-left:437px; }\n\n.bp3-tree-node-content-20{\n  padding-left:460px; }\n\n.bp3-tree-node-content{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:30px;\n  padding-right:5px;\n  width:100%; }\n  .bp3-tree-node-content:hover{\n    background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-tree-node-caret,\n.bp3-tree-node-caret-none{\n  min-width:30px; }\n\n.bp3-tree-node-caret{\n  color:#5c7080;\n  cursor:pointer;\n  padding:7px;\n  -webkit-transform:rotate(0deg);\n          transform:rotate(0deg);\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tree-node-caret:hover{\n    color:#182026; }\n  .bp3-dark .bp3-tree-node-caret{\n    color:#a7b6c2; }\n    .bp3-dark .bp3-tree-node-caret:hover{\n      color:#f5f8fa; }\n  .bp3-tree-node-caret.bp3-tree-node-caret-open{\n    -webkit-transform:rotate(90deg);\n            transform:rotate(90deg); }\n  .bp3-tree-node-caret.bp3-icon-standard::before{\n    content:\"\"; }\n\n.bp3-tree-node-icon{\n  margin-right:7px;\n  position:relative; }\n\n.bp3-tree-node-label{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-label span{\n    display:inline; }\n\n.bp3-tree-node-secondary-label{\n  padding:0 5px;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-secondary-label .bp3-popover-wrapper,\n  .bp3-tree-node-secondary-label .bp3-popover-target{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-content{\n  background-color:inherit;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-caret,\n.bp3-tree-node.bp3-disabled .bp3-tree-node-icon{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content,\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-standard, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-large{\n    color:#ffffff; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret::before{\n    color:rgba(255, 255, 255, 0.7); }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret:hover::before{\n    color:#ffffff; }\n\n.bp3-dark .bp3-tree-node-content:hover{\n  background-color:rgba(92, 112, 128, 0.3); }\n\n.bp3-dark .bp3-tree .bp3-icon, .bp3-dark .bp3-tree .bp3-icon-standard, .bp3-dark .bp3-tree .bp3-icon-large{\n  color:#a7b6c2; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-dark .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n.bp3-omnibar{\n  -webkit-filter:blur(0);\n          filter:blur(0);\n  opacity:1;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  left:calc(50% - 250px);\n  top:20vh;\n  width:500px;\n  z-index:21; }\n  .bp3-omnibar.bp3-overlay-enter, .bp3-omnibar.bp3-overlay-appear{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2; }\n  .bp3-omnibar.bp3-overlay-enter-active, .bp3-omnibar.bp3-overlay-appear-active{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar.bp3-overlay-exit{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1; }\n  .bp3-omnibar.bp3-overlay-exit-active{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar .bp3-input{\n    background-color:transparent;\n    border-radius:0; }\n    .bp3-omnibar .bp3-input, .bp3-omnibar .bp3-input:focus{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-omnibar .bp3-menu{\n    background-color:transparent;\n    border-radius:0;\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n    max-height:calc(60vh - 40px);\n    overflow:auto; }\n    .bp3-omnibar .bp3-menu:empty{\n      display:none; }\n  .bp3-dark .bp3-omnibar, .bp3-omnibar.bp3-dark{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-omnibar-overlay .bp3-overlay-backdrop{\n  background-color:rgba(16, 22, 26, 0.2); }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n\n.bp3-multi-select{\n  min-width:150px; }\n\n.bp3-multi-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto; }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* This file was auto-generated by ensureUiComponents() in @jupyterlab/buildutils */\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n/* Icons urls */\n\n:root {\n  --jp-icon-add: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDEzaC02djZoLTJ2LTZINXYtMmg2VjVoMnY2aDZ2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-bug: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0yMCA4aC0yLjgxYy0uNDUtLjc4LTEuMDctMS40NS0xLjgyLTEuOTZMMTcgNC40MSAxNS41OSAzbC0yLjE3IDIuMTdDMTIuOTYgNS4wNiAxMi40OSA1IDEyIDVjLS40OSAwLS45Ni4wNi0xLjQxLjE3TDguNDEgMyA3IDQuNDFsMS42MiAxLjYzQzcuODggNi41NSA3LjI2IDcuMjIgNi44MSA4SDR2MmgyLjA5Yy0uMDUuMzMtLjA5LjY2LS4wOSAxdjFINHYyaDJ2MWMwIC4zNC4wNC42Ny4wOSAxSDR2MmgyLjgxYzEuMDQgMS43OSAyLjk3IDMgNS4xOSAzczQuMTUtMS4yMSA1LjE5LTNIMjB2LTJoLTIuMDljLjA1LS4zMy4wOS0uNjYuMDktMXYtMWgydi0yaC0ydi0xYzAtLjM0LS4wNC0uNjctLjA5LTFIMjBWOHptLTYgOGgtNHYtMmg0djJ6bTAtNGgtNHYtMmg0djJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-build: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE0LjkgMTcuNDVDMTYuMjUgMTcuNDUgMTcuMzUgMTYuMzUgMTcuMzUgMTVDMTcuMzUgMTMuNjUgMTYuMjUgMTIuNTUgMTQuOSAxMi41NUMxMy41NCAxMi41NSAxMi40NSAxMy42NSAxMi40NSAxNUMxMi40NSAxNi4zNSAxMy41NCAxNy40NSAxNC45IDE3LjQ1Wk0yMC4xIDE1LjY4TDIxLjU4IDE2Ljg0QzIxLjcxIDE2Ljk1IDIxLjc1IDE3LjEzIDIxLjY2IDE3LjI5TDIwLjI2IDE5LjcxQzIwLjE3IDE5Ljg2IDIwIDE5LjkyIDE5LjgzIDE5Ljg2TDE4LjA5IDE5LjE2QzE3LjczIDE5LjQ0IDE3LjMzIDE5LjY3IDE2LjkxIDE5Ljg1TDE2LjY0IDIxLjdDMTYuNjIgMjEuODcgMTYuNDcgMjIgMTYuMyAyMkgxMy41QzEzLjMyIDIyIDEzLjE4IDIxLjg3IDEzLjE1IDIxLjdMMTIuODkgMTkuODVDMTIuNDYgMTkuNjcgMTIuMDcgMTkuNDQgMTEuNzEgMTkuMTZMOS45NjAwMiAxOS44NkM5LjgxMDAyIDE5LjkyIDkuNjIwMDIgMTkuODYgOS41NDAwMiAxOS43MUw4LjE0MDAyIDE3LjI5QzguMDUwMDIgMTcuMTMgOC4wOTAwMiAxNi45NSA4LjIyMDAyIDE2Ljg0TDkuNzAwMDIgMTUuNjhMOS42NTAwMSAxNUw5LjcwMDAyIDE0LjMxTDguMjIwMDIgMTMuMTZDOC4wOTAwMiAxMy4wNSA4LjA1MDAyIDEyLjg2IDguMTQwMDIgMTIuNzFMOS41NDAwMiAxMC4yOUM5LjYyMDAyIDEwLjEzIDkuODEwMDIgMTAuMDcgOS45NjAwMiAxMC4xM0wxMS43MSAxMC44NEMxMi4wNyAxMC41NiAxMi40NiAxMC4zMiAxMi44OSAxMC4xNUwxMy4xNSA4LjI4OTk4QzEzLjE4IDguMTI5OTggMTMuMzIgNy45OTk5OCAxMy41IDcuOTk5OThIMTYuM0MxNi40NyA3Ljk5OTk4IDE2LjYyIDguMTI5OTggMTYuNjQgOC4yODk5OEwxNi45MSAxMC4xNUMxNy4zMyAxMC4zMiAxNy43MyAxMC41NiAxOC4wOSAxMC44NEwxOS44MyAxMC4xM0MyMCAxMC4wNyAyMC4xNyAxMC4xMyAyMC4yNiAxMC4yOUwyMS42NiAxMi43MUMyMS43NSAxMi44NiAyMS43MSAxMy4wNSAyMS41OCAxMy4xNkwyMC4xIDE0LjMxTDIwLjE1IDE1TDIwLjEgMTUuNjhaIi8+CiAgICA8cGF0aCBkPSJNNy4zMjk2NiA3LjQ0NDU0QzguMDgzMSA3LjAwOTU0IDguMzM5MzIgNi4wNTMzMiA3LjkwNDMyIDUuMjk5ODhDNy40NjkzMiA0LjU0NjQzIDYuNTA4MSA0LjI4MTU2IDUuNzU0NjYgNC43MTY1NkM1LjM5MTc2IDQuOTI2MDggNS4xMjY5NSA1LjI3MTE4IDUuMDE4NDkgNS42NzU5NEM0LjkxMDA0IDYuMDgwNzEgNC45NjY4MiA2LjUxMTk4IDUuMTc2MzQgNi44NzQ4OEM1LjYxMTM0IDcuNjI4MzIgNi41NzYyMiA3Ljg3OTU0IDcuMzI5NjYgNy40NDQ1NFpNOS42NTcxOCA0Ljc5NTkzTDEwLjg2NzIgNC45NTE3OUMxMC45NjI4IDQuOTc3NDEgMTEuMDQwMiA1LjA3MTMzIDExLjAzODIgNS4xODc5M0wxMS4wMzg4IDYuOTg4OTNDMTEuMDQ1NSA3LjEwMDU0IDEwLjk2MTYgNy4xOTUxOCAxMC44NTUgNy4yMTA1NEw5LjY2MDAxIDcuMzgwODNMOS4yMzkxNSA4LjEzMTg4TDkuNjY5NjEgOS4yNTc0NUM5LjcwNzI5IDkuMzYyNzEgOS42NjkzNCA5LjQ3Njk5IDkuNTc0MDggOS41MzE5OUw4LjAxNTIzIDEwLjQzMkM3LjkxMTMxIDEwLjQ5MiA3Ljc5MzM3IDEwLjQ2NzcgNy43MjEwNSAxMC4zODI0TDYuOTg3NDggOS40MzE4OEw2LjEwOTMxIDkuNDMwODNMNS4zNDcwNCAxMC4zOTA1QzUuMjg5MDkgMTAuNDcwMiA1LjE3MzgzIDEwLjQ5MDUgNS4wNzE4NyAxMC40MzM5TDMuNTEyNDUgOS41MzI5M0MzLjQxMDQ5IDkuNDc2MzMgMy4zNzY0NyA5LjM1NzQxIDMuNDEwNzUgOS4yNTY3OUwzLjg2MzQ3IDguMTQwOTNMMy42MTc0OSA3Ljc3NDg4TDMuNDIzNDcgNy4zNzg4M0wyLjIzMDc1IDcuMjEyOTdDMi4xMjY0NyA3LjE5MjM1IDIuMDQwNDkgNy4xMDM0MiAyLjA0MjQ1IDYuOTg2ODJMMi4wNDE4NyA1LjE4NTgyQzIuMDQzODMgNS4wNjkyMiAyLjExOTA5IDQuOTc5NTggMi4yMTcwNCA0Ljk2OTIyTDMuNDIwNjUgNC43OTM5M0wzLjg2NzQ5IDQuMDI3ODhMMy40MTEwNSAyLjkxNzMxQzMuMzczMzcgMi44MTIwNCAzLjQxMTMxIDIuNjk3NzYgMy41MTUyMyAyLjYzNzc2TDUuMDc0MDggMS43Mzc3NkM1LjE2OTM0IDEuNjgyNzYgNS4yODcyOSAxLjcwNzA0IDUuMzU5NjEgMS43OTIzMUw2LjExOTE1IDIuNzI3ODhMNi45ODAwMSAyLjczODkzTDcuNzI0OTYgMS43ODkyMkM3Ljc5MTU2IDEuNzA0NTggNy45MTU0OCAxLjY3OTIyIDguMDA4NzkgMS43NDA4Mkw5LjU2ODIxIDIuNjQxODJDOS42NzAxNyAyLjY5ODQyIDkuNzEyODUgMi44MTIzNCA5LjY4NzIzIDIuOTA3OTdMOS4yMTcxOCA0LjAzMzgzTDkuNDYzMTYgNC4zOTk4OEw5LjY1NzE4IDQuNzk1OTNaIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iOS45LDEzLjYgMy42LDcuNCA0LjQsNi42IDkuOSwxMi4yIDE1LjQsNi43IDE2LjEsNy40ICIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNS45TDksOS43bDMuOC0zLjhsMS4yLDEuMmwtNC45LDVsLTQuOS01TDUuMiw1Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNy41TDksMTEuMmwzLjgtMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-left: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik0xMC44LDEyLjhMNy4xLDlsMy44LTMuOGwwLDcuNkgxMC44eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-right: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik03LjIsNS4yTDEwLjksOWwtMy44LDMuOFY1LjJINy4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-up-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iMTUuNCwxMy4zIDkuOSw3LjcgNC40LDEzLjIgMy42LDEyLjUgOS45LDYuMyAxNi4xLDEyLjYgIi8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-up: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik01LjIsMTAuNUw5LDYuOGwzLjgsMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-case-sensitive: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgogIDxnIGNsYXNzPSJqcC1pY29uLWFjY2VudDIiIGZpbGw9IiNGRkYiPgogICAgPHBhdGggZD0iTTcuNiw4aDAuOWwzLjUsOGgtMS4xTDEwLDE0SDZsLTAuOSwySDRMNy42LDh6IE04LDkuMUw2LjQsMTNoMy4yTDgsOS4xeiIvPgogICAgPHBhdGggZD0iTTE2LjYsOS44Yy0wLjIsMC4xLTAuNCwwLjEtMC43LDAuMWMtMC4yLDAtMC40LTAuMS0wLjYtMC4yYy0wLjEtMC4xLTAuMi0wLjQtMC4yLTAuNyBjLTAuMywwLjMtMC42LDAuNS0wLjksMC43Yy0wLjMsMC4xLTAuNywwLjItMS4xLDAuMmMtMC4zLDAtMC41LDAtMC43LTAuMWMtMC4yLTAuMS0wLjQtMC4yLTAuNi0wLjNjLTAuMi0wLjEtMC4zLTAuMy0wLjQtMC41IGMtMC4xLTAuMi0wLjEtMC40LTAuMS0wLjdjMC0wLjMsMC4xLTAuNiwwLjItMC44YzAuMS0wLjIsMC4zLTAuNCwwLjQtMC41QzEyLDcsMTIuMiw2LjksMTIuNSw2LjhjMC4yLTAuMSwwLjUtMC4xLDAuNy0wLjIgYzAuMy0wLjEsMC41LTAuMSwwLjctMC4xYzAuMiwwLDAuNC0wLjEsMC42LTAuMWMwLjIsMCwwLjMtMC4xLDAuNC0wLjJjMC4xLTAuMSwwLjItMC4yLDAuMi0wLjRjMC0xLTEuMS0xLTEuMy0xIGMtMC40LDAtMS40LDAtMS40LDEuMmgtMC45YzAtMC40LDAuMS0wLjcsMC4yLTFjMC4xLTAuMiwwLjMtMC40LDAuNS0wLjZjMC4yLTAuMiwwLjUtMC4zLDAuOC0wLjNDMTMuMyw0LDEzLjYsNCwxMy45LDQgYzAuMywwLDAuNSwwLDAuOCwwLjFjMC4zLDAsMC41LDAuMSwwLjcsMC4yYzAuMiwwLjEsMC40LDAuMywwLjUsMC41QzE2LDUsMTYsNS4yLDE2LDUuNnYyLjljMCwwLjIsMCwwLjQsMCwwLjUgYzAsMC4xLDAuMSwwLjIsMC4zLDAuMmMwLjEsMCwwLjIsMCwwLjMsMFY5Ljh6IE0xNS4yLDYuOWMtMS4yLDAuNi0zLjEsMC4yLTMuMSwxLjRjMCwxLjQsMy4xLDEsMy4xLTAuNVY2Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-check: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik05IDE2LjE3TDQuODMgMTJsLTEuNDIgMS40MUw5IDE5IDIxIDdsLTEuNDEtMS40MXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-circle-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDJDNi40NyAyIDIgNi40NyAyIDEyczQuNDcgMTAgMTAgMTAgMTAtNC40NyAxMC0xMFMxNy41MyAyIDEyIDJ6bTAgMThjLTQuNDEgMC04LTMuNTktOC04czMuNTktOCA4LTggOCAzLjU5IDggOC0zLjU5IDgtOCA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-circle: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjgiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-clear: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8bWFzayBpZD0iZG9udXRIb2xlIj4KICAgIDxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0id2hpdGUiIC8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSI4IiBmaWxsPSJibGFjayIvPgogIDwvbWFzaz4KCiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxyZWN0IGhlaWdodD0iMTgiIHdpZHRoPSIyIiB4PSIxMSIgeT0iMyIgdHJhbnNmb3JtPSJyb3RhdGUoMzE1LCAxMiwgMTIpIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIgbWFzaz0idXJsKCNkb251dEhvbGUpIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-close: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1ub25lIGpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIGpwLWljb24zLWhvdmVyIiBmaWxsPSJub25lIj4KICAgIDxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjExIi8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIGpwLWljb24tYWNjZW50Mi1ob3ZlciIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMTkgNi40MUwxNy41OSA1IDEyIDEwLjU5IDYuNDEgNSA1IDYuNDEgMTAuNTkgMTIgNSAxNy41OSA2LjQxIDE5IDEyIDEzLjQxIDE3LjU5IDE5IDE5IDE3LjU5IDEzLjQxIDEyeiIvPgogIDwvZz4KCiAgPGcgY2xhc3M9ImpwLWljb24tbm9uZSBqcC1pY29uLWJ1c3kiIGZpbGw9Im5vbmUiPgogICAgPGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-code: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTExLjQgMTguNkw2LjggMTRMMTEuNCA5LjRMMTAgOEw0IDE0TDEwIDIwTDExLjQgMTguNlpNMTYuNiAxOC42TDIxLjIgMTRMMTYuNiA5LjRMMTggOEwyNCAxNEwxOCAyMEwxNi42IDE4LjZWMTguNloiLz4KCTwvZz4KPC9zdmc+Cg==);\n  --jp-icon-console: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwMCAyMDAiPgogIDxnIGNsYXNzPSJqcC1pY29uLWJyYW5kMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMjg4RDEiPgogICAgPHBhdGggZD0iTTIwIDE5LjhoMTYwdjE1OS45SDIweiIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNmZmYiPgogICAgPHBhdGggZD0iTTEwNSAxMjcuM2g0MHYxMi44aC00MHpNNTEuMSA3N0w3NCA5OS45bC0yMy4zIDIzLjMgMTAuNSAxMC41IDIzLjMtMjMuM0w5NSA5OS45IDg0LjUgODkuNCA2MS42IDY2LjV6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-copy: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTExLjksMUgzLjJDMi40LDEsMS43LDEuNywxLjcsMi41djEwLjJoMS41VjIuNWg4LjdWMXogTTE0LjEsMy45aC04Yy0wLjgsMC0xLjUsMC43LTEuNSwxLjV2MTAuMmMwLDAuOCwwLjcsMS41LDEuNSwxLjVoOCBjMC44LDAsMS41LTAuNywxLjUtMS41VjUuNEMxNS41LDQuNiwxNC45LDMuOSwxNC4xLDMuOXogTTE0LjEsMTUuNWgtOFY1LjRoOFYxNS41eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-copyright: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDI0IDI0IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCI+CiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0xMS44OCw5LjE0YzEuMjgsMC4wNiwxLjYxLDEuMTUsMS42MywxLjY2aDEuNzljLTAuMDgtMS45OC0xLjQ5LTMuMTktMy40NS0zLjE5QzkuNjQsNy42MSw4LDksOCwxMi4xNCBjMCwxLjk0LDAuOTMsNC4yNCwzLjg0LDQuMjRjMi4yMiwwLDMuNDEtMS42NSwzLjQ0LTIuOTVoLTEuNzljLTAuMDMsMC41OS0wLjQ1LDEuMzgtMS42MywxLjQ0QzEwLjU1LDE0LjgzLDEwLDEzLjgxLDEwLDEyLjE0IEMxMCw5LjI1LDExLjI4LDkuMTYsMTEuODgsOS4xNHogTTEyLDJDNi40OCwyLDIsNi40OCwyLDEyczQuNDgsMTAsMTAsMTBzMTAtNC40OCwxMC0xMFMxNy41MiwyLDEyLDJ6IE0xMiwyMGMtNC40MSwwLTgtMy41OS04LTggczMuNTktOCw4LThzOCwzLjU5LDgsOFMxNi40MSwyMCwxMiwyMHoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-cut: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkuNjQgNy42NGMuMjMtLjUuMzYtMS4wNS4zNi0xLjY0IDAtMi4yMS0xLjc5LTQtNC00UzIgMy43OSAyIDZzMS43OSA0IDQgNGMuNTkgMCAxLjE0LS4xMyAxLjY0LS4zNkwxMCAxMmwtMi4zNiAyLjM2QzcuMTQgMTQuMTMgNi41OSAxNCA2IDE0Yy0yLjIxIDAtNCAxLjc5LTQgNHMxLjc5IDQgNCA0IDQtMS43OSA0LTRjMC0uNTktLjEzLTEuMTQtLjM2LTEuNjRMMTIgMTRsNyA3aDN2LTFMOS42NCA3LjY0ek02IDhjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTAgMTJjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTYtNy41Yy0uMjggMC0uNS0uMjItLjUtLjVzLjIyLS41LjUtLjUuNS4yMi41LjUtLjIyLjUtLjUuNXpNMTkgM2wtNiA2IDIgMiA3LTdWM3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-download: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDloLTRWM0g5djZINWw3IDcgNy03ek01IDE4djJoMTR2LTJINXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-edit: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMgMTcuMjVWMjFoMy43NUwxNy44MSA5Ljk0bC0zLjc1LTMuNzVMMyAxNy4yNXpNMjAuNzEgNy4wNGMuMzktLjM5LjM5LTEuMDIgMC0xLjQxbC0yLjM0LTIuMzRjLS4zOS0uMzktMS4wMi0uMzktMS40MSAwbC0xLjgzIDEuODMgMy43NSAzLjc1IDEuODMtMS44M3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-ellipses: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iNSIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxOSIgY3k9IjEyIiByPSIyIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-extension: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwLjUgMTFIMTlWN2MwLTEuMS0uOS0yLTItMmgtNFYzLjVDMTMgMi4xMiAxMS44OCAxIDEwLjUgMVM4IDIuMTIgOCAzLjVWNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAydjMuOEgzLjVjMS40OSAwIDIuNyAxLjIxIDIuNyAyLjdzLTEuMjEgMi43LTIuNyAyLjdIMlYyMGMwIDEuMS45IDIgMiAyaDMuOHYtMS41YzAtMS40OSAxLjIxLTIuNyAyLjctMi43IDEuNDkgMCAyLjcgMS4yMSAyLjcgMi43VjIySDE3YzEuMSAwIDItLjkgMi0ydi00aDEuNWMxLjM4IDAgMi41LTEuMTIgMi41LTIuNVMyMS44OCAxMSAyMC41IDExeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-fast-forward: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTQgMThsOC41LTZMNCA2djEyem05LTEydjEybDguNS02TDEzIDZ6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-file-upload: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkgMTZoNnYtNmg0bC03LTctNyA3aDR6bS00IDJoMTR2Mkg1eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-file: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuMyA4LjJsLTUuNS01LjVjLS4zLS4zLS43LS41LTEuMi0uNUgzLjljLS44LjEtMS42LjktMS42IDEuOHYxNC4xYzAgLjkuNyAxLjYgMS42IDEuNmgxNC4yYy45IDAgMS42LS43IDEuNi0xLjZWOS40Yy4xLS41LS4xLS45LS40LTEuMnptLTUuOC0zLjNsMy40IDMuNmgtMy40VjQuOXptMy45IDEyLjdINC43Yy0uMSAwLS4yIDAtLjItLjJWNC43YzAtLjIuMS0uMy4yLS4zaDcuMnY0LjRzMCAuOC4zIDEuMWMuMy4zIDEuMS4zIDEuMS4zaDQuM3Y3LjJzLS4xLjItLjIuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-filter-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEwIDE4aDR2LTJoLTR2MnpNMyA2djJoMThWNkgzem0zIDdoMTJ2LTJINnYyeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY4YzAtMS4xLS45LTItMi0yaC04bC0yLTJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-html5: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMDAiIGQ9Ik0xMDguNCAwaDIzdjIyLjhoMjEuMlYwaDIzdjY5aC0yM1Y0NmgtMjF2MjNoLTIzLjJNMjA2IDIzaC0yMC4zVjBoNjMuN3YyM0gyMjl2NDZoLTIzbTUzLjUtNjloMjQuMWwxNC44IDI0LjNMMzEzLjIgMGgyNC4xdjY5aC0yM1YzNC44bC0xNi4xIDI0LjgtMTYuMS0yNC44VjY5aC0yMi42bTg5LjItNjloMjN2NDYuMmgzMi42VjY5aC01NS42Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI2U0NGQyNiIgZD0iTTEwNy42IDQ3MWwtMzMtMzcwLjRoMzYyLjhsLTMzIDM3MC4yTDI1NS43IDUxMiIvPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNmMTY1MjkiIGQ9Ik0yNTYgNDgwLjVWMTMxaDE0OC4zTDM3NiA0NDciLz4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNlYmViZWIiIGQ9Ik0xNDIgMTc2LjNoMTE0djQ1LjRoLTY0LjJsNC4yIDQ2LjVoNjB2NDUuM0gxNTQuNG0yIDIyLjhIMjAybDMuMiAzNi4zIDUwLjggMTMuNnY0Ny40bC05My4yLTI2Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIiBmaWxsPSIjZmZmIiBkPSJNMzY5LjYgMTc2LjNIMjU1Ljh2NDUuNGgxMDkuNm0tNC4xIDQ2LjVIMjU1Ljh2NDUuNGg1NmwtNS4zIDU5LTUwLjcgMTMuNnY0Ny4ybDkzLTI1LjgiLz4KPC9zdmc+Cg==);\n  --jp-icon-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1icmFuZDQganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNGRkYiIGQ9Ik0yLjIgMi4yaDE3LjV2MTcuNUgyLjJ6Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzNGNTFCNSIgZD0iTTIuMiAyLjJ2MTcuNWgxNy41bC4xLTE3LjVIMi4yem0xMi4xIDIuMmMxLjIgMCAyLjIgMSAyLjIgMi4ycy0xIDIuMi0yLjIgMi4yLTIuMi0xLTIuMi0yLjIgMS0yLjIgMi4yLTIuMnpNNC40IDE3LjZsMy4zLTguOCAzLjMgNi42IDIuMi0zLjIgNC40IDUuNEg0LjR6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-inspector: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY2YzAtMS4xLS45LTItMi0yem0tNSAxNEg0di00aDExdjR6bTAtNUg0VjloMTF2NHptNSA1aC00VjloNHY5eiIvPgo8L3N2Zz4K);\n  --jp-icon-json: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNGOUE4MjUiPgogICAgPHBhdGggZD0iTTIwLjIgMTEuOGMtMS42IDAtMS43LjUtMS43IDEgMCAuNC4xLjkuMSAxLjMuMS41LjEuOS4xIDEuMyAwIDEuNy0xLjQgMi4zLTMuNSAyLjNoLS45di0xLjloLjVjMS4xIDAgMS40IDAgMS40LS44IDAtLjMgMC0uNi0uMS0xIDAtLjQtLjEtLjgtLjEtMS4yIDAtMS4zIDAtMS44IDEuMy0yLTEuMy0uMi0xLjMtLjctMS4zLTIgMC0uNC4xLS44LjEtMS4yLjEtLjQuMS0uNy4xLTEgMC0uOC0uNC0uNy0xLjQtLjhoLS41VjQuMWguOWMyLjIgMCAzLjUuNyAzLjUgMi4zIDAgLjQtLjEuOS0uMSAxLjMtLjEuNS0uMS45LS4xIDEuMyAwIC41LjIgMSAxLjcgMXYxLjh6TTEuOCAxMC4xYzEuNiAwIDEuNy0uNSAxLjctMSAwLS40LS4xLS45LS4xLTEuMy0uMS0uNS0uMS0uOS0uMS0xLjMgMC0xLjYgMS40LTIuMyAzLjUtMi4zaC45djEuOWgtLjVjLTEgMC0xLjQgMC0xLjQuOCAwIC4zIDAgLjYuMSAxIDAgLjIuMS42LjEgMSAwIDEuMyAwIDEuOC0xLjMgMkM2IDExLjIgNiAxMS43IDYgMTNjMCAuNC0uMS44LS4xIDEuMi0uMS4zLS4xLjctLjEgMSAwIC44LjMuOCAxLjQuOGguNXYxLjloLS45Yy0yLjEgMC0zLjUtLjYtMy41LTIuMyAwLS40LjEtLjkuMS0xLjMuMS0uNS4xLS45LjEtMS4zIDAtLjUtLjItMS0xLjctMXYtMS45eiIvPgogICAgPGNpcmNsZSBjeD0iMTEiIGN5PSIxMy44IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY3g9IjExIiBjeT0iOC4yIiByPSIyLjEiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-julia: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDMyNSAzMDAiPgogIDxnIGNsYXNzPSJqcC1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjY2IzYzMzIj4KICAgIDxwYXRoIGQ9Ik0gMTUwLjg5ODQzOCAyMjUgQyAxNTAuODk4NDM4IDI2Ni40MjE4NzUgMTE3LjMyMDMxMiAzMDAgNzUuODk4NDM4IDMwMCBDIDM0LjQ3NjU2MiAzMDAgMC44OTg0MzggMjY2LjQyMTg3NSAwLjg5ODQzOCAyMjUgQyAwLjg5ODQzOCAxODMuNTc4MTI1IDM0LjQ3NjU2MiAxNTAgNzUuODk4NDM4IDE1MCBDIDExNy4zMjAzMTIgMTUwIDE1MC44OTg0MzggMTgzLjU3ODEyNSAxNTAuODk4NDM4IDIyNSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzM4OTgyNiI+CiAgICA8cGF0aCBkPSJNIDIzNy41IDc1IEMgMjM3LjUgMTE2LjQyMTg3NSAyMDMuOTIxODc1IDE1MCAxNjIuNSAxNTAgQyAxMjEuMDc4MTI1IDE1MCA4Ny41IDExNi40MjE4NzUgODcuNSA3NSBDIDg3LjUgMzMuNTc4MTI1IDEyMS4wNzgxMjUgMCAxNjIuNSAwIEMgMjAzLjkyMTg3NSAwIDIzNy41IDMzLjU3ODEyNSAyMzcuNSA3NSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzk1NThiMiI+CiAgICA8cGF0aCBkPSJNIDMyNC4xMDE1NjIgMjI1IEMgMzI0LjEwMTU2MiAyNjYuNDIxODc1IDI5MC41MjM0MzggMzAwIDI0OS4xMDE1NjIgMzAwIEMgMjA3LjY3OTY4OCAzMDAgMTc0LjEwMTU2MiAyNjYuNDIxODc1IDE3NC4xMDE1NjIgMjI1IEMgMTc0LjEwMTU2MiAxODMuNTc4MTI1IDIwNy42Nzk2ODggMTUwIDI0OS4xMDE1NjIgMTUwIEMgMjkwLjUyMzQzOCAxNTAgMzI0LjEwMTU2MiAxODMuNTc4MTI1IDMyNC4xMDE1NjIgMjI1Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-jupyter-favicon: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUyIiBoZWlnaHQ9IjE2NSIgdmlld0JveD0iMCAwIDE1MiAxNjUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA3ODk0NywgMTEwLjU4MjkyNykiIGQ9Ik03NS45NDIyODQyLDI5LjU4MDQ1NjEgQzQzLjMwMjM5NDcsMjkuNTgwNDU2MSAxNC43OTY3ODMyLDE3LjY1MzQ2MzQgMCwwIEM1LjUxMDgzMjExLDE1Ljg0MDY4MjkgMTUuNzgxNTM4OSwyOS41NjY3NzMyIDI5LjM5MDQ5NDcsMzkuMjc4NDE3MSBDNDIuOTk5Nyw0OC45ODk4NTM3IDU5LjI3MzcsNTQuMjA2NzgwNSA3NS45NjA1Nzg5LDU0LjIwNjc4MDUgQzkyLjY0NzQ1NzksNTQuMjA2NzgwNSAxMDguOTIxNDU4LDQ4Ljk4OTg1MzcgMTIyLjUzMDY2MywzOS4yNzg0MTcxIEMxMzYuMTM5NDUzLDI5LjU2Njc3MzIgMTQ2LjQxMDI4NCwxNS44NDA2ODI5IDE1MS45MjExNTgsMCBDMTM3LjA4Nzg2OCwxNy42NTM0NjM0IDEwOC41ODI1ODksMjkuNTgwNDU2MSA3NS45NDIyODQyLDI5LjU4MDQ1NjEgTDc1Ljk0MjI4NDIsMjkuNTgwNDU2MSBaIiAvPgogICAgPHBhdGggdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMzczNjgsIDAuNzA0ODc4KSIgZD0iTTc1Ljk3ODQ1NzksMjQuNjI2NDA3MyBDMTA4LjYxODc2MywyNC42MjY0MDczIDEzNy4xMjQ0NTgsMzYuNTUzNDQxNSAxNTEuOTIxMTU4LDU0LjIwNjc4MDUgQzE0Ni40MTAyODQsMzguMzY2MjIyIDEzNi4xMzk0NTMsMjQuNjQwMTMxNyAxMjIuNTMwNjYzLDE0LjkyODQ4NzggQzEwOC45MjE0NTgsNS4yMTY4NDM5IDkyLjY0NzQ1NzksMCA3NS45NjA1Nzg5LDAgQzU5LjI3MzcsMCA0Mi45OTk3LDUuMjE2ODQzOSAyOS4zOTA0OTQ3LDE0LjkyODQ4NzggQzE1Ljc4MTUzODksMjQuNjQwMTMxNyA1LjUxMDgzMjExLDM4LjM2NjIyMiAwLDU0LjIwNjc4MDUgQzE0LjgzMzA4MTYsMzYuNTg5OTI5MyA0My4zMzg1Njg0LDI0LjYyNjQwNzMgNzUuOTc4NDU3OSwyNC42MjY0MDczIEw3NS45Nzg0NTc5LDI0LjYyNjQwNzMgWiIgLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-jupyter: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzkiIGhlaWdodD0iNTEiIHZpZXdCb3g9IjAgMCAzOSA1MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTYzOCAtMjI4MSkiPgogICAgPGcgY2xhc3M9ImpwLWljb24td2FybjAiIGZpbGw9IiNGMzc3MjYiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5Ljc0IDIzMTEuOTgpIiBkPSJNIDE4LjI2NDYgNy4xMzQxMUMgMTAuNDE0NSA3LjEzNDExIDMuNTU4NzIgNC4yNTc2IDAgMEMgMS4zMjUzOSAzLjgyMDQgMy43OTU1NiA3LjEzMDgxIDcuMDY4NiA5LjQ3MzAzQyAxMC4zNDE3IDExLjgxNTIgMTQuMjU1NyAxMy4wNzM0IDE4LjI2OSAxMy4wNzM0QyAyMi4yODIzIDEzLjA3MzQgMjYuMTk2MyAxMS44MTUyIDI5LjQ2OTQgOS40NzMwM0MgMzIuNzQyNCA3LjEzMDgxIDM1LjIxMjYgMy44MjA0IDM2LjUzOCAwQyAzMi45NzA1IDQuMjU3NiAyNi4xMTQ4IDcuMTM0MTEgMTguMjY0NiA3LjEzNDExWiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5LjczIDIyODUuNDgpIiBkPSJNIDE4LjI3MzMgNS45MzkzMUMgMjYuMTIzNSA1LjkzOTMxIDMyLjk3OTMgOC44MTU4MyAzNi41MzggMTMuMDczNEMgMzUuMjEyNiA5LjI1MzAzIDMyLjc0MjQgNS45NDI2MiAyOS40Njk0IDMuNjAwNEMgMjYuMTk2MyAxLjI1ODE4IDIyLjI4MjMgMCAxOC4yNjkgMEMgMTQuMjU1NyAwIDEwLjM0MTcgMS4yNTgxOCA3LjA2ODYgMy42MDA0QyAzLjc5NTU2IDUuOTQyNjIgMS4zMjUzOSA5LjI1MzAzIDAgMTMuMDczNEMgMy41Njc0NSA4LjgyNDYzIDEwLjQyMzIgNS45MzkzMSAxOC4yNzMzIDUuOTM5MzFaIi8+CiAgICA8L2c+CiAgICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjY5LjMgMjI4MS4zMSkiIGQ9Ik0gNS44OTM1MyAyLjg0NEMgNS45MTg4OSAzLjQzMTY1IDUuNzcwODUgNC4wMTM2NyA1LjQ2ODE1IDQuNTE2NDVDIDUuMTY1NDUgNS4wMTkyMiA0LjcyMTY4IDUuNDIwMTUgNC4xOTI5OSA1LjY2ODUxQyAzLjY2NDMgNS45MTY4OCAzLjA3NDQ0IDYuMDAxNTEgMi40OTgwNSA1LjkxMTcxQyAxLjkyMTY2IDUuODIxOSAxLjM4NDYzIDUuNTYxNyAwLjk1NDg5OCA1LjE2NDAxQyAwLjUyNTE3IDQuNzY2MzMgMC4yMjIwNTYgNC4yNDkwMyAwLjA4MzkwMzcgMy42Nzc1N0MgLTAuMDU0MjQ4MyAzLjEwNjExIC0wLjAyMTIzIDIuNTA2MTcgMC4xNzg3ODEgMS45NTM2NEMgMC4zNzg3OTMgMS40MDExIDAuNzM2ODA5IDAuOTIwODE3IDEuMjA3NTQgMC41NzM1MzhDIDEuNjc4MjYgMC4yMjYyNTkgMi4yNDA1NSAwLjAyNzU5MTkgMi44MjMyNiAwLjAwMjY3MjI5QyAzLjYwMzg5IC0wLjAzMDcxMTUgNC4zNjU3MyAwLjI0OTc4OSA0Ljk0MTQyIDAuNzgyNTUxQyA1LjUxNzExIDEuMzE1MzEgNS44NTk1NiAyLjA1Njc2IDUuODkzNTMgMi44NDRaIi8+CiAgICAgIDxwYXRoIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE2MzkuOCAyMzIzLjgxKSIgZD0iTSA3LjQyNzg5IDMuNTgzMzhDIDcuNDYwMDggNC4zMjQzIDcuMjczNTUgNS4wNTgxOSA2Ljg5MTkzIDUuNjkyMTNDIDYuNTEwMzEgNi4zMjYwNyA1Ljk1MDc1IDYuODMxNTYgNS4yODQxMSA3LjE0NDZDIDQuNjE3NDcgNy40NTc2MyAzLjg3MzcxIDcuNTY0MTQgMy4xNDcwMiA3LjQ1MDYzQyAyLjQyMDMyIDcuMzM3MTIgMS43NDMzNiA3LjAwODcgMS4yMDE4NCA2LjUwNjk1QyAwLjY2MDMyOCA2LjAwNTIgMC4yNzg2MSA1LjM1MjY4IDAuMTA1MDE3IDQuNjMyMDJDIC0wLjA2ODU3NTcgMy45MTEzNSAtMC4wMjYyMzYxIDMuMTU0OTQgMC4yMjY2NzUgMi40NTg1NkMgMC40Nzk1ODcgMS43NjIxNyAwLjkzMTY5NyAxLjE1NzEzIDEuNTI1NzYgMC43MjAwMzNDIDIuMTE5ODMgMC4yODI5MzUgMi44MjkxNCAwLjAzMzQzOTUgMy41NjM4OSAwLjAwMzEzMzQ0QyA0LjU0NjY3IC0wLjAzNzQwMzMgNS41MDUyOSAwLjMxNjcwNiA2LjIyOTYxIDAuOTg3ODM1QyA2Ljk1MzkzIDEuNjU4OTYgNy4zODQ4NCAyLjU5MjM1IDcuNDI3ODkgMy41ODMzOEwgNy40Mjc4OSAzLjU4MzM4WiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM4LjM2IDIyODYuMDYpIiBkPSJNIDIuMjc0NzEgNC4zOTYyOUMgMS44NDM2MyA0LjQxNTA4IDEuNDE2NzEgNC4zMDQ0NSAxLjA0Nzk5IDQuMDc4NDNDIDAuNjc5MjY4IDMuODUyNCAwLjM4NTMyOCAzLjUyMTE0IDAuMjAzMzcxIDMuMTI2NTZDIDAuMDIxNDEzNiAyLjczMTk4IC0wLjA0MDM3OTggMi4yOTE4MyAwLjAyNTgxMTYgMS44NjE4MUMgMC4wOTIwMDMxIDEuNDMxOCAwLjI4MzIwNCAxLjAzMTI2IDAuNTc1MjEzIDAuNzEwODgzQyAwLjg2NzIyMiAwLjM5MDUxIDEuMjQ2OTEgMC4xNjQ3MDggMS42NjYyMiAwLjA2MjA1OTJDIDIuMDg1NTMgLTAuMDQwNTg5NyAyLjUyNTYxIC0wLjAxNTQ3MTQgMi45MzA3NiAwLjEzNDIzNUMgMy4zMzU5MSAwLjI4Mzk0MSAzLjY4NzkyIDAuNTUxNTA1IDMuOTQyMjIgMC45MDMwNkMgNC4xOTY1MiAxLjI1NDYyIDQuMzQxNjkgMS42NzQzNiA0LjM1OTM1IDIuMTA5MTZDIDQuMzgyOTkgMi42OTEwNyA0LjE3Njc4IDMuMjU4NjkgMy43ODU5NyAzLjY4NzQ2QyAzLjM5NTE2IDQuMTE2MjQgMi44NTE2NiA0LjM3MTE2IDIuMjc0NzEgNC4zOTYyOUwgMi4yNzQ3MSA0LjM5NjI5WiIvPgogICAgPC9nPgogIDwvZz4+Cjwvc3ZnPgo=);\n  --jp-icon-jupyterlab-wordmark: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIHZpZXdCb3g9IjAgMCAxODYwLjggNDc1Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0RTRFNEUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ4MC4xMzY0MDEsIDY0LjI3MTQ5MykiPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMDAwMDAsIDU4Ljg3NTU2NikiPgogICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA4NzYwMywgMC4xNDAyOTQpIj4KICAgICAgICA8cGF0aCBkPSJNLTQyNi45LDE2OS44YzAsNDguNy0zLjcsNjQuNy0xMy42LDc2LjRjLTEwLjgsMTAtMjUsMTUuNS0zOS43LDE1LjVsMy43LDI5IGMyMi44LDAuMyw0NC44LTcuOSw2MS45LTIzLjFjMTcuOC0xOC41LDI0LTQ0LjEsMjQtODMuM1YwSC00Mjd2MTcwLjFMLTQyNi45LDE2OS44TC00MjYuOSwxNjkuOHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTU1LjA0NTI5NiwgNTYuODM3MTA0KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuNTYyNDUzLCAxLjc5OTg0MikiPgogICAgICAgIDxwYXRoIGQ9Ik0tMzEyLDE0OGMwLDIxLDAsMzkuNSwxLjcsNTUuNGgtMzEuOGwtMi4xLTMzLjNoLTAuOGMtNi43LDExLjYtMTYuNCwyMS4zLTI4LDI3LjkgYy0xMS42LDYuNi0yNC44LDEwLTM4LjIsOS44Yy0zMS40LDAtNjktMTcuNy02OS04OVYwaDM2LjR2MTEyLjdjMCwzOC43LDExLjYsNjQuNyw0NC42LDY0LjdjMTAuMy0wLjIsMjAuNC0zLjUsMjguOS05LjQgYzguNS01LjksMTUuMS0xNC4zLDE4LjktMjMuOWMyLjItNi4xLDMuMy0xMi41LDMuMy0xOC45VjAuMmgzNi40VjE0OEgtMzEyTC0zMTIsMTQ4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzOTAuMDEzMzIyLCA1My40Nzk2MzgpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS43MDY0NTgsIDAuMjMxNDI1KSI+CiAgICAgICAgPHBhdGggZD0iTS00NzguNiw3MS40YzAtMjYtMC44LTQ3LTEuNy02Ni43aDMyLjdsMS43LDM0LjhoMC44YzcuMS0xMi41LDE3LjUtMjIuOCwzMC4xLTI5LjcgYzEyLjUtNywyNi43LTEwLjMsNDEtOS44YzQ4LjMsMCw4NC43LDQxLjcsODQuNywxMDMuM2MwLDczLjEtNDMuNywxMDkuMi05MSwxMDkuMmMtMTIuMSwwLjUtMjQuMi0yLjItMzUtNy44IGMtMTAuOC01LjYtMTkuOS0xMy45LTI2LjYtMjQuMmgtMC44VjI5MWgtMzZ2LTIyMEwtNDc4LjYsNzEuNEwtNDc4LjYsNzEuNHogTS00NDIuNiwxMjUuNmMwLjEsNS4xLDAuNiwxMC4xLDEuNywxNS4xIGMzLDEyLjMsOS45LDIzLjMsMTkuOCwzMS4xYzkuOSw3LjgsMjIuMSwxMi4xLDM0LjcsMTIuMWMzOC41LDAsNjAuNy0zMS45LDYwLjctNzguNWMwLTQwLjctMjEuMS03NS42LTU5LjUtNzUuNiBjLTEyLjksMC40LTI1LjMsNS4xLTM1LjMsMTMuNGMtOS45LDguMy0xNi45LDE5LjctMTkuNiwzMi40Yy0xLjUsNC45LTIuMywxMC0yLjUsMTUuMVYxMjUuNkwtNDQyLjYsMTI1LjZMLTQ0Mi42LDEyNS42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MDYuNzQwNzI2LCA1Ni44MzcxMDQpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC43NTEyMjYsIDEuOTg5Mjk5KSI+CiAgICAgICAgPHBhdGggZD0iTS00NDAuOCwwbDQzLjcsMTIwLjFjNC41LDEzLjQsOS41LDI5LjQsMTIuOCw0MS43aDAuOGMzLjctMTIuMiw3LjktMjcuNywxMi44LTQyLjQgbDM5LjctMTE5LjJoMzguNUwtMzQ2LjksMTQ1Yy0yNiw2OS43LTQzLjcsMTA1LjQtNjguNiwxMjcuMmMtMTIuNSwxMS43LTI3LjksMjAtNDQuNiwyMy45bC05LjEtMzEuMSBjMTEuNy0zLjksMjIuNS0xMC4xLDMxLjgtMTguMWMxMy4yLTExLjEsMjMuNy0yNS4yLDMwLjYtNDEuMmMxLjUtMi44LDIuNS01LjcsMi45LTguOGMtMC4zLTMuMy0xLjItNi42LTIuNS05LjdMLTQ4MC4yLDAuMSBoMzkuN0wtNDQwLjgsMEwtNDQwLjgsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODIyLjc0ODEwNCwgMC4wMDAwMDApIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS40NjQwNTAsIDAuMzc4OTE0KSI+CiAgICAgICAgPHBhdGggZD0iTS00MTMuNywwdjU4LjNoNTJ2MjguMmgtNTJWMTk2YzAsMjUsNywzOS41LDI3LjMsMzkuNWM3LjEsMC4xLDE0LjItMC43LDIxLjEtMi41IGwxLjcsMjcuN2MtMTAuMywzLjctMjEuMyw1LjQtMzIuMiw1Yy03LjMsMC40LTE0LjYtMC43LTIxLjMtMy40Yy02LjgtMi43LTEyLjktNi44LTE3LjktMTIuMWMtMTAuMy0xMC45LTE0LjEtMjktMTQuMS01Mi45IFY4Ni41aC0zMVY1OC4zaDMxVjkuNkwtNDEzLjcsMEwtNDEzLjcsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOTc0LjQzMzI4NiwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuOTkwMDM0LCAwLjYxMDMzOSkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDQ1LjgsMTEzYzAuOCw1MCwzMi4yLDcwLjYsNjguNiw3MC42YzE5LDAuNiwzNy45LTMsNTUuMy0xMC41bDYuMiwyNi40IGMtMjAuOSw4LjktNDMuNSwxMy4xLTY2LjIsMTIuNmMtNjEuNSwwLTk4LjMtNDEuMi05OC4zLTEwMi41Qy00ODAuMiw0OC4yLTQ0NC43LDAtMzg2LjUsMGM2NS4yLDAsODIuNyw1OC4zLDgyLjcsOTUuNyBjLTAuMSw1LjgtMC41LDExLjUtMS4yLDE3LjJoLTE0MC42SC00NDUuOEwtNDQ1LjgsMTEzeiBNLTMzOS4yLDg2LjZjMC40LTIzLjUtOS41LTYwLjEtNTAuNC02MC4xIGMtMzYuOCwwLTUyLjgsMzQuNC01NS43LDYwLjFILTMzOS4yTC0zMzkuMiw4Ni42TC0zMzkuMiw4Ni42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjAxLjk2MTA1OCwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuMTc5NjQwLCAwLjcwNTA2OCkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDc4LjYsNjhjMC0yMy45LTAuNC00NC41LTEuNy02My40aDMxLjhsMS4yLDM5LjloMS43YzkuMS0yNy4zLDMxLTQ0LjUsNTUuMy00NC41IGMzLjUtMC4xLDcsMC40LDEwLjMsMS4ydjM0LjhjLTQuMS0wLjktOC4yLTEuMy0xMi40LTEuMmMtMjUuNiwwLTQzLjcsMTkuNy00OC43LDQ3LjRjLTEsNS43LTEuNiwxMS41LTEuNywxNy4ydjEwOC4zaC0zNlY2OCBMLTQ3OC42LDY4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCBkPSJNMTM1Mi4zLDMyNi4yaDM3VjI4aC0zN1YzMjYuMnogTTE2MDQuOCwzMjYuMmMtMi41LTEzLjktMy40LTMxLjEtMy40LTQ4Ljd2LTc2IGMwLTQwLjctMTUuMS04My4xLTc3LjMtODMuMWMtMjUuNiwwLTUwLDcuMS02Ni44LDE4LjFsOC40LDI0LjRjMTQuMy05LjIsMzQtMTUuMSw1My0xNS4xYzQxLjYsMCw0Ni4yLDMwLjIsNDYuMiw0N3Y0LjIgYy03OC42LTAuNC0xMjIuMywyNi41LTEyMi4zLDc1LjZjMCwyOS40LDIxLDU4LjQsNjIuMiw1OC40YzI5LDAsNTAuOS0xNC4zLDYyLjItMzAuMmgxLjNsMi45LDI1LjZIMTYwNC44eiBNMTU2NS43LDI1Ny43IGMwLDMuOC0wLjgsOC0yLjEsMTEuOGMtNS45LDE3LjItMjIuNywzNC00OS4yLDM0Yy0xOC45LDAtMzQuOS0xMS4zLTM0LjktMzUuM2MwLTM5LjUsNDUuOC00Ni42LDg2LjItNDUuOFYyNTcuN3ogTTE2OTguNSwzMjYuMiBsMS43LTMzLjZoMS4zYzE1LjEsMjYuOSwzOC43LDM4LjIsNjguMSwzOC4yYzQ1LjQsMCw5MS4yLTM2LjEsOTEuMi0xMDguOGMwLjQtNjEuNy0zNS4zLTEwMy43LTg1LjctMTAzLjcgYy0zMi44LDAtNTYuMywxNC43LTY5LjMsMzcuNGgtMC44VjI4aC0zNi42djI0NS43YzAsMTguMS0wLjgsMzguNi0xLjcsNTIuNUgxNjk4LjV6IE0xNzA0LjgsMjA4LjJjMC01LjksMS4zLTEwLjksMi4xLTE1LjEgYzcuNi0yOC4xLDMxLjEtNDUuNCw1Ni4zLTQ1LjRjMzkuNSwwLDYwLjUsMzQuOSw2MC41LDc1LjZjMCw0Ni42LTIzLjEsNzguMS02MS44LDc4LjFjLTI2LjksMC00OC4zLTE3LjYtNTUuNS00My4zIGMtMC44LTQuMi0xLjctOC44LTEuNy0xMy40VjIwOC4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgZmlsbD0iIzYxNjE2MSIgZD0iTTE1IDlIOXY2aDZWOXptLTIgNGgtMnYtMmgydjJ6bTgtMlY5aC0yVjdjMC0xLjEtLjktMi0yLTJoLTJWM2gtMnYyaC0yVjNIOXYySDdjLTEuMSAwLTIgLjktMiAydjJIM3YyaDJ2MkgzdjJoMnYyYzAgMS4xLjkgMiAyIDJoMnYyaDJ2LTJoMnYyaDJ2LTJoMmMxLjEgMCAyLS45IDItMnYtMmgydi0yaC0ydi0yaDJ6bS00IDZIN1Y3aDEwdjEweiIvPgo8L3N2Zz4K);\n  --jp-icon-keyboard: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMTdjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY3YzAtMS4xLS45LTItMi0yem0tOSAzaDJ2MmgtMlY4em0wIDNoMnYyaC0ydi0yek04IDhoMnYySDhWOHptMCAzaDJ2Mkg4di0yem0tMSAySDV2LTJoMnYyem0wLTNINVY4aDJ2MnptOSA3SDh2LTJoOHYyem0wLTRoLTJ2LTJoMnYyem0wLTNoLTJWOGgydjJ6bTMgM2gtMnYtMmgydjJ6bTAtM2gtMlY4aDJ2MnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-launcher: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkgMTlINVY1aDdWM0g1YTIgMiAwIDAwLTIgMnYxNGEyIDIgMCAwMDIgMmgxNGMxLjEgMCAyLS45IDItMnYtN2gtMnY3ek0xNCAzdjJoMy41OWwtOS44MyA5LjgzIDEuNDEgMS40MUwxOSA2LjQxVjEwaDJWM2gtN3oiLz4KPC9zdmc+Cg==);\n  --jp-icon-line-form: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGZpbGw9IndoaXRlIiBkPSJNNS44OCA0LjEyTDEzLjc2IDEybC03Ljg4IDcuODhMOCAyMmwxMC0xMEw4IDJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-link: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMuOSAxMmMwLTEuNzEgMS4zOS0zLjEgMy4xLTMuMWg0VjdIN2MtMi43NiAwLTUgMi4yNC01IDVzMi4yNCA1IDUgNWg0di0xLjlIN2MtMS43MSAwLTMuMS0xLjM5LTMuMS0zLjF6TTggMTNoOHYtMkg4djJ6bTktNmgtNHYxLjloNGMxLjcxIDAgMy4xIDEuMzkgMy4xIDMuMXMtMS4zOSAzLjEtMy4xIDMuMWgtNFYxN2g0YzIuNzYgMCA1LTIuMjQgNS01cy0yLjI0LTUtNS01eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiM2MTYxNjEiIGQ9Ik0xOSA1djE0SDVWNWgxNG0xLjEtMkgzLjljLS41IDAtLjkuNC0uOS45djE2LjJjMCAuNC40LjkuOS45aDE2LjJjLjQgMCAuOS0uNS45LS45VjMuOWMwLS41LS41LS45LS45LS45ek0xMSA3aDZ2MmgtNlY3em0wIDRoNnYyaC02di0yem0wIDRoNnYyaC02ek03IDdoMnYySDd6bTAgNGgydjJIN3ptMCA0aDJ2Mkg3eiIvPgo8L3N2Zz4=);\n  --jp-icon-listings-info: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MC45NzggNTAuOTc4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MC45NzggNTAuOTc4OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+Cgk8Zz4KCQk8cGF0aCBzdHlsZT0iZmlsbDojMDEwMDAyOyIgZD0iTTQzLjUyLDcuNDU4QzM4LjcxMSwyLjY0OCwzMi4zMDcsMCwyNS40ODksMEMxOC42NywwLDEyLjI2NiwyLjY0OCw3LjQ1OCw3LjQ1OAoJCQljLTkuOTQzLDkuOTQxLTkuOTQzLDI2LjExOSwwLDM2LjA2MmM0LjgwOSw0LjgwOSwxMS4yMTIsNy40NTYsMTguMDMxLDcuNDU4YzAsMCwwLjAwMSwwLDAuMDAyLDAKCQkJYzYuODE2LDAsMTMuMjIxLTIuNjQ4LDE4LjAyOS03LjQ1OGM0LjgwOS00LjgwOSw3LjQ1Ny0xMS4yMTIsNy40NTctMTguMDNDNTAuOTc3LDE4LjY3LDQ4LjMyOCwxMi4yNjYsNDMuNTIsNy40NTh6CgkJCSBNNDIuMTA2LDQyLjEwNWMtNC40MzIsNC40MzEtMTAuMzMyLDYuODcyLTE2LjYxNSw2Ljg3MmgtMC4wMDJjLTYuMjg1LTAuMDAxLTEyLjE4Ny0yLjQ0MS0xNi42MTctNi44NzIKCQkJYy05LjE2Mi05LjE2My05LjE2Mi0yNC4wNzEsMC0zMy4yMzNDMTMuMzAzLDQuNDQsMTkuMjA0LDIsMjUuNDg5LDJjNi4yODQsMCwxMi4xODYsMi40NCwxNi42MTcsNi44NzIKCQkJYzQuNDMxLDQuNDMxLDYuODcxLDEwLjMzMiw2Ljg3MSwxNi42MTdDNDguOTc3LDMxLjc3Miw0Ni41MzYsMzcuNjc1LDQyLjEwNiw0Mi4xMDV6Ii8+CgkJPHBhdGggc3R5bGU9ImZpbGw6IzAxMDAwMjsiIGQ9Ik0yMy41NzgsMzIuMjE4Yy0wLjAyMy0xLjczNCwwLjE0My0zLjA1OSwwLjQ5Ni0zLjk3MmMwLjM1My0wLjkxMywxLjExLTEuOTk3LDIuMjcyLTMuMjUzCgkJCWMwLjQ2OC0wLjUzNiwwLjkyMy0xLjA2MiwxLjM2Ny0xLjU3NWMwLjYyNi0wLjc1MywxLjEwNC0xLjQ3OCwxLjQzNi0yLjE3NWMwLjMzMS0wLjcwNywwLjQ5NS0xLjU0MSwwLjQ5NS0yLjUKCQkJYzAtMS4wOTYtMC4yNi0yLjA4OC0wLjc3OS0yLjk3OWMtMC41NjUtMC44NzktMS41MDEtMS4zMzYtMi44MDYtMS4zNjljLTEuODAyLDAuMDU3LTIuOTg1LDAuNjY3LTMuNTUsMS44MzIKCQkJYy0wLjMwMSwwLjUzNS0wLjUwMywxLjE0MS0wLjYwNywxLjgxNGMtMC4xMzksMC43MDctMC4yMDcsMS40MzItMC4yMDcsMi4xNzRoLTIuOTM3Yy0wLjA5MS0yLjIwOCwwLjQwNy00LjExNCwxLjQ5My01LjcxOQoJCQljMS4wNjItMS42NCwyLjg1NS0yLjQ4MSw1LjM3OC0yLjUyN2MyLjE2LDAuMDIzLDMuODc0LDAuNjA4LDUuMTQxLDEuNzU4YzEuMjc4LDEuMTYsMS45MjksMi43NjQsMS45NSw0LjgxMQoJCQljMCwxLjE0Mi0wLjEzNywyLjExMS0wLjQxLDIuOTExYy0wLjMwOSwwLjg0NS0wLjczMSwxLjU5My0xLjI2OCwyLjI0M2MtMC40OTIsMC42NS0xLjA2OCwxLjMxOC0xLjczLDIuMDAyCgkJCWMtMC42NSwwLjY5Ny0xLjMxMywxLjQ3OS0xLjk4NywyLjM0NmMtMC4yMzksMC4zNzctMC40MjksMC43NzctMC41NjUsMS4xOTljLTAuMTYsMC45NTktMC4yMTcsMS45NTEtMC4xNzEsMi45NzkKCQkJQzI2LjU4OSwzMi4yMTgsMjMuNTc4LDMyLjIxOCwyMy41NzgsMzIuMjE4eiBNMjMuNTc4LDM4LjIydi0zLjQ4NGgzLjA3NnYzLjQ4NEgyMy41Nzh6Ii8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-markdown: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjN0IxRkEyIiBkPSJNNSAxNC45aDEybC02LjEgNnptOS40LTYuOGMwLTEuMy0uMS0yLjktLjEtNC41LS40IDEuNC0uOSAyLjktMS4zIDQuM2wtMS4zIDQuM2gtMkw4LjUgNy45Yy0uNC0xLjMtLjctMi45LTEtNC4zLS4xIDEuNi0uMSAzLjItLjIgNC42TDcgMTIuNEg0LjhsLjctMTFoMy4zTDEwIDVjLjQgMS4yLjcgMi43IDEgMy45LjMtMS4yLjctMi42IDEtMy45bDEuMi0zLjdoMy4zbC42IDExaC0yLjRsLS4zLTQuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-new-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwIDZoLThsLTItMkg0Yy0xLjExIDAtMS45OS44OS0xLjk5IDJMMiAxOGMwIDEuMTEuODkgMiAyIDJoMTZjMS4xMSAwIDItLjg5IDItMlY4YzAtMS4xMS0uODktMi0yLTJ6bS0xIDhoLTN2M2gtMnYtM2gtM3YtMmgzVjloMnYzaDN2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-not-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI1IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMTkgMTcuMTg0NCAyLjk2OTY4IDE0LjMwMzIgMS44NjA5NCAxMS40NDA5WiIvPgogICAgPHBhdGggY2xhc3M9ImpwLWljb24yIiBzdHJva2U9IiMzMzMzMzMiIHN0cm9rZS13aWR0aD0iMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOS4zMTU5MiA5LjMyMDMxKSIgZD0iTTcuMzY4NDIgMEwwIDcuMzY0NzkiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDkuMzE1OTIgMTYuNjgzNikgc2NhbGUoMSAtMSkiIGQ9Ik03LjM2ODQyIDBMMCA3LjM2NDc5Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-notebook: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNFRjZDMDAiPgogICAgPHBhdGggZD0iTTE4LjcgMy4zdjE1LjRIMy4zVjMuM2gxNS40bTEuNS0xLjVIMS44djE4LjNoMTguM2wuMS0xOC4zeiIvPgogICAgPHBhdGggZD0iTTE2LjUgMTYuNWwtNS40LTQuMy01LjYgNC4zdi0xMWgxMXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-numbering: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTQgMTlINlYxOS41SDVWMjAuNUg2VjIxSDRWMjJIN1YxOEg0VjE5Wk01IDEwSDZWNkg0VjdINVYxMFpNNCAxM0g1LjhMNCAxNS4xVjE2SDdWMTVINS4yTDcgMTIuOVYxMkg0VjEzWk05IDdWOUgyM1Y3SDlaTTkgMjFIMjNWMTlIOVYyMVpNOSAxNUgyM1YxM0g5VjE1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-offline-bolt: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDIuMDJjLTUuNTEgMC05Ljk4IDQuNDctOS45OCA5Ljk4czQuNDcgOS45OCA5Ljk4IDkuOTggOS45OC00LjQ3IDkuOTgtOS45OFMxNy41MSAyLjAyIDEyIDIuMDJ6TTExLjQ4IDIwdi02LjI2SDhMMTMgNHY2LjI2aDMuMzVMMTEuNDggMjB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-palette: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE4IDEzVjIwSDRWNkg5LjAyQzkuMDcgNS4yOSA5LjI0IDQuNjIgOS41IDRINEMyLjkgNCAyIDQuOSAyIDZWMjBDMiAyMS4xIDIuOSAyMiA0IDIySDE4QzE5LjEgMjIgMjAgMjEuMSAyMCAyMFYxNUwxOCAxM1pNMTkuMyA4Ljg5QzE5Ljc0IDguMTkgMjAgNy4zOCAyMCA2LjVDMjAgNC4wMSAxNy45OSAyIDE1LjUgMkMxMy4wMSAyIDExIDQuMDEgMTEgNi41QzExIDguOTkgMTMuMDEgMTEgMTUuNDkgMTFDMTYuMzcgMTEgMTcuMTkgMTAuNzQgMTcuODggMTAuM0wyMSAxMy40MkwyMi40MiAxMkwxOS4zIDguODlaTTE1LjUgOUMxNC4xMiA5IDEzIDcuODggMTMgNi41QzEzIDUuMTIgMTQuMTIgNCAxNS41IDRDMTYuODggNCAxOCA1LjEyIDE4IDYuNUMxOCA3Ljg4IDE2Ljg4IDkgMTUuNSA5WiIvPgogICAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDZIOS4wMTg5NEM5LjAwNjM5IDYuMTY1MDIgOSA2LjMzMTc2IDkgNi41QzkgOC44MTU3NyAxMC4yMTEgMTAuODQ4NyAxMi4wMzQzIDEySDlWMTRIMTZWMTIuOTgxMUMxNi41NzAzIDEyLjkzNzcgMTcuMTIgMTIuODIwNyAxNy42Mzk2IDEyLjYzOTZMMTggMTNWMjBINFY2Wk04IDhINlYxMEg4VjhaTTYgMTJIOFYxNEg2VjEyWk04IDE2SDZWMThIOFYxNlpNOSAxNkgxNlYxOEg5VjE2WiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-paste: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE5IDJoLTQuMThDMTQuNC44NCAxMy4zIDAgMTIgMGMtMS4zIDAtMi40Ljg0LTIuODIgMkg1Yy0xLjEgMC0yIC45LTIgMnYxNmMwIDEuMS45IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjRjMC0xLjEtLjktMi0yLTJ6bS03IDBjLjU1IDAgMSAuNDUgMSAxcy0uNDUgMS0xIDEtMS0uNDUtMS0xIC40NS0xIDEtMXptNyAxOEg1VjRoMnYzaDEwVjRoMnYxNnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-pdf: url(data:image/svg+xml;base64,PHN2ZwogICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMiAyMiIgd2lkdGg9IjE2Ij4KICAgIDxwYXRoIHRyYW5zZm9ybT0icm90YXRlKDQ1KSIgY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI0ZGMkEyQSIKICAgICAgIGQ9Im0gMjIuMzQ0MzY5LC0zLjAxNjM2NDIgaCA1LjYzODYwNCB2IDEuNTc5MjQzMyBoIC0zLjU0OTIyNyB2IDEuNTA4NjkyOTkgaCAzLjMzNzU3NiBWIDEuNjUwODE1NCBoIC0zLjMzNzU3NiB2IDMuNDM1MjYxMyBoIC0yLjA4OTM3NyB6IG0gLTcuMTM2NDQ0LDEuNTc5MjQzMyB2IDQuOTQzOTU0MyBoIDAuNzQ4OTIgcSAxLjI4MDc2MSwwIDEuOTUzNzAzLC0wLjYzNDk1MzUgMC42NzgzNjksLTAuNjM0OTUzNSAwLjY3ODM2OSwtMS44NDUxNjQxIDAsLTEuMjA0NzgzNTUgLTAuNjcyOTQyLC0xLjgzNDMxMDExIC0wLjY3Mjk0MiwtMC42Mjk1MjY1OSAtMS45NTkxMywtMC42Mjk1MjY1OSB6IG0gLTIuMDg5Mzc3LC0xLjU3OTI0MzMgaCAyLjIwMzM0MyBxIDEuODQ1MTY0LDAgMi43NDYwMzksMC4yNjU5MjA3IDAuOTA2MzAxLDAuMjYwNDkzNyAxLjU1MjEwOCwwLjg5MDAyMDMgMC41Njk4MywwLjU0ODEyMjMgMC44NDY2MDUsMS4yNjQ0ODAwNiAwLjI3Njc3NCwwLjcxNjM1NzgxIDAuMjc2Nzc0LDEuNjIyNjU4OTQgMCwwLjkxNzE1NTEgLTAuMjc2Nzc0LDEuNjM4OTM5OSAtMC4yNzY3NzUsMC43MTYzNTc4IC0wLjg0NjYwNSwxLjI2NDQ4IC0wLjY1MTIzNCwwLjYyOTUyNjYgLTEuNTYyOTYyLDAuODk1NDQ3MyAtMC45MTE3MjgsMC4yNjA0OTM3IC0yLjczNTE4NSwwLjI2MDQ5MzcgaCAtMi4yMDMzNDMgeiBtIC04LjE0NTg1NjUsMCBoIDMuNDY3ODIzIHEgMS41NDY2ODE2LDAgMi4zNzE1Nzg1LDAuNjg5MjIzIDAuODMwMzI0LDAuNjgzNzk2MSAwLjgzMDMyNCwxLjk1MzcwMzE0IDAsMS4yNzUzMzM5NyAtMC44MzAzMjQsMS45NjQ1NTcwNiBRIDkuOTg3MTk2MSwyLjI3NDkxNSA4LjQ0MDUxNDUsMi4yNzQ5MTUgSCA3LjA2MjA2ODQgViA1LjA4NjA3NjcgSCA0Ljk3MjY5MTUgWiBtIDIuMDg5Mzc2OSwxLjUxNDExOTkgdiAyLjI2MzAzOTQzIGggMS4xNTU5NDEgcSAwLjYwNzgxODgsMCAwLjkzODg2MjksLTAuMjkzMDU1NDcgMC4zMzEwNDQxLC0wLjI5ODQ4MjQxIDAuMzMxMDQ0MSwtMC44NDExNzc3MiAwLC0wLjU0MjY5NTMxIC0wLjMzMTA0NDEsLTAuODM1NzUwNzQgLTAuMzMxMDQ0MSwtMC4yOTMwNTU1IC0wLjkzODg2MjksLTAuMjkzMDU1NSB6IgovPgo8L3N2Zz4K);\n  --jp-icon-python: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMEQ0N0ExIj4KICAgIDxwYXRoIGQ9Ik0xMS4xIDYuOVY1LjhINi45YzAtLjUgMC0xLjMuMi0xLjYuNC0uNy44LTEuMSAxLjctMS40IDEuNy0uMyAyLjUtLjMgMy45LS4xIDEgLjEgMS45LjkgMS45IDEuOXY0LjJjMCAuNS0uOSAxLjYtMiAxLjZIOC44Yy0xLjUgMC0yLjQgMS40LTIuNCAyLjh2Mi4ySDQuN0MzLjUgMTUuMSAzIDE0IDMgMTMuMVY5Yy0uMS0xIC42LTIgMS44LTIgMS41LS4xIDYuMy0uMSA2LjMtLjF6Ii8+CiAgICA8cGF0aCBkPSJNMTAuOSAxNS4xdjEuMWg0LjJjMCAuNSAwIDEuMy0uMiAxLjYtLjQuNy0uOCAxLjEtMS43IDEuNC0xLjcuMy0yLjUuMy0zLjkuMS0xLS4xLTEuOS0uOS0xLjktMS45di00LjJjMC0uNS45LTEuNiAyLTEuNmgzLjhjMS41IDAgMi40LTEuNCAyLjQtMi44VjYuNmgxLjdDMTguNSA2LjkgMTkgOCAxOSA4LjlWMTNjMCAxLS43IDIuMS0xLjkgMi4xaC02LjJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-r-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjE5NkYzIiBkPSJNNC40IDIuNWMxLjItLjEgMi45LS4zIDQuOS0uMyAyLjUgMCA0LjEuNCA1LjIgMS4zIDEgLjcgMS41IDEuOSAxLjUgMy41IDAgMi0xLjQgMy41LTIuOSA0LjEgMS4yLjQgMS43IDEuNiAyLjIgMyAuNiAxLjkgMSAzLjkgMS4zIDQuNmgtMy44Yy0uMy0uNC0uOC0xLjctMS4yLTMuN3MtMS4yLTIuNi0yLjYtMi42aC0uOXY2LjRINC40VjIuNXptMy43IDYuOWgxLjRjMS45IDAgMi45LS45IDIuOS0yLjNzLTEtMi4zLTIuOC0yLjNjLS43IDAtMS4zIDAtMS42LjJ2NC41aC4xdi0uMXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-react: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMTUwIDE1MCA1NDEuOSAyOTUuMyI+CiAgPGcgY2xhc3M9ImpwLWljb24tYnJhbmQyIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzYxREFGQiI+CiAgICA8cGF0aCBkPSJNNjY2LjMgMjk2LjVjMC0zMi41LTQwLjctNjMuMy0xMDMuMS04Mi40IDE0LjQtNjMuNiA4LTExNC4yLTIwLjItMTMwLjQtNi41LTMuOC0xNC4xLTUuNi0yMi40LTUuNnYyMi4zYzQuNiAwIDguMy45IDExLjQgMi42IDEzLjYgNy44IDE5LjUgMzcuNSAxNC45IDc1LjctMS4xIDkuNC0yLjkgMTkuMy01LjEgMjkuNC0xOS42LTQuOC00MS04LjUtNjMuNS0xMC45LTEzLjUtMTguNS0yNy41LTM1LjMtNDEuNi01MCAzMi42LTMwLjMgNjMuMi00Ni45IDg0LTQ2LjlWNzhjLTI3LjUgMC02My41IDE5LjYtOTkuOSA1My42LTM2LjQtMzMuOC03Mi40LTUzLjItOTkuOS01My4ydjIyLjNjMjAuNyAwIDUxLjQgMTYuNSA4NCA0Ni42LTE0IDE0LjctMjggMzEuNC00MS4zIDQ5LjktMjIuNiAyLjQtNDQgNi4xLTYzLjYgMTEtMi4zLTEwLTQtMTkuNy01LjItMjktNC43LTM4LjIgMS4xLTY3LjkgMTQuNi03NS44IDMtMS44IDYuOS0yLjYgMTEuNS0yLjZWNzguNWMtOC40IDAtMTYgMS44LTIyLjYgNS42LTI4LjEgMTYuMi0zNC40IDY2LjctMTkuOSAxMzAuMS02Mi4yIDE5LjItMTAyLjcgNDkuOS0xMDIuNyA4Mi4zIDAgMzIuNSA0MC43IDYzLjMgMTAzLjEgODIuNC0xNC40IDYzLjYtOCAxMTQuMiAyMC4yIDEzMC40IDYuNSAzLjggMTQuMSA1LjYgMjIuNSA1LjYgMjcuNSAwIDYzLjUtMTkuNiA5OS45LTUzLjYgMzYuNCAzMy44IDcyLjQgNTMuMiA5OS45IDUzLjIgOC40IDAgMTYtMS44IDIyLjYtNS42IDI4LjEtMTYuMiAzNC40LTY2LjcgMTkuOS0xMzAuMSA2Mi0xOS4xIDEwMi41LTQ5LjkgMTAyLjUtODIuM3ptLTEzMC4yLTY2LjdjLTMuNyAxMi45LTguMyAyNi4yLTEzLjUgMzkuNS00LjEtOC04LjQtMTYtMTMuMS0yNC00LjYtOC05LjUtMTUuOC0xNC40LTIzLjQgMTQuMiAyLjEgMjcuOSA0LjcgNDEgNy45em0tNDUuOCAxMDYuNWMtNy44IDEzLjUtMTUuOCAyNi4zLTI0LjEgMzguMi0xNC45IDEuMy0zMCAyLTQ1LjIgMi0xNS4xIDAtMzAuMi0uNy00NS0xLjktOC4zLTExLjktMTYuNC0yNC42LTI0LjItMzgtNy42LTEzLjEtMTQuNS0yNi40LTIwLjgtMzkuOCA2LjItMTMuNCAxMy4yLTI2LjggMjAuNy0zOS45IDcuOC0xMy41IDE1LjgtMjYuMyAyNC4xLTM4LjIgMTQuOS0xLjMgMzAtMiA0NS4yLTIgMTUuMSAwIDMwLjIuNyA0NSAxLjkgOC4zIDExLjkgMTYuNCAyNC42IDI0LjIgMzggNy42IDEzLjEgMTQuNSAyNi40IDIwLjggMzkuOC02LjMgMTMuNC0xMy4yIDI2LjgtMjAuNyAzOS45em0zMi4zLTEzYzUuNCAxMy40IDEwIDI2LjggMTMuOCAzOS44LTEzLjEgMy4yLTI2LjkgNS45LTQxLjIgOCA0LjktNy43IDkuOC0xNS42IDE0LjQtMjMuNyA0LjYtOCA4LjktMTYuMSAxMy0yNC4xek00MjEuMiA0MzBjLTkuMy05LjYtMTguNi0yMC4zLTI3LjgtMzIgOSAuNCAxOC4yLjcgMjcuNS43IDkuNCAwIDE4LjctLjIgMjcuOC0uNy05IDExLjctMTguMyAyMi40LTI3LjUgMzJ6bS03NC40LTU4LjljLTE0LjItMi4xLTI3LjktNC43LTQxLTcuOSAzLjctMTIuOSA4LjMtMjYuMiAxMy41LTM5LjUgNC4xIDggOC40IDE2IDEzLjEgMjQgNC43IDggOS41IDE1LjggMTQuNCAyMy40ek00MjAuNyAxNjNjOS4zIDkuNiAxOC42IDIwLjMgMjcuOCAzMi05LS40LTE4LjItLjctMjcuNS0uNy05LjQgMC0xOC43LjItMjcuOC43IDktMTEuNyAxOC4zLTIyLjQgMjcuNS0zMnptLTc0IDU4LjljLTQuOSA3LjctOS44IDE1LjYtMTQuNCAyMy43LTQuNiA4LTguOSAxNi0xMyAyNC01LjQtMTMuNC0xMC0yNi44LTEzLjgtMzkuOCAxMy4xLTMuMSAyNi45LTUuOCA0MS4yLTcuOXptLTkwLjUgMTI1LjJjLTM1LjQtMTUuMS01OC4zLTM0LjktNTguMy01MC42IDAtMTUuNyAyMi45LTM1LjYgNTguMy01MC42IDguNi0zLjcgMTgtNyAyNy43LTEwLjEgNS43IDE5LjYgMTMuMiA0MCAyMi41IDYwLjktOS4yIDIwLjgtMTYuNiA0MS4xLTIyLjIgNjAuNi05LjktMy4xLTE5LjMtNi41LTI4LTEwLjJ6TTMxMCA0OTBjLTEzLjYtNy44LTE5LjUtMzcuNS0xNC45LTc1LjcgMS4xLTkuNCAyLjktMTkuMyA1LjEtMjkuNCAxOS42IDQuOCA0MSA4LjUgNjMuNSAxMC45IDEzLjUgMTguNSAyNy41IDM1LjMgNDEuNiA1MC0zMi42IDMwLjMtNjMuMiA0Ni45LTg0IDQ2LjktNC41LS4xLTguMy0xLTExLjMtMi43em0yMzcuMi03Ni4yYzQuNyAzOC4yLTEuMSA2Ny45LTE0LjYgNzUuOC0zIDEuOC02LjkgMi42LTExLjUgMi42LTIwLjcgMC01MS40LTE2LjUtODQtNDYuNiAxNC0xNC43IDI4LTMxLjQgNDEuMy00OS45IDIyLjYtMi40IDQ0LTYuMSA2My42LTExIDIuMyAxMC4xIDQuMSAxOS44IDUuMiAyOS4xem0zOC41LTY2LjdjLTguNiAzLjctMTggNy0yNy43IDEwLjEtNS43LTE5LjYtMTMuMi00MC0yMi41LTYwLjkgOS4yLTIwLjggMTYuNi00MS4xIDIyLjItNjAuNiA5LjkgMy4xIDE5LjMgNi41IDI4LjEgMTAuMiAzNS40IDE1LjEgNTguMyAzNC45IDU4LjMgNTAuNi0uMSAxNS43LTIzIDM1LjYtNTguNCA1MC42ek0zMjAuOCA3OC40eiIvPgogICAgPGNpcmNsZSBjeD0iNDIwLjkiIGN5PSIyOTYuNSIgcj0iNDUuNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-redo: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTE4LjQgMTAuNkMxNi41NSA4Ljk5IDE0LjE1IDggMTEuNSA4Yy00LjY1IDAtOC41OCAzLjAzLTkuOTYgNy4yMkwzLjkgMTZjMS4wNS0zLjE5IDQuMDUtNS41IDcuNi01LjUgMS45NSAwIDMuNzMuNzIgNS4xMiAxLjg4TDEzIDE2aDlWN2wtMy42IDMuNnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-refresh: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTkgMTMuNWMtMi40OSAwLTQuNS0yLjAxLTQuNS00LjVTNi41MSA0LjUgOSA0LjVjMS4yNCAwIDIuMzYuNTIgMy4xNyAxLjMzTDEwIDhoNVYzbC0xLjc2IDEuNzZDMTIuMTUgMy42OCAxMC42NiAzIDkgMyA1LjY5IDMgMy4wMSA1LjY5IDMuMDEgOVM1LjY5IDE1IDkgMTVjMi45NyAwIDUuNDMtMi4xNiA1LjktNWgtMS41MmMtLjQ2IDItMi4yNCAzLjUtNC4zOCAzLjV6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-regex: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi1hY2NlbnQyIiBmaWxsPSIjRkZGIj4KICAgIDxjaXJjbGUgY2xhc3M9InN0MiIgY3g9IjUuNSIgY3k9IjE0LjUiIHI9IjEuNSIvPgogICAgPHJlY3QgeD0iMTIiIHk9IjQiIGNsYXNzPSJzdDIiIHdpZHRoPSIxIiBoZWlnaHQ9IjgiLz4KICAgIDxyZWN0IHg9IjguNSIgeT0iNy41IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjg2NiAtMC41IDAuNSAwLjg2NiAtMi4zMjU1IDcuMzIxOSkiIGNsYXNzPSJzdDIiIHdpZHRoPSI4IiBoZWlnaHQ9IjEiLz4KICAgIDxyZWN0IHg9IjEyIiB5PSI0IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjUgLTAuODY2IDAuODY2IDAuNSAtMC42Nzc5IDE0LjgyNTIpIiBjbGFzcz0ic3QyIiB3aWR0aD0iMSIgaGVpZ2h0PSI4Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-run: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTggNXYxNGwxMS03eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-running: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptOTYgMzI4YzAgOC44LTcuMiAxNi0xNiAxNkgxNzZjLTguOCAwLTE2LTcuMi0xNi0xNlYxNzZjMC04LjggNy4yLTE2IDE2LTE2aDE2MGM4LjggMCAxNiA3LjIgMTYgMTZ2MTYweiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-save: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE3IDNINWMtMS4xMSAwLTIgLjktMiAydjE0YzAgMS4xLjg5IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjdsLTQtNHptLTUgMTZjLTEuNjYgMC0zLTEuMzQtMy0zczEuMzQtMyAzLTMgMyAxLjM0IDMgMy0xLjM0IDMtMyAzem0zLTEwSDVWNWgxMHY0eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-search: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjEsMTAuOWgtMC43bC0wLjItMC4yYzAuOC0wLjksMS4zLTIuMiwxLjMtMy41YzAtMy0yLjQtNS40LTUuNC01LjRTMS44LDQuMiwxLjgsNy4xczIuNCw1LjQsNS40LDUuNCBjMS4zLDAsMi41LTAuNSwzLjUtMS4zbDAuMiwwLjJ2MC43bDQuMSw0LjFsMS4yLTEuMkwxMi4xLDEwLjl6IE03LjEsMTAuOWMtMi4xLDAtMy43LTEuNy0zLjctMy43czEuNy0zLjcsMy43LTMuN3MzLjcsMS43LDMuNywzLjcgUzkuMiwxMC45LDcuMSwxMC45eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-settings: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuNDMgMTIuOThjLjA0LS4zMi4wNy0uNjQuMDctLjk4cy0uMDMtLjY2LS4wNy0uOThsMi4xMS0xLjY1Yy4xOS0uMTUuMjQtLjQyLjEyLS42NGwtMi0zLjQ2Yy0uMTItLjIyLS4zOS0uMy0uNjEtLjIybC0yLjQ5IDFjLS41Mi0uNC0xLjA4LS43My0xLjY5LS45OGwtLjM4LTIuNjVBLjQ4OC40ODggMCAwMDE0IDJoLTRjLS4yNSAwLS40Ni4xOC0uNDkuNDJsLS4zOCAyLjY1Yy0uNjEuMjUtMS4xNy41OS0xLjY5Ljk4bC0yLjQ5LTFjLS4yMy0uMDktLjQ5IDAtLjYxLjIybC0yIDMuNDZjLS4xMy4yMi0uMDcuNDkuMTIuNjRsMi4xMSAxLjY1Yy0uMDQuMzItLjA3LjY1LS4wNy45OHMuMDMuNjYuMDcuOThsLTIuMTEgMS42NWMtLjE5LjE1LS4yNC40Mi0uMTIuNjRsMiAzLjQ2Yy4xMi4yMi4zOS4zLjYxLjIybDIuNDktMWMuNTIuNCAxLjA4LjczIDEuNjkuOThsLjM4IDIuNjVjLjAzLjI0LjI0LjQyLjQ5LjQyaDRjLjI1IDAgLjQ2LS4xOC40OS0uNDJsLjM4LTIuNjVjLjYxLS4yNSAxLjE3LS41OSAxLjY5LS45OGwyLjQ5IDFjLjIzLjA5LjQ5IDAgLjYxLS4yMmwyLTMuNDZjLjEyLS4yMi4wNy0uNDktLjEyLS42NGwtMi4xMS0xLjY1ek0xMiAxNS41Yy0xLjkzIDAtMy41LTEuNTctMy41LTMuNXMxLjU3LTMuNSAzLjUtMy41IDMuNSAxLjU3IDMuNSAzLjUtMS41NyAzLjUtMy41IDMuNXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-spreadsheet: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNENBRjUwIiBkPSJNMi4yIDIuMnYxNy42aDE3LjZWMi4ySDIuMnptMTUuNCA3LjdoLTUuNVY0LjRoNS41djUuNXpNOS45IDQuNHY1LjVINC40VjQuNGg1LjV6bS01LjUgNy43aDUuNXY1LjVINC40di01LjV6bTcuNyA1LjV2LTUuNWg1LjV2NS41aC01LjV6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-stop: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik02IDZoMTJ2MTJINnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tab: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIxIDNIM2MtMS4xIDAtMiAuOS0yIDJ2MTRjMCAxLjEuOSAyIDIgMmgxOGMxLjEgMCAyLS45IDItMlY1YzAtMS4xLS45LTItMi0yem0wIDE2SDNWNWgxMHY0aDh2MTB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-table-rows: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMSw4SDNWNGgxOFY4eiBNMjEsMTBIM3Y0aDE4VjEweiBNMjEsMTZIM3Y0aDE4VjE2eiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-tag: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCA0MyAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTI4LjgzMzIgMTIuMzM0TDMyLjk5OTggMTYuNTAwN0wzNy4xNjY1IDEyLjMzNEgyOC44MzMyWiIvPgoJCTxwYXRoIGQ9Ik0xNi4yMDk1IDIxLjYxMDRDMTUuNjg3MyAyMi4xMjk5IDE0Ljg0NDMgMjIuMTI5OSAxNC4zMjQ4IDIxLjYxMDRMNi45ODI5IDE0LjcyNDVDNi41NzI0IDE0LjMzOTQgNi4wODMxMyAxMy42MDk4IDYuMDQ3ODYgMTMuMDQ4MkM1Ljk1MzQ3IDExLjUyODggNi4wMjAwMiA4LjYxOTQ0IDYuMDY2MjEgNy4wNzY5NUM2LjA4MjgxIDYuNTE0NzcgNi41NTU0OCA2LjA0MzQ3IDcuMTE4MDQgNi4wMzA1NUM5LjA4ODYzIDUuOTg0NzMgMTMuMjYzOCA1LjkzNTc5IDEzLjY1MTggNi4zMjQyNUwyMS43MzY5IDEzLjYzOUMyMi4yNTYgMTQuMTU4NSAyMS43ODUxIDE1LjQ3MjQgMjEuMjYyIDE1Ljk5NDZMMTYuMjA5NSAyMS42MTA0Wk05Ljc3NTg1IDguMjY1QzkuMzM1NTEgNy44MjU2NiA4LjYyMzUxIDcuODI1NjYgOC4xODI4IDguMjY1QzcuNzQzNDYgOC43MDU3MSA3Ljc0MzQ2IDkuNDE3MzMgOC4xODI4IDkuODU2NjdDOC42MjM4MiAxMC4yOTY0IDkuMzM1ODIgMTAuMjk2NCA5Ljc3NTg1IDkuODU2NjdDMTAuMjE1NiA5LjQxNzMzIDEwLjIxNTYgOC43MDUzMyA5Ljc3NTg1IDguMjY1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-terminal: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiA+CiAgICA8cmVjdCBjbGFzcz0ianAtaWNvbjIganAtaWNvbi1zZWxlY3RhYmxlIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMikiIGZpbGw9IiMzMzMzMzMiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uLWFjY2VudDIganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGQ9Ik01LjA1NjY0IDguNzYxNzJDNS4wNTY2NCA4LjU5NzY2IDUuMDMxMjUgOC40NTMxMiA0Ljk4MDQ3IDguMzI4MTJDNC45MzM1OSA4LjE5OTIyIDQuODU1NDcgOC4wODIwMyA0Ljc0NjA5IDcuOTc2NTZDNC42NDA2MiA3Ljg3MTA5IDQuNSA3Ljc3NTM5IDQuMzI0MjIgNy42ODk0NUM0LjE1MjM0IDcuNTk5NjEgMy45NDMzNiA3LjUxMTcyIDMuNjk3MjcgNy40MjU3OEMzLjMwMjczIDcuMjg1MTYgMi45NDMzNiA3LjEzNjcyIDIuNjE5MTQgNi45ODA0N0MyLjI5NDkyIDYuODI0MjIgMi4wMTc1OCA2LjY0MjU4IDEuNzg3MTEgNi40MzU1NUMxLjU2MDU1IDYuMjI4NTIgMS4zODQ3NyA1Ljk4ODI4IDEuMjU5NzcgNS43MTQ4NEMxLjEzNDc3IDUuNDM3NSAxLjA3MjI3IDUuMTA5MzggMS4wNzIyNyA0LjczMDQ3QzEuMDcyMjcgNC4zOTg0NCAxLjEyODkxIDQuMDk1NyAxLjI0MjE5IDMuODIyMjdDMS4zNTU0NyAzLjU0NDkyIDEuNTE1NjIgMy4zMDQ2OSAxLjcyMjY2IDMuMTAxNTZDMS45Mjk2OSAyLjg5ODQ0IDIuMTc5NjkgMi43MzQzNyAyLjQ3MjY2IDIuNjA5MzhDMi43NjU2MiAyLjQ4NDM4IDMuMDkxOCAyLjQwNDMgMy40NTExNyAyLjM2OTE0VjEuMTA5MzhINC4zODg2N1YyLjM4MDg2QzQuNzQwMjMgMi40Mjc3MyA1LjA1NjY0IDIuNTIzNDQgNS4zMzc4OSAyLjY2Nzk3QzUuNjE5MTQgMi44MTI1IDUuODU3NDIgMy4wMDE5NSA2LjA1MjczIDMuMjM2MzNDNi4yNTE5NSAzLjQ2NjggNi40MDQzIDMuNzQwMjMgNi41MDk3NyA0LjA1NjY0QzYuNjE5MTQgNC4zNjkxNCA2LjY3MzgzIDQuNzIwNyA2LjY3MzgzIDUuMTExMzNINS4wNDQ5MkM1LjA0NDkyIDQuNjM4NjcgNC45Mzc1IDQuMjgxMjUgNC43MjI2NiA0LjAzOTA2QzQuNTA3ODEgMy43OTI5NyA0LjIxNjggMy42Njk5MiAzLjg0OTYxIDMuNjY5OTJDMy42NTAzOSAzLjY2OTkyIDMuNDc2NTYgMy42OTcyNyAzLjMyODEyIDMuNzUxOTVDMy4xODM1OSAzLjgwMjczIDMuMDY0NDUgMy44NzY5NSAyLjk3MDcgMy45NzQ2MUMyLjg3Njk1IDQuMDY4MzYgMi44MDY2NCA0LjE3OTY5IDIuNzU5NzcgNC4zMDg1OUMyLjcxNjggNC40Mzc1IDIuNjk1MzEgNC41NzgxMiAyLjY5NTMxIDQuNzMwNDdDMi42OTUzMSA0Ljg4MjgxIDIuNzE2OCA1LjAxOTUzIDIuNzU5NzcgNS4xNDA2MkMyLjgwNjY0IDUuMjU3ODEgMi44ODI4MSA1LjM2NzE5IDIuOTg4MjggNS40Njg3NUMzLjA5NzY2IDUuNTcwMzEgMy4yNDAyMyA1LjY2Nzk3IDMuNDE2MDIgNS43NjE3MkMzLjU5MTggNS44NTE1NiAzLjgxMDU1IDUuOTQzMzYgNC4wNzIyNyA2LjAzNzExQzQuNDY2OCA2LjE4NTU1IDQuODI0MjIgNi4zMzk4NCA1LjE0NDUzIDYuNUM1LjQ2NDg0IDYuNjU2MjUgNS43MzgyOCA2LjgzOTg0IDUuOTY0ODQgNy4wNTA3OEM2LjE5NTMxIDcuMjU3ODEgNi4zNzEwOSA3LjUgNi40OTIxOSA3Ljc3NzM0QzYuNjE3MTkgOC4wNTA3OCA2LjY3OTY5IDguMzc1IDYuNjc5NjkgOC43NUM2LjY3OTY5IDkuMDkzNzUgNi42MjMwNSA5LjQwNDMgNi41MDk3NyA5LjY4MTY0QzYuMzk2NDggOS45NTUwOCA2LjIzNDM4IDEwLjE5MTQgNi4wMjM0NCAxMC4zOTA2QzUuODEyNSAxMC41ODk4IDUuNTU4NTkgMTAuNzUgNS4yNjE3MiAxMC44NzExQzQuOTY0ODQgMTAuOTg4MyA0LjYzMjgxIDExLjA2NDUgNC4yNjU2MiAxMS4wOTk2VjEyLjI0OEgzLjMzMzk4VjExLjA5OTZDMy4wMDE5NSAxMS4wNjg0IDIuNjc5NjkgMTAuOTk2MSAyLjM2NzE5IDEwLjg4MjhDMi4wNTQ2OSAxMC43NjU2IDEuNzc3MzQgMTAuNTk3NyAxLjUzNTE2IDEwLjM3ODlDMS4yOTY4OCAxMC4xNjAyIDEuMTA1NDcgOS44ODQ3NyAwLjk2MDkzOCA5LjU1MjczQzAuODE2NDA2IDkuMjE2OCAwLjc0NDE0MSA4LjgxNDQ1IDAuNzQ0MTQxIDguMzQ1N0gyLjM3ODkxQzIuMzc4OTEgOC42MjY5NSAyLjQxOTkyIDguODYzMjggMi41MDE5NSA5LjA1NDY5QzIuNTgzOTggOS4yNDIxOSAyLjY4OTQ1IDkuMzkyNTggMi44MTgzNiA5LjUwNTg2QzIuOTUxMTcgOS42MTUyMyAzLjEwMTU2IDkuNjkzMzYgMy4yNjk1MyA5Ljc0MDIzQzMuNDM3NSA5Ljc4NzExIDMuNjA5MzggOS44MTA1NSAzLjc4NTE2IDkuODEwNTVDNC4yMDMxMiA5LjgxMDU1IDQuNTE5NTMgOS43MTI4OSA0LjczNDM4IDkuNTE3NThDNC45NDkyMiA5LjMyMjI3IDUuMDU2NjQgOS4wNzAzMSA1LjA1NjY0IDguNzYxNzJaTTEzLjQxOCAxMi4yNzE1SDguMDc0MjJWMTFIMTMuNDE4VjEyLjI3MTVaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzLjk1MjY0IDYpIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);\n  --jp-icon-text-editor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTUgMTVIM3YyaDEydi0yem0wLThIM3YyaDEyVjd6TTMgMTNoMTh2LTJIM3Yyem0wIDhoMTh2LTJIM3Yyek0zIDN2MmgxOFYzSDN6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-toc: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik03LDVIMjFWN0g3VjVNNywxM1YxMUgyMVYxM0g3TTQsNC41QTEuNSwxLjUgMCAwLDEgNS41LDZBMS41LDEuNSAwIDAsMSA0LDcuNUExLjUsMS41IDAgMCwxIDIuNSw2QTEuNSwxLjUgMCAwLDEgNCw0LjVNNCwxMC41QTEuNSwxLjUgMCAwLDEgNS41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMy41QTEuNSwxLjUgMCAwLDEgMi41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMC41TTcsMTlWMTdIMjFWMTlIN000LDE2LjVBMS41LDEuNSAwIDAsMSA1LjUsMThBMS41LDEuNSAwIDAsMSA0LDE5LjVBMS41LDEuNSAwIDAsMSAyLjUsMThBMS41LDEuNSAwIDAsMSA0LDE2LjVaIiAvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tree-view: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMiAxMVYzaC03djNIOVYzSDJ2OGg3VjhoMnYxMGg0djNoN3YtOGgtN3YzaC0yVjhoMnYzeiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMiAxNy4xODQ0IDIuOTY5NjggMTQuMzAzMiAxLjg2MDk0IDExLjQ0MDlaIi8+CiAgICA8cGF0aCBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiMzMzMzMzMiIHN0cm9rZT0iIzMzMzMzMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA5Ljg2NzE5KSIgZD0iTTIuODYwMTUgNC44NjUzNUwwLjcyNjU0OSAyLjk5OTU5TDAgMy42MzA0NUwyLjg2MDE1IDYuMTMxNTdMOCAwLjYzMDg3Mkw3LjI3ODU3IDBMMi44NjAxNSA0Ljg2NTM1WiIvPgo8L3N2Zz4K);\n  --jp-icon-undo: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjUgOGMtMi42NSAwLTUuMDUuOTktNi45IDIuNkwyIDd2OWg5bC0zLjYyLTMuNjJjMS4zOS0xLjE2IDMuMTYtMS44OCA1LjEyLTEuODggMy41NCAwIDYuNTUgMi4zMSA3LjYgNS41bDIuMzctLjc4QzIxLjA4IDExLjAzIDE3LjE1IDggMTIuNSA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-vega: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbjEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjEyMTIxIj4KICAgIDxwYXRoIGQ9Ik0xMC42IDUuNGwyLjItMy4ySDIuMnY3LjNsNC02LjZ6Ii8+CiAgICA8cGF0aCBkPSJNMTUuOCAyLjJsLTQuNCA2LjZMNyA2LjNsLTQuOCA4djUuNWgxNy42VjIuMmgtNHptLTcgMTUuNEg1LjV2LTQuNGgzLjN2NC40em00LjQgMEg5LjhWOS44aDMuNHY3Ljh6bTQuNCAwaC0zLjRWNi41aDMuNHYxMS4xeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-yaml: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1jb250cmFzdDIganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjRDgxQjYwIj4KICAgIDxwYXRoIGQ9Ik03LjIgMTguNnYtNS40TDMgNS42aDMuM2wxLjQgMy4xYy4zLjkuNiAxLjYgMSAyLjUuMy0uOC42LTEuNiAxLTIuNWwxLjQtMy4xaDMuNGwtNC40IDcuNnY1LjVsLTIuOS0uMXoiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxNi41IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxMSIgcj0iMi4xIi8+CiAgPC9nPgo8L3N2Zz4K);\n}\n\n/* Icon CSS class declarations */\n\n.jp-AddIcon {\n  background-image: var(--jp-icon-add);\n}\n.jp-BugIcon {\n  background-image: var(--jp-icon-bug);\n}\n.jp-BuildIcon {\n  background-image: var(--jp-icon-build);\n}\n.jp-CaretDownEmptyIcon {\n  background-image: var(--jp-icon-caret-down-empty);\n}\n.jp-CaretDownEmptyThinIcon {\n  background-image: var(--jp-icon-caret-down-empty-thin);\n}\n.jp-CaretDownIcon {\n  background-image: var(--jp-icon-caret-down);\n}\n.jp-CaretLeftIcon {\n  background-image: var(--jp-icon-caret-left);\n}\n.jp-CaretRightIcon {\n  background-image: var(--jp-icon-caret-right);\n}\n.jp-CaretUpEmptyThinIcon {\n  background-image: var(--jp-icon-caret-up-empty-thin);\n}\n.jp-CaretUpIcon {\n  background-image: var(--jp-icon-caret-up);\n}\n.jp-CaseSensitiveIcon {\n  background-image: var(--jp-icon-case-sensitive);\n}\n.jp-CheckIcon {\n  background-image: var(--jp-icon-check);\n}\n.jp-CircleEmptyIcon {\n  background-image: var(--jp-icon-circle-empty);\n}\n.jp-CircleIcon {\n  background-image: var(--jp-icon-circle);\n}\n.jp-ClearIcon {\n  background-image: var(--jp-icon-clear);\n}\n.jp-CloseIcon {\n  background-image: var(--jp-icon-close);\n}\n.jp-CodeIcon {\n  background-image: var(--jp-icon-code);\n}\n.jp-ConsoleIcon {\n  background-image: var(--jp-icon-console);\n}\n.jp-CopyIcon {\n  background-image: var(--jp-icon-copy);\n}\n.jp-CopyrightIcon {\n  background-image: var(--jp-icon-copyright);\n}\n.jp-CutIcon {\n  background-image: var(--jp-icon-cut);\n}\n.jp-DownloadIcon {\n  background-image: var(--jp-icon-download);\n}\n.jp-EditIcon {\n  background-image: var(--jp-icon-edit);\n}\n.jp-EllipsesIcon {\n  background-image: var(--jp-icon-ellipses);\n}\n.jp-ExtensionIcon {\n  background-image: var(--jp-icon-extension);\n}\n.jp-FastForwardIcon {\n  background-image: var(--jp-icon-fast-forward);\n}\n.jp-FileIcon {\n  background-image: var(--jp-icon-file);\n}\n.jp-FileUploadIcon {\n  background-image: var(--jp-icon-file-upload);\n}\n.jp-FilterListIcon {\n  background-image: var(--jp-icon-filter-list);\n}\n.jp-FolderIcon {\n  background-image: var(--jp-icon-folder);\n}\n.jp-Html5Icon {\n  background-image: var(--jp-icon-html5);\n}\n.jp-ImageIcon {\n  background-image: var(--jp-icon-image);\n}\n.jp-InspectorIcon {\n  background-image: var(--jp-icon-inspector);\n}\n.jp-JsonIcon {\n  background-image: var(--jp-icon-json);\n}\n.jp-JuliaIcon {\n  background-image: var(--jp-icon-julia);\n}\n.jp-JupyterFaviconIcon {\n  background-image: var(--jp-icon-jupyter-favicon);\n}\n.jp-JupyterIcon {\n  background-image: var(--jp-icon-jupyter);\n}\n.jp-JupyterlabWordmarkIcon {\n  background-image: var(--jp-icon-jupyterlab-wordmark);\n}\n.jp-KernelIcon {\n  background-image: var(--jp-icon-kernel);\n}\n.jp-KeyboardIcon {\n  background-image: var(--jp-icon-keyboard);\n}\n.jp-LauncherIcon {\n  background-image: var(--jp-icon-launcher);\n}\n.jp-LineFormIcon {\n  background-image: var(--jp-icon-line-form);\n}\n.jp-LinkIcon {\n  background-image: var(--jp-icon-link);\n}\n.jp-ListIcon {\n  background-image: var(--jp-icon-list);\n}\n.jp-ListingsInfoIcon {\n  background-image: var(--jp-icon-listings-info);\n}\n.jp-MarkdownIcon {\n  background-image: var(--jp-icon-markdown);\n}\n.jp-NewFolderIcon {\n  background-image: var(--jp-icon-new-folder);\n}\n.jp-NotTrustedIcon {\n  background-image: var(--jp-icon-not-trusted);\n}\n.jp-NotebookIcon {\n  background-image: var(--jp-icon-notebook);\n}\n.jp-NumberingIcon {\n  background-image: var(--jp-icon-numbering);\n}\n.jp-OfflineBoltIcon {\n  background-image: var(--jp-icon-offline-bolt);\n}\n.jp-PaletteIcon {\n  background-image: var(--jp-icon-palette);\n}\n.jp-PasteIcon {\n  background-image: var(--jp-icon-paste);\n}\n.jp-PdfIcon {\n  background-image: var(--jp-icon-pdf);\n}\n.jp-PythonIcon {\n  background-image: var(--jp-icon-python);\n}\n.jp-RKernelIcon {\n  background-image: var(--jp-icon-r-kernel);\n}\n.jp-ReactIcon {\n  background-image: var(--jp-icon-react);\n}\n.jp-RedoIcon {\n  background-image: var(--jp-icon-redo);\n}\n.jp-RefreshIcon {\n  background-image: var(--jp-icon-refresh);\n}\n.jp-RegexIcon {\n  background-image: var(--jp-icon-regex);\n}\n.jp-RunIcon {\n  background-image: var(--jp-icon-run);\n}\n.jp-RunningIcon {\n  background-image: var(--jp-icon-running);\n}\n.jp-SaveIcon {\n  background-image: var(--jp-icon-save);\n}\n.jp-SearchIcon {\n  background-image: var(--jp-icon-search);\n}\n.jp-SettingsIcon {\n  background-image: var(--jp-icon-settings);\n}\n.jp-SpreadsheetIcon {\n  background-image: var(--jp-icon-spreadsheet);\n}\n.jp-StopIcon {\n  background-image: var(--jp-icon-stop);\n}\n.jp-TabIcon {\n  background-image: var(--jp-icon-tab);\n}\n.jp-TableRowsIcon {\n  background-image: var(--jp-icon-table-rows);\n}\n.jp-TagIcon {\n  background-image: var(--jp-icon-tag);\n}\n.jp-TerminalIcon {\n  background-image: var(--jp-icon-terminal);\n}\n.jp-TextEditorIcon {\n  background-image: var(--jp-icon-text-editor);\n}\n.jp-TocIcon {\n  background-image: var(--jp-icon-toc);\n}\n.jp-TreeViewIcon {\n  background-image: var(--jp-icon-tree-view);\n}\n.jp-TrustedIcon {\n  background-image: var(--jp-icon-trusted);\n}\n.jp-UndoIcon {\n  background-image: var(--jp-icon-undo);\n}\n.jp-VegaIcon {\n  background-image: var(--jp-icon-vega);\n}\n.jp-YamlIcon {\n  background-image: var(--jp-icon-yaml);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n.jp-Icon,\n.jp-MaterialIcon {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-cover {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: cover;\n}\n\n/**\n * (DEPRECATED) Support for specific CSS icon sizes\n */\n\n.jp-Icon-16 {\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-18 {\n  background-size: 18px;\n  min-width: 18px;\n  min-height: 18px;\n}\n\n.jp-Icon-20 {\n  background-size: 20px;\n  min-width: 20px;\n  min-height: 20px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for icons as inline SVG HTMLElements\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n/* recolor the accent elements of an icon */\n.jp-icon-accent0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-accent1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-accent2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-accent3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-accent4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-accent0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-accent1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-accent2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-accent3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-accent4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n/* set the color of an icon to transparent */\n.jp-icon-none[fill] {\n  fill: none;\n}\n\n.jp-icon-none[stroke] {\n  stroke: none;\n}\n/* brand icon colors. Same for light and dark */\n.jp-icon-brand0[fill] {\n  fill: var(--jp-brand-color0);\n}\n.jp-icon-brand1[fill] {\n  fill: var(--jp-brand-color1);\n}\n.jp-icon-brand2[fill] {\n  fill: var(--jp-brand-color2);\n}\n.jp-icon-brand3[fill] {\n  fill: var(--jp-brand-color3);\n}\n.jp-icon-brand4[fill] {\n  fill: var(--jp-brand-color4);\n}\n\n.jp-icon-brand0[stroke] {\n  stroke: var(--jp-brand-color0);\n}\n.jp-icon-brand1[stroke] {\n  stroke: var(--jp-brand-color1);\n}\n.jp-icon-brand2[stroke] {\n  stroke: var(--jp-brand-color2);\n}\n.jp-icon-brand3[stroke] {\n  stroke: var(--jp-brand-color3);\n}\n.jp-icon-brand4[stroke] {\n  stroke: var(--jp-brand-color4);\n}\n/* warn icon colors. Same for light and dark */\n.jp-icon-warn0[fill] {\n  fill: var(--jp-warn-color0);\n}\n.jp-icon-warn1[fill] {\n  fill: var(--jp-warn-color1);\n}\n.jp-icon-warn2[fill] {\n  fill: var(--jp-warn-color2);\n}\n.jp-icon-warn3[fill] {\n  fill: var(--jp-warn-color3);\n}\n\n.jp-icon-warn0[stroke] {\n  stroke: var(--jp-warn-color0);\n}\n.jp-icon-warn1[stroke] {\n  stroke: var(--jp-warn-color1);\n}\n.jp-icon-warn2[stroke] {\n  stroke: var(--jp-warn-color2);\n}\n.jp-icon-warn3[stroke] {\n  stroke: var(--jp-warn-color3);\n}\n/* icon colors that contrast well with each other and most backgrounds */\n.jp-icon-contrast0[fill] {\n  fill: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[fill] {\n  fill: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[fill] {\n  fill: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[fill] {\n  fill: var(--jp-icon-contrast-color3);\n}\n\n.jp-icon-contrast0[stroke] {\n  stroke: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[stroke] {\n  stroke: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[stroke] {\n  stroke: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[stroke] {\n  stroke: var(--jp-icon-contrast-color3);\n}\n\n/* CSS for icons in selected items in the settings editor */\n#setting-editor .jp-PluginList .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n#setting-editor\n  .jp-PluginList\n  .jp-mod-selected\n  .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected filebrowser listing items */\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected tabs in the sidebar tab manager */\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable-inverse[fill] {\n  fill: #fff;\n}\n\n/**\n * TODO: come up with non css-hack solution for showing the busy icon on top\n *  of the close icon\n * CSS for complex behavior of close icon of tabs in the sidebar tab manager\n */\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty.jp-mod-active\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: #fff;\n}\n\n/**\n* TODO: come up with non css-hack solution for showing the busy icon on top\n*  of the close icon\n* CSS for complex behavior of close icon of tabs in the main area tabbar\n*/\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n/* CSS for icons in status bar */\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n/* special handling for splash icon CSS. While the theme CSS reloads during\n   splash, the splash icon can loose theming. To prevent that, we set a\n   default for its color variable */\n:root {\n  --jp-warn-color0: var(--md-orange-700);\n}\n\n/* not sure what to do with this one, used in filebrowser listing */\n.jp-DragIcon {\n  margin-right: 4px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for alt colors for icons as inline SVG HTMLElements\n */\n\n/* alt recolor the primary elements of an icon */\n.jp-icon-alt .jp-icon0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-alt .jp-icon0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* alt recolor the accent elements of an icon */\n.jp-icon-alt .jp-icon-accent0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-alt .jp-icon-accent0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-icon-hoverShow:not(:hover) svg {\n  display: none !important;\n}\n\n/**\n * Support for hover colors for icons as inline SVG HTMLElements\n */\n\n/**\n * regular colors\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon-hover :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/* recolor the accent elements of an icon */\n.jp-icon-hover :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* set the color of an icon to transparent */\n.jp-icon-hover :hover .jp-icon-none-hover[fill] {\n  fill: none;\n}\n\n.jp-icon-hover :hover .jp-icon-none-hover[stroke] {\n  stroke: none;\n}\n\n/**\n * inverse colors\n */\n\n/* inverse recolor the primary elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* inverse recolor the accent elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-switch {\n  display: flex;\n  align-items: center;\n  padding-left: 4px;\n  padding-right: 4px;\n  font-size: var(--jp-ui-font-size1);\n  background-color: transparent;\n  color: var(--jp-ui-font-color1);\n  border: none;\n  height: 20px;\n}\n\n.jp-switch:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-switch-label {\n  margin-right: 5px;\n}\n\n.jp-switch-track {\n  cursor: pointer;\n  background-color: var(--jp-border-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 34px;\n  height: 16px;\n  width: 35px;\n  position: relative;\n}\n\n.jp-switch-track::before {\n  content: '';\n  position: absolute;\n  height: 10px;\n  width: 10px;\n  margin: 3px;\n  left: 0px;\n  background-color: var(--jp-ui-inverse-font-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 50%;\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track {\n  background-color: var(--jp-warn-color0);\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track::before {\n  /* track width (35) - margins (3 + 3) - thumb width (10) */\n  left: 19px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* Sibling imports */\n\n/* Override Blueprint's _reset.scss styles */\nhtml {\n  box-sizing: unset;\n}\n\n*,\n*::before,\n*::after {\n  box-sizing: unset;\n}\n\nbody {\n  color: unset;\n  font-family: var(--jp-ui-font-family);\n}\n\np {\n  margin-top: unset;\n  margin-bottom: unset;\n}\n\nsmall {\n  font-size: unset;\n}\n\nstrong {\n  font-weight: unset;\n}\n\n/* Override Blueprint's _typography.scss styles */\na {\n  text-decoration: unset;\n  color: unset;\n}\na:hover {\n  text-decoration: unset;\n  color: unset;\n}\n\n/* Override Blueprint's _accessibility.scss styles */\n:focus {\n  outline: unset;\n  outline-offset: unset;\n  -moz-outline-radius: unset;\n}\n\n/* Styles for ui-components */\n.jp-Button {\n  border-radius: var(--jp-border-radius);\n  padding: 0px 12px;\n  font-size: var(--jp-ui-font-size1);\n}\n\n/* Use our own theme for hover styles */\nbutton.jp-Button.bp3-button.bp3-minimal:hover {\n  background-color: var(--jp-layout-color2);\n}\n.jp-Button.minimal {\n  color: unset !important;\n}\n\n.jp-Button.jp-ToolbarButtonComponent {\n  text-transform: none;\n}\n\n.jp-InputGroup input {\n  box-sizing: border-box;\n  border-radius: 0;\n  background-color: transparent;\n  color: var(--jp-ui-font-color0);\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.jp-InputGroup input:focus {\n  box-shadow: inset 0 0 0 var(--jp-border-width)\n      var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-InputGroup input::placeholder,\ninput::placeholder {\n  color: var(--jp-ui-font-color3);\n}\n\n.jp-BPIcon {\n  display: inline-block;\n  vertical-align: middle;\n  margin: auto;\n}\n\n/* Stop blueprint futzing with our icon fills */\n.bp3-icon.jp-BPIcon > svg:not([fill]) {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n.jp-InputGroupAction {\n  padding: 6px;\n}\n\n.jp-HTMLSelect.jp-DefaultStyle select {\n  background-color: initial;\n  border: none;\n  border-radius: 0;\n  box-shadow: none;\n  color: var(--jp-ui-font-color0);\n  display: block;\n  font-size: var(--jp-ui-font-size1);\n  height: 24px;\n  line-height: 14px;\n  padding: 0 25px 0 10px;\n  text-align: left;\n  -moz-appearance: none;\n  -webkit-appearance: none;\n}\n\n/* Use our own theme for hover and option styles */\n.jp-HTMLSelect.jp-DefaultStyle select:hover,\n.jp-HTMLSelect.jp-DefaultStyle select > option {\n  background-color: var(--jp-layout-color2);\n  color: var(--jp-ui-font-color0);\n}\nselect {\n  box-sizing: border-box;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapse {\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  border-top: 1px solid var(--jp-border-color2);\n  border-bottom: 1px solid var(--jp-border-color2);\n}\n\n.jp-Collapse-header {\n  padding: 1px 12px;\n  color: var(--jp-ui-font-color1);\n  background-color: var(--jp-layout-color1);\n  font-size: var(--jp-ui-font-size2);\n}\n\n.jp-Collapse-header:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-Collapse-contents {\n  padding: 0px 12px 0px 12px;\n  background-color: var(--jp-layout-color1);\n  color: var(--jp-ui-font-color1);\n  overflow: auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-commandpalette-search-height: 28px;\n}\n\n/*-----------------------------------------------------------------------------\n| Overall styles\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette {\n  padding-bottom: 0px;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Modal variant\n|----------------------------------------------------------------------------*/\n\n.jp-ModalCommandPalette {\n  position: absolute;\n  z-index: 10000;\n  top: 38px;\n  left: 30%;\n  margin: 0;\n  padding: 4px;\n  width: 40%;\n  box-shadow: var(--jp-elevation-z4);\n  border-radius: 4px;\n  background: var(--jp-layout-color0);\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette {\n  max-height: 40vh;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-close-icon::after {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-header {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-item {\n  margin-left: 4px;\n  margin-right: 4px;\n}\n\n.jp-ModalCommandPalette\n  .lm-CommandPalette\n  .lm-CommandPalette-item.lm-mod-disabled {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Search\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-search {\n  padding: 4px;\n  background-color: var(--jp-layout-color1);\n  z-index: 2;\n}\n\n.lm-CommandPalette-wrapper {\n  overflow: overlay;\n  padding: 0px 9px;\n  background-color: var(--jp-input-active-background);\n  height: 30px;\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.lm-CommandPalette.lm-mod-focused .lm-CommandPalette-wrapper {\n  box-shadow: inset 0 0 0 1px var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-SearchIconGroup {\n  color: white;\n  background-color: var(--jp-brand-color1);\n  position: absolute;\n  top: 4px;\n  right: 4px;\n  padding: 5px 5px 1px 5px;\n}\n\n.jp-SearchIconGroup svg {\n  height: 20px;\n  width: 20px;\n}\n\n.jp-SearchIconGroup .jp-icon3[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-input {\n  background: transparent;\n  width: calc(100% - 18px);\n  float: left;\n  border: none;\n  outline: none;\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  line-height: var(--jp-private-commandpalette-search-height);\n}\n\n.lm-CommandPalette-input::-webkit-input-placeholder,\n.lm-CommandPalette-input::-moz-placeholder,\n.lm-CommandPalette-input:-ms-input-placeholder {\n  color: var(--jp-ui-font-color2);\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Results\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-header:first-child {\n  margin-top: 0px;\n}\n\n.lm-CommandPalette-header {\n  border-bottom: solid var(--jp-border-width) var(--jp-border-color2);\n  color: var(--jp-ui-font-color1);\n  cursor: pointer;\n  display: flex;\n  font-size: var(--jp-ui-font-size0);\n  font-weight: 600;\n  letter-spacing: 1px;\n  margin-top: 8px;\n  padding: 8px 0 8px 12px;\n  text-transform: uppercase;\n}\n\n.lm-CommandPalette-header.lm-mod-active {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-header > mark {\n  background-color: transparent;\n  font-weight: bold;\n  color: var(--jp-ui-font-color1);\n}\n\n.lm-CommandPalette-item {\n  padding: 4px 12px 4px 4px;\n  color: var(--jp-ui-font-color1);\n  font-size: var(--jp-ui-font-size1);\n  font-weight: 400;\n  display: flex;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item.lm-mod-active {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .jp-icon-selectable[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active:hover:not(.lm-mod-disabled) {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item:hover:not(.lm-mod-active):not(.lm-mod-disabled) {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-itemContent {\n  overflow: hidden;\n}\n\n.lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled mark {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemIcon {\n  margin: 0 4px 0 0;\n  position: relative;\n  width: 16px;\n  top: 2px;\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled .lm-CommandPalette-itemIcon {\n  opacity: 0.6;\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-itemCaption {\n  display: none;\n}\n\n.lm-CommandPalette-content {\n  background-color: var(--jp-layout-color1);\n}\n\n.lm-CommandPalette-content:empty:after {\n  content: 'No results';\n  margin: auto;\n  margin-top: 20px;\n  width: 100px;\n  display: block;\n  font-size: var(--jp-ui-font-size2);\n  font-family: var(--jp-ui-font-family);\n  font-weight: lighter;\n}\n\n.lm-CommandPalette-emptyMessage {\n  text-align: center;\n  margin-top: 24px;\n  line-height: 1.32;\n  padding: 0px 8px;\n  color: var(--jp-content-font-color3);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Dialog {\n  position: absolute;\n  z-index: 10000;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  top: 0px;\n  left: 0px;\n  margin: 0;\n  padding: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-dialog-background);\n}\n\n.jp-Dialog-content {\n  display: flex;\n  flex-direction: column;\n  margin-left: auto;\n  margin-right: auto;\n  background: var(--jp-layout-color1);\n  padding: 24px;\n  padding-bottom: 12px;\n  min-width: 300px;\n  min-height: 150px;\n  max-width: 1000px;\n  max-height: 500px;\n  box-sizing: border-box;\n  box-shadow: var(--jp-elevation-z20);\n  word-wrap: break-word;\n  border-radius: var(--jp-border-radius);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color1);\n  resize: both;\n}\n\n.jp-Dialog-button {\n  overflow: visible;\n}\n\nbutton.jp-Dialog-button:focus {\n  outline: 1px solid var(--jp-brand-color1);\n  outline-offset: 4px;\n  -moz-outline-radius: 0px;\n}\n\nbutton.jp-Dialog-button:focus::-moz-focus-inner {\n  border: 0;\n}\n\nbutton.jp-Dialog-close-button {\n  padding: 0;\n  height: 100%;\n  min-width: unset;\n  min-height: unset;\n}\n\n.jp-Dialog-header {\n  display: flex;\n  justify-content: space-between;\n  flex: 0 0 auto;\n  padding-bottom: 12px;\n  font-size: var(--jp-ui-font-size3);\n  font-weight: 400;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-body {\n  display: flex;\n  flex-direction: column;\n  flex: 1 1 auto;\n  font-size: var(--jp-ui-font-size1);\n  background: var(--jp-layout-color1);\n  overflow: auto;\n}\n\n.jp-Dialog-footer {\n  display: flex;\n  flex-direction: row;\n  justify-content: flex-end;\n  flex: 0 0 auto;\n  margin-left: -12px;\n  margin-right: -12px;\n  padding: 12px;\n}\n\n.jp-Dialog-title {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.jp-Dialog-body > .jp-select-wrapper {\n  width: 100%;\n}\n\n.jp-Dialog-body > button {\n  padding: 0px 16px;\n}\n\n.jp-Dialog-body > label {\n  line-height: 1.4;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-button.jp-mod-styled:not(:last-child) {\n  margin-right: 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-HoverBox {\n  position: fixed;\n}\n\n.jp-HoverBox.jp-mod-outofview {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-IFrame {\n  width: 100%;\n  height: 100%;\n}\n\n.jp-IFrame > iframe {\n  border: none;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-IFrame {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-IFrame:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n.jp-Input-Boolean-Dialog {\n  flex-direction: row-reverse;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-Input-Boolean-Dialog > label {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MainAreaWidget > :focus {\n  outline: none;\n}\n\n/**\n * google-material-color v1.2.6\n * https://github.com/danlevan/google-material-color\n */\n:root {\n  --md-red-50: #ffebee;\n  --md-red-100: #ffcdd2;\n  --md-red-200: #ef9a9a;\n  --md-red-300: #e57373;\n  --md-red-400: #ef5350;\n  --md-red-500: #f44336;\n  --md-red-600: #e53935;\n  --md-red-700: #d32f2f;\n  --md-red-800: #c62828;\n  --md-red-900: #b71c1c;\n  --md-red-A100: #ff8a80;\n  --md-red-A200: #ff5252;\n  --md-red-A400: #ff1744;\n  --md-red-A700: #d50000;\n\n  --md-pink-50: #fce4ec;\n  --md-pink-100: #f8bbd0;\n  --md-pink-200: #f48fb1;\n  --md-pink-300: #f06292;\n  --md-pink-400: #ec407a;\n  --md-pink-500: #e91e63;\n  --md-pink-600: #d81b60;\n  --md-pink-700: #c2185b;\n  --md-pink-800: #ad1457;\n  --md-pink-900: #880e4f;\n  --md-pink-A100: #ff80ab;\n  --md-pink-A200: #ff4081;\n  --md-pink-A400: #f50057;\n  --md-pink-A700: #c51162;\n\n  --md-purple-50: #f3e5f5;\n  --md-purple-100: #e1bee7;\n  --md-purple-200: #ce93d8;\n  --md-purple-300: #ba68c8;\n  --md-purple-400: #ab47bc;\n  --md-purple-500: #9c27b0;\n  --md-purple-600: #8e24aa;\n  --md-purple-700: #7b1fa2;\n  --md-purple-800: #6a1b9a;\n  --md-purple-900: #4a148c;\n  --md-purple-A100: #ea80fc;\n  --md-purple-A200: #e040fb;\n  --md-purple-A400: #d500f9;\n  --md-purple-A700: #aa00ff;\n\n  --md-deep-purple-50: #ede7f6;\n  --md-deep-purple-100: #d1c4e9;\n  --md-deep-purple-200: #b39ddb;\n  --md-deep-purple-300: #9575cd;\n  --md-deep-purple-400: #7e57c2;\n  --md-deep-purple-500: #673ab7;\n  --md-deep-purple-600: #5e35b1;\n  --md-deep-purple-700: #512da8;\n  --md-deep-purple-800: #4527a0;\n  --md-deep-purple-900: #311b92;\n  --md-deep-purple-A100: #b388ff;\n  --md-deep-purple-A200: #7c4dff;\n  --md-deep-purple-A400: #651fff;\n  --md-deep-purple-A700: #6200ea;\n\n  --md-indigo-50: #e8eaf6;\n  --md-indigo-100: #c5cae9;\n  --md-indigo-200: #9fa8da;\n  --md-indigo-300: #7986cb;\n  --md-indigo-400: #5c6bc0;\n  --md-indigo-500: #3f51b5;\n  --md-indigo-600: #3949ab;\n  --md-indigo-700: #303f9f;\n  --md-indigo-800: #283593;\n  --md-indigo-900: #1a237e;\n  --md-indigo-A100: #8c9eff;\n  --md-indigo-A200: #536dfe;\n  --md-indigo-A400: #3d5afe;\n  --md-indigo-A700: #304ffe;\n\n  --md-blue-50: #e3f2fd;\n  --md-blue-100: #bbdefb;\n  --md-blue-200: #90caf9;\n  --md-blue-300: #64b5f6;\n  --md-blue-400: #42a5f5;\n  --md-blue-500: #2196f3;\n  --md-blue-600: #1e88e5;\n  --md-blue-700: #1976d2;\n  --md-blue-800: #1565c0;\n  --md-blue-900: #0d47a1;\n  --md-blue-A100: #82b1ff;\n  --md-blue-A200: #448aff;\n  --md-blue-A400: #2979ff;\n  --md-blue-A700: #2962ff;\n\n  --md-light-blue-50: #e1f5fe;\n  --md-light-blue-100: #b3e5fc;\n  --md-light-blue-200: #81d4fa;\n  --md-light-blue-300: #4fc3f7;\n  --md-light-blue-400: #29b6f6;\n  --md-light-blue-500: #03a9f4;\n  --md-light-blue-600: #039be5;\n  --md-light-blue-700: #0288d1;\n  --md-light-blue-800: #0277bd;\n  --md-light-blue-900: #01579b;\n  --md-light-blue-A100: #80d8ff;\n  --md-light-blue-A200: #40c4ff;\n  --md-light-blue-A400: #00b0ff;\n  --md-light-blue-A700: #0091ea;\n\n  --md-cyan-50: #e0f7fa;\n  --md-cyan-100: #b2ebf2;\n  --md-cyan-200: #80deea;\n  --md-cyan-300: #4dd0e1;\n  --md-cyan-400: #26c6da;\n  --md-cyan-500: #00bcd4;\n  --md-cyan-600: #00acc1;\n  --md-cyan-700: #0097a7;\n  --md-cyan-800: #00838f;\n  --md-cyan-900: #006064;\n  --md-cyan-A100: #84ffff;\n  --md-cyan-A200: #18ffff;\n  --md-cyan-A400: #00e5ff;\n  --md-cyan-A700: #00b8d4;\n\n  --md-teal-50: #e0f2f1;\n  --md-teal-100: #b2dfdb;\n  --md-teal-200: #80cbc4;\n  --md-teal-300: #4db6ac;\n  --md-teal-400: #26a69a;\n  --md-teal-500: #009688;\n  --md-teal-600: #00897b;\n  --md-teal-700: #00796b;\n  --md-teal-800: #00695c;\n  --md-teal-900: #004d40;\n  --md-teal-A100: #a7ffeb;\n  --md-teal-A200: #64ffda;\n  --md-teal-A400: #1de9b6;\n  --md-teal-A700: #00bfa5;\n\n  --md-green-50: #e8f5e9;\n  --md-green-100: #c8e6c9;\n  --md-green-200: #a5d6a7;\n  --md-green-300: #81c784;\n  --md-green-400: #66bb6a;\n  --md-green-500: #4caf50;\n  --md-green-600: #43a047;\n  --md-green-700: #388e3c;\n  --md-green-800: #2e7d32;\n  --md-green-900: #1b5e20;\n  --md-green-A100: #b9f6ca;\n  --md-green-A200: #69f0ae;\n  --md-green-A400: #00e676;\n  --md-green-A700: #00c853;\n\n  --md-light-green-50: #f1f8e9;\n  --md-light-green-100: #dcedc8;\n  --md-light-green-200: #c5e1a5;\n  --md-light-green-300: #aed581;\n  --md-light-green-400: #9ccc65;\n  --md-light-green-500: #8bc34a;\n  --md-light-green-600: #7cb342;\n  --md-light-green-700: #689f38;\n  --md-light-green-800: #558b2f;\n  --md-light-green-900: #33691e;\n  --md-light-green-A100: #ccff90;\n  --md-light-green-A200: #b2ff59;\n  --md-light-green-A400: #76ff03;\n  --md-light-green-A700: #64dd17;\n\n  --md-lime-50: #f9fbe7;\n  --md-lime-100: #f0f4c3;\n  --md-lime-200: #e6ee9c;\n  --md-lime-300: #dce775;\n  --md-lime-400: #d4e157;\n  --md-lime-500: #cddc39;\n  --md-lime-600: #c0ca33;\n  --md-lime-700: #afb42b;\n  --md-lime-800: #9e9d24;\n  --md-lime-900: #827717;\n  --md-lime-A100: #f4ff81;\n  --md-lime-A200: #eeff41;\n  --md-lime-A400: #c6ff00;\n  --md-lime-A700: #aeea00;\n\n  --md-yellow-50: #fffde7;\n  --md-yellow-100: #fff9c4;\n  --md-yellow-200: #fff59d;\n  --md-yellow-300: #fff176;\n  --md-yellow-400: #ffee58;\n  --md-yellow-500: #ffeb3b;\n  --md-yellow-600: #fdd835;\n  --md-yellow-700: #fbc02d;\n  --md-yellow-800: #f9a825;\n  --md-yellow-900: #f57f17;\n  --md-yellow-A100: #ffff8d;\n  --md-yellow-A200: #ffff00;\n  --md-yellow-A400: #ffea00;\n  --md-yellow-A700: #ffd600;\n\n  --md-amber-50: #fff8e1;\n  --md-amber-100: #ffecb3;\n  --md-amber-200: #ffe082;\n  --md-amber-300: #ffd54f;\n  --md-amber-400: #ffca28;\n  --md-amber-500: #ffc107;\n  --md-amber-600: #ffb300;\n  --md-amber-700: #ffa000;\n  --md-amber-800: #ff8f00;\n  --md-amber-900: #ff6f00;\n  --md-amber-A100: #ffe57f;\n  --md-amber-A200: #ffd740;\n  --md-amber-A400: #ffc400;\n  --md-amber-A700: #ffab00;\n\n  --md-orange-50: #fff3e0;\n  --md-orange-100: #ffe0b2;\n  --md-orange-200: #ffcc80;\n  --md-orange-300: #ffb74d;\n  --md-orange-400: #ffa726;\n  --md-orange-500: #ff9800;\n  --md-orange-600: #fb8c00;\n  --md-orange-700: #f57c00;\n  --md-orange-800: #ef6c00;\n  --md-orange-900: #e65100;\n  --md-orange-A100: #ffd180;\n  --md-orange-A200: #ffab40;\n  --md-orange-A400: #ff9100;\n  --md-orange-A700: #ff6d00;\n\n  --md-deep-orange-50: #fbe9e7;\n  --md-deep-orange-100: #ffccbc;\n  --md-deep-orange-200: #ffab91;\n  --md-deep-orange-300: #ff8a65;\n  --md-deep-orange-400: #ff7043;\n  --md-deep-orange-500: #ff5722;\n  --md-deep-orange-600: #f4511e;\n  --md-deep-orange-700: #e64a19;\n  --md-deep-orange-800: #d84315;\n  --md-deep-orange-900: #bf360c;\n  --md-deep-orange-A100: #ff9e80;\n  --md-deep-orange-A200: #ff6e40;\n  --md-deep-orange-A400: #ff3d00;\n  --md-deep-orange-A700: #dd2c00;\n\n  --md-brown-50: #efebe9;\n  --md-brown-100: #d7ccc8;\n  --md-brown-200: #bcaaa4;\n  --md-brown-300: #a1887f;\n  --md-brown-400: #8d6e63;\n  --md-brown-500: #795548;\n  --md-brown-600: #6d4c41;\n  --md-brown-700: #5d4037;\n  --md-brown-800: #4e342e;\n  --md-brown-900: #3e2723;\n\n  --md-grey-50: #fafafa;\n  --md-grey-100: #f5f5f5;\n  --md-grey-200: #eeeeee;\n  --md-grey-300: #e0e0e0;\n  --md-grey-400: #bdbdbd;\n  --md-grey-500: #9e9e9e;\n  --md-grey-600: #757575;\n  --md-grey-700: #616161;\n  --md-grey-800: #424242;\n  --md-grey-900: #212121;\n\n  --md-blue-grey-50: #eceff1;\n  --md-blue-grey-100: #cfd8dc;\n  --md-blue-grey-200: #b0bec5;\n  --md-blue-grey-300: #90a4ae;\n  --md-blue-grey-400: #78909c;\n  --md-blue-grey-500: #607d8b;\n  --md-blue-grey-600: #546e7a;\n  --md-blue-grey-700: #455a64;\n  --md-blue-grey-800: #37474f;\n  --md-blue-grey-900: #263238;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Spinner {\n  position: absolute;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  z-index: 10;\n  left: 0;\n  top: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-layout-color0);\n  outline: none;\n}\n\n.jp-SpinnerContent {\n  font-size: 10px;\n  margin: 50px auto;\n  text-indent: -9999em;\n  width: 3em;\n  height: 3em;\n  border-radius: 50%;\n  background: var(--jp-brand-color3);\n  background: linear-gradient(\n    to right,\n    #f37626 10%,\n    rgba(255, 255, 255, 0) 42%\n  );\n  position: relative;\n  animation: load3 1s infinite linear, fadeIn 1s;\n}\n\n.jp-SpinnerContent:before {\n  width: 50%;\n  height: 50%;\n  background: #f37626;\n  border-radius: 100% 0 0 0;\n  position: absolute;\n  top: 0;\n  left: 0;\n  content: '';\n}\n\n.jp-SpinnerContent:after {\n  background: var(--jp-layout-color0);\n  width: 75%;\n  height: 75%;\n  border-radius: 50%;\n  content: '';\n  margin: auto;\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n}\n\n@keyframes fadeIn {\n  0% {\n    opacity: 0;\n  }\n  100% {\n    opacity: 1;\n  }\n}\n\n@keyframes load3 {\n  0% {\n    transform: rotate(0deg);\n  }\n  100% {\n    transform: rotate(360deg);\n  }\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\nbutton.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: none;\n  box-sizing: border-box;\n  text-align: center;\n  line-height: 32px;\n  height: 32px;\n  padding: 0px 12px;\n  letter-spacing: 0.8px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput.jp-mod-styled {\n  background: var(--jp-input-background);\n  height: 28px;\n  box-sizing: border-box;\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n  padding-left: 7px;\n  padding-right: 7px;\n  font-size: var(--jp-ui-font-size2);\n  color: var(--jp-ui-font-color0);\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput[type='checkbox'].jp-mod-styled {\n  appearance: checkbox;\n  -webkit-appearance: checkbox;\n  -moz-appearance: checkbox;\n  height: auto;\n}\n\ninput.jp-mod-styled:focus {\n  border: var(--jp-border-width) solid var(--md-blue-500);\n  box-shadow: inset 0 0 4px var(--md-blue-300);\n}\n\n.jp-FileDialog-Checkbox {\n  margin-top: 35px;\n  display: flex;\n  flex-direction: row;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-FileDialog-Checkbox > label {\n  flex: 1 1 auto;\n}\n\n.jp-select-wrapper {\n  display: flex;\n  position: relative;\n  flex-direction: column;\n  padding: 1px;\n  background-color: var(--jp-layout-color1);\n  height: 28px;\n  box-sizing: border-box;\n  margin-bottom: 12px;\n}\n\n.jp-select-wrapper.jp-mod-focused select.jp-mod-styled {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-input-active-background);\n}\n\nselect.jp-mod-styled:hover {\n  background-color: var(--jp-layout-color1);\n  cursor: pointer;\n  color: var(--jp-ui-font-color0);\n  background-color: var(--jp-input-hover-background);\n  box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.5);\n}\n\nselect.jp-mod-styled {\n  flex: 1 1 auto;\n  height: 32px;\n  width: 100%;\n  font-size: var(--jp-ui-font-size2);\n  background: var(--jp-input-background);\n  color: var(--jp-ui-font-color0);\n  padding: 0 25px 0 8px;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-toolbar-height: calc(\n    28px + var(--jp-border-width)\n  ); /* leave 28px for content */\n}\n\n.jp-Toolbar {\n  color: var(--jp-ui-font-color1);\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  border-bottom: var(--jp-border-width) solid var(--jp-toolbar-border-color);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  background: var(--jp-toolbar-background);\n  min-height: var(--jp-toolbar-micro-height);\n  padding: 2px;\n  z-index: 1;\n  overflow-x: auto;\n}\n\n/* Toolbar items */\n\n.jp-Toolbar > .jp-Toolbar-item.jp-Toolbar-spacer {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\n.jp-Toolbar-item.jp-Toolbar-kernelStatus {\n  display: inline-block;\n  width: 32px;\n  background-repeat: no-repeat;\n  background-position: center;\n  background-size: 16px;\n}\n\n.jp-Toolbar > .jp-Toolbar-item {\n  flex: 0 0 auto;\n  display: flex;\n  padding-left: 1px;\n  padding-right: 1px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: var(--jp-private-toolbar-height);\n  height: 100%;\n}\n\n/* Toolbar buttons */\n\n/* This is the div we use to wrap the react component into a Widget */\ndiv.jp-ToolbarButton {\n  color: transparent;\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px;\n  margin: 0px;\n}\n\nbutton.jp-ToolbarButtonComponent {\n  background: var(--jp-layout-color1);\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px 6px;\n  margin: 0px;\n  height: 24px;\n  border-radius: var(--jp-border-radius);\n  display: flex;\n  align-items: center;\n  text-align: center;\n  font-size: 14px;\n  min-width: unset;\n  min-height: unset;\n}\n\nbutton.jp-ToolbarButtonComponent:disabled {\n  opacity: 0.4;\n}\n\nbutton.jp-ToolbarButtonComponent span {\n  padding: 0px;\n  flex: 0 0 auto;\n}\n\nbutton.jp-ToolbarButtonComponent .jp-ToolbarButtonComponent-label {\n  font-size: var(--jp-ui-font-size1);\n  line-height: 100%;\n  padding-left: 2px;\n  color: var(--jp-ui-font-color1);\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar.jp-Toolbar-micro {\n  padding: 0;\n  min-height: 0;\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar {\n  border: none;\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ body.p-mod-override-cursor *, /* </DEPRECATED> */\nbody.lm-mod-override-cursor * {\n  cursor: inherit !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-JSONEditor {\n  display: flex;\n  flex-direction: column;\n  width: 100%;\n}\n\n.jp-JSONEditor-host {\n  flex: 1 1 auto;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  background: var(--jp-layout-color0);\n  min-height: 50px;\n  padding: 1px;\n}\n\n.jp-JSONEditor.jp-mod-error .jp-JSONEditor-host {\n  border-color: red;\n  outline-color: red;\n}\n\n.jp-JSONEditor-header {\n  display: flex;\n  flex: 1 0 auto;\n  padding: 0 0 0 12px;\n}\n\n.jp-JSONEditor-header label {\n  flex: 0 0 auto;\n}\n\n.jp-JSONEditor-commitButton {\n  height: 16px;\n  width: 16px;\n  background-size: 18px;\n  background-repeat: no-repeat;\n  background-position: center;\n}\n\n.jp-JSONEditor-host.jp-mod-focused {\n  background-color: var(--jp-input-active-background);\n  border: 1px solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n.jp-Editor.jp-mod-dropTarget {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n/* BASICS */\n\n.CodeMirror {\n  /* Set height, width, borders, and global font properties here */\n  font-family: monospace;\n  height: 300px;\n  color: black;\n  direction: ltr;\n}\n\n/* PADDING */\n\n.CodeMirror-lines {\n  padding: 4px 0; /* Vertical padding around content */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  padding: 0 4px; /* Horizontal padding of content */\n}\n\n.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  background-color: white; /* The little square between H and V scrollbars */\n}\n\n/* GUTTER */\n\n.CodeMirror-gutters {\n  border-right: 1px solid #ddd;\n  background-color: #f7f7f7;\n  white-space: nowrap;\n}\n.CodeMirror-linenumbers {}\n.CodeMirror-linenumber {\n  padding: 0 3px 0 5px;\n  min-width: 20px;\n  text-align: right;\n  color: #999;\n  white-space: nowrap;\n}\n\n.CodeMirror-guttermarker { color: black; }\n.CodeMirror-guttermarker-subtle { color: #999; }\n\n/* CURSOR */\n\n.CodeMirror-cursor {\n  border-left: 1px solid black;\n  border-right: none;\n  width: 0;\n}\n/* Shown when moving in bi-directional text */\n.CodeMirror div.CodeMirror-secondarycursor {\n  border-left: 1px solid silver;\n}\n.cm-fat-cursor .CodeMirror-cursor {\n  width: auto;\n  border: 0 !important;\n  background: #7e7;\n}\n.cm-fat-cursor div.CodeMirror-cursors {\n  z-index: 1;\n}\n.cm-fat-cursor-mark {\n  background-color: rgba(20, 255, 20, 0.5);\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n}\n.cm-animate-fat-cursor {\n  width: auto;\n  border: 0;\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n  background-color: #7e7;\n}\n@-moz-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@-webkit-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n\n/* Can style cursor different in overwrite (non-insert) mode */\n.CodeMirror-overwrite .CodeMirror-cursor {}\n\n.cm-tab { display: inline-block; text-decoration: inherit; }\n\n.CodeMirror-rulers {\n  position: absolute;\n  left: 0; right: 0; top: -50px; bottom: 0;\n  overflow: hidden;\n}\n.CodeMirror-ruler {\n  border-left: 1px solid #ccc;\n  top: 0; bottom: 0;\n  position: absolute;\n}\n\n/* DEFAULT THEME */\n\n.cm-s-default .cm-header {color: blue;}\n.cm-s-default .cm-quote {color: #090;}\n.cm-negative {color: #d44;}\n.cm-positive {color: #292;}\n.cm-header, .cm-strong {font-weight: bold;}\n.cm-em {font-style: italic;}\n.cm-link {text-decoration: underline;}\n.cm-strikethrough {text-decoration: line-through;}\n\n.cm-s-default .cm-keyword {color: #708;}\n.cm-s-default .cm-atom {color: #219;}\n.cm-s-default .cm-number {color: #164;}\n.cm-s-default .cm-def {color: #00f;}\n.cm-s-default .cm-variable,\n.cm-s-default .cm-punctuation,\n.cm-s-default .cm-property,\n.cm-s-default .cm-operator {}\n.cm-s-default .cm-variable-2 {color: #05a;}\n.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}\n.cm-s-default .cm-comment {color: #a50;}\n.cm-s-default .cm-string {color: #a11;}\n.cm-s-default .cm-string-2 {color: #f50;}\n.cm-s-default .cm-meta {color: #555;}\n.cm-s-default .cm-qualifier {color: #555;}\n.cm-s-default .cm-builtin {color: #30a;}\n.cm-s-default .cm-bracket {color: #997;}\n.cm-s-default .cm-tag {color: #170;}\n.cm-s-default .cm-attribute {color: #00c;}\n.cm-s-default .cm-hr {color: #999;}\n.cm-s-default .cm-link {color: #00c;}\n\n.cm-s-default .cm-error {color: #f00;}\n.cm-invalidchar {color: #f00;}\n\n.CodeMirror-composing { border-bottom: 2px solid; }\n\n/* Default styles for common addons */\n\ndiv.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}\ndiv.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}\n.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }\n.CodeMirror-activeline-background {background: #e8f2ff;}\n\n/* STOP */\n\n/* The rest of this file contains styles related to the mechanics of\n   the editor. You probably shouldn't touch them. */\n\n.CodeMirror {\n  position: relative;\n  overflow: hidden;\n  background: white;\n}\n\n.CodeMirror-scroll {\n  overflow: scroll !important; /* Things will break if this is overridden */\n  /* 50px is the magic margin used to hide the element's real scrollbars */\n  /* See overflow: hidden in .CodeMirror */\n  margin-bottom: -50px; margin-right: -50px;\n  padding-bottom: 50px;\n  height: 100%;\n  outline: none; /* Prevent dragging from highlighting the element */\n  position: relative;\n}\n.CodeMirror-sizer {\n  position: relative;\n  border-right: 50px solid transparent;\n}\n\n/* The fake, visible scrollbars. Used to force redraw during scrolling\n   before actual scrolling happens, thus preventing shaking and\n   flickering artifacts. */\n.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  position: absolute;\n  z-index: 6;\n  display: none;\n  outline: none;\n}\n.CodeMirror-vscrollbar {\n  right: 0; top: 0;\n  overflow-x: hidden;\n  overflow-y: scroll;\n}\n.CodeMirror-hscrollbar {\n  bottom: 0; left: 0;\n  overflow-y: hidden;\n  overflow-x: scroll;\n}\n.CodeMirror-scrollbar-filler {\n  right: 0; bottom: 0;\n}\n.CodeMirror-gutter-filler {\n  left: 0; bottom: 0;\n}\n\n.CodeMirror-gutters {\n  position: absolute; left: 0; top: 0;\n  min-height: 100%;\n  z-index: 3;\n}\n.CodeMirror-gutter {\n  white-space: normal;\n  height: 100%;\n  display: inline-block;\n  vertical-align: top;\n  margin-bottom: -50px;\n}\n.CodeMirror-gutter-wrapper {\n  position: absolute;\n  z-index: 4;\n  background: none !important;\n  border: none !important;\n}\n.CodeMirror-gutter-background {\n  position: absolute;\n  top: 0; bottom: 0;\n  z-index: 4;\n}\n.CodeMirror-gutter-elt {\n  position: absolute;\n  cursor: default;\n  z-index: 4;\n}\n.CodeMirror-gutter-wrapper ::selection { background-color: transparent }\n.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }\n\n.CodeMirror-lines {\n  cursor: text;\n  min-height: 1px; /* prevents collapsing before first draw */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  /* Reset some styles that the rest of the page might have set */\n  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;\n  border-width: 0;\n  background: transparent;\n  font-family: inherit;\n  font-size: inherit;\n  margin: 0;\n  white-space: pre;\n  word-wrap: normal;\n  line-height: inherit;\n  color: inherit;\n  z-index: 2;\n  position: relative;\n  overflow: visible;\n  -webkit-tap-highlight-color: transparent;\n  -webkit-font-variant-ligatures: contextual;\n  font-variant-ligatures: contextual;\n}\n.CodeMirror-wrap pre.CodeMirror-line,\n.CodeMirror-wrap pre.CodeMirror-line-like {\n  word-wrap: break-word;\n  white-space: pre-wrap;\n  word-break: normal;\n}\n\n.CodeMirror-linebackground {\n  position: absolute;\n  left: 0; right: 0; top: 0; bottom: 0;\n  z-index: 0;\n}\n\n.CodeMirror-linewidget {\n  position: relative;\n  z-index: 2;\n  padding: 0.1px; /* Force widget margins to stay inside of the container */\n}\n\n.CodeMirror-widget {}\n\n.CodeMirror-rtl pre { direction: rtl; }\n\n.CodeMirror-code {\n  outline: none;\n}\n\n/* Force content-box sizing for the elements where we expect it */\n.CodeMirror-scroll,\n.CodeMirror-sizer,\n.CodeMirror-gutter,\n.CodeMirror-gutters,\n.CodeMirror-linenumber {\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n}\n\n.CodeMirror-measure {\n  position: absolute;\n  width: 100%;\n  height: 0;\n  overflow: hidden;\n  visibility: hidden;\n}\n\n.CodeMirror-cursor {\n  position: absolute;\n  pointer-events: none;\n}\n.CodeMirror-measure pre { position: static; }\n\ndiv.CodeMirror-cursors {\n  visibility: hidden;\n  position: relative;\n  z-index: 3;\n}\ndiv.CodeMirror-dragcursors {\n  visibility: visible;\n}\n\n.CodeMirror-focused div.CodeMirror-cursors {\n  visibility: visible;\n}\n\n.CodeMirror-selected { background: #d9d9d9; }\n.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }\n.CodeMirror-crosshair { cursor: crosshair; }\n.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }\n.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }\n\n.cm-searching {\n  background-color: #ffa;\n  background-color: rgba(255, 255, 0, .4);\n}\n\n/* Used to force a border model for a node */\n.cm-force-border { padding-right: .1px; }\n\n@media print {\n  /* Hide the cursor when printing */\n  .CodeMirror div.CodeMirror-cursors {\n    visibility: hidden;\n  }\n}\n\n/* See issue #2901 */\n.cm-tab-wrap-hack:after { content: ''; }\n\n/* Help users use markselection to safely style text background */\nspan.CodeMirror-selectedtext { background: none; }\n\n.CodeMirror-dialog {\n  position: absolute;\n  left: 0; right: 0;\n  background: inherit;\n  z-index: 15;\n  padding: .1em .8em;\n  overflow: hidden;\n  color: inherit;\n}\n\n.CodeMirror-dialog-top {\n  border-bottom: 1px solid #eee;\n  top: 0;\n}\n\n.CodeMirror-dialog-bottom {\n  border-top: 1px solid #eee;\n  bottom: 0;\n}\n\n.CodeMirror-dialog input {\n  border: none;\n  outline: none;\n  background: transparent;\n  width: 20em;\n  color: inherit;\n  font-family: monospace;\n}\n\n.CodeMirror-dialog button {\n  font-size: 70%;\n}\n\n.CodeMirror-foldmarker {\n  color: blue;\n  text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;\n  font-family: arial;\n  line-height: .3;\n  cursor: pointer;\n}\n.CodeMirror-foldgutter {\n  width: .7em;\n}\n.CodeMirror-foldgutter-open,\n.CodeMirror-foldgutter-folded {\n  cursor: pointer;\n}\n.CodeMirror-foldgutter-open:after {\n  content: \"\\25BE\";\n}\n.CodeMirror-foldgutter-folded:after {\n  content: \"\\25B8\";\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.CodeMirror {\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  border: 0;\n  border-radius: 0;\n  height: auto;\n  /* Changed to auto to autogrow */\n}\n\n.CodeMirror pre {\n  padding: 0 var(--jp-code-padding);\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-dialog {\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* This causes https://github.com/jupyter/jupyterlab/issues/522 */\n/* May not cause it not because we changed it! */\n.CodeMirror-lines {\n  padding: var(--jp-code-padding) 0;\n}\n\n.CodeMirror-linenumber {\n  padding: 0 8px;\n}\n\n.jp-CodeMirrorEditor {\n  cursor: text;\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n\n/* When zoomed out 67% and 33% on a screen of 1440 width x 900 height */\n@media screen and (min-width: 2138px) and (max-width: 4319px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width1) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n/* When zoomed out less than 33% */\n@media screen and (min-width: 4320px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width2) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n.CodeMirror.jp-mod-readOnly .CodeMirror-cursor {\n  display: none;\n}\n\n.CodeMirror-gutters {\n  border-right: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-layout-color0);\n}\n\n.jp-CollaboratorCursor {\n  border-left: 5px solid transparent;\n  border-right: 5px solid transparent;\n  border-top: none;\n  border-bottom: 3px solid;\n  background-clip: content-box;\n  margin-left: -5px;\n  margin-right: -5px;\n}\n\n.CodeMirror-selectedtext.cm-searching {\n  background-color: var(--jp-search-selected-match-background-color) !important;\n  color: var(--jp-search-selected-match-color) !important;\n}\n\n.cm-searching {\n  background-color: var(\n    --jp-search-unselected-match-background-color\n  ) !important;\n  color: var(--jp-search-unselected-match-color) !important;\n}\n\n.CodeMirror-focused .CodeMirror-selected {\n  background-color: var(--jp-editor-selected-focused-background);\n}\n\n.CodeMirror-selected {\n  background-color: var(--jp-editor-selected-background);\n}\n\n.jp-CollaboratorCursor-hover {\n  position: absolute;\n  z-index: 1;\n  transform: translateX(-50%);\n  color: white;\n  border-radius: 3px;\n  padding-left: 4px;\n  padding-right: 4px;\n  padding-top: 1px;\n  padding-bottom: 1px;\n  text-align: center;\n  font-size: var(--jp-ui-font-size1);\n  white-space: nowrap;\n}\n\n.jp-CodeMirror-ruler {\n  border-left: 1px dashed var(--jp-border-color2);\n}\n\n/**\n * Here is our jupyter theme for CodeMirror syntax highlighting\n * This is used in our marked.js syntax highlighting and CodeMirror itself\n * The string \"jupyter\" is set in ../codemirror/widget.DEFAULT_CODEMIRROR_THEME\n * This came from the classic notebook, which came form highlight.js/GitHub\n */\n\n/**\n * CodeMirror themes are handling the background/color in this way. This works\n * fine for CodeMirror editors outside the notebook, but the notebook styles\n * these things differently.\n */\n.CodeMirror.cm-s-jupyter {\n  background: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* In the notebook, we want this styling to be handled by its container */\n.jp-CodeConsole .CodeMirror.cm-s-jupyter,\n.jp-Notebook .CodeMirror.cm-s-jupyter {\n  background: transparent;\n}\n\n.cm-s-jupyter .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n.cm-s-jupyter span.cm-keyword {\n  color: var(--jp-mirror-editor-keyword-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-atom {\n  color: var(--jp-mirror-editor-atom-color);\n}\n.cm-s-jupyter span.cm-number {\n  color: var(--jp-mirror-editor-number-color);\n}\n.cm-s-jupyter span.cm-def {\n  color: var(--jp-mirror-editor-def-color);\n}\n.cm-s-jupyter span.cm-variable {\n  color: var(--jp-mirror-editor-variable-color);\n}\n.cm-s-jupyter span.cm-variable-2 {\n  color: var(--jp-mirror-editor-variable-2-color);\n}\n.cm-s-jupyter span.cm-variable-3 {\n  color: var(--jp-mirror-editor-variable-3-color);\n}\n.cm-s-jupyter span.cm-punctuation {\n  color: var(--jp-mirror-editor-punctuation-color);\n}\n.cm-s-jupyter span.cm-property {\n  color: var(--jp-mirror-editor-property-color);\n}\n.cm-s-jupyter span.cm-operator {\n  color: var(--jp-mirror-editor-operator-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-comment {\n  color: var(--jp-mirror-editor-comment-color);\n  font-style: italic;\n}\n.cm-s-jupyter span.cm-string {\n  color: var(--jp-mirror-editor-string-color);\n}\n.cm-s-jupyter span.cm-string-2 {\n  color: var(--jp-mirror-editor-string-2-color);\n}\n.cm-s-jupyter span.cm-meta {\n  color: var(--jp-mirror-editor-meta-color);\n}\n.cm-s-jupyter span.cm-qualifier {\n  color: var(--jp-mirror-editor-qualifier-color);\n}\n.cm-s-jupyter span.cm-builtin {\n  color: var(--jp-mirror-editor-builtin-color);\n}\n.cm-s-jupyter span.cm-bracket {\n  color: var(--jp-mirror-editor-bracket-color);\n}\n.cm-s-jupyter span.cm-tag {\n  color: var(--jp-mirror-editor-tag-color);\n}\n.cm-s-jupyter span.cm-attribute {\n  color: var(--jp-mirror-editor-attribute-color);\n}\n.cm-s-jupyter span.cm-header {\n  color: var(--jp-mirror-editor-header-color);\n}\n.cm-s-jupyter span.cm-quote {\n  color: var(--jp-mirror-editor-quote-color);\n}\n.cm-s-jupyter span.cm-link {\n  color: var(--jp-mirror-editor-link-color);\n}\n.cm-s-jupyter span.cm-error {\n  color: var(--jp-mirror-editor-error-color);\n}\n.cm-s-jupyter span.cm-hr {\n  color: #999;\n}\n\n.cm-s-jupyter span.cm-tab {\n  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);\n  background-position: right;\n  background-repeat: no-repeat;\n}\n\n.cm-s-jupyter .CodeMirror-activeline-background,\n.cm-s-jupyter .CodeMirror-gutter {\n  background-color: var(--jp-layout-color2);\n}\n\n/* Styles for shared cursors (remote cursor locations and selected ranges) */\n.jp-CodeMirrorEditor .remote-caret {\n  position: relative;\n  border-left: 2px solid black;\n  margin-left: -1px;\n  margin-right: -1px;\n  box-sizing: border-box;\n}\n\n.jp-CodeMirrorEditor .remote-caret > div {\n  white-space: nowrap;\n  position: absolute;\n  top: -1.15em;\n  padding-bottom: 0.05em;\n  left: -2px;\n  font-size: 0.95em;\n  background-color: rgb(250, 129, 0);\n  font-family: var(--jp-ui-font-family);\n  font-weight: bold;\n  line-height: normal;\n  user-select: none;\n  color: white;\n  padding-left: 2px;\n  padding-right: 2px;\n  z-index: 3;\n  transition: opacity 0.3s ease-in-out;\n}\n\n.jp-CodeMirrorEditor .remote-caret.hide-name > div {\n  transition-delay: 0.7s;\n  opacity: 0;\n}\n\n.jp-CodeMirrorEditor .remote-caret:hover > div {\n  opacity: 1;\n  transition-delay: 0s;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| RenderedText\n|----------------------------------------------------------------------------*/\n\n:root {\n  /* This is the padding value to fill the gaps between lines containing spans with background color. */\n  --jp-private-code-span-padding: calc(\n    (var(--jp-code-line-height) - 1) * var(--jp-code-font-size) / 2\n  );\n}\n\n.jp-RenderedText {\n  text-align: left;\n  padding-left: var(--jp-code-padding);\n  line-height: var(--jp-code-line-height);\n  font-family: var(--jp-code-font-family);\n}\n\n.jp-RenderedText pre,\n.jp-RenderedJavaScript pre,\n.jp-RenderedHTMLCommon pre {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-code-font-size);\n  border: none;\n  margin: 0px;\n  padding: 0px;\n}\n\n.jp-RenderedText pre a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* console foregrounds and backgrounds */\n.jp-RenderedText pre .ansi-black-fg {\n  color: #3e424d;\n}\n.jp-RenderedText pre .ansi-red-fg {\n  color: #e75c58;\n}\n.jp-RenderedText pre .ansi-green-fg {\n  color: #00a250;\n}\n.jp-RenderedText pre .ansi-yellow-fg {\n  color: #ddb62b;\n}\n.jp-RenderedText pre .ansi-blue-fg {\n  color: #208ffb;\n}\n.jp-RenderedText pre .ansi-magenta-fg {\n  color: #d160c4;\n}\n.jp-RenderedText pre .ansi-cyan-fg {\n  color: #60c6c8;\n}\n.jp-RenderedText pre .ansi-white-fg {\n  color: #c5c1b4;\n}\n\n.jp-RenderedText pre .ansi-black-bg {\n  background-color: #3e424d;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-bg {\n  background-color: #e75c58;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-bg {\n  background-color: #00a250;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-bg {\n  background-color: #ddb62b;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-bg {\n  background-color: #208ffb;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-bg {\n  background-color: #d160c4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-bg {\n  background-color: #60c6c8;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-bg {\n  background-color: #c5c1b4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-black-intense-fg {\n  color: #282c36;\n}\n.jp-RenderedText pre .ansi-red-intense-fg {\n  color: #b22b31;\n}\n.jp-RenderedText pre .ansi-green-intense-fg {\n  color: #007427;\n}\n.jp-RenderedText pre .ansi-yellow-intense-fg {\n  color: #b27d12;\n}\n.jp-RenderedText pre .ansi-blue-intense-fg {\n  color: #0065ca;\n}\n.jp-RenderedText pre .ansi-magenta-intense-fg {\n  color: #a03196;\n}\n.jp-RenderedText pre .ansi-cyan-intense-fg {\n  color: #258f8f;\n}\n.jp-RenderedText pre .ansi-white-intense-fg {\n  color: #a1a6b2;\n}\n\n.jp-RenderedText pre .ansi-black-intense-bg {\n  background-color: #282c36;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-intense-bg {\n  background-color: #b22b31;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-intense-bg {\n  background-color: #007427;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-intense-bg {\n  background-color: #b27d12;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-intense-bg {\n  background-color: #0065ca;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-intense-bg {\n  background-color: #a03196;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-intense-bg {\n  background-color: #258f8f;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-intense-bg {\n  background-color: #a1a6b2;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-default-inverse-fg {\n  color: var(--jp-ui-inverse-font-color0);\n}\n.jp-RenderedText pre .ansi-default-inverse-bg {\n  background-color: var(--jp-inverse-layout-color0);\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-bold {\n  font-weight: bold;\n}\n.jp-RenderedText pre .ansi-underline {\n  text-decoration: underline;\n}\n\n.jp-RenderedText[data-mime-type='application/vnd.jupyter.stderr'] {\n  background: var(--jp-rendermime-error-background);\n  padding-top: var(--jp-code-padding);\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedLatex\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedLatex {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n}\n\n/* Left-justify outputs.*/\n.jp-OutputArea-output.jp-RenderedLatex {\n  padding: var(--jp-code-padding);\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedHTML\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedHTMLCommon {\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-content-font-family);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n  /* Give a bit more R padding on Markdown text to keep line lengths reasonable */\n  padding-right: 20px;\n}\n\n.jp-RenderedHTMLCommon em {\n  font-style: italic;\n}\n\n.jp-RenderedHTMLCommon strong {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon u {\n  text-decoration: underline;\n}\n\n.jp-RenderedHTMLCommon a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* Headings */\n\n.jp-RenderedHTMLCommon h1,\n.jp-RenderedHTMLCommon h2,\n.jp-RenderedHTMLCommon h3,\n.jp-RenderedHTMLCommon h4,\n.jp-RenderedHTMLCommon h5,\n.jp-RenderedHTMLCommon h6 {\n  line-height: var(--jp-content-heading-line-height);\n  font-weight: var(--jp-content-heading-font-weight);\n  font-style: normal;\n  margin: var(--jp-content-heading-margin-top) 0\n    var(--jp-content-heading-margin-bottom) 0;\n}\n\n.jp-RenderedHTMLCommon h1:first-child,\n.jp-RenderedHTMLCommon h2:first-child,\n.jp-RenderedHTMLCommon h3:first-child,\n.jp-RenderedHTMLCommon h4:first-child,\n.jp-RenderedHTMLCommon h5:first-child,\n.jp-RenderedHTMLCommon h6:first-child {\n  margin-top: calc(0.5 * var(--jp-content-heading-margin-top));\n}\n\n.jp-RenderedHTMLCommon h1:last-child,\n.jp-RenderedHTMLCommon h2:last-child,\n.jp-RenderedHTMLCommon h3:last-child,\n.jp-RenderedHTMLCommon h4:last-child,\n.jp-RenderedHTMLCommon h5:last-child,\n.jp-RenderedHTMLCommon h6:last-child {\n  margin-bottom: calc(0.5 * var(--jp-content-heading-margin-bottom));\n}\n\n.jp-RenderedHTMLCommon h1 {\n  font-size: var(--jp-content-font-size5);\n}\n\n.jp-RenderedHTMLCommon h2 {\n  font-size: var(--jp-content-font-size4);\n}\n\n.jp-RenderedHTMLCommon h3 {\n  font-size: var(--jp-content-font-size3);\n}\n\n.jp-RenderedHTMLCommon h4 {\n  font-size: var(--jp-content-font-size2);\n}\n\n.jp-RenderedHTMLCommon h5 {\n  font-size: var(--jp-content-font-size1);\n}\n\n.jp-RenderedHTMLCommon h6 {\n  font-size: var(--jp-content-font-size0);\n}\n\n/* Lists */\n\n.jp-RenderedHTMLCommon ul:not(.list-inline),\n.jp-RenderedHTMLCommon ol:not(.list-inline) {\n  padding-left: 2em;\n}\n\n.jp-RenderedHTMLCommon ul {\n  list-style: disc;\n}\n\n.jp-RenderedHTMLCommon ul ul {\n  list-style: square;\n}\n\n.jp-RenderedHTMLCommon ul ul ul {\n  list-style: circle;\n}\n\n.jp-RenderedHTMLCommon ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol ol {\n  list-style: upper-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol {\n  list-style: lower-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol {\n  list-style: lower-roman;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol,\n.jp-RenderedHTMLCommon ul {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon ul ul,\n.jp-RenderedHTMLCommon ul ol,\n.jp-RenderedHTMLCommon ol ul,\n.jp-RenderedHTMLCommon ol ol {\n  margin-bottom: 0em;\n}\n\n.jp-RenderedHTMLCommon hr {\n  color: var(--jp-border-color2);\n  background-color: var(--jp-border-color1);\n  margin-top: 1em;\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon > pre {\n  margin: 1.5em 2em;\n}\n\n.jp-RenderedHTMLCommon pre,\n.jp-RenderedHTMLCommon code {\n  border: 0;\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  line-height: var(--jp-code-line-height);\n  padding: 0;\n  white-space: pre-wrap;\n}\n\n.jp-RenderedHTMLCommon :not(pre) > code {\n  background-color: var(--jp-layout-color2);\n  padding: 1px 5px;\n}\n\n/* Tables */\n\n.jp-RenderedHTMLCommon table {\n  border-collapse: collapse;\n  border-spacing: 0;\n  border: none;\n  color: var(--jp-ui-font-color1);\n  font-size: 12px;\n  table-layout: fixed;\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.jp-RenderedHTMLCommon thead {\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  vertical-align: bottom;\n}\n\n.jp-RenderedHTMLCommon td,\n.jp-RenderedHTMLCommon th,\n.jp-RenderedHTMLCommon tr {\n  vertical-align: middle;\n  padding: 0.5em 0.5em;\n  line-height: normal;\n  white-space: normal;\n  max-width: none;\n  border: none;\n}\n\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon td,\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon th {\n  max-width: none;\n}\n\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon td,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon th,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon tr {\n  text-align: right;\n}\n\n.jp-RenderedHTMLCommon th {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(odd) {\n  background: var(--jp-layout-color0);\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(even) {\n  background: var(--jp-rendermime-table-row-background);\n}\n\n.jp-RenderedHTMLCommon tbody tr:hover {\n  background: var(--jp-rendermime-table-row-hover-background);\n}\n\n.jp-RenderedHTMLCommon table {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon p {\n  text-align: left;\n  margin: 0px;\n}\n\n.jp-RenderedHTMLCommon p {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon img {\n  -moz-force-broken-image-icon: 1;\n}\n\n/* Restrict to direct children as other images could be nested in other content. */\n.jp-RenderedHTMLCommon > img {\n  display: block;\n  margin-left: 0;\n  margin-right: 0;\n  margin-bottom: 1em;\n}\n\n/* Change color behind transparent images if they need it... */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-light-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-dark-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n/* ...or leave it untouched if they don't */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-dark-background {\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-light-background {\n}\n\n.jp-RenderedHTMLCommon img,\n.jp-RenderedImage img,\n.jp-RenderedHTMLCommon svg,\n.jp-RenderedSVG svg {\n  max-width: 100%;\n  height: auto;\n}\n\n.jp-RenderedHTMLCommon img.jp-mod-unconfined,\n.jp-RenderedImage img.jp-mod-unconfined,\n.jp-RenderedHTMLCommon svg.jp-mod-unconfined,\n.jp-RenderedSVG svg.jp-mod-unconfined {\n  max-width: none;\n}\n\n.jp-RenderedHTMLCommon .alert {\n  padding: var(--jp-notebook-padding);\n  border: var(--jp-border-width) solid transparent;\n  border-radius: var(--jp-border-radius);\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon .alert-info {\n  color: var(--jp-info-color0);\n  background-color: var(--jp-info-color3);\n  border-color: var(--jp-info-color2);\n}\n.jp-RenderedHTMLCommon .alert-info hr {\n  border-color: var(--jp-info-color3);\n}\n.jp-RenderedHTMLCommon .alert-info > p:last-child,\n.jp-RenderedHTMLCommon .alert-info > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-warning {\n  color: var(--jp-warn-color0);\n  background-color: var(--jp-warn-color3);\n  border-color: var(--jp-warn-color2);\n}\n.jp-RenderedHTMLCommon .alert-warning hr {\n  border-color: var(--jp-warn-color3);\n}\n.jp-RenderedHTMLCommon .alert-warning > p:last-child,\n.jp-RenderedHTMLCommon .alert-warning > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-success {\n  color: var(--jp-success-color0);\n  background-color: var(--jp-success-color3);\n  border-color: var(--jp-success-color2);\n}\n.jp-RenderedHTMLCommon .alert-success hr {\n  border-color: var(--jp-success-color3);\n}\n.jp-RenderedHTMLCommon .alert-success > p:last-child,\n.jp-RenderedHTMLCommon .alert-success > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-danger {\n  color: var(--jp-error-color0);\n  background-color: var(--jp-error-color3);\n  border-color: var(--jp-error-color2);\n}\n.jp-RenderedHTMLCommon .alert-danger hr {\n  border-color: var(--jp-error-color3);\n}\n.jp-RenderedHTMLCommon .alert-danger > p:last-child,\n.jp-RenderedHTMLCommon .alert-danger > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon blockquote {\n  margin: 1em 2em;\n  padding: 0 1em;\n  border-left: 5px solid var(--jp-border-color2);\n}\n\na.jp-InternalAnchorLink {\n  visibility: hidden;\n  margin-left: 8px;\n  color: var(--md-blue-800);\n}\n\nh1:hover .jp-InternalAnchorLink,\nh2:hover .jp-InternalAnchorLink,\nh3:hover .jp-InternalAnchorLink,\nh4:hover .jp-InternalAnchorLink,\nh5:hover .jp-InternalAnchorLink,\nh6:hover .jp-InternalAnchorLink {\n  visibility: visible;\n}\n\n.jp-RenderedHTMLCommon kbd {\n  background-color: var(--jp-rendermime-table-row-background);\n  border: 1px solid var(--jp-border-color0);\n  border-bottom-color: var(--jp-border-color2);\n  border-radius: 3px;\n  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n  display: inline-block;\n  font-size: 0.8em;\n  line-height: 1em;\n  padding: 0.2em 0.5em;\n}\n\n/* Most direct children of .jp-RenderedHTMLCommon have a margin-bottom of 1.0.\n * At the bottom of cells this is a bit too much as there is also spacing\n * between cells. Going all the way to 0 gets too tight between markdown and\n * code cells.\n */\n.jp-RenderedHTMLCommon > *:last-child {\n  margin-bottom: 0.5em;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MimeDocument {\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-filebrowser-button-height: 28px;\n  --jp-private-filebrowser-button-width: 48px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser {\n  display: flex;\n  flex-direction: column;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  border-bottom: none;\n  height: auto;\n  margin: var(--jp-toolbar-header-margin);\n  box-shadow: none;\n}\n\n.jp-BreadCrumbs {\n  flex: 0 0 auto;\n  margin: 8px 12px 8px 12px;\n}\n\n.jp-BreadCrumbs-item {\n  margin: 0px 2px;\n  padding: 0px 2px;\n  border-radius: var(--jp-border-radius);\n  cursor: pointer;\n}\n\n.jp-BreadCrumbs-item:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-BreadCrumbs-item:first-child {\n  margin-left: 0px;\n}\n\n.jp-BreadCrumbs-item.jp-mod-dropTarget {\n  background-color: var(--jp-brand-color2);\n  opacity: 0.7;\n}\n\n/*-----------------------------------------------------------------------------\n| Buttons\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  padding: 0px;\n  margin: 8px 12px 0px 12px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  justify-content: flex-start;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-Toolbar-item {\n  flex: 0 0 auto;\n  padding-left: 0px;\n  padding-right: 2px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-ToolbarButtonComponent {\n  width: 40px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent {\n  width: 72px;\n  background: var(--jp-brand-color1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent:focus-visible {\n  background-color: var(--jp-brand-color0);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent\n  .jp-icon3 {\n  fill: white;\n}\n\n/*-----------------------------------------------------------------------------\n| Other styles\n|----------------------------------------------------------------------------*/\n\n.jp-FileDialog.jp-mod-conflict input {\n  color: var(--jp-error-color1);\n}\n\n.jp-FileDialog .jp-new-name-title {\n  margin-top: 12px;\n}\n\n.jp-LastModified-hidden {\n  display: none;\n}\n\n.jp-FileBrowser-filterBox {\n  padding: 0px;\n  flex: 0 0 auto;\n  margin: 8px 12px 0px 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| DirListing\n|----------------------------------------------------------------------------*/\n\n.jp-DirListing {\n  flex: 1 1 auto;\n  display: flex;\n  flex-direction: column;\n  outline: 0;\n}\n\n.jp-DirListing:focus-visible {\n  border: 1px solid var(--jp-brand-color1);\n}\n\n.jp-DirListing-header {\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n  border-top: var(--jp-border-width) solid var(--jp-border-color2);\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  z-index: 2;\n}\n\n.jp-DirListing-headerItem {\n  padding: 4px 12px 2px 12px;\n  font-weight: 500;\n}\n\n.jp-DirListing-headerItem:hover {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-headerItem.jp-id-name {\n  flex: 1 0 84px;\n}\n\n.jp-DirListing-headerItem.jp-id-modified {\n  flex: 0 0 112px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n}\n\n.jp-id-narrow {\n  display: none;\n  flex: 0 0 5px;\n  padding: 4px 4px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n  color: var(--jp-border-color2);\n}\n\n.jp-DirListing-narrow .jp-id-narrow {\n  display: block;\n}\n\n.jp-DirListing-narrow .jp-id-modified,\n.jp-DirListing-narrow .jp-DirListing-itemModified {\n  display: none;\n}\n\n.jp-DirListing-headerItem.jp-mod-selected {\n  font-weight: 600;\n}\n\n/* increase specificity to override bundled default */\n.jp-DirListing-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-DirListing-content mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.jp-DirListing-content .jp-DirListing-item.jp-mod-selected mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n/* Style the directory listing content when a user drops a file to upload */\n.jp-DirListing.jp-mod-native-drop .jp-DirListing-content {\n  outline: 5px dashed rgba(128, 128, 128, 0.5);\n  outline-offset: -10px;\n  cursor: copy;\n}\n\n.jp-DirListing-item {\n  display: flex;\n  flex-direction: row;\n  padding: 4px 12px;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n.jp-DirListing-item[data-is-dot] {\n  opacity: 75%;\n}\n\n.jp-DirListing-item.jp-mod-selected {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.jp-DirListing-item.jp-mod-dropTarget {\n  background: var(--jp-brand-color3);\n}\n\n.jp-DirListing-item:hover:not(.jp-mod-selected) {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-itemIcon {\n  flex: 0 0 20px;\n  margin-right: 4px;\n}\n\n.jp-DirListing-itemText {\n  flex: 1 0 64px;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  user-select: none;\n}\n\n.jp-DirListing-itemModified {\n  flex: 0 0 125px;\n  text-align: right;\n}\n\n.jp-DirListing-editor {\n  flex: 1 0 64px;\n  outline: none;\n  border: none;\n}\n\n.jp-DirListing-item.jp-mod-running .jp-DirListing-itemIcon:before {\n  color: var(--jp-success-color1);\n  content: '\\25CF';\n  font-size: 8px;\n  position: absolute;\n  left: -8px;\n}\n\n.jp-DirListing-item.jp-mod-running.jp-mod-selected\n  .jp-DirListing-itemIcon:before {\n  color: var(--jp-ui-inverse-font-color1);\n}\n\n.jp-DirListing-item.lm-mod-drag-image,\n.jp-DirListing-item.jp-mod-selected.lm-mod-drag-image {\n  font-size: var(--jp-ui-font-size1);\n  padding-left: 4px;\n  margin-left: 4px;\n  width: 160px;\n  background-color: var(--jp-ui-inverse-font-color2);\n  box-shadow: var(--jp-elevation-z2);\n  border-radius: 0px;\n  color: var(--jp-ui-font-color1);\n  transform: translateX(-40%) translateY(-58%);\n}\n\n.jp-DirListing-deadSpace {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-Document {\n  min-width: 120px;\n  min-height: 120px;\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n}\n\n/*-----------------------------------------------------------------------------\n| Main OutputArea\n| OutputArea has a list of Outputs\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea {\n  overflow-y: auto;\n}\n\n.jp-OutputArea-child {\n  display: flex;\n  flex-direction: row;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child {\n  flex-direction: column;\n}\n\n.jp-OutputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-outprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n.jp-OutputArea-output {\n  height: auto;\n  overflow: auto;\n  user-select: text;\n  -moz-user-select: text;\n  -webkit-user-select: text;\n  -ms-user-select: text;\n}\n\n.jp-OutputArea-child .jp-OutputArea-output {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  margin-left: var(--jp-notebook-padding);\n}\n\n/**\n * Isolated output.\n */\n.jp-OutputArea-output.jp-mod-isolated {\n  width: 100%;\n  display: block;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n/* pre */\n\n.jp-OutputArea-output pre {\n  border: none;\n  margin: 0px;\n  padding: 0px;\n  overflow-x: auto;\n  overflow-y: auto;\n  word-break: break-all;\n  word-wrap: break-word;\n  white-space: pre-wrap;\n}\n\n/* tables */\n\n.jp-OutputArea-output.jp-RenderedHTMLCommon table {\n  margin-left: 0;\n  margin-right: 0;\n}\n\n/* description lists */\n\n.jp-OutputArea-output dl,\n.jp-OutputArea-output dt,\n.jp-OutputArea-output dd {\n  display: block;\n}\n\n.jp-OutputArea-output dl {\n  width: 100%;\n  overflow: hidden;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dt {\n  font-weight: bold;\n  float: left;\n  width: 20%;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dd {\n  float: left;\n  width: 80%;\n  padding: 0;\n  margin: 0;\n}\n\n/* Hide the gutter in case of\n *  - nested output areas (e.g. in the case of output widgets)\n *  - mirrored output areas\n */\n.jp-OutputArea .jp-OutputArea .jp-OutputArea-prompt {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| executeResult is added to any Output-result for the display of the object\n| returned by a cell\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  margin-left: 0px;\n  flex: 1 1 auto;\n}\n\n/* Text output with the Out[] prompt needs a top padding to match the\n * alignment of the Out[] prompt itself.\n */\n.jp-OutputArea-executeResult .jp-RenderedText.jp-OutputArea-output {\n  padding-top: var(--jp-code-padding);\n  border-top: var(--jp-border-width) solid transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| The Stdin output\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-stdin {\n  line-height: var(--jp-code-line-height);\n  padding-top: var(--jp-code-padding);\n  display: flex;\n}\n\n.jp-Stdin-prompt {\n  color: var(--jp-content-font-color0);\n  padding-right: var(--jp-code-padding);\n  vertical-align: baseline;\n  flex: 0 0 auto;\n}\n\n.jp-Stdin-input {\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  color: inherit;\n  background-color: inherit;\n  width: 42%;\n  min-width: 200px;\n  /* make sure input baseline aligns with prompt */\n  vertical-align: baseline;\n  /* padding + margin = 0.5em between prompt and cursor */\n  padding: 0em 0.25em;\n  margin: 0em 0.25em;\n  flex: 0 0 70%;\n}\n\n.jp-Stdin-input:focus {\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Output Area View\n|----------------------------------------------------------------------------*/\n\n.jp-LinkedOutputView .jp-OutputArea {\n  height: 100%;\n  display: block;\n}\n\n.jp-LinkedOutputView .jp-OutputArea-output:only-child {\n  height: 100%;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapser {\n  flex: 0 0 var(--jp-cell-collapser-width);\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n  border-radius: var(--jp-border-radius);\n  opacity: 1;\n}\n\n.jp-Collapser-child {\n  display: block;\n  width: 100%;\n  box-sizing: border-box;\n  /* height: 100% doesn't work because the height of its parent is computed from content */\n  position: absolute;\n  top: 0px;\n  bottom: 0px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Header/Footer\n|----------------------------------------------------------------------------*/\n\n/* Hidden by zero height by default */\n.jp-CellHeader,\n.jp-CellFooter {\n  height: 0px;\n  width: 100%;\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Input\n|----------------------------------------------------------------------------*/\n\n/* All input areas */\n.jp-InputArea {\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n}\n\nbody[data-format='mobile'] .jp-InputArea {\n  flex-direction: column;\n}\n\n.jp-InputArea-editor {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  /* This is the non-active, default styling */\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  border-radius: 0px;\n  background: var(--jp-cell-editor-background);\n}\n\nbody[data-format='mobile'] .jp-InputArea-editor {\n  margin-left: var(--jp-notebook-padding);\n}\n\n.jp-InputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-inprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  opacity: var(--jp-cell-prompt-opacity);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-InputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Placeholder {\n  display: flex;\n  flex-direction: row;\n  flex: 1 1 auto;\n}\n\n.jp-Placeholder-prompt {\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content {\n  flex: 1 1 auto;\n  border: none;\n  background: transparent;\n  height: 20px;\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon {\n  width: 32px;\n  height: 16px;\n  border: 1px solid transparent;\n  border-radius: var(--jp-border-radius);\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon:hover {\n  border: 1px solid var(--jp-border-color1);\n  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);\n  background-color: var(--jp-layout-color0);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-cell-scrolling-output-offset: 5px;\n}\n\n/*-----------------------------------------------------------------------------\n| Cell\n|----------------------------------------------------------------------------*/\n\n.jp-Cell {\n  padding: var(--jp-cell-padding);\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Common input/output\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-inputWrapper,\n.jp-Cell-outputWrapper {\n  display: flex;\n  flex-direction: row;\n  padding: 0px;\n  margin: 0px;\n  /* Added to reveal the box-shadow on the input and output collapsers. */\n  overflow: visible;\n}\n\n/* Only input/output areas inside cells */\n.jp-Cell-inputArea,\n.jp-Cell-outputArea {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Collapser\n|----------------------------------------------------------------------------*/\n\n/* Make the output collapser disappear when there is not output, but do so\n * in a manner that leaves it in the layout and preserves its width.\n */\n.jp-Cell.jp-mod-noOutputs .jp-Cell-outputCollapser {\n  border: none !important;\n  background: transparent !important;\n}\n\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputCollapser {\n  min-height: var(--jp-cell-collapser-min-height);\n}\n\n/*-----------------------------------------------------------------------------\n| Output\n|----------------------------------------------------------------------------*/\n\n/* Put a space between input and output when there IS output */\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputWrapper {\n  margin-top: 5px;\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-Cell-outputArea {\n  overflow-y: auto;\n  max-height: 200px;\n  box-shadow: inset 0 0 6px 2px rgba(0, 0, 0, 0.3);\n  margin-left: var(--jp-private-cell-scrolling-output-offset);\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  flex: 0 0\n    calc(\n      var(--jp-cell-prompt-width) -\n        var(--jp-private-cell-scrolling-output-offset)\n    );\n}\n\n/*-----------------------------------------------------------------------------\n| CodeCell\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| MarkdownCell\n|----------------------------------------------------------------------------*/\n\n.jp-MarkdownOutput {\n  flex: 1 1 auto;\n  margin-top: 0;\n  margin-bottom: 0;\n  padding-left: var(--jp-code-padding);\n}\n\n.jp-MarkdownOutput.jp-RenderedHTMLCommon {\n  overflow: auto;\n}\n\n.jp-showHiddenCellsButton {\n  margin-left: calc(var(--jp-cell-prompt-width) + 2 * var(--jp-code-padding));\n  margin-top: var(--jp-code-padding);\n  border: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-border-color3) !important;\n  color: var(--jp-content-font-color0) !important;\n}\n\n.jp-showHiddenCellsButton:hover {\n  background-color: var(--jp-border-color2) !important;\n}\n\n.jp-collapseHeadingButton {\n  display: none;\n}\n\n.jp-MarkdownCell:hover .jp-collapseHeadingButton {\n  display: flex;\n  min-height: var(--jp-cell-collapser-min-height);\n  position: absolute;\n  right: 0;\n  top: 0;\n  bottom: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n\n/*-----------------------------------------------------------------------------\n| Styles\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel-toolbar {\n  padding: 2px;\n}\n\n.jp-Toolbar-item.jp-Notebook-toolbarCellType .jp-select-wrapper.jp-mod-focused {\n  border: none;\n  box-shadow: none;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown select {\n  height: 24px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: 14px;\n  border-radius: 0;\n  display: block;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown span {\n  top: 5px !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-notebook-dragImage-width: 304px;\n  --jp-private-notebook-dragImage-height: 36px;\n  --jp-private-notebook-selected-color: var(--md-blue-400);\n  --jp-private-notebook-active-color: var(--md-green-400);\n}\n\n/*-----------------------------------------------------------------------------\n| Imports\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Notebook\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel {\n  display: block;\n  height: 100%;\n}\n\n.jp-NotebookPanel.jp-Document {\n  min-width: 240px;\n  min-height: 120px;\n}\n\n.jp-Notebook {\n  padding: var(--jp-notebook-padding);\n  outline: none;\n  overflow: auto;\n  background: var(--jp-layout-color0);\n}\n\n.jp-Notebook.jp-mod-scrollPastEnd::after {\n  display: block;\n  content: '';\n  min-height: var(--jp-notebook-scroll-padding);\n}\n\n.jp-MainAreaWidget-ContainStrict .jp-Notebook * {\n  contain: strict;\n}\n\n.jp-Notebook-render * {\n  contain: none !important;\n}\n\n.jp-Notebook .jp-Cell {\n  overflow: visible;\n}\n\n.jp-Notebook .jp-Cell .jp-InputPrompt {\n  cursor: move;\n  float: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook state related styling\n|\n| The notebook and cells each have states, here are the possibilities:\n|\n| - Notebook\n|   - Command\n|   - Edit\n| - Cell\n|   - None\n|   - Active (only one can be active)\n|   - Selected (the cells actions are applied to)\n|   - Multiselected (when multiple selected, the cursor)\n|   - No outputs\n|----------------------------------------------------------------------------*/\n\n/* Command or edit modes */\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-InputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-OutputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n/* cell is active */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser {\n  background: var(--jp-brand-color1);\n}\n\n/* cell is dirty */\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt {\n  color: var(--jp-warn-color1);\n}\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt:before {\n  color: var(--jp-warn-color1);\n  content: '•';\n}\n\n.jp-Notebook .jp-Cell.jp-mod-active.jp-mod-dirty .jp-Collapser {\n  background: var(--jp-warn-color1);\n}\n\n/* collapser is hovered */\n.jp-Notebook .jp-Cell .jp-Collapser:hover {\n  box-shadow: var(--jp-elevation-z2);\n  background: var(--jp-brand-color1);\n  opacity: var(--jp-cell-collapser-not-active-hover-opacity);\n}\n\n/* cell is active and collapser is hovered */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser:hover {\n  background: var(--jp-brand-color0);\n  opacity: 1;\n}\n\n/* Command mode */\n\n.jp-Notebook.jp-mod-commandMode .jp-Cell.jp-mod-selected {\n  background: var(--jp-notebook-multiselected-color);\n}\n\n.jp-Notebook.jp-mod-commandMode\n  .jp-Cell.jp-mod-active.jp-mod-selected:not(.jp-mod-multiSelected) {\n  background: transparent;\n}\n\n/* Edit mode */\n\n.jp-Notebook.jp-mod-editMode .jp-Cell.jp-mod-active .jp-InputArea-editor {\n  border: var(--jp-border-width) solid var(--jp-cell-editor-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-cell-editor-active-background);\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook drag and drop\n|----------------------------------------------------------------------------*/\n\n.jp-Notebook-cell.jp-mod-dropSource {\n  opacity: 0.5;\n}\n\n.jp-Notebook-cell.jp-mod-dropTarget,\n.jp-Notebook.jp-mod-commandMode\n  .jp-Notebook-cell.jp-mod-active.jp-mod-selected.jp-mod-dropTarget {\n  border-top-color: var(--jp-private-notebook-selected-color);\n  border-top-style: solid;\n  border-top-width: 2px;\n}\n\n.jp-dragImage {\n  display: block;\n  flex-direction: row;\n  width: var(--jp-private-notebook-dragImage-width);\n  height: var(--jp-private-notebook-dragImage-height);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background);\n  overflow: visible;\n}\n\n.jp-dragImage-singlePrompt {\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n.jp-dragImage .jp-dragImage-content {\n  flex: 1 1 auto;\n  z-index: 2;\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  line-height: var(--jp-code-line-height);\n  padding: var(--jp-code-padding);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background-color);\n  color: var(--jp-content-font-color3);\n  text-align: left;\n  margin: 4px 4px 4px 0px;\n}\n\n.jp-dragImage .jp-dragImage-prompt {\n  flex: 0 0 auto;\n  min-width: 36px;\n  color: var(--jp-cell-inprompt-font-color);\n  padding: var(--jp-code-padding);\n  padding-left: 12px;\n  font-family: var(--jp-cell-prompt-font-family);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: 1.9;\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n}\n\n.jp-dragImage-multipleBack {\n  z-index: -1;\n  position: absolute;\n  height: 32px;\n  width: 300px;\n  top: 8px;\n  left: 8px;\n  background: var(--jp-layout-color2);\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n/*-----------------------------------------------------------------------------\n| Cell toolbar\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookTools {\n  display: block;\n  min-width: var(--jp-sidebar-min-width);\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n    * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  overflow: auto;\n}\n\n.jp-NotebookTools-tool {\n  padding: 0px 12px 0 12px;\n}\n\n.jp-ActiveCellTool {\n  padding: 12px;\n  background-color: var(--jp-layout-color1);\n  border-top: none !important;\n}\n\n.jp-ActiveCellTool .jp-InputArea-prompt {\n  flex: 0 0 auto;\n  padding-left: 0px;\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor {\n  flex: 1 1 auto;\n  background: var(--jp-cell-editor-background);\n  border-color: var(--jp-cell-editor-border-color);\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor .CodeMirror {\n  background: transparent;\n}\n\n.jp-MetadataEditorTool {\n  flex-direction: column;\n  padding: 12px 0px 12px 0px;\n}\n\n.jp-RankedPanel > :not(:first-child) {\n  margin-top: 12px;\n}\n\n.jp-KeySelector select.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n}\n\n.jp-KeySelector label,\n.jp-MetadataEditorTool label {\n  line-height: 1.4;\n}\n\n.jp-NotebookTools .jp-select-wrapper {\n  margin-top: 4px;\n  margin-bottom: 0px;\n}\n\n.jp-NotebookTools .jp-Collapse {\n  margin-top: 16px;\n}\n\n/*-----------------------------------------------------------------------------\n| Presentation Mode (.jp-mod-presentationMode)\n|----------------------------------------------------------------------------*/\n\n.jp-mod-presentationMode .jp-Notebook {\n  --jp-content-font-size1: var(--jp-content-presentation-font-size1);\n  --jp-code-font-size: var(--jp-code-presentation-font-size);\n}\n\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-InputPrompt,\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-OutputPrompt {\n  flex: 0 0 110px;\n}\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-Placeholder {\n  padding-left: 55px;\n}\n\n.jp-Cell-Placeholder-wrapper {\n  background: #fff;\n  border: 1px solid;\n  border-color: #e5e6e9 #dfe0e4 #d0d1d5;\n  border-radius: 4px;\n  -webkit-border-radius: 4px;\n  margin: 10px 15px;\n}\n\n.jp-Cell-Placeholder-wrapper-inner {\n  padding: 15px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body {\n  background-repeat: repeat;\n  background-size: 50% auto;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  background: #f6f7f8;\n  background-image: -webkit-linear-gradient(\n    left,\n    #f6f7f8 0%,\n    #edeef1 20%,\n    #f6f7f8 40%,\n    #f6f7f8 100%\n  );\n  background-repeat: no-repeat;\n  background-size: 800px 104px;\n  height: 104px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  position: absolute;\n  right: 15px;\n  left: 15px;\n  top: 15px;\n}\n\ndiv.jp-Cell-Placeholder-h1 {\n  top: 20px;\n  height: 20px;\n  left: 15px;\n  width: 150px;\n}\n\ndiv.jp-Cell-Placeholder-h2 {\n  left: 15px;\n  top: 50px;\n  height: 10px;\n  width: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-1,\ndiv.jp-Cell-Placeholder-content-2,\ndiv.jp-Cell-Placeholder-content-3 {\n  left: 15px;\n  right: 15px;\n  height: 10px;\n}\n\ndiv.jp-Cell-Placeholder-content-1 {\n  top: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-2 {\n  top: 120px;\n}\n\ndiv.jp-Cell-Placeholder-content-3 {\n  top: 140px;\n}\n\n</style>\n\n    <style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\nThe following CSS variables define the main, public API for styling JupyterLab.\nThese variables should be used by all plugins wherever possible. In other\nwords, plugins should not define custom colors, sizes, etc unless absolutely\nnecessary. This enables users to change the visual theme of JupyterLab\nby changing these variables.\n\nMany variables appear in an ordered sequence (0,1,2,3). These sequences\nare designed to work well together, so for example, `--jp-border-color1` should\nbe used with `--jp-layout-color1`. The numbers have the following meanings:\n\n* 0: super-primary, reserved for special emphasis\n* 1: primary, most important under normal situations\n* 2: secondary, next most important under normal situations\n* 3: tertiary, next most important under normal situations\n\nThroughout JupyterLab, we are mostly following principles from Google's\nMaterial Design when selecting colors. We are not, however, following\nall of MD as it is not optimized for dense, information rich UIs.\n*/\n\n:root {\n  /* Elevation\n   *\n   * We style box-shadows using Material Design's idea of elevation. These particular numbers are taken from here:\n   *\n   * https://github.com/material-components/material-components-web\n   * https://material-components-web.appspot.com/elevation.html\n   */\n\n  --jp-shadow-base-lightness: 0;\n  --jp-shadow-umbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.2\n  );\n  --jp-shadow-penumbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.14\n  );\n  --jp-shadow-ambient-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.12\n  );\n  --jp-elevation-z0: none;\n  --jp-elevation-z1: 0px 2px 1px -1px var(--jp-shadow-umbra-color),\n    0px 1px 1px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 3px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z2: 0px 3px 1px -2px var(--jp-shadow-umbra-color),\n    0px 2px 2px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 5px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z4: 0px 2px 4px -1px var(--jp-shadow-umbra-color),\n    0px 4px 5px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 10px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z6: 0px 3px 5px -1px var(--jp-shadow-umbra-color),\n    0px 6px 10px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 18px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z8: 0px 5px 5px -3px var(--jp-shadow-umbra-color),\n    0px 8px 10px 1px var(--jp-shadow-penumbra-color),\n    0px 3px 14px 2px var(--jp-shadow-ambient-color);\n  --jp-elevation-z12: 0px 7px 8px -4px var(--jp-shadow-umbra-color),\n    0px 12px 17px 2px var(--jp-shadow-penumbra-color),\n    0px 5px 22px 4px var(--jp-shadow-ambient-color);\n  --jp-elevation-z16: 0px 8px 10px -5px var(--jp-shadow-umbra-color),\n    0px 16px 24px 2px var(--jp-shadow-penumbra-color),\n    0px 6px 30px 5px var(--jp-shadow-ambient-color);\n  --jp-elevation-z20: 0px 10px 13px -6px var(--jp-shadow-umbra-color),\n    0px 20px 31px 3px var(--jp-shadow-penumbra-color),\n    0px 8px 38px 7px var(--jp-shadow-ambient-color);\n  --jp-elevation-z24: 0px 11px 15px -7px var(--jp-shadow-umbra-color),\n    0px 24px 38px 3px var(--jp-shadow-penumbra-color),\n    0px 9px 46px 8px var(--jp-shadow-ambient-color);\n\n  /* Borders\n   *\n   * The following variables, specify the visual styling of borders in JupyterLab.\n   */\n\n  --jp-border-width: 1px;\n  --jp-border-color0: var(--md-grey-400);\n  --jp-border-color1: var(--md-grey-400);\n  --jp-border-color2: var(--md-grey-300);\n  --jp-border-color3: var(--md-grey-200);\n  --jp-border-radius: 2px;\n\n  /* UI Fonts\n   *\n   * The UI font CSS variables are used for the typography all of the JupyterLab\n   * user interface elements that are not directly user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-ui-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-ui-font-scale-factor: 1.2;\n  --jp-ui-font-size0: 0.83333em;\n  --jp-ui-font-size1: 13px; /* Base font size */\n  --jp-ui-font-size2: 1.2em;\n  --jp-ui-font-size3: 1.44em;\n\n  --jp-ui-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica,\n    Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';\n\n  /*\n   * Use these font colors against the corresponding main layout colors.\n   * In a light theme, these go from dark to light.\n   */\n\n  /* Defaults use Material Design specification */\n  --jp-ui-font-color0: rgba(0, 0, 0, 1);\n  --jp-ui-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-ui-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-ui-font-color3: rgba(0, 0, 0, 0.38);\n\n  /*\n   * Use these against the brand/accent/warn/error colors.\n   * These will typically go from light to darker, in both a dark and light theme.\n   */\n\n  --jp-ui-inverse-font-color0: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color1: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color2: rgba(255, 255, 255, 0.7);\n  --jp-ui-inverse-font-color3: rgba(255, 255, 255, 0.5);\n\n  /* Content Fonts\n   *\n   * Content font variables are used for typography of user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-content-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-content-line-height: 1.6;\n  --jp-content-font-scale-factor: 1.2;\n  --jp-content-font-size0: 0.83333em;\n  --jp-content-font-size1: 14px; /* Base font size */\n  --jp-content-font-size2: 1.2em;\n  --jp-content-font-size3: 1.44em;\n  --jp-content-font-size4: 1.728em;\n  --jp-content-font-size5: 2.0736em;\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-content-presentation-font-size1: 17px;\n\n  --jp-content-heading-line-height: 1;\n  --jp-content-heading-margin-top: 1.2em;\n  --jp-content-heading-margin-bottom: 0.8em;\n  --jp-content-heading-font-weight: 500;\n\n  /* Defaults use Material Design specification */\n  --jp-content-font-color0: rgba(0, 0, 0, 1);\n  --jp-content-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-content-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-content-font-color3: rgba(0, 0, 0, 0.38);\n\n  --jp-content-link-color: var(--md-blue-700);\n\n  --jp-content-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',\n    Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',\n    'Segoe UI Symbol';\n\n  /*\n   * Code Fonts\n   *\n   * Code font variables are used for typography of code and other monospaces content.\n   */\n\n  --jp-code-font-size: 13px;\n  --jp-code-line-height: 1.3077; /* 17px for 13px base */\n  --jp-code-padding: 5px; /* 5px for 13px base, codemirror highlighting needs integer px value */\n  --jp-code-font-family-default: Menlo, Consolas, 'DejaVu Sans Mono', monospace;\n  --jp-code-font-family: var(--jp-code-font-family-default);\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-code-presentation-font-size: 16px;\n\n  /* may need to tweak cursor width if you change font size */\n  --jp-code-cursor-width0: 1.4px;\n  --jp-code-cursor-width1: 2px;\n  --jp-code-cursor-width2: 4px;\n\n  /* Layout\n   *\n   * The following are the main layout colors use in JupyterLab. In a light\n   * theme these would go from light to dark.\n   */\n\n  --jp-layout-color0: white;\n  --jp-layout-color1: white;\n  --jp-layout-color2: var(--md-grey-200);\n  --jp-layout-color3: var(--md-grey-400);\n  --jp-layout-color4: var(--md-grey-600);\n\n  /* Inverse Layout\n   *\n   * The following are the inverse layout colors use in JupyterLab. In a light\n   * theme these would go from dark to light.\n   */\n\n  --jp-inverse-layout-color0: #111111;\n  --jp-inverse-layout-color1: var(--md-grey-900);\n  --jp-inverse-layout-color2: var(--md-grey-800);\n  --jp-inverse-layout-color3: var(--md-grey-700);\n  --jp-inverse-layout-color4: var(--md-grey-600);\n\n  /* Brand/accent */\n\n  --jp-brand-color0: var(--md-blue-900);\n  --jp-brand-color1: var(--md-blue-700);\n  --jp-brand-color2: var(--md-blue-300);\n  --jp-brand-color3: var(--md-blue-100);\n  --jp-brand-color4: var(--md-blue-50);\n\n  --jp-accent-color0: var(--md-green-900);\n  --jp-accent-color1: var(--md-green-700);\n  --jp-accent-color2: var(--md-green-300);\n  --jp-accent-color3: var(--md-green-100);\n\n  /* State colors (warn, error, success, info) */\n\n  --jp-warn-color0: var(--md-orange-900);\n  --jp-warn-color1: var(--md-orange-700);\n  --jp-warn-color2: var(--md-orange-300);\n  --jp-warn-color3: var(--md-orange-100);\n\n  --jp-error-color0: var(--md-red-900);\n  --jp-error-color1: var(--md-red-700);\n  --jp-error-color2: var(--md-red-300);\n  --jp-error-color3: var(--md-red-100);\n\n  --jp-success-color0: var(--md-green-900);\n  --jp-success-color1: var(--md-green-700);\n  --jp-success-color2: var(--md-green-300);\n  --jp-success-color3: var(--md-green-100);\n\n  --jp-info-color0: var(--md-cyan-900);\n  --jp-info-color1: var(--md-cyan-700);\n  --jp-info-color2: var(--md-cyan-300);\n  --jp-info-color3: var(--md-cyan-100);\n\n  /* Cell specific styles */\n\n  --jp-cell-padding: 5px;\n\n  --jp-cell-collapser-width: 8px;\n  --jp-cell-collapser-min-height: 20px;\n  --jp-cell-collapser-not-active-hover-opacity: 0.6;\n\n  --jp-cell-editor-background: var(--md-grey-100);\n  --jp-cell-editor-border-color: var(--md-grey-300);\n  --jp-cell-editor-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-cell-editor-active-background: var(--jp-layout-color0);\n  --jp-cell-editor-active-border-color: var(--jp-brand-color1);\n\n  --jp-cell-prompt-width: 64px;\n  --jp-cell-prompt-font-family: var(--jp-code-font-family-default);\n  --jp-cell-prompt-letter-spacing: 0px;\n  --jp-cell-prompt-opacity: 1;\n  --jp-cell-prompt-not-active-opacity: 0.5;\n  --jp-cell-prompt-not-active-font-color: var(--md-grey-700);\n  /* A custom blend of MD grey and blue 600\n   * See https://meyerweb.com/eric/tools/color-blend/#546E7A:1E88E5:5:hex */\n  --jp-cell-inprompt-font-color: #307fc1;\n  /* A custom blend of MD grey and orange 600\n   * https://meyerweb.com/eric/tools/color-blend/#546E7A:F4511E:5:hex */\n  --jp-cell-outprompt-font-color: #bf5b3d;\n\n  /* Notebook specific styles */\n\n  --jp-notebook-padding: 10px;\n  --jp-notebook-select-background: var(--jp-layout-color1);\n  --jp-notebook-multiselected-color: var(--md-blue-50);\n\n  /* The scroll padding is calculated to fill enough space at the bottom of the\n  notebook to show one single-line cell (with appropriate padding) at the top\n  when the notebook is scrolled all the way to the bottom. We also subtract one\n  pixel so that no scrollbar appears if we have just one single-line cell in the\n  notebook. This padding is to enable a 'scroll past end' feature in a notebook.\n  */\n  --jp-notebook-scroll-padding: calc(\n    100% - var(--jp-code-font-size) * var(--jp-code-line-height) -\n      var(--jp-code-padding) - var(--jp-cell-padding) - 1px\n  );\n\n  /* Rendermime styles */\n\n  --jp-rendermime-error-background: #fdd;\n  --jp-rendermime-table-row-background: var(--md-grey-100);\n  --jp-rendermime-table-row-hover-background: var(--md-light-blue-50);\n\n  /* Dialog specific styles */\n\n  --jp-dialog-background: rgba(0, 0, 0, 0.25);\n\n  /* Console specific styles */\n\n  --jp-console-padding: 10px;\n\n  /* Toolbar specific styles */\n\n  --jp-toolbar-border-color: var(--jp-border-color1);\n  --jp-toolbar-micro-height: 8px;\n  --jp-toolbar-background: var(--jp-layout-color1);\n  --jp-toolbar-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.24);\n  --jp-toolbar-header-margin: 4px 4px 0px 4px;\n  --jp-toolbar-active-background: var(--md-grey-300);\n\n  /* Statusbar specific styles */\n\n  --jp-statusbar-height: 24px;\n\n  /* Input field styles */\n\n  --jp-input-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-input-active-background: var(--jp-layout-color1);\n  --jp-input-hover-background: var(--jp-layout-color1);\n  --jp-input-background: var(--md-grey-100);\n  --jp-input-border-color: var(--jp-border-color1);\n  --jp-input-active-border-color: var(--jp-brand-color1);\n  --jp-input-active-box-shadow-color: rgba(19, 124, 189, 0.3);\n\n  /* General editor styles */\n\n  --jp-editor-selected-background: #d9d9d9;\n  --jp-editor-selected-focused-background: #d7d4f0;\n  --jp-editor-cursor-color: var(--jp-ui-font-color0);\n\n  /* Code mirror specific styles */\n\n  --jp-mirror-editor-keyword-color: #008000;\n  --jp-mirror-editor-atom-color: #88f;\n  --jp-mirror-editor-number-color: #080;\n  --jp-mirror-editor-def-color: #00f;\n  --jp-mirror-editor-variable-color: var(--md-grey-900);\n  --jp-mirror-editor-variable-2-color: #05a;\n  --jp-mirror-editor-variable-3-color: #085;\n  --jp-mirror-editor-punctuation-color: #05a;\n  --jp-mirror-editor-property-color: #05a;\n  --jp-mirror-editor-operator-color: #aa22ff;\n  --jp-mirror-editor-comment-color: #408080;\n  --jp-mirror-editor-string-color: #ba2121;\n  --jp-mirror-editor-string-2-color: #708;\n  --jp-mirror-editor-meta-color: #aa22ff;\n  --jp-mirror-editor-qualifier-color: #555;\n  --jp-mirror-editor-builtin-color: #008000;\n  --jp-mirror-editor-bracket-color: #997;\n  --jp-mirror-editor-tag-color: #170;\n  --jp-mirror-editor-attribute-color: #00c;\n  --jp-mirror-editor-header-color: blue;\n  --jp-mirror-editor-quote-color: #090;\n  --jp-mirror-editor-link-color: #00c;\n  --jp-mirror-editor-error-color: #f00;\n  --jp-mirror-editor-hr-color: #999;\n\n  /* Vega extension styles */\n\n  --jp-vega-background: white;\n\n  /* Sidebar-related styles */\n\n  --jp-sidebar-min-width: 250px;\n\n  /* Search-related styles */\n\n  --jp-search-toggle-off-opacity: 0.5;\n  --jp-search-toggle-hover-opacity: 0.8;\n  --jp-search-toggle-on-opacity: 1;\n  --jp-search-selected-match-background-color: rgb(245, 200, 0);\n  --jp-search-selected-match-color: black;\n  --jp-search-unselected-match-background-color: var(\n    --jp-inverse-layout-color0\n  );\n  --jp-search-unselected-match-color: var(--jp-ui-inverse-font-color0);\n\n  /* Icon colors that work well with light or dark backgrounds */\n  --jp-icon-contrast-color0: var(--md-purple-600);\n  --jp-icon-contrast-color1: var(--md-green-600);\n  --jp-icon-contrast-color2: var(--md-pink-600);\n  --jp-icon-contrast-color3: var(--md-blue-600);\n}\n</style>\n\n<style type=\"text/css\">\n/* Force rendering true colors when outputing to pdf */\n* {\n  -webkit-print-color-adjust: exact;\n}\n\n/* Misc */\na.anchor-link {\n  display: none;\n}\n\n.highlight  {\n  margin: 0.4em;\n}\n\n/* Input area styling */\n.jp-InputArea {\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  overflow: hidden;\n}\n\n.CodeMirror pre {\n  margin: 0;\n  padding: 0;\n}\n\n/* Using table instead of flexbox so that we can use break-inside property */\n/* CSS rules under this comment should not be required anymore after we move to the JupyterLab 4.0 CSS */\n\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  min-width: calc(\n    var(--jp-cell-prompt-width) - var(--jp-private-cell-scrolling-output-offset)\n  );\n}\n\n.jp-OutputArea-child {\n  display: table;\n  width: 100%;\n}\n\n.jp-OutputPrompt {\n  display: table-cell;\n  vertical-align: top;\n  min-width: var(--jp-cell-prompt-width);\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  display: table-row;\n}\n\n.jp-OutputArea-output {\n  display: table-cell;\n  width: 100%;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  display: table-row;\n}\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  width: 100%;\n}\n\n/* Hiding the collapser by default */\n.jp-Collapser {\n  display: none;\n}\n\n@media print {\n  .jp-Cell-inputWrapper,\n  .jp-Cell-outputWrapper {\n    display: block;\n  }\n\n  .jp-OutputArea-child {\n    break-inside: avoid-page;\n  }\n}\n</style>\n\n<!-- Load mathjax -->\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/latest.js?config=TeX-AMS_CHTML-full,Safe\"> </script>\n    <!-- MathJax configuration -->\n    <script type=\"text/x-mathjax-config\">\n    init_mathjax = function() {\n        if (window.MathJax) {\n        // MathJax loaded\n            MathJax.Hub.Config({\n                TeX: {\n                    equationNumbers: {\n                    autoNumber: \"AMS\",\n                    useLabelIds: true\n                    }\n                },\n                tex2jax: {\n                    inlineMath: [ ['$','$'], [\"\\\\(\",\"\\\\)\"] ],\n                    displayMath: [ ['$$','$$'], [\"\\\\[\",\"\\\\]\"] ],\n                    processEscapes: true,\n                    processEnvironments: true\n                },\n                displayAlign: 'center',\n                CommonHTML: {\n                    linebreaks: {\n                    automatic: true\n                    }\n                }\n            });\n\n            MathJax.Hub.Queue([\"Typeset\", MathJax.Hub]);\n        }\n    }\n    init_mathjax();\n    </script>\n    <!-- End of mathjax configuration --></head>\n<body class=\"jp-Notebook\" data-jp-theme-light=\"true\" data-jp-theme-name=\"JupyterLab Light\">\n<div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[1]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">ImportQualifiedPost</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">FlexibleContexts</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">BlockArguments</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">TupleSections</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">FlexibleContexts</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">OverloadedStrings</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">LambdaCase</span><span class=\"w\"></span>\n\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Class</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Enumerator</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Weighted</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Sampler.Strict</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Density.Free</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Population</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Sequential.Coroutine</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Inference.SMC</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Inference.RMSMC</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Inference.PMMH</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Inference.MCMC</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Data.Text</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">T</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Numeric.Log</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Arrow</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">first</span><span class=\"p\">,</span><span class=\"nf\">second</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Applicative</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Class</span><span class=\"w\"> </span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Traced</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Weighted</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Graphics.Vega.VegaLite</span><span class=\"w\"> </span><span class=\"k\">hiding</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">density</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Graphics.Vega.VegaLite</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">VL</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">IHaskell.Display.Hvega</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">vlShow</span><span class=\"p\">)</span><span class=\"w\"></span>\n\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Pipes.Prelude</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">P</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Pipes</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">P</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Pipes</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Producer</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">&gt;-&gt;</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"kt\">MonadTrans</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">lift</span><span class=\"p\">))</span><span class=\"w\"></span>\n\n<span class=\"kt\">:</span><span class=\"n\">l</span><span class=\"w\"> </span><span class=\"o\">../</span><span class=\"n\">plotting</span><span class=\"o\">.</span><span class=\"n\">hs</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Combining-SMC-and-MCMC\">Combining SMC and MCMC<a class=\"anchor-link\" href=\"#Combining-SMC-and-MCMC\">&#182;</a></h1><p>Monad-bayes offers several more advanced inference methods, which are modular combinations of <code>SMC</code> and <code>MCMC</code>.</p>\n<p><code>Sampling</code>, <code>MCMC</code> and <code>SMC</code> notebooks describe those methods in more detail.</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h2 id=\"Resample-Move-Sequential-Monte-Carlo-(RMSMC)\">Resample Move Sequential Monte Carlo (RMSMC)<a class=\"anchor-link\" href=\"#Resample-Move-Sequential-Monte-Carlo-(RMSMC)\">&#182;</a></h2><p>RMSMC is fundamentally an SMC technique. It creates and updates a population of weighted samples. The clever part is that after resampling, the update step uses MCMC to perform a walk on each particle, which updates the population efficiently.</p>\n<p>To motivate this more sophisticated inference method, let's pick a relatively hard inference problem: inferring the position of a moving point mass from measurements of its bearings.</p>\n<p>Here it is in practice:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[2]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- calculate the bearing (the angle) of a point</span><span class=\"w\"></span>\n<span class=\"nf\">bearing</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">atan2</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"></span>\n\n<span class=\"nf\">prior</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">Producer</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"kt\">Double</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"nb\">()</span><span class=\"w\"></span>\n<span class=\"nf\">prior</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"kr\">let</span><span class=\"w\"> </span><span class=\"n\">velocity_var</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mf\">1e-5</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">initialPosition</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">lift</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">liftA2</span><span class=\"w\"> </span><span class=\"p\">(,)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mf\">0.01</span><span class=\"w\"> </span><span class=\"mf\">0.01</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mf\">0.95</span><span class=\"w\"> </span><span class=\"mf\">0.01</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">initialVelocity</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">lift</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">liftA2</span><span class=\"w\"> </span><span class=\"p\">(,)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mf\">0.002</span><span class=\"w\"> </span><span class=\"mf\">0.01</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">-</span><span class=\"mf\">0.013</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"mf\">0.01</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"c1\">-- step is performed for a unit of time</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"kr\">let</span><span class=\"w\"> </span><span class=\"n\">step</span><span class=\"w\"> </span><span class=\"p\">((</span><span class=\"n\">qx</span><span class=\"p\">,</span><span class=\"n\">qy</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">vx</span><span class=\"p\">,</span><span class=\"n\">vy</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">vxNew</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"n\">vx</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">sqrt</span><span class=\"w\"> </span><span class=\"n\">velocity_var</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">vyNew</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"n\">vy</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">sqrt</span><span class=\"w\"> </span><span class=\"n\">velocity_var</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">((</span><span class=\"n\">qx</span><span class=\"w\"> </span><span class=\"o\">+</span><span class=\"w\"> </span><span class=\"n\">vx</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">qy</span><span class=\"w\"> </span><span class=\"o\">+</span><span class=\"w\"> </span><span class=\"n\">vy</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">vxNew</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">vyNew</span><span class=\"p\">))</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">unfoldr</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kt\">Right</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">dup</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">step</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">initialPosition</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">initialVelocity</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&gt;-&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">map</span><span class=\"w\"> </span><span class=\"n\">fst</span><span class=\"w\"></span>\n<span class=\"w\">    </span>\n<span class=\"w\">    </span><span class=\"kr\">where</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"n\">dup</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Monad</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"n\">b</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">b</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">b</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">dup</span><span class=\"w\"> </span><span class=\"n\">mx</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">mx</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"n\">x</span><span class=\"p\">)</span><span class=\"w\"></span>\n\n<span class=\"nf\">measurementNoise</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mf\">0.005</span><span class=\"w\"></span>\n\n<span class=\"c1\">-- observationModel :: MonadDistribution m =&gt; P.Pipe (Double, Double) Double m ()</span><span class=\"w\"></span>\n<span class=\"nf\">observationModel</span><span class=\"w\"> </span><span class=\"n\">position</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">bearing</span><span class=\"w\"> </span><span class=\"n\">position</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">measurementNoise</span><span class=\"w\"></span>\n\n\n<span class=\"nf\">numPoints</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">40</span><span class=\"w\"></span>\n\n<span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadMeasure</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Double</span><span class=\"p\">]</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kt\">Producer</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"nb\">()</span><span class=\"w\"></span>\n<span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"n\">observations</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">zipWithM</span><span class=\"w\"> </span><span class=\"n\">likelihood</span><span class=\"w\"> </span><span class=\"n\">prior</span><span class=\"w\"> </span><span class=\"n\">observationStream</span><span class=\"w\"></span>\n<span class=\"w\">  </span><span class=\"kr\">where</span><span class=\"w\">  </span>\n<span class=\"w\">    </span><span class=\"n\">observationStream</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">each</span><span class=\"w\"> </span><span class=\"n\">observations</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">measurement_noise</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mf\">0.005</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">likelihood</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">pos</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">obs</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">o</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">observationModel</span><span class=\"w\"> </span><span class=\"n\">pos</span><span class=\"w\"> </span>\n<span class=\"w\">        </span><span class=\"n\">factor</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">normalPdf</span><span class=\"w\"> </span><span class=\"n\">o</span><span class=\"w\"> </span><span class=\"n\">measurement_noise</span><span class=\"w\"> </span><span class=\"n\">obs</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">zipWithM</span><span class=\"w\"> </span><span class=\"n\">f</span><span class=\"w\"> </span><span class=\"n\">p1</span><span class=\"w\"> </span><span class=\"n\">p2</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">p1</span><span class=\"w\"> </span><span class=\"n\">p2</span><span class=\"w\"> </span><span class=\"o\">&gt;-&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">chain</span><span class=\"w\"> </span><span class=\"n\">f</span><span class=\"w\"> </span><span class=\"o\">&gt;-&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">map</span><span class=\"w\"> </span><span class=\"n\">fst</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[3]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">positions</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">toListM</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">prior</span><span class=\"w\"> </span><span class=\"o\">&gt;-&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">take</span><span class=\"w\"> </span><span class=\"n\">numPoints</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[4]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"w\"> </span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">positions</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">Prelude</span><span class=\"o\">.</span><span class=\"n\">repeat</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"s\">&quot;prior&quot;</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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teLkZCRAAiRAAiRgTQK2N/zXX3/d+Hmf2tTv+n/yk584kN6/f7/xd7W1tRIZGWk88rdbt25wNdy9L2DXrl3y8MMPS3h4uBQXF8sLL7xg/ErBX5u7+B5//HH5+uuz7yNQbNTPJd9//31/hSfu4lPvW1Axqp9rlpaWGjVWz27w1+Yuvr/97W/y97//3egptd1zzz2NT470R4zu4muIYevWrcYDrtT4sDD/PXbaXXw7duwQ9QAudcNuZWWl/PWvfzUexe2vzV18Bw8elB//+Mei+lDFpx4MZqXjV3FSTzFV7xh57733JCYmxufo3DEz+44UbwJ2F4OaU/X8Aw88IPfdd59fj0lv8vG3xtaGr4xUPbd/9erV0qVLFxk3bpx88MEH0q9fv0aO6glL119/vfEsf7VI79u3T37961/DnN29L0AtZuqnhmlpacZzB/79738bP0/01+YuvqZx/OEPfzA+BKkFzl+bu/jeeust+fzzz+WPf/yj8ZKlQ4cOGU9n9NfmLr4nn3xSRowYIbfeequ/QnLYj7v4Gj7I3XjjjaLMVb2rQn2o89fmLr45c+bINddcYxwjy5YtMx6trT6M+2tzF99TTz1lfMBU68bbb79tPDdEvf/DX5u7+L744guD2cqVK/32YcRdTGbfkeINS3cxqAe/qQ/fygPUB8hp06Z5s5t2q7G14f/3v/8VdYavjFxt6iE/l1xyidx8882NBZs4caL85S9/MR7b+8033xgv8/nss8+ggnryvoDnnntO1M8O1XsD1FMG1SOHn376aWi/noo9ia9hLnUmc/fdd8tHH33k9ueRnu7f3ThP4rv33nuNOh49elR69+5tfGjz1+ZJfA899JBceOGFxlmzOrtST4v01+ZJfCqWZ555xlj01Ac6tRj7y/A9ja+Bl7r6pZ7JYcXjQ8X46quvGmeNv//97/1SYjP81EPLFixY4POrD57EZPYdKWZhehJDw5yq99W6QcN3pGwbw588ebJD5OqhPursYM2aNfL8888b/6aKrD7ZqUs5Ddsvf/lLOXPmjDz66KPy4osvGp+KN27c6HGv/b//9/9k8+bNDuPV72LVi39ae1+AMlJlUn379hX1Z3XGqj506N68ja8hjkceecQ4c77qqqt0h2bM52186jJ0jx495M477zSujgwaNEjUWZfuzdv41OOh1dUiteCqD53qg6X6wKl78zY+1ePquPjnP/9pXPnyleF7G5/itGXLFrn99tulc+fO8vHHH7f4aG2EKRKf2u/atWuNr+bU5fOWXu7VlvH5y/DRd6QgjBq0nsRAw2+dtG0Mv6KiwiETtUioy1nqEb7q+z+1qe981WN9m76KV13iUZeFt23bZrymV12WU6bv6ab0dXV1Tvt2974AFcOMGTOMrxzUlQV1RqiuSOjevI1PxaG+mxw5cqSx8Cqevti8jU/dj6E+uKmanTx5Ui677DLje2jdm7fxNY1DPS1ywoQJRp11b97Gp46Dxx57zDjLUV8vqbPoa6+9VvtVHG/ja8pJXS5XV+mUqerekPhUXOrqnPpAp17A4osNiU/F4y/D98U7Uszy9CQGGn47MXxXaRw/ftxoeHWmrQxLXc7/z3/+IwMGDDDO6tUNVV9++aV0795dzj//fOPgVR8c1EKIbq7eF6C+z23Yr4pLXdYfNWqUqBv41L+pswV/be7iU3Gosyp1BujPewsa8ncX35/+9CdjqDq7Ukav/uuLD0wt1cNdfOpDpLrqNHjwYOMeA3UFySrxqUv3DfxUfipWZfqq79091VJXf7rjp76yUY/fHj58uPEq7aZXzHTF0No87uJT9wWpq4Pq+/vWnhbqq1jdxdewX38Zvtqfu5jU/VNm3pHiDTt372lp6G9e0ndN1zZn+C01hzJxZfLqpj11aVpdVj18+LDxZL7t27cbNyupmzjUd5nqbvQlS5YYd86jm6v3BagPIA37XbVqlTzxxBOSkJBgfP/3f//3f8YZlr82d/GpOF566SWDlb++O22au7v41AcndblXLbbqfeXz5s2Tiy++2F/4jFc0N38fRNP6qnseVH3PO+882b17t3Hj1OjRoy0TX9NAfHlJv6WE3fFTV+fUsaruf/j222+NHvTnTZnu4lNfx+3du7fxawZVZ/WrDH9t7uJTH9TVTY7qqxv1VaFaZ9S9Br7c3MWkroSaeUeKN7G6e0+Luhqorqbu2bPHeH+Lem+L+hCi45dZ3sRrNY3tDV8Bra6uNriqArvalNGrM3sdRt98fnfvCzh9+rR07drVb2dWZuNr64Z0x0/9JE/dGOevM1Mz/NTPkNQvRdpyMXHHz+r15fHReoWsWF93MXn6jhSkN93FgMzdnrXtwvDbc4GYGwmQAAmQAAnoIEDD10GRc5AACZAACZCAxQnQ8C1eIIZHAiRAAiRAAjoI0PB1UOQcJEACJEACJGBxAjR8ixeI4ZEACZAACZCADgI0fB0UOQcJkAAJkAAJWJwADd/iBWJ4JOCKgHp++pEjR4zHDauHTqnnFqgHxahnFdxyyy2ERgIkQAJOBGj4bAoSsCEB9QAS9bhh9eAp9RQ99Rhn9WAY9d4H9fQ/biRAAiTQnAANnz1BAjYloB7nq562ph6NrN4sqF6Wo4yfGwmQAAm4IkDDZ1+QgE0JqKdHqlf0qhdDJSUlGe+N8NVLkGyKiGGTAAk0IUDDZzuQgE0JqLeHjRkzxriMf+mll4p6f0NbPYLYpggZNgl0KAI0/A5Vbibbngg8+eSTxmtv1YuF1KuE//KXv8j999/fnlJkLiRAAhoJ0PA1wuRUJOAvAhs2bJCxY8eKeg3o448/brwRUr3KVb2ZMSoqyl9hcD8kQAI2IkDDt1GxGCoJKAI1NTXGd/bqbX15eXnGq6FPnDgh8fHxMmHCBON10dxIgARIoDkBGj57ggRIgARIgAQ6AAEafgcoMlMkARIgARIgARo+e4AESIAESIAEOgABGn4HKDJTJAESIAESIAEaPnuABEiABEiABDoAARp+BygyUyQBEiABEiCB/w85LLpW54M+IgAAAABJRU5ErkJggg==\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[5]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">observations</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">mapM</span><span class=\"w\"> </span><span class=\"n\">observationModel</span><span class=\"w\"> </span><span class=\"n\">positions</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[6]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">sMCMC</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">unweighted</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">mcmc</span><span class=\"w\"> </span><span class=\"kt\">MCMCConfig</span><span class=\"w\"> </span><span class=\"p\">{</span><span class=\"n\">numMCMCSteps</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">10000</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">numBurnIn</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">1000</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">proposal</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">SingleSiteMH</span><span class=\"p\">}</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">toListM</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"> </span><span class=\"n\">observations</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre></pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>MCMC inference arrived returned a path which is divergent in the begining (starting at point (0,0.95)) from prior path.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[7]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"></span>\n<span class=\"w\">  </span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">positions</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Prelude</span><span class=\"o\">.</span><span class=\"n\">repeat</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"s\">&quot;prior&quot;</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\">  </span>\n<span class=\"w\">  </span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">head</span><span class=\"w\"> </span><span class=\"n\">sMCMC</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Prelude</span><span class=\"o\">.</span><span class=\"n\">repeat</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"s\">&quot;inferred: MCMC&quot;</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[8]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">sSMC</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">runPopulation</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">smc</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"kt\">SMCConfig</span><span class=\"w\"> </span><span class=\"p\">{</span><span class=\"n\">numSteps</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">numPoints</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">numParticles</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">10000</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">resampler</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">resampleSystematic</span><span class=\"p\">}</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">toListM</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"> </span><span class=\"n\">observations</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre></pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>SMC on the ther hand provided many paths close to the prior at the path's beginning and diverging as the path progresses.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[9]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">a</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"n\">d</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Prelude</span><span class=\"o\">.</span><span class=\"n\">repeat</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"s\">&quot;inferred: SMC&quot;</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"o\">=&lt;&lt;</span><span class=\"w\"> </span><span class=\"n\">sSMC</span><span class=\"w\"></span>\n\n<span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">positions</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Prelude</span><span class=\"o\">.</span><span class=\"n\">repeat</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"s\">&quot;prior&quot;</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">take</span><span class=\"w\"> </span><span class=\"mi\">10000</span><span class=\"w\"> </span><span class=\"n\">a</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAiUAAAG/CAYAAACHeKdTAAAAAXNSR0IArs4c6QAAIABJREFUeF7snQt8FNX593+zmwtXFQQRhVZAEEWxVRG14gWtFwwBhRCttfp/q62KVUQUAmJRhIC21YIWa8ULFTUYromgiFdAi4KgKIKiqAhKAAUChCS7O+/nTEjIZnPZ2edscnbym/fzf4vk/Gae832emfw4c+Ycy7ZtGzxIgARIgARIgARIoIEJWDQlDZwBXp4ESIAESIAESMAhQFPCQiABEiABEiABEjCCAE2JEWlgECRAAiRAAiRAAjQlrAESIAESIAESIAEjCNCUGJEGBkECJEACJEACJEBTwhogARIgARIgARIwgkBcTEkwGMTf/vY3zJ49Gx988EFER9VXyCNHjsTq1asRCAQwadIk9O7d2wggDIIESIAESIAESKBhCMTFlDz++OM4+uijcccdd+D777+P6NmSJUvw7LPP4vnnn8eWLVuQnp6OVatWNQwBXpUESIAESIAESMAIAnExJeU969ChQ7Wm5L777sMJJ5yAa6+91ml6xhlnYPHixWjdurURUBgECZAACZAACZBA/RNoEFNy6623ol+/fkhLS3N6fPHFF2PatGno2rUrli1bhuXLl4eRaNu2LS644IL6p8MrkgAJkAAJJDQBNV2gS5cuCd2HxhR8g5iSMWPG4OSTT8Y111zjsD7zzDOxaNEiHHnkkdWynzx5sjMHxdTj66+/RufOnU0ND4xPlhryIz8ZAZma9WcOP2VwcnNz8dprr6GwsBDHH388brrpJhx33HF1Brl7927s27cPxxxzDN577z307dsXeXl5aN68ecWff/vb39Z5Hq83qFdTopLYokULLFy4EPPnz8eTTz6JHTt2OCMla9asqZE1TYmsDPlQIz8ZAZma9Ud+MgIytc76UwbkqaeewkUXXYRf/OIXePXVVx1z8vrrr+Oss86qNdBhw4Zh7969jl69EejTp4/zj3H1FkDNvVRmpVmzZrLOekAdF1Ny1113ORNX33//fZx99tm48sornUmv3bt3h5rkquBff/312LVrl2NKJk6ciAsvvJCmJE4FpfOmjEeIjE9GlfzIT0ZApm4s9bdixQrHeIwaNQrZ2dkOtIKCApx00knOiMn//vc/ZGZmOr/fHnnkEcesKOMxfPhwfPPNN3jooYeQmpqKq6++2nlLUG5K1EchN9xwA/71r3/hnHPOcT4CmTJlimNghgwZggceeMC51umnn+5oc3JyoOZlDhw4UJY4Q9VxMSXR9rWoqAhNmjSBZVm1SjhSEi3R6ts1loeGjFLNavKTkSU/8pMRkKl11Z8yGspgbNy4MWyOyo033oinn37aeTWj/hGuXuXMmzfP+Ud3q1at8PDDDyMjI8P5mZqqoP5727ZtFaZEvT0oNyiqvTI+zz33nNNW/fmxxx7D73//eyQlJUHNr1TTHy677DLHCHnxaFBTEi1QmpJoSdGUyEiRH/nFg4DsnLp+qcqioGlXIxZ//etf8eOPP6Jdu3YVQO688048+uijUHNGzjvvvGpNyYgRI5y/V1MVqr6+qWxKVq5cibFjx+KWW25BSkqKM39FzT2ZMWOGY0rUG4bp06fHK5VGnJemREMa+NCQQSQ/8pMRkKlZf+QXDYFZs2Y5r2fmzJnjTEkoP37zm9/gu+++w+bNm/HrX/8aaikMNYFVmZf27ds7IyPRmhI15UGZHzU6ol71qKNjx4649NJLHVOizqMWG/XyQVOiIbt8qMkgkh/5yQjI1Kw/8ouGQHFxsfPVqJp2oOZ8qJGPF1980Vm9/B//+AfUiMkll1yCdevWOSuZq1cwo0ePrjAl6rNkNf9kwYIFzrIX5a9sKo+UqNXQ1VIZytSoUZX777/f+V81sZamJJos1VMbvr6RgeZDl/xkBGRq1h/5yQjI1Drr7/PPP3derbz77rtQnwerOR533323M4Kh5ka+8sorzvyRkpISZ8Rj3LhxzisfNQ/kT3/6E/7zn/84r2OU2ajOlKi5In/5y1+cL1N9Ph9OPfVUZ2RGTZ6lKZHVgVY1TYkMp86bUhZJ9WrGJ6NKfuQnIyBTN8b6U5Na1YiJWlur6ocaypCoUZWWLVtGgN2zZw8OO+ywOoGXlpY6X9+oia+N7eDrGw0Zb4w3pQZsFacgPxlN8iM/GQGZmvUn40d1OAGaEg0VwZtSBpH8yE9GQKZm/ZGfjADVOgnQlGigyYeaDCL5kZ+MgEzN+iM/GQGqdRKgKdFAkw81GUTyIz8ZAZma9Ud+MgJU6yRAU6KBJh9qMojkR34yAjI164/8ZASo1kmApkQDTT7UZBDJj/xkBGRq1h/5yQhQrZMATYkGmnyoySCSH/nJCMjUrD/ykxGgWicBmhINNPlQk0EkP/KTEZCpWX/k55bAJ18XYNWGH7C5YI8j7XjUYTj9hPbo2fmoqE/14Ycf4rTTToPf769Wo9ZCUYu1qTZqITXdh9rVWG34Z9pBU6IhI3yoySCSH/nJCMjUrD/yc0Pg9ZWb8P5n31crObtHB/z2jE7V/uzBBx90TIDaUO+f//wn/v3vf+Oee+6p2OOmqkjtd6OWpX/ooYeQnJzsJsSo2qpl8r/55psa26ql8xcuXIgmTZo4Ox7fddddzp4/anNAtbT+qlWrKuJS+/ycc845+O9//wu1F9AXX3zhrHK7Y8cOqIXglLFSmhUrVkCZIbWwXKdOnZCenh5xfZqSqNJXeyM+1GQQyY/8ZARkatZf7Pzsol34cdlzaNMkAKvJ4fB3Og9Wm26xnzAOSp35VSMk85ZuqDXKgX1OqHbE5L777sOFF17o/HJ+6aWX8MknnzgmRf0Cb9OmDdauXessT6/MiNo/R+2jo5abV0vPK1OwdOlSZwVZtTy9OtQoivrlrnTql35hYaFjMs4880w0bdoUb775JgKBgLOsvfpvdXz55Zf49NNPnXOcccYZTnt1LbVyrNo8sPxQzIYMGQI1mqNWrN2+fTtGjhyJp59+2tks8F//+heUybrqqqscidp0UO1+/Pjjj+Pss8/Gr371Kzz77LOOQVHHxIkTceDAAVxwwQV45513oPb76d69O/r3709TEoeah86iZ3zxICA7J/NLfjICMrXJ9VfyxgPYt/kTNGvWrKyTviSkpD3iGBRTDp38nln0ccUrm5r6p17l/N/lp0b8WMXRunVrxwioPW1OOeUUZ9Tg3nvvxcaNG3HNNddg3rx56N27N84991wMHDjQGSVRv8jVL3+1x44yMrt373aMwR133IH169c7v9iPPfZYZ58dpbntttucc6k/q7woI/H2229jw4YN+P3vf4+xY8c6ZuOFF17At99+64zaqI0G1aZ/5YcyIcq0qL16lJGqPFKjrq12RFZmRm0cqA5lck488UTHyCgDpfYAeuaZZyIYqJ/99NNPzj4+zZs3d0xW1YMjJRruHJ1FryGcam+Gzp07x+PUWs5JfjKM5Ed+MgIxqot+RnHeHdi/f/8hUwIg+Zy/wNehV4wn1S/TeX888NzSqAK87/qy0YzaDmUEyk1Jjx49cNNNNzmjCMoIPP/88zj++OMd06Feo6hRkD/+8Y/O6c4//3zHxCiTotooE6LMjNLk5uY6OxSrDQDVedQxfPhwZ5M/tTOx2nfn9ttvd0Y+fv3rX+P776t/DaV06vXMI4884sSodjhW11M7FitTokzF7NmznZ2Q1TnUKx11KCO0Zs0aZ1REma1YDpqSWKhV0egseg3h0JRohsj8yoCSn0f5Ff2E4rxhkabk7Nvg63imrNMa1TrrL16mRI2MDB482DEAjz76qPN6p9yUZGVl4bPPPnPml5Qf6lWQ+r9ynTIlS5YscQyDGqUYNWqU8xqo/Lj22msd06Jeq1x33XUIBoNQc0rUiEc0h5oLouaTfPTRR47xUaZEvTr67rvvnHPceOONzoiMMiVbt251zJWaO1P5UNesaVJv5XY0JdFkpI42OoteQzg0JZohMr8yoOTnXX6lr9+HvVvWhY2UOK9vmkUOy8soxK7WWX+S1zdVe1B5pKQ2U6JGI9TISHZ2NmzbxrvvvuuMlgwbNqxaU6La/uEPf8B7773nXFIZCvW66IknnnBGXNTrG/UaqF+/fs4oRygUcuaNVN7tWBkbNVdFmRt1qDY9e/ZEfn6+83/KlNxwww24/PLLnS+D3njjDWfERpkSZXxUWzVJVv1ZHcoQLVu2zImhroOmpC5CUfxcZ9FHcTnXTRifa2RhAvIjPxkBmdrk+rMLf0TB8ufQKqUEVurh8Hc+H772kfMpZARkap38JBNdYzUlarJqZmYmDj/8cKivXNQcDzV6UpMpUddRoyhqVEPN21CGQo287Ny50zERai6Lmmj66quvOmbn5ptvdsyNmm9Sfuzdu9cZ/di2bRuOOeYYZ+6JmruiJruWv75RuqFDh6Jr165OLOWmRL3iUZNy1ZwXFbOK/+ijj3Ym7aoJtXUdNCV1EYri5zqLPorLuW7C+FwjoymRISO/RspvYFYOQpYfHY9tg8eHXqCRQuyn0v38i/WT4Nh7UKZUc3fU64/U1NSoTqU+xS0uLnYMSOWj6hyg2k6mDIUaXYnGTFR3HqVV8aakpEQVs2pEUxI1qpob6i56DSHxl4JGiMyvDCb5eZ/f3U+tRokdONRRG/DDh3mTMmSd16COR/3pWDxNQ9c8eQqaEg1pjUfRawir4hSMT0aT/MhPRkCmToT6u336h7BC4f20YWPBbcfDd+wZMgBCten8hN3znJymRENKTS96xidLMvmRn4yATJ0I9TfsyZWwLbtKRy3MHVKCpF8fmqsgIxGb2nR+sfXKuyqaEg25Nb3oGZ8syeRHfjICMnUi1N+w/3yIqpZE9XpuRgmSTrtOBkCoNp2fsHuek9OUaEip6UXP+GRJJj/ykxGQqROh/u6csRrBAwFYVllflUHxIYR5Q7vC18F7r29C3y5H8Ks3EdrxpdNfX5uu8HfpC98vy5ZV13XUtWmfruuYdB6aEg3ZSISHBld0jT3RzG/s7JSS/BoPv7Ss2UhJKkXoyG2YM+BX8HU6X9Z5DWrd9Rf8+EUENiyqNrKkEy6H/9Rrqv1Z1Q35jjqq7h2Fx48fX+umfeUXUp/wXn311c4aJPPnz3f2mknUg6ZEQ+Z0F72GkMJOwfhkRMmP/GQEZOpEq7/0US8j5AuVDZcAaGL5kTtxsAyCQK2TnxohKV3x71qjSe7952pHTKpuyKeWY1fLy6s1PdQy7moxNbUuSOWN9dQCZmrTPvUpsNq7Ri16pjayU2uNqE9+V69e7Wy2pxYzu+WWW5yN8dSaJH//+98FxBpWSlOigb/OotcQTsQpGJ+MKvmRn4yATJ1I9Zee9RJsHHyHU6nbedmZMggCtU5+pW+Or3hlU1NI6lVOct+x1T6HK2/Ip0yIMhxqF1+1v82UKVNQUFBQsbGe2q9Gbcanlp5XK6ZOmzbNWehMrY56xRVXOKunnn766c5y8n/+85+dRdK6deuGH374wVnQLFEPmhINmdNZ9BrCoSnRDJH5lQElv8bDL330S7Bt75qS4ll/iCqZqUPKNqir7VCmRG1qd8IJJzgb26lRELXbbvnGekpbvhS92hdnwoQJjgnZtGmTswuwWpFVmQ9lZCovEV/XdU3/OU2JhgzxoSuDSH7kJyMgU7P+9PFLy8qpZpwEmH/rcfB17C27UIxqnfnVbUrUqxu1WmpeXp4zFyQtLa1iY73KpkQtLT9nzhx07NgRe/bsccyJmgSrlof/9NNPYyRjpoymRENedBa9hnA4UqIZIvMrA0p+jYffwLE5CFZa2NXpuQXMu64p/Cemy0DEqNZZf5LXN1XDV6MgzzzzDHr16uW8ulFmQ/1d+W6/lU2Jem2jNtm75JJL8MEHH+CBBx5wRlRoSqIsCjU5R23QoybnqOElBbzylsVqPf0//elPzpbHajtj9XOVjJqOyZMnOxsBmXroLPp49JHxyaiSH/nJCMjUiVZ//bNmwrJ8sG0ffLAx69cLkXT6/8Hf5UIZiBjVOvlJJrpWZ0oGDBiAn3/+2Rn1mDdvnvO/1ZmSrVu3OvNG1Kue9evX45FHHkGnTp1oSqKtCfVebPr06c6kG7WLoJrIM2jQoAr5jBkzHPhTp051ACsX+Pbbb9OURAvYZTudN6XLS0fVnPFFhanGRuRHfjICMnXV+gusW4Dgp7m4YV0/+BHE02etRfJFf4WV3FR2oRjVuu+PWD8Jrs6UrFixAj6fz/mCJppDfZnTsmXLaJombBvtr2/UKIj6zEl9vqSO/Px8LF682BkNKT/Ut9dqK+ObbrrJ+Sv15y1btoSNplQmypESWX3pvill0USqGZ+MKPmRn4yATF21/tJGvwQrbLKrhbzsIbKLCNTxuD90LJ5WPom16i6+gq56QqrdlKiZwP369cPKlSsdQMuWLXM+ZZo5c2YFsLfeesv57En93TvvvIM//vGPzmdMasKPar98+fIIuBkZDb/bpCcyzk6QAAmQQBwJ3PHkSrX/fNgVLNh49KYz43jVmk9t27azDohpx65du3DEEUeYFlaDx6PdlJSUlKBnz57Oaxl1LFy4EIsWLXJe1VQ+cnJynBGU8847D9nZ2fj8889r/KyJIyWyOonHvxRkEYWrGZ+MJvmRn4yATF21/vpn5VRzwoYbLTH9/pDR955auylRiHr37o3c3Fzn86URI0Y4s4szMzOdlerUUJWa4PrFF1/g4osvhpoUO2rUKLzyyis10qUpkRWe6Tcl42N+ZQRkatafXn5po3Iq9sCpOLNlIW9iw7zCMT2/MvreU8fFlKjXL8OHD0f79u2dCTxqYmtycrKzPK6aWawm6lx22WXOz3fu3Iknn3zSmVVc00FTIis8029Kxsf8ygjI1Kw/jfyKC5F+/0LYVbYM9vv8mDehYZaaNz2/MvreU8fFlJRjKioqqnVWsfou+7DDDquTKk1JnYhqbWD6Tcn4mF8ZAZma9aePX2jXdyhdfC8yV/dDUO1/E/Ih2d6L3NtPg++Y02QXilFten5j7JZnZXE1Jbqo0ZTISJp+UzI+5ldGQKZm/enjZx/YjZIFf4k4YfLF4+Br3Vl2oRjVpuc3xm55VkZToiG1phc945MlmfzIT0ZApk60+gt8/BKCGxZWdNr3y99A7ZzbUIfp/BqKi6nXpSnRkBnTi57xyZJMfuQnIyBTJ2L99R/9kvPqxkbIWWe+BWy8NOlqGYgY1abzi7FbnpXRlGhIrelFz/hkSSY/8pMRkKkTrf4GjJ6NoF0Kq9LWfDZs5GfTlMgqoXGoaUo05DnRHhoauqz1FOQnw0l+5CcjIFNXrb8Bo15CyLIiTto8tSleGlf/m/KZfn/I6HtPTVOiIaemFz3jkyWZ/MhPRkCmTrT6Sx89C2oV1apHSmoSZo87tAeajEr0atP5Rd+TxtGSpkRDnk0vesYnSzL5kZ+MgEydSPVnF/6I9ElvAiF/lU5zRVdZFTQeNU2Jhlwn0kNDQ3e1n4L8ZEjJj/xkBGTqyvUX+mYpSj/4DzJW90PIUlNcy/6fHbSRNzlTdqEY1abfHzF2y7MymhINqTW96BmfLMnkR34yAjJ1ItVfcNO7CHz4lNPhzK2Xwr+rBC+c9BZSBk6DldJcBiJGten8YuyWZ2U0JRpSa3rRMz5ZksmP/GQEZOpEqj/1+qZk0T0YvPqKik5bluUsO5+Xzb1vZJXQONQ0JRrynEgPDQ3d1X4K8pMhJT/ykxGQqavWn7NGiR3+9Y0NC/k0JTLQjURNU6Ih0fylIINIfuQnIyBTs/708ksflVPVkzgX+EWHdnh86AWyi8WgNj2/MXTJ0xKaEg3pNb3oGZ8syeRHfjICMnWi1V961iyoxdLCDvX6ZhInusoqoXGoaUo05DnRHhoauqz1FOQnw0l+5CcjIFNXrr/Ayun4w4tNUZiSBFQyJuoLnAV8fSMD3UjUNCUaEs1fCjKI5Ed+MgIyNetPE7/iPSief5tzssFrroAdAiwfYIdCyJ90jewiArXp+RV0zZNSmhINaTW96BmfLMnkR34yAjJ1otSfvWcrSl4dhcEf9QOqLDPPkRJZDTQmNU2JhmwnykNDQ1fjcgryk2ElP/KTEZCpK+ovWIriuX/GoJWXwbKqLjNvI48b8slANxI1TYmGRPOXggwi+ZGfjIBMzfrTxy/41RsY+J/tESMlyqLkZ3Oiq4x041DTlGjIMx9qMojkR34yAjI1608vv+q+vqEpkTFuTGqaEg3Z5kNNBpH8yE9GQKZm/ennp4wJ1PpptlpHzUbexIYZJVE9Mz2/MvreU9OUaMip6UXP+GRJJj/ykxGQqVl/3uYn65331DQlGnLKh4YMIvmRn4yATM3608fP3rMFoa2rgWAJrMN/AV+HM2Qn16A2Pb8auuipU9CUaEin6UXP+GRJJj/ykxGQqROl/kK7NqP09bFqYRJkrwM+T0lDyxIfnho3WAZAqDadn7B7npPTlGhIqelFz/hkSSY/8pMRkKkTpf4C6+Yj+OlsDP44DXZIbcFXdqivgxc00BLz6vqm85NVh/fUNCUacmp60TM+WZLJj/xkBGTqRKm/wCezcPH6fLRcfUVEh/1JFuaNHyIDEaPadH4xdsuzMpoSDak1vegZnyzJ5Ed+MgIydaLUX/Db9zHoyU0IhvwRHbYsCwsm0pTIKqFxqGlKNOQ5UR4aGroal1OQnwwr+ZGfjIBMXbn+rhr3IkqLfZGmxGdjwYSrZReKUW36/RFjtzwroynRkFrTi57xyZJMfuQnIyBTJ1r9pWXNgmXIDsGKvOn8ZNXhPTVNiYacml70jE+WZPIjPxkBmToR6y9t7BwgWArLtpCX3TCvbcqpm85PVh3eU9OUaMip6UXP+GRJJj/ykxGQqROx/gaNm42SA6Xw+5Jg+fyY++CVMggCten8BF3zpJSmRENaTS96xidLMvmRn4yATJ1o9dc/Kxc2ghWfBDu9VyMmkxpmxMR0frLq8J6apkRDTk0vesYnSzL5kZ+MgEydSPUX/GwuBswscdYmqXzYsJGfzYmuskpoHOq4mJK1a9di2LBh8Pv96Nq1K6ZMmeL8ufwoKSnBTTfdhAMHDmDPnj3485//jIEDB9ZIfPLkyRg5cqSxGUmkh4aJEMlPlhXyIz8ZAZm6ov5CARTPvhGDV11ethlf2NFwc0tMvz9k9L2njosp6dOnD6ZPn45u3bph6NCh6Nu3LwYNGlRBb9asWXjnnXfw+OOPo7CwED179sSmTZtoSuJUX6bflIxPlnjyIz8ZAZm6ov6KfkZx3h3IWHMF7CojJbAs5HGdEhnoRqLWbkoCgQB69OiBDRs2OAjz8/OxePFiZ7Sk/FixYgXuv/9+zJs3D+vXr8dtt92Gd999l6YkTkXHX1oysORHfjICMnUi1V/xnJsw+JN0oHifWmDe6bjyJymwMYevb2SF0EjU2k1JQUEB+vXrh5UrVzoIly1bhmnTpmHmzJkVSEtLSzFkyBDs3r0bP/74Ix588EFcddVVFe2XL18egT8jI6ORpITdJAESIIHEJJC6ZSmafZXnBP/Hzy+D1dSPh/9wfoN2xrZtdOnSpUFj4MWjJ6DdlKj5Iup1jBoBUcfChQuxaNEiTJ06tSIq9eddu3Zh7NixUO1POeUUrFmzBk2bNq02cs4piT6h1bVMpH9pyXoaHzX5ybiSXyPjV7ofob0F8KW2AJq1kXVeg9r0+tPQRU+dQrspUXR69+6N3NxcdOzYESNGjECvXr2QmZnpzB9p0aIFJkyYgObNm+POO+9EuYv9+OOP0bJlS5qSOJSX6Tcl45MlnfzIT0ZApq6t/n739xdQUpiC2y5ogwsuuEB2oRjVpt8fMXbLs7K4mBL1+mX48OFo3769M/oxY8YMJCcno3v37liyZInz52uuuQadOnXCDz/8gHPPPRejR4+uETJHSmT1Z/pNyfiYXxkBmZr1Fwd+dgjpY3Kdf3SWH5bPhwUT6v81vOn5ldH3njoupqQcU1FRUY2vZFQbNXKiTEtSUlKtZGlKZIVn+k3J+JhfGQGZmvWnn1/62BdgB8J3C1b2pM0JRXj2hhtkF3SpNj2/Lrvj+eZxNSW66NGUyEiaflMyPuZXRkCmZv3p5Wfv3Yb0iW85q7hWPVJ9fuROGCy7oEu16fl12R3PN6cp0ZBi04ue8cmSTH7kJyMgUyda/dm7v8eA7OXVeRK0SA3hxXHXyIC4VJvOz2V3PN+cpkRDik0vesYnSzL5kZ+MgEydcPVn2yiePxSDV4R/CmxZNhZMrP+l5k3nJ6sO76lpSjTk1PSiZ3yyJJMf+ckIyNSJWH+hrasR/HwBMl7vhpAPCPmB/PH1O0JSTt10frLq8J6apkRDTk0vesYnSzL5kZ+MgEydqPUX2roGdsleWC3awdemqwyCQG06P0HXPCmlKdGQVtOLnvHJkkx+5CcjIFMnYv2VvjkeoR1fVnT8j+suwT40RxMc4JwSWTl4Xk1ToiHFifjQ0NBtbacgPxlK8iM/GQGZumr9BbesQmD5PytOmrHmctghC2pTPnVYloUF9bg5n+n3h4y+99Q0JRpyanrRMz5ZksmP/GQEZOpEq7/gpncR+PApp9ND152PbcUtIgFYfuRNrJ9Pg03nJ6sO76lpSjTk1PSiZ3yyJJMf+ckIyNSJVn+hgs9R+na20+mrP7kcgaCvGgAW8rKHyMBEqTadX5TdaDTNaEo0pNr0omd8siSTH/nJCMjUiVh/gY9mILhxCa7/+grs2x3Z/yTLwtx6eoVjOj9ZdXhPTVOiIaemFz3jkyWZ/MhPRkCmTtT6s0uLYBf+iAEPfxAGQC03n5+dKYPiQm06PxddaRRNaUo0pNn0omd8siSTH/nJCMjUiVh/oR8+gRotsfcVOJ2/ZnU/BK1khADkTRwkA+JSbTo/l93xfHOaEg0pNr3oGZ8syeRHfjICMnUi1l/p62MR+vnbsI4nnz0Uvo69ZTBiUJvOL4YueVpCU6IhvaYXPeOTJZn8yE9GQKZOvPqzUZz7/4BQsGzeLrIIAAAgAElEQVSUZN05KC05AradhCQEMa8eX92o65vOT1Yd3lPTlGjIqelFz/hkSSY/8pMRkKkTsf5KFvwF9oHdGLTmAlhoDqiJJAcP27KQX0+TXGlKZLXXEGqaEg3UE/GhoaHb2k5BfjKU5Ed+MgIydXX1F1w3H4FPZyPjo8thW+GfBHOiq4y319U0JRoyzF8KMojkR34yAjI16y8+/NQy8wP+vkqt4Rp2AdsG8ifx6xsZde+qaUo05JYPNRlE8iM/GQGZmvUXP37pWS/Ddr65OXRwpETG2+tqmhINGeZDTQaR/MhPRkCmZv3Fh5+95wcE1s3FoPmtYVeMlljwJVmYPz5DdlEXatPz66IrjaIpTYmGNJte9IxPlmTyIz8ZAZk6UeuvZMk42D99jWs/uRQBy0aT0mS8mHUOrMM7yoC4VJvOz2V3PN+cpkRDik0vesYnSzL5kZ+MgEydiPVnl+zFO/Nuxd8/uiJsSkl97xCsyJvOT1Yd3lPTlGjIqelFz/hkSSY/8pMRkKkTsv5KizDgvnkIocpmfJaFvHr8HJimRFZ7DaGmKdFAPSEfGhr6resU5CcjSX7kJyMgU9dUf+lZL1WaS1J+DRt52VfLLuhSbfr94bI7nm9OU6IhxaYXPeOTJZn8yE9GQKZO1Prrn5UT0XHbtpA/aYgMiEu16fxcdsfzzWlKNKTY9KJnfLIkkx/5yQjI1Ilaf+PG5WFVcREqL+fqsy3MpymRFYTH1TQlGhKcqA8NDV3Xcgryk2EkP/KTEZCpa6q/krcnwS5Yh4y1l8EO+tEqpQQzxl0nu1gMatPvjxi65GkJTYmG9Jpe9IxPlmTyIz8ZAZk6EevP3vkVSt64P6LjKZc/BKvl0TIgLtWm83PZHc83pynRkGLTi57xyZJMfuQnIyBTJ1r9pWW9DAu2swefZdnw2zZyfr3QgZBy8f2wWneSAXGpNp2fy+54vjlNiYYUm170jE+WZPIjPxkBmTqR6u+Ku1+Bz7+3ynY3NvzttiHnmFVIvfIJILmZDIhLten8XHbH881pSjSk2PSiZ3yyJJMf+ckIyNSJVH8Dxr6MUCB8rxvVe39SKWbfcAz8XfrKYMSgNp1fDF3ytISmREN6TS96xidLMvmRn4yATJ1I9ZeelQsbwYgO+/xNMP/BATIQMapN5xdjtzwroynRkFrTi57xyZJMfuQnIyBTJ1r99c+aFfYZMCwbub9aiKReN8Lf6TwZjBjUpvOLoUuelsTFlKxduxbDhg2D3+9H165dMWXKFOfP5cfMmTPxzDPPVPz35s2bsWrVKrRo0aJa2JMnT8bIkSONTYTpRc/4ZKVDfuQnIyBTJ1r9XTVyDkr9JbDUzsChEJKa7MaLJ70HX4czkHzO7TIYMahN5xdDlzwtiYsp6dOnD6ZPn45u3bph6NCh6Nu3LwYNGlQtyJUrV+Kxxx7Ds88+WyNomhJZDZp+UzI+5ldGQKZm/ennV/rWRIS2rw87se+YXyP53DtlF4tBbXp+Y+iSpyXaTUkgEECPHj2wYcMGB1x+fj4WL17sjJZUPWzbxkUXXYScnBy0bduWpiROpWb6Tcn4ZIknP/KTEZCpq6u/wNpcBD9fEHbipJ5D4O+eJrtYDGrT748YuuRpiXZTUlBQgH79+kGNgKhj2bJlmDZtGtQrm6rH/Pnz8cEHH2DChAkVP1Ltly9fHtE2IyPD04lg50iABEjASwSafpWH5J+/UIuVoLR1dxR16tcg3VP/+O3SpUuDXJsXdU9AuykpKSlBz549sX592dDdwoULsWjRIkydOjUiut/+9rfOq5sTTjih1sj5+sZ9YisrTP+XAuNjfmUEZGrWn15+Qx9/G/uaH4dnbzhOdmJNatPzq6mbnjmNdlOiyPTu3Ru5ubno2LEjRowYgV69eiEzMxOFhYXOZFbLsrBv3z6ceuqp2LhxY50waUrqRFRrA9NvSsbH/MoIyNSsPz38Bo2ejRJbfQ6s1nIFbBuwmjRD3rj+sgsI1abnV9g9z8njYkrU65fhw4ejffv2aNq0KWbMmIHk5GR0794dS5YsQYcOHfDZZ5/h5ptvxtKlS+uESlNSJyKaEhki8iO/OBKQndr0X6rl8aWNylFvasIO9QXOguwhMgBCten8hN3znDwupqScUlFRkWNKpAdNiYyg6Tcl42N+ZQRkatafHn5pWTnqI+CIIy87U3YBodr0/Aq75zl5XE2JLlo0JTKSpt+UjI/5lRGQqVl/evilZb1UtjZJlbGSPI6UyAA3MjVNiYaE86Emg0h+5CcjIFOz/vTwSx89C+pLl8qHzxfC/AnXyC4gVJueX2H3PCenKdGQUtOLnvHJkkx+5CcjIFMnTP3t34mB45fA9tmwYcFvlSL3ps7w//IcGQCh2nR+wu55Tk5ToiGlphc945MlmfzIT0ZApk6o+rNDCBWsA4KlsI74BaxmR8o6r0FtOj8NXfTUKWhKNKTT9KJnfLIkkx/5yQjI1Kw/b/OT9c57apoSDTnlQ0MGkfzIT0ZApmb9kZ+MANU6CdCUaKDJh5oMIvmRn4yATM36i51faOtq7PggB0ek2rBatIX/hH7wHXVS7CeMg9L0/Mahywl9SpoSDekzvegZnyzJ5Ed+MgIytbH1V7IPxQv+gus3Xoq9e3DwY2ALPvgxf2L1u8LLSMSmNpZfbN3xvIqmREOKTS96xidLMvmRn4yATG1q/YUKPkPp25ORsfqKgwvLV+pnqh954wbLOq5JbSo/Td3z3GloSjSk1PSiZ3yyJJMf+ckIyNSm1l9o+3r8Zdab+O77yC9sbJ+F/AkNu7x8OXVT+cmqwrtqmhINuTW96BmfLMnkR34yAjK1yfXXf9z9QHH3ajvY0MvL05TI6q6h1DQlGsib/NBQ3WN8siSTH/nJCMjUJtefvW870se/gao78flSm2D+uAGyjmtSm8xPUxc9dRqaEg3pNL3oGZ8syeRHfjICMrXp9Tfw0XkIbi+FHQzC57MAKwkLJnCiqyzrjVdNU6Ih96Y/NBifLMnkR34yAjI168/b/GS9856apkRDTvnQkEEkP/KTEZCpWX/kJyNAtU4CNCUaaPKhJoNIfuQnIyBTs/5c8lM7AQeKgORmjpD8XPJj81oJ0JRoKBDelDKI5Ed+MgIyNesven6BNS8guHEJEArAan4Ukn51Db4pboXOnTtHf5J6bml6fusZh/GXoynRkCLTi57xyZJMfuQnIyBTm1J/oW2fofSdyWGdyVxzBQIW4LMtJPlCmPPg1bLOxkFtCr84dM2Tp6Qp0ZBW04ue8cmSTH7kJyMgU5tSf2qEJPDRjIrODPqoHyzLCutcMpIxJ/sqWYc1q03hp7lbnj0dTYmG1Jpe9IxPlmTyIz8ZAZnalPoLfvseAiueqGRKrqi6PAlsWMjPNmMl1/JATeEnq4LGo6Yp0ZBr04ue8cmSTH7kJyMgUxtTf8FSlCy+F3bhD06HBq2+4uAmfIf6p+bA5k/KlHVYs9oYfpr75dXT0ZRoyKzpRc/4ZEkmP/KTEZCpTao/O1CC0JYPgdL9GPjUz4BlV+mchTyOlMgS3sjVNCUaCsCkh0Z13WF8siSTH/nJCMjUptbf4DG5KLaDUKMjamaJ+r8F2WaNkijypvKTVYV31TQlGnJretEzPlmSyY/8ZARkataft/nJeuc9NU2JhpzyoSGDSH7kJyMgU7P+yE9GgGqdBGhKNNDkQ00GkfzIT0ZApmb9kZ+MANU6CdCUaKDJh5oMIvmRn4yATM36Iz8ZAap1EqAp0UCTDzUZRPIjPxkBmZr1VxM/G8Gv34G9/ydYzVrD3/n8g9NZw9uTn6z+qA4nQFOioSJ4U8ogkh/5yQjI1Ky/6vmVvjURoe3rK37oa9sdyReOjmhMfrL6o5qmRHsN8KaUISU/8pMRkKlZf5H8Qj9/g9LX74v4Qcol43HVQx8h5CuFZVuYNyHD+E9uTc+vrHq9p+ZIiYacml70jE+WZPIjPxkBmboh6i+0fQNK35oQEfig1WmwcGjBNLWs/JSbzuAuwbIUU12JAE2JhnJoiIeGm7AZnxtakW3Jj/xkBGTqhqg/u7gQJfOHhgX+f5svR+EOXzWdMW8V18pBNgQ/WcYbtzoupmTt2rUYNmwY/H4/unbtiilTpjh/rnzMnDkTTz/9NAoLCzF8+HBcfXXNW15PnjwZI0eONDZTphc945OVDvmRn4yATN1Q9Rfc9C6Cn+dVTHS9bs352F+4L7Izfh/yHsyQdTKO6obiF8cuefrUcTElffr0wfTp09GtWzcMHToUffv2xaBBgypAbtu2DVdddRXefvtt7N+/H88//7zTrqaDpkRWg6bflIyP+ZURkKlZf9Hz6z8qp2w9+UqHZfmxYOLg6E9Szy1Nz2894zD+ctpNSSAQQI8ePbBhwwan8/n5+Vi8eLEzWlJ+KBPy7bff4sQTT8TevXuRkZGBpk2b0pTEqVxMvykZnyzx5Ed+MgLRqweMmYVQSLUvm1diWRYevZFzSqInyJZ1EdBuSgoKCtCvXz+sXLnSufayZcswbdo0qNc15cff/vY35ObmYtSoUc7M7QULFjijJuXtly9fHhG3Mi48SIAESIAEGp7A3S99iWCzIvwjvWfDB1NHBLZto0uXLsbHyQDLCGg3JSUlJejZsyfWry/7vn3hwoVYtGgRpk6dWsH83//+N7Zs2YIHHnjA+btTTz0Vb775Jo488shq88LXN7Jy5b+kyU9GQKZm/ZGfjIBMbXr9yXrnPbV2U6IQ9e7d2xkJ6dixI0aMGIFevXohMzPTmdTaokULfPzxx7j//vsxd+5clJaWOnNP1OuelJQUmpI41JjpNyXjkyWd/MhPRkCmZv3J+FEdTiAupkS9flFf1LRv396ZKzJjxgwkJyeje/fuWLJkCTp06IB77rkHn3/+OX766Sdcd911uPnmm2vMDUdKZGXLhwb5yQjI1Kw/8pMRkKlNrz9Z77ynjospKcdUVFRU6wTW4uJi51PhpKSkWsnSlMgKz/SbkvExvzICMjXrr4yfva8A9oFCWM2OhNX0iKihkl/UqNgwCgJxNSVRXD+qJjQlUWGqsREfGuQnIyBTs/7M5xdYOd3ZfK/88Pe4Ekk9rowqcOY3KkxsFCUBmpIoQdXWjDelDCL5kZ+MgEzd2Osv9NPXKF0yLgJiysBpsFKa1wm3sfOrExAbuCJAU+IKV/WNeVPKIJIf+ckIyNSNvf5CW1aidPmhdaTKaWZ+3B9B24Zth+CDD1ZqKuaPGxABu7Hzk1Uf1VUJ0JRoqAnelDKI5Ed+MgIydWOvv9DOjSh9o2x5hvLj2o9/i+JQla8hLQt5E4fQlMjKjeo6CNCUaCiRxv5QkyIkPxlB8iM/GQEg8L9pCH73fsVpMtekOaMkEUdqMvLGXRX216w/KX3qKxOgKdFQD7wpZRDJj/xkBGRq1l8ZP3vXd1C7A6uvb9InLwWCznryYUeynYw5k2hKZBVHdW0EaEo01AcfajKI5Ed+MgIyNesvkt/gcbkoLg6G/8AG8iZlRjQmP1n9UR1OgKZEQ0XwppRBJD/ykxGQqVl/1fMbMOZlZ5KrHbJg+YBmoRBemnQ1TYms3KiugwBNiYYS4UNNBpH8yE9GQKZm/ZGfjADVOgnQlGigyYeaDCL5kZ+MgEzN+iM/GQGqdRKgKdFAkw81GUTyIz8ZAZma9Ud+MgJU6yRAU6KBJh9qMojkR34yAjI164/8ZASo1kmApkQDTT7UZBDJj/xkBGTqxlB/9s6NCO3dBiulBXztT5UBq6JuDPy0AuPJaiVAU6KhQHhTyiCSH/nJCMjUXq+/4McvIrBhUQUkq01XpPQdK4NWSe11ftpA8URREaApiQpT7Y14U8ogkh/5yQjI1J6uv2Apimf/MQJQ8rnD4DvmNBm4g2pP89NCiCdxQ4CmxA2tGtryppRBJD/ykxGQqb1cf3bRzyjJuyMCUFKvG+HvdF7Y3w98dB5a7GqP58f1dgXUy/xcgWBjLQRoSjRg5E0pg0h+5CcjIFN7vf6K590KlOwNg5R8YRZ8bU90/u7qcQux98BeWNbBvW5soF2TI/DUuEujAut1flFBYCNtBGhKNKDkTSmDSH7kJyMgU3u9/kLfLEVg9UzYpfsdUP7jL0bSaX+ogNZ/dA5Qzd57edmRS8pXR9rr/GTVRbVbAjQlbolV0543pQwi+ZGfjIBM3Vjqz96/A1ZycyC5aRiw/lmz1HZ8YX+n/iufpkRWWFTHRICmJCZs4aLG8lDTgKraU5CfjCz5kZ+EQFpWDqwqJ7BhIT97SFSnZf1FhYmNoiRAUxIlqNqa8aaUQSQ/8pMRkKkbe/0NGD0bITsQDtFnIW8CTYmssqiOhQBNSSzUqmga+0NNipD8ZATJj/xkBIAB9+bAtn0IhWzA9iF/0uCoT8n6ixoVG0ZBgKYkCkh1NeFNWReh2n9OfuQnIyBTs/7IT0aAap0EaEo00ORDTQaR/MhPRkCmZv2Rn4wA1ToJ0JRooMmHmgwi+ZGfjIBMzfojPxkBqnUSoCnRQJMPNRlE8iM/GQGZmvVHfjICVOskQFOigSYfajKI5Ed+MgIydaLWX+jnbxD6ZjlQUgir5dHwn9AP8KfIYMSgTlR+MXSVknogQFOiATJvShlE8iM/GQGZOhHrzz6wGyUL7wYCByo672t3MpLPv0cGIwZ1IvKLoZuU1BMBmhINoHlTyiCSH/nJCMjUiVh/oc0rUPr+4xEdTxnwGKzUw2RAXKoTkZ/LLrJ5PRKgKdEAmzelDCL5kZ+MgEydiPUX/HY5Aiv+HWlK+k+B1fQIGRCX6kTk57KLbF6PBGhKNMDmTSmDSH7kJyMgUydi/dmFP6Bk0ciwjluHd0TKpRNkMGJQJyK/GLpJST0RoCnRAJo3pQwi+ZGfjIBMnaj1F/zufYS+fhv2gT2wDmuPpJMGwjriFzXCuHL0XITsUlg+C/MmZMigVVInKj9tAHgirQRqNSX/+te/cMIJJ+Ciiy5yddG1a9di2LBh8Pv96Nq1K6ZMmeL8ufxQP7/22mtx1FFHOX912mmn4aGHHqrxGpMnT8bIkeH/KnAVUJwb86aUASY/8pMRkKkbQ/2lZc2CVWknYDcb7tVFtzHwq4sBf66PQK2m5L777sP48eMxZMgQ/OMf/8Cxxx4b1ZX79OmD6dOno1u3bhg6dCj69u2LQYMGVWjfeOMNzJ49G8r0RHPQlERDqeY2fGiQn4yATM36a1h+v3toHgp/Lq4mCAt5Ue4EXFsPmF9ZfqkOJ1CrKbFtG88//zxGjRqFPXv2QJkUZTjKj7POOiuCZyAQQI8ePbBhwwbnZ/n5+Vi8eLEzWlJ+KEPyzjvv4Pzzz0ezZs1wySWXhI2kVD0pTYmsbPnQID8ZAZma9dew/AaPy0VxcbCaIHzIy5a/xmF+Zfml2oUpKW+6b98+XHrppVi+fHmYWpmWqkdBQQH69euHlStXOj9atmwZpk2bhpkzZ1Y0nTdvHh5//HH87ne/w5o1a/DVV1855qW8fdXrqL/PyJDfPEw+CZAACTRGArc/+SEsq8rD3/Lj0RtP8zwO9XuqS5cunu+nVzpY50TXVatW4c4773QMyY033hg2UvL73/8+gkNJSQl69uyJ9evXOz9buHAhFi1ahKlTp9bI7OSTT8Zbb72Ftm3bVtuGIyWycuO/ZMhPRkCmZv01PL8BY2YhFFJxlP1D0rIsLJg4RBbYQTXzqwUjT3KQQK2m5LHHHsPtt9/uTERV8z/OPPPMqMD17t0bubm56NixI0aMGIFevXohMzMThYWFaNGiBV577TXnplCjLwcOHED37t2d1z2pqak0JVERdteIDw13vKq2Jj/ykxGQqXXW36CJryHYrAjzhg2UBVVJrTM+bUElUHzx6HMin7NWU3L//fejTZs2uOWWW+Dz+aLupxpVGT58ONq3b4+mTZtixowZSE5OdszHkiVLEAqFnMmzyrR89913uPXWW3H99dfXeH6OlESNvtqGfGiQn4yATM36Iz8ZAZna9PqT9c576jpf30i6XFRU5JiSmg41eVaNnNRleGhKJFkATL8pGR/zKyMgU7P+yE9GgGqdBOJqSnQFSlMiI8mHLvnJCMjUrD/ykxGQqU2vP1nvvKemKdGQU9OLnvHJkkx+5CcjEKXaDiL45euw9xYATQ6D/7g+sJodyZHOKPHV1Mz0+1fYPc/JaUo0pNT0omd8siSTH/nJCESnLn33IYR+/LSisdW8LVIun4yvv/kOnTt3ju4kDdCK90cDQPfwJWlKNCSXN6UMIvmRn4yATG1E/e3fieL8OyM6ktznLnxT1JKmRJBiI/IriL+xSWlKNGTc9KJnfLIkkx/5yQjUrbYLf0TJonsiTclvbsc3xa1pSupGWGML0+9fQdc8KaUp0ZBW04ue8cmSTH7kJyMQnbo47w6g6OewxilX/A2btu2lKYkOYbWtTL9/BV3zpJSmRENaTS96xidLMvmRn4xAdOpQwWcIrluAUOEPsJocgaSuv4XvuD6c6BodPo6UCDmZIqcp0ZAJ/tKSQSQ/8pMRkKlZf+QnI0C1TgI0JRpo8qEmg0h+5CcjIFN7pf6uGfci9qU2x4KsdBkQl2qv8HPZbTaPEwGaEg1geVPKIJIf+ckIyNReqL/+WS8DcHbcc/bcs2Ejf9LVMjBRqr3AL8quslk9EKAp0QCZN6UMIvmRn4yATJ3o9Zee9TLsckNSgcJCXraeXYDropvo/OrqH39evwRoSjTw5k0pg0h+5CcjIFMnev2lZ81yRkaqHnnZmTIwUaoTnV+U3WSzeiJAU6IBNG9KGUTyIz8ZAZk60esvbfTLsOyDr24OolAWJZ+mxKFhen5l1es9NU2JhpyaXvSMT5Zk8iM/GQGZuq766z8uD/aB/bCsQ9fxwcJ8vr6hKZGVXoOoaUo0YK/roaHhEqJTMD4RPuP/pcX8Mr9XjZuDYIkNCzZ8IR/mTLpKBsWFmvXnAhab1kmApqRORHU34E1ZN6PaWpAf+ckIyNSsP/KTEaBaJwGaEg00+VCTQSQ/8pMRkKlZf+QnI0C1TgI0JRpo8qEmg0h+5CcjIFPHr/5s2MWFsFIPEwUYv/hEYVWIGZ8ejjxLGQGaEg2VwJtSBpH8yE9GQKaOR/0FP52NwPpXgFAAVpPDkNRzCHzHnRdToPGIL6ZAahAxPp00eS6aEg01wJtSBpH8yE9GQKbWXX/2z9+g5PX7woNKSkXqlf8GLJ/rYHXH5zqAOgSMTzfRxn0+mhIN+edNKYNIfuQnIyBT666/4OYVCLz/eERQKf0egtXiaNfB6o7PdQA0JbqR8Xy1EKAp0VAefGjIIJIf+ckIyNS66y/046coffehSFMy4LGY5pfojk9GK1LN+HQTbdznoynRkH/elDKI5Ed+MgIydTzqr+TN8bB3fFkRmL/TeUjqdWNMgcYjvpgCqUHE+HTS5LloSjTUAG9KGUTyIz8ZAZk6XvUX+v5D2Af2wGreFr72PWMOMl7xxRxQFSHj00WS51EEaEo01AFvShlE8iM/GQGZmvVHfjICVOskQFOigSYfajKI5Ed+MgIyNeuP/GQEqNZJgKZEA00+1GQQyY/8ZARkatPrL33MywiFAMsKwW/7MC87Q9ZhzWrT+Zken+Z0JPzpaEo0pND0omd8siSTH/nJCMSuThuTAysUrvf7fJg3wRxjwvsj9vxSGUmApkRDVfCmlEEkP/KTEZCpTa6//lk5EZ2zYGFB9hBZpzWqTeanuml6fBpT4YlT0ZRoSKPpRc/4ZEkmP/KTEYhdnZY1CxbssBNYABZkZ8Z+Us1K3h+agTby09GUaCgA3pQyiORHfjICMrXJ9dd/dA6qeBL4bAvzJ3GkJNqsm5zfaPvQmNrRlGjItulFz/hkSSY/8pMRiF19w7PfYOeGFYBtA76yfXPyJppjSBLh9Yjp92/s1eFNZVxMydq1azFs2DD4/X507doVU6ZMcf5c9Thw4AAuuugijB8/Hn379q2R8OTJkzFy5EhjM2B60TM+WemQXyPnFywF/MkyCAI1608Aj3NKZPAaQB0XU9KnTx9Mnz4d3bp1w9ChQx3DMWjQoIju3XXXXXj//fcxevRopKWl0ZTEqQD4UJOBJb/GyS+08ysEV/8XoZ++BnzJ8Hfqg6TTb5DBiEHN+osBWiWJ6fxkvfOeWrspCQQC6NGjBzZs2ODQys/Px+LFi53RksrH0qVLkZOTgxYtWuDcc8+lKYljbZl+UzI+WfLJLz78St6cAHtH2XOs/EjufTN8vzxHdkGXaubXJbAqzU3nJ+ud99TaTUlBQQH69euHlStXOrSWLVuGadOmYebMmRX09u3bh4EDB2Lu3Ll48MEHw0yJar98+fII0hkZ5nyX770yYI9IgASqEjhi+VhYweKwvz7wi74oOu4ywkogArZto0uXLgkUceMOVbspKSkpQc+ePbF+/XqH7MKFC7Fo0SJMnTq1gvQdd9yBNm3aQL3mefLJJ3HKKafg5ptvRqtWrarNBueUyIrU9H8pMD7mV0ZApq6p/kry74S9f2fYyZN6ZsLf/QrZBV2qeX+4BMaREhmwBlZrNyWqP71790Zubi46duyIESNGoFevXsjMzERhYaHzukb9bMuWLU7X1eudzp07Y+zYsU776g6aElmV8KFGfjICMnWi1l9w3TwEPp1T0XkrpTlSfns/0PwoGRCX6kTl57KbcWtuOr+4dTxBTxwXU6JevwwfPhzt27dH06ZNMWPGDCQnJ6N79+5YsmQJOnToUIFr1KhRnFMS5+Ix/aZkfLICIL/48bO3fYbQ7s2APwX+Y34NNK1+NFcWQe1q5ldG13R+st55Tx0XU1KOqaioyDEl0oMjJTKCpt+UjI/5lRGQqVl/5CcjQLVOAnE1JboCpSmRkeRDl/xkBGRq1h/5yQjI1KbXn6x33lPTlGjIqelFz/hkSSY/8pMRkKlZf97mJ+ud99Q0JRpyyoeGDCL5kcXOScwAACAASURBVJ+MgEzN+iM/GQGqdRKgKdFAkw81GUTyIz8ZAZm6Ieovc3Q+ikL7ELIsWDZgWzbya9j5tyHic0OU8bmhxbZ1EaApqYtQFD/nTRkFpFqakB/5yQjI1A1Rf2mjcmBZ4XH7k4B54zMjOtMQ8bkhyvjc0GLbugjQlNRFKIqf86aMAhJNiQwS+bnmZ+/ZiuD3HwKlRfAd3gG+486t9hz1ff/2H5cHFO+PjMVnIW9C5A7A9R2fW9CMzy0xtq+NAE2JhvrgTSmDSH7kJyMQqbb3FaDk1dFAsKTih/4uFyHp9OsbfCRiyZIP8c83vq6my37kZQ9u8Pjc5oL3r1tibE9TEuca4E0pA0x+5CcjEKkOfrkYgdXPh/8gKRWpV/3HiF/6/UfnAHZ4KKmpfuSOoynRXQumP1909zfRz8eREg0ZNL3oGZ8syeSXePwCn+cjuHZWROCpGc8Cli/s7xsqv2lZL8OHEGz44UuyMX989ZuONlR80Wad8UVLiu2iIUBTEg2lOtrwppRBJD/ykxGIVId++ASlS/8W9gOrTVek9B1rxEiJm/7y/nBDK7Kt6fxkvfOemqZEQ05NL3rGJ0sy+SUmv+C6+QhueteZ6Gq1+iX8p14N3xG/pCmRpZP8NPPj6cIJ0JRoqAj+0pJBJD/ykxGQqVl/5CcjQLVOAjQlGmjyoSaDSH7kJyMgU7P+yE9GgGqdBGhKNNDkQ00GkfzIT0ZApmb9kZ+MANU6CdCUaKDJh5oMIvmRn4yATM36Iz8ZAap1EqAp0UCTDzUZRPIjPxkBmVpX/V097iWUBFJgJdmYPW6QLKhKal3xaQuoyokYX7zINs7z0pRoyDtvShlE8iO/qgRCBesQ2vwB7NL9sA7viKQT+8sg1aLWUX/po2fBtg+thubz+TF/QuRCaLF0Qkd8sVw3Wg3ji5YU20VDgKYkGkp1tOFNKYNIfuRXmYC96zuULL43DIrvl+cguffNMlA1qKX1lz5mAexQUcTZm6e2xEvj+oljlsYnDoDPv3gj5PkrEaAp0VAOfGjIIJIf+VUmEPziVQTWvBAOxZeE1MFPy0DFy5SMnQ07EIg4ezKSMSf7KnHMvD9kCE3nJ+ud99Q0JRpyanrRMz5ZksmvfvkF17+CwCc5ERdNHfIcAEsWTDVqaX4H35uL4mAwMt4a9rJx2wFpfG6v57Y943NLjO1rI0BToqE+eFPKIJIf+VUmYG9fj5K3JoZB8R19CpLPu1sGKk4jJeq0aVk5YXbJtizkTxyiJV7eHzKMpvOT9c57apoSDTk1vegZnyzJ5Ff//EJfv43gt8thl+yHr9Vx8J8yGFbTVrJA4mhK1Kn7j8tFUsgPy2djzjj5a5vycFl/srSbzk/WO++paUo05NT0omd8siSTH/lFS2D0k2/hq60/IRiycUTLZrj9yjPQ8/ijopVX2471J8IH0/nJeuc9NU2JhpyaXvSMT5Zk8iO/aAg8OX8VFn34dVjTIw9vjqfuln2Bw/qLhn7NbUznJ+ud99Q0JRpyanrRMz5ZksmP/KIhMOqJN7Hh+51hTf0+C7kPyNYrYf1FQ5+mREbJHDVNiYZc8KEhg0h+5CcjIFPrqr/7pr+NtZu2hwWTkuRDjnB1V13xySgl7i990/nFKy+Jel6aEg2ZM73oGZ8syeTXuPgNHJ2LQCgI+CykpvijXjL+rdXfYsrsD8JgnfiLNpj4pwtFAFl/InycUyLDV+9qmhINyPnQkEEkP4/xO7ALwYLPATsEX+su2LR9Pzp37izrZBzVlesvbVQOrEpLoaiF45PapWLesIFRRaCMyVsfbUJJaQid2x+OPw04PSpdbY14f8gQms5P1jvvqWlKNOTU9KJnfLIkk1/0/EI7N6L0rWwgVFoh2n7cYHQ4Mz36k9Rzy/L8Dh43B8XFh+IuD8NnJWH+RH0b7LntHuvPLbHw9qbzk/XOe2qaEg05Nb3oGZ8syeQXPb/AqmcR/OrNMMHu1A44akD4YmjRnzH+Lcvzm561ADYi97CB5UPexIz4B1LDFVh/MvSm85P1zntqmhINOTW96BmfLMnkFz2/0vemIPT9yjBBoa812gx+NPqT1HPLyvntnxW5vL2V5MeC8bIvaCRdYv1J6IFzSmT46l1NU6IBOR8aMojk5x1+wU9zEVi3IKxDP7c4AUf3GyPrZBzVYXNKxsyCpSaS2Or/A3QuFx9rF3h/xEquTGc6P1nvvKeOiylZu3Ythg0bBr/fj65du2LKlCnOn8uPAwcO4MYbb0RBQQH27t2LUaNGIT295nfOkydPxsiRI42lb3rRMz5Z6ZCfC36l+1H63lSEtn3miHytOmHrMf3wyx69XZykfpsyvzLe5CfjR3U4gbiYkj59+mD69Ono1q0bhg4dir59+2LQoEMTxebOnYsNGzY4ZuTHH3/Eueeei40bN9aYG5oSWdnyoUF+MgLu1XbxHme0wWpyuPH/UuX94T6/lRXkJ+NHdZxNSSAQQI8ePRzToY78/HwsXrzYGS2p7li1apUzqrJ06VKakjhVJx8aMrDkR34yAjI168/b/GS9855a+0iJeiXTr18/rFxZNtlt2bJlmDZtGmbOnBlB74ILLnD+FTVr1iycddZZFe2XL18e0TYjo+Fmv3sv7ewRCZAACTQOArZto0uXLo2jsx7opXZTUlJSgp49e2L9+vUOnoULF2LRokWYOnVqtbi+/fZbXHTRRfjss8+QmppabRu+vpFVGv+lRX4yAjI164/8ZARkatPrT9Y776m1mxKFqHfv3sjNzUXHjh0xYsQI9OrVC5mZmSgsLESLFi3w5JNPokmTJrj++usRDAbRqVMnx5S0bNmSpiQONWb6Tcn4ZEknv5r59R81DsBJgA/OVzULsodENCY/1p+MANU6CcTFlKjXL8OHD0f79u3RtGlTzJgxA8nJyejevTuWLFnifIkzZMgQtGvXDlu3bsXll1+OsWPH1tgvjpTIUs6HLvnJCMjUDVF/Ax+dh+A2tTprKCx4y2dhwYRwY9IQ8bkhyvjc0Ipsazo/We+8p46LKSnHVFRU5JiSmg41cqJ+npSUVCtZmhJZ4Zl+UzI+5ldGIFKdPmYW7KANVNrHRrWyLAsLJtKU6OTN+1cnTZ4rrqZEF16aEhlJPjTILxYC9t4fEdy0DCjeA6tFO/i7XQr4av8HRHXXaYj66z8qJ8KQOLFZFvIEpuSuf72OzdsKoZZWa3tEMzx40/lo3aLmf3jFwr2qpiH4uYmb8bmhxbZ1EaApqYtQFD/nTRkFpFqakJ+B/ALFKFl0N+yiXRXB+dqdjOTz73EdbEPkt//ol51disMPCxZsLMjODPvraOOb8PwyrFz/Q5j2uKMPxyO3XeKaiRtBtPG5OafOtoxPJ02ei6ZEQw3wppRBJD/z+AW3rEJg+T8jAkvp/09YTVu5Crgh8jvg3tkIBQNwhjScEZLqR0nUj6KN79Z/LMQPP+0L63uzJkmYee+Vrni4bRxtfG7Pq6s949NFkudxblVbfcRt+MHXN7IE8aFBfm4JhDZ/gNL3H4s0JVf8HVbztq5O11D1NzBrHmyfmuwK2GqCaw2b6kUb3+1TFmNzwe6wvh/WNAXPjRngiofbxtHG5/a8utozPl0keR6aEk01wJtSBpL8zOOn5pOULAx/VWM1PwopV/zNdbBeye+MxZ9g7rtlK1WXH717HINR1/zGNRM3Aq/wc9NnnW1N56ezr144F0dKNGTR9KJnfLIkN1Z+oW+WIbBxCXBgD9DyaCT1GAhfm26uYXqJ35x31+PDDT8gFLTR/ZdH4v8uP9U1D7cCL/Fz23cd7U3np6OPXjoHTYmGbJpe9IxPlmTyIz8ZAZma9edtfrLeeU9NU6Ihp3xoyCCSH/nJCMjUrD/ykxGgWicBmhINNPlQk0EkP/KrjcDvHpiPwgMHgJDlfEVjI+QsguazfJg/Qb5RJ+uP9ScjQLVOAjQlGmjyoSaDSH7kVxOBAaNfQsg+uCyrDag/Ov+lvhlUf/D7kffgYBFA1p8IX9SfVMuuErva9PzG3jNvKmlKNOTV9KJnfLIkk1/D8es/albZTnqVfEjlaCyEsCD7GlGAzK8IH02JDB/VVQjQlGgoCT7UZBDJL378QgXrENy4BHbRz876IkknXA6rVSfZBV2qJflNy8op8yRV9rAp/yufT/4KRxKfSxQxNWd8MWGrEJnOT9Y776lpSjTk1PSiZ3yyJCcsv9IiFOfdDgSKKwAoY5Jyxd9lQFyqJfzSs15GSM0hqWGkRP0gb2L4svEuw+O/9N0Cq9Jekl/hpaOSmx5fVJ1oRI1oSjQk2/SiZ3yyJCcqv9C2z1D6zuSIzqdcOgHW4R1lUFyoJfz+/NCr2LJrd8Vy8VUGTGBbNvInXu0imsimkvhEF45SzPiiBFVDM9P5yXrnPTVNiYacml70jE+W5ETlV7MpmQjr8A4yKC7UOvg98OTbWPXdzrL9bCodKalHYva4i11EQ1MiglWNWEd+dcdU+XymxxfPvifiuWlKNGTN9KJnfLIkJyy/UClK8ofDPnBovxZlRlIunSgD4lKtk98ND7+C3Tv3IejzYcFE2Vc35d2oLr5PNhagdcsm6NDuMJe91d9cJz/90UW/oWE8rh3NOU3nF00fGlMbmhIN2Ta96BmfLMmJzC/087cIff0WcGAX0KwN/F0vgdXiKBkQl+pE4vfca58g/72NCASDTi/btWqBJ+663GWP9TZPJH56e67nbKbz09NL75yFpkRDLk0vesYnSzL56eWXPuZl2KEgLCsJJx/fDhP/Xx/ZBYTqyvn93QNzUVQS/oro0jO74Ob004RXiV3O+oudnVKazk/WO++paUo05NT0omd8siSTnx5+GWPmoChYCuvgAmjO6iO2jdTDkpE7epDsIgJ1eX6DwSAy/joXtrMy26Hj5M5tMf7/XSC4gkzK+vM2P1nvvKemKdGQUz40ZBDJr3Hwc9YcqdzVit/9FiyfDZ/Pj3nC1VljIVm5/jL+OhuBYCjsNOee0hF3ZZ4Vy6m1aHh/yDCazk/WO++paUo05NT0omd8siSTnx5+/UfPckZGnAGSyPXQnDXk8yYNkV0sBnXl/D44YxlWffFDxVlSk5Pw2LDL0ObwpjGcWY+E9SfjaDo/We+8p6Yp0ZBT04ue8cmSTH56+KVlPQ8gOWy05KBHKVux1dnYxkZ+tmwxNLfRVs3vsjWbsW7zDjRL9eOai3rA7/e7PaXW9qw/GU7T+cl65z01TYmGnJpe9IxPlmQT+NmFP8A+sAdWsyNhNW8T1iET4quNcHl8A8bMQjBkV10xPnzYxBlCsZCXXX8jJonCT1bF8VOTX/zYNsYz05RoyDpvShlE8qudX+CDJxH8ZllFI/9JA5B08qGJoYnEb+DYHAQCFiz1AqfiHY4PQMh5s6MmwTqmZCJNSXnCEym/sidBfNSm84tPrxP3rDQlGnJnetEzPlmSG5JfaOdGlL7xQEQHUgZOg5XS3Pn7howvGrJV40vPXgBr934EoczJwSNsBixHSipzTbT8RlMT9dnGdH71ySIRrkVToiFLphc945MluSH5BTd/iMD7UyNNyWWTYB12TEKaksqd6T8mRw2ShL3CsSwLCzhSUoGpIesvmjuH8UVDiW2iJUBTEi2pWtrxppRBJL+a+dk7N6LEsJGSVau24/7ZbyMUUu9fyj7lvbrvifjdxT2q7Uhd+U3LeqnsvY1d9hqnoSe6yqpZv7oufvqv6O6MjM8dL7aunQBNiYYK4U0pg0h+tfMLrPg3gt8ur2jkPzEdSacc2velvvkpE1HpxUtFXK0Oa44ZWWkRnanv+NxWI+NzSyy8PfnJ+FEdToCmRENF8KaUQSS/uvmFdm+BVVIIOF/ftA0T1Ce/0U8vxSdfbgkzJZXXHLEtG+r1i/N5r/o/Xwj//GMvdO7cue5ONlCL+uQXSxcZXyzUDmlM5yfrnffUNCUacmp60TM+WZLJ7xC/YdPfxFdfbi9bV6S6w7bgGJPKP6vnr2nqyvbst9fhzY++RVFpAO2OaIaMc47Faad0r0vWYD9n/cnQm85P1jvvqWlKNOTU9KJnfLIkk184v/6j1ByQ9YB9Ypg5KV+rNeLVTgOt1Fpd1j9YvwXZz78X9qPDmibhuTFXyookjmrWnwyu6fxkvfOemqZEQ05NL3rGJ0uyDn6hgnWw9/8EX9NWsNpVPyE01ih1xOfm2lfdm4uSQNkHvRGjIuUnagLggLNMq7McSX1PXq2pP4++/AHe+fjbsB+r9VGezkpD6xYNt5R8bfzrO79uakG1ZXxuibF9bQTiYkrWrl2LYcOGOcszd+3aFVOmTAlbqjkQCOCWW27Bpk2bUFRUhLvvvhsDBw6sMc7Jkydj5MiRxmaSN6UsNV7nF1jxBILfHvrXue/Y05H8mztk0CqpG4pfelZO2H66ztySigkmNmxn2fjyv7ORl321tj7HeqJ/vPwhln78TaQpuScNrRtwfxuaklgzWreuoe6PuiNji+oIxMWU9OnTB9OnT0e3bt0wdOhQ9O3bF4MGHVqB8rXXXsOSJUvw8MMPY8eOHTjzzDMdt13TQVMiK17Tb0ovx2cX/oiSRfdEJDDltw/AanWcLLEH1Q3Jr/+9s8rWGQmp/6/MhKij2g33LD/yJh76akhL512e5L21m/Fwzv/CVC2a+PHfe69yeab6a96Q+Y2ml4wvGkpsEy0B7aZEjYL06NEDGzZscGLIz8/H4sWLndGS6g41WpKZmYkPPviApiTarLlsx4eGS2BVmkv4hXZ+hdI37o8IIPn8kfBpeo0TS3xX3jcXwdKSg+ZBrQ/iw4LsQ/9wcEts4NiXESwN1TwB9uCuwAvqebO96vrxzKK1WP7ptygpDaJ1y2a4snc7nH9mT7ddrrf2seS33oLj65v6RN0orqXdlBQUFKBfv35YuXKlA3DZsmWYNm0aZs6cGQF0+/btyMjIgBoJ6d27d0X75csPrclQLlLteJBAohGwSvbiiP9FLhO/u9c9CDUN31ivvvq2YNl2LPm87BVG+VcyamTj9GNa4forjheF8cDsz5FcnIwf9/0ccR4r2YdHbzhddH6KScAtAdu20aVLF7cytm8gAtpNSUlJCXr27In169c7XVq4cCEWLVqEqVPDl8r+4osvcMMNNzgjKGeccUat3efrG1l18F9aDcsvuP4VBD6dDYQCzsql/pMGIqmHvq893OZXbYoXDEQysSwfnEVaLRtNLB9yJ8T+qiVt1CznJU75BnvObnsGfYVTufdu+cmqyb2a8blnlkj5lfXOe2rtpkQhUqMeubm56NixI0aMGIFevXo5r2gKCwvRokUL7NmzB5deeilefPFFdOrUqU6qNCV1Iqq1AR9qDc/PVoakaBfQ5HBY/mRZQFXUbvN71b1zUBosDTuL+kam8qe8zn/5Q+jaqSn+8ccByH5yOTYW78T0v6RHHfuAUbOc9dMccwIL87Prb+ffqIPk6wc3qKpt67b+xBd0eQLT43PZHc83j4spUa9fhg8fjvbt26Np06aYMWMGkpOT0b17d2eCqzIjaoSk8pCamnuiDEt1B02JrA5NvykZX/3nt39W2UhGxVHtzNSDE1adr2gOrkISAlKSkzHnwegnhjZUftd9txNHtkxFu1bVP1fK+95Q8UWbdcYXLanq25nOT9Y776njYkrKManPfZUpkR40JTKCpt+UjK/+85s+6iWEnI9lrIOTXcvWFKkyfFI20mEfXDq+0g/9Ph/O+1UHDM84u87g6zu/zyz6GAv/9xUCwaAT27FtD8Njd1xaY5z1HV+dwKo0YHxuiYW3N52frHfeU8fVlOjCRVMiI2n6TZko8dk7voAdLIXV6pewUmr/17csY9Gr73v2Haze8KMzYVWZjPyJmVGLB6gvZpxpLrYzEFK2zNmhI2xPm0qTYlULtb+NMiZzH6x73kl95/fq++eiuDR80kz6b7rh/y4/tVo29R1f1Ak62JDxuSVGUyIj1rBqmhIN/PnQkEE0nd83n6/GMd++BHvPD2UdtfxIPuc2qEXQGvLYsmUL/jx1uWMqKg7Lh7yJ0X+p9v22PVi7qQDT89fgQFCtNaLe1NgRn/aGvd1R/+E7+N2OBRzeJBXPjx1QI4r6zO/eohJcN2F+RCxndGuPMX84l6YkDgVbn/mNJXzT44ulT17W0JRoyK7pRc/4ZEne+uYTOHJH+H4pvrbdkXzhaNmJheqBY15G0Fm07NCh/MLxvzgKj95yIR7N+R82bS1E/wu74+JfdYzqaitWrMCD89Qy7NXPNyn/24oN9w66lWTLhzk1mKH6rr/B9+Ui6HxGdOi44Fe/wB2Dy5YdqHrUd3xRJaJSI8bnllh4e9P5yXrnPTVNiYacml70jE+W5B9fnYxWez4LP0nzo5B6xd9kJxaq0++d47xOqnr4fakI2aWw7UqGxcVOvQPunY1gMFBlI+Bq5pxUWrlVDa7kT6r+1VF9199fn34Hn3xdUIGlaUoSpg2/Aoe3SKEpEdYcTV0cAPKUYQRoSjQURH0/dN2GzPjcEgtv/8PbT6J1wbKwv/Qd1QPJFzTsfkxpY16GVWWkRAXp8/sQCqqRgrJZIs5aITaQZFuYOym6z3L7Z70M2EHA8sFGCG1atsCe/ftR6py3yhECbF/Nm+41RP29sfJrbNi6Cy2aJOHai3qE7b3FkRLZ/UB+evnxbOEEaEo0VERDPHTdhM343NCKbLtpw1p02DwboZ/K9mdSk1yTzr4VvnYny04sVGeMm4UDxYdMQtlqIJVfuxz6lFddquwnFpTNOLZtS0wb3s9VBNdOmIc9e4ur1SgjNP/B6ueysP5cYY5oTH7e5ifrnffUNCUacsqHhgxiovCzd292VmW1jviFM9nVhKPqTr0+HxAMWs7k1+o3xbNQtmwrgKaAfcCC3wph/sTodvAtv96hc5dda0EtX/0kSn5NyGd1MZCfLDOm85P1zntqmhINOTW96BmfLMn1yW/4U4tx3LFH4PbLz4wq6Flvr8MLr38GWCFYIZ/aV895xeJ8QVM2MOIcVQ2K81P1kc3Bn7c77Ag8lVXzWh6Vg3n4hffw445ipJ13HC78Vd0rMtcnv6igVWnE+GKhdkhDfjJ+VIcToCnRUBG8KWUQyQ8YOGYOgiE1OfWQUciLckfdv/7ndXy9bT8CIRutD0/F9p/3oag4GHauCldSw8qtyr387uJTkAQg46ITZQmtp1/6/3llNTZt2YWUFB8uOb0zzjklui+MqnaO9SdLN/nJ+FFNU6K9BnhTypDGm5/aDC/0w8eAHYK/XQ/4T73GVcDxjk8FkzYqp2LUojw4X5T7xVSNb39pKW6clI89+wKwrFAlc1LpC5pyc1Lpf62Da4+o0ZNLe5+KW9NPcMWppsbx4DfqiTex4fudFZdUi7ndc83ZOOukY13HHI/4XAdRi4DxyWiazk/WO++pOVKiIaemF31jji/4xasIrHkhLMtJJ/aH/5ToFxiLN78Rj7+N9d9vq/IJbtmqqQsmhn8t88xrn+LMbm3Qo9PRFX2qLb7+arfeg5viVS11ZxXXijXQnDXnnekmFvY7E05s5U7sEJKTfJg7Prqvdqq7neLBL+OvcyqWkS+/5mnd2mNsDQuk1XabxyM+DY+VqPKr8zqxnov8YiVHXXUEaEo01AVvShnEePIrXT4FoS0rwwK02nRFSt+xUQcdz/hUEKOfXopPvtgaMVKiTMmD/+8C9Dz+KFz91znYXxpASO1DkwxYAR86H90Sj95+GeqK74lXPkL+so3OlzmVXw+VjZv4YKn1TA6OktjOXJTINUlaNmmCF/5a86qt9f1Lf9DY2QhVXocFwEnHtcWEGy+IOq/lDevi5/qEmgWMTwbUdH6y3nlPTVOiIaemF31jji/w/uMIbl4RlmXfUSci+YKsqDNfH/zSsnLCR0psC0l+C8d3aI2Hb7kI/bNyKuItsw1lk0/UaMejN/VC586d6+zP2P8sxYbvd+Dsbu1x57VnVbS/ITsPPxUWOf9dZkoiD8vnw4IJ0Y8uVT5DPPjdMCkPu/ceCAu0tv1t6ts01ZkMFw3iwc/F5etsyvjqRMQGLgjQlLiAVVNT3pQyiPHkF/xmKQIf/CcswKRf/Q7+bpdFHbTb+IZMyEXxARvtjzwcTwy7JKrrbN++Hf/39yVQv/zVO5VQyEJKMtD28GawLB+27txTZhrKP6ixbef1imWrT3KBUzsfgfE3RXetqgHNX74RzyxajeDBBdeqDdgG8mpYsbWuDrrlV9f51M//t24Lnsxbjd37iuGzLHQ9thUm/unCaKQRbeIRX0yB1CBifDKapvOT9c57apoSDTk1vegbe3zB795HaNtnzmeyVtsT4O90nqusu+FXdcRDGYba1vCoHMhNf3sFO3ap+RyHjs7HHIEdu/fjpz3howIVoyW2VTEvRP1yVtfzW0mY8+BVrvqoGr/4xqeY+fq68A3+Drqg1oc1x3NZaa7PqQRu+MV0AaGI8ckAkp+MH9XhBGhKNFQEb0oZRK/wSx/1Utnk0EqHWmX19sFnOJ+s1nXMW7Ye/138KUIHFzdLTU7C8Mwz8dyrn+C7bWUjJRVHpU97IzbJUyMqPgv5E2KbnDpwdC6CCELFriahtGzaDC/e17+u8Gv8uVfyGzMAoZD8ZABN5yfrnffUNCUacmp60TM+WZKj5ef8Mg+p/WLK3rOU7Ttj45et2+Cxuy+OKoif9hbh3TXfI8kHXN67s7Nny/c7d+PWv7/mmBXng5iKVziH5qQe+orm4GVq2IDvs8++w6LPt2HE4F5RxaOjUbT8arvWhOeXYUvBHiQlJeGM7kfjD5f01BGacw4d8WkLppoTMT4ZXdP5yXrnPTVNiYacml70iRhf8MvFsHd9BySlwnfMafC166EhU7GdIlp+A8a8fHCUo/J+NGqRVRv/GHopju/QKiyAm6cuwt49AZx/6jG4Ke30OoPrnzXL2WKv8rcx4eMylU9hIS87X3oB3QAAIABJREFUfKSk/+ic8g1wyv7X50PexNgmr9YZbKUG0fKr6Zx3/etNfL310Jokqt11l5yCq87r7iYMjuRooRV5Eml+4xRWxWlNjy/e/U+089OUaMiY6UWfaPEFPpqB4MYlYZlJvug++I48XkO23J/CDb/+o3IqlnZXVyof1Ujy+6Bexwy58ETnl2naqFkVczdUm2TLwtwqa5JUF+kNj7yAHQXJzvohzqhJpRVgw9uHm5Irx7yMQJUdhZW9ya9iXNzTqVvx/9u7DvAoqrX9zu6mN0oCBEhAegeliiKKKIqEKvCLeL2oKF71ig0JAUSaYEex14sNCL2IFBGVDiK9Sws1QEiDlG3/853Z2Z3Z3WTLzCZLOOfxEdg55T3vOTPzzXe+4gt/7nobNGEBjCaz4lKTpCp446m7PQ/uRQ21+LwYQlUVjk8VfUGvCVM3u4rXmgslGqwpf2ioI9GZv+Ilz8JaqLSh0DfvB0PzfuoG8rO1L+vr4trLTlgE6PWiTiM6IgxXrhYwV15JaKE/6d/6UCsWTfQuMd5Hy/Zg1aaDMNsEDUljIglBekMYFk3qa59xSto8gI6WnAoJNlJ+PhKa5k8c4CdLJTfzhT93vbgLlNY4uSqmPdlNE6xq8WkCopROOD51DAc7f+pmV/Fac6FEgzUN9k1/veErWvgUYBTjZkhF37Q3DC0f1GC1Su/isTd+xsWcqxB05NIbic9e6uXTl1bvMXOY9kJedDqdFJsMVjNghqUEEI7DmEpREfhurGhcOu7r31CvamUM69PGpV3K6HRARwYs4rFOcq0EzHzW9WXdZ8xsWCTDk1IoiAwNwZzXfffcKY1VtfvvP+/9gnOX8xRD9O3SBI/2aKnJflCLTxMQXCgJGI3Bvr4Bm/h12jEXSjRYuGDf9NcbPndRWENuH8lsSwJZeqfNhtWitNIQDAa8P+xmr4KTSdhS0uYyOxKzVQeDzgKBUvfaCsUCIb8W6Re55wz7u44l/LUX0YZExET/X+ImSZ836ztkwkLkFRU50gaXRGQJBrJqePcGX2n9k/HvpG83IDM7DwZBh6Z14zH64dvUQFK0VYtPMyAldMTxqWM42PlTN7uK15oLJRqsabBv+usNHx3dmHfPhuXyUcAQAV1yJxga36/BSpXehcIQ1FbVatXhgyfb+iSUSKMcPX0FaV+uRbHJIWVQJl9RleIwV7XbhVA1h/wi2ouQXYqYlsZenLMHe7O+XyzZiaWbDzMdDVOsMIMUOs5xMpUNQqEk0AvvDX+BxlBa/xyfOvaDnT91s6t4rblQosGaBvum5/i8W+TeqXOYYaqiWIEZT3oXxt3dKFk5BVi4/jAKjUY0q5OAd9M3OzxgKFi8JHkwuxKbsGJz+2XaEacgJDqdHounKI+xvF3ffScysXLbcegFPfrd0RDPzlgFq5Pxa0SIAXM1tivxFp93q6R9LY5PHaecP3X88dZKBrhQosGO4DelSKLl7N+wGgugi60JoXJdr5kNFv7k+WUk8HR48uI9zdGtW8kuyesPnsL2XWcxcrAjn0xJk39rzgb8ufMsrDa7EkcMNDqkocMaWZEFSBNVHKKGY5mTlw7xV61mMnYeOccat2uciPBQg1f89x2TzpL8kXAUGhochq6vfroWGZk5LEtyUkIspo3QxqC1JEKCZf9xfF5tWZ8rBfv6+jyhCt6ACyUaLHCwb/pA47OaimD89XVYc07b2SSjVDJO9aYEGp83GKjOiPdX4Uxmtu14xaHQkCw69LBikZNNR+8xs2GlUO/MNVf00U0b1gWdGtcsddj+aYtgtBTbnIYBiwnQGWSB0Zxa2xUmej2WTnZoSnJycvDI9FVMqJBimFSvHIVn+7VDm4Y1vJ16QOv5sr7jvv4de49lKvC0blANE/7dNWAYfcEXMBCldMzxqWM92PlTN7uK15oLJRqsabBv+kDjMx/7HabtXymYFMJiEdpnplfsBhqfVyBklV6btQE7D5+HxWxSNrUKSE6MgUFvQJdWSVj0x0GWEM5diY4Kw09jHS657uoMfH0higqKIej1gNmExdP+D70nLoTlWrHN4oRy2ShNYZOrxeGjFxzJBFNS54H8eZxL5xa1kPrw7b5OPSD1fVnfYdOXIduWsVgCUyUmEl+9+kBAsFGnvuALGAgulASM2mBf34BN/DrtmAslGixcsG/6QOMzH1wG0+65LkyGPfi1+PnvoQQan6fx3V3vkzYPFqe4HqSJCCEBwlZMVgvk3r3stEUKLw/g3efuQcNaVXwevlfqXHaUYy9k6aoTI8MunjpY0R8FYSN3HclDR7oYahBxEuYq0VEoNhpxpaCQyS+VokPw3Vht3X5Lm6Qv6/vEm8twOVfpDh4fF4kvXuFCic8bqYwa+LK+ZQRJMUyw4ysPToJ5TC6UaLA6wb7pA43PkrEVxk1KrYgQm4jQ+6Z7xW6g8XkFwqlSH2ZroYwnwiKv6h3uMUYSQswWCq4KQebjy7xlKBiaIGDRG4PwyOTFuGqyIC46DH1vbYBGtatg1q8HMPKBRqhevboLvKysLDz6zmoI1JFVwLeTBqJKCbJdL1sEWbkPDRNnBJkjMhOUlCa84REhSB9fNoKJL+v7zpzNWL8nQ8FJ19Z1MHJgB3+W0as2vuDzqkONK3F86ggNdv7Uza7iteZCiQZrGuybvizwmbZ8BvPJDSKb4bEIueVR6Gp7l/RNa3wpY9IhwMIifJBL77I3fA+6NuS1ecgtNiscZslmRK9zvP5rxsfg1IUcm0ZC5lwrRWulGCVW0ljItR6OuPCSHeuQrs3w0H3+BQLrnTqPIqI47WLp2EfEyjx8nEsAXH9LupV8Xd+PF+3AgROZEHQ6NKsbjxG9Axufxld8GjwyfOqC4/OJLpfKwc6futlVvNZcKNFgTYN905cZvuJ8wFQIRMb7xKqW+HqNmeNwo7WhEAQ9lkz1XTB5ZOoC5F41wWq2Mq8Xgy1UvDS521rWxu87T4n/tEkYcocZeSwSqYrU1ilEm0vyPF8I7JM6lwVkIwGITsuiI0KQJ7d1YUawrsU53okvY/pSV8v19WVcb+tyfN4y5b4e508df7y1kgEulGiwI/hNqY5ELflzH2tEwNJpyoy5viAmfKFR8Zg+exMu5VyDQa9Hy5sSMGrIrRj+1nL2m8lssSlElBny7EKKUlqRyzFMohnRpy0e6NRQAWvopMWiIS2dBQlA+xY1MH6IqxeKM3+TZ23A1oNn7H2xWCTkGSQrpIVYMiXwGYJpSHfru2j9EazafhTFxWZUjgnHs/07oE71WF+WRbO6Wu4/zUDJOuL41LEa7Pypm13Fax0QoWTPnj0YOXIk9Ho9GjZsiA8++ID9XV4OHDiAp59+GsOHD8fDDz9cKrPTp0/Hq6++GrTsB/umv5HwpYyZa3fpdWwYZcbc0jbSl0u3YfnmEzBbrIiMCMHs8f08emd8tXwXFm84KLoG24KgWQ06VI2KQFbuNcfxjVMgNAkH/TysR1sMuNORBXnmT+vxy+4z9rivTKSwAu882x2NaldVTMHd+k77fiMOnr4Mi9mCRknx2HLwNGtPR1B0nFNWWhJ3Qsne45kY99XvijlUignHN6+KuX7KutxI90cguOX8BYLVG7fPgAglXbp0wVdffYVGjRrhmWeeQbdu3TBggCP7aHFxMYYNG8aM/KjOiBEjuFASwD3o/NAwH10N85HVLBMvBTrTN+8PXY0WAURQetdaPtT6jJ4Ni5NWwB7V3RbF3WANwYJpDiPPvmPnwWQx2459xFgjomJDjO8+Y3g7v8LM06xTmHeM8vDEHlbeRou7nDb9xs2HyeTkkkzmOmGhSJ+gzJasJX+B2ATO+D5esgOrt/7jMtSHz/VA7XLQllxv/AVijdT0yflTwx5v68yA5kIJPUibN2+OQ4cOsbGWLVuGVatWMW2Jc5k8eTLi4+O5UBLgfSl/aFiyM2BclaYcMbIqwnq9F2AUJXev9UMtJXU2BEEHMRWemWkw5IX+Pe2pO/HR4h04ezHfjeuvzWhVshMRrPjw2XtxU03f3Xtp3Ne+XYsdhy8xDYUDie1vghVd2tTFqEEdFRj7ps1l2hrnYtDrMPP5+1ArIcZ+ifjL10Vj694ziIsIx8C7m5bbWrob2Hl9P1m0A6u2uwol7z/Xo1yOcLTef1qTz/GpYzTY+VM3u4rXWnOhJDMzEz179sT27dsZW+vXr8cnn3yCH374wSuhhOpv2GDz4pC1GDiwbM6/K94SK2cUmvk3og7+5DLNnA6psIRXrnDTf/6LrW4y4wqoFBWCvAITzLLcL/KorEwekXLQ2BLjQSfgyQfqY+uhXHRoHIvmiSJfWw+dQduGNZlnztHz+WhQI9qFx89WZuBAxgVYLBZ2hBKqE/DW4+1K5Pub1Qew83i+S748MmId2acpEmLC7G0/Xn4Yh8/m2v9N7snkpixpZN4fXvI45bHgB0/n4POVRxVDR4XrMenhNuUBh49ZwRmgj4H69etX8FlWnOlpLpTQ0UyrVq1w8OBBxtLPP/+MFStW4MMPP/RKKHFHLbcpUbfhFJqSM3/BuGGGS4dhFH01rOIZGrqLN0JvesmTxmQm8cPpeEUSY2Q2IOJfSdMhudnawsrb2opB08TMv+SpE2LQY+Ekx5GlPys4aHw6CoyO8PE6nQ4NalXBO/+5W9Fdv7R0mG1uvwynkwsw6YuWvFF+Qr27L9Xvf92H3/8+geIiEyrFRmBEr7ZoepPSVsYfzvxpE+xf0hyfP6vqaBPs/KmbXcVrrblQQhR17NgR8+bNQ1JSEl5++WW0b98egwcPRl5eHqKjo8UcIQD48U3ZbCj5TWk1G2H8ZTSsVy/aB9fVaoeQ2/5bNmDcjBLIh0b/cXNQbHJSOOh0CCGDT1hBQgklx7MLGzZ8TmYgrAPJgUZ88Ts7tEhXHWn1dIKAvvc0wGN3uY+z8ciUJcjOJ+8aC6ju4imuHkLbD53Fmu0nkF9YjGpxUXioe3MkVIpUsNhnzFyHWOUmUBpVLkvDVuclpvX9af1ZnMzMRWiIHh2bJOKRHq3Kbb+5w1evXr2gwcPxabsUgXy+aIuU90YMBEQooeOXF198EYmJiYiIiMCsWbMQEhKCJk2aYM2aNbhy5Qqee+45nDx5kv1es2ZNLF68GHFxcW5XhWtK1G1W55vSWpANy6mNzNBViK4Off271A2gsnVJDw1mgGo2Qy/okFgtDp+OvNevkQZNXIiCa0aWR4a0GUvfGIT/vPcLzl3OY/0Zbe68pImwkjRis+UQa1OoVsqiK6pPJJsQNx6+IjaXCzosdaOlePbNFTiZlWuTbByaGn+Eh35j0+32J1bCrjShYbD86dcvst00eubd5TibRV5IjvLIvS3R/44mWg2hqp9gf2lxfKqW16P3nLreeWutGQiIUCKBLCgoYEKJ2sKFEnUMXo8PtV5p6RDk9h4Q0LBWHMJDQ0GR3h/u3hpN67oani744yAu5RSgZtVo9OqsjPvhzOLkWetxIesqQkND0L1tMu7vKLrkDp2UjuxrpD1xFGdvXrnsodCguLFgaVs/GROeuFUxfJ+0dFjMZqW6xepfPJXUj1dh3+lsm1AkRrJVFJ0eS6f4HjxO3a5ztB4wPh2ypWQXmibHY+qT5SsMSwivx/tDq7XRoh/OnxYs8j4kBgIqlGhFMxdK1DF5vT00flq+Bz+u31/qpAWLGUN7tMGgbs2waP1BfLNyDywm0T5ENFLV4aYacfjgv6J2JT8/H7NW78W/+nWCqxmq61Bv/28d/jiQyRLh6UP1iArRI5u0LeztSmckNtsSm/bE2c1X3mPr5gmYPLSbUigZPQcWNxqNycPvQut61XxacFrfqLhqWLc3A5Ujw/D54h0otliYdkcvWLHIKYmfT51rUHnAOMojpOyoce2qmDZCyYkGQ/nVxfV2f/g1yQA24vwFkNwbsGsulGiw6PymVEeiM3+vzdqAHQdOKzoVj1KUb/HoMAvefz4F/3l3JYpNlP9F+eYTKN6Inuw+BTqndOgwdAKWurHfkAZ85dPVuJRXhH/deQvual9Tof4dMGEeTIUmyswHs5G0KVZYdQJ0tlMTZQo/6tF94LY+aXNctAcEceSD7dG9Xen2DT/9uhdLNx1BUbEFgs4Ko9HM+qIorU+ntMf9neqqWxCNWw9/cwku5RYpeu3fpXHQ2JXw+1fdgnP+1PHHWysZ4EKJBjuC35TqSHTHX4ot+y31bDGB5XRxKYIOj9zbHD+t2SeGeZeV0o1Syb5BNBYVA6QJWDJ1IA5lZOHlT9YovVcEHWY80VYRPG3tjhO4kl+IxCpR6NwiSTEuJQMUJQRCoENMTDh+HNPbBfrFnGt4bNpSxe9k0zLpsa5oVb90TUlfymBsE8BERxu5MOZ99Fp1q+Z96937juDbdcdx4co1GFiSvQS8OkR5nOV9b9rX5PevOk45f+r44625UKL5HgjsTWmFad8iWHMyIIRGQZfUCbrqzX2aQ2Dx+QTFbWW3QsmY+QBlv7W9dN0Zlur0Ah7p3gKz1uyDVRJK3FV0+s3+T9spDOlfBL0Aq4n+RgKFZK8q/cUKilFSmnbFHxY+mLcNWw+dtTdtViceY4beVmpXizccAoW1t4sibjIAd2xeE2OHdvEHkuo2BcVmTP9xIy5m5SMiIhQ9OzVA3Tiz3xFxVQPyooPr8f7wYlplVoXzV2ZU3xADcU2JBsscyJvSuGkmLBkUAMxRQntMgRCn/EIvbRqBxKcBfV5Zx/caPZd5zyh4CAH+l9oPw6YvQ2GR0X5JtO+gvLl6F0cUUSBxlVzkNiEOLQvpURwmruyoRhDQuG51vP2ka2I8d1ycOpWD5GT3XmVU/9i5Kzh/+RriK4W75LRx19+yzUfx+ZIdtkuUx8b1wKhlg+qY+vidWiyNz308/uYyZOUW2NvpBB1G9m6MLu3LL42Bp0lUhPvD0xwDeZ3zF0h2b7y+uVCiwZoH7Ka0WlE0b5gYnlNWDG0ehr5RD6+RBwyfFwguXryIx979DVa9gNgwHX4c5xpQzBt8FG/EaCT7UjE3jZ7ierwhxvVY+/dJ/Lj+IC6eyYVFEA82xDBmjj+luCIU3VHKmOuUN1eZOM/Z91fufiMIWDq19KzDvVPT7e7FDIdOwMcv3I8kWXh4L+hzW6X/+HkwmWwHOE4uwDS9ZdMG+9u1qnYXruRjxDsrXPq4tUk8Rg0NDk8bdxP0Zv+pIkZlY45PHYHBzp+62VW81lwo0WBNA7bpLWZRKHEqhjZDoG90n9fIA4bPA4LXPt6AvzIo061Dw6GDgJ6d6+PIqTw0aBSKEfd09qgpmbtuP46fz0FcZBiG3tMC0RGhpY48IC0dxRYpqZ5jbCYc2IKLSQH8pI4UhrSyYx37QPLfrMDSUl78r3z0Gw6eznTBWDU2AjNfuA/R4aXj97Swm/efxtfLdyG/wISrxQWwmgUW/o2OnmrFV8JnL3m/NzyN5cv1k+euYORHa1yadGhcFamPBIenDRdKfFlR7+qW1/PFO3Tw+Hzxth9er2wY4EKJBjwH8qY0/v4mLBf2KlCGdBsHXXzpMTjkDQKJrzT6eo+ZB6uVvGIchRQd9o/7cACFAp7o3gD169VGi5uqgZK1rdx6lBlyhuhDUK9mHI6eyVJ00CQpHtXjwjFycKcShz92Ngfrdp3CpZx8xISHIlSnw/nsa9h3MQN5l3Si4zC5zOoEQKdHZCjYS965KA56bP8gbc2yUjQlA8bPQ7FROW/ql6K2jujTFvd39C0Px+INR7FpzykGrUPzWiDPlWBYX8KwYstRkNFuo9pV0alZLTw8eTGuFRYr8D1yd330LyGqrQa3n+ouyuv+8BY4x+ctU+7rBTt/6mZX8VpzoUSDNQ3opi/MhmnPPFizM4CQSOjqdoa+rm9GjAHFVwp/vdPmgkUYlRVRI2Fz07UdkbBcMeRWq9OhqNgkna6IrayAwUBRVSnyKrWVaT7IcYYZeupgMNBRjR7xMeH4fNQDrH5BkRHLNh3FP2euQKcT0CS5Knrf1ohdW7ntGA6fugS9XoebGyXi1ma18PR7y3E6M4/FOGHHRHbsYkRXW3YEdp28dUoqgyYuYGOTzay86HU6DOvZGn1sGLzZeu+nb2HHU1JhDFhFvQjNPC46CpMealYuhqTDpi9Bdp7D1bf5TQm4r219zFq9G3kFRpZfqHPzJPRoValc8HnDL9Upr/uD4/OWAXX1gn191c2u4rXmQokGaxrsm7688PVJnWt3XXXQfA1Wa6RS8GA2FzpY6GXrFGRLTJ5HhpORNrdfW9I76SjGJtiIMUzoCz2ECRqCxQoWS80WTI3+RkqRRkmV8fbTvoWr7z1uPqwmk2ijogOWTvFss5GSOtclbkpcdDjSHu6MpnUTvN51QyYvRv41x4vfYlXGayVMT3dvhAfuvtnrPrWoOGvVbiz845CiK1qD2eP7ITRUr/i9vPaft/Pk+Lxlyn09zp86/nhrJQNcKNFgR/CbsmQSWdwOhaGu9I3vaMMijxp0MJssorDi7MJLHrk627GPzLZDCtEhaTDs7ZyHYP+W/WjQwVJMGhgSVIxYOHlIqbvAn/U9cOoURn+2meWkEawCkqrH4vaWtTGku29eKINfXyhqXZjFiBmCVdQayUu1yiH4alR/DXay9128n74Vv+9yaHCklu8+0x03JVbmQon3VHqs6c/+89iphhU4Pg3J5F0FJiGf1rzyMPPqGC3vh8bLH61DVnYuvk7rjZTUOW4nw6KiWuR6Dedqjuy7bqKz2yrLtChSc3dxS2zXpEv0hb/E5snjDlx58jf8nWW4cNmWzI4i1LoBWKdqBGa+7BqgTd2uKb31/HX78f2afYpKdDw1b6J/3lWBxOqp7/JcX0/Y6DrH5w1LJdcJdv7Uza7iteaaEg3W1N2mtxoLYPnnV1iuXoIuojJ09e6EEF5yvAoNYJTYRbDdlClj5oJccx3CBR3RCAg16FFQZIbF5ksiBpYXX8P0J7OksNl2lCJr2FxsHNFIvIinBotFj+XT3SetK4m/EW//git5+WhVvyYaJVfCnW3qIqGSGClWq3IqMwejPlmLazZtibsIrjOGtysXm43n3l+J05dybesD3NqiNl75P9dIrcG2/5zXhuNTt1s5f+r4462VDHChRIMd4e6mNP46EZbLR+296+JqIaTHGxqM5nsXgXhoZOUXoEq0IwP0hK/W4ej5PITo9TBbjSgutiA01IB7bqnjNsfJwPELUGwyQdDr0TypKlo3qIYBXRvj1OXL+O9761zz2OgEMHsKmaqActrIf5AOaKrHhSEzR5lrRWJNHm5EzqTBKmDhNPexR5z5o4Boz36yiolJVCShp0bVaEx8vCsSK3uT8s/7dVz793F0aJoIwIC1u/7B10t2wmLRQaez4LHebdAiISQgQgnZjWzYc5rl2KkSG47n+rd1OZo5dPoyLl+5hiY3VUeVaPeuzoHYf96z57kmx+eZo9JqcP7U8cdbc6FE8z3gfFNac06jeOUYl3FC7kqDLkHpzqk5GDcdqnloPDZlCS7mF4g2GTorKL4H5S8hTQflwNMJVgoGb/OCcQxu0Iu2DxQ07POXHkB8nCjA/LL1OH5YvQe514pYH1HhIaiTEImutzSwu8r2Gz8XZhN56IgiBPVUu3ocMjJzbVHnbaIFE0oMaFatMu7snIxWDWuiVhVxnJEfrME/F64AFH7eJq3YZRjnwGgAQsNCMX9CP7fL4cxfSuo8FgLfWQNDhqz3ta+Poff6ZjdCg+4+mon3521BXkExQvQ6tG9WE7/9dRxWNntxvrFREfhhrOsxjZr1LWn/bd5/hoWLl5fYqHD8LzXF5y0bCHw+gyilAcenjk3Onzr+eGsulGi+B5xvSsuV4zCufs1VKOn6qs95a7QAq+ah0St1jkuodhZ4TLJvoHem3fXVYUxKr1F6uZJXbUJsOJKqVsJrT3QBxS4hN16KQyKw6Ks6REWEollyVTzbrx2qxDq0L2+mb8bmXWdgtJgRqteha+tk5BQaER1uwL3t6uLjhTsRXSkM3Vsmo3WDGqjm5ujku5W7sXzzMRQUFYnOyOTpS8ancmIFYOnUkj1qnPnrkzqPGZ06SyUklHRpmYSnet/i87INmjAfhcXK2CaSUCZ1RrwvcRMfRc36lgS0JEPWL165H/FxvmmCAoHPZ4K5UKIlZYq++PoGjNobsmN+fKPBsrtoSiwmFC9+FjDaDBRtY4T2mQkhLFaDEX3rQs1DI2X0XMURiTiye4sOm6xSIji5jYgspYytRwF1E2MQFh6KYxnZTKApKCJXYNG9VHSgERAdHoKrhUabFsWGQxAQE6pH7zua4P+6uU9WSFmEd/1zAfkFRvy+8xT2HcpGkd6ESlHAt6P7lkqoi6YkbY5LDBLqgISSIXc3Q89O3ge2o3ZnL1N49p+VGGyRZ52BDe/bBr07Bj542oz5W7FOFh9FwvHVK71Qxab18nYXqtl/3o6hph7Hp4Y9boirjj3e2pkBLpRosCfcPdQs53bBdGAZcPUihMgqLCy8LqmDBqP53oWah667eBtiQHN5srqSMTmLLyXZdIjByWzB3iVNjCxgmVygKakPSXhhuXH0etxxcxJeeLDkqK/eMunM38qN/+DDJX8xTY8oLolyWpfWyRj1kKuhp6dx3Akloruzq6/NRy+lIDleaUyrZn1Lwrb14Hm88f2fisuVosLwTarvXj6BwOeJU1+uc3y+sOVal/Onjj/eWskAF0o02BEV+aZMSZ3tePHauaKIp2R0Kr00ZaIHvadJuWGLC+IalcTWiS1EKmvpHJfEaURlBl+lMCQ1df6TaWIo0FkpxzKelv6nX/fh4KlLKCosRNumdTDwziaKJg+9vgjFsKB1Ug2M/XcnFpHW3zL4tfkocApN73x8A0GPpVNdPYS02H+vff07jp3LYYJQ7YRovPHU3Zi9dj/+2HkChUYLKG/P8/3bo3Z13zV9WuDzl1dv2nF83rBUch3Onzqg432MAAAeJUlEQVT+eGsulGi+Byr6Tdl3bDokT5fwMD06N03GtYIi7D52AcVmC8vYe81oZEHCpOJOm+H20EeR6E6mGpGvktSQBB6b3ScNZbO9tWsqXAxFYEX/O+pj2P3tfF7zJ99bgXMXcu1GsqS8GXpvKwy6q6nPfTk3yC80MbsYeTl6KgvT5mxCXkERQnQ63N46Cd1vroO0L/+AyWREbGwkvhnl3shU7f6b+sMGbDtwVoGnSXI83nhSm8y+avGpJtxDBxyfOoY5f+r44625UKL5HgjWm3LJxiPYffQCiooKcf9tjdG5WZLmc7+UU4Df/j6B81n52H/8MrKvFshsPpyGs0VWZRoA0eZUaZ7iRmohjQysOlErwxoojWmlPlhTp6hq9Fv3m5MxcpDvRyq9Uucq8uzQyOQW+7/UPn5z+OGC7fht5wmYWORaAbUTYvDRSEdG3/TfD2PzruOonVgFLwxs7/U4avffU+/8jMwrVxXjxUaE4n9p/s9V3plafF4T4WdFjs9P4mzNOH/q+OOtuVBS6h6w5JwGivIgRMVDiPIuR0kw3pTvpm/Dn7tOwEReMlYLdFY97u9UB0/38c6u5fX//Ylzl/JxKecqBTcHis0whOrw0oAO6NQ62c7hNyt2Yd/xiyxZHnm1kCbln4xsGC2yjLsUqVUHLHtjMAaOnYcis4UZqjIXXVt2GjF3jZMJrVXA+yPvwMz5B3E04wKrbJdbbH9RGM86rSxVee/Ze9CwVhWf7vtp32/B+n3HmdWMonjw0vE0SL+x6SzsvLwM7NqExXHpl5YOk0WWwU8QsLSUTMRavvSfemc5Mq8ojbLjoiLwbWovT1Py6now3h9a8ucVCSoqcf5UkHcdRMRVN7uK15rblMjW1Lj5E1hObbL/om/WB4YWrmGznbdBMD40/jV1MbKvFsFaaAJYgjQxTDsdDTyRcjPq16yCJslVsGrLcZy5lI1OzeugaV3x5f3MjBU4dT7PEcDMOd+MTV+xcPJAPP3uCmTlFaDIZg9Br3E6ziFPGRJSmKYDAqY93g0t6sez/rOumLHirwPYfSwTegjYn5EJk1XPEualdKiPjIvZKDKaUCu+EkIMAlrcVB1dWiXhmQ9WwmQ04s6b62H/iUs4ezkHOsGAi5fzbVFDJLGG/hQQEqLHAjdhzz3dxhN//B3b9lxwDeDmITtwaf0ePJWFUZ+ucanSsn4ChvVoiZEf/eriel0zIQafvdjTE1zVYchnzNuCdTtPKcZp2yQRY4fe7nFsbyoE4/3BhRJvVs67Onx9veOJ1/KOAS6U2HiyXDoM49rJLqyF9vsUQkjpocOD8aZ8aOJCZp9AL2fnXDHiMYdNMyHz8KhdLRafvHA/+o+bh2IT04/IisxkVfLEhYCYyFDkXCsSj05szih02WAQMCLlFtzXoQG+W7kX2VcLcfFKAXYcPScLHU9NxIR10tGMaNwpBmnTkXBDCCwCalWLwT0db0LvjvVhoEx6bspbszdix+ELgMGKto1r4+UB3mmF3PXV2xYKX7wmzr11o5qYPKyLd3eWU63s/EL8a+oSl7a3Nq8NfQjw598ZLtciw0IwZ4LnRHu+7L+NezLw9YpdyL1axLIpt6iXgLSht+OjBdux7+QlljyRNEsvDFbvtSRNyBd8fpGrshHHp45Azp86/nhrJQNcKJGEkoytMG6a6SqU3D8dQgyF+C65BONN+fj0JcjMpjgfbvxfrCSoWJg2Qyl3CFgwdRAGpKXDKj9KsFWSHzwogqK6tWClfDZmmM16h9csHV24SEg2hYS8D0kzI7OWlS5T0rfbWicjpUNDNLFpdtTc1LnXinHo1CUWEr91vWr2rl76cBWOMG8UkacQgwELJnoWEORYTl7IwakLOUwsTK4ei/Ff/8G0SlLR6wR88XIKzlzMw9iv17pMo3rlKHw5yvMRii/775Epi1isFnl59L426Hu7b7FVfOHcF3y+9KtVXY5PHZOcP3X88dZcKHG7B6yXjqB47SSXa2H9PgNCHFFG3TUOxpty/6nLePXjNa5CADMItWkg3MTBuK99Pfz690kYKYa8rDjJDKJmxOb2W/JNJQlEAqvv7OIqd/V1KzxRx3bbEXEUpvehHDg6gQVYG3pvS/Tr4l/o/t6p6fb8NaSVqZdYGZMe74roSGUOF1/W99ftx5BXWIy4yHD8uUep/Xiwa1P8vOUozmTmIjIyBI/ffwvq1RSTNPZOm0Pyj70Qtcu8dGf2Fl9BsRlDJi5wWa4OjWsi9ZHbAvZs9BZfwAB46JjjU8c8508df7w1F0pK3AOmLZ/BfHKD/bqheT/om7vPhyLvRO1N+dGi7dhx+DwzSq1RKRJTn7iTBf9SW8Z9sw47D2eKb3aZVMHCxLPYXDZVhE0zQa/81g1r4NjpS8izfU0z5xeZskUURmQKGNaVIta8DLajIROEbKHp7VoW5gGs7NCdNkbqkMG1nfRIc6AjjtmveV4jZy5LCp/f/47G+Pd9rRXVvVnf4mIzhr/1M3ILCllbsqehkPk3JVay99WsbjxIMKEy8LUFKCQ3akFAtUoR+PKVFEz5YSOOnrmMKpFheOfZe71e/tLwnb6Qi8jwEHsUVjqacxYOb2+ZhJc0PK5xBu4Nf15PNgAVOT51pHL+1PHHW3OhpNQ9YM07B2thruh9E1nVq/2i5qb8cc0+pK/brxindkIsPny+h1dje6q083AGxn+9SfRcERyBx8jolWKP2HQmrBt6QSZVi0Gx0cLceq8WG2ExiTYeohQj87u1u+gCOp3AvErsGXyZl4wobND/mXaDcs6QhsMFsE2gcecO7CZsG8Np9ycG6AiEDG59KV8u3YbFG4+5DZZ/V5s6eNHpBe3N+r49ZzM2yDQjLL+OIOCWRjXs0OrXrIyH72kBivtiJrUI/Wch/oB6NWIx4/n7fZmGva47fOQO/tOafSgsFo9qalSJwicv9sRzM1bi9MVce1vCOOHR29GqgQOnXyBKaeQNf1qP6Ut/HJ8vbLnW5fyp44+35kKJ5ntAzU2Z+sVvOEgGhrJi0OuR/rpv9gvy9pdyrsFosoAy9YaHGvDMuz/jylUyehVLREQo4mPCmaEjuf1arBb2cowINyAsRA+T0YpsMl5lEoBNyyI1Ju2GjgQMRyRWlhHYCpjMZlgFnc3PR7JdpWtiXA4SSkShQizOcoh4lVL06exjsMR/Mg0J/ZVGkDoJNegxz0cPm0k//IGte8+53QcDujbxS1OS9uVvzCNIKszzCEC7xg57pNtaJuHuW+qi12hbkkOZhGYQdFg41TfhShrL3f57dMpSu9ZGqndnm5vw/IPtQALUmUv5iAzT44GODdC5pfbxa+Tkqrk/NL9Z3XTI8aljmfOnjj/eWskAN3TVYEeouSlTP/sVBzOyFCjcCSUTv/0T57LyERluwKP3tkarBg6jTHnj71fvxf6TF3Eh6yrzoAkR9MjMveoiCFBIdNKSmMz0Re/oIToi1H3wM0kwIOFCAHQ25Qm1pb4iDHpmS+EcSKR53QScu5KHmMhInL2Uh2L6credCYneNbIjJB1QOTIC34115FeR232IKEX7FKnc0jgREx713SMmZcxc19wygg4/jE1BbGS4Yj08re+eY5mYtWo3DmdkiZohG0DSILVvXJMJWo2SqqLP7Y1AhropqXNcdh1pf5a8Mciv3egO34Pj58PsZKzcKKkKpj91t19jqGnkiT81fWvRluNTxyLnTx1/vHVFEkqsZlgL8yBEOM7ty2OB1dyUc9ftZ2p2eUmqFocP/nsvNu0/izMXsjH7t/2OOCB0BCMAbZvUwO4jF5lGRK8X0LRuVTx4R1Ms3XgE5y7nI6+gmHWZe60IVilgl1014RAG3DnDyNLMibCY04wVyYmVEBMVhn/OZaHgqskW8l06ppEJGNJk6LiGBA92QuOwO5HsRsSI8UrvIKr/6Us9UbNqtJ2St+ZuQV5+IZrVTkCbRvFYuOEoikxmtK+fiAdub+DXkg+dsgi5+UVML8NUMYIVaY/chk7Narv0V9r6/rLlH2w9eJZ1QVmIKRsxCVt0JNOtbV3sOHQBF3MKYLWaYdDpMOO5e/HsjJUuY4SGGTB/gueYOO4m6w7f/72+wL5npDbtGiUi7V/axB7xhXQ194cv4/hbl+PzlzmxHedPHX+8dQURSkx758NycBmsFjPzjjG0HAh9g+7lsr5qb8pPl+zA30fOw2g2I7FKNKY8cRcG2GKFyI8upMnRi9uWSFf8iRxl9EDv2xri7KV8kCsqBTPLzad0cZTP16YUsJ96OA5OyOjR7o3DBBCBHZ2ItrGinYiU0sbVHsRBNxM0FFl97QoRVsmlrTznjWzVCEvlmAg2v/AwA/rc2hD3d/JP8Jj6/Z/Yfug8jCYrO8pKqBSJSY/fgeqVHQKPNxuG1leIqIxvft7F4q3ERUfgiV43o061WEz7cSOKZYn0snIL0JhpRRrjo0Vbsfufi053HJCcEIdTmTmSjohx0+vWhniq9y3ewClRaCo2mxFqM5Ce8v16bD/oOKIKMegw4bE70SzZOzspv4CU0Ejt/aElFm+FukCP6Uv/nD9f2HKtG+z8qZtdxWsdkOObPXv2YOTIkcyDpGHDhvjggw8U3iT0Inz11Vfx999/w2QyYdq0aejYsWOJ7E6fPp3Vl4o15zSKV45xetjrwNx3DWFlvkpab/rRn/+GfcfJa6bk4hxendT/NzdIgN5gwOmLebhWZEROXpEtoqpMKHASBpT92LQdJLzI3WBc7D9cY58wMUc6iZHaO0kikoAlCSlWGCBAFo7eNl15cDd6Y08efida1XV/XFUSQ4MnzMe1IpLWmEmvLYScgMqxYZjlY/4aWt9xP+xmnEolIjwEP6T1weTvNrh4s3S7pS6a1UnAsOlLYDbL8vzYPJ5G9G2L2b86jJspz8y4R7sgUaYd8mUTPz5tMbLyRc1YXHQ4Xh3SGU2Tq2LVX8dx4MRFdrTW547GPgtjvmAora7W94dWuKR+OD51jHL+1PHHWzu9yq0u+dHVU9SlSxd89dVXaNSoEZ555hl069YNAwY4VNNr1qzBt99+i++//x5nzpxB79698ddff3ktlFjO7oBx/fsu9UN7TIUQ56p+Vz+j0nvQ+qZ8bPoSXGSBz2zFbXAyV0x3tklGpegIFgzsbNZV5OSTcatoKOocJ421tnvTKCUQWcwyH6gTBRV725Iwy92JmXQicxu2+QI5Y+3QpBbG/sv7OBqrth3DzIXbXYQFpv0xAMsmD/ZhXsAPK7Zg3gZlGHbq4L8DOuDE+WxkZDq8Wej3h+5ujrnrDmDzvtNuxhGw9I1BuHAlHwdPXUaI3oDOLWr5hEdeecqs9dh26JxifROrxuDjFxyJ/vzuXKOGWt8fGsGyd8PxqWOU86eOP946wEIJaT6aN2+OQ4cOsZGWLVuGVatWMW2JVMaPH4/GjRvj4YcfZj+1a9eO1alSxX3iNGdNieXiIRh/m+KylmEpM4CIymW+xlrflC/MXImjZ7IV8xDf5eI3P0UXJZ6dC8XXIO8ReklezinA69/+oUzyJgki9rhn4tGNc7FrPZw1HUzfIBNgJKFGAOhrP7/QCLPZYlfLSEc/8rgk0liiZ4/4v5qVw1Fkplw1Omag61xa16/Ogpp5W35cvRc//rZfzCwsL7Z/Lp3mm1Dyv+VbsGiTq1DyZK+b0aZhDazefozZ8ZCnE/27a+tkPP3eCvYb48NexGO3JV4m2vNmvv957xdmQCxfRsLx03jfY7d4M54/dbS+P/zBUFobjk8do5w/dfzx1koGND++yczMRM+ePbF9+3Y20vr16/HJJ5/ghx9+sI/8n//8h9Xp1UsMod29e3dWh456qP6GDY4AZnQ9JCQERqMyNHYny0YkwOGCmYEk7NTdXGHWd312HbdROuhFWz0sH+eLY1zm2iwqE1VClNle/8xNhsCMTMXC0szILFkpXAazIZEVyc5EbOBQqMToCpFvCZdS3LCLMWEmxOvyUSssB9uza6EQIfKeRFGKaWpELQoTa2QuviSX3FbphL3Nxpw6sEhGLLZf60Vko2aYUkgrbaGvmsLxd54t7oZMsJJElC6y8bzZMMVmPbbn12JxXexFANpHn0aoXhn5Vrr+d14tFFt0MFqVQfBaVDqPShADrGlRdubXwFWT8sgyRGdFh1hXIUqL8XgfnIHrjYGEhAQ89thj1xvsGxav5kJJcXExWrVqhYMHDzJSf/75Z6xYsQIffvihneS0tDS0aNECDz30EPutQ4cOrE7Vqu6N8Jw1JVJHlrN/2wOd6ao3L7dFLAmfWkATvl6HK3nFoPS5lSJDUKdWFTx2XyvW7cDx81FodGhL4qLC8P3Yvm6H7Jf6I0xkCSsVq4CYKAOqxMYgPi6UJbGTTvFYIjwKhib7wqff5F/3v+44jiKTCT07KPOlmM1m9B03X+FqK0UmMQgCurerg5XbjiswUibcesY9dpuhxRuO4qc1e1BYZITeoEOTOtUw5fE7fKZy9KdrsfekaGTqiBkroHJcGGaN7uNTf7S+yW17YdVfx3Ct0Ijw0BD06FQPQ+4qec99uXwn1u08qRhneK826NqahE3tyrKNR/H50u0Km60urZPw4kDtEuqpRRuo+0MtLqk9x6eOSc6fOv54ayUDmgsl1D0Zrc6bNw9JSUl4+eWX0b59ewwePBh5eXmIjo5mgsrixYvx+eef49KlS0xTsnPnzhLXhm9699R88fNOZF6+inq1KuOhbs1K5a9Gm544ee4KqleNwlMpbRV1C4pMmLV6N3QWHVo3qsZia3y5YidOnc9D9apheLaPb9l2f9l2AqfOXUHPjvVYwLRqNSpBivyxaMNBrNx2DBYTQHEzKLx5oNb32JkrmD5nEy5kXWOamvo1KuPtZ3z30PIX37LNR3AkIwshej3aNknErc38tx0p7cH16qSZqFq/LYwWM1rXq45enQOXXM+fB6i//Pkzlj9tOD5/WHO04fyp44+3LgOhhI5fXnzxRSQmJiIiIgKzZs1iRzBNmjQBGbnWrFkTjz76KLKzs5lQMnXqVNx1111cKAnQ7uQPDXXEcv44f+oYUNea77+KzZ+62VW81gHRlEg0FRQUMKGkpELXw8PD3Rpbytvwm1LdxuP8cf7UMaCuNd9/nD91DKhrHez7T93sKl7rgAolWtFFxq+33172kSi9xc/xecuU+3qcP86fOgbUteb7j/OnjgHeWksGrguhRMsJ8744A5wBzgBngDPAGQhOBrhQEpzrwlFxBjgDnAHOAGfghmOACyU33JLzCXMGOAOcAc4AZyA4GbjuhZKffvqJuRZTobgnTz75pILp06dPs98ohkZMTAwLfx8XF6d6NTzl9zl+/Dief/55REVFITc3F++88w7zPiqr4gnfqFGjsGPHDgaHuCFX7aVLl5YVPHjCR3FTCCO5il+9epWtMcW2KaviCd8XX3yBL7/8ku0pKsOGDbNHKC4LjJ7wSRgOHDjAghRS/cjIyLKAxsbwhO+ff/4BBVGkGDhFRUX47LPPWFqKsiqe8J09exaPP/44i99D+Ci4YzDdv8QTRcumnGBLlixB/fr1A06dJ858zWnmD2BPGKhP2vNPP/00hg8fXqb3pD/z4W1cGbiuhRJ62VOenS1btsBgMKBTp05Yvnw5qlevbp8pRfJ74IEHWO4depFkZGRg4sSJqveCp/w+9MAlN+eBAweyuCyzZ89mrtFlVTzhk+N49913maBGD+GyKp7wLViwAH/88Qfef/99lrjx3LlzLApwWRVP+MaNG4eWLVti0KBBZQVJMY4nfJKwmZKSAhIAKLcUCZ5lVTzhGz16NHr06MHukTlz5rA0E/TBUFbFE77XX3+dCcH03Fi4cCGLq0T5usqqeMK3ceNGxtnvv/9eZgKTJ0y+5jTzh0tPGCh4J30g0DuAhNwRI0b4MwxvU44MXNdCydq1a0GaEhI2qFCgts6dO6N///52Su+++258+umnLIT9vn37WILAdevWqaLcm/w+b731FsjlmfL8UDRbCr8/adIkVeN629gbfFJf9EX473//GytXrvTomu3t+J7qeYPviSeeYOt48eJFxMfHM8GyrIo3+J577jm0adOGaR/oK5WiEpdV8QYfYZk8eTJ7MJPQSS+MshJKvMUn8UVaRIpZFIz3B2H85ptv2Nf3m2++WSZL7At/FHhy5syZAdfieIPJ15xmvpLpDQapT9r79NzgQomvLJd//etGKOnbVxlCnQKz0VfW1q1b8fbbbzMmaSOShExqO6m89tpryM/Px0svvYT33nuPfV3s2rXLa+bHjh2LvXv3KuqT3zslEywtvw+97OlFWq1aNdDf6cufBCOti7/4JBwvvPAC00Dcc889WkNj/fmLj44cKleujKFDhzItU3JyMujrVeviLz5KlUBaN3opkGBMwi8JxVoXf/HRHqf74rvvvmMaxEAJJf7iI57279+PIUOGQKfTYfXq1SWmmVDDqRp8NO62bdvYMSwdlZSUMLQ88ZWVUKI2p5kajqS23mDgQokWTJdvH9eNUFJYqExiRg8yUl1SOHs6j6ZCNggU4p5UrlIhdR4dARw+fBjdunVjKlgSTLwt1N5ikWd6BXuIesrvQxhGjhzJjpdIQ0Nf1qTZ0br4i49w0Fl569at2cuB5hSI4i8+sg8i4ZLW7MqVK7jjjjuYnYLWxV98chwUlbhr165snbUu/uKj++CVV15hX4t0lEjaiPvuu09zbZi/+OQ80dEIaTvpxa91UYOPcJGWk4ROSuoWiKIGH+EpK6EkEDnNfOXTGwxcKPGV1eCrf90IJe6ou3z5MrspSWNBL1U6uklPT0etWrWYdoSMEDdt2oRKlSqhadOm7AFDwg09rNUWd/l9yL5AGpdw0RHOzTffDDJ6pWv01VVWxRM+wkFfp/QlXZa2LtL8PeGbMWMGq0pfqSSM0J+BEOpKWg9P+EjQJe1d3bp1mc0LaeKCBR8d00j80fwIKwkmtO/JsLQsiif+6HiOUlE0a9YMhw4dUmgegwEf2amRlpXsSUqLSh0orJ74k8YtK6GExvOEiez5fMlp5g93nvKqSfubH9/4w25wtLmuhRKikAQNEkTI0JWOIUiFfv78eRYB9ujRo8zAjwyf6GydvEy+//575hGjtrjL70NCkjTun3/+iTFjxqB58+bsPDo1NZV9qZZV8YSPcHz00UeMq7I6y5fP3RM+Eu5ItU8vhGPHjuGDDz7ArbfeWlb0wRM+ssGh9W3QoAFOnDjBjA1vueWWoMEnBxLI45uSJuyJP9Jy0r1K9jhHjhxhe7AsDZk94aOj11OnTtmPlGidyduqrIonfPQxQYbBdExHx8L0nCHbl0AWT5hIo+xLTjN/sHrKq0ZaVdJKnzx5kuVbozxrJChp4XHpD17exncGrnuhhKZsNBrZzGkTuiskjJCGRAthxLl/T/l9cnJyEBsbW2ZfqL7i833LaNvCE3/kDkzGpGX1he8Lf+QCSR5g5fnA88Sftqvle2+e8PH7o3ROPfHn+4qob+EJk7c5zdQg8YRBTd+8bfkyUCGEkvKlkI/OGeAMcAY4A5wBzoAWDHChRAsWeR+cAc4AZ4AzwBngDKhmgAslqinkHXAGOAOcAc4AZ4AzoAUDXCjRgkXeB2eAM8AZ4AxwBjgDqhngQolqCnkHnAHOAGeAM8AZ4AxowQAXSrRgkffBGeAMcAY4A5wBzoBqBrhQoppC3gFnoOwZoHwnFy5cYKH3KXAgxXWhYF8Uy+XBBx8se0B8RM4AZ4AzoAEDXCjRgETeBWegrBmgIFIUep+CB1K0VkppQMG9KE8TRZnlhTPAGeAMXI8McKHkelw1jpkzALDQ9hTVk9IEUEZlSsBHwgkvnAHOAGfgemWACyXX68px3Dc8AxSluE2bNizZZPv27Vmep0AlVrzhyeYEcAY4A2XCABdKyoRmPghnQHsGKGtq27Zt2ZHNbbfdBsq3VF7h+LWfHe+RM8AZuBEZ4ELJjbjqfM4VgoFx48bhnXfeYckKhw8fjk8//RRPPfVUhZgbnwRngDNwYzLAhZIbc935rK9zBnbu3IkOHTqAUrSPGjWKZcJeuHAhy0idmJh4nc+Ow+cMcAZuVAa4UHKjrjyf93XLgMlkYjYklKV4+/btMBgMyMrKQpMmTdC1a1ekp6dft3PjwDkDnIEbmwEulNzY689nzxngDHAGOAOcgaBhgAslQbMUHAhngDPAGeAMcAZubAa4UHJjrz+fPWeAM8AZ4AxwBoKGAS6UBM1ScCCcAc4AZ4AzwBm4sRngQsmNvf589pwBzgBngDPAGQgaBrhQEjRLwYFwBjgDnAHOAGfgxmbg/wE4bYiRH115EAAAAABJRU5ErkJggg==\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[10]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">sRMSMC</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">runPopulation</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">rmsmcBasic</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"kt\">MCMCConfig</span><span class=\"w\"> </span><span class=\"p\">{</span><span class=\"n\">numMCMCSteps</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">50</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">numBurnIn</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">proposal</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">SingleSiteMH</span><span class=\"p\">}</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"kt\">SMCConfig</span><span class=\"w\"> </span><span class=\"p\">{</span><span class=\"n\">numSteps</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">numPoints</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">numParticles</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">10</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">resampler</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">resampleSystematic</span><span class=\"p\">}</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">toListM</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"> </span><span class=\"n\">observations</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre></pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[11]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">a</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"n\">d</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Prelude</span><span class=\"o\">.</span><span class=\"n\">repeat</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"s\">&quot;inferred: RMSMC&quot;</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"o\">=&lt;&lt;</span><span class=\"w\"> </span><span class=\"n\">sRMSMC</span><span class=\"w\"></span>\n\n<span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">positions</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Prelude</span><span class=\"o\">.</span><span class=\"n\">repeat</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"s\">&quot;prior&quot;</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">take</span><span class=\"w\"> </span><span class=\"mi\">10000</span><span class=\"w\"> </span><span class=\"n\">a</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>The good results are if the inferred distribution is close to prior, as observed samples are only modified by a small noise from prior.</p>\n<p>And it works! Look how few particles it needed.</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Particle-Marginal-Metropolis-Hastings-(PMMH)\">Particle Marginal Metropolis Hastings (PMMH)<a class=\"anchor-link\" href=\"#Particle-Marginal-Metropolis-Hastings-(PMMH)\">&#182;</a></h1><p>PMMH is fundamentally an MCMC technique. It performs a random walk through parameter space, but to estimate the likelihood at each step, it uses an unbiased estimate from a population of samples. We'll reuse the regression with outliers example from <code>tutorials/MCMC.ipynb</code>.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[12]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">paramPrior</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">slope</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">intercept</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">noise</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">gamma</span><span class=\"w\"> </span><span class=\"mi\">7</span><span class=\"w\"> </span><span class=\"mi\">7</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">prob_outlier</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">uniform</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"mf\">0.5</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">slope</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">intercept</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">noise</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">prob_outlier</span><span class=\"p\">)</span><span class=\"w\"></span>\n\n<span class=\"nf\">forward</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">slope</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">intercept</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">noise</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">probOutlier</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">isOutlier</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">bernoulli</span><span class=\"w\"> </span><span class=\"n\">probOutlier</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"kr\">let</span><span class=\"w\"> </span><span class=\"n\">meanParams</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">if</span><span class=\"w\"> </span><span class=\"n\">isOutlier</span><span class=\"w\"></span>\n<span class=\"w\">                    </span><span class=\"kr\">then</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">20</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">                    </span><span class=\"kr\">else</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"o\">*</span><span class=\"n\">slope</span><span class=\"w\"> </span><span class=\"o\">+</span><span class=\"w\"> </span><span class=\"n\">intercept</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">sqrt</span><span class=\"w\"> </span><span class=\"n\">noise</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">meanParams</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">isOutlier</span><span class=\"p\">)</span><span class=\"w\"></span>\n\n<span class=\"nf\">regressionWithOutliersData</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Traversable</span><span class=\"w\"> </span><span class=\"n\">t</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"n\">t</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">t</span><span class=\"w\"> </span><span class=\"p\">((</span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"kt\">Bool</span><span class=\"p\">))</span><span class=\"w\"></span>\n<span class=\"nf\">regressionWithOutliersData</span><span class=\"w\"> </span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">params</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">paramPrior</span><span class=\"w\"></span>\n\n<span class=\"w\">    </span><span class=\"n\">forM</span><span class=\"w\"> </span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"nf\">\\</span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"p\">((</span><span class=\"n\">mu</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">std</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"n\">isOutlier</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">forward</span><span class=\"w\"> </span><span class=\"n\">params</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"n\">mu</span><span class=\"w\"> </span><span class=\"n\">std</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">((</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"n\">isOutlier</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">        </span>\n<span class=\"nf\">range</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"o\">-</span><span class=\"mi\">10</span><span class=\"p\">,</span><span class=\"o\">-</span><span class=\"mf\">9.9</span><span class=\"o\">..</span><span class=\"mi\">10</span><span class=\"p\">]</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Double</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">samples</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">regressionWithOutliersData</span><span class=\"w\"> </span><span class=\"n\">range</span><span class=\"w\"></span>\n<span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">second</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">show</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"n\">samples</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[13]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">regressionWithOutliers</span><span class=\"w\"> </span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"n\">ys</span><span class=\"w\"> </span><span class=\"n\">params</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span>\n<span class=\"w\">    </span><span class=\"n\">outliers</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">forM</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"n\">ys</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"nf\">\\</span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"p\">((</span><span class=\"n\">mu</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">std</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"n\">isOutlier</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">forward</span><span class=\"w\"> </span><span class=\"n\">params</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">factor</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">normalPdf</span><span class=\"w\"> </span><span class=\"n\">mu</span><span class=\"w\"> </span><span class=\"n\">std</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"n\">isOutlier</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">params</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">outliers</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[14]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">mhRuns</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">pmmh</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"kt\">MCMCConfig</span><span class=\"w\"> </span><span class=\"p\">{</span><span class=\"n\">numMCMCSteps</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">numBurnIn</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">10</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">proposal</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">SingleSiteMH</span><span class=\"p\">}</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"kt\">SMCConfig</span><span class=\"w\"> </span><span class=\"p\">{</span><span class=\"n\">numSteps</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">200</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">numParticles</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">resampler</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">resampleSystematic</span><span class=\"p\">}</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">paramPrior</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"n\">regressionWithOutliers</span><span class=\"w\"> </span><span class=\"n\">range</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">snd</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">fst</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">samples</span><span class=\"p\">))</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre></pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[15]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">m</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"p\">((</span><span class=\"kr\">_</span><span class=\"p\">,</span><span class=\"n\">a</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"n\">b</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">a</span><span class=\"p\">,</span><span class=\"n\">b</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">head</span><span class=\"w\"> </span><span class=\"n\">mhRuns</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[16]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">outlierProb</span><span class=\"w\"> </span><span class=\"n\">s</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\">   </span><span class=\"n\">ln</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">exp</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"o\">/</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"o\">+</span><span class=\"n\">y</span><span class=\"p\">)))</span><span class=\"w\"> </span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">foldr</span><span class=\"w\"></span>\n<span class=\"w\">              </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"p\">(</span><span class=\"n\">lb</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">d</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">li</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"w\"> </span><span class=\"kr\">if</span><span class=\"w\"> </span><span class=\"n\">b</span><span class=\"w\"> </span><span class=\"kr\">then</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">num1</span><span class=\"o\">+</span><span class=\"n\">d</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">num2</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"kr\">else</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">num1</span><span class=\"p\">,</span><span class=\"n\">num2</span><span class=\"o\">+</span><span class=\"n\">d</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">|</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">b</span><span class=\"p\">,(</span><span class=\"n\">num1</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">num2</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">lb</span><span class=\"w\"> </span><span class=\"n\">li</span><span class=\"p\">])</span><span class=\"w\"></span>\n<span class=\"w\">              </span><span class=\"p\">(</span><span class=\"kt\">Prelude</span><span class=\"o\">.</span><span class=\"n\">repeat</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Log</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Log</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">))</span><span class=\"w\"> </span>\n<span class=\"w\">              </span><span class=\"n\">s</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[17]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">take</span><span class=\"w\"> </span><span class=\"mi\">1000</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">fst</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">samples</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">outlierProb</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"p\">))</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>As the above plot shows, this works nicely: the <code>slope</code>, <code>intercept</code>, <code>noise</code> and <code>prob_outlier</code> variables are inferred by a random walk through the space, while the score to determine whether to accept a new proposed step in this walk is determined by a particle filter which guesses which points are outliers after each observation.</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"$SMC%5E2$\">$SMC^2$<a class=\"anchor-link\" href=\"#$SMC%5E2$\">&#182;</a></h1>\n</div>\n</div>\n</div>\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>The culmination of monad-bayes is $SMC^2$, which combines all the previous piece together into one inference algorithm.</p>\n<p>It is $RMSMC$, but with the $MCMC$ walk performed using $PMMH$.</p>\n\n</div>\n</div>\n</div>\n</div>\n</body>\n\n\n\n\n\n\n\n</html>\n"
  },
  {
    "path": "docs/docs/notebooks/Bayesian.html",
    "content": "<!DOCTYPE html>\n<html>\n<head><meta charset=\"utf-8\" />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n<title>Bayesian</title><script src=\"https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js\"></script>\n\n\n\n\n<style type=\"text/css\">\n    pre { line-height: 125%; }\ntd.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\nspan.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\ntd.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\nspan.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.highlight .hll { background-color: var(--jp-cell-editor-active-background) }\n.highlight { background: var(--jp-cell-editor-background); color: var(--jp-mirror-editor-variable-color) }\n.highlight .c { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment */\n.highlight .err { color: var(--jp-mirror-editor-error-color) } /* Error */\n.highlight .k { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword */\n.highlight .o { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator */\n.highlight .p { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation */\n.highlight .ch { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Hashbang */\n.highlight .cm { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Multiline */\n.highlight .cp { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Preproc */\n.highlight .cpf { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.PreprocFile */\n.highlight .c1 { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Single */\n.highlight .cs { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Special */\n.highlight .kc { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Constant */\n.highlight .kd { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Declaration */\n.highlight .kn { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Namespace */\n.highlight .kp { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Pseudo */\n.highlight .kr { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Reserved */\n.highlight .kt { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Type */\n.highlight .m { color: var(--jp-mirror-editor-number-color) } /* Literal.Number */\n.highlight .s { color: var(--jp-mirror-editor-string-color) } /* Literal.String */\n.highlight .ow { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator.Word */\n.highlight .w { color: var(--jp-mirror-editor-variable-color) } /* Text.Whitespace */\n.highlight .mb { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Bin */\n.highlight .mf { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Float */\n.highlight .mh { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Hex */\n.highlight .mi { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer */\n.highlight .mo { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Oct */\n.highlight .sa { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Affix */\n.highlight .sb { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Backtick */\n.highlight .sc { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Char */\n.highlight .dl { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Delimiter */\n.highlight .sd { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Doc */\n.highlight .s2 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Double */\n.highlight .se { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Escape */\n.highlight .sh { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Heredoc */\n.highlight .si { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Interpol */\n.highlight .sx { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Other */\n.highlight .sr { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Regex */\n.highlight .s1 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Single */\n.highlight .ss { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Symbol */\n.highlight .il { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer.Long */\n  </style>\n\n\n\n<style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\n * Mozilla scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n[data-jp-theme-scrollbars='true'] {\n  scrollbar-color: rgb(var(--jp-scrollbar-thumb-color))\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar. These selectors\n * will match lower in the tree, and so will override the above */\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n  scrollbar-width: thin;\n}\n\n/*\n * Webkit scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-corner {\n  background: var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-thumb {\n  background: rgb(var(--jp-scrollbar-thumb-color));\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-right: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-bottom: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar */\n\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-corner,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-corner {\n  background-color: transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-thumb,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid transparent;\n  border-right: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid transparent;\n  border-bottom: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny::-webkit-scrollbar,\n.jp-scrollbar-tiny::-webkit-scrollbar-corner {\n  background-color: transparent;\n  height: 4px;\n  width: 4px;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:horizontal {\n  border-left: 0px solid transparent;\n  border-right: 0px solid transparent;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:vertical {\n  border-top: 0px solid transparent;\n  border-bottom: 0px solid transparent;\n}\n\n/*\n * Phosphor\n */\n\n.lm-ScrollBar[data-orientation='horizontal'] {\n  min-height: 16px;\n  max-height: 16px;\n  min-width: 45px;\n  border-top: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] {\n  min-width: 16px;\n  max-width: 16px;\n  min-height: 45px;\n  border-left: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar-button {\n  background-color: #f0f0f0;\n  background-position: center center;\n  min-height: 15px;\n  max-height: 15px;\n  min-width: 15px;\n  max-width: 15px;\n}\n\n.lm-ScrollBar-button:hover {\n  background-color: #dadada;\n}\n\n.lm-ScrollBar-button.lm-mod-active {\n  background-color: #cdcdcd;\n}\n\n.lm-ScrollBar-track {\n  background: #f0f0f0;\n}\n\n.lm-ScrollBar-thumb {\n  background: #cdcdcd;\n}\n\n.lm-ScrollBar-thumb:hover {\n  background: #bababa;\n}\n\n.lm-ScrollBar-thumb.lm-mod-active {\n  background: #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal'] .lm-ScrollBar-thumb {\n  height: 100%;\n  min-width: 15px;\n  border-left: 1px solid #a0a0a0;\n  border-right: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] .lm-ScrollBar-thumb {\n  width: 100%;\n  min-height: 15px;\n  border-top: 1px solid #a0a0a0;\n  border-bottom: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-left);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-right);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-up);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-down);\n  background-size: 17px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Widget, /* </DEPRECATED> */\n.lm-Widget {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  cursor: default;\n}\n\n\n/* <DEPRECATED> */ .p-Widget.p-mod-hidden, /* </DEPRECATED> */\n.lm-Widget.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-CommandPalette, /* </DEPRECATED> */\n.lm-CommandPalette {\n  display: flex;\n  flex-direction: column;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-search, /* </DEPRECATED> */\n.lm-CommandPalette-search {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-content, /* </DEPRECATED> */\n.lm-CommandPalette-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  min-height: 0;\n  overflow: auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-header, /* </DEPRECATED> */\n.lm-CommandPalette-header {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-item, /* </DEPRECATED> */\n.lm-CommandPalette-item {\n  display: flex;\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemIcon, /* </DEPRECATED> */\n.lm-CommandPalette-itemIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemContent, /* </DEPRECATED> */\n.lm-CommandPalette-itemContent {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemShortcut, /* </DEPRECATED> */\n.lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemLabel, /* </DEPRECATED> */\n.lm-CommandPalette-itemLabel {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.lm-close-icon {\n\tborder:1px solid transparent;\n  background-color: transparent;\n  position: absolute;\n\tz-index:1;\n\tright:3%;\n\ttop: 0;\n\tbottom: 0;\n\tmargin: auto;\n\tpadding: 7px 0;\n\tdisplay: none;\n\tvertical-align: middle;\n  outline: 0;\n  cursor: pointer;\n}\n.lm-close-icon:after {\n\tcontent: \"X\";\n\tdisplay: block;\n\twidth: 15px;\n\theight: 15px;\n\ttext-align: center;\n\tcolor:#000;\n\tfont-weight: normal;\n\tfont-size: 12px;\n\tcursor: pointer;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-DockPanel, /* </DEPRECATED> */\n.lm-DockPanel {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-widget, /* </DEPRECATED> */\n.lm-DockPanel-widget {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-tabBar, /* </DEPRECATED> */\n.lm-DockPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle, /* </DEPRECATED> */\n.lm-DockPanel-handle {\n  z-index: 2;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle:after, /* </DEPRECATED> */\n.lm-DockPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal'] {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical'] {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal']:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical']:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay, /* </DEPRECATED> */\n.lm-DockPanel-overlay {\n  z-index: 3;\n  box-sizing: border-box;\n  pointer-events: none;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-overlay.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Menu, /* </DEPRECATED> */\n.lm-Menu {\n  z-index: 10000;\n  position: absolute;\n  white-space: nowrap;\n  overflow-x: hidden;\n  overflow-y: auto;\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-content, /* </DEPRECATED> */\n.lm-Menu-content {\n  margin: 0;\n  padding: 0;\n  display: table;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-item, /* </DEPRECATED> */\n.lm-Menu-item {\n  display: table-row;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-item.p-mod-hidden,\n.p-Menu-item.p-mod-collapsed,\n/* </DEPRECATED> */\n.lm-Menu-item.lm-mod-hidden,\n.lm-Menu-item.lm-mod-collapsed {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-itemIcon,\n.p-Menu-itemSubmenuIcon,\n/* </DEPRECATED> */\n.lm-Menu-itemIcon,\n.lm-Menu-itemSubmenuIcon {\n  display: table-cell;\n  text-align: center;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemLabel, /* </DEPRECATED> */\n.lm-Menu-itemLabel {\n  display: table-cell;\n  text-align: left;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemShortcut, /* </DEPRECATED> */\n.lm-Menu-itemShortcut {\n  display: table-cell;\n  text-align: right;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-MenuBar, /* </DEPRECATED> */\n.lm-MenuBar {\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-MenuBar-content, /* </DEPRECATED> */\n.lm-MenuBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex-direction: row;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p--MenuBar-item, /* </DEPRECATED> */\n.lm-MenuBar-item {\n  box-sizing: border-box;\n}\n\n\n/* <DEPRECATED> */\n.p-MenuBar-itemIcon,\n.p-MenuBar-itemLabel,\n/* </DEPRECATED> */\n.lm-MenuBar-itemIcon,\n.lm-MenuBar-itemLabel {\n  display: inline-block;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-ScrollBar, /* </DEPRECATED> */\n.lm-ScrollBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='horizontal'] {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='vertical'] {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-button, /* </DEPRECATED> */\n.lm-ScrollBar-button {\n  box-sizing: border-box;\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-track, /* </DEPRECATED> */\n.lm-ScrollBar-track {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  flex: 1 1 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-thumb, /* </DEPRECATED> */\n.lm-ScrollBar-thumb {\n  box-sizing: border-box;\n  position: absolute;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-SplitPanel-child, /* </DEPRECATED> */\n.lm-SplitPanel-child {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle, /* </DEPRECATED> */\n.lm-SplitPanel-handle {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-SplitPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle:after, /* </DEPRECATED> */\n.lm-SplitPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabBar, /* </DEPRECATED> */\n.lm-TabBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='horizontal'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] {\n  flex-direction: row;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='vertical'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] {\n  flex-direction: column;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-content, /* </DEPRECATED> */\n.lm-TabBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex: 1 1 auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='horizontal'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] > .lm-TabBar-content {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='vertical'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] > .lm-TabBar-content {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar-tab {\n  display: flex;\n  flex-direction: row;\n  box-sizing: border-box;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar-tabIcon,\n.p-TabBar-tabCloseIcon,\n/* </DEPRECATED> */\n.lm-TabBar-tabIcon,\n.lm-TabBar-tabCloseIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tabLabel, /* </DEPRECATED> */\n.lm-TabBar-tabLabel {\n  flex: 1 1 auto;\n  overflow: hidden;\n  white-space: nowrap;\n}\n\n\n.lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab.p-mod-hidden, /* </DEPRECATED> */\n.lm-TabBar-tab.lm-mod-hidden {\n  display: none !important;\n}\n\n\n.lm-TabBar-addButton.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar.p-mod-dragging .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab {\n  position: relative;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='horizontal'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='horizontal'] .lm-TabBar-tab {\n  left: 0;\n  transition: left 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='vertical'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='vertical'] .lm-TabBar-tab {\n  top: 0;\n  transition: top 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging .p-TabBar-tab.p-mod-dragging,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab.lm-mod-dragging {\n  transition: none;\n}\n\n.lm-TabBar-tabLabel .lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n  background: inherit;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabPanel-tabBar, /* </DEPRECATED> */\n.lm-TabPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-TabPanel-stackedPanel, /* </DEPRECATED> */\n.lm-TabPanel-stackedPanel {\n  z-index: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n@charset \"UTF-8\";\nhtml{\n  -webkit-box-sizing:border-box;\n          box-sizing:border-box; }\n\n*,\n*::before,\n*::after{\n  -webkit-box-sizing:inherit;\n          box-sizing:inherit; }\n\nbody{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none;\n  color:#182026;\n  font-family:-apple-system, \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Open Sans\", \"Helvetica Neue\", \"Icons16\", sans-serif; }\n\np{\n  margin-bottom:10px;\n  margin-top:0; }\n\nsmall{\n  font-size:12px; }\n\nstrong{\n  font-weight:600; }\n\n::-moz-selection{\n  background:rgba(125, 188, 255, 0.6); }\n\n::selection{\n  background:rgba(125, 188, 255, 0.6); }\n.bp3-heading{\n  color:#182026;\n  font-weight:600;\n  margin:0 0 10px;\n  padding:0; }\n  .bp3-dark .bp3-heading{\n    color:#f5f8fa; }\n\nh1.bp3-heading, .bp3-running-text h1{\n  font-size:36px;\n  line-height:40px; }\n\nh2.bp3-heading, .bp3-running-text h2{\n  font-size:28px;\n  line-height:32px; }\n\nh3.bp3-heading, .bp3-running-text h3{\n  font-size:22px;\n  line-height:25px; }\n\nh4.bp3-heading, .bp3-running-text h4{\n  font-size:18px;\n  line-height:21px; }\n\nh5.bp3-heading, .bp3-running-text h5{\n  font-size:16px;\n  line-height:19px; }\n\nh6.bp3-heading, .bp3-running-text h6{\n  font-size:14px;\n  line-height:16px; }\n.bp3-ui-text{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none; }\n\n.bp3-monospace-text{\n  font-family:monospace;\n  text-transform:none; }\n\n.bp3-text-muted{\n  color:#5c7080; }\n  .bp3-dark .bp3-text-muted{\n    color:#a7b6c2; }\n\n.bp3-text-disabled{\n  color:rgba(92, 112, 128, 0.6); }\n  .bp3-dark .bp3-text-disabled{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-text-overflow-ellipsis{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal; }\n.bp3-running-text{\n  font-size:14px;\n  line-height:1.5; }\n  .bp3-running-text h1{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h1{\n      color:#f5f8fa; }\n  .bp3-running-text h2{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h2{\n      color:#f5f8fa; }\n  .bp3-running-text h3{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h3{\n      color:#f5f8fa; }\n  .bp3-running-text h4{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h4{\n      color:#f5f8fa; }\n  .bp3-running-text h5{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h5{\n      color:#f5f8fa; }\n  .bp3-running-text h6{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h6{\n      color:#f5f8fa; }\n  .bp3-running-text hr{\n    border:none;\n    border-bottom:1px solid rgba(16, 22, 26, 0.15);\n    margin:20px 0; }\n    .bp3-dark .bp3-running-text hr{\n      border-color:rgba(255, 255, 255, 0.15); }\n  .bp3-running-text p{\n    margin:0 0 10px;\n    padding:0; }\n\n.bp3-text-large{\n  font-size:16px; }\n\n.bp3-text-small{\n  font-size:12px; }\na{\n  color:#106ba3;\n  text-decoration:none; }\n  a:hover{\n    color:#106ba3;\n    cursor:pointer;\n    text-decoration:underline; }\n  a .bp3-icon, a .bp3-icon-standard, a .bp3-icon-large{\n    color:inherit; }\n  a code,\n  .bp3-dark a code{\n    color:inherit; }\n  .bp3-dark a,\n  .bp3-dark a:hover{\n    color:#48aff0; }\n    .bp3-dark a .bp3-icon, .bp3-dark a .bp3-icon-standard, .bp3-dark a .bp3-icon-large,\n    .bp3-dark a:hover .bp3-icon,\n    .bp3-dark a:hover .bp3-icon-standard,\n    .bp3-dark a:hover .bp3-icon-large{\n      color:inherit; }\n.bp3-running-text code, .bp3-code{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  font-size:smaller;\n  padding:2px 5px; }\n  .bp3-dark .bp3-running-text code, .bp3-running-text .bp3-dark code, .bp3-dark .bp3-code{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n  .bp3-running-text a > code, a > .bp3-code{\n    color:#137cbd; }\n    .bp3-dark .bp3-running-text a > code, .bp3-running-text .bp3-dark a > code, .bp3-dark a > .bp3-code{\n      color:inherit; }\n\n.bp3-running-text pre, .bp3-code-block{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n  color:#182026;\n  display:block;\n  font-size:13px;\n  line-height:1.4;\n  margin:10px 0;\n  padding:13px 15px 12px;\n  word-break:break-all;\n  word-wrap:break-word; }\n  .bp3-dark .bp3-running-text pre, .bp3-running-text .bp3-dark pre, .bp3-dark .bp3-code-block{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n  .bp3-running-text pre > code, .bp3-code-block > code{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit;\n    font-size:inherit;\n    padding:0; }\n\n.bp3-running-text kbd, .bp3-key{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-family:inherit;\n  font-size:12px;\n  height:24px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  line-height:24px;\n  min-width:24px;\n  padding:3px 6px;\n  vertical-align:middle; }\n  .bp3-running-text kbd .bp3-icon, .bp3-key .bp3-icon, .bp3-running-text kbd .bp3-icon-standard, .bp3-key .bp3-icon-standard, .bp3-running-text kbd .bp3-icon-large, .bp3-key .bp3-icon-large{\n    margin-right:5px; }\n  .bp3-dark .bp3-running-text kbd, .bp3-running-text .bp3-dark kbd, .bp3-dark .bp3-key{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n.bp3-running-text blockquote, .bp3-blockquote{\n  border-left:solid 4px rgba(167, 182, 194, 0.5);\n  margin:0 0 10px;\n  padding:0 20px; }\n  .bp3-dark .bp3-running-text blockquote, .bp3-running-text .bp3-dark blockquote, .bp3-dark .bp3-blockquote{\n    border-color:rgba(115, 134, 148, 0.5); }\n.bp3-running-text ul,\n.bp3-running-text ol, .bp3-list{\n  margin:10px 0;\n  padding-left:30px; }\n  .bp3-running-text ul li:not(:last-child), .bp3-running-text ol li:not(:last-child), .bp3-list li:not(:last-child){\n    margin-bottom:5px; }\n  .bp3-running-text ul ol, .bp3-running-text ol ol, .bp3-list ol,\n  .bp3-running-text ul ul,\n  .bp3-running-text ol ul,\n  .bp3-list ul{\n    margin-top:5px; }\n\n.bp3-list-unstyled{\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-list-unstyled li{\n    padding:0; }\n.bp3-rtl{\n  text-align:right; }\n\n.bp3-dark{\n  color:#f5f8fa; }\n\n:focus{\n  outline:rgba(19, 124, 189, 0.6) auto 2px;\n  outline-offset:2px;\n  -moz-outline-radius:6px; }\n\n.bp3-focus-disabled :focus{\n  outline:none !important; }\n  .bp3-focus-disabled :focus ~ .bp3-control-indicator{\n    outline:none !important; }\n\n.bp3-alert{\n  max-width:400px;\n  padding:20px; }\n\n.bp3-alert-body{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-alert-body .bp3-icon{\n    font-size:40px;\n    margin-right:20px;\n    margin-top:0; }\n\n.bp3-alert-contents{\n  word-break:break-word; }\n\n.bp3-alert-footer{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:reverse;\n      -ms-flex-direction:row-reverse;\n          flex-direction:row-reverse;\n  margin-top:10px; }\n  .bp3-alert-footer .bp3-button{\n    margin-left:10px; }\n.bp3-breadcrumbs{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  cursor:default;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:wrap;\n      flex-wrap:wrap;\n  height:30px;\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-breadcrumbs > li{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n    .bp3-breadcrumbs > li::after{\n      background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z' fill='%235C7080'/%3e%3c/svg%3e\");\n      content:\"\";\n      display:block;\n      height:16px;\n      margin:0 5px;\n      width:16px; }\n    .bp3-breadcrumbs > li:last-of-type::after{\n      display:none; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumb-current,\n.bp3-breadcrumbs-collapsed{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-size:16px; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumbs-collapsed{\n  color:#5c7080; }\n\n.bp3-breadcrumb:hover{\n  text-decoration:none; }\n\n.bp3-breadcrumb.bp3-disabled{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-breadcrumb .bp3-icon{\n  margin-right:5px; }\n\n.bp3-breadcrumb-current{\n  color:inherit;\n  font-weight:600; }\n  .bp3-breadcrumb-current .bp3-input{\n    font-size:inherit;\n    font-weight:inherit;\n    vertical-align:baseline; }\n\n.bp3-breadcrumbs-collapsed{\n  background:#ced9e0;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  margin-right:2px;\n  padding:1px 5px;\n  vertical-align:text-bottom; }\n  .bp3-breadcrumbs-collapsed::before{\n    background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cg fill='%235C7080'%3e%3ccircle cx='2' cy='8.03' r='2'/%3e%3ccircle cx='14' cy='8.03' r='2'/%3e%3ccircle cx='8' cy='8.03' r='2'/%3e%3c/g%3e%3c/svg%3e\") center no-repeat;\n    content:\"\";\n    display:block;\n    height:16px;\n    width:16px; }\n  .bp3-breadcrumbs-collapsed:hover{\n    background:#bfccd6;\n    color:#182026;\n    text-decoration:none; }\n\n.bp3-dark .bp3-breadcrumb,\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumbs > li::after{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumb.bp3-disabled{\n  color:rgba(167, 182, 194, 0.6); }\n\n.bp3-dark .bp3-breadcrumb-current{\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-breadcrumbs-collapsed:hover{\n    background:rgba(16, 22, 26, 0.6);\n    color:#f5f8fa; }\n.bp3-button{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  min-height:30px;\n  min-width:30px; }\n  .bp3-button > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-button > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-button::before,\n  .bp3-button > *{\n    margin-right:7px; }\n  .bp3-button:empty::before,\n  .bp3-button > :last-child{\n    margin-right:0; }\n  .bp3-button:empty{\n    padding:0 !important; }\n  .bp3-button:disabled, .bp3-button.bp3-disabled{\n    cursor:not-allowed; }\n  .bp3-button.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button.bp3-align-right,\n  .bp3-align-right .bp3-button{\n    text-align:right; }\n  .bp3-button.bp3-align-left,\n  .bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026; }\n    .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active:hover, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-button.bp3-intent-primary{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover, .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover{\n      background-color:#106ba3;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      background-color:#0e5a8a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:disabled, .bp3-button.bp3-intent-primary.bp3-disabled{\n      background-color:rgba(19, 124, 189, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-success{\n    background-color:#0f9960;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover, .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover{\n      background-color:#0d8050;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      background-color:#0a6640;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:disabled, .bp3-button.bp3-intent-success.bp3-disabled{\n      background-color:rgba(15, 153, 96, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-warning{\n    background-color:#d9822b;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover, .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover{\n      background-color:#bf7326;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      background-color:#a66321;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:disabled, .bp3-button.bp3-intent-warning.bp3-disabled{\n      background-color:rgba(217, 130, 43, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-danger{\n    background-color:#db3737;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover, .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover{\n      background-color:#c23030;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      background-color:#a82a2a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:disabled, .bp3-button.bp3-intent-danger.bp3-disabled{\n      background-color:rgba(219, 55, 55, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n    stroke:#ffffff; }\n  .bp3-button.bp3-large,\n  .bp3-large .bp3-button{\n    min-height:40px;\n    min-width:40px;\n    font-size:16px;\n    padding:5px 15px; }\n    .bp3-button.bp3-large::before,\n    .bp3-button.bp3-large > *,\n    .bp3-large .bp3-button::before,\n    .bp3-large .bp3-button > *{\n      margin-right:10px; }\n    .bp3-button.bp3-large:empty::before,\n    .bp3-button.bp3-large > :last-child,\n    .bp3-large .bp3-button:empty::before,\n    .bp3-large .bp3-button > :last-child{\n      margin-right:0; }\n  .bp3-button.bp3-small,\n  .bp3-small .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-button.bp3-loading{\n    position:relative; }\n    .bp3-button.bp3-loading[class*=\"bp3-icon-\"]::before{\n      visibility:hidden; }\n    .bp3-button.bp3-loading .bp3-button-spinner{\n      margin:0;\n      position:absolute; }\n    .bp3-button.bp3-loading > :not(.bp3-button-spinner){\n      visibility:hidden; }\n  .bp3-button[class*=\"bp3-icon-\"]::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    color:#5c7080; }\n  .bp3-button .bp3-icon, .bp3-button .bp3-icon-standard, .bp3-button .bp3-icon-large{\n    color:#5c7080; }\n    .bp3-button .bp3-icon.bp3-align-right, .bp3-button .bp3-icon-standard.bp3-align-right, .bp3-button .bp3-icon-large.bp3-align-right{\n      margin-left:7px; }\n  .bp3-button .bp3-icon:first-child:last-child,\n  .bp3-button .bp3-spinner + .bp3-icon:last-child{\n    margin:0 -7px; }\n  .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"])[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n      color:#a7b6c2; }\n  .bp3-dark .bp3-button[class*=\"bp3-intent-\"]{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:hover{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.3); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n      stroke:#8a9ba8; }\n  .bp3-button:disabled::before,\n  .bp3-button:disabled .bp3-icon, .bp3-button:disabled .bp3-icon-standard, .bp3-button:disabled .bp3-icon-large, .bp3-button.bp3-disabled::before,\n  .bp3-button.bp3-disabled .bp3-icon, .bp3-button.bp3-disabled .bp3-icon-standard, .bp3-button.bp3-disabled .bp3-icon-large, .bp3-button[class*=\"bp3-intent-\"]::before,\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-icon, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-standard, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-large{\n    color:inherit !important; }\n  .bp3-button.bp3-minimal{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button.bp3-minimal:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-minimal:active, .bp3-button.bp3-minimal.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-minimal:disabled, .bp3-button.bp3-minimal:disabled:hover, .bp3-button.bp3-minimal.bp3-disabled, .bp3-button.bp3-minimal.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-minimal{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-minimal:hover, .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-minimal:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-minimal:disabled, .bp3-dark .bp3-button.bp3-minimal:disabled:hover, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover, .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover, .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover, .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover, .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button.bp3-outlined{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    border:1px solid rgba(24, 32, 38, 0.2);\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box; }\n    .bp3-button.bp3-outlined:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-outlined:active, .bp3-button.bp3-outlined.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-outlined:hover, .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-outlined:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover, .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover, .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover, .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover, .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      border-color:rgba(92, 112, 128, 0.1); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      border-color:rgba(255, 255, 255, 0.4); }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        border-color:rgba(255, 255, 255, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      border-color:rgba(16, 107, 163, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        border-color:rgba(16, 107, 163, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        border-color:rgba(72, 175, 240, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          border-color:rgba(72, 175, 240, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      border-color:rgba(13, 128, 80, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        border-color:rgba(13, 128, 80, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        border-color:rgba(61, 204, 145, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          border-color:rgba(61, 204, 145, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      border-color:rgba(191, 115, 38, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        border-color:rgba(191, 115, 38, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        border-color:rgba(255, 179, 102, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          border-color:rgba(255, 179, 102, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      border-color:rgba(194, 48, 48, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        border-color:rgba(194, 48, 48, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        border-color:rgba(255, 115, 115, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          border-color:rgba(255, 115, 115, 0.2); }\n\na.bp3-button{\n  text-align:center;\n  text-decoration:none;\n  -webkit-transition:none;\n  transition:none; }\n  a.bp3-button, a.bp3-button:hover, a.bp3-button:active{\n    color:#182026; }\n  a.bp3-button.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6); }\n\n.bp3-button-text{\n  -webkit-box-flex:0;\n      -ms-flex:0 1 auto;\n          flex:0 1 auto; }\n\n.bp3-button.bp3-align-left .bp3-button-text, .bp3-button.bp3-align-right .bp3-button-text,\n.bp3-button-group.bp3-align-left .bp3-button-text,\n.bp3-button-group.bp3-align-right .bp3-button-text{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto; }\n.bp3-button-group{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex; }\n  .bp3-button-group .bp3-button{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    position:relative;\n    z-index:4; }\n    .bp3-button-group .bp3-button:focus{\n      z-index:5; }\n    .bp3-button-group .bp3-button:hover{\n      z-index:6; }\n    .bp3-button-group .bp3-button:active, .bp3-button-group .bp3-button.bp3-active{\n      z-index:7; }\n    .bp3-button-group .bp3-button:disabled, .bp3-button-group .bp3-button.bp3-disabled{\n      z-index:3; }\n    .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]{\n      z-index:9; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:focus{\n        z-index:10; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:hover{\n        z-index:11; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n        z-index:12; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n        z-index:8; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:first-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:first-child){\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    border-bottom-right-radius:0;\n    border-top-right-radius:0;\n    margin-right:-1px; }\n  .bp3-button-group.bp3-minimal .bp3-button{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button-group.bp3-minimal .bp3-button{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button-group .bp3-popover-wrapper,\n  .bp3-button-group .bp3-popover-target{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button-group .bp3-button.bp3-fill,\n  .bp3-button-group.bp3-fill .bp3-button:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-vertical{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column;\n    vertical-align:top; }\n    .bp3-button-group.bp3-vertical.bp3-fill{\n      height:100%;\n      width:unset; }\n    .bp3-button-group.bp3-vertical .bp3-button{\n      margin-right:0 !important;\n      width:100%; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:first-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:first-child{\n      border-radius:3px 3px 0 0; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:last-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:last-child{\n      border-radius:0 0 3px 3px; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:not(:last-child){\n      margin-bottom:-1px; }\n  .bp3-button-group.bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    margin-right:1px; }\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-button:not(:last-child){\n    margin-bottom:1px; }\n.bp3-callout{\n  font-size:14px;\n  line-height:1.5;\n  background-color:rgba(138, 155, 168, 0.15);\n  border-radius:3px;\n  padding:10px 12px 9px;\n  position:relative;\n  width:100%; }\n  .bp3-callout[class*=\"bp3-icon-\"]{\n    padding-left:40px; }\n    .bp3-callout[class*=\"bp3-icon-\"]::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout.bp3-callout-icon{\n    padding-left:40px; }\n    .bp3-callout.bp3-callout-icon > .bp3-icon:first-child{\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout .bp3-heading{\n    line-height:20px;\n    margin-bottom:5px;\n    margin-top:0; }\n    .bp3-callout .bp3-heading:last-child{\n      margin-bottom:0; }\n  .bp3-dark .bp3-callout{\n    background-color:rgba(138, 155, 168, 0.2); }\n    .bp3-dark .bp3-callout[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n  .bp3-callout.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15); }\n    .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-primary .bp3-heading{\n      color:#106ba3; }\n    .bp3-dark .bp3-callout.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-primary .bp3-heading{\n        color:#48aff0; }\n  .bp3-callout.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15); }\n    .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-success .bp3-heading{\n      color:#0d8050; }\n    .bp3-dark .bp3-callout.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-success .bp3-heading{\n        color:#3dcc91; }\n  .bp3-callout.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15); }\n    .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-warning .bp3-heading{\n      color:#bf7326; }\n    .bp3-dark .bp3-callout.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-warning .bp3-heading{\n        color:#ffb366; }\n  .bp3-callout.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15); }\n    .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-danger .bp3-heading{\n      color:#c23030; }\n    .bp3-dark .bp3-callout.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-danger .bp3-heading{\n        color:#ff7373; }\n  .bp3-running-text .bp3-callout{\n    margin:20px 0; }\n.bp3-card{\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n  padding:20px;\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-card.bp3-dark,\n  .bp3-dark .bp3-card{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-0{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n  .bp3-elevation-0.bp3-dark,\n  .bp3-dark .bp3-elevation-0{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-1{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-1.bp3-dark,\n  .bp3-dark .bp3-elevation-1{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-2{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-2.bp3-dark,\n  .bp3-dark .bp3-elevation-2{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-3{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-3.bp3-dark,\n  .bp3-dark .bp3-elevation-3{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-4{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-4.bp3-dark,\n  .bp3-dark .bp3-elevation-4{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:hover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  cursor:pointer; }\n  .bp3-card.bp3-interactive:hover.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:hover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:active{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  opacity:0.9;\n  -webkit-transition-duration:0;\n          transition-duration:0; }\n  .bp3-card.bp3-interactive:active.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:active{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-collapse{\n  height:0;\n  overflow-y:hidden;\n  -webkit-transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-collapse .bp3-collapse-body{\n    -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-collapse .bp3-collapse-body[aria-hidden=\"true\"]{\n      display:none; }\n\n.bp3-context-menu .bp3-popover-target{\n  display:block; }\n\n.bp3-context-menu-popover-target{\n  position:fixed; }\n\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-dialog-container{\n  opacity:1;\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  min-height:100%;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  width:100%; }\n  .bp3-dialog-container.bp3-overlay-enter > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5); }\n  .bp3-dialog-container.bp3-overlay-enter-active > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear-active > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-dialog-container.bp3-overlay-exit > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-dialog-container.bp3-overlay-exit-active > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n\n.bp3-dialog{\n  background:#ebf1f5;\n  border-radius:6px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:30px 0;\n  padding-bottom:20px;\n  pointer-events:all;\n  -webkit-user-select:text;\n     -moz-user-select:text;\n      -ms-user-select:text;\n          user-select:text;\n  width:500px; }\n  .bp3-dialog:focus{\n    outline:0; }\n  .bp3-dialog.bp3-dark,\n  .bp3-dark .bp3-dialog{\n    background:#293742;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-dialog-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:6px 6px 0 0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding-left:20px;\n  padding-right:5px;\n  z-index:30; }\n  .bp3-dialog-header .bp3-icon-large,\n  .bp3-dialog-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-dialog-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-dialog-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-dialog-header{\n    background:#30404d;\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-dialog-header .bp3-icon-large,\n    .bp3-dark .bp3-dialog-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-dialog-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  margin:20px; }\n\n.bp3-dialog-footer{\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  margin:0 20px; }\n\n.bp3-dialog-footer-actions{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:end;\n      -ms-flex-pack:end;\n          justify-content:flex-end; }\n  .bp3-dialog-footer-actions .bp3-button{\n    margin-left:10px; }\n.bp3-multistep-dialog-panels{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n\n.bp3-multistep-dialog-left-panel{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column; }\n  .bp3-dark .bp3-multistep-dialog-left-panel{\n    background:#202b33; }\n\n.bp3-multistep-dialog-right-panel{\n  background-color:#f5f8fa;\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  border-radius:0 0 6px 0;\n  -webkit-box-flex:3;\n      -ms-flex:3;\n          flex:3;\n  min-width:0; }\n  .bp3-dark .bp3-multistep-dialog-right-panel{\n    background-color:#293742;\n    border-left:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-multistep-dialog-footer{\n  background-color:#ffffff;\n  border-radius:0 0 6px 0;\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  padding:10px; }\n  .bp3-dark .bp3-multistep-dialog-footer{\n    background:#30404d;\n    border-top:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-dialog-step-container{\n  background-color:#f5f8fa;\n  border-bottom:1px solid rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-dialog-step-container{\n    background:#293742;\n    border-bottom:1px solid rgba(16, 22, 26, 0.4); }\n  .bp3-dialog-step-container.bp3-dialog-step-viewed{\n    background-color:#ffffff; }\n    .bp3-dark .bp3-dialog-step-container.bp3-dialog-step-viewed{\n      background:#30404d; }\n\n.bp3-dialog-step{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#f5f8fa;\n  border-radius:6px;\n  cursor:not-allowed;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:4px;\n  padding:6px 14px; }\n  .bp3-dark .bp3-dialog-step{\n    background:#293742; }\n  .bp3-dialog-step-viewed .bp3-dialog-step{\n    background-color:#ffffff;\n    cursor:pointer; }\n    .bp3-dark .bp3-dialog-step-viewed .bp3-dialog-step{\n      background:#30404d; }\n  .bp3-dialog-step:hover{\n    background-color:#f5f8fa; }\n    .bp3-dark .bp3-dialog-step:hover{\n      background:#293742; }\n\n.bp3-dialog-step-icon{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:rgba(92, 112, 128, 0.6);\n  border-radius:50%;\n  color:#ffffff;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:25px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  width:25px; }\n  .bp3-dark .bp3-dialog-step-icon{\n    background-color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#2b95d6; }\n  .bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#8a9ba8; }\n\n.bp3-dialog-step-title{\n  color:rgba(92, 112, 128, 0.6);\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  padding-left:10px; }\n  .bp3-dark .bp3-dialog-step-title{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-title{\n    color:#2b95d6; }\n  .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n    color:#182026; }\n    .bp3-dark .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n      color:#f5f8fa; }\n.bp3-drawer{\n  background:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0;\n  padding:0; }\n  .bp3-drawer:focus{\n    outline:0; }\n  .bp3-drawer.bp3-position-top{\n    height:50%;\n    left:0;\n    right:0;\n    top:0; }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter, .bp3-drawer.bp3-position-top.bp3-overlay-appear{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter-active, .bp3-drawer.bp3-position-top.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit-active{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-bottom{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter-active, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-left{\n    bottom:0;\n    left:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter, .bp3-drawer.bp3-position-left.bp3-overlay-appear{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter-active, .bp3-drawer.bp3-position-left.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit-active{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-right{\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter, .bp3-drawer.bp3-position-right.bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter-active, .bp3-drawer.bp3-position-right.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right):not(.bp3-vertical){\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right).bp3-vertical{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-dark,\n  .bp3-dark .bp3-drawer{\n    background:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-drawer-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border-radius:0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding:5px;\n  padding-left:20px;\n  position:relative; }\n  .bp3-drawer-header .bp3-icon-large,\n  .bp3-drawer-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-drawer-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-drawer-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-drawer-header{\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-drawer-header .bp3-icon-large,\n    .bp3-dark .bp3-drawer-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-drawer-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  overflow:auto; }\n\n.bp3-drawer-footer{\n  -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  padding:10px 20px;\n  position:relative; }\n  .bp3-dark .bp3-drawer-footer{\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4); }\n.bp3-editable-text{\n  cursor:text;\n  display:inline-block;\n  max-width:100%;\n  position:relative;\n  vertical-align:top;\n  white-space:nowrap; }\n  .bp3-editable-text::before{\n    bottom:-3px;\n    left:-3px;\n    position:absolute;\n    right:-3px;\n    top:-3px;\n    border-radius:3px;\n    content:\"\";\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#137cbd; }\n  .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4); }\n  .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#0f9960; }\n  .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4); }\n  .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#d9822b; }\n  .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4); }\n  .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#db3737; }\n  .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4); }\n  .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-dark .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#48aff0; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4);\n            box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#3dcc91; }\n  .bp3-dark .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4);\n            box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#ffb366; }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#ff7373; }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-editable-text-input,\n.bp3-editable-text-content{\n  color:inherit;\n  display:inherit;\n  font:inherit;\n  letter-spacing:inherit;\n  max-width:inherit;\n  min-width:inherit;\n  position:relative;\n  resize:none;\n  text-transform:inherit;\n  vertical-align:top; }\n\n.bp3-editable-text-input{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0;\n  white-space:pre-wrap;\n  width:100%; }\n  .bp3-editable-text-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:focus{\n    outline:none; }\n  .bp3-editable-text-input::-ms-clear{\n    display:none; }\n\n.bp3-editable-text-content{\n  overflow:hidden;\n  padding-right:2px;\n  text-overflow:ellipsis;\n  white-space:pre; }\n  .bp3-editable-text-editing > .bp3-editable-text-content{\n    left:0;\n    position:absolute;\n    visibility:hidden; }\n  .bp3-editable-text-placeholder > .bp3-editable-text-content{\n    color:rgba(92, 112, 128, 0.6); }\n    .bp3-dark .bp3-editable-text-placeholder > .bp3-editable-text-content{\n      color:rgba(167, 182, 194, 0.6); }\n\n.bp3-editable-text.bp3-multiline{\n  display:block; }\n  .bp3-editable-text.bp3-multiline .bp3-editable-text-content{\n    overflow:auto;\n    white-space:pre-wrap;\n    word-wrap:break-word; }\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-control-group{\n  -webkit-transform:translateZ(0);\n          transform:translateZ(0);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:stretch;\n      -ms-flex-align:stretch;\n          align-items:stretch; }\n  .bp3-control-group > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select,\n  .bp3-control-group .bp3-input,\n  .bp3-control-group .bp3-select{\n    position:relative; }\n  .bp3-control-group .bp3-input{\n    border-radius:inherit;\n    z-index:2; }\n    .bp3-control-group .bp3-input:focus{\n      border-radius:3px;\n      z-index:14; }\n    .bp3-control-group .bp3-input[class*=\"bp3-intent\"]{\n      z-index:13; }\n      .bp3-control-group .bp3-input[class*=\"bp3-intent\"]:focus{\n        z-index:15; }\n    .bp3-control-group .bp3-input[readonly], .bp3-control-group .bp3-input:disabled, .bp3-control-group .bp3-input.bp3-disabled{\n      z-index:1; }\n  .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input{\n    z-index:13; }\n    .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input:focus{\n      z-index:15; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select select,\n  .bp3-control-group .bp3-select select{\n    -webkit-transform:translateZ(0);\n            transform:translateZ(0);\n    border-radius:inherit;\n    z-index:4; }\n    .bp3-control-group .bp3-button:focus,\n    .bp3-control-group .bp3-html-select select:focus,\n    .bp3-control-group .bp3-select select:focus{\n      z-index:5; }\n    .bp3-control-group .bp3-button:hover,\n    .bp3-control-group .bp3-html-select select:hover,\n    .bp3-control-group .bp3-select select:hover{\n      z-index:6; }\n    .bp3-control-group .bp3-button:active,\n    .bp3-control-group .bp3-html-select select:active,\n    .bp3-control-group .bp3-select select:active{\n      z-index:7; }\n    .bp3-control-group .bp3-button[readonly], .bp3-control-group .bp3-button:disabled, .bp3-control-group .bp3-button.bp3-disabled,\n    .bp3-control-group .bp3-html-select select[readonly],\n    .bp3-control-group .bp3-html-select select:disabled,\n    .bp3-control-group .bp3-html-select select.bp3-disabled,\n    .bp3-control-group .bp3-select select[readonly],\n    .bp3-control-group .bp3-select select:disabled,\n    .bp3-control-group .bp3-select select.bp3-disabled{\n      z-index:3; }\n    .bp3-control-group .bp3-button[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]{\n      z-index:9; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:focus{\n        z-index:10; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:hover{\n        z-index:11; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:active{\n        z-index:12; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"][readonly], .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:disabled, .bp3-control-group .bp3-button[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"].bp3-disabled{\n        z-index:8; }\n  .bp3-control-group .bp3-input-group > .bp3-icon,\n  .bp3-control-group .bp3-input-group > .bp3-button,\n  .bp3-control-group .bp3-input-group > .bp3-input-left-container,\n  .bp3-control-group .bp3-input-group > .bp3-input-action{\n    z-index:16; }\n  .bp3-control-group .bp3-select::after,\n  .bp3-control-group .bp3-html-select::after,\n  .bp3-control-group .bp3-select > .bp3-icon,\n  .bp3-control-group .bp3-html-select > .bp3-icon{\n    z-index:17; }\n  .bp3-control-group .bp3-select:focus-within{\n    z-index:5; }\n  .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:-1px; }\n  .bp3-control-group:not(.bp3-vertical) > .bp3-divider:not(:first-child){\n    margin-left:6px; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:0; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > .bp3-button + .bp3-button{\n    margin-left:1px; }\n  .bp3-control-group .bp3-popover-wrapper,\n  .bp3-control-group .bp3-popover-target{\n    border-radius:inherit; }\n  .bp3-control-group > :first-child{\n    border-radius:3px 0 0 3px; }\n  .bp3-control-group > :last-child{\n    border-radius:0 3px 3px 0;\n    margin-right:0; }\n  .bp3-control-group > :only-child{\n    border-radius:3px;\n    margin-right:0; }\n  .bp3-control-group .bp3-input-group .bp3-button{\n    border-radius:3px; }\n  .bp3-control-group .bp3-numeric-input:not(:first-child) .bp3-input-group{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-control-group.bp3-fill{\n    width:100%; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-fill > *:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-vertical{\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-control-group.bp3-vertical > *{\n      margin-top:-1px; }\n    .bp3-control-group.bp3-vertical > :first-child{\n      border-radius:3px 3px 0 0;\n      margin-top:0; }\n    .bp3-control-group.bp3-vertical > :last-child{\n      border-radius:0 0 3px 3px; }\n.bp3-control{\n  cursor:pointer;\n  display:block;\n  margin-bottom:10px;\n  position:relative;\n  text-transform:none; }\n  .bp3-control input:checked ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control input:checked ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control:not(.bp3-align-right){\n    padding-left:26px; }\n    .bp3-control:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-26px; }\n  .bp3-control.bp3-align-right{\n    padding-right:26px; }\n    .bp3-control.bp3-align-right .bp3-control-indicator{\n      margin-right:-26px; }\n  .bp3-control.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-control.bp3-inline{\n    display:inline-block;\n    margin-right:20px; }\n  .bp3-control input{\n    left:0;\n    opacity:0;\n    position:absolute;\n    top:0;\n    z-index:-1; }\n  .bp3-control .bp3-control-indicator{\n    background-clip:padding-box;\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    border:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    cursor:pointer;\n    display:inline-block;\n    font-size:16px;\n    height:1em;\n    margin-right:10px;\n    margin-top:-3px;\n    position:relative;\n    -webkit-user-select:none;\n       -moz-user-select:none;\n        -ms-user-select:none;\n            user-select:none;\n    vertical-align:middle;\n    width:1em; }\n    .bp3-control .bp3-control-indicator::before{\n      content:\"\";\n      display:block;\n      height:1em;\n      width:1em; }\n  .bp3-control:hover .bp3-control-indicator{\n    background-color:#ebf1f5; }\n  .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n    background:#d8e1e8;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    cursor:not-allowed; }\n  .bp3-control input:focus ~ .bp3-control-indicator{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:2px;\n    -moz-outline-radius:6px; }\n  .bp3-control.bp3-align-right .bp3-control-indicator{\n    float:right;\n    margin-left:10px;\n    margin-top:1px; }\n  .bp3-control.bp3-large{\n    font-size:16px; }\n    .bp3-control.bp3-large:not(.bp3-align-right){\n      padding-left:30px; }\n      .bp3-control.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n        margin-left:-30px; }\n    .bp3-control.bp3-large.bp3-align-right{\n      padding-right:30px; }\n      .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n        margin-right:-30px; }\n    .bp3-control.bp3-large .bp3-control-indicator{\n      font-size:20px; }\n    .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-top:0; }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control.bp3-checkbox .bp3-control-indicator{\n    border-radius:3px; }\n  .bp3-control.bp3-checkbox input:checked ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0012 5z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-radio .bp3-control-indicator{\n    border-radius:50%; }\n  .bp3-control.bp3-radio input:checked ~ .bp3-control-indicator::before{\n    background-image:radial-gradient(#ffffff, #ffffff 28%, transparent 32%); }\n  .bp3-control.bp3-radio input:checked:disabled ~ .bp3-control-indicator::before{\n    opacity:0.5; }\n  .bp3-control.bp3-radio input:focus ~ .bp3-control-indicator{\n    -moz-outline-radius:16px; }\n  .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(167, 182, 194, 0.5); }\n  .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(115, 134, 148, 0.5); }\n  .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(92, 112, 128, 0.5); }\n  .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5); }\n    .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5); }\n    .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch:not(.bp3-align-right){\n    padding-left:38px; }\n    .bp3-control.bp3-switch:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-38px; }\n  .bp3-control.bp3-switch.bp3-align-right{\n    padding-right:38px; }\n    .bp3-control.bp3-switch.bp3-align-right .bp3-control-indicator{\n      margin-right:-38px; }\n  .bp3-control.bp3-switch .bp3-control-indicator{\n    border:none;\n    border-radius:1.75em;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important;\n    min-width:1.75em;\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:auto; }\n    .bp3-control.bp3-switch .bp3-control-indicator::before{\n      background:#ffffff;\n      border-radius:50%;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n      height:calc(1em - 4px);\n      left:0;\n      margin:2px;\n      position:absolute;\n      -webkit-transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      width:calc(1em - 4px); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    left:calc(100% - 1em); }\n  .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right){\n    padding-left:45px; }\n    .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-45px; }\n  .bp3-control.bp3-switch.bp3-large.bp3-align-right{\n    padding-right:45px; }\n    .bp3-control.bp3-switch.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-right:-45px; }\n  .bp3-dark .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.7); }\n  .bp3-dark .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.9); }\n  .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(57, 75, 89, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-dark .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch .bp3-control-indicator::before{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-control.bp3-switch .bp3-switch-inner-text{\n    font-size:0.7em;\n    text-align:center; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:first-child{\n    line-height:0;\n    margin-left:0.5em;\n    margin-right:1.2em;\n    visibility:hidden; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:last-child{\n    line-height:1em;\n    margin-left:1.2em;\n    margin-right:0.5em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:first-child{\n    line-height:1em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:last-child{\n    line-height:0;\n    visibility:hidden; }\n  .bp3-dark .bp3-control{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-control.bp3-disabled{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-control .bp3-control-indicator{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-control:hover .bp3-control-indicator{\n      background-color:#30404d; }\n    .bp3-dark .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n      background:#202b33;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-control input:disabled ~ .bp3-control-indicator{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      cursor:not-allowed; }\n    .bp3-dark .bp3-control.bp3-checkbox input:disabled:checked ~ .bp3-control-indicator, .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-file-input{\n  cursor:pointer;\n  display:inline-block;\n  height:30px;\n  position:relative; }\n  .bp3-file-input input{\n    margin:0;\n    min-width:200px;\n    opacity:0; }\n    .bp3-file-input input:disabled + .bp3-file-upload-input,\n    .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n      background:rgba(206, 217, 224, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      resize:none; }\n      .bp3-file-input input:disabled + .bp3-file-upload-input::after,\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n        background-color:rgba(206, 217, 224, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(92, 112, 128, 0.6);\n        cursor:not-allowed;\n        outline:none; }\n        .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active:hover,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active:hover{\n          background:rgba(206, 217, 224, 0.7); }\n      .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input, .bp3-dark\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n        background:rgba(57, 75, 89, 0.5);\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after, .bp3-dark\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n          background-color:rgba(57, 75, 89, 0.5);\n          background-image:none;\n          -webkit-box-shadow:none;\n                  box-shadow:none;\n          color:rgba(167, 182, 194, 0.6); }\n          .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-dark\n          .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active{\n            background:rgba(57, 75, 89, 0.7); }\n  .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#182026; }\n  .bp3-dark .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#f5f8fa; }\n  .bp3-file-input.bp3-fill{\n    width:100%; }\n  .bp3-file-input.bp3-large,\n  .bp3-large .bp3-file-input{\n    height:40px; }\n  .bp3-file-input .bp3-file-upload-input-custom-text::after{\n    content:attr(bp3-button-text); }\n\n.bp3-file-upload-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle;\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:rgba(92, 112, 128, 0.6);\n  left:0;\n  padding-right:80px;\n  position:absolute;\n  right:0;\n  top:0;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-file-upload-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:focus, .bp3-file-upload-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-file-upload-input[type=\"search\"], .bp3-file-upload-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-file-upload-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-file-upload-input:disabled, .bp3-file-upload-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-file-upload-input::after{\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026;\n    min-height:24px;\n    min-width:24px;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    border-radius:3px;\n    content:\"Browse\";\n    line-height:24px;\n    margin:3px;\n    position:absolute;\n    right:0;\n    text-align:center;\n    top:0;\n    width:70px; }\n    .bp3-file-upload-input::after:hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-file-upload-input::after:active, .bp3-file-upload-input::after.bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-file-upload-input::after:disabled, .bp3-file-upload-input::after.bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-file-upload-input::after:disabled.bp3-active, .bp3-file-upload-input::after:disabled.bp3-active:hover, .bp3-file-upload-input::after.bp3-disabled.bp3-active, .bp3-file-upload-input::after.bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-file-upload-input:hover::after{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-file-upload-input:active::after{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-large .bp3-file-upload-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px;\n    padding-right:95px; }\n    .bp3-large .bp3-file-upload-input[type=\"search\"], .bp3-large .bp3-file-upload-input.bp3-round{\n      padding:0 15px; }\n    .bp3-large .bp3-file-upload-input::after{\n      min-height:30px;\n      min-width:30px;\n      line-height:30px;\n      margin:5px;\n      width:85px; }\n  .bp3-dark .bp3-file-upload-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:disabled, .bp3-dark .bp3-file-upload-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::after{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n      color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover, .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover{\n        background-color:#30404d;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        background-color:#202b33;\n        background-image:none;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n      .bp3-dark .bp3-file-upload-input::after:disabled, .bp3-dark .bp3-file-upload-input::after.bp3-disabled{\n        background-color:rgba(57, 75, 89, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-upload-input::after:disabled.bp3-active, .bp3-dark .bp3-file-upload-input::after.bp3-disabled.bp3-active{\n          background:rgba(57, 75, 89, 0.7); }\n      .bp3-dark .bp3-file-upload-input::after .bp3-button-spinner .bp3-spinner-head{\n        background:rgba(16, 22, 26, 0.5);\n        stroke:#8a9ba8; }\n    .bp3-dark .bp3-file-upload-input:hover::after{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:active::after{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n.bp3-file-upload-input::after{\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n.bp3-form-group{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0 0 15px; }\n  .bp3-form-group label.bp3-label{\n    margin-bottom:5px; }\n  .bp3-form-group .bp3-control{\n    margin-top:7px; }\n  .bp3-form-group .bp3-form-helper-text{\n    color:#5c7080;\n    font-size:12px;\n    margin-top:5px; }\n  .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#106ba3; }\n  .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#0d8050; }\n  .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#bf7326; }\n  .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#c23030; }\n  .bp3-form-group.bp3-inline{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row; }\n    .bp3-form-group.bp3-inline.bp3-large label.bp3-label{\n      line-height:40px;\n      margin:0 10px 0 0; }\n    .bp3-form-group.bp3-inline label.bp3-label{\n      line-height:30px;\n      margin:0 10px 0 0; }\n  .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-dark .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#48aff0; }\n  .bp3-dark .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#3dcc91; }\n  .bp3-dark .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#ffb366; }\n  .bp3-dark .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#ff7373; }\n  .bp3-dark .bp3-form-group .bp3-form-helper-text{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(167, 182, 194, 0.6) !important; }\n.bp3-input-group{\n  display:block;\n  position:relative; }\n  .bp3-input-group .bp3-input{\n    position:relative;\n    width:100%; }\n    .bp3-input-group .bp3-input:not(:first-child){\n      padding-left:30px; }\n    .bp3-input-group .bp3-input:not(:last-child){\n      padding-right:30px; }\n  .bp3-input-group .bp3-input-action,\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-button,\n  .bp3-input-group > .bp3-icon{\n    position:absolute;\n    top:0; }\n    .bp3-input-group .bp3-input-action:first-child,\n    .bp3-input-group > .bp3-input-left-container:first-child,\n    .bp3-input-group > .bp3-button:first-child,\n    .bp3-input-group > .bp3-icon:first-child{\n      left:0; }\n    .bp3-input-group .bp3-input-action:last-child,\n    .bp3-input-group > .bp3-input-left-container:last-child,\n    .bp3-input-group > .bp3-button:last-child,\n    .bp3-input-group > .bp3-icon:last-child{\n      right:0; }\n  .bp3-input-group .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    margin:3px;\n    padding:0 7px; }\n    .bp3-input-group .bp3-button:empty{\n      padding:0; }\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-icon{\n    z-index:1; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon{\n    color:#5c7080; }\n    .bp3-input-group > .bp3-input-left-container > .bp3-icon:empty,\n    .bp3-input-group > .bp3-icon:empty{\n      font-family:\"Icons16\", sans-serif;\n      font-size:16px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon,\n  .bp3-input-group .bp3-input-action > .bp3-spinner{\n    margin:7px; }\n  .bp3-input-group .bp3-tag{\n    margin:5px; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus),\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n    color:#5c7080; }\n    .bp3-dark .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus), .bp3-dark\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n      color:#a7b6c2; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large{\n      color:#5c7080; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled,\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled{\n    color:rgba(92, 112, 128, 0.6) !important; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-large{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-input-group.bp3-disabled{\n    cursor:not-allowed; }\n    .bp3-input-group.bp3-disabled .bp3-icon{\n      color:rgba(92, 112, 128, 0.6); }\n  .bp3-input-group.bp3-large .bp3-button{\n    min-height:30px;\n    min-width:30px;\n    margin:5px; }\n  .bp3-input-group.bp3-large > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-large > .bp3-icon,\n  .bp3-input-group.bp3-large .bp3-input-action > .bp3-spinner{\n    margin:12px; }\n  .bp3-input-group.bp3-large .bp3-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input-group.bp3-large .bp3-input[type=\"search\"], .bp3-input-group.bp3-large .bp3-input.bp3-round{\n      padding:0 15px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:first-child){\n      padding-left:40px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:last-child){\n      padding-right:40px; }\n  .bp3-input-group.bp3-small .bp3-button{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small .bp3-tag{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-small > .bp3-icon,\n  .bp3-input-group.bp3-small .bp3-input-action > .bp3-spinner{\n    margin:4px; }\n  .bp3-input-group.bp3-small .bp3-input{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input-group.bp3-small .bp3-input[type=\"search\"], .bp3-input-group.bp3-small .bp3-input.bp3-round{\n      padding:0 12px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:first-child){\n      padding-left:24px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:last-child){\n      padding-right:24px; }\n  .bp3-input-group.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-input-group.bp3-round .bp3-button,\n  .bp3-input-group.bp3-round .bp3-input,\n  .bp3-input-group.bp3-round .bp3-tag{\n    border-radius:30px; }\n  .bp3-dark .bp3-input-group .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-input-group.bp3-disabled .bp3-icon{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-input-group.bp3-intent-primary .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input-group.bp3-intent-primary .bp3-input:disabled, .bp3-input-group.bp3-intent-primary .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-primary > .bp3-icon{\n    color:#106ba3; }\n    .bp3-dark .bp3-input-group.bp3-intent-primary > .bp3-icon{\n      color:#48aff0; }\n  .bp3-input-group.bp3-intent-success .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input-group.bp3-intent-success .bp3-input:disabled, .bp3-input-group.bp3-intent-success .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-success > .bp3-icon{\n    color:#0d8050; }\n    .bp3-dark .bp3-input-group.bp3-intent-success > .bp3-icon{\n      color:#3dcc91; }\n  .bp3-input-group.bp3-intent-warning .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input-group.bp3-intent-warning .bp3-input:disabled, .bp3-input-group.bp3-intent-warning .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-warning > .bp3-icon{\n    color:#bf7326; }\n    .bp3-dark .bp3-input-group.bp3-intent-warning > .bp3-icon{\n      color:#ffb366; }\n  .bp3-input-group.bp3-intent-danger .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input-group.bp3-intent-danger .bp3-input:disabled, .bp3-input-group.bp3-intent-danger .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-danger > .bp3-icon{\n    color:#c23030; }\n    .bp3-dark .bp3-input-group.bp3-intent-danger > .bp3-icon{\n      color:#ff7373; }\n.bp3-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle; }\n  .bp3-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:focus, .bp3-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-input[type=\"search\"], .bp3-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-input:disabled, .bp3-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-input.bp3-large{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input.bp3-large[type=\"search\"], .bp3-input.bp3-large.bp3-round{\n      padding:0 15px; }\n  .bp3-input.bp3-small{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input.bp3-small[type=\"search\"], .bp3-input.bp3-small.bp3-round{\n      padding:0 12px; }\n  .bp3-input.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-dark .bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input:disabled, .bp3-dark .bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-input.bp3-intent-primary{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input.bp3-intent-primary:disabled, .bp3-input.bp3-intent-primary.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary:focus{\n        -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n                box-shadow:inset 0 0 0 1px #137cbd; }\n      .bp3-dark .bp3-input.bp3-intent-primary:disabled, .bp3-dark .bp3-input.bp3-intent-primary.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-success{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input.bp3-intent-success:disabled, .bp3-input.bp3-intent-success.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success:focus{\n        -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n                box-shadow:inset 0 0 0 1px #0f9960; }\n      .bp3-dark .bp3-input.bp3-intent-success:disabled, .bp3-dark .bp3-input.bp3-intent-success.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-warning{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input.bp3-intent-warning:disabled, .bp3-input.bp3-intent-warning.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning:focus{\n        -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n                box-shadow:inset 0 0 0 1px #d9822b; }\n      .bp3-dark .bp3-input.bp3-intent-warning:disabled, .bp3-dark .bp3-input.bp3-intent-warning.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-danger{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input.bp3-intent-danger:disabled, .bp3-input.bp3-intent-danger.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger:focus{\n        -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #db3737;\n                box-shadow:inset 0 0 0 1px #db3737; }\n      .bp3-dark .bp3-input.bp3-intent-danger:disabled, .bp3-dark .bp3-input.bp3-intent-danger.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input::-ms-clear{\n    display:none; }\ntextarea.bp3-input{\n  max-width:100%;\n  padding:10px; }\n  textarea.bp3-input, textarea.bp3-input.bp3-large, textarea.bp3-input.bp3-small{\n    height:auto;\n    line-height:inherit; }\n  textarea.bp3-input.bp3-small{\n    padding:8px; }\n  .bp3-dark textarea.bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark textarea.bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input:disabled, .bp3-dark textarea.bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\nlabel.bp3-label{\n  display:block;\n  margin-bottom:15px;\n  margin-top:0; }\n  label.bp3-label .bp3-html-select,\n  label.bp3-label .bp3-input,\n  label.bp3-label .bp3-select,\n  label.bp3-label .bp3-slider,\n  label.bp3-label .bp3-popover-wrapper{\n    display:block;\n    margin-top:5px;\n    text-transform:none; }\n  label.bp3-label .bp3-button-group{\n    margin-top:5px; }\n  label.bp3-label .bp3-select select,\n  label.bp3-label .bp3-html-select select{\n    font-weight:400;\n    vertical-align:top;\n    width:100%; }\n  label.bp3-label.bp3-disabled,\n  label.bp3-label.bp3-disabled .bp3-text-muted{\n    color:rgba(92, 112, 128, 0.6); }\n  label.bp3-label.bp3-inline{\n    line-height:30px; }\n    label.bp3-label.bp3-inline .bp3-html-select,\n    label.bp3-label.bp3-inline .bp3-input,\n    label.bp3-label.bp3-inline .bp3-input-group,\n    label.bp3-label.bp3-inline .bp3-select,\n    label.bp3-label.bp3-inline .bp3-popover-wrapper{\n      display:inline-block;\n      margin:0 0 0 5px;\n      vertical-align:top; }\n    label.bp3-label.bp3-inline .bp3-button-group{\n      margin:0 0 0 5px; }\n    label.bp3-label.bp3-inline .bp3-input-group .bp3-input{\n      margin-left:0; }\n    label.bp3-label.bp3-inline.bp3-large{\n      line-height:40px; }\n  label.bp3-label:not(.bp3-inline) .bp3-popover-target{\n    display:block; }\n  .bp3-dark label.bp3-label{\n    color:#f5f8fa; }\n    .bp3-dark label.bp3-label.bp3-disabled,\n    .bp3-dark label.bp3-label.bp3-disabled .bp3-text-muted{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 14px;\n          flex:1 1 14px;\n  min-height:0;\n  padding:0;\n  width:30px; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:first-child{\n    border-radius:0 3px 0 0; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:last-child{\n    border-radius:0 0 3px 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:first-child{\n  border-radius:3px 0 0 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:last-child{\n  border-radius:0 0 0 3px; }\n\n.bp3-numeric-input.bp3-large .bp3-button-group.bp3-vertical > .bp3-button{\n  width:40px; }\n\nform{\n  display:block; }\n.bp3-html-select select,\n.bp3-select select{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  -moz-appearance:none;\n  -webkit-appearance:none;\n  border-radius:3px;\n  height:30px;\n  padding:0 25px 0 10px;\n  width:100%; }\n  .bp3-html-select select > *, .bp3-select select > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-html-select select > .bp3-fill, .bp3-select select > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-html-select select::before,\n  .bp3-select select::before, .bp3-html-select select > *, .bp3-select select > *{\n    margin-right:7px; }\n  .bp3-html-select select:empty::before,\n  .bp3-select select:empty::before,\n  .bp3-html-select select > :last-child,\n  .bp3-select select > :last-child{\n    margin-right:0; }\n  .bp3-html-select select:hover,\n  .bp3-select select:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-html-select select:active,\n  .bp3-select select:active, .bp3-html-select select.bp3-active,\n  .bp3-select select.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-html-select select:disabled,\n  .bp3-select select:disabled, .bp3-html-select select.bp3-disabled,\n  .bp3-select select.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-html-select select:disabled.bp3-active,\n    .bp3-select select:disabled.bp3-active, .bp3-html-select select:disabled.bp3-active:hover,\n    .bp3-select select:disabled.bp3-active:hover, .bp3-html-select select.bp3-disabled.bp3-active,\n    .bp3-select select.bp3-disabled.bp3-active, .bp3-html-select select.bp3-disabled.bp3-active:hover,\n    .bp3-select select.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n\n.bp3-html-select.bp3-minimal select,\n.bp3-select.bp3-minimal select{\n  background:none;\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  .bp3-html-select.bp3-minimal select:hover,\n  .bp3-select.bp3-minimal select:hover{\n    background:rgba(167, 182, 194, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026;\n    text-decoration:none; }\n  .bp3-html-select.bp3-minimal select:active,\n  .bp3-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal select.bp3-active,\n  .bp3-select.bp3-minimal select.bp3-active{\n    background:rgba(115, 134, 148, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026; }\n  .bp3-html-select.bp3-minimal select:disabled,\n  .bp3-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal select:disabled:hover,\n  .bp3-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal select.bp3-disabled,\n  .bp3-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal select.bp3-disabled:hover,\n  .bp3-select.bp3-minimal select.bp3-disabled:hover{\n    background:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n    .bp3-html-select.bp3-minimal select:disabled.bp3-active,\n    .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active{\n      background:rgba(115, 134, 148, 0.3); }\n  .bp3-dark .bp3-html-select.bp3-minimal select, .bp3-html-select.bp3-minimal .bp3-dark select,\n  .bp3-dark .bp3-select.bp3-minimal select, .bp3-select.bp3-minimal .bp3-dark select{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover, .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover{\n      background:rgba(138, 155, 168, 0.15); }\n    .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:rgba(138, 155, 168, 0.3);\n      color:#f5f8fa; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal .bp3-dark select:disabled,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled, .bp3-select.bp3-minimal .bp3-dark select:disabled, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled:hover, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover{\n      background:none;\n      color:rgba(167, 182, 194, 0.6);\n      cursor:not-allowed; }\n      .bp3-dark .bp3-html-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active{\n        background:rgba(138, 155, 168, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-primary,\n  .bp3-select.bp3-minimal select.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover{\n      background:rgba(19, 124, 189, 0.15);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:rgba(19, 124, 189, 0.3);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled{\n      background:none;\n      color:rgba(16, 107, 163, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active{\n        background:rgba(19, 124, 189, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n      stroke:#106ba3; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary{\n      color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.2);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(72, 175, 240, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-success,\n  .bp3-select.bp3-minimal select.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover{\n      background:rgba(15, 153, 96, 0.15);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:rgba(15, 153, 96, 0.3);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled{\n      background:none;\n      color:rgba(13, 128, 80, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active{\n        background:rgba(15, 153, 96, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n      stroke:#0d8050; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success{\n      color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.2);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(61, 204, 145, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-warning,\n  .bp3-select.bp3-minimal select.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover{\n      background:rgba(217, 130, 43, 0.15);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:rgba(217, 130, 43, 0.3);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled{\n      background:none;\n      color:rgba(191, 115, 38, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active{\n        background:rgba(217, 130, 43, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n      stroke:#bf7326; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning{\n      color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.2);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(255, 179, 102, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-danger,\n  .bp3-select.bp3-minimal select.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover{\n      background:rgba(219, 55, 55, 0.15);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:rgba(219, 55, 55, 0.3);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled{\n      background:none;\n      color:rgba(194, 48, 48, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active{\n        background:rgba(219, 55, 55, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n      stroke:#c23030; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger{\n      color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.2);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(255, 115, 115, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n\n.bp3-html-select.bp3-large select,\n.bp3-select.bp3-large select{\n  font-size:16px;\n  height:40px;\n  padding-right:35px; }\n\n.bp3-dark .bp3-html-select select, .bp3-dark .bp3-select select{\n  background-color:#394b59;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n  color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover, .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    background-color:#202b33;\n    background-image:none;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-html-select select:disabled, .bp3-dark .bp3-select select:disabled, .bp3-dark .bp3-html-select select.bp3-disabled, .bp3-dark .bp3-select select.bp3-disabled{\n    background-color:rgba(57, 75, 89, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-html-select select:disabled.bp3-active, .bp3-dark .bp3-select select:disabled.bp3-active, .bp3-dark .bp3-html-select select.bp3-disabled.bp3-active, .bp3-dark .bp3-select select.bp3-disabled.bp3-active{\n      background:rgba(57, 75, 89, 0.7); }\n  .bp3-dark .bp3-html-select select .bp3-button-spinner .bp3-spinner-head, .bp3-dark .bp3-select select .bp3-button-spinner .bp3-spinner-head{\n    background:rgba(16, 22, 26, 0.5);\n    stroke:#8a9ba8; }\n\n.bp3-html-select select:disabled,\n.bp3-select select:disabled{\n  background-color:rgba(206, 217, 224, 0.5);\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-html-select .bp3-icon,\n.bp3-select .bp3-icon, .bp3-select::after{\n  color:#5c7080;\n  pointer-events:none;\n  position:absolute;\n  right:7px;\n  top:7px; }\n  .bp3-html-select .bp3-disabled.bp3-icon,\n  .bp3-select .bp3-disabled.bp3-icon, .bp3-disabled.bp3-select::after{\n    color:rgba(92, 112, 128, 0.6); }\n.bp3-html-select,\n.bp3-select{\n  display:inline-block;\n  letter-spacing:normal;\n  position:relative;\n  vertical-align:middle; }\n  .bp3-html-select select::-ms-expand,\n  .bp3-select select::-ms-expand{\n    display:none; }\n  .bp3-html-select .bp3-icon,\n  .bp3-select .bp3-icon{\n    color:#5c7080; }\n    .bp3-html-select .bp3-icon:hover,\n    .bp3-select .bp3-icon:hover{\n      color:#182026; }\n    .bp3-dark .bp3-html-select .bp3-icon, .bp3-dark\n    .bp3-select .bp3-icon{\n      color:#a7b6c2; }\n      .bp3-dark .bp3-html-select .bp3-icon:hover, .bp3-dark\n      .bp3-select .bp3-icon:hover{\n        color:#f5f8fa; }\n  .bp3-html-select.bp3-large::after,\n  .bp3-html-select.bp3-large .bp3-icon,\n  .bp3-select.bp3-large::after,\n  .bp3-select.bp3-large .bp3-icon{\n    right:12px;\n    top:12px; }\n  .bp3-html-select.bp3-fill,\n  .bp3-html-select.bp3-fill select,\n  .bp3-select.bp3-fill,\n  .bp3-select.bp3-fill select{\n    width:100%; }\n  .bp3-dark .bp3-html-select option, .bp3-dark\n  .bp3-select option{\n    background-color:#30404d;\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select option:disabled, .bp3-dark\n  .bp3-select option:disabled{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-html-select::after, .bp3-dark\n  .bp3-select::after{\n    color:#a7b6c2; }\n\n.bp3-select::after{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  content:\"\"; }\n.bp3-running-text table, table.bp3-html-table{\n  border-spacing:0;\n  font-size:14px; }\n  .bp3-running-text table th, table.bp3-html-table th,\n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    padding:11px;\n    text-align:left;\n    vertical-align:top; }\n  .bp3-running-text table th, table.bp3-html-table th{\n    color:#182026;\n    font-weight:600; }\n  \n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    color:#182026; }\n  .bp3-running-text table tbody tr:first-child th, table.bp3-html-table tbody tr:first-child th,\n  .bp3-running-text table tbody tr:first-child td,\n  table.bp3-html-table tbody tr:first-child td,\n  .bp3-running-text table tfoot tr:first-child th,\n  table.bp3-html-table tfoot tr:first-child th,\n  .bp3-running-text table tfoot tr:first-child td,\n  table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-running-text table th, .bp3-running-text .bp3-dark table th, .bp3-dark table.bp3-html-table th{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table td, .bp3-running-text .bp3-dark table td, .bp3-dark table.bp3-html-table td{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table tbody tr:first-child th, .bp3-running-text .bp3-dark table tbody tr:first-child th, .bp3-dark table.bp3-html-table tbody tr:first-child th,\n  .bp3-dark .bp3-running-text table tbody tr:first-child td,\n  .bp3-running-text .bp3-dark table tbody tr:first-child td,\n  .bp3-dark table.bp3-html-table tbody tr:first-child td,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child th,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child th,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child th,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child td,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child td,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-condensed th,\ntable.bp3-html-table.bp3-html-table-condensed td, table.bp3-html-table.bp3-small th,\ntable.bp3-html-table.bp3-small td{\n  padding-bottom:6px;\n  padding-top:6px; }\n\ntable.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n  background:rgba(191, 204, 214, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n  -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered tbody tr td,\ntable.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n  -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n  table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n    -webkit-box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-interactive tbody tr:hover td{\n  background-color:rgba(191, 204, 214, 0.3);\n  cursor:pointer; }\n\ntable.bp3-html-table.bp3-interactive tbody tr:active td{\n  background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-dark table.bp3-html-table{ }\n  .bp3-dark table.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n    background:rgba(92, 112, 128, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td,\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n      -webkit-box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15);\n              box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:first-child{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:hover td{\n    background-color:rgba(92, 112, 128, 0.3);\n    cursor:pointer; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:active td{\n    background-color:rgba(92, 112, 128, 0.4); }\n\n.bp3-key-combo{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center; }\n  .bp3-key-combo > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-key-combo > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-key-combo::before,\n  .bp3-key-combo > *{\n    margin-right:5px; }\n  .bp3-key-combo:empty::before,\n  .bp3-key-combo > :last-child{\n    margin-right:0; }\n\n.bp3-hotkey-dialog{\n  padding-bottom:0;\n  top:40px; }\n  .bp3-hotkey-dialog .bp3-dialog-body{\n    margin:0;\n    padding:0; }\n  .bp3-hotkey-dialog .bp3-hotkey-label{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1; }\n\n.bp3-hotkey-column{\n  margin:auto;\n  max-height:80vh;\n  overflow-y:auto;\n  padding:30px; }\n  .bp3-hotkey-column .bp3-heading{\n    margin-bottom:20px; }\n    .bp3-hotkey-column .bp3-heading:not(:first-child){\n      margin-top:40px; }\n\n.bp3-hotkey{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:justify;\n      -ms-flex-pack:justify;\n          justify-content:space-between;\n  margin-left:0;\n  margin-right:0; }\n  .bp3-hotkey:not(:last-child){\n    margin-bottom:10px; }\n.bp3-icon{\n  display:inline-block;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  vertical-align:text-bottom; }\n  .bp3-icon:not(:empty)::before{\n    content:\"\" !important;\n    content:unset !important; }\n  .bp3-icon > svg{\n    display:block; }\n    .bp3-icon > svg:not([fill]){\n      fill:currentColor; }\n\n.bp3-icon.bp3-intent-primary, .bp3-icon-standard.bp3-intent-primary, .bp3-icon-large.bp3-intent-primary{\n  color:#106ba3; }\n  .bp3-dark .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-icon-large.bp3-intent-primary{\n    color:#48aff0; }\n\n.bp3-icon.bp3-intent-success, .bp3-icon-standard.bp3-intent-success, .bp3-icon-large.bp3-intent-success{\n  color:#0d8050; }\n  .bp3-dark .bp3-icon.bp3-intent-success, .bp3-dark .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-icon-large.bp3-intent-success{\n    color:#3dcc91; }\n\n.bp3-icon.bp3-intent-warning, .bp3-icon-standard.bp3-intent-warning, .bp3-icon-large.bp3-intent-warning{\n  color:#bf7326; }\n  .bp3-dark .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-icon-large.bp3-intent-warning{\n    color:#ffb366; }\n\n.bp3-icon.bp3-intent-danger, .bp3-icon-standard.bp3-intent-danger, .bp3-icon-large.bp3-intent-danger{\n  color:#c23030; }\n  .bp3-dark .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-icon-large.bp3-intent-danger{\n    color:#ff7373; }\n\nspan.bp3-icon-standard{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon-large{\n  font-family:\"Icons20\", sans-serif;\n  font-size:20px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon:empty{\n  font-family:\"Icons20\";\n  font-size:inherit;\n  font-style:normal;\n  font-weight:400;\n  line-height:1; }\n  span.bp3-icon:empty::before{\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased; }\n\n.bp3-icon-add::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-artifact::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-folder::before{\n  content:\"\"; }\n\n.bp3-icon-airplane::before{\n  content:\"\"; }\n\n.bp3-icon-align-center::before{\n  content:\"\"; }\n\n.bp3-icon-align-justify::before{\n  content:\"\"; }\n\n.bp3-icon-align-left::before{\n  content:\"\"; }\n\n.bp3-icon-align-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-horizontal-center::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-left::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-top::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-vertical-center::before{\n  content:\"\"; }\n\n.bp3-icon-annotation::before{\n  content:\"\"; }\n\n.bp3-icon-application::before{\n  content:\"\"; }\n\n.bp3-icon-applications::before{\n  content:\"\"; }\n\n.bp3-icon-archive::before{\n  content:\"\"; }\n\n.bp3-icon-arrow-bottom-left::before{\n  content:\"↙\"; }\n\n.bp3-icon-arrow-bottom-right::before{\n  content:\"↘\"; }\n\n.bp3-icon-arrow-down::before{\n  content:\"↓\"; }\n\n.bp3-icon-arrow-left::before{\n  content:\"←\"; }\n\n.bp3-icon-arrow-right::before{\n  content:\"→\"; }\n\n.bp3-icon-arrow-top-left::before{\n  content:\"↖\"; }\n\n.bp3-icon-arrow-top-right::before{\n  content:\"↗\"; }\n\n.bp3-icon-arrow-up::before{\n  content:\"↑\"; }\n\n.bp3-icon-arrows-horizontal::before{\n  content:\"↔\"; }\n\n.bp3-icon-arrows-vertical::before{\n  content:\"↕\"; }\n\n.bp3-icon-asterisk::before{\n  content:\"*\"; }\n\n.bp3-icon-automatic-updates::before{\n  content:\"\"; }\n\n.bp3-icon-badge::before{\n  content:\"\"; }\n\n.bp3-icon-ban-circle::before{\n  content:\"\"; }\n\n.bp3-icon-bank-account::before{\n  content:\"\"; }\n\n.bp3-icon-barcode::before{\n  content:\"\"; }\n\n.bp3-icon-blank::before{\n  content:\"\"; }\n\n.bp3-icon-blocked-person::before{\n  content:\"\"; }\n\n.bp3-icon-bold::before{\n  content:\"\"; }\n\n.bp3-icon-book::before{\n  content:\"\"; }\n\n.bp3-icon-bookmark::before{\n  content:\"\"; }\n\n.bp3-icon-box::before{\n  content:\"\"; }\n\n.bp3-icon-briefcase::before{\n  content:\"\"; }\n\n.bp3-icon-bring-data::before{\n  content:\"\"; }\n\n.bp3-icon-build::before{\n  content:\"\"; }\n\n.bp3-icon-calculator::before{\n  content:\"\"; }\n\n.bp3-icon-calendar::before{\n  content:\"\"; }\n\n.bp3-icon-camera::before{\n  content:\"\"; }\n\n.bp3-icon-caret-down::before{\n  content:\"⌄\"; }\n\n.bp3-icon-caret-left::before{\n  content:\"〈\"; }\n\n.bp3-icon-caret-right::before{\n  content:\"〉\"; }\n\n.bp3-icon-caret-up::before{\n  content:\"⌃\"; }\n\n.bp3-icon-cell-tower::before{\n  content:\"\"; }\n\n.bp3-icon-changes::before{\n  content:\"\"; }\n\n.bp3-icon-chart::before{\n  content:\"\"; }\n\n.bp3-icon-chat::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-backward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-forward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-circle::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-down::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-left::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-right::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-up::before{\n  content:\"\"; }\n\n.bp3-icon-citation::before{\n  content:\"\"; }\n\n.bp3-icon-clean::before{\n  content:\"\"; }\n\n.bp3-icon-clipboard::before{\n  content:\"\"; }\n\n.bp3-icon-cloud::before{\n  content:\"☁\"; }\n\n.bp3-icon-cloud-download::before{\n  content:\"\"; }\n\n.bp3-icon-cloud-upload::before{\n  content:\"\"; }\n\n.bp3-icon-code::before{\n  content:\"\"; }\n\n.bp3-icon-code-block::before{\n  content:\"\"; }\n\n.bp3-icon-cog::before{\n  content:\"\"; }\n\n.bp3-icon-collapse-all::before{\n  content:\"\"; }\n\n.bp3-icon-column-layout::before{\n  content:\"\"; }\n\n.bp3-icon-comment::before{\n  content:\"\"; }\n\n.bp3-icon-comparison::before{\n  content:\"\"; }\n\n.bp3-icon-compass::before{\n  content:\"\"; }\n\n.bp3-icon-compressed::before{\n  content:\"\"; }\n\n.bp3-icon-confirm::before{\n  content:\"\"; }\n\n.bp3-icon-console::before{\n  content:\"\"; }\n\n.bp3-icon-contrast::before{\n  content:\"\"; }\n\n.bp3-icon-control::before{\n  content:\"\"; }\n\n.bp3-icon-credit-card::before{\n  content:\"\"; }\n\n.bp3-icon-cross::before{\n  content:\"✗\"; }\n\n.bp3-icon-crown::before{\n  content:\"\"; }\n\n.bp3-icon-cube::before{\n  content:\"\"; }\n\n.bp3-icon-cube-add::before{\n  content:\"\"; }\n\n.bp3-icon-cube-remove::before{\n  content:\"\"; }\n\n.bp3-icon-curved-range-chart::before{\n  content:\"\"; }\n\n.bp3-icon-cut::before{\n  content:\"\"; }\n\n.bp3-icon-dashboard::before{\n  content:\"\"; }\n\n.bp3-icon-data-lineage::before{\n  content:\"\"; }\n\n.bp3-icon-database::before{\n  content:\"\"; }\n\n.bp3-icon-delete::before{\n  content:\"\"; }\n\n.bp3-icon-delta::before{\n  content:\"Δ\"; }\n\n.bp3-icon-derive-column::before{\n  content:\"\"; }\n\n.bp3-icon-desktop::before{\n  content:\"\"; }\n\n.bp3-icon-diagnosis::before{\n  content:\"\"; }\n\n.bp3-icon-diagram-tree::before{\n  content:\"\"; }\n\n.bp3-icon-direction-left::before{\n  content:\"\"; }\n\n.bp3-icon-direction-right::before{\n  content:\"\"; }\n\n.bp3-icon-disable::before{\n  content:\"\"; }\n\n.bp3-icon-document::before{\n  content:\"\"; }\n\n.bp3-icon-document-open::before{\n  content:\"\"; }\n\n.bp3-icon-document-share::before{\n  content:\"\"; }\n\n.bp3-icon-dollar::before{\n  content:\"$\"; }\n\n.bp3-icon-dot::before{\n  content:\"•\"; }\n\n.bp3-icon-double-caret-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-double-caret-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-doughnut-chart::before{\n  content:\"\"; }\n\n.bp3-icon-download::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-draw::before{\n  content:\"\"; }\n\n.bp3-icon-drive-time::before{\n  content:\"\"; }\n\n.bp3-icon-duplicate::before{\n  content:\"\"; }\n\n.bp3-icon-edit::before{\n  content:\"✎\"; }\n\n.bp3-icon-eject::before{\n  content:\"⏏\"; }\n\n.bp3-icon-endorsed::before{\n  content:\"\"; }\n\n.bp3-icon-envelope::before{\n  content:\"✉\"; }\n\n.bp3-icon-equals::before{\n  content:\"\"; }\n\n.bp3-icon-eraser::before{\n  content:\"\"; }\n\n.bp3-icon-error::before{\n  content:\"\"; }\n\n.bp3-icon-euro::before{\n  content:\"€\"; }\n\n.bp3-icon-exchange::before{\n  content:\"\"; }\n\n.bp3-icon-exclude-row::before{\n  content:\"\"; }\n\n.bp3-icon-expand-all::before{\n  content:\"\"; }\n\n.bp3-icon-export::before{\n  content:\"\"; }\n\n.bp3-icon-eye-off::before{\n  content:\"\"; }\n\n.bp3-icon-eye-on::before{\n  content:\"\"; }\n\n.bp3-icon-eye-open::before{\n  content:\"\"; }\n\n.bp3-icon-fast-backward::before{\n  content:\"\"; }\n\n.bp3-icon-fast-forward::before{\n  content:\"\"; }\n\n.bp3-icon-feed::before{\n  content:\"\"; }\n\n.bp3-icon-feed-subscribed::before{\n  content:\"\"; }\n\n.bp3-icon-film::before{\n  content:\"\"; }\n\n.bp3-icon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-filter-keep::before{\n  content:\"\"; }\n\n.bp3-icon-filter-list::before{\n  content:\"\"; }\n\n.bp3-icon-filter-open::before{\n  content:\"\"; }\n\n.bp3-icon-filter-remove::before{\n  content:\"\"; }\n\n.bp3-icon-flag::before{\n  content:\"⚑\"; }\n\n.bp3-icon-flame::before{\n  content:\"\"; }\n\n.bp3-icon-flash::before{\n  content:\"\"; }\n\n.bp3-icon-floppy-disk::before{\n  content:\"\"; }\n\n.bp3-icon-flow-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flow-end::before{\n  content:\"\"; }\n\n.bp3-icon-flow-linear::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flows::before{\n  content:\"\"; }\n\n.bp3-icon-folder-close::before{\n  content:\"\"; }\n\n.bp3-icon-folder-new::before{\n  content:\"\"; }\n\n.bp3-icon-folder-open::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared-open::before{\n  content:\"\"; }\n\n.bp3-icon-follower::before{\n  content:\"\"; }\n\n.bp3-icon-following::before{\n  content:\"\"; }\n\n.bp3-icon-font::before{\n  content:\"\"; }\n\n.bp3-icon-fork::before{\n  content:\"\"; }\n\n.bp3-icon-form::before{\n  content:\"\"; }\n\n.bp3-icon-full-circle::before{\n  content:\"\"; }\n\n.bp3-icon-full-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-fullscreen::before{\n  content:\"\"; }\n\n.bp3-icon-function::before{\n  content:\"\"; }\n\n.bp3-icon-gantt-chart::before{\n  content:\"\"; }\n\n.bp3-icon-geolocation::before{\n  content:\"\"; }\n\n.bp3-icon-geosearch::before{\n  content:\"\"; }\n\n.bp3-icon-git-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-commit::before{\n  content:\"\"; }\n\n.bp3-icon-git-merge::before{\n  content:\"\"; }\n\n.bp3-icon-git-new-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-pull::before{\n  content:\"\"; }\n\n.bp3-icon-git-push::before{\n  content:\"\"; }\n\n.bp3-icon-git-repo::before{\n  content:\"\"; }\n\n.bp3-icon-glass::before{\n  content:\"\"; }\n\n.bp3-icon-globe::before{\n  content:\"\"; }\n\n.bp3-icon-globe-network::before{\n  content:\"\"; }\n\n.bp3-icon-graph::before{\n  content:\"\"; }\n\n.bp3-icon-graph-remove::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-grid::before{\n  content:\"\"; }\n\n.bp3-icon-grid-view::before{\n  content:\"\"; }\n\n.bp3-icon-group-objects::before{\n  content:\"\"; }\n\n.bp3-icon-grouped-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-hand::before{\n  content:\"\"; }\n\n.bp3-icon-hand-down::before{\n  content:\"\"; }\n\n.bp3-icon-hand-left::before{\n  content:\"\"; }\n\n.bp3-icon-hand-right::before{\n  content:\"\"; }\n\n.bp3-icon-hand-up::before{\n  content:\"\"; }\n\n.bp3-icon-header::before{\n  content:\"\"; }\n\n.bp3-icon-header-one::before{\n  content:\"\"; }\n\n.bp3-icon-header-two::before{\n  content:\"\"; }\n\n.bp3-icon-headset::before{\n  content:\"\"; }\n\n.bp3-icon-heart::before{\n  content:\"♥\"; }\n\n.bp3-icon-heart-broken::before{\n  content:\"\"; }\n\n.bp3-icon-heat-grid::before{\n  content:\"\"; }\n\n.bp3-icon-heatmap::before{\n  content:\"\"; }\n\n.bp3-icon-help::before{\n  content:\"?\"; }\n\n.bp3-icon-helper-management::before{\n  content:\"\"; }\n\n.bp3-icon-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-history::before{\n  content:\"\"; }\n\n.bp3-icon-home::before{\n  content:\"⌂\"; }\n\n.bp3-icon-horizontal-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-id-number::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-left::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-right::before{\n  content:\"\"; }\n\n.bp3-icon-import::before{\n  content:\"\"; }\n\n.bp3-icon-inbox::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-geo::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-search::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-update::before{\n  content:\"\"; }\n\n.bp3-icon-info-sign::before{\n  content:\"ℹ\"; }\n\n.bp3-icon-inheritance::before{\n  content:\"\"; }\n\n.bp3-icon-inner-join::before{\n  content:\"\"; }\n\n.bp3-icon-insert::before{\n  content:\"\"; }\n\n.bp3-icon-intersection::before{\n  content:\"\"; }\n\n.bp3-icon-ip-address::before{\n  content:\"\"; }\n\n.bp3-icon-issue::before{\n  content:\"\"; }\n\n.bp3-icon-issue-closed::before{\n  content:\"\"; }\n\n.bp3-icon-issue-new::before{\n  content:\"\"; }\n\n.bp3-icon-italic::before{\n  content:\"\"; }\n\n.bp3-icon-join-table::before{\n  content:\"\"; }\n\n.bp3-icon-key::before{\n  content:\"\"; }\n\n.bp3-icon-key-backspace::before{\n  content:\"\"; }\n\n.bp3-icon-key-command::before{\n  content:\"\"; }\n\n.bp3-icon-key-control::before{\n  content:\"\"; }\n\n.bp3-icon-key-delete::before{\n  content:\"\"; }\n\n.bp3-icon-key-enter::before{\n  content:\"\"; }\n\n.bp3-icon-key-escape::before{\n  content:\"\"; }\n\n.bp3-icon-key-option::before{\n  content:\"\"; }\n\n.bp3-icon-key-shift::before{\n  content:\"\"; }\n\n.bp3-icon-key-tab::before{\n  content:\"\"; }\n\n.bp3-icon-known-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-lab-test::before{\n  content:\"\"; }\n\n.bp3-icon-label::before{\n  content:\"\"; }\n\n.bp3-icon-layer::before{\n  content:\"\"; }\n\n.bp3-icon-layers::before{\n  content:\"\"; }\n\n.bp3-icon-layout::before{\n  content:\"\"; }\n\n.bp3-icon-layout-auto::before{\n  content:\"\"; }\n\n.bp3-icon-layout-balloon::before{\n  content:\"\"; }\n\n.bp3-icon-layout-circle::before{\n  content:\"\"; }\n\n.bp3-icon-layout-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-group-by::before{\n  content:\"\"; }\n\n.bp3-icon-layout-hierarchy::before{\n  content:\"\"; }\n\n.bp3-icon-layout-linear::before{\n  content:\"\"; }\n\n.bp3-icon-layout-skew-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-sorted-clusters::before{\n  content:\"\"; }\n\n.bp3-icon-learning::before{\n  content:\"\"; }\n\n.bp3-icon-left-join::before{\n  content:\"\"; }\n\n.bp3-icon-less-than::before{\n  content:\"\"; }\n\n.bp3-icon-less-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-lifesaver::before{\n  content:\"\"; }\n\n.bp3-icon-lightbulb::before{\n  content:\"\"; }\n\n.bp3-icon-link::before{\n  content:\"\"; }\n\n.bp3-icon-list::before{\n  content:\"☰\"; }\n\n.bp3-icon-list-columns::before{\n  content:\"\"; }\n\n.bp3-icon-list-detail-view::before{\n  content:\"\"; }\n\n.bp3-icon-locate::before{\n  content:\"\"; }\n\n.bp3-icon-lock::before{\n  content:\"\"; }\n\n.bp3-icon-log-in::before{\n  content:\"\"; }\n\n.bp3-icon-log-out::before{\n  content:\"\"; }\n\n.bp3-icon-manual::before{\n  content:\"\"; }\n\n.bp3-icon-manually-entered-data::before{\n  content:\"\"; }\n\n.bp3-icon-map::before{\n  content:\"\"; }\n\n.bp3-icon-map-create::before{\n  content:\"\"; }\n\n.bp3-icon-map-marker::before{\n  content:\"\"; }\n\n.bp3-icon-maximize::before{\n  content:\"\"; }\n\n.bp3-icon-media::before{\n  content:\"\"; }\n\n.bp3-icon-menu::before{\n  content:\"\"; }\n\n.bp3-icon-menu-closed::before{\n  content:\"\"; }\n\n.bp3-icon-menu-open::before{\n  content:\"\"; }\n\n.bp3-icon-merge-columns::before{\n  content:\"\"; }\n\n.bp3-icon-merge-links::before{\n  content:\"\"; }\n\n.bp3-icon-minimize::before{\n  content:\"\"; }\n\n.bp3-icon-minus::before{\n  content:\"−\"; }\n\n.bp3-icon-mobile-phone::before{\n  content:\"\"; }\n\n.bp3-icon-mobile-video::before{\n  content:\"\"; }\n\n.bp3-icon-moon::before{\n  content:\"\"; }\n\n.bp3-icon-more::before{\n  content:\"\"; }\n\n.bp3-icon-mountain::before{\n  content:\"\"; }\n\n.bp3-icon-move::before{\n  content:\"\"; }\n\n.bp3-icon-mugshot::before{\n  content:\"\"; }\n\n.bp3-icon-multi-select::before{\n  content:\"\"; }\n\n.bp3-icon-music::before{\n  content:\"\"; }\n\n.bp3-icon-new-drawing::before{\n  content:\"\"; }\n\n.bp3-icon-new-grid-item::before{\n  content:\"\"; }\n\n.bp3-icon-new-layer::before{\n  content:\"\"; }\n\n.bp3-icon-new-layers::before{\n  content:\"\"; }\n\n.bp3-icon-new-link::before{\n  content:\"\"; }\n\n.bp3-icon-new-object::before{\n  content:\"\"; }\n\n.bp3-icon-new-person::before{\n  content:\"\"; }\n\n.bp3-icon-new-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-new-text-box::before{\n  content:\"\"; }\n\n.bp3-icon-ninja::before{\n  content:\"\"; }\n\n.bp3-icon-not-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-notifications::before{\n  content:\"\"; }\n\n.bp3-icon-notifications-updated::before{\n  content:\"\"; }\n\n.bp3-icon-numbered-list::before{\n  content:\"\"; }\n\n.bp3-icon-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-office::before{\n  content:\"\"; }\n\n.bp3-icon-offline::before{\n  content:\"\"; }\n\n.bp3-icon-oil-field::before{\n  content:\"\"; }\n\n.bp3-icon-one-column::before{\n  content:\"\"; }\n\n.bp3-icon-outdated::before{\n  content:\"\"; }\n\n.bp3-icon-page-layout::before{\n  content:\"\"; }\n\n.bp3-icon-panel-stats::before{\n  content:\"\"; }\n\n.bp3-icon-panel-table::before{\n  content:\"\"; }\n\n.bp3-icon-paperclip::before{\n  content:\"\"; }\n\n.bp3-icon-paragraph::before{\n  content:\"\"; }\n\n.bp3-icon-path::before{\n  content:\"\"; }\n\n.bp3-icon-path-search::before{\n  content:\"\"; }\n\n.bp3-icon-pause::before{\n  content:\"\"; }\n\n.bp3-icon-people::before{\n  content:\"\"; }\n\n.bp3-icon-percentage::before{\n  content:\"\"; }\n\n.bp3-icon-person::before{\n  content:\"\"; }\n\n.bp3-icon-phone::before{\n  content:\"☎\"; }\n\n.bp3-icon-pie-chart::before{\n  content:\"\"; }\n\n.bp3-icon-pin::before{\n  content:\"\"; }\n\n.bp3-icon-pivot::before{\n  content:\"\"; }\n\n.bp3-icon-pivot-table::before{\n  content:\"\"; }\n\n.bp3-icon-play::before{\n  content:\"\"; }\n\n.bp3-icon-plus::before{\n  content:\"+\"; }\n\n.bp3-icon-polygon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-power::before{\n  content:\"\"; }\n\n.bp3-icon-predictive-analysis::before{\n  content:\"\"; }\n\n.bp3-icon-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-presentation::before{\n  content:\"\"; }\n\n.bp3-icon-print::before{\n  content:\"⎙\"; }\n\n.bp3-icon-projects::before{\n  content:\"\"; }\n\n.bp3-icon-properties::before{\n  content:\"\"; }\n\n.bp3-icon-property::before{\n  content:\"\"; }\n\n.bp3-icon-publish-function::before{\n  content:\"\"; }\n\n.bp3-icon-pulse::before{\n  content:\"\"; }\n\n.bp3-icon-random::before{\n  content:\"\"; }\n\n.bp3-icon-record::before{\n  content:\"\"; }\n\n.bp3-icon-redo::before{\n  content:\"\"; }\n\n.bp3-icon-refresh::before{\n  content:\"\"; }\n\n.bp3-icon-regression-chart::before{\n  content:\"\"; }\n\n.bp3-icon-remove::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-repeat::before{\n  content:\"\"; }\n\n.bp3-icon-reset::before{\n  content:\"\"; }\n\n.bp3-icon-resolve::before{\n  content:\"\"; }\n\n.bp3-icon-rig::before{\n  content:\"\"; }\n\n.bp3-icon-right-join::before{\n  content:\"\"; }\n\n.bp3-icon-ring::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-document::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-page::before{\n  content:\"\"; }\n\n.bp3-icon-satellite::before{\n  content:\"\"; }\n\n.bp3-icon-saved::before{\n  content:\"\"; }\n\n.bp3-icon-scatter-plot::before{\n  content:\"\"; }\n\n.bp3-icon-search::before{\n  content:\"\"; }\n\n.bp3-icon-search-around::before{\n  content:\"\"; }\n\n.bp3-icon-search-template::before{\n  content:\"\"; }\n\n.bp3-icon-search-text::before{\n  content:\"\"; }\n\n.bp3-icon-segmented-control::before{\n  content:\"\"; }\n\n.bp3-icon-select::before{\n  content:\"\"; }\n\n.bp3-icon-selection::before{\n  content:\"⦿\"; }\n\n.bp3-icon-send-to::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-graph::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-map::before{\n  content:\"\"; }\n\n.bp3-icon-series-add::before{\n  content:\"\"; }\n\n.bp3-icon-series-configuration::before{\n  content:\"\"; }\n\n.bp3-icon-series-derived::before{\n  content:\"\"; }\n\n.bp3-icon-series-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-series-search::before{\n  content:\"\"; }\n\n.bp3-icon-settings::before{\n  content:\"\"; }\n\n.bp3-icon-share::before{\n  content:\"\"; }\n\n.bp3-icon-shield::before{\n  content:\"\"; }\n\n.bp3-icon-shop::before{\n  content:\"\"; }\n\n.bp3-icon-shopping-cart::before{\n  content:\"\"; }\n\n.bp3-icon-signal-search::before{\n  content:\"\"; }\n\n.bp3-icon-sim-card::before{\n  content:\"\"; }\n\n.bp3-icon-slash::before{\n  content:\"\"; }\n\n.bp3-icon-small-cross::before{\n  content:\"\"; }\n\n.bp3-icon-small-minus::before{\n  content:\"\"; }\n\n.bp3-icon-small-plus::before{\n  content:\"\"; }\n\n.bp3-icon-small-tick::before{\n  content:\"\"; }\n\n.bp3-icon-snowflake::before{\n  content:\"\"; }\n\n.bp3-icon-social-media::before{\n  content:\"\"; }\n\n.bp3-icon-sort::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-asc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-split-columns::before{\n  content:\"\"; }\n\n.bp3-icon-square::before{\n  content:\"\"; }\n\n.bp3-icon-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-star::before{\n  content:\"★\"; }\n\n.bp3-icon-star-empty::before{\n  content:\"☆\"; }\n\n.bp3-icon-step-backward::before{\n  content:\"\"; }\n\n.bp3-icon-step-chart::before{\n  content:\"\"; }\n\n.bp3-icon-step-forward::before{\n  content:\"\"; }\n\n.bp3-icon-stop::before{\n  content:\"\"; }\n\n.bp3-icon-stopwatch::before{\n  content:\"\"; }\n\n.bp3-icon-strikethrough::before{\n  content:\"\"; }\n\n.bp3-icon-style::before{\n  content:\"\"; }\n\n.bp3-icon-swap-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-swap-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-circle::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-cross::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-diamond::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-square::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-down::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-up::before{\n  content:\"\"; }\n\n.bp3-icon-tag::before{\n  content:\"\"; }\n\n.bp3-icon-take-action::before{\n  content:\"\"; }\n\n.bp3-icon-taxi::before{\n  content:\"\"; }\n\n.bp3-icon-text-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-th::before{\n  content:\"\"; }\n\n.bp3-icon-th-derived::before{\n  content:\"\"; }\n\n.bp3-icon-th-disconnect::before{\n  content:\"\"; }\n\n.bp3-icon-th-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-th-list::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-down::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-up::before{\n  content:\"\"; }\n\n.bp3-icon-tick::before{\n  content:\"✓\"; }\n\n.bp3-icon-tick-circle::before{\n  content:\"\"; }\n\n.bp3-icon-time::before{\n  content:\"⏲\"; }\n\n.bp3-icon-timeline-area-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-events::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-line-chart::before{\n  content:\"\"; }\n\n.bp3-icon-tint::before{\n  content:\"\"; }\n\n.bp3-icon-torch::before{\n  content:\"\"; }\n\n.bp3-icon-tractor::before{\n  content:\"\"; }\n\n.bp3-icon-train::before{\n  content:\"\"; }\n\n.bp3-icon-translate::before{\n  content:\"\"; }\n\n.bp3-icon-trash::before{\n  content:\"\"; }\n\n.bp3-icon-tree::before{\n  content:\"\"; }\n\n.bp3-icon-trending-down::before{\n  content:\"\"; }\n\n.bp3-icon-trending-up::before{\n  content:\"\"; }\n\n.bp3-icon-truck::before{\n  content:\"\"; }\n\n.bp3-icon-two-columns::before{\n  content:\"\"; }\n\n.bp3-icon-unarchive::before{\n  content:\"\"; }\n\n.bp3-icon-underline::before{\n  content:\"⎁\"; }\n\n.bp3-icon-undo::before{\n  content:\"⎌\"; }\n\n.bp3-icon-ungroup-objects::before{\n  content:\"\"; }\n\n.bp3-icon-unknown-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-unlock::before{\n  content:\"\"; }\n\n.bp3-icon-unpin::before{\n  content:\"\"; }\n\n.bp3-icon-unresolve::before{\n  content:\"\"; }\n\n.bp3-icon-updated::before{\n  content:\"\"; }\n\n.bp3-icon-upload::before{\n  content:\"\"; }\n\n.bp3-icon-user::before{\n  content:\"\"; }\n\n.bp3-icon-variable::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-video::before{\n  content:\"\"; }\n\n.bp3-icon-volume-down::before{\n  content:\"\"; }\n\n.bp3-icon-volume-off::before{\n  content:\"\"; }\n\n.bp3-icon-volume-up::before{\n  content:\"\"; }\n\n.bp3-icon-walk::before{\n  content:\"\"; }\n\n.bp3-icon-warning-sign::before{\n  content:\"\"; }\n\n.bp3-icon-waterfall-chart::before{\n  content:\"\"; }\n\n.bp3-icon-widget::before{\n  content:\"\"; }\n\n.bp3-icon-widget-button::before{\n  content:\"\"; }\n\n.bp3-icon-widget-footer::before{\n  content:\"\"; }\n\n.bp3-icon-widget-header::before{\n  content:\"\"; }\n\n.bp3-icon-wrench::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-in::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-out::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-to-fit::before{\n  content:\"\"; }\n.bp3-submenu > .bp3-popover-wrapper{\n  display:block; }\n\n.bp3-submenu .bp3-popover-target{\n  display:block; }\n  .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{ }\n\n.bp3-submenu.bp3-popover{\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0 5px; }\n  .bp3-submenu.bp3-popover > .bp3-popover-content{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-submenu.bp3-popover, .bp3-submenu.bp3-popover.bp3-dark{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-dark .bp3-submenu.bp3-popover > .bp3-popover-content, .bp3-submenu.bp3-popover.bp3-dark > .bp3-popover-content{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n.bp3-menu{\n  background:#ffffff;\n  border-radius:3px;\n  color:#182026;\n  list-style:none;\n  margin:0;\n  min-width:180px;\n  padding:5px;\n  text-align:left; }\n\n.bp3-menu-divider{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px; }\n  .bp3-dark .bp3-menu-divider{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-menu-item{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  border-radius:2px;\n  color:inherit;\n  line-height:20px;\n  padding:5px 7px;\n  text-decoration:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-menu-item > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-menu-item > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > *{\n    margin-right:7px; }\n  .bp3-menu-item:empty::before,\n  .bp3-menu-item > :last-child{\n    margin-right:0; }\n  .bp3-menu-item > .bp3-fill{\n    word-break:break-word; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    background-color:rgba(167, 182, 194, 0.3);\n    cursor:pointer;\n    text-decoration:none; }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-dark .bp3-menu-item{\n    color:inherit; }\n    .bp3-dark .bp3-menu-item:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n      background-color:rgba(138, 155, 168, 0.15);\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-disabled{\n      background-color:inherit;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-menu-item.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-primary::before, .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary:active, .bp3-menu-item.bp3-intent-primary:active::before, .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-success::before, .bp3-menu-item.bp3-intent-success::after,\n    .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-menu-item.bp3-intent-success:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success:active, .bp3-menu-item.bp3-intent-success:active::before, .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-warning::before, .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning:active, .bp3-menu-item.bp3-intent-warning:active::before, .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-danger::before, .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger:active, .bp3-menu-item.bp3-intent-danger:active::before, .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    margin-right:7px; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > .bp3-icon{\n    color:#5c7080;\n    margin-top:2px; }\n  .bp3-menu-item .bp3-menu-item-label{\n    color:#5c7080; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    color:inherit; }\n  .bp3-menu-item.bp3-active, .bp3-menu-item:active{\n    background-color:rgba(115, 134, 148, 0.3); }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit !important;\n    color:rgba(92, 112, 128, 0.6) !important;\n    cursor:not-allowed !important;\n    outline:none !important; }\n    .bp3-menu-item.bp3-disabled::before,\n    .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-large .bp3-menu-item{\n    font-size:16px;\n    line-height:22px;\n    padding:9px 7px; }\n    .bp3-large .bp3-menu-item .bp3-icon{\n      margin-top:3px; }\n    .bp3-large .bp3-menu-item::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      margin-right:10px;\n      margin-top:1px; }\n\nbutton.bp3-menu-item{\n  background:none;\n  border:none;\n  text-align:left;\n  width:100%; }\n.bp3-menu-header{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px;\n  cursor:default;\n  padding-left:2px; }\n  .bp3-dark .bp3-menu-header{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n  .bp3-menu-header:first-of-type{\n    border-top:none; }\n  .bp3-menu-header > h6{\n    color:#182026;\n    font-weight:600;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    line-height:17px;\n    margin:0;\n    padding:10px 7px 0 1px; }\n    .bp3-dark .bp3-menu-header > h6{\n      color:#f5f8fa; }\n  .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n  .bp3-large .bp3-menu-header > h6{\n    font-size:18px;\n    padding-bottom:5px;\n    padding-top:15px; }\n  .bp3-large .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n\n.bp3-dark .bp3-menu{\n  background:#30404d;\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-menu-item{ }\n  .bp3-dark .bp3-menu-item.bp3-intent-primary{\n    color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary::before, .bp3-dark .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary:active, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-success{\n    color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success::before, .bp3-dark .bp3-menu-item.bp3-intent-success::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success:active, .bp3-dark .bp3-menu-item.bp3-intent-success:active::before, .bp3-dark .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-warning{\n    color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning::before, .bp3-dark .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning:active, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-danger{\n    color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger::before, .bp3-dark .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger:active, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item::before,\n  .bp3-dark .bp3-menu-item > .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item .bp3-menu-item-label{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item.bp3-active, .bp3-dark .bp3-menu-item:active{\n    background-color:rgba(138, 155, 168, 0.3); }\n  .bp3-dark .bp3-menu-item.bp3-disabled{\n    color:rgba(167, 182, 194, 0.6) !important; }\n    .bp3-dark .bp3-menu-item.bp3-disabled::before,\n    .bp3-dark .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-dark .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(167, 182, 194, 0.6) !important; }\n\n.bp3-dark .bp3-menu-divider,\n.bp3-dark .bp3-menu-header{\n  border-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-dark .bp3-menu-header > h6{\n  color:#f5f8fa; }\n\n.bp3-label .bp3-menu{\n  margin-top:5px; }\n.bp3-navbar{\n  background-color:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  height:50px;\n  padding:0 15px;\n  position:relative;\n  width:100%;\n  z-index:10; }\n  .bp3-navbar.bp3-dark,\n  .bp3-dark .bp3-navbar{\n    background-color:#394b59; }\n  .bp3-navbar.bp3-dark{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-navbar{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-navbar.bp3-fixed-top{\n    left:0;\n    position:fixed;\n    right:0;\n    top:0; }\n\n.bp3-navbar-heading{\n  font-size:16px;\n  margin-right:15px; }\n\n.bp3-navbar-group{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:50px; }\n  .bp3-navbar-group.bp3-align-left{\n    float:left; }\n  .bp3-navbar-group.bp3-align-right{\n    float:right; }\n\n.bp3-navbar-divider{\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  height:20px;\n  margin:0 10px; }\n  .bp3-dark .bp3-navbar-divider{\n    border-left-color:rgba(255, 255, 255, 0.15); }\n.bp3-non-ideal-state{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  height:100%;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  text-align:center;\n  width:100%; }\n  .bp3-non-ideal-state > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-non-ideal-state > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-non-ideal-state::before,\n  .bp3-non-ideal-state > *{\n    margin-bottom:20px; }\n  .bp3-non-ideal-state:empty::before,\n  .bp3-non-ideal-state > :last-child{\n    margin-bottom:0; }\n  .bp3-non-ideal-state > *{\n    max-width:400px; }\n\n.bp3-non-ideal-state-visual{\n  color:rgba(92, 112, 128, 0.6);\n  font-size:60px; }\n  .bp3-dark .bp3-non-ideal-state-visual{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-overflow-list{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:nowrap;\n      flex-wrap:nowrap;\n  min-width:0; }\n\n.bp3-overflow-list-spacer{\n  -ms-flex-negative:1;\n      flex-shrink:1;\n  width:1px; }\n\nbody.bp3-overlay-open{\n  overflow:hidden; }\n\n.bp3-overlay{\n  bottom:0;\n  left:0;\n  position:static;\n  right:0;\n  top:0;\n  z-index:20; }\n  .bp3-overlay:not(.bp3-overlay-open){\n    pointer-events:none; }\n  .bp3-overlay.bp3-overlay-container{\n    overflow:hidden;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-scroll-container{\n    overflow:auto;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-scroll-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-inline{\n    display:inline;\n    overflow:visible; }\n\n.bp3-overlay-content{\n  position:fixed;\n  z-index:20; }\n  .bp3-overlay-inline .bp3-overlay-content,\n  .bp3-overlay-scroll-container .bp3-overlay-content{\n    position:absolute; }\n\n.bp3-overlay-backdrop{\n  bottom:0;\n  left:0;\n  position:fixed;\n  right:0;\n  top:0;\n  opacity:1;\n  background-color:rgba(16, 22, 26, 0.7);\n  overflow:auto;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  z-index:20; }\n  .bp3-overlay-backdrop.bp3-overlay-enter, .bp3-overlay-backdrop.bp3-overlay-appear{\n    opacity:0; }\n  .bp3-overlay-backdrop.bp3-overlay-enter-active, .bp3-overlay-backdrop.bp3-overlay-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop.bp3-overlay-exit{\n    opacity:1; }\n  .bp3-overlay-backdrop.bp3-overlay-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop:focus{\n    outline:none; }\n  .bp3-overlay-inline .bp3-overlay-backdrop{\n    position:absolute; }\n.bp3-panel-stack{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-view{\n    background-color:#30404d; }\n  .bp3-panel-stack-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter, .bp3-panel-stack-push .bp3-panel-stack-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter-active, .bp3-panel-stack-push .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter, .bp3-panel-stack-pop .bp3-panel-stack-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter-active, .bp3-panel-stack-pop .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-panel-stack2{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack2-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack2-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack2-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack2-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack2-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack2-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-view{\n    background-color:#30404d; }\n  .bp3-panel-stack2-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter, .bp3-panel-stack2-push .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter-active, .bp3-panel-stack2-push .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter, .bp3-panel-stack2-pop .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter-active, .bp3-panel-stack2-pop .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-popover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  border-radius:3px;\n  display:inline-block;\n  z-index:20; }\n  .bp3-popover .bp3-popover-arrow{\n    height:30px;\n    position:absolute;\n    width:30px; }\n    .bp3-popover .bp3-popover-arrow::before{\n      height:20px;\n      margin:5px;\n      width:20px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover{\n    margin-bottom:17px;\n    margin-top:-17px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n      bottom:-11px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover{\n    margin-left:17px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n      left:-11px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover{\n    margin-top:17px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n      top:-11px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover{\n    margin-left:-17px;\n    margin-right:17px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n      right:-11px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-popover > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-popover > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n    top:-0.3934px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n    right:-0.3934px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n    left:-0.3934px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n    bottom:-0.3934px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-popover .bp3-popover-content{\n    background:#ffffff;\n    color:inherit; }\n  .bp3-popover .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-popover .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-popover .bp3-popover-arrow-fill{\n    fill:#ffffff; }\n  .bp3-popover-enter > .bp3-popover, .bp3-popover-appear > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3); }\n  .bp3-popover-enter-active > .bp3-popover, .bp3-popover-appear-active > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover-exit > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover .bp3-popover-content{\n    border-radius:3px;\n    position:relative; }\n  .bp3-popover.bp3-popover-content-sizing .bp3-popover-content{\n    max-width:350px;\n    padding:20px; }\n  .bp3-popover-target + .bp3-overlay .bp3-popover.bp3-popover-content-sizing{\n    width:350px; }\n  .bp3-popover.bp3-minimal{\n    margin:0 !important; }\n    .bp3-popover.bp3-minimal .bp3-popover-arrow{\n      display:none; }\n    .bp3-popover.bp3-minimal.bp3-popover{\n      -webkit-transform:scale(1);\n              transform:scale(1); }\n      .bp3-popover-enter > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-enter-active > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n      .bp3-popover-exit > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-exit-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover.bp3-dark,\n  .bp3-dark .bp3-popover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-popover .bp3-popover-content{\n      background:#30404d;\n      color:inherit; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-popover .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-fill{\n      fill:#30404d; }\n\n.bp3-popover-arrow::before{\n  border-radius:2px;\n  content:\"\";\n  display:block;\n  position:absolute;\n  -webkit-transform:rotate(45deg);\n          transform:rotate(45deg); }\n\n.bp3-tether-pinned .bp3-popover-arrow{\n  display:none; }\n\n.bp3-popover-backdrop{\n  background:rgba(255, 255, 255, 0); }\n\n.bp3-transition-container{\n  opacity:1;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  z-index:20; }\n  .bp3-transition-container.bp3-popover-enter, .bp3-transition-container.bp3-popover-appear{\n    opacity:0; }\n  .bp3-transition-container.bp3-popover-enter-active, .bp3-transition-container.bp3-popover-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container.bp3-popover-exit{\n    opacity:1; }\n  .bp3-transition-container.bp3-popover-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container:focus{\n    outline:none; }\n  .bp3-transition-container.bp3-popover-leave .bp3-popover-content{\n    pointer-events:none; }\n  .bp3-transition-container[data-x-out-of-boundaries]{\n    display:none; }\n\nspan.bp3-popover-target{\n  display:inline-block; }\n\n.bp3-popover-wrapper.bp3-fill{\n  width:100%; }\n\n.bp3-portal{\n  left:0;\n  position:absolute;\n  right:0;\n  top:0; }\n@-webkit-keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n@keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n\n.bp3-progress-bar{\n  background:rgba(92, 112, 128, 0.2);\n  border-radius:40px;\n  display:block;\n  height:8px;\n  overflow:hidden;\n  position:relative;\n  width:100%; }\n  .bp3-progress-bar .bp3-progress-meter{\n    background:linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%);\n    background-color:rgba(92, 112, 128, 0.8);\n    background-size:30px 30px;\n    border-radius:40px;\n    height:100%;\n    position:absolute;\n    -webkit-transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:100%; }\n  .bp3-progress-bar:not(.bp3-no-animation):not(.bp3-no-stripes) .bp3-progress-meter{\n    animation:linear-progress-bar-stripes 300ms linear infinite reverse; }\n  .bp3-progress-bar.bp3-no-stripes .bp3-progress-meter{\n    background-image:none; }\n\n.bp3-dark .bp3-progress-bar{\n  background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-progress-bar .bp3-progress-meter{\n    background-color:#8a9ba8; }\n\n.bp3-progress-bar.bp3-intent-primary .bp3-progress-meter{\n  background-color:#137cbd; }\n\n.bp3-progress-bar.bp3-intent-success .bp3-progress-meter{\n  background-color:#0f9960; }\n\n.bp3-progress-bar.bp3-intent-warning .bp3-progress-meter{\n  background-color:#d9822b; }\n\n.bp3-progress-bar.bp3-intent-danger .bp3-progress-meter{\n  background-color:#db3737; }\n@-webkit-keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n@keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n.bp3-skeleton{\n  -webkit-animation:1000ms linear infinite alternate skeleton-glow;\n          animation:1000ms linear infinite alternate skeleton-glow;\n  background:rgba(206, 217, 224, 0.2);\n  background-clip:padding-box !important;\n  border-color:rgba(206, 217, 224, 0.2) !important;\n  border-radius:2px;\n  -webkit-box-shadow:none !important;\n          box-shadow:none !important;\n  color:transparent !important;\n  cursor:default;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-skeleton::before, .bp3-skeleton::after,\n  .bp3-skeleton *{\n    visibility:hidden !important; }\n.bp3-slider{\n  height:40px;\n  min-width:150px;\n  width:100%;\n  cursor:default;\n  outline:none;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-slider:hover{\n    cursor:pointer; }\n  .bp3-slider:active{\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-slider.bp3-disabled{\n    cursor:not-allowed;\n    opacity:0.5; }\n  .bp3-slider.bp3-slider-unlabeled{\n    height:16px; }\n\n.bp3-slider-track,\n.bp3-slider-progress{\n  height:6px;\n  left:0;\n  right:0;\n  top:5px;\n  position:absolute; }\n\n.bp3-slider-track{\n  border-radius:3px;\n  overflow:hidden; }\n\n.bp3-slider-progress{\n  background:rgba(92, 112, 128, 0.2); }\n  .bp3-dark .bp3-slider-progress{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-slider-progress.bp3-intent-primary{\n    background-color:#137cbd; }\n  .bp3-slider-progress.bp3-intent-success{\n    background-color:#0f9960; }\n  .bp3-slider-progress.bp3-intent-warning{\n    background-color:#d9822b; }\n  .bp3-slider-progress.bp3-intent-danger{\n    background-color:#db3737; }\n\n.bp3-slider-handle{\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n  cursor:pointer;\n  height:16px;\n  left:0;\n  position:absolute;\n  top:0;\n  width:16px; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-slider-handle:active, .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-slider-handle:disabled, .bp3-slider-handle.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-slider-handle:disabled.bp3-active, .bp3-slider-handle:disabled.bp3-active:hover, .bp3-slider-handle.bp3-disabled.bp3-active, .bp3-slider-handle.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n  .bp3-slider-handle:focus{\n    z-index:1; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n    cursor:-webkit-grab;\n    cursor:grab;\n    z-index:2; }\n  .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-disabled .bp3-slider-handle{\n    background:#bfccd6;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    pointer-events:none; }\n  .bp3-dark .bp3-slider-handle{\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover, .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-slider-handle:disabled, .bp3-dark .bp3-slider-handle.bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-slider-handle:disabled.bp3-active, .bp3-dark .bp3-slider-handle.bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-slider-handle .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-slider-handle, .bp3-dark .bp3-slider-handle:hover{\n      background-color:#394b59; }\n    .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#293742; }\n  .bp3-dark .bp3-disabled .bp3-slider-handle{\n    background:#5c7080;\n    border-color:#5c7080;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-slider-handle .bp3-slider-label{\n    background:#394b59;\n    border-radius:3px;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n    color:#f5f8fa;\n    margin-left:8px; }\n    .bp3-dark .bp3-slider-handle .bp3-slider-label{\n      background:#e1e8ed;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n      color:#394b59; }\n    .bp3-disabled .bp3-slider-handle .bp3-slider-label{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-slider-handle.bp3-start, .bp3-slider-handle.bp3-end{\n    width:8px; }\n  .bp3-slider-handle.bp3-start{\n    border-bottom-right-radius:0;\n    border-top-right-radius:0; }\n  .bp3-slider-handle.bp3-end{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0;\n    margin-left:8px; }\n    .bp3-slider-handle.bp3-end .bp3-slider-label{\n      margin-left:0; }\n\n.bp3-slider-label{\n  -webkit-transform:translate(-50%, 20px);\n          transform:translate(-50%, 20px);\n  display:inline-block;\n  font-size:12px;\n  line-height:1;\n  padding:2px 5px;\n  position:absolute;\n  vertical-align:top; }\n\n.bp3-slider.bp3-vertical{\n  height:150px;\n  min-width:40px;\n  width:40px; }\n  .bp3-slider.bp3-vertical .bp3-slider-track,\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    bottom:0;\n    height:auto;\n    left:5px;\n    top:0;\n    width:6px; }\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    top:auto; }\n  .bp3-slider.bp3-vertical .bp3-slider-label{\n    -webkit-transform:translate(20px, 50%);\n            transform:translate(20px, 50%); }\n  .bp3-slider.bp3-vertical .bp3-slider-handle{\n    top:auto; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle .bp3-slider-label{\n      margin-left:0;\n      margin-top:-8px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end, .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      height:8px;\n      margin-left:0;\n      width:16px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      border-bottom-right-radius:3px;\n      border-top-left-radius:0; }\n      .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start .bp3-slider-label{\n        -webkit-transform:translate(20px);\n                transform:translate(20px); }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end{\n      border-bottom-left-radius:0;\n      border-bottom-right-radius:0;\n      border-top-left-radius:3px;\n      margin-bottom:8px; }\n\n@-webkit-keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n@keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n.bp3-spinner{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  overflow:visible;\n  vertical-align:middle; }\n  .bp3-spinner svg{\n    display:block; }\n  .bp3-spinner path{\n    fill-opacity:0; }\n  .bp3-spinner .bp3-spinner-head{\n    stroke:rgba(92, 112, 128, 0.8);\n    stroke-linecap:round;\n    -webkit-transform-origin:center;\n            transform-origin:center;\n    -webkit-transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-spinner .bp3-spinner-track{\n    stroke:rgba(92, 112, 128, 0.2); }\n\n.bp3-spinner-animation{\n  -webkit-animation:pt-spinner-animation 500ms linear infinite;\n          animation:pt-spinner-animation 500ms linear infinite; }\n  .bp3-no-spin > .bp3-spinner-animation{\n    -webkit-animation:none;\n            animation:none; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-head{\n  stroke:#8a9ba8; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-track{\n  stroke:rgba(16, 22, 26, 0.5); }\n\n.bp3-spinner.bp3-intent-primary .bp3-spinner-head{\n  stroke:#137cbd; }\n\n.bp3-spinner.bp3-intent-success .bp3-spinner-head{\n  stroke:#0f9960; }\n\n.bp3-spinner.bp3-intent-warning .bp3-spinner-head{\n  stroke:#d9822b; }\n\n.bp3-spinner.bp3-intent-danger .bp3-spinner-head{\n  stroke:#db3737; }\n.bp3-tabs.bp3-vertical{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-list{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab{\n      border-radius:3px;\n      padding:0 10px;\n      width:100%; }\n      .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab[aria-selected=\"true\"]{\n        background-color:rgba(19, 124, 189, 0.2);\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n      background-color:rgba(19, 124, 189, 0.2);\n      border-radius:3px;\n      bottom:0;\n      height:auto;\n      left:0;\n      right:0;\n      top:0; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-panel{\n    margin-top:0;\n    padding-left:20px; }\n\n.bp3-tab-list{\n  -webkit-box-align:end;\n      -ms-flex-align:end;\n          align-items:flex-end;\n  border:none;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  list-style:none;\n  margin:0;\n  padding:0;\n  position:relative; }\n  .bp3-tab-list > *:not(:last-child){\n    margin-right:20px; }\n\n.bp3-tab{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:#182026;\n  cursor:pointer;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  font-size:14px;\n  line-height:30px;\n  max-width:100%;\n  position:relative;\n  vertical-align:top; }\n  .bp3-tab a{\n    color:inherit;\n    display:block;\n    text-decoration:none; }\n  .bp3-tab-indicator-wrapper ~ .bp3-tab{\n    background-color:transparent !important;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important; }\n  .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-tab[aria-selected=\"true\"]{\n    border-radius:0;\n    -webkit-box-shadow:inset 0 -3px 0 #106ba3;\n            box-shadow:inset 0 -3px 0 #106ba3; }\n  .bp3-tab[aria-selected=\"true\"], .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#106ba3; }\n  .bp3-tab:focus{\n    -moz-outline-radius:0; }\n  .bp3-large > .bp3-tab{\n    font-size:16px;\n    line-height:40px; }\n\n.bp3-tab-panel{\n  margin-top:20px; }\n  .bp3-tab-panel[aria-hidden=\"true\"]{\n    display:none; }\n\n.bp3-tab-indicator-wrapper{\n  left:0;\n  pointer-events:none;\n  position:absolute;\n  top:0;\n  -webkit-transform:translateX(0), translateY(0);\n          transform:translateX(0), translateY(0);\n  -webkit-transition:height, width, -webkit-transform;\n  transition:height, width, -webkit-transform;\n  transition:height, transform, width;\n  transition:height, transform, width, -webkit-transform;\n  -webkit-transition-duration:200ms;\n          transition-duration:200ms;\n  -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n          transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n    background-color:#106ba3;\n    bottom:0;\n    height:3px;\n    left:0;\n    position:absolute;\n    right:0; }\n  .bp3-tab-indicator-wrapper.bp3-no-animation{\n    -webkit-transition:none;\n    transition:none; }\n\n.bp3-dark .bp3-tab{\n  color:#f5f8fa; }\n  .bp3-dark .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"]{\n    -webkit-box-shadow:inset 0 -3px 0 #48aff0;\n            box-shadow:inset 0 -3px 0 #48aff0; }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"], .bp3-dark .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#48aff0; }\n\n.bp3-dark .bp3-tab-indicator{\n  background-color:#48aff0; }\n\n.bp3-flex-expander{\n  -webkit-box-flex:1;\n      -ms-flex:1 1;\n          flex:1 1; }\n.bp3-tag{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#5c7080;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:#f5f8fa;\n  font-size:12px;\n  line-height:16px;\n  max-width:100%;\n  min-height:20px;\n  min-width:20px;\n  padding:2px 6px;\n  position:relative; }\n  .bp3-tag.bp3-interactive{\n    cursor:pointer; }\n    .bp3-tag.bp3-interactive:hover{\n      background-color:rgba(92, 112, 128, 0.85); }\n    .bp3-tag.bp3-interactive.bp3-active, .bp3-tag.bp3-interactive:active{\n      background-color:rgba(92, 112, 128, 0.7); }\n  .bp3-tag > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag::before,\n  .bp3-tag > *{\n    margin-right:4px; }\n  .bp3-tag:empty::before,\n  .bp3-tag > :last-child{\n    margin-right:0; }\n  .bp3-tag:focus{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:0;\n    -moz-outline-radius:6px; }\n  .bp3-tag.bp3-round{\n    border-radius:30px;\n    padding-left:8px;\n    padding-right:8px; }\n  .bp3-dark .bp3-tag{\n    background-color:#bfccd6;\n    color:#182026; }\n    .bp3-dark .bp3-tag.bp3-interactive{\n      cursor:pointer; }\n      .bp3-dark .bp3-tag.bp3-interactive:hover{\n        background-color:rgba(191, 204, 214, 0.85); }\n      .bp3-dark .bp3-tag.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-interactive:active{\n        background-color:rgba(191, 204, 214, 0.7); }\n    .bp3-dark .bp3-tag > .bp3-icon, .bp3-dark .bp3-tag .bp3-icon-standard, .bp3-dark .bp3-tag .bp3-icon-large{\n      fill:currentColor; }\n  .bp3-tag > .bp3-icon, .bp3-tag .bp3-icon-standard, .bp3-tag .bp3-icon-large{\n    fill:#ffffff; }\n  .bp3-tag.bp3-large,\n  .bp3-large .bp3-tag{\n    font-size:14px;\n    line-height:20px;\n    min-height:30px;\n    min-width:30px;\n    padding:5px 10px; }\n    .bp3-tag.bp3-large::before,\n    .bp3-tag.bp3-large > *,\n    .bp3-large .bp3-tag::before,\n    .bp3-large .bp3-tag > *{\n      margin-right:7px; }\n    .bp3-tag.bp3-large:empty::before,\n    .bp3-tag.bp3-large > :last-child,\n    .bp3-large .bp3-tag:empty::before,\n    .bp3-large .bp3-tag > :last-child{\n      margin-right:0; }\n    .bp3-tag.bp3-large.bp3-round,\n    .bp3-large .bp3-tag.bp3-round{\n      padding-left:12px;\n      padding-right:12px; }\n  .bp3-tag.bp3-intent-primary{\n    background:#137cbd;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.85); }\n      .bp3-tag.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.7); }\n  .bp3-tag.bp3-intent-success{\n    background:#0f9960;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.85); }\n      .bp3-tag.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.7); }\n  .bp3-tag.bp3-intent-warning{\n    background:#d9822b;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.85); }\n      .bp3-tag.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.7); }\n  .bp3-tag.bp3-intent-danger{\n    background:#db3737;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.85); }\n      .bp3-tag.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.7); }\n  .bp3-tag.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-tag.bp3-minimal > .bp3-icon, .bp3-tag.bp3-minimal .bp3-icon-standard, .bp3-tag.bp3-minimal .bp3-icon-large{\n    fill:#5c7080; }\n  .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n    background-color:rgba(138, 155, 168, 0.2);\n    color:#182026; }\n    .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n        background-color:rgba(92, 112, 128, 0.3); }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n        background-color:rgba(92, 112, 128, 0.4); }\n    .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n      color:#f5f8fa; }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n          background-color:rgba(191, 204, 214, 0.3); }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n          background-color:rgba(191, 204, 214, 0.4); }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) > .bp3-icon, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n        fill:#a7b6c2; }\n  .bp3-tag.bp3-minimal.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15);\n    color:#106ba3; }\n    .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-primary > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-large{\n      fill:#137cbd; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25);\n      color:#48aff0; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n          background-color:rgba(19, 124, 189, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n          background-color:rgba(19, 124, 189, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15);\n    color:#0d8050; }\n    .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-success > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-large{\n      fill:#0f9960; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25);\n      color:#3dcc91; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n          background-color:rgba(15, 153, 96, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n          background-color:rgba(15, 153, 96, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15);\n    color:#bf7326; }\n    .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-warning > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-large{\n      fill:#d9822b; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25);\n      color:#ffb366; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n          background-color:rgba(217, 130, 43, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n          background-color:rgba(217, 130, 43, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15);\n    color:#c23030; }\n    .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-danger > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-large{\n      fill:#db3737; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25);\n      color:#ff7373; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n          background-color:rgba(219, 55, 55, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n          background-color:rgba(219, 55, 55, 0.45); }\n\n.bp3-tag-remove{\n  background:none;\n  border:none;\n  color:inherit;\n  cursor:pointer;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin-bottom:-2px;\n  margin-right:-6px !important;\n  margin-top:-2px;\n  opacity:0.5;\n  padding:2px;\n  padding-left:0; }\n  .bp3-tag-remove:hover{\n    background:none;\n    opacity:0.8;\n    text-decoration:none; }\n  .bp3-tag-remove:active{\n    opacity:1; }\n  .bp3-tag-remove:empty::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    content:\"\"; }\n  .bp3-large .bp3-tag-remove{\n    margin-right:-10px !important;\n    padding:0 5px 0 0; }\n    .bp3-large .bp3-tag-remove:empty::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1; }\n.bp3-tag-input{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  cursor:text;\n  height:auto;\n  line-height:inherit;\n  min-height:30px;\n  padding-left:5px;\n  padding-right:0; }\n  .bp3-tag-input > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag-input > .bp3-tag-input-values{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag-input .bp3-tag-input-icon{\n    color:#5c7080;\n    margin-left:2px;\n    margin-right:7px;\n    margin-top:7px; }\n  .bp3-tag-input .bp3-tag-input-values{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row;\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    -ms-flex-item-align:stretch;\n        align-self:stretch;\n    -ms-flex-wrap:wrap;\n        flex-wrap:wrap;\n    margin-right:7px;\n    margin-top:5px;\n    min-width:0; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      -webkit-box-flex:0;\n          -ms-flex-positive:0;\n              flex-grow:0;\n      -ms-flex-negative:0;\n          flex-shrink:0; }\n    .bp3-tag-input .bp3-tag-input-values > .bp3-fill{\n      -webkit-box-flex:1;\n          -ms-flex-positive:1;\n              flex-grow:1;\n      -ms-flex-negative:1;\n          flex-shrink:1; }\n    .bp3-tag-input .bp3-tag-input-values::before,\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-right:5px; }\n    .bp3-tag-input .bp3-tag-input-values:empty::before,\n    .bp3-tag-input .bp3-tag-input-values > :last-child{\n      margin-right:0; }\n    .bp3-tag-input .bp3-tag-input-values:first-child .bp3-input-ghost:first-child{\n      padding-left:5px; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-bottom:5px; }\n  .bp3-tag-input .bp3-tag{\n    overflow-wrap:break-word; }\n    .bp3-tag-input .bp3-tag.bp3-active{\n      outline:rgba(19, 124, 189, 0.6) auto 2px;\n      outline-offset:0;\n      -moz-outline-radius:6px; }\n  .bp3-tag-input .bp3-input-ghost{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:20px;\n    width:80px; }\n    .bp3-tag-input .bp3-input-ghost:disabled, .bp3-tag-input .bp3-input-ghost.bp3-disabled{\n      cursor:not-allowed; }\n  .bp3-tag-input .bp3-button,\n  .bp3-tag-input .bp3-spinner{\n    margin:3px;\n    margin-left:0; }\n  .bp3-tag-input .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-tag-input.bp3-large{\n    height:auto;\n    min-height:40px; }\n    .bp3-tag-input.bp3-large::before,\n    .bp3-tag-input.bp3-large > *{\n      margin-right:10px; }\n    .bp3-tag-input.bp3-large:empty::before,\n    .bp3-tag-input.bp3-large > :last-child{\n      margin-right:0; }\n    .bp3-tag-input.bp3-large .bp3-tag-input-icon{\n      margin-left:5px;\n      margin-top:10px; }\n    .bp3-tag-input.bp3-large .bp3-input-ghost{\n      line-height:30px; }\n    .bp3-tag-input.bp3-large .bp3-button{\n      min-height:30px;\n      min-width:30px;\n      padding:5px 10px;\n      margin:5px;\n      margin-left:0; }\n    .bp3-tag-input.bp3-large .bp3-spinner{\n      margin:8px;\n      margin-left:0; }\n  .bp3-tag-input.bp3-active{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-tag-input .bp3-tag-input-icon, .bp3-tag-input.bp3-dark .bp3-tag-input-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-tag-input .bp3-input-ghost, .bp3-tag-input.bp3-dark .bp3-input-ghost{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-webkit-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-moz-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost:-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tag-input.bp3-active, .bp3-tag-input.bp3-dark.bp3-active{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-primary, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-success, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-warning, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-danger, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-input-ghost{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0; }\n  .bp3-input-ghost::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:focus{\n    outline:none !important; }\n.bp3-toast{\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:20px 0 0;\n  max-width:500px;\n  min-width:300px;\n  pointer-events:all;\n  position:relative !important; }\n  .bp3-toast.bp3-toast-enter, .bp3-toast.bp3-toast-appear{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active, .bp3-toast.bp3-toast-appear-active{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-enter ~ .bp3-toast, .bp3-toast.bp3-toast-appear ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active ~ .bp3-toast, .bp3-toast.bp3-toast-appear-active ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-exit{\n    opacity:1;\n    -webkit-filter:blur(0);\n            filter:blur(0); }\n  .bp3-toast.bp3-toast-exit-active{\n    opacity:0;\n    -webkit-filter:blur(10px);\n            filter:blur(10px);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:opacity, filter;\n    transition-property:opacity, filter, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast.bp3-toast-exit ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0); }\n  .bp3-toast.bp3-toast-exit-active ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px);\n    -webkit-transition-delay:50ms;\n            transition-delay:50ms;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast .bp3-button-group{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    padding:5px;\n    padding-left:0; }\n  .bp3-toast > .bp3-icon{\n    color:#5c7080;\n    margin:12px;\n    margin-right:0; }\n  .bp3-toast.bp3-dark,\n  .bp3-dark .bp3-toast{\n    background-color:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-toast.bp3-dark > .bp3-icon,\n    .bp3-dark .bp3-toast > .bp3-icon{\n      color:#a7b6c2; }\n  .bp3-toast[class*=\"bp3-intent-\"] a{\n    color:rgba(255, 255, 255, 0.7); }\n    .bp3-toast[class*=\"bp3-intent-\"] a:hover{\n      color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] > .bp3-icon{\n    color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::before,\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button .bp3-icon, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    color:rgba(255, 255, 255, 0.7) !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:focus{\n    outline-color:rgba(255, 255, 255, 0.5); }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:hover{\n    background-color:rgba(255, 255, 255, 0.15) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    background-color:rgba(255, 255, 255, 0.3) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::after{\n    background:rgba(255, 255, 255, 0.3) !important; }\n  .bp3-toast.bp3-intent-primary{\n    background-color:#137cbd;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-success{\n    background-color:#0f9960;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-warning{\n    background-color:#d9822b;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-danger{\n    background-color:#db3737;\n    color:#ffffff; }\n\n.bp3-toast-message{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  padding:11px;\n  word-break:break-word; }\n\n.bp3-toast-container{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box !important;\n  display:-ms-flexbox !important;\n  display:flex !important;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  left:0;\n  overflow:hidden;\n  padding:0 20px 20px;\n  pointer-events:none;\n  right:0;\n  z-index:40; }\n  .bp3-toast-container.bp3-toast-container-in-portal{\n    position:fixed; }\n  .bp3-toast-container.bp3-toast-container-inline{\n    position:absolute; }\n  .bp3-toast-container.bp3-toast-container-top{\n    top:0; }\n  .bp3-toast-container.bp3-toast-container-bottom{\n    bottom:0;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:reverse;\n        -ms-flex-direction:column-reverse;\n            flex-direction:column-reverse;\n    top:auto; }\n  .bp3-toast-container.bp3-toast-container-left{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start; }\n  .bp3-toast-container.bp3-toast-container-right{\n    -webkit-box-align:end;\n        -ms-flex-align:end;\n            align-items:flex-end; }\n\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active) ~ .bp3-toast, .bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active) ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-exit-active ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-leave-active ~ .bp3-toast{\n  -webkit-transform:translateY(60px);\n          transform:translateY(60px); }\n.bp3-tooltip{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1); }\n  .bp3-tooltip .bp3-popover-arrow{\n    height:22px;\n    position:absolute;\n    width:22px; }\n    .bp3-tooltip .bp3-popover-arrow::before{\n      height:14px;\n      margin:4px;\n      width:14px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip{\n    margin-bottom:11px;\n    margin-top:-11px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n      bottom:-8px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip{\n    margin-left:11px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n      left:-8px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip{\n    margin-top:11px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n      top:-8px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip{\n    margin-left:-11px;\n    margin-right:11px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n      right:-8px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-tooltip > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-tooltip > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n    top:-0.22183px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n    right:-0.22183px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n    left:-0.22183px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n    bottom:-0.22183px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-tooltip .bp3-popover-content{\n    background:#394b59;\n    color:#f5f8fa; }\n  .bp3-tooltip .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-tooltip .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-tooltip .bp3-popover-arrow-fill{\n    fill:#394b59; }\n  .bp3-popover-enter > .bp3-tooltip, .bp3-popover-appear > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8); }\n  .bp3-popover-enter-active > .bp3-tooltip, .bp3-popover-appear-active > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover-exit > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tooltip .bp3-popover-content{\n    padding:10px 12px; }\n  .bp3-tooltip.bp3-dark,\n  .bp3-dark .bp3-tooltip{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-tooltip .bp3-popover-content{\n      background:#e1e8ed;\n      color:#394b59; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-fill{\n      fill:#e1e8ed; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-content{\n    background:#137cbd;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-arrow-fill{\n    fill:#137cbd; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-content{\n    background:#0f9960;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-arrow-fill{\n    fill:#0f9960; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-content{\n    background:#d9822b;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-arrow-fill{\n    fill:#d9822b; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-content{\n    background:#db3737;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-arrow-fill{\n    fill:#db3737; }\n\n.bp3-tooltip-indicator{\n  border-bottom:dotted 1px;\n  cursor:help; }\n.bp3-tree .bp3-icon, .bp3-tree .bp3-icon-standard, .bp3-tree .bp3-icon-large{\n  color:#5c7080; }\n  .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-tree .bp3-icon.bp3-intent-success, .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-tree-node-list{\n  list-style:none;\n  margin:0;\n  padding-left:0; }\n\n.bp3-tree-root{\n  background-color:transparent;\n  cursor:default;\n  padding-left:0;\n  position:relative; }\n\n.bp3-tree-node-content-0{\n  padding-left:0px; }\n\n.bp3-tree-node-content-1{\n  padding-left:23px; }\n\n.bp3-tree-node-content-2{\n  padding-left:46px; }\n\n.bp3-tree-node-content-3{\n  padding-left:69px; }\n\n.bp3-tree-node-content-4{\n  padding-left:92px; }\n\n.bp3-tree-node-content-5{\n  padding-left:115px; }\n\n.bp3-tree-node-content-6{\n  padding-left:138px; }\n\n.bp3-tree-node-content-7{\n  padding-left:161px; }\n\n.bp3-tree-node-content-8{\n  padding-left:184px; }\n\n.bp3-tree-node-content-9{\n  padding-left:207px; }\n\n.bp3-tree-node-content-10{\n  padding-left:230px; }\n\n.bp3-tree-node-content-11{\n  padding-left:253px; }\n\n.bp3-tree-node-content-12{\n  padding-left:276px; }\n\n.bp3-tree-node-content-13{\n  padding-left:299px; }\n\n.bp3-tree-node-content-14{\n  padding-left:322px; }\n\n.bp3-tree-node-content-15{\n  padding-left:345px; }\n\n.bp3-tree-node-content-16{\n  padding-left:368px; }\n\n.bp3-tree-node-content-17{\n  padding-left:391px; }\n\n.bp3-tree-node-content-18{\n  padding-left:414px; }\n\n.bp3-tree-node-content-19{\n  padding-left:437px; }\n\n.bp3-tree-node-content-20{\n  padding-left:460px; }\n\n.bp3-tree-node-content{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:30px;\n  padding-right:5px;\n  width:100%; }\n  .bp3-tree-node-content:hover{\n    background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-tree-node-caret,\n.bp3-tree-node-caret-none{\n  min-width:30px; }\n\n.bp3-tree-node-caret{\n  color:#5c7080;\n  cursor:pointer;\n  padding:7px;\n  -webkit-transform:rotate(0deg);\n          transform:rotate(0deg);\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tree-node-caret:hover{\n    color:#182026; }\n  .bp3-dark .bp3-tree-node-caret{\n    color:#a7b6c2; }\n    .bp3-dark .bp3-tree-node-caret:hover{\n      color:#f5f8fa; }\n  .bp3-tree-node-caret.bp3-tree-node-caret-open{\n    -webkit-transform:rotate(90deg);\n            transform:rotate(90deg); }\n  .bp3-tree-node-caret.bp3-icon-standard::before{\n    content:\"\"; }\n\n.bp3-tree-node-icon{\n  margin-right:7px;\n  position:relative; }\n\n.bp3-tree-node-label{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-label span{\n    display:inline; }\n\n.bp3-tree-node-secondary-label{\n  padding:0 5px;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-secondary-label .bp3-popover-wrapper,\n  .bp3-tree-node-secondary-label .bp3-popover-target{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-content{\n  background-color:inherit;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-caret,\n.bp3-tree-node.bp3-disabled .bp3-tree-node-icon{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content,\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-standard, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-large{\n    color:#ffffff; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret::before{\n    color:rgba(255, 255, 255, 0.7); }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret:hover::before{\n    color:#ffffff; }\n\n.bp3-dark .bp3-tree-node-content:hover{\n  background-color:rgba(92, 112, 128, 0.3); }\n\n.bp3-dark .bp3-tree .bp3-icon, .bp3-dark .bp3-tree .bp3-icon-standard, .bp3-dark .bp3-tree .bp3-icon-large{\n  color:#a7b6c2; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-dark .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n.bp3-omnibar{\n  -webkit-filter:blur(0);\n          filter:blur(0);\n  opacity:1;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  left:calc(50% - 250px);\n  top:20vh;\n  width:500px;\n  z-index:21; }\n  .bp3-omnibar.bp3-overlay-enter, .bp3-omnibar.bp3-overlay-appear{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2; }\n  .bp3-omnibar.bp3-overlay-enter-active, .bp3-omnibar.bp3-overlay-appear-active{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar.bp3-overlay-exit{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1; }\n  .bp3-omnibar.bp3-overlay-exit-active{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar .bp3-input{\n    background-color:transparent;\n    border-radius:0; }\n    .bp3-omnibar .bp3-input, .bp3-omnibar .bp3-input:focus{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-omnibar .bp3-menu{\n    background-color:transparent;\n    border-radius:0;\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n    max-height:calc(60vh - 40px);\n    overflow:auto; }\n    .bp3-omnibar .bp3-menu:empty{\n      display:none; }\n  .bp3-dark .bp3-omnibar, .bp3-omnibar.bp3-dark{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-omnibar-overlay .bp3-overlay-backdrop{\n  background-color:rgba(16, 22, 26, 0.2); }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n\n.bp3-multi-select{\n  min-width:150px; }\n\n.bp3-multi-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto; }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* This file was auto-generated by ensureUiComponents() in @jupyterlab/buildutils */\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n/* Icons urls */\n\n:root {\n  --jp-icon-add: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDEzaC02djZoLTJ2LTZINXYtMmg2VjVoMnY2aDZ2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-bug: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0yMCA4aC0yLjgxYy0uNDUtLjc4LTEuMDctMS40NS0xLjgyLTEuOTZMMTcgNC40MSAxNS41OSAzbC0yLjE3IDIuMTdDMTIuOTYgNS4wNiAxMi40OSA1IDEyIDVjLS40OSAwLS45Ni4wNi0xLjQxLjE3TDguNDEgMyA3IDQuNDFsMS42MiAxLjYzQzcuODggNi41NSA3LjI2IDcuMjIgNi44MSA4SDR2MmgyLjA5Yy0uMDUuMzMtLjA5LjY2LS4wOSAxdjFINHYyaDJ2MWMwIC4zNC4wNC42Ny4wOSAxSDR2MmgyLjgxYzEuMDQgMS43OSAyLjk3IDMgNS4xOSAzczQuMTUtMS4yMSA1LjE5LTNIMjB2LTJoLTIuMDljLjA1LS4zMy4wOS0uNjYuMDktMXYtMWgydi0yaC0ydi0xYzAtLjM0LS4wNC0uNjctLjA5LTFIMjBWOHptLTYgOGgtNHYtMmg0djJ6bTAtNGgtNHYtMmg0djJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-build: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE0LjkgMTcuNDVDMTYuMjUgMTcuNDUgMTcuMzUgMTYuMzUgMTcuMzUgMTVDMTcuMzUgMTMuNjUgMTYuMjUgMTIuNTUgMTQuOSAxMi41NUMxMy41NCAxMi41NSAxMi40NSAxMy42NSAxMi40NSAxNUMxMi40NSAxNi4zNSAxMy41NCAxNy40NSAxNC45IDE3LjQ1Wk0yMC4xIDE1LjY4TDIxLjU4IDE2Ljg0QzIxLjcxIDE2Ljk1IDIxLjc1IDE3LjEzIDIxLjY2IDE3LjI5TDIwLjI2IDE5LjcxQzIwLjE3IDE5Ljg2IDIwIDE5LjkyIDE5LjgzIDE5Ljg2TDE4LjA5IDE5LjE2QzE3LjczIDE5LjQ0IDE3LjMzIDE5LjY3IDE2LjkxIDE5Ljg1TDE2LjY0IDIxLjdDMTYuNjIgMjEuODcgMTYuNDcgMjIgMTYuMyAyMkgxMy41QzEzLjMyIDIyIDEzLjE4IDIxLjg3IDEzLjE1IDIxLjdMMTIuODkgMTkuODVDMTIuNDYgMTkuNjcgMTIuMDcgMTkuNDQgMTEuNzEgMTkuMTZMOS45NjAwMiAxOS44NkM5LjgxMDAyIDE5LjkyIDkuNjIwMDIgMTkuODYgOS41NDAwMiAxOS43MUw4LjE0MDAyIDE3LjI5QzguMDUwMDIgMTcuMTMgOC4wOTAwMiAxNi45NSA4LjIyMDAyIDE2Ljg0TDkuNzAwMDIgMTUuNjhMOS42NTAwMSAxNUw5LjcwMDAyIDE0LjMxTDguMjIwMDIgMTMuMTZDOC4wOTAwMiAxMy4wNSA4LjA1MDAyIDEyLjg2IDguMTQwMDIgMTIuNzFMOS41NDAwMiAxMC4yOUM5LjYyMDAyIDEwLjEzIDkuODEwMDIgMTAuMDcgOS45NjAwMiAxMC4xM0wxMS43MSAxMC44NEMxMi4wNyAxMC41NiAxMi40NiAxMC4zMiAxMi44OSAxMC4xNUwxMy4xNSA4LjI4OTk4QzEzLjE4IDguMTI5OTggMTMuMzIgNy45OTk5OCAxMy41IDcuOTk5OThIMTYuM0MxNi40NyA3Ljk5OTk4IDE2LjYyIDguMTI5OTggMTYuNjQgOC4yODk5OEwxNi45MSAxMC4xNUMxNy4zMyAxMC4zMiAxNy43MyAxMC41NiAxOC4wOSAxMC44NEwxOS44MyAxMC4xM0MyMCAxMC4wNyAyMC4xNyAxMC4xMyAyMC4yNiAxMC4yOUwyMS42NiAxMi43MUMyMS43NSAxMi44NiAyMS43MSAxMy4wNSAyMS41OCAxMy4xNkwyMC4xIDE0LjMxTDIwLjE1IDE1TDIwLjEgMTUuNjhaIi8+CiAgICA8cGF0aCBkPSJNNy4zMjk2NiA3LjQ0NDU0QzguMDgzMSA3LjAwOTU0IDguMzM5MzIgNi4wNTMzMiA3LjkwNDMyIDUuMjk5ODhDNy40NjkzMiA0LjU0NjQzIDYuNTA4MSA0LjI4MTU2IDUuNzU0NjYgNC43MTY1NkM1LjM5MTc2IDQuOTI2MDggNS4xMjY5NSA1LjI3MTE4IDUuMDE4NDkgNS42NzU5NEM0LjkxMDA0IDYuMDgwNzEgNC45NjY4MiA2LjUxMTk4IDUuMTc2MzQgNi44NzQ4OEM1LjYxMTM0IDcuNjI4MzIgNi41NzYyMiA3Ljg3OTU0IDcuMzI5NjYgNy40NDQ1NFpNOS42NTcxOCA0Ljc5NTkzTDEwLjg2NzIgNC45NTE3OUMxMC45NjI4IDQuOTc3NDEgMTEuMDQwMiA1LjA3MTMzIDExLjAzODIgNS4xODc5M0wxMS4wMzg4IDYuOTg4OTNDMTEuMDQ1NSA3LjEwMDU0IDEwLjk2MTYgNy4xOTUxOCAxMC44NTUgNy4yMTA1NEw5LjY2MDAxIDcuMzgwODNMOS4yMzkxNSA4LjEzMTg4TDkuNjY5NjEgOS4yNTc0NUM5LjcwNzI5IDkuMzYyNzEgOS42NjkzNCA5LjQ3Njk5IDkuNTc0MDggOS41MzE5OUw4LjAxNTIzIDEwLjQzMkM3LjkxMTMxIDEwLjQ5MiA3Ljc5MzM3IDEwLjQ2NzcgNy43MjEwNSAxMC4zODI0TDYuOTg3NDggOS40MzE4OEw2LjEwOTMxIDkuNDMwODNMNS4zNDcwNCAxMC4zOTA1QzUuMjg5MDkgMTAuNDcwMiA1LjE3MzgzIDEwLjQ5MDUgNS4wNzE4NyAxMC40MzM5TDMuNTEyNDUgOS41MzI5M0MzLjQxMDQ5IDkuNDc2MzMgMy4zNzY0NyA5LjM1NzQxIDMuNDEwNzUgOS4yNTY3OUwzLjg2MzQ3IDguMTQwOTNMMy42MTc0OSA3Ljc3NDg4TDMuNDIzNDcgNy4zNzg4M0wyLjIzMDc1IDcuMjEyOTdDMi4xMjY0NyA3LjE5MjM1IDIuMDQwNDkgNy4xMDM0MiAyLjA0MjQ1IDYuOTg2ODJMMi4wNDE4NyA1LjE4NTgyQzIuMDQzODMgNS4wNjkyMiAyLjExOTA5IDQuOTc5NTggMi4yMTcwNCA0Ljk2OTIyTDMuNDIwNjUgNC43OTM5M0wzLjg2NzQ5IDQuMDI3ODhMMy40MTEwNSAyLjkxNzMxQzMuMzczMzcgMi44MTIwNCAzLjQxMTMxIDIuNjk3NzYgMy41MTUyMyAyLjYzNzc2TDUuMDc0MDggMS43Mzc3NkM1LjE2OTM0IDEuNjgyNzYgNS4yODcyOSAxLjcwNzA0IDUuMzU5NjEgMS43OTIzMUw2LjExOTE1IDIuNzI3ODhMNi45ODAwMSAyLjczODkzTDcuNzI0OTYgMS43ODkyMkM3Ljc5MTU2IDEuNzA0NTggNy45MTU0OCAxLjY3OTIyIDguMDA4NzkgMS43NDA4Mkw5LjU2ODIxIDIuNjQxODJDOS42NzAxNyAyLjY5ODQyIDkuNzEyODUgMi44MTIzNCA5LjY4NzIzIDIuOTA3OTdMOS4yMTcxOCA0LjAzMzgzTDkuNDYzMTYgNC4zOTk4OEw5LjY1NzE4IDQuNzk1OTNaIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iOS45LDEzLjYgMy42LDcuNCA0LjQsNi42IDkuOSwxMi4yIDE1LjQsNi43IDE2LjEsNy40ICIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNS45TDksOS43bDMuOC0zLjhsMS4yLDEuMmwtNC45LDVsLTQuOS01TDUuMiw1Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNy41TDksMTEuMmwzLjgtMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-left: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik0xMC44LDEyLjhMNy4xLDlsMy44LTMuOGwwLDcuNkgxMC44eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-right: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik03LjIsNS4yTDEwLjksOWwtMy44LDMuOFY1LjJINy4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-up-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iMTUuNCwxMy4zIDkuOSw3LjcgNC40LDEzLjIgMy42LDEyLjUgOS45LDYuMyAxNi4xLDEyLjYgIi8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-up: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik01LjIsMTAuNUw5LDYuOGwzLjgsMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-case-sensitive: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgogIDxnIGNsYXNzPSJqcC1pY29uLWFjY2VudDIiIGZpbGw9IiNGRkYiPgogICAgPHBhdGggZD0iTTcuNiw4aDAuOWwzLjUsOGgtMS4xTDEwLDE0SDZsLTAuOSwySDRMNy42LDh6IE04LDkuMUw2LjQsMTNoMy4yTDgsOS4xeiIvPgogICAgPHBhdGggZD0iTTE2LjYsOS44Yy0wLjIsMC4xLTAuNCwwLjEtMC43LDAuMWMtMC4yLDAtMC40LTAuMS0wLjYtMC4yYy0wLjEtMC4xLTAuMi0wLjQtMC4yLTAuNyBjLTAuMywwLjMtMC42LDAuNS0wLjksMC43Yy0wLjMsMC4xLTAuNywwLjItMS4xLDAuMmMtMC4zLDAtMC41LDAtMC43LTAuMWMtMC4yLTAuMS0wLjQtMC4yLTAuNi0wLjNjLTAuMi0wLjEtMC4zLTAuMy0wLjQtMC41IGMtMC4xLTAuMi0wLjEtMC40LTAuMS0wLjdjMC0wLjMsMC4xLTAuNiwwLjItMC44YzAuMS0wLjIsMC4zLTAuNCwwLjQtMC41QzEyLDcsMTIuMiw2LjksMTIuNSw2LjhjMC4yLTAuMSwwLjUtMC4xLDAuNy0wLjIgYzAuMy0wLjEsMC41LTAuMSwwLjctMC4xYzAuMiwwLDAuNC0wLjEsMC42LTAuMWMwLjIsMCwwLjMtMC4xLDAuNC0wLjJjMC4xLTAuMSwwLjItMC4yLDAuMi0wLjRjMC0xLTEuMS0xLTEuMy0xIGMtMC40LDAtMS40LDAtMS40LDEuMmgtMC45YzAtMC40LDAuMS0wLjcsMC4yLTFjMC4xLTAuMiwwLjMtMC40LDAuNS0wLjZjMC4yLTAuMiwwLjUtMC4zLDAuOC0wLjNDMTMuMyw0LDEzLjYsNCwxMy45LDQgYzAuMywwLDAuNSwwLDAuOCwwLjFjMC4zLDAsMC41LDAuMSwwLjcsMC4yYzAuMiwwLjEsMC40LDAuMywwLjUsMC41QzE2LDUsMTYsNS4yLDE2LDUuNnYyLjljMCwwLjIsMCwwLjQsMCwwLjUgYzAsMC4xLDAuMSwwLjIsMC4zLDAuMmMwLjEsMCwwLjIsMCwwLjMsMFY5Ljh6IE0xNS4yLDYuOWMtMS4yLDAuNi0zLjEsMC4yLTMuMSwxLjRjMCwxLjQsMy4xLDEsMy4xLTAuNVY2Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-check: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik05IDE2LjE3TDQuODMgMTJsLTEuNDIgMS40MUw5IDE5IDIxIDdsLTEuNDEtMS40MXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-circle-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDJDNi40NyAyIDIgNi40NyAyIDEyczQuNDcgMTAgMTAgMTAgMTAtNC40NyAxMC0xMFMxNy41MyAyIDEyIDJ6bTAgMThjLTQuNDEgMC04LTMuNTktOC04czMuNTktOCA4LTggOCAzLjU5IDggOC0zLjU5IDgtOCA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-circle: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjgiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-clear: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8bWFzayBpZD0iZG9udXRIb2xlIj4KICAgIDxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0id2hpdGUiIC8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSI4IiBmaWxsPSJibGFjayIvPgogIDwvbWFzaz4KCiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxyZWN0IGhlaWdodD0iMTgiIHdpZHRoPSIyIiB4PSIxMSIgeT0iMyIgdHJhbnNmb3JtPSJyb3RhdGUoMzE1LCAxMiwgMTIpIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIgbWFzaz0idXJsKCNkb251dEhvbGUpIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-close: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1ub25lIGpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIGpwLWljb24zLWhvdmVyIiBmaWxsPSJub25lIj4KICAgIDxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjExIi8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIGpwLWljb24tYWNjZW50Mi1ob3ZlciIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMTkgNi40MUwxNy41OSA1IDEyIDEwLjU5IDYuNDEgNSA1IDYuNDEgMTAuNTkgMTIgNSAxNy41OSA2LjQxIDE5IDEyIDEzLjQxIDE3LjU5IDE5IDE5IDE3LjU5IDEzLjQxIDEyeiIvPgogIDwvZz4KCiAgPGcgY2xhc3M9ImpwLWljb24tbm9uZSBqcC1pY29uLWJ1c3kiIGZpbGw9Im5vbmUiPgogICAgPGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-code: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTExLjQgMTguNkw2LjggMTRMMTEuNCA5LjRMMTAgOEw0IDE0TDEwIDIwTDExLjQgMTguNlpNMTYuNiAxOC42TDIxLjIgMTRMMTYuNiA5LjRMMTggOEwyNCAxNEwxOCAyMEwxNi42IDE4LjZWMTguNloiLz4KCTwvZz4KPC9zdmc+Cg==);\n  --jp-icon-console: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwMCAyMDAiPgogIDxnIGNsYXNzPSJqcC1pY29uLWJyYW5kMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMjg4RDEiPgogICAgPHBhdGggZD0iTTIwIDE5LjhoMTYwdjE1OS45SDIweiIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNmZmYiPgogICAgPHBhdGggZD0iTTEwNSAxMjcuM2g0MHYxMi44aC00MHpNNTEuMSA3N0w3NCA5OS45bC0yMy4zIDIzLjMgMTAuNSAxMC41IDIzLjMtMjMuM0w5NSA5OS45IDg0LjUgODkuNCA2MS42IDY2LjV6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-copy: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTExLjksMUgzLjJDMi40LDEsMS43LDEuNywxLjcsMi41djEwLjJoMS41VjIuNWg4LjdWMXogTTE0LjEsMy45aC04Yy0wLjgsMC0xLjUsMC43LTEuNSwxLjV2MTAuMmMwLDAuOCwwLjcsMS41LDEuNSwxLjVoOCBjMC44LDAsMS41LTAuNywxLjUtMS41VjUuNEMxNS41LDQuNiwxNC45LDMuOSwxNC4xLDMuOXogTTE0LjEsMTUuNWgtOFY1LjRoOFYxNS41eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-copyright: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDI0IDI0IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCI+CiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0xMS44OCw5LjE0YzEuMjgsMC4wNiwxLjYxLDEuMTUsMS42MywxLjY2aDEuNzljLTAuMDgtMS45OC0xLjQ5LTMuMTktMy40NS0zLjE5QzkuNjQsNy42MSw4LDksOCwxMi4xNCBjMCwxLjk0LDAuOTMsNC4yNCwzLjg0LDQuMjRjMi4yMiwwLDMuNDEtMS42NSwzLjQ0LTIuOTVoLTEuNzljLTAuMDMsMC41OS0wLjQ1LDEuMzgtMS42MywxLjQ0QzEwLjU1LDE0LjgzLDEwLDEzLjgxLDEwLDEyLjE0IEMxMCw5LjI1LDExLjI4LDkuMTYsMTEuODgsOS4xNHogTTEyLDJDNi40OCwyLDIsNi40OCwyLDEyczQuNDgsMTAsMTAsMTBzMTAtNC40OCwxMC0xMFMxNy41MiwyLDEyLDJ6IE0xMiwyMGMtNC40MSwwLTgtMy41OS04LTggczMuNTktOCw4LThzOCwzLjU5LDgsOFMxNi40MSwyMCwxMiwyMHoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-cut: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkuNjQgNy42NGMuMjMtLjUuMzYtMS4wNS4zNi0xLjY0IDAtMi4yMS0xLjc5LTQtNC00UzIgMy43OSAyIDZzMS43OSA0IDQgNGMuNTkgMCAxLjE0LS4xMyAxLjY0LS4zNkwxMCAxMmwtMi4zNiAyLjM2QzcuMTQgMTQuMTMgNi41OSAxNCA2IDE0Yy0yLjIxIDAtNCAxLjc5LTQgNHMxLjc5IDQgNCA0IDQtMS43OSA0LTRjMC0uNTktLjEzLTEuMTQtLjM2LTEuNjRMMTIgMTRsNyA3aDN2LTFMOS42NCA3LjY0ek02IDhjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTAgMTJjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTYtNy41Yy0uMjggMC0uNS0uMjItLjUtLjVzLjIyLS41LjUtLjUuNS4yMi41LjUtLjIyLjUtLjUuNXpNMTkgM2wtNiA2IDIgMiA3LTdWM3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-download: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDloLTRWM0g5djZINWw3IDcgNy03ek01IDE4djJoMTR2LTJINXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-edit: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMgMTcuMjVWMjFoMy43NUwxNy44MSA5Ljk0bC0zLjc1LTMuNzVMMyAxNy4yNXpNMjAuNzEgNy4wNGMuMzktLjM5LjM5LTEuMDIgMC0xLjQxbC0yLjM0LTIuMzRjLS4zOS0uMzktMS4wMi0uMzktMS40MSAwbC0xLjgzIDEuODMgMy43NSAzLjc1IDEuODMtMS44M3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-ellipses: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iNSIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxOSIgY3k9IjEyIiByPSIyIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-extension: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwLjUgMTFIMTlWN2MwLTEuMS0uOS0yLTItMmgtNFYzLjVDMTMgMi4xMiAxMS44OCAxIDEwLjUgMVM4IDIuMTIgOCAzLjVWNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAydjMuOEgzLjVjMS40OSAwIDIuNyAxLjIxIDIuNyAyLjdzLTEuMjEgMi43LTIuNyAyLjdIMlYyMGMwIDEuMS45IDIgMiAyaDMuOHYtMS41YzAtMS40OSAxLjIxLTIuNyAyLjctMi43IDEuNDkgMCAyLjcgMS4yMSAyLjcgMi43VjIySDE3YzEuMSAwIDItLjkgMi0ydi00aDEuNWMxLjM4IDAgMi41LTEuMTIgMi41LTIuNVMyMS44OCAxMSAyMC41IDExeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-fast-forward: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTQgMThsOC41LTZMNCA2djEyem05LTEydjEybDguNS02TDEzIDZ6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-file-upload: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkgMTZoNnYtNmg0bC03LTctNyA3aDR6bS00IDJoMTR2Mkg1eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-file: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuMyA4LjJsLTUuNS01LjVjLS4zLS4zLS43LS41LTEuMi0uNUgzLjljLS44LjEtMS42LjktMS42IDEuOHYxNC4xYzAgLjkuNyAxLjYgMS42IDEuNmgxNC4yYy45IDAgMS42LS43IDEuNi0xLjZWOS40Yy4xLS41LS4xLS45LS40LTEuMnptLTUuOC0zLjNsMy40IDMuNmgtMy40VjQuOXptMy45IDEyLjdINC43Yy0uMSAwLS4yIDAtLjItLjJWNC43YzAtLjIuMS0uMy4yLS4zaDcuMnY0LjRzMCAuOC4zIDEuMWMuMy4zIDEuMS4zIDEuMS4zaDQuM3Y3LjJzLS4xLjItLjIuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-filter-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEwIDE4aDR2LTJoLTR2MnpNMyA2djJoMThWNkgzem0zIDdoMTJ2LTJINnYyeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY4YzAtMS4xLS45LTItMi0yaC04bC0yLTJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-html5: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMDAiIGQ9Ik0xMDguNCAwaDIzdjIyLjhoMjEuMlYwaDIzdjY5aC0yM1Y0NmgtMjF2MjNoLTIzLjJNMjA2IDIzaC0yMC4zVjBoNjMuN3YyM0gyMjl2NDZoLTIzbTUzLjUtNjloMjQuMWwxNC44IDI0LjNMMzEzLjIgMGgyNC4xdjY5aC0yM1YzNC44bC0xNi4xIDI0LjgtMTYuMS0yNC44VjY5aC0yMi42bTg5LjItNjloMjN2NDYuMmgzMi42VjY5aC01NS42Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI2U0NGQyNiIgZD0iTTEwNy42IDQ3MWwtMzMtMzcwLjRoMzYyLjhsLTMzIDM3MC4yTDI1NS43IDUxMiIvPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNmMTY1MjkiIGQ9Ik0yNTYgNDgwLjVWMTMxaDE0OC4zTDM3NiA0NDciLz4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNlYmViZWIiIGQ9Ik0xNDIgMTc2LjNoMTE0djQ1LjRoLTY0LjJsNC4yIDQ2LjVoNjB2NDUuM0gxNTQuNG0yIDIyLjhIMjAybDMuMiAzNi4zIDUwLjggMTMuNnY0Ny40bC05My4yLTI2Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIiBmaWxsPSIjZmZmIiBkPSJNMzY5LjYgMTc2LjNIMjU1Ljh2NDUuNGgxMDkuNm0tNC4xIDQ2LjVIMjU1Ljh2NDUuNGg1NmwtNS4zIDU5LTUwLjcgMTMuNnY0Ny4ybDkzLTI1LjgiLz4KPC9zdmc+Cg==);\n  --jp-icon-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1icmFuZDQganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNGRkYiIGQ9Ik0yLjIgMi4yaDE3LjV2MTcuNUgyLjJ6Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzNGNTFCNSIgZD0iTTIuMiAyLjJ2MTcuNWgxNy41bC4xLTE3LjVIMi4yem0xMi4xIDIuMmMxLjIgMCAyLjIgMSAyLjIgMi4ycy0xIDIuMi0yLjIgMi4yLTIuMi0xLTIuMi0yLjIgMS0yLjIgMi4yLTIuMnpNNC40IDE3LjZsMy4zLTguOCAzLjMgNi42IDIuMi0zLjIgNC40IDUuNEg0LjR6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-inspector: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY2YzAtMS4xLS45LTItMi0yem0tNSAxNEg0di00aDExdjR6bTAtNUg0VjloMTF2NHptNSA1aC00VjloNHY5eiIvPgo8L3N2Zz4K);\n  --jp-icon-json: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNGOUE4MjUiPgogICAgPHBhdGggZD0iTTIwLjIgMTEuOGMtMS42IDAtMS43LjUtMS43IDEgMCAuNC4xLjkuMSAxLjMuMS41LjEuOS4xIDEuMyAwIDEuNy0xLjQgMi4zLTMuNSAyLjNoLS45di0xLjloLjVjMS4xIDAgMS40IDAgMS40LS44IDAtLjMgMC0uNi0uMS0xIDAtLjQtLjEtLjgtLjEtMS4yIDAtMS4zIDAtMS44IDEuMy0yLTEuMy0uMi0xLjMtLjctMS4zLTIgMC0uNC4xLS44LjEtMS4yLjEtLjQuMS0uNy4xLTEgMC0uOC0uNC0uNy0xLjQtLjhoLS41VjQuMWguOWMyLjIgMCAzLjUuNyAzLjUgMi4zIDAgLjQtLjEuOS0uMSAxLjMtLjEuNS0uMS45LS4xIDEuMyAwIC41LjIgMSAxLjcgMXYxLjh6TTEuOCAxMC4xYzEuNiAwIDEuNy0uNSAxLjctMSAwLS40LS4xLS45LS4xLTEuMy0uMS0uNS0uMS0uOS0uMS0xLjMgMC0xLjYgMS40LTIuMyAzLjUtMi4zaC45djEuOWgtLjVjLTEgMC0xLjQgMC0xLjQuOCAwIC4zIDAgLjYuMSAxIDAgLjIuMS42LjEgMSAwIDEuMyAwIDEuOC0xLjMgMkM2IDExLjIgNiAxMS43IDYgMTNjMCAuNC0uMS44LS4xIDEuMi0uMS4zLS4xLjctLjEgMSAwIC44LjMuOCAxLjQuOGguNXYxLjloLS45Yy0yLjEgMC0zLjUtLjYtMy41LTIuMyAwLS40LjEtLjkuMS0xLjMuMS0uNS4xLS45LjEtMS4zIDAtLjUtLjItMS0xLjctMXYtMS45eiIvPgogICAgPGNpcmNsZSBjeD0iMTEiIGN5PSIxMy44IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY3g9IjExIiBjeT0iOC4yIiByPSIyLjEiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-julia: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDMyNSAzMDAiPgogIDxnIGNsYXNzPSJqcC1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjY2IzYzMzIj4KICAgIDxwYXRoIGQ9Ik0gMTUwLjg5ODQzOCAyMjUgQyAxNTAuODk4NDM4IDI2Ni40MjE4NzUgMTE3LjMyMDMxMiAzMDAgNzUuODk4NDM4IDMwMCBDIDM0LjQ3NjU2MiAzMDAgMC44OTg0MzggMjY2LjQyMTg3NSAwLjg5ODQzOCAyMjUgQyAwLjg5ODQzOCAxODMuNTc4MTI1IDM0LjQ3NjU2MiAxNTAgNzUuODk4NDM4IDE1MCBDIDExNy4zMjAzMTIgMTUwIDE1MC44OTg0MzggMTgzLjU3ODEyNSAxNTAuODk4NDM4IDIyNSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzM4OTgyNiI+CiAgICA8cGF0aCBkPSJNIDIzNy41IDc1IEMgMjM3LjUgMTE2LjQyMTg3NSAyMDMuOTIxODc1IDE1MCAxNjIuNSAxNTAgQyAxMjEuMDc4MTI1IDE1MCA4Ny41IDExNi40MjE4NzUgODcuNSA3NSBDIDg3LjUgMzMuNTc4MTI1IDEyMS4wNzgxMjUgMCAxNjIuNSAwIEMgMjAzLjkyMTg3NSAwIDIzNy41IDMzLjU3ODEyNSAyMzcuNSA3NSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzk1NThiMiI+CiAgICA8cGF0aCBkPSJNIDMyNC4xMDE1NjIgMjI1IEMgMzI0LjEwMTU2MiAyNjYuNDIxODc1IDI5MC41MjM0MzggMzAwIDI0OS4xMDE1NjIgMzAwIEMgMjA3LjY3OTY4OCAzMDAgMTc0LjEwMTU2MiAyNjYuNDIxODc1IDE3NC4xMDE1NjIgMjI1IEMgMTc0LjEwMTU2MiAxODMuNTc4MTI1IDIwNy42Nzk2ODggMTUwIDI0OS4xMDE1NjIgMTUwIEMgMjkwLjUyMzQzOCAxNTAgMzI0LjEwMTU2MiAxODMuNTc4MTI1IDMyNC4xMDE1NjIgMjI1Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-jupyter-favicon: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUyIiBoZWlnaHQ9IjE2NSIgdmlld0JveD0iMCAwIDE1MiAxNjUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA3ODk0NywgMTEwLjU4MjkyNykiIGQ9Ik03NS45NDIyODQyLDI5LjU4MDQ1NjEgQzQzLjMwMjM5NDcsMjkuNTgwNDU2MSAxNC43OTY3ODMyLDE3LjY1MzQ2MzQgMCwwIEM1LjUxMDgzMjExLDE1Ljg0MDY4MjkgMTUuNzgxNTM4OSwyOS41NjY3NzMyIDI5LjM5MDQ5NDcsMzkuMjc4NDE3MSBDNDIuOTk5Nyw0OC45ODk4NTM3IDU5LjI3MzcsNTQuMjA2NzgwNSA3NS45NjA1Nzg5LDU0LjIwNjc4MDUgQzkyLjY0NzQ1NzksNTQuMjA2NzgwNSAxMDguOTIxNDU4LDQ4Ljk4OTg1MzcgMTIyLjUzMDY2MywzOS4yNzg0MTcxIEMxMzYuMTM5NDUzLDI5LjU2Njc3MzIgMTQ2LjQxMDI4NCwxNS44NDA2ODI5IDE1MS45MjExNTgsMCBDMTM3LjA4Nzg2OCwxNy42NTM0NjM0IDEwOC41ODI1ODksMjkuNTgwNDU2MSA3NS45NDIyODQyLDI5LjU4MDQ1NjEgTDc1Ljk0MjI4NDIsMjkuNTgwNDU2MSBaIiAvPgogICAgPHBhdGggdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMzczNjgsIDAuNzA0ODc4KSIgZD0iTTc1Ljk3ODQ1NzksMjQuNjI2NDA3MyBDMTA4LjYxODc2MywyNC42MjY0MDczIDEzNy4xMjQ0NTgsMzYuNTUzNDQxNSAxNTEuOTIxMTU4LDU0LjIwNjc4MDUgQzE0Ni40MTAyODQsMzguMzY2MjIyIDEzNi4xMzk0NTMsMjQuNjQwMTMxNyAxMjIuNTMwNjYzLDE0LjkyODQ4NzggQzEwOC45MjE0NTgsNS4yMTY4NDM5IDkyLjY0NzQ1NzksMCA3NS45NjA1Nzg5LDAgQzU5LjI3MzcsMCA0Mi45OTk3LDUuMjE2ODQzOSAyOS4zOTA0OTQ3LDE0LjkyODQ4NzggQzE1Ljc4MTUzODksMjQuNjQwMTMxNyA1LjUxMDgzMjExLDM4LjM2NjIyMiAwLDU0LjIwNjc4MDUgQzE0LjgzMzA4MTYsMzYuNTg5OTI5MyA0My4zMzg1Njg0LDI0LjYyNjQwNzMgNzUuOTc4NDU3OSwyNC42MjY0MDczIEw3NS45Nzg0NTc5LDI0LjYyNjQwNzMgWiIgLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-jupyter: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzkiIGhlaWdodD0iNTEiIHZpZXdCb3g9IjAgMCAzOSA1MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTYzOCAtMjI4MSkiPgogICAgPGcgY2xhc3M9ImpwLWljb24td2FybjAiIGZpbGw9IiNGMzc3MjYiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5Ljc0IDIzMTEuOTgpIiBkPSJNIDE4LjI2NDYgNy4xMzQxMUMgMTAuNDE0NSA3LjEzNDExIDMuNTU4NzIgNC4yNTc2IDAgMEMgMS4zMjUzOSAzLjgyMDQgMy43OTU1NiA3LjEzMDgxIDcuMDY4NiA5LjQ3MzAzQyAxMC4zNDE3IDExLjgxNTIgMTQuMjU1NyAxMy4wNzM0IDE4LjI2OSAxMy4wNzM0QyAyMi4yODIzIDEzLjA3MzQgMjYuMTk2MyAxMS44MTUyIDI5LjQ2OTQgOS40NzMwM0MgMzIuNzQyNCA3LjEzMDgxIDM1LjIxMjYgMy44MjA0IDM2LjUzOCAwQyAzMi45NzA1IDQuMjU3NiAyNi4xMTQ4IDcuMTM0MTEgMTguMjY0NiA3LjEzNDExWiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5LjczIDIyODUuNDgpIiBkPSJNIDE4LjI3MzMgNS45MzkzMUMgMjYuMTIzNSA1LjkzOTMxIDMyLjk3OTMgOC44MTU4MyAzNi41MzggMTMuMDczNEMgMzUuMjEyNiA5LjI1MzAzIDMyLjc0MjQgNS45NDI2MiAyOS40Njk0IDMuNjAwNEMgMjYuMTk2MyAxLjI1ODE4IDIyLjI4MjMgMCAxOC4yNjkgMEMgMTQuMjU1NyAwIDEwLjM0MTcgMS4yNTgxOCA3LjA2ODYgMy42MDA0QyAzLjc5NTU2IDUuOTQyNjIgMS4zMjUzOSA5LjI1MzAzIDAgMTMuMDczNEMgMy41Njc0NSA4LjgyNDYzIDEwLjQyMzIgNS45MzkzMSAxOC4yNzMzIDUuOTM5MzFaIi8+CiAgICA8L2c+CiAgICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjY5LjMgMjI4MS4zMSkiIGQ9Ik0gNS44OTM1MyAyLjg0NEMgNS45MTg4OSAzLjQzMTY1IDUuNzcwODUgNC4wMTM2NyA1LjQ2ODE1IDQuNTE2NDVDIDUuMTY1NDUgNS4wMTkyMiA0LjcyMTY4IDUuNDIwMTUgNC4xOTI5OSA1LjY2ODUxQyAzLjY2NDMgNS45MTY4OCAzLjA3NDQ0IDYuMDAxNTEgMi40OTgwNSA1LjkxMTcxQyAxLjkyMTY2IDUuODIxOSAxLjM4NDYzIDUuNTYxNyAwLjk1NDg5OCA1LjE2NDAxQyAwLjUyNTE3IDQuNzY2MzMgMC4yMjIwNTYgNC4yNDkwMyAwLjA4MzkwMzcgMy42Nzc1N0MgLTAuMDU0MjQ4MyAzLjEwNjExIC0wLjAyMTIzIDIuNTA2MTcgMC4xNzg3ODEgMS45NTM2NEMgMC4zNzg3OTMgMS40MDExIDAuNzM2ODA5IDAuOTIwODE3IDEuMjA3NTQgMC41NzM1MzhDIDEuNjc4MjYgMC4yMjYyNTkgMi4yNDA1NSAwLjAyNzU5MTkgMi44MjMyNiAwLjAwMjY3MjI5QyAzLjYwMzg5IC0wLjAzMDcxMTUgNC4zNjU3MyAwLjI0OTc4OSA0Ljk0MTQyIDAuNzgyNTUxQyA1LjUxNzExIDEuMzE1MzEgNS44NTk1NiAyLjA1Njc2IDUuODkzNTMgMi44NDRaIi8+CiAgICAgIDxwYXRoIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE2MzkuOCAyMzIzLjgxKSIgZD0iTSA3LjQyNzg5IDMuNTgzMzhDIDcuNDYwMDggNC4zMjQzIDcuMjczNTUgNS4wNTgxOSA2Ljg5MTkzIDUuNjkyMTNDIDYuNTEwMzEgNi4zMjYwNyA1Ljk1MDc1IDYuODMxNTYgNS4yODQxMSA3LjE0NDZDIDQuNjE3NDcgNy40NTc2MyAzLjg3MzcxIDcuNTY0MTQgMy4xNDcwMiA3LjQ1MDYzQyAyLjQyMDMyIDcuMzM3MTIgMS43NDMzNiA3LjAwODcgMS4yMDE4NCA2LjUwNjk1QyAwLjY2MDMyOCA2LjAwNTIgMC4yNzg2MSA1LjM1MjY4IDAuMTA1MDE3IDQuNjMyMDJDIC0wLjA2ODU3NTcgMy45MTEzNSAtMC4wMjYyMzYxIDMuMTU0OTQgMC4yMjY2NzUgMi40NTg1NkMgMC40Nzk1ODcgMS43NjIxNyAwLjkzMTY5NyAxLjE1NzEzIDEuNTI1NzYgMC43MjAwMzNDIDIuMTE5ODMgMC4yODI5MzUgMi44MjkxNCAwLjAzMzQzOTUgMy41NjM4OSAwLjAwMzEzMzQ0QyA0LjU0NjY3IC0wLjAzNzQwMzMgNS41MDUyOSAwLjMxNjcwNiA2LjIyOTYxIDAuOTg3ODM1QyA2Ljk1MzkzIDEuNjU4OTYgNy4zODQ4NCAyLjU5MjM1IDcuNDI3ODkgMy41ODMzOEwgNy40Mjc4OSAzLjU4MzM4WiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM4LjM2IDIyODYuMDYpIiBkPSJNIDIuMjc0NzEgNC4zOTYyOUMgMS44NDM2MyA0LjQxNTA4IDEuNDE2NzEgNC4zMDQ0NSAxLjA0Nzk5IDQuMDc4NDNDIDAuNjc5MjY4IDMuODUyNCAwLjM4NTMyOCAzLjUyMTE0IDAuMjAzMzcxIDMuMTI2NTZDIDAuMDIxNDEzNiAyLjczMTk4IC0wLjA0MDM3OTggMi4yOTE4MyAwLjAyNTgxMTYgMS44NjE4MUMgMC4wOTIwMDMxIDEuNDMxOCAwLjI4MzIwNCAxLjAzMTI2IDAuNTc1MjEzIDAuNzEwODgzQyAwLjg2NzIyMiAwLjM5MDUxIDEuMjQ2OTEgMC4xNjQ3MDggMS42NjYyMiAwLjA2MjA1OTJDIDIuMDg1NTMgLTAuMDQwNTg5NyAyLjUyNTYxIC0wLjAxNTQ3MTQgMi45MzA3NiAwLjEzNDIzNUMgMy4zMzU5MSAwLjI4Mzk0MSAzLjY4NzkyIDAuNTUxNTA1IDMuOTQyMjIgMC45MDMwNkMgNC4xOTY1MiAxLjI1NDYyIDQuMzQxNjkgMS42NzQzNiA0LjM1OTM1IDIuMTA5MTZDIDQuMzgyOTkgMi42OTEwNyA0LjE3Njc4IDMuMjU4NjkgMy43ODU5NyAzLjY4NzQ2QyAzLjM5NTE2IDQuMTE2MjQgMi44NTE2NiA0LjM3MTE2IDIuMjc0NzEgNC4zOTYyOUwgMi4yNzQ3MSA0LjM5NjI5WiIvPgogICAgPC9nPgogIDwvZz4+Cjwvc3ZnPgo=);\n  --jp-icon-jupyterlab-wordmark: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIHZpZXdCb3g9IjAgMCAxODYwLjggNDc1Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0RTRFNEUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ4MC4xMzY0MDEsIDY0LjI3MTQ5MykiPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMDAwMDAsIDU4Ljg3NTU2NikiPgogICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA4NzYwMywgMC4xNDAyOTQpIj4KICAgICAgICA8cGF0aCBkPSJNLTQyNi45LDE2OS44YzAsNDguNy0zLjcsNjQuNy0xMy42LDc2LjRjLTEwLjgsMTAtMjUsMTUuNS0zOS43LDE1LjVsMy43LDI5IGMyMi44LDAuMyw0NC44LTcuOSw2MS45LTIzLjFjMTcuOC0xOC41LDI0LTQ0LjEsMjQtODMuM1YwSC00Mjd2MTcwLjFMLTQyNi45LDE2OS44TC00MjYuOSwxNjkuOHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTU1LjA0NTI5NiwgNTYuODM3MTA0KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuNTYyNDUzLCAxLjc5OTg0MikiPgogICAgICAgIDxwYXRoIGQ9Ik0tMzEyLDE0OGMwLDIxLDAsMzkuNSwxLjcsNTUuNGgtMzEuOGwtMi4xLTMzLjNoLTAuOGMtNi43LDExLjYtMTYuNCwyMS4zLTI4LDI3LjkgYy0xMS42LDYuNi0yNC44LDEwLTM4LjIsOS44Yy0zMS40LDAtNjktMTcuNy02OS04OVYwaDM2LjR2MTEyLjdjMCwzOC43LDExLjYsNjQuNyw0NC42LDY0LjdjMTAuMy0wLjIsMjAuNC0zLjUsMjguOS05LjQgYzguNS01LjksMTUuMS0xNC4zLDE4LjktMjMuOWMyLjItNi4xLDMuMy0xMi41LDMuMy0xOC45VjAuMmgzNi40VjE0OEgtMzEyTC0zMTIsMTQ4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzOTAuMDEzMzIyLCA1My40Nzk2MzgpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS43MDY0NTgsIDAuMjMxNDI1KSI+CiAgICAgICAgPHBhdGggZD0iTS00NzguNiw3MS40YzAtMjYtMC44LTQ3LTEuNy02Ni43aDMyLjdsMS43LDM0LjhoMC44YzcuMS0xMi41LDE3LjUtMjIuOCwzMC4xLTI5LjcgYzEyLjUtNywyNi43LTEwLjMsNDEtOS44YzQ4LjMsMCw4NC43LDQxLjcsODQuNywxMDMuM2MwLDczLjEtNDMuNywxMDkuMi05MSwxMDkuMmMtMTIuMSwwLjUtMjQuMi0yLjItMzUtNy44IGMtMTAuOC01LjYtMTkuOS0xMy45LTI2LjYtMjQuMmgtMC44VjI5MWgtMzZ2LTIyMEwtNDc4LjYsNzEuNEwtNDc4LjYsNzEuNHogTS00NDIuNiwxMjUuNmMwLjEsNS4xLDAuNiwxMC4xLDEuNywxNS4xIGMzLDEyLjMsOS45LDIzLjMsMTkuOCwzMS4xYzkuOSw3LjgsMjIuMSwxMi4xLDM0LjcsMTIuMWMzOC41LDAsNjAuNy0zMS45LDYwLjctNzguNWMwLTQwLjctMjEuMS03NS42LTU5LjUtNzUuNiBjLTEyLjksMC40LTI1LjMsNS4xLTM1LjMsMTMuNGMtOS45LDguMy0xNi45LDE5LjctMTkuNiwzMi40Yy0xLjUsNC45LTIuMywxMC0yLjUsMTUuMVYxMjUuNkwtNDQyLjYsMTI1LjZMLTQ0Mi42LDEyNS42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MDYuNzQwNzI2LCA1Ni44MzcxMDQpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC43NTEyMjYsIDEuOTg5Mjk5KSI+CiAgICAgICAgPHBhdGggZD0iTS00NDAuOCwwbDQzLjcsMTIwLjFjNC41LDEzLjQsOS41LDI5LjQsMTIuOCw0MS43aDAuOGMzLjctMTIuMiw3LjktMjcuNywxMi44LTQyLjQgbDM5LjctMTE5LjJoMzguNUwtMzQ2LjksMTQ1Yy0yNiw2OS43LTQzLjcsMTA1LjQtNjguNiwxMjcuMmMtMTIuNSwxMS43LTI3LjksMjAtNDQuNiwyMy45bC05LjEtMzEuMSBjMTEuNy0zLjksMjIuNS0xMC4xLDMxLjgtMTguMWMxMy4yLTExLjEsMjMuNy0yNS4yLDMwLjYtNDEuMmMxLjUtMi44LDIuNS01LjcsMi45LTguOGMtMC4zLTMuMy0xLjItNi42LTIuNS05LjdMLTQ4MC4yLDAuMSBoMzkuN0wtNDQwLjgsMEwtNDQwLjgsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODIyLjc0ODEwNCwgMC4wMDAwMDApIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS40NjQwNTAsIDAuMzc4OTE0KSI+CiAgICAgICAgPHBhdGggZD0iTS00MTMuNywwdjU4LjNoNTJ2MjguMmgtNTJWMTk2YzAsMjUsNywzOS41LDI3LjMsMzkuNWM3LjEsMC4xLDE0LjItMC43LDIxLjEtMi41IGwxLjcsMjcuN2MtMTAuMywzLjctMjEuMyw1LjQtMzIuMiw1Yy03LjMsMC40LTE0LjYtMC43LTIxLjMtMy40Yy02LjgtMi43LTEyLjktNi44LTE3LjktMTIuMWMtMTAuMy0xMC45LTE0LjEtMjktMTQuMS01Mi45IFY4Ni41aC0zMVY1OC4zaDMxVjkuNkwtNDEzLjcsMEwtNDEzLjcsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOTc0LjQzMzI4NiwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuOTkwMDM0LCAwLjYxMDMzOSkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDQ1LjgsMTEzYzAuOCw1MCwzMi4yLDcwLjYsNjguNiw3MC42YzE5LDAuNiwzNy45LTMsNTUuMy0xMC41bDYuMiwyNi40IGMtMjAuOSw4LjktNDMuNSwxMy4xLTY2LjIsMTIuNmMtNjEuNSwwLTk4LjMtNDEuMi05OC4zLTEwMi41Qy00ODAuMiw0OC4yLTQ0NC43LDAtMzg2LjUsMGM2NS4yLDAsODIuNyw1OC4zLDgyLjcsOTUuNyBjLTAuMSw1LjgtMC41LDExLjUtMS4yLDE3LjJoLTE0MC42SC00NDUuOEwtNDQ1LjgsMTEzeiBNLTMzOS4yLDg2LjZjMC40LTIzLjUtOS41LTYwLjEtNTAuNC02MC4xIGMtMzYuOCwwLTUyLjgsMzQuNC01NS43LDYwLjFILTMzOS4yTC0zMzkuMiw4Ni42TC0zMzkuMiw4Ni42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjAxLjk2MTA1OCwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuMTc5NjQwLCAwLjcwNTA2OCkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDc4LjYsNjhjMC0yMy45LTAuNC00NC41LTEuNy02My40aDMxLjhsMS4yLDM5LjloMS43YzkuMS0yNy4zLDMxLTQ0LjUsNTUuMy00NC41IGMzLjUtMC4xLDcsMC40LDEwLjMsMS4ydjM0LjhjLTQuMS0wLjktOC4yLTEuMy0xMi40LTEuMmMtMjUuNiwwLTQzLjcsMTkuNy00OC43LDQ3LjRjLTEsNS43LTEuNiwxMS41LTEuNywxNy4ydjEwOC4zaC0zNlY2OCBMLTQ3OC42LDY4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCBkPSJNMTM1Mi4zLDMyNi4yaDM3VjI4aC0zN1YzMjYuMnogTTE2MDQuOCwzMjYuMmMtMi41LTEzLjktMy40LTMxLjEtMy40LTQ4Ljd2LTc2IGMwLTQwLjctMTUuMS04My4xLTc3LjMtODMuMWMtMjUuNiwwLTUwLDcuMS02Ni44LDE4LjFsOC40LDI0LjRjMTQuMy05LjIsMzQtMTUuMSw1My0xNS4xYzQxLjYsMCw0Ni4yLDMwLjIsNDYuMiw0N3Y0LjIgYy03OC42LTAuNC0xMjIuMywyNi41LTEyMi4zLDc1LjZjMCwyOS40LDIxLDU4LjQsNjIuMiw1OC40YzI5LDAsNTAuOS0xNC4zLDYyLjItMzAuMmgxLjNsMi45LDI1LjZIMTYwNC44eiBNMTU2NS43LDI1Ny43IGMwLDMuOC0wLjgsOC0yLjEsMTEuOGMtNS45LDE3LjItMjIuNywzNC00OS4yLDM0Yy0xOC45LDAtMzQuOS0xMS4zLTM0LjktMzUuM2MwLTM5LjUsNDUuOC00Ni42LDg2LjItNDUuOFYyNTcuN3ogTTE2OTguNSwzMjYuMiBsMS43LTMzLjZoMS4zYzE1LjEsMjYuOSwzOC43LDM4LjIsNjguMSwzOC4yYzQ1LjQsMCw5MS4yLTM2LjEsOTEuMi0xMDguOGMwLjQtNjEuNy0zNS4zLTEwMy43LTg1LjctMTAzLjcgYy0zMi44LDAtNTYuMywxNC43LTY5LjMsMzcuNGgtMC44VjI4aC0zNi42djI0NS43YzAsMTguMS0wLjgsMzguNi0xLjcsNTIuNUgxNjk4LjV6IE0xNzA0LjgsMjA4LjJjMC01LjksMS4zLTEwLjksMi4xLTE1LjEgYzcuNi0yOC4xLDMxLjEtNDUuNCw1Ni4zLTQ1LjRjMzkuNSwwLDYwLjUsMzQuOSw2MC41LDc1LjZjMCw0Ni42LTIzLjEsNzguMS02MS44LDc4LjFjLTI2LjksMC00OC4zLTE3LjYtNTUuNS00My4zIGMtMC44LTQuMi0xLjctOC44LTEuNy0xMy40VjIwOC4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgZmlsbD0iIzYxNjE2MSIgZD0iTTE1IDlIOXY2aDZWOXptLTIgNGgtMnYtMmgydjJ6bTgtMlY5aC0yVjdjMC0xLjEtLjktMi0yLTJoLTJWM2gtMnYyaC0yVjNIOXYySDdjLTEuMSAwLTIgLjktMiAydjJIM3YyaDJ2MkgzdjJoMnYyYzAgMS4xLjkgMiAyIDJoMnYyaDJ2LTJoMnYyaDJ2LTJoMmMxLjEgMCAyLS45IDItMnYtMmgydi0yaC0ydi0yaDJ6bS00IDZIN1Y3aDEwdjEweiIvPgo8L3N2Zz4K);\n  --jp-icon-keyboard: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMTdjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY3YzAtMS4xLS45LTItMi0yem0tOSAzaDJ2MmgtMlY4em0wIDNoMnYyaC0ydi0yek04IDhoMnYySDhWOHptMCAzaDJ2Mkg4di0yem0tMSAySDV2LTJoMnYyem0wLTNINVY4aDJ2MnptOSA3SDh2LTJoOHYyem0wLTRoLTJ2LTJoMnYyem0wLTNoLTJWOGgydjJ6bTMgM2gtMnYtMmgydjJ6bTAtM2gtMlY4aDJ2MnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-launcher: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkgMTlINVY1aDdWM0g1YTIgMiAwIDAwLTIgMnYxNGEyIDIgMCAwMDIgMmgxNGMxLjEgMCAyLS45IDItMnYtN2gtMnY3ek0xNCAzdjJoMy41OWwtOS44MyA5LjgzIDEuNDEgMS40MUwxOSA2LjQxVjEwaDJWM2gtN3oiLz4KPC9zdmc+Cg==);\n  --jp-icon-line-form: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGZpbGw9IndoaXRlIiBkPSJNNS44OCA0LjEyTDEzLjc2IDEybC03Ljg4IDcuODhMOCAyMmwxMC0xMEw4IDJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-link: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMuOSAxMmMwLTEuNzEgMS4zOS0zLjEgMy4xLTMuMWg0VjdIN2MtMi43NiAwLTUgMi4yNC01IDVzMi4yNCA1IDUgNWg0di0xLjlIN2MtMS43MSAwLTMuMS0xLjM5LTMuMS0zLjF6TTggMTNoOHYtMkg4djJ6bTktNmgtNHYxLjloNGMxLjcxIDAgMy4xIDEuMzkgMy4xIDMuMXMtMS4zOSAzLjEtMy4xIDMuMWgtNFYxN2g0YzIuNzYgMCA1LTIuMjQgNS01cy0yLjI0LTUtNS01eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiM2MTYxNjEiIGQ9Ik0xOSA1djE0SDVWNWgxNG0xLjEtMkgzLjljLS41IDAtLjkuNC0uOS45djE2LjJjMCAuNC40LjkuOS45aDE2LjJjLjQgMCAuOS0uNS45LS45VjMuOWMwLS41LS41LS45LS45LS45ek0xMSA3aDZ2MmgtNlY3em0wIDRoNnYyaC02di0yem0wIDRoNnYyaC02ek03IDdoMnYySDd6bTAgNGgydjJIN3ptMCA0aDJ2Mkg3eiIvPgo8L3N2Zz4=);\n  --jp-icon-listings-info: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MC45NzggNTAuOTc4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MC45NzggNTAuOTc4OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+Cgk8Zz4KCQk8cGF0aCBzdHlsZT0iZmlsbDojMDEwMDAyOyIgZD0iTTQzLjUyLDcuNDU4QzM4LjcxMSwyLjY0OCwzMi4zMDcsMCwyNS40ODksMEMxOC42NywwLDEyLjI2NiwyLjY0OCw3LjQ1OCw3LjQ1OAoJCQljLTkuOTQzLDkuOTQxLTkuOTQzLDI2LjExOSwwLDM2LjA2MmM0LjgwOSw0LjgwOSwxMS4yMTIsNy40NTYsMTguMDMxLDcuNDU4YzAsMCwwLjAwMSwwLDAuMDAyLDAKCQkJYzYuODE2LDAsMTMuMjIxLTIuNjQ4LDE4LjAyOS03LjQ1OGM0LjgwOS00LjgwOSw3LjQ1Ny0xMS4yMTIsNy40NTctMTguMDNDNTAuOTc3LDE4LjY3LDQ4LjMyOCwxMi4yNjYsNDMuNTIsNy40NTh6CgkJCSBNNDIuMTA2LDQyLjEwNWMtNC40MzIsNC40MzEtMTAuMzMyLDYuODcyLTE2LjYxNSw2Ljg3MmgtMC4wMDJjLTYuMjg1LTAuMDAxLTEyLjE4Ny0yLjQ0MS0xNi42MTctNi44NzIKCQkJYy05LjE2Mi05LjE2My05LjE2Mi0yNC4wNzEsMC0zMy4yMzNDMTMuMzAzLDQuNDQsMTkuMjA0LDIsMjUuNDg5LDJjNi4yODQsMCwxMi4xODYsMi40NCwxNi42MTcsNi44NzIKCQkJYzQuNDMxLDQuNDMxLDYuODcxLDEwLjMzMiw2Ljg3MSwxNi42MTdDNDguOTc3LDMxLjc3Miw0Ni41MzYsMzcuNjc1LDQyLjEwNiw0Mi4xMDV6Ii8+CgkJPHBhdGggc3R5bGU9ImZpbGw6IzAxMDAwMjsiIGQ9Ik0yMy41NzgsMzIuMjE4Yy0wLjAyMy0xLjczNCwwLjE0My0zLjA1OSwwLjQ5Ni0zLjk3MmMwLjM1My0wLjkxMywxLjExLTEuOTk3LDIuMjcyLTMuMjUzCgkJCWMwLjQ2OC0wLjUzNiwwLjkyMy0xLjA2MiwxLjM2Ny0xLjU3NWMwLjYyNi0wLjc1MywxLjEwNC0xLjQ3OCwxLjQzNi0yLjE3NWMwLjMzMS0wLjcwNywwLjQ5NS0xLjU0MSwwLjQ5NS0yLjUKCQkJYzAtMS4wOTYtMC4yNi0yLjA4OC0wLjc3OS0yLjk3OWMtMC41NjUtMC44NzktMS41MDEtMS4zMzYtMi44MDYtMS4zNjljLTEuODAyLDAuMDU3LTIuOTg1LDAuNjY3LTMuNTUsMS44MzIKCQkJYy0wLjMwMSwwLjUzNS0wLjUwMywxLjE0MS0wLjYwNywxLjgxNGMtMC4xMzksMC43MDctMC4yMDcsMS40MzItMC4yMDcsMi4xNzRoLTIuOTM3Yy0wLjA5MS0yLjIwOCwwLjQwNy00LjExNCwxLjQ5My01LjcxOQoJCQljMS4wNjItMS42NCwyLjg1NS0yLjQ4MSw1LjM3OC0yLjUyN2MyLjE2LDAuMDIzLDMuODc0LDAuNjA4LDUuMTQxLDEuNzU4YzEuMjc4LDEuMTYsMS45MjksMi43NjQsMS45NSw0LjgxMQoJCQljMCwxLjE0Mi0wLjEzNywyLjExMS0wLjQxLDIuOTExYy0wLjMwOSwwLjg0NS0wLjczMSwxLjU5My0xLjI2OCwyLjI0M2MtMC40OTIsMC42NS0xLjA2OCwxLjMxOC0xLjczLDIuMDAyCgkJCWMtMC42NSwwLjY5Ny0xLjMxMywxLjQ3OS0xLjk4NywyLjM0NmMtMC4yMzksMC4zNzctMC40MjksMC43NzctMC41NjUsMS4xOTljLTAuMTYsMC45NTktMC4yMTcsMS45NTEtMC4xNzEsMi45NzkKCQkJQzI2LjU4OSwzMi4yMTgsMjMuNTc4LDMyLjIxOCwyMy41NzgsMzIuMjE4eiBNMjMuNTc4LDM4LjIydi0zLjQ4NGgzLjA3NnYzLjQ4NEgyMy41Nzh6Ii8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-markdown: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjN0IxRkEyIiBkPSJNNSAxNC45aDEybC02LjEgNnptOS40LTYuOGMwLTEuMy0uMS0yLjktLjEtNC41LS40IDEuNC0uOSAyLjktMS4zIDQuM2wtMS4zIDQuM2gtMkw4LjUgNy45Yy0uNC0xLjMtLjctMi45LTEtNC4zLS4xIDEuNi0uMSAzLjItLjIgNC42TDcgMTIuNEg0LjhsLjctMTFoMy4zTDEwIDVjLjQgMS4yLjcgMi43IDEgMy45LjMtMS4yLjctMi42IDEtMy45bDEuMi0zLjdoMy4zbC42IDExaC0yLjRsLS4zLTQuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-new-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwIDZoLThsLTItMkg0Yy0xLjExIDAtMS45OS44OS0xLjk5IDJMMiAxOGMwIDEuMTEuODkgMiAyIDJoMTZjMS4xMSAwIDItLjg5IDItMlY4YzAtMS4xMS0uODktMi0yLTJ6bS0xIDhoLTN2M2gtMnYtM2gtM3YtMmgzVjloMnYzaDN2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-not-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI1IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMTkgMTcuMTg0NCAyLjk2OTY4IDE0LjMwMzIgMS44NjA5NCAxMS40NDA5WiIvPgogICAgPHBhdGggY2xhc3M9ImpwLWljb24yIiBzdHJva2U9IiMzMzMzMzMiIHN0cm9rZS13aWR0aD0iMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOS4zMTU5MiA5LjMyMDMxKSIgZD0iTTcuMzY4NDIgMEwwIDcuMzY0NzkiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDkuMzE1OTIgMTYuNjgzNikgc2NhbGUoMSAtMSkiIGQ9Ik03LjM2ODQyIDBMMCA3LjM2NDc5Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-notebook: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNFRjZDMDAiPgogICAgPHBhdGggZD0iTTE4LjcgMy4zdjE1LjRIMy4zVjMuM2gxNS40bTEuNS0xLjVIMS44djE4LjNoMTguM2wuMS0xOC4zeiIvPgogICAgPHBhdGggZD0iTTE2LjUgMTYuNWwtNS40LTQuMy01LjYgNC4zdi0xMWgxMXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-numbering: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTQgMTlINlYxOS41SDVWMjAuNUg2VjIxSDRWMjJIN1YxOEg0VjE5Wk01IDEwSDZWNkg0VjdINVYxMFpNNCAxM0g1LjhMNCAxNS4xVjE2SDdWMTVINS4yTDcgMTIuOVYxMkg0VjEzWk05IDdWOUgyM1Y3SDlaTTkgMjFIMjNWMTlIOVYyMVpNOSAxNUgyM1YxM0g5VjE1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-offline-bolt: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDIuMDJjLTUuNTEgMC05Ljk4IDQuNDctOS45OCA5Ljk4czQuNDcgOS45OCA5Ljk4IDkuOTggOS45OC00LjQ3IDkuOTgtOS45OFMxNy41MSAyLjAyIDEyIDIuMDJ6TTExLjQ4IDIwdi02LjI2SDhMMTMgNHY2LjI2aDMuMzVMMTEuNDggMjB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-palette: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE4IDEzVjIwSDRWNkg5LjAyQzkuMDcgNS4yOSA5LjI0IDQuNjIgOS41IDRINEMyLjkgNCAyIDQuOSAyIDZWMjBDMiAyMS4xIDIuOSAyMiA0IDIySDE4QzE5LjEgMjIgMjAgMjEuMSAyMCAyMFYxNUwxOCAxM1pNMTkuMyA4Ljg5QzE5Ljc0IDguMTkgMjAgNy4zOCAyMCA2LjVDMjAgNC4wMSAxNy45OSAyIDE1LjUgMkMxMy4wMSAyIDExIDQuMDEgMTEgNi41QzExIDguOTkgMTMuMDEgMTEgMTUuNDkgMTFDMTYuMzcgMTEgMTcuMTkgMTAuNzQgMTcuODggMTAuM0wyMSAxMy40MkwyMi40MiAxMkwxOS4zIDguODlaTTE1LjUgOUMxNC4xMiA5IDEzIDcuODggMTMgNi41QzEzIDUuMTIgMTQuMTIgNCAxNS41IDRDMTYuODggNCAxOCA1LjEyIDE4IDYuNUMxOCA3Ljg4IDE2Ljg4IDkgMTUuNSA5WiIvPgogICAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDZIOS4wMTg5NEM5LjAwNjM5IDYuMTY1MDIgOSA2LjMzMTc2IDkgNi41QzkgOC44MTU3NyAxMC4yMTEgMTAuODQ4NyAxMi4wMzQzIDEySDlWMTRIMTZWMTIuOTgxMUMxNi41NzAzIDEyLjkzNzcgMTcuMTIgMTIuODIwNyAxNy42Mzk2IDEyLjYzOTZMMTggMTNWMjBINFY2Wk04IDhINlYxMEg4VjhaTTYgMTJIOFYxNEg2VjEyWk04IDE2SDZWMThIOFYxNlpNOSAxNkgxNlYxOEg5VjE2WiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-paste: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE5IDJoLTQuMThDMTQuNC44NCAxMy4zIDAgMTIgMGMtMS4zIDAtMi40Ljg0LTIuODIgMkg1Yy0xLjEgMC0yIC45LTIgMnYxNmMwIDEuMS45IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjRjMC0xLjEtLjktMi0yLTJ6bS03IDBjLjU1IDAgMSAuNDUgMSAxcy0uNDUgMS0xIDEtMS0uNDUtMS0xIC40NS0xIDEtMXptNyAxOEg1VjRoMnYzaDEwVjRoMnYxNnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-pdf: url(data:image/svg+xml;base64,PHN2ZwogICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMiAyMiIgd2lkdGg9IjE2Ij4KICAgIDxwYXRoIHRyYW5zZm9ybT0icm90YXRlKDQ1KSIgY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI0ZGMkEyQSIKICAgICAgIGQ9Im0gMjIuMzQ0MzY5LC0zLjAxNjM2NDIgaCA1LjYzODYwNCB2IDEuNTc5MjQzMyBoIC0zLjU0OTIyNyB2IDEuNTA4NjkyOTkgaCAzLjMzNzU3NiBWIDEuNjUwODE1NCBoIC0zLjMzNzU3NiB2IDMuNDM1MjYxMyBoIC0yLjA4OTM3NyB6IG0gLTcuMTM2NDQ0LDEuNTc5MjQzMyB2IDQuOTQzOTU0MyBoIDAuNzQ4OTIgcSAxLjI4MDc2MSwwIDEuOTUzNzAzLC0wLjYzNDk1MzUgMC42NzgzNjksLTAuNjM0OTUzNSAwLjY3ODM2OSwtMS44NDUxNjQxIDAsLTEuMjA0NzgzNTUgLTAuNjcyOTQyLC0xLjgzNDMxMDExIC0wLjY3Mjk0MiwtMC42Mjk1MjY1OSAtMS45NTkxMywtMC42Mjk1MjY1OSB6IG0gLTIuMDg5Mzc3LC0xLjU3OTI0MzMgaCAyLjIwMzM0MyBxIDEuODQ1MTY0LDAgMi43NDYwMzksMC4yNjU5MjA3IDAuOTA2MzAxLDAuMjYwNDkzNyAxLjU1MjEwOCwwLjg5MDAyMDMgMC41Njk4MywwLjU0ODEyMjMgMC44NDY2MDUsMS4yNjQ0ODAwNiAwLjI3Njc3NCwwLjcxNjM1NzgxIDAuMjc2Nzc0LDEuNjIyNjU4OTQgMCwwLjkxNzE1NTEgLTAuMjc2Nzc0LDEuNjM4OTM5OSAtMC4yNzY3NzUsMC43MTYzNTc4IC0wLjg0NjYwNSwxLjI2NDQ4IC0wLjY1MTIzNCwwLjYyOTUyNjYgLTEuNTYyOTYyLDAuODk1NDQ3MyAtMC45MTE3MjgsMC4yNjA0OTM3IC0yLjczNTE4NSwwLjI2MDQ5MzcgaCAtMi4yMDMzNDMgeiBtIC04LjE0NTg1NjUsMCBoIDMuNDY3ODIzIHEgMS41NDY2ODE2LDAgMi4zNzE1Nzg1LDAuNjg5MjIzIDAuODMwMzI0LDAuNjgzNzk2MSAwLjgzMDMyNCwxLjk1MzcwMzE0IDAsMS4yNzUzMzM5NyAtMC44MzAzMjQsMS45NjQ1NTcwNiBRIDkuOTg3MTk2MSwyLjI3NDkxNSA4LjQ0MDUxNDUsMi4yNzQ5MTUgSCA3LjA2MjA2ODQgViA1LjA4NjA3NjcgSCA0Ljk3MjY5MTUgWiBtIDIuMDg5Mzc2OSwxLjUxNDExOTkgdiAyLjI2MzAzOTQzIGggMS4xNTU5NDEgcSAwLjYwNzgxODgsMCAwLjkzODg2MjksLTAuMjkzMDU1NDcgMC4zMzEwNDQxLC0wLjI5ODQ4MjQxIDAuMzMxMDQ0MSwtMC44NDExNzc3MiAwLC0wLjU0MjY5NTMxIC0wLjMzMTA0NDEsLTAuODM1NzUwNzQgLTAuMzMxMDQ0MSwtMC4yOTMwNTU1IC0wLjkzODg2MjksLTAuMjkzMDU1NSB6IgovPgo8L3N2Zz4K);\n  --jp-icon-python: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMEQ0N0ExIj4KICAgIDxwYXRoIGQ9Ik0xMS4xIDYuOVY1LjhINi45YzAtLjUgMC0xLjMuMi0xLjYuNC0uNy44LTEuMSAxLjctMS40IDEuNy0uMyAyLjUtLjMgMy45LS4xIDEgLjEgMS45LjkgMS45IDEuOXY0LjJjMCAuNS0uOSAxLjYtMiAxLjZIOC44Yy0xLjUgMC0yLjQgMS40LTIuNCAyLjh2Mi4ySDQuN0MzLjUgMTUuMSAzIDE0IDMgMTMuMVY5Yy0uMS0xIC42LTIgMS44LTIgMS41LS4xIDYuMy0uMSA2LjMtLjF6Ii8+CiAgICA8cGF0aCBkPSJNMTAuOSAxNS4xdjEuMWg0LjJjMCAuNSAwIDEuMy0uMiAxLjYtLjQuNy0uOCAxLjEtMS43IDEuNC0xLjcuMy0yLjUuMy0zLjkuMS0xLS4xLTEuOS0uOS0xLjktMS45di00LjJjMC0uNS45LTEuNiAyLTEuNmgzLjhjMS41IDAgMi40LTEuNCAyLjQtMi44VjYuNmgxLjdDMTguNSA2LjkgMTkgOCAxOSA4LjlWMTNjMCAxLS43IDIuMS0xLjkgMi4xaC02LjJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-r-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjE5NkYzIiBkPSJNNC40IDIuNWMxLjItLjEgMi45LS4zIDQuOS0uMyAyLjUgMCA0LjEuNCA1LjIgMS4zIDEgLjcgMS41IDEuOSAxLjUgMy41IDAgMi0xLjQgMy41LTIuOSA0LjEgMS4yLjQgMS43IDEuNiAyLjIgMyAuNiAxLjkgMSAzLjkgMS4zIDQuNmgtMy44Yy0uMy0uNC0uOC0xLjctMS4yLTMuN3MtMS4yLTIuNi0yLjYtMi42aC0uOXY2LjRINC40VjIuNXptMy43IDYuOWgxLjRjMS45IDAgMi45LS45IDIuOS0yLjNzLTEtMi4zLTIuOC0yLjNjLS43IDAtMS4zIDAtMS42LjJ2NC41aC4xdi0uMXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-react: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMTUwIDE1MCA1NDEuOSAyOTUuMyI+CiAgPGcgY2xhc3M9ImpwLWljb24tYnJhbmQyIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzYxREFGQiI+CiAgICA8cGF0aCBkPSJNNjY2LjMgMjk2LjVjMC0zMi41LTQwLjctNjMuMy0xMDMuMS04Mi40IDE0LjQtNjMuNiA4LTExNC4yLTIwLjItMTMwLjQtNi41LTMuOC0xNC4xLTUuNi0yMi40LTUuNnYyMi4zYzQuNiAwIDguMy45IDExLjQgMi42IDEzLjYgNy44IDE5LjUgMzcuNSAxNC45IDc1LjctMS4xIDkuNC0yLjkgMTkuMy01LjEgMjkuNC0xOS42LTQuOC00MS04LjUtNjMuNS0xMC45LTEzLjUtMTguNS0yNy41LTM1LjMtNDEuNi01MCAzMi42LTMwLjMgNjMuMi00Ni45IDg0LTQ2LjlWNzhjLTI3LjUgMC02My41IDE5LjYtOTkuOSA1My42LTM2LjQtMzMuOC03Mi40LTUzLjItOTkuOS01My4ydjIyLjNjMjAuNyAwIDUxLjQgMTYuNSA4NCA0Ni42LTE0IDE0LjctMjggMzEuNC00MS4zIDQ5LjktMjIuNiAyLjQtNDQgNi4xLTYzLjYgMTEtMi4zLTEwLTQtMTkuNy01LjItMjktNC43LTM4LjIgMS4xLTY3LjkgMTQuNi03NS44IDMtMS44IDYuOS0yLjYgMTEuNS0yLjZWNzguNWMtOC40IDAtMTYgMS44LTIyLjYgNS42LTI4LjEgMTYuMi0zNC40IDY2LjctMTkuOSAxMzAuMS02Mi4yIDE5LjItMTAyLjcgNDkuOS0xMDIuNyA4Mi4zIDAgMzIuNSA0MC43IDYzLjMgMTAzLjEgODIuNC0xNC40IDYzLjYtOCAxMTQuMiAyMC4yIDEzMC40IDYuNSAzLjggMTQuMSA1LjYgMjIuNSA1LjYgMjcuNSAwIDYzLjUtMTkuNiA5OS45LTUzLjYgMzYuNCAzMy44IDcyLjQgNTMuMiA5OS45IDUzLjIgOC40IDAgMTYtMS44IDIyLjYtNS42IDI4LjEtMTYuMiAzNC40LTY2LjcgMTkuOS0xMzAuMSA2Mi0xOS4xIDEwMi41LTQ5LjkgMTAyLjUtODIuM3ptLTEzMC4yLTY2LjdjLTMuNyAxMi45LTguMyAyNi4yLTEzLjUgMzkuNS00LjEtOC04LjQtMTYtMTMuMS0yNC00LjYtOC05LjUtMTUuOC0xNC40LTIzLjQgMTQuMiAyLjEgMjcuOSA0LjcgNDEgNy45em0tNDUuOCAxMDYuNWMtNy44IDEzLjUtMTUuOCAyNi4zLTI0LjEgMzguMi0xNC45IDEuMy0zMCAyLTQ1LjIgMi0xNS4xIDAtMzAuMi0uNy00NS0xLjktOC4zLTExLjktMTYuNC0yNC42LTI0LjItMzgtNy42LTEzLjEtMTQuNS0yNi40LTIwLjgtMzkuOCA2LjItMTMuNCAxMy4yLTI2LjggMjAuNy0zOS45IDcuOC0xMy41IDE1LjgtMjYuMyAyNC4xLTM4LjIgMTQuOS0xLjMgMzAtMiA0NS4yLTIgMTUuMSAwIDMwLjIuNyA0NSAxLjkgOC4zIDExLjkgMTYuNCAyNC42IDI0LjIgMzggNy42IDEzLjEgMTQuNSAyNi40IDIwLjggMzkuOC02LjMgMTMuNC0xMy4yIDI2LjgtMjAuNyAzOS45em0zMi4zLTEzYzUuNCAxMy40IDEwIDI2LjggMTMuOCAzOS44LTEzLjEgMy4yLTI2LjkgNS45LTQxLjIgOCA0LjktNy43IDkuOC0xNS42IDE0LjQtMjMuNyA0LjYtOCA4LjktMTYuMSAxMy0yNC4xek00MjEuMiA0MzBjLTkuMy05LjYtMTguNi0yMC4zLTI3LjgtMzIgOSAuNCAxOC4yLjcgMjcuNS43IDkuNCAwIDE4LjctLjIgMjcuOC0uNy05IDExLjctMTguMyAyMi40LTI3LjUgMzJ6bS03NC40LTU4LjljLTE0LjItMi4xLTI3LjktNC43LTQxLTcuOSAzLjctMTIuOSA4LjMtMjYuMiAxMy41LTM5LjUgNC4xIDggOC40IDE2IDEzLjEgMjQgNC43IDggOS41IDE1LjggMTQuNCAyMy40ek00MjAuNyAxNjNjOS4zIDkuNiAxOC42IDIwLjMgMjcuOCAzMi05LS40LTE4LjItLjctMjcuNS0uNy05LjQgMC0xOC43LjItMjcuOC43IDktMTEuNyAxOC4zLTIyLjQgMjcuNS0zMnptLTc0IDU4LjljLTQuOSA3LjctOS44IDE1LjYtMTQuNCAyMy43LTQuNiA4LTguOSAxNi0xMyAyNC01LjQtMTMuNC0xMC0yNi44LTEzLjgtMzkuOCAxMy4xLTMuMSAyNi45LTUuOCA0MS4yLTcuOXptLTkwLjUgMTI1LjJjLTM1LjQtMTUuMS01OC4zLTM0LjktNTguMy01MC42IDAtMTUuNyAyMi45LTM1LjYgNTguMy01MC42IDguNi0zLjcgMTgtNyAyNy43LTEwLjEgNS43IDE5LjYgMTMuMiA0MCAyMi41IDYwLjktOS4yIDIwLjgtMTYuNiA0MS4xLTIyLjIgNjAuNi05LjktMy4xLTE5LjMtNi41LTI4LTEwLjJ6TTMxMCA0OTBjLTEzLjYtNy44LTE5LjUtMzcuNS0xNC45LTc1LjcgMS4xLTkuNCAyLjktMTkuMyA1LjEtMjkuNCAxOS42IDQuOCA0MSA4LjUgNjMuNSAxMC45IDEzLjUgMTguNSAyNy41IDM1LjMgNDEuNiA1MC0zMi42IDMwLjMtNjMuMiA0Ni45LTg0IDQ2LjktNC41LS4xLTguMy0xLTExLjMtMi43em0yMzcuMi03Ni4yYzQuNyAzOC4yLTEuMSA2Ny45LTE0LjYgNzUuOC0zIDEuOC02LjkgMi42LTExLjUgMi42LTIwLjcgMC01MS40LTE2LjUtODQtNDYuNiAxNC0xNC43IDI4LTMxLjQgNDEuMy00OS45IDIyLjYtMi40IDQ0LTYuMSA2My42LTExIDIuMyAxMC4xIDQuMSAxOS44IDUuMiAyOS4xem0zOC41LTY2LjdjLTguNiAzLjctMTggNy0yNy43IDEwLjEtNS43LTE5LjYtMTMuMi00MC0yMi41LTYwLjkgOS4yLTIwLjggMTYuNi00MS4xIDIyLjItNjAuNiA5LjkgMy4xIDE5LjMgNi41IDI4LjEgMTAuMiAzNS40IDE1LjEgNTguMyAzNC45IDU4LjMgNTAuNi0uMSAxNS43LTIzIDM1LjYtNTguNCA1MC42ek0zMjAuOCA3OC40eiIvPgogICAgPGNpcmNsZSBjeD0iNDIwLjkiIGN5PSIyOTYuNSIgcj0iNDUuNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-redo: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTE4LjQgMTAuNkMxNi41NSA4Ljk5IDE0LjE1IDggMTEuNSA4Yy00LjY1IDAtOC41OCAzLjAzLTkuOTYgNy4yMkwzLjkgMTZjMS4wNS0zLjE5IDQuMDUtNS41IDcuNi01LjUgMS45NSAwIDMuNzMuNzIgNS4xMiAxLjg4TDEzIDE2aDlWN2wtMy42IDMuNnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-refresh: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTkgMTMuNWMtMi40OSAwLTQuNS0yLjAxLTQuNS00LjVTNi41MSA0LjUgOSA0LjVjMS4yNCAwIDIuMzYuNTIgMy4xNyAxLjMzTDEwIDhoNVYzbC0xLjc2IDEuNzZDMTIuMTUgMy42OCAxMC42NiAzIDkgMyA1LjY5IDMgMy4wMSA1LjY5IDMuMDEgOVM1LjY5IDE1IDkgMTVjMi45NyAwIDUuNDMtMi4xNiA1LjktNWgtMS41MmMtLjQ2IDItMi4yNCAzLjUtNC4zOCAzLjV6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-regex: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi1hY2NlbnQyIiBmaWxsPSIjRkZGIj4KICAgIDxjaXJjbGUgY2xhc3M9InN0MiIgY3g9IjUuNSIgY3k9IjE0LjUiIHI9IjEuNSIvPgogICAgPHJlY3QgeD0iMTIiIHk9IjQiIGNsYXNzPSJzdDIiIHdpZHRoPSIxIiBoZWlnaHQ9IjgiLz4KICAgIDxyZWN0IHg9IjguNSIgeT0iNy41IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjg2NiAtMC41IDAuNSAwLjg2NiAtMi4zMjU1IDcuMzIxOSkiIGNsYXNzPSJzdDIiIHdpZHRoPSI4IiBoZWlnaHQ9IjEiLz4KICAgIDxyZWN0IHg9IjEyIiB5PSI0IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjUgLTAuODY2IDAuODY2IDAuNSAtMC42Nzc5IDE0LjgyNTIpIiBjbGFzcz0ic3QyIiB3aWR0aD0iMSIgaGVpZ2h0PSI4Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-run: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTggNXYxNGwxMS03eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-running: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptOTYgMzI4YzAgOC44LTcuMiAxNi0xNiAxNkgxNzZjLTguOCAwLTE2LTcuMi0xNi0xNlYxNzZjMC04LjggNy4yLTE2IDE2LTE2aDE2MGM4LjggMCAxNiA3LjIgMTYgMTZ2MTYweiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-save: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE3IDNINWMtMS4xMSAwLTIgLjktMiAydjE0YzAgMS4xLjg5IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjdsLTQtNHptLTUgMTZjLTEuNjYgMC0zLTEuMzQtMy0zczEuMzQtMyAzLTMgMyAxLjM0IDMgMy0xLjM0IDMtMyAzem0zLTEwSDVWNWgxMHY0eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-search: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjEsMTAuOWgtMC43bC0wLjItMC4yYzAuOC0wLjksMS4zLTIuMiwxLjMtMy41YzAtMy0yLjQtNS40LTUuNC01LjRTMS44LDQuMiwxLjgsNy4xczIuNCw1LjQsNS40LDUuNCBjMS4zLDAsMi41LTAuNSwzLjUtMS4zbDAuMiwwLjJ2MC43bDQuMSw0LjFsMS4yLTEuMkwxMi4xLDEwLjl6IE03LjEsMTAuOWMtMi4xLDAtMy43LTEuNy0zLjctMy43czEuNy0zLjcsMy43LTMuN3MzLjcsMS43LDMuNywzLjcgUzkuMiwxMC45LDcuMSwxMC45eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-settings: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuNDMgMTIuOThjLjA0LS4zMi4wNy0uNjQuMDctLjk4cy0uMDMtLjY2LS4wNy0uOThsMi4xMS0xLjY1Yy4xOS0uMTUuMjQtLjQyLjEyLS42NGwtMi0zLjQ2Yy0uMTItLjIyLS4zOS0uMy0uNjEtLjIybC0yLjQ5IDFjLS41Mi0uNC0xLjA4LS43My0xLjY5LS45OGwtLjM4LTIuNjVBLjQ4OC40ODggMCAwMDE0IDJoLTRjLS4yNSAwLS40Ni4xOC0uNDkuNDJsLS4zOCAyLjY1Yy0uNjEuMjUtMS4xNy41OS0xLjY5Ljk4bC0yLjQ5LTFjLS4yMy0uMDktLjQ5IDAtLjYxLjIybC0yIDMuNDZjLS4xMy4yMi0uMDcuNDkuMTIuNjRsMi4xMSAxLjY1Yy0uMDQuMzItLjA3LjY1LS4wNy45OHMuMDMuNjYuMDcuOThsLTIuMTEgMS42NWMtLjE5LjE1LS4yNC40Mi0uMTIuNjRsMiAzLjQ2Yy4xMi4yMi4zOS4zLjYxLjIybDIuNDktMWMuNTIuNCAxLjA4LjczIDEuNjkuOThsLjM4IDIuNjVjLjAzLjI0LjI0LjQyLjQ5LjQyaDRjLjI1IDAgLjQ2LS4xOC40OS0uNDJsLjM4LTIuNjVjLjYxLS4yNSAxLjE3LS41OSAxLjY5LS45OGwyLjQ5IDFjLjIzLjA5LjQ5IDAgLjYxLS4yMmwyLTMuNDZjLjEyLS4yMi4wNy0uNDktLjEyLS42NGwtMi4xMS0xLjY1ek0xMiAxNS41Yy0xLjkzIDAtMy41LTEuNTctMy41LTMuNXMxLjU3LTMuNSAzLjUtMy41IDMuNSAxLjU3IDMuNSAzLjUtMS41NyAzLjUtMy41IDMuNXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-spreadsheet: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNENBRjUwIiBkPSJNMi4yIDIuMnYxNy42aDE3LjZWMi4ySDIuMnptMTUuNCA3LjdoLTUuNVY0LjRoNS41djUuNXpNOS45IDQuNHY1LjVINC40VjQuNGg1LjV6bS01LjUgNy43aDUuNXY1LjVINC40di01LjV6bTcuNyA1LjV2LTUuNWg1LjV2NS41aC01LjV6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-stop: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik02IDZoMTJ2MTJINnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tab: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIxIDNIM2MtMS4xIDAtMiAuOS0yIDJ2MTRjMCAxLjEuOSAyIDIgMmgxOGMxLjEgMCAyLS45IDItMlY1YzAtMS4xLS45LTItMi0yem0wIDE2SDNWNWgxMHY0aDh2MTB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-table-rows: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMSw4SDNWNGgxOFY4eiBNMjEsMTBIM3Y0aDE4VjEweiBNMjEsMTZIM3Y0aDE4VjE2eiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-tag: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCA0MyAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTI4LjgzMzIgMTIuMzM0TDMyLjk5OTggMTYuNTAwN0wzNy4xNjY1IDEyLjMzNEgyOC44MzMyWiIvPgoJCTxwYXRoIGQ9Ik0xNi4yMDk1IDIxLjYxMDRDMTUuNjg3MyAyMi4xMjk5IDE0Ljg0NDMgMjIuMTI5OSAxNC4zMjQ4IDIxLjYxMDRMNi45ODI5IDE0LjcyNDVDNi41NzI0IDE0LjMzOTQgNi4wODMxMyAxMy42MDk4IDYuMDQ3ODYgMTMuMDQ4MkM1Ljk1MzQ3IDExLjUyODggNi4wMjAwMiA4LjYxOTQ0IDYuMDY2MjEgNy4wNzY5NUM2LjA4MjgxIDYuNTE0NzcgNi41NTU0OCA2LjA0MzQ3IDcuMTE4MDQgNi4wMzA1NUM5LjA4ODYzIDUuOTg0NzMgMTMuMjYzOCA1LjkzNTc5IDEzLjY1MTggNi4zMjQyNUwyMS43MzY5IDEzLjYzOUMyMi4yNTYgMTQuMTU4NSAyMS43ODUxIDE1LjQ3MjQgMjEuMjYyIDE1Ljk5NDZMMTYuMjA5NSAyMS42MTA0Wk05Ljc3NTg1IDguMjY1QzkuMzM1NTEgNy44MjU2NiA4LjYyMzUxIDcuODI1NjYgOC4xODI4IDguMjY1QzcuNzQzNDYgOC43MDU3MSA3Ljc0MzQ2IDkuNDE3MzMgOC4xODI4IDkuODU2NjdDOC42MjM4MiAxMC4yOTY0IDkuMzM1ODIgMTAuMjk2NCA5Ljc3NTg1IDkuODU2NjdDMTAuMjE1NiA5LjQxNzMzIDEwLjIxNTYgOC43MDUzMyA5Ljc3NTg1IDguMjY1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-terminal: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiA+CiAgICA8cmVjdCBjbGFzcz0ianAtaWNvbjIganAtaWNvbi1zZWxlY3RhYmxlIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMikiIGZpbGw9IiMzMzMzMzMiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uLWFjY2VudDIganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGQ9Ik01LjA1NjY0IDguNzYxNzJDNS4wNTY2NCA4LjU5NzY2IDUuMDMxMjUgOC40NTMxMiA0Ljk4MDQ3IDguMzI4MTJDNC45MzM1OSA4LjE5OTIyIDQuODU1NDcgOC4wODIwMyA0Ljc0NjA5IDcuOTc2NTZDNC42NDA2MiA3Ljg3MTA5IDQuNSA3Ljc3NTM5IDQuMzI0MjIgNy42ODk0NUM0LjE1MjM0IDcuNTk5NjEgMy45NDMzNiA3LjUxMTcyIDMuNjk3MjcgNy40MjU3OEMzLjMwMjczIDcuMjg1MTYgMi45NDMzNiA3LjEzNjcyIDIuNjE5MTQgNi45ODA0N0MyLjI5NDkyIDYuODI0MjIgMi4wMTc1OCA2LjY0MjU4IDEuNzg3MTEgNi40MzU1NUMxLjU2MDU1IDYuMjI4NTIgMS4zODQ3NyA1Ljk4ODI4IDEuMjU5NzcgNS43MTQ4NEMxLjEzNDc3IDUuNDM3NSAxLjA3MjI3IDUuMTA5MzggMS4wNzIyNyA0LjczMDQ3QzEuMDcyMjcgNC4zOTg0NCAxLjEyODkxIDQuMDk1NyAxLjI0MjE5IDMuODIyMjdDMS4zNTU0NyAzLjU0NDkyIDEuNTE1NjIgMy4zMDQ2OSAxLjcyMjY2IDMuMTAxNTZDMS45Mjk2OSAyLjg5ODQ0IDIuMTc5NjkgMi43MzQzNyAyLjQ3MjY2IDIuNjA5MzhDMi43NjU2MiAyLjQ4NDM4IDMuMDkxOCAyLjQwNDMgMy40NTExNyAyLjM2OTE0VjEuMTA5MzhINC4zODg2N1YyLjM4MDg2QzQuNzQwMjMgMi40Mjc3MyA1LjA1NjY0IDIuNTIzNDQgNS4zMzc4OSAyLjY2Nzk3QzUuNjE5MTQgMi44MTI1IDUuODU3NDIgMy4wMDE5NSA2LjA1MjczIDMuMjM2MzNDNi4yNTE5NSAzLjQ2NjggNi40MDQzIDMuNzQwMjMgNi41MDk3NyA0LjA1NjY0QzYuNjE5MTQgNC4zNjkxNCA2LjY3MzgzIDQuNzIwNyA2LjY3MzgzIDUuMTExMzNINS4wNDQ5MkM1LjA0NDkyIDQuNjM4NjcgNC45Mzc1IDQuMjgxMjUgNC43MjI2NiA0LjAzOTA2QzQuNTA3ODEgMy43OTI5NyA0LjIxNjggMy42Njk5MiAzLjg0OTYxIDMuNjY5OTJDMy42NTAzOSAzLjY2OTkyIDMuNDc2NTYgMy42OTcyNyAzLjMyODEyIDMuNzUxOTVDMy4xODM1OSAzLjgwMjczIDMuMDY0NDUgMy44NzY5NSAyLjk3MDcgMy45NzQ2MUMyLjg3Njk1IDQuMDY4MzYgMi44MDY2NCA0LjE3OTY5IDIuNzU5NzcgNC4zMDg1OUMyLjcxNjggNC40Mzc1IDIuNjk1MzEgNC41NzgxMiAyLjY5NTMxIDQuNzMwNDdDMi42OTUzMSA0Ljg4MjgxIDIuNzE2OCA1LjAxOTUzIDIuNzU5NzcgNS4xNDA2MkMyLjgwNjY0IDUuMjU3ODEgMi44ODI4MSA1LjM2NzE5IDIuOTg4MjggNS40Njg3NUMzLjA5NzY2IDUuNTcwMzEgMy4yNDAyMyA1LjY2Nzk3IDMuNDE2MDIgNS43NjE3MkMzLjU5MTggNS44NTE1NiAzLjgxMDU1IDUuOTQzMzYgNC4wNzIyNyA2LjAzNzExQzQuNDY2OCA2LjE4NTU1IDQuODI0MjIgNi4zMzk4NCA1LjE0NDUzIDYuNUM1LjQ2NDg0IDYuNjU2MjUgNS43MzgyOCA2LjgzOTg0IDUuOTY0ODQgNy4wNTA3OEM2LjE5NTMxIDcuMjU3ODEgNi4zNzEwOSA3LjUgNi40OTIxOSA3Ljc3NzM0QzYuNjE3MTkgOC4wNTA3OCA2LjY3OTY5IDguMzc1IDYuNjc5NjkgOC43NUM2LjY3OTY5IDkuMDkzNzUgNi42MjMwNSA5LjQwNDMgNi41MDk3NyA5LjY4MTY0QzYuMzk2NDggOS45NTUwOCA2LjIzNDM4IDEwLjE5MTQgNi4wMjM0NCAxMC4zOTA2QzUuODEyNSAxMC41ODk4IDUuNTU4NTkgMTAuNzUgNS4yNjE3MiAxMC44NzExQzQuOTY0ODQgMTAuOTg4MyA0LjYzMjgxIDExLjA2NDUgNC4yNjU2MiAxMS4wOTk2VjEyLjI0OEgzLjMzMzk4VjExLjA5OTZDMy4wMDE5NSAxMS4wNjg0IDIuNjc5NjkgMTAuOTk2MSAyLjM2NzE5IDEwLjg4MjhDMi4wNTQ2OSAxMC43NjU2IDEuNzc3MzQgMTAuNTk3NyAxLjUzNTE2IDEwLjM3ODlDMS4yOTY4OCAxMC4xNjAyIDEuMTA1NDcgOS44ODQ3NyAwLjk2MDkzOCA5LjU1MjczQzAuODE2NDA2IDkuMjE2OCAwLjc0NDE0MSA4LjgxNDQ1IDAuNzQ0MTQxIDguMzQ1N0gyLjM3ODkxQzIuMzc4OTEgOC42MjY5NSAyLjQxOTkyIDguODYzMjggMi41MDE5NSA5LjA1NDY5QzIuNTgzOTggOS4yNDIxOSAyLjY4OTQ1IDkuMzkyNTggMi44MTgzNiA5LjUwNTg2QzIuOTUxMTcgOS42MTUyMyAzLjEwMTU2IDkuNjkzMzYgMy4yNjk1MyA5Ljc0MDIzQzMuNDM3NSA5Ljc4NzExIDMuNjA5MzggOS44MTA1NSAzLjc4NTE2IDkuODEwNTVDNC4yMDMxMiA5LjgxMDU1IDQuNTE5NTMgOS43MTI4OSA0LjczNDM4IDkuNTE3NThDNC45NDkyMiA5LjMyMjI3IDUuMDU2NjQgOS4wNzAzMSA1LjA1NjY0IDguNzYxNzJaTTEzLjQxOCAxMi4yNzE1SDguMDc0MjJWMTFIMTMuNDE4VjEyLjI3MTVaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzLjk1MjY0IDYpIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);\n  --jp-icon-text-editor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTUgMTVIM3YyaDEydi0yem0wLThIM3YyaDEyVjd6TTMgMTNoMTh2LTJIM3Yyem0wIDhoMTh2LTJIM3Yyek0zIDN2MmgxOFYzSDN6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-toc: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik03LDVIMjFWN0g3VjVNNywxM1YxMUgyMVYxM0g3TTQsNC41QTEuNSwxLjUgMCAwLDEgNS41LDZBMS41LDEuNSAwIDAsMSA0LDcuNUExLjUsMS41IDAgMCwxIDIuNSw2QTEuNSwxLjUgMCAwLDEgNCw0LjVNNCwxMC41QTEuNSwxLjUgMCAwLDEgNS41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMy41QTEuNSwxLjUgMCAwLDEgMi41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMC41TTcsMTlWMTdIMjFWMTlIN000LDE2LjVBMS41LDEuNSAwIDAsMSA1LjUsMThBMS41LDEuNSAwIDAsMSA0LDE5LjVBMS41LDEuNSAwIDAsMSAyLjUsMThBMS41LDEuNSAwIDAsMSA0LDE2LjVaIiAvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tree-view: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMiAxMVYzaC03djNIOVYzSDJ2OGg3VjhoMnYxMGg0djNoN3YtOGgtN3YzaC0yVjhoMnYzeiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMiAxNy4xODQ0IDIuOTY5NjggMTQuMzAzMiAxLjg2MDk0IDExLjQ0MDlaIi8+CiAgICA8cGF0aCBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiMzMzMzMzMiIHN0cm9rZT0iIzMzMzMzMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA5Ljg2NzE5KSIgZD0iTTIuODYwMTUgNC44NjUzNUwwLjcyNjU0OSAyLjk5OTU5TDAgMy42MzA0NUwyLjg2MDE1IDYuMTMxNTdMOCAwLjYzMDg3Mkw3LjI3ODU3IDBMMi44NjAxNSA0Ljg2NTM1WiIvPgo8L3N2Zz4K);\n  --jp-icon-undo: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjUgOGMtMi42NSAwLTUuMDUuOTktNi45IDIuNkwyIDd2OWg5bC0zLjYyLTMuNjJjMS4zOS0xLjE2IDMuMTYtMS44OCA1LjEyLTEuODggMy41NCAwIDYuNTUgMi4zMSA3LjYgNS41bDIuMzctLjc4QzIxLjA4IDExLjAzIDE3LjE1IDggMTIuNSA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-vega: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbjEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjEyMTIxIj4KICAgIDxwYXRoIGQ9Ik0xMC42IDUuNGwyLjItMy4ySDIuMnY3LjNsNC02LjZ6Ii8+CiAgICA8cGF0aCBkPSJNMTUuOCAyLjJsLTQuNCA2LjZMNyA2LjNsLTQuOCA4djUuNWgxNy42VjIuMmgtNHptLTcgMTUuNEg1LjV2LTQuNGgzLjN2NC40em00LjQgMEg5LjhWOS44aDMuNHY3Ljh6bTQuNCAwaC0zLjRWNi41aDMuNHYxMS4xeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-yaml: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1jb250cmFzdDIganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjRDgxQjYwIj4KICAgIDxwYXRoIGQ9Ik03LjIgMTguNnYtNS40TDMgNS42aDMuM2wxLjQgMy4xYy4zLjkuNiAxLjYgMSAyLjUuMy0uOC42LTEuNiAxLTIuNWwxLjQtMy4xaDMuNGwtNC40IDcuNnY1LjVsLTIuOS0uMXoiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxNi41IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxMSIgcj0iMi4xIi8+CiAgPC9nPgo8L3N2Zz4K);\n}\n\n/* Icon CSS class declarations */\n\n.jp-AddIcon {\n  background-image: var(--jp-icon-add);\n}\n.jp-BugIcon {\n  background-image: var(--jp-icon-bug);\n}\n.jp-BuildIcon {\n  background-image: var(--jp-icon-build);\n}\n.jp-CaretDownEmptyIcon {\n  background-image: var(--jp-icon-caret-down-empty);\n}\n.jp-CaretDownEmptyThinIcon {\n  background-image: var(--jp-icon-caret-down-empty-thin);\n}\n.jp-CaretDownIcon {\n  background-image: var(--jp-icon-caret-down);\n}\n.jp-CaretLeftIcon {\n  background-image: var(--jp-icon-caret-left);\n}\n.jp-CaretRightIcon {\n  background-image: var(--jp-icon-caret-right);\n}\n.jp-CaretUpEmptyThinIcon {\n  background-image: var(--jp-icon-caret-up-empty-thin);\n}\n.jp-CaretUpIcon {\n  background-image: var(--jp-icon-caret-up);\n}\n.jp-CaseSensitiveIcon {\n  background-image: var(--jp-icon-case-sensitive);\n}\n.jp-CheckIcon {\n  background-image: var(--jp-icon-check);\n}\n.jp-CircleEmptyIcon {\n  background-image: var(--jp-icon-circle-empty);\n}\n.jp-CircleIcon {\n  background-image: var(--jp-icon-circle);\n}\n.jp-ClearIcon {\n  background-image: var(--jp-icon-clear);\n}\n.jp-CloseIcon {\n  background-image: var(--jp-icon-close);\n}\n.jp-CodeIcon {\n  background-image: var(--jp-icon-code);\n}\n.jp-ConsoleIcon {\n  background-image: var(--jp-icon-console);\n}\n.jp-CopyIcon {\n  background-image: var(--jp-icon-copy);\n}\n.jp-CopyrightIcon {\n  background-image: var(--jp-icon-copyright);\n}\n.jp-CutIcon {\n  background-image: var(--jp-icon-cut);\n}\n.jp-DownloadIcon {\n  background-image: var(--jp-icon-download);\n}\n.jp-EditIcon {\n  background-image: var(--jp-icon-edit);\n}\n.jp-EllipsesIcon {\n  background-image: var(--jp-icon-ellipses);\n}\n.jp-ExtensionIcon {\n  background-image: var(--jp-icon-extension);\n}\n.jp-FastForwardIcon {\n  background-image: var(--jp-icon-fast-forward);\n}\n.jp-FileIcon {\n  background-image: var(--jp-icon-file);\n}\n.jp-FileUploadIcon {\n  background-image: var(--jp-icon-file-upload);\n}\n.jp-FilterListIcon {\n  background-image: var(--jp-icon-filter-list);\n}\n.jp-FolderIcon {\n  background-image: var(--jp-icon-folder);\n}\n.jp-Html5Icon {\n  background-image: var(--jp-icon-html5);\n}\n.jp-ImageIcon {\n  background-image: var(--jp-icon-image);\n}\n.jp-InspectorIcon {\n  background-image: var(--jp-icon-inspector);\n}\n.jp-JsonIcon {\n  background-image: var(--jp-icon-json);\n}\n.jp-JuliaIcon {\n  background-image: var(--jp-icon-julia);\n}\n.jp-JupyterFaviconIcon {\n  background-image: var(--jp-icon-jupyter-favicon);\n}\n.jp-JupyterIcon {\n  background-image: var(--jp-icon-jupyter);\n}\n.jp-JupyterlabWordmarkIcon {\n  background-image: var(--jp-icon-jupyterlab-wordmark);\n}\n.jp-KernelIcon {\n  background-image: var(--jp-icon-kernel);\n}\n.jp-KeyboardIcon {\n  background-image: var(--jp-icon-keyboard);\n}\n.jp-LauncherIcon {\n  background-image: var(--jp-icon-launcher);\n}\n.jp-LineFormIcon {\n  background-image: var(--jp-icon-line-form);\n}\n.jp-LinkIcon {\n  background-image: var(--jp-icon-link);\n}\n.jp-ListIcon {\n  background-image: var(--jp-icon-list);\n}\n.jp-ListingsInfoIcon {\n  background-image: var(--jp-icon-listings-info);\n}\n.jp-MarkdownIcon {\n  background-image: var(--jp-icon-markdown);\n}\n.jp-NewFolderIcon {\n  background-image: var(--jp-icon-new-folder);\n}\n.jp-NotTrustedIcon {\n  background-image: var(--jp-icon-not-trusted);\n}\n.jp-NotebookIcon {\n  background-image: var(--jp-icon-notebook);\n}\n.jp-NumberingIcon {\n  background-image: var(--jp-icon-numbering);\n}\n.jp-OfflineBoltIcon {\n  background-image: var(--jp-icon-offline-bolt);\n}\n.jp-PaletteIcon {\n  background-image: var(--jp-icon-palette);\n}\n.jp-PasteIcon {\n  background-image: var(--jp-icon-paste);\n}\n.jp-PdfIcon {\n  background-image: var(--jp-icon-pdf);\n}\n.jp-PythonIcon {\n  background-image: var(--jp-icon-python);\n}\n.jp-RKernelIcon {\n  background-image: var(--jp-icon-r-kernel);\n}\n.jp-ReactIcon {\n  background-image: var(--jp-icon-react);\n}\n.jp-RedoIcon {\n  background-image: var(--jp-icon-redo);\n}\n.jp-RefreshIcon {\n  background-image: var(--jp-icon-refresh);\n}\n.jp-RegexIcon {\n  background-image: var(--jp-icon-regex);\n}\n.jp-RunIcon {\n  background-image: var(--jp-icon-run);\n}\n.jp-RunningIcon {\n  background-image: var(--jp-icon-running);\n}\n.jp-SaveIcon {\n  background-image: var(--jp-icon-save);\n}\n.jp-SearchIcon {\n  background-image: var(--jp-icon-search);\n}\n.jp-SettingsIcon {\n  background-image: var(--jp-icon-settings);\n}\n.jp-SpreadsheetIcon {\n  background-image: var(--jp-icon-spreadsheet);\n}\n.jp-StopIcon {\n  background-image: var(--jp-icon-stop);\n}\n.jp-TabIcon {\n  background-image: var(--jp-icon-tab);\n}\n.jp-TableRowsIcon {\n  background-image: var(--jp-icon-table-rows);\n}\n.jp-TagIcon {\n  background-image: var(--jp-icon-tag);\n}\n.jp-TerminalIcon {\n  background-image: var(--jp-icon-terminal);\n}\n.jp-TextEditorIcon {\n  background-image: var(--jp-icon-text-editor);\n}\n.jp-TocIcon {\n  background-image: var(--jp-icon-toc);\n}\n.jp-TreeViewIcon {\n  background-image: var(--jp-icon-tree-view);\n}\n.jp-TrustedIcon {\n  background-image: var(--jp-icon-trusted);\n}\n.jp-UndoIcon {\n  background-image: var(--jp-icon-undo);\n}\n.jp-VegaIcon {\n  background-image: var(--jp-icon-vega);\n}\n.jp-YamlIcon {\n  background-image: var(--jp-icon-yaml);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n.jp-Icon,\n.jp-MaterialIcon {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-cover {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: cover;\n}\n\n/**\n * (DEPRECATED) Support for specific CSS icon sizes\n */\n\n.jp-Icon-16 {\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-18 {\n  background-size: 18px;\n  min-width: 18px;\n  min-height: 18px;\n}\n\n.jp-Icon-20 {\n  background-size: 20px;\n  min-width: 20px;\n  min-height: 20px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for icons as inline SVG HTMLElements\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n/* recolor the accent elements of an icon */\n.jp-icon-accent0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-accent1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-accent2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-accent3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-accent4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-accent0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-accent1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-accent2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-accent3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-accent4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n/* set the color of an icon to transparent */\n.jp-icon-none[fill] {\n  fill: none;\n}\n\n.jp-icon-none[stroke] {\n  stroke: none;\n}\n/* brand icon colors. Same for light and dark */\n.jp-icon-brand0[fill] {\n  fill: var(--jp-brand-color0);\n}\n.jp-icon-brand1[fill] {\n  fill: var(--jp-brand-color1);\n}\n.jp-icon-brand2[fill] {\n  fill: var(--jp-brand-color2);\n}\n.jp-icon-brand3[fill] {\n  fill: var(--jp-brand-color3);\n}\n.jp-icon-brand4[fill] {\n  fill: var(--jp-brand-color4);\n}\n\n.jp-icon-brand0[stroke] {\n  stroke: var(--jp-brand-color0);\n}\n.jp-icon-brand1[stroke] {\n  stroke: var(--jp-brand-color1);\n}\n.jp-icon-brand2[stroke] {\n  stroke: var(--jp-brand-color2);\n}\n.jp-icon-brand3[stroke] {\n  stroke: var(--jp-brand-color3);\n}\n.jp-icon-brand4[stroke] {\n  stroke: var(--jp-brand-color4);\n}\n/* warn icon colors. Same for light and dark */\n.jp-icon-warn0[fill] {\n  fill: var(--jp-warn-color0);\n}\n.jp-icon-warn1[fill] {\n  fill: var(--jp-warn-color1);\n}\n.jp-icon-warn2[fill] {\n  fill: var(--jp-warn-color2);\n}\n.jp-icon-warn3[fill] {\n  fill: var(--jp-warn-color3);\n}\n\n.jp-icon-warn0[stroke] {\n  stroke: var(--jp-warn-color0);\n}\n.jp-icon-warn1[stroke] {\n  stroke: var(--jp-warn-color1);\n}\n.jp-icon-warn2[stroke] {\n  stroke: var(--jp-warn-color2);\n}\n.jp-icon-warn3[stroke] {\n  stroke: var(--jp-warn-color3);\n}\n/* icon colors that contrast well with each other and most backgrounds */\n.jp-icon-contrast0[fill] {\n  fill: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[fill] {\n  fill: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[fill] {\n  fill: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[fill] {\n  fill: var(--jp-icon-contrast-color3);\n}\n\n.jp-icon-contrast0[stroke] {\n  stroke: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[stroke] {\n  stroke: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[stroke] {\n  stroke: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[stroke] {\n  stroke: var(--jp-icon-contrast-color3);\n}\n\n/* CSS for icons in selected items in the settings editor */\n#setting-editor .jp-PluginList .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n#setting-editor\n  .jp-PluginList\n  .jp-mod-selected\n  .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected filebrowser listing items */\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected tabs in the sidebar tab manager */\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable-inverse[fill] {\n  fill: #fff;\n}\n\n/**\n * TODO: come up with non css-hack solution for showing the busy icon on top\n *  of the close icon\n * CSS for complex behavior of close icon of tabs in the sidebar tab manager\n */\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty.jp-mod-active\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: #fff;\n}\n\n/**\n* TODO: come up with non css-hack solution for showing the busy icon on top\n*  of the close icon\n* CSS for complex behavior of close icon of tabs in the main area tabbar\n*/\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n/* CSS for icons in status bar */\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n/* special handling for splash icon CSS. While the theme CSS reloads during\n   splash, the splash icon can loose theming. To prevent that, we set a\n   default for its color variable */\n:root {\n  --jp-warn-color0: var(--md-orange-700);\n}\n\n/* not sure what to do with this one, used in filebrowser listing */\n.jp-DragIcon {\n  margin-right: 4px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for alt colors for icons as inline SVG HTMLElements\n */\n\n/* alt recolor the primary elements of an icon */\n.jp-icon-alt .jp-icon0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-alt .jp-icon0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* alt recolor the accent elements of an icon */\n.jp-icon-alt .jp-icon-accent0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-alt .jp-icon-accent0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-icon-hoverShow:not(:hover) svg {\n  display: none !important;\n}\n\n/**\n * Support for hover colors for icons as inline SVG HTMLElements\n */\n\n/**\n * regular colors\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon-hover :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/* recolor the accent elements of an icon */\n.jp-icon-hover :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* set the color of an icon to transparent */\n.jp-icon-hover :hover .jp-icon-none-hover[fill] {\n  fill: none;\n}\n\n.jp-icon-hover :hover .jp-icon-none-hover[stroke] {\n  stroke: none;\n}\n\n/**\n * inverse colors\n */\n\n/* inverse recolor the primary elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* inverse recolor the accent elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-switch {\n  display: flex;\n  align-items: center;\n  padding-left: 4px;\n  padding-right: 4px;\n  font-size: var(--jp-ui-font-size1);\n  background-color: transparent;\n  color: var(--jp-ui-font-color1);\n  border: none;\n  height: 20px;\n}\n\n.jp-switch:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-switch-label {\n  margin-right: 5px;\n}\n\n.jp-switch-track {\n  cursor: pointer;\n  background-color: var(--jp-border-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 34px;\n  height: 16px;\n  width: 35px;\n  position: relative;\n}\n\n.jp-switch-track::before {\n  content: '';\n  position: absolute;\n  height: 10px;\n  width: 10px;\n  margin: 3px;\n  left: 0px;\n  background-color: var(--jp-ui-inverse-font-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 50%;\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track {\n  background-color: var(--jp-warn-color0);\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track::before {\n  /* track width (35) - margins (3 + 3) - thumb width (10) */\n  left: 19px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* Sibling imports */\n\n/* Override Blueprint's _reset.scss styles */\nhtml {\n  box-sizing: unset;\n}\n\n*,\n*::before,\n*::after {\n  box-sizing: unset;\n}\n\nbody {\n  color: unset;\n  font-family: var(--jp-ui-font-family);\n}\n\np {\n  margin-top: unset;\n  margin-bottom: unset;\n}\n\nsmall {\n  font-size: unset;\n}\n\nstrong {\n  font-weight: unset;\n}\n\n/* Override Blueprint's _typography.scss styles */\na {\n  text-decoration: unset;\n  color: unset;\n}\na:hover {\n  text-decoration: unset;\n  color: unset;\n}\n\n/* Override Blueprint's _accessibility.scss styles */\n:focus {\n  outline: unset;\n  outline-offset: unset;\n  -moz-outline-radius: unset;\n}\n\n/* Styles for ui-components */\n.jp-Button {\n  border-radius: var(--jp-border-radius);\n  padding: 0px 12px;\n  font-size: var(--jp-ui-font-size1);\n}\n\n/* Use our own theme for hover styles */\nbutton.jp-Button.bp3-button.bp3-minimal:hover {\n  background-color: var(--jp-layout-color2);\n}\n.jp-Button.minimal {\n  color: unset !important;\n}\n\n.jp-Button.jp-ToolbarButtonComponent {\n  text-transform: none;\n}\n\n.jp-InputGroup input {\n  box-sizing: border-box;\n  border-radius: 0;\n  background-color: transparent;\n  color: var(--jp-ui-font-color0);\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.jp-InputGroup input:focus {\n  box-shadow: inset 0 0 0 var(--jp-border-width)\n      var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-InputGroup input::placeholder,\ninput::placeholder {\n  color: var(--jp-ui-font-color3);\n}\n\n.jp-BPIcon {\n  display: inline-block;\n  vertical-align: middle;\n  margin: auto;\n}\n\n/* Stop blueprint futzing with our icon fills */\n.bp3-icon.jp-BPIcon > svg:not([fill]) {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n.jp-InputGroupAction {\n  padding: 6px;\n}\n\n.jp-HTMLSelect.jp-DefaultStyle select {\n  background-color: initial;\n  border: none;\n  border-radius: 0;\n  box-shadow: none;\n  color: var(--jp-ui-font-color0);\n  display: block;\n  font-size: var(--jp-ui-font-size1);\n  height: 24px;\n  line-height: 14px;\n  padding: 0 25px 0 10px;\n  text-align: left;\n  -moz-appearance: none;\n  -webkit-appearance: none;\n}\n\n/* Use our own theme for hover and option styles */\n.jp-HTMLSelect.jp-DefaultStyle select:hover,\n.jp-HTMLSelect.jp-DefaultStyle select > option {\n  background-color: var(--jp-layout-color2);\n  color: var(--jp-ui-font-color0);\n}\nselect {\n  box-sizing: border-box;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapse {\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  border-top: 1px solid var(--jp-border-color2);\n  border-bottom: 1px solid var(--jp-border-color2);\n}\n\n.jp-Collapse-header {\n  padding: 1px 12px;\n  color: var(--jp-ui-font-color1);\n  background-color: var(--jp-layout-color1);\n  font-size: var(--jp-ui-font-size2);\n}\n\n.jp-Collapse-header:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-Collapse-contents {\n  padding: 0px 12px 0px 12px;\n  background-color: var(--jp-layout-color1);\n  color: var(--jp-ui-font-color1);\n  overflow: auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-commandpalette-search-height: 28px;\n}\n\n/*-----------------------------------------------------------------------------\n| Overall styles\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette {\n  padding-bottom: 0px;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Modal variant\n|----------------------------------------------------------------------------*/\n\n.jp-ModalCommandPalette {\n  position: absolute;\n  z-index: 10000;\n  top: 38px;\n  left: 30%;\n  margin: 0;\n  padding: 4px;\n  width: 40%;\n  box-shadow: var(--jp-elevation-z4);\n  border-radius: 4px;\n  background: var(--jp-layout-color0);\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette {\n  max-height: 40vh;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-close-icon::after {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-header {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-item {\n  margin-left: 4px;\n  margin-right: 4px;\n}\n\n.jp-ModalCommandPalette\n  .lm-CommandPalette\n  .lm-CommandPalette-item.lm-mod-disabled {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Search\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-search {\n  padding: 4px;\n  background-color: var(--jp-layout-color1);\n  z-index: 2;\n}\n\n.lm-CommandPalette-wrapper {\n  overflow: overlay;\n  padding: 0px 9px;\n  background-color: var(--jp-input-active-background);\n  height: 30px;\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.lm-CommandPalette.lm-mod-focused .lm-CommandPalette-wrapper {\n  box-shadow: inset 0 0 0 1px var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-SearchIconGroup {\n  color: white;\n  background-color: var(--jp-brand-color1);\n  position: absolute;\n  top: 4px;\n  right: 4px;\n  padding: 5px 5px 1px 5px;\n}\n\n.jp-SearchIconGroup svg {\n  height: 20px;\n  width: 20px;\n}\n\n.jp-SearchIconGroup .jp-icon3[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-input {\n  background: transparent;\n  width: calc(100% - 18px);\n  float: left;\n  border: none;\n  outline: none;\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  line-height: var(--jp-private-commandpalette-search-height);\n}\n\n.lm-CommandPalette-input::-webkit-input-placeholder,\n.lm-CommandPalette-input::-moz-placeholder,\n.lm-CommandPalette-input:-ms-input-placeholder {\n  color: var(--jp-ui-font-color2);\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Results\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-header:first-child {\n  margin-top: 0px;\n}\n\n.lm-CommandPalette-header {\n  border-bottom: solid var(--jp-border-width) var(--jp-border-color2);\n  color: var(--jp-ui-font-color1);\n  cursor: pointer;\n  display: flex;\n  font-size: var(--jp-ui-font-size0);\n  font-weight: 600;\n  letter-spacing: 1px;\n  margin-top: 8px;\n  padding: 8px 0 8px 12px;\n  text-transform: uppercase;\n}\n\n.lm-CommandPalette-header.lm-mod-active {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-header > mark {\n  background-color: transparent;\n  font-weight: bold;\n  color: var(--jp-ui-font-color1);\n}\n\n.lm-CommandPalette-item {\n  padding: 4px 12px 4px 4px;\n  color: var(--jp-ui-font-color1);\n  font-size: var(--jp-ui-font-size1);\n  font-weight: 400;\n  display: flex;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item.lm-mod-active {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .jp-icon-selectable[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active:hover:not(.lm-mod-disabled) {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item:hover:not(.lm-mod-active):not(.lm-mod-disabled) {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-itemContent {\n  overflow: hidden;\n}\n\n.lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled mark {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemIcon {\n  margin: 0 4px 0 0;\n  position: relative;\n  width: 16px;\n  top: 2px;\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled .lm-CommandPalette-itemIcon {\n  opacity: 0.6;\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-itemCaption {\n  display: none;\n}\n\n.lm-CommandPalette-content {\n  background-color: var(--jp-layout-color1);\n}\n\n.lm-CommandPalette-content:empty:after {\n  content: 'No results';\n  margin: auto;\n  margin-top: 20px;\n  width: 100px;\n  display: block;\n  font-size: var(--jp-ui-font-size2);\n  font-family: var(--jp-ui-font-family);\n  font-weight: lighter;\n}\n\n.lm-CommandPalette-emptyMessage {\n  text-align: center;\n  margin-top: 24px;\n  line-height: 1.32;\n  padding: 0px 8px;\n  color: var(--jp-content-font-color3);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Dialog {\n  position: absolute;\n  z-index: 10000;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  top: 0px;\n  left: 0px;\n  margin: 0;\n  padding: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-dialog-background);\n}\n\n.jp-Dialog-content {\n  display: flex;\n  flex-direction: column;\n  margin-left: auto;\n  margin-right: auto;\n  background: var(--jp-layout-color1);\n  padding: 24px;\n  padding-bottom: 12px;\n  min-width: 300px;\n  min-height: 150px;\n  max-width: 1000px;\n  max-height: 500px;\n  box-sizing: border-box;\n  box-shadow: var(--jp-elevation-z20);\n  word-wrap: break-word;\n  border-radius: var(--jp-border-radius);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color1);\n  resize: both;\n}\n\n.jp-Dialog-button {\n  overflow: visible;\n}\n\nbutton.jp-Dialog-button:focus {\n  outline: 1px solid var(--jp-brand-color1);\n  outline-offset: 4px;\n  -moz-outline-radius: 0px;\n}\n\nbutton.jp-Dialog-button:focus::-moz-focus-inner {\n  border: 0;\n}\n\nbutton.jp-Dialog-close-button {\n  padding: 0;\n  height: 100%;\n  min-width: unset;\n  min-height: unset;\n}\n\n.jp-Dialog-header {\n  display: flex;\n  justify-content: space-between;\n  flex: 0 0 auto;\n  padding-bottom: 12px;\n  font-size: var(--jp-ui-font-size3);\n  font-weight: 400;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-body {\n  display: flex;\n  flex-direction: column;\n  flex: 1 1 auto;\n  font-size: var(--jp-ui-font-size1);\n  background: var(--jp-layout-color1);\n  overflow: auto;\n}\n\n.jp-Dialog-footer {\n  display: flex;\n  flex-direction: row;\n  justify-content: flex-end;\n  flex: 0 0 auto;\n  margin-left: -12px;\n  margin-right: -12px;\n  padding: 12px;\n}\n\n.jp-Dialog-title {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.jp-Dialog-body > .jp-select-wrapper {\n  width: 100%;\n}\n\n.jp-Dialog-body > button {\n  padding: 0px 16px;\n}\n\n.jp-Dialog-body > label {\n  line-height: 1.4;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-button.jp-mod-styled:not(:last-child) {\n  margin-right: 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-HoverBox {\n  position: fixed;\n}\n\n.jp-HoverBox.jp-mod-outofview {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-IFrame {\n  width: 100%;\n  height: 100%;\n}\n\n.jp-IFrame > iframe {\n  border: none;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-IFrame {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-IFrame:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n.jp-Input-Boolean-Dialog {\n  flex-direction: row-reverse;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-Input-Boolean-Dialog > label {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MainAreaWidget > :focus {\n  outline: none;\n}\n\n/**\n * google-material-color v1.2.6\n * https://github.com/danlevan/google-material-color\n */\n:root {\n  --md-red-50: #ffebee;\n  --md-red-100: #ffcdd2;\n  --md-red-200: #ef9a9a;\n  --md-red-300: #e57373;\n  --md-red-400: #ef5350;\n  --md-red-500: #f44336;\n  --md-red-600: #e53935;\n  --md-red-700: #d32f2f;\n  --md-red-800: #c62828;\n  --md-red-900: #b71c1c;\n  --md-red-A100: #ff8a80;\n  --md-red-A200: #ff5252;\n  --md-red-A400: #ff1744;\n  --md-red-A700: #d50000;\n\n  --md-pink-50: #fce4ec;\n  --md-pink-100: #f8bbd0;\n  --md-pink-200: #f48fb1;\n  --md-pink-300: #f06292;\n  --md-pink-400: #ec407a;\n  --md-pink-500: #e91e63;\n  --md-pink-600: #d81b60;\n  --md-pink-700: #c2185b;\n  --md-pink-800: #ad1457;\n  --md-pink-900: #880e4f;\n  --md-pink-A100: #ff80ab;\n  --md-pink-A200: #ff4081;\n  --md-pink-A400: #f50057;\n  --md-pink-A700: #c51162;\n\n  --md-purple-50: #f3e5f5;\n  --md-purple-100: #e1bee7;\n  --md-purple-200: #ce93d8;\n  --md-purple-300: #ba68c8;\n  --md-purple-400: #ab47bc;\n  --md-purple-500: #9c27b0;\n  --md-purple-600: #8e24aa;\n  --md-purple-700: #7b1fa2;\n  --md-purple-800: #6a1b9a;\n  --md-purple-900: #4a148c;\n  --md-purple-A100: #ea80fc;\n  --md-purple-A200: #e040fb;\n  --md-purple-A400: #d500f9;\n  --md-purple-A700: #aa00ff;\n\n  --md-deep-purple-50: #ede7f6;\n  --md-deep-purple-100: #d1c4e9;\n  --md-deep-purple-200: #b39ddb;\n  --md-deep-purple-300: #9575cd;\n  --md-deep-purple-400: #7e57c2;\n  --md-deep-purple-500: #673ab7;\n  --md-deep-purple-600: #5e35b1;\n  --md-deep-purple-700: #512da8;\n  --md-deep-purple-800: #4527a0;\n  --md-deep-purple-900: #311b92;\n  --md-deep-purple-A100: #b388ff;\n  --md-deep-purple-A200: #7c4dff;\n  --md-deep-purple-A400: #651fff;\n  --md-deep-purple-A700: #6200ea;\n\n  --md-indigo-50: #e8eaf6;\n  --md-indigo-100: #c5cae9;\n  --md-indigo-200: #9fa8da;\n  --md-indigo-300: #7986cb;\n  --md-indigo-400: #5c6bc0;\n  --md-indigo-500: #3f51b5;\n  --md-indigo-600: #3949ab;\n  --md-indigo-700: #303f9f;\n  --md-indigo-800: #283593;\n  --md-indigo-900: #1a237e;\n  --md-indigo-A100: #8c9eff;\n  --md-indigo-A200: #536dfe;\n  --md-indigo-A400: #3d5afe;\n  --md-indigo-A700: #304ffe;\n\n  --md-blue-50: #e3f2fd;\n  --md-blue-100: #bbdefb;\n  --md-blue-200: #90caf9;\n  --md-blue-300: #64b5f6;\n  --md-blue-400: #42a5f5;\n  --md-blue-500: #2196f3;\n  --md-blue-600: #1e88e5;\n  --md-blue-700: #1976d2;\n  --md-blue-800: #1565c0;\n  --md-blue-900: #0d47a1;\n  --md-blue-A100: #82b1ff;\n  --md-blue-A200: #448aff;\n  --md-blue-A400: #2979ff;\n  --md-blue-A700: #2962ff;\n\n  --md-light-blue-50: #e1f5fe;\n  --md-light-blue-100: #b3e5fc;\n  --md-light-blue-200: #81d4fa;\n  --md-light-blue-300: #4fc3f7;\n  --md-light-blue-400: #29b6f6;\n  --md-light-blue-500: #03a9f4;\n  --md-light-blue-600: #039be5;\n  --md-light-blue-700: #0288d1;\n  --md-light-blue-800: #0277bd;\n  --md-light-blue-900: #01579b;\n  --md-light-blue-A100: #80d8ff;\n  --md-light-blue-A200: #40c4ff;\n  --md-light-blue-A400: #00b0ff;\n  --md-light-blue-A700: #0091ea;\n\n  --md-cyan-50: #e0f7fa;\n  --md-cyan-100: #b2ebf2;\n  --md-cyan-200: #80deea;\n  --md-cyan-300: #4dd0e1;\n  --md-cyan-400: #26c6da;\n  --md-cyan-500: #00bcd4;\n  --md-cyan-600: #00acc1;\n  --md-cyan-700: #0097a7;\n  --md-cyan-800: #00838f;\n  --md-cyan-900: #006064;\n  --md-cyan-A100: #84ffff;\n  --md-cyan-A200: #18ffff;\n  --md-cyan-A400: #00e5ff;\n  --md-cyan-A700: #00b8d4;\n\n  --md-teal-50: #e0f2f1;\n  --md-teal-100: #b2dfdb;\n  --md-teal-200: #80cbc4;\n  --md-teal-300: #4db6ac;\n  --md-teal-400: #26a69a;\n  --md-teal-500: #009688;\n  --md-teal-600: #00897b;\n  --md-teal-700: #00796b;\n  --md-teal-800: #00695c;\n  --md-teal-900: #004d40;\n  --md-teal-A100: #a7ffeb;\n  --md-teal-A200: #64ffda;\n  --md-teal-A400: #1de9b6;\n  --md-teal-A700: #00bfa5;\n\n  --md-green-50: #e8f5e9;\n  --md-green-100: #c8e6c9;\n  --md-green-200: #a5d6a7;\n  --md-green-300: #81c784;\n  --md-green-400: #66bb6a;\n  --md-green-500: #4caf50;\n  --md-green-600: #43a047;\n  --md-green-700: #388e3c;\n  --md-green-800: #2e7d32;\n  --md-green-900: #1b5e20;\n  --md-green-A100: #b9f6ca;\n  --md-green-A200: #69f0ae;\n  --md-green-A400: #00e676;\n  --md-green-A700: #00c853;\n\n  --md-light-green-50: #f1f8e9;\n  --md-light-green-100: #dcedc8;\n  --md-light-green-200: #c5e1a5;\n  --md-light-green-300: #aed581;\n  --md-light-green-400: #9ccc65;\n  --md-light-green-500: #8bc34a;\n  --md-light-green-600: #7cb342;\n  --md-light-green-700: #689f38;\n  --md-light-green-800: #558b2f;\n  --md-light-green-900: #33691e;\n  --md-light-green-A100: #ccff90;\n  --md-light-green-A200: #b2ff59;\n  --md-light-green-A400: #76ff03;\n  --md-light-green-A700: #64dd17;\n\n  --md-lime-50: #f9fbe7;\n  --md-lime-100: #f0f4c3;\n  --md-lime-200: #e6ee9c;\n  --md-lime-300: #dce775;\n  --md-lime-400: #d4e157;\n  --md-lime-500: #cddc39;\n  --md-lime-600: #c0ca33;\n  --md-lime-700: #afb42b;\n  --md-lime-800: #9e9d24;\n  --md-lime-900: #827717;\n  --md-lime-A100: #f4ff81;\n  --md-lime-A200: #eeff41;\n  --md-lime-A400: #c6ff00;\n  --md-lime-A700: #aeea00;\n\n  --md-yellow-50: #fffde7;\n  --md-yellow-100: #fff9c4;\n  --md-yellow-200: #fff59d;\n  --md-yellow-300: #fff176;\n  --md-yellow-400: #ffee58;\n  --md-yellow-500: #ffeb3b;\n  --md-yellow-600: #fdd835;\n  --md-yellow-700: #fbc02d;\n  --md-yellow-800: #f9a825;\n  --md-yellow-900: #f57f17;\n  --md-yellow-A100: #ffff8d;\n  --md-yellow-A200: #ffff00;\n  --md-yellow-A400: #ffea00;\n  --md-yellow-A700: #ffd600;\n\n  --md-amber-50: #fff8e1;\n  --md-amber-100: #ffecb3;\n  --md-amber-200: #ffe082;\n  --md-amber-300: #ffd54f;\n  --md-amber-400: #ffca28;\n  --md-amber-500: #ffc107;\n  --md-amber-600: #ffb300;\n  --md-amber-700: #ffa000;\n  --md-amber-800: #ff8f00;\n  --md-amber-900: #ff6f00;\n  --md-amber-A100: #ffe57f;\n  --md-amber-A200: #ffd740;\n  --md-amber-A400: #ffc400;\n  --md-amber-A700: #ffab00;\n\n  --md-orange-50: #fff3e0;\n  --md-orange-100: #ffe0b2;\n  --md-orange-200: #ffcc80;\n  --md-orange-300: #ffb74d;\n  --md-orange-400: #ffa726;\n  --md-orange-500: #ff9800;\n  --md-orange-600: #fb8c00;\n  --md-orange-700: #f57c00;\n  --md-orange-800: #ef6c00;\n  --md-orange-900: #e65100;\n  --md-orange-A100: #ffd180;\n  --md-orange-A200: #ffab40;\n  --md-orange-A400: #ff9100;\n  --md-orange-A700: #ff6d00;\n\n  --md-deep-orange-50: #fbe9e7;\n  --md-deep-orange-100: #ffccbc;\n  --md-deep-orange-200: #ffab91;\n  --md-deep-orange-300: #ff8a65;\n  --md-deep-orange-400: #ff7043;\n  --md-deep-orange-500: #ff5722;\n  --md-deep-orange-600: #f4511e;\n  --md-deep-orange-700: #e64a19;\n  --md-deep-orange-800: #d84315;\n  --md-deep-orange-900: #bf360c;\n  --md-deep-orange-A100: #ff9e80;\n  --md-deep-orange-A200: #ff6e40;\n  --md-deep-orange-A400: #ff3d00;\n  --md-deep-orange-A700: #dd2c00;\n\n  --md-brown-50: #efebe9;\n  --md-brown-100: #d7ccc8;\n  --md-brown-200: #bcaaa4;\n  --md-brown-300: #a1887f;\n  --md-brown-400: #8d6e63;\n  --md-brown-500: #795548;\n  --md-brown-600: #6d4c41;\n  --md-brown-700: #5d4037;\n  --md-brown-800: #4e342e;\n  --md-brown-900: #3e2723;\n\n  --md-grey-50: #fafafa;\n  --md-grey-100: #f5f5f5;\n  --md-grey-200: #eeeeee;\n  --md-grey-300: #e0e0e0;\n  --md-grey-400: #bdbdbd;\n  --md-grey-500: #9e9e9e;\n  --md-grey-600: #757575;\n  --md-grey-700: #616161;\n  --md-grey-800: #424242;\n  --md-grey-900: #212121;\n\n  --md-blue-grey-50: #eceff1;\n  --md-blue-grey-100: #cfd8dc;\n  --md-blue-grey-200: #b0bec5;\n  --md-blue-grey-300: #90a4ae;\n  --md-blue-grey-400: #78909c;\n  --md-blue-grey-500: #607d8b;\n  --md-blue-grey-600: #546e7a;\n  --md-blue-grey-700: #455a64;\n  --md-blue-grey-800: #37474f;\n  --md-blue-grey-900: #263238;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Spinner {\n  position: absolute;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  z-index: 10;\n  left: 0;\n  top: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-layout-color0);\n  outline: none;\n}\n\n.jp-SpinnerContent {\n  font-size: 10px;\n  margin: 50px auto;\n  text-indent: -9999em;\n  width: 3em;\n  height: 3em;\n  border-radius: 50%;\n  background: var(--jp-brand-color3);\n  background: linear-gradient(\n    to right,\n    #f37626 10%,\n    rgba(255, 255, 255, 0) 42%\n  );\n  position: relative;\n  animation: load3 1s infinite linear, fadeIn 1s;\n}\n\n.jp-SpinnerContent:before {\n  width: 50%;\n  height: 50%;\n  background: #f37626;\n  border-radius: 100% 0 0 0;\n  position: absolute;\n  top: 0;\n  left: 0;\n  content: '';\n}\n\n.jp-SpinnerContent:after {\n  background: var(--jp-layout-color0);\n  width: 75%;\n  height: 75%;\n  border-radius: 50%;\n  content: '';\n  margin: auto;\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n}\n\n@keyframes fadeIn {\n  0% {\n    opacity: 0;\n  }\n  100% {\n    opacity: 1;\n  }\n}\n\n@keyframes load3 {\n  0% {\n    transform: rotate(0deg);\n  }\n  100% {\n    transform: rotate(360deg);\n  }\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\nbutton.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: none;\n  box-sizing: border-box;\n  text-align: center;\n  line-height: 32px;\n  height: 32px;\n  padding: 0px 12px;\n  letter-spacing: 0.8px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput.jp-mod-styled {\n  background: var(--jp-input-background);\n  height: 28px;\n  box-sizing: border-box;\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n  padding-left: 7px;\n  padding-right: 7px;\n  font-size: var(--jp-ui-font-size2);\n  color: var(--jp-ui-font-color0);\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput[type='checkbox'].jp-mod-styled {\n  appearance: checkbox;\n  -webkit-appearance: checkbox;\n  -moz-appearance: checkbox;\n  height: auto;\n}\n\ninput.jp-mod-styled:focus {\n  border: var(--jp-border-width) solid var(--md-blue-500);\n  box-shadow: inset 0 0 4px var(--md-blue-300);\n}\n\n.jp-FileDialog-Checkbox {\n  margin-top: 35px;\n  display: flex;\n  flex-direction: row;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-FileDialog-Checkbox > label {\n  flex: 1 1 auto;\n}\n\n.jp-select-wrapper {\n  display: flex;\n  position: relative;\n  flex-direction: column;\n  padding: 1px;\n  background-color: var(--jp-layout-color1);\n  height: 28px;\n  box-sizing: border-box;\n  margin-bottom: 12px;\n}\n\n.jp-select-wrapper.jp-mod-focused select.jp-mod-styled {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-input-active-background);\n}\n\nselect.jp-mod-styled:hover {\n  background-color: var(--jp-layout-color1);\n  cursor: pointer;\n  color: var(--jp-ui-font-color0);\n  background-color: var(--jp-input-hover-background);\n  box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.5);\n}\n\nselect.jp-mod-styled {\n  flex: 1 1 auto;\n  height: 32px;\n  width: 100%;\n  font-size: var(--jp-ui-font-size2);\n  background: var(--jp-input-background);\n  color: var(--jp-ui-font-color0);\n  padding: 0 25px 0 8px;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-toolbar-height: calc(\n    28px + var(--jp-border-width)\n  ); /* leave 28px for content */\n}\n\n.jp-Toolbar {\n  color: var(--jp-ui-font-color1);\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  border-bottom: var(--jp-border-width) solid var(--jp-toolbar-border-color);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  background: var(--jp-toolbar-background);\n  min-height: var(--jp-toolbar-micro-height);\n  padding: 2px;\n  z-index: 1;\n  overflow-x: auto;\n}\n\n/* Toolbar items */\n\n.jp-Toolbar > .jp-Toolbar-item.jp-Toolbar-spacer {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\n.jp-Toolbar-item.jp-Toolbar-kernelStatus {\n  display: inline-block;\n  width: 32px;\n  background-repeat: no-repeat;\n  background-position: center;\n  background-size: 16px;\n}\n\n.jp-Toolbar > .jp-Toolbar-item {\n  flex: 0 0 auto;\n  display: flex;\n  padding-left: 1px;\n  padding-right: 1px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: var(--jp-private-toolbar-height);\n  height: 100%;\n}\n\n/* Toolbar buttons */\n\n/* This is the div we use to wrap the react component into a Widget */\ndiv.jp-ToolbarButton {\n  color: transparent;\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px;\n  margin: 0px;\n}\n\nbutton.jp-ToolbarButtonComponent {\n  background: var(--jp-layout-color1);\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px 6px;\n  margin: 0px;\n  height: 24px;\n  border-radius: var(--jp-border-radius);\n  display: flex;\n  align-items: center;\n  text-align: center;\n  font-size: 14px;\n  min-width: unset;\n  min-height: unset;\n}\n\nbutton.jp-ToolbarButtonComponent:disabled {\n  opacity: 0.4;\n}\n\nbutton.jp-ToolbarButtonComponent span {\n  padding: 0px;\n  flex: 0 0 auto;\n}\n\nbutton.jp-ToolbarButtonComponent .jp-ToolbarButtonComponent-label {\n  font-size: var(--jp-ui-font-size1);\n  line-height: 100%;\n  padding-left: 2px;\n  color: var(--jp-ui-font-color1);\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar.jp-Toolbar-micro {\n  padding: 0;\n  min-height: 0;\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar {\n  border: none;\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ body.p-mod-override-cursor *, /* </DEPRECATED> */\nbody.lm-mod-override-cursor * {\n  cursor: inherit !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-JSONEditor {\n  display: flex;\n  flex-direction: column;\n  width: 100%;\n}\n\n.jp-JSONEditor-host {\n  flex: 1 1 auto;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  background: var(--jp-layout-color0);\n  min-height: 50px;\n  padding: 1px;\n}\n\n.jp-JSONEditor.jp-mod-error .jp-JSONEditor-host {\n  border-color: red;\n  outline-color: red;\n}\n\n.jp-JSONEditor-header {\n  display: flex;\n  flex: 1 0 auto;\n  padding: 0 0 0 12px;\n}\n\n.jp-JSONEditor-header label {\n  flex: 0 0 auto;\n}\n\n.jp-JSONEditor-commitButton {\n  height: 16px;\n  width: 16px;\n  background-size: 18px;\n  background-repeat: no-repeat;\n  background-position: center;\n}\n\n.jp-JSONEditor-host.jp-mod-focused {\n  background-color: var(--jp-input-active-background);\n  border: 1px solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n.jp-Editor.jp-mod-dropTarget {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n/* BASICS */\n\n.CodeMirror {\n  /* Set height, width, borders, and global font properties here */\n  font-family: monospace;\n  height: 300px;\n  color: black;\n  direction: ltr;\n}\n\n/* PADDING */\n\n.CodeMirror-lines {\n  padding: 4px 0; /* Vertical padding around content */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  padding: 0 4px; /* Horizontal padding of content */\n}\n\n.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  background-color: white; /* The little square between H and V scrollbars */\n}\n\n/* GUTTER */\n\n.CodeMirror-gutters {\n  border-right: 1px solid #ddd;\n  background-color: #f7f7f7;\n  white-space: nowrap;\n}\n.CodeMirror-linenumbers {}\n.CodeMirror-linenumber {\n  padding: 0 3px 0 5px;\n  min-width: 20px;\n  text-align: right;\n  color: #999;\n  white-space: nowrap;\n}\n\n.CodeMirror-guttermarker { color: black; }\n.CodeMirror-guttermarker-subtle { color: #999; }\n\n/* CURSOR */\n\n.CodeMirror-cursor {\n  border-left: 1px solid black;\n  border-right: none;\n  width: 0;\n}\n/* Shown when moving in bi-directional text */\n.CodeMirror div.CodeMirror-secondarycursor {\n  border-left: 1px solid silver;\n}\n.cm-fat-cursor .CodeMirror-cursor {\n  width: auto;\n  border: 0 !important;\n  background: #7e7;\n}\n.cm-fat-cursor div.CodeMirror-cursors {\n  z-index: 1;\n}\n.cm-fat-cursor-mark {\n  background-color: rgba(20, 255, 20, 0.5);\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n}\n.cm-animate-fat-cursor {\n  width: auto;\n  border: 0;\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n  background-color: #7e7;\n}\n@-moz-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@-webkit-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n\n/* Can style cursor different in overwrite (non-insert) mode */\n.CodeMirror-overwrite .CodeMirror-cursor {}\n\n.cm-tab { display: inline-block; text-decoration: inherit; }\n\n.CodeMirror-rulers {\n  position: absolute;\n  left: 0; right: 0; top: -50px; bottom: 0;\n  overflow: hidden;\n}\n.CodeMirror-ruler {\n  border-left: 1px solid #ccc;\n  top: 0; bottom: 0;\n  position: absolute;\n}\n\n/* DEFAULT THEME */\n\n.cm-s-default .cm-header {color: blue;}\n.cm-s-default .cm-quote {color: #090;}\n.cm-negative {color: #d44;}\n.cm-positive {color: #292;}\n.cm-header, .cm-strong {font-weight: bold;}\n.cm-em {font-style: italic;}\n.cm-link {text-decoration: underline;}\n.cm-strikethrough {text-decoration: line-through;}\n\n.cm-s-default .cm-keyword {color: #708;}\n.cm-s-default .cm-atom {color: #219;}\n.cm-s-default .cm-number {color: #164;}\n.cm-s-default .cm-def {color: #00f;}\n.cm-s-default .cm-variable,\n.cm-s-default .cm-punctuation,\n.cm-s-default .cm-property,\n.cm-s-default .cm-operator {}\n.cm-s-default .cm-variable-2 {color: #05a;}\n.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}\n.cm-s-default .cm-comment {color: #a50;}\n.cm-s-default .cm-string {color: #a11;}\n.cm-s-default .cm-string-2 {color: #f50;}\n.cm-s-default .cm-meta {color: #555;}\n.cm-s-default .cm-qualifier {color: #555;}\n.cm-s-default .cm-builtin {color: #30a;}\n.cm-s-default .cm-bracket {color: #997;}\n.cm-s-default .cm-tag {color: #170;}\n.cm-s-default .cm-attribute {color: #00c;}\n.cm-s-default .cm-hr {color: #999;}\n.cm-s-default .cm-link {color: #00c;}\n\n.cm-s-default .cm-error {color: #f00;}\n.cm-invalidchar {color: #f00;}\n\n.CodeMirror-composing { border-bottom: 2px solid; }\n\n/* Default styles for common addons */\n\ndiv.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}\ndiv.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}\n.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }\n.CodeMirror-activeline-background {background: #e8f2ff;}\n\n/* STOP */\n\n/* The rest of this file contains styles related to the mechanics of\n   the editor. You probably shouldn't touch them. */\n\n.CodeMirror {\n  position: relative;\n  overflow: hidden;\n  background: white;\n}\n\n.CodeMirror-scroll {\n  overflow: scroll !important; /* Things will break if this is overridden */\n  /* 50px is the magic margin used to hide the element's real scrollbars */\n  /* See overflow: hidden in .CodeMirror */\n  margin-bottom: -50px; margin-right: -50px;\n  padding-bottom: 50px;\n  height: 100%;\n  outline: none; /* Prevent dragging from highlighting the element */\n  position: relative;\n}\n.CodeMirror-sizer {\n  position: relative;\n  border-right: 50px solid transparent;\n}\n\n/* The fake, visible scrollbars. Used to force redraw during scrolling\n   before actual scrolling happens, thus preventing shaking and\n   flickering artifacts. */\n.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  position: absolute;\n  z-index: 6;\n  display: none;\n  outline: none;\n}\n.CodeMirror-vscrollbar {\n  right: 0; top: 0;\n  overflow-x: hidden;\n  overflow-y: scroll;\n}\n.CodeMirror-hscrollbar {\n  bottom: 0; left: 0;\n  overflow-y: hidden;\n  overflow-x: scroll;\n}\n.CodeMirror-scrollbar-filler {\n  right: 0; bottom: 0;\n}\n.CodeMirror-gutter-filler {\n  left: 0; bottom: 0;\n}\n\n.CodeMirror-gutters {\n  position: absolute; left: 0; top: 0;\n  min-height: 100%;\n  z-index: 3;\n}\n.CodeMirror-gutter {\n  white-space: normal;\n  height: 100%;\n  display: inline-block;\n  vertical-align: top;\n  margin-bottom: -50px;\n}\n.CodeMirror-gutter-wrapper {\n  position: absolute;\n  z-index: 4;\n  background: none !important;\n  border: none !important;\n}\n.CodeMirror-gutter-background {\n  position: absolute;\n  top: 0; bottom: 0;\n  z-index: 4;\n}\n.CodeMirror-gutter-elt {\n  position: absolute;\n  cursor: default;\n  z-index: 4;\n}\n.CodeMirror-gutter-wrapper ::selection { background-color: transparent }\n.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }\n\n.CodeMirror-lines {\n  cursor: text;\n  min-height: 1px; /* prevents collapsing before first draw */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  /* Reset some styles that the rest of the page might have set */\n  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;\n  border-width: 0;\n  background: transparent;\n  font-family: inherit;\n  font-size: inherit;\n  margin: 0;\n  white-space: pre;\n  word-wrap: normal;\n  line-height: inherit;\n  color: inherit;\n  z-index: 2;\n  position: relative;\n  overflow: visible;\n  -webkit-tap-highlight-color: transparent;\n  -webkit-font-variant-ligatures: contextual;\n  font-variant-ligatures: contextual;\n}\n.CodeMirror-wrap pre.CodeMirror-line,\n.CodeMirror-wrap pre.CodeMirror-line-like {\n  word-wrap: break-word;\n  white-space: pre-wrap;\n  word-break: normal;\n}\n\n.CodeMirror-linebackground {\n  position: absolute;\n  left: 0; right: 0; top: 0; bottom: 0;\n  z-index: 0;\n}\n\n.CodeMirror-linewidget {\n  position: relative;\n  z-index: 2;\n  padding: 0.1px; /* Force widget margins to stay inside of the container */\n}\n\n.CodeMirror-widget {}\n\n.CodeMirror-rtl pre { direction: rtl; }\n\n.CodeMirror-code {\n  outline: none;\n}\n\n/* Force content-box sizing for the elements where we expect it */\n.CodeMirror-scroll,\n.CodeMirror-sizer,\n.CodeMirror-gutter,\n.CodeMirror-gutters,\n.CodeMirror-linenumber {\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n}\n\n.CodeMirror-measure {\n  position: absolute;\n  width: 100%;\n  height: 0;\n  overflow: hidden;\n  visibility: hidden;\n}\n\n.CodeMirror-cursor {\n  position: absolute;\n  pointer-events: none;\n}\n.CodeMirror-measure pre { position: static; }\n\ndiv.CodeMirror-cursors {\n  visibility: hidden;\n  position: relative;\n  z-index: 3;\n}\ndiv.CodeMirror-dragcursors {\n  visibility: visible;\n}\n\n.CodeMirror-focused div.CodeMirror-cursors {\n  visibility: visible;\n}\n\n.CodeMirror-selected { background: #d9d9d9; }\n.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }\n.CodeMirror-crosshair { cursor: crosshair; }\n.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }\n.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }\n\n.cm-searching {\n  background-color: #ffa;\n  background-color: rgba(255, 255, 0, .4);\n}\n\n/* Used to force a border model for a node */\n.cm-force-border { padding-right: .1px; }\n\n@media print {\n  /* Hide the cursor when printing */\n  .CodeMirror div.CodeMirror-cursors {\n    visibility: hidden;\n  }\n}\n\n/* See issue #2901 */\n.cm-tab-wrap-hack:after { content: ''; }\n\n/* Help users use markselection to safely style text background */\nspan.CodeMirror-selectedtext { background: none; }\n\n.CodeMirror-dialog {\n  position: absolute;\n  left: 0; right: 0;\n  background: inherit;\n  z-index: 15;\n  padding: .1em .8em;\n  overflow: hidden;\n  color: inherit;\n}\n\n.CodeMirror-dialog-top {\n  border-bottom: 1px solid #eee;\n  top: 0;\n}\n\n.CodeMirror-dialog-bottom {\n  border-top: 1px solid #eee;\n  bottom: 0;\n}\n\n.CodeMirror-dialog input {\n  border: none;\n  outline: none;\n  background: transparent;\n  width: 20em;\n  color: inherit;\n  font-family: monospace;\n}\n\n.CodeMirror-dialog button {\n  font-size: 70%;\n}\n\n.CodeMirror-foldmarker {\n  color: blue;\n  text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;\n  font-family: arial;\n  line-height: .3;\n  cursor: pointer;\n}\n.CodeMirror-foldgutter {\n  width: .7em;\n}\n.CodeMirror-foldgutter-open,\n.CodeMirror-foldgutter-folded {\n  cursor: pointer;\n}\n.CodeMirror-foldgutter-open:after {\n  content: \"\\25BE\";\n}\n.CodeMirror-foldgutter-folded:after {\n  content: \"\\25B8\";\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.CodeMirror {\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  border: 0;\n  border-radius: 0;\n  height: auto;\n  /* Changed to auto to autogrow */\n}\n\n.CodeMirror pre {\n  padding: 0 var(--jp-code-padding);\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-dialog {\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* This causes https://github.com/jupyter/jupyterlab/issues/522 */\n/* May not cause it not because we changed it! */\n.CodeMirror-lines {\n  padding: var(--jp-code-padding) 0;\n}\n\n.CodeMirror-linenumber {\n  padding: 0 8px;\n}\n\n.jp-CodeMirrorEditor {\n  cursor: text;\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n\n/* When zoomed out 67% and 33% on a screen of 1440 width x 900 height */\n@media screen and (min-width: 2138px) and (max-width: 4319px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width1) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n/* When zoomed out less than 33% */\n@media screen and (min-width: 4320px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width2) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n.CodeMirror.jp-mod-readOnly .CodeMirror-cursor {\n  display: none;\n}\n\n.CodeMirror-gutters {\n  border-right: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-layout-color0);\n}\n\n.jp-CollaboratorCursor {\n  border-left: 5px solid transparent;\n  border-right: 5px solid transparent;\n  border-top: none;\n  border-bottom: 3px solid;\n  background-clip: content-box;\n  margin-left: -5px;\n  margin-right: -5px;\n}\n\n.CodeMirror-selectedtext.cm-searching {\n  background-color: var(--jp-search-selected-match-background-color) !important;\n  color: var(--jp-search-selected-match-color) !important;\n}\n\n.cm-searching {\n  background-color: var(\n    --jp-search-unselected-match-background-color\n  ) !important;\n  color: var(--jp-search-unselected-match-color) !important;\n}\n\n.CodeMirror-focused .CodeMirror-selected {\n  background-color: var(--jp-editor-selected-focused-background);\n}\n\n.CodeMirror-selected {\n  background-color: var(--jp-editor-selected-background);\n}\n\n.jp-CollaboratorCursor-hover {\n  position: absolute;\n  z-index: 1;\n  transform: translateX(-50%);\n  color: white;\n  border-radius: 3px;\n  padding-left: 4px;\n  padding-right: 4px;\n  padding-top: 1px;\n  padding-bottom: 1px;\n  text-align: center;\n  font-size: var(--jp-ui-font-size1);\n  white-space: nowrap;\n}\n\n.jp-CodeMirror-ruler {\n  border-left: 1px dashed var(--jp-border-color2);\n}\n\n/**\n * Here is our jupyter theme for CodeMirror syntax highlighting\n * This is used in our marked.js syntax highlighting and CodeMirror itself\n * The string \"jupyter\" is set in ../codemirror/widget.DEFAULT_CODEMIRROR_THEME\n * This came from the classic notebook, which came form highlight.js/GitHub\n */\n\n/**\n * CodeMirror themes are handling the background/color in this way. This works\n * fine for CodeMirror editors outside the notebook, but the notebook styles\n * these things differently.\n */\n.CodeMirror.cm-s-jupyter {\n  background: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* In the notebook, we want this styling to be handled by its container */\n.jp-CodeConsole .CodeMirror.cm-s-jupyter,\n.jp-Notebook .CodeMirror.cm-s-jupyter {\n  background: transparent;\n}\n\n.cm-s-jupyter .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n.cm-s-jupyter span.cm-keyword {\n  color: var(--jp-mirror-editor-keyword-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-atom {\n  color: var(--jp-mirror-editor-atom-color);\n}\n.cm-s-jupyter span.cm-number {\n  color: var(--jp-mirror-editor-number-color);\n}\n.cm-s-jupyter span.cm-def {\n  color: var(--jp-mirror-editor-def-color);\n}\n.cm-s-jupyter span.cm-variable {\n  color: var(--jp-mirror-editor-variable-color);\n}\n.cm-s-jupyter span.cm-variable-2 {\n  color: var(--jp-mirror-editor-variable-2-color);\n}\n.cm-s-jupyter span.cm-variable-3 {\n  color: var(--jp-mirror-editor-variable-3-color);\n}\n.cm-s-jupyter span.cm-punctuation {\n  color: var(--jp-mirror-editor-punctuation-color);\n}\n.cm-s-jupyter span.cm-property {\n  color: var(--jp-mirror-editor-property-color);\n}\n.cm-s-jupyter span.cm-operator {\n  color: var(--jp-mirror-editor-operator-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-comment {\n  color: var(--jp-mirror-editor-comment-color);\n  font-style: italic;\n}\n.cm-s-jupyter span.cm-string {\n  color: var(--jp-mirror-editor-string-color);\n}\n.cm-s-jupyter span.cm-string-2 {\n  color: var(--jp-mirror-editor-string-2-color);\n}\n.cm-s-jupyter span.cm-meta {\n  color: var(--jp-mirror-editor-meta-color);\n}\n.cm-s-jupyter span.cm-qualifier {\n  color: var(--jp-mirror-editor-qualifier-color);\n}\n.cm-s-jupyter span.cm-builtin {\n  color: var(--jp-mirror-editor-builtin-color);\n}\n.cm-s-jupyter span.cm-bracket {\n  color: var(--jp-mirror-editor-bracket-color);\n}\n.cm-s-jupyter span.cm-tag {\n  color: var(--jp-mirror-editor-tag-color);\n}\n.cm-s-jupyter span.cm-attribute {\n  color: var(--jp-mirror-editor-attribute-color);\n}\n.cm-s-jupyter span.cm-header {\n  color: var(--jp-mirror-editor-header-color);\n}\n.cm-s-jupyter span.cm-quote {\n  color: var(--jp-mirror-editor-quote-color);\n}\n.cm-s-jupyter span.cm-link {\n  color: var(--jp-mirror-editor-link-color);\n}\n.cm-s-jupyter span.cm-error {\n  color: var(--jp-mirror-editor-error-color);\n}\n.cm-s-jupyter span.cm-hr {\n  color: #999;\n}\n\n.cm-s-jupyter span.cm-tab {\n  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);\n  background-position: right;\n  background-repeat: no-repeat;\n}\n\n.cm-s-jupyter .CodeMirror-activeline-background,\n.cm-s-jupyter .CodeMirror-gutter {\n  background-color: var(--jp-layout-color2);\n}\n\n/* Styles for shared cursors (remote cursor locations and selected ranges) */\n.jp-CodeMirrorEditor .remote-caret {\n  position: relative;\n  border-left: 2px solid black;\n  margin-left: -1px;\n  margin-right: -1px;\n  box-sizing: border-box;\n}\n\n.jp-CodeMirrorEditor .remote-caret > div {\n  white-space: nowrap;\n  position: absolute;\n  top: -1.15em;\n  padding-bottom: 0.05em;\n  left: -2px;\n  font-size: 0.95em;\n  background-color: rgb(250, 129, 0);\n  font-family: var(--jp-ui-font-family);\n  font-weight: bold;\n  line-height: normal;\n  user-select: none;\n  color: white;\n  padding-left: 2px;\n  padding-right: 2px;\n  z-index: 3;\n  transition: opacity 0.3s ease-in-out;\n}\n\n.jp-CodeMirrorEditor .remote-caret.hide-name > div {\n  transition-delay: 0.7s;\n  opacity: 0;\n}\n\n.jp-CodeMirrorEditor .remote-caret:hover > div {\n  opacity: 1;\n  transition-delay: 0s;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| RenderedText\n|----------------------------------------------------------------------------*/\n\n:root {\n  /* This is the padding value to fill the gaps between lines containing spans with background color. */\n  --jp-private-code-span-padding: calc(\n    (var(--jp-code-line-height) - 1) * var(--jp-code-font-size) / 2\n  );\n}\n\n.jp-RenderedText {\n  text-align: left;\n  padding-left: var(--jp-code-padding);\n  line-height: var(--jp-code-line-height);\n  font-family: var(--jp-code-font-family);\n}\n\n.jp-RenderedText pre,\n.jp-RenderedJavaScript pre,\n.jp-RenderedHTMLCommon pre {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-code-font-size);\n  border: none;\n  margin: 0px;\n  padding: 0px;\n}\n\n.jp-RenderedText pre a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* console foregrounds and backgrounds */\n.jp-RenderedText pre .ansi-black-fg {\n  color: #3e424d;\n}\n.jp-RenderedText pre .ansi-red-fg {\n  color: #e75c58;\n}\n.jp-RenderedText pre .ansi-green-fg {\n  color: #00a250;\n}\n.jp-RenderedText pre .ansi-yellow-fg {\n  color: #ddb62b;\n}\n.jp-RenderedText pre .ansi-blue-fg {\n  color: #208ffb;\n}\n.jp-RenderedText pre .ansi-magenta-fg {\n  color: #d160c4;\n}\n.jp-RenderedText pre .ansi-cyan-fg {\n  color: #60c6c8;\n}\n.jp-RenderedText pre .ansi-white-fg {\n  color: #c5c1b4;\n}\n\n.jp-RenderedText pre .ansi-black-bg {\n  background-color: #3e424d;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-bg {\n  background-color: #e75c58;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-bg {\n  background-color: #00a250;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-bg {\n  background-color: #ddb62b;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-bg {\n  background-color: #208ffb;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-bg {\n  background-color: #d160c4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-bg {\n  background-color: #60c6c8;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-bg {\n  background-color: #c5c1b4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-black-intense-fg {\n  color: #282c36;\n}\n.jp-RenderedText pre .ansi-red-intense-fg {\n  color: #b22b31;\n}\n.jp-RenderedText pre .ansi-green-intense-fg {\n  color: #007427;\n}\n.jp-RenderedText pre .ansi-yellow-intense-fg {\n  color: #b27d12;\n}\n.jp-RenderedText pre .ansi-blue-intense-fg {\n  color: #0065ca;\n}\n.jp-RenderedText pre .ansi-magenta-intense-fg {\n  color: #a03196;\n}\n.jp-RenderedText pre .ansi-cyan-intense-fg {\n  color: #258f8f;\n}\n.jp-RenderedText pre .ansi-white-intense-fg {\n  color: #a1a6b2;\n}\n\n.jp-RenderedText pre .ansi-black-intense-bg {\n  background-color: #282c36;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-intense-bg {\n  background-color: #b22b31;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-intense-bg {\n  background-color: #007427;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-intense-bg {\n  background-color: #b27d12;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-intense-bg {\n  background-color: #0065ca;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-intense-bg {\n  background-color: #a03196;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-intense-bg {\n  background-color: #258f8f;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-intense-bg {\n  background-color: #a1a6b2;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-default-inverse-fg {\n  color: var(--jp-ui-inverse-font-color0);\n}\n.jp-RenderedText pre .ansi-default-inverse-bg {\n  background-color: var(--jp-inverse-layout-color0);\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-bold {\n  font-weight: bold;\n}\n.jp-RenderedText pre .ansi-underline {\n  text-decoration: underline;\n}\n\n.jp-RenderedText[data-mime-type='application/vnd.jupyter.stderr'] {\n  background: var(--jp-rendermime-error-background);\n  padding-top: var(--jp-code-padding);\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedLatex\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedLatex {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n}\n\n/* Left-justify outputs.*/\n.jp-OutputArea-output.jp-RenderedLatex {\n  padding: var(--jp-code-padding);\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedHTML\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedHTMLCommon {\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-content-font-family);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n  /* Give a bit more R padding on Markdown text to keep line lengths reasonable */\n  padding-right: 20px;\n}\n\n.jp-RenderedHTMLCommon em {\n  font-style: italic;\n}\n\n.jp-RenderedHTMLCommon strong {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon u {\n  text-decoration: underline;\n}\n\n.jp-RenderedHTMLCommon a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* Headings */\n\n.jp-RenderedHTMLCommon h1,\n.jp-RenderedHTMLCommon h2,\n.jp-RenderedHTMLCommon h3,\n.jp-RenderedHTMLCommon h4,\n.jp-RenderedHTMLCommon h5,\n.jp-RenderedHTMLCommon h6 {\n  line-height: var(--jp-content-heading-line-height);\n  font-weight: var(--jp-content-heading-font-weight);\n  font-style: normal;\n  margin: var(--jp-content-heading-margin-top) 0\n    var(--jp-content-heading-margin-bottom) 0;\n}\n\n.jp-RenderedHTMLCommon h1:first-child,\n.jp-RenderedHTMLCommon h2:first-child,\n.jp-RenderedHTMLCommon h3:first-child,\n.jp-RenderedHTMLCommon h4:first-child,\n.jp-RenderedHTMLCommon h5:first-child,\n.jp-RenderedHTMLCommon h6:first-child {\n  margin-top: calc(0.5 * var(--jp-content-heading-margin-top));\n}\n\n.jp-RenderedHTMLCommon h1:last-child,\n.jp-RenderedHTMLCommon h2:last-child,\n.jp-RenderedHTMLCommon h3:last-child,\n.jp-RenderedHTMLCommon h4:last-child,\n.jp-RenderedHTMLCommon h5:last-child,\n.jp-RenderedHTMLCommon h6:last-child {\n  margin-bottom: calc(0.5 * var(--jp-content-heading-margin-bottom));\n}\n\n.jp-RenderedHTMLCommon h1 {\n  font-size: var(--jp-content-font-size5);\n}\n\n.jp-RenderedHTMLCommon h2 {\n  font-size: var(--jp-content-font-size4);\n}\n\n.jp-RenderedHTMLCommon h3 {\n  font-size: var(--jp-content-font-size3);\n}\n\n.jp-RenderedHTMLCommon h4 {\n  font-size: var(--jp-content-font-size2);\n}\n\n.jp-RenderedHTMLCommon h5 {\n  font-size: var(--jp-content-font-size1);\n}\n\n.jp-RenderedHTMLCommon h6 {\n  font-size: var(--jp-content-font-size0);\n}\n\n/* Lists */\n\n.jp-RenderedHTMLCommon ul:not(.list-inline),\n.jp-RenderedHTMLCommon ol:not(.list-inline) {\n  padding-left: 2em;\n}\n\n.jp-RenderedHTMLCommon ul {\n  list-style: disc;\n}\n\n.jp-RenderedHTMLCommon ul ul {\n  list-style: square;\n}\n\n.jp-RenderedHTMLCommon ul ul ul {\n  list-style: circle;\n}\n\n.jp-RenderedHTMLCommon ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol ol {\n  list-style: upper-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol {\n  list-style: lower-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol {\n  list-style: lower-roman;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol,\n.jp-RenderedHTMLCommon ul {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon ul ul,\n.jp-RenderedHTMLCommon ul ol,\n.jp-RenderedHTMLCommon ol ul,\n.jp-RenderedHTMLCommon ol ol {\n  margin-bottom: 0em;\n}\n\n.jp-RenderedHTMLCommon hr {\n  color: var(--jp-border-color2);\n  background-color: var(--jp-border-color1);\n  margin-top: 1em;\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon > pre {\n  margin: 1.5em 2em;\n}\n\n.jp-RenderedHTMLCommon pre,\n.jp-RenderedHTMLCommon code {\n  border: 0;\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  line-height: var(--jp-code-line-height);\n  padding: 0;\n  white-space: pre-wrap;\n}\n\n.jp-RenderedHTMLCommon :not(pre) > code {\n  background-color: var(--jp-layout-color2);\n  padding: 1px 5px;\n}\n\n/* Tables */\n\n.jp-RenderedHTMLCommon table {\n  border-collapse: collapse;\n  border-spacing: 0;\n  border: none;\n  color: var(--jp-ui-font-color1);\n  font-size: 12px;\n  table-layout: fixed;\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.jp-RenderedHTMLCommon thead {\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  vertical-align: bottom;\n}\n\n.jp-RenderedHTMLCommon td,\n.jp-RenderedHTMLCommon th,\n.jp-RenderedHTMLCommon tr {\n  vertical-align: middle;\n  padding: 0.5em 0.5em;\n  line-height: normal;\n  white-space: normal;\n  max-width: none;\n  border: none;\n}\n\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon td,\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon th {\n  max-width: none;\n}\n\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon td,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon th,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon tr {\n  text-align: right;\n}\n\n.jp-RenderedHTMLCommon th {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(odd) {\n  background: var(--jp-layout-color0);\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(even) {\n  background: var(--jp-rendermime-table-row-background);\n}\n\n.jp-RenderedHTMLCommon tbody tr:hover {\n  background: var(--jp-rendermime-table-row-hover-background);\n}\n\n.jp-RenderedHTMLCommon table {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon p {\n  text-align: left;\n  margin: 0px;\n}\n\n.jp-RenderedHTMLCommon p {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon img {\n  -moz-force-broken-image-icon: 1;\n}\n\n/* Restrict to direct children as other images could be nested in other content. */\n.jp-RenderedHTMLCommon > img {\n  display: block;\n  margin-left: 0;\n  margin-right: 0;\n  margin-bottom: 1em;\n}\n\n/* Change color behind transparent images if they need it... */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-light-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-dark-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n/* ...or leave it untouched if they don't */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-dark-background {\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-light-background {\n}\n\n.jp-RenderedHTMLCommon img,\n.jp-RenderedImage img,\n.jp-RenderedHTMLCommon svg,\n.jp-RenderedSVG svg {\n  max-width: 100%;\n  height: auto;\n}\n\n.jp-RenderedHTMLCommon img.jp-mod-unconfined,\n.jp-RenderedImage img.jp-mod-unconfined,\n.jp-RenderedHTMLCommon svg.jp-mod-unconfined,\n.jp-RenderedSVG svg.jp-mod-unconfined {\n  max-width: none;\n}\n\n.jp-RenderedHTMLCommon .alert {\n  padding: var(--jp-notebook-padding);\n  border: var(--jp-border-width) solid transparent;\n  border-radius: var(--jp-border-radius);\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon .alert-info {\n  color: var(--jp-info-color0);\n  background-color: var(--jp-info-color3);\n  border-color: var(--jp-info-color2);\n}\n.jp-RenderedHTMLCommon .alert-info hr {\n  border-color: var(--jp-info-color3);\n}\n.jp-RenderedHTMLCommon .alert-info > p:last-child,\n.jp-RenderedHTMLCommon .alert-info > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-warning {\n  color: var(--jp-warn-color0);\n  background-color: var(--jp-warn-color3);\n  border-color: var(--jp-warn-color2);\n}\n.jp-RenderedHTMLCommon .alert-warning hr {\n  border-color: var(--jp-warn-color3);\n}\n.jp-RenderedHTMLCommon .alert-warning > p:last-child,\n.jp-RenderedHTMLCommon .alert-warning > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-success {\n  color: var(--jp-success-color0);\n  background-color: var(--jp-success-color3);\n  border-color: var(--jp-success-color2);\n}\n.jp-RenderedHTMLCommon .alert-success hr {\n  border-color: var(--jp-success-color3);\n}\n.jp-RenderedHTMLCommon .alert-success > p:last-child,\n.jp-RenderedHTMLCommon .alert-success > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-danger {\n  color: var(--jp-error-color0);\n  background-color: var(--jp-error-color3);\n  border-color: var(--jp-error-color2);\n}\n.jp-RenderedHTMLCommon .alert-danger hr {\n  border-color: var(--jp-error-color3);\n}\n.jp-RenderedHTMLCommon .alert-danger > p:last-child,\n.jp-RenderedHTMLCommon .alert-danger > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon blockquote {\n  margin: 1em 2em;\n  padding: 0 1em;\n  border-left: 5px solid var(--jp-border-color2);\n}\n\na.jp-InternalAnchorLink {\n  visibility: hidden;\n  margin-left: 8px;\n  color: var(--md-blue-800);\n}\n\nh1:hover .jp-InternalAnchorLink,\nh2:hover .jp-InternalAnchorLink,\nh3:hover .jp-InternalAnchorLink,\nh4:hover .jp-InternalAnchorLink,\nh5:hover .jp-InternalAnchorLink,\nh6:hover .jp-InternalAnchorLink {\n  visibility: visible;\n}\n\n.jp-RenderedHTMLCommon kbd {\n  background-color: var(--jp-rendermime-table-row-background);\n  border: 1px solid var(--jp-border-color0);\n  border-bottom-color: var(--jp-border-color2);\n  border-radius: 3px;\n  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n  display: inline-block;\n  font-size: 0.8em;\n  line-height: 1em;\n  padding: 0.2em 0.5em;\n}\n\n/* Most direct children of .jp-RenderedHTMLCommon have a margin-bottom of 1.0.\n * At the bottom of cells this is a bit too much as there is also spacing\n * between cells. Going all the way to 0 gets too tight between markdown and\n * code cells.\n */\n.jp-RenderedHTMLCommon > *:last-child {\n  margin-bottom: 0.5em;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MimeDocument {\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-filebrowser-button-height: 28px;\n  --jp-private-filebrowser-button-width: 48px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser {\n  display: flex;\n  flex-direction: column;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  border-bottom: none;\n  height: auto;\n  margin: var(--jp-toolbar-header-margin);\n  box-shadow: none;\n}\n\n.jp-BreadCrumbs {\n  flex: 0 0 auto;\n  margin: 8px 12px 8px 12px;\n}\n\n.jp-BreadCrumbs-item {\n  margin: 0px 2px;\n  padding: 0px 2px;\n  border-radius: var(--jp-border-radius);\n  cursor: pointer;\n}\n\n.jp-BreadCrumbs-item:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-BreadCrumbs-item:first-child {\n  margin-left: 0px;\n}\n\n.jp-BreadCrumbs-item.jp-mod-dropTarget {\n  background-color: var(--jp-brand-color2);\n  opacity: 0.7;\n}\n\n/*-----------------------------------------------------------------------------\n| Buttons\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  padding: 0px;\n  margin: 8px 12px 0px 12px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  justify-content: flex-start;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-Toolbar-item {\n  flex: 0 0 auto;\n  padding-left: 0px;\n  padding-right: 2px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-ToolbarButtonComponent {\n  width: 40px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent {\n  width: 72px;\n  background: var(--jp-brand-color1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent:focus-visible {\n  background-color: var(--jp-brand-color0);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent\n  .jp-icon3 {\n  fill: white;\n}\n\n/*-----------------------------------------------------------------------------\n| Other styles\n|----------------------------------------------------------------------------*/\n\n.jp-FileDialog.jp-mod-conflict input {\n  color: var(--jp-error-color1);\n}\n\n.jp-FileDialog .jp-new-name-title {\n  margin-top: 12px;\n}\n\n.jp-LastModified-hidden {\n  display: none;\n}\n\n.jp-FileBrowser-filterBox {\n  padding: 0px;\n  flex: 0 0 auto;\n  margin: 8px 12px 0px 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| DirListing\n|----------------------------------------------------------------------------*/\n\n.jp-DirListing {\n  flex: 1 1 auto;\n  display: flex;\n  flex-direction: column;\n  outline: 0;\n}\n\n.jp-DirListing:focus-visible {\n  border: 1px solid var(--jp-brand-color1);\n}\n\n.jp-DirListing-header {\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n  border-top: var(--jp-border-width) solid var(--jp-border-color2);\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  z-index: 2;\n}\n\n.jp-DirListing-headerItem {\n  padding: 4px 12px 2px 12px;\n  font-weight: 500;\n}\n\n.jp-DirListing-headerItem:hover {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-headerItem.jp-id-name {\n  flex: 1 0 84px;\n}\n\n.jp-DirListing-headerItem.jp-id-modified {\n  flex: 0 0 112px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n}\n\n.jp-id-narrow {\n  display: none;\n  flex: 0 0 5px;\n  padding: 4px 4px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n  color: var(--jp-border-color2);\n}\n\n.jp-DirListing-narrow .jp-id-narrow {\n  display: block;\n}\n\n.jp-DirListing-narrow .jp-id-modified,\n.jp-DirListing-narrow .jp-DirListing-itemModified {\n  display: none;\n}\n\n.jp-DirListing-headerItem.jp-mod-selected {\n  font-weight: 600;\n}\n\n/* increase specificity to override bundled default */\n.jp-DirListing-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-DirListing-content mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.jp-DirListing-content .jp-DirListing-item.jp-mod-selected mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n/* Style the directory listing content when a user drops a file to upload */\n.jp-DirListing.jp-mod-native-drop .jp-DirListing-content {\n  outline: 5px dashed rgba(128, 128, 128, 0.5);\n  outline-offset: -10px;\n  cursor: copy;\n}\n\n.jp-DirListing-item {\n  display: flex;\n  flex-direction: row;\n  padding: 4px 12px;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n.jp-DirListing-item[data-is-dot] {\n  opacity: 75%;\n}\n\n.jp-DirListing-item.jp-mod-selected {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.jp-DirListing-item.jp-mod-dropTarget {\n  background: var(--jp-brand-color3);\n}\n\n.jp-DirListing-item:hover:not(.jp-mod-selected) {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-itemIcon {\n  flex: 0 0 20px;\n  margin-right: 4px;\n}\n\n.jp-DirListing-itemText {\n  flex: 1 0 64px;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  user-select: none;\n}\n\n.jp-DirListing-itemModified {\n  flex: 0 0 125px;\n  text-align: right;\n}\n\n.jp-DirListing-editor {\n  flex: 1 0 64px;\n  outline: none;\n  border: none;\n}\n\n.jp-DirListing-item.jp-mod-running .jp-DirListing-itemIcon:before {\n  color: var(--jp-success-color1);\n  content: '\\25CF';\n  font-size: 8px;\n  position: absolute;\n  left: -8px;\n}\n\n.jp-DirListing-item.jp-mod-running.jp-mod-selected\n  .jp-DirListing-itemIcon:before {\n  color: var(--jp-ui-inverse-font-color1);\n}\n\n.jp-DirListing-item.lm-mod-drag-image,\n.jp-DirListing-item.jp-mod-selected.lm-mod-drag-image {\n  font-size: var(--jp-ui-font-size1);\n  padding-left: 4px;\n  margin-left: 4px;\n  width: 160px;\n  background-color: var(--jp-ui-inverse-font-color2);\n  box-shadow: var(--jp-elevation-z2);\n  border-radius: 0px;\n  color: var(--jp-ui-font-color1);\n  transform: translateX(-40%) translateY(-58%);\n}\n\n.jp-DirListing-deadSpace {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-Document {\n  min-width: 120px;\n  min-height: 120px;\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n}\n\n/*-----------------------------------------------------------------------------\n| Main OutputArea\n| OutputArea has a list of Outputs\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea {\n  overflow-y: auto;\n}\n\n.jp-OutputArea-child {\n  display: flex;\n  flex-direction: row;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child {\n  flex-direction: column;\n}\n\n.jp-OutputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-outprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n.jp-OutputArea-output {\n  height: auto;\n  overflow: auto;\n  user-select: text;\n  -moz-user-select: text;\n  -webkit-user-select: text;\n  -ms-user-select: text;\n}\n\n.jp-OutputArea-child .jp-OutputArea-output {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  margin-left: var(--jp-notebook-padding);\n}\n\n/**\n * Isolated output.\n */\n.jp-OutputArea-output.jp-mod-isolated {\n  width: 100%;\n  display: block;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n/* pre */\n\n.jp-OutputArea-output pre {\n  border: none;\n  margin: 0px;\n  padding: 0px;\n  overflow-x: auto;\n  overflow-y: auto;\n  word-break: break-all;\n  word-wrap: break-word;\n  white-space: pre-wrap;\n}\n\n/* tables */\n\n.jp-OutputArea-output.jp-RenderedHTMLCommon table {\n  margin-left: 0;\n  margin-right: 0;\n}\n\n/* description lists */\n\n.jp-OutputArea-output dl,\n.jp-OutputArea-output dt,\n.jp-OutputArea-output dd {\n  display: block;\n}\n\n.jp-OutputArea-output dl {\n  width: 100%;\n  overflow: hidden;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dt {\n  font-weight: bold;\n  float: left;\n  width: 20%;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dd {\n  float: left;\n  width: 80%;\n  padding: 0;\n  margin: 0;\n}\n\n/* Hide the gutter in case of\n *  - nested output areas (e.g. in the case of output widgets)\n *  - mirrored output areas\n */\n.jp-OutputArea .jp-OutputArea .jp-OutputArea-prompt {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| executeResult is added to any Output-result for the display of the object\n| returned by a cell\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  margin-left: 0px;\n  flex: 1 1 auto;\n}\n\n/* Text output with the Out[] prompt needs a top padding to match the\n * alignment of the Out[] prompt itself.\n */\n.jp-OutputArea-executeResult .jp-RenderedText.jp-OutputArea-output {\n  padding-top: var(--jp-code-padding);\n  border-top: var(--jp-border-width) solid transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| The Stdin output\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-stdin {\n  line-height: var(--jp-code-line-height);\n  padding-top: var(--jp-code-padding);\n  display: flex;\n}\n\n.jp-Stdin-prompt {\n  color: var(--jp-content-font-color0);\n  padding-right: var(--jp-code-padding);\n  vertical-align: baseline;\n  flex: 0 0 auto;\n}\n\n.jp-Stdin-input {\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  color: inherit;\n  background-color: inherit;\n  width: 42%;\n  min-width: 200px;\n  /* make sure input baseline aligns with prompt */\n  vertical-align: baseline;\n  /* padding + margin = 0.5em between prompt and cursor */\n  padding: 0em 0.25em;\n  margin: 0em 0.25em;\n  flex: 0 0 70%;\n}\n\n.jp-Stdin-input:focus {\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Output Area View\n|----------------------------------------------------------------------------*/\n\n.jp-LinkedOutputView .jp-OutputArea {\n  height: 100%;\n  display: block;\n}\n\n.jp-LinkedOutputView .jp-OutputArea-output:only-child {\n  height: 100%;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapser {\n  flex: 0 0 var(--jp-cell-collapser-width);\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n  border-radius: var(--jp-border-radius);\n  opacity: 1;\n}\n\n.jp-Collapser-child {\n  display: block;\n  width: 100%;\n  box-sizing: border-box;\n  /* height: 100% doesn't work because the height of its parent is computed from content */\n  position: absolute;\n  top: 0px;\n  bottom: 0px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Header/Footer\n|----------------------------------------------------------------------------*/\n\n/* Hidden by zero height by default */\n.jp-CellHeader,\n.jp-CellFooter {\n  height: 0px;\n  width: 100%;\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Input\n|----------------------------------------------------------------------------*/\n\n/* All input areas */\n.jp-InputArea {\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n}\n\nbody[data-format='mobile'] .jp-InputArea {\n  flex-direction: column;\n}\n\n.jp-InputArea-editor {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  /* This is the non-active, default styling */\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  border-radius: 0px;\n  background: var(--jp-cell-editor-background);\n}\n\nbody[data-format='mobile'] .jp-InputArea-editor {\n  margin-left: var(--jp-notebook-padding);\n}\n\n.jp-InputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-inprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  opacity: var(--jp-cell-prompt-opacity);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-InputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Placeholder {\n  display: flex;\n  flex-direction: row;\n  flex: 1 1 auto;\n}\n\n.jp-Placeholder-prompt {\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content {\n  flex: 1 1 auto;\n  border: none;\n  background: transparent;\n  height: 20px;\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon {\n  width: 32px;\n  height: 16px;\n  border: 1px solid transparent;\n  border-radius: var(--jp-border-radius);\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon:hover {\n  border: 1px solid var(--jp-border-color1);\n  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);\n  background-color: var(--jp-layout-color0);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-cell-scrolling-output-offset: 5px;\n}\n\n/*-----------------------------------------------------------------------------\n| Cell\n|----------------------------------------------------------------------------*/\n\n.jp-Cell {\n  padding: var(--jp-cell-padding);\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Common input/output\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-inputWrapper,\n.jp-Cell-outputWrapper {\n  display: flex;\n  flex-direction: row;\n  padding: 0px;\n  margin: 0px;\n  /* Added to reveal the box-shadow on the input and output collapsers. */\n  overflow: visible;\n}\n\n/* Only input/output areas inside cells */\n.jp-Cell-inputArea,\n.jp-Cell-outputArea {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Collapser\n|----------------------------------------------------------------------------*/\n\n/* Make the output collapser disappear when there is not output, but do so\n * in a manner that leaves it in the layout and preserves its width.\n */\n.jp-Cell.jp-mod-noOutputs .jp-Cell-outputCollapser {\n  border: none !important;\n  background: transparent !important;\n}\n\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputCollapser {\n  min-height: var(--jp-cell-collapser-min-height);\n}\n\n/*-----------------------------------------------------------------------------\n| Output\n|----------------------------------------------------------------------------*/\n\n/* Put a space between input and output when there IS output */\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputWrapper {\n  margin-top: 5px;\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-Cell-outputArea {\n  overflow-y: auto;\n  max-height: 200px;\n  box-shadow: inset 0 0 6px 2px rgba(0, 0, 0, 0.3);\n  margin-left: var(--jp-private-cell-scrolling-output-offset);\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  flex: 0 0\n    calc(\n      var(--jp-cell-prompt-width) -\n        var(--jp-private-cell-scrolling-output-offset)\n    );\n}\n\n/*-----------------------------------------------------------------------------\n| CodeCell\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| MarkdownCell\n|----------------------------------------------------------------------------*/\n\n.jp-MarkdownOutput {\n  flex: 1 1 auto;\n  margin-top: 0;\n  margin-bottom: 0;\n  padding-left: var(--jp-code-padding);\n}\n\n.jp-MarkdownOutput.jp-RenderedHTMLCommon {\n  overflow: auto;\n}\n\n.jp-showHiddenCellsButton {\n  margin-left: calc(var(--jp-cell-prompt-width) + 2 * var(--jp-code-padding));\n  margin-top: var(--jp-code-padding);\n  border: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-border-color3) !important;\n  color: var(--jp-content-font-color0) !important;\n}\n\n.jp-showHiddenCellsButton:hover {\n  background-color: var(--jp-border-color2) !important;\n}\n\n.jp-collapseHeadingButton {\n  display: none;\n}\n\n.jp-MarkdownCell:hover .jp-collapseHeadingButton {\n  display: flex;\n  min-height: var(--jp-cell-collapser-min-height);\n  position: absolute;\n  right: 0;\n  top: 0;\n  bottom: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n\n/*-----------------------------------------------------------------------------\n| Styles\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel-toolbar {\n  padding: 2px;\n}\n\n.jp-Toolbar-item.jp-Notebook-toolbarCellType .jp-select-wrapper.jp-mod-focused {\n  border: none;\n  box-shadow: none;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown select {\n  height: 24px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: 14px;\n  border-radius: 0;\n  display: block;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown span {\n  top: 5px !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-notebook-dragImage-width: 304px;\n  --jp-private-notebook-dragImage-height: 36px;\n  --jp-private-notebook-selected-color: var(--md-blue-400);\n  --jp-private-notebook-active-color: var(--md-green-400);\n}\n\n/*-----------------------------------------------------------------------------\n| Imports\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Notebook\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel {\n  display: block;\n  height: 100%;\n}\n\n.jp-NotebookPanel.jp-Document {\n  min-width: 240px;\n  min-height: 120px;\n}\n\n.jp-Notebook {\n  padding: var(--jp-notebook-padding);\n  outline: none;\n  overflow: auto;\n  background: var(--jp-layout-color0);\n}\n\n.jp-Notebook.jp-mod-scrollPastEnd::after {\n  display: block;\n  content: '';\n  min-height: var(--jp-notebook-scroll-padding);\n}\n\n.jp-MainAreaWidget-ContainStrict .jp-Notebook * {\n  contain: strict;\n}\n\n.jp-Notebook-render * {\n  contain: none !important;\n}\n\n.jp-Notebook .jp-Cell {\n  overflow: visible;\n}\n\n.jp-Notebook .jp-Cell .jp-InputPrompt {\n  cursor: move;\n  float: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook state related styling\n|\n| The notebook and cells each have states, here are the possibilities:\n|\n| - Notebook\n|   - Command\n|   - Edit\n| - Cell\n|   - None\n|   - Active (only one can be active)\n|   - Selected (the cells actions are applied to)\n|   - Multiselected (when multiple selected, the cursor)\n|   - No outputs\n|----------------------------------------------------------------------------*/\n\n/* Command or edit modes */\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-InputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-OutputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n/* cell is active */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser {\n  background: var(--jp-brand-color1);\n}\n\n/* cell is dirty */\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt {\n  color: var(--jp-warn-color1);\n}\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt:before {\n  color: var(--jp-warn-color1);\n  content: '•';\n}\n\n.jp-Notebook .jp-Cell.jp-mod-active.jp-mod-dirty .jp-Collapser {\n  background: var(--jp-warn-color1);\n}\n\n/* collapser is hovered */\n.jp-Notebook .jp-Cell .jp-Collapser:hover {\n  box-shadow: var(--jp-elevation-z2);\n  background: var(--jp-brand-color1);\n  opacity: var(--jp-cell-collapser-not-active-hover-opacity);\n}\n\n/* cell is active and collapser is hovered */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser:hover {\n  background: var(--jp-brand-color0);\n  opacity: 1;\n}\n\n/* Command mode */\n\n.jp-Notebook.jp-mod-commandMode .jp-Cell.jp-mod-selected {\n  background: var(--jp-notebook-multiselected-color);\n}\n\n.jp-Notebook.jp-mod-commandMode\n  .jp-Cell.jp-mod-active.jp-mod-selected:not(.jp-mod-multiSelected) {\n  background: transparent;\n}\n\n/* Edit mode */\n\n.jp-Notebook.jp-mod-editMode .jp-Cell.jp-mod-active .jp-InputArea-editor {\n  border: var(--jp-border-width) solid var(--jp-cell-editor-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-cell-editor-active-background);\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook drag and drop\n|----------------------------------------------------------------------------*/\n\n.jp-Notebook-cell.jp-mod-dropSource {\n  opacity: 0.5;\n}\n\n.jp-Notebook-cell.jp-mod-dropTarget,\n.jp-Notebook.jp-mod-commandMode\n  .jp-Notebook-cell.jp-mod-active.jp-mod-selected.jp-mod-dropTarget {\n  border-top-color: var(--jp-private-notebook-selected-color);\n  border-top-style: solid;\n  border-top-width: 2px;\n}\n\n.jp-dragImage {\n  display: block;\n  flex-direction: row;\n  width: var(--jp-private-notebook-dragImage-width);\n  height: var(--jp-private-notebook-dragImage-height);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background);\n  overflow: visible;\n}\n\n.jp-dragImage-singlePrompt {\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n.jp-dragImage .jp-dragImage-content {\n  flex: 1 1 auto;\n  z-index: 2;\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  line-height: var(--jp-code-line-height);\n  padding: var(--jp-code-padding);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background-color);\n  color: var(--jp-content-font-color3);\n  text-align: left;\n  margin: 4px 4px 4px 0px;\n}\n\n.jp-dragImage .jp-dragImage-prompt {\n  flex: 0 0 auto;\n  min-width: 36px;\n  color: var(--jp-cell-inprompt-font-color);\n  padding: var(--jp-code-padding);\n  padding-left: 12px;\n  font-family: var(--jp-cell-prompt-font-family);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: 1.9;\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n}\n\n.jp-dragImage-multipleBack {\n  z-index: -1;\n  position: absolute;\n  height: 32px;\n  width: 300px;\n  top: 8px;\n  left: 8px;\n  background: var(--jp-layout-color2);\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n/*-----------------------------------------------------------------------------\n| Cell toolbar\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookTools {\n  display: block;\n  min-width: var(--jp-sidebar-min-width);\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n    * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  overflow: auto;\n}\n\n.jp-NotebookTools-tool {\n  padding: 0px 12px 0 12px;\n}\n\n.jp-ActiveCellTool {\n  padding: 12px;\n  background-color: var(--jp-layout-color1);\n  border-top: none !important;\n}\n\n.jp-ActiveCellTool .jp-InputArea-prompt {\n  flex: 0 0 auto;\n  padding-left: 0px;\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor {\n  flex: 1 1 auto;\n  background: var(--jp-cell-editor-background);\n  border-color: var(--jp-cell-editor-border-color);\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor .CodeMirror {\n  background: transparent;\n}\n\n.jp-MetadataEditorTool {\n  flex-direction: column;\n  padding: 12px 0px 12px 0px;\n}\n\n.jp-RankedPanel > :not(:first-child) {\n  margin-top: 12px;\n}\n\n.jp-KeySelector select.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n}\n\n.jp-KeySelector label,\n.jp-MetadataEditorTool label {\n  line-height: 1.4;\n}\n\n.jp-NotebookTools .jp-select-wrapper {\n  margin-top: 4px;\n  margin-bottom: 0px;\n}\n\n.jp-NotebookTools .jp-Collapse {\n  margin-top: 16px;\n}\n\n/*-----------------------------------------------------------------------------\n| Presentation Mode (.jp-mod-presentationMode)\n|----------------------------------------------------------------------------*/\n\n.jp-mod-presentationMode .jp-Notebook {\n  --jp-content-font-size1: var(--jp-content-presentation-font-size1);\n  --jp-code-font-size: var(--jp-code-presentation-font-size);\n}\n\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-InputPrompt,\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-OutputPrompt {\n  flex: 0 0 110px;\n}\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-Placeholder {\n  padding-left: 55px;\n}\n\n.jp-Cell-Placeholder-wrapper {\n  background: #fff;\n  border: 1px solid;\n  border-color: #e5e6e9 #dfe0e4 #d0d1d5;\n  border-radius: 4px;\n  -webkit-border-radius: 4px;\n  margin: 10px 15px;\n}\n\n.jp-Cell-Placeholder-wrapper-inner {\n  padding: 15px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body {\n  background-repeat: repeat;\n  background-size: 50% auto;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  background: #f6f7f8;\n  background-image: -webkit-linear-gradient(\n    left,\n    #f6f7f8 0%,\n    #edeef1 20%,\n    #f6f7f8 40%,\n    #f6f7f8 100%\n  );\n  background-repeat: no-repeat;\n  background-size: 800px 104px;\n  height: 104px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  position: absolute;\n  right: 15px;\n  left: 15px;\n  top: 15px;\n}\n\ndiv.jp-Cell-Placeholder-h1 {\n  top: 20px;\n  height: 20px;\n  left: 15px;\n  width: 150px;\n}\n\ndiv.jp-Cell-Placeholder-h2 {\n  left: 15px;\n  top: 50px;\n  height: 10px;\n  width: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-1,\ndiv.jp-Cell-Placeholder-content-2,\ndiv.jp-Cell-Placeholder-content-3 {\n  left: 15px;\n  right: 15px;\n  height: 10px;\n}\n\ndiv.jp-Cell-Placeholder-content-1 {\n  top: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-2 {\n  top: 120px;\n}\n\ndiv.jp-Cell-Placeholder-content-3 {\n  top: 140px;\n}\n\n</style>\n\n    <style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\nThe following CSS variables define the main, public API for styling JupyterLab.\nThese variables should be used by all plugins wherever possible. In other\nwords, plugins should not define custom colors, sizes, etc unless absolutely\nnecessary. This enables users to change the visual theme of JupyterLab\nby changing these variables.\n\nMany variables appear in an ordered sequence (0,1,2,3). These sequences\nare designed to work well together, so for example, `--jp-border-color1` should\nbe used with `--jp-layout-color1`. The numbers have the following meanings:\n\n* 0: super-primary, reserved for special emphasis\n* 1: primary, most important under normal situations\n* 2: secondary, next most important under normal situations\n* 3: tertiary, next most important under normal situations\n\nThroughout JupyterLab, we are mostly following principles from Google's\nMaterial Design when selecting colors. We are not, however, following\nall of MD as it is not optimized for dense, information rich UIs.\n*/\n\n:root {\n  /* Elevation\n   *\n   * We style box-shadows using Material Design's idea of elevation. These particular numbers are taken from here:\n   *\n   * https://github.com/material-components/material-components-web\n   * https://material-components-web.appspot.com/elevation.html\n   */\n\n  --jp-shadow-base-lightness: 0;\n  --jp-shadow-umbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.2\n  );\n  --jp-shadow-penumbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.14\n  );\n  --jp-shadow-ambient-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.12\n  );\n  --jp-elevation-z0: none;\n  --jp-elevation-z1: 0px 2px 1px -1px var(--jp-shadow-umbra-color),\n    0px 1px 1px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 3px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z2: 0px 3px 1px -2px var(--jp-shadow-umbra-color),\n    0px 2px 2px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 5px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z4: 0px 2px 4px -1px var(--jp-shadow-umbra-color),\n    0px 4px 5px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 10px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z6: 0px 3px 5px -1px var(--jp-shadow-umbra-color),\n    0px 6px 10px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 18px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z8: 0px 5px 5px -3px var(--jp-shadow-umbra-color),\n    0px 8px 10px 1px var(--jp-shadow-penumbra-color),\n    0px 3px 14px 2px var(--jp-shadow-ambient-color);\n  --jp-elevation-z12: 0px 7px 8px -4px var(--jp-shadow-umbra-color),\n    0px 12px 17px 2px var(--jp-shadow-penumbra-color),\n    0px 5px 22px 4px var(--jp-shadow-ambient-color);\n  --jp-elevation-z16: 0px 8px 10px -5px var(--jp-shadow-umbra-color),\n    0px 16px 24px 2px var(--jp-shadow-penumbra-color),\n    0px 6px 30px 5px var(--jp-shadow-ambient-color);\n  --jp-elevation-z20: 0px 10px 13px -6px var(--jp-shadow-umbra-color),\n    0px 20px 31px 3px var(--jp-shadow-penumbra-color),\n    0px 8px 38px 7px var(--jp-shadow-ambient-color);\n  --jp-elevation-z24: 0px 11px 15px -7px var(--jp-shadow-umbra-color),\n    0px 24px 38px 3px var(--jp-shadow-penumbra-color),\n    0px 9px 46px 8px var(--jp-shadow-ambient-color);\n\n  /* Borders\n   *\n   * The following variables, specify the visual styling of borders in JupyterLab.\n   */\n\n  --jp-border-width: 1px;\n  --jp-border-color0: var(--md-grey-400);\n  --jp-border-color1: var(--md-grey-400);\n  --jp-border-color2: var(--md-grey-300);\n  --jp-border-color3: var(--md-grey-200);\n  --jp-border-radius: 2px;\n\n  /* UI Fonts\n   *\n   * The UI font CSS variables are used for the typography all of the JupyterLab\n   * user interface elements that are not directly user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-ui-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-ui-font-scale-factor: 1.2;\n  --jp-ui-font-size0: 0.83333em;\n  --jp-ui-font-size1: 13px; /* Base font size */\n  --jp-ui-font-size2: 1.2em;\n  --jp-ui-font-size3: 1.44em;\n\n  --jp-ui-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica,\n    Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';\n\n  /*\n   * Use these font colors against the corresponding main layout colors.\n   * In a light theme, these go from dark to light.\n   */\n\n  /* Defaults use Material Design specification */\n  --jp-ui-font-color0: rgba(0, 0, 0, 1);\n  --jp-ui-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-ui-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-ui-font-color3: rgba(0, 0, 0, 0.38);\n\n  /*\n   * Use these against the brand/accent/warn/error colors.\n   * These will typically go from light to darker, in both a dark and light theme.\n   */\n\n  --jp-ui-inverse-font-color0: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color1: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color2: rgba(255, 255, 255, 0.7);\n  --jp-ui-inverse-font-color3: rgba(255, 255, 255, 0.5);\n\n  /* Content Fonts\n   *\n   * Content font variables are used for typography of user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-content-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-content-line-height: 1.6;\n  --jp-content-font-scale-factor: 1.2;\n  --jp-content-font-size0: 0.83333em;\n  --jp-content-font-size1: 14px; /* Base font size */\n  --jp-content-font-size2: 1.2em;\n  --jp-content-font-size3: 1.44em;\n  --jp-content-font-size4: 1.728em;\n  --jp-content-font-size5: 2.0736em;\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-content-presentation-font-size1: 17px;\n\n  --jp-content-heading-line-height: 1;\n  --jp-content-heading-margin-top: 1.2em;\n  --jp-content-heading-margin-bottom: 0.8em;\n  --jp-content-heading-font-weight: 500;\n\n  /* Defaults use Material Design specification */\n  --jp-content-font-color0: rgba(0, 0, 0, 1);\n  --jp-content-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-content-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-content-font-color3: rgba(0, 0, 0, 0.38);\n\n  --jp-content-link-color: var(--md-blue-700);\n\n  --jp-content-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',\n    Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',\n    'Segoe UI Symbol';\n\n  /*\n   * Code Fonts\n   *\n   * Code font variables are used for typography of code and other monospaces content.\n   */\n\n  --jp-code-font-size: 13px;\n  --jp-code-line-height: 1.3077; /* 17px for 13px base */\n  --jp-code-padding: 5px; /* 5px for 13px base, codemirror highlighting needs integer px value */\n  --jp-code-font-family-default: Menlo, Consolas, 'DejaVu Sans Mono', monospace;\n  --jp-code-font-family: var(--jp-code-font-family-default);\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-code-presentation-font-size: 16px;\n\n  /* may need to tweak cursor width if you change font size */\n  --jp-code-cursor-width0: 1.4px;\n  --jp-code-cursor-width1: 2px;\n  --jp-code-cursor-width2: 4px;\n\n  /* Layout\n   *\n   * The following are the main layout colors use in JupyterLab. In a light\n   * theme these would go from light to dark.\n   */\n\n  --jp-layout-color0: white;\n  --jp-layout-color1: white;\n  --jp-layout-color2: var(--md-grey-200);\n  --jp-layout-color3: var(--md-grey-400);\n  --jp-layout-color4: var(--md-grey-600);\n\n  /* Inverse Layout\n   *\n   * The following are the inverse layout colors use in JupyterLab. In a light\n   * theme these would go from dark to light.\n   */\n\n  --jp-inverse-layout-color0: #111111;\n  --jp-inverse-layout-color1: var(--md-grey-900);\n  --jp-inverse-layout-color2: var(--md-grey-800);\n  --jp-inverse-layout-color3: var(--md-grey-700);\n  --jp-inverse-layout-color4: var(--md-grey-600);\n\n  /* Brand/accent */\n\n  --jp-brand-color0: var(--md-blue-900);\n  --jp-brand-color1: var(--md-blue-700);\n  --jp-brand-color2: var(--md-blue-300);\n  --jp-brand-color3: var(--md-blue-100);\n  --jp-brand-color4: var(--md-blue-50);\n\n  --jp-accent-color0: var(--md-green-900);\n  --jp-accent-color1: var(--md-green-700);\n  --jp-accent-color2: var(--md-green-300);\n  --jp-accent-color3: var(--md-green-100);\n\n  /* State colors (warn, error, success, info) */\n\n  --jp-warn-color0: var(--md-orange-900);\n  --jp-warn-color1: var(--md-orange-700);\n  --jp-warn-color2: var(--md-orange-300);\n  --jp-warn-color3: var(--md-orange-100);\n\n  --jp-error-color0: var(--md-red-900);\n  --jp-error-color1: var(--md-red-700);\n  --jp-error-color2: var(--md-red-300);\n  --jp-error-color3: var(--md-red-100);\n\n  --jp-success-color0: var(--md-green-900);\n  --jp-success-color1: var(--md-green-700);\n  --jp-success-color2: var(--md-green-300);\n  --jp-success-color3: var(--md-green-100);\n\n  --jp-info-color0: var(--md-cyan-900);\n  --jp-info-color1: var(--md-cyan-700);\n  --jp-info-color2: var(--md-cyan-300);\n  --jp-info-color3: var(--md-cyan-100);\n\n  /* Cell specific styles */\n\n  --jp-cell-padding: 5px;\n\n  --jp-cell-collapser-width: 8px;\n  --jp-cell-collapser-min-height: 20px;\n  --jp-cell-collapser-not-active-hover-opacity: 0.6;\n\n  --jp-cell-editor-background: var(--md-grey-100);\n  --jp-cell-editor-border-color: var(--md-grey-300);\n  --jp-cell-editor-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-cell-editor-active-background: var(--jp-layout-color0);\n  --jp-cell-editor-active-border-color: var(--jp-brand-color1);\n\n  --jp-cell-prompt-width: 64px;\n  --jp-cell-prompt-font-family: var(--jp-code-font-family-default);\n  --jp-cell-prompt-letter-spacing: 0px;\n  --jp-cell-prompt-opacity: 1;\n  --jp-cell-prompt-not-active-opacity: 0.5;\n  --jp-cell-prompt-not-active-font-color: var(--md-grey-700);\n  /* A custom blend of MD grey and blue 600\n   * See https://meyerweb.com/eric/tools/color-blend/#546E7A:1E88E5:5:hex */\n  --jp-cell-inprompt-font-color: #307fc1;\n  /* A custom blend of MD grey and orange 600\n   * https://meyerweb.com/eric/tools/color-blend/#546E7A:F4511E:5:hex */\n  --jp-cell-outprompt-font-color: #bf5b3d;\n\n  /* Notebook specific styles */\n\n  --jp-notebook-padding: 10px;\n  --jp-notebook-select-background: var(--jp-layout-color1);\n  --jp-notebook-multiselected-color: var(--md-blue-50);\n\n  /* The scroll padding is calculated to fill enough space at the bottom of the\n  notebook to show one single-line cell (with appropriate padding) at the top\n  when the notebook is scrolled all the way to the bottom. We also subtract one\n  pixel so that no scrollbar appears if we have just one single-line cell in the\n  notebook. This padding is to enable a 'scroll past end' feature in a notebook.\n  */\n  --jp-notebook-scroll-padding: calc(\n    100% - var(--jp-code-font-size) * var(--jp-code-line-height) -\n      var(--jp-code-padding) - var(--jp-cell-padding) - 1px\n  );\n\n  /* Rendermime styles */\n\n  --jp-rendermime-error-background: #fdd;\n  --jp-rendermime-table-row-background: var(--md-grey-100);\n  --jp-rendermime-table-row-hover-background: var(--md-light-blue-50);\n\n  /* Dialog specific styles */\n\n  --jp-dialog-background: rgba(0, 0, 0, 0.25);\n\n  /* Console specific styles */\n\n  --jp-console-padding: 10px;\n\n  /* Toolbar specific styles */\n\n  --jp-toolbar-border-color: var(--jp-border-color1);\n  --jp-toolbar-micro-height: 8px;\n  --jp-toolbar-background: var(--jp-layout-color1);\n  --jp-toolbar-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.24);\n  --jp-toolbar-header-margin: 4px 4px 0px 4px;\n  --jp-toolbar-active-background: var(--md-grey-300);\n\n  /* Statusbar specific styles */\n\n  --jp-statusbar-height: 24px;\n\n  /* Input field styles */\n\n  --jp-input-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-input-active-background: var(--jp-layout-color1);\n  --jp-input-hover-background: var(--jp-layout-color1);\n  --jp-input-background: var(--md-grey-100);\n  --jp-input-border-color: var(--jp-border-color1);\n  --jp-input-active-border-color: var(--jp-brand-color1);\n  --jp-input-active-box-shadow-color: rgba(19, 124, 189, 0.3);\n\n  /* General editor styles */\n\n  --jp-editor-selected-background: #d9d9d9;\n  --jp-editor-selected-focused-background: #d7d4f0;\n  --jp-editor-cursor-color: var(--jp-ui-font-color0);\n\n  /* Code mirror specific styles */\n\n  --jp-mirror-editor-keyword-color: #008000;\n  --jp-mirror-editor-atom-color: #88f;\n  --jp-mirror-editor-number-color: #080;\n  --jp-mirror-editor-def-color: #00f;\n  --jp-mirror-editor-variable-color: var(--md-grey-900);\n  --jp-mirror-editor-variable-2-color: #05a;\n  --jp-mirror-editor-variable-3-color: #085;\n  --jp-mirror-editor-punctuation-color: #05a;\n  --jp-mirror-editor-property-color: #05a;\n  --jp-mirror-editor-operator-color: #aa22ff;\n  --jp-mirror-editor-comment-color: #408080;\n  --jp-mirror-editor-string-color: #ba2121;\n  --jp-mirror-editor-string-2-color: #708;\n  --jp-mirror-editor-meta-color: #aa22ff;\n  --jp-mirror-editor-qualifier-color: #555;\n  --jp-mirror-editor-builtin-color: #008000;\n  --jp-mirror-editor-bracket-color: #997;\n  --jp-mirror-editor-tag-color: #170;\n  --jp-mirror-editor-attribute-color: #00c;\n  --jp-mirror-editor-header-color: blue;\n  --jp-mirror-editor-quote-color: #090;\n  --jp-mirror-editor-link-color: #00c;\n  --jp-mirror-editor-error-color: #f00;\n  --jp-mirror-editor-hr-color: #999;\n\n  /* Vega extension styles */\n\n  --jp-vega-background: white;\n\n  /* Sidebar-related styles */\n\n  --jp-sidebar-min-width: 250px;\n\n  /* Search-related styles */\n\n  --jp-search-toggle-off-opacity: 0.5;\n  --jp-search-toggle-hover-opacity: 0.8;\n  --jp-search-toggle-on-opacity: 1;\n  --jp-search-selected-match-background-color: rgb(245, 200, 0);\n  --jp-search-selected-match-color: black;\n  --jp-search-unselected-match-background-color: var(\n    --jp-inverse-layout-color0\n  );\n  --jp-search-unselected-match-color: var(--jp-ui-inverse-font-color0);\n\n  /* Icon colors that work well with light or dark backgrounds */\n  --jp-icon-contrast-color0: var(--md-purple-600);\n  --jp-icon-contrast-color1: var(--md-green-600);\n  --jp-icon-contrast-color2: var(--md-pink-600);\n  --jp-icon-contrast-color3: var(--md-blue-600);\n}\n</style>\n\n<style type=\"text/css\">\n/* Force rendering true colors when outputing to pdf */\n* {\n  -webkit-print-color-adjust: exact;\n}\n\n/* Misc */\na.anchor-link {\n  display: none;\n}\n\n.highlight  {\n  margin: 0.4em;\n}\n\n/* Input area styling */\n.jp-InputArea {\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  overflow: hidden;\n}\n\n.CodeMirror pre {\n  margin: 0;\n  padding: 0;\n}\n\n/* Using table instead of flexbox so that we can use break-inside property */\n/* CSS rules under this comment should not be required anymore after we move to the JupyterLab 4.0 CSS */\n\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  min-width: calc(\n    var(--jp-cell-prompt-width) - var(--jp-private-cell-scrolling-output-offset)\n  );\n}\n\n.jp-OutputArea-child {\n  display: table;\n  width: 100%;\n}\n\n.jp-OutputPrompt {\n  display: table-cell;\n  vertical-align: top;\n  min-width: var(--jp-cell-prompt-width);\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  display: table-row;\n}\n\n.jp-OutputArea-output {\n  display: table-cell;\n  width: 100%;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  display: table-row;\n}\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  width: 100%;\n}\n\n/* Hiding the collapser by default */\n.jp-Collapser {\n  display: none;\n}\n\n@media print {\n  .jp-Cell-inputWrapper,\n  .jp-Cell-outputWrapper {\n    display: block;\n  }\n\n  .jp-OutputArea-child {\n    break-inside: avoid-page;\n  }\n}\n</style>\n\n<!-- Load mathjax -->\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/latest.js?config=TeX-AMS_CHTML-full,Safe\"> </script>\n    <!-- MathJax configuration -->\n    <script type=\"text/x-mathjax-config\">\n    init_mathjax = function() {\n        if (window.MathJax) {\n        // MathJax loaded\n            MathJax.Hub.Config({\n                TeX: {\n                    equationNumbers: {\n                    autoNumber: \"AMS\",\n                    useLabelIds: true\n                    }\n                },\n                tex2jax: {\n                    inlineMath: [ ['$','$'], [\"\\\\(\",\"\\\\)\"] ],\n                    displayMath: [ ['$$','$$'], [\"\\\\[\",\"\\\\]\"] ],\n                    processEscapes: true,\n                    processEnvironments: true\n                },\n                displayAlign: 'center',\n                CommonHTML: {\n                    linebreaks: {\n                    automatic: true\n                    }\n                }\n            });\n\n            MathJax.Hub.Queue([\"Typeset\", MathJax.Hub]);\n        }\n    }\n    init_mathjax();\n    </script>\n    <!-- End of mathjax configuration --></head>\n<body class=\"jp-Notebook\" data-jp-theme-light=\"true\" data-jp-theme-name=\"JupyterLab Light\">\n<div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[1]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">TupleSections</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">BlockArguments</span><span class=\"w\"> </span>\n\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Class</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Sampler.Strict</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Weighted</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Enumerator</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Arrow</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Bifunctor</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">bimap</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Numeric.Log</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Data.Text</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">T</span><span class=\"w\"></span>\n\n\n<span class=\"kt\">:</span><span class=\"n\">l</span><span class=\"w\"> </span><span class=\"o\">../</span><span class=\"n\">plotting</span><span class=\"o\">.</span><span class=\"n\">hs</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Bayesian-Models\">Bayesian Models<a class=\"anchor-link\" href=\"#Bayesian-Models\">&#182;</a></h1><p>Monad-Bayes exports a <code>Bayesian</code> datatype to make using Bayesian models easier. The idea is that you specify your model as a prior, generative model and a likelihood.</p>\n\n<pre><code>data Bayesian m z o = Bayesian\n  { prior :: m z,                      -- prior over latent variable Z; p(z)\n    generative :: z -&gt; m o,            -- distribution over observations given Z=z\n    likelihood :: z -&gt; o -&gt; Log Double -- p(o|z)\n  }</code></pre>\n<p>Likelihood is the PDF of the generative model and is a function from the problem domain to positive real numbers. Generative model allows for drawing samples from the distribution.\nLikelihood and generative model are separated because you can't always get the density from a distribution definition.</p>\n<p>Once you've defined Bayesian model, a number of standard operations, like obtaining the posterior or the posterior predictive, are automated for you.</p>\n<p>Here's a simple example:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[2]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">Bayesian</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"kt\">Bool</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"w\"></span>\n<span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">Bayesian</span><span class=\"w\"> </span><span class=\"p\">{</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">prior</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">bernoulli</span><span class=\"w\"> </span><span class=\"mf\">0.5</span><span class=\"p\">,</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">generative</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"nf\">\\</span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kr\">if</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"kr\">then</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"w\"> </span><span class=\"kr\">else</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">-</span><span class=\"mi\">2</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">,</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">likelihood</span><span class=\"w\">  </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"nf\">\\</span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">normalPdf</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kr\">if</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"kr\">then</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"w\"> </span><span class=\"kr\">else</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">-</span><span class=\"mi\">2</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"p\">}</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h2 id=\"Prior\">Prior<a class=\"anchor-link\" href=\"#Prior\">&#182;</a></h2>\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[3]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">sampler</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"n\">plot</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">first</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">show</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">toEmpirical</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">100000</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">prior</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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4MCB+OdXXnnledf94mGQED2MJz0mm4AqePVxMUSVFHUeCKj6SJkhNjY2WkVFhVVWVsb8ysvLraOjI35qNLreeeed+OevvfZa/PXQ0FD88yghnmtdVDM8PDznPJYvX24///nPPZwRPUIAAhCAQBoR+M3f/E276aab5nSUMRv9wS/JV3NzsxUWFlpNTU185+LiYuvv77fc3Nz46/fff98+/vGP2w9+8IP4629+85vxzy+//PLzrktym9wuyQTUxJ7kh+V2EHBBAH2k/zEtiCH29fVZb2+vdXZ22sTERJwQx8bGbGpqyrKysmzp0qXxi2z2799va9eutQcffNA2bNhgK1asOOu69MdIhxEBBM8cQODcBNBH+k/HghjizMyM1dfX2+TkZGyIra2tVlZWZg0NDVZaWmp1dXXx05+f/exn7aqrrrIPfehD9vTTT8evOD3buvTHSIcYIjMAgfMTwBDTf0IWxBBPbjtKhNnZ2ZaRkXFOElFNZIinX8q69Ed78XWI4C++M2fHOgH0obO6UJULaogXalM87oUhEL3wKXoGgAsCEDiTAPpI/6nAENP/jOgQAhCAAARSQABDTAHki+EhPvjgg/hFU9ErhbkgAIG5BNCHj4nAEH2cU1p3ee+999qLL75o1dXV8b/r+c53vmOf//zn07pnmoNAqgigj1SR/uUfB0P85Rle1Hd4+eWX7Z//+Z/tzjvvtC996Uv293//9/b7v//78b8tveSSSy5qNmweAujD1wxgiL7OK+26/cY3vmHR00HRmy9EhvjYY4/Z7bffbl/+8pcteichLghczATQh6/TxxB9nVfadRv9O9M/+IM/sD/8wz+M38A9egei6D1qo/8j4ILAxU4AffiaAAzR13mlZbfRJ5p89atftZ/85Ce2bt26+I0Xli1blpa90hQEUk0AfaSaePjjYYjh7Fj5/wlEafDmm2+OP/9y79699id/8if2u7/7u/CBwEVPIDLD6G/sp1/R20ffcccdFz2bdASAIabjqTjqKTLBRx55JH5f2uj9aKM3do8+7Plf/uVfzvsORY62SKsQCCbwxhtv2D/+4z+eWh99oEH08XfPP/988D1ZuHAEMMSFY3tR3Pm5556L9/lbv/Vb8T+16OnpsT//8z+P3+j7V37lVy4KBmwSAvMhcPfdd8cvOjvfW1rO537UJo8Ahpg8lhflnf793//d/vZv/zb+FJPo3yBGL7D54z/+Y4tebp6ZmXlRMmHTEDhJIPqgg+jj7k5ex44di/+8EH0g+qWXXgqoNCOAIabZgXhs55/+6Z/s3XfftT/7sz+LP/T57bffPvXh0B73Q88QSBaB6P1LP/3pT5+6XfRBBrfddpt97nOfS9ZDcJ8kEsAQkwjzYrrV//zP/9grr7xyzi1XVlZeTDjYKwTOSiBKhFFC/PCHPwwhBwQwRAeHlI4tRi8W2Llz5zlbi/6RPhcELnYC0StMo89+/Zu/+ZuLHYWL/WOILo4p/ZuM3q3mxIkTFv3N5Atf+EL8odDRBz5zQeBiJhD94njrrbdafn6+rV69+hQKfmFMz6nAENPzXNx09fOf/9w2bdpkP/zhD+O3cIv+lvhHf/RH8atNuSBwMRN466234leSRm92/4uvKI1eeMaVfgQwxPQ7E1cd9fb2WvSPj4uKimxsbCx+C7fo/UzP93Sqqw3SLAQCCdx44432r//6r4GrWXYhCGCIF4L6InrM6F1qfvrTn8bvTPPMM8/YX//1X9uf/umfWkdHh0WvqOOCwMVKAEP0d/IYor8zS6uO33vvPbv++uttcHAw/neIeXl5Fv3bxO9///v8O8S0OimaSTWB6H19z/Xq0uifY3ClHwEMMf3OxF1H0Qtpor+RTE5O2ne/+137xCc+YatWrXK3DxqGQDIJ/M7v/I7t27fvrLeMzJIr/QhgiOl3Jm46it6q7dFHH437jd7CLfo74m/8xm+46Z9GIbCQBHjKdCHpLsy9McSF4XpR3PV0wd9///3xp1x88pOfvCj2ziYhkIhAZ2dn/L6+XH4IYIh+zirtOsUQ0+5IaAgCEPglCGCIvwS8i30phnixTwD7h8DiIoAhLq7zTOluohcGnHz3jTfffDN+Ic3ll18e98C/v0rpUfBgEIBAEghgiEmAeLHe4r/+67/mfLTN6RwKCwsvVizsGwIQcEoAQ3R6cLQNAQhAAALJJYAhJpcnd4MABCAAAacEMESnB0fbEIAABCCQXAIYYnJ5cjcIQAACEHBKAEN0enC0DQEIQAACySWAISaXJ3eDwAUlEH3w7Ntvvx1/SHNmZqb97//+b/wJJNddd138QbVcEIDAuQlgiEwHBBYRgeHh4fijuJ544glrbGy06C31nnrqqfjTR3791399Ee2UrUAg+QQwxOQz5Y4QuKAEHnjggfhTFp5++mm75ZZb4g9sjoyRCwIQOD8BDJEJgcAiI3D8+HH77d/+bYveOGHDhg32yiuv8NmUi+yM2c7CEMAQF4Yrd4XABSPw/vvvx59JGT1NGn0m37/927/Fn1fJBQEIkBCZAQhcVAQefvhhe/zxx23Xrl1211132Ze//GW7++67LyoGbBYCIQRIiCHUWAOBNCUwNjZmxcXF9sgjj9hf/dVf2R133GHf+MY37D//8z/tqquuStOuaQsC6UEAQ0yPc6ALCPzSBKanp+O/Gc7Oztprr71mWVlZ9tOf/tSiTyXZuHGjPffcc7/0Y3ADCCxmAhjiYj5d9gYBCEAAAjIBDFFGRSEEIAABCCxmAhjiYj5d9gYBCEAAAjIBDFFGRSEEIAABCCxmAhjiYj5d9gYBCEAAAjIBDFFGRSEEIAABCCxmAhjiYj5d9gYBCEAAAjKB/wv0QMCkVGafGgAAAABJRU5ErkJggg==\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h2 id=\"Prior-predictive\">Prior predictive<a class=\"anchor-link\" href=\"#Prior-predictive\">&#182;</a></h2><p>Prior predictive model is an application of the generative distribution to the prior distribution.</p>\n<p>Similarly as in <code>Sampling.ipynb</code> example we need to introduce a constant weight by mapping samples to a pair (value, score) with <code>(,constWeight) &lt;$&gt;</code>.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[4]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">constWeight</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Log</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"w\"></span>\n\n<span class=\"nf\">sampler</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">plot</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">histogramToList</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">histogram</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">100000</span><span class=\"w\"> </span><span class=\"p\">((,</span><span class=\"n\">constWeight</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\">  </span><span class=\"n\">priorPredictive</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h2 id=\"Posterior\">Posterior<a class=\"anchor-link\" href=\"#Posterior\">&#182;</a></h2>\n</div>\n</div>\n</div>\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>Posterior distribution is computed using <code>likelihood</code> and observations $os = \\{o_{1}, \\dots o_{n} \\}$.\nFactors are computed for posterior for <code>model</code>, and in the considered example yield following:</p>\n<ul>\n<li>$ \\prod_{i=1}^{n} \\text{likelihood}(\\text{True}, o_{i}) $ for <code>True</code> </li>\n<li>$ \\prod_{i=1}^{n} \\text{likelihood}(\\text{False}, o_{i}) $ for <code>False</code>.</li>\n</ul>\n<p>Note that factors do not have to sum up to 1. Empirical distribution is obtained by normalizing factors to 1.</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h3 id=\"Observations\">Observations<a class=\"anchor-link\" href=\"#Observations\">&#182;</a></h3><p>In our example, we experiment how observed data change the a priori model given the likelihood function. Observations should be in the domain of the likelihood function.</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>Taking symmetrical and evenly distributed points, we do not change the posterior distribution:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[5]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">observations1</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"o\">-</span><span class=\"mi\">3</span><span class=\"o\">..</span><span class=\"mi\">3</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">sampler</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">toEmpiricalWeighted</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">100000</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">weighted</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">posterior</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"> </span><span class=\"n\">observations1</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[(True,0.5005199999999994),(False,0.49948000000000126)]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>On the other hand, if the observations are unevenly distributed adjustments to posterior are well visible:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[6]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">observations2</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"o\">-</span><span class=\"mf\">2.3</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"o\">-</span><span class=\"mi\">2</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mf\">0.3</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mf\">2.3</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">sampler</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">toEmpiricalWeighted</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">100000</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">weighted</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">posterior</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"> </span><span class=\"n\">observations2</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[(True,0.7669770523099223),(False,0.23302294769007775)]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[7]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">sampler</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"n\">plot</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">bimap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">show</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">ln</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">exp</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">toEmpiricalWeighted</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">1000</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">weighted</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">posterior</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"> </span><span class=\"n\">observations2</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAb4AAAHOCAYAAADnr2woAAAAAXNSR0IArs4c6QAAIABJREFUeF7tnX1QZmX5+K+VRUXRxnwLk5lWBqRQbEwWqyX9YmoyZpvEommp5eYqlogkm81aa9sLac0IKrZGGSM1KrZuMTASmbqQpey0DjmC2TrWWIqmtqhsiPKbc37CuO7LuXie8zznfvmcv5C9zn2u63Pd93y8HuB5Fs3Ozs4KFwQgAAEIQMATAosQnyedpkwIQAACEAgJID42AgQgAAEIeEUA8XnVboqFAAQgAAHExx6AAAQgAAGvCCA+r9pNsRCAAAQggPjYAxCAAAQg4BWBjIhvdHRUGhsbJScnR4qLi6WtrS38eu6anp6WlStXyvbt22Xbtm1yySWXyPLly70CT7EQgAAEIJAMgYyIr6qqSjo7O6WkpEQaGhqkurpaamtr5yu866675MEHH5Sbb75ZJicnpby8XJ5++ulkCPBUCEAAAhDwikDs4puZmZGysjIZHx8PQfb29srAwEA49c1df/7zn2Xt2rVy7733ytjYmFx++eXy0EMPeQWeYiEAAQhAIBkCsYtvYmJCampqZGRkJKxoaGhIOjo6pLu7e77CN954Q1asWCH//e9/5bnnnpN169bJ2WefPR8/PDy8A41DDz1UTj755GQI8VQIQAACELCWQPDmZEVFRTvkH7v4gp/fBS9dBpNccPX19Ul/f7+0t7fPPzj4+pVXXpE1a9ZIEH/sscfKli1bJC8vb5dwW1tbpaWlxVrwJA4BCEAAAskQ2Lp1qxx11FGZFV+wemVlpfT09EhhYaE0NzdLRUWF1NfXhz/Py8/Pl+9+97uy//77y5VXXilzNn7sscfkgAMOQHzJ7A2eCgEIQMBJAlkTX/BSZVNTkxQUFIRTXFdXl+Tm5kppaakMDg6GX5977rmyZMkS+fe//y3Lli2Ta665ZrfQmfic3I8UBQEIQCDjBLImvrlKpqamdvvyZRATTICBGBcvXrzH4hFfxvcGD4AABCDgJIGsiy8uiogvLpKsAwEIQMAvAojPr35TLQQgAAHvCSA+77cAAHwm8Pnv3Otz+dTuGIFfrtG92xfic6zxlAOBhRD49DfuXEg4sRAwmsBvv1+vyg/xqTARBAE3CSA+N/vqa1WIz9fOUzcEFkAA8S0AFqHGE0B8xreIBCGQPAHEl3wPyCA+AogvPpasBAFnCSA+Z1vrZWGIz8u2UzQEFkYA8S2MF9FmE0B8ZveH7CBgBAHEZ0QbSCImAogvJpAsAwGXCSA+l7vrX22Iz7+eUzEEFkwA8S0YGTcYTADxGdwcUoOAKQQQnymdII84CCC+OCiyBgQcJ4D4HG+wZ+UhPs8aTrkQSIUA4kuFGveYSgDxmdoZ8oKAQQQQn0HNIJW0CSC+tBGyAATcJ4D43O+xTxUiPp+6Ta0QSJEA4ksRHLcZSQDxGdkWkoKAWQQQn1n9IJv0CCC+9PhxNwS8IID4vGizN0UiPm9aTaEQSJ0A4kudHXeaRwDxmdcTMoKAcQQQn3EtIaE0CCC+NOBxKwR8IYD4fOm0H3UiPj/6TJUQSIsA4ksLHzcbRgDxGdYQ0oGAiQQQn4ldIadUCSC+VMlxHwQ8IoD4PGq2B6UiPg+aTIkQSJcA4kuXIPebRADxmdQNcoGAoQQQn6GNIa2UCCC+lLBxEwT8IoD4/Oq369UiPtc7TH0QiIEA4osBIksYQwDxGdMKEoGAuQQQn7m9IbOFE0B8C2fGHRDwjgDi867lTheM+JxuL8VBIB4CiC8ejqxiBgHEZ0YfyAICRhNAfEa3h+QWSADxLRAY4RDwkQDi87Hr7taM+NztLZVBIDYCiC82lCxkAAHEZ0ATSAECphNAfKZ3iPwWQgDxLYQWsRDwlADi87TxjpaN+BxtLGVBIE4CiC9OmqyVNAHEl3QHeD4ELCCA+CxoEimqCSA+NSoCIeAvAcTnb+9drBzxudhVaoJAzAQQX8xAWS5RAsaJb3R0VBobGyUnJ0eKi4ulra0t/Hru6u7ulp///Ofz//3Pf/5TNm/eLPn5+bsE2draKi0tLYlC5uEQsJ0A4rO9g+T/TgLGia+qqko6OzulpKREGhoapLq6Wmpra3fZtZGREbnpppvk9ttv321XER8bHgLpE0B86TNkBXMIGCW+mZkZKSsrk/Hx8ZBQb2+vDAwMhFPfu6/Z2Vk55ZRT5M4775RDDz0U8Zmzp8jEQQKIz8GmelySUeKbmJiQmpoaCSa54BoaGpKOjg4JXt5897Vx40Z55JFH5Lvf/e78PwXxw8PDO8XW1dV53GJKh0D6BK647dH0F2EFCBhC4MaVFapMggGrqKhoh9hFs8F3Y7ymp6elvLxcxsbGwlX7+vqkv79f2tvbd3rKqaeeGr7MefTRR+8xA17qjLFBLOUtASY+b1vvZOFGTXwB4crKSunp6ZHCwkJpbm6WiooKqa+vl8nJyfAXWBYtWiSvvfaaHHfccfLUU09FNgXxRSIiAAKRBBBfJCICLCJgnPiClyqbmpqkoKBA8vLypKurS3Jzc6W0tFQGBwflyCOPlMcff1xWrVolmzZtikSN+CIREQCBSAKILxIRARYRME58c+ympqZC8aV7Ib50CXI/BEQQH7vAJQLGii8uyIgvLpKs4zMBxOdz992rHfG511MqgkDsBBBf7EhZMEECiC9B+DwaArYQQHy2dIo8NQQQn4YSMRDwnADi83wDOFY+4nOsoZQDgUwQQHyZoMqaSRFAfEmR57kQsIgA4rOoWaQaSQDxRSIiAAIQQHzsAZcIID6XukktEMgQAcSXIbAsmwgBxJcIdh4KAbsIID67+kW2eyaA+NghEIBAJAHEF4mIAIsIID6LmkWqEEiKAOJLijzPzQQBxJcJqqwJAccIID7HGup5OYjP8w1A+RDQEEB8GkrE2EIA8dnSKfKEQIIEEF+C8Hl07AQQX+xIWRAC7hFAfO711OeKEJ/P3ad2CCgJID4lKMKsIID4rGgTSUIgWQKIL1n+PD1eAogvXp6sBgEnCSA+J9vqbVGIz9vWUzgE9AQQn54VkeYTQHzm94gMIZA4AcSXeAtIIEYCiC9GmCwFAVcJID5XO+tnXYjPz75TNQQWRADxLQgXwYYTQHyGN4j0IGACAcRnQhfIIS4CiC8ukqwDAYcJID6Hm+thaYjPw6ZTMgQWSgDxLZQY8SYTQHwmd4fcIGAIAcRnSCNIIxYCiC8WjCwCAbcJID63++tbdYjPt45TLwRSIID4UoDGLcYSQHzGtobEIGAOAcRnTi/IJH0CiC99hqwAAecJID7nW+xVgYjPq3ZTLARSI4D4UuPGXWYSQHxm9oWsIGAUAcRnVDtIJk0CiC9NgNwOAR8IID4fuuxPjYjPn15TKQRSJoD4UkbHjQYSQHwGNoWUIGAaAcRnWkfIJx0CiC8detwLAU8IID5PGu1JmYjPk0ZTJgTSIYD40qHHvaYRQHymdYR8IGAgAcRnYFNIKWUCiC9ldNwIAX8IID5/eu1DpYjPhy5TIwTSJID40gTI7UYRQHxGtYNkIGAmAcRnZl/IKjUCiC81btwFAa8IID6v2u18scaJb3R0VBobGyUnJ0eKi4ulra0t/PqdV3d3t/zsZz+TyclJaWpqknPOOWe3jWptbZWWlhbnG0mBEMgkAcSXSbqsnW0CxomvqqpKOjs7paSkRBoaGqS6ulpqa2vnuTz//PNy9tlnywMPPCCvv/663HHHHWHc7i7El+0txfNcJID4XOyqvzUZJb6ZmRkpKyuT8fHxsCO9vb0yMDAQTn1zVyC6Z555Rj74wQ/Kq6++KnV1dZKXl4f4/N3DVJ4FAogvC5B5RNYIGCW+iYkJqampkZGRkRDA0NCQdHR0SPDS5tx1ww03SE9Pj6xevVq2bt0qv/nNb8Lpby5+eHh4J3iBHLkgAIHUCVxx26Op38ydEDCMwI0rK1QZzc7OSlFR0Q6xi2aD78Z4TU9PS3l5uYyNjYWr9vX1SX9/v7S3t88/5Sc/+Yk8++yzct1114XfO+644+T++++Xgw8+eJeZ8FJnjA1iKW8JMPF523onCzdq4gsIV1ZWhhNdYWGhNDc3S0VFhdTX14e/yJKfny+PPfaYrF27VjZs2CBvvPFG+LPA4KXRvffeG/E5uUUpygQCiM+ELpBDXASME1/wUmXwm5oFBQXhz+66urokNzdXSktLZXBwUI488ki5+uqr5YknnpCXXnpJvvCFL8iqVat2y4OJL66twjo+E0B8PnffvdqNE98c4qmpqT3+0sr//ve/8M8cFi9evMeuID73Ni0VZZ8A4ss+c56YOQLGii+ukhFfXCRZx2cCiM/n7rtXO+Jzr6dUBIHYCSC+2JGyYIIEEF+C8Hk0BGwhgPhs6RR5agggPg0lYiDgOQHE5/kGcKx8xOdYQykHApkggPgyQZU1kyKA+JIiz3MhYBEBxGdRs0g1kgDii0REAAQggPjYAy4RQHwudZNaIJAhAogvQ2BZNhECiC8R7DwUAnYRQHx29Yts90wA8bFDIACBSAKILxIRARYRQHwWNYtUIZAUAcSXFHmemwkCiC8TVFkTAo4RQHyONdTzchCf5xuA8iGgIYD4NJSIsYUA4rOlU+QJgQQJIL4E4fPo2AkgvtiRsiAE3COA+Nzrqc8VIT6fu0/tEFASQHxKUIRZQQDxWdEmkoRAsgQQX7L8eXq8BBBfvDxZDQJOEkB8TrbV26IQn7etp3AI6AkgPj0rIs0ngPjM7xEZQiBxAogv8RaQQIwEEF+MMFkKAq4SQHyudtbPuhCfn32naggsiADiWxAugg0ngPgMbxDpQcAEAojPhC6QQ1wEEF9cJFkHAg4TQHwON9fD0hCfh02nZAgslADiWygx4k0mgPhM7g65QcAQAojPkEaQRiwEEF8sGFkEAm4TQHxu99e36hCfbx2nXgikQADxpQCNW4wlgPiMbQ2JQcAcAojPnF6QSfoEEF/6DFkBAs4TQHzOt9irAhGfV+2mWAikRgDxpcaNu8wkgPjM7AtZQcAoAojPqHaQTJoEEF+aALkdAj4QQHw+dNmfGhGfP72mUgikTADxpYyOGw0kgPgMbAopQcA0AojPtI6QTzoEEF869LgXAp4QQHyeNNqTMhGfJ42mTAikQwDxpUOPe00jgPhM6wj5QMBAAojPwKaQUsoEEF/K6LgRAv4QQHz+9NqHShGfD12mRgikSQDxpQmQ240igPiMagfJQMBMAojPzL6QVWoEEF9q3LgLAl4RQHxetdv5Yo0T3+joqDQ2NkpOTo4UFxdLW1tb+PXcFfz7eeedJ4cddlj4reOPP15++MMf7rZRra2t0tLS4nwjKRACmSSA+DJJl7WzTcA48VVVVUlnZ6eUlJRIQ0ODVFdXS21t7TyX3//+93LPPffILbfcomKF+FSYCILAHgkgPjaISwSMEt/MzIyUlZXJ+Ph4yLi3t1cGBgbCqW/uCqT34IMPykknnST77befnHbaaTtMhO9uDuJzabtSS1IEEF9S5HluJggYJb6JiQmpqamRkZGRsNahoSHp6OiQ7u7u+drvvfdeufnmm+Xzn/+8bNmyRf7+97+HgpyLHx4e3olTXV1dJtixJgS8IXDFbY96UyuFuk/gxpUVqiJnZ2elqKhoh9hFs8F3Y7ymp6elvLxcxsbGwlX7+vqkv79f2tvbd/uUY445Rv7whz/IoYceussYJr4YG8RS3hJg4vO29U4WbtTEFxCurKyUnp4eKSwslObmZqmoqJD6+nqZnJyU/Px8ue+++2TRokVy+umny/bt26W0tDR8aXSfffZBfE5uUYoygQDiM6EL5BAXAePEF7xU2dTUJAUFBZKXlyddXV2Sm5sbCm5wcFDeeustWbFiRSjGf/zjH3LZZZfJBRdcsFseTHxxbRXW8ZkA4vO5++7Vbpz45hBPTU2F4tvdtW3btnAC3GuvvfbYFcTn3qalouwTQHzZZ84TM0fAWPHFVTLii4sk6/hMAPH53H33akd87vWUiiAQOwHEFztSFkyQAOJLED6PhoAtBBCfLZ0iTw0BxKehRAwEPCeA+DzfAI6Vj/gcayjlQCATBBBfJqiyZlIEEF9S5HkuBCwigPgsahapRhJAfJGICIAABBAfe8AlAojPpW5SCwQyRADxZQgsyyZCAPElgp2HQsAuAojPrn6R7Z4JID52CAQgEEkA8UUiIsAiAojPomaRKgSSIoD4kiLPczNBAPFlgiprQsAxAojPsYZ6Xg7i83wDUD4ENAQQn4YSMbYQQHy2dIo8IZAgAcSXIHweHTsBxBc7UhaEgHsEEJ97PfW5IsTnc/epHQJKAohPCYowKwggPivaRJIQSJYA4kuWP0+PlwDii5cnq0HASQKIz8m2elsU4vO29RQOAT0BxKdnRaT5BBCf+T0iQwgkTgDxJd4CEoiRAOKLESZLQcBVAojP1c76WRfi87PvVA2BBRFAfAvCRbDhBBCf4Q0iPQiYQADxmdAFcoiLAOKLiyTrQMBhAojP4eZ6WBri87DplAyBhRJAfAslRrzJBBCfyd0hNwgYQgDxGdII0oiFAOKLBSOLQMBtAojP7f76Vh3i863j1AuBFAggvhSgcYuxBBCfsa0hMQiYQwDxmdMLMkmfAOJLnyErQMB5AojP+RZ7VSDi86rdFAuB1AggvtS4cZeZBBCfmX0hKwgYRQDxGdUOkkmTAOJLEyC3Q8AHAojPhy77UyPi86fXVAqBlAkgvpTRcaOBBBCfgU0hJQiYRgDxmdYR8kmHAOJLhx73QsATAojPk0Z7Uibi86TRlAmBdAggvnToca9pBBCfaR0hHwgYSADxGdgUUkqZAOJLGR03QsAfAojPn177UCni86HL1AiBNAkgvjQBcrtRBBCfUe0gGQiYSQDxmdkXskqNAOJLjRt3QcArAojPq3Y7X2zGxHfLLbfI0UcfLaeccsqCII6OjkpjY6Pk5ORIcXGxtLW1hV+/+9q+fXu49ne+8x2prq7e7TNaW1ulpaVlQTkQDAEI7EgA8bEjXCKQMfFde+21oZRWrFghP/7xj+X973+/iltVVZV0dnZKSUmJNDQ0hFKrra3d6d6rrrpKHn74YbnmmmvkzDPPRHwqugRBIDUCiC81btxlJoGMiW92dlbuuOMOWb16tWzbtk0CEQZSm7tOPPHEnYjMzMxIWVmZjI+Ph//W29srAwMD4dT3zmvTpk1y5513Sn5+vixbtgzxmbm3yMohAojPoWZSimRMfHNsX3vtNTn99NNleHh4B9yBGN99TUxMSE1NjYyMjIT/NDQ0JB0dHdLd3T0fGqy3fPly2bBhg6xbt24H8QXx735OcGNdXR2thgAE0iBwxW2PpnE3t0LALAI3rqxQJRR4qqioaIfYRbO7stc7QjZv3ixXXnllKKOLL754h4nv/PPP3+nB09PTUl5eLmNjY+G/9fX1SX9/v7S3t8/HXnHFFXLIIYeEa61fv16OPfZYWbVqlRx00EG7LISf8an6SxAE9kiAiY8N4hKBjE18N910k3zta1+T448/XoJfdFm6dKmKW2VlpfT09EhhYaE0NzdLRUWF1NfXy+TkZPjSZvBvzz77bLhW8FLoUUcdJWvWrAnjd3UhPhV2giCA+NgD3hDImPjWrl0bTmaXXnqp7LXXXmqgwXTY1NQkBQUFkpeXJ11dXZKbmyulpaUyODgoRx555Pxawc8P+RmfGi2BEEiZABNfyui40UACGRNfurVOTU2F4kv3YuJLlyD3Q0AE8bELXCJgrPjigoz44iLJOj4TQHw+d9+92hGfez2lIgjETgDxxY6UBRMkgPgShM+jIWALAcRnS6fIU0MA8WkoEQMBzwkgPs83gGPlIz7HGko5EMgEAcSXCaqsmRQBxJcUeZ4LAYsIID6LmkWqkQQQXyQiAiAAAcTHHnCJAOJzqZvUAoEMEUB8GQLLsokQQHyJYOehELCLAOKzq19ku2cCiI8dAgEIRBJAfJGICLCIAOKzqFmkCoGkCCC+pMjz3EwQQHyZoMqaEHCMAOJzrKGel4P4PN8AlA8BDQHEp6FEjC0EEJ8tnSJPCCRIAPElCJ9Hx04A8cWOlAUh4B4BxOdeT32uCPH53H1qh4CSAOJTgiLMCgKIz4o2kSQEkiWA+JLlz9PjJYD44uXJahBwkgDic7Kt3haF+LxtPYVDQE8A8elZEWk+AcRnfo/IEAKJE0B8ibeABGIkgPhihMlSEHCVAOJztbN+1oX4/Ow7VUNgQQQQ34JwEWw4AcRneINIDwImEEB8JnSBHOIigPjiIsk6EHCYAOJzuLkelob4PGw6JUNgoQQQ30KJEW8yAcRncnfIDQKGEEB8hjSCNGIhgPhiwcgiEHCbAOJzu7++VYf4fOs49UIgBQKILwVo3GIsAcRnbGtIDALmEEB85vSCTNIngPjSZ8gKEHCeAOJzvsVeFYj4vGo3xUIgNQKILzVu3GUmAcRnZl/ICgJGEUB8RrWDZNIkgPjSBMjtEPCBAOLzocv+1Ij4/Ok1lUIgZQKIL2V03GggAcRnYFNICQKmEUB8pnWEfNIhgPjSoce9EPCEAOLzpNGelIn4PGk0ZUIgHQKILx163GsaAcRnWkfIBwIGEkB8BjaFlFImgPhSRseNEPCHAOLzp9c+VIr4fOgyNUIgTQKIL02A3G4UAcRnVDtIBgJmEkB8ZvaFrFIjgPhS48ZdEPCKAOLzqt3OF2uc+EZHR6WxsVFycnKkuLhY2trawq/nru3bt8vFF18sExMT8uqrr8rq1avlrLPO2m2jWltbpaWlxflGUiAEMkkA8WWSLmtnm4Bx4quqqpLOzk4pKSmRhoYGqa6ultra2nkuGzZskPHx8VB4zz33nCxbtkyeeuopxJftncPzvCKA+Lxqt/PFGiW+mZkZKSsrC8UWXL29vTIwMBBOfbu6Nm/eHE6HmzZtQnzOb1UKTJIA4kuSPs+Om4BR4gtevqypqZGRkZGwzqGhIeno6JDu7u6d6j755JNl69atctddd8mJJ544Hz88PLxTbF1dXdzcWA8CXhG44rZHvaqXYt0mcOPKClWBs7OzUlRUtEPsotnguzFe09PTUl5eLmNjY+GqfX190t/fL+3t7bt8yjPPPCOnnHKKPP7447LPPvvsMoaf8cXYIJbylgATn7etd7Jwoya+gHBlZaX09PRIYWGhNDc3S0VFhdTX18vk5KTk5+fL+vXrZd9995ULLrhA3nzzTVmyZEkovgMOOADxOblFKcoEAojPhC6QQ1wEjBNf8FJlU1OTFBQUSF5ennR1dUlubq6UlpbK4OBg+BueK1askMMPP1z+9a9/yRlnnCFr1qzZLQ8mvri2Cuv4TADx+dx992o3TnxziKempkLx7e4KJsDg3xcvXrzHriA+9zYtFWWfAOLLPnOemDkCxoovrpIRX1wkWcdnAojP5+67Vzvic6+nVASB2AkgvtiRsmCCBBBfgvB5NARsIYD4bOkUeWoIID4NJWIg4DkBxOf5BnCsfMTnWEMpBwKZIID4MkGVNZMigPiSIs9zIWARAcRnUbNINZIA4otERAAEIID42AMuEUB8LnWTWiCQIQKIL0NgWTYRAogvEew8FAJ2EUB8dvWLbPdMAPGxQyAAgUgCiC8SEQEWEUB8FjWLVCGQFAHElxR5npsJAogvE1RZEwKOEUB8jjXU83IQn+cbgPIhoCGA+DSUiLGFAOKzpVPkCYEECSC+BOHz6NgJIL7YkbIgBNwjgPjc66nPFSE+n7tP7RBQEkB8SlCEWUEA8VnRJpKEQLIEEF+y/Hl6vAQQX7w8WQ0CThJAfE621duiEJ+3radwCOgJID49KyLNJ4D4zO8RGUIgcQKIL/EWkECMBBBfjDBZCgKuEkB8rnbWz7oQn599p2oILIgA4lsQLoINJ4D4DG8Q6UHABAKIz4QukENcBBBfXCRZBwIOE0B8DjfXw9IQn4dNp2QILJQA4lsoMeJNJoD4TO4OuUHAEAKIz5BGkEYsBBBfLBhZBAJuE0B8bvfXt+oQn28dp14IpEAA8aUAjVuMJYD4jG0NiUHAHAKIz5xekEn6BBBf+gxZAQLOE0B8zrfYqwIRn1ftplgIpEYA8aXGjbvMJID4zOwLWUHAKAKIz6h2kEyaBBBfmgC5HQI+EEB8PnTZnxoRnz+9plIIpEwA8aWMjhsNJID4DGwKKUHANAKIz7SOkE86BBBfOvS4FwKeEEB8njTakzIRnyeNpkwIpEMA8aVDj3tNI4D43u7I5Ov/M6035AOBlAkcsN8+Kd+7qxsRX6w4WSxhAojv7QZwsBPeiTw+VgLag619KOdDS4o4Gwhoz8fWrVvlqKOO2qGkRbOzs7OmF9na2iotLS2RaXKwIxERYBEB7cHWlsT50JIizgYC2vOB+GzoJjlC4G0C2oOtBYb4tKSIs4GA9nwgPhu6SY4QQHzsAQhEEjBOfKOjo9LY2Cg5OTlSXFwsbW1t4ddz18zMjFx66aXy9NNPy9TUlHz961+X5cuX77ZQXuqM3AMEOEhAe7C1pTPxaUkRZwMB7fnI2sRXVVUlnZ2dUlJSIg0NDVJdXS21tbXzLO+77z4ZHByU66+/Xl588UVZunSpBMnt7kJ8NmxDcoybgPZga5+L+LSkiLOBgPZ8ZEV8wTRXVlYm4+PjIbve3l4ZGBgIp75dXcHUV19fL4888gjis2G3kWPWCGgPtjYhxKclRZwNBLTnIyvim5iYkJqaGhkZGQnZDQ0NSUdHh3R3d+/E8oUXXpC6ujoJJrrKysr5+OHh4Z1ig7io64rbHo0K4d8hYA2BG1dWxJor5yNWnCyWMAHt+Qj+cKGoqGiHbGP/c4bp6WkpLy+XsbGx8EF9fX3S398v7e3tOzz4ySeflAsvvDCcBE844YQ9IuSlzoR3GI9PhID2/2i1yTHxaUkRZwMB7fnIysQXAAumt56eHiksLJTm5mapqKgIX86cnJyU/Px82bZtm5x++unyq1/9SpYsWRLJGPFFIiLAQQLag60tHfFpSRFnAwEKvcwfAAARuklEQVTt+cia+IKXKpuamqSgoEDy8vKkq6tLcnNzpbS0NPyllkB4waT3zvEz+FlgIMVdXYjPhm1IjnET0B5s7XMRn5YUcTYQ0J6PrIlvDlrwpwqB+NK9EF+6BLnfRgLag62tDfFpSRFnAwHt+ci6+OKCh/jiIsk6NhHQHmxtTYhPS4o4Gwhozwfis6Gb5AiBtwloD7YWGOLTkiLOBgLa84H4bOgmOUIA8bEHIBBJAPG9jYj/o43cKwRYREB7sLUlcT60pIizgYD2fDDx2dBNcoQAEx97AAKRBBAfE1/kJiHAPgLag62tjIlPS4o4GwhozwcTnw3dJEcIMPGxByAQSQDxMfFFbhIC7COgPdjaypj4tKSIs4GA9nww8dnQTXKEABMfewACkQQQHxNf5CYhwD4C2oOtrYyJT0uKOBsIaM8HE58N3SRHCDDxsQcgEEkA8THxRW4SAuwjoD3Y2sqY+LSkiLOBgPZ8MPHZ0E1yhAATH3sAApEEEB8TX+QmIcA+AtqDra2MiU9LijgbCGjPBxOfDd0kRwgw8bEHIBBJAPEx8UVuEgLsI6A92NrKmPi0pIizgYD2fDDx2dBNcoQAEx97AAKRBBAfE1/kJiHAPgLag62tjIlPS4o4GwhozwcTnw3dJEcIMPGxByAQSQDxMfFFbhIC7COgPdjaypj4tKSIs4GA9nww8dnQTXKEABMfewACkQQQHxNf5CYhwD4C2oOtrYyJT0uKOBsIaM8HE58N3SRHCDDxsQcgEEkA8THxRW4SAuwjoD3Y2sqY+LSkiLOBgPZ8MPHZ0E1yhAATH3sAApEEEB8TX+QmIcA+AtqDra2MiU9LijgbCGjPBxOfDd0kRwgw8bEHIBBJAPEx8UVuEgLsI6A92NrKmPi0pIizgYD2fDDx2dBNcoQAEx97AAKRBBAfE1/kJiHAPgLag62tjIlPS4o4GwhozwcTnw3dJEcIMPGxByAQSQDxMfFFbhIC7COgPdjaypj4tKSIs4GA9nww8dnQTXKEABMfewACkQQQHxNf5CYhwD4C2oOtrYyJT0uKOBsIaM8HE58N3SRHCDDxsQcgEEkA8THxRW4SAuwjoD3Y2sqY+LSkiLOBgPZ8MPHZ0E1yhAATH3sAApEEEB8TX+QmIcA+AtqDra2MiU9LijgbCGjPBxOfDd0kRwgw8bEHIBBJAPEx8UVuEgLsI6A92NrKmPi0pIizgYD2fDDx2dBNcoQAEx97AAKRBBAfE1/kJiHAPgLag62tjIlPS4o4Gwhoz0fWJr7R0VFpbGyUnJwcKS4ulra2tvDrd15PPPGEXHrppbJy5Uo577zz9si5tbVVWlpaInvBwY5ERIBFBLQHW1sS50NLijgbCGjPR9bEV1VVJZ2dnVJSUiINDQ1SXV0ttbW18yynp6floosuksMPPzyMWbVqFeKzYaeRY1YJaA+2NinEpyVFnA0EtOcjK+KbmZmRsrIyGR8fD9n19vbKwMBAOPW9+1q3bp0ccsghiM+GXUaOWSegPdjaxBCflhRxNhDQno+siG9iYkJqampkZGQkZDc0NCQdHR3S3d2tEl8QPzw8vFNsXV1dZC+uuO3RyBgCIGALgRtXVsSaKucjVpwsljAB7fmYnZ2VoqKiHbJdNBt8N8YreBmzvLxcxsbGwlX7+vqkv79f2tvbVeLbVSr8jC/GBrGUNQS0/0erLYiJT0uKOBsIaM9HVia+AFhlZaX09PRIYWGhNDc3S0VFhdTX18vk5KTk5+fLokWLQq681GnD9iLHpAhoD7Y2P8SnJUWcDQS05yNr4gteqmxqapKCggLJy8uTrq4uyc3NldLSUhkcHJSXX35ZvvrVr8ozzzwTfv+II46QjRs3ynve855d8mbis2EbkmPcBLQHW/tcxKclRZwNBLTnI2vim4M2NTUVii/dC/GlS5D7bSSgPdja2hCflhRxNhDQno+siy8ueIgvLpKsYxMB7cHW1oT4tKSIs4GA9nwgPhu6SY4QeJuA9mBrgSE+LSnibCCgPR+Iz4ZukiMEEB97AAKRBBDf24j4P9rIvUKARQS0B1tbEudDS4o4GwhozwcTnw3dJEcIMPGxByAQSQDxMfFFbhIC7COgPdjaypj4tKSIs4GA9nww8dnQTXKEABMfewACkQQQHxNf5CYhwD4C2oOtrYyJT0uKOBsIaM8HE58N3SRHCDDxsQcgEEkA8THxRW4SAuwjoD3Y2sqY+LSkiLOBgPZ8MPHZ0E1yhAATH3sAApEEEB8TX+QmIcA+AtqDra2MiU9LijgbCGjPBxOfDd0kRwgw8bEHIBBJAPEx8UVuEgLsI6A92NrKmPi0pIizgYD2fDDx2dBNcoQAEx97AAKRBBAfE1/kJiHAPgLag62tjIlPS4o4GwhozwcTnw3dJEcIMPGxByAQSQDxMfFFbhIC7COgPdjaypj4tKSIs4GA9nww8dnQTXKEABMfewACkQQQHxNf5CYhwD4C2oOtrYyJT0uKOBsIaM8HE58N3SRHCDDxsQcgEEkA8THxRW4SAuwjoD3Y2sqY+LSkiLOBgPZ8MPHZ0E1yhAATH3sAApEEEB8TX+QmIcA+AtqDra2MiU9LijgbCGjPBxOfDd0kRwgw8bEHIBBJAPEx8UVuEgLsI6A92NrKmPi0pIizgYD2fDDx2dBNcoQAEx97AAKRBBAfE1/kJiHAPgLag62tjIlPS4o4GwhozwcTnw3dJEcIMPGxByAQSQDxMfFFbhIC7COgPdjaypj4tKSIs4GA9nww8dnQTXKEABMfewACkQQQHxNf5CYhwD4C2oOtrYyJT0uKOBsIaM8HE58N3SRHCDDxsQcgEEkA8THxRW4SAuwjoD3Y2sqY+LSkiLOBgPZ8MPHZ0E1yhAATH3sAApEEEB8TX+QmIcA+AtqDra2MiU9LijgbCGjPBxOfDd0kRwgw8bEHIBBJAPEx8UVuEgLsI6A92NrKmPi0pIizgYD2fDDx2dBNcoQAEx97AAKRBBAfE1/kJiHAPgLag62tjIlPS4o4GwhozwcTnw3dJEcIMPGxByAQSQDxMfFFbhIC7COgPdjaypj4tKSIs4GA9nxkbeIbHR2VxsZGycnJkeLiYmlrawu/nrtmZ2elpaVF/vKXv8jMzIz84Ac/kMrKyt2ybm1tDeOjLg52FCH+3SYC2oOtrYnzoSVFnA0EtOcja+KrqqqSzs5OKSkpkYaGBqmurpba2tp5loODg3L77bfLHXfcIc8++6ycddZZsnnzZsRnw24jx6wR0B5sbUKIT0uKOBsIaM9HVsQXTHBlZWUyPj4esuvt7ZWBgYFw6pu7rr32Wjn66KPlvPPOC791wgknhDHvfe97d8mbic+GbUiOcRPQHmztcxGflhRxNhDQno+siG9iYkJqampkZGQkZDc0NCQdHR3S3d09z/Kyyy4LY84888zwe5/85CfDmOBl0SB+eHh4B+777befvP766zb0ghwhAAEIQMAgAh/60Ifk05/+9A4ZLZoNfuAW4zU9PS3l5eUyNjYWrtrX1yf9/f3S3t4+/5RvfvObcswxx8i5554bfm/p0qVhzMEHHxxjJiyVKQLaCTxTz2ddCJhMgPNhcnf+f26xiy9YNPhFlZ6eHiksLJTm5mapqKiQ+vp6mZyclPz8/FCGGzdulPXr18uLL74YTnxbtmwxnxYZhgQ42GwECOyeAOfD/N2REfEFL1U2NTVJQUGB5OXlSVdXl+Tm5kppaakEv9hyxBFHyAUXXCCvvPJKKL7vfe978n//93/m0yJDxMcegEAEAcRn/hbJiPjmyp6amgrFt7sr+Pd9991XFi1aZD4pMpwnwMFmM0CAic/mPZBR8dkMhtx3TyD4BaRly5aBCAIQ2AUBzof52wLxmd8jMoQABCAAgRgJIL4YYfqw1BtvvCHBS9QHHnigD+VSIwQWRIDzsSBciQUjvsTQ2/fgyy+/XH77299KXV1d+Hcxf/zjH+Ub3/iGfYWQMQQyQIDzkQGoGVoS8WUIrGvLPvTQQ/K73/1OvvzlL8tNN90k119/vZx66qnhn6bsvfferpVLPRBYEAHOx4JwJR6M+BJvgR0JbNiwQYKXcYI3GwjEd8MNN8gXv/hFufXWWyV4Zx0uCPhMgPNhV/cRn139Sizb4O8tP/WpT8kZZ5wRvqF48O48wfuxBgeeCwK+E+B82LUDEJ9d/Uo02+CTNIL3XH3hhRfCNyM4//zzZZ999kk0Jx4OAVMIcD5M6UR0HogvmhERbxMIprvPfvaz4eco3nbbbXLOOefIJz7xCfhAwHsCgfSCn4G/8wreBvmiiy7yno2JABCfiV0xMKdAduvWrQvfgzV479XgjcaDj5q6//77eecdA/tFStkl8Le//U1+8YtfzD80eJP+4CPa7r333uwmwtNUBBCfChNBd999dwjhuOOOC/+E4Z577pGvfOUr4RtWH3TQQQCCAATeReCSSy4Jf/mLt2Q0b2sgPvN6YmRGjz32mFx33XWyePHi8G/4gl90Wb58uQS/xr3XXnsZmTNJQSBbBN566y0JPpJt7tq2bVv4Y4HgA7b333//bKXBc5QEEJ8SFGEiv/71r+Xll1+WL33pS+EHDT///PPzHyYMHwj4TCB4f86LL754HkHw5vzBR7GtXr3aZyzG1o74jG2NGYn95z//kYcffni3yZx55plmJEoWEEiQQDDhBRPfIYcckmAWPFpLAPFpSXkaF/zQ/sYbb9xt9cEfs3NBwHcCwW90Bp9D+u1vf9t3FFbUj/isaJM5SQbv3vLmm29K8DONtWvXhh8inJOTY06CZAKBBAgE/4P4uc99ToqLi+V973vffAb8j2ECzVA8EvEpIBEi8vrrr8tpp50mW7duDd+6LPhZ32c+85nwtzu5IOAzgeeeey78zc3gTdvf/RucwS+AcZlHAPGZ1xMjM9q4caMEf6R7wgknyJYtW8K3Lgver3NPL4MaWQhJQSBmAieffLI88MADMa/KcpkkgPgySdehtYN3bXnppZfCd2r55S9/Kd/61rfkwgsvlI6ODgl+g40LAr4SQHz2dR7x2dezRDKenJyUj33sYzI4OBj+HV9RUZEEf9v317/+lb/jS6QjPNQUAsH71u7utzmDP3PgMo8A4jOvJ8ZmFPxCS/AzjFdeeUX+9Kc/yUc+8hE57LDDjM2XxCCQDQIf//jHpbOzc5ePCqTIZR4BxGdeT4zLKHiLsu9///thXsFblwU/51uyZIlxeZIQBJIgwEudSVBP75mILz1+Xtz9zoPd2NgYfirDiSee6EXtFAmBKALr168P37eWyx4CiM+eXiWWKeJLDD0PhgAEMkAA8WUAqmtLIj7XOko9EPCbAOLzu/+q6oMf0M+9G8VTTz0V/kLLgQceGN7L3y+pEBIEAQgYRADxGdQMU1N58sknd/jIlXfmecwxx5iaNnlBAAIQ2CUBxMfGgAAEIAABrwggPq/aTbEQgAAEIID42AMQgAAEIOAVAcTnVbspFgIQgAAEEB97AAIQgAAEvCKA+LxqN8W6QiD4gNPnn38+/DDgvfbaS1599dXwEzM++tGPhh+IygUBCOyeAOJjd0DAQgLDw8PhR0S1t7fLZZddJsFbyf30pz8NPy3jAx/4gIUVkTIEskcA8WWPNU+CQKwErrrqqvBTAbq6uuTss88OPxg4ECAXBCCwZwKIjx0CAUsJbN++XT784Q9L8AYDFRUV8vDDD/PZiJb2krSzSwDxZZc3T4NAbASmp6fDz0QMXt4MPhNu06ZN4eclckEAAkx87AEIOElgzZo18qMf/Uja2tpk5cqVcuutt8oll1ziZK0UBYE4CTDxxUmTtSCQJQJbtmyRpUuXyrp16+Tqq6+Wiy66SDZs2CBPPPGEFBQUZCkLHgMBOwkgPjv7RtYeE5iZmQl/pjc7OysjIyOyePFieemllyT4FI2TTjpJ7r77bo/pUDoEogkgvmhGREAAAhCAgEMEEJ9DzaQUCEAAAhCIJoD4ohkRAQEIQAACDhFAfA41k1IgAAEIQCCaAOKLZkQEBCAAAQg4RADxOdRMSoEABCAAgWgCiC+aEREQgAAEIOAQgf8HjcoYSnqQw8EAAAAASUVORK5CYII=\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h3 id=\"Excercise\">Excercise<a class=\"anchor-link\" href=\"#Excercise\">&#182;</a></h3><p>Change the observations lists and see how the posterior is affected.\nChange standard deviation of <code>likelihood</code> and see how posterior changes.</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h2 id=\"Posterior-predictive\">Posterior predictive<a class=\"anchor-link\" href=\"#Posterior-predictive\">&#182;</a></h2><p>Analoguosly to prior predictive is generated by <code>generative</code> applied to <code>posterior</code>.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[8]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">sampler</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">plot</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">histogramToList</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">histogram</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">100000</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">weighted</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">posteriorPredictive</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"> </span><span class=\"n\">observations2</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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hg0baOfOnTRjxgzXttzeyd+9995bffr79++nJ554wpxrogPA9jmoPutOGy7a/jJ9QZKJmsu94nvY/quL/PBf02RrgEiFPW3aNOrQoQMNHz7cjKZLly60fft2atiwofmbq+6OHTvS8ePHzd+bN2827zdo0CCu3datWw1AY20HDx5squZly5aZPiZNmkQ9e/ak+fPnm9ebN29O586di3rNje3Bgwcdz413APjgzzd33nknPfXUU3TdddcB2G3ayERsgl61FwhtfwC2XDgB2P5ri/zwX1N1YI8dO5b69+9PAwYMMKPp27cvLV682Gx983H69GnzPleqfOzatcu8zxV2bLvp06fT+PHj42wHDRpEe/fupTlz5pg+2K5p06Y0b94883rVVnWrVq1o9uzZrm337dvneG5r1641fjZt2mT64qq96uDz3717d9zMDRkyRGY20SsUgAKeFTh95gLN2HDEY/tw/Lzmg/e0p5taFHocA5qFXQEuDNu2bRt3miIV9tSpU6lTp07mujIf3bp1o23btlGjRo3M3xcvXqSioiI6duyY+ZuraH6/fv36ce0YkL17946z5W32jRs30pIlS0wfkydPNtfJ586da15v1qwZnT9/Puo1N7a8de90brxVzgdvxfN2OO8gJDuwJS6TEtqf6LX9sWraPrX9BTHGSJ94lrh/uZkJsROmMYoAm68lM2j5hrDi4mJTYR8+fJjKysrMdnhBQYEBKYO1ZcuWZju7a9eupip2audky33yP67S+WY13g7na9YLFiygzp0707Bhw8xWO58LV99ubbnSd/J3//330yeffEK33norvfbaaykjHsBOKZEnA+3k0fYXBMwyYYwAtqd0S9koE2InTGMUAXZFRQWNGDHC3LHNwJ45c6apkvlOa74hje/c5i3kiRMnmkqYAb5q1Spzx7hTOyfbvLw8c4MZQ5pvOuOtdAb/qVOnTGXP18PZ/+rVq6lFixZWton8vfzyyzRmzBh6/vnnUwYygJ1SIk8G2smj7Q/A9hQWrhrVnmvYlTTy7ztTuxaX7wni4+bWl++n0Y5XbX+ZPkYRYFcFUWlpqflqVVYWX/dxPtiGgR15JGrnZMtVOx8M8MiDt8Pr1KkT9ZqNLTd08udqZSDCk87cCmVpp71AaPvL9AXJMhyszGsPsKOH3biwDv3qka8C2FbR4N44TGuAKLDdS1L7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sc3AnjlzpqmS169fT3xDGt+5zVvIEydONJUwA3zVqlXmjnGndk62vOXMN4gxpPmmM95KZ/CfOnXKVPZ8PZz9r169mlq0aGFla3NuAPYUr3ngqZ128mj7A1g8hYWrRtpzqe0PseMqDKyNwjSPIsCuUqS0tNR8tarqzj0npdiGgR15JGrnZFt1nZgBHnnwdnidOtEPjbex5b5szg1b4tZ54KmBdvJo+8Oi6yksXDXSnkttf4gdV2FgbRSmeRQFtrUytagB34h2++23q45I26e2PxZT26e2P4xRLmW051LbH2JHJnbCNI8Atswco1coAAWgABSAAr4qAGD7Kic6gwJQAApAASggowCALaMreoUCUAAKQAEo4KsCALavcqbu7KWXXjLPUK863n//ffPd8TvvvDN1YxcWL774orn7nm+Yu+2226ofLOOiqScTfnoc3/Vfr1490/6BBx6ofsKdpw4tGvEDevgbAI8++qhFK3vTCxcumEfd8gN/+Ol5jzzyiHncruTBj9R97LHH6Oqrrzba8mN+Y2/O9Nv/0aNH6cEHHzTP4q96SqHfPhI9699vP5H9sc/vf//75jkP/M0S6eOdd96h7373u+aX6T799FPzUKibbrpJ1C0/E4J/s+Gqq64yD6Dib8dIxwsPiHOD166f/exn5vHSkgdr+pe//MV8K4gPfqolP+9D8tBYT9euXUu/+tWvqofx1ltvmUd5Vz38K3J8ALbkbKfo++OPPzYLPycb303vx1H1fXR+NCsHNP8gSuzd8n74qeqDoXLLLbfQfffd52e3Kfv6zW9+Yx6iovGh5Ne//rV5NC6Dmr82yDcTvvbaaynPMR0D/poifxjieWTY8LMFvv3tb6fTZdK2/DAj/rDFTwvk5/uPGTNGxNePfvSjuGf9S0OU9WNgPvfcc+arpdLH448/bkBy7733EscOP1uCf1tB8rjrrrvoqaeeMl9n5Q9dvA5861vfknRp+v7BD35AL7zwgvnQXPVkSymn/IjqZ555xvyYk9ahvZ7yc0WeeOKJhPECYGvNvIMfroQ50fifH8fbb79tqiN+0hxXS/fcc4+pQCWPhx56iP72b//WfCho27ateaqd9PHBBx+YB+PwI2t5Ea56PK20X+6fP/nyDsnzzz+v4c744GcT3H///eZZA9IHP2SocePGYsD+0pe+FPesf65ipA++05cXQg1g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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Regression\">Regression<a class=\"anchor-link\" href=\"#Regression\">&#182;</a></h1><p>The classical example of linear regression:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[9]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">range</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Double</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">range</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"o\">-</span><span class=\"mi\">10</span><span class=\"p\">,</span><span class=\"o\">-</span><span class=\"mf\">9.9</span><span class=\"o\">..</span><span class=\"mi\">10</span><span class=\"p\">]</span><span class=\"w\"> </span>\n\n\n<span class=\"nf\">regression</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">Bayesian</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Double</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">regression</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">Bayesian</span><span class=\"w\"> </span><span class=\"p\">{</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">prior</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"> </span>\n<span class=\"w\">            </span><span class=\"n\">slope</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"w\"></span>\n<span class=\"w\">            </span><span class=\"n\">intercept</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"w\"></span>\n<span class=\"w\">            </span><span class=\"n\">noise</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">gamma</span><span class=\"w\"> </span><span class=\"mi\">4</span><span class=\"w\"> </span><span class=\"mi\">4</span><span class=\"w\"></span>\n<span class=\"w\">            </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">slope</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">intercept</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">noise</span><span class=\"p\">),</span><span class=\"w\"></span>\n<span class=\"w\">    </span>\n<span class=\"w\">    </span><span class=\"n\">generative</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"nf\">\\</span><span class=\"p\">(</span><span class=\"n\">slope</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">intercept</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">noise</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">            </span><span class=\"n\">forM</span><span class=\"w\"> </span><span class=\"n\">range</span><span class=\"w\"> </span><span class=\"nf\">\\</span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"o\">*</span><span class=\"n\">slope</span><span class=\"w\"> </span><span class=\"o\">+</span><span class=\"w\"> </span><span class=\"n\">intercept</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">sqrt</span><span class=\"w\"> </span><span class=\"n\">noise</span><span class=\"p\">),</span><span class=\"w\"></span>\n<span class=\"w\">            </span>\n<span class=\"w\">    </span><span class=\"n\">likelihood</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"nf\">\\</span><span class=\"p\">(</span><span class=\"n\">slope</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">intercept</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">noise</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">ys</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kt\">Prelude</span><span class=\"o\">.</span><span class=\"n\">sum</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"n\">normalPdf</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"o\">*</span><span class=\"n\">slope</span><span class=\"w\"> </span><span class=\"o\">+</span><span class=\"w\"> </span><span class=\"n\">intercept</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">sqrt</span><span class=\"w\"> </span><span class=\"n\">noise</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"o\">|</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">range</span><span class=\"w\"> </span><span class=\"n\">ys</span><span class=\"p\">]</span><span class=\"w\"> </span>\n<span class=\"w\">                </span>\n<span class=\"w\">    </span><span class=\"p\">}</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h2 id=\"Prior-predictive\">Prior predictive<a class=\"anchor-link\" href=\"#Prior-predictive\">&#182;</a></h2><p><code>prior</code> distribution has three independent parameters. <code>generative</code> combines them into a new distribution.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[10]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">ys</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampler</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">priorPredictive</span><span class=\"w\"> </span><span class=\"n\">regression</span><span class=\"w\"></span>\n\n<span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">second</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">show</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">range</span><span class=\"w\"> </span><span class=\"n\">ys</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Prelude</span><span class=\"o\">.</span><span class=\"n\">repeat</span><span class=\"w\"> </span><span class=\"s\">&quot;N/A&quot;</span><span class=\"p\">)))</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h2 id=\"Posterior-predictive\">Posterior predictive<a class=\"anchor-link\" href=\"#Posterior-predictive\">&#182;</a></h2><p><code>posterior</code> distribution is computed base on the observed samples. Let's see what happens if the model sees samples of the same value only.</p>\n<p>To explore the space of possible parameters we use Monte Carlo Markov Chain inference algorithm.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[11]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Inference.MCMC</span><span class=\"w\"></span>\n\n<span class=\"nf\">observations</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"n\">replicate</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">]</span><span class=\"w\"></span>\n\n<span class=\"nf\">ys</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">mcmc</span><span class=\"w\"> </span><span class=\"kt\">MCMCConfig</span><span class=\"w\"> </span><span class=\"p\">{</span><span class=\"n\">numMCMCSteps</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">5000</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">numBurnIn</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">300</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">proposal</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">SingleSiteMH</span><span class=\"p\">}</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">posteriorPredictive</span><span class=\"w\"> </span><span class=\"n\">regression</span><span class=\"w\"> </span><span class=\"n\">observations</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre></pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p><code>ys</code> is a <strong>list of lists</strong> containing values generated for arguments from <code>range</code>. Let's see how an example of generated samples look like:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[12]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">second</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">show</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">range</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">head</span><span class=\"w\"> </span><span class=\"n\">ys</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Prelude</span><span class=\"o\">.</span><span class=\"n\">repeat</span><span class=\"w\"> </span><span class=\"s\">&quot;N/A&quot;</span><span class=\"p\">)))</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>Given the observations, we expect the model have average value of <code>slope</code> to be 0 and <code>intercept</code> 1.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[13]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">avg</span><span class=\"w\"> </span><span class=\"n\">l</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">Prelude</span><span class=\"o\">.</span><span class=\"n\">sum</span><span class=\"w\"> </span><span class=\"n\">l</span><span class=\"w\"> </span><span class=\"o\">/</span><span class=\"w\"> </span><span class=\"n\">fromIntegral</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">length</span><span class=\"w\"> </span><span class=\"n\">l</span><span class=\"p\">)</span><span class=\"w\"></span>\n\n<span class=\"nf\">avX</span><span class=\"w\">   </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">avg</span><span class=\"w\"> </span><span class=\"n\">range</span><span class=\"w\"></span>\n<span class=\"nf\">avSqr</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">Prelude</span><span class=\"o\">.</span><span class=\"n\">sum</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">map</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"n\">a</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">a</span><span class=\"o\">-</span><span class=\"n\">avX</span><span class=\"p\">)</span><span class=\"o\">**</span><span class=\"mi\">2</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">range</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[14]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">slopeValue</span><span class=\"w\"> </span><span class=\"n\">l</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">covXY</span><span class=\"w\"> </span><span class=\"o\">/</span><span class=\"w\"> </span><span class=\"n\">avSqr</span><span class=\"w\"></span>\n<span class=\"w\">  </span><span class=\"kr\">where</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">avY</span><span class=\"w\">   </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">avg</span><span class=\"w\"> </span><span class=\"n\">l</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">covXY</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">Prelude</span><span class=\"o\">.</span><span class=\"n\">sum</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"o\">-</span><span class=\"w\"> </span><span class=\"n\">avX</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">*</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"o\">-</span><span class=\"w\"> </span><span class=\"n\">avY</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">range</span><span class=\"w\"> </span><span class=\"n\">l</span><span class=\"w\"></span>\n<span class=\"w\">    </span>\n<span class=\"nf\">interceptValue</span><span class=\"w\"> </span><span class=\"n\">l</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">avg</span><span class=\"w\"> </span><span class=\"n\">l</span><span class=\"w\"> </span><span class=\"o\">-</span><span class=\"w\"> </span><span class=\"n\">slopeValue</span><span class=\"w\"> </span><span class=\"n\">l</span><span class=\"w\"> </span><span class=\"o\">*</span><span class=\"w\"> </span><span class=\"n\">avX</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[15]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">nObservations</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">length</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">head</span><span class=\"w\"> </span><span class=\"n\">observations</span><span class=\"w\"></span>\n\n<span class=\"nf\">print</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"s\">&quot;Average slope for &quot;</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">show</span><span class=\"w\"> </span><span class=\"n\">nObservations</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"s\">&quot; observations: &quot;</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">show</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">avg</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">slopeValue</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">ys</span><span class=\"p\">)</span><span class=\"w\"></span>\n\n<span class=\"nf\">print</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"s\">&quot;Average intercept for &quot;</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">show</span><span class=\"w\"> </span><span class=\"n\">nObservations</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"s\">&quot; observations: &quot;</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">show</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">avg</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">interceptValue</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">ys</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>&#34;Average slope for 100 observations: 0.6482984353867459&#34;</pre>\n</div>\n\n</div>\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>&#34;Average intercept for 100 observations: 1.2220350681014394&#34;</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>Slope and intercept average values differ a bit from the expected 0 and 1. Let's how they behave given more observations of the same kind.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[16]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">observations1</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"n\">replicate</span><span class=\"w\"> </span><span class=\"mi\">200</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">]</span><span class=\"w\"></span>\n\n<span class=\"nf\">ys1</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">mcmc</span><span class=\"w\"> </span><span class=\"kt\">MCMCConfig</span><span class=\"w\"> </span><span class=\"p\">{</span><span class=\"n\">numMCMCSteps</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">5000</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">numBurnIn</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">300</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">proposal</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">SingleSiteMH</span><span class=\"p\">}</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">posteriorPredictive</span><span class=\"w\"> </span><span class=\"n\">regression</span><span class=\"w\"> </span><span class=\"n\">observations1</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre></pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[17]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">nObservations</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">length</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">head</span><span class=\"w\"> </span><span class=\"n\">observations1</span><span class=\"w\"></span>\n\n<span class=\"nf\">print</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"s\">&quot;Average slope for &quot;</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">show</span><span class=\"w\"> </span><span class=\"n\">nObservations</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"s\">&quot; observations: &quot;</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">show</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">avg</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">slopeValue</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">ys1</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"nf\">print</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"s\">&quot;Average intercept for &quot;</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">show</span><span class=\"w\"> </span><span class=\"n\">nObservations</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"s\">&quot; observations: &quot;</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">show</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">avg</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">interceptValue</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">ys1</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>&#34;Average slope for 200 observations: 0.20039201335018098&#34;</pre>\n</div>\n\n</div>\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>&#34;Average intercept for 200 observations: 1.1534663432408423&#34;</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h3 id=\"Excercise\">Excercise<a class=\"anchor-link\" href=\"#Excercise\">&#182;</a></h3><p>To better understand how the Bayesian model works here, you may do following:</p>\n<ol>\n<li>play with prior: change it to be constant, randomize <code>noise</code> only</li>\n<li>play with observations: empirically check the limit where new observations change posterior insignificantly given the inference parameters</li>\n<li>change inference paramers.</li>\n</ol>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[&nbsp;]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n</body>\n\n\n\n\n\n\n\n</html>\n"
  },
  {
    "path": "docs/docs/notebooks/ClassicalPhysics.html",
    "content": "<!DOCTYPE html>\n<html>\n<head><meta charset=\"utf-8\" />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n<title>ClassicalPhysics</title><script src=\"https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js\"></script>\n\n\n\n\n<style type=\"text/css\">\n    pre { line-height: 125%; }\ntd.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\nspan.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\ntd.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\nspan.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.highlight .hll { background-color: var(--jp-cell-editor-active-background) }\n.highlight { background: var(--jp-cell-editor-background); color: var(--jp-mirror-editor-variable-color) }\n.highlight .c { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment */\n.highlight .err { color: var(--jp-mirror-editor-error-color) } /* Error */\n.highlight .k { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword */\n.highlight .o { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator */\n.highlight .p { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation */\n.highlight .ch { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Hashbang */\n.highlight .cm { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Multiline */\n.highlight .cp { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Preproc */\n.highlight .cpf { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.PreprocFile */\n.highlight .c1 { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Single */\n.highlight .cs { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Special */\n.highlight .kc { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Constant */\n.highlight .kd { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Declaration */\n.highlight .kn { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Namespace */\n.highlight .kp { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Pseudo */\n.highlight .kr { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Reserved */\n.highlight .kt { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Type */\n.highlight .m { color: var(--jp-mirror-editor-number-color) } /* Literal.Number */\n.highlight .s { color: var(--jp-mirror-editor-string-color) } /* Literal.String */\n.highlight .ow { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator.Word */\n.highlight .pm { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation.Marker */\n.highlight .w { color: var(--jp-mirror-editor-variable-color) } /* Text.Whitespace */\n.highlight .mb { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Bin */\n.highlight .mf { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Float */\n.highlight .mh { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Hex */\n.highlight .mi { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer */\n.highlight .mo { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Oct */\n.highlight .sa { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Affix */\n.highlight .sb { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Backtick */\n.highlight .sc { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Char */\n.highlight .dl { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Delimiter */\n.highlight .sd { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Doc */\n.highlight .s2 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Double */\n.highlight .se { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Escape */\n.highlight .sh { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Heredoc */\n.highlight .si { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Interpol */\n.highlight .sx { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Other */\n.highlight .sr { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Regex */\n.highlight .s1 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Single */\n.highlight .ss { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Symbol */\n.highlight .il { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer.Long */\n  </style>\n\n\n\n<style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\n * Mozilla scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n[data-jp-theme-scrollbars='true'] {\n  scrollbar-color: rgb(var(--jp-scrollbar-thumb-color))\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar. These selectors\n * will match lower in the tree, and so will override the above */\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n  scrollbar-width: thin;\n}\n\n/*\n * Webkit scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-corner {\n  background: var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-thumb {\n  background: rgb(var(--jp-scrollbar-thumb-color));\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-right: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-bottom: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar */\n\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-corner,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-corner {\n  background-color: transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-thumb,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid transparent;\n  border-right: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid transparent;\n  border-bottom: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny::-webkit-scrollbar,\n.jp-scrollbar-tiny::-webkit-scrollbar-corner {\n  background-color: transparent;\n  height: 4px;\n  width: 4px;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:horizontal {\n  border-left: 0px solid transparent;\n  border-right: 0px solid transparent;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:vertical {\n  border-top: 0px solid transparent;\n  border-bottom: 0px solid transparent;\n}\n\n/*\n * Phosphor\n */\n\n.lm-ScrollBar[data-orientation='horizontal'] {\n  min-height: 16px;\n  max-height: 16px;\n  min-width: 45px;\n  border-top: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] {\n  min-width: 16px;\n  max-width: 16px;\n  min-height: 45px;\n  border-left: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar-button {\n  background-color: #f0f0f0;\n  background-position: center center;\n  min-height: 15px;\n  max-height: 15px;\n  min-width: 15px;\n  max-width: 15px;\n}\n\n.lm-ScrollBar-button:hover {\n  background-color: #dadada;\n}\n\n.lm-ScrollBar-button.lm-mod-active {\n  background-color: #cdcdcd;\n}\n\n.lm-ScrollBar-track {\n  background: #f0f0f0;\n}\n\n.lm-ScrollBar-thumb {\n  background: #cdcdcd;\n}\n\n.lm-ScrollBar-thumb:hover {\n  background: #bababa;\n}\n\n.lm-ScrollBar-thumb.lm-mod-active {\n  background: #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal'] .lm-ScrollBar-thumb {\n  height: 100%;\n  min-width: 15px;\n  border-left: 1px solid #a0a0a0;\n  border-right: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] .lm-ScrollBar-thumb {\n  width: 100%;\n  min-height: 15px;\n  border-top: 1px solid #a0a0a0;\n  border-bottom: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-left);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-right);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-up);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-down);\n  background-size: 17px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Widget, /* </DEPRECATED> */\n.lm-Widget {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  cursor: default;\n}\n\n\n/* <DEPRECATED> */ .p-Widget.p-mod-hidden, /* </DEPRECATED> */\n.lm-Widget.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-CommandPalette, /* </DEPRECATED> */\n.lm-CommandPalette {\n  display: flex;\n  flex-direction: column;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-search, /* </DEPRECATED> */\n.lm-CommandPalette-search {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-content, /* </DEPRECATED> */\n.lm-CommandPalette-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  min-height: 0;\n  overflow: auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-header, /* </DEPRECATED> */\n.lm-CommandPalette-header {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-item, /* </DEPRECATED> */\n.lm-CommandPalette-item {\n  display: flex;\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemIcon, /* </DEPRECATED> */\n.lm-CommandPalette-itemIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemContent, /* </DEPRECATED> */\n.lm-CommandPalette-itemContent {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemShortcut, /* </DEPRECATED> */\n.lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemLabel, /* </DEPRECATED> */\n.lm-CommandPalette-itemLabel {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.lm-close-icon {\n\tborder:1px solid transparent;\n  background-color: transparent;\n  position: absolute;\n\tz-index:1;\n\tright:3%;\n\ttop: 0;\n\tbottom: 0;\n\tmargin: auto;\n\tpadding: 7px 0;\n\tdisplay: none;\n\tvertical-align: middle;\n  outline: 0;\n  cursor: pointer;\n}\n.lm-close-icon:after {\n\tcontent: \"X\";\n\tdisplay: block;\n\twidth: 15px;\n\theight: 15px;\n\ttext-align: center;\n\tcolor:#000;\n\tfont-weight: normal;\n\tfont-size: 12px;\n\tcursor: pointer;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-DockPanel, /* </DEPRECATED> */\n.lm-DockPanel {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-widget, /* </DEPRECATED> */\n.lm-DockPanel-widget {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-tabBar, /* </DEPRECATED> */\n.lm-DockPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle, /* </DEPRECATED> */\n.lm-DockPanel-handle {\n  z-index: 2;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle:after, /* </DEPRECATED> */\n.lm-DockPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal'] {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical'] {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal']:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical']:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay, /* </DEPRECATED> */\n.lm-DockPanel-overlay {\n  z-index: 3;\n  box-sizing: border-box;\n  pointer-events: none;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-overlay.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Menu, /* </DEPRECATED> */\n.lm-Menu {\n  z-index: 10000;\n  position: absolute;\n  white-space: nowrap;\n  overflow-x: hidden;\n  overflow-y: auto;\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-content, /* </DEPRECATED> */\n.lm-Menu-content {\n  margin: 0;\n  padding: 0;\n  display: table;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-item, /* </DEPRECATED> */\n.lm-Menu-item {\n  display: table-row;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-item.p-mod-hidden,\n.p-Menu-item.p-mod-collapsed,\n/* </DEPRECATED> */\n.lm-Menu-item.lm-mod-hidden,\n.lm-Menu-item.lm-mod-collapsed {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-itemIcon,\n.p-Menu-itemSubmenuIcon,\n/* </DEPRECATED> */\n.lm-Menu-itemIcon,\n.lm-Menu-itemSubmenuIcon {\n  display: table-cell;\n  text-align: center;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemLabel, /* </DEPRECATED> */\n.lm-Menu-itemLabel {\n  display: table-cell;\n  text-align: left;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemShortcut, /* </DEPRECATED> */\n.lm-Menu-itemShortcut {\n  display: table-cell;\n  text-align: right;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-MenuBar, /* </DEPRECATED> */\n.lm-MenuBar {\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-MenuBar-content, /* </DEPRECATED> */\n.lm-MenuBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex-direction: row;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p--MenuBar-item, /* </DEPRECATED> */\n.lm-MenuBar-item {\n  box-sizing: border-box;\n}\n\n\n/* <DEPRECATED> */\n.p-MenuBar-itemIcon,\n.p-MenuBar-itemLabel,\n/* </DEPRECATED> */\n.lm-MenuBar-itemIcon,\n.lm-MenuBar-itemLabel {\n  display: inline-block;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-ScrollBar, /* </DEPRECATED> */\n.lm-ScrollBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='horizontal'] {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='vertical'] {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-button, /* </DEPRECATED> */\n.lm-ScrollBar-button {\n  box-sizing: border-box;\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-track, /* </DEPRECATED> */\n.lm-ScrollBar-track {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  flex: 1 1 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-thumb, /* </DEPRECATED> */\n.lm-ScrollBar-thumb {\n  box-sizing: border-box;\n  position: absolute;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-SplitPanel-child, /* </DEPRECATED> */\n.lm-SplitPanel-child {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle, /* </DEPRECATED> */\n.lm-SplitPanel-handle {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-SplitPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle:after, /* </DEPRECATED> */\n.lm-SplitPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabBar, /* </DEPRECATED> */\n.lm-TabBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='horizontal'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] {\n  flex-direction: row;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='vertical'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] {\n  flex-direction: column;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-content, /* </DEPRECATED> */\n.lm-TabBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex: 1 1 auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='horizontal'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] > .lm-TabBar-content {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='vertical'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] > .lm-TabBar-content {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar-tab {\n  display: flex;\n  flex-direction: row;\n  box-sizing: border-box;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar-tabIcon,\n.p-TabBar-tabCloseIcon,\n/* </DEPRECATED> */\n.lm-TabBar-tabIcon,\n.lm-TabBar-tabCloseIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tabLabel, /* </DEPRECATED> */\n.lm-TabBar-tabLabel {\n  flex: 1 1 auto;\n  overflow: hidden;\n  white-space: nowrap;\n}\n\n\n.lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab.p-mod-hidden, /* </DEPRECATED> */\n.lm-TabBar-tab.lm-mod-hidden {\n  display: none !important;\n}\n\n\n.lm-TabBar-addButton.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar.p-mod-dragging .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab {\n  position: relative;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='horizontal'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='horizontal'] .lm-TabBar-tab {\n  left: 0;\n  transition: left 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='vertical'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='vertical'] .lm-TabBar-tab {\n  top: 0;\n  transition: top 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging .p-TabBar-tab.p-mod-dragging,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab.lm-mod-dragging {\n  transition: none;\n}\n\n.lm-TabBar-tabLabel .lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n  background: inherit;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabPanel-tabBar, /* </DEPRECATED> */\n.lm-TabPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-TabPanel-stackedPanel, /* </DEPRECATED> */\n.lm-TabPanel-stackedPanel {\n  z-index: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n@charset \"UTF-8\";\nhtml{\n  -webkit-box-sizing:border-box;\n          box-sizing:border-box; }\n\n*,\n*::before,\n*::after{\n  -webkit-box-sizing:inherit;\n          box-sizing:inherit; }\n\nbody{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none;\n  color:#182026;\n  font-family:-apple-system, \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Open Sans\", \"Helvetica Neue\", \"Icons16\", sans-serif; }\n\np{\n  margin-bottom:10px;\n  margin-top:0; }\n\nsmall{\n  font-size:12px; }\n\nstrong{\n  font-weight:600; }\n\n::-moz-selection{\n  background:rgba(125, 188, 255, 0.6); }\n\n::selection{\n  background:rgba(125, 188, 255, 0.6); }\n.bp3-heading{\n  color:#182026;\n  font-weight:600;\n  margin:0 0 10px;\n  padding:0; }\n  .bp3-dark .bp3-heading{\n    color:#f5f8fa; }\n\nh1.bp3-heading, .bp3-running-text h1{\n  font-size:36px;\n  line-height:40px; }\n\nh2.bp3-heading, .bp3-running-text h2{\n  font-size:28px;\n  line-height:32px; }\n\nh3.bp3-heading, .bp3-running-text h3{\n  font-size:22px;\n  line-height:25px; }\n\nh4.bp3-heading, .bp3-running-text h4{\n  font-size:18px;\n  line-height:21px; }\n\nh5.bp3-heading, .bp3-running-text h5{\n  font-size:16px;\n  line-height:19px; }\n\nh6.bp3-heading, .bp3-running-text h6{\n  font-size:14px;\n  line-height:16px; }\n.bp3-ui-text{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none; }\n\n.bp3-monospace-text{\n  font-family:monospace;\n  text-transform:none; }\n\n.bp3-text-muted{\n  color:#5c7080; }\n  .bp3-dark .bp3-text-muted{\n    color:#a7b6c2; }\n\n.bp3-text-disabled{\n  color:rgba(92, 112, 128, 0.6); }\n  .bp3-dark .bp3-text-disabled{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-text-overflow-ellipsis{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal; }\n.bp3-running-text{\n  font-size:14px;\n  line-height:1.5; }\n  .bp3-running-text h1{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h1{\n      color:#f5f8fa; }\n  .bp3-running-text h2{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h2{\n      color:#f5f8fa; }\n  .bp3-running-text h3{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h3{\n      color:#f5f8fa; }\n  .bp3-running-text h4{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h4{\n      color:#f5f8fa; }\n  .bp3-running-text h5{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h5{\n      color:#f5f8fa; }\n  .bp3-running-text h6{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h6{\n      color:#f5f8fa; }\n  .bp3-running-text hr{\n    border:none;\n    border-bottom:1px solid rgba(16, 22, 26, 0.15);\n    margin:20px 0; }\n    .bp3-dark .bp3-running-text hr{\n      border-color:rgba(255, 255, 255, 0.15); }\n  .bp3-running-text p{\n    margin:0 0 10px;\n    padding:0; }\n\n.bp3-text-large{\n  font-size:16px; }\n\n.bp3-text-small{\n  font-size:12px; }\na{\n  color:#106ba3;\n  text-decoration:none; }\n  a:hover{\n    color:#106ba3;\n    cursor:pointer;\n    text-decoration:underline; }\n  a .bp3-icon, a .bp3-icon-standard, a .bp3-icon-large{\n    color:inherit; }\n  a code,\n  .bp3-dark a code{\n    color:inherit; }\n  .bp3-dark a,\n  .bp3-dark a:hover{\n    color:#48aff0; }\n    .bp3-dark a .bp3-icon, .bp3-dark a .bp3-icon-standard, .bp3-dark a .bp3-icon-large,\n    .bp3-dark a:hover .bp3-icon,\n    .bp3-dark a:hover .bp3-icon-standard,\n    .bp3-dark a:hover .bp3-icon-large{\n      color:inherit; }\n.bp3-running-text code, .bp3-code{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  font-size:smaller;\n  padding:2px 5px; }\n  .bp3-dark .bp3-running-text code, .bp3-running-text .bp3-dark code, .bp3-dark .bp3-code{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n  .bp3-running-text a > code, a > .bp3-code{\n    color:#137cbd; }\n    .bp3-dark .bp3-running-text a > code, .bp3-running-text .bp3-dark a > code, .bp3-dark a > .bp3-code{\n      color:inherit; }\n\n.bp3-running-text pre, .bp3-code-block{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n  color:#182026;\n  display:block;\n  font-size:13px;\n  line-height:1.4;\n  margin:10px 0;\n  padding:13px 15px 12px;\n  word-break:break-all;\n  word-wrap:break-word; }\n  .bp3-dark .bp3-running-text pre, .bp3-running-text .bp3-dark pre, .bp3-dark .bp3-code-block{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n  .bp3-running-text pre > code, .bp3-code-block > code{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit;\n    font-size:inherit;\n    padding:0; }\n\n.bp3-running-text kbd, .bp3-key{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-family:inherit;\n  font-size:12px;\n  height:24px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  line-height:24px;\n  min-width:24px;\n  padding:3px 6px;\n  vertical-align:middle; }\n  .bp3-running-text kbd .bp3-icon, .bp3-key .bp3-icon, .bp3-running-text kbd .bp3-icon-standard, .bp3-key .bp3-icon-standard, .bp3-running-text kbd .bp3-icon-large, .bp3-key .bp3-icon-large{\n    margin-right:5px; }\n  .bp3-dark .bp3-running-text kbd, .bp3-running-text .bp3-dark kbd, .bp3-dark .bp3-key{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n.bp3-running-text blockquote, .bp3-blockquote{\n  border-left:solid 4px rgba(167, 182, 194, 0.5);\n  margin:0 0 10px;\n  padding:0 20px; }\n  .bp3-dark .bp3-running-text blockquote, .bp3-running-text .bp3-dark blockquote, .bp3-dark .bp3-blockquote{\n    border-color:rgba(115, 134, 148, 0.5); }\n.bp3-running-text ul,\n.bp3-running-text ol, .bp3-list{\n  margin:10px 0;\n  padding-left:30px; }\n  .bp3-running-text ul li:not(:last-child), .bp3-running-text ol li:not(:last-child), .bp3-list li:not(:last-child){\n    margin-bottom:5px; }\n  .bp3-running-text ul ol, .bp3-running-text ol ol, .bp3-list ol,\n  .bp3-running-text ul ul,\n  .bp3-running-text ol ul,\n  .bp3-list ul{\n    margin-top:5px; }\n\n.bp3-list-unstyled{\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-list-unstyled li{\n    padding:0; }\n.bp3-rtl{\n  text-align:right; }\n\n.bp3-dark{\n  color:#f5f8fa; }\n\n:focus{\n  outline:rgba(19, 124, 189, 0.6) auto 2px;\n  outline-offset:2px;\n  -moz-outline-radius:6px; }\n\n.bp3-focus-disabled :focus{\n  outline:none !important; }\n  .bp3-focus-disabled :focus ~ .bp3-control-indicator{\n    outline:none !important; }\n\n.bp3-alert{\n  max-width:400px;\n  padding:20px; }\n\n.bp3-alert-body{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-alert-body .bp3-icon{\n    font-size:40px;\n    margin-right:20px;\n    margin-top:0; }\n\n.bp3-alert-contents{\n  word-break:break-word; }\n\n.bp3-alert-footer{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:reverse;\n      -ms-flex-direction:row-reverse;\n          flex-direction:row-reverse;\n  margin-top:10px; }\n  .bp3-alert-footer .bp3-button{\n    margin-left:10px; }\n.bp3-breadcrumbs{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  cursor:default;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:wrap;\n      flex-wrap:wrap;\n  height:30px;\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-breadcrumbs > li{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n    .bp3-breadcrumbs > li::after{\n      background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z' fill='%235C7080'/%3e%3c/svg%3e\");\n      content:\"\";\n      display:block;\n      height:16px;\n      margin:0 5px;\n      width:16px; }\n    .bp3-breadcrumbs > li:last-of-type::after{\n      display:none; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumb-current,\n.bp3-breadcrumbs-collapsed{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-size:16px; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumbs-collapsed{\n  color:#5c7080; }\n\n.bp3-breadcrumb:hover{\n  text-decoration:none; }\n\n.bp3-breadcrumb.bp3-disabled{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-breadcrumb .bp3-icon{\n  margin-right:5px; }\n\n.bp3-breadcrumb-current{\n  color:inherit;\n  font-weight:600; }\n  .bp3-breadcrumb-current .bp3-input{\n    font-size:inherit;\n    font-weight:inherit;\n    vertical-align:baseline; }\n\n.bp3-breadcrumbs-collapsed{\n  background:#ced9e0;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  margin-right:2px;\n  padding:1px 5px;\n  vertical-align:text-bottom; }\n  .bp3-breadcrumbs-collapsed::before{\n    background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cg fill='%235C7080'%3e%3ccircle cx='2' cy='8.03' r='2'/%3e%3ccircle cx='14' cy='8.03' r='2'/%3e%3ccircle cx='8' cy='8.03' r='2'/%3e%3c/g%3e%3c/svg%3e\") center no-repeat;\n    content:\"\";\n    display:block;\n    height:16px;\n    width:16px; }\n  .bp3-breadcrumbs-collapsed:hover{\n    background:#bfccd6;\n    color:#182026;\n    text-decoration:none; }\n\n.bp3-dark .bp3-breadcrumb,\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumbs > li::after{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumb.bp3-disabled{\n  color:rgba(167, 182, 194, 0.6); }\n\n.bp3-dark .bp3-breadcrumb-current{\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-breadcrumbs-collapsed:hover{\n    background:rgba(16, 22, 26, 0.6);\n    color:#f5f8fa; }\n.bp3-button{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  min-height:30px;\n  min-width:30px; }\n  .bp3-button > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-button > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-button::before,\n  .bp3-button > *{\n    margin-right:7px; }\n  .bp3-button:empty::before,\n  .bp3-button > :last-child{\n    margin-right:0; }\n  .bp3-button:empty{\n    padding:0 !important; }\n  .bp3-button:disabled, .bp3-button.bp3-disabled{\n    cursor:not-allowed; }\n  .bp3-button.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button.bp3-align-right,\n  .bp3-align-right .bp3-button{\n    text-align:right; }\n  .bp3-button.bp3-align-left,\n  .bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026; }\n    .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active:hover, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-button.bp3-intent-primary{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover, .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover{\n      background-color:#106ba3;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      background-color:#0e5a8a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:disabled, .bp3-button.bp3-intent-primary.bp3-disabled{\n      background-color:rgba(19, 124, 189, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-success{\n    background-color:#0f9960;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover, .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover{\n      background-color:#0d8050;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      background-color:#0a6640;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:disabled, .bp3-button.bp3-intent-success.bp3-disabled{\n      background-color:rgba(15, 153, 96, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-warning{\n    background-color:#d9822b;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover, .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover{\n      background-color:#bf7326;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      background-color:#a66321;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:disabled, .bp3-button.bp3-intent-warning.bp3-disabled{\n      background-color:rgba(217, 130, 43, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-danger{\n    background-color:#db3737;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover, .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover{\n      background-color:#c23030;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      background-color:#a82a2a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:disabled, .bp3-button.bp3-intent-danger.bp3-disabled{\n      background-color:rgba(219, 55, 55, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n    stroke:#ffffff; }\n  .bp3-button.bp3-large,\n  .bp3-large .bp3-button{\n    min-height:40px;\n    min-width:40px;\n    font-size:16px;\n    padding:5px 15px; }\n    .bp3-button.bp3-large::before,\n    .bp3-button.bp3-large > *,\n    .bp3-large .bp3-button::before,\n    .bp3-large .bp3-button > *{\n      margin-right:10px; }\n    .bp3-button.bp3-large:empty::before,\n    .bp3-button.bp3-large > :last-child,\n    .bp3-large .bp3-button:empty::before,\n    .bp3-large .bp3-button > :last-child{\n      margin-right:0; }\n  .bp3-button.bp3-small,\n  .bp3-small .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-button.bp3-loading{\n    position:relative; }\n    .bp3-button.bp3-loading[class*=\"bp3-icon-\"]::before{\n      visibility:hidden; }\n    .bp3-button.bp3-loading .bp3-button-spinner{\n      margin:0;\n      position:absolute; }\n    .bp3-button.bp3-loading > :not(.bp3-button-spinner){\n      visibility:hidden; }\n  .bp3-button[class*=\"bp3-icon-\"]::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    color:#5c7080; }\n  .bp3-button .bp3-icon, .bp3-button .bp3-icon-standard, .bp3-button .bp3-icon-large{\n    color:#5c7080; }\n    .bp3-button .bp3-icon.bp3-align-right, .bp3-button .bp3-icon-standard.bp3-align-right, .bp3-button .bp3-icon-large.bp3-align-right{\n      margin-left:7px; }\n  .bp3-button .bp3-icon:first-child:last-child,\n  .bp3-button .bp3-spinner + .bp3-icon:last-child{\n    margin:0 -7px; }\n  .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"])[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n      color:#a7b6c2; }\n  .bp3-dark .bp3-button[class*=\"bp3-intent-\"]{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:hover{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.3); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n      stroke:#8a9ba8; }\n  .bp3-button:disabled::before,\n  .bp3-button:disabled .bp3-icon, .bp3-button:disabled .bp3-icon-standard, .bp3-button:disabled .bp3-icon-large, .bp3-button.bp3-disabled::before,\n  .bp3-button.bp3-disabled .bp3-icon, .bp3-button.bp3-disabled .bp3-icon-standard, .bp3-button.bp3-disabled .bp3-icon-large, .bp3-button[class*=\"bp3-intent-\"]::before,\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-icon, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-standard, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-large{\n    color:inherit !important; }\n  .bp3-button.bp3-minimal{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button.bp3-minimal:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-minimal:active, .bp3-button.bp3-minimal.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-minimal:disabled, .bp3-button.bp3-minimal:disabled:hover, .bp3-button.bp3-minimal.bp3-disabled, .bp3-button.bp3-minimal.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-minimal{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-minimal:hover, .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-minimal:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-minimal:disabled, .bp3-dark .bp3-button.bp3-minimal:disabled:hover, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover, .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover, .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover, .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover, .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button.bp3-outlined{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    border:1px solid rgba(24, 32, 38, 0.2);\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box; }\n    .bp3-button.bp3-outlined:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-outlined:active, .bp3-button.bp3-outlined.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-outlined:hover, .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-outlined:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover, .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover, .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover, .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover, .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      border-color:rgba(92, 112, 128, 0.1); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      border-color:rgba(255, 255, 255, 0.4); }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        border-color:rgba(255, 255, 255, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      border-color:rgba(16, 107, 163, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        border-color:rgba(16, 107, 163, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        border-color:rgba(72, 175, 240, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          border-color:rgba(72, 175, 240, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      border-color:rgba(13, 128, 80, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        border-color:rgba(13, 128, 80, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        border-color:rgba(61, 204, 145, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          border-color:rgba(61, 204, 145, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      border-color:rgba(191, 115, 38, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        border-color:rgba(191, 115, 38, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        border-color:rgba(255, 179, 102, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          border-color:rgba(255, 179, 102, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      border-color:rgba(194, 48, 48, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        border-color:rgba(194, 48, 48, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        border-color:rgba(255, 115, 115, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          border-color:rgba(255, 115, 115, 0.2); }\n\na.bp3-button{\n  text-align:center;\n  text-decoration:none;\n  -webkit-transition:none;\n  transition:none; }\n  a.bp3-button, a.bp3-button:hover, a.bp3-button:active{\n    color:#182026; }\n  a.bp3-button.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6); }\n\n.bp3-button-text{\n  -webkit-box-flex:0;\n      -ms-flex:0 1 auto;\n          flex:0 1 auto; }\n\n.bp3-button.bp3-align-left .bp3-button-text, .bp3-button.bp3-align-right .bp3-button-text,\n.bp3-button-group.bp3-align-left .bp3-button-text,\n.bp3-button-group.bp3-align-right .bp3-button-text{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto; }\n.bp3-button-group{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex; }\n  .bp3-button-group .bp3-button{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    position:relative;\n    z-index:4; }\n    .bp3-button-group .bp3-button:focus{\n      z-index:5; }\n    .bp3-button-group .bp3-button:hover{\n      z-index:6; }\n    .bp3-button-group .bp3-button:active, .bp3-button-group .bp3-button.bp3-active{\n      z-index:7; }\n    .bp3-button-group .bp3-button:disabled, .bp3-button-group .bp3-button.bp3-disabled{\n      z-index:3; }\n    .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]{\n      z-index:9; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:focus{\n        z-index:10; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:hover{\n        z-index:11; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n        z-index:12; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n        z-index:8; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:first-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:first-child){\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    border-bottom-right-radius:0;\n    border-top-right-radius:0;\n    margin-right:-1px; }\n  .bp3-button-group.bp3-minimal .bp3-button{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button-group.bp3-minimal .bp3-button{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button-group .bp3-popover-wrapper,\n  .bp3-button-group .bp3-popover-target{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button-group .bp3-button.bp3-fill,\n  .bp3-button-group.bp3-fill .bp3-button:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-vertical{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column;\n    vertical-align:top; }\n    .bp3-button-group.bp3-vertical.bp3-fill{\n      height:100%;\n      width:unset; }\n    .bp3-button-group.bp3-vertical .bp3-button{\n      margin-right:0 !important;\n      width:100%; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:first-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:first-child{\n      border-radius:3px 3px 0 0; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:last-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:last-child{\n      border-radius:0 0 3px 3px; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:not(:last-child){\n      margin-bottom:-1px; }\n  .bp3-button-group.bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    margin-right:1px; }\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-button:not(:last-child){\n    margin-bottom:1px; }\n.bp3-callout{\n  font-size:14px;\n  line-height:1.5;\n  background-color:rgba(138, 155, 168, 0.15);\n  border-radius:3px;\n  padding:10px 12px 9px;\n  position:relative;\n  width:100%; }\n  .bp3-callout[class*=\"bp3-icon-\"]{\n    padding-left:40px; }\n    .bp3-callout[class*=\"bp3-icon-\"]::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout.bp3-callout-icon{\n    padding-left:40px; }\n    .bp3-callout.bp3-callout-icon > .bp3-icon:first-child{\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout .bp3-heading{\n    line-height:20px;\n    margin-bottom:5px;\n    margin-top:0; }\n    .bp3-callout .bp3-heading:last-child{\n      margin-bottom:0; }\n  .bp3-dark .bp3-callout{\n    background-color:rgba(138, 155, 168, 0.2); }\n    .bp3-dark .bp3-callout[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n  .bp3-callout.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15); }\n    .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-primary .bp3-heading{\n      color:#106ba3; }\n    .bp3-dark .bp3-callout.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-primary .bp3-heading{\n        color:#48aff0; }\n  .bp3-callout.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15); }\n    .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-success .bp3-heading{\n      color:#0d8050; }\n    .bp3-dark .bp3-callout.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-success .bp3-heading{\n        color:#3dcc91; }\n  .bp3-callout.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15); }\n    .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-warning .bp3-heading{\n      color:#bf7326; }\n    .bp3-dark .bp3-callout.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-warning .bp3-heading{\n        color:#ffb366; }\n  .bp3-callout.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15); }\n    .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-danger .bp3-heading{\n      color:#c23030; }\n    .bp3-dark .bp3-callout.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-danger .bp3-heading{\n        color:#ff7373; }\n  .bp3-running-text .bp3-callout{\n    margin:20px 0; }\n.bp3-card{\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n  padding:20px;\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-card.bp3-dark,\n  .bp3-dark .bp3-card{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-0{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n  .bp3-elevation-0.bp3-dark,\n  .bp3-dark .bp3-elevation-0{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-1{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-1.bp3-dark,\n  .bp3-dark .bp3-elevation-1{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-2{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-2.bp3-dark,\n  .bp3-dark .bp3-elevation-2{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-3{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-3.bp3-dark,\n  .bp3-dark .bp3-elevation-3{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-4{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-4.bp3-dark,\n  .bp3-dark .bp3-elevation-4{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:hover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  cursor:pointer; }\n  .bp3-card.bp3-interactive:hover.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:hover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:active{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  opacity:0.9;\n  -webkit-transition-duration:0;\n          transition-duration:0; }\n  .bp3-card.bp3-interactive:active.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:active{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-collapse{\n  height:0;\n  overflow-y:hidden;\n  -webkit-transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-collapse .bp3-collapse-body{\n    -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-collapse .bp3-collapse-body[aria-hidden=\"true\"]{\n      display:none; }\n\n.bp3-context-menu .bp3-popover-target{\n  display:block; }\n\n.bp3-context-menu-popover-target{\n  position:fixed; }\n\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-dialog-container{\n  opacity:1;\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  min-height:100%;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  width:100%; }\n  .bp3-dialog-container.bp3-overlay-enter > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5); }\n  .bp3-dialog-container.bp3-overlay-enter-active > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear-active > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-dialog-container.bp3-overlay-exit > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-dialog-container.bp3-overlay-exit-active > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n\n.bp3-dialog{\n  background:#ebf1f5;\n  border-radius:6px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:30px 0;\n  padding-bottom:20px;\n  pointer-events:all;\n  -webkit-user-select:text;\n     -moz-user-select:text;\n      -ms-user-select:text;\n          user-select:text;\n  width:500px; }\n  .bp3-dialog:focus{\n    outline:0; }\n  .bp3-dialog.bp3-dark,\n  .bp3-dark .bp3-dialog{\n    background:#293742;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-dialog-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:6px 6px 0 0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding-left:20px;\n  padding-right:5px;\n  z-index:30; }\n  .bp3-dialog-header .bp3-icon-large,\n  .bp3-dialog-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-dialog-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-dialog-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-dialog-header{\n    background:#30404d;\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-dialog-header .bp3-icon-large,\n    .bp3-dark .bp3-dialog-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-dialog-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  margin:20px; }\n\n.bp3-dialog-footer{\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  margin:0 20px; }\n\n.bp3-dialog-footer-actions{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:end;\n      -ms-flex-pack:end;\n          justify-content:flex-end; }\n  .bp3-dialog-footer-actions .bp3-button{\n    margin-left:10px; }\n.bp3-multistep-dialog-panels{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n\n.bp3-multistep-dialog-left-panel{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column; }\n  .bp3-dark .bp3-multistep-dialog-left-panel{\n    background:#202b33; }\n\n.bp3-multistep-dialog-right-panel{\n  background-color:#f5f8fa;\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  border-radius:0 0 6px 0;\n  -webkit-box-flex:3;\n      -ms-flex:3;\n          flex:3;\n  min-width:0; }\n  .bp3-dark .bp3-multistep-dialog-right-panel{\n    background-color:#293742;\n    border-left:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-multistep-dialog-footer{\n  background-color:#ffffff;\n  border-radius:0 0 6px 0;\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  padding:10px; }\n  .bp3-dark .bp3-multistep-dialog-footer{\n    background:#30404d;\n    border-top:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-dialog-step-container{\n  background-color:#f5f8fa;\n  border-bottom:1px solid rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-dialog-step-container{\n    background:#293742;\n    border-bottom:1px solid rgba(16, 22, 26, 0.4); }\n  .bp3-dialog-step-container.bp3-dialog-step-viewed{\n    background-color:#ffffff; }\n    .bp3-dark .bp3-dialog-step-container.bp3-dialog-step-viewed{\n      background:#30404d; }\n\n.bp3-dialog-step{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#f5f8fa;\n  border-radius:6px;\n  cursor:not-allowed;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:4px;\n  padding:6px 14px; }\n  .bp3-dark .bp3-dialog-step{\n    background:#293742; }\n  .bp3-dialog-step-viewed .bp3-dialog-step{\n    background-color:#ffffff;\n    cursor:pointer; }\n    .bp3-dark .bp3-dialog-step-viewed .bp3-dialog-step{\n      background:#30404d; }\n  .bp3-dialog-step:hover{\n    background-color:#f5f8fa; }\n    .bp3-dark .bp3-dialog-step:hover{\n      background:#293742; }\n\n.bp3-dialog-step-icon{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:rgba(92, 112, 128, 0.6);\n  border-radius:50%;\n  color:#ffffff;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:25px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  width:25px; }\n  .bp3-dark .bp3-dialog-step-icon{\n    background-color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#2b95d6; }\n  .bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#8a9ba8; }\n\n.bp3-dialog-step-title{\n  color:rgba(92, 112, 128, 0.6);\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  padding-left:10px; }\n  .bp3-dark .bp3-dialog-step-title{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-title{\n    color:#2b95d6; }\n  .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n    color:#182026; }\n    .bp3-dark .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n      color:#f5f8fa; }\n.bp3-drawer{\n  background:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0;\n  padding:0; }\n  .bp3-drawer:focus{\n    outline:0; }\n  .bp3-drawer.bp3-position-top{\n    height:50%;\n    left:0;\n    right:0;\n    top:0; }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter, .bp3-drawer.bp3-position-top.bp3-overlay-appear{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter-active, .bp3-drawer.bp3-position-top.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit-active{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-bottom{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter-active, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-left{\n    bottom:0;\n    left:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter, .bp3-drawer.bp3-position-left.bp3-overlay-appear{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter-active, .bp3-drawer.bp3-position-left.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit-active{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-right{\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter, .bp3-drawer.bp3-position-right.bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter-active, .bp3-drawer.bp3-position-right.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right):not(.bp3-vertical){\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right).bp3-vertical{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-dark,\n  .bp3-dark .bp3-drawer{\n    background:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-drawer-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border-radius:0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding:5px;\n  padding-left:20px;\n  position:relative; }\n  .bp3-drawer-header .bp3-icon-large,\n  .bp3-drawer-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-drawer-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-drawer-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-drawer-header{\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-drawer-header .bp3-icon-large,\n    .bp3-dark .bp3-drawer-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-drawer-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  overflow:auto; }\n\n.bp3-drawer-footer{\n  -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  padding:10px 20px;\n  position:relative; }\n  .bp3-dark .bp3-drawer-footer{\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4); }\n.bp3-editable-text{\n  cursor:text;\n  display:inline-block;\n  max-width:100%;\n  position:relative;\n  vertical-align:top;\n  white-space:nowrap; }\n  .bp3-editable-text::before{\n    bottom:-3px;\n    left:-3px;\n    position:absolute;\n    right:-3px;\n    top:-3px;\n    border-radius:3px;\n    content:\"\";\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#137cbd; }\n  .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4); }\n  .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#0f9960; }\n  .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4); }\n  .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#d9822b; }\n  .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4); }\n  .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#db3737; }\n  .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4); }\n  .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-dark .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#48aff0; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4);\n            box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#3dcc91; }\n  .bp3-dark .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4);\n            box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#ffb366; }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#ff7373; }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-editable-text-input,\n.bp3-editable-text-content{\n  color:inherit;\n  display:inherit;\n  font:inherit;\n  letter-spacing:inherit;\n  max-width:inherit;\n  min-width:inherit;\n  position:relative;\n  resize:none;\n  text-transform:inherit;\n  vertical-align:top; }\n\n.bp3-editable-text-input{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0;\n  white-space:pre-wrap;\n  width:100%; }\n  .bp3-editable-text-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:focus{\n    outline:none; }\n  .bp3-editable-text-input::-ms-clear{\n    display:none; }\n\n.bp3-editable-text-content{\n  overflow:hidden;\n  padding-right:2px;\n  text-overflow:ellipsis;\n  white-space:pre; }\n  .bp3-editable-text-editing > .bp3-editable-text-content{\n    left:0;\n    position:absolute;\n    visibility:hidden; }\n  .bp3-editable-text-placeholder > .bp3-editable-text-content{\n    color:rgba(92, 112, 128, 0.6); }\n    .bp3-dark .bp3-editable-text-placeholder > .bp3-editable-text-content{\n      color:rgba(167, 182, 194, 0.6); }\n\n.bp3-editable-text.bp3-multiline{\n  display:block; }\n  .bp3-editable-text.bp3-multiline .bp3-editable-text-content{\n    overflow:auto;\n    white-space:pre-wrap;\n    word-wrap:break-word; }\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-control-group{\n  -webkit-transform:translateZ(0);\n          transform:translateZ(0);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:stretch;\n      -ms-flex-align:stretch;\n          align-items:stretch; }\n  .bp3-control-group > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select,\n  .bp3-control-group .bp3-input,\n  .bp3-control-group .bp3-select{\n    position:relative; }\n  .bp3-control-group .bp3-input{\n    border-radius:inherit;\n    z-index:2; }\n    .bp3-control-group .bp3-input:focus{\n      border-radius:3px;\n      z-index:14; }\n    .bp3-control-group .bp3-input[class*=\"bp3-intent\"]{\n      z-index:13; }\n      .bp3-control-group .bp3-input[class*=\"bp3-intent\"]:focus{\n        z-index:15; }\n    .bp3-control-group .bp3-input[readonly], .bp3-control-group .bp3-input:disabled, .bp3-control-group .bp3-input.bp3-disabled{\n      z-index:1; }\n  .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input{\n    z-index:13; }\n    .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input:focus{\n      z-index:15; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select select,\n  .bp3-control-group .bp3-select select{\n    -webkit-transform:translateZ(0);\n            transform:translateZ(0);\n    border-radius:inherit;\n    z-index:4; }\n    .bp3-control-group .bp3-button:focus,\n    .bp3-control-group .bp3-html-select select:focus,\n    .bp3-control-group .bp3-select select:focus{\n      z-index:5; }\n    .bp3-control-group .bp3-button:hover,\n    .bp3-control-group .bp3-html-select select:hover,\n    .bp3-control-group .bp3-select select:hover{\n      z-index:6; }\n    .bp3-control-group .bp3-button:active,\n    .bp3-control-group .bp3-html-select select:active,\n    .bp3-control-group .bp3-select select:active{\n      z-index:7; }\n    .bp3-control-group .bp3-button[readonly], .bp3-control-group .bp3-button:disabled, .bp3-control-group .bp3-button.bp3-disabled,\n    .bp3-control-group .bp3-html-select select[readonly],\n    .bp3-control-group .bp3-html-select select:disabled,\n    .bp3-control-group .bp3-html-select select.bp3-disabled,\n    .bp3-control-group .bp3-select select[readonly],\n    .bp3-control-group .bp3-select select:disabled,\n    .bp3-control-group .bp3-select select.bp3-disabled{\n      z-index:3; }\n    .bp3-control-group .bp3-button[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]{\n      z-index:9; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:focus{\n        z-index:10; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:hover{\n        z-index:11; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:active{\n        z-index:12; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"][readonly], .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:disabled, .bp3-control-group .bp3-button[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"].bp3-disabled{\n        z-index:8; }\n  .bp3-control-group .bp3-input-group > .bp3-icon,\n  .bp3-control-group .bp3-input-group > .bp3-button,\n  .bp3-control-group .bp3-input-group > .bp3-input-left-container,\n  .bp3-control-group .bp3-input-group > .bp3-input-action{\n    z-index:16; }\n  .bp3-control-group .bp3-select::after,\n  .bp3-control-group .bp3-html-select::after,\n  .bp3-control-group .bp3-select > .bp3-icon,\n  .bp3-control-group .bp3-html-select > .bp3-icon{\n    z-index:17; }\n  .bp3-control-group .bp3-select:focus-within{\n    z-index:5; }\n  .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:-1px; }\n  .bp3-control-group:not(.bp3-vertical) > .bp3-divider:not(:first-child){\n    margin-left:6px; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:0; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > .bp3-button + .bp3-button{\n    margin-left:1px; }\n  .bp3-control-group .bp3-popover-wrapper,\n  .bp3-control-group .bp3-popover-target{\n    border-radius:inherit; }\n  .bp3-control-group > :first-child{\n    border-radius:3px 0 0 3px; }\n  .bp3-control-group > :last-child{\n    border-radius:0 3px 3px 0;\n    margin-right:0; }\n  .bp3-control-group > :only-child{\n    border-radius:3px;\n    margin-right:0; }\n  .bp3-control-group .bp3-input-group .bp3-button{\n    border-radius:3px; }\n  .bp3-control-group .bp3-numeric-input:not(:first-child) .bp3-input-group{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-control-group.bp3-fill{\n    width:100%; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-fill > *:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-vertical{\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-control-group.bp3-vertical > *{\n      margin-top:-1px; }\n    .bp3-control-group.bp3-vertical > :first-child{\n      border-radius:3px 3px 0 0;\n      margin-top:0; }\n    .bp3-control-group.bp3-vertical > :last-child{\n      border-radius:0 0 3px 3px; }\n.bp3-control{\n  cursor:pointer;\n  display:block;\n  margin-bottom:10px;\n  position:relative;\n  text-transform:none; }\n  .bp3-control input:checked ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control input:checked ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control:not(.bp3-align-right){\n    padding-left:26px; }\n    .bp3-control:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-26px; }\n  .bp3-control.bp3-align-right{\n    padding-right:26px; }\n    .bp3-control.bp3-align-right .bp3-control-indicator{\n      margin-right:-26px; }\n  .bp3-control.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-control.bp3-inline{\n    display:inline-block;\n    margin-right:20px; }\n  .bp3-control input{\n    left:0;\n    opacity:0;\n    position:absolute;\n    top:0;\n    z-index:-1; }\n  .bp3-control .bp3-control-indicator{\n    background-clip:padding-box;\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    border:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    cursor:pointer;\n    display:inline-block;\n    font-size:16px;\n    height:1em;\n    margin-right:10px;\n    margin-top:-3px;\n    position:relative;\n    -webkit-user-select:none;\n       -moz-user-select:none;\n        -ms-user-select:none;\n            user-select:none;\n    vertical-align:middle;\n    width:1em; }\n    .bp3-control .bp3-control-indicator::before{\n      content:\"\";\n      display:block;\n      height:1em;\n      width:1em; }\n  .bp3-control:hover .bp3-control-indicator{\n    background-color:#ebf1f5; }\n  .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n    background:#d8e1e8;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    cursor:not-allowed; }\n  .bp3-control input:focus ~ .bp3-control-indicator{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:2px;\n    -moz-outline-radius:6px; }\n  .bp3-control.bp3-align-right .bp3-control-indicator{\n    float:right;\n    margin-left:10px;\n    margin-top:1px; }\n  .bp3-control.bp3-large{\n    font-size:16px; }\n    .bp3-control.bp3-large:not(.bp3-align-right){\n      padding-left:30px; }\n      .bp3-control.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n        margin-left:-30px; }\n    .bp3-control.bp3-large.bp3-align-right{\n      padding-right:30px; }\n      .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n        margin-right:-30px; }\n    .bp3-control.bp3-large .bp3-control-indicator{\n      font-size:20px; }\n    .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-top:0; }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control.bp3-checkbox .bp3-control-indicator{\n    border-radius:3px; }\n  .bp3-control.bp3-checkbox input:checked ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0012 5z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-radio .bp3-control-indicator{\n    border-radius:50%; }\n  .bp3-control.bp3-radio input:checked ~ .bp3-control-indicator::before{\n    background-image:radial-gradient(#ffffff, #ffffff 28%, transparent 32%); }\n  .bp3-control.bp3-radio input:checked:disabled ~ .bp3-control-indicator::before{\n    opacity:0.5; }\n  .bp3-control.bp3-radio input:focus ~ .bp3-control-indicator{\n    -moz-outline-radius:16px; }\n  .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(167, 182, 194, 0.5); }\n  .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(115, 134, 148, 0.5); }\n  .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(92, 112, 128, 0.5); }\n  .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5); }\n    .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5); }\n    .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch:not(.bp3-align-right){\n    padding-left:38px; }\n    .bp3-control.bp3-switch:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-38px; }\n  .bp3-control.bp3-switch.bp3-align-right{\n    padding-right:38px; }\n    .bp3-control.bp3-switch.bp3-align-right .bp3-control-indicator{\n      margin-right:-38px; }\n  .bp3-control.bp3-switch .bp3-control-indicator{\n    border:none;\n    border-radius:1.75em;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important;\n    min-width:1.75em;\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:auto; }\n    .bp3-control.bp3-switch .bp3-control-indicator::before{\n      background:#ffffff;\n      border-radius:50%;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n      height:calc(1em - 4px);\n      left:0;\n      margin:2px;\n      position:absolute;\n      -webkit-transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      width:calc(1em - 4px); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    left:calc(100% - 1em); }\n  .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right){\n    padding-left:45px; }\n    .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-45px; }\n  .bp3-control.bp3-switch.bp3-large.bp3-align-right{\n    padding-right:45px; }\n    .bp3-control.bp3-switch.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-right:-45px; }\n  .bp3-dark .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.7); }\n  .bp3-dark .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.9); }\n  .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(57, 75, 89, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-dark .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch .bp3-control-indicator::before{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-control.bp3-switch .bp3-switch-inner-text{\n    font-size:0.7em;\n    text-align:center; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:first-child{\n    line-height:0;\n    margin-left:0.5em;\n    margin-right:1.2em;\n    visibility:hidden; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:last-child{\n    line-height:1em;\n    margin-left:1.2em;\n    margin-right:0.5em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:first-child{\n    line-height:1em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:last-child{\n    line-height:0;\n    visibility:hidden; }\n  .bp3-dark .bp3-control{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-control.bp3-disabled{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-control .bp3-control-indicator{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-control:hover .bp3-control-indicator{\n      background-color:#30404d; }\n    .bp3-dark .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n      background:#202b33;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-control input:disabled ~ .bp3-control-indicator{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      cursor:not-allowed; }\n    .bp3-dark .bp3-control.bp3-checkbox input:disabled:checked ~ .bp3-control-indicator, .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-file-input{\n  cursor:pointer;\n  display:inline-block;\n  height:30px;\n  position:relative; }\n  .bp3-file-input input{\n    margin:0;\n    min-width:200px;\n    opacity:0; }\n    .bp3-file-input input:disabled + .bp3-file-upload-input,\n    .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n      background:rgba(206, 217, 224, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      resize:none; }\n      .bp3-file-input input:disabled + .bp3-file-upload-input::after,\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n        background-color:rgba(206, 217, 224, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(92, 112, 128, 0.6);\n        cursor:not-allowed;\n        outline:none; }\n        .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active:hover,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active:hover{\n          background:rgba(206, 217, 224, 0.7); }\n      .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input, .bp3-dark\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n        background:rgba(57, 75, 89, 0.5);\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after, .bp3-dark\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n          background-color:rgba(57, 75, 89, 0.5);\n          background-image:none;\n          -webkit-box-shadow:none;\n                  box-shadow:none;\n          color:rgba(167, 182, 194, 0.6); }\n          .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-dark\n          .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active{\n            background:rgba(57, 75, 89, 0.7); }\n  .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#182026; }\n  .bp3-dark .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#f5f8fa; }\n  .bp3-file-input.bp3-fill{\n    width:100%; }\n  .bp3-file-input.bp3-large,\n  .bp3-large .bp3-file-input{\n    height:40px; }\n  .bp3-file-input .bp3-file-upload-input-custom-text::after{\n    content:attr(bp3-button-text); }\n\n.bp3-file-upload-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle;\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:rgba(92, 112, 128, 0.6);\n  left:0;\n  padding-right:80px;\n  position:absolute;\n  right:0;\n  top:0;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-file-upload-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:focus, .bp3-file-upload-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-file-upload-input[type=\"search\"], .bp3-file-upload-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-file-upload-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-file-upload-input:disabled, .bp3-file-upload-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-file-upload-input::after{\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026;\n    min-height:24px;\n    min-width:24px;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    border-radius:3px;\n    content:\"Browse\";\n    line-height:24px;\n    margin:3px;\n    position:absolute;\n    right:0;\n    text-align:center;\n    top:0;\n    width:70px; }\n    .bp3-file-upload-input::after:hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-file-upload-input::after:active, .bp3-file-upload-input::after.bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-file-upload-input::after:disabled, .bp3-file-upload-input::after.bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-file-upload-input::after:disabled.bp3-active, .bp3-file-upload-input::after:disabled.bp3-active:hover, .bp3-file-upload-input::after.bp3-disabled.bp3-active, .bp3-file-upload-input::after.bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-file-upload-input:hover::after{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-file-upload-input:active::after{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-large .bp3-file-upload-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px;\n    padding-right:95px; }\n    .bp3-large .bp3-file-upload-input[type=\"search\"], .bp3-large .bp3-file-upload-input.bp3-round{\n      padding:0 15px; }\n    .bp3-large .bp3-file-upload-input::after{\n      min-height:30px;\n      min-width:30px;\n      line-height:30px;\n      margin:5px;\n      width:85px; }\n  .bp3-dark .bp3-file-upload-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:disabled, .bp3-dark .bp3-file-upload-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::after{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n      color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover, .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover{\n        background-color:#30404d;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        background-color:#202b33;\n        background-image:none;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n      .bp3-dark .bp3-file-upload-input::after:disabled, .bp3-dark .bp3-file-upload-input::after.bp3-disabled{\n        background-color:rgba(57, 75, 89, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-upload-input::after:disabled.bp3-active, .bp3-dark .bp3-file-upload-input::after.bp3-disabled.bp3-active{\n          background:rgba(57, 75, 89, 0.7); }\n      .bp3-dark .bp3-file-upload-input::after .bp3-button-spinner .bp3-spinner-head{\n        background:rgba(16, 22, 26, 0.5);\n        stroke:#8a9ba8; }\n    .bp3-dark .bp3-file-upload-input:hover::after{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:active::after{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n.bp3-file-upload-input::after{\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n.bp3-form-group{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0 0 15px; }\n  .bp3-form-group label.bp3-label{\n    margin-bottom:5px; }\n  .bp3-form-group .bp3-control{\n    margin-top:7px; }\n  .bp3-form-group .bp3-form-helper-text{\n    color:#5c7080;\n    font-size:12px;\n    margin-top:5px; }\n  .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#106ba3; }\n  .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#0d8050; }\n  .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#bf7326; }\n  .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#c23030; }\n  .bp3-form-group.bp3-inline{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row; }\n    .bp3-form-group.bp3-inline.bp3-large label.bp3-label{\n      line-height:40px;\n      margin:0 10px 0 0; }\n    .bp3-form-group.bp3-inline label.bp3-label{\n      line-height:30px;\n      margin:0 10px 0 0; }\n  .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-dark .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#48aff0; }\n  .bp3-dark .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#3dcc91; }\n  .bp3-dark .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#ffb366; }\n  .bp3-dark .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#ff7373; }\n  .bp3-dark .bp3-form-group .bp3-form-helper-text{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(167, 182, 194, 0.6) !important; }\n.bp3-input-group{\n  display:block;\n  position:relative; }\n  .bp3-input-group .bp3-input{\n    position:relative;\n    width:100%; }\n    .bp3-input-group .bp3-input:not(:first-child){\n      padding-left:30px; }\n    .bp3-input-group .bp3-input:not(:last-child){\n      padding-right:30px; }\n  .bp3-input-group .bp3-input-action,\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-button,\n  .bp3-input-group > .bp3-icon{\n    position:absolute;\n    top:0; }\n    .bp3-input-group .bp3-input-action:first-child,\n    .bp3-input-group > .bp3-input-left-container:first-child,\n    .bp3-input-group > .bp3-button:first-child,\n    .bp3-input-group > .bp3-icon:first-child{\n      left:0; }\n    .bp3-input-group .bp3-input-action:last-child,\n    .bp3-input-group > .bp3-input-left-container:last-child,\n    .bp3-input-group > .bp3-button:last-child,\n    .bp3-input-group > .bp3-icon:last-child{\n      right:0; }\n  .bp3-input-group .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    margin:3px;\n    padding:0 7px; }\n    .bp3-input-group .bp3-button:empty{\n      padding:0; }\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-icon{\n    z-index:1; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon{\n    color:#5c7080; }\n    .bp3-input-group > .bp3-input-left-container > .bp3-icon:empty,\n    .bp3-input-group > .bp3-icon:empty{\n      font-family:\"Icons16\", sans-serif;\n      font-size:16px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon,\n  .bp3-input-group .bp3-input-action > .bp3-spinner{\n    margin:7px; }\n  .bp3-input-group .bp3-tag{\n    margin:5px; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus),\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n    color:#5c7080; }\n    .bp3-dark .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus), .bp3-dark\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n      color:#a7b6c2; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large{\n      color:#5c7080; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled,\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled{\n    color:rgba(92, 112, 128, 0.6) !important; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-large{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-input-group.bp3-disabled{\n    cursor:not-allowed; }\n    .bp3-input-group.bp3-disabled .bp3-icon{\n      color:rgba(92, 112, 128, 0.6); }\n  .bp3-input-group.bp3-large .bp3-button{\n    min-height:30px;\n    min-width:30px;\n    margin:5px; }\n  .bp3-input-group.bp3-large > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-large > .bp3-icon,\n  .bp3-input-group.bp3-large .bp3-input-action > .bp3-spinner{\n    margin:12px; }\n  .bp3-input-group.bp3-large .bp3-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input-group.bp3-large .bp3-input[type=\"search\"], .bp3-input-group.bp3-large .bp3-input.bp3-round{\n      padding:0 15px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:first-child){\n      padding-left:40px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:last-child){\n      padding-right:40px; }\n  .bp3-input-group.bp3-small .bp3-button{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small .bp3-tag{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-small > .bp3-icon,\n  .bp3-input-group.bp3-small .bp3-input-action > .bp3-spinner{\n    margin:4px; }\n  .bp3-input-group.bp3-small .bp3-input{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input-group.bp3-small .bp3-input[type=\"search\"], .bp3-input-group.bp3-small .bp3-input.bp3-round{\n      padding:0 12px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:first-child){\n      padding-left:24px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:last-child){\n      padding-right:24px; }\n  .bp3-input-group.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-input-group.bp3-round .bp3-button,\n  .bp3-input-group.bp3-round .bp3-input,\n  .bp3-input-group.bp3-round .bp3-tag{\n    border-radius:30px; }\n  .bp3-dark .bp3-input-group .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-input-group.bp3-disabled .bp3-icon{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-input-group.bp3-intent-primary .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input-group.bp3-intent-primary .bp3-input:disabled, .bp3-input-group.bp3-intent-primary .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-primary > .bp3-icon{\n    color:#106ba3; }\n    .bp3-dark .bp3-input-group.bp3-intent-primary > .bp3-icon{\n      color:#48aff0; }\n  .bp3-input-group.bp3-intent-success .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input-group.bp3-intent-success .bp3-input:disabled, .bp3-input-group.bp3-intent-success .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-success > .bp3-icon{\n    color:#0d8050; }\n    .bp3-dark .bp3-input-group.bp3-intent-success > .bp3-icon{\n      color:#3dcc91; }\n  .bp3-input-group.bp3-intent-warning .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input-group.bp3-intent-warning .bp3-input:disabled, .bp3-input-group.bp3-intent-warning .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-warning > .bp3-icon{\n    color:#bf7326; }\n    .bp3-dark .bp3-input-group.bp3-intent-warning > .bp3-icon{\n      color:#ffb366; }\n  .bp3-input-group.bp3-intent-danger .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input-group.bp3-intent-danger .bp3-input:disabled, .bp3-input-group.bp3-intent-danger .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-danger > .bp3-icon{\n    color:#c23030; }\n    .bp3-dark .bp3-input-group.bp3-intent-danger > .bp3-icon{\n      color:#ff7373; }\n.bp3-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle; }\n  .bp3-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:focus, .bp3-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-input[type=\"search\"], .bp3-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-input:disabled, .bp3-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-input.bp3-large{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input.bp3-large[type=\"search\"], .bp3-input.bp3-large.bp3-round{\n      padding:0 15px; }\n  .bp3-input.bp3-small{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input.bp3-small[type=\"search\"], .bp3-input.bp3-small.bp3-round{\n      padding:0 12px; }\n  .bp3-input.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-dark .bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input:disabled, .bp3-dark .bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-input.bp3-intent-primary{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input.bp3-intent-primary:disabled, .bp3-input.bp3-intent-primary.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary:focus{\n        -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n                box-shadow:inset 0 0 0 1px #137cbd; }\n      .bp3-dark .bp3-input.bp3-intent-primary:disabled, .bp3-dark .bp3-input.bp3-intent-primary.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-success{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input.bp3-intent-success:disabled, .bp3-input.bp3-intent-success.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success:focus{\n        -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n                box-shadow:inset 0 0 0 1px #0f9960; }\n      .bp3-dark .bp3-input.bp3-intent-success:disabled, .bp3-dark .bp3-input.bp3-intent-success.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-warning{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input.bp3-intent-warning:disabled, .bp3-input.bp3-intent-warning.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning:focus{\n        -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n                box-shadow:inset 0 0 0 1px #d9822b; }\n      .bp3-dark .bp3-input.bp3-intent-warning:disabled, .bp3-dark .bp3-input.bp3-intent-warning.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-danger{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input.bp3-intent-danger:disabled, .bp3-input.bp3-intent-danger.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger:focus{\n        -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #db3737;\n                box-shadow:inset 0 0 0 1px #db3737; }\n      .bp3-dark .bp3-input.bp3-intent-danger:disabled, .bp3-dark .bp3-input.bp3-intent-danger.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input::-ms-clear{\n    display:none; }\ntextarea.bp3-input{\n  max-width:100%;\n  padding:10px; }\n  textarea.bp3-input, textarea.bp3-input.bp3-large, textarea.bp3-input.bp3-small{\n    height:auto;\n    line-height:inherit; }\n  textarea.bp3-input.bp3-small{\n    padding:8px; }\n  .bp3-dark textarea.bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark textarea.bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input:disabled, .bp3-dark textarea.bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\nlabel.bp3-label{\n  display:block;\n  margin-bottom:15px;\n  margin-top:0; }\n  label.bp3-label .bp3-html-select,\n  label.bp3-label .bp3-input,\n  label.bp3-label .bp3-select,\n  label.bp3-label .bp3-slider,\n  label.bp3-label .bp3-popover-wrapper{\n    display:block;\n    margin-top:5px;\n    text-transform:none; }\n  label.bp3-label .bp3-button-group{\n    margin-top:5px; }\n  label.bp3-label .bp3-select select,\n  label.bp3-label .bp3-html-select select{\n    font-weight:400;\n    vertical-align:top;\n    width:100%; }\n  label.bp3-label.bp3-disabled,\n  label.bp3-label.bp3-disabled .bp3-text-muted{\n    color:rgba(92, 112, 128, 0.6); }\n  label.bp3-label.bp3-inline{\n    line-height:30px; }\n    label.bp3-label.bp3-inline .bp3-html-select,\n    label.bp3-label.bp3-inline .bp3-input,\n    label.bp3-label.bp3-inline .bp3-input-group,\n    label.bp3-label.bp3-inline .bp3-select,\n    label.bp3-label.bp3-inline .bp3-popover-wrapper{\n      display:inline-block;\n      margin:0 0 0 5px;\n      vertical-align:top; }\n    label.bp3-label.bp3-inline .bp3-button-group{\n      margin:0 0 0 5px; }\n    label.bp3-label.bp3-inline .bp3-input-group .bp3-input{\n      margin-left:0; }\n    label.bp3-label.bp3-inline.bp3-large{\n      line-height:40px; }\n  label.bp3-label:not(.bp3-inline) .bp3-popover-target{\n    display:block; }\n  .bp3-dark label.bp3-label{\n    color:#f5f8fa; }\n    .bp3-dark label.bp3-label.bp3-disabled,\n    .bp3-dark label.bp3-label.bp3-disabled .bp3-text-muted{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 14px;\n          flex:1 1 14px;\n  min-height:0;\n  padding:0;\n  width:30px; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:first-child{\n    border-radius:0 3px 0 0; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:last-child{\n    border-radius:0 0 3px 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:first-child{\n  border-radius:3px 0 0 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:last-child{\n  border-radius:0 0 0 3px; }\n\n.bp3-numeric-input.bp3-large .bp3-button-group.bp3-vertical > .bp3-button{\n  width:40px; }\n\nform{\n  display:block; }\n.bp3-html-select select,\n.bp3-select select{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  -moz-appearance:none;\n  -webkit-appearance:none;\n  border-radius:3px;\n  height:30px;\n  padding:0 25px 0 10px;\n  width:100%; }\n  .bp3-html-select select > *, .bp3-select select > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-html-select select > .bp3-fill, .bp3-select select > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-html-select select::before,\n  .bp3-select select::before, .bp3-html-select select > *, .bp3-select select > *{\n    margin-right:7px; }\n  .bp3-html-select select:empty::before,\n  .bp3-select select:empty::before,\n  .bp3-html-select select > :last-child,\n  .bp3-select select > :last-child{\n    margin-right:0; }\n  .bp3-html-select select:hover,\n  .bp3-select select:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-html-select select:active,\n  .bp3-select select:active, .bp3-html-select select.bp3-active,\n  .bp3-select select.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-html-select select:disabled,\n  .bp3-select select:disabled, .bp3-html-select select.bp3-disabled,\n  .bp3-select select.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-html-select select:disabled.bp3-active,\n    .bp3-select select:disabled.bp3-active, .bp3-html-select select:disabled.bp3-active:hover,\n    .bp3-select select:disabled.bp3-active:hover, .bp3-html-select select.bp3-disabled.bp3-active,\n    .bp3-select select.bp3-disabled.bp3-active, .bp3-html-select select.bp3-disabled.bp3-active:hover,\n    .bp3-select select.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n\n.bp3-html-select.bp3-minimal select,\n.bp3-select.bp3-minimal select{\n  background:none;\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  .bp3-html-select.bp3-minimal select:hover,\n  .bp3-select.bp3-minimal select:hover{\n    background:rgba(167, 182, 194, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026;\n    text-decoration:none; }\n  .bp3-html-select.bp3-minimal select:active,\n  .bp3-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal select.bp3-active,\n  .bp3-select.bp3-minimal select.bp3-active{\n    background:rgba(115, 134, 148, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026; }\n  .bp3-html-select.bp3-minimal select:disabled,\n  .bp3-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal select:disabled:hover,\n  .bp3-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal select.bp3-disabled,\n  .bp3-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal select.bp3-disabled:hover,\n  .bp3-select.bp3-minimal select.bp3-disabled:hover{\n    background:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n    .bp3-html-select.bp3-minimal select:disabled.bp3-active,\n    .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active{\n      background:rgba(115, 134, 148, 0.3); }\n  .bp3-dark .bp3-html-select.bp3-minimal select, .bp3-html-select.bp3-minimal .bp3-dark select,\n  .bp3-dark .bp3-select.bp3-minimal select, .bp3-select.bp3-minimal .bp3-dark select{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover, .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover{\n      background:rgba(138, 155, 168, 0.15); }\n    .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:rgba(138, 155, 168, 0.3);\n      color:#f5f8fa; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal .bp3-dark select:disabled,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled, .bp3-select.bp3-minimal .bp3-dark select:disabled, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled:hover, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover{\n      background:none;\n      color:rgba(167, 182, 194, 0.6);\n      cursor:not-allowed; }\n      .bp3-dark .bp3-html-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active{\n        background:rgba(138, 155, 168, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-primary,\n  .bp3-select.bp3-minimal select.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover{\n      background:rgba(19, 124, 189, 0.15);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:rgba(19, 124, 189, 0.3);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled{\n      background:none;\n      color:rgba(16, 107, 163, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active{\n        background:rgba(19, 124, 189, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n      stroke:#106ba3; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary{\n      color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.2);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(72, 175, 240, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-success,\n  .bp3-select.bp3-minimal select.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover{\n      background:rgba(15, 153, 96, 0.15);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:rgba(15, 153, 96, 0.3);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled{\n      background:none;\n      color:rgba(13, 128, 80, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active{\n        background:rgba(15, 153, 96, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n      stroke:#0d8050; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success{\n      color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.2);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(61, 204, 145, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-warning,\n  .bp3-select.bp3-minimal select.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover{\n      background:rgba(217, 130, 43, 0.15);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:rgba(217, 130, 43, 0.3);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled{\n      background:none;\n      color:rgba(191, 115, 38, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active{\n        background:rgba(217, 130, 43, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n      stroke:#bf7326; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning{\n      color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.2);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(255, 179, 102, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-danger,\n  .bp3-select.bp3-minimal select.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover{\n      background:rgba(219, 55, 55, 0.15);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:rgba(219, 55, 55, 0.3);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled{\n      background:none;\n      color:rgba(194, 48, 48, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active{\n        background:rgba(219, 55, 55, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n      stroke:#c23030; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger{\n      color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.2);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(255, 115, 115, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n\n.bp3-html-select.bp3-large select,\n.bp3-select.bp3-large select{\n  font-size:16px;\n  height:40px;\n  padding-right:35px; }\n\n.bp3-dark .bp3-html-select select, .bp3-dark .bp3-select select{\n  background-color:#394b59;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n  color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover, .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    background-color:#202b33;\n    background-image:none;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-html-select select:disabled, .bp3-dark .bp3-select select:disabled, .bp3-dark .bp3-html-select select.bp3-disabled, .bp3-dark .bp3-select select.bp3-disabled{\n    background-color:rgba(57, 75, 89, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-html-select select:disabled.bp3-active, .bp3-dark .bp3-select select:disabled.bp3-active, .bp3-dark .bp3-html-select select.bp3-disabled.bp3-active, .bp3-dark .bp3-select select.bp3-disabled.bp3-active{\n      background:rgba(57, 75, 89, 0.7); }\n  .bp3-dark .bp3-html-select select .bp3-button-spinner .bp3-spinner-head, .bp3-dark .bp3-select select .bp3-button-spinner .bp3-spinner-head{\n    background:rgba(16, 22, 26, 0.5);\n    stroke:#8a9ba8; }\n\n.bp3-html-select select:disabled,\n.bp3-select select:disabled{\n  background-color:rgba(206, 217, 224, 0.5);\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-html-select .bp3-icon,\n.bp3-select .bp3-icon, .bp3-select::after{\n  color:#5c7080;\n  pointer-events:none;\n  position:absolute;\n  right:7px;\n  top:7px; }\n  .bp3-html-select .bp3-disabled.bp3-icon,\n  .bp3-select .bp3-disabled.bp3-icon, .bp3-disabled.bp3-select::after{\n    color:rgba(92, 112, 128, 0.6); }\n.bp3-html-select,\n.bp3-select{\n  display:inline-block;\n  letter-spacing:normal;\n  position:relative;\n  vertical-align:middle; }\n  .bp3-html-select select::-ms-expand,\n  .bp3-select select::-ms-expand{\n    display:none; }\n  .bp3-html-select .bp3-icon,\n  .bp3-select .bp3-icon{\n    color:#5c7080; }\n    .bp3-html-select .bp3-icon:hover,\n    .bp3-select .bp3-icon:hover{\n      color:#182026; }\n    .bp3-dark .bp3-html-select .bp3-icon, .bp3-dark\n    .bp3-select .bp3-icon{\n      color:#a7b6c2; }\n      .bp3-dark .bp3-html-select .bp3-icon:hover, .bp3-dark\n      .bp3-select .bp3-icon:hover{\n        color:#f5f8fa; }\n  .bp3-html-select.bp3-large::after,\n  .bp3-html-select.bp3-large .bp3-icon,\n  .bp3-select.bp3-large::after,\n  .bp3-select.bp3-large .bp3-icon{\n    right:12px;\n    top:12px; }\n  .bp3-html-select.bp3-fill,\n  .bp3-html-select.bp3-fill select,\n  .bp3-select.bp3-fill,\n  .bp3-select.bp3-fill select{\n    width:100%; }\n  .bp3-dark .bp3-html-select option, .bp3-dark\n  .bp3-select option{\n    background-color:#30404d;\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select option:disabled, .bp3-dark\n  .bp3-select option:disabled{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-html-select::after, .bp3-dark\n  .bp3-select::after{\n    color:#a7b6c2; }\n\n.bp3-select::after{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  content:\"\"; }\n.bp3-running-text table, table.bp3-html-table{\n  border-spacing:0;\n  font-size:14px; }\n  .bp3-running-text table th, table.bp3-html-table th,\n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    padding:11px;\n    text-align:left;\n    vertical-align:top; }\n  .bp3-running-text table th, table.bp3-html-table th{\n    color:#182026;\n    font-weight:600; }\n  \n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    color:#182026; }\n  .bp3-running-text table tbody tr:first-child th, table.bp3-html-table tbody tr:first-child th,\n  .bp3-running-text table tbody tr:first-child td,\n  table.bp3-html-table tbody tr:first-child td,\n  .bp3-running-text table tfoot tr:first-child th,\n  table.bp3-html-table tfoot tr:first-child th,\n  .bp3-running-text table tfoot tr:first-child td,\n  table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-running-text table th, .bp3-running-text .bp3-dark table th, .bp3-dark table.bp3-html-table th{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table td, .bp3-running-text .bp3-dark table td, .bp3-dark table.bp3-html-table td{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table tbody tr:first-child th, .bp3-running-text .bp3-dark table tbody tr:first-child th, .bp3-dark table.bp3-html-table tbody tr:first-child th,\n  .bp3-dark .bp3-running-text table tbody tr:first-child td,\n  .bp3-running-text .bp3-dark table tbody tr:first-child td,\n  .bp3-dark table.bp3-html-table tbody tr:first-child td,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child th,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child th,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child th,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child td,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child td,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-condensed th,\ntable.bp3-html-table.bp3-html-table-condensed td, table.bp3-html-table.bp3-small th,\ntable.bp3-html-table.bp3-small td{\n  padding-bottom:6px;\n  padding-top:6px; }\n\ntable.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n  background:rgba(191, 204, 214, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n  -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered tbody tr td,\ntable.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n  -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n  table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n    -webkit-box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-interactive tbody tr:hover td{\n  background-color:rgba(191, 204, 214, 0.3);\n  cursor:pointer; }\n\ntable.bp3-html-table.bp3-interactive tbody tr:active td{\n  background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-dark table.bp3-html-table{ }\n  .bp3-dark table.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n    background:rgba(92, 112, 128, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td,\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n      -webkit-box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15);\n              box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:first-child{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:hover td{\n    background-color:rgba(92, 112, 128, 0.3);\n    cursor:pointer; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:active td{\n    background-color:rgba(92, 112, 128, 0.4); }\n\n.bp3-key-combo{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center; }\n  .bp3-key-combo > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-key-combo > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-key-combo::before,\n  .bp3-key-combo > *{\n    margin-right:5px; }\n  .bp3-key-combo:empty::before,\n  .bp3-key-combo > :last-child{\n    margin-right:0; }\n\n.bp3-hotkey-dialog{\n  padding-bottom:0;\n  top:40px; }\n  .bp3-hotkey-dialog .bp3-dialog-body{\n    margin:0;\n    padding:0; }\n  .bp3-hotkey-dialog .bp3-hotkey-label{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1; }\n\n.bp3-hotkey-column{\n  margin:auto;\n  max-height:80vh;\n  overflow-y:auto;\n  padding:30px; }\n  .bp3-hotkey-column .bp3-heading{\n    margin-bottom:20px; }\n    .bp3-hotkey-column .bp3-heading:not(:first-child){\n      margin-top:40px; }\n\n.bp3-hotkey{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:justify;\n      -ms-flex-pack:justify;\n          justify-content:space-between;\n  margin-left:0;\n  margin-right:0; }\n  .bp3-hotkey:not(:last-child){\n    margin-bottom:10px; }\n.bp3-icon{\n  display:inline-block;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  vertical-align:text-bottom; }\n  .bp3-icon:not(:empty)::before{\n    content:\"\" !important;\n    content:unset !important; }\n  .bp3-icon > svg{\n    display:block; }\n    .bp3-icon > svg:not([fill]){\n      fill:currentColor; }\n\n.bp3-icon.bp3-intent-primary, .bp3-icon-standard.bp3-intent-primary, .bp3-icon-large.bp3-intent-primary{\n  color:#106ba3; }\n  .bp3-dark .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-icon-large.bp3-intent-primary{\n    color:#48aff0; }\n\n.bp3-icon.bp3-intent-success, .bp3-icon-standard.bp3-intent-success, .bp3-icon-large.bp3-intent-success{\n  color:#0d8050; }\n  .bp3-dark .bp3-icon.bp3-intent-success, .bp3-dark .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-icon-large.bp3-intent-success{\n    color:#3dcc91; }\n\n.bp3-icon.bp3-intent-warning, .bp3-icon-standard.bp3-intent-warning, .bp3-icon-large.bp3-intent-warning{\n  color:#bf7326; }\n  .bp3-dark .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-icon-large.bp3-intent-warning{\n    color:#ffb366; }\n\n.bp3-icon.bp3-intent-danger, .bp3-icon-standard.bp3-intent-danger, .bp3-icon-large.bp3-intent-danger{\n  color:#c23030; }\n  .bp3-dark .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-icon-large.bp3-intent-danger{\n    color:#ff7373; }\n\nspan.bp3-icon-standard{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon-large{\n  font-family:\"Icons20\", sans-serif;\n  font-size:20px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon:empty{\n  font-family:\"Icons20\";\n  font-size:inherit;\n  font-style:normal;\n  font-weight:400;\n  line-height:1; }\n  span.bp3-icon:empty::before{\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased; }\n\n.bp3-icon-add::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-artifact::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-folder::before{\n  content:\"\"; }\n\n.bp3-icon-airplane::before{\n  content:\"\"; }\n\n.bp3-icon-align-center::before{\n  content:\"\"; }\n\n.bp3-icon-align-justify::before{\n  content:\"\"; }\n\n.bp3-icon-align-left::before{\n  content:\"\"; }\n\n.bp3-icon-align-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-horizontal-center::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-left::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-top::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-vertical-center::before{\n  content:\"\"; }\n\n.bp3-icon-annotation::before{\n  content:\"\"; }\n\n.bp3-icon-application::before{\n  content:\"\"; }\n\n.bp3-icon-applications::before{\n  content:\"\"; }\n\n.bp3-icon-archive::before{\n  content:\"\"; }\n\n.bp3-icon-arrow-bottom-left::before{\n  content:\"↙\"; }\n\n.bp3-icon-arrow-bottom-right::before{\n  content:\"↘\"; }\n\n.bp3-icon-arrow-down::before{\n  content:\"↓\"; }\n\n.bp3-icon-arrow-left::before{\n  content:\"←\"; }\n\n.bp3-icon-arrow-right::before{\n  content:\"→\"; }\n\n.bp3-icon-arrow-top-left::before{\n  content:\"↖\"; }\n\n.bp3-icon-arrow-top-right::before{\n  content:\"↗\"; }\n\n.bp3-icon-arrow-up::before{\n  content:\"↑\"; }\n\n.bp3-icon-arrows-horizontal::before{\n  content:\"↔\"; }\n\n.bp3-icon-arrows-vertical::before{\n  content:\"↕\"; }\n\n.bp3-icon-asterisk::before{\n  content:\"*\"; }\n\n.bp3-icon-automatic-updates::before{\n  content:\"\"; }\n\n.bp3-icon-badge::before{\n  content:\"\"; }\n\n.bp3-icon-ban-circle::before{\n  content:\"\"; }\n\n.bp3-icon-bank-account::before{\n  content:\"\"; }\n\n.bp3-icon-barcode::before{\n  content:\"\"; }\n\n.bp3-icon-blank::before{\n  content:\"\"; }\n\n.bp3-icon-blocked-person::before{\n  content:\"\"; }\n\n.bp3-icon-bold::before{\n  content:\"\"; }\n\n.bp3-icon-book::before{\n  content:\"\"; }\n\n.bp3-icon-bookmark::before{\n  content:\"\"; }\n\n.bp3-icon-box::before{\n  content:\"\"; }\n\n.bp3-icon-briefcase::before{\n  content:\"\"; }\n\n.bp3-icon-bring-data::before{\n  content:\"\"; }\n\n.bp3-icon-build::before{\n  content:\"\"; }\n\n.bp3-icon-calculator::before{\n  content:\"\"; }\n\n.bp3-icon-calendar::before{\n  content:\"\"; }\n\n.bp3-icon-camera::before{\n  content:\"\"; }\n\n.bp3-icon-caret-down::before{\n  content:\"⌄\"; }\n\n.bp3-icon-caret-left::before{\n  content:\"〈\"; }\n\n.bp3-icon-caret-right::before{\n  content:\"〉\"; }\n\n.bp3-icon-caret-up::before{\n  content:\"⌃\"; }\n\n.bp3-icon-cell-tower::before{\n  content:\"\"; }\n\n.bp3-icon-changes::before{\n  content:\"\"; }\n\n.bp3-icon-chart::before{\n  content:\"\"; }\n\n.bp3-icon-chat::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-backward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-forward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-circle::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-down::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-left::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-right::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-up::before{\n  content:\"\"; }\n\n.bp3-icon-citation::before{\n  content:\"\"; }\n\n.bp3-icon-clean::before{\n  content:\"\"; }\n\n.bp3-icon-clipboard::before{\n  content:\"\"; }\n\n.bp3-icon-cloud::before{\n  content:\"☁\"; }\n\n.bp3-icon-cloud-download::before{\n  content:\"\"; }\n\n.bp3-icon-cloud-upload::before{\n  content:\"\"; }\n\n.bp3-icon-code::before{\n  content:\"\"; }\n\n.bp3-icon-code-block::before{\n  content:\"\"; }\n\n.bp3-icon-cog::before{\n  content:\"\"; }\n\n.bp3-icon-collapse-all::before{\n  content:\"\"; }\n\n.bp3-icon-column-layout::before{\n  content:\"\"; }\n\n.bp3-icon-comment::before{\n  content:\"\"; }\n\n.bp3-icon-comparison::before{\n  content:\"\"; }\n\n.bp3-icon-compass::before{\n  content:\"\"; }\n\n.bp3-icon-compressed::before{\n  content:\"\"; }\n\n.bp3-icon-confirm::before{\n  content:\"\"; }\n\n.bp3-icon-console::before{\n  content:\"\"; }\n\n.bp3-icon-contrast::before{\n  content:\"\"; }\n\n.bp3-icon-control::before{\n  content:\"\"; }\n\n.bp3-icon-credit-card::before{\n  content:\"\"; }\n\n.bp3-icon-cross::before{\n  content:\"✗\"; }\n\n.bp3-icon-crown::before{\n  content:\"\"; }\n\n.bp3-icon-cube::before{\n  content:\"\"; }\n\n.bp3-icon-cube-add::before{\n  content:\"\"; }\n\n.bp3-icon-cube-remove::before{\n  content:\"\"; }\n\n.bp3-icon-curved-range-chart::before{\n  content:\"\"; }\n\n.bp3-icon-cut::before{\n  content:\"\"; }\n\n.bp3-icon-dashboard::before{\n  content:\"\"; }\n\n.bp3-icon-data-lineage::before{\n  content:\"\"; }\n\n.bp3-icon-database::before{\n  content:\"\"; }\n\n.bp3-icon-delete::before{\n  content:\"\"; }\n\n.bp3-icon-delta::before{\n  content:\"Δ\"; }\n\n.bp3-icon-derive-column::before{\n  content:\"\"; }\n\n.bp3-icon-desktop::before{\n  content:\"\"; }\n\n.bp3-icon-diagnosis::before{\n  content:\"\"; }\n\n.bp3-icon-diagram-tree::before{\n  content:\"\"; }\n\n.bp3-icon-direction-left::before{\n  content:\"\"; }\n\n.bp3-icon-direction-right::before{\n  content:\"\"; }\n\n.bp3-icon-disable::before{\n  content:\"\"; }\n\n.bp3-icon-document::before{\n  content:\"\"; }\n\n.bp3-icon-document-open::before{\n  content:\"\"; }\n\n.bp3-icon-document-share::before{\n  content:\"\"; }\n\n.bp3-icon-dollar::before{\n  content:\"$\"; }\n\n.bp3-icon-dot::before{\n  content:\"•\"; }\n\n.bp3-icon-double-caret-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-double-caret-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-doughnut-chart::before{\n  content:\"\"; }\n\n.bp3-icon-download::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-draw::before{\n  content:\"\"; }\n\n.bp3-icon-drive-time::before{\n  content:\"\"; }\n\n.bp3-icon-duplicate::before{\n  content:\"\"; }\n\n.bp3-icon-edit::before{\n  content:\"✎\"; }\n\n.bp3-icon-eject::before{\n  content:\"⏏\"; }\n\n.bp3-icon-endorsed::before{\n  content:\"\"; }\n\n.bp3-icon-envelope::before{\n  content:\"✉\"; }\n\n.bp3-icon-equals::before{\n  content:\"\"; }\n\n.bp3-icon-eraser::before{\n  content:\"\"; }\n\n.bp3-icon-error::before{\n  content:\"\"; }\n\n.bp3-icon-euro::before{\n  content:\"€\"; }\n\n.bp3-icon-exchange::before{\n  content:\"\"; }\n\n.bp3-icon-exclude-row::before{\n  content:\"\"; }\n\n.bp3-icon-expand-all::before{\n  content:\"\"; }\n\n.bp3-icon-export::before{\n  content:\"\"; }\n\n.bp3-icon-eye-off::before{\n  content:\"\"; }\n\n.bp3-icon-eye-on::before{\n  content:\"\"; }\n\n.bp3-icon-eye-open::before{\n  content:\"\"; }\n\n.bp3-icon-fast-backward::before{\n  content:\"\"; }\n\n.bp3-icon-fast-forward::before{\n  content:\"\"; }\n\n.bp3-icon-feed::before{\n  content:\"\"; }\n\n.bp3-icon-feed-subscribed::before{\n  content:\"\"; }\n\n.bp3-icon-film::before{\n  content:\"\"; }\n\n.bp3-icon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-filter-keep::before{\n  content:\"\"; }\n\n.bp3-icon-filter-list::before{\n  content:\"\"; }\n\n.bp3-icon-filter-open::before{\n  content:\"\"; }\n\n.bp3-icon-filter-remove::before{\n  content:\"\"; }\n\n.bp3-icon-flag::before{\n  content:\"⚑\"; }\n\n.bp3-icon-flame::before{\n  content:\"\"; }\n\n.bp3-icon-flash::before{\n  content:\"\"; }\n\n.bp3-icon-floppy-disk::before{\n  content:\"\"; }\n\n.bp3-icon-flow-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flow-end::before{\n  content:\"\"; }\n\n.bp3-icon-flow-linear::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flows::before{\n  content:\"\"; }\n\n.bp3-icon-folder-close::before{\n  content:\"\"; }\n\n.bp3-icon-folder-new::before{\n  content:\"\"; }\n\n.bp3-icon-folder-open::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared-open::before{\n  content:\"\"; }\n\n.bp3-icon-follower::before{\n  content:\"\"; }\n\n.bp3-icon-following::before{\n  content:\"\"; }\n\n.bp3-icon-font::before{\n  content:\"\"; }\n\n.bp3-icon-fork::before{\n  content:\"\"; }\n\n.bp3-icon-form::before{\n  content:\"\"; }\n\n.bp3-icon-full-circle::before{\n  content:\"\"; }\n\n.bp3-icon-full-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-fullscreen::before{\n  content:\"\"; }\n\n.bp3-icon-function::before{\n  content:\"\"; }\n\n.bp3-icon-gantt-chart::before{\n  content:\"\"; }\n\n.bp3-icon-geolocation::before{\n  content:\"\"; }\n\n.bp3-icon-geosearch::before{\n  content:\"\"; }\n\n.bp3-icon-git-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-commit::before{\n  content:\"\"; }\n\n.bp3-icon-git-merge::before{\n  content:\"\"; }\n\n.bp3-icon-git-new-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-pull::before{\n  content:\"\"; }\n\n.bp3-icon-git-push::before{\n  content:\"\"; }\n\n.bp3-icon-git-repo::before{\n  content:\"\"; }\n\n.bp3-icon-glass::before{\n  content:\"\"; }\n\n.bp3-icon-globe::before{\n  content:\"\"; }\n\n.bp3-icon-globe-network::before{\n  content:\"\"; }\n\n.bp3-icon-graph::before{\n  content:\"\"; }\n\n.bp3-icon-graph-remove::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-grid::before{\n  content:\"\"; }\n\n.bp3-icon-grid-view::before{\n  content:\"\"; }\n\n.bp3-icon-group-objects::before{\n  content:\"\"; }\n\n.bp3-icon-grouped-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-hand::before{\n  content:\"\"; }\n\n.bp3-icon-hand-down::before{\n  content:\"\"; }\n\n.bp3-icon-hand-left::before{\n  content:\"\"; }\n\n.bp3-icon-hand-right::before{\n  content:\"\"; }\n\n.bp3-icon-hand-up::before{\n  content:\"\"; }\n\n.bp3-icon-header::before{\n  content:\"\"; }\n\n.bp3-icon-header-one::before{\n  content:\"\"; }\n\n.bp3-icon-header-two::before{\n  content:\"\"; }\n\n.bp3-icon-headset::before{\n  content:\"\"; }\n\n.bp3-icon-heart::before{\n  content:\"♥\"; }\n\n.bp3-icon-heart-broken::before{\n  content:\"\"; }\n\n.bp3-icon-heat-grid::before{\n  content:\"\"; }\n\n.bp3-icon-heatmap::before{\n  content:\"\"; }\n\n.bp3-icon-help::before{\n  content:\"?\"; }\n\n.bp3-icon-helper-management::before{\n  content:\"\"; }\n\n.bp3-icon-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-history::before{\n  content:\"\"; }\n\n.bp3-icon-home::before{\n  content:\"⌂\"; }\n\n.bp3-icon-horizontal-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-id-number::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-left::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-right::before{\n  content:\"\"; }\n\n.bp3-icon-import::before{\n  content:\"\"; }\n\n.bp3-icon-inbox::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-geo::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-search::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-update::before{\n  content:\"\"; }\n\n.bp3-icon-info-sign::before{\n  content:\"ℹ\"; }\n\n.bp3-icon-inheritance::before{\n  content:\"\"; }\n\n.bp3-icon-inner-join::before{\n  content:\"\"; }\n\n.bp3-icon-insert::before{\n  content:\"\"; }\n\n.bp3-icon-intersection::before{\n  content:\"\"; }\n\n.bp3-icon-ip-address::before{\n  content:\"\"; }\n\n.bp3-icon-issue::before{\n  content:\"\"; }\n\n.bp3-icon-issue-closed::before{\n  content:\"\"; }\n\n.bp3-icon-issue-new::before{\n  content:\"\"; }\n\n.bp3-icon-italic::before{\n  content:\"\"; }\n\n.bp3-icon-join-table::before{\n  content:\"\"; }\n\n.bp3-icon-key::before{\n  content:\"\"; }\n\n.bp3-icon-key-backspace::before{\n  content:\"\"; }\n\n.bp3-icon-key-command::before{\n  content:\"\"; }\n\n.bp3-icon-key-control::before{\n  content:\"\"; }\n\n.bp3-icon-key-delete::before{\n  content:\"\"; }\n\n.bp3-icon-key-enter::before{\n  content:\"\"; }\n\n.bp3-icon-key-escape::before{\n  content:\"\"; }\n\n.bp3-icon-key-option::before{\n  content:\"\"; }\n\n.bp3-icon-key-shift::before{\n  content:\"\"; }\n\n.bp3-icon-key-tab::before{\n  content:\"\"; }\n\n.bp3-icon-known-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-lab-test::before{\n  content:\"\"; }\n\n.bp3-icon-label::before{\n  content:\"\"; }\n\n.bp3-icon-layer::before{\n  content:\"\"; }\n\n.bp3-icon-layers::before{\n  content:\"\"; }\n\n.bp3-icon-layout::before{\n  content:\"\"; }\n\n.bp3-icon-layout-auto::before{\n  content:\"\"; }\n\n.bp3-icon-layout-balloon::before{\n  content:\"\"; }\n\n.bp3-icon-layout-circle::before{\n  content:\"\"; }\n\n.bp3-icon-layout-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-group-by::before{\n  content:\"\"; }\n\n.bp3-icon-layout-hierarchy::before{\n  content:\"\"; }\n\n.bp3-icon-layout-linear::before{\n  content:\"\"; }\n\n.bp3-icon-layout-skew-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-sorted-clusters::before{\n  content:\"\"; }\n\n.bp3-icon-learning::before{\n  content:\"\"; }\n\n.bp3-icon-left-join::before{\n  content:\"\"; }\n\n.bp3-icon-less-than::before{\n  content:\"\"; }\n\n.bp3-icon-less-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-lifesaver::before{\n  content:\"\"; }\n\n.bp3-icon-lightbulb::before{\n  content:\"\"; }\n\n.bp3-icon-link::before{\n  content:\"\"; }\n\n.bp3-icon-list::before{\n  content:\"☰\"; }\n\n.bp3-icon-list-columns::before{\n  content:\"\"; }\n\n.bp3-icon-list-detail-view::before{\n  content:\"\"; }\n\n.bp3-icon-locate::before{\n  content:\"\"; }\n\n.bp3-icon-lock::before{\n  content:\"\"; }\n\n.bp3-icon-log-in::before{\n  content:\"\"; }\n\n.bp3-icon-log-out::before{\n  content:\"\"; }\n\n.bp3-icon-manual::before{\n  content:\"\"; }\n\n.bp3-icon-manually-entered-data::before{\n  content:\"\"; }\n\n.bp3-icon-map::before{\n  content:\"\"; }\n\n.bp3-icon-map-create::before{\n  content:\"\"; }\n\n.bp3-icon-map-marker::before{\n  content:\"\"; }\n\n.bp3-icon-maximize::before{\n  content:\"\"; }\n\n.bp3-icon-media::before{\n  content:\"\"; }\n\n.bp3-icon-menu::before{\n  content:\"\"; }\n\n.bp3-icon-menu-closed::before{\n  content:\"\"; }\n\n.bp3-icon-menu-open::before{\n  content:\"\"; }\n\n.bp3-icon-merge-columns::before{\n  content:\"\"; }\n\n.bp3-icon-merge-links::before{\n  content:\"\"; }\n\n.bp3-icon-minimize::before{\n  content:\"\"; }\n\n.bp3-icon-minus::before{\n  content:\"−\"; }\n\n.bp3-icon-mobile-phone::before{\n  content:\"\"; }\n\n.bp3-icon-mobile-video::before{\n  content:\"\"; }\n\n.bp3-icon-moon::before{\n  content:\"\"; }\n\n.bp3-icon-more::before{\n  content:\"\"; }\n\n.bp3-icon-mountain::before{\n  content:\"\"; }\n\n.bp3-icon-move::before{\n  content:\"\"; }\n\n.bp3-icon-mugshot::before{\n  content:\"\"; }\n\n.bp3-icon-multi-select::before{\n  content:\"\"; }\n\n.bp3-icon-music::before{\n  content:\"\"; }\n\n.bp3-icon-new-drawing::before{\n  content:\"\"; }\n\n.bp3-icon-new-grid-item::before{\n  content:\"\"; }\n\n.bp3-icon-new-layer::before{\n  content:\"\"; }\n\n.bp3-icon-new-layers::before{\n  content:\"\"; }\n\n.bp3-icon-new-link::before{\n  content:\"\"; }\n\n.bp3-icon-new-object::before{\n  content:\"\"; }\n\n.bp3-icon-new-person::before{\n  content:\"\"; }\n\n.bp3-icon-new-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-new-text-box::before{\n  content:\"\"; }\n\n.bp3-icon-ninja::before{\n  content:\"\"; }\n\n.bp3-icon-not-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-notifications::before{\n  content:\"\"; }\n\n.bp3-icon-notifications-updated::before{\n  content:\"\"; }\n\n.bp3-icon-numbered-list::before{\n  content:\"\"; }\n\n.bp3-icon-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-office::before{\n  content:\"\"; }\n\n.bp3-icon-offline::before{\n  content:\"\"; }\n\n.bp3-icon-oil-field::before{\n  content:\"\"; }\n\n.bp3-icon-one-column::before{\n  content:\"\"; }\n\n.bp3-icon-outdated::before{\n  content:\"\"; }\n\n.bp3-icon-page-layout::before{\n  content:\"\"; }\n\n.bp3-icon-panel-stats::before{\n  content:\"\"; }\n\n.bp3-icon-panel-table::before{\n  content:\"\"; }\n\n.bp3-icon-paperclip::before{\n  content:\"\"; }\n\n.bp3-icon-paragraph::before{\n  content:\"\"; }\n\n.bp3-icon-path::before{\n  content:\"\"; }\n\n.bp3-icon-path-search::before{\n  content:\"\"; }\n\n.bp3-icon-pause::before{\n  content:\"\"; }\n\n.bp3-icon-people::before{\n  content:\"\"; }\n\n.bp3-icon-percentage::before{\n  content:\"\"; }\n\n.bp3-icon-person::before{\n  content:\"\"; }\n\n.bp3-icon-phone::before{\n  content:\"☎\"; }\n\n.bp3-icon-pie-chart::before{\n  content:\"\"; }\n\n.bp3-icon-pin::before{\n  content:\"\"; }\n\n.bp3-icon-pivot::before{\n  content:\"\"; }\n\n.bp3-icon-pivot-table::before{\n  content:\"\"; }\n\n.bp3-icon-play::before{\n  content:\"\"; }\n\n.bp3-icon-plus::before{\n  content:\"+\"; }\n\n.bp3-icon-polygon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-power::before{\n  content:\"\"; }\n\n.bp3-icon-predictive-analysis::before{\n  content:\"\"; }\n\n.bp3-icon-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-presentation::before{\n  content:\"\"; }\n\n.bp3-icon-print::before{\n  content:\"⎙\"; }\n\n.bp3-icon-projects::before{\n  content:\"\"; }\n\n.bp3-icon-properties::before{\n  content:\"\"; }\n\n.bp3-icon-property::before{\n  content:\"\"; }\n\n.bp3-icon-publish-function::before{\n  content:\"\"; }\n\n.bp3-icon-pulse::before{\n  content:\"\"; }\n\n.bp3-icon-random::before{\n  content:\"\"; }\n\n.bp3-icon-record::before{\n  content:\"\"; }\n\n.bp3-icon-redo::before{\n  content:\"\"; }\n\n.bp3-icon-refresh::before{\n  content:\"\"; }\n\n.bp3-icon-regression-chart::before{\n  content:\"\"; }\n\n.bp3-icon-remove::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-repeat::before{\n  content:\"\"; }\n\n.bp3-icon-reset::before{\n  content:\"\"; }\n\n.bp3-icon-resolve::before{\n  content:\"\"; }\n\n.bp3-icon-rig::before{\n  content:\"\"; }\n\n.bp3-icon-right-join::before{\n  content:\"\"; }\n\n.bp3-icon-ring::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-document::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-page::before{\n  content:\"\"; }\n\n.bp3-icon-satellite::before{\n  content:\"\"; }\n\n.bp3-icon-saved::before{\n  content:\"\"; }\n\n.bp3-icon-scatter-plot::before{\n  content:\"\"; }\n\n.bp3-icon-search::before{\n  content:\"\"; }\n\n.bp3-icon-search-around::before{\n  content:\"\"; }\n\n.bp3-icon-search-template::before{\n  content:\"\"; }\n\n.bp3-icon-search-text::before{\n  content:\"\"; }\n\n.bp3-icon-segmented-control::before{\n  content:\"\"; }\n\n.bp3-icon-select::before{\n  content:\"\"; }\n\n.bp3-icon-selection::before{\n  content:\"⦿\"; }\n\n.bp3-icon-send-to::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-graph::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-map::before{\n  content:\"\"; }\n\n.bp3-icon-series-add::before{\n  content:\"\"; }\n\n.bp3-icon-series-configuration::before{\n  content:\"\"; }\n\n.bp3-icon-series-derived::before{\n  content:\"\"; }\n\n.bp3-icon-series-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-series-search::before{\n  content:\"\"; }\n\n.bp3-icon-settings::before{\n  content:\"\"; }\n\n.bp3-icon-share::before{\n  content:\"\"; }\n\n.bp3-icon-shield::before{\n  content:\"\"; }\n\n.bp3-icon-shop::before{\n  content:\"\"; }\n\n.bp3-icon-shopping-cart::before{\n  content:\"\"; }\n\n.bp3-icon-signal-search::before{\n  content:\"\"; }\n\n.bp3-icon-sim-card::before{\n  content:\"\"; }\n\n.bp3-icon-slash::before{\n  content:\"\"; }\n\n.bp3-icon-small-cross::before{\n  content:\"\"; }\n\n.bp3-icon-small-minus::before{\n  content:\"\"; }\n\n.bp3-icon-small-plus::before{\n  content:\"\"; }\n\n.bp3-icon-small-tick::before{\n  content:\"\"; }\n\n.bp3-icon-snowflake::before{\n  content:\"\"; }\n\n.bp3-icon-social-media::before{\n  content:\"\"; }\n\n.bp3-icon-sort::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-asc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-split-columns::before{\n  content:\"\"; }\n\n.bp3-icon-square::before{\n  content:\"\"; }\n\n.bp3-icon-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-star::before{\n  content:\"★\"; }\n\n.bp3-icon-star-empty::before{\n  content:\"☆\"; }\n\n.bp3-icon-step-backward::before{\n  content:\"\"; }\n\n.bp3-icon-step-chart::before{\n  content:\"\"; }\n\n.bp3-icon-step-forward::before{\n  content:\"\"; }\n\n.bp3-icon-stop::before{\n  content:\"\"; }\n\n.bp3-icon-stopwatch::before{\n  content:\"\"; }\n\n.bp3-icon-strikethrough::before{\n  content:\"\"; }\n\n.bp3-icon-style::before{\n  content:\"\"; }\n\n.bp3-icon-swap-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-swap-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-circle::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-cross::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-diamond::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-square::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-down::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-up::before{\n  content:\"\"; }\n\n.bp3-icon-tag::before{\n  content:\"\"; }\n\n.bp3-icon-take-action::before{\n  content:\"\"; }\n\n.bp3-icon-taxi::before{\n  content:\"\"; }\n\n.bp3-icon-text-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-th::before{\n  content:\"\"; }\n\n.bp3-icon-th-derived::before{\n  content:\"\"; }\n\n.bp3-icon-th-disconnect::before{\n  content:\"\"; }\n\n.bp3-icon-th-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-th-list::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-down::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-up::before{\n  content:\"\"; }\n\n.bp3-icon-tick::before{\n  content:\"✓\"; }\n\n.bp3-icon-tick-circle::before{\n  content:\"\"; }\n\n.bp3-icon-time::before{\n  content:\"⏲\"; }\n\n.bp3-icon-timeline-area-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-events::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-line-chart::before{\n  content:\"\"; }\n\n.bp3-icon-tint::before{\n  content:\"\"; }\n\n.bp3-icon-torch::before{\n  content:\"\"; }\n\n.bp3-icon-tractor::before{\n  content:\"\"; }\n\n.bp3-icon-train::before{\n  content:\"\"; }\n\n.bp3-icon-translate::before{\n  content:\"\"; }\n\n.bp3-icon-trash::before{\n  content:\"\"; }\n\n.bp3-icon-tree::before{\n  content:\"\"; }\n\n.bp3-icon-trending-down::before{\n  content:\"\"; }\n\n.bp3-icon-trending-up::before{\n  content:\"\"; }\n\n.bp3-icon-truck::before{\n  content:\"\"; }\n\n.bp3-icon-two-columns::before{\n  content:\"\"; }\n\n.bp3-icon-unarchive::before{\n  content:\"\"; }\n\n.bp3-icon-underline::before{\n  content:\"⎁\"; }\n\n.bp3-icon-undo::before{\n  content:\"⎌\"; }\n\n.bp3-icon-ungroup-objects::before{\n  content:\"\"; }\n\n.bp3-icon-unknown-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-unlock::before{\n  content:\"\"; }\n\n.bp3-icon-unpin::before{\n  content:\"\"; }\n\n.bp3-icon-unresolve::before{\n  content:\"\"; }\n\n.bp3-icon-updated::before{\n  content:\"\"; }\n\n.bp3-icon-upload::before{\n  content:\"\"; }\n\n.bp3-icon-user::before{\n  content:\"\"; }\n\n.bp3-icon-variable::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-video::before{\n  content:\"\"; }\n\n.bp3-icon-volume-down::before{\n  content:\"\"; }\n\n.bp3-icon-volume-off::before{\n  content:\"\"; }\n\n.bp3-icon-volume-up::before{\n  content:\"\"; }\n\n.bp3-icon-walk::before{\n  content:\"\"; }\n\n.bp3-icon-warning-sign::before{\n  content:\"\"; }\n\n.bp3-icon-waterfall-chart::before{\n  content:\"\"; }\n\n.bp3-icon-widget::before{\n  content:\"\"; }\n\n.bp3-icon-widget-button::before{\n  content:\"\"; }\n\n.bp3-icon-widget-footer::before{\n  content:\"\"; }\n\n.bp3-icon-widget-header::before{\n  content:\"\"; }\n\n.bp3-icon-wrench::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-in::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-out::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-to-fit::before{\n  content:\"\"; }\n.bp3-submenu > .bp3-popover-wrapper{\n  display:block; }\n\n.bp3-submenu .bp3-popover-target{\n  display:block; }\n  .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{ }\n\n.bp3-submenu.bp3-popover{\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0 5px; }\n  .bp3-submenu.bp3-popover > .bp3-popover-content{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-submenu.bp3-popover, .bp3-submenu.bp3-popover.bp3-dark{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-dark .bp3-submenu.bp3-popover > .bp3-popover-content, .bp3-submenu.bp3-popover.bp3-dark > .bp3-popover-content{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n.bp3-menu{\n  background:#ffffff;\n  border-radius:3px;\n  color:#182026;\n  list-style:none;\n  margin:0;\n  min-width:180px;\n  padding:5px;\n  text-align:left; }\n\n.bp3-menu-divider{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px; }\n  .bp3-dark .bp3-menu-divider{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-menu-item{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  border-radius:2px;\n  color:inherit;\n  line-height:20px;\n  padding:5px 7px;\n  text-decoration:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-menu-item > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-menu-item > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > *{\n    margin-right:7px; }\n  .bp3-menu-item:empty::before,\n  .bp3-menu-item > :last-child{\n    margin-right:0; }\n  .bp3-menu-item > .bp3-fill{\n    word-break:break-word; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    background-color:rgba(167, 182, 194, 0.3);\n    cursor:pointer;\n    text-decoration:none; }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-dark .bp3-menu-item{\n    color:inherit; }\n    .bp3-dark .bp3-menu-item:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n      background-color:rgba(138, 155, 168, 0.15);\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-disabled{\n      background-color:inherit;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-menu-item.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-primary::before, .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary:active, .bp3-menu-item.bp3-intent-primary:active::before, .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-success::before, .bp3-menu-item.bp3-intent-success::after,\n    .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-menu-item.bp3-intent-success:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success:active, .bp3-menu-item.bp3-intent-success:active::before, .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-warning::before, .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning:active, .bp3-menu-item.bp3-intent-warning:active::before, .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-danger::before, .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger:active, .bp3-menu-item.bp3-intent-danger:active::before, .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    margin-right:7px; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > .bp3-icon{\n    color:#5c7080;\n    margin-top:2px; }\n  .bp3-menu-item .bp3-menu-item-label{\n    color:#5c7080; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    color:inherit; }\n  .bp3-menu-item.bp3-active, .bp3-menu-item:active{\n    background-color:rgba(115, 134, 148, 0.3); }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit !important;\n    color:rgba(92, 112, 128, 0.6) !important;\n    cursor:not-allowed !important;\n    outline:none !important; }\n    .bp3-menu-item.bp3-disabled::before,\n    .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-large .bp3-menu-item{\n    font-size:16px;\n    line-height:22px;\n    padding:9px 7px; }\n    .bp3-large .bp3-menu-item .bp3-icon{\n      margin-top:3px; }\n    .bp3-large .bp3-menu-item::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      margin-right:10px;\n      margin-top:1px; }\n\nbutton.bp3-menu-item{\n  background:none;\n  border:none;\n  text-align:left;\n  width:100%; }\n.bp3-menu-header{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px;\n  cursor:default;\n  padding-left:2px; }\n  .bp3-dark .bp3-menu-header{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n  .bp3-menu-header:first-of-type{\n    border-top:none; }\n  .bp3-menu-header > h6{\n    color:#182026;\n    font-weight:600;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    line-height:17px;\n    margin:0;\n    padding:10px 7px 0 1px; }\n    .bp3-dark .bp3-menu-header > h6{\n      color:#f5f8fa; }\n  .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n  .bp3-large .bp3-menu-header > h6{\n    font-size:18px;\n    padding-bottom:5px;\n    padding-top:15px; }\n  .bp3-large .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n\n.bp3-dark .bp3-menu{\n  background:#30404d;\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-menu-item{ }\n  .bp3-dark .bp3-menu-item.bp3-intent-primary{\n    color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary::before, .bp3-dark .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary:active, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-success{\n    color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success::before, .bp3-dark .bp3-menu-item.bp3-intent-success::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success:active, .bp3-dark .bp3-menu-item.bp3-intent-success:active::before, .bp3-dark .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-warning{\n    color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning::before, .bp3-dark .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning:active, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-danger{\n    color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger::before, .bp3-dark .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger:active, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item::before,\n  .bp3-dark .bp3-menu-item > .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item .bp3-menu-item-label{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item.bp3-active, .bp3-dark .bp3-menu-item:active{\n    background-color:rgba(138, 155, 168, 0.3); }\n  .bp3-dark .bp3-menu-item.bp3-disabled{\n    color:rgba(167, 182, 194, 0.6) !important; }\n    .bp3-dark .bp3-menu-item.bp3-disabled::before,\n    .bp3-dark .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-dark .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(167, 182, 194, 0.6) !important; }\n\n.bp3-dark .bp3-menu-divider,\n.bp3-dark .bp3-menu-header{\n  border-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-dark .bp3-menu-header > h6{\n  color:#f5f8fa; }\n\n.bp3-label .bp3-menu{\n  margin-top:5px; }\n.bp3-navbar{\n  background-color:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  height:50px;\n  padding:0 15px;\n  position:relative;\n  width:100%;\n  z-index:10; }\n  .bp3-navbar.bp3-dark,\n  .bp3-dark .bp3-navbar{\n    background-color:#394b59; }\n  .bp3-navbar.bp3-dark{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-navbar{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-navbar.bp3-fixed-top{\n    left:0;\n    position:fixed;\n    right:0;\n    top:0; }\n\n.bp3-navbar-heading{\n  font-size:16px;\n  margin-right:15px; }\n\n.bp3-navbar-group{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:50px; }\n  .bp3-navbar-group.bp3-align-left{\n    float:left; }\n  .bp3-navbar-group.bp3-align-right{\n    float:right; }\n\n.bp3-navbar-divider{\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  height:20px;\n  margin:0 10px; }\n  .bp3-dark .bp3-navbar-divider{\n    border-left-color:rgba(255, 255, 255, 0.15); }\n.bp3-non-ideal-state{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  height:100%;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  text-align:center;\n  width:100%; }\n  .bp3-non-ideal-state > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-non-ideal-state > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-non-ideal-state::before,\n  .bp3-non-ideal-state > *{\n    margin-bottom:20px; }\n  .bp3-non-ideal-state:empty::before,\n  .bp3-non-ideal-state > :last-child{\n    margin-bottom:0; }\n  .bp3-non-ideal-state > *{\n    max-width:400px; }\n\n.bp3-non-ideal-state-visual{\n  color:rgba(92, 112, 128, 0.6);\n  font-size:60px; }\n  .bp3-dark .bp3-non-ideal-state-visual{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-overflow-list{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:nowrap;\n      flex-wrap:nowrap;\n  min-width:0; }\n\n.bp3-overflow-list-spacer{\n  -ms-flex-negative:1;\n      flex-shrink:1;\n  width:1px; }\n\nbody.bp3-overlay-open{\n  overflow:hidden; }\n\n.bp3-overlay{\n  bottom:0;\n  left:0;\n  position:static;\n  right:0;\n  top:0;\n  z-index:20; }\n  .bp3-overlay:not(.bp3-overlay-open){\n    pointer-events:none; }\n  .bp3-overlay.bp3-overlay-container{\n    overflow:hidden;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-scroll-container{\n    overflow:auto;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-scroll-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-inline{\n    display:inline;\n    overflow:visible; }\n\n.bp3-overlay-content{\n  position:fixed;\n  z-index:20; }\n  .bp3-overlay-inline .bp3-overlay-content,\n  .bp3-overlay-scroll-container .bp3-overlay-content{\n    position:absolute; }\n\n.bp3-overlay-backdrop{\n  bottom:0;\n  left:0;\n  position:fixed;\n  right:0;\n  top:0;\n  opacity:1;\n  background-color:rgba(16, 22, 26, 0.7);\n  overflow:auto;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  z-index:20; }\n  .bp3-overlay-backdrop.bp3-overlay-enter, .bp3-overlay-backdrop.bp3-overlay-appear{\n    opacity:0; }\n  .bp3-overlay-backdrop.bp3-overlay-enter-active, .bp3-overlay-backdrop.bp3-overlay-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop.bp3-overlay-exit{\n    opacity:1; }\n  .bp3-overlay-backdrop.bp3-overlay-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop:focus{\n    outline:none; }\n  .bp3-overlay-inline .bp3-overlay-backdrop{\n    position:absolute; }\n.bp3-panel-stack{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-view{\n    background-color:#30404d; }\n  .bp3-panel-stack-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter, .bp3-panel-stack-push .bp3-panel-stack-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter-active, .bp3-panel-stack-push .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter, .bp3-panel-stack-pop .bp3-panel-stack-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter-active, .bp3-panel-stack-pop .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-panel-stack2{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack2-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack2-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack2-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack2-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack2-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack2-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-view{\n    background-color:#30404d; }\n  .bp3-panel-stack2-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter, .bp3-panel-stack2-push .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter-active, .bp3-panel-stack2-push .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter, .bp3-panel-stack2-pop .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter-active, .bp3-panel-stack2-pop .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-popover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  border-radius:3px;\n  display:inline-block;\n  z-index:20; }\n  .bp3-popover .bp3-popover-arrow{\n    height:30px;\n    position:absolute;\n    width:30px; }\n    .bp3-popover .bp3-popover-arrow::before{\n      height:20px;\n      margin:5px;\n      width:20px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover{\n    margin-bottom:17px;\n    margin-top:-17px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n      bottom:-11px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover{\n    margin-left:17px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n      left:-11px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover{\n    margin-top:17px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n      top:-11px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover{\n    margin-left:-17px;\n    margin-right:17px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n      right:-11px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-popover > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-popover > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n    top:-0.3934px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n    right:-0.3934px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n    left:-0.3934px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n    bottom:-0.3934px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-popover .bp3-popover-content{\n    background:#ffffff;\n    color:inherit; }\n  .bp3-popover .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-popover .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-popover .bp3-popover-arrow-fill{\n    fill:#ffffff; }\n  .bp3-popover-enter > .bp3-popover, .bp3-popover-appear > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3); }\n  .bp3-popover-enter-active > .bp3-popover, .bp3-popover-appear-active > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover-exit > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover .bp3-popover-content{\n    border-radius:3px;\n    position:relative; }\n  .bp3-popover.bp3-popover-content-sizing .bp3-popover-content{\n    max-width:350px;\n    padding:20px; }\n  .bp3-popover-target + .bp3-overlay .bp3-popover.bp3-popover-content-sizing{\n    width:350px; }\n  .bp3-popover.bp3-minimal{\n    margin:0 !important; }\n    .bp3-popover.bp3-minimal .bp3-popover-arrow{\n      display:none; }\n    .bp3-popover.bp3-minimal.bp3-popover{\n      -webkit-transform:scale(1);\n              transform:scale(1); }\n      .bp3-popover-enter > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-enter-active > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n      .bp3-popover-exit > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-exit-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover.bp3-dark,\n  .bp3-dark .bp3-popover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-popover .bp3-popover-content{\n      background:#30404d;\n      color:inherit; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-popover .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-fill{\n      fill:#30404d; }\n\n.bp3-popover-arrow::before{\n  border-radius:2px;\n  content:\"\";\n  display:block;\n  position:absolute;\n  -webkit-transform:rotate(45deg);\n          transform:rotate(45deg); }\n\n.bp3-tether-pinned .bp3-popover-arrow{\n  display:none; }\n\n.bp3-popover-backdrop{\n  background:rgba(255, 255, 255, 0); }\n\n.bp3-transition-container{\n  opacity:1;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  z-index:20; }\n  .bp3-transition-container.bp3-popover-enter, .bp3-transition-container.bp3-popover-appear{\n    opacity:0; }\n  .bp3-transition-container.bp3-popover-enter-active, .bp3-transition-container.bp3-popover-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container.bp3-popover-exit{\n    opacity:1; }\n  .bp3-transition-container.bp3-popover-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container:focus{\n    outline:none; }\n  .bp3-transition-container.bp3-popover-leave .bp3-popover-content{\n    pointer-events:none; }\n  .bp3-transition-container[data-x-out-of-boundaries]{\n    display:none; }\n\nspan.bp3-popover-target{\n  display:inline-block; }\n\n.bp3-popover-wrapper.bp3-fill{\n  width:100%; }\n\n.bp3-portal{\n  left:0;\n  position:absolute;\n  right:0;\n  top:0; }\n@-webkit-keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n@keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n\n.bp3-progress-bar{\n  background:rgba(92, 112, 128, 0.2);\n  border-radius:40px;\n  display:block;\n  height:8px;\n  overflow:hidden;\n  position:relative;\n  width:100%; }\n  .bp3-progress-bar .bp3-progress-meter{\n    background:linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%);\n    background-color:rgba(92, 112, 128, 0.8);\n    background-size:30px 30px;\n    border-radius:40px;\n    height:100%;\n    position:absolute;\n    -webkit-transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:100%; }\n  .bp3-progress-bar:not(.bp3-no-animation):not(.bp3-no-stripes) .bp3-progress-meter{\n    animation:linear-progress-bar-stripes 300ms linear infinite reverse; }\n  .bp3-progress-bar.bp3-no-stripes .bp3-progress-meter{\n    background-image:none; }\n\n.bp3-dark .bp3-progress-bar{\n  background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-progress-bar .bp3-progress-meter{\n    background-color:#8a9ba8; }\n\n.bp3-progress-bar.bp3-intent-primary .bp3-progress-meter{\n  background-color:#137cbd; }\n\n.bp3-progress-bar.bp3-intent-success .bp3-progress-meter{\n  background-color:#0f9960; }\n\n.bp3-progress-bar.bp3-intent-warning .bp3-progress-meter{\n  background-color:#d9822b; }\n\n.bp3-progress-bar.bp3-intent-danger .bp3-progress-meter{\n  background-color:#db3737; }\n@-webkit-keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n@keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n.bp3-skeleton{\n  -webkit-animation:1000ms linear infinite alternate skeleton-glow;\n          animation:1000ms linear infinite alternate skeleton-glow;\n  background:rgba(206, 217, 224, 0.2);\n  background-clip:padding-box !important;\n  border-color:rgba(206, 217, 224, 0.2) !important;\n  border-radius:2px;\n  -webkit-box-shadow:none !important;\n          box-shadow:none !important;\n  color:transparent !important;\n  cursor:default;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-skeleton::before, .bp3-skeleton::after,\n  .bp3-skeleton *{\n    visibility:hidden !important; }\n.bp3-slider{\n  height:40px;\n  min-width:150px;\n  width:100%;\n  cursor:default;\n  outline:none;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-slider:hover{\n    cursor:pointer; }\n  .bp3-slider:active{\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-slider.bp3-disabled{\n    cursor:not-allowed;\n    opacity:0.5; }\n  .bp3-slider.bp3-slider-unlabeled{\n    height:16px; }\n\n.bp3-slider-track,\n.bp3-slider-progress{\n  height:6px;\n  left:0;\n  right:0;\n  top:5px;\n  position:absolute; }\n\n.bp3-slider-track{\n  border-radius:3px;\n  overflow:hidden; }\n\n.bp3-slider-progress{\n  background:rgba(92, 112, 128, 0.2); }\n  .bp3-dark .bp3-slider-progress{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-slider-progress.bp3-intent-primary{\n    background-color:#137cbd; }\n  .bp3-slider-progress.bp3-intent-success{\n    background-color:#0f9960; }\n  .bp3-slider-progress.bp3-intent-warning{\n    background-color:#d9822b; }\n  .bp3-slider-progress.bp3-intent-danger{\n    background-color:#db3737; }\n\n.bp3-slider-handle{\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n  cursor:pointer;\n  height:16px;\n  left:0;\n  position:absolute;\n  top:0;\n  width:16px; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-slider-handle:active, .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-slider-handle:disabled, .bp3-slider-handle.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-slider-handle:disabled.bp3-active, .bp3-slider-handle:disabled.bp3-active:hover, .bp3-slider-handle.bp3-disabled.bp3-active, .bp3-slider-handle.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n  .bp3-slider-handle:focus{\n    z-index:1; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n    cursor:-webkit-grab;\n    cursor:grab;\n    z-index:2; }\n  .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-disabled .bp3-slider-handle{\n    background:#bfccd6;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    pointer-events:none; }\n  .bp3-dark .bp3-slider-handle{\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover, .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-slider-handle:disabled, .bp3-dark .bp3-slider-handle.bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-slider-handle:disabled.bp3-active, .bp3-dark .bp3-slider-handle.bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-slider-handle .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-slider-handle, .bp3-dark .bp3-slider-handle:hover{\n      background-color:#394b59; }\n    .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#293742; }\n  .bp3-dark .bp3-disabled .bp3-slider-handle{\n    background:#5c7080;\n    border-color:#5c7080;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-slider-handle .bp3-slider-label{\n    background:#394b59;\n    border-radius:3px;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n    color:#f5f8fa;\n    margin-left:8px; }\n    .bp3-dark .bp3-slider-handle .bp3-slider-label{\n      background:#e1e8ed;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n      color:#394b59; }\n    .bp3-disabled .bp3-slider-handle .bp3-slider-label{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-slider-handle.bp3-start, .bp3-slider-handle.bp3-end{\n    width:8px; }\n  .bp3-slider-handle.bp3-start{\n    border-bottom-right-radius:0;\n    border-top-right-radius:0; }\n  .bp3-slider-handle.bp3-end{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0;\n    margin-left:8px; }\n    .bp3-slider-handle.bp3-end .bp3-slider-label{\n      margin-left:0; }\n\n.bp3-slider-label{\n  -webkit-transform:translate(-50%, 20px);\n          transform:translate(-50%, 20px);\n  display:inline-block;\n  font-size:12px;\n  line-height:1;\n  padding:2px 5px;\n  position:absolute;\n  vertical-align:top; }\n\n.bp3-slider.bp3-vertical{\n  height:150px;\n  min-width:40px;\n  width:40px; }\n  .bp3-slider.bp3-vertical .bp3-slider-track,\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    bottom:0;\n    height:auto;\n    left:5px;\n    top:0;\n    width:6px; }\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    top:auto; }\n  .bp3-slider.bp3-vertical .bp3-slider-label{\n    -webkit-transform:translate(20px, 50%);\n            transform:translate(20px, 50%); }\n  .bp3-slider.bp3-vertical .bp3-slider-handle{\n    top:auto; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle .bp3-slider-label{\n      margin-left:0;\n      margin-top:-8px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end, .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      height:8px;\n      margin-left:0;\n      width:16px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      border-bottom-right-radius:3px;\n      border-top-left-radius:0; }\n      .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start .bp3-slider-label{\n        -webkit-transform:translate(20px);\n                transform:translate(20px); }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end{\n      border-bottom-left-radius:0;\n      border-bottom-right-radius:0;\n      border-top-left-radius:3px;\n      margin-bottom:8px; }\n\n@-webkit-keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n@keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n.bp3-spinner{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  overflow:visible;\n  vertical-align:middle; }\n  .bp3-spinner svg{\n    display:block; }\n  .bp3-spinner path{\n    fill-opacity:0; }\n  .bp3-spinner .bp3-spinner-head{\n    stroke:rgba(92, 112, 128, 0.8);\n    stroke-linecap:round;\n    -webkit-transform-origin:center;\n            transform-origin:center;\n    -webkit-transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-spinner .bp3-spinner-track{\n    stroke:rgba(92, 112, 128, 0.2); }\n\n.bp3-spinner-animation{\n  -webkit-animation:pt-spinner-animation 500ms linear infinite;\n          animation:pt-spinner-animation 500ms linear infinite; }\n  .bp3-no-spin > .bp3-spinner-animation{\n    -webkit-animation:none;\n            animation:none; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-head{\n  stroke:#8a9ba8; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-track{\n  stroke:rgba(16, 22, 26, 0.5); }\n\n.bp3-spinner.bp3-intent-primary .bp3-spinner-head{\n  stroke:#137cbd; }\n\n.bp3-spinner.bp3-intent-success .bp3-spinner-head{\n  stroke:#0f9960; }\n\n.bp3-spinner.bp3-intent-warning .bp3-spinner-head{\n  stroke:#d9822b; }\n\n.bp3-spinner.bp3-intent-danger .bp3-spinner-head{\n  stroke:#db3737; }\n.bp3-tabs.bp3-vertical{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-list{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab{\n      border-radius:3px;\n      padding:0 10px;\n      width:100%; }\n      .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab[aria-selected=\"true\"]{\n        background-color:rgba(19, 124, 189, 0.2);\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n      background-color:rgba(19, 124, 189, 0.2);\n      border-radius:3px;\n      bottom:0;\n      height:auto;\n      left:0;\n      right:0;\n      top:0; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-panel{\n    margin-top:0;\n    padding-left:20px; }\n\n.bp3-tab-list{\n  -webkit-box-align:end;\n      -ms-flex-align:end;\n          align-items:flex-end;\n  border:none;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  list-style:none;\n  margin:0;\n  padding:0;\n  position:relative; }\n  .bp3-tab-list > *:not(:last-child){\n    margin-right:20px; }\n\n.bp3-tab{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:#182026;\n  cursor:pointer;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  font-size:14px;\n  line-height:30px;\n  max-width:100%;\n  position:relative;\n  vertical-align:top; }\n  .bp3-tab a{\n    color:inherit;\n    display:block;\n    text-decoration:none; }\n  .bp3-tab-indicator-wrapper ~ .bp3-tab{\n    background-color:transparent !important;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important; }\n  .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-tab[aria-selected=\"true\"]{\n    border-radius:0;\n    -webkit-box-shadow:inset 0 -3px 0 #106ba3;\n            box-shadow:inset 0 -3px 0 #106ba3; }\n  .bp3-tab[aria-selected=\"true\"], .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#106ba3; }\n  .bp3-tab:focus{\n    -moz-outline-radius:0; }\n  .bp3-large > .bp3-tab{\n    font-size:16px;\n    line-height:40px; }\n\n.bp3-tab-panel{\n  margin-top:20px; }\n  .bp3-tab-panel[aria-hidden=\"true\"]{\n    display:none; }\n\n.bp3-tab-indicator-wrapper{\n  left:0;\n  pointer-events:none;\n  position:absolute;\n  top:0;\n  -webkit-transform:translateX(0), translateY(0);\n          transform:translateX(0), translateY(0);\n  -webkit-transition:height, width, -webkit-transform;\n  transition:height, width, -webkit-transform;\n  transition:height, transform, width;\n  transition:height, transform, width, -webkit-transform;\n  -webkit-transition-duration:200ms;\n          transition-duration:200ms;\n  -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n          transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n    background-color:#106ba3;\n    bottom:0;\n    height:3px;\n    left:0;\n    position:absolute;\n    right:0; }\n  .bp3-tab-indicator-wrapper.bp3-no-animation{\n    -webkit-transition:none;\n    transition:none; }\n\n.bp3-dark .bp3-tab{\n  color:#f5f8fa; }\n  .bp3-dark .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"]{\n    -webkit-box-shadow:inset 0 -3px 0 #48aff0;\n            box-shadow:inset 0 -3px 0 #48aff0; }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"], .bp3-dark .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#48aff0; }\n\n.bp3-dark .bp3-tab-indicator{\n  background-color:#48aff0; }\n\n.bp3-flex-expander{\n  -webkit-box-flex:1;\n      -ms-flex:1 1;\n          flex:1 1; }\n.bp3-tag{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#5c7080;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:#f5f8fa;\n  font-size:12px;\n  line-height:16px;\n  max-width:100%;\n  min-height:20px;\n  min-width:20px;\n  padding:2px 6px;\n  position:relative; }\n  .bp3-tag.bp3-interactive{\n    cursor:pointer; }\n    .bp3-tag.bp3-interactive:hover{\n      background-color:rgba(92, 112, 128, 0.85); }\n    .bp3-tag.bp3-interactive.bp3-active, .bp3-tag.bp3-interactive:active{\n      background-color:rgba(92, 112, 128, 0.7); }\n  .bp3-tag > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag::before,\n  .bp3-tag > *{\n    margin-right:4px; }\n  .bp3-tag:empty::before,\n  .bp3-tag > :last-child{\n    margin-right:0; }\n  .bp3-tag:focus{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:0;\n    -moz-outline-radius:6px; }\n  .bp3-tag.bp3-round{\n    border-radius:30px;\n    padding-left:8px;\n    padding-right:8px; }\n  .bp3-dark .bp3-tag{\n    background-color:#bfccd6;\n    color:#182026; }\n    .bp3-dark .bp3-tag.bp3-interactive{\n      cursor:pointer; }\n      .bp3-dark .bp3-tag.bp3-interactive:hover{\n        background-color:rgba(191, 204, 214, 0.85); }\n      .bp3-dark .bp3-tag.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-interactive:active{\n        background-color:rgba(191, 204, 214, 0.7); }\n    .bp3-dark .bp3-tag > .bp3-icon, .bp3-dark .bp3-tag .bp3-icon-standard, .bp3-dark .bp3-tag .bp3-icon-large{\n      fill:currentColor; }\n  .bp3-tag > .bp3-icon, .bp3-tag .bp3-icon-standard, .bp3-tag .bp3-icon-large{\n    fill:#ffffff; }\n  .bp3-tag.bp3-large,\n  .bp3-large .bp3-tag{\n    font-size:14px;\n    line-height:20px;\n    min-height:30px;\n    min-width:30px;\n    padding:5px 10px; }\n    .bp3-tag.bp3-large::before,\n    .bp3-tag.bp3-large > *,\n    .bp3-large .bp3-tag::before,\n    .bp3-large .bp3-tag > *{\n      margin-right:7px; }\n    .bp3-tag.bp3-large:empty::before,\n    .bp3-tag.bp3-large > :last-child,\n    .bp3-large .bp3-tag:empty::before,\n    .bp3-large .bp3-tag > :last-child{\n      margin-right:0; }\n    .bp3-tag.bp3-large.bp3-round,\n    .bp3-large .bp3-tag.bp3-round{\n      padding-left:12px;\n      padding-right:12px; }\n  .bp3-tag.bp3-intent-primary{\n    background:#137cbd;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.85); }\n      .bp3-tag.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.7); }\n  .bp3-tag.bp3-intent-success{\n    background:#0f9960;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.85); }\n      .bp3-tag.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.7); }\n  .bp3-tag.bp3-intent-warning{\n    background:#d9822b;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.85); }\n      .bp3-tag.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.7); }\n  .bp3-tag.bp3-intent-danger{\n    background:#db3737;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.85); }\n      .bp3-tag.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.7); }\n  .bp3-tag.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-tag.bp3-minimal > .bp3-icon, .bp3-tag.bp3-minimal .bp3-icon-standard, .bp3-tag.bp3-minimal .bp3-icon-large{\n    fill:#5c7080; }\n  .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n    background-color:rgba(138, 155, 168, 0.2);\n    color:#182026; }\n    .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n        background-color:rgba(92, 112, 128, 0.3); }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n        background-color:rgba(92, 112, 128, 0.4); }\n    .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n      color:#f5f8fa; }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n          background-color:rgba(191, 204, 214, 0.3); }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n          background-color:rgba(191, 204, 214, 0.4); }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) > .bp3-icon, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n        fill:#a7b6c2; }\n  .bp3-tag.bp3-minimal.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15);\n    color:#106ba3; }\n    .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-primary > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-large{\n      fill:#137cbd; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25);\n      color:#48aff0; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n          background-color:rgba(19, 124, 189, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n          background-color:rgba(19, 124, 189, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15);\n    color:#0d8050; }\n    .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-success > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-large{\n      fill:#0f9960; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25);\n      color:#3dcc91; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n          background-color:rgba(15, 153, 96, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n          background-color:rgba(15, 153, 96, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15);\n    color:#bf7326; }\n    .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-warning > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-large{\n      fill:#d9822b; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25);\n      color:#ffb366; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n          background-color:rgba(217, 130, 43, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n          background-color:rgba(217, 130, 43, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15);\n    color:#c23030; }\n    .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-danger > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-large{\n      fill:#db3737; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25);\n      color:#ff7373; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n          background-color:rgba(219, 55, 55, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n          background-color:rgba(219, 55, 55, 0.45); }\n\n.bp3-tag-remove{\n  background:none;\n  border:none;\n  color:inherit;\n  cursor:pointer;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin-bottom:-2px;\n  margin-right:-6px !important;\n  margin-top:-2px;\n  opacity:0.5;\n  padding:2px;\n  padding-left:0; }\n  .bp3-tag-remove:hover{\n    background:none;\n    opacity:0.8;\n    text-decoration:none; }\n  .bp3-tag-remove:active{\n    opacity:1; }\n  .bp3-tag-remove:empty::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    content:\"\"; }\n  .bp3-large .bp3-tag-remove{\n    margin-right:-10px !important;\n    padding:0 5px 0 0; }\n    .bp3-large .bp3-tag-remove:empty::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1; }\n.bp3-tag-input{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  cursor:text;\n  height:auto;\n  line-height:inherit;\n  min-height:30px;\n  padding-left:5px;\n  padding-right:0; }\n  .bp3-tag-input > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag-input > .bp3-tag-input-values{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag-input .bp3-tag-input-icon{\n    color:#5c7080;\n    margin-left:2px;\n    margin-right:7px;\n    margin-top:7px; }\n  .bp3-tag-input .bp3-tag-input-values{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row;\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    -ms-flex-item-align:stretch;\n        align-self:stretch;\n    -ms-flex-wrap:wrap;\n        flex-wrap:wrap;\n    margin-right:7px;\n    margin-top:5px;\n    min-width:0; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      -webkit-box-flex:0;\n          -ms-flex-positive:0;\n              flex-grow:0;\n      -ms-flex-negative:0;\n          flex-shrink:0; }\n    .bp3-tag-input .bp3-tag-input-values > .bp3-fill{\n      -webkit-box-flex:1;\n          -ms-flex-positive:1;\n              flex-grow:1;\n      -ms-flex-negative:1;\n          flex-shrink:1; }\n    .bp3-tag-input .bp3-tag-input-values::before,\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-right:5px; }\n    .bp3-tag-input .bp3-tag-input-values:empty::before,\n    .bp3-tag-input .bp3-tag-input-values > :last-child{\n      margin-right:0; }\n    .bp3-tag-input .bp3-tag-input-values:first-child .bp3-input-ghost:first-child{\n      padding-left:5px; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-bottom:5px; }\n  .bp3-tag-input .bp3-tag{\n    overflow-wrap:break-word; }\n    .bp3-tag-input .bp3-tag.bp3-active{\n      outline:rgba(19, 124, 189, 0.6) auto 2px;\n      outline-offset:0;\n      -moz-outline-radius:6px; }\n  .bp3-tag-input .bp3-input-ghost{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:20px;\n    width:80px; }\n    .bp3-tag-input .bp3-input-ghost:disabled, .bp3-tag-input .bp3-input-ghost.bp3-disabled{\n      cursor:not-allowed; }\n  .bp3-tag-input .bp3-button,\n  .bp3-tag-input .bp3-spinner{\n    margin:3px;\n    margin-left:0; }\n  .bp3-tag-input .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-tag-input.bp3-large{\n    height:auto;\n    min-height:40px; }\n    .bp3-tag-input.bp3-large::before,\n    .bp3-tag-input.bp3-large > *{\n      margin-right:10px; }\n    .bp3-tag-input.bp3-large:empty::before,\n    .bp3-tag-input.bp3-large > :last-child{\n      margin-right:0; }\n    .bp3-tag-input.bp3-large .bp3-tag-input-icon{\n      margin-left:5px;\n      margin-top:10px; }\n    .bp3-tag-input.bp3-large .bp3-input-ghost{\n      line-height:30px; }\n    .bp3-tag-input.bp3-large .bp3-button{\n      min-height:30px;\n      min-width:30px;\n      padding:5px 10px;\n      margin:5px;\n      margin-left:0; }\n    .bp3-tag-input.bp3-large .bp3-spinner{\n      margin:8px;\n      margin-left:0; }\n  .bp3-tag-input.bp3-active{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-tag-input .bp3-tag-input-icon, .bp3-tag-input.bp3-dark .bp3-tag-input-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-tag-input .bp3-input-ghost, .bp3-tag-input.bp3-dark .bp3-input-ghost{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-webkit-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-moz-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost:-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tag-input.bp3-active, .bp3-tag-input.bp3-dark.bp3-active{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-primary, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-success, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-warning, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-danger, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-input-ghost{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0; }\n  .bp3-input-ghost::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:focus{\n    outline:none !important; }\n.bp3-toast{\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:20px 0 0;\n  max-width:500px;\n  min-width:300px;\n  pointer-events:all;\n  position:relative !important; }\n  .bp3-toast.bp3-toast-enter, .bp3-toast.bp3-toast-appear{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active, .bp3-toast.bp3-toast-appear-active{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-enter ~ .bp3-toast, .bp3-toast.bp3-toast-appear ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active ~ .bp3-toast, .bp3-toast.bp3-toast-appear-active ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-exit{\n    opacity:1;\n    -webkit-filter:blur(0);\n            filter:blur(0); }\n  .bp3-toast.bp3-toast-exit-active{\n    opacity:0;\n    -webkit-filter:blur(10px);\n            filter:blur(10px);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:opacity, filter;\n    transition-property:opacity, filter, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast.bp3-toast-exit ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0); }\n  .bp3-toast.bp3-toast-exit-active ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px);\n    -webkit-transition-delay:50ms;\n            transition-delay:50ms;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast .bp3-button-group{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    padding:5px;\n    padding-left:0; }\n  .bp3-toast > .bp3-icon{\n    color:#5c7080;\n    margin:12px;\n    margin-right:0; }\n  .bp3-toast.bp3-dark,\n  .bp3-dark .bp3-toast{\n    background-color:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-toast.bp3-dark > .bp3-icon,\n    .bp3-dark .bp3-toast > .bp3-icon{\n      color:#a7b6c2; }\n  .bp3-toast[class*=\"bp3-intent-\"] a{\n    color:rgba(255, 255, 255, 0.7); }\n    .bp3-toast[class*=\"bp3-intent-\"] a:hover{\n      color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] > .bp3-icon{\n    color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::before,\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button .bp3-icon, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    color:rgba(255, 255, 255, 0.7) !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:focus{\n    outline-color:rgba(255, 255, 255, 0.5); }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:hover{\n    background-color:rgba(255, 255, 255, 0.15) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    background-color:rgba(255, 255, 255, 0.3) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::after{\n    background:rgba(255, 255, 255, 0.3) !important; }\n  .bp3-toast.bp3-intent-primary{\n    background-color:#137cbd;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-success{\n    background-color:#0f9960;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-warning{\n    background-color:#d9822b;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-danger{\n    background-color:#db3737;\n    color:#ffffff; }\n\n.bp3-toast-message{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  padding:11px;\n  word-break:break-word; }\n\n.bp3-toast-container{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box !important;\n  display:-ms-flexbox !important;\n  display:flex !important;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  left:0;\n  overflow:hidden;\n  padding:0 20px 20px;\n  pointer-events:none;\n  right:0;\n  z-index:40; }\n  .bp3-toast-container.bp3-toast-container-in-portal{\n    position:fixed; }\n  .bp3-toast-container.bp3-toast-container-inline{\n    position:absolute; }\n  .bp3-toast-container.bp3-toast-container-top{\n    top:0; }\n  .bp3-toast-container.bp3-toast-container-bottom{\n    bottom:0;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:reverse;\n        -ms-flex-direction:column-reverse;\n            flex-direction:column-reverse;\n    top:auto; }\n  .bp3-toast-container.bp3-toast-container-left{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start; }\n  .bp3-toast-container.bp3-toast-container-right{\n    -webkit-box-align:end;\n        -ms-flex-align:end;\n            align-items:flex-end; }\n\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active) ~ .bp3-toast, .bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active) ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-exit-active ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-leave-active ~ .bp3-toast{\n  -webkit-transform:translateY(60px);\n          transform:translateY(60px); }\n.bp3-tooltip{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1); }\n  .bp3-tooltip .bp3-popover-arrow{\n    height:22px;\n    position:absolute;\n    width:22px; }\n    .bp3-tooltip .bp3-popover-arrow::before{\n      height:14px;\n      margin:4px;\n      width:14px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip{\n    margin-bottom:11px;\n    margin-top:-11px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n      bottom:-8px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip{\n    margin-left:11px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n      left:-8px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip{\n    margin-top:11px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n      top:-8px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip{\n    margin-left:-11px;\n    margin-right:11px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n      right:-8px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-tooltip > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-tooltip > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n    top:-0.22183px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n    right:-0.22183px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n    left:-0.22183px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n    bottom:-0.22183px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-tooltip .bp3-popover-content{\n    background:#394b59;\n    color:#f5f8fa; }\n  .bp3-tooltip .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-tooltip .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-tooltip .bp3-popover-arrow-fill{\n    fill:#394b59; }\n  .bp3-popover-enter > .bp3-tooltip, .bp3-popover-appear > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8); }\n  .bp3-popover-enter-active > .bp3-tooltip, .bp3-popover-appear-active > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover-exit > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tooltip .bp3-popover-content{\n    padding:10px 12px; }\n  .bp3-tooltip.bp3-dark,\n  .bp3-dark .bp3-tooltip{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-tooltip .bp3-popover-content{\n      background:#e1e8ed;\n      color:#394b59; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-fill{\n      fill:#e1e8ed; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-content{\n    background:#137cbd;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-arrow-fill{\n    fill:#137cbd; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-content{\n    background:#0f9960;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-arrow-fill{\n    fill:#0f9960; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-content{\n    background:#d9822b;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-arrow-fill{\n    fill:#d9822b; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-content{\n    background:#db3737;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-arrow-fill{\n    fill:#db3737; }\n\n.bp3-tooltip-indicator{\n  border-bottom:dotted 1px;\n  cursor:help; }\n.bp3-tree .bp3-icon, .bp3-tree .bp3-icon-standard, .bp3-tree .bp3-icon-large{\n  color:#5c7080; }\n  .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-tree .bp3-icon.bp3-intent-success, .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-tree-node-list{\n  list-style:none;\n  margin:0;\n  padding-left:0; }\n\n.bp3-tree-root{\n  background-color:transparent;\n  cursor:default;\n  padding-left:0;\n  position:relative; }\n\n.bp3-tree-node-content-0{\n  padding-left:0px; }\n\n.bp3-tree-node-content-1{\n  padding-left:23px; }\n\n.bp3-tree-node-content-2{\n  padding-left:46px; }\n\n.bp3-tree-node-content-3{\n  padding-left:69px; }\n\n.bp3-tree-node-content-4{\n  padding-left:92px; }\n\n.bp3-tree-node-content-5{\n  padding-left:115px; }\n\n.bp3-tree-node-content-6{\n  padding-left:138px; }\n\n.bp3-tree-node-content-7{\n  padding-left:161px; }\n\n.bp3-tree-node-content-8{\n  padding-left:184px; }\n\n.bp3-tree-node-content-9{\n  padding-left:207px; }\n\n.bp3-tree-node-content-10{\n  padding-left:230px; }\n\n.bp3-tree-node-content-11{\n  padding-left:253px; }\n\n.bp3-tree-node-content-12{\n  padding-left:276px; }\n\n.bp3-tree-node-content-13{\n  padding-left:299px; }\n\n.bp3-tree-node-content-14{\n  padding-left:322px; }\n\n.bp3-tree-node-content-15{\n  padding-left:345px; }\n\n.bp3-tree-node-content-16{\n  padding-left:368px; }\n\n.bp3-tree-node-content-17{\n  padding-left:391px; }\n\n.bp3-tree-node-content-18{\n  padding-left:414px; }\n\n.bp3-tree-node-content-19{\n  padding-left:437px; }\n\n.bp3-tree-node-content-20{\n  padding-left:460px; }\n\n.bp3-tree-node-content{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:30px;\n  padding-right:5px;\n  width:100%; }\n  .bp3-tree-node-content:hover{\n    background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-tree-node-caret,\n.bp3-tree-node-caret-none{\n  min-width:30px; }\n\n.bp3-tree-node-caret{\n  color:#5c7080;\n  cursor:pointer;\n  padding:7px;\n  -webkit-transform:rotate(0deg);\n          transform:rotate(0deg);\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tree-node-caret:hover{\n    color:#182026; }\n  .bp3-dark .bp3-tree-node-caret{\n    color:#a7b6c2; }\n    .bp3-dark .bp3-tree-node-caret:hover{\n      color:#f5f8fa; }\n  .bp3-tree-node-caret.bp3-tree-node-caret-open{\n    -webkit-transform:rotate(90deg);\n            transform:rotate(90deg); }\n  .bp3-tree-node-caret.bp3-icon-standard::before{\n    content:\"\"; }\n\n.bp3-tree-node-icon{\n  margin-right:7px;\n  position:relative; }\n\n.bp3-tree-node-label{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-label span{\n    display:inline; }\n\n.bp3-tree-node-secondary-label{\n  padding:0 5px;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-secondary-label .bp3-popover-wrapper,\n  .bp3-tree-node-secondary-label .bp3-popover-target{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-content{\n  background-color:inherit;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-caret,\n.bp3-tree-node.bp3-disabled .bp3-tree-node-icon{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content,\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-standard, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-large{\n    color:#ffffff; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret::before{\n    color:rgba(255, 255, 255, 0.7); }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret:hover::before{\n    color:#ffffff; }\n\n.bp3-dark .bp3-tree-node-content:hover{\n  background-color:rgba(92, 112, 128, 0.3); }\n\n.bp3-dark .bp3-tree .bp3-icon, .bp3-dark .bp3-tree .bp3-icon-standard, .bp3-dark .bp3-tree .bp3-icon-large{\n  color:#a7b6c2; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-dark .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n.bp3-omnibar{\n  -webkit-filter:blur(0);\n          filter:blur(0);\n  opacity:1;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  left:calc(50% - 250px);\n  top:20vh;\n  width:500px;\n  z-index:21; }\n  .bp3-omnibar.bp3-overlay-enter, .bp3-omnibar.bp3-overlay-appear{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2; }\n  .bp3-omnibar.bp3-overlay-enter-active, .bp3-omnibar.bp3-overlay-appear-active{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar.bp3-overlay-exit{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1; }\n  .bp3-omnibar.bp3-overlay-exit-active{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar .bp3-input{\n    background-color:transparent;\n    border-radius:0; }\n    .bp3-omnibar .bp3-input, .bp3-omnibar .bp3-input:focus{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-omnibar .bp3-menu{\n    background-color:transparent;\n    border-radius:0;\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n    max-height:calc(60vh - 40px);\n    overflow:auto; }\n    .bp3-omnibar .bp3-menu:empty{\n      display:none; }\n  .bp3-dark .bp3-omnibar, .bp3-omnibar.bp3-dark{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-omnibar-overlay .bp3-overlay-backdrop{\n  background-color:rgba(16, 22, 26, 0.2); }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n\n.bp3-multi-select{\n  min-width:150px; }\n\n.bp3-multi-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto; }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* This file was auto-generated by ensureUiComponents() in @jupyterlab/buildutils */\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n/* Icons urls */\n\n:root {\n  --jp-icon-add: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDEzaC02djZoLTJ2LTZINXYtMmg2VjVoMnY2aDZ2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-bug: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0yMCA4aC0yLjgxYy0uNDUtLjc4LTEuMDctMS40NS0xLjgyLTEuOTZMMTcgNC40MSAxNS41OSAzbC0yLjE3IDIuMTdDMTIuOTYgNS4wNiAxMi40OSA1IDEyIDVjLS40OSAwLS45Ni4wNi0xLjQxLjE3TDguNDEgMyA3IDQuNDFsMS42MiAxLjYzQzcuODggNi41NSA3LjI2IDcuMjIgNi44MSA4SDR2MmgyLjA5Yy0uMDUuMzMtLjA5LjY2LS4wOSAxdjFINHYyaDJ2MWMwIC4zNC4wNC42Ny4wOSAxSDR2MmgyLjgxYzEuMDQgMS43OSAyLjk3IDMgNS4xOSAzczQuMTUtMS4yMSA1LjE5LTNIMjB2LTJoLTIuMDljLjA1LS4zMy4wOS0uNjYuMDktMXYtMWgydi0yaC0ydi0xYzAtLjM0LS4wNC0uNjctLjA5LTFIMjBWOHptLTYgOGgtNHYtMmg0djJ6bTAtNGgtNHYtMmg0djJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-build: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE0LjkgMTcuNDVDMTYuMjUgMTcuNDUgMTcuMzUgMTYuMzUgMTcuMzUgMTVDMTcuMzUgMTMuNjUgMTYuMjUgMTIuNTUgMTQuOSAxMi41NUMxMy41NCAxMi41NSAxMi40NSAxMy42NSAxMi40NSAxNUMxMi40NSAxNi4zNSAxMy41NCAxNy40NSAxNC45IDE3LjQ1Wk0yMC4xIDE1LjY4TDIxLjU4IDE2Ljg0QzIxLjcxIDE2Ljk1IDIxLjc1IDE3LjEzIDIxLjY2IDE3LjI5TDIwLjI2IDE5LjcxQzIwLjE3IDE5Ljg2IDIwIDE5LjkyIDE5LjgzIDE5Ljg2TDE4LjA5IDE5LjE2QzE3LjczIDE5LjQ0IDE3LjMzIDE5LjY3IDE2LjkxIDE5Ljg1TDE2LjY0IDIxLjdDMTYuNjIgMjEuODcgMTYuNDcgMjIgMTYuMyAyMkgxMy41QzEzLjMyIDIyIDEzLjE4IDIxLjg3IDEzLjE1IDIxLjdMMTIuODkgMTkuODVDMTIuNDYgMTkuNjcgMTIuMDcgMTkuNDQgMTEuNzEgMTkuMTZMOS45NjAwMiAxOS44NkM5LjgxMDAyIDE5LjkyIDkuNjIwMDIgMTkuODYgOS41NDAwMiAxOS43MUw4LjE0MDAyIDE3LjI5QzguMDUwMDIgMTcuMTMgOC4wOTAwMiAxNi45NSA4LjIyMDAyIDE2Ljg0TDkuNzAwMDIgMTUuNjhMOS42NTAwMSAxNUw5LjcwMDAyIDE0LjMxTDguMjIwMDIgMTMuMTZDOC4wOTAwMiAxMy4wNSA4LjA1MDAyIDEyLjg2IDguMTQwMDIgMTIuNzFMOS41NDAwMiAxMC4yOUM5LjYyMDAyIDEwLjEzIDkuODEwMDIgMTAuMDcgOS45NjAwMiAxMC4xM0wxMS43MSAxMC44NEMxMi4wNyAxMC41NiAxMi40NiAxMC4zMiAxMi44OSAxMC4xNUwxMy4xNSA4LjI4OTk4QzEzLjE4IDguMTI5OTggMTMuMzIgNy45OTk5OCAxMy41IDcuOTk5OThIMTYuM0MxNi40NyA3Ljk5OTk4IDE2LjYyIDguMTI5OTggMTYuNjQgOC4yODk5OEwxNi45MSAxMC4xNUMxNy4zMyAxMC4zMiAxNy43MyAxMC41NiAxOC4wOSAxMC44NEwxOS44MyAxMC4xM0MyMCAxMC4wNyAyMC4xNyAxMC4xMyAyMC4yNiAxMC4yOUwyMS42NiAxMi43MUMyMS43NSAxMi44NiAyMS43MSAxMy4wNSAyMS41OCAxMy4xNkwyMC4xIDE0LjMxTDIwLjE1IDE1TDIwLjEgMTUuNjhaIi8+CiAgICA8cGF0aCBkPSJNNy4zMjk2NiA3LjQ0NDU0QzguMDgzMSA3LjAwOTU0IDguMzM5MzIgNi4wNTMzMiA3LjkwNDMyIDUuMjk5ODhDNy40NjkzMiA0LjU0NjQzIDYuNTA4MSA0LjI4MTU2IDUuNzU0NjYgNC43MTY1NkM1LjM5MTc2IDQuOTI2MDggNS4xMjY5NSA1LjI3MTE4IDUuMDE4NDkgNS42NzU5NEM0LjkxMDA0IDYuMDgwNzEgNC45NjY4MiA2LjUxMTk4IDUuMTc2MzQgNi44NzQ4OEM1LjYxMTM0IDcuNjI4MzIgNi41NzYyMiA3Ljg3OTU0IDcuMzI5NjYgNy40NDQ1NFpNOS42NTcxOCA0Ljc5NTkzTDEwLjg2NzIgNC45NTE3OUMxMC45NjI4IDQuOTc3NDEgMTEuMDQwMiA1LjA3MTMzIDExLjAzODIgNS4xODc5M0wxMS4wMzg4IDYuOTg4OTNDMTEuMDQ1NSA3LjEwMDU0IDEwLjk2MTYgNy4xOTUxOCAxMC44NTUgNy4yMTA1NEw5LjY2MDAxIDcuMzgwODNMOS4yMzkxNSA4LjEzMTg4TDkuNjY5NjEgOS4yNTc0NUM5LjcwNzI5IDkuMzYyNzEgOS42NjkzNCA5LjQ3Njk5IDkuNTc0MDggOS41MzE5OUw4LjAxNTIzIDEwLjQzMkM3LjkxMTMxIDEwLjQ5MiA3Ljc5MzM3IDEwLjQ2NzcgNy43MjEwNSAxMC4zODI0TDYuOTg3NDggOS40MzE4OEw2LjEwOTMxIDkuNDMwODNMNS4zNDcwNCAxMC4zOTA1QzUuMjg5MDkgMTAuNDcwMiA1LjE3MzgzIDEwLjQ5MDUgNS4wNzE4NyAxMC40MzM5TDMuNTEyNDUgOS41MzI5M0MzLjQxMDQ5IDkuNDc2MzMgMy4zNzY0NyA5LjM1NzQxIDMuNDEwNzUgOS4yNTY3OUwzLjg2MzQ3IDguMTQwOTNMMy42MTc0OSA3Ljc3NDg4TDMuNDIzNDcgNy4zNzg4M0wyLjIzMDc1IDcuMjEyOTdDMi4xMjY0NyA3LjE5MjM1IDIuMDQwNDkgNy4xMDM0MiAyLjA0MjQ1IDYuOTg2ODJMMi4wNDE4NyA1LjE4NTgyQzIuMDQzODMgNS4wNjkyMiAyLjExOTA5IDQuOTc5NTggMi4yMTcwNCA0Ljk2OTIyTDMuNDIwNjUgNC43OTM5M0wzLjg2NzQ5IDQuMDI3ODhMMy40MTEwNSAyLjkxNzMxQzMuMzczMzcgMi44MTIwNCAzLjQxMTMxIDIuNjk3NzYgMy41MTUyMyAyLjYzNzc2TDUuMDc0MDggMS43Mzc3NkM1LjE2OTM0IDEuNjgyNzYgNS4yODcyOSAxLjcwNzA0IDUuMzU5NjEgMS43OTIzMUw2LjExOTE1IDIuNzI3ODhMNi45ODAwMSAyLjczODkzTDcuNzI0OTYgMS43ODkyMkM3Ljc5MTU2IDEuNzA0NTggNy45MTU0OCAxLjY3OTIyIDguMDA4NzkgMS43NDA4Mkw5LjU2ODIxIDIuNjQxODJDOS42NzAxNyAyLjY5ODQyIDkuNzEyODUgMi44MTIzNCA5LjY4NzIzIDIuOTA3OTdMOS4yMTcxOCA0LjAzMzgzTDkuNDYzMTYgNC4zOTk4OEw5LjY1NzE4IDQuNzk1OTNaIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iOS45LDEzLjYgMy42LDcuNCA0LjQsNi42IDkuOSwxMi4yIDE1LjQsNi43IDE2LjEsNy40ICIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNS45TDksOS43bDMuOC0zLjhsMS4yLDEuMmwtNC45LDVsLTQuOS01TDUuMiw1Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNy41TDksMTEuMmwzLjgtMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-left: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik0xMC44LDEyLjhMNy4xLDlsMy44LTMuOGwwLDcuNkgxMC44eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-right: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik03LjIsNS4yTDEwLjksOWwtMy44LDMuOFY1LjJINy4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-up-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iMTUuNCwxMy4zIDkuOSw3LjcgNC40LDEzLjIgMy42LDEyLjUgOS45LDYuMyAxNi4xLDEyLjYgIi8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-up: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik01LjIsMTAuNUw5LDYuOGwzLjgsMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-case-sensitive: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgogIDxnIGNsYXNzPSJqcC1pY29uLWFjY2VudDIiIGZpbGw9IiNGRkYiPgogICAgPHBhdGggZD0iTTcuNiw4aDAuOWwzLjUsOGgtMS4xTDEwLDE0SDZsLTAuOSwySDRMNy42LDh6IE04LDkuMUw2LjQsMTNoMy4yTDgsOS4xeiIvPgogICAgPHBhdGggZD0iTTE2LjYsOS44Yy0wLjIsMC4xLTAuNCwwLjEtMC43LDAuMWMtMC4yLDAtMC40LTAuMS0wLjYtMC4yYy0wLjEtMC4xLTAuMi0wLjQtMC4yLTAuNyBjLTAuMywwLjMtMC42LDAuNS0wLjksMC43Yy0wLjMsMC4xLTAuNywwLjItMS4xLDAuMmMtMC4zLDAtMC41LDAtMC43LTAuMWMtMC4yLTAuMS0wLjQtMC4yLTAuNi0wLjNjLTAuMi0wLjEtMC4zLTAuMy0wLjQtMC41IGMtMC4xLTAuMi0wLjEtMC40LTAuMS0wLjdjMC0wLjMsMC4xLTAuNiwwLjItMC44YzAuMS0wLjIsMC4zLTAuNCwwLjQtMC41QzEyLDcsMTIuMiw2LjksMTIuNSw2LjhjMC4yLTAuMSwwLjUtMC4xLDAuNy0wLjIgYzAuMy0wLjEsMC41LTAuMSwwLjctMC4xYzAuMiwwLDAuNC0wLjEsMC42LTAuMWMwLjIsMCwwLjMtMC4xLDAuNC0wLjJjMC4xLTAuMSwwLjItMC4yLDAuMi0wLjRjMC0xLTEuMS0xLTEuMy0xIGMtMC40LDAtMS40LDAtMS40LDEuMmgtMC45YzAtMC40LDAuMS0wLjcsMC4yLTFjMC4xLTAuMiwwLjMtMC40LDAuNS0wLjZjMC4yLTAuMiwwLjUtMC4zLDAuOC0wLjNDMTMuMyw0LDEzLjYsNCwxMy45LDQgYzAuMywwLDAuNSwwLDAuOCwwLjFjMC4zLDAsMC41LDAuMSwwLjcsMC4yYzAuMiwwLjEsMC40LDAuMywwLjUsMC41QzE2LDUsMTYsNS4yLDE2LDUuNnYyLjljMCwwLjIsMCwwLjQsMCwwLjUgYzAsMC4xLDAuMSwwLjIsMC4zLDAuMmMwLjEsMCwwLjIsMCwwLjMsMFY5Ljh6IE0xNS4yLDYuOWMtMS4yLDAuNi0zLjEsMC4yLTMuMSwxLjRjMCwxLjQsMy4xLDEsMy4xLTAuNVY2Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-check: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik05IDE2LjE3TDQuODMgMTJsLTEuNDIgMS40MUw5IDE5IDIxIDdsLTEuNDEtMS40MXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-circle-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDJDNi40NyAyIDIgNi40NyAyIDEyczQuNDcgMTAgMTAgMTAgMTAtNC40NyAxMC0xMFMxNy41MyAyIDEyIDJ6bTAgMThjLTQuNDEgMC04LTMuNTktOC04czMuNTktOCA4LTggOCAzLjU5IDggOC0zLjU5IDgtOCA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-circle: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjgiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-clear: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8bWFzayBpZD0iZG9udXRIb2xlIj4KICAgIDxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0id2hpdGUiIC8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSI4IiBmaWxsPSJibGFjayIvPgogIDwvbWFzaz4KCiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxyZWN0IGhlaWdodD0iMTgiIHdpZHRoPSIyIiB4PSIxMSIgeT0iMyIgdHJhbnNmb3JtPSJyb3RhdGUoMzE1LCAxMiwgMTIpIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIgbWFzaz0idXJsKCNkb251dEhvbGUpIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-close: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1ub25lIGpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIGpwLWljb24zLWhvdmVyIiBmaWxsPSJub25lIj4KICAgIDxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjExIi8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIGpwLWljb24tYWNjZW50Mi1ob3ZlciIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMTkgNi40MUwxNy41OSA1IDEyIDEwLjU5IDYuNDEgNSA1IDYuNDEgMTAuNTkgMTIgNSAxNy41OSA2LjQxIDE5IDEyIDEzLjQxIDE3LjU5IDE5IDE5IDE3LjU5IDEzLjQxIDEyeiIvPgogIDwvZz4KCiAgPGcgY2xhc3M9ImpwLWljb24tbm9uZSBqcC1pY29uLWJ1c3kiIGZpbGw9Im5vbmUiPgogICAgPGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-code: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTExLjQgMTguNkw2LjggMTRMMTEuNCA5LjRMMTAgOEw0IDE0TDEwIDIwTDExLjQgMTguNlpNMTYuNiAxOC42TDIxLjIgMTRMMTYuNiA5LjRMMTggOEwyNCAxNEwxOCAyMEwxNi42IDE4LjZWMTguNloiLz4KCTwvZz4KPC9zdmc+Cg==);\n  --jp-icon-console: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwMCAyMDAiPgogIDxnIGNsYXNzPSJqcC1pY29uLWJyYW5kMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMjg4RDEiPgogICAgPHBhdGggZD0iTTIwIDE5LjhoMTYwdjE1OS45SDIweiIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNmZmYiPgogICAgPHBhdGggZD0iTTEwNSAxMjcuM2g0MHYxMi44aC00MHpNNTEuMSA3N0w3NCA5OS45bC0yMy4zIDIzLjMgMTAuNSAxMC41IDIzLjMtMjMuM0w5NSA5OS45IDg0LjUgODkuNCA2MS42IDY2LjV6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-copy: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTExLjksMUgzLjJDMi40LDEsMS43LDEuNywxLjcsMi41djEwLjJoMS41VjIuNWg4LjdWMXogTTE0LjEsMy45aC04Yy0wLjgsMC0xLjUsMC43LTEuNSwxLjV2MTAuMmMwLDAuOCwwLjcsMS41LDEuNSwxLjVoOCBjMC44LDAsMS41LTAuNywxLjUtMS41VjUuNEMxNS41LDQuNiwxNC45LDMuOSwxNC4xLDMuOXogTTE0LjEsMTUuNWgtOFY1LjRoOFYxNS41eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-copyright: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDI0IDI0IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCI+CiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0xMS44OCw5LjE0YzEuMjgsMC4wNiwxLjYxLDEuMTUsMS42MywxLjY2aDEuNzljLTAuMDgtMS45OC0xLjQ5LTMuMTktMy40NS0zLjE5QzkuNjQsNy42MSw4LDksOCwxMi4xNCBjMCwxLjk0LDAuOTMsNC4yNCwzLjg0LDQuMjRjMi4yMiwwLDMuNDEtMS42NSwzLjQ0LTIuOTVoLTEuNzljLTAuMDMsMC41OS0wLjQ1LDEuMzgtMS42MywxLjQ0QzEwLjU1LDE0LjgzLDEwLDEzLjgxLDEwLDEyLjE0IEMxMCw5LjI1LDExLjI4LDkuMTYsMTEuODgsOS4xNHogTTEyLDJDNi40OCwyLDIsNi40OCwyLDEyczQuNDgsMTAsMTAsMTBzMTAtNC40OCwxMC0xMFMxNy41MiwyLDEyLDJ6IE0xMiwyMGMtNC40MSwwLTgtMy41OS04LTggczMuNTktOCw4LThzOCwzLjU5LDgsOFMxNi40MSwyMCwxMiwyMHoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-cut: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkuNjQgNy42NGMuMjMtLjUuMzYtMS4wNS4zNi0xLjY0IDAtMi4yMS0xLjc5LTQtNC00UzIgMy43OSAyIDZzMS43OSA0IDQgNGMuNTkgMCAxLjE0LS4xMyAxLjY0LS4zNkwxMCAxMmwtMi4zNiAyLjM2QzcuMTQgMTQuMTMgNi41OSAxNCA2IDE0Yy0yLjIxIDAtNCAxLjc5LTQgNHMxLjc5IDQgNCA0IDQtMS43OSA0LTRjMC0uNTktLjEzLTEuMTQtLjM2LTEuNjRMMTIgMTRsNyA3aDN2LTFMOS42NCA3LjY0ek02IDhjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTAgMTJjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTYtNy41Yy0uMjggMC0uNS0uMjItLjUtLjVzLjIyLS41LjUtLjUuNS4yMi41LjUtLjIyLjUtLjUuNXpNMTkgM2wtNiA2IDIgMiA3LTdWM3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-download: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDloLTRWM0g5djZINWw3IDcgNy03ek01IDE4djJoMTR2LTJINXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-edit: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMgMTcuMjVWMjFoMy43NUwxNy44MSA5Ljk0bC0zLjc1LTMuNzVMMyAxNy4yNXpNMjAuNzEgNy4wNGMuMzktLjM5LjM5LTEuMDIgMC0xLjQxbC0yLjM0LTIuMzRjLS4zOS0uMzktMS4wMi0uMzktMS40MSAwbC0xLjgzIDEuODMgMy43NSAzLjc1IDEuODMtMS44M3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-ellipses: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iNSIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxOSIgY3k9IjEyIiByPSIyIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-extension: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwLjUgMTFIMTlWN2MwLTEuMS0uOS0yLTItMmgtNFYzLjVDMTMgMi4xMiAxMS44OCAxIDEwLjUgMVM4IDIuMTIgOCAzLjVWNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAydjMuOEgzLjVjMS40OSAwIDIuNyAxLjIxIDIuNyAyLjdzLTEuMjEgMi43LTIuNyAyLjdIMlYyMGMwIDEuMS45IDIgMiAyaDMuOHYtMS41YzAtMS40OSAxLjIxLTIuNyAyLjctMi43IDEuNDkgMCAyLjcgMS4yMSAyLjcgMi43VjIySDE3YzEuMSAwIDItLjkgMi0ydi00aDEuNWMxLjM4IDAgMi41LTEuMTIgMi41LTIuNVMyMS44OCAxMSAyMC41IDExeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-fast-forward: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTQgMThsOC41LTZMNCA2djEyem05LTEydjEybDguNS02TDEzIDZ6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-file-upload: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkgMTZoNnYtNmg0bC03LTctNyA3aDR6bS00IDJoMTR2Mkg1eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-file: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuMyA4LjJsLTUuNS01LjVjLS4zLS4zLS43LS41LTEuMi0uNUgzLjljLS44LjEtMS42LjktMS42IDEuOHYxNC4xYzAgLjkuNyAxLjYgMS42IDEuNmgxNC4yYy45IDAgMS42LS43IDEuNi0xLjZWOS40Yy4xLS41LS4xLS45LS40LTEuMnptLTUuOC0zLjNsMy40IDMuNmgtMy40VjQuOXptMy45IDEyLjdINC43Yy0uMSAwLS4yIDAtLjItLjJWNC43YzAtLjIuMS0uMy4yLS4zaDcuMnY0LjRzMCAuOC4zIDEuMWMuMy4zIDEuMS4zIDEuMS4zaDQuM3Y3LjJzLS4xLjItLjIuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-filter-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEwIDE4aDR2LTJoLTR2MnpNMyA2djJoMThWNkgzem0zIDdoMTJ2LTJINnYyeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY4YzAtMS4xLS45LTItMi0yaC04bC0yLTJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-html5: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMDAiIGQ9Ik0xMDguNCAwaDIzdjIyLjhoMjEuMlYwaDIzdjY5aC0yM1Y0NmgtMjF2MjNoLTIzLjJNMjA2IDIzaC0yMC4zVjBoNjMuN3YyM0gyMjl2NDZoLTIzbTUzLjUtNjloMjQuMWwxNC44IDI0LjNMMzEzLjIgMGgyNC4xdjY5aC0yM1YzNC44bC0xNi4xIDI0LjgtMTYuMS0yNC44VjY5aC0yMi42bTg5LjItNjloMjN2NDYuMmgzMi42VjY5aC01NS42Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI2U0NGQyNiIgZD0iTTEwNy42IDQ3MWwtMzMtMzcwLjRoMzYyLjhsLTMzIDM3MC4yTDI1NS43IDUxMiIvPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNmMTY1MjkiIGQ9Ik0yNTYgNDgwLjVWMTMxaDE0OC4zTDM3NiA0NDciLz4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNlYmViZWIiIGQ9Ik0xNDIgMTc2LjNoMTE0djQ1LjRoLTY0LjJsNC4yIDQ2LjVoNjB2NDUuM0gxNTQuNG0yIDIyLjhIMjAybDMuMiAzNi4zIDUwLjggMTMuNnY0Ny40bC05My4yLTI2Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIiBmaWxsPSIjZmZmIiBkPSJNMzY5LjYgMTc2LjNIMjU1Ljh2NDUuNGgxMDkuNm0tNC4xIDQ2LjVIMjU1Ljh2NDUuNGg1NmwtNS4zIDU5LTUwLjcgMTMuNnY0Ny4ybDkzLTI1LjgiLz4KPC9zdmc+Cg==);\n  --jp-icon-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1icmFuZDQganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNGRkYiIGQ9Ik0yLjIgMi4yaDE3LjV2MTcuNUgyLjJ6Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzNGNTFCNSIgZD0iTTIuMiAyLjJ2MTcuNWgxNy41bC4xLTE3LjVIMi4yem0xMi4xIDIuMmMxLjIgMCAyLjIgMSAyLjIgMi4ycy0xIDIuMi0yLjIgMi4yLTIuMi0xLTIuMi0yLjIgMS0yLjIgMi4yLTIuMnpNNC40IDE3LjZsMy4zLTguOCAzLjMgNi42IDIuMi0zLjIgNC40IDUuNEg0LjR6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-inspector: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY2YzAtMS4xLS45LTItMi0yem0tNSAxNEg0di00aDExdjR6bTAtNUg0VjloMTF2NHptNSA1aC00VjloNHY5eiIvPgo8L3N2Zz4K);\n  --jp-icon-json: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNGOUE4MjUiPgogICAgPHBhdGggZD0iTTIwLjIgMTEuOGMtMS42IDAtMS43LjUtMS43IDEgMCAuNC4xLjkuMSAxLjMuMS41LjEuOS4xIDEuMyAwIDEuNy0xLjQgMi4zLTMuNSAyLjNoLS45di0xLjloLjVjMS4xIDAgMS40IDAgMS40LS44IDAtLjMgMC0uNi0uMS0xIDAtLjQtLjEtLjgtLjEtMS4yIDAtMS4zIDAtMS44IDEuMy0yLTEuMy0uMi0xLjMtLjctMS4zLTIgMC0uNC4xLS44LjEtMS4yLjEtLjQuMS0uNy4xLTEgMC0uOC0uNC0uNy0xLjQtLjhoLS41VjQuMWguOWMyLjIgMCAzLjUuNyAzLjUgMi4zIDAgLjQtLjEuOS0uMSAxLjMtLjEuNS0uMS45LS4xIDEuMyAwIC41LjIgMSAxLjcgMXYxLjh6TTEuOCAxMC4xYzEuNiAwIDEuNy0uNSAxLjctMSAwLS40LS4xLS45LS4xLTEuMy0uMS0uNS0uMS0uOS0uMS0xLjMgMC0xLjYgMS40LTIuMyAzLjUtMi4zaC45djEuOWgtLjVjLTEgMC0xLjQgMC0xLjQuOCAwIC4zIDAgLjYuMSAxIDAgLjIuMS42LjEgMSAwIDEuMyAwIDEuOC0xLjMgMkM2IDExLjIgNiAxMS43IDYgMTNjMCAuNC0uMS44LS4xIDEuMi0uMS4zLS4xLjctLjEgMSAwIC44LjMuOCAxLjQuOGguNXYxLjloLS45Yy0yLjEgMC0zLjUtLjYtMy41LTIuMyAwLS40LjEtLjkuMS0xLjMuMS0uNS4xLS45LjEtMS4zIDAtLjUtLjItMS0xLjctMXYtMS45eiIvPgogICAgPGNpcmNsZSBjeD0iMTEiIGN5PSIxMy44IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY3g9IjExIiBjeT0iOC4yIiByPSIyLjEiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-julia: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDMyNSAzMDAiPgogIDxnIGNsYXNzPSJqcC1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjY2IzYzMzIj4KICAgIDxwYXRoIGQ9Ik0gMTUwLjg5ODQzOCAyMjUgQyAxNTAuODk4NDM4IDI2Ni40MjE4NzUgMTE3LjMyMDMxMiAzMDAgNzUuODk4NDM4IDMwMCBDIDM0LjQ3NjU2MiAzMDAgMC44OTg0MzggMjY2LjQyMTg3NSAwLjg5ODQzOCAyMjUgQyAwLjg5ODQzOCAxODMuNTc4MTI1IDM0LjQ3NjU2MiAxNTAgNzUuODk4NDM4IDE1MCBDIDExNy4zMjAzMTIgMTUwIDE1MC44OTg0MzggMTgzLjU3ODEyNSAxNTAuODk4NDM4IDIyNSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzM4OTgyNiI+CiAgICA8cGF0aCBkPSJNIDIzNy41IDc1IEMgMjM3LjUgMTE2LjQyMTg3NSAyMDMuOTIxODc1IDE1MCAxNjIuNSAxNTAgQyAxMjEuMDc4MTI1IDE1MCA4Ny41IDExNi40MjE4NzUgODcuNSA3NSBDIDg3LjUgMzMuNTc4MTI1IDEyMS4wNzgxMjUgMCAxNjIuNSAwIEMgMjAzLjkyMTg3NSAwIDIzNy41IDMzLjU3ODEyNSAyMzcuNSA3NSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzk1NThiMiI+CiAgICA8cGF0aCBkPSJNIDMyNC4xMDE1NjIgMjI1IEMgMzI0LjEwMTU2MiAyNjYuNDIxODc1IDI5MC41MjM0MzggMzAwIDI0OS4xMDE1NjIgMzAwIEMgMjA3LjY3OTY4OCAzMDAgMTc0LjEwMTU2MiAyNjYuNDIxODc1IDE3NC4xMDE1NjIgMjI1IEMgMTc0LjEwMTU2MiAxODMuNTc4MTI1IDIwNy42Nzk2ODggMTUwIDI0OS4xMDE1NjIgMTUwIEMgMjkwLjUyMzQzOCAxNTAgMzI0LjEwMTU2MiAxODMuNTc4MTI1IDMyNC4xMDE1NjIgMjI1Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-jupyter-favicon: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUyIiBoZWlnaHQ9IjE2NSIgdmlld0JveD0iMCAwIDE1MiAxNjUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA3ODk0NywgMTEwLjU4MjkyNykiIGQ9Ik03NS45NDIyODQyLDI5LjU4MDQ1NjEgQzQzLjMwMjM5NDcsMjkuNTgwNDU2MSAxNC43OTY3ODMyLDE3LjY1MzQ2MzQgMCwwIEM1LjUxMDgzMjExLDE1Ljg0MDY4MjkgMTUuNzgxNTM4OSwyOS41NjY3NzMyIDI5LjM5MDQ5NDcsMzkuMjc4NDE3MSBDNDIuOTk5Nyw0OC45ODk4NTM3IDU5LjI3MzcsNTQuMjA2NzgwNSA3NS45NjA1Nzg5LDU0LjIwNjc4MDUgQzkyLjY0NzQ1NzksNTQuMjA2NzgwNSAxMDguOTIxNDU4LDQ4Ljk4OTg1MzcgMTIyLjUzMDY2MywzOS4yNzg0MTcxIEMxMzYuMTM5NDUzLDI5LjU2Njc3MzIgMTQ2LjQxMDI4NCwxNS44NDA2ODI5IDE1MS45MjExNTgsMCBDMTM3LjA4Nzg2OCwxNy42NTM0NjM0IDEwOC41ODI1ODksMjkuNTgwNDU2MSA3NS45NDIyODQyLDI5LjU4MDQ1NjEgTDc1Ljk0MjI4NDIsMjkuNTgwNDU2MSBaIiAvPgogICAgPHBhdGggdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMzczNjgsIDAuNzA0ODc4KSIgZD0iTTc1Ljk3ODQ1NzksMjQuNjI2NDA3MyBDMTA4LjYxODc2MywyNC42MjY0MDczIDEzNy4xMjQ0NTgsMzYuNTUzNDQxNSAxNTEuOTIxMTU4LDU0LjIwNjc4MDUgQzE0Ni40MTAyODQsMzguMzY2MjIyIDEzNi4xMzk0NTMsMjQuNjQwMTMxNyAxMjIuNTMwNjYzLDE0LjkyODQ4NzggQzEwOC45MjE0NTgsNS4yMTY4NDM5IDkyLjY0NzQ1NzksMCA3NS45NjA1Nzg5LDAgQzU5LjI3MzcsMCA0Mi45OTk3LDUuMjE2ODQzOSAyOS4zOTA0OTQ3LDE0LjkyODQ4NzggQzE1Ljc4MTUzODksMjQuNjQwMTMxNyA1LjUxMDgzMjExLDM4LjM2NjIyMiAwLDU0LjIwNjc4MDUgQzE0LjgzMzA4MTYsMzYuNTg5OTI5MyA0My4zMzg1Njg0LDI0LjYyNjQwNzMgNzUuOTc4NDU3OSwyNC42MjY0MDczIEw3NS45Nzg0NTc5LDI0LjYyNjQwNzMgWiIgLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-jupyter: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzkiIGhlaWdodD0iNTEiIHZpZXdCb3g9IjAgMCAzOSA1MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTYzOCAtMjI4MSkiPgogICAgPGcgY2xhc3M9ImpwLWljb24td2FybjAiIGZpbGw9IiNGMzc3MjYiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5Ljc0IDIzMTEuOTgpIiBkPSJNIDE4LjI2NDYgNy4xMzQxMUMgMTAuNDE0NSA3LjEzNDExIDMuNTU4NzIgNC4yNTc2IDAgMEMgMS4zMjUzOSAzLjgyMDQgMy43OTU1NiA3LjEzMDgxIDcuMDY4NiA5LjQ3MzAzQyAxMC4zNDE3IDExLjgxNTIgMTQuMjU1NyAxMy4wNzM0IDE4LjI2OSAxMy4wNzM0QyAyMi4yODIzIDEzLjA3MzQgMjYuMTk2MyAxMS44MTUyIDI5LjQ2OTQgOS40NzMwM0MgMzIuNzQyNCA3LjEzMDgxIDM1LjIxMjYgMy44MjA0IDM2LjUzOCAwQyAzMi45NzA1IDQuMjU3NiAyNi4xMTQ4IDcuMTM0MTEgMTguMjY0NiA3LjEzNDExWiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5LjczIDIyODUuNDgpIiBkPSJNIDE4LjI3MzMgNS45MzkzMUMgMjYuMTIzNSA1LjkzOTMxIDMyLjk3OTMgOC44MTU4MyAzNi41MzggMTMuMDczNEMgMzUuMjEyNiA5LjI1MzAzIDMyLjc0MjQgNS45NDI2MiAyOS40Njk0IDMuNjAwNEMgMjYuMTk2MyAxLjI1ODE4IDIyLjI4MjMgMCAxOC4yNjkgMEMgMTQuMjU1NyAwIDEwLjM0MTcgMS4yNTgxOCA3LjA2ODYgMy42MDA0QyAzLjc5NTU2IDUuOTQyNjIgMS4zMjUzOSA5LjI1MzAzIDAgMTMuMDczNEMgMy41Njc0NSA4LjgyNDYzIDEwLjQyMzIgNS45MzkzMSAxOC4yNzMzIDUuOTM5MzFaIi8+CiAgICA8L2c+CiAgICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjY5LjMgMjI4MS4zMSkiIGQ9Ik0gNS44OTM1MyAyLjg0NEMgNS45MTg4OSAzLjQzMTY1IDUuNzcwODUgNC4wMTM2NyA1LjQ2ODE1IDQuNTE2NDVDIDUuMTY1NDUgNS4wMTkyMiA0LjcyMTY4IDUuNDIwMTUgNC4xOTI5OSA1LjY2ODUxQyAzLjY2NDMgNS45MTY4OCAzLjA3NDQ0IDYuMDAxNTEgMi40OTgwNSA1LjkxMTcxQyAxLjkyMTY2IDUuODIxOSAxLjM4NDYzIDUuNTYxNyAwLjk1NDg5OCA1LjE2NDAxQyAwLjUyNTE3IDQuNzY2MzMgMC4yMjIwNTYgNC4yNDkwMyAwLjA4MzkwMzcgMy42Nzc1N0MgLTAuMDU0MjQ4MyAzLjEwNjExIC0wLjAyMTIzIDIuNTA2MTcgMC4xNzg3ODEgMS45NTM2NEMgMC4zNzg3OTMgMS40MDExIDAuNzM2ODA5IDAuOTIwODE3IDEuMjA3NTQgMC41NzM1MzhDIDEuNjc4MjYgMC4yMjYyNTkgMi4yNDA1NSAwLjAyNzU5MTkgMi44MjMyNiAwLjAwMjY3MjI5QyAzLjYwMzg5IC0wLjAzMDcxMTUgNC4zNjU3MyAwLjI0OTc4OSA0Ljk0MTQyIDAuNzgyNTUxQyA1LjUxNzExIDEuMzE1MzEgNS44NTk1NiAyLjA1Njc2IDUuODkzNTMgMi44NDRaIi8+CiAgICAgIDxwYXRoIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE2MzkuOCAyMzIzLjgxKSIgZD0iTSA3LjQyNzg5IDMuNTgzMzhDIDcuNDYwMDggNC4zMjQzIDcuMjczNTUgNS4wNTgxOSA2Ljg5MTkzIDUuNjkyMTNDIDYuNTEwMzEgNi4zMjYwNyA1Ljk1MDc1IDYuODMxNTYgNS4yODQxMSA3LjE0NDZDIDQuNjE3NDcgNy40NTc2MyAzLjg3MzcxIDcuNTY0MTQgMy4xNDcwMiA3LjQ1MDYzQyAyLjQyMDMyIDcuMzM3MTIgMS43NDMzNiA3LjAwODcgMS4yMDE4NCA2LjUwNjk1QyAwLjY2MDMyOCA2LjAwNTIgMC4yNzg2MSA1LjM1MjY4IDAuMTA1MDE3IDQuNjMyMDJDIC0wLjA2ODU3NTcgMy45MTEzNSAtMC4wMjYyMzYxIDMuMTU0OTQgMC4yMjY2NzUgMi40NTg1NkMgMC40Nzk1ODcgMS43NjIxNyAwLjkzMTY5NyAxLjE1NzEzIDEuNTI1NzYgMC43MjAwMzNDIDIuMTE5ODMgMC4yODI5MzUgMi44MjkxNCAwLjAzMzQzOTUgMy41NjM4OSAwLjAwMzEzMzQ0QyA0LjU0NjY3IC0wLjAzNzQwMzMgNS41MDUyOSAwLjMxNjcwNiA2LjIyOTYxIDAuOTg3ODM1QyA2Ljk1MzkzIDEuNjU4OTYgNy4zODQ4NCAyLjU5MjM1IDcuNDI3ODkgMy41ODMzOEwgNy40Mjc4OSAzLjU4MzM4WiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM4LjM2IDIyODYuMDYpIiBkPSJNIDIuMjc0NzEgNC4zOTYyOUMgMS44NDM2MyA0LjQxNTA4IDEuNDE2NzEgNC4zMDQ0NSAxLjA0Nzk5IDQuMDc4NDNDIDAuNjc5MjY4IDMuODUyNCAwLjM4NTMyOCAzLjUyMTE0IDAuMjAzMzcxIDMuMTI2NTZDIDAuMDIxNDEzNiAyLjczMTk4IC0wLjA0MDM3OTggMi4yOTE4MyAwLjAyNTgxMTYgMS44NjE4MUMgMC4wOTIwMDMxIDEuNDMxOCAwLjI4MzIwNCAxLjAzMTI2IDAuNTc1MjEzIDAuNzEwODgzQyAwLjg2NzIyMiAwLjM5MDUxIDEuMjQ2OTEgMC4xNjQ3MDggMS42NjYyMiAwLjA2MjA1OTJDIDIuMDg1NTMgLTAuMDQwNTg5NyAyLjUyNTYxIC0wLjAxNTQ3MTQgMi45MzA3NiAwLjEzNDIzNUMgMy4zMzU5MSAwLjI4Mzk0MSAzLjY4NzkyIDAuNTUxNTA1IDMuOTQyMjIgMC45MDMwNkMgNC4xOTY1MiAxLjI1NDYyIDQuMzQxNjkgMS42NzQzNiA0LjM1OTM1IDIuMTA5MTZDIDQuMzgyOTkgMi42OTEwNyA0LjE3Njc4IDMuMjU4NjkgMy43ODU5NyAzLjY4NzQ2QyAzLjM5NTE2IDQuMTE2MjQgMi44NTE2NiA0LjM3MTE2IDIuMjc0NzEgNC4zOTYyOUwgMi4yNzQ3MSA0LjM5NjI5WiIvPgogICAgPC9nPgogIDwvZz4+Cjwvc3ZnPgo=);\n  --jp-icon-jupyterlab-wordmark: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIHZpZXdCb3g9IjAgMCAxODYwLjggNDc1Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0RTRFNEUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ4MC4xMzY0MDEsIDY0LjI3MTQ5MykiPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMDAwMDAsIDU4Ljg3NTU2NikiPgogICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA4NzYwMywgMC4xNDAyOTQpIj4KICAgICAgICA8cGF0aCBkPSJNLTQyNi45LDE2OS44YzAsNDguNy0zLjcsNjQuNy0xMy42LDc2LjRjLTEwLjgsMTAtMjUsMTUuNS0zOS43LDE1LjVsMy43LDI5IGMyMi44LDAuMyw0NC44LTcuOSw2MS45LTIzLjFjMTcuOC0xOC41LDI0LTQ0LjEsMjQtODMuM1YwSC00Mjd2MTcwLjFMLTQyNi45LDE2OS44TC00MjYuOSwxNjkuOHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTU1LjA0NTI5NiwgNTYuODM3MTA0KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuNTYyNDUzLCAxLjc5OTg0MikiPgogICAgICAgIDxwYXRoIGQ9Ik0tMzEyLDE0OGMwLDIxLDAsMzkuNSwxLjcsNTUuNGgtMzEuOGwtMi4xLTMzLjNoLTAuOGMtNi43LDExLjYtMTYuNCwyMS4zLTI4LDI3LjkgYy0xMS42LDYuNi0yNC44LDEwLTM4LjIsOS44Yy0zMS40LDAtNjktMTcuNy02OS04OVYwaDM2LjR2MTEyLjdjMCwzOC43LDExLjYsNjQuNyw0NC42LDY0LjdjMTAuMy0wLjIsMjAuNC0zLjUsMjguOS05LjQgYzguNS01LjksMTUuMS0xNC4zLDE4LjktMjMuOWMyLjItNi4xLDMuMy0xMi41LDMuMy0xOC45VjAuMmgzNi40VjE0OEgtMzEyTC0zMTIsMTQ4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzOTAuMDEzMzIyLCA1My40Nzk2MzgpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS43MDY0NTgsIDAuMjMxNDI1KSI+CiAgICAgICAgPHBhdGggZD0iTS00NzguNiw3MS40YzAtMjYtMC44LTQ3LTEuNy02Ni43aDMyLjdsMS43LDM0LjhoMC44YzcuMS0xMi41LDE3LjUtMjIuOCwzMC4xLTI5LjcgYzEyLjUtNywyNi43LTEwLjMsNDEtOS44YzQ4LjMsMCw4NC43LDQxLjcsODQuNywxMDMuM2MwLDczLjEtNDMuNywxMDkuMi05MSwxMDkuMmMtMTIuMSwwLjUtMjQuMi0yLjItMzUtNy44IGMtMTAuOC01LjYtMTkuOS0xMy45LTI2LjYtMjQuMmgtMC44VjI5MWgtMzZ2LTIyMEwtNDc4LjYsNzEuNEwtNDc4LjYsNzEuNHogTS00NDIuNiwxMjUuNmMwLjEsNS4xLDAuNiwxMC4xLDEuNywxNS4xIGMzLDEyLjMsOS45LDIzLjMsMTkuOCwzMS4xYzkuOSw3LjgsMjIuMSwxMi4xLDM0LjcsMTIuMWMzOC41LDAsNjAuNy0zMS45LDYwLjctNzguNWMwLTQwLjctMjEuMS03NS42LTU5LjUtNzUuNiBjLTEyLjksMC40LTI1LjMsNS4xLTM1LjMsMTMuNGMtOS45LDguMy0xNi45LDE5LjctMTkuNiwzMi40Yy0xLjUsNC45LTIuMywxMC0yLjUsMTUuMVYxMjUuNkwtNDQyLjYsMTI1LjZMLTQ0Mi42LDEyNS42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MDYuNzQwNzI2LCA1Ni44MzcxMDQpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC43NTEyMjYsIDEuOTg5Mjk5KSI+CiAgICAgICAgPHBhdGggZD0iTS00NDAuOCwwbDQzLjcsMTIwLjFjNC41LDEzLjQsOS41LDI5LjQsMTIuOCw0MS43aDAuOGMzLjctMTIuMiw3LjktMjcuNywxMi44LTQyLjQgbDM5LjctMTE5LjJoMzguNUwtMzQ2LjksMTQ1Yy0yNiw2OS43LTQzLjcsMTA1LjQtNjguNiwxMjcuMmMtMTIuNSwxMS43LTI3LjksMjAtNDQuNiwyMy45bC05LjEtMzEuMSBjMTEuNy0zLjksMjIuNS0xMC4xLDMxLjgtMTguMWMxMy4yLTExLjEsMjMuNy0yNS4yLDMwLjYtNDEuMmMxLjUtMi44LDIuNS01LjcsMi45LTguOGMtMC4zLTMuMy0xLjItNi42LTIuNS05LjdMLTQ4MC4yLDAuMSBoMzkuN0wtNDQwLjgsMEwtNDQwLjgsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODIyLjc0ODEwNCwgMC4wMDAwMDApIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS40NjQwNTAsIDAuMzc4OTE0KSI+CiAgICAgICAgPHBhdGggZD0iTS00MTMuNywwdjU4LjNoNTJ2MjguMmgtNTJWMTk2YzAsMjUsNywzOS41LDI3LjMsMzkuNWM3LjEsMC4xLDE0LjItMC43LDIxLjEtMi41IGwxLjcsMjcuN2MtMTAuMywzLjctMjEuMyw1LjQtMzIuMiw1Yy03LjMsMC40LTE0LjYtMC43LTIxLjMtMy40Yy02LjgtMi43LTEyLjktNi44LTE3LjktMTIuMWMtMTAuMy0xMC45LTE0LjEtMjktMTQuMS01Mi45IFY4Ni41aC0zMVY1OC4zaDMxVjkuNkwtNDEzLjcsMEwtNDEzLjcsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOTc0LjQzMzI4NiwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuOTkwMDM0LCAwLjYxMDMzOSkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDQ1LjgsMTEzYzAuOCw1MCwzMi4yLDcwLjYsNjguNiw3MC42YzE5LDAuNiwzNy45LTMsNTUuMy0xMC41bDYuMiwyNi40IGMtMjAuOSw4LjktNDMuNSwxMy4xLTY2LjIsMTIuNmMtNjEuNSwwLTk4LjMtNDEuMi05OC4zLTEwMi41Qy00ODAuMiw0OC4yLTQ0NC43LDAtMzg2LjUsMGM2NS4yLDAsODIuNyw1OC4zLDgyLjcsOTUuNyBjLTAuMSw1LjgtMC41LDExLjUtMS4yLDE3LjJoLTE0MC42SC00NDUuOEwtNDQ1LjgsMTEzeiBNLTMzOS4yLDg2LjZjMC40LTIzLjUtOS41LTYwLjEtNTAuNC02MC4xIGMtMzYuOCwwLTUyLjgsMzQuNC01NS43LDYwLjFILTMzOS4yTC0zMzkuMiw4Ni42TC0zMzkuMiw4Ni42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjAxLjk2MTA1OCwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuMTc5NjQwLCAwLjcwNTA2OCkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDc4LjYsNjhjMC0yMy45LTAuNC00NC41LTEuNy02My40aDMxLjhsMS4yLDM5LjloMS43YzkuMS0yNy4zLDMxLTQ0LjUsNTUuMy00NC41IGMzLjUtMC4xLDcsMC40LDEwLjMsMS4ydjM0LjhjLTQuMS0wLjktOC4yLTEuMy0xMi40LTEuMmMtMjUuNiwwLTQzLjcsMTkuNy00OC43LDQ3LjRjLTEsNS43LTEuNiwxMS41LTEuNywxNy4ydjEwOC4zaC0zNlY2OCBMLTQ3OC42LDY4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCBkPSJNMTM1Mi4zLDMyNi4yaDM3VjI4aC0zN1YzMjYuMnogTTE2MDQuOCwzMjYuMmMtMi41LTEzLjktMy40LTMxLjEtMy40LTQ4Ljd2LTc2IGMwLTQwLjctMTUuMS04My4xLTc3LjMtODMuMWMtMjUuNiwwLTUwLDcuMS02Ni44LDE4LjFsOC40LDI0LjRjMTQuMy05LjIsMzQtMTUuMSw1My0xNS4xYzQxLjYsMCw0Ni4yLDMwLjIsNDYuMiw0N3Y0LjIgYy03OC42LTAuNC0xMjIuMywyNi41LTEyMi4zLDc1LjZjMCwyOS40LDIxLDU4LjQsNjIuMiw1OC40YzI5LDAsNTAuOS0xNC4zLDYyLjItMzAuMmgxLjNsMi45LDI1LjZIMTYwNC44eiBNMTU2NS43LDI1Ny43IGMwLDMuOC0wLjgsOC0yLjEsMTEuOGMtNS45LDE3LjItMjIuNywzNC00OS4yLDM0Yy0xOC45LDAtMzQuOS0xMS4zLTM0LjktMzUuM2MwLTM5LjUsNDUuOC00Ni42LDg2LjItNDUuOFYyNTcuN3ogTTE2OTguNSwzMjYuMiBsMS43LTMzLjZoMS4zYzE1LjEsMjYuOSwzOC43LDM4LjIsNjguMSwzOC4yYzQ1LjQsMCw5MS4yLTM2LjEsOTEuMi0xMDguOGMwLjQtNjEuNy0zNS4zLTEwMy43LTg1LjctMTAzLjcgYy0zMi44LDAtNTYuMywxNC43LTY5LjMsMzcuNGgtMC44VjI4aC0zNi42djI0NS43YzAsMTguMS0wLjgsMzguNi0xLjcsNTIuNUgxNjk4LjV6IE0xNzA0LjgsMjA4LjJjMC01LjksMS4zLTEwLjksMi4xLTE1LjEgYzcuNi0yOC4xLDMxLjEtNDUuNCw1Ni4zLTQ1LjRjMzkuNSwwLDYwLjUsMzQuOSw2MC41LDc1LjZjMCw0Ni42LTIzLjEsNzguMS02MS44LDc4LjFjLTI2LjksMC00OC4zLTE3LjYtNTUuNS00My4zIGMtMC44LTQuMi0xLjctOC44LTEuNy0xMy40VjIwOC4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgZmlsbD0iIzYxNjE2MSIgZD0iTTE1IDlIOXY2aDZWOXptLTIgNGgtMnYtMmgydjJ6bTgtMlY5aC0yVjdjMC0xLjEtLjktMi0yLTJoLTJWM2gtMnYyaC0yVjNIOXYySDdjLTEuMSAwLTIgLjktMiAydjJIM3YyaDJ2MkgzdjJoMnYyYzAgMS4xLjkgMiAyIDJoMnYyaDJ2LTJoMnYyaDJ2LTJoMmMxLjEgMCAyLS45IDItMnYtMmgydi0yaC0ydi0yaDJ6bS00IDZIN1Y3aDEwdjEweiIvPgo8L3N2Zz4K);\n  --jp-icon-keyboard: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMTdjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY3YzAtMS4xLS45LTItMi0yem0tOSAzaDJ2MmgtMlY4em0wIDNoMnYyaC0ydi0yek04IDhoMnYySDhWOHptMCAzaDJ2Mkg4di0yem0tMSAySDV2LTJoMnYyem0wLTNINVY4aDJ2MnptOSA3SDh2LTJoOHYyem0wLTRoLTJ2LTJoMnYyem0wLTNoLTJWOGgydjJ6bTMgM2gtMnYtMmgydjJ6bTAtM2gtMlY4aDJ2MnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-launcher: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkgMTlINVY1aDdWM0g1YTIgMiAwIDAwLTIgMnYxNGEyIDIgMCAwMDIgMmgxNGMxLjEgMCAyLS45IDItMnYtN2gtMnY3ek0xNCAzdjJoMy41OWwtOS44MyA5LjgzIDEuNDEgMS40MUwxOSA2LjQxVjEwaDJWM2gtN3oiLz4KPC9zdmc+Cg==);\n  --jp-icon-line-form: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGZpbGw9IndoaXRlIiBkPSJNNS44OCA0LjEyTDEzLjc2IDEybC03Ljg4IDcuODhMOCAyMmwxMC0xMEw4IDJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-link: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMuOSAxMmMwLTEuNzEgMS4zOS0zLjEgMy4xLTMuMWg0VjdIN2MtMi43NiAwLTUgMi4yNC01IDVzMi4yNCA1IDUgNWg0di0xLjlIN2MtMS43MSAwLTMuMS0xLjM5LTMuMS0zLjF6TTggMTNoOHYtMkg4djJ6bTktNmgtNHYxLjloNGMxLjcxIDAgMy4xIDEuMzkgMy4xIDMuMXMtMS4zOSAzLjEtMy4xIDMuMWgtNFYxN2g0YzIuNzYgMCA1LTIuMjQgNS01cy0yLjI0LTUtNS01eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiM2MTYxNjEiIGQ9Ik0xOSA1djE0SDVWNWgxNG0xLjEtMkgzLjljLS41IDAtLjkuNC0uOS45djE2LjJjMCAuNC40LjkuOS45aDE2LjJjLjQgMCAuOS0uNS45LS45VjMuOWMwLS41LS41LS45LS45LS45ek0xMSA3aDZ2MmgtNlY3em0wIDRoNnYyaC02di0yem0wIDRoNnYyaC02ek03IDdoMnYySDd6bTAgNGgydjJIN3ptMCA0aDJ2Mkg3eiIvPgo8L3N2Zz4=);\n  --jp-icon-listings-info: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MC45NzggNTAuOTc4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MC45NzggNTAuOTc4OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+Cgk8Zz4KCQk8cGF0aCBzdHlsZT0iZmlsbDojMDEwMDAyOyIgZD0iTTQzLjUyLDcuNDU4QzM4LjcxMSwyLjY0OCwzMi4zMDcsMCwyNS40ODksMEMxOC42NywwLDEyLjI2NiwyLjY0OCw3LjQ1OCw3LjQ1OAoJCQljLTkuOTQzLDkuOTQxLTkuOTQzLDI2LjExOSwwLDM2LjA2MmM0LjgwOSw0LjgwOSwxMS4yMTIsNy40NTYsMTguMDMxLDcuNDU4YzAsMCwwLjAwMSwwLDAuMDAyLDAKCQkJYzYuODE2LDAsMTMuMjIxLTIuNjQ4LDE4LjAyOS03LjQ1OGM0LjgwOS00LjgwOSw3LjQ1Ny0xMS4yMTIsNy40NTctMTguMDNDNTAuOTc3LDE4LjY3LDQ4LjMyOCwxMi4yNjYsNDMuNTIsNy40NTh6CgkJCSBNNDIuMTA2LDQyLjEwNWMtNC40MzIsNC40MzEtMTAuMzMyLDYuODcyLTE2LjYxNSw2Ljg3MmgtMC4wMDJjLTYuMjg1LTAuMDAxLTEyLjE4Ny0yLjQ0MS0xNi42MTctNi44NzIKCQkJYy05LjE2Mi05LjE2My05LjE2Mi0yNC4wNzEsMC0zMy4yMzNDMTMuMzAzLDQuNDQsMTkuMjA0LDIsMjUuNDg5LDJjNi4yODQsMCwxMi4xODYsMi40NCwxNi42MTcsNi44NzIKCQkJYzQuNDMxLDQuNDMxLDYuODcxLDEwLjMzMiw2Ljg3MSwxNi42MTdDNDguOTc3LDMxLjc3Miw0Ni41MzYsMzcuNjc1LDQyLjEwNiw0Mi4xMDV6Ii8+CgkJPHBhdGggc3R5bGU9ImZpbGw6IzAxMDAwMjsiIGQ9Ik0yMy41NzgsMzIuMjE4Yy0wLjAyMy0xLjczNCwwLjE0My0zLjA1OSwwLjQ5Ni0zLjk3MmMwLjM1My0wLjkxMywxLjExLTEuOTk3LDIuMjcyLTMuMjUzCgkJCWMwLjQ2OC0wLjUzNiwwLjkyMy0xLjA2MiwxLjM2Ny0xLjU3NWMwLjYyNi0wLjc1MywxLjEwNC0xLjQ3OCwxLjQzNi0yLjE3NWMwLjMzMS0wLjcwNywwLjQ5NS0xLjU0MSwwLjQ5NS0yLjUKCQkJYzAtMS4wOTYtMC4yNi0yLjA4OC0wLjc3OS0yLjk3OWMtMC41NjUtMC44NzktMS41MDEtMS4zMzYtMi44MDYtMS4zNjljLTEuODAyLDAuMDU3LTIuOTg1LDAuNjY3LTMuNTUsMS44MzIKCQkJYy0wLjMwMSwwLjUzNS0wLjUwMywxLjE0MS0wLjYwNywxLjgxNGMtMC4xMzksMC43MDctMC4yMDcsMS40MzItMC4yMDcsMi4xNzRoLTIuOTM3Yy0wLjA5MS0yLjIwOCwwLjQwNy00LjExNCwxLjQ5My01LjcxOQoJCQljMS4wNjItMS42NCwyLjg1NS0yLjQ4MSw1LjM3OC0yLjUyN2MyLjE2LDAuMDIzLDMuODc0LDAuNjA4LDUuMTQxLDEuNzU4YzEuMjc4LDEuMTYsMS45MjksMi43NjQsMS45NSw0LjgxMQoJCQljMCwxLjE0Mi0wLjEzNywyLjExMS0wLjQxLDIuOTExYy0wLjMwOSwwLjg0NS0wLjczMSwxLjU5My0xLjI2OCwyLjI0M2MtMC40OTIsMC42NS0xLjA2OCwxLjMxOC0xLjczLDIuMDAyCgkJCWMtMC42NSwwLjY5Ny0xLjMxMywxLjQ3OS0xLjk4NywyLjM0NmMtMC4yMzksMC4zNzctMC40MjksMC43NzctMC41NjUsMS4xOTljLTAuMTYsMC45NTktMC4yMTcsMS45NTEtMC4xNzEsMi45NzkKCQkJQzI2LjU4OSwzMi4yMTgsMjMuNTc4LDMyLjIxOCwyMy41NzgsMzIuMjE4eiBNMjMuNTc4LDM4LjIydi0zLjQ4NGgzLjA3NnYzLjQ4NEgyMy41Nzh6Ii8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-markdown: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjN0IxRkEyIiBkPSJNNSAxNC45aDEybC02LjEgNnptOS40LTYuOGMwLTEuMy0uMS0yLjktLjEtNC41LS40IDEuNC0uOSAyLjktMS4zIDQuM2wtMS4zIDQuM2gtMkw4LjUgNy45Yy0uNC0xLjMtLjctMi45LTEtNC4zLS4xIDEuNi0uMSAzLjItLjIgNC42TDcgMTIuNEg0LjhsLjctMTFoMy4zTDEwIDVjLjQgMS4yLjcgMi43IDEgMy45LjMtMS4yLjctMi42IDEtMy45bDEuMi0zLjdoMy4zbC42IDExaC0yLjRsLS4zLTQuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-new-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwIDZoLThsLTItMkg0Yy0xLjExIDAtMS45OS44OS0xLjk5IDJMMiAxOGMwIDEuMTEuODkgMiAyIDJoMTZjMS4xMSAwIDItLjg5IDItMlY4YzAtMS4xMS0uODktMi0yLTJ6bS0xIDhoLTN2M2gtMnYtM2gtM3YtMmgzVjloMnYzaDN2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-not-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI1IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMTkgMTcuMTg0NCAyLjk2OTY4IDE0LjMwMzIgMS44NjA5NCAxMS40NDA5WiIvPgogICAgPHBhdGggY2xhc3M9ImpwLWljb24yIiBzdHJva2U9IiMzMzMzMzMiIHN0cm9rZS13aWR0aD0iMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOS4zMTU5MiA5LjMyMDMxKSIgZD0iTTcuMzY4NDIgMEwwIDcuMzY0NzkiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDkuMzE1OTIgMTYuNjgzNikgc2NhbGUoMSAtMSkiIGQ9Ik03LjM2ODQyIDBMMCA3LjM2NDc5Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-notebook: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNFRjZDMDAiPgogICAgPHBhdGggZD0iTTE4LjcgMy4zdjE1LjRIMy4zVjMuM2gxNS40bTEuNS0xLjVIMS44djE4LjNoMTguM2wuMS0xOC4zeiIvPgogICAgPHBhdGggZD0iTTE2LjUgMTYuNWwtNS40LTQuMy01LjYgNC4zdi0xMWgxMXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-numbering: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTQgMTlINlYxOS41SDVWMjAuNUg2VjIxSDRWMjJIN1YxOEg0VjE5Wk01IDEwSDZWNkg0VjdINVYxMFpNNCAxM0g1LjhMNCAxNS4xVjE2SDdWMTVINS4yTDcgMTIuOVYxMkg0VjEzWk05IDdWOUgyM1Y3SDlaTTkgMjFIMjNWMTlIOVYyMVpNOSAxNUgyM1YxM0g5VjE1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-offline-bolt: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDIuMDJjLTUuNTEgMC05Ljk4IDQuNDctOS45OCA5Ljk4czQuNDcgOS45OCA5Ljk4IDkuOTggOS45OC00LjQ3IDkuOTgtOS45OFMxNy41MSAyLjAyIDEyIDIuMDJ6TTExLjQ4IDIwdi02LjI2SDhMMTMgNHY2LjI2aDMuMzVMMTEuNDggMjB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-palette: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE4IDEzVjIwSDRWNkg5LjAyQzkuMDcgNS4yOSA5LjI0IDQuNjIgOS41IDRINEMyLjkgNCAyIDQuOSAyIDZWMjBDMiAyMS4xIDIuOSAyMiA0IDIySDE4QzE5LjEgMjIgMjAgMjEuMSAyMCAyMFYxNUwxOCAxM1pNMTkuMyA4Ljg5QzE5Ljc0IDguMTkgMjAgNy4zOCAyMCA2LjVDMjAgNC4wMSAxNy45OSAyIDE1LjUgMkMxMy4wMSAyIDExIDQuMDEgMTEgNi41QzExIDguOTkgMTMuMDEgMTEgMTUuNDkgMTFDMTYuMzcgMTEgMTcuMTkgMTAuNzQgMTcuODggMTAuM0wyMSAxMy40MkwyMi40MiAxMkwxOS4zIDguODlaTTE1LjUgOUMxNC4xMiA5IDEzIDcuODggMTMgNi41QzEzIDUuMTIgMTQuMTIgNCAxNS41IDRDMTYuODggNCAxOCA1LjEyIDE4IDYuNUMxOCA3Ljg4IDE2Ljg4IDkgMTUuNSA5WiIvPgogICAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDZIOS4wMTg5NEM5LjAwNjM5IDYuMTY1MDIgOSA2LjMzMTc2IDkgNi41QzkgOC44MTU3NyAxMC4yMTEgMTAuODQ4NyAxMi4wMzQzIDEySDlWMTRIMTZWMTIuOTgxMUMxNi41NzAzIDEyLjkzNzcgMTcuMTIgMTIuODIwNyAxNy42Mzk2IDEyLjYzOTZMMTggMTNWMjBINFY2Wk04IDhINlYxMEg4VjhaTTYgMTJIOFYxNEg2VjEyWk04IDE2SDZWMThIOFYxNlpNOSAxNkgxNlYxOEg5VjE2WiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-paste: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE5IDJoLTQuMThDMTQuNC44NCAxMy4zIDAgMTIgMGMtMS4zIDAtMi40Ljg0LTIuODIgMkg1Yy0xLjEgMC0yIC45LTIgMnYxNmMwIDEuMS45IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjRjMC0xLjEtLjktMi0yLTJ6bS03IDBjLjU1IDAgMSAuNDUgMSAxcy0uNDUgMS0xIDEtMS0uNDUtMS0xIC40NS0xIDEtMXptNyAxOEg1VjRoMnYzaDEwVjRoMnYxNnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-pdf: url(data:image/svg+xml;base64,PHN2ZwogICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMiAyMiIgd2lkdGg9IjE2Ij4KICAgIDxwYXRoIHRyYW5zZm9ybT0icm90YXRlKDQ1KSIgY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI0ZGMkEyQSIKICAgICAgIGQ9Im0gMjIuMzQ0MzY5LC0zLjAxNjM2NDIgaCA1LjYzODYwNCB2IDEuNTc5MjQzMyBoIC0zLjU0OTIyNyB2IDEuNTA4NjkyOTkgaCAzLjMzNzU3NiBWIDEuNjUwODE1NCBoIC0zLjMzNzU3NiB2IDMuNDM1MjYxMyBoIC0yLjA4OTM3NyB6IG0gLTcuMTM2NDQ0LDEuNTc5MjQzMyB2IDQuOTQzOTU0MyBoIDAuNzQ4OTIgcSAxLjI4MDc2MSwwIDEuOTUzNzAzLC0wLjYzNDk1MzUgMC42NzgzNjksLTAuNjM0OTUzNSAwLjY3ODM2OSwtMS44NDUxNjQxIDAsLTEuMjA0NzgzNTUgLTAuNjcyOTQyLC0xLjgzNDMxMDExIC0wLjY3Mjk0MiwtMC42Mjk1MjY1OSAtMS45NTkxMywtMC42Mjk1MjY1OSB6IG0gLTIuMDg5Mzc3LC0xLjU3OTI0MzMgaCAyLjIwMzM0MyBxIDEuODQ1MTY0LDAgMi43NDYwMzksMC4yNjU5MjA3IDAuOTA2MzAxLDAuMjYwNDkzNyAxLjU1MjEwOCwwLjg5MDAyMDMgMC41Njk4MywwLjU0ODEyMjMgMC44NDY2MDUsMS4yNjQ0ODAwNiAwLjI3Njc3NCwwLjcxNjM1NzgxIDAuMjc2Nzc0LDEuNjIyNjU4OTQgMCwwLjkxNzE1NTEgLTAuMjc2Nzc0LDEuNjM4OTM5OSAtMC4yNzY3NzUsMC43MTYzNTc4IC0wLjg0NjYwNSwxLjI2NDQ4IC0wLjY1MTIzNCwwLjYyOTUyNjYgLTEuNTYyOTYyLDAuODk1NDQ3MyAtMC45MTE3MjgsMC4yNjA0OTM3IC0yLjczNTE4NSwwLjI2MDQ5MzcgaCAtMi4yMDMzNDMgeiBtIC04LjE0NTg1NjUsMCBoIDMuNDY3ODIzIHEgMS41NDY2ODE2LDAgMi4zNzE1Nzg1LDAuNjg5MjIzIDAuODMwMzI0LDAuNjgzNzk2MSAwLjgzMDMyNCwxLjk1MzcwMzE0IDAsMS4yNzUzMzM5NyAtMC44MzAzMjQsMS45NjQ1NTcwNiBRIDkuOTg3MTk2MSwyLjI3NDkxNSA4LjQ0MDUxNDUsMi4yNzQ5MTUgSCA3LjA2MjA2ODQgViA1LjA4NjA3NjcgSCA0Ljk3MjY5MTUgWiBtIDIuMDg5Mzc2OSwxLjUxNDExOTkgdiAyLjI2MzAzOTQzIGggMS4xNTU5NDEgcSAwLjYwNzgxODgsMCAwLjkzODg2MjksLTAuMjkzMDU1NDcgMC4zMzEwNDQxLC0wLjI5ODQ4MjQxIDAuMzMxMDQ0MSwtMC44NDExNzc3MiAwLC0wLjU0MjY5NTMxIC0wLjMzMTA0NDEsLTAuODM1NzUwNzQgLTAuMzMxMDQ0MSwtMC4yOTMwNTU1IC0wLjkzODg2MjksLTAuMjkzMDU1NSB6IgovPgo8L3N2Zz4K);\n  --jp-icon-python: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMEQ0N0ExIj4KICAgIDxwYXRoIGQ9Ik0xMS4xIDYuOVY1LjhINi45YzAtLjUgMC0xLjMuMi0xLjYuNC0uNy44LTEuMSAxLjctMS40IDEuNy0uMyAyLjUtLjMgMy45LS4xIDEgLjEgMS45LjkgMS45IDEuOXY0LjJjMCAuNS0uOSAxLjYtMiAxLjZIOC44Yy0xLjUgMC0yLjQgMS40LTIuNCAyLjh2Mi4ySDQuN0MzLjUgMTUuMSAzIDE0IDMgMTMuMVY5Yy0uMS0xIC42LTIgMS44LTIgMS41LS4xIDYuMy0uMSA2LjMtLjF6Ii8+CiAgICA8cGF0aCBkPSJNMTAuOSAxNS4xdjEuMWg0LjJjMCAuNSAwIDEuMy0uMiAxLjYtLjQuNy0uOCAxLjEtMS43IDEuNC0xLjcuMy0yLjUuMy0zLjkuMS0xLS4xLTEuOS0uOS0xLjktMS45di00LjJjMC0uNS45LTEuNiAyLTEuNmgzLjhjMS41IDAgMi40LTEuNCAyLjQtMi44VjYuNmgxLjdDMTguNSA2LjkgMTkgOCAxOSA4LjlWMTNjMCAxLS43IDIuMS0xLjkgMi4xaC02LjJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-r-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjE5NkYzIiBkPSJNNC40IDIuNWMxLjItLjEgMi45LS4zIDQuOS0uMyAyLjUgMCA0LjEuNCA1LjIgMS4zIDEgLjcgMS41IDEuOSAxLjUgMy41IDAgMi0xLjQgMy41LTIuOSA0LjEgMS4yLjQgMS43IDEuNiAyLjIgMyAuNiAxLjkgMSAzLjkgMS4zIDQuNmgtMy44Yy0uMy0uNC0uOC0xLjctMS4yLTMuN3MtMS4yLTIuNi0yLjYtMi42aC0uOXY2LjRINC40VjIuNXptMy43IDYuOWgxLjRjMS45IDAgMi45LS45IDIuOS0yLjNzLTEtMi4zLTIuOC0yLjNjLS43IDAtMS4zIDAtMS42LjJ2NC41aC4xdi0uMXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-react: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMTUwIDE1MCA1NDEuOSAyOTUuMyI+CiAgPGcgY2xhc3M9ImpwLWljb24tYnJhbmQyIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzYxREFGQiI+CiAgICA8cGF0aCBkPSJNNjY2LjMgMjk2LjVjMC0zMi41LTQwLjctNjMuMy0xMDMuMS04Mi40IDE0LjQtNjMuNiA4LTExNC4yLTIwLjItMTMwLjQtNi41LTMuOC0xNC4xLTUuNi0yMi40LTUuNnYyMi4zYzQuNiAwIDguMy45IDExLjQgMi42IDEzLjYgNy44IDE5LjUgMzcuNSAxNC45IDc1LjctMS4xIDkuNC0yLjkgMTkuMy01LjEgMjkuNC0xOS42LTQuOC00MS04LjUtNjMuNS0xMC45LTEzLjUtMTguNS0yNy41LTM1LjMtNDEuNi01MCAzMi42LTMwLjMgNjMuMi00Ni45IDg0LTQ2LjlWNzhjLTI3LjUgMC02My41IDE5LjYtOTkuOSA1My42LTM2LjQtMzMuOC03Mi40LTUzLjItOTkuOS01My4ydjIyLjNjMjAuNyAwIDUxLjQgMTYuNSA4NCA0Ni42LTE0IDE0LjctMjggMzEuNC00MS4zIDQ5LjktMjIuNiAyLjQtNDQgNi4xLTYzLjYgMTEtMi4zLTEwLTQtMTkuNy01LjItMjktNC43LTM4LjIgMS4xLTY3LjkgMTQuNi03NS44IDMtMS44IDYuOS0yLjYgMTEuNS0yLjZWNzguNWMtOC40IDAtMTYgMS44LTIyLjYgNS42LTI4LjEgMTYuMi0zNC40IDY2LjctMTkuOSAxMzAuMS02Mi4yIDE5LjItMTAyLjcgNDkuOS0xMDIuNyA4Mi4zIDAgMzIuNSA0MC43IDYzLjMgMTAzLjEgODIuNC0xNC40IDYzLjYtOCAxMTQuMiAyMC4yIDEzMC40IDYuNSAzLjggMTQuMSA1LjYgMjIuNSA1LjYgMjcuNSAwIDYzLjUtMTkuNiA5OS45LTUzLjYgMzYuNCAzMy44IDcyLjQgNTMuMiA5OS45IDUzLjIgOC40IDAgMTYtMS44IDIyLjYtNS42IDI4LjEtMTYuMiAzNC40LTY2LjcgMTkuOS0xMzAuMSA2Mi0xOS4xIDEwMi41LTQ5LjkgMTAyLjUtODIuM3ptLTEzMC4yLTY2LjdjLTMuNyAxMi45LTguMyAyNi4yLTEzLjUgMzkuNS00LjEtOC04LjQtMTYtMTMuMS0yNC00LjYtOC05LjUtMTUuOC0xNC40LTIzLjQgMTQuMiAyLjEgMjcuOSA0LjcgNDEgNy45em0tNDUuOCAxMDYuNWMtNy44IDEzLjUtMTUuOCAyNi4zLTI0LjEgMzguMi0xNC45IDEuMy0zMCAyLTQ1LjIgMi0xNS4xIDAtMzAuMi0uNy00NS0xLjktOC4zLTExLjktMTYuNC0yNC42LTI0LjItMzgtNy42LTEzLjEtMTQuNS0yNi40LTIwLjgtMzkuOCA2LjItMTMuNCAxMy4yLTI2LjggMjAuNy0zOS45IDcuOC0xMy41IDE1LjgtMjYuMyAyNC4xLTM4LjIgMTQuOS0xLjMgMzAtMiA0NS4yLTIgMTUuMSAwIDMwLjIuNyA0NSAxLjkgOC4zIDExLjkgMTYuNCAyNC42IDI0LjIgMzggNy42IDEzLjEgMTQuNSAyNi40IDIwLjggMzkuOC02LjMgMTMuNC0xMy4yIDI2LjgtMjAuNyAzOS45em0zMi4zLTEzYzUuNCAxMy40IDEwIDI2LjggMTMuOCAzOS44LTEzLjEgMy4yLTI2LjkgNS45LTQxLjIgOCA0LjktNy43IDkuOC0xNS42IDE0LjQtMjMuNyA0LjYtOCA4LjktMTYuMSAxMy0yNC4xek00MjEuMiA0MzBjLTkuMy05LjYtMTguNi0yMC4zLTI3LjgtMzIgOSAuNCAxOC4yLjcgMjcuNS43IDkuNCAwIDE4LjctLjIgMjcuOC0uNy05IDExLjctMTguMyAyMi40LTI3LjUgMzJ6bS03NC40LTU4LjljLTE0LjItMi4xLTI3LjktNC43LTQxLTcuOSAzLjctMTIuOSA4LjMtMjYuMiAxMy41LTM5LjUgNC4xIDggOC40IDE2IDEzLjEgMjQgNC43IDggOS41IDE1LjggMTQuNCAyMy40ek00MjAuNyAxNjNjOS4zIDkuNiAxOC42IDIwLjMgMjcuOCAzMi05LS40LTE4LjItLjctMjcuNS0uNy05LjQgMC0xOC43LjItMjcuOC43IDktMTEuNyAxOC4zLTIyLjQgMjcuNS0zMnptLTc0IDU4LjljLTQuOSA3LjctOS44IDE1LjYtMTQuNCAyMy43LTQuNiA4LTguOSAxNi0xMyAyNC01LjQtMTMuNC0xMC0yNi44LTEzLjgtMzkuOCAxMy4xLTMuMSAyNi45LTUuOCA0MS4yLTcuOXptLTkwLjUgMTI1LjJjLTM1LjQtMTUuMS01OC4zLTM0LjktNTguMy01MC42IDAtMTUuNyAyMi45LTM1LjYgNTguMy01MC42IDguNi0zLjcgMTgtNyAyNy43LTEwLjEgNS43IDE5LjYgMTMuMiA0MCAyMi41IDYwLjktOS4yIDIwLjgtMTYuNiA0MS4xLTIyLjIgNjAuNi05LjktMy4xLTE5LjMtNi41LTI4LTEwLjJ6TTMxMCA0OTBjLTEzLjYtNy44LTE5LjUtMzcuNS0xNC45LTc1LjcgMS4xLTkuNCAyLjktMTkuMyA1LjEtMjkuNCAxOS42IDQuOCA0MSA4LjUgNjMuNSAxMC45IDEzLjUgMTguNSAyNy41IDM1LjMgNDEuNiA1MC0zMi42IDMwLjMtNjMuMiA0Ni45LTg0IDQ2LjktNC41LS4xLTguMy0xLTExLjMtMi43em0yMzcuMi03Ni4yYzQuNyAzOC4yLTEuMSA2Ny45LTE0LjYgNzUuOC0zIDEuOC02LjkgMi42LTExLjUgMi42LTIwLjcgMC01MS40LTE2LjUtODQtNDYuNiAxNC0xNC43IDI4LTMxLjQgNDEuMy00OS45IDIyLjYtMi40IDQ0LTYuMSA2My42LTExIDIuMyAxMC4xIDQuMSAxOS44IDUuMiAyOS4xem0zOC41LTY2LjdjLTguNiAzLjctMTggNy0yNy43IDEwLjEtNS43LTE5LjYtMTMuMi00MC0yMi41LTYwLjkgOS4yLTIwLjggMTYuNi00MS4xIDIyLjItNjAuNiA5LjkgMy4xIDE5LjMgNi41IDI4LjEgMTAuMiAzNS40IDE1LjEgNTguMyAzNC45IDU4LjMgNTAuNi0uMSAxNS43LTIzIDM1LjYtNTguNCA1MC42ek0zMjAuOCA3OC40eiIvPgogICAgPGNpcmNsZSBjeD0iNDIwLjkiIGN5PSIyOTYuNSIgcj0iNDUuNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-redo: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTE4LjQgMTAuNkMxNi41NSA4Ljk5IDE0LjE1IDggMTEuNSA4Yy00LjY1IDAtOC41OCAzLjAzLTkuOTYgNy4yMkwzLjkgMTZjMS4wNS0zLjE5IDQuMDUtNS41IDcuNi01LjUgMS45NSAwIDMuNzMuNzIgNS4xMiAxLjg4TDEzIDE2aDlWN2wtMy42IDMuNnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-refresh: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTkgMTMuNWMtMi40OSAwLTQuNS0yLjAxLTQuNS00LjVTNi41MSA0LjUgOSA0LjVjMS4yNCAwIDIuMzYuNTIgMy4xNyAxLjMzTDEwIDhoNVYzbC0xLjc2IDEuNzZDMTIuMTUgMy42OCAxMC42NiAzIDkgMyA1LjY5IDMgMy4wMSA1LjY5IDMuMDEgOVM1LjY5IDE1IDkgMTVjMi45NyAwIDUuNDMtMi4xNiA1LjktNWgtMS41MmMtLjQ2IDItMi4yNCAzLjUtNC4zOCAzLjV6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-regex: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi1hY2NlbnQyIiBmaWxsPSIjRkZGIj4KICAgIDxjaXJjbGUgY2xhc3M9InN0MiIgY3g9IjUuNSIgY3k9IjE0LjUiIHI9IjEuNSIvPgogICAgPHJlY3QgeD0iMTIiIHk9IjQiIGNsYXNzPSJzdDIiIHdpZHRoPSIxIiBoZWlnaHQ9IjgiLz4KICAgIDxyZWN0IHg9IjguNSIgeT0iNy41IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjg2NiAtMC41IDAuNSAwLjg2NiAtMi4zMjU1IDcuMzIxOSkiIGNsYXNzPSJzdDIiIHdpZHRoPSI4IiBoZWlnaHQ9IjEiLz4KICAgIDxyZWN0IHg9IjEyIiB5PSI0IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjUgLTAuODY2IDAuODY2IDAuNSAtMC42Nzc5IDE0LjgyNTIpIiBjbGFzcz0ic3QyIiB3aWR0aD0iMSIgaGVpZ2h0PSI4Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-run: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTggNXYxNGwxMS03eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-running: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptOTYgMzI4YzAgOC44LTcuMiAxNi0xNiAxNkgxNzZjLTguOCAwLTE2LTcuMi0xNi0xNlYxNzZjMC04LjggNy4yLTE2IDE2LTE2aDE2MGM4LjggMCAxNiA3LjIgMTYgMTZ2MTYweiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-save: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE3IDNINWMtMS4xMSAwLTIgLjktMiAydjE0YzAgMS4xLjg5IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjdsLTQtNHptLTUgMTZjLTEuNjYgMC0zLTEuMzQtMy0zczEuMzQtMyAzLTMgMyAxLjM0IDMgMy0xLjM0IDMtMyAzem0zLTEwSDVWNWgxMHY0eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-search: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjEsMTAuOWgtMC43bC0wLjItMC4yYzAuOC0wLjksMS4zLTIuMiwxLjMtMy41YzAtMy0yLjQtNS40LTUuNC01LjRTMS44LDQuMiwxLjgsNy4xczIuNCw1LjQsNS40LDUuNCBjMS4zLDAsMi41LTAuNSwzLjUtMS4zbDAuMiwwLjJ2MC43bDQuMSw0LjFsMS4yLTEuMkwxMi4xLDEwLjl6IE03LjEsMTAuOWMtMi4xLDAtMy43LTEuNy0zLjctMy43czEuNy0zLjcsMy43LTMuN3MzLjcsMS43LDMuNywzLjcgUzkuMiwxMC45LDcuMSwxMC45eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-settings: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuNDMgMTIuOThjLjA0LS4zMi4wNy0uNjQuMDctLjk4cy0uMDMtLjY2LS4wNy0uOThsMi4xMS0xLjY1Yy4xOS0uMTUuMjQtLjQyLjEyLS42NGwtMi0zLjQ2Yy0uMTItLjIyLS4zOS0uMy0uNjEtLjIybC0yLjQ5IDFjLS41Mi0uNC0xLjA4LS43My0xLjY5LS45OGwtLjM4LTIuNjVBLjQ4OC40ODggMCAwMDE0IDJoLTRjLS4yNSAwLS40Ni4xOC0uNDkuNDJsLS4zOCAyLjY1Yy0uNjEuMjUtMS4xNy41OS0xLjY5Ljk4bC0yLjQ5LTFjLS4yMy0uMDktLjQ5IDAtLjYxLjIybC0yIDMuNDZjLS4xMy4yMi0uMDcuNDkuMTIuNjRsMi4xMSAxLjY1Yy0uMDQuMzItLjA3LjY1LS4wNy45OHMuMDMuNjYuMDcuOThsLTIuMTEgMS42NWMtLjE5LjE1LS4yNC40Mi0uMTIuNjRsMiAzLjQ2Yy4xMi4yMi4zOS4zLjYxLjIybDIuNDktMWMuNTIuNCAxLjA4LjczIDEuNjkuOThsLjM4IDIuNjVjLjAzLjI0LjI0LjQyLjQ5LjQyaDRjLjI1IDAgLjQ2LS4xOC40OS0uNDJsLjM4LTIuNjVjLjYxLS4yNSAxLjE3LS41OSAxLjY5LS45OGwyLjQ5IDFjLjIzLjA5LjQ5IDAgLjYxLS4yMmwyLTMuNDZjLjEyLS4yMi4wNy0uNDktLjEyLS42NGwtMi4xMS0xLjY1ek0xMiAxNS41Yy0xLjkzIDAtMy41LTEuNTctMy41LTMuNXMxLjU3LTMuNSAzLjUtMy41IDMuNSAxLjU3IDMuNSAzLjUtMS41NyAzLjUtMy41IDMuNXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-spreadsheet: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNENBRjUwIiBkPSJNMi4yIDIuMnYxNy42aDE3LjZWMi4ySDIuMnptMTUuNCA3LjdoLTUuNVY0LjRoNS41djUuNXpNOS45IDQuNHY1LjVINC40VjQuNGg1LjV6bS01LjUgNy43aDUuNXY1LjVINC40di01LjV6bTcuNyA1LjV2LTUuNWg1LjV2NS41aC01LjV6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-stop: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik02IDZoMTJ2MTJINnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tab: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIxIDNIM2MtMS4xIDAtMiAuOS0yIDJ2MTRjMCAxLjEuOSAyIDIgMmgxOGMxLjEgMCAyLS45IDItMlY1YzAtMS4xLS45LTItMi0yem0wIDE2SDNWNWgxMHY0aDh2MTB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-table-rows: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMSw4SDNWNGgxOFY4eiBNMjEsMTBIM3Y0aDE4VjEweiBNMjEsMTZIM3Y0aDE4VjE2eiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-tag: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCA0MyAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTI4LjgzMzIgMTIuMzM0TDMyLjk5OTggMTYuNTAwN0wzNy4xNjY1IDEyLjMzNEgyOC44MzMyWiIvPgoJCTxwYXRoIGQ9Ik0xNi4yMDk1IDIxLjYxMDRDMTUuNjg3MyAyMi4xMjk5IDE0Ljg0NDMgMjIuMTI5OSAxNC4zMjQ4IDIxLjYxMDRMNi45ODI5IDE0LjcyNDVDNi41NzI0IDE0LjMzOTQgNi4wODMxMyAxMy42MDk4IDYuMDQ3ODYgMTMuMDQ4MkM1Ljk1MzQ3IDExLjUyODggNi4wMjAwMiA4LjYxOTQ0IDYuMDY2MjEgNy4wNzY5NUM2LjA4MjgxIDYuNTE0NzcgNi41NTU0OCA2LjA0MzQ3IDcuMTE4MDQgNi4wMzA1NUM5LjA4ODYzIDUuOTg0NzMgMTMuMjYzOCA1LjkzNTc5IDEzLjY1MTggNi4zMjQyNUwyMS43MzY5IDEzLjYzOUMyMi4yNTYgMTQuMTU4NSAyMS43ODUxIDE1LjQ3MjQgMjEuMjYyIDE1Ljk5NDZMMTYuMjA5NSAyMS42MTA0Wk05Ljc3NTg1IDguMjY1QzkuMzM1NTEgNy44MjU2NiA4LjYyMzUxIDcuODI1NjYgOC4xODI4IDguMjY1QzcuNzQzNDYgOC43MDU3MSA3Ljc0MzQ2IDkuNDE3MzMgOC4xODI4IDkuODU2NjdDOC42MjM4MiAxMC4yOTY0IDkuMzM1ODIgMTAuMjk2NCA5Ljc3NTg1IDkuODU2NjdDMTAuMjE1NiA5LjQxNzMzIDEwLjIxNTYgOC43MDUzMyA5Ljc3NTg1IDguMjY1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-terminal: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiA+CiAgICA8cmVjdCBjbGFzcz0ianAtaWNvbjIganAtaWNvbi1zZWxlY3RhYmxlIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMikiIGZpbGw9IiMzMzMzMzMiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uLWFjY2VudDIganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGQ9Ik01LjA1NjY0IDguNzYxNzJDNS4wNTY2NCA4LjU5NzY2IDUuMDMxMjUgOC40NTMxMiA0Ljk4MDQ3IDguMzI4MTJDNC45MzM1OSA4LjE5OTIyIDQuODU1NDcgOC4wODIwMyA0Ljc0NjA5IDcuOTc2NTZDNC42NDA2MiA3Ljg3MTA5IDQuNSA3Ljc3NTM5IDQuMzI0MjIgNy42ODk0NUM0LjE1MjM0IDcuNTk5NjEgMy45NDMzNiA3LjUxMTcyIDMuNjk3MjcgNy40MjU3OEMzLjMwMjczIDcuMjg1MTYgMi45NDMzNiA3LjEzNjcyIDIuNjE5MTQgNi45ODA0N0MyLjI5NDkyIDYuODI0MjIgMi4wMTc1OCA2LjY0MjU4IDEuNzg3MTEgNi40MzU1NUMxLjU2MDU1IDYuMjI4NTIgMS4zODQ3NyA1Ljk4ODI4IDEuMjU5NzcgNS43MTQ4NEMxLjEzNDc3IDUuNDM3NSAxLjA3MjI3IDUuMTA5MzggMS4wNzIyNyA0LjczMDQ3QzEuMDcyMjcgNC4zOTg0NCAxLjEyODkxIDQuMDk1NyAxLjI0MjE5IDMuODIyMjdDMS4zNTU0NyAzLjU0NDkyIDEuNTE1NjIgMy4zMDQ2OSAxLjcyMjY2IDMuMTAxNTZDMS45Mjk2OSAyLjg5ODQ0IDIuMTc5NjkgMi43MzQzNyAyLjQ3MjY2IDIuNjA5MzhDMi43NjU2MiAyLjQ4NDM4IDMuMDkxOCAyLjQwNDMgMy40NTExNyAyLjM2OTE0VjEuMTA5MzhINC4zODg2N1YyLjM4MDg2QzQuNzQwMjMgMi40Mjc3MyA1LjA1NjY0IDIuNTIzNDQgNS4zMzc4OSAyLjY2Nzk3QzUuNjE5MTQgMi44MTI1IDUuODU3NDIgMy4wMDE5NSA2LjA1MjczIDMuMjM2MzNDNi4yNTE5NSAzLjQ2NjggNi40MDQzIDMuNzQwMjMgNi41MDk3NyA0LjA1NjY0QzYuNjE5MTQgNC4zNjkxNCA2LjY3MzgzIDQuNzIwNyA2LjY3MzgzIDUuMTExMzNINS4wNDQ5MkM1LjA0NDkyIDQuNjM4NjcgNC45Mzc1IDQuMjgxMjUgNC43MjI2NiA0LjAzOTA2QzQuNTA3ODEgMy43OTI5NyA0LjIxNjggMy42Njk5MiAzLjg0OTYxIDMuNjY5OTJDMy42NTAzOSAzLjY2OTkyIDMuNDc2NTYgMy42OTcyNyAzLjMyODEyIDMuNzUxOTVDMy4xODM1OSAzLjgwMjczIDMuMDY0NDUgMy44NzY5NSAyLjk3MDcgMy45NzQ2MUMyLjg3Njk1IDQuMDY4MzYgMi44MDY2NCA0LjE3OTY5IDIuNzU5NzcgNC4zMDg1OUMyLjcxNjggNC40Mzc1IDIuNjk1MzEgNC41NzgxMiAyLjY5NTMxIDQuNzMwNDdDMi42OTUzMSA0Ljg4MjgxIDIuNzE2OCA1LjAxOTUzIDIuNzU5NzcgNS4xNDA2MkMyLjgwNjY0IDUuMjU3ODEgMi44ODI4MSA1LjM2NzE5IDIuOTg4MjggNS40Njg3NUMzLjA5NzY2IDUuNTcwMzEgMy4yNDAyMyA1LjY2Nzk3IDMuNDE2MDIgNS43NjE3MkMzLjU5MTggNS44NTE1NiAzLjgxMDU1IDUuOTQzMzYgNC4wNzIyNyA2LjAzNzExQzQuNDY2OCA2LjE4NTU1IDQuODI0MjIgNi4zMzk4NCA1LjE0NDUzIDYuNUM1LjQ2NDg0IDYuNjU2MjUgNS43MzgyOCA2LjgzOTg0IDUuOTY0ODQgNy4wNTA3OEM2LjE5NTMxIDcuMjU3ODEgNi4zNzEwOSA3LjUgNi40OTIxOSA3Ljc3NzM0QzYuNjE3MTkgOC4wNTA3OCA2LjY3OTY5IDguMzc1IDYuNjc5NjkgOC43NUM2LjY3OTY5IDkuMDkzNzUgNi42MjMwNSA5LjQwNDMgNi41MDk3NyA5LjY4MTY0QzYuMzk2NDggOS45NTUwOCA2LjIzNDM4IDEwLjE5MTQgNi4wMjM0NCAxMC4zOTA2QzUuODEyNSAxMC41ODk4IDUuNTU4NTkgMTAuNzUgNS4yNjE3MiAxMC44NzExQzQuOTY0ODQgMTAuOTg4MyA0LjYzMjgxIDExLjA2NDUgNC4yNjU2MiAxMS4wOTk2VjEyLjI0OEgzLjMzMzk4VjExLjA5OTZDMy4wMDE5NSAxMS4wNjg0IDIuNjc5NjkgMTAuOTk2MSAyLjM2NzE5IDEwLjg4MjhDMi4wNTQ2OSAxMC43NjU2IDEuNzc3MzQgMTAuNTk3NyAxLjUzNTE2IDEwLjM3ODlDMS4yOTY4OCAxMC4xNjAyIDEuMTA1NDcgOS44ODQ3NyAwLjk2MDkzOCA5LjU1MjczQzAuODE2NDA2IDkuMjE2OCAwLjc0NDE0MSA4LjgxNDQ1IDAuNzQ0MTQxIDguMzQ1N0gyLjM3ODkxQzIuMzc4OTEgOC42MjY5NSAyLjQxOTkyIDguODYzMjggMi41MDE5NSA5LjA1NDY5QzIuNTgzOTggOS4yNDIxOSAyLjY4OTQ1IDkuMzkyNTggMi44MTgzNiA5LjUwNTg2QzIuOTUxMTcgOS42MTUyMyAzLjEwMTU2IDkuNjkzMzYgMy4yNjk1MyA5Ljc0MDIzQzMuNDM3NSA5Ljc4NzExIDMuNjA5MzggOS44MTA1NSAzLjc4NTE2IDkuODEwNTVDNC4yMDMxMiA5LjgxMDU1IDQuNTE5NTMgOS43MTI4OSA0LjczNDM4IDkuNTE3NThDNC45NDkyMiA5LjMyMjI3IDUuMDU2NjQgOS4wNzAzMSA1LjA1NjY0IDguNzYxNzJaTTEzLjQxOCAxMi4yNzE1SDguMDc0MjJWMTFIMTMuNDE4VjEyLjI3MTVaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzLjk1MjY0IDYpIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);\n  --jp-icon-text-editor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTUgMTVIM3YyaDEydi0yem0wLThIM3YyaDEyVjd6TTMgMTNoMTh2LTJIM3Yyem0wIDhoMTh2LTJIM3Yyek0zIDN2MmgxOFYzSDN6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-toc: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik03LDVIMjFWN0g3VjVNNywxM1YxMUgyMVYxM0g3TTQsNC41QTEuNSwxLjUgMCAwLDEgNS41LDZBMS41LDEuNSAwIDAsMSA0LDcuNUExLjUsMS41IDAgMCwxIDIuNSw2QTEuNSwxLjUgMCAwLDEgNCw0LjVNNCwxMC41QTEuNSwxLjUgMCAwLDEgNS41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMy41QTEuNSwxLjUgMCAwLDEgMi41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMC41TTcsMTlWMTdIMjFWMTlIN000LDE2LjVBMS41LDEuNSAwIDAsMSA1LjUsMThBMS41LDEuNSAwIDAsMSA0LDE5LjVBMS41LDEuNSAwIDAsMSAyLjUsMThBMS41LDEuNSAwIDAsMSA0LDE2LjVaIiAvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tree-view: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMiAxMVYzaC03djNIOVYzSDJ2OGg3VjhoMnYxMGg0djNoN3YtOGgtN3YzaC0yVjhoMnYzeiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMiAxNy4xODQ0IDIuOTY5NjggMTQuMzAzMiAxLjg2MDk0IDExLjQ0MDlaIi8+CiAgICA8cGF0aCBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiMzMzMzMzMiIHN0cm9rZT0iIzMzMzMzMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA5Ljg2NzE5KSIgZD0iTTIuODYwMTUgNC44NjUzNUwwLjcyNjU0OSAyLjk5OTU5TDAgMy42MzA0NUwyLjg2MDE1IDYuMTMxNTdMOCAwLjYzMDg3Mkw3LjI3ODU3IDBMMi44NjAxNSA0Ljg2NTM1WiIvPgo8L3N2Zz4K);\n  --jp-icon-undo: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjUgOGMtMi42NSAwLTUuMDUuOTktNi45IDIuNkwyIDd2OWg5bC0zLjYyLTMuNjJjMS4zOS0xLjE2IDMuMTYtMS44OCA1LjEyLTEuODggMy41NCAwIDYuNTUgMi4zMSA3LjYgNS41bDIuMzctLjc4QzIxLjA4IDExLjAzIDE3LjE1IDggMTIuNSA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-vega: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbjEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjEyMTIxIj4KICAgIDxwYXRoIGQ9Ik0xMC42IDUuNGwyLjItMy4ySDIuMnY3LjNsNC02LjZ6Ii8+CiAgICA8cGF0aCBkPSJNMTUuOCAyLjJsLTQuNCA2LjZMNyA2LjNsLTQuOCA4djUuNWgxNy42VjIuMmgtNHptLTcgMTUuNEg1LjV2LTQuNGgzLjN2NC40em00LjQgMEg5LjhWOS44aDMuNHY3Ljh6bTQuNCAwaC0zLjRWNi41aDMuNHYxMS4xeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-yaml: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1jb250cmFzdDIganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjRDgxQjYwIj4KICAgIDxwYXRoIGQ9Ik03LjIgMTguNnYtNS40TDMgNS42aDMuM2wxLjQgMy4xYy4zLjkuNiAxLjYgMSAyLjUuMy0uOC42LTEuNiAxLTIuNWwxLjQtMy4xaDMuNGwtNC40IDcuNnY1LjVsLTIuOS0uMXoiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxNi41IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxMSIgcj0iMi4xIi8+CiAgPC9nPgo8L3N2Zz4K);\n}\n\n/* Icon CSS class declarations */\n\n.jp-AddIcon {\n  background-image: var(--jp-icon-add);\n}\n.jp-BugIcon {\n  background-image: var(--jp-icon-bug);\n}\n.jp-BuildIcon {\n  background-image: var(--jp-icon-build);\n}\n.jp-CaretDownEmptyIcon {\n  background-image: var(--jp-icon-caret-down-empty);\n}\n.jp-CaretDownEmptyThinIcon {\n  background-image: var(--jp-icon-caret-down-empty-thin);\n}\n.jp-CaretDownIcon {\n  background-image: var(--jp-icon-caret-down);\n}\n.jp-CaretLeftIcon {\n  background-image: var(--jp-icon-caret-left);\n}\n.jp-CaretRightIcon {\n  background-image: var(--jp-icon-caret-right);\n}\n.jp-CaretUpEmptyThinIcon {\n  background-image: var(--jp-icon-caret-up-empty-thin);\n}\n.jp-CaretUpIcon {\n  background-image: var(--jp-icon-caret-up);\n}\n.jp-CaseSensitiveIcon {\n  background-image: var(--jp-icon-case-sensitive);\n}\n.jp-CheckIcon {\n  background-image: var(--jp-icon-check);\n}\n.jp-CircleEmptyIcon {\n  background-image: var(--jp-icon-circle-empty);\n}\n.jp-CircleIcon {\n  background-image: var(--jp-icon-circle);\n}\n.jp-ClearIcon {\n  background-image: var(--jp-icon-clear);\n}\n.jp-CloseIcon {\n  background-image: var(--jp-icon-close);\n}\n.jp-CodeIcon {\n  background-image: var(--jp-icon-code);\n}\n.jp-ConsoleIcon {\n  background-image: var(--jp-icon-console);\n}\n.jp-CopyIcon {\n  background-image: var(--jp-icon-copy);\n}\n.jp-CopyrightIcon {\n  background-image: var(--jp-icon-copyright);\n}\n.jp-CutIcon {\n  background-image: var(--jp-icon-cut);\n}\n.jp-DownloadIcon {\n  background-image: var(--jp-icon-download);\n}\n.jp-EditIcon {\n  background-image: var(--jp-icon-edit);\n}\n.jp-EllipsesIcon {\n  background-image: var(--jp-icon-ellipses);\n}\n.jp-ExtensionIcon {\n  background-image: var(--jp-icon-extension);\n}\n.jp-FastForwardIcon {\n  background-image: var(--jp-icon-fast-forward);\n}\n.jp-FileIcon {\n  background-image: var(--jp-icon-file);\n}\n.jp-FileUploadIcon {\n  background-image: var(--jp-icon-file-upload);\n}\n.jp-FilterListIcon {\n  background-image: var(--jp-icon-filter-list);\n}\n.jp-FolderIcon {\n  background-image: var(--jp-icon-folder);\n}\n.jp-Html5Icon {\n  background-image: var(--jp-icon-html5);\n}\n.jp-ImageIcon {\n  background-image: var(--jp-icon-image);\n}\n.jp-InspectorIcon {\n  background-image: var(--jp-icon-inspector);\n}\n.jp-JsonIcon {\n  background-image: var(--jp-icon-json);\n}\n.jp-JuliaIcon {\n  background-image: var(--jp-icon-julia);\n}\n.jp-JupyterFaviconIcon {\n  background-image: var(--jp-icon-jupyter-favicon);\n}\n.jp-JupyterIcon {\n  background-image: var(--jp-icon-jupyter);\n}\n.jp-JupyterlabWordmarkIcon {\n  background-image: var(--jp-icon-jupyterlab-wordmark);\n}\n.jp-KernelIcon {\n  background-image: var(--jp-icon-kernel);\n}\n.jp-KeyboardIcon {\n  background-image: var(--jp-icon-keyboard);\n}\n.jp-LauncherIcon {\n  background-image: var(--jp-icon-launcher);\n}\n.jp-LineFormIcon {\n  background-image: var(--jp-icon-line-form);\n}\n.jp-LinkIcon {\n  background-image: var(--jp-icon-link);\n}\n.jp-ListIcon {\n  background-image: var(--jp-icon-list);\n}\n.jp-ListingsInfoIcon {\n  background-image: var(--jp-icon-listings-info);\n}\n.jp-MarkdownIcon {\n  background-image: var(--jp-icon-markdown);\n}\n.jp-NewFolderIcon {\n  background-image: var(--jp-icon-new-folder);\n}\n.jp-NotTrustedIcon {\n  background-image: var(--jp-icon-not-trusted);\n}\n.jp-NotebookIcon {\n  background-image: var(--jp-icon-notebook);\n}\n.jp-NumberingIcon {\n  background-image: var(--jp-icon-numbering);\n}\n.jp-OfflineBoltIcon {\n  background-image: var(--jp-icon-offline-bolt);\n}\n.jp-PaletteIcon {\n  background-image: var(--jp-icon-palette);\n}\n.jp-PasteIcon {\n  background-image: var(--jp-icon-paste);\n}\n.jp-PdfIcon {\n  background-image: var(--jp-icon-pdf);\n}\n.jp-PythonIcon {\n  background-image: var(--jp-icon-python);\n}\n.jp-RKernelIcon {\n  background-image: var(--jp-icon-r-kernel);\n}\n.jp-ReactIcon {\n  background-image: var(--jp-icon-react);\n}\n.jp-RedoIcon {\n  background-image: var(--jp-icon-redo);\n}\n.jp-RefreshIcon {\n  background-image: var(--jp-icon-refresh);\n}\n.jp-RegexIcon {\n  background-image: var(--jp-icon-regex);\n}\n.jp-RunIcon {\n  background-image: var(--jp-icon-run);\n}\n.jp-RunningIcon {\n  background-image: var(--jp-icon-running);\n}\n.jp-SaveIcon {\n  background-image: var(--jp-icon-save);\n}\n.jp-SearchIcon {\n  background-image: var(--jp-icon-search);\n}\n.jp-SettingsIcon {\n  background-image: var(--jp-icon-settings);\n}\n.jp-SpreadsheetIcon {\n  background-image: var(--jp-icon-spreadsheet);\n}\n.jp-StopIcon {\n  background-image: var(--jp-icon-stop);\n}\n.jp-TabIcon {\n  background-image: var(--jp-icon-tab);\n}\n.jp-TableRowsIcon {\n  background-image: var(--jp-icon-table-rows);\n}\n.jp-TagIcon {\n  background-image: var(--jp-icon-tag);\n}\n.jp-TerminalIcon {\n  background-image: var(--jp-icon-terminal);\n}\n.jp-TextEditorIcon {\n  background-image: var(--jp-icon-text-editor);\n}\n.jp-TocIcon {\n  background-image: var(--jp-icon-toc);\n}\n.jp-TreeViewIcon {\n  background-image: var(--jp-icon-tree-view);\n}\n.jp-TrustedIcon {\n  background-image: var(--jp-icon-trusted);\n}\n.jp-UndoIcon {\n  background-image: var(--jp-icon-undo);\n}\n.jp-VegaIcon {\n  background-image: var(--jp-icon-vega);\n}\n.jp-YamlIcon {\n  background-image: var(--jp-icon-yaml);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n.jp-Icon,\n.jp-MaterialIcon {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-cover {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: cover;\n}\n\n/**\n * (DEPRECATED) Support for specific CSS icon sizes\n */\n\n.jp-Icon-16 {\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-18 {\n  background-size: 18px;\n  min-width: 18px;\n  min-height: 18px;\n}\n\n.jp-Icon-20 {\n  background-size: 20px;\n  min-width: 20px;\n  min-height: 20px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for icons as inline SVG HTMLElements\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n/* recolor the accent elements of an icon */\n.jp-icon-accent0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-accent1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-accent2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-accent3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-accent4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-accent0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-accent1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-accent2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-accent3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-accent4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n/* set the color of an icon to transparent */\n.jp-icon-none[fill] {\n  fill: none;\n}\n\n.jp-icon-none[stroke] {\n  stroke: none;\n}\n/* brand icon colors. Same for light and dark */\n.jp-icon-brand0[fill] {\n  fill: var(--jp-brand-color0);\n}\n.jp-icon-brand1[fill] {\n  fill: var(--jp-brand-color1);\n}\n.jp-icon-brand2[fill] {\n  fill: var(--jp-brand-color2);\n}\n.jp-icon-brand3[fill] {\n  fill: var(--jp-brand-color3);\n}\n.jp-icon-brand4[fill] {\n  fill: var(--jp-brand-color4);\n}\n\n.jp-icon-brand0[stroke] {\n  stroke: var(--jp-brand-color0);\n}\n.jp-icon-brand1[stroke] {\n  stroke: var(--jp-brand-color1);\n}\n.jp-icon-brand2[stroke] {\n  stroke: var(--jp-brand-color2);\n}\n.jp-icon-brand3[stroke] {\n  stroke: var(--jp-brand-color3);\n}\n.jp-icon-brand4[stroke] {\n  stroke: var(--jp-brand-color4);\n}\n/* warn icon colors. Same for light and dark */\n.jp-icon-warn0[fill] {\n  fill: var(--jp-warn-color0);\n}\n.jp-icon-warn1[fill] {\n  fill: var(--jp-warn-color1);\n}\n.jp-icon-warn2[fill] {\n  fill: var(--jp-warn-color2);\n}\n.jp-icon-warn3[fill] {\n  fill: var(--jp-warn-color3);\n}\n\n.jp-icon-warn0[stroke] {\n  stroke: var(--jp-warn-color0);\n}\n.jp-icon-warn1[stroke] {\n  stroke: var(--jp-warn-color1);\n}\n.jp-icon-warn2[stroke] {\n  stroke: var(--jp-warn-color2);\n}\n.jp-icon-warn3[stroke] {\n  stroke: var(--jp-warn-color3);\n}\n/* icon colors that contrast well with each other and most backgrounds */\n.jp-icon-contrast0[fill] {\n  fill: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[fill] {\n  fill: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[fill] {\n  fill: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[fill] {\n  fill: var(--jp-icon-contrast-color3);\n}\n\n.jp-icon-contrast0[stroke] {\n  stroke: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[stroke] {\n  stroke: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[stroke] {\n  stroke: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[stroke] {\n  stroke: var(--jp-icon-contrast-color3);\n}\n\n/* CSS for icons in selected items in the settings editor */\n#setting-editor .jp-PluginList .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n#setting-editor\n  .jp-PluginList\n  .jp-mod-selected\n  .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected filebrowser listing items */\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected tabs in the sidebar tab manager */\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable-inverse[fill] {\n  fill: #fff;\n}\n\n/**\n * TODO: come up with non css-hack solution for showing the busy icon on top\n *  of the close icon\n * CSS for complex behavior of close icon of tabs in the sidebar tab manager\n */\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty.jp-mod-active\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: #fff;\n}\n\n/**\n* TODO: come up with non css-hack solution for showing the busy icon on top\n*  of the close icon\n* CSS for complex behavior of close icon of tabs in the main area tabbar\n*/\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n/* CSS for icons in status bar */\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n/* special handling for splash icon CSS. While the theme CSS reloads during\n   splash, the splash icon can loose theming. To prevent that, we set a\n   default for its color variable */\n:root {\n  --jp-warn-color0: var(--md-orange-700);\n}\n\n/* not sure what to do with this one, used in filebrowser listing */\n.jp-DragIcon {\n  margin-right: 4px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for alt colors for icons as inline SVG HTMLElements\n */\n\n/* alt recolor the primary elements of an icon */\n.jp-icon-alt .jp-icon0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-alt .jp-icon0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* alt recolor the accent elements of an icon */\n.jp-icon-alt .jp-icon-accent0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-alt .jp-icon-accent0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-icon-hoverShow:not(:hover) svg {\n  display: none !important;\n}\n\n/**\n * Support for hover colors for icons as inline SVG HTMLElements\n */\n\n/**\n * regular colors\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon-hover :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/* recolor the accent elements of an icon */\n.jp-icon-hover :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* set the color of an icon to transparent */\n.jp-icon-hover :hover .jp-icon-none-hover[fill] {\n  fill: none;\n}\n\n.jp-icon-hover :hover .jp-icon-none-hover[stroke] {\n  stroke: none;\n}\n\n/**\n * inverse colors\n */\n\n/* inverse recolor the primary elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* inverse recolor the accent elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-switch {\n  display: flex;\n  align-items: center;\n  padding-left: 4px;\n  padding-right: 4px;\n  font-size: var(--jp-ui-font-size1);\n  background-color: transparent;\n  color: var(--jp-ui-font-color1);\n  border: none;\n  height: 20px;\n}\n\n.jp-switch:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-switch-label {\n  margin-right: 5px;\n}\n\n.jp-switch-track {\n  cursor: pointer;\n  background-color: var(--jp-border-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 34px;\n  height: 16px;\n  width: 35px;\n  position: relative;\n}\n\n.jp-switch-track::before {\n  content: '';\n  position: absolute;\n  height: 10px;\n  width: 10px;\n  margin: 3px;\n  left: 0px;\n  background-color: var(--jp-ui-inverse-font-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 50%;\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track {\n  background-color: var(--jp-warn-color0);\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track::before {\n  /* track width (35) - margins (3 + 3) - thumb width (10) */\n  left: 19px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* Sibling imports */\n\n/* Override Blueprint's _reset.scss styles */\nhtml {\n  box-sizing: unset;\n}\n\n*,\n*::before,\n*::after {\n  box-sizing: unset;\n}\n\nbody {\n  color: unset;\n  font-family: var(--jp-ui-font-family);\n}\n\np {\n  margin-top: unset;\n  margin-bottom: unset;\n}\n\nsmall {\n  font-size: unset;\n}\n\nstrong {\n  font-weight: unset;\n}\n\n/* Override Blueprint's _typography.scss styles */\na {\n  text-decoration: unset;\n  color: unset;\n}\na:hover {\n  text-decoration: unset;\n  color: unset;\n}\n\n/* Override Blueprint's _accessibility.scss styles */\n:focus {\n  outline: unset;\n  outline-offset: unset;\n  -moz-outline-radius: unset;\n}\n\n/* Styles for ui-components */\n.jp-Button {\n  border-radius: var(--jp-border-radius);\n  padding: 0px 12px;\n  font-size: var(--jp-ui-font-size1);\n}\n\n/* Use our own theme for hover styles */\nbutton.jp-Button.bp3-button.bp3-minimal:hover {\n  background-color: var(--jp-layout-color2);\n}\n.jp-Button.minimal {\n  color: unset !important;\n}\n\n.jp-Button.jp-ToolbarButtonComponent {\n  text-transform: none;\n}\n\n.jp-InputGroup input {\n  box-sizing: border-box;\n  border-radius: 0;\n  background-color: transparent;\n  color: var(--jp-ui-font-color0);\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.jp-InputGroup input:focus {\n  box-shadow: inset 0 0 0 var(--jp-border-width)\n      var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-InputGroup input::placeholder,\ninput::placeholder {\n  color: var(--jp-ui-font-color3);\n}\n\n.jp-BPIcon {\n  display: inline-block;\n  vertical-align: middle;\n  margin: auto;\n}\n\n/* Stop blueprint futzing with our icon fills */\n.bp3-icon.jp-BPIcon > svg:not([fill]) {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n.jp-InputGroupAction {\n  padding: 6px;\n}\n\n.jp-HTMLSelect.jp-DefaultStyle select {\n  background-color: initial;\n  border: none;\n  border-radius: 0;\n  box-shadow: none;\n  color: var(--jp-ui-font-color0);\n  display: block;\n  font-size: var(--jp-ui-font-size1);\n  height: 24px;\n  line-height: 14px;\n  padding: 0 25px 0 10px;\n  text-align: left;\n  -moz-appearance: none;\n  -webkit-appearance: none;\n}\n\n/* Use our own theme for hover and option styles */\n.jp-HTMLSelect.jp-DefaultStyle select:hover,\n.jp-HTMLSelect.jp-DefaultStyle select > option {\n  background-color: var(--jp-layout-color2);\n  color: var(--jp-ui-font-color0);\n}\nselect {\n  box-sizing: border-box;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapse {\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  border-top: 1px solid var(--jp-border-color2);\n  border-bottom: 1px solid var(--jp-border-color2);\n}\n\n.jp-Collapse-header {\n  padding: 1px 12px;\n  color: var(--jp-ui-font-color1);\n  background-color: var(--jp-layout-color1);\n  font-size: var(--jp-ui-font-size2);\n}\n\n.jp-Collapse-header:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-Collapse-contents {\n  padding: 0px 12px 0px 12px;\n  background-color: var(--jp-layout-color1);\n  color: var(--jp-ui-font-color1);\n  overflow: auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-commandpalette-search-height: 28px;\n}\n\n/*-----------------------------------------------------------------------------\n| Overall styles\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette {\n  padding-bottom: 0px;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Modal variant\n|----------------------------------------------------------------------------*/\n\n.jp-ModalCommandPalette {\n  position: absolute;\n  z-index: 10000;\n  top: 38px;\n  left: 30%;\n  margin: 0;\n  padding: 4px;\n  width: 40%;\n  box-shadow: var(--jp-elevation-z4);\n  border-radius: 4px;\n  background: var(--jp-layout-color0);\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette {\n  max-height: 40vh;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-close-icon::after {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-header {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-item {\n  margin-left: 4px;\n  margin-right: 4px;\n}\n\n.jp-ModalCommandPalette\n  .lm-CommandPalette\n  .lm-CommandPalette-item.lm-mod-disabled {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Search\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-search {\n  padding: 4px;\n  background-color: var(--jp-layout-color1);\n  z-index: 2;\n}\n\n.lm-CommandPalette-wrapper {\n  overflow: overlay;\n  padding: 0px 9px;\n  background-color: var(--jp-input-active-background);\n  height: 30px;\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.lm-CommandPalette.lm-mod-focused .lm-CommandPalette-wrapper {\n  box-shadow: inset 0 0 0 1px var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-SearchIconGroup {\n  color: white;\n  background-color: var(--jp-brand-color1);\n  position: absolute;\n  top: 4px;\n  right: 4px;\n  padding: 5px 5px 1px 5px;\n}\n\n.jp-SearchIconGroup svg {\n  height: 20px;\n  width: 20px;\n}\n\n.jp-SearchIconGroup .jp-icon3[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-input {\n  background: transparent;\n  width: calc(100% - 18px);\n  float: left;\n  border: none;\n  outline: none;\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  line-height: var(--jp-private-commandpalette-search-height);\n}\n\n.lm-CommandPalette-input::-webkit-input-placeholder,\n.lm-CommandPalette-input::-moz-placeholder,\n.lm-CommandPalette-input:-ms-input-placeholder {\n  color: var(--jp-ui-font-color2);\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Results\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-header:first-child {\n  margin-top: 0px;\n}\n\n.lm-CommandPalette-header {\n  border-bottom: solid var(--jp-border-width) var(--jp-border-color2);\n  color: var(--jp-ui-font-color1);\n  cursor: pointer;\n  display: flex;\n  font-size: var(--jp-ui-font-size0);\n  font-weight: 600;\n  letter-spacing: 1px;\n  margin-top: 8px;\n  padding: 8px 0 8px 12px;\n  text-transform: uppercase;\n}\n\n.lm-CommandPalette-header.lm-mod-active {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-header > mark {\n  background-color: transparent;\n  font-weight: bold;\n  color: var(--jp-ui-font-color1);\n}\n\n.lm-CommandPalette-item {\n  padding: 4px 12px 4px 4px;\n  color: var(--jp-ui-font-color1);\n  font-size: var(--jp-ui-font-size1);\n  font-weight: 400;\n  display: flex;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item.lm-mod-active {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .jp-icon-selectable[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active:hover:not(.lm-mod-disabled) {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item:hover:not(.lm-mod-active):not(.lm-mod-disabled) {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-itemContent {\n  overflow: hidden;\n}\n\n.lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled mark {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemIcon {\n  margin: 0 4px 0 0;\n  position: relative;\n  width: 16px;\n  top: 2px;\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled .lm-CommandPalette-itemIcon {\n  opacity: 0.6;\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-itemCaption {\n  display: none;\n}\n\n.lm-CommandPalette-content {\n  background-color: var(--jp-layout-color1);\n}\n\n.lm-CommandPalette-content:empty:after {\n  content: 'No results';\n  margin: auto;\n  margin-top: 20px;\n  width: 100px;\n  display: block;\n  font-size: var(--jp-ui-font-size2);\n  font-family: var(--jp-ui-font-family);\n  font-weight: lighter;\n}\n\n.lm-CommandPalette-emptyMessage {\n  text-align: center;\n  margin-top: 24px;\n  line-height: 1.32;\n  padding: 0px 8px;\n  color: var(--jp-content-font-color3);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Dialog {\n  position: absolute;\n  z-index: 10000;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  top: 0px;\n  left: 0px;\n  margin: 0;\n  padding: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-dialog-background);\n}\n\n.jp-Dialog-content {\n  display: flex;\n  flex-direction: column;\n  margin-left: auto;\n  margin-right: auto;\n  background: var(--jp-layout-color1);\n  padding: 24px;\n  padding-bottom: 12px;\n  min-width: 300px;\n  min-height: 150px;\n  max-width: 1000px;\n  max-height: 500px;\n  box-sizing: border-box;\n  box-shadow: var(--jp-elevation-z20);\n  word-wrap: break-word;\n  border-radius: var(--jp-border-radius);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color1);\n  resize: both;\n}\n\n.jp-Dialog-button {\n  overflow: visible;\n}\n\nbutton.jp-Dialog-button:focus {\n  outline: 1px solid var(--jp-brand-color1);\n  outline-offset: 4px;\n  -moz-outline-radius: 0px;\n}\n\nbutton.jp-Dialog-button:focus::-moz-focus-inner {\n  border: 0;\n}\n\nbutton.jp-Dialog-close-button {\n  padding: 0;\n  height: 100%;\n  min-width: unset;\n  min-height: unset;\n}\n\n.jp-Dialog-header {\n  display: flex;\n  justify-content: space-between;\n  flex: 0 0 auto;\n  padding-bottom: 12px;\n  font-size: var(--jp-ui-font-size3);\n  font-weight: 400;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-body {\n  display: flex;\n  flex-direction: column;\n  flex: 1 1 auto;\n  font-size: var(--jp-ui-font-size1);\n  background: var(--jp-layout-color1);\n  overflow: auto;\n}\n\n.jp-Dialog-footer {\n  display: flex;\n  flex-direction: row;\n  justify-content: flex-end;\n  flex: 0 0 auto;\n  margin-left: -12px;\n  margin-right: -12px;\n  padding: 12px;\n}\n\n.jp-Dialog-title {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.jp-Dialog-body > .jp-select-wrapper {\n  width: 100%;\n}\n\n.jp-Dialog-body > button {\n  padding: 0px 16px;\n}\n\n.jp-Dialog-body > label {\n  line-height: 1.4;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-button.jp-mod-styled:not(:last-child) {\n  margin-right: 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-HoverBox {\n  position: fixed;\n}\n\n.jp-HoverBox.jp-mod-outofview {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-IFrame {\n  width: 100%;\n  height: 100%;\n}\n\n.jp-IFrame > iframe {\n  border: none;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-IFrame {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-IFrame:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n.jp-Input-Boolean-Dialog {\n  flex-direction: row-reverse;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-Input-Boolean-Dialog > label {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MainAreaWidget > :focus {\n  outline: none;\n}\n\n/**\n * google-material-color v1.2.6\n * https://github.com/danlevan/google-material-color\n */\n:root {\n  --md-red-50: #ffebee;\n  --md-red-100: #ffcdd2;\n  --md-red-200: #ef9a9a;\n  --md-red-300: #e57373;\n  --md-red-400: #ef5350;\n  --md-red-500: #f44336;\n  --md-red-600: #e53935;\n  --md-red-700: #d32f2f;\n  --md-red-800: #c62828;\n  --md-red-900: #b71c1c;\n  --md-red-A100: #ff8a80;\n  --md-red-A200: #ff5252;\n  --md-red-A400: #ff1744;\n  --md-red-A700: #d50000;\n\n  --md-pink-50: #fce4ec;\n  --md-pink-100: #f8bbd0;\n  --md-pink-200: #f48fb1;\n  --md-pink-300: #f06292;\n  --md-pink-400: #ec407a;\n  --md-pink-500: #e91e63;\n  --md-pink-600: #d81b60;\n  --md-pink-700: #c2185b;\n  --md-pink-800: #ad1457;\n  --md-pink-900: #880e4f;\n  --md-pink-A100: #ff80ab;\n  --md-pink-A200: #ff4081;\n  --md-pink-A400: #f50057;\n  --md-pink-A700: #c51162;\n\n  --md-purple-50: #f3e5f5;\n  --md-purple-100: #e1bee7;\n  --md-purple-200: #ce93d8;\n  --md-purple-300: #ba68c8;\n  --md-purple-400: #ab47bc;\n  --md-purple-500: #9c27b0;\n  --md-purple-600: #8e24aa;\n  --md-purple-700: #7b1fa2;\n  --md-purple-800: #6a1b9a;\n  --md-purple-900: #4a148c;\n  --md-purple-A100: #ea80fc;\n  --md-purple-A200: #e040fb;\n  --md-purple-A400: #d500f9;\n  --md-purple-A700: #aa00ff;\n\n  --md-deep-purple-50: #ede7f6;\n  --md-deep-purple-100: #d1c4e9;\n  --md-deep-purple-200: #b39ddb;\n  --md-deep-purple-300: #9575cd;\n  --md-deep-purple-400: #7e57c2;\n  --md-deep-purple-500: #673ab7;\n  --md-deep-purple-600: #5e35b1;\n  --md-deep-purple-700: #512da8;\n  --md-deep-purple-800: #4527a0;\n  --md-deep-purple-900: #311b92;\n  --md-deep-purple-A100: #b388ff;\n  --md-deep-purple-A200: #7c4dff;\n  --md-deep-purple-A400: #651fff;\n  --md-deep-purple-A700: #6200ea;\n\n  --md-indigo-50: #e8eaf6;\n  --md-indigo-100: #c5cae9;\n  --md-indigo-200: #9fa8da;\n  --md-indigo-300: #7986cb;\n  --md-indigo-400: #5c6bc0;\n  --md-indigo-500: #3f51b5;\n  --md-indigo-600: #3949ab;\n  --md-indigo-700: #303f9f;\n  --md-indigo-800: #283593;\n  --md-indigo-900: #1a237e;\n  --md-indigo-A100: #8c9eff;\n  --md-indigo-A200: #536dfe;\n  --md-indigo-A400: #3d5afe;\n  --md-indigo-A700: #304ffe;\n\n  --md-blue-50: #e3f2fd;\n  --md-blue-100: #bbdefb;\n  --md-blue-200: #90caf9;\n  --md-blue-300: #64b5f6;\n  --md-blue-400: #42a5f5;\n  --md-blue-500: #2196f3;\n  --md-blue-600: #1e88e5;\n  --md-blue-700: #1976d2;\n  --md-blue-800: #1565c0;\n  --md-blue-900: #0d47a1;\n  --md-blue-A100: #82b1ff;\n  --md-blue-A200: #448aff;\n  --md-blue-A400: #2979ff;\n  --md-blue-A700: #2962ff;\n\n  --md-light-blue-50: #e1f5fe;\n  --md-light-blue-100: #b3e5fc;\n  --md-light-blue-200: #81d4fa;\n  --md-light-blue-300: #4fc3f7;\n  --md-light-blue-400: #29b6f6;\n  --md-light-blue-500: #03a9f4;\n  --md-light-blue-600: #039be5;\n  --md-light-blue-700: #0288d1;\n  --md-light-blue-800: #0277bd;\n  --md-light-blue-900: #01579b;\n  --md-light-blue-A100: #80d8ff;\n  --md-light-blue-A200: #40c4ff;\n  --md-light-blue-A400: #00b0ff;\n  --md-light-blue-A700: #0091ea;\n\n  --md-cyan-50: #e0f7fa;\n  --md-cyan-100: #b2ebf2;\n  --md-cyan-200: #80deea;\n  --md-cyan-300: #4dd0e1;\n  --md-cyan-400: #26c6da;\n  --md-cyan-500: #00bcd4;\n  --md-cyan-600: #00acc1;\n  --md-cyan-700: #0097a7;\n  --md-cyan-800: #00838f;\n  --md-cyan-900: #006064;\n  --md-cyan-A100: #84ffff;\n  --md-cyan-A200: #18ffff;\n  --md-cyan-A400: #00e5ff;\n  --md-cyan-A700: #00b8d4;\n\n  --md-teal-50: #e0f2f1;\n  --md-teal-100: #b2dfdb;\n  --md-teal-200: #80cbc4;\n  --md-teal-300: #4db6ac;\n  --md-teal-400: #26a69a;\n  --md-teal-500: #009688;\n  --md-teal-600: #00897b;\n  --md-teal-700: #00796b;\n  --md-teal-800: #00695c;\n  --md-teal-900: #004d40;\n  --md-teal-A100: #a7ffeb;\n  --md-teal-A200: #64ffda;\n  --md-teal-A400: #1de9b6;\n  --md-teal-A700: #00bfa5;\n\n  --md-green-50: #e8f5e9;\n  --md-green-100: #c8e6c9;\n  --md-green-200: #a5d6a7;\n  --md-green-300: #81c784;\n  --md-green-400: #66bb6a;\n  --md-green-500: #4caf50;\n  --md-green-600: #43a047;\n  --md-green-700: #388e3c;\n  --md-green-800: #2e7d32;\n  --md-green-900: #1b5e20;\n  --md-green-A100: #b9f6ca;\n  --md-green-A200: #69f0ae;\n  --md-green-A400: #00e676;\n  --md-green-A700: #00c853;\n\n  --md-light-green-50: #f1f8e9;\n  --md-light-green-100: #dcedc8;\n  --md-light-green-200: #c5e1a5;\n  --md-light-green-300: #aed581;\n  --md-light-green-400: #9ccc65;\n  --md-light-green-500: #8bc34a;\n  --md-light-green-600: #7cb342;\n  --md-light-green-700: #689f38;\n  --md-light-green-800: #558b2f;\n  --md-light-green-900: #33691e;\n  --md-light-green-A100: #ccff90;\n  --md-light-green-A200: #b2ff59;\n  --md-light-green-A400: #76ff03;\n  --md-light-green-A700: #64dd17;\n\n  --md-lime-50: #f9fbe7;\n  --md-lime-100: #f0f4c3;\n  --md-lime-200: #e6ee9c;\n  --md-lime-300: #dce775;\n  --md-lime-400: #d4e157;\n  --md-lime-500: #cddc39;\n  --md-lime-600: #c0ca33;\n  --md-lime-700: #afb42b;\n  --md-lime-800: #9e9d24;\n  --md-lime-900: #827717;\n  --md-lime-A100: #f4ff81;\n  --md-lime-A200: #eeff41;\n  --md-lime-A400: #c6ff00;\n  --md-lime-A700: #aeea00;\n\n  --md-yellow-50: #fffde7;\n  --md-yellow-100: #fff9c4;\n  --md-yellow-200: #fff59d;\n  --md-yellow-300: #fff176;\n  --md-yellow-400: #ffee58;\n  --md-yellow-500: #ffeb3b;\n  --md-yellow-600: #fdd835;\n  --md-yellow-700: #fbc02d;\n  --md-yellow-800: #f9a825;\n  --md-yellow-900: #f57f17;\n  --md-yellow-A100: #ffff8d;\n  --md-yellow-A200: #ffff00;\n  --md-yellow-A400: #ffea00;\n  --md-yellow-A700: #ffd600;\n\n  --md-amber-50: #fff8e1;\n  --md-amber-100: #ffecb3;\n  --md-amber-200: #ffe082;\n  --md-amber-300: #ffd54f;\n  --md-amber-400: #ffca28;\n  --md-amber-500: #ffc107;\n  --md-amber-600: #ffb300;\n  --md-amber-700: #ffa000;\n  --md-amber-800: #ff8f00;\n  --md-amber-900: #ff6f00;\n  --md-amber-A100: #ffe57f;\n  --md-amber-A200: #ffd740;\n  --md-amber-A400: #ffc400;\n  --md-amber-A700: #ffab00;\n\n  --md-orange-50: #fff3e0;\n  --md-orange-100: #ffe0b2;\n  --md-orange-200: #ffcc80;\n  --md-orange-300: #ffb74d;\n  --md-orange-400: #ffa726;\n  --md-orange-500: #ff9800;\n  --md-orange-600: #fb8c00;\n  --md-orange-700: #f57c00;\n  --md-orange-800: #ef6c00;\n  --md-orange-900: #e65100;\n  --md-orange-A100: #ffd180;\n  --md-orange-A200: #ffab40;\n  --md-orange-A400: #ff9100;\n  --md-orange-A700: #ff6d00;\n\n  --md-deep-orange-50: #fbe9e7;\n  --md-deep-orange-100: #ffccbc;\n  --md-deep-orange-200: #ffab91;\n  --md-deep-orange-300: #ff8a65;\n  --md-deep-orange-400: #ff7043;\n  --md-deep-orange-500: #ff5722;\n  --md-deep-orange-600: #f4511e;\n  --md-deep-orange-700: #e64a19;\n  --md-deep-orange-800: #d84315;\n  --md-deep-orange-900: #bf360c;\n  --md-deep-orange-A100: #ff9e80;\n  --md-deep-orange-A200: #ff6e40;\n  --md-deep-orange-A400: #ff3d00;\n  --md-deep-orange-A700: #dd2c00;\n\n  --md-brown-50: #efebe9;\n  --md-brown-100: #d7ccc8;\n  --md-brown-200: #bcaaa4;\n  --md-brown-300: #a1887f;\n  --md-brown-400: #8d6e63;\n  --md-brown-500: #795548;\n  --md-brown-600: #6d4c41;\n  --md-brown-700: #5d4037;\n  --md-brown-800: #4e342e;\n  --md-brown-900: #3e2723;\n\n  --md-grey-50: #fafafa;\n  --md-grey-100: #f5f5f5;\n  --md-grey-200: #eeeeee;\n  --md-grey-300: #e0e0e0;\n  --md-grey-400: #bdbdbd;\n  --md-grey-500: #9e9e9e;\n  --md-grey-600: #757575;\n  --md-grey-700: #616161;\n  --md-grey-800: #424242;\n  --md-grey-900: #212121;\n\n  --md-blue-grey-50: #eceff1;\n  --md-blue-grey-100: #cfd8dc;\n  --md-blue-grey-200: #b0bec5;\n  --md-blue-grey-300: #90a4ae;\n  --md-blue-grey-400: #78909c;\n  --md-blue-grey-500: #607d8b;\n  --md-blue-grey-600: #546e7a;\n  --md-blue-grey-700: #455a64;\n  --md-blue-grey-800: #37474f;\n  --md-blue-grey-900: #263238;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Spinner {\n  position: absolute;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  z-index: 10;\n  left: 0;\n  top: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-layout-color0);\n  outline: none;\n}\n\n.jp-SpinnerContent {\n  font-size: 10px;\n  margin: 50px auto;\n  text-indent: -9999em;\n  width: 3em;\n  height: 3em;\n  border-radius: 50%;\n  background: var(--jp-brand-color3);\n  background: linear-gradient(\n    to right,\n    #f37626 10%,\n    rgba(255, 255, 255, 0) 42%\n  );\n  position: relative;\n  animation: load3 1s infinite linear, fadeIn 1s;\n}\n\n.jp-SpinnerContent:before {\n  width: 50%;\n  height: 50%;\n  background: #f37626;\n  border-radius: 100% 0 0 0;\n  position: absolute;\n  top: 0;\n  left: 0;\n  content: '';\n}\n\n.jp-SpinnerContent:after {\n  background: var(--jp-layout-color0);\n  width: 75%;\n  height: 75%;\n  border-radius: 50%;\n  content: '';\n  margin: auto;\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n}\n\n@keyframes fadeIn {\n  0% {\n    opacity: 0;\n  }\n  100% {\n    opacity: 1;\n  }\n}\n\n@keyframes load3 {\n  0% {\n    transform: rotate(0deg);\n  }\n  100% {\n    transform: rotate(360deg);\n  }\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\nbutton.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: none;\n  box-sizing: border-box;\n  text-align: center;\n  line-height: 32px;\n  height: 32px;\n  padding: 0px 12px;\n  letter-spacing: 0.8px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput.jp-mod-styled {\n  background: var(--jp-input-background);\n  height: 28px;\n  box-sizing: border-box;\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n  padding-left: 7px;\n  padding-right: 7px;\n  font-size: var(--jp-ui-font-size2);\n  color: var(--jp-ui-font-color0);\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput[type='checkbox'].jp-mod-styled {\n  appearance: checkbox;\n  -webkit-appearance: checkbox;\n  -moz-appearance: checkbox;\n  height: auto;\n}\n\ninput.jp-mod-styled:focus {\n  border: var(--jp-border-width) solid var(--md-blue-500);\n  box-shadow: inset 0 0 4px var(--md-blue-300);\n}\n\n.jp-FileDialog-Checkbox {\n  margin-top: 35px;\n  display: flex;\n  flex-direction: row;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-FileDialog-Checkbox > label {\n  flex: 1 1 auto;\n}\n\n.jp-select-wrapper {\n  display: flex;\n  position: relative;\n  flex-direction: column;\n  padding: 1px;\n  background-color: var(--jp-layout-color1);\n  height: 28px;\n  box-sizing: border-box;\n  margin-bottom: 12px;\n}\n\n.jp-select-wrapper.jp-mod-focused select.jp-mod-styled {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-input-active-background);\n}\n\nselect.jp-mod-styled:hover {\n  background-color: var(--jp-layout-color1);\n  cursor: pointer;\n  color: var(--jp-ui-font-color0);\n  background-color: var(--jp-input-hover-background);\n  box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.5);\n}\n\nselect.jp-mod-styled {\n  flex: 1 1 auto;\n  height: 32px;\n  width: 100%;\n  font-size: var(--jp-ui-font-size2);\n  background: var(--jp-input-background);\n  color: var(--jp-ui-font-color0);\n  padding: 0 25px 0 8px;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-toolbar-height: calc(\n    28px + var(--jp-border-width)\n  ); /* leave 28px for content */\n}\n\n.jp-Toolbar {\n  color: var(--jp-ui-font-color1);\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  border-bottom: var(--jp-border-width) solid var(--jp-toolbar-border-color);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  background: var(--jp-toolbar-background);\n  min-height: var(--jp-toolbar-micro-height);\n  padding: 2px;\n  z-index: 1;\n  overflow-x: auto;\n}\n\n/* Toolbar items */\n\n.jp-Toolbar > .jp-Toolbar-item.jp-Toolbar-spacer {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\n.jp-Toolbar-item.jp-Toolbar-kernelStatus {\n  display: inline-block;\n  width: 32px;\n  background-repeat: no-repeat;\n  background-position: center;\n  background-size: 16px;\n}\n\n.jp-Toolbar > .jp-Toolbar-item {\n  flex: 0 0 auto;\n  display: flex;\n  padding-left: 1px;\n  padding-right: 1px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: var(--jp-private-toolbar-height);\n  height: 100%;\n}\n\n/* Toolbar buttons */\n\n/* This is the div we use to wrap the react component into a Widget */\ndiv.jp-ToolbarButton {\n  color: transparent;\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px;\n  margin: 0px;\n}\n\nbutton.jp-ToolbarButtonComponent {\n  background: var(--jp-layout-color1);\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px 6px;\n  margin: 0px;\n  height: 24px;\n  border-radius: var(--jp-border-radius);\n  display: flex;\n  align-items: center;\n  text-align: center;\n  font-size: 14px;\n  min-width: unset;\n  min-height: unset;\n}\n\nbutton.jp-ToolbarButtonComponent:disabled {\n  opacity: 0.4;\n}\n\nbutton.jp-ToolbarButtonComponent span {\n  padding: 0px;\n  flex: 0 0 auto;\n}\n\nbutton.jp-ToolbarButtonComponent .jp-ToolbarButtonComponent-label {\n  font-size: var(--jp-ui-font-size1);\n  line-height: 100%;\n  padding-left: 2px;\n  color: var(--jp-ui-font-color1);\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar.jp-Toolbar-micro {\n  padding: 0;\n  min-height: 0;\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar {\n  border: none;\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ body.p-mod-override-cursor *, /* </DEPRECATED> */\nbody.lm-mod-override-cursor * {\n  cursor: inherit !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-JSONEditor {\n  display: flex;\n  flex-direction: column;\n  width: 100%;\n}\n\n.jp-JSONEditor-host {\n  flex: 1 1 auto;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  background: var(--jp-layout-color0);\n  min-height: 50px;\n  padding: 1px;\n}\n\n.jp-JSONEditor.jp-mod-error .jp-JSONEditor-host {\n  border-color: red;\n  outline-color: red;\n}\n\n.jp-JSONEditor-header {\n  display: flex;\n  flex: 1 0 auto;\n  padding: 0 0 0 12px;\n}\n\n.jp-JSONEditor-header label {\n  flex: 0 0 auto;\n}\n\n.jp-JSONEditor-commitButton {\n  height: 16px;\n  width: 16px;\n  background-size: 18px;\n  background-repeat: no-repeat;\n  background-position: center;\n}\n\n.jp-JSONEditor-host.jp-mod-focused {\n  background-color: var(--jp-input-active-background);\n  border: 1px solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n.jp-Editor.jp-mod-dropTarget {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n/* BASICS */\n\n.CodeMirror {\n  /* Set height, width, borders, and global font properties here */\n  font-family: monospace;\n  height: 300px;\n  color: black;\n  direction: ltr;\n}\n\n/* PADDING */\n\n.CodeMirror-lines {\n  padding: 4px 0; /* Vertical padding around content */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  padding: 0 4px; /* Horizontal padding of content */\n}\n\n.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  background-color: white; /* The little square between H and V scrollbars */\n}\n\n/* GUTTER */\n\n.CodeMirror-gutters {\n  border-right: 1px solid #ddd;\n  background-color: #f7f7f7;\n  white-space: nowrap;\n}\n.CodeMirror-linenumbers {}\n.CodeMirror-linenumber {\n  padding: 0 3px 0 5px;\n  min-width: 20px;\n  text-align: right;\n  color: #999;\n  white-space: nowrap;\n}\n\n.CodeMirror-guttermarker { color: black; }\n.CodeMirror-guttermarker-subtle { color: #999; }\n\n/* CURSOR */\n\n.CodeMirror-cursor {\n  border-left: 1px solid black;\n  border-right: none;\n  width: 0;\n}\n/* Shown when moving in bi-directional text */\n.CodeMirror div.CodeMirror-secondarycursor {\n  border-left: 1px solid silver;\n}\n.cm-fat-cursor .CodeMirror-cursor {\n  width: auto;\n  border: 0 !important;\n  background: #7e7;\n}\n.cm-fat-cursor div.CodeMirror-cursors {\n  z-index: 1;\n}\n.cm-fat-cursor-mark {\n  background-color: rgba(20, 255, 20, 0.5);\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n}\n.cm-animate-fat-cursor {\n  width: auto;\n  border: 0;\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n  background-color: #7e7;\n}\n@-moz-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@-webkit-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n\n/* Can style cursor different in overwrite (non-insert) mode */\n.CodeMirror-overwrite .CodeMirror-cursor {}\n\n.cm-tab { display: inline-block; text-decoration: inherit; }\n\n.CodeMirror-rulers {\n  position: absolute;\n  left: 0; right: 0; top: -50px; bottom: 0;\n  overflow: hidden;\n}\n.CodeMirror-ruler {\n  border-left: 1px solid #ccc;\n  top: 0; bottom: 0;\n  position: absolute;\n}\n\n/* DEFAULT THEME */\n\n.cm-s-default .cm-header {color: blue;}\n.cm-s-default .cm-quote {color: #090;}\n.cm-negative {color: #d44;}\n.cm-positive {color: #292;}\n.cm-header, .cm-strong {font-weight: bold;}\n.cm-em {font-style: italic;}\n.cm-link {text-decoration: underline;}\n.cm-strikethrough {text-decoration: line-through;}\n\n.cm-s-default .cm-keyword {color: #708;}\n.cm-s-default .cm-atom {color: #219;}\n.cm-s-default .cm-number {color: #164;}\n.cm-s-default .cm-def {color: #00f;}\n.cm-s-default .cm-variable,\n.cm-s-default .cm-punctuation,\n.cm-s-default .cm-property,\n.cm-s-default .cm-operator {}\n.cm-s-default .cm-variable-2 {color: #05a;}\n.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}\n.cm-s-default .cm-comment {color: #a50;}\n.cm-s-default .cm-string {color: #a11;}\n.cm-s-default .cm-string-2 {color: #f50;}\n.cm-s-default .cm-meta {color: #555;}\n.cm-s-default .cm-qualifier {color: #555;}\n.cm-s-default .cm-builtin {color: #30a;}\n.cm-s-default .cm-bracket {color: #997;}\n.cm-s-default .cm-tag {color: #170;}\n.cm-s-default .cm-attribute {color: #00c;}\n.cm-s-default .cm-hr {color: #999;}\n.cm-s-default .cm-link {color: #00c;}\n\n.cm-s-default .cm-error {color: #f00;}\n.cm-invalidchar {color: #f00;}\n\n.CodeMirror-composing { border-bottom: 2px solid; }\n\n/* Default styles for common addons */\n\ndiv.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}\ndiv.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}\n.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }\n.CodeMirror-activeline-background {background: #e8f2ff;}\n\n/* STOP */\n\n/* The rest of this file contains styles related to the mechanics of\n   the editor. You probably shouldn't touch them. */\n\n.CodeMirror {\n  position: relative;\n  overflow: hidden;\n  background: white;\n}\n\n.CodeMirror-scroll {\n  overflow: scroll !important; /* Things will break if this is overridden */\n  /* 50px is the magic margin used to hide the element's real scrollbars */\n  /* See overflow: hidden in .CodeMirror */\n  margin-bottom: -50px; margin-right: -50px;\n  padding-bottom: 50px;\n  height: 100%;\n  outline: none; /* Prevent dragging from highlighting the element */\n  position: relative;\n}\n.CodeMirror-sizer {\n  position: relative;\n  border-right: 50px solid transparent;\n}\n\n/* The fake, visible scrollbars. Used to force redraw during scrolling\n   before actual scrolling happens, thus preventing shaking and\n   flickering artifacts. */\n.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  position: absolute;\n  z-index: 6;\n  display: none;\n  outline: none;\n}\n.CodeMirror-vscrollbar {\n  right: 0; top: 0;\n  overflow-x: hidden;\n  overflow-y: scroll;\n}\n.CodeMirror-hscrollbar {\n  bottom: 0; left: 0;\n  overflow-y: hidden;\n  overflow-x: scroll;\n}\n.CodeMirror-scrollbar-filler {\n  right: 0; bottom: 0;\n}\n.CodeMirror-gutter-filler {\n  left: 0; bottom: 0;\n}\n\n.CodeMirror-gutters {\n  position: absolute; left: 0; top: 0;\n  min-height: 100%;\n  z-index: 3;\n}\n.CodeMirror-gutter {\n  white-space: normal;\n  height: 100%;\n  display: inline-block;\n  vertical-align: top;\n  margin-bottom: -50px;\n}\n.CodeMirror-gutter-wrapper {\n  position: absolute;\n  z-index: 4;\n  background: none !important;\n  border: none !important;\n}\n.CodeMirror-gutter-background {\n  position: absolute;\n  top: 0; bottom: 0;\n  z-index: 4;\n}\n.CodeMirror-gutter-elt {\n  position: absolute;\n  cursor: default;\n  z-index: 4;\n}\n.CodeMirror-gutter-wrapper ::selection { background-color: transparent }\n.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }\n\n.CodeMirror-lines {\n  cursor: text;\n  min-height: 1px; /* prevents collapsing before first draw */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  /* Reset some styles that the rest of the page might have set */\n  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;\n  border-width: 0;\n  background: transparent;\n  font-family: inherit;\n  font-size: inherit;\n  margin: 0;\n  white-space: pre;\n  word-wrap: normal;\n  line-height: inherit;\n  color: inherit;\n  z-index: 2;\n  position: relative;\n  overflow: visible;\n  -webkit-tap-highlight-color: transparent;\n  -webkit-font-variant-ligatures: contextual;\n  font-variant-ligatures: contextual;\n}\n.CodeMirror-wrap pre.CodeMirror-line,\n.CodeMirror-wrap pre.CodeMirror-line-like {\n  word-wrap: break-word;\n  white-space: pre-wrap;\n  word-break: normal;\n}\n\n.CodeMirror-linebackground {\n  position: absolute;\n  left: 0; right: 0; top: 0; bottom: 0;\n  z-index: 0;\n}\n\n.CodeMirror-linewidget {\n  position: relative;\n  z-index: 2;\n  padding: 0.1px; /* Force widget margins to stay inside of the container */\n}\n\n.CodeMirror-widget {}\n\n.CodeMirror-rtl pre { direction: rtl; }\n\n.CodeMirror-code {\n  outline: none;\n}\n\n/* Force content-box sizing for the elements where we expect it */\n.CodeMirror-scroll,\n.CodeMirror-sizer,\n.CodeMirror-gutter,\n.CodeMirror-gutters,\n.CodeMirror-linenumber {\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n}\n\n.CodeMirror-measure {\n  position: absolute;\n  width: 100%;\n  height: 0;\n  overflow: hidden;\n  visibility: hidden;\n}\n\n.CodeMirror-cursor {\n  position: absolute;\n  pointer-events: none;\n}\n.CodeMirror-measure pre { position: static; }\n\ndiv.CodeMirror-cursors {\n  visibility: hidden;\n  position: relative;\n  z-index: 3;\n}\ndiv.CodeMirror-dragcursors {\n  visibility: visible;\n}\n\n.CodeMirror-focused div.CodeMirror-cursors {\n  visibility: visible;\n}\n\n.CodeMirror-selected { background: #d9d9d9; }\n.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }\n.CodeMirror-crosshair { cursor: crosshair; }\n.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }\n.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }\n\n.cm-searching {\n  background-color: #ffa;\n  background-color: rgba(255, 255, 0, .4);\n}\n\n/* Used to force a border model for a node */\n.cm-force-border { padding-right: .1px; }\n\n@media print {\n  /* Hide the cursor when printing */\n  .CodeMirror div.CodeMirror-cursors {\n    visibility: hidden;\n  }\n}\n\n/* See issue #2901 */\n.cm-tab-wrap-hack:after { content: ''; }\n\n/* Help users use markselection to safely style text background */\nspan.CodeMirror-selectedtext { background: none; }\n\n.CodeMirror-dialog {\n  position: absolute;\n  left: 0; right: 0;\n  background: inherit;\n  z-index: 15;\n  padding: .1em .8em;\n  overflow: hidden;\n  color: inherit;\n}\n\n.CodeMirror-dialog-top {\n  border-bottom: 1px solid #eee;\n  top: 0;\n}\n\n.CodeMirror-dialog-bottom {\n  border-top: 1px solid #eee;\n  bottom: 0;\n}\n\n.CodeMirror-dialog input {\n  border: none;\n  outline: none;\n  background: transparent;\n  width: 20em;\n  color: inherit;\n  font-family: monospace;\n}\n\n.CodeMirror-dialog button {\n  font-size: 70%;\n}\n\n.CodeMirror-foldmarker {\n  color: blue;\n  text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;\n  font-family: arial;\n  line-height: .3;\n  cursor: pointer;\n}\n.CodeMirror-foldgutter {\n  width: .7em;\n}\n.CodeMirror-foldgutter-open,\n.CodeMirror-foldgutter-folded {\n  cursor: pointer;\n}\n.CodeMirror-foldgutter-open:after {\n  content: \"\\25BE\";\n}\n.CodeMirror-foldgutter-folded:after {\n  content: \"\\25B8\";\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.CodeMirror {\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  border: 0;\n  border-radius: 0;\n  height: auto;\n  /* Changed to auto to autogrow */\n}\n\n.CodeMirror pre {\n  padding: 0 var(--jp-code-padding);\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-dialog {\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* This causes https://github.com/jupyter/jupyterlab/issues/522 */\n/* May not cause it not because we changed it! */\n.CodeMirror-lines {\n  padding: var(--jp-code-padding) 0;\n}\n\n.CodeMirror-linenumber {\n  padding: 0 8px;\n}\n\n.jp-CodeMirrorEditor {\n  cursor: text;\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n\n/* When zoomed out 67% and 33% on a screen of 1440 width x 900 height */\n@media screen and (min-width: 2138px) and (max-width: 4319px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width1) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n/* When zoomed out less than 33% */\n@media screen and (min-width: 4320px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width2) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n.CodeMirror.jp-mod-readOnly .CodeMirror-cursor {\n  display: none;\n}\n\n.CodeMirror-gutters {\n  border-right: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-layout-color0);\n}\n\n.jp-CollaboratorCursor {\n  border-left: 5px solid transparent;\n  border-right: 5px solid transparent;\n  border-top: none;\n  border-bottom: 3px solid;\n  background-clip: content-box;\n  margin-left: -5px;\n  margin-right: -5px;\n}\n\n.CodeMirror-selectedtext.cm-searching {\n  background-color: var(--jp-search-selected-match-background-color) !important;\n  color: var(--jp-search-selected-match-color) !important;\n}\n\n.cm-searching {\n  background-color: var(\n    --jp-search-unselected-match-background-color\n  ) !important;\n  color: var(--jp-search-unselected-match-color) !important;\n}\n\n.CodeMirror-focused .CodeMirror-selected {\n  background-color: var(--jp-editor-selected-focused-background);\n}\n\n.CodeMirror-selected {\n  background-color: var(--jp-editor-selected-background);\n}\n\n.jp-CollaboratorCursor-hover {\n  position: absolute;\n  z-index: 1;\n  transform: translateX(-50%);\n  color: white;\n  border-radius: 3px;\n  padding-left: 4px;\n  padding-right: 4px;\n  padding-top: 1px;\n  padding-bottom: 1px;\n  text-align: center;\n  font-size: var(--jp-ui-font-size1);\n  white-space: nowrap;\n}\n\n.jp-CodeMirror-ruler {\n  border-left: 1px dashed var(--jp-border-color2);\n}\n\n/**\n * Here is our jupyter theme for CodeMirror syntax highlighting\n * This is used in our marked.js syntax highlighting and CodeMirror itself\n * The string \"jupyter\" is set in ../codemirror/widget.DEFAULT_CODEMIRROR_THEME\n * This came from the classic notebook, which came form highlight.js/GitHub\n */\n\n/**\n * CodeMirror themes are handling the background/color in this way. This works\n * fine for CodeMirror editors outside the notebook, but the notebook styles\n * these things differently.\n */\n.CodeMirror.cm-s-jupyter {\n  background: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* In the notebook, we want this styling to be handled by its container */\n.jp-CodeConsole .CodeMirror.cm-s-jupyter,\n.jp-Notebook .CodeMirror.cm-s-jupyter {\n  background: transparent;\n}\n\n.cm-s-jupyter .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n.cm-s-jupyter span.cm-keyword {\n  color: var(--jp-mirror-editor-keyword-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-atom {\n  color: var(--jp-mirror-editor-atom-color);\n}\n.cm-s-jupyter span.cm-number {\n  color: var(--jp-mirror-editor-number-color);\n}\n.cm-s-jupyter span.cm-def {\n  color: var(--jp-mirror-editor-def-color);\n}\n.cm-s-jupyter span.cm-variable {\n  color: var(--jp-mirror-editor-variable-color);\n}\n.cm-s-jupyter span.cm-variable-2 {\n  color: var(--jp-mirror-editor-variable-2-color);\n}\n.cm-s-jupyter span.cm-variable-3 {\n  color: var(--jp-mirror-editor-variable-3-color);\n}\n.cm-s-jupyter span.cm-punctuation {\n  color: var(--jp-mirror-editor-punctuation-color);\n}\n.cm-s-jupyter span.cm-property {\n  color: var(--jp-mirror-editor-property-color);\n}\n.cm-s-jupyter span.cm-operator {\n  color: var(--jp-mirror-editor-operator-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-comment {\n  color: var(--jp-mirror-editor-comment-color);\n  font-style: italic;\n}\n.cm-s-jupyter span.cm-string {\n  color: var(--jp-mirror-editor-string-color);\n}\n.cm-s-jupyter span.cm-string-2 {\n  color: var(--jp-mirror-editor-string-2-color);\n}\n.cm-s-jupyter span.cm-meta {\n  color: var(--jp-mirror-editor-meta-color);\n}\n.cm-s-jupyter span.cm-qualifier {\n  color: var(--jp-mirror-editor-qualifier-color);\n}\n.cm-s-jupyter span.cm-builtin {\n  color: var(--jp-mirror-editor-builtin-color);\n}\n.cm-s-jupyter span.cm-bracket {\n  color: var(--jp-mirror-editor-bracket-color);\n}\n.cm-s-jupyter span.cm-tag {\n  color: var(--jp-mirror-editor-tag-color);\n}\n.cm-s-jupyter span.cm-attribute {\n  color: var(--jp-mirror-editor-attribute-color);\n}\n.cm-s-jupyter span.cm-header {\n  color: var(--jp-mirror-editor-header-color);\n}\n.cm-s-jupyter span.cm-quote {\n  color: var(--jp-mirror-editor-quote-color);\n}\n.cm-s-jupyter span.cm-link {\n  color: var(--jp-mirror-editor-link-color);\n}\n.cm-s-jupyter span.cm-error {\n  color: var(--jp-mirror-editor-error-color);\n}\n.cm-s-jupyter span.cm-hr {\n  color: #999;\n}\n\n.cm-s-jupyter span.cm-tab {\n  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);\n  background-position: right;\n  background-repeat: no-repeat;\n}\n\n.cm-s-jupyter .CodeMirror-activeline-background,\n.cm-s-jupyter .CodeMirror-gutter {\n  background-color: var(--jp-layout-color2);\n}\n\n/* Styles for shared cursors (remote cursor locations and selected ranges) */\n.jp-CodeMirrorEditor .remote-caret {\n  position: relative;\n  border-left: 2px solid black;\n  margin-left: -1px;\n  margin-right: -1px;\n  box-sizing: border-box;\n}\n\n.jp-CodeMirrorEditor .remote-caret > div {\n  white-space: nowrap;\n  position: absolute;\n  top: -1.15em;\n  padding-bottom: 0.05em;\n  left: -2px;\n  font-size: 0.95em;\n  background-color: rgb(250, 129, 0);\n  font-family: var(--jp-ui-font-family);\n  font-weight: bold;\n  line-height: normal;\n  user-select: none;\n  color: white;\n  padding-left: 2px;\n  padding-right: 2px;\n  z-index: 3;\n  transition: opacity 0.3s ease-in-out;\n}\n\n.jp-CodeMirrorEditor .remote-caret.hide-name > div {\n  transition-delay: 0.7s;\n  opacity: 0;\n}\n\n.jp-CodeMirrorEditor .remote-caret:hover > div {\n  opacity: 1;\n  transition-delay: 0s;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| RenderedText\n|----------------------------------------------------------------------------*/\n\n:root {\n  /* This is the padding value to fill the gaps between lines containing spans with background color. */\n  --jp-private-code-span-padding: calc(\n    (var(--jp-code-line-height) - 1) * var(--jp-code-font-size) / 2\n  );\n}\n\n.jp-RenderedText {\n  text-align: left;\n  padding-left: var(--jp-code-padding);\n  line-height: var(--jp-code-line-height);\n  font-family: var(--jp-code-font-family);\n}\n\n.jp-RenderedText pre,\n.jp-RenderedJavaScript pre,\n.jp-RenderedHTMLCommon pre {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-code-font-size);\n  border: none;\n  margin: 0px;\n  padding: 0px;\n}\n\n.jp-RenderedText pre a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* console foregrounds and backgrounds */\n.jp-RenderedText pre .ansi-black-fg {\n  color: #3e424d;\n}\n.jp-RenderedText pre .ansi-red-fg {\n  color: #e75c58;\n}\n.jp-RenderedText pre .ansi-green-fg {\n  color: #00a250;\n}\n.jp-RenderedText pre .ansi-yellow-fg {\n  color: #ddb62b;\n}\n.jp-RenderedText pre .ansi-blue-fg {\n  color: #208ffb;\n}\n.jp-RenderedText pre .ansi-magenta-fg {\n  color: #d160c4;\n}\n.jp-RenderedText pre .ansi-cyan-fg {\n  color: #60c6c8;\n}\n.jp-RenderedText pre .ansi-white-fg {\n  color: #c5c1b4;\n}\n\n.jp-RenderedText pre .ansi-black-bg {\n  background-color: #3e424d;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-bg {\n  background-color: #e75c58;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-bg {\n  background-color: #00a250;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-bg {\n  background-color: #ddb62b;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-bg {\n  background-color: #208ffb;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-bg {\n  background-color: #d160c4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-bg {\n  background-color: #60c6c8;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-bg {\n  background-color: #c5c1b4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-black-intense-fg {\n  color: #282c36;\n}\n.jp-RenderedText pre .ansi-red-intense-fg {\n  color: #b22b31;\n}\n.jp-RenderedText pre .ansi-green-intense-fg {\n  color: #007427;\n}\n.jp-RenderedText pre .ansi-yellow-intense-fg {\n  color: #b27d12;\n}\n.jp-RenderedText pre .ansi-blue-intense-fg {\n  color: #0065ca;\n}\n.jp-RenderedText pre .ansi-magenta-intense-fg {\n  color: #a03196;\n}\n.jp-RenderedText pre .ansi-cyan-intense-fg {\n  color: #258f8f;\n}\n.jp-RenderedText pre .ansi-white-intense-fg {\n  color: #a1a6b2;\n}\n\n.jp-RenderedText pre .ansi-black-intense-bg {\n  background-color: #282c36;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-intense-bg {\n  background-color: #b22b31;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-intense-bg {\n  background-color: #007427;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-intense-bg {\n  background-color: #b27d12;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-intense-bg {\n  background-color: #0065ca;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-intense-bg {\n  background-color: #a03196;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-intense-bg {\n  background-color: #258f8f;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-intense-bg {\n  background-color: #a1a6b2;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-default-inverse-fg {\n  color: var(--jp-ui-inverse-font-color0);\n}\n.jp-RenderedText pre .ansi-default-inverse-bg {\n  background-color: var(--jp-inverse-layout-color0);\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-bold {\n  font-weight: bold;\n}\n.jp-RenderedText pre .ansi-underline {\n  text-decoration: underline;\n}\n\n.jp-RenderedText[data-mime-type='application/vnd.jupyter.stderr'] {\n  background: var(--jp-rendermime-error-background);\n  padding-top: var(--jp-code-padding);\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedLatex\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedLatex {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n}\n\n/* Left-justify outputs.*/\n.jp-OutputArea-output.jp-RenderedLatex {\n  padding: var(--jp-code-padding);\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedHTML\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedHTMLCommon {\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-content-font-family);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n  /* Give a bit more R padding on Markdown text to keep line lengths reasonable */\n  padding-right: 20px;\n}\n\n.jp-RenderedHTMLCommon em {\n  font-style: italic;\n}\n\n.jp-RenderedHTMLCommon strong {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon u {\n  text-decoration: underline;\n}\n\n.jp-RenderedHTMLCommon a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* Headings */\n\n.jp-RenderedHTMLCommon h1,\n.jp-RenderedHTMLCommon h2,\n.jp-RenderedHTMLCommon h3,\n.jp-RenderedHTMLCommon h4,\n.jp-RenderedHTMLCommon h5,\n.jp-RenderedHTMLCommon h6 {\n  line-height: var(--jp-content-heading-line-height);\n  font-weight: var(--jp-content-heading-font-weight);\n  font-style: normal;\n  margin: var(--jp-content-heading-margin-top) 0\n    var(--jp-content-heading-margin-bottom) 0;\n}\n\n.jp-RenderedHTMLCommon h1:first-child,\n.jp-RenderedHTMLCommon h2:first-child,\n.jp-RenderedHTMLCommon h3:first-child,\n.jp-RenderedHTMLCommon h4:first-child,\n.jp-RenderedHTMLCommon h5:first-child,\n.jp-RenderedHTMLCommon h6:first-child {\n  margin-top: calc(0.5 * var(--jp-content-heading-margin-top));\n}\n\n.jp-RenderedHTMLCommon h1:last-child,\n.jp-RenderedHTMLCommon h2:last-child,\n.jp-RenderedHTMLCommon h3:last-child,\n.jp-RenderedHTMLCommon h4:last-child,\n.jp-RenderedHTMLCommon h5:last-child,\n.jp-RenderedHTMLCommon h6:last-child {\n  margin-bottom: calc(0.5 * var(--jp-content-heading-margin-bottom));\n}\n\n.jp-RenderedHTMLCommon h1 {\n  font-size: var(--jp-content-font-size5);\n}\n\n.jp-RenderedHTMLCommon h2 {\n  font-size: var(--jp-content-font-size4);\n}\n\n.jp-RenderedHTMLCommon h3 {\n  font-size: var(--jp-content-font-size3);\n}\n\n.jp-RenderedHTMLCommon h4 {\n  font-size: var(--jp-content-font-size2);\n}\n\n.jp-RenderedHTMLCommon h5 {\n  font-size: var(--jp-content-font-size1);\n}\n\n.jp-RenderedHTMLCommon h6 {\n  font-size: var(--jp-content-font-size0);\n}\n\n/* Lists */\n\n.jp-RenderedHTMLCommon ul:not(.list-inline),\n.jp-RenderedHTMLCommon ol:not(.list-inline) {\n  padding-left: 2em;\n}\n\n.jp-RenderedHTMLCommon ul {\n  list-style: disc;\n}\n\n.jp-RenderedHTMLCommon ul ul {\n  list-style: square;\n}\n\n.jp-RenderedHTMLCommon ul ul ul {\n  list-style: circle;\n}\n\n.jp-RenderedHTMLCommon ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol ol {\n  list-style: upper-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol {\n  list-style: lower-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol {\n  list-style: lower-roman;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol,\n.jp-RenderedHTMLCommon ul {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon ul ul,\n.jp-RenderedHTMLCommon ul ol,\n.jp-RenderedHTMLCommon ol ul,\n.jp-RenderedHTMLCommon ol ol {\n  margin-bottom: 0em;\n}\n\n.jp-RenderedHTMLCommon hr {\n  color: var(--jp-border-color2);\n  background-color: var(--jp-border-color1);\n  margin-top: 1em;\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon > pre {\n  margin: 1.5em 2em;\n}\n\n.jp-RenderedHTMLCommon pre,\n.jp-RenderedHTMLCommon code {\n  border: 0;\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  line-height: var(--jp-code-line-height);\n  padding: 0;\n  white-space: pre-wrap;\n}\n\n.jp-RenderedHTMLCommon :not(pre) > code {\n  background-color: var(--jp-layout-color2);\n  padding: 1px 5px;\n}\n\n/* Tables */\n\n.jp-RenderedHTMLCommon table {\n  border-collapse: collapse;\n  border-spacing: 0;\n  border: none;\n  color: var(--jp-ui-font-color1);\n  font-size: 12px;\n  table-layout: fixed;\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.jp-RenderedHTMLCommon thead {\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  vertical-align: bottom;\n}\n\n.jp-RenderedHTMLCommon td,\n.jp-RenderedHTMLCommon th,\n.jp-RenderedHTMLCommon tr {\n  vertical-align: middle;\n  padding: 0.5em 0.5em;\n  line-height: normal;\n  white-space: normal;\n  max-width: none;\n  border: none;\n}\n\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon td,\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon th {\n  max-width: none;\n}\n\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon td,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon th,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon tr {\n  text-align: right;\n}\n\n.jp-RenderedHTMLCommon th {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(odd) {\n  background: var(--jp-layout-color0);\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(even) {\n  background: var(--jp-rendermime-table-row-background);\n}\n\n.jp-RenderedHTMLCommon tbody tr:hover {\n  background: var(--jp-rendermime-table-row-hover-background);\n}\n\n.jp-RenderedHTMLCommon table {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon p {\n  text-align: left;\n  margin: 0px;\n}\n\n.jp-RenderedHTMLCommon p {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon img {\n  -moz-force-broken-image-icon: 1;\n}\n\n/* Restrict to direct children as other images could be nested in other content. */\n.jp-RenderedHTMLCommon > img {\n  display: block;\n  margin-left: 0;\n  margin-right: 0;\n  margin-bottom: 1em;\n}\n\n/* Change color behind transparent images if they need it... */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-light-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-dark-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n/* ...or leave it untouched if they don't */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-dark-background {\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-light-background {\n}\n\n.jp-RenderedHTMLCommon img,\n.jp-RenderedImage img,\n.jp-RenderedHTMLCommon svg,\n.jp-RenderedSVG svg {\n  max-width: 100%;\n  height: auto;\n}\n\n.jp-RenderedHTMLCommon img.jp-mod-unconfined,\n.jp-RenderedImage img.jp-mod-unconfined,\n.jp-RenderedHTMLCommon svg.jp-mod-unconfined,\n.jp-RenderedSVG svg.jp-mod-unconfined {\n  max-width: none;\n}\n\n.jp-RenderedHTMLCommon .alert {\n  padding: var(--jp-notebook-padding);\n  border: var(--jp-border-width) solid transparent;\n  border-radius: var(--jp-border-radius);\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon .alert-info {\n  color: var(--jp-info-color0);\n  background-color: var(--jp-info-color3);\n  border-color: var(--jp-info-color2);\n}\n.jp-RenderedHTMLCommon .alert-info hr {\n  border-color: var(--jp-info-color3);\n}\n.jp-RenderedHTMLCommon .alert-info > p:last-child,\n.jp-RenderedHTMLCommon .alert-info > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-warning {\n  color: var(--jp-warn-color0);\n  background-color: var(--jp-warn-color3);\n  border-color: var(--jp-warn-color2);\n}\n.jp-RenderedHTMLCommon .alert-warning hr {\n  border-color: var(--jp-warn-color3);\n}\n.jp-RenderedHTMLCommon .alert-warning > p:last-child,\n.jp-RenderedHTMLCommon .alert-warning > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-success {\n  color: var(--jp-success-color0);\n  background-color: var(--jp-success-color3);\n  border-color: var(--jp-success-color2);\n}\n.jp-RenderedHTMLCommon .alert-success hr {\n  border-color: var(--jp-success-color3);\n}\n.jp-RenderedHTMLCommon .alert-success > p:last-child,\n.jp-RenderedHTMLCommon .alert-success > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-danger {\n  color: var(--jp-error-color0);\n  background-color: var(--jp-error-color3);\n  border-color: var(--jp-error-color2);\n}\n.jp-RenderedHTMLCommon .alert-danger hr {\n  border-color: var(--jp-error-color3);\n}\n.jp-RenderedHTMLCommon .alert-danger > p:last-child,\n.jp-RenderedHTMLCommon .alert-danger > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon blockquote {\n  margin: 1em 2em;\n  padding: 0 1em;\n  border-left: 5px solid var(--jp-border-color2);\n}\n\na.jp-InternalAnchorLink {\n  visibility: hidden;\n  margin-left: 8px;\n  color: var(--md-blue-800);\n}\n\nh1:hover .jp-InternalAnchorLink,\nh2:hover .jp-InternalAnchorLink,\nh3:hover .jp-InternalAnchorLink,\nh4:hover .jp-InternalAnchorLink,\nh5:hover .jp-InternalAnchorLink,\nh6:hover .jp-InternalAnchorLink {\n  visibility: visible;\n}\n\n.jp-RenderedHTMLCommon kbd {\n  background-color: var(--jp-rendermime-table-row-background);\n  border: 1px solid var(--jp-border-color0);\n  border-bottom-color: var(--jp-border-color2);\n  border-radius: 3px;\n  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n  display: inline-block;\n  font-size: 0.8em;\n  line-height: 1em;\n  padding: 0.2em 0.5em;\n}\n\n/* Most direct children of .jp-RenderedHTMLCommon have a margin-bottom of 1.0.\n * At the bottom of cells this is a bit too much as there is also spacing\n * between cells. Going all the way to 0 gets too tight between markdown and\n * code cells.\n */\n.jp-RenderedHTMLCommon > *:last-child {\n  margin-bottom: 0.5em;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MimeDocument {\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-filebrowser-button-height: 28px;\n  --jp-private-filebrowser-button-width: 48px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser {\n  display: flex;\n  flex-direction: column;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  border-bottom: none;\n  height: auto;\n  margin: var(--jp-toolbar-header-margin);\n  box-shadow: none;\n}\n\n.jp-BreadCrumbs {\n  flex: 0 0 auto;\n  margin: 8px 12px 8px 12px;\n}\n\n.jp-BreadCrumbs-item {\n  margin: 0px 2px;\n  padding: 0px 2px;\n  border-radius: var(--jp-border-radius);\n  cursor: pointer;\n}\n\n.jp-BreadCrumbs-item:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-BreadCrumbs-item:first-child {\n  margin-left: 0px;\n}\n\n.jp-BreadCrumbs-item.jp-mod-dropTarget {\n  background-color: var(--jp-brand-color2);\n  opacity: 0.7;\n}\n\n/*-----------------------------------------------------------------------------\n| Buttons\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  padding: 0px;\n  margin: 8px 12px 0px 12px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  justify-content: flex-start;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-Toolbar-item {\n  flex: 0 0 auto;\n  padding-left: 0px;\n  padding-right: 2px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-ToolbarButtonComponent {\n  width: 40px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent {\n  width: 72px;\n  background: var(--jp-brand-color1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent:focus-visible {\n  background-color: var(--jp-brand-color0);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent\n  .jp-icon3 {\n  fill: white;\n}\n\n/*-----------------------------------------------------------------------------\n| Other styles\n|----------------------------------------------------------------------------*/\n\n.jp-FileDialog.jp-mod-conflict input {\n  color: var(--jp-error-color1);\n}\n\n.jp-FileDialog .jp-new-name-title {\n  margin-top: 12px;\n}\n\n.jp-LastModified-hidden {\n  display: none;\n}\n\n.jp-FileBrowser-filterBox {\n  padding: 0px;\n  flex: 0 0 auto;\n  margin: 8px 12px 0px 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| DirListing\n|----------------------------------------------------------------------------*/\n\n.jp-DirListing {\n  flex: 1 1 auto;\n  display: flex;\n  flex-direction: column;\n  outline: 0;\n}\n\n.jp-DirListing:focus-visible {\n  border: 1px solid var(--jp-brand-color1);\n}\n\n.jp-DirListing-header {\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n  border-top: var(--jp-border-width) solid var(--jp-border-color2);\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  z-index: 2;\n}\n\n.jp-DirListing-headerItem {\n  padding: 4px 12px 2px 12px;\n  font-weight: 500;\n}\n\n.jp-DirListing-headerItem:hover {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-headerItem.jp-id-name {\n  flex: 1 0 84px;\n}\n\n.jp-DirListing-headerItem.jp-id-modified {\n  flex: 0 0 112px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n}\n\n.jp-id-narrow {\n  display: none;\n  flex: 0 0 5px;\n  padding: 4px 4px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n  color: var(--jp-border-color2);\n}\n\n.jp-DirListing-narrow .jp-id-narrow {\n  display: block;\n}\n\n.jp-DirListing-narrow .jp-id-modified,\n.jp-DirListing-narrow .jp-DirListing-itemModified {\n  display: none;\n}\n\n.jp-DirListing-headerItem.jp-mod-selected {\n  font-weight: 600;\n}\n\n/* increase specificity to override bundled default */\n.jp-DirListing-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-DirListing-content mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.jp-DirListing-content .jp-DirListing-item.jp-mod-selected mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n/* Style the directory listing content when a user drops a file to upload */\n.jp-DirListing.jp-mod-native-drop .jp-DirListing-content {\n  outline: 5px dashed rgba(128, 128, 128, 0.5);\n  outline-offset: -10px;\n  cursor: copy;\n}\n\n.jp-DirListing-item {\n  display: flex;\n  flex-direction: row;\n  padding: 4px 12px;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n.jp-DirListing-item[data-is-dot] {\n  opacity: 75%;\n}\n\n.jp-DirListing-item.jp-mod-selected {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.jp-DirListing-item.jp-mod-dropTarget {\n  background: var(--jp-brand-color3);\n}\n\n.jp-DirListing-item:hover:not(.jp-mod-selected) {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-itemIcon {\n  flex: 0 0 20px;\n  margin-right: 4px;\n}\n\n.jp-DirListing-itemText {\n  flex: 1 0 64px;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  user-select: none;\n}\n\n.jp-DirListing-itemModified {\n  flex: 0 0 125px;\n  text-align: right;\n}\n\n.jp-DirListing-editor {\n  flex: 1 0 64px;\n  outline: none;\n  border: none;\n}\n\n.jp-DirListing-item.jp-mod-running .jp-DirListing-itemIcon:before {\n  color: var(--jp-success-color1);\n  content: '\\25CF';\n  font-size: 8px;\n  position: absolute;\n  left: -8px;\n}\n\n.jp-DirListing-item.jp-mod-running.jp-mod-selected\n  .jp-DirListing-itemIcon:before {\n  color: var(--jp-ui-inverse-font-color1);\n}\n\n.jp-DirListing-item.lm-mod-drag-image,\n.jp-DirListing-item.jp-mod-selected.lm-mod-drag-image {\n  font-size: var(--jp-ui-font-size1);\n  padding-left: 4px;\n  margin-left: 4px;\n  width: 160px;\n  background-color: var(--jp-ui-inverse-font-color2);\n  box-shadow: var(--jp-elevation-z2);\n  border-radius: 0px;\n  color: var(--jp-ui-font-color1);\n  transform: translateX(-40%) translateY(-58%);\n}\n\n.jp-DirListing-deadSpace {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-Document {\n  min-width: 120px;\n  min-height: 120px;\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n}\n\n/*-----------------------------------------------------------------------------\n| Main OutputArea\n| OutputArea has a list of Outputs\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea {\n  overflow-y: auto;\n}\n\n.jp-OutputArea-child {\n  display: flex;\n  flex-direction: row;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child {\n  flex-direction: column;\n}\n\n.jp-OutputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-outprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n.jp-OutputArea-output {\n  height: auto;\n  overflow: auto;\n  user-select: text;\n  -moz-user-select: text;\n  -webkit-user-select: text;\n  -ms-user-select: text;\n}\n\n.jp-OutputArea-child .jp-OutputArea-output {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  margin-left: var(--jp-notebook-padding);\n}\n\n/**\n * Isolated output.\n */\n.jp-OutputArea-output.jp-mod-isolated {\n  width: 100%;\n  display: block;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n/* pre */\n\n.jp-OutputArea-output pre {\n  border: none;\n  margin: 0px;\n  padding: 0px;\n  overflow-x: auto;\n  overflow-y: auto;\n  word-break: break-all;\n  word-wrap: break-word;\n  white-space: pre-wrap;\n}\n\n/* tables */\n\n.jp-OutputArea-output.jp-RenderedHTMLCommon table {\n  margin-left: 0;\n  margin-right: 0;\n}\n\n/* description lists */\n\n.jp-OutputArea-output dl,\n.jp-OutputArea-output dt,\n.jp-OutputArea-output dd {\n  display: block;\n}\n\n.jp-OutputArea-output dl {\n  width: 100%;\n  overflow: hidden;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dt {\n  font-weight: bold;\n  float: left;\n  width: 20%;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dd {\n  float: left;\n  width: 80%;\n  padding: 0;\n  margin: 0;\n}\n\n/* Hide the gutter in case of\n *  - nested output areas (e.g. in the case of output widgets)\n *  - mirrored output areas\n */\n.jp-OutputArea .jp-OutputArea .jp-OutputArea-prompt {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| executeResult is added to any Output-result for the display of the object\n| returned by a cell\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  margin-left: 0px;\n  flex: 1 1 auto;\n}\n\n/* Text output with the Out[] prompt needs a top padding to match the\n * alignment of the Out[] prompt itself.\n */\n.jp-OutputArea-executeResult .jp-RenderedText.jp-OutputArea-output {\n  padding-top: var(--jp-code-padding);\n  border-top: var(--jp-border-width) solid transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| The Stdin output\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-stdin {\n  line-height: var(--jp-code-line-height);\n  padding-top: var(--jp-code-padding);\n  display: flex;\n}\n\n.jp-Stdin-prompt {\n  color: var(--jp-content-font-color0);\n  padding-right: var(--jp-code-padding);\n  vertical-align: baseline;\n  flex: 0 0 auto;\n}\n\n.jp-Stdin-input {\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  color: inherit;\n  background-color: inherit;\n  width: 42%;\n  min-width: 200px;\n  /* make sure input baseline aligns with prompt */\n  vertical-align: baseline;\n  /* padding + margin = 0.5em between prompt and cursor */\n  padding: 0em 0.25em;\n  margin: 0em 0.25em;\n  flex: 0 0 70%;\n}\n\n.jp-Stdin-input:focus {\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Output Area View\n|----------------------------------------------------------------------------*/\n\n.jp-LinkedOutputView .jp-OutputArea {\n  height: 100%;\n  display: block;\n}\n\n.jp-LinkedOutputView .jp-OutputArea-output:only-child {\n  height: 100%;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapser {\n  flex: 0 0 var(--jp-cell-collapser-width);\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n  border-radius: var(--jp-border-radius);\n  opacity: 1;\n}\n\n.jp-Collapser-child {\n  display: block;\n  width: 100%;\n  box-sizing: border-box;\n  /* height: 100% doesn't work because the height of its parent is computed from content */\n  position: absolute;\n  top: 0px;\n  bottom: 0px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Header/Footer\n|----------------------------------------------------------------------------*/\n\n/* Hidden by zero height by default */\n.jp-CellHeader,\n.jp-CellFooter {\n  height: 0px;\n  width: 100%;\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Input\n|----------------------------------------------------------------------------*/\n\n/* All input areas */\n.jp-InputArea {\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n}\n\nbody[data-format='mobile'] .jp-InputArea {\n  flex-direction: column;\n}\n\n.jp-InputArea-editor {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  /* This is the non-active, default styling */\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  border-radius: 0px;\n  background: var(--jp-cell-editor-background);\n}\n\nbody[data-format='mobile'] .jp-InputArea-editor {\n  margin-left: var(--jp-notebook-padding);\n}\n\n.jp-InputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-inprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  opacity: var(--jp-cell-prompt-opacity);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-InputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Placeholder {\n  display: flex;\n  flex-direction: row;\n  flex: 1 1 auto;\n}\n\n.jp-Placeholder-prompt {\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content {\n  flex: 1 1 auto;\n  border: none;\n  background: transparent;\n  height: 20px;\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon {\n  width: 32px;\n  height: 16px;\n  border: 1px solid transparent;\n  border-radius: var(--jp-border-radius);\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon:hover {\n  border: 1px solid var(--jp-border-color1);\n  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);\n  background-color: var(--jp-layout-color0);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-cell-scrolling-output-offset: 5px;\n}\n\n/*-----------------------------------------------------------------------------\n| Cell\n|----------------------------------------------------------------------------*/\n\n.jp-Cell {\n  padding: var(--jp-cell-padding);\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Common input/output\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-inputWrapper,\n.jp-Cell-outputWrapper {\n  display: flex;\n  flex-direction: row;\n  padding: 0px;\n  margin: 0px;\n  /* Added to reveal the box-shadow on the input and output collapsers. */\n  overflow: visible;\n}\n\n/* Only input/output areas inside cells */\n.jp-Cell-inputArea,\n.jp-Cell-outputArea {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Collapser\n|----------------------------------------------------------------------------*/\n\n/* Make the output collapser disappear when there is not output, but do so\n * in a manner that leaves it in the layout and preserves its width.\n */\n.jp-Cell.jp-mod-noOutputs .jp-Cell-outputCollapser {\n  border: none !important;\n  background: transparent !important;\n}\n\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputCollapser {\n  min-height: var(--jp-cell-collapser-min-height);\n}\n\n/*-----------------------------------------------------------------------------\n| Output\n|----------------------------------------------------------------------------*/\n\n/* Put a space between input and output when there IS output */\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputWrapper {\n  margin-top: 5px;\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-Cell-outputArea {\n  overflow-y: auto;\n  max-height: 200px;\n  box-shadow: inset 0 0 6px 2px rgba(0, 0, 0, 0.3);\n  margin-left: var(--jp-private-cell-scrolling-output-offset);\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  flex: 0 0\n    calc(\n      var(--jp-cell-prompt-width) -\n        var(--jp-private-cell-scrolling-output-offset)\n    );\n}\n\n/*-----------------------------------------------------------------------------\n| CodeCell\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| MarkdownCell\n|----------------------------------------------------------------------------*/\n\n.jp-MarkdownOutput {\n  flex: 1 1 auto;\n  margin-top: 0;\n  margin-bottom: 0;\n  padding-left: var(--jp-code-padding);\n}\n\n.jp-MarkdownOutput.jp-RenderedHTMLCommon {\n  overflow: auto;\n}\n\n.jp-showHiddenCellsButton {\n  margin-left: calc(var(--jp-cell-prompt-width) + 2 * var(--jp-code-padding));\n  margin-top: var(--jp-code-padding);\n  border: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-border-color3) !important;\n  color: var(--jp-content-font-color0) !important;\n}\n\n.jp-showHiddenCellsButton:hover {\n  background-color: var(--jp-border-color2) !important;\n}\n\n.jp-collapseHeadingButton {\n  display: none;\n}\n\n.jp-MarkdownCell:hover .jp-collapseHeadingButton {\n  display: flex;\n  min-height: var(--jp-cell-collapser-min-height);\n  position: absolute;\n  right: 0;\n  top: 0;\n  bottom: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n\n/*-----------------------------------------------------------------------------\n| Styles\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel-toolbar {\n  padding: 2px;\n}\n\n.jp-Toolbar-item.jp-Notebook-toolbarCellType .jp-select-wrapper.jp-mod-focused {\n  border: none;\n  box-shadow: none;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown select {\n  height: 24px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: 14px;\n  border-radius: 0;\n  display: block;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown span {\n  top: 5px !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-notebook-dragImage-width: 304px;\n  --jp-private-notebook-dragImage-height: 36px;\n  --jp-private-notebook-selected-color: var(--md-blue-400);\n  --jp-private-notebook-active-color: var(--md-green-400);\n}\n\n/*-----------------------------------------------------------------------------\n| Imports\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Notebook\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel {\n  display: block;\n  height: 100%;\n}\n\n.jp-NotebookPanel.jp-Document {\n  min-width: 240px;\n  min-height: 120px;\n}\n\n.jp-Notebook {\n  padding: var(--jp-notebook-padding);\n  outline: none;\n  overflow: auto;\n  background: var(--jp-layout-color0);\n}\n\n.jp-Notebook.jp-mod-scrollPastEnd::after {\n  display: block;\n  content: '';\n  min-height: var(--jp-notebook-scroll-padding);\n}\n\n.jp-MainAreaWidget-ContainStrict .jp-Notebook * {\n  contain: strict;\n}\n\n.jp-Notebook-render * {\n  contain: none !important;\n}\n\n.jp-Notebook .jp-Cell {\n  overflow: visible;\n}\n\n.jp-Notebook .jp-Cell .jp-InputPrompt {\n  cursor: move;\n  float: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook state related styling\n|\n| The notebook and cells each have states, here are the possibilities:\n|\n| - Notebook\n|   - Command\n|   - Edit\n| - Cell\n|   - None\n|   - Active (only one can be active)\n|   - Selected (the cells actions are applied to)\n|   - Multiselected (when multiple selected, the cursor)\n|   - No outputs\n|----------------------------------------------------------------------------*/\n\n/* Command or edit modes */\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-InputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-OutputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n/* cell is active */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser {\n  background: var(--jp-brand-color1);\n}\n\n/* cell is dirty */\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt {\n  color: var(--jp-warn-color1);\n}\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt:before {\n  color: var(--jp-warn-color1);\n  content: '•';\n}\n\n.jp-Notebook .jp-Cell.jp-mod-active.jp-mod-dirty .jp-Collapser {\n  background: var(--jp-warn-color1);\n}\n\n/* collapser is hovered */\n.jp-Notebook .jp-Cell .jp-Collapser:hover {\n  box-shadow: var(--jp-elevation-z2);\n  background: var(--jp-brand-color1);\n  opacity: var(--jp-cell-collapser-not-active-hover-opacity);\n}\n\n/* cell is active and collapser is hovered */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser:hover {\n  background: var(--jp-brand-color0);\n  opacity: 1;\n}\n\n/* Command mode */\n\n.jp-Notebook.jp-mod-commandMode .jp-Cell.jp-mod-selected {\n  background: var(--jp-notebook-multiselected-color);\n}\n\n.jp-Notebook.jp-mod-commandMode\n  .jp-Cell.jp-mod-active.jp-mod-selected:not(.jp-mod-multiSelected) {\n  background: transparent;\n}\n\n/* Edit mode */\n\n.jp-Notebook.jp-mod-editMode .jp-Cell.jp-mod-active .jp-InputArea-editor {\n  border: var(--jp-border-width) solid var(--jp-cell-editor-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-cell-editor-active-background);\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook drag and drop\n|----------------------------------------------------------------------------*/\n\n.jp-Notebook-cell.jp-mod-dropSource {\n  opacity: 0.5;\n}\n\n.jp-Notebook-cell.jp-mod-dropTarget,\n.jp-Notebook.jp-mod-commandMode\n  .jp-Notebook-cell.jp-mod-active.jp-mod-selected.jp-mod-dropTarget {\n  border-top-color: var(--jp-private-notebook-selected-color);\n  border-top-style: solid;\n  border-top-width: 2px;\n}\n\n.jp-dragImage {\n  display: block;\n  flex-direction: row;\n  width: var(--jp-private-notebook-dragImage-width);\n  height: var(--jp-private-notebook-dragImage-height);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background);\n  overflow: visible;\n}\n\n.jp-dragImage-singlePrompt {\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n.jp-dragImage .jp-dragImage-content {\n  flex: 1 1 auto;\n  z-index: 2;\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  line-height: var(--jp-code-line-height);\n  padding: var(--jp-code-padding);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background-color);\n  color: var(--jp-content-font-color3);\n  text-align: left;\n  margin: 4px 4px 4px 0px;\n}\n\n.jp-dragImage .jp-dragImage-prompt {\n  flex: 0 0 auto;\n  min-width: 36px;\n  color: var(--jp-cell-inprompt-font-color);\n  padding: var(--jp-code-padding);\n  padding-left: 12px;\n  font-family: var(--jp-cell-prompt-font-family);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: 1.9;\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n}\n\n.jp-dragImage-multipleBack {\n  z-index: -1;\n  position: absolute;\n  height: 32px;\n  width: 300px;\n  top: 8px;\n  left: 8px;\n  background: var(--jp-layout-color2);\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n/*-----------------------------------------------------------------------------\n| Cell toolbar\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookTools {\n  display: block;\n  min-width: var(--jp-sidebar-min-width);\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n    * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  overflow: auto;\n}\n\n.jp-NotebookTools-tool {\n  padding: 0px 12px 0 12px;\n}\n\n.jp-ActiveCellTool {\n  padding: 12px;\n  background-color: var(--jp-layout-color1);\n  border-top: none !important;\n}\n\n.jp-ActiveCellTool .jp-InputArea-prompt {\n  flex: 0 0 auto;\n  padding-left: 0px;\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor {\n  flex: 1 1 auto;\n  background: var(--jp-cell-editor-background);\n  border-color: var(--jp-cell-editor-border-color);\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor .CodeMirror {\n  background: transparent;\n}\n\n.jp-MetadataEditorTool {\n  flex-direction: column;\n  padding: 12px 0px 12px 0px;\n}\n\n.jp-RankedPanel > :not(:first-child) {\n  margin-top: 12px;\n}\n\n.jp-KeySelector select.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n}\n\n.jp-KeySelector label,\n.jp-MetadataEditorTool label {\n  line-height: 1.4;\n}\n\n.jp-NotebookTools .jp-select-wrapper {\n  margin-top: 4px;\n  margin-bottom: 0px;\n}\n\n.jp-NotebookTools .jp-Collapse {\n  margin-top: 16px;\n}\n\n/*-----------------------------------------------------------------------------\n| Presentation Mode (.jp-mod-presentationMode)\n|----------------------------------------------------------------------------*/\n\n.jp-mod-presentationMode .jp-Notebook {\n  --jp-content-font-size1: var(--jp-content-presentation-font-size1);\n  --jp-code-font-size: var(--jp-code-presentation-font-size);\n}\n\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-InputPrompt,\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-OutputPrompt {\n  flex: 0 0 110px;\n}\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-Placeholder {\n  padding-left: 55px;\n}\n\n.jp-Cell-Placeholder-wrapper {\n  background: #fff;\n  border: 1px solid;\n  border-color: #e5e6e9 #dfe0e4 #d0d1d5;\n  border-radius: 4px;\n  -webkit-border-radius: 4px;\n  margin: 10px 15px;\n}\n\n.jp-Cell-Placeholder-wrapper-inner {\n  padding: 15px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body {\n  background-repeat: repeat;\n  background-size: 50% auto;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  background: #f6f7f8;\n  background-image: -webkit-linear-gradient(\n    left,\n    #f6f7f8 0%,\n    #edeef1 20%,\n    #f6f7f8 40%,\n    #f6f7f8 100%\n  );\n  background-repeat: no-repeat;\n  background-size: 800px 104px;\n  height: 104px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  position: absolute;\n  right: 15px;\n  left: 15px;\n  top: 15px;\n}\n\ndiv.jp-Cell-Placeholder-h1 {\n  top: 20px;\n  height: 20px;\n  left: 15px;\n  width: 150px;\n}\n\ndiv.jp-Cell-Placeholder-h2 {\n  left: 15px;\n  top: 50px;\n  height: 10px;\n  width: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-1,\ndiv.jp-Cell-Placeholder-content-2,\ndiv.jp-Cell-Placeholder-content-3 {\n  left: 15px;\n  right: 15px;\n  height: 10px;\n}\n\ndiv.jp-Cell-Placeholder-content-1 {\n  top: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-2 {\n  top: 120px;\n}\n\ndiv.jp-Cell-Placeholder-content-3 {\n  top: 140px;\n}\n\n</style>\n\n    <style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\nThe following CSS variables define the main, public API for styling JupyterLab.\nThese variables should be used by all plugins wherever possible. In other\nwords, plugins should not define custom colors, sizes, etc unless absolutely\nnecessary. This enables users to change the visual theme of JupyterLab\nby changing these variables.\n\nMany variables appear in an ordered sequence (0,1,2,3). These sequences\nare designed to work well together, so for example, `--jp-border-color1` should\nbe used with `--jp-layout-color1`. The numbers have the following meanings:\n\n* 0: super-primary, reserved for special emphasis\n* 1: primary, most important under normal situations\n* 2: secondary, next most important under normal situations\n* 3: tertiary, next most important under normal situations\n\nThroughout JupyterLab, we are mostly following principles from Google's\nMaterial Design when selecting colors. We are not, however, following\nall of MD as it is not optimized for dense, information rich UIs.\n*/\n\n:root {\n  /* Elevation\n   *\n   * We style box-shadows using Material Design's idea of elevation. These particular numbers are taken from here:\n   *\n   * https://github.com/material-components/material-components-web\n   * https://material-components-web.appspot.com/elevation.html\n   */\n\n  --jp-shadow-base-lightness: 0;\n  --jp-shadow-umbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.2\n  );\n  --jp-shadow-penumbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.14\n  );\n  --jp-shadow-ambient-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.12\n  );\n  --jp-elevation-z0: none;\n  --jp-elevation-z1: 0px 2px 1px -1px var(--jp-shadow-umbra-color),\n    0px 1px 1px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 3px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z2: 0px 3px 1px -2px var(--jp-shadow-umbra-color),\n    0px 2px 2px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 5px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z4: 0px 2px 4px -1px var(--jp-shadow-umbra-color),\n    0px 4px 5px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 10px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z6: 0px 3px 5px -1px var(--jp-shadow-umbra-color),\n    0px 6px 10px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 18px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z8: 0px 5px 5px -3px var(--jp-shadow-umbra-color),\n    0px 8px 10px 1px var(--jp-shadow-penumbra-color),\n    0px 3px 14px 2px var(--jp-shadow-ambient-color);\n  --jp-elevation-z12: 0px 7px 8px -4px var(--jp-shadow-umbra-color),\n    0px 12px 17px 2px var(--jp-shadow-penumbra-color),\n    0px 5px 22px 4px var(--jp-shadow-ambient-color);\n  --jp-elevation-z16: 0px 8px 10px -5px var(--jp-shadow-umbra-color),\n    0px 16px 24px 2px var(--jp-shadow-penumbra-color),\n    0px 6px 30px 5px var(--jp-shadow-ambient-color);\n  --jp-elevation-z20: 0px 10px 13px -6px var(--jp-shadow-umbra-color),\n    0px 20px 31px 3px var(--jp-shadow-penumbra-color),\n    0px 8px 38px 7px var(--jp-shadow-ambient-color);\n  --jp-elevation-z24: 0px 11px 15px -7px var(--jp-shadow-umbra-color),\n    0px 24px 38px 3px var(--jp-shadow-penumbra-color),\n    0px 9px 46px 8px var(--jp-shadow-ambient-color);\n\n  /* Borders\n   *\n   * The following variables, specify the visual styling of borders in JupyterLab.\n   */\n\n  --jp-border-width: 1px;\n  --jp-border-color0: var(--md-grey-400);\n  --jp-border-color1: var(--md-grey-400);\n  --jp-border-color2: var(--md-grey-300);\n  --jp-border-color3: var(--md-grey-200);\n  --jp-border-radius: 2px;\n\n  /* UI Fonts\n   *\n   * The UI font CSS variables are used for the typography all of the JupyterLab\n   * user interface elements that are not directly user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-ui-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-ui-font-scale-factor: 1.2;\n  --jp-ui-font-size0: 0.83333em;\n  --jp-ui-font-size1: 13px; /* Base font size */\n  --jp-ui-font-size2: 1.2em;\n  --jp-ui-font-size3: 1.44em;\n\n  --jp-ui-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica,\n    Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';\n\n  /*\n   * Use these font colors against the corresponding main layout colors.\n   * In a light theme, these go from dark to light.\n   */\n\n  /* Defaults use Material Design specification */\n  --jp-ui-font-color0: rgba(0, 0, 0, 1);\n  --jp-ui-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-ui-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-ui-font-color3: rgba(0, 0, 0, 0.38);\n\n  /*\n   * Use these against the brand/accent/warn/error colors.\n   * These will typically go from light to darker, in both a dark and light theme.\n   */\n\n  --jp-ui-inverse-font-color0: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color1: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color2: rgba(255, 255, 255, 0.7);\n  --jp-ui-inverse-font-color3: rgba(255, 255, 255, 0.5);\n\n  /* Content Fonts\n   *\n   * Content font variables are used for typography of user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-content-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-content-line-height: 1.6;\n  --jp-content-font-scale-factor: 1.2;\n  --jp-content-font-size0: 0.83333em;\n  --jp-content-font-size1: 14px; /* Base font size */\n  --jp-content-font-size2: 1.2em;\n  --jp-content-font-size3: 1.44em;\n  --jp-content-font-size4: 1.728em;\n  --jp-content-font-size5: 2.0736em;\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-content-presentation-font-size1: 17px;\n\n  --jp-content-heading-line-height: 1;\n  --jp-content-heading-margin-top: 1.2em;\n  --jp-content-heading-margin-bottom: 0.8em;\n  --jp-content-heading-font-weight: 500;\n\n  /* Defaults use Material Design specification */\n  --jp-content-font-color0: rgba(0, 0, 0, 1);\n  --jp-content-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-content-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-content-font-color3: rgba(0, 0, 0, 0.38);\n\n  --jp-content-link-color: var(--md-blue-700);\n\n  --jp-content-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',\n    Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',\n    'Segoe UI Symbol';\n\n  /*\n   * Code Fonts\n   *\n   * Code font variables are used for typography of code and other monospaces content.\n   */\n\n  --jp-code-font-size: 13px;\n  --jp-code-line-height: 1.3077; /* 17px for 13px base */\n  --jp-code-padding: 5px; /* 5px for 13px base, codemirror highlighting needs integer px value */\n  --jp-code-font-family-default: Menlo, Consolas, 'DejaVu Sans Mono', monospace;\n  --jp-code-font-family: var(--jp-code-font-family-default);\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-code-presentation-font-size: 16px;\n\n  /* may need to tweak cursor width if you change font size */\n  --jp-code-cursor-width0: 1.4px;\n  --jp-code-cursor-width1: 2px;\n  --jp-code-cursor-width2: 4px;\n\n  /* Layout\n   *\n   * The following are the main layout colors use in JupyterLab. In a light\n   * theme these would go from light to dark.\n   */\n\n  --jp-layout-color0: white;\n  --jp-layout-color1: white;\n  --jp-layout-color2: var(--md-grey-200);\n  --jp-layout-color3: var(--md-grey-400);\n  --jp-layout-color4: var(--md-grey-600);\n\n  /* Inverse Layout\n   *\n   * The following are the inverse layout colors use in JupyterLab. In a light\n   * theme these would go from dark to light.\n   */\n\n  --jp-inverse-layout-color0: #111111;\n  --jp-inverse-layout-color1: var(--md-grey-900);\n  --jp-inverse-layout-color2: var(--md-grey-800);\n  --jp-inverse-layout-color3: var(--md-grey-700);\n  --jp-inverse-layout-color4: var(--md-grey-600);\n\n  /* Brand/accent */\n\n  --jp-brand-color0: var(--md-blue-900);\n  --jp-brand-color1: var(--md-blue-700);\n  --jp-brand-color2: var(--md-blue-300);\n  --jp-brand-color3: var(--md-blue-100);\n  --jp-brand-color4: var(--md-blue-50);\n\n  --jp-accent-color0: var(--md-green-900);\n  --jp-accent-color1: var(--md-green-700);\n  --jp-accent-color2: var(--md-green-300);\n  --jp-accent-color3: var(--md-green-100);\n\n  /* State colors (warn, error, success, info) */\n\n  --jp-warn-color0: var(--md-orange-900);\n  --jp-warn-color1: var(--md-orange-700);\n  --jp-warn-color2: var(--md-orange-300);\n  --jp-warn-color3: var(--md-orange-100);\n\n  --jp-error-color0: var(--md-red-900);\n  --jp-error-color1: var(--md-red-700);\n  --jp-error-color2: var(--md-red-300);\n  --jp-error-color3: var(--md-red-100);\n\n  --jp-success-color0: var(--md-green-900);\n  --jp-success-color1: var(--md-green-700);\n  --jp-success-color2: var(--md-green-300);\n  --jp-success-color3: var(--md-green-100);\n\n  --jp-info-color0: var(--md-cyan-900);\n  --jp-info-color1: var(--md-cyan-700);\n  --jp-info-color2: var(--md-cyan-300);\n  --jp-info-color3: var(--md-cyan-100);\n\n  /* Cell specific styles */\n\n  --jp-cell-padding: 5px;\n\n  --jp-cell-collapser-width: 8px;\n  --jp-cell-collapser-min-height: 20px;\n  --jp-cell-collapser-not-active-hover-opacity: 0.6;\n\n  --jp-cell-editor-background: var(--md-grey-100);\n  --jp-cell-editor-border-color: var(--md-grey-300);\n  --jp-cell-editor-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-cell-editor-active-background: var(--jp-layout-color0);\n  --jp-cell-editor-active-border-color: var(--jp-brand-color1);\n\n  --jp-cell-prompt-width: 64px;\n  --jp-cell-prompt-font-family: var(--jp-code-font-family-default);\n  --jp-cell-prompt-letter-spacing: 0px;\n  --jp-cell-prompt-opacity: 1;\n  --jp-cell-prompt-not-active-opacity: 0.5;\n  --jp-cell-prompt-not-active-font-color: var(--md-grey-700);\n  /* A custom blend of MD grey and blue 600\n   * See https://meyerweb.com/eric/tools/color-blend/#546E7A:1E88E5:5:hex */\n  --jp-cell-inprompt-font-color: #307fc1;\n  /* A custom blend of MD grey and orange 600\n   * https://meyerweb.com/eric/tools/color-blend/#546E7A:F4511E:5:hex */\n  --jp-cell-outprompt-font-color: #bf5b3d;\n\n  /* Notebook specific styles */\n\n  --jp-notebook-padding: 10px;\n  --jp-notebook-select-background: var(--jp-layout-color1);\n  --jp-notebook-multiselected-color: var(--md-blue-50);\n\n  /* The scroll padding is calculated to fill enough space at the bottom of the\n  notebook to show one single-line cell (with appropriate padding) at the top\n  when the notebook is scrolled all the way to the bottom. We also subtract one\n  pixel so that no scrollbar appears if we have just one single-line cell in the\n  notebook. This padding is to enable a 'scroll past end' feature in a notebook.\n  */\n  --jp-notebook-scroll-padding: calc(\n    100% - var(--jp-code-font-size) * var(--jp-code-line-height) -\n      var(--jp-code-padding) - var(--jp-cell-padding) - 1px\n  );\n\n  /* Rendermime styles */\n\n  --jp-rendermime-error-background: #fdd;\n  --jp-rendermime-table-row-background: var(--md-grey-100);\n  --jp-rendermime-table-row-hover-background: var(--md-light-blue-50);\n\n  /* Dialog specific styles */\n\n  --jp-dialog-background: rgba(0, 0, 0, 0.25);\n\n  /* Console specific styles */\n\n  --jp-console-padding: 10px;\n\n  /* Toolbar specific styles */\n\n  --jp-toolbar-border-color: var(--jp-border-color1);\n  --jp-toolbar-micro-height: 8px;\n  --jp-toolbar-background: var(--jp-layout-color1);\n  --jp-toolbar-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.24);\n  --jp-toolbar-header-margin: 4px 4px 0px 4px;\n  --jp-toolbar-active-background: var(--md-grey-300);\n\n  /* Statusbar specific styles */\n\n  --jp-statusbar-height: 24px;\n\n  /* Input field styles */\n\n  --jp-input-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-input-active-background: var(--jp-layout-color1);\n  --jp-input-hover-background: var(--jp-layout-color1);\n  --jp-input-background: var(--md-grey-100);\n  --jp-input-border-color: var(--jp-border-color1);\n  --jp-input-active-border-color: var(--jp-brand-color1);\n  --jp-input-active-box-shadow-color: rgba(19, 124, 189, 0.3);\n\n  /* General editor styles */\n\n  --jp-editor-selected-background: #d9d9d9;\n  --jp-editor-selected-focused-background: #d7d4f0;\n  --jp-editor-cursor-color: var(--jp-ui-font-color0);\n\n  /* Code mirror specific styles */\n\n  --jp-mirror-editor-keyword-color: #008000;\n  --jp-mirror-editor-atom-color: #88f;\n  --jp-mirror-editor-number-color: #080;\n  --jp-mirror-editor-def-color: #00f;\n  --jp-mirror-editor-variable-color: var(--md-grey-900);\n  --jp-mirror-editor-variable-2-color: #05a;\n  --jp-mirror-editor-variable-3-color: #085;\n  --jp-mirror-editor-punctuation-color: #05a;\n  --jp-mirror-editor-property-color: #05a;\n  --jp-mirror-editor-operator-color: #aa22ff;\n  --jp-mirror-editor-comment-color: #408080;\n  --jp-mirror-editor-string-color: #ba2121;\n  --jp-mirror-editor-string-2-color: #708;\n  --jp-mirror-editor-meta-color: #aa22ff;\n  --jp-mirror-editor-qualifier-color: #555;\n  --jp-mirror-editor-builtin-color: #008000;\n  --jp-mirror-editor-bracket-color: #997;\n  --jp-mirror-editor-tag-color: #170;\n  --jp-mirror-editor-attribute-color: #00c;\n  --jp-mirror-editor-header-color: blue;\n  --jp-mirror-editor-quote-color: #090;\n  --jp-mirror-editor-link-color: #00c;\n  --jp-mirror-editor-error-color: #f00;\n  --jp-mirror-editor-hr-color: #999;\n\n  /* Vega extension styles */\n\n  --jp-vega-background: white;\n\n  /* Sidebar-related styles */\n\n  --jp-sidebar-min-width: 250px;\n\n  /* Search-related styles */\n\n  --jp-search-toggle-off-opacity: 0.5;\n  --jp-search-toggle-hover-opacity: 0.8;\n  --jp-search-toggle-on-opacity: 1;\n  --jp-search-selected-match-background-color: rgb(245, 200, 0);\n  --jp-search-selected-match-color: black;\n  --jp-search-unselected-match-background-color: var(\n    --jp-inverse-layout-color0\n  );\n  --jp-search-unselected-match-color: var(--jp-ui-inverse-font-color0);\n\n  /* Icon colors that work well with light or dark backgrounds */\n  --jp-icon-contrast-color0: var(--md-purple-600);\n  --jp-icon-contrast-color1: var(--md-green-600);\n  --jp-icon-contrast-color2: var(--md-pink-600);\n  --jp-icon-contrast-color3: var(--md-blue-600);\n}\n</style>\n\n<style type=\"text/css\">\n/* Force rendering true colors when outputing to pdf */\n* {\n  -webkit-print-color-adjust: exact;\n}\n\n/* Misc */\na.anchor-link {\n  display: none;\n}\n\n/* Input area styling */\n.jp-InputArea {\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  overflow: hidden;\n}\n\n.CodeMirror.cm-s-jupyter .highlight pre {\n/* weird, but --jp-code-padding defined to be 5px but 4px horizontal padding is hardcoded for pre.CodeMirror-line */\n  padding: var(--jp-code-padding) 4px;\n  margin: 0;\n\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit;\n  color: inherit;\n\n}\n\n.jp-OutputArea-output pre {\n  line-height: inherit;\n  font-family: inherit;\n}\n\n.jp-RenderedText pre {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-code-font-size);\n}\n\n/* Using table instead of flexbox so that we can use break-inside property */\n/* CSS rules under this comment should not be required anymore after we move to the JupyterLab 4.0 CSS */\n\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  min-width: calc(\n    var(--jp-cell-prompt-width) - var(--jp-private-cell-scrolling-output-offset)\n  );\n}\n\n.jp-OutputArea-child {\n  display: table;\n  width: 100%;\n}\n\n.jp-OutputPrompt {\n  display: table-cell;\n  vertical-align: top;\n  min-width: var(--jp-cell-prompt-width);\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  display: table-row;\n}\n\n.jp-OutputArea-output {\n  display: table-cell;\n  width: 100%;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  display: table-row;\n}\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  width: 100%;\n}\n\n/* Hiding the collapser by default */\n.jp-Collapser {\n  display: none;\n}\n\n@page {\n    margin: 0.5in; /* Margin for each printed piece of paper */\n}\n\n@media print {\n  .jp-Cell-inputWrapper,\n  .jp-Cell-outputWrapper {\n    display: block;\n  }\n\n  .jp-OutputArea-child {\n    break-inside: avoid-page;\n  }\n}\n</style>\n\n<!-- Load mathjax -->\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/latest.js?config=TeX-AMS_CHTML-full,Safe\"> </script>\n    <!-- MathJax configuration -->\n    <script type=\"text/x-mathjax-config\">\n    init_mathjax = function() {\n        if (window.MathJax) {\n        // MathJax loaded\n            MathJax.Hub.Config({\n                TeX: {\n                    equationNumbers: {\n                    autoNumber: \"AMS\",\n                    useLabelIds: true\n                    }\n                },\n                tex2jax: {\n                    inlineMath: [ ['$','$'], [\"\\\\(\",\"\\\\)\"] ],\n                    displayMath: [ ['$$','$$'], [\"\\\\[\",\"\\\\]\"] ],\n                    processEscapes: true,\n                    processEnvironments: true\n                },\n                displayAlign: 'center',\n                CommonHTML: {\n                    linebreaks: {\n                    automatic: true\n                    }\n                }\n            });\n\n            MathJax.Hub.Queue([\"Typeset\", MathJax.Hub]);\n        }\n    }\n    init_mathjax();\n    </script>\n    <!-- End of mathjax configuration --></head>\n<body class=\"jp-Notebook\" data-jp-theme-light=\"true\" data-jp-theme-name=\"JupyterLab Light\">\n\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Physics-simulator-with-uncertainty\">Physics simulator with uncertainty<a class=\"anchor-link\" href=\"#Physics-simulator-with-uncertainty\">&#182;</a></h1>\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[1]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Numeric.Hamilton</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">stepHam</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">System</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Phase</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Phs</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"nf\">phsPositions</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"nf\">phsMomenta</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"nf\">mkSystem&#39;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Config</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">cfgPositions</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"nf\">cfgVelocities</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Cfg</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"nf\">toPhase</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">GHC.TypeLits</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">KnownNat</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Numeric.LinearAlgebra.Static</span><span class=\"w\"> </span><span class=\"k\">hiding</span><span class=\"w\"> </span><span class=\"p\">((</span><span class=\"o\">#</span><span class=\"p\">))</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Data.Vector.Sized</span><span class=\"w\">                   </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">V</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Class</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Maybe</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">fromMaybe</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Sampler.Strict</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Diagrams.Prelude</span><span class=\"w\"> </span><span class=\"k\">hiding</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">normal</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Diagrams.Prelude</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V2</span><span class=\"p\">(</span><span class=\"o\">..</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">#</span><span class=\"p\">))</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Diagrams.Backend.Cairo</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">C</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.List</span>\n\n\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">PatternSynonyms</span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">ViewPatterns</span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">RankNTypes</span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">DataKinds</span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">FlexibleContexts</span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">GADTs</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[2]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">pattern</span><span class=\"w\"> </span><span class=\"kt\">V1</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"n\">a</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"> </span><span class=\"n\">a</span>\n<span class=\"nf\">pattern</span><span class=\"w\"> </span><span class=\"kt\">V1</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"n\">head</span><span class=\"ow\">-&gt;</span><span class=\"n\">x</span><span class=\"p\">)</span>\n<span class=\"w\">  </span><span class=\"kr\">where</span>\n<span class=\"w\">    </span><span class=\"kt\">V1</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"n\">singleton</span><span class=\"w\"> </span><span class=\"n\">x</span>\n\n<span class=\"kr\">type</span><span class=\"w\"> </span><span class=\"kt\">V2</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"mi\">2</span>\n<span class=\"nf\">pattern</span><span class=\"w\"> </span><span class=\"kt\">V2</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"n\">a</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">a</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kt\">V2</span><span class=\"w\"> </span><span class=\"n\">a</span>\n<span class=\"nf\">pattern</span><span class=\"w\"> </span><span class=\"kt\">V2</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"n\">toList</span><span class=\"ow\">-&gt;</span><span class=\"p\">[</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"n\">y</span><span class=\"p\">])</span>\n<span class=\"w\">  </span><span class=\"kr\">where</span>\n<span class=\"w\">    </span><span class=\"kt\">V2</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"n\">fromTuple</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">)</span>\n\n<span class=\"nf\">fromDouble</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kt\">R</span><span class=\"w\"> </span><span class=\"mi\">1</span>\n<span class=\"nf\">fromDouble</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">fromList</span><span class=\"w\">  </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">:[]</span><span class=\"p\">)</span>\n\n<span class=\"c1\">-- couldn&#39;t find the right conversion function...</span>\n<span class=\"nf\">toDouble</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">R</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"w\"> </span>\n<span class=\"nf\">toDouble</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">read</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">take</span><span class=\"w\"> </span><span class=\"mi\">8</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">tail</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">show</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>There's a number of ways a physics simulator could be used in a probabilistic context. The simplest is to have a prior over initial states, and evolve a system forward.</p>\n<p>As an example, here we use the <code>hamilton</code> classical physics engine in Haskell, which is a very simple, but coordinate independent, physics simulator.</p>\n<p>We can define a 1D harmonic oscillator like:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[3]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">system1</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">System</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">)</span>\n<span class=\"nf\">system1</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">mkSystem&#39;</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"> </span>\n<span class=\"w\">        </span><span class=\"n\">id</span><span class=\"w\"> </span>\n<span class=\"w\">    </span>\n<span class=\"w\">        </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"p\">(</span><span class=\"kt\">V1</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"o\">**</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"w\"> </span><span class=\"o\">/</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"p\">)</span>\n<span class=\"w\">        </span>\n<span class=\"nf\">system2</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">System</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">)</span>\n<span class=\"nf\">system2</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">mkSystem&#39;</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"> </span>\n<span class=\"w\">        </span><span class=\"n\">id</span><span class=\"w\"> </span>\n<span class=\"w\">    </span>\n<span class=\"w\">        </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"p\">(</span><span class=\"kt\">V1</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"o\">**</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"p\">)</span>\n<span class=\"w\">    </span>\n<span class=\"c1\">-- we could have uncertainty over the Hamiltonian itself, but let&#39;s not for now</span>\n<span class=\"nf\">system</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">uniformD</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"n\">system1</span><span class=\"p\">]</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>and an initial distribution over phase space:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[4]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">phase</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Phase</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">)</span>\n<span class=\"nf\">phase</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span>\n<span class=\"w\">  </span><span class=\"n\">pos</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"mi\">20</span><span class=\"o\">*</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">random</span>\n<span class=\"w\">  </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">Phs</span><span class=\"w\"> </span><span class=\"p\">{</span><span class=\"n\">phsPositions</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">fromDouble</span><span class=\"w\"> </span><span class=\"n\">pos</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">phsMomenta</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">10</span><span class=\"p\">}</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p><code>pushforward</code> is then a distribution over paths of the system, numerically evolved forward according to the oscillator Hamiltonian.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[5]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">pushforward</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Double</span><span class=\"p\">]</span>\n<span class=\"nf\">pushforward</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span>\n<span class=\"w\">    </span><span class=\"n\">initial</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">phase</span>\n<span class=\"w\">    </span><span class=\"n\">sys</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">system</span>\n<span class=\"w\">    </span><span class=\"kr\">let</span><span class=\"w\"> </span><span class=\"n\">new</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"n\">stepHam</span><span class=\"w\"> </span><span class=\"n\">stepSize</span><span class=\"w\"> </span><span class=\"n\">sys</span><span class=\"w\"> </span><span class=\"n\">initial</span><span class=\"w\"> </span><span class=\"o\">|</span><span class=\"w\"> </span><span class=\"n\">stepSize</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"mf\">0.1</span><span class=\"p\">,</span><span class=\"mf\">0.2</span><span class=\"o\">..</span><span class=\"mi\">10</span><span class=\"p\">]]</span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">toDouble</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">phsPositions</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">initial</span><span class=\"kt\">:</span><span class=\"n\">new</span><span class=\"p\">)</span>\n<span class=\"w\">    </span>\n<span class=\"nf\">pairs</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampler</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">30</span><span class=\"w\"> </span><span class=\"n\">pushforward</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[6]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">toD</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">translateX</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">circle</span><span class=\"w\"> </span><span class=\"mi\">1</span>\n<span class=\"nf\">diagram</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">vsep</span><span class=\"w\"> </span><span class=\"mf\">0.1</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"n\">mconcat</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">toD</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"o\">|</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">transpose</span><span class=\"w\"> </span><span class=\"n\">pairs</span><span class=\"p\">]</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n<div class=\"jp-OutputArea-child\">\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedSVG jp-OutputArea-output \" data-mime-type=\"image/svg+xml\">\n<!--?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?-->\n<svg width=\"104.356174pt\" height=\"488.988537pt\" viewBox=\"0 0 104.356174 488.988537\" version=\"1.1\">\n<g id=\"surface2\">\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.742188 486.683594 C 35.742188 485.410156 34.710938 484.378906 33.4375 484.378906 C 32.164062 484.378906 31.132812 485.410156 31.132812 486.683594 C 31.132812 487.957031 32.164062 488.988281 33.4375 488.988281 C 34.710938 488.988281 35.742188 487.957031 35.742188 486.683594 Z M 35.742188 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 7.574219 486.683594 C 7.574219 485.410156 6.542969 484.378906 5.269531 484.378906 C 3.996094 484.378906 2.964844 485.410156 2.964844 486.683594 C 2.964844 487.957031 3.996094 488.988281 5.269531 488.988281 C 6.542969 488.988281 7.574219 487.957031 7.574219 486.683594 Z M 7.574219 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.777344 486.683594 C 24.777344 485.410156 23.746094 484.378906 22.472656 484.378906 C 21.199219 484.378906 20.167969 485.410156 20.167969 486.683594 C 20.167969 487.957031 21.199219 488.988281 22.472656 488.988281 C 23.746094 488.988281 24.777344 487.957031 24.777344 486.683594 Z M 24.777344 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 9.214844 486.683594 C 9.214844 485.410156 8.183594 484.378906 6.910156 484.378906 C 5.636719 484.378906 4.605469 485.410156 4.605469 486.683594 C 4.605469 487.957031 5.636719 488.988281 6.910156 488.988281 C 8.183594 488.988281 9.214844 487.957031 9.214844 486.683594 Z M 9.214844 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 14.207031 486.683594 C 14.207031 485.410156 13.175781 484.378906 11.902344 484.378906 C 10.628906 484.378906 9.597656 485.410156 9.597656 486.683594 C 9.597656 487.957031 10.628906 488.988281 11.902344 488.988281 C 13.175781 488.988281 14.207031 487.957031 14.207031 486.683594 Z M 14.207031 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 21.339844 486.683594 C 21.339844 485.410156 20.308594 484.378906 19.035156 484.378906 C 17.761719 484.378906 16.730469 485.410156 16.730469 486.683594 C 16.730469 487.957031 17.761719 488.988281 19.035156 488.988281 C 20.308594 488.988281 21.339844 487.957031 21.339844 486.683594 Z M 21.339844 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.195312 486.683594 C 25.195312 485.410156 24.164062 484.378906 22.890625 484.378906 C 21.617188 484.378906 20.585938 485.410156 20.585938 486.683594 C 20.585938 487.957031 21.617188 488.988281 22.890625 488.988281 C 24.164062 488.988281 25.195312 487.957031 25.195312 486.683594 Z M 25.195312 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 12.355469 486.683594 C 12.355469 485.410156 11.324219 484.378906 10.050781 484.378906 C 8.777344 484.378906 7.746094 485.410156 7.746094 486.683594 C 7.746094 487.957031 8.777344 488.988281 10.050781 488.988281 C 11.324219 488.988281 12.355469 487.957031 12.355469 486.683594 Z M 12.355469 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.890625 486.683594 C 38.890625 485.410156 37.859375 484.378906 36.585938 484.378906 C 35.3125 484.378906 34.28125 485.410156 34.28125 486.683594 C 34.28125 487.957031 35.3125 488.988281 36.585938 488.988281 C 37.859375 488.988281 38.890625 487.957031 38.890625 486.683594 Z M 38.890625 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.832031 486.683594 C 23.832031 485.410156 22.800781 484.378906 21.527344 484.378906 C 20.253906 484.378906 19.222656 485.410156 19.222656 486.683594 C 19.222656 487.957031 20.253906 488.988281 21.527344 488.988281 C 22.800781 488.988281 23.832031 487.957031 23.832031 486.683594 Z M 23.832031 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 5.210938 486.683594 C 5.210938 485.410156 4.179688 484.378906 2.90625 484.378906 C 1.632812 484.378906 0.601562 485.410156 0.601562 486.683594 C 0.601562 487.957031 1.632812 488.988281 2.90625 488.988281 C 4.179688 488.988281 5.210938 487.957031 5.210938 486.683594 Z M 5.210938 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.488281 486.683594 C 23.488281 485.410156 22.457031 484.378906 21.183594 484.378906 C 19.910156 484.378906 18.878906 485.410156 18.878906 486.683594 C 18.878906 487.957031 19.910156 488.988281 21.183594 488.988281 C 22.457031 488.988281 23.488281 487.957031 23.488281 486.683594 Z M 23.488281 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.210938 486.683594 C 35.210938 485.410156 34.179688 484.378906 32.90625 484.378906 C 31.632812 484.378906 30.601562 485.410156 30.601562 486.683594 C 30.601562 487.957031 31.632812 488.988281 32.90625 488.988281 C 34.179688 488.988281 35.210938 487.957031 35.210938 486.683594 Z M 35.210938 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.636719 486.683594 C 15.636719 485.410156 14.605469 484.378906 13.332031 484.378906 C 12.058594 484.378906 11.027344 485.410156 11.027344 486.683594 C 11.027344 487.957031 12.058594 488.988281 13.332031 488.988281 C 14.605469 488.988281 15.636719 487.957031 15.636719 486.683594 Z M 15.636719 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.039062 486.683594 C 16.039062 485.410156 15.007812 484.378906 13.734375 484.378906 C 12.460938 484.378906 11.429688 485.410156 11.429688 486.683594 C 11.429688 487.957031 12.460938 488.988281 13.734375 488.988281 C 15.007812 488.988281 16.039062 487.957031 16.039062 486.683594 Z M 16.039062 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.160156 486.683594 C 40.160156 485.410156 39.128906 484.378906 37.855469 484.378906 C 36.582031 484.378906 35.550781 485.410156 35.550781 486.683594 C 35.550781 487.957031 36.582031 488.988281 37.855469 488.988281 C 39.128906 488.988281 40.160156 487.957031 40.160156 486.683594 Z M 40.160156 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.3125 486.683594 C 30.3125 485.410156 29.28125 484.378906 28.007812 484.378906 C 26.734375 484.378906 25.703125 485.410156 25.703125 486.683594 C 25.703125 487.957031 26.734375 488.988281 28.007812 488.988281 C 29.28125 488.988281 30.3125 487.957031 30.3125 486.683594 Z M 30.3125 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 14.789062 486.683594 C 14.789062 485.410156 13.757812 484.378906 12.484375 484.378906 C 11.210938 484.378906 10.179688 485.410156 10.179688 486.683594 C 10.179688 487.957031 11.210938 488.988281 12.484375 488.988281 C 13.757812 488.988281 14.789062 487.957031 14.789062 486.683594 Z M 14.789062 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 21.535156 486.683594 C 21.535156 485.410156 20.503906 484.378906 19.230469 484.378906 C 17.957031 484.378906 16.925781 485.410156 16.925781 486.683594 C 16.925781 487.957031 17.957031 488.988281 19.230469 488.988281 C 20.503906 488.988281 21.535156 487.957031 21.535156 486.683594 Z M 21.535156 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.519531 486.683594 C 28.519531 485.410156 27.488281 484.378906 26.214844 484.378906 C 24.941406 484.378906 23.910156 485.410156 23.910156 486.683594 C 23.910156 487.957031 24.941406 488.988281 26.214844 488.988281 C 27.488281 488.988281 28.519531 487.957031 28.519531 486.683594 Z M 28.519531 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 4.835938 486.683594 C 4.835938 485.410156 3.804688 484.378906 2.53125 484.378906 C 1.257812 484.378906 0.226562 485.410156 0.226562 486.683594 C 0.226562 487.957031 1.257812 488.988281 2.53125 488.988281 C 3.804688 488.988281 4.835938 487.957031 4.835938 486.683594 Z M 4.835938 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.613281 486.683594 C 24.613281 485.410156 23.582031 484.378906 22.308594 484.378906 C 21.035156 484.378906 20.003906 485.410156 20.003906 486.683594 C 20.003906 487.957031 21.035156 488.988281 22.308594 488.988281 C 23.582031 488.988281 24.613281 487.957031 24.613281 486.683594 Z M 24.613281 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.007812 486.683594 C 19.007812 485.410156 17.976562 484.378906 16.703125 484.378906 C 15.429688 484.378906 14.398438 485.410156 14.398438 486.683594 C 14.398438 487.957031 15.429688 488.988281 16.703125 488.988281 C 17.976562 488.988281 19.007812 487.957031 19.007812 486.683594 Z M 19.007812 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 8.921875 486.683594 C 8.921875 485.410156 7.890625 484.378906 6.617188 484.378906 C 5.34375 484.378906 4.3125 485.410156 4.3125 486.683594 C 4.3125 487.957031 5.34375 488.988281 6.617188 488.988281 C 7.890625 488.988281 8.921875 487.957031 8.921875 486.683594 Z M 8.921875 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.917969 486.683594 C 36.917969 485.410156 35.886719 484.378906 34.613281 484.378906 C 33.339844 484.378906 32.308594 485.410156 32.308594 486.683594 C 32.308594 487.957031 33.339844 488.988281 34.613281 488.988281 C 35.886719 488.988281 36.917969 487.957031 36.917969 486.683594 Z M 36.917969 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.445312 486.683594 C 29.445312 485.410156 28.414062 484.378906 27.140625 484.378906 C 25.867188 484.378906 24.835938 485.410156 24.835938 486.683594 C 24.835938 487.957031 25.867188 488.988281 27.140625 488.988281 C 28.414062 488.988281 29.445312 487.957031 29.445312 486.683594 Z M 29.445312 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 6.429688 486.683594 C 6.429688 485.410156 5.398438 484.378906 4.125 484.378906 C 2.851562 484.378906 1.820312 485.410156 1.820312 486.683594 C 1.820312 487.957031 2.851562 488.988281 4.125 488.988281 C 5.398438 488.988281 6.429688 487.957031 6.429688 486.683594 Z M 6.429688 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 12.101562 486.683594 C 12.101562 485.410156 11.070312 484.378906 9.796875 484.378906 C 8.523438 484.378906 7.492188 485.410156 7.492188 486.683594 C 7.492188 487.957031 8.523438 488.988281 9.796875 488.988281 C 11.070312 488.988281 12.101562 487.957031 12.101562 486.683594 Z M 12.101562 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.160156 486.683594 C 24.160156 485.410156 23.128906 484.378906 21.855469 484.378906 C 20.582031 484.378906 19.550781 485.410156 19.550781 486.683594 C 19.550781 487.957031 20.582031 488.988281 21.855469 488.988281 C 23.128906 488.988281 24.160156 487.957031 24.160156 486.683594 Z M 24.160156 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 4.933594 486.683594 C 4.933594 485.410156 3.902344 484.378906 2.628906 484.378906 C 1.355469 484.378906 0.324219 485.410156 0.324219 486.683594 C 0.324219 487.957031 1.355469 488.988281 2.628906 488.988281 C 3.902344 488.988281 4.933594 487.957031 4.933594 486.683594 Z M 4.933594 486.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.367188 481.839844 C 37.367188 480.566406 36.335938 479.535156 35.0625 479.535156 C 33.789062 479.535156 32.757812 480.566406 32.757812 481.839844 C 32.757812 483.113281 33.789062 484.144531 35.0625 484.144531 C 36.335938 484.144531 37.367188 483.113281 37.367188 481.839844 Z M 37.367188 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 7.519531 481.839844 C 7.519531 480.566406 6.488281 479.535156 5.214844 479.535156 C 3.941406 479.535156 2.910156 480.566406 2.910156 481.839844 C 2.910156 483.113281 3.941406 484.144531 5.214844 484.144531 C 6.488281 484.144531 7.519531 483.113281 7.519531 481.839844 Z M 7.519531 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.746094 481.839844 C 25.746094 480.566406 24.714844 479.535156 23.441406 479.535156 C 22.167969 479.535156 21.136719 480.566406 21.136719 481.839844 C 21.136719 483.113281 22.167969 484.144531 23.441406 484.144531 C 24.714844 484.144531 25.746094 483.113281 25.746094 481.839844 Z M 25.746094 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 9.253906 481.839844 C 9.253906 480.566406 8.222656 479.535156 6.949219 479.535156 C 5.675781 479.535156 4.644531 480.566406 4.644531 481.839844 C 4.644531 483.113281 5.675781 484.144531 6.949219 484.144531 C 8.222656 484.144531 9.253906 483.113281 9.253906 481.839844 Z M 9.253906 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 14.546875 481.839844 C 14.546875 480.566406 13.515625 479.535156 12.242188 479.535156 C 10.96875 479.535156 9.9375 480.566406 9.9375 481.839844 C 9.9375 483.113281 10.96875 484.144531 12.242188 484.144531 C 13.515625 484.144531 14.546875 483.113281 14.546875 481.839844 Z M 14.546875 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.105469 481.839844 C 22.105469 480.566406 21.074219 479.535156 19.800781 479.535156 C 18.527344 479.535156 17.496094 480.566406 17.496094 481.839844 C 17.496094 483.113281 18.527344 484.144531 19.800781 484.144531 C 21.074219 484.144531 22.105469 483.113281 22.105469 481.839844 Z M 22.105469 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.191406 481.839844 C 26.191406 480.566406 25.160156 479.535156 23.886719 479.535156 C 22.613281 479.535156 21.582031 480.566406 21.582031 481.839844 C 21.582031 483.113281 22.613281 484.144531 23.886719 484.144531 C 25.160156 484.144531 26.191406 483.113281 26.191406 481.839844 Z M 26.191406 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 12.585938 481.839844 C 12.585938 480.566406 11.554688 479.535156 10.28125 479.535156 C 9.007812 479.535156 7.976562 480.566406 7.976562 481.839844 C 7.976562 483.113281 9.007812 484.144531 10.28125 484.144531 C 11.554688 484.144531 12.585938 483.113281 12.585938 481.839844 Z M 12.585938 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.703125 481.839844 C 40.703125 480.566406 39.671875 479.535156 38.398438 479.535156 C 37.125 479.535156 36.09375 480.566406 36.09375 481.839844 C 36.09375 483.113281 37.125 484.144531 38.398438 484.144531 C 39.671875 484.144531 40.703125 483.113281 40.703125 481.839844 Z M 40.703125 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.746094 481.839844 C 24.746094 480.566406 23.714844 479.535156 22.441406 479.535156 C 21.167969 479.535156 20.136719 480.566406 20.136719 481.839844 C 20.136719 483.113281 21.167969 484.144531 22.441406 484.144531 C 23.714844 484.144531 24.746094 483.113281 24.746094 481.839844 Z M 24.746094 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 5.011719 481.839844 C 5.011719 480.566406 3.980469 479.535156 2.707031 479.535156 C 1.433594 479.535156 0.402344 480.566406 0.402344 481.839844 C 0.402344 483.113281 1.433594 484.144531 2.707031 484.144531 C 3.980469 484.144531 5.011719 483.113281 5.011719 481.839844 Z M 5.011719 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.382812 481.839844 C 24.382812 480.566406 23.351562 479.535156 22.078125 479.535156 C 20.804688 479.535156 19.773438 480.566406 19.773438 481.839844 C 19.773438 483.113281 20.804688 484.144531 22.078125 484.144531 C 23.351562 484.144531 24.382812 483.113281 24.382812 481.839844 Z M 24.382812 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.800781 481.839844 C 36.800781 480.566406 35.769531 479.535156 34.496094 479.535156 C 33.222656 479.535156 32.191406 480.566406 32.191406 481.839844 C 32.191406 483.113281 33.222656 484.144531 34.496094 484.144531 C 35.769531 484.144531 36.800781 483.113281 36.800781 481.839844 Z M 36.800781 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.058594 481.839844 C 16.058594 480.566406 15.027344 479.535156 13.753906 479.535156 C 12.480469 479.535156 11.449219 480.566406 11.449219 481.839844 C 11.449219 483.113281 12.480469 484.144531 13.753906 484.144531 C 15.027344 484.144531 16.058594 483.113281 16.058594 481.839844 Z M 16.058594 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.484375 481.839844 C 16.484375 480.566406 15.453125 479.535156 14.179688 479.535156 C 12.90625 479.535156 11.875 480.566406 11.875 481.839844 C 11.875 483.113281 12.90625 484.144531 14.179688 484.144531 C 15.453125 484.144531 16.484375 483.113281 16.484375 481.839844 Z M 16.484375 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.046875 481.839844 C 42.046875 480.566406 41.015625 479.535156 39.742188 479.535156 C 38.46875 479.535156 37.4375 480.566406 37.4375 481.839844 C 37.4375 483.113281 38.46875 484.144531 39.742188 484.144531 C 41.015625 484.144531 42.046875 483.113281 42.046875 481.839844 Z M 42.046875 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.613281 481.839844 C 31.613281 480.566406 30.582031 479.535156 29.308594 479.535156 C 28.035156 479.535156 27.003906 480.566406 27.003906 481.839844 C 27.003906 483.113281 28.035156 484.144531 29.308594 484.144531 C 30.582031 484.144531 31.613281 483.113281 31.613281 481.839844 Z M 31.613281 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.160156 481.839844 C 15.160156 480.566406 14.128906 479.535156 12.855469 479.535156 C 11.582031 479.535156 10.550781 480.566406 10.550781 481.839844 C 10.550781 483.113281 11.582031 484.144531 12.855469 484.144531 C 14.128906 484.144531 15.160156 483.113281 15.160156 481.839844 Z M 15.160156 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.308594 481.839844 C 22.308594 480.566406 21.277344 479.535156 20.003906 479.535156 C 18.730469 479.535156 17.699219 480.566406 17.699219 481.839844 C 17.699219 483.113281 18.730469 484.144531 20.003906 484.144531 C 21.277344 484.144531 22.308594 483.113281 22.308594 481.839844 Z M 22.308594 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.714844 481.839844 C 29.714844 480.566406 28.683594 479.535156 27.410156 479.535156 C 26.136719 479.535156 25.105469 480.566406 25.105469 481.839844 C 25.105469 483.113281 26.136719 484.144531 27.410156 484.144531 C 28.683594 484.144531 29.714844 483.113281 29.714844 481.839844 Z M 29.714844 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 4.613281 481.839844 C 4.613281 480.566406 3.582031 479.535156 2.308594 479.535156 C 1.035156 479.535156 0.00390625 480.566406 0.00390625 481.839844 C 0.00390625 483.113281 1.035156 484.144531 2.308594 484.144531 C 3.582031 484.144531 4.613281 483.113281 4.613281 481.839844 Z M 4.613281 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.574219 481.839844 C 25.574219 480.566406 24.542969 479.535156 23.269531 479.535156 C 21.996094 479.535156 20.964844 480.566406 20.964844 481.839844 C 20.964844 483.113281 21.996094 484.144531 23.269531 484.144531 C 24.542969 484.144531 25.574219 483.113281 25.574219 481.839844 Z M 25.574219 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.632812 481.839844 C 19.632812 480.566406 18.601562 479.535156 17.328125 479.535156 C 16.054688 479.535156 15.023438 480.566406 15.023438 481.839844 C 15.023438 483.113281 16.054688 484.144531 17.328125 484.144531 C 18.601562 484.144531 19.632812 483.113281 19.632812 481.839844 Z M 19.632812 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 8.941406 481.839844 C 8.941406 480.566406 7.910156 479.535156 6.636719 479.535156 C 5.363281 479.535156 4.332031 480.566406 4.332031 481.839844 C 4.332031 483.113281 5.363281 484.144531 6.636719 484.144531 C 7.910156 484.144531 8.941406 483.113281 8.941406 481.839844 Z M 8.941406 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.609375 481.839844 C 38.609375 480.566406 37.578125 479.535156 36.304688 479.535156 C 35.03125 479.535156 34 480.566406 34 481.839844 C 34 483.113281 35.03125 484.144531 36.304688 484.144531 C 37.578125 484.144531 38.609375 483.113281 38.609375 481.839844 Z M 38.609375 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.691406 481.839844 C 30.691406 480.566406 29.660156 479.535156 28.386719 479.535156 C 27.113281 479.535156 26.082031 480.566406 26.082031 481.839844 C 26.082031 483.113281 27.113281 484.144531 28.386719 484.144531 C 29.660156 484.144531 30.691406 483.113281 30.691406 481.839844 Z M 30.691406 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 6.300781 481.839844 C 6.300781 480.566406 5.269531 479.535156 3.996094 479.535156 C 2.722656 479.535156 1.691406 480.566406 1.691406 481.839844 C 1.691406 483.113281 2.722656 484.144531 3.996094 484.144531 C 5.269531 484.144531 6.300781 483.113281 6.300781 481.839844 Z M 6.300781 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 12.316406 481.839844 C 12.316406 480.566406 11.285156 479.535156 10.011719 479.535156 C 8.738281 479.535156 7.707031 480.566406 7.707031 481.839844 C 7.707031 483.113281 8.738281 484.144531 10.011719 484.144531 C 11.285156 484.144531 12.316406 483.113281 12.316406 481.839844 Z M 12.316406 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.09375 481.839844 C 25.09375 480.566406 24.0625 479.535156 22.789062 479.535156 C 21.515625 479.535156 20.484375 480.566406 20.484375 481.839844 C 20.484375 483.113281 21.515625 484.144531 22.789062 484.144531 C 24.0625 484.144531 25.09375 483.113281 25.09375 481.839844 Z M 25.09375 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 4.71875 481.839844 C 4.71875 480.566406 3.6875 479.535156 2.414062 479.535156 C 1.140625 479.535156 0.109375 480.566406 0.109375 481.839844 C 0.109375 483.113281 1.140625 484.144531 2.414062 484.144531 C 3.6875 484.144531 4.71875 483.113281 4.71875 481.839844 Z M 4.71875 481.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.164062 476.996094 C 39.164062 475.722656 38.132812 474.691406 36.859375 474.691406 C 35.585938 474.691406 34.554688 475.722656 34.554688 476.996094 C 34.554688 478.269531 35.585938 479.300781 36.859375 479.300781 C 38.132812 479.300781 39.164062 478.269531 39.164062 476.996094 Z M 39.164062 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 7.929688 476.996094 C 7.929688 475.722656 6.898438 474.691406 5.625 474.691406 C 4.351562 474.691406 3.320312 475.722656 3.320312 476.996094 C 3.320312 478.269531 4.351562 479.300781 5.625 479.300781 C 6.898438 479.300781 7.929688 478.269531 7.929688 476.996094 Z M 7.929688 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.003906 476.996094 C 27.003906 475.722656 25.972656 474.691406 24.699219 474.691406 C 23.425781 474.691406 22.394531 475.722656 22.394531 476.996094 C 22.394531 478.269531 23.425781 479.300781 24.699219 479.300781 C 25.972656 479.300781 27.003906 478.269531 27.003906 476.996094 Z M 27.003906 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 9.746094 476.996094 C 9.746094 475.722656 8.714844 474.691406 7.441406 474.691406 C 6.167969 474.691406 5.136719 475.722656 5.136719 476.996094 C 5.136719 478.269531 6.167969 479.300781 7.441406 479.300781 C 8.714844 479.300781 9.746094 478.269531 9.746094 476.996094 Z M 9.746094 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.285156 476.996094 C 15.285156 475.722656 14.253906 474.691406 12.980469 474.691406 C 11.707031 474.691406 10.675781 475.722656 10.675781 476.996094 C 10.675781 478.269531 11.707031 479.300781 12.980469 479.300781 C 14.253906 479.300781 15.285156 478.269531 15.285156 476.996094 Z M 15.285156 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.191406 476.996094 C 23.191406 475.722656 22.160156 474.691406 20.886719 474.691406 C 19.613281 474.691406 18.582031 475.722656 18.582031 476.996094 C 18.582031 478.269531 19.613281 479.300781 20.886719 479.300781 C 22.160156 479.300781 23.191406 478.269531 23.191406 476.996094 Z M 23.191406 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.46875 476.996094 C 27.46875 475.722656 26.4375 474.691406 25.164062 474.691406 C 23.890625 474.691406 22.859375 475.722656 22.859375 476.996094 C 22.859375 478.269531 23.890625 479.300781 25.164062 479.300781 C 26.4375 479.300781 27.46875 478.269531 27.46875 476.996094 Z M 27.46875 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 13.230469 476.996094 C 13.230469 475.722656 12.199219 474.691406 10.925781 474.691406 C 9.652344 474.691406 8.621094 475.722656 8.621094 476.996094 C 8.621094 478.269531 9.652344 479.300781 10.925781 479.300781 C 12.199219 479.300781 13.230469 478.269531 13.230469 476.996094 Z M 13.230469 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.652344 476.996094 C 42.652344 475.722656 41.621094 474.691406 40.347656 474.691406 C 39.074219 474.691406 38.042969 475.722656 38.042969 476.996094 C 38.042969 478.269531 39.074219 479.300781 40.347656 479.300781 C 41.621094 479.300781 42.652344 478.269531 42.652344 476.996094 Z M 42.652344 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.957031 476.996094 C 25.957031 475.722656 24.925781 474.691406 23.652344 474.691406 C 22.378906 474.691406 21.347656 475.722656 21.347656 476.996094 C 21.347656 478.269531 22.378906 479.300781 23.652344 479.300781 C 24.925781 479.300781 25.957031 478.269531 25.957031 476.996094 Z M 25.957031 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 5.304688 476.996094 C 5.304688 475.722656 4.273438 474.691406 3 474.691406 C 1.726562 474.691406 0.695312 475.722656 0.695312 476.996094 C 0.695312 478.269531 1.726562 479.300781 3 479.300781 C 4.273438 479.300781 5.304688 478.269531 5.304688 476.996094 Z M 5.304688 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.574219 476.996094 C 25.574219 475.722656 24.542969 474.691406 23.269531 474.691406 C 21.996094 474.691406 20.964844 475.722656 20.964844 476.996094 C 20.964844 478.269531 21.996094 479.300781 23.269531 479.300781 C 24.542969 479.300781 25.574219 478.269531 25.574219 476.996094 Z M 25.574219 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.570312 476.996094 C 38.570312 475.722656 37.539062 474.691406 36.265625 474.691406 C 34.992188 474.691406 33.960938 475.722656 33.960938 476.996094 C 33.960938 478.269531 34.992188 479.300781 36.265625 479.300781 C 37.539062 479.300781 38.570312 478.269531 38.570312 476.996094 Z M 38.570312 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.867188 476.996094 C 16.867188 475.722656 15.835938 474.691406 14.5625 474.691406 C 13.289062 474.691406 12.257812 475.722656 12.257812 476.996094 C 12.257812 478.269531 13.289062 479.300781 14.5625 479.300781 C 15.835938 479.300781 16.867188 478.269531 16.867188 476.996094 Z M 16.867188 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 17.3125 476.996094 C 17.3125 475.722656 16.28125 474.691406 15.007812 474.691406 C 13.734375 474.691406 12.703125 475.722656 12.703125 476.996094 C 12.703125 478.269531 13.734375 479.300781 15.007812 479.300781 C 16.28125 479.300781 17.3125 478.269531 17.3125 476.996094 Z M 17.3125 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.058594 476.996094 C 44.058594 475.722656 43.027344 474.691406 41.753906 474.691406 C 40.480469 474.691406 39.449219 475.722656 39.449219 476.996094 C 39.449219 478.269531 40.480469 479.300781 41.753906 479.300781 C 43.027344 479.300781 44.058594 478.269531 44.058594 476.996094 Z M 44.058594 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.140625 476.996094 C 33.140625 475.722656 32.109375 474.691406 30.835938 474.691406 C 29.5625 474.691406 28.53125 475.722656 28.53125 476.996094 C 28.53125 478.269531 29.5625 479.300781 30.835938 479.300781 C 32.109375 479.300781 33.140625 478.269531 33.140625 476.996094 Z M 33.140625 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.925781 476.996094 C 15.925781 475.722656 14.894531 474.691406 13.621094 474.691406 C 12.347656 474.691406 11.316406 475.722656 11.316406 476.996094 C 11.316406 478.269531 12.347656 479.300781 13.621094 479.300781 C 14.894531 479.300781 15.925781 478.269531 15.925781 476.996094 Z M 15.925781 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.40625 476.996094 C 23.40625 475.722656 22.375 474.691406 21.101562 474.691406 C 19.828125 474.691406 18.796875 475.722656 18.796875 476.996094 C 18.796875 478.269531 19.828125 479.300781 21.101562 479.300781 C 22.375 479.300781 23.40625 478.269531 23.40625 476.996094 Z M 23.40625 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.15625 476.996094 C 31.15625 475.722656 30.125 474.691406 28.851562 474.691406 C 27.578125 474.691406 26.546875 475.722656 26.546875 476.996094 C 26.546875 478.269531 27.578125 479.300781 28.851562 479.300781 C 30.125 479.300781 31.15625 478.269531 31.15625 476.996094 Z M 31.15625 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 4.890625 476.996094 C 4.890625 475.722656 3.859375 474.691406 2.585938 474.691406 C 1.3125 474.691406 0.28125 475.722656 0.28125 476.996094 C 0.28125 478.269531 1.3125 479.300781 2.585938 479.300781 C 3.859375 479.300781 4.890625 478.269531 4.890625 476.996094 Z M 4.890625 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.824219 476.996094 C 26.824219 475.722656 25.792969 474.691406 24.519531 474.691406 C 23.246094 474.691406 22.214844 475.722656 22.214844 476.996094 C 22.214844 478.269531 23.246094 479.300781 24.519531 479.300781 C 25.792969 479.300781 26.824219 478.269531 26.824219 476.996094 Z M 26.824219 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.605469 476.996094 C 20.605469 475.722656 19.574219 474.691406 18.300781 474.691406 C 17.027344 474.691406 15.996094 475.722656 15.996094 476.996094 C 15.996094 478.269531 17.027344 479.300781 18.300781 479.300781 C 19.574219 479.300781 20.605469 478.269531 20.605469 476.996094 Z M 20.605469 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 9.421875 476.996094 C 9.421875 475.722656 8.390625 474.691406 7.117188 474.691406 C 5.84375 474.691406 4.8125 475.722656 4.8125 476.996094 C 4.8125 478.269531 5.84375 479.300781 7.117188 479.300781 C 8.390625 479.300781 9.421875 478.269531 9.421875 476.996094 Z M 9.421875 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.464844 476.996094 C 40.464844 475.722656 39.433594 474.691406 38.160156 474.691406 C 36.886719 474.691406 35.855469 475.722656 35.855469 476.996094 C 35.855469 478.269531 36.886719 479.300781 38.160156 479.300781 C 39.433594 479.300781 40.464844 478.269531 40.464844 476.996094 Z M 40.464844 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.179688 476.996094 C 32.179688 475.722656 31.148438 474.691406 29.875 474.691406 C 28.601562 474.691406 27.570312 475.722656 27.570312 476.996094 C 27.570312 478.269531 28.601562 479.300781 29.875 479.300781 C 31.148438 479.300781 32.179688 478.269531 32.179688 476.996094 Z M 32.179688 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 6.65625 476.996094 C 6.65625 475.722656 5.625 474.691406 4.351562 474.691406 C 3.078125 474.691406 2.046875 475.722656 2.046875 476.996094 C 2.046875 478.269531 3.078125 479.300781 4.351562 479.300781 C 5.625 479.300781 6.65625 478.269531 6.65625 476.996094 Z M 6.65625 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 12.949219 476.996094 C 12.949219 475.722656 11.917969 474.691406 10.644531 474.691406 C 9.371094 474.691406 8.339844 475.722656 8.339844 476.996094 C 8.339844 478.269531 9.371094 479.300781 10.644531 479.300781 C 11.917969 479.300781 12.949219 478.269531 12.949219 476.996094 Z M 12.949219 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.320312 476.996094 C 26.320312 475.722656 25.289062 474.691406 24.015625 474.691406 C 22.742188 474.691406 21.710938 475.722656 21.710938 476.996094 C 21.710938 478.269531 22.742188 479.300781 24.015625 479.300781 C 25.289062 479.300781 26.320312 478.269531 26.320312 476.996094 Z M 26.320312 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 5 476.996094 C 5 475.722656 3.96875 474.691406 2.695312 474.691406 C 1.421875 474.691406 0.390625 475.722656 0.390625 476.996094 C 0.390625 478.269531 1.421875 479.300781 2.695312 479.300781 C 3.96875 479.300781 5 478.269531 5 476.996094 Z M 5 476.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.113281 472.152344 C 41.113281 470.878906 40.082031 469.847656 38.808594 469.847656 C 37.535156 469.847656 36.503906 470.878906 36.503906 472.152344 C 36.503906 473.425781 37.535156 474.457031 38.808594 474.457031 C 40.082031 474.457031 41.113281 473.425781 41.113281 472.152344 Z M 41.113281 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 8.804688 472.152344 C 8.804688 470.878906 7.773438 469.847656 6.5 469.847656 C 5.226562 469.847656 4.195312 470.878906 4.195312 472.152344 C 4.195312 473.425781 5.226562 474.457031 6.5 474.457031 C 7.773438 474.457031 8.804688 473.425781 8.804688 472.152344 Z M 8.804688 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.535156 472.152344 C 28.535156 470.878906 27.503906 469.847656 26.230469 469.847656 C 24.957031 469.847656 23.925781 470.878906 23.925781 472.152344 C 23.925781 473.425781 24.957031 474.457031 26.230469 474.457031 C 27.503906 474.457031 28.535156 473.425781 28.535156 472.152344 Z M 28.535156 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 10.683594 472.152344 C 10.683594 470.878906 9.652344 469.847656 8.378906 469.847656 C 7.105469 469.847656 6.074219 470.878906 6.074219 472.152344 C 6.074219 473.425781 7.105469 474.457031 8.378906 474.457031 C 9.652344 474.457031 10.683594 473.425781 10.683594 472.152344 Z M 10.683594 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.414062 472.152344 C 16.414062 470.878906 15.382812 469.847656 14.109375 469.847656 C 12.835938 469.847656 11.804688 470.878906 11.804688 472.152344 C 11.804688 473.425781 12.835938 474.457031 14.109375 474.457031 C 15.382812 474.457031 16.414062 473.425781 16.414062 472.152344 Z M 16.414062 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.59375 472.152344 C 24.59375 470.878906 23.5625 469.847656 22.289062 469.847656 C 21.015625 469.847656 19.984375 470.878906 19.984375 472.152344 C 19.984375 473.425781 21.015625 474.457031 22.289062 474.457031 C 23.5625 474.457031 24.59375 473.425781 24.59375 472.152344 Z M 24.59375 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.015625 472.152344 C 29.015625 470.878906 27.984375 469.847656 26.710938 469.847656 C 25.4375 469.847656 24.40625 470.878906 24.40625 472.152344 C 24.40625 473.425781 25.4375 474.457031 26.710938 474.457031 C 27.984375 474.457031 29.015625 473.425781 29.015625 472.152344 Z M 29.015625 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 14.289062 472.152344 C 14.289062 470.878906 13.257812 469.847656 11.984375 469.847656 C 10.710938 469.847656 9.679688 470.878906 9.679688 472.152344 C 9.679688 473.425781 10.710938 474.457031 11.984375 474.457031 C 13.257812 474.457031 14.289062 473.425781 14.289062 472.152344 Z M 14.289062 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.722656 472.152344 C 44.722656 470.878906 43.691406 469.847656 42.417969 469.847656 C 41.144531 469.847656 40.113281 470.878906 40.113281 472.152344 C 40.113281 473.425781 41.144531 474.457031 42.417969 474.457031 C 43.691406 474.457031 44.722656 473.425781 44.722656 472.152344 Z M 44.722656 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.453125 472.152344 C 27.453125 470.878906 26.421875 469.847656 25.148438 469.847656 C 23.875 469.847656 22.84375 470.878906 22.84375 472.152344 C 22.84375 473.425781 23.875 474.457031 25.148438 474.457031 C 26.421875 474.457031 27.453125 473.425781 27.453125 472.152344 Z M 27.453125 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 6.09375 472.152344 C 6.09375 470.878906 5.0625 469.847656 3.789062 469.847656 C 2.515625 469.847656 1.484375 470.878906 1.484375 472.152344 C 1.484375 473.425781 2.515625 474.457031 3.789062 474.457031 C 5.0625 474.457031 6.09375 473.425781 6.09375 472.152344 Z M 6.09375 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.058594 472.152344 C 27.058594 470.878906 26.027344 469.847656 24.753906 469.847656 C 23.480469 469.847656 22.449219 470.878906 22.449219 472.152344 C 22.449219 473.425781 23.480469 474.457031 24.753906 474.457031 C 26.027344 474.457031 27.058594 473.425781 27.058594 472.152344 Z M 27.058594 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.5 472.152344 C 40.5 470.878906 39.46875 469.847656 38.195312 469.847656 C 36.921875 469.847656 35.890625 470.878906 35.890625 472.152344 C 35.890625 473.425781 36.921875 474.457031 38.195312 474.457031 C 39.46875 474.457031 40.5 473.425781 40.5 472.152344 Z M 40.5 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 18.050781 472.152344 C 18.050781 470.878906 17.019531 469.847656 15.746094 469.847656 C 14.472656 469.847656 13.441406 470.878906 13.441406 472.152344 C 13.441406 473.425781 14.472656 474.457031 15.746094 474.457031 C 17.019531 474.457031 18.050781 473.425781 18.050781 472.152344 Z M 18.050781 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 18.511719 472.152344 C 18.511719 470.878906 17.480469 469.847656 16.207031 469.847656 C 14.933594 469.847656 13.902344 470.878906 13.902344 472.152344 C 13.902344 473.425781 14.933594 474.457031 16.207031 474.457031 C 17.480469 474.457031 18.511719 473.425781 18.511719 472.152344 Z M 18.511719 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.175781 472.152344 C 46.175781 470.878906 45.144531 469.847656 43.871094 469.847656 C 42.597656 469.847656 41.566406 470.878906 41.566406 472.152344 C 41.566406 473.425781 42.597656 474.457031 43.871094 474.457031 C 45.144531 474.457031 46.175781 473.425781 46.175781 472.152344 Z M 46.175781 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.882812 472.152344 C 34.882812 470.878906 33.851562 469.847656 32.578125 469.847656 C 31.304688 469.847656 30.273438 470.878906 30.273438 472.152344 C 30.273438 473.425781 31.304688 474.457031 32.578125 474.457031 C 33.851562 474.457031 34.882812 473.425781 34.882812 472.152344 Z M 34.882812 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 17.078125 472.152344 C 17.078125 470.878906 16.046875 469.847656 14.773438 469.847656 C 13.5 469.847656 12.46875 470.878906 12.46875 472.152344 C 12.46875 473.425781 13.5 474.457031 14.773438 474.457031 C 16.046875 474.457031 17.078125 473.425781 17.078125 472.152344 Z M 17.078125 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.816406 472.152344 C 24.816406 470.878906 23.785156 469.847656 22.511719 469.847656 C 21.238281 469.847656 20.207031 470.878906 20.207031 472.152344 C 20.207031 473.425781 21.238281 474.457031 22.511719 474.457031 C 23.785156 474.457031 24.816406 473.425781 24.816406 472.152344 Z M 24.816406 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.828125 472.152344 C 32.828125 470.878906 31.796875 469.847656 30.523438 469.847656 C 29.25 469.847656 28.21875 470.878906 28.21875 472.152344 C 28.21875 473.425781 29.25 474.457031 30.523438 474.457031 C 31.796875 474.457031 32.828125 473.425781 32.828125 472.152344 Z M 32.828125 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 5.664062 472.152344 C 5.664062 470.878906 4.632812 469.847656 3.359375 469.847656 C 2.085938 469.847656 1.054688 470.878906 1.054688 472.152344 C 1.054688 473.425781 2.085938 474.457031 3.359375 474.457031 C 4.632812 474.457031 5.664062 473.425781 5.664062 472.152344 Z M 5.664062 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.347656 472.152344 C 28.347656 470.878906 27.316406 469.847656 26.042969 469.847656 C 24.769531 469.847656 23.738281 470.878906 23.738281 472.152344 C 23.738281 473.425781 24.769531 474.457031 26.042969 474.457031 C 27.316406 474.457031 28.347656 473.425781 28.347656 472.152344 Z M 28.347656 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 21.917969 472.152344 C 21.917969 470.878906 20.886719 469.847656 19.613281 469.847656 C 18.339844 469.847656 17.308594 470.878906 17.308594 472.152344 C 17.308594 473.425781 18.339844 474.457031 19.613281 474.457031 C 20.886719 474.457031 21.917969 473.425781 21.917969 472.152344 Z M 21.917969 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 10.347656 472.152344 C 10.347656 470.878906 9.316406 469.847656 8.042969 469.847656 C 6.769531 469.847656 5.738281 470.878906 5.738281 472.152344 C 5.738281 473.425781 6.769531 474.457031 8.042969 474.457031 C 9.316406 474.457031 10.347656 473.425781 10.347656 472.152344 Z M 10.347656 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.457031 472.152344 C 42.457031 470.878906 41.425781 469.847656 40.152344 469.847656 C 38.878906 469.847656 37.847656 470.878906 37.847656 472.152344 C 37.847656 473.425781 38.878906 474.457031 40.152344 474.457031 C 41.425781 474.457031 42.457031 473.425781 42.457031 472.152344 Z M 42.457031 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.886719 472.152344 C 33.886719 470.878906 32.855469 469.847656 31.582031 469.847656 C 30.308594 469.847656 29.277344 470.878906 29.277344 472.152344 C 29.277344 473.425781 30.308594 474.457031 31.582031 474.457031 C 32.855469 474.457031 33.886719 473.425781 33.886719 472.152344 Z M 33.886719 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 7.488281 472.152344 C 7.488281 470.878906 6.457031 469.847656 5.183594 469.847656 C 3.910156 469.847656 2.878906 470.878906 2.878906 472.152344 C 2.878906 473.425781 3.910156 474.457031 5.183594 474.457031 C 6.457031 474.457031 7.488281 473.425781 7.488281 472.152344 Z M 7.488281 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 14 472.152344 C 14 470.878906 12.96875 469.847656 11.695312 469.847656 C 10.421875 469.847656 9.390625 470.878906 9.390625 472.152344 C 9.390625 473.425781 10.421875 474.457031 11.695312 474.457031 C 12.96875 474.457031 14 473.425781 14 472.152344 Z M 14 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.828125 472.152344 C 27.828125 470.878906 26.796875 469.847656 25.523438 469.847656 C 24.25 469.847656 23.21875 470.878906 23.21875 472.152344 C 23.21875 473.425781 24.25 474.457031 25.523438 474.457031 C 26.796875 474.457031 27.828125 473.425781 27.828125 472.152344 Z M 27.828125 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 5.777344 472.152344 C 5.777344 470.878906 4.746094 469.847656 3.472656 469.847656 C 2.199219 469.847656 1.167969 470.878906 1.167969 472.152344 C 1.167969 473.425781 2.199219 474.457031 3.472656 474.457031 C 4.746094 474.457031 5.777344 473.425781 5.777344 472.152344 Z M 5.777344 472.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.195312 467.308594 C 43.195312 466.035156 42.164062 465.003906 40.890625 465.003906 C 39.617188 465.003906 38.585938 466.035156 38.585938 467.308594 C 38.585938 468.582031 39.617188 469.613281 40.890625 469.613281 C 42.164062 469.613281 43.195312 468.582031 43.195312 467.308594 Z M 43.195312 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 10.140625 467.308594 C 10.140625 466.035156 9.109375 465.003906 7.835938 465.003906 C 6.5625 465.003906 5.53125 466.035156 5.53125 467.308594 C 5.53125 468.582031 6.5625 469.613281 7.835938 469.613281 C 9.109375 469.613281 10.140625 468.582031 10.140625 467.308594 Z M 10.140625 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.328125 467.308594 C 30.328125 466.035156 29.296875 465.003906 28.023438 465.003906 C 26.75 465.003906 25.71875 466.035156 25.71875 467.308594 C 25.71875 468.582031 26.75 469.613281 28.023438 469.613281 C 29.296875 469.613281 30.328125 468.582031 30.328125 467.308594 Z M 30.328125 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 12.0625 467.308594 C 12.0625 466.035156 11.03125 465.003906 9.757812 465.003906 C 8.484375 465.003906 7.453125 466.035156 7.453125 467.308594 C 7.453125 468.582031 8.484375 469.613281 9.757812 469.613281 C 11.03125 469.613281 12.0625 468.582031 12.0625 467.308594 Z M 12.0625 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 17.921875 467.308594 C 17.921875 466.035156 16.890625 465.003906 15.617188 465.003906 C 14.34375 465.003906 13.3125 466.035156 13.3125 467.308594 C 13.3125 468.582031 14.34375 469.613281 15.617188 469.613281 C 16.890625 469.613281 17.921875 468.582031 17.921875 467.308594 Z M 17.921875 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.292969 467.308594 C 26.292969 466.035156 25.261719 465.003906 23.988281 465.003906 C 22.714844 465.003906 21.683594 466.035156 21.683594 467.308594 C 21.683594 468.582031 22.714844 469.613281 23.988281 469.613281 C 25.261719 469.613281 26.292969 468.582031 26.292969 467.308594 Z M 26.292969 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.816406 467.308594 C 30.816406 466.035156 29.785156 465.003906 28.511719 465.003906 C 27.238281 465.003906 26.207031 466.035156 26.207031 467.308594 C 26.207031 468.582031 27.238281 469.613281 28.511719 469.613281 C 29.785156 469.613281 30.816406 468.582031 30.816406 467.308594 Z M 30.816406 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.75 467.308594 C 15.75 466.035156 14.71875 465.003906 13.445312 465.003906 C 12.171875 465.003906 11.140625 466.035156 11.140625 467.308594 C 11.140625 468.582031 12.171875 469.613281 13.445312 469.613281 C 14.71875 469.613281 15.75 468.582031 15.75 467.308594 Z M 15.75 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.886719 467.308594 C 46.886719 466.035156 45.855469 465.003906 44.582031 465.003906 C 43.308594 465.003906 42.277344 466.035156 42.277344 467.308594 C 42.277344 468.582031 43.308594 469.613281 44.582031 469.613281 C 45.855469 469.613281 46.886719 468.582031 46.886719 467.308594 Z M 46.886719 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.21875 467.308594 C 29.21875 466.035156 28.1875 465.003906 26.914062 465.003906 C 25.640625 465.003906 24.609375 466.035156 24.609375 467.308594 C 24.609375 468.582031 25.640625 469.613281 26.914062 469.613281 C 28.1875 469.613281 29.21875 468.582031 29.21875 467.308594 Z M 29.21875 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 7.363281 467.308594 C 7.363281 466.035156 6.332031 465.003906 5.058594 465.003906 C 3.785156 465.003906 2.753906 466.035156 2.753906 467.308594 C 2.753906 468.582031 3.785156 469.613281 5.058594 469.613281 C 6.332031 469.613281 7.363281 468.582031 7.363281 467.308594 Z M 7.363281 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.8125 467.308594 C 28.8125 466.035156 27.78125 465.003906 26.507812 465.003906 C 25.234375 465.003906 24.203125 466.035156 24.203125 467.308594 C 24.203125 468.582031 25.234375 469.613281 26.507812 469.613281 C 27.78125 469.613281 28.8125 468.582031 28.8125 467.308594 Z M 28.8125 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.570312 467.308594 C 42.570312 466.035156 41.539062 465.003906 40.265625 465.003906 C 38.992188 465.003906 37.960938 466.035156 37.960938 467.308594 C 37.960938 468.582031 38.992188 469.613281 40.265625 469.613281 C 41.539062 469.613281 42.570312 468.582031 42.570312 467.308594 Z M 42.570312 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.597656 467.308594 C 19.597656 466.035156 18.566406 465.003906 17.292969 465.003906 C 16.019531 465.003906 14.988281 466.035156 14.988281 467.308594 C 14.988281 468.582031 16.019531 469.613281 17.292969 469.613281 C 18.566406 469.613281 19.597656 468.582031 19.597656 467.308594 Z M 19.597656 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.070312 467.308594 C 20.070312 466.035156 19.039062 465.003906 17.765625 465.003906 C 16.492188 465.003906 15.460938 466.035156 15.460938 467.308594 C 15.460938 468.582031 16.492188 469.613281 17.765625 469.613281 C 19.039062 469.613281 20.070312 468.582031 20.070312 467.308594 Z M 20.070312 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.375 467.308594 C 48.375 466.035156 47.34375 465.003906 46.070312 465.003906 C 44.796875 465.003906 43.765625 466.035156 43.765625 467.308594 C 43.765625 468.582031 44.796875 469.613281 46.070312 469.613281 C 47.34375 469.613281 48.375 468.582031 48.375 467.308594 Z M 48.375 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.820312 467.308594 C 36.820312 466.035156 35.789062 465.003906 34.515625 465.003906 C 33.242188 465.003906 32.210938 466.035156 32.210938 467.308594 C 32.210938 468.582031 33.242188 469.613281 34.515625 469.613281 C 35.789062 469.613281 36.820312 468.582031 36.820312 467.308594 Z M 36.820312 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 18.605469 467.308594 C 18.605469 466.035156 17.574219 465.003906 16.300781 465.003906 C 15.027344 465.003906 13.996094 466.035156 13.996094 467.308594 C 13.996094 468.582031 15.027344 469.613281 16.300781 469.613281 C 17.574219 469.613281 18.605469 468.582031 18.605469 467.308594 Z M 18.605469 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.519531 467.308594 C 26.519531 466.035156 25.488281 465.003906 24.214844 465.003906 C 22.941406 465.003906 21.910156 466.035156 21.910156 467.308594 C 21.910156 468.582031 22.941406 469.613281 24.214844 469.613281 C 25.488281 469.613281 26.519531 468.582031 26.519531 467.308594 Z M 26.519531 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.71875 467.308594 C 34.71875 466.035156 33.6875 465.003906 32.414062 465.003906 C 31.140625 465.003906 30.109375 466.035156 30.109375 467.308594 C 30.109375 468.582031 31.140625 469.613281 32.414062 469.613281 C 33.6875 469.613281 34.71875 468.582031 34.71875 467.308594 Z M 34.71875 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 6.921875 467.308594 C 6.921875 466.035156 5.890625 465.003906 4.617188 465.003906 C 3.34375 465.003906 2.3125 466.035156 2.3125 467.308594 C 2.3125 468.582031 3.34375 469.613281 4.617188 469.613281 C 5.890625 469.613281 6.921875 468.582031 6.921875 467.308594 Z M 6.921875 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.136719 467.308594 C 30.136719 466.035156 29.105469 465.003906 27.832031 465.003906 C 26.558594 465.003906 25.527344 466.035156 25.527344 467.308594 C 25.527344 468.582031 26.558594 469.613281 27.832031 469.613281 C 29.105469 469.613281 30.136719 468.582031 30.136719 467.308594 Z M 30.136719 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.554688 467.308594 C 23.554688 466.035156 22.523438 465.003906 21.25 465.003906 C 19.976562 465.003906 18.945312 466.035156 18.945312 467.308594 C 18.945312 468.582031 19.976562 469.613281 21.25 469.613281 C 22.523438 469.613281 23.554688 468.582031 23.554688 467.308594 Z M 23.554688 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 11.71875 467.308594 C 11.71875 466.035156 10.6875 465.003906 9.414062 465.003906 C 8.140625 465.003906 7.109375 466.035156 7.109375 467.308594 C 7.109375 468.582031 8.140625 469.613281 9.414062 469.613281 C 10.6875 469.613281 11.71875 468.582031 11.71875 467.308594 Z M 11.71875 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.570312 467.308594 C 44.570312 466.035156 43.539062 465.003906 42.265625 465.003906 C 40.992188 465.003906 39.960938 466.035156 39.960938 467.308594 C 39.960938 468.582031 40.992188 469.613281 42.265625 469.613281 C 43.539062 469.613281 44.570312 468.582031 44.570312 467.308594 Z M 44.570312 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.800781 467.308594 C 35.800781 466.035156 34.769531 465.003906 33.496094 465.003906 C 32.222656 465.003906 31.191406 466.035156 31.191406 467.308594 C 31.191406 468.582031 32.222656 469.613281 33.496094 469.613281 C 34.769531 469.613281 35.800781 468.582031 35.800781 467.308594 Z M 35.800781 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 8.792969 467.308594 C 8.792969 466.035156 7.761719 465.003906 6.488281 465.003906 C 5.214844 465.003906 4.183594 466.035156 4.183594 467.308594 C 4.183594 468.582031 5.214844 469.613281 6.488281 469.613281 C 7.761719 469.613281 8.792969 468.582031 8.792969 467.308594 Z M 8.792969 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.453125 467.308594 C 15.453125 466.035156 14.421875 465.003906 13.148438 465.003906 C 11.875 465.003906 10.84375 466.035156 10.84375 467.308594 C 10.84375 468.582031 11.875 469.613281 13.148438 469.613281 C 14.421875 469.613281 15.453125 468.582031 15.453125 467.308594 Z M 15.453125 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.601562 467.308594 C 29.601562 466.035156 28.570312 465.003906 27.296875 465.003906 C 26.023438 465.003906 24.992188 466.035156 24.992188 467.308594 C 24.992188 468.582031 26.023438 469.613281 27.296875 469.613281 C 28.570312 469.613281 29.601562 468.582031 29.601562 467.308594 Z M 29.601562 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 7.039062 467.308594 C 7.039062 466.035156 6.007812 465.003906 4.734375 465.003906 C 3.460938 465.003906 2.429688 466.035156 2.429688 467.308594 C 2.429688 468.582031 3.460938 469.613281 4.734375 469.613281 C 6.007812 469.613281 7.039062 468.582031 7.039062 467.308594 Z M 7.039062 467.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.390625 462.464844 C 45.390625 461.191406 44.359375 460.160156 43.085938 460.160156 C 41.8125 460.160156 40.78125 461.191406 40.78125 462.464844 C 40.78125 463.738281 41.8125 464.769531 43.085938 464.769531 C 44.359375 464.769531 45.390625 463.738281 45.390625 462.464844 Z M 45.390625 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 11.914062 462.464844 C 11.914062 461.191406 10.882812 460.160156 9.609375 460.160156 C 8.335938 460.160156 7.304688 461.191406 7.304688 462.464844 C 7.304688 463.738281 8.335938 464.769531 9.609375 464.769531 C 10.882812 464.769531 11.914062 463.738281 11.914062 462.464844 Z M 11.914062 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.359375 462.464844 C 32.359375 461.191406 31.328125 460.160156 30.054688 460.160156 C 28.78125 460.160156 27.75 461.191406 27.75 462.464844 C 27.75 463.738281 28.78125 464.769531 30.054688 464.769531 C 31.328125 464.769531 32.359375 463.738281 32.359375 462.464844 Z M 32.359375 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 13.863281 462.464844 C 13.863281 461.191406 12.832031 460.160156 11.558594 460.160156 C 10.285156 460.160156 9.253906 461.191406 9.253906 462.464844 C 9.253906 463.738281 10.285156 464.769531 11.558594 464.769531 C 12.832031 464.769531 13.863281 463.738281 13.863281 462.464844 Z M 13.863281 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.796875 462.464844 C 19.796875 461.191406 18.765625 460.160156 17.492188 460.160156 C 16.21875 460.160156 15.1875 461.191406 15.1875 462.464844 C 15.1875 463.738281 16.21875 464.769531 17.492188 464.769531 C 18.765625 464.769531 19.796875 463.738281 19.796875 462.464844 Z M 19.796875 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.273438 462.464844 C 28.273438 461.191406 27.242188 460.160156 25.96875 460.160156 C 24.695312 460.160156 23.664062 461.191406 23.664062 462.464844 C 23.664062 463.738281 24.695312 464.769531 25.96875 464.769531 C 27.242188 464.769531 28.273438 463.738281 28.273438 462.464844 Z M 28.273438 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.855469 462.464844 C 32.855469 461.191406 31.824219 460.160156 30.550781 460.160156 C 29.277344 460.160156 28.246094 461.191406 28.246094 462.464844 C 28.246094 463.738281 29.277344 464.769531 30.550781 464.769531 C 31.824219 464.769531 32.855469 463.738281 32.855469 462.464844 Z M 32.855469 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 17.597656 462.464844 C 17.597656 461.191406 16.566406 460.160156 15.292969 460.160156 C 14.019531 460.160156 12.988281 461.191406 12.988281 462.464844 C 12.988281 463.738281 14.019531 464.769531 15.292969 464.769531 C 16.566406 464.769531 17.597656 463.738281 17.597656 462.464844 Z M 17.597656 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.128906 462.464844 C 49.128906 461.191406 48.097656 460.160156 46.824219 460.160156 C 45.550781 460.160156 44.519531 461.191406 44.519531 462.464844 C 44.519531 463.738281 45.550781 464.769531 46.824219 464.769531 C 48.097656 464.769531 49.128906 463.738281 49.128906 462.464844 Z M 49.128906 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.238281 462.464844 C 31.238281 461.191406 30.207031 460.160156 28.933594 460.160156 C 27.660156 460.160156 26.628906 461.191406 26.628906 462.464844 C 26.628906 463.738281 27.660156 464.769531 28.933594 464.769531 C 30.207031 464.769531 31.238281 463.738281 31.238281 462.464844 Z M 31.238281 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 9.105469 462.464844 C 9.105469 461.191406 8.074219 460.160156 6.800781 460.160156 C 5.527344 460.160156 4.496094 461.191406 4.496094 462.464844 C 4.496094 463.738281 5.527344 464.769531 6.800781 464.769531 C 8.074219 464.769531 9.105469 463.738281 9.105469 462.464844 Z M 9.105469 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.828125 462.464844 C 30.828125 461.191406 29.796875 460.160156 28.523438 460.160156 C 27.25 460.160156 26.21875 461.191406 26.21875 462.464844 C 26.21875 463.738281 27.25 464.769531 28.523438 464.769531 C 29.796875 464.769531 30.828125 463.738281 30.828125 462.464844 Z M 30.828125 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.757812 462.464844 C 44.757812 461.191406 43.726562 460.160156 42.453125 460.160156 C 41.179688 460.160156 40.148438 461.191406 40.148438 462.464844 C 40.148438 463.738281 41.179688 464.769531 42.453125 464.769531 C 43.726562 464.769531 44.757812 463.738281 44.757812 462.464844 Z M 44.757812 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 21.492188 462.464844 C 21.492188 461.191406 20.460938 460.160156 19.1875 460.160156 C 17.914062 460.160156 16.882812 461.191406 16.882812 462.464844 C 16.882812 463.738281 17.914062 464.769531 19.1875 464.769531 C 20.460938 464.769531 21.492188 463.738281 21.492188 462.464844 Z M 21.492188 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 21.972656 462.464844 C 21.972656 461.191406 20.941406 460.160156 19.667969 460.160156 C 18.394531 460.160156 17.363281 461.191406 17.363281 462.464844 C 17.363281 463.738281 18.394531 464.769531 19.667969 464.769531 C 20.941406 464.769531 21.972656 463.738281 21.972656 462.464844 Z M 21.972656 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.636719 462.464844 C 50.636719 461.191406 49.605469 460.160156 48.332031 460.160156 C 47.058594 460.160156 46.027344 461.191406 46.027344 462.464844 C 46.027344 463.738281 47.058594 464.769531 48.332031 464.769531 C 49.605469 464.769531 50.636719 463.738281 50.636719 462.464844 Z M 50.636719 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.9375 462.464844 C 38.9375 461.191406 37.90625 460.160156 36.632812 460.160156 C 35.359375 460.160156 34.328125 461.191406 34.328125 462.464844 C 34.328125 463.738281 35.359375 464.769531 36.632812 464.769531 C 37.90625 464.769531 38.9375 463.738281 38.9375 462.464844 Z M 38.9375 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.488281 462.464844 C 20.488281 461.191406 19.457031 460.160156 18.183594 460.160156 C 16.910156 460.160156 15.878906 461.191406 15.878906 462.464844 C 15.878906 463.738281 16.910156 464.769531 18.183594 464.769531 C 19.457031 464.769531 20.488281 463.738281 20.488281 462.464844 Z M 20.488281 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.503906 462.464844 C 28.503906 461.191406 27.472656 460.160156 26.199219 460.160156 C 24.925781 460.160156 23.894531 461.191406 23.894531 462.464844 C 23.894531 463.738281 24.925781 464.769531 26.199219 464.769531 C 27.472656 464.769531 28.503906 463.738281 28.503906 462.464844 Z M 28.503906 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.804688 462.464844 C 36.804688 461.191406 35.773438 460.160156 34.5 460.160156 C 33.226562 460.160156 32.195312 461.191406 32.195312 462.464844 C 32.195312 463.738281 33.226562 464.769531 34.5 464.769531 C 35.773438 464.769531 36.804688 463.738281 36.804688 462.464844 Z M 36.804688 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 8.65625 462.464844 C 8.65625 461.191406 7.625 460.160156 6.351562 460.160156 C 5.078125 460.160156 4.046875 461.191406 4.046875 462.464844 C 4.046875 463.738281 5.078125 464.769531 6.351562 464.769531 C 7.625 464.769531 8.65625 463.738281 8.65625 462.464844 Z M 8.65625 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.164062 462.464844 C 32.164062 461.191406 31.132812 460.160156 29.859375 460.160156 C 28.585938 460.160156 27.554688 461.191406 27.554688 462.464844 C 27.554688 463.738281 28.585938 464.769531 29.859375 464.769531 C 31.132812 464.769531 32.164062 463.738281 32.164062 462.464844 Z M 32.164062 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.5 462.464844 C 25.5 461.191406 24.46875 460.160156 23.195312 460.160156 C 21.921875 460.160156 20.890625 461.191406 20.890625 462.464844 C 20.890625 463.738281 21.921875 464.769531 23.195312 464.769531 C 24.46875 464.769531 25.5 463.738281 25.5 462.464844 Z M 25.5 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 13.511719 462.464844 C 13.511719 461.191406 12.480469 460.160156 11.207031 460.160156 C 9.933594 460.160156 8.902344 461.191406 8.902344 462.464844 C 8.902344 463.738281 9.933594 464.769531 11.207031 464.769531 C 12.480469 464.769531 13.511719 463.738281 13.511719 462.464844 Z M 13.511719 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.785156 462.464844 C 46.785156 461.191406 45.753906 460.160156 44.480469 460.160156 C 43.207031 460.160156 42.175781 461.191406 42.175781 462.464844 C 42.175781 463.738281 43.207031 464.769531 44.480469 464.769531 C 45.753906 464.769531 46.785156 463.738281 46.785156 462.464844 Z M 46.785156 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.902344 462.464844 C 37.902344 461.191406 36.871094 460.160156 35.597656 460.160156 C 34.324219 460.160156 33.292969 461.191406 33.292969 462.464844 C 33.292969 463.738281 34.324219 464.769531 35.597656 464.769531 C 36.871094 464.769531 37.902344 463.738281 37.902344 462.464844 Z M 37.902344 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 10.550781 462.464844 C 10.550781 461.191406 9.519531 460.160156 8.246094 460.160156 C 6.972656 460.160156 5.941406 461.191406 5.941406 462.464844 C 5.941406 463.738281 6.972656 464.769531 8.246094 464.769531 C 9.519531 464.769531 10.550781 463.738281 10.550781 462.464844 Z M 10.550781 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 17.296875 462.464844 C 17.296875 461.191406 16.265625 460.160156 14.992188 460.160156 C 13.71875 460.160156 12.6875 461.191406 12.6875 462.464844 C 12.6875 463.738281 13.71875 464.769531 14.992188 464.769531 C 16.265625 464.769531 17.296875 463.738281 17.296875 462.464844 Z M 17.296875 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.625 462.464844 C 31.625 461.191406 30.59375 460.160156 29.320312 460.160156 C 28.046875 460.160156 27.015625 461.191406 27.015625 462.464844 C 27.015625 463.738281 28.046875 464.769531 29.320312 464.769531 C 30.59375 464.769531 31.625 463.738281 31.625 462.464844 Z M 31.625 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 8.777344 462.464844 C 8.777344 461.191406 7.746094 460.160156 6.472656 460.160156 C 5.199219 460.160156 4.167969 461.191406 4.167969 462.464844 C 4.167969 463.738281 5.199219 464.769531 6.472656 464.769531 C 7.746094 464.769531 8.777344 463.738281 8.777344 462.464844 Z M 8.777344 462.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.675781 457.621094 C 47.675781 456.347656 46.644531 455.316406 45.371094 455.316406 C 44.097656 455.316406 43.066406 456.347656 43.066406 457.621094 C 43.066406 458.894531 44.097656 459.925781 45.371094 459.925781 C 46.644531 459.925781 47.675781 458.894531 47.675781 457.621094 Z M 47.675781 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 14.117188 457.621094 C 14.117188 456.347656 13.085938 455.316406 11.8125 455.316406 C 10.539062 455.316406 9.507812 456.347656 9.507812 457.621094 C 9.507812 458.894531 10.539062 459.925781 11.8125 459.925781 C 13.085938 459.925781 14.117188 458.894531 14.117188 457.621094 Z M 14.117188 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.613281 457.621094 C 34.613281 456.347656 33.582031 455.316406 32.308594 455.316406 C 31.035156 455.316406 30.003906 456.347656 30.003906 457.621094 C 30.003906 458.894531 31.035156 459.925781 32.308594 459.925781 C 33.582031 459.925781 34.613281 458.894531 34.613281 457.621094 Z M 34.613281 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.066406 457.621094 C 16.066406 456.347656 15.035156 455.316406 13.761719 455.316406 C 12.488281 455.316406 11.457031 456.347656 11.457031 457.621094 C 11.457031 458.894531 12.488281 459.925781 13.761719 459.925781 C 15.035156 459.925781 16.066406 458.894531 16.066406 457.621094 Z M 16.066406 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.019531 457.621094 C 22.019531 456.347656 20.988281 455.316406 19.714844 455.316406 C 18.441406 455.316406 17.410156 456.347656 17.410156 457.621094 C 17.410156 458.894531 18.441406 459.925781 19.714844 459.925781 C 20.988281 459.925781 22.019531 458.894531 22.019531 457.621094 Z M 22.019531 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.515625 457.621094 C 30.515625 456.347656 29.484375 455.316406 28.210938 455.316406 C 26.9375 455.316406 25.90625 456.347656 25.90625 457.621094 C 25.90625 458.894531 26.9375 459.925781 28.210938 459.925781 C 29.484375 459.925781 30.515625 458.894531 30.515625 457.621094 Z M 30.515625 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.109375 457.621094 C 35.109375 456.347656 34.078125 455.316406 32.804688 455.316406 C 31.53125 455.316406 30.5 456.347656 30.5 457.621094 C 30.5 458.894531 31.53125 459.925781 32.804688 459.925781 C 34.078125 459.925781 35.109375 458.894531 35.109375 457.621094 Z M 35.109375 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.8125 457.621094 C 19.8125 456.347656 18.78125 455.316406 17.507812 455.316406 C 16.234375 455.316406 15.203125 456.347656 15.203125 457.621094 C 15.203125 458.894531 16.234375 459.925781 17.507812 459.925781 C 18.78125 459.925781 19.8125 458.894531 19.8125 457.621094 Z M 19.8125 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.425781 457.621094 C 51.425781 456.347656 50.394531 455.316406 49.121094 455.316406 C 47.847656 455.316406 46.816406 456.347656 46.816406 457.621094 C 46.816406 458.894531 47.847656 459.925781 49.121094 459.925781 C 50.394531 459.925781 51.425781 458.894531 51.425781 457.621094 Z M 51.425781 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.488281 457.621094 C 33.488281 456.347656 32.457031 455.316406 31.183594 455.316406 C 29.910156 455.316406 28.878906 456.347656 28.878906 457.621094 C 28.878906 458.894531 29.910156 459.925781 31.183594 459.925781 C 32.457031 459.925781 33.488281 458.894531 33.488281 457.621094 Z M 33.488281 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 11.296875 457.621094 C 11.296875 456.347656 10.265625 455.316406 8.992188 455.316406 C 7.71875 455.316406 6.6875 456.347656 6.6875 457.621094 C 6.6875 458.894531 7.71875 459.925781 8.992188 459.925781 C 10.265625 459.925781 11.296875 458.894531 11.296875 457.621094 Z M 11.296875 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.078125 457.621094 C 33.078125 456.347656 32.046875 455.316406 30.773438 455.316406 C 29.5 455.316406 28.46875 456.347656 28.46875 457.621094 C 28.46875 458.894531 29.5 459.925781 30.773438 459.925781 C 32.046875 459.925781 33.078125 458.894531 33.078125 457.621094 Z M 33.078125 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.039062 457.621094 C 47.039062 456.347656 46.007812 455.316406 44.734375 455.316406 C 43.460938 455.316406 42.429688 456.347656 42.429688 457.621094 C 42.429688 458.894531 43.460938 459.925781 44.734375 459.925781 C 46.007812 459.925781 47.039062 458.894531 47.039062 457.621094 Z M 47.039062 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.71875 457.621094 C 23.71875 456.347656 22.6875 455.316406 21.414062 455.316406 C 20.140625 455.316406 19.109375 456.347656 19.109375 457.621094 C 19.109375 458.894531 20.140625 459.925781 21.414062 459.925781 C 22.6875 459.925781 23.71875 458.894531 23.71875 457.621094 Z M 23.71875 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.199219 457.621094 C 24.199219 456.347656 23.167969 455.316406 21.894531 455.316406 C 20.621094 455.316406 19.589844 456.347656 19.589844 457.621094 C 19.589844 458.894531 20.621094 459.925781 21.894531 459.925781 C 23.167969 459.925781 24.199219 458.894531 24.199219 457.621094 Z M 24.199219 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.9375 457.621094 C 52.9375 456.347656 51.90625 455.316406 50.632812 455.316406 C 49.359375 455.316406 48.328125 456.347656 48.328125 457.621094 C 48.328125 458.894531 49.359375 459.925781 50.632812 459.925781 C 51.90625 459.925781 52.9375 458.894531 52.9375 457.621094 Z M 52.9375 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.207031 457.621094 C 41.207031 456.347656 40.175781 455.316406 38.902344 455.316406 C 37.628906 455.316406 36.597656 456.347656 36.597656 457.621094 C 36.597656 458.894531 37.628906 459.925781 38.902344 459.925781 C 40.175781 459.925781 41.207031 458.894531 41.207031 457.621094 Z M 41.207031 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.710938 457.621094 C 22.710938 456.347656 21.679688 455.316406 20.40625 455.316406 C 19.132812 455.316406 18.101562 456.347656 18.101562 457.621094 C 18.101562 458.894531 19.132812 459.925781 20.40625 459.925781 C 21.679688 459.925781 22.710938 458.894531 22.710938 457.621094 Z M 22.710938 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.746094 457.621094 C 30.746094 456.347656 29.714844 455.316406 28.441406 455.316406 C 27.167969 455.316406 26.136719 456.347656 26.136719 457.621094 C 26.136719 458.894531 27.167969 459.925781 28.441406 459.925781 C 29.714844 459.925781 30.746094 458.894531 30.746094 457.621094 Z M 30.746094 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.070312 457.621094 C 39.070312 456.347656 38.039062 455.316406 36.765625 455.316406 C 35.492188 455.316406 34.460938 456.347656 34.460938 457.621094 C 34.460938 458.894531 35.492188 459.925781 36.765625 459.925781 C 38.039062 459.925781 39.070312 458.894531 39.070312 457.621094 Z M 39.070312 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 10.851562 457.621094 C 10.851562 456.347656 9.820312 455.316406 8.546875 455.316406 C 7.273438 455.316406 6.242188 456.347656 6.242188 457.621094 C 6.242188 458.894531 7.273438 459.925781 8.546875 459.925781 C 9.820312 459.925781 10.851562 458.894531 10.851562 457.621094 Z M 10.851562 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.417969 457.621094 C 34.417969 456.347656 33.386719 455.316406 32.113281 455.316406 C 30.839844 455.316406 29.808594 456.347656 29.808594 457.621094 C 29.808594 458.894531 30.839844 459.925781 32.113281 459.925781 C 33.386719 459.925781 34.417969 458.894531 34.417969 457.621094 Z M 34.417969 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.738281 457.621094 C 27.738281 456.347656 26.707031 455.316406 25.433594 455.316406 C 24.160156 455.316406 23.128906 456.347656 23.128906 457.621094 C 23.128906 458.894531 24.160156 459.925781 25.433594 459.925781 C 26.707031 459.925781 27.738281 458.894531 27.738281 457.621094 Z M 27.738281 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.71875 457.621094 C 15.71875 456.347656 14.6875 455.316406 13.414062 455.316406 C 12.140625 455.316406 11.109375 456.347656 11.109375 457.621094 C 11.109375 458.894531 12.140625 459.925781 13.414062 459.925781 C 14.6875 459.925781 15.71875 458.894531 15.71875 457.621094 Z M 15.71875 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.074219 457.621094 C 49.074219 456.347656 48.042969 455.316406 46.769531 455.316406 C 45.496094 455.316406 44.464844 456.347656 44.464844 457.621094 C 44.464844 458.894531 45.496094 459.925781 46.769531 459.925781 C 48.042969 459.925781 49.074219 458.894531 49.074219 457.621094 Z M 49.074219 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.171875 457.621094 C 40.171875 456.347656 39.140625 455.316406 37.867188 455.316406 C 36.59375 455.316406 35.5625 456.347656 35.5625 457.621094 C 35.5625 458.894531 36.59375 459.925781 37.867188 459.925781 C 39.140625 459.925781 40.171875 458.894531 40.171875 457.621094 Z M 40.171875 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 12.75 457.621094 C 12.75 456.347656 11.71875 455.316406 10.445312 455.316406 C 9.171875 455.316406 8.140625 456.347656 8.140625 457.621094 C 8.140625 458.894531 9.171875 459.925781 10.445312 459.925781 C 11.71875 459.925781 12.75 458.894531 12.75 457.621094 Z M 12.75 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.511719 457.621094 C 19.511719 456.347656 18.480469 455.316406 17.207031 455.316406 C 15.933594 455.316406 14.902344 456.347656 14.902344 457.621094 C 14.902344 458.894531 15.933594 459.925781 17.207031 459.925781 C 18.480469 459.925781 19.511719 458.894531 19.511719 457.621094 Z M 19.511719 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.878906 457.621094 C 33.878906 456.347656 32.847656 455.316406 31.574219 455.316406 C 30.300781 455.316406 29.269531 456.347656 29.269531 457.621094 C 29.269531 458.894531 30.300781 459.925781 31.574219 459.925781 C 32.847656 459.925781 33.878906 458.894531 33.878906 457.621094 Z M 33.878906 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 10.972656 457.621094 C 10.972656 456.347656 9.941406 455.316406 8.667969 455.316406 C 7.394531 455.316406 6.363281 456.347656 6.363281 457.621094 C 6.363281 458.894531 7.394531 459.925781 8.667969 459.925781 C 9.941406 459.925781 10.972656 458.894531 10.972656 457.621094 Z M 10.972656 457.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.03125 452.777344 C 50.03125 451.503906 49 450.472656 47.726562 450.472656 C 46.453125 450.472656 45.421875 451.503906 45.421875 452.777344 C 45.421875 454.050781 46.453125 455.082031 47.726562 455.082031 C 49 455.082031 50.03125 454.050781 50.03125 452.777344 Z M 50.03125 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.722656 452.777344 C 16.722656 451.503906 15.691406 450.472656 14.417969 450.472656 C 13.144531 450.472656 12.113281 451.503906 12.113281 452.777344 C 12.113281 454.050781 13.144531 455.082031 14.417969 455.082031 C 15.691406 455.082031 16.722656 454.050781 16.722656 452.777344 Z M 16.722656 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.0625 452.777344 C 37.0625 451.503906 36.03125 450.472656 34.757812 450.472656 C 33.484375 450.472656 32.453125 451.503906 32.453125 452.777344 C 32.453125 454.050781 33.484375 455.082031 34.757812 455.082031 C 36.03125 455.082031 37.0625 454.050781 37.0625 452.777344 Z M 37.0625 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 18.660156 452.777344 C 18.660156 451.503906 17.628906 450.472656 16.355469 450.472656 C 15.082031 450.472656 14.050781 451.503906 14.050781 452.777344 C 14.050781 454.050781 15.082031 455.082031 16.355469 455.082031 C 17.628906 455.082031 18.660156 454.050781 18.660156 452.777344 Z M 18.660156 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.566406 452.777344 C 24.566406 451.503906 23.535156 450.472656 22.261719 450.472656 C 20.988281 450.472656 19.957031 451.503906 19.957031 452.777344 C 19.957031 454.050781 20.988281 455.082031 22.261719 455.082031 C 23.535156 455.082031 24.566406 454.050781 24.566406 452.777344 Z M 24.566406 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33 452.777344 C 33 451.503906 31.96875 450.472656 30.695312 450.472656 C 29.421875 450.472656 28.390625 451.503906 28.390625 452.777344 C 28.390625 454.050781 29.421875 455.082031 30.695312 455.082031 C 31.96875 455.082031 33 454.050781 33 452.777344 Z M 33 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.558594 452.777344 C 37.558594 451.503906 36.527344 450.472656 35.253906 450.472656 C 33.980469 450.472656 32.949219 451.503906 32.949219 452.777344 C 32.949219 454.050781 33.980469 455.082031 35.253906 455.082031 C 36.527344 455.082031 37.558594 454.050781 37.558594 452.777344 Z M 37.558594 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.375 452.777344 C 22.375 451.503906 21.34375 450.472656 20.070312 450.472656 C 18.796875 450.472656 17.765625 451.503906 17.765625 452.777344 C 17.765625 454.050781 18.796875 455.082031 20.070312 455.082031 C 21.34375 455.082031 22.375 454.050781 22.375 452.777344 Z M 22.375 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.75 452.777344 C 53.75 451.503906 52.71875 450.472656 51.445312 450.472656 C 50.171875 450.472656 49.140625 451.503906 49.140625 452.777344 C 49.140625 454.050781 50.171875 455.082031 51.445312 455.082031 C 52.71875 455.082031 53.75 454.050781 53.75 452.777344 Z M 53.75 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.945312 452.777344 C 35.945312 451.503906 34.914062 450.472656 33.640625 450.472656 C 32.367188 450.472656 31.335938 451.503906 31.335938 452.777344 C 31.335938 454.050781 32.367188 455.082031 33.640625 455.082031 C 34.914062 455.082031 35.945312 454.050781 35.945312 452.777344 Z M 35.945312 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 13.925781 452.777344 C 13.925781 451.503906 12.894531 450.472656 11.621094 450.472656 C 10.347656 450.472656 9.316406 451.503906 9.316406 452.777344 C 9.316406 454.050781 10.347656 455.082031 11.621094 455.082031 C 12.894531 455.082031 13.925781 454.050781 13.925781 452.777344 Z M 13.925781 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.539062 452.777344 C 35.539062 451.503906 34.507812 450.472656 33.234375 450.472656 C 31.960938 450.472656 30.929688 451.503906 30.929688 452.777344 C 30.929688 454.050781 31.960938 455.082031 33.234375 455.082031 C 34.507812 455.082031 35.539062 454.050781 35.539062 452.777344 Z M 35.539062 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.398438 452.777344 C 49.398438 451.503906 48.367188 450.472656 47.09375 450.472656 C 45.820312 450.472656 44.789062 451.503906 44.789062 452.777344 C 44.789062 454.050781 45.820312 455.082031 47.09375 455.082031 C 48.367188 455.082031 49.398438 454.050781 49.398438 452.777344 Z M 49.398438 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.253906 452.777344 C 26.253906 451.503906 25.222656 450.472656 23.949219 450.472656 C 22.675781 450.472656 21.644531 451.503906 21.644531 452.777344 C 21.644531 454.050781 22.675781 455.082031 23.949219 455.082031 C 25.222656 455.082031 26.253906 454.050781 26.253906 452.777344 Z M 26.253906 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.726562 452.777344 C 26.726562 451.503906 25.695312 450.472656 24.421875 450.472656 C 23.148438 450.472656 22.117188 451.503906 22.117188 452.777344 C 22.117188 454.050781 23.148438 455.082031 24.421875 455.082031 C 25.695312 455.082031 26.726562 454.050781 26.726562 452.777344 Z M 26.726562 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.25 452.777344 C 55.25 451.503906 54.21875 450.472656 52.945312 450.472656 C 51.671875 450.472656 50.640625 451.503906 50.640625 452.777344 C 50.640625 454.050781 51.671875 455.082031 52.945312 455.082031 C 54.21875 455.082031 55.25 454.050781 55.25 452.777344 Z M 55.25 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.609375 452.777344 C 43.609375 451.503906 42.578125 450.472656 41.304688 450.472656 C 40.03125 450.472656 39 451.503906 39 452.777344 C 39 454.050781 40.03125 455.082031 41.304688 455.082031 C 42.578125 455.082031 43.609375 454.050781 43.609375 452.777344 Z M 43.609375 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.25 452.777344 C 25.25 451.503906 24.21875 450.472656 22.945312 450.472656 C 21.671875 450.472656 20.640625 451.503906 20.640625 452.777344 C 20.640625 454.050781 21.671875 455.082031 22.945312 455.082031 C 24.21875 455.082031 25.25 454.050781 25.25 452.777344 Z M 25.25 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.226562 452.777344 C 33.226562 451.503906 32.195312 450.472656 30.921875 450.472656 C 29.648438 450.472656 28.617188 451.503906 28.617188 452.777344 C 28.617188 454.050781 29.648438 455.082031 30.921875 455.082031 C 32.195312 455.082031 33.226562 454.050781 33.226562 452.777344 Z M 33.226562 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.488281 452.777344 C 41.488281 451.503906 40.457031 450.472656 39.183594 450.472656 C 37.910156 450.472656 36.878906 451.503906 36.878906 452.777344 C 36.878906 454.050781 37.910156 455.082031 39.183594 455.082031 C 40.457031 455.082031 41.488281 454.050781 41.488281 452.777344 Z M 41.488281 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 13.480469 452.777344 C 13.480469 451.503906 12.449219 450.472656 11.175781 450.472656 C 9.902344 450.472656 8.871094 451.503906 8.871094 452.777344 C 8.871094 454.050781 9.902344 455.082031 11.175781 455.082031 C 12.449219 455.082031 13.480469 454.050781 13.480469 452.777344 Z M 13.480469 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.871094 452.777344 C 36.871094 451.503906 35.839844 450.472656 34.566406 450.472656 C 33.292969 450.472656 32.261719 451.503906 32.261719 452.777344 C 32.261719 454.050781 33.292969 455.082031 34.566406 455.082031 C 35.839844 455.082031 36.871094 454.050781 36.871094 452.777344 Z M 36.871094 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.242188 452.777344 C 30.242188 451.503906 29.210938 450.472656 27.9375 450.472656 C 26.664062 450.472656 25.632812 451.503906 25.632812 452.777344 C 25.632812 454.050781 26.664062 455.082031 27.9375 455.082031 C 29.210938 455.082031 30.242188 454.050781 30.242188 452.777344 Z M 30.242188 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 18.3125 452.777344 C 18.3125 451.503906 17.28125 450.472656 16.007812 450.472656 C 14.734375 450.472656 13.703125 451.503906 13.703125 452.777344 C 13.703125 454.050781 14.734375 455.082031 16.007812 455.082031 C 17.28125 455.082031 18.3125 454.050781 18.3125 452.777344 Z M 18.3125 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.417969 452.777344 C 51.417969 451.503906 50.386719 450.472656 49.113281 450.472656 C 47.839844 450.472656 46.808594 451.503906 46.808594 452.777344 C 46.808594 454.050781 47.839844 455.082031 49.113281 455.082031 C 50.386719 455.082031 51.417969 454.050781 51.417969 452.777344 Z M 51.417969 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.582031 452.777344 C 42.582031 451.503906 41.550781 450.472656 40.277344 450.472656 C 39.003906 450.472656 37.972656 451.503906 37.972656 452.777344 C 37.972656 454.050781 39.003906 455.082031 40.277344 455.082031 C 41.550781 455.082031 42.582031 454.050781 42.582031 452.777344 Z M 42.582031 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.363281 452.777344 C 15.363281 451.503906 14.332031 450.472656 13.058594 450.472656 C 11.785156 450.472656 10.753906 451.503906 10.753906 452.777344 C 10.753906 454.050781 11.785156 455.082031 13.058594 455.082031 C 14.332031 455.082031 15.363281 454.050781 15.363281 452.777344 Z M 15.363281 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.074219 452.777344 C 22.074219 451.503906 21.042969 450.472656 19.769531 450.472656 C 18.496094 450.472656 17.464844 451.503906 17.464844 452.777344 C 17.464844 454.050781 18.496094 455.082031 19.769531 455.082031 C 21.042969 455.082031 22.074219 454.050781 22.074219 452.777344 Z M 22.074219 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.335938 452.777344 C 36.335938 451.503906 35.304688 450.472656 34.03125 450.472656 C 32.757812 450.472656 31.726562 451.503906 31.726562 452.777344 C 31.726562 454.050781 32.757812 455.082031 34.03125 455.082031 C 35.304688 455.082031 36.335938 454.050781 36.335938 452.777344 Z M 36.335938 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 13.597656 452.777344 C 13.597656 451.503906 12.566406 450.472656 11.292969 450.472656 C 10.019531 450.472656 8.988281 451.503906 8.988281 452.777344 C 8.988281 454.050781 10.019531 455.082031 11.292969 455.082031 C 12.566406 455.082031 13.597656 454.050781 13.597656 452.777344 Z M 13.597656 452.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.429688 447.933594 C 52.429688 446.660156 51.398438 445.628906 50.125 445.628906 C 48.851562 445.628906 47.820312 446.660156 47.820312 447.933594 C 47.820312 449.207031 48.851562 450.238281 50.125 450.238281 C 51.398438 450.238281 52.429688 449.207031 52.429688 447.933594 Z M 52.429688 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.703125 447.933594 C 19.703125 446.660156 18.671875 445.628906 17.398438 445.628906 C 16.125 445.628906 15.09375 446.660156 15.09375 447.933594 C 15.09375 449.207031 16.125 450.238281 17.398438 450.238281 C 18.671875 450.238281 19.703125 449.207031 19.703125 447.933594 Z M 19.703125 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.691406 447.933594 C 39.691406 446.660156 38.660156 445.628906 37.386719 445.628906 C 36.113281 445.628906 35.082031 446.660156 35.082031 447.933594 C 35.082031 449.207031 36.113281 450.238281 37.386719 450.238281 C 38.660156 450.238281 39.691406 449.207031 39.691406 447.933594 Z M 39.691406 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 21.605469 447.933594 C 21.605469 446.660156 20.574219 445.628906 19.300781 445.628906 C 18.027344 445.628906 16.996094 446.660156 16.996094 447.933594 C 16.996094 449.207031 18.027344 450.238281 19.300781 450.238281 C 20.574219 450.238281 21.605469 449.207031 21.605469 447.933594 Z M 21.605469 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.410156 447.933594 C 27.410156 446.660156 26.378906 445.628906 25.105469 445.628906 C 23.832031 445.628906 22.800781 446.660156 22.800781 447.933594 C 22.800781 449.207031 23.832031 450.238281 25.105469 450.238281 C 26.378906 450.238281 27.410156 449.207031 27.410156 447.933594 Z M 27.410156 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.695312 447.933594 C 35.695312 446.660156 34.664062 445.628906 33.390625 445.628906 C 32.117188 445.628906 31.085938 446.660156 31.085938 447.933594 C 31.085938 449.207031 32.117188 450.238281 33.390625 450.238281 C 34.664062 450.238281 35.695312 449.207031 35.695312 447.933594 Z M 35.695312 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.175781 447.933594 C 40.175781 446.660156 39.144531 445.628906 37.871094 445.628906 C 36.597656 445.628906 35.566406 446.660156 35.566406 447.933594 C 35.566406 449.207031 36.597656 450.238281 37.871094 450.238281 C 39.144531 450.238281 40.175781 449.207031 40.175781 447.933594 Z M 40.175781 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.257812 447.933594 C 25.257812 446.660156 24.226562 445.628906 22.953125 445.628906 C 21.679688 445.628906 20.648438 446.660156 20.648438 447.933594 C 20.648438 449.207031 21.679688 450.238281 22.953125 450.238281 C 24.226562 450.238281 25.257812 449.207031 25.257812 447.933594 Z M 25.257812 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.085938 447.933594 C 56.085938 446.660156 55.054688 445.628906 53.78125 445.628906 C 52.507812 445.628906 51.476562 446.660156 51.476562 447.933594 C 51.476562 449.207031 52.507812 450.238281 53.78125 450.238281 C 55.054688 450.238281 56.085938 449.207031 56.085938 447.933594 Z M 56.085938 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.59375 447.933594 C 38.59375 446.660156 37.5625 445.628906 36.289062 445.628906 C 35.015625 445.628906 33.984375 446.660156 33.984375 447.933594 C 33.984375 449.207031 35.015625 450.238281 36.289062 450.238281 C 37.5625 450.238281 38.59375 449.207031 38.59375 447.933594 Z M 38.59375 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.957031 447.933594 C 16.957031 446.660156 15.925781 445.628906 14.652344 445.628906 C 13.378906 445.628906 12.347656 446.660156 12.347656 447.933594 C 12.347656 449.207031 13.378906 450.238281 14.652344 450.238281 C 15.925781 450.238281 16.957031 449.207031 16.957031 447.933594 Z M 16.957031 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.191406 447.933594 C 38.191406 446.660156 37.160156 445.628906 35.886719 445.628906 C 34.613281 445.628906 33.582031 446.660156 33.582031 447.933594 C 33.582031 449.207031 34.613281 450.238281 35.886719 450.238281 C 37.160156 450.238281 38.191406 449.207031 38.191406 447.933594 Z M 38.191406 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.808594 447.933594 C 51.808594 446.660156 50.777344 445.628906 49.503906 445.628906 C 48.230469 445.628906 47.199219 446.660156 47.199219 447.933594 C 47.199219 449.207031 48.230469 450.238281 49.503906 450.238281 C 50.777344 450.238281 51.808594 449.207031 51.808594 447.933594 Z M 51.808594 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.066406 447.933594 C 29.066406 446.660156 28.035156 445.628906 26.761719 445.628906 C 25.488281 445.628906 24.457031 446.660156 24.457031 447.933594 C 24.457031 449.207031 25.488281 450.238281 26.761719 450.238281 C 28.035156 450.238281 29.066406 449.207031 29.066406 447.933594 Z M 29.066406 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.535156 447.933594 C 29.535156 446.660156 28.503906 445.628906 27.230469 445.628906 C 25.957031 445.628906 24.925781 446.660156 24.925781 447.933594 C 24.925781 449.207031 25.957031 450.238281 27.230469 450.238281 C 28.503906 450.238281 29.535156 449.207031 29.535156 447.933594 Z M 29.535156 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.558594 447.933594 C 57.558594 446.660156 56.527344 445.628906 55.253906 445.628906 C 53.980469 445.628906 52.949219 446.660156 52.949219 447.933594 C 52.949219 449.207031 53.980469 450.238281 55.253906 450.238281 C 56.527344 450.238281 57.558594 449.207031 57.558594 447.933594 Z M 57.558594 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.121094 447.933594 C 46.121094 446.660156 45.089844 445.628906 43.816406 445.628906 C 42.542969 445.628906 41.511719 446.660156 41.511719 447.933594 C 41.511719 449.207031 42.542969 450.238281 43.816406 450.238281 C 45.089844 450.238281 46.121094 449.207031 46.121094 447.933594 Z M 46.121094 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.085938 447.933594 C 28.085938 446.660156 27.054688 445.628906 25.78125 445.628906 C 24.507812 445.628906 23.476562 446.660156 23.476562 447.933594 C 23.476562 449.207031 24.507812 450.238281 25.78125 450.238281 C 27.054688 450.238281 28.085938 449.207031 28.085938 447.933594 Z M 28.085938 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.921875 447.933594 C 35.921875 446.660156 34.890625 445.628906 33.617188 445.628906 C 32.34375 445.628906 31.3125 446.660156 31.3125 447.933594 C 31.3125 449.207031 32.34375 450.238281 33.617188 450.238281 C 34.890625 450.238281 35.921875 449.207031 35.921875 447.933594 Z M 35.921875 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.039062 447.933594 C 44.039062 446.660156 43.007812 445.628906 41.734375 445.628906 C 40.460938 445.628906 39.429688 446.660156 39.429688 447.933594 C 39.429688 449.207031 40.460938 450.238281 41.734375 450.238281 C 43.007812 450.238281 44.039062 449.207031 44.039062 447.933594 Z M 44.039062 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.519531 447.933594 C 16.519531 446.660156 15.488281 445.628906 14.214844 445.628906 C 12.941406 445.628906 11.910156 446.660156 11.910156 447.933594 C 11.910156 449.207031 12.941406 450.238281 14.214844 450.238281 C 15.488281 450.238281 16.519531 449.207031 16.519531 447.933594 Z M 16.519531 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.5 447.933594 C 39.5 446.660156 38.46875 445.628906 37.195312 445.628906 C 35.921875 445.628906 34.890625 446.660156 34.890625 447.933594 C 34.890625 449.207031 35.921875 450.238281 37.195312 450.238281 C 38.46875 450.238281 39.5 449.207031 39.5 447.933594 Z M 39.5 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.984375 447.933594 C 32.984375 446.660156 31.953125 445.628906 30.679688 445.628906 C 29.40625 445.628906 28.375 446.660156 28.375 447.933594 C 28.375 449.207031 29.40625 450.238281 30.679688 450.238281 C 31.953125 450.238281 32.984375 449.207031 32.984375 447.933594 Z M 32.984375 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 21.265625 447.933594 C 21.265625 446.660156 20.234375 445.628906 18.960938 445.628906 C 17.6875 445.628906 16.65625 446.660156 16.65625 447.933594 C 16.65625 449.207031 17.6875 450.238281 18.960938 450.238281 C 20.234375 450.238281 21.265625 449.207031 21.265625 447.933594 Z M 21.265625 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.792969 447.933594 C 53.792969 446.660156 52.761719 445.628906 51.488281 445.628906 C 50.214844 445.628906 49.183594 446.660156 49.183594 447.933594 C 49.183594 449.207031 50.214844 450.238281 51.488281 450.238281 C 52.761719 450.238281 53.792969 449.207031 53.792969 447.933594 Z M 53.792969 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.109375 447.933594 C 45.109375 446.660156 44.078125 445.628906 42.804688 445.628906 C 41.53125 445.628906 40.5 446.660156 40.5 447.933594 C 40.5 449.207031 41.53125 450.238281 42.804688 450.238281 C 44.078125 450.238281 45.109375 449.207031 45.109375 447.933594 Z M 45.109375 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 18.371094 447.933594 C 18.371094 446.660156 17.339844 445.628906 16.066406 445.628906 C 14.792969 445.628906 13.761719 446.660156 13.761719 447.933594 C 13.761719 449.207031 14.792969 450.238281 16.066406 450.238281 C 17.339844 450.238281 18.371094 449.207031 18.371094 447.933594 Z M 18.371094 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.964844 447.933594 C 24.964844 446.660156 23.933594 445.628906 22.660156 445.628906 C 21.386719 445.628906 20.355469 446.660156 20.355469 447.933594 C 20.355469 449.207031 21.386719 450.238281 22.660156 450.238281 C 23.933594 450.238281 24.964844 449.207031 24.964844 447.933594 Z M 24.964844 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.972656 447.933594 C 38.972656 446.660156 37.941406 445.628906 36.667969 445.628906 C 35.394531 445.628906 34.363281 446.660156 34.363281 447.933594 C 34.363281 449.207031 35.394531 450.238281 36.667969 450.238281 C 37.941406 450.238281 38.972656 449.207031 38.972656 447.933594 Z M 38.972656 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.636719 447.933594 C 16.636719 446.660156 15.605469 445.628906 14.332031 445.628906 C 13.058594 445.628906 12.027344 446.660156 12.027344 447.933594 C 12.027344 449.207031 13.058594 450.238281 14.332031 450.238281 C 15.605469 450.238281 16.636719 449.207031 16.636719 447.933594 Z M 16.636719 447.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.847656 443.089844 C 54.847656 441.816406 53.816406 440.785156 52.542969 440.785156 C 51.269531 440.785156 50.238281 441.816406 50.238281 443.089844 C 50.238281 444.363281 51.269531 445.394531 52.542969 445.394531 C 53.816406 445.394531 54.847656 444.363281 54.847656 443.089844 Z M 54.847656 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.035156 443.089844 C 23.035156 441.816406 22.003906 440.785156 20.730469 440.785156 C 19.457031 440.785156 18.425781 441.816406 18.425781 443.089844 C 18.425781 444.363281 19.457031 445.394531 20.730469 445.394531 C 22.003906 445.394531 23.035156 444.363281 23.035156 443.089844 Z M 23.035156 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.464844 443.089844 C 42.464844 441.816406 41.433594 440.785156 40.160156 440.785156 C 38.886719 440.785156 37.855469 441.816406 37.855469 443.089844 C 37.855469 444.363281 38.886719 445.394531 40.160156 445.394531 C 41.433594 445.394531 42.464844 444.363281 42.464844 443.089844 Z M 42.464844 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.882812 443.089844 C 24.882812 441.816406 23.851562 440.785156 22.578125 440.785156 C 21.304688 440.785156 20.273438 441.816406 20.273438 443.089844 C 20.273438 444.363281 21.304688 445.394531 22.578125 445.394531 C 23.851562 445.394531 24.882812 444.363281 24.882812 443.089844 Z M 24.882812 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.527344 443.089844 C 30.527344 441.816406 29.496094 440.785156 28.222656 440.785156 C 26.949219 440.785156 25.917969 441.816406 25.917969 443.089844 C 25.917969 444.363281 26.949219 445.394531 28.222656 445.394531 C 29.496094 445.394531 30.527344 444.363281 30.527344 443.089844 Z M 30.527344 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.582031 443.089844 C 38.582031 441.816406 37.550781 440.785156 36.277344 440.785156 C 35.003906 440.785156 33.972656 441.816406 33.972656 443.089844 C 33.972656 444.363281 35.003906 445.394531 36.277344 445.394531 C 37.550781 445.394531 38.582031 444.363281 38.582031 443.089844 Z M 38.582031 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.9375 443.089844 C 42.9375 441.816406 41.90625 440.785156 40.632812 440.785156 C 39.359375 440.785156 38.328125 441.816406 38.328125 443.089844 C 38.328125 444.363281 39.359375 445.394531 40.632812 445.394531 C 41.90625 445.394531 42.9375 444.363281 42.9375 443.089844 Z M 42.9375 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.433594 443.089844 C 28.433594 441.816406 27.402344 440.785156 26.128906 440.785156 C 24.855469 440.785156 23.824219 441.816406 23.824219 443.089844 C 23.824219 444.363281 24.855469 445.394531 26.128906 445.394531 C 27.402344 445.394531 28.433594 444.363281 28.433594 443.089844 Z M 28.433594 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.402344 443.089844 C 58.402344 441.816406 57.371094 440.785156 56.097656 440.785156 C 54.824219 440.785156 53.792969 441.816406 53.792969 443.089844 C 53.792969 444.363281 54.824219 445.394531 56.097656 445.394531 C 57.371094 445.394531 58.402344 444.363281 58.402344 443.089844 Z M 58.402344 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.398438 443.089844 C 41.398438 441.816406 40.367188 440.785156 39.09375 440.785156 C 37.820312 440.785156 36.789062 441.816406 36.789062 443.089844 C 36.789062 444.363281 37.820312 445.394531 39.09375 445.394531 C 40.367188 445.394531 41.398438 444.363281 41.398438 443.089844 Z M 41.398438 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.363281 443.089844 C 20.363281 441.816406 19.332031 440.785156 18.058594 440.785156 C 16.785156 440.785156 15.753906 441.816406 15.753906 443.089844 C 15.753906 444.363281 16.785156 445.394531 18.058594 445.394531 C 19.332031 445.394531 20.363281 444.363281 20.363281 443.089844 Z M 20.363281 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.007812 443.089844 C 41.007812 441.816406 39.976562 440.785156 38.703125 440.785156 C 37.429688 440.785156 36.398438 441.816406 36.398438 443.089844 C 36.398438 444.363281 37.429688 445.394531 38.703125 445.394531 C 39.976562 445.394531 41.007812 444.363281 41.007812 443.089844 Z M 41.007812 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.246094 443.089844 C 54.246094 441.816406 53.214844 440.785156 51.941406 440.785156 C 50.667969 440.785156 49.636719 441.816406 49.636719 443.089844 C 49.636719 444.363281 50.667969 445.394531 51.941406 445.394531 C 53.214844 445.394531 54.246094 444.363281 54.246094 443.089844 Z M 54.246094 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.136719 443.089844 C 32.136719 441.816406 31.105469 440.785156 29.832031 440.785156 C 28.558594 440.785156 27.527344 441.816406 27.527344 443.089844 C 27.527344 444.363281 28.558594 445.394531 29.832031 445.394531 C 31.105469 445.394531 32.136719 444.363281 32.136719 443.089844 Z M 32.136719 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.589844 443.089844 C 32.589844 441.816406 31.558594 440.785156 30.285156 440.785156 C 29.011719 440.785156 27.980469 441.816406 27.980469 443.089844 C 27.980469 444.363281 29.011719 445.394531 30.285156 445.394531 C 31.558594 445.394531 32.589844 444.363281 32.589844 443.089844 Z M 32.589844 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 59.835938 443.089844 C 59.835938 441.816406 58.804688 440.785156 57.53125 440.785156 C 56.257812 440.785156 55.226562 441.816406 55.226562 443.089844 C 55.226562 444.363281 56.257812 445.394531 57.53125 445.394531 C 58.804688 445.394531 59.835938 444.363281 59.835938 443.089844 Z M 59.835938 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.714844 443.089844 C 48.714844 441.816406 47.683594 440.785156 46.410156 440.785156 C 45.136719 440.785156 44.105469 441.816406 44.105469 443.089844 C 44.105469 444.363281 45.136719 445.394531 46.410156 445.394531 C 47.683594 445.394531 48.714844 444.363281 48.714844 443.089844 Z M 48.714844 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.179688 443.089844 C 31.179688 441.816406 30.148438 440.785156 28.875 440.785156 C 27.601562 440.785156 26.570312 441.816406 26.570312 443.089844 C 26.570312 444.363281 27.601562 445.394531 28.875 445.394531 C 30.148438 445.394531 31.179688 444.363281 31.179688 443.089844 Z M 31.179688 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.800781 443.089844 C 38.800781 441.816406 37.769531 440.785156 36.496094 440.785156 C 35.222656 440.785156 34.191406 441.816406 34.191406 443.089844 C 34.191406 444.363281 35.222656 445.394531 36.496094 445.394531 C 37.769531 445.394531 38.800781 444.363281 38.800781 443.089844 Z M 38.800781 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.691406 443.089844 C 46.691406 441.816406 45.660156 440.785156 44.386719 440.785156 C 43.113281 440.785156 42.082031 441.816406 42.082031 443.089844 C 42.082031 444.363281 43.113281 445.394531 44.386719 445.394531 C 45.660156 445.394531 46.691406 444.363281 46.691406 443.089844 Z M 46.691406 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.9375 443.089844 C 19.9375 441.816406 18.90625 440.785156 17.632812 440.785156 C 16.359375 440.785156 15.328125 441.816406 15.328125 443.089844 C 15.328125 444.363281 16.359375 445.394531 17.632812 445.394531 C 18.90625 445.394531 19.9375 444.363281 19.9375 443.089844 Z M 19.9375 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.277344 443.089844 C 42.277344 441.816406 41.246094 440.785156 39.972656 440.785156 C 38.699219 440.785156 37.667969 441.816406 37.667969 443.089844 C 37.667969 444.363281 38.699219 445.394531 39.972656 445.394531 C 41.246094 445.394531 42.277344 444.363281 42.277344 443.089844 Z M 42.277344 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.945312 443.089844 C 35.945312 441.816406 34.914062 440.785156 33.640625 440.785156 C 32.367188 440.785156 31.335938 441.816406 31.335938 443.089844 C 31.335938 444.363281 32.367188 445.394531 33.640625 445.394531 C 34.914062 445.394531 35.945312 444.363281 35.945312 443.089844 Z M 35.945312 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.554688 443.089844 C 24.554688 441.816406 23.523438 440.785156 22.25 440.785156 C 20.976562 440.785156 19.945312 441.816406 19.945312 443.089844 C 19.945312 444.363281 20.976562 445.394531 22.25 445.394531 C 23.523438 445.394531 24.554688 444.363281 24.554688 443.089844 Z M 24.554688 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.175781 443.089844 C 56.175781 441.816406 55.144531 440.785156 53.871094 440.785156 C 52.597656 440.785156 51.566406 441.816406 51.566406 443.089844 C 51.566406 444.363281 52.597656 445.394531 53.871094 445.394531 C 55.144531 445.394531 56.175781 444.363281 56.175781 443.089844 Z M 56.175781 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.734375 443.089844 C 47.734375 441.816406 46.703125 440.785156 45.429688 440.785156 C 44.15625 440.785156 43.125 441.816406 43.125 443.089844 C 43.125 444.363281 44.15625 445.394531 45.429688 445.394531 C 46.703125 445.394531 47.734375 444.363281 47.734375 443.089844 Z M 47.734375 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 21.738281 443.089844 C 21.738281 441.816406 20.707031 440.785156 19.433594 440.785156 C 18.160156 440.785156 17.128906 441.816406 17.128906 443.089844 C 17.128906 444.363281 18.160156 445.394531 19.433594 445.394531 C 20.707031 445.394531 21.738281 444.363281 21.738281 443.089844 Z M 21.738281 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.148438 443.089844 C 28.148438 441.816406 27.117188 440.785156 25.84375 440.785156 C 24.570312 440.785156 23.539062 441.816406 23.539062 443.089844 C 23.539062 444.363281 24.570312 445.394531 25.84375 445.394531 C 27.117188 445.394531 28.148438 444.363281 28.148438 443.089844 Z M 28.148438 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.769531 443.089844 C 41.769531 441.816406 40.738281 440.785156 39.464844 440.785156 C 38.191406 440.785156 37.160156 441.816406 37.160156 443.089844 C 37.160156 444.363281 38.191406 445.394531 39.464844 445.394531 C 40.738281 445.394531 41.769531 444.363281 41.769531 443.089844 Z M 41.769531 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.050781 443.089844 C 20.050781 441.816406 19.019531 440.785156 17.746094 440.785156 C 16.472656 440.785156 15.441406 441.816406 15.441406 443.089844 C 15.441406 444.363281 16.472656 445.394531 17.746094 445.394531 C 19.019531 445.394531 20.050781 444.363281 20.050781 443.089844 Z M 20.050781 443.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.265625 438.246094 C 57.265625 436.972656 56.234375 435.941406 54.960938 435.941406 C 53.6875 435.941406 52.65625 436.972656 52.65625 438.246094 C 52.65625 439.519531 53.6875 440.550781 54.960938 440.550781 C 56.234375 440.550781 57.265625 439.519531 57.265625 438.246094 Z M 57.265625 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.679688 438.246094 C 26.679688 436.972656 25.648438 435.941406 24.375 435.941406 C 23.101562 435.941406 22.070312 436.972656 22.070312 438.246094 C 22.070312 439.519531 23.101562 440.550781 24.375 440.550781 C 25.648438 440.550781 26.679688 439.519531 26.679688 438.246094 Z M 26.679688 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.359375 438.246094 C 45.359375 436.972656 44.328125 435.941406 43.054688 435.941406 C 41.78125 435.941406 40.75 436.972656 40.75 438.246094 C 40.75 439.519531 41.78125 440.550781 43.054688 440.550781 C 44.328125 440.550781 45.359375 439.519531 45.359375 438.246094 Z M 45.359375 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.457031 438.246094 C 28.457031 436.972656 27.425781 435.941406 26.152344 435.941406 C 24.878906 435.941406 23.847656 436.972656 23.847656 438.246094 C 23.847656 439.519531 24.878906 440.550781 26.152344 440.550781 C 27.425781 440.550781 28.457031 439.519531 28.457031 438.246094 Z M 28.457031 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.882812 438.246094 C 33.882812 436.972656 32.851562 435.941406 31.578125 435.941406 C 30.304688 435.941406 29.273438 436.972656 29.273438 438.246094 C 29.273438 439.519531 30.304688 440.550781 31.578125 440.550781 C 32.851562 440.550781 33.882812 439.519531 33.882812 438.246094 Z M 33.882812 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.625 438.246094 C 41.625 436.972656 40.59375 435.941406 39.320312 435.941406 C 38.046875 435.941406 37.015625 436.972656 37.015625 438.246094 C 37.015625 439.519531 38.046875 440.550781 39.320312 440.550781 C 40.59375 440.550781 41.625 439.519531 41.625 438.246094 Z M 41.625 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.8125 438.246094 C 45.8125 436.972656 44.78125 435.941406 43.507812 435.941406 C 42.234375 435.941406 41.203125 436.972656 41.203125 438.246094 C 41.203125 439.519531 42.234375 440.550781 43.507812 440.550781 C 44.78125 440.550781 45.8125 439.519531 45.8125 438.246094 Z M 45.8125 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.871094 438.246094 C 31.871094 436.972656 30.839844 435.941406 29.566406 435.941406 C 28.292969 435.941406 27.261719 436.972656 27.261719 438.246094 C 27.261719 439.519531 28.292969 440.550781 29.566406 440.550781 C 30.839844 440.550781 31.871094 439.519531 31.871094 438.246094 Z M 31.871094 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.679688 438.246094 C 60.679688 436.972656 59.648438 435.941406 58.375 435.941406 C 57.101562 435.941406 56.070312 436.972656 56.070312 438.246094 C 56.070312 439.519531 57.101562 440.550781 58.375 440.550781 C 59.648438 440.550781 60.679688 439.519531 60.679688 438.246094 Z M 60.679688 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.332031 438.246094 C 44.332031 436.972656 43.300781 435.941406 42.027344 435.941406 C 40.753906 435.941406 39.722656 436.972656 39.722656 438.246094 C 39.722656 439.519531 40.753906 440.550781 42.027344 440.550781 C 43.300781 440.550781 44.332031 439.519531 44.332031 438.246094 Z M 44.332031 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.109375 438.246094 C 24.109375 436.972656 23.078125 435.941406 21.804688 435.941406 C 20.53125 435.941406 19.5 436.972656 19.5 438.246094 C 19.5 439.519531 20.53125 440.550781 21.804688 440.550781 C 23.078125 440.550781 24.109375 439.519531 24.109375 438.246094 Z M 24.109375 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.957031 438.246094 C 43.957031 436.972656 42.925781 435.941406 41.652344 435.941406 C 40.378906 435.941406 39.347656 436.972656 39.347656 438.246094 C 39.347656 439.519531 40.378906 440.550781 41.652344 440.550781 C 42.925781 440.550781 43.957031 439.519531 43.957031 438.246094 Z M 43.957031 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.683594 438.246094 C 56.683594 436.972656 55.652344 435.941406 54.378906 435.941406 C 53.105469 435.941406 52.074219 436.972656 52.074219 438.246094 C 52.074219 439.519531 53.105469 440.550781 54.378906 440.550781 C 55.652344 440.550781 56.683594 439.519531 56.683594 438.246094 Z M 56.683594 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.429688 438.246094 C 35.429688 436.972656 34.398438 435.941406 33.125 435.941406 C 31.851562 435.941406 30.820312 436.972656 30.820312 438.246094 C 30.820312 439.519531 31.851562 440.550781 33.125 440.550781 C 34.398438 440.550781 35.429688 439.519531 35.429688 438.246094 Z M 35.429688 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.867188 438.246094 C 35.867188 436.972656 34.835938 435.941406 33.5625 435.941406 C 32.289062 435.941406 31.257812 436.972656 31.257812 438.246094 C 31.257812 439.519531 32.289062 440.550781 33.5625 440.550781 C 34.835938 440.550781 35.867188 439.519531 35.867188 438.246094 Z M 35.867188 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.058594 438.246094 C 62.058594 436.972656 61.027344 435.941406 59.753906 435.941406 C 58.480469 435.941406 57.449219 436.972656 57.449219 438.246094 C 57.449219 439.519531 58.480469 440.550781 59.753906 440.550781 C 61.027344 440.550781 62.058594 439.519531 62.058594 438.246094 Z M 62.058594 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.367188 438.246094 C 51.367188 436.972656 50.335938 435.941406 49.0625 435.941406 C 47.789062 435.941406 46.757812 436.972656 46.757812 438.246094 C 46.757812 439.519531 47.789062 440.550781 49.0625 440.550781 C 50.335938 440.550781 51.367188 439.519531 51.367188 438.246094 Z M 51.367188 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.511719 438.246094 C 34.511719 436.972656 33.480469 435.941406 32.207031 435.941406 C 30.933594 435.941406 29.902344 436.972656 29.902344 438.246094 C 29.902344 439.519531 30.933594 440.550781 32.207031 440.550781 C 33.480469 440.550781 34.511719 439.519531 34.511719 438.246094 Z M 34.511719 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.835938 438.246094 C 41.835938 436.972656 40.804688 435.941406 39.53125 435.941406 C 38.257812 435.941406 37.226562 436.972656 37.226562 438.246094 C 37.226562 439.519531 38.257812 440.550781 39.53125 440.550781 C 40.804688 440.550781 41.835938 439.519531 41.835938 438.246094 Z M 41.835938 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.421875 438.246094 C 49.421875 436.972656 48.390625 435.941406 47.117188 435.941406 C 45.84375 435.941406 44.8125 436.972656 44.8125 438.246094 C 44.8125 439.519531 45.84375 440.550781 47.117188 440.550781 C 48.390625 440.550781 49.421875 439.519531 49.421875 438.246094 Z M 49.421875 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.703125 438.246094 C 23.703125 436.972656 22.671875 435.941406 21.398438 435.941406 C 20.125 435.941406 19.09375 436.972656 19.09375 438.246094 C 19.09375 439.519531 20.125 440.550781 21.398438 440.550781 C 22.671875 440.550781 23.703125 439.519531 23.703125 438.246094 Z M 23.703125 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.179688 438.246094 C 45.179688 436.972656 44.148438 435.941406 42.875 435.941406 C 41.601562 435.941406 40.570312 436.972656 40.570312 438.246094 C 40.570312 439.519531 41.601562 440.550781 42.875 440.550781 C 44.148438 440.550781 45.179688 439.519531 45.179688 438.246094 Z M 45.179688 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.09375 438.246094 C 39.09375 436.972656 38.0625 435.941406 36.789062 435.941406 C 35.515625 435.941406 34.484375 436.972656 34.484375 438.246094 C 34.484375 439.519531 35.515625 440.550781 36.789062 440.550781 C 38.0625 440.550781 39.09375 439.519531 39.09375 438.246094 Z M 39.09375 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.136719 438.246094 C 28.136719 436.972656 27.105469 435.941406 25.832031 435.941406 C 24.558594 435.941406 23.527344 436.972656 23.527344 438.246094 C 23.527344 439.519531 24.558594 440.550781 25.832031 440.550781 C 27.105469 440.550781 28.136719 439.519531 28.136719 438.246094 Z M 28.136719 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.539062 438.246094 C 58.539062 436.972656 57.507812 435.941406 56.234375 435.941406 C 54.960938 435.941406 53.929688 436.972656 53.929688 438.246094 C 53.929688 439.519531 54.960938 440.550781 56.234375 440.550781 C 57.507812 440.550781 58.539062 439.519531 58.539062 438.246094 Z M 58.539062 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.425781 438.246094 C 50.425781 436.972656 49.394531 435.941406 48.121094 435.941406 C 46.847656 435.941406 45.816406 436.972656 45.816406 438.246094 C 45.816406 439.519531 46.847656 440.550781 48.121094 440.550781 C 49.394531 440.550781 50.425781 439.519531 50.425781 438.246094 Z M 50.425781 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.433594 438.246094 C 25.433594 436.972656 24.402344 435.941406 23.128906 435.941406 C 21.855469 435.941406 20.824219 436.972656 20.824219 438.246094 C 20.824219 439.519531 21.855469 440.550781 23.128906 440.550781 C 24.402344 440.550781 25.433594 439.519531 25.433594 438.246094 Z M 25.433594 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.59375 438.246094 C 31.59375 436.972656 30.5625 435.941406 29.289062 435.941406 C 28.015625 435.941406 26.984375 436.972656 26.984375 438.246094 C 26.984375 439.519531 28.015625 440.550781 29.289062 440.550781 C 30.5625 440.550781 31.59375 439.519531 31.59375 438.246094 Z M 31.59375 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.6875 438.246094 C 44.6875 436.972656 43.65625 435.941406 42.382812 435.941406 C 41.109375 435.941406 40.078125 436.972656 40.078125 438.246094 C 40.078125 439.519531 41.109375 440.550781 42.382812 440.550781 C 43.65625 440.550781 44.6875 439.519531 44.6875 438.246094 Z M 44.6875 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.8125 438.246094 C 23.8125 436.972656 22.78125 435.941406 21.507812 435.941406 C 20.234375 435.941406 19.203125 436.972656 19.203125 438.246094 C 19.203125 439.519531 20.234375 440.550781 21.507812 440.550781 C 22.78125 440.550781 23.8125 439.519531 23.8125 438.246094 Z M 23.8125 438.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 59.652344 433.402344 C 59.652344 432.128906 58.621094 431.097656 57.347656 431.097656 C 56.074219 431.097656 55.042969 432.128906 55.042969 433.402344 C 55.042969 434.675781 56.074219 435.707031 57.347656 435.707031 C 58.621094 435.707031 59.652344 434.675781 59.652344 433.402344 Z M 59.652344 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.601562 433.402344 C 30.601562 432.128906 29.570312 431.097656 28.296875 431.097656 C 27.023438 431.097656 25.992188 432.128906 25.992188 433.402344 C 25.992188 434.675781 27.023438 435.707031 28.296875 435.707031 C 29.570312 435.707031 30.601562 434.675781 30.601562 433.402344 Z M 30.601562 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.34375 433.402344 C 48.34375 432.128906 47.3125 431.097656 46.039062 431.097656 C 44.765625 431.097656 43.734375 432.128906 43.734375 433.402344 C 43.734375 434.675781 44.765625 435.707031 46.039062 435.707031 C 47.3125 435.707031 48.34375 434.675781 48.34375 433.402344 Z M 48.34375 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.289062 433.402344 C 32.289062 432.128906 31.257812 431.097656 29.984375 431.097656 C 28.710938 431.097656 27.679688 432.128906 27.679688 433.402344 C 27.679688 434.675781 28.710938 435.707031 29.984375 435.707031 C 31.257812 435.707031 32.289062 434.675781 32.289062 433.402344 Z M 32.289062 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.441406 433.402344 C 37.441406 432.128906 36.410156 431.097656 35.136719 431.097656 C 33.863281 431.097656 32.832031 432.128906 32.832031 433.402344 C 32.832031 434.675781 33.863281 435.707031 35.136719 435.707031 C 36.410156 435.707031 37.441406 434.675781 37.441406 433.402344 Z M 37.441406 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.796875 433.402344 C 44.796875 432.128906 43.765625 431.097656 42.492188 431.097656 C 41.21875 431.097656 40.1875 432.128906 40.1875 433.402344 C 40.1875 434.675781 41.21875 435.707031 42.492188 435.707031 C 43.765625 435.707031 44.796875 434.675781 44.796875 433.402344 Z M 44.796875 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.773438 433.402344 C 48.773438 432.128906 47.742188 431.097656 46.46875 431.097656 C 45.195312 431.097656 44.164062 432.128906 44.164062 433.402344 C 44.164062 434.675781 45.195312 435.707031 46.46875 435.707031 C 47.742188 435.707031 48.773438 434.675781 48.773438 433.402344 Z M 48.773438 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.53125 433.402344 C 35.53125 432.128906 34.5 431.097656 33.226562 431.097656 C 31.953125 431.097656 30.921875 432.128906 30.921875 433.402344 C 30.921875 434.675781 31.953125 435.707031 33.226562 435.707031 C 34.5 435.707031 35.53125 434.675781 35.53125 433.402344 Z M 35.53125 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.898438 433.402344 C 62.898438 432.128906 61.867188 431.097656 60.59375 431.097656 C 59.320312 431.097656 58.289062 432.128906 58.289062 433.402344 C 58.289062 434.675781 59.320312 435.707031 60.59375 435.707031 C 61.867188 435.707031 62.898438 434.675781 62.898438 433.402344 Z M 62.898438 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.367188 433.402344 C 47.367188 432.128906 46.335938 431.097656 45.0625 431.097656 C 43.789062 431.097656 42.757812 432.128906 42.757812 433.402344 C 42.757812 434.675781 43.789062 435.707031 45.0625 435.707031 C 46.335938 435.707031 47.367188 434.675781 47.367188 433.402344 Z M 47.367188 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.160156 433.402344 C 28.160156 432.128906 27.128906 431.097656 25.855469 431.097656 C 24.582031 431.097656 23.550781 432.128906 23.550781 433.402344 C 23.550781 434.675781 24.582031 435.707031 25.855469 435.707031 C 27.128906 435.707031 28.160156 434.675781 28.160156 433.402344 Z M 28.160156 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.015625 433.402344 C 47.015625 432.128906 45.984375 431.097656 44.710938 431.097656 C 43.4375 431.097656 42.40625 432.128906 42.40625 433.402344 C 42.40625 434.675781 43.4375 435.707031 44.710938 435.707031 C 45.984375 435.707031 47.015625 434.675781 47.015625 433.402344 Z M 47.015625 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 59.101562 433.402344 C 59.101562 432.128906 58.070312 431.097656 56.796875 431.097656 C 55.523438 431.097656 54.492188 432.128906 54.492188 433.402344 C 54.492188 434.675781 55.523438 435.707031 56.796875 435.707031 C 58.070312 435.707031 59.101562 434.675781 59.101562 433.402344 Z M 59.101562 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.914062 433.402344 C 38.914062 432.128906 37.882812 431.097656 36.609375 431.097656 C 35.335938 431.097656 34.304688 432.128906 34.304688 433.402344 C 34.304688 434.675781 35.335938 435.707031 36.609375 435.707031 C 37.882812 435.707031 38.914062 434.675781 38.914062 433.402344 Z M 38.914062 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.328125 433.402344 C 39.328125 432.128906 38.296875 431.097656 37.023438 431.097656 C 35.75 431.097656 34.71875 432.128906 34.71875 433.402344 C 34.71875 434.675781 35.75 435.707031 37.023438 435.707031 C 38.296875 435.707031 39.328125 434.675781 39.328125 433.402344 Z M 39.328125 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.207031 433.402344 C 64.207031 432.128906 63.175781 431.097656 61.902344 431.097656 C 60.628906 431.097656 59.597656 432.128906 59.597656 433.402344 C 59.597656 434.675781 60.628906 435.707031 61.902344 435.707031 C 63.175781 435.707031 64.207031 434.675781 64.207031 433.402344 Z M 64.207031 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.050781 433.402344 C 54.050781 432.128906 53.019531 431.097656 51.746094 431.097656 C 50.472656 431.097656 49.441406 432.128906 49.441406 433.402344 C 49.441406 434.675781 50.472656 435.707031 51.746094 435.707031 C 53.019531 435.707031 54.050781 434.675781 54.050781 433.402344 Z M 54.050781 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.039062 433.402344 C 38.039062 432.128906 37.007812 431.097656 35.734375 431.097656 C 34.460938 431.097656 33.429688 432.128906 33.429688 433.402344 C 33.429688 434.675781 34.460938 435.707031 35.734375 435.707031 C 37.007812 435.707031 38.039062 434.675781 38.039062 433.402344 Z M 38.039062 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.996094 433.402344 C 44.996094 432.128906 43.964844 431.097656 42.691406 431.097656 C 41.417969 431.097656 40.386719 432.128906 40.386719 433.402344 C 40.386719 434.675781 41.417969 435.707031 42.691406 435.707031 C 43.964844 435.707031 44.996094 434.675781 44.996094 433.402344 Z M 44.996094 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.203125 433.402344 C 52.203125 432.128906 51.171875 431.097656 49.898438 431.097656 C 48.625 431.097656 47.59375 432.128906 47.59375 433.402344 C 47.59375 434.675781 48.625 435.707031 49.898438 435.707031 C 51.171875 435.707031 52.203125 434.675781 52.203125 433.402344 Z M 52.203125 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.773438 433.402344 C 27.773438 432.128906 26.742188 431.097656 25.46875 431.097656 C 24.195312 431.097656 23.164062 432.128906 23.164062 433.402344 C 23.164062 434.675781 24.195312 435.707031 25.46875 435.707031 C 26.742188 435.707031 27.773438 434.675781 27.773438 433.402344 Z M 27.773438 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.175781 433.402344 C 48.175781 432.128906 47.144531 431.097656 45.871094 431.097656 C 44.597656 431.097656 43.566406 432.128906 43.566406 433.402344 C 43.566406 434.675781 44.597656 435.707031 45.871094 435.707031 C 47.144531 435.707031 48.175781 434.675781 48.175781 433.402344 Z M 48.175781 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.390625 433.402344 C 42.390625 432.128906 41.359375 431.097656 40.085938 431.097656 C 38.8125 431.097656 37.78125 432.128906 37.78125 433.402344 C 37.78125 434.675781 38.8125 435.707031 40.085938 435.707031 C 41.359375 435.707031 42.390625 434.675781 42.390625 433.402344 Z M 42.390625 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.988281 433.402344 C 31.988281 432.128906 30.957031 431.097656 29.683594 431.097656 C 28.410156 431.097656 27.378906 432.128906 27.378906 433.402344 C 27.378906 434.675781 28.410156 435.707031 29.683594 435.707031 C 30.957031 435.707031 31.988281 434.675781 31.988281 433.402344 Z M 31.988281 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.863281 433.402344 C 60.863281 432.128906 59.832031 431.097656 58.558594 431.097656 C 57.285156 431.097656 56.253906 432.128906 56.253906 433.402344 C 56.253906 434.675781 57.285156 435.707031 58.558594 435.707031 C 59.832031 435.707031 60.863281 434.675781 60.863281 433.402344 Z M 60.863281 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.15625 433.402344 C 53.15625 432.128906 52.125 431.097656 50.851562 431.097656 C 49.578125 431.097656 48.546875 432.128906 48.546875 433.402344 C 48.546875 434.675781 49.578125 435.707031 50.851562 435.707031 C 52.125 435.707031 53.15625 434.675781 53.15625 433.402344 Z M 53.15625 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.417969 433.402344 C 29.417969 432.128906 28.386719 431.097656 27.113281 431.097656 C 25.839844 431.097656 24.808594 432.128906 24.808594 433.402344 C 24.808594 434.675781 25.839844 435.707031 27.113281 435.707031 C 28.386719 435.707031 29.417969 434.675781 29.417969 433.402344 Z M 29.417969 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.269531 433.402344 C 35.269531 432.128906 34.238281 431.097656 32.964844 431.097656 C 31.691406 431.097656 30.660156 432.128906 30.660156 433.402344 C 30.660156 434.675781 31.691406 435.707031 32.964844 435.707031 C 34.238281 435.707031 35.269531 434.675781 35.269531 433.402344 Z M 35.269531 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.707031 433.402344 C 47.707031 432.128906 46.675781 431.097656 45.402344 431.097656 C 44.128906 431.097656 43.097656 432.128906 43.097656 433.402344 C 43.097656 434.675781 44.128906 435.707031 45.402344 435.707031 C 46.675781 435.707031 47.707031 434.675781 47.707031 433.402344 Z M 47.707031 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.878906 433.402344 C 27.878906 432.128906 26.847656 431.097656 25.574219 431.097656 C 24.300781 431.097656 23.269531 432.128906 23.269531 433.402344 C 23.269531 434.675781 24.300781 435.707031 25.574219 435.707031 C 26.847656 435.707031 27.878906 434.675781 27.878906 433.402344 Z M 27.878906 433.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.988281 428.558594 C 61.988281 427.285156 60.957031 426.253906 59.683594 426.253906 C 58.410156 426.253906 57.378906 427.285156 57.378906 428.558594 C 57.378906 429.832031 58.410156 430.863281 59.683594 430.863281 C 60.957031 430.863281 61.988281 429.832031 61.988281 428.558594 Z M 61.988281 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.761719 428.558594 C 34.761719 427.285156 33.730469 426.253906 32.457031 426.253906 C 31.183594 426.253906 30.152344 427.285156 30.152344 428.558594 C 30.152344 429.832031 31.183594 430.863281 32.457031 430.863281 C 33.730469 430.863281 34.761719 429.832031 34.761719 428.558594 Z M 34.761719 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.390625 428.558594 C 51.390625 427.285156 50.359375 426.253906 49.085938 426.253906 C 47.8125 426.253906 46.78125 427.285156 46.78125 428.558594 C 46.78125 429.832031 47.8125 430.863281 49.085938 430.863281 C 50.359375 430.863281 51.390625 429.832031 51.390625 428.558594 Z M 51.390625 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.34375 428.558594 C 36.34375 427.285156 35.3125 426.253906 34.039062 426.253906 C 32.765625 426.253906 31.734375 427.285156 31.734375 428.558594 C 31.734375 429.832031 32.765625 430.863281 34.039062 430.863281 C 35.3125 430.863281 36.34375 429.832031 36.34375 428.558594 Z M 36.34375 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.171875 428.558594 C 41.171875 427.285156 40.140625 426.253906 38.867188 426.253906 C 37.59375 426.253906 36.5625 427.285156 36.5625 428.558594 C 36.5625 429.832031 37.59375 430.863281 38.867188 430.863281 C 40.140625 430.863281 41.171875 429.832031 41.171875 428.558594 Z M 41.171875 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.066406 428.558594 C 48.066406 427.285156 47.035156 426.253906 45.761719 426.253906 C 44.488281 426.253906 43.457031 427.285156 43.457031 428.558594 C 43.457031 429.832031 44.488281 430.863281 45.761719 430.863281 C 47.035156 430.863281 48.066406 429.832031 48.066406 428.558594 Z M 48.066406 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.792969 428.558594 C 51.792969 427.285156 50.761719 426.253906 49.488281 426.253906 C 48.214844 426.253906 47.183594 427.285156 47.183594 428.558594 C 47.183594 429.832031 48.214844 430.863281 49.488281 430.863281 C 50.761719 430.863281 51.792969 429.832031 51.792969 428.558594 Z M 51.792969 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.382812 428.558594 C 39.382812 427.285156 38.351562 426.253906 37.078125 426.253906 C 35.804688 426.253906 34.773438 427.285156 34.773438 428.558594 C 34.773438 429.832031 35.804688 430.863281 37.078125 430.863281 C 38.351562 430.863281 39.382812 429.832031 39.382812 428.558594 Z M 39.382812 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.03125 428.558594 C 65.03125 427.285156 64 426.253906 62.726562 426.253906 C 61.453125 426.253906 60.421875 427.285156 60.421875 428.558594 C 60.421875 429.832031 61.453125 430.863281 62.726562 430.863281 C 64 430.863281 65.03125 429.832031 65.03125 428.558594 Z M 65.03125 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.476562 428.558594 C 50.476562 427.285156 49.445312 426.253906 48.171875 426.253906 C 46.898438 426.253906 45.867188 427.285156 45.867188 428.558594 C 45.867188 429.832031 46.898438 430.863281 48.171875 430.863281 C 49.445312 430.863281 50.476562 429.832031 50.476562 428.558594 Z M 50.476562 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.472656 428.558594 C 32.472656 427.285156 31.441406 426.253906 30.167969 426.253906 C 28.894531 426.253906 27.863281 427.285156 27.863281 428.558594 C 27.863281 429.832031 28.894531 430.863281 30.167969 430.863281 C 31.441406 430.863281 32.472656 429.832031 32.472656 428.558594 Z M 32.472656 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.144531 428.558594 C 50.144531 427.285156 49.113281 426.253906 47.839844 426.253906 C 46.566406 426.253906 45.535156 427.285156 45.535156 428.558594 C 45.535156 429.832031 46.566406 430.863281 47.839844 430.863281 C 49.113281 430.863281 50.144531 429.832031 50.144531 428.558594 Z M 50.144531 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.472656 428.558594 C 61.472656 427.285156 60.441406 426.253906 59.167969 426.253906 C 57.894531 426.253906 56.863281 427.285156 56.863281 428.558594 C 56.863281 429.832031 57.894531 430.863281 59.167969 430.863281 C 60.441406 430.863281 61.472656 429.832031 61.472656 428.558594 Z M 61.472656 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.550781 428.558594 C 42.550781 427.285156 41.519531 426.253906 40.246094 426.253906 C 38.972656 426.253906 37.941406 427.285156 37.941406 428.558594 C 37.941406 429.832031 38.972656 430.863281 40.246094 430.863281 C 41.519531 430.863281 42.550781 429.832031 42.550781 428.558594 Z M 42.550781 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.941406 428.558594 C 42.941406 427.285156 41.910156 426.253906 40.636719 426.253906 C 39.363281 426.253906 38.332031 427.285156 38.332031 428.558594 C 38.332031 429.832031 39.363281 430.863281 40.636719 430.863281 C 41.910156 430.863281 42.941406 429.832031 42.941406 428.558594 Z M 42.941406 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.257812 428.558594 C 66.257812 427.285156 65.226562 426.253906 63.953125 426.253906 C 62.679688 426.253906 61.648438 427.285156 61.648438 428.558594 C 61.648438 429.832031 62.679688 430.863281 63.953125 430.863281 C 65.226562 430.863281 66.257812 429.832031 66.257812 428.558594 Z M 66.257812 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.738281 428.558594 C 56.738281 427.285156 55.707031 426.253906 54.433594 426.253906 C 53.160156 426.253906 52.128906 427.285156 52.128906 428.558594 C 52.128906 429.832031 53.160156 430.863281 54.433594 430.863281 C 55.707031 430.863281 56.738281 429.832031 56.738281 428.558594 Z M 56.738281 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.734375 428.558594 C 41.734375 427.285156 40.703125 426.253906 39.429688 426.253906 C 38.15625 426.253906 37.125 427.285156 37.125 428.558594 C 37.125 429.832031 38.15625 430.863281 39.429688 430.863281 C 40.703125 430.863281 41.734375 429.832031 41.734375 428.558594 Z M 41.734375 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.253906 428.558594 C 48.253906 427.285156 47.222656 426.253906 45.949219 426.253906 C 44.675781 426.253906 43.644531 427.285156 43.644531 428.558594 C 43.644531 429.832031 44.675781 430.863281 45.949219 430.863281 C 47.222656 430.863281 48.253906 429.832031 48.253906 428.558594 Z M 48.253906 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.007812 428.558594 C 55.007812 427.285156 53.976562 426.253906 52.703125 426.253906 C 51.429688 426.253906 50.398438 427.285156 50.398438 428.558594 C 50.398438 429.832031 51.429688 430.863281 52.703125 430.863281 C 53.976562 430.863281 55.007812 429.832031 55.007812 428.558594 Z M 55.007812 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.113281 428.558594 C 32.113281 427.285156 31.082031 426.253906 29.808594 426.253906 C 28.535156 426.253906 27.503906 427.285156 27.503906 428.558594 C 27.503906 429.832031 28.535156 430.863281 29.808594 430.863281 C 31.082031 430.863281 32.113281 429.832031 32.113281 428.558594 Z M 32.113281 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.230469 428.558594 C 51.230469 427.285156 50.199219 426.253906 48.925781 426.253906 C 47.652344 426.253906 46.621094 427.285156 46.621094 428.558594 C 46.621094 429.832031 47.652344 430.863281 48.925781 430.863281 C 50.199219 430.863281 51.230469 429.832031 51.230469 428.558594 Z M 51.230469 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.8125 428.558594 C 45.8125 427.285156 44.78125 426.253906 43.507812 426.253906 C 42.234375 426.253906 41.203125 427.285156 41.203125 428.558594 C 41.203125 429.832031 42.234375 430.863281 43.507812 430.863281 C 44.78125 430.863281 45.8125 429.832031 45.8125 428.558594 Z M 45.8125 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.0625 428.558594 C 36.0625 427.285156 35.03125 426.253906 33.757812 426.253906 C 32.484375 426.253906 31.453125 427.285156 31.453125 428.558594 C 31.453125 429.832031 32.484375 430.863281 33.757812 430.863281 C 35.03125 430.863281 36.0625 429.832031 36.0625 428.558594 Z M 36.0625 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.125 428.558594 C 63.125 427.285156 62.09375 426.253906 60.820312 426.253906 C 59.546875 426.253906 58.515625 427.285156 58.515625 428.558594 C 58.515625 429.832031 59.546875 430.863281 60.820312 430.863281 C 62.09375 430.863281 63.125 429.832031 63.125 428.558594 Z M 63.125 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.902344 428.558594 C 55.902344 427.285156 54.871094 426.253906 53.597656 426.253906 C 52.324219 426.253906 51.292969 427.285156 51.292969 428.558594 C 51.292969 429.832031 52.324219 430.863281 53.597656 430.863281 C 54.871094 430.863281 55.902344 429.832031 55.902344 428.558594 Z M 55.902344 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.652344 428.558594 C 33.652344 427.285156 32.621094 426.253906 31.347656 426.253906 C 30.074219 426.253906 29.042969 427.285156 29.042969 428.558594 C 29.042969 429.832031 30.074219 430.863281 31.347656 430.863281 C 32.621094 430.863281 33.652344 429.832031 33.652344 428.558594 Z M 33.652344 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.136719 428.558594 C 39.136719 427.285156 38.105469 426.253906 36.832031 426.253906 C 35.558594 426.253906 34.527344 427.285156 34.527344 428.558594 C 34.527344 429.832031 35.558594 430.863281 36.832031 430.863281 C 38.105469 430.863281 39.136719 429.832031 39.136719 428.558594 Z M 39.136719 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.792969 428.558594 C 50.792969 427.285156 49.761719 426.253906 48.488281 426.253906 C 47.214844 426.253906 46.183594 427.285156 46.183594 428.558594 C 46.183594 429.832031 47.214844 430.863281 48.488281 430.863281 C 49.761719 430.863281 50.792969 429.832031 50.792969 428.558594 Z M 50.792969 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.207031 428.558594 C 32.207031 427.285156 31.175781 426.253906 29.902344 426.253906 C 28.628906 426.253906 27.597656 427.285156 27.597656 428.558594 C 27.597656 429.832031 28.628906 430.863281 29.902344 430.863281 C 31.175781 430.863281 32.207031 429.832031 32.207031 428.558594 Z M 32.207031 428.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.25 423.714844 C 64.25 422.441406 63.21875 421.410156 61.945312 421.410156 C 60.671875 421.410156 59.640625 422.441406 59.640625 423.714844 C 59.640625 424.988281 60.671875 426.019531 61.945312 426.019531 C 63.21875 426.019531 64.25 424.988281 64.25 423.714844 Z M 64.25 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.117188 423.714844 C 39.117188 422.441406 38.085938 421.410156 36.8125 421.410156 C 35.539062 421.410156 34.507812 422.441406 34.507812 423.714844 C 34.507812 424.988281 35.539062 426.019531 36.8125 426.019531 C 38.085938 426.019531 39.117188 424.988281 39.117188 423.714844 Z M 39.117188 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.140625 423.714844 C 33.140625 422.441406 32.109375 421.410156 30.835938 421.410156 C 29.5625 421.410156 28.53125 422.441406 28.53125 423.714844 C 28.53125 424.988281 29.5625 426.019531 30.835938 426.019531 C 32.109375 426.019531 33.140625 424.988281 33.140625 423.714844 Z M 33.140625 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.582031 423.714844 C 40.582031 422.441406 39.550781 421.410156 38.277344 421.410156 C 37.003906 421.410156 35.972656 422.441406 35.972656 423.714844 C 35.972656 424.988281 37.003906 426.019531 38.277344 426.019531 C 39.550781 426.019531 40.582031 424.988281 40.582031 423.714844 Z M 40.582031 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.039062 423.714844 C 45.039062 422.441406 44.007812 421.410156 42.734375 421.410156 C 41.460938 421.410156 40.429688 422.441406 40.429688 423.714844 C 40.429688 424.988281 41.460938 426.019531 42.734375 426.019531 C 44.007812 426.019531 45.039062 424.988281 45.039062 423.714844 Z M 45.039062 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.398438 423.714844 C 51.398438 422.441406 50.367188 421.410156 49.09375 421.410156 C 47.820312 421.410156 46.789062 422.441406 46.789062 423.714844 C 46.789062 424.988281 47.820312 426.019531 49.09375 426.019531 C 50.367188 426.019531 51.398438 424.988281 51.398438 423.714844 Z M 51.398438 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.839844 423.714844 C 54.839844 422.441406 53.808594 421.410156 52.535156 421.410156 C 51.261719 421.410156 50.230469 422.441406 50.230469 423.714844 C 50.230469 424.988281 51.261719 426.019531 52.535156 426.019531 C 53.808594 426.019531 54.839844 424.988281 54.839844 423.714844 Z M 54.839844 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.386719 423.714844 C 43.386719 422.441406 42.355469 421.410156 41.082031 421.410156 C 39.808594 421.410156 38.777344 422.441406 38.777344 423.714844 C 38.777344 424.988281 39.808594 426.019531 41.082031 426.019531 C 42.355469 426.019531 43.386719 424.988281 43.386719 423.714844 Z M 43.386719 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.058594 423.714844 C 67.058594 422.441406 66.027344 421.410156 64.753906 421.410156 C 63.480469 421.410156 62.449219 422.441406 62.449219 423.714844 C 62.449219 424.988281 63.480469 426.019531 64.753906 426.019531 C 66.027344 426.019531 67.058594 424.988281 67.058594 423.714844 Z M 67.058594 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.625 423.714844 C 53.625 422.441406 52.59375 421.410156 51.320312 421.410156 C 50.046875 421.410156 49.015625 422.441406 49.015625 423.714844 C 49.015625 424.988281 50.046875 426.019531 51.320312 426.019531 C 52.59375 426.019531 53.625 424.988281 53.625 423.714844 Z M 53.625 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.007812 423.714844 C 37.007812 422.441406 35.976562 421.410156 34.703125 421.410156 C 33.429688 421.410156 32.398438 422.441406 32.398438 423.714844 C 32.398438 424.988281 33.429688 426.019531 34.703125 426.019531 C 35.976562 426.019531 37.007812 424.988281 37.007812 423.714844 Z M 37.007812 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.316406 423.714844 C 53.316406 422.441406 52.285156 421.410156 51.011719 421.410156 C 49.738281 421.410156 48.707031 422.441406 48.707031 423.714844 C 48.707031 424.988281 49.738281 426.019531 51.011719 426.019531 C 52.285156 426.019531 53.316406 424.988281 53.316406 423.714844 Z M 53.316406 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.773438 423.714844 C 63.773438 422.441406 62.742188 421.410156 61.46875 421.410156 C 60.195312 421.410156 59.164062 422.441406 59.164062 423.714844 C 59.164062 424.988281 60.195312 426.019531 61.46875 426.019531 C 62.742188 426.019531 63.773438 424.988281 63.773438 423.714844 Z M 63.773438 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.308594 423.714844 C 46.308594 422.441406 45.277344 421.410156 44.003906 421.410156 C 42.730469 421.410156 41.699219 422.441406 41.699219 423.714844 C 41.699219 424.988281 42.730469 426.019531 44.003906 426.019531 C 45.277344 426.019531 46.308594 424.988281 46.308594 423.714844 Z M 46.308594 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.667969 423.714844 C 46.667969 422.441406 45.636719 421.410156 44.363281 421.410156 C 43.089844 421.410156 42.058594 422.441406 42.058594 423.714844 C 42.058594 424.988281 43.089844 426.019531 44.363281 426.019531 C 45.636719 426.019531 46.667969 424.988281 46.667969 423.714844 Z M 46.667969 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.191406 423.714844 C 68.191406 422.441406 67.160156 421.410156 65.886719 421.410156 C 64.613281 421.410156 63.582031 422.441406 63.582031 423.714844 C 63.582031 424.988281 64.613281 426.019531 65.886719 426.019531 C 67.160156 426.019531 68.191406 424.988281 68.191406 423.714844 Z M 68.191406 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 59.40625 423.714844 C 59.40625 422.441406 58.375 421.410156 57.101562 421.410156 C 55.828125 421.410156 54.796875 422.441406 54.796875 423.714844 C 54.796875 424.988281 55.828125 426.019531 57.101562 426.019531 C 58.375 426.019531 59.40625 424.988281 59.40625 423.714844 Z M 59.40625 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.554688 423.714844 C 45.554688 422.441406 44.523438 421.410156 43.25 421.410156 C 41.976562 421.410156 40.945312 422.441406 40.945312 423.714844 C 40.945312 424.988281 41.976562 426.019531 43.25 426.019531 C 44.523438 426.019531 45.554688 424.988281 45.554688 423.714844 Z M 45.554688 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.574219 423.714844 C 51.574219 422.441406 50.542969 421.410156 49.269531 421.410156 C 47.996094 421.410156 46.964844 422.441406 46.964844 423.714844 C 46.964844 424.988281 47.996094 426.019531 49.269531 426.019531 C 50.542969 426.019531 51.574219 424.988281 51.574219 423.714844 Z M 51.574219 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.808594 423.714844 C 57.808594 422.441406 56.777344 421.410156 55.503906 421.410156 C 54.230469 421.410156 53.199219 422.441406 53.199219 423.714844 C 53.199219 424.988281 54.230469 426.019531 55.503906 426.019531 C 56.777344 426.019531 57.808594 424.988281 57.808594 423.714844 Z M 57.808594 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.671875 423.714844 C 36.671875 422.441406 35.640625 421.410156 34.367188 421.410156 C 33.09375 421.410156 32.0625 422.441406 32.0625 423.714844 C 32.0625 424.988281 33.09375 426.019531 34.367188 426.019531 C 35.640625 426.019531 36.671875 424.988281 36.671875 423.714844 Z M 36.671875 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.75 423.714844 C 37.75 422.441406 36.71875 421.410156 35.445312 421.410156 C 34.171875 421.410156 33.140625 422.441406 33.140625 423.714844 C 33.140625 424.988281 34.171875 426.019531 35.445312 426.019531 C 36.71875 426.019531 37.75 424.988281 37.75 423.714844 Z M 37.75 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.320312 423.714844 C 49.320312 422.441406 48.289062 421.410156 47.015625 421.410156 C 45.742188 421.410156 44.710938 422.441406 44.710938 423.714844 C 44.710938 424.988281 45.742188 426.019531 47.015625 426.019531 C 48.289062 426.019531 49.320312 424.988281 49.320312 423.714844 Z M 49.320312 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.320312 423.714844 C 40.320312 422.441406 39.289062 421.410156 38.015625 421.410156 C 36.742188 421.410156 35.710938 422.441406 35.710938 423.714844 C 35.710938 424.988281 36.742188 426.019531 38.015625 426.019531 C 39.289062 426.019531 40.320312 424.988281 40.320312 423.714844 Z M 40.320312 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.296875 423.714844 C 65.296875 422.441406 64.265625 421.410156 62.992188 421.410156 C 61.71875 421.410156 60.6875 422.441406 60.6875 423.714844 C 60.6875 424.988281 61.71875 426.019531 62.992188 426.019531 C 64.265625 426.019531 65.296875 424.988281 65.296875 423.714844 Z M 65.296875 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.628906 423.714844 C 58.628906 422.441406 57.597656 421.410156 56.324219 421.410156 C 55.050781 421.410156 54.019531 422.441406 54.019531 423.714844 C 54.019531 424.988281 55.050781 426.019531 56.324219 426.019531 C 57.597656 426.019531 58.628906 424.988281 58.628906 423.714844 Z M 58.628906 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.09375 423.714844 C 38.09375 422.441406 37.0625 421.410156 35.789062 421.410156 C 34.515625 421.410156 33.484375 422.441406 33.484375 423.714844 C 33.484375 424.988281 34.515625 426.019531 35.789062 426.019531 C 37.0625 426.019531 38.09375 424.988281 38.09375 423.714844 Z M 38.09375 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.160156 423.714844 C 43.160156 422.441406 42.128906 421.410156 40.855469 421.410156 C 39.582031 421.410156 38.550781 422.441406 38.550781 423.714844 C 38.550781 424.988281 39.582031 426.019531 40.855469 426.019531 C 42.128906 426.019531 43.160156 424.988281 43.160156 423.714844 Z M 43.160156 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.917969 423.714844 C 53.917969 422.441406 52.886719 421.410156 51.613281 421.410156 C 50.339844 421.410156 49.308594 422.441406 49.308594 423.714844 C 49.308594 424.988281 50.339844 426.019531 51.613281 426.019531 C 52.886719 426.019531 53.917969 424.988281 53.917969 423.714844 Z M 53.917969 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.761719 423.714844 C 36.761719 422.441406 35.730469 421.410156 34.457031 421.410156 C 33.183594 421.410156 32.152344 422.441406 32.152344 423.714844 C 32.152344 424.988281 33.183594 426.019531 34.457031 426.019531 C 35.730469 426.019531 36.761719 424.988281 36.761719 423.714844 Z M 36.761719 423.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.414062 418.871094 C 66.414062 417.597656 65.382812 416.566406 64.109375 416.566406 C 62.835938 416.566406 61.804688 417.597656 61.804688 418.871094 C 61.804688 420.144531 62.835938 421.175781 64.109375 421.175781 C 65.382812 421.175781 66.414062 420.144531 66.414062 418.871094 Z M 66.414062 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.628906 418.871094 C 43.628906 417.597656 42.597656 416.566406 41.324219 416.566406 C 40.050781 416.566406 39.019531 417.597656 39.019531 418.871094 C 39.019531 420.144531 40.050781 421.175781 41.324219 421.175781 C 42.597656 421.175781 43.628906 420.144531 43.628906 418.871094 Z M 43.628906 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.546875 418.871094 C 57.546875 417.597656 56.515625 416.566406 55.242188 416.566406 C 53.96875 416.566406 52.9375 417.597656 52.9375 418.871094 C 52.9375 420.144531 53.96875 421.175781 55.242188 421.175781 C 56.515625 421.175781 57.546875 420.144531 57.546875 418.871094 Z M 57.546875 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.957031 418.871094 C 44.957031 417.597656 43.925781 416.566406 42.652344 416.566406 C 41.378906 416.566406 40.347656 417.597656 40.347656 418.871094 C 40.347656 420.144531 41.378906 421.175781 42.652344 421.175781 C 43.925781 421.175781 44.957031 420.144531 44.957031 418.871094 Z M 44.957031 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.996094 418.871094 C 48.996094 417.597656 47.964844 416.566406 46.691406 416.566406 C 45.417969 416.566406 44.386719 417.597656 44.386719 418.871094 C 44.386719 420.144531 45.417969 421.175781 46.691406 421.175781 C 47.964844 421.175781 48.996094 420.144531 48.996094 418.871094 Z M 48.996094 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.765625 418.871094 C 54.765625 417.597656 53.734375 416.566406 52.460938 416.566406 C 51.1875 416.566406 50.15625 417.597656 50.15625 418.871094 C 50.15625 420.144531 51.1875 421.175781 52.460938 421.175781 C 53.734375 421.175781 54.765625 420.144531 54.765625 418.871094 Z M 54.765625 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.882812 418.871094 C 57.882812 417.597656 56.851562 416.566406 55.578125 416.566406 C 54.304688 416.566406 53.273438 417.597656 53.273438 418.871094 C 53.273438 420.144531 54.304688 421.175781 55.578125 421.175781 C 56.851562 421.175781 57.882812 420.144531 57.882812 418.871094 Z M 57.882812 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.5 418.871094 C 47.5 417.597656 46.46875 416.566406 45.195312 416.566406 C 43.921875 416.566406 42.890625 417.597656 42.890625 418.871094 C 42.890625 420.144531 43.921875 421.175781 45.195312 421.175781 C 46.46875 421.175781 47.5 420.144531 47.5 418.871094 Z M 47.5 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.960938 418.871094 C 68.960938 417.597656 67.929688 416.566406 66.65625 416.566406 C 65.382812 416.566406 64.351562 417.597656 64.351562 418.871094 C 64.351562 420.144531 65.382812 421.175781 66.65625 421.175781 C 67.929688 421.175781 68.960938 420.144531 68.960938 418.871094 Z M 68.960938 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.78125 418.871094 C 56.78125 417.597656 55.75 416.566406 54.476562 416.566406 C 53.203125 416.566406 52.171875 417.597656 52.171875 418.871094 C 52.171875 420.144531 53.203125 421.175781 54.476562 421.175781 C 55.75 421.175781 56.78125 420.144531 56.78125 418.871094 Z M 56.78125 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.71875 418.871094 C 41.71875 417.597656 40.6875 416.566406 39.414062 416.566406 C 38.140625 416.566406 37.109375 417.597656 37.109375 418.871094 C 37.109375 420.144531 38.140625 421.175781 39.414062 421.175781 C 40.6875 421.175781 41.71875 420.144531 41.71875 418.871094 Z M 41.71875 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.503906 418.871094 C 56.503906 417.597656 55.472656 416.566406 54.199219 416.566406 C 52.925781 416.566406 51.894531 417.597656 51.894531 418.871094 C 51.894531 420.144531 52.925781 421.175781 54.199219 421.175781 C 55.472656 421.175781 56.503906 420.144531 56.503906 418.871094 Z M 56.503906 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.984375 418.871094 C 65.984375 417.597656 64.953125 416.566406 63.679688 416.566406 C 62.40625 416.566406 61.375 417.597656 61.375 418.871094 C 61.375 420.144531 62.40625 421.175781 63.679688 421.175781 C 64.953125 421.175781 65.984375 420.144531 65.984375 418.871094 Z M 65.984375 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.148438 418.871094 C 50.148438 417.597656 49.117188 416.566406 47.84375 416.566406 C 46.570312 416.566406 45.539062 417.597656 45.539062 418.871094 C 45.539062 420.144531 46.570312 421.175781 47.84375 421.175781 C 49.117188 421.175781 50.148438 420.144531 50.148438 418.871094 Z M 50.148438 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.476562 418.871094 C 50.476562 417.597656 49.445312 416.566406 48.171875 416.566406 C 46.898438 416.566406 45.867188 417.597656 45.867188 418.871094 C 45.867188 420.144531 46.898438 421.175781 48.171875 421.175781 C 49.445312 421.175781 50.476562 420.144531 50.476562 418.871094 Z M 50.476562 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.988281 418.871094 C 69.988281 417.597656 68.957031 416.566406 67.683594 416.566406 C 66.410156 416.566406 65.378906 417.597656 65.378906 418.871094 C 65.378906 420.144531 66.410156 421.175781 67.683594 421.175781 C 68.957031 421.175781 69.988281 420.144531 69.988281 418.871094 Z M 69.988281 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.023438 418.871094 C 62.023438 417.597656 60.992188 416.566406 59.71875 416.566406 C 58.445312 416.566406 57.414062 417.597656 57.414062 418.871094 C 57.414062 420.144531 58.445312 421.175781 59.71875 421.175781 C 60.992188 421.175781 62.023438 420.144531 62.023438 418.871094 Z M 62.023438 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.464844 418.871094 C 49.464844 417.597656 48.433594 416.566406 47.160156 416.566406 C 45.886719 416.566406 44.855469 417.597656 44.855469 418.871094 C 44.855469 420.144531 45.886719 421.175781 47.160156 421.175781 C 48.433594 421.175781 49.464844 420.144531 49.464844 418.871094 Z M 49.464844 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.921875 418.871094 C 54.921875 417.597656 53.890625 416.566406 52.617188 416.566406 C 51.34375 416.566406 50.3125 417.597656 50.3125 418.871094 C 50.3125 420.144531 51.34375 421.175781 52.617188 421.175781 C 53.890625 421.175781 54.921875 420.144531 54.921875 418.871094 Z M 54.921875 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.574219 418.871094 C 60.574219 417.597656 59.542969 416.566406 58.269531 416.566406 C 56.996094 416.566406 55.964844 417.597656 55.964844 418.871094 C 55.964844 420.144531 56.996094 421.175781 58.269531 421.175781 C 59.542969 421.175781 60.574219 420.144531 60.574219 418.871094 Z M 60.574219 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.414062 418.871094 C 41.414062 417.597656 40.382812 416.566406 39.109375 416.566406 C 37.835938 416.566406 36.804688 417.597656 36.804688 418.871094 C 36.804688 420.144531 37.835938 421.175781 39.109375 421.175781 C 40.382812 421.175781 41.414062 420.144531 41.414062 418.871094 Z M 41.414062 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.414062 418.871094 C 57.414062 417.597656 56.382812 416.566406 55.109375 416.566406 C 53.835938 416.566406 52.804688 417.597656 52.804688 418.871094 C 52.804688 420.144531 53.835938 421.175781 55.109375 421.175781 C 56.382812 421.175781 57.414062 420.144531 57.414062 418.871094 Z M 57.414062 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.878906 418.871094 C 52.878906 417.597656 51.847656 416.566406 50.574219 416.566406 C 49.300781 416.566406 48.269531 417.597656 48.269531 418.871094 C 48.269531 420.144531 49.300781 421.175781 50.574219 421.175781 C 51.847656 421.175781 52.878906 420.144531 52.878906 418.871094 Z M 52.878906 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.71875 418.871094 C 44.71875 417.597656 43.6875 416.566406 42.414062 416.566406 C 41.140625 416.566406 40.109375 417.597656 40.109375 418.871094 C 40.109375 420.144531 41.140625 421.175781 42.414062 421.175781 C 43.6875 421.175781 44.71875 420.144531 44.71875 418.871094 Z M 44.71875 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.363281 418.871094 C 67.363281 417.597656 66.332031 416.566406 65.058594 416.566406 C 63.785156 416.566406 62.753906 417.597656 62.753906 418.871094 C 62.753906 420.144531 63.785156 421.175781 65.058594 421.175781 C 66.332031 421.175781 67.363281 420.144531 67.363281 418.871094 Z M 67.363281 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.320312 418.871094 C 61.320312 417.597656 60.289062 416.566406 59.015625 416.566406 C 57.742188 416.566406 56.710938 417.597656 56.710938 418.871094 C 56.710938 420.144531 57.742188 421.175781 59.015625 421.175781 C 60.289062 421.175781 61.320312 420.144531 61.320312 418.871094 Z M 61.320312 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.703125 418.871094 C 42.703125 417.597656 41.671875 416.566406 40.398438 416.566406 C 39.125 416.566406 38.09375 417.597656 38.09375 418.871094 C 38.09375 420.144531 39.125 421.175781 40.398438 421.175781 C 41.671875 421.175781 42.703125 420.144531 42.703125 418.871094 Z M 42.703125 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.292969 418.871094 C 47.292969 417.597656 46.261719 416.566406 44.988281 416.566406 C 43.714844 416.566406 42.683594 417.597656 42.683594 418.871094 C 42.683594 420.144531 43.714844 421.175781 44.988281 421.175781 C 46.261719 421.175781 47.292969 420.144531 47.292969 418.871094 Z M 47.292969 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.046875 418.871094 C 57.046875 417.597656 56.015625 416.566406 54.742188 416.566406 C 53.46875 416.566406 52.4375 417.597656 52.4375 418.871094 C 52.4375 420.144531 53.46875 421.175781 54.742188 421.175781 C 56.015625 421.175781 57.046875 420.144531 57.046875 418.871094 Z M 57.046875 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.496094 418.871094 C 41.496094 417.597656 40.464844 416.566406 39.191406 416.566406 C 37.917969 416.566406 36.886719 417.597656 36.886719 418.871094 C 36.886719 420.144531 37.917969 421.175781 39.191406 421.175781 C 40.464844 421.175781 41.496094 420.144531 41.496094 418.871094 Z M 41.496094 418.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.460938 414.027344 C 68.460938 412.753906 67.429688 411.722656 66.15625 411.722656 C 64.882812 411.722656 63.851562 412.753906 63.851562 414.027344 C 63.851562 415.300781 64.882812 416.332031 66.15625 416.332031 C 67.429688 416.332031 68.460938 415.300781 68.460938 414.027344 Z M 68.460938 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.25 414.027344 C 48.25 412.753906 47.21875 411.722656 45.945312 411.722656 C 44.671875 411.722656 43.640625 412.753906 43.640625 414.027344 C 43.640625 415.300781 44.671875 416.332031 45.945312 416.332031 C 47.21875 416.332031 48.25 415.300781 48.25 414.027344 Z M 48.25 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.59375 414.027344 C 60.59375 412.753906 59.5625 411.722656 58.289062 411.722656 C 57.015625 411.722656 55.984375 412.753906 55.984375 414.027344 C 55.984375 415.300781 57.015625 416.332031 58.289062 416.332031 C 59.5625 416.332031 60.59375 415.300781 60.59375 414.027344 Z M 60.59375 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.425781 414.027344 C 49.425781 412.753906 48.394531 411.722656 47.121094 411.722656 C 45.847656 411.722656 44.816406 412.753906 44.816406 414.027344 C 44.816406 415.300781 45.847656 416.332031 47.121094 416.332031 C 48.394531 416.332031 49.425781 415.300781 49.425781 414.027344 Z M 49.425781 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.007812 414.027344 C 53.007812 412.753906 51.976562 411.722656 50.703125 411.722656 C 49.429688 411.722656 48.398438 412.753906 48.398438 414.027344 C 48.398438 415.300781 49.429688 416.332031 50.703125 416.332031 C 51.976562 416.332031 53.007812 415.300781 53.007812 414.027344 Z M 53.007812 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.125 414.027344 C 58.125 412.753906 57.09375 411.722656 55.820312 411.722656 C 54.546875 411.722656 53.515625 412.753906 53.515625 414.027344 C 53.515625 415.300781 54.546875 416.332031 55.820312 416.332031 C 57.09375 416.332031 58.125 415.300781 58.125 414.027344 Z M 58.125 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.894531 414.027344 C 60.894531 412.753906 59.863281 411.722656 58.589844 411.722656 C 57.316406 411.722656 56.285156 412.753906 56.285156 414.027344 C 56.285156 415.300781 57.316406 416.332031 58.589844 416.332031 C 59.863281 416.332031 60.894531 415.300781 60.894531 414.027344 Z M 60.894531 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.679688 414.027344 C 51.679688 412.753906 50.648438 411.722656 49.375 411.722656 C 48.101562 411.722656 47.070312 412.753906 47.070312 414.027344 C 47.070312 415.300781 48.101562 416.332031 49.375 416.332031 C 50.648438 416.332031 51.679688 415.300781 51.679688 414.027344 Z M 51.679688 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.71875 414.027344 C 70.71875 412.753906 69.6875 411.722656 68.414062 411.722656 C 67.140625 411.722656 66.109375 412.753906 66.109375 414.027344 C 66.109375 415.300781 67.140625 416.332031 68.414062 416.332031 C 69.6875 416.332031 70.71875 415.300781 70.71875 414.027344 Z M 70.71875 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 59.914062 414.027344 C 59.914062 412.753906 58.882812 411.722656 57.609375 411.722656 C 56.335938 411.722656 55.304688 412.753906 55.304688 414.027344 C 55.304688 415.300781 56.335938 416.332031 57.609375 416.332031 C 58.882812 416.332031 59.914062 415.300781 59.914062 414.027344 Z M 59.914062 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.554688 414.027344 C 46.554688 412.753906 45.523438 411.722656 44.25 411.722656 C 42.976562 411.722656 41.945312 412.753906 41.945312 414.027344 C 41.945312 415.300781 42.976562 416.332031 44.25 416.332031 C 45.523438 416.332031 46.554688 415.300781 46.554688 414.027344 Z M 46.554688 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 59.667969 414.027344 C 59.667969 412.753906 58.636719 411.722656 57.363281 411.722656 C 56.089844 411.722656 55.058594 412.753906 55.058594 414.027344 C 55.058594 415.300781 56.089844 416.332031 57.363281 416.332031 C 58.636719 416.332031 59.667969 415.300781 59.667969 414.027344 Z M 59.667969 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.078125 414.027344 C 68.078125 412.753906 67.046875 411.722656 65.773438 411.722656 C 64.5 411.722656 63.46875 412.753906 63.46875 414.027344 C 63.46875 415.300781 64.5 416.332031 65.773438 416.332031 C 67.046875 416.332031 68.078125 415.300781 68.078125 414.027344 Z M 68.078125 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.03125 414.027344 C 54.03125 412.753906 53 411.722656 51.726562 411.722656 C 50.453125 411.722656 49.421875 412.753906 49.421875 414.027344 C 49.421875 415.300781 50.453125 416.332031 51.726562 416.332031 C 53 416.332031 54.03125 415.300781 54.03125 414.027344 Z M 54.03125 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.746094 414.027344 C 37.746094 412.753906 36.714844 411.722656 35.441406 411.722656 C 34.167969 411.722656 33.136719 412.753906 33.136719 414.027344 C 33.136719 415.300781 34.167969 416.332031 35.441406 416.332031 C 36.714844 416.332031 37.746094 415.300781 37.746094 414.027344 Z M 37.746094 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.628906 414.027344 C 71.628906 412.753906 70.597656 411.722656 69.324219 411.722656 C 68.050781 411.722656 67.019531 412.753906 67.019531 414.027344 C 67.019531 415.300781 68.050781 416.332031 69.324219 416.332031 C 70.597656 416.332031 71.628906 415.300781 71.628906 414.027344 Z M 71.628906 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.5625 414.027344 C 64.5625 412.753906 63.53125 411.722656 62.257812 411.722656 C 60.984375 411.722656 59.953125 412.753906 59.953125 414.027344 C 59.953125 415.300781 60.984375 416.332031 62.257812 416.332031 C 63.53125 416.332031 64.5625 415.300781 64.5625 414.027344 Z M 64.5625 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.425781 414.027344 C 53.425781 412.753906 52.394531 411.722656 51.121094 411.722656 C 49.847656 411.722656 48.816406 412.753906 48.816406 414.027344 C 48.816406 415.300781 49.847656 416.332031 51.121094 416.332031 C 52.394531 416.332031 53.425781 415.300781 53.425781 414.027344 Z M 53.425781 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.265625 414.027344 C 58.265625 412.753906 57.234375 411.722656 55.960938 411.722656 C 54.6875 411.722656 53.65625 412.753906 53.65625 414.027344 C 53.65625 415.300781 54.6875 416.332031 55.960938 416.332031 C 57.234375 416.332031 58.265625 415.300781 58.265625 414.027344 Z M 58.265625 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.277344 414.027344 C 63.277344 412.753906 62.246094 411.722656 60.972656 411.722656 C 59.699219 411.722656 58.667969 412.753906 58.667969 414.027344 C 58.667969 415.300781 59.699219 416.332031 60.972656 416.332031 C 62.246094 416.332031 63.277344 415.300781 63.277344 414.027344 Z M 63.277344 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.285156 414.027344 C 46.285156 412.753906 45.253906 411.722656 43.980469 411.722656 C 42.707031 411.722656 41.675781 412.753906 41.675781 414.027344 C 41.675781 415.300781 42.707031 416.332031 43.980469 416.332031 C 45.253906 416.332031 46.285156 415.300781 46.285156 414.027344 Z M 46.285156 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.476562 414.027344 C 60.476562 412.753906 59.445312 411.722656 58.171875 411.722656 C 56.898438 411.722656 55.867188 412.753906 55.867188 414.027344 C 55.867188 415.300781 56.898438 416.332031 58.171875 416.332031 C 59.445312 416.332031 60.476562 415.300781 60.476562 414.027344 Z M 60.476562 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.453125 414.027344 C 56.453125 412.753906 55.421875 411.722656 54.148438 411.722656 C 52.875 411.722656 51.84375 412.753906 51.84375 414.027344 C 51.84375 415.300781 52.875 416.332031 54.148438 416.332031 C 55.421875 416.332031 56.453125 415.300781 56.453125 414.027344 Z M 56.453125 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.214844 414.027344 C 49.214844 412.753906 48.183594 411.722656 46.910156 411.722656 C 45.636719 411.722656 44.605469 412.753906 44.605469 414.027344 C 44.605469 415.300781 45.636719 416.332031 46.910156 416.332031 C 48.183594 416.332031 49.214844 415.300781 49.214844 414.027344 Z M 49.214844 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.300781 414.027344 C 69.300781 412.753906 68.269531 411.722656 66.996094 411.722656 C 65.722656 411.722656 64.691406 412.753906 64.691406 414.027344 C 64.691406 415.300781 65.722656 416.332031 66.996094 416.332031 C 68.269531 416.332031 69.300781 415.300781 69.300781 414.027344 Z M 69.300781 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.941406 414.027344 C 63.941406 412.753906 62.910156 411.722656 61.636719 411.722656 C 60.363281 411.722656 59.332031 412.753906 59.332031 414.027344 C 59.332031 415.300781 60.363281 416.332031 61.636719 416.332031 C 62.910156 416.332031 63.941406 415.300781 63.941406 414.027344 Z M 63.941406 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.425781 414.027344 C 47.425781 412.753906 46.394531 411.722656 45.121094 411.722656 C 43.847656 411.722656 42.816406 412.753906 42.816406 414.027344 C 42.816406 415.300781 43.847656 416.332031 45.121094 416.332031 C 46.394531 416.332031 47.425781 415.300781 47.425781 414.027344 Z M 47.425781 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.5 414.027344 C 51.5 412.753906 50.46875 411.722656 49.195312 411.722656 C 47.921875 411.722656 46.890625 412.753906 46.890625 414.027344 C 46.890625 415.300781 47.921875 416.332031 49.195312 416.332031 C 50.46875 416.332031 51.5 415.300781 51.5 414.027344 Z M 51.5 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.148438 414.027344 C 60.148438 412.753906 59.117188 411.722656 57.84375 411.722656 C 56.570312 411.722656 55.539062 412.753906 55.539062 414.027344 C 55.539062 415.300781 56.570312 416.332031 57.84375 416.332031 C 59.117188 416.332031 60.148438 415.300781 60.148438 414.027344 Z M 60.148438 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.355469 414.027344 C 46.355469 412.753906 45.324219 411.722656 44.050781 411.722656 C 42.777344 411.722656 41.746094 412.753906 41.746094 414.027344 C 41.746094 415.300781 42.777344 416.332031 44.050781 416.332031 C 45.324219 416.332031 46.355469 415.300781 46.355469 414.027344 Z M 46.355469 414.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.363281 409.183594 C 70.363281 407.910156 69.332031 406.878906 68.058594 406.878906 C 66.785156 406.878906 65.753906 407.910156 65.753906 409.183594 C 65.753906 410.457031 66.785156 411.488281 68.058594 411.488281 C 69.332031 411.488281 70.363281 410.457031 70.363281 409.183594 Z M 70.363281 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.933594 409.183594 C 52.933594 407.910156 51.902344 406.878906 50.628906 406.878906 C 49.355469 406.878906 48.324219 407.910156 48.324219 409.183594 C 48.324219 410.457031 49.355469 411.488281 50.628906 411.488281 C 51.902344 411.488281 52.933594 410.457031 52.933594 409.183594 Z M 52.933594 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.578125 409.183594 C 63.578125 407.910156 62.546875 406.878906 61.273438 406.878906 C 60 406.878906 58.96875 407.910156 58.96875 409.183594 C 58.96875 410.457031 60 411.488281 61.273438 411.488281 C 62.546875 411.488281 63.578125 410.457031 63.578125 409.183594 Z M 63.578125 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.945312 409.183594 C 53.945312 407.910156 52.914062 406.878906 51.640625 406.878906 C 50.367188 406.878906 49.335938 407.910156 49.335938 409.183594 C 49.335938 410.457031 50.367188 411.488281 51.640625 411.488281 C 52.914062 411.488281 53.945312 410.457031 53.945312 409.183594 Z M 53.945312 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.039062 409.183594 C 57.039062 407.910156 56.007812 406.878906 54.734375 406.878906 C 53.460938 406.878906 52.429688 407.910156 52.429688 409.183594 C 52.429688 410.457031 53.460938 411.488281 54.734375 411.488281 C 56.007812 411.488281 57.039062 410.457031 57.039062 409.183594 Z M 57.039062 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.449219 409.183594 C 61.449219 407.910156 60.417969 406.878906 59.144531 406.878906 C 57.871094 406.878906 56.839844 407.910156 56.839844 409.183594 C 56.839844 410.457031 57.871094 411.488281 59.144531 411.488281 C 60.417969 411.488281 61.449219 410.457031 61.449219 409.183594 Z M 61.449219 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.835938 409.183594 C 63.835938 407.910156 62.804688 406.878906 61.53125 406.878906 C 60.257812 406.878906 59.226562 407.910156 59.226562 409.183594 C 59.226562 410.457031 60.257812 411.488281 61.53125 411.488281 C 62.804688 411.488281 63.835938 410.457031 63.835938 409.183594 Z M 63.835938 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.890625 409.183594 C 55.890625 407.910156 54.859375 406.878906 53.585938 406.878906 C 52.3125 406.878906 51.28125 407.910156 51.28125 409.183594 C 51.28125 410.457031 52.3125 411.488281 53.585938 411.488281 C 54.859375 411.488281 55.890625 410.457031 55.890625 409.183594 Z M 55.890625 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.3125 409.183594 C 72.3125 407.910156 71.28125 406.878906 70.007812 406.878906 C 68.734375 406.878906 67.703125 407.910156 67.703125 409.183594 C 67.703125 410.457031 68.734375 411.488281 70.007812 411.488281 C 71.28125 411.488281 72.3125 410.457031 72.3125 409.183594 Z M 72.3125 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.996094 409.183594 C 62.996094 407.910156 61.964844 406.878906 60.691406 406.878906 C 59.417969 406.878906 58.386719 407.910156 58.386719 409.183594 C 58.386719 410.457031 59.417969 411.488281 60.691406 411.488281 C 61.964844 411.488281 62.996094 410.457031 62.996094 409.183594 Z M 62.996094 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.46875 409.183594 C 51.46875 407.910156 50.4375 406.878906 49.164062 406.878906 C 47.890625 406.878906 46.859375 407.910156 46.859375 409.183594 C 46.859375 410.457031 47.890625 411.488281 49.164062 411.488281 C 50.4375 411.488281 51.46875 410.457031 51.46875 409.183594 Z M 51.46875 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.78125 409.183594 C 62.78125 407.910156 61.75 406.878906 60.476562 406.878906 C 59.203125 406.878906 58.171875 407.910156 58.171875 409.183594 C 58.171875 410.457031 59.203125 411.488281 60.476562 411.488281 C 61.75 411.488281 62.78125 410.457031 62.78125 409.183594 Z M 62.78125 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.035156 409.183594 C 70.035156 407.910156 69.003906 406.878906 67.730469 406.878906 C 66.457031 406.878906 65.425781 407.910156 65.425781 409.183594 C 65.425781 410.457031 66.457031 411.488281 67.730469 411.488281 C 69.003906 411.488281 70.035156 410.457031 70.035156 409.183594 Z M 70.035156 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.921875 409.183594 C 57.921875 407.910156 56.890625 406.878906 55.617188 406.878906 C 54.34375 406.878906 53.3125 407.910156 53.3125 409.183594 C 53.3125 410.457031 54.34375 411.488281 55.617188 411.488281 C 56.890625 411.488281 57.921875 410.457031 57.921875 409.183594 Z M 57.921875 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.167969 409.183594 C 58.167969 407.910156 57.136719 406.878906 55.863281 406.878906 C 54.589844 406.878906 53.558594 407.910156 53.558594 409.183594 C 53.558594 410.457031 54.589844 411.488281 55.863281 411.488281 C 57.136719 411.488281 58.167969 410.457031 58.167969 409.183594 Z M 58.167969 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.097656 409.183594 C 73.097656 407.910156 72.066406 406.878906 70.792969 406.878906 C 69.519531 406.878906 68.488281 407.910156 68.488281 409.183594 C 68.488281 410.457031 69.519531 411.488281 70.792969 411.488281 C 72.066406 411.488281 73.097656 410.457031 73.097656 409.183594 Z M 73.097656 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.003906 409.183594 C 67.003906 407.910156 65.972656 406.878906 64.699219 406.878906 C 63.425781 406.878906 62.394531 407.910156 62.394531 409.183594 C 62.394531 410.457031 63.425781 411.488281 64.699219 411.488281 C 65.972656 411.488281 67.003906 410.457031 67.003906 409.183594 Z M 67.003906 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.398438 409.183594 C 57.398438 407.910156 56.367188 406.878906 55.09375 406.878906 C 53.820312 406.878906 52.789062 407.910156 52.789062 409.183594 C 52.789062 410.457031 53.820312 411.488281 55.09375 411.488281 C 56.367188 411.488281 57.398438 410.457031 57.398438 409.183594 Z M 57.398438 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.570312 409.183594 C 61.570312 407.910156 60.539062 406.878906 59.265625 406.878906 C 57.992188 406.878906 56.960938 407.910156 56.960938 409.183594 C 56.960938 410.457031 57.992188 411.488281 59.265625 411.488281 C 60.539062 411.488281 61.570312 410.457031 61.570312 409.183594 Z M 61.570312 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.894531 409.183594 C 65.894531 407.910156 64.863281 406.878906 63.589844 406.878906 C 62.316406 406.878906 61.285156 407.910156 61.285156 409.183594 C 61.285156 410.457031 62.316406 411.488281 63.589844 411.488281 C 64.863281 411.488281 65.894531 410.457031 65.894531 409.183594 Z M 65.894531 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.234375 409.183594 C 51.234375 407.910156 50.203125 406.878906 48.929688 406.878906 C 47.65625 406.878906 46.625 407.910156 46.625 409.183594 C 46.625 410.457031 47.65625 411.488281 48.929688 411.488281 C 50.203125 411.488281 51.234375 410.457031 51.234375 409.183594 Z M 51.234375 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.476562 409.183594 C 63.476562 407.910156 62.445312 406.878906 61.171875 406.878906 C 59.898438 406.878906 58.867188 407.910156 58.867188 409.183594 C 58.867188 410.457031 59.898438 411.488281 61.171875 411.488281 C 62.445312 411.488281 63.476562 410.457031 63.476562 409.183594 Z M 63.476562 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.007812 409.183594 C 60.007812 407.910156 58.976562 406.878906 57.703125 406.878906 C 56.429688 406.878906 55.398438 407.910156 55.398438 409.183594 C 55.398438 410.457031 56.429688 411.488281 57.703125 411.488281 C 58.976562 411.488281 60.007812 410.457031 60.007812 409.183594 Z M 60.007812 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.765625 409.183594 C 53.765625 407.910156 52.734375 406.878906 51.460938 406.878906 C 50.1875 406.878906 49.15625 407.910156 49.15625 409.183594 C 49.15625 410.457031 50.1875 411.488281 51.460938 411.488281 C 52.734375 411.488281 53.765625 410.457031 53.765625 409.183594 Z M 53.765625 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.089844 409.183594 C 71.089844 407.910156 70.058594 406.878906 68.785156 406.878906 C 67.511719 406.878906 66.480469 407.910156 66.480469 409.183594 C 66.480469 410.457031 67.511719 411.488281 68.785156 411.488281 C 70.058594 411.488281 71.089844 410.457031 71.089844 409.183594 Z M 71.089844 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.464844 409.183594 C 66.464844 407.910156 65.433594 406.878906 64.160156 406.878906 C 62.886719 406.878906 61.855469 407.910156 61.855469 409.183594 C 61.855469 410.457031 62.886719 411.488281 64.160156 411.488281 C 65.433594 411.488281 66.464844 410.457031 66.464844 409.183594 Z M 66.464844 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.222656 409.183594 C 52.222656 407.910156 51.191406 406.878906 49.917969 406.878906 C 48.644531 406.878906 47.613281 407.910156 47.613281 409.183594 C 47.613281 410.457031 48.644531 411.488281 49.917969 411.488281 C 51.191406 411.488281 52.222656 410.457031 52.222656 409.183594 Z M 52.222656 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.734375 409.183594 C 55.734375 407.910156 54.703125 406.878906 53.429688 406.878906 C 52.15625 406.878906 51.125 407.910156 51.125 409.183594 C 51.125 410.457031 52.15625 411.488281 53.429688 411.488281 C 54.703125 411.488281 55.734375 410.457031 55.734375 409.183594 Z M 55.734375 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.199219 409.183594 C 63.199219 407.910156 62.167969 406.878906 60.894531 406.878906 C 59.621094 406.878906 58.589844 407.910156 58.589844 409.183594 C 58.589844 410.457031 59.621094 411.488281 60.894531 411.488281 C 62.167969 411.488281 63.199219 410.457031 63.199219 409.183594 Z M 63.199219 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.296875 409.183594 C 51.296875 407.910156 50.265625 406.878906 48.992188 406.878906 C 47.71875 406.878906 46.6875 407.910156 46.6875 409.183594 C 46.6875 410.457031 47.71875 411.488281 48.992188 411.488281 C 50.265625 411.488281 51.296875 410.457031 51.296875 409.183594 Z M 51.296875 409.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.109375 404.339844 C 72.109375 403.066406 71.078125 402.035156 69.804688 402.035156 C 68.53125 402.035156 67.5 403.066406 67.5 404.339844 C 67.5 405.613281 68.53125 406.644531 69.804688 406.644531 C 71.078125 406.644531 72.109375 405.613281 72.109375 404.339844 Z M 72.109375 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.628906 404.339844 C 57.628906 403.066406 56.597656 402.035156 55.324219 402.035156 C 54.050781 402.035156 53.019531 403.066406 53.019531 404.339844 C 53.019531 405.613281 54.050781 406.644531 55.324219 406.644531 C 56.597656 406.644531 57.628906 405.613281 57.628906 404.339844 Z M 57.628906 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.472656 404.339844 C 66.472656 403.066406 65.441406 402.035156 64.167969 402.035156 C 62.894531 402.035156 61.863281 403.066406 61.863281 404.339844 C 61.863281 405.613281 62.894531 406.644531 64.167969 406.644531 C 65.441406 406.644531 66.472656 405.613281 66.472656 404.339844 Z M 66.472656 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.472656 404.339844 C 58.472656 403.066406 57.441406 402.035156 56.167969 402.035156 C 54.894531 402.035156 53.863281 403.066406 53.863281 404.339844 C 53.863281 405.613281 54.894531 406.644531 56.167969 406.644531 C 57.441406 406.644531 58.472656 405.613281 58.472656 404.339844 Z M 58.472656 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.039062 404.339844 C 61.039062 403.066406 60.007812 402.035156 58.734375 402.035156 C 57.460938 402.035156 56.429688 403.066406 56.429688 404.339844 C 56.429688 405.613281 57.460938 406.644531 58.734375 406.644531 C 60.007812 406.644531 61.039062 405.613281 61.039062 404.339844 Z M 61.039062 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.707031 404.339844 C 64.707031 403.066406 63.675781 402.035156 62.402344 402.035156 C 61.128906 402.035156 60.097656 403.066406 60.097656 404.339844 C 60.097656 405.613281 61.128906 406.644531 62.402344 406.644531 C 63.675781 406.644531 64.707031 405.613281 64.707031 404.339844 Z M 64.707031 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.6875 404.339844 C 66.6875 403.066406 65.65625 402.035156 64.382812 402.035156 C 63.109375 402.035156 62.078125 403.066406 62.078125 404.339844 C 62.078125 405.613281 63.109375 406.644531 64.382812 406.644531 C 65.65625 406.644531 66.6875 405.613281 66.6875 404.339844 Z M 66.6875 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.089844 404.339844 C 60.089844 403.066406 59.058594 402.035156 57.785156 402.035156 C 56.511719 402.035156 55.480469 403.066406 55.480469 404.339844 C 55.480469 405.613281 56.511719 406.644531 57.785156 406.644531 C 59.058594 406.644531 60.089844 405.613281 60.089844 404.339844 Z M 60.089844 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.730469 404.339844 C 73.730469 403.066406 72.699219 402.035156 71.425781 402.035156 C 70.152344 402.035156 69.121094 403.066406 69.121094 404.339844 C 69.121094 405.613281 70.152344 406.644531 71.425781 406.644531 C 72.699219 406.644531 73.730469 405.613281 73.730469 404.339844 Z M 73.730469 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.988281 404.339844 C 65.988281 403.066406 64.957031 402.035156 63.683594 402.035156 C 62.410156 402.035156 61.378906 403.066406 61.378906 404.339844 C 61.378906 405.613281 62.410156 406.644531 63.683594 406.644531 C 64.957031 406.644531 65.988281 405.613281 65.988281 404.339844 Z M 65.988281 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.414062 404.339844 C 56.414062 403.066406 55.382812 402.035156 54.109375 402.035156 C 52.835938 402.035156 51.804688 403.066406 51.804688 404.339844 C 51.804688 405.613281 52.835938 406.644531 54.109375 406.644531 C 55.382812 406.644531 56.414062 405.613281 56.414062 404.339844 Z M 56.414062 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.8125 404.339844 C 65.8125 403.066406 64.78125 402.035156 63.507812 402.035156 C 62.234375 402.035156 61.203125 403.066406 61.203125 404.339844 C 61.203125 405.613281 62.234375 406.644531 63.507812 406.644531 C 64.78125 406.644531 65.8125 405.613281 65.8125 404.339844 Z M 65.8125 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.835938 404.339844 C 71.835938 403.066406 70.804688 402.035156 69.53125 402.035156 C 68.257812 402.035156 67.226562 403.066406 67.226562 404.339844 C 67.226562 405.613281 68.257812 406.644531 69.53125 406.644531 C 70.804688 406.644531 71.835938 405.613281 71.835938 404.339844 Z M 71.835938 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.773438 404.339844 C 61.773438 403.066406 60.742188 402.035156 59.46875 402.035156 C 58.195312 402.035156 57.164062 403.066406 57.164062 404.339844 C 57.164062 405.613281 58.195312 406.644531 59.46875 406.644531 C 60.742188 406.644531 61.773438 405.613281 61.773438 404.339844 Z M 61.773438 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.980469 404.339844 C 61.980469 403.066406 60.949219 402.035156 59.675781 402.035156 C 58.402344 402.035156 57.371094 403.066406 57.371094 404.339844 C 57.371094 405.613281 58.402344 406.644531 59.675781 406.644531 C 60.949219 406.644531 61.980469 405.613281 61.980469 404.339844 Z M 61.980469 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.382812 404.339844 C 74.382812 403.066406 73.351562 402.035156 72.078125 402.035156 C 70.804688 402.035156 69.773438 403.066406 69.773438 404.339844 C 69.773438 405.613281 70.804688 406.644531 72.078125 406.644531 C 73.351562 406.644531 74.382812 405.613281 74.382812 404.339844 Z M 74.382812 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.320312 404.339844 C 69.320312 403.066406 68.289062 402.035156 67.015625 402.035156 C 65.742188 402.035156 64.710938 403.066406 64.710938 404.339844 C 64.710938 405.613281 65.742188 406.644531 67.015625 406.644531 C 68.289062 406.644531 69.320312 405.613281 69.320312 404.339844 Z M 69.320312 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.339844 404.339844 C 61.339844 403.066406 60.308594 402.035156 59.035156 402.035156 C 57.761719 402.035156 56.730469 403.066406 56.730469 404.339844 C 56.730469 405.613281 57.761719 406.644531 59.035156 406.644531 C 60.308594 406.644531 61.339844 405.613281 61.339844 404.339844 Z M 61.339844 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.804688 404.339844 C 64.804688 403.066406 63.773438 402.035156 62.5 402.035156 C 61.226562 402.035156 60.195312 403.066406 60.195312 404.339844 C 60.195312 405.613281 61.226562 406.644531 62.5 406.644531 C 63.773438 406.644531 64.804688 405.613281 64.804688 404.339844 Z M 64.804688 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.398438 404.339844 C 68.398438 403.066406 67.367188 402.035156 66.09375 402.035156 C 64.820312 402.035156 63.789062 403.066406 63.789062 404.339844 C 63.789062 405.613281 64.820312 406.644531 66.09375 406.644531 C 67.367188 406.644531 68.398438 405.613281 68.398438 404.339844 Z M 68.398438 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.222656 404.339844 C 56.222656 403.066406 55.191406 402.035156 53.917969 402.035156 C 52.644531 402.035156 51.613281 403.066406 51.613281 404.339844 C 51.613281 405.613281 52.644531 406.644531 53.917969 406.644531 C 55.191406 406.644531 56.222656 405.613281 56.222656 404.339844 Z M 56.222656 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.390625 404.339844 C 66.390625 403.066406 65.359375 402.035156 64.085938 402.035156 C 62.8125 402.035156 61.78125 403.066406 61.78125 404.339844 C 61.78125 405.613281 62.8125 406.644531 64.085938 406.644531 C 65.359375 406.644531 66.390625 405.613281 66.390625 404.339844 Z M 66.390625 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.507812 404.339844 C 63.507812 403.066406 62.476562 402.035156 61.203125 402.035156 C 59.929688 402.035156 58.898438 403.066406 58.898438 404.339844 C 58.898438 405.613281 59.929688 406.644531 61.203125 406.644531 C 62.476562 406.644531 63.507812 405.613281 63.507812 404.339844 Z M 63.507812 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.320312 404.339844 C 58.320312 403.066406 57.289062 402.035156 56.015625 402.035156 C 54.742188 402.035156 53.710938 403.066406 53.710938 404.339844 C 53.710938 405.613281 54.742188 406.644531 56.015625 406.644531 C 57.289062 406.644531 58.320312 405.613281 58.320312 404.339844 Z M 58.320312 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.714844 404.339844 C 72.714844 403.066406 71.683594 402.035156 70.410156 402.035156 C 69.136719 402.035156 68.105469 403.066406 68.105469 404.339844 C 68.105469 405.613281 69.136719 406.644531 70.410156 406.644531 C 71.683594 406.644531 72.714844 405.613281 72.714844 404.339844 Z M 72.714844 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.875 404.339844 C 68.875 403.066406 67.84375 402.035156 66.570312 402.035156 C 65.296875 402.035156 64.265625 403.066406 64.265625 404.339844 C 64.265625 405.613281 65.296875 406.644531 66.570312 406.644531 C 67.84375 406.644531 68.875 405.613281 68.875 404.339844 Z M 68.875 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.039062 404.339844 C 57.039062 403.066406 56.007812 402.035156 54.734375 402.035156 C 53.460938 402.035156 52.429688 403.066406 52.429688 404.339844 C 52.429688 405.613281 53.460938 406.644531 54.734375 406.644531 C 56.007812 406.644531 57.039062 405.613281 57.039062 404.339844 Z M 57.039062 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 59.957031 404.339844 C 59.957031 403.066406 58.925781 402.035156 57.652344 402.035156 C 56.378906 402.035156 55.347656 403.066406 55.347656 404.339844 C 55.347656 405.613281 56.378906 406.644531 57.652344 406.644531 C 58.925781 406.644531 59.957031 405.613281 59.957031 404.339844 Z M 59.957031 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.15625 404.339844 C 66.15625 403.066406 65.125 402.035156 63.851562 402.035156 C 62.578125 402.035156 61.546875 403.066406 61.546875 404.339844 C 61.546875 405.613281 62.578125 406.644531 63.851562 406.644531 C 65.125 406.644531 66.15625 405.613281 66.15625 404.339844 Z M 66.15625 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.273438 404.339844 C 56.273438 403.066406 55.242188 402.035156 53.96875 402.035156 C 52.695312 402.035156 51.664062 403.066406 51.664062 404.339844 C 51.664062 405.613281 52.695312 406.644531 53.96875 406.644531 C 55.242188 406.644531 56.273438 405.613281 56.273438 404.339844 Z M 56.273438 404.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.683594 399.496094 C 73.683594 398.222656 72.652344 397.191406 71.378906 397.191406 C 70.105469 397.191406 69.074219 398.222656 69.074219 399.496094 C 69.074219 400.769531 70.105469 401.800781 71.378906 401.800781 C 72.652344 401.800781 73.683594 400.769531 73.683594 399.496094 Z M 73.683594 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.296875 399.496094 C 62.296875 398.222656 61.265625 397.191406 59.992188 397.191406 C 58.71875 397.191406 57.6875 398.222656 57.6875 399.496094 C 57.6875 400.769531 58.71875 401.800781 59.992188 401.800781 C 61.265625 401.800781 62.296875 400.769531 62.296875 399.496094 Z M 62.296875 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.25 399.496094 C 69.25 398.222656 68.21875 397.191406 66.945312 397.191406 C 65.671875 397.191406 64.640625 398.222656 64.640625 399.496094 C 64.640625 400.769531 65.671875 401.800781 66.945312 401.800781 C 68.21875 401.800781 69.25 400.769531 69.25 399.496094 Z M 69.25 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.957031 399.496094 C 62.957031 398.222656 61.925781 397.191406 60.652344 397.191406 C 59.378906 397.191406 58.347656 398.222656 58.347656 399.496094 C 58.347656 400.769531 59.378906 401.800781 60.652344 401.800781 C 61.925781 401.800781 62.957031 400.769531 62.957031 399.496094 Z M 62.957031 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.976562 399.496094 C 64.976562 398.222656 63.945312 397.191406 62.671875 397.191406 C 61.398438 397.191406 60.367188 398.222656 60.367188 399.496094 C 60.367188 400.769531 61.398438 401.800781 62.671875 401.800781 C 63.945312 401.800781 64.976562 400.769531 64.976562 399.496094 Z M 64.976562 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.859375 399.496094 C 67.859375 398.222656 66.828125 397.191406 65.554688 397.191406 C 64.28125 397.191406 63.25 398.222656 63.25 399.496094 C 63.25 400.769531 64.28125 401.800781 65.554688 401.800781 C 66.828125 401.800781 67.859375 400.769531 67.859375 399.496094 Z M 67.859375 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.417969 399.496094 C 69.417969 398.222656 68.386719 397.191406 67.113281 397.191406 C 65.839844 397.191406 64.808594 398.222656 64.808594 399.496094 C 64.808594 400.769531 65.839844 401.800781 67.113281 401.800781 C 68.386719 401.800781 69.417969 400.769531 69.417969 399.496094 Z M 69.417969 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.230469 399.496094 C 64.230469 398.222656 63.199219 397.191406 61.925781 397.191406 C 60.652344 397.191406 59.621094 398.222656 59.621094 399.496094 C 59.621094 400.769531 60.652344 401.800781 61.925781 401.800781 C 63.199219 401.800781 64.230469 400.769531 64.230469 399.496094 Z M 64.230469 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.953125 399.496094 C 74.953125 398.222656 73.921875 397.191406 72.648438 397.191406 C 71.375 397.191406 70.34375 398.222656 70.34375 399.496094 C 70.34375 400.769531 71.375 401.800781 72.648438 401.800781 C 73.921875 401.800781 74.953125 400.769531 74.953125 399.496094 Z M 74.953125 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.867188 399.496094 C 68.867188 398.222656 67.835938 397.191406 66.5625 397.191406 C 65.289062 397.191406 64.257812 398.222656 64.257812 399.496094 C 64.257812 400.769531 65.289062 401.800781 66.5625 401.800781 C 67.835938 401.800781 68.867188 400.769531 68.867188 399.496094 Z M 68.867188 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.339844 399.496094 C 61.339844 398.222656 60.308594 397.191406 59.035156 397.191406 C 57.761719 397.191406 56.730469 398.222656 56.730469 399.496094 C 56.730469 400.769531 57.761719 401.800781 59.035156 401.800781 C 60.308594 401.800781 61.339844 400.769531 61.339844 399.496094 Z M 61.339844 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.730469 399.496094 C 68.730469 398.222656 67.699219 397.191406 66.425781 397.191406 C 65.152344 397.191406 64.121094 398.222656 64.121094 399.496094 C 64.121094 400.769531 65.152344 401.800781 66.425781 401.800781 C 67.699219 401.800781 68.730469 400.769531 68.730469 399.496094 Z M 68.730469 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.464844 399.496094 C 73.464844 398.222656 72.433594 397.191406 71.160156 397.191406 C 69.886719 397.191406 68.855469 398.222656 68.855469 399.496094 C 68.855469 400.769531 69.886719 401.800781 71.160156 401.800781 C 72.433594 401.800781 73.464844 400.769531 73.464844 399.496094 Z M 73.464844 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.554688 399.496094 C 65.554688 398.222656 64.523438 397.191406 63.25 397.191406 C 61.976562 397.191406 60.945312 398.222656 60.945312 399.496094 C 60.945312 400.769531 61.976562 401.800781 63.25 401.800781 C 64.523438 401.800781 65.554688 400.769531 65.554688 399.496094 Z M 65.554688 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.71875 399.496094 C 65.71875 398.222656 64.6875 397.191406 63.414062 397.191406 C 62.140625 397.191406 61.109375 398.222656 61.109375 399.496094 C 61.109375 400.769531 62.140625 401.800781 63.414062 401.800781 C 64.6875 401.800781 65.71875 400.769531 65.71875 399.496094 Z M 65.71875 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.46875 399.496094 C 75.46875 398.222656 74.4375 397.191406 73.164062 397.191406 C 71.890625 397.191406 70.859375 398.222656 70.859375 399.496094 C 70.859375 400.769531 71.890625 401.800781 73.164062 401.800781 C 74.4375 401.800781 75.46875 400.769531 75.46875 399.496094 Z M 75.46875 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.488281 399.496094 C 71.488281 398.222656 70.457031 397.191406 69.183594 397.191406 C 67.910156 397.191406 66.878906 398.222656 66.878906 399.496094 C 66.878906 400.769531 67.910156 401.800781 69.183594 401.800781 C 70.457031 401.800781 71.488281 400.769531 71.488281 399.496094 Z M 71.488281 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.210938 399.496094 C 65.210938 398.222656 64.179688 397.191406 62.90625 397.191406 C 61.632812 397.191406 60.601562 398.222656 60.601562 399.496094 C 60.601562 400.769531 61.632812 401.800781 62.90625 401.800781 C 64.179688 401.800781 65.210938 400.769531 65.210938 399.496094 Z M 65.210938 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.9375 399.496094 C 67.9375 398.222656 66.90625 397.191406 65.632812 397.191406 C 64.359375 397.191406 63.328125 398.222656 63.328125 399.496094 C 63.328125 400.769531 64.359375 401.800781 65.632812 401.800781 C 66.90625 401.800781 67.9375 400.769531 67.9375 399.496094 Z M 67.9375 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.761719 399.496094 C 70.761719 398.222656 69.730469 397.191406 68.457031 397.191406 C 67.183594 397.191406 66.152344 398.222656 66.152344 399.496094 C 66.152344 400.769531 67.183594 401.800781 68.457031 401.800781 C 69.730469 401.800781 70.761719 400.769531 70.761719 399.496094 Z M 70.761719 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.1875 399.496094 C 61.1875 398.222656 60.15625 397.191406 58.882812 397.191406 C 57.609375 397.191406 56.578125 398.222656 56.578125 399.496094 C 56.578125 400.769531 57.609375 401.800781 58.882812 401.800781 C 60.15625 401.800781 61.1875 400.769531 61.1875 399.496094 Z M 61.1875 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.183594 399.496094 C 69.183594 398.222656 68.152344 397.191406 66.878906 397.191406 C 65.605469 397.191406 64.574219 398.222656 64.574219 399.496094 C 64.574219 400.769531 65.605469 401.800781 66.878906 401.800781 C 68.152344 401.800781 69.183594 400.769531 69.183594 399.496094 Z M 69.183594 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.917969 399.496094 C 66.917969 398.222656 65.886719 397.191406 64.613281 397.191406 C 63.339844 397.191406 62.308594 398.222656 62.308594 399.496094 C 62.308594 400.769531 63.339844 401.800781 64.613281 401.800781 C 65.886719 401.800781 66.917969 400.769531 66.917969 399.496094 Z M 66.917969 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.839844 399.496094 C 62.839844 398.222656 61.808594 397.191406 60.535156 397.191406 C 59.261719 397.191406 58.230469 398.222656 58.230469 399.496094 C 58.230469 400.769531 59.261719 401.800781 60.535156 401.800781 C 61.808594 401.800781 62.839844 400.769531 62.839844 399.496094 Z M 62.839844 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.15625 399.496094 C 74.15625 398.222656 73.125 397.191406 71.851562 397.191406 C 70.578125 397.191406 69.546875 398.222656 69.546875 399.496094 C 69.546875 400.769531 70.578125 401.800781 71.851562 401.800781 C 73.125 401.800781 74.15625 400.769531 74.15625 399.496094 Z M 74.15625 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.136719 399.496094 C 71.136719 398.222656 70.105469 397.191406 68.832031 397.191406 C 67.558594 397.191406 66.527344 398.222656 66.527344 399.496094 C 66.527344 400.769531 67.558594 401.800781 68.832031 401.800781 C 70.105469 401.800781 71.136719 400.769531 71.136719 399.496094 Z M 71.136719 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.832031 399.496094 C 61.832031 398.222656 60.800781 397.191406 59.527344 397.191406 C 58.253906 397.191406 57.222656 398.222656 57.222656 399.496094 C 57.222656 400.769531 58.253906 401.800781 59.527344 401.800781 C 60.800781 401.800781 61.832031 400.769531 61.832031 399.496094 Z M 61.832031 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.125 399.496094 C 64.125 398.222656 63.09375 397.191406 61.820312 397.191406 C 60.546875 397.191406 59.515625 398.222656 59.515625 399.496094 C 59.515625 400.769531 60.546875 401.800781 61.820312 401.800781 C 63.09375 401.800781 64.125 400.769531 64.125 399.496094 Z M 64.125 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69 399.496094 C 69 398.222656 67.96875 397.191406 66.695312 397.191406 C 65.421875 397.191406 64.390625 398.222656 64.390625 399.496094 C 64.390625 400.769531 65.421875 401.800781 66.695312 401.800781 C 67.96875 401.800781 69 400.769531 69 399.496094 Z M 69 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.230469 399.496094 C 61.230469 398.222656 60.199219 397.191406 58.925781 397.191406 C 57.652344 397.191406 56.621094 398.222656 56.621094 399.496094 C 56.621094 400.769531 57.652344 401.800781 58.925781 401.800781 C 60.199219 401.800781 61.230469 400.769531 61.230469 399.496094 Z M 61.230469 399.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.0625 394.652344 C 75.0625 393.378906 74.03125 392.347656 72.757812 392.347656 C 71.484375 392.347656 70.453125 393.378906 70.453125 394.652344 C 70.453125 395.925781 71.484375 396.957031 72.757812 396.957031 C 74.03125 396.957031 75.0625 395.925781 75.0625 394.652344 Z M 75.0625 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.886719 394.652344 C 66.886719 393.378906 65.855469 392.347656 64.582031 392.347656 C 63.308594 392.347656 62.277344 393.378906 62.277344 394.652344 C 62.277344 395.925781 63.308594 396.957031 64.582031 396.957031 C 65.855469 396.957031 66.886719 395.925781 66.886719 394.652344 Z M 66.886719 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.878906 394.652344 C 71.878906 393.378906 70.847656 392.347656 69.574219 392.347656 C 68.300781 392.347656 67.269531 393.378906 67.269531 394.652344 C 67.269531 395.925781 68.300781 396.957031 69.574219 396.957031 C 70.847656 396.957031 71.878906 395.925781 71.878906 394.652344 Z M 71.878906 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.359375 394.652344 C 67.359375 393.378906 66.328125 392.347656 65.054688 392.347656 C 63.78125 392.347656 62.75 393.378906 62.75 394.652344 C 62.75 395.925781 63.78125 396.957031 65.054688 396.957031 C 66.328125 396.957031 67.359375 395.925781 67.359375 394.652344 Z M 67.359375 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.808594 394.652344 C 68.808594 393.378906 67.777344 392.347656 66.503906 392.347656 C 65.230469 392.347656 64.199219 393.378906 64.199219 394.652344 C 64.199219 395.925781 65.230469 396.957031 66.503906 396.957031 C 67.777344 396.957031 68.808594 395.925781 68.808594 394.652344 Z M 68.808594 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.878906 394.652344 C 70.878906 393.378906 69.847656 392.347656 68.574219 392.347656 C 67.300781 392.347656 66.269531 393.378906 66.269531 394.652344 C 66.269531 395.925781 67.300781 396.957031 68.574219 396.957031 C 69.847656 396.957031 70.878906 395.925781 70.878906 394.652344 Z M 70.878906 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72 394.652344 C 72 393.378906 70.96875 392.347656 69.695312 392.347656 C 68.421875 392.347656 67.390625 393.378906 67.390625 394.652344 C 67.390625 395.925781 68.421875 396.957031 69.695312 396.957031 C 70.96875 396.957031 72 395.925781 72 394.652344 Z M 72 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.273438 394.652344 C 68.273438 393.378906 67.242188 392.347656 65.96875 392.347656 C 64.695312 392.347656 63.664062 393.378906 63.664062 394.652344 C 63.664062 395.925781 64.695312 396.957031 65.96875 396.957031 C 67.242188 396.957031 68.273438 395.925781 68.273438 394.652344 Z M 68.273438 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.972656 394.652344 C 75.972656 393.378906 74.941406 392.347656 73.667969 392.347656 C 72.394531 392.347656 71.363281 393.378906 71.363281 394.652344 C 71.363281 395.925781 72.394531 396.957031 73.667969 396.957031 C 74.941406 396.957031 75.972656 395.925781 75.972656 394.652344 Z M 75.972656 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.605469 394.652344 C 71.605469 393.378906 70.574219 392.347656 69.300781 392.347656 C 68.027344 392.347656 66.996094 393.378906 66.996094 394.652344 C 66.996094 395.925781 68.027344 396.957031 69.300781 396.957031 C 70.574219 396.957031 71.605469 395.925781 71.605469 394.652344 Z M 71.605469 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.199219 394.652344 C 66.199219 393.378906 65.167969 392.347656 63.894531 392.347656 C 62.621094 392.347656 61.589844 393.378906 61.589844 394.652344 C 61.589844 395.925781 62.621094 396.957031 63.894531 396.957031 C 65.167969 396.957031 66.199219 395.925781 66.199219 394.652344 Z M 66.199219 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.503906 394.652344 C 71.503906 393.378906 70.472656 392.347656 69.199219 392.347656 C 67.925781 392.347656 66.894531 393.378906 66.894531 394.652344 C 66.894531 395.925781 67.925781 396.957031 69.199219 396.957031 C 70.472656 396.957031 71.503906 395.925781 71.503906 394.652344 Z M 71.503906 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.90625 394.652344 C 74.90625 393.378906 73.875 392.347656 72.601562 392.347656 C 71.328125 392.347656 70.296875 393.378906 70.296875 394.652344 C 70.296875 395.925781 71.328125 396.957031 72.601562 396.957031 C 73.875 396.957031 74.90625 395.925781 74.90625 394.652344 Z M 74.90625 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.222656 394.652344 C 69.222656 393.378906 68.191406 392.347656 66.917969 392.347656 C 65.644531 392.347656 64.613281 393.378906 64.613281 394.652344 C 64.613281 395.925781 65.644531 396.957031 66.917969 396.957031 C 68.191406 396.957031 69.222656 395.925781 69.222656 394.652344 Z M 69.222656 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.339844 394.652344 C 69.339844 393.378906 68.308594 392.347656 67.035156 392.347656 C 65.761719 392.347656 64.730469 393.378906 64.730469 394.652344 C 64.730469 395.925781 65.761719 396.957031 67.035156 396.957031 C 68.308594 396.957031 69.339844 395.925781 69.339844 394.652344 Z M 69.339844 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.34375 394.652344 C 76.34375 393.378906 75.3125 392.347656 74.039062 392.347656 C 72.765625 392.347656 71.734375 393.378906 71.734375 394.652344 C 71.734375 395.925781 72.765625 396.957031 74.039062 396.957031 C 75.3125 396.957031 76.34375 395.925781 76.34375 394.652344 Z M 76.34375 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.484375 394.652344 C 73.484375 393.378906 72.453125 392.347656 71.179688 392.347656 C 69.90625 392.347656 68.875 393.378906 68.875 394.652344 C 68.875 395.925781 69.90625 396.957031 71.179688 396.957031 C 72.453125 396.957031 73.484375 395.925781 73.484375 394.652344 Z M 73.484375 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.980469 394.652344 C 68.980469 393.378906 67.949219 392.347656 66.675781 392.347656 C 65.402344 392.347656 64.371094 393.378906 64.371094 394.652344 C 64.371094 395.925781 65.402344 396.957031 66.675781 396.957031 C 67.949219 396.957031 68.980469 395.925781 68.980469 394.652344 Z M 68.980469 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.9375 394.652344 C 70.9375 393.378906 69.90625 392.347656 68.632812 392.347656 C 67.359375 392.347656 66.328125 393.378906 66.328125 394.652344 C 66.328125 395.925781 67.359375 396.957031 68.632812 396.957031 C 69.90625 396.957031 70.9375 395.925781 70.9375 394.652344 Z M 70.9375 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.964844 394.652344 C 72.964844 393.378906 71.933594 392.347656 70.660156 392.347656 C 69.386719 392.347656 68.355469 393.378906 68.355469 394.652344 C 68.355469 395.925781 69.386719 396.957031 70.660156 396.957031 C 71.933594 396.957031 72.964844 395.925781 72.964844 394.652344 Z M 72.964844 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.089844 394.652344 C 66.089844 393.378906 65.058594 392.347656 63.785156 392.347656 C 62.511719 392.347656 61.480469 393.378906 61.480469 394.652344 C 61.480469 395.925781 62.511719 396.957031 63.785156 396.957031 C 65.058594 396.957031 66.089844 395.925781 66.089844 394.652344 Z M 66.089844 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.832031 394.652344 C 71.832031 393.378906 70.800781 392.347656 69.527344 392.347656 C 68.253906 392.347656 67.222656 393.378906 67.222656 394.652344 C 67.222656 395.925781 68.253906 396.957031 69.527344 396.957031 C 70.800781 396.957031 71.832031 395.925781 71.832031 394.652344 Z M 71.832031 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.203125 394.652344 C 70.203125 393.378906 69.171875 392.347656 67.898438 392.347656 C 66.625 392.347656 65.59375 393.378906 65.59375 394.652344 C 65.59375 395.925781 66.625 396.957031 67.898438 396.957031 C 69.171875 396.957031 70.203125 395.925781 70.203125 394.652344 Z M 70.203125 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.277344 394.652344 C 67.277344 393.378906 66.246094 392.347656 64.972656 392.347656 C 63.699219 392.347656 62.667969 393.378906 62.667969 394.652344 C 62.667969 395.925781 63.699219 396.957031 64.972656 396.957031 C 66.246094 396.957031 67.277344 395.925781 67.277344 394.652344 Z M 67.277344 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.402344 394.652344 C 75.402344 393.378906 74.371094 392.347656 73.097656 392.347656 C 71.824219 392.347656 70.792969 393.378906 70.792969 394.652344 C 70.792969 395.925781 71.824219 396.957031 73.097656 396.957031 C 74.371094 396.957031 75.402344 395.925781 75.402344 394.652344 Z M 75.402344 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.234375 394.652344 C 73.234375 393.378906 72.203125 392.347656 70.929688 392.347656 C 69.65625 392.347656 68.625 393.378906 68.625 394.652344 C 68.625 395.925781 69.65625 396.957031 70.929688 396.957031 C 72.203125 396.957031 73.234375 395.925781 73.234375 394.652344 Z M 73.234375 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.550781 394.652344 C 66.550781 393.378906 65.519531 392.347656 64.246094 392.347656 C 62.972656 392.347656 61.941406 393.378906 61.941406 394.652344 C 61.941406 395.925781 62.972656 396.957031 64.246094 396.957031 C 65.519531 396.957031 66.550781 395.925781 66.550781 394.652344 Z M 66.550781 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.199219 394.652344 C 68.199219 393.378906 67.167969 392.347656 65.894531 392.347656 C 64.621094 392.347656 63.589844 393.378906 63.589844 394.652344 C 63.589844 395.925781 64.621094 396.957031 65.894531 396.957031 C 67.167969 396.957031 68.199219 395.925781 68.199219 394.652344 Z M 68.199219 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.699219 394.652344 C 71.699219 393.378906 70.667969 392.347656 69.394531 392.347656 C 68.121094 392.347656 67.089844 393.378906 67.089844 394.652344 C 67.089844 395.925781 68.121094 396.957031 69.394531 396.957031 C 70.667969 396.957031 71.699219 395.925781 71.699219 394.652344 Z M 71.699219 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.117188 394.652344 C 66.117188 393.378906 65.085938 392.347656 63.8125 392.347656 C 62.539062 392.347656 61.507812 393.378906 61.507812 394.652344 C 61.507812 395.925781 62.539062 396.957031 63.8125 396.957031 C 65.085938 396.957031 66.117188 395.925781 66.117188 394.652344 Z M 66.117188 394.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.234375 389.808594 C 76.234375 388.535156 75.203125 387.503906 73.929688 387.503906 C 72.65625 387.503906 71.625 388.535156 71.625 389.808594 C 71.625 391.082031 72.65625 392.113281 73.929688 392.113281 C 75.203125 392.113281 76.234375 391.082031 76.234375 389.808594 Z M 76.234375 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.351562 389.808594 C 71.351562 388.535156 70.320312 387.503906 69.046875 387.503906 C 67.773438 387.503906 66.742188 388.535156 66.742188 389.808594 C 66.742188 391.082031 67.773438 392.113281 69.046875 392.113281 C 70.320312 392.113281 71.351562 391.082031 71.351562 389.808594 Z M 71.351562 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.332031 389.808594 C 74.332031 388.535156 73.300781 387.503906 72.027344 387.503906 C 70.753906 387.503906 69.722656 388.535156 69.722656 389.808594 C 69.722656 391.082031 70.753906 392.113281 72.027344 392.113281 C 73.300781 392.113281 74.332031 391.082031 74.332031 389.808594 Z M 74.332031 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.632812 389.808594 C 71.632812 388.535156 70.601562 387.503906 69.328125 387.503906 C 68.054688 387.503906 67.023438 388.535156 67.023438 389.808594 C 67.023438 391.082031 68.054688 392.113281 69.328125 392.113281 C 70.601562 392.113281 71.632812 391.082031 71.632812 389.808594 Z M 71.632812 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.5 389.808594 C 72.5 388.535156 71.46875 387.503906 70.195312 387.503906 C 68.921875 387.503906 67.890625 388.535156 67.890625 389.808594 C 67.890625 391.082031 68.921875 392.113281 70.195312 392.113281 C 71.46875 392.113281 72.5 391.082031 72.5 389.808594 Z M 72.5 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.738281 389.808594 C 73.738281 388.535156 72.707031 387.503906 71.433594 387.503906 C 70.160156 387.503906 69.128906 388.535156 69.128906 389.808594 C 69.128906 391.082031 70.160156 392.113281 71.433594 392.113281 C 72.707031 392.113281 73.738281 391.082031 73.738281 389.808594 Z M 73.738281 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.40625 389.808594 C 74.40625 388.535156 73.375 387.503906 72.101562 387.503906 C 70.828125 387.503906 69.796875 388.535156 69.796875 389.808594 C 69.796875 391.082031 70.828125 392.113281 72.101562 392.113281 C 73.375 392.113281 74.40625 391.082031 74.40625 389.808594 Z M 74.40625 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.179688 389.808594 C 72.179688 388.535156 71.148438 387.503906 69.875 387.503906 C 68.601562 387.503906 67.570312 388.535156 67.570312 389.808594 C 67.570312 391.082031 68.601562 392.113281 69.875 392.113281 C 71.148438 392.113281 72.179688 391.082031 72.179688 389.808594 Z M 72.179688 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.78125 389.808594 C 76.78125 388.535156 75.75 387.503906 74.476562 387.503906 C 73.203125 387.503906 72.171875 388.535156 72.171875 389.808594 C 72.171875 391.082031 73.203125 392.113281 74.476562 392.113281 C 75.75 392.113281 76.78125 391.082031 76.78125 389.808594 Z M 76.78125 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.167969 389.808594 C 74.167969 388.535156 73.136719 387.503906 71.863281 387.503906 C 70.589844 387.503906 69.558594 388.535156 69.558594 389.808594 C 69.558594 391.082031 70.589844 392.113281 71.863281 392.113281 C 73.136719 392.113281 74.167969 391.082031 74.167969 389.808594 Z M 74.167969 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.941406 389.808594 C 70.941406 388.535156 69.910156 387.503906 68.636719 387.503906 C 67.363281 387.503906 66.332031 388.535156 66.332031 389.808594 C 66.332031 391.082031 67.363281 392.113281 68.636719 392.113281 C 69.910156 392.113281 70.941406 391.082031 70.941406 389.808594 Z M 70.941406 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.109375 389.808594 C 74.109375 388.535156 73.078125 387.503906 71.804688 387.503906 C 70.53125 387.503906 69.5 388.535156 69.5 389.808594 C 69.5 391.082031 70.53125 392.113281 71.804688 392.113281 C 73.078125 392.113281 74.109375 391.082031 74.109375 389.808594 Z M 74.109375 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.140625 389.808594 C 76.140625 388.535156 75.109375 387.503906 73.835938 387.503906 C 72.5625 387.503906 71.53125 388.535156 71.53125 389.808594 C 71.53125 391.082031 72.5625 392.113281 73.835938 392.113281 C 75.109375 392.113281 76.140625 391.082031 76.140625 389.808594 Z M 76.140625 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.746094 389.808594 C 72.746094 388.535156 71.714844 387.503906 70.441406 387.503906 C 69.167969 387.503906 68.136719 388.535156 68.136719 389.808594 C 68.136719 391.082031 69.167969 392.113281 70.441406 392.113281 C 71.714844 392.113281 72.746094 391.082031 72.746094 389.808594 Z M 72.746094 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.816406 389.808594 C 72.816406 388.535156 71.785156 387.503906 70.511719 387.503906 C 69.238281 387.503906 68.207031 388.535156 68.207031 389.808594 C 68.207031 391.082031 69.238281 392.113281 70.511719 392.113281 C 71.785156 392.113281 72.816406 391.082031 72.816406 389.808594 Z M 72.816406 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77 389.808594 C 77 388.535156 75.96875 387.503906 74.695312 387.503906 C 73.421875 387.503906 72.390625 388.535156 72.390625 389.808594 C 72.390625 391.082031 73.421875 392.113281 74.695312 392.113281 C 75.96875 392.113281 77 391.082031 77 389.808594 Z M 77 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.292969 389.808594 C 75.292969 388.535156 74.261719 387.503906 72.988281 387.503906 C 71.714844 387.503906 70.683594 388.535156 70.683594 389.808594 C 70.683594 391.082031 71.714844 392.113281 72.988281 392.113281 C 74.261719 392.113281 75.292969 391.082031 75.292969 389.808594 Z M 75.292969 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.601562 389.808594 C 72.601562 388.535156 71.570312 387.503906 70.296875 387.503906 C 69.023438 387.503906 67.992188 388.535156 67.992188 389.808594 C 67.992188 391.082031 69.023438 392.113281 70.296875 392.113281 C 71.570312 392.113281 72.601562 391.082031 72.601562 389.808594 Z M 72.601562 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.769531 389.808594 C 73.769531 388.535156 72.738281 387.503906 71.464844 387.503906 C 70.191406 387.503906 69.160156 388.535156 69.160156 389.808594 C 69.160156 391.082031 70.191406 392.113281 71.464844 392.113281 C 72.738281 392.113281 73.769531 391.082031 73.769531 389.808594 Z M 73.769531 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.980469 389.808594 C 74.980469 388.535156 73.949219 387.503906 72.675781 387.503906 C 71.402344 387.503906 70.371094 388.535156 70.371094 389.808594 C 70.371094 391.082031 71.402344 392.113281 72.675781 392.113281 C 73.949219 392.113281 74.980469 391.082031 74.980469 389.808594 Z M 74.980469 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.875 389.808594 C 70.875 388.535156 69.84375 387.503906 68.570312 387.503906 C 67.296875 387.503906 66.265625 388.535156 66.265625 389.808594 C 66.265625 391.082031 67.296875 392.113281 68.570312 392.113281 C 69.84375 392.113281 70.875 391.082031 70.875 389.808594 Z M 70.875 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.304688 389.808594 C 74.304688 388.535156 73.273438 387.503906 72 387.503906 C 70.726562 387.503906 69.695312 388.535156 69.695312 389.808594 C 69.695312 391.082031 70.726562 392.113281 72 392.113281 C 73.273438 392.113281 74.304688 391.082031 74.304688 389.808594 Z M 74.304688 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.332031 389.808594 C 73.332031 388.535156 72.300781 387.503906 71.027344 387.503906 C 69.753906 387.503906 68.722656 388.535156 68.722656 389.808594 C 68.722656 391.082031 69.753906 392.113281 71.027344 392.113281 C 72.300781 392.113281 73.332031 391.082031 73.332031 389.808594 Z M 73.332031 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.582031 389.808594 C 71.582031 388.535156 70.550781 387.503906 69.277344 387.503906 C 68.003906 387.503906 66.972656 388.535156 66.972656 389.808594 C 66.972656 391.082031 68.003906 392.113281 69.277344 392.113281 C 70.550781 392.113281 71.582031 391.082031 71.582031 389.808594 Z M 71.582031 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.4375 389.808594 C 76.4375 388.535156 75.40625 387.503906 74.132812 387.503906 C 72.859375 387.503906 71.828125 388.535156 71.828125 389.808594 C 71.828125 391.082031 72.859375 392.113281 74.132812 392.113281 C 75.40625 392.113281 76.4375 391.082031 76.4375 389.808594 Z M 76.4375 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.140625 389.808594 C 75.140625 388.535156 74.109375 387.503906 72.835938 387.503906 C 71.5625 387.503906 70.53125 388.535156 70.53125 389.808594 C 70.53125 391.082031 71.5625 392.113281 72.835938 392.113281 C 74.109375 392.113281 75.140625 391.082031 75.140625 389.808594 Z M 75.140625 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.152344 389.808594 C 71.152344 388.535156 70.121094 387.503906 68.847656 387.503906 C 67.574219 387.503906 66.542969 388.535156 66.542969 389.808594 C 66.542969 391.082031 67.574219 392.113281 68.847656 392.113281 C 70.121094 392.113281 71.152344 391.082031 71.152344 389.808594 Z M 71.152344 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.136719 389.808594 C 72.136719 388.535156 71.105469 387.503906 69.832031 387.503906 C 68.558594 387.503906 67.527344 388.535156 67.527344 389.808594 C 67.527344 391.082031 68.558594 392.113281 69.832031 392.113281 C 71.105469 392.113281 72.136719 391.082031 72.136719 389.808594 Z M 72.136719 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.226562 389.808594 C 74.226562 388.535156 73.195312 387.503906 71.921875 387.503906 C 70.648438 387.503906 69.617188 388.535156 69.617188 389.808594 C 69.617188 391.082031 70.648438 392.113281 71.921875 392.113281 C 73.195312 392.113281 74.226562 391.082031 74.226562 389.808594 Z M 74.226562 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.890625 389.808594 C 70.890625 388.535156 69.859375 387.503906 68.585938 387.503906 C 67.3125 387.503906 66.28125 388.535156 66.28125 389.808594 C 66.28125 391.082031 67.3125 392.113281 68.585938 392.113281 C 69.859375 392.113281 70.890625 391.082031 70.890625 389.808594 Z M 70.890625 389.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.191406 384.964844 C 77.191406 383.691406 76.160156 382.660156 74.886719 382.660156 C 73.613281 382.660156 72.582031 383.691406 72.582031 384.964844 C 72.582031 386.238281 73.613281 387.269531 74.886719 387.269531 C 76.160156 387.269531 77.191406 386.238281 77.191406 384.964844 Z M 77.191406 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.644531 384.964844 C 75.644531 383.691406 74.613281 382.660156 73.339844 382.660156 C 72.066406 382.660156 71.035156 383.691406 71.035156 384.964844 C 71.035156 386.238281 72.066406 387.269531 73.339844 387.269531 C 74.613281 387.269531 75.644531 386.238281 75.644531 384.964844 Z M 75.644531 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.589844 384.964844 C 76.589844 383.691406 75.558594 382.660156 74.285156 382.660156 C 73.011719 382.660156 71.980469 383.691406 71.980469 384.964844 C 71.980469 386.238281 73.011719 387.269531 74.285156 387.269531 C 75.558594 387.269531 76.589844 386.238281 76.589844 384.964844 Z M 76.589844 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.734375 384.964844 C 75.734375 383.691406 74.703125 382.660156 73.429688 382.660156 C 72.15625 382.660156 71.125 383.691406 71.125 384.964844 C 71.125 386.238281 72.15625 387.269531 73.429688 387.269531 C 74.703125 387.269531 75.734375 386.238281 75.734375 384.964844 Z M 75.734375 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.007812 384.964844 C 76.007812 383.691406 74.976562 382.660156 73.703125 382.660156 C 72.429688 382.660156 71.398438 383.691406 71.398438 384.964844 C 71.398438 386.238281 72.429688 387.269531 73.703125 387.269531 C 74.976562 387.269531 76.007812 386.238281 76.007812 384.964844 Z M 76.007812 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.402344 384.964844 C 76.402344 383.691406 75.371094 382.660156 74.097656 382.660156 C 72.824219 382.660156 71.792969 383.691406 71.792969 384.964844 C 71.792969 386.238281 72.824219 387.269531 74.097656 387.269531 C 75.371094 387.269531 76.402344 386.238281 76.402344 384.964844 Z M 76.402344 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.613281 384.964844 C 76.613281 383.691406 75.582031 382.660156 74.308594 382.660156 C 73.035156 382.660156 72.003906 383.691406 72.003906 384.964844 C 72.003906 386.238281 73.035156 387.269531 74.308594 387.269531 C 75.582031 387.269531 76.613281 386.238281 76.613281 384.964844 Z M 76.613281 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.90625 384.964844 C 75.90625 383.691406 74.875 382.660156 73.601562 382.660156 C 72.328125 382.660156 71.296875 383.691406 71.296875 384.964844 C 71.296875 386.238281 72.328125 387.269531 73.601562 387.269531 C 74.875 387.269531 75.90625 386.238281 75.90625 384.964844 Z M 75.90625 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.363281 384.964844 C 77.363281 383.691406 76.332031 382.660156 75.058594 382.660156 C 73.785156 382.660156 72.753906 383.691406 72.753906 384.964844 C 72.753906 386.238281 73.785156 387.269531 75.058594 387.269531 C 76.332031 387.269531 77.363281 386.238281 77.363281 384.964844 Z M 77.363281 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.539062 384.964844 C 76.539062 383.691406 75.507812 382.660156 74.234375 382.660156 C 72.960938 382.660156 71.929688 383.691406 71.929688 384.964844 C 71.929688 386.238281 72.960938 387.269531 74.234375 387.269531 C 75.507812 387.269531 76.539062 386.238281 76.539062 384.964844 Z M 76.539062 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.515625 384.964844 C 75.515625 383.691406 74.484375 382.660156 73.210938 382.660156 C 71.9375 382.660156 70.90625 383.691406 70.90625 384.964844 C 70.90625 386.238281 71.9375 387.269531 73.210938 387.269531 C 74.484375 387.269531 75.515625 386.238281 75.515625 384.964844 Z M 75.515625 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.519531 384.964844 C 76.519531 383.691406 75.488281 382.660156 74.214844 382.660156 C 72.941406 382.660156 71.910156 383.691406 71.910156 384.964844 C 71.910156 386.238281 72.941406 387.269531 74.214844 387.269531 C 75.488281 387.269531 76.519531 386.238281 76.519531 384.964844 Z M 76.519531 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.160156 384.964844 C 77.160156 383.691406 76.128906 382.660156 74.855469 382.660156 C 73.582031 382.660156 72.550781 383.691406 72.550781 384.964844 C 72.550781 386.238281 73.582031 387.269531 74.855469 387.269531 C 76.128906 387.269531 77.160156 386.238281 77.160156 384.964844 Z M 77.160156 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.085938 384.964844 C 76.085938 383.691406 75.054688 382.660156 73.78125 382.660156 C 72.507812 382.660156 71.476562 383.691406 71.476562 384.964844 C 71.476562 386.238281 72.507812 387.269531 73.78125 387.269531 C 75.054688 387.269531 76.085938 386.238281 76.085938 384.964844 Z M 76.085938 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.109375 384.964844 C 76.109375 383.691406 75.078125 382.660156 73.804688 382.660156 C 72.53125 382.660156 71.5 383.691406 71.5 384.964844 C 71.5 386.238281 72.53125 387.269531 73.804688 387.269531 C 75.078125 387.269531 76.109375 386.238281 76.109375 384.964844 Z M 76.109375 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.433594 384.964844 C 77.433594 383.691406 76.402344 382.660156 75.128906 382.660156 C 73.855469 382.660156 72.824219 383.691406 72.824219 384.964844 C 72.824219 386.238281 73.855469 387.269531 75.128906 387.269531 C 76.402344 387.269531 77.433594 386.238281 77.433594 384.964844 Z M 77.433594 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.890625 384.964844 C 76.890625 383.691406 75.859375 382.660156 74.585938 382.660156 C 73.3125 382.660156 72.28125 383.691406 72.28125 384.964844 C 72.28125 386.238281 73.3125 387.269531 74.585938 387.269531 C 75.859375 387.269531 76.890625 386.238281 76.890625 384.964844 Z M 76.890625 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.042969 384.964844 C 76.042969 383.691406 75.011719 382.660156 73.738281 382.660156 C 72.464844 382.660156 71.433594 383.691406 71.433594 384.964844 C 71.433594 386.238281 72.464844 387.269531 73.738281 387.269531 C 75.011719 387.269531 76.042969 386.238281 76.042969 384.964844 Z M 76.042969 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.410156 384.964844 C 76.410156 383.691406 75.378906 382.660156 74.105469 382.660156 C 72.832031 382.660156 71.800781 383.691406 71.800781 384.964844 C 71.800781 386.238281 72.832031 387.269531 74.105469 387.269531 C 75.378906 387.269531 76.410156 386.238281 76.410156 384.964844 Z M 76.410156 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.792969 384.964844 C 76.792969 383.691406 75.761719 382.660156 74.488281 382.660156 C 73.214844 382.660156 72.183594 383.691406 72.183594 384.964844 C 72.183594 386.238281 73.214844 387.269531 74.488281 387.269531 C 75.761719 387.269531 76.792969 386.238281 76.792969 384.964844 Z M 76.792969 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.496094 384.964844 C 75.496094 383.691406 74.464844 382.660156 73.191406 382.660156 C 71.917969 382.660156 70.886719 383.691406 70.886719 384.964844 C 70.886719 386.238281 71.917969 387.269531 73.191406 387.269531 C 74.464844 387.269531 75.496094 386.238281 75.496094 384.964844 Z M 75.496094 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.578125 384.964844 C 76.578125 383.691406 75.546875 382.660156 74.273438 382.660156 C 73 382.660156 71.96875 383.691406 71.96875 384.964844 C 71.96875 386.238281 73 387.269531 74.273438 387.269531 C 75.546875 387.269531 76.578125 386.238281 76.578125 384.964844 Z M 76.578125 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.273438 384.964844 C 76.273438 383.691406 75.242188 382.660156 73.96875 382.660156 C 72.695312 382.660156 71.664062 383.691406 71.664062 384.964844 C 71.664062 386.238281 72.695312 387.269531 73.96875 387.269531 C 75.242188 387.269531 76.273438 386.238281 76.273438 384.964844 Z M 76.273438 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.71875 384.964844 C 75.71875 383.691406 74.6875 382.660156 73.414062 382.660156 C 72.140625 382.660156 71.109375 383.691406 71.109375 384.964844 C 71.109375 386.238281 72.140625 387.269531 73.414062 387.269531 C 74.6875 387.269531 75.71875 386.238281 75.71875 384.964844 Z M 75.71875 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.253906 384.964844 C 77.253906 383.691406 76.222656 382.660156 74.949219 382.660156 C 73.675781 382.660156 72.644531 383.691406 72.644531 384.964844 C 72.644531 386.238281 73.675781 387.269531 74.949219 387.269531 C 76.222656 387.269531 77.253906 386.238281 77.253906 384.964844 Z M 77.253906 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.84375 384.964844 C 76.84375 383.691406 75.8125 382.660156 74.539062 382.660156 C 73.265625 382.660156 72.234375 383.691406 72.234375 384.964844 C 72.234375 386.238281 73.265625 387.269531 74.539062 387.269531 C 75.8125 387.269531 76.84375 386.238281 76.84375 384.964844 Z M 76.84375 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.582031 384.964844 C 75.582031 383.691406 74.550781 382.660156 73.277344 382.660156 C 72.003906 382.660156 70.972656 383.691406 70.972656 384.964844 C 70.972656 386.238281 72.003906 387.269531 73.277344 387.269531 C 74.550781 387.269531 75.582031 386.238281 75.582031 384.964844 Z M 75.582031 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.894531 384.964844 C 75.894531 383.691406 74.863281 382.660156 73.589844 382.660156 C 72.316406 382.660156 71.285156 383.691406 71.285156 384.964844 C 71.285156 386.238281 72.316406 387.269531 73.589844 387.269531 C 74.863281 387.269531 75.894531 386.238281 75.894531 384.964844 Z M 75.894531 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.554688 384.964844 C 76.554688 383.691406 75.523438 382.660156 74.25 382.660156 C 72.976562 382.660156 71.945312 383.691406 71.945312 384.964844 C 71.945312 386.238281 72.976562 387.269531 74.25 387.269531 C 75.523438 387.269531 76.554688 386.238281 76.554688 384.964844 Z M 76.554688 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.5 384.964844 C 75.5 383.691406 74.46875 382.660156 73.195312 382.660156 C 71.921875 382.660156 70.890625 383.691406 70.890625 384.964844 C 70.890625 386.238281 71.921875 387.269531 73.195312 387.269531 C 74.46875 387.269531 75.5 386.238281 75.5 384.964844 Z M 75.5 384.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.917969 380.121094 C 77.917969 378.847656 76.886719 377.816406 75.613281 377.816406 C 74.339844 377.816406 73.308594 378.847656 73.308594 380.121094 C 73.308594 381.394531 74.339844 382.425781 75.613281 382.425781 C 76.886719 382.425781 77.917969 381.394531 77.917969 380.121094 Z M 77.917969 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.730469 380.121094 C 79.730469 378.847656 78.699219 377.816406 77.425781 377.816406 C 76.152344 377.816406 75.121094 378.847656 75.121094 380.121094 C 75.121094 381.394531 76.152344 382.425781 77.425781 382.425781 C 78.699219 382.425781 79.730469 381.394531 79.730469 380.121094 Z M 79.730469 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.625 380.121094 C 78.625 378.847656 77.59375 377.816406 76.320312 377.816406 C 75.046875 377.816406 74.015625 378.847656 74.015625 380.121094 C 74.015625 381.394531 75.046875 382.425781 76.320312 382.425781 C 77.59375 382.425781 78.625 381.394531 78.625 380.121094 Z M 78.625 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.625 380.121094 C 79.625 378.847656 78.59375 377.816406 77.320312 377.816406 C 76.046875 377.816406 75.015625 378.847656 75.015625 380.121094 C 75.015625 381.394531 76.046875 382.425781 77.320312 382.425781 C 78.59375 382.425781 79.625 381.394531 79.625 380.121094 Z M 79.625 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.304688 380.121094 C 79.304688 378.847656 78.273438 377.816406 77 377.816406 C 75.726562 377.816406 74.695312 378.847656 74.695312 380.121094 C 74.695312 381.394531 75.726562 382.425781 77 382.425781 C 78.273438 382.425781 79.304688 381.394531 79.304688 380.121094 Z M 79.304688 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.84375 380.121094 C 78.84375 378.847656 77.8125 377.816406 76.539062 377.816406 C 75.265625 377.816406 74.234375 378.847656 74.234375 380.121094 C 74.234375 381.394531 75.265625 382.425781 76.539062 382.425781 C 77.8125 382.425781 78.84375 381.394531 78.84375 380.121094 Z M 78.84375 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.597656 380.121094 C 78.597656 378.847656 77.566406 377.816406 76.292969 377.816406 C 75.019531 377.816406 73.988281 378.847656 73.988281 380.121094 C 73.988281 381.394531 75.019531 382.425781 76.292969 382.425781 C 77.566406 382.425781 78.597656 381.394531 78.597656 380.121094 Z M 78.597656 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.421875 380.121094 C 79.421875 378.847656 78.390625 377.816406 77.117188 377.816406 C 75.84375 377.816406 74.8125 378.847656 74.8125 380.121094 C 74.8125 381.394531 75.84375 382.425781 77.117188 382.425781 C 78.390625 382.425781 79.421875 381.394531 79.421875 380.121094 Z M 79.421875 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.71875 380.121094 C 77.71875 378.847656 76.6875 377.816406 75.414062 377.816406 C 74.140625 377.816406 73.109375 378.847656 73.109375 380.121094 C 73.109375 381.394531 74.140625 382.425781 75.414062 382.425781 C 76.6875 382.425781 77.71875 381.394531 77.71875 380.121094 Z M 77.71875 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.683594 380.121094 C 78.683594 378.847656 77.652344 377.816406 76.378906 377.816406 C 75.105469 377.816406 74.074219 378.847656 74.074219 380.121094 C 74.074219 381.394531 75.105469 382.425781 76.378906 382.425781 C 77.652344 382.425781 78.683594 381.394531 78.683594 380.121094 Z M 78.683594 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.882812 380.121094 C 79.882812 378.847656 78.851562 377.816406 77.578125 377.816406 C 76.304688 377.816406 75.273438 378.847656 75.273438 380.121094 C 75.273438 381.394531 76.304688 382.425781 77.578125 382.425781 C 78.851562 382.425781 79.882812 381.394531 79.882812 380.121094 Z M 79.882812 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.707031 380.121094 C 78.707031 378.847656 77.675781 377.816406 76.402344 377.816406 C 75.128906 377.816406 74.097656 378.847656 74.097656 380.121094 C 74.097656 381.394531 75.128906 382.425781 76.402344 382.425781 C 77.675781 382.425781 78.707031 381.394531 78.707031 380.121094 Z M 78.707031 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.953125 380.121094 C 77.953125 378.847656 76.921875 377.816406 75.648438 377.816406 C 74.375 377.816406 73.34375 378.847656 73.34375 380.121094 C 73.34375 381.394531 74.375 382.425781 75.648438 382.425781 C 76.921875 382.425781 77.953125 381.394531 77.953125 380.121094 Z M 77.953125 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.210938 380.121094 C 79.210938 378.847656 78.179688 377.816406 76.90625 377.816406 C 75.632812 377.816406 74.601562 378.847656 74.601562 380.121094 C 74.601562 381.394531 75.632812 382.425781 76.90625 382.425781 C 78.179688 382.425781 79.210938 381.394531 79.210938 380.121094 Z M 79.210938 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.1875 380.121094 C 79.1875 378.847656 78.15625 377.816406 76.882812 377.816406 C 75.609375 377.816406 74.578125 378.847656 74.578125 380.121094 C 74.578125 381.394531 75.609375 382.425781 76.882812 382.425781 C 78.15625 382.425781 79.1875 381.394531 79.1875 380.121094 Z M 79.1875 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.636719 380.121094 C 77.636719 378.847656 76.605469 377.816406 75.332031 377.816406 C 74.058594 377.816406 73.027344 378.847656 73.027344 380.121094 C 73.027344 381.394531 74.058594 382.425781 75.332031 382.425781 C 76.605469 382.425781 77.636719 381.394531 77.636719 380.121094 Z M 77.636719 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.269531 380.121094 C 78.269531 378.847656 77.238281 377.816406 75.964844 377.816406 C 74.691406 377.816406 73.660156 378.847656 73.660156 380.121094 C 73.660156 381.394531 74.691406 382.425781 75.964844 382.425781 C 77.238281 382.425781 78.269531 381.394531 78.269531 380.121094 Z M 78.269531 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.265625 380.121094 C 79.265625 378.847656 78.234375 377.816406 76.960938 377.816406 C 75.6875 377.816406 74.65625 378.847656 74.65625 380.121094 C 74.65625 381.394531 75.6875 382.425781 76.960938 382.425781 C 78.234375 382.425781 79.265625 381.394531 79.265625 380.121094 Z M 79.265625 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.832031 380.121094 C 78.832031 378.847656 77.800781 377.816406 76.527344 377.816406 C 75.253906 377.816406 74.222656 378.847656 74.222656 380.121094 C 74.222656 381.394531 75.253906 382.425781 76.527344 382.425781 C 77.800781 382.425781 78.832031 381.394531 78.832031 380.121094 Z M 78.832031 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.382812 380.121094 C 78.382812 378.847656 77.351562 377.816406 76.078125 377.816406 C 74.804688 377.816406 73.773438 378.847656 73.773438 380.121094 C 73.773438 381.394531 74.804688 382.425781 76.078125 382.425781 C 77.351562 382.425781 78.382812 381.394531 78.382812 380.121094 Z M 78.382812 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.90625 380.121094 C 79.90625 378.847656 78.875 377.816406 77.601562 377.816406 C 76.328125 377.816406 75.296875 378.847656 75.296875 380.121094 C 75.296875 381.394531 76.328125 382.425781 77.601562 382.425781 C 78.875 382.425781 79.90625 381.394531 79.90625 380.121094 Z M 79.90625 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.636719 380.121094 C 78.636719 378.847656 77.605469 377.816406 76.332031 377.816406 C 75.058594 377.816406 74.027344 378.847656 74.027344 380.121094 C 74.027344 381.394531 75.058594 382.425781 76.332031 382.425781 C 77.605469 382.425781 78.636719 381.394531 78.636719 380.121094 Z M 78.636719 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.996094 380.121094 C 78.996094 378.847656 77.964844 377.816406 76.691406 377.816406 C 75.417969 377.816406 74.386719 378.847656 74.386719 380.121094 C 74.386719 381.394531 75.417969 382.425781 76.691406 382.425781 C 77.964844 382.425781 78.996094 381.394531 78.996094 380.121094 Z M 78.996094 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.644531 380.121094 C 79.644531 378.847656 78.613281 377.816406 77.339844 377.816406 C 76.066406 377.816406 75.035156 378.847656 75.035156 380.121094 C 75.035156 381.394531 76.066406 382.425781 77.339844 382.425781 C 78.613281 382.425781 79.644531 381.394531 79.644531 380.121094 Z M 79.644531 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.84375 380.121094 C 77.84375 378.847656 76.8125 377.816406 75.539062 377.816406 C 74.265625 377.816406 73.234375 378.847656 73.234375 380.121094 C 73.234375 381.394531 74.265625 382.425781 75.539062 382.425781 C 76.8125 382.425781 77.84375 381.394531 77.84375 380.121094 Z M 77.84375 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.324219 380.121094 C 78.324219 378.847656 77.292969 377.816406 76.019531 377.816406 C 74.746094 377.816406 73.714844 378.847656 73.714844 380.121094 C 73.714844 381.394531 74.746094 382.425781 76.019531 382.425781 C 77.292969 382.425781 78.324219 381.394531 78.324219 380.121094 Z M 78.324219 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.804688 380.121094 C 79.804688 378.847656 78.773438 377.816406 77.5 377.816406 C 76.226562 377.816406 75.195312 378.847656 75.195312 380.121094 C 75.195312 381.394531 76.226562 382.425781 77.5 382.425781 C 78.773438 382.425781 79.804688 381.394531 79.804688 380.121094 Z M 79.804688 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.4375 380.121094 C 79.4375 378.847656 78.40625 377.816406 77.132812 377.816406 C 75.859375 377.816406 74.828125 378.847656 74.828125 380.121094 C 74.828125 381.394531 75.859375 382.425781 77.132812 382.425781 C 78.40625 382.425781 79.4375 381.394531 79.4375 380.121094 Z M 79.4375 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.664062 380.121094 C 78.664062 378.847656 77.632812 377.816406 76.359375 377.816406 C 75.085938 377.816406 74.054688 378.847656 74.054688 380.121094 C 74.054688 381.394531 75.085938 382.425781 76.359375 382.425781 C 77.632812 382.425781 78.664062 381.394531 78.664062 380.121094 Z M 78.664062 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.898438 380.121094 C 79.898438 378.847656 78.867188 377.816406 77.59375 377.816406 C 76.320312 377.816406 75.289062 378.847656 75.289062 380.121094 C 75.289062 381.394531 76.320312 382.425781 77.59375 382.425781 C 78.867188 382.425781 79.898438 381.394531 79.898438 380.121094 Z M 79.898438 380.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.414062 375.277344 C 78.414062 374.003906 77.382812 372.972656 76.109375 372.972656 C 74.835938 372.972656 73.804688 374.003906 73.804688 375.277344 C 73.804688 376.550781 74.835938 377.582031 76.109375 377.582031 C 77.382812 377.582031 78.414062 376.550781 78.414062 375.277344 Z M 78.414062 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.5625 375.277344 C 83.5625 374.003906 82.53125 372.972656 81.257812 372.972656 C 79.984375 372.972656 78.953125 374.003906 78.953125 375.277344 C 78.953125 376.550781 79.984375 377.582031 81.257812 377.582031 C 82.53125 377.582031 83.5625 376.550781 83.5625 375.277344 Z M 83.5625 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.417969 375.277344 C 80.417969 374.003906 79.386719 372.972656 78.113281 372.972656 C 76.839844 372.972656 75.808594 374.003906 75.808594 375.277344 C 75.808594 376.550781 76.839844 377.582031 78.113281 377.582031 C 79.386719 377.582031 80.417969 376.550781 80.417969 375.277344 Z M 80.417969 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.261719 375.277344 C 83.261719 374.003906 82.230469 372.972656 80.957031 372.972656 C 79.683594 372.972656 78.652344 374.003906 78.652344 375.277344 C 78.652344 376.550781 79.683594 377.582031 80.957031 377.582031 C 82.230469 377.582031 83.261719 376.550781 83.261719 375.277344 Z M 83.261719 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.351562 375.277344 C 82.351562 374.003906 81.320312 372.972656 80.046875 372.972656 C 78.773438 372.972656 77.742188 374.003906 77.742188 375.277344 C 77.742188 376.550781 78.773438 377.582031 80.046875 377.582031 C 81.320312 377.582031 82.351562 376.550781 82.351562 375.277344 Z M 82.351562 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.046875 375.277344 C 81.046875 374.003906 80.015625 372.972656 78.742188 372.972656 C 77.46875 372.972656 76.4375 374.003906 76.4375 375.277344 C 76.4375 376.550781 77.46875 377.582031 78.742188 377.582031 C 80.015625 377.582031 81.046875 376.550781 81.046875 375.277344 Z M 81.046875 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.34375 375.277344 C 80.34375 374.003906 79.3125 372.972656 78.039062 372.972656 C 76.765625 372.972656 75.734375 374.003906 75.734375 375.277344 C 75.734375 376.550781 76.765625 377.582031 78.039062 377.582031 C 79.3125 377.582031 80.34375 376.550781 80.34375 375.277344 Z M 80.34375 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.6875 375.277344 C 82.6875 374.003906 81.65625 372.972656 80.382812 372.972656 C 79.109375 372.972656 78.078125 374.003906 78.078125 375.277344 C 78.078125 376.550781 79.109375 377.582031 80.382812 377.582031 C 81.65625 377.582031 82.6875 376.550781 82.6875 375.277344 Z M 82.6875 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.839844 375.277344 C 77.839844 374.003906 76.808594 372.972656 75.535156 372.972656 C 74.261719 372.972656 73.230469 374.003906 73.230469 375.277344 C 73.230469 376.550781 74.261719 377.582031 75.535156 377.582031 C 76.808594 377.582031 77.839844 376.550781 77.839844 375.277344 Z M 77.839844 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.589844 375.277344 C 80.589844 374.003906 79.558594 372.972656 78.285156 372.972656 C 77.011719 372.972656 75.980469 374.003906 75.980469 375.277344 C 75.980469 376.550781 77.011719 377.582031 78.285156 377.582031 C 79.558594 377.582031 80.589844 376.550781 80.589844 375.277344 Z M 80.589844 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.996094 375.277344 C 83.996094 374.003906 82.964844 372.972656 81.691406 372.972656 C 80.417969 372.972656 79.386719 374.003906 79.386719 375.277344 C 79.386719 376.550781 80.417969 377.582031 81.691406 377.582031 C 82.964844 377.582031 83.996094 376.550781 83.996094 375.277344 Z M 83.996094 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.652344 375.277344 C 80.652344 374.003906 79.621094 372.972656 78.347656 372.972656 C 77.074219 372.972656 76.042969 374.003906 76.042969 375.277344 C 76.042969 376.550781 77.074219 377.582031 78.347656 377.582031 C 79.621094 377.582031 80.652344 376.550781 80.652344 375.277344 Z M 80.652344 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.511719 375.277344 C 78.511719 374.003906 77.480469 372.972656 76.207031 372.972656 C 74.933594 372.972656 73.902344 374.003906 73.902344 375.277344 C 73.902344 376.550781 74.933594 377.582031 76.207031 377.582031 C 77.480469 377.582031 78.511719 376.550781 78.511719 375.277344 Z M 78.511719 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.089844 375.277344 C 82.089844 374.003906 81.058594 372.972656 79.785156 372.972656 C 78.511719 372.972656 77.480469 374.003906 77.480469 375.277344 C 77.480469 376.550781 78.511719 377.582031 79.785156 377.582031 C 81.058594 377.582031 82.089844 376.550781 82.089844 375.277344 Z M 82.089844 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.015625 375.277344 C 82.015625 374.003906 80.984375 372.972656 79.710938 372.972656 C 78.4375 372.972656 77.40625 374.003906 77.40625 375.277344 C 77.40625 376.550781 78.4375 377.582031 79.710938 377.582031 C 80.984375 377.582031 82.015625 376.550781 82.015625 375.277344 Z M 82.015625 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.605469 375.277344 C 77.605469 374.003906 76.574219 372.972656 75.300781 372.972656 C 74.027344 372.972656 72.996094 374.003906 72.996094 375.277344 C 72.996094 376.550781 74.027344 377.582031 75.300781 377.582031 C 76.574219 377.582031 77.605469 376.550781 77.605469 375.277344 Z M 77.605469 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.40625 375.277344 C 79.40625 374.003906 78.375 372.972656 77.101562 372.972656 C 75.828125 372.972656 74.796875 374.003906 74.796875 375.277344 C 74.796875 376.550781 75.828125 377.582031 77.101562 377.582031 C 78.375 377.582031 79.40625 376.550781 79.40625 375.277344 Z M 79.40625 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.246094 375.277344 C 82.246094 374.003906 81.214844 372.972656 79.941406 372.972656 C 78.667969 372.972656 77.636719 374.003906 77.636719 375.277344 C 77.636719 376.550781 78.667969 377.582031 79.941406 377.582031 C 81.214844 377.582031 82.246094 376.550781 82.246094 375.277344 Z M 82.246094 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.011719 375.277344 C 81.011719 374.003906 79.980469 372.972656 78.707031 372.972656 C 77.433594 372.972656 76.402344 374.003906 76.402344 375.277344 C 76.402344 376.550781 77.433594 377.582031 78.707031 377.582031 C 79.980469 377.582031 81.011719 376.550781 81.011719 375.277344 Z M 81.011719 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.734375 375.277344 C 79.734375 374.003906 78.703125 372.972656 77.429688 372.972656 C 76.15625 372.972656 75.125 374.003906 75.125 375.277344 C 75.125 376.550781 76.15625 377.582031 77.429688 377.582031 C 78.703125 377.582031 79.734375 376.550781 79.734375 375.277344 Z M 79.734375 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.0625 375.277344 C 84.0625 374.003906 83.03125 372.972656 81.757812 372.972656 C 80.484375 372.972656 79.453125 374.003906 79.453125 375.277344 C 79.453125 376.550781 80.484375 377.582031 81.757812 377.582031 C 83.03125 377.582031 84.0625 376.550781 84.0625 375.277344 Z M 84.0625 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.449219 375.277344 C 80.449219 374.003906 79.417969 372.972656 78.144531 372.972656 C 76.871094 372.972656 75.839844 374.003906 75.839844 375.277344 C 75.839844 376.550781 76.871094 377.582031 78.144531 377.582031 C 79.417969 377.582031 80.449219 376.550781 80.449219 375.277344 Z M 80.449219 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.472656 375.277344 C 81.472656 374.003906 80.441406 372.972656 79.167969 372.972656 C 77.894531 372.972656 76.863281 374.003906 76.863281 375.277344 C 76.863281 376.550781 77.894531 377.582031 79.167969 377.582031 C 80.441406 377.582031 81.472656 376.550781 81.472656 375.277344 Z M 81.472656 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.316406 375.277344 C 83.316406 374.003906 82.285156 372.972656 81.011719 372.972656 C 79.738281 372.972656 78.707031 374.003906 78.707031 375.277344 C 78.707031 376.550781 79.738281 377.582031 81.011719 377.582031 C 82.285156 377.582031 83.316406 376.550781 83.316406 375.277344 Z M 83.316406 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.199219 375.277344 C 78.199219 374.003906 77.167969 372.972656 75.894531 372.972656 C 74.621094 372.972656 73.589844 374.003906 73.589844 375.277344 C 73.589844 376.550781 74.621094 377.582031 75.894531 377.582031 C 77.167969 377.582031 78.199219 376.550781 78.199219 375.277344 Z M 78.199219 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.566406 375.277344 C 79.566406 374.003906 78.535156 372.972656 77.261719 372.972656 C 75.988281 372.972656 74.957031 374.003906 74.957031 375.277344 C 74.957031 376.550781 75.988281 377.582031 77.261719 377.582031 C 78.535156 377.582031 79.566406 376.550781 79.566406 375.277344 Z M 79.566406 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.773438 375.277344 C 83.773438 374.003906 82.742188 372.972656 81.46875 372.972656 C 80.195312 372.972656 79.164062 374.003906 79.164062 375.277344 C 79.164062 376.550781 80.195312 377.582031 81.46875 377.582031 C 82.742188 377.582031 83.773438 376.550781 83.773438 375.277344 Z M 83.773438 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.734375 375.277344 C 82.734375 374.003906 81.703125 372.972656 80.429688 372.972656 C 79.15625 372.972656 78.125 374.003906 78.125 375.277344 C 78.125 376.550781 79.15625 377.582031 80.429688 377.582031 C 81.703125 377.582031 82.734375 376.550781 82.734375 375.277344 Z M 82.734375 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.53125 375.277344 C 80.53125 374.003906 79.5 372.972656 78.226562 372.972656 C 76.953125 372.972656 75.921875 374.003906 75.921875 375.277344 C 75.921875 376.550781 76.953125 377.582031 78.226562 377.582031 C 79.5 377.582031 80.53125 376.550781 80.53125 375.277344 Z M 80.53125 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.046875 375.277344 C 84.046875 374.003906 83.015625 372.972656 81.742188 372.972656 C 80.46875 372.972656 79.4375 374.003906 79.4375 375.277344 C 79.4375 376.550781 80.46875 377.582031 81.742188 377.582031 C 83.015625 377.582031 84.046875 376.550781 84.046875 375.277344 Z M 84.046875 375.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.671875 370.433594 C 78.671875 369.160156 77.640625 368.128906 76.367188 368.128906 C 75.09375 368.128906 74.0625 369.160156 74.0625 370.433594 C 74.0625 371.707031 75.09375 372.738281 76.367188 372.738281 C 77.640625 372.738281 78.671875 371.707031 78.671875 370.433594 Z M 78.671875 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.105469 370.433594 C 87.105469 369.160156 86.074219 368.128906 84.800781 368.128906 C 83.527344 368.128906 82.496094 369.160156 82.496094 370.433594 C 82.496094 371.707031 83.527344 372.738281 84.800781 372.738281 C 86.074219 372.738281 87.105469 371.707031 87.105469 370.433594 Z M 87.105469 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.953125 370.433594 C 81.953125 369.160156 80.921875 368.128906 79.648438 368.128906 C 78.375 368.128906 77.34375 369.160156 77.34375 370.433594 C 77.34375 371.707031 78.375 372.738281 79.648438 372.738281 C 80.921875 372.738281 81.953125 371.707031 81.953125 370.433594 Z M 81.953125 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.613281 370.433594 C 86.613281 369.160156 85.582031 368.128906 84.308594 368.128906 C 83.035156 368.128906 82.003906 369.160156 82.003906 370.433594 C 82.003906 371.707031 83.035156 372.738281 84.308594 372.738281 C 85.582031 372.738281 86.613281 371.707031 86.613281 370.433594 Z M 86.613281 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.117188 370.433594 C 85.117188 369.160156 84.085938 368.128906 82.8125 368.128906 C 81.539062 368.128906 80.507812 369.160156 80.507812 370.433594 C 80.507812 371.707031 81.539062 372.738281 82.8125 372.738281 C 84.085938 372.738281 85.117188 371.707031 85.117188 370.433594 Z M 85.117188 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.984375 370.433594 C 82.984375 369.160156 81.953125 368.128906 80.679688 368.128906 C 79.40625 368.128906 78.375 369.160156 78.375 370.433594 C 78.375 371.707031 79.40625 372.738281 80.679688 372.738281 C 81.953125 372.738281 82.984375 371.707031 82.984375 370.433594 Z M 82.984375 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.828125 370.433594 C 81.828125 369.160156 80.796875 368.128906 79.523438 368.128906 C 78.25 368.128906 77.21875 369.160156 77.21875 370.433594 C 77.21875 371.707031 78.25 372.738281 79.523438 372.738281 C 80.796875 372.738281 81.828125 371.707031 81.828125 370.433594 Z M 81.828125 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.671875 370.433594 C 85.671875 369.160156 84.640625 368.128906 83.367188 368.128906 C 82.09375 368.128906 81.0625 369.160156 81.0625 370.433594 C 81.0625 371.707031 82.09375 372.738281 83.367188 372.738281 C 84.640625 372.738281 85.671875 371.707031 85.671875 370.433594 Z M 85.671875 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.726562 370.433594 C 77.726562 369.160156 76.695312 368.128906 75.421875 368.128906 C 74.148438 368.128906 73.117188 369.160156 73.117188 370.433594 C 73.117188 371.707031 74.148438 372.738281 75.421875 372.738281 C 76.695312 372.738281 77.726562 371.707031 77.726562 370.433594 Z M 77.726562 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.238281 370.433594 C 82.238281 369.160156 81.207031 368.128906 79.933594 368.128906 C 78.660156 368.128906 77.628906 369.160156 77.628906 370.433594 C 77.628906 371.707031 78.660156 372.738281 79.933594 372.738281 C 81.207031 372.738281 82.238281 371.707031 82.238281 370.433594 Z M 82.238281 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.8125 370.433594 C 87.8125 369.160156 86.78125 368.128906 85.507812 368.128906 C 84.234375 368.128906 83.203125 369.160156 83.203125 370.433594 C 83.203125 371.707031 84.234375 372.738281 85.507812 372.738281 C 86.78125 372.738281 87.8125 371.707031 87.8125 370.433594 Z M 87.8125 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.339844 370.433594 C 82.339844 369.160156 81.308594 368.128906 80.035156 368.128906 C 78.761719 368.128906 77.730469 369.160156 77.730469 370.433594 C 77.730469 371.707031 78.761719 372.738281 80.035156 372.738281 C 81.308594 372.738281 82.339844 371.707031 82.339844 370.433594 Z M 82.339844 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.828125 370.433594 C 78.828125 369.160156 77.796875 368.128906 76.523438 368.128906 C 75.25 368.128906 74.21875 369.160156 74.21875 370.433594 C 74.21875 371.707031 75.25 372.738281 76.523438 372.738281 C 77.796875 372.738281 78.828125 371.707031 78.828125 370.433594 Z M 78.828125 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.691406 370.433594 C 84.691406 369.160156 83.660156 368.128906 82.386719 368.128906 C 81.113281 368.128906 80.082031 369.160156 80.082031 370.433594 C 80.082031 371.707031 81.113281 372.738281 82.386719 372.738281 C 83.660156 372.738281 84.691406 371.707031 84.691406 370.433594 Z M 84.691406 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.570312 370.433594 C 84.570312 369.160156 83.539062 368.128906 82.265625 368.128906 C 80.992188 368.128906 79.960938 369.160156 79.960938 370.433594 C 79.960938 371.707031 80.992188 372.738281 82.265625 372.738281 C 83.539062 372.738281 84.570312 371.707031 84.570312 370.433594 Z M 84.570312 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.347656 370.433594 C 77.347656 369.160156 76.316406 368.128906 75.042969 368.128906 C 73.769531 368.128906 72.738281 369.160156 72.738281 370.433594 C 72.738281 371.707031 73.769531 372.738281 75.042969 372.738281 C 76.316406 372.738281 77.347656 371.707031 77.347656 370.433594 Z M 77.347656 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.296875 370.433594 C 80.296875 369.160156 79.265625 368.128906 77.992188 368.128906 C 76.71875 368.128906 75.6875 369.160156 75.6875 370.433594 C 75.6875 371.707031 76.71875 372.738281 77.992188 372.738281 C 79.265625 372.738281 80.296875 371.707031 80.296875 370.433594 Z M 80.296875 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.945312 370.433594 C 84.945312 369.160156 83.914062 368.128906 82.640625 368.128906 C 81.367188 368.128906 80.335938 369.160156 80.335938 370.433594 C 80.335938 371.707031 81.367188 372.738281 82.640625 372.738281 C 83.914062 372.738281 84.945312 371.707031 84.945312 370.433594 Z M 84.945312 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.925781 370.433594 C 82.925781 369.160156 81.894531 368.128906 80.621094 368.128906 C 79.347656 368.128906 78.316406 369.160156 78.316406 370.433594 C 78.316406 371.707031 79.347656 372.738281 80.621094 372.738281 C 81.894531 372.738281 82.925781 371.707031 82.925781 370.433594 Z M 82.925781 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.832031 370.433594 C 80.832031 369.160156 79.800781 368.128906 78.527344 368.128906 C 77.253906 368.128906 76.222656 369.160156 76.222656 370.433594 C 76.222656 371.707031 77.253906 372.738281 78.527344 372.738281 C 79.800781 372.738281 80.832031 371.707031 80.832031 370.433594 Z M 80.832031 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.925781 370.433594 C 87.925781 369.160156 86.894531 368.128906 85.621094 368.128906 C 84.347656 368.128906 83.316406 369.160156 83.316406 370.433594 C 83.316406 371.707031 84.347656 372.738281 85.621094 372.738281 C 86.894531 372.738281 87.925781 371.707031 87.925781 370.433594 Z M 87.925781 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.003906 370.433594 C 82.003906 369.160156 80.972656 368.128906 79.699219 368.128906 C 78.425781 368.128906 77.394531 369.160156 77.394531 370.433594 C 77.394531 371.707031 78.425781 372.738281 79.699219 372.738281 C 80.972656 372.738281 82.003906 371.707031 82.003906 370.433594 Z M 82.003906 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.679688 370.433594 C 83.679688 369.160156 82.648438 368.128906 81.375 368.128906 C 80.101562 368.128906 79.070312 369.160156 79.070312 370.433594 C 79.070312 371.707031 80.101562 372.738281 81.375 372.738281 C 82.648438 372.738281 83.679688 371.707031 83.679688 370.433594 Z M 83.679688 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.703125 370.433594 C 86.703125 369.160156 85.671875 368.128906 84.398438 368.128906 C 83.125 368.128906 82.09375 369.160156 82.09375 370.433594 C 82.09375 371.707031 83.125 372.738281 84.398438 372.738281 C 85.671875 372.738281 86.703125 371.707031 86.703125 370.433594 Z M 86.703125 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.320312 370.433594 C 78.320312 369.160156 77.289062 368.128906 76.015625 368.128906 C 74.742188 368.128906 73.710938 369.160156 73.710938 370.433594 C 73.710938 371.707031 74.742188 372.738281 76.015625 372.738281 C 77.289062 372.738281 78.320312 371.707031 78.320312 370.433594 Z M 78.320312 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.554688 370.433594 C 80.554688 369.160156 79.523438 368.128906 78.25 368.128906 C 76.976562 368.128906 75.945312 369.160156 75.945312 370.433594 C 75.945312 371.707031 76.976562 372.738281 78.25 372.738281 C 79.523438 372.738281 80.554688 371.707031 80.554688 370.433594 Z M 80.554688 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.449219 370.433594 C 87.449219 369.160156 86.417969 368.128906 85.144531 368.128906 C 83.871094 368.128906 82.839844 369.160156 82.839844 370.433594 C 82.839844 371.707031 83.871094 372.738281 85.144531 372.738281 C 86.417969 372.738281 87.449219 371.707031 87.449219 370.433594 Z M 87.449219 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.75 370.433594 C 85.75 369.160156 84.71875 368.128906 83.445312 368.128906 C 82.171875 368.128906 81.140625 369.160156 81.140625 370.433594 C 81.140625 371.707031 82.171875 372.738281 83.445312 372.738281 C 84.71875 372.738281 85.75 371.707031 85.75 370.433594 Z M 85.75 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.136719 370.433594 C 82.136719 369.160156 81.105469 368.128906 79.832031 368.128906 C 78.558594 368.128906 77.527344 369.160156 77.527344 370.433594 C 77.527344 371.707031 78.558594 372.738281 79.832031 372.738281 C 81.105469 372.738281 82.136719 371.707031 82.136719 370.433594 Z M 82.136719 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.894531 370.433594 C 87.894531 369.160156 86.863281 368.128906 85.589844 368.128906 C 84.316406 368.128906 83.285156 369.160156 83.285156 370.433594 C 83.285156 371.707031 84.316406 372.738281 85.589844 372.738281 C 86.863281 372.738281 87.894531 371.707031 87.894531 370.433594 Z M 87.894531 370.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.683594 365.589844 C 78.683594 364.316406 77.652344 363.285156 76.378906 363.285156 C 75.105469 363.285156 74.074219 364.316406 74.074219 365.589844 C 74.074219 366.863281 75.105469 367.894531 76.378906 367.894531 C 77.652344 367.894531 78.683594 366.863281 78.683594 365.589844 Z M 78.683594 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.320312 365.589844 C 90.320312 364.316406 89.289062 363.285156 88.015625 363.285156 C 86.742188 363.285156 85.710938 364.316406 85.710938 365.589844 C 85.710938 366.863281 86.742188 367.894531 88.015625 367.894531 C 89.289062 367.894531 90.320312 366.863281 90.320312 365.589844 Z M 90.320312 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.214844 365.589844 C 83.214844 364.316406 82.183594 363.285156 80.910156 363.285156 C 79.636719 363.285156 78.605469 364.316406 78.605469 365.589844 C 78.605469 366.863281 79.636719 367.894531 80.910156 367.894531 C 82.183594 367.894531 83.214844 366.863281 83.214844 365.589844 Z M 83.214844 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 89.644531 365.589844 C 89.644531 364.316406 88.613281 363.285156 87.339844 363.285156 C 86.066406 363.285156 85.035156 364.316406 85.035156 365.589844 C 85.035156 366.863281 86.066406 367.894531 87.339844 367.894531 C 88.613281 367.894531 89.644531 366.863281 89.644531 365.589844 Z M 89.644531 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.582031 365.589844 C 87.582031 364.316406 86.550781 363.285156 85.277344 363.285156 C 84.003906 363.285156 82.972656 364.316406 82.972656 365.589844 C 82.972656 366.863281 84.003906 367.894531 85.277344 367.894531 C 86.550781 367.894531 87.582031 366.863281 87.582031 365.589844 Z M 87.582031 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.636719 365.589844 C 84.636719 364.316406 83.605469 363.285156 82.332031 363.285156 C 81.058594 363.285156 80.027344 364.316406 80.027344 365.589844 C 80.027344 366.863281 81.058594 367.894531 82.332031 367.894531 C 83.605469 367.894531 84.636719 366.863281 84.636719 365.589844 Z M 84.636719 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.042969 365.589844 C 83.042969 364.316406 82.011719 363.285156 80.738281 363.285156 C 79.464844 363.285156 78.433594 364.316406 78.433594 365.589844 C 78.433594 366.863281 79.464844 367.894531 80.738281 367.894531 C 82.011719 367.894531 83.042969 366.863281 83.042969 365.589844 Z M 83.042969 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.34375 365.589844 C 88.34375 364.316406 87.3125 363.285156 86.039062 363.285156 C 84.765625 363.285156 83.734375 364.316406 83.734375 365.589844 C 83.734375 366.863281 84.765625 367.894531 86.039062 367.894531 C 87.3125 367.894531 88.34375 366.863281 88.34375 365.589844 Z M 88.34375 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.382812 365.589844 C 77.382812 364.316406 76.351562 363.285156 75.078125 363.285156 C 73.804688 363.285156 72.773438 364.316406 72.773438 365.589844 C 72.773438 366.863281 73.804688 367.894531 75.078125 367.894531 C 76.351562 367.894531 77.382812 366.863281 77.382812 365.589844 Z M 77.382812 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.605469 365.589844 C 83.605469 364.316406 82.574219 363.285156 81.300781 363.285156 C 80.027344 363.285156 78.996094 364.316406 78.996094 365.589844 C 78.996094 366.863281 80.027344 367.894531 81.300781 367.894531 C 82.574219 367.894531 83.605469 366.863281 83.605469 365.589844 Z M 83.605469 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.296875 365.589844 C 91.296875 364.316406 90.265625 363.285156 88.992188 363.285156 C 87.71875 363.285156 86.6875 364.316406 86.6875 365.589844 C 86.6875 366.863281 87.71875 367.894531 88.992188 367.894531 C 90.265625 367.894531 91.296875 366.863281 91.296875 365.589844 Z M 91.296875 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.746094 365.589844 C 83.746094 364.316406 82.714844 363.285156 81.441406 363.285156 C 80.167969 363.285156 79.136719 364.316406 79.136719 365.589844 C 79.136719 366.863281 80.167969 367.894531 81.441406 367.894531 C 82.714844 367.894531 83.746094 366.863281 83.746094 365.589844 Z M 83.746094 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.90625 365.589844 C 78.90625 364.316406 77.875 363.285156 76.601562 363.285156 C 75.328125 363.285156 74.296875 364.316406 74.296875 365.589844 C 74.296875 366.863281 75.328125 367.894531 76.601562 367.894531 C 77.875 367.894531 78.90625 366.863281 78.90625 365.589844 Z M 78.90625 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.992188 365.589844 C 86.992188 364.316406 85.960938 363.285156 84.6875 363.285156 C 83.414062 363.285156 82.382812 364.316406 82.382812 365.589844 C 82.382812 366.863281 83.414062 367.894531 84.6875 367.894531 C 85.960938 367.894531 86.992188 366.863281 86.992188 365.589844 Z M 86.992188 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.824219 365.589844 C 86.824219 364.316406 85.792969 363.285156 84.519531 363.285156 C 83.246094 363.285156 82.214844 364.316406 82.214844 365.589844 C 82.214844 366.863281 83.246094 367.894531 84.519531 367.894531 C 85.792969 367.894531 86.824219 366.863281 86.824219 365.589844 Z M 86.824219 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.859375 365.589844 C 76.859375 364.316406 75.828125 363.285156 74.554688 363.285156 C 73.28125 363.285156 72.25 364.316406 72.25 365.589844 C 72.25 366.863281 73.28125 367.894531 74.554688 367.894531 C 75.828125 367.894531 76.859375 366.863281 76.859375 365.589844 Z M 76.859375 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.929688 365.589844 C 80.929688 364.316406 79.898438 363.285156 78.625 363.285156 C 77.351562 363.285156 76.320312 364.316406 76.320312 365.589844 C 76.320312 366.863281 77.351562 367.894531 78.625 367.894531 C 79.898438 367.894531 80.929688 366.863281 80.929688 365.589844 Z M 80.929688 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.339844 365.589844 C 87.339844 364.316406 86.308594 363.285156 85.035156 363.285156 C 83.761719 363.285156 82.730469 364.316406 82.730469 365.589844 C 82.730469 366.863281 83.761719 367.894531 85.035156 367.894531 C 86.308594 367.894531 87.339844 366.863281 87.339844 365.589844 Z M 87.339844 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.554688 365.589844 C 84.554688 364.316406 83.523438 363.285156 82.25 363.285156 C 80.976562 363.285156 79.945312 364.316406 79.945312 365.589844 C 79.945312 366.863281 80.976562 367.894531 82.25 367.894531 C 83.523438 367.894531 84.554688 366.863281 84.554688 365.589844 Z M 84.554688 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.667969 365.589844 C 81.667969 364.316406 80.636719 363.285156 79.363281 363.285156 C 78.089844 363.285156 77.058594 364.316406 77.058594 365.589844 C 77.058594 366.863281 78.089844 367.894531 79.363281 367.894531 C 80.636719 367.894531 81.667969 366.863281 81.667969 365.589844 Z M 81.667969 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.453125 365.589844 C 91.453125 364.316406 90.421875 363.285156 89.148438 363.285156 C 87.875 363.285156 86.84375 364.316406 86.84375 365.589844 C 86.84375 366.863281 87.875 367.894531 89.148438 367.894531 C 90.421875 367.894531 91.453125 366.863281 91.453125 365.589844 Z M 91.453125 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.28125 365.589844 C 83.28125 364.316406 82.25 363.285156 80.976562 363.285156 C 79.703125 363.285156 78.671875 364.316406 78.671875 365.589844 C 78.671875 366.863281 79.703125 367.894531 80.976562 367.894531 C 82.25 367.894531 83.28125 366.863281 83.28125 365.589844 Z M 83.28125 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.597656 365.589844 C 85.597656 364.316406 84.566406 363.285156 83.292969 363.285156 C 82.019531 363.285156 80.988281 364.316406 80.988281 365.589844 C 80.988281 366.863281 82.019531 367.894531 83.292969 367.894531 C 84.566406 367.894531 85.597656 366.863281 85.597656 365.589844 Z M 85.597656 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 89.765625 365.589844 C 89.765625 364.316406 88.734375 363.285156 87.460938 363.285156 C 86.1875 363.285156 85.15625 364.316406 85.15625 365.589844 C 85.15625 366.863281 86.1875 367.894531 87.460938 367.894531 C 88.734375 367.894531 89.765625 366.863281 89.765625 365.589844 Z M 89.765625 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.199219 365.589844 C 78.199219 364.316406 77.167969 363.285156 75.894531 363.285156 C 74.621094 363.285156 73.589844 364.316406 73.589844 365.589844 C 73.589844 366.863281 74.621094 367.894531 75.894531 367.894531 C 77.167969 367.894531 78.199219 366.863281 78.199219 365.589844 Z M 78.199219 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.285156 365.589844 C 81.285156 364.316406 80.253906 363.285156 78.980469 363.285156 C 77.707031 363.285156 76.675781 364.316406 76.675781 365.589844 C 76.675781 366.863281 77.707031 367.894531 78.980469 367.894531 C 80.253906 367.894531 81.285156 366.863281 81.285156 365.589844 Z M 81.285156 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.796875 365.589844 C 90.796875 364.316406 89.765625 363.285156 88.492188 363.285156 C 87.21875 363.285156 86.1875 364.316406 86.1875 365.589844 C 86.1875 366.863281 87.21875 367.894531 88.492188 367.894531 C 89.765625 367.894531 90.796875 366.863281 90.796875 365.589844 Z M 90.796875 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.449219 365.589844 C 88.449219 364.316406 87.417969 363.285156 86.144531 363.285156 C 84.871094 363.285156 83.839844 364.316406 83.839844 365.589844 C 83.839844 366.863281 84.871094 367.894531 86.144531 367.894531 C 87.417969 367.894531 88.449219 366.863281 88.449219 365.589844 Z M 88.449219 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.46875 365.589844 C 83.46875 364.316406 82.4375 363.285156 81.164062 363.285156 C 79.890625 363.285156 78.859375 364.316406 78.859375 365.589844 C 78.859375 366.863281 79.890625 367.894531 81.164062 367.894531 C 82.4375 367.894531 83.46875 366.863281 83.46875 365.589844 Z M 83.46875 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.410156 365.589844 C 91.410156 364.316406 90.378906 363.285156 89.105469 363.285156 C 87.832031 363.285156 86.800781 364.316406 86.800781 365.589844 C 86.800781 366.863281 87.832031 367.894531 89.105469 367.894531 C 90.378906 367.894531 91.410156 366.863281 91.410156 365.589844 Z M 91.410156 365.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.457031 360.746094 C 78.457031 359.472656 77.425781 358.441406 76.152344 358.441406 C 74.878906 358.441406 73.847656 359.472656 73.847656 360.746094 C 73.847656 362.019531 74.878906 363.050781 76.152344 363.050781 C 77.425781 363.050781 78.457031 362.019531 78.457031 360.746094 Z M 78.457031 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.179688 360.746094 C 93.179688 359.472656 92.148438 358.441406 90.875 358.441406 C 89.601562 358.441406 88.570312 359.472656 88.570312 360.746094 C 88.570312 362.019531 89.601562 363.050781 90.875 363.050781 C 92.148438 363.050781 93.179688 362.019531 93.179688 360.746094 Z M 93.179688 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.1875 360.746094 C 84.1875 359.472656 83.15625 358.441406 81.882812 358.441406 C 80.609375 358.441406 79.578125 359.472656 79.578125 360.746094 C 79.578125 362.019531 80.609375 363.050781 81.882812 363.050781 C 83.15625 363.050781 84.1875 362.019531 84.1875 360.746094 Z M 84.1875 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.324219 360.746094 C 92.324219 359.472656 91.292969 358.441406 90.019531 358.441406 C 88.746094 358.441406 87.714844 359.472656 87.714844 360.746094 C 87.714844 362.019531 88.746094 363.050781 90.019531 363.050781 C 91.292969 363.050781 92.324219 362.019531 92.324219 360.746094 Z M 92.324219 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 89.710938 360.746094 C 89.710938 359.472656 88.679688 358.441406 87.40625 358.441406 C 86.132812 358.441406 85.101562 359.472656 85.101562 360.746094 C 85.101562 362.019531 86.132812 363.050781 87.40625 363.050781 C 88.679688 363.050781 89.710938 362.019531 89.710938 360.746094 Z M 89.710938 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.984375 360.746094 C 85.984375 359.472656 84.953125 358.441406 83.679688 358.441406 C 82.40625 358.441406 81.375 359.472656 81.375 360.746094 C 81.375 362.019531 82.40625 363.050781 83.679688 363.050781 C 84.953125 363.050781 85.984375 362.019531 85.984375 360.746094 Z M 85.984375 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.96875 360.746094 C 83.96875 359.472656 82.9375 358.441406 81.664062 358.441406 C 80.390625 358.441406 79.359375 359.472656 79.359375 360.746094 C 79.359375 362.019531 80.390625 363.050781 81.664062 363.050781 C 82.9375 363.050781 83.96875 362.019531 83.96875 360.746094 Z M 83.96875 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.679688 360.746094 C 90.679688 359.472656 89.648438 358.441406 88.375 358.441406 C 87.101562 358.441406 86.070312 359.472656 86.070312 360.746094 C 86.070312 362.019531 87.101562 363.050781 88.375 363.050781 C 89.648438 363.050781 90.679688 362.019531 90.679688 360.746094 Z M 90.679688 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.8125 360.746094 C 76.8125 359.472656 75.78125 358.441406 74.507812 358.441406 C 73.234375 358.441406 72.203125 359.472656 72.203125 360.746094 C 72.203125 362.019531 73.234375 363.050781 74.507812 363.050781 C 75.78125 363.050781 76.8125 362.019531 76.8125 360.746094 Z M 76.8125 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.683594 360.746094 C 84.683594 359.472656 83.652344 358.441406 82.378906 358.441406 C 81.105469 358.441406 80.074219 359.472656 80.074219 360.746094 C 80.074219 362.019531 81.105469 363.050781 82.378906 363.050781 C 83.652344 363.050781 84.683594 362.019531 84.683594 360.746094 Z M 84.683594 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.414062 360.746094 C 94.414062 359.472656 93.382812 358.441406 92.109375 358.441406 C 90.835938 358.441406 89.804688 359.472656 89.804688 360.746094 C 89.804688 362.019531 90.835938 363.050781 92.109375 363.050781 C 93.382812 363.050781 94.414062 362.019531 94.414062 360.746094 Z M 94.414062 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.863281 360.746094 C 84.863281 359.472656 83.832031 358.441406 82.558594 358.441406 C 81.285156 358.441406 80.253906 359.472656 80.253906 360.746094 C 80.253906 362.019531 81.285156 363.050781 82.558594 363.050781 C 83.832031 363.050781 84.863281 362.019531 84.863281 360.746094 Z M 84.863281 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.734375 360.746094 C 78.734375 359.472656 77.703125 358.441406 76.429688 358.441406 C 75.15625 358.441406 74.125 359.472656 74.125 360.746094 C 74.125 362.019531 75.15625 363.050781 76.429688 363.050781 C 77.703125 363.050781 78.734375 362.019531 78.734375 360.746094 Z M 78.734375 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.964844 360.746094 C 88.964844 359.472656 87.933594 358.441406 86.660156 358.441406 C 85.386719 358.441406 84.355469 359.472656 84.355469 360.746094 C 84.355469 362.019531 85.386719 363.050781 86.660156 363.050781 C 87.933594 363.050781 88.964844 362.019531 88.964844 360.746094 Z M 88.964844 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.757812 360.746094 C 88.757812 359.472656 87.726562 358.441406 86.453125 358.441406 C 85.179688 358.441406 84.148438 359.472656 84.148438 360.746094 C 84.148438 362.019531 85.179688 363.050781 86.453125 363.050781 C 87.726562 363.050781 88.757812 362.019531 88.757812 360.746094 Z M 88.757812 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.148438 360.746094 C 76.148438 359.472656 75.117188 358.441406 73.84375 358.441406 C 72.570312 358.441406 71.539062 359.472656 71.539062 360.746094 C 71.539062 362.019531 72.570312 363.050781 73.84375 363.050781 C 75.117188 363.050781 76.148438 362.019531 76.148438 360.746094 Z M 76.148438 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.296875 360.746094 C 81.296875 359.472656 80.265625 358.441406 78.992188 358.441406 C 77.71875 358.441406 76.6875 359.472656 76.6875 360.746094 C 76.6875 362.019531 77.71875 363.050781 78.992188 363.050781 C 80.265625 363.050781 81.296875 362.019531 81.296875 360.746094 Z M 81.296875 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 89.410156 360.746094 C 89.410156 359.472656 88.378906 358.441406 87.105469 358.441406 C 85.832031 358.441406 84.800781 359.472656 84.800781 360.746094 C 84.800781 362.019531 85.832031 363.050781 87.105469 363.050781 C 88.378906 363.050781 89.410156 362.019531 89.410156 360.746094 Z M 89.410156 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.882812 360.746094 C 85.882812 359.472656 84.851562 358.441406 83.578125 358.441406 C 82.304688 358.441406 81.273438 359.472656 81.273438 360.746094 C 81.273438 362.019531 82.304688 363.050781 83.578125 363.050781 C 84.851562 363.050781 85.882812 362.019531 85.882812 360.746094 Z M 85.882812 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.230469 360.746094 C 82.230469 359.472656 81.199219 358.441406 79.925781 358.441406 C 78.652344 358.441406 77.621094 359.472656 77.621094 360.746094 C 77.621094 362.019531 78.652344 363.050781 79.925781 363.050781 C 81.199219 363.050781 82.230469 362.019531 82.230469 360.746094 Z M 82.230469 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.613281 360.746094 C 94.613281 359.472656 93.582031 358.441406 92.308594 358.441406 C 91.035156 358.441406 90.003906 359.472656 90.003906 360.746094 C 90.003906 362.019531 91.035156 363.050781 92.308594 363.050781 C 93.582031 363.050781 94.613281 362.019531 94.613281 360.746094 Z M 94.613281 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.273438 360.746094 C 84.273438 359.472656 83.242188 358.441406 81.96875 358.441406 C 80.695312 358.441406 79.664062 359.472656 79.664062 360.746094 C 79.664062 362.019531 80.695312 363.050781 81.96875 363.050781 C 83.242188 363.050781 84.273438 362.019531 84.273438 360.746094 Z M 84.273438 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.203125 360.746094 C 87.203125 359.472656 86.171875 358.441406 84.898438 358.441406 C 83.625 358.441406 82.59375 359.472656 82.59375 360.746094 C 82.59375 362.019531 83.625 363.050781 84.898438 363.050781 C 86.171875 363.050781 87.203125 362.019531 87.203125 360.746094 Z M 87.203125 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.476562 360.746094 C 92.476562 359.472656 91.445312 358.441406 90.171875 358.441406 C 88.898438 358.441406 87.867188 359.472656 87.867188 360.746094 C 87.867188 362.019531 88.898438 363.050781 90.171875 363.050781 C 91.445312 363.050781 92.476562 362.019531 92.476562 360.746094 Z M 92.476562 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.84375 360.746094 C 77.84375 359.472656 76.8125 358.441406 75.539062 358.441406 C 74.265625 358.441406 73.234375 359.472656 73.234375 360.746094 C 73.234375 362.019531 74.265625 363.050781 75.539062 363.050781 C 76.8125 363.050781 77.84375 362.019531 77.84375 360.746094 Z M 77.84375 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.75 360.746094 C 81.75 359.472656 80.71875 358.441406 79.445312 358.441406 C 78.171875 358.441406 77.140625 359.472656 77.140625 360.746094 C 77.140625 362.019531 78.171875 363.050781 79.445312 363.050781 C 80.71875 363.050781 81.75 362.019531 81.75 360.746094 Z M 81.75 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.777344 360.746094 C 93.777344 359.472656 92.746094 358.441406 91.472656 358.441406 C 90.199219 358.441406 89.167969 359.472656 89.167969 360.746094 C 89.167969 362.019531 90.199219 363.050781 91.472656 363.050781 C 92.746094 363.050781 93.777344 362.019531 93.777344 360.746094 Z M 93.777344 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.8125 360.746094 C 90.8125 359.472656 89.78125 358.441406 88.507812 358.441406 C 87.234375 358.441406 86.203125 359.472656 86.203125 360.746094 C 86.203125 362.019531 87.234375 363.050781 88.507812 363.050781 C 89.78125 363.050781 90.8125 362.019531 90.8125 360.746094 Z M 90.8125 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.511719 360.746094 C 84.511719 359.472656 83.480469 358.441406 82.207031 358.441406 C 80.933594 358.441406 79.902344 359.472656 79.902344 360.746094 C 79.902344 362.019531 80.933594 363.050781 82.207031 363.050781 C 83.480469 363.050781 84.511719 362.019531 84.511719 360.746094 Z M 84.511719 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.558594 360.746094 C 94.558594 359.472656 93.527344 358.441406 92.253906 358.441406 C 90.980469 358.441406 89.949219 359.472656 89.949219 360.746094 C 89.949219 362.019531 90.980469 363.050781 92.253906 363.050781 C 93.527344 363.050781 94.558594 362.019531 94.558594 360.746094 Z M 94.558594 360.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.992188 355.902344 C 77.992188 354.628906 76.960938 353.597656 75.6875 353.597656 C 74.414062 353.597656 73.382812 354.628906 73.382812 355.902344 C 73.382812 357.175781 74.414062 358.207031 75.6875 358.207031 C 76.960938 358.207031 77.992188 357.175781 77.992188 355.902344 Z M 77.992188 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 95.652344 355.902344 C 95.652344 354.628906 94.621094 353.597656 93.347656 353.597656 C 92.074219 353.597656 91.042969 354.628906 91.042969 355.902344 C 91.042969 357.175781 92.074219 358.207031 93.347656 358.207031 C 94.621094 358.207031 95.652344 357.175781 95.652344 355.902344 Z M 95.652344 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.863281 355.902344 C 84.863281 354.628906 83.832031 353.597656 82.558594 353.597656 C 81.285156 353.597656 80.253906 354.628906 80.253906 355.902344 C 80.253906 357.175781 81.285156 358.207031 82.558594 358.207031 C 83.832031 358.207031 84.863281 357.175781 84.863281 355.902344 Z M 84.863281 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.625 355.902344 C 94.625 354.628906 93.59375 353.597656 92.320312 353.597656 C 91.046875 353.597656 90.015625 354.628906 90.015625 355.902344 C 90.015625 357.175781 91.046875 358.207031 92.320312 358.207031 C 93.59375 358.207031 94.625 357.175781 94.625 355.902344 Z M 94.625 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.492188 355.902344 C 91.492188 354.628906 90.460938 353.597656 89.1875 353.597656 C 87.914062 353.597656 86.882812 354.628906 86.882812 355.902344 C 86.882812 357.175781 87.914062 358.207031 89.1875 358.207031 C 90.460938 358.207031 91.492188 357.175781 91.492188 355.902344 Z M 91.492188 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.019531 355.902344 C 87.019531 354.628906 85.988281 353.597656 84.714844 353.597656 C 83.441406 353.597656 82.410156 354.628906 82.410156 355.902344 C 82.410156 357.175781 83.441406 358.207031 84.714844 358.207031 C 85.988281 358.207031 87.019531 357.175781 87.019531 355.902344 Z M 87.019531 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.601562 355.902344 C 84.601562 354.628906 83.570312 353.597656 82.296875 353.597656 C 81.023438 353.597656 79.992188 354.628906 79.992188 355.902344 C 79.992188 357.175781 81.023438 358.207031 82.296875 358.207031 C 83.570312 358.207031 84.601562 357.175781 84.601562 355.902344 Z M 84.601562 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.652344 355.902344 C 92.652344 354.628906 91.621094 353.597656 90.347656 353.597656 C 89.074219 353.597656 88.042969 354.628906 88.042969 355.902344 C 88.042969 357.175781 89.074219 358.207031 90.347656 358.207031 C 91.621094 358.207031 92.652344 357.175781 92.652344 355.902344 Z M 92.652344 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.015625 355.902344 C 76.015625 354.628906 74.984375 353.597656 73.710938 353.597656 C 72.4375 353.597656 71.40625 354.628906 71.40625 355.902344 C 71.40625 357.175781 72.4375 358.207031 73.710938 358.207031 C 74.984375 358.207031 76.015625 357.175781 76.015625 355.902344 Z M 76.015625 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.457031 355.902344 C 85.457031 354.628906 84.425781 353.597656 83.152344 353.597656 C 81.878906 353.597656 80.847656 354.628906 80.847656 355.902344 C 80.847656 357.175781 81.878906 358.207031 83.152344 358.207031 C 84.425781 358.207031 85.457031 357.175781 85.457031 355.902344 Z M 85.457031 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 97.132812 355.902344 C 97.132812 354.628906 96.101562 353.597656 94.828125 353.597656 C 93.554688 353.597656 92.523438 354.628906 92.523438 355.902344 C 92.523438 357.175781 93.554688 358.207031 94.828125 358.207031 C 96.101562 358.207031 97.132812 357.175781 97.132812 355.902344 Z M 97.132812 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.671875 355.902344 C 85.671875 354.628906 84.640625 353.597656 83.367188 353.597656 C 82.09375 353.597656 81.0625 354.628906 81.0625 355.902344 C 81.0625 357.175781 82.09375 358.207031 83.367188 358.207031 C 84.640625 358.207031 85.671875 357.175781 85.671875 355.902344 Z M 85.671875 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.324219 355.902344 C 78.324219 354.628906 77.292969 353.597656 76.019531 353.597656 C 74.746094 353.597656 73.714844 354.628906 73.714844 355.902344 C 73.714844 357.175781 74.746094 358.207031 76.019531 358.207031 C 77.292969 358.207031 78.324219 357.175781 78.324219 355.902344 Z M 78.324219 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.597656 355.902344 C 90.597656 354.628906 89.566406 353.597656 88.292969 353.597656 C 87.019531 353.597656 85.988281 354.628906 85.988281 355.902344 C 85.988281 357.175781 87.019531 358.207031 88.292969 358.207031 C 89.566406 358.207031 90.597656 357.175781 90.597656 355.902344 Z M 90.597656 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.34375 355.902344 C 90.34375 354.628906 89.3125 353.597656 88.039062 353.597656 C 86.765625 353.597656 85.734375 354.628906 85.734375 355.902344 C 85.734375 357.175781 86.765625 358.207031 88.039062 358.207031 C 89.3125 358.207031 90.34375 357.175781 90.34375 355.902344 Z M 90.34375 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.222656 355.902344 C 75.222656 354.628906 74.191406 353.597656 72.917969 353.597656 C 71.644531 353.597656 70.613281 354.628906 70.613281 355.902344 C 70.613281 357.175781 71.644531 358.207031 72.917969 358.207031 C 74.191406 358.207031 75.222656 357.175781 75.222656 355.902344 Z M 75.222656 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.394531 355.902344 C 81.394531 354.628906 80.363281 353.597656 79.089844 353.597656 C 77.816406 353.597656 76.785156 354.628906 76.785156 355.902344 C 76.785156 357.175781 77.816406 358.207031 79.089844 358.207031 C 80.363281 358.207031 81.394531 357.175781 81.394531 355.902344 Z M 81.394531 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.128906 355.902344 C 91.128906 354.628906 90.097656 353.597656 88.824219 353.597656 C 87.550781 353.597656 86.519531 354.628906 86.519531 355.902344 C 86.519531 357.175781 87.550781 358.207031 88.824219 358.207031 C 90.097656 358.207031 91.128906 357.175781 91.128906 355.902344 Z M 91.128906 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.898438 355.902344 C 86.898438 354.628906 85.867188 353.597656 84.59375 353.597656 C 83.320312 353.597656 82.289062 354.628906 82.289062 355.902344 C 82.289062 357.175781 83.320312 358.207031 84.59375 358.207031 C 85.867188 358.207031 86.898438 357.175781 86.898438 355.902344 Z M 86.898438 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.519531 355.902344 C 82.519531 354.628906 81.488281 353.597656 80.214844 353.597656 C 78.941406 353.597656 77.910156 354.628906 77.910156 355.902344 C 77.910156 357.175781 78.941406 358.207031 80.214844 358.207031 C 81.488281 358.207031 82.519531 357.175781 82.519531 355.902344 Z M 82.519531 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 97.371094 355.902344 C 97.371094 354.628906 96.339844 353.597656 95.066406 353.597656 C 93.792969 353.597656 92.761719 354.628906 92.761719 355.902344 C 92.761719 357.175781 93.792969 358.207031 95.066406 358.207031 C 96.339844 358.207031 97.371094 357.175781 97.371094 355.902344 Z M 97.371094 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.96875 355.902344 C 84.96875 354.628906 83.9375 353.597656 82.664062 353.597656 C 81.390625 353.597656 80.359375 354.628906 80.359375 355.902344 C 80.359375 357.175781 81.390625 358.207031 82.664062 358.207031 C 83.9375 358.207031 84.96875 357.175781 84.96875 355.902344 Z M 84.96875 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.484375 355.902344 C 88.484375 354.628906 87.453125 353.597656 86.179688 353.597656 C 84.90625 353.597656 83.875 354.628906 83.875 355.902344 C 83.875 357.175781 84.90625 358.207031 86.179688 358.207031 C 87.453125 358.207031 88.484375 357.175781 88.484375 355.902344 Z M 88.484375 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.808594 355.902344 C 94.808594 354.628906 93.777344 353.597656 92.503906 353.597656 C 91.230469 353.597656 90.199219 354.628906 90.199219 355.902344 C 90.199219 357.175781 91.230469 358.207031 92.503906 358.207031 C 93.777344 358.207031 94.808594 357.175781 94.808594 355.902344 Z M 94.808594 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.253906 355.902344 C 77.253906 354.628906 76.222656 353.597656 74.949219 353.597656 C 73.675781 353.597656 72.644531 354.628906 72.644531 355.902344 C 72.644531 357.175781 73.675781 358.207031 74.949219 358.207031 C 76.222656 358.207031 77.253906 357.175781 77.253906 355.902344 Z M 77.253906 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.941406 355.902344 C 81.941406 354.628906 80.910156 353.597656 79.636719 353.597656 C 78.363281 353.597656 77.332031 354.628906 77.332031 355.902344 C 77.332031 357.175781 78.363281 358.207031 79.636719 358.207031 C 80.910156 358.207031 81.941406 357.175781 81.941406 355.902344 Z M 81.941406 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.371094 355.902344 C 96.371094 354.628906 95.339844 353.597656 94.066406 353.597656 C 92.792969 353.597656 91.761719 354.628906 91.761719 355.902344 C 91.761719 357.175781 92.792969 358.207031 94.066406 358.207031 C 95.339844 358.207031 96.371094 357.175781 96.371094 355.902344 Z M 96.371094 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.8125 355.902344 C 92.8125 354.628906 91.78125 353.597656 90.507812 353.597656 C 89.234375 353.597656 88.203125 354.628906 88.203125 355.902344 C 88.203125 357.175781 89.234375 358.207031 90.507812 358.207031 C 91.78125 358.207031 92.8125 357.175781 92.8125 355.902344 Z M 92.8125 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.25 355.902344 C 85.25 354.628906 84.21875 353.597656 82.945312 353.597656 C 81.671875 353.597656 80.640625 354.628906 80.640625 355.902344 C 80.640625 357.175781 81.671875 358.207031 82.945312 358.207031 C 84.21875 358.207031 85.25 357.175781 85.25 355.902344 Z M 85.25 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 97.304688 355.902344 C 97.304688 354.628906 96.273438 353.597656 95 353.597656 C 93.726562 353.597656 92.695312 354.628906 92.695312 355.902344 C 92.695312 357.175781 93.726562 358.207031 95 358.207031 C 96.273438 358.207031 97.304688 357.175781 97.304688 355.902344 Z M 97.304688 355.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.289062 351.058594 C 77.289062 349.785156 76.257812 348.753906 74.984375 348.753906 C 73.710938 348.753906 72.679688 349.785156 72.679688 351.058594 C 72.679688 352.332031 73.710938 353.363281 74.984375 353.363281 C 76.257812 353.363281 77.289062 352.332031 77.289062 351.058594 Z M 77.289062 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 97.710938 351.058594 C 97.710938 349.785156 96.679688 348.753906 95.40625 348.753906 C 94.132812 348.753906 93.101562 349.785156 93.101562 351.058594 C 93.101562 352.332031 94.132812 353.363281 95.40625 353.363281 C 96.679688 353.363281 97.710938 352.332031 97.710938 351.058594 Z M 97.710938 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.238281 351.058594 C 85.238281 349.785156 84.207031 348.753906 82.933594 348.753906 C 81.660156 348.753906 80.628906 349.785156 80.628906 351.058594 C 80.628906 352.332031 81.660156 353.363281 82.933594 353.363281 C 84.207031 353.363281 85.238281 352.332031 85.238281 351.058594 Z M 85.238281 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.523438 351.058594 C 96.523438 349.785156 95.492188 348.753906 94.21875 348.753906 C 92.945312 348.753906 91.914062 349.785156 91.914062 351.058594 C 91.914062 352.332031 92.945312 353.363281 94.21875 353.363281 C 95.492188 353.363281 96.523438 352.332031 96.523438 351.058594 Z M 96.523438 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.902344 351.058594 C 92.902344 349.785156 91.871094 348.753906 90.597656 348.753906 C 89.324219 348.753906 88.292969 349.785156 88.292969 351.058594 C 88.292969 352.332031 89.324219 353.363281 90.597656 353.363281 C 91.871094 353.363281 92.902344 352.332031 92.902344 351.058594 Z M 92.902344 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.730469 351.058594 C 87.730469 349.785156 86.699219 348.753906 85.425781 348.753906 C 84.152344 348.753906 83.121094 349.785156 83.121094 351.058594 C 83.121094 352.332031 84.152344 353.363281 85.425781 353.363281 C 86.699219 353.363281 87.730469 352.332031 87.730469 351.058594 Z M 87.730469 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.933594 351.058594 C 84.933594 349.785156 83.902344 348.753906 82.628906 348.753906 C 81.355469 348.753906 80.324219 349.785156 80.324219 351.058594 C 80.324219 352.332031 81.355469 353.363281 82.628906 353.363281 C 83.902344 353.363281 84.933594 352.332031 84.933594 351.058594 Z M 84.933594 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.242188 351.058594 C 94.242188 349.785156 93.210938 348.753906 91.9375 348.753906 C 90.664062 348.753906 89.632812 349.785156 89.632812 351.058594 C 89.632812 352.332031 90.664062 353.363281 91.9375 353.363281 C 93.210938 353.363281 94.242188 352.332031 94.242188 351.058594 Z M 94.242188 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.007812 351.058594 C 75.007812 349.785156 73.976562 348.753906 72.703125 348.753906 C 71.429688 348.753906 70.398438 349.785156 70.398438 351.058594 C 70.398438 352.332031 71.429688 353.363281 72.703125 353.363281 C 73.976562 353.363281 75.007812 352.332031 75.007812 351.058594 Z M 75.007812 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.921875 351.058594 C 85.921875 349.785156 84.890625 348.753906 83.617188 348.753906 C 82.34375 348.753906 81.3125 349.785156 81.3125 351.058594 C 81.3125 352.332031 82.34375 353.363281 83.617188 353.363281 C 84.890625 353.363281 85.921875 352.332031 85.921875 351.058594 Z M 85.921875 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.425781 351.058594 C 99.425781 349.785156 98.394531 348.753906 97.121094 348.753906 C 95.847656 348.753906 94.816406 349.785156 94.816406 351.058594 C 94.816406 352.332031 95.847656 353.363281 97.121094 353.363281 C 98.394531 353.363281 99.425781 352.332031 99.425781 351.058594 Z M 99.425781 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.171875 351.058594 C 86.171875 349.785156 85.140625 348.753906 83.867188 348.753906 C 82.59375 348.753906 81.5625 349.785156 81.5625 351.058594 C 81.5625 352.332031 82.59375 353.363281 83.867188 353.363281 C 85.140625 353.363281 86.171875 352.332031 86.171875 351.058594 Z M 86.171875 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.675781 351.058594 C 77.675781 349.785156 76.644531 348.753906 75.371094 348.753906 C 74.097656 348.753906 73.066406 349.785156 73.066406 351.058594 C 73.066406 352.332031 74.097656 353.363281 75.371094 353.363281 C 76.644531 353.363281 77.675781 352.332031 77.675781 351.058594 Z M 77.675781 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.867188 351.058594 C 91.867188 349.785156 90.835938 348.753906 89.5625 348.753906 C 88.289062 348.753906 87.257812 349.785156 87.257812 351.058594 C 87.257812 352.332031 88.289062 353.363281 89.5625 353.363281 C 90.835938 353.363281 91.867188 352.332031 91.867188 351.058594 Z M 91.867188 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.574219 351.058594 C 91.574219 349.785156 90.542969 348.753906 89.269531 348.753906 C 87.996094 348.753906 86.964844 349.785156 86.964844 351.058594 C 86.964844 352.332031 87.996094 353.363281 89.269531 353.363281 C 90.542969 353.363281 91.574219 352.332031 91.574219 351.058594 Z M 91.574219 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.085938 351.058594 C 74.085938 349.785156 73.054688 348.753906 71.78125 348.753906 C 70.507812 348.753906 69.476562 349.785156 69.476562 351.058594 C 69.476562 352.332031 70.507812 353.363281 71.78125 353.363281 C 73.054688 353.363281 74.085938 352.332031 74.085938 351.058594 Z M 74.085938 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.226562 351.058594 C 81.226562 349.785156 80.195312 348.753906 78.921875 348.753906 C 77.648438 348.753906 76.617188 349.785156 76.617188 351.058594 C 76.617188 352.332031 77.648438 353.363281 78.921875 353.363281 C 80.195312 353.363281 81.226562 352.332031 81.226562 351.058594 Z M 81.226562 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.480469 351.058594 C 92.480469 349.785156 91.449219 348.753906 90.175781 348.753906 C 88.902344 348.753906 87.871094 349.785156 87.871094 351.058594 C 87.871094 352.332031 88.902344 353.363281 90.175781 353.363281 C 91.449219 353.363281 92.480469 352.332031 92.480469 351.058594 Z M 92.480469 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.589844 351.058594 C 87.589844 349.785156 86.558594 348.753906 85.285156 348.753906 C 84.011719 348.753906 82.980469 349.785156 82.980469 351.058594 C 82.980469 352.332031 84.011719 353.363281 85.285156 353.363281 C 86.558594 353.363281 87.589844 352.332031 87.589844 351.058594 Z M 87.589844 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.523438 351.058594 C 82.523438 349.785156 81.492188 348.753906 80.21875 348.753906 C 78.945312 348.753906 77.914062 349.785156 77.914062 351.058594 C 77.914062 352.332031 78.945312 353.363281 80.21875 353.363281 C 81.492188 353.363281 82.523438 352.332031 82.523438 351.058594 Z M 82.523438 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.699219 351.058594 C 99.699219 349.785156 98.667969 348.753906 97.394531 348.753906 C 96.121094 348.753906 95.089844 349.785156 95.089844 351.058594 C 95.089844 352.332031 96.121094 353.363281 97.394531 353.363281 C 98.667969 353.363281 99.699219 352.332031 99.699219 351.058594 Z M 99.699219 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.355469 351.058594 C 85.355469 349.785156 84.324219 348.753906 83.050781 348.753906 C 81.777344 348.753906 80.746094 349.785156 80.746094 351.058594 C 80.746094 352.332031 81.777344 353.363281 83.050781 353.363281 C 84.324219 353.363281 85.355469 352.332031 85.355469 351.058594 Z M 85.355469 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 89.421875 351.058594 C 89.421875 349.785156 88.390625 348.753906 87.117188 348.753906 C 85.84375 348.753906 84.8125 349.785156 84.8125 351.058594 C 84.8125 352.332031 85.84375 353.363281 87.117188 353.363281 C 88.390625 353.363281 89.421875 352.332031 89.421875 351.058594 Z M 89.421875 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.734375 351.058594 C 96.734375 349.785156 95.703125 348.753906 94.429688 348.753906 C 93.15625 348.753906 92.125 349.785156 92.125 351.058594 C 92.125 352.332031 93.15625 353.363281 94.429688 353.363281 C 95.703125 353.363281 96.734375 352.332031 96.734375 351.058594 Z M 96.734375 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.4375 351.058594 C 76.4375 349.785156 75.40625 348.753906 74.132812 348.753906 C 72.859375 348.753906 71.828125 349.785156 71.828125 351.058594 C 71.828125 352.332031 72.859375 353.363281 74.132812 353.363281 C 75.40625 353.363281 76.4375 352.332031 76.4375 351.058594 Z M 76.4375 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.855469 351.058594 C 81.855469 349.785156 80.824219 348.753906 79.550781 348.753906 C 78.277344 348.753906 77.246094 349.785156 77.246094 351.058594 C 77.246094 352.332031 78.277344 353.363281 79.550781 353.363281 C 80.824219 353.363281 81.855469 352.332031 81.855469 351.058594 Z M 81.855469 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 98.542969 351.058594 C 98.542969 349.785156 97.511719 348.753906 96.238281 348.753906 C 94.964844 348.753906 93.933594 349.785156 93.933594 351.058594 C 93.933594 352.332031 94.964844 353.363281 96.238281 353.363281 C 97.511719 353.363281 98.542969 352.332031 98.542969 351.058594 Z M 98.542969 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.429688 351.058594 C 94.429688 349.785156 93.398438 348.753906 92.125 348.753906 C 90.851562 348.753906 89.820312 349.785156 89.820312 351.058594 C 89.820312 352.332031 90.851562 353.363281 92.125 353.363281 C 93.398438 353.363281 94.429688 352.332031 94.429688 351.058594 Z M 94.429688 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.683594 351.058594 C 85.683594 349.785156 84.652344 348.753906 83.378906 348.753906 C 82.105469 348.753906 81.074219 349.785156 81.074219 351.058594 C 81.074219 352.332031 82.105469 353.363281 83.378906 353.363281 C 84.652344 353.363281 85.683594 352.332031 85.683594 351.058594 Z M 85.683594 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.625 351.058594 C 99.625 349.785156 98.59375 348.753906 97.320312 348.753906 C 96.046875 348.753906 95.015625 349.785156 95.015625 351.058594 C 95.015625 352.332031 96.046875 353.363281 97.320312 353.363281 C 98.59375 353.363281 99.625 352.332031 99.625 351.058594 Z M 99.625 351.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.359375 346.214844 C 76.359375 344.941406 75.328125 343.910156 74.054688 343.910156 C 72.78125 343.910156 71.75 344.941406 71.75 346.214844 C 71.75 347.488281 72.78125 348.519531 74.054688 348.519531 C 75.328125 348.519531 76.359375 347.488281 76.359375 346.214844 Z M 76.359375 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.339844 346.214844 C 99.339844 344.941406 98.308594 343.910156 97.035156 343.910156 C 95.761719 343.910156 94.730469 344.941406 94.730469 346.214844 C 94.730469 347.488281 95.761719 348.519531 97.035156 348.519531 C 98.308594 348.519531 99.339844 347.488281 99.339844 346.214844 Z M 99.339844 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.304688 346.214844 C 85.304688 344.941406 84.273438 343.910156 83 343.910156 C 81.726562 343.910156 80.695312 344.941406 80.695312 346.214844 C 80.695312 347.488281 81.726562 348.519531 83 348.519531 C 84.273438 348.519531 85.304688 347.488281 85.304688 346.214844 Z M 85.304688 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 98.003906 346.214844 C 98.003906 344.941406 96.972656 343.910156 95.699219 343.910156 C 94.425781 343.910156 93.394531 344.941406 93.394531 346.214844 C 93.394531 347.488281 94.425781 348.519531 95.699219 348.519531 C 96.972656 348.519531 98.003906 347.488281 98.003906 346.214844 Z M 98.003906 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.925781 346.214844 C 93.925781 344.941406 92.894531 343.910156 91.621094 343.910156 C 90.347656 343.910156 89.316406 344.941406 89.316406 346.214844 C 89.316406 347.488281 90.347656 348.519531 91.621094 348.519531 C 92.894531 348.519531 93.925781 347.488281 93.925781 346.214844 Z M 93.925781 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.109375 346.214844 C 88.109375 344.941406 87.078125 343.910156 85.804688 343.910156 C 84.53125 343.910156 83.5 344.941406 83.5 346.214844 C 83.5 347.488281 84.53125 348.519531 85.804688 348.519531 C 87.078125 348.519531 88.109375 347.488281 88.109375 346.214844 Z M 88.109375 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.964844 346.214844 C 84.964844 344.941406 83.933594 343.910156 82.660156 343.910156 C 81.386719 343.910156 80.355469 344.941406 80.355469 346.214844 C 80.355469 347.488281 81.386719 348.519531 82.660156 348.519531 C 83.933594 348.519531 84.964844 347.488281 84.964844 346.214844 Z M 84.964844 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 95.4375 346.214844 C 95.4375 344.941406 94.40625 343.910156 93.132812 343.910156 C 91.859375 343.910156 90.828125 344.941406 90.828125 346.214844 C 90.828125 347.488281 91.859375 348.519531 93.132812 348.519531 C 94.40625 348.519531 95.4375 347.488281 95.4375 346.214844 Z M 95.4375 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.792969 346.214844 C 73.792969 344.941406 72.761719 343.910156 71.488281 343.910156 C 70.214844 343.910156 69.183594 344.941406 69.183594 346.214844 C 69.183594 347.488281 70.214844 348.519531 71.488281 348.519531 C 72.761719 348.519531 73.792969 347.488281 73.792969 346.214844 Z M 73.792969 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.074219 346.214844 C 86.074219 344.941406 85.042969 343.910156 83.769531 343.910156 C 82.496094 343.910156 81.464844 344.941406 81.464844 346.214844 C 81.464844 347.488281 82.496094 348.519531 83.769531 348.519531 C 85.042969 348.519531 86.074219 347.488281 86.074219 346.214844 Z M 86.074219 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 101.269531 346.214844 C 101.269531 344.941406 100.238281 343.910156 98.964844 343.910156 C 97.691406 343.910156 96.660156 344.941406 96.660156 346.214844 C 96.660156 347.488281 97.691406 348.519531 98.964844 348.519531 C 100.238281 348.519531 101.269531 347.488281 101.269531 346.214844 Z M 101.269531 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.355469 346.214844 C 86.355469 344.941406 85.324219 343.910156 84.050781 343.910156 C 82.777344 343.910156 81.746094 344.941406 81.746094 346.214844 C 81.746094 347.488281 82.777344 348.519531 84.050781 348.519531 C 85.324219 348.519531 86.355469 347.488281 86.355469 346.214844 Z M 86.355469 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.792969 346.214844 C 76.792969 344.941406 75.761719 343.910156 74.488281 343.910156 C 73.214844 343.910156 72.183594 344.941406 72.183594 346.214844 C 72.183594 347.488281 73.214844 348.519531 74.488281 348.519531 C 75.761719 348.519531 76.792969 347.488281 76.792969 346.214844 Z M 76.792969 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.765625 346.214844 C 92.765625 344.941406 91.734375 343.910156 90.460938 343.910156 C 89.1875 343.910156 88.15625 344.941406 88.15625 346.214844 C 88.15625 347.488281 89.1875 348.519531 90.460938 348.519531 C 91.734375 348.519531 92.765625 347.488281 92.765625 346.214844 Z M 92.765625 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.4375 346.214844 C 92.4375 344.941406 91.40625 343.910156 90.132812 343.910156 C 88.859375 343.910156 87.828125 344.941406 87.828125 346.214844 C 87.828125 347.488281 88.859375 348.519531 90.132812 348.519531 C 91.40625 348.519531 92.4375 347.488281 92.4375 346.214844 Z M 92.4375 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.757812 346.214844 C 72.757812 344.941406 71.726562 343.910156 70.453125 343.910156 C 69.179688 343.910156 68.148438 344.941406 68.148438 346.214844 C 68.148438 347.488281 69.179688 348.519531 70.453125 348.519531 C 71.726562 348.519531 72.757812 347.488281 72.757812 346.214844 Z M 72.757812 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.789062 346.214844 C 80.789062 344.941406 79.757812 343.910156 78.484375 343.910156 C 77.210938 343.910156 76.179688 344.941406 76.179688 346.214844 C 76.179688 347.488281 77.210938 348.519531 78.484375 348.519531 C 79.757812 348.519531 80.789062 347.488281 80.789062 346.214844 Z M 80.789062 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.453125 346.214844 C 93.453125 344.941406 92.421875 343.910156 91.148438 343.910156 C 89.875 343.910156 88.84375 344.941406 88.84375 346.214844 C 88.84375 347.488281 89.875 348.519531 91.148438 348.519531 C 92.421875 348.519531 93.453125 347.488281 93.453125 346.214844 Z M 93.453125 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.953125 346.214844 C 87.953125 344.941406 86.921875 343.910156 85.648438 343.910156 C 84.375 343.910156 83.34375 344.941406 83.34375 346.214844 C 83.34375 347.488281 84.375 348.519531 85.648438 348.519531 C 86.921875 348.519531 87.953125 347.488281 87.953125 346.214844 Z M 87.953125 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.25 346.214844 C 82.25 344.941406 81.21875 343.910156 79.945312 343.910156 C 78.671875 343.910156 77.640625 344.941406 77.640625 346.214844 C 77.640625 347.488281 78.671875 348.519531 79.945312 348.519531 C 81.21875 348.519531 82.25 347.488281 82.25 346.214844 Z M 82.25 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 101.574219 346.214844 C 101.574219 344.941406 100.542969 343.910156 99.269531 343.910156 C 97.996094 343.910156 96.964844 344.941406 96.964844 346.214844 C 96.964844 347.488281 97.996094 348.519531 99.269531 348.519531 C 100.542969 348.519531 101.574219 347.488281 101.574219 346.214844 Z M 101.574219 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.4375 346.214844 C 85.4375 344.941406 84.40625 343.910156 83.132812 343.910156 C 81.859375 343.910156 80.828125 344.941406 80.828125 346.214844 C 80.828125 347.488281 81.859375 348.519531 83.132812 348.519531 C 84.40625 348.519531 85.4375 347.488281 85.4375 346.214844 Z M 85.4375 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.011719 346.214844 C 90.011719 344.941406 88.980469 343.910156 87.707031 343.910156 C 86.433594 343.910156 85.402344 344.941406 85.402344 346.214844 C 85.402344 347.488281 86.433594 348.519531 87.707031 348.519531 C 88.980469 348.519531 90.011719 347.488281 90.011719 346.214844 Z M 90.011719 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 98.242188 346.214844 C 98.242188 344.941406 97.210938 343.910156 95.9375 343.910156 C 94.664062 343.910156 93.632812 344.941406 93.632812 346.214844 C 93.632812 347.488281 94.664062 348.519531 95.9375 348.519531 C 97.210938 348.519531 98.242188 347.488281 98.242188 346.214844 Z M 98.242188 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.402344 346.214844 C 75.402344 344.941406 74.371094 343.910156 73.097656 343.910156 C 71.824219 343.910156 70.792969 344.941406 70.792969 346.214844 C 70.792969 347.488281 71.824219 348.519531 73.097656 348.519531 C 74.371094 348.519531 75.402344 347.488281 75.402344 346.214844 Z M 75.402344 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.496094 346.214844 C 81.496094 344.941406 80.464844 343.910156 79.191406 343.910156 C 77.917969 343.910156 76.886719 344.941406 76.886719 346.214844 C 76.886719 347.488281 77.917969 348.519531 79.191406 348.519531 C 80.464844 348.519531 81.496094 347.488281 81.496094 346.214844 Z M 81.496094 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.277344 346.214844 C 100.277344 344.941406 99.246094 343.910156 97.972656 343.910156 C 96.699219 343.910156 95.667969 344.941406 95.667969 346.214844 C 95.667969 347.488281 96.699219 348.519531 97.972656 348.519531 C 99.246094 348.519531 100.277344 347.488281 100.277344 346.214844 Z M 100.277344 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 95.644531 346.214844 C 95.644531 344.941406 94.613281 343.910156 93.339844 343.910156 C 92.066406 343.910156 91.035156 344.941406 91.035156 346.214844 C 91.035156 347.488281 92.066406 348.519531 93.339844 348.519531 C 94.613281 348.519531 95.644531 347.488281 95.644531 346.214844 Z M 95.644531 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.808594 346.214844 C 85.808594 344.941406 84.777344 343.910156 83.503906 343.910156 C 82.230469 343.910156 81.199219 344.941406 81.199219 346.214844 C 81.199219 347.488281 82.230469 348.519531 83.503906 348.519531 C 84.777344 348.519531 85.808594 347.488281 85.808594 346.214844 Z M 85.808594 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 101.492188 346.214844 C 101.492188 344.941406 100.460938 343.910156 99.1875 343.910156 C 97.914062 343.910156 96.882812 344.941406 96.882812 346.214844 C 96.882812 347.488281 97.914062 348.519531 99.1875 348.519531 C 100.460938 348.519531 101.492188 347.488281 101.492188 346.214844 Z M 101.492188 346.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.210938 341.371094 C 75.210938 340.097656 74.179688 339.066406 72.90625 339.066406 C 71.632812 339.066406 70.601562 340.097656 70.601562 341.371094 C 70.601562 342.644531 71.632812 343.675781 72.90625 343.675781 C 74.179688 343.675781 75.210938 342.644531 75.210938 341.371094 Z M 75.210938 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.519531 341.371094 C 100.519531 340.097656 99.488281 339.066406 98.214844 339.066406 C 96.941406 339.066406 95.910156 340.097656 95.910156 341.371094 C 95.910156 342.644531 96.941406 343.675781 98.214844 343.675781 C 99.488281 343.675781 100.519531 342.644531 100.519531 341.371094 Z M 100.519531 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.0625 341.371094 C 85.0625 340.097656 84.03125 339.066406 82.757812 339.066406 C 81.484375 339.066406 80.453125 340.097656 80.453125 341.371094 C 80.453125 342.644531 81.484375 343.675781 82.757812 343.675781 C 84.03125 343.675781 85.0625 342.644531 85.0625 341.371094 Z M 85.0625 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.046875 341.371094 C 99.046875 340.097656 98.015625 339.066406 96.742188 339.066406 C 95.46875 339.066406 94.4375 340.097656 94.4375 341.371094 C 94.4375 342.644531 95.46875 343.675781 96.742188 343.675781 C 98.015625 343.675781 99.046875 342.644531 99.046875 341.371094 Z M 99.046875 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.558594 341.371094 C 94.558594 340.097656 93.527344 339.066406 92.253906 339.066406 C 90.980469 339.066406 89.949219 340.097656 89.949219 341.371094 C 89.949219 342.644531 90.980469 343.675781 92.253906 343.675781 C 93.527344 343.675781 94.558594 342.644531 94.558594 341.371094 Z M 94.558594 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.152344 341.371094 C 88.152344 340.097656 87.121094 339.066406 85.847656 339.066406 C 84.574219 339.066406 83.542969 340.097656 83.542969 341.371094 C 83.542969 342.644531 84.574219 343.675781 85.847656 343.675781 C 87.121094 343.675781 88.152344 342.644531 88.152344 341.371094 Z M 88.152344 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.6875 341.371094 C 84.6875 340.097656 83.65625 339.066406 82.382812 339.066406 C 81.109375 339.066406 80.078125 340.097656 80.078125 341.371094 C 80.078125 342.644531 81.109375 343.675781 82.382812 343.675781 C 83.65625 343.675781 84.6875 342.644531 84.6875 341.371094 Z M 84.6875 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.222656 341.371094 C 96.222656 340.097656 95.191406 339.066406 93.917969 339.066406 C 92.644531 339.066406 91.613281 340.097656 91.613281 341.371094 C 91.613281 342.644531 92.644531 343.675781 93.917969 343.675781 C 95.191406 343.675781 96.222656 342.644531 96.222656 341.371094 Z M 96.222656 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.382812 341.371094 C 72.382812 340.097656 71.351562 339.066406 70.078125 339.066406 C 68.804688 339.066406 67.773438 340.097656 67.773438 341.371094 C 67.773438 342.644531 68.804688 343.675781 70.078125 343.675781 C 71.351562 343.675781 72.382812 342.644531 72.382812 341.371094 Z M 72.382812 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.910156 341.371094 C 85.910156 340.097656 84.878906 339.066406 83.605469 339.066406 C 82.332031 339.066406 81.300781 340.097656 81.300781 341.371094 C 81.300781 342.644531 82.332031 343.675781 83.605469 343.675781 C 84.878906 343.675781 85.910156 342.644531 85.910156 341.371094 Z M 85.910156 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 102.644531 341.371094 C 102.644531 340.097656 101.613281 339.066406 100.339844 339.066406 C 99.066406 339.066406 98.035156 340.097656 98.035156 341.371094 C 98.035156 342.644531 99.066406 343.675781 100.339844 343.675781 C 101.613281 343.675781 102.644531 342.644531 102.644531 341.371094 Z M 102.644531 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.222656 341.371094 C 86.222656 340.097656 85.191406 339.066406 83.917969 339.066406 C 82.644531 339.066406 81.613281 340.097656 81.613281 341.371094 C 81.613281 342.644531 82.644531 343.675781 83.917969 343.675781 C 85.191406 343.675781 86.222656 342.644531 86.222656 341.371094 Z M 86.222656 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.691406 341.371094 C 75.691406 340.097656 74.660156 339.066406 73.386719 339.066406 C 72.113281 339.066406 71.082031 340.097656 71.082031 341.371094 C 71.082031 342.644531 72.113281 343.675781 73.386719 343.675781 C 74.660156 343.675781 75.691406 342.644531 75.691406 341.371094 Z M 75.691406 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.277344 341.371094 C 93.277344 340.097656 92.246094 339.066406 90.972656 339.066406 C 89.699219 339.066406 88.667969 340.097656 88.667969 341.371094 C 88.667969 342.644531 89.699219 343.675781 90.972656 343.675781 C 92.246094 343.675781 93.277344 342.644531 93.277344 341.371094 Z M 93.277344 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.917969 341.371094 C 92.917969 340.097656 91.886719 339.066406 90.613281 339.066406 C 89.339844 339.066406 88.308594 340.097656 88.308594 341.371094 C 88.308594 342.644531 89.339844 343.675781 90.613281 343.675781 C 91.886719 343.675781 92.917969 342.644531 92.917969 341.371094 Z M 92.917969 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.242188 341.371094 C 71.242188 340.097656 70.210938 339.066406 68.9375 339.066406 C 67.664062 339.066406 66.632812 340.097656 66.632812 341.371094 C 66.632812 342.644531 67.664062 343.675781 68.9375 343.675781 C 70.210938 343.675781 71.242188 342.644531 71.242188 341.371094 Z M 71.242188 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.089844 341.371094 C 80.089844 340.097656 79.058594 339.066406 77.785156 339.066406 C 76.511719 339.066406 75.480469 340.097656 75.480469 341.371094 C 75.480469 342.644531 76.511719 343.675781 77.785156 343.675781 C 79.058594 343.675781 80.089844 342.644531 80.089844 341.371094 Z M 80.089844 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.039062 341.371094 C 94.039062 340.097656 93.007812 339.066406 91.734375 339.066406 C 90.460938 339.066406 89.429688 340.097656 89.429688 341.371094 C 89.429688 342.644531 90.460938 343.675781 91.734375 343.675781 C 93.007812 343.675781 94.039062 342.644531 94.039062 341.371094 Z M 94.039062 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.976562 341.371094 C 87.976562 340.097656 86.945312 339.066406 85.671875 339.066406 C 84.398438 339.066406 83.367188 340.097656 83.367188 341.371094 C 83.367188 342.644531 84.398438 343.675781 85.671875 343.675781 C 86.945312 343.675781 87.976562 342.644531 87.976562 341.371094 Z M 87.976562 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.699219 341.371094 C 81.699219 340.097656 80.667969 339.066406 79.394531 339.066406 C 78.121094 339.066406 77.089844 340.097656 77.089844 341.371094 C 77.089844 342.644531 78.121094 343.675781 79.394531 343.675781 C 80.667969 343.675781 81.699219 342.644531 81.699219 341.371094 Z M 81.699219 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 102.980469 341.371094 C 102.980469 340.097656 101.949219 339.066406 100.675781 339.066406 C 99.402344 339.066406 98.371094 340.097656 98.371094 341.371094 C 98.371094 342.644531 99.402344 343.675781 100.675781 343.675781 C 101.949219 343.675781 102.980469 342.644531 102.980469 341.371094 Z M 102.980469 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.210938 341.371094 C 85.210938 340.097656 84.179688 339.066406 82.90625 339.066406 C 81.632812 339.066406 80.601562 340.097656 80.601562 341.371094 C 80.601562 342.644531 81.632812 343.675781 82.90625 343.675781 C 84.179688 343.675781 85.210938 342.644531 85.210938 341.371094 Z M 85.210938 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.246094 341.371094 C 90.246094 340.097656 89.214844 339.066406 87.941406 339.066406 C 86.667969 339.066406 85.636719 340.097656 85.636719 341.371094 C 85.636719 342.644531 86.667969 343.675781 87.941406 343.675781 C 89.214844 343.675781 90.246094 342.644531 90.246094 341.371094 Z M 90.246094 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.3125 341.371094 C 99.3125 340.097656 98.28125 339.066406 97.007812 339.066406 C 95.734375 339.066406 94.703125 340.097656 94.703125 341.371094 C 94.703125 342.644531 95.734375 343.675781 97.007812 343.675781 C 98.28125 343.675781 99.3125 342.644531 99.3125 341.371094 Z M 99.3125 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.15625 341.371094 C 74.15625 340.097656 73.125 339.066406 71.851562 339.066406 C 70.578125 339.066406 69.546875 340.097656 69.546875 341.371094 C 69.546875 342.644531 70.578125 343.675781 71.851562 343.675781 C 73.125 343.675781 74.15625 342.644531 74.15625 341.371094 Z M 74.15625 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.871094 341.371094 C 80.871094 340.097656 79.839844 339.066406 78.566406 339.066406 C 77.292969 339.066406 76.261719 340.097656 76.261719 341.371094 C 76.261719 342.644531 77.292969 343.675781 78.566406 343.675781 C 79.839844 343.675781 80.871094 342.644531 80.871094 341.371094 Z M 80.871094 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 101.550781 341.371094 C 101.550781 340.097656 100.519531 339.066406 99.246094 339.066406 C 97.972656 339.066406 96.941406 340.097656 96.941406 341.371094 C 96.941406 342.644531 97.972656 343.675781 99.246094 343.675781 C 100.519531 343.675781 101.550781 342.644531 101.550781 341.371094 Z M 101.550781 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.453125 341.371094 C 96.453125 340.097656 95.421875 339.066406 94.148438 339.066406 C 92.875 339.066406 91.84375 340.097656 91.84375 341.371094 C 91.84375 342.644531 92.875 343.675781 94.148438 343.675781 C 95.421875 343.675781 96.453125 342.644531 96.453125 341.371094 Z M 96.453125 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.617188 341.371094 C 85.617188 340.097656 84.585938 339.066406 83.3125 339.066406 C 82.039062 339.066406 81.007812 340.097656 81.007812 341.371094 C 81.007812 342.644531 82.039062 343.675781 83.3125 343.675781 C 84.585938 343.675781 85.617188 342.644531 85.617188 341.371094 Z M 85.617188 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 102.890625 341.371094 C 102.890625 340.097656 101.859375 339.066406 100.585938 339.066406 C 99.3125 339.066406 98.28125 340.097656 98.28125 341.371094 C 98.28125 342.644531 99.3125 343.675781 100.585938 343.675781 C 101.859375 343.675781 102.890625 342.644531 102.890625 341.371094 Z M 102.890625 341.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.855469 336.527344 C 73.855469 335.253906 72.824219 334.222656 71.550781 334.222656 C 70.277344 334.222656 69.246094 335.253906 69.246094 336.527344 C 69.246094 337.800781 70.277344 338.832031 71.550781 338.832031 C 72.824219 338.832031 73.855469 337.800781 73.855469 336.527344 Z M 73.855469 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 101.238281 336.527344 C 101.238281 335.253906 100.207031 334.222656 98.933594 334.222656 C 97.660156 334.222656 96.628906 335.253906 96.628906 336.527344 C 96.628906 337.800781 97.660156 338.832031 98.933594 338.832031 C 100.207031 338.832031 101.238281 337.800781 101.238281 336.527344 Z M 101.238281 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.515625 336.527344 C 84.515625 335.253906 83.484375 334.222656 82.210938 334.222656 C 80.9375 334.222656 79.90625 335.253906 79.90625 336.527344 C 79.90625 337.800781 80.9375 338.832031 82.210938 338.832031 C 83.484375 338.832031 84.515625 337.800781 84.515625 336.527344 Z M 84.515625 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.648438 336.527344 C 99.648438 335.253906 98.617188 334.222656 97.34375 334.222656 C 96.070312 334.222656 95.039062 335.253906 95.039062 336.527344 C 95.039062 337.800781 96.070312 338.832031 97.34375 338.832031 C 98.617188 338.832031 99.648438 337.800781 99.648438 336.527344 Z M 99.648438 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.792969 336.527344 C 94.792969 335.253906 93.761719 334.222656 92.488281 334.222656 C 91.214844 334.222656 90.183594 335.253906 90.183594 336.527344 C 90.183594 337.800781 91.214844 338.832031 92.488281 338.832031 C 93.761719 338.832031 94.792969 337.800781 94.792969 336.527344 Z M 94.792969 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.859375 336.527344 C 87.859375 335.253906 86.828125 334.222656 85.554688 334.222656 C 84.28125 334.222656 83.25 335.253906 83.25 336.527344 C 83.25 337.800781 84.28125 338.832031 85.554688 338.832031 C 86.828125 338.832031 87.859375 337.800781 87.859375 336.527344 Z M 87.859375 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.109375 336.527344 C 84.109375 335.253906 83.078125 334.222656 81.804688 334.222656 C 80.53125 334.222656 79.5 335.253906 79.5 336.527344 C 79.5 337.800781 80.53125 338.832031 81.804688 338.832031 C 83.078125 338.832031 84.109375 337.800781 84.109375 336.527344 Z M 84.109375 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.589844 336.527344 C 96.589844 335.253906 95.558594 334.222656 94.285156 334.222656 C 93.011719 334.222656 91.980469 335.253906 91.980469 336.527344 C 91.980469 337.800781 93.011719 338.832031 94.285156 338.832031 C 95.558594 338.832031 96.589844 337.800781 96.589844 336.527344 Z M 96.589844 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.796875 336.527344 C 70.796875 335.253906 69.765625 334.222656 68.492188 334.222656 C 67.21875 334.222656 66.1875 335.253906 66.1875 336.527344 C 66.1875 337.800781 67.21875 338.832031 68.492188 338.832031 C 69.765625 338.832031 70.796875 337.800781 70.796875 336.527344 Z M 70.796875 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.433594 336.527344 C 85.433594 335.253906 84.402344 334.222656 83.128906 334.222656 C 81.855469 334.222656 80.824219 335.253906 80.824219 336.527344 C 80.824219 337.800781 81.855469 338.832031 83.128906 338.832031 C 84.402344 338.832031 85.433594 337.800781 85.433594 336.527344 Z M 85.433594 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 103.539062 336.527344 C 103.539062 335.253906 102.507812 334.222656 101.234375 334.222656 C 99.960938 334.222656 98.929688 335.253906 98.929688 336.527344 C 98.929688 337.800781 99.960938 338.832031 101.234375 338.832031 C 102.507812 338.832031 103.539062 337.800781 103.539062 336.527344 Z M 103.539062 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.769531 336.527344 C 85.769531 335.253906 84.738281 334.222656 83.464844 334.222656 C 82.191406 334.222656 81.160156 335.253906 81.160156 336.527344 C 81.160156 337.800781 82.191406 338.832031 83.464844 338.832031 C 84.738281 338.832031 85.769531 337.800781 85.769531 336.527344 Z M 85.769531 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.375 336.527344 C 74.375 335.253906 73.34375 334.222656 72.070312 334.222656 C 70.796875 334.222656 69.765625 335.253906 69.765625 336.527344 C 69.765625 337.800781 70.796875 338.832031 72.070312 338.832031 C 73.34375 338.832031 74.375 337.800781 74.375 336.527344 Z M 74.375 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.402344 336.527344 C 93.402344 335.253906 92.371094 334.222656 91.097656 334.222656 C 89.824219 334.222656 88.792969 335.253906 88.792969 336.527344 C 88.792969 337.800781 89.824219 338.832031 91.097656 338.832031 C 92.371094 338.832031 93.402344 337.800781 93.402344 336.527344 Z M 93.402344 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.011719 336.527344 C 93.011719 335.253906 91.980469 334.222656 90.707031 334.222656 C 89.433594 334.222656 88.402344 335.253906 88.402344 336.527344 C 88.402344 337.800781 89.433594 338.832031 90.707031 338.832031 C 91.980469 338.832031 93.011719 337.800781 93.011719 336.527344 Z M 93.011719 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.5625 336.527344 C 69.5625 335.253906 68.53125 334.222656 67.257812 334.222656 C 65.984375 334.222656 64.953125 335.253906 64.953125 336.527344 C 64.953125 337.800781 65.984375 338.832031 67.257812 338.832031 C 68.53125 338.832031 69.5625 337.800781 69.5625 336.527344 Z M 69.5625 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.136719 336.527344 C 79.136719 335.253906 78.105469 334.222656 76.832031 334.222656 C 75.558594 334.222656 74.527344 335.253906 74.527344 336.527344 C 74.527344 337.800781 75.558594 338.832031 76.832031 338.832031 C 78.105469 338.832031 79.136719 337.800781 79.136719 336.527344 Z M 79.136719 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.226562 336.527344 C 94.226562 335.253906 93.195312 334.222656 91.921875 334.222656 C 90.648438 334.222656 89.617188 335.253906 89.617188 336.527344 C 89.617188 337.800781 90.648438 338.832031 91.921875 338.832031 C 93.195312 338.832031 94.226562 337.800781 94.226562 336.527344 Z M 94.226562 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.671875 336.527344 C 87.671875 335.253906 86.640625 334.222656 85.367188 334.222656 C 84.09375 334.222656 83.0625 335.253906 83.0625 336.527344 C 83.0625 337.800781 84.09375 338.832031 85.367188 338.832031 C 86.640625 338.832031 87.671875 337.800781 87.671875 336.527344 Z M 87.671875 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.878906 336.527344 C 80.878906 335.253906 79.847656 334.222656 78.574219 334.222656 C 77.300781 334.222656 76.269531 335.253906 76.269531 336.527344 C 76.269531 337.800781 77.300781 338.832031 78.574219 338.832031 C 79.847656 338.832031 80.878906 337.800781 80.878906 336.527344 Z M 80.878906 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 103.90625 336.527344 C 103.90625 335.253906 102.875 334.222656 101.601562 334.222656 C 100.328125 334.222656 99.296875 335.253906 99.296875 336.527344 C 99.296875 337.800781 100.328125 338.832031 101.601562 338.832031 C 102.875 338.832031 103.90625 337.800781 103.90625 336.527344 Z M 103.90625 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.675781 336.527344 C 84.675781 335.253906 83.644531 334.222656 82.371094 334.222656 C 81.097656 334.222656 80.066406 335.253906 80.066406 336.527344 C 80.066406 337.800781 81.097656 338.832031 82.371094 338.832031 C 83.644531 338.832031 84.675781 337.800781 84.675781 336.527344 Z M 84.675781 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.125 336.527344 C 90.125 335.253906 89.09375 334.222656 87.820312 334.222656 C 86.546875 334.222656 85.515625 335.253906 85.515625 336.527344 C 85.515625 337.800781 86.546875 338.832031 87.820312 338.832031 C 89.09375 338.832031 90.125 337.800781 90.125 336.527344 Z M 90.125 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.933594 336.527344 C 99.933594 335.253906 98.902344 334.222656 97.628906 334.222656 C 96.355469 334.222656 95.324219 335.253906 95.324219 336.527344 C 95.324219 337.800781 96.355469 338.832031 97.628906 338.832031 C 98.902344 338.832031 99.933594 337.800781 99.933594 336.527344 Z M 99.933594 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.714844 336.527344 C 72.714844 335.253906 71.683594 334.222656 70.410156 334.222656 C 69.136719 334.222656 68.105469 335.253906 68.105469 336.527344 C 68.105469 337.800781 69.136719 338.832031 70.410156 338.832031 C 71.683594 338.832031 72.714844 337.800781 72.714844 336.527344 Z M 72.714844 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.980469 336.527344 C 79.980469 335.253906 78.949219 334.222656 77.675781 334.222656 C 76.402344 334.222656 75.371094 335.253906 75.371094 336.527344 C 75.371094 337.800781 76.402344 338.832031 77.675781 338.832031 C 78.949219 338.832031 79.980469 337.800781 79.980469 336.527344 Z M 79.980469 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 102.355469 336.527344 C 102.355469 335.253906 101.324219 334.222656 100.050781 334.222656 C 98.777344 334.222656 97.746094 335.253906 97.746094 336.527344 C 97.746094 337.800781 98.777344 338.832031 100.050781 338.832031 C 101.324219 338.832031 102.355469 337.800781 102.355469 336.527344 Z M 102.355469 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.839844 336.527344 C 96.839844 335.253906 95.808594 334.222656 94.535156 334.222656 C 93.261719 334.222656 92.230469 335.253906 92.230469 336.527344 C 92.230469 337.800781 93.261719 338.832031 94.535156 338.832031 C 95.808594 338.832031 96.839844 337.800781 96.839844 336.527344 Z M 96.839844 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.113281 336.527344 C 85.113281 335.253906 84.082031 334.222656 82.808594 334.222656 C 81.535156 334.222656 80.503906 335.253906 80.503906 336.527344 C 80.503906 337.800781 81.535156 338.832031 82.808594 338.832031 C 84.082031 338.832031 85.113281 337.800781 85.113281 336.527344 Z M 85.113281 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 103.804688 336.527344 C 103.804688 335.253906 102.773438 334.222656 101.5 334.222656 C 100.226562 334.222656 99.195312 335.253906 99.195312 336.527344 C 99.195312 337.800781 100.226562 338.832031 101.5 338.832031 C 102.773438 338.832031 103.804688 337.800781 103.804688 336.527344 Z M 103.804688 336.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.308594 331.683594 C 72.308594 330.410156 71.277344 329.378906 70.003906 329.378906 C 68.730469 329.378906 67.699219 330.410156 67.699219 331.683594 C 67.699219 332.957031 68.730469 333.988281 70.003906 333.988281 C 71.277344 333.988281 72.308594 332.957031 72.308594 331.683594 Z M 72.308594 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 101.492188 331.683594 C 101.492188 330.410156 100.460938 329.378906 99.1875 329.378906 C 97.914062 329.378906 96.882812 330.410156 96.882812 331.683594 C 96.882812 332.957031 97.914062 333.988281 99.1875 333.988281 C 100.460938 333.988281 101.492188 332.957031 101.492188 331.683594 Z M 101.492188 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.667969 331.683594 C 83.667969 330.410156 82.636719 329.378906 81.363281 329.378906 C 80.089844 329.378906 79.058594 330.410156 79.058594 331.683594 C 79.058594 332.957031 80.089844 333.988281 81.363281 333.988281 C 82.636719 333.988281 83.667969 332.957031 83.667969 331.683594 Z M 83.667969 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.796875 331.683594 C 99.796875 330.410156 98.765625 329.378906 97.492188 329.378906 C 96.21875 329.378906 95.1875 330.410156 95.1875 331.683594 C 95.1875 332.957031 96.21875 333.988281 97.492188 333.988281 C 98.765625 333.988281 99.796875 332.957031 99.796875 331.683594 Z M 99.796875 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.621094 331.683594 C 94.621094 330.410156 93.589844 329.378906 92.316406 329.378906 C 91.042969 329.378906 90.011719 330.410156 90.011719 331.683594 C 90.011719 332.957031 91.042969 333.988281 92.316406 333.988281 C 93.589844 333.988281 94.621094 332.957031 94.621094 331.683594 Z M 94.621094 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.230469 331.683594 C 87.230469 330.410156 86.199219 329.378906 84.925781 329.378906 C 83.652344 329.378906 82.621094 330.410156 82.621094 331.683594 C 82.621094 332.957031 83.652344 333.988281 84.925781 333.988281 C 86.199219 333.988281 87.230469 332.957031 87.230469 331.683594 Z M 87.230469 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.234375 331.683594 C 83.234375 330.410156 82.203125 329.378906 80.929688 329.378906 C 79.65625 329.378906 78.625 330.410156 78.625 331.683594 C 78.625 332.957031 79.65625 333.988281 80.929688 333.988281 C 82.203125 333.988281 83.234375 332.957031 83.234375 331.683594 Z M 83.234375 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.539062 331.683594 C 96.539062 330.410156 95.507812 329.378906 94.234375 329.378906 C 92.960938 329.378906 91.929688 330.410156 91.929688 331.683594 C 91.929688 332.957031 92.960938 333.988281 94.234375 333.988281 C 95.507812 333.988281 96.539062 332.957031 96.539062 331.683594 Z M 96.539062 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.046875 331.683594 C 69.046875 330.410156 68.015625 329.378906 66.742188 329.378906 C 65.46875 329.378906 64.4375 330.410156 64.4375 331.683594 C 64.4375 332.957031 65.46875 333.988281 66.742188 333.988281 C 68.015625 333.988281 69.046875 332.957031 69.046875 331.683594 Z M 69.046875 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.648438 331.683594 C 84.648438 330.410156 83.617188 329.378906 82.34375 329.378906 C 81.070312 329.378906 80.039062 330.410156 80.039062 331.683594 C 80.039062 332.957031 81.070312 333.988281 82.34375 333.988281 C 83.617188 333.988281 84.648438 332.957031 84.648438 331.683594 Z M 84.648438 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 103.945312 331.683594 C 103.945312 330.410156 102.914062 329.378906 101.640625 329.378906 C 100.367188 329.378906 99.335938 330.410156 99.335938 331.683594 C 99.335938 332.957031 100.367188 333.988281 101.640625 333.988281 C 102.914062 333.988281 103.945312 332.957031 103.945312 331.683594 Z M 103.945312 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.003906 331.683594 C 85.003906 330.410156 83.972656 329.378906 82.699219 329.378906 C 81.425781 329.378906 80.394531 330.410156 80.394531 331.683594 C 80.394531 332.957031 81.425781 333.988281 82.699219 333.988281 C 83.972656 333.988281 85.003906 332.957031 85.003906 331.683594 Z M 85.003906 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.859375 331.683594 C 72.859375 330.410156 71.828125 329.378906 70.554688 329.378906 C 69.28125 329.378906 68.25 330.410156 68.25 331.683594 C 68.25 332.957031 69.28125 333.988281 70.554688 333.988281 C 71.828125 333.988281 72.859375 332.957031 72.859375 331.683594 Z M 72.859375 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.140625 331.683594 C 93.140625 330.410156 92.109375 329.378906 90.835938 329.378906 C 89.5625 329.378906 88.53125 330.410156 88.53125 331.683594 C 88.53125 332.957031 89.5625 333.988281 90.835938 333.988281 C 92.109375 333.988281 93.140625 332.957031 93.140625 331.683594 Z M 93.140625 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.726562 331.683594 C 92.726562 330.410156 91.695312 329.378906 90.421875 329.378906 C 89.148438 329.378906 88.117188 330.410156 88.117188 331.683594 C 88.117188 332.957031 89.148438 333.988281 90.421875 333.988281 C 91.695312 333.988281 92.726562 332.957031 92.726562 331.683594 Z M 92.726562 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.730469 331.683594 C 67.730469 330.410156 66.699219 329.378906 65.425781 329.378906 C 64.152344 329.378906 63.121094 330.410156 63.121094 331.683594 C 63.121094 332.957031 64.152344 333.988281 65.425781 333.988281 C 66.699219 333.988281 67.730469 332.957031 67.730469 331.683594 Z M 67.730469 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.933594 331.683594 C 77.933594 330.410156 76.902344 329.378906 75.628906 329.378906 C 74.355469 329.378906 73.324219 330.410156 73.324219 331.683594 C 73.324219 332.957031 74.355469 333.988281 75.628906 333.988281 C 76.902344 333.988281 77.933594 332.957031 77.933594 331.683594 Z M 77.933594 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.019531 331.683594 C 94.019531 330.410156 92.988281 329.378906 91.714844 329.378906 C 90.441406 329.378906 89.410156 330.410156 89.410156 331.683594 C 89.410156 332.957031 90.441406 333.988281 91.714844 333.988281 C 92.988281 333.988281 94.019531 332.957031 94.019531 331.683594 Z M 94.019531 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.03125 331.683594 C 87.03125 330.410156 86 329.378906 84.726562 329.378906 C 83.453125 329.378906 82.421875 330.410156 82.421875 331.683594 C 82.421875 332.957031 83.453125 333.988281 84.726562 333.988281 C 86 333.988281 87.03125 332.957031 87.03125 331.683594 Z M 87.03125 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.789062 331.683594 C 79.789062 330.410156 78.757812 329.378906 77.484375 329.378906 C 76.210938 329.378906 75.179688 330.410156 75.179688 331.683594 C 75.179688 332.957031 76.210938 333.988281 77.484375 333.988281 C 78.757812 333.988281 79.789062 332.957031 79.789062 331.683594 Z M 79.789062 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 104.332031 331.683594 C 104.332031 330.410156 103.300781 329.378906 102.027344 329.378906 C 100.753906 329.378906 99.722656 330.410156 99.722656 331.683594 C 99.722656 332.957031 100.753906 333.988281 102.027344 333.988281 C 103.300781 333.988281 104.332031 332.957031 104.332031 331.683594 Z M 104.332031 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.839844 331.683594 C 83.839844 330.410156 82.808594 329.378906 81.535156 329.378906 C 80.261719 329.378906 79.230469 330.410156 79.230469 331.683594 C 79.230469 332.957031 80.261719 333.988281 81.535156 333.988281 C 82.808594 333.988281 83.839844 332.957031 83.839844 331.683594 Z M 83.839844 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 89.648438 331.683594 C 89.648438 330.410156 88.617188 329.378906 87.34375 329.378906 C 86.070312 329.378906 85.039062 330.410156 85.039062 331.683594 C 85.039062 332.957031 86.070312 333.988281 87.34375 333.988281 C 88.617188 333.988281 89.648438 332.957031 89.648438 331.683594 Z M 89.648438 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.097656 331.683594 C 100.097656 330.410156 99.066406 329.378906 97.792969 329.378906 C 96.519531 329.378906 95.488281 330.410156 95.488281 331.683594 C 95.488281 332.957031 96.519531 333.988281 97.792969 333.988281 C 99.066406 333.988281 100.097656 332.957031 100.097656 331.683594 Z M 100.097656 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.089844 331.683594 C 71.089844 330.410156 70.058594 329.378906 68.785156 329.378906 C 67.511719 329.378906 66.480469 330.410156 66.480469 331.683594 C 66.480469 332.957031 67.511719 333.988281 68.785156 333.988281 C 70.058594 333.988281 71.089844 332.957031 71.089844 331.683594 Z M 71.089844 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.832031 331.683594 C 78.832031 330.410156 77.800781 329.378906 76.527344 329.378906 C 75.253906 329.378906 74.222656 330.410156 74.222656 331.683594 C 74.222656 332.957031 75.253906 333.988281 76.527344 333.988281 C 77.800781 333.988281 78.832031 332.957031 78.832031 331.683594 Z M 78.832031 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 102.683594 331.683594 C 102.683594 330.410156 101.652344 329.378906 100.378906 329.378906 C 99.105469 329.378906 98.074219 330.410156 98.074219 331.683594 C 98.074219 332.957031 99.105469 333.988281 100.378906 333.988281 C 101.652344 333.988281 102.683594 332.957031 102.683594 331.683594 Z M 102.683594 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.800781 331.683594 C 96.800781 330.410156 95.769531 329.378906 94.496094 329.378906 C 93.222656 329.378906 92.191406 330.410156 92.191406 331.683594 C 92.191406 332.957031 93.222656 333.988281 94.496094 333.988281 C 95.769531 333.988281 96.800781 332.957031 96.800781 331.683594 Z M 96.800781 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.308594 331.683594 C 84.308594 330.410156 83.277344 329.378906 82.003906 329.378906 C 80.730469 329.378906 79.699219 330.410156 79.699219 331.683594 C 79.699219 332.957031 80.730469 333.988281 82.003906 333.988281 C 83.277344 333.988281 84.308594 332.957031 84.308594 331.683594 Z M 84.308594 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 104.230469 331.683594 C 104.230469 330.410156 103.199219 329.378906 101.925781 329.378906 C 100.652344 329.378906 99.621094 330.410156 99.621094 331.683594 C 99.621094 332.957031 100.652344 333.988281 101.925781 333.988281 C 103.199219 333.988281 104.230469 332.957031 104.230469 331.683594 Z M 104.230469 331.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.582031 326.839844 C 70.582031 325.566406 69.550781 324.535156 68.277344 324.535156 C 67.003906 324.535156 65.972656 325.566406 65.972656 326.839844 C 65.972656 328.113281 67.003906 329.144531 68.277344 329.144531 C 69.550781 329.144531 70.582031 328.113281 70.582031 326.839844 Z M 70.582031 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 101.277344 326.839844 C 101.277344 325.566406 100.246094 324.535156 98.972656 324.535156 C 97.699219 324.535156 96.667969 325.566406 96.667969 326.839844 C 96.667969 328.113281 97.699219 329.144531 98.972656 329.144531 C 100.246094 329.144531 101.277344 328.113281 101.277344 326.839844 Z M 101.277344 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.53125 326.839844 C 82.53125 325.566406 81.5 324.535156 80.226562 324.535156 C 78.953125 324.535156 77.921875 325.566406 77.921875 326.839844 C 77.921875 328.113281 78.953125 329.144531 80.226562 329.144531 C 81.5 329.144531 82.53125 328.113281 82.53125 326.839844 Z M 82.53125 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.492188 326.839844 C 99.492188 325.566406 98.460938 324.535156 97.1875 324.535156 C 95.914062 324.535156 94.882812 325.566406 94.882812 326.839844 C 94.882812 328.113281 95.914062 329.144531 97.1875 329.144531 C 98.460938 329.144531 99.492188 328.113281 99.492188 326.839844 Z M 99.492188 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.046875 326.839844 C 94.046875 325.566406 93.015625 324.535156 91.742188 324.535156 C 90.46875 324.535156 89.4375 325.566406 89.4375 326.839844 C 89.4375 328.113281 90.46875 329.144531 91.742188 329.144531 C 93.015625 329.144531 94.046875 328.113281 94.046875 326.839844 Z M 94.046875 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.277344 326.839844 C 86.277344 325.566406 85.246094 324.535156 83.972656 324.535156 C 82.699219 324.535156 81.667969 325.566406 81.667969 326.839844 C 81.667969 328.113281 82.699219 329.144531 83.972656 329.144531 C 85.246094 329.144531 86.277344 328.113281 86.277344 326.839844 Z M 86.277344 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.074219 326.839844 C 82.074219 325.566406 81.042969 324.535156 79.769531 324.535156 C 78.496094 324.535156 77.464844 325.566406 77.464844 326.839844 C 77.464844 328.113281 78.496094 329.144531 79.769531 329.144531 C 81.042969 329.144531 82.074219 328.113281 82.074219 326.839844 Z M 82.074219 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.066406 326.839844 C 96.066406 325.566406 95.035156 324.535156 93.761719 324.535156 C 92.488281 324.535156 91.457031 325.566406 91.457031 326.839844 C 91.457031 328.113281 92.488281 329.144531 93.761719 329.144531 C 95.035156 329.144531 96.066406 328.113281 96.066406 326.839844 Z M 96.066406 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.152344 326.839844 C 67.152344 325.566406 66.121094 324.535156 64.847656 324.535156 C 63.574219 324.535156 62.542969 325.566406 62.542969 326.839844 C 62.542969 328.113281 63.574219 329.144531 64.847656 329.144531 C 66.121094 329.144531 67.152344 328.113281 67.152344 326.839844 Z M 67.152344 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.558594 326.839844 C 83.558594 325.566406 82.527344 324.535156 81.253906 324.535156 C 79.980469 324.535156 78.949219 325.566406 78.949219 326.839844 C 78.949219 328.113281 79.980469 329.144531 81.253906 329.144531 C 82.527344 329.144531 83.558594 328.113281 83.558594 326.839844 Z M 83.558594 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 103.855469 326.839844 C 103.855469 325.566406 102.824219 324.535156 101.550781 324.535156 C 100.277344 324.535156 99.246094 325.566406 99.246094 326.839844 C 99.246094 328.113281 100.277344 329.144531 101.550781 329.144531 C 102.824219 329.144531 103.855469 328.113281 103.855469 326.839844 Z M 103.855469 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.933594 326.839844 C 83.933594 325.566406 82.902344 324.535156 81.628906 324.535156 C 80.355469 324.535156 79.324219 325.566406 79.324219 326.839844 C 79.324219 328.113281 80.355469 329.144531 81.628906 329.144531 C 82.902344 329.144531 83.933594 328.113281 83.933594 326.839844 Z M 83.933594 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.160156 326.839844 C 71.160156 325.566406 70.128906 324.535156 68.855469 324.535156 C 67.582031 324.535156 66.550781 325.566406 66.550781 326.839844 C 66.550781 328.113281 67.582031 329.144531 68.855469 329.144531 C 70.128906 329.144531 71.160156 328.113281 71.160156 326.839844 Z M 71.160156 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.492188 326.839844 C 92.492188 325.566406 91.460938 324.535156 90.1875 324.535156 C 88.914062 324.535156 87.882812 325.566406 87.882812 326.839844 C 87.882812 328.113281 88.914062 329.144531 90.1875 329.144531 C 91.460938 329.144531 92.492188 328.113281 92.492188 326.839844 Z M 92.492188 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.054688 326.839844 C 92.054688 325.566406 91.023438 324.535156 89.75 324.535156 C 88.476562 324.535156 87.445312 325.566406 87.445312 326.839844 C 87.445312 328.113281 88.476562 329.144531 89.75 329.144531 C 91.023438 329.144531 92.054688 328.113281 92.054688 326.839844 Z M 92.054688 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.769531 326.839844 C 65.769531 325.566406 64.738281 324.535156 63.464844 324.535156 C 62.191406 324.535156 61.160156 325.566406 61.160156 326.839844 C 61.160156 328.113281 62.191406 329.144531 63.464844 329.144531 C 64.738281 329.144531 65.769531 328.113281 65.769531 326.839844 Z M 65.769531 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.5 326.839844 C 76.5 325.566406 75.46875 324.535156 74.195312 324.535156 C 72.921875 324.535156 71.890625 325.566406 71.890625 326.839844 C 71.890625 328.113281 72.921875 329.144531 74.195312 329.144531 C 75.46875 329.144531 76.5 328.113281 76.5 326.839844 Z M 76.5 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.417969 326.839844 C 93.417969 325.566406 92.386719 324.535156 91.113281 324.535156 C 89.839844 324.535156 88.808594 325.566406 88.808594 326.839844 C 88.808594 328.113281 89.839844 329.144531 91.113281 329.144531 C 92.386719 329.144531 93.417969 328.113281 93.417969 326.839844 Z M 93.417969 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.066406 326.839844 C 86.066406 325.566406 85.035156 324.535156 83.761719 324.535156 C 82.488281 324.535156 81.457031 325.566406 81.457031 326.839844 C 81.457031 328.113281 82.488281 329.144531 83.761719 329.144531 C 85.035156 329.144531 86.066406 328.113281 86.066406 326.839844 Z M 86.066406 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.453125 326.839844 C 78.453125 325.566406 77.421875 324.535156 76.148438 324.535156 C 74.875 324.535156 73.84375 325.566406 73.84375 326.839844 C 73.84375 328.113281 74.875 329.144531 76.148438 329.144531 C 77.421875 329.144531 78.453125 328.113281 78.453125 326.839844 Z M 78.453125 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 104.261719 326.839844 C 104.261719 325.566406 103.230469 324.535156 101.957031 324.535156 C 100.683594 324.535156 99.652344 325.566406 99.652344 326.839844 C 99.652344 328.113281 100.683594 329.144531 101.957031 329.144531 C 103.230469 329.144531 104.261719 328.113281 104.261719 326.839844 Z M 104.261719 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.707031 326.839844 C 82.707031 325.566406 81.675781 324.535156 80.402344 324.535156 C 79.128906 324.535156 78.097656 325.566406 78.097656 326.839844 C 78.097656 328.113281 79.128906 329.144531 80.402344 329.144531 C 81.675781 329.144531 82.707031 328.113281 82.707031 326.839844 Z M 82.707031 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.816406 326.839844 C 88.816406 325.566406 87.785156 324.535156 86.511719 324.535156 C 85.238281 324.535156 84.207031 325.566406 84.207031 326.839844 C 84.207031 328.113281 85.238281 329.144531 86.511719 329.144531 C 87.785156 329.144531 88.816406 328.113281 88.816406 326.839844 Z M 88.816406 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.8125 326.839844 C 99.8125 325.566406 98.78125 324.535156 97.507812 324.535156 C 96.234375 324.535156 95.203125 325.566406 95.203125 326.839844 C 95.203125 328.113281 96.234375 329.144531 97.507812 329.144531 C 98.78125 329.144531 99.8125 328.113281 99.8125 326.839844 Z M 99.8125 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.300781 326.839844 C 69.300781 325.566406 68.269531 324.535156 66.996094 324.535156 C 65.722656 324.535156 64.691406 325.566406 64.691406 326.839844 C 64.691406 328.113281 65.722656 329.144531 66.996094 329.144531 C 68.269531 329.144531 69.300781 328.113281 69.300781 326.839844 Z M 69.300781 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.445312 326.839844 C 77.445312 325.566406 76.414062 324.535156 75.140625 324.535156 C 73.867188 324.535156 72.835938 325.566406 72.835938 326.839844 C 72.835938 328.113281 73.867188 329.144531 75.140625 329.144531 C 76.414062 329.144531 77.445312 328.113281 77.445312 326.839844 Z M 77.445312 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 102.527344 326.839844 C 102.527344 325.566406 101.496094 324.535156 100.222656 324.535156 C 98.949219 324.535156 97.917969 325.566406 97.917969 326.839844 C 97.917969 328.113281 98.949219 329.144531 100.222656 329.144531 C 101.496094 329.144531 102.527344 328.113281 102.527344 326.839844 Z M 102.527344 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.34375 326.839844 C 96.34375 325.566406 95.3125 324.535156 94.039062 324.535156 C 92.765625 324.535156 91.734375 325.566406 91.734375 326.839844 C 91.734375 328.113281 92.765625 329.144531 94.039062 329.144531 C 95.3125 329.144531 96.34375 328.113281 96.34375 326.839844 Z M 96.34375 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.203125 326.839844 C 83.203125 325.566406 82.171875 324.535156 80.898438 324.535156 C 79.625 324.535156 78.59375 325.566406 78.59375 326.839844 C 78.59375 328.113281 79.625 329.144531 80.898438 329.144531 C 82.171875 329.144531 83.203125 328.113281 83.203125 326.839844 Z M 83.203125 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 104.152344 326.839844 C 104.152344 325.566406 103.121094 324.535156 101.847656 324.535156 C 100.574219 324.535156 99.542969 325.566406 99.542969 326.839844 C 99.542969 328.113281 100.574219 329.144531 101.847656 329.144531 C 103.121094 329.144531 104.152344 328.113281 104.152344 326.839844 Z M 104.152344 326.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.695312 321.996094 C 68.695312 320.722656 67.664062 319.691406 66.390625 319.691406 C 65.117188 319.691406 64.085938 320.722656 64.085938 321.996094 C 64.085938 323.269531 65.117188 324.300781 66.390625 324.300781 C 67.664062 324.300781 68.695312 323.269531 68.695312 321.996094 Z M 68.695312 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.59375 321.996094 C 100.59375 320.722656 99.5625 319.691406 98.289062 319.691406 C 97.015625 319.691406 95.984375 320.722656 95.984375 321.996094 C 95.984375 323.269531 97.015625 324.300781 98.289062 324.300781 C 99.5625 324.300781 100.59375 323.269531 100.59375 321.996094 Z M 100.59375 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.109375 321.996094 C 81.109375 320.722656 80.078125 319.691406 78.804688 319.691406 C 77.53125 319.691406 76.5 320.722656 76.5 321.996094 C 76.5 323.269531 77.53125 324.300781 78.804688 324.300781 C 80.078125 324.300781 81.109375 323.269531 81.109375 321.996094 Z M 81.109375 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 98.738281 321.996094 C 98.738281 320.722656 97.707031 319.691406 96.433594 319.691406 C 95.160156 319.691406 94.128906 320.722656 94.128906 321.996094 C 94.128906 323.269531 95.160156 324.300781 96.433594 324.300781 C 97.707031 324.300781 98.738281 323.269531 98.738281 321.996094 Z M 98.738281 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.082031 321.996094 C 93.082031 320.722656 92.050781 319.691406 90.777344 319.691406 C 89.503906 319.691406 88.472656 320.722656 88.472656 321.996094 C 88.472656 323.269531 89.503906 324.300781 90.777344 324.300781 C 92.050781 324.300781 93.082031 323.269531 93.082031 321.996094 Z M 93.082031 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.003906 321.996094 C 85.003906 320.722656 83.972656 319.691406 82.699219 319.691406 C 81.425781 319.691406 80.394531 320.722656 80.394531 321.996094 C 80.394531 323.269531 81.425781 324.300781 82.699219 324.300781 C 83.972656 324.300781 85.003906 323.269531 85.003906 321.996094 Z M 85.003906 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.636719 321.996094 C 80.636719 320.722656 79.605469 319.691406 78.332031 319.691406 C 77.058594 319.691406 76.027344 320.722656 76.027344 321.996094 C 76.027344 323.269531 77.058594 324.300781 78.332031 324.300781 C 79.605469 324.300781 80.636719 323.269531 80.636719 321.996094 Z M 80.636719 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 95.175781 321.996094 C 95.175781 320.722656 94.144531 319.691406 92.871094 319.691406 C 91.597656 319.691406 90.566406 320.722656 90.566406 321.996094 C 90.566406 323.269531 91.597656 324.300781 92.871094 324.300781 C 94.144531 324.300781 95.175781 323.269531 95.175781 321.996094 Z M 95.175781 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.128906 321.996094 C 65.128906 320.722656 64.097656 319.691406 62.824219 319.691406 C 61.550781 319.691406 60.519531 320.722656 60.519531 321.996094 C 60.519531 323.269531 61.550781 324.300781 62.824219 324.300781 C 64.097656 324.300781 65.128906 323.269531 65.128906 321.996094 Z M 65.128906 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.179688 321.996094 C 82.179688 320.722656 81.148438 319.691406 79.875 319.691406 C 78.601562 319.691406 77.570312 320.722656 77.570312 321.996094 C 77.570312 323.269531 78.601562 324.300781 79.875 324.300781 C 81.148438 324.300781 82.179688 323.269531 82.179688 321.996094 Z M 82.179688 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 103.269531 321.996094 C 103.269531 320.722656 102.238281 319.691406 100.964844 319.691406 C 99.691406 319.691406 98.660156 320.722656 98.660156 321.996094 C 98.660156 323.269531 99.691406 324.300781 100.964844 324.300781 C 102.238281 324.300781 103.269531 323.269531 103.269531 321.996094 Z M 103.269531 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.570312 321.996094 C 82.570312 320.722656 81.539062 319.691406 80.265625 319.691406 C 78.992188 319.691406 77.960938 320.722656 77.960938 321.996094 C 77.960938 323.269531 78.992188 324.300781 80.265625 324.300781 C 81.539062 324.300781 82.570312 323.269531 82.570312 321.996094 Z M 82.570312 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.296875 321.996094 C 69.296875 320.722656 68.265625 319.691406 66.992188 319.691406 C 65.71875 319.691406 64.6875 320.722656 64.6875 321.996094 C 64.6875 323.269531 65.71875 324.300781 66.992188 324.300781 C 68.265625 324.300781 69.296875 323.269531 69.296875 321.996094 Z M 69.296875 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.464844 321.996094 C 91.464844 320.722656 90.433594 319.691406 89.160156 319.691406 C 87.886719 319.691406 86.855469 320.722656 86.855469 321.996094 C 86.855469 323.269531 87.886719 324.300781 89.160156 324.300781 C 90.433594 324.300781 91.464844 323.269531 91.464844 321.996094 Z M 91.464844 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.007812 321.996094 C 91.007812 320.722656 89.976562 319.691406 88.703125 319.691406 C 87.429688 319.691406 86.398438 320.722656 86.398438 321.996094 C 86.398438 323.269531 87.429688 324.300781 88.703125 324.300781 C 89.976562 324.300781 91.007812 323.269531 91.007812 321.996094 Z M 91.007812 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.691406 321.996094 C 63.691406 320.722656 62.660156 319.691406 61.386719 319.691406 C 60.113281 319.691406 59.082031 320.722656 59.082031 321.996094 C 59.082031 323.269531 60.113281 324.300781 61.386719 324.300781 C 62.660156 324.300781 63.691406 323.269531 63.691406 321.996094 Z M 63.691406 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.84375 321.996094 C 74.84375 320.722656 73.8125 319.691406 72.539062 319.691406 C 71.265625 319.691406 70.234375 320.722656 70.234375 321.996094 C 70.234375 323.269531 71.265625 324.300781 72.539062 324.300781 C 73.8125 324.300781 74.84375 323.269531 74.84375 321.996094 Z M 74.84375 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.425781 321.996094 C 92.425781 320.722656 91.394531 319.691406 90.121094 319.691406 C 88.847656 319.691406 87.816406 320.722656 87.816406 321.996094 C 87.816406 323.269531 88.847656 324.300781 90.121094 324.300781 C 91.394531 324.300781 92.425781 323.269531 92.425781 321.996094 Z M 92.425781 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.785156 321.996094 C 84.785156 320.722656 83.753906 319.691406 82.480469 319.691406 C 81.207031 319.691406 80.175781 320.722656 80.175781 321.996094 C 80.175781 323.269531 81.207031 324.300781 82.480469 324.300781 C 83.753906 324.300781 84.785156 323.269531 84.785156 321.996094 Z M 84.785156 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.871094 321.996094 C 76.871094 320.722656 75.839844 319.691406 74.566406 319.691406 C 73.292969 319.691406 72.261719 320.722656 72.261719 321.996094 C 72.261719 323.269531 73.292969 324.300781 74.566406 324.300781 C 75.839844 324.300781 76.871094 323.269531 76.871094 321.996094 Z M 76.871094 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 103.695312 321.996094 C 103.695312 320.722656 102.664062 319.691406 101.390625 319.691406 C 100.117188 319.691406 99.085938 320.722656 99.085938 321.996094 C 99.085938 323.269531 100.117188 324.300781 101.390625 324.300781 C 102.664062 324.300781 103.695312 323.269531 103.695312 321.996094 Z M 103.695312 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.296875 321.996094 C 81.296875 320.722656 80.265625 319.691406 78.992188 319.691406 C 77.71875 319.691406 76.6875 320.722656 76.6875 321.996094 C 76.6875 323.269531 77.71875 324.300781 78.992188 324.300781 C 80.265625 324.300781 81.296875 323.269531 81.296875 321.996094 Z M 81.296875 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.644531 321.996094 C 87.644531 320.722656 86.613281 319.691406 85.339844 319.691406 C 84.066406 319.691406 83.035156 320.722656 83.035156 321.996094 C 83.035156 323.269531 84.066406 324.300781 85.339844 324.300781 C 86.613281 324.300781 87.644531 323.269531 87.644531 321.996094 Z M 87.644531 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.070312 321.996094 C 99.070312 320.722656 98.039062 319.691406 96.765625 319.691406 C 95.492188 319.691406 94.460938 320.722656 94.460938 321.996094 C 94.460938 323.269531 95.492188 324.300781 96.765625 324.300781 C 98.039062 324.300781 99.070312 323.269531 99.070312 321.996094 Z M 99.070312 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.363281 321.996094 C 67.363281 320.722656 66.332031 319.691406 65.058594 319.691406 C 63.785156 319.691406 62.753906 320.722656 62.753906 321.996094 C 62.753906 323.269531 63.785156 324.300781 65.058594 324.300781 C 66.332031 324.300781 67.363281 323.269531 67.363281 321.996094 Z M 67.363281 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.828125 321.996094 C 75.828125 320.722656 74.796875 319.691406 73.523438 319.691406 C 72.25 319.691406 71.21875 320.722656 71.21875 321.996094 C 71.21875 323.269531 72.25 324.300781 73.523438 324.300781 C 74.796875 324.300781 75.828125 323.269531 75.828125 321.996094 Z M 75.828125 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 101.890625 321.996094 C 101.890625 320.722656 100.859375 319.691406 99.585938 319.691406 C 98.3125 319.691406 97.28125 320.722656 97.28125 321.996094 C 97.28125 323.269531 98.3125 324.300781 99.585938 324.300781 C 100.859375 324.300781 101.890625 323.269531 101.890625 321.996094 Z M 101.890625 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 95.464844 321.996094 C 95.464844 320.722656 94.433594 319.691406 93.160156 319.691406 C 91.886719 319.691406 90.855469 320.722656 90.855469 321.996094 C 90.855469 323.269531 91.886719 324.300781 93.160156 324.300781 C 94.433594 324.300781 95.464844 323.269531 95.464844 321.996094 Z M 95.464844 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.808594 321.996094 C 81.808594 320.722656 80.777344 319.691406 79.503906 319.691406 C 78.230469 319.691406 77.199219 320.722656 77.199219 321.996094 C 77.199219 323.269531 78.230469 324.300781 79.503906 324.300781 C 80.777344 324.300781 81.808594 323.269531 81.808594 321.996094 Z M 81.808594 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 103.582031 321.996094 C 103.582031 320.722656 102.550781 319.691406 101.277344 319.691406 C 100.003906 319.691406 98.972656 320.722656 98.972656 321.996094 C 98.972656 323.269531 100.003906 324.300781 101.277344 324.300781 C 102.550781 324.300781 103.582031 323.269531 103.582031 321.996094 Z M 103.582031 321.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.664062 317.152344 C 66.664062 315.878906 65.632812 314.847656 64.359375 314.847656 C 63.085938 314.847656 62.054688 315.878906 62.054688 317.152344 C 62.054688 318.425781 63.085938 319.457031 64.359375 319.457031 C 65.632812 319.457031 66.664062 318.425781 66.664062 317.152344 Z M 66.664062 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.449219 317.152344 C 99.449219 315.878906 98.417969 314.847656 97.144531 314.847656 C 95.871094 314.847656 94.839844 315.878906 94.839844 317.152344 C 94.839844 318.425781 95.871094 319.457031 97.144531 319.457031 C 98.417969 319.457031 99.449219 318.425781 99.449219 317.152344 Z M 99.449219 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.425781 317.152344 C 79.425781 315.878906 78.394531 314.847656 77.121094 314.847656 C 75.847656 314.847656 74.816406 315.878906 74.816406 317.152344 C 74.816406 318.425781 75.847656 319.457031 77.121094 319.457031 C 78.394531 319.457031 79.425781 318.425781 79.425781 317.152344 Z M 79.425781 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 97.542969 317.152344 C 97.542969 315.878906 96.511719 314.847656 95.238281 314.847656 C 93.964844 314.847656 92.933594 315.878906 92.933594 317.152344 C 92.933594 318.425781 93.964844 319.457031 95.238281 319.457031 C 96.511719 319.457031 97.542969 318.425781 97.542969 317.152344 Z M 97.542969 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.726562 317.152344 C 91.726562 315.878906 90.695312 314.847656 89.421875 314.847656 C 88.148438 314.847656 87.117188 315.878906 87.117188 317.152344 C 87.117188 318.425781 88.148438 319.457031 89.421875 319.457031 C 90.695312 319.457031 91.726562 318.425781 91.726562 317.152344 Z M 91.726562 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.429688 317.152344 C 83.429688 315.878906 82.398438 314.847656 81.125 314.847656 C 79.851562 314.847656 78.820312 315.878906 78.820312 317.152344 C 78.820312 318.425781 79.851562 319.457031 81.125 319.457031 C 82.398438 319.457031 83.429688 318.425781 83.429688 317.152344 Z M 83.429688 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.9375 317.152344 C 78.9375 315.878906 77.90625 314.847656 76.632812 314.847656 C 75.359375 314.847656 74.328125 315.878906 74.328125 317.152344 C 74.328125 318.425781 75.359375 319.457031 76.632812 319.457031 C 77.90625 319.457031 78.9375 318.425781 78.9375 317.152344 Z M 78.9375 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.882812 317.152344 C 93.882812 315.878906 92.851562 314.847656 91.578125 314.847656 C 90.304688 314.847656 89.273438 315.878906 89.273438 317.152344 C 89.273438 318.425781 90.304688 319.457031 91.578125 319.457031 C 92.851562 319.457031 93.882812 318.425781 93.882812 317.152344 Z M 93.882812 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63 317.152344 C 63 315.878906 61.96875 314.847656 60.695312 314.847656 C 59.421875 314.847656 58.390625 315.878906 58.390625 317.152344 C 58.390625 318.425781 59.421875 319.457031 60.695312 319.457031 C 61.96875 319.457031 63 318.425781 63 317.152344 Z M 63 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.527344 317.152344 C 80.527344 315.878906 79.496094 314.847656 78.222656 314.847656 C 76.949219 314.847656 75.917969 315.878906 75.917969 317.152344 C 75.917969 318.425781 76.949219 319.457031 78.222656 319.457031 C 79.496094 319.457031 80.527344 318.425781 80.527344 317.152344 Z M 80.527344 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 102.199219 317.152344 C 102.199219 315.878906 101.167969 314.847656 99.894531 314.847656 C 98.621094 314.847656 97.589844 315.878906 97.589844 317.152344 C 97.589844 318.425781 98.621094 319.457031 99.894531 319.457031 C 101.167969 319.457031 102.199219 318.425781 102.199219 317.152344 Z M 102.199219 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.925781 317.152344 C 80.925781 315.878906 79.894531 314.847656 78.621094 314.847656 C 77.347656 314.847656 76.316406 315.878906 76.316406 317.152344 C 76.316406 318.425781 77.347656 319.457031 78.621094 319.457031 C 79.894531 319.457031 80.925781 318.425781 80.925781 317.152344 Z M 80.925781 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.285156 317.152344 C 67.285156 315.878906 66.253906 314.847656 64.980469 314.847656 C 63.707031 314.847656 62.675781 315.878906 62.675781 317.152344 C 62.675781 318.425781 63.707031 319.457031 64.980469 319.457031 C 66.253906 319.457031 67.285156 318.425781 67.285156 317.152344 Z M 67.285156 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.066406 317.152344 C 90.066406 315.878906 89.035156 314.847656 87.761719 314.847656 C 86.488281 314.847656 85.457031 315.878906 85.457031 317.152344 C 85.457031 318.425781 86.488281 319.457031 87.761719 319.457031 C 89.035156 319.457031 90.066406 318.425781 90.066406 317.152344 Z M 90.066406 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 89.597656 317.152344 C 89.597656 315.878906 88.566406 314.847656 87.292969 314.847656 C 86.019531 314.847656 84.988281 315.878906 84.988281 317.152344 C 84.988281 318.425781 86.019531 319.457031 87.292969 319.457031 C 88.566406 319.457031 89.597656 318.425781 89.597656 317.152344 Z M 89.597656 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.523438 317.152344 C 61.523438 315.878906 60.492188 314.847656 59.21875 314.847656 C 57.945312 314.847656 56.914062 315.878906 56.914062 317.152344 C 56.914062 318.425781 57.945312 319.457031 59.21875 319.457031 C 60.492188 319.457031 61.523438 318.425781 61.523438 317.152344 Z M 61.523438 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.984375 317.152344 C 72.984375 315.878906 71.953125 314.847656 70.679688 314.847656 C 69.40625 314.847656 68.375 315.878906 68.375 317.152344 C 68.375 318.425781 69.40625 319.457031 70.679688 319.457031 C 71.953125 319.457031 72.984375 318.425781 72.984375 317.152344 Z M 72.984375 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.050781 317.152344 C 91.050781 315.878906 90.019531 314.847656 88.746094 314.847656 C 87.472656 314.847656 86.441406 315.878906 86.441406 317.152344 C 86.441406 318.425781 87.472656 319.457031 88.746094 319.457031 C 90.019531 319.457031 91.050781 318.425781 91.050781 317.152344 Z M 91.050781 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.203125 317.152344 C 83.203125 315.878906 82.171875 314.847656 80.898438 314.847656 C 79.625 314.847656 78.59375 315.878906 78.59375 317.152344 C 78.59375 318.425781 79.625 319.457031 80.898438 319.457031 C 82.171875 319.457031 83.203125 318.425781 83.203125 317.152344 Z M 83.203125 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.070312 317.152344 C 75.070312 315.878906 74.039062 314.847656 72.765625 314.847656 C 71.492188 314.847656 70.460938 315.878906 70.460938 317.152344 C 70.460938 318.425781 71.492188 319.457031 72.765625 319.457031 C 74.039062 319.457031 75.070312 318.425781 75.070312 317.152344 Z M 75.070312 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 102.636719 317.152344 C 102.636719 315.878906 101.605469 314.847656 100.332031 314.847656 C 99.058594 314.847656 98.027344 315.878906 98.027344 317.152344 C 98.027344 318.425781 99.058594 319.457031 100.332031 319.457031 C 101.605469 319.457031 102.636719 318.425781 102.636719 317.152344 Z M 102.636719 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.617188 317.152344 C 79.617188 315.878906 78.585938 314.847656 77.3125 314.847656 C 76.039062 314.847656 75.007812 315.878906 75.007812 317.152344 C 75.007812 318.425781 76.039062 319.457031 77.3125 319.457031 C 78.585938 319.457031 79.617188 318.425781 79.617188 317.152344 Z M 79.617188 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.140625 317.152344 C 86.140625 315.878906 85.109375 314.847656 83.835938 314.847656 C 82.5625 314.847656 81.53125 315.878906 81.53125 317.152344 C 81.53125 318.425781 82.5625 319.457031 83.835938 319.457031 C 85.109375 319.457031 86.140625 318.425781 86.140625 317.152344 Z M 86.140625 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 97.882812 317.152344 C 97.882812 315.878906 96.851562 314.847656 95.578125 314.847656 C 94.304688 314.847656 93.273438 315.878906 93.273438 317.152344 C 93.273438 318.425781 94.304688 319.457031 95.578125 319.457031 C 96.851562 319.457031 97.882812 318.425781 97.882812 317.152344 Z M 97.882812 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.296875 317.152344 C 65.296875 315.878906 64.265625 314.847656 62.992188 314.847656 C 61.71875 314.847656 60.6875 315.878906 60.6875 317.152344 C 60.6875 318.425781 61.71875 319.457031 62.992188 319.457031 C 64.265625 319.457031 65.296875 318.425781 65.296875 317.152344 Z M 65.296875 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.996094 317.152344 C 73.996094 315.878906 72.964844 314.847656 71.691406 314.847656 C 70.417969 314.847656 69.386719 315.878906 69.386719 317.152344 C 69.386719 318.425781 70.417969 319.457031 71.691406 319.457031 C 72.964844 319.457031 73.996094 318.425781 73.996094 317.152344 Z M 73.996094 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.785156 317.152344 C 100.785156 315.878906 99.753906 314.847656 98.480469 314.847656 C 97.207031 314.847656 96.175781 315.878906 96.175781 317.152344 C 96.175781 318.425781 97.207031 319.457031 98.480469 319.457031 C 99.753906 319.457031 100.785156 318.425781 100.785156 317.152344 Z M 100.785156 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.179688 317.152344 C 94.179688 315.878906 93.148438 314.847656 91.875 314.847656 C 90.601562 314.847656 89.570312 315.878906 89.570312 317.152344 C 89.570312 318.425781 90.601562 319.457031 91.875 319.457031 C 93.148438 319.457031 94.179688 318.425781 94.179688 317.152344 Z M 94.179688 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.144531 317.152344 C 80.144531 315.878906 79.113281 314.847656 77.839844 314.847656 C 76.566406 314.847656 75.535156 315.878906 75.535156 317.152344 C 75.535156 318.425781 76.566406 319.457031 77.839844 319.457031 C 79.113281 319.457031 80.144531 318.425781 80.144531 317.152344 Z M 80.144531 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 102.519531 317.152344 C 102.519531 315.878906 101.488281 314.847656 100.214844 314.847656 C 98.941406 314.847656 97.910156 315.878906 97.910156 317.152344 C 97.910156 318.425781 98.941406 319.457031 100.214844 319.457031 C 101.488281 319.457031 102.519531 318.425781 102.519531 317.152344 Z M 102.519531 317.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.515625 312.308594 C 64.515625 311.035156 63.484375 310.003906 62.210938 310.003906 C 60.9375 310.003906 59.90625 311.035156 59.90625 312.308594 C 59.90625 313.582031 60.9375 314.613281 62.210938 314.613281 C 63.484375 314.613281 64.515625 313.582031 64.515625 312.308594 Z M 64.515625 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 97.855469 312.308594 C 97.855469 311.035156 96.824219 310.003906 95.550781 310.003906 C 94.277344 310.003906 93.246094 311.035156 93.246094 312.308594 C 93.246094 313.582031 94.277344 314.613281 95.550781 314.613281 C 96.824219 314.613281 97.855469 313.582031 97.855469 312.308594 Z M 97.855469 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.492188 312.308594 C 77.492188 311.035156 76.460938 310.003906 75.1875 310.003906 C 73.914062 310.003906 72.882812 311.035156 72.882812 312.308594 C 72.882812 313.582031 73.914062 314.613281 75.1875 314.613281 C 76.460938 314.613281 77.492188 313.582031 77.492188 312.308594 Z M 77.492188 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 95.914062 312.308594 C 95.914062 311.035156 94.882812 310.003906 93.609375 310.003906 C 92.335938 310.003906 91.304688 311.035156 91.304688 312.308594 C 91.304688 313.582031 92.335938 314.613281 93.609375 314.613281 C 94.882812 314.613281 95.914062 313.582031 95.914062 312.308594 Z M 95.914062 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.003906 312.308594 C 90.003906 311.035156 88.972656 310.003906 87.699219 310.003906 C 86.425781 310.003906 85.394531 311.035156 85.394531 312.308594 C 85.394531 313.582031 86.425781 314.613281 87.699219 314.613281 C 88.972656 314.613281 90.003906 313.582031 90.003906 312.308594 Z M 90.003906 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.5625 312.308594 C 81.5625 311.035156 80.53125 310.003906 79.257812 310.003906 C 77.984375 310.003906 76.953125 311.035156 76.953125 312.308594 C 76.953125 313.582031 77.984375 314.613281 79.257812 314.613281 C 80.53125 314.613281 81.5625 313.582031 81.5625 312.308594 Z M 81.5625 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.996094 312.308594 C 76.996094 311.035156 75.964844 310.003906 74.691406 310.003906 C 73.417969 310.003906 72.386719 311.035156 72.386719 312.308594 C 72.386719 313.582031 73.417969 314.613281 74.691406 314.613281 C 75.964844 314.613281 76.996094 313.582031 76.996094 312.308594 Z M 76.996094 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.195312 312.308594 C 92.195312 311.035156 91.164062 310.003906 89.890625 310.003906 C 88.617188 310.003906 87.585938 311.035156 87.585938 312.308594 C 87.585938 313.582031 88.617188 314.613281 89.890625 314.613281 C 91.164062 314.613281 92.195312 313.582031 92.195312 312.308594 Z M 92.195312 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.789062 312.308594 C 60.789062 311.035156 59.757812 310.003906 58.484375 310.003906 C 57.210938 310.003906 56.179688 311.035156 56.179688 312.308594 C 56.179688 313.582031 57.210938 314.613281 58.484375 314.613281 C 59.757812 314.613281 60.789062 313.582031 60.789062 312.308594 Z M 60.789062 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.609375 312.308594 C 78.609375 311.035156 77.578125 310.003906 76.304688 310.003906 C 75.03125 310.003906 74 311.035156 74 312.308594 C 74 313.582031 75.03125 314.613281 76.304688 314.613281 C 77.578125 314.613281 78.609375 313.582031 78.609375 312.308594 Z M 78.609375 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.652344 312.308594 C 100.652344 311.035156 99.621094 310.003906 98.347656 310.003906 C 97.074219 310.003906 96.042969 311.035156 96.042969 312.308594 C 96.042969 313.582031 97.074219 314.613281 98.347656 314.613281 C 99.621094 314.613281 100.652344 313.582031 100.652344 312.308594 Z M 100.652344 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.015625 312.308594 C 79.015625 311.035156 77.984375 310.003906 76.710938 310.003906 C 75.4375 310.003906 74.40625 311.035156 74.40625 312.308594 C 74.40625 313.582031 75.4375 314.613281 76.710938 314.613281 C 77.984375 314.613281 79.015625 313.582031 79.015625 312.308594 Z M 79.015625 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.144531 312.308594 C 65.144531 311.035156 64.113281 310.003906 62.839844 310.003906 C 61.566406 310.003906 60.535156 311.035156 60.535156 312.308594 C 60.535156 313.582031 61.566406 314.613281 62.839844 314.613281 C 64.113281 314.613281 65.144531 313.582031 65.144531 312.308594 Z M 65.144531 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.3125 312.308594 C 88.3125 311.035156 87.28125 310.003906 86.007812 310.003906 C 84.734375 310.003906 83.703125 311.035156 83.703125 312.308594 C 83.703125 313.582031 84.734375 314.613281 86.007812 314.613281 C 87.28125 314.613281 88.3125 313.582031 88.3125 312.308594 Z M 88.3125 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.839844 312.308594 C 87.839844 311.035156 86.808594 310.003906 85.535156 310.003906 C 84.261719 310.003906 83.230469 311.035156 83.230469 312.308594 C 83.230469 313.582031 84.261719 314.613281 85.535156 314.613281 C 86.808594 314.613281 87.839844 313.582031 87.839844 312.308594 Z M 87.839844 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 59.285156 312.308594 C 59.285156 311.035156 58.253906 310.003906 56.980469 310.003906 C 55.707031 310.003906 54.675781 311.035156 54.675781 312.308594 C 54.675781 313.582031 55.707031 314.613281 56.980469 314.613281 C 58.253906 314.613281 59.285156 313.582031 59.285156 312.308594 Z M 59.285156 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.941406 312.308594 C 70.941406 311.035156 69.910156 310.003906 68.636719 310.003906 C 67.363281 310.003906 66.332031 311.035156 66.332031 312.308594 C 66.332031 313.582031 67.363281 314.613281 68.636719 314.613281 C 69.910156 314.613281 70.941406 313.582031 70.941406 312.308594 Z M 70.941406 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 89.316406 312.308594 C 89.316406 311.035156 88.285156 310.003906 87.011719 310.003906 C 85.738281 310.003906 84.707031 311.035156 84.707031 312.308594 C 84.707031 313.582031 85.738281 314.613281 87.011719 314.613281 C 88.285156 314.613281 89.316406 313.582031 89.316406 312.308594 Z M 89.316406 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.332031 312.308594 C 81.332031 311.035156 80.300781 310.003906 79.027344 310.003906 C 77.753906 310.003906 76.722656 311.035156 76.722656 312.308594 C 76.722656 313.582031 77.753906 314.613281 79.027344 314.613281 C 80.300781 314.613281 81.332031 313.582031 81.332031 312.308594 Z M 81.332031 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.0625 312.308594 C 73.0625 311.035156 72.03125 310.003906 70.757812 310.003906 C 69.484375 310.003906 68.453125 311.035156 68.453125 312.308594 C 68.453125 313.582031 69.484375 314.613281 70.757812 314.613281 C 72.03125 314.613281 73.0625 313.582031 73.0625 312.308594 Z M 73.0625 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 101.097656 312.308594 C 101.097656 311.035156 100.066406 310.003906 98.792969 310.003906 C 97.519531 310.003906 96.488281 311.035156 96.488281 312.308594 C 96.488281 313.582031 97.519531 314.613281 98.792969 314.613281 C 100.066406 314.613281 101.097656 313.582031 101.097656 312.308594 Z M 101.097656 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.6875 312.308594 C 77.6875 311.035156 76.65625 310.003906 75.382812 310.003906 C 74.109375 310.003906 73.078125 311.035156 73.078125 312.308594 C 73.078125 313.582031 74.109375 314.613281 75.382812 314.613281 C 76.65625 314.613281 77.6875 313.582031 77.6875 312.308594 Z M 77.6875 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.320312 312.308594 C 84.320312 311.035156 83.289062 310.003906 82.015625 310.003906 C 80.742188 310.003906 79.710938 311.035156 79.710938 312.308594 C 79.710938 313.582031 80.742188 314.613281 82.015625 314.613281 C 83.289062 314.613281 84.320312 313.582031 84.320312 312.308594 Z M 84.320312 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.261719 312.308594 C 96.261719 311.035156 95.230469 310.003906 93.957031 310.003906 C 92.683594 310.003906 91.652344 311.035156 91.652344 312.308594 C 91.652344 313.582031 92.683594 314.613281 93.957031 314.613281 C 95.230469 314.613281 96.261719 313.582031 96.261719 312.308594 Z M 96.261719 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.125 312.308594 C 63.125 311.035156 62.09375 310.003906 60.820312 310.003906 C 59.546875 310.003906 58.515625 311.035156 58.515625 312.308594 C 58.515625 313.582031 59.546875 314.613281 60.820312 314.613281 C 62.09375 314.613281 63.125 313.582031 63.125 312.308594 Z M 63.125 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.96875 312.308594 C 71.96875 311.035156 70.9375 310.003906 69.664062 310.003906 C 68.390625 310.003906 67.359375 311.035156 67.359375 312.308594 C 67.359375 313.582031 68.390625 314.613281 69.664062 314.613281 C 70.9375 314.613281 71.96875 313.582031 71.96875 312.308594 Z M 71.96875 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.210938 312.308594 C 99.210938 311.035156 98.179688 310.003906 96.90625 310.003906 C 95.632812 310.003906 94.601562 311.035156 94.601562 312.308594 C 94.601562 313.582031 95.632812 314.613281 96.90625 314.613281 C 98.179688 314.613281 99.210938 313.582031 99.210938 312.308594 Z M 99.210938 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.496094 312.308594 C 92.496094 311.035156 91.464844 310.003906 90.191406 310.003906 C 88.917969 310.003906 87.886719 311.035156 87.886719 312.308594 C 87.886719 313.582031 88.917969 314.613281 90.191406 314.613281 C 91.464844 314.613281 92.496094 313.582031 92.496094 312.308594 Z M 92.496094 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.222656 312.308594 C 78.222656 311.035156 77.191406 310.003906 75.917969 310.003906 C 74.644531 310.003906 73.613281 311.035156 73.613281 312.308594 C 73.613281 313.582031 74.644531 314.613281 75.917969 314.613281 C 77.191406 314.613281 78.222656 313.582031 78.222656 312.308594 Z M 78.222656 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.980469 312.308594 C 100.980469 311.035156 99.949219 310.003906 98.675781 310.003906 C 97.402344 310.003906 96.371094 311.035156 96.371094 312.308594 C 96.371094 313.582031 97.402344 314.613281 98.675781 314.613281 C 99.949219 314.613281 100.980469 313.582031 100.980469 312.308594 Z M 100.980469 312.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.261719 307.464844 C 62.261719 306.191406 61.230469 305.160156 59.957031 305.160156 C 58.683594 305.160156 57.652344 306.191406 57.652344 307.464844 C 57.652344 308.738281 58.683594 309.769531 59.957031 309.769531 C 61.230469 309.769531 62.261719 308.738281 62.261719 307.464844 Z M 62.261719 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 95.828125 307.464844 C 95.828125 306.191406 94.796875 305.160156 93.523438 305.160156 C 92.25 305.160156 91.21875 306.191406 91.21875 307.464844 C 91.21875 308.738281 92.25 309.769531 93.523438 309.769531 C 94.796875 309.769531 95.828125 308.738281 95.828125 307.464844 Z M 95.828125 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.328125 307.464844 C 75.328125 306.191406 74.296875 305.160156 73.023438 305.160156 C 71.75 305.160156 70.71875 306.191406 70.71875 307.464844 C 70.71875 308.738281 71.75 309.769531 73.023438 309.769531 C 74.296875 309.769531 75.328125 308.738281 75.328125 307.464844 Z M 75.328125 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.875 307.464844 C 93.875 306.191406 92.84375 305.160156 91.570312 305.160156 C 90.296875 305.160156 89.265625 306.191406 89.265625 307.464844 C 89.265625 308.738281 90.296875 309.769531 91.570312 309.769531 C 92.84375 309.769531 93.875 308.738281 93.875 307.464844 Z M 93.875 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.921875 307.464844 C 87.921875 306.191406 86.890625 305.160156 85.617188 305.160156 C 84.34375 305.160156 83.3125 306.191406 83.3125 307.464844 C 83.3125 308.738281 84.34375 309.769531 85.617188 309.769531 C 86.890625 309.769531 87.921875 308.738281 87.921875 307.464844 Z M 87.921875 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.425781 307.464844 C 79.425781 306.191406 78.394531 305.160156 77.121094 305.160156 C 75.847656 305.160156 74.816406 306.191406 74.816406 307.464844 C 74.816406 308.738281 75.847656 309.769531 77.121094 309.769531 C 78.394531 309.769531 79.425781 308.738281 79.425781 307.464844 Z M 79.425781 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.828125 307.464844 C 74.828125 306.191406 73.796875 305.160156 72.523438 305.160156 C 71.25 305.160156 70.21875 306.191406 70.21875 307.464844 C 70.21875 308.738281 71.25 309.769531 72.523438 309.769531 C 73.796875 309.769531 74.828125 308.738281 74.828125 307.464844 Z M 74.828125 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.128906 307.464844 C 90.128906 306.191406 89.097656 305.160156 87.824219 305.160156 C 86.550781 305.160156 85.519531 306.191406 85.519531 307.464844 C 85.519531 308.738281 86.550781 309.769531 87.824219 309.769531 C 89.097656 309.769531 90.128906 308.738281 90.128906 307.464844 Z M 90.128906 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.511719 307.464844 C 58.511719 306.191406 57.480469 305.160156 56.207031 305.160156 C 54.933594 305.160156 53.902344 306.191406 53.902344 307.464844 C 53.902344 308.738281 54.933594 309.769531 56.207031 309.769531 C 57.480469 309.769531 58.511719 308.738281 58.511719 307.464844 Z M 58.511719 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.453125 307.464844 C 76.453125 306.191406 75.421875 305.160156 74.148438 305.160156 C 72.875 305.160156 71.84375 306.191406 71.84375 307.464844 C 71.84375 308.738281 72.875 309.769531 74.148438 309.769531 C 75.421875 309.769531 76.453125 308.738281 76.453125 307.464844 Z M 76.453125 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 98.644531 307.464844 C 98.644531 306.191406 97.613281 305.160156 96.339844 305.160156 C 95.066406 305.160156 94.035156 306.191406 94.035156 307.464844 C 94.035156 308.738281 95.066406 309.769531 96.339844 309.769531 C 97.613281 309.769531 98.644531 308.738281 98.644531 307.464844 Z M 98.644531 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.863281 307.464844 C 76.863281 306.191406 75.832031 305.160156 74.558594 305.160156 C 73.285156 305.160156 72.253906 306.191406 72.253906 307.464844 C 72.253906 308.738281 73.285156 309.769531 74.558594 309.769531 C 75.832031 309.769531 76.863281 308.738281 76.863281 307.464844 Z M 76.863281 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.898438 307.464844 C 62.898438 306.191406 61.867188 305.160156 60.59375 305.160156 C 59.320312 305.160156 58.289062 306.191406 58.289062 307.464844 C 58.289062 308.738281 59.320312 309.769531 60.59375 309.769531 C 61.867188 309.769531 62.898438 308.738281 62.898438 307.464844 Z M 62.898438 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.222656 307.464844 C 86.222656 306.191406 85.191406 305.160156 83.917969 305.160156 C 82.644531 305.160156 81.613281 306.191406 81.613281 307.464844 C 81.613281 308.738281 82.644531 309.769531 83.917969 309.769531 C 85.191406 309.769531 86.222656 308.738281 86.222656 307.464844 Z M 86.222656 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.742188 307.464844 C 85.742188 306.191406 84.710938 305.160156 83.4375 305.160156 C 82.164062 305.160156 81.132812 306.191406 81.132812 307.464844 C 81.132812 308.738281 82.164062 309.769531 83.4375 309.769531 C 84.710938 309.769531 85.742188 308.738281 85.742188 307.464844 Z M 85.742188 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57 307.464844 C 57 306.191406 55.96875 305.160156 54.695312 305.160156 C 53.421875 305.160156 52.390625 306.191406 52.390625 307.464844 C 52.390625 308.738281 53.421875 309.769531 54.695312 309.769531 C 55.96875 309.769531 57 308.738281 57 307.464844 Z M 57 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.734375 307.464844 C 68.734375 306.191406 67.703125 305.160156 66.429688 305.160156 C 65.15625 305.160156 64.125 306.191406 64.125 307.464844 C 64.125 308.738281 65.15625 309.769531 66.429688 309.769531 C 67.703125 309.769531 68.734375 308.738281 68.734375 307.464844 Z M 68.734375 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.230469 307.464844 C 87.230469 306.191406 86.199219 305.160156 84.925781 305.160156 C 83.652344 305.160156 82.621094 306.191406 82.621094 307.464844 C 82.621094 308.738281 83.652344 309.769531 84.925781 309.769531 C 86.199219 309.769531 87.230469 308.738281 87.230469 307.464844 Z M 87.230469 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.195312 307.464844 C 79.195312 306.191406 78.164062 305.160156 76.890625 305.160156 C 75.617188 305.160156 74.585938 306.191406 74.585938 307.464844 C 74.585938 308.738281 75.617188 309.769531 76.890625 309.769531 C 78.164062 309.769531 79.195312 308.738281 79.195312 307.464844 Z M 79.195312 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.867188 307.464844 C 70.867188 306.191406 69.835938 305.160156 68.5625 305.160156 C 67.289062 305.160156 66.257812 306.191406 66.257812 307.464844 C 66.257812 308.738281 67.289062 309.769531 68.5625 309.769531 C 69.835938 309.769531 70.867188 308.738281 70.867188 307.464844 Z M 70.867188 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.09375 307.464844 C 99.09375 306.191406 98.0625 305.160156 96.789062 305.160156 C 95.515625 305.160156 94.484375 306.191406 94.484375 307.464844 C 94.484375 308.738281 95.515625 309.769531 96.789062 309.769531 C 98.0625 309.769531 99.09375 308.738281 99.09375 307.464844 Z M 99.09375 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.523438 307.464844 C 75.523438 306.191406 74.492188 305.160156 73.21875 305.160156 C 71.945312 305.160156 70.914062 306.191406 70.914062 307.464844 C 70.914062 308.738281 71.945312 309.769531 73.21875 309.769531 C 74.492188 309.769531 75.523438 308.738281 75.523438 307.464844 Z M 75.523438 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.203125 307.464844 C 82.203125 306.191406 81.171875 305.160156 79.898438 305.160156 C 78.625 305.160156 77.59375 306.191406 77.59375 307.464844 C 77.59375 308.738281 78.625 309.769531 79.898438 309.769531 C 81.171875 309.769531 82.203125 308.738281 82.203125 307.464844 Z M 82.203125 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.222656 307.464844 C 94.222656 306.191406 93.191406 305.160156 91.917969 305.160156 C 90.644531 305.160156 89.613281 306.191406 89.613281 307.464844 C 89.613281 308.738281 90.644531 309.769531 91.917969 309.769531 C 93.191406 309.769531 94.222656 308.738281 94.222656 307.464844 Z M 94.222656 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.863281 307.464844 C 60.863281 306.191406 59.832031 305.160156 58.558594 305.160156 C 57.285156 305.160156 56.253906 306.191406 56.253906 307.464844 C 56.253906 308.738281 57.285156 309.769531 58.558594 309.769531 C 59.832031 309.769531 60.863281 308.738281 60.863281 307.464844 Z M 60.863281 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.769531 307.464844 C 69.769531 306.191406 68.738281 305.160156 67.464844 305.160156 C 66.191406 305.160156 65.160156 306.191406 65.160156 307.464844 C 65.160156 308.738281 66.191406 309.769531 67.464844 309.769531 C 68.738281 309.769531 69.769531 308.738281 69.769531 307.464844 Z M 69.769531 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 97.195312 307.464844 C 97.195312 306.191406 96.164062 305.160156 94.890625 305.160156 C 93.617188 305.160156 92.585938 306.191406 92.585938 307.464844 C 92.585938 308.738281 93.617188 309.769531 94.890625 309.769531 C 96.164062 309.769531 97.195312 308.738281 97.195312 307.464844 Z M 97.195312 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.429688 307.464844 C 90.429688 306.191406 89.398438 305.160156 88.125 305.160156 C 86.851562 305.160156 85.820312 306.191406 85.820312 307.464844 C 85.820312 308.738281 86.851562 309.769531 88.125 309.769531 C 89.398438 309.769531 90.429688 308.738281 90.429688 307.464844 Z M 90.429688 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.0625 307.464844 C 76.0625 306.191406 75.03125 305.160156 73.757812 305.160156 C 72.484375 305.160156 71.453125 306.191406 71.453125 307.464844 C 71.453125 308.738281 72.484375 309.769531 73.757812 309.769531 C 75.03125 309.769531 76.0625 308.738281 76.0625 307.464844 Z M 76.0625 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 98.972656 307.464844 C 98.972656 306.191406 97.941406 305.160156 96.667969 305.160156 C 95.394531 305.160156 94.363281 306.191406 94.363281 307.464844 C 94.363281 308.738281 95.394531 309.769531 96.667969 309.769531 C 97.941406 309.769531 98.972656 308.738281 98.972656 307.464844 Z M 98.972656 307.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 59.933594 302.621094 C 59.933594 301.347656 58.902344 300.316406 57.628906 300.316406 C 56.355469 300.316406 55.324219 301.347656 55.324219 302.621094 C 55.324219 303.894531 56.355469 304.925781 57.628906 304.925781 C 58.902344 304.925781 59.933594 303.894531 59.933594 302.621094 Z M 59.933594 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.386719 302.621094 C 93.386719 301.347656 92.355469 300.316406 91.082031 300.316406 C 89.808594 300.316406 88.777344 301.347656 88.777344 302.621094 C 88.777344 303.894531 89.808594 304.925781 91.082031 304.925781 C 92.355469 304.925781 93.386719 303.894531 93.386719 302.621094 Z M 93.386719 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.957031 302.621094 C 72.957031 301.347656 71.925781 300.316406 70.652344 300.316406 C 69.378906 300.316406 68.347656 301.347656 68.347656 302.621094 C 68.347656 303.894531 69.378906 304.925781 70.652344 304.925781 C 71.925781 304.925781 72.957031 303.894531 72.957031 302.621094 Z M 72.957031 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.441406 302.621094 C 91.441406 301.347656 90.410156 300.316406 89.136719 300.316406 C 87.863281 300.316406 86.832031 301.347656 86.832031 302.621094 C 86.832031 303.894531 87.863281 304.925781 89.136719 304.925781 C 90.410156 304.925781 91.441406 303.894531 91.441406 302.621094 Z M 91.441406 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.507812 302.621094 C 85.507812 301.347656 84.476562 300.316406 83.203125 300.316406 C 81.929688 300.316406 80.898438 301.347656 80.898438 302.621094 C 80.898438 303.894531 81.929688 304.925781 83.203125 304.925781 C 84.476562 304.925781 85.507812 303.894531 85.507812 302.621094 Z M 85.507812 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.039062 302.621094 C 77.039062 301.347656 76.007812 300.316406 74.734375 300.316406 C 73.460938 300.316406 72.429688 301.347656 72.429688 302.621094 C 72.429688 303.894531 73.460938 304.925781 74.734375 304.925781 C 76.007812 304.925781 77.039062 303.894531 77.039062 302.621094 Z M 77.039062 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.457031 302.621094 C 72.457031 301.347656 71.425781 300.316406 70.152344 300.316406 C 68.878906 300.316406 67.847656 301.347656 67.847656 302.621094 C 67.847656 303.894531 68.878906 304.925781 70.152344 304.925781 C 71.425781 304.925781 72.457031 303.894531 72.457031 302.621094 Z M 72.457031 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.707031 302.621094 C 87.707031 301.347656 86.675781 300.316406 85.402344 300.316406 C 84.128906 300.316406 83.097656 301.347656 83.097656 302.621094 C 83.097656 303.894531 84.128906 304.925781 85.402344 304.925781 C 86.675781 304.925781 87.707031 303.894531 87.707031 302.621094 Z M 87.707031 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.195312 302.621094 C 56.195312 301.347656 55.164062 300.316406 53.890625 300.316406 C 52.617188 300.316406 51.585938 301.347656 51.585938 302.621094 C 51.585938 303.894531 52.617188 304.925781 53.890625 304.925781 C 55.164062 304.925781 56.195312 303.894531 56.195312 302.621094 Z M 56.195312 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.078125 302.621094 C 74.078125 301.347656 73.046875 300.316406 71.773438 300.316406 C 70.5 300.316406 69.46875 301.347656 69.46875 302.621094 C 69.46875 303.894531 70.5 304.925781 71.773438 304.925781 C 73.046875 304.925781 74.078125 303.894531 74.078125 302.621094 Z M 74.078125 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.195312 302.621094 C 96.195312 301.347656 95.164062 300.316406 93.890625 300.316406 C 92.617188 300.316406 91.585938 301.347656 91.585938 302.621094 C 91.585938 303.894531 92.617188 304.925781 93.890625 304.925781 C 95.164062 304.925781 96.195312 303.894531 96.195312 302.621094 Z M 96.195312 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.488281 302.621094 C 74.488281 301.347656 73.457031 300.316406 72.183594 300.316406 C 70.910156 300.316406 69.878906 301.347656 69.878906 302.621094 C 69.878906 303.894531 70.910156 304.925781 72.183594 304.925781 C 73.457031 304.925781 74.488281 303.894531 74.488281 302.621094 Z M 74.488281 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.566406 302.621094 C 60.566406 301.347656 59.535156 300.316406 58.261719 300.316406 C 56.988281 300.316406 55.957031 301.347656 55.957031 302.621094 C 55.957031 303.894531 56.988281 304.925781 58.261719 304.925781 C 59.535156 304.925781 60.566406 303.894531 60.566406 302.621094 Z M 60.566406 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.816406 302.621094 C 83.816406 301.347656 82.785156 300.316406 81.511719 300.316406 C 80.238281 300.316406 79.207031 301.347656 79.207031 302.621094 C 79.207031 303.894531 80.238281 304.925781 81.511719 304.925781 C 82.785156 304.925781 83.816406 303.894531 83.816406 302.621094 Z M 83.816406 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.335938 302.621094 C 83.335938 301.347656 82.304688 300.316406 81.03125 300.316406 C 79.757812 300.316406 78.726562 301.347656 78.726562 302.621094 C 78.726562 303.894531 79.757812 304.925781 81.03125 304.925781 C 82.304688 304.925781 83.335938 303.894531 83.335938 302.621094 Z M 83.335938 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.511719 302.621094 C 74.511719 301.347656 73.480469 300.316406 72.207031 300.316406 C 70.933594 300.316406 69.902344 301.347656 69.902344 302.621094 C 69.902344 303.894531 70.933594 304.925781 72.207031 304.925781 C 73.480469 304.925781 74.511719 303.894531 74.511719 302.621094 Z M 74.511719 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.382812 302.621094 C 66.382812 301.347656 65.351562 300.316406 64.078125 300.316406 C 62.804688 300.316406 61.773438 301.347656 61.773438 302.621094 C 61.773438 303.894531 62.804688 304.925781 64.078125 304.925781 C 65.351562 304.925781 66.382812 303.894531 66.382812 302.621094 Z M 66.382812 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.820312 302.621094 C 84.820312 301.347656 83.789062 300.316406 82.515625 300.316406 C 81.242188 300.316406 80.210938 301.347656 80.210938 302.621094 C 80.210938 303.894531 81.242188 304.925781 82.515625 304.925781 C 83.789062 304.925781 84.820312 303.894531 84.820312 302.621094 Z M 84.820312 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.808594 302.621094 C 76.808594 301.347656 75.777344 300.316406 74.503906 300.316406 C 73.230469 300.316406 72.199219 301.347656 72.199219 302.621094 C 72.199219 303.894531 73.230469 304.925781 74.503906 304.925781 C 75.777344 304.925781 76.808594 303.894531 76.808594 302.621094 Z M 76.808594 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.511719 302.621094 C 68.511719 301.347656 67.480469 300.316406 66.207031 300.316406 C 64.933594 300.316406 63.902344 301.347656 63.902344 302.621094 C 63.902344 303.894531 64.933594 304.925781 66.207031 304.925781 C 67.480469 304.925781 68.511719 303.894531 68.511719 302.621094 Z M 68.511719 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.640625 302.621094 C 96.640625 301.347656 95.609375 300.316406 94.335938 300.316406 C 93.0625 300.316406 92.03125 301.347656 92.03125 302.621094 C 92.03125 303.894531 93.0625 304.925781 94.335938 304.925781 C 95.609375 304.925781 96.640625 303.894531 96.640625 302.621094 Z M 96.640625 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.148438 302.621094 C 73.148438 301.347656 72.117188 300.316406 70.84375 300.316406 C 69.570312 300.316406 68.539062 301.347656 68.539062 302.621094 C 68.539062 303.894531 69.570312 304.925781 70.84375 304.925781 C 72.117188 304.925781 73.148438 303.894531 73.148438 302.621094 Z M 73.148438 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.808594 302.621094 C 79.808594 301.347656 78.777344 300.316406 77.503906 300.316406 C 76.230469 300.316406 75.199219 301.347656 75.199219 302.621094 C 75.199219 303.894531 76.230469 304.925781 77.503906 304.925781 C 78.777344 304.925781 79.808594 303.894531 79.808594 302.621094 Z M 79.808594 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.789062 302.621094 C 91.789062 301.347656 90.757812 300.316406 89.484375 300.316406 C 88.210938 300.316406 87.179688 301.347656 87.179688 302.621094 C 87.179688 303.894531 88.210938 304.925781 89.484375 304.925781 C 90.757812 304.925781 91.789062 303.894531 91.789062 302.621094 Z M 91.789062 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.539062 302.621094 C 58.539062 301.347656 57.507812 300.316406 56.234375 300.316406 C 54.960938 300.316406 53.929688 301.347656 53.929688 302.621094 C 53.929688 303.894531 54.960938 304.925781 56.234375 304.925781 C 57.507812 304.925781 58.539062 303.894531 58.539062 302.621094 Z M 58.539062 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.414062 302.621094 C 67.414062 301.347656 66.382812 300.316406 65.109375 300.316406 C 63.835938 300.316406 62.804688 301.347656 62.804688 302.621094 C 62.804688 303.894531 63.835938 304.925781 65.109375 304.925781 C 66.382812 304.925781 67.414062 303.894531 67.414062 302.621094 Z M 67.414062 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.75 302.621094 C 94.75 301.347656 93.71875 300.316406 92.445312 300.316406 C 91.171875 300.316406 90.140625 301.347656 90.140625 302.621094 C 90.140625 303.894531 91.171875 304.925781 92.445312 304.925781 C 93.71875 304.925781 94.75 303.894531 94.75 302.621094 Z M 94.75 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.007812 302.621094 C 88.007812 301.347656 86.976562 300.316406 85.703125 300.316406 C 84.429688 300.316406 83.398438 301.347656 83.398438 302.621094 C 83.398438 303.894531 84.429688 304.925781 85.703125 304.925781 C 86.976562 304.925781 88.007812 303.894531 88.007812 302.621094 Z M 88.007812 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.6875 302.621094 C 73.6875 301.347656 72.65625 300.316406 71.382812 300.316406 C 70.109375 300.316406 69.078125 301.347656 69.078125 302.621094 C 69.078125 303.894531 70.109375 304.925781 71.382812 304.925781 C 72.65625 304.925781 73.6875 303.894531 73.6875 302.621094 Z M 73.6875 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.523438 302.621094 C 96.523438 301.347656 95.492188 300.316406 94.21875 300.316406 C 92.945312 300.316406 91.914062 301.347656 91.914062 302.621094 C 91.914062 303.894531 92.945312 304.925781 94.21875 304.925781 C 95.492188 304.925781 96.523438 303.894531 96.523438 302.621094 Z M 96.523438 302.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.550781 297.777344 C 57.550781 296.503906 56.519531 295.472656 55.246094 295.472656 C 53.972656 295.472656 52.941406 296.503906 52.941406 297.777344 C 52.941406 299.050781 53.972656 300.082031 55.246094 300.082031 C 56.519531 300.082031 57.550781 299.050781 57.550781 297.777344 Z M 57.550781 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.558594 297.777344 C 90.558594 296.503906 89.527344 295.472656 88.253906 295.472656 C 86.980469 295.472656 85.949219 296.503906 85.949219 297.777344 C 85.949219 299.050781 86.980469 300.082031 88.253906 300.082031 C 89.527344 300.082031 90.558594 299.050781 90.558594 297.777344 Z M 90.558594 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.398438 297.777344 C 70.398438 296.503906 69.367188 295.472656 68.09375 295.472656 C 66.820312 295.472656 65.789062 296.503906 65.789062 297.777344 C 65.789062 299.050781 66.820312 300.082031 68.09375 300.082031 C 69.367188 300.082031 70.398438 299.050781 70.398438 297.777344 Z M 70.398438 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.636719 297.777344 C 88.636719 296.503906 87.605469 295.472656 86.332031 295.472656 C 85.058594 295.472656 84.027344 296.503906 84.027344 297.777344 C 84.027344 299.050781 85.058594 300.082031 86.332031 300.082031 C 87.605469 300.082031 88.636719 299.050781 88.636719 297.777344 Z M 88.636719 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.785156 297.777344 C 82.785156 296.503906 81.753906 295.472656 80.480469 295.472656 C 79.207031 295.472656 78.175781 296.503906 78.175781 297.777344 C 78.175781 299.050781 79.207031 300.082031 80.480469 300.082031 C 81.753906 300.082031 82.785156 299.050781 82.785156 297.777344 Z M 82.785156 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.429688 297.777344 C 74.429688 296.503906 73.398438 295.472656 72.125 295.472656 C 70.851562 295.472656 69.820312 296.503906 69.820312 297.777344 C 69.820312 299.050781 70.851562 300.082031 72.125 300.082031 C 73.398438 300.082031 74.429688 299.050781 74.429688 297.777344 Z M 74.429688 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.910156 297.777344 C 69.910156 296.503906 68.878906 295.472656 67.605469 295.472656 C 66.332031 295.472656 65.300781 296.503906 65.300781 297.777344 C 65.300781 299.050781 66.332031 300.082031 67.605469 300.082031 C 68.878906 300.082031 69.910156 299.050781 69.910156 297.777344 Z M 69.910156 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.953125 297.777344 C 84.953125 296.503906 83.921875 295.472656 82.648438 295.472656 C 81.375 295.472656 80.34375 296.503906 80.34375 297.777344 C 80.34375 299.050781 81.375 300.082031 82.648438 300.082031 C 83.921875 300.082031 84.953125 299.050781 84.953125 297.777344 Z M 84.953125 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.863281 297.777344 C 53.863281 296.503906 52.832031 295.472656 51.558594 295.472656 C 50.285156 295.472656 49.253906 296.503906 49.253906 297.777344 C 49.253906 299.050781 50.285156 300.082031 51.558594 300.082031 C 52.832031 300.082031 53.863281 299.050781 53.863281 297.777344 Z M 53.863281 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.507812 297.777344 C 71.507812 296.503906 70.476562 295.472656 69.203125 295.472656 C 67.929688 295.472656 66.898438 296.503906 66.898438 297.777344 C 66.898438 299.050781 67.929688 300.082031 69.203125 300.082031 C 70.476562 300.082031 71.507812 299.050781 71.507812 297.777344 Z M 71.507812 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.328125 297.777344 C 93.328125 296.503906 92.296875 295.472656 91.023438 295.472656 C 89.75 295.472656 88.71875 296.503906 88.71875 297.777344 C 88.71875 299.050781 89.75 300.082031 91.023438 300.082031 C 92.296875 300.082031 93.328125 299.050781 93.328125 297.777344 Z M 93.328125 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.910156 297.777344 C 71.910156 296.503906 70.878906 295.472656 69.605469 295.472656 C 68.332031 295.472656 67.300781 296.503906 67.300781 297.777344 C 67.300781 299.050781 68.332031 300.082031 69.605469 300.082031 C 70.878906 300.082031 71.910156 299.050781 71.910156 297.777344 Z M 71.910156 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.175781 297.777344 C 58.175781 296.503906 57.144531 295.472656 55.871094 295.472656 C 54.597656 295.472656 53.566406 296.503906 53.566406 297.777344 C 53.566406 299.050781 54.597656 300.082031 55.871094 300.082031 C 57.144531 300.082031 58.175781 299.050781 58.175781 297.777344 Z M 58.175781 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.113281 297.777344 C 81.113281 296.503906 80.082031 295.472656 78.808594 295.472656 C 77.535156 295.472656 76.503906 296.503906 76.503906 297.777344 C 76.503906 299.050781 77.535156 300.082031 78.808594 300.082031 C 80.082031 300.082031 81.113281 299.050781 81.113281 297.777344 Z M 81.113281 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.640625 297.777344 C 80.640625 296.503906 79.609375 295.472656 78.335938 295.472656 C 77.0625 295.472656 76.03125 296.503906 76.03125 297.777344 C 76.03125 299.050781 77.0625 300.082031 78.335938 300.082031 C 79.609375 300.082031 80.640625 299.050781 80.640625 297.777344 Z M 80.640625 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.375 297.777344 C 52.375 296.503906 51.34375 295.472656 50.070312 295.472656 C 48.796875 295.472656 47.765625 296.503906 47.765625 297.777344 C 47.765625 299.050781 48.796875 300.082031 50.070312 300.082031 C 51.34375 300.082031 52.375 299.050781 52.375 297.777344 Z M 52.375 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.914062 297.777344 C 63.914062 296.503906 62.882812 295.472656 61.609375 295.472656 C 60.335938 295.472656 59.304688 296.503906 59.304688 297.777344 C 59.304688 299.050781 60.335938 300.082031 61.609375 300.082031 C 62.882812 300.082031 63.914062 299.050781 63.914062 297.777344 Z M 63.914062 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.105469 297.777344 C 82.105469 296.503906 81.074219 295.472656 79.800781 295.472656 C 78.527344 295.472656 77.496094 296.503906 77.496094 297.777344 C 77.496094 299.050781 78.527344 300.082031 79.800781 300.082031 C 81.074219 300.082031 82.105469 299.050781 82.105469 297.777344 Z M 82.105469 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.203125 297.777344 C 74.203125 296.503906 73.171875 295.472656 71.898438 295.472656 C 70.625 295.472656 69.59375 296.503906 69.59375 297.777344 C 69.59375 299.050781 70.625 300.082031 71.898438 300.082031 C 73.171875 300.082031 74.203125 299.050781 74.203125 297.777344 Z M 74.203125 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.011719 297.777344 C 66.011719 296.503906 64.980469 295.472656 63.707031 295.472656 C 62.433594 295.472656 61.402344 296.503906 61.402344 297.777344 C 61.402344 299.050781 62.433594 300.082031 63.707031 300.082031 C 64.980469 300.082031 66.011719 299.050781 66.011719 297.777344 Z M 66.011719 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.769531 297.777344 C 93.769531 296.503906 92.738281 295.472656 91.464844 295.472656 C 90.191406 295.472656 89.160156 296.503906 89.160156 297.777344 C 89.160156 299.050781 90.191406 300.082031 91.464844 300.082031 C 92.738281 300.082031 93.769531 299.050781 93.769531 297.777344 Z M 93.769531 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.589844 297.777344 C 70.589844 296.503906 69.558594 295.472656 68.285156 295.472656 C 67.011719 295.472656 65.980469 296.503906 65.980469 297.777344 C 65.980469 299.050781 67.011719 300.082031 68.285156 300.082031 C 69.558594 300.082031 70.589844 299.050781 70.589844 297.777344 Z M 70.589844 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.160156 297.777344 C 77.160156 296.503906 76.128906 295.472656 74.855469 295.472656 C 73.582031 295.472656 72.550781 296.503906 72.550781 297.777344 C 72.550781 299.050781 73.582031 300.082031 74.855469 300.082031 C 76.128906 300.082031 77.160156 299.050781 77.160156 297.777344 Z M 77.160156 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.980469 297.777344 C 88.980469 296.503906 87.949219 295.472656 86.675781 295.472656 C 85.402344 295.472656 84.371094 296.503906 84.371094 297.777344 C 84.371094 299.050781 85.402344 300.082031 86.675781 300.082031 C 87.949219 300.082031 88.980469 299.050781 88.980469 297.777344 Z M 88.980469 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.175781 297.777344 C 56.175781 296.503906 55.144531 295.472656 53.871094 295.472656 C 52.597656 295.472656 51.566406 296.503906 51.566406 297.777344 C 51.566406 299.050781 52.597656 300.082031 53.871094 300.082031 C 55.144531 300.082031 56.175781 299.050781 56.175781 297.777344 Z M 56.175781 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.929688 297.777344 C 64.929688 296.503906 63.898438 295.472656 62.625 295.472656 C 61.351562 295.472656 60.320312 296.503906 60.320312 297.777344 C 60.320312 299.050781 61.351562 300.082031 62.625 300.082031 C 63.898438 300.082031 64.929688 299.050781 64.929688 297.777344 Z M 64.929688 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.902344 297.777344 C 91.902344 296.503906 90.871094 295.472656 89.597656 295.472656 C 88.324219 295.472656 87.292969 296.503906 87.292969 297.777344 C 87.292969 299.050781 88.324219 300.082031 89.597656 300.082031 C 90.871094 300.082031 91.902344 299.050781 91.902344 297.777344 Z M 91.902344 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.253906 297.777344 C 85.253906 296.503906 84.222656 295.472656 82.949219 295.472656 C 81.675781 295.472656 80.644531 296.503906 80.644531 297.777344 C 80.644531 299.050781 81.675781 300.082031 82.949219 300.082031 C 84.222656 300.082031 85.253906 299.050781 85.253906 297.777344 Z M 85.253906 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.121094 297.777344 C 71.121094 296.503906 70.089844 295.472656 68.816406 295.472656 C 67.542969 295.472656 66.511719 296.503906 66.511719 297.777344 C 66.511719 299.050781 67.542969 300.082031 68.816406 300.082031 C 70.089844 300.082031 71.121094 299.050781 71.121094 297.777344 Z M 71.121094 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.652344 297.777344 C 93.652344 296.503906 92.621094 295.472656 91.347656 295.472656 C 90.074219 295.472656 89.042969 296.503906 89.042969 297.777344 C 89.042969 299.050781 90.074219 300.082031 91.347656 300.082031 C 92.621094 300.082031 93.652344 299.050781 93.652344 297.777344 Z M 93.652344 297.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.136719 292.933594 C 55.136719 291.660156 54.105469 290.628906 52.832031 290.628906 C 51.558594 290.628906 50.527344 291.660156 50.527344 292.933594 C 50.527344 294.207031 51.558594 295.238281 52.832031 295.238281 C 54.105469 295.238281 55.136719 294.207031 55.136719 292.933594 Z M 55.136719 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.367188 292.933594 C 87.367188 291.660156 86.335938 290.628906 85.0625 290.628906 C 83.789062 290.628906 82.757812 291.660156 82.757812 292.933594 C 82.757812 294.207031 83.789062 295.238281 85.0625 295.238281 C 86.335938 295.238281 87.367188 294.207031 87.367188 292.933594 Z M 87.367188 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.683594 292.933594 C 67.683594 291.660156 66.652344 290.628906 65.378906 290.628906 C 64.105469 290.628906 63.074219 291.660156 63.074219 292.933594 C 63.074219 294.207031 64.105469 295.238281 65.378906 295.238281 C 66.652344 295.238281 67.683594 294.207031 67.683594 292.933594 Z M 67.683594 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.496094 292.933594 C 85.496094 291.660156 84.464844 290.628906 83.191406 290.628906 C 81.917969 290.628906 80.886719 291.660156 80.886719 292.933594 C 80.886719 294.207031 81.917969 295.238281 83.191406 295.238281 C 84.464844 295.238281 85.496094 294.207031 85.496094 292.933594 Z M 85.496094 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.777344 292.933594 C 79.777344 291.660156 78.746094 290.628906 77.472656 290.628906 C 76.199219 290.628906 75.167969 291.660156 75.167969 292.933594 C 75.167969 294.207031 76.199219 295.238281 77.472656 295.238281 C 78.746094 295.238281 79.777344 294.207031 79.777344 292.933594 Z M 79.777344 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.617188 292.933594 C 71.617188 291.660156 70.585938 290.628906 69.3125 290.628906 C 68.039062 290.628906 67.007812 291.660156 67.007812 292.933594 C 67.007812 294.207031 68.039062 295.238281 69.3125 295.238281 C 70.585938 295.238281 71.617188 294.207031 71.617188 292.933594 Z M 71.617188 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.203125 292.933594 C 67.203125 291.660156 66.171875 290.628906 64.898438 290.628906 C 63.625 290.628906 62.59375 291.660156 62.59375 292.933594 C 62.59375 294.207031 63.625 295.238281 64.898438 295.238281 C 66.171875 295.238281 67.203125 294.207031 67.203125 292.933594 Z M 67.203125 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.898438 292.933594 C 81.898438 291.660156 80.867188 290.628906 79.59375 290.628906 C 78.320312 290.628906 77.289062 291.660156 77.289062 292.933594 C 77.289062 294.207031 78.320312 295.238281 79.59375 295.238281 C 80.867188 295.238281 81.898438 294.207031 81.898438 292.933594 Z M 81.898438 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.535156 292.933594 C 51.535156 291.660156 50.503906 290.628906 49.230469 290.628906 C 47.957031 290.628906 46.925781 291.660156 46.925781 292.933594 C 46.925781 294.207031 47.957031 295.238281 49.230469 295.238281 C 50.503906 295.238281 51.535156 294.207031 51.535156 292.933594 Z M 51.535156 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.765625 292.933594 C 68.765625 291.660156 67.734375 290.628906 66.460938 290.628906 C 65.1875 290.628906 64.15625 291.660156 64.15625 292.933594 C 64.15625 294.207031 65.1875 295.238281 66.460938 295.238281 C 67.734375 295.238281 68.765625 294.207031 68.765625 292.933594 Z M 68.765625 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.074219 292.933594 C 90.074219 291.660156 89.042969 290.628906 87.769531 290.628906 C 86.496094 290.628906 85.464844 291.660156 85.464844 292.933594 C 85.464844 294.207031 86.496094 295.238281 87.769531 295.238281 C 89.042969 295.238281 90.074219 294.207031 90.074219 292.933594 Z M 90.074219 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.160156 292.933594 C 69.160156 291.660156 68.128906 290.628906 66.855469 290.628906 C 65.582031 290.628906 64.550781 291.660156 64.550781 292.933594 C 64.550781 294.207031 65.582031 295.238281 66.855469 295.238281 C 68.128906 295.238281 69.160156 294.207031 69.160156 292.933594 Z M 69.160156 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.746094 292.933594 C 55.746094 291.660156 54.714844 290.628906 53.441406 290.628906 C 52.167969 290.628906 51.136719 291.660156 51.136719 292.933594 C 51.136719 294.207031 52.167969 295.238281 53.441406 295.238281 C 54.714844 295.238281 55.746094 294.207031 55.746094 292.933594 Z M 55.746094 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.144531 292.933594 C 78.144531 291.660156 77.113281 290.628906 75.839844 290.628906 C 74.566406 290.628906 73.535156 291.660156 73.535156 292.933594 C 73.535156 294.207031 74.566406 295.238281 75.839844 295.238281 C 77.113281 295.238281 78.144531 294.207031 78.144531 292.933594 Z M 78.144531 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.6875 292.933594 C 77.6875 291.660156 76.65625 290.628906 75.382812 290.628906 C 74.109375 290.628906 73.078125 291.660156 73.078125 292.933594 C 73.078125 294.207031 74.109375 295.238281 75.382812 295.238281 C 76.65625 295.238281 77.6875 294.207031 77.6875 292.933594 Z M 77.6875 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.082031 292.933594 C 50.082031 291.660156 49.050781 290.628906 47.777344 290.628906 C 46.503906 290.628906 45.472656 291.660156 45.472656 292.933594 C 45.472656 294.207031 46.503906 295.238281 47.777344 295.238281 C 49.050781 295.238281 50.082031 294.207031 50.082031 292.933594 Z M 50.082031 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.351562 292.933594 C 61.351562 291.660156 60.320312 290.628906 59.046875 290.628906 C 57.773438 290.628906 56.742188 291.660156 56.742188 292.933594 C 56.742188 294.207031 57.773438 295.238281 59.046875 295.238281 C 60.320312 295.238281 61.351562 294.207031 61.351562 292.933594 Z M 61.351562 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.113281 292.933594 C 79.113281 291.660156 78.082031 290.628906 76.808594 290.628906 C 75.535156 290.628906 74.503906 291.660156 74.503906 292.933594 C 74.503906 294.207031 75.535156 295.238281 76.808594 295.238281 C 78.082031 295.238281 79.113281 294.207031 79.113281 292.933594 Z M 79.113281 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.394531 292.933594 C 71.394531 291.660156 70.363281 290.628906 69.089844 290.628906 C 67.816406 290.628906 66.785156 291.660156 66.785156 292.933594 C 66.785156 294.207031 67.816406 295.238281 69.089844 295.238281 C 70.363281 295.238281 71.394531 294.207031 71.394531 292.933594 Z M 71.394531 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.402344 292.933594 C 63.402344 291.660156 62.371094 290.628906 61.097656 290.628906 C 59.824219 290.628906 58.792969 291.660156 58.792969 292.933594 C 58.792969 294.207031 59.824219 295.238281 61.097656 295.238281 C 62.371094 295.238281 63.402344 294.207031 63.402344 292.933594 Z M 63.402344 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.503906 292.933594 C 90.503906 291.660156 89.472656 290.628906 88.199219 290.628906 C 86.925781 290.628906 85.894531 291.660156 85.894531 292.933594 C 85.894531 294.207031 86.925781 295.238281 88.199219 295.238281 C 89.472656 295.238281 90.503906 294.207031 90.503906 292.933594 Z M 90.503906 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.871094 292.933594 C 67.871094 291.660156 66.839844 290.628906 65.566406 290.628906 C 64.292969 290.628906 63.261719 291.660156 63.261719 292.933594 C 63.261719 294.207031 64.292969 295.238281 65.566406 295.238281 C 66.839844 295.238281 67.871094 294.207031 67.871094 292.933594 Z M 67.871094 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.285156 292.933594 C 74.285156 291.660156 73.253906 290.628906 71.980469 290.628906 C 70.707031 290.628906 69.675781 291.660156 69.675781 292.933594 C 69.675781 294.207031 70.707031 295.238281 71.980469 295.238281 C 73.253906 295.238281 74.285156 294.207031 74.285156 292.933594 Z M 74.285156 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.828125 292.933594 C 85.828125 291.660156 84.796875 290.628906 83.523438 290.628906 C 82.25 290.628906 81.21875 291.660156 81.21875 292.933594 C 81.21875 294.207031 82.25 295.238281 83.523438 295.238281 C 84.796875 295.238281 85.828125 294.207031 85.828125 292.933594 Z M 85.828125 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.792969 292.933594 C 53.792969 291.660156 52.761719 290.628906 51.488281 290.628906 C 50.214844 290.628906 49.183594 291.660156 49.183594 292.933594 C 49.183594 294.207031 50.214844 295.238281 51.488281 295.238281 C 52.761719 295.238281 53.792969 294.207031 53.792969 292.933594 Z M 53.792969 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.34375 292.933594 C 62.34375 291.660156 61.3125 290.628906 60.039062 290.628906 C 58.765625 290.628906 57.734375 291.660156 57.734375 292.933594 C 57.734375 294.207031 58.765625 295.238281 60.039062 295.238281 C 61.3125 295.238281 62.34375 294.207031 62.34375 292.933594 Z M 62.34375 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.683594 292.933594 C 88.683594 291.660156 87.652344 290.628906 86.378906 290.628906 C 85.105469 290.628906 84.074219 291.660156 84.074219 292.933594 C 84.074219 294.207031 85.105469 295.238281 86.378906 295.238281 C 87.652344 295.238281 88.683594 294.207031 88.683594 292.933594 Z M 88.683594 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.1875 292.933594 C 82.1875 291.660156 81.15625 290.628906 79.882812 290.628906 C 78.609375 290.628906 77.578125 291.660156 77.578125 292.933594 C 77.578125 294.207031 78.609375 295.238281 79.882812 295.238281 C 81.15625 295.238281 82.1875 294.207031 82.1875 292.933594 Z M 82.1875 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.390625 292.933594 C 68.390625 291.660156 67.359375 290.628906 66.085938 290.628906 C 64.8125 290.628906 63.78125 291.660156 63.78125 292.933594 C 63.78125 294.207031 64.8125 295.238281 66.085938 295.238281 C 67.359375 295.238281 68.390625 294.207031 68.390625 292.933594 Z M 68.390625 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.390625 292.933594 C 90.390625 291.660156 89.359375 290.628906 88.085938 290.628906 C 86.8125 290.628906 85.78125 291.660156 85.78125 292.933594 C 85.78125 294.207031 86.8125 295.238281 88.085938 295.238281 C 89.359375 295.238281 90.390625 294.207031 90.390625 292.933594 Z M 90.390625 292.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.714844 288.089844 C 52.714844 286.816406 51.683594 285.785156 50.410156 285.785156 C 49.136719 285.785156 48.105469 286.816406 48.105469 288.089844 C 48.105469 289.363281 49.136719 290.394531 50.410156 290.394531 C 51.683594 290.394531 52.714844 289.363281 52.714844 288.089844 Z M 52.714844 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.851562 288.089844 C 83.851562 286.816406 82.820312 285.785156 81.546875 285.785156 C 80.273438 285.785156 79.242188 286.816406 79.242188 288.089844 C 79.242188 289.363281 80.273438 290.394531 81.546875 290.394531 C 82.820312 290.394531 83.851562 289.363281 83.851562 288.089844 Z M 83.851562 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.835938 288.089844 C 64.835938 286.816406 63.804688 285.785156 62.53125 285.785156 C 61.257812 285.785156 60.226562 286.816406 60.226562 288.089844 C 60.226562 289.363281 61.257812 290.394531 62.53125 290.394531 C 63.804688 290.394531 64.835938 289.363281 64.835938 288.089844 Z M 64.835938 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.039062 288.089844 C 82.039062 286.816406 81.007812 285.785156 79.734375 285.785156 C 78.460938 285.785156 77.429688 286.816406 77.429688 288.089844 C 77.429688 289.363281 78.460938 290.394531 79.734375 290.394531 C 81.007812 290.394531 82.039062 289.363281 82.039062 288.089844 Z M 82.039062 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.519531 288.089844 C 76.519531 286.816406 75.488281 285.785156 74.214844 285.785156 C 72.941406 285.785156 71.910156 286.816406 71.910156 288.089844 C 71.910156 289.363281 72.941406 290.394531 74.214844 290.394531 C 75.488281 290.394531 76.519531 289.363281 76.519531 288.089844 Z M 76.519531 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.636719 288.089844 C 68.636719 286.816406 67.605469 285.785156 66.332031 285.785156 C 65.058594 285.785156 64.027344 286.816406 64.027344 288.089844 C 64.027344 289.363281 65.058594 290.394531 66.332031 290.394531 C 67.605469 290.394531 68.636719 289.363281 68.636719 288.089844 Z M 68.636719 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.375 288.089844 C 64.375 286.816406 63.34375 285.785156 62.070312 285.785156 C 60.796875 285.785156 59.765625 286.816406 59.765625 288.089844 C 59.765625 289.363281 60.796875 290.394531 62.070312 290.394531 C 63.34375 290.394531 64.375 289.363281 64.375 288.089844 Z M 64.375 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.566406 288.089844 C 78.566406 286.816406 77.535156 285.785156 76.261719 285.785156 C 74.988281 285.785156 73.957031 286.816406 73.957031 288.089844 C 73.957031 289.363281 74.988281 290.394531 76.261719 290.394531 C 77.535156 290.394531 78.566406 289.363281 78.566406 288.089844 Z M 78.566406 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.238281 288.089844 C 49.238281 286.816406 48.207031 285.785156 46.933594 285.785156 C 45.660156 285.785156 44.628906 286.816406 44.628906 288.089844 C 44.628906 289.363281 45.660156 290.394531 46.933594 290.394531 C 48.207031 290.394531 49.238281 289.363281 49.238281 288.089844 Z M 49.238281 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.878906 288.089844 C 65.878906 286.816406 64.847656 285.785156 63.574219 285.785156 C 62.300781 285.785156 61.269531 286.816406 61.269531 288.089844 C 61.269531 289.363281 62.300781 290.394531 63.574219 290.394531 C 64.847656 290.394531 65.878906 289.363281 65.878906 288.089844 Z M 65.878906 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.464844 288.089844 C 86.464844 286.816406 85.433594 285.785156 84.160156 285.785156 C 82.886719 285.785156 81.855469 286.816406 81.855469 288.089844 C 81.855469 289.363281 82.886719 290.394531 84.160156 290.394531 C 85.433594 290.394531 86.464844 289.363281 86.464844 288.089844 Z M 86.464844 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.261719 288.089844 C 66.261719 286.816406 65.230469 285.785156 63.957031 285.785156 C 62.683594 285.785156 61.652344 286.816406 61.652344 288.089844 C 61.652344 289.363281 62.683594 290.394531 63.957031 290.394531 C 65.230469 290.394531 66.261719 289.363281 66.261719 288.089844 Z M 66.261719 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.304688 288.089844 C 53.304688 286.816406 52.273438 285.785156 51 285.785156 C 49.726562 285.785156 48.695312 286.816406 48.695312 288.089844 C 48.695312 289.363281 49.726562 290.394531 51 290.394531 C 52.273438 290.394531 53.304688 289.363281 53.304688 288.089844 Z M 53.304688 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.941406 288.089844 C 74.941406 286.816406 73.910156 285.785156 72.636719 285.785156 C 71.363281 285.785156 70.332031 286.816406 70.332031 288.089844 C 70.332031 289.363281 71.363281 290.394531 72.636719 290.394531 C 73.910156 290.394531 74.941406 289.363281 74.941406 288.089844 Z M 74.941406 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.496094 288.089844 C 74.496094 286.816406 73.464844 285.785156 72.191406 285.785156 C 70.917969 285.785156 69.886719 286.816406 69.886719 288.089844 C 69.886719 289.363281 70.917969 290.394531 72.191406 290.394531 C 73.464844 290.394531 74.496094 289.363281 74.496094 288.089844 Z M 74.496094 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.835938 288.089844 C 47.835938 286.816406 46.804688 285.785156 45.53125 285.785156 C 44.257812 285.785156 43.226562 286.816406 43.226562 288.089844 C 43.226562 289.363281 44.257812 290.394531 45.53125 290.394531 C 46.804688 290.394531 47.835938 289.363281 47.835938 288.089844 Z M 47.835938 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.71875 288.089844 C 58.71875 286.816406 57.6875 285.785156 56.414062 285.785156 C 55.140625 285.785156 54.109375 286.816406 54.109375 288.089844 C 54.109375 289.363281 55.140625 290.394531 56.414062 290.394531 C 57.6875 290.394531 58.71875 289.363281 58.71875 288.089844 Z M 58.71875 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.878906 288.089844 C 75.878906 286.816406 74.847656 285.785156 73.574219 285.785156 C 72.300781 285.785156 71.269531 286.816406 71.269531 288.089844 C 71.269531 289.363281 72.300781 290.394531 73.574219 290.394531 C 74.847656 290.394531 75.878906 289.363281 75.878906 288.089844 Z M 75.878906 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.421875 288.089844 C 68.421875 286.816406 67.390625 285.785156 66.117188 285.785156 C 64.84375 285.785156 63.8125 286.816406 63.8125 288.089844 C 63.8125 289.363281 64.84375 290.394531 66.117188 290.394531 C 67.390625 290.394531 68.421875 289.363281 68.421875 288.089844 Z M 68.421875 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.699219 288.089844 C 60.699219 286.816406 59.667969 285.785156 58.394531 285.785156 C 57.121094 285.785156 56.089844 286.816406 56.089844 288.089844 C 56.089844 289.363281 57.121094 290.394531 58.394531 290.394531 C 59.667969 290.394531 60.699219 289.363281 60.699219 288.089844 Z M 60.699219 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.882812 288.089844 C 86.882812 286.816406 85.851562 285.785156 84.578125 285.785156 C 83.304688 285.785156 82.273438 286.816406 82.273438 288.089844 C 82.273438 289.363281 83.304688 290.394531 84.578125 290.394531 C 85.851562 290.394531 86.882812 289.363281 86.882812 288.089844 Z M 86.882812 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.015625 288.089844 C 65.015625 286.816406 63.984375 285.785156 62.710938 285.785156 C 61.4375 285.785156 60.40625 286.816406 60.40625 288.089844 C 60.40625 289.363281 61.4375 290.394531 62.710938 290.394531 C 63.984375 290.394531 65.015625 289.363281 65.015625 288.089844 Z M 65.015625 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.214844 288.089844 C 71.214844 286.816406 70.183594 285.785156 68.910156 285.785156 C 67.636719 285.785156 66.605469 286.816406 66.605469 288.089844 C 66.605469 289.363281 67.636719 290.394531 68.910156 290.394531 C 70.183594 290.394531 71.214844 289.363281 71.214844 288.089844 Z M 71.214844 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.363281 288.089844 C 82.363281 286.816406 81.332031 285.785156 80.058594 285.785156 C 78.785156 285.785156 77.753906 286.816406 77.753906 288.089844 C 77.753906 289.363281 78.785156 290.394531 80.058594 290.394531 C 81.332031 290.394531 82.363281 289.363281 82.363281 288.089844 Z M 82.363281 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.417969 288.089844 C 51.417969 286.816406 50.386719 285.785156 49.113281 285.785156 C 47.839844 285.785156 46.808594 286.816406 46.808594 288.089844 C 46.808594 289.363281 47.839844 290.394531 49.113281 290.394531 C 50.386719 290.394531 51.417969 289.363281 51.417969 288.089844 Z M 51.417969 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 59.679688 288.089844 C 59.679688 286.816406 58.648438 285.785156 57.375 285.785156 C 56.101562 285.785156 55.070312 286.816406 55.070312 288.089844 C 55.070312 289.363281 56.101562 290.394531 57.375 290.394531 C 58.648438 290.394531 59.679688 289.363281 59.679688 288.089844 Z M 59.679688 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.121094 288.089844 C 85.121094 286.816406 84.089844 285.785156 82.816406 285.785156 C 81.542969 285.785156 80.511719 286.816406 80.511719 288.089844 C 80.511719 289.363281 81.542969 290.394531 82.816406 290.394531 C 84.089844 290.394531 85.121094 289.363281 85.121094 288.089844 Z M 85.121094 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.847656 288.089844 C 78.847656 286.816406 77.816406 285.785156 76.542969 285.785156 C 75.269531 285.785156 74.238281 286.816406 74.238281 288.089844 C 74.238281 289.363281 75.269531 290.394531 76.542969 290.394531 C 77.816406 290.394531 78.847656 289.363281 78.847656 288.089844 Z M 78.847656 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.515625 288.089844 C 65.515625 286.816406 64.484375 285.785156 63.210938 285.785156 C 61.9375 285.785156 60.90625 286.816406 60.90625 288.089844 C 60.90625 289.363281 61.9375 290.394531 63.210938 290.394531 C 64.484375 290.394531 65.515625 289.363281 65.515625 288.089844 Z M 65.515625 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.769531 288.089844 C 86.769531 286.816406 85.738281 285.785156 84.464844 285.785156 C 83.191406 285.785156 82.160156 286.816406 82.160156 288.089844 C 82.160156 289.363281 83.191406 290.394531 84.464844 290.394531 C 85.738281 290.394531 86.769531 289.363281 86.769531 288.089844 Z M 86.769531 288.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.3125 283.246094 C 50.3125 281.972656 49.28125 280.941406 48.007812 280.941406 C 46.734375 280.941406 45.703125 281.972656 45.703125 283.246094 C 45.703125 284.519531 46.734375 285.550781 48.007812 285.550781 C 49.28125 285.550781 50.3125 284.519531 50.3125 283.246094 Z M 50.3125 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.039062 283.246094 C 80.039062 281.972656 79.007812 280.941406 77.734375 280.941406 C 76.460938 280.941406 75.429688 281.972656 75.429688 283.246094 C 75.429688 284.519531 76.460938 285.550781 77.734375 285.550781 C 79.007812 285.550781 80.039062 284.519531 80.039062 283.246094 Z M 80.039062 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.886719 283.246094 C 61.886719 281.972656 60.855469 280.941406 59.582031 280.941406 C 58.308594 280.941406 57.277344 281.972656 57.277344 283.246094 C 57.277344 284.519531 58.308594 285.550781 59.582031 285.550781 C 60.855469 285.550781 61.886719 284.519531 61.886719 283.246094 Z M 61.886719 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.3125 283.246094 C 78.3125 281.972656 77.28125 280.941406 76.007812 280.941406 C 74.734375 280.941406 73.703125 281.972656 73.703125 283.246094 C 73.703125 284.519531 74.734375 285.550781 76.007812 285.550781 C 77.28125 285.550781 78.3125 284.519531 78.3125 283.246094 Z M 78.3125 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.039062 283.246094 C 73.039062 281.972656 72.007812 280.941406 70.734375 280.941406 C 69.460938 280.941406 68.429688 281.972656 68.429688 283.246094 C 68.429688 284.519531 69.460938 285.550781 70.734375 285.550781 C 72.007812 285.550781 73.039062 284.519531 73.039062 283.246094 Z M 73.039062 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.515625 283.246094 C 65.515625 281.972656 64.484375 280.941406 63.210938 280.941406 C 61.9375 280.941406 60.90625 281.972656 60.90625 283.246094 C 60.90625 284.519531 61.9375 285.550781 63.210938 285.550781 C 64.484375 285.550781 65.515625 284.519531 65.515625 283.246094 Z M 65.515625 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.445312 283.246094 C 61.445312 281.972656 60.414062 280.941406 59.140625 280.941406 C 57.867188 280.941406 56.835938 281.972656 56.835938 283.246094 C 56.835938 284.519531 57.867188 285.550781 59.140625 285.550781 C 60.414062 285.550781 61.445312 284.519531 61.445312 283.246094 Z M 61.445312 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.992188 283.246094 C 74.992188 281.972656 73.960938 280.941406 72.6875 280.941406 C 71.414062 280.941406 70.382812 281.972656 70.382812 283.246094 C 70.382812 284.519531 71.414062 285.550781 72.6875 285.550781 C 73.960938 285.550781 74.992188 284.519531 74.992188 283.246094 Z M 74.992188 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.992188 283.246094 C 46.992188 281.972656 45.960938 280.941406 44.6875 280.941406 C 43.414062 280.941406 42.382812 281.972656 42.382812 283.246094 C 42.382812 284.519531 43.414062 285.550781 44.6875 285.550781 C 45.960938 285.550781 46.992188 284.519531 46.992188 283.246094 Z M 46.992188 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.882812 283.246094 C 62.882812 281.972656 61.851562 280.941406 60.578125 280.941406 C 59.304688 280.941406 58.273438 281.972656 58.273438 283.246094 C 58.273438 284.519531 59.304688 285.550781 60.578125 285.550781 C 61.851562 285.550781 62.882812 284.519531 62.882812 283.246094 Z M 62.882812 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.535156 283.246094 C 82.535156 281.972656 81.503906 280.941406 80.230469 280.941406 C 78.957031 280.941406 77.925781 281.972656 77.925781 283.246094 C 77.925781 284.519531 78.957031 285.550781 80.230469 285.550781 C 81.503906 285.550781 82.535156 284.519531 82.535156 283.246094 Z M 82.535156 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.246094 283.246094 C 63.246094 281.972656 62.214844 280.941406 60.941406 280.941406 C 59.667969 280.941406 58.636719 281.972656 58.636719 283.246094 C 58.636719 284.519531 59.667969 285.550781 60.941406 285.550781 C 62.214844 285.550781 63.246094 284.519531 63.246094 283.246094 Z M 63.246094 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.875 283.246094 C 50.875 281.972656 49.84375 280.941406 48.570312 280.941406 C 47.296875 280.941406 46.265625 281.972656 46.265625 283.246094 C 46.265625 284.519531 47.296875 285.550781 48.570312 285.550781 C 49.84375 285.550781 50.875 284.519531 50.875 283.246094 Z M 50.875 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.535156 283.246094 C 71.535156 281.972656 70.503906 280.941406 69.230469 280.941406 C 67.957031 280.941406 66.925781 281.972656 66.925781 283.246094 C 66.925781 284.519531 67.957031 285.550781 69.230469 285.550781 C 70.503906 285.550781 71.535156 284.519531 71.535156 283.246094 Z M 71.535156 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.109375 283.246094 C 71.109375 281.972656 70.078125 280.941406 68.804688 280.941406 C 67.53125 280.941406 66.5 281.972656 66.5 283.246094 C 66.5 284.519531 67.53125 285.550781 68.804688 285.550781 C 70.078125 285.550781 71.109375 284.519531 71.109375 283.246094 Z M 71.109375 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.652344 283.246094 C 45.652344 281.972656 44.621094 280.941406 43.347656 280.941406 C 42.074219 280.941406 41.042969 281.972656 41.042969 283.246094 C 41.042969 284.519531 42.074219 285.550781 43.347656 285.550781 C 44.621094 285.550781 45.652344 284.519531 45.652344 283.246094 Z M 45.652344 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.042969 283.246094 C 56.042969 281.972656 55.011719 280.941406 53.738281 280.941406 C 52.464844 280.941406 51.433594 281.972656 51.433594 283.246094 C 51.433594 284.519531 52.464844 285.550781 53.738281 285.550781 C 55.011719 285.550781 56.042969 284.519531 56.042969 283.246094 Z M 56.042969 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.425781 283.246094 C 72.425781 281.972656 71.394531 280.941406 70.121094 280.941406 C 68.847656 280.941406 67.816406 281.972656 67.816406 283.246094 C 67.816406 284.519531 68.847656 285.550781 70.121094 285.550781 C 71.394531 285.550781 72.425781 284.519531 72.425781 283.246094 Z M 72.425781 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.308594 283.246094 C 65.308594 281.972656 64.277344 280.941406 63.003906 280.941406 C 61.730469 280.941406 60.699219 281.972656 60.699219 283.246094 C 60.699219 284.519531 61.730469 285.550781 63.003906 285.550781 C 64.277344 285.550781 65.308594 284.519531 65.308594 283.246094 Z M 65.308594 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.933594 283.246094 C 57.933594 281.972656 56.902344 280.941406 55.628906 280.941406 C 54.355469 280.941406 53.324219 281.972656 53.324219 283.246094 C 53.324219 284.519531 54.355469 285.550781 55.628906 285.550781 C 56.902344 285.550781 57.933594 284.519531 57.933594 283.246094 Z M 57.933594 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.933594 283.246094 C 82.933594 281.972656 81.902344 280.941406 80.628906 280.941406 C 79.355469 280.941406 78.324219 281.972656 78.324219 283.246094 C 78.324219 284.519531 79.355469 285.550781 80.628906 285.550781 C 81.902344 285.550781 82.933594 284.519531 82.933594 283.246094 Z M 82.933594 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.058594 283.246094 C 62.058594 281.972656 61.027344 280.941406 59.753906 280.941406 C 58.480469 280.941406 57.449219 281.972656 57.449219 283.246094 C 57.449219 284.519531 58.480469 285.550781 59.753906 285.550781 C 61.027344 285.550781 62.058594 284.519531 62.058594 283.246094 Z M 62.058594 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.976562 283.246094 C 67.976562 281.972656 66.945312 280.941406 65.671875 280.941406 C 64.398438 280.941406 63.367188 281.972656 63.367188 283.246094 C 63.367188 284.519531 64.398438 285.550781 65.671875 285.550781 C 66.945312 285.550781 67.976562 284.519531 67.976562 283.246094 Z M 67.976562 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.621094 283.246094 C 78.621094 281.972656 77.589844 280.941406 76.316406 280.941406 C 75.042969 280.941406 74.011719 281.972656 74.011719 283.246094 C 74.011719 284.519531 75.042969 285.550781 76.316406 285.550781 C 77.589844 285.550781 78.621094 284.519531 78.621094 283.246094 Z M 78.621094 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.074219 283.246094 C 49.074219 281.972656 48.042969 280.941406 46.769531 280.941406 C 45.496094 280.941406 44.464844 281.972656 44.464844 283.246094 C 44.464844 284.519531 45.496094 285.550781 46.769531 285.550781 C 48.042969 285.550781 49.074219 284.519531 49.074219 283.246094 Z M 49.074219 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.960938 283.246094 C 56.960938 281.972656 55.929688 280.941406 54.65625 280.941406 C 53.382812 280.941406 52.351562 281.972656 52.351562 283.246094 C 52.351562 284.519531 53.382812 285.550781 54.65625 285.550781 C 55.929688 285.550781 56.960938 284.519531 56.960938 283.246094 Z M 56.960938 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.25 283.246094 C 81.25 281.972656 80.21875 280.941406 78.945312 280.941406 C 77.671875 280.941406 76.640625 281.972656 76.640625 283.246094 C 76.640625 284.519531 77.671875 285.550781 78.945312 285.550781 C 80.21875 285.550781 81.25 284.519531 81.25 283.246094 Z M 81.25 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.261719 283.246094 C 75.261719 281.972656 74.230469 280.941406 72.957031 280.941406 C 71.683594 280.941406 70.652344 281.972656 70.652344 283.246094 C 70.652344 284.519531 71.683594 285.550781 72.957031 285.550781 C 74.230469 285.550781 75.261719 284.519531 75.261719 283.246094 Z M 75.261719 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.535156 283.246094 C 62.535156 281.972656 61.503906 280.941406 60.230469 280.941406 C 58.957031 280.941406 57.925781 281.972656 57.925781 283.246094 C 57.925781 284.519531 58.957031 285.550781 60.230469 285.550781 C 61.503906 285.550781 62.535156 284.519531 62.535156 283.246094 Z M 62.535156 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.828125 283.246094 C 82.828125 281.972656 81.796875 280.941406 80.523438 280.941406 C 79.25 280.941406 78.21875 281.972656 78.21875 283.246094 C 78.21875 284.519531 79.25 285.550781 80.523438 285.550781 C 81.796875 285.550781 82.828125 284.519531 82.828125 283.246094 Z M 82.828125 283.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.953125 278.402344 C 47.953125 277.128906 46.921875 276.097656 45.648438 276.097656 C 44.375 276.097656 43.34375 277.128906 43.34375 278.402344 C 43.34375 279.675781 44.375 280.707031 45.648438 280.707031 C 46.921875 280.707031 47.953125 279.675781 47.953125 278.402344 Z M 47.953125 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.972656 278.402344 C 75.972656 277.128906 74.941406 276.097656 73.667969 276.097656 C 72.394531 276.097656 71.363281 277.128906 71.363281 278.402344 C 71.363281 279.675781 72.394531 280.707031 73.667969 280.707031 C 74.941406 280.707031 75.972656 279.675781 75.972656 278.402344 Z M 75.972656 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.859375 278.402344 C 58.859375 277.128906 57.828125 276.097656 56.554688 276.097656 C 55.28125 276.097656 54.25 277.128906 54.25 278.402344 C 54.25 279.675781 55.28125 280.707031 56.554688 280.707031 C 57.828125 280.707031 58.859375 279.675781 58.859375 278.402344 Z M 58.859375 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.34375 278.402344 C 74.34375 277.128906 73.3125 276.097656 72.039062 276.097656 C 70.765625 276.097656 69.734375 277.128906 69.734375 278.402344 C 69.734375 279.675781 70.765625 280.707031 72.039062 280.707031 C 73.3125 280.707031 74.34375 279.675781 74.34375 278.402344 Z M 74.34375 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.375 278.402344 C 69.375 277.128906 68.34375 276.097656 67.070312 276.097656 C 65.796875 276.097656 64.765625 277.128906 64.765625 278.402344 C 64.765625 279.675781 65.796875 280.707031 67.070312 280.707031 C 68.34375 280.707031 69.375 279.675781 69.375 278.402344 Z M 69.375 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.28125 278.402344 C 62.28125 277.128906 61.25 276.097656 59.976562 276.097656 C 58.703125 276.097656 57.671875 277.128906 57.671875 278.402344 C 57.671875 279.675781 58.703125 280.707031 59.976562 280.707031 C 61.25 280.707031 62.28125 279.675781 62.28125 278.402344 Z M 62.28125 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.445312 278.402344 C 58.445312 277.128906 57.414062 276.097656 56.140625 276.097656 C 54.867188 276.097656 53.835938 277.128906 53.835938 278.402344 C 53.835938 279.675781 54.867188 280.707031 56.140625 280.707031 C 57.414062 280.707031 58.445312 279.675781 58.445312 278.402344 Z M 58.445312 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.214844 278.402344 C 71.214844 277.128906 70.183594 276.097656 68.910156 276.097656 C 67.636719 276.097656 66.605469 277.128906 66.605469 278.402344 C 66.605469 279.675781 67.636719 280.707031 68.910156 280.707031 C 70.183594 280.707031 71.214844 279.675781 71.214844 278.402344 Z M 71.214844 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.820312 278.402344 C 44.820312 277.128906 43.789062 276.097656 42.515625 276.097656 C 41.242188 276.097656 40.210938 277.128906 40.210938 278.402344 C 40.210938 279.675781 41.242188 280.707031 42.515625 280.707031 C 43.789062 280.707031 44.820312 279.675781 44.820312 278.402344 Z M 44.820312 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 59.800781 278.402344 C 59.800781 277.128906 58.769531 276.097656 57.496094 276.097656 C 56.222656 276.097656 55.191406 277.128906 55.191406 278.402344 C 55.191406 279.675781 56.222656 280.707031 57.496094 280.707031 C 58.769531 280.707031 59.800781 279.675781 59.800781 278.402344 Z M 59.800781 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.328125 278.402344 C 78.328125 277.128906 77.296875 276.097656 76.023438 276.097656 C 74.75 276.097656 73.71875 277.128906 73.71875 278.402344 C 73.71875 279.675781 74.75 280.707031 76.023438 280.707031 C 77.296875 280.707031 78.328125 279.675781 78.328125 278.402344 Z M 78.328125 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.144531 278.402344 C 60.144531 277.128906 59.113281 276.097656 57.839844 276.097656 C 56.566406 276.097656 55.535156 277.128906 55.535156 278.402344 C 55.535156 279.675781 56.566406 280.707031 57.839844 280.707031 C 59.113281 280.707031 60.144531 279.675781 60.144531 278.402344 Z M 60.144531 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.484375 278.402344 C 48.484375 277.128906 47.453125 276.097656 46.179688 276.097656 C 44.90625 276.097656 43.875 277.128906 43.875 278.402344 C 43.875 279.675781 44.90625 280.707031 46.179688 280.707031 C 47.453125 280.707031 48.484375 279.675781 48.484375 278.402344 Z M 48.484375 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.957031 278.402344 C 67.957031 277.128906 66.925781 276.097656 65.652344 276.097656 C 64.378906 276.097656 63.347656 277.128906 63.347656 278.402344 C 63.347656 279.675781 64.378906 280.707031 65.652344 280.707031 C 66.925781 280.707031 67.957031 279.675781 67.957031 278.402344 Z M 67.957031 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.554688 278.402344 C 67.554688 277.128906 66.523438 276.097656 65.25 276.097656 C 63.976562 276.097656 62.945312 277.128906 62.945312 278.402344 C 62.945312 279.675781 63.976562 280.707031 65.25 280.707031 C 66.523438 280.707031 67.554688 279.675781 67.554688 278.402344 Z M 67.554688 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.558594 278.402344 C 43.558594 277.128906 42.527344 276.097656 41.253906 276.097656 C 39.980469 276.097656 38.949219 277.128906 38.949219 278.402344 C 38.949219 279.675781 39.980469 280.707031 41.253906 280.707031 C 42.527344 280.707031 43.558594 279.675781 43.558594 278.402344 Z M 43.558594 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.355469 278.402344 C 53.355469 277.128906 52.324219 276.097656 51.050781 276.097656 C 49.777344 276.097656 48.746094 277.128906 48.746094 278.402344 C 48.746094 279.675781 49.777344 280.707031 51.050781 280.707031 C 52.324219 280.707031 53.355469 279.675781 53.355469 278.402344 Z M 53.355469 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.796875 278.402344 C 68.796875 277.128906 67.765625 276.097656 66.492188 276.097656 C 65.21875 276.097656 64.1875 277.128906 64.1875 278.402344 C 64.1875 279.675781 65.21875 280.707031 66.492188 280.707031 C 67.765625 280.707031 68.796875 279.675781 68.796875 278.402344 Z M 68.796875 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.089844 278.402344 C 62.089844 277.128906 61.058594 276.097656 59.785156 276.097656 C 58.511719 276.097656 57.480469 277.128906 57.480469 278.402344 C 57.480469 279.675781 58.511719 280.707031 59.785156 280.707031 C 61.058594 280.707031 62.089844 279.675781 62.089844 278.402344 Z M 62.089844 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.136719 278.402344 C 55.136719 277.128906 54.105469 276.097656 52.832031 276.097656 C 51.558594 276.097656 50.527344 277.128906 50.527344 278.402344 C 50.527344 279.675781 51.558594 280.707031 52.832031 280.707031 C 54.105469 280.707031 55.136719 279.675781 55.136719 278.402344 Z M 55.136719 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.699219 278.402344 C 78.699219 277.128906 77.667969 276.097656 76.394531 276.097656 C 75.121094 276.097656 74.089844 277.128906 74.089844 278.402344 C 74.089844 279.675781 75.121094 280.707031 76.394531 280.707031 C 77.667969 280.707031 78.699219 279.675781 78.699219 278.402344 Z M 78.699219 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 59.023438 278.402344 C 59.023438 277.128906 57.992188 276.097656 56.71875 276.097656 C 55.445312 276.097656 54.414062 277.128906 54.414062 278.402344 C 54.414062 279.675781 55.445312 280.707031 56.71875 280.707031 C 57.992188 280.707031 59.023438 279.675781 59.023438 278.402344 Z M 59.023438 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.601562 278.402344 C 64.601562 277.128906 63.570312 276.097656 62.296875 276.097656 C 61.023438 276.097656 59.992188 277.128906 59.992188 278.402344 C 59.992188 279.675781 61.023438 280.707031 62.296875 280.707031 C 63.570312 280.707031 64.601562 279.675781 64.601562 278.402344 Z M 64.601562 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.636719 278.402344 C 74.636719 277.128906 73.605469 276.097656 72.332031 276.097656 C 71.058594 276.097656 70.027344 277.128906 70.027344 278.402344 C 70.027344 279.675781 71.058594 280.707031 72.332031 280.707031 C 73.605469 280.707031 74.636719 279.675781 74.636719 278.402344 Z M 74.636719 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.785156 278.402344 C 46.785156 277.128906 45.753906 276.097656 44.480469 276.097656 C 43.207031 276.097656 42.175781 277.128906 42.175781 278.402344 C 42.175781 279.675781 43.207031 280.707031 44.480469 280.707031 C 45.753906 280.707031 46.785156 279.675781 46.785156 278.402344 Z M 46.785156 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.21875 278.402344 C 54.21875 277.128906 53.1875 276.097656 51.914062 276.097656 C 50.640625 276.097656 49.609375 277.128906 49.609375 278.402344 C 49.609375 279.675781 50.640625 280.707031 51.914062 280.707031 C 53.1875 280.707031 54.21875 279.675781 54.21875 278.402344 Z M 54.21875 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.113281 278.402344 C 77.113281 277.128906 76.082031 276.097656 74.808594 276.097656 C 73.535156 276.097656 72.503906 277.128906 72.503906 278.402344 C 72.503906 279.675781 73.535156 280.707031 74.808594 280.707031 C 76.082031 280.707031 77.113281 279.675781 77.113281 278.402344 Z M 77.113281 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.46875 278.402344 C 71.46875 277.128906 70.4375 276.097656 69.164062 276.097656 C 67.890625 276.097656 66.859375 277.128906 66.859375 278.402344 C 66.859375 279.675781 67.890625 280.707031 69.164062 280.707031 C 70.4375 280.707031 71.46875 279.675781 71.46875 278.402344 Z M 71.46875 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 59.472656 278.402344 C 59.472656 277.128906 58.441406 276.097656 57.167969 276.097656 C 55.894531 276.097656 54.863281 277.128906 54.863281 278.402344 C 54.863281 279.675781 55.894531 280.707031 57.167969 280.707031 C 58.441406 280.707031 59.472656 279.675781 59.472656 278.402344 Z M 59.472656 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.601562 278.402344 C 78.601562 277.128906 77.570312 276.097656 76.296875 276.097656 C 75.023438 276.097656 73.992188 277.128906 73.992188 278.402344 C 73.992188 279.675781 75.023438 280.707031 76.296875 280.707031 C 77.570312 280.707031 78.601562 279.675781 78.601562 278.402344 Z M 78.601562 278.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.65625 273.558594 C 45.65625 272.285156 44.625 271.253906 43.351562 271.253906 C 42.078125 271.253906 41.046875 272.285156 41.046875 273.558594 C 41.046875 274.832031 42.078125 275.863281 43.351562 275.863281 C 44.625 275.863281 45.65625 274.832031 45.65625 273.558594 Z M 45.65625 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.691406 273.558594 C 71.691406 272.285156 70.660156 271.253906 69.386719 271.253906 C 68.113281 271.253906 67.082031 272.285156 67.082031 273.558594 C 67.082031 274.832031 68.113281 275.863281 69.386719 275.863281 C 70.660156 275.863281 71.691406 274.832031 71.691406 273.558594 Z M 71.691406 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.792969 273.558594 C 55.792969 272.285156 54.761719 271.253906 53.488281 271.253906 C 52.214844 271.253906 51.183594 272.285156 51.183594 273.558594 C 51.183594 274.832031 52.214844 275.863281 53.488281 275.863281 C 54.761719 275.863281 55.792969 274.832031 55.792969 273.558594 Z M 55.792969 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.179688 273.558594 C 70.179688 272.285156 69.148438 271.253906 67.875 271.253906 C 66.601562 271.253906 65.570312 272.285156 65.570312 273.558594 C 65.570312 274.832031 66.601562 275.863281 67.875 275.863281 C 69.148438 275.863281 70.179688 274.832031 70.179688 273.558594 Z M 70.179688 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.5625 273.558594 C 65.5625 272.285156 64.53125 271.253906 63.257812 271.253906 C 61.984375 271.253906 60.953125 272.285156 60.953125 273.558594 C 60.953125 274.832031 61.984375 275.863281 63.257812 275.863281 C 64.53125 275.863281 65.5625 274.832031 65.5625 273.558594 Z M 65.5625 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.96875 273.558594 C 58.96875 272.285156 57.9375 271.253906 56.664062 271.253906 C 55.390625 271.253906 54.359375 272.285156 54.359375 273.558594 C 54.359375 274.832031 55.390625 275.863281 56.664062 275.863281 C 57.9375 275.863281 58.96875 274.832031 58.96875 273.558594 Z M 58.96875 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.40625 273.558594 C 55.40625 272.285156 54.375 271.253906 53.101562 271.253906 C 51.828125 271.253906 50.796875 272.285156 50.796875 273.558594 C 50.796875 274.832031 51.828125 275.863281 53.101562 275.863281 C 54.375 275.863281 55.40625 274.832031 55.40625 273.558594 Z M 55.40625 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.273438 273.558594 C 67.273438 272.285156 66.242188 271.253906 64.96875 271.253906 C 63.695312 271.253906 62.664062 272.285156 62.664062 273.558594 C 62.664062 274.832031 63.695312 275.863281 64.96875 275.863281 C 66.242188 275.863281 67.273438 274.832031 67.273438 273.558594 Z M 67.273438 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.75 273.558594 C 42.75 272.285156 41.71875 271.253906 40.445312 271.253906 C 39.171875 271.253906 38.140625 272.285156 38.140625 273.558594 C 38.140625 274.832031 39.171875 275.863281 40.445312 275.863281 C 41.71875 275.863281 42.75 274.832031 42.75 273.558594 Z M 42.75 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.664062 273.558594 C 56.664062 272.285156 55.632812 271.253906 54.359375 271.253906 C 53.085938 271.253906 52.054688 272.285156 52.054688 273.558594 C 52.054688 274.832031 53.085938 275.863281 54.359375 275.863281 C 55.632812 275.863281 56.664062 274.832031 56.664062 273.558594 Z M 56.664062 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.878906 273.558594 C 73.878906 272.285156 72.847656 271.253906 71.574219 271.253906 C 70.300781 271.253906 69.269531 272.285156 69.269531 273.558594 C 69.269531 274.832031 70.300781 275.863281 71.574219 275.863281 C 72.847656 275.863281 73.878906 274.832031 73.878906 273.558594 Z M 73.878906 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.984375 273.558594 C 56.984375 272.285156 55.953125 271.253906 54.679688 271.253906 C 53.40625 271.253906 52.375 272.285156 52.375 273.558594 C 52.375 274.832031 53.40625 275.863281 54.679688 275.863281 C 55.953125 275.863281 56.984375 274.832031 56.984375 273.558594 Z M 56.984375 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.148438 273.558594 C 46.148438 272.285156 45.117188 271.253906 43.84375 271.253906 C 42.570312 271.253906 41.539062 272.285156 41.539062 273.558594 C 41.539062 274.832031 42.570312 275.863281 43.84375 275.863281 C 45.117188 275.863281 46.148438 274.832031 46.148438 273.558594 Z M 46.148438 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.242188 273.558594 C 64.242188 272.285156 63.210938 271.253906 61.9375 271.253906 C 60.664062 271.253906 59.632812 272.285156 59.632812 273.558594 C 59.632812 274.832031 60.664062 275.863281 61.9375 275.863281 C 63.210938 275.863281 64.242188 274.832031 64.242188 273.558594 Z M 64.242188 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.871094 273.558594 C 63.871094 272.285156 62.839844 271.253906 61.566406 271.253906 C 60.292969 271.253906 59.261719 272.285156 59.261719 273.558594 C 59.261719 274.832031 60.292969 275.863281 61.566406 275.863281 C 62.839844 275.863281 63.871094 274.832031 63.871094 273.558594 Z M 63.871094 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.574219 273.558594 C 41.574219 272.285156 40.542969 271.253906 39.269531 271.253906 C 37.996094 271.253906 36.964844 272.285156 36.964844 273.558594 C 36.964844 274.832031 37.996094 275.863281 39.269531 275.863281 C 40.542969 275.863281 41.574219 274.832031 41.574219 273.558594 Z M 41.574219 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.675781 273.558594 C 50.675781 272.285156 49.644531 271.253906 48.371094 271.253906 C 47.097656 271.253906 46.066406 272.285156 46.066406 273.558594 C 46.066406 274.832031 47.097656 275.863281 48.371094 275.863281 C 49.644531 275.863281 50.675781 274.832031 50.675781 273.558594 Z M 50.675781 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.027344 273.558594 C 65.027344 272.285156 63.996094 271.253906 62.722656 271.253906 C 61.449219 271.253906 60.417969 272.285156 60.417969 273.558594 C 60.417969 274.832031 61.449219 275.863281 62.722656 275.863281 C 63.996094 275.863281 65.027344 274.832031 65.027344 273.558594 Z M 65.027344 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.789062 273.558594 C 58.789062 272.285156 57.757812 271.253906 56.484375 271.253906 C 55.210938 271.253906 54.179688 272.285156 54.179688 273.558594 C 54.179688 274.832031 55.210938 275.863281 56.484375 275.863281 C 57.757812 275.863281 58.789062 274.832031 58.789062 273.558594 Z M 58.789062 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.332031 273.558594 C 52.332031 272.285156 51.300781 271.253906 50.027344 271.253906 C 48.753906 271.253906 47.722656 272.285156 47.722656 273.558594 C 47.722656 274.832031 48.753906 275.863281 50.027344 275.863281 C 51.300781 275.863281 52.332031 274.832031 52.332031 273.558594 Z M 52.332031 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.226562 273.558594 C 74.226562 272.285156 73.195312 271.253906 71.921875 271.253906 C 70.648438 271.253906 69.617188 272.285156 69.617188 273.558594 C 69.617188 274.832031 70.648438 275.863281 71.921875 275.863281 C 73.195312 275.863281 74.226562 274.832031 74.226562 273.558594 Z M 74.226562 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.941406 273.558594 C 55.941406 272.285156 54.910156 271.253906 53.636719 271.253906 C 52.363281 271.253906 51.332031 272.285156 51.332031 273.558594 C 51.332031 274.832031 52.363281 275.863281 53.636719 275.863281 C 54.910156 275.863281 55.941406 274.832031 55.941406 273.558594 Z M 55.941406 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.125 273.558594 C 61.125 272.285156 60.09375 271.253906 58.820312 271.253906 C 57.546875 271.253906 56.515625 272.285156 56.515625 273.558594 C 56.515625 274.832031 57.546875 275.863281 58.820312 275.863281 C 60.09375 275.863281 61.125 274.832031 61.125 273.558594 Z M 61.125 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.449219 273.558594 C 70.449219 272.285156 69.417969 271.253906 68.144531 271.253906 C 66.871094 271.253906 65.839844 272.285156 65.839844 273.558594 C 65.839844 274.832031 66.871094 275.863281 68.144531 275.863281 C 69.417969 275.863281 70.449219 274.832031 70.449219 273.558594 Z M 70.449219 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.574219 273.558594 C 44.574219 272.285156 43.542969 271.253906 42.269531 271.253906 C 40.996094 271.253906 39.964844 272.285156 39.964844 273.558594 C 39.964844 274.832031 40.996094 275.863281 42.269531 275.863281 C 43.542969 275.863281 44.574219 274.832031 44.574219 273.558594 Z M 44.574219 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.480469 273.558594 C 51.480469 272.285156 50.449219 271.253906 49.175781 271.253906 C 47.902344 271.253906 46.871094 272.285156 46.871094 273.558594 C 46.871094 274.832031 47.902344 275.863281 49.175781 275.863281 C 50.449219 275.863281 51.480469 274.832031 51.480469 273.558594 Z M 51.480469 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.753906 273.558594 C 72.753906 272.285156 71.722656 271.253906 70.449219 271.253906 C 69.175781 271.253906 68.144531 272.285156 68.144531 273.558594 C 68.144531 274.832031 69.175781 275.863281 70.449219 275.863281 C 71.722656 275.863281 72.753906 274.832031 72.753906 273.558594 Z M 72.753906 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.507812 273.558594 C 67.507812 272.285156 66.476562 271.253906 65.203125 271.253906 C 63.929688 271.253906 62.898438 272.285156 62.898438 273.558594 C 62.898438 274.832031 63.929688 275.863281 65.203125 275.863281 C 66.476562 275.863281 67.507812 274.832031 67.507812 273.558594 Z M 67.507812 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.363281 273.558594 C 56.363281 272.285156 55.332031 271.253906 54.058594 271.253906 C 52.785156 271.253906 51.753906 272.285156 51.753906 273.558594 C 51.753906 274.832031 52.785156 275.863281 54.058594 275.863281 C 55.332031 275.863281 56.363281 274.832031 56.363281 273.558594 Z M 56.363281 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.132812 273.558594 C 74.132812 272.285156 73.101562 271.253906 71.828125 271.253906 C 70.554688 271.253906 69.523438 272.285156 69.523438 273.558594 C 69.523438 274.832031 70.554688 275.863281 71.828125 275.863281 C 73.101562 275.863281 74.132812 274.832031 74.132812 273.558594 Z M 74.132812 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.449219 268.714844 C 43.449219 267.441406 42.417969 266.410156 41.144531 266.410156 C 39.871094 266.410156 38.839844 267.441406 38.839844 268.714844 C 38.839844 269.988281 39.871094 271.019531 41.144531 271.019531 C 42.417969 271.019531 43.449219 269.988281 43.449219 268.714844 Z M 43.449219 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.238281 268.714844 C 67.238281 267.441406 66.207031 266.410156 64.933594 266.410156 C 63.660156 266.410156 62.628906 267.441406 62.628906 268.714844 C 62.628906 269.988281 63.660156 271.019531 64.933594 271.019531 C 66.207031 271.019531 67.238281 269.988281 67.238281 268.714844 Z M 67.238281 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.710938 268.714844 C 52.710938 267.441406 51.679688 266.410156 50.40625 266.410156 C 49.132812 266.410156 48.101562 267.441406 48.101562 268.714844 C 48.101562 269.988281 49.132812 271.019531 50.40625 271.019531 C 51.679688 271.019531 52.710938 269.988281 52.710938 268.714844 Z M 52.710938 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.855469 268.714844 C 65.855469 267.441406 64.824219 266.410156 63.550781 266.410156 C 62.277344 266.410156 61.246094 267.441406 61.246094 268.714844 C 61.246094 269.988281 62.277344 271.019531 63.550781 271.019531 C 64.824219 271.019531 65.855469 269.988281 65.855469 268.714844 Z M 65.855469 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.636719 268.714844 C 61.636719 267.441406 60.605469 266.410156 59.332031 266.410156 C 58.058594 266.410156 57.027344 267.441406 57.027344 268.714844 C 57.027344 269.988281 58.058594 271.019531 59.332031 271.019531 C 60.605469 271.019531 61.636719 269.988281 61.636719 268.714844 Z M 61.636719 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.613281 268.714844 C 55.613281 267.441406 54.582031 266.410156 53.308594 266.410156 C 52.035156 266.410156 51.003906 267.441406 51.003906 268.714844 C 51.003906 269.988281 52.035156 271.019531 53.308594 271.019531 C 54.582031 271.019531 55.613281 269.988281 55.613281 268.714844 Z M 55.613281 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.355469 268.714844 C 52.355469 267.441406 51.324219 266.410156 50.050781 266.410156 C 48.777344 266.410156 47.746094 267.441406 47.746094 268.714844 C 47.746094 269.988281 48.777344 271.019531 50.050781 271.019531 C 51.324219 271.019531 52.355469 269.988281 52.355469 268.714844 Z M 52.355469 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.199219 268.714844 C 63.199219 267.441406 62.167969 266.410156 60.894531 266.410156 C 59.621094 266.410156 58.589844 267.441406 58.589844 268.714844 C 58.589844 269.988281 59.621094 271.019531 60.894531 271.019531 C 62.167969 271.019531 63.199219 269.988281 63.199219 268.714844 Z M 63.199219 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.792969 268.714844 C 40.792969 267.441406 39.761719 266.410156 38.488281 266.410156 C 37.214844 266.410156 36.183594 267.441406 36.183594 268.714844 C 36.183594 269.988281 37.214844 271.019531 38.488281 271.019531 C 39.761719 271.019531 40.792969 269.988281 40.792969 268.714844 Z M 40.792969 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.507812 268.714844 C 53.507812 267.441406 52.476562 266.410156 51.203125 266.410156 C 49.929688 266.410156 48.898438 267.441406 48.898438 268.714844 C 48.898438 269.988281 49.929688 271.019531 51.203125 271.019531 C 52.476562 271.019531 53.507812 269.988281 53.507812 268.714844 Z M 53.507812 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.238281 268.714844 C 69.238281 267.441406 68.207031 266.410156 66.933594 266.410156 C 65.660156 266.410156 64.628906 267.441406 64.628906 268.714844 C 64.628906 269.988281 65.660156 271.019531 66.933594 271.019531 C 68.207031 271.019531 69.238281 269.988281 69.238281 268.714844 Z M 69.238281 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.800781 268.714844 C 53.800781 267.441406 52.769531 266.410156 51.496094 266.410156 C 50.222656 266.410156 49.191406 267.441406 49.191406 268.714844 C 49.191406 269.988281 50.222656 271.019531 51.496094 271.019531 C 52.769531 271.019531 53.800781 269.988281 53.800781 268.714844 Z M 53.800781 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.898438 268.714844 C 43.898438 267.441406 42.867188 266.410156 41.59375 266.410156 C 40.320312 266.410156 39.289062 267.441406 39.289062 268.714844 C 39.289062 269.988281 40.320312 271.019531 41.59375 271.019531 C 42.867188 271.019531 43.898438 269.988281 43.898438 268.714844 Z M 43.898438 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.433594 268.714844 C 60.433594 267.441406 59.402344 266.410156 58.128906 266.410156 C 56.855469 266.410156 55.824219 267.441406 55.824219 268.714844 C 55.824219 269.988281 56.855469 271.019531 58.128906 271.019531 C 59.402344 271.019531 60.433594 269.988281 60.433594 268.714844 Z M 60.433594 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.09375 268.714844 C 60.09375 267.441406 59.0625 266.410156 57.789062 266.410156 C 56.515625 266.410156 55.484375 267.441406 55.484375 268.714844 C 55.484375 269.988281 56.515625 271.019531 57.789062 271.019531 C 59.0625 271.019531 60.09375 269.988281 60.09375 268.714844 Z M 60.09375 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.71875 268.714844 C 39.71875 267.441406 38.6875 266.410156 37.414062 266.410156 C 36.140625 266.410156 35.109375 267.441406 35.109375 268.714844 C 35.109375 269.988281 36.140625 271.019531 37.414062 271.019531 C 38.6875 271.019531 39.71875 269.988281 39.71875 268.714844 Z M 39.71875 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.035156 268.714844 C 48.035156 267.441406 47.003906 266.410156 45.730469 266.410156 C 44.457031 266.410156 43.425781 267.441406 43.425781 268.714844 C 43.425781 269.988281 44.457031 271.019531 45.730469 271.019531 C 47.003906 271.019531 48.035156 269.988281 48.035156 268.714844 Z M 48.035156 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.148438 268.714844 C 61.148438 267.441406 60.117188 266.410156 58.84375 266.410156 C 57.570312 266.410156 56.539062 267.441406 56.539062 268.714844 C 56.539062 269.988281 57.570312 271.019531 58.84375 271.019531 C 60.117188 271.019531 61.148438 269.988281 61.148438 268.714844 Z M 61.148438 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.449219 268.714844 C 55.449219 267.441406 54.417969 266.410156 53.144531 266.410156 C 51.871094 266.410156 50.839844 267.441406 50.839844 268.714844 C 50.839844 269.988281 51.871094 271.019531 53.144531 271.019531 C 54.417969 271.019531 55.449219 269.988281 55.449219 268.714844 Z M 55.449219 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.550781 268.714844 C 49.550781 267.441406 48.519531 266.410156 47.246094 266.410156 C 45.972656 266.410156 44.941406 267.441406 44.941406 268.714844 C 44.941406 269.988281 45.972656 271.019531 47.246094 271.019531 C 48.519531 271.019531 49.550781 269.988281 49.550781 268.714844 Z M 49.550781 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.554688 268.714844 C 69.554688 267.441406 68.523438 266.410156 67.25 266.410156 C 65.976562 266.410156 64.945312 267.441406 64.945312 268.714844 C 64.945312 269.988281 65.976562 271.019531 67.25 271.019531 C 68.523438 271.019531 69.554688 269.988281 69.554688 268.714844 Z M 69.554688 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.847656 268.714844 C 52.847656 267.441406 51.816406 266.410156 50.542969 266.410156 C 49.269531 266.410156 48.238281 267.441406 48.238281 268.714844 C 48.238281 269.988281 49.269531 271.019531 50.542969 271.019531 C 51.816406 271.019531 52.847656 269.988281 52.847656 268.714844 Z M 52.847656 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.585938 268.714844 C 57.585938 267.441406 56.554688 266.410156 55.28125 266.410156 C 54.007812 266.410156 52.976562 267.441406 52.976562 268.714844 C 52.976562 269.988281 54.007812 271.019531 55.28125 271.019531 C 56.554688 271.019531 57.585938 269.988281 57.585938 268.714844 Z M 57.585938 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.105469 268.714844 C 66.105469 267.441406 65.074219 266.410156 63.800781 266.410156 C 62.527344 266.410156 61.496094 267.441406 61.496094 268.714844 C 61.496094 269.988281 62.527344 271.019531 63.800781 271.019531 C 65.074219 271.019531 66.105469 269.988281 66.105469 268.714844 Z M 66.105469 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.457031 268.714844 C 42.457031 267.441406 41.425781 266.410156 40.152344 266.410156 C 38.878906 266.410156 37.847656 267.441406 37.847656 268.714844 C 37.847656 269.988281 38.878906 271.019531 40.152344 271.019531 C 41.425781 271.019531 42.457031 269.988281 42.457031 268.714844 Z M 42.457031 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.769531 268.714844 C 48.769531 267.441406 47.738281 266.410156 46.464844 266.410156 C 45.191406 266.410156 44.160156 267.441406 44.160156 268.714844 C 44.160156 269.988281 45.191406 271.019531 46.464844 271.019531 C 47.738281 271.019531 48.769531 269.988281 48.769531 268.714844 Z M 48.769531 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.207031 268.714844 C 68.207031 267.441406 67.175781 266.410156 65.902344 266.410156 C 64.628906 266.410156 63.597656 267.441406 63.597656 268.714844 C 63.597656 269.988281 64.628906 271.019531 65.902344 271.019531 C 67.175781 271.019531 68.207031 269.988281 68.207031 268.714844 Z M 68.207031 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.414062 268.714844 C 63.414062 267.441406 62.382812 266.410156 61.109375 266.410156 C 59.835938 266.410156 58.804688 267.441406 58.804688 268.714844 C 58.804688 269.988281 59.835938 271.019531 61.109375 271.019531 C 62.382812 271.019531 63.414062 269.988281 63.414062 268.714844 Z M 63.414062 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.230469 268.714844 C 53.230469 267.441406 52.199219 266.410156 50.925781 266.410156 C 49.652344 266.410156 48.621094 267.441406 48.621094 268.714844 C 48.621094 269.988281 49.652344 271.019531 50.925781 271.019531 C 52.199219 271.019531 53.230469 269.988281 53.230469 268.714844 Z M 53.230469 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.46875 268.714844 C 69.46875 267.441406 68.4375 266.410156 67.164062 266.410156 C 65.890625 266.410156 64.859375 267.441406 64.859375 268.714844 C 64.859375 269.988281 65.890625 271.019531 67.164062 271.019531 C 68.4375 271.019531 69.46875 269.988281 69.46875 268.714844 Z M 69.46875 268.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.351562 263.871094 C 41.351562 262.597656 40.320312 261.566406 39.046875 261.566406 C 37.773438 261.566406 36.742188 262.597656 36.742188 263.871094 C 36.742188 265.144531 37.773438 266.175781 39.046875 266.175781 C 40.320312 266.175781 41.351562 265.144531 41.351562 263.871094 Z M 41.351562 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.660156 263.871094 C 62.660156 262.597656 61.628906 261.566406 60.355469 261.566406 C 59.082031 261.566406 58.050781 262.597656 58.050781 263.871094 C 58.050781 265.144531 59.082031 266.175781 60.355469 266.175781 C 61.628906 266.175781 62.660156 265.144531 62.660156 263.871094 Z M 62.660156 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.648438 263.871094 C 49.648438 262.597656 48.617188 261.566406 47.34375 261.566406 C 46.070312 261.566406 45.039062 262.597656 45.039062 263.871094 C 45.039062 265.144531 46.070312 266.175781 47.34375 266.175781 C 48.617188 266.175781 49.648438 265.144531 49.648438 263.871094 Z M 49.648438 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.421875 263.871094 C 61.421875 262.597656 60.390625 261.566406 59.117188 261.566406 C 57.84375 261.566406 56.8125 262.597656 56.8125 263.871094 C 56.8125 265.144531 57.84375 266.175781 59.117188 266.175781 C 60.390625 266.175781 61.421875 265.144531 61.421875 263.871094 Z M 61.421875 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.640625 263.871094 C 57.640625 262.597656 56.609375 261.566406 55.335938 261.566406 C 54.0625 261.566406 53.03125 262.597656 53.03125 263.871094 C 53.03125 265.144531 54.0625 266.175781 55.335938 266.175781 C 56.609375 266.175781 57.640625 265.144531 57.640625 263.871094 Z M 57.640625 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.246094 263.871094 C 52.246094 262.597656 51.214844 261.566406 49.941406 261.566406 C 48.667969 261.566406 47.636719 262.597656 47.636719 263.871094 C 47.636719 265.144531 48.667969 266.175781 49.941406 266.175781 C 51.214844 266.175781 52.246094 265.144531 52.246094 263.871094 Z M 52.246094 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.332031 263.871094 C 49.332031 262.597656 48.300781 261.566406 47.027344 261.566406 C 45.753906 261.566406 44.722656 262.597656 44.722656 263.871094 C 44.722656 265.144531 45.753906 266.175781 47.027344 266.175781 C 48.300781 266.175781 49.332031 265.144531 49.332031 263.871094 Z M 49.332031 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 59.042969 263.871094 C 59.042969 262.597656 58.011719 261.566406 56.738281 261.566406 C 55.464844 261.566406 54.433594 262.597656 54.433594 263.871094 C 54.433594 265.144531 55.464844 266.175781 56.738281 266.175781 C 58.011719 266.175781 59.042969 265.144531 59.042969 263.871094 Z M 59.042969 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.972656 263.871094 C 38.972656 262.597656 37.941406 261.566406 36.667969 261.566406 C 35.394531 261.566406 34.363281 262.597656 34.363281 263.871094 C 34.363281 265.144531 35.394531 266.175781 36.667969 266.175781 C 37.941406 266.175781 38.972656 265.144531 38.972656 263.871094 Z M 38.972656 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.359375 263.871094 C 50.359375 262.597656 49.328125 261.566406 48.054688 261.566406 C 46.78125 261.566406 45.75 262.597656 45.75 263.871094 C 45.75 265.144531 46.78125 266.175781 48.054688 266.175781 C 49.328125 266.175781 50.359375 265.144531 50.359375 263.871094 Z M 50.359375 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.449219 263.871094 C 64.449219 262.597656 63.417969 261.566406 62.144531 261.566406 C 60.871094 261.566406 59.839844 262.597656 59.839844 263.871094 C 59.839844 265.144531 60.871094 266.175781 62.144531 266.175781 C 63.417969 266.175781 64.449219 265.144531 64.449219 263.871094 Z M 64.449219 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.621094 263.871094 C 50.621094 262.597656 49.589844 261.566406 48.316406 261.566406 C 47.042969 261.566406 46.011719 262.597656 46.011719 263.871094 C 46.011719 265.144531 47.042969 266.175781 48.316406 266.175781 C 49.589844 266.175781 50.621094 265.144531 50.621094 263.871094 Z M 50.621094 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.757812 263.871094 C 41.757812 262.597656 40.726562 261.566406 39.453125 261.566406 C 38.179688 261.566406 37.148438 262.597656 37.148438 263.871094 C 37.148438 265.144531 38.179688 266.175781 39.453125 266.175781 C 40.726562 266.175781 41.757812 265.144531 41.757812 263.871094 Z M 41.757812 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.5625 263.871094 C 56.5625 262.597656 55.53125 261.566406 54.257812 261.566406 C 52.984375 261.566406 51.953125 262.597656 51.953125 263.871094 C 51.953125 265.144531 52.984375 266.175781 54.257812 266.175781 C 55.53125 266.175781 56.5625 265.144531 56.5625 263.871094 Z M 56.5625 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.257812 263.871094 C 56.257812 262.597656 55.226562 261.566406 53.953125 261.566406 C 52.679688 261.566406 51.648438 262.597656 51.648438 263.871094 C 51.648438 265.144531 52.679688 266.175781 53.953125 266.175781 C 55.226562 266.175781 56.257812 265.144531 56.257812 263.871094 Z M 56.257812 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.011719 263.871094 C 38.011719 262.597656 36.980469 261.566406 35.707031 261.566406 C 34.433594 261.566406 33.402344 262.597656 33.402344 263.871094 C 33.402344 265.144531 34.433594 266.175781 35.707031 266.175781 C 36.980469 266.175781 38.011719 265.144531 38.011719 263.871094 Z M 38.011719 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.460938 263.871094 C 45.460938 262.597656 44.429688 261.566406 43.15625 261.566406 C 41.882812 261.566406 40.851562 262.597656 40.851562 263.871094 C 40.851562 265.144531 41.882812 266.175781 43.15625 266.175781 C 44.429688 266.175781 45.460938 265.144531 45.460938 263.871094 Z M 45.460938 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.203125 263.871094 C 57.203125 262.597656 56.171875 261.566406 54.898438 261.566406 C 53.625 261.566406 52.59375 262.597656 52.59375 263.871094 C 52.59375 265.144531 53.625 266.175781 54.898438 266.175781 C 56.171875 266.175781 57.203125 265.144531 57.203125 263.871094 Z M 57.203125 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.101562 263.871094 C 52.101562 262.597656 51.070312 261.566406 49.796875 261.566406 C 48.523438 261.566406 47.492188 262.597656 47.492188 263.871094 C 47.492188 265.144531 48.523438 266.175781 49.796875 266.175781 C 51.070312 266.175781 52.101562 265.144531 52.101562 263.871094 Z M 52.101562 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.816406 263.871094 C 46.816406 262.597656 45.785156 261.566406 44.511719 261.566406 C 43.238281 261.566406 42.207031 262.597656 42.207031 263.871094 C 42.207031 265.144531 43.238281 266.175781 44.511719 266.175781 C 45.785156 266.175781 46.816406 265.144531 46.816406 263.871094 Z M 46.816406 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.734375 263.871094 C 64.734375 262.597656 63.703125 261.566406 62.429688 261.566406 C 61.15625 261.566406 60.125 262.597656 60.125 263.871094 C 60.125 265.144531 61.15625 266.175781 62.429688 266.175781 C 63.703125 266.175781 64.734375 265.144531 64.734375 263.871094 Z M 64.734375 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.769531 263.871094 C 49.769531 262.597656 48.738281 261.566406 47.464844 261.566406 C 46.191406 261.566406 45.160156 262.597656 45.160156 263.871094 C 45.160156 265.144531 46.191406 266.175781 47.464844 266.175781 C 48.738281 266.175781 49.769531 265.144531 49.769531 263.871094 Z M 49.769531 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.011719 263.871094 C 54.011719 262.597656 52.980469 261.566406 51.707031 261.566406 C 50.433594 261.566406 49.402344 262.597656 49.402344 263.871094 C 49.402344 265.144531 50.433594 266.175781 51.707031 266.175781 C 52.980469 266.175781 54.011719 265.144531 54.011719 263.871094 Z M 54.011719 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.640625 263.871094 C 61.640625 262.597656 60.609375 261.566406 59.335938 261.566406 C 58.0625 261.566406 57.03125 262.597656 57.03125 263.871094 C 57.03125 265.144531 58.0625 266.175781 59.335938 266.175781 C 60.609375 266.175781 61.640625 265.144531 61.640625 263.871094 Z M 61.640625 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.464844 263.871094 C 40.464844 262.597656 39.433594 261.566406 38.160156 261.566406 C 36.886719 261.566406 35.855469 262.597656 35.855469 263.871094 C 35.855469 265.144531 36.886719 266.175781 38.160156 266.175781 C 39.433594 266.175781 40.464844 265.144531 40.464844 263.871094 Z M 40.464844 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.117188 263.871094 C 46.117188 262.597656 45.085938 261.566406 43.8125 261.566406 C 42.539062 261.566406 41.507812 262.597656 41.507812 263.871094 C 41.507812 265.144531 42.539062 266.175781 43.8125 266.175781 C 45.085938 266.175781 46.117188 265.144531 46.117188 263.871094 Z M 46.117188 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.527344 263.871094 C 63.527344 262.597656 62.496094 261.566406 61.222656 261.566406 C 59.949219 261.566406 58.917969 262.597656 58.917969 263.871094 C 58.917969 265.144531 59.949219 266.175781 61.222656 266.175781 C 62.496094 266.175781 63.527344 265.144531 63.527344 263.871094 Z M 63.527344 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 59.234375 263.871094 C 59.234375 262.597656 58.203125 261.566406 56.929688 261.566406 C 55.65625 261.566406 54.625 262.597656 54.625 263.871094 C 54.625 265.144531 55.65625 266.175781 56.929688 266.175781 C 58.203125 266.175781 59.234375 265.144531 59.234375 263.871094 Z M 59.234375 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.113281 263.871094 C 50.113281 262.597656 49.082031 261.566406 47.808594 261.566406 C 46.535156 261.566406 45.503906 262.597656 45.503906 263.871094 C 45.503906 265.144531 46.535156 266.175781 47.808594 266.175781 C 49.082031 266.175781 50.113281 265.144531 50.113281 263.871094 Z M 50.113281 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.65625 263.871094 C 64.65625 262.597656 63.625 261.566406 62.351562 261.566406 C 61.078125 261.566406 60.046875 262.597656 60.046875 263.871094 C 60.046875 265.144531 61.078125 266.175781 62.351562 266.175781 C 63.625 266.175781 64.65625 265.144531 64.65625 263.871094 Z M 64.65625 263.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.386719 259.027344 C 39.386719 257.753906 38.355469 256.722656 37.082031 256.722656 C 35.808594 256.722656 34.777344 257.753906 34.777344 259.027344 C 34.777344 260.300781 35.808594 261.332031 37.082031 261.332031 C 38.355469 261.332031 39.386719 260.300781 39.386719 259.027344 Z M 39.386719 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.996094 259.027344 C 57.996094 257.753906 56.964844 256.722656 55.691406 256.722656 C 54.417969 256.722656 53.386719 257.753906 53.386719 259.027344 C 53.386719 260.300781 54.417969 261.332031 55.691406 261.332031 C 56.964844 261.332031 57.996094 260.300781 57.996094 259.027344 Z M 57.996094 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.632812 259.027344 C 46.632812 257.753906 45.601562 256.722656 44.328125 256.722656 C 43.054688 256.722656 42.023438 257.753906 42.023438 259.027344 C 42.023438 260.300781 43.054688 261.332031 44.328125 261.332031 C 45.601562 261.332031 46.632812 260.300781 46.632812 259.027344 Z M 46.632812 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.914062 259.027344 C 56.914062 257.753906 55.882812 256.722656 54.609375 256.722656 C 53.335938 256.722656 52.304688 257.753906 52.304688 259.027344 C 52.304688 260.300781 53.335938 261.332031 54.609375 261.332031 C 55.882812 261.332031 56.914062 260.300781 56.914062 259.027344 Z M 56.914062 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.613281 259.027344 C 53.613281 257.753906 52.582031 256.722656 51.308594 256.722656 C 50.035156 256.722656 49.003906 257.753906 49.003906 259.027344 C 49.003906 260.300781 50.035156 261.332031 51.308594 261.332031 C 52.582031 261.332031 53.613281 260.300781 53.613281 259.027344 Z M 53.613281 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.902344 259.027344 C 48.902344 257.753906 47.871094 256.722656 46.597656 256.722656 C 45.324219 256.722656 44.292969 257.753906 44.292969 259.027344 C 44.292969 260.300781 45.324219 261.332031 46.597656 261.332031 C 47.871094 261.332031 48.902344 260.300781 48.902344 259.027344 Z M 48.902344 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.355469 259.027344 C 46.355469 257.753906 45.324219 256.722656 44.050781 256.722656 C 42.777344 256.722656 41.746094 257.753906 41.746094 259.027344 C 41.746094 260.300781 42.777344 261.332031 44.050781 261.332031 C 45.324219 261.332031 46.355469 260.300781 46.355469 259.027344 Z M 46.355469 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.835938 259.027344 C 54.835938 257.753906 53.804688 256.722656 52.53125 256.722656 C 51.257812 256.722656 50.226562 257.753906 50.226562 259.027344 C 50.226562 260.300781 51.257812 261.332031 52.53125 261.332031 C 53.804688 261.332031 54.835938 260.300781 54.835938 259.027344 Z M 54.835938 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.308594 259.027344 C 37.308594 257.753906 36.277344 256.722656 35.003906 256.722656 C 33.730469 256.722656 32.699219 257.753906 32.699219 259.027344 C 32.699219 260.300781 33.730469 261.332031 35.003906 261.332031 C 36.277344 261.332031 37.308594 260.300781 37.308594 259.027344 Z M 37.308594 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.253906 259.027344 C 47.253906 257.753906 46.222656 256.722656 44.949219 256.722656 C 43.675781 256.722656 42.644531 257.753906 42.644531 259.027344 C 42.644531 260.300781 43.675781 261.332031 44.949219 261.332031 C 46.222656 261.332031 47.253906 260.300781 47.253906 259.027344 Z M 47.253906 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 59.558594 259.027344 C 59.558594 257.753906 58.527344 256.722656 57.253906 256.722656 C 55.980469 256.722656 54.949219 257.753906 54.949219 259.027344 C 54.949219 260.300781 55.980469 261.332031 57.253906 261.332031 C 58.527344 261.332031 59.558594 260.300781 59.558594 259.027344 Z M 59.558594 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.484375 259.027344 C 47.484375 257.753906 46.453125 256.722656 45.179688 256.722656 C 43.90625 256.722656 42.875 257.753906 42.875 259.027344 C 42.875 260.300781 43.90625 261.332031 45.179688 261.332031 C 46.453125 261.332031 47.484375 260.300781 47.484375 259.027344 Z M 47.484375 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.738281 259.027344 C 39.738281 257.753906 38.707031 256.722656 37.433594 256.722656 C 36.160156 256.722656 35.128906 257.753906 35.128906 259.027344 C 35.128906 260.300781 36.160156 261.332031 37.433594 261.332031 C 38.707031 261.332031 39.738281 260.300781 39.738281 259.027344 Z M 39.738281 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.671875 259.027344 C 52.671875 257.753906 51.640625 256.722656 50.367188 256.722656 C 49.09375 256.722656 48.0625 257.753906 48.0625 259.027344 C 48.0625 260.300781 49.09375 261.332031 50.367188 261.332031 C 51.640625 261.332031 52.671875 260.300781 52.671875 259.027344 Z M 52.671875 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.40625 259.027344 C 52.40625 257.753906 51.375 256.722656 50.101562 256.722656 C 48.828125 256.722656 47.796875 257.753906 47.796875 259.027344 C 47.796875 260.300781 48.828125 261.332031 50.101562 261.332031 C 51.375 261.332031 52.40625 260.300781 52.40625 259.027344 Z M 52.40625 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.46875 259.027344 C 36.46875 257.753906 35.4375 256.722656 34.164062 256.722656 C 32.890625 256.722656 31.859375 257.753906 31.859375 259.027344 C 31.859375 260.300781 32.890625 261.332031 34.164062 261.332031 C 35.4375 261.332031 36.46875 260.300781 36.46875 259.027344 Z M 36.46875 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.976562 259.027344 C 42.976562 257.753906 41.945312 256.722656 40.671875 256.722656 C 39.398438 256.722656 38.367188 257.753906 38.367188 259.027344 C 38.367188 260.300781 39.398438 261.332031 40.671875 261.332031 C 41.945312 261.332031 42.976562 260.300781 42.976562 259.027344 Z M 42.976562 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.230469 259.027344 C 53.230469 257.753906 52.199219 256.722656 50.925781 256.722656 C 49.652344 256.722656 48.621094 257.753906 48.621094 259.027344 C 48.621094 260.300781 49.652344 261.332031 50.925781 261.332031 C 52.199219 261.332031 53.230469 260.300781 53.230469 259.027344 Z M 53.230469 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.773438 259.027344 C 48.773438 257.753906 47.742188 256.722656 46.46875 256.722656 C 45.195312 256.722656 44.164062 257.753906 44.164062 259.027344 C 44.164062 260.300781 45.195312 261.332031 46.46875 261.332031 C 47.742188 261.332031 48.773438 260.300781 48.773438 259.027344 Z M 48.773438 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.160156 259.027344 C 44.160156 257.753906 43.128906 256.722656 41.855469 256.722656 C 40.582031 256.722656 39.550781 257.753906 39.550781 259.027344 C 39.550781 260.300781 40.582031 261.332031 41.855469 261.332031 C 43.128906 261.332031 44.160156 260.300781 44.160156 259.027344 Z M 44.160156 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 59.808594 259.027344 C 59.808594 257.753906 58.777344 256.722656 57.503906 256.722656 C 56.230469 256.722656 55.199219 257.753906 55.199219 259.027344 C 55.199219 260.300781 56.230469 261.332031 57.503906 261.332031 C 58.777344 261.332031 59.808594 260.300781 59.808594 259.027344 Z M 59.808594 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.738281 259.027344 C 46.738281 257.753906 45.707031 256.722656 44.433594 256.722656 C 43.160156 256.722656 42.128906 257.753906 42.128906 259.027344 C 42.128906 260.300781 43.160156 261.332031 44.433594 261.332031 C 45.707031 261.332031 46.738281 260.300781 46.738281 259.027344 Z M 46.738281 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.445312 259.027344 C 50.445312 257.753906 49.414062 256.722656 48.140625 256.722656 C 46.867188 256.722656 45.835938 257.753906 45.835938 259.027344 C 45.835938 260.300781 46.867188 261.332031 48.140625 261.332031 C 49.414062 261.332031 50.445312 260.300781 50.445312 259.027344 Z M 50.445312 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.109375 259.027344 C 57.109375 257.753906 56.078125 256.722656 54.804688 256.722656 C 53.53125 256.722656 52.5 257.753906 52.5 259.027344 C 52.5 260.300781 53.53125 261.332031 54.804688 261.332031 C 56.078125 261.332031 57.109375 260.300781 57.109375 259.027344 Z M 57.109375 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.613281 259.027344 C 38.613281 257.753906 37.582031 256.722656 36.308594 256.722656 C 35.035156 256.722656 34.003906 257.753906 34.003906 259.027344 C 34.003906 260.300781 35.035156 261.332031 36.308594 261.332031 C 37.582031 261.332031 38.613281 260.300781 38.613281 259.027344 Z M 38.613281 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.546875 259.027344 C 43.546875 257.753906 42.515625 256.722656 41.242188 256.722656 C 39.96875 256.722656 38.9375 257.753906 38.9375 259.027344 C 38.9375 260.300781 39.96875 261.332031 41.242188 261.332031 C 42.515625 261.332031 43.546875 260.300781 43.546875 259.027344 Z M 43.546875 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.753906 259.027344 C 58.753906 257.753906 57.722656 256.722656 56.449219 256.722656 C 55.175781 256.722656 54.144531 257.753906 54.144531 259.027344 C 54.144531 260.300781 55.175781 261.332031 56.449219 261.332031 C 57.722656 261.332031 58.753906 260.300781 58.753906 259.027344 Z M 58.753906 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.003906 259.027344 C 55.003906 257.753906 53.972656 256.722656 52.699219 256.722656 C 51.425781 256.722656 50.394531 257.753906 50.394531 259.027344 C 50.394531 260.300781 51.425781 261.332031 52.699219 261.332031 C 53.972656 261.332031 55.003906 260.300781 55.003906 259.027344 Z M 55.003906 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.039062 259.027344 C 47.039062 257.753906 46.007812 256.722656 44.734375 256.722656 C 43.460938 256.722656 42.429688 257.753906 42.429688 259.027344 C 42.429688 260.300781 43.460938 261.332031 44.734375 261.332031 C 46.007812 261.332031 47.039062 260.300781 47.039062 259.027344 Z M 47.039062 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 59.742188 259.027344 C 59.742188 257.753906 58.710938 256.722656 57.4375 256.722656 C 56.164062 256.722656 55.132812 257.753906 55.132812 259.027344 C 55.132812 260.300781 56.164062 261.332031 57.4375 261.332031 C 58.710938 261.332031 59.742188 260.300781 59.742188 259.027344 Z M 59.742188 259.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.574219 254.183594 C 37.574219 252.910156 36.542969 251.878906 35.269531 251.878906 C 33.996094 251.878906 32.964844 252.910156 32.964844 254.183594 C 32.964844 255.457031 33.996094 256.488281 35.269531 256.488281 C 36.542969 256.488281 37.574219 255.457031 37.574219 254.183594 Z M 37.574219 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.300781 254.183594 C 53.300781 252.910156 52.269531 251.878906 50.996094 251.878906 C 49.722656 251.878906 48.691406 252.910156 48.691406 254.183594 C 48.691406 255.457031 49.722656 256.488281 50.996094 256.488281 C 52.269531 256.488281 53.300781 255.457031 53.300781 254.183594 Z M 53.300781 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.695312 254.183594 C 43.695312 252.910156 42.664062 251.878906 41.390625 251.878906 C 40.117188 251.878906 39.085938 252.910156 39.085938 254.183594 C 39.085938 255.457031 40.117188 256.488281 41.390625 256.488281 C 42.664062 256.488281 43.695312 255.457031 43.695312 254.183594 Z M 43.695312 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.386719 254.183594 C 52.386719 252.910156 51.355469 251.878906 50.082031 251.878906 C 48.808594 251.878906 47.777344 252.910156 47.777344 254.183594 C 47.777344 255.457031 48.808594 256.488281 50.082031 256.488281 C 51.355469 256.488281 52.386719 255.457031 52.386719 254.183594 Z M 52.386719 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.597656 254.183594 C 49.597656 252.910156 48.566406 251.878906 47.292969 251.878906 C 46.019531 251.878906 44.988281 252.910156 44.988281 254.183594 C 44.988281 255.457031 46.019531 256.488281 47.292969 256.488281 C 48.566406 256.488281 49.597656 255.457031 49.597656 254.183594 Z M 49.597656 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.613281 254.183594 C 45.613281 252.910156 44.582031 251.878906 43.308594 251.878906 C 42.035156 251.878906 41.003906 252.910156 41.003906 254.183594 C 41.003906 255.457031 42.035156 256.488281 43.308594 256.488281 C 44.582031 256.488281 45.613281 255.457031 45.613281 254.183594 Z M 45.613281 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.460938 254.183594 C 43.460938 252.910156 42.429688 251.878906 41.15625 251.878906 C 39.882812 251.878906 38.851562 252.910156 38.851562 254.183594 C 38.851562 255.457031 39.882812 256.488281 41.15625 256.488281 C 42.429688 256.488281 43.460938 255.457031 43.460938 254.183594 Z M 43.460938 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.628906 254.183594 C 50.628906 252.910156 49.597656 251.878906 48.324219 251.878906 C 47.050781 251.878906 46.019531 252.910156 46.019531 254.183594 C 46.019531 255.457031 47.050781 256.488281 48.324219 256.488281 C 49.597656 256.488281 50.628906 255.457031 50.628906 254.183594 Z M 50.628906 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.816406 254.183594 C 35.816406 252.910156 34.785156 251.878906 33.511719 251.878906 C 32.238281 251.878906 31.207031 252.910156 31.207031 254.183594 C 31.207031 255.457031 32.238281 256.488281 33.511719 256.488281 C 34.785156 256.488281 35.816406 255.457031 35.816406 254.183594 Z M 35.816406 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.222656 254.183594 C 44.222656 252.910156 43.191406 251.878906 41.917969 251.878906 C 40.644531 251.878906 39.613281 252.910156 39.613281 254.183594 C 39.613281 255.457031 40.644531 256.488281 41.917969 256.488281 C 43.191406 256.488281 44.222656 255.457031 44.222656 254.183594 Z M 44.222656 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.699219 254.183594 C 67.699219 252.910156 66.667969 251.878906 65.394531 251.878906 C 64.121094 251.878906 63.089844 252.910156 63.089844 254.183594 C 63.089844 255.457031 64.121094 256.488281 65.394531 256.488281 C 66.667969 256.488281 67.699219 255.457031 67.699219 254.183594 Z M 67.699219 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.414062 254.183594 C 44.414062 252.910156 43.382812 251.878906 42.109375 251.878906 C 40.835938 251.878906 39.804688 252.910156 39.804688 254.183594 C 39.804688 255.457031 40.835938 256.488281 42.109375 256.488281 C 43.382812 256.488281 44.414062 255.457031 44.414062 254.183594 Z M 44.414062 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.871094 254.183594 C 37.871094 252.910156 36.839844 251.878906 35.566406 251.878906 C 34.292969 251.878906 33.261719 252.910156 33.261719 254.183594 C 33.261719 255.457031 34.292969 256.488281 35.566406 256.488281 C 36.839844 256.488281 37.871094 255.457031 37.871094 254.183594 Z M 37.871094 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.800781 254.183594 C 48.800781 252.910156 47.769531 251.878906 46.496094 251.878906 C 45.222656 251.878906 44.191406 252.910156 44.191406 254.183594 C 44.191406 255.457031 45.222656 256.488281 46.496094 256.488281 C 47.769531 256.488281 48.800781 255.457031 48.800781 254.183594 Z M 48.800781 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.574219 254.183594 C 48.574219 252.910156 47.542969 251.878906 46.269531 251.878906 C 44.996094 251.878906 43.964844 252.910156 43.964844 254.183594 C 43.964844 255.457031 44.996094 256.488281 46.269531 256.488281 C 47.542969 256.488281 48.574219 255.457031 48.574219 254.183594 Z M 48.574219 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.105469 254.183594 C 35.105469 252.910156 34.074219 251.878906 32.800781 251.878906 C 31.527344 251.878906 30.496094 252.910156 30.496094 254.183594 C 30.496094 255.457031 31.527344 256.488281 32.800781 256.488281 C 34.074219 256.488281 35.105469 255.457031 35.105469 254.183594 Z M 35.105469 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.605469 254.183594 C 40.605469 252.910156 39.574219 251.878906 38.300781 251.878906 C 37.027344 251.878906 35.996094 252.910156 35.996094 254.183594 C 35.996094 255.457031 37.027344 256.488281 38.300781 256.488281 C 39.574219 256.488281 40.605469 255.457031 40.605469 254.183594 Z M 40.605469 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.273438 254.183594 C 49.273438 252.910156 48.242188 251.878906 46.96875 251.878906 C 45.695312 251.878906 44.664062 252.910156 44.664062 254.183594 C 44.664062 255.457031 45.695312 256.488281 46.96875 256.488281 C 48.242188 256.488281 49.273438 255.457031 49.273438 254.183594 Z M 49.273438 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.507812 254.183594 C 45.507812 252.910156 44.476562 251.878906 43.203125 251.878906 C 41.929688 251.878906 40.898438 252.910156 40.898438 254.183594 C 40.898438 255.457031 41.929688 256.488281 43.203125 256.488281 C 44.476562 256.488281 45.507812 255.457031 45.507812 254.183594 Z M 45.507812 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.605469 254.183594 C 41.605469 252.910156 40.574219 251.878906 39.300781 251.878906 C 38.027344 251.878906 36.996094 252.910156 36.996094 254.183594 C 36.996094 255.457031 38.027344 256.488281 39.300781 256.488281 C 40.574219 256.488281 41.605469 255.457031 41.605469 254.183594 Z M 41.605469 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.832031 254.183594 C 54.832031 252.910156 53.800781 251.878906 52.527344 251.878906 C 51.253906 251.878906 50.222656 252.910156 50.222656 254.183594 C 50.222656 255.457031 51.253906 256.488281 52.527344 256.488281 C 53.800781 256.488281 54.832031 255.457031 54.832031 254.183594 Z M 54.832031 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.785156 254.183594 C 43.785156 252.910156 42.753906 251.878906 41.480469 251.878906 C 40.207031 251.878906 39.175781 252.910156 39.175781 254.183594 C 39.175781 255.457031 40.207031 256.488281 41.480469 256.488281 C 42.753906 256.488281 43.785156 255.457031 43.785156 254.183594 Z M 43.785156 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.917969 254.183594 C 46.917969 252.910156 45.886719 251.878906 44.613281 251.878906 C 43.339844 251.878906 42.308594 252.910156 42.308594 254.183594 C 42.308594 255.457031 43.339844 256.488281 44.613281 256.488281 C 45.886719 256.488281 46.917969 255.457031 46.917969 254.183594 Z M 46.917969 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.550781 254.183594 C 52.550781 252.910156 51.519531 251.878906 50.246094 251.878906 C 48.972656 251.878906 47.941406 252.910156 47.941406 254.183594 C 47.941406 255.457031 48.972656 256.488281 50.246094 256.488281 C 51.519531 256.488281 52.550781 255.457031 52.550781 254.183594 Z M 52.550781 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.917969 254.183594 C 36.917969 252.910156 35.886719 251.878906 34.613281 251.878906 C 33.339844 251.878906 32.308594 252.910156 32.308594 254.183594 C 32.308594 255.457031 33.339844 256.488281 34.613281 256.488281 C 35.886719 256.488281 36.917969 255.457031 36.917969 254.183594 Z M 36.917969 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.089844 254.183594 C 41.089844 252.910156 40.058594 251.878906 38.785156 251.878906 C 37.511719 251.878906 36.480469 252.910156 36.480469 254.183594 C 36.480469 255.457031 37.511719 256.488281 38.785156 256.488281 C 40.058594 256.488281 41.089844 255.457031 41.089844 254.183594 Z M 41.089844 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.941406 254.183594 C 53.941406 252.910156 52.910156 251.878906 51.636719 251.878906 C 50.363281 251.878906 49.332031 252.910156 49.332031 254.183594 C 49.332031 255.457031 50.363281 256.488281 51.636719 256.488281 C 52.910156 256.488281 53.941406 255.457031 53.941406 254.183594 Z M 53.941406 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.773438 254.183594 C 50.773438 252.910156 49.742188 251.878906 48.46875 251.878906 C 47.195312 251.878906 46.164062 252.910156 46.164062 254.183594 C 46.164062 255.457031 47.195312 256.488281 48.46875 256.488281 C 49.742188 256.488281 50.773438 255.457031 50.773438 254.183594 Z M 50.773438 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.039062 254.183594 C 44.039062 252.910156 43.007812 251.878906 41.734375 251.878906 C 40.460938 251.878906 39.429688 252.910156 39.429688 254.183594 C 39.429688 255.457031 40.460938 256.488281 41.734375 256.488281 C 43.007812 256.488281 44.039062 255.457031 44.039062 254.183594 Z M 44.039062 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.773438 254.183594 C 54.773438 252.910156 53.742188 251.878906 52.46875 251.878906 C 51.195312 251.878906 50.164062 252.910156 50.164062 254.183594 C 50.164062 255.457031 51.195312 256.488281 52.46875 256.488281 C 53.742188 256.488281 54.773438 255.457031 54.773438 254.183594 Z M 54.773438 254.183594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.925781 249.339844 C 35.925781 248.066406 34.894531 247.035156 33.621094 247.035156 C 32.347656 247.035156 31.316406 248.066406 31.316406 249.339844 C 31.316406 250.613281 32.347656 251.644531 33.621094 251.644531 C 34.894531 251.644531 35.925781 250.613281 35.925781 249.339844 Z M 35.925781 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.613281 249.339844 C 48.613281 248.066406 47.582031 247.035156 46.308594 247.035156 C 45.035156 247.035156 44.003906 248.066406 44.003906 249.339844 C 44.003906 250.613281 45.035156 251.644531 46.308594 251.644531 C 47.582031 251.644531 48.613281 250.613281 48.613281 249.339844 Z M 48.613281 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.867188 249.339844 C 40.867188 248.066406 39.835938 247.035156 38.5625 247.035156 C 37.289062 247.035156 36.257812 248.066406 36.257812 249.339844 C 36.257812 250.613281 37.289062 251.644531 38.5625 251.644531 C 39.835938 251.644531 40.867188 250.613281 40.867188 249.339844 Z M 40.867188 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.878906 249.339844 C 47.878906 248.066406 46.847656 247.035156 45.574219 247.035156 C 44.300781 247.035156 43.269531 248.066406 43.269531 249.339844 C 43.269531 250.613281 44.300781 251.644531 45.574219 251.644531 C 46.847656 251.644531 47.878906 250.613281 47.878906 249.339844 Z M 47.878906 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.625 249.339844 C 45.625 248.066406 44.59375 247.035156 43.320312 247.035156 C 42.046875 247.035156 41.015625 248.066406 41.015625 249.339844 C 41.015625 250.613281 42.046875 251.644531 43.320312 251.644531 C 44.59375 251.644531 45.625 250.613281 45.625 249.339844 Z M 45.625 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.414062 249.339844 C 42.414062 248.066406 41.382812 247.035156 40.109375 247.035156 C 38.835938 247.035156 37.804688 248.066406 37.804688 249.339844 C 37.804688 250.613281 38.835938 251.644531 40.109375 251.644531 C 41.382812 251.644531 42.414062 250.613281 42.414062 249.339844 Z M 42.414062 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.675781 249.339844 C 40.675781 248.066406 39.644531 247.035156 38.371094 247.035156 C 37.097656 247.035156 36.066406 248.066406 36.066406 249.339844 C 36.066406 250.613281 37.097656 251.644531 38.371094 251.644531 C 39.644531 251.644531 40.675781 250.613281 40.675781 249.339844 Z M 40.675781 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.460938 249.339844 C 46.460938 248.066406 45.429688 247.035156 44.15625 247.035156 C 42.882812 247.035156 41.851562 248.066406 41.851562 249.339844 C 41.851562 250.613281 42.882812 251.644531 44.15625 251.644531 C 45.429688 251.644531 46.460938 250.613281 46.460938 249.339844 Z M 46.460938 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.507812 249.339844 C 34.507812 248.066406 33.476562 247.035156 32.203125 247.035156 C 30.929688 247.035156 29.898438 248.066406 29.898438 249.339844 C 29.898438 250.613281 30.929688 251.644531 32.203125 251.644531 C 33.476562 251.644531 34.507812 250.613281 34.507812 249.339844 Z M 34.507812 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.292969 249.339844 C 41.292969 248.066406 40.261719 247.035156 38.988281 247.035156 C 37.714844 247.035156 36.683594 248.066406 36.683594 249.339844 C 36.683594 250.613281 37.714844 251.644531 38.988281 251.644531 C 40.261719 251.644531 41.292969 250.613281 41.292969 249.339844 Z M 41.292969 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.679688 249.339844 C 49.679688 248.066406 48.648438 247.035156 47.375 247.035156 C 46.101562 247.035156 45.070312 248.066406 45.070312 249.339844 C 45.070312 250.613281 46.101562 251.644531 47.375 251.644531 C 48.648438 251.644531 49.679688 250.613281 49.679688 249.339844 Z M 49.679688 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.445312 249.339844 C 41.445312 248.066406 40.414062 247.035156 39.140625 247.035156 C 37.867188 247.035156 36.835938 248.066406 36.835938 249.339844 C 36.835938 250.613281 37.867188 251.644531 39.140625 251.644531 C 40.414062 251.644531 41.445312 250.613281 41.445312 249.339844 Z M 41.445312 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.167969 249.339844 C 36.167969 248.066406 35.136719 247.035156 33.863281 247.035156 C 32.589844 247.035156 31.558594 248.066406 31.558594 249.339844 C 31.558594 250.613281 32.589844 251.644531 33.863281 251.644531 C 35.136719 251.644531 36.167969 250.613281 36.167969 249.339844 Z M 36.167969 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.984375 249.339844 C 44.984375 248.066406 43.953125 247.035156 42.679688 247.035156 C 41.40625 247.035156 40.375 248.066406 40.375 249.339844 C 40.375 250.613281 41.40625 251.644531 42.679688 251.644531 C 43.953125 251.644531 44.984375 250.613281 44.984375 249.339844 Z M 44.984375 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.804688 249.339844 C 44.804688 248.066406 43.773438 247.035156 42.5 247.035156 C 41.226562 247.035156 40.195312 248.066406 40.195312 249.339844 C 40.195312 250.613281 41.226562 251.644531 42.5 251.644531 C 43.773438 251.644531 44.804688 250.613281 44.804688 249.339844 Z M 44.804688 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.9375 249.339844 C 33.9375 248.066406 32.90625 247.035156 31.632812 247.035156 C 30.359375 247.035156 29.328125 248.066406 29.328125 249.339844 C 29.328125 250.613281 30.359375 251.644531 31.632812 251.644531 C 32.90625 251.644531 33.9375 250.613281 33.9375 249.339844 Z M 33.9375 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.371094 249.339844 C 38.371094 248.066406 37.339844 247.035156 36.066406 247.035156 C 34.792969 247.035156 33.761719 248.066406 33.761719 249.339844 C 33.761719 250.613281 34.792969 251.644531 36.066406 251.644531 C 37.339844 251.644531 38.371094 250.613281 38.371094 249.339844 Z M 38.371094 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.367188 249.339844 C 45.367188 248.066406 44.335938 247.035156 43.0625 247.035156 C 41.789062 247.035156 40.757812 248.066406 40.757812 249.339844 C 40.757812 250.613281 41.789062 251.644531 43.0625 251.644531 C 44.335938 251.644531 45.367188 250.613281 45.367188 249.339844 Z M 45.367188 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.328125 249.339844 C 42.328125 248.066406 41.296875 247.035156 40.023438 247.035156 C 38.75 247.035156 37.71875 248.066406 37.71875 249.339844 C 37.71875 250.613281 38.75 251.644531 40.023438 251.644531 C 41.296875 251.644531 42.328125 250.613281 42.328125 249.339844 Z M 42.328125 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.179688 249.339844 C 39.179688 248.066406 38.148438 247.035156 36.875 247.035156 C 35.601562 247.035156 34.570312 248.066406 34.570312 249.339844 C 34.570312 250.613281 35.601562 251.644531 36.875 251.644531 C 38.148438 251.644531 39.179688 250.613281 39.179688 249.339844 Z M 39.179688 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.851562 249.339844 C 49.851562 248.066406 48.820312 247.035156 47.546875 247.035156 C 46.273438 247.035156 45.242188 248.066406 45.242188 249.339844 C 45.242188 250.613281 46.273438 251.644531 47.546875 251.644531 C 48.820312 251.644531 49.851562 250.613281 49.851562 249.339844 Z M 49.851562 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.9375 249.339844 C 40.9375 248.066406 39.90625 247.035156 38.632812 247.035156 C 37.359375 247.035156 36.328125 248.066406 36.328125 249.339844 C 36.328125 250.613281 37.359375 251.644531 38.632812 251.644531 C 39.90625 251.644531 40.9375 250.613281 40.9375 249.339844 Z M 40.9375 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.464844 249.339844 C 43.464844 248.066406 42.433594 247.035156 41.160156 247.035156 C 39.886719 247.035156 38.855469 248.066406 38.855469 249.339844 C 38.855469 250.613281 39.886719 251.644531 41.160156 251.644531 C 42.433594 251.644531 43.464844 250.613281 43.464844 249.339844 Z M 43.464844 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.007812 249.339844 C 48.007812 248.066406 46.976562 247.035156 45.703125 247.035156 C 44.429688 247.035156 43.398438 248.066406 43.398438 249.339844 C 43.398438 250.613281 44.429688 251.644531 45.703125 251.644531 C 46.976562 251.644531 48.007812 250.613281 48.007812 249.339844 Z M 48.007812 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.398438 249.339844 C 35.398438 248.066406 34.367188 247.035156 33.09375 247.035156 C 31.820312 247.035156 30.789062 248.066406 30.789062 249.339844 C 30.789062 250.613281 31.820312 251.644531 33.09375 251.644531 C 34.367188 251.644531 35.398438 250.613281 35.398438 249.339844 Z M 35.398438 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.765625 249.339844 C 38.765625 248.066406 37.734375 247.035156 36.460938 247.035156 C 35.1875 247.035156 34.15625 248.066406 34.15625 249.339844 C 34.15625 250.613281 35.1875 251.644531 36.460938 251.644531 C 37.734375 251.644531 38.765625 250.613281 38.765625 249.339844 Z M 38.765625 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.132812 249.339844 C 49.132812 248.066406 48.101562 247.035156 46.828125 247.035156 C 45.554688 247.035156 44.523438 248.066406 44.523438 249.339844 C 44.523438 250.613281 45.554688 251.644531 46.828125 251.644531 C 48.101562 251.644531 49.132812 250.613281 49.132812 249.339844 Z M 49.132812 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.574219 249.339844 C 46.574219 248.066406 45.542969 247.035156 44.269531 247.035156 C 42.996094 247.035156 41.964844 248.066406 41.964844 249.339844 C 41.964844 250.613281 42.996094 251.644531 44.269531 251.644531 C 45.542969 251.644531 46.574219 250.613281 46.574219 249.339844 Z M 46.574219 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.144531 249.339844 C 41.144531 248.066406 40.113281 247.035156 38.839844 247.035156 C 37.566406 247.035156 36.535156 248.066406 36.535156 249.339844 C 36.535156 250.613281 37.566406 251.644531 38.839844 251.644531 C 40.113281 251.644531 41.144531 250.613281 41.144531 249.339844 Z M 41.144531 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.804688 249.339844 C 49.804688 248.066406 48.773438 247.035156 47.5 247.035156 C 46.226562 247.035156 45.195312 248.066406 45.195312 249.339844 C 45.195312 250.613281 46.226562 251.644531 47.5 251.644531 C 48.773438 251.644531 49.804688 250.613281 49.804688 249.339844 Z M 49.804688 249.339844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.464844 244.496094 C 34.464844 243.222656 33.433594 242.191406 32.160156 242.191406 C 30.886719 242.191406 29.855469 243.222656 29.855469 244.496094 C 29.855469 245.769531 30.886719 246.800781 32.160156 246.800781 C 33.433594 246.800781 34.464844 245.769531 34.464844 244.496094 Z M 34.464844 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.988281 244.496094 C 43.988281 243.222656 42.957031 242.191406 41.683594 242.191406 C 40.410156 242.191406 39.378906 243.222656 39.378906 244.496094 C 39.378906 245.769531 40.410156 246.800781 41.683594 246.800781 C 42.957031 246.800781 43.988281 245.769531 43.988281 244.496094 Z M 43.988281 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.171875 244.496094 C 38.171875 243.222656 37.140625 242.191406 35.867188 242.191406 C 34.59375 242.191406 33.5625 243.222656 33.5625 244.496094 C 33.5625 245.769531 34.59375 246.800781 35.867188 246.800781 C 37.140625 246.800781 38.171875 245.769531 38.171875 244.496094 Z M 38.171875 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.433594 244.496094 C 43.433594 243.222656 42.402344 242.191406 41.128906 242.191406 C 39.855469 242.191406 38.824219 243.222656 38.824219 244.496094 C 38.824219 245.769531 39.855469 246.800781 41.128906 246.800781 C 42.402344 246.800781 43.433594 245.769531 43.433594 244.496094 Z M 43.433594 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.746094 244.496094 C 41.746094 243.222656 40.714844 242.191406 39.441406 242.191406 C 38.167969 242.191406 37.136719 243.222656 37.136719 244.496094 C 37.136719 245.769531 38.167969 246.800781 39.441406 246.800781 C 40.714844 246.800781 41.746094 245.769531 41.746094 244.496094 Z M 41.746094 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.335938 244.496094 C 39.335938 243.222656 38.304688 242.191406 37.03125 242.191406 C 35.757812 242.191406 34.726562 243.222656 34.726562 244.496094 C 34.726562 245.769531 35.757812 246.800781 37.03125 246.800781 C 38.304688 246.800781 39.335938 245.769531 39.335938 244.496094 Z M 39.335938 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.03125 244.496094 C 38.03125 243.222656 37 242.191406 35.726562 242.191406 C 34.453125 242.191406 33.421875 243.222656 33.421875 244.496094 C 33.421875 245.769531 34.453125 246.800781 35.726562 246.800781 C 37 246.800781 38.03125 245.769531 38.03125 244.496094 Z M 38.03125 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.371094 244.496094 C 42.371094 243.222656 41.339844 242.191406 40.066406 242.191406 C 38.792969 242.191406 37.761719 243.222656 37.761719 244.496094 C 37.761719 245.769531 38.792969 246.800781 40.066406 246.800781 C 41.339844 246.800781 42.371094 245.769531 42.371094 244.496094 Z M 42.371094 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.402344 244.496094 C 33.402344 243.222656 32.371094 242.191406 31.097656 242.191406 C 29.824219 242.191406 28.792969 243.222656 28.792969 244.496094 C 28.792969 245.769531 29.824219 246.800781 31.097656 246.800781 C 32.371094 246.800781 33.402344 245.769531 33.402344 244.496094 Z M 33.402344 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.492188 244.496094 C 38.492188 243.222656 37.460938 242.191406 36.1875 242.191406 C 34.914062 242.191406 33.882812 243.222656 33.882812 244.496094 C 33.882812 245.769531 34.914062 246.800781 36.1875 246.800781 C 37.460938 246.800781 38.492188 245.769531 38.492188 244.496094 Z M 38.492188 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.789062 244.496094 C 44.789062 243.222656 43.757812 242.191406 42.484375 242.191406 C 41.210938 242.191406 40.179688 243.222656 40.179688 244.496094 C 40.179688 245.769531 41.210938 246.800781 42.484375 246.800781 C 43.757812 246.800781 44.789062 245.769531 44.789062 244.496094 Z M 44.789062 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.609375 244.496094 C 38.609375 243.222656 37.578125 242.191406 36.304688 242.191406 C 35.03125 242.191406 34 243.222656 34 244.496094 C 34 245.769531 35.03125 246.800781 36.304688 246.800781 C 37.578125 246.800781 38.609375 245.769531 38.609375 244.496094 Z M 38.609375 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.644531 244.496094 C 34.644531 243.222656 33.613281 242.191406 32.339844 242.191406 C 31.066406 242.191406 30.035156 243.222656 30.035156 244.496094 C 30.035156 245.769531 31.066406 246.800781 32.339844 246.800781 C 33.613281 246.800781 34.644531 245.769531 34.644531 244.496094 Z M 34.644531 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.265625 244.496094 C 41.265625 243.222656 40.234375 242.191406 38.960938 242.191406 C 37.6875 242.191406 36.65625 243.222656 36.65625 244.496094 C 36.65625 245.769531 37.6875 246.800781 38.960938 246.800781 C 40.234375 246.800781 41.265625 245.769531 41.265625 244.496094 Z M 41.265625 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.128906 244.496094 C 41.128906 243.222656 40.097656 242.191406 38.824219 242.191406 C 37.550781 242.191406 36.519531 243.222656 36.519531 244.496094 C 36.519531 245.769531 37.550781 246.800781 38.824219 246.800781 C 40.097656 246.800781 41.128906 245.769531 41.128906 244.496094 Z M 41.128906 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.972656 244.496094 C 32.972656 243.222656 31.941406 242.191406 30.667969 242.191406 C 29.394531 242.191406 28.363281 243.222656 28.363281 244.496094 C 28.363281 245.769531 29.394531 246.800781 30.667969 246.800781 C 31.941406 246.800781 32.972656 245.769531 32.972656 244.496094 Z M 32.972656 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.300781 244.496094 C 36.300781 243.222656 35.269531 242.191406 33.996094 242.191406 C 32.722656 242.191406 31.691406 243.222656 31.691406 244.496094 C 31.691406 245.769531 32.722656 246.800781 33.996094 246.800781 C 35.269531 246.800781 36.300781 245.769531 36.300781 244.496094 Z M 36.300781 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.550781 244.496094 C 41.550781 243.222656 40.519531 242.191406 39.246094 242.191406 C 37.972656 242.191406 36.941406 243.222656 36.941406 244.496094 C 36.941406 245.769531 37.972656 246.800781 39.246094 246.800781 C 40.519531 246.800781 41.550781 245.769531 41.550781 244.496094 Z M 41.550781 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.269531 244.496094 C 39.269531 243.222656 38.238281 242.191406 36.964844 242.191406 C 35.691406 242.191406 34.660156 243.222656 34.660156 244.496094 C 34.660156 245.769531 35.691406 246.800781 36.964844 246.800781 C 38.238281 246.800781 39.269531 245.769531 39.269531 244.496094 Z M 39.269531 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.90625 244.496094 C 36.90625 243.222656 35.875 242.191406 34.601562 242.191406 C 33.328125 242.191406 32.296875 243.222656 32.296875 244.496094 C 32.296875 245.769531 33.328125 246.800781 34.601562 246.800781 C 35.875 246.800781 36.90625 245.769531 36.90625 244.496094 Z M 36.90625 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.914062 244.496094 C 44.914062 243.222656 43.882812 242.191406 42.609375 242.191406 C 41.335938 242.191406 40.304688 243.222656 40.304688 244.496094 C 40.304688 245.769531 41.335938 246.800781 42.609375 246.800781 C 43.882812 246.800781 44.914062 245.769531 44.914062 244.496094 Z M 44.914062 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.226562 244.496094 C 38.226562 243.222656 37.195312 242.191406 35.921875 242.191406 C 34.648438 242.191406 33.617188 243.222656 33.617188 244.496094 C 33.617188 245.769531 34.648438 246.800781 35.921875 246.800781 C 37.195312 246.800781 38.226562 245.769531 38.226562 244.496094 Z M 38.226562 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.125 244.496094 C 40.125 243.222656 39.09375 242.191406 37.820312 242.191406 C 36.546875 242.191406 35.515625 243.222656 35.515625 244.496094 C 35.515625 245.769531 36.546875 246.800781 37.820312 246.800781 C 39.09375 246.800781 40.125 245.769531 40.125 244.496094 Z M 40.125 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.535156 244.496094 C 43.535156 243.222656 42.503906 242.191406 41.230469 242.191406 C 39.957031 242.191406 38.925781 243.222656 38.925781 244.496094 C 38.925781 245.769531 39.957031 246.800781 41.230469 246.800781 C 42.503906 246.800781 43.535156 245.769531 43.535156 244.496094 Z M 43.535156 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.070312 244.496094 C 34.070312 243.222656 33.039062 242.191406 31.765625 242.191406 C 30.492188 242.191406 29.460938 243.222656 29.460938 244.496094 C 29.460938 245.769531 30.492188 246.800781 31.765625 246.800781 C 33.039062 246.800781 34.070312 245.769531 34.070312 244.496094 Z M 34.070312 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.59375 244.496094 C 36.59375 243.222656 35.5625 242.191406 34.289062 242.191406 C 33.015625 242.191406 31.984375 243.222656 31.984375 244.496094 C 31.984375 245.769531 33.015625 246.800781 34.289062 246.800781 C 35.5625 246.800781 36.59375 245.769531 36.59375 244.496094 Z M 36.59375 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.375 244.496094 C 44.375 243.222656 43.34375 242.191406 42.070312 242.191406 C 40.796875 242.191406 39.765625 243.222656 39.765625 244.496094 C 39.765625 245.769531 40.796875 246.800781 42.070312 246.800781 C 43.34375 246.800781 44.375 245.769531 44.375 244.496094 Z M 44.375 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.457031 244.496094 C 42.457031 243.222656 41.425781 242.191406 40.152344 242.191406 C 38.878906 242.191406 37.847656 243.222656 37.847656 244.496094 C 37.847656 245.769531 38.878906 246.800781 40.152344 246.800781 C 41.425781 246.800781 42.457031 245.769531 42.457031 244.496094 Z M 42.457031 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.382812 244.496094 C 38.382812 243.222656 37.351562 242.191406 36.078125 242.191406 C 34.804688 242.191406 33.773438 243.222656 33.773438 244.496094 C 33.773438 245.769531 34.804688 246.800781 36.078125 246.800781 C 37.351562 246.800781 38.382812 245.769531 38.382812 244.496094 Z M 38.382812 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.882812 244.496094 C 44.882812 243.222656 43.851562 242.191406 42.578125 242.191406 C 41.304688 242.191406 40.273438 243.222656 40.273438 244.496094 C 40.273438 245.769531 41.304688 246.800781 42.578125 246.800781 C 43.851562 246.800781 44.882812 245.769531 44.882812 244.496094 Z M 44.882812 244.496094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.207031 239.652344 C 33.207031 238.378906 32.175781 237.347656 30.902344 237.347656 C 29.628906 237.347656 28.597656 238.378906 28.597656 239.652344 C 28.597656 240.925781 29.628906 241.957031 30.902344 241.957031 C 32.175781 241.957031 33.207031 240.925781 33.207031 239.652344 Z M 33.207031 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.46875 239.652344 C 39.46875 238.378906 38.4375 237.347656 37.164062 237.347656 C 35.890625 237.347656 34.859375 238.378906 34.859375 239.652344 C 34.859375 240.925781 35.890625 241.957031 37.164062 241.957031 C 38.4375 241.957031 39.46875 240.925781 39.46875 239.652344 Z M 39.46875 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.644531 239.652344 C 35.644531 238.378906 34.613281 237.347656 33.339844 237.347656 C 32.066406 237.347656 31.035156 238.378906 31.035156 239.652344 C 31.035156 240.925781 32.066406 241.957031 33.339844 241.957031 C 34.613281 241.957031 35.644531 240.925781 35.644531 239.652344 Z M 35.644531 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.101562 239.652344 C 39.101562 238.378906 38.070312 237.347656 36.796875 237.347656 C 35.523438 237.347656 34.492188 238.378906 34.492188 239.652344 C 34.492188 240.925781 35.523438 241.957031 36.796875 241.957031 C 38.070312 241.957031 39.101562 240.925781 39.101562 239.652344 Z M 39.101562 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.992188 239.652344 C 37.992188 238.378906 36.960938 237.347656 35.6875 237.347656 C 34.414062 237.347656 33.382812 238.378906 33.382812 239.652344 C 33.382812 240.925781 34.414062 241.957031 35.6875 241.957031 C 36.960938 241.957031 37.992188 240.925781 37.992188 239.652344 Z M 37.992188 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.40625 239.652344 C 36.40625 238.378906 35.375 237.347656 34.101562 237.347656 C 32.828125 237.347656 31.796875 238.378906 31.796875 239.652344 C 31.796875 240.925781 32.828125 241.957031 34.101562 241.957031 C 35.375 241.957031 36.40625 240.925781 36.40625 239.652344 Z M 36.40625 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.550781 239.652344 C 35.550781 238.378906 34.519531 237.347656 33.246094 237.347656 C 31.972656 237.347656 30.941406 238.378906 30.941406 239.652344 C 30.941406 240.925781 31.972656 241.957031 33.246094 241.957031 C 34.519531 241.957031 35.550781 240.925781 35.550781 239.652344 Z M 35.550781 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.402344 239.652344 C 38.402344 238.378906 37.371094 237.347656 36.097656 237.347656 C 34.824219 237.347656 33.792969 238.378906 33.792969 239.652344 C 33.792969 240.925781 34.824219 241.957031 36.097656 241.957031 C 37.371094 241.957031 38.402344 240.925781 38.402344 239.652344 Z M 38.402344 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.507812 239.652344 C 32.507812 238.378906 31.476562 237.347656 30.203125 237.347656 C 28.929688 237.347656 27.898438 238.378906 27.898438 239.652344 C 27.898438 240.925781 28.929688 241.957031 30.203125 241.957031 C 31.476562 241.957031 32.507812 240.925781 32.507812 239.652344 Z M 32.507812 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.851562 239.652344 C 35.851562 238.378906 34.820312 237.347656 33.546875 237.347656 C 32.273438 237.347656 31.242188 238.378906 31.242188 239.652344 C 31.242188 240.925781 32.273438 241.957031 33.546875 241.957031 C 34.820312 241.957031 35.851562 240.925781 35.851562 239.652344 Z M 35.851562 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.992188 239.652344 C 39.992188 238.378906 38.960938 237.347656 37.6875 237.347656 C 36.414062 237.347656 35.382812 238.378906 35.382812 239.652344 C 35.382812 240.925781 36.414062 241.957031 37.6875 241.957031 C 38.960938 241.957031 39.992188 240.925781 39.992188 239.652344 Z M 39.992188 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.929688 239.652344 C 35.929688 238.378906 34.898438 237.347656 33.625 237.347656 C 32.351562 237.347656 31.320312 238.378906 31.320312 239.652344 C 31.320312 240.925781 32.351562 241.957031 33.625 241.957031 C 34.898438 241.957031 35.929688 240.925781 35.929688 239.652344 Z M 35.929688 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.324219 239.652344 C 33.324219 238.378906 32.292969 237.347656 31.019531 237.347656 C 29.746094 237.347656 28.714844 238.378906 28.714844 239.652344 C 28.714844 240.925781 29.746094 241.957031 31.019531 241.957031 C 32.292969 241.957031 33.324219 240.925781 33.324219 239.652344 Z M 33.324219 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.675781 239.652344 C 37.675781 238.378906 36.644531 237.347656 35.371094 237.347656 C 34.097656 237.347656 33.066406 238.378906 33.066406 239.652344 C 33.066406 240.925781 34.097656 241.957031 35.371094 241.957031 C 36.644531 241.957031 37.675781 240.925781 37.675781 239.652344 Z M 37.675781 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.585938 239.652344 C 37.585938 238.378906 36.554688 237.347656 35.28125 237.347656 C 34.007812 237.347656 32.976562 238.378906 32.976562 239.652344 C 32.976562 240.925781 34.007812 241.957031 35.28125 241.957031 C 36.554688 241.957031 37.585938 240.925781 37.585938 239.652344 Z M 37.585938 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.222656 239.652344 C 32.222656 238.378906 31.191406 237.347656 29.917969 237.347656 C 28.644531 237.347656 27.613281 238.378906 27.613281 239.652344 C 27.613281 240.925781 28.644531 241.957031 29.917969 241.957031 C 31.191406 241.957031 32.222656 240.925781 32.222656 239.652344 Z M 32.222656 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.414062 239.652344 C 34.414062 238.378906 33.382812 237.347656 32.109375 237.347656 C 30.835938 237.347656 29.804688 238.378906 29.804688 239.652344 C 29.804688 240.925781 30.835938 241.957031 32.109375 241.957031 C 33.382812 241.957031 34.414062 240.925781 34.414062 239.652344 Z M 34.414062 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.863281 239.652344 C 37.863281 238.378906 36.832031 237.347656 35.558594 237.347656 C 34.285156 237.347656 33.253906 238.378906 33.253906 239.652344 C 33.253906 240.925781 34.285156 241.957031 35.558594 241.957031 C 36.832031 241.957031 37.863281 240.925781 37.863281 239.652344 Z M 37.863281 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.363281 239.652344 C 36.363281 238.378906 35.332031 237.347656 34.058594 237.347656 C 32.785156 237.347656 31.753906 238.378906 31.753906 239.652344 C 31.753906 240.925781 32.785156 241.957031 34.058594 241.957031 C 35.332031 241.957031 36.363281 240.925781 36.363281 239.652344 Z M 36.363281 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.8125 239.652344 C 34.8125 238.378906 33.78125 237.347656 32.507812 237.347656 C 31.234375 237.347656 30.203125 238.378906 30.203125 239.652344 C 30.203125 240.925781 31.234375 241.957031 32.507812 241.957031 C 33.78125 241.957031 34.8125 240.925781 34.8125 239.652344 Z M 34.8125 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.074219 239.652344 C 40.074219 238.378906 39.042969 237.347656 37.769531 237.347656 C 36.496094 237.347656 35.464844 238.378906 35.464844 239.652344 C 35.464844 240.925781 36.496094 241.957031 37.769531 241.957031 C 39.042969 241.957031 40.074219 240.925781 40.074219 239.652344 Z M 40.074219 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.679688 239.652344 C 35.679688 238.378906 34.648438 237.347656 33.375 237.347656 C 32.101562 237.347656 31.070312 238.378906 31.070312 239.652344 C 31.070312 240.925781 32.101562 241.957031 33.375 241.957031 C 34.648438 241.957031 35.679688 240.925781 35.679688 239.652344 Z M 35.679688 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.925781 239.652344 C 36.925781 238.378906 35.894531 237.347656 34.621094 237.347656 C 33.347656 237.347656 32.316406 238.378906 32.316406 239.652344 C 32.316406 240.925781 33.347656 241.957031 34.621094 241.957031 C 35.894531 241.957031 36.925781 240.925781 36.925781 239.652344 Z M 36.925781 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.167969 239.652344 C 39.167969 238.378906 38.136719 237.347656 36.863281 237.347656 C 35.589844 237.347656 34.558594 238.378906 34.558594 239.652344 C 34.558594 240.925781 35.589844 241.957031 36.863281 241.957031 C 38.136719 241.957031 39.167969 240.925781 39.167969 239.652344 Z M 39.167969 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.945312 239.652344 C 32.945312 238.378906 31.914062 237.347656 30.640625 237.347656 C 29.367188 237.347656 28.335938 238.378906 28.335938 239.652344 C 28.335938 240.925781 29.367188 241.957031 30.640625 241.957031 C 31.914062 241.957031 32.945312 240.925781 32.945312 239.652344 Z M 32.945312 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.605469 239.652344 C 34.605469 238.378906 33.574219 237.347656 32.300781 237.347656 C 31.027344 237.347656 29.996094 238.378906 29.996094 239.652344 C 29.996094 240.925781 31.027344 241.957031 32.300781 241.957031 C 33.574219 241.957031 34.605469 240.925781 34.605469 239.652344 Z M 34.605469 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.722656 239.652344 C 39.722656 238.378906 38.691406 237.347656 37.417969 237.347656 C 36.144531 237.347656 35.113281 238.378906 35.113281 239.652344 C 35.113281 240.925781 36.144531 241.957031 37.417969 241.957031 C 38.691406 241.957031 39.722656 240.925781 39.722656 239.652344 Z M 39.722656 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.460938 239.652344 C 38.460938 238.378906 37.429688 237.347656 36.15625 237.347656 C 34.882812 237.347656 33.851562 238.378906 33.851562 239.652344 C 33.851562 240.925781 34.882812 241.957031 36.15625 241.957031 C 37.429688 241.957031 38.460938 240.925781 38.460938 239.652344 Z M 38.460938 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.78125 239.652344 C 35.78125 238.378906 34.75 237.347656 33.476562 237.347656 C 32.203125 237.347656 31.171875 238.378906 31.171875 239.652344 C 31.171875 240.925781 32.203125 241.957031 33.476562 241.957031 C 34.75 241.957031 35.78125 240.925781 35.78125 239.652344 Z M 35.78125 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.054688 239.652344 C 40.054688 238.378906 39.023438 237.347656 37.75 237.347656 C 36.476562 237.347656 35.445312 238.378906 35.445312 239.652344 C 35.445312 240.925781 36.476562 241.957031 37.75 241.957031 C 39.023438 241.957031 40.054688 240.925781 40.054688 239.652344 Z M 40.054688 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.15625 234.808594 C 32.15625 233.535156 31.125 232.503906 29.851562 232.503906 C 28.578125 232.503906 27.546875 233.535156 27.546875 234.808594 C 27.546875 236.082031 28.578125 237.113281 29.851562 237.113281 C 31.125 237.113281 32.15625 236.082031 32.15625 234.808594 Z M 32.15625 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.09375 234.808594 C 35.09375 233.535156 34.0625 232.503906 32.789062 232.503906 C 31.515625 232.503906 30.484375 233.535156 30.484375 234.808594 C 30.484375 236.082031 31.515625 237.113281 32.789062 237.113281 C 34.0625 237.113281 35.09375 236.082031 35.09375 234.808594 Z M 35.09375 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.300781 234.808594 C 33.300781 233.535156 32.269531 232.503906 30.996094 232.503906 C 29.722656 232.503906 28.691406 233.535156 28.691406 234.808594 C 28.691406 236.082031 29.722656 237.113281 30.996094 237.113281 C 32.269531 237.113281 33.300781 236.082031 33.300781 234.808594 Z M 33.300781 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.925781 234.808594 C 34.925781 233.535156 33.894531 232.503906 32.621094 232.503906 C 31.347656 232.503906 30.316406 233.535156 30.316406 234.808594 C 30.316406 236.082031 31.347656 237.113281 32.621094 237.113281 C 33.894531 237.113281 34.925781 236.082031 34.925781 234.808594 Z M 34.925781 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.402344 234.808594 C 34.402344 233.535156 33.371094 232.503906 32.097656 232.503906 C 30.824219 232.503906 29.792969 233.535156 29.792969 234.808594 C 29.792969 236.082031 30.824219 237.113281 32.097656 237.113281 C 33.371094 237.113281 34.402344 236.082031 34.402344 234.808594 Z M 34.402344 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.660156 234.808594 C 33.660156 233.535156 32.628906 232.503906 31.355469 232.503906 C 30.082031 232.503906 29.050781 233.535156 29.050781 234.808594 C 29.050781 236.082031 30.082031 237.113281 31.355469 237.113281 C 32.628906 237.113281 33.660156 236.082031 33.660156 234.808594 Z M 33.660156 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.257812 234.808594 C 33.257812 233.535156 32.226562 232.503906 30.953125 232.503906 C 29.679688 232.503906 28.648438 233.535156 28.648438 234.808594 C 28.648438 236.082031 29.679688 237.113281 30.953125 237.113281 C 32.226562 237.113281 33.257812 236.082031 33.257812 234.808594 Z M 33.257812 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.597656 234.808594 C 34.597656 233.535156 33.566406 232.503906 32.292969 232.503906 C 31.019531 232.503906 29.988281 233.535156 29.988281 234.808594 C 29.988281 236.082031 31.019531 237.113281 32.292969 237.113281 C 33.566406 237.113281 34.597656 236.082031 34.597656 234.808594 Z M 34.597656 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.828125 234.808594 C 31.828125 233.535156 30.796875 232.503906 29.523438 232.503906 C 28.25 232.503906 27.21875 233.535156 27.21875 234.808594 C 27.21875 236.082031 28.25 237.113281 29.523438 237.113281 C 30.796875 237.113281 31.828125 236.082031 31.828125 234.808594 Z M 31.828125 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.398438 234.808594 C 33.398438 233.535156 32.367188 232.503906 31.09375 232.503906 C 29.820312 232.503906 28.789062 233.535156 28.789062 234.808594 C 28.789062 236.082031 29.820312 237.113281 31.09375 237.113281 C 32.367188 237.113281 33.398438 236.082031 33.398438 234.808594 Z M 33.398438 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.34375 234.808594 C 35.34375 233.535156 34.3125 232.503906 33.039062 232.503906 C 31.765625 232.503906 30.734375 233.535156 30.734375 234.808594 C 30.734375 236.082031 31.765625 237.113281 33.039062 237.113281 C 34.3125 237.113281 35.34375 236.082031 35.34375 234.808594 Z M 35.34375 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.4375 234.808594 C 33.4375 233.535156 32.40625 232.503906 31.132812 232.503906 C 29.859375 232.503906 28.828125 233.535156 28.828125 234.808594 C 28.828125 236.082031 29.859375 237.113281 31.132812 237.113281 C 32.40625 237.113281 33.4375 236.082031 33.4375 234.808594 Z M 33.4375 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.214844 234.808594 C 32.214844 233.535156 31.183594 232.503906 29.910156 232.503906 C 28.636719 232.503906 27.605469 233.535156 27.605469 234.808594 C 27.605469 236.082031 28.636719 237.113281 29.910156 237.113281 C 31.183594 237.113281 32.214844 236.082031 32.214844 234.808594 Z M 32.214844 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.253906 234.808594 C 34.253906 233.535156 33.222656 232.503906 31.949219 232.503906 C 30.675781 232.503906 29.644531 233.535156 29.644531 234.808594 C 29.644531 236.082031 30.675781 237.113281 31.949219 237.113281 C 33.222656 237.113281 34.253906 236.082031 34.253906 234.808594 Z M 34.253906 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.214844 234.808594 C 34.214844 233.535156 33.183594 232.503906 31.910156 232.503906 C 30.636719 232.503906 29.605469 233.535156 29.605469 234.808594 C 29.605469 236.082031 30.636719 237.113281 31.910156 237.113281 C 33.183594 237.113281 34.214844 236.082031 34.214844 234.808594 Z M 34.214844 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.699219 234.808594 C 31.699219 233.535156 30.667969 232.503906 29.394531 232.503906 C 28.121094 232.503906 27.089844 233.535156 27.089844 234.808594 C 27.089844 236.082031 28.121094 237.113281 29.394531 237.113281 C 30.667969 237.113281 31.699219 236.082031 31.699219 234.808594 Z M 31.699219 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.722656 234.808594 C 32.722656 233.535156 31.691406 232.503906 30.417969 232.503906 C 29.144531 232.503906 28.113281 233.535156 28.113281 234.808594 C 28.113281 236.082031 29.144531 237.113281 30.417969 237.113281 C 31.691406 237.113281 32.722656 236.082031 32.722656 234.808594 Z M 32.722656 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.34375 234.808594 C 34.34375 233.535156 33.3125 232.503906 32.039062 232.503906 C 30.765625 232.503906 29.734375 233.535156 29.734375 234.808594 C 29.734375 236.082031 30.765625 237.113281 32.039062 237.113281 C 33.3125 237.113281 34.34375 236.082031 34.34375 234.808594 Z M 34.34375 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.640625 234.808594 C 33.640625 233.535156 32.609375 232.503906 31.335938 232.503906 C 30.0625 232.503906 29.03125 233.535156 29.03125 234.808594 C 29.03125 236.082031 30.0625 237.113281 31.335938 237.113281 C 32.609375 237.113281 33.640625 236.082031 33.640625 234.808594 Z M 33.640625 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.910156 234.808594 C 32.910156 233.535156 31.878906 232.503906 30.605469 232.503906 C 29.332031 232.503906 28.300781 233.535156 28.300781 234.808594 C 28.300781 236.082031 29.332031 237.113281 30.605469 237.113281 C 31.878906 237.113281 32.910156 236.082031 32.910156 234.808594 Z M 32.910156 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.382812 234.808594 C 35.382812 233.535156 34.351562 232.503906 33.078125 232.503906 C 31.804688 232.503906 30.773438 233.535156 30.773438 234.808594 C 30.773438 236.082031 31.804688 237.113281 33.078125 237.113281 C 34.351562 237.113281 35.382812 236.082031 35.382812 234.808594 Z M 35.382812 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.320312 234.808594 C 33.320312 233.535156 32.289062 232.503906 31.015625 232.503906 C 29.742188 232.503906 28.710938 233.535156 28.710938 234.808594 C 28.710938 236.082031 29.742188 237.113281 31.015625 237.113281 C 32.289062 237.113281 33.320312 236.082031 33.320312 234.808594 Z M 33.320312 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.902344 234.808594 C 33.902344 233.535156 32.871094 232.503906 31.597656 232.503906 C 30.324219 232.503906 29.292969 233.535156 29.292969 234.808594 C 29.292969 236.082031 30.324219 237.113281 31.597656 237.113281 C 32.871094 237.113281 33.902344 236.082031 33.902344 234.808594 Z M 33.902344 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.957031 234.808594 C 34.957031 233.535156 33.925781 232.503906 32.652344 232.503906 C 31.378906 232.503906 30.347656 233.535156 30.347656 234.808594 C 30.347656 236.082031 31.378906 237.113281 32.652344 237.113281 C 33.925781 237.113281 34.957031 236.082031 34.957031 234.808594 Z M 34.957031 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.035156 234.808594 C 32.035156 233.535156 31.003906 232.503906 29.730469 232.503906 C 28.457031 232.503906 27.425781 233.535156 27.425781 234.808594 C 27.425781 236.082031 28.457031 237.113281 29.730469 237.113281 C 31.003906 237.113281 32.035156 236.082031 32.035156 234.808594 Z M 32.035156 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.816406 234.808594 C 32.816406 233.535156 31.785156 232.503906 30.511719 232.503906 C 29.238281 232.503906 28.207031 233.535156 28.207031 234.808594 C 28.207031 236.082031 29.238281 237.113281 30.511719 237.113281 C 31.785156 237.113281 32.816406 236.082031 32.816406 234.808594 Z M 32.816406 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.214844 234.808594 C 35.214844 233.535156 34.183594 232.503906 32.910156 232.503906 C 31.636719 232.503906 30.605469 233.535156 30.605469 234.808594 C 30.605469 236.082031 31.636719 237.113281 32.910156 237.113281 C 34.183594 237.113281 35.214844 236.082031 35.214844 234.808594 Z M 35.214844 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.625 234.808594 C 34.625 233.535156 33.59375 232.503906 32.320312 232.503906 C 31.046875 232.503906 30.015625 233.535156 30.015625 234.808594 C 30.015625 236.082031 31.046875 237.113281 32.320312 237.113281 C 33.59375 237.113281 34.625 236.082031 34.625 234.808594 Z M 34.625 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.367188 234.808594 C 33.367188 233.535156 32.335938 232.503906 31.0625 232.503906 C 29.789062 232.503906 28.757812 233.535156 28.757812 234.808594 C 28.757812 236.082031 29.789062 237.113281 31.0625 237.113281 C 32.335938 237.113281 33.367188 236.082031 33.367188 234.808594 Z M 33.367188 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.371094 234.808594 C 35.371094 233.535156 34.339844 232.503906 33.066406 232.503906 C 31.792969 232.503906 30.761719 233.535156 30.761719 234.808594 C 30.761719 236.082031 31.792969 237.113281 33.066406 237.113281 C 34.339844 237.113281 35.371094 236.082031 35.371094 234.808594 Z M 35.371094 234.808594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.332031 229.964844 C 31.332031 228.691406 30.300781 227.660156 29.027344 227.660156 C 27.753906 227.660156 26.722656 228.691406 26.722656 229.964844 C 26.722656 231.238281 27.753906 232.269531 29.027344 232.269531 C 30.300781 232.269531 31.332031 231.238281 31.332031 229.964844 Z M 31.332031 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.917969 229.964844 C 30.917969 228.691406 29.886719 227.660156 28.613281 227.660156 C 27.339844 227.660156 26.308594 228.691406 26.308594 229.964844 C 26.308594 231.238281 27.339844 232.269531 28.613281 232.269531 C 29.886719 232.269531 30.917969 231.238281 30.917969 229.964844 Z M 30.917969 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.171875 229.964844 C 31.171875 228.691406 30.140625 227.660156 28.867188 227.660156 C 27.59375 227.660156 26.5625 228.691406 26.5625 229.964844 C 26.5625 231.238281 27.59375 232.269531 28.867188 232.269531 C 30.140625 232.269531 31.171875 231.238281 31.171875 229.964844 Z M 31.171875 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.941406 229.964844 C 30.941406 228.691406 29.910156 227.660156 28.636719 227.660156 C 27.363281 227.660156 26.332031 228.691406 26.332031 229.964844 C 26.332031 231.238281 27.363281 232.269531 28.636719 232.269531 C 29.910156 232.269531 30.941406 231.238281 30.941406 229.964844 Z M 30.941406 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.015625 229.964844 C 31.015625 228.691406 29.984375 227.660156 28.710938 227.660156 C 27.4375 227.660156 26.40625 228.691406 26.40625 229.964844 C 26.40625 231.238281 27.4375 232.269531 28.710938 232.269531 C 29.984375 232.269531 31.015625 231.238281 31.015625 229.964844 Z M 31.015625 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.121094 229.964844 C 31.121094 228.691406 30.089844 227.660156 28.816406 227.660156 C 27.542969 227.660156 26.511719 228.691406 26.511719 229.964844 C 26.511719 231.238281 27.542969 232.269531 28.816406 232.269531 C 30.089844 232.269531 31.121094 231.238281 31.121094 229.964844 Z M 31.121094 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.179688 229.964844 C 31.179688 228.691406 30.148438 227.660156 28.875 227.660156 C 27.601562 227.660156 26.570312 228.691406 26.570312 229.964844 C 26.570312 231.238281 27.601562 232.269531 28.875 232.269531 C 30.148438 232.269531 31.179688 231.238281 31.179688 229.964844 Z M 31.179688 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.988281 229.964844 C 30.988281 228.691406 29.957031 227.660156 28.683594 227.660156 C 27.410156 227.660156 26.378906 228.691406 26.378906 229.964844 C 26.378906 231.238281 27.410156 232.269531 28.683594 232.269531 C 29.957031 232.269531 30.988281 231.238281 30.988281 229.964844 Z M 30.988281 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.378906 229.964844 C 31.378906 228.691406 30.347656 227.660156 29.074219 227.660156 C 27.800781 227.660156 26.769531 228.691406 26.769531 229.964844 C 26.769531 231.238281 27.800781 232.269531 29.074219 232.269531 C 30.347656 232.269531 31.378906 231.238281 31.378906 229.964844 Z M 31.378906 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.15625 229.964844 C 31.15625 228.691406 30.125 227.660156 28.851562 227.660156 C 27.578125 227.660156 26.546875 228.691406 26.546875 229.964844 C 26.546875 231.238281 27.578125 232.269531 28.851562 232.269531 C 30.125 232.269531 31.15625 231.238281 31.15625 229.964844 Z M 31.15625 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.882812 229.964844 C 30.882812 228.691406 29.851562 227.660156 28.578125 227.660156 C 27.304688 227.660156 26.273438 228.691406 26.273438 229.964844 C 26.273438 231.238281 27.304688 232.269531 28.578125 232.269531 C 29.851562 232.269531 30.882812 231.238281 30.882812 229.964844 Z M 30.882812 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.152344 229.964844 C 31.152344 228.691406 30.121094 227.660156 28.847656 227.660156 C 27.574219 227.660156 26.542969 228.691406 26.542969 229.964844 C 26.542969 231.238281 27.574219 232.269531 28.847656 232.269531 C 30.121094 232.269531 31.152344 231.238281 31.152344 229.964844 Z M 31.152344 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.324219 229.964844 C 31.324219 228.691406 30.292969 227.660156 29.019531 227.660156 C 27.746094 227.660156 26.714844 228.691406 26.714844 229.964844 C 26.714844 231.238281 27.746094 232.269531 29.019531 232.269531 C 30.292969 232.269531 31.324219 231.238281 31.324219 229.964844 Z M 31.324219 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.035156 229.964844 C 31.035156 228.691406 30.003906 227.660156 28.730469 227.660156 C 27.457031 227.660156 26.425781 228.691406 26.425781 229.964844 C 26.425781 231.238281 27.457031 232.269531 28.730469 232.269531 C 30.003906 232.269531 31.035156 231.238281 31.035156 229.964844 Z M 31.035156 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.042969 229.964844 C 31.042969 228.691406 30.011719 227.660156 28.738281 227.660156 C 27.464844 227.660156 26.433594 228.691406 26.433594 229.964844 C 26.433594 231.238281 27.464844 232.269531 28.738281 232.269531 C 30.011719 232.269531 31.042969 231.238281 31.042969 229.964844 Z M 31.042969 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.398438 229.964844 C 31.398438 228.691406 30.367188 227.660156 29.09375 227.660156 C 27.820312 227.660156 26.789062 228.691406 26.789062 229.964844 C 26.789062 231.238281 27.820312 232.269531 29.09375 232.269531 C 30.367188 232.269531 31.398438 231.238281 31.398438 229.964844 Z M 31.398438 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.253906 229.964844 C 31.253906 228.691406 30.222656 227.660156 28.949219 227.660156 C 27.675781 227.660156 26.644531 228.691406 26.644531 229.964844 C 26.644531 231.238281 27.675781 232.269531 28.949219 232.269531 C 30.222656 232.269531 31.253906 231.238281 31.253906 229.964844 Z M 31.253906 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.023438 229.964844 C 31.023438 228.691406 29.992188 227.660156 28.71875 227.660156 C 27.445312 227.660156 26.414062 228.691406 26.414062 229.964844 C 26.414062 231.238281 27.445312 232.269531 28.71875 232.269531 C 29.992188 232.269531 31.023438 231.238281 31.023438 229.964844 Z M 31.023438 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.125 229.964844 C 31.125 228.691406 30.09375 227.660156 28.820312 227.660156 C 27.546875 227.660156 26.515625 228.691406 26.515625 229.964844 C 26.515625 231.238281 27.546875 232.269531 28.820312 232.269531 C 30.09375 232.269531 31.125 231.238281 31.125 229.964844 Z M 31.125 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.226562 229.964844 C 31.226562 228.691406 30.195312 227.660156 28.921875 227.660156 C 27.648438 227.660156 26.617188 228.691406 26.617188 229.964844 C 26.617188 231.238281 27.648438 232.269531 28.921875 232.269531 C 30.195312 232.269531 31.226562 231.238281 31.226562 229.964844 Z M 31.226562 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.878906 229.964844 C 30.878906 228.691406 29.847656 227.660156 28.574219 227.660156 C 27.300781 227.660156 26.269531 228.691406 26.269531 229.964844 C 26.269531 231.238281 27.300781 232.269531 28.574219 232.269531 C 29.847656 232.269531 30.878906 231.238281 30.878906 229.964844 Z M 30.878906 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.167969 229.964844 C 31.167969 228.691406 30.136719 227.660156 28.863281 227.660156 C 27.589844 227.660156 26.558594 228.691406 26.558594 229.964844 C 26.558594 231.238281 27.589844 232.269531 28.863281 232.269531 C 30.136719 232.269531 31.167969 231.238281 31.167969 229.964844 Z M 31.167969 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.085938 229.964844 C 31.085938 228.691406 30.054688 227.660156 28.78125 227.660156 C 27.507812 227.660156 26.476562 228.691406 26.476562 229.964844 C 26.476562 231.238281 27.507812 232.269531 28.78125 232.269531 C 30.054688 232.269531 31.085938 231.238281 31.085938 229.964844 Z M 31.085938 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.9375 229.964844 C 30.9375 228.691406 29.90625 227.660156 28.632812 227.660156 C 27.359375 227.660156 26.328125 228.691406 26.328125 229.964844 C 26.328125 231.238281 27.359375 232.269531 28.632812 232.269531 C 29.90625 232.269531 30.9375 231.238281 30.9375 229.964844 Z M 30.9375 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.351562 229.964844 C 31.351562 228.691406 30.320312 227.660156 29.046875 227.660156 C 27.773438 227.660156 26.742188 228.691406 26.742188 229.964844 C 26.742188 231.238281 27.773438 232.269531 29.046875 232.269531 C 30.320312 232.269531 31.351562 231.238281 31.351562 229.964844 Z M 31.351562 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.242188 229.964844 C 31.242188 228.691406 30.210938 227.660156 28.9375 227.660156 C 27.664062 227.660156 26.632812 228.691406 26.632812 229.964844 C 26.632812 231.238281 27.664062 232.269531 28.9375 232.269531 C 30.210938 232.269531 31.242188 231.238281 31.242188 229.964844 Z M 31.242188 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.902344 229.964844 C 30.902344 228.691406 29.871094 227.660156 28.597656 227.660156 C 27.324219 227.660156 26.292969 228.691406 26.292969 229.964844 C 26.292969 231.238281 27.324219 232.269531 28.597656 232.269531 C 29.871094 232.269531 30.902344 231.238281 30.902344 229.964844 Z M 30.902344 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.984375 229.964844 C 30.984375 228.691406 29.953125 227.660156 28.679688 227.660156 C 27.40625 227.660156 26.375 228.691406 26.375 229.964844 C 26.375 231.238281 27.40625 232.269531 28.679688 232.269531 C 29.953125 232.269531 30.984375 231.238281 30.984375 229.964844 Z M 30.984375 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.164062 229.964844 C 31.164062 228.691406 30.132812 227.660156 28.859375 227.660156 C 27.585938 227.660156 26.554688 228.691406 26.554688 229.964844 C 26.554688 231.238281 27.585938 232.269531 28.859375 232.269531 C 30.132812 232.269531 31.164062 231.238281 31.164062 229.964844 Z M 31.164062 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.878906 229.964844 C 30.878906 228.691406 29.847656 227.660156 28.574219 227.660156 C 27.300781 227.660156 26.269531 228.691406 26.269531 229.964844 C 26.269531 231.238281 27.300781 232.269531 28.574219 232.269531 C 29.847656 232.269531 30.878906 231.238281 30.878906 229.964844 Z M 30.878906 229.964844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.742188 225.121094 C 30.742188 223.847656 29.710938 222.816406 28.4375 222.816406 C 27.164062 222.816406 26.132812 223.847656 26.132812 225.121094 C 26.132812 226.394531 27.164062 227.425781 28.4375 227.425781 C 29.710938 227.425781 30.742188 226.394531 30.742188 225.121094 Z M 30.742188 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.976562 225.121094 C 26.976562 223.847656 25.945312 222.816406 24.671875 222.816406 C 23.398438 222.816406 22.367188 223.847656 22.367188 225.121094 C 22.367188 226.394531 23.398438 227.425781 24.671875 227.425781 C 25.945312 227.425781 26.976562 226.394531 26.976562 225.121094 Z M 26.976562 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.273438 225.121094 C 29.273438 223.847656 28.242188 222.816406 26.96875 222.816406 C 25.695312 222.816406 24.664062 223.847656 24.664062 225.121094 C 24.664062 226.394531 25.695312 227.425781 26.96875 227.425781 C 28.242188 227.425781 29.273438 226.394531 29.273438 225.121094 Z M 29.273438 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.195312 225.121094 C 27.195312 223.847656 26.164062 222.816406 24.890625 222.816406 C 23.617188 222.816406 22.585938 223.847656 22.585938 225.121094 C 22.585938 226.394531 23.617188 227.425781 24.890625 227.425781 C 26.164062 227.425781 27.195312 226.394531 27.195312 225.121094 Z M 27.195312 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.863281 225.121094 C 27.863281 223.847656 26.832031 222.816406 25.558594 222.816406 C 24.285156 222.816406 23.253906 223.847656 23.253906 225.121094 C 23.253906 226.394531 24.285156 227.425781 25.558594 227.425781 C 26.832031 227.425781 27.863281 226.394531 27.863281 225.121094 Z M 27.863281 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.816406 225.121094 C 28.816406 223.847656 27.785156 222.816406 26.511719 222.816406 C 25.238281 222.816406 24.207031 223.847656 24.207031 225.121094 C 24.207031 226.394531 25.238281 227.425781 26.511719 227.425781 C 27.785156 227.425781 28.816406 226.394531 28.816406 225.121094 Z M 28.816406 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.332031 225.121094 C 29.332031 223.847656 28.300781 222.816406 27.027344 222.816406 C 25.753906 222.816406 24.722656 223.847656 24.722656 225.121094 C 24.722656 226.394531 25.753906 227.425781 27.027344 227.425781 C 28.300781 227.425781 29.332031 226.394531 29.332031 225.121094 Z M 29.332031 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.613281 225.121094 C 27.613281 223.847656 26.582031 222.816406 25.308594 222.816406 C 24.035156 222.816406 23.003906 223.847656 23.003906 225.121094 C 23.003906 226.394531 24.035156 227.425781 25.308594 227.425781 C 26.582031 227.425781 27.613281 226.394531 27.613281 225.121094 Z M 27.613281 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.160156 225.121094 C 31.160156 223.847656 30.128906 222.816406 28.855469 222.816406 C 27.582031 222.816406 26.550781 223.847656 26.550781 225.121094 C 26.550781 226.394531 27.582031 227.425781 28.855469 227.425781 C 30.128906 227.425781 31.160156 226.394531 31.160156 225.121094 Z M 31.160156 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.148438 225.121094 C 29.148438 223.847656 28.117188 222.816406 26.84375 222.816406 C 25.570312 222.816406 24.539062 223.847656 24.539062 225.121094 C 24.539062 226.394531 25.570312 227.425781 26.84375 227.425781 C 28.117188 227.425781 29.148438 226.394531 29.148438 225.121094 Z M 29.148438 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.660156 225.121094 C 26.660156 223.847656 25.628906 222.816406 24.355469 222.816406 C 23.082031 222.816406 22.050781 223.847656 22.050781 225.121094 C 22.050781 226.394531 23.082031 227.425781 24.355469 227.425781 C 25.628906 227.425781 26.660156 226.394531 26.660156 225.121094 Z M 26.660156 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.101562 225.121094 C 29.101562 223.847656 28.070312 222.816406 26.796875 222.816406 C 25.523438 222.816406 24.492188 223.847656 24.492188 225.121094 C 24.492188 226.394531 25.523438 227.425781 26.796875 227.425781 C 28.070312 227.425781 29.101562 226.394531 29.101562 225.121094 Z M 29.101562 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.667969 225.121094 C 30.667969 223.847656 29.636719 222.816406 28.363281 222.816406 C 27.089844 222.816406 26.058594 223.847656 26.058594 225.121094 C 26.058594 226.394531 27.089844 227.425781 28.363281 227.425781 C 29.636719 227.425781 30.667969 226.394531 30.667969 225.121094 Z M 30.667969 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.054688 225.121094 C 28.054688 223.847656 27.023438 222.816406 25.75 222.816406 C 24.476562 222.816406 23.445312 223.847656 23.445312 225.121094 C 23.445312 226.394531 24.476562 227.425781 25.75 227.425781 C 27.023438 227.425781 28.054688 226.394531 28.054688 225.121094 Z M 28.054688 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.105469 225.121094 C 28.105469 223.847656 27.074219 222.816406 25.800781 222.816406 C 24.527344 222.816406 23.496094 223.847656 23.496094 225.121094 C 23.496094 226.394531 24.527344 227.425781 25.800781 227.425781 C 27.074219 227.425781 28.105469 226.394531 28.105469 225.121094 Z M 28.105469 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.332031 225.121094 C 31.332031 223.847656 30.300781 222.816406 29.027344 222.816406 C 27.753906 222.816406 26.722656 223.847656 26.722656 225.121094 C 26.722656 226.394531 27.753906 227.425781 29.027344 227.425781 C 30.300781 227.425781 31.332031 226.394531 31.332031 225.121094 Z M 31.332031 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.015625 225.121094 C 30.015625 223.847656 28.984375 222.816406 27.710938 222.816406 C 26.4375 222.816406 25.40625 223.847656 25.40625 225.121094 C 25.40625 226.394531 26.4375 227.425781 27.710938 227.425781 C 28.984375 227.425781 30.015625 226.394531 30.015625 225.121094 Z M 30.015625 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.941406 225.121094 C 27.941406 223.847656 26.910156 222.816406 25.636719 222.816406 C 24.363281 222.816406 23.332031 223.847656 23.332031 225.121094 C 23.332031 226.394531 24.363281 227.425781 25.636719 227.425781 C 26.910156 227.425781 27.941406 226.394531 27.941406 225.121094 Z M 27.941406 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.839844 225.121094 C 28.839844 223.847656 27.808594 222.816406 26.535156 222.816406 C 25.261719 222.816406 24.230469 223.847656 24.230469 225.121094 C 24.230469 226.394531 25.261719 227.425781 26.535156 227.425781 C 27.808594 227.425781 28.839844 226.394531 28.839844 225.121094 Z M 28.839844 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.773438 225.121094 C 29.773438 223.847656 28.742188 222.816406 27.46875 222.816406 C 26.195312 222.816406 25.164062 223.847656 25.164062 225.121094 C 25.164062 226.394531 26.195312 227.425781 27.46875 227.425781 C 28.742188 227.425781 29.773438 226.394531 29.773438 225.121094 Z M 29.773438 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.609375 225.121094 C 26.609375 223.847656 25.578125 222.816406 24.304688 222.816406 C 23.03125 222.816406 22 223.847656 22 225.121094 C 22 226.394531 23.03125 227.425781 24.304688 227.425781 C 25.578125 227.425781 26.609375 226.394531 26.609375 225.121094 Z M 26.609375 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.253906 225.121094 C 29.253906 223.847656 28.222656 222.816406 26.949219 222.816406 C 25.675781 222.816406 24.644531 223.847656 24.644531 225.121094 C 24.644531 226.394531 25.675781 227.425781 26.949219 227.425781 C 28.222656 227.425781 29.253906 226.394531 29.253906 225.121094 Z M 29.253906 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.503906 225.121094 C 28.503906 223.847656 27.472656 222.816406 26.199219 222.816406 C 24.925781 222.816406 23.894531 223.847656 23.894531 225.121094 C 23.894531 226.394531 24.925781 227.425781 26.199219 227.425781 C 27.472656 227.425781 28.503906 226.394531 28.503906 225.121094 Z M 28.503906 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.15625 225.121094 C 27.15625 223.847656 26.125 222.816406 24.851562 222.816406 C 23.578125 222.816406 22.546875 223.847656 22.546875 225.121094 C 22.546875 226.394531 23.578125 227.425781 24.851562 227.425781 C 26.125 227.425781 27.15625 226.394531 27.15625 225.121094 Z M 27.15625 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.898438 225.121094 C 30.898438 223.847656 29.867188 222.816406 28.59375 222.816406 C 27.320312 222.816406 26.289062 223.847656 26.289062 225.121094 C 26.289062 226.394531 27.320312 227.425781 28.59375 227.425781 C 29.867188 227.425781 30.898438 226.394531 30.898438 225.121094 Z M 30.898438 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.898438 225.121094 C 29.898438 223.847656 28.867188 222.816406 27.59375 222.816406 C 26.320312 222.816406 25.289062 223.847656 25.289062 225.121094 C 25.289062 226.394531 26.320312 227.425781 27.59375 227.425781 C 28.867188 227.425781 29.898438 226.394531 29.898438 225.121094 Z M 29.898438 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.820312 225.121094 C 26.820312 223.847656 25.789062 222.816406 24.515625 222.816406 C 23.242188 222.816406 22.210938 223.847656 22.210938 225.121094 C 22.210938 226.394531 23.242188 227.425781 24.515625 227.425781 C 25.789062 227.425781 26.820312 226.394531 26.820312 225.121094 Z M 26.820312 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.582031 225.121094 C 27.582031 223.847656 26.550781 222.816406 25.277344 222.816406 C 24.003906 222.816406 22.972656 223.847656 22.972656 225.121094 C 22.972656 226.394531 24.003906 227.425781 25.277344 227.425781 C 26.550781 227.425781 27.582031 226.394531 27.582031 225.121094 Z M 27.582031 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.191406 225.121094 C 29.191406 223.847656 28.160156 222.816406 26.886719 222.816406 C 25.613281 222.816406 24.582031 223.847656 24.582031 225.121094 C 24.582031 226.394531 25.613281 227.425781 26.886719 227.425781 C 28.160156 227.425781 29.191406 226.394531 29.191406 225.121094 Z M 29.191406 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.621094 225.121094 C 26.621094 223.847656 25.589844 222.816406 24.316406 222.816406 C 23.042969 222.816406 22.011719 223.847656 22.011719 225.121094 C 22.011719 226.394531 23.042969 227.425781 24.316406 227.425781 C 25.589844 227.425781 26.621094 226.394531 26.621094 225.121094 Z M 26.621094 225.121094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.382812 220.277344 C 30.382812 219.003906 29.351562 217.972656 28.078125 217.972656 C 26.804688 217.972656 25.773438 219.003906 25.773438 220.277344 C 25.773438 221.550781 26.804688 222.582031 28.078125 222.582031 C 29.351562 222.582031 30.382812 221.550781 30.382812 220.277344 Z M 30.382812 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.308594 220.277344 C 23.308594 219.003906 22.277344 217.972656 21.003906 217.972656 C 19.730469 217.972656 18.699219 219.003906 18.699219 220.277344 C 18.699219 221.550781 19.730469 222.582031 21.003906 222.582031 C 22.277344 222.582031 23.308594 221.550781 23.308594 220.277344 Z M 23.308594 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.628906 220.277344 C 27.628906 219.003906 26.597656 217.972656 25.324219 217.972656 C 24.050781 217.972656 23.019531 219.003906 23.019531 220.277344 C 23.019531 221.550781 24.050781 222.582031 25.324219 222.582031 C 26.597656 222.582031 27.628906 221.550781 27.628906 220.277344 Z M 27.628906 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.71875 220.277344 C 23.71875 219.003906 22.6875 217.972656 21.414062 217.972656 C 20.140625 217.972656 19.109375 219.003906 19.109375 220.277344 C 19.109375 221.550781 20.140625 222.582031 21.414062 222.582031 C 22.6875 222.582031 23.71875 221.550781 23.71875 220.277344 Z M 23.71875 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.976562 220.277344 C 24.976562 219.003906 23.945312 217.972656 22.671875 217.972656 C 21.398438 217.972656 20.367188 219.003906 20.367188 220.277344 C 20.367188 221.550781 21.398438 222.582031 22.671875 222.582031 C 23.945312 222.582031 24.976562 221.550781 24.976562 220.277344 Z M 24.976562 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.765625 220.277344 C 26.765625 219.003906 25.734375 217.972656 24.460938 217.972656 C 23.1875 217.972656 22.15625 219.003906 22.15625 220.277344 C 22.15625 221.550781 23.1875 222.582031 24.460938 222.582031 C 25.734375 222.582031 26.765625 221.550781 26.765625 220.277344 Z M 26.765625 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.734375 220.277344 C 27.734375 219.003906 26.703125 217.972656 25.429688 217.972656 C 24.15625 217.972656 23.125 219.003906 23.125 220.277344 C 23.125 221.550781 24.15625 222.582031 25.429688 222.582031 C 26.703125 222.582031 27.734375 221.550781 27.734375 220.277344 Z M 27.734375 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.507812 220.277344 C 24.507812 219.003906 23.476562 217.972656 22.203125 217.972656 C 20.929688 217.972656 19.898438 219.003906 19.898438 220.277344 C 19.898438 221.550781 20.929688 222.582031 22.203125 222.582031 C 23.476562 222.582031 24.507812 221.550781 24.507812 220.277344 Z M 24.507812 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.175781 220.277344 C 31.175781 219.003906 30.144531 217.972656 28.871094 217.972656 C 27.597656 217.972656 26.566406 219.003906 26.566406 220.277344 C 26.566406 221.550781 27.597656 222.582031 28.871094 222.582031 C 30.144531 222.582031 31.175781 221.550781 31.175781 220.277344 Z M 31.175781 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.394531 220.277344 C 27.394531 219.003906 26.363281 217.972656 25.089844 217.972656 C 23.816406 217.972656 22.785156 219.003906 22.785156 220.277344 C 22.785156 221.550781 23.816406 222.582031 25.089844 222.582031 C 26.363281 222.582031 27.394531 221.550781 27.394531 220.277344 Z M 27.394531 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.714844 220.277344 C 22.714844 219.003906 21.683594 217.972656 20.410156 217.972656 C 19.136719 217.972656 18.105469 219.003906 18.105469 220.277344 C 18.105469 221.550781 19.136719 222.582031 20.410156 222.582031 C 21.683594 222.582031 22.714844 221.550781 22.714844 220.277344 Z M 22.714844 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.304688 220.277344 C 27.304688 219.003906 26.273438 217.972656 25 217.972656 C 23.726562 217.972656 22.695312 219.003906 22.695312 220.277344 C 22.695312 221.550781 23.726562 222.582031 25 222.582031 C 26.273438 222.582031 27.304688 221.550781 27.304688 220.277344 Z M 27.304688 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.25 220.277344 C 30.25 219.003906 29.21875 217.972656 27.945312 217.972656 C 26.671875 217.972656 25.640625 219.003906 25.640625 220.277344 C 25.640625 221.550781 26.671875 222.582031 27.945312 222.582031 C 29.21875 222.582031 30.25 221.550781 30.25 220.277344 Z M 30.25 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.332031 220.277344 C 25.332031 219.003906 24.300781 217.972656 23.027344 217.972656 C 21.753906 217.972656 20.722656 219.003906 20.722656 220.277344 C 20.722656 221.550781 21.753906 222.582031 23.027344 222.582031 C 24.300781 222.582031 25.332031 221.550781 25.332031 220.277344 Z M 25.332031 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.433594 220.277344 C 25.433594 219.003906 24.402344 217.972656 23.128906 217.972656 C 21.855469 217.972656 20.824219 219.003906 20.824219 220.277344 C 20.824219 221.550781 21.855469 222.582031 23.128906 222.582031 C 24.402344 222.582031 25.433594 221.550781 25.433594 220.277344 Z M 25.433594 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.492188 220.277344 C 31.492188 219.003906 30.460938 217.972656 29.1875 217.972656 C 27.914062 217.972656 26.882812 219.003906 26.882812 220.277344 C 26.882812 221.550781 27.914062 222.582031 29.1875 222.582031 C 30.460938 222.582031 31.492188 221.550781 31.492188 220.277344 Z M 31.492188 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.019531 220.277344 C 29.019531 219.003906 27.988281 217.972656 26.714844 217.972656 C 25.441406 217.972656 24.410156 219.003906 24.410156 220.277344 C 24.410156 221.550781 25.441406 222.582031 26.714844 222.582031 C 27.988281 222.582031 29.019531 221.550781 29.019531 220.277344 Z M 29.019531 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.121094 220.277344 C 25.121094 219.003906 24.089844 217.972656 22.816406 217.972656 C 21.542969 217.972656 20.511719 219.003906 20.511719 220.277344 C 20.511719 221.550781 21.542969 222.582031 22.816406 222.582031 C 24.089844 222.582031 25.121094 221.550781 25.121094 220.277344 Z M 25.121094 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.816406 220.277344 C 26.816406 219.003906 25.785156 217.972656 24.511719 217.972656 C 23.238281 217.972656 22.207031 219.003906 22.207031 220.277344 C 22.207031 221.550781 23.238281 222.582031 24.511719 222.582031 C 25.785156 222.582031 26.816406 221.550781 26.816406 220.277344 Z M 26.816406 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.570312 220.277344 C 28.570312 219.003906 27.539062 217.972656 26.265625 217.972656 C 24.992188 217.972656 23.960938 219.003906 23.960938 220.277344 C 23.960938 221.550781 24.992188 222.582031 26.265625 222.582031 C 27.539062 222.582031 28.570312 221.550781 28.570312 220.277344 Z M 28.570312 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.621094 220.277344 C 22.621094 219.003906 21.589844 217.972656 20.316406 217.972656 C 19.042969 217.972656 18.011719 219.003906 18.011719 220.277344 C 18.011719 221.550781 19.042969 222.582031 20.316406 222.582031 C 21.589844 222.582031 22.621094 221.550781 22.621094 220.277344 Z M 22.621094 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.589844 220.277344 C 27.589844 219.003906 26.558594 217.972656 25.285156 217.972656 C 24.011719 217.972656 22.980469 219.003906 22.980469 220.277344 C 22.980469 221.550781 24.011719 222.582031 25.285156 222.582031 C 26.558594 222.582031 27.589844 221.550781 27.589844 220.277344 Z M 27.589844 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.179688 220.277344 C 26.179688 219.003906 25.148438 217.972656 23.875 217.972656 C 22.601562 217.972656 21.570312 219.003906 21.570312 220.277344 C 21.570312 221.550781 22.601562 222.582031 23.875 222.582031 C 25.148438 222.582031 26.179688 221.550781 26.179688 220.277344 Z M 26.179688 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.644531 220.277344 C 23.644531 219.003906 22.613281 217.972656 21.339844 217.972656 C 20.066406 217.972656 19.035156 219.003906 19.035156 220.277344 C 19.035156 221.550781 20.066406 222.582031 21.339844 222.582031 C 22.613281 222.582031 23.644531 221.550781 23.644531 220.277344 Z M 23.644531 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.679688 220.277344 C 30.679688 219.003906 29.648438 217.972656 28.375 217.972656 C 27.101562 217.972656 26.070312 219.003906 26.070312 220.277344 C 26.070312 221.550781 27.101562 222.582031 28.375 222.582031 C 29.648438 222.582031 30.679688 221.550781 30.679688 220.277344 Z M 30.679688 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.800781 220.277344 C 28.800781 219.003906 27.769531 217.972656 26.496094 217.972656 C 25.222656 217.972656 24.191406 219.003906 24.191406 220.277344 C 24.191406 221.550781 25.222656 222.582031 26.496094 222.582031 C 27.769531 222.582031 28.800781 221.550781 28.800781 220.277344 Z M 28.800781 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.019531 220.277344 C 23.019531 219.003906 21.988281 217.972656 20.714844 217.972656 C 19.441406 217.972656 18.410156 219.003906 18.410156 220.277344 C 18.410156 221.550781 19.441406 222.582031 20.714844 222.582031 C 21.988281 222.582031 23.019531 221.550781 23.019531 220.277344 Z M 23.019531 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.445312 220.277344 C 24.445312 219.003906 23.414062 217.972656 22.140625 217.972656 C 20.867188 217.972656 19.835938 219.003906 19.835938 220.277344 C 19.835938 221.550781 20.867188 222.582031 22.140625 222.582031 C 23.414062 222.582031 24.445312 221.550781 24.445312 220.277344 Z M 24.445312 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.476562 220.277344 C 27.476562 219.003906 26.445312 217.972656 25.171875 217.972656 C 23.898438 217.972656 22.867188 219.003906 22.867188 220.277344 C 22.867188 221.550781 23.898438 222.582031 25.171875 222.582031 C 26.445312 222.582031 27.476562 221.550781 27.476562 220.277344 Z M 27.476562 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.644531 220.277344 C 22.644531 219.003906 21.613281 217.972656 20.339844 217.972656 C 19.066406 217.972656 18.035156 219.003906 18.035156 220.277344 C 18.035156 221.550781 19.066406 222.582031 20.339844 222.582031 C 21.613281 222.582031 22.644531 221.550781 22.644531 220.277344 Z M 22.644531 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.269531 215.433594 C 30.269531 214.160156 29.238281 213.128906 27.964844 213.128906 C 26.691406 213.128906 25.660156 214.160156 25.660156 215.433594 C 25.660156 216.707031 26.691406 217.738281 27.964844 217.738281 C 29.238281 217.738281 30.269531 216.707031 30.269531 215.433594 Z M 30.269531 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.953125 215.433594 C 19.953125 214.160156 18.921875 213.128906 17.648438 213.128906 C 16.375 213.128906 15.34375 214.160156 15.34375 215.433594 C 15.34375 216.707031 16.375 217.738281 17.648438 217.738281 C 18.921875 217.738281 19.953125 216.707031 19.953125 215.433594 Z M 19.953125 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.253906 215.433594 C 26.253906 214.160156 25.222656 213.128906 23.949219 213.128906 C 22.675781 213.128906 21.644531 214.160156 21.644531 215.433594 C 21.644531 216.707031 22.675781 217.738281 23.949219 217.738281 C 25.222656 217.738281 26.253906 216.707031 26.253906 215.433594 Z M 26.253906 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.550781 215.433594 C 20.550781 214.160156 19.519531 213.128906 18.246094 213.128906 C 16.972656 213.128906 15.941406 214.160156 15.941406 215.433594 C 15.941406 216.707031 16.972656 217.738281 18.246094 217.738281 C 19.519531 217.738281 20.550781 216.707031 20.550781 215.433594 Z M 20.550781 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.382812 215.433594 C 22.382812 214.160156 21.351562 213.128906 20.078125 213.128906 C 18.804688 213.128906 17.773438 214.160156 17.773438 215.433594 C 17.773438 216.707031 18.804688 217.738281 20.078125 217.738281 C 21.351562 217.738281 22.382812 216.707031 22.382812 215.433594 Z M 22.382812 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.992188 215.433594 C 24.992188 214.160156 23.960938 213.128906 22.6875 213.128906 C 21.414062 213.128906 20.382812 214.160156 20.382812 215.433594 C 20.382812 216.707031 21.414062 217.738281 22.6875 217.738281 C 23.960938 217.738281 24.992188 216.707031 24.992188 215.433594 Z M 24.992188 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.40625 215.433594 C 26.40625 214.160156 25.375 213.128906 24.101562 213.128906 C 22.828125 213.128906 21.796875 214.160156 21.796875 215.433594 C 21.796875 216.707031 22.828125 217.738281 24.101562 217.738281 C 25.375 217.738281 26.40625 216.707031 26.40625 215.433594 Z M 26.40625 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 21.703125 215.433594 C 21.703125 214.160156 20.671875 213.128906 19.398438 213.128906 C 18.125 213.128906 17.09375 214.160156 17.09375 215.433594 C 17.09375 216.707031 18.125 217.738281 19.398438 217.738281 C 20.671875 217.738281 21.703125 216.707031 21.703125 215.433594 Z M 21.703125 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.421875 215.433594 C 31.421875 214.160156 30.390625 213.128906 29.117188 213.128906 C 27.84375 213.128906 26.8125 214.160156 26.8125 215.433594 C 26.8125 216.707031 27.84375 217.738281 29.117188 217.738281 C 30.390625 217.738281 31.421875 216.707031 31.421875 215.433594 Z M 31.421875 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.90625 215.433594 C 25.90625 214.160156 24.875 213.128906 23.601562 213.128906 C 22.328125 213.128906 21.296875 214.160156 21.296875 215.433594 C 21.296875 216.707031 22.328125 217.738281 23.601562 217.738281 C 24.875 217.738281 25.90625 216.707031 25.90625 215.433594 Z M 25.90625 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.085938 215.433594 C 19.085938 214.160156 18.054688 213.128906 16.78125 213.128906 C 15.507812 213.128906 14.476562 214.160156 14.476562 215.433594 C 14.476562 216.707031 15.507812 217.738281 16.78125 217.738281 C 18.054688 217.738281 19.085938 216.707031 19.085938 215.433594 Z M 19.085938 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.78125 215.433594 C 25.78125 214.160156 24.75 213.128906 23.476562 213.128906 C 22.203125 213.128906 21.171875 214.160156 21.171875 215.433594 C 21.171875 216.707031 22.203125 217.738281 23.476562 217.738281 C 24.75 217.738281 25.78125 216.707031 25.78125 215.433594 Z M 25.78125 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.074219 215.433594 C 30.074219 214.160156 29.042969 213.128906 27.769531 213.128906 C 26.496094 213.128906 25.464844 214.160156 25.464844 215.433594 C 25.464844 216.707031 26.496094 217.738281 27.769531 217.738281 C 29.042969 217.738281 30.074219 216.707031 30.074219 215.433594 Z M 30.074219 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.90625 215.433594 C 22.90625 214.160156 21.875 213.128906 20.601562 213.128906 C 19.328125 213.128906 18.296875 214.160156 18.296875 215.433594 C 18.296875 216.707031 19.328125 217.738281 20.601562 217.738281 C 21.875 217.738281 22.90625 216.707031 22.90625 215.433594 Z M 22.90625 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.050781 215.433594 C 23.050781 214.160156 22.019531 213.128906 20.746094 213.128906 C 19.472656 213.128906 18.441406 214.160156 18.441406 215.433594 C 18.441406 216.707031 19.472656 217.738281 20.746094 217.738281 C 22.019531 217.738281 23.050781 216.707031 23.050781 215.433594 Z M 23.050781 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.886719 215.433594 C 31.886719 214.160156 30.855469 213.128906 29.582031 213.128906 C 28.308594 213.128906 27.277344 214.160156 27.277344 215.433594 C 27.277344 216.707031 28.308594 217.738281 29.582031 217.738281 C 30.855469 217.738281 31.886719 216.707031 31.886719 215.433594 Z M 31.886719 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.28125 215.433594 C 28.28125 214.160156 27.25 213.128906 25.976562 213.128906 C 24.703125 213.128906 23.671875 214.160156 23.671875 215.433594 C 23.671875 216.707031 24.703125 217.738281 25.976562 217.738281 C 27.25 217.738281 28.28125 216.707031 28.28125 215.433594 Z M 28.28125 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.59375 215.433594 C 22.59375 214.160156 21.5625 213.128906 20.289062 213.128906 C 19.015625 213.128906 17.984375 214.160156 17.984375 215.433594 C 17.984375 216.707031 19.015625 217.738281 20.289062 217.738281 C 21.5625 217.738281 22.59375 216.707031 22.59375 215.433594 Z M 22.59375 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.066406 215.433594 C 25.066406 214.160156 24.035156 213.128906 22.761719 213.128906 C 21.488281 213.128906 20.457031 214.160156 20.457031 215.433594 C 20.457031 216.707031 21.488281 217.738281 22.761719 217.738281 C 24.035156 217.738281 25.066406 216.707031 25.066406 215.433594 Z M 25.066406 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.625 215.433594 C 27.625 214.160156 26.59375 213.128906 25.320312 213.128906 C 24.046875 213.128906 23.015625 214.160156 23.015625 215.433594 C 23.015625 216.707031 24.046875 217.738281 25.320312 217.738281 C 26.59375 217.738281 27.625 216.707031 27.625 215.433594 Z M 27.625 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 18.949219 215.433594 C 18.949219 214.160156 17.917969 213.128906 16.644531 213.128906 C 15.371094 213.128906 14.339844 214.160156 14.339844 215.433594 C 14.339844 216.707031 15.371094 217.738281 16.644531 217.738281 C 17.917969 217.738281 18.949219 216.707031 18.949219 215.433594 Z M 18.949219 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.195312 215.433594 C 26.195312 214.160156 25.164062 213.128906 23.890625 213.128906 C 22.617188 213.128906 21.585938 214.160156 21.585938 215.433594 C 21.585938 216.707031 22.617188 217.738281 23.890625 217.738281 C 25.164062 217.738281 26.195312 216.707031 26.195312 215.433594 Z M 26.195312 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.140625 215.433594 C 24.140625 214.160156 23.109375 213.128906 21.835938 213.128906 C 20.5625 213.128906 19.53125 214.160156 19.53125 215.433594 C 19.53125 216.707031 20.5625 217.738281 21.835938 217.738281 C 23.109375 217.738281 24.140625 216.707031 24.140625 215.433594 Z M 24.140625 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.445312 215.433594 C 20.445312 214.160156 19.414062 213.128906 18.140625 213.128906 C 16.867188 213.128906 15.835938 214.160156 15.835938 215.433594 C 15.835938 216.707031 16.867188 217.738281 18.140625 217.738281 C 19.414062 217.738281 20.445312 216.707031 20.445312 215.433594 Z M 20.445312 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.699219 215.433594 C 30.699219 214.160156 29.667969 213.128906 28.394531 213.128906 C 27.121094 213.128906 26.089844 214.160156 26.089844 215.433594 C 26.089844 216.707031 27.121094 217.738281 28.394531 217.738281 C 29.667969 217.738281 30.699219 216.707031 30.699219 215.433594 Z M 30.699219 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.960938 215.433594 C 27.960938 214.160156 26.929688 213.128906 25.65625 213.128906 C 24.382812 213.128906 23.351562 214.160156 23.351562 215.433594 C 23.351562 216.707031 24.382812 217.738281 25.65625 217.738281 C 26.929688 217.738281 27.960938 216.707031 27.960938 215.433594 Z M 27.960938 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.53125 215.433594 C 19.53125 214.160156 18.5 213.128906 17.226562 213.128906 C 15.953125 213.128906 14.921875 214.160156 14.921875 215.433594 C 14.921875 216.707031 15.953125 217.738281 17.226562 217.738281 C 18.5 217.738281 19.53125 216.707031 19.53125 215.433594 Z M 19.53125 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 21.609375 215.433594 C 21.609375 214.160156 20.578125 213.128906 19.304688 213.128906 C 18.03125 213.128906 17 214.160156 17 215.433594 C 17 216.707031 18.03125 217.738281 19.304688 217.738281 C 20.578125 217.738281 21.609375 216.707031 21.609375 215.433594 Z M 21.609375 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.027344 215.433594 C 26.027344 214.160156 24.996094 213.128906 23.722656 213.128906 C 22.449219 213.128906 21.417969 214.160156 21.417969 215.433594 C 21.417969 216.707031 22.449219 217.738281 23.722656 217.738281 C 24.996094 217.738281 26.027344 216.707031 26.027344 215.433594 Z M 26.027344 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 18.984375 215.433594 C 18.984375 214.160156 17.953125 213.128906 16.679688 213.128906 C 15.40625 213.128906 14.375 214.160156 14.375 215.433594 C 14.375 216.707031 15.40625 217.738281 16.679688 217.738281 C 17.953125 217.738281 18.984375 216.707031 18.984375 215.433594 Z M 18.984375 215.433594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.394531 210.589844 C 30.394531 209.316406 29.363281 208.285156 28.089844 208.285156 C 26.816406 208.285156 25.785156 209.316406 25.785156 210.589844 C 25.785156 211.863281 26.816406 212.894531 28.089844 212.894531 C 29.363281 212.894531 30.394531 211.863281 30.394531 210.589844 Z M 30.394531 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.941406 210.589844 C 16.941406 209.316406 15.910156 208.285156 14.636719 208.285156 C 13.363281 208.285156 12.332031 209.316406 12.332031 210.589844 C 12.332031 211.863281 13.363281 212.894531 14.636719 212.894531 C 15.910156 212.894531 16.941406 211.863281 16.941406 210.589844 Z M 16.941406 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.160156 210.589844 C 25.160156 209.316406 24.128906 208.285156 22.855469 208.285156 C 21.582031 208.285156 20.550781 209.316406 20.550781 210.589844 C 20.550781 211.863281 21.582031 212.894531 22.855469 212.894531 C 24.128906 212.894531 25.160156 211.863281 25.160156 210.589844 Z M 25.160156 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 17.722656 210.589844 C 17.722656 209.316406 16.691406 208.285156 15.417969 208.285156 C 14.144531 208.285156 13.113281 209.316406 13.113281 210.589844 C 13.113281 211.863281 14.144531 212.894531 15.417969 212.894531 C 16.691406 212.894531 17.722656 211.863281 17.722656 210.589844 Z M 17.722656 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.109375 210.589844 C 20.109375 209.316406 19.078125 208.285156 17.804688 208.285156 C 16.53125 208.285156 15.5 209.316406 15.5 210.589844 C 15.5 211.863281 16.53125 212.894531 17.804688 212.894531 C 19.078125 212.894531 20.109375 211.863281 20.109375 210.589844 Z M 20.109375 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.515625 210.589844 C 23.515625 209.316406 22.484375 208.285156 21.210938 208.285156 C 19.9375 208.285156 18.90625 209.316406 18.90625 210.589844 C 18.90625 211.863281 19.9375 212.894531 21.210938 212.894531 C 22.484375 212.894531 23.515625 211.863281 23.515625 210.589844 Z M 23.515625 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.359375 210.589844 C 25.359375 209.316406 24.328125 208.285156 23.054688 208.285156 C 21.78125 208.285156 20.75 209.316406 20.75 210.589844 C 20.75 211.863281 21.78125 212.894531 23.054688 212.894531 C 24.328125 212.894531 25.359375 211.863281 25.359375 210.589844 Z M 25.359375 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.226562 210.589844 C 19.226562 209.316406 18.195312 208.285156 16.921875 208.285156 C 15.648438 208.285156 14.617188 209.316406 14.617188 210.589844 C 14.617188 211.863281 15.648438 212.894531 16.921875 212.894531 C 18.195312 212.894531 19.226562 211.863281 19.226562 210.589844 Z M 19.226562 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.898438 210.589844 C 31.898438 209.316406 30.867188 208.285156 29.59375 208.285156 C 28.320312 208.285156 27.289062 209.316406 27.289062 210.589844 C 27.289062 211.863281 28.320312 212.894531 29.59375 212.894531 C 30.867188 212.894531 31.898438 211.863281 31.898438 210.589844 Z M 31.898438 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.707031 210.589844 C 24.707031 209.316406 23.675781 208.285156 22.402344 208.285156 C 21.128906 208.285156 20.097656 209.316406 20.097656 210.589844 C 20.097656 211.863281 21.128906 212.894531 22.402344 212.894531 C 23.675781 212.894531 24.707031 211.863281 24.707031 210.589844 Z M 24.707031 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.8125 210.589844 C 15.8125 209.316406 14.78125 208.285156 13.507812 208.285156 C 12.234375 208.285156 11.203125 209.316406 11.203125 210.589844 C 11.203125 211.863281 12.234375 212.894531 13.507812 212.894531 C 14.78125 212.894531 15.8125 211.863281 15.8125 210.589844 Z M 15.8125 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.542969 210.589844 C 24.542969 209.316406 23.511719 208.285156 22.238281 208.285156 C 20.964844 208.285156 19.933594 209.316406 19.933594 210.589844 C 19.933594 211.863281 20.964844 212.894531 22.238281 212.894531 C 23.511719 212.894531 24.542969 211.863281 24.542969 210.589844 Z M 24.542969 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.140625 210.589844 C 30.140625 209.316406 29.109375 208.285156 27.835938 208.285156 C 26.5625 208.285156 25.53125 209.316406 25.53125 210.589844 C 25.53125 211.863281 26.5625 212.894531 27.835938 212.894531 C 29.109375 212.894531 30.140625 211.863281 30.140625 210.589844 Z M 30.140625 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.792969 210.589844 C 20.792969 209.316406 19.761719 208.285156 18.488281 208.285156 C 17.214844 208.285156 16.183594 209.316406 16.183594 210.589844 C 16.183594 211.863281 17.214844 212.894531 18.488281 212.894531 C 19.761719 212.894531 20.792969 211.863281 20.792969 210.589844 Z M 20.792969 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.984375 210.589844 C 20.984375 209.316406 19.953125 208.285156 18.679688 208.285156 C 17.40625 208.285156 16.375 209.316406 16.375 210.589844 C 16.375 211.863281 17.40625 212.894531 18.679688 212.894531 C 19.953125 212.894531 20.984375 211.863281 20.984375 210.589844 Z M 20.984375 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.503906 210.589844 C 32.503906 209.316406 31.472656 208.285156 30.199219 208.285156 C 28.925781 208.285156 27.894531 209.316406 27.894531 210.589844 C 27.894531 211.863281 28.925781 212.894531 30.199219 212.894531 C 31.472656 212.894531 32.503906 211.863281 32.503906 210.589844 Z M 32.503906 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.800781 210.589844 C 27.800781 209.316406 26.769531 208.285156 25.496094 208.285156 C 24.222656 208.285156 23.191406 209.316406 23.191406 210.589844 C 23.191406 211.863281 24.222656 212.894531 25.496094 212.894531 C 26.769531 212.894531 27.800781 211.863281 27.800781 210.589844 Z M 27.800781 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.386719 210.589844 C 20.386719 209.316406 19.355469 208.285156 18.082031 208.285156 C 16.808594 208.285156 15.777344 209.316406 15.777344 210.589844 C 15.777344 211.863281 16.808594 212.894531 18.082031 212.894531 C 19.355469 212.894531 20.386719 211.863281 20.386719 210.589844 Z M 20.386719 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.609375 210.589844 C 23.609375 209.316406 22.578125 208.285156 21.304688 208.285156 C 20.03125 208.285156 19 209.316406 19 210.589844 C 19 211.863281 20.03125 212.894531 21.304688 212.894531 C 22.578125 212.894531 23.609375 211.863281 23.609375 210.589844 Z M 23.609375 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.945312 210.589844 C 26.945312 209.316406 25.914062 208.285156 24.640625 208.285156 C 23.367188 208.285156 22.335938 209.316406 22.335938 210.589844 C 22.335938 211.863281 23.367188 212.894531 24.640625 212.894531 C 25.914062 212.894531 26.945312 211.863281 26.945312 210.589844 Z M 26.945312 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.632812 210.589844 C 15.632812 209.316406 14.601562 208.285156 13.328125 208.285156 C 12.054688 208.285156 11.023438 209.316406 11.023438 210.589844 C 11.023438 211.863281 12.054688 212.894531 13.328125 212.894531 C 14.601562 212.894531 15.632812 211.863281 15.632812 210.589844 Z M 15.632812 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.082031 210.589844 C 25.082031 209.316406 24.050781 208.285156 22.777344 208.285156 C 21.503906 208.285156 20.472656 209.316406 20.472656 210.589844 C 20.472656 211.863281 21.503906 212.894531 22.777344 212.894531 C 24.050781 212.894531 25.082031 211.863281 25.082031 210.589844 Z M 25.082031 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.402344 210.589844 C 22.402344 209.316406 21.371094 208.285156 20.097656 208.285156 C 18.824219 208.285156 17.792969 209.316406 17.792969 210.589844 C 17.792969 211.863281 18.824219 212.894531 20.097656 212.894531 C 21.371094 212.894531 22.402344 211.863281 22.402344 210.589844 Z M 22.402344 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 17.585938 210.589844 C 17.585938 209.316406 16.554688 208.285156 15.28125 208.285156 C 14.007812 208.285156 12.976562 209.316406 12.976562 210.589844 C 12.976562 211.863281 14.007812 212.894531 15.28125 212.894531 C 16.554688 212.894531 17.585938 211.863281 17.585938 210.589844 Z M 17.585938 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.957031 210.589844 C 30.957031 209.316406 29.925781 208.285156 28.652344 208.285156 C 27.378906 208.285156 26.347656 209.316406 26.347656 210.589844 C 26.347656 211.863281 27.378906 212.894531 28.652344 212.894531 C 29.925781 212.894531 30.957031 211.863281 30.957031 210.589844 Z M 30.957031 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.386719 210.589844 C 27.386719 209.316406 26.355469 208.285156 25.082031 208.285156 C 23.808594 208.285156 22.777344 209.316406 22.777344 210.589844 C 22.777344 211.863281 23.808594 212.894531 25.082031 212.894531 C 26.355469 212.894531 27.386719 211.863281 27.386719 210.589844 Z M 27.386719 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.394531 210.589844 C 16.394531 209.316406 15.363281 208.285156 14.089844 208.285156 C 12.816406 208.285156 11.785156 209.316406 11.785156 210.589844 C 11.785156 211.863281 12.816406 212.894531 14.089844 212.894531 C 15.363281 212.894531 16.394531 211.863281 16.394531 210.589844 Z M 16.394531 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.105469 210.589844 C 19.105469 209.316406 18.074219 208.285156 16.800781 208.285156 C 15.527344 208.285156 14.496094 209.316406 14.496094 210.589844 C 14.496094 211.863281 15.527344 212.894531 16.800781 212.894531 C 18.074219 212.894531 19.105469 211.863281 19.105469 210.589844 Z M 19.105469 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.863281 210.589844 C 24.863281 209.316406 23.832031 208.285156 22.558594 208.285156 C 21.285156 208.285156 20.253906 209.316406 20.253906 210.589844 C 20.253906 211.863281 21.285156 212.894531 22.558594 212.894531 C 23.832031 212.894531 24.863281 211.863281 24.863281 210.589844 Z M 24.863281 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.679688 210.589844 C 15.679688 209.316406 14.648438 208.285156 13.375 208.285156 C 12.101562 208.285156 11.070312 209.316406 11.070312 210.589844 C 11.070312 211.863281 12.101562 212.894531 13.375 212.894531 C 14.648438 212.894531 15.679688 211.863281 15.679688 210.589844 Z M 15.679688 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.765625 205.746094 C 30.765625 204.472656 29.734375 203.441406 28.460938 203.441406 C 27.1875 203.441406 26.15625 204.472656 26.15625 205.746094 C 26.15625 207.019531 27.1875 208.050781 28.460938 208.050781 C 29.734375 208.050781 30.765625 207.019531 30.765625 205.746094 Z M 30.765625 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 14.304688 205.746094 C 14.304688 204.472656 13.273438 203.441406 12 203.441406 C 10.726562 203.441406 9.695312 204.472656 9.695312 205.746094 C 9.695312 207.019531 10.726562 208.050781 12 208.050781 C 13.273438 208.050781 14.304688 207.019531 14.304688 205.746094 Z M 14.304688 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.359375 205.746094 C 24.359375 204.472656 23.328125 203.441406 22.054688 203.441406 C 20.78125 203.441406 19.75 204.472656 19.75 205.746094 C 19.75 207.019531 20.78125 208.050781 22.054688 208.050781 C 23.328125 208.050781 24.359375 207.019531 24.359375 205.746094 Z M 24.359375 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.261719 205.746094 C 15.261719 204.472656 14.230469 203.441406 12.957031 203.441406 C 11.683594 203.441406 10.652344 204.472656 10.652344 205.746094 C 10.652344 207.019531 11.683594 208.050781 12.957031 208.050781 C 14.230469 208.050781 15.261719 207.019531 15.261719 205.746094 Z M 15.261719 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 18.183594 205.746094 C 18.183594 204.472656 17.152344 203.441406 15.878906 203.441406 C 14.605469 203.441406 13.574219 204.472656 13.574219 205.746094 C 13.574219 207.019531 14.605469 208.050781 15.878906 208.050781 C 17.152344 208.050781 18.183594 207.019531 18.183594 205.746094 Z M 18.183594 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.347656 205.746094 C 22.347656 204.472656 21.316406 203.441406 20.042969 203.441406 C 18.769531 203.441406 17.738281 204.472656 17.738281 205.746094 C 17.738281 207.019531 18.769531 208.050781 20.042969 208.050781 C 21.316406 208.050781 22.347656 207.019531 22.347656 205.746094 Z M 22.347656 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.601562 205.746094 C 24.601562 204.472656 23.570312 203.441406 22.296875 203.441406 C 21.023438 203.441406 19.992188 204.472656 19.992188 205.746094 C 19.992188 207.019531 21.023438 208.050781 22.296875 208.050781 C 23.570312 208.050781 24.601562 207.019531 24.601562 205.746094 Z M 24.601562 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 17.101562 205.746094 C 17.101562 204.472656 16.070312 203.441406 14.796875 203.441406 C 13.523438 203.441406 12.492188 204.472656 12.492188 205.746094 C 12.492188 207.019531 13.523438 208.050781 14.796875 208.050781 C 16.070312 208.050781 17.101562 207.019531 17.101562 205.746094 Z M 17.101562 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.601562 205.746094 C 32.601562 204.472656 31.570312 203.441406 30.296875 203.441406 C 29.023438 203.441406 27.992188 204.472656 27.992188 205.746094 C 27.992188 207.019531 29.023438 208.050781 30.296875 208.050781 C 31.570312 208.050781 32.601562 207.019531 32.601562 205.746094 Z M 32.601562 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.804688 205.746094 C 23.804688 204.472656 22.773438 203.441406 21.5 203.441406 C 20.226562 203.441406 19.195312 204.472656 19.195312 205.746094 C 19.195312 207.019531 20.226562 208.050781 21.5 208.050781 C 22.773438 208.050781 23.804688 207.019531 23.804688 205.746094 Z M 23.804688 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 12.925781 205.746094 C 12.925781 204.472656 11.894531 203.441406 10.621094 203.441406 C 9.347656 203.441406 8.316406 204.472656 8.316406 205.746094 C 8.316406 207.019531 9.347656 208.050781 10.621094 208.050781 C 11.894531 208.050781 12.925781 207.019531 12.925781 205.746094 Z M 12.925781 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.605469 205.746094 C 23.605469 204.472656 22.574219 203.441406 21.300781 203.441406 C 20.027344 203.441406 18.996094 204.472656 18.996094 205.746094 C 18.996094 207.019531 20.027344 208.050781 21.300781 208.050781 C 22.574219 208.050781 23.605469 207.019531 23.605469 205.746094 Z M 23.605469 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.453125 205.746094 C 30.453125 204.472656 29.421875 203.441406 28.148438 203.441406 C 26.875 203.441406 25.84375 204.472656 25.84375 205.746094 C 25.84375 207.019531 26.875 208.050781 28.148438 208.050781 C 29.421875 208.050781 30.453125 207.019531 30.453125 205.746094 Z M 30.453125 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.015625 205.746094 C 19.015625 204.472656 17.984375 203.441406 16.710938 203.441406 C 15.4375 203.441406 14.40625 204.472656 14.40625 205.746094 C 14.40625 207.019531 15.4375 208.050781 16.710938 208.050781 C 17.984375 208.050781 19.015625 207.019531 19.015625 205.746094 Z M 19.015625 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.25 205.746094 C 19.25 204.472656 18.21875 203.441406 16.945312 203.441406 C 15.671875 203.441406 14.640625 204.472656 14.640625 205.746094 C 14.640625 207.019531 15.671875 208.050781 16.945312 208.050781 C 18.21875 208.050781 19.25 207.019531 19.25 205.746094 Z M 19.25 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.34375 205.746094 C 33.34375 204.472656 32.3125 203.441406 31.039062 203.441406 C 29.765625 203.441406 28.734375 204.472656 28.734375 205.746094 C 28.734375 207.019531 29.765625 208.050781 31.039062 208.050781 C 32.3125 208.050781 33.34375 207.019531 33.34375 205.746094 Z M 33.34375 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.589844 205.746094 C 27.589844 204.472656 26.558594 203.441406 25.285156 203.441406 C 24.011719 203.441406 22.980469 204.472656 22.980469 205.746094 C 22.980469 207.019531 24.011719 208.050781 25.285156 208.050781 C 26.558594 208.050781 27.589844 207.019531 27.589844 205.746094 Z M 27.589844 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 18.519531 205.746094 C 18.519531 204.472656 17.488281 203.441406 16.214844 203.441406 C 14.941406 203.441406 13.910156 204.472656 13.910156 205.746094 C 13.910156 207.019531 14.941406 208.050781 16.214844 208.050781 C 17.488281 208.050781 18.519531 207.019531 18.519531 205.746094 Z M 18.519531 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.460938 205.746094 C 22.460938 204.472656 21.429688 203.441406 20.15625 203.441406 C 18.882812 203.441406 17.851562 204.472656 17.851562 205.746094 C 17.851562 207.019531 18.882812 208.050781 20.15625 208.050781 C 21.429688 208.050781 22.460938 207.019531 22.460938 205.746094 Z M 22.460938 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.542969 205.746094 C 26.542969 204.472656 25.511719 203.441406 24.238281 203.441406 C 22.964844 203.441406 21.933594 204.472656 21.933594 205.746094 C 21.933594 207.019531 22.964844 208.050781 24.238281 208.050781 C 25.511719 208.050781 26.542969 207.019531 26.542969 205.746094 Z M 26.542969 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 12.703125 205.746094 C 12.703125 204.472656 11.671875 203.441406 10.398438 203.441406 C 9.125 203.441406 8.09375 204.472656 8.09375 205.746094 C 8.09375 207.019531 9.125 208.050781 10.398438 208.050781 C 11.671875 208.050781 12.703125 207.019531 12.703125 205.746094 Z M 12.703125 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.261719 205.746094 C 24.261719 204.472656 23.230469 203.441406 21.957031 203.441406 C 20.683594 203.441406 19.652344 204.472656 19.652344 205.746094 C 19.652344 207.019531 20.683594 208.050781 21.957031 208.050781 C 23.230469 208.050781 24.261719 207.019531 24.261719 205.746094 Z M 24.261719 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.984375 205.746094 C 20.984375 204.472656 19.953125 203.441406 18.679688 203.441406 C 17.40625 203.441406 16.375 204.472656 16.375 205.746094 C 16.375 207.019531 17.40625 208.050781 18.679688 208.050781 C 19.953125 208.050781 20.984375 207.019531 20.984375 205.746094 Z M 20.984375 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.09375 205.746094 C 15.09375 204.472656 14.0625 203.441406 12.789062 203.441406 C 11.515625 203.441406 10.484375 204.472656 10.484375 205.746094 C 10.484375 207.019531 11.515625 208.050781 12.789062 208.050781 C 14.0625 208.050781 15.09375 207.019531 15.09375 205.746094 Z M 15.09375 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.449219 205.746094 C 31.449219 204.472656 30.417969 203.441406 29.144531 203.441406 C 27.871094 203.441406 26.839844 204.472656 26.839844 205.746094 C 26.839844 207.019531 27.871094 208.050781 29.144531 208.050781 C 30.417969 208.050781 31.449219 207.019531 31.449219 205.746094 Z M 31.449219 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.082031 205.746094 C 27.082031 204.472656 26.050781 203.441406 24.777344 203.441406 C 23.503906 203.441406 22.472656 204.472656 22.472656 205.746094 C 22.472656 207.019531 23.503906 208.050781 24.777344 208.050781 C 26.050781 208.050781 27.082031 207.019531 27.082031 205.746094 Z M 27.082031 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 13.636719 205.746094 C 13.636719 204.472656 12.605469 203.441406 11.332031 203.441406 C 10.058594 203.441406 9.027344 204.472656 9.027344 205.746094 C 9.027344 207.019531 10.058594 208.050781 11.332031 208.050781 C 12.605469 208.050781 13.636719 207.019531 13.636719 205.746094 Z M 13.636719 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.953125 205.746094 C 16.953125 204.472656 15.921875 203.441406 14.648438 203.441406 C 13.375 203.441406 12.34375 204.472656 12.34375 205.746094 C 12.34375 207.019531 13.375 208.050781 14.648438 208.050781 C 15.921875 208.050781 16.953125 207.019531 16.953125 205.746094 Z M 16.953125 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.996094 205.746094 C 23.996094 204.472656 22.964844 203.441406 21.691406 203.441406 C 20.417969 203.441406 19.386719 204.472656 19.386719 205.746094 C 19.386719 207.019531 20.417969 208.050781 21.691406 208.050781 C 22.964844 208.050781 23.996094 207.019531 23.996094 205.746094 Z M 23.996094 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 12.765625 205.746094 C 12.765625 204.472656 11.734375 203.441406 10.460938 203.441406 C 9.1875 203.441406 8.15625 204.472656 8.15625 205.746094 C 8.15625 207.019531 9.1875 208.050781 10.460938 208.050781 C 11.734375 208.050781 12.765625 207.019531 12.765625 205.746094 Z M 12.765625 205.746094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.367188 200.902344 C 31.367188 199.628906 30.335938 198.597656 29.0625 198.597656 C 27.789062 198.597656 26.757812 199.628906 26.757812 200.902344 C 26.757812 202.175781 27.789062 203.207031 29.0625 203.207031 C 30.335938 203.207031 31.367188 202.175781 31.367188 200.902344 Z M 31.367188 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 12.070312 200.902344 C 12.070312 199.628906 11.039062 198.597656 9.765625 198.597656 C 8.492188 198.597656 7.460938 199.628906 7.460938 200.902344 C 7.460938 202.175781 8.492188 203.207031 9.765625 203.207031 C 11.039062 203.207031 12.070312 202.175781 12.070312 200.902344 Z M 12.070312 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.855469 200.902344 C 23.855469 199.628906 22.824219 198.597656 21.550781 198.597656 C 20.277344 198.597656 19.246094 199.628906 19.246094 200.902344 C 19.246094 202.175781 20.277344 203.207031 21.550781 203.207031 C 22.824219 203.207031 23.855469 202.175781 23.855469 200.902344 Z M 23.855469 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 13.195312 200.902344 C 13.195312 199.628906 12.164062 198.597656 10.890625 198.597656 C 9.617188 198.597656 8.585938 199.628906 8.585938 200.902344 C 8.585938 202.175781 9.617188 203.207031 10.890625 203.207031 C 12.164062 203.207031 13.195312 202.175781 13.195312 200.902344 Z M 13.195312 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.617188 200.902344 C 16.617188 199.628906 15.585938 198.597656 14.3125 198.597656 C 13.039062 198.597656 12.007812 199.628906 12.007812 200.902344 C 12.007812 202.175781 13.039062 203.207031 14.3125 203.207031 C 15.585938 203.207031 16.617188 202.175781 16.617188 200.902344 Z M 16.617188 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 21.5 200.902344 C 21.5 199.628906 20.46875 198.597656 19.195312 198.597656 C 17.921875 198.597656 16.890625 199.628906 16.890625 200.902344 C 16.890625 202.175781 17.921875 203.207031 19.195312 203.207031 C 20.46875 203.207031 21.5 202.175781 21.5 200.902344 Z M 21.5 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.144531 200.902344 C 24.144531 199.628906 23.113281 198.597656 21.839844 198.597656 C 20.566406 198.597656 19.535156 199.628906 19.535156 200.902344 C 19.535156 202.175781 20.566406 203.207031 21.839844 203.207031 C 23.113281 203.207031 24.144531 202.175781 24.144531 200.902344 Z M 24.144531 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.347656 200.902344 C 15.347656 199.628906 14.316406 198.597656 13.042969 198.597656 C 11.769531 198.597656 10.738281 199.628906 10.738281 200.902344 C 10.738281 202.175781 11.769531 203.207031 13.042969 203.207031 C 14.316406 203.207031 15.347656 202.175781 15.347656 200.902344 Z M 15.347656 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.523438 200.902344 C 33.523438 199.628906 32.492188 198.597656 31.21875 198.597656 C 29.945312 198.597656 28.914062 199.628906 28.914062 200.902344 C 28.914062 202.175781 29.945312 203.207031 31.21875 203.207031 C 32.492188 203.207031 33.523438 202.175781 33.523438 200.902344 Z M 33.523438 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.210938 200.902344 C 23.210938 199.628906 22.179688 198.597656 20.90625 198.597656 C 19.632812 198.597656 18.601562 199.628906 18.601562 200.902344 C 18.601562 202.175781 19.632812 203.207031 20.90625 203.207031 C 22.179688 203.207031 23.210938 202.175781 23.210938 200.902344 Z M 23.210938 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 10.453125 200.902344 C 10.453125 199.628906 9.421875 198.597656 8.148438 198.597656 C 6.875 198.597656 5.84375 199.628906 5.84375 200.902344 C 5.84375 202.175781 6.875 203.207031 8.148438 203.207031 C 9.421875 203.207031 10.453125 202.175781 10.453125 200.902344 Z M 10.453125 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.972656 200.902344 C 22.972656 199.628906 21.941406 198.597656 20.667969 198.597656 C 19.394531 198.597656 18.363281 199.628906 18.363281 200.902344 C 18.363281 202.175781 19.394531 203.207031 20.667969 203.207031 C 21.941406 203.207031 22.972656 202.175781 22.972656 200.902344 Z M 22.972656 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.003906 200.902344 C 31.003906 199.628906 29.972656 198.597656 28.699219 198.597656 C 27.425781 198.597656 26.394531 199.628906 26.394531 200.902344 C 26.394531 202.175781 27.425781 203.207031 28.699219 203.207031 C 29.972656 203.207031 31.003906 202.175781 31.003906 200.902344 Z M 31.003906 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 17.59375 200.902344 C 17.59375 199.628906 16.5625 198.597656 15.289062 198.597656 C 14.015625 198.597656 12.984375 199.628906 12.984375 200.902344 C 12.984375 202.175781 14.015625 203.207031 15.289062 203.207031 C 16.5625 203.207031 17.59375 202.175781 17.59375 200.902344 Z M 17.59375 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 17.871094 200.902344 C 17.871094 199.628906 16.839844 198.597656 15.566406 198.597656 C 14.292969 198.597656 13.261719 199.628906 13.261719 200.902344 C 13.261719 202.175781 14.292969 203.207031 15.566406 203.207031 C 16.839844 203.207031 17.871094 202.175781 17.871094 200.902344 Z M 17.871094 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.394531 200.902344 C 34.394531 199.628906 33.363281 198.597656 32.089844 198.597656 C 30.816406 198.597656 29.785156 199.628906 29.785156 200.902344 C 29.785156 202.175781 30.816406 203.207031 32.089844 203.207031 C 33.363281 203.207031 34.394531 202.175781 34.394531 200.902344 Z M 34.394531 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.648438 200.902344 C 27.648438 199.628906 26.617188 198.597656 25.34375 198.597656 C 24.070312 198.597656 23.039062 199.628906 23.039062 200.902344 C 23.039062 202.175781 24.070312 203.207031 25.34375 203.207031 C 26.617188 203.207031 27.648438 202.175781 27.648438 200.902344 Z M 27.648438 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 17.015625 200.902344 C 17.015625 199.628906 15.984375 198.597656 14.710938 198.597656 C 13.4375 198.597656 12.40625 199.628906 12.40625 200.902344 C 12.40625 202.175781 13.4375 203.207031 14.710938 203.207031 C 15.984375 203.207031 17.015625 202.175781 17.015625 200.902344 Z M 17.015625 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 21.632812 200.902344 C 21.632812 199.628906 20.601562 198.597656 19.328125 198.597656 C 18.054688 198.597656 17.023438 199.628906 17.023438 200.902344 C 17.023438 202.175781 18.054688 203.207031 19.328125 203.207031 C 20.601562 203.207031 21.632812 202.175781 21.632812 200.902344 Z M 21.632812 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.421875 200.902344 C 26.421875 199.628906 25.390625 198.597656 24.117188 198.597656 C 22.84375 198.597656 21.8125 199.628906 21.8125 200.902344 C 21.8125 202.175781 22.84375 203.207031 24.117188 203.207031 C 25.390625 203.207031 26.421875 202.175781 26.421875 200.902344 Z M 26.421875 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 10.195312 200.902344 C 10.195312 199.628906 9.164062 198.597656 7.890625 198.597656 C 6.617188 198.597656 5.585938 199.628906 5.585938 200.902344 C 5.585938 202.175781 6.617188 203.207031 7.890625 203.207031 C 9.164062 203.207031 10.195312 202.175781 10.195312 200.902344 Z M 10.195312 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.746094 200.902344 C 23.746094 199.628906 22.714844 198.597656 21.441406 198.597656 C 20.167969 198.597656 19.136719 199.628906 19.136719 200.902344 C 19.136719 202.175781 20.167969 203.207031 21.441406 203.207031 C 22.714844 203.207031 23.746094 202.175781 23.746094 200.902344 Z M 23.746094 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.902344 200.902344 C 19.902344 199.628906 18.871094 198.597656 17.597656 198.597656 C 16.324219 198.597656 15.292969 199.628906 15.292969 200.902344 C 15.292969 202.175781 16.324219 203.207031 17.597656 203.207031 C 18.871094 203.207031 19.902344 202.175781 19.902344 200.902344 Z M 19.902344 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 12.992188 200.902344 C 12.992188 199.628906 11.960938 198.597656 10.6875 198.597656 C 9.414062 198.597656 8.382812 199.628906 8.382812 200.902344 C 8.382812 202.175781 9.414062 203.207031 10.6875 203.207031 C 11.960938 203.207031 12.992188 202.175781 12.992188 200.902344 Z M 12.992188 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.171875 200.902344 C 32.171875 199.628906 31.140625 198.597656 29.867188 198.597656 C 28.59375 198.597656 27.5625 199.628906 27.5625 200.902344 C 27.5625 202.175781 28.59375 203.207031 29.867188 203.207031 C 31.140625 203.207031 32.171875 202.175781 32.171875 200.902344 Z M 32.171875 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.054688 200.902344 C 27.054688 199.628906 26.023438 198.597656 24.75 198.597656 C 23.476562 198.597656 22.445312 199.628906 22.445312 200.902344 C 22.445312 202.175781 23.476562 203.207031 24.75 203.207031 C 26.023438 203.207031 27.054688 202.175781 27.054688 200.902344 Z M 27.054688 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 11.285156 200.902344 C 11.285156 199.628906 10.253906 198.597656 8.980469 198.597656 C 7.707031 198.597656 6.675781 199.628906 6.675781 200.902344 C 6.675781 202.175781 7.707031 203.207031 8.980469 203.207031 C 10.253906 203.207031 11.285156 202.175781 11.285156 200.902344 Z M 11.285156 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.175781 200.902344 C 15.175781 199.628906 14.144531 198.597656 12.871094 198.597656 C 11.597656 198.597656 10.566406 199.628906 10.566406 200.902344 C 10.566406 202.175781 11.597656 203.207031 12.871094 203.207031 C 14.144531 203.207031 15.175781 202.175781 15.175781 200.902344 Z M 15.175781 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.433594 200.902344 C 23.433594 199.628906 22.402344 198.597656 21.128906 198.597656 C 19.855469 198.597656 18.824219 199.628906 18.824219 200.902344 C 18.824219 202.175781 19.855469 203.207031 21.128906 203.207031 C 22.402344 203.207031 23.433594 202.175781 23.433594 200.902344 Z M 23.433594 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 10.261719 200.902344 C 10.261719 199.628906 9.230469 198.597656 7.957031 198.597656 C 6.683594 198.597656 5.652344 199.628906 5.652344 200.902344 C 5.652344 202.175781 6.683594 203.207031 7.957031 203.207031 C 9.230469 203.207031 10.261719 202.175781 10.261719 200.902344 Z M 10.261719 200.902344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.203125 196.058594 C 32.203125 194.785156 31.171875 193.753906 29.898438 193.753906 C 28.625 193.753906 27.59375 194.785156 27.59375 196.058594 C 27.59375 197.332031 28.625 198.363281 29.898438 198.363281 C 31.171875 198.363281 32.203125 197.332031 32.203125 196.058594 Z M 32.203125 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 10.261719 196.058594 C 10.261719 194.785156 9.230469 193.753906 7.957031 193.753906 C 6.683594 193.753906 5.652344 194.785156 5.652344 196.058594 C 5.652344 197.332031 6.683594 198.363281 7.957031 198.363281 C 9.230469 198.363281 10.261719 197.332031 10.261719 196.058594 Z M 10.261719 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.664062 196.058594 C 23.664062 194.785156 22.632812 193.753906 21.359375 193.753906 C 20.085938 193.753906 19.054688 194.785156 19.054688 196.058594 C 19.054688 197.332031 20.085938 198.363281 21.359375 198.363281 C 22.632812 198.363281 23.664062 197.332031 23.664062 196.058594 Z M 23.664062 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 11.539062 196.058594 C 11.539062 194.785156 10.507812 193.753906 9.234375 193.753906 C 7.960938 193.753906 6.929688 194.785156 6.929688 196.058594 C 6.929688 197.332031 7.960938 198.363281 9.234375 198.363281 C 10.507812 198.363281 11.539062 197.332031 11.539062 196.058594 Z M 11.539062 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.429688 196.058594 C 15.429688 194.785156 14.398438 193.753906 13.125 193.753906 C 11.851562 193.753906 10.820312 194.785156 10.820312 196.058594 C 10.820312 197.332031 11.851562 198.363281 13.125 198.363281 C 14.398438 198.363281 15.429688 197.332031 15.429688 196.058594 Z M 15.429688 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.984375 196.058594 C 20.984375 194.785156 19.953125 193.753906 18.679688 193.753906 C 17.40625 193.753906 16.375 194.785156 16.375 196.058594 C 16.375 197.332031 17.40625 198.363281 18.679688 198.363281 C 19.953125 198.363281 20.984375 197.332031 20.984375 196.058594 Z M 20.984375 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.988281 196.058594 C 23.988281 194.785156 22.957031 193.753906 21.683594 193.753906 C 20.410156 193.753906 19.378906 194.785156 19.378906 196.058594 C 19.378906 197.332031 20.410156 198.363281 21.683594 198.363281 C 22.957031 198.363281 23.988281 197.332031 23.988281 196.058594 Z M 23.988281 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 13.988281 196.058594 C 13.988281 194.785156 12.957031 193.753906 11.683594 193.753906 C 10.410156 193.753906 9.378906 194.785156 9.378906 196.058594 C 9.378906 197.332031 10.410156 198.363281 11.683594 198.363281 C 12.957031 198.363281 13.988281 197.332031 13.988281 196.058594 Z M 13.988281 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.65625 196.058594 C 34.65625 194.785156 33.625 193.753906 32.351562 193.753906 C 31.078125 193.753906 30.046875 194.785156 30.046875 196.058594 C 30.046875 197.332031 31.078125 198.363281 32.351562 198.363281 C 33.625 198.363281 34.65625 197.332031 34.65625 196.058594 Z M 34.65625 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.925781 196.058594 C 22.925781 194.785156 21.894531 193.753906 20.621094 193.753906 C 19.347656 193.753906 18.316406 194.785156 18.316406 196.058594 C 18.316406 197.332031 19.347656 198.363281 20.621094 198.363281 C 21.894531 198.363281 22.925781 197.332031 22.925781 196.058594 Z M 22.925781 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 8.417969 196.058594 C 8.417969 194.785156 7.386719 193.753906 6.113281 193.753906 C 4.839844 193.753906 3.808594 194.785156 3.808594 196.058594 C 3.808594 197.332031 4.839844 198.363281 6.113281 198.363281 C 7.386719 198.363281 8.417969 197.332031 8.417969 196.058594 Z M 8.417969 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.660156 196.058594 C 22.660156 194.785156 21.628906 193.753906 20.355469 193.753906 C 19.082031 193.753906 18.050781 194.785156 18.050781 196.058594 C 18.050781 197.332031 19.082031 198.363281 20.355469 198.363281 C 21.628906 198.363281 22.660156 197.332031 22.660156 196.058594 Z M 22.660156 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.789062 196.058594 C 31.789062 194.785156 30.757812 193.753906 29.484375 193.753906 C 28.210938 193.753906 27.179688 194.785156 27.179688 196.058594 C 27.179688 197.332031 28.210938 198.363281 29.484375 198.363281 C 30.757812 198.363281 31.789062 197.332031 31.789062 196.058594 Z M 31.789062 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.539062 196.058594 C 16.539062 194.785156 15.507812 193.753906 14.234375 193.753906 C 12.960938 193.753906 11.929688 194.785156 11.929688 196.058594 C 11.929688 197.332031 12.960938 198.363281 14.234375 198.363281 C 15.507812 198.363281 16.539062 197.332031 16.539062 196.058594 Z M 16.539062 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.855469 196.058594 C 16.855469 194.785156 15.824219 193.753906 14.550781 193.753906 C 13.277344 193.753906 12.246094 194.785156 12.246094 196.058594 C 12.246094 197.332031 13.277344 198.363281 14.550781 198.363281 C 15.824219 198.363281 16.855469 197.332031 16.855469 196.058594 Z M 16.855469 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.644531 196.058594 C 35.644531 194.785156 34.613281 193.753906 33.339844 193.753906 C 32.066406 193.753906 31.035156 194.785156 31.035156 196.058594 C 31.035156 197.332031 32.066406 198.363281 33.339844 198.363281 C 34.613281 198.363281 35.644531 197.332031 35.644531 196.058594 Z M 35.644531 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.972656 196.058594 C 27.972656 194.785156 26.941406 193.753906 25.667969 193.753906 C 24.394531 193.753906 23.363281 194.785156 23.363281 196.058594 C 23.363281 197.332031 24.394531 198.363281 25.667969 198.363281 C 26.941406 198.363281 27.972656 197.332031 27.972656 196.058594 Z M 27.972656 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.882812 196.058594 C 15.882812 194.785156 14.851562 193.753906 13.578125 193.753906 C 12.304688 193.753906 11.273438 194.785156 11.273438 196.058594 C 11.273438 197.332031 12.304688 198.363281 13.578125 198.363281 C 14.851562 198.363281 15.882812 197.332031 15.882812 196.058594 Z M 15.882812 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 21.136719 196.058594 C 21.136719 194.785156 20.105469 193.753906 18.832031 193.753906 C 17.558594 193.753906 16.527344 194.785156 16.527344 196.058594 C 16.527344 197.332031 17.558594 198.363281 18.832031 198.363281 C 20.105469 198.363281 21.136719 197.332031 21.136719 196.058594 Z M 21.136719 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.578125 196.058594 C 26.578125 194.785156 25.546875 193.753906 24.273438 193.753906 C 23 193.753906 21.96875 194.785156 21.96875 196.058594 C 21.96875 197.332031 23 198.363281 24.273438 198.363281 C 25.546875 198.363281 26.578125 197.332031 26.578125 196.058594 Z M 26.578125 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 8.125 196.058594 C 8.125 194.785156 7.09375 193.753906 5.820312 193.753906 C 4.546875 193.753906 3.515625 194.785156 3.515625 196.058594 C 3.515625 197.332031 4.546875 198.363281 5.820312 198.363281 C 7.09375 198.363281 8.125 197.332031 8.125 196.058594 Z M 8.125 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.535156 196.058594 C 23.535156 194.785156 22.503906 193.753906 21.230469 193.753906 C 19.957031 193.753906 18.925781 194.785156 18.925781 196.058594 C 18.925781 197.332031 19.957031 198.363281 21.230469 198.363281 C 22.503906 198.363281 23.535156 197.332031 23.535156 196.058594 Z M 23.535156 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.167969 196.058594 C 19.167969 194.785156 18.136719 193.753906 16.863281 193.753906 C 15.589844 193.753906 14.558594 194.785156 14.558594 196.058594 C 14.558594 197.332031 15.589844 198.363281 16.863281 198.363281 C 18.136719 198.363281 19.167969 197.332031 19.167969 196.058594 Z M 19.167969 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 11.308594 196.058594 C 11.308594 194.785156 10.277344 193.753906 9.003906 193.753906 C 7.730469 193.753906 6.699219 194.785156 6.699219 196.058594 C 6.699219 197.332031 7.730469 198.363281 9.003906 198.363281 C 10.277344 198.363281 11.308594 197.332031 11.308594 196.058594 Z M 11.308594 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.117188 196.058594 C 33.117188 194.785156 32.085938 193.753906 30.8125 193.753906 C 29.539062 193.753906 28.507812 194.785156 28.507812 196.058594 C 28.507812 197.332031 29.539062 198.363281 30.8125 198.363281 C 32.085938 198.363281 33.117188 197.332031 33.117188 196.058594 Z M 33.117188 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.296875 196.058594 C 27.296875 194.785156 26.265625 193.753906 24.992188 193.753906 C 23.71875 193.753906 22.6875 194.785156 22.6875 196.058594 C 22.6875 197.332031 23.71875 198.363281 24.992188 198.363281 C 26.265625 198.363281 27.296875 197.332031 27.296875 196.058594 Z M 27.296875 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 9.367188 196.058594 C 9.367188 194.785156 8.335938 193.753906 7.0625 193.753906 C 5.789062 193.753906 4.757812 194.785156 4.757812 196.058594 C 4.757812 197.332031 5.789062 198.363281 7.0625 198.363281 C 8.335938 198.363281 9.367188 197.332031 9.367188 196.058594 Z M 9.367188 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 13.789062 196.058594 C 13.789062 194.785156 12.757812 193.753906 11.484375 193.753906 C 10.210938 193.753906 9.179688 194.785156 9.179688 196.058594 C 9.179688 197.332031 10.210938 198.363281 11.484375 198.363281 C 12.757812 198.363281 13.789062 197.332031 13.789062 196.058594 Z M 13.789062 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.183594 196.058594 C 23.183594 194.785156 22.152344 193.753906 20.878906 193.753906 C 19.605469 193.753906 18.574219 194.785156 18.574219 196.058594 C 18.574219 197.332031 19.605469 198.363281 20.878906 198.363281 C 22.152344 198.363281 23.183594 197.332031 23.183594 196.058594 Z M 23.183594 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 8.207031 196.058594 C 8.207031 194.785156 7.175781 193.753906 5.902344 193.753906 C 4.628906 193.753906 3.597656 194.785156 3.597656 196.058594 C 3.597656 197.332031 4.628906 198.363281 5.902344 198.363281 C 7.175781 198.363281 8.207031 197.332031 8.207031 196.058594 Z M 8.207031 196.058594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.261719 191.214844 C 33.261719 189.941406 32.230469 188.910156 30.957031 188.910156 C 29.683594 188.910156 28.652344 189.941406 28.652344 191.214844 C 28.652344 192.488281 29.683594 193.519531 30.957031 193.519531 C 32.230469 193.519531 33.261719 192.488281 33.261719 191.214844 Z M 33.261719 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 8.894531 191.214844 C 8.894531 189.941406 7.863281 188.910156 6.589844 188.910156 C 5.316406 188.910156 4.285156 189.941406 4.285156 191.214844 C 4.285156 192.488281 5.316406 193.519531 6.589844 193.519531 C 7.863281 193.519531 8.894531 192.488281 8.894531 191.214844 Z M 8.894531 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.777344 191.214844 C 23.777344 189.941406 22.746094 188.910156 21.472656 188.910156 C 20.199219 188.910156 19.167969 189.941406 19.167969 191.214844 C 19.167969 192.488281 20.199219 193.519531 21.472656 193.519531 C 22.746094 193.519531 23.777344 192.488281 23.777344 191.214844 Z M 23.777344 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 10.3125 191.214844 C 10.3125 189.941406 9.28125 188.910156 8.007812 188.910156 C 6.734375 188.910156 5.703125 189.941406 5.703125 191.214844 C 5.703125 192.488281 6.734375 193.519531 8.007812 193.519531 C 9.28125 193.519531 10.3125 192.488281 10.3125 191.214844 Z M 10.3125 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 14.632812 191.214844 C 14.632812 189.941406 13.601562 188.910156 12.328125 188.910156 C 11.054688 188.910156 10.023438 189.941406 10.023438 191.214844 C 10.023438 192.488281 11.054688 193.519531 12.328125 193.519531 C 13.601562 193.519531 14.632812 192.488281 14.632812 191.214844 Z M 14.632812 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.800781 191.214844 C 20.800781 189.941406 19.769531 188.910156 18.496094 188.910156 C 17.222656 188.910156 16.191406 189.941406 16.191406 191.214844 C 16.191406 192.488281 17.222656 193.519531 18.496094 193.519531 C 19.769531 193.519531 20.800781 192.488281 20.800781 191.214844 Z M 20.800781 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.140625 191.214844 C 24.140625 189.941406 23.109375 188.910156 21.835938 188.910156 C 20.5625 188.910156 19.53125 189.941406 19.53125 191.214844 C 19.53125 192.488281 20.5625 193.519531 21.835938 193.519531 C 23.109375 193.519531 24.140625 192.488281 24.140625 191.214844 Z M 24.140625 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 13.03125 191.214844 C 13.03125 189.941406 12 188.910156 10.726562 188.910156 C 9.453125 188.910156 8.421875 189.941406 8.421875 191.214844 C 8.421875 192.488281 9.453125 193.519531 10.726562 193.519531 C 12 193.519531 13.03125 192.488281 13.03125 191.214844 Z M 13.03125 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.984375 191.214844 C 35.984375 189.941406 34.953125 188.910156 33.679688 188.910156 C 32.40625 188.910156 31.375 189.941406 31.375 191.214844 C 31.375 192.488281 32.40625 193.519531 33.679688 193.519531 C 34.953125 193.519531 35.984375 192.488281 35.984375 191.214844 Z M 35.984375 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.960938 191.214844 C 22.960938 189.941406 21.929688 188.910156 20.65625 188.910156 C 19.382812 188.910156 18.351562 189.941406 18.351562 191.214844 C 18.351562 192.488281 19.382812 193.519531 20.65625 193.519531 C 21.929688 193.519531 22.960938 192.488281 22.960938 191.214844 Z M 22.960938 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 6.847656 191.214844 C 6.847656 189.941406 5.816406 188.910156 4.542969 188.910156 C 3.269531 188.910156 2.238281 189.941406 2.238281 191.214844 C 2.238281 192.488281 3.269531 193.519531 4.542969 193.519531 C 5.816406 193.519531 6.847656 192.488281 6.847656 191.214844 Z M 6.847656 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.660156 191.214844 C 22.660156 189.941406 21.628906 188.910156 20.355469 188.910156 C 19.082031 188.910156 18.050781 189.941406 18.050781 191.214844 C 18.050781 192.488281 19.082031 193.519531 20.355469 193.519531 C 21.628906 193.519531 22.660156 192.488281 22.660156 191.214844 Z M 22.660156 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.800781 191.214844 C 32.800781 189.941406 31.769531 188.910156 30.496094 188.910156 C 29.222656 188.910156 28.191406 189.941406 28.191406 191.214844 C 28.191406 192.488281 29.222656 193.519531 30.496094 193.519531 C 31.769531 193.519531 32.800781 192.488281 32.800781 191.214844 Z M 32.800781 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.867188 191.214844 C 15.867188 189.941406 14.835938 188.910156 13.5625 188.910156 C 12.289062 188.910156 11.257812 189.941406 11.257812 191.214844 C 11.257812 192.488281 12.289062 193.519531 13.5625 193.519531 C 14.835938 193.519531 15.867188 192.488281 15.867188 191.214844 Z M 15.867188 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.214844 191.214844 C 16.214844 189.941406 15.183594 188.910156 13.910156 188.910156 C 12.636719 188.910156 11.605469 189.941406 11.605469 191.214844 C 11.605469 192.488281 12.636719 193.519531 13.910156 193.519531 C 15.183594 193.519531 16.214844 192.488281 16.214844 191.214844 Z M 16.214844 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.082031 191.214844 C 37.082031 189.941406 36.050781 188.910156 34.777344 188.910156 C 33.503906 188.910156 32.472656 189.941406 32.472656 191.214844 C 32.472656 192.488281 33.503906 193.519531 34.777344 193.519531 C 36.050781 193.519531 37.082031 192.488281 37.082031 191.214844 Z M 37.082031 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.566406 191.214844 C 28.566406 189.941406 27.535156 188.910156 26.261719 188.910156 C 24.988281 188.910156 23.957031 189.941406 23.957031 191.214844 C 23.957031 192.488281 24.988281 193.519531 26.261719 193.519531 C 27.535156 193.519531 28.566406 192.488281 28.566406 191.214844 Z M 28.566406 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.132812 191.214844 C 15.132812 189.941406 14.101562 188.910156 12.828125 188.910156 C 11.554688 188.910156 10.523438 189.941406 10.523438 191.214844 C 10.523438 192.488281 11.554688 193.519531 12.828125 193.519531 C 14.101562 193.519531 15.132812 192.488281 15.132812 191.214844 Z M 15.132812 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.96875 191.214844 C 20.96875 189.941406 19.9375 188.910156 18.664062 188.910156 C 17.390625 188.910156 16.359375 189.941406 16.359375 191.214844 C 16.359375 192.488281 17.390625 193.519531 18.664062 193.519531 C 19.9375 193.519531 20.96875 192.488281 20.96875 191.214844 Z M 20.96875 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.015625 191.214844 C 27.015625 189.941406 25.984375 188.910156 24.710938 188.910156 C 23.4375 188.910156 22.40625 189.941406 22.40625 191.214844 C 22.40625 192.488281 23.4375 193.519531 24.710938 193.519531 C 25.984375 193.519531 27.015625 192.488281 27.015625 191.214844 Z M 27.015625 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 6.523438 191.214844 C 6.523438 189.941406 5.492188 188.910156 4.21875 188.910156 C 2.945312 188.910156 1.914062 189.941406 1.914062 191.214844 C 1.914062 192.488281 2.945312 193.519531 4.21875 193.519531 C 5.492188 193.519531 6.523438 192.488281 6.523438 191.214844 Z M 6.523438 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.636719 191.214844 C 23.636719 189.941406 22.605469 188.910156 21.332031 188.910156 C 20.058594 188.910156 19.027344 189.941406 19.027344 191.214844 C 19.027344 192.488281 20.058594 193.519531 21.332031 193.519531 C 22.605469 193.519531 23.636719 192.488281 23.636719 191.214844 Z M 23.636719 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 18.785156 191.214844 C 18.785156 189.941406 17.753906 188.910156 16.480469 188.910156 C 15.207031 188.910156 14.175781 189.941406 14.175781 191.214844 C 14.175781 192.488281 15.207031 193.519531 16.480469 193.519531 C 17.753906 193.519531 18.785156 192.488281 18.785156 191.214844 Z M 18.785156 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 10.058594 191.214844 C 10.058594 189.941406 9.027344 188.910156 7.753906 188.910156 C 6.480469 188.910156 5.449219 189.941406 5.449219 191.214844 C 5.449219 192.488281 6.480469 193.519531 7.753906 193.519531 C 9.027344 193.519531 10.058594 192.488281 10.058594 191.214844 Z M 10.058594 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.277344 191.214844 C 34.277344 189.941406 33.246094 188.910156 31.972656 188.910156 C 30.699219 188.910156 29.667969 189.941406 29.667969 191.214844 C 29.667969 192.488281 30.699219 193.519531 31.972656 193.519531 C 33.246094 193.519531 34.277344 192.488281 34.277344 191.214844 Z M 34.277344 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.8125 191.214844 C 27.8125 189.941406 26.78125 188.910156 25.507812 188.910156 C 24.234375 188.910156 23.203125 189.941406 23.203125 191.214844 C 23.203125 192.488281 24.234375 193.519531 25.507812 193.519531 C 26.78125 193.519531 27.8125 192.488281 27.8125 191.214844 Z M 27.8125 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 7.902344 191.214844 C 7.902344 189.941406 6.871094 188.910156 5.597656 188.910156 C 4.324219 188.910156 3.292969 189.941406 3.292969 191.214844 C 3.292969 192.488281 4.324219 193.519531 5.597656 193.519531 C 6.871094 193.519531 7.902344 192.488281 7.902344 191.214844 Z M 7.902344 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 12.8125 191.214844 C 12.8125 189.941406 11.78125 188.910156 10.507812 188.910156 C 9.234375 188.910156 8.203125 189.941406 8.203125 191.214844 C 8.203125 192.488281 9.234375 193.519531 10.507812 193.519531 C 11.78125 193.519531 12.8125 192.488281 12.8125 191.214844 Z M 12.8125 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.242188 191.214844 C 23.242188 189.941406 22.210938 188.910156 20.9375 188.910156 C 19.664062 188.910156 18.632812 189.941406 18.632812 191.214844 C 18.632812 192.488281 19.664062 193.519531 20.9375 193.519531 C 22.210938 193.519531 23.242188 192.488281 23.242188 191.214844 Z M 23.242188 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 6.609375 191.214844 C 6.609375 189.941406 5.578125 188.910156 4.304688 188.910156 C 3.03125 188.910156 2 189.941406 2 191.214844 C 2 192.488281 3.03125 193.519531 4.304688 193.519531 C 5.578125 193.519531 6.609375 192.488281 6.609375 191.214844 Z M 6.609375 191.214844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.53125 186.371094 C 34.53125 185.097656 33.5 184.066406 32.226562 184.066406 C 30.953125 184.066406 29.921875 185.097656 29.921875 186.371094 C 29.921875 187.644531 30.953125 188.675781 32.226562 188.675781 C 33.5 188.675781 34.53125 187.644531 34.53125 186.371094 Z M 34.53125 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 7.980469 186.371094 C 7.980469 185.097656 6.949219 184.066406 5.675781 184.066406 C 4.402344 184.066406 3.371094 185.097656 3.371094 186.371094 C 3.371094 187.644531 4.402344 188.675781 5.675781 188.675781 C 6.949219 188.675781 7.980469 187.644531 7.980469 186.371094 Z M 7.980469 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.199219 186.371094 C 24.199219 185.097656 23.167969 184.066406 21.894531 184.066406 C 20.621094 184.066406 19.589844 185.097656 19.589844 186.371094 C 19.589844 187.644531 20.621094 188.675781 21.894531 188.675781 C 23.167969 188.675781 24.199219 187.644531 24.199219 186.371094 Z M 24.199219 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 9.523438 186.371094 C 9.523438 185.097656 8.492188 184.066406 7.21875 184.066406 C 5.945312 184.066406 4.914062 185.097656 4.914062 186.371094 C 4.914062 187.644531 5.945312 188.675781 7.21875 188.675781 C 8.492188 188.675781 9.523438 187.644531 9.523438 186.371094 Z M 9.523438 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 14.234375 186.371094 C 14.234375 185.097656 13.203125 184.066406 11.929688 184.066406 C 10.65625 184.066406 9.625 185.097656 9.625 186.371094 C 9.625 187.644531 10.65625 188.675781 11.929688 188.675781 C 13.203125 188.675781 14.234375 187.644531 14.234375 186.371094 Z M 14.234375 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.957031 186.371094 C 20.957031 185.097656 19.925781 184.066406 18.652344 184.066406 C 17.378906 184.066406 16.347656 185.097656 16.347656 186.371094 C 16.347656 187.644531 17.378906 188.675781 18.652344 188.675781 C 19.925781 188.675781 20.957031 187.644531 20.957031 186.371094 Z M 20.957031 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.589844 186.371094 C 24.589844 185.097656 23.558594 184.066406 22.285156 184.066406 C 21.011719 184.066406 19.980469 185.097656 19.980469 186.371094 C 19.980469 187.644531 21.011719 188.675781 22.285156 188.675781 C 23.558594 188.675781 24.589844 187.644531 24.589844 186.371094 Z M 24.589844 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 12.488281 186.371094 C 12.488281 185.097656 11.457031 184.066406 10.183594 184.066406 C 8.910156 184.066406 7.878906 185.097656 7.878906 186.371094 C 7.878906 187.644531 8.910156 188.675781 10.183594 188.675781 C 11.457031 188.675781 12.488281 187.644531 12.488281 186.371094 Z M 12.488281 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.5 186.371094 C 37.5 185.097656 36.46875 184.066406 35.195312 184.066406 C 33.921875 184.066406 32.890625 185.097656 32.890625 186.371094 C 32.890625 187.644531 33.921875 188.675781 35.195312 188.675781 C 36.46875 188.675781 37.5 187.644531 37.5 186.371094 Z M 37.5 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.308594 186.371094 C 23.308594 185.097656 22.277344 184.066406 21.003906 184.066406 C 19.730469 184.066406 18.699219 185.097656 18.699219 186.371094 C 18.699219 187.644531 19.730469 188.675781 21.003906 188.675781 C 22.277344 188.675781 23.308594 187.644531 23.308594 186.371094 Z M 23.308594 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 5.75 186.371094 C 5.75 185.097656 4.71875 184.066406 3.445312 184.066406 C 2.171875 184.066406 1.140625 185.097656 1.140625 186.371094 C 1.140625 187.644531 2.171875 188.675781 3.445312 188.675781 C 4.71875 188.675781 5.75 187.644531 5.75 186.371094 Z M 5.75 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.984375 186.371094 C 22.984375 185.097656 21.953125 184.066406 20.679688 184.066406 C 19.40625 184.066406 18.375 185.097656 18.375 186.371094 C 18.375 187.644531 19.40625 188.675781 20.679688 188.675781 C 21.953125 188.675781 22.984375 187.644531 22.984375 186.371094 Z M 22.984375 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.03125 186.371094 C 34.03125 185.097656 33 184.066406 31.726562 184.066406 C 30.453125 184.066406 29.421875 185.097656 29.421875 186.371094 C 29.421875 187.644531 30.453125 188.675781 31.726562 188.675781 C 33 188.675781 34.03125 187.644531 34.03125 186.371094 Z M 34.03125 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.578125 186.371094 C 15.578125 185.097656 14.546875 184.066406 13.273438 184.066406 C 12 184.066406 10.96875 185.097656 10.96875 186.371094 C 10.96875 187.644531 12 188.675781 13.273438 188.675781 C 14.546875 188.675781 15.578125 187.644531 15.578125 186.371094 Z M 15.578125 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.957031 186.371094 C 15.957031 185.097656 14.925781 184.066406 13.652344 184.066406 C 12.378906 184.066406 11.347656 185.097656 11.347656 186.371094 C 11.347656 187.644531 12.378906 188.675781 13.652344 188.675781 C 14.925781 188.675781 15.957031 187.644531 15.957031 186.371094 Z M 15.957031 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.695312 186.371094 C 38.695312 185.097656 37.664062 184.066406 36.390625 184.066406 C 35.117188 184.066406 34.085938 185.097656 34.085938 186.371094 C 34.085938 187.644531 35.117188 188.675781 36.390625 188.675781 C 37.664062 188.675781 38.695312 187.644531 38.695312 186.371094 Z M 38.695312 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.414062 186.371094 C 29.414062 185.097656 28.382812 184.066406 27.109375 184.066406 C 25.835938 184.066406 24.804688 185.097656 24.804688 186.371094 C 24.804688 187.644531 25.835938 188.675781 27.109375 188.675781 C 28.382812 188.675781 29.414062 187.644531 29.414062 186.371094 Z M 29.414062 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 14.78125 186.371094 C 14.78125 185.097656 13.75 184.066406 12.476562 184.066406 C 11.203125 184.066406 10.171875 185.097656 10.171875 186.371094 C 10.171875 187.644531 11.203125 188.675781 12.476562 188.675781 C 13.75 188.675781 14.78125 187.644531 14.78125 186.371094 Z M 14.78125 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 21.140625 186.371094 C 21.140625 185.097656 20.109375 184.066406 18.835938 184.066406 C 17.5625 184.066406 16.53125 185.097656 16.53125 186.371094 C 16.53125 187.644531 17.5625 188.675781 18.835938 188.675781 C 20.109375 188.675781 21.140625 187.644531 21.140625 186.371094 Z M 21.140625 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.726562 186.371094 C 27.726562 185.097656 26.695312 184.066406 25.421875 184.066406 C 24.148438 184.066406 23.117188 185.097656 23.117188 186.371094 C 23.117188 187.644531 24.148438 188.675781 25.421875 188.675781 C 26.695312 188.675781 27.726562 187.644531 27.726562 186.371094 Z M 27.726562 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 5.398438 186.371094 C 5.398438 185.097656 4.367188 184.066406 3.09375 184.066406 C 1.820312 184.066406 0.789062 185.097656 0.789062 186.371094 C 0.789062 187.644531 1.820312 188.675781 3.09375 188.675781 C 4.367188 188.675781 5.398438 187.644531 5.398438 186.371094 Z M 5.398438 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.042969 186.371094 C 24.042969 185.097656 23.011719 184.066406 21.738281 184.066406 C 20.464844 184.066406 19.433594 185.097656 19.433594 186.371094 C 19.433594 187.644531 20.464844 188.675781 21.738281 188.675781 C 23.011719 188.675781 24.042969 187.644531 24.042969 186.371094 Z M 24.042969 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 18.757812 186.371094 C 18.757812 185.097656 17.726562 184.066406 16.453125 184.066406 C 15.179688 184.066406 14.148438 185.097656 14.148438 186.371094 C 14.148438 187.644531 15.179688 188.675781 16.453125 188.675781 C 17.726562 188.675781 18.757812 187.644531 18.757812 186.371094 Z M 18.757812 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 9.25 186.371094 C 9.25 185.097656 8.21875 184.066406 6.945312 184.066406 C 5.671875 184.066406 4.640625 185.097656 4.640625 186.371094 C 4.640625 187.644531 5.671875 188.675781 6.945312 188.675781 C 8.21875 188.675781 9.25 187.644531 9.25 186.371094 Z M 9.25 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.640625 186.371094 C 35.640625 185.097656 34.609375 184.066406 33.335938 184.066406 C 32.0625 184.066406 31.03125 185.097656 31.03125 186.371094 C 31.03125 187.644531 32.0625 188.675781 33.335938 188.675781 C 34.609375 188.675781 35.640625 187.644531 35.640625 186.371094 Z M 35.640625 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.597656 186.371094 C 28.597656 185.097656 27.566406 184.066406 26.292969 184.066406 C 25.019531 184.066406 23.988281 185.097656 23.988281 186.371094 C 23.988281 187.644531 25.019531 188.675781 26.292969 188.675781 C 27.566406 188.675781 28.597656 187.644531 28.597656 186.371094 Z M 28.597656 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 6.898438 186.371094 C 6.898438 185.097656 5.867188 184.066406 4.59375 184.066406 C 3.320312 184.066406 2.289062 185.097656 2.289062 186.371094 C 2.289062 187.644531 3.320312 188.675781 4.59375 188.675781 C 5.867188 188.675781 6.898438 187.644531 6.898438 186.371094 Z M 6.898438 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 12.25 186.371094 C 12.25 185.097656 11.21875 184.066406 9.945312 184.066406 C 8.671875 184.066406 7.640625 185.097656 7.640625 186.371094 C 7.640625 187.644531 8.671875 188.675781 9.945312 188.675781 C 11.21875 188.675781 12.25 187.644531 12.25 186.371094 Z M 12.25 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.617188 186.371094 C 23.617188 185.097656 22.585938 184.066406 21.3125 184.066406 C 20.039062 184.066406 19.007812 185.097656 19.007812 186.371094 C 19.007812 187.644531 20.039062 188.675781 21.3125 188.675781 C 22.585938 188.675781 23.617188 187.644531 23.617188 186.371094 Z M 23.617188 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 5.492188 186.371094 C 5.492188 185.097656 4.460938 184.066406 3.1875 184.066406 C 1.914062 184.066406 0.882812 185.097656 0.882812 186.371094 C 0.882812 187.644531 1.914062 188.675781 3.1875 188.675781 C 4.460938 188.675781 5.492188 187.644531 5.492188 186.371094 Z M 5.492188 186.371094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.003906 181.527344 C 36.003906 180.253906 34.972656 179.222656 33.699219 179.222656 C 32.425781 179.222656 31.394531 180.253906 31.394531 181.527344 C 31.394531 182.800781 32.425781 183.832031 33.699219 183.832031 C 34.972656 183.832031 36.003906 182.800781 36.003906 181.527344 Z M 36.003906 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 7.53125 181.527344 C 7.53125 180.253906 6.5 179.222656 5.226562 179.222656 C 3.953125 179.222656 2.921875 180.253906 2.921875 181.527344 C 2.921875 182.800781 3.953125 183.832031 5.226562 183.832031 C 6.5 183.832031 7.53125 182.800781 7.53125 181.527344 Z M 7.53125 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.921875 181.527344 C 24.921875 180.253906 23.890625 179.222656 22.617188 179.222656 C 21.34375 179.222656 20.3125 180.253906 20.3125 181.527344 C 20.3125 182.800781 21.34375 183.832031 22.617188 183.832031 C 23.890625 183.832031 24.921875 182.800781 24.921875 181.527344 Z M 24.921875 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 9.1875 181.527344 C 9.1875 180.253906 8.15625 179.222656 6.882812 179.222656 C 5.609375 179.222656 4.578125 180.253906 4.578125 181.527344 C 4.578125 182.800781 5.609375 183.832031 6.882812 183.832031 C 8.15625 183.832031 9.1875 182.800781 9.1875 181.527344 Z M 9.1875 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 14.238281 181.527344 C 14.238281 180.253906 13.207031 179.222656 11.933594 179.222656 C 10.660156 179.222656 9.628906 180.253906 9.628906 181.527344 C 9.628906 182.800781 10.660156 183.832031 11.933594 183.832031 C 13.207031 183.832031 14.238281 182.800781 14.238281 181.527344 Z M 14.238281 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 21.445312 181.527344 C 21.445312 180.253906 20.414062 179.222656 19.140625 179.222656 C 17.867188 179.222656 16.835938 180.253906 16.835938 181.527344 C 16.835938 182.800781 17.867188 183.832031 19.140625 183.832031 C 20.414062 183.832031 21.445312 182.800781 21.445312 181.527344 Z M 21.445312 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.34375 181.527344 C 25.34375 180.253906 24.3125 179.222656 23.039062 179.222656 C 21.765625 179.222656 20.734375 180.253906 20.734375 181.527344 C 20.734375 182.800781 21.765625 183.832031 23.039062 183.832031 C 24.3125 183.832031 25.34375 182.800781 25.34375 181.527344 Z M 25.34375 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 12.367188 181.527344 C 12.367188 180.253906 11.335938 179.222656 10.0625 179.222656 C 8.789062 179.222656 7.757812 180.253906 7.757812 181.527344 C 7.757812 182.800781 8.789062 183.832031 10.0625 183.832031 C 11.335938 183.832031 12.367188 182.800781 12.367188 181.527344 Z M 12.367188 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.183594 181.527344 C 39.183594 180.253906 38.152344 179.222656 36.878906 179.222656 C 35.605469 179.222656 34.574219 180.253906 34.574219 181.527344 C 34.574219 182.800781 35.605469 183.832031 36.878906 183.832031 C 38.152344 183.832031 39.183594 182.800781 39.183594 181.527344 Z M 39.183594 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.964844 181.527344 C 23.964844 180.253906 22.933594 179.222656 21.660156 179.222656 C 20.386719 179.222656 19.355469 180.253906 19.355469 181.527344 C 19.355469 182.800781 20.386719 183.832031 21.660156 183.832031 C 22.933594 183.832031 23.964844 182.800781 23.964844 181.527344 Z M 23.964844 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 5.140625 181.527344 C 5.140625 180.253906 4.109375 179.222656 2.835938 179.222656 C 1.5625 179.222656 0.53125 180.253906 0.53125 181.527344 C 0.53125 182.800781 1.5625 183.832031 2.835938 183.832031 C 4.109375 183.832031 5.140625 182.800781 5.140625 181.527344 Z M 5.140625 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.617188 181.527344 C 23.617188 180.253906 22.585938 179.222656 21.3125 179.222656 C 20.039062 179.222656 19.007812 180.253906 19.007812 181.527344 C 19.007812 182.800781 20.039062 183.832031 21.3125 183.832031 C 22.585938 183.832031 23.617188 182.800781 23.617188 181.527344 Z M 23.617188 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.464844 181.527344 C 35.464844 180.253906 34.433594 179.222656 33.160156 179.222656 C 31.886719 179.222656 30.855469 180.253906 30.855469 181.527344 C 30.855469 182.800781 31.886719 183.832031 33.160156 183.832031 C 34.433594 183.832031 35.464844 182.800781 35.464844 181.527344 Z M 35.464844 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.679688 181.527344 C 15.679688 180.253906 14.648438 179.222656 13.375 179.222656 C 12.101562 179.222656 11.070312 180.253906 11.070312 181.527344 C 11.070312 182.800781 12.101562 183.832031 13.375 183.832031 C 14.648438 183.832031 15.679688 182.800781 15.679688 181.527344 Z M 15.679688 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.085938 181.527344 C 16.085938 180.253906 15.054688 179.222656 13.78125 179.222656 C 12.507812 179.222656 11.476562 180.253906 11.476562 181.527344 C 11.476562 182.800781 12.507812 183.832031 13.78125 183.832031 C 15.054688 183.832031 16.085938 182.800781 16.085938 181.527344 Z M 16.085938 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.464844 181.527344 C 40.464844 180.253906 39.433594 179.222656 38.160156 179.222656 C 36.886719 179.222656 35.855469 180.253906 35.855469 181.527344 C 35.855469 182.800781 36.886719 183.832031 38.160156 183.832031 C 39.433594 183.832031 40.464844 182.800781 40.464844 181.527344 Z M 40.464844 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.515625 181.527344 C 30.515625 180.253906 29.484375 179.222656 28.210938 179.222656 C 26.9375 179.222656 25.90625 180.253906 25.90625 181.527344 C 25.90625 182.800781 26.9375 183.832031 28.210938 183.832031 C 29.484375 183.832031 30.515625 182.800781 30.515625 181.527344 Z M 30.515625 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 14.824219 181.527344 C 14.824219 180.253906 13.792969 179.222656 12.519531 179.222656 C 11.246094 179.222656 10.214844 180.253906 10.214844 181.527344 C 10.214844 182.800781 11.246094 183.832031 12.519531 183.832031 C 13.792969 183.832031 14.824219 182.800781 14.824219 181.527344 Z M 14.824219 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 21.640625 181.527344 C 21.640625 180.253906 20.609375 179.222656 19.335938 179.222656 C 18.0625 179.222656 17.03125 180.253906 17.03125 181.527344 C 17.03125 182.800781 18.0625 183.832031 19.335938 183.832031 C 20.609375 183.832031 21.640625 182.800781 21.640625 181.527344 Z M 21.640625 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.703125 181.527344 C 28.703125 180.253906 27.671875 179.222656 26.398438 179.222656 C 25.125 179.222656 24.09375 180.253906 24.09375 181.527344 C 24.09375 182.800781 25.125 183.832031 26.398438 183.832031 C 27.671875 183.832031 28.703125 182.800781 28.703125 181.527344 Z M 28.703125 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 4.761719 181.527344 C 4.761719 180.253906 3.730469 179.222656 2.457031 179.222656 C 1.183594 179.222656 0.152344 180.253906 0.152344 181.527344 C 0.152344 182.800781 1.183594 183.832031 2.457031 183.832031 C 3.730469 183.832031 4.761719 182.800781 4.761719 181.527344 Z M 4.761719 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.753906 181.527344 C 24.753906 180.253906 23.722656 179.222656 22.449219 179.222656 C 21.175781 179.222656 20.144531 180.253906 20.144531 181.527344 C 20.144531 182.800781 21.175781 183.832031 22.449219 183.832031 C 23.722656 183.832031 24.753906 182.800781 24.753906 181.527344 Z M 24.753906 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.089844 181.527344 C 19.089844 180.253906 18.058594 179.222656 16.785156 179.222656 C 15.511719 179.222656 14.480469 180.253906 14.480469 181.527344 C 14.480469 182.800781 15.511719 183.832031 16.785156 183.832031 C 18.058594 183.832031 19.089844 182.800781 19.089844 181.527344 Z M 19.089844 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 8.890625 181.527344 C 8.890625 180.253906 7.859375 179.222656 6.585938 179.222656 C 5.3125 179.222656 4.28125 180.253906 4.28125 181.527344 C 4.28125 182.800781 5.3125 183.832031 6.585938 183.832031 C 7.859375 183.832031 8.890625 182.800781 8.890625 181.527344 Z M 8.890625 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.191406 181.527344 C 37.191406 180.253906 36.160156 179.222656 34.886719 179.222656 C 33.613281 179.222656 32.582031 180.253906 32.582031 181.527344 C 32.582031 182.800781 33.613281 183.832031 34.886719 183.832031 C 36.160156 183.832031 37.191406 182.800781 37.191406 181.527344 Z M 37.191406 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.636719 181.527344 C 29.636719 180.253906 28.605469 179.222656 27.332031 179.222656 C 26.058594 179.222656 25.027344 180.253906 25.027344 181.527344 C 25.027344 182.800781 26.058594 183.832031 27.332031 183.832031 C 28.605469 183.832031 29.636719 182.800781 29.636719 181.527344 Z M 29.636719 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 6.371094 181.527344 C 6.371094 180.253906 5.339844 179.222656 4.066406 179.222656 C 2.792969 179.222656 1.761719 180.253906 1.761719 181.527344 C 1.761719 182.800781 2.792969 183.832031 4.066406 183.832031 C 5.339844 183.832031 6.371094 182.800781 6.371094 181.527344 Z M 6.371094 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 12.109375 181.527344 C 12.109375 180.253906 11.078125 179.222656 9.804688 179.222656 C 8.53125 179.222656 7.5 180.253906 7.5 181.527344 C 7.5 182.800781 8.53125 183.832031 9.804688 183.832031 C 11.078125 183.832031 12.109375 182.800781 12.109375 181.527344 Z M 12.109375 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.296875 181.527344 C 24.296875 180.253906 23.265625 179.222656 21.992188 179.222656 C 20.71875 179.222656 19.6875 180.253906 19.6875 181.527344 C 19.6875 182.800781 20.71875 183.832031 21.992188 183.832031 C 23.265625 183.832031 24.296875 182.800781 24.296875 181.527344 Z M 24.296875 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 4.863281 181.527344 C 4.863281 180.253906 3.832031 179.222656 2.558594 179.222656 C 1.285156 179.222656 0.253906 180.253906 0.253906 181.527344 C 0.253906 182.800781 1.285156 183.832031 2.558594 183.832031 C 3.832031 183.832031 4.863281 182.800781 4.863281 181.527344 Z M 4.863281 181.527344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.65625 176.683594 C 37.65625 175.410156 36.625 174.378906 35.351562 174.378906 C 34.078125 174.378906 33.046875 175.410156 33.046875 176.683594 C 33.046875 177.957031 34.078125 178.988281 35.351562 178.988281 C 36.625 178.988281 37.65625 177.957031 37.65625 176.683594 Z M 37.65625 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 7.554688 176.683594 C 7.554688 175.410156 6.523438 174.378906 5.25 174.378906 C 3.976562 174.378906 2.945312 175.410156 2.945312 176.683594 C 2.945312 177.957031 3.976562 178.988281 5.25 178.988281 C 6.523438 178.988281 7.554688 177.957031 7.554688 176.683594 Z M 7.554688 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.941406 176.683594 C 25.941406 175.410156 24.910156 174.378906 23.636719 174.378906 C 22.363281 174.378906 21.332031 175.410156 21.332031 176.683594 C 21.332031 177.957031 22.363281 178.988281 23.636719 178.988281 C 24.910156 178.988281 25.941406 177.957031 25.941406 176.683594 Z M 25.941406 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 9.304688 176.683594 C 9.304688 175.410156 8.273438 174.378906 7 174.378906 C 5.726562 174.378906 4.695312 175.410156 4.695312 176.683594 C 4.695312 177.957031 5.726562 178.988281 7 178.988281 C 8.273438 178.988281 9.304688 177.957031 9.304688 176.683594 Z M 9.304688 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 14.644531 176.683594 C 14.644531 175.410156 13.613281 174.378906 12.339844 174.378906 C 11.066406 174.378906 10.035156 175.410156 10.035156 176.683594 C 10.035156 177.957031 11.066406 178.988281 12.339844 178.988281 C 13.613281 178.988281 14.644531 177.957031 14.644531 176.683594 Z M 14.644531 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.265625 176.683594 C 22.265625 175.410156 21.234375 174.378906 19.960938 174.378906 C 18.6875 174.378906 17.65625 175.410156 17.65625 176.683594 C 17.65625 177.957031 18.6875 178.988281 19.960938 178.988281 C 21.234375 178.988281 22.265625 177.957031 22.265625 176.683594 Z M 22.265625 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.386719 176.683594 C 26.386719 175.410156 25.355469 174.378906 24.082031 174.378906 C 22.808594 174.378906 21.777344 175.410156 21.777344 176.683594 C 21.777344 177.957031 22.808594 178.988281 24.082031 178.988281 C 25.355469 178.988281 26.386719 177.957031 26.386719 176.683594 Z M 26.386719 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 12.664062 176.683594 C 12.664062 175.410156 11.632812 174.378906 10.359375 174.378906 C 9.085938 174.378906 8.054688 175.410156 8.054688 176.683594 C 8.054688 177.957031 9.085938 178.988281 10.359375 178.988281 C 11.632812 178.988281 12.664062 177.957031 12.664062 176.683594 Z M 12.664062 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.019531 176.683594 C 41.019531 175.410156 39.988281 174.378906 38.714844 174.378906 C 37.441406 174.378906 36.410156 175.410156 36.410156 176.683594 C 36.410156 177.957031 37.441406 178.988281 38.714844 178.988281 C 39.988281 178.988281 41.019531 177.957031 41.019531 176.683594 Z M 41.019531 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.929688 176.683594 C 24.929688 175.410156 23.898438 174.378906 22.625 174.378906 C 21.351562 174.378906 20.320312 175.410156 20.320312 176.683594 C 20.320312 177.957031 21.351562 178.988281 22.625 178.988281 C 23.898438 178.988281 24.929688 177.957031 24.929688 176.683594 Z M 24.929688 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 5.027344 176.683594 C 5.027344 175.410156 3.996094 174.378906 2.722656 174.378906 C 1.449219 174.378906 0.417969 175.410156 0.417969 176.683594 C 0.417969 177.957031 1.449219 178.988281 2.722656 178.988281 C 3.996094 178.988281 5.027344 177.957031 5.027344 176.683594 Z M 5.027344 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.5625 176.683594 C 24.5625 175.410156 23.53125 174.378906 22.257812 174.378906 C 20.984375 174.378906 19.953125 175.410156 19.953125 176.683594 C 19.953125 177.957031 20.984375 178.988281 22.257812 178.988281 C 23.53125 178.988281 24.5625 177.957031 24.5625 176.683594 Z M 24.5625 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.089844 176.683594 C 37.089844 175.410156 36.058594 174.378906 34.785156 174.378906 C 33.511719 174.378906 32.480469 175.410156 32.480469 176.683594 C 32.480469 177.957031 33.511719 178.988281 34.785156 178.988281 C 36.058594 178.988281 37.089844 177.957031 37.089844 176.683594 Z M 37.089844 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.167969 176.683594 C 16.167969 175.410156 15.136719 174.378906 13.863281 174.378906 C 12.589844 174.378906 11.558594 175.410156 11.558594 176.683594 C 11.558594 177.957031 12.589844 178.988281 13.863281 178.988281 C 15.136719 178.988281 16.167969 177.957031 16.167969 176.683594 Z M 16.167969 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.597656 176.683594 C 16.597656 175.410156 15.566406 174.378906 14.292969 174.378906 C 13.019531 174.378906 11.988281 175.410156 11.988281 176.683594 C 11.988281 177.957031 13.019531 178.988281 14.292969 178.988281 C 15.566406 178.988281 16.597656 177.957031 16.597656 176.683594 Z M 16.597656 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.378906 176.683594 C 42.378906 175.410156 41.347656 174.378906 40.074219 174.378906 C 38.800781 174.378906 37.769531 175.410156 37.769531 176.683594 C 37.769531 177.957031 38.800781 178.988281 40.074219 178.988281 C 41.347656 178.988281 42.378906 177.957031 42.378906 176.683594 Z M 42.378906 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.855469 176.683594 C 31.855469 175.410156 30.824219 174.378906 29.550781 174.378906 C 28.277344 174.378906 27.246094 175.410156 27.246094 176.683594 C 27.246094 177.957031 28.277344 178.988281 29.550781 178.988281 C 30.824219 178.988281 31.855469 177.957031 31.855469 176.683594 Z M 31.855469 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.261719 176.683594 C 15.261719 175.410156 14.230469 174.378906 12.957031 174.378906 C 11.683594 174.378906 10.652344 175.410156 10.652344 176.683594 C 10.652344 177.957031 11.683594 178.988281 12.957031 178.988281 C 14.230469 178.988281 15.261719 177.957031 15.261719 176.683594 Z M 15.261719 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.472656 176.683594 C 22.472656 175.410156 21.441406 174.378906 20.167969 174.378906 C 18.894531 174.378906 17.863281 175.410156 17.863281 176.683594 C 17.863281 177.957031 18.894531 178.988281 20.167969 178.988281 C 21.441406 178.988281 22.472656 177.957031 22.472656 176.683594 Z M 22.472656 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.9375 176.683594 C 29.9375 175.410156 28.90625 174.378906 27.632812 174.378906 C 26.359375 174.378906 25.328125 175.410156 25.328125 176.683594 C 25.328125 177.957031 26.359375 178.988281 27.632812 178.988281 C 28.90625 178.988281 29.9375 177.957031 29.9375 176.683594 Z M 29.9375 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 4.625 176.683594 C 4.625 175.410156 3.59375 174.378906 2.320312 174.378906 C 1.046875 174.378906 0.015625 175.410156 0.015625 176.683594 C 0.015625 177.957031 1.046875 178.988281 2.320312 178.988281 C 3.59375 178.988281 4.625 177.957031 4.625 176.683594 Z M 4.625 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.765625 176.683594 C 25.765625 175.410156 24.734375 174.378906 23.460938 174.378906 C 22.1875 174.378906 21.15625 175.410156 21.15625 176.683594 C 21.15625 177.957031 22.1875 178.988281 23.460938 178.988281 C 24.734375 178.988281 25.765625 177.957031 25.765625 176.683594 Z M 25.765625 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.773438 176.683594 C 19.773438 175.410156 18.742188 174.378906 17.46875 174.378906 C 16.195312 174.378906 15.164062 175.410156 15.164062 176.683594 C 15.164062 177.957031 16.195312 178.988281 17.46875 178.988281 C 18.742188 178.988281 19.773438 177.957031 19.773438 176.683594 Z M 19.773438 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 8.992188 176.683594 C 8.992188 175.410156 7.960938 174.378906 6.6875 174.378906 C 5.414062 174.378906 4.382812 175.410156 4.382812 176.683594 C 4.382812 177.957031 5.414062 178.988281 6.6875 178.988281 C 7.960938 178.988281 8.992188 177.957031 8.992188 176.683594 Z M 8.992188 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.914062 176.683594 C 38.914062 175.410156 37.882812 174.378906 36.609375 174.378906 C 35.335938 174.378906 34.304688 175.410156 34.304688 176.683594 C 34.304688 177.957031 35.335938 178.988281 36.609375 178.988281 C 37.882812 178.988281 38.914062 177.957031 38.914062 176.683594 Z M 38.914062 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.925781 176.683594 C 30.925781 175.410156 29.894531 174.378906 28.621094 174.378906 C 27.347656 174.378906 26.316406 175.410156 26.316406 176.683594 C 26.316406 177.957031 27.347656 178.988281 28.621094 178.988281 C 29.894531 178.988281 30.925781 177.957031 30.925781 176.683594 Z M 30.925781 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 6.328125 176.683594 C 6.328125 175.410156 5.296875 174.378906 4.023438 174.378906 C 2.75 174.378906 1.71875 175.410156 1.71875 176.683594 C 1.71875 177.957031 2.75 178.988281 4.023438 178.988281 C 5.296875 178.988281 6.328125 177.957031 6.328125 176.683594 Z M 6.328125 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 12.394531 176.683594 C 12.394531 175.410156 11.363281 174.378906 10.089844 174.378906 C 8.816406 174.378906 7.785156 175.410156 7.785156 176.683594 C 7.785156 177.957031 8.816406 178.988281 10.089844 178.988281 C 11.363281 178.988281 12.394531 177.957031 12.394531 176.683594 Z M 12.394531 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.28125 176.683594 C 25.28125 175.410156 24.25 174.378906 22.976562 174.378906 C 21.703125 174.378906 20.671875 175.410156 20.671875 176.683594 C 20.671875 177.957031 21.703125 178.988281 22.976562 178.988281 C 24.25 178.988281 25.28125 177.957031 25.28125 176.683594 Z M 25.28125 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 4.730469 176.683594 C 4.730469 175.410156 3.699219 174.378906 2.425781 174.378906 C 1.152344 174.378906 0.121094 175.410156 0.121094 176.683594 C 0.121094 177.957031 1.152344 178.988281 2.425781 178.988281 C 3.699219 178.988281 4.730469 177.957031 4.730469 176.683594 Z M 4.730469 176.683594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.480469 171.839844 C 39.480469 170.566406 38.449219 169.535156 37.175781 169.535156 C 35.902344 169.535156 34.871094 170.566406 34.871094 171.839844 C 34.871094 173.113281 35.902344 174.144531 37.175781 174.144531 C 38.449219 174.144531 39.480469 173.113281 39.480469 171.839844 Z M 39.480469 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 8.042969 171.839844 C 8.042969 170.566406 7.011719 169.535156 5.738281 169.535156 C 4.464844 169.535156 3.433594 170.566406 3.433594 171.839844 C 3.433594 173.113281 4.464844 174.144531 5.738281 174.144531 C 7.011719 174.144531 8.042969 173.113281 8.042969 171.839844 Z M 8.042969 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.242188 171.839844 C 27.242188 170.566406 26.210938 169.535156 24.9375 169.535156 C 23.664062 169.535156 22.632812 170.566406 22.632812 171.839844 C 22.632812 173.113281 23.664062 174.144531 24.9375 174.144531 C 26.210938 174.144531 27.242188 173.113281 27.242188 171.839844 Z M 27.242188 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 9.871094 171.839844 C 9.871094 170.566406 8.839844 169.535156 7.566406 169.535156 C 6.292969 169.535156 5.261719 170.566406 5.261719 171.839844 C 5.261719 173.113281 6.292969 174.144531 7.566406 174.144531 C 8.839844 174.144531 9.871094 173.113281 9.871094 171.839844 Z M 9.871094 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.449219 171.839844 C 15.449219 170.566406 14.417969 169.535156 13.144531 169.535156 C 11.871094 169.535156 10.839844 170.566406 10.839844 171.839844 C 10.839844 173.113281 11.871094 174.144531 13.144531 174.144531 C 14.417969 174.144531 15.449219 173.113281 15.449219 171.839844 Z M 15.449219 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.40625 171.839844 C 23.40625 170.566406 22.375 169.535156 21.101562 169.535156 C 19.828125 169.535156 18.796875 170.566406 18.796875 171.839844 C 18.796875 173.113281 19.828125 174.144531 21.101562 174.144531 C 22.375 174.144531 23.40625 173.113281 23.40625 171.839844 Z M 23.40625 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.710938 171.839844 C 27.710938 170.566406 26.679688 169.535156 25.40625 169.535156 C 24.132812 169.535156 23.101562 170.566406 23.101562 171.839844 C 23.101562 173.113281 24.132812 174.144531 25.40625 174.144531 C 26.679688 174.144531 27.710938 173.113281 27.710938 171.839844 Z M 27.710938 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 13.382812 171.839844 C 13.382812 170.566406 12.351562 169.535156 11.078125 169.535156 C 9.804688 169.535156 8.773438 170.566406 8.773438 171.839844 C 8.773438 173.113281 9.804688 174.144531 11.078125 174.144531 C 12.351562 174.144531 13.382812 173.113281 13.382812 171.839844 Z M 13.382812 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.992188 171.839844 C 42.992188 170.566406 41.960938 169.535156 40.6875 169.535156 C 39.414062 169.535156 38.382812 170.566406 38.382812 171.839844 C 38.382812 173.113281 39.414062 174.144531 40.6875 174.144531 C 41.960938 174.144531 42.992188 173.113281 42.992188 171.839844 Z M 42.992188 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.1875 171.839844 C 26.1875 170.566406 25.15625 169.535156 23.882812 169.535156 C 22.609375 169.535156 21.578125 170.566406 21.578125 171.839844 C 21.578125 173.113281 22.609375 174.144531 23.882812 174.144531 C 25.15625 174.144531 26.1875 173.113281 26.1875 171.839844 Z M 26.1875 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 5.402344 171.839844 C 5.402344 170.566406 4.371094 169.535156 3.097656 169.535156 C 1.824219 169.535156 0.792969 170.566406 0.792969 171.839844 C 0.792969 173.113281 1.824219 174.144531 3.097656 174.144531 C 4.371094 174.144531 5.402344 173.113281 5.402344 171.839844 Z M 5.402344 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.804688 171.839844 C 25.804688 170.566406 24.773438 169.535156 23.5 169.535156 C 22.226562 169.535156 21.195312 170.566406 21.195312 171.839844 C 21.195312 173.113281 22.226562 174.144531 23.5 174.144531 C 24.773438 174.144531 25.804688 173.113281 25.804688 171.839844 Z M 25.804688 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.886719 171.839844 C 38.886719 170.566406 37.855469 169.535156 36.582031 169.535156 C 35.308594 169.535156 34.277344 170.566406 34.277344 171.839844 C 34.277344 173.113281 35.308594 174.144531 36.582031 174.144531 C 37.855469 174.144531 38.886719 173.113281 38.886719 171.839844 Z M 38.886719 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 17.039062 171.839844 C 17.039062 170.566406 16.007812 169.535156 14.734375 169.535156 C 13.460938 169.535156 12.429688 170.566406 12.429688 171.839844 C 12.429688 173.113281 13.460938 174.144531 14.734375 174.144531 C 16.007812 174.144531 17.039062 173.113281 17.039062 171.839844 Z M 17.039062 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 17.488281 171.839844 C 17.488281 170.566406 16.457031 169.535156 15.183594 169.535156 C 13.910156 169.535156 12.878906 170.566406 12.878906 171.839844 C 12.878906 173.113281 13.910156 174.144531 15.183594 174.144531 C 16.457031 174.144531 17.488281 173.113281 17.488281 171.839844 Z M 17.488281 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.410156 171.839844 C 44.410156 170.566406 43.378906 169.535156 42.105469 169.535156 C 40.832031 169.535156 39.800781 170.566406 39.800781 171.839844 C 39.800781 173.113281 40.832031 174.144531 42.105469 174.144531 C 43.378906 174.144531 44.410156 173.113281 44.410156 171.839844 Z M 44.410156 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.417969 171.839844 C 33.417969 170.566406 32.386719 169.535156 31.113281 169.535156 C 29.839844 169.535156 28.808594 170.566406 28.808594 171.839844 C 28.808594 173.113281 29.839844 174.144531 31.113281 174.144531 C 32.386719 174.144531 33.417969 173.113281 33.417969 171.839844 Z M 33.417969 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.09375 171.839844 C 16.09375 170.566406 15.0625 169.535156 13.789062 169.535156 C 12.515625 169.535156 11.484375 170.566406 11.484375 171.839844 C 11.484375 173.113281 12.515625 174.144531 13.789062 174.144531 C 15.0625 174.144531 16.09375 173.113281 16.09375 171.839844 Z M 16.09375 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.621094 171.839844 C 23.621094 170.566406 22.589844 169.535156 21.316406 169.535156 C 20.042969 169.535156 19.011719 170.566406 19.011719 171.839844 C 19.011719 173.113281 20.042969 174.144531 21.316406 174.144531 C 22.589844 174.144531 23.621094 173.113281 23.621094 171.839844 Z M 23.621094 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.421875 171.839844 C 31.421875 170.566406 30.390625 169.535156 29.117188 169.535156 C 27.84375 169.535156 26.8125 170.566406 26.8125 171.839844 C 26.8125 173.113281 27.84375 174.144531 29.117188 174.144531 C 30.390625 174.144531 31.421875 173.113281 31.421875 171.839844 Z M 31.421875 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 4.984375 171.839844 C 4.984375 170.566406 3.953125 169.535156 2.679688 169.535156 C 1.40625 169.535156 0.375 170.566406 0.375 171.839844 C 0.375 173.113281 1.40625 174.144531 2.679688 174.144531 C 3.953125 174.144531 4.984375 173.113281 4.984375 171.839844 Z M 4.984375 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.0625 171.839844 C 27.0625 170.566406 26.03125 169.535156 24.757812 169.535156 C 23.484375 169.535156 22.453125 170.566406 22.453125 171.839844 C 22.453125 173.113281 23.484375 174.144531 24.757812 174.144531 C 26.03125 174.144531 27.0625 173.113281 27.0625 171.839844 Z M 27.0625 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.804688 171.839844 C 20.804688 170.566406 19.773438 169.535156 18.5 169.535156 C 17.226562 169.535156 16.195312 170.566406 16.195312 171.839844 C 16.195312 173.113281 17.226562 174.144531 18.5 174.144531 C 19.773438 174.144531 20.804688 173.113281 20.804688 171.839844 Z M 20.804688 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 9.546875 171.839844 C 9.546875 170.566406 8.515625 169.535156 7.242188 169.535156 C 5.96875 169.535156 4.9375 170.566406 4.9375 171.839844 C 4.9375 173.113281 5.96875 174.144531 7.242188 174.144531 C 8.515625 174.144531 9.546875 173.113281 9.546875 171.839844 Z M 9.546875 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.789062 171.839844 C 40.789062 170.566406 39.757812 169.535156 38.484375 169.535156 C 37.210938 169.535156 36.179688 170.566406 36.179688 171.839844 C 36.179688 173.113281 37.210938 174.144531 38.484375 174.144531 C 39.757812 174.144531 40.789062 173.113281 40.789062 171.839844 Z M 40.789062 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.449219 171.839844 C 32.449219 170.566406 31.417969 169.535156 30.144531 169.535156 C 28.871094 169.535156 27.839844 170.566406 27.839844 171.839844 C 27.839844 173.113281 28.871094 174.144531 30.144531 174.144531 C 31.417969 174.144531 32.449219 173.113281 32.449219 171.839844 Z M 32.449219 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 6.761719 171.839844 C 6.761719 170.566406 5.730469 169.535156 4.457031 169.535156 C 3.183594 169.535156 2.152344 170.566406 2.152344 171.839844 C 2.152344 173.113281 3.183594 174.144531 4.457031 174.144531 C 5.730469 174.144531 6.761719 173.113281 6.761719 171.839844 Z M 6.761719 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 13.097656 171.839844 C 13.097656 170.566406 12.066406 169.535156 10.792969 169.535156 C 9.519531 169.535156 8.488281 170.566406 8.488281 171.839844 C 8.488281 173.113281 9.519531 174.144531 10.792969 174.144531 C 12.066406 174.144531 13.097656 173.113281 13.097656 171.839844 Z M 13.097656 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.554688 171.839844 C 26.554688 170.566406 25.523438 169.535156 24.25 169.535156 C 22.976562 169.535156 21.945312 170.566406 21.945312 171.839844 C 21.945312 173.113281 22.976562 174.144531 24.25 174.144531 C 25.523438 174.144531 26.554688 173.113281 26.554688 171.839844 Z M 26.554688 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 5.097656 171.839844 C 5.097656 170.566406 4.066406 169.535156 2.792969 169.535156 C 1.519531 169.535156 0.488281 170.566406 0.488281 171.839844 C 0.488281 173.113281 1.519531 174.144531 2.792969 174.144531 C 4.066406 174.144531 5.097656 173.113281 5.097656 171.839844 Z M 5.097656 171.839844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.453125 166.996094 C 41.453125 165.722656 40.421875 164.691406 39.148438 164.691406 C 37.875 164.691406 36.84375 165.722656 36.84375 166.996094 C 36.84375 168.269531 37.875 169.300781 39.148438 169.300781 C 40.421875 169.300781 41.453125 168.269531 41.453125 166.996094 Z M 41.453125 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 9 166.996094 C 9 165.722656 7.96875 164.691406 6.695312 164.691406 C 5.421875 164.691406 4.390625 165.722656 4.390625 166.996094 C 4.390625 168.269531 5.421875 169.300781 6.695312 169.300781 C 7.96875 169.300781 9 168.269531 9 166.996094 Z M 9 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.820312 166.996094 C 28.820312 165.722656 27.789062 164.691406 26.515625 164.691406 C 25.242188 164.691406 24.210938 165.722656 24.210938 166.996094 C 24.210938 168.269531 25.242188 169.300781 26.515625 169.300781 C 27.789062 169.300781 28.820312 168.269531 28.820312 166.996094 Z M 28.820312 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 10.886719 166.996094 C 10.886719 165.722656 9.855469 164.691406 8.582031 164.691406 C 7.308594 164.691406 6.277344 165.722656 6.277344 166.996094 C 6.277344 168.269531 7.308594 169.300781 8.582031 169.300781 C 9.855469 169.300781 10.886719 168.269531 10.886719 166.996094 Z M 10.886719 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.640625 166.996094 C 16.640625 165.722656 15.609375 164.691406 14.335938 164.691406 C 13.0625 164.691406 12.03125 165.722656 12.03125 166.996094 C 12.03125 168.269531 13.0625 169.300781 14.335938 169.300781 C 15.609375 169.300781 16.640625 168.269531 16.640625 166.996094 Z M 16.640625 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.859375 166.996094 C 24.859375 165.722656 23.828125 164.691406 22.554688 164.691406 C 21.28125 164.691406 20.25 165.722656 20.25 166.996094 C 20.25 168.269531 21.28125 169.300781 22.554688 169.300781 C 23.828125 169.300781 24.859375 168.269531 24.859375 166.996094 Z M 24.859375 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.300781 166.996094 C 29.300781 165.722656 28.269531 164.691406 26.996094 164.691406 C 25.722656 164.691406 24.691406 165.722656 24.691406 166.996094 C 24.691406 168.269531 25.722656 169.300781 26.996094 169.300781 C 28.269531 169.300781 29.300781 168.269531 29.300781 166.996094 Z M 29.300781 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 14.507812 166.996094 C 14.507812 165.722656 13.476562 164.691406 12.203125 164.691406 C 10.929688 164.691406 9.898438 165.722656 9.898438 166.996094 C 9.898438 168.269531 10.929688 169.300781 12.203125 169.300781 C 13.476562 169.300781 14.507812 168.269531 14.507812 166.996094 Z M 14.507812 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.078125 166.996094 C 45.078125 165.722656 44.046875 164.691406 42.773438 164.691406 C 41.5 164.691406 40.46875 165.722656 40.46875 166.996094 C 40.46875 168.269531 41.5 169.300781 42.773438 169.300781 C 44.046875 169.300781 45.078125 168.269531 45.078125 166.996094 Z M 45.078125 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.730469 166.996094 C 27.730469 165.722656 26.699219 164.691406 25.425781 164.691406 C 24.152344 164.691406 23.121094 165.722656 23.121094 166.996094 C 23.121094 168.269531 24.152344 169.300781 25.425781 169.300781 C 26.699219 169.300781 27.730469 168.269531 27.730469 166.996094 Z M 27.730469 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 6.273438 166.996094 C 6.273438 165.722656 5.242188 164.691406 3.96875 164.691406 C 2.695312 164.691406 1.664062 165.722656 1.664062 166.996094 C 1.664062 168.269531 2.695312 169.300781 3.96875 169.300781 C 5.242188 169.300781 6.273438 168.269531 6.273438 166.996094 Z M 6.273438 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.335938 166.996094 C 27.335938 165.722656 26.304688 164.691406 25.03125 164.691406 C 23.757812 164.691406 22.726562 165.722656 22.726562 166.996094 C 22.726562 168.269531 23.757812 169.300781 25.03125 169.300781 C 26.304688 169.300781 27.335938 168.269531 27.335938 166.996094 Z M 27.335938 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.839844 166.996094 C 40.839844 165.722656 39.808594 164.691406 38.535156 164.691406 C 37.261719 164.691406 36.230469 165.722656 36.230469 166.996094 C 36.230469 168.269531 37.261719 169.300781 38.535156 169.300781 C 39.808594 169.300781 40.839844 168.269531 40.839844 166.996094 Z M 40.839844 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 18.285156 166.996094 C 18.285156 165.722656 17.253906 164.691406 15.980469 164.691406 C 14.707031 164.691406 13.675781 165.722656 13.675781 166.996094 C 13.675781 168.269531 14.707031 169.300781 15.980469 169.300781 C 17.253906 169.300781 18.285156 168.269531 18.285156 166.996094 Z M 18.285156 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 18.75 166.996094 C 18.75 165.722656 17.71875 164.691406 16.445312 164.691406 C 15.171875 164.691406 14.140625 165.722656 14.140625 166.996094 C 14.140625 168.269531 15.171875 169.300781 16.445312 169.300781 C 17.71875 169.300781 18.75 168.269531 18.75 166.996094 Z M 18.75 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.542969 166.996094 C 46.542969 165.722656 45.511719 164.691406 44.238281 164.691406 C 42.964844 164.691406 41.933594 165.722656 41.933594 166.996094 C 41.933594 168.269531 42.964844 169.300781 44.238281 169.300781 C 45.511719 169.300781 46.542969 168.269531 46.542969 166.996094 Z M 46.542969 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.195312 166.996094 C 35.195312 165.722656 34.164062 164.691406 32.890625 164.691406 C 31.617188 164.691406 30.585938 165.722656 30.585938 166.996094 C 30.585938 168.269531 31.617188 169.300781 32.890625 169.300781 C 34.164062 169.300781 35.195312 168.269531 35.195312 166.996094 Z M 35.195312 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 17.308594 166.996094 C 17.308594 165.722656 16.277344 164.691406 15.003906 164.691406 C 13.730469 164.691406 12.699219 165.722656 12.699219 166.996094 C 12.699219 168.269531 13.730469 169.300781 15.003906 169.300781 C 16.277344 169.300781 17.308594 168.269531 17.308594 166.996094 Z M 17.308594 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.082031 166.996094 C 25.082031 165.722656 24.050781 164.691406 22.777344 164.691406 C 21.503906 164.691406 20.472656 165.722656 20.472656 166.996094 C 20.472656 168.269531 21.503906 169.300781 22.777344 169.300781 C 24.050781 169.300781 25.082031 168.269531 25.082031 166.996094 Z M 25.082031 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.132812 166.996094 C 33.132812 165.722656 32.101562 164.691406 30.828125 164.691406 C 29.554688 164.691406 28.523438 165.722656 28.523438 166.996094 C 28.523438 168.269531 29.554688 169.300781 30.828125 169.300781 C 32.101562 169.300781 33.132812 168.269531 33.132812 166.996094 Z M 33.132812 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 5.839844 166.996094 C 5.839844 165.722656 4.808594 164.691406 3.535156 164.691406 C 2.261719 164.691406 1.230469 165.722656 1.230469 166.996094 C 1.230469 168.269531 2.261719 169.300781 3.535156 169.300781 C 4.808594 169.300781 5.839844 168.269531 5.839844 166.996094 Z M 5.839844 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.632812 166.996094 C 28.632812 165.722656 27.601562 164.691406 26.328125 164.691406 C 25.054688 164.691406 24.023438 165.722656 24.023438 166.996094 C 24.023438 168.269531 25.054688 169.300781 26.328125 169.300781 C 27.601562 169.300781 28.632812 168.269531 28.632812 166.996094 Z M 28.632812 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.171875 166.996094 C 22.171875 165.722656 21.140625 164.691406 19.867188 164.691406 C 18.59375 164.691406 17.5625 165.722656 17.5625 166.996094 C 17.5625 168.269531 18.59375 169.300781 19.867188 169.300781 C 21.140625 169.300781 22.171875 168.269531 22.171875 166.996094 Z M 22.171875 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 10.546875 166.996094 C 10.546875 165.722656 9.515625 164.691406 8.242188 164.691406 C 6.96875 164.691406 5.9375 165.722656 5.9375 166.996094 C 5.9375 168.269531 6.96875 169.300781 8.242188 169.300781 C 9.515625 169.300781 10.546875 168.269531 10.546875 166.996094 Z M 10.546875 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.804688 166.996094 C 42.804688 165.722656 41.773438 164.691406 40.5 164.691406 C 39.226562 164.691406 38.195312 165.722656 38.195312 166.996094 C 38.195312 168.269531 39.226562 169.300781 40.5 169.300781 C 41.773438 169.300781 42.804688 168.269531 42.804688 166.996094 Z M 42.804688 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.195312 166.996094 C 34.195312 165.722656 33.164062 164.691406 31.890625 164.691406 C 30.617188 164.691406 29.585938 165.722656 29.585938 166.996094 C 29.585938 168.269531 30.617188 169.300781 31.890625 169.300781 C 33.164062 169.300781 34.195312 168.269531 34.195312 166.996094 Z M 34.195312 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 7.675781 166.996094 C 7.675781 165.722656 6.644531 164.691406 5.371094 164.691406 C 4.097656 164.691406 3.066406 165.722656 3.066406 166.996094 C 3.066406 168.269531 4.097656 169.300781 5.371094 169.300781 C 6.644531 169.300781 7.675781 168.269531 7.675781 166.996094 Z M 7.675781 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 14.214844 166.996094 C 14.214844 165.722656 13.183594 164.691406 11.910156 164.691406 C 10.636719 164.691406 9.605469 165.722656 9.605469 166.996094 C 9.605469 168.269531 10.636719 169.300781 11.910156 169.300781 C 13.183594 169.300781 14.214844 168.269531 14.214844 166.996094 Z M 14.214844 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.109375 166.996094 C 28.109375 165.722656 27.078125 164.691406 25.804688 164.691406 C 24.53125 164.691406 23.5 165.722656 23.5 166.996094 C 23.5 168.269531 24.53125 169.300781 25.804688 169.300781 C 27.078125 169.300781 28.109375 168.269531 28.109375 166.996094 Z M 28.109375 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 5.957031 166.996094 C 5.957031 165.722656 4.925781 164.691406 3.652344 164.691406 C 2.378906 164.691406 1.347656 165.722656 1.347656 166.996094 C 1.347656 168.269531 2.378906 169.300781 3.652344 169.300781 C 4.925781 169.300781 5.957031 168.269531 5.957031 166.996094 Z M 5.957031 166.996094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.554688 162.152344 C 43.554688 160.878906 42.523438 159.847656 41.25 159.847656 C 39.976562 159.847656 38.945312 160.878906 38.945312 162.152344 C 38.945312 163.425781 39.976562 164.457031 41.25 164.457031 C 42.523438 164.457031 43.554688 163.425781 43.554688 162.152344 Z M 43.554688 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 10.40625 162.152344 C 10.40625 160.878906 9.375 159.847656 8.101562 159.847656 C 6.828125 159.847656 5.796875 160.878906 5.796875 162.152344 C 5.796875 163.425781 6.828125 164.457031 8.101562 164.457031 C 9.375 164.457031 10.40625 163.425781 10.40625 162.152344 Z M 10.40625 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.652344 162.152344 C 30.652344 160.878906 29.621094 159.847656 28.347656 159.847656 C 27.074219 159.847656 26.042969 160.878906 26.042969 162.152344 C 26.042969 163.425781 27.074219 164.457031 28.347656 164.457031 C 29.621094 164.457031 30.652344 163.425781 30.652344 162.152344 Z M 30.652344 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 12.335938 162.152344 C 12.335938 160.878906 11.304688 159.847656 10.03125 159.847656 C 8.757812 159.847656 7.726562 160.878906 7.726562 162.152344 C 7.726562 163.425781 8.757812 164.457031 10.03125 164.457031 C 11.304688 164.457031 12.335938 163.425781 12.335938 162.152344 Z M 12.335938 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 18.214844 162.152344 C 18.214844 160.878906 17.183594 159.847656 15.910156 159.847656 C 14.636719 159.847656 13.605469 160.878906 13.605469 162.152344 C 13.605469 163.425781 14.636719 164.457031 15.910156 164.457031 C 17.183594 164.457031 18.214844 163.425781 18.214844 162.152344 Z M 18.214844 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.605469 162.152344 C 26.605469 160.878906 25.574219 159.847656 24.300781 159.847656 C 23.027344 159.847656 21.996094 160.878906 21.996094 162.152344 C 21.996094 163.425781 23.027344 164.457031 24.300781 164.457031 C 25.574219 164.457031 26.605469 163.425781 26.605469 162.152344 Z M 26.605469 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.144531 162.152344 C 31.144531 160.878906 30.113281 159.847656 28.839844 159.847656 C 27.566406 159.847656 26.535156 160.878906 26.535156 162.152344 C 26.535156 163.425781 27.566406 164.457031 28.839844 164.457031 C 30.113281 164.457031 31.144531 163.425781 31.144531 162.152344 Z M 31.144531 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.035156 162.152344 C 16.035156 160.878906 15.003906 159.847656 13.730469 159.847656 C 12.457031 159.847656 11.425781 160.878906 11.425781 162.152344 C 11.425781 163.425781 12.457031 164.457031 13.730469 164.457031 C 15.003906 164.457031 16.035156 163.425781 16.035156 162.152344 Z M 16.035156 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.257812 162.152344 C 47.257812 160.878906 46.226562 159.847656 44.953125 159.847656 C 43.679688 159.847656 42.648438 160.878906 42.648438 162.152344 C 42.648438 163.425781 43.679688 164.457031 44.953125 164.457031 C 46.226562 164.457031 47.257812 163.425781 47.257812 162.152344 Z M 47.257812 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.539062 162.152344 C 29.539062 160.878906 28.507812 159.847656 27.234375 159.847656 C 25.960938 159.847656 24.929688 160.878906 24.929688 162.152344 C 24.929688 163.425781 25.960938 164.457031 27.234375 164.457031 C 28.507812 164.457031 29.539062 163.425781 29.539062 162.152344 Z M 29.539062 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 7.625 162.152344 C 7.625 160.878906 6.59375 159.847656 5.320312 159.847656 C 4.046875 159.847656 3.015625 160.878906 3.015625 162.152344 C 3.015625 163.425781 4.046875 164.457031 5.320312 164.457031 C 6.59375 164.457031 7.625 163.425781 7.625 162.152344 Z M 7.625 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.136719 162.152344 C 29.136719 160.878906 28.105469 159.847656 26.832031 159.847656 C 25.558594 159.847656 24.527344 160.878906 24.527344 162.152344 C 24.527344 163.425781 25.558594 164.457031 26.832031 164.457031 C 28.105469 164.457031 29.136719 163.425781 29.136719 162.152344 Z M 29.136719 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.929688 162.152344 C 42.929688 160.878906 41.898438 159.847656 40.625 159.847656 C 39.351562 159.847656 38.320312 160.878906 38.320312 162.152344 C 38.320312 163.425781 39.351562 164.457031 40.625 164.457031 C 41.898438 164.457031 42.929688 163.425781 42.929688 162.152344 Z M 42.929688 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.890625 162.152344 C 19.890625 160.878906 18.859375 159.847656 17.585938 159.847656 C 16.3125 159.847656 15.28125 160.878906 15.28125 162.152344 C 15.28125 163.425781 16.3125 164.457031 17.585938 164.457031 C 18.859375 164.457031 19.890625 163.425781 19.890625 162.152344 Z M 19.890625 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.367188 162.152344 C 20.367188 160.878906 19.335938 159.847656 18.0625 159.847656 C 16.789062 159.847656 15.757812 160.878906 15.757812 162.152344 C 15.757812 163.425781 16.789062 164.457031 18.0625 164.457031 C 19.335938 164.457031 20.367188 163.425781 20.367188 162.152344 Z M 20.367188 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.753906 162.152344 C 48.753906 160.878906 47.722656 159.847656 46.449219 159.847656 C 45.175781 159.847656 44.144531 160.878906 44.144531 162.152344 C 44.144531 163.425781 45.175781 164.457031 46.449219 164.457031 C 47.722656 164.457031 48.753906 163.425781 48.753906 162.152344 Z M 48.753906 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.164062 162.152344 C 37.164062 160.878906 36.132812 159.847656 34.859375 159.847656 C 33.585938 159.847656 32.554688 160.878906 32.554688 162.152344 C 32.554688 163.425781 33.585938 164.457031 34.859375 164.457031 C 36.132812 164.457031 37.164062 163.425781 37.164062 162.152344 Z M 37.164062 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 18.894531 162.152344 C 18.894531 160.878906 17.863281 159.847656 16.589844 159.847656 C 15.316406 159.847656 14.285156 160.878906 14.285156 162.152344 C 14.285156 163.425781 15.316406 164.457031 16.589844 164.457031 C 17.863281 164.457031 18.894531 163.425781 18.894531 162.152344 Z M 18.894531 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.832031 162.152344 C 26.832031 160.878906 25.800781 159.847656 24.527344 159.847656 C 23.253906 159.847656 22.222656 160.878906 22.222656 162.152344 C 22.222656 163.425781 23.253906 164.457031 24.527344 164.457031 C 25.800781 164.457031 26.832031 163.425781 26.832031 162.152344 Z M 26.832031 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.054688 162.152344 C 35.054688 160.878906 34.023438 159.847656 32.75 159.847656 C 31.476562 159.847656 30.445312 160.878906 30.445312 162.152344 C 30.445312 163.425781 31.476562 164.457031 32.75 164.457031 C 34.023438 164.457031 35.054688 163.425781 35.054688 162.152344 Z M 35.054688 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 7.179688 162.152344 C 7.179688 160.878906 6.148438 159.847656 4.875 159.847656 C 3.601562 159.847656 2.570312 160.878906 2.570312 162.152344 C 2.570312 163.425781 3.601562 164.457031 4.875 164.457031 C 6.148438 164.457031 7.179688 163.425781 7.179688 162.152344 Z M 7.179688 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.460938 162.152344 C 30.460938 160.878906 29.429688 159.847656 28.15625 159.847656 C 26.882812 159.847656 25.851562 160.878906 25.851562 162.152344 C 25.851562 163.425781 26.882812 164.457031 28.15625 164.457031 C 29.429688 164.457031 30.460938 163.425781 30.460938 162.152344 Z M 30.460938 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.859375 162.152344 C 23.859375 160.878906 22.828125 159.847656 21.554688 159.847656 C 20.28125 159.847656 19.25 160.878906 19.25 162.152344 C 19.25 163.425781 20.28125 164.457031 21.554688 164.457031 C 22.828125 164.457031 23.859375 163.425781 23.859375 162.152344 Z M 23.859375 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 11.988281 162.152344 C 11.988281 160.878906 10.957031 159.847656 9.683594 159.847656 C 8.410156 159.847656 7.378906 160.878906 7.378906 162.152344 C 7.378906 163.425781 8.410156 164.457031 9.683594 164.457031 C 10.957031 164.457031 11.988281 163.425781 11.988281 162.152344 Z M 11.988281 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.9375 162.152344 C 44.9375 160.878906 43.90625 159.847656 42.632812 159.847656 C 41.359375 159.847656 40.328125 160.878906 40.328125 162.152344 C 40.328125 163.425781 41.359375 164.457031 42.632812 164.457031 C 43.90625 164.457031 44.9375 163.425781 44.9375 162.152344 Z M 44.9375 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.144531 162.152344 C 36.144531 160.878906 35.113281 159.847656 33.839844 159.847656 C 32.566406 159.847656 31.535156 160.878906 31.535156 162.152344 C 31.535156 163.425781 32.566406 164.457031 33.839844 164.457031 C 35.113281 164.457031 36.144531 163.425781 36.144531 162.152344 Z M 36.144531 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 9.054688 162.152344 C 9.054688 160.878906 8.023438 159.847656 6.75 159.847656 C 5.476562 159.847656 4.445312 160.878906 4.445312 162.152344 C 4.445312 163.425781 5.476562 164.457031 6.75 164.457031 C 8.023438 164.457031 9.054688 163.425781 9.054688 162.152344 Z M 9.054688 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.734375 162.152344 C 15.734375 160.878906 14.703125 159.847656 13.429688 159.847656 C 12.15625 159.847656 11.125 160.878906 11.125 162.152344 C 11.125 163.425781 12.15625 164.457031 13.429688 164.457031 C 14.703125 164.457031 15.734375 163.425781 15.734375 162.152344 Z M 15.734375 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.925781 162.152344 C 29.925781 160.878906 28.894531 159.847656 27.621094 159.847656 C 26.347656 159.847656 25.316406 160.878906 25.316406 162.152344 C 25.316406 163.425781 26.347656 164.457031 27.621094 164.457031 C 28.894531 164.457031 29.925781 163.425781 29.925781 162.152344 Z M 29.925781 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 7.300781 162.152344 C 7.300781 160.878906 6.269531 159.847656 4.996094 159.847656 C 3.722656 159.847656 2.691406 160.878906 2.691406 162.152344 C 2.691406 163.425781 3.722656 164.457031 4.996094 164.457031 C 6.269531 164.457031 7.300781 163.425781 7.300781 162.152344 Z M 7.300781 162.152344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.769531 157.308594 C 45.769531 156.035156 44.738281 155.003906 43.464844 155.003906 C 42.191406 155.003906 41.160156 156.035156 41.160156 157.308594 C 41.160156 158.582031 42.191406 159.613281 43.464844 159.613281 C 44.738281 159.613281 45.769531 158.582031 45.769531 157.308594 Z M 45.769531 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 12.257812 157.308594 C 12.257812 156.035156 11.226562 155.003906 9.953125 155.003906 C 8.679688 155.003906 7.648438 156.035156 7.648438 157.308594 C 7.648438 158.582031 8.679688 159.613281 9.953125 159.613281 C 11.226562 159.613281 12.257812 158.582031 12.257812 157.308594 Z M 12.257812 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.722656 157.308594 C 32.722656 156.035156 31.691406 155.003906 30.417969 155.003906 C 29.144531 155.003906 28.113281 156.035156 28.113281 157.308594 C 28.113281 158.582031 29.144531 159.613281 30.417969 159.613281 C 31.691406 159.613281 32.722656 158.582031 32.722656 157.308594 Z M 32.722656 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 14.203125 157.308594 C 14.203125 156.035156 13.171875 155.003906 11.898438 155.003906 C 10.625 155.003906 9.59375 156.035156 9.59375 157.308594 C 9.59375 158.582031 10.625 159.613281 11.898438 159.613281 C 13.171875 159.613281 14.203125 158.582031 14.203125 157.308594 Z M 14.203125 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.148438 157.308594 C 20.148438 156.035156 19.117188 155.003906 17.84375 155.003906 C 16.570312 155.003906 15.539062 156.035156 15.539062 157.308594 C 15.539062 158.582031 16.570312 159.613281 17.84375 159.613281 C 19.117188 159.613281 20.148438 158.582031 20.148438 157.308594 Z M 20.148438 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.632812 157.308594 C 28.632812 156.035156 27.601562 155.003906 26.328125 155.003906 C 25.054688 155.003906 24.023438 156.035156 24.023438 157.308594 C 24.023438 158.582031 25.054688 159.613281 26.328125 159.613281 C 27.601562 159.613281 28.632812 158.582031 28.632812 157.308594 Z M 28.632812 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.222656 157.308594 C 33.222656 156.035156 32.191406 155.003906 30.917969 155.003906 C 29.644531 155.003906 28.613281 156.035156 28.613281 157.308594 C 28.613281 158.582031 29.644531 159.613281 30.917969 159.613281 C 32.191406 159.613281 33.222656 158.582031 33.222656 157.308594 Z M 33.222656 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 17.945312 157.308594 C 17.945312 156.035156 16.914062 155.003906 15.640625 155.003906 C 14.367188 155.003906 13.335938 156.035156 13.335938 157.308594 C 13.335938 158.582031 14.367188 159.613281 15.640625 159.613281 C 16.914062 159.613281 17.945312 158.582031 17.945312 157.308594 Z M 17.945312 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.511719 157.308594 C 49.511719 156.035156 48.480469 155.003906 47.207031 155.003906 C 45.933594 155.003906 44.902344 156.035156 44.902344 157.308594 C 44.902344 158.582031 45.933594 159.613281 47.207031 159.613281 C 48.480469 159.613281 49.511719 158.582031 49.511719 157.308594 Z M 49.511719 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.597656 157.308594 C 31.597656 156.035156 30.566406 155.003906 29.292969 155.003906 C 28.019531 155.003906 26.988281 156.035156 26.988281 157.308594 C 26.988281 158.582031 28.019531 159.613281 29.292969 159.613281 C 30.566406 159.613281 31.597656 158.582031 31.597656 157.308594 Z M 31.597656 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 9.441406 157.308594 C 9.441406 156.035156 8.410156 155.003906 7.136719 155.003906 C 5.863281 155.003906 4.832031 156.035156 4.832031 157.308594 C 4.832031 158.582031 5.863281 159.613281 7.136719 159.613281 C 8.410156 159.613281 9.441406 158.582031 9.441406 157.308594 Z M 9.441406 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.191406 157.308594 C 31.191406 156.035156 30.160156 155.003906 28.886719 155.003906 C 27.613281 155.003906 26.582031 156.035156 26.582031 157.308594 C 26.582031 158.582031 27.613281 159.613281 28.886719 159.613281 C 30.160156 159.613281 31.191406 158.582031 31.191406 157.308594 Z M 31.191406 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.132812 157.308594 C 45.132812 156.035156 44.101562 155.003906 42.828125 155.003906 C 41.554688 155.003906 40.523438 156.035156 40.523438 157.308594 C 40.523438 158.582031 41.554688 159.613281 42.828125 159.613281 C 44.101562 159.613281 45.132812 158.582031 45.132812 157.308594 Z M 45.132812 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 21.84375 157.308594 C 21.84375 156.035156 20.8125 155.003906 19.539062 155.003906 C 18.265625 155.003906 17.234375 156.035156 17.234375 157.308594 C 17.234375 158.582031 18.265625 159.613281 19.539062 159.613281 C 20.8125 159.613281 21.84375 158.582031 21.84375 157.308594 Z M 21.84375 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.324219 157.308594 C 22.324219 156.035156 21.292969 155.003906 20.019531 155.003906 C 18.746094 155.003906 17.714844 156.035156 17.714844 157.308594 C 17.714844 158.582031 18.746094 159.613281 20.019531 159.613281 C 21.292969 159.613281 22.324219 158.582031 22.324219 157.308594 Z M 22.324219 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.023438 157.308594 C 51.023438 156.035156 49.992188 155.003906 48.71875 155.003906 C 47.445312 155.003906 46.414062 156.035156 46.414062 157.308594 C 46.414062 158.582031 47.445312 159.613281 48.71875 159.613281 C 49.992188 159.613281 51.023438 158.582031 51.023438 157.308594 Z M 51.023438 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.308594 157.308594 C 39.308594 156.035156 38.277344 155.003906 37.003906 155.003906 C 35.730469 155.003906 34.699219 156.035156 34.699219 157.308594 C 34.699219 158.582031 35.730469 159.613281 37.003906 159.613281 C 38.277344 159.613281 39.308594 158.582031 39.308594 157.308594 Z M 39.308594 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.835938 157.308594 C 20.835938 156.035156 19.804688 155.003906 18.53125 155.003906 C 17.257812 155.003906 16.226562 156.035156 16.226562 157.308594 C 16.226562 158.582031 17.257812 159.613281 18.53125 159.613281 C 19.804688 159.613281 20.835938 158.582031 20.835938 157.308594 Z M 20.835938 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.863281 157.308594 C 28.863281 156.035156 27.832031 155.003906 26.558594 155.003906 C 25.285156 155.003906 24.253906 156.035156 24.253906 157.308594 C 24.253906 158.582031 25.285156 159.613281 26.558594 159.613281 C 27.832031 159.613281 28.863281 158.582031 28.863281 157.308594 Z M 28.863281 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.175781 157.308594 C 37.175781 156.035156 36.144531 155.003906 34.871094 155.003906 C 33.597656 155.003906 32.566406 156.035156 32.566406 157.308594 C 32.566406 158.582031 33.597656 159.613281 34.871094 159.613281 C 36.144531 159.613281 37.175781 158.582031 37.175781 157.308594 Z M 37.175781 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 8.996094 157.308594 C 8.996094 156.035156 7.964844 155.003906 6.691406 155.003906 C 5.417969 155.003906 4.386719 156.035156 4.386719 157.308594 C 4.386719 158.582031 5.417969 159.613281 6.691406 159.613281 C 7.964844 159.613281 8.996094 158.582031 8.996094 157.308594 Z M 8.996094 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.527344 157.308594 C 32.527344 156.035156 31.496094 155.003906 30.222656 155.003906 C 28.949219 155.003906 27.917969 156.035156 27.917969 157.308594 C 27.917969 158.582031 28.949219 159.613281 30.222656 159.613281 C 31.496094 159.613281 32.527344 158.582031 32.527344 157.308594 Z M 32.527344 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.859375 157.308594 C 25.859375 156.035156 24.828125 155.003906 23.554688 155.003906 C 22.28125 155.003906 21.25 156.035156 21.25 157.308594 C 21.25 158.582031 22.28125 159.613281 23.554688 159.613281 C 24.828125 159.613281 25.859375 158.582031 25.859375 157.308594 Z M 25.859375 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 13.855469 157.308594 C 13.855469 156.035156 12.824219 155.003906 11.550781 155.003906 C 10.277344 155.003906 9.246094 156.035156 9.246094 157.308594 C 9.246094 158.582031 10.277344 159.613281 11.550781 159.613281 C 12.824219 159.613281 13.855469 158.582031 13.855469 157.308594 Z M 13.855469 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.164062 157.308594 C 47.164062 156.035156 46.132812 155.003906 44.859375 155.003906 C 43.585938 155.003906 42.554688 156.035156 42.554688 157.308594 C 42.554688 158.582031 43.585938 159.613281 44.859375 159.613281 C 46.132812 159.613281 47.164062 158.582031 47.164062 157.308594 Z M 47.164062 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.273438 157.308594 C 38.273438 156.035156 37.242188 155.003906 35.96875 155.003906 C 34.695312 155.003906 33.664062 156.035156 33.664062 157.308594 C 33.664062 158.582031 34.695312 159.613281 35.96875 159.613281 C 37.242188 159.613281 38.273438 158.582031 38.273438 157.308594 Z M 38.273438 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 10.890625 157.308594 C 10.890625 156.035156 9.859375 155.003906 8.585938 155.003906 C 7.3125 155.003906 6.28125 156.035156 6.28125 157.308594 C 6.28125 158.582031 7.3125 159.613281 8.585938 159.613281 C 9.859375 159.613281 10.890625 158.582031 10.890625 157.308594 Z M 10.890625 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 17.644531 157.308594 C 17.644531 156.035156 16.613281 155.003906 15.339844 155.003906 C 14.066406 155.003906 13.035156 156.035156 13.035156 157.308594 C 13.035156 158.582031 14.066406 159.613281 15.339844 159.613281 C 16.613281 159.613281 17.644531 158.582031 17.644531 157.308594 Z M 17.644531 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.988281 157.308594 C 31.988281 156.035156 30.957031 155.003906 29.683594 155.003906 C 28.410156 155.003906 27.378906 156.035156 27.378906 157.308594 C 27.378906 158.582031 28.410156 159.613281 29.683594 159.613281 C 30.957031 159.613281 31.988281 158.582031 31.988281 157.308594 Z M 31.988281 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 9.113281 157.308594 C 9.113281 156.035156 8.082031 155.003906 6.808594 155.003906 C 5.535156 155.003906 4.503906 156.035156 4.503906 157.308594 C 4.503906 158.582031 5.535156 159.613281 6.808594 159.613281 C 8.082031 159.613281 9.113281 158.582031 9.113281 157.308594 Z M 9.113281 157.308594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.066406 152.464844 C 48.066406 151.191406 47.035156 150.160156 45.761719 150.160156 C 44.488281 150.160156 43.457031 151.191406 43.457031 152.464844 C 43.457031 153.738281 44.488281 154.769531 45.761719 154.769531 C 47.035156 154.769531 48.066406 153.738281 48.066406 152.464844 Z M 48.066406 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 14.527344 152.464844 C 14.527344 151.191406 13.496094 150.160156 12.222656 150.160156 C 10.949219 150.160156 9.917969 151.191406 9.917969 152.464844 C 9.917969 153.738281 10.949219 154.769531 12.222656 154.769531 C 13.496094 154.769531 14.527344 153.738281 14.527344 152.464844 Z M 14.527344 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.011719 152.464844 C 35.011719 151.191406 33.980469 150.160156 32.707031 150.160156 C 31.433594 150.160156 30.402344 151.191406 30.402344 152.464844 C 30.402344 153.738281 31.433594 154.769531 32.707031 154.769531 C 33.980469 154.769531 35.011719 153.738281 35.011719 152.464844 Z M 35.011719 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.476562 152.464844 C 16.476562 151.191406 15.445312 150.160156 14.171875 150.160156 C 12.898438 150.160156 11.867188 151.191406 11.867188 152.464844 C 11.867188 153.738281 12.898438 154.769531 14.171875 154.769531 C 15.445312 154.769531 16.476562 153.738281 16.476562 152.464844 Z M 16.476562 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.425781 152.464844 C 22.425781 151.191406 21.394531 150.160156 20.121094 150.160156 C 18.847656 150.160156 17.816406 151.191406 17.816406 152.464844 C 17.816406 153.738281 18.847656 154.769531 20.121094 154.769531 C 21.394531 154.769531 22.425781 153.738281 22.425781 152.464844 Z M 22.425781 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.917969 152.464844 C 30.917969 151.191406 29.886719 150.160156 28.613281 150.160156 C 27.339844 150.160156 26.308594 151.191406 26.308594 152.464844 C 26.308594 153.738281 27.339844 154.769531 28.613281 154.769531 C 29.886719 154.769531 30.917969 153.738281 30.917969 152.464844 Z M 30.917969 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.507812 152.464844 C 35.507812 151.191406 34.476562 150.160156 33.203125 150.160156 C 31.929688 150.160156 30.898438 151.191406 30.898438 152.464844 C 30.898438 153.738281 31.929688 154.769531 33.203125 154.769531 C 34.476562 154.769531 35.507812 153.738281 35.507812 152.464844 Z M 35.507812 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.222656 152.464844 C 20.222656 151.191406 19.191406 150.160156 17.917969 150.160156 C 16.644531 150.160156 15.613281 151.191406 15.613281 152.464844 C 15.613281 153.738281 16.644531 154.769531 17.917969 154.769531 C 19.191406 154.769531 20.222656 153.738281 20.222656 152.464844 Z M 20.222656 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.816406 152.464844 C 51.816406 151.191406 50.785156 150.160156 49.511719 150.160156 C 48.238281 150.160156 47.207031 151.191406 47.207031 152.464844 C 47.207031 153.738281 48.238281 154.769531 49.511719 154.769531 C 50.785156 154.769531 51.816406 153.738281 51.816406 152.464844 Z M 51.816406 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.886719 152.464844 C 33.886719 151.191406 32.855469 150.160156 31.582031 150.160156 C 30.308594 150.160156 29.277344 151.191406 29.277344 152.464844 C 29.277344 153.738281 30.308594 154.769531 31.582031 154.769531 C 32.855469 154.769531 33.886719 153.738281 33.886719 152.464844 Z M 33.886719 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 11.710938 152.464844 C 11.710938 151.191406 10.679688 150.160156 9.40625 150.160156 C 8.132812 150.160156 7.101562 151.191406 7.101562 152.464844 C 7.101562 153.738281 8.132812 154.769531 9.40625 154.769531 C 10.679688 154.769531 11.710938 153.738281 11.710938 152.464844 Z M 11.710938 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.476562 152.464844 C 33.476562 151.191406 32.445312 150.160156 31.171875 150.160156 C 29.898438 150.160156 28.867188 151.191406 28.867188 152.464844 C 28.867188 153.738281 29.898438 154.769531 31.171875 154.769531 C 32.445312 154.769531 33.476562 153.738281 33.476562 152.464844 Z M 33.476562 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.433594 152.464844 C 47.433594 151.191406 46.402344 150.160156 45.128906 150.160156 C 43.855469 150.160156 42.824219 151.191406 42.824219 152.464844 C 42.824219 153.738281 43.855469 154.769531 45.128906 154.769531 C 46.402344 154.769531 47.433594 153.738281 47.433594 152.464844 Z M 47.433594 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.125 152.464844 C 24.125 151.191406 23.09375 150.160156 21.820312 150.160156 C 20.546875 150.160156 19.515625 151.191406 19.515625 152.464844 C 19.515625 153.738281 20.546875 154.769531 21.820312 154.769531 C 23.09375 154.769531 24.125 153.738281 24.125 152.464844 Z M 24.125 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.601562 152.464844 C 24.601562 151.191406 23.570312 150.160156 22.296875 150.160156 C 21.023438 150.160156 19.992188 151.191406 19.992188 152.464844 C 19.992188 153.738281 21.023438 154.769531 22.296875 154.769531 C 23.570312 154.769531 24.601562 153.738281 24.601562 152.464844 Z M 24.601562 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.324219 152.464844 C 53.324219 151.191406 52.292969 150.160156 51.019531 150.160156 C 49.746094 150.160156 48.714844 151.191406 48.714844 152.464844 C 48.714844 153.738281 49.746094 154.769531 51.019531 154.769531 C 52.292969 154.769531 53.324219 153.738281 53.324219 152.464844 Z M 53.324219 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.601562 152.464844 C 41.601562 151.191406 40.570312 150.160156 39.296875 150.160156 C 38.023438 150.160156 36.992188 151.191406 36.992188 152.464844 C 36.992188 153.738281 38.023438 154.769531 39.296875 154.769531 C 40.570312 154.769531 41.601562 153.738281 41.601562 152.464844 Z M 41.601562 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.117188 152.464844 C 23.117188 151.191406 22.085938 150.160156 20.8125 150.160156 C 19.539062 150.160156 18.507812 151.191406 18.507812 152.464844 C 18.507812 153.738281 19.539062 154.769531 20.8125 154.769531 C 22.085938 154.769531 23.117188 153.738281 23.117188 152.464844 Z M 23.117188 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.148438 152.464844 C 31.148438 151.191406 30.117188 150.160156 28.84375 150.160156 C 27.570312 150.160156 26.539062 151.191406 26.539062 152.464844 C 26.539062 153.738281 27.570312 154.769531 28.84375 154.769531 C 30.117188 154.769531 31.148438 153.738281 31.148438 152.464844 Z M 31.148438 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.46875 152.464844 C 39.46875 151.191406 38.4375 150.160156 37.164062 150.160156 C 35.890625 150.160156 34.859375 151.191406 34.859375 152.464844 C 34.859375 153.738281 35.890625 154.769531 37.164062 154.769531 C 38.4375 154.769531 39.46875 153.738281 39.46875 152.464844 Z M 39.46875 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 11.261719 152.464844 C 11.261719 151.191406 10.230469 150.160156 8.957031 150.160156 C 7.683594 150.160156 6.652344 151.191406 6.652344 152.464844 C 6.652344 153.738281 7.683594 154.769531 8.957031 154.769531 C 10.230469 154.769531 11.261719 153.738281 11.261719 152.464844 Z M 11.261719 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.816406 152.464844 C 34.816406 151.191406 33.785156 150.160156 32.511719 150.160156 C 31.238281 150.160156 30.207031 151.191406 30.207031 152.464844 C 30.207031 153.738281 31.238281 154.769531 32.511719 154.769531 C 33.785156 154.769531 34.816406 153.738281 34.816406 152.464844 Z M 34.816406 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.140625 152.464844 C 28.140625 151.191406 27.109375 150.160156 25.835938 150.160156 C 24.5625 150.160156 23.53125 151.191406 23.53125 152.464844 C 23.53125 153.738281 24.5625 154.769531 25.835938 154.769531 C 27.109375 154.769531 28.140625 153.738281 28.140625 152.464844 Z M 28.140625 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.128906 152.464844 C 16.128906 151.191406 15.097656 150.160156 13.824219 150.160156 C 12.550781 150.160156 11.519531 151.191406 11.519531 152.464844 C 11.519531 153.738281 12.550781 154.769531 13.824219 154.769531 C 15.097656 154.769531 16.128906 153.738281 16.128906 152.464844 Z M 16.128906 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.464844 152.464844 C 49.464844 151.191406 48.433594 150.160156 47.160156 150.160156 C 45.886719 150.160156 44.855469 151.191406 44.855469 152.464844 C 44.855469 153.738281 45.886719 154.769531 47.160156 154.769531 C 48.433594 154.769531 49.464844 153.738281 49.464844 152.464844 Z M 49.464844 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.566406 152.464844 C 40.566406 151.191406 39.535156 150.160156 38.261719 150.160156 C 36.988281 150.160156 35.957031 151.191406 35.957031 152.464844 C 35.957031 153.738281 36.988281 154.769531 38.261719 154.769531 C 39.535156 154.769531 40.566406 153.738281 40.566406 152.464844 Z M 40.566406 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 13.160156 152.464844 C 13.160156 151.191406 12.128906 150.160156 10.855469 150.160156 C 9.582031 150.160156 8.550781 151.191406 8.550781 152.464844 C 8.550781 153.738281 9.582031 154.769531 10.855469 154.769531 C 12.128906 154.769531 13.160156 153.738281 13.160156 152.464844 Z M 13.160156 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.917969 152.464844 C 19.917969 151.191406 18.886719 150.160156 17.613281 150.160156 C 16.339844 150.160156 15.308594 151.191406 15.308594 152.464844 C 15.308594 153.738281 16.339844 154.769531 17.613281 154.769531 C 18.886719 154.769531 19.917969 153.738281 19.917969 152.464844 Z M 19.917969 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.277344 152.464844 C 34.277344 151.191406 33.246094 150.160156 31.972656 150.160156 C 30.699219 150.160156 29.667969 151.191406 29.667969 152.464844 C 29.667969 153.738281 30.699219 154.769531 31.972656 154.769531 C 33.246094 154.769531 34.277344 153.738281 34.277344 152.464844 Z M 34.277344 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 11.382812 152.464844 C 11.382812 151.191406 10.351562 150.160156 9.078125 150.160156 C 7.804688 150.160156 6.773438 151.191406 6.773438 152.464844 C 6.773438 153.738281 7.804688 154.769531 9.078125 154.769531 C 10.351562 154.769531 11.382812 153.738281 11.382812 152.464844 Z M 11.382812 152.464844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.429688 147.621094 C 50.429688 146.347656 49.398438 145.316406 48.125 145.316406 C 46.851562 145.316406 45.820312 146.347656 45.820312 147.621094 C 45.820312 148.894531 46.851562 149.925781 48.125 149.925781 C 49.398438 149.925781 50.429688 148.894531 50.429688 147.621094 Z M 50.429688 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 17.199219 147.621094 C 17.199219 146.347656 16.167969 145.316406 14.894531 145.316406 C 13.621094 145.316406 12.589844 146.347656 12.589844 147.621094 C 12.589844 148.894531 13.621094 149.925781 14.894531 149.925781 C 16.167969 149.925781 17.199219 148.894531 17.199219 147.621094 Z M 17.199219 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.496094 147.621094 C 37.496094 146.347656 36.464844 145.316406 35.191406 145.316406 C 33.917969 145.316406 32.886719 146.347656 32.886719 147.621094 C 32.886719 148.894531 33.917969 149.925781 35.191406 149.925781 C 36.464844 149.925781 37.496094 148.894531 37.496094 147.621094 Z M 37.496094 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.128906 147.621094 C 19.128906 146.347656 18.097656 145.316406 16.824219 145.316406 C 15.550781 145.316406 14.519531 146.347656 14.519531 147.621094 C 14.519531 148.894531 15.550781 149.925781 16.824219 149.925781 C 18.097656 149.925781 19.128906 148.894531 19.128906 147.621094 Z M 19.128906 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.023438 147.621094 C 25.023438 146.347656 23.992188 145.316406 22.71875 145.316406 C 21.445312 145.316406 20.414062 146.347656 20.414062 147.621094 C 20.414062 148.894531 21.445312 149.925781 22.71875 149.925781 C 23.992188 149.925781 25.023438 148.894531 25.023438 147.621094 Z M 25.023438 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.4375 147.621094 C 33.4375 146.347656 32.40625 145.316406 31.132812 145.316406 C 29.859375 145.316406 28.828125 146.347656 28.828125 147.621094 C 28.828125 148.894531 29.859375 149.925781 31.132812 149.925781 C 32.40625 149.925781 33.4375 148.894531 33.4375 147.621094 Z M 33.4375 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.988281 147.621094 C 37.988281 146.347656 36.957031 145.316406 35.683594 145.316406 C 34.410156 145.316406 33.378906 146.347656 33.378906 147.621094 C 33.378906 148.894531 34.410156 149.925781 35.683594 149.925781 C 36.957031 149.925781 37.988281 148.894531 37.988281 147.621094 Z M 37.988281 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.839844 147.621094 C 22.839844 146.347656 21.808594 145.316406 20.535156 145.316406 C 19.261719 145.316406 18.230469 146.347656 18.230469 147.621094 C 18.230469 148.894531 19.261719 149.925781 20.535156 149.925781 C 21.808594 149.925781 22.839844 148.894531 22.839844 147.621094 Z M 22.839844 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.144531 147.621094 C 54.144531 146.347656 53.113281 145.316406 51.839844 145.316406 C 50.566406 145.316406 49.535156 146.347656 49.535156 147.621094 C 49.535156 148.894531 50.566406 149.925781 51.839844 149.925781 C 53.113281 149.925781 54.144531 148.894531 54.144531 147.621094 Z M 54.144531 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.378906 147.621094 C 36.378906 146.347656 35.347656 145.316406 34.074219 145.316406 C 32.800781 145.316406 31.769531 146.347656 31.769531 147.621094 C 31.769531 148.894531 32.800781 149.925781 34.074219 149.925781 C 35.347656 149.925781 36.378906 148.894531 36.378906 147.621094 Z M 36.378906 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 14.40625 147.621094 C 14.40625 146.347656 13.375 145.316406 12.101562 145.316406 C 10.828125 145.316406 9.796875 146.347656 9.796875 147.621094 C 9.796875 148.894531 10.828125 149.925781 12.101562 149.925781 C 13.375 149.925781 14.40625 148.894531 14.40625 147.621094 Z M 14.40625 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.972656 147.621094 C 35.972656 146.347656 34.941406 145.316406 33.667969 145.316406 C 32.394531 145.316406 31.363281 146.347656 31.363281 147.621094 C 31.363281 148.894531 32.394531 149.925781 33.667969 149.925781 C 34.941406 149.925781 35.972656 148.894531 35.972656 147.621094 Z M 35.972656 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.800781 147.621094 C 49.800781 146.347656 48.769531 145.316406 47.496094 145.316406 C 46.222656 145.316406 45.191406 146.347656 45.191406 147.621094 C 45.191406 148.894531 46.222656 149.925781 47.496094 149.925781 C 48.769531 149.925781 49.800781 148.894531 49.800781 147.621094 Z M 49.800781 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.707031 147.621094 C 26.707031 146.347656 25.675781 145.316406 24.402344 145.316406 C 23.128906 145.316406 22.097656 146.347656 22.097656 147.621094 C 22.097656 148.894531 23.128906 149.925781 24.402344 149.925781 C 25.675781 149.925781 26.707031 148.894531 26.707031 147.621094 Z M 26.707031 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.179688 147.621094 C 27.179688 146.347656 26.148438 145.316406 24.875 145.316406 C 23.601562 145.316406 22.570312 146.347656 22.570312 147.621094 C 22.570312 148.894531 23.601562 149.925781 24.875 149.925781 C 26.148438 149.925781 27.179688 148.894531 27.179688 147.621094 Z M 27.179688 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.640625 147.621094 C 55.640625 146.347656 54.609375 145.316406 53.335938 145.316406 C 52.0625 145.316406 51.03125 146.347656 51.03125 147.621094 C 51.03125 148.894531 52.0625 149.925781 53.335938 149.925781 C 54.609375 149.925781 55.640625 148.894531 55.640625 147.621094 Z M 55.640625 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.023438 147.621094 C 44.023438 146.347656 42.992188 145.316406 41.71875 145.316406 C 40.445312 145.316406 39.414062 146.347656 39.414062 147.621094 C 39.414062 148.894531 40.445312 149.925781 41.71875 149.925781 C 42.992188 149.925781 44.023438 148.894531 44.023438 147.621094 Z M 44.023438 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.707031 147.621094 C 25.707031 146.347656 24.675781 145.316406 23.402344 145.316406 C 22.128906 145.316406 21.097656 146.347656 21.097656 147.621094 C 21.097656 148.894531 22.128906 149.925781 23.402344 149.925781 C 24.675781 149.925781 25.707031 148.894531 25.707031 147.621094 Z M 25.707031 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.664062 147.621094 C 33.664062 146.347656 32.632812 145.316406 31.359375 145.316406 C 30.085938 145.316406 29.054688 146.347656 29.054688 147.621094 C 29.054688 148.894531 30.085938 149.925781 31.359375 149.925781 C 32.632812 149.925781 33.664062 148.894531 33.664062 147.621094 Z M 33.664062 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.910156 147.621094 C 41.910156 146.347656 40.878906 145.316406 39.605469 145.316406 C 38.332031 145.316406 37.300781 146.347656 37.300781 147.621094 C 37.300781 148.894531 38.332031 149.925781 39.605469 149.925781 C 40.878906 149.925781 41.910156 148.894531 41.910156 147.621094 Z M 41.910156 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 13.964844 147.621094 C 13.964844 146.347656 12.933594 145.316406 11.660156 145.316406 C 10.386719 145.316406 9.355469 146.347656 9.355469 147.621094 C 9.355469 148.894531 10.386719 149.925781 11.660156 149.925781 C 12.933594 149.925781 13.964844 148.894531 13.964844 147.621094 Z M 13.964844 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.300781 147.621094 C 37.300781 146.347656 36.269531 145.316406 34.996094 145.316406 C 33.722656 145.316406 32.691406 146.347656 32.691406 147.621094 C 32.691406 148.894531 33.722656 149.925781 34.996094 149.925781 C 36.269531 149.925781 37.300781 148.894531 37.300781 147.621094 Z M 37.300781 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.6875 147.621094 C 30.6875 146.347656 29.65625 145.316406 28.382812 145.316406 C 27.109375 145.316406 26.078125 146.347656 26.078125 147.621094 C 26.078125 148.894531 27.109375 149.925781 28.382812 149.925781 C 29.65625 149.925781 30.6875 148.894531 30.6875 147.621094 Z M 30.6875 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 18.785156 147.621094 C 18.785156 146.347656 17.753906 145.316406 16.480469 145.316406 C 15.207031 145.316406 14.175781 146.347656 14.175781 147.621094 C 14.175781 148.894531 15.207031 149.925781 16.480469 149.925781 C 17.753906 149.925781 18.785156 148.894531 18.785156 147.621094 Z M 18.785156 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.816406 147.621094 C 51.816406 146.347656 50.785156 145.316406 49.511719 145.316406 C 48.238281 145.316406 47.207031 146.347656 47.207031 147.621094 C 47.207031 148.894531 48.238281 149.925781 49.511719 149.925781 C 50.785156 149.925781 51.816406 148.894531 51.816406 147.621094 Z M 51.816406 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43 147.621094 C 43 146.347656 41.96875 145.316406 40.695312 145.316406 C 39.421875 145.316406 38.390625 146.347656 38.390625 147.621094 C 38.390625 148.894531 39.421875 149.925781 40.695312 149.925781 C 41.96875 149.925781 43 148.894531 43 147.621094 Z M 43 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.84375 147.621094 C 15.84375 146.347656 14.8125 145.316406 13.539062 145.316406 C 12.265625 145.316406 11.234375 146.347656 11.234375 147.621094 C 11.234375 148.894531 12.265625 149.925781 13.539062 149.925781 C 14.8125 149.925781 15.84375 148.894531 15.84375 147.621094 Z M 15.84375 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.539062 147.621094 C 22.539062 146.347656 21.507812 145.316406 20.234375 145.316406 C 18.960938 145.316406 17.929688 146.347656 17.929688 147.621094 C 17.929688 148.894531 18.960938 149.925781 20.234375 149.925781 C 21.507812 149.925781 22.539062 148.894531 22.539062 147.621094 Z M 22.539062 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.765625 147.621094 C 36.765625 146.347656 35.734375 145.316406 34.460938 145.316406 C 33.1875 145.316406 32.15625 146.347656 32.15625 147.621094 C 32.15625 148.894531 33.1875 149.925781 34.460938 149.925781 C 35.734375 149.925781 36.765625 148.894531 36.765625 147.621094 Z M 36.765625 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 14.082031 147.621094 C 14.082031 146.347656 13.050781 145.316406 11.777344 145.316406 C 10.503906 145.316406 9.472656 146.347656 9.472656 147.621094 C 9.472656 148.894531 10.503906 149.925781 11.777344 149.925781 C 13.050781 149.925781 14.082031 148.894531 14.082031 147.621094 Z M 14.082031 147.621094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.835938 142.777344 C 52.835938 141.503906 51.804688 140.472656 50.53125 140.472656 C 49.257812 140.472656 48.226562 141.503906 48.226562 142.777344 C 48.226562 144.050781 49.257812 145.082031 50.53125 145.082031 C 51.804688 145.082031 52.835938 144.050781 52.835938 142.777344 Z M 52.835938 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.242188 142.777344 C 20.242188 141.503906 19.210938 140.472656 17.9375 140.472656 C 16.664062 140.472656 15.632812 141.503906 15.632812 142.777344 C 15.632812 144.050781 16.664062 145.082031 17.9375 145.082031 C 19.210938 145.082031 20.242188 144.050781 20.242188 142.777344 Z M 20.242188 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.148438 142.777344 C 40.148438 141.503906 39.117188 140.472656 37.84375 140.472656 C 36.570312 140.472656 35.539062 141.503906 35.539062 142.777344 C 35.539062 144.050781 36.570312 145.082031 37.84375 145.082031 C 39.117188 145.082031 40.148438 144.050781 40.148438 142.777344 Z M 40.148438 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.136719 142.777344 C 22.136719 141.503906 21.105469 140.472656 19.832031 140.472656 C 18.558594 140.472656 17.527344 141.503906 17.527344 142.777344 C 17.527344 144.050781 18.558594 145.082031 19.832031 145.082031 C 21.105469 145.082031 22.136719 144.050781 22.136719 142.777344 Z M 22.136719 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.917969 142.777344 C 27.917969 141.503906 26.886719 140.472656 25.613281 140.472656 C 24.339844 140.472656 23.308594 141.503906 23.308594 142.777344 C 23.308594 144.050781 24.339844 145.082031 25.613281 145.082031 C 26.886719 145.082031 27.917969 144.050781 27.917969 142.777344 Z M 27.917969 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.167969 142.777344 C 36.167969 141.503906 35.136719 140.472656 33.863281 140.472656 C 32.589844 140.472656 31.558594 141.503906 31.558594 142.777344 C 31.558594 144.050781 32.589844 145.082031 33.863281 145.082031 C 35.136719 145.082031 36.167969 144.050781 36.167969 142.777344 Z M 36.167969 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.632812 142.777344 C 40.632812 141.503906 39.601562 140.472656 38.328125 140.472656 C 37.054688 140.472656 36.023438 141.503906 36.023438 142.777344 C 36.023438 144.050781 37.054688 145.082031 38.328125 145.082031 C 39.601562 145.082031 40.632812 144.050781 40.632812 142.777344 Z M 40.632812 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.773438 142.777344 C 25.773438 141.503906 24.742188 140.472656 23.46875 140.472656 C 22.195312 140.472656 21.164062 141.503906 21.164062 142.777344 C 21.164062 144.050781 22.195312 145.082031 23.46875 145.082031 C 24.742188 145.082031 25.773438 144.050781 25.773438 142.777344 Z M 25.773438 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.476562 142.777344 C 56.476562 141.503906 55.445312 140.472656 54.171875 140.472656 C 52.898438 140.472656 51.867188 141.503906 51.867188 142.777344 C 51.867188 144.050781 52.898438 145.082031 54.171875 145.082031 C 55.445312 145.082031 56.476562 144.050781 56.476562 142.777344 Z M 56.476562 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.054688 142.777344 C 39.054688 141.503906 38.023438 140.472656 36.75 140.472656 C 35.476562 140.472656 34.445312 141.503906 34.445312 142.777344 C 34.445312 144.050781 35.476562 145.082031 36.75 145.082031 C 38.023438 145.082031 39.054688 144.050781 39.054688 142.777344 Z M 39.054688 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 17.503906 142.777344 C 17.503906 141.503906 16.472656 140.472656 15.199219 140.472656 C 13.925781 140.472656 12.894531 141.503906 12.894531 142.777344 C 12.894531 144.050781 13.925781 145.082031 15.199219 145.082031 C 16.472656 145.082031 17.503906 144.050781 17.503906 142.777344 Z M 17.503906 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.65625 142.777344 C 38.65625 141.503906 37.625 140.472656 36.351562 140.472656 C 35.078125 140.472656 34.046875 141.503906 34.046875 142.777344 C 34.046875 144.050781 35.078125 145.082031 36.351562 145.082031 C 37.625 145.082031 38.65625 144.050781 38.65625 142.777344 Z M 38.65625 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.21875 142.777344 C 52.21875 141.503906 51.1875 140.472656 49.914062 140.472656 C 48.640625 140.472656 47.609375 141.503906 47.609375 142.777344 C 47.609375 144.050781 48.640625 145.082031 49.914062 145.082031 C 51.1875 145.082031 52.21875 144.050781 52.21875 142.777344 Z M 52.21875 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.566406 142.777344 C 29.566406 141.503906 28.535156 140.472656 27.261719 140.472656 C 25.988281 140.472656 24.957031 141.503906 24.957031 142.777344 C 24.957031 144.050781 25.988281 145.082031 27.261719 145.082031 C 28.535156 145.082031 29.566406 144.050781 29.566406 142.777344 Z M 29.566406 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.03125 142.777344 C 30.03125 141.503906 29 140.472656 27.726562 140.472656 C 26.453125 140.472656 25.421875 141.503906 25.421875 142.777344 C 25.421875 144.050781 26.453125 145.082031 27.726562 145.082031 C 29 145.082031 30.03125 144.050781 30.03125 142.777344 Z M 30.03125 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.945312 142.777344 C 57.945312 141.503906 56.914062 140.472656 55.640625 140.472656 C 54.367188 140.472656 53.335938 141.503906 53.335938 142.777344 C 53.335938 144.050781 54.367188 145.082031 55.640625 145.082031 C 56.914062 145.082031 57.945312 144.050781 57.945312 142.777344 Z M 57.945312 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.550781 142.777344 C 46.550781 141.503906 45.519531 140.472656 44.246094 140.472656 C 42.972656 140.472656 41.941406 141.503906 41.941406 142.777344 C 41.941406 144.050781 42.972656 145.082031 44.246094 145.082031 C 45.519531 145.082031 46.550781 144.050781 46.550781 142.777344 Z M 46.550781 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.585938 142.777344 C 28.585938 141.503906 27.554688 140.472656 26.28125 140.472656 C 25.007812 140.472656 23.976562 141.503906 23.976562 142.777344 C 23.976562 144.050781 25.007812 145.082031 26.28125 145.082031 C 27.554688 145.082031 28.585938 144.050781 28.585938 142.777344 Z M 28.585938 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.390625 142.777344 C 36.390625 141.503906 35.359375 140.472656 34.085938 140.472656 C 32.8125 140.472656 31.78125 141.503906 31.78125 142.777344 C 31.78125 144.050781 32.8125 145.082031 34.085938 145.082031 C 35.359375 145.082031 36.390625 144.050781 36.390625 142.777344 Z M 36.390625 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.476562 142.777344 C 44.476562 141.503906 43.445312 140.472656 42.171875 140.472656 C 40.898438 140.472656 39.867188 141.503906 39.867188 142.777344 C 39.867188 144.050781 40.898438 145.082031 42.171875 145.082031 C 43.445312 145.082031 44.476562 144.050781 44.476562 142.777344 Z M 44.476562 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 17.070312 142.777344 C 17.070312 141.503906 16.039062 140.472656 14.765625 140.472656 C 13.492188 140.472656 12.460938 141.503906 12.460938 142.777344 C 12.460938 144.050781 13.492188 145.082031 14.765625 145.082031 C 16.039062 145.082031 17.070312 144.050781 17.070312 142.777344 Z M 17.070312 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.957031 142.777344 C 39.957031 141.503906 38.925781 140.472656 37.652344 140.472656 C 36.378906 140.472656 35.347656 141.503906 35.347656 142.777344 C 35.347656 144.050781 36.378906 145.082031 37.652344 145.082031 C 38.925781 145.082031 39.957031 144.050781 39.957031 142.777344 Z M 39.957031 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.46875 142.777344 C 33.46875 141.503906 32.4375 140.472656 31.164062 140.472656 C 29.890625 140.472656 28.859375 141.503906 28.859375 142.777344 C 28.859375 144.050781 29.890625 145.082031 31.164062 145.082031 C 32.4375 145.082031 33.46875 144.050781 33.46875 142.777344 Z M 33.46875 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 21.796875 142.777344 C 21.796875 141.503906 20.765625 140.472656 19.492188 140.472656 C 18.21875 140.472656 17.1875 141.503906 17.1875 142.777344 C 17.1875 144.050781 18.21875 145.082031 19.492188 145.082031 C 20.765625 145.082031 21.796875 144.050781 21.796875 142.777344 Z M 21.796875 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.191406 142.777344 C 54.191406 141.503906 53.160156 140.472656 51.886719 140.472656 C 50.613281 140.472656 49.582031 141.503906 49.582031 142.777344 C 49.582031 144.050781 50.613281 145.082031 51.886719 145.082031 C 53.160156 145.082031 54.191406 144.050781 54.191406 142.777344 Z M 54.191406 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.546875 142.777344 C 45.546875 141.503906 44.515625 140.472656 43.242188 140.472656 C 41.96875 140.472656 40.9375 141.503906 40.9375 142.777344 C 40.9375 144.050781 41.96875 145.082031 43.242188 145.082031 C 44.515625 145.082031 45.546875 144.050781 45.546875 142.777344 Z M 45.546875 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 18.914062 142.777344 C 18.914062 141.503906 17.882812 140.472656 16.609375 140.472656 C 15.335938 140.472656 14.304688 141.503906 14.304688 142.777344 C 14.304688 144.050781 15.335938 145.082031 16.609375 145.082031 C 17.882812 145.082031 18.914062 144.050781 18.914062 142.777344 Z M 18.914062 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.480469 142.777344 C 25.480469 141.503906 24.449219 140.472656 23.175781 140.472656 C 21.902344 140.472656 20.871094 141.503906 20.871094 142.777344 C 20.871094 144.050781 21.902344 145.082031 23.175781 145.082031 C 24.449219 145.082031 25.480469 144.050781 25.480469 142.777344 Z M 25.480469 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.433594 142.777344 C 39.433594 141.503906 38.402344 140.472656 37.128906 140.472656 C 35.855469 140.472656 34.824219 141.503906 34.824219 142.777344 C 34.824219 144.050781 35.855469 145.082031 37.128906 145.082031 C 38.402344 145.082031 39.433594 144.050781 39.433594 142.777344 Z M 39.433594 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 17.183594 142.777344 C 17.183594 141.503906 16.152344 140.472656 14.878906 140.472656 C 13.605469 140.472656 12.574219 141.503906 12.574219 142.777344 C 12.574219 144.050781 13.605469 145.082031 14.878906 145.082031 C 16.152344 145.082031 17.183594 144.050781 17.183594 142.777344 Z M 17.183594 142.777344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.253906 137.933594 C 55.253906 136.660156 54.222656 135.628906 52.949219 135.628906 C 51.675781 135.628906 50.644531 136.660156 50.644531 137.933594 C 50.644531 139.207031 51.675781 140.238281 52.949219 140.238281 C 54.222656 140.238281 55.253906 139.207031 55.253906 137.933594 Z M 55.253906 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.625 137.933594 C 23.625 136.660156 22.59375 135.628906 21.320312 135.628906 C 20.046875 135.628906 19.015625 136.660156 19.015625 137.933594 C 19.015625 139.207031 20.046875 140.238281 21.320312 140.238281 C 22.59375 140.238281 23.625 139.207031 23.625 137.933594 Z M 23.625 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.941406 137.933594 C 42.941406 136.660156 41.910156 135.628906 40.636719 135.628906 C 39.363281 135.628906 38.332031 136.660156 38.332031 137.933594 C 38.332031 139.207031 39.363281 140.238281 40.636719 140.238281 C 41.910156 140.238281 42.941406 139.207031 42.941406 137.933594 Z M 42.941406 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.464844 137.933594 C 25.464844 136.660156 24.433594 135.628906 23.160156 135.628906 C 21.886719 135.628906 20.855469 136.660156 20.855469 137.933594 C 20.855469 139.207031 21.886719 140.238281 23.160156 140.238281 C 24.433594 140.238281 25.464844 139.207031 25.464844 137.933594 Z M 25.464844 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.074219 137.933594 C 31.074219 136.660156 30.042969 135.628906 28.769531 135.628906 C 27.496094 135.628906 26.464844 136.660156 26.464844 137.933594 C 26.464844 139.207031 27.496094 140.238281 28.769531 140.238281 C 30.042969 140.238281 31.074219 139.207031 31.074219 137.933594 Z M 31.074219 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.082031 137.933594 C 39.082031 136.660156 38.050781 135.628906 36.777344 135.628906 C 35.503906 135.628906 34.472656 136.660156 34.472656 137.933594 C 34.472656 139.207031 35.503906 140.238281 36.777344 140.238281 C 38.050781 140.238281 39.082031 139.207031 39.082031 137.933594 Z M 39.082031 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.414062 137.933594 C 43.414062 136.660156 42.382812 135.628906 41.109375 135.628906 C 39.835938 135.628906 38.804688 136.660156 38.804688 137.933594 C 38.804688 139.207031 39.835938 140.238281 41.109375 140.238281 C 42.382812 140.238281 43.414062 139.207031 43.414062 137.933594 Z M 43.414062 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.996094 137.933594 C 28.996094 136.660156 27.964844 135.628906 26.691406 135.628906 C 25.417969 135.628906 24.386719 136.660156 24.386719 137.933594 C 24.386719 139.207031 25.417969 140.238281 26.691406 140.238281 C 27.964844 140.238281 28.996094 139.207031 28.996094 137.933594 Z M 28.996094 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.789062 137.933594 C 58.789062 136.660156 57.757812 135.628906 56.484375 135.628906 C 55.210938 135.628906 54.179688 136.660156 54.179688 137.933594 C 54.179688 139.207031 55.210938 140.238281 56.484375 140.238281 C 57.757812 140.238281 58.789062 139.207031 58.789062 137.933594 Z M 58.789062 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.882812 137.933594 C 41.882812 136.660156 40.851562 135.628906 39.578125 135.628906 C 38.304688 135.628906 37.273438 136.660156 37.273438 137.933594 C 37.273438 139.207031 38.304688 140.238281 39.578125 140.238281 C 40.851562 140.238281 41.882812 139.207031 41.882812 137.933594 Z M 41.882812 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.96875 137.933594 C 20.96875 136.660156 19.9375 135.628906 18.664062 135.628906 C 17.390625 135.628906 16.359375 136.660156 16.359375 137.933594 C 16.359375 139.207031 17.390625 140.238281 18.664062 140.238281 C 19.9375 140.238281 20.96875 139.207031 20.96875 137.933594 Z M 20.96875 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.496094 137.933594 C 41.496094 136.660156 40.464844 135.628906 39.191406 135.628906 C 37.917969 135.628906 36.886719 136.660156 36.886719 137.933594 C 36.886719 139.207031 37.917969 140.238281 39.191406 140.238281 C 40.464844 140.238281 41.496094 139.207031 41.496094 137.933594 Z M 41.496094 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.316406 137.933594 C 71.316406 136.660156 70.285156 135.628906 69.011719 135.628906 C 67.738281 135.628906 66.707031 136.660156 66.707031 137.933594 C 66.707031 139.207031 67.738281 140.238281 69.011719 140.238281 C 70.285156 140.238281 71.316406 139.207031 71.316406 137.933594 Z M 71.316406 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.675781 137.933594 C 32.675781 136.660156 31.644531 135.628906 30.371094 135.628906 C 29.097656 135.628906 28.066406 136.660156 28.066406 137.933594 C 28.066406 139.207031 29.097656 140.238281 30.371094 140.238281 C 31.644531 140.238281 32.675781 139.207031 32.675781 137.933594 Z M 32.675781 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.128906 137.933594 C 33.128906 136.660156 32.097656 135.628906 30.824219 135.628906 C 29.550781 135.628906 28.519531 136.660156 28.519531 137.933594 C 28.519531 139.207031 29.550781 140.238281 30.824219 140.238281 C 32.097656 140.238281 33.128906 139.207031 33.128906 137.933594 Z M 33.128906 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.214844 137.933594 C 60.214844 136.660156 59.183594 135.628906 57.910156 135.628906 C 56.636719 135.628906 55.605469 136.660156 55.605469 137.933594 C 55.605469 139.207031 56.636719 140.238281 57.910156 140.238281 C 59.183594 140.238281 60.214844 139.207031 60.214844 137.933594 Z M 60.214844 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.15625 137.933594 C 49.15625 136.660156 48.125 135.628906 46.851562 135.628906 C 45.578125 135.628906 44.546875 136.660156 44.546875 137.933594 C 44.546875 139.207031 45.578125 140.238281 46.851562 140.238281 C 48.125 140.238281 49.15625 139.207031 49.15625 137.933594 Z M 49.15625 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.726562 137.933594 C 31.726562 136.660156 30.695312 135.628906 29.421875 135.628906 C 28.148438 135.628906 27.117188 136.660156 27.117188 137.933594 C 27.117188 139.207031 28.148438 140.238281 29.421875 140.238281 C 30.695312 140.238281 31.726562 139.207031 31.726562 137.933594 Z M 31.726562 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.300781 137.933594 C 39.300781 136.660156 38.269531 135.628906 36.996094 135.628906 C 35.722656 135.628906 34.691406 136.660156 34.691406 137.933594 C 34.691406 139.207031 35.722656 140.238281 36.996094 140.238281 C 38.269531 140.238281 39.300781 139.207031 39.300781 137.933594 Z M 39.300781 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.144531 137.933594 C 47.144531 136.660156 46.113281 135.628906 44.839844 135.628906 C 43.566406 135.628906 42.535156 136.660156 42.535156 137.933594 C 42.535156 139.207031 43.566406 140.238281 44.839844 140.238281 C 46.113281 140.238281 47.144531 139.207031 47.144531 137.933594 Z M 47.144531 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.546875 137.933594 C 20.546875 136.660156 19.515625 135.628906 18.242188 135.628906 C 16.96875 135.628906 15.9375 136.660156 15.9375 137.933594 C 15.9375 139.207031 16.96875 140.238281 18.242188 140.238281 C 19.515625 140.238281 20.546875 139.207031 20.546875 137.933594 Z M 20.546875 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.757812 137.933594 C 42.757812 136.660156 41.726562 135.628906 40.453125 135.628906 C 39.179688 135.628906 38.148438 136.660156 38.148438 137.933594 C 38.148438 139.207031 39.179688 140.238281 40.453125 140.238281 C 41.726562 140.238281 42.757812 139.207031 42.757812 137.933594 Z M 42.757812 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.464844 137.933594 C 36.464844 136.660156 35.433594 135.628906 34.160156 135.628906 C 32.886719 135.628906 31.855469 136.660156 31.855469 137.933594 C 31.855469 139.207031 32.886719 140.238281 34.160156 140.238281 C 35.433594 140.238281 36.464844 139.207031 36.464844 137.933594 Z M 36.464844 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.136719 137.933594 C 25.136719 136.660156 24.105469 135.628906 22.832031 135.628906 C 21.558594 135.628906 20.527344 136.660156 20.527344 137.933594 C 20.527344 139.207031 21.558594 140.238281 22.832031 140.238281 C 24.105469 140.238281 25.136719 139.207031 25.136719 137.933594 Z M 25.136719 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.574219 137.933594 C 56.574219 136.660156 55.542969 135.628906 54.269531 135.628906 C 52.996094 135.628906 51.964844 136.660156 51.964844 137.933594 C 51.964844 139.207031 52.996094 140.238281 54.269531 140.238281 C 55.542969 140.238281 56.574219 139.207031 56.574219 137.933594 Z M 56.574219 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.183594 137.933594 C 48.183594 136.660156 47.152344 135.628906 45.878906 135.628906 C 44.605469 135.628906 43.574219 136.660156 43.574219 137.933594 C 43.574219 139.207031 44.605469 140.238281 45.878906 140.238281 C 47.152344 140.238281 48.183594 139.207031 48.183594 137.933594 Z M 48.183594 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.335938 137.933594 C 22.335938 136.660156 21.304688 135.628906 20.03125 135.628906 C 18.757812 135.628906 17.726562 136.660156 17.726562 137.933594 C 17.726562 139.207031 18.757812 140.238281 20.03125 140.238281 C 21.304688 140.238281 22.335938 139.207031 22.335938 137.933594 Z M 22.335938 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.710938 137.933594 C 28.710938 136.660156 27.679688 135.628906 26.40625 135.628906 C 25.132812 135.628906 24.101562 136.660156 24.101562 137.933594 C 24.101562 139.207031 25.132812 140.238281 26.40625 140.238281 C 27.679688 140.238281 28.710938 139.207031 28.710938 137.933594 Z M 28.710938 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.25 137.933594 C 42.25 136.660156 41.21875 135.628906 39.945312 135.628906 C 38.671875 135.628906 37.640625 136.660156 37.640625 137.933594 C 37.640625 139.207031 38.671875 140.238281 39.945312 140.238281 C 41.21875 140.238281 42.25 139.207031 42.25 137.933594 Z M 42.25 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.660156 137.933594 C 20.660156 136.660156 19.628906 135.628906 18.355469 135.628906 C 17.082031 135.628906 16.050781 136.660156 16.050781 137.933594 C 16.050781 139.207031 17.082031 140.238281 18.355469 140.238281 C 19.628906 140.238281 20.660156 139.207031 20.660156 137.933594 Z M 20.660156 137.933594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.667969 133.089844 C 57.667969 131.816406 56.636719 130.785156 55.363281 130.785156 C 54.089844 130.785156 53.058594 131.816406 53.058594 133.089844 C 53.058594 134.363281 54.089844 135.394531 55.363281 135.394531 C 56.636719 135.394531 57.667969 134.363281 57.667969 133.089844 Z M 57.667969 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.320312 133.089844 C 27.320312 131.816406 26.289062 130.785156 25.015625 130.785156 C 23.742188 130.785156 22.710938 131.816406 22.710938 133.089844 C 22.710938 134.363281 23.742188 135.394531 25.015625 135.394531 C 26.289062 135.394531 27.320312 134.363281 27.320312 133.089844 Z M 27.320312 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.855469 133.089844 C 45.855469 131.816406 44.824219 130.785156 43.550781 130.785156 C 42.277344 130.785156 41.246094 131.816406 41.246094 133.089844 C 41.246094 134.363281 42.277344 135.394531 43.550781 135.394531 C 44.824219 135.394531 45.855469 134.363281 45.855469 133.089844 Z M 45.855469 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.082031 133.089844 C 29.082031 131.816406 28.050781 130.785156 26.777344 130.785156 C 25.503906 130.785156 24.472656 131.816406 24.472656 133.089844 C 24.472656 134.363281 25.503906 135.394531 26.777344 135.394531 C 28.050781 135.394531 29.082031 134.363281 29.082031 133.089844 Z M 29.082031 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.464844 133.089844 C 34.464844 131.816406 33.433594 130.785156 32.160156 130.785156 C 30.886719 130.785156 29.855469 131.816406 29.855469 133.089844 C 29.855469 134.363281 30.886719 135.394531 32.160156 135.394531 C 33.433594 135.394531 34.464844 134.363281 34.464844 133.089844 Z M 34.464844 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.148438 133.089844 C 42.148438 131.816406 41.117188 130.785156 39.84375 130.785156 C 38.570312 130.785156 37.539062 131.816406 37.539062 133.089844 C 37.539062 134.363281 38.570312 135.394531 39.84375 135.394531 C 41.117188 135.394531 42.148438 134.363281 42.148438 133.089844 Z M 42.148438 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.304688 133.089844 C 46.304688 131.816406 45.273438 130.785156 44 130.785156 C 42.726562 130.785156 41.695312 131.816406 41.695312 133.089844 C 41.695312 134.363281 42.726562 135.394531 44 135.394531 C 45.273438 135.394531 46.304688 134.363281 46.304688 133.089844 Z M 46.304688 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.472656 133.089844 C 32.472656 131.816406 31.441406 130.785156 30.167969 130.785156 C 28.894531 130.785156 27.863281 131.816406 27.863281 133.089844 C 27.863281 134.363281 28.894531 135.394531 30.167969 135.394531 C 31.441406 135.394531 32.472656 134.363281 32.472656 133.089844 Z M 32.472656 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.058594 133.089844 C 61.058594 131.816406 60.027344 130.785156 58.753906 130.785156 C 57.480469 130.785156 56.449219 131.816406 56.449219 133.089844 C 56.449219 134.363281 57.480469 135.394531 58.753906 135.394531 C 60.027344 135.394531 61.058594 134.363281 61.058594 133.089844 Z M 61.058594 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.835938 133.089844 C 44.835938 131.816406 43.804688 130.785156 42.53125 130.785156 C 41.257812 130.785156 40.226562 131.816406 40.226562 133.089844 C 40.226562 134.363281 41.257812 135.394531 42.53125 135.394531 C 43.804688 135.394531 44.835938 134.363281 44.835938 133.089844 Z M 44.835938 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.769531 133.089844 C 24.769531 131.816406 23.738281 130.785156 22.464844 130.785156 C 21.191406 130.785156 20.160156 131.816406 20.160156 133.089844 C 20.160156 134.363281 21.191406 135.394531 22.464844 135.394531 C 23.738281 135.394531 24.769531 134.363281 24.769531 133.089844 Z M 24.769531 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.464844 133.089844 C 44.464844 131.816406 43.433594 130.785156 42.160156 130.785156 C 40.886719 130.785156 39.855469 131.816406 39.855469 133.089844 C 39.855469 134.363281 40.886719 135.394531 42.160156 135.394531 C 43.433594 135.394531 44.464844 134.363281 44.464844 133.089844 Z M 44.464844 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.09375 133.089844 C 57.09375 131.816406 56.0625 130.785156 54.789062 130.785156 C 53.515625 130.785156 52.484375 131.816406 52.484375 133.089844 C 52.484375 134.363281 53.515625 135.394531 54.789062 135.394531 C 56.0625 135.394531 57.09375 134.363281 57.09375 133.089844 Z M 57.09375 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.003906 133.089844 C 36.003906 131.816406 34.972656 130.785156 33.699219 130.785156 C 32.425781 130.785156 31.394531 131.816406 31.394531 133.089844 C 31.394531 134.363281 32.425781 135.394531 33.699219 135.394531 C 34.972656 135.394531 36.003906 134.363281 36.003906 133.089844 Z M 36.003906 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.4375 133.089844 C 36.4375 131.816406 35.40625 130.785156 34.132812 130.785156 C 32.859375 130.785156 31.828125 131.816406 31.828125 133.089844 C 31.828125 134.363281 32.859375 135.394531 34.132812 135.394531 C 35.40625 135.394531 36.4375 134.363281 36.4375 133.089844 Z M 36.4375 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.425781 133.089844 C 62.425781 131.816406 61.394531 130.785156 60.121094 130.785156 C 58.847656 130.785156 57.816406 131.816406 57.816406 133.089844 C 57.816406 134.363281 58.847656 135.394531 60.121094 135.394531 C 61.394531 135.394531 62.425781 134.363281 62.425781 133.089844 Z M 62.425781 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.816406 133.089844 C 51.816406 131.816406 50.785156 130.785156 49.511719 130.785156 C 48.238281 130.785156 47.207031 131.816406 47.207031 133.089844 C 47.207031 134.363281 48.238281 135.394531 49.511719 135.394531 C 50.785156 135.394531 51.816406 134.363281 51.816406 133.089844 Z M 51.816406 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.089844 133.089844 C 35.089844 131.816406 34.058594 130.785156 32.785156 130.785156 C 31.511719 130.785156 30.480469 131.816406 30.480469 133.089844 C 30.480469 134.363281 31.511719 135.394531 32.785156 135.394531 C 34.058594 135.394531 35.089844 134.363281 35.089844 133.089844 Z M 35.089844 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.359375 133.089844 C 42.359375 131.816406 41.328125 130.785156 40.054688 130.785156 C 38.78125 130.785156 37.75 131.816406 37.75 133.089844 C 37.75 134.363281 38.78125 135.394531 40.054688 135.394531 C 41.328125 135.394531 42.359375 134.363281 42.359375 133.089844 Z M 42.359375 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.886719 133.089844 C 49.886719 131.816406 48.855469 130.785156 47.582031 130.785156 C 46.308594 130.785156 45.277344 131.816406 45.277344 133.089844 C 45.277344 134.363281 46.308594 135.394531 47.582031 135.394531 C 48.855469 135.394531 49.886719 134.363281 49.886719 133.089844 Z M 49.886719 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.367188 133.089844 C 24.367188 131.816406 23.335938 130.785156 22.0625 130.785156 C 20.789062 130.785156 19.757812 131.816406 19.757812 133.089844 C 19.757812 134.363281 20.789062 135.394531 22.0625 135.394531 C 23.335938 135.394531 24.367188 134.363281 24.367188 133.089844 Z M 24.367188 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.679688 133.089844 C 45.679688 131.816406 44.648438 130.785156 43.375 130.785156 C 42.101562 130.785156 41.070312 131.816406 41.070312 133.089844 C 41.070312 134.363281 42.101562 135.394531 43.375 135.394531 C 44.648438 135.394531 45.679688 134.363281 45.679688 133.089844 Z M 45.679688 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.636719 133.089844 C 39.636719 131.816406 38.605469 130.785156 37.332031 130.785156 C 36.058594 130.785156 35.027344 131.816406 35.027344 133.089844 C 35.027344 134.363281 36.058594 135.394531 37.332031 135.394531 C 38.605469 135.394531 39.636719 134.363281 39.636719 133.089844 Z M 39.636719 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.769531 133.089844 C 28.769531 131.816406 27.738281 130.785156 26.464844 130.785156 C 25.191406 130.785156 24.160156 131.816406 24.160156 133.089844 C 24.160156 134.363281 25.191406 135.394531 26.464844 135.394531 C 27.738281 135.394531 28.769531 134.363281 28.769531 133.089844 Z M 28.769531 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.933594 133.089844 C 58.933594 131.816406 57.902344 130.785156 56.628906 130.785156 C 55.355469 130.785156 54.324219 131.816406 54.324219 133.089844 C 54.324219 134.363281 55.355469 135.394531 56.628906 135.394531 C 57.902344 135.394531 58.933594 134.363281 58.933594 133.089844 Z M 58.933594 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.882812 133.089844 C 50.882812 131.816406 49.851562 130.785156 48.578125 130.785156 C 47.304688 130.785156 46.273438 131.816406 46.273438 133.089844 C 46.273438 134.363281 47.304688 135.394531 48.578125 135.394531 C 49.851562 135.394531 50.882812 134.363281 50.882812 133.089844 Z M 50.882812 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.082031 133.089844 C 26.082031 131.816406 25.050781 130.785156 23.777344 130.785156 C 22.503906 130.785156 21.472656 131.816406 21.472656 133.089844 C 21.472656 134.363281 22.503906 135.394531 23.777344 135.394531 C 25.050781 135.394531 26.082031 134.363281 26.082031 133.089844 Z M 26.082031 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.199219 133.089844 C 32.199219 131.816406 31.167969 130.785156 29.894531 130.785156 C 28.621094 130.785156 27.589844 131.816406 27.589844 133.089844 C 27.589844 134.363281 28.621094 135.394531 29.894531 135.394531 C 31.167969 135.394531 32.199219 134.363281 32.199219 133.089844 Z M 32.199219 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.191406 133.089844 C 45.191406 131.816406 44.160156 130.785156 42.886719 130.785156 C 41.613281 130.785156 40.582031 131.816406 40.582031 133.089844 C 40.582031 134.363281 41.613281 135.394531 42.886719 135.394531 C 44.160156 135.394531 45.191406 134.363281 45.191406 133.089844 Z M 45.191406 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.472656 133.089844 C 24.472656 131.816406 23.441406 130.785156 22.167969 130.785156 C 20.894531 130.785156 19.863281 131.816406 19.863281 133.089844 C 19.863281 134.363281 20.894531 135.394531 22.167969 135.394531 C 23.441406 135.394531 24.472656 134.363281 24.472656 133.089844 Z M 24.472656 133.089844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.050781 128.246094 C 60.050781 126.972656 59.019531 125.941406 57.746094 125.941406 C 56.472656 125.941406 55.441406 126.972656 55.441406 128.246094 C 55.441406 129.519531 56.472656 130.550781 57.746094 130.550781 C 59.019531 130.550781 60.050781 129.519531 60.050781 128.246094 Z M 60.050781 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.285156 128.246094 C 31.285156 126.972656 30.253906 125.941406 28.980469 125.941406 C 27.707031 125.941406 26.675781 126.972656 26.675781 128.246094 C 26.675781 129.519531 27.707031 130.550781 28.980469 130.550781 C 30.253906 130.550781 31.285156 129.519531 31.285156 128.246094 Z M 31.285156 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.851562 128.246094 C 48.851562 126.972656 47.820312 125.941406 46.546875 125.941406 C 45.273438 125.941406 44.242188 126.972656 44.242188 128.246094 C 44.242188 129.519531 45.273438 130.550781 46.546875 130.550781 C 47.820312 130.550781 48.851562 129.519531 48.851562 128.246094 Z M 48.851562 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.957031 128.246094 C 32.957031 126.972656 31.925781 125.941406 30.652344 125.941406 C 29.378906 125.941406 28.347656 126.972656 28.347656 128.246094 C 28.347656 129.519531 29.378906 130.550781 30.652344 130.550781 C 31.925781 130.550781 32.957031 129.519531 32.957031 128.246094 Z M 32.957031 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.058594 128.246094 C 38.058594 126.972656 37.027344 125.941406 35.753906 125.941406 C 34.480469 125.941406 33.449219 126.972656 33.449219 128.246094 C 33.449219 129.519531 34.480469 130.550781 35.753906 130.550781 C 37.027344 130.550781 38.058594 129.519531 38.058594 128.246094 Z M 38.058594 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.339844 128.246094 C 45.339844 126.972656 44.308594 125.941406 43.035156 125.941406 C 41.761719 125.941406 40.730469 126.972656 40.730469 128.246094 C 40.730469 129.519531 41.761719 130.550781 43.035156 130.550781 C 44.308594 130.550781 45.339844 129.519531 45.339844 128.246094 Z M 45.339844 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.28125 128.246094 C 49.28125 126.972656 48.25 125.941406 46.976562 125.941406 C 45.703125 125.941406 44.671875 126.972656 44.671875 128.246094 C 44.671875 129.519531 45.703125 130.550781 46.976562 130.550781 C 48.25 130.550781 49.28125 129.519531 49.28125 128.246094 Z M 49.28125 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.167969 128.246094 C 36.167969 126.972656 35.136719 125.941406 33.863281 125.941406 C 32.589844 125.941406 31.558594 126.972656 31.558594 128.246094 C 31.558594 129.519531 32.589844 130.550781 33.863281 130.550781 C 35.136719 130.550781 36.167969 129.519531 36.167969 128.246094 Z M 36.167969 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.261719 128.246094 C 63.261719 126.972656 62.230469 125.941406 60.957031 125.941406 C 59.683594 125.941406 58.652344 126.972656 58.652344 128.246094 C 58.652344 129.519531 59.683594 130.550781 60.957031 130.550781 C 62.230469 130.550781 63.261719 129.519531 63.261719 128.246094 Z M 63.261719 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.886719 128.246094 C 47.886719 126.972656 46.855469 125.941406 45.582031 125.941406 C 44.308594 125.941406 43.277344 126.972656 43.277344 128.246094 C 43.277344 129.519531 44.308594 130.550781 45.582031 130.550781 C 46.855469 130.550781 47.886719 129.519531 47.886719 128.246094 Z M 47.886719 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.867188 128.246094 C 28.867188 126.972656 27.835938 125.941406 26.5625 125.941406 C 25.289062 125.941406 24.257812 126.972656 24.257812 128.246094 C 24.257812 129.519531 25.289062 130.550781 26.5625 130.550781 C 27.835938 130.550781 28.867188 129.519531 28.867188 128.246094 Z M 28.867188 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.535156 128.246094 C 47.535156 126.972656 46.503906 125.941406 45.230469 125.941406 C 43.957031 125.941406 42.925781 126.972656 42.925781 128.246094 C 42.925781 129.519531 43.957031 130.550781 45.230469 130.550781 C 46.503906 130.550781 47.535156 129.519531 47.535156 128.246094 Z M 47.535156 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 59.503906 128.246094 C 59.503906 126.972656 58.472656 125.941406 57.199219 125.941406 C 55.925781 125.941406 54.894531 126.972656 54.894531 128.246094 C 54.894531 129.519531 55.925781 130.550781 57.199219 130.550781 C 58.472656 130.550781 59.503906 129.519531 59.503906 128.246094 Z M 59.503906 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.515625 128.246094 C 39.515625 126.972656 38.484375 125.941406 37.210938 125.941406 C 35.9375 125.941406 34.90625 126.972656 34.90625 128.246094 C 34.90625 129.519531 35.9375 130.550781 37.210938 130.550781 C 38.484375 130.550781 39.515625 129.519531 39.515625 128.246094 Z M 39.515625 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.925781 128.246094 C 39.925781 126.972656 38.894531 125.941406 37.621094 125.941406 C 36.347656 125.941406 35.316406 126.972656 35.316406 128.246094 C 35.316406 129.519531 36.347656 130.550781 37.621094 130.550781 C 38.894531 130.550781 39.925781 129.519531 39.925781 128.246094 Z M 39.925781 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.558594 128.246094 C 64.558594 126.972656 63.527344 125.941406 62.253906 125.941406 C 60.980469 125.941406 59.949219 126.972656 59.949219 128.246094 C 59.949219 129.519531 60.980469 130.550781 62.253906 130.550781 C 63.527344 130.550781 64.558594 129.519531 64.558594 128.246094 Z M 64.558594 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.4375 128.246094 C 69.4375 126.972656 68.40625 125.941406 67.132812 125.941406 C 65.859375 125.941406 64.828125 126.972656 64.828125 128.246094 C 64.828125 129.519531 65.859375 130.550781 67.132812 130.550781 C 68.40625 130.550781 69.4375 129.519531 69.4375 128.246094 Z M 69.4375 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.652344 128.246094 C 38.652344 126.972656 37.621094 125.941406 36.347656 125.941406 C 35.074219 125.941406 34.042969 126.972656 34.042969 128.246094 C 34.042969 129.519531 35.074219 130.550781 36.347656 130.550781 C 37.621094 130.550781 38.652344 129.519531 38.652344 128.246094 Z M 38.652344 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.539062 128.246094 C 45.539062 126.972656 44.507812 125.941406 43.234375 125.941406 C 41.960938 125.941406 40.929688 126.972656 40.929688 128.246094 C 40.929688 129.519531 41.960938 130.550781 43.234375 130.550781 C 44.507812 130.550781 45.539062 129.519531 45.539062 128.246094 Z M 45.539062 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.675781 128.246094 C 52.675781 126.972656 51.644531 125.941406 50.371094 125.941406 C 49.097656 125.941406 48.066406 126.972656 48.066406 128.246094 C 48.066406 129.519531 49.097656 130.550781 50.371094 130.550781 C 51.644531 130.550781 52.675781 129.519531 52.675781 128.246094 Z M 52.675781 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.484375 128.246094 C 28.484375 126.972656 27.453125 125.941406 26.179688 125.941406 C 24.90625 125.941406 23.875 126.972656 23.875 128.246094 C 23.875 129.519531 24.90625 130.550781 26.179688 130.550781 C 27.453125 130.550781 28.484375 129.519531 28.484375 128.246094 Z M 28.484375 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.683594 128.246094 C 48.683594 126.972656 47.652344 125.941406 46.378906 125.941406 C 45.105469 125.941406 44.074219 126.972656 44.074219 128.246094 C 44.074219 129.519531 45.105469 130.550781 46.378906 130.550781 C 47.652344 130.550781 48.683594 129.519531 48.683594 128.246094 Z M 48.683594 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.960938 128.246094 C 42.960938 126.972656 41.929688 125.941406 40.65625 125.941406 C 39.382812 125.941406 38.351562 126.972656 38.351562 128.246094 C 38.351562 129.519531 39.382812 130.550781 40.65625 130.550781 C 41.929688 130.550781 42.960938 129.519531 42.960938 128.246094 Z M 42.960938 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.65625 128.246094 C 32.65625 126.972656 31.625 125.941406 30.351562 125.941406 C 29.078125 125.941406 28.046875 126.972656 28.046875 128.246094 C 28.046875 129.519531 29.078125 130.550781 30.351562 130.550781 C 31.625 130.550781 32.65625 129.519531 32.65625 128.246094 Z M 32.65625 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.25 128.246094 C 61.25 126.972656 60.21875 125.941406 58.945312 125.941406 C 57.671875 125.941406 56.640625 126.972656 56.640625 128.246094 C 56.640625 129.519531 57.671875 130.550781 58.945312 130.550781 C 60.21875 130.550781 61.25 129.519531 61.25 128.246094 Z M 61.25 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.617188 128.246094 C 53.617188 126.972656 52.585938 125.941406 51.3125 125.941406 C 50.039062 125.941406 49.007812 126.972656 49.007812 128.246094 C 49.007812 129.519531 50.039062 130.550781 51.3125 130.550781 C 52.585938 130.550781 53.617188 129.519531 53.617188 128.246094 Z M 53.617188 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.113281 128.246094 C 30.113281 126.972656 29.082031 125.941406 27.808594 125.941406 C 26.535156 125.941406 25.503906 126.972656 25.503906 128.246094 C 25.503906 129.519531 26.535156 130.550781 27.808594 130.550781 C 29.082031 130.550781 30.113281 129.519531 30.113281 128.246094 Z M 30.113281 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.90625 128.246094 C 35.90625 126.972656 34.875 125.941406 33.601562 125.941406 C 32.328125 125.941406 31.296875 126.972656 31.296875 128.246094 C 31.296875 129.519531 32.328125 130.550781 33.601562 130.550781 C 34.875 130.550781 35.90625 129.519531 35.90625 128.246094 Z M 35.90625 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.222656 128.246094 C 48.222656 126.972656 47.191406 125.941406 45.917969 125.941406 C 44.644531 125.941406 43.613281 126.972656 43.613281 128.246094 C 43.613281 129.519531 44.644531 130.550781 45.917969 130.550781 C 47.191406 130.550781 48.222656 129.519531 48.222656 128.246094 Z M 48.222656 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.585938 128.246094 C 28.585938 126.972656 27.554688 125.941406 26.28125 125.941406 C 25.007812 125.941406 23.976562 126.972656 23.976562 128.246094 C 23.976562 129.519531 25.007812 130.550781 26.28125 130.550781 C 27.554688 130.550781 28.585938 129.519531 28.585938 128.246094 Z M 28.585938 128.246094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.375 123.402344 C 62.375 122.128906 61.34375 121.097656 60.070312 121.097656 C 58.796875 121.097656 57.765625 122.128906 57.765625 123.402344 C 57.765625 124.675781 58.796875 125.707031 60.070312 125.707031 C 61.34375 125.707031 62.375 124.675781 62.375 123.402344 Z M 62.375 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.480469 123.402344 C 35.480469 122.128906 34.449219 121.097656 33.175781 121.097656 C 31.902344 121.097656 30.871094 122.128906 30.871094 123.402344 C 30.871094 124.675781 31.902344 125.707031 33.175781 125.707031 C 34.449219 125.707031 35.480469 124.675781 35.480469 123.402344 Z M 35.480469 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.90625 123.402344 C 51.90625 122.128906 50.875 121.097656 49.601562 121.097656 C 48.328125 121.097656 47.296875 122.128906 47.296875 123.402344 C 47.296875 124.675781 48.328125 125.707031 49.601562 125.707031 C 50.875 125.707031 51.90625 124.675781 51.90625 123.402344 Z M 51.90625 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.042969 123.402344 C 37.042969 122.128906 36.011719 121.097656 34.738281 121.097656 C 33.464844 121.097656 32.433594 122.128906 32.433594 123.402344 C 32.433594 124.675781 33.464844 125.707031 34.738281 125.707031 C 36.011719 125.707031 37.042969 124.675781 37.042969 123.402344 Z M 37.042969 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.816406 123.402344 C 41.816406 122.128906 40.785156 121.097656 39.511719 121.097656 C 38.238281 121.097656 37.207031 122.128906 37.207031 123.402344 C 37.207031 124.675781 38.238281 125.707031 39.511719 125.707031 C 40.785156 125.707031 41.816406 124.675781 41.816406 123.402344 Z M 41.816406 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.625 123.402344 C 48.625 122.128906 47.59375 121.097656 46.320312 121.097656 C 45.046875 121.097656 44.015625 122.128906 44.015625 123.402344 C 44.015625 124.675781 45.046875 125.707031 46.320312 125.707031 C 47.59375 125.707031 48.625 124.675781 48.625 123.402344 Z M 48.625 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.304688 123.402344 C 52.304688 122.128906 51.273438 121.097656 50 121.097656 C 48.726562 121.097656 47.695312 122.128906 47.695312 123.402344 C 47.695312 124.675781 48.726562 125.707031 50 125.707031 C 51.273438 125.707031 52.304688 124.675781 52.304688 123.402344 Z M 52.304688 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.046875 123.402344 C 40.046875 122.128906 39.015625 121.097656 37.742188 121.097656 C 36.46875 121.097656 35.4375 122.128906 35.4375 123.402344 C 35.4375 124.675781 36.46875 125.707031 37.742188 125.707031 C 39.015625 125.707031 40.046875 124.675781 40.046875 123.402344 Z M 40.046875 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.378906 123.402344 C 65.378906 122.128906 64.347656 121.097656 63.074219 121.097656 C 61.800781 121.097656 60.769531 122.128906 60.769531 123.402344 C 60.769531 124.675781 61.800781 125.707031 63.074219 125.707031 C 64.347656 125.707031 65.378906 124.675781 65.378906 123.402344 Z M 65.378906 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.003906 123.402344 C 51.003906 122.128906 49.972656 121.097656 48.699219 121.097656 C 47.425781 121.097656 46.394531 122.128906 46.394531 123.402344 C 46.394531 124.675781 47.425781 125.707031 48.699219 125.707031 C 49.972656 125.707031 51.003906 124.675781 51.003906 123.402344 Z M 51.003906 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.222656 123.402344 C 33.222656 122.128906 32.191406 121.097656 30.917969 121.097656 C 29.644531 121.097656 28.613281 122.128906 28.613281 123.402344 C 28.613281 124.675781 29.644531 125.707031 30.917969 125.707031 C 32.191406 125.707031 33.222656 124.675781 33.222656 123.402344 Z M 33.222656 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.675781 123.402344 C 50.675781 122.128906 49.644531 121.097656 48.371094 121.097656 C 47.097656 121.097656 46.066406 122.128906 46.066406 123.402344 C 46.066406 124.675781 47.097656 125.707031 48.371094 125.707031 C 49.644531 125.707031 50.675781 124.675781 50.675781 123.402344 Z M 50.675781 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.867188 123.402344 C 61.867188 122.128906 60.835938 121.097656 59.5625 121.097656 C 58.289062 121.097656 57.257812 122.128906 57.257812 123.402344 C 57.257812 124.675781 58.289062 125.707031 59.5625 125.707031 C 60.835938 125.707031 61.867188 124.675781 61.867188 123.402344 Z M 61.867188 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.175781 123.402344 C 43.175781 122.128906 42.144531 121.097656 40.871094 121.097656 C 39.597656 121.097656 38.566406 122.128906 38.566406 123.402344 C 38.566406 124.675781 39.597656 125.707031 40.871094 125.707031 C 42.144531 125.707031 43.175781 124.675781 43.175781 123.402344 Z M 43.175781 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.558594 123.402344 C 43.558594 122.128906 42.527344 121.097656 41.253906 121.097656 C 39.980469 121.097656 38.949219 122.128906 38.949219 123.402344 C 38.949219 124.675781 39.980469 125.707031 41.253906 125.707031 C 42.527344 125.707031 43.558594 124.675781 43.558594 123.402344 Z M 43.558594 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.589844 123.402344 C 66.589844 122.128906 65.558594 121.097656 64.285156 121.097656 C 63.011719 121.097656 61.980469 122.128906 61.980469 123.402344 C 61.980469 124.675781 63.011719 125.707031 64.285156 125.707031 C 65.558594 125.707031 66.589844 124.675781 66.589844 123.402344 Z M 66.589844 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.191406 123.402344 C 57.191406 122.128906 56.160156 121.097656 54.886719 121.097656 C 53.613281 121.097656 52.582031 122.128906 52.582031 123.402344 C 52.582031 124.675781 53.613281 125.707031 54.886719 125.707031 C 56.160156 125.707031 57.191406 124.675781 57.191406 123.402344 Z M 57.191406 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.367188 123.402344 C 42.367188 122.128906 41.335938 121.097656 40.0625 121.097656 C 38.789062 121.097656 37.757812 122.128906 37.757812 123.402344 C 37.757812 124.675781 38.789062 125.707031 40.0625 125.707031 C 41.335938 125.707031 42.367188 124.675781 42.367188 123.402344 Z M 42.367188 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.808594 123.402344 C 48.808594 122.128906 47.777344 121.097656 46.503906 121.097656 C 45.230469 121.097656 44.199219 122.128906 44.199219 123.402344 C 44.199219 124.675781 45.230469 125.707031 46.503906 125.707031 C 47.777344 125.707031 48.808594 124.675781 48.808594 123.402344 Z M 48.808594 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.480469 123.402344 C 55.480469 122.128906 54.449219 121.097656 53.175781 121.097656 C 51.902344 121.097656 50.871094 122.128906 50.871094 123.402344 C 50.871094 124.675781 51.902344 125.707031 53.175781 125.707031 C 54.449219 125.707031 55.480469 124.675781 55.480469 123.402344 Z M 55.480469 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.863281 123.402344 C 32.863281 122.128906 31.832031 121.097656 30.558594 121.097656 C 29.285156 121.097656 28.253906 122.128906 28.253906 123.402344 C 28.253906 124.675781 29.285156 125.707031 30.558594 125.707031 C 31.832031 125.707031 32.863281 124.675781 32.863281 123.402344 Z M 32.863281 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.75 123.402344 C 51.75 122.128906 50.71875 121.097656 49.445312 121.097656 C 48.171875 121.097656 47.140625 122.128906 47.140625 123.402344 C 47.140625 124.675781 48.171875 125.707031 49.445312 125.707031 C 50.71875 125.707031 51.75 124.675781 51.75 123.402344 Z M 51.75 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.394531 123.402344 C 46.394531 122.128906 45.363281 121.097656 44.089844 121.097656 C 42.816406 121.097656 41.785156 122.128906 41.785156 123.402344 C 41.785156 124.675781 42.816406 125.707031 44.089844 125.707031 C 45.363281 125.707031 46.394531 124.675781 46.394531 123.402344 Z M 46.394531 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.765625 123.402344 C 36.765625 122.128906 35.734375 121.097656 34.460938 121.097656 C 33.1875 121.097656 32.15625 122.128906 32.15625 123.402344 C 32.15625 124.675781 33.1875 125.707031 34.460938 125.707031 C 35.734375 125.707031 36.765625 124.675781 36.765625 123.402344 Z M 36.765625 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.496094 123.402344 C 63.496094 122.128906 62.464844 121.097656 61.191406 121.097656 C 59.917969 121.097656 58.886719 122.128906 58.886719 123.402344 C 58.886719 124.675781 59.917969 125.707031 61.191406 125.707031 C 62.464844 125.707031 63.496094 124.675781 63.496094 123.402344 Z M 63.496094 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.359375 123.402344 C 56.359375 122.128906 55.328125 121.097656 54.054688 121.097656 C 52.78125 121.097656 51.75 122.128906 51.75 123.402344 C 51.75 124.675781 52.78125 125.707031 54.054688 125.707031 C 55.328125 125.707031 56.359375 124.675781 56.359375 123.402344 Z M 56.359375 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.386719 123.402344 C 34.386719 122.128906 33.355469 121.097656 32.082031 121.097656 C 30.808594 121.097656 29.777344 122.128906 29.777344 123.402344 C 29.777344 124.675781 30.808594 125.707031 32.082031 125.707031 C 33.355469 125.707031 34.386719 124.675781 34.386719 123.402344 Z M 34.386719 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.804688 123.402344 C 39.804688 122.128906 38.773438 121.097656 37.5 121.097656 C 36.226562 121.097656 35.195312 122.128906 35.195312 123.402344 C 35.195312 124.675781 36.226562 125.707031 37.5 125.707031 C 38.773438 125.707031 39.804688 124.675781 39.804688 123.402344 Z M 39.804688 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.316406 123.402344 C 51.316406 122.128906 50.285156 121.097656 49.011719 121.097656 C 47.738281 121.097656 46.707031 122.128906 46.707031 123.402344 C 46.707031 124.675781 47.738281 125.707031 49.011719 125.707031 C 50.285156 125.707031 51.316406 124.675781 51.316406 123.402344 Z M 51.316406 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.960938 123.402344 C 32.960938 122.128906 31.929688 121.097656 30.65625 121.097656 C 29.382812 121.097656 28.351562 122.128906 28.351562 123.402344 C 28.351562 124.675781 29.382812 125.707031 30.65625 125.707031 C 31.929688 125.707031 32.960938 124.675781 32.960938 123.402344 Z M 32.960938 123.402344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.621094 118.558594 C 64.621094 117.285156 63.589844 116.253906 62.316406 116.253906 C 61.042969 116.253906 60.011719 117.285156 60.011719 118.558594 C 60.011719 119.832031 61.042969 120.863281 62.316406 120.863281 C 63.589844 120.863281 64.621094 119.832031 64.621094 118.558594 Z M 64.621094 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.867188 118.558594 C 39.867188 117.285156 38.835938 116.253906 37.5625 116.253906 C 36.289062 116.253906 35.257812 117.285156 35.257812 118.558594 C 35.257812 119.832031 36.289062 120.863281 37.5625 120.863281 C 38.835938 120.863281 39.867188 119.832031 39.867188 118.558594 Z M 39.867188 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.984375 118.558594 C 54.984375 117.285156 53.953125 116.253906 52.679688 116.253906 C 51.40625 116.253906 50.375 117.285156 50.375 118.558594 C 50.375 119.832031 51.40625 120.863281 52.679688 120.863281 C 53.953125 120.863281 54.984375 119.832031 54.984375 118.558594 Z M 54.984375 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.308594 118.558594 C 41.308594 117.285156 40.277344 116.253906 39.003906 116.253906 C 37.730469 116.253906 36.699219 117.285156 36.699219 118.558594 C 36.699219 119.832031 37.730469 120.863281 39.003906 120.863281 C 40.277344 120.863281 41.308594 119.832031 41.308594 118.558594 Z M 41.308594 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.699219 118.558594 C 45.699219 117.285156 44.667969 116.253906 43.394531 116.253906 C 42.121094 116.253906 41.089844 117.285156 41.089844 118.558594 C 41.089844 119.832031 42.121094 120.863281 43.394531 120.863281 C 44.667969 120.863281 45.699219 119.832031 45.699219 118.558594 Z M 45.699219 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.964844 118.558594 C 51.964844 117.285156 50.933594 116.253906 49.660156 116.253906 C 48.386719 116.253906 47.355469 117.285156 47.355469 118.558594 C 47.355469 119.832031 48.386719 120.863281 49.660156 120.863281 C 50.933594 120.863281 51.964844 119.832031 51.964844 118.558594 Z M 51.964844 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.355469 118.558594 C 55.355469 117.285156 54.324219 116.253906 53.050781 116.253906 C 51.777344 116.253906 50.746094 117.285156 50.746094 118.558594 C 50.746094 119.832031 51.777344 120.863281 53.050781 120.863281 C 54.324219 120.863281 55.355469 119.832031 55.355469 118.558594 Z M 55.355469 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.070312 118.558594 C 44.070312 117.285156 43.039062 116.253906 41.765625 116.253906 C 40.492188 116.253906 39.460938 117.285156 39.460938 118.558594 C 39.460938 119.832031 40.492188 120.863281 41.765625 120.863281 C 43.039062 120.863281 44.070312 119.832031 44.070312 118.558594 Z M 44.070312 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.386719 118.558594 C 67.386719 117.285156 66.355469 116.253906 65.082031 116.253906 C 63.808594 116.253906 62.777344 117.285156 62.777344 118.558594 C 62.777344 119.832031 63.808594 120.863281 65.082031 120.863281 C 66.355469 120.863281 67.386719 119.832031 67.386719 118.558594 Z M 67.386719 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.15625 118.558594 C 54.15625 117.285156 53.125 116.253906 51.851562 116.253906 C 50.578125 116.253906 49.546875 117.285156 49.546875 118.558594 C 49.546875 119.832031 50.578125 120.863281 51.851562 120.863281 C 53.125 120.863281 54.15625 119.832031 54.15625 118.558594 Z M 54.15625 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.789062 118.558594 C 37.789062 117.285156 36.757812 116.253906 35.484375 116.253906 C 34.210938 116.253906 33.179688 117.285156 33.179688 118.558594 C 33.179688 119.832031 34.210938 120.863281 35.484375 120.863281 C 36.757812 120.863281 37.789062 119.832031 37.789062 118.558594 Z M 37.789062 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.851562 118.558594 C 53.851562 117.285156 52.820312 116.253906 51.546875 116.253906 C 50.273438 116.253906 49.242188 117.285156 49.242188 118.558594 C 49.242188 119.832031 50.273438 120.863281 51.546875 120.863281 C 52.820312 120.863281 53.851562 119.832031 53.851562 118.558594 Z M 53.851562 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.152344 118.558594 C 64.152344 117.285156 63.121094 116.253906 61.847656 116.253906 C 60.574219 116.253906 59.542969 117.285156 59.542969 118.558594 C 59.542969 119.832031 60.574219 120.863281 61.847656 120.863281 C 63.121094 120.863281 64.152344 119.832031 64.152344 118.558594 Z M 64.152344 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.949219 118.558594 C 46.949219 117.285156 45.917969 116.253906 44.644531 116.253906 C 43.371094 116.253906 42.339844 117.285156 42.339844 118.558594 C 42.339844 119.832031 43.371094 120.863281 44.644531 120.863281 C 45.917969 120.863281 46.949219 119.832031 46.949219 118.558594 Z M 46.949219 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.304688 118.558594 C 47.304688 117.285156 46.273438 116.253906 45 116.253906 C 43.726562 116.253906 42.695312 117.285156 42.695312 118.558594 C 42.695312 119.832031 43.726562 120.863281 45 120.863281 C 46.273438 120.863281 47.304688 119.832031 47.304688 118.558594 Z M 47.304688 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.503906 118.558594 C 68.503906 117.285156 67.472656 116.253906 66.199219 116.253906 C 64.925781 116.253906 63.894531 117.285156 63.894531 118.558594 C 63.894531 119.832031 64.925781 120.863281 66.199219 120.863281 C 67.472656 120.863281 68.503906 119.832031 68.503906 118.558594 Z M 68.503906 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 59.847656 118.558594 C 59.847656 117.285156 58.816406 116.253906 57.542969 116.253906 C 56.269531 116.253906 55.238281 117.285156 55.238281 118.558594 C 55.238281 119.832031 56.269531 120.863281 57.542969 120.863281 C 58.816406 120.863281 59.847656 119.832031 59.847656 118.558594 Z M 59.847656 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.207031 118.558594 C 46.207031 117.285156 45.175781 116.253906 43.902344 116.253906 C 42.628906 116.253906 41.597656 117.285156 41.597656 118.558594 C 41.597656 119.832031 42.628906 120.863281 43.902344 120.863281 C 45.175781 120.863281 46.207031 119.832031 46.207031 118.558594 Z M 46.207031 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.132812 118.558594 C 52.132812 117.285156 51.101562 116.253906 49.828125 116.253906 C 48.554688 116.253906 47.523438 117.285156 47.523438 118.558594 C 47.523438 119.832031 48.554688 120.863281 49.828125 120.863281 C 51.101562 120.863281 52.132812 119.832031 52.132812 118.558594 Z M 52.132812 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.273438 118.558594 C 58.273438 117.285156 57.242188 116.253906 55.96875 116.253906 C 54.695312 116.253906 53.664062 117.285156 53.664062 118.558594 C 53.664062 119.832031 54.695312 120.863281 55.96875 120.863281 C 57.242188 120.863281 58.273438 119.832031 58.273438 118.558594 Z M 58.273438 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.460938 118.558594 C 37.460938 117.285156 36.429688 116.253906 35.15625 116.253906 C 33.882812 116.253906 32.851562 117.285156 32.851562 118.558594 C 32.851562 119.832031 33.882812 120.863281 35.15625 120.863281 C 36.429688 120.863281 37.460938 119.832031 37.460938 118.558594 Z M 37.460938 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.84375 118.558594 C 54.84375 117.285156 53.8125 116.253906 52.539062 116.253906 C 51.265625 116.253906 50.234375 117.285156 50.234375 118.558594 C 50.234375 119.832031 51.265625 120.863281 52.539062 120.863281 C 53.8125 120.863281 54.84375 119.832031 54.84375 118.558594 Z M 54.84375 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.914062 118.558594 C 49.914062 117.285156 48.882812 116.253906 47.609375 116.253906 C 46.335938 116.253906 45.304688 117.285156 45.304688 118.558594 C 45.304688 119.832031 46.335938 120.863281 47.609375 120.863281 C 48.882812 120.863281 49.914062 119.832031 49.914062 118.558594 Z M 49.914062 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.050781 118.558594 C 41.050781 117.285156 40.019531 116.253906 38.746094 116.253906 C 37.472656 116.253906 36.441406 117.285156 36.441406 118.558594 C 36.441406 119.832031 37.472656 120.863281 38.746094 120.863281 C 40.019531 120.863281 41.050781 119.832031 41.050781 118.558594 Z M 41.050781 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.652344 118.558594 C 65.652344 117.285156 64.621094 116.253906 63.347656 116.253906 C 62.074219 116.253906 61.042969 117.285156 61.042969 118.558594 C 61.042969 119.832031 62.074219 120.863281 63.347656 120.863281 C 64.621094 120.863281 65.652344 119.832031 65.652344 118.558594 Z M 65.652344 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 59.085938 118.558594 C 59.085938 117.285156 58.054688 116.253906 56.78125 116.253906 C 55.507812 116.253906 54.476562 117.285156 54.476562 118.558594 C 54.476562 119.832031 55.507812 120.863281 56.78125 120.863281 C 58.054688 120.863281 59.085938 119.832031 59.085938 118.558594 Z M 59.085938 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.859375 118.558594 C 38.859375 117.285156 37.828125 116.253906 36.554688 116.253906 C 35.28125 116.253906 34.25 117.285156 34.25 118.558594 C 34.25 119.832031 35.28125 120.863281 36.554688 120.863281 C 37.828125 120.863281 38.859375 119.832031 38.859375 118.558594 Z M 38.859375 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.847656 118.558594 C 43.847656 117.285156 42.816406 116.253906 41.542969 116.253906 C 40.269531 116.253906 39.238281 117.285156 39.238281 118.558594 C 39.238281 119.832031 40.269531 120.863281 41.542969 120.863281 C 42.816406 120.863281 43.847656 119.832031 43.847656 118.558594 Z M 43.847656 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.011719 118.558594 C 50.011719 117.285156 48.980469 116.253906 47.707031 116.253906 C 46.433594 116.253906 45.402344 117.285156 45.402344 118.558594 C 45.402344 119.832031 46.433594 120.863281 47.707031 120.863281 C 48.980469 120.863281 50.011719 119.832031 50.011719 118.558594 Z M 50.011719 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.546875 118.558594 C 37.546875 117.285156 36.515625 116.253906 35.242188 116.253906 C 33.96875 116.253906 32.9375 117.285156 32.9375 118.558594 C 32.9375 119.832031 33.96875 120.863281 35.242188 120.863281 C 36.515625 120.863281 37.546875 119.832031 37.546875 118.558594 Z M 37.546875 118.558594 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.765625 113.714844 C 66.765625 112.441406 65.734375 111.410156 64.460938 111.410156 C 63.1875 111.410156 62.15625 112.441406 62.15625 113.714844 C 62.15625 114.988281 63.1875 116.019531 64.460938 116.019531 C 65.734375 116.019531 66.765625 114.988281 66.765625 113.714844 Z M 66.765625 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.402344 113.714844 C 44.402344 112.441406 43.371094 111.410156 42.097656 111.410156 C 40.824219 111.410156 39.792969 112.441406 39.792969 113.714844 C 39.792969 114.988281 40.824219 116.019531 42.097656 116.019531 C 43.371094 116.019531 44.402344 114.988281 44.402344 113.714844 Z M 44.402344 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.0625 113.714844 C 58.0625 112.441406 57.03125 111.410156 55.757812 111.410156 C 54.484375 111.410156 53.453125 112.441406 53.453125 113.714844 C 53.453125 114.988281 54.484375 116.019531 55.757812 116.019531 C 57.03125 116.019531 58.0625 114.988281 58.0625 113.714844 Z M 58.0625 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.703125 113.714844 C 45.703125 112.441406 44.671875 111.410156 43.398438 111.410156 C 42.125 111.410156 41.09375 112.441406 41.09375 113.714844 C 41.09375 114.988281 42.125 116.019531 43.398438 116.019531 C 44.671875 116.019531 45.703125 114.988281 45.703125 113.714844 Z M 45.703125 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.667969 113.714844 C 49.667969 112.441406 48.636719 111.410156 47.363281 111.410156 C 46.089844 111.410156 45.058594 112.441406 45.058594 113.714844 C 45.058594 114.988281 46.089844 116.019531 47.363281 116.019531 C 48.636719 116.019531 49.667969 114.988281 49.667969 113.714844 Z M 49.667969 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.332031 113.714844 C 55.332031 112.441406 54.300781 111.410156 53.027344 111.410156 C 51.753906 111.410156 50.722656 112.441406 50.722656 113.714844 C 50.722656 114.988281 51.753906 116.019531 53.027344 116.019531 C 54.300781 116.019531 55.332031 114.988281 55.332031 113.714844 Z M 55.332031 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.394531 113.714844 C 58.394531 112.441406 57.363281 111.410156 56.089844 111.410156 C 54.816406 111.410156 53.785156 112.441406 53.785156 113.714844 C 53.785156 114.988281 54.816406 116.019531 56.089844 116.019531 C 57.363281 116.019531 58.394531 114.988281 58.394531 113.714844 Z M 58.394531 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.199219 113.714844 C 48.199219 112.441406 47.167969 111.410156 45.894531 111.410156 C 44.621094 111.410156 43.589844 112.441406 43.589844 113.714844 C 43.589844 114.988281 44.621094 116.019531 45.894531 116.019531 C 47.167969 116.019531 48.199219 114.988281 48.199219 113.714844 Z M 48.199219 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.265625 113.714844 C 69.265625 112.441406 68.234375 111.410156 66.960938 111.410156 C 65.6875 111.410156 64.65625 112.441406 64.65625 113.714844 C 64.65625 114.988281 65.6875 116.019531 66.960938 116.019531 C 68.234375 116.019531 69.265625 114.988281 69.265625 113.714844 Z M 69.265625 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.3125 113.714844 C 57.3125 112.441406 56.28125 111.410156 55.007812 111.410156 C 53.734375 111.410156 52.703125 112.441406 52.703125 113.714844 C 52.703125 114.988281 53.734375 116.019531 55.007812 116.019531 C 56.28125 116.019531 57.3125 114.988281 57.3125 113.714844 Z M 57.3125 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.523438 113.714844 C 42.523438 112.441406 41.492188 111.410156 40.21875 111.410156 C 38.945312 111.410156 37.914062 112.441406 37.914062 113.714844 C 37.914062 114.988281 38.945312 116.019531 40.21875 116.019531 C 41.492188 116.019531 42.523438 114.988281 42.523438 113.714844 Z M 42.523438 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.039062 113.714844 C 57.039062 112.441406 56.007812 111.410156 54.734375 111.410156 C 53.460938 111.410156 52.429688 112.441406 52.429688 113.714844 C 52.429688 114.988281 53.460938 116.019531 54.734375 116.019531 C 56.007812 116.019531 57.039062 114.988281 57.039062 113.714844 Z M 57.039062 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.34375 113.714844 C 66.34375 112.441406 65.3125 111.410156 64.039062 111.410156 C 62.765625 111.410156 61.734375 112.441406 61.734375 113.714844 C 61.734375 114.988281 62.765625 116.019531 64.039062 116.019531 C 65.3125 116.019531 66.34375 114.988281 66.34375 113.714844 Z M 66.34375 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.800781 113.714844 C 50.800781 112.441406 49.769531 111.410156 48.496094 111.410156 C 47.222656 111.410156 46.191406 112.441406 46.191406 113.714844 C 46.191406 114.988281 47.222656 116.019531 48.496094 116.019531 C 49.769531 116.019531 50.800781 114.988281 50.800781 113.714844 Z M 50.800781 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.121094 113.714844 C 51.121094 112.441406 50.089844 111.410156 48.816406 111.410156 C 47.542969 111.410156 46.511719 112.441406 46.511719 113.714844 C 46.511719 114.988281 47.542969 116.019531 48.816406 116.019531 C 50.089844 116.019531 51.121094 114.988281 51.121094 113.714844 Z M 51.121094 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.273438 113.714844 C 70.273438 112.441406 69.242188 111.410156 67.96875 111.410156 C 66.695312 111.410156 65.664062 112.441406 65.664062 113.714844 C 65.664062 114.988281 66.695312 116.019531 67.96875 116.019531 C 69.242188 116.019531 70.273438 114.988281 70.273438 113.714844 Z M 70.273438 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.457031 113.714844 C 62.457031 112.441406 61.425781 111.410156 60.152344 111.410156 C 58.878906 111.410156 57.847656 112.441406 57.847656 113.714844 C 57.847656 114.988281 58.878906 116.019531 60.152344 116.019531 C 61.425781 116.019531 62.457031 114.988281 62.457031 113.714844 Z M 62.457031 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.128906 113.714844 C 50.128906 112.441406 49.097656 111.410156 47.824219 111.410156 C 46.550781 111.410156 45.519531 112.441406 45.519531 113.714844 C 45.519531 114.988281 46.550781 116.019531 47.824219 116.019531 C 49.097656 116.019531 50.128906 114.988281 50.128906 113.714844 Z M 50.128906 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.484375 113.714844 C 55.484375 112.441406 54.453125 111.410156 53.179688 111.410156 C 51.90625 111.410156 50.875 112.441406 50.875 113.714844 C 50.875 114.988281 51.90625 116.019531 53.179688 116.019531 C 54.453125 116.019531 55.484375 114.988281 55.484375 113.714844 Z M 55.484375 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.03125 113.714844 C 61.03125 112.441406 60 111.410156 58.726562 111.410156 C 57.453125 111.410156 56.421875 112.441406 56.421875 113.714844 C 56.421875 114.988281 57.453125 116.019531 58.726562 116.019531 C 60 116.019531 61.03125 114.988281 61.03125 113.714844 Z M 61.03125 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.222656 113.714844 C 42.222656 112.441406 41.191406 111.410156 39.917969 111.410156 C 38.644531 111.410156 37.613281 112.441406 37.613281 113.714844 C 37.613281 114.988281 38.644531 116.019531 39.917969 116.019531 C 41.191406 116.019531 42.222656 114.988281 42.222656 113.714844 Z M 42.222656 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.929688 113.714844 C 57.929688 112.441406 56.898438 111.410156 55.625 111.410156 C 54.351562 111.410156 53.320312 112.441406 53.320312 113.714844 C 53.320312 114.988281 54.351562 116.019531 55.625 116.019531 C 56.898438 116.019531 57.929688 114.988281 57.929688 113.714844 Z M 57.929688 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.480469 113.714844 C 53.480469 112.441406 52.449219 111.410156 51.175781 111.410156 C 49.902344 111.410156 48.871094 112.441406 48.871094 113.714844 C 48.871094 114.988281 49.902344 116.019531 51.175781 116.019531 C 52.449219 116.019531 53.480469 114.988281 53.480469 113.714844 Z M 53.480469 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.46875 113.714844 C 45.46875 112.441406 44.4375 111.410156 43.164062 111.410156 C 41.890625 111.410156 40.859375 112.441406 40.859375 113.714844 C 40.859375 114.988281 41.890625 116.019531 43.164062 116.019531 C 44.4375 116.019531 45.46875 114.988281 45.46875 113.714844 Z M 45.46875 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.699219 113.714844 C 67.699219 112.441406 66.667969 111.410156 65.394531 111.410156 C 64.121094 111.410156 63.089844 112.441406 63.089844 113.714844 C 63.089844 114.988281 64.121094 116.019531 65.394531 116.019531 C 66.667969 116.019531 67.699219 114.988281 67.699219 113.714844 Z M 67.699219 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.765625 113.714844 C 61.765625 112.441406 60.734375 111.410156 59.460938 111.410156 C 58.1875 111.410156 57.15625 112.441406 57.15625 113.714844 C 57.15625 114.988281 58.1875 116.019531 59.460938 116.019531 C 60.734375 116.019531 61.765625 114.988281 61.765625 113.714844 Z M 61.765625 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.488281 113.714844 C 43.488281 112.441406 42.457031 111.410156 41.183594 111.410156 C 39.910156 111.410156 38.878906 112.441406 38.878906 113.714844 C 38.878906 114.988281 39.910156 116.019531 41.183594 116.019531 C 42.457031 116.019531 43.488281 114.988281 43.488281 113.714844 Z M 43.488281 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.996094 113.714844 C 47.996094 112.441406 46.964844 111.410156 45.691406 111.410156 C 44.417969 111.410156 43.386719 112.441406 43.386719 113.714844 C 43.386719 114.988281 44.417969 116.019531 45.691406 116.019531 C 46.964844 116.019531 47.996094 114.988281 47.996094 113.714844 Z M 47.996094 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.570312 113.714844 C 57.570312 112.441406 56.539062 111.410156 55.265625 111.410156 C 53.992188 111.410156 52.960938 112.441406 52.960938 113.714844 C 52.960938 114.988281 53.992188 116.019531 55.265625 116.019531 C 56.539062 116.019531 57.570312 114.988281 57.570312 113.714844 Z M 57.570312 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.304688 113.714844 C 42.304688 112.441406 41.273438 111.410156 40 111.410156 C 38.726562 111.410156 37.695312 112.441406 37.695312 113.714844 C 37.695312 114.988281 38.726562 116.019531 40 116.019531 C 41.273438 116.019531 42.304688 114.988281 42.304688 113.714844 Z M 42.304688 113.714844 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.789062 108.871094 C 68.789062 107.597656 67.757812 106.566406 66.484375 106.566406 C 65.210938 106.566406 64.179688 107.597656 64.179688 108.871094 C 64.179688 110.144531 65.210938 111.175781 66.484375 111.175781 C 67.757812 111.175781 68.789062 110.144531 68.789062 108.871094 Z M 68.789062 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.035156 108.871094 C 49.035156 107.597656 48.003906 106.566406 46.730469 106.566406 C 45.457031 106.566406 44.425781 107.597656 44.425781 108.871094 C 44.425781 110.144531 45.457031 111.175781 46.730469 111.175781 C 48.003906 111.175781 49.035156 110.144531 49.035156 108.871094 Z M 49.035156 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.101562 108.871094 C 61.101562 107.597656 60.070312 106.566406 58.796875 106.566406 C 57.523438 106.566406 56.492188 107.597656 56.492188 108.871094 C 56.492188 110.144531 57.523438 111.175781 58.796875 111.175781 C 60.070312 111.175781 61.101562 110.144531 61.101562 108.871094 Z M 61.101562 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.183594 108.871094 C 50.183594 107.597656 49.152344 106.566406 47.878906 106.566406 C 46.605469 106.566406 45.574219 107.597656 45.574219 108.871094 C 45.574219 110.144531 46.605469 111.175781 47.878906 111.175781 C 49.152344 111.175781 50.183594 110.144531 50.183594 108.871094 Z M 50.183594 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.6875 108.871094 C 53.6875 107.597656 52.65625 106.566406 51.382812 106.566406 C 50.109375 106.566406 49.078125 107.597656 49.078125 108.871094 C 49.078125 110.144531 50.109375 111.175781 51.382812 111.175781 C 52.65625 111.175781 53.6875 110.144531 53.6875 108.871094 Z M 53.6875 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.6875 108.871094 C 58.6875 107.597656 57.65625 106.566406 56.382812 106.566406 C 55.109375 106.566406 54.078125 107.597656 54.078125 108.871094 C 54.078125 110.144531 55.109375 111.175781 56.382812 111.175781 C 57.65625 111.175781 58.6875 110.144531 58.6875 108.871094 Z M 58.6875 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.394531 108.871094 C 61.394531 107.597656 60.363281 106.566406 59.089844 106.566406 C 57.816406 106.566406 56.785156 107.597656 56.785156 108.871094 C 56.785156 110.144531 57.816406 111.175781 59.089844 111.175781 C 60.363281 111.175781 61.394531 110.144531 61.394531 108.871094 Z M 61.394531 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.386719 108.871094 C 52.386719 107.597656 51.355469 106.566406 50.082031 106.566406 C 48.808594 106.566406 47.777344 107.597656 47.777344 108.871094 C 47.777344 110.144531 48.808594 111.175781 50.082031 111.175781 C 51.355469 111.175781 52.386719 110.144531 52.386719 108.871094 Z M 52.386719 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.996094 108.871094 C 70.996094 107.597656 69.964844 106.566406 68.691406 106.566406 C 67.417969 106.566406 66.386719 107.597656 66.386719 108.871094 C 66.386719 110.144531 67.417969 111.175781 68.691406 111.175781 C 69.964844 111.175781 70.996094 110.144531 70.996094 108.871094 Z M 70.996094 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.4375 108.871094 C 60.4375 107.597656 59.40625 106.566406 58.132812 106.566406 C 56.859375 106.566406 55.828125 107.597656 55.828125 108.871094 C 55.828125 110.144531 56.859375 111.175781 58.132812 111.175781 C 59.40625 111.175781 60.4375 110.144531 60.4375 108.871094 Z M 60.4375 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.375 108.871094 C 47.375 107.597656 46.34375 106.566406 45.070312 106.566406 C 43.796875 106.566406 42.765625 107.597656 42.765625 108.871094 C 42.765625 110.144531 43.796875 111.175781 45.070312 111.175781 C 46.34375 111.175781 47.375 110.144531 47.375 108.871094 Z M 47.375 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.195312 108.871094 C 60.195312 107.597656 59.164062 106.566406 57.890625 106.566406 C 56.617188 106.566406 55.585938 107.597656 55.585938 108.871094 C 55.585938 110.144531 56.617188 111.175781 57.890625 111.175781 C 59.164062 111.175781 60.195312 110.144531 60.195312 108.871094 Z M 60.195312 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.417969 108.871094 C 68.417969 107.597656 67.386719 106.566406 66.113281 106.566406 C 64.839844 106.566406 63.808594 107.597656 63.808594 108.871094 C 63.808594 110.144531 64.839844 111.175781 66.113281 111.175781 C 67.386719 111.175781 68.417969 110.144531 68.417969 108.871094 Z M 68.417969 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.335938 108.871094 C 74.335938 107.597656 73.304688 106.566406 72.03125 106.566406 C 70.757812 106.566406 69.726562 107.597656 69.726562 108.871094 C 69.726562 110.144531 70.757812 111.175781 72.03125 111.175781 C 73.304688 111.175781 74.335938 110.144531 74.335938 108.871094 Z M 74.335938 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.96875 108.871094 C 54.96875 107.597656 53.9375 106.566406 52.664062 106.566406 C 51.390625 106.566406 50.359375 107.597656 50.359375 108.871094 C 50.359375 110.144531 51.390625 111.175781 52.664062 111.175781 C 53.9375 111.175781 54.96875 110.144531 54.96875 108.871094 Z M 54.96875 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.886719 108.871094 C 71.886719 107.597656 70.855469 106.566406 69.582031 106.566406 C 68.308594 106.566406 67.277344 107.597656 67.277344 108.871094 C 67.277344 110.144531 68.308594 111.175781 69.582031 111.175781 C 70.855469 111.175781 71.886719 110.144531 71.886719 108.871094 Z M 71.886719 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.980469 108.871094 C 64.980469 107.597656 63.949219 106.566406 62.675781 106.566406 C 61.402344 106.566406 60.371094 107.597656 60.371094 108.871094 C 60.371094 110.144531 61.402344 111.175781 62.675781 111.175781 C 63.949219 111.175781 64.980469 110.144531 64.980469 108.871094 Z M 64.980469 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.09375 108.871094 C 54.09375 107.597656 53.0625 106.566406 51.789062 106.566406 C 50.515625 106.566406 49.484375 107.597656 49.484375 108.871094 C 49.484375 110.144531 50.515625 111.175781 51.789062 111.175781 C 53.0625 111.175781 54.09375 110.144531 54.09375 108.871094 Z M 54.09375 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.824219 108.871094 C 58.824219 107.597656 57.792969 106.566406 56.519531 106.566406 C 55.246094 106.566406 54.214844 107.597656 54.214844 108.871094 C 54.214844 110.144531 55.246094 111.175781 56.519531 111.175781 C 57.792969 111.175781 58.824219 110.144531 58.824219 108.871094 Z M 58.824219 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.726562 108.871094 C 63.726562 107.597656 62.695312 106.566406 61.421875 106.566406 C 60.148438 106.566406 59.117188 107.597656 59.117188 108.871094 C 59.117188 110.144531 60.148438 111.175781 61.421875 111.175781 C 62.695312 111.175781 63.726562 110.144531 63.726562 108.871094 Z M 63.726562 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.113281 108.871094 C 47.113281 107.597656 46.082031 106.566406 44.808594 106.566406 C 43.535156 106.566406 42.503906 107.597656 42.503906 108.871094 C 42.503906 110.144531 43.535156 111.175781 44.808594 111.175781 C 46.082031 111.175781 47.113281 110.144531 47.113281 108.871094 Z M 47.113281 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.984375 108.871094 C 60.984375 107.597656 59.953125 106.566406 58.679688 106.566406 C 57.40625 106.566406 56.375 107.597656 56.375 108.871094 C 56.375 110.144531 57.40625 111.175781 58.679688 111.175781 C 59.953125 111.175781 60.984375 110.144531 60.984375 108.871094 Z M 60.984375 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.050781 108.871094 C 57.050781 107.597656 56.019531 106.566406 54.746094 106.566406 C 53.472656 106.566406 52.441406 107.597656 52.441406 108.871094 C 52.441406 110.144531 53.472656 111.175781 54.746094 111.175781 C 56.019531 111.175781 57.050781 110.144531 57.050781 108.871094 Z M 57.050781 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.976562 108.871094 C 49.976562 107.597656 48.945312 106.566406 47.671875 106.566406 C 46.398438 106.566406 45.367188 107.597656 45.367188 108.871094 C 45.367188 110.144531 46.398438 111.175781 47.671875 111.175781 C 48.945312 111.175781 49.976562 110.144531 49.976562 108.871094 Z M 49.976562 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.613281 108.871094 C 69.613281 107.597656 68.582031 106.566406 67.308594 106.566406 C 66.035156 106.566406 65.003906 107.597656 65.003906 108.871094 C 65.003906 110.144531 66.035156 111.175781 67.308594 111.175781 C 68.582031 111.175781 69.613281 110.144531 69.613281 108.871094 Z M 69.613281 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.371094 108.871094 C 64.371094 107.597656 63.339844 106.566406 62.066406 106.566406 C 60.792969 106.566406 59.761719 107.597656 59.761719 108.871094 C 59.761719 110.144531 60.792969 111.175781 62.066406 111.175781 C 63.339844 111.175781 64.371094 110.144531 64.371094 108.871094 Z M 64.371094 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.230469 108.871094 C 48.230469 107.597656 47.199219 106.566406 45.925781 106.566406 C 44.652344 106.566406 43.621094 107.597656 43.621094 108.871094 C 43.621094 110.144531 44.652344 111.175781 45.925781 111.175781 C 47.199219 111.175781 48.230469 110.144531 48.230469 108.871094 Z M 48.230469 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.210938 108.871094 C 52.210938 107.597656 51.179688 106.566406 49.90625 106.566406 C 48.632812 106.566406 47.601562 107.597656 47.601562 108.871094 C 47.601562 110.144531 48.632812 111.175781 49.90625 111.175781 C 51.179688 111.175781 52.210938 110.144531 52.210938 108.871094 Z M 52.210938 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.667969 108.871094 C 60.667969 107.597656 59.636719 106.566406 58.363281 106.566406 C 57.089844 106.566406 56.058594 107.597656 56.058594 108.871094 C 56.058594 110.144531 57.089844 111.175781 58.363281 111.175781 C 59.636719 111.175781 60.667969 110.144531 60.667969 108.871094 Z M 60.667969 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.183594 108.871094 C 47.183594 107.597656 46.152344 106.566406 44.878906 106.566406 C 43.605469 106.566406 42.574219 107.597656 42.574219 108.871094 C 42.574219 110.144531 43.605469 111.175781 44.878906 111.175781 C 46.152344 111.175781 47.183594 110.144531 47.183594 108.871094 Z M 47.183594 108.871094 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.667969 104.027344 C 70.667969 102.753906 69.636719 101.722656 68.363281 101.722656 C 67.089844 101.722656 66.058594 102.753906 66.058594 104.027344 C 66.058594 105.300781 67.089844 106.332031 68.363281 106.332031 C 69.636719 106.332031 70.667969 105.300781 70.667969 104.027344 Z M 70.667969 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.722656 104.027344 C 53.722656 102.753906 52.691406 101.722656 51.417969 101.722656 C 50.144531 101.722656 49.113281 102.753906 49.113281 104.027344 C 49.113281 105.300781 50.144531 106.332031 51.417969 106.332031 C 52.691406 106.332031 53.722656 105.300781 53.722656 104.027344 Z M 53.722656 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.074219 104.027344 C 64.074219 102.753906 63.042969 101.722656 61.769531 101.722656 C 60.496094 101.722656 59.464844 102.753906 59.464844 104.027344 C 59.464844 105.300781 60.496094 106.332031 61.769531 106.332031 C 63.042969 106.332031 64.074219 105.300781 64.074219 104.027344 Z M 64.074219 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.414062 104.027344 C 76.414062 102.753906 75.382812 101.722656 74.109375 101.722656 C 72.835938 101.722656 71.804688 102.753906 71.804688 104.027344 C 71.804688 105.300781 72.835938 106.332031 74.109375 106.332031 C 75.382812 106.332031 76.414062 105.300781 76.414062 104.027344 Z M 76.414062 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.714844 104.027344 C 57.714844 102.753906 56.683594 101.722656 55.410156 101.722656 C 54.136719 101.722656 53.105469 102.753906 53.105469 104.027344 C 53.105469 105.300781 54.136719 106.332031 55.410156 106.332031 C 56.683594 106.332031 57.714844 105.300781 57.714844 104.027344 Z M 57.714844 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.003906 104.027344 C 62.003906 102.753906 60.972656 101.722656 59.699219 101.722656 C 58.425781 101.722656 57.394531 102.753906 57.394531 104.027344 C 57.394531 105.300781 58.425781 106.332031 59.699219 106.332031 C 60.972656 106.332031 62.003906 105.300781 62.003906 104.027344 Z M 62.003906 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.324219 104.027344 C 64.324219 102.753906 63.292969 101.722656 62.019531 101.722656 C 60.746094 101.722656 59.714844 102.753906 59.714844 104.027344 C 59.714844 105.300781 60.746094 106.332031 62.019531 106.332031 C 63.292969 106.332031 64.324219 105.300781 64.324219 104.027344 Z M 64.324219 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.601562 104.027344 C 56.601562 102.753906 55.570312 101.722656 54.296875 101.722656 C 53.023438 101.722656 51.992188 102.753906 51.992188 104.027344 C 51.992188 105.300781 53.023438 106.332031 54.296875 106.332031 C 55.570312 106.332031 56.601562 105.300781 56.601562 104.027344 Z M 56.601562 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.5625 104.027344 C 72.5625 102.753906 71.53125 101.722656 70.257812 101.722656 C 68.984375 101.722656 67.953125 102.753906 67.953125 104.027344 C 67.953125 105.300781 68.984375 106.332031 70.257812 106.332031 C 71.53125 106.332031 72.5625 105.300781 72.5625 104.027344 Z M 72.5625 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.503906 104.027344 C 63.503906 102.753906 62.472656 101.722656 61.199219 101.722656 C 59.925781 101.722656 58.894531 102.753906 58.894531 104.027344 C 58.894531 105.300781 59.925781 106.332031 61.199219 106.332031 C 62.472656 106.332031 63.503906 105.300781 63.503906 104.027344 Z M 63.503906 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.300781 104.027344 C 52.300781 102.753906 51.269531 101.722656 49.996094 101.722656 C 48.722656 101.722656 47.691406 102.753906 47.691406 104.027344 C 47.691406 105.300781 48.722656 106.332031 49.996094 106.332031 C 51.269531 106.332031 52.300781 105.300781 52.300781 104.027344 Z M 52.300781 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.296875 104.027344 C 63.296875 102.753906 62.265625 101.722656 60.992188 101.722656 C 59.71875 101.722656 58.6875 102.753906 58.6875 104.027344 C 58.6875 105.300781 59.71875 106.332031 60.992188 106.332031 C 62.265625 106.332031 63.296875 105.300781 63.296875 104.027344 Z M 63.296875 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.347656 104.027344 C 70.347656 102.753906 69.316406 101.722656 68.042969 101.722656 C 66.769531 101.722656 65.738281 102.753906 65.738281 104.027344 C 65.738281 105.300781 66.769531 106.332031 68.042969 106.332031 C 69.316406 106.332031 70.347656 105.300781 70.347656 104.027344 Z M 70.347656 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.570312 104.027344 C 58.570312 102.753906 57.539062 101.722656 56.265625 101.722656 C 54.992188 101.722656 53.960938 102.753906 53.960938 104.027344 C 53.960938 105.300781 54.992188 106.332031 56.265625 106.332031 C 57.539062 106.332031 58.570312 105.300781 58.570312 104.027344 Z M 58.570312 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.8125 104.027344 C 58.8125 102.753906 57.78125 101.722656 56.507812 101.722656 C 55.234375 101.722656 54.203125 102.753906 54.203125 104.027344 C 54.203125 105.300781 55.234375 106.332031 56.507812 106.332031 C 57.78125 106.332031 58.8125 105.300781 58.8125 104.027344 Z M 58.8125 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.328125 104.027344 C 73.328125 102.753906 72.296875 101.722656 71.023438 101.722656 C 69.75 101.722656 68.71875 102.753906 68.71875 104.027344 C 68.71875 105.300781 69.75 106.332031 71.023438 106.332031 C 72.296875 106.332031 73.328125 105.300781 73.328125 104.027344 Z M 73.328125 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.402344 104.027344 C 67.402344 102.753906 66.371094 101.722656 65.097656 101.722656 C 63.824219 101.722656 62.792969 102.753906 62.792969 104.027344 C 62.792969 105.300781 63.824219 106.332031 65.097656 106.332031 C 66.371094 106.332031 67.402344 105.300781 67.402344 104.027344 Z M 67.402344 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.0625 104.027344 C 58.0625 102.753906 57.03125 101.722656 55.757812 101.722656 C 54.484375 101.722656 53.453125 102.753906 53.453125 104.027344 C 53.453125 105.300781 54.484375 106.332031 55.757812 106.332031 C 57.03125 106.332031 58.0625 105.300781 58.0625 104.027344 Z M 58.0625 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.121094 104.027344 C 62.121094 102.753906 61.089844 101.722656 59.816406 101.722656 C 58.542969 101.722656 57.511719 102.753906 57.511719 104.027344 C 57.511719 105.300781 58.542969 106.332031 59.816406 106.332031 C 61.089844 106.332031 62.121094 105.300781 62.121094 104.027344 Z M 62.121094 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.324219 104.027344 C 66.324219 102.753906 65.292969 101.722656 64.019531 101.722656 C 62.746094 101.722656 61.714844 102.753906 61.714844 104.027344 C 61.714844 105.300781 62.746094 106.332031 64.019531 106.332031 C 65.292969 106.332031 66.324219 105.300781 66.324219 104.027344 Z M 66.324219 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.074219 104.027344 C 52.074219 102.753906 51.042969 101.722656 49.769531 101.722656 C 48.496094 101.722656 47.464844 102.753906 47.464844 104.027344 C 47.464844 105.300781 48.496094 106.332031 49.769531 106.332031 C 51.042969 106.332031 52.074219 105.300781 52.074219 104.027344 Z M 52.074219 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.972656 104.027344 C 63.972656 102.753906 62.941406 101.722656 61.667969 101.722656 C 60.394531 101.722656 59.363281 102.753906 59.363281 104.027344 C 59.363281 105.300781 60.394531 106.332031 61.667969 106.332031 C 62.941406 106.332031 63.972656 105.300781 63.972656 104.027344 Z M 63.972656 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.601562 104.027344 C 60.601562 102.753906 59.570312 101.722656 58.296875 101.722656 C 57.023438 101.722656 55.992188 102.753906 55.992188 104.027344 C 55.992188 105.300781 57.023438 106.332031 58.296875 106.332031 C 59.570312 106.332031 60.601562 105.300781 60.601562 104.027344 Z M 60.601562 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.777344 104.027344 C 58.777344 102.753906 57.746094 101.722656 56.472656 101.722656 C 55.199219 101.722656 54.167969 102.753906 54.167969 104.027344 C 54.167969 105.300781 55.199219 106.332031 56.472656 106.332031 C 57.746094 106.332031 58.777344 105.300781 58.777344 104.027344 Z M 58.777344 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.375 104.027344 C 71.375 102.753906 70.34375 101.722656 69.070312 101.722656 C 67.796875 101.722656 66.765625 102.753906 66.765625 104.027344 C 66.765625 105.300781 67.796875 106.332031 69.070312 106.332031 C 70.34375 106.332031 71.375 105.300781 71.375 104.027344 Z M 71.375 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.878906 104.027344 C 66.878906 102.753906 65.847656 101.722656 64.574219 101.722656 C 63.300781 101.722656 62.269531 102.753906 62.269531 104.027344 C 62.269531 105.300781 63.300781 106.332031 64.574219 106.332031 C 65.847656 106.332031 66.878906 105.300781 66.878906 104.027344 Z M 66.878906 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.03125 104.027344 C 53.03125 102.753906 52 101.722656 50.726562 101.722656 C 49.453125 101.722656 48.421875 102.753906 48.421875 104.027344 C 48.421875 105.300781 49.453125 106.332031 50.726562 106.332031 C 52 106.332031 53.03125 105.300781 53.03125 104.027344 Z M 53.03125 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.445312 104.027344 C 56.445312 102.753906 55.414062 101.722656 54.140625 101.722656 C 52.867188 101.722656 51.835938 102.753906 51.835938 104.027344 C 51.835938 105.300781 52.867188 106.332031 54.140625 106.332031 C 55.414062 106.332031 56.445312 105.300781 56.445312 104.027344 Z M 56.445312 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.703125 104.027344 C 63.703125 102.753906 62.671875 101.722656 61.398438 101.722656 C 60.125 101.722656 59.09375 102.753906 59.09375 104.027344 C 59.09375 105.300781 60.125 106.332031 61.398438 106.332031 C 62.671875 106.332031 63.703125 105.300781 63.703125 104.027344 Z M 63.703125 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.132812 104.027344 C 52.132812 102.753906 51.101562 101.722656 49.828125 101.722656 C 48.554688 101.722656 47.523438 102.753906 47.523438 104.027344 C 47.523438 105.300781 48.554688 106.332031 49.828125 106.332031 C 51.101562 106.332031 52.132812 105.300781 52.132812 104.027344 Z M 52.132812 104.027344 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.386719 99.179688 C 72.386719 97.90625 71.355469 96.875 70.082031 96.875 C 68.808594 96.875 67.777344 97.90625 67.777344 99.179688 C 67.777344 100.453125 68.808594 101.484375 70.082031 101.484375 C 71.355469 101.484375 72.386719 100.453125 72.386719 99.179688 Z M 72.386719 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.417969 99.179688 C 58.417969 97.90625 57.386719 96.875 56.113281 96.875 C 54.839844 96.875 53.808594 97.90625 53.808594 99.179688 C 53.808594 100.453125 54.839844 101.484375 56.113281 101.484375 C 57.386719 101.484375 58.417969 100.453125 58.417969 99.179688 Z M 58.417969 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.949219 99.179688 C 66.949219 97.90625 65.917969 96.875 64.644531 96.875 C 63.371094 96.875 62.339844 97.90625 62.339844 99.179688 C 62.339844 100.453125 63.371094 101.484375 64.644531 101.484375 C 65.917969 101.484375 66.949219 100.453125 66.949219 99.179688 Z M 66.949219 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 59.230469 99.179688 C 59.230469 97.90625 58.199219 96.875 56.925781 96.875 C 55.652344 96.875 54.621094 97.90625 54.621094 99.179688 C 54.621094 100.453125 55.652344 101.484375 56.925781 101.484375 C 58.199219 101.484375 59.230469 100.453125 59.230469 99.179688 Z M 59.230469 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.707031 99.179688 C 61.707031 97.90625 60.675781 96.875 59.402344 96.875 C 58.128906 96.875 57.097656 97.90625 57.097656 99.179688 C 57.097656 100.453125 58.128906 101.484375 59.402344 101.484375 C 60.675781 101.484375 61.707031 100.453125 61.707031 99.179688 Z M 61.707031 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.246094 99.179688 C 65.246094 97.90625 64.214844 96.875 62.941406 96.875 C 61.667969 96.875 60.636719 97.90625 60.636719 99.179688 C 60.636719 100.453125 61.667969 101.484375 62.941406 101.484375 C 64.214844 101.484375 65.246094 100.453125 65.246094 99.179688 Z M 65.246094 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.15625 99.179688 C 67.15625 97.90625 66.125 96.875 64.851562 96.875 C 63.578125 96.875 62.546875 97.90625 62.546875 99.179688 C 62.546875 100.453125 63.578125 101.484375 64.851562 101.484375 C 66.125 101.484375 67.15625 100.453125 67.15625 99.179688 Z M 67.15625 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.789062 99.179688 C 60.789062 97.90625 59.757812 96.875 58.484375 96.875 C 57.210938 96.875 56.179688 97.90625 56.179688 99.179688 C 56.179688 100.453125 57.210938 101.484375 58.484375 101.484375 C 59.757812 101.484375 60.789062 100.453125 60.789062 99.179688 Z M 60.789062 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.949219 99.179688 C 73.949219 97.90625 72.917969 96.875 71.644531 96.875 C 70.371094 96.875 69.339844 97.90625 69.339844 99.179688 C 69.339844 100.453125 70.371094 101.484375 71.644531 101.484375 C 72.917969 101.484375 73.949219 100.453125 73.949219 99.179688 Z M 73.949219 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.480469 99.179688 C 66.480469 97.90625 65.449219 96.875 64.175781 96.875 C 62.902344 96.875 61.871094 97.90625 61.871094 99.179688 C 61.871094 100.453125 62.902344 101.484375 64.175781 101.484375 C 65.449219 101.484375 66.480469 100.453125 66.480469 99.179688 Z M 66.480469 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.246094 99.179688 C 57.246094 97.90625 56.214844 96.875 54.941406 96.875 C 53.667969 96.875 52.636719 97.90625 52.636719 99.179688 C 52.636719 100.453125 53.667969 101.484375 54.941406 101.484375 C 56.214844 101.484375 57.246094 100.453125 57.246094 99.179688 Z M 57.246094 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.3125 99.179688 C 66.3125 97.90625 65.28125 96.875 64.007812 96.875 C 62.734375 96.875 61.703125 97.90625 61.703125 99.179688 C 61.703125 100.453125 62.734375 101.484375 64.007812 101.484375 C 65.28125 101.484375 66.3125 100.453125 66.3125 99.179688 Z M 66.3125 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.125 99.179688 C 72.125 97.90625 71.09375 96.875 69.820312 96.875 C 68.546875 96.875 67.515625 97.90625 67.515625 99.179688 C 67.515625 100.453125 68.546875 101.484375 69.820312 101.484375 C 71.09375 101.484375 72.125 100.453125 72.125 99.179688 Z M 72.125 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.414062 99.179688 C 62.414062 97.90625 61.382812 96.875 60.109375 96.875 C 58.835938 96.875 57.804688 97.90625 57.804688 99.179688 C 57.804688 100.453125 58.835938 101.484375 60.109375 101.484375 C 61.382812 101.484375 62.414062 100.453125 62.414062 99.179688 Z M 62.414062 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.613281 99.179688 C 62.613281 97.90625 61.582031 96.875 60.308594 96.875 C 59.035156 96.875 58.003906 97.90625 58.003906 99.179688 C 58.003906 100.453125 59.035156 101.484375 60.308594 101.484375 C 61.582031 101.484375 62.613281 100.453125 62.613281 99.179688 Z M 62.613281 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.578125 99.179688 C 74.578125 97.90625 73.546875 96.875 72.273438 96.875 C 71 96.875 69.96875 97.90625 69.96875 99.179688 C 69.96875 100.453125 71 101.484375 72.273438 101.484375 C 73.546875 101.484375 74.578125 100.453125 74.578125 99.179688 Z M 74.578125 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.695312 99.179688 C 69.695312 97.90625 68.664062 96.875 67.390625 96.875 C 66.117188 96.875 65.085938 97.90625 65.085938 99.179688 C 65.085938 100.453125 66.117188 101.484375 67.390625 101.484375 C 68.664062 101.484375 69.695312 100.453125 69.695312 99.179688 Z M 69.695312 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.996094 99.179688 C 61.996094 97.90625 60.964844 96.875 59.691406 96.875 C 58.417969 96.875 57.386719 97.90625 57.386719 99.179688 C 57.386719 100.453125 58.417969 101.484375 59.691406 101.484375 C 60.964844 101.484375 61.996094 100.453125 61.996094 99.179688 Z M 61.996094 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.339844 99.179688 C 65.339844 97.90625 64.308594 96.875 63.035156 96.875 C 61.761719 96.875 60.730469 97.90625 60.730469 99.179688 C 60.730469 100.453125 61.761719 101.484375 63.035156 101.484375 C 64.308594 101.484375 65.339844 100.453125 65.339844 99.179688 Z M 65.339844 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.804688 99.179688 C 68.804688 97.90625 67.773438 96.875 66.5 96.875 C 65.226562 96.875 64.195312 97.90625 64.195312 99.179688 C 64.195312 100.453125 65.226562 101.484375 66.5 101.484375 C 67.773438 101.484375 68.804688 100.453125 68.804688 99.179688 Z M 68.804688 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.058594 99.179688 C 57.058594 97.90625 56.027344 96.875 54.753906 96.875 C 53.480469 96.875 52.449219 97.90625 52.449219 99.179688 C 52.449219 100.453125 53.480469 101.484375 54.753906 101.484375 C 56.027344 101.484375 57.058594 100.453125 57.058594 99.179688 Z M 57.058594 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.867188 99.179688 C 66.867188 97.90625 65.835938 96.875 64.5625 96.875 C 63.289062 96.875 62.257812 97.90625 62.257812 99.179688 C 62.257812 100.453125 63.289062 101.484375 64.5625 101.484375 C 65.835938 101.484375 66.867188 100.453125 66.867188 99.179688 Z M 66.867188 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.089844 99.179688 C 64.089844 97.90625 63.058594 96.875 61.785156 96.875 C 60.511719 96.875 59.480469 97.90625 59.480469 99.179688 C 59.480469 100.453125 60.511719 101.484375 61.785156 101.484375 C 63.058594 101.484375 64.089844 100.453125 64.089844 99.179688 Z M 64.089844 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 59.085938 99.179688 C 59.085938 97.90625 58.054688 96.875 56.78125 96.875 C 55.507812 96.875 54.476562 97.90625 54.476562 99.179688 C 54.476562 100.453125 55.507812 101.484375 56.78125 101.484375 C 58.054688 101.484375 59.085938 100.453125 59.085938 99.179688 Z M 59.085938 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.96875 99.179688 C 72.96875 97.90625 71.9375 96.875 70.664062 96.875 C 69.390625 96.875 68.359375 97.90625 68.359375 99.179688 C 68.359375 100.453125 69.390625 101.484375 70.664062 101.484375 C 71.9375 101.484375 72.96875 100.453125 72.96875 99.179688 Z M 72.96875 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.265625 99.179688 C 69.265625 97.90625 68.234375 96.875 66.960938 96.875 C 65.6875 96.875 64.65625 97.90625 64.65625 99.179688 C 64.65625 100.453125 65.6875 101.484375 66.960938 101.484375 C 68.234375 101.484375 69.265625 100.453125 69.265625 99.179688 Z M 69.265625 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.847656 99.179688 C 57.847656 97.90625 56.816406 96.875 55.542969 96.875 C 54.269531 96.875 53.238281 97.90625 53.238281 99.179688 C 53.238281 100.453125 54.269531 101.484375 55.542969 101.484375 C 56.816406 101.484375 57.847656 100.453125 57.847656 99.179688 Z M 57.847656 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.664062 99.179688 C 60.664062 97.90625 59.632812 96.875 58.359375 96.875 C 57.085938 96.875 56.054688 97.90625 56.054688 99.179688 C 56.054688 100.453125 57.085938 101.484375 58.359375 101.484375 C 59.632812 101.484375 60.664062 100.453125 60.664062 99.179688 Z M 60.664062 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.644531 99.179688 C 66.644531 97.90625 65.613281 96.875 64.339844 96.875 C 63.066406 96.875 62.035156 97.90625 62.035156 99.179688 C 62.035156 100.453125 63.066406 101.484375 64.339844 101.484375 C 65.613281 101.484375 66.644531 100.453125 66.644531 99.179688 Z M 66.644531 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.109375 99.179688 C 57.109375 97.90625 56.078125 96.875 54.804688 96.875 C 53.53125 96.875 52.5 97.90625 52.5 99.179688 C 52.5 100.453125 53.53125 101.484375 54.804688 101.484375 C 56.078125 101.484375 57.109375 100.453125 57.109375 99.179688 Z M 57.109375 99.179688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.925781 94.335938 C 73.925781 93.0625 72.894531 92.03125 71.621094 92.03125 C 70.347656 92.03125 69.316406 93.0625 69.316406 94.335938 C 69.316406 95.609375 70.347656 96.640625 71.621094 96.640625 C 72.894531 96.640625 73.925781 95.609375 73.925781 94.335938 Z M 73.925781 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.074219 94.335938 C 63.074219 93.0625 62.042969 92.03125 60.769531 92.03125 C 59.496094 92.03125 58.464844 93.0625 58.464844 94.335938 C 58.464844 95.609375 59.496094 96.640625 60.769531 96.640625 C 62.042969 96.640625 63.074219 95.609375 63.074219 94.335938 Z M 63.074219 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.703125 94.335938 C 69.703125 93.0625 68.671875 92.03125 67.398438 92.03125 C 66.125 92.03125 65.09375 93.0625 65.09375 94.335938 C 65.09375 95.609375 66.125 96.640625 67.398438 96.640625 C 68.671875 96.640625 69.703125 95.609375 69.703125 94.335938 Z M 69.703125 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.707031 94.335938 C 63.707031 93.0625 62.675781 92.03125 61.402344 92.03125 C 60.128906 92.03125 59.097656 93.0625 59.097656 94.335938 C 59.097656 95.609375 60.128906 96.640625 61.402344 96.640625 C 62.675781 96.640625 63.707031 95.609375 63.707031 94.335938 Z M 63.707031 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.628906 94.335938 C 65.628906 93.0625 64.597656 92.03125 63.324219 92.03125 C 62.050781 92.03125 61.019531 93.0625 61.019531 94.335938 C 61.019531 95.609375 62.050781 96.640625 63.324219 96.640625 C 64.597656 96.640625 65.628906 95.609375 65.628906 94.335938 Z M 65.628906 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.378906 94.335938 C 68.378906 93.0625 67.347656 92.03125 66.074219 92.03125 C 64.800781 92.03125 63.769531 93.0625 63.769531 94.335938 C 63.769531 95.609375 64.800781 96.640625 66.074219 96.640625 C 67.347656 96.640625 68.378906 95.609375 68.378906 94.335938 Z M 68.378906 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.863281 94.335938 C 69.863281 93.0625 68.832031 92.03125 67.558594 92.03125 C 66.285156 92.03125 65.253906 93.0625 65.253906 94.335938 C 65.253906 95.609375 66.285156 96.640625 67.558594 96.640625 C 68.832031 96.640625 69.863281 95.609375 69.863281 94.335938 Z M 69.863281 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.917969 94.335938 C 64.917969 93.0625 63.886719 92.03125 62.613281 92.03125 C 61.339844 92.03125 60.308594 93.0625 60.308594 94.335938 C 60.308594 95.609375 61.339844 96.640625 62.613281 96.640625 C 63.886719 96.640625 64.917969 95.609375 64.917969 94.335938 Z M 64.917969 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.140625 94.335938 C 75.140625 93.0625 74.109375 92.03125 72.835938 92.03125 C 71.5625 92.03125 70.53125 93.0625 70.53125 94.335938 C 70.53125 95.609375 71.5625 96.640625 72.835938 96.640625 C 74.109375 96.640625 75.140625 95.609375 75.140625 94.335938 Z M 75.140625 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.339844 94.335938 C 69.339844 93.0625 68.308594 92.03125 67.035156 92.03125 C 65.761719 92.03125 64.730469 93.0625 64.730469 94.335938 C 64.730469 95.609375 65.761719 96.640625 67.035156 96.640625 C 68.308594 96.640625 69.339844 95.609375 69.339844 94.335938 Z M 69.339844 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.164062 94.335938 C 62.164062 93.0625 61.132812 92.03125 59.859375 92.03125 C 58.585938 92.03125 57.554688 93.0625 57.554688 94.335938 C 57.554688 95.609375 58.585938 96.640625 59.859375 96.640625 C 61.132812 96.640625 62.164062 95.609375 62.164062 94.335938 Z M 62.164062 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.207031 94.335938 C 69.207031 93.0625 68.175781 92.03125 66.902344 92.03125 C 65.628906 92.03125 64.597656 93.0625 64.597656 94.335938 C 64.597656 95.609375 65.628906 96.640625 66.902344 96.640625 C 68.175781 96.640625 69.207031 95.609375 69.207031 94.335938 Z M 69.207031 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.722656 94.335938 C 73.722656 93.0625 72.691406 92.03125 71.417969 92.03125 C 70.144531 92.03125 69.113281 93.0625 69.113281 94.335938 C 69.113281 95.609375 70.144531 96.640625 71.417969 96.640625 C 72.691406 96.640625 73.722656 95.609375 73.722656 94.335938 Z M 73.722656 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.179688 94.335938 C 66.179688 93.0625 65.148438 92.03125 63.875 92.03125 C 62.601562 92.03125 61.570312 93.0625 61.570312 94.335938 C 61.570312 95.609375 62.601562 96.640625 63.875 96.640625 C 65.148438 96.640625 66.179688 95.609375 66.179688 94.335938 Z M 66.179688 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.335938 94.335938 C 66.335938 93.0625 65.304688 92.03125 64.03125 92.03125 C 62.757812 92.03125 61.726562 93.0625 61.726562 94.335938 C 61.726562 95.609375 62.757812 96.640625 64.03125 96.640625 C 65.304688 96.640625 66.335938 95.609375 66.335938 94.335938 Z M 66.335938 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.628906 94.335938 C 75.628906 93.0625 74.597656 92.03125 73.324219 92.03125 C 72.050781 92.03125 71.019531 93.0625 71.019531 94.335938 C 71.019531 95.609375 72.050781 96.640625 73.324219 96.640625 C 74.597656 96.640625 75.628906 95.609375 75.628906 94.335938 Z M 75.628906 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.835938 94.335938 C 71.835938 93.0625 70.804688 92.03125 69.53125 92.03125 C 68.257812 92.03125 67.226562 93.0625 67.226562 94.335938 C 67.226562 95.609375 68.257812 96.640625 69.53125 96.640625 C 70.804688 96.640625 71.835938 95.609375 71.835938 94.335938 Z M 71.835938 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.855469 94.335938 C 65.855469 93.0625 64.824219 92.03125 63.550781 92.03125 C 62.277344 92.03125 61.246094 93.0625 61.246094 94.335938 C 61.246094 95.609375 62.277344 96.640625 63.550781 96.640625 C 64.824219 96.640625 65.855469 95.609375 65.855469 94.335938 Z M 65.855469 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.453125 94.335938 C 68.453125 93.0625 67.421875 92.03125 66.148438 92.03125 C 64.875 92.03125 63.84375 93.0625 63.84375 94.335938 C 63.84375 95.609375 64.875 96.640625 66.148438 96.640625 C 67.421875 96.640625 68.453125 95.609375 68.453125 94.335938 Z M 68.453125 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.144531 94.335938 C 71.144531 93.0625 70.113281 92.03125 68.839844 92.03125 C 67.566406 92.03125 66.535156 93.0625 66.535156 94.335938 C 66.535156 95.609375 67.566406 96.640625 68.839844 96.640625 C 70.113281 96.640625 71.144531 95.609375 71.144531 94.335938 Z M 71.144531 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.019531 94.335938 C 62.019531 93.0625 60.988281 92.03125 59.714844 92.03125 C 58.441406 92.03125 57.410156 93.0625 57.410156 94.335938 C 57.410156 95.609375 58.441406 96.640625 59.714844 96.640625 C 60.988281 96.640625 62.019531 95.609375 62.019531 94.335938 Z M 62.019531 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.640625 94.335938 C 69.640625 93.0625 68.609375 92.03125 67.335938 92.03125 C 66.0625 92.03125 65.03125 93.0625 65.03125 94.335938 C 65.03125 95.609375 66.0625 96.640625 67.335938 96.640625 C 68.609375 96.640625 69.640625 95.609375 69.640625 94.335938 Z M 69.640625 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.480469 94.335938 C 67.480469 93.0625 66.449219 92.03125 65.175781 92.03125 C 63.902344 92.03125 62.871094 93.0625 62.871094 94.335938 C 62.871094 95.609375 63.902344 96.640625 65.175781 96.640625 C 66.449219 96.640625 67.480469 95.609375 67.480469 94.335938 Z M 67.480469 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.59375 94.335938 C 63.59375 93.0625 62.5625 92.03125 61.289062 92.03125 C 60.015625 92.03125 58.984375 93.0625 58.984375 94.335938 C 58.984375 95.609375 60.015625 96.640625 61.289062 96.640625 C 62.5625 96.640625 63.59375 95.609375 63.59375 94.335938 Z M 63.59375 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.378906 94.335938 C 74.378906 93.0625 73.347656 92.03125 72.074219 92.03125 C 70.800781 92.03125 69.769531 93.0625 69.769531 94.335938 C 69.769531 95.609375 70.800781 96.640625 72.074219 96.640625 C 73.347656 96.640625 74.378906 95.609375 74.378906 94.335938 Z M 74.378906 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.5 94.335938 C 71.5 93.0625 70.46875 92.03125 69.195312 92.03125 C 67.921875 92.03125 66.890625 93.0625 66.890625 94.335938 C 66.890625 95.609375 67.921875 96.640625 69.195312 96.640625 C 70.46875 96.640625 71.5 95.609375 71.5 94.335938 Z M 71.5 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.632812 94.335938 C 62.632812 93.0625 61.601562 92.03125 60.328125 92.03125 C 59.054688 92.03125 58.023438 93.0625 58.023438 94.335938 C 58.023438 95.609375 59.054688 96.640625 60.328125 96.640625 C 61.601562 96.640625 62.632812 95.609375 62.632812 94.335938 Z M 62.632812 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.820312 94.335938 C 64.820312 93.0625 63.789062 92.03125 62.515625 92.03125 C 61.242188 92.03125 60.210938 93.0625 60.210938 94.335938 C 60.210938 95.609375 61.242188 96.640625 62.515625 96.640625 C 63.789062 96.640625 64.820312 95.609375 64.820312 94.335938 Z M 64.820312 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.464844 94.335938 C 69.464844 93.0625 68.433594 92.03125 67.160156 92.03125 C 65.886719 92.03125 64.855469 93.0625 64.855469 94.335938 C 64.855469 95.609375 65.886719 96.640625 67.160156 96.640625 C 68.433594 96.640625 69.464844 95.609375 69.464844 94.335938 Z M 69.464844 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.058594 94.335938 C 62.058594 93.0625 61.027344 92.03125 59.753906 92.03125 C 58.480469 92.03125 57.449219 93.0625 57.449219 94.335938 C 57.449219 95.609375 58.480469 96.640625 59.753906 96.640625 C 61.027344 96.640625 62.058594 95.609375 62.058594 94.335938 Z M 62.058594 94.335938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.273438 89.492188 C 75.273438 88.21875 74.242188 87.1875 72.96875 87.1875 C 71.695312 87.1875 70.664062 88.21875 70.664062 89.492188 C 70.664062 90.765625 71.695312 91.796875 72.96875 91.796875 C 74.242188 91.796875 75.273438 90.765625 75.273438 89.492188 Z M 75.273438 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.644531 89.492188 C 67.644531 88.21875 66.613281 87.1875 65.339844 87.1875 C 64.066406 87.1875 63.035156 88.21875 63.035156 89.492188 C 63.035156 90.765625 64.066406 91.796875 65.339844 91.796875 C 66.613281 91.796875 67.644531 90.765625 67.644531 89.492188 Z M 67.644531 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.304688 89.492188 C 72.304688 88.21875 71.273438 87.1875 70 87.1875 C 68.726562 87.1875 67.695312 88.21875 67.695312 89.492188 C 67.695312 90.765625 68.726562 91.796875 70 91.796875 C 71.273438 91.796875 72.304688 90.765625 72.304688 89.492188 Z M 72.304688 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.089844 89.492188 C 68.089844 88.21875 67.058594 87.1875 65.785156 87.1875 C 64.511719 87.1875 63.480469 88.21875 63.480469 89.492188 C 63.480469 90.765625 64.511719 91.796875 65.785156 91.796875 C 67.058594 91.796875 68.089844 90.765625 68.089844 89.492188 Z M 68.089844 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.441406 89.492188 C 69.441406 88.21875 68.410156 87.1875 67.136719 87.1875 C 65.863281 87.1875 64.832031 88.21875 64.832031 89.492188 C 64.832031 90.765625 65.863281 91.796875 67.136719 91.796875 C 68.410156 91.796875 69.441406 90.765625 69.441406 89.492188 Z M 69.441406 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.371094 89.492188 C 71.371094 88.21875 70.339844 87.1875 69.066406 87.1875 C 67.792969 87.1875 66.761719 88.21875 66.761719 89.492188 C 66.761719 90.765625 67.792969 91.796875 69.066406 91.796875 C 70.339844 91.796875 71.371094 90.765625 71.371094 89.492188 Z M 71.371094 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.417969 89.492188 C 72.417969 88.21875 71.386719 87.1875 70.113281 87.1875 C 68.839844 87.1875 67.808594 88.21875 67.808594 89.492188 C 67.808594 90.765625 68.839844 91.796875 70.113281 91.796875 C 71.386719 91.796875 72.417969 90.765625 72.417969 89.492188 Z M 72.417969 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.941406 89.492188 C 68.941406 88.21875 67.910156 87.1875 66.636719 87.1875 C 65.363281 87.1875 64.332031 88.21875 64.332031 89.492188 C 64.332031 90.765625 65.363281 91.796875 66.636719 91.796875 C 67.910156 91.796875 68.941406 90.765625 68.941406 89.492188 Z M 68.941406 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.125 89.492188 C 76.125 88.21875 75.09375 87.1875 73.820312 87.1875 C 72.546875 87.1875 71.515625 88.21875 71.515625 89.492188 C 71.515625 90.765625 72.546875 91.796875 73.820312 91.796875 C 75.09375 91.796875 76.125 90.765625 76.125 89.492188 Z M 76.125 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.046875 89.492188 C 72.046875 88.21875 71.015625 87.1875 69.742188 87.1875 C 68.46875 87.1875 67.4375 88.21875 67.4375 89.492188 C 67.4375 90.765625 68.46875 91.796875 69.742188 91.796875 C 71.015625 91.796875 72.046875 90.765625 72.046875 89.492188 Z M 72.046875 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.003906 89.492188 C 67.003906 88.21875 65.972656 87.1875 64.699219 87.1875 C 63.425781 87.1875 62.394531 88.21875 62.394531 89.492188 C 62.394531 90.765625 63.425781 91.796875 64.699219 91.796875 C 65.972656 91.796875 67.003906 90.765625 67.003906 89.492188 Z M 67.003906 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.953125 89.492188 C 71.953125 88.21875 70.921875 87.1875 69.648438 87.1875 C 68.375 87.1875 67.34375 88.21875 67.34375 89.492188 C 67.34375 90.765625 68.375 91.796875 69.648438 91.796875 C 70.921875 91.796875 71.953125 90.765625 71.953125 89.492188 Z M 71.953125 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.128906 89.492188 C 75.128906 88.21875 74.097656 87.1875 72.824219 87.1875 C 71.550781 87.1875 70.519531 88.21875 70.519531 89.492188 C 70.519531 90.765625 71.550781 91.796875 72.824219 91.796875 C 74.097656 91.796875 75.128906 90.765625 75.128906 89.492188 Z M 75.128906 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.828125 89.492188 C 69.828125 88.21875 68.796875 87.1875 67.523438 87.1875 C 66.25 87.1875 65.21875 88.21875 65.21875 89.492188 C 65.21875 90.765625 66.25 91.796875 67.523438 91.796875 C 68.796875 91.796875 69.828125 90.765625 69.828125 89.492188 Z M 69.828125 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.9375 89.492188 C 69.9375 88.21875 68.90625 87.1875 67.632812 87.1875 C 66.359375 87.1875 65.328125 88.21875 65.328125 89.492188 C 65.328125 90.765625 66.359375 91.796875 67.632812 91.796875 C 68.90625 91.796875 69.9375 90.765625 69.9375 89.492188 Z M 69.9375 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.46875 89.492188 C 76.46875 88.21875 75.4375 87.1875 74.164062 87.1875 C 72.890625 87.1875 71.859375 88.21875 71.859375 89.492188 C 71.859375 90.765625 72.890625 91.796875 74.164062 91.796875 C 75.4375 91.796875 76.46875 90.765625 76.46875 89.492188 Z M 76.46875 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.800781 89.492188 C 73.800781 88.21875 72.769531 87.1875 71.496094 87.1875 C 70.222656 87.1875 69.191406 88.21875 69.191406 89.492188 C 69.191406 90.765625 70.222656 91.796875 71.496094 91.796875 C 72.769531 91.796875 73.800781 90.765625 73.800781 89.492188 Z M 73.800781 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.597656 89.492188 C 69.597656 88.21875 68.566406 87.1875 67.292969 87.1875 C 66.019531 87.1875 64.988281 88.21875 64.988281 89.492188 C 64.988281 90.765625 66.019531 91.796875 67.292969 91.796875 C 68.566406 91.796875 69.597656 90.765625 69.597656 89.492188 Z M 69.597656 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.425781 89.492188 C 71.425781 88.21875 70.394531 87.1875 69.121094 87.1875 C 67.847656 87.1875 66.816406 88.21875 66.816406 89.492188 C 66.816406 90.765625 67.847656 91.796875 69.121094 91.796875 C 70.394531 91.796875 71.425781 90.765625 71.425781 89.492188 Z M 71.425781 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.316406 89.492188 C 73.316406 88.21875 72.285156 87.1875 71.011719 87.1875 C 69.738281 87.1875 68.707031 88.21875 68.707031 89.492188 C 68.707031 90.765625 69.738281 91.796875 71.011719 91.796875 C 72.285156 91.796875 73.316406 90.765625 73.316406 89.492188 Z M 73.316406 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.902344 89.492188 C 66.902344 88.21875 65.871094 87.1875 64.597656 87.1875 C 63.324219 87.1875 62.292969 88.21875 62.292969 89.492188 C 62.292969 90.765625 63.324219 91.796875 64.597656 91.796875 C 65.871094 91.796875 66.902344 90.765625 66.902344 89.492188 Z M 66.902344 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.257812 89.492188 C 72.257812 88.21875 71.226562 87.1875 69.953125 87.1875 C 68.679688 87.1875 67.648438 88.21875 67.648438 89.492188 C 67.648438 90.765625 68.679688 91.796875 69.953125 91.796875 C 71.226562 91.796875 72.257812 90.765625 72.257812 89.492188 Z M 72.257812 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.742188 89.492188 C 70.742188 88.21875 69.710938 87.1875 68.4375 87.1875 C 67.164062 87.1875 66.132812 88.21875 66.132812 89.492188 C 66.132812 90.765625 67.164062 91.796875 68.4375 91.796875 C 69.710938 91.796875 70.742188 90.765625 70.742188 89.492188 Z M 70.742188 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.011719 89.492188 C 68.011719 88.21875 66.980469 87.1875 65.707031 87.1875 C 64.433594 87.1875 63.402344 88.21875 63.402344 89.492188 C 63.402344 90.765625 64.433594 91.796875 65.707031 91.796875 C 66.980469 91.796875 68.011719 90.765625 68.011719 89.492188 Z M 68.011719 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.589844 89.492188 C 75.589844 88.21875 74.558594 87.1875 73.285156 87.1875 C 72.011719 87.1875 70.980469 88.21875 70.980469 89.492188 C 70.980469 90.765625 72.011719 91.796875 73.285156 91.796875 C 74.558594 91.796875 75.589844 90.765625 75.589844 89.492188 Z M 75.589844 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.566406 89.492188 C 73.566406 88.21875 72.535156 87.1875 71.261719 87.1875 C 69.988281 87.1875 68.957031 88.21875 68.957031 89.492188 C 68.957031 90.765625 69.988281 91.796875 71.261719 91.796875 C 72.535156 91.796875 73.566406 90.765625 73.566406 89.492188 Z M 73.566406 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.335938 89.492188 C 67.335938 88.21875 66.304688 87.1875 65.03125 87.1875 C 63.757812 87.1875 62.726562 88.21875 62.726562 89.492188 C 62.726562 90.765625 63.757812 91.796875 65.03125 91.796875 C 66.304688 91.796875 67.335938 90.765625 67.335938 89.492188 Z M 67.335938 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.871094 89.492188 C 68.871094 88.21875 67.839844 87.1875 66.566406 87.1875 C 65.292969 87.1875 64.261719 88.21875 64.261719 89.492188 C 64.261719 90.765625 65.292969 91.796875 66.566406 91.796875 C 67.839844 91.796875 68.871094 90.765625 68.871094 89.492188 Z M 68.871094 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.136719 89.492188 C 72.136719 88.21875 71.105469 87.1875 69.832031 87.1875 C 68.558594 87.1875 67.527344 88.21875 67.527344 89.492188 C 67.527344 90.765625 68.558594 91.796875 69.832031 91.796875 C 71.105469 91.796875 72.136719 90.765625 72.136719 89.492188 Z M 72.136719 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.929688 89.492188 C 66.929688 88.21875 65.898438 87.1875 64.625 87.1875 C 63.351562 87.1875 62.320312 88.21875 62.320312 89.492188 C 62.320312 90.765625 63.351562 91.796875 64.625 91.796875 C 65.898438 91.796875 66.929688 90.765625 66.929688 89.492188 Z M 66.929688 89.492188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.410156 84.648438 C 76.410156 83.375 75.378906 82.34375 74.105469 82.34375 C 72.832031 82.34375 71.800781 83.375 71.800781 84.648438 C 71.800781 85.921875 72.832031 86.953125 74.105469 86.953125 C 75.378906 86.953125 76.410156 85.921875 76.410156 84.648438 Z M 76.410156 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.085938 84.648438 C 72.085938 83.375 71.054688 82.34375 69.78125 82.34375 C 68.507812 82.34375 67.476562 83.375 67.476562 84.648438 C 67.476562 85.921875 68.507812 86.953125 69.78125 86.953125 C 71.054688 86.953125 72.085938 85.921875 72.085938 84.648438 Z M 72.085938 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.726562 84.648438 C 74.726562 83.375 73.695312 82.34375 72.421875 82.34375 C 71.148438 82.34375 70.117188 83.375 70.117188 84.648438 C 70.117188 85.921875 71.148438 86.953125 72.421875 86.953125 C 73.695312 86.953125 74.726562 85.921875 74.726562 84.648438 Z M 74.726562 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.335938 84.648438 C 72.335938 83.375 71.304688 82.34375 70.03125 82.34375 C 68.757812 82.34375 67.726562 83.375 67.726562 84.648438 C 67.726562 85.921875 68.757812 86.953125 70.03125 86.953125 C 71.304688 86.953125 72.335938 85.921875 72.335938 84.648438 Z M 72.335938 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.105469 84.648438 C 73.105469 83.375 72.074219 82.34375 70.800781 82.34375 C 69.527344 82.34375 68.496094 83.375 68.496094 84.648438 C 68.496094 85.921875 69.527344 86.953125 70.800781 86.953125 C 72.074219 86.953125 73.105469 85.921875 73.105469 84.648438 Z M 73.105469 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.199219 84.648438 C 74.199219 83.375 73.167969 82.34375 71.894531 82.34375 C 70.621094 82.34375 69.589844 83.375 69.589844 84.648438 C 69.589844 85.921875 70.621094 86.953125 71.894531 86.953125 C 73.167969 86.953125 74.199219 85.921875 74.199219 84.648438 Z M 74.199219 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.789062 84.648438 C 74.789062 83.375 73.757812 82.34375 72.484375 82.34375 C 71.210938 82.34375 70.179688 83.375 70.179688 84.648438 C 70.179688 85.921875 71.210938 86.953125 72.484375 86.953125 C 73.757812 86.953125 74.789062 85.921875 74.789062 84.648438 Z M 74.789062 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.820312 84.648438 C 72.820312 83.375 71.789062 82.34375 70.515625 82.34375 C 69.242188 82.34375 68.210938 83.375 68.210938 84.648438 C 68.210938 85.921875 69.242188 86.953125 70.515625 86.953125 C 71.789062 86.953125 72.820312 85.921875 72.820312 84.648438 Z M 72.820312 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.894531 84.648438 C 76.894531 83.375 75.863281 82.34375 74.589844 82.34375 C 73.316406 82.34375 72.285156 83.375 72.285156 84.648438 C 72.285156 85.921875 73.316406 86.953125 74.589844 86.953125 C 75.863281 86.953125 76.894531 85.921875 76.894531 84.648438 Z M 76.894531 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.582031 84.648438 C 74.582031 83.375 73.550781 82.34375 72.277344 82.34375 C 71.003906 82.34375 69.972656 83.375 69.972656 84.648438 C 69.972656 85.921875 71.003906 86.953125 72.277344 86.953125 C 73.550781 86.953125 74.582031 85.921875 74.582031 84.648438 Z M 74.582031 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.722656 84.648438 C 71.722656 83.375 70.691406 82.34375 69.417969 82.34375 C 68.144531 82.34375 67.113281 83.375 67.113281 84.648438 C 67.113281 85.921875 68.144531 86.953125 69.417969 86.953125 C 70.691406 86.953125 71.722656 85.921875 71.722656 84.648438 Z M 71.722656 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.527344 84.648438 C 74.527344 83.375 73.496094 82.34375 72.222656 82.34375 C 70.949219 82.34375 69.917969 83.375 69.917969 84.648438 C 69.917969 85.921875 70.949219 86.953125 72.222656 86.953125 C 73.496094 86.953125 74.527344 85.921875 74.527344 84.648438 Z M 74.527344 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.328125 84.648438 C 76.328125 83.375 75.296875 82.34375 74.023438 82.34375 C 72.75 82.34375 71.71875 83.375 71.71875 84.648438 C 71.71875 85.921875 72.75 86.953125 74.023438 86.953125 C 75.296875 86.953125 76.328125 85.921875 76.328125 84.648438 Z M 76.328125 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.324219 84.648438 C 73.324219 83.375 72.292969 82.34375 71.019531 82.34375 C 69.746094 82.34375 68.714844 83.375 68.714844 84.648438 C 68.714844 85.921875 69.746094 86.953125 71.019531 86.953125 C 72.292969 86.953125 73.324219 85.921875 73.324219 84.648438 Z M 73.324219 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.382812 84.648438 C 73.382812 83.375 72.351562 82.34375 71.078125 82.34375 C 69.804688 82.34375 68.773438 83.375 68.773438 84.648438 C 68.773438 85.921875 69.804688 86.953125 71.078125 86.953125 C 72.351562 86.953125 73.382812 85.921875 73.382812 84.648438 Z M 73.382812 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.089844 84.648438 C 77.089844 83.375 76.058594 82.34375 74.785156 82.34375 C 73.511719 82.34375 72.480469 83.375 72.480469 84.648438 C 72.480469 85.921875 73.511719 86.953125 74.785156 86.953125 C 76.058594 86.953125 77.089844 85.921875 77.089844 84.648438 Z M 77.089844 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.578125 84.648438 C 75.578125 83.375 74.546875 82.34375 73.273438 82.34375 C 72 82.34375 70.96875 83.375 70.96875 84.648438 C 70.96875 85.921875 72 86.953125 73.273438 86.953125 C 74.546875 86.953125 75.578125 85.921875 75.578125 84.648438 Z M 75.578125 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.191406 84.648438 C 73.191406 83.375 72.160156 82.34375 70.886719 82.34375 C 69.613281 82.34375 68.582031 83.375 68.582031 84.648438 C 68.582031 85.921875 69.613281 86.953125 70.886719 86.953125 C 72.160156 86.953125 73.191406 85.921875 73.191406 84.648438 Z M 73.191406 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.226562 84.648438 C 74.226562 83.375 73.195312 82.34375 71.921875 82.34375 C 70.648438 82.34375 69.617188 83.375 69.617188 84.648438 C 69.617188 85.921875 70.648438 86.953125 71.921875 86.953125 C 73.195312 86.953125 74.226562 85.921875 74.226562 84.648438 Z M 74.226562 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.300781 84.648438 C 75.300781 83.375 74.269531 82.34375 72.996094 82.34375 C 71.722656 82.34375 70.691406 83.375 70.691406 84.648438 C 70.691406 85.921875 71.722656 86.953125 72.996094 86.953125 C 74.269531 86.953125 75.300781 85.921875 75.300781 84.648438 Z M 75.300781 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.664062 84.648438 C 71.664062 83.375 70.632812 82.34375 69.359375 82.34375 C 68.085938 82.34375 67.054688 83.375 67.054688 84.648438 C 67.054688 85.921875 68.085938 86.953125 69.359375 86.953125 C 70.632812 86.953125 71.664062 85.921875 71.664062 84.648438 Z M 71.664062 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.703125 84.648438 C 74.703125 83.375 73.671875 82.34375 72.398438 82.34375 C 71.125 82.34375 70.09375 83.375 70.09375 84.648438 C 70.09375 85.921875 71.125 86.953125 72.398438 86.953125 C 73.671875 86.953125 74.703125 85.921875 74.703125 84.648438 Z M 74.703125 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.839844 84.648438 C 73.839844 83.375 72.808594 82.34375 71.535156 82.34375 C 70.261719 82.34375 69.230469 83.375 69.230469 84.648438 C 69.230469 85.921875 70.261719 86.953125 71.535156 86.953125 C 72.808594 86.953125 73.839844 85.921875 73.839844 84.648438 Z M 73.839844 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.292969 84.648438 C 72.292969 83.375 71.261719 82.34375 69.988281 82.34375 C 68.714844 82.34375 67.683594 83.375 67.683594 84.648438 C 67.683594 85.921875 68.714844 86.953125 69.988281 86.953125 C 71.261719 86.953125 72.292969 85.921875 72.292969 84.648438 Z M 72.292969 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.589844 84.648438 C 76.589844 83.375 75.558594 82.34375 74.285156 82.34375 C 73.011719 82.34375 71.980469 83.375 71.980469 84.648438 C 71.980469 85.921875 73.011719 86.953125 74.285156 86.953125 C 75.558594 86.953125 76.589844 85.921875 76.589844 84.648438 Z M 76.589844 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.441406 84.648438 C 75.441406 83.375 74.410156 82.34375 73.136719 82.34375 C 71.863281 82.34375 70.832031 83.375 70.832031 84.648438 C 70.832031 85.921875 71.863281 86.953125 73.136719 86.953125 C 74.410156 86.953125 75.441406 85.921875 75.441406 84.648438 Z M 75.441406 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.910156 84.648438 C 71.910156 83.375 70.878906 82.34375 69.605469 82.34375 C 68.332031 82.34375 67.300781 83.375 67.300781 84.648438 C 67.300781 85.921875 68.332031 86.953125 69.605469 86.953125 C 70.878906 86.953125 71.910156 85.921875 71.910156 84.648438 Z M 71.910156 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.78125 84.648438 C 72.78125 83.375 71.75 82.34375 70.476562 82.34375 C 69.203125 82.34375 68.171875 83.375 68.171875 84.648438 C 68.171875 85.921875 69.203125 86.953125 70.476562 86.953125 C 71.75 86.953125 72.78125 85.921875 72.78125 84.648438 Z M 72.78125 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.632812 84.648438 C 74.632812 83.375 73.601562 82.34375 72.328125 82.34375 C 71.054688 82.34375 70.023438 83.375 70.023438 84.648438 C 70.023438 85.921875 71.054688 86.953125 72.328125 86.953125 C 73.601562 86.953125 74.632812 85.921875 74.632812 84.648438 Z M 74.632812 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.679688 84.648438 C 71.679688 83.375 70.648438 82.34375 69.375 82.34375 C 68.101562 82.34375 67.070312 83.375 67.070312 84.648438 C 67.070312 85.921875 68.101562 86.953125 69.375 86.953125 C 70.648438 86.953125 71.679688 85.921875 71.679688 84.648438 Z M 71.679688 84.648438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.328125 79.804688 C 77.328125 78.53125 76.296875 77.5 75.023438 77.5 C 73.75 77.5 72.71875 78.53125 72.71875 79.804688 C 72.71875 81.078125 73.75 82.109375 75.023438 82.109375 C 76.296875 82.109375 77.328125 81.078125 77.328125 79.804688 Z M 77.328125 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.347656 79.804688 C 76.347656 78.53125 75.316406 77.5 74.042969 77.5 C 72.769531 77.5 71.738281 78.53125 71.738281 79.804688 C 71.738281 81.078125 72.769531 82.109375 74.042969 82.109375 C 75.316406 82.109375 76.347656 81.078125 76.347656 79.804688 Z M 76.347656 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.945312 79.804688 C 76.945312 78.53125 75.914062 77.5 74.640625 77.5 C 73.367188 77.5 72.335938 78.53125 72.335938 79.804688 C 72.335938 81.078125 73.367188 82.109375 74.640625 82.109375 C 75.914062 82.109375 76.945312 81.078125 76.945312 79.804688 Z M 76.945312 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.40625 79.804688 C 76.40625 78.53125 75.375 77.5 74.101562 77.5 C 72.828125 77.5 71.796875 78.53125 71.796875 79.804688 C 71.796875 81.078125 72.828125 82.109375 74.101562 82.109375 C 75.375 82.109375 76.40625 81.078125 76.40625 79.804688 Z M 76.40625 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.578125 79.804688 C 76.578125 78.53125 75.546875 77.5 74.273438 77.5 C 73 77.5 71.96875 78.53125 71.96875 79.804688 C 71.96875 81.078125 73 82.109375 74.273438 82.109375 C 75.546875 82.109375 76.578125 81.078125 76.578125 79.804688 Z M 76.578125 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.828125 79.804688 C 76.828125 78.53125 75.796875 77.5 74.523438 77.5 C 73.25 77.5 72.21875 78.53125 72.21875 79.804688 C 72.21875 81.078125 73.25 82.109375 74.523438 82.109375 C 75.796875 82.109375 76.828125 81.078125 76.828125 79.804688 Z M 76.828125 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.960938 79.804688 C 76.960938 78.53125 75.929688 77.5 74.65625 77.5 C 73.382812 77.5 72.351562 78.53125 72.351562 79.804688 C 72.351562 81.078125 73.382812 82.109375 74.65625 82.109375 C 75.929688 82.109375 76.960938 81.078125 76.960938 79.804688 Z M 76.960938 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.515625 79.804688 C 76.515625 78.53125 75.484375 77.5 74.210938 77.5 C 72.9375 77.5 71.90625 78.53125 71.90625 79.804688 C 71.90625 81.078125 72.9375 82.109375 74.210938 82.109375 C 75.484375 82.109375 76.515625 81.078125 76.515625 79.804688 Z M 76.515625 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.4375 79.804688 C 77.4375 78.53125 76.40625 77.5 75.132812 77.5 C 73.859375 77.5 72.828125 78.53125 72.828125 79.804688 C 72.828125 81.078125 73.859375 82.109375 75.132812 82.109375 C 76.40625 82.109375 77.4375 81.078125 77.4375 79.804688 Z M 77.4375 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.914062 79.804688 C 76.914062 78.53125 75.882812 77.5 74.609375 77.5 C 73.335938 77.5 72.304688 78.53125 72.304688 79.804688 C 72.304688 81.078125 73.335938 82.109375 74.609375 82.109375 C 75.882812 82.109375 76.914062 81.078125 76.914062 79.804688 Z M 76.914062 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.265625 79.804688 C 76.265625 78.53125 75.234375 77.5 73.960938 77.5 C 72.6875 77.5 71.65625 78.53125 71.65625 79.804688 C 71.65625 81.078125 72.6875 82.109375 73.960938 82.109375 C 75.234375 82.109375 76.265625 81.078125 76.265625 79.804688 Z M 76.265625 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.902344 79.804688 C 76.902344 78.53125 75.871094 77.5 74.597656 77.5 C 73.324219 77.5 72.292969 78.53125 72.292969 79.804688 C 72.292969 81.078125 73.324219 82.109375 74.597656 82.109375 C 75.871094 82.109375 76.902344 81.078125 76.902344 79.804688 Z M 76.902344 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.308594 79.804688 C 77.308594 78.53125 76.277344 77.5 75.003906 77.5 C 73.730469 77.5 72.699219 78.53125 72.699219 79.804688 C 72.699219 81.078125 73.730469 82.109375 75.003906 82.109375 C 76.277344 82.109375 77.308594 81.078125 77.308594 79.804688 Z M 77.308594 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.628906 79.804688 C 76.628906 78.53125 75.597656 77.5 74.324219 77.5 C 73.050781 77.5 72.019531 78.53125 72.019531 79.804688 C 72.019531 81.078125 73.050781 82.109375 74.324219 82.109375 C 75.597656 82.109375 76.628906 81.078125 76.628906 79.804688 Z M 76.628906 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.644531 79.804688 C 76.644531 78.53125 75.613281 77.5 74.339844 77.5 C 73.066406 77.5 72.035156 78.53125 72.035156 79.804688 C 72.035156 81.078125 73.066406 82.109375 74.339844 82.109375 C 75.613281 82.109375 76.644531 81.078125 76.644531 79.804688 Z M 76.644531 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.480469 79.804688 C 77.480469 78.53125 76.449219 77.5 75.175781 77.5 C 73.902344 77.5 72.871094 78.53125 72.871094 79.804688 C 72.871094 81.078125 73.902344 82.109375 75.175781 82.109375 C 76.449219 82.109375 77.480469 81.078125 77.480469 79.804688 Z M 77.480469 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.140625 79.804688 C 77.140625 78.53125 76.109375 77.5 74.835938 77.5 C 73.5625 77.5 72.53125 78.53125 72.53125 79.804688 C 72.53125 81.078125 73.5625 82.109375 74.835938 82.109375 C 76.109375 82.109375 77.140625 81.078125 77.140625 79.804688 Z M 77.140625 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.597656 79.804688 C 76.597656 78.53125 75.566406 77.5 74.292969 77.5 C 73.019531 77.5 71.988281 78.53125 71.988281 79.804688 C 71.988281 81.078125 73.019531 82.109375 74.292969 82.109375 C 75.566406 82.109375 76.597656 81.078125 76.597656 79.804688 Z M 76.597656 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.835938 79.804688 C 76.835938 78.53125 75.804688 77.5 74.53125 77.5 C 73.257812 77.5 72.226562 78.53125 72.226562 79.804688 C 72.226562 81.078125 73.257812 82.109375 74.53125 82.109375 C 75.804688 82.109375 76.835938 81.078125 76.835938 79.804688 Z M 76.835938 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.078125 79.804688 C 77.078125 78.53125 76.046875 77.5 74.773438 77.5 C 73.5 77.5 72.46875 78.53125 72.46875 79.804688 C 72.46875 81.078125 73.5 82.109375 74.773438 82.109375 C 76.046875 82.109375 77.078125 81.078125 77.078125 79.804688 Z M 77.078125 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.253906 79.804688 C 76.253906 78.53125 75.222656 77.5 73.949219 77.5 C 72.675781 77.5 71.644531 78.53125 71.644531 79.804688 C 71.644531 81.078125 72.675781 82.109375 73.949219 82.109375 C 75.222656 82.109375 76.253906 81.078125 76.253906 79.804688 Z M 76.253906 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.941406 79.804688 C 76.941406 78.53125 75.910156 77.5 74.636719 77.5 C 73.363281 77.5 72.332031 78.53125 72.332031 79.804688 C 72.332031 81.078125 73.363281 82.109375 74.636719 82.109375 C 75.910156 82.109375 76.941406 81.078125 76.941406 79.804688 Z M 76.941406 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.746094 79.804688 C 76.746094 78.53125 75.714844 77.5 74.441406 77.5 C 73.167969 77.5 72.136719 78.53125 72.136719 79.804688 C 72.136719 81.078125 73.167969 82.109375 74.441406 82.109375 C 75.714844 82.109375 76.746094 81.078125 76.746094 79.804688 Z M 76.746094 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.394531 79.804688 C 76.394531 78.53125 75.363281 77.5 74.089844 77.5 C 72.816406 77.5 71.785156 78.53125 71.785156 79.804688 C 71.785156 81.078125 72.816406 82.109375 74.089844 82.109375 C 75.363281 82.109375 76.394531 81.078125 76.394531 79.804688 Z M 76.394531 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.371094 79.804688 C 77.371094 78.53125 76.339844 77.5 75.066406 77.5 C 73.792969 77.5 72.761719 78.53125 72.761719 79.804688 C 72.761719 81.078125 73.792969 82.109375 75.066406 82.109375 C 76.339844 82.109375 77.371094 81.078125 77.371094 79.804688 Z M 77.371094 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.109375 79.804688 C 77.109375 78.53125 76.078125 77.5 74.804688 77.5 C 73.53125 77.5 72.5 78.53125 72.5 79.804688 C 72.5 81.078125 73.53125 82.109375 74.804688 82.109375 C 76.078125 82.109375 77.109375 81.078125 77.109375 79.804688 Z M 77.109375 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.308594 79.804688 C 76.308594 78.53125 75.277344 77.5 74.003906 77.5 C 72.730469 77.5 71.699219 78.53125 71.699219 79.804688 C 71.699219 81.078125 72.730469 82.109375 74.003906 82.109375 C 75.277344 82.109375 76.308594 81.078125 76.308594 79.804688 Z M 76.308594 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.507812 79.804688 C 76.507812 78.53125 75.476562 77.5 74.203125 77.5 C 72.929688 77.5 71.898438 78.53125 71.898438 79.804688 C 71.898438 81.078125 72.929688 82.109375 74.203125 82.109375 C 75.476562 82.109375 76.507812 81.078125 76.507812 79.804688 Z M 76.507812 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.925781 79.804688 C 76.925781 78.53125 75.894531 77.5 74.621094 77.5 C 73.347656 77.5 72.316406 78.53125 72.316406 79.804688 C 72.316406 81.078125 73.347656 82.109375 74.621094 82.109375 C 75.894531 82.109375 76.925781 81.078125 76.925781 79.804688 Z M 76.925781 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.257812 79.804688 C 76.257812 78.53125 75.226562 77.5 73.953125 77.5 C 72.679688 77.5 71.648438 78.53125 71.648438 79.804688 C 71.648438 81.078125 72.679688 82.109375 73.953125 82.109375 C 75.226562 82.109375 76.257812 81.078125 76.257812 79.804688 Z M 76.257812 79.804688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.019531 74.960938 C 78.019531 73.6875 76.988281 72.65625 75.714844 72.65625 C 74.441406 72.65625 73.410156 73.6875 73.410156 74.960938 C 73.410156 76.234375 74.441406 77.265625 75.714844 77.265625 C 76.988281 77.265625 78.019531 76.234375 78.019531 74.960938 Z M 78.019531 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.394531 74.960938 C 80.394531 73.6875 79.363281 72.65625 78.089844 72.65625 C 76.816406 72.65625 75.785156 73.6875 75.785156 74.960938 C 75.785156 76.234375 76.816406 77.265625 78.089844 77.265625 C 79.363281 77.265625 80.394531 76.234375 80.394531 74.960938 Z M 80.394531 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.945312 74.960938 C 78.945312 73.6875 77.914062 72.65625 76.640625 72.65625 C 75.367188 72.65625 74.335938 73.6875 74.335938 74.960938 C 74.335938 76.234375 75.367188 77.265625 76.640625 77.265625 C 77.914062 77.265625 78.945312 76.234375 78.945312 74.960938 Z M 78.945312 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.253906 74.960938 C 80.253906 73.6875 79.222656 72.65625 77.949219 72.65625 C 76.675781 72.65625 75.644531 73.6875 75.644531 74.960938 C 75.644531 76.234375 76.675781 77.265625 77.949219 77.265625 C 79.222656 77.265625 80.253906 76.234375 80.253906 74.960938 Z M 80.253906 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.835938 74.960938 C 79.835938 73.6875 78.804688 72.65625 77.53125 72.65625 C 76.257812 72.65625 75.226562 73.6875 75.226562 74.960938 C 75.226562 76.234375 76.257812 77.265625 77.53125 77.265625 C 78.804688 77.265625 79.835938 76.234375 79.835938 74.960938 Z M 79.835938 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.234375 74.960938 C 79.234375 73.6875 78.203125 72.65625 76.929688 72.65625 C 75.65625 72.65625 74.625 73.6875 74.625 74.960938 C 74.625 76.234375 75.65625 77.265625 76.929688 77.265625 C 78.203125 77.265625 79.234375 76.234375 79.234375 74.960938 Z M 79.234375 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.90625 74.960938 C 78.90625 73.6875 77.875 72.65625 76.601562 72.65625 C 75.328125 72.65625 74.296875 73.6875 74.296875 74.960938 C 74.296875 76.234375 75.328125 77.265625 76.601562 77.265625 C 77.875 77.265625 78.90625 76.234375 78.90625 74.960938 Z M 78.90625 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.992188 74.960938 C 79.992188 73.6875 78.960938 72.65625 77.6875 72.65625 C 76.414062 72.65625 75.382812 73.6875 75.382812 74.960938 C 75.382812 76.234375 76.414062 77.265625 77.6875 77.265625 C 78.960938 77.265625 79.992188 76.234375 79.992188 74.960938 Z M 79.992188 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.753906 74.960938 C 77.753906 73.6875 76.722656 72.65625 75.449219 72.65625 C 74.175781 72.65625 73.144531 73.6875 73.144531 74.960938 C 73.144531 76.234375 74.175781 77.265625 75.449219 77.265625 C 76.722656 77.265625 77.753906 76.234375 77.753906 74.960938 Z M 77.753906 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.023438 74.960938 C 79.023438 73.6875 77.992188 72.65625 76.71875 72.65625 C 75.445312 72.65625 74.414062 73.6875 74.414062 74.960938 C 74.414062 76.234375 75.445312 77.265625 76.71875 77.265625 C 77.992188 77.265625 79.023438 76.234375 79.023438 74.960938 Z M 79.023438 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.59375 74.960938 C 80.59375 73.6875 79.5625 72.65625 78.289062 72.65625 C 77.015625 72.65625 75.984375 73.6875 75.984375 74.960938 C 75.984375 76.234375 77.015625 77.265625 78.289062 77.265625 C 79.5625 77.265625 80.59375 76.234375 80.59375 74.960938 Z M 80.59375 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.050781 74.960938 C 79.050781 73.6875 78.019531 72.65625 76.746094 72.65625 C 75.472656 72.65625 74.441406 73.6875 74.441406 74.960938 C 74.441406 76.234375 75.472656 77.265625 76.746094 77.265625 C 78.019531 77.265625 79.050781 76.234375 79.050781 74.960938 Z M 79.050781 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.0625 74.960938 C 78.0625 73.6875 77.03125 72.65625 75.757812 72.65625 C 74.484375 72.65625 73.453125 73.6875 73.453125 74.960938 C 73.453125 76.234375 74.484375 77.265625 75.757812 77.265625 C 77.03125 77.265625 78.0625 76.234375 78.0625 74.960938 Z M 78.0625 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.714844 74.960938 C 79.714844 73.6875 78.683594 72.65625 77.410156 72.65625 C 76.136719 72.65625 75.105469 73.6875 75.105469 74.960938 C 75.105469 76.234375 76.136719 77.265625 77.410156 77.265625 C 78.683594 77.265625 79.714844 76.234375 79.714844 74.960938 Z M 79.714844 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.679688 74.960938 C 79.679688 73.6875 78.648438 72.65625 77.375 72.65625 C 76.101562 72.65625 75.070312 73.6875 75.070312 74.960938 C 75.070312 76.234375 76.101562 77.265625 77.375 77.265625 C 78.648438 77.265625 79.679688 76.234375 79.679688 74.960938 Z M 79.679688 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.648438 74.960938 C 77.648438 73.6875 76.617188 72.65625 75.34375 72.65625 C 74.070312 72.65625 73.039062 73.6875 73.039062 74.960938 C 73.039062 76.234375 74.070312 77.265625 75.34375 77.265625 C 76.617188 77.265625 77.648438 76.234375 77.648438 74.960938 Z M 77.648438 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.476562 74.960938 C 78.476562 73.6875 77.445312 72.65625 76.171875 72.65625 C 74.898438 72.65625 73.867188 73.6875 73.867188 74.960938 C 73.867188 76.234375 74.898438 77.265625 76.171875 77.265625 C 77.445312 77.265625 78.476562 76.234375 78.476562 74.960938 Z M 78.476562 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.785156 74.960938 C 79.785156 73.6875 78.753906 72.65625 77.480469 72.65625 C 76.207031 72.65625 75.175781 73.6875 75.175781 74.960938 C 75.175781 76.234375 76.207031 77.265625 77.480469 77.265625 C 78.753906 77.265625 79.785156 76.234375 79.785156 74.960938 Z M 79.785156 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.21875 74.960938 C 79.21875 73.6875 78.1875 72.65625 76.914062 72.65625 C 75.640625 72.65625 74.609375 73.6875 74.609375 74.960938 C 74.609375 76.234375 75.640625 77.265625 76.914062 77.265625 C 78.1875 77.265625 79.21875 76.234375 79.21875 74.960938 Z M 79.21875 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.628906 74.960938 C 78.628906 73.6875 77.597656 72.65625 76.324219 72.65625 C 75.050781 72.65625 74.019531 73.6875 74.019531 74.960938 C 74.019531 76.234375 75.050781 77.265625 76.324219 77.265625 C 77.597656 77.265625 78.628906 76.234375 78.628906 74.960938 Z M 78.628906 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.625 74.960938 C 80.625 73.6875 79.59375 72.65625 78.320312 72.65625 C 77.046875 72.65625 76.015625 73.6875 76.015625 74.960938 C 76.015625 76.234375 77.046875 77.265625 78.320312 77.265625 C 79.59375 77.265625 80.625 76.234375 80.625 74.960938 Z M 80.625 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.957031 74.960938 C 78.957031 73.6875 77.925781 72.65625 76.652344 72.65625 C 75.378906 72.65625 74.347656 73.6875 74.347656 74.960938 C 74.347656 76.234375 75.378906 77.265625 76.652344 77.265625 C 77.925781 77.265625 78.957031 76.234375 78.957031 74.960938 Z M 78.957031 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.429688 74.960938 C 79.429688 73.6875 78.398438 72.65625 77.125 72.65625 C 75.851562 72.65625 74.820312 73.6875 74.820312 74.960938 C 74.820312 76.234375 75.851562 77.265625 77.125 77.265625 C 78.398438 77.265625 79.429688 76.234375 79.429688 74.960938 Z M 79.429688 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.28125 74.960938 C 80.28125 73.6875 79.25 72.65625 77.976562 72.65625 C 76.703125 72.65625 75.671875 73.6875 75.671875 74.960938 C 75.671875 76.234375 76.703125 77.265625 77.976562 77.265625 C 79.25 77.265625 80.28125 76.234375 80.28125 74.960938 Z M 80.28125 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.921875 74.960938 C 77.921875 73.6875 76.890625 72.65625 75.617188 72.65625 C 74.34375 72.65625 73.3125 73.6875 73.3125 74.960938 C 73.3125 76.234375 74.34375 77.265625 75.617188 77.265625 C 76.890625 77.265625 77.921875 76.234375 77.921875 74.960938 Z M 77.921875 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.550781 74.960938 C 78.550781 73.6875 77.519531 72.65625 76.246094 72.65625 C 74.972656 72.65625 73.941406 73.6875 73.941406 74.960938 C 73.941406 76.234375 74.972656 77.265625 76.246094 77.265625 C 77.519531 77.265625 78.550781 76.234375 78.550781 74.960938 Z M 78.550781 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.492188 74.960938 C 80.492188 73.6875 79.460938 72.65625 78.1875 72.65625 C 76.914062 72.65625 75.882812 73.6875 75.882812 74.960938 C 75.882812 76.234375 76.914062 77.265625 78.1875 77.265625 C 79.460938 77.265625 80.492188 76.234375 80.492188 74.960938 Z M 80.492188 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.011719 74.960938 C 80.011719 73.6875 78.980469 72.65625 77.707031 72.65625 C 76.433594 72.65625 75.402344 73.6875 75.402344 74.960938 C 75.402344 76.234375 76.433594 77.265625 77.707031 77.265625 C 78.980469 77.265625 80.011719 76.234375 80.011719 74.960938 Z M 80.011719 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.996094 74.960938 C 78.996094 73.6875 77.964844 72.65625 76.691406 72.65625 C 75.417969 72.65625 74.386719 73.6875 74.386719 74.960938 C 74.386719 76.234375 75.417969 77.265625 76.691406 77.265625 C 77.964844 77.265625 78.996094 76.234375 78.996094 74.960938 Z M 78.996094 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.617188 74.960938 C 80.617188 73.6875 79.585938 72.65625 78.3125 72.65625 C 77.039062 72.65625 76.007812 73.6875 76.007812 74.960938 C 76.007812 76.234375 77.039062 77.265625 78.3125 77.265625 C 79.585938 77.265625 80.617188 76.234375 80.617188 74.960938 Z M 80.617188 74.960938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.472656 70.117188 C 78.472656 68.84375 77.441406 67.8125 76.167969 67.8125 C 74.894531 67.8125 73.863281 68.84375 73.863281 70.117188 C 73.863281 71.390625 74.894531 72.421875 76.167969 72.421875 C 77.441406 72.421875 78.472656 71.390625 78.472656 70.117188 Z M 78.472656 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.179688 70.117188 C 84.179688 68.84375 83.148438 67.8125 81.875 67.8125 C 80.601562 67.8125 79.570312 68.84375 79.570312 70.117188 C 79.570312 71.390625 80.601562 72.421875 81.875 72.421875 C 83.148438 72.421875 84.179688 71.390625 84.179688 70.117188 Z M 84.179688 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.695312 70.117188 C 80.695312 68.84375 79.664062 67.8125 78.390625 67.8125 C 77.117188 67.8125 76.085938 68.84375 76.085938 70.117188 C 76.085938 71.390625 77.117188 72.421875 78.390625 72.421875 C 79.664062 72.421875 80.695312 71.390625 80.695312 70.117188 Z M 80.695312 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.847656 70.117188 C 83.847656 68.84375 82.816406 67.8125 81.542969 67.8125 C 80.269531 67.8125 79.238281 68.84375 79.238281 70.117188 C 79.238281 71.390625 80.269531 72.421875 81.542969 72.421875 C 82.816406 72.421875 83.847656 71.390625 83.847656 70.117188 Z M 83.847656 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.835938 70.117188 C 82.835938 68.84375 81.804688 67.8125 80.53125 67.8125 C 79.257812 67.8125 78.226562 68.84375 78.226562 70.117188 C 78.226562 71.390625 79.257812 72.421875 80.53125 72.421875 C 81.804688 72.421875 82.835938 71.390625 82.835938 70.117188 Z M 82.835938 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.390625 70.117188 C 81.390625 68.84375 80.359375 67.8125 79.085938 67.8125 C 77.8125 67.8125 76.78125 68.84375 76.78125 70.117188 C 76.78125 71.390625 77.8125 72.421875 79.085938 72.421875 C 80.359375 72.421875 81.390625 71.390625 81.390625 70.117188 Z M 81.390625 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.609375 70.117188 C 80.609375 68.84375 79.578125 67.8125 78.304688 67.8125 C 77.03125 67.8125 76 68.84375 76 70.117188 C 76 71.390625 77.03125 72.421875 78.304688 72.421875 C 79.578125 72.421875 80.609375 71.390625 80.609375 70.117188 Z M 80.609375 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.210938 70.117188 C 83.210938 68.84375 82.179688 67.8125 80.90625 67.8125 C 79.632812 67.8125 78.601562 68.84375 78.601562 70.117188 C 78.601562 71.390625 79.632812 72.421875 80.90625 72.421875 C 82.179688 72.421875 83.210938 71.390625 83.210938 70.117188 Z M 83.210938 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.835938 70.117188 C 77.835938 68.84375 76.804688 67.8125 75.53125 67.8125 C 74.257812 67.8125 73.226562 68.84375 73.226562 70.117188 C 73.226562 71.390625 74.257812 72.421875 75.53125 72.421875 C 76.804688 72.421875 77.835938 71.390625 77.835938 70.117188 Z M 77.835938 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.886719 70.117188 C 80.886719 68.84375 79.855469 67.8125 78.582031 67.8125 C 77.308594 67.8125 76.277344 68.84375 76.277344 70.117188 C 76.277344 71.390625 77.308594 72.421875 78.582031 72.421875 C 79.855469 72.421875 80.886719 71.390625 80.886719 70.117188 Z M 80.886719 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.660156 70.117188 C 84.660156 68.84375 83.628906 67.8125 82.355469 67.8125 C 81.082031 67.8125 80.050781 68.84375 80.050781 70.117188 C 80.050781 71.390625 81.082031 72.421875 82.355469 72.421875 C 83.628906 72.421875 84.660156 71.390625 84.660156 70.117188 Z M 84.660156 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.957031 70.117188 C 80.957031 68.84375 79.925781 67.8125 78.652344 67.8125 C 77.378906 67.8125 76.347656 68.84375 76.347656 70.117188 C 76.347656 71.390625 77.378906 72.421875 78.652344 72.421875 C 79.925781 72.421875 80.957031 71.390625 80.957031 70.117188 Z M 80.957031 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.582031 70.117188 C 78.582031 68.84375 77.550781 67.8125 76.277344 67.8125 C 75.003906 67.8125 73.972656 68.84375 73.972656 70.117188 C 73.972656 71.390625 75.003906 72.421875 76.277344 72.421875 C 77.550781 72.421875 78.582031 71.390625 78.582031 70.117188 Z M 78.582031 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.546875 70.117188 C 82.546875 68.84375 81.515625 67.8125 80.242188 67.8125 C 78.96875 67.8125 77.9375 68.84375 77.9375 70.117188 C 77.9375 71.390625 78.96875 72.421875 80.242188 72.421875 C 81.515625 72.421875 82.546875 71.390625 82.546875 70.117188 Z M 82.546875 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.464844 70.117188 C 82.464844 68.84375 81.433594 67.8125 80.160156 67.8125 C 78.886719 67.8125 77.855469 68.84375 77.855469 70.117188 C 77.855469 71.390625 78.886719 72.421875 80.160156 72.421875 C 81.433594 72.421875 82.464844 71.390625 82.464844 70.117188 Z M 82.464844 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.578125 70.117188 C 77.578125 68.84375 76.546875 67.8125 75.273438 67.8125 C 74 67.8125 72.96875 68.84375 72.96875 70.117188 C 72.96875 71.390625 74 72.421875 75.273438 72.421875 C 76.546875 72.421875 77.578125 71.390625 77.578125 70.117188 Z M 77.578125 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.574219 70.117188 C 79.574219 68.84375 78.542969 67.8125 77.269531 67.8125 C 75.996094 67.8125 74.964844 68.84375 74.964844 70.117188 C 74.964844 71.390625 75.996094 72.421875 77.269531 72.421875 C 78.542969 72.421875 79.574219 71.390625 79.574219 70.117188 Z M 79.574219 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.71875 70.117188 C 82.71875 68.84375 81.6875 67.8125 80.414062 67.8125 C 79.140625 67.8125 78.109375 68.84375 78.109375 70.117188 C 78.109375 71.390625 79.140625 72.421875 80.414062 72.421875 C 81.6875 72.421875 82.71875 71.390625 82.71875 70.117188 Z M 82.71875 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.351562 70.117188 C 81.351562 68.84375 80.320312 67.8125 79.046875 67.8125 C 77.773438 67.8125 76.742188 68.84375 76.742188 70.117188 C 76.742188 71.390625 77.773438 72.421875 79.046875 72.421875 C 80.320312 72.421875 81.351562 71.390625 81.351562 70.117188 Z M 81.351562 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.9375 70.117188 C 79.9375 68.84375 78.90625 67.8125 77.632812 67.8125 C 76.359375 67.8125 75.328125 68.84375 75.328125 70.117188 C 75.328125 71.390625 76.359375 72.421875 77.632812 72.421875 C 78.90625 72.421875 79.9375 71.390625 79.9375 70.117188 Z M 79.9375 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.734375 70.117188 C 84.734375 68.84375 83.703125 67.8125 82.429688 67.8125 C 81.15625 67.8125 80.125 68.84375 80.125 70.117188 C 80.125 71.390625 81.15625 72.421875 82.429688 72.421875 C 83.703125 72.421875 84.734375 71.390625 84.734375 70.117188 Z M 84.734375 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.726562 70.117188 C 80.726562 68.84375 79.695312 67.8125 78.421875 67.8125 C 77.148438 67.8125 76.117188 68.84375 76.117188 70.117188 C 76.117188 71.390625 77.148438 72.421875 78.421875 72.421875 C 79.695312 72.421875 80.726562 71.390625 80.726562 70.117188 Z M 80.726562 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.863281 70.117188 C 81.863281 68.84375 80.832031 67.8125 79.558594 67.8125 C 78.285156 67.8125 77.253906 68.84375 77.253906 70.117188 C 77.253906 71.390625 78.285156 72.421875 79.558594 72.421875 C 80.832031 72.421875 81.863281 71.390625 81.863281 70.117188 Z M 81.863281 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.90625 70.117188 C 83.90625 68.84375 82.875 67.8125 81.601562 67.8125 C 80.328125 67.8125 79.296875 68.84375 79.296875 70.117188 C 79.296875 71.390625 80.328125 72.421875 81.601562 72.421875 C 82.875 72.421875 83.90625 71.390625 83.90625 70.117188 Z M 83.90625 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.238281 70.117188 C 78.238281 68.84375 77.207031 67.8125 75.933594 67.8125 C 74.660156 67.8125 73.628906 68.84375 73.628906 70.117188 C 73.628906 71.390625 74.660156 72.421875 75.933594 72.421875 C 77.207031 72.421875 78.238281 71.390625 78.238281 70.117188 Z M 78.238281 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.75 70.117188 C 79.75 68.84375 78.71875 67.8125 77.445312 67.8125 C 76.171875 67.8125 75.140625 68.84375 75.140625 70.117188 C 75.140625 71.390625 76.171875 72.421875 77.445312 72.421875 C 78.71875 72.421875 79.75 71.390625 79.75 70.117188 Z M 79.75 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.414062 70.117188 C 84.414062 68.84375 83.382812 67.8125 82.109375 67.8125 C 80.835938 67.8125 79.804688 68.84375 79.804688 70.117188 C 79.804688 71.390625 80.835938 72.421875 82.109375 72.421875 C 83.382812 72.421875 84.414062 71.390625 84.414062 70.117188 Z M 84.414062 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.261719 70.117188 C 83.261719 68.84375 82.230469 67.8125 80.957031 67.8125 C 79.683594 67.8125 78.652344 68.84375 78.652344 70.117188 C 78.652344 71.390625 79.683594 72.421875 80.957031 72.421875 C 82.230469 72.421875 83.261719 71.390625 83.261719 70.117188 Z M 83.261719 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.820312 70.117188 C 80.820312 68.84375 79.789062 67.8125 78.515625 67.8125 C 77.242188 67.8125 76.210938 68.84375 76.210938 70.117188 C 76.210938 71.390625 77.242188 72.421875 78.515625 72.421875 C 79.789062 72.421875 80.820312 71.390625 80.820312 70.117188 Z M 80.820312 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.714844 70.117188 C 84.714844 68.84375 83.683594 67.8125 82.410156 67.8125 C 81.136719 67.8125 80.105469 68.84375 80.105469 70.117188 C 80.105469 71.390625 81.136719 72.421875 82.410156 72.421875 C 83.683594 72.421875 84.714844 71.390625 84.714844 70.117188 Z M 84.714844 70.117188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.691406 65.273438 C 78.691406 64 77.660156 62.96875 76.386719 62.96875 C 75.113281 62.96875 74.082031 64 74.082031 65.273438 C 74.082031 66.546875 75.113281 67.578125 76.386719 67.578125 C 77.660156 67.578125 78.691406 66.546875 78.691406 65.273438 Z M 78.691406 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.667969 65.273438 C 87.667969 64 86.636719 62.96875 85.363281 62.96875 C 84.089844 62.96875 83.058594 64 83.058594 65.273438 C 83.058594 66.546875 84.089844 67.578125 85.363281 67.578125 C 86.636719 67.578125 87.667969 66.546875 87.667969 65.273438 Z M 87.667969 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.183594 65.273438 C 82.183594 64 81.152344 62.96875 79.878906 62.96875 C 78.605469 62.96875 77.574219 64 77.574219 65.273438 C 77.574219 66.546875 78.605469 67.578125 79.878906 67.578125 C 81.152344 67.578125 82.183594 66.546875 82.183594 65.273438 Z M 82.183594 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.148438 65.273438 C 87.148438 64 86.117188 62.96875 84.84375 62.96875 C 83.570312 62.96875 82.539062 64 82.539062 65.273438 C 82.539062 66.546875 83.570312 67.578125 84.84375 67.578125 C 86.117188 67.578125 87.148438 66.546875 87.148438 65.273438 Z M 87.148438 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.554688 65.273438 C 85.554688 64 84.523438 62.96875 83.25 62.96875 C 81.976562 62.96875 80.945312 64 80.945312 65.273438 C 80.945312 66.546875 81.976562 67.578125 83.25 67.578125 C 84.523438 67.578125 85.554688 66.546875 85.554688 65.273438 Z M 85.554688 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.28125 65.273438 C 83.28125 64 82.25 62.96875 80.976562 62.96875 C 79.703125 62.96875 78.671875 64 78.671875 65.273438 C 78.671875 66.546875 79.703125 67.578125 80.976562 67.578125 C 82.25 67.578125 83.28125 66.546875 83.28125 65.273438 Z M 83.28125 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.050781 65.273438 C 82.050781 64 81.019531 62.96875 79.746094 62.96875 C 78.472656 62.96875 77.441406 64 77.441406 65.273438 C 77.441406 66.546875 78.472656 67.578125 79.746094 67.578125 C 81.019531 67.578125 82.050781 66.546875 82.050781 65.273438 Z M 82.050781 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.144531 65.273438 C 86.144531 64 85.113281 62.96875 83.839844 62.96875 C 82.566406 62.96875 81.535156 64 81.535156 65.273438 C 81.535156 66.546875 82.566406 67.578125 83.839844 67.578125 C 85.113281 67.578125 86.144531 66.546875 86.144531 65.273438 Z M 86.144531 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.6875 65.273438 C 77.6875 64 76.65625 62.96875 75.382812 62.96875 C 74.109375 62.96875 73.078125 64 73.078125 65.273438 C 73.078125 66.546875 74.109375 67.578125 75.382812 67.578125 C 76.65625 67.578125 77.6875 66.546875 77.6875 65.273438 Z M 77.6875 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.488281 65.273438 C 82.488281 64 81.457031 62.96875 80.183594 62.96875 C 78.910156 62.96875 77.878906 64 77.878906 65.273438 C 77.878906 66.546875 78.910156 67.578125 80.183594 67.578125 C 81.457031 67.578125 82.488281 66.546875 82.488281 65.273438 Z M 82.488281 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.421875 65.273438 C 88.421875 64 87.390625 62.96875 86.117188 62.96875 C 84.84375 62.96875 83.8125 64 83.8125 65.273438 C 83.8125 66.546875 84.84375 67.578125 86.117188 67.578125 C 87.390625 67.578125 88.421875 66.546875 88.421875 65.273438 Z M 88.421875 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.597656 65.273438 C 82.597656 64 81.566406 62.96875 80.292969 62.96875 C 79.019531 62.96875 77.988281 64 77.988281 65.273438 C 77.988281 66.546875 79.019531 67.578125 80.292969 67.578125 C 81.566406 67.578125 82.597656 66.546875 82.597656 65.273438 Z M 82.597656 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.859375 65.273438 C 78.859375 64 77.828125 62.96875 76.554688 62.96875 C 75.28125 62.96875 74.25 64 74.25 65.273438 C 74.25 66.546875 75.28125 67.578125 76.554688 67.578125 C 77.828125 67.578125 78.859375 66.546875 78.859375 65.273438 Z M 78.859375 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.101562 65.273438 C 85.101562 64 84.070312 62.96875 82.796875 62.96875 C 81.523438 62.96875 80.492188 64 80.492188 65.273438 C 80.492188 66.546875 81.523438 67.578125 82.796875 67.578125 C 84.070312 67.578125 85.101562 66.546875 85.101562 65.273438 Z M 85.101562 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.972656 65.273438 C 84.972656 64 83.941406 62.96875 82.667969 62.96875 C 81.394531 62.96875 80.363281 64 80.363281 65.273438 C 80.363281 66.546875 81.394531 67.578125 82.667969 67.578125 C 83.941406 67.578125 84.972656 66.546875 84.972656 65.273438 Z M 84.972656 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.28125 65.273438 C 77.28125 64 76.25 62.96875 74.976562 62.96875 C 73.703125 62.96875 72.671875 64 72.671875 65.273438 C 72.671875 66.546875 73.703125 67.578125 74.976562 67.578125 C 76.25 67.578125 77.28125 66.546875 77.28125 65.273438 Z M 77.28125 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.421875 65.273438 C 80.421875 64 79.390625 62.96875 78.117188 62.96875 C 76.84375 62.96875 75.8125 64 75.8125 65.273438 C 75.8125 66.546875 76.84375 67.578125 78.117188 67.578125 C 79.390625 67.578125 80.421875 66.546875 80.421875 65.273438 Z M 80.421875 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.371094 65.273438 C 85.371094 64 84.339844 62.96875 83.066406 62.96875 C 81.792969 62.96875 80.761719 64 80.761719 65.273438 C 80.761719 66.546875 81.792969 67.578125 83.066406 67.578125 C 84.339844 67.578125 85.371094 66.546875 85.371094 65.273438 Z M 85.371094 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.21875 65.273438 C 83.21875 64 82.1875 62.96875 80.914062 62.96875 C 79.640625 62.96875 78.609375 64 78.609375 65.273438 C 78.609375 66.546875 79.640625 67.578125 80.914062 67.578125 C 82.1875 67.578125 83.21875 66.546875 83.21875 65.273438 Z M 83.21875 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.992188 65.273438 C 80.992188 64 79.960938 62.96875 78.6875 62.96875 C 77.414062 62.96875 76.382812 64 76.382812 65.273438 C 76.382812 66.546875 77.414062 67.578125 78.6875 67.578125 C 79.960938 67.578125 80.992188 66.546875 80.992188 65.273438 Z M 80.992188 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.542969 65.273438 C 88.542969 64 87.511719 62.96875 86.238281 62.96875 C 84.964844 62.96875 83.933594 64 83.933594 65.273438 C 83.933594 66.546875 84.964844 67.578125 86.238281 67.578125 C 87.511719 67.578125 88.542969 66.546875 88.542969 65.273438 Z M 88.542969 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.238281 65.273438 C 82.238281 64 81.207031 62.96875 79.933594 62.96875 C 78.660156 62.96875 77.628906 64 77.628906 65.273438 C 77.628906 66.546875 78.660156 67.578125 79.933594 67.578125 C 81.207031 67.578125 82.238281 66.546875 82.238281 65.273438 Z M 82.238281 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.023438 65.273438 C 84.023438 64 82.992188 62.96875 81.71875 62.96875 C 80.445312 62.96875 79.414062 64 79.414062 65.273438 C 79.414062 66.546875 80.445312 67.578125 81.71875 67.578125 C 82.992188 67.578125 84.023438 66.546875 84.023438 65.273438 Z M 84.023438 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.242188 65.273438 C 87.242188 64 86.210938 62.96875 84.9375 62.96875 C 83.664062 62.96875 82.632812 64 82.632812 65.273438 C 82.632812 66.546875 83.664062 67.578125 84.9375 67.578125 C 86.210938 67.578125 87.242188 66.546875 87.242188 65.273438 Z M 87.242188 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.316406 65.273438 C 78.316406 64 77.285156 62.96875 76.011719 62.96875 C 74.738281 62.96875 73.707031 64 73.707031 65.273438 C 73.707031 66.546875 74.738281 67.578125 76.011719 67.578125 C 77.285156 67.578125 78.316406 66.546875 78.316406 65.273438 Z M 78.316406 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.699219 65.273438 C 80.699219 64 79.667969 62.96875 78.394531 62.96875 C 77.121094 62.96875 76.089844 64 76.089844 65.273438 C 76.089844 66.546875 77.121094 67.578125 78.394531 67.578125 C 79.667969 67.578125 80.699219 66.546875 80.699219 65.273438 Z M 80.699219 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.035156 65.273438 C 88.035156 64 87.003906 62.96875 85.730469 62.96875 C 84.457031 62.96875 83.425781 64 83.425781 65.273438 C 83.425781 66.546875 84.457031 67.578125 85.730469 67.578125 C 87.003906 67.578125 88.035156 66.546875 88.035156 65.273438 Z M 88.035156 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.226562 65.273438 C 86.226562 64 85.195312 62.96875 83.921875 62.96875 C 82.648438 62.96875 81.617188 64 81.617188 65.273438 C 81.617188 66.546875 82.648438 67.578125 83.921875 67.578125 C 85.195312 67.578125 86.226562 66.546875 86.226562 65.273438 Z M 86.226562 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.382812 65.273438 C 82.382812 64 81.351562 62.96875 80.078125 62.96875 C 78.804688 62.96875 77.773438 64 77.773438 65.273438 C 77.773438 66.546875 78.804688 67.578125 80.078125 67.578125 C 81.351562 67.578125 82.382812 66.546875 82.382812 65.273438 Z M 82.382812 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.511719 65.273438 C 88.511719 64 87.480469 62.96875 86.207031 62.96875 C 84.933594 62.96875 83.902344 64 83.902344 65.273438 C 83.902344 66.546875 84.933594 67.578125 86.207031 67.578125 C 87.480469 67.578125 88.511719 66.546875 88.511719 65.273438 Z M 88.511719 65.273438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.664062 60.429688 C 78.664062 59.15625 77.632812 58.125 76.359375 58.125 C 75.085938 58.125 74.054688 59.15625 74.054688 60.429688 C 74.054688 61.703125 75.085938 62.734375 76.359375 62.734375 C 77.632812 62.734375 78.664062 61.703125 78.664062 60.429688 Z M 78.664062 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.828125 60.429688 C 90.828125 59.15625 89.796875 58.125 88.523438 58.125 C 87.25 58.125 86.21875 59.15625 86.21875 60.429688 C 86.21875 61.703125 87.25 62.734375 88.523438 62.734375 C 89.796875 62.734375 90.828125 61.703125 90.828125 60.429688 Z M 90.828125 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.398438 60.429688 C 83.398438 59.15625 82.367188 58.125 81.09375 58.125 C 79.820312 58.125 78.789062 59.15625 78.789062 60.429688 C 78.789062 61.703125 79.820312 62.734375 81.09375 62.734375 C 82.367188 62.734375 83.398438 61.703125 83.398438 60.429688 Z M 83.398438 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.121094 60.429688 C 90.121094 59.15625 89.089844 58.125 87.816406 58.125 C 86.542969 58.125 85.511719 59.15625 85.511719 60.429688 C 85.511719 61.703125 86.542969 62.734375 87.816406 62.734375 C 89.089844 62.734375 90.121094 61.703125 90.121094 60.429688 Z M 90.121094 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.960938 60.429688 C 87.960938 59.15625 86.929688 58.125 85.65625 58.125 C 84.382812 58.125 83.351562 59.15625 83.351562 60.429688 C 83.351562 61.703125 84.382812 62.734375 85.65625 62.734375 C 86.929688 62.734375 87.960938 61.703125 87.960938 60.429688 Z M 87.960938 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.882812 60.429688 C 84.882812 59.15625 83.851562 58.125 82.578125 58.125 C 81.304688 58.125 80.273438 59.15625 80.273438 60.429688 C 80.273438 61.703125 81.304688 62.734375 82.578125 62.734375 C 83.851562 62.734375 84.882812 61.703125 84.882812 60.429688 Z M 84.882812 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.21875 60.429688 C 83.21875 59.15625 82.1875 58.125 80.914062 58.125 C 79.640625 58.125 78.609375 59.15625 78.609375 60.429688 C 78.609375 61.703125 79.640625 62.734375 80.914062 62.734375 C 82.1875 62.734375 83.21875 61.703125 83.21875 60.429688 Z M 83.21875 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.761719 60.429688 C 88.761719 59.15625 87.730469 58.125 86.457031 58.125 C 85.183594 58.125 84.152344 59.15625 84.152344 60.429688 C 84.152344 61.703125 85.183594 62.734375 86.457031 62.734375 C 87.730469 62.734375 88.761719 61.703125 88.761719 60.429688 Z M 88.761719 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.304688 60.429688 C 77.304688 59.15625 76.273438 58.125 75 58.125 C 73.726562 58.125 72.695312 59.15625 72.695312 60.429688 C 72.695312 61.703125 73.726562 62.734375 75 62.734375 C 76.273438 62.734375 77.304688 61.703125 77.304688 60.429688 Z M 77.304688 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.804688 60.429688 C 83.804688 59.15625 82.773438 58.125 81.5 58.125 C 80.226562 58.125 79.195312 59.15625 79.195312 60.429688 C 79.195312 61.703125 80.226562 62.734375 81.5 62.734375 C 82.773438 62.734375 83.804688 61.703125 83.804688 60.429688 Z M 83.804688 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.847656 60.429688 C 91.847656 59.15625 90.816406 58.125 89.542969 58.125 C 88.269531 58.125 87.238281 59.15625 87.238281 60.429688 C 87.238281 61.703125 88.269531 62.734375 89.542969 62.734375 C 90.816406 62.734375 91.847656 61.703125 91.847656 60.429688 Z M 91.847656 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.957031 60.429688 C 83.957031 59.15625 82.925781 58.125 81.652344 58.125 C 80.378906 58.125 79.347656 59.15625 79.347656 60.429688 C 79.347656 61.703125 80.378906 62.734375 81.652344 62.734375 C 82.925781 62.734375 83.957031 61.703125 83.957031 60.429688 Z M 83.957031 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.894531 60.429688 C 78.894531 59.15625 77.863281 58.125 76.589844 58.125 C 75.316406 58.125 74.285156 59.15625 74.285156 60.429688 C 74.285156 61.703125 75.316406 62.734375 76.589844 62.734375 C 77.863281 62.734375 78.894531 61.703125 78.894531 60.429688 Z M 78.894531 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.347656 60.429688 C 87.347656 59.15625 86.316406 58.125 85.042969 58.125 C 83.769531 58.125 82.738281 59.15625 82.738281 60.429688 C 82.738281 61.703125 83.769531 62.734375 85.042969 62.734375 C 86.316406 62.734375 87.347656 61.703125 87.347656 60.429688 Z M 87.347656 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.171875 60.429688 C 87.171875 59.15625 86.140625 58.125 84.867188 58.125 C 83.59375 58.125 82.5625 59.15625 82.5625 60.429688 C 82.5625 61.703125 83.59375 62.734375 84.867188 62.734375 C 86.140625 62.734375 87.171875 61.703125 87.171875 60.429688 Z M 87.171875 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.757812 60.429688 C 76.757812 59.15625 75.726562 58.125 74.453125 58.125 C 73.179688 58.125 72.148438 59.15625 72.148438 60.429688 C 72.148438 61.703125 73.179688 62.734375 74.453125 62.734375 C 75.726562 62.734375 76.757812 61.703125 76.757812 60.429688 Z M 76.757812 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.007812 60.429688 C 81.007812 59.15625 79.976562 58.125 78.703125 58.125 C 77.429688 58.125 76.398438 59.15625 76.398438 60.429688 C 76.398438 61.703125 77.429688 62.734375 78.703125 62.734375 C 79.976562 62.734375 81.007812 61.703125 81.007812 60.429688 Z M 81.007812 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.710938 60.429688 C 87.710938 59.15625 86.679688 58.125 85.40625 58.125 C 84.132812 58.125 83.101562 59.15625 83.101562 60.429688 C 83.101562 61.703125 84.132812 62.734375 85.40625 62.734375 C 86.679688 62.734375 87.710938 61.703125 87.710938 60.429688 Z M 87.710938 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.800781 60.429688 C 84.800781 59.15625 83.769531 58.125 82.496094 58.125 C 81.222656 58.125 80.191406 59.15625 80.191406 60.429688 C 80.191406 61.703125 81.222656 62.734375 82.496094 62.734375 C 83.769531 62.734375 84.800781 61.703125 84.800781 60.429688 Z M 84.800781 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.78125 60.429688 C 81.78125 59.15625 80.75 58.125 79.476562 58.125 C 78.203125 58.125 77.171875 59.15625 77.171875 60.429688 C 77.171875 61.703125 78.203125 62.734375 79.476562 62.734375 C 80.75 62.734375 81.78125 61.703125 81.78125 60.429688 Z M 81.78125 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.011719 60.429688 C 92.011719 59.15625 90.980469 58.125 89.707031 58.125 C 88.433594 58.125 87.402344 59.15625 87.402344 60.429688 C 87.402344 61.703125 88.433594 62.734375 89.707031 62.734375 C 90.980469 62.734375 92.011719 61.703125 92.011719 60.429688 Z M 92.011719 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.46875 60.429688 C 83.46875 59.15625 82.4375 58.125 81.164062 58.125 C 79.890625 58.125 78.859375 59.15625 78.859375 60.429688 C 78.859375 61.703125 79.890625 62.734375 81.164062 62.734375 C 82.4375 62.734375 83.46875 61.703125 83.46875 60.429688 Z M 83.46875 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.890625 60.429688 C 85.890625 59.15625 84.859375 58.125 83.585938 58.125 C 82.3125 58.125 81.28125 59.15625 81.28125 60.429688 C 81.28125 61.703125 82.3125 62.734375 83.585938 62.734375 C 84.859375 62.734375 85.890625 61.703125 85.890625 60.429688 Z M 85.890625 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.246094 60.429688 C 90.246094 59.15625 89.214844 58.125 87.941406 58.125 C 86.667969 58.125 85.636719 59.15625 85.636719 60.429688 C 85.636719 61.703125 86.667969 62.734375 87.941406 62.734375 C 89.214844 62.734375 90.246094 61.703125 90.246094 60.429688 Z M 90.246094 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.15625 60.429688 C 78.15625 59.15625 77.125 58.125 75.851562 58.125 C 74.578125 58.125 73.546875 59.15625 73.546875 60.429688 C 73.546875 61.703125 74.578125 62.734375 75.851562 62.734375 C 77.125 62.734375 78.15625 61.703125 78.15625 60.429688 Z M 78.15625 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.382812 60.429688 C 81.382812 59.15625 80.351562 58.125 79.078125 58.125 C 77.804688 58.125 76.773438 59.15625 76.773438 60.429688 C 76.773438 61.703125 77.804688 62.734375 79.078125 62.734375 C 80.351562 62.734375 81.382812 61.703125 81.382812 60.429688 Z M 81.382812 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.324219 60.429688 C 91.324219 59.15625 90.292969 58.125 89.019531 58.125 C 87.746094 58.125 86.714844 59.15625 86.714844 60.429688 C 86.714844 61.703125 87.746094 62.734375 89.019531 62.734375 C 90.292969 62.734375 91.324219 61.703125 91.324219 60.429688 Z M 91.324219 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.871094 60.429688 C 88.871094 59.15625 87.839844 58.125 86.566406 58.125 C 85.292969 58.125 84.261719 59.15625 84.261719 60.429688 C 84.261719 61.703125 85.292969 62.734375 86.566406 62.734375 C 87.839844 62.734375 88.871094 61.703125 88.871094 60.429688 Z M 88.871094 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.664062 60.429688 C 83.664062 59.15625 82.632812 58.125 81.359375 58.125 C 80.085938 58.125 79.054688 59.15625 79.054688 60.429688 C 79.054688 61.703125 80.085938 62.734375 81.359375 62.734375 C 82.632812 62.734375 83.664062 61.703125 83.664062 60.429688 Z M 83.664062 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.96875 60.429688 C 91.96875 59.15625 90.9375 58.125 89.664062 58.125 C 88.390625 58.125 87.359375 59.15625 87.359375 60.429688 C 87.359375 61.703125 88.390625 62.734375 89.664062 62.734375 C 90.9375 62.734375 91.96875 61.703125 91.96875 60.429688 Z M 91.96875 60.429688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.394531 55.585938 C 78.394531 54.3125 77.363281 53.28125 76.089844 53.28125 C 74.816406 53.28125 73.785156 54.3125 73.785156 55.585938 C 73.785156 56.859375 74.816406 57.890625 76.089844 57.890625 C 77.363281 57.890625 78.394531 56.859375 78.394531 55.585938 Z M 78.394531 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.621094 55.585938 C 93.621094 54.3125 92.589844 53.28125 91.316406 53.28125 C 90.042969 53.28125 89.011719 54.3125 89.011719 55.585938 C 89.011719 56.859375 90.042969 57.890625 91.316406 57.890625 C 92.589844 57.890625 93.621094 56.859375 93.621094 55.585938 Z M 93.621094 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.324219 55.585938 C 84.324219 54.3125 83.292969 53.28125 82.019531 53.28125 C 80.746094 53.28125 79.714844 54.3125 79.714844 55.585938 C 79.714844 56.859375 80.746094 57.890625 82.019531 57.890625 C 83.292969 57.890625 84.324219 56.859375 84.324219 55.585938 Z M 84.324219 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.738281 55.585938 C 92.738281 54.3125 91.707031 53.28125 90.433594 53.28125 C 89.160156 53.28125 88.128906 54.3125 88.128906 55.585938 C 88.128906 56.859375 89.160156 57.890625 90.433594 57.890625 C 91.707031 57.890625 92.738281 56.859375 92.738281 55.585938 Z M 92.738281 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.035156 55.585938 C 90.035156 54.3125 89.003906 53.28125 87.730469 53.28125 C 86.457031 53.28125 85.425781 54.3125 85.425781 55.585938 C 85.425781 56.859375 86.457031 57.890625 87.730469 57.890625 C 89.003906 57.890625 90.035156 56.859375 90.035156 55.585938 Z M 90.035156 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.179688 55.585938 C 86.179688 54.3125 85.148438 53.28125 83.875 53.28125 C 82.601562 53.28125 81.570312 54.3125 81.570312 55.585938 C 81.570312 56.859375 82.601562 57.890625 83.875 57.890625 C 85.148438 57.890625 86.179688 56.859375 86.179688 55.585938 Z M 86.179688 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.097656 55.585938 C 84.097656 54.3125 83.066406 53.28125 81.792969 53.28125 C 80.519531 53.28125 79.488281 54.3125 79.488281 55.585938 C 79.488281 56.859375 80.519531 57.890625 81.792969 57.890625 C 83.066406 57.890625 84.097656 56.859375 84.097656 55.585938 Z M 84.097656 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.039062 55.585938 C 91.039062 54.3125 90.007812 53.28125 88.734375 53.28125 C 87.460938 53.28125 86.429688 54.3125 86.429688 55.585938 C 86.429688 56.859375 87.460938 57.890625 88.734375 57.890625 C 90.007812 57.890625 91.039062 56.859375 91.039062 55.585938 Z M 91.039062 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.695312 55.585938 C 76.695312 54.3125 75.664062 53.28125 74.390625 53.28125 C 73.117188 53.28125 72.085938 54.3125 72.085938 55.585938 C 72.085938 56.859375 73.117188 57.890625 74.390625 57.890625 C 75.664062 57.890625 76.695312 56.859375 76.695312 55.585938 Z M 76.695312 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.832031 55.585938 C 84.832031 54.3125 83.800781 53.28125 82.527344 53.28125 C 81.253906 53.28125 80.222656 54.3125 80.222656 55.585938 C 80.222656 56.859375 81.253906 57.890625 82.527344 57.890625 C 83.800781 57.890625 84.832031 56.859375 84.832031 55.585938 Z M 84.832031 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.902344 55.585938 C 94.902344 54.3125 93.871094 53.28125 92.597656 53.28125 C 91.324219 53.28125 90.292969 54.3125 90.292969 55.585938 C 90.292969 56.859375 91.324219 57.890625 92.597656 57.890625 C 93.871094 57.890625 94.902344 56.859375 94.902344 55.585938 Z M 94.902344 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.019531 55.585938 C 85.019531 54.3125 83.988281 53.28125 82.714844 53.28125 C 81.441406 53.28125 80.410156 54.3125 80.410156 55.585938 C 80.410156 56.859375 81.441406 57.890625 82.714844 57.890625 C 83.988281 57.890625 85.019531 56.859375 85.019531 55.585938 Z M 85.019531 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.683594 55.585938 C 78.683594 54.3125 77.652344 53.28125 76.378906 53.28125 C 75.105469 53.28125 74.074219 54.3125 74.074219 55.585938 C 74.074219 56.859375 75.105469 57.890625 76.378906 57.890625 C 77.652344 57.890625 78.683594 56.859375 78.683594 55.585938 Z M 78.683594 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 89.265625 55.585938 C 89.265625 54.3125 88.234375 53.28125 86.960938 53.28125 C 85.6875 53.28125 84.65625 54.3125 84.65625 55.585938 C 84.65625 56.859375 85.6875 57.890625 86.960938 57.890625 C 88.234375 57.890625 89.265625 56.859375 89.265625 55.585938 Z M 89.265625 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 89.046875 55.585938 C 89.046875 54.3125 88.015625 53.28125 86.742188 53.28125 C 85.46875 53.28125 84.4375 54.3125 84.4375 55.585938 C 84.4375 56.859375 85.46875 57.890625 86.742188 57.890625 C 88.015625 57.890625 89.046875 56.859375 89.046875 55.585938 Z M 89.046875 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.007812 55.585938 C 76.007812 54.3125 74.976562 53.28125 73.703125 53.28125 C 72.429688 53.28125 71.398438 54.3125 71.398438 55.585938 C 71.398438 56.859375 72.429688 57.890625 73.703125 57.890625 C 74.976562 57.890625 76.007812 56.859375 76.007812 55.585938 Z M 76.007812 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.332031 55.585938 C 81.332031 54.3125 80.300781 53.28125 79.027344 53.28125 C 77.753906 53.28125 76.722656 54.3125 76.722656 55.585938 C 76.722656 56.859375 77.753906 57.890625 79.027344 57.890625 C 80.300781 57.890625 81.332031 56.859375 81.332031 55.585938 Z M 81.332031 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 89.722656 55.585938 C 89.722656 54.3125 88.691406 53.28125 87.417969 53.28125 C 86.144531 53.28125 85.113281 54.3125 85.113281 55.585938 C 85.113281 56.859375 86.144531 57.890625 87.417969 57.890625 C 88.691406 57.890625 89.722656 56.859375 89.722656 55.585938 Z M 89.722656 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.078125 55.585938 C 86.078125 54.3125 85.046875 53.28125 83.773438 53.28125 C 82.5 53.28125 81.46875 54.3125 81.46875 55.585938 C 81.46875 56.859375 82.5 57.890625 83.773438 57.890625 C 85.046875 57.890625 86.078125 56.859375 86.078125 55.585938 Z M 86.078125 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.300781 55.585938 C 82.300781 54.3125 81.269531 53.28125 79.996094 53.28125 C 78.722656 53.28125 77.691406 54.3125 77.691406 55.585938 C 77.691406 56.859375 78.722656 57.890625 79.996094 57.890625 C 81.269531 57.890625 82.300781 56.859375 82.300781 55.585938 Z M 82.300781 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 95.105469 55.585938 C 95.105469 54.3125 94.074219 53.28125 92.800781 53.28125 C 91.527344 53.28125 90.496094 54.3125 90.496094 55.585938 C 90.496094 56.859375 91.527344 57.890625 92.800781 57.890625 C 94.074219 57.890625 95.105469 56.859375 95.105469 55.585938 Z M 95.105469 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.410156 55.585938 C 84.410156 54.3125 83.378906 53.28125 82.105469 53.28125 C 80.832031 53.28125 79.800781 54.3125 79.800781 55.585938 C 79.800781 56.859375 80.832031 57.890625 82.105469 57.890625 C 83.378906 57.890625 84.410156 56.859375 84.410156 55.585938 Z M 84.410156 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.441406 55.585938 C 87.441406 54.3125 86.410156 53.28125 85.136719 53.28125 C 83.863281 53.28125 82.832031 54.3125 82.832031 55.585938 C 82.832031 56.859375 83.863281 57.890625 85.136719 57.890625 C 86.410156 57.890625 87.441406 56.859375 87.441406 55.585938 Z M 87.441406 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.894531 55.585938 C 92.894531 54.3125 91.863281 53.28125 90.589844 53.28125 C 89.316406 53.28125 88.285156 54.3125 88.285156 55.585938 C 88.285156 56.859375 89.316406 57.890625 90.589844 57.890625 C 91.863281 57.890625 92.894531 56.859375 92.894531 55.585938 Z M 92.894531 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.761719 55.585938 C 77.761719 54.3125 76.730469 53.28125 75.457031 53.28125 C 74.183594 53.28125 73.152344 54.3125 73.152344 55.585938 C 73.152344 56.859375 74.183594 57.890625 75.457031 57.890625 C 76.730469 57.890625 77.761719 56.859375 77.761719 55.585938 Z M 77.761719 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.800781 55.585938 C 81.800781 54.3125 80.769531 53.28125 79.496094 53.28125 C 78.222656 53.28125 77.191406 54.3125 77.191406 55.585938 C 77.191406 56.859375 78.222656 57.890625 79.496094 57.890625 C 80.769531 57.890625 81.800781 56.859375 81.800781 55.585938 Z M 81.800781 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.242188 55.585938 C 94.242188 54.3125 93.210938 53.28125 91.9375 53.28125 C 90.664062 53.28125 89.632812 54.3125 89.632812 55.585938 C 89.632812 56.859375 90.664062 57.890625 91.9375 57.890625 C 93.210938 57.890625 94.242188 56.859375 94.242188 55.585938 Z M 94.242188 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.175781 55.585938 C 91.175781 54.3125 90.144531 53.28125 88.871094 53.28125 C 87.597656 53.28125 86.566406 54.3125 86.566406 55.585938 C 86.566406 56.859375 87.597656 57.890625 88.871094 57.890625 C 90.144531 57.890625 91.175781 56.859375 91.175781 55.585938 Z M 91.175781 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.65625 55.585938 C 84.65625 54.3125 83.625 53.28125 82.351562 53.28125 C 81.078125 53.28125 80.046875 54.3125 80.046875 55.585938 C 80.046875 56.859375 81.078125 57.890625 82.351562 57.890625 C 83.625 57.890625 84.65625 56.859375 84.65625 55.585938 Z M 84.65625 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 95.050781 55.585938 C 95.050781 54.3125 94.019531 53.28125 92.746094 53.28125 C 91.472656 53.28125 90.441406 54.3125 90.441406 55.585938 C 90.441406 56.859375 91.472656 57.890625 92.746094 57.890625 C 94.019531 57.890625 95.050781 56.859375 95.050781 55.585938 Z M 95.050781 55.585938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.890625 50.742188 C 77.890625 49.46875 76.859375 48.4375 75.585938 48.4375 C 74.3125 48.4375 73.28125 49.46875 73.28125 50.742188 C 73.28125 52.015625 74.3125 53.046875 75.585938 53.046875 C 76.859375 53.046875 77.890625 52.015625 77.890625 50.742188 Z M 77.890625 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.027344 50.742188 C 96.027344 49.46875 94.996094 48.4375 93.722656 48.4375 C 92.449219 48.4375 91.417969 49.46875 91.417969 50.742188 C 91.417969 52.015625 92.449219 53.046875 93.722656 53.046875 C 94.996094 53.046875 96.027344 52.015625 96.027344 50.742188 Z M 96.027344 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.949219 50.742188 C 84.949219 49.46875 83.917969 48.4375 82.644531 48.4375 C 81.371094 48.4375 80.339844 49.46875 80.339844 50.742188 C 80.339844 52.015625 81.371094 53.046875 82.644531 53.046875 C 83.917969 53.046875 84.949219 52.015625 84.949219 50.742188 Z M 84.949219 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.972656 50.742188 C 94.972656 49.46875 93.941406 48.4375 92.667969 48.4375 C 91.394531 48.4375 90.363281 49.46875 90.363281 50.742188 C 90.363281 52.015625 91.394531 53.046875 92.667969 53.046875 C 93.941406 53.046875 94.972656 52.015625 94.972656 50.742188 Z M 94.972656 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.753906 50.742188 C 91.753906 49.46875 90.722656 48.4375 89.449219 48.4375 C 88.175781 48.4375 87.144531 49.46875 87.144531 50.742188 C 87.144531 52.015625 88.175781 53.046875 89.449219 53.046875 C 90.722656 53.046875 91.753906 52.015625 91.753906 50.742188 Z M 91.753906 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.164062 50.742188 C 87.164062 49.46875 86.132812 48.4375 84.859375 48.4375 C 83.585938 48.4375 82.554688 49.46875 82.554688 50.742188 C 82.554688 52.015625 83.585938 53.046875 84.859375 53.046875 C 86.132812 53.046875 87.164062 52.015625 87.164062 50.742188 Z M 87.164062 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.679688 50.742188 C 84.679688 49.46875 83.648438 48.4375 82.375 48.4375 C 81.101562 48.4375 80.070312 49.46875 80.070312 50.742188 C 80.070312 52.015625 81.101562 53.046875 82.375 53.046875 C 83.648438 53.046875 84.679688 52.015625 84.679688 50.742188 Z M 84.679688 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.945312 50.742188 C 92.945312 49.46875 91.914062 48.4375 90.640625 48.4375 C 89.367188 48.4375 88.335938 49.46875 88.335938 50.742188 C 88.335938 52.015625 89.367188 53.046875 90.640625 53.046875 C 91.914062 53.046875 92.945312 52.015625 92.945312 50.742188 Z M 92.945312 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.863281 50.742188 C 75.863281 49.46875 74.832031 48.4375 73.558594 48.4375 C 72.285156 48.4375 71.253906 49.46875 71.253906 50.742188 C 71.253906 52.015625 72.285156 53.046875 73.558594 53.046875 C 74.832031 53.046875 75.863281 52.015625 75.863281 50.742188 Z M 75.863281 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.558594 50.742188 C 85.558594 49.46875 84.527344 48.4375 83.253906 48.4375 C 81.980469 48.4375 80.949219 49.46875 80.949219 50.742188 C 80.949219 52.015625 81.980469 53.046875 83.253906 53.046875 C 84.527344 53.046875 85.558594 52.015625 85.558594 50.742188 Z M 85.558594 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 97.550781 50.742188 C 97.550781 49.46875 96.519531 48.4375 95.246094 48.4375 C 93.972656 48.4375 92.941406 49.46875 92.941406 50.742188 C 92.941406 52.015625 93.972656 53.046875 95.246094 53.046875 C 96.519531 53.046875 97.550781 52.015625 97.550781 50.742188 Z M 97.550781 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.777344 50.742188 C 85.777344 49.46875 84.746094 48.4375 83.472656 48.4375 C 82.199219 48.4375 81.167969 49.46875 81.167969 50.742188 C 81.167969 52.015625 82.199219 53.046875 83.472656 53.046875 C 84.746094 53.046875 85.777344 52.015625 85.777344 50.742188 Z M 85.777344 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.230469 50.742188 C 78.230469 49.46875 77.199219 48.4375 75.925781 48.4375 C 74.652344 48.4375 73.621094 49.46875 73.621094 50.742188 C 73.621094 52.015625 74.652344 53.046875 75.925781 53.046875 C 77.199219 53.046875 78.230469 52.015625 78.230469 50.742188 Z M 78.230469 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.835938 50.742188 C 90.835938 49.46875 89.804688 48.4375 88.53125 48.4375 C 87.257812 48.4375 86.226562 49.46875 86.226562 50.742188 C 86.226562 52.015625 87.257812 53.046875 88.53125 53.046875 C 89.804688 53.046875 90.835938 52.015625 90.835938 50.742188 Z M 90.835938 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.578125 50.742188 C 90.578125 49.46875 89.546875 48.4375 88.273438 48.4375 C 87 48.4375 85.96875 49.46875 85.96875 50.742188 C 85.96875 52.015625 87 53.046875 88.273438 53.046875 C 89.546875 53.046875 90.578125 52.015625 90.578125 50.742188 Z M 90.578125 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.046875 50.742188 C 75.046875 49.46875 74.015625 48.4375 72.742188 48.4375 C 71.46875 48.4375 70.4375 49.46875 70.4375 50.742188 C 70.4375 52.015625 71.46875 53.046875 72.742188 53.046875 C 74.015625 53.046875 75.046875 52.015625 75.046875 50.742188 Z M 75.046875 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.386719 50.742188 C 81.386719 49.46875 80.355469 48.4375 79.082031 48.4375 C 77.808594 48.4375 76.777344 49.46875 76.777344 50.742188 C 76.777344 52.015625 77.808594 53.046875 79.082031 53.046875 C 80.355469 53.046875 81.386719 52.015625 81.386719 50.742188 Z M 81.386719 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.382812 50.742188 C 91.382812 49.46875 90.351562 48.4375 89.078125 48.4375 C 87.804688 48.4375 86.773438 49.46875 86.773438 50.742188 C 86.773438 52.015625 87.804688 53.046875 89.078125 53.046875 C 90.351562 53.046875 91.382812 52.015625 91.382812 50.742188 Z M 91.382812 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.039062 50.742188 C 87.039062 49.46875 86.007812 48.4375 84.734375 48.4375 C 83.460938 48.4375 82.429688 49.46875 82.429688 50.742188 C 82.429688 52.015625 83.460938 53.046875 84.734375 53.046875 C 86.007812 53.046875 87.039062 52.015625 87.039062 50.742188 Z M 87.039062 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.539062 50.742188 C 82.539062 49.46875 81.507812 48.4375 80.234375 48.4375 C 78.960938 48.4375 77.929688 49.46875 77.929688 50.742188 C 77.929688 52.015625 78.960938 53.046875 80.234375 53.046875 C 81.507812 53.046875 82.539062 52.015625 82.539062 50.742188 Z M 82.539062 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 97.792969 50.742188 C 97.792969 49.46875 96.761719 48.4375 95.488281 48.4375 C 94.214844 48.4375 93.183594 49.46875 93.183594 50.742188 C 93.183594 52.015625 94.214844 53.046875 95.488281 53.046875 C 96.761719 53.046875 97.792969 52.015625 97.792969 50.742188 Z M 97.792969 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.054688 50.742188 C 85.054688 49.46875 84.023438 48.4375 82.75 48.4375 C 81.476562 48.4375 80.445312 49.46875 80.445312 50.742188 C 80.445312 52.015625 81.476562 53.046875 82.75 53.046875 C 84.023438 53.046875 85.054688 52.015625 85.054688 50.742188 Z M 85.054688 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.664062 50.742188 C 88.664062 49.46875 87.632812 48.4375 86.359375 48.4375 C 85.085938 48.4375 84.054688 49.46875 84.054688 50.742188 C 84.054688 52.015625 85.085938 53.046875 86.359375 53.046875 C 87.632812 53.046875 88.664062 52.015625 88.664062 50.742188 Z M 88.664062 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 95.160156 50.742188 C 95.160156 49.46875 94.128906 48.4375 92.855469 48.4375 C 91.582031 48.4375 90.550781 49.46875 90.550781 50.742188 C 90.550781 52.015625 91.582031 53.046875 92.855469 53.046875 C 94.128906 53.046875 95.160156 52.015625 95.160156 50.742188 Z M 95.160156 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.132812 50.742188 C 77.132812 49.46875 76.101562 48.4375 74.828125 48.4375 C 73.554688 48.4375 72.523438 49.46875 72.523438 50.742188 C 72.523438 52.015625 73.554688 53.046875 74.828125 53.046875 C 76.101562 53.046875 77.132812 52.015625 77.132812 50.742188 Z M 77.132812 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.945312 50.742188 C 81.945312 49.46875 80.914062 48.4375 79.640625 48.4375 C 78.367188 48.4375 77.335938 49.46875 77.335938 50.742188 C 77.335938 52.015625 78.367188 53.046875 79.640625 53.046875 C 80.914062 53.046875 81.945312 52.015625 81.945312 50.742188 Z M 81.945312 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.765625 50.742188 C 96.765625 49.46875 95.734375 48.4375 94.460938 48.4375 C 93.1875 48.4375 92.15625 49.46875 92.15625 50.742188 C 92.15625 52.015625 93.1875 53.046875 94.460938 53.046875 C 95.734375 53.046875 96.765625 52.015625 96.765625 50.742188 Z M 96.765625 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.109375 50.742188 C 93.109375 49.46875 92.078125 48.4375 90.804688 48.4375 C 89.53125 48.4375 88.5 49.46875 88.5 50.742188 C 88.5 52.015625 89.53125 53.046875 90.804688 53.046875 C 92.078125 53.046875 93.109375 52.015625 93.109375 50.742188 Z M 93.109375 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.347656 50.742188 C 85.347656 49.46875 84.316406 48.4375 83.042969 48.4375 C 81.769531 48.4375 80.738281 49.46875 80.738281 50.742188 C 80.738281 52.015625 81.769531 53.046875 83.042969 53.046875 C 84.316406 53.046875 85.347656 52.015625 85.347656 50.742188 Z M 85.347656 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 97.726562 50.742188 C 97.726562 49.46875 96.695312 48.4375 95.421875 48.4375 C 94.148438 48.4375 93.117188 49.46875 93.117188 50.742188 C 93.117188 52.015625 94.148438 53.046875 95.421875 53.046875 C 96.695312 53.046875 97.726562 52.015625 97.726562 50.742188 Z M 97.726562 50.742188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.148438 45.898438 C 77.148438 44.625 76.117188 43.59375 74.84375 43.59375 C 73.570312 43.59375 72.539062 44.625 72.539062 45.898438 C 72.539062 47.171875 73.570312 48.203125 74.84375 48.203125 C 76.117188 48.203125 77.148438 47.171875 77.148438 45.898438 Z M 77.148438 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 98.015625 45.898438 C 98.015625 44.625 96.984375 43.59375 95.710938 43.59375 C 94.4375 43.59375 93.40625 44.625 93.40625 45.898438 C 93.40625 47.171875 94.4375 48.203125 95.710938 48.203125 C 96.984375 48.203125 98.015625 47.171875 98.015625 45.898438 Z M 98.015625 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.269531 45.898438 C 85.269531 44.625 84.238281 43.59375 82.964844 43.59375 C 81.691406 43.59375 80.660156 44.625 80.660156 45.898438 C 80.660156 47.171875 81.691406 48.203125 82.964844 48.203125 C 84.238281 48.203125 85.269531 47.171875 85.269531 45.898438 Z M 85.269531 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.800781 45.898438 C 96.800781 44.625 95.769531 43.59375 94.496094 43.59375 C 93.222656 43.59375 92.191406 44.625 92.191406 45.898438 C 92.191406 47.171875 93.222656 48.203125 94.496094 48.203125 C 95.769531 48.203125 96.800781 47.171875 96.800781 45.898438 Z M 96.800781 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.101562 45.898438 C 93.101562 44.625 92.070312 43.59375 90.796875 43.59375 C 89.523438 43.59375 88.492188 44.625 88.492188 45.898438 C 88.492188 47.171875 89.523438 48.203125 90.796875 48.203125 C 92.070312 48.203125 93.101562 47.171875 93.101562 45.898438 Z M 93.101562 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.816406 45.898438 C 87.816406 44.625 86.785156 43.59375 85.511719 43.59375 C 84.238281 43.59375 83.207031 44.625 83.207031 45.898438 C 83.207031 47.171875 84.238281 48.203125 85.511719 48.203125 C 86.785156 48.203125 87.816406 47.171875 87.816406 45.898438 Z M 87.816406 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.960938 45.898438 C 84.960938 44.625 83.929688 43.59375 82.65625 43.59375 C 81.382812 43.59375 80.351562 44.625 80.351562 45.898438 C 80.351562 47.171875 81.382812 48.203125 82.65625 48.203125 C 83.929688 48.203125 84.960938 47.171875 84.960938 45.898438 Z M 84.960938 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.472656 45.898438 C 94.472656 44.625 93.441406 43.59375 92.167969 43.59375 C 90.894531 43.59375 89.863281 44.625 89.863281 45.898438 C 89.863281 47.171875 90.894531 48.203125 92.167969 48.203125 C 93.441406 48.203125 94.472656 47.171875 94.472656 45.898438 Z M 94.472656 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.816406 45.898438 C 74.816406 44.625 73.785156 43.59375 72.511719 43.59375 C 71.238281 43.59375 70.207031 44.625 70.207031 45.898438 C 70.207031 47.171875 71.238281 48.203125 72.511719 48.203125 C 73.785156 48.203125 74.816406 47.171875 74.816406 45.898438 Z M 74.816406 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.972656 45.898438 C 85.972656 44.625 84.941406 43.59375 83.667969 43.59375 C 82.394531 43.59375 81.363281 44.625 81.363281 45.898438 C 81.363281 47.171875 82.394531 48.203125 83.667969 48.203125 C 84.941406 48.203125 85.972656 47.171875 85.972656 45.898438 Z M 85.972656 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.769531 45.898438 C 99.769531 44.625 98.738281 43.59375 97.464844 43.59375 C 96.191406 43.59375 95.160156 44.625 95.160156 45.898438 C 95.160156 47.171875 96.191406 48.203125 97.464844 48.203125 C 98.738281 48.203125 99.769531 47.171875 99.769531 45.898438 Z M 99.769531 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.226562 45.898438 C 86.226562 44.625 85.195312 43.59375 83.921875 43.59375 C 82.648438 43.59375 81.617188 44.625 81.617188 45.898438 C 81.617188 47.171875 82.648438 48.203125 83.921875 48.203125 C 85.195312 48.203125 86.226562 47.171875 86.226562 45.898438 Z M 86.226562 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.542969 45.898438 C 77.542969 44.625 76.511719 43.59375 75.238281 43.59375 C 73.964844 43.59375 72.933594 44.625 72.933594 45.898438 C 72.933594 47.171875 73.964844 48.203125 75.238281 48.203125 C 76.511719 48.203125 77.542969 47.171875 77.542969 45.898438 Z M 77.542969 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.042969 45.898438 C 92.042969 44.625 91.011719 43.59375 89.738281 43.59375 C 88.464844 43.59375 87.433594 44.625 87.433594 45.898438 C 87.433594 47.171875 88.464844 48.203125 89.738281 48.203125 C 91.011719 48.203125 92.042969 47.171875 92.042969 45.898438 Z M 92.042969 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.746094 45.898438 C 91.746094 44.625 90.714844 43.59375 89.441406 43.59375 C 88.167969 43.59375 87.136719 44.625 87.136719 45.898438 C 87.136719 47.171875 88.167969 48.203125 89.441406 48.203125 C 90.714844 48.203125 91.746094 47.171875 91.746094 45.898438 Z M 91.746094 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.875 45.898438 C 73.875 44.625 72.84375 43.59375 71.570312 43.59375 C 70.296875 43.59375 69.265625 44.625 69.265625 45.898438 C 69.265625 47.171875 70.296875 48.203125 71.570312 48.203125 C 72.84375 48.203125 73.875 47.171875 73.875 45.898438 Z M 73.875 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.171875 45.898438 C 81.171875 44.625 80.140625 43.59375 78.867188 43.59375 C 77.59375 43.59375 76.5625 44.625 76.5625 45.898438 C 76.5625 47.171875 77.59375 48.203125 78.867188 48.203125 C 80.140625 48.203125 81.171875 47.171875 81.171875 45.898438 Z M 81.171875 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.671875 45.898438 C 92.671875 44.625 91.640625 43.59375 90.367188 43.59375 C 89.09375 43.59375 88.0625 44.625 88.0625 45.898438 C 88.0625 47.171875 89.09375 48.203125 90.367188 48.203125 C 91.640625 48.203125 92.671875 47.171875 92.671875 45.898438 Z M 92.671875 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.675781 45.898438 C 87.675781 44.625 86.644531 43.59375 85.371094 43.59375 C 84.097656 43.59375 83.066406 44.625 83.066406 45.898438 C 83.066406 47.171875 84.097656 48.203125 85.371094 48.203125 C 86.644531 48.203125 87.675781 47.171875 87.675781 45.898438 Z M 87.675781 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.5 45.898438 C 82.5 44.625 81.46875 43.59375 80.195312 43.59375 C 78.921875 43.59375 77.890625 44.625 77.890625 45.898438 C 77.890625 47.171875 78.921875 48.203125 80.195312 48.203125 C 81.46875 48.203125 82.5 47.171875 82.5 45.898438 Z M 82.5 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.046875 45.898438 C 100.046875 44.625 99.015625 43.59375 97.742188 43.59375 C 96.46875 43.59375 95.4375 44.625 95.4375 45.898438 C 95.4375 47.171875 96.46875 48.203125 97.742188 48.203125 C 99.015625 48.203125 100.046875 47.171875 100.046875 45.898438 Z M 100.046875 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.390625 45.898438 C 85.390625 44.625 84.359375 43.59375 83.085938 43.59375 C 81.8125 43.59375 80.78125 44.625 80.78125 45.898438 C 80.78125 47.171875 81.8125 48.203125 83.085938 48.203125 C 84.359375 48.203125 85.390625 47.171875 85.390625 45.898438 Z M 85.390625 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 89.546875 45.898438 C 89.546875 44.625 88.515625 43.59375 87.242188 43.59375 C 85.96875 43.59375 84.9375 44.625 84.9375 45.898438 C 84.9375 47.171875 85.96875 48.203125 87.242188 48.203125 C 88.515625 48.203125 89.546875 47.171875 89.546875 45.898438 Z M 89.546875 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 97.019531 45.898438 C 97.019531 44.625 95.988281 43.59375 94.714844 43.59375 C 93.441406 43.59375 92.410156 44.625 92.410156 45.898438 C 92.410156 47.171875 93.441406 48.203125 94.714844 48.203125 C 95.988281 48.203125 97.019531 47.171875 97.019531 45.898438 Z M 97.019531 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.277344 45.898438 C 76.277344 44.625 75.246094 43.59375 73.972656 43.59375 C 72.699219 43.59375 71.667969 44.625 71.667969 45.898438 C 71.667969 47.171875 72.699219 48.203125 73.972656 48.203125 C 75.246094 48.203125 76.277344 47.171875 76.277344 45.898438 Z M 76.277344 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.8125 45.898438 C 81.8125 44.625 80.78125 43.59375 79.507812 43.59375 C 78.234375 43.59375 77.203125 44.625 77.203125 45.898438 C 77.203125 47.171875 78.234375 48.203125 79.507812 48.203125 C 80.78125 48.203125 81.8125 47.171875 81.8125 45.898438 Z M 81.8125 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 98.867188 45.898438 C 98.867188 44.625 97.835938 43.59375 96.5625 43.59375 C 95.289062 43.59375 94.257812 44.625 94.257812 45.898438 C 94.257812 47.171875 95.289062 48.203125 96.5625 48.203125 C 97.835938 48.203125 98.867188 47.171875 98.867188 45.898438 Z M 98.867188 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.660156 45.898438 C 94.660156 44.625 93.628906 43.59375 92.355469 43.59375 C 91.082031 43.59375 90.050781 44.625 90.050781 45.898438 C 90.050781 47.171875 91.082031 48.203125 92.355469 48.203125 C 93.628906 48.203125 94.660156 47.171875 94.660156 45.898438 Z M 94.660156 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.726562 45.898438 C 85.726562 44.625 84.695312 43.59375 83.421875 43.59375 C 82.148438 43.59375 81.117188 44.625 81.117188 45.898438 C 81.117188 47.171875 82.148438 48.203125 83.421875 48.203125 C 84.695312 48.203125 85.726562 47.171875 85.726562 45.898438 Z M 85.726562 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.972656 45.898438 C 99.972656 44.625 98.941406 43.59375 97.667969 43.59375 C 96.394531 43.59375 95.363281 44.625 95.363281 45.898438 C 95.363281 47.171875 96.394531 48.203125 97.667969 48.203125 C 98.941406 48.203125 99.972656 47.171875 99.972656 45.898438 Z M 99.972656 45.898438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.179688 41.054688 C 76.179688 39.78125 75.148438 38.75 73.875 38.75 C 72.601562 38.75 71.570312 39.78125 71.570312 41.054688 C 71.570312 42.328125 72.601562 43.359375 73.875 43.359375 C 75.148438 43.359375 76.179688 42.328125 76.179688 41.054688 Z M 76.179688 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.570312 41.054688 C 99.570312 39.78125 98.539062 38.75 97.265625 38.75 C 95.992188 38.75 94.960938 39.78125 94.960938 41.054688 C 94.960938 42.328125 95.992188 43.359375 97.265625 43.359375 C 98.539062 43.359375 99.570312 42.328125 99.570312 41.054688 Z M 99.570312 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.285156 41.054688 C 85.285156 39.78125 84.253906 38.75 82.980469 38.75 C 81.707031 38.75 80.675781 39.78125 80.675781 41.054688 C 80.675781 42.328125 81.707031 43.359375 82.980469 43.359375 C 84.253906 43.359375 85.285156 42.328125 85.285156 41.054688 Z M 85.285156 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 98.210938 41.054688 C 98.210938 39.78125 97.179688 38.75 95.90625 38.75 C 94.632812 38.75 93.601562 39.78125 93.601562 41.054688 C 93.601562 42.328125 94.632812 43.359375 95.90625 43.359375 C 97.179688 43.359375 98.210938 42.328125 98.210938 41.054688 Z M 98.210938 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.0625 41.054688 C 94.0625 39.78125 93.03125 38.75 91.757812 38.75 C 90.484375 38.75 89.453125 39.78125 89.453125 41.054688 C 89.453125 42.328125 90.484375 43.359375 91.757812 43.359375 C 93.03125 43.359375 94.0625 42.328125 94.0625 41.054688 Z M 94.0625 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.140625 41.054688 C 88.140625 39.78125 87.109375 38.75 85.835938 38.75 C 84.5625 38.75 83.53125 39.78125 83.53125 41.054688 C 83.53125 42.328125 84.5625 43.359375 85.835938 43.359375 C 87.109375 43.359375 88.140625 42.328125 88.140625 41.054688 Z M 88.140625 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.9375 41.054688 C 84.9375 39.78125 83.90625 38.75 82.632812 38.75 C 81.359375 38.75 80.328125 39.78125 80.328125 41.054688 C 80.328125 42.328125 81.359375 43.359375 82.632812 43.359375 C 83.90625 43.359375 84.9375 42.328125 84.9375 41.054688 Z M 84.9375 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 95.597656 41.054688 C 95.597656 39.78125 94.566406 38.75 93.292969 38.75 C 92.019531 38.75 90.988281 39.78125 90.988281 41.054688 C 90.988281 42.328125 92.019531 43.359375 93.292969 43.359375 C 94.566406 43.359375 95.597656 42.328125 95.597656 41.054688 Z M 95.597656 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.566406 41.054688 C 73.566406 39.78125 72.535156 38.75 71.261719 38.75 C 69.988281 38.75 68.957031 39.78125 68.957031 41.054688 C 68.957031 42.328125 69.988281 43.359375 71.261719 43.359375 C 72.535156 43.359375 73.566406 42.328125 73.566406 41.054688 Z M 73.566406 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.070312 41.054688 C 86.070312 39.78125 85.039062 38.75 83.765625 38.75 C 82.492188 38.75 81.460938 39.78125 81.460938 41.054688 C 81.460938 42.328125 82.492188 43.359375 83.765625 43.359375 C 85.039062 43.359375 86.070312 42.328125 86.070312 41.054688 Z M 86.070312 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 101.535156 41.054688 C 101.535156 39.78125 100.503906 38.75 99.230469 38.75 C 97.957031 38.75 96.925781 39.78125 96.925781 41.054688 C 96.925781 42.328125 97.957031 43.359375 99.230469 43.359375 C 100.503906 43.359375 101.535156 42.328125 101.535156 41.054688 Z M 101.535156 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.355469 41.054688 C 86.355469 39.78125 85.324219 38.75 84.050781 38.75 C 82.777344 38.75 81.746094 39.78125 81.746094 41.054688 C 81.746094 42.328125 82.777344 43.359375 84.050781 43.359375 C 85.324219 43.359375 86.355469 42.328125 86.355469 41.054688 Z M 86.355469 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.625 41.054688 C 76.625 39.78125 75.59375 38.75 74.320312 38.75 C 73.046875 38.75 72.015625 39.78125 72.015625 41.054688 C 72.015625 42.328125 73.046875 43.359375 74.320312 43.359375 C 75.59375 43.359375 76.625 42.328125 76.625 41.054688 Z M 76.625 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.878906 41.054688 C 92.878906 39.78125 91.847656 38.75 90.574219 38.75 C 89.300781 38.75 88.269531 39.78125 88.269531 41.054688 C 88.269531 42.328125 89.300781 43.359375 90.574219 43.359375 C 91.847656 43.359375 92.878906 42.328125 92.878906 41.054688 Z M 92.878906 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.542969 41.054688 C 92.542969 39.78125 91.511719 38.75 90.238281 38.75 C 88.964844 38.75 87.933594 39.78125 87.933594 41.054688 C 87.933594 42.328125 88.964844 43.359375 90.238281 43.359375 C 91.511719 43.359375 92.542969 42.328125 92.542969 41.054688 Z M 92.542969 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.515625 41.054688 C 72.515625 39.78125 71.484375 38.75 70.210938 38.75 C 68.9375 38.75 67.90625 39.78125 67.90625 41.054688 C 67.90625 42.328125 68.9375 43.359375 70.210938 43.359375 C 71.484375 43.359375 72.515625 42.328125 72.515625 41.054688 Z M 72.515625 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.691406 41.054688 C 80.691406 39.78125 79.660156 38.75 78.386719 38.75 C 77.113281 38.75 76.082031 39.78125 76.082031 41.054688 C 76.082031 42.328125 77.113281 43.359375 78.386719 43.359375 C 79.660156 43.359375 80.691406 42.328125 80.691406 41.054688 Z M 80.691406 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.582031 41.054688 C 93.582031 39.78125 92.550781 38.75 91.277344 38.75 C 90.003906 38.75 88.972656 39.78125 88.972656 41.054688 C 88.972656 42.328125 90.003906 43.359375 91.277344 43.359375 C 92.550781 43.359375 93.582031 42.328125 93.582031 41.054688 Z M 93.582031 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.980469 41.054688 C 87.980469 39.78125 86.949219 38.75 85.675781 38.75 C 84.402344 38.75 83.371094 39.78125 83.371094 41.054688 C 83.371094 42.328125 84.402344 43.359375 85.675781 43.359375 C 86.949219 43.359375 87.980469 42.328125 87.980469 41.054688 Z M 87.980469 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.179688 41.054688 C 82.179688 39.78125 81.148438 38.75 79.875 38.75 C 78.601562 38.75 77.570312 39.78125 77.570312 41.054688 C 77.570312 42.328125 78.601562 43.359375 79.875 43.359375 C 81.148438 43.359375 82.179688 42.328125 82.179688 41.054688 Z M 82.179688 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 101.84375 41.054688 C 101.84375 39.78125 100.8125 38.75 99.539062 38.75 C 98.265625 38.75 97.234375 39.78125 97.234375 41.054688 C 97.234375 42.328125 98.265625 43.359375 99.539062 43.359375 C 100.8125 43.359375 101.84375 42.328125 101.84375 41.054688 Z M 101.84375 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.421875 41.054688 C 85.421875 39.78125 84.390625 38.75 83.117188 38.75 C 81.84375 38.75 80.8125 39.78125 80.8125 41.054688 C 80.8125 42.328125 81.84375 43.359375 83.117188 43.359375 C 84.390625 43.359375 85.421875 42.328125 85.421875 41.054688 Z M 85.421875 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.078125 41.054688 C 90.078125 39.78125 89.046875 38.75 87.773438 38.75 C 86.5 38.75 85.46875 39.78125 85.46875 41.054688 C 85.46875 42.328125 86.5 43.359375 87.773438 43.359375 C 89.046875 43.359375 90.078125 42.328125 90.078125 41.054688 Z M 90.078125 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 98.453125 41.054688 C 98.453125 39.78125 97.421875 38.75 96.148438 38.75 C 94.875 38.75 93.84375 39.78125 93.84375 41.054688 C 93.84375 42.328125 94.875 43.359375 96.148438 43.359375 C 97.421875 43.359375 98.453125 42.328125 98.453125 41.054688 Z M 98.453125 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.207031 41.054688 C 75.207031 39.78125 74.175781 38.75 72.902344 38.75 C 71.628906 38.75 70.597656 39.78125 70.597656 41.054688 C 70.597656 42.328125 71.628906 43.359375 72.902344 43.359375 C 74.175781 43.359375 75.207031 42.328125 75.207031 41.054688 Z M 75.207031 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.410156 41.054688 C 81.410156 39.78125 80.378906 38.75 79.105469 38.75 C 77.832031 38.75 76.800781 39.78125 76.800781 41.054688 C 76.800781 42.328125 77.832031 43.359375 79.105469 43.359375 C 80.378906 43.359375 81.410156 42.328125 81.410156 41.054688 Z M 81.410156 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.523438 41.054688 C 100.523438 39.78125 99.492188 38.75 98.21875 38.75 C 96.945312 38.75 95.914062 39.78125 95.914062 41.054688 C 95.914062 42.328125 96.945312 43.359375 98.21875 43.359375 C 99.492188 43.359375 100.523438 42.328125 100.523438 41.054688 Z M 100.523438 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 95.808594 41.054688 C 95.808594 39.78125 94.777344 38.75 93.503906 38.75 C 92.230469 38.75 91.199219 39.78125 91.199219 41.054688 C 91.199219 42.328125 92.230469 43.359375 93.503906 43.359375 C 94.777344 43.359375 95.808594 42.328125 95.808594 41.054688 Z M 95.808594 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.796875 41.054688 C 85.796875 39.78125 84.765625 38.75 83.492188 38.75 C 82.21875 38.75 81.1875 39.78125 81.1875 41.054688 C 81.1875 42.328125 82.21875 43.359375 83.492188 43.359375 C 84.765625 43.359375 85.796875 42.328125 85.796875 41.054688 Z M 85.796875 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 101.761719 41.054688 C 101.761719 39.78125 100.730469 38.75 99.457031 38.75 C 98.183594 38.75 97.152344 39.78125 97.152344 41.054688 C 97.152344 42.328125 98.183594 43.359375 99.457031 43.359375 C 100.730469 43.359375 101.761719 42.328125 101.761719 41.054688 Z M 101.761719 41.054688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.996094 36.210938 C 74.996094 34.9375 73.964844 33.90625 72.691406 33.90625 C 71.417969 33.90625 70.386719 34.9375 70.386719 36.210938 C 70.386719 37.484375 71.417969 38.515625 72.691406 38.515625 C 73.964844 38.515625 74.996094 37.484375 74.996094 36.210938 Z M 74.996094 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.671875 36.210938 C 100.671875 34.9375 99.640625 33.90625 98.367188 33.90625 C 97.09375 33.90625 96.0625 34.9375 96.0625 36.210938 C 96.0625 37.484375 97.09375 38.515625 98.367188 38.515625 C 99.640625 38.515625 100.671875 37.484375 100.671875 36.210938 Z M 100.671875 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.992188 36.210938 C 84.992188 34.9375 83.960938 33.90625 82.6875 33.90625 C 81.414062 33.90625 80.382812 34.9375 80.382812 36.210938 C 80.382812 37.484375 81.414062 38.515625 82.6875 38.515625 C 83.960938 38.515625 84.992188 37.484375 84.992188 36.210938 Z M 84.992188 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.179688 36.210938 C 99.179688 34.9375 98.148438 33.90625 96.875 33.90625 C 95.601562 33.90625 94.570312 34.9375 94.570312 36.210938 C 94.570312 37.484375 95.601562 38.515625 96.875 38.515625 C 98.148438 38.515625 99.179688 37.484375 99.179688 36.210938 Z M 99.179688 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.625 36.210938 C 94.625 34.9375 93.59375 33.90625 92.320312 33.90625 C 91.046875 33.90625 90.015625 34.9375 90.015625 36.210938 C 90.015625 37.484375 91.046875 38.515625 92.320312 38.515625 C 93.59375 38.515625 94.625 37.484375 94.625 36.210938 Z M 94.625 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.125 36.210938 C 88.125 34.9375 87.09375 33.90625 85.820312 33.90625 C 84.546875 33.90625 83.515625 34.9375 83.515625 36.210938 C 83.515625 37.484375 84.546875 38.515625 85.820312 38.515625 C 87.09375 38.515625 88.125 37.484375 88.125 36.210938 Z M 88.125 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.609375 36.210938 C 84.609375 34.9375 83.578125 33.90625 82.304688 33.90625 C 81.03125 33.90625 80 34.9375 80 36.210938 C 80 37.484375 81.03125 38.515625 82.304688 38.515625 C 83.578125 38.515625 84.609375 37.484375 84.609375 36.210938 Z M 84.609375 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.3125 36.210938 C 96.3125 34.9375 95.28125 33.90625 94.007812 33.90625 C 92.734375 33.90625 91.703125 34.9375 91.703125 36.210938 C 91.703125 37.484375 92.734375 38.515625 94.007812 38.515625 C 95.28125 38.515625 96.3125 37.484375 96.3125 36.210938 Z M 96.3125 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.128906 36.210938 C 72.128906 34.9375 71.097656 33.90625 69.824219 33.90625 C 68.550781 33.90625 67.519531 34.9375 67.519531 36.210938 C 67.519531 37.484375 68.550781 38.515625 69.824219 38.515625 C 71.097656 38.515625 72.128906 37.484375 72.128906 36.210938 Z M 72.128906 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.851562 36.210938 C 85.851562 34.9375 84.820312 33.90625 83.546875 33.90625 C 82.273438 33.90625 81.242188 34.9375 81.242188 36.210938 C 81.242188 37.484375 82.273438 38.515625 83.546875 38.515625 C 84.820312 38.515625 85.851562 37.484375 85.851562 36.210938 Z M 85.851562 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 102.828125 36.210938 C 102.828125 34.9375 101.796875 33.90625 100.523438 33.90625 C 99.25 33.90625 98.21875 34.9375 98.21875 36.210938 C 98.21875 37.484375 99.25 38.515625 100.523438 38.515625 C 101.796875 38.515625 102.828125 37.484375 102.828125 36.210938 Z M 102.828125 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.167969 36.210938 C 86.167969 34.9375 85.136719 33.90625 83.863281 33.90625 C 82.589844 33.90625 81.558594 34.9375 81.558594 36.210938 C 81.558594 37.484375 82.589844 38.515625 83.863281 38.515625 C 85.136719 38.515625 86.167969 37.484375 86.167969 36.210938 Z M 86.167969 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.484375 36.210938 C 75.484375 34.9375 74.453125 33.90625 73.179688 33.90625 C 71.90625 33.90625 70.875 34.9375 70.875 36.210938 C 70.875 37.484375 71.90625 38.515625 73.179688 38.515625 C 74.453125 38.515625 75.484375 37.484375 75.484375 36.210938 Z M 75.484375 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.328125 36.210938 C 93.328125 34.9375 92.296875 33.90625 91.023438 33.90625 C 89.75 33.90625 88.71875 34.9375 88.71875 36.210938 C 88.71875 37.484375 89.75 38.515625 91.023438 38.515625 C 92.296875 38.515625 93.328125 37.484375 93.328125 36.210938 Z M 93.328125 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.960938 36.210938 C 92.960938 34.9375 91.929688 33.90625 90.65625 33.90625 C 89.382812 33.90625 88.351562 34.9375 88.351562 36.210938 C 88.351562 37.484375 89.382812 38.515625 90.65625 38.515625 C 91.929688 38.515625 92.960938 37.484375 92.960938 36.210938 Z M 92.960938 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.972656 36.210938 C 70.972656 34.9375 69.941406 33.90625 68.667969 33.90625 C 67.394531 33.90625 66.363281 34.9375 66.363281 36.210938 C 66.363281 37.484375 67.394531 38.515625 68.667969 38.515625 C 69.941406 38.515625 70.972656 37.484375 70.972656 36.210938 Z M 70.972656 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.949219 36.210938 C 79.949219 34.9375 78.917969 33.90625 77.644531 33.90625 C 76.371094 33.90625 75.339844 34.9375 75.339844 36.210938 C 75.339844 37.484375 76.371094 38.515625 77.644531 38.515625 C 78.917969 38.515625 79.949219 37.484375 79.949219 36.210938 Z M 79.949219 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.097656 36.210938 C 94.097656 34.9375 93.066406 33.90625 91.792969 33.90625 C 90.519531 33.90625 89.488281 34.9375 89.488281 36.210938 C 89.488281 37.484375 90.519531 38.515625 91.792969 38.515625 C 93.066406 38.515625 94.097656 37.484375 94.097656 36.210938 Z M 94.097656 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.949219 36.210938 C 87.949219 34.9375 86.917969 33.90625 85.644531 33.90625 C 84.371094 33.90625 83.339844 34.9375 83.339844 36.210938 C 83.339844 37.484375 84.371094 38.515625 85.644531 38.515625 C 86.917969 38.515625 87.949219 37.484375 87.949219 36.210938 Z M 87.949219 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.582031 36.210938 C 81.582031 34.9375 80.550781 33.90625 79.277344 33.90625 C 78.003906 33.90625 76.972656 34.9375 76.972656 36.210938 C 76.972656 37.484375 78.003906 38.515625 79.277344 38.515625 C 80.550781 38.515625 81.582031 37.484375 81.582031 36.210938 Z M 81.582031 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 103.171875 36.210938 C 103.171875 34.9375 102.140625 33.90625 100.867188 33.90625 C 99.59375 33.90625 98.5625 34.9375 98.5625 36.210938 C 98.5625 37.484375 99.59375 38.515625 100.867188 38.515625 C 102.140625 38.515625 103.171875 37.484375 103.171875 36.210938 Z M 103.171875 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.140625 36.210938 C 85.140625 34.9375 84.109375 33.90625 82.835938 33.90625 C 81.5625 33.90625 80.53125 34.9375 80.53125 36.210938 C 80.53125 37.484375 81.5625 38.515625 82.835938 38.515625 C 84.109375 38.515625 85.140625 37.484375 85.140625 36.210938 Z M 85.140625 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.253906 36.210938 C 90.253906 34.9375 89.222656 33.90625 87.949219 33.90625 C 86.675781 33.90625 85.644531 34.9375 85.644531 36.210938 C 85.644531 37.484375 86.675781 38.515625 87.949219 38.515625 C 89.222656 38.515625 90.253906 37.484375 90.253906 36.210938 Z M 90.253906 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.445312 36.210938 C 99.445312 34.9375 98.414062 33.90625 97.140625 33.90625 C 95.867188 33.90625 94.835938 34.9375 94.835938 36.210938 C 94.835938 37.484375 95.867188 38.515625 97.140625 38.515625 C 98.414062 38.515625 99.445312 37.484375 99.445312 36.210938 Z M 99.445312 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.929688 36.210938 C 73.929688 34.9375 72.898438 33.90625 71.625 33.90625 C 70.351562 33.90625 69.320312 34.9375 69.320312 36.210938 C 69.320312 37.484375 70.351562 38.515625 71.625 38.515625 C 72.898438 38.515625 73.929688 37.484375 73.929688 36.210938 Z M 73.929688 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.738281 36.210938 C 80.738281 34.9375 79.707031 33.90625 78.433594 33.90625 C 77.160156 33.90625 76.128906 34.9375 76.128906 36.210938 C 76.128906 37.484375 77.160156 38.515625 78.433594 38.515625 C 79.707031 38.515625 80.738281 37.484375 80.738281 36.210938 Z M 80.738281 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 101.71875 36.210938 C 101.71875 34.9375 100.6875 33.90625 99.414062 33.90625 C 98.140625 33.90625 97.109375 34.9375 97.109375 36.210938 C 97.109375 37.484375 98.140625 38.515625 99.414062 38.515625 C 100.6875 38.515625 101.71875 37.484375 101.71875 36.210938 Z M 101.71875 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.546875 36.210938 C 96.546875 34.9375 95.515625 33.90625 94.242188 33.90625 C 92.96875 33.90625 91.9375 34.9375 91.9375 36.210938 C 91.9375 37.484375 92.96875 38.515625 94.242188 38.515625 C 95.515625 38.515625 96.546875 37.484375 96.546875 36.210938 Z M 96.546875 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.554688 36.210938 C 85.554688 34.9375 84.523438 33.90625 83.25 33.90625 C 81.976562 33.90625 80.945312 34.9375 80.945312 36.210938 C 80.945312 37.484375 81.976562 38.515625 83.25 38.515625 C 84.523438 38.515625 85.554688 37.484375 85.554688 36.210938 Z M 85.554688 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 103.078125 36.210938 C 103.078125 34.9375 102.046875 33.90625 100.773438 33.90625 C 99.5 33.90625 98.46875 34.9375 98.46875 36.210938 C 98.46875 37.484375 99.5 38.515625 100.773438 38.515625 C 102.046875 38.515625 103.078125 37.484375 103.078125 36.210938 Z M 103.078125 36.210938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.609375 31.367188 C 73.609375 30.09375 72.578125 29.0625 71.304688 29.0625 C 70.03125 29.0625 69 30.09375 69 31.367188 C 69 32.640625 70.03125 33.671875 71.304688 33.671875 C 72.578125 33.671875 73.609375 32.640625 73.609375 31.367188 Z M 73.609375 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 101.316406 31.367188 C 101.316406 30.09375 100.285156 29.0625 99.011719 29.0625 C 97.738281 29.0625 96.707031 30.09375 96.707031 31.367188 C 96.707031 32.640625 97.738281 33.671875 99.011719 33.671875 C 100.285156 33.671875 101.316406 32.640625 101.316406 31.367188 Z M 101.316406 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.394531 31.367188 C 84.394531 30.09375 83.363281 29.0625 82.089844 29.0625 C 80.816406 29.0625 79.785156 30.09375 79.785156 31.367188 C 79.785156 32.640625 80.816406 33.671875 82.089844 33.671875 C 83.363281 33.671875 84.394531 32.640625 84.394531 31.367188 Z M 84.394531 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.703125 31.367188 C 99.703125 30.09375 98.671875 29.0625 97.398438 29.0625 C 96.125 29.0625 95.09375 30.09375 95.09375 31.367188 C 95.09375 32.640625 96.125 33.671875 97.398438 33.671875 C 98.671875 33.671875 99.703125 32.640625 99.703125 31.367188 Z M 99.703125 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.789062 31.367188 C 94.789062 30.09375 93.757812 29.0625 92.484375 29.0625 C 91.210938 29.0625 90.179688 30.09375 90.179688 31.367188 C 90.179688 32.640625 91.210938 33.671875 92.484375 33.671875 C 93.757812 33.671875 94.789062 32.640625 94.789062 31.367188 Z M 94.789062 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.777344 31.367188 C 87.777344 30.09375 86.746094 29.0625 85.472656 29.0625 C 84.199219 29.0625 83.167969 30.09375 83.167969 31.367188 C 83.167969 32.640625 84.199219 33.671875 85.472656 33.671875 C 86.746094 33.671875 87.777344 32.640625 87.777344 31.367188 Z M 87.777344 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.984375 31.367188 C 83.984375 30.09375 82.953125 29.0625 81.679688 29.0625 C 80.40625 29.0625 79.375 30.09375 79.375 31.367188 C 79.375 32.640625 80.40625 33.671875 81.679688 33.671875 C 82.953125 33.671875 83.984375 32.640625 83.984375 31.367188 Z M 83.984375 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.613281 31.367188 C 96.613281 30.09375 95.582031 29.0625 94.308594 29.0625 C 93.035156 29.0625 92.003906 30.09375 92.003906 31.367188 C 92.003906 32.640625 93.035156 33.671875 94.308594 33.671875 C 95.582031 33.671875 96.613281 32.640625 96.613281 31.367188 Z M 96.613281 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.511719 31.367188 C 70.511719 30.09375 69.480469 29.0625 68.207031 29.0625 C 66.933594 29.0625 65.902344 30.09375 65.902344 31.367188 C 65.902344 32.640625 66.933594 33.671875 68.207031 33.671875 C 69.480469 33.671875 70.511719 32.640625 70.511719 31.367188 Z M 70.511719 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.324219 31.367188 C 85.324219 30.09375 84.292969 29.0625 83.019531 29.0625 C 81.746094 29.0625 80.714844 30.09375 80.714844 31.367188 C 80.714844 32.640625 81.746094 33.671875 83.019531 33.671875 C 84.292969 33.671875 85.324219 32.640625 85.324219 31.367188 Z M 85.324219 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 103.640625 31.367188 C 103.640625 30.09375 102.609375 29.0625 101.335938 29.0625 C 100.0625 29.0625 99.03125 30.09375 99.03125 31.367188 C 99.03125 32.640625 100.0625 33.671875 101.335938 33.671875 C 102.609375 33.671875 103.640625 32.640625 103.640625 31.367188 Z M 103.640625 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.660156 31.367188 C 85.660156 30.09375 84.628906 29.0625 83.355469 29.0625 C 82.082031 29.0625 81.050781 30.09375 81.050781 31.367188 C 81.050781 32.640625 82.082031 33.671875 83.355469 33.671875 C 84.628906 33.671875 85.660156 32.640625 85.660156 31.367188 Z M 85.660156 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.132812 31.367188 C 74.132812 30.09375 73.101562 29.0625 71.828125 29.0625 C 70.554688 29.0625 69.523438 30.09375 69.523438 31.367188 C 69.523438 32.640625 70.554688 33.671875 71.828125 33.671875 C 73.101562 33.671875 74.132812 32.640625 74.132812 31.367188 Z M 74.132812 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.386719 31.367188 C 93.386719 30.09375 92.355469 29.0625 91.082031 29.0625 C 89.808594 29.0625 88.777344 30.09375 88.777344 31.367188 C 88.777344 32.640625 89.808594 33.671875 91.082031 33.671875 C 92.355469 33.671875 93.386719 32.640625 93.386719 31.367188 Z M 93.386719 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.992188 31.367188 C 92.992188 30.09375 91.960938 29.0625 90.6875 29.0625 C 89.414062 29.0625 88.382812 30.09375 88.382812 31.367188 C 88.382812 32.640625 89.414062 33.671875 90.6875 33.671875 C 91.960938 33.671875 92.992188 32.640625 92.992188 31.367188 Z M 92.992188 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.265625 31.367188 C 69.265625 30.09375 68.234375 29.0625 66.960938 29.0625 C 65.6875 29.0625 64.65625 30.09375 64.65625 31.367188 C 64.65625 32.640625 65.6875 33.671875 66.960938 33.671875 C 68.234375 33.671875 69.265625 32.640625 69.265625 31.367188 Z M 69.265625 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.949219 31.367188 C 78.949219 30.09375 77.917969 29.0625 76.644531 29.0625 C 75.371094 29.0625 74.339844 30.09375 74.339844 31.367188 C 74.339844 32.640625 75.371094 33.671875 76.644531 33.671875 C 77.917969 33.671875 78.949219 32.640625 78.949219 31.367188 Z M 78.949219 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.21875 31.367188 C 94.21875 30.09375 93.1875 29.0625 91.914062 29.0625 C 90.640625 29.0625 89.609375 30.09375 89.609375 31.367188 C 89.609375 32.640625 90.640625 33.671875 91.914062 33.671875 C 93.1875 33.671875 94.21875 32.640625 94.21875 31.367188 Z M 94.21875 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.585938 31.367188 C 87.585938 30.09375 86.554688 29.0625 85.28125 29.0625 C 84.007812 29.0625 82.976562 30.09375 82.976562 31.367188 C 82.976562 32.640625 84.007812 33.671875 85.28125 33.671875 C 86.554688 33.671875 87.585938 32.640625 87.585938 31.367188 Z M 87.585938 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.714844 31.367188 C 80.714844 30.09375 79.683594 29.0625 78.410156 29.0625 C 77.136719 29.0625 76.105469 30.09375 76.105469 31.367188 C 76.105469 32.640625 77.136719 33.671875 78.410156 33.671875 C 79.683594 33.671875 80.714844 32.640625 80.714844 31.367188 Z M 80.714844 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 104.011719 31.367188 C 104.011719 30.09375 102.980469 29.0625 101.707031 29.0625 C 100.433594 29.0625 99.402344 30.09375 99.402344 31.367188 C 99.402344 32.640625 100.433594 33.671875 101.707031 33.671875 C 102.980469 33.671875 104.011719 32.640625 104.011719 31.367188 Z M 104.011719 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.554688 31.367188 C 84.554688 30.09375 83.523438 29.0625 82.25 29.0625 C 80.976562 29.0625 79.945312 30.09375 79.945312 31.367188 C 79.945312 32.640625 80.976562 33.671875 82.25 33.671875 C 83.523438 33.671875 84.554688 32.640625 84.554688 31.367188 Z M 84.554688 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.070312 31.367188 C 90.070312 30.09375 89.039062 29.0625 87.765625 29.0625 C 86.492188 29.0625 85.460938 30.09375 85.460938 31.367188 C 85.460938 32.640625 86.492188 33.671875 87.765625 33.671875 C 89.039062 33.671875 90.070312 32.640625 90.070312 31.367188 Z M 90.070312 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.992188 31.367188 C 99.992188 30.09375 98.960938 29.0625 97.6875 29.0625 C 96.414062 29.0625 95.382812 30.09375 95.382812 31.367188 C 95.382812 32.640625 96.414062 33.671875 97.6875 33.671875 C 98.960938 33.671875 99.992188 32.640625 99.992188 31.367188 Z M 99.992188 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.453125 31.367188 C 72.453125 30.09375 71.421875 29.0625 70.148438 29.0625 C 68.875 29.0625 67.84375 30.09375 67.84375 31.367188 C 67.84375 32.640625 68.875 33.671875 70.148438 33.671875 C 71.421875 33.671875 72.453125 32.640625 72.453125 31.367188 Z M 72.453125 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.804688 31.367188 C 79.804688 30.09375 78.773438 29.0625 77.5 29.0625 C 76.226562 29.0625 75.195312 30.09375 75.195312 31.367188 C 75.195312 32.640625 76.226562 33.671875 77.5 33.671875 C 78.773438 33.671875 79.804688 32.640625 79.804688 31.367188 Z M 79.804688 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 102.445312 31.367188 C 102.445312 30.09375 101.414062 29.0625 100.140625 29.0625 C 98.867188 29.0625 97.835938 30.09375 97.835938 31.367188 C 97.835938 32.640625 98.867188 33.671875 100.140625 33.671875 C 101.414062 33.671875 102.445312 32.640625 102.445312 31.367188 Z M 102.445312 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.863281 31.367188 C 96.863281 30.09375 95.832031 29.0625 94.558594 29.0625 C 93.285156 29.0625 92.253906 30.09375 92.253906 31.367188 C 92.253906 32.640625 93.285156 33.671875 94.558594 33.671875 C 95.832031 33.671875 96.863281 32.640625 96.863281 31.367188 Z M 96.863281 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85 31.367188 C 85 30.09375 83.96875 29.0625 82.695312 29.0625 C 81.421875 29.0625 80.390625 30.09375 80.390625 31.367188 C 80.390625 32.640625 81.421875 33.671875 82.695312 33.671875 C 83.96875 33.671875 85 32.640625 85 31.367188 Z M 85 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 103.914062 31.367188 C 103.914062 30.09375 102.882812 29.0625 101.609375 29.0625 C 100.335938 29.0625 99.304688 30.09375 99.304688 31.367188 C 99.304688 32.640625 100.335938 33.671875 101.609375 33.671875 C 102.882812 33.671875 103.914062 32.640625 103.914062 31.367188 Z M 103.914062 31.367188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.03125 26.523438 C 72.03125 25.25 71 24.21875 69.726562 24.21875 C 68.453125 24.21875 67.421875 25.25 67.421875 26.523438 C 67.421875 27.796875 68.453125 28.828125 69.726562 28.828125 C 71 28.828125 72.03125 27.796875 72.03125 26.523438 Z M 72.03125 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 101.488281 26.523438 C 101.488281 25.25 100.457031 24.21875 99.183594 24.21875 C 97.910156 24.21875 96.878906 25.25 96.878906 26.523438 C 96.878906 27.796875 97.910156 28.828125 99.183594 28.828125 C 100.457031 28.828125 101.488281 27.796875 101.488281 26.523438 Z M 101.488281 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.496094 26.523438 C 83.496094 25.25 82.464844 24.21875 81.191406 24.21875 C 79.917969 24.21875 78.886719 25.25 78.886719 26.523438 C 78.886719 27.796875 79.917969 28.828125 81.191406 28.828125 C 82.464844 28.828125 83.496094 27.796875 83.496094 26.523438 Z M 83.496094 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.777344 26.523438 C 99.777344 25.25 98.746094 24.21875 97.472656 24.21875 C 96.199219 24.21875 95.167969 25.25 95.167969 26.523438 C 95.167969 27.796875 96.199219 28.828125 97.472656 28.828125 C 98.746094 28.828125 99.777344 27.796875 99.777344 26.523438 Z M 99.777344 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.550781 26.523438 C 94.550781 25.25 93.519531 24.21875 92.246094 24.21875 C 90.972656 24.21875 89.941406 25.25 89.941406 26.523438 C 89.941406 27.796875 90.972656 28.828125 92.246094 28.828125 C 93.519531 28.828125 94.550781 27.796875 94.550781 26.523438 Z M 94.550781 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.09375 26.523438 C 87.09375 25.25 86.0625 24.21875 84.789062 24.21875 C 83.515625 24.21875 82.484375 25.25 82.484375 26.523438 C 82.484375 27.796875 83.515625 28.828125 84.789062 28.828125 C 86.0625 28.828125 87.09375 27.796875 87.09375 26.523438 Z M 87.09375 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.058594 26.523438 C 83.058594 25.25 82.027344 24.21875 80.753906 24.21875 C 79.480469 24.21875 78.449219 25.25 78.449219 26.523438 C 78.449219 27.796875 79.480469 28.828125 80.753906 28.828125 C 82.027344 28.828125 83.058594 27.796875 83.058594 26.523438 Z M 83.058594 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.488281 26.523438 C 96.488281 25.25 95.457031 24.21875 94.183594 24.21875 C 92.910156 24.21875 91.878906 25.25 91.878906 26.523438 C 91.878906 27.796875 92.910156 28.828125 94.183594 28.828125 C 95.457031 28.828125 96.488281 27.796875 96.488281 26.523438 Z M 96.488281 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.738281 26.523438 C 68.738281 25.25 67.707031 24.21875 66.433594 24.21875 C 65.160156 24.21875 64.128906 25.25 64.128906 26.523438 C 64.128906 27.796875 65.160156 28.828125 66.433594 28.828125 C 67.707031 28.828125 68.738281 27.796875 68.738281 26.523438 Z M 68.738281 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.484375 26.523438 C 84.484375 25.25 83.453125 24.21875 82.179688 24.21875 C 80.90625 24.21875 79.875 25.25 79.875 26.523438 C 79.875 27.796875 80.90625 28.828125 82.179688 28.828125 C 83.453125 28.828125 84.484375 27.796875 84.484375 26.523438 Z M 84.484375 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 103.964844 26.523438 C 103.964844 25.25 102.933594 24.21875 101.660156 24.21875 C 100.386719 24.21875 99.355469 25.25 99.355469 26.523438 C 99.355469 27.796875 100.386719 28.828125 101.660156 28.828125 C 102.933594 28.828125 103.964844 27.796875 103.964844 26.523438 Z M 103.964844 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.84375 26.523438 C 84.84375 25.25 83.8125 24.21875 82.539062 24.21875 C 81.265625 24.21875 80.234375 25.25 80.234375 26.523438 C 80.234375 27.796875 81.265625 28.828125 82.539062 28.828125 C 83.8125 28.828125 84.84375 27.796875 84.84375 26.523438 Z M 84.84375 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.585938 26.523438 C 72.585938 25.25 71.554688 24.21875 70.28125 24.21875 C 69.007812 24.21875 67.976562 25.25 67.976562 26.523438 C 67.976562 27.796875 69.007812 28.828125 70.28125 28.828125 C 71.554688 28.828125 72.585938 27.796875 72.585938 26.523438 Z M 72.585938 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.058594 26.523438 C 93.058594 25.25 92.027344 24.21875 90.753906 24.21875 C 89.480469 24.21875 88.449219 25.25 88.449219 26.523438 C 88.449219 27.796875 89.480469 28.828125 90.753906 28.828125 C 92.027344 28.828125 93.058594 27.796875 93.058594 26.523438 Z M 93.058594 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.640625 26.523438 C 92.640625 25.25 91.609375 24.21875 90.335938 24.21875 C 89.0625 24.21875 88.03125 25.25 88.03125 26.523438 C 88.03125 27.796875 89.0625 28.828125 90.335938 28.828125 C 91.609375 28.828125 92.640625 27.796875 92.640625 26.523438 Z M 92.640625 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.410156 26.523438 C 67.410156 25.25 66.378906 24.21875 65.105469 24.21875 C 63.832031 24.21875 62.800781 25.25 62.800781 26.523438 C 62.800781 27.796875 63.832031 28.828125 65.105469 28.828125 C 66.378906 28.828125 67.410156 27.796875 67.410156 26.523438 Z M 67.410156 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.710938 26.523438 C 77.710938 25.25 76.679688 24.21875 75.40625 24.21875 C 74.132812 24.21875 73.101562 25.25 73.101562 26.523438 C 73.101562 27.796875 74.132812 28.828125 75.40625 28.828125 C 76.679688 28.828125 77.710938 27.796875 77.710938 26.523438 Z M 77.710938 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.945312 26.523438 C 93.945312 25.25 92.914062 24.21875 91.640625 24.21875 C 90.367188 24.21875 89.335938 25.25 89.335938 26.523438 C 89.335938 27.796875 90.367188 28.828125 91.640625 28.828125 C 92.914062 28.828125 93.945312 27.796875 93.945312 26.523438 Z M 93.945312 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.890625 26.523438 C 86.890625 25.25 85.859375 24.21875 84.585938 24.21875 C 83.3125 24.21875 82.28125 25.25 82.28125 26.523438 C 82.28125 27.796875 83.3125 28.828125 84.585938 28.828125 C 85.859375 28.828125 86.890625 27.796875 86.890625 26.523438 Z M 86.890625 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.582031 26.523438 C 79.582031 25.25 78.550781 24.21875 77.277344 24.21875 C 76.003906 24.21875 74.972656 25.25 74.972656 26.523438 C 74.972656 27.796875 76.003906 28.828125 77.277344 28.828125 C 78.550781 28.828125 79.582031 27.796875 79.582031 26.523438 Z M 79.582031 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 104.355469 26.523438 C 104.355469 25.25 103.324219 24.21875 102.050781 24.21875 C 100.777344 24.21875 99.746094 25.25 99.746094 26.523438 C 99.746094 27.796875 100.777344 28.828125 102.050781 28.828125 C 103.324219 28.828125 104.355469 27.796875 104.355469 26.523438 Z M 104.355469 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.667969 26.523438 C 83.667969 25.25 82.636719 24.21875 81.363281 24.21875 C 80.089844 24.21875 79.058594 25.25 79.058594 26.523438 C 79.058594 27.796875 80.089844 28.828125 81.363281 28.828125 C 82.636719 28.828125 83.667969 27.796875 83.667969 26.523438 Z M 83.667969 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 89.53125 26.523438 C 89.53125 25.25 88.5 24.21875 87.226562 24.21875 C 85.953125 24.21875 84.921875 25.25 84.921875 26.523438 C 84.921875 27.796875 85.953125 28.828125 87.226562 28.828125 C 88.5 28.828125 89.53125 27.796875 89.53125 26.523438 Z M 89.53125 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.082031 26.523438 C 100.082031 25.25 99.050781 24.21875 97.777344 24.21875 C 96.503906 24.21875 95.472656 25.25 95.472656 26.523438 C 95.472656 27.796875 96.503906 28.828125 97.777344 28.828125 C 99.050781 28.828125 100.082031 27.796875 100.082031 26.523438 Z M 100.082031 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.800781 26.523438 C 70.800781 25.25 69.769531 24.21875 68.496094 24.21875 C 67.222656 24.21875 66.191406 25.25 66.191406 26.523438 C 66.191406 27.796875 67.222656 28.828125 68.496094 28.828125 C 69.769531 28.828125 70.800781 27.796875 70.800781 26.523438 Z M 70.800781 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.617188 26.523438 C 78.617188 25.25 77.585938 24.21875 76.3125 24.21875 C 75.039062 24.21875 74.007812 25.25 74.007812 26.523438 C 74.007812 27.796875 75.039062 28.828125 76.3125 28.828125 C 77.585938 28.828125 78.617188 27.796875 78.617188 26.523438 Z M 78.617188 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 102.691406 26.523438 C 102.691406 25.25 101.660156 24.21875 100.386719 24.21875 C 99.113281 24.21875 98.082031 25.25 98.082031 26.523438 C 98.082031 27.796875 99.113281 28.828125 100.386719 28.828125 C 101.660156 28.828125 102.691406 27.796875 102.691406 26.523438 Z M 102.691406 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.753906 26.523438 C 96.753906 25.25 95.722656 24.21875 94.449219 24.21875 C 93.175781 24.21875 92.144531 25.25 92.144531 26.523438 C 92.144531 27.796875 93.175781 28.828125 94.449219 28.828125 C 95.722656 28.828125 96.753906 27.796875 96.753906 26.523438 Z M 96.753906 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.140625 26.523438 C 84.140625 25.25 83.109375 24.21875 81.835938 24.21875 C 80.5625 24.21875 79.53125 25.25 79.53125 26.523438 C 79.53125 27.796875 80.5625 28.828125 81.835938 28.828125 C 83.109375 28.828125 84.140625 27.796875 84.140625 26.523438 Z M 84.140625 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 104.25 26.523438 C 104.25 25.25 103.21875 24.21875 101.945312 24.21875 C 100.671875 24.21875 99.640625 25.25 99.640625 26.523438 C 99.640625 27.796875 100.671875 28.828125 101.945312 28.828125 C 103.21875 28.828125 104.25 27.796875 104.25 26.523438 Z M 104.25 26.523438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.273438 21.679688 C 70.273438 20.40625 69.242188 19.375 67.96875 19.375 C 66.695312 19.375 65.664062 20.40625 65.664062 21.679688 C 65.664062 22.953125 66.695312 23.984375 67.96875 23.984375 C 69.242188 23.984375 70.273438 22.953125 70.273438 21.679688 Z M 70.273438 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 101.195312 21.679688 C 101.195312 20.40625 100.164062 19.375 98.890625 19.375 C 97.617188 19.375 96.585938 20.40625 96.585938 21.679688 C 96.585938 22.953125 97.617188 23.984375 98.890625 23.984375 C 100.164062 23.984375 101.195312 22.953125 101.195312 21.679688 Z M 101.195312 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.3125 21.679688 C 82.3125 20.40625 81.28125 19.375 80.007812 19.375 C 78.734375 19.375 77.703125 20.40625 77.703125 21.679688 C 77.703125 22.953125 78.734375 23.984375 80.007812 23.984375 C 81.28125 23.984375 82.3125 22.953125 82.3125 21.679688 Z M 82.3125 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.394531 21.679688 C 99.394531 20.40625 98.363281 19.375 97.089844 19.375 C 95.816406 19.375 94.785156 20.40625 94.785156 21.679688 C 94.785156 22.953125 95.816406 23.984375 97.089844 23.984375 C 98.363281 23.984375 99.394531 22.953125 99.394531 21.679688 Z M 99.394531 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.914062 21.679688 C 93.914062 20.40625 92.882812 19.375 91.609375 19.375 C 90.335938 19.375 89.304688 20.40625 89.304688 21.679688 C 89.304688 22.953125 90.335938 23.984375 91.609375 23.984375 C 92.882812 23.984375 93.914062 22.953125 93.914062 21.679688 Z M 93.914062 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.085938 21.679688 C 86.085938 20.40625 85.054688 19.375 83.78125 19.375 C 82.507812 19.375 81.476562 20.40625 81.476562 21.679688 C 81.476562 22.953125 82.507812 23.984375 83.78125 23.984375 C 85.054688 23.984375 86.085938 22.953125 86.085938 21.679688 Z M 86.085938 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.851562 21.679688 C 81.851562 20.40625 80.820312 19.375 79.546875 19.375 C 78.273438 19.375 77.242188 20.40625 77.242188 21.679688 C 77.242188 22.953125 78.273438 23.984375 79.546875 23.984375 C 80.820312 23.984375 81.851562 22.953125 81.851562 21.679688 Z M 81.851562 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 95.945312 21.679688 C 95.945312 20.40625 94.914062 19.375 93.640625 19.375 C 92.367188 19.375 91.335938 20.40625 91.335938 21.679688 C 91.335938 22.953125 92.367188 23.984375 93.640625 23.984375 C 94.914062 23.984375 95.945312 22.953125 95.945312 21.679688 Z M 95.945312 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.820312 21.679688 C 66.820312 20.40625 65.789062 19.375 64.515625 19.375 C 63.242188 19.375 62.210938 20.40625 62.210938 21.679688 C 62.210938 22.953125 63.242188 23.984375 64.515625 23.984375 C 65.789062 23.984375 66.820312 22.953125 66.820312 21.679688 Z M 66.820312 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.347656 21.679688 C 83.347656 20.40625 82.316406 19.375 81.042969 19.375 C 79.769531 19.375 78.738281 20.40625 78.738281 21.679688 C 78.738281 22.953125 79.769531 23.984375 81.042969 23.984375 C 82.316406 23.984375 83.347656 22.953125 83.347656 21.679688 Z M 83.347656 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 103.789062 21.679688 C 103.789062 20.40625 102.757812 19.375 101.484375 19.375 C 100.210938 19.375 99.179688 20.40625 99.179688 21.679688 C 99.179688 22.953125 100.210938 23.984375 101.484375 23.984375 C 102.757812 23.984375 103.789062 22.953125 103.789062 21.679688 Z M 103.789062 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.726562 21.679688 C 83.726562 20.40625 82.695312 19.375 81.421875 19.375 C 80.148438 19.375 79.117188 20.40625 79.117188 21.679688 C 79.117188 22.953125 80.148438 23.984375 81.421875 23.984375 C 82.695312 23.984375 83.726562 22.953125 83.726562 21.679688 Z M 83.726562 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.859375 21.679688 C 70.859375 20.40625 69.828125 19.375 68.554688 19.375 C 67.28125 19.375 66.25 20.40625 66.25 21.679688 C 66.25 22.953125 67.28125 23.984375 68.554688 23.984375 C 69.828125 23.984375 70.859375 22.953125 70.859375 21.679688 Z M 70.859375 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.347656 21.679688 C 92.347656 20.40625 91.316406 19.375 90.042969 19.375 C 88.769531 19.375 87.738281 20.40625 87.738281 21.679688 C 87.738281 22.953125 88.769531 23.984375 90.042969 23.984375 C 91.316406 23.984375 92.347656 22.953125 92.347656 21.679688 Z M 92.347656 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.90625 21.679688 C 91.90625 20.40625 90.875 19.375 89.601562 19.375 C 88.328125 19.375 87.296875 20.40625 87.296875 21.679688 C 87.296875 22.953125 88.328125 23.984375 89.601562 23.984375 C 90.875 23.984375 91.90625 22.953125 91.90625 21.679688 Z M 91.90625 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.425781 21.679688 C 65.425781 20.40625 64.394531 19.375 63.121094 19.375 C 61.847656 19.375 60.816406 20.40625 60.816406 21.679688 C 60.816406 22.953125 61.847656 23.984375 63.121094 23.984375 C 64.394531 23.984375 65.425781 22.953125 65.425781 21.679688 Z M 65.425781 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.234375 21.679688 C 76.234375 20.40625 75.203125 19.375 73.929688 19.375 C 72.65625 19.375 71.625 20.40625 71.625 21.679688 C 71.625 22.953125 72.65625 23.984375 73.929688 23.984375 C 75.203125 23.984375 76.234375 22.953125 76.234375 21.679688 Z M 76.234375 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.277344 21.679688 C 93.277344 20.40625 92.246094 19.375 90.972656 19.375 C 89.699219 19.375 88.667969 20.40625 88.667969 21.679688 C 88.667969 22.953125 89.699219 23.984375 90.972656 23.984375 C 92.246094 23.984375 93.277344 22.953125 93.277344 21.679688 Z M 93.277344 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.871094 21.679688 C 85.871094 20.40625 84.839844 19.375 83.566406 19.375 C 82.292969 19.375 81.261719 20.40625 81.261719 21.679688 C 81.261719 22.953125 82.292969 23.984375 83.566406 23.984375 C 84.839844 23.984375 85.871094 22.953125 85.871094 21.679688 Z M 85.871094 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.203125 21.679688 C 78.203125 20.40625 77.171875 19.375 75.898438 19.375 C 74.625 19.375 73.59375 20.40625 73.59375 21.679688 C 73.59375 22.953125 74.625 23.984375 75.898438 23.984375 C 77.171875 23.984375 78.203125 22.953125 78.203125 21.679688 Z M 78.203125 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 104.203125 21.679688 C 104.203125 20.40625 103.171875 19.375 101.898438 19.375 C 100.625 19.375 99.59375 20.40625 99.59375 21.679688 C 99.59375 22.953125 100.625 23.984375 101.898438 23.984375 C 103.171875 23.984375 104.203125 22.953125 104.203125 21.679688 Z M 104.203125 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.492188 21.679688 C 82.492188 20.40625 81.460938 19.375 80.1875 19.375 C 78.914062 19.375 77.882812 20.40625 77.882812 21.679688 C 77.882812 22.953125 78.914062 23.984375 80.1875 23.984375 C 81.460938 23.984375 82.492188 22.953125 82.492188 21.679688 Z M 82.492188 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.644531 21.679688 C 88.644531 20.40625 87.613281 19.375 86.339844 19.375 C 85.066406 19.375 84.035156 20.40625 84.035156 21.679688 C 84.035156 22.953125 85.066406 23.984375 86.339844 23.984375 C 87.613281 23.984375 88.644531 22.953125 88.644531 21.679688 Z M 88.644531 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.71875 21.679688 C 99.71875 20.40625 98.6875 19.375 97.414062 19.375 C 96.140625 19.375 95.109375 20.40625 95.109375 21.679688 C 95.109375 22.953125 96.140625 23.984375 97.414062 23.984375 C 98.6875 23.984375 99.71875 22.953125 99.71875 21.679688 Z M 99.71875 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.984375 21.679688 C 68.984375 20.40625 67.953125 19.375 66.679688 19.375 C 65.40625 19.375 64.375 20.40625 64.375 21.679688 C 64.375 22.953125 65.40625 23.984375 66.679688 23.984375 C 67.953125 23.984375 68.984375 22.953125 68.984375 21.679688 Z M 68.984375 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.1875 21.679688 C 77.1875 20.40625 76.15625 19.375 74.882812 19.375 C 73.609375 19.375 72.578125 20.40625 72.578125 21.679688 C 72.578125 22.953125 73.609375 23.984375 74.882812 23.984375 C 76.15625 23.984375 77.1875 22.953125 77.1875 21.679688 Z M 77.1875 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 102.453125 21.679688 C 102.453125 20.40625 101.421875 19.375 100.148438 19.375 C 98.875 19.375 97.84375 20.40625 97.84375 21.679688 C 97.84375 22.953125 98.875 23.984375 100.148438 23.984375 C 101.421875 23.984375 102.453125 22.953125 102.453125 21.679688 Z M 102.453125 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.222656 21.679688 C 96.222656 20.40625 95.191406 19.375 93.917969 19.375 C 92.644531 19.375 91.613281 20.40625 91.613281 21.679688 C 91.613281 22.953125 92.644531 23.984375 93.917969 23.984375 C 95.191406 23.984375 96.222656 22.953125 96.222656 21.679688 Z M 96.222656 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.988281 21.679688 C 82.988281 20.40625 81.957031 19.375 80.683594 19.375 C 79.410156 19.375 78.378906 20.40625 78.378906 21.679688 C 78.378906 22.953125 79.410156 23.984375 80.683594 23.984375 C 81.957031 23.984375 82.988281 22.953125 82.988281 21.679688 Z M 82.988281 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 104.09375 21.679688 C 104.09375 20.40625 103.0625 19.375 101.789062 19.375 C 100.515625 19.375 99.484375 20.40625 99.484375 21.679688 C 99.484375 22.953125 100.515625 23.984375 101.789062 23.984375 C 103.0625 23.984375 104.09375 22.953125 104.09375 21.679688 Z M 104.09375 21.679688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.363281 16.835938 C 68.363281 15.5625 67.332031 14.53125 66.058594 14.53125 C 64.785156 14.53125 63.753906 15.5625 63.753906 16.835938 C 63.753906 18.109375 64.785156 19.140625 66.058594 19.140625 C 67.332031 19.140625 68.363281 18.109375 68.363281 16.835938 Z M 68.363281 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.433594 16.835938 C 100.433594 15.5625 99.402344 14.53125 98.128906 14.53125 C 96.855469 14.53125 95.824219 15.5625 95.824219 16.835938 C 95.824219 18.109375 96.855469 19.140625 98.128906 19.140625 C 99.402344 19.140625 100.433594 18.109375 100.433594 16.835938 Z M 100.433594 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.847656 16.835938 C 80.847656 15.5625 79.816406 14.53125 78.542969 14.53125 C 77.269531 14.53125 76.238281 15.5625 76.238281 16.835938 C 76.238281 18.109375 77.269531 19.140625 78.542969 19.140625 C 79.816406 19.140625 80.847656 18.109375 80.847656 16.835938 Z M 80.847656 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 98.566406 16.835938 C 98.566406 15.5625 97.535156 14.53125 96.261719 14.53125 C 94.988281 14.53125 93.957031 15.5625 93.957031 16.835938 C 93.957031 18.109375 94.988281 19.140625 96.261719 19.140625 C 97.535156 19.140625 98.566406 18.109375 98.566406 16.835938 Z M 98.566406 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.878906 16.835938 C 92.878906 15.5625 91.847656 14.53125 90.574219 14.53125 C 89.300781 14.53125 88.269531 15.5625 88.269531 16.835938 C 88.269531 18.109375 89.300781 19.140625 90.574219 19.140625 C 91.847656 19.140625 92.878906 18.109375 92.878906 16.835938 Z M 92.878906 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.761719 16.835938 C 84.761719 15.5625 83.730469 14.53125 82.457031 14.53125 C 81.183594 14.53125 80.152344 15.5625 80.152344 16.835938 C 80.152344 18.109375 81.183594 19.140625 82.457031 19.140625 C 83.730469 19.140625 84.761719 18.109375 84.761719 16.835938 Z M 84.761719 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.371094 16.835938 C 80.371094 15.5625 79.339844 14.53125 78.066406 14.53125 C 76.792969 14.53125 75.761719 15.5625 75.761719 16.835938 C 75.761719 18.109375 76.792969 19.140625 78.066406 19.140625 C 79.339844 19.140625 80.371094 18.109375 80.371094 16.835938 Z M 80.371094 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.988281 16.835938 C 94.988281 15.5625 93.957031 14.53125 92.683594 14.53125 C 91.410156 14.53125 90.378906 15.5625 90.378906 16.835938 C 90.378906 18.109375 91.410156 19.140625 92.683594 19.140625 C 93.957031 19.140625 94.988281 18.109375 94.988281 16.835938 Z M 94.988281 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.777344 16.835938 C 64.777344 15.5625 63.746094 14.53125 62.472656 14.53125 C 61.199219 14.53125 60.167969 15.5625 60.167969 16.835938 C 60.167969 18.109375 61.199219 19.140625 62.472656 19.140625 C 63.746094 19.140625 64.777344 18.109375 64.777344 16.835938 Z M 64.777344 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.921875 16.835938 C 81.921875 15.5625 80.890625 14.53125 79.617188 14.53125 C 78.34375 14.53125 77.3125 15.5625 77.3125 16.835938 C 77.3125 18.109375 78.34375 19.140625 79.617188 19.140625 C 80.890625 19.140625 81.921875 18.109375 81.921875 16.835938 Z M 81.921875 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 103.125 16.835938 C 103.125 15.5625 102.09375 14.53125 100.820312 14.53125 C 99.546875 14.53125 98.515625 15.5625 98.515625 16.835938 C 98.515625 18.109375 99.546875 19.140625 100.820312 19.140625 C 102.09375 19.140625 103.125 18.109375 103.125 16.835938 Z M 103.125 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.3125 16.835938 C 82.3125 15.5625 81.28125 14.53125 80.007812 14.53125 C 78.734375 14.53125 77.703125 15.5625 77.703125 16.835938 C 77.703125 18.109375 78.734375 19.140625 80.007812 19.140625 C 81.28125 19.140625 82.3125 18.109375 82.3125 16.835938 Z M 82.3125 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.96875 16.835938 C 68.96875 15.5625 67.9375 14.53125 66.664062 14.53125 C 65.390625 14.53125 64.359375 15.5625 64.359375 16.835938 C 64.359375 18.109375 65.390625 19.140625 66.664062 19.140625 C 67.9375 19.140625 68.96875 18.109375 68.96875 16.835938 Z M 68.96875 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.253906 16.835938 C 91.253906 15.5625 90.222656 14.53125 88.949219 14.53125 C 87.675781 14.53125 86.644531 15.5625 86.644531 16.835938 C 86.644531 18.109375 87.675781 19.140625 88.949219 19.140625 C 90.222656 19.140625 91.253906 18.109375 91.253906 16.835938 Z M 91.253906 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.796875 16.835938 C 90.796875 15.5625 89.765625 14.53125 88.492188 14.53125 C 87.21875 14.53125 86.1875 15.5625 86.1875 16.835938 C 86.1875 18.109375 87.21875 19.140625 88.492188 19.140625 C 89.765625 19.140625 90.796875 18.109375 90.796875 16.835938 Z M 90.796875 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 63.335938 16.835938 C 63.335938 15.5625 62.304688 14.53125 61.03125 14.53125 C 59.757812 14.53125 58.726562 15.5625 58.726562 16.835938 C 58.726562 18.109375 59.757812 19.140625 61.03125 19.140625 C 62.304688 19.140625 63.335938 18.109375 63.335938 16.835938 Z M 63.335938 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.542969 16.835938 C 74.542969 15.5625 73.511719 14.53125 72.238281 14.53125 C 70.964844 14.53125 69.933594 15.5625 69.933594 16.835938 C 69.933594 18.109375 70.964844 19.140625 72.238281 19.140625 C 73.511719 19.140625 74.542969 18.109375 74.542969 16.835938 Z M 74.542969 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.21875 16.835938 C 92.21875 15.5625 91.1875 14.53125 89.914062 14.53125 C 88.640625 14.53125 87.609375 15.5625 87.609375 16.835938 C 87.609375 18.109375 88.640625 19.140625 89.914062 19.140625 C 91.1875 19.140625 92.21875 18.109375 92.21875 16.835938 Z M 92.21875 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.539062 16.835938 C 84.539062 15.5625 83.507812 14.53125 82.234375 14.53125 C 80.960938 14.53125 79.929688 15.5625 79.929688 16.835938 C 79.929688 18.109375 80.960938 19.140625 82.234375 19.140625 C 83.507812 19.140625 84.539062 18.109375 84.539062 16.835938 Z M 84.539062 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.585938 16.835938 C 76.585938 15.5625 75.554688 14.53125 74.28125 14.53125 C 73.007812 14.53125 71.976562 15.5625 71.976562 16.835938 C 71.976562 18.109375 73.007812 19.140625 74.28125 19.140625 C 75.554688 19.140625 76.585938 18.109375 76.585938 16.835938 Z M 76.585938 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 103.554688 16.835938 C 103.554688 15.5625 102.523438 14.53125 101.25 14.53125 C 99.976562 14.53125 98.945312 15.5625 98.945312 16.835938 C 98.945312 18.109375 99.976562 19.140625 101.25 19.140625 C 102.523438 19.140625 103.554688 18.109375 103.554688 16.835938 Z M 103.554688 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.03125 16.835938 C 81.03125 15.5625 80 14.53125 78.726562 14.53125 C 77.453125 14.53125 76.421875 15.5625 76.421875 16.835938 C 76.421875 18.109375 77.453125 19.140625 78.726562 19.140625 C 80 19.140625 81.03125 18.109375 81.03125 16.835938 Z M 81.03125 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.414062 16.835938 C 87.414062 15.5625 86.382812 14.53125 85.109375 14.53125 C 83.835938 14.53125 82.804688 15.5625 82.804688 16.835938 C 82.804688 18.109375 83.835938 19.140625 85.109375 19.140625 C 86.382812 19.140625 87.414062 18.109375 87.414062 16.835938 Z M 87.414062 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 98.902344 16.835938 C 98.902344 15.5625 97.871094 14.53125 96.597656 14.53125 C 95.324219 14.53125 94.292969 15.5625 94.292969 16.835938 C 94.292969 18.109375 95.324219 19.140625 96.597656 19.140625 C 97.871094 19.140625 98.902344 18.109375 98.902344 16.835938 Z M 98.902344 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 67.027344 16.835938 C 67.027344 15.5625 65.996094 14.53125 64.722656 14.53125 C 63.449219 14.53125 62.417969 15.5625 62.417969 16.835938 C 62.417969 18.109375 63.449219 19.140625 64.722656 19.140625 C 65.996094 19.140625 67.027344 18.109375 67.027344 16.835938 Z M 67.027344 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.53125 16.835938 C 75.53125 15.5625 74.5 14.53125 73.226562 14.53125 C 71.953125 14.53125 70.921875 15.5625 70.921875 16.835938 C 70.921875 18.109375 71.953125 19.140625 73.226562 19.140625 C 74.5 19.140625 75.53125 18.109375 75.53125 16.835938 Z M 75.53125 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 101.738281 16.835938 C 101.738281 15.5625 100.707031 14.53125 99.433594 14.53125 C 98.160156 14.53125 97.128906 15.5625 97.128906 16.835938 C 97.128906 18.109375 98.160156 19.140625 99.433594 19.140625 C 100.707031 19.140625 101.738281 18.109375 101.738281 16.835938 Z M 101.738281 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 95.277344 16.835938 C 95.277344 15.5625 94.246094 14.53125 92.972656 14.53125 C 91.699219 14.53125 90.667969 15.5625 90.667969 16.835938 C 90.667969 18.109375 91.699219 19.140625 92.972656 19.140625 C 94.246094 19.140625 95.277344 18.109375 95.277344 16.835938 Z M 95.277344 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.546875 16.835938 C 81.546875 15.5625 80.515625 14.53125 79.242188 14.53125 C 77.96875 14.53125 76.9375 15.5625 76.9375 16.835938 C 76.9375 18.109375 77.96875 19.140625 79.242188 19.140625 C 80.515625 19.140625 81.546875 18.109375 81.546875 16.835938 Z M 81.546875 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 103.4375 16.835938 C 103.4375 15.5625 102.40625 14.53125 101.132812 14.53125 C 99.859375 14.53125 98.828125 15.5625 98.828125 16.835938 C 98.828125 18.109375 99.859375 19.140625 101.132812 19.140625 C 102.40625 19.140625 103.4375 18.109375 103.4375 16.835938 Z M 103.4375 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.3125 11.992188 C 66.3125 10.71875 65.28125 9.6875 64.007812 9.6875 C 62.734375 9.6875 61.703125 10.71875 61.703125 11.992188 C 61.703125 13.265625 62.734375 14.296875 64.007812 14.296875 C 65.28125 14.296875 66.3125 13.265625 66.3125 11.992188 Z M 66.3125 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.210938 11.992188 C 99.210938 10.71875 98.179688 9.6875 96.90625 9.6875 C 95.632812 9.6875 94.601562 10.71875 94.601562 11.992188 C 94.601562 13.265625 95.632812 14.296875 96.90625 14.296875 C 98.179688 14.296875 99.210938 13.265625 99.210938 11.992188 Z M 99.210938 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.117188 11.992188 C 79.117188 10.71875 78.085938 9.6875 76.8125 9.6875 C 75.539062 9.6875 74.507812 10.71875 74.507812 11.992188 C 74.507812 13.265625 75.539062 14.296875 76.8125 14.296875 C 78.085938 14.296875 79.117188 13.265625 79.117188 11.992188 Z M 79.117188 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 97.296875 11.992188 C 97.296875 10.71875 96.265625 9.6875 94.992188 9.6875 C 93.71875 9.6875 92.6875 10.71875 92.6875 11.992188 C 92.6875 13.265625 93.71875 14.296875 94.992188 14.296875 C 96.265625 14.296875 97.296875 13.265625 97.296875 11.992188 Z M 97.296875 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.464844 11.992188 C 91.464844 10.71875 90.433594 9.6875 89.160156 9.6875 C 87.886719 9.6875 86.855469 10.71875 86.855469 11.992188 C 86.855469 13.265625 87.886719 14.296875 89.160156 14.296875 C 90.433594 14.296875 91.464844 13.265625 91.464844 11.992188 Z M 91.464844 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.132812 11.992188 C 83.132812 10.71875 82.101562 9.6875 80.828125 9.6875 C 79.554688 9.6875 78.523438 10.71875 78.523438 11.992188 C 78.523438 13.265625 79.554688 14.296875 80.828125 14.296875 C 82.101562 14.296875 83.132812 13.265625 83.132812 11.992188 Z M 83.132812 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.628906 11.992188 C 78.628906 10.71875 77.597656 9.6875 76.324219 9.6875 C 75.050781 9.6875 74.019531 10.71875 74.019531 11.992188 C 74.019531 13.265625 75.050781 14.296875 76.324219 14.296875 C 77.597656 14.296875 78.628906 13.265625 78.628906 11.992188 Z M 78.628906 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.625 11.992188 C 93.625 10.71875 92.59375 9.6875 91.320312 9.6875 C 90.046875 9.6875 89.015625 10.71875 89.015625 11.992188 C 89.015625 13.265625 90.046875 14.296875 91.320312 14.296875 C 92.59375 14.296875 93.625 13.265625 93.625 11.992188 Z M 93.625 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.636719 11.992188 C 62.636719 10.71875 61.605469 9.6875 60.332031 9.6875 C 59.058594 9.6875 58.027344 10.71875 58.027344 11.992188 C 58.027344 13.265625 59.058594 14.296875 60.332031 14.296875 C 61.605469 14.296875 62.636719 13.265625 62.636719 11.992188 Z M 62.636719 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.222656 11.992188 C 80.222656 10.71875 79.191406 9.6875 77.917969 9.6875 C 76.644531 9.6875 75.613281 10.71875 75.613281 11.992188 C 75.613281 13.265625 76.644531 14.296875 77.917969 14.296875 C 79.191406 14.296875 80.222656 13.265625 80.222656 11.992188 Z M 80.222656 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 101.972656 11.992188 C 101.972656 10.71875 100.941406 9.6875 99.667969 9.6875 C 98.394531 9.6875 97.363281 10.71875 97.363281 11.992188 C 97.363281 13.265625 98.394531 14.296875 99.667969 14.296875 C 100.941406 14.296875 101.972656 13.265625 101.972656 11.992188 Z M 101.972656 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.625 11.992188 C 80.625 10.71875 79.59375 9.6875 78.320312 9.6875 C 77.046875 9.6875 76.015625 10.71875 76.015625 11.992188 C 76.015625 13.265625 77.046875 14.296875 78.320312 14.296875 C 79.59375 14.296875 80.625 13.265625 80.625 11.992188 Z M 80.625 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.933594 11.992188 C 66.933594 10.71875 65.902344 9.6875 64.628906 9.6875 C 63.355469 9.6875 62.324219 10.71875 62.324219 11.992188 C 62.324219 13.265625 63.355469 14.296875 64.628906 14.296875 C 65.902344 14.296875 66.933594 13.265625 66.933594 11.992188 Z M 66.933594 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 89.796875 11.992188 C 89.796875 10.71875 88.765625 9.6875 87.492188 9.6875 C 86.21875 9.6875 85.1875 10.71875 85.1875 11.992188 C 85.1875 13.265625 86.21875 14.296875 87.492188 14.296875 C 88.765625 14.296875 89.796875 13.265625 89.796875 11.992188 Z M 89.796875 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 89.328125 11.992188 C 89.328125 10.71875 88.296875 9.6875 87.023438 9.6875 C 85.75 9.6875 84.71875 10.71875 84.71875 11.992188 C 84.71875 13.265625 85.75 14.296875 87.023438 14.296875 C 88.296875 14.296875 89.328125 13.265625 89.328125 11.992188 Z M 89.328125 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.152344 11.992188 C 61.152344 10.71875 60.121094 9.6875 58.847656 9.6875 C 57.574219 9.6875 56.542969 10.71875 56.542969 11.992188 C 56.542969 13.265625 57.574219 14.296875 58.847656 14.296875 C 60.121094 14.296875 61.152344 13.265625 61.152344 11.992188 Z M 61.152344 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.652344 11.992188 C 72.652344 10.71875 71.621094 9.6875 70.347656 9.6875 C 69.074219 9.6875 68.042969 10.71875 68.042969 11.992188 C 68.042969 13.265625 69.074219 14.296875 70.347656 14.296875 C 71.621094 14.296875 72.652344 13.265625 72.652344 11.992188 Z M 72.652344 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.785156 11.992188 C 90.785156 10.71875 89.753906 9.6875 88.480469 9.6875 C 87.207031 9.6875 86.175781 10.71875 86.175781 11.992188 C 86.175781 13.265625 87.207031 14.296875 88.480469 14.296875 C 89.753906 14.296875 90.785156 13.265625 90.785156 11.992188 Z M 90.785156 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.90625 11.992188 C 82.90625 10.71875 81.875 9.6875 80.601562 9.6875 C 79.328125 9.6875 78.296875 10.71875 78.296875 11.992188 C 78.296875 13.265625 79.328125 14.296875 80.601562 14.296875 C 81.875 14.296875 82.90625 13.265625 82.90625 11.992188 Z M 82.90625 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.746094 11.992188 C 74.746094 10.71875 73.714844 9.6875 72.441406 9.6875 C 71.167969 9.6875 70.136719 10.71875 70.136719 11.992188 C 70.136719 13.265625 71.167969 14.296875 72.441406 14.296875 C 73.714844 14.296875 74.746094 13.265625 74.746094 11.992188 Z M 74.746094 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 102.414062 11.992188 C 102.414062 10.71875 101.382812 9.6875 100.109375 9.6875 C 98.835938 9.6875 97.804688 10.71875 97.804688 11.992188 C 97.804688 13.265625 98.835938 14.296875 100.109375 14.296875 C 101.382812 14.296875 102.414062 13.265625 102.414062 11.992188 Z M 102.414062 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.308594 11.992188 C 79.308594 10.71875 78.277344 9.6875 77.003906 9.6875 C 75.730469 9.6875 74.699219 10.71875 74.699219 11.992188 C 74.699219 13.265625 75.730469 14.296875 77.003906 14.296875 C 78.277344 14.296875 79.308594 13.265625 79.308594 11.992188 Z M 79.308594 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.859375 11.992188 C 85.859375 10.71875 84.828125 9.6875 83.554688 9.6875 C 82.28125 9.6875 81.25 10.71875 81.25 11.992188 C 81.25 13.265625 82.28125 14.296875 83.554688 14.296875 C 84.828125 14.296875 85.859375 13.265625 85.859375 11.992188 Z M 85.859375 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 97.640625 11.992188 C 97.640625 10.71875 96.609375 9.6875 95.335938 9.6875 C 94.0625 9.6875 93.03125 10.71875 93.03125 11.992188 C 93.03125 13.265625 94.0625 14.296875 95.335938 14.296875 C 96.609375 14.296875 97.640625 13.265625 97.640625 11.992188 Z M 97.640625 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.941406 11.992188 C 64.941406 10.71875 63.910156 9.6875 62.636719 9.6875 C 61.363281 9.6875 60.332031 10.71875 60.332031 11.992188 C 60.332031 13.265625 61.363281 14.296875 62.636719 14.296875 C 63.910156 14.296875 64.941406 13.265625 64.941406 11.992188 Z M 64.941406 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.667969 11.992188 C 73.667969 10.71875 72.636719 9.6875 71.363281 9.6875 C 70.089844 9.6875 69.058594 10.71875 69.058594 11.992188 C 69.058594 13.265625 70.089844 14.296875 71.363281 14.296875 C 72.636719 14.296875 73.667969 13.265625 73.667969 11.992188 Z M 73.667969 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.550781 11.992188 C 100.550781 10.71875 99.519531 9.6875 98.246094 9.6875 C 96.972656 9.6875 95.941406 10.71875 95.941406 11.992188 C 95.941406 13.265625 96.972656 14.296875 98.246094 14.296875 C 99.519531 14.296875 100.550781 13.265625 100.550781 11.992188 Z M 100.550781 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.921875 11.992188 C 93.921875 10.71875 92.890625 9.6875 91.617188 9.6875 C 90.34375 9.6875 89.3125 10.71875 89.3125 11.992188 C 89.3125 13.265625 90.34375 14.296875 91.617188 14.296875 C 92.890625 14.296875 93.921875 13.265625 93.921875 11.992188 Z M 93.921875 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.835938 11.992188 C 79.835938 10.71875 78.804688 9.6875 77.53125 9.6875 C 76.257812 9.6875 75.226562 10.71875 75.226562 11.992188 C 75.226562 13.265625 76.257812 14.296875 77.53125 14.296875 C 78.804688 14.296875 79.835938 13.265625 79.835938 11.992188 Z M 79.835938 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 102.292969 11.992188 C 102.292969 10.71875 101.261719 9.6875 99.988281 9.6875 C 98.714844 9.6875 97.683594 10.71875 97.683594 11.992188 C 97.683594 13.265625 98.714844 14.296875 99.988281 14.296875 C 101.261719 14.296875 102.292969 13.265625 102.292969 11.992188 Z M 102.292969 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.140625 7.148438 C 64.140625 5.875 63.109375 4.84375 61.835938 4.84375 C 60.5625 4.84375 59.53125 5.875 59.53125 7.148438 C 59.53125 8.421875 60.5625 9.453125 61.835938 9.453125 C 63.109375 9.453125 64.140625 8.421875 64.140625 7.148438 Z M 64.140625 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 97.542969 7.148438 C 97.542969 5.875 96.511719 4.84375 95.238281 4.84375 C 93.964844 4.84375 92.933594 5.875 92.933594 7.148438 C 92.933594 8.421875 93.964844 9.453125 95.238281 9.453125 C 96.511719 9.453125 97.542969 8.421875 97.542969 7.148438 Z M 97.542969 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.144531 7.148438 C 77.144531 5.875 76.113281 4.84375 74.839844 4.84375 C 73.566406 4.84375 72.535156 5.875 72.535156 7.148438 C 72.535156 8.421875 73.566406 9.453125 74.839844 9.453125 C 76.113281 9.453125 77.144531 8.421875 77.144531 7.148438 Z M 77.144531 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 95.601562 7.148438 C 95.601562 5.875 94.570312 4.84375 93.296875 4.84375 C 92.023438 4.84375 90.992188 5.875 90.992188 7.148438 C 90.992188 8.421875 92.023438 9.453125 93.296875 9.453125 C 94.570312 9.453125 95.601562 8.421875 95.601562 7.148438 Z M 95.601562 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 89.675781 7.148438 C 89.675781 5.875 88.644531 4.84375 87.371094 4.84375 C 86.097656 4.84375 85.066406 5.875 85.066406 7.148438 C 85.066406 8.421875 86.097656 9.453125 87.371094 9.453125 C 88.644531 9.453125 89.675781 8.421875 89.675781 7.148438 Z M 89.675781 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.222656 7.148438 C 81.222656 5.875 80.191406 4.84375 78.917969 4.84375 C 77.644531 4.84375 76.613281 5.875 76.613281 7.148438 C 76.613281 8.421875 77.644531 9.453125 78.917969 9.453125 C 80.191406 9.453125 81.222656 8.421875 81.222656 7.148438 Z M 81.222656 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.648438 7.148438 C 76.648438 5.875 75.617188 4.84375 74.34375 4.84375 C 73.070312 4.84375 72.039062 5.875 72.039062 7.148438 C 72.039062 8.421875 73.070312 9.453125 74.34375 9.453125 C 75.617188 9.453125 76.648438 8.421875 76.648438 7.148438 Z M 76.648438 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 91.871094 7.148438 C 91.871094 5.875 90.839844 4.84375 89.566406 4.84375 C 88.292969 4.84375 87.261719 5.875 87.261719 7.148438 C 87.261719 8.421875 88.292969 9.453125 89.566406 9.453125 C 90.839844 9.453125 91.871094 8.421875 91.871094 7.148438 Z M 91.871094 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.410156 7.148438 C 60.410156 5.875 59.378906 4.84375 58.105469 4.84375 C 56.832031 4.84375 55.800781 5.875 55.800781 7.148438 C 55.800781 8.421875 56.832031 9.453125 58.105469 9.453125 C 59.378906 9.453125 60.410156 8.421875 60.410156 7.148438 Z M 60.410156 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.265625 7.148438 C 78.265625 5.875 77.234375 4.84375 75.960938 4.84375 C 74.6875 4.84375 73.65625 5.875 73.65625 7.148438 C 73.65625 8.421875 74.6875 9.453125 75.960938 9.453125 C 77.234375 9.453125 78.265625 8.421875 78.265625 7.148438 Z M 78.265625 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.347656 7.148438 C 100.347656 5.875 99.316406 4.84375 98.042969 4.84375 C 96.769531 4.84375 95.738281 5.875 95.738281 7.148438 C 95.738281 8.421875 96.769531 9.453125 98.042969 9.453125 C 99.316406 9.453125 100.347656 8.421875 100.347656 7.148438 Z M 100.347656 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.671875 7.148438 C 78.671875 5.875 77.640625 4.84375 76.367188 4.84375 C 75.09375 4.84375 74.0625 5.875 74.0625 7.148438 C 74.0625 8.421875 75.09375 9.453125 76.367188 9.453125 C 77.640625 9.453125 78.671875 8.421875 78.671875 7.148438 Z M 78.671875 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.773438 7.148438 C 64.773438 5.875 63.742188 4.84375 62.46875 4.84375 C 61.195312 4.84375 60.164062 5.875 60.164062 7.148438 C 60.164062 8.421875 61.195312 9.453125 62.46875 9.453125 C 63.742188 9.453125 64.773438 8.421875 64.773438 7.148438 Z M 64.773438 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.984375 7.148438 C 87.984375 5.875 86.953125 4.84375 85.679688 4.84375 C 84.40625 4.84375 83.375 5.875 83.375 7.148438 C 83.375 8.421875 84.40625 9.453125 85.679688 9.453125 C 86.953125 9.453125 87.984375 8.421875 87.984375 7.148438 Z M 87.984375 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.507812 7.148438 C 87.507812 5.875 86.476562 4.84375 85.203125 4.84375 C 83.929688 4.84375 82.898438 5.875 82.898438 7.148438 C 82.898438 8.421875 83.929688 9.453125 85.203125 9.453125 C 86.476562 9.453125 87.507812 8.421875 87.507812 7.148438 Z M 87.507812 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.90625 7.148438 C 58.90625 5.875 57.875 4.84375 56.601562 4.84375 C 55.328125 4.84375 54.296875 5.875 54.296875 7.148438 C 54.296875 8.421875 55.328125 9.453125 56.601562 9.453125 C 57.875 9.453125 58.90625 8.421875 58.90625 7.148438 Z M 58.90625 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.582031 7.148438 C 70.582031 5.875 69.550781 4.84375 68.277344 4.84375 C 67.003906 4.84375 65.972656 5.875 65.972656 7.148438 C 65.972656 8.421875 67.003906 9.453125 68.277344 9.453125 C 69.550781 9.453125 70.582031 8.421875 70.582031 7.148438 Z M 70.582031 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.988281 7.148438 C 88.988281 5.875 87.957031 4.84375 86.683594 4.84375 C 85.410156 4.84375 84.378906 5.875 84.378906 7.148438 C 84.378906 8.421875 85.410156 9.453125 86.683594 9.453125 C 87.957031 9.453125 88.988281 8.421875 88.988281 7.148438 Z M 88.988281 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.992188 7.148438 C 80.992188 5.875 79.960938 4.84375 78.6875 4.84375 C 77.414062 4.84375 76.382812 5.875 76.382812 7.148438 C 76.382812 8.421875 77.414062 9.453125 78.6875 9.453125 C 79.960938 9.453125 80.992188 8.421875 80.992188 7.148438 Z M 80.992188 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.707031 7.148438 C 72.707031 5.875 71.675781 4.84375 70.402344 4.84375 C 69.128906 4.84375 68.097656 5.875 68.097656 7.148438 C 68.097656 8.421875 69.128906 9.453125 70.402344 9.453125 C 71.675781 9.453125 72.707031 8.421875 72.707031 7.148438 Z M 72.707031 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.792969 7.148438 C 100.792969 5.875 99.761719 4.84375 98.488281 4.84375 C 97.214844 4.84375 96.183594 5.875 96.183594 7.148438 C 96.183594 8.421875 97.214844 9.453125 98.488281 9.453125 C 99.761719 9.453125 100.792969 8.421875 100.792969 7.148438 Z M 100.792969 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.335938 7.148438 C 77.335938 5.875 76.304688 4.84375 75.03125 4.84375 C 73.757812 4.84375 72.726562 5.875 72.726562 7.148438 C 72.726562 8.421875 73.757812 9.453125 75.03125 9.453125 C 76.304688 9.453125 77.335938 8.421875 77.335938 7.148438 Z M 77.335938 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.988281 7.148438 C 83.988281 5.875 82.957031 4.84375 81.683594 4.84375 C 80.410156 4.84375 79.378906 5.875 79.378906 7.148438 C 79.378906 8.421875 80.410156 9.453125 81.683594 9.453125 C 82.957031 9.453125 83.988281 8.421875 83.988281 7.148438 Z M 83.988281 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 95.949219 7.148438 C 95.949219 5.875 94.917969 4.84375 93.644531 4.84375 C 92.371094 4.84375 91.339844 5.875 91.339844 7.148438 C 91.339844 8.421875 92.371094 9.453125 93.644531 9.453125 C 94.917969 9.453125 95.949219 8.421875 95.949219 7.148438 Z M 95.949219 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.75 7.148438 C 62.75 5.875 61.71875 4.84375 60.445312 4.84375 C 59.171875 4.84375 58.140625 5.875 58.140625 7.148438 C 58.140625 8.421875 59.171875 9.453125 60.445312 9.453125 C 61.71875 9.453125 62.75 8.421875 62.75 7.148438 Z M 62.75 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.609375 7.148438 C 71.609375 5.875 70.578125 4.84375 69.304688 4.84375 C 68.03125 4.84375 67 5.875 67 7.148438 C 67 8.421875 68.03125 9.453125 69.304688 9.453125 C 70.578125 9.453125 71.609375 8.421875 71.609375 7.148438 Z M 71.609375 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 98.902344 7.148438 C 98.902344 5.875 97.871094 4.84375 96.597656 4.84375 C 95.324219 4.84375 94.292969 5.875 94.292969 7.148438 C 94.292969 8.421875 95.324219 9.453125 96.597656 9.453125 C 97.871094 9.453125 98.902344 8.421875 98.902344 7.148438 Z M 98.902344 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 92.171875 7.148438 C 92.171875 5.875 91.140625 4.84375 89.867188 4.84375 C 88.59375 4.84375 87.5625 5.875 87.5625 7.148438 C 87.5625 8.421875 88.59375 9.453125 89.867188 9.453125 C 91.140625 9.453125 92.171875 8.421875 92.171875 7.148438 Z M 92.171875 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.875 7.148438 C 77.875 5.875 76.84375 4.84375 75.570312 4.84375 C 74.296875 4.84375 73.265625 5.875 73.265625 7.148438 C 73.265625 8.421875 74.296875 9.453125 75.570312 9.453125 C 76.84375 9.453125 77.875 8.421875 77.875 7.148438 Z M 77.875 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.675781 7.148438 C 100.675781 5.875 99.644531 4.84375 98.371094 4.84375 C 97.097656 4.84375 96.066406 5.875 96.066406 7.148438 C 96.066406 8.421875 97.097656 9.453125 98.371094 9.453125 C 99.644531 9.453125 100.675781 8.421875 100.675781 7.148438 Z M 100.675781 7.148438 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.875 2.304688 C 61.875 1.03125 60.84375 0 59.570312 0 C 58.296875 0 57.265625 1.03125 57.265625 2.304688 C 57.265625 3.578125 58.296875 4.609375 59.570312 4.609375 C 60.84375 4.609375 61.875 3.578125 61.875 2.304688 Z M 61.875 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 95.445312 2.304688 C 95.445312 1.03125 94.414062 0 93.140625 0 C 91.867188 0 90.835938 1.03125 90.835938 2.304688 C 90.835938 3.578125 91.867188 4.609375 93.140625 4.609375 C 94.414062 4.609375 95.445312 3.578125 95.445312 2.304688 Z M 95.445312 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.941406 2.304688 C 74.941406 1.03125 73.910156 0 72.636719 0 C 71.363281 0 70.332031 1.03125 70.332031 2.304688 C 70.332031 3.578125 71.363281 4.609375 72.636719 4.609375 C 73.910156 4.609375 74.941406 3.578125 74.941406 2.304688 Z M 74.941406 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.492188 2.304688 C 93.492188 1.03125 92.460938 0 91.1875 0 C 89.914062 0 88.882812 1.03125 88.882812 2.304688 C 88.882812 3.578125 89.914062 4.609375 91.1875 4.609375 C 92.460938 4.609375 93.492188 3.578125 93.492188 2.304688 Z M 93.492188 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.539062 2.304688 C 87.539062 1.03125 86.507812 0 85.234375 0 C 83.960938 0 82.929688 1.03125 82.929688 2.304688 C 82.929688 3.578125 83.960938 4.609375 85.234375 4.609375 C 86.507812 4.609375 87.539062 3.578125 87.539062 2.304688 Z M 87.539062 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.039062 2.304688 C 79.039062 1.03125 78.007812 0 76.734375 0 C 75.460938 0 74.429688 1.03125 74.429688 2.304688 C 74.429688 3.578125 75.460938 4.609375 76.734375 4.609375 C 78.007812 4.609375 79.039062 3.578125 79.039062 2.304688 Z M 79.039062 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.445312 2.304688 C 74.445312 1.03125 73.414062 0 72.140625 0 C 70.867188 0 69.835938 1.03125 69.835938 2.304688 C 69.835938 3.578125 70.867188 4.609375 72.140625 4.609375 C 73.414062 4.609375 74.445312 3.578125 74.445312 2.304688 Z M 74.445312 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 89.746094 2.304688 C 89.746094 1.03125 88.714844 0 87.441406 0 C 86.167969 0 85.136719 1.03125 85.136719 2.304688 C 85.136719 3.578125 86.167969 4.609375 87.441406 4.609375 C 88.714844 4.609375 89.746094 3.578125 89.746094 2.304688 Z M 89.746094 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 58.125 2.304688 C 58.125 1.03125 57.09375 0 55.820312 0 C 54.546875 0 53.515625 1.03125 53.515625 2.304688 C 53.515625 3.578125 54.546875 4.609375 55.820312 4.609375 C 57.09375 4.609375 58.125 3.578125 58.125 2.304688 Z M 58.125 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.070312 2.304688 C 76.070312 1.03125 75.039062 0 73.765625 0 C 72.492188 0 71.460938 1.03125 71.460938 2.304688 C 71.460938 3.578125 72.492188 4.609375 73.765625 4.609375 C 75.039062 4.609375 76.070312 3.578125 76.070312 2.304688 Z M 76.070312 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 98.265625 2.304688 C 98.265625 1.03125 97.234375 0 95.960938 0 C 94.6875 0 93.65625 1.03125 93.65625 2.304688 C 93.65625 3.578125 94.6875 4.609375 95.960938 4.609375 C 97.234375 4.609375 98.265625 3.578125 98.265625 2.304688 Z M 98.265625 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.480469 2.304688 C 76.480469 1.03125 75.449219 0 74.175781 0 C 72.902344 0 71.871094 1.03125 71.871094 2.304688 C 71.871094 3.578125 72.902344 4.609375 74.175781 4.609375 C 75.449219 4.609375 76.480469 3.578125 76.480469 2.304688 Z M 76.480469 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 62.511719 2.304688 C 62.511719 1.03125 61.480469 0 60.207031 0 C 58.933594 0 57.902344 1.03125 57.902344 2.304688 C 57.902344 3.578125 58.933594 4.609375 60.207031 4.609375 C 61.480469 4.609375 62.511719 3.578125 62.511719 2.304688 Z M 62.511719 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.839844 2.304688 C 85.839844 1.03125 84.808594 0 83.535156 0 C 82.261719 0 81.230469 1.03125 81.230469 2.304688 C 81.230469 3.578125 82.261719 4.609375 83.535156 4.609375 C 84.808594 4.609375 85.839844 3.578125 85.839844 2.304688 Z M 85.839844 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.359375 2.304688 C 85.359375 1.03125 84.328125 0 83.054688 0 C 81.78125 0 80.75 1.03125 80.75 2.304688 C 80.75 3.578125 81.78125 4.609375 83.054688 4.609375 C 84.328125 4.609375 85.359375 3.578125 85.359375 2.304688 Z M 85.359375 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.613281 2.304688 C 56.613281 1.03125 55.582031 0 54.308594 0 C 53.035156 0 52.003906 1.03125 52.003906 2.304688 C 52.003906 3.578125 53.035156 4.609375 54.308594 4.609375 C 55.582031 4.609375 56.613281 3.578125 56.613281 2.304688 Z M 56.613281 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 68.347656 2.304688 C 68.347656 1.03125 67.316406 0 66.042969 0 C 64.769531 0 63.738281 1.03125 63.738281 2.304688 C 63.738281 3.578125 64.769531 4.609375 66.042969 4.609375 C 67.316406 4.609375 68.347656 3.578125 68.347656 2.304688 Z M 68.347656 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.847656 2.304688 C 86.847656 1.03125 85.816406 0 84.542969 0 C 83.269531 0 82.238281 1.03125 82.238281 2.304688 C 82.238281 3.578125 83.269531 4.609375 84.542969 4.609375 C 85.816406 4.609375 86.847656 3.578125 86.847656 2.304688 Z M 86.847656 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.808594 2.304688 C 78.808594 1.03125 77.777344 0 76.503906 0 C 75.230469 0 74.199219 1.03125 74.199219 2.304688 C 74.199219 3.578125 75.230469 4.609375 76.503906 4.609375 C 77.777344 4.609375 78.808594 3.578125 78.808594 2.304688 Z M 78.808594 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.484375 2.304688 C 70.484375 1.03125 69.453125 0 68.179688 0 C 66.90625 0 65.875 1.03125 65.875 2.304688 C 65.875 3.578125 66.90625 4.609375 68.179688 4.609375 C 69.453125 4.609375 70.484375 3.578125 70.484375 2.304688 Z M 70.484375 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 98.710938 2.304688 C 98.710938 1.03125 97.679688 0 96.40625 0 C 95.132812 0 94.101562 1.03125 94.101562 2.304688 C 94.101562 3.578125 95.132812 4.609375 96.40625 4.609375 C 97.679688 4.609375 98.710938 3.578125 98.710938 2.304688 Z M 98.710938 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.136719 2.304688 C 75.136719 1.03125 74.105469 0 72.832031 0 C 71.558594 0 70.527344 1.03125 70.527344 2.304688 C 70.527344 3.578125 71.558594 4.609375 72.832031 4.609375 C 74.105469 4.609375 75.136719 3.578125 75.136719 2.304688 Z M 75.136719 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 81.820312 2.304688 C 81.820312 1.03125 80.789062 0 79.515625 0 C 78.242188 0 77.210938 1.03125 77.210938 2.304688 C 77.210938 3.578125 78.242188 4.609375 79.515625 4.609375 C 80.789062 4.609375 81.820312 3.578125 81.820312 2.304688 Z M 81.820312 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.84375 2.304688 C 93.84375 1.03125 92.8125 0 91.539062 0 C 90.265625 0 89.234375 1.03125 89.234375 2.304688 C 89.234375 3.578125 90.265625 4.609375 91.539062 4.609375 C 92.8125 4.609375 93.84375 3.578125 93.84375 2.304688 Z M 93.84375 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 60.476562 2.304688 C 60.476562 1.03125 59.445312 0 58.171875 0 C 56.898438 0 55.867188 1.03125 55.867188 2.304688 C 55.867188 3.578125 56.898438 4.609375 58.171875 4.609375 C 59.445312 4.609375 60.476562 3.578125 60.476562 2.304688 Z M 60.476562 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.382812 2.304688 C 69.382812 1.03125 68.351562 0 67.078125 0 C 65.804688 0 64.773438 1.03125 64.773438 2.304688 C 64.773438 3.578125 65.804688 4.609375 67.078125 4.609375 C 68.351562 4.609375 69.382812 3.578125 69.382812 2.304688 Z M 69.382812 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.8125 2.304688 C 96.8125 1.03125 95.78125 0 94.507812 0 C 93.234375 0 92.203125 1.03125 92.203125 2.304688 C 92.203125 3.578125 93.234375 4.609375 94.507812 4.609375 C 95.78125 4.609375 96.8125 3.578125 96.8125 2.304688 Z M 96.8125 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.046875 2.304688 C 90.046875 1.03125 89.015625 0 87.742188 0 C 86.46875 0 85.4375 1.03125 85.4375 2.304688 C 85.4375 3.578125 86.46875 4.609375 87.742188 4.609375 C 89.015625 4.609375 90.046875 3.578125 90.046875 2.304688 Z M 90.046875 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.679688 2.304688 C 75.679688 1.03125 74.648438 0 73.375 0 C 72.101562 0 71.070312 1.03125 71.070312 2.304688 C 71.070312 3.578125 72.101562 4.609375 73.375 4.609375 C 74.648438 4.609375 75.679688 3.578125 75.679688 2.304688 Z M 75.679688 2.304688 \"></path>\n<path style=\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 98.589844 2.304688 C 98.589844 1.03125 97.558594 0 96.285156 0 C 95.011719 0 93.980469 1.03125 93.980469 2.304688 C 93.980469 3.578125 95.011719 4.609375 96.285156 4.609375 C 97.558594 4.609375 98.589844 3.578125 98.589844 2.304688 Z M 98.589844 2.304688 \"></path>\n</g>\n</svg>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>Time is the y-axis of this diagram, going downwards. Each circle is a sampled position of the oscillating particle. You can see that this has the nice property that all the uncertainty disappears at certain points, which is exactly what you'd expect from an oscillator.</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<!-- ## Chaotic systems\n\nLooking at the evolution of a distribution is a good way to visualize chaos. For example, if we evolve a double pendulum forward in time, from a low variance distribution, we end up with a high variance distribution quickly. -->\n\n</div>\n</div>\n</div>\n</div>\n</body>\n\n\n\n\n\n\n\n</html>\n"
  },
  {
    "path": "docs/docs/notebooks/Diagrams.html",
    "content": "<!DOCTYPE html>\n<html>\n<head><meta charset=\"utf-8\" />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n<title>Diagrams</title><script src=\"https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js\"></script>\n\n\n\n\n<style type=\"text/css\">\n    pre { line-height: 125%; }\ntd.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\nspan.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\ntd.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\nspan.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.highlight .hll { background-color: var(--jp-cell-editor-active-background) }\n.highlight { background: var(--jp-cell-editor-background); color: var(--jp-mirror-editor-variable-color) }\n.highlight .c { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment */\n.highlight .err { color: var(--jp-mirror-editor-error-color) } /* Error */\n.highlight .k { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword */\n.highlight .o { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator */\n.highlight .p { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation */\n.highlight .ch { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Hashbang */\n.highlight .cm { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Multiline */\n.highlight .cp { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Preproc */\n.highlight .cpf { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.PreprocFile */\n.highlight .c1 { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Single */\n.highlight .cs { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Special */\n.highlight .kc { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Constant */\n.highlight .kd { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Declaration */\n.highlight .kn { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Namespace */\n.highlight .kp { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Pseudo */\n.highlight .kr { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Reserved */\n.highlight .kt { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Type */\n.highlight .m { color: var(--jp-mirror-editor-number-color) } /* Literal.Number */\n.highlight .s { color: var(--jp-mirror-editor-string-color) } /* Literal.String */\n.highlight .ow { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator.Word */\n.highlight .pm { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation.Marker */\n.highlight .w { color: var(--jp-mirror-editor-variable-color) } /* Text.Whitespace */\n.highlight .mb { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Bin */\n.highlight .mf { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Float */\n.highlight .mh { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Hex */\n.highlight .mi { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer */\n.highlight .mo { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Oct */\n.highlight .sa { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Affix */\n.highlight .sb { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Backtick */\n.highlight .sc { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Char */\n.highlight .dl { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Delimiter */\n.highlight .sd { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Doc */\n.highlight .s2 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Double */\n.highlight .se { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Escape */\n.highlight .sh { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Heredoc */\n.highlight .si { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Interpol */\n.highlight .sx { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Other */\n.highlight .sr { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Regex */\n.highlight .s1 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Single */\n.highlight .ss { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Symbol */\n.highlight .il { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer.Long */\n  </style>\n\n\n\n<style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\n * Mozilla scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n[data-jp-theme-scrollbars='true'] {\n  scrollbar-color: rgb(var(--jp-scrollbar-thumb-color))\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar. These selectors\n * will match lower in the tree, and so will override the above */\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n  scrollbar-width: thin;\n}\n\n/*\n * Webkit scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-corner {\n  background: var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-thumb {\n  background: rgb(var(--jp-scrollbar-thumb-color));\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-right: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-bottom: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar */\n\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-corner,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-corner {\n  background-color: transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-thumb,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid transparent;\n  border-right: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid transparent;\n  border-bottom: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny::-webkit-scrollbar,\n.jp-scrollbar-tiny::-webkit-scrollbar-corner {\n  background-color: transparent;\n  height: 4px;\n  width: 4px;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:horizontal {\n  border-left: 0px solid transparent;\n  border-right: 0px solid transparent;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:vertical {\n  border-top: 0px solid transparent;\n  border-bottom: 0px solid transparent;\n}\n\n/*\n * Phosphor\n */\n\n.lm-ScrollBar[data-orientation='horizontal'] {\n  min-height: 16px;\n  max-height: 16px;\n  min-width: 45px;\n  border-top: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] {\n  min-width: 16px;\n  max-width: 16px;\n  min-height: 45px;\n  border-left: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar-button {\n  background-color: #f0f0f0;\n  background-position: center center;\n  min-height: 15px;\n  max-height: 15px;\n  min-width: 15px;\n  max-width: 15px;\n}\n\n.lm-ScrollBar-button:hover {\n  background-color: #dadada;\n}\n\n.lm-ScrollBar-button.lm-mod-active {\n  background-color: #cdcdcd;\n}\n\n.lm-ScrollBar-track {\n  background: #f0f0f0;\n}\n\n.lm-ScrollBar-thumb {\n  background: #cdcdcd;\n}\n\n.lm-ScrollBar-thumb:hover {\n  background: #bababa;\n}\n\n.lm-ScrollBar-thumb.lm-mod-active {\n  background: #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal'] .lm-ScrollBar-thumb {\n  height: 100%;\n  min-width: 15px;\n  border-left: 1px solid #a0a0a0;\n  border-right: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] .lm-ScrollBar-thumb {\n  width: 100%;\n  min-height: 15px;\n  border-top: 1px solid #a0a0a0;\n  border-bottom: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-left);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-right);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-up);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-down);\n  background-size: 17px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Widget, /* </DEPRECATED> */\n.lm-Widget {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  cursor: default;\n}\n\n\n/* <DEPRECATED> */ .p-Widget.p-mod-hidden, /* </DEPRECATED> */\n.lm-Widget.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-CommandPalette, /* </DEPRECATED> */\n.lm-CommandPalette {\n  display: flex;\n  flex-direction: column;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-search, /* </DEPRECATED> */\n.lm-CommandPalette-search {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-content, /* </DEPRECATED> */\n.lm-CommandPalette-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  min-height: 0;\n  overflow: auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-header, /* </DEPRECATED> */\n.lm-CommandPalette-header {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-item, /* </DEPRECATED> */\n.lm-CommandPalette-item {\n  display: flex;\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemIcon, /* </DEPRECATED> */\n.lm-CommandPalette-itemIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemContent, /* </DEPRECATED> */\n.lm-CommandPalette-itemContent {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemShortcut, /* </DEPRECATED> */\n.lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemLabel, /* </DEPRECATED> */\n.lm-CommandPalette-itemLabel {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.lm-close-icon {\n\tborder:1px solid transparent;\n  background-color: transparent;\n  position: absolute;\n\tz-index:1;\n\tright:3%;\n\ttop: 0;\n\tbottom: 0;\n\tmargin: auto;\n\tpadding: 7px 0;\n\tdisplay: none;\n\tvertical-align: middle;\n  outline: 0;\n  cursor: pointer;\n}\n.lm-close-icon:after {\n\tcontent: \"X\";\n\tdisplay: block;\n\twidth: 15px;\n\theight: 15px;\n\ttext-align: center;\n\tcolor:#000;\n\tfont-weight: normal;\n\tfont-size: 12px;\n\tcursor: pointer;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-DockPanel, /* </DEPRECATED> */\n.lm-DockPanel {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-widget, /* </DEPRECATED> */\n.lm-DockPanel-widget {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-tabBar, /* </DEPRECATED> */\n.lm-DockPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle, /* </DEPRECATED> */\n.lm-DockPanel-handle {\n  z-index: 2;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle:after, /* </DEPRECATED> */\n.lm-DockPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal'] {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical'] {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal']:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical']:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay, /* </DEPRECATED> */\n.lm-DockPanel-overlay {\n  z-index: 3;\n  box-sizing: border-box;\n  pointer-events: none;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-overlay.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Menu, /* </DEPRECATED> */\n.lm-Menu {\n  z-index: 10000;\n  position: absolute;\n  white-space: nowrap;\n  overflow-x: hidden;\n  overflow-y: auto;\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-content, /* </DEPRECATED> */\n.lm-Menu-content {\n  margin: 0;\n  padding: 0;\n  display: table;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-item, /* </DEPRECATED> */\n.lm-Menu-item {\n  display: table-row;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-item.p-mod-hidden,\n.p-Menu-item.p-mod-collapsed,\n/* </DEPRECATED> */\n.lm-Menu-item.lm-mod-hidden,\n.lm-Menu-item.lm-mod-collapsed {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-itemIcon,\n.p-Menu-itemSubmenuIcon,\n/* </DEPRECATED> */\n.lm-Menu-itemIcon,\n.lm-Menu-itemSubmenuIcon {\n  display: table-cell;\n  text-align: center;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemLabel, /* </DEPRECATED> */\n.lm-Menu-itemLabel {\n  display: table-cell;\n  text-align: left;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemShortcut, /* </DEPRECATED> */\n.lm-Menu-itemShortcut {\n  display: table-cell;\n  text-align: right;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-MenuBar, /* </DEPRECATED> */\n.lm-MenuBar {\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-MenuBar-content, /* </DEPRECATED> */\n.lm-MenuBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex-direction: row;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p--MenuBar-item, /* </DEPRECATED> */\n.lm-MenuBar-item {\n  box-sizing: border-box;\n}\n\n\n/* <DEPRECATED> */\n.p-MenuBar-itemIcon,\n.p-MenuBar-itemLabel,\n/* </DEPRECATED> */\n.lm-MenuBar-itemIcon,\n.lm-MenuBar-itemLabel {\n  display: inline-block;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-ScrollBar, /* </DEPRECATED> */\n.lm-ScrollBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='horizontal'] {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='vertical'] {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-button, /* </DEPRECATED> */\n.lm-ScrollBar-button {\n  box-sizing: border-box;\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-track, /* </DEPRECATED> */\n.lm-ScrollBar-track {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  flex: 1 1 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-thumb, /* </DEPRECATED> */\n.lm-ScrollBar-thumb {\n  box-sizing: border-box;\n  position: absolute;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-SplitPanel-child, /* </DEPRECATED> */\n.lm-SplitPanel-child {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle, /* </DEPRECATED> */\n.lm-SplitPanel-handle {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-SplitPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle:after, /* </DEPRECATED> */\n.lm-SplitPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabBar, /* </DEPRECATED> */\n.lm-TabBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='horizontal'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] {\n  flex-direction: row;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='vertical'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] {\n  flex-direction: column;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-content, /* </DEPRECATED> */\n.lm-TabBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex: 1 1 auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='horizontal'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] > .lm-TabBar-content {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='vertical'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] > .lm-TabBar-content {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar-tab {\n  display: flex;\n  flex-direction: row;\n  box-sizing: border-box;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar-tabIcon,\n.p-TabBar-tabCloseIcon,\n/* </DEPRECATED> */\n.lm-TabBar-tabIcon,\n.lm-TabBar-tabCloseIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tabLabel, /* </DEPRECATED> */\n.lm-TabBar-tabLabel {\n  flex: 1 1 auto;\n  overflow: hidden;\n  white-space: nowrap;\n}\n\n\n.lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab.p-mod-hidden, /* </DEPRECATED> */\n.lm-TabBar-tab.lm-mod-hidden {\n  display: none !important;\n}\n\n\n.lm-TabBar-addButton.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar.p-mod-dragging .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab {\n  position: relative;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='horizontal'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='horizontal'] .lm-TabBar-tab {\n  left: 0;\n  transition: left 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='vertical'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='vertical'] .lm-TabBar-tab {\n  top: 0;\n  transition: top 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging .p-TabBar-tab.p-mod-dragging,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab.lm-mod-dragging {\n  transition: none;\n}\n\n.lm-TabBar-tabLabel .lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n  background: inherit;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabPanel-tabBar, /* </DEPRECATED> */\n.lm-TabPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-TabPanel-stackedPanel, /* </DEPRECATED> */\n.lm-TabPanel-stackedPanel {\n  z-index: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n@charset \"UTF-8\";\nhtml{\n  -webkit-box-sizing:border-box;\n          box-sizing:border-box; }\n\n*,\n*::before,\n*::after{\n  -webkit-box-sizing:inherit;\n          box-sizing:inherit; }\n\nbody{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none;\n  color:#182026;\n  font-family:-apple-system, \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Open Sans\", \"Helvetica Neue\", \"Icons16\", sans-serif; }\n\np{\n  margin-bottom:10px;\n  margin-top:0; }\n\nsmall{\n  font-size:12px; }\n\nstrong{\n  font-weight:600; }\n\n::-moz-selection{\n  background:rgba(125, 188, 255, 0.6); }\n\n::selection{\n  background:rgba(125, 188, 255, 0.6); }\n.bp3-heading{\n  color:#182026;\n  font-weight:600;\n  margin:0 0 10px;\n  padding:0; }\n  .bp3-dark .bp3-heading{\n    color:#f5f8fa; }\n\nh1.bp3-heading, .bp3-running-text h1{\n  font-size:36px;\n  line-height:40px; }\n\nh2.bp3-heading, .bp3-running-text h2{\n  font-size:28px;\n  line-height:32px; }\n\nh3.bp3-heading, .bp3-running-text h3{\n  font-size:22px;\n  line-height:25px; }\n\nh4.bp3-heading, .bp3-running-text h4{\n  font-size:18px;\n  line-height:21px; }\n\nh5.bp3-heading, .bp3-running-text h5{\n  font-size:16px;\n  line-height:19px; }\n\nh6.bp3-heading, .bp3-running-text h6{\n  font-size:14px;\n  line-height:16px; }\n.bp3-ui-text{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none; }\n\n.bp3-monospace-text{\n  font-family:monospace;\n  text-transform:none; }\n\n.bp3-text-muted{\n  color:#5c7080; }\n  .bp3-dark .bp3-text-muted{\n    color:#a7b6c2; }\n\n.bp3-text-disabled{\n  color:rgba(92, 112, 128, 0.6); }\n  .bp3-dark .bp3-text-disabled{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-text-overflow-ellipsis{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal; }\n.bp3-running-text{\n  font-size:14px;\n  line-height:1.5; }\n  .bp3-running-text h1{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h1{\n      color:#f5f8fa; }\n  .bp3-running-text h2{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h2{\n      color:#f5f8fa; }\n  .bp3-running-text h3{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h3{\n      color:#f5f8fa; }\n  .bp3-running-text h4{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h4{\n      color:#f5f8fa; }\n  .bp3-running-text h5{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h5{\n      color:#f5f8fa; }\n  .bp3-running-text h6{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h6{\n      color:#f5f8fa; }\n  .bp3-running-text hr{\n    border:none;\n    border-bottom:1px solid rgba(16, 22, 26, 0.15);\n    margin:20px 0; }\n    .bp3-dark .bp3-running-text hr{\n      border-color:rgba(255, 255, 255, 0.15); }\n  .bp3-running-text p{\n    margin:0 0 10px;\n    padding:0; }\n\n.bp3-text-large{\n  font-size:16px; }\n\n.bp3-text-small{\n  font-size:12px; }\na{\n  color:#106ba3;\n  text-decoration:none; }\n  a:hover{\n    color:#106ba3;\n    cursor:pointer;\n    text-decoration:underline; }\n  a .bp3-icon, a .bp3-icon-standard, a .bp3-icon-large{\n    color:inherit; }\n  a code,\n  .bp3-dark a code{\n    color:inherit; }\n  .bp3-dark a,\n  .bp3-dark a:hover{\n    color:#48aff0; }\n    .bp3-dark a .bp3-icon, .bp3-dark a .bp3-icon-standard, .bp3-dark a .bp3-icon-large,\n    .bp3-dark a:hover .bp3-icon,\n    .bp3-dark a:hover .bp3-icon-standard,\n    .bp3-dark a:hover .bp3-icon-large{\n      color:inherit; }\n.bp3-running-text code, .bp3-code{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  font-size:smaller;\n  padding:2px 5px; }\n  .bp3-dark .bp3-running-text code, .bp3-running-text .bp3-dark code, .bp3-dark .bp3-code{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n  .bp3-running-text a > code, a > .bp3-code{\n    color:#137cbd; }\n    .bp3-dark .bp3-running-text a > code, .bp3-running-text .bp3-dark a > code, .bp3-dark a > .bp3-code{\n      color:inherit; }\n\n.bp3-running-text pre, .bp3-code-block{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n  color:#182026;\n  display:block;\n  font-size:13px;\n  line-height:1.4;\n  margin:10px 0;\n  padding:13px 15px 12px;\n  word-break:break-all;\n  word-wrap:break-word; }\n  .bp3-dark .bp3-running-text pre, .bp3-running-text .bp3-dark pre, .bp3-dark .bp3-code-block{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n  .bp3-running-text pre > code, .bp3-code-block > code{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit;\n    font-size:inherit;\n    padding:0; }\n\n.bp3-running-text kbd, .bp3-key{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-family:inherit;\n  font-size:12px;\n  height:24px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  line-height:24px;\n  min-width:24px;\n  padding:3px 6px;\n  vertical-align:middle; }\n  .bp3-running-text kbd .bp3-icon, .bp3-key .bp3-icon, .bp3-running-text kbd .bp3-icon-standard, .bp3-key .bp3-icon-standard, .bp3-running-text kbd .bp3-icon-large, .bp3-key .bp3-icon-large{\n    margin-right:5px; }\n  .bp3-dark .bp3-running-text kbd, .bp3-running-text .bp3-dark kbd, .bp3-dark .bp3-key{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n.bp3-running-text blockquote, .bp3-blockquote{\n  border-left:solid 4px rgba(167, 182, 194, 0.5);\n  margin:0 0 10px;\n  padding:0 20px; }\n  .bp3-dark .bp3-running-text blockquote, .bp3-running-text .bp3-dark blockquote, .bp3-dark .bp3-blockquote{\n    border-color:rgba(115, 134, 148, 0.5); }\n.bp3-running-text ul,\n.bp3-running-text ol, .bp3-list{\n  margin:10px 0;\n  padding-left:30px; }\n  .bp3-running-text ul li:not(:last-child), .bp3-running-text ol li:not(:last-child), .bp3-list li:not(:last-child){\n    margin-bottom:5px; }\n  .bp3-running-text ul ol, .bp3-running-text ol ol, .bp3-list ol,\n  .bp3-running-text ul ul,\n  .bp3-running-text ol ul,\n  .bp3-list ul{\n    margin-top:5px; }\n\n.bp3-list-unstyled{\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-list-unstyled li{\n    padding:0; }\n.bp3-rtl{\n  text-align:right; }\n\n.bp3-dark{\n  color:#f5f8fa; }\n\n:focus{\n  outline:rgba(19, 124, 189, 0.6) auto 2px;\n  outline-offset:2px;\n  -moz-outline-radius:6px; }\n\n.bp3-focus-disabled :focus{\n  outline:none !important; }\n  .bp3-focus-disabled :focus ~ .bp3-control-indicator{\n    outline:none !important; }\n\n.bp3-alert{\n  max-width:400px;\n  padding:20px; }\n\n.bp3-alert-body{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-alert-body .bp3-icon{\n    font-size:40px;\n    margin-right:20px;\n    margin-top:0; }\n\n.bp3-alert-contents{\n  word-break:break-word; }\n\n.bp3-alert-footer{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:reverse;\n      -ms-flex-direction:row-reverse;\n          flex-direction:row-reverse;\n  margin-top:10px; }\n  .bp3-alert-footer .bp3-button{\n    margin-left:10px; }\n.bp3-breadcrumbs{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  cursor:default;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:wrap;\n      flex-wrap:wrap;\n  height:30px;\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-breadcrumbs > li{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n    .bp3-breadcrumbs > li::after{\n      background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z' fill='%235C7080'/%3e%3c/svg%3e\");\n      content:\"\";\n      display:block;\n      height:16px;\n      margin:0 5px;\n      width:16px; }\n    .bp3-breadcrumbs > li:last-of-type::after{\n      display:none; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumb-current,\n.bp3-breadcrumbs-collapsed{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-size:16px; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumbs-collapsed{\n  color:#5c7080; }\n\n.bp3-breadcrumb:hover{\n  text-decoration:none; }\n\n.bp3-breadcrumb.bp3-disabled{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-breadcrumb .bp3-icon{\n  margin-right:5px; }\n\n.bp3-breadcrumb-current{\n  color:inherit;\n  font-weight:600; }\n  .bp3-breadcrumb-current .bp3-input{\n    font-size:inherit;\n    font-weight:inherit;\n    vertical-align:baseline; }\n\n.bp3-breadcrumbs-collapsed{\n  background:#ced9e0;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  margin-right:2px;\n  padding:1px 5px;\n  vertical-align:text-bottom; }\n  .bp3-breadcrumbs-collapsed::before{\n    background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cg fill='%235C7080'%3e%3ccircle cx='2' cy='8.03' r='2'/%3e%3ccircle cx='14' cy='8.03' r='2'/%3e%3ccircle cx='8' cy='8.03' r='2'/%3e%3c/g%3e%3c/svg%3e\") center no-repeat;\n    content:\"\";\n    display:block;\n    height:16px;\n    width:16px; }\n  .bp3-breadcrumbs-collapsed:hover{\n    background:#bfccd6;\n    color:#182026;\n    text-decoration:none; }\n\n.bp3-dark .bp3-breadcrumb,\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumbs > li::after{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumb.bp3-disabled{\n  color:rgba(167, 182, 194, 0.6); }\n\n.bp3-dark .bp3-breadcrumb-current{\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-breadcrumbs-collapsed:hover{\n    background:rgba(16, 22, 26, 0.6);\n    color:#f5f8fa; }\n.bp3-button{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  min-height:30px;\n  min-width:30px; }\n  .bp3-button > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-button > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-button::before,\n  .bp3-button > *{\n    margin-right:7px; }\n  .bp3-button:empty::before,\n  .bp3-button > :last-child{\n    margin-right:0; }\n  .bp3-button:empty{\n    padding:0 !important; }\n  .bp3-button:disabled, .bp3-button.bp3-disabled{\n    cursor:not-allowed; }\n  .bp3-button.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button.bp3-align-right,\n  .bp3-align-right .bp3-button{\n    text-align:right; }\n  .bp3-button.bp3-align-left,\n  .bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026; }\n    .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active:hover, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-button.bp3-intent-primary{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover, .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover{\n      background-color:#106ba3;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      background-color:#0e5a8a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:disabled, .bp3-button.bp3-intent-primary.bp3-disabled{\n      background-color:rgba(19, 124, 189, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-success{\n    background-color:#0f9960;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover, .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover{\n      background-color:#0d8050;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      background-color:#0a6640;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:disabled, .bp3-button.bp3-intent-success.bp3-disabled{\n      background-color:rgba(15, 153, 96, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-warning{\n    background-color:#d9822b;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover, .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover{\n      background-color:#bf7326;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      background-color:#a66321;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:disabled, .bp3-button.bp3-intent-warning.bp3-disabled{\n      background-color:rgba(217, 130, 43, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-danger{\n    background-color:#db3737;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover, .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover{\n      background-color:#c23030;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      background-color:#a82a2a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:disabled, .bp3-button.bp3-intent-danger.bp3-disabled{\n      background-color:rgba(219, 55, 55, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n    stroke:#ffffff; }\n  .bp3-button.bp3-large,\n  .bp3-large .bp3-button{\n    min-height:40px;\n    min-width:40px;\n    font-size:16px;\n    padding:5px 15px; }\n    .bp3-button.bp3-large::before,\n    .bp3-button.bp3-large > *,\n    .bp3-large .bp3-button::before,\n    .bp3-large .bp3-button > *{\n      margin-right:10px; }\n    .bp3-button.bp3-large:empty::before,\n    .bp3-button.bp3-large > :last-child,\n    .bp3-large .bp3-button:empty::before,\n    .bp3-large .bp3-button > :last-child{\n      margin-right:0; }\n  .bp3-button.bp3-small,\n  .bp3-small .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-button.bp3-loading{\n    position:relative; }\n    .bp3-button.bp3-loading[class*=\"bp3-icon-\"]::before{\n      visibility:hidden; }\n    .bp3-button.bp3-loading .bp3-button-spinner{\n      margin:0;\n      position:absolute; }\n    .bp3-button.bp3-loading > :not(.bp3-button-spinner){\n      visibility:hidden; }\n  .bp3-button[class*=\"bp3-icon-\"]::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    color:#5c7080; }\n  .bp3-button .bp3-icon, .bp3-button .bp3-icon-standard, .bp3-button .bp3-icon-large{\n    color:#5c7080; }\n    .bp3-button .bp3-icon.bp3-align-right, .bp3-button .bp3-icon-standard.bp3-align-right, .bp3-button .bp3-icon-large.bp3-align-right{\n      margin-left:7px; }\n  .bp3-button .bp3-icon:first-child:last-child,\n  .bp3-button .bp3-spinner + .bp3-icon:last-child{\n    margin:0 -7px; }\n  .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"])[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n      color:#a7b6c2; }\n  .bp3-dark .bp3-button[class*=\"bp3-intent-\"]{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:hover{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.3); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n      stroke:#8a9ba8; }\n  .bp3-button:disabled::before,\n  .bp3-button:disabled .bp3-icon, .bp3-button:disabled .bp3-icon-standard, .bp3-button:disabled .bp3-icon-large, .bp3-button.bp3-disabled::before,\n  .bp3-button.bp3-disabled .bp3-icon, .bp3-button.bp3-disabled .bp3-icon-standard, .bp3-button.bp3-disabled .bp3-icon-large, .bp3-button[class*=\"bp3-intent-\"]::before,\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-icon, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-standard, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-large{\n    color:inherit !important; }\n  .bp3-button.bp3-minimal{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button.bp3-minimal:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-minimal:active, .bp3-button.bp3-minimal.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-minimal:disabled, .bp3-button.bp3-minimal:disabled:hover, .bp3-button.bp3-minimal.bp3-disabled, .bp3-button.bp3-minimal.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-minimal{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-minimal:hover, .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-minimal:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-minimal:disabled, .bp3-dark .bp3-button.bp3-minimal:disabled:hover, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover, .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover, .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover, .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover, .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button.bp3-outlined{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    border:1px solid rgba(24, 32, 38, 0.2);\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box; }\n    .bp3-button.bp3-outlined:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-outlined:active, .bp3-button.bp3-outlined.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-outlined:hover, .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-outlined:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover, .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover, .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover, .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover, .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      border-color:rgba(92, 112, 128, 0.1); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      border-color:rgba(255, 255, 255, 0.4); }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        border-color:rgba(255, 255, 255, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      border-color:rgba(16, 107, 163, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        border-color:rgba(16, 107, 163, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        border-color:rgba(72, 175, 240, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          border-color:rgba(72, 175, 240, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      border-color:rgba(13, 128, 80, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        border-color:rgba(13, 128, 80, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        border-color:rgba(61, 204, 145, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          border-color:rgba(61, 204, 145, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      border-color:rgba(191, 115, 38, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        border-color:rgba(191, 115, 38, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        border-color:rgba(255, 179, 102, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          border-color:rgba(255, 179, 102, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      border-color:rgba(194, 48, 48, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        border-color:rgba(194, 48, 48, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        border-color:rgba(255, 115, 115, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          border-color:rgba(255, 115, 115, 0.2); }\n\na.bp3-button{\n  text-align:center;\n  text-decoration:none;\n  -webkit-transition:none;\n  transition:none; }\n  a.bp3-button, a.bp3-button:hover, a.bp3-button:active{\n    color:#182026; }\n  a.bp3-button.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6); }\n\n.bp3-button-text{\n  -webkit-box-flex:0;\n      -ms-flex:0 1 auto;\n          flex:0 1 auto; }\n\n.bp3-button.bp3-align-left .bp3-button-text, .bp3-button.bp3-align-right .bp3-button-text,\n.bp3-button-group.bp3-align-left .bp3-button-text,\n.bp3-button-group.bp3-align-right .bp3-button-text{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto; }\n.bp3-button-group{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex; }\n  .bp3-button-group .bp3-button{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    position:relative;\n    z-index:4; }\n    .bp3-button-group .bp3-button:focus{\n      z-index:5; }\n    .bp3-button-group .bp3-button:hover{\n      z-index:6; }\n    .bp3-button-group .bp3-button:active, .bp3-button-group .bp3-button.bp3-active{\n      z-index:7; }\n    .bp3-button-group .bp3-button:disabled, .bp3-button-group .bp3-button.bp3-disabled{\n      z-index:3; }\n    .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]{\n      z-index:9; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:focus{\n        z-index:10; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:hover{\n        z-index:11; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n        z-index:12; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n        z-index:8; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:first-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:first-child){\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    border-bottom-right-radius:0;\n    border-top-right-radius:0;\n    margin-right:-1px; }\n  .bp3-button-group.bp3-minimal .bp3-button{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button-group.bp3-minimal .bp3-button{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button-group .bp3-popover-wrapper,\n  .bp3-button-group .bp3-popover-target{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button-group .bp3-button.bp3-fill,\n  .bp3-button-group.bp3-fill .bp3-button:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-vertical{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column;\n    vertical-align:top; }\n    .bp3-button-group.bp3-vertical.bp3-fill{\n      height:100%;\n      width:unset; }\n    .bp3-button-group.bp3-vertical .bp3-button{\n      margin-right:0 !important;\n      width:100%; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:first-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:first-child{\n      border-radius:3px 3px 0 0; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:last-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:last-child{\n      border-radius:0 0 3px 3px; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:not(:last-child){\n      margin-bottom:-1px; }\n  .bp3-button-group.bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    margin-right:1px; }\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-button:not(:last-child){\n    margin-bottom:1px; }\n.bp3-callout{\n  font-size:14px;\n  line-height:1.5;\n  background-color:rgba(138, 155, 168, 0.15);\n  border-radius:3px;\n  padding:10px 12px 9px;\n  position:relative;\n  width:100%; }\n  .bp3-callout[class*=\"bp3-icon-\"]{\n    padding-left:40px; }\n    .bp3-callout[class*=\"bp3-icon-\"]::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout.bp3-callout-icon{\n    padding-left:40px; }\n    .bp3-callout.bp3-callout-icon > .bp3-icon:first-child{\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout .bp3-heading{\n    line-height:20px;\n    margin-bottom:5px;\n    margin-top:0; }\n    .bp3-callout .bp3-heading:last-child{\n      margin-bottom:0; }\n  .bp3-dark .bp3-callout{\n    background-color:rgba(138, 155, 168, 0.2); }\n    .bp3-dark .bp3-callout[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n  .bp3-callout.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15); }\n    .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-primary .bp3-heading{\n      color:#106ba3; }\n    .bp3-dark .bp3-callout.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-primary .bp3-heading{\n        color:#48aff0; }\n  .bp3-callout.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15); }\n    .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-success .bp3-heading{\n      color:#0d8050; }\n    .bp3-dark .bp3-callout.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-success .bp3-heading{\n        color:#3dcc91; }\n  .bp3-callout.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15); }\n    .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-warning .bp3-heading{\n      color:#bf7326; }\n    .bp3-dark .bp3-callout.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-warning .bp3-heading{\n        color:#ffb366; }\n  .bp3-callout.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15); }\n    .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-danger .bp3-heading{\n      color:#c23030; }\n    .bp3-dark .bp3-callout.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-danger .bp3-heading{\n        color:#ff7373; }\n  .bp3-running-text .bp3-callout{\n    margin:20px 0; }\n.bp3-card{\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n  padding:20px;\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-card.bp3-dark,\n  .bp3-dark .bp3-card{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-0{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n  .bp3-elevation-0.bp3-dark,\n  .bp3-dark .bp3-elevation-0{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-1{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-1.bp3-dark,\n  .bp3-dark .bp3-elevation-1{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-2{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-2.bp3-dark,\n  .bp3-dark .bp3-elevation-2{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-3{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-3.bp3-dark,\n  .bp3-dark .bp3-elevation-3{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-4{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-4.bp3-dark,\n  .bp3-dark .bp3-elevation-4{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:hover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  cursor:pointer; }\n  .bp3-card.bp3-interactive:hover.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:hover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:active{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  opacity:0.9;\n  -webkit-transition-duration:0;\n          transition-duration:0; }\n  .bp3-card.bp3-interactive:active.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:active{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-collapse{\n  height:0;\n  overflow-y:hidden;\n  -webkit-transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-collapse .bp3-collapse-body{\n    -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-collapse .bp3-collapse-body[aria-hidden=\"true\"]{\n      display:none; }\n\n.bp3-context-menu .bp3-popover-target{\n  display:block; }\n\n.bp3-context-menu-popover-target{\n  position:fixed; }\n\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-dialog-container{\n  opacity:1;\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  min-height:100%;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  width:100%; }\n  .bp3-dialog-container.bp3-overlay-enter > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5); }\n  .bp3-dialog-container.bp3-overlay-enter-active > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear-active > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-dialog-container.bp3-overlay-exit > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-dialog-container.bp3-overlay-exit-active > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n\n.bp3-dialog{\n  background:#ebf1f5;\n  border-radius:6px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:30px 0;\n  padding-bottom:20px;\n  pointer-events:all;\n  -webkit-user-select:text;\n     -moz-user-select:text;\n      -ms-user-select:text;\n          user-select:text;\n  width:500px; }\n  .bp3-dialog:focus{\n    outline:0; }\n  .bp3-dialog.bp3-dark,\n  .bp3-dark .bp3-dialog{\n    background:#293742;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-dialog-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:6px 6px 0 0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding-left:20px;\n  padding-right:5px;\n  z-index:30; }\n  .bp3-dialog-header .bp3-icon-large,\n  .bp3-dialog-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-dialog-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-dialog-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-dialog-header{\n    background:#30404d;\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-dialog-header .bp3-icon-large,\n    .bp3-dark .bp3-dialog-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-dialog-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  margin:20px; }\n\n.bp3-dialog-footer{\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  margin:0 20px; }\n\n.bp3-dialog-footer-actions{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:end;\n      -ms-flex-pack:end;\n          justify-content:flex-end; }\n  .bp3-dialog-footer-actions .bp3-button{\n    margin-left:10px; }\n.bp3-multistep-dialog-panels{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n\n.bp3-multistep-dialog-left-panel{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column; }\n  .bp3-dark .bp3-multistep-dialog-left-panel{\n    background:#202b33; }\n\n.bp3-multistep-dialog-right-panel{\n  background-color:#f5f8fa;\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  border-radius:0 0 6px 0;\n  -webkit-box-flex:3;\n      -ms-flex:3;\n          flex:3;\n  min-width:0; }\n  .bp3-dark .bp3-multistep-dialog-right-panel{\n    background-color:#293742;\n    border-left:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-multistep-dialog-footer{\n  background-color:#ffffff;\n  border-radius:0 0 6px 0;\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  padding:10px; }\n  .bp3-dark .bp3-multistep-dialog-footer{\n    background:#30404d;\n    border-top:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-dialog-step-container{\n  background-color:#f5f8fa;\n  border-bottom:1px solid rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-dialog-step-container{\n    background:#293742;\n    border-bottom:1px solid rgba(16, 22, 26, 0.4); }\n  .bp3-dialog-step-container.bp3-dialog-step-viewed{\n    background-color:#ffffff; }\n    .bp3-dark .bp3-dialog-step-container.bp3-dialog-step-viewed{\n      background:#30404d; }\n\n.bp3-dialog-step{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#f5f8fa;\n  border-radius:6px;\n  cursor:not-allowed;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:4px;\n  padding:6px 14px; }\n  .bp3-dark .bp3-dialog-step{\n    background:#293742; }\n  .bp3-dialog-step-viewed .bp3-dialog-step{\n    background-color:#ffffff;\n    cursor:pointer; }\n    .bp3-dark .bp3-dialog-step-viewed .bp3-dialog-step{\n      background:#30404d; }\n  .bp3-dialog-step:hover{\n    background-color:#f5f8fa; }\n    .bp3-dark .bp3-dialog-step:hover{\n      background:#293742; }\n\n.bp3-dialog-step-icon{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:rgba(92, 112, 128, 0.6);\n  border-radius:50%;\n  color:#ffffff;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:25px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  width:25px; }\n  .bp3-dark .bp3-dialog-step-icon{\n    background-color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#2b95d6; }\n  .bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#8a9ba8; }\n\n.bp3-dialog-step-title{\n  color:rgba(92, 112, 128, 0.6);\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  padding-left:10px; }\n  .bp3-dark .bp3-dialog-step-title{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-title{\n    color:#2b95d6; }\n  .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n    color:#182026; }\n    .bp3-dark .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n      color:#f5f8fa; }\n.bp3-drawer{\n  background:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0;\n  padding:0; }\n  .bp3-drawer:focus{\n    outline:0; }\n  .bp3-drawer.bp3-position-top{\n    height:50%;\n    left:0;\n    right:0;\n    top:0; }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter, .bp3-drawer.bp3-position-top.bp3-overlay-appear{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter-active, .bp3-drawer.bp3-position-top.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit-active{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-bottom{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter-active, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-left{\n    bottom:0;\n    left:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter, .bp3-drawer.bp3-position-left.bp3-overlay-appear{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter-active, .bp3-drawer.bp3-position-left.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit-active{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-right{\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter, .bp3-drawer.bp3-position-right.bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter-active, .bp3-drawer.bp3-position-right.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right):not(.bp3-vertical){\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right).bp3-vertical{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-dark,\n  .bp3-dark .bp3-drawer{\n    background:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-drawer-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border-radius:0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding:5px;\n  padding-left:20px;\n  position:relative; }\n  .bp3-drawer-header .bp3-icon-large,\n  .bp3-drawer-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-drawer-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-drawer-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-drawer-header{\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-drawer-header .bp3-icon-large,\n    .bp3-dark .bp3-drawer-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-drawer-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  overflow:auto; }\n\n.bp3-drawer-footer{\n  -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  padding:10px 20px;\n  position:relative; }\n  .bp3-dark .bp3-drawer-footer{\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4); }\n.bp3-editable-text{\n  cursor:text;\n  display:inline-block;\n  max-width:100%;\n  position:relative;\n  vertical-align:top;\n  white-space:nowrap; }\n  .bp3-editable-text::before{\n    bottom:-3px;\n    left:-3px;\n    position:absolute;\n    right:-3px;\n    top:-3px;\n    border-radius:3px;\n    content:\"\";\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#137cbd; }\n  .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4); }\n  .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#0f9960; }\n  .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4); }\n  .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#d9822b; }\n  .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4); }\n  .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#db3737; }\n  .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4); }\n  .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-dark .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#48aff0; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4);\n            box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#3dcc91; }\n  .bp3-dark .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4);\n            box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#ffb366; }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#ff7373; }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-editable-text-input,\n.bp3-editable-text-content{\n  color:inherit;\n  display:inherit;\n  font:inherit;\n  letter-spacing:inherit;\n  max-width:inherit;\n  min-width:inherit;\n  position:relative;\n  resize:none;\n  text-transform:inherit;\n  vertical-align:top; }\n\n.bp3-editable-text-input{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0;\n  white-space:pre-wrap;\n  width:100%; }\n  .bp3-editable-text-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:focus{\n    outline:none; }\n  .bp3-editable-text-input::-ms-clear{\n    display:none; }\n\n.bp3-editable-text-content{\n  overflow:hidden;\n  padding-right:2px;\n  text-overflow:ellipsis;\n  white-space:pre; }\n  .bp3-editable-text-editing > .bp3-editable-text-content{\n    left:0;\n    position:absolute;\n    visibility:hidden; }\n  .bp3-editable-text-placeholder > .bp3-editable-text-content{\n    color:rgba(92, 112, 128, 0.6); }\n    .bp3-dark .bp3-editable-text-placeholder > .bp3-editable-text-content{\n      color:rgba(167, 182, 194, 0.6); }\n\n.bp3-editable-text.bp3-multiline{\n  display:block; }\n  .bp3-editable-text.bp3-multiline .bp3-editable-text-content{\n    overflow:auto;\n    white-space:pre-wrap;\n    word-wrap:break-word; }\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-control-group{\n  -webkit-transform:translateZ(0);\n          transform:translateZ(0);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:stretch;\n      -ms-flex-align:stretch;\n          align-items:stretch; }\n  .bp3-control-group > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select,\n  .bp3-control-group .bp3-input,\n  .bp3-control-group .bp3-select{\n    position:relative; }\n  .bp3-control-group .bp3-input{\n    border-radius:inherit;\n    z-index:2; }\n    .bp3-control-group .bp3-input:focus{\n      border-radius:3px;\n      z-index:14; }\n    .bp3-control-group .bp3-input[class*=\"bp3-intent\"]{\n      z-index:13; }\n      .bp3-control-group .bp3-input[class*=\"bp3-intent\"]:focus{\n        z-index:15; }\n    .bp3-control-group .bp3-input[readonly], .bp3-control-group .bp3-input:disabled, .bp3-control-group .bp3-input.bp3-disabled{\n      z-index:1; }\n  .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input{\n    z-index:13; }\n    .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input:focus{\n      z-index:15; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select select,\n  .bp3-control-group .bp3-select select{\n    -webkit-transform:translateZ(0);\n            transform:translateZ(0);\n    border-radius:inherit;\n    z-index:4; }\n    .bp3-control-group .bp3-button:focus,\n    .bp3-control-group .bp3-html-select select:focus,\n    .bp3-control-group .bp3-select select:focus{\n      z-index:5; }\n    .bp3-control-group .bp3-button:hover,\n    .bp3-control-group .bp3-html-select select:hover,\n    .bp3-control-group .bp3-select select:hover{\n      z-index:6; }\n    .bp3-control-group .bp3-button:active,\n    .bp3-control-group .bp3-html-select select:active,\n    .bp3-control-group .bp3-select select:active{\n      z-index:7; }\n    .bp3-control-group .bp3-button[readonly], .bp3-control-group .bp3-button:disabled, .bp3-control-group .bp3-button.bp3-disabled,\n    .bp3-control-group .bp3-html-select select[readonly],\n    .bp3-control-group .bp3-html-select select:disabled,\n    .bp3-control-group .bp3-html-select select.bp3-disabled,\n    .bp3-control-group .bp3-select select[readonly],\n    .bp3-control-group .bp3-select select:disabled,\n    .bp3-control-group .bp3-select select.bp3-disabled{\n      z-index:3; }\n    .bp3-control-group .bp3-button[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]{\n      z-index:9; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:focus{\n        z-index:10; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:hover{\n        z-index:11; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:active{\n        z-index:12; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"][readonly], .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:disabled, .bp3-control-group .bp3-button[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"].bp3-disabled{\n        z-index:8; }\n  .bp3-control-group .bp3-input-group > .bp3-icon,\n  .bp3-control-group .bp3-input-group > .bp3-button,\n  .bp3-control-group .bp3-input-group > .bp3-input-left-container,\n  .bp3-control-group .bp3-input-group > .bp3-input-action{\n    z-index:16; }\n  .bp3-control-group .bp3-select::after,\n  .bp3-control-group .bp3-html-select::after,\n  .bp3-control-group .bp3-select > .bp3-icon,\n  .bp3-control-group .bp3-html-select > .bp3-icon{\n    z-index:17; }\n  .bp3-control-group .bp3-select:focus-within{\n    z-index:5; }\n  .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:-1px; }\n  .bp3-control-group:not(.bp3-vertical) > .bp3-divider:not(:first-child){\n    margin-left:6px; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:0; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > .bp3-button + .bp3-button{\n    margin-left:1px; }\n  .bp3-control-group .bp3-popover-wrapper,\n  .bp3-control-group .bp3-popover-target{\n    border-radius:inherit; }\n  .bp3-control-group > :first-child{\n    border-radius:3px 0 0 3px; }\n  .bp3-control-group > :last-child{\n    border-radius:0 3px 3px 0;\n    margin-right:0; }\n  .bp3-control-group > :only-child{\n    border-radius:3px;\n    margin-right:0; }\n  .bp3-control-group .bp3-input-group .bp3-button{\n    border-radius:3px; }\n  .bp3-control-group .bp3-numeric-input:not(:first-child) .bp3-input-group{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-control-group.bp3-fill{\n    width:100%; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-fill > *:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-vertical{\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-control-group.bp3-vertical > *{\n      margin-top:-1px; }\n    .bp3-control-group.bp3-vertical > :first-child{\n      border-radius:3px 3px 0 0;\n      margin-top:0; }\n    .bp3-control-group.bp3-vertical > :last-child{\n      border-radius:0 0 3px 3px; }\n.bp3-control{\n  cursor:pointer;\n  display:block;\n  margin-bottom:10px;\n  position:relative;\n  text-transform:none; }\n  .bp3-control input:checked ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control input:checked ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control:not(.bp3-align-right){\n    padding-left:26px; }\n    .bp3-control:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-26px; }\n  .bp3-control.bp3-align-right{\n    padding-right:26px; }\n    .bp3-control.bp3-align-right .bp3-control-indicator{\n      margin-right:-26px; }\n  .bp3-control.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-control.bp3-inline{\n    display:inline-block;\n    margin-right:20px; }\n  .bp3-control input{\n    left:0;\n    opacity:0;\n    position:absolute;\n    top:0;\n    z-index:-1; }\n  .bp3-control .bp3-control-indicator{\n    background-clip:padding-box;\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    border:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    cursor:pointer;\n    display:inline-block;\n    font-size:16px;\n    height:1em;\n    margin-right:10px;\n    margin-top:-3px;\n    position:relative;\n    -webkit-user-select:none;\n       -moz-user-select:none;\n        -ms-user-select:none;\n            user-select:none;\n    vertical-align:middle;\n    width:1em; }\n    .bp3-control .bp3-control-indicator::before{\n      content:\"\";\n      display:block;\n      height:1em;\n      width:1em; }\n  .bp3-control:hover .bp3-control-indicator{\n    background-color:#ebf1f5; }\n  .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n    background:#d8e1e8;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    cursor:not-allowed; }\n  .bp3-control input:focus ~ .bp3-control-indicator{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:2px;\n    -moz-outline-radius:6px; }\n  .bp3-control.bp3-align-right .bp3-control-indicator{\n    float:right;\n    margin-left:10px;\n    margin-top:1px; }\n  .bp3-control.bp3-large{\n    font-size:16px; }\n    .bp3-control.bp3-large:not(.bp3-align-right){\n      padding-left:30px; }\n      .bp3-control.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n        margin-left:-30px; }\n    .bp3-control.bp3-large.bp3-align-right{\n      padding-right:30px; }\n      .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n        margin-right:-30px; }\n    .bp3-control.bp3-large .bp3-control-indicator{\n      font-size:20px; }\n    .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-top:0; }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control.bp3-checkbox .bp3-control-indicator{\n    border-radius:3px; }\n  .bp3-control.bp3-checkbox input:checked ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0012 5z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-radio .bp3-control-indicator{\n    border-radius:50%; }\n  .bp3-control.bp3-radio input:checked ~ .bp3-control-indicator::before{\n    background-image:radial-gradient(#ffffff, #ffffff 28%, transparent 32%); }\n  .bp3-control.bp3-radio input:checked:disabled ~ .bp3-control-indicator::before{\n    opacity:0.5; }\n  .bp3-control.bp3-radio input:focus ~ .bp3-control-indicator{\n    -moz-outline-radius:16px; }\n  .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(167, 182, 194, 0.5); }\n  .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(115, 134, 148, 0.5); }\n  .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(92, 112, 128, 0.5); }\n  .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5); }\n    .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5); }\n    .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch:not(.bp3-align-right){\n    padding-left:38px; }\n    .bp3-control.bp3-switch:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-38px; }\n  .bp3-control.bp3-switch.bp3-align-right{\n    padding-right:38px; }\n    .bp3-control.bp3-switch.bp3-align-right .bp3-control-indicator{\n      margin-right:-38px; }\n  .bp3-control.bp3-switch .bp3-control-indicator{\n    border:none;\n    border-radius:1.75em;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important;\n    min-width:1.75em;\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:auto; }\n    .bp3-control.bp3-switch .bp3-control-indicator::before{\n      background:#ffffff;\n      border-radius:50%;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n      height:calc(1em - 4px);\n      left:0;\n      margin:2px;\n      position:absolute;\n      -webkit-transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      width:calc(1em - 4px); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    left:calc(100% - 1em); }\n  .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right){\n    padding-left:45px; }\n    .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-45px; }\n  .bp3-control.bp3-switch.bp3-large.bp3-align-right{\n    padding-right:45px; }\n    .bp3-control.bp3-switch.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-right:-45px; }\n  .bp3-dark .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.7); }\n  .bp3-dark .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.9); }\n  .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(57, 75, 89, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-dark .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch .bp3-control-indicator::before{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-control.bp3-switch .bp3-switch-inner-text{\n    font-size:0.7em;\n    text-align:center; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:first-child{\n    line-height:0;\n    margin-left:0.5em;\n    margin-right:1.2em;\n    visibility:hidden; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:last-child{\n    line-height:1em;\n    margin-left:1.2em;\n    margin-right:0.5em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:first-child{\n    line-height:1em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:last-child{\n    line-height:0;\n    visibility:hidden; }\n  .bp3-dark .bp3-control{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-control.bp3-disabled{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-control .bp3-control-indicator{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-control:hover .bp3-control-indicator{\n      background-color:#30404d; }\n    .bp3-dark .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n      background:#202b33;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-control input:disabled ~ .bp3-control-indicator{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      cursor:not-allowed; }\n    .bp3-dark .bp3-control.bp3-checkbox input:disabled:checked ~ .bp3-control-indicator, .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-file-input{\n  cursor:pointer;\n  display:inline-block;\n  height:30px;\n  position:relative; }\n  .bp3-file-input input{\n    margin:0;\n    min-width:200px;\n    opacity:0; }\n    .bp3-file-input input:disabled + .bp3-file-upload-input,\n    .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n      background:rgba(206, 217, 224, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      resize:none; }\n      .bp3-file-input input:disabled + .bp3-file-upload-input::after,\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n        background-color:rgba(206, 217, 224, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(92, 112, 128, 0.6);\n        cursor:not-allowed;\n        outline:none; }\n        .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active:hover,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active:hover{\n          background:rgba(206, 217, 224, 0.7); }\n      .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input, .bp3-dark\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n        background:rgba(57, 75, 89, 0.5);\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after, .bp3-dark\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n          background-color:rgba(57, 75, 89, 0.5);\n          background-image:none;\n          -webkit-box-shadow:none;\n                  box-shadow:none;\n          color:rgba(167, 182, 194, 0.6); }\n          .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-dark\n          .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active{\n            background:rgba(57, 75, 89, 0.7); }\n  .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#182026; }\n  .bp3-dark .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#f5f8fa; }\n  .bp3-file-input.bp3-fill{\n    width:100%; }\n  .bp3-file-input.bp3-large,\n  .bp3-large .bp3-file-input{\n    height:40px; }\n  .bp3-file-input .bp3-file-upload-input-custom-text::after{\n    content:attr(bp3-button-text); }\n\n.bp3-file-upload-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle;\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:rgba(92, 112, 128, 0.6);\n  left:0;\n  padding-right:80px;\n  position:absolute;\n  right:0;\n  top:0;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-file-upload-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:focus, .bp3-file-upload-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-file-upload-input[type=\"search\"], .bp3-file-upload-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-file-upload-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-file-upload-input:disabled, .bp3-file-upload-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-file-upload-input::after{\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026;\n    min-height:24px;\n    min-width:24px;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    border-radius:3px;\n    content:\"Browse\";\n    line-height:24px;\n    margin:3px;\n    position:absolute;\n    right:0;\n    text-align:center;\n    top:0;\n    width:70px; }\n    .bp3-file-upload-input::after:hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-file-upload-input::after:active, .bp3-file-upload-input::after.bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-file-upload-input::after:disabled, .bp3-file-upload-input::after.bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-file-upload-input::after:disabled.bp3-active, .bp3-file-upload-input::after:disabled.bp3-active:hover, .bp3-file-upload-input::after.bp3-disabled.bp3-active, .bp3-file-upload-input::after.bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-file-upload-input:hover::after{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-file-upload-input:active::after{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-large .bp3-file-upload-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px;\n    padding-right:95px; }\n    .bp3-large .bp3-file-upload-input[type=\"search\"], .bp3-large .bp3-file-upload-input.bp3-round{\n      padding:0 15px; }\n    .bp3-large .bp3-file-upload-input::after{\n      min-height:30px;\n      min-width:30px;\n      line-height:30px;\n      margin:5px;\n      width:85px; }\n  .bp3-dark .bp3-file-upload-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:disabled, .bp3-dark .bp3-file-upload-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::after{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n      color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover, .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover{\n        background-color:#30404d;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        background-color:#202b33;\n        background-image:none;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n      .bp3-dark .bp3-file-upload-input::after:disabled, .bp3-dark .bp3-file-upload-input::after.bp3-disabled{\n        background-color:rgba(57, 75, 89, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-upload-input::after:disabled.bp3-active, .bp3-dark .bp3-file-upload-input::after.bp3-disabled.bp3-active{\n          background:rgba(57, 75, 89, 0.7); }\n      .bp3-dark .bp3-file-upload-input::after .bp3-button-spinner .bp3-spinner-head{\n        background:rgba(16, 22, 26, 0.5);\n        stroke:#8a9ba8; }\n    .bp3-dark .bp3-file-upload-input:hover::after{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:active::after{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n.bp3-file-upload-input::after{\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n.bp3-form-group{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0 0 15px; }\n  .bp3-form-group label.bp3-label{\n    margin-bottom:5px; }\n  .bp3-form-group .bp3-control{\n    margin-top:7px; }\n  .bp3-form-group .bp3-form-helper-text{\n    color:#5c7080;\n    font-size:12px;\n    margin-top:5px; }\n  .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#106ba3; }\n  .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#0d8050; }\n  .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#bf7326; }\n  .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#c23030; }\n  .bp3-form-group.bp3-inline{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row; }\n    .bp3-form-group.bp3-inline.bp3-large label.bp3-label{\n      line-height:40px;\n      margin:0 10px 0 0; }\n    .bp3-form-group.bp3-inline label.bp3-label{\n      line-height:30px;\n      margin:0 10px 0 0; }\n  .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-dark .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#48aff0; }\n  .bp3-dark .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#3dcc91; }\n  .bp3-dark .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#ffb366; }\n  .bp3-dark .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#ff7373; }\n  .bp3-dark .bp3-form-group .bp3-form-helper-text{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(167, 182, 194, 0.6) !important; }\n.bp3-input-group{\n  display:block;\n  position:relative; }\n  .bp3-input-group .bp3-input{\n    position:relative;\n    width:100%; }\n    .bp3-input-group .bp3-input:not(:first-child){\n      padding-left:30px; }\n    .bp3-input-group .bp3-input:not(:last-child){\n      padding-right:30px; }\n  .bp3-input-group .bp3-input-action,\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-button,\n  .bp3-input-group > .bp3-icon{\n    position:absolute;\n    top:0; }\n    .bp3-input-group .bp3-input-action:first-child,\n    .bp3-input-group > .bp3-input-left-container:first-child,\n    .bp3-input-group > .bp3-button:first-child,\n    .bp3-input-group > .bp3-icon:first-child{\n      left:0; }\n    .bp3-input-group .bp3-input-action:last-child,\n    .bp3-input-group > .bp3-input-left-container:last-child,\n    .bp3-input-group > .bp3-button:last-child,\n    .bp3-input-group > .bp3-icon:last-child{\n      right:0; }\n  .bp3-input-group .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    margin:3px;\n    padding:0 7px; }\n    .bp3-input-group .bp3-button:empty{\n      padding:0; }\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-icon{\n    z-index:1; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon{\n    color:#5c7080; }\n    .bp3-input-group > .bp3-input-left-container > .bp3-icon:empty,\n    .bp3-input-group > .bp3-icon:empty{\n      font-family:\"Icons16\", sans-serif;\n      font-size:16px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon,\n  .bp3-input-group .bp3-input-action > .bp3-spinner{\n    margin:7px; }\n  .bp3-input-group .bp3-tag{\n    margin:5px; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus),\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n    color:#5c7080; }\n    .bp3-dark .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus), .bp3-dark\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n      color:#a7b6c2; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large{\n      color:#5c7080; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled,\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled{\n    color:rgba(92, 112, 128, 0.6) !important; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-large{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-input-group.bp3-disabled{\n    cursor:not-allowed; }\n    .bp3-input-group.bp3-disabled .bp3-icon{\n      color:rgba(92, 112, 128, 0.6); }\n  .bp3-input-group.bp3-large .bp3-button{\n    min-height:30px;\n    min-width:30px;\n    margin:5px; }\n  .bp3-input-group.bp3-large > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-large > .bp3-icon,\n  .bp3-input-group.bp3-large .bp3-input-action > .bp3-spinner{\n    margin:12px; }\n  .bp3-input-group.bp3-large .bp3-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input-group.bp3-large .bp3-input[type=\"search\"], .bp3-input-group.bp3-large .bp3-input.bp3-round{\n      padding:0 15px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:first-child){\n      padding-left:40px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:last-child){\n      padding-right:40px; }\n  .bp3-input-group.bp3-small .bp3-button{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small .bp3-tag{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-small > .bp3-icon,\n  .bp3-input-group.bp3-small .bp3-input-action > .bp3-spinner{\n    margin:4px; }\n  .bp3-input-group.bp3-small .bp3-input{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input-group.bp3-small .bp3-input[type=\"search\"], .bp3-input-group.bp3-small .bp3-input.bp3-round{\n      padding:0 12px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:first-child){\n      padding-left:24px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:last-child){\n      padding-right:24px; }\n  .bp3-input-group.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-input-group.bp3-round .bp3-button,\n  .bp3-input-group.bp3-round .bp3-input,\n  .bp3-input-group.bp3-round .bp3-tag{\n    border-radius:30px; }\n  .bp3-dark .bp3-input-group .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-input-group.bp3-disabled .bp3-icon{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-input-group.bp3-intent-primary .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input-group.bp3-intent-primary .bp3-input:disabled, .bp3-input-group.bp3-intent-primary .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-primary > .bp3-icon{\n    color:#106ba3; }\n    .bp3-dark .bp3-input-group.bp3-intent-primary > .bp3-icon{\n      color:#48aff0; }\n  .bp3-input-group.bp3-intent-success .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input-group.bp3-intent-success .bp3-input:disabled, .bp3-input-group.bp3-intent-success .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-success > .bp3-icon{\n    color:#0d8050; }\n    .bp3-dark .bp3-input-group.bp3-intent-success > .bp3-icon{\n      color:#3dcc91; }\n  .bp3-input-group.bp3-intent-warning .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input-group.bp3-intent-warning .bp3-input:disabled, .bp3-input-group.bp3-intent-warning .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-warning > .bp3-icon{\n    color:#bf7326; }\n    .bp3-dark .bp3-input-group.bp3-intent-warning > .bp3-icon{\n      color:#ffb366; }\n  .bp3-input-group.bp3-intent-danger .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input-group.bp3-intent-danger .bp3-input:disabled, .bp3-input-group.bp3-intent-danger .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-danger > .bp3-icon{\n    color:#c23030; }\n    .bp3-dark .bp3-input-group.bp3-intent-danger > .bp3-icon{\n      color:#ff7373; }\n.bp3-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle; }\n  .bp3-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:focus, .bp3-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-input[type=\"search\"], .bp3-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-input:disabled, .bp3-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-input.bp3-large{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input.bp3-large[type=\"search\"], .bp3-input.bp3-large.bp3-round{\n      padding:0 15px; }\n  .bp3-input.bp3-small{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input.bp3-small[type=\"search\"], .bp3-input.bp3-small.bp3-round{\n      padding:0 12px; }\n  .bp3-input.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-dark .bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input:disabled, .bp3-dark .bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-input.bp3-intent-primary{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input.bp3-intent-primary:disabled, .bp3-input.bp3-intent-primary.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary:focus{\n        -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n                box-shadow:inset 0 0 0 1px #137cbd; }\n      .bp3-dark .bp3-input.bp3-intent-primary:disabled, .bp3-dark .bp3-input.bp3-intent-primary.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-success{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input.bp3-intent-success:disabled, .bp3-input.bp3-intent-success.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success:focus{\n        -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n                box-shadow:inset 0 0 0 1px #0f9960; }\n      .bp3-dark .bp3-input.bp3-intent-success:disabled, .bp3-dark .bp3-input.bp3-intent-success.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-warning{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input.bp3-intent-warning:disabled, .bp3-input.bp3-intent-warning.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning:focus{\n        -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n                box-shadow:inset 0 0 0 1px #d9822b; }\n      .bp3-dark .bp3-input.bp3-intent-warning:disabled, .bp3-dark .bp3-input.bp3-intent-warning.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-danger{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input.bp3-intent-danger:disabled, .bp3-input.bp3-intent-danger.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger:focus{\n        -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #db3737;\n                box-shadow:inset 0 0 0 1px #db3737; }\n      .bp3-dark .bp3-input.bp3-intent-danger:disabled, .bp3-dark .bp3-input.bp3-intent-danger.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input::-ms-clear{\n    display:none; }\ntextarea.bp3-input{\n  max-width:100%;\n  padding:10px; }\n  textarea.bp3-input, textarea.bp3-input.bp3-large, textarea.bp3-input.bp3-small{\n    height:auto;\n    line-height:inherit; }\n  textarea.bp3-input.bp3-small{\n    padding:8px; }\n  .bp3-dark textarea.bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark textarea.bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input:disabled, .bp3-dark textarea.bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\nlabel.bp3-label{\n  display:block;\n  margin-bottom:15px;\n  margin-top:0; }\n  label.bp3-label .bp3-html-select,\n  label.bp3-label .bp3-input,\n  label.bp3-label .bp3-select,\n  label.bp3-label .bp3-slider,\n  label.bp3-label .bp3-popover-wrapper{\n    display:block;\n    margin-top:5px;\n    text-transform:none; }\n  label.bp3-label .bp3-button-group{\n    margin-top:5px; }\n  label.bp3-label .bp3-select select,\n  label.bp3-label .bp3-html-select select{\n    font-weight:400;\n    vertical-align:top;\n    width:100%; }\n  label.bp3-label.bp3-disabled,\n  label.bp3-label.bp3-disabled .bp3-text-muted{\n    color:rgba(92, 112, 128, 0.6); }\n  label.bp3-label.bp3-inline{\n    line-height:30px; }\n    label.bp3-label.bp3-inline .bp3-html-select,\n    label.bp3-label.bp3-inline .bp3-input,\n    label.bp3-label.bp3-inline .bp3-input-group,\n    label.bp3-label.bp3-inline .bp3-select,\n    label.bp3-label.bp3-inline .bp3-popover-wrapper{\n      display:inline-block;\n      margin:0 0 0 5px;\n      vertical-align:top; }\n    label.bp3-label.bp3-inline .bp3-button-group{\n      margin:0 0 0 5px; }\n    label.bp3-label.bp3-inline .bp3-input-group .bp3-input{\n      margin-left:0; }\n    label.bp3-label.bp3-inline.bp3-large{\n      line-height:40px; }\n  label.bp3-label:not(.bp3-inline) .bp3-popover-target{\n    display:block; }\n  .bp3-dark label.bp3-label{\n    color:#f5f8fa; }\n    .bp3-dark label.bp3-label.bp3-disabled,\n    .bp3-dark label.bp3-label.bp3-disabled .bp3-text-muted{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 14px;\n          flex:1 1 14px;\n  min-height:0;\n  padding:0;\n  width:30px; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:first-child{\n    border-radius:0 3px 0 0; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:last-child{\n    border-radius:0 0 3px 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:first-child{\n  border-radius:3px 0 0 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:last-child{\n  border-radius:0 0 0 3px; }\n\n.bp3-numeric-input.bp3-large .bp3-button-group.bp3-vertical > .bp3-button{\n  width:40px; }\n\nform{\n  display:block; }\n.bp3-html-select select,\n.bp3-select select{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  -moz-appearance:none;\n  -webkit-appearance:none;\n  border-radius:3px;\n  height:30px;\n  padding:0 25px 0 10px;\n  width:100%; }\n  .bp3-html-select select > *, .bp3-select select > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-html-select select > .bp3-fill, .bp3-select select > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-html-select select::before,\n  .bp3-select select::before, .bp3-html-select select > *, .bp3-select select > *{\n    margin-right:7px; }\n  .bp3-html-select select:empty::before,\n  .bp3-select select:empty::before,\n  .bp3-html-select select > :last-child,\n  .bp3-select select > :last-child{\n    margin-right:0; }\n  .bp3-html-select select:hover,\n  .bp3-select select:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-html-select select:active,\n  .bp3-select select:active, .bp3-html-select select.bp3-active,\n  .bp3-select select.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-html-select select:disabled,\n  .bp3-select select:disabled, .bp3-html-select select.bp3-disabled,\n  .bp3-select select.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-html-select select:disabled.bp3-active,\n    .bp3-select select:disabled.bp3-active, .bp3-html-select select:disabled.bp3-active:hover,\n    .bp3-select select:disabled.bp3-active:hover, .bp3-html-select select.bp3-disabled.bp3-active,\n    .bp3-select select.bp3-disabled.bp3-active, .bp3-html-select select.bp3-disabled.bp3-active:hover,\n    .bp3-select select.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n\n.bp3-html-select.bp3-minimal select,\n.bp3-select.bp3-minimal select{\n  background:none;\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  .bp3-html-select.bp3-minimal select:hover,\n  .bp3-select.bp3-minimal select:hover{\n    background:rgba(167, 182, 194, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026;\n    text-decoration:none; }\n  .bp3-html-select.bp3-minimal select:active,\n  .bp3-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal select.bp3-active,\n  .bp3-select.bp3-minimal select.bp3-active{\n    background:rgba(115, 134, 148, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026; }\n  .bp3-html-select.bp3-minimal select:disabled,\n  .bp3-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal select:disabled:hover,\n  .bp3-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal select.bp3-disabled,\n  .bp3-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal select.bp3-disabled:hover,\n  .bp3-select.bp3-minimal select.bp3-disabled:hover{\n    background:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n    .bp3-html-select.bp3-minimal select:disabled.bp3-active,\n    .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active{\n      background:rgba(115, 134, 148, 0.3); }\n  .bp3-dark .bp3-html-select.bp3-minimal select, .bp3-html-select.bp3-minimal .bp3-dark select,\n  .bp3-dark .bp3-select.bp3-minimal select, .bp3-select.bp3-minimal .bp3-dark select{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover, .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover{\n      background:rgba(138, 155, 168, 0.15); }\n    .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:rgba(138, 155, 168, 0.3);\n      color:#f5f8fa; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal .bp3-dark select:disabled,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled, .bp3-select.bp3-minimal .bp3-dark select:disabled, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled:hover, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover{\n      background:none;\n      color:rgba(167, 182, 194, 0.6);\n      cursor:not-allowed; }\n      .bp3-dark .bp3-html-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active{\n        background:rgba(138, 155, 168, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-primary,\n  .bp3-select.bp3-minimal select.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover{\n      background:rgba(19, 124, 189, 0.15);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:rgba(19, 124, 189, 0.3);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled{\n      background:none;\n      color:rgba(16, 107, 163, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active{\n        background:rgba(19, 124, 189, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n      stroke:#106ba3; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary{\n      color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.2);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(72, 175, 240, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-success,\n  .bp3-select.bp3-minimal select.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover{\n      background:rgba(15, 153, 96, 0.15);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:rgba(15, 153, 96, 0.3);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled{\n      background:none;\n      color:rgba(13, 128, 80, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active{\n        background:rgba(15, 153, 96, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n      stroke:#0d8050; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success{\n      color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.2);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(61, 204, 145, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-warning,\n  .bp3-select.bp3-minimal select.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover{\n      background:rgba(217, 130, 43, 0.15);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:rgba(217, 130, 43, 0.3);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled{\n      background:none;\n      color:rgba(191, 115, 38, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active{\n        background:rgba(217, 130, 43, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n      stroke:#bf7326; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning{\n      color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.2);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(255, 179, 102, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-danger,\n  .bp3-select.bp3-minimal select.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover{\n      background:rgba(219, 55, 55, 0.15);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:rgba(219, 55, 55, 0.3);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled{\n      background:none;\n      color:rgba(194, 48, 48, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active{\n        background:rgba(219, 55, 55, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n      stroke:#c23030; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger{\n      color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.2);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(255, 115, 115, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n\n.bp3-html-select.bp3-large select,\n.bp3-select.bp3-large select{\n  font-size:16px;\n  height:40px;\n  padding-right:35px; }\n\n.bp3-dark .bp3-html-select select, .bp3-dark .bp3-select select{\n  background-color:#394b59;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n  color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover, .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    background-color:#202b33;\n    background-image:none;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-html-select select:disabled, .bp3-dark .bp3-select select:disabled, .bp3-dark .bp3-html-select select.bp3-disabled, .bp3-dark .bp3-select select.bp3-disabled{\n    background-color:rgba(57, 75, 89, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-html-select select:disabled.bp3-active, .bp3-dark .bp3-select select:disabled.bp3-active, .bp3-dark .bp3-html-select select.bp3-disabled.bp3-active, .bp3-dark .bp3-select select.bp3-disabled.bp3-active{\n      background:rgba(57, 75, 89, 0.7); }\n  .bp3-dark .bp3-html-select select .bp3-button-spinner .bp3-spinner-head, .bp3-dark .bp3-select select .bp3-button-spinner .bp3-spinner-head{\n    background:rgba(16, 22, 26, 0.5);\n    stroke:#8a9ba8; }\n\n.bp3-html-select select:disabled,\n.bp3-select select:disabled{\n  background-color:rgba(206, 217, 224, 0.5);\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-html-select .bp3-icon,\n.bp3-select .bp3-icon, .bp3-select::after{\n  color:#5c7080;\n  pointer-events:none;\n  position:absolute;\n  right:7px;\n  top:7px; }\n  .bp3-html-select .bp3-disabled.bp3-icon,\n  .bp3-select .bp3-disabled.bp3-icon, .bp3-disabled.bp3-select::after{\n    color:rgba(92, 112, 128, 0.6); }\n.bp3-html-select,\n.bp3-select{\n  display:inline-block;\n  letter-spacing:normal;\n  position:relative;\n  vertical-align:middle; }\n  .bp3-html-select select::-ms-expand,\n  .bp3-select select::-ms-expand{\n    display:none; }\n  .bp3-html-select .bp3-icon,\n  .bp3-select .bp3-icon{\n    color:#5c7080; }\n    .bp3-html-select .bp3-icon:hover,\n    .bp3-select .bp3-icon:hover{\n      color:#182026; }\n    .bp3-dark .bp3-html-select .bp3-icon, .bp3-dark\n    .bp3-select .bp3-icon{\n      color:#a7b6c2; }\n      .bp3-dark .bp3-html-select .bp3-icon:hover, .bp3-dark\n      .bp3-select .bp3-icon:hover{\n        color:#f5f8fa; }\n  .bp3-html-select.bp3-large::after,\n  .bp3-html-select.bp3-large .bp3-icon,\n  .bp3-select.bp3-large::after,\n  .bp3-select.bp3-large .bp3-icon{\n    right:12px;\n    top:12px; }\n  .bp3-html-select.bp3-fill,\n  .bp3-html-select.bp3-fill select,\n  .bp3-select.bp3-fill,\n  .bp3-select.bp3-fill select{\n    width:100%; }\n  .bp3-dark .bp3-html-select option, .bp3-dark\n  .bp3-select option{\n    background-color:#30404d;\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select option:disabled, .bp3-dark\n  .bp3-select option:disabled{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-html-select::after, .bp3-dark\n  .bp3-select::after{\n    color:#a7b6c2; }\n\n.bp3-select::after{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  content:\"\"; }\n.bp3-running-text table, table.bp3-html-table{\n  border-spacing:0;\n  font-size:14px; }\n  .bp3-running-text table th, table.bp3-html-table th,\n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    padding:11px;\n    text-align:left;\n    vertical-align:top; }\n  .bp3-running-text table th, table.bp3-html-table th{\n    color:#182026;\n    font-weight:600; }\n  \n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    color:#182026; }\n  .bp3-running-text table tbody tr:first-child th, table.bp3-html-table tbody tr:first-child th,\n  .bp3-running-text table tbody tr:first-child td,\n  table.bp3-html-table tbody tr:first-child td,\n  .bp3-running-text table tfoot tr:first-child th,\n  table.bp3-html-table tfoot tr:first-child th,\n  .bp3-running-text table tfoot tr:first-child td,\n  table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-running-text table th, .bp3-running-text .bp3-dark table th, .bp3-dark table.bp3-html-table th{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table td, .bp3-running-text .bp3-dark table td, .bp3-dark table.bp3-html-table td{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table tbody tr:first-child th, .bp3-running-text .bp3-dark table tbody tr:first-child th, .bp3-dark table.bp3-html-table tbody tr:first-child th,\n  .bp3-dark .bp3-running-text table tbody tr:first-child td,\n  .bp3-running-text .bp3-dark table tbody tr:first-child td,\n  .bp3-dark table.bp3-html-table tbody tr:first-child td,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child th,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child th,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child th,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child td,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child td,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-condensed th,\ntable.bp3-html-table.bp3-html-table-condensed td, table.bp3-html-table.bp3-small th,\ntable.bp3-html-table.bp3-small td{\n  padding-bottom:6px;\n  padding-top:6px; }\n\ntable.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n  background:rgba(191, 204, 214, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n  -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered tbody tr td,\ntable.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n  -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n  table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n    -webkit-box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-interactive tbody tr:hover td{\n  background-color:rgba(191, 204, 214, 0.3);\n  cursor:pointer; }\n\ntable.bp3-html-table.bp3-interactive tbody tr:active td{\n  background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-dark table.bp3-html-table{ }\n  .bp3-dark table.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n    background:rgba(92, 112, 128, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td,\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n      -webkit-box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15);\n              box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:first-child{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:hover td{\n    background-color:rgba(92, 112, 128, 0.3);\n    cursor:pointer; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:active td{\n    background-color:rgba(92, 112, 128, 0.4); }\n\n.bp3-key-combo{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center; }\n  .bp3-key-combo > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-key-combo > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-key-combo::before,\n  .bp3-key-combo > *{\n    margin-right:5px; }\n  .bp3-key-combo:empty::before,\n  .bp3-key-combo > :last-child{\n    margin-right:0; }\n\n.bp3-hotkey-dialog{\n  padding-bottom:0;\n  top:40px; }\n  .bp3-hotkey-dialog .bp3-dialog-body{\n    margin:0;\n    padding:0; }\n  .bp3-hotkey-dialog .bp3-hotkey-label{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1; }\n\n.bp3-hotkey-column{\n  margin:auto;\n  max-height:80vh;\n  overflow-y:auto;\n  padding:30px; }\n  .bp3-hotkey-column .bp3-heading{\n    margin-bottom:20px; }\n    .bp3-hotkey-column .bp3-heading:not(:first-child){\n      margin-top:40px; }\n\n.bp3-hotkey{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:justify;\n      -ms-flex-pack:justify;\n          justify-content:space-between;\n  margin-left:0;\n  margin-right:0; }\n  .bp3-hotkey:not(:last-child){\n    margin-bottom:10px; }\n.bp3-icon{\n  display:inline-block;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  vertical-align:text-bottom; }\n  .bp3-icon:not(:empty)::before{\n    content:\"\" !important;\n    content:unset !important; }\n  .bp3-icon > svg{\n    display:block; }\n    .bp3-icon > svg:not([fill]){\n      fill:currentColor; }\n\n.bp3-icon.bp3-intent-primary, .bp3-icon-standard.bp3-intent-primary, .bp3-icon-large.bp3-intent-primary{\n  color:#106ba3; }\n  .bp3-dark .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-icon-large.bp3-intent-primary{\n    color:#48aff0; }\n\n.bp3-icon.bp3-intent-success, .bp3-icon-standard.bp3-intent-success, .bp3-icon-large.bp3-intent-success{\n  color:#0d8050; }\n  .bp3-dark .bp3-icon.bp3-intent-success, .bp3-dark .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-icon-large.bp3-intent-success{\n    color:#3dcc91; }\n\n.bp3-icon.bp3-intent-warning, .bp3-icon-standard.bp3-intent-warning, .bp3-icon-large.bp3-intent-warning{\n  color:#bf7326; }\n  .bp3-dark .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-icon-large.bp3-intent-warning{\n    color:#ffb366; }\n\n.bp3-icon.bp3-intent-danger, .bp3-icon-standard.bp3-intent-danger, .bp3-icon-large.bp3-intent-danger{\n  color:#c23030; }\n  .bp3-dark .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-icon-large.bp3-intent-danger{\n    color:#ff7373; }\n\nspan.bp3-icon-standard{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon-large{\n  font-family:\"Icons20\", sans-serif;\n  font-size:20px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon:empty{\n  font-family:\"Icons20\";\n  font-size:inherit;\n  font-style:normal;\n  font-weight:400;\n  line-height:1; }\n  span.bp3-icon:empty::before{\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased; }\n\n.bp3-icon-add::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-artifact::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-folder::before{\n  content:\"\"; }\n\n.bp3-icon-airplane::before{\n  content:\"\"; }\n\n.bp3-icon-align-center::before{\n  content:\"\"; }\n\n.bp3-icon-align-justify::before{\n  content:\"\"; }\n\n.bp3-icon-align-left::before{\n  content:\"\"; }\n\n.bp3-icon-align-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-horizontal-center::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-left::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-top::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-vertical-center::before{\n  content:\"\"; }\n\n.bp3-icon-annotation::before{\n  content:\"\"; }\n\n.bp3-icon-application::before{\n  content:\"\"; }\n\n.bp3-icon-applications::before{\n  content:\"\"; }\n\n.bp3-icon-archive::before{\n  content:\"\"; }\n\n.bp3-icon-arrow-bottom-left::before{\n  content:\"↙\"; }\n\n.bp3-icon-arrow-bottom-right::before{\n  content:\"↘\"; }\n\n.bp3-icon-arrow-down::before{\n  content:\"↓\"; }\n\n.bp3-icon-arrow-left::before{\n  content:\"←\"; }\n\n.bp3-icon-arrow-right::before{\n  content:\"→\"; }\n\n.bp3-icon-arrow-top-left::before{\n  content:\"↖\"; }\n\n.bp3-icon-arrow-top-right::before{\n  content:\"↗\"; }\n\n.bp3-icon-arrow-up::before{\n  content:\"↑\"; }\n\n.bp3-icon-arrows-horizontal::before{\n  content:\"↔\"; }\n\n.bp3-icon-arrows-vertical::before{\n  content:\"↕\"; }\n\n.bp3-icon-asterisk::before{\n  content:\"*\"; }\n\n.bp3-icon-automatic-updates::before{\n  content:\"\"; }\n\n.bp3-icon-badge::before{\n  content:\"\"; }\n\n.bp3-icon-ban-circle::before{\n  content:\"\"; }\n\n.bp3-icon-bank-account::before{\n  content:\"\"; }\n\n.bp3-icon-barcode::before{\n  content:\"\"; }\n\n.bp3-icon-blank::before{\n  content:\"\"; }\n\n.bp3-icon-blocked-person::before{\n  content:\"\"; }\n\n.bp3-icon-bold::before{\n  content:\"\"; }\n\n.bp3-icon-book::before{\n  content:\"\"; }\n\n.bp3-icon-bookmark::before{\n  content:\"\"; }\n\n.bp3-icon-box::before{\n  content:\"\"; }\n\n.bp3-icon-briefcase::before{\n  content:\"\"; }\n\n.bp3-icon-bring-data::before{\n  content:\"\"; }\n\n.bp3-icon-build::before{\n  content:\"\"; }\n\n.bp3-icon-calculator::before{\n  content:\"\"; }\n\n.bp3-icon-calendar::before{\n  content:\"\"; }\n\n.bp3-icon-camera::before{\n  content:\"\"; }\n\n.bp3-icon-caret-down::before{\n  content:\"⌄\"; }\n\n.bp3-icon-caret-left::before{\n  content:\"〈\"; }\n\n.bp3-icon-caret-right::before{\n  content:\"〉\"; }\n\n.bp3-icon-caret-up::before{\n  content:\"⌃\"; }\n\n.bp3-icon-cell-tower::before{\n  content:\"\"; }\n\n.bp3-icon-changes::before{\n  content:\"\"; }\n\n.bp3-icon-chart::before{\n  content:\"\"; }\n\n.bp3-icon-chat::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-backward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-forward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-circle::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-down::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-left::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-right::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-up::before{\n  content:\"\"; }\n\n.bp3-icon-citation::before{\n  content:\"\"; }\n\n.bp3-icon-clean::before{\n  content:\"\"; }\n\n.bp3-icon-clipboard::before{\n  content:\"\"; }\n\n.bp3-icon-cloud::before{\n  content:\"☁\"; }\n\n.bp3-icon-cloud-download::before{\n  content:\"\"; }\n\n.bp3-icon-cloud-upload::before{\n  content:\"\"; }\n\n.bp3-icon-code::before{\n  content:\"\"; }\n\n.bp3-icon-code-block::before{\n  content:\"\"; }\n\n.bp3-icon-cog::before{\n  content:\"\"; }\n\n.bp3-icon-collapse-all::before{\n  content:\"\"; }\n\n.bp3-icon-column-layout::before{\n  content:\"\"; }\n\n.bp3-icon-comment::before{\n  content:\"\"; }\n\n.bp3-icon-comparison::before{\n  content:\"\"; }\n\n.bp3-icon-compass::before{\n  content:\"\"; }\n\n.bp3-icon-compressed::before{\n  content:\"\"; }\n\n.bp3-icon-confirm::before{\n  content:\"\"; }\n\n.bp3-icon-console::before{\n  content:\"\"; }\n\n.bp3-icon-contrast::before{\n  content:\"\"; }\n\n.bp3-icon-control::before{\n  content:\"\"; }\n\n.bp3-icon-credit-card::before{\n  content:\"\"; }\n\n.bp3-icon-cross::before{\n  content:\"✗\"; }\n\n.bp3-icon-crown::before{\n  content:\"\"; }\n\n.bp3-icon-cube::before{\n  content:\"\"; }\n\n.bp3-icon-cube-add::before{\n  content:\"\"; }\n\n.bp3-icon-cube-remove::before{\n  content:\"\"; }\n\n.bp3-icon-curved-range-chart::before{\n  content:\"\"; }\n\n.bp3-icon-cut::before{\n  content:\"\"; }\n\n.bp3-icon-dashboard::before{\n  content:\"\"; }\n\n.bp3-icon-data-lineage::before{\n  content:\"\"; }\n\n.bp3-icon-database::before{\n  content:\"\"; }\n\n.bp3-icon-delete::before{\n  content:\"\"; }\n\n.bp3-icon-delta::before{\n  content:\"Δ\"; }\n\n.bp3-icon-derive-column::before{\n  content:\"\"; }\n\n.bp3-icon-desktop::before{\n  content:\"\"; }\n\n.bp3-icon-diagnosis::before{\n  content:\"\"; }\n\n.bp3-icon-diagram-tree::before{\n  content:\"\"; }\n\n.bp3-icon-direction-left::before{\n  content:\"\"; }\n\n.bp3-icon-direction-right::before{\n  content:\"\"; }\n\n.bp3-icon-disable::before{\n  content:\"\"; }\n\n.bp3-icon-document::before{\n  content:\"\"; }\n\n.bp3-icon-document-open::before{\n  content:\"\"; }\n\n.bp3-icon-document-share::before{\n  content:\"\"; }\n\n.bp3-icon-dollar::before{\n  content:\"$\"; }\n\n.bp3-icon-dot::before{\n  content:\"•\"; }\n\n.bp3-icon-double-caret-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-double-caret-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-doughnut-chart::before{\n  content:\"\"; }\n\n.bp3-icon-download::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-draw::before{\n  content:\"\"; }\n\n.bp3-icon-drive-time::before{\n  content:\"\"; }\n\n.bp3-icon-duplicate::before{\n  content:\"\"; }\n\n.bp3-icon-edit::before{\n  content:\"✎\"; }\n\n.bp3-icon-eject::before{\n  content:\"⏏\"; }\n\n.bp3-icon-endorsed::before{\n  content:\"\"; }\n\n.bp3-icon-envelope::before{\n  content:\"✉\"; }\n\n.bp3-icon-equals::before{\n  content:\"\"; }\n\n.bp3-icon-eraser::before{\n  content:\"\"; }\n\n.bp3-icon-error::before{\n  content:\"\"; }\n\n.bp3-icon-euro::before{\n  content:\"€\"; }\n\n.bp3-icon-exchange::before{\n  content:\"\"; }\n\n.bp3-icon-exclude-row::before{\n  content:\"\"; }\n\n.bp3-icon-expand-all::before{\n  content:\"\"; }\n\n.bp3-icon-export::before{\n  content:\"\"; }\n\n.bp3-icon-eye-off::before{\n  content:\"\"; }\n\n.bp3-icon-eye-on::before{\n  content:\"\"; }\n\n.bp3-icon-eye-open::before{\n  content:\"\"; }\n\n.bp3-icon-fast-backward::before{\n  content:\"\"; }\n\n.bp3-icon-fast-forward::before{\n  content:\"\"; }\n\n.bp3-icon-feed::before{\n  content:\"\"; }\n\n.bp3-icon-feed-subscribed::before{\n  content:\"\"; }\n\n.bp3-icon-film::before{\n  content:\"\"; }\n\n.bp3-icon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-filter-keep::before{\n  content:\"\"; }\n\n.bp3-icon-filter-list::before{\n  content:\"\"; }\n\n.bp3-icon-filter-open::before{\n  content:\"\"; }\n\n.bp3-icon-filter-remove::before{\n  content:\"\"; }\n\n.bp3-icon-flag::before{\n  content:\"⚑\"; }\n\n.bp3-icon-flame::before{\n  content:\"\"; }\n\n.bp3-icon-flash::before{\n  content:\"\"; }\n\n.bp3-icon-floppy-disk::before{\n  content:\"\"; }\n\n.bp3-icon-flow-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flow-end::before{\n  content:\"\"; }\n\n.bp3-icon-flow-linear::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flows::before{\n  content:\"\"; }\n\n.bp3-icon-folder-close::before{\n  content:\"\"; }\n\n.bp3-icon-folder-new::before{\n  content:\"\"; }\n\n.bp3-icon-folder-open::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared-open::before{\n  content:\"\"; }\n\n.bp3-icon-follower::before{\n  content:\"\"; }\n\n.bp3-icon-following::before{\n  content:\"\"; }\n\n.bp3-icon-font::before{\n  content:\"\"; }\n\n.bp3-icon-fork::before{\n  content:\"\"; }\n\n.bp3-icon-form::before{\n  content:\"\"; }\n\n.bp3-icon-full-circle::before{\n  content:\"\"; }\n\n.bp3-icon-full-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-fullscreen::before{\n  content:\"\"; }\n\n.bp3-icon-function::before{\n  content:\"\"; }\n\n.bp3-icon-gantt-chart::before{\n  content:\"\"; }\n\n.bp3-icon-geolocation::before{\n  content:\"\"; }\n\n.bp3-icon-geosearch::before{\n  content:\"\"; }\n\n.bp3-icon-git-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-commit::before{\n  content:\"\"; }\n\n.bp3-icon-git-merge::before{\n  content:\"\"; }\n\n.bp3-icon-git-new-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-pull::before{\n  content:\"\"; }\n\n.bp3-icon-git-push::before{\n  content:\"\"; }\n\n.bp3-icon-git-repo::before{\n  content:\"\"; }\n\n.bp3-icon-glass::before{\n  content:\"\"; }\n\n.bp3-icon-globe::before{\n  content:\"\"; }\n\n.bp3-icon-globe-network::before{\n  content:\"\"; }\n\n.bp3-icon-graph::before{\n  content:\"\"; }\n\n.bp3-icon-graph-remove::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-grid::before{\n  content:\"\"; }\n\n.bp3-icon-grid-view::before{\n  content:\"\"; }\n\n.bp3-icon-group-objects::before{\n  content:\"\"; }\n\n.bp3-icon-grouped-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-hand::before{\n  content:\"\"; }\n\n.bp3-icon-hand-down::before{\n  content:\"\"; }\n\n.bp3-icon-hand-left::before{\n  content:\"\"; }\n\n.bp3-icon-hand-right::before{\n  content:\"\"; }\n\n.bp3-icon-hand-up::before{\n  content:\"\"; }\n\n.bp3-icon-header::before{\n  content:\"\"; }\n\n.bp3-icon-header-one::before{\n  content:\"\"; }\n\n.bp3-icon-header-two::before{\n  content:\"\"; }\n\n.bp3-icon-headset::before{\n  content:\"\"; }\n\n.bp3-icon-heart::before{\n  content:\"♥\"; }\n\n.bp3-icon-heart-broken::before{\n  content:\"\"; }\n\n.bp3-icon-heat-grid::before{\n  content:\"\"; }\n\n.bp3-icon-heatmap::before{\n  content:\"\"; }\n\n.bp3-icon-help::before{\n  content:\"?\"; }\n\n.bp3-icon-helper-management::before{\n  content:\"\"; }\n\n.bp3-icon-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-history::before{\n  content:\"\"; }\n\n.bp3-icon-home::before{\n  content:\"⌂\"; }\n\n.bp3-icon-horizontal-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-id-number::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-left::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-right::before{\n  content:\"\"; }\n\n.bp3-icon-import::before{\n  content:\"\"; }\n\n.bp3-icon-inbox::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-geo::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-search::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-update::before{\n  content:\"\"; }\n\n.bp3-icon-info-sign::before{\n  content:\"ℹ\"; }\n\n.bp3-icon-inheritance::before{\n  content:\"\"; }\n\n.bp3-icon-inner-join::before{\n  content:\"\"; }\n\n.bp3-icon-insert::before{\n  content:\"\"; }\n\n.bp3-icon-intersection::before{\n  content:\"\"; }\n\n.bp3-icon-ip-address::before{\n  content:\"\"; }\n\n.bp3-icon-issue::before{\n  content:\"\"; }\n\n.bp3-icon-issue-closed::before{\n  content:\"\"; }\n\n.bp3-icon-issue-new::before{\n  content:\"\"; }\n\n.bp3-icon-italic::before{\n  content:\"\"; }\n\n.bp3-icon-join-table::before{\n  content:\"\"; }\n\n.bp3-icon-key::before{\n  content:\"\"; }\n\n.bp3-icon-key-backspace::before{\n  content:\"\"; }\n\n.bp3-icon-key-command::before{\n  content:\"\"; }\n\n.bp3-icon-key-control::before{\n  content:\"\"; }\n\n.bp3-icon-key-delete::before{\n  content:\"\"; }\n\n.bp3-icon-key-enter::before{\n  content:\"\"; }\n\n.bp3-icon-key-escape::before{\n  content:\"\"; }\n\n.bp3-icon-key-option::before{\n  content:\"\"; }\n\n.bp3-icon-key-shift::before{\n  content:\"\"; }\n\n.bp3-icon-key-tab::before{\n  content:\"\"; }\n\n.bp3-icon-known-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-lab-test::before{\n  content:\"\"; }\n\n.bp3-icon-label::before{\n  content:\"\"; }\n\n.bp3-icon-layer::before{\n  content:\"\"; }\n\n.bp3-icon-layers::before{\n  content:\"\"; }\n\n.bp3-icon-layout::before{\n  content:\"\"; }\n\n.bp3-icon-layout-auto::before{\n  content:\"\"; }\n\n.bp3-icon-layout-balloon::before{\n  content:\"\"; }\n\n.bp3-icon-layout-circle::before{\n  content:\"\"; }\n\n.bp3-icon-layout-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-group-by::before{\n  content:\"\"; }\n\n.bp3-icon-layout-hierarchy::before{\n  content:\"\"; }\n\n.bp3-icon-layout-linear::before{\n  content:\"\"; }\n\n.bp3-icon-layout-skew-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-sorted-clusters::before{\n  content:\"\"; }\n\n.bp3-icon-learning::before{\n  content:\"\"; }\n\n.bp3-icon-left-join::before{\n  content:\"\"; }\n\n.bp3-icon-less-than::before{\n  content:\"\"; }\n\n.bp3-icon-less-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-lifesaver::before{\n  content:\"\"; }\n\n.bp3-icon-lightbulb::before{\n  content:\"\"; }\n\n.bp3-icon-link::before{\n  content:\"\"; }\n\n.bp3-icon-list::before{\n  content:\"☰\"; }\n\n.bp3-icon-list-columns::before{\n  content:\"\"; }\n\n.bp3-icon-list-detail-view::before{\n  content:\"\"; }\n\n.bp3-icon-locate::before{\n  content:\"\"; }\n\n.bp3-icon-lock::before{\n  content:\"\"; }\n\n.bp3-icon-log-in::before{\n  content:\"\"; }\n\n.bp3-icon-log-out::before{\n  content:\"\"; }\n\n.bp3-icon-manual::before{\n  content:\"\"; }\n\n.bp3-icon-manually-entered-data::before{\n  content:\"\"; }\n\n.bp3-icon-map::before{\n  content:\"\"; }\n\n.bp3-icon-map-create::before{\n  content:\"\"; }\n\n.bp3-icon-map-marker::before{\n  content:\"\"; }\n\n.bp3-icon-maximize::before{\n  content:\"\"; }\n\n.bp3-icon-media::before{\n  content:\"\"; }\n\n.bp3-icon-menu::before{\n  content:\"\"; }\n\n.bp3-icon-menu-closed::before{\n  content:\"\"; }\n\n.bp3-icon-menu-open::before{\n  content:\"\"; }\n\n.bp3-icon-merge-columns::before{\n  content:\"\"; }\n\n.bp3-icon-merge-links::before{\n  content:\"\"; }\n\n.bp3-icon-minimize::before{\n  content:\"\"; }\n\n.bp3-icon-minus::before{\n  content:\"−\"; }\n\n.bp3-icon-mobile-phone::before{\n  content:\"\"; }\n\n.bp3-icon-mobile-video::before{\n  content:\"\"; }\n\n.bp3-icon-moon::before{\n  content:\"\"; }\n\n.bp3-icon-more::before{\n  content:\"\"; }\n\n.bp3-icon-mountain::before{\n  content:\"\"; }\n\n.bp3-icon-move::before{\n  content:\"\"; }\n\n.bp3-icon-mugshot::before{\n  content:\"\"; }\n\n.bp3-icon-multi-select::before{\n  content:\"\"; }\n\n.bp3-icon-music::before{\n  content:\"\"; }\n\n.bp3-icon-new-drawing::before{\n  content:\"\"; }\n\n.bp3-icon-new-grid-item::before{\n  content:\"\"; }\n\n.bp3-icon-new-layer::before{\n  content:\"\"; }\n\n.bp3-icon-new-layers::before{\n  content:\"\"; }\n\n.bp3-icon-new-link::before{\n  content:\"\"; }\n\n.bp3-icon-new-object::before{\n  content:\"\"; }\n\n.bp3-icon-new-person::before{\n  content:\"\"; }\n\n.bp3-icon-new-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-new-text-box::before{\n  content:\"\"; }\n\n.bp3-icon-ninja::before{\n  content:\"\"; }\n\n.bp3-icon-not-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-notifications::before{\n  content:\"\"; }\n\n.bp3-icon-notifications-updated::before{\n  content:\"\"; }\n\n.bp3-icon-numbered-list::before{\n  content:\"\"; }\n\n.bp3-icon-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-office::before{\n  content:\"\"; }\n\n.bp3-icon-offline::before{\n  content:\"\"; }\n\n.bp3-icon-oil-field::before{\n  content:\"\"; }\n\n.bp3-icon-one-column::before{\n  content:\"\"; }\n\n.bp3-icon-outdated::before{\n  content:\"\"; }\n\n.bp3-icon-page-layout::before{\n  content:\"\"; }\n\n.bp3-icon-panel-stats::before{\n  content:\"\"; }\n\n.bp3-icon-panel-table::before{\n  content:\"\"; }\n\n.bp3-icon-paperclip::before{\n  content:\"\"; }\n\n.bp3-icon-paragraph::before{\n  content:\"\"; }\n\n.bp3-icon-path::before{\n  content:\"\"; }\n\n.bp3-icon-path-search::before{\n  content:\"\"; }\n\n.bp3-icon-pause::before{\n  content:\"\"; }\n\n.bp3-icon-people::before{\n  content:\"\"; }\n\n.bp3-icon-percentage::before{\n  content:\"\"; }\n\n.bp3-icon-person::before{\n  content:\"\"; }\n\n.bp3-icon-phone::before{\n  content:\"☎\"; }\n\n.bp3-icon-pie-chart::before{\n  content:\"\"; }\n\n.bp3-icon-pin::before{\n  content:\"\"; }\n\n.bp3-icon-pivot::before{\n  content:\"\"; }\n\n.bp3-icon-pivot-table::before{\n  content:\"\"; }\n\n.bp3-icon-play::before{\n  content:\"\"; }\n\n.bp3-icon-plus::before{\n  content:\"+\"; }\n\n.bp3-icon-polygon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-power::before{\n  content:\"\"; }\n\n.bp3-icon-predictive-analysis::before{\n  content:\"\"; }\n\n.bp3-icon-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-presentation::before{\n  content:\"\"; }\n\n.bp3-icon-print::before{\n  content:\"⎙\"; }\n\n.bp3-icon-projects::before{\n  content:\"\"; }\n\n.bp3-icon-properties::before{\n  content:\"\"; }\n\n.bp3-icon-property::before{\n  content:\"\"; }\n\n.bp3-icon-publish-function::before{\n  content:\"\"; }\n\n.bp3-icon-pulse::before{\n  content:\"\"; }\n\n.bp3-icon-random::before{\n  content:\"\"; }\n\n.bp3-icon-record::before{\n  content:\"\"; }\n\n.bp3-icon-redo::before{\n  content:\"\"; }\n\n.bp3-icon-refresh::before{\n  content:\"\"; }\n\n.bp3-icon-regression-chart::before{\n  content:\"\"; }\n\n.bp3-icon-remove::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-repeat::before{\n  content:\"\"; }\n\n.bp3-icon-reset::before{\n  content:\"\"; }\n\n.bp3-icon-resolve::before{\n  content:\"\"; }\n\n.bp3-icon-rig::before{\n  content:\"\"; }\n\n.bp3-icon-right-join::before{\n  content:\"\"; }\n\n.bp3-icon-ring::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-document::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-page::before{\n  content:\"\"; }\n\n.bp3-icon-satellite::before{\n  content:\"\"; }\n\n.bp3-icon-saved::before{\n  content:\"\"; }\n\n.bp3-icon-scatter-plot::before{\n  content:\"\"; }\n\n.bp3-icon-search::before{\n  content:\"\"; }\n\n.bp3-icon-search-around::before{\n  content:\"\"; }\n\n.bp3-icon-search-template::before{\n  content:\"\"; }\n\n.bp3-icon-search-text::before{\n  content:\"\"; }\n\n.bp3-icon-segmented-control::before{\n  content:\"\"; }\n\n.bp3-icon-select::before{\n  content:\"\"; }\n\n.bp3-icon-selection::before{\n  content:\"⦿\"; }\n\n.bp3-icon-send-to::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-graph::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-map::before{\n  content:\"\"; }\n\n.bp3-icon-series-add::before{\n  content:\"\"; }\n\n.bp3-icon-series-configuration::before{\n  content:\"\"; }\n\n.bp3-icon-series-derived::before{\n  content:\"\"; }\n\n.bp3-icon-series-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-series-search::before{\n  content:\"\"; }\n\n.bp3-icon-settings::before{\n  content:\"\"; }\n\n.bp3-icon-share::before{\n  content:\"\"; }\n\n.bp3-icon-shield::before{\n  content:\"\"; }\n\n.bp3-icon-shop::before{\n  content:\"\"; }\n\n.bp3-icon-shopping-cart::before{\n  content:\"\"; }\n\n.bp3-icon-signal-search::before{\n  content:\"\"; }\n\n.bp3-icon-sim-card::before{\n  content:\"\"; }\n\n.bp3-icon-slash::before{\n  content:\"\"; }\n\n.bp3-icon-small-cross::before{\n  content:\"\"; }\n\n.bp3-icon-small-minus::before{\n  content:\"\"; }\n\n.bp3-icon-small-plus::before{\n  content:\"\"; }\n\n.bp3-icon-small-tick::before{\n  content:\"\"; }\n\n.bp3-icon-snowflake::before{\n  content:\"\"; }\n\n.bp3-icon-social-media::before{\n  content:\"\"; }\n\n.bp3-icon-sort::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-asc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-split-columns::before{\n  content:\"\"; }\n\n.bp3-icon-square::before{\n  content:\"\"; }\n\n.bp3-icon-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-star::before{\n  content:\"★\"; }\n\n.bp3-icon-star-empty::before{\n  content:\"☆\"; }\n\n.bp3-icon-step-backward::before{\n  content:\"\"; }\n\n.bp3-icon-step-chart::before{\n  content:\"\"; }\n\n.bp3-icon-step-forward::before{\n  content:\"\"; }\n\n.bp3-icon-stop::before{\n  content:\"\"; }\n\n.bp3-icon-stopwatch::before{\n  content:\"\"; }\n\n.bp3-icon-strikethrough::before{\n  content:\"\"; }\n\n.bp3-icon-style::before{\n  content:\"\"; }\n\n.bp3-icon-swap-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-swap-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-circle::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-cross::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-diamond::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-square::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-down::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-up::before{\n  content:\"\"; }\n\n.bp3-icon-tag::before{\n  content:\"\"; }\n\n.bp3-icon-take-action::before{\n  content:\"\"; }\n\n.bp3-icon-taxi::before{\n  content:\"\"; }\n\n.bp3-icon-text-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-th::before{\n  content:\"\"; }\n\n.bp3-icon-th-derived::before{\n  content:\"\"; }\n\n.bp3-icon-th-disconnect::before{\n  content:\"\"; }\n\n.bp3-icon-th-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-th-list::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-down::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-up::before{\n  content:\"\"; }\n\n.bp3-icon-tick::before{\n  content:\"✓\"; }\n\n.bp3-icon-tick-circle::before{\n  content:\"\"; }\n\n.bp3-icon-time::before{\n  content:\"⏲\"; }\n\n.bp3-icon-timeline-area-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-events::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-line-chart::before{\n  content:\"\"; }\n\n.bp3-icon-tint::before{\n  content:\"\"; }\n\n.bp3-icon-torch::before{\n  content:\"\"; }\n\n.bp3-icon-tractor::before{\n  content:\"\"; }\n\n.bp3-icon-train::before{\n  content:\"\"; }\n\n.bp3-icon-translate::before{\n  content:\"\"; }\n\n.bp3-icon-trash::before{\n  content:\"\"; }\n\n.bp3-icon-tree::before{\n  content:\"\"; }\n\n.bp3-icon-trending-down::before{\n  content:\"\"; }\n\n.bp3-icon-trending-up::before{\n  content:\"\"; }\n\n.bp3-icon-truck::before{\n  content:\"\"; }\n\n.bp3-icon-two-columns::before{\n  content:\"\"; }\n\n.bp3-icon-unarchive::before{\n  content:\"\"; }\n\n.bp3-icon-underline::before{\n  content:\"⎁\"; }\n\n.bp3-icon-undo::before{\n  content:\"⎌\"; }\n\n.bp3-icon-ungroup-objects::before{\n  content:\"\"; }\n\n.bp3-icon-unknown-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-unlock::before{\n  content:\"\"; }\n\n.bp3-icon-unpin::before{\n  content:\"\"; }\n\n.bp3-icon-unresolve::before{\n  content:\"\"; }\n\n.bp3-icon-updated::before{\n  content:\"\"; }\n\n.bp3-icon-upload::before{\n  content:\"\"; }\n\n.bp3-icon-user::before{\n  content:\"\"; }\n\n.bp3-icon-variable::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-video::before{\n  content:\"\"; }\n\n.bp3-icon-volume-down::before{\n  content:\"\"; }\n\n.bp3-icon-volume-off::before{\n  content:\"\"; }\n\n.bp3-icon-volume-up::before{\n  content:\"\"; }\n\n.bp3-icon-walk::before{\n  content:\"\"; }\n\n.bp3-icon-warning-sign::before{\n  content:\"\"; }\n\n.bp3-icon-waterfall-chart::before{\n  content:\"\"; }\n\n.bp3-icon-widget::before{\n  content:\"\"; }\n\n.bp3-icon-widget-button::before{\n  content:\"\"; }\n\n.bp3-icon-widget-footer::before{\n  content:\"\"; }\n\n.bp3-icon-widget-header::before{\n  content:\"\"; }\n\n.bp3-icon-wrench::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-in::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-out::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-to-fit::before{\n  content:\"\"; }\n.bp3-submenu > .bp3-popover-wrapper{\n  display:block; }\n\n.bp3-submenu .bp3-popover-target{\n  display:block; }\n  .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{ }\n\n.bp3-submenu.bp3-popover{\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0 5px; }\n  .bp3-submenu.bp3-popover > .bp3-popover-content{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-submenu.bp3-popover, .bp3-submenu.bp3-popover.bp3-dark{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-dark .bp3-submenu.bp3-popover > .bp3-popover-content, .bp3-submenu.bp3-popover.bp3-dark > .bp3-popover-content{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n.bp3-menu{\n  background:#ffffff;\n  border-radius:3px;\n  color:#182026;\n  list-style:none;\n  margin:0;\n  min-width:180px;\n  padding:5px;\n  text-align:left; }\n\n.bp3-menu-divider{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px; }\n  .bp3-dark .bp3-menu-divider{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-menu-item{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  border-radius:2px;\n  color:inherit;\n  line-height:20px;\n  padding:5px 7px;\n  text-decoration:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-menu-item > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-menu-item > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > *{\n    margin-right:7px; }\n  .bp3-menu-item:empty::before,\n  .bp3-menu-item > :last-child{\n    margin-right:0; }\n  .bp3-menu-item > .bp3-fill{\n    word-break:break-word; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    background-color:rgba(167, 182, 194, 0.3);\n    cursor:pointer;\n    text-decoration:none; }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-dark .bp3-menu-item{\n    color:inherit; }\n    .bp3-dark .bp3-menu-item:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n      background-color:rgba(138, 155, 168, 0.15);\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-disabled{\n      background-color:inherit;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-menu-item.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-primary::before, .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary:active, .bp3-menu-item.bp3-intent-primary:active::before, .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-success::before, .bp3-menu-item.bp3-intent-success::after,\n    .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-menu-item.bp3-intent-success:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success:active, .bp3-menu-item.bp3-intent-success:active::before, .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-warning::before, .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning:active, .bp3-menu-item.bp3-intent-warning:active::before, .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-danger::before, .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger:active, .bp3-menu-item.bp3-intent-danger:active::before, .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    margin-right:7px; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > .bp3-icon{\n    color:#5c7080;\n    margin-top:2px; }\n  .bp3-menu-item .bp3-menu-item-label{\n    color:#5c7080; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    color:inherit; }\n  .bp3-menu-item.bp3-active, .bp3-menu-item:active{\n    background-color:rgba(115, 134, 148, 0.3); }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit !important;\n    color:rgba(92, 112, 128, 0.6) !important;\n    cursor:not-allowed !important;\n    outline:none !important; }\n    .bp3-menu-item.bp3-disabled::before,\n    .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-large .bp3-menu-item{\n    font-size:16px;\n    line-height:22px;\n    padding:9px 7px; }\n    .bp3-large .bp3-menu-item .bp3-icon{\n      margin-top:3px; }\n    .bp3-large .bp3-menu-item::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      margin-right:10px;\n      margin-top:1px; }\n\nbutton.bp3-menu-item{\n  background:none;\n  border:none;\n  text-align:left;\n  width:100%; }\n.bp3-menu-header{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px;\n  cursor:default;\n  padding-left:2px; }\n  .bp3-dark .bp3-menu-header{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n  .bp3-menu-header:first-of-type{\n    border-top:none; }\n  .bp3-menu-header > h6{\n    color:#182026;\n    font-weight:600;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    line-height:17px;\n    margin:0;\n    padding:10px 7px 0 1px; }\n    .bp3-dark .bp3-menu-header > h6{\n      color:#f5f8fa; }\n  .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n  .bp3-large .bp3-menu-header > h6{\n    font-size:18px;\n    padding-bottom:5px;\n    padding-top:15px; }\n  .bp3-large .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n\n.bp3-dark .bp3-menu{\n  background:#30404d;\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-menu-item{ }\n  .bp3-dark .bp3-menu-item.bp3-intent-primary{\n    color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary::before, .bp3-dark .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary:active, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-success{\n    color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success::before, .bp3-dark .bp3-menu-item.bp3-intent-success::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success:active, .bp3-dark .bp3-menu-item.bp3-intent-success:active::before, .bp3-dark .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-warning{\n    color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning::before, .bp3-dark .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning:active, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-danger{\n    color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger::before, .bp3-dark .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger:active, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item::before,\n  .bp3-dark .bp3-menu-item > .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item .bp3-menu-item-label{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item.bp3-active, .bp3-dark .bp3-menu-item:active{\n    background-color:rgba(138, 155, 168, 0.3); }\n  .bp3-dark .bp3-menu-item.bp3-disabled{\n    color:rgba(167, 182, 194, 0.6) !important; }\n    .bp3-dark .bp3-menu-item.bp3-disabled::before,\n    .bp3-dark .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-dark .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(167, 182, 194, 0.6) !important; }\n\n.bp3-dark .bp3-menu-divider,\n.bp3-dark .bp3-menu-header{\n  border-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-dark .bp3-menu-header > h6{\n  color:#f5f8fa; }\n\n.bp3-label .bp3-menu{\n  margin-top:5px; }\n.bp3-navbar{\n  background-color:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  height:50px;\n  padding:0 15px;\n  position:relative;\n  width:100%;\n  z-index:10; }\n  .bp3-navbar.bp3-dark,\n  .bp3-dark .bp3-navbar{\n    background-color:#394b59; }\n  .bp3-navbar.bp3-dark{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-navbar{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-navbar.bp3-fixed-top{\n    left:0;\n    position:fixed;\n    right:0;\n    top:0; }\n\n.bp3-navbar-heading{\n  font-size:16px;\n  margin-right:15px; }\n\n.bp3-navbar-group{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:50px; }\n  .bp3-navbar-group.bp3-align-left{\n    float:left; }\n  .bp3-navbar-group.bp3-align-right{\n    float:right; }\n\n.bp3-navbar-divider{\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  height:20px;\n  margin:0 10px; }\n  .bp3-dark .bp3-navbar-divider{\n    border-left-color:rgba(255, 255, 255, 0.15); }\n.bp3-non-ideal-state{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  height:100%;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  text-align:center;\n  width:100%; }\n  .bp3-non-ideal-state > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-non-ideal-state > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-non-ideal-state::before,\n  .bp3-non-ideal-state > *{\n    margin-bottom:20px; }\n  .bp3-non-ideal-state:empty::before,\n  .bp3-non-ideal-state > :last-child{\n    margin-bottom:0; }\n  .bp3-non-ideal-state > *{\n    max-width:400px; }\n\n.bp3-non-ideal-state-visual{\n  color:rgba(92, 112, 128, 0.6);\n  font-size:60px; }\n  .bp3-dark .bp3-non-ideal-state-visual{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-overflow-list{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:nowrap;\n      flex-wrap:nowrap;\n  min-width:0; }\n\n.bp3-overflow-list-spacer{\n  -ms-flex-negative:1;\n      flex-shrink:1;\n  width:1px; }\n\nbody.bp3-overlay-open{\n  overflow:hidden; }\n\n.bp3-overlay{\n  bottom:0;\n  left:0;\n  position:static;\n  right:0;\n  top:0;\n  z-index:20; }\n  .bp3-overlay:not(.bp3-overlay-open){\n    pointer-events:none; }\n  .bp3-overlay.bp3-overlay-container{\n    overflow:hidden;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-scroll-container{\n    overflow:auto;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-scroll-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-inline{\n    display:inline;\n    overflow:visible; }\n\n.bp3-overlay-content{\n  position:fixed;\n  z-index:20; }\n  .bp3-overlay-inline .bp3-overlay-content,\n  .bp3-overlay-scroll-container .bp3-overlay-content{\n    position:absolute; }\n\n.bp3-overlay-backdrop{\n  bottom:0;\n  left:0;\n  position:fixed;\n  right:0;\n  top:0;\n  opacity:1;\n  background-color:rgba(16, 22, 26, 0.7);\n  overflow:auto;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  z-index:20; }\n  .bp3-overlay-backdrop.bp3-overlay-enter, .bp3-overlay-backdrop.bp3-overlay-appear{\n    opacity:0; }\n  .bp3-overlay-backdrop.bp3-overlay-enter-active, .bp3-overlay-backdrop.bp3-overlay-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop.bp3-overlay-exit{\n    opacity:1; }\n  .bp3-overlay-backdrop.bp3-overlay-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop:focus{\n    outline:none; }\n  .bp3-overlay-inline .bp3-overlay-backdrop{\n    position:absolute; }\n.bp3-panel-stack{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-view{\n    background-color:#30404d; }\n  .bp3-panel-stack-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter, .bp3-panel-stack-push .bp3-panel-stack-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter-active, .bp3-panel-stack-push .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter, .bp3-panel-stack-pop .bp3-panel-stack-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter-active, .bp3-panel-stack-pop .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-panel-stack2{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack2-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack2-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack2-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack2-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack2-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack2-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-view{\n    background-color:#30404d; }\n  .bp3-panel-stack2-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter, .bp3-panel-stack2-push .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter-active, .bp3-panel-stack2-push .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter, .bp3-panel-stack2-pop .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter-active, .bp3-panel-stack2-pop .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-popover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  border-radius:3px;\n  display:inline-block;\n  z-index:20; }\n  .bp3-popover .bp3-popover-arrow{\n    height:30px;\n    position:absolute;\n    width:30px; }\n    .bp3-popover .bp3-popover-arrow::before{\n      height:20px;\n      margin:5px;\n      width:20px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover{\n    margin-bottom:17px;\n    margin-top:-17px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n      bottom:-11px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover{\n    margin-left:17px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n      left:-11px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover{\n    margin-top:17px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n      top:-11px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover{\n    margin-left:-17px;\n    margin-right:17px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n      right:-11px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-popover > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-popover > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n    top:-0.3934px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n    right:-0.3934px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n    left:-0.3934px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n    bottom:-0.3934px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-popover .bp3-popover-content{\n    background:#ffffff;\n    color:inherit; }\n  .bp3-popover .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-popover .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-popover .bp3-popover-arrow-fill{\n    fill:#ffffff; }\n  .bp3-popover-enter > .bp3-popover, .bp3-popover-appear > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3); }\n  .bp3-popover-enter-active > .bp3-popover, .bp3-popover-appear-active > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover-exit > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover .bp3-popover-content{\n    border-radius:3px;\n    position:relative; }\n  .bp3-popover.bp3-popover-content-sizing .bp3-popover-content{\n    max-width:350px;\n    padding:20px; }\n  .bp3-popover-target + .bp3-overlay .bp3-popover.bp3-popover-content-sizing{\n    width:350px; }\n  .bp3-popover.bp3-minimal{\n    margin:0 !important; }\n    .bp3-popover.bp3-minimal .bp3-popover-arrow{\n      display:none; }\n    .bp3-popover.bp3-minimal.bp3-popover{\n      -webkit-transform:scale(1);\n              transform:scale(1); }\n      .bp3-popover-enter > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-enter-active > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n      .bp3-popover-exit > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-exit-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover.bp3-dark,\n  .bp3-dark .bp3-popover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-popover .bp3-popover-content{\n      background:#30404d;\n      color:inherit; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-popover .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-fill{\n      fill:#30404d; }\n\n.bp3-popover-arrow::before{\n  border-radius:2px;\n  content:\"\";\n  display:block;\n  position:absolute;\n  -webkit-transform:rotate(45deg);\n          transform:rotate(45deg); }\n\n.bp3-tether-pinned .bp3-popover-arrow{\n  display:none; }\n\n.bp3-popover-backdrop{\n  background:rgba(255, 255, 255, 0); }\n\n.bp3-transition-container{\n  opacity:1;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  z-index:20; }\n  .bp3-transition-container.bp3-popover-enter, .bp3-transition-container.bp3-popover-appear{\n    opacity:0; }\n  .bp3-transition-container.bp3-popover-enter-active, .bp3-transition-container.bp3-popover-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container.bp3-popover-exit{\n    opacity:1; }\n  .bp3-transition-container.bp3-popover-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container:focus{\n    outline:none; }\n  .bp3-transition-container.bp3-popover-leave .bp3-popover-content{\n    pointer-events:none; }\n  .bp3-transition-container[data-x-out-of-boundaries]{\n    display:none; }\n\nspan.bp3-popover-target{\n  display:inline-block; }\n\n.bp3-popover-wrapper.bp3-fill{\n  width:100%; }\n\n.bp3-portal{\n  left:0;\n  position:absolute;\n  right:0;\n  top:0; }\n@-webkit-keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n@keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n\n.bp3-progress-bar{\n  background:rgba(92, 112, 128, 0.2);\n  border-radius:40px;\n  display:block;\n  height:8px;\n  overflow:hidden;\n  position:relative;\n  width:100%; }\n  .bp3-progress-bar .bp3-progress-meter{\n    background:linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%);\n    background-color:rgba(92, 112, 128, 0.8);\n    background-size:30px 30px;\n    border-radius:40px;\n    height:100%;\n    position:absolute;\n    -webkit-transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:100%; }\n  .bp3-progress-bar:not(.bp3-no-animation):not(.bp3-no-stripes) .bp3-progress-meter{\n    animation:linear-progress-bar-stripes 300ms linear infinite reverse; }\n  .bp3-progress-bar.bp3-no-stripes .bp3-progress-meter{\n    background-image:none; }\n\n.bp3-dark .bp3-progress-bar{\n  background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-progress-bar .bp3-progress-meter{\n    background-color:#8a9ba8; }\n\n.bp3-progress-bar.bp3-intent-primary .bp3-progress-meter{\n  background-color:#137cbd; }\n\n.bp3-progress-bar.bp3-intent-success .bp3-progress-meter{\n  background-color:#0f9960; }\n\n.bp3-progress-bar.bp3-intent-warning .bp3-progress-meter{\n  background-color:#d9822b; }\n\n.bp3-progress-bar.bp3-intent-danger .bp3-progress-meter{\n  background-color:#db3737; }\n@-webkit-keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n@keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n.bp3-skeleton{\n  -webkit-animation:1000ms linear infinite alternate skeleton-glow;\n          animation:1000ms linear infinite alternate skeleton-glow;\n  background:rgba(206, 217, 224, 0.2);\n  background-clip:padding-box !important;\n  border-color:rgba(206, 217, 224, 0.2) !important;\n  border-radius:2px;\n  -webkit-box-shadow:none !important;\n          box-shadow:none !important;\n  color:transparent !important;\n  cursor:default;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-skeleton::before, .bp3-skeleton::after,\n  .bp3-skeleton *{\n    visibility:hidden !important; }\n.bp3-slider{\n  height:40px;\n  min-width:150px;\n  width:100%;\n  cursor:default;\n  outline:none;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-slider:hover{\n    cursor:pointer; }\n  .bp3-slider:active{\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-slider.bp3-disabled{\n    cursor:not-allowed;\n    opacity:0.5; }\n  .bp3-slider.bp3-slider-unlabeled{\n    height:16px; }\n\n.bp3-slider-track,\n.bp3-slider-progress{\n  height:6px;\n  left:0;\n  right:0;\n  top:5px;\n  position:absolute; }\n\n.bp3-slider-track{\n  border-radius:3px;\n  overflow:hidden; }\n\n.bp3-slider-progress{\n  background:rgba(92, 112, 128, 0.2); }\n  .bp3-dark .bp3-slider-progress{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-slider-progress.bp3-intent-primary{\n    background-color:#137cbd; }\n  .bp3-slider-progress.bp3-intent-success{\n    background-color:#0f9960; }\n  .bp3-slider-progress.bp3-intent-warning{\n    background-color:#d9822b; }\n  .bp3-slider-progress.bp3-intent-danger{\n    background-color:#db3737; }\n\n.bp3-slider-handle{\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n  cursor:pointer;\n  height:16px;\n  left:0;\n  position:absolute;\n  top:0;\n  width:16px; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-slider-handle:active, .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-slider-handle:disabled, .bp3-slider-handle.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-slider-handle:disabled.bp3-active, .bp3-slider-handle:disabled.bp3-active:hover, .bp3-slider-handle.bp3-disabled.bp3-active, .bp3-slider-handle.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n  .bp3-slider-handle:focus{\n    z-index:1; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n    cursor:-webkit-grab;\n    cursor:grab;\n    z-index:2; }\n  .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-disabled .bp3-slider-handle{\n    background:#bfccd6;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    pointer-events:none; }\n  .bp3-dark .bp3-slider-handle{\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover, .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-slider-handle:disabled, .bp3-dark .bp3-slider-handle.bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-slider-handle:disabled.bp3-active, .bp3-dark .bp3-slider-handle.bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-slider-handle .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-slider-handle, .bp3-dark .bp3-slider-handle:hover{\n      background-color:#394b59; }\n    .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#293742; }\n  .bp3-dark .bp3-disabled .bp3-slider-handle{\n    background:#5c7080;\n    border-color:#5c7080;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-slider-handle .bp3-slider-label{\n    background:#394b59;\n    border-radius:3px;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n    color:#f5f8fa;\n    margin-left:8px; }\n    .bp3-dark .bp3-slider-handle .bp3-slider-label{\n      background:#e1e8ed;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n      color:#394b59; }\n    .bp3-disabled .bp3-slider-handle .bp3-slider-label{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-slider-handle.bp3-start, .bp3-slider-handle.bp3-end{\n    width:8px; }\n  .bp3-slider-handle.bp3-start{\n    border-bottom-right-radius:0;\n    border-top-right-radius:0; }\n  .bp3-slider-handle.bp3-end{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0;\n    margin-left:8px; }\n    .bp3-slider-handle.bp3-end .bp3-slider-label{\n      margin-left:0; }\n\n.bp3-slider-label{\n  -webkit-transform:translate(-50%, 20px);\n          transform:translate(-50%, 20px);\n  display:inline-block;\n  font-size:12px;\n  line-height:1;\n  padding:2px 5px;\n  position:absolute;\n  vertical-align:top; }\n\n.bp3-slider.bp3-vertical{\n  height:150px;\n  min-width:40px;\n  width:40px; }\n  .bp3-slider.bp3-vertical .bp3-slider-track,\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    bottom:0;\n    height:auto;\n    left:5px;\n    top:0;\n    width:6px; }\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    top:auto; }\n  .bp3-slider.bp3-vertical .bp3-slider-label{\n    -webkit-transform:translate(20px, 50%);\n            transform:translate(20px, 50%); }\n  .bp3-slider.bp3-vertical .bp3-slider-handle{\n    top:auto; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle .bp3-slider-label{\n      margin-left:0;\n      margin-top:-8px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end, .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      height:8px;\n      margin-left:0;\n      width:16px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      border-bottom-right-radius:3px;\n      border-top-left-radius:0; }\n      .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start .bp3-slider-label{\n        -webkit-transform:translate(20px);\n                transform:translate(20px); }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end{\n      border-bottom-left-radius:0;\n      border-bottom-right-radius:0;\n      border-top-left-radius:3px;\n      margin-bottom:8px; }\n\n@-webkit-keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n@keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n.bp3-spinner{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  overflow:visible;\n  vertical-align:middle; }\n  .bp3-spinner svg{\n    display:block; }\n  .bp3-spinner path{\n    fill-opacity:0; }\n  .bp3-spinner .bp3-spinner-head{\n    stroke:rgba(92, 112, 128, 0.8);\n    stroke-linecap:round;\n    -webkit-transform-origin:center;\n            transform-origin:center;\n    -webkit-transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-spinner .bp3-spinner-track{\n    stroke:rgba(92, 112, 128, 0.2); }\n\n.bp3-spinner-animation{\n  -webkit-animation:pt-spinner-animation 500ms linear infinite;\n          animation:pt-spinner-animation 500ms linear infinite; }\n  .bp3-no-spin > .bp3-spinner-animation{\n    -webkit-animation:none;\n            animation:none; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-head{\n  stroke:#8a9ba8; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-track{\n  stroke:rgba(16, 22, 26, 0.5); }\n\n.bp3-spinner.bp3-intent-primary .bp3-spinner-head{\n  stroke:#137cbd; }\n\n.bp3-spinner.bp3-intent-success .bp3-spinner-head{\n  stroke:#0f9960; }\n\n.bp3-spinner.bp3-intent-warning .bp3-spinner-head{\n  stroke:#d9822b; }\n\n.bp3-spinner.bp3-intent-danger .bp3-spinner-head{\n  stroke:#db3737; }\n.bp3-tabs.bp3-vertical{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-list{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab{\n      border-radius:3px;\n      padding:0 10px;\n      width:100%; }\n      .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab[aria-selected=\"true\"]{\n        background-color:rgba(19, 124, 189, 0.2);\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n      background-color:rgba(19, 124, 189, 0.2);\n      border-radius:3px;\n      bottom:0;\n      height:auto;\n      left:0;\n      right:0;\n      top:0; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-panel{\n    margin-top:0;\n    padding-left:20px; }\n\n.bp3-tab-list{\n  -webkit-box-align:end;\n      -ms-flex-align:end;\n          align-items:flex-end;\n  border:none;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  list-style:none;\n  margin:0;\n  padding:0;\n  position:relative; }\n  .bp3-tab-list > *:not(:last-child){\n    margin-right:20px; }\n\n.bp3-tab{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:#182026;\n  cursor:pointer;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  font-size:14px;\n  line-height:30px;\n  max-width:100%;\n  position:relative;\n  vertical-align:top; }\n  .bp3-tab a{\n    color:inherit;\n    display:block;\n    text-decoration:none; }\n  .bp3-tab-indicator-wrapper ~ .bp3-tab{\n    background-color:transparent !important;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important; }\n  .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-tab[aria-selected=\"true\"]{\n    border-radius:0;\n    -webkit-box-shadow:inset 0 -3px 0 #106ba3;\n            box-shadow:inset 0 -3px 0 #106ba3; }\n  .bp3-tab[aria-selected=\"true\"], .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#106ba3; }\n  .bp3-tab:focus{\n    -moz-outline-radius:0; }\n  .bp3-large > .bp3-tab{\n    font-size:16px;\n    line-height:40px; }\n\n.bp3-tab-panel{\n  margin-top:20px; }\n  .bp3-tab-panel[aria-hidden=\"true\"]{\n    display:none; }\n\n.bp3-tab-indicator-wrapper{\n  left:0;\n  pointer-events:none;\n  position:absolute;\n  top:0;\n  -webkit-transform:translateX(0), translateY(0);\n          transform:translateX(0), translateY(0);\n  -webkit-transition:height, width, -webkit-transform;\n  transition:height, width, -webkit-transform;\n  transition:height, transform, width;\n  transition:height, transform, width, -webkit-transform;\n  -webkit-transition-duration:200ms;\n          transition-duration:200ms;\n  -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n          transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n    background-color:#106ba3;\n    bottom:0;\n    height:3px;\n    left:0;\n    position:absolute;\n    right:0; }\n  .bp3-tab-indicator-wrapper.bp3-no-animation{\n    -webkit-transition:none;\n    transition:none; }\n\n.bp3-dark .bp3-tab{\n  color:#f5f8fa; }\n  .bp3-dark .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"]{\n    -webkit-box-shadow:inset 0 -3px 0 #48aff0;\n            box-shadow:inset 0 -3px 0 #48aff0; }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"], .bp3-dark .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#48aff0; }\n\n.bp3-dark .bp3-tab-indicator{\n  background-color:#48aff0; }\n\n.bp3-flex-expander{\n  -webkit-box-flex:1;\n      -ms-flex:1 1;\n          flex:1 1; }\n.bp3-tag{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#5c7080;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:#f5f8fa;\n  font-size:12px;\n  line-height:16px;\n  max-width:100%;\n  min-height:20px;\n  min-width:20px;\n  padding:2px 6px;\n  position:relative; }\n  .bp3-tag.bp3-interactive{\n    cursor:pointer; }\n    .bp3-tag.bp3-interactive:hover{\n      background-color:rgba(92, 112, 128, 0.85); }\n    .bp3-tag.bp3-interactive.bp3-active, .bp3-tag.bp3-interactive:active{\n      background-color:rgba(92, 112, 128, 0.7); }\n  .bp3-tag > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag::before,\n  .bp3-tag > *{\n    margin-right:4px; }\n  .bp3-tag:empty::before,\n  .bp3-tag > :last-child{\n    margin-right:0; }\n  .bp3-tag:focus{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:0;\n    -moz-outline-radius:6px; }\n  .bp3-tag.bp3-round{\n    border-radius:30px;\n    padding-left:8px;\n    padding-right:8px; }\n  .bp3-dark .bp3-tag{\n    background-color:#bfccd6;\n    color:#182026; }\n    .bp3-dark .bp3-tag.bp3-interactive{\n      cursor:pointer; }\n      .bp3-dark .bp3-tag.bp3-interactive:hover{\n        background-color:rgba(191, 204, 214, 0.85); }\n      .bp3-dark .bp3-tag.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-interactive:active{\n        background-color:rgba(191, 204, 214, 0.7); }\n    .bp3-dark .bp3-tag > .bp3-icon, .bp3-dark .bp3-tag .bp3-icon-standard, .bp3-dark .bp3-tag .bp3-icon-large{\n      fill:currentColor; }\n  .bp3-tag > .bp3-icon, .bp3-tag .bp3-icon-standard, .bp3-tag .bp3-icon-large{\n    fill:#ffffff; }\n  .bp3-tag.bp3-large,\n  .bp3-large .bp3-tag{\n    font-size:14px;\n    line-height:20px;\n    min-height:30px;\n    min-width:30px;\n    padding:5px 10px; }\n    .bp3-tag.bp3-large::before,\n    .bp3-tag.bp3-large > *,\n    .bp3-large .bp3-tag::before,\n    .bp3-large .bp3-tag > *{\n      margin-right:7px; }\n    .bp3-tag.bp3-large:empty::before,\n    .bp3-tag.bp3-large > :last-child,\n    .bp3-large .bp3-tag:empty::before,\n    .bp3-large .bp3-tag > :last-child{\n      margin-right:0; }\n    .bp3-tag.bp3-large.bp3-round,\n    .bp3-large .bp3-tag.bp3-round{\n      padding-left:12px;\n      padding-right:12px; }\n  .bp3-tag.bp3-intent-primary{\n    background:#137cbd;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.85); }\n      .bp3-tag.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.7); }\n  .bp3-tag.bp3-intent-success{\n    background:#0f9960;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.85); }\n      .bp3-tag.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.7); }\n  .bp3-tag.bp3-intent-warning{\n    background:#d9822b;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.85); }\n      .bp3-tag.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.7); }\n  .bp3-tag.bp3-intent-danger{\n    background:#db3737;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.85); }\n      .bp3-tag.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.7); }\n  .bp3-tag.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-tag.bp3-minimal > .bp3-icon, .bp3-tag.bp3-minimal .bp3-icon-standard, .bp3-tag.bp3-minimal .bp3-icon-large{\n    fill:#5c7080; }\n  .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n    background-color:rgba(138, 155, 168, 0.2);\n    color:#182026; }\n    .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n        background-color:rgba(92, 112, 128, 0.3); }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n        background-color:rgba(92, 112, 128, 0.4); }\n    .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n      color:#f5f8fa; }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n          background-color:rgba(191, 204, 214, 0.3); }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n          background-color:rgba(191, 204, 214, 0.4); }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) > .bp3-icon, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n        fill:#a7b6c2; }\n  .bp3-tag.bp3-minimal.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15);\n    color:#106ba3; }\n    .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-primary > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-large{\n      fill:#137cbd; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25);\n      color:#48aff0; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n          background-color:rgba(19, 124, 189, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n          background-color:rgba(19, 124, 189, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15);\n    color:#0d8050; }\n    .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-success > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-large{\n      fill:#0f9960; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25);\n      color:#3dcc91; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n          background-color:rgba(15, 153, 96, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n          background-color:rgba(15, 153, 96, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15);\n    color:#bf7326; }\n    .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-warning > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-large{\n      fill:#d9822b; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25);\n      color:#ffb366; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n          background-color:rgba(217, 130, 43, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n          background-color:rgba(217, 130, 43, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15);\n    color:#c23030; }\n    .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-danger > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-large{\n      fill:#db3737; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25);\n      color:#ff7373; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n          background-color:rgba(219, 55, 55, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n          background-color:rgba(219, 55, 55, 0.45); }\n\n.bp3-tag-remove{\n  background:none;\n  border:none;\n  color:inherit;\n  cursor:pointer;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin-bottom:-2px;\n  margin-right:-6px !important;\n  margin-top:-2px;\n  opacity:0.5;\n  padding:2px;\n  padding-left:0; }\n  .bp3-tag-remove:hover{\n    background:none;\n    opacity:0.8;\n    text-decoration:none; }\n  .bp3-tag-remove:active{\n    opacity:1; }\n  .bp3-tag-remove:empty::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    content:\"\"; }\n  .bp3-large .bp3-tag-remove{\n    margin-right:-10px !important;\n    padding:0 5px 0 0; }\n    .bp3-large .bp3-tag-remove:empty::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1; }\n.bp3-tag-input{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  cursor:text;\n  height:auto;\n  line-height:inherit;\n  min-height:30px;\n  padding-left:5px;\n  padding-right:0; }\n  .bp3-tag-input > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag-input > .bp3-tag-input-values{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag-input .bp3-tag-input-icon{\n    color:#5c7080;\n    margin-left:2px;\n    margin-right:7px;\n    margin-top:7px; }\n  .bp3-tag-input .bp3-tag-input-values{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row;\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    -ms-flex-item-align:stretch;\n        align-self:stretch;\n    -ms-flex-wrap:wrap;\n        flex-wrap:wrap;\n    margin-right:7px;\n    margin-top:5px;\n    min-width:0; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      -webkit-box-flex:0;\n          -ms-flex-positive:0;\n              flex-grow:0;\n      -ms-flex-negative:0;\n          flex-shrink:0; }\n    .bp3-tag-input .bp3-tag-input-values > .bp3-fill{\n      -webkit-box-flex:1;\n          -ms-flex-positive:1;\n              flex-grow:1;\n      -ms-flex-negative:1;\n          flex-shrink:1; }\n    .bp3-tag-input .bp3-tag-input-values::before,\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-right:5px; }\n    .bp3-tag-input .bp3-tag-input-values:empty::before,\n    .bp3-tag-input .bp3-tag-input-values > :last-child{\n      margin-right:0; }\n    .bp3-tag-input .bp3-tag-input-values:first-child .bp3-input-ghost:first-child{\n      padding-left:5px; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-bottom:5px; }\n  .bp3-tag-input .bp3-tag{\n    overflow-wrap:break-word; }\n    .bp3-tag-input .bp3-tag.bp3-active{\n      outline:rgba(19, 124, 189, 0.6) auto 2px;\n      outline-offset:0;\n      -moz-outline-radius:6px; }\n  .bp3-tag-input .bp3-input-ghost{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:20px;\n    width:80px; }\n    .bp3-tag-input .bp3-input-ghost:disabled, .bp3-tag-input .bp3-input-ghost.bp3-disabled{\n      cursor:not-allowed; }\n  .bp3-tag-input .bp3-button,\n  .bp3-tag-input .bp3-spinner{\n    margin:3px;\n    margin-left:0; }\n  .bp3-tag-input .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-tag-input.bp3-large{\n    height:auto;\n    min-height:40px; }\n    .bp3-tag-input.bp3-large::before,\n    .bp3-tag-input.bp3-large > *{\n      margin-right:10px; }\n    .bp3-tag-input.bp3-large:empty::before,\n    .bp3-tag-input.bp3-large > :last-child{\n      margin-right:0; }\n    .bp3-tag-input.bp3-large .bp3-tag-input-icon{\n      margin-left:5px;\n      margin-top:10px; }\n    .bp3-tag-input.bp3-large .bp3-input-ghost{\n      line-height:30px; }\n    .bp3-tag-input.bp3-large .bp3-button{\n      min-height:30px;\n      min-width:30px;\n      padding:5px 10px;\n      margin:5px;\n      margin-left:0; }\n    .bp3-tag-input.bp3-large .bp3-spinner{\n      margin:8px;\n      margin-left:0; }\n  .bp3-tag-input.bp3-active{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-tag-input .bp3-tag-input-icon, .bp3-tag-input.bp3-dark .bp3-tag-input-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-tag-input .bp3-input-ghost, .bp3-tag-input.bp3-dark .bp3-input-ghost{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-webkit-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-moz-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost:-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tag-input.bp3-active, .bp3-tag-input.bp3-dark.bp3-active{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-primary, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-success, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-warning, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-danger, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-input-ghost{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0; }\n  .bp3-input-ghost::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:focus{\n    outline:none !important; }\n.bp3-toast{\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:20px 0 0;\n  max-width:500px;\n  min-width:300px;\n  pointer-events:all;\n  position:relative !important; }\n  .bp3-toast.bp3-toast-enter, .bp3-toast.bp3-toast-appear{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active, .bp3-toast.bp3-toast-appear-active{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-enter ~ .bp3-toast, .bp3-toast.bp3-toast-appear ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active ~ .bp3-toast, .bp3-toast.bp3-toast-appear-active ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-exit{\n    opacity:1;\n    -webkit-filter:blur(0);\n            filter:blur(0); }\n  .bp3-toast.bp3-toast-exit-active{\n    opacity:0;\n    -webkit-filter:blur(10px);\n            filter:blur(10px);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:opacity, filter;\n    transition-property:opacity, filter, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast.bp3-toast-exit ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0); }\n  .bp3-toast.bp3-toast-exit-active ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px);\n    -webkit-transition-delay:50ms;\n            transition-delay:50ms;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast .bp3-button-group{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    padding:5px;\n    padding-left:0; }\n  .bp3-toast > .bp3-icon{\n    color:#5c7080;\n    margin:12px;\n    margin-right:0; }\n  .bp3-toast.bp3-dark,\n  .bp3-dark .bp3-toast{\n    background-color:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-toast.bp3-dark > .bp3-icon,\n    .bp3-dark .bp3-toast > .bp3-icon{\n      color:#a7b6c2; }\n  .bp3-toast[class*=\"bp3-intent-\"] a{\n    color:rgba(255, 255, 255, 0.7); }\n    .bp3-toast[class*=\"bp3-intent-\"] a:hover{\n      color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] > .bp3-icon{\n    color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::before,\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button .bp3-icon, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    color:rgba(255, 255, 255, 0.7) !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:focus{\n    outline-color:rgba(255, 255, 255, 0.5); }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:hover{\n    background-color:rgba(255, 255, 255, 0.15) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    background-color:rgba(255, 255, 255, 0.3) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::after{\n    background:rgba(255, 255, 255, 0.3) !important; }\n  .bp3-toast.bp3-intent-primary{\n    background-color:#137cbd;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-success{\n    background-color:#0f9960;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-warning{\n    background-color:#d9822b;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-danger{\n    background-color:#db3737;\n    color:#ffffff; }\n\n.bp3-toast-message{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  padding:11px;\n  word-break:break-word; }\n\n.bp3-toast-container{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box !important;\n  display:-ms-flexbox !important;\n  display:flex !important;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  left:0;\n  overflow:hidden;\n  padding:0 20px 20px;\n  pointer-events:none;\n  right:0;\n  z-index:40; }\n  .bp3-toast-container.bp3-toast-container-in-portal{\n    position:fixed; }\n  .bp3-toast-container.bp3-toast-container-inline{\n    position:absolute; }\n  .bp3-toast-container.bp3-toast-container-top{\n    top:0; }\n  .bp3-toast-container.bp3-toast-container-bottom{\n    bottom:0;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:reverse;\n        -ms-flex-direction:column-reverse;\n            flex-direction:column-reverse;\n    top:auto; }\n  .bp3-toast-container.bp3-toast-container-left{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start; }\n  .bp3-toast-container.bp3-toast-container-right{\n    -webkit-box-align:end;\n        -ms-flex-align:end;\n            align-items:flex-end; }\n\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active) ~ .bp3-toast, .bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active) ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-exit-active ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-leave-active ~ .bp3-toast{\n  -webkit-transform:translateY(60px);\n          transform:translateY(60px); }\n.bp3-tooltip{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1); }\n  .bp3-tooltip .bp3-popover-arrow{\n    height:22px;\n    position:absolute;\n    width:22px; }\n    .bp3-tooltip .bp3-popover-arrow::before{\n      height:14px;\n      margin:4px;\n      width:14px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip{\n    margin-bottom:11px;\n    margin-top:-11px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n      bottom:-8px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip{\n    margin-left:11px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n      left:-8px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip{\n    margin-top:11px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n      top:-8px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip{\n    margin-left:-11px;\n    margin-right:11px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n      right:-8px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-tooltip > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-tooltip > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n    top:-0.22183px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n    right:-0.22183px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n    left:-0.22183px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n    bottom:-0.22183px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-tooltip .bp3-popover-content{\n    background:#394b59;\n    color:#f5f8fa; }\n  .bp3-tooltip .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-tooltip .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-tooltip .bp3-popover-arrow-fill{\n    fill:#394b59; }\n  .bp3-popover-enter > .bp3-tooltip, .bp3-popover-appear > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8); }\n  .bp3-popover-enter-active > .bp3-tooltip, .bp3-popover-appear-active > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover-exit > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tooltip .bp3-popover-content{\n    padding:10px 12px; }\n  .bp3-tooltip.bp3-dark,\n  .bp3-dark .bp3-tooltip{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-tooltip .bp3-popover-content{\n      background:#e1e8ed;\n      color:#394b59; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-fill{\n      fill:#e1e8ed; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-content{\n    background:#137cbd;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-arrow-fill{\n    fill:#137cbd; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-content{\n    background:#0f9960;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-arrow-fill{\n    fill:#0f9960; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-content{\n    background:#d9822b;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-arrow-fill{\n    fill:#d9822b; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-content{\n    background:#db3737;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-arrow-fill{\n    fill:#db3737; }\n\n.bp3-tooltip-indicator{\n  border-bottom:dotted 1px;\n  cursor:help; }\n.bp3-tree .bp3-icon, .bp3-tree .bp3-icon-standard, .bp3-tree .bp3-icon-large{\n  color:#5c7080; }\n  .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-tree .bp3-icon.bp3-intent-success, .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-tree-node-list{\n  list-style:none;\n  margin:0;\n  padding-left:0; }\n\n.bp3-tree-root{\n  background-color:transparent;\n  cursor:default;\n  padding-left:0;\n  position:relative; }\n\n.bp3-tree-node-content-0{\n  padding-left:0px; }\n\n.bp3-tree-node-content-1{\n  padding-left:23px; }\n\n.bp3-tree-node-content-2{\n  padding-left:46px; }\n\n.bp3-tree-node-content-3{\n  padding-left:69px; }\n\n.bp3-tree-node-content-4{\n  padding-left:92px; }\n\n.bp3-tree-node-content-5{\n  padding-left:115px; }\n\n.bp3-tree-node-content-6{\n  padding-left:138px; }\n\n.bp3-tree-node-content-7{\n  padding-left:161px; }\n\n.bp3-tree-node-content-8{\n  padding-left:184px; }\n\n.bp3-tree-node-content-9{\n  padding-left:207px; }\n\n.bp3-tree-node-content-10{\n  padding-left:230px; }\n\n.bp3-tree-node-content-11{\n  padding-left:253px; }\n\n.bp3-tree-node-content-12{\n  padding-left:276px; }\n\n.bp3-tree-node-content-13{\n  padding-left:299px; }\n\n.bp3-tree-node-content-14{\n  padding-left:322px; }\n\n.bp3-tree-node-content-15{\n  padding-left:345px; }\n\n.bp3-tree-node-content-16{\n  padding-left:368px; }\n\n.bp3-tree-node-content-17{\n  padding-left:391px; }\n\n.bp3-tree-node-content-18{\n  padding-left:414px; }\n\n.bp3-tree-node-content-19{\n  padding-left:437px; }\n\n.bp3-tree-node-content-20{\n  padding-left:460px; }\n\n.bp3-tree-node-content{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:30px;\n  padding-right:5px;\n  width:100%; }\n  .bp3-tree-node-content:hover{\n    background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-tree-node-caret,\n.bp3-tree-node-caret-none{\n  min-width:30px; }\n\n.bp3-tree-node-caret{\n  color:#5c7080;\n  cursor:pointer;\n  padding:7px;\n  -webkit-transform:rotate(0deg);\n          transform:rotate(0deg);\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tree-node-caret:hover{\n    color:#182026; }\n  .bp3-dark .bp3-tree-node-caret{\n    color:#a7b6c2; }\n    .bp3-dark .bp3-tree-node-caret:hover{\n      color:#f5f8fa; }\n  .bp3-tree-node-caret.bp3-tree-node-caret-open{\n    -webkit-transform:rotate(90deg);\n            transform:rotate(90deg); }\n  .bp3-tree-node-caret.bp3-icon-standard::before{\n    content:\"\"; }\n\n.bp3-tree-node-icon{\n  margin-right:7px;\n  position:relative; }\n\n.bp3-tree-node-label{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-label span{\n    display:inline; }\n\n.bp3-tree-node-secondary-label{\n  padding:0 5px;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-secondary-label .bp3-popover-wrapper,\n  .bp3-tree-node-secondary-label .bp3-popover-target{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-content{\n  background-color:inherit;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-caret,\n.bp3-tree-node.bp3-disabled .bp3-tree-node-icon{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content,\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-standard, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-large{\n    color:#ffffff; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret::before{\n    color:rgba(255, 255, 255, 0.7); }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret:hover::before{\n    color:#ffffff; }\n\n.bp3-dark .bp3-tree-node-content:hover{\n  background-color:rgba(92, 112, 128, 0.3); }\n\n.bp3-dark .bp3-tree .bp3-icon, .bp3-dark .bp3-tree .bp3-icon-standard, .bp3-dark .bp3-tree .bp3-icon-large{\n  color:#a7b6c2; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-dark .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n.bp3-omnibar{\n  -webkit-filter:blur(0);\n          filter:blur(0);\n  opacity:1;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  left:calc(50% - 250px);\n  top:20vh;\n  width:500px;\n  z-index:21; }\n  .bp3-omnibar.bp3-overlay-enter, .bp3-omnibar.bp3-overlay-appear{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2; }\n  .bp3-omnibar.bp3-overlay-enter-active, .bp3-omnibar.bp3-overlay-appear-active{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar.bp3-overlay-exit{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1; }\n  .bp3-omnibar.bp3-overlay-exit-active{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar .bp3-input{\n    background-color:transparent;\n    border-radius:0; }\n    .bp3-omnibar .bp3-input, .bp3-omnibar .bp3-input:focus{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-omnibar .bp3-menu{\n    background-color:transparent;\n    border-radius:0;\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n    max-height:calc(60vh - 40px);\n    overflow:auto; }\n    .bp3-omnibar .bp3-menu:empty{\n      display:none; }\n  .bp3-dark .bp3-omnibar, .bp3-omnibar.bp3-dark{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-omnibar-overlay .bp3-overlay-backdrop{\n  background-color:rgba(16, 22, 26, 0.2); }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n\n.bp3-multi-select{\n  min-width:150px; }\n\n.bp3-multi-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto; }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* This file was auto-generated by ensureUiComponents() in @jupyterlab/buildutils */\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n/* Icons urls */\n\n:root {\n  --jp-icon-add: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDEzaC02djZoLTJ2LTZINXYtMmg2VjVoMnY2aDZ2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-bug: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0yMCA4aC0yLjgxYy0uNDUtLjc4LTEuMDctMS40NS0xLjgyLTEuOTZMMTcgNC40MSAxNS41OSAzbC0yLjE3IDIuMTdDMTIuOTYgNS4wNiAxMi40OSA1IDEyIDVjLS40OSAwLS45Ni4wNi0xLjQxLjE3TDguNDEgMyA3IDQuNDFsMS42MiAxLjYzQzcuODggNi41NSA3LjI2IDcuMjIgNi44MSA4SDR2MmgyLjA5Yy0uMDUuMzMtLjA5LjY2LS4wOSAxdjFINHYyaDJ2MWMwIC4zNC4wNC42Ny4wOSAxSDR2MmgyLjgxYzEuMDQgMS43OSAyLjk3IDMgNS4xOSAzczQuMTUtMS4yMSA1LjE5LTNIMjB2LTJoLTIuMDljLjA1LS4zMy4wOS0uNjYuMDktMXYtMWgydi0yaC0ydi0xYzAtLjM0LS4wNC0uNjctLjA5LTFIMjBWOHptLTYgOGgtNHYtMmg0djJ6bTAtNGgtNHYtMmg0djJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-build: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE0LjkgMTcuNDVDMTYuMjUgMTcuNDUgMTcuMzUgMTYuMzUgMTcuMzUgMTVDMTcuMzUgMTMuNjUgMTYuMjUgMTIuNTUgMTQuOSAxMi41NUMxMy41NCAxMi41NSAxMi40NSAxMy42NSAxMi40NSAxNUMxMi40NSAxNi4zNSAxMy41NCAxNy40NSAxNC45IDE3LjQ1Wk0yMC4xIDE1LjY4TDIxLjU4IDE2Ljg0QzIxLjcxIDE2Ljk1IDIxLjc1IDE3LjEzIDIxLjY2IDE3LjI5TDIwLjI2IDE5LjcxQzIwLjE3IDE5Ljg2IDIwIDE5LjkyIDE5LjgzIDE5Ljg2TDE4LjA5IDE5LjE2QzE3LjczIDE5LjQ0IDE3LjMzIDE5LjY3IDE2LjkxIDE5Ljg1TDE2LjY0IDIxLjdDMTYuNjIgMjEuODcgMTYuNDcgMjIgMTYuMyAyMkgxMy41QzEzLjMyIDIyIDEzLjE4IDIxLjg3IDEzLjE1IDIxLjdMMTIuODkgMTkuODVDMTIuNDYgMTkuNjcgMTIuMDcgMTkuNDQgMTEuNzEgMTkuMTZMOS45NjAwMiAxOS44NkM5LjgxMDAyIDE5LjkyIDkuNjIwMDIgMTkuODYgOS41NDAwMiAxOS43MUw4LjE0MDAyIDE3LjI5QzguMDUwMDIgMTcuMTMgOC4wOTAwMiAxNi45NSA4LjIyMDAyIDE2Ljg0TDkuNzAwMDIgMTUuNjhMOS42NTAwMSAxNUw5LjcwMDAyIDE0LjMxTDguMjIwMDIgMTMuMTZDOC4wOTAwMiAxMy4wNSA4LjA1MDAyIDEyLjg2IDguMTQwMDIgMTIuNzFMOS41NDAwMiAxMC4yOUM5LjYyMDAyIDEwLjEzIDkuODEwMDIgMTAuMDcgOS45NjAwMiAxMC4xM0wxMS43MSAxMC44NEMxMi4wNyAxMC41NiAxMi40NiAxMC4zMiAxMi44OSAxMC4xNUwxMy4xNSA4LjI4OTk4QzEzLjE4IDguMTI5OTggMTMuMzIgNy45OTk5OCAxMy41IDcuOTk5OThIMTYuM0MxNi40NyA3Ljk5OTk4IDE2LjYyIDguMTI5OTggMTYuNjQgOC4yODk5OEwxNi45MSAxMC4xNUMxNy4zMyAxMC4zMiAxNy43MyAxMC41NiAxOC4wOSAxMC44NEwxOS44MyAxMC4xM0MyMCAxMC4wNyAyMC4xNyAxMC4xMyAyMC4yNiAxMC4yOUwyMS42NiAxMi43MUMyMS43NSAxMi44NiAyMS43MSAxMy4wNSAyMS41OCAxMy4xNkwyMC4xIDE0LjMxTDIwLjE1IDE1TDIwLjEgMTUuNjhaIi8+CiAgICA8cGF0aCBkPSJNNy4zMjk2NiA3LjQ0NDU0QzguMDgzMSA3LjAwOTU0IDguMzM5MzIgNi4wNTMzMiA3LjkwNDMyIDUuMjk5ODhDNy40NjkzMiA0LjU0NjQzIDYuNTA4MSA0LjI4MTU2IDUuNzU0NjYgNC43MTY1NkM1LjM5MTc2IDQuOTI2MDggNS4xMjY5NSA1LjI3MTE4IDUuMDE4NDkgNS42NzU5NEM0LjkxMDA0IDYuMDgwNzEgNC45NjY4MiA2LjUxMTk4IDUuMTc2MzQgNi44NzQ4OEM1LjYxMTM0IDcuNjI4MzIgNi41NzYyMiA3Ljg3OTU0IDcuMzI5NjYgNy40NDQ1NFpNOS42NTcxOCA0Ljc5NTkzTDEwLjg2NzIgNC45NTE3OUMxMC45NjI4IDQuOTc3NDEgMTEuMDQwMiA1LjA3MTMzIDExLjAzODIgNS4xODc5M0wxMS4wMzg4IDYuOTg4OTNDMTEuMDQ1NSA3LjEwMDU0IDEwLjk2MTYgNy4xOTUxOCAxMC44NTUgNy4yMTA1NEw5LjY2MDAxIDcuMzgwODNMOS4yMzkxNSA4LjEzMTg4TDkuNjY5NjEgOS4yNTc0NUM5LjcwNzI5IDkuMzYyNzEgOS42NjkzNCA5LjQ3Njk5IDkuNTc0MDggOS41MzE5OUw4LjAxNTIzIDEwLjQzMkM3LjkxMTMxIDEwLjQ5MiA3Ljc5MzM3IDEwLjQ2NzcgNy43MjEwNSAxMC4zODI0TDYuOTg3NDggOS40MzE4OEw2LjEwOTMxIDkuNDMwODNMNS4zNDcwNCAxMC4zOTA1QzUuMjg5MDkgMTAuNDcwMiA1LjE3MzgzIDEwLjQ5MDUgNS4wNzE4NyAxMC40MzM5TDMuNTEyNDUgOS41MzI5M0MzLjQxMDQ5IDkuNDc2MzMgMy4zNzY0NyA5LjM1NzQxIDMuNDEwNzUgOS4yNTY3OUwzLjg2MzQ3IDguMTQwOTNMMy42MTc0OSA3Ljc3NDg4TDMuNDIzNDcgNy4zNzg4M0wyLjIzMDc1IDcuMjEyOTdDMi4xMjY0NyA3LjE5MjM1IDIuMDQwNDkgNy4xMDM0MiAyLjA0MjQ1IDYuOTg2ODJMMi4wNDE4NyA1LjE4NTgyQzIuMDQzODMgNS4wNjkyMiAyLjExOTA5IDQuOTc5NTggMi4yMTcwNCA0Ljk2OTIyTDMuNDIwNjUgNC43OTM5M0wzLjg2NzQ5IDQuMDI3ODhMMy40MTEwNSAyLjkxNzMxQzMuMzczMzcgMi44MTIwNCAzLjQxMTMxIDIuNjk3NzYgMy41MTUyMyAyLjYzNzc2TDUuMDc0MDggMS43Mzc3NkM1LjE2OTM0IDEuNjgyNzYgNS4yODcyOSAxLjcwNzA0IDUuMzU5NjEgMS43OTIzMUw2LjExOTE1IDIuNzI3ODhMNi45ODAwMSAyLjczODkzTDcuNzI0OTYgMS43ODkyMkM3Ljc5MTU2IDEuNzA0NTggNy45MTU0OCAxLjY3OTIyIDguMDA4NzkgMS43NDA4Mkw5LjU2ODIxIDIuNjQxODJDOS42NzAxNyAyLjY5ODQyIDkuNzEyODUgMi44MTIzNCA5LjY4NzIzIDIuOTA3OTdMOS4yMTcxOCA0LjAzMzgzTDkuNDYzMTYgNC4zOTk4OEw5LjY1NzE4IDQuNzk1OTNaIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iOS45LDEzLjYgMy42LDcuNCA0LjQsNi42IDkuOSwxMi4yIDE1LjQsNi43IDE2LjEsNy40ICIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNS45TDksOS43bDMuOC0zLjhsMS4yLDEuMmwtNC45LDVsLTQuOS01TDUuMiw1Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNy41TDksMTEuMmwzLjgtMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-left: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik0xMC44LDEyLjhMNy4xLDlsMy44LTMuOGwwLDcuNkgxMC44eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-right: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik03LjIsNS4yTDEwLjksOWwtMy44LDMuOFY1LjJINy4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-up-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iMTUuNCwxMy4zIDkuOSw3LjcgNC40LDEzLjIgMy42LDEyLjUgOS45LDYuMyAxNi4xLDEyLjYgIi8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-up: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik01LjIsMTAuNUw5LDYuOGwzLjgsMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-case-sensitive: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgogIDxnIGNsYXNzPSJqcC1pY29uLWFjY2VudDIiIGZpbGw9IiNGRkYiPgogICAgPHBhdGggZD0iTTcuNiw4aDAuOWwzLjUsOGgtMS4xTDEwLDE0SDZsLTAuOSwySDRMNy42LDh6IE04LDkuMUw2LjQsMTNoMy4yTDgsOS4xeiIvPgogICAgPHBhdGggZD0iTTE2LjYsOS44Yy0wLjIsMC4xLTAuNCwwLjEtMC43LDAuMWMtMC4yLDAtMC40LTAuMS0wLjYtMC4yYy0wLjEtMC4xLTAuMi0wLjQtMC4yLTAuNyBjLTAuMywwLjMtMC42LDAuNS0wLjksMC43Yy0wLjMsMC4xLTAuNywwLjItMS4xLDAuMmMtMC4zLDAtMC41LDAtMC43LTAuMWMtMC4yLTAuMS0wLjQtMC4yLTAuNi0wLjNjLTAuMi0wLjEtMC4zLTAuMy0wLjQtMC41IGMtMC4xLTAuMi0wLjEtMC40LTAuMS0wLjdjMC0wLjMsMC4xLTAuNiwwLjItMC44YzAuMS0wLjIsMC4zLTAuNCwwLjQtMC41QzEyLDcsMTIuMiw2LjksMTIuNSw2LjhjMC4yLTAuMSwwLjUtMC4xLDAuNy0wLjIgYzAuMy0wLjEsMC41LTAuMSwwLjctMC4xYzAuMiwwLDAuNC0wLjEsMC42LTAuMWMwLjIsMCwwLjMtMC4xLDAuNC0wLjJjMC4xLTAuMSwwLjItMC4yLDAuMi0wLjRjMC0xLTEuMS0xLTEuMy0xIGMtMC40LDAtMS40LDAtMS40LDEuMmgtMC45YzAtMC40LDAuMS0wLjcsMC4yLTFjMC4xLTAuMiwwLjMtMC40LDAuNS0wLjZjMC4yLTAuMiwwLjUtMC4zLDAuOC0wLjNDMTMuMyw0LDEzLjYsNCwxMy45LDQgYzAuMywwLDAuNSwwLDAuOCwwLjFjMC4zLDAsMC41LDAuMSwwLjcsMC4yYzAuMiwwLjEsMC40LDAuMywwLjUsMC41QzE2LDUsMTYsNS4yLDE2LDUuNnYyLjljMCwwLjIsMCwwLjQsMCwwLjUgYzAsMC4xLDAuMSwwLjIsMC4zLDAuMmMwLjEsMCwwLjIsMCwwLjMsMFY5Ljh6IE0xNS4yLDYuOWMtMS4yLDAuNi0zLjEsMC4yLTMuMSwxLjRjMCwxLjQsMy4xLDEsMy4xLTAuNVY2Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-check: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik05IDE2LjE3TDQuODMgMTJsLTEuNDIgMS40MUw5IDE5IDIxIDdsLTEuNDEtMS40MXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-circle-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDJDNi40NyAyIDIgNi40NyAyIDEyczQuNDcgMTAgMTAgMTAgMTAtNC40NyAxMC0xMFMxNy41MyAyIDEyIDJ6bTAgMThjLTQuNDEgMC04LTMuNTktOC04czMuNTktOCA4LTggOCAzLjU5IDggOC0zLjU5IDgtOCA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-circle: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjgiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-clear: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8bWFzayBpZD0iZG9udXRIb2xlIj4KICAgIDxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0id2hpdGUiIC8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSI4IiBmaWxsPSJibGFjayIvPgogIDwvbWFzaz4KCiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxyZWN0IGhlaWdodD0iMTgiIHdpZHRoPSIyIiB4PSIxMSIgeT0iMyIgdHJhbnNmb3JtPSJyb3RhdGUoMzE1LCAxMiwgMTIpIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIgbWFzaz0idXJsKCNkb251dEhvbGUpIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-close: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1ub25lIGpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIGpwLWljb24zLWhvdmVyIiBmaWxsPSJub25lIj4KICAgIDxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjExIi8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIGpwLWljb24tYWNjZW50Mi1ob3ZlciIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMTkgNi40MUwxNy41OSA1IDEyIDEwLjU5IDYuNDEgNSA1IDYuNDEgMTAuNTkgMTIgNSAxNy41OSA2LjQxIDE5IDEyIDEzLjQxIDE3LjU5IDE5IDE5IDE3LjU5IDEzLjQxIDEyeiIvPgogIDwvZz4KCiAgPGcgY2xhc3M9ImpwLWljb24tbm9uZSBqcC1pY29uLWJ1c3kiIGZpbGw9Im5vbmUiPgogICAgPGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-code: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTExLjQgMTguNkw2LjggMTRMMTEuNCA5LjRMMTAgOEw0IDE0TDEwIDIwTDExLjQgMTguNlpNMTYuNiAxOC42TDIxLjIgMTRMMTYuNiA5LjRMMTggOEwyNCAxNEwxOCAyMEwxNi42IDE4LjZWMTguNloiLz4KCTwvZz4KPC9zdmc+Cg==);\n  --jp-icon-console: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwMCAyMDAiPgogIDxnIGNsYXNzPSJqcC1pY29uLWJyYW5kMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMjg4RDEiPgogICAgPHBhdGggZD0iTTIwIDE5LjhoMTYwdjE1OS45SDIweiIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNmZmYiPgogICAgPHBhdGggZD0iTTEwNSAxMjcuM2g0MHYxMi44aC00MHpNNTEuMSA3N0w3NCA5OS45bC0yMy4zIDIzLjMgMTAuNSAxMC41IDIzLjMtMjMuM0w5NSA5OS45IDg0LjUgODkuNCA2MS42IDY2LjV6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-copy: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTExLjksMUgzLjJDMi40LDEsMS43LDEuNywxLjcsMi41djEwLjJoMS41VjIuNWg4LjdWMXogTTE0LjEsMy45aC04Yy0wLjgsMC0xLjUsMC43LTEuNSwxLjV2MTAuMmMwLDAuOCwwLjcsMS41LDEuNSwxLjVoOCBjMC44LDAsMS41LTAuNywxLjUtMS41VjUuNEMxNS41LDQuNiwxNC45LDMuOSwxNC4xLDMuOXogTTE0LjEsMTUuNWgtOFY1LjRoOFYxNS41eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-copyright: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDI0IDI0IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCI+CiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0xMS44OCw5LjE0YzEuMjgsMC4wNiwxLjYxLDEuMTUsMS42MywxLjY2aDEuNzljLTAuMDgtMS45OC0xLjQ5LTMuMTktMy40NS0zLjE5QzkuNjQsNy42MSw4LDksOCwxMi4xNCBjMCwxLjk0LDAuOTMsNC4yNCwzLjg0LDQuMjRjMi4yMiwwLDMuNDEtMS42NSwzLjQ0LTIuOTVoLTEuNzljLTAuMDMsMC41OS0wLjQ1LDEuMzgtMS42MywxLjQ0QzEwLjU1LDE0LjgzLDEwLDEzLjgxLDEwLDEyLjE0IEMxMCw5LjI1LDExLjI4LDkuMTYsMTEuODgsOS4xNHogTTEyLDJDNi40OCwyLDIsNi40OCwyLDEyczQuNDgsMTAsMTAsMTBzMTAtNC40OCwxMC0xMFMxNy41MiwyLDEyLDJ6IE0xMiwyMGMtNC40MSwwLTgtMy41OS04LTggczMuNTktOCw4LThzOCwzLjU5LDgsOFMxNi40MSwyMCwxMiwyMHoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-cut: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkuNjQgNy42NGMuMjMtLjUuMzYtMS4wNS4zNi0xLjY0IDAtMi4yMS0xLjc5LTQtNC00UzIgMy43OSAyIDZzMS43OSA0IDQgNGMuNTkgMCAxLjE0LS4xMyAxLjY0LS4zNkwxMCAxMmwtMi4zNiAyLjM2QzcuMTQgMTQuMTMgNi41OSAxNCA2IDE0Yy0yLjIxIDAtNCAxLjc5LTQgNHMxLjc5IDQgNCA0IDQtMS43OSA0LTRjMC0uNTktLjEzLTEuMTQtLjM2LTEuNjRMMTIgMTRsNyA3aDN2LTFMOS42NCA3LjY0ek02IDhjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTAgMTJjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTYtNy41Yy0uMjggMC0uNS0uMjItLjUtLjVzLjIyLS41LjUtLjUuNS4yMi41LjUtLjIyLjUtLjUuNXpNMTkgM2wtNiA2IDIgMiA3LTdWM3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-download: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDloLTRWM0g5djZINWw3IDcgNy03ek01IDE4djJoMTR2LTJINXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-edit: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMgMTcuMjVWMjFoMy43NUwxNy44MSA5Ljk0bC0zLjc1LTMuNzVMMyAxNy4yNXpNMjAuNzEgNy4wNGMuMzktLjM5LjM5LTEuMDIgMC0xLjQxbC0yLjM0LTIuMzRjLS4zOS0uMzktMS4wMi0uMzktMS40MSAwbC0xLjgzIDEuODMgMy43NSAzLjc1IDEuODMtMS44M3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-ellipses: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iNSIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxOSIgY3k9IjEyIiByPSIyIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-extension: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwLjUgMTFIMTlWN2MwLTEuMS0uOS0yLTItMmgtNFYzLjVDMTMgMi4xMiAxMS44OCAxIDEwLjUgMVM4IDIuMTIgOCAzLjVWNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAydjMuOEgzLjVjMS40OSAwIDIuNyAxLjIxIDIuNyAyLjdzLTEuMjEgMi43LTIuNyAyLjdIMlYyMGMwIDEuMS45IDIgMiAyaDMuOHYtMS41YzAtMS40OSAxLjIxLTIuNyAyLjctMi43IDEuNDkgMCAyLjcgMS4yMSAyLjcgMi43VjIySDE3YzEuMSAwIDItLjkgMi0ydi00aDEuNWMxLjM4IDAgMi41LTEuMTIgMi41LTIuNVMyMS44OCAxMSAyMC41IDExeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-fast-forward: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTQgMThsOC41LTZMNCA2djEyem05LTEydjEybDguNS02TDEzIDZ6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-file-upload: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkgMTZoNnYtNmg0bC03LTctNyA3aDR6bS00IDJoMTR2Mkg1eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-file: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuMyA4LjJsLTUuNS01LjVjLS4zLS4zLS43LS41LTEuMi0uNUgzLjljLS44LjEtMS42LjktMS42IDEuOHYxNC4xYzAgLjkuNyAxLjYgMS42IDEuNmgxNC4yYy45IDAgMS42LS43IDEuNi0xLjZWOS40Yy4xLS41LS4xLS45LS40LTEuMnptLTUuOC0zLjNsMy40IDMuNmgtMy40VjQuOXptMy45IDEyLjdINC43Yy0uMSAwLS4yIDAtLjItLjJWNC43YzAtLjIuMS0uMy4yLS4zaDcuMnY0LjRzMCAuOC4zIDEuMWMuMy4zIDEuMS4zIDEuMS4zaDQuM3Y3LjJzLS4xLjItLjIuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-filter-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEwIDE4aDR2LTJoLTR2MnpNMyA2djJoMThWNkgzem0zIDdoMTJ2LTJINnYyeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY4YzAtMS4xLS45LTItMi0yaC04bC0yLTJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-html5: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMDAiIGQ9Ik0xMDguNCAwaDIzdjIyLjhoMjEuMlYwaDIzdjY5aC0yM1Y0NmgtMjF2MjNoLTIzLjJNMjA2IDIzaC0yMC4zVjBoNjMuN3YyM0gyMjl2NDZoLTIzbTUzLjUtNjloMjQuMWwxNC44IDI0LjNMMzEzLjIgMGgyNC4xdjY5aC0yM1YzNC44bC0xNi4xIDI0LjgtMTYuMS0yNC44VjY5aC0yMi42bTg5LjItNjloMjN2NDYuMmgzMi42VjY5aC01NS42Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI2U0NGQyNiIgZD0iTTEwNy42IDQ3MWwtMzMtMzcwLjRoMzYyLjhsLTMzIDM3MC4yTDI1NS43IDUxMiIvPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNmMTY1MjkiIGQ9Ik0yNTYgNDgwLjVWMTMxaDE0OC4zTDM3NiA0NDciLz4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNlYmViZWIiIGQ9Ik0xNDIgMTc2LjNoMTE0djQ1LjRoLTY0LjJsNC4yIDQ2LjVoNjB2NDUuM0gxNTQuNG0yIDIyLjhIMjAybDMuMiAzNi4zIDUwLjggMTMuNnY0Ny40bC05My4yLTI2Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIiBmaWxsPSIjZmZmIiBkPSJNMzY5LjYgMTc2LjNIMjU1Ljh2NDUuNGgxMDkuNm0tNC4xIDQ2LjVIMjU1Ljh2NDUuNGg1NmwtNS4zIDU5LTUwLjcgMTMuNnY0Ny4ybDkzLTI1LjgiLz4KPC9zdmc+Cg==);\n  --jp-icon-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1icmFuZDQganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNGRkYiIGQ9Ik0yLjIgMi4yaDE3LjV2MTcuNUgyLjJ6Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzNGNTFCNSIgZD0iTTIuMiAyLjJ2MTcuNWgxNy41bC4xLTE3LjVIMi4yem0xMi4xIDIuMmMxLjIgMCAyLjIgMSAyLjIgMi4ycy0xIDIuMi0yLjIgMi4yLTIuMi0xLTIuMi0yLjIgMS0yLjIgMi4yLTIuMnpNNC40IDE3LjZsMy4zLTguOCAzLjMgNi42IDIuMi0zLjIgNC40IDUuNEg0LjR6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-inspector: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY2YzAtMS4xLS45LTItMi0yem0tNSAxNEg0di00aDExdjR6bTAtNUg0VjloMTF2NHptNSA1aC00VjloNHY5eiIvPgo8L3N2Zz4K);\n  --jp-icon-json: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNGOUE4MjUiPgogICAgPHBhdGggZD0iTTIwLjIgMTEuOGMtMS42IDAtMS43LjUtMS43IDEgMCAuNC4xLjkuMSAxLjMuMS41LjEuOS4xIDEuMyAwIDEuNy0xLjQgMi4zLTMuNSAyLjNoLS45di0xLjloLjVjMS4xIDAgMS40IDAgMS40LS44IDAtLjMgMC0uNi0uMS0xIDAtLjQtLjEtLjgtLjEtMS4yIDAtMS4zIDAtMS44IDEuMy0yLTEuMy0uMi0xLjMtLjctMS4zLTIgMC0uNC4xLS44LjEtMS4yLjEtLjQuMS0uNy4xLTEgMC0uOC0uNC0uNy0xLjQtLjhoLS41VjQuMWguOWMyLjIgMCAzLjUuNyAzLjUgMi4zIDAgLjQtLjEuOS0uMSAxLjMtLjEuNS0uMS45LS4xIDEuMyAwIC41LjIgMSAxLjcgMXYxLjh6TTEuOCAxMC4xYzEuNiAwIDEuNy0uNSAxLjctMSAwLS40LS4xLS45LS4xLTEuMy0uMS0uNS0uMS0uOS0uMS0xLjMgMC0xLjYgMS40LTIuMyAzLjUtMi4zaC45djEuOWgtLjVjLTEgMC0xLjQgMC0xLjQuOCAwIC4zIDAgLjYuMSAxIDAgLjIuMS42LjEgMSAwIDEuMyAwIDEuOC0xLjMgMkM2IDExLjIgNiAxMS43IDYgMTNjMCAuNC0uMS44LS4xIDEuMi0uMS4zLS4xLjctLjEgMSAwIC44LjMuOCAxLjQuOGguNXYxLjloLS45Yy0yLjEgMC0zLjUtLjYtMy41LTIuMyAwLS40LjEtLjkuMS0xLjMuMS0uNS4xLS45LjEtMS4zIDAtLjUtLjItMS0xLjctMXYtMS45eiIvPgogICAgPGNpcmNsZSBjeD0iMTEiIGN5PSIxMy44IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY3g9IjExIiBjeT0iOC4yIiByPSIyLjEiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-julia: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDMyNSAzMDAiPgogIDxnIGNsYXNzPSJqcC1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjY2IzYzMzIj4KICAgIDxwYXRoIGQ9Ik0gMTUwLjg5ODQzOCAyMjUgQyAxNTAuODk4NDM4IDI2Ni40MjE4NzUgMTE3LjMyMDMxMiAzMDAgNzUuODk4NDM4IDMwMCBDIDM0LjQ3NjU2MiAzMDAgMC44OTg0MzggMjY2LjQyMTg3NSAwLjg5ODQzOCAyMjUgQyAwLjg5ODQzOCAxODMuNTc4MTI1IDM0LjQ3NjU2MiAxNTAgNzUuODk4NDM4IDE1MCBDIDExNy4zMjAzMTIgMTUwIDE1MC44OTg0MzggMTgzLjU3ODEyNSAxNTAuODk4NDM4IDIyNSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzM4OTgyNiI+CiAgICA8cGF0aCBkPSJNIDIzNy41IDc1IEMgMjM3LjUgMTE2LjQyMTg3NSAyMDMuOTIxODc1IDE1MCAxNjIuNSAxNTAgQyAxMjEuMDc4MTI1IDE1MCA4Ny41IDExNi40MjE4NzUgODcuNSA3NSBDIDg3LjUgMzMuNTc4MTI1IDEyMS4wNzgxMjUgMCAxNjIuNSAwIEMgMjAzLjkyMTg3NSAwIDIzNy41IDMzLjU3ODEyNSAyMzcuNSA3NSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzk1NThiMiI+CiAgICA8cGF0aCBkPSJNIDMyNC4xMDE1NjIgMjI1IEMgMzI0LjEwMTU2MiAyNjYuNDIxODc1IDI5MC41MjM0MzggMzAwIDI0OS4xMDE1NjIgMzAwIEMgMjA3LjY3OTY4OCAzMDAgMTc0LjEwMTU2MiAyNjYuNDIxODc1IDE3NC4xMDE1NjIgMjI1IEMgMTc0LjEwMTU2MiAxODMuNTc4MTI1IDIwNy42Nzk2ODggMTUwIDI0OS4xMDE1NjIgMTUwIEMgMjkwLjUyMzQzOCAxNTAgMzI0LjEwMTU2MiAxODMuNTc4MTI1IDMyNC4xMDE1NjIgMjI1Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-jupyter-favicon: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUyIiBoZWlnaHQ9IjE2NSIgdmlld0JveD0iMCAwIDE1MiAxNjUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA3ODk0NywgMTEwLjU4MjkyNykiIGQ9Ik03NS45NDIyODQyLDI5LjU4MDQ1NjEgQzQzLjMwMjM5NDcsMjkuNTgwNDU2MSAxNC43OTY3ODMyLDE3LjY1MzQ2MzQgMCwwIEM1LjUxMDgzMjExLDE1Ljg0MDY4MjkgMTUuNzgxNTM4OSwyOS41NjY3NzMyIDI5LjM5MDQ5NDcsMzkuMjc4NDE3MSBDNDIuOTk5Nyw0OC45ODk4NTM3IDU5LjI3MzcsNTQuMjA2NzgwNSA3NS45NjA1Nzg5LDU0LjIwNjc4MDUgQzkyLjY0NzQ1NzksNTQuMjA2NzgwNSAxMDguOTIxNDU4LDQ4Ljk4OTg1MzcgMTIyLjUzMDY2MywzOS4yNzg0MTcxIEMxMzYuMTM5NDUzLDI5LjU2Njc3MzIgMTQ2LjQxMDI4NCwxNS44NDA2ODI5IDE1MS45MjExNTgsMCBDMTM3LjA4Nzg2OCwxNy42NTM0NjM0IDEwOC41ODI1ODksMjkuNTgwNDU2MSA3NS45NDIyODQyLDI5LjU4MDQ1NjEgTDc1Ljk0MjI4NDIsMjkuNTgwNDU2MSBaIiAvPgogICAgPHBhdGggdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMzczNjgsIDAuNzA0ODc4KSIgZD0iTTc1Ljk3ODQ1NzksMjQuNjI2NDA3MyBDMTA4LjYxODc2MywyNC42MjY0MDczIDEzNy4xMjQ0NTgsMzYuNTUzNDQxNSAxNTEuOTIxMTU4LDU0LjIwNjc4MDUgQzE0Ni40MTAyODQsMzguMzY2MjIyIDEzNi4xMzk0NTMsMjQuNjQwMTMxNyAxMjIuNTMwNjYzLDE0LjkyODQ4NzggQzEwOC45MjE0NTgsNS4yMTY4NDM5IDkyLjY0NzQ1NzksMCA3NS45NjA1Nzg5LDAgQzU5LjI3MzcsMCA0Mi45OTk3LDUuMjE2ODQzOSAyOS4zOTA0OTQ3LDE0LjkyODQ4NzggQzE1Ljc4MTUzODksMjQuNjQwMTMxNyA1LjUxMDgzMjExLDM4LjM2NjIyMiAwLDU0LjIwNjc4MDUgQzE0LjgzMzA4MTYsMzYuNTg5OTI5MyA0My4zMzg1Njg0LDI0LjYyNjQwNzMgNzUuOTc4NDU3OSwyNC42MjY0MDczIEw3NS45Nzg0NTc5LDI0LjYyNjQwNzMgWiIgLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-jupyter: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzkiIGhlaWdodD0iNTEiIHZpZXdCb3g9IjAgMCAzOSA1MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTYzOCAtMjI4MSkiPgogICAgPGcgY2xhc3M9ImpwLWljb24td2FybjAiIGZpbGw9IiNGMzc3MjYiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5Ljc0IDIzMTEuOTgpIiBkPSJNIDE4LjI2NDYgNy4xMzQxMUMgMTAuNDE0NSA3LjEzNDExIDMuNTU4NzIgNC4yNTc2IDAgMEMgMS4zMjUzOSAzLjgyMDQgMy43OTU1NiA3LjEzMDgxIDcuMDY4NiA5LjQ3MzAzQyAxMC4zNDE3IDExLjgxNTIgMTQuMjU1NyAxMy4wNzM0IDE4LjI2OSAxMy4wNzM0QyAyMi4yODIzIDEzLjA3MzQgMjYuMTk2MyAxMS44MTUyIDI5LjQ2OTQgOS40NzMwM0MgMzIuNzQyNCA3LjEzMDgxIDM1LjIxMjYgMy44MjA0IDM2LjUzOCAwQyAzMi45NzA1IDQuMjU3NiAyNi4xMTQ4IDcuMTM0MTEgMTguMjY0NiA3LjEzNDExWiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5LjczIDIyODUuNDgpIiBkPSJNIDE4LjI3MzMgNS45MzkzMUMgMjYuMTIzNSA1LjkzOTMxIDMyLjk3OTMgOC44MTU4MyAzNi41MzggMTMuMDczNEMgMzUuMjEyNiA5LjI1MzAzIDMyLjc0MjQgNS45NDI2MiAyOS40Njk0IDMuNjAwNEMgMjYuMTk2MyAxLjI1ODE4IDIyLjI4MjMgMCAxOC4yNjkgMEMgMTQuMjU1NyAwIDEwLjM0MTcgMS4yNTgxOCA3LjA2ODYgMy42MDA0QyAzLjc5NTU2IDUuOTQyNjIgMS4zMjUzOSA5LjI1MzAzIDAgMTMuMDczNEMgMy41Njc0NSA4LjgyNDYzIDEwLjQyMzIgNS45MzkzMSAxOC4yNzMzIDUuOTM5MzFaIi8+CiAgICA8L2c+CiAgICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjY5LjMgMjI4MS4zMSkiIGQ9Ik0gNS44OTM1MyAyLjg0NEMgNS45MTg4OSAzLjQzMTY1IDUuNzcwODUgNC4wMTM2NyA1LjQ2ODE1IDQuNTE2NDVDIDUuMTY1NDUgNS4wMTkyMiA0LjcyMTY4IDUuNDIwMTUgNC4xOTI5OSA1LjY2ODUxQyAzLjY2NDMgNS45MTY4OCAzLjA3NDQ0IDYuMDAxNTEgMi40OTgwNSA1LjkxMTcxQyAxLjkyMTY2IDUuODIxOSAxLjM4NDYzIDUuNTYxNyAwLjk1NDg5OCA1LjE2NDAxQyAwLjUyNTE3IDQuNzY2MzMgMC4yMjIwNTYgNC4yNDkwMyAwLjA4MzkwMzcgMy42Nzc1N0MgLTAuMDU0MjQ4MyAzLjEwNjExIC0wLjAyMTIzIDIuNTA2MTcgMC4xNzg3ODEgMS45NTM2NEMgMC4zNzg3OTMgMS40MDExIDAuNzM2ODA5IDAuOTIwODE3IDEuMjA3NTQgMC41NzM1MzhDIDEuNjc4MjYgMC4yMjYyNTkgMi4yNDA1NSAwLjAyNzU5MTkgMi44MjMyNiAwLjAwMjY3MjI5QyAzLjYwMzg5IC0wLjAzMDcxMTUgNC4zNjU3MyAwLjI0OTc4OSA0Ljk0MTQyIDAuNzgyNTUxQyA1LjUxNzExIDEuMzE1MzEgNS44NTk1NiAyLjA1Njc2IDUuODkzNTMgMi44NDRaIi8+CiAgICAgIDxwYXRoIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE2MzkuOCAyMzIzLjgxKSIgZD0iTSA3LjQyNzg5IDMuNTgzMzhDIDcuNDYwMDggNC4zMjQzIDcuMjczNTUgNS4wNTgxOSA2Ljg5MTkzIDUuNjkyMTNDIDYuNTEwMzEgNi4zMjYwNyA1Ljk1MDc1IDYuODMxNTYgNS4yODQxMSA3LjE0NDZDIDQuNjE3NDcgNy40NTc2MyAzLjg3MzcxIDcuNTY0MTQgMy4xNDcwMiA3LjQ1MDYzQyAyLjQyMDMyIDcuMzM3MTIgMS43NDMzNiA3LjAwODcgMS4yMDE4NCA2LjUwNjk1QyAwLjY2MDMyOCA2LjAwNTIgMC4yNzg2MSA1LjM1MjY4IDAuMTA1MDE3IDQuNjMyMDJDIC0wLjA2ODU3NTcgMy45MTEzNSAtMC4wMjYyMzYxIDMuMTU0OTQgMC4yMjY2NzUgMi40NTg1NkMgMC40Nzk1ODcgMS43NjIxNyAwLjkzMTY5NyAxLjE1NzEzIDEuNTI1NzYgMC43MjAwMzNDIDIuMTE5ODMgMC4yODI5MzUgMi44MjkxNCAwLjAzMzQzOTUgMy41NjM4OSAwLjAwMzEzMzQ0QyA0LjU0NjY3IC0wLjAzNzQwMzMgNS41MDUyOSAwLjMxNjcwNiA2LjIyOTYxIDAuOTg3ODM1QyA2Ljk1MzkzIDEuNjU4OTYgNy4zODQ4NCAyLjU5MjM1IDcuNDI3ODkgMy41ODMzOEwgNy40Mjc4OSAzLjU4MzM4WiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM4LjM2IDIyODYuMDYpIiBkPSJNIDIuMjc0NzEgNC4zOTYyOUMgMS44NDM2MyA0LjQxNTA4IDEuNDE2NzEgNC4zMDQ0NSAxLjA0Nzk5IDQuMDc4NDNDIDAuNjc5MjY4IDMuODUyNCAwLjM4NTMyOCAzLjUyMTE0IDAuMjAzMzcxIDMuMTI2NTZDIDAuMDIxNDEzNiAyLjczMTk4IC0wLjA0MDM3OTggMi4yOTE4MyAwLjAyNTgxMTYgMS44NjE4MUMgMC4wOTIwMDMxIDEuNDMxOCAwLjI4MzIwNCAxLjAzMTI2IDAuNTc1MjEzIDAuNzEwODgzQyAwLjg2NzIyMiAwLjM5MDUxIDEuMjQ2OTEgMC4xNjQ3MDggMS42NjYyMiAwLjA2MjA1OTJDIDIuMDg1NTMgLTAuMDQwNTg5NyAyLjUyNTYxIC0wLjAxNTQ3MTQgMi45MzA3NiAwLjEzNDIzNUMgMy4zMzU5MSAwLjI4Mzk0MSAzLjY4NzkyIDAuNTUxNTA1IDMuOTQyMjIgMC45MDMwNkMgNC4xOTY1MiAxLjI1NDYyIDQuMzQxNjkgMS42NzQzNiA0LjM1OTM1IDIuMTA5MTZDIDQuMzgyOTkgMi42OTEwNyA0LjE3Njc4IDMuMjU4NjkgMy43ODU5NyAzLjY4NzQ2QyAzLjM5NTE2IDQuMTE2MjQgMi44NTE2NiA0LjM3MTE2IDIuMjc0NzEgNC4zOTYyOUwgMi4yNzQ3MSA0LjM5NjI5WiIvPgogICAgPC9nPgogIDwvZz4+Cjwvc3ZnPgo=);\n  --jp-icon-jupyterlab-wordmark: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIHZpZXdCb3g9IjAgMCAxODYwLjggNDc1Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0RTRFNEUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ4MC4xMzY0MDEsIDY0LjI3MTQ5MykiPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMDAwMDAsIDU4Ljg3NTU2NikiPgogICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA4NzYwMywgMC4xNDAyOTQpIj4KICAgICAgICA8cGF0aCBkPSJNLTQyNi45LDE2OS44YzAsNDguNy0zLjcsNjQuNy0xMy42LDc2LjRjLTEwLjgsMTAtMjUsMTUuNS0zOS43LDE1LjVsMy43LDI5IGMyMi44LDAuMyw0NC44LTcuOSw2MS45LTIzLjFjMTcuOC0xOC41LDI0LTQ0LjEsMjQtODMuM1YwSC00Mjd2MTcwLjFMLTQyNi45LDE2OS44TC00MjYuOSwxNjkuOHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTU1LjA0NTI5NiwgNTYuODM3MTA0KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuNTYyNDUzLCAxLjc5OTg0MikiPgogICAgICAgIDxwYXRoIGQ9Ik0tMzEyLDE0OGMwLDIxLDAsMzkuNSwxLjcsNTUuNGgtMzEuOGwtMi4xLTMzLjNoLTAuOGMtNi43LDExLjYtMTYuNCwyMS4zLTI4LDI3LjkgYy0xMS42LDYuNi0yNC44LDEwLTM4LjIsOS44Yy0zMS40LDAtNjktMTcuNy02OS04OVYwaDM2LjR2MTEyLjdjMCwzOC43LDExLjYsNjQuNyw0NC42LDY0LjdjMTAuMy0wLjIsMjAuNC0zLjUsMjguOS05LjQgYzguNS01LjksMTUuMS0xNC4zLDE4LjktMjMuOWMyLjItNi4xLDMuMy0xMi41LDMuMy0xOC45VjAuMmgzNi40VjE0OEgtMzEyTC0zMTIsMTQ4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzOTAuMDEzMzIyLCA1My40Nzk2MzgpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS43MDY0NTgsIDAuMjMxNDI1KSI+CiAgICAgICAgPHBhdGggZD0iTS00NzguNiw3MS40YzAtMjYtMC44LTQ3LTEuNy02Ni43aDMyLjdsMS43LDM0LjhoMC44YzcuMS0xMi41LDE3LjUtMjIuOCwzMC4xLTI5LjcgYzEyLjUtNywyNi43LTEwLjMsNDEtOS44YzQ4LjMsMCw4NC43LDQxLjcsODQuNywxMDMuM2MwLDczLjEtNDMuNywxMDkuMi05MSwxMDkuMmMtMTIuMSwwLjUtMjQuMi0yLjItMzUtNy44IGMtMTAuOC01LjYtMTkuOS0xMy45LTI2LjYtMjQuMmgtMC44VjI5MWgtMzZ2LTIyMEwtNDc4LjYsNzEuNEwtNDc4LjYsNzEuNHogTS00NDIuNiwxMjUuNmMwLjEsNS4xLDAuNiwxMC4xLDEuNywxNS4xIGMzLDEyLjMsOS45LDIzLjMsMTkuOCwzMS4xYzkuOSw3LjgsMjIuMSwxMi4xLDM0LjcsMTIuMWMzOC41LDAsNjAuNy0zMS45LDYwLjctNzguNWMwLTQwLjctMjEuMS03NS42LTU5LjUtNzUuNiBjLTEyLjksMC40LTI1LjMsNS4xLTM1LjMsMTMuNGMtOS45LDguMy0xNi45LDE5LjctMTkuNiwzMi40Yy0xLjUsNC45LTIuMywxMC0yLjUsMTUuMVYxMjUuNkwtNDQyLjYsMTI1LjZMLTQ0Mi42LDEyNS42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MDYuNzQwNzI2LCA1Ni44MzcxMDQpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC43NTEyMjYsIDEuOTg5Mjk5KSI+CiAgICAgICAgPHBhdGggZD0iTS00NDAuOCwwbDQzLjcsMTIwLjFjNC41LDEzLjQsOS41LDI5LjQsMTIuOCw0MS43aDAuOGMzLjctMTIuMiw3LjktMjcuNywxMi44LTQyLjQgbDM5LjctMTE5LjJoMzguNUwtMzQ2LjksMTQ1Yy0yNiw2OS43LTQzLjcsMTA1LjQtNjguNiwxMjcuMmMtMTIuNSwxMS43LTI3LjksMjAtNDQuNiwyMy45bC05LjEtMzEuMSBjMTEuNy0zLjksMjIuNS0xMC4xLDMxLjgtMTguMWMxMy4yLTExLjEsMjMuNy0yNS4yLDMwLjYtNDEuMmMxLjUtMi44LDIuNS01LjcsMi45LTguOGMtMC4zLTMuMy0xLjItNi42LTIuNS05LjdMLTQ4MC4yLDAuMSBoMzkuN0wtNDQwLjgsMEwtNDQwLjgsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODIyLjc0ODEwNCwgMC4wMDAwMDApIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS40NjQwNTAsIDAuMzc4OTE0KSI+CiAgICAgICAgPHBhdGggZD0iTS00MTMuNywwdjU4LjNoNTJ2MjguMmgtNTJWMTk2YzAsMjUsNywzOS41LDI3LjMsMzkuNWM3LjEsMC4xLDE0LjItMC43LDIxLjEtMi41IGwxLjcsMjcuN2MtMTAuMywzLjctMjEuMyw1LjQtMzIuMiw1Yy03LjMsMC40LTE0LjYtMC43LTIxLjMtMy40Yy02LjgtMi43LTEyLjktNi44LTE3LjktMTIuMWMtMTAuMy0xMC45LTE0LjEtMjktMTQuMS01Mi45IFY4Ni41aC0zMVY1OC4zaDMxVjkuNkwtNDEzLjcsMEwtNDEzLjcsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOTc0LjQzMzI4NiwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuOTkwMDM0LCAwLjYxMDMzOSkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDQ1LjgsMTEzYzAuOCw1MCwzMi4yLDcwLjYsNjguNiw3MC42YzE5LDAuNiwzNy45LTMsNTUuMy0xMC41bDYuMiwyNi40IGMtMjAuOSw4LjktNDMuNSwxMy4xLTY2LjIsMTIuNmMtNjEuNSwwLTk4LjMtNDEuMi05OC4zLTEwMi41Qy00ODAuMiw0OC4yLTQ0NC43LDAtMzg2LjUsMGM2NS4yLDAsODIuNyw1OC4zLDgyLjcsOTUuNyBjLTAuMSw1LjgtMC41LDExLjUtMS4yLDE3LjJoLTE0MC42SC00NDUuOEwtNDQ1LjgsMTEzeiBNLTMzOS4yLDg2LjZjMC40LTIzLjUtOS41LTYwLjEtNTAuNC02MC4xIGMtMzYuOCwwLTUyLjgsMzQuNC01NS43LDYwLjFILTMzOS4yTC0zMzkuMiw4Ni42TC0zMzkuMiw4Ni42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjAxLjk2MTA1OCwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuMTc5NjQwLCAwLjcwNTA2OCkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDc4LjYsNjhjMC0yMy45LTAuNC00NC41LTEuNy02My40aDMxLjhsMS4yLDM5LjloMS43YzkuMS0yNy4zLDMxLTQ0LjUsNTUuMy00NC41IGMzLjUtMC4xLDcsMC40LDEwLjMsMS4ydjM0LjhjLTQuMS0wLjktOC4yLTEuMy0xMi40LTEuMmMtMjUuNiwwLTQzLjcsMTkuNy00OC43LDQ3LjRjLTEsNS43LTEuNiwxMS41LTEuNywxNy4ydjEwOC4zaC0zNlY2OCBMLTQ3OC42LDY4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCBkPSJNMTM1Mi4zLDMyNi4yaDM3VjI4aC0zN1YzMjYuMnogTTE2MDQuOCwzMjYuMmMtMi41LTEzLjktMy40LTMxLjEtMy40LTQ4Ljd2LTc2IGMwLTQwLjctMTUuMS04My4xLTc3LjMtODMuMWMtMjUuNiwwLTUwLDcuMS02Ni44LDE4LjFsOC40LDI0LjRjMTQuMy05LjIsMzQtMTUuMSw1My0xNS4xYzQxLjYsMCw0Ni4yLDMwLjIsNDYuMiw0N3Y0LjIgYy03OC42LTAuNC0xMjIuMywyNi41LTEyMi4zLDc1LjZjMCwyOS40LDIxLDU4LjQsNjIuMiw1OC40YzI5LDAsNTAuOS0xNC4zLDYyLjItMzAuMmgxLjNsMi45LDI1LjZIMTYwNC44eiBNMTU2NS43LDI1Ny43IGMwLDMuOC0wLjgsOC0yLjEsMTEuOGMtNS45LDE3LjItMjIuNywzNC00OS4yLDM0Yy0xOC45LDAtMzQuOS0xMS4zLTM0LjktMzUuM2MwLTM5LjUsNDUuOC00Ni42LDg2LjItNDUuOFYyNTcuN3ogTTE2OTguNSwzMjYuMiBsMS43LTMzLjZoMS4zYzE1LjEsMjYuOSwzOC43LDM4LjIsNjguMSwzOC4yYzQ1LjQsMCw5MS4yLTM2LjEsOTEuMi0xMDguOGMwLjQtNjEuNy0zNS4zLTEwMy43LTg1LjctMTAzLjcgYy0zMi44LDAtNTYuMywxNC43LTY5LjMsMzcuNGgtMC44VjI4aC0zNi42djI0NS43YzAsMTguMS0wLjgsMzguNi0xLjcsNTIuNUgxNjk4LjV6IE0xNzA0LjgsMjA4LjJjMC01LjksMS4zLTEwLjksMi4xLTE1LjEgYzcuNi0yOC4xLDMxLjEtNDUuNCw1Ni4zLTQ1LjRjMzkuNSwwLDYwLjUsMzQuOSw2MC41LDc1LjZjMCw0Ni42LTIzLjEsNzguMS02MS44LDc4LjFjLTI2LjksMC00OC4zLTE3LjYtNTUuNS00My4zIGMtMC44LTQuMi0xLjctOC44LTEuNy0xMy40VjIwOC4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgZmlsbD0iIzYxNjE2MSIgZD0iTTE1IDlIOXY2aDZWOXptLTIgNGgtMnYtMmgydjJ6bTgtMlY5aC0yVjdjMC0xLjEtLjktMi0yLTJoLTJWM2gtMnYyaC0yVjNIOXYySDdjLTEuMSAwLTIgLjktMiAydjJIM3YyaDJ2MkgzdjJoMnYyYzAgMS4xLjkgMiAyIDJoMnYyaDJ2LTJoMnYyaDJ2LTJoMmMxLjEgMCAyLS45IDItMnYtMmgydi0yaC0ydi0yaDJ6bS00IDZIN1Y3aDEwdjEweiIvPgo8L3N2Zz4K);\n  --jp-icon-keyboard: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMTdjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY3YzAtMS4xLS45LTItMi0yem0tOSAzaDJ2MmgtMlY4em0wIDNoMnYyaC0ydi0yek04IDhoMnYySDhWOHptMCAzaDJ2Mkg4di0yem0tMSAySDV2LTJoMnYyem0wLTNINVY4aDJ2MnptOSA3SDh2LTJoOHYyem0wLTRoLTJ2LTJoMnYyem0wLTNoLTJWOGgydjJ6bTMgM2gtMnYtMmgydjJ6bTAtM2gtMlY4aDJ2MnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-launcher: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkgMTlINVY1aDdWM0g1YTIgMiAwIDAwLTIgMnYxNGEyIDIgMCAwMDIgMmgxNGMxLjEgMCAyLS45IDItMnYtN2gtMnY3ek0xNCAzdjJoMy41OWwtOS44MyA5LjgzIDEuNDEgMS40MUwxOSA2LjQxVjEwaDJWM2gtN3oiLz4KPC9zdmc+Cg==);\n  --jp-icon-line-form: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGZpbGw9IndoaXRlIiBkPSJNNS44OCA0LjEyTDEzLjc2IDEybC03Ljg4IDcuODhMOCAyMmwxMC0xMEw4IDJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-link: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMuOSAxMmMwLTEuNzEgMS4zOS0zLjEgMy4xLTMuMWg0VjdIN2MtMi43NiAwLTUgMi4yNC01IDVzMi4yNCA1IDUgNWg0di0xLjlIN2MtMS43MSAwLTMuMS0xLjM5LTMuMS0zLjF6TTggMTNoOHYtMkg4djJ6bTktNmgtNHYxLjloNGMxLjcxIDAgMy4xIDEuMzkgMy4xIDMuMXMtMS4zOSAzLjEtMy4xIDMuMWgtNFYxN2g0YzIuNzYgMCA1LTIuMjQgNS01cy0yLjI0LTUtNS01eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiM2MTYxNjEiIGQ9Ik0xOSA1djE0SDVWNWgxNG0xLjEtMkgzLjljLS41IDAtLjkuNC0uOS45djE2LjJjMCAuNC40LjkuOS45aDE2LjJjLjQgMCAuOS0uNS45LS45VjMuOWMwLS41LS41LS45LS45LS45ek0xMSA3aDZ2MmgtNlY3em0wIDRoNnYyaC02di0yem0wIDRoNnYyaC02ek03IDdoMnYySDd6bTAgNGgydjJIN3ptMCA0aDJ2Mkg3eiIvPgo8L3N2Zz4=);\n  --jp-icon-listings-info: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MC45NzggNTAuOTc4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MC45NzggNTAuOTc4OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+Cgk8Zz4KCQk8cGF0aCBzdHlsZT0iZmlsbDojMDEwMDAyOyIgZD0iTTQzLjUyLDcuNDU4QzM4LjcxMSwyLjY0OCwzMi4zMDcsMCwyNS40ODksMEMxOC42NywwLDEyLjI2NiwyLjY0OCw3LjQ1OCw3LjQ1OAoJCQljLTkuOTQzLDkuOTQxLTkuOTQzLDI2LjExOSwwLDM2LjA2MmM0LjgwOSw0LjgwOSwxMS4yMTIsNy40NTYsMTguMDMxLDcuNDU4YzAsMCwwLjAwMSwwLDAuMDAyLDAKCQkJYzYuODE2LDAsMTMuMjIxLTIuNjQ4LDE4LjAyOS03LjQ1OGM0LjgwOS00LjgwOSw3LjQ1Ny0xMS4yMTIsNy40NTctMTguMDNDNTAuOTc3LDE4LjY3LDQ4LjMyOCwxMi4yNjYsNDMuNTIsNy40NTh6CgkJCSBNNDIuMTA2LDQyLjEwNWMtNC40MzIsNC40MzEtMTAuMzMyLDYuODcyLTE2LjYxNSw2Ljg3MmgtMC4wMDJjLTYuMjg1LTAuMDAxLTEyLjE4Ny0yLjQ0MS0xNi42MTctNi44NzIKCQkJYy05LjE2Mi05LjE2My05LjE2Mi0yNC4wNzEsMC0zMy4yMzNDMTMuMzAzLDQuNDQsMTkuMjA0LDIsMjUuNDg5LDJjNi4yODQsMCwxMi4xODYsMi40NCwxNi42MTcsNi44NzIKCQkJYzQuNDMxLDQuNDMxLDYuODcxLDEwLjMzMiw2Ljg3MSwxNi42MTdDNDguOTc3LDMxLjc3Miw0Ni41MzYsMzcuNjc1LDQyLjEwNiw0Mi4xMDV6Ii8+CgkJPHBhdGggc3R5bGU9ImZpbGw6IzAxMDAwMjsiIGQ9Ik0yMy41NzgsMzIuMjE4Yy0wLjAyMy0xLjczNCwwLjE0My0zLjA1OSwwLjQ5Ni0zLjk3MmMwLjM1My0wLjkxMywxLjExLTEuOTk3LDIuMjcyLTMuMjUzCgkJCWMwLjQ2OC0wLjUzNiwwLjkyMy0xLjA2MiwxLjM2Ny0xLjU3NWMwLjYyNi0wLjc1MywxLjEwNC0xLjQ3OCwxLjQzNi0yLjE3NWMwLjMzMS0wLjcwNywwLjQ5NS0xLjU0MSwwLjQ5NS0yLjUKCQkJYzAtMS4wOTYtMC4yNi0yLjA4OC0wLjc3OS0yLjk3OWMtMC41NjUtMC44NzktMS41MDEtMS4zMzYtMi44MDYtMS4zNjljLTEuODAyLDAuMDU3LTIuOTg1LDAuNjY3LTMuNTUsMS44MzIKCQkJYy0wLjMwMSwwLjUzNS0wLjUwMywxLjE0MS0wLjYwNywxLjgxNGMtMC4xMzksMC43MDctMC4yMDcsMS40MzItMC4yMDcsMi4xNzRoLTIuOTM3Yy0wLjA5MS0yLjIwOCwwLjQwNy00LjExNCwxLjQ5My01LjcxOQoJCQljMS4wNjItMS42NCwyLjg1NS0yLjQ4MSw1LjM3OC0yLjUyN2MyLjE2LDAuMDIzLDMuODc0LDAuNjA4LDUuMTQxLDEuNzU4YzEuMjc4LDEuMTYsMS45MjksMi43NjQsMS45NSw0LjgxMQoJCQljMCwxLjE0Mi0wLjEzNywyLjExMS0wLjQxLDIuOTExYy0wLjMwOSwwLjg0NS0wLjczMSwxLjU5My0xLjI2OCwyLjI0M2MtMC40OTIsMC42NS0xLjA2OCwxLjMxOC0xLjczLDIuMDAyCgkJCWMtMC42NSwwLjY5Ny0xLjMxMywxLjQ3OS0xLjk4NywyLjM0NmMtMC4yMzksMC4zNzctMC40MjksMC43NzctMC41NjUsMS4xOTljLTAuMTYsMC45NTktMC4yMTcsMS45NTEtMC4xNzEsMi45NzkKCQkJQzI2LjU4OSwzMi4yMTgsMjMuNTc4LDMyLjIxOCwyMy41NzgsMzIuMjE4eiBNMjMuNTc4LDM4LjIydi0zLjQ4NGgzLjA3NnYzLjQ4NEgyMy41Nzh6Ii8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-markdown: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjN0IxRkEyIiBkPSJNNSAxNC45aDEybC02LjEgNnptOS40LTYuOGMwLTEuMy0uMS0yLjktLjEtNC41LS40IDEuNC0uOSAyLjktMS4zIDQuM2wtMS4zIDQuM2gtMkw4LjUgNy45Yy0uNC0xLjMtLjctMi45LTEtNC4zLS4xIDEuNi0uMSAzLjItLjIgNC42TDcgMTIuNEg0LjhsLjctMTFoMy4zTDEwIDVjLjQgMS4yLjcgMi43IDEgMy45LjMtMS4yLjctMi42IDEtMy45bDEuMi0zLjdoMy4zbC42IDExaC0yLjRsLS4zLTQuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-new-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwIDZoLThsLTItMkg0Yy0xLjExIDAtMS45OS44OS0xLjk5IDJMMiAxOGMwIDEuMTEuODkgMiAyIDJoMTZjMS4xMSAwIDItLjg5IDItMlY4YzAtMS4xMS0uODktMi0yLTJ6bS0xIDhoLTN2M2gtMnYtM2gtM3YtMmgzVjloMnYzaDN2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-not-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI1IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMTkgMTcuMTg0NCAyLjk2OTY4IDE0LjMwMzIgMS44NjA5NCAxMS40NDA5WiIvPgogICAgPHBhdGggY2xhc3M9ImpwLWljb24yIiBzdHJva2U9IiMzMzMzMzMiIHN0cm9rZS13aWR0aD0iMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOS4zMTU5MiA5LjMyMDMxKSIgZD0iTTcuMzY4NDIgMEwwIDcuMzY0NzkiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDkuMzE1OTIgMTYuNjgzNikgc2NhbGUoMSAtMSkiIGQ9Ik03LjM2ODQyIDBMMCA3LjM2NDc5Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-notebook: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNFRjZDMDAiPgogICAgPHBhdGggZD0iTTE4LjcgMy4zdjE1LjRIMy4zVjMuM2gxNS40bTEuNS0xLjVIMS44djE4LjNoMTguM2wuMS0xOC4zeiIvPgogICAgPHBhdGggZD0iTTE2LjUgMTYuNWwtNS40LTQuMy01LjYgNC4zdi0xMWgxMXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-numbering: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTQgMTlINlYxOS41SDVWMjAuNUg2VjIxSDRWMjJIN1YxOEg0VjE5Wk01IDEwSDZWNkg0VjdINVYxMFpNNCAxM0g1LjhMNCAxNS4xVjE2SDdWMTVINS4yTDcgMTIuOVYxMkg0VjEzWk05IDdWOUgyM1Y3SDlaTTkgMjFIMjNWMTlIOVYyMVpNOSAxNUgyM1YxM0g5VjE1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-offline-bolt: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDIuMDJjLTUuNTEgMC05Ljk4IDQuNDctOS45OCA5Ljk4czQuNDcgOS45OCA5Ljk4IDkuOTggOS45OC00LjQ3IDkuOTgtOS45OFMxNy41MSAyLjAyIDEyIDIuMDJ6TTExLjQ4IDIwdi02LjI2SDhMMTMgNHY2LjI2aDMuMzVMMTEuNDggMjB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-palette: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE4IDEzVjIwSDRWNkg5LjAyQzkuMDcgNS4yOSA5LjI0IDQuNjIgOS41IDRINEMyLjkgNCAyIDQuOSAyIDZWMjBDMiAyMS4xIDIuOSAyMiA0IDIySDE4QzE5LjEgMjIgMjAgMjEuMSAyMCAyMFYxNUwxOCAxM1pNMTkuMyA4Ljg5QzE5Ljc0IDguMTkgMjAgNy4zOCAyMCA2LjVDMjAgNC4wMSAxNy45OSAyIDE1LjUgMkMxMy4wMSAyIDExIDQuMDEgMTEgNi41QzExIDguOTkgMTMuMDEgMTEgMTUuNDkgMTFDMTYuMzcgMTEgMTcuMTkgMTAuNzQgMTcuODggMTAuM0wyMSAxMy40MkwyMi40MiAxMkwxOS4zIDguODlaTTE1LjUgOUMxNC4xMiA5IDEzIDcuODggMTMgNi41QzEzIDUuMTIgMTQuMTIgNCAxNS41IDRDMTYuODggNCAxOCA1LjEyIDE4IDYuNUMxOCA3Ljg4IDE2Ljg4IDkgMTUuNSA5WiIvPgogICAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDZIOS4wMTg5NEM5LjAwNjM5IDYuMTY1MDIgOSA2LjMzMTc2IDkgNi41QzkgOC44MTU3NyAxMC4yMTEgMTAuODQ4NyAxMi4wMzQzIDEySDlWMTRIMTZWMTIuOTgxMUMxNi41NzAzIDEyLjkzNzcgMTcuMTIgMTIuODIwNyAxNy42Mzk2IDEyLjYzOTZMMTggMTNWMjBINFY2Wk04IDhINlYxMEg4VjhaTTYgMTJIOFYxNEg2VjEyWk04IDE2SDZWMThIOFYxNlpNOSAxNkgxNlYxOEg5VjE2WiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-paste: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE5IDJoLTQuMThDMTQuNC44NCAxMy4zIDAgMTIgMGMtMS4zIDAtMi40Ljg0LTIuODIgMkg1Yy0xLjEgMC0yIC45LTIgMnYxNmMwIDEuMS45IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjRjMC0xLjEtLjktMi0yLTJ6bS03IDBjLjU1IDAgMSAuNDUgMSAxcy0uNDUgMS0xIDEtMS0uNDUtMS0xIC40NS0xIDEtMXptNyAxOEg1VjRoMnYzaDEwVjRoMnYxNnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-pdf: url(data:image/svg+xml;base64,PHN2ZwogICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMiAyMiIgd2lkdGg9IjE2Ij4KICAgIDxwYXRoIHRyYW5zZm9ybT0icm90YXRlKDQ1KSIgY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI0ZGMkEyQSIKICAgICAgIGQ9Im0gMjIuMzQ0MzY5LC0zLjAxNjM2NDIgaCA1LjYzODYwNCB2IDEuNTc5MjQzMyBoIC0zLjU0OTIyNyB2IDEuNTA4NjkyOTkgaCAzLjMzNzU3NiBWIDEuNjUwODE1NCBoIC0zLjMzNzU3NiB2IDMuNDM1MjYxMyBoIC0yLjA4OTM3NyB6IG0gLTcuMTM2NDQ0LDEuNTc5MjQzMyB2IDQuOTQzOTU0MyBoIDAuNzQ4OTIgcSAxLjI4MDc2MSwwIDEuOTUzNzAzLC0wLjYzNDk1MzUgMC42NzgzNjksLTAuNjM0OTUzNSAwLjY3ODM2OSwtMS44NDUxNjQxIDAsLTEuMjA0NzgzNTUgLTAuNjcyOTQyLC0xLjgzNDMxMDExIC0wLjY3Mjk0MiwtMC42Mjk1MjY1OSAtMS45NTkxMywtMC42Mjk1MjY1OSB6IG0gLTIuMDg5Mzc3LC0xLjU3OTI0MzMgaCAyLjIwMzM0MyBxIDEuODQ1MTY0LDAgMi43NDYwMzksMC4yNjU5MjA3IDAuOTA2MzAxLDAuMjYwNDkzNyAxLjU1MjEwOCwwLjg5MDAyMDMgMC41Njk4MywwLjU0ODEyMjMgMC44NDY2MDUsMS4yNjQ0ODAwNiAwLjI3Njc3NCwwLjcxNjM1NzgxIDAuMjc2Nzc0LDEuNjIyNjU4OTQgMCwwLjkxNzE1NTEgLTAuMjc2Nzc0LDEuNjM4OTM5OSAtMC4yNzY3NzUsMC43MTYzNTc4IC0wLjg0NjYwNSwxLjI2NDQ4IC0wLjY1MTIzNCwwLjYyOTUyNjYgLTEuNTYyOTYyLDAuODk1NDQ3MyAtMC45MTE3MjgsMC4yNjA0OTM3IC0yLjczNTE4NSwwLjI2MDQ5MzcgaCAtMi4yMDMzNDMgeiBtIC04LjE0NTg1NjUsMCBoIDMuNDY3ODIzIHEgMS41NDY2ODE2LDAgMi4zNzE1Nzg1LDAuNjg5MjIzIDAuODMwMzI0LDAuNjgzNzk2MSAwLjgzMDMyNCwxLjk1MzcwMzE0IDAsMS4yNzUzMzM5NyAtMC44MzAzMjQsMS45NjQ1NTcwNiBRIDkuOTg3MTk2MSwyLjI3NDkxNSA4LjQ0MDUxNDUsMi4yNzQ5MTUgSCA3LjA2MjA2ODQgViA1LjA4NjA3NjcgSCA0Ljk3MjY5MTUgWiBtIDIuMDg5Mzc2OSwxLjUxNDExOTkgdiAyLjI2MzAzOTQzIGggMS4xNTU5NDEgcSAwLjYwNzgxODgsMCAwLjkzODg2MjksLTAuMjkzMDU1NDcgMC4zMzEwNDQxLC0wLjI5ODQ4MjQxIDAuMzMxMDQ0MSwtMC44NDExNzc3MiAwLC0wLjU0MjY5NTMxIC0wLjMzMTA0NDEsLTAuODM1NzUwNzQgLTAuMzMxMDQ0MSwtMC4yOTMwNTU1IC0wLjkzODg2MjksLTAuMjkzMDU1NSB6IgovPgo8L3N2Zz4K);\n  --jp-icon-python: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMEQ0N0ExIj4KICAgIDxwYXRoIGQ9Ik0xMS4xIDYuOVY1LjhINi45YzAtLjUgMC0xLjMuMi0xLjYuNC0uNy44LTEuMSAxLjctMS40IDEuNy0uMyAyLjUtLjMgMy45LS4xIDEgLjEgMS45LjkgMS45IDEuOXY0LjJjMCAuNS0uOSAxLjYtMiAxLjZIOC44Yy0xLjUgMC0yLjQgMS40LTIuNCAyLjh2Mi4ySDQuN0MzLjUgMTUuMSAzIDE0IDMgMTMuMVY5Yy0uMS0xIC42LTIgMS44LTIgMS41LS4xIDYuMy0uMSA2LjMtLjF6Ii8+CiAgICA8cGF0aCBkPSJNMTAuOSAxNS4xdjEuMWg0LjJjMCAuNSAwIDEuMy0uMiAxLjYtLjQuNy0uOCAxLjEtMS43IDEuNC0xLjcuMy0yLjUuMy0zLjkuMS0xLS4xLTEuOS0uOS0xLjktMS45di00LjJjMC0uNS45LTEuNiAyLTEuNmgzLjhjMS41IDAgMi40LTEuNCAyLjQtMi44VjYuNmgxLjdDMTguNSA2LjkgMTkgOCAxOSA4LjlWMTNjMCAxLS43IDIuMS0xLjkgMi4xaC02LjJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-r-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjE5NkYzIiBkPSJNNC40IDIuNWMxLjItLjEgMi45LS4zIDQuOS0uMyAyLjUgMCA0LjEuNCA1LjIgMS4zIDEgLjcgMS41IDEuOSAxLjUgMy41IDAgMi0xLjQgMy41LTIuOSA0LjEgMS4yLjQgMS43IDEuNiAyLjIgMyAuNiAxLjkgMSAzLjkgMS4zIDQuNmgtMy44Yy0uMy0uNC0uOC0xLjctMS4yLTMuN3MtMS4yLTIuNi0yLjYtMi42aC0uOXY2LjRINC40VjIuNXptMy43IDYuOWgxLjRjMS45IDAgMi45LS45IDIuOS0yLjNzLTEtMi4zLTIuOC0yLjNjLS43IDAtMS4zIDAtMS42LjJ2NC41aC4xdi0uMXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-react: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMTUwIDE1MCA1NDEuOSAyOTUuMyI+CiAgPGcgY2xhc3M9ImpwLWljb24tYnJhbmQyIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzYxREFGQiI+CiAgICA8cGF0aCBkPSJNNjY2LjMgMjk2LjVjMC0zMi41LTQwLjctNjMuMy0xMDMuMS04Mi40IDE0LjQtNjMuNiA4LTExNC4yLTIwLjItMTMwLjQtNi41LTMuOC0xNC4xLTUuNi0yMi40LTUuNnYyMi4zYzQuNiAwIDguMy45IDExLjQgMi42IDEzLjYgNy44IDE5LjUgMzcuNSAxNC45IDc1LjctMS4xIDkuNC0yLjkgMTkuMy01LjEgMjkuNC0xOS42LTQuOC00MS04LjUtNjMuNS0xMC45LTEzLjUtMTguNS0yNy41LTM1LjMtNDEuNi01MCAzMi42LTMwLjMgNjMuMi00Ni45IDg0LTQ2LjlWNzhjLTI3LjUgMC02My41IDE5LjYtOTkuOSA1My42LTM2LjQtMzMuOC03Mi40LTUzLjItOTkuOS01My4ydjIyLjNjMjAuNyAwIDUxLjQgMTYuNSA4NCA0Ni42LTE0IDE0LjctMjggMzEuNC00MS4zIDQ5LjktMjIuNiAyLjQtNDQgNi4xLTYzLjYgMTEtMi4zLTEwLTQtMTkuNy01LjItMjktNC43LTM4LjIgMS4xLTY3LjkgMTQuNi03NS44IDMtMS44IDYuOS0yLjYgMTEuNS0yLjZWNzguNWMtOC40IDAtMTYgMS44LTIyLjYgNS42LTI4LjEgMTYuMi0zNC40IDY2LjctMTkuOSAxMzAuMS02Mi4yIDE5LjItMTAyLjcgNDkuOS0xMDIuNyA4Mi4zIDAgMzIuNSA0MC43IDYzLjMgMTAzLjEgODIuNC0xNC40IDYzLjYtOCAxMTQuMiAyMC4yIDEzMC40IDYuNSAzLjggMTQuMSA1LjYgMjIuNSA1LjYgMjcuNSAwIDYzLjUtMTkuNiA5OS45LTUzLjYgMzYuNCAzMy44IDcyLjQgNTMuMiA5OS45IDUzLjIgOC40IDAgMTYtMS44IDIyLjYtNS42IDI4LjEtMTYuMiAzNC40LTY2LjcgMTkuOS0xMzAuMSA2Mi0xOS4xIDEwMi41LTQ5LjkgMTAyLjUtODIuM3ptLTEzMC4yLTY2LjdjLTMuNyAxMi45LTguMyAyNi4yLTEzLjUgMzkuNS00LjEtOC04LjQtMTYtMTMuMS0yNC00LjYtOC05LjUtMTUuOC0xNC40LTIzLjQgMTQuMiAyLjEgMjcuOSA0LjcgNDEgNy45em0tNDUuOCAxMDYuNWMtNy44IDEzLjUtMTUuOCAyNi4zLTI0LjEgMzguMi0xNC45IDEuMy0zMCAyLTQ1LjIgMi0xNS4xIDAtMzAuMi0uNy00NS0xLjktOC4zLTExLjktMTYuNC0yNC42LTI0LjItMzgtNy42LTEzLjEtMTQuNS0yNi40LTIwLjgtMzkuOCA2LjItMTMuNCAxMy4yLTI2LjggMjAuNy0zOS45IDcuOC0xMy41IDE1LjgtMjYuMyAyNC4xLTM4LjIgMTQuOS0xLjMgMzAtMiA0NS4yLTIgMTUuMSAwIDMwLjIuNyA0NSAxLjkgOC4zIDExLjkgMTYuNCAyNC42IDI0LjIgMzggNy42IDEzLjEgMTQuNSAyNi40IDIwLjggMzkuOC02LjMgMTMuNC0xMy4yIDI2LjgtMjAuNyAzOS45em0zMi4zLTEzYzUuNCAxMy40IDEwIDI2LjggMTMuOCAzOS44LTEzLjEgMy4yLTI2LjkgNS45LTQxLjIgOCA0LjktNy43IDkuOC0xNS42IDE0LjQtMjMuNyA0LjYtOCA4LjktMTYuMSAxMy0yNC4xek00MjEuMiA0MzBjLTkuMy05LjYtMTguNi0yMC4zLTI3LjgtMzIgOSAuNCAxOC4yLjcgMjcuNS43IDkuNCAwIDE4LjctLjIgMjcuOC0uNy05IDExLjctMTguMyAyMi40LTI3LjUgMzJ6bS03NC40LTU4LjljLTE0LjItMi4xLTI3LjktNC43LTQxLTcuOSAzLjctMTIuOSA4LjMtMjYuMiAxMy41LTM5LjUgNC4xIDggOC40IDE2IDEzLjEgMjQgNC43IDggOS41IDE1LjggMTQuNCAyMy40ek00MjAuNyAxNjNjOS4zIDkuNiAxOC42IDIwLjMgMjcuOCAzMi05LS40LTE4LjItLjctMjcuNS0uNy05LjQgMC0xOC43LjItMjcuOC43IDktMTEuNyAxOC4zLTIyLjQgMjcuNS0zMnptLTc0IDU4LjljLTQuOSA3LjctOS44IDE1LjYtMTQuNCAyMy43LTQuNiA4LTguOSAxNi0xMyAyNC01LjQtMTMuNC0xMC0yNi44LTEzLjgtMzkuOCAxMy4xLTMuMSAyNi45LTUuOCA0MS4yLTcuOXptLTkwLjUgMTI1LjJjLTM1LjQtMTUuMS01OC4zLTM0LjktNTguMy01MC42IDAtMTUuNyAyMi45LTM1LjYgNTguMy01MC42IDguNi0zLjcgMTgtNyAyNy43LTEwLjEgNS43IDE5LjYgMTMuMiA0MCAyMi41IDYwLjktOS4yIDIwLjgtMTYuNiA0MS4xLTIyLjIgNjAuNi05LjktMy4xLTE5LjMtNi41LTI4LTEwLjJ6TTMxMCA0OTBjLTEzLjYtNy44LTE5LjUtMzcuNS0xNC45LTc1LjcgMS4xLTkuNCAyLjktMTkuMyA1LjEtMjkuNCAxOS42IDQuOCA0MSA4LjUgNjMuNSAxMC45IDEzLjUgMTguNSAyNy41IDM1LjMgNDEuNiA1MC0zMi42IDMwLjMtNjMuMiA0Ni45LTg0IDQ2LjktNC41LS4xLTguMy0xLTExLjMtMi43em0yMzcuMi03Ni4yYzQuNyAzOC4yLTEuMSA2Ny45LTE0LjYgNzUuOC0zIDEuOC02LjkgMi42LTExLjUgMi42LTIwLjcgMC01MS40LTE2LjUtODQtNDYuNiAxNC0xNC43IDI4LTMxLjQgNDEuMy00OS45IDIyLjYtMi40IDQ0LTYuMSA2My42LTExIDIuMyAxMC4xIDQuMSAxOS44IDUuMiAyOS4xem0zOC41LTY2LjdjLTguNiAzLjctMTggNy0yNy43IDEwLjEtNS43LTE5LjYtMTMuMi00MC0yMi41LTYwLjkgOS4yLTIwLjggMTYuNi00MS4xIDIyLjItNjAuNiA5LjkgMy4xIDE5LjMgNi41IDI4LjEgMTAuMiAzNS40IDE1LjEgNTguMyAzNC45IDU4LjMgNTAuNi0uMSAxNS43LTIzIDM1LjYtNTguNCA1MC42ek0zMjAuOCA3OC40eiIvPgogICAgPGNpcmNsZSBjeD0iNDIwLjkiIGN5PSIyOTYuNSIgcj0iNDUuNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-redo: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTE4LjQgMTAuNkMxNi41NSA4Ljk5IDE0LjE1IDggMTEuNSA4Yy00LjY1IDAtOC41OCAzLjAzLTkuOTYgNy4yMkwzLjkgMTZjMS4wNS0zLjE5IDQuMDUtNS41IDcuNi01LjUgMS45NSAwIDMuNzMuNzIgNS4xMiAxLjg4TDEzIDE2aDlWN2wtMy42IDMuNnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-refresh: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTkgMTMuNWMtMi40OSAwLTQuNS0yLjAxLTQuNS00LjVTNi41MSA0LjUgOSA0LjVjMS4yNCAwIDIuMzYuNTIgMy4xNyAxLjMzTDEwIDhoNVYzbC0xLjc2IDEuNzZDMTIuMTUgMy42OCAxMC42NiAzIDkgMyA1LjY5IDMgMy4wMSA1LjY5IDMuMDEgOVM1LjY5IDE1IDkgMTVjMi45NyAwIDUuNDMtMi4xNiA1LjktNWgtMS41MmMtLjQ2IDItMi4yNCAzLjUtNC4zOCAzLjV6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-regex: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi1hY2NlbnQyIiBmaWxsPSIjRkZGIj4KICAgIDxjaXJjbGUgY2xhc3M9InN0MiIgY3g9IjUuNSIgY3k9IjE0LjUiIHI9IjEuNSIvPgogICAgPHJlY3QgeD0iMTIiIHk9IjQiIGNsYXNzPSJzdDIiIHdpZHRoPSIxIiBoZWlnaHQ9IjgiLz4KICAgIDxyZWN0IHg9IjguNSIgeT0iNy41IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjg2NiAtMC41IDAuNSAwLjg2NiAtMi4zMjU1IDcuMzIxOSkiIGNsYXNzPSJzdDIiIHdpZHRoPSI4IiBoZWlnaHQ9IjEiLz4KICAgIDxyZWN0IHg9IjEyIiB5PSI0IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjUgLTAuODY2IDAuODY2IDAuNSAtMC42Nzc5IDE0LjgyNTIpIiBjbGFzcz0ic3QyIiB3aWR0aD0iMSIgaGVpZ2h0PSI4Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-run: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTggNXYxNGwxMS03eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-running: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptOTYgMzI4YzAgOC44LTcuMiAxNi0xNiAxNkgxNzZjLTguOCAwLTE2LTcuMi0xNi0xNlYxNzZjMC04LjggNy4yLTE2IDE2LTE2aDE2MGM4LjggMCAxNiA3LjIgMTYgMTZ2MTYweiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-save: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE3IDNINWMtMS4xMSAwLTIgLjktMiAydjE0YzAgMS4xLjg5IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjdsLTQtNHptLTUgMTZjLTEuNjYgMC0zLTEuMzQtMy0zczEuMzQtMyAzLTMgMyAxLjM0IDMgMy0xLjM0IDMtMyAzem0zLTEwSDVWNWgxMHY0eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-search: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjEsMTAuOWgtMC43bC0wLjItMC4yYzAuOC0wLjksMS4zLTIuMiwxLjMtMy41YzAtMy0yLjQtNS40LTUuNC01LjRTMS44LDQuMiwxLjgsNy4xczIuNCw1LjQsNS40LDUuNCBjMS4zLDAsMi41LTAuNSwzLjUtMS4zbDAuMiwwLjJ2MC43bDQuMSw0LjFsMS4yLTEuMkwxMi4xLDEwLjl6IE03LjEsMTAuOWMtMi4xLDAtMy43LTEuNy0zLjctMy43czEuNy0zLjcsMy43LTMuN3MzLjcsMS43LDMuNywzLjcgUzkuMiwxMC45LDcuMSwxMC45eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-settings: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuNDMgMTIuOThjLjA0LS4zMi4wNy0uNjQuMDctLjk4cy0uMDMtLjY2LS4wNy0uOThsMi4xMS0xLjY1Yy4xOS0uMTUuMjQtLjQyLjEyLS42NGwtMi0zLjQ2Yy0uMTItLjIyLS4zOS0uMy0uNjEtLjIybC0yLjQ5IDFjLS41Mi0uNC0xLjA4LS43My0xLjY5LS45OGwtLjM4LTIuNjVBLjQ4OC40ODggMCAwMDE0IDJoLTRjLS4yNSAwLS40Ni4xOC0uNDkuNDJsLS4zOCAyLjY1Yy0uNjEuMjUtMS4xNy41OS0xLjY5Ljk4bC0yLjQ5LTFjLS4yMy0uMDktLjQ5IDAtLjYxLjIybC0yIDMuNDZjLS4xMy4yMi0uMDcuNDkuMTIuNjRsMi4xMSAxLjY1Yy0uMDQuMzItLjA3LjY1LS4wNy45OHMuMDMuNjYuMDcuOThsLTIuMTEgMS42NWMtLjE5LjE1LS4yNC40Mi0uMTIuNjRsMiAzLjQ2Yy4xMi4yMi4zOS4zLjYxLjIybDIuNDktMWMuNTIuNCAxLjA4LjczIDEuNjkuOThsLjM4IDIuNjVjLjAzLjI0LjI0LjQyLjQ5LjQyaDRjLjI1IDAgLjQ2LS4xOC40OS0uNDJsLjM4LTIuNjVjLjYxLS4yNSAxLjE3LS41OSAxLjY5LS45OGwyLjQ5IDFjLjIzLjA5LjQ5IDAgLjYxLS4yMmwyLTMuNDZjLjEyLS4yMi4wNy0uNDktLjEyLS42NGwtMi4xMS0xLjY1ek0xMiAxNS41Yy0xLjkzIDAtMy41LTEuNTctMy41LTMuNXMxLjU3LTMuNSAzLjUtMy41IDMuNSAxLjU3IDMuNSAzLjUtMS41NyAzLjUtMy41IDMuNXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-spreadsheet: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNENBRjUwIiBkPSJNMi4yIDIuMnYxNy42aDE3LjZWMi4ySDIuMnptMTUuNCA3LjdoLTUuNVY0LjRoNS41djUuNXpNOS45IDQuNHY1LjVINC40VjQuNGg1LjV6bS01LjUgNy43aDUuNXY1LjVINC40di01LjV6bTcuNyA1LjV2LTUuNWg1LjV2NS41aC01LjV6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-stop: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik02IDZoMTJ2MTJINnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tab: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIxIDNIM2MtMS4xIDAtMiAuOS0yIDJ2MTRjMCAxLjEuOSAyIDIgMmgxOGMxLjEgMCAyLS45IDItMlY1YzAtMS4xLS45LTItMi0yem0wIDE2SDNWNWgxMHY0aDh2MTB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-table-rows: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMSw4SDNWNGgxOFY4eiBNMjEsMTBIM3Y0aDE4VjEweiBNMjEsMTZIM3Y0aDE4VjE2eiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-tag: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCA0MyAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTI4LjgzMzIgMTIuMzM0TDMyLjk5OTggMTYuNTAwN0wzNy4xNjY1IDEyLjMzNEgyOC44MzMyWiIvPgoJCTxwYXRoIGQ9Ik0xNi4yMDk1IDIxLjYxMDRDMTUuNjg3MyAyMi4xMjk5IDE0Ljg0NDMgMjIuMTI5OSAxNC4zMjQ4IDIxLjYxMDRMNi45ODI5IDE0LjcyNDVDNi41NzI0IDE0LjMzOTQgNi4wODMxMyAxMy42MDk4IDYuMDQ3ODYgMTMuMDQ4MkM1Ljk1MzQ3IDExLjUyODggNi4wMjAwMiA4LjYxOTQ0IDYuMDY2MjEgNy4wNzY5NUM2LjA4MjgxIDYuNTE0NzcgNi41NTU0OCA2LjA0MzQ3IDcuMTE4MDQgNi4wMzA1NUM5LjA4ODYzIDUuOTg0NzMgMTMuMjYzOCA1LjkzNTc5IDEzLjY1MTggNi4zMjQyNUwyMS43MzY5IDEzLjYzOUMyMi4yNTYgMTQuMTU4NSAyMS43ODUxIDE1LjQ3MjQgMjEuMjYyIDE1Ljk5NDZMMTYuMjA5NSAyMS42MTA0Wk05Ljc3NTg1IDguMjY1QzkuMzM1NTEgNy44MjU2NiA4LjYyMzUxIDcuODI1NjYgOC4xODI4IDguMjY1QzcuNzQzNDYgOC43MDU3MSA3Ljc0MzQ2IDkuNDE3MzMgOC4xODI4IDkuODU2NjdDOC42MjM4MiAxMC4yOTY0IDkuMzM1ODIgMTAuMjk2NCA5Ljc3NTg1IDkuODU2NjdDMTAuMjE1NiA5LjQxNzMzIDEwLjIxNTYgOC43MDUzMyA5Ljc3NTg1IDguMjY1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-terminal: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiA+CiAgICA8cmVjdCBjbGFzcz0ianAtaWNvbjIganAtaWNvbi1zZWxlY3RhYmxlIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMikiIGZpbGw9IiMzMzMzMzMiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uLWFjY2VudDIganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGQ9Ik01LjA1NjY0IDguNzYxNzJDNS4wNTY2NCA4LjU5NzY2IDUuMDMxMjUgOC40NTMxMiA0Ljk4MDQ3IDguMzI4MTJDNC45MzM1OSA4LjE5OTIyIDQuODU1NDcgOC4wODIwMyA0Ljc0NjA5IDcuOTc2NTZDNC42NDA2MiA3Ljg3MTA5IDQuNSA3Ljc3NTM5IDQuMzI0MjIgNy42ODk0NUM0LjE1MjM0IDcuNTk5NjEgMy45NDMzNiA3LjUxMTcyIDMuNjk3MjcgNy40MjU3OEMzLjMwMjczIDcuMjg1MTYgMi45NDMzNiA3LjEzNjcyIDIuNjE5MTQgNi45ODA0N0MyLjI5NDkyIDYuODI0MjIgMi4wMTc1OCA2LjY0MjU4IDEuNzg3MTEgNi40MzU1NUMxLjU2MDU1IDYuMjI4NTIgMS4zODQ3NyA1Ljk4ODI4IDEuMjU5NzcgNS43MTQ4NEMxLjEzNDc3IDUuNDM3NSAxLjA3MjI3IDUuMTA5MzggMS4wNzIyNyA0LjczMDQ3QzEuMDcyMjcgNC4zOTg0NCAxLjEyODkxIDQuMDk1NyAxLjI0MjE5IDMuODIyMjdDMS4zNTU0NyAzLjU0NDkyIDEuNTE1NjIgMy4zMDQ2OSAxLjcyMjY2IDMuMTAxNTZDMS45Mjk2OSAyLjg5ODQ0IDIuMTc5NjkgMi43MzQzNyAyLjQ3MjY2IDIuNjA5MzhDMi43NjU2MiAyLjQ4NDM4IDMuMDkxOCAyLjQwNDMgMy40NTExNyAyLjM2OTE0VjEuMTA5MzhINC4zODg2N1YyLjM4MDg2QzQuNzQwMjMgMi40Mjc3MyA1LjA1NjY0IDIuNTIzNDQgNS4zMzc4OSAyLjY2Nzk3QzUuNjE5MTQgMi44MTI1IDUuODU3NDIgMy4wMDE5NSA2LjA1MjczIDMuMjM2MzNDNi4yNTE5NSAzLjQ2NjggNi40MDQzIDMuNzQwMjMgNi41MDk3NyA0LjA1NjY0QzYuNjE5MTQgNC4zNjkxNCA2LjY3MzgzIDQuNzIwNyA2LjY3MzgzIDUuMTExMzNINS4wNDQ5MkM1LjA0NDkyIDQuNjM4NjcgNC45Mzc1IDQuMjgxMjUgNC43MjI2NiA0LjAzOTA2QzQuNTA3ODEgMy43OTI5NyA0LjIxNjggMy42Njk5MiAzLjg0OTYxIDMuNjY5OTJDMy42NTAzOSAzLjY2OTkyIDMuNDc2NTYgMy42OTcyNyAzLjMyODEyIDMuNzUxOTVDMy4xODM1OSAzLjgwMjczIDMuMDY0NDUgMy44NzY5NSAyLjk3MDcgMy45NzQ2MUMyLjg3Njk1IDQuMDY4MzYgMi44MDY2NCA0LjE3OTY5IDIuNzU5NzcgNC4zMDg1OUMyLjcxNjggNC40Mzc1IDIuNjk1MzEgNC41NzgxMiAyLjY5NTMxIDQuNzMwNDdDMi42OTUzMSA0Ljg4MjgxIDIuNzE2OCA1LjAxOTUzIDIuNzU5NzcgNS4xNDA2MkMyLjgwNjY0IDUuMjU3ODEgMi44ODI4MSA1LjM2NzE5IDIuOTg4MjggNS40Njg3NUMzLjA5NzY2IDUuNTcwMzEgMy4yNDAyMyA1LjY2Nzk3IDMuNDE2MDIgNS43NjE3MkMzLjU5MTggNS44NTE1NiAzLjgxMDU1IDUuOTQzMzYgNC4wNzIyNyA2LjAzNzExQzQuNDY2OCA2LjE4NTU1IDQuODI0MjIgNi4zMzk4NCA1LjE0NDUzIDYuNUM1LjQ2NDg0IDYuNjU2MjUgNS43MzgyOCA2LjgzOTg0IDUuOTY0ODQgNy4wNTA3OEM2LjE5NTMxIDcuMjU3ODEgNi4zNzEwOSA3LjUgNi40OTIxOSA3Ljc3NzM0QzYuNjE3MTkgOC4wNTA3OCA2LjY3OTY5IDguMzc1IDYuNjc5NjkgOC43NUM2LjY3OTY5IDkuMDkzNzUgNi42MjMwNSA5LjQwNDMgNi41MDk3NyA5LjY4MTY0QzYuMzk2NDggOS45NTUwOCA2LjIzNDM4IDEwLjE5MTQgNi4wMjM0NCAxMC4zOTA2QzUuODEyNSAxMC41ODk4IDUuNTU4NTkgMTAuNzUgNS4yNjE3MiAxMC44NzExQzQuOTY0ODQgMTAuOTg4MyA0LjYzMjgxIDExLjA2NDUgNC4yNjU2MiAxMS4wOTk2VjEyLjI0OEgzLjMzMzk4VjExLjA5OTZDMy4wMDE5NSAxMS4wNjg0IDIuNjc5NjkgMTAuOTk2MSAyLjM2NzE5IDEwLjg4MjhDMi4wNTQ2OSAxMC43NjU2IDEuNzc3MzQgMTAuNTk3NyAxLjUzNTE2IDEwLjM3ODlDMS4yOTY4OCAxMC4xNjAyIDEuMTA1NDcgOS44ODQ3NyAwLjk2MDkzOCA5LjU1MjczQzAuODE2NDA2IDkuMjE2OCAwLjc0NDE0MSA4LjgxNDQ1IDAuNzQ0MTQxIDguMzQ1N0gyLjM3ODkxQzIuMzc4OTEgOC42MjY5NSAyLjQxOTkyIDguODYzMjggMi41MDE5NSA5LjA1NDY5QzIuNTgzOTggOS4yNDIxOSAyLjY4OTQ1IDkuMzkyNTggMi44MTgzNiA5LjUwNTg2QzIuOTUxMTcgOS42MTUyMyAzLjEwMTU2IDkuNjkzMzYgMy4yNjk1MyA5Ljc0MDIzQzMuNDM3NSA5Ljc4NzExIDMuNjA5MzggOS44MTA1NSAzLjc4NTE2IDkuODEwNTVDNC4yMDMxMiA5LjgxMDU1IDQuNTE5NTMgOS43MTI4OSA0LjczNDM4IDkuNTE3NThDNC45NDkyMiA5LjMyMjI3IDUuMDU2NjQgOS4wNzAzMSA1LjA1NjY0IDguNzYxNzJaTTEzLjQxOCAxMi4yNzE1SDguMDc0MjJWMTFIMTMuNDE4VjEyLjI3MTVaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzLjk1MjY0IDYpIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);\n  --jp-icon-text-editor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTUgMTVIM3YyaDEydi0yem0wLThIM3YyaDEyVjd6TTMgMTNoMTh2LTJIM3Yyem0wIDhoMTh2LTJIM3Yyek0zIDN2MmgxOFYzSDN6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-toc: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik03LDVIMjFWN0g3VjVNNywxM1YxMUgyMVYxM0g3TTQsNC41QTEuNSwxLjUgMCAwLDEgNS41LDZBMS41LDEuNSAwIDAsMSA0LDcuNUExLjUsMS41IDAgMCwxIDIuNSw2QTEuNSwxLjUgMCAwLDEgNCw0LjVNNCwxMC41QTEuNSwxLjUgMCAwLDEgNS41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMy41QTEuNSwxLjUgMCAwLDEgMi41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMC41TTcsMTlWMTdIMjFWMTlIN000LDE2LjVBMS41LDEuNSAwIDAsMSA1LjUsMThBMS41LDEuNSAwIDAsMSA0LDE5LjVBMS41LDEuNSAwIDAsMSAyLjUsMThBMS41LDEuNSAwIDAsMSA0LDE2LjVaIiAvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tree-view: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMiAxMVYzaC03djNIOVYzSDJ2OGg3VjhoMnYxMGg0djNoN3YtOGgtN3YzaC0yVjhoMnYzeiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMiAxNy4xODQ0IDIuOTY5NjggMTQuMzAzMiAxLjg2MDk0IDExLjQ0MDlaIi8+CiAgICA8cGF0aCBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiMzMzMzMzMiIHN0cm9rZT0iIzMzMzMzMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA5Ljg2NzE5KSIgZD0iTTIuODYwMTUgNC44NjUzNUwwLjcyNjU0OSAyLjk5OTU5TDAgMy42MzA0NUwyLjg2MDE1IDYuMTMxNTdMOCAwLjYzMDg3Mkw3LjI3ODU3IDBMMi44NjAxNSA0Ljg2NTM1WiIvPgo8L3N2Zz4K);\n  --jp-icon-undo: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjUgOGMtMi42NSAwLTUuMDUuOTktNi45IDIuNkwyIDd2OWg5bC0zLjYyLTMuNjJjMS4zOS0xLjE2IDMuMTYtMS44OCA1LjEyLTEuODggMy41NCAwIDYuNTUgMi4zMSA3LjYgNS41bDIuMzctLjc4QzIxLjA4IDExLjAzIDE3LjE1IDggMTIuNSA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-vega: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbjEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjEyMTIxIj4KICAgIDxwYXRoIGQ9Ik0xMC42IDUuNGwyLjItMy4ySDIuMnY3LjNsNC02LjZ6Ii8+CiAgICA8cGF0aCBkPSJNMTUuOCAyLjJsLTQuNCA2LjZMNyA2LjNsLTQuOCA4djUuNWgxNy42VjIuMmgtNHptLTcgMTUuNEg1LjV2LTQuNGgzLjN2NC40em00LjQgMEg5LjhWOS44aDMuNHY3Ljh6bTQuNCAwaC0zLjRWNi41aDMuNHYxMS4xeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-yaml: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1jb250cmFzdDIganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjRDgxQjYwIj4KICAgIDxwYXRoIGQ9Ik03LjIgMTguNnYtNS40TDMgNS42aDMuM2wxLjQgMy4xYy4zLjkuNiAxLjYgMSAyLjUuMy0uOC42LTEuNiAxLTIuNWwxLjQtMy4xaDMuNGwtNC40IDcuNnY1LjVsLTIuOS0uMXoiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxNi41IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxMSIgcj0iMi4xIi8+CiAgPC9nPgo8L3N2Zz4K);\n}\n\n/* Icon CSS class declarations */\n\n.jp-AddIcon {\n  background-image: var(--jp-icon-add);\n}\n.jp-BugIcon {\n  background-image: var(--jp-icon-bug);\n}\n.jp-BuildIcon {\n  background-image: var(--jp-icon-build);\n}\n.jp-CaretDownEmptyIcon {\n  background-image: var(--jp-icon-caret-down-empty);\n}\n.jp-CaretDownEmptyThinIcon {\n  background-image: var(--jp-icon-caret-down-empty-thin);\n}\n.jp-CaretDownIcon {\n  background-image: var(--jp-icon-caret-down);\n}\n.jp-CaretLeftIcon {\n  background-image: var(--jp-icon-caret-left);\n}\n.jp-CaretRightIcon {\n  background-image: var(--jp-icon-caret-right);\n}\n.jp-CaretUpEmptyThinIcon {\n  background-image: var(--jp-icon-caret-up-empty-thin);\n}\n.jp-CaretUpIcon {\n  background-image: var(--jp-icon-caret-up);\n}\n.jp-CaseSensitiveIcon {\n  background-image: var(--jp-icon-case-sensitive);\n}\n.jp-CheckIcon {\n  background-image: var(--jp-icon-check);\n}\n.jp-CircleEmptyIcon {\n  background-image: var(--jp-icon-circle-empty);\n}\n.jp-CircleIcon {\n  background-image: var(--jp-icon-circle);\n}\n.jp-ClearIcon {\n  background-image: var(--jp-icon-clear);\n}\n.jp-CloseIcon {\n  background-image: var(--jp-icon-close);\n}\n.jp-CodeIcon {\n  background-image: var(--jp-icon-code);\n}\n.jp-ConsoleIcon {\n  background-image: var(--jp-icon-console);\n}\n.jp-CopyIcon {\n  background-image: var(--jp-icon-copy);\n}\n.jp-CopyrightIcon {\n  background-image: var(--jp-icon-copyright);\n}\n.jp-CutIcon {\n  background-image: var(--jp-icon-cut);\n}\n.jp-DownloadIcon {\n  background-image: var(--jp-icon-download);\n}\n.jp-EditIcon {\n  background-image: var(--jp-icon-edit);\n}\n.jp-EllipsesIcon {\n  background-image: var(--jp-icon-ellipses);\n}\n.jp-ExtensionIcon {\n  background-image: var(--jp-icon-extension);\n}\n.jp-FastForwardIcon {\n  background-image: var(--jp-icon-fast-forward);\n}\n.jp-FileIcon {\n  background-image: var(--jp-icon-file);\n}\n.jp-FileUploadIcon {\n  background-image: var(--jp-icon-file-upload);\n}\n.jp-FilterListIcon {\n  background-image: var(--jp-icon-filter-list);\n}\n.jp-FolderIcon {\n  background-image: var(--jp-icon-folder);\n}\n.jp-Html5Icon {\n  background-image: var(--jp-icon-html5);\n}\n.jp-ImageIcon {\n  background-image: var(--jp-icon-image);\n}\n.jp-InspectorIcon {\n  background-image: var(--jp-icon-inspector);\n}\n.jp-JsonIcon {\n  background-image: var(--jp-icon-json);\n}\n.jp-JuliaIcon {\n  background-image: var(--jp-icon-julia);\n}\n.jp-JupyterFaviconIcon {\n  background-image: var(--jp-icon-jupyter-favicon);\n}\n.jp-JupyterIcon {\n  background-image: var(--jp-icon-jupyter);\n}\n.jp-JupyterlabWordmarkIcon {\n  background-image: var(--jp-icon-jupyterlab-wordmark);\n}\n.jp-KernelIcon {\n  background-image: var(--jp-icon-kernel);\n}\n.jp-KeyboardIcon {\n  background-image: var(--jp-icon-keyboard);\n}\n.jp-LauncherIcon {\n  background-image: var(--jp-icon-launcher);\n}\n.jp-LineFormIcon {\n  background-image: var(--jp-icon-line-form);\n}\n.jp-LinkIcon {\n  background-image: var(--jp-icon-link);\n}\n.jp-ListIcon {\n  background-image: var(--jp-icon-list);\n}\n.jp-ListingsInfoIcon {\n  background-image: var(--jp-icon-listings-info);\n}\n.jp-MarkdownIcon {\n  background-image: var(--jp-icon-markdown);\n}\n.jp-NewFolderIcon {\n  background-image: var(--jp-icon-new-folder);\n}\n.jp-NotTrustedIcon {\n  background-image: var(--jp-icon-not-trusted);\n}\n.jp-NotebookIcon {\n  background-image: var(--jp-icon-notebook);\n}\n.jp-NumberingIcon {\n  background-image: var(--jp-icon-numbering);\n}\n.jp-OfflineBoltIcon {\n  background-image: var(--jp-icon-offline-bolt);\n}\n.jp-PaletteIcon {\n  background-image: var(--jp-icon-palette);\n}\n.jp-PasteIcon {\n  background-image: var(--jp-icon-paste);\n}\n.jp-PdfIcon {\n  background-image: var(--jp-icon-pdf);\n}\n.jp-PythonIcon {\n  background-image: var(--jp-icon-python);\n}\n.jp-RKernelIcon {\n  background-image: var(--jp-icon-r-kernel);\n}\n.jp-ReactIcon {\n  background-image: var(--jp-icon-react);\n}\n.jp-RedoIcon {\n  background-image: var(--jp-icon-redo);\n}\n.jp-RefreshIcon {\n  background-image: var(--jp-icon-refresh);\n}\n.jp-RegexIcon {\n  background-image: var(--jp-icon-regex);\n}\n.jp-RunIcon {\n  background-image: var(--jp-icon-run);\n}\n.jp-RunningIcon {\n  background-image: var(--jp-icon-running);\n}\n.jp-SaveIcon {\n  background-image: var(--jp-icon-save);\n}\n.jp-SearchIcon {\n  background-image: var(--jp-icon-search);\n}\n.jp-SettingsIcon {\n  background-image: var(--jp-icon-settings);\n}\n.jp-SpreadsheetIcon {\n  background-image: var(--jp-icon-spreadsheet);\n}\n.jp-StopIcon {\n  background-image: var(--jp-icon-stop);\n}\n.jp-TabIcon {\n  background-image: var(--jp-icon-tab);\n}\n.jp-TableRowsIcon {\n  background-image: var(--jp-icon-table-rows);\n}\n.jp-TagIcon {\n  background-image: var(--jp-icon-tag);\n}\n.jp-TerminalIcon {\n  background-image: var(--jp-icon-terminal);\n}\n.jp-TextEditorIcon {\n  background-image: var(--jp-icon-text-editor);\n}\n.jp-TocIcon {\n  background-image: var(--jp-icon-toc);\n}\n.jp-TreeViewIcon {\n  background-image: var(--jp-icon-tree-view);\n}\n.jp-TrustedIcon {\n  background-image: var(--jp-icon-trusted);\n}\n.jp-UndoIcon {\n  background-image: var(--jp-icon-undo);\n}\n.jp-VegaIcon {\n  background-image: var(--jp-icon-vega);\n}\n.jp-YamlIcon {\n  background-image: var(--jp-icon-yaml);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n.jp-Icon,\n.jp-MaterialIcon {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-cover {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: cover;\n}\n\n/**\n * (DEPRECATED) Support for specific CSS icon sizes\n */\n\n.jp-Icon-16 {\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-18 {\n  background-size: 18px;\n  min-width: 18px;\n  min-height: 18px;\n}\n\n.jp-Icon-20 {\n  background-size: 20px;\n  min-width: 20px;\n  min-height: 20px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for icons as inline SVG HTMLElements\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n/* recolor the accent elements of an icon */\n.jp-icon-accent0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-accent1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-accent2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-accent3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-accent4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-accent0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-accent1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-accent2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-accent3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-accent4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n/* set the color of an icon to transparent */\n.jp-icon-none[fill] {\n  fill: none;\n}\n\n.jp-icon-none[stroke] {\n  stroke: none;\n}\n/* brand icon colors. Same for light and dark */\n.jp-icon-brand0[fill] {\n  fill: var(--jp-brand-color0);\n}\n.jp-icon-brand1[fill] {\n  fill: var(--jp-brand-color1);\n}\n.jp-icon-brand2[fill] {\n  fill: var(--jp-brand-color2);\n}\n.jp-icon-brand3[fill] {\n  fill: var(--jp-brand-color3);\n}\n.jp-icon-brand4[fill] {\n  fill: var(--jp-brand-color4);\n}\n\n.jp-icon-brand0[stroke] {\n  stroke: var(--jp-brand-color0);\n}\n.jp-icon-brand1[stroke] {\n  stroke: var(--jp-brand-color1);\n}\n.jp-icon-brand2[stroke] {\n  stroke: var(--jp-brand-color2);\n}\n.jp-icon-brand3[stroke] {\n  stroke: var(--jp-brand-color3);\n}\n.jp-icon-brand4[stroke] {\n  stroke: var(--jp-brand-color4);\n}\n/* warn icon colors. Same for light and dark */\n.jp-icon-warn0[fill] {\n  fill: var(--jp-warn-color0);\n}\n.jp-icon-warn1[fill] {\n  fill: var(--jp-warn-color1);\n}\n.jp-icon-warn2[fill] {\n  fill: var(--jp-warn-color2);\n}\n.jp-icon-warn3[fill] {\n  fill: var(--jp-warn-color3);\n}\n\n.jp-icon-warn0[stroke] {\n  stroke: var(--jp-warn-color0);\n}\n.jp-icon-warn1[stroke] {\n  stroke: var(--jp-warn-color1);\n}\n.jp-icon-warn2[stroke] {\n  stroke: var(--jp-warn-color2);\n}\n.jp-icon-warn3[stroke] {\n  stroke: var(--jp-warn-color3);\n}\n/* icon colors that contrast well with each other and most backgrounds */\n.jp-icon-contrast0[fill] {\n  fill: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[fill] {\n  fill: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[fill] {\n  fill: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[fill] {\n  fill: var(--jp-icon-contrast-color3);\n}\n\n.jp-icon-contrast0[stroke] {\n  stroke: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[stroke] {\n  stroke: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[stroke] {\n  stroke: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[stroke] {\n  stroke: var(--jp-icon-contrast-color3);\n}\n\n/* CSS for icons in selected items in the settings editor */\n#setting-editor .jp-PluginList .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n#setting-editor\n  .jp-PluginList\n  .jp-mod-selected\n  .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected filebrowser listing items */\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected tabs in the sidebar tab manager */\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable-inverse[fill] {\n  fill: #fff;\n}\n\n/**\n * TODO: come up with non css-hack solution for showing the busy icon on top\n *  of the close icon\n * CSS for complex behavior of close icon of tabs in the sidebar tab manager\n */\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty.jp-mod-active\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: #fff;\n}\n\n/**\n* TODO: come up with non css-hack solution for showing the busy icon on top\n*  of the close icon\n* CSS for complex behavior of close icon of tabs in the main area tabbar\n*/\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n/* CSS for icons in status bar */\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n/* special handling for splash icon CSS. While the theme CSS reloads during\n   splash, the splash icon can loose theming. To prevent that, we set a\n   default for its color variable */\n:root {\n  --jp-warn-color0: var(--md-orange-700);\n}\n\n/* not sure what to do with this one, used in filebrowser listing */\n.jp-DragIcon {\n  margin-right: 4px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for alt colors for icons as inline SVG HTMLElements\n */\n\n/* alt recolor the primary elements of an icon */\n.jp-icon-alt .jp-icon0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-alt .jp-icon0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* alt recolor the accent elements of an icon */\n.jp-icon-alt .jp-icon-accent0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-alt .jp-icon-accent0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-icon-hoverShow:not(:hover) svg {\n  display: none !important;\n}\n\n/**\n * Support for hover colors for icons as inline SVG HTMLElements\n */\n\n/**\n * regular colors\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon-hover :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/* recolor the accent elements of an icon */\n.jp-icon-hover :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* set the color of an icon to transparent */\n.jp-icon-hover :hover .jp-icon-none-hover[fill] {\n  fill: none;\n}\n\n.jp-icon-hover :hover .jp-icon-none-hover[stroke] {\n  stroke: none;\n}\n\n/**\n * inverse colors\n */\n\n/* inverse recolor the primary elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* inverse recolor the accent elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-switch {\n  display: flex;\n  align-items: center;\n  padding-left: 4px;\n  padding-right: 4px;\n  font-size: var(--jp-ui-font-size1);\n  background-color: transparent;\n  color: var(--jp-ui-font-color1);\n  border: none;\n  height: 20px;\n}\n\n.jp-switch:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-switch-label {\n  margin-right: 5px;\n}\n\n.jp-switch-track {\n  cursor: pointer;\n  background-color: var(--jp-border-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 34px;\n  height: 16px;\n  width: 35px;\n  position: relative;\n}\n\n.jp-switch-track::before {\n  content: '';\n  position: absolute;\n  height: 10px;\n  width: 10px;\n  margin: 3px;\n  left: 0px;\n  background-color: var(--jp-ui-inverse-font-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 50%;\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track {\n  background-color: var(--jp-warn-color0);\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track::before {\n  /* track width (35) - margins (3 + 3) - thumb width (10) */\n  left: 19px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* Sibling imports */\n\n/* Override Blueprint's _reset.scss styles */\nhtml {\n  box-sizing: unset;\n}\n\n*,\n*::before,\n*::after {\n  box-sizing: unset;\n}\n\nbody {\n  color: unset;\n  font-family: var(--jp-ui-font-family);\n}\n\np {\n  margin-top: unset;\n  margin-bottom: unset;\n}\n\nsmall {\n  font-size: unset;\n}\n\nstrong {\n  font-weight: unset;\n}\n\n/* Override Blueprint's _typography.scss styles */\na {\n  text-decoration: unset;\n  color: unset;\n}\na:hover {\n  text-decoration: unset;\n  color: unset;\n}\n\n/* Override Blueprint's _accessibility.scss styles */\n:focus {\n  outline: unset;\n  outline-offset: unset;\n  -moz-outline-radius: unset;\n}\n\n/* Styles for ui-components */\n.jp-Button {\n  border-radius: var(--jp-border-radius);\n  padding: 0px 12px;\n  font-size: var(--jp-ui-font-size1);\n}\n\n/* Use our own theme for hover styles */\nbutton.jp-Button.bp3-button.bp3-minimal:hover {\n  background-color: var(--jp-layout-color2);\n}\n.jp-Button.minimal {\n  color: unset !important;\n}\n\n.jp-Button.jp-ToolbarButtonComponent {\n  text-transform: none;\n}\n\n.jp-InputGroup input {\n  box-sizing: border-box;\n  border-radius: 0;\n  background-color: transparent;\n  color: var(--jp-ui-font-color0);\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.jp-InputGroup input:focus {\n  box-shadow: inset 0 0 0 var(--jp-border-width)\n      var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-InputGroup input::placeholder,\ninput::placeholder {\n  color: var(--jp-ui-font-color3);\n}\n\n.jp-BPIcon {\n  display: inline-block;\n  vertical-align: middle;\n  margin: auto;\n}\n\n/* Stop blueprint futzing with our icon fills */\n.bp3-icon.jp-BPIcon > svg:not([fill]) {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n.jp-InputGroupAction {\n  padding: 6px;\n}\n\n.jp-HTMLSelect.jp-DefaultStyle select {\n  background-color: initial;\n  border: none;\n  border-radius: 0;\n  box-shadow: none;\n  color: var(--jp-ui-font-color0);\n  display: block;\n  font-size: var(--jp-ui-font-size1);\n  height: 24px;\n  line-height: 14px;\n  padding: 0 25px 0 10px;\n  text-align: left;\n  -moz-appearance: none;\n  -webkit-appearance: none;\n}\n\n/* Use our own theme for hover and option styles */\n.jp-HTMLSelect.jp-DefaultStyle select:hover,\n.jp-HTMLSelect.jp-DefaultStyle select > option {\n  background-color: var(--jp-layout-color2);\n  color: var(--jp-ui-font-color0);\n}\nselect {\n  box-sizing: border-box;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapse {\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  border-top: 1px solid var(--jp-border-color2);\n  border-bottom: 1px solid var(--jp-border-color2);\n}\n\n.jp-Collapse-header {\n  padding: 1px 12px;\n  color: var(--jp-ui-font-color1);\n  background-color: var(--jp-layout-color1);\n  font-size: var(--jp-ui-font-size2);\n}\n\n.jp-Collapse-header:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-Collapse-contents {\n  padding: 0px 12px 0px 12px;\n  background-color: var(--jp-layout-color1);\n  color: var(--jp-ui-font-color1);\n  overflow: auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-commandpalette-search-height: 28px;\n}\n\n/*-----------------------------------------------------------------------------\n| Overall styles\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette {\n  padding-bottom: 0px;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Modal variant\n|----------------------------------------------------------------------------*/\n\n.jp-ModalCommandPalette {\n  position: absolute;\n  z-index: 10000;\n  top: 38px;\n  left: 30%;\n  margin: 0;\n  padding: 4px;\n  width: 40%;\n  box-shadow: var(--jp-elevation-z4);\n  border-radius: 4px;\n  background: var(--jp-layout-color0);\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette {\n  max-height: 40vh;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-close-icon::after {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-header {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-item {\n  margin-left: 4px;\n  margin-right: 4px;\n}\n\n.jp-ModalCommandPalette\n  .lm-CommandPalette\n  .lm-CommandPalette-item.lm-mod-disabled {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Search\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-search {\n  padding: 4px;\n  background-color: var(--jp-layout-color1);\n  z-index: 2;\n}\n\n.lm-CommandPalette-wrapper {\n  overflow: overlay;\n  padding: 0px 9px;\n  background-color: var(--jp-input-active-background);\n  height: 30px;\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.lm-CommandPalette.lm-mod-focused .lm-CommandPalette-wrapper {\n  box-shadow: inset 0 0 0 1px var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-SearchIconGroup {\n  color: white;\n  background-color: var(--jp-brand-color1);\n  position: absolute;\n  top: 4px;\n  right: 4px;\n  padding: 5px 5px 1px 5px;\n}\n\n.jp-SearchIconGroup svg {\n  height: 20px;\n  width: 20px;\n}\n\n.jp-SearchIconGroup .jp-icon3[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-input {\n  background: transparent;\n  width: calc(100% - 18px);\n  float: left;\n  border: none;\n  outline: none;\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  line-height: var(--jp-private-commandpalette-search-height);\n}\n\n.lm-CommandPalette-input::-webkit-input-placeholder,\n.lm-CommandPalette-input::-moz-placeholder,\n.lm-CommandPalette-input:-ms-input-placeholder {\n  color: var(--jp-ui-font-color2);\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Results\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-header:first-child {\n  margin-top: 0px;\n}\n\n.lm-CommandPalette-header {\n  border-bottom: solid var(--jp-border-width) var(--jp-border-color2);\n  color: var(--jp-ui-font-color1);\n  cursor: pointer;\n  display: flex;\n  font-size: var(--jp-ui-font-size0);\n  font-weight: 600;\n  letter-spacing: 1px;\n  margin-top: 8px;\n  padding: 8px 0 8px 12px;\n  text-transform: uppercase;\n}\n\n.lm-CommandPalette-header.lm-mod-active {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-header > mark {\n  background-color: transparent;\n  font-weight: bold;\n  color: var(--jp-ui-font-color1);\n}\n\n.lm-CommandPalette-item {\n  padding: 4px 12px 4px 4px;\n  color: var(--jp-ui-font-color1);\n  font-size: var(--jp-ui-font-size1);\n  font-weight: 400;\n  display: flex;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item.lm-mod-active {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .jp-icon-selectable[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active:hover:not(.lm-mod-disabled) {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item:hover:not(.lm-mod-active):not(.lm-mod-disabled) {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-itemContent {\n  overflow: hidden;\n}\n\n.lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled mark {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemIcon {\n  margin: 0 4px 0 0;\n  position: relative;\n  width: 16px;\n  top: 2px;\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled .lm-CommandPalette-itemIcon {\n  opacity: 0.6;\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-itemCaption {\n  display: none;\n}\n\n.lm-CommandPalette-content {\n  background-color: var(--jp-layout-color1);\n}\n\n.lm-CommandPalette-content:empty:after {\n  content: 'No results';\n  margin: auto;\n  margin-top: 20px;\n  width: 100px;\n  display: block;\n  font-size: var(--jp-ui-font-size2);\n  font-family: var(--jp-ui-font-family);\n  font-weight: lighter;\n}\n\n.lm-CommandPalette-emptyMessage {\n  text-align: center;\n  margin-top: 24px;\n  line-height: 1.32;\n  padding: 0px 8px;\n  color: var(--jp-content-font-color3);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Dialog {\n  position: absolute;\n  z-index: 10000;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  top: 0px;\n  left: 0px;\n  margin: 0;\n  padding: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-dialog-background);\n}\n\n.jp-Dialog-content {\n  display: flex;\n  flex-direction: column;\n  margin-left: auto;\n  margin-right: auto;\n  background: var(--jp-layout-color1);\n  padding: 24px;\n  padding-bottom: 12px;\n  min-width: 300px;\n  min-height: 150px;\n  max-width: 1000px;\n  max-height: 500px;\n  box-sizing: border-box;\n  box-shadow: var(--jp-elevation-z20);\n  word-wrap: break-word;\n  border-radius: var(--jp-border-radius);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color1);\n  resize: both;\n}\n\n.jp-Dialog-button {\n  overflow: visible;\n}\n\nbutton.jp-Dialog-button:focus {\n  outline: 1px solid var(--jp-brand-color1);\n  outline-offset: 4px;\n  -moz-outline-radius: 0px;\n}\n\nbutton.jp-Dialog-button:focus::-moz-focus-inner {\n  border: 0;\n}\n\nbutton.jp-Dialog-close-button {\n  padding: 0;\n  height: 100%;\n  min-width: unset;\n  min-height: unset;\n}\n\n.jp-Dialog-header {\n  display: flex;\n  justify-content: space-between;\n  flex: 0 0 auto;\n  padding-bottom: 12px;\n  font-size: var(--jp-ui-font-size3);\n  font-weight: 400;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-body {\n  display: flex;\n  flex-direction: column;\n  flex: 1 1 auto;\n  font-size: var(--jp-ui-font-size1);\n  background: var(--jp-layout-color1);\n  overflow: auto;\n}\n\n.jp-Dialog-footer {\n  display: flex;\n  flex-direction: row;\n  justify-content: flex-end;\n  flex: 0 0 auto;\n  margin-left: -12px;\n  margin-right: -12px;\n  padding: 12px;\n}\n\n.jp-Dialog-title {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.jp-Dialog-body > .jp-select-wrapper {\n  width: 100%;\n}\n\n.jp-Dialog-body > button {\n  padding: 0px 16px;\n}\n\n.jp-Dialog-body > label {\n  line-height: 1.4;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-button.jp-mod-styled:not(:last-child) {\n  margin-right: 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-HoverBox {\n  position: fixed;\n}\n\n.jp-HoverBox.jp-mod-outofview {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-IFrame {\n  width: 100%;\n  height: 100%;\n}\n\n.jp-IFrame > iframe {\n  border: none;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-IFrame {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-IFrame:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n.jp-Input-Boolean-Dialog {\n  flex-direction: row-reverse;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-Input-Boolean-Dialog > label {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MainAreaWidget > :focus {\n  outline: none;\n}\n\n/**\n * google-material-color v1.2.6\n * https://github.com/danlevan/google-material-color\n */\n:root {\n  --md-red-50: #ffebee;\n  --md-red-100: #ffcdd2;\n  --md-red-200: #ef9a9a;\n  --md-red-300: #e57373;\n  --md-red-400: #ef5350;\n  --md-red-500: #f44336;\n  --md-red-600: #e53935;\n  --md-red-700: #d32f2f;\n  --md-red-800: #c62828;\n  --md-red-900: #b71c1c;\n  --md-red-A100: #ff8a80;\n  --md-red-A200: #ff5252;\n  --md-red-A400: #ff1744;\n  --md-red-A700: #d50000;\n\n  --md-pink-50: #fce4ec;\n  --md-pink-100: #f8bbd0;\n  --md-pink-200: #f48fb1;\n  --md-pink-300: #f06292;\n  --md-pink-400: #ec407a;\n  --md-pink-500: #e91e63;\n  --md-pink-600: #d81b60;\n  --md-pink-700: #c2185b;\n  --md-pink-800: #ad1457;\n  --md-pink-900: #880e4f;\n  --md-pink-A100: #ff80ab;\n  --md-pink-A200: #ff4081;\n  --md-pink-A400: #f50057;\n  --md-pink-A700: #c51162;\n\n  --md-purple-50: #f3e5f5;\n  --md-purple-100: #e1bee7;\n  --md-purple-200: #ce93d8;\n  --md-purple-300: #ba68c8;\n  --md-purple-400: #ab47bc;\n  --md-purple-500: #9c27b0;\n  --md-purple-600: #8e24aa;\n  --md-purple-700: #7b1fa2;\n  --md-purple-800: #6a1b9a;\n  --md-purple-900: #4a148c;\n  --md-purple-A100: #ea80fc;\n  --md-purple-A200: #e040fb;\n  --md-purple-A400: #d500f9;\n  --md-purple-A700: #aa00ff;\n\n  --md-deep-purple-50: #ede7f6;\n  --md-deep-purple-100: #d1c4e9;\n  --md-deep-purple-200: #b39ddb;\n  --md-deep-purple-300: #9575cd;\n  --md-deep-purple-400: #7e57c2;\n  --md-deep-purple-500: #673ab7;\n  --md-deep-purple-600: #5e35b1;\n  --md-deep-purple-700: #512da8;\n  --md-deep-purple-800: #4527a0;\n  --md-deep-purple-900: #311b92;\n  --md-deep-purple-A100: #b388ff;\n  --md-deep-purple-A200: #7c4dff;\n  --md-deep-purple-A400: #651fff;\n  --md-deep-purple-A700: #6200ea;\n\n  --md-indigo-50: #e8eaf6;\n  --md-indigo-100: #c5cae9;\n  --md-indigo-200: #9fa8da;\n  --md-indigo-300: #7986cb;\n  --md-indigo-400: #5c6bc0;\n  --md-indigo-500: #3f51b5;\n  --md-indigo-600: #3949ab;\n  --md-indigo-700: #303f9f;\n  --md-indigo-800: #283593;\n  --md-indigo-900: #1a237e;\n  --md-indigo-A100: #8c9eff;\n  --md-indigo-A200: #536dfe;\n  --md-indigo-A400: #3d5afe;\n  --md-indigo-A700: #304ffe;\n\n  --md-blue-50: #e3f2fd;\n  --md-blue-100: #bbdefb;\n  --md-blue-200: #90caf9;\n  --md-blue-300: #64b5f6;\n  --md-blue-400: #42a5f5;\n  --md-blue-500: #2196f3;\n  --md-blue-600: #1e88e5;\n  --md-blue-700: #1976d2;\n  --md-blue-800: #1565c0;\n  --md-blue-900: #0d47a1;\n  --md-blue-A100: #82b1ff;\n  --md-blue-A200: #448aff;\n  --md-blue-A400: #2979ff;\n  --md-blue-A700: #2962ff;\n\n  --md-light-blue-50: #e1f5fe;\n  --md-light-blue-100: #b3e5fc;\n  --md-light-blue-200: #81d4fa;\n  --md-light-blue-300: #4fc3f7;\n  --md-light-blue-400: #29b6f6;\n  --md-light-blue-500: #03a9f4;\n  --md-light-blue-600: #039be5;\n  --md-light-blue-700: #0288d1;\n  --md-light-blue-800: #0277bd;\n  --md-light-blue-900: #01579b;\n  --md-light-blue-A100: #80d8ff;\n  --md-light-blue-A200: #40c4ff;\n  --md-light-blue-A400: #00b0ff;\n  --md-light-blue-A700: #0091ea;\n\n  --md-cyan-50: #e0f7fa;\n  --md-cyan-100: #b2ebf2;\n  --md-cyan-200: #80deea;\n  --md-cyan-300: #4dd0e1;\n  --md-cyan-400: #26c6da;\n  --md-cyan-500: #00bcd4;\n  --md-cyan-600: #00acc1;\n  --md-cyan-700: #0097a7;\n  --md-cyan-800: #00838f;\n  --md-cyan-900: #006064;\n  --md-cyan-A100: #84ffff;\n  --md-cyan-A200: #18ffff;\n  --md-cyan-A400: #00e5ff;\n  --md-cyan-A700: #00b8d4;\n\n  --md-teal-50: #e0f2f1;\n  --md-teal-100: #b2dfdb;\n  --md-teal-200: #80cbc4;\n  --md-teal-300: #4db6ac;\n  --md-teal-400: #26a69a;\n  --md-teal-500: #009688;\n  --md-teal-600: #00897b;\n  --md-teal-700: #00796b;\n  --md-teal-800: #00695c;\n  --md-teal-900: #004d40;\n  --md-teal-A100: #a7ffeb;\n  --md-teal-A200: #64ffda;\n  --md-teal-A400: #1de9b6;\n  --md-teal-A700: #00bfa5;\n\n  --md-green-50: #e8f5e9;\n  --md-green-100: #c8e6c9;\n  --md-green-200: #a5d6a7;\n  --md-green-300: #81c784;\n  --md-green-400: #66bb6a;\n  --md-green-500: #4caf50;\n  --md-green-600: #43a047;\n  --md-green-700: #388e3c;\n  --md-green-800: #2e7d32;\n  --md-green-900: #1b5e20;\n  --md-green-A100: #b9f6ca;\n  --md-green-A200: #69f0ae;\n  --md-green-A400: #00e676;\n  --md-green-A700: #00c853;\n\n  --md-light-green-50: #f1f8e9;\n  --md-light-green-100: #dcedc8;\n  --md-light-green-200: #c5e1a5;\n  --md-light-green-300: #aed581;\n  --md-light-green-400: #9ccc65;\n  --md-light-green-500: #8bc34a;\n  --md-light-green-600: #7cb342;\n  --md-light-green-700: #689f38;\n  --md-light-green-800: #558b2f;\n  --md-light-green-900: #33691e;\n  --md-light-green-A100: #ccff90;\n  --md-light-green-A200: #b2ff59;\n  --md-light-green-A400: #76ff03;\n  --md-light-green-A700: #64dd17;\n\n  --md-lime-50: #f9fbe7;\n  --md-lime-100: #f0f4c3;\n  --md-lime-200: #e6ee9c;\n  --md-lime-300: #dce775;\n  --md-lime-400: #d4e157;\n  --md-lime-500: #cddc39;\n  --md-lime-600: #c0ca33;\n  --md-lime-700: #afb42b;\n  --md-lime-800: #9e9d24;\n  --md-lime-900: #827717;\n  --md-lime-A100: #f4ff81;\n  --md-lime-A200: #eeff41;\n  --md-lime-A400: #c6ff00;\n  --md-lime-A700: #aeea00;\n\n  --md-yellow-50: #fffde7;\n  --md-yellow-100: #fff9c4;\n  --md-yellow-200: #fff59d;\n  --md-yellow-300: #fff176;\n  --md-yellow-400: #ffee58;\n  --md-yellow-500: #ffeb3b;\n  --md-yellow-600: #fdd835;\n  --md-yellow-700: #fbc02d;\n  --md-yellow-800: #f9a825;\n  --md-yellow-900: #f57f17;\n  --md-yellow-A100: #ffff8d;\n  --md-yellow-A200: #ffff00;\n  --md-yellow-A400: #ffea00;\n  --md-yellow-A700: #ffd600;\n\n  --md-amber-50: #fff8e1;\n  --md-amber-100: #ffecb3;\n  --md-amber-200: #ffe082;\n  --md-amber-300: #ffd54f;\n  --md-amber-400: #ffca28;\n  --md-amber-500: #ffc107;\n  --md-amber-600: #ffb300;\n  --md-amber-700: #ffa000;\n  --md-amber-800: #ff8f00;\n  --md-amber-900: #ff6f00;\n  --md-amber-A100: #ffe57f;\n  --md-amber-A200: #ffd740;\n  --md-amber-A400: #ffc400;\n  --md-amber-A700: #ffab00;\n\n  --md-orange-50: #fff3e0;\n  --md-orange-100: #ffe0b2;\n  --md-orange-200: #ffcc80;\n  --md-orange-300: #ffb74d;\n  --md-orange-400: #ffa726;\n  --md-orange-500: #ff9800;\n  --md-orange-600: #fb8c00;\n  --md-orange-700: #f57c00;\n  --md-orange-800: #ef6c00;\n  --md-orange-900: #e65100;\n  --md-orange-A100: #ffd180;\n  --md-orange-A200: #ffab40;\n  --md-orange-A400: #ff9100;\n  --md-orange-A700: #ff6d00;\n\n  --md-deep-orange-50: #fbe9e7;\n  --md-deep-orange-100: #ffccbc;\n  --md-deep-orange-200: #ffab91;\n  --md-deep-orange-300: #ff8a65;\n  --md-deep-orange-400: #ff7043;\n  --md-deep-orange-500: #ff5722;\n  --md-deep-orange-600: #f4511e;\n  --md-deep-orange-700: #e64a19;\n  --md-deep-orange-800: #d84315;\n  --md-deep-orange-900: #bf360c;\n  --md-deep-orange-A100: #ff9e80;\n  --md-deep-orange-A200: #ff6e40;\n  --md-deep-orange-A400: #ff3d00;\n  --md-deep-orange-A700: #dd2c00;\n\n  --md-brown-50: #efebe9;\n  --md-brown-100: #d7ccc8;\n  --md-brown-200: #bcaaa4;\n  --md-brown-300: #a1887f;\n  --md-brown-400: #8d6e63;\n  --md-brown-500: #795548;\n  --md-brown-600: #6d4c41;\n  --md-brown-700: #5d4037;\n  --md-brown-800: #4e342e;\n  --md-brown-900: #3e2723;\n\n  --md-grey-50: #fafafa;\n  --md-grey-100: #f5f5f5;\n  --md-grey-200: #eeeeee;\n  --md-grey-300: #e0e0e0;\n  --md-grey-400: #bdbdbd;\n  --md-grey-500: #9e9e9e;\n  --md-grey-600: #757575;\n  --md-grey-700: #616161;\n  --md-grey-800: #424242;\n  --md-grey-900: #212121;\n\n  --md-blue-grey-50: #eceff1;\n  --md-blue-grey-100: #cfd8dc;\n  --md-blue-grey-200: #b0bec5;\n  --md-blue-grey-300: #90a4ae;\n  --md-blue-grey-400: #78909c;\n  --md-blue-grey-500: #607d8b;\n  --md-blue-grey-600: #546e7a;\n  --md-blue-grey-700: #455a64;\n  --md-blue-grey-800: #37474f;\n  --md-blue-grey-900: #263238;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Spinner {\n  position: absolute;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  z-index: 10;\n  left: 0;\n  top: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-layout-color0);\n  outline: none;\n}\n\n.jp-SpinnerContent {\n  font-size: 10px;\n  margin: 50px auto;\n  text-indent: -9999em;\n  width: 3em;\n  height: 3em;\n  border-radius: 50%;\n  background: var(--jp-brand-color3);\n  background: linear-gradient(\n    to right,\n    #f37626 10%,\n    rgba(255, 255, 255, 0) 42%\n  );\n  position: relative;\n  animation: load3 1s infinite linear, fadeIn 1s;\n}\n\n.jp-SpinnerContent:before {\n  width: 50%;\n  height: 50%;\n  background: #f37626;\n  border-radius: 100% 0 0 0;\n  position: absolute;\n  top: 0;\n  left: 0;\n  content: '';\n}\n\n.jp-SpinnerContent:after {\n  background: var(--jp-layout-color0);\n  width: 75%;\n  height: 75%;\n  border-radius: 50%;\n  content: '';\n  margin: auto;\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n}\n\n@keyframes fadeIn {\n  0% {\n    opacity: 0;\n  }\n  100% {\n    opacity: 1;\n  }\n}\n\n@keyframes load3 {\n  0% {\n    transform: rotate(0deg);\n  }\n  100% {\n    transform: rotate(360deg);\n  }\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\nbutton.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: none;\n  box-sizing: border-box;\n  text-align: center;\n  line-height: 32px;\n  height: 32px;\n  padding: 0px 12px;\n  letter-spacing: 0.8px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput.jp-mod-styled {\n  background: var(--jp-input-background);\n  height: 28px;\n  box-sizing: border-box;\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n  padding-left: 7px;\n  padding-right: 7px;\n  font-size: var(--jp-ui-font-size2);\n  color: var(--jp-ui-font-color0);\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput[type='checkbox'].jp-mod-styled {\n  appearance: checkbox;\n  -webkit-appearance: checkbox;\n  -moz-appearance: checkbox;\n  height: auto;\n}\n\ninput.jp-mod-styled:focus {\n  border: var(--jp-border-width) solid var(--md-blue-500);\n  box-shadow: inset 0 0 4px var(--md-blue-300);\n}\n\n.jp-FileDialog-Checkbox {\n  margin-top: 35px;\n  display: flex;\n  flex-direction: row;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-FileDialog-Checkbox > label {\n  flex: 1 1 auto;\n}\n\n.jp-select-wrapper {\n  display: flex;\n  position: relative;\n  flex-direction: column;\n  padding: 1px;\n  background-color: var(--jp-layout-color1);\n  height: 28px;\n  box-sizing: border-box;\n  margin-bottom: 12px;\n}\n\n.jp-select-wrapper.jp-mod-focused select.jp-mod-styled {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-input-active-background);\n}\n\nselect.jp-mod-styled:hover {\n  background-color: var(--jp-layout-color1);\n  cursor: pointer;\n  color: var(--jp-ui-font-color0);\n  background-color: var(--jp-input-hover-background);\n  box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.5);\n}\n\nselect.jp-mod-styled {\n  flex: 1 1 auto;\n  height: 32px;\n  width: 100%;\n  font-size: var(--jp-ui-font-size2);\n  background: var(--jp-input-background);\n  color: var(--jp-ui-font-color0);\n  padding: 0 25px 0 8px;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-toolbar-height: calc(\n    28px + var(--jp-border-width)\n  ); /* leave 28px for content */\n}\n\n.jp-Toolbar {\n  color: var(--jp-ui-font-color1);\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  border-bottom: var(--jp-border-width) solid var(--jp-toolbar-border-color);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  background: var(--jp-toolbar-background);\n  min-height: var(--jp-toolbar-micro-height);\n  padding: 2px;\n  z-index: 1;\n  overflow-x: auto;\n}\n\n/* Toolbar items */\n\n.jp-Toolbar > .jp-Toolbar-item.jp-Toolbar-spacer {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\n.jp-Toolbar-item.jp-Toolbar-kernelStatus {\n  display: inline-block;\n  width: 32px;\n  background-repeat: no-repeat;\n  background-position: center;\n  background-size: 16px;\n}\n\n.jp-Toolbar > .jp-Toolbar-item {\n  flex: 0 0 auto;\n  display: flex;\n  padding-left: 1px;\n  padding-right: 1px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: var(--jp-private-toolbar-height);\n  height: 100%;\n}\n\n/* Toolbar buttons */\n\n/* This is the div we use to wrap the react component into a Widget */\ndiv.jp-ToolbarButton {\n  color: transparent;\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px;\n  margin: 0px;\n}\n\nbutton.jp-ToolbarButtonComponent {\n  background: var(--jp-layout-color1);\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px 6px;\n  margin: 0px;\n  height: 24px;\n  border-radius: var(--jp-border-radius);\n  display: flex;\n  align-items: center;\n  text-align: center;\n  font-size: 14px;\n  min-width: unset;\n  min-height: unset;\n}\n\nbutton.jp-ToolbarButtonComponent:disabled {\n  opacity: 0.4;\n}\n\nbutton.jp-ToolbarButtonComponent span {\n  padding: 0px;\n  flex: 0 0 auto;\n}\n\nbutton.jp-ToolbarButtonComponent .jp-ToolbarButtonComponent-label {\n  font-size: var(--jp-ui-font-size1);\n  line-height: 100%;\n  padding-left: 2px;\n  color: var(--jp-ui-font-color1);\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar.jp-Toolbar-micro {\n  padding: 0;\n  min-height: 0;\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar {\n  border: none;\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ body.p-mod-override-cursor *, /* </DEPRECATED> */\nbody.lm-mod-override-cursor * {\n  cursor: inherit !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-JSONEditor {\n  display: flex;\n  flex-direction: column;\n  width: 100%;\n}\n\n.jp-JSONEditor-host {\n  flex: 1 1 auto;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  background: var(--jp-layout-color0);\n  min-height: 50px;\n  padding: 1px;\n}\n\n.jp-JSONEditor.jp-mod-error .jp-JSONEditor-host {\n  border-color: red;\n  outline-color: red;\n}\n\n.jp-JSONEditor-header {\n  display: flex;\n  flex: 1 0 auto;\n  padding: 0 0 0 12px;\n}\n\n.jp-JSONEditor-header label {\n  flex: 0 0 auto;\n}\n\n.jp-JSONEditor-commitButton {\n  height: 16px;\n  width: 16px;\n  background-size: 18px;\n  background-repeat: no-repeat;\n  background-position: center;\n}\n\n.jp-JSONEditor-host.jp-mod-focused {\n  background-color: var(--jp-input-active-background);\n  border: 1px solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n.jp-Editor.jp-mod-dropTarget {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n/* BASICS */\n\n.CodeMirror {\n  /* Set height, width, borders, and global font properties here */\n  font-family: monospace;\n  height: 300px;\n  color: black;\n  direction: ltr;\n}\n\n/* PADDING */\n\n.CodeMirror-lines {\n  padding: 4px 0; /* Vertical padding around content */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  padding: 0 4px; /* Horizontal padding of content */\n}\n\n.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  background-color: white; /* The little square between H and V scrollbars */\n}\n\n/* GUTTER */\n\n.CodeMirror-gutters {\n  border-right: 1px solid #ddd;\n  background-color: #f7f7f7;\n  white-space: nowrap;\n}\n.CodeMirror-linenumbers {}\n.CodeMirror-linenumber {\n  padding: 0 3px 0 5px;\n  min-width: 20px;\n  text-align: right;\n  color: #999;\n  white-space: nowrap;\n}\n\n.CodeMirror-guttermarker { color: black; }\n.CodeMirror-guttermarker-subtle { color: #999; }\n\n/* CURSOR */\n\n.CodeMirror-cursor {\n  border-left: 1px solid black;\n  border-right: none;\n  width: 0;\n}\n/* Shown when moving in bi-directional text */\n.CodeMirror div.CodeMirror-secondarycursor {\n  border-left: 1px solid silver;\n}\n.cm-fat-cursor .CodeMirror-cursor {\n  width: auto;\n  border: 0 !important;\n  background: #7e7;\n}\n.cm-fat-cursor div.CodeMirror-cursors {\n  z-index: 1;\n}\n.cm-fat-cursor-mark {\n  background-color: rgba(20, 255, 20, 0.5);\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n}\n.cm-animate-fat-cursor {\n  width: auto;\n  border: 0;\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n  background-color: #7e7;\n}\n@-moz-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@-webkit-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n\n/* Can style cursor different in overwrite (non-insert) mode */\n.CodeMirror-overwrite .CodeMirror-cursor {}\n\n.cm-tab { display: inline-block; text-decoration: inherit; }\n\n.CodeMirror-rulers {\n  position: absolute;\n  left: 0; right: 0; top: -50px; bottom: 0;\n  overflow: hidden;\n}\n.CodeMirror-ruler {\n  border-left: 1px solid #ccc;\n  top: 0; bottom: 0;\n  position: absolute;\n}\n\n/* DEFAULT THEME */\n\n.cm-s-default .cm-header {color: blue;}\n.cm-s-default .cm-quote {color: #090;}\n.cm-negative {color: #d44;}\n.cm-positive {color: #292;}\n.cm-header, .cm-strong {font-weight: bold;}\n.cm-em {font-style: italic;}\n.cm-link {text-decoration: underline;}\n.cm-strikethrough {text-decoration: line-through;}\n\n.cm-s-default .cm-keyword {color: #708;}\n.cm-s-default .cm-atom {color: #219;}\n.cm-s-default .cm-number {color: #164;}\n.cm-s-default .cm-def {color: #00f;}\n.cm-s-default .cm-variable,\n.cm-s-default .cm-punctuation,\n.cm-s-default .cm-property,\n.cm-s-default .cm-operator {}\n.cm-s-default .cm-variable-2 {color: #05a;}\n.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}\n.cm-s-default .cm-comment {color: #a50;}\n.cm-s-default .cm-string {color: #a11;}\n.cm-s-default .cm-string-2 {color: #f50;}\n.cm-s-default .cm-meta {color: #555;}\n.cm-s-default .cm-qualifier {color: #555;}\n.cm-s-default .cm-builtin {color: #30a;}\n.cm-s-default .cm-bracket {color: #997;}\n.cm-s-default .cm-tag {color: #170;}\n.cm-s-default .cm-attribute {color: #00c;}\n.cm-s-default .cm-hr {color: #999;}\n.cm-s-default .cm-link {color: #00c;}\n\n.cm-s-default .cm-error {color: #f00;}\n.cm-invalidchar {color: #f00;}\n\n.CodeMirror-composing { border-bottom: 2px solid; }\n\n/* Default styles for common addons */\n\ndiv.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}\ndiv.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}\n.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }\n.CodeMirror-activeline-background {background: #e8f2ff;}\n\n/* STOP */\n\n/* The rest of this file contains styles related to the mechanics of\n   the editor. You probably shouldn't touch them. */\n\n.CodeMirror {\n  position: relative;\n  overflow: hidden;\n  background: white;\n}\n\n.CodeMirror-scroll {\n  overflow: scroll !important; /* Things will break if this is overridden */\n  /* 50px is the magic margin used to hide the element's real scrollbars */\n  /* See overflow: hidden in .CodeMirror */\n  margin-bottom: -50px; margin-right: -50px;\n  padding-bottom: 50px;\n  height: 100%;\n  outline: none; /* Prevent dragging from highlighting the element */\n  position: relative;\n}\n.CodeMirror-sizer {\n  position: relative;\n  border-right: 50px solid transparent;\n}\n\n/* The fake, visible scrollbars. Used to force redraw during scrolling\n   before actual scrolling happens, thus preventing shaking and\n   flickering artifacts. */\n.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  position: absolute;\n  z-index: 6;\n  display: none;\n  outline: none;\n}\n.CodeMirror-vscrollbar {\n  right: 0; top: 0;\n  overflow-x: hidden;\n  overflow-y: scroll;\n}\n.CodeMirror-hscrollbar {\n  bottom: 0; left: 0;\n  overflow-y: hidden;\n  overflow-x: scroll;\n}\n.CodeMirror-scrollbar-filler {\n  right: 0; bottom: 0;\n}\n.CodeMirror-gutter-filler {\n  left: 0; bottom: 0;\n}\n\n.CodeMirror-gutters {\n  position: absolute; left: 0; top: 0;\n  min-height: 100%;\n  z-index: 3;\n}\n.CodeMirror-gutter {\n  white-space: normal;\n  height: 100%;\n  display: inline-block;\n  vertical-align: top;\n  margin-bottom: -50px;\n}\n.CodeMirror-gutter-wrapper {\n  position: absolute;\n  z-index: 4;\n  background: none !important;\n  border: none !important;\n}\n.CodeMirror-gutter-background {\n  position: absolute;\n  top: 0; bottom: 0;\n  z-index: 4;\n}\n.CodeMirror-gutter-elt {\n  position: absolute;\n  cursor: default;\n  z-index: 4;\n}\n.CodeMirror-gutter-wrapper ::selection { background-color: transparent }\n.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }\n\n.CodeMirror-lines {\n  cursor: text;\n  min-height: 1px; /* prevents collapsing before first draw */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  /* Reset some styles that the rest of the page might have set */\n  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;\n  border-width: 0;\n  background: transparent;\n  font-family: inherit;\n  font-size: inherit;\n  margin: 0;\n  white-space: pre;\n  word-wrap: normal;\n  line-height: inherit;\n  color: inherit;\n  z-index: 2;\n  position: relative;\n  overflow: visible;\n  -webkit-tap-highlight-color: transparent;\n  -webkit-font-variant-ligatures: contextual;\n  font-variant-ligatures: contextual;\n}\n.CodeMirror-wrap pre.CodeMirror-line,\n.CodeMirror-wrap pre.CodeMirror-line-like {\n  word-wrap: break-word;\n  white-space: pre-wrap;\n  word-break: normal;\n}\n\n.CodeMirror-linebackground {\n  position: absolute;\n  left: 0; right: 0; top: 0; bottom: 0;\n  z-index: 0;\n}\n\n.CodeMirror-linewidget {\n  position: relative;\n  z-index: 2;\n  padding: 0.1px; /* Force widget margins to stay inside of the container */\n}\n\n.CodeMirror-widget {}\n\n.CodeMirror-rtl pre { direction: rtl; }\n\n.CodeMirror-code {\n  outline: none;\n}\n\n/* Force content-box sizing for the elements where we expect it */\n.CodeMirror-scroll,\n.CodeMirror-sizer,\n.CodeMirror-gutter,\n.CodeMirror-gutters,\n.CodeMirror-linenumber {\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n}\n\n.CodeMirror-measure {\n  position: absolute;\n  width: 100%;\n  height: 0;\n  overflow: hidden;\n  visibility: hidden;\n}\n\n.CodeMirror-cursor {\n  position: absolute;\n  pointer-events: none;\n}\n.CodeMirror-measure pre { position: static; }\n\ndiv.CodeMirror-cursors {\n  visibility: hidden;\n  position: relative;\n  z-index: 3;\n}\ndiv.CodeMirror-dragcursors {\n  visibility: visible;\n}\n\n.CodeMirror-focused div.CodeMirror-cursors {\n  visibility: visible;\n}\n\n.CodeMirror-selected { background: #d9d9d9; }\n.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }\n.CodeMirror-crosshair { cursor: crosshair; }\n.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }\n.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }\n\n.cm-searching {\n  background-color: #ffa;\n  background-color: rgba(255, 255, 0, .4);\n}\n\n/* Used to force a border model for a node */\n.cm-force-border { padding-right: .1px; }\n\n@media print {\n  /* Hide the cursor when printing */\n  .CodeMirror div.CodeMirror-cursors {\n    visibility: hidden;\n  }\n}\n\n/* See issue #2901 */\n.cm-tab-wrap-hack:after { content: ''; }\n\n/* Help users use markselection to safely style text background */\nspan.CodeMirror-selectedtext { background: none; }\n\n.CodeMirror-dialog {\n  position: absolute;\n  left: 0; right: 0;\n  background: inherit;\n  z-index: 15;\n  padding: .1em .8em;\n  overflow: hidden;\n  color: inherit;\n}\n\n.CodeMirror-dialog-top {\n  border-bottom: 1px solid #eee;\n  top: 0;\n}\n\n.CodeMirror-dialog-bottom {\n  border-top: 1px solid #eee;\n  bottom: 0;\n}\n\n.CodeMirror-dialog input {\n  border: none;\n  outline: none;\n  background: transparent;\n  width: 20em;\n  color: inherit;\n  font-family: monospace;\n}\n\n.CodeMirror-dialog button {\n  font-size: 70%;\n}\n\n.CodeMirror-foldmarker {\n  color: blue;\n  text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;\n  font-family: arial;\n  line-height: .3;\n  cursor: pointer;\n}\n.CodeMirror-foldgutter {\n  width: .7em;\n}\n.CodeMirror-foldgutter-open,\n.CodeMirror-foldgutter-folded {\n  cursor: pointer;\n}\n.CodeMirror-foldgutter-open:after {\n  content: \"\\25BE\";\n}\n.CodeMirror-foldgutter-folded:after {\n  content: \"\\25B8\";\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.CodeMirror {\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  border: 0;\n  border-radius: 0;\n  height: auto;\n  /* Changed to auto to autogrow */\n}\n\n.CodeMirror pre {\n  padding: 0 var(--jp-code-padding);\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-dialog {\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* This causes https://github.com/jupyter/jupyterlab/issues/522 */\n/* May not cause it not because we changed it! */\n.CodeMirror-lines {\n  padding: var(--jp-code-padding) 0;\n}\n\n.CodeMirror-linenumber {\n  padding: 0 8px;\n}\n\n.jp-CodeMirrorEditor {\n  cursor: text;\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n\n/* When zoomed out 67% and 33% on a screen of 1440 width x 900 height */\n@media screen and (min-width: 2138px) and (max-width: 4319px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width1) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n/* When zoomed out less than 33% */\n@media screen and (min-width: 4320px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width2) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n.CodeMirror.jp-mod-readOnly .CodeMirror-cursor {\n  display: none;\n}\n\n.CodeMirror-gutters {\n  border-right: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-layout-color0);\n}\n\n.jp-CollaboratorCursor {\n  border-left: 5px solid transparent;\n  border-right: 5px solid transparent;\n  border-top: none;\n  border-bottom: 3px solid;\n  background-clip: content-box;\n  margin-left: -5px;\n  margin-right: -5px;\n}\n\n.CodeMirror-selectedtext.cm-searching {\n  background-color: var(--jp-search-selected-match-background-color) !important;\n  color: var(--jp-search-selected-match-color) !important;\n}\n\n.cm-searching {\n  background-color: var(\n    --jp-search-unselected-match-background-color\n  ) !important;\n  color: var(--jp-search-unselected-match-color) !important;\n}\n\n.CodeMirror-focused .CodeMirror-selected {\n  background-color: var(--jp-editor-selected-focused-background);\n}\n\n.CodeMirror-selected {\n  background-color: var(--jp-editor-selected-background);\n}\n\n.jp-CollaboratorCursor-hover {\n  position: absolute;\n  z-index: 1;\n  transform: translateX(-50%);\n  color: white;\n  border-radius: 3px;\n  padding-left: 4px;\n  padding-right: 4px;\n  padding-top: 1px;\n  padding-bottom: 1px;\n  text-align: center;\n  font-size: var(--jp-ui-font-size1);\n  white-space: nowrap;\n}\n\n.jp-CodeMirror-ruler {\n  border-left: 1px dashed var(--jp-border-color2);\n}\n\n/**\n * Here is our jupyter theme for CodeMirror syntax highlighting\n * This is used in our marked.js syntax highlighting and CodeMirror itself\n * The string \"jupyter\" is set in ../codemirror/widget.DEFAULT_CODEMIRROR_THEME\n * This came from the classic notebook, which came form highlight.js/GitHub\n */\n\n/**\n * CodeMirror themes are handling the background/color in this way. This works\n * fine for CodeMirror editors outside the notebook, but the notebook styles\n * these things differently.\n */\n.CodeMirror.cm-s-jupyter {\n  background: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* In the notebook, we want this styling to be handled by its container */\n.jp-CodeConsole .CodeMirror.cm-s-jupyter,\n.jp-Notebook .CodeMirror.cm-s-jupyter {\n  background: transparent;\n}\n\n.cm-s-jupyter .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n.cm-s-jupyter span.cm-keyword {\n  color: var(--jp-mirror-editor-keyword-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-atom {\n  color: var(--jp-mirror-editor-atom-color);\n}\n.cm-s-jupyter span.cm-number {\n  color: var(--jp-mirror-editor-number-color);\n}\n.cm-s-jupyter span.cm-def {\n  color: var(--jp-mirror-editor-def-color);\n}\n.cm-s-jupyter span.cm-variable {\n  color: var(--jp-mirror-editor-variable-color);\n}\n.cm-s-jupyter span.cm-variable-2 {\n  color: var(--jp-mirror-editor-variable-2-color);\n}\n.cm-s-jupyter span.cm-variable-3 {\n  color: var(--jp-mirror-editor-variable-3-color);\n}\n.cm-s-jupyter span.cm-punctuation {\n  color: var(--jp-mirror-editor-punctuation-color);\n}\n.cm-s-jupyter span.cm-property {\n  color: var(--jp-mirror-editor-property-color);\n}\n.cm-s-jupyter span.cm-operator {\n  color: var(--jp-mirror-editor-operator-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-comment {\n  color: var(--jp-mirror-editor-comment-color);\n  font-style: italic;\n}\n.cm-s-jupyter span.cm-string {\n  color: var(--jp-mirror-editor-string-color);\n}\n.cm-s-jupyter span.cm-string-2 {\n  color: var(--jp-mirror-editor-string-2-color);\n}\n.cm-s-jupyter span.cm-meta {\n  color: var(--jp-mirror-editor-meta-color);\n}\n.cm-s-jupyter span.cm-qualifier {\n  color: var(--jp-mirror-editor-qualifier-color);\n}\n.cm-s-jupyter span.cm-builtin {\n  color: var(--jp-mirror-editor-builtin-color);\n}\n.cm-s-jupyter span.cm-bracket {\n  color: var(--jp-mirror-editor-bracket-color);\n}\n.cm-s-jupyter span.cm-tag {\n  color: var(--jp-mirror-editor-tag-color);\n}\n.cm-s-jupyter span.cm-attribute {\n  color: var(--jp-mirror-editor-attribute-color);\n}\n.cm-s-jupyter span.cm-header {\n  color: var(--jp-mirror-editor-header-color);\n}\n.cm-s-jupyter span.cm-quote {\n  color: var(--jp-mirror-editor-quote-color);\n}\n.cm-s-jupyter span.cm-link {\n  color: var(--jp-mirror-editor-link-color);\n}\n.cm-s-jupyter span.cm-error {\n  color: var(--jp-mirror-editor-error-color);\n}\n.cm-s-jupyter span.cm-hr {\n  color: #999;\n}\n\n.cm-s-jupyter span.cm-tab {\n  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);\n  background-position: right;\n  background-repeat: no-repeat;\n}\n\n.cm-s-jupyter .CodeMirror-activeline-background,\n.cm-s-jupyter .CodeMirror-gutter {\n  background-color: var(--jp-layout-color2);\n}\n\n/* Styles for shared cursors (remote cursor locations and selected ranges) */\n.jp-CodeMirrorEditor .remote-caret {\n  position: relative;\n  border-left: 2px solid black;\n  margin-left: -1px;\n  margin-right: -1px;\n  box-sizing: border-box;\n}\n\n.jp-CodeMirrorEditor .remote-caret > div {\n  white-space: nowrap;\n  position: absolute;\n  top: -1.15em;\n  padding-bottom: 0.05em;\n  left: -2px;\n  font-size: 0.95em;\n  background-color: rgb(250, 129, 0);\n  font-family: var(--jp-ui-font-family);\n  font-weight: bold;\n  line-height: normal;\n  user-select: none;\n  color: white;\n  padding-left: 2px;\n  padding-right: 2px;\n  z-index: 3;\n  transition: opacity 0.3s ease-in-out;\n}\n\n.jp-CodeMirrorEditor .remote-caret.hide-name > div {\n  transition-delay: 0.7s;\n  opacity: 0;\n}\n\n.jp-CodeMirrorEditor .remote-caret:hover > div {\n  opacity: 1;\n  transition-delay: 0s;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| RenderedText\n|----------------------------------------------------------------------------*/\n\n:root {\n  /* This is the padding value to fill the gaps between lines containing spans with background color. */\n  --jp-private-code-span-padding: calc(\n    (var(--jp-code-line-height) - 1) * var(--jp-code-font-size) / 2\n  );\n}\n\n.jp-RenderedText {\n  text-align: left;\n  padding-left: var(--jp-code-padding);\n  line-height: var(--jp-code-line-height);\n  font-family: var(--jp-code-font-family);\n}\n\n.jp-RenderedText pre,\n.jp-RenderedJavaScript pre,\n.jp-RenderedHTMLCommon pre {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-code-font-size);\n  border: none;\n  margin: 0px;\n  padding: 0px;\n}\n\n.jp-RenderedText pre a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* console foregrounds and backgrounds */\n.jp-RenderedText pre .ansi-black-fg {\n  color: #3e424d;\n}\n.jp-RenderedText pre .ansi-red-fg {\n  color: #e75c58;\n}\n.jp-RenderedText pre .ansi-green-fg {\n  color: #00a250;\n}\n.jp-RenderedText pre .ansi-yellow-fg {\n  color: #ddb62b;\n}\n.jp-RenderedText pre .ansi-blue-fg {\n  color: #208ffb;\n}\n.jp-RenderedText pre .ansi-magenta-fg {\n  color: #d160c4;\n}\n.jp-RenderedText pre .ansi-cyan-fg {\n  color: #60c6c8;\n}\n.jp-RenderedText pre .ansi-white-fg {\n  color: #c5c1b4;\n}\n\n.jp-RenderedText pre .ansi-black-bg {\n  background-color: #3e424d;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-bg {\n  background-color: #e75c58;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-bg {\n  background-color: #00a250;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-bg {\n  background-color: #ddb62b;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-bg {\n  background-color: #208ffb;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-bg {\n  background-color: #d160c4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-bg {\n  background-color: #60c6c8;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-bg {\n  background-color: #c5c1b4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-black-intense-fg {\n  color: #282c36;\n}\n.jp-RenderedText pre .ansi-red-intense-fg {\n  color: #b22b31;\n}\n.jp-RenderedText pre .ansi-green-intense-fg {\n  color: #007427;\n}\n.jp-RenderedText pre .ansi-yellow-intense-fg {\n  color: #b27d12;\n}\n.jp-RenderedText pre .ansi-blue-intense-fg {\n  color: #0065ca;\n}\n.jp-RenderedText pre .ansi-magenta-intense-fg {\n  color: #a03196;\n}\n.jp-RenderedText pre .ansi-cyan-intense-fg {\n  color: #258f8f;\n}\n.jp-RenderedText pre .ansi-white-intense-fg {\n  color: #a1a6b2;\n}\n\n.jp-RenderedText pre .ansi-black-intense-bg {\n  background-color: #282c36;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-intense-bg {\n  background-color: #b22b31;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-intense-bg {\n  background-color: #007427;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-intense-bg {\n  background-color: #b27d12;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-intense-bg {\n  background-color: #0065ca;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-intense-bg {\n  background-color: #a03196;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-intense-bg {\n  background-color: #258f8f;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-intense-bg {\n  background-color: #a1a6b2;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-default-inverse-fg {\n  color: var(--jp-ui-inverse-font-color0);\n}\n.jp-RenderedText pre .ansi-default-inverse-bg {\n  background-color: var(--jp-inverse-layout-color0);\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-bold {\n  font-weight: bold;\n}\n.jp-RenderedText pre .ansi-underline {\n  text-decoration: underline;\n}\n\n.jp-RenderedText[data-mime-type='application/vnd.jupyter.stderr'] {\n  background: var(--jp-rendermime-error-background);\n  padding-top: var(--jp-code-padding);\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedLatex\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedLatex {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n}\n\n/* Left-justify outputs.*/\n.jp-OutputArea-output.jp-RenderedLatex {\n  padding: var(--jp-code-padding);\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedHTML\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedHTMLCommon {\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-content-font-family);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n  /* Give a bit more R padding on Markdown text to keep line lengths reasonable */\n  padding-right: 20px;\n}\n\n.jp-RenderedHTMLCommon em {\n  font-style: italic;\n}\n\n.jp-RenderedHTMLCommon strong {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon u {\n  text-decoration: underline;\n}\n\n.jp-RenderedHTMLCommon a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* Headings */\n\n.jp-RenderedHTMLCommon h1,\n.jp-RenderedHTMLCommon h2,\n.jp-RenderedHTMLCommon h3,\n.jp-RenderedHTMLCommon h4,\n.jp-RenderedHTMLCommon h5,\n.jp-RenderedHTMLCommon h6 {\n  line-height: var(--jp-content-heading-line-height);\n  font-weight: var(--jp-content-heading-font-weight);\n  font-style: normal;\n  margin: var(--jp-content-heading-margin-top) 0\n    var(--jp-content-heading-margin-bottom) 0;\n}\n\n.jp-RenderedHTMLCommon h1:first-child,\n.jp-RenderedHTMLCommon h2:first-child,\n.jp-RenderedHTMLCommon h3:first-child,\n.jp-RenderedHTMLCommon h4:first-child,\n.jp-RenderedHTMLCommon h5:first-child,\n.jp-RenderedHTMLCommon h6:first-child {\n  margin-top: calc(0.5 * var(--jp-content-heading-margin-top));\n}\n\n.jp-RenderedHTMLCommon h1:last-child,\n.jp-RenderedHTMLCommon h2:last-child,\n.jp-RenderedHTMLCommon h3:last-child,\n.jp-RenderedHTMLCommon h4:last-child,\n.jp-RenderedHTMLCommon h5:last-child,\n.jp-RenderedHTMLCommon h6:last-child {\n  margin-bottom: calc(0.5 * var(--jp-content-heading-margin-bottom));\n}\n\n.jp-RenderedHTMLCommon h1 {\n  font-size: var(--jp-content-font-size5);\n}\n\n.jp-RenderedHTMLCommon h2 {\n  font-size: var(--jp-content-font-size4);\n}\n\n.jp-RenderedHTMLCommon h3 {\n  font-size: var(--jp-content-font-size3);\n}\n\n.jp-RenderedHTMLCommon h4 {\n  font-size: var(--jp-content-font-size2);\n}\n\n.jp-RenderedHTMLCommon h5 {\n  font-size: var(--jp-content-font-size1);\n}\n\n.jp-RenderedHTMLCommon h6 {\n  font-size: var(--jp-content-font-size0);\n}\n\n/* Lists */\n\n.jp-RenderedHTMLCommon ul:not(.list-inline),\n.jp-RenderedHTMLCommon ol:not(.list-inline) {\n  padding-left: 2em;\n}\n\n.jp-RenderedHTMLCommon ul {\n  list-style: disc;\n}\n\n.jp-RenderedHTMLCommon ul ul {\n  list-style: square;\n}\n\n.jp-RenderedHTMLCommon ul ul ul {\n  list-style: circle;\n}\n\n.jp-RenderedHTMLCommon ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol ol {\n  list-style: upper-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol {\n  list-style: lower-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol {\n  list-style: lower-roman;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol,\n.jp-RenderedHTMLCommon ul {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon ul ul,\n.jp-RenderedHTMLCommon ul ol,\n.jp-RenderedHTMLCommon ol ul,\n.jp-RenderedHTMLCommon ol ol {\n  margin-bottom: 0em;\n}\n\n.jp-RenderedHTMLCommon hr {\n  color: var(--jp-border-color2);\n  background-color: var(--jp-border-color1);\n  margin-top: 1em;\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon > pre {\n  margin: 1.5em 2em;\n}\n\n.jp-RenderedHTMLCommon pre,\n.jp-RenderedHTMLCommon code {\n  border: 0;\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  line-height: var(--jp-code-line-height);\n  padding: 0;\n  white-space: pre-wrap;\n}\n\n.jp-RenderedHTMLCommon :not(pre) > code {\n  background-color: var(--jp-layout-color2);\n  padding: 1px 5px;\n}\n\n/* Tables */\n\n.jp-RenderedHTMLCommon table {\n  border-collapse: collapse;\n  border-spacing: 0;\n  border: none;\n  color: var(--jp-ui-font-color1);\n  font-size: 12px;\n  table-layout: fixed;\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.jp-RenderedHTMLCommon thead {\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  vertical-align: bottom;\n}\n\n.jp-RenderedHTMLCommon td,\n.jp-RenderedHTMLCommon th,\n.jp-RenderedHTMLCommon tr {\n  vertical-align: middle;\n  padding: 0.5em 0.5em;\n  line-height: normal;\n  white-space: normal;\n  max-width: none;\n  border: none;\n}\n\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon td,\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon th {\n  max-width: none;\n}\n\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon td,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon th,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon tr {\n  text-align: right;\n}\n\n.jp-RenderedHTMLCommon th {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(odd) {\n  background: var(--jp-layout-color0);\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(even) {\n  background: var(--jp-rendermime-table-row-background);\n}\n\n.jp-RenderedHTMLCommon tbody tr:hover {\n  background: var(--jp-rendermime-table-row-hover-background);\n}\n\n.jp-RenderedHTMLCommon table {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon p {\n  text-align: left;\n  margin: 0px;\n}\n\n.jp-RenderedHTMLCommon p {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon img {\n  -moz-force-broken-image-icon: 1;\n}\n\n/* Restrict to direct children as other images could be nested in other content. */\n.jp-RenderedHTMLCommon > img {\n  display: block;\n  margin-left: 0;\n  margin-right: 0;\n  margin-bottom: 1em;\n}\n\n/* Change color behind transparent images if they need it... */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-light-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-dark-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n/* ...or leave it untouched if they don't */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-dark-background {\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-light-background {\n}\n\n.jp-RenderedHTMLCommon img,\n.jp-RenderedImage img,\n.jp-RenderedHTMLCommon svg,\n.jp-RenderedSVG svg {\n  max-width: 100%;\n  height: auto;\n}\n\n.jp-RenderedHTMLCommon img.jp-mod-unconfined,\n.jp-RenderedImage img.jp-mod-unconfined,\n.jp-RenderedHTMLCommon svg.jp-mod-unconfined,\n.jp-RenderedSVG svg.jp-mod-unconfined {\n  max-width: none;\n}\n\n.jp-RenderedHTMLCommon .alert {\n  padding: var(--jp-notebook-padding);\n  border: var(--jp-border-width) solid transparent;\n  border-radius: var(--jp-border-radius);\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon .alert-info {\n  color: var(--jp-info-color0);\n  background-color: var(--jp-info-color3);\n  border-color: var(--jp-info-color2);\n}\n.jp-RenderedHTMLCommon .alert-info hr {\n  border-color: var(--jp-info-color3);\n}\n.jp-RenderedHTMLCommon .alert-info > p:last-child,\n.jp-RenderedHTMLCommon .alert-info > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-warning {\n  color: var(--jp-warn-color0);\n  background-color: var(--jp-warn-color3);\n  border-color: var(--jp-warn-color2);\n}\n.jp-RenderedHTMLCommon .alert-warning hr {\n  border-color: var(--jp-warn-color3);\n}\n.jp-RenderedHTMLCommon .alert-warning > p:last-child,\n.jp-RenderedHTMLCommon .alert-warning > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-success {\n  color: var(--jp-success-color0);\n  background-color: var(--jp-success-color3);\n  border-color: var(--jp-success-color2);\n}\n.jp-RenderedHTMLCommon .alert-success hr {\n  border-color: var(--jp-success-color3);\n}\n.jp-RenderedHTMLCommon .alert-success > p:last-child,\n.jp-RenderedHTMLCommon .alert-success > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-danger {\n  color: var(--jp-error-color0);\n  background-color: var(--jp-error-color3);\n  border-color: var(--jp-error-color2);\n}\n.jp-RenderedHTMLCommon .alert-danger hr {\n  border-color: var(--jp-error-color3);\n}\n.jp-RenderedHTMLCommon .alert-danger > p:last-child,\n.jp-RenderedHTMLCommon .alert-danger > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon blockquote {\n  margin: 1em 2em;\n  padding: 0 1em;\n  border-left: 5px solid var(--jp-border-color2);\n}\n\na.jp-InternalAnchorLink {\n  visibility: hidden;\n  margin-left: 8px;\n  color: var(--md-blue-800);\n}\n\nh1:hover .jp-InternalAnchorLink,\nh2:hover .jp-InternalAnchorLink,\nh3:hover .jp-InternalAnchorLink,\nh4:hover .jp-InternalAnchorLink,\nh5:hover .jp-InternalAnchorLink,\nh6:hover .jp-InternalAnchorLink {\n  visibility: visible;\n}\n\n.jp-RenderedHTMLCommon kbd {\n  background-color: var(--jp-rendermime-table-row-background);\n  border: 1px solid var(--jp-border-color0);\n  border-bottom-color: var(--jp-border-color2);\n  border-radius: 3px;\n  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n  display: inline-block;\n  font-size: 0.8em;\n  line-height: 1em;\n  padding: 0.2em 0.5em;\n}\n\n/* Most direct children of .jp-RenderedHTMLCommon have a margin-bottom of 1.0.\n * At the bottom of cells this is a bit too much as there is also spacing\n * between cells. Going all the way to 0 gets too tight between markdown and\n * code cells.\n */\n.jp-RenderedHTMLCommon > *:last-child {\n  margin-bottom: 0.5em;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MimeDocument {\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-filebrowser-button-height: 28px;\n  --jp-private-filebrowser-button-width: 48px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser {\n  display: flex;\n  flex-direction: column;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  border-bottom: none;\n  height: auto;\n  margin: var(--jp-toolbar-header-margin);\n  box-shadow: none;\n}\n\n.jp-BreadCrumbs {\n  flex: 0 0 auto;\n  margin: 8px 12px 8px 12px;\n}\n\n.jp-BreadCrumbs-item {\n  margin: 0px 2px;\n  padding: 0px 2px;\n  border-radius: var(--jp-border-radius);\n  cursor: pointer;\n}\n\n.jp-BreadCrumbs-item:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-BreadCrumbs-item:first-child {\n  margin-left: 0px;\n}\n\n.jp-BreadCrumbs-item.jp-mod-dropTarget {\n  background-color: var(--jp-brand-color2);\n  opacity: 0.7;\n}\n\n/*-----------------------------------------------------------------------------\n| Buttons\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  padding: 0px;\n  margin: 8px 12px 0px 12px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  justify-content: flex-start;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-Toolbar-item {\n  flex: 0 0 auto;\n  padding-left: 0px;\n  padding-right: 2px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-ToolbarButtonComponent {\n  width: 40px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent {\n  width: 72px;\n  background: var(--jp-brand-color1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent:focus-visible {\n  background-color: var(--jp-brand-color0);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent\n  .jp-icon3 {\n  fill: white;\n}\n\n/*-----------------------------------------------------------------------------\n| Other styles\n|----------------------------------------------------------------------------*/\n\n.jp-FileDialog.jp-mod-conflict input {\n  color: var(--jp-error-color1);\n}\n\n.jp-FileDialog .jp-new-name-title {\n  margin-top: 12px;\n}\n\n.jp-LastModified-hidden {\n  display: none;\n}\n\n.jp-FileBrowser-filterBox {\n  padding: 0px;\n  flex: 0 0 auto;\n  margin: 8px 12px 0px 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| DirListing\n|----------------------------------------------------------------------------*/\n\n.jp-DirListing {\n  flex: 1 1 auto;\n  display: flex;\n  flex-direction: column;\n  outline: 0;\n}\n\n.jp-DirListing:focus-visible {\n  border: 1px solid var(--jp-brand-color1);\n}\n\n.jp-DirListing-header {\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n  border-top: var(--jp-border-width) solid var(--jp-border-color2);\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  z-index: 2;\n}\n\n.jp-DirListing-headerItem {\n  padding: 4px 12px 2px 12px;\n  font-weight: 500;\n}\n\n.jp-DirListing-headerItem:hover {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-headerItem.jp-id-name {\n  flex: 1 0 84px;\n}\n\n.jp-DirListing-headerItem.jp-id-modified {\n  flex: 0 0 112px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n}\n\n.jp-id-narrow {\n  display: none;\n  flex: 0 0 5px;\n  padding: 4px 4px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n  color: var(--jp-border-color2);\n}\n\n.jp-DirListing-narrow .jp-id-narrow {\n  display: block;\n}\n\n.jp-DirListing-narrow .jp-id-modified,\n.jp-DirListing-narrow .jp-DirListing-itemModified {\n  display: none;\n}\n\n.jp-DirListing-headerItem.jp-mod-selected {\n  font-weight: 600;\n}\n\n/* increase specificity to override bundled default */\n.jp-DirListing-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-DirListing-content mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.jp-DirListing-content .jp-DirListing-item.jp-mod-selected mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n/* Style the directory listing content when a user drops a file to upload */\n.jp-DirListing.jp-mod-native-drop .jp-DirListing-content {\n  outline: 5px dashed rgba(128, 128, 128, 0.5);\n  outline-offset: -10px;\n  cursor: copy;\n}\n\n.jp-DirListing-item {\n  display: flex;\n  flex-direction: row;\n  padding: 4px 12px;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n.jp-DirListing-item[data-is-dot] {\n  opacity: 75%;\n}\n\n.jp-DirListing-item.jp-mod-selected {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.jp-DirListing-item.jp-mod-dropTarget {\n  background: var(--jp-brand-color3);\n}\n\n.jp-DirListing-item:hover:not(.jp-mod-selected) {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-itemIcon {\n  flex: 0 0 20px;\n  margin-right: 4px;\n}\n\n.jp-DirListing-itemText {\n  flex: 1 0 64px;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  user-select: none;\n}\n\n.jp-DirListing-itemModified {\n  flex: 0 0 125px;\n  text-align: right;\n}\n\n.jp-DirListing-editor {\n  flex: 1 0 64px;\n  outline: none;\n  border: none;\n}\n\n.jp-DirListing-item.jp-mod-running .jp-DirListing-itemIcon:before {\n  color: var(--jp-success-color1);\n  content: '\\25CF';\n  font-size: 8px;\n  position: absolute;\n  left: -8px;\n}\n\n.jp-DirListing-item.jp-mod-running.jp-mod-selected\n  .jp-DirListing-itemIcon:before {\n  color: var(--jp-ui-inverse-font-color1);\n}\n\n.jp-DirListing-item.lm-mod-drag-image,\n.jp-DirListing-item.jp-mod-selected.lm-mod-drag-image {\n  font-size: var(--jp-ui-font-size1);\n  padding-left: 4px;\n  margin-left: 4px;\n  width: 160px;\n  background-color: var(--jp-ui-inverse-font-color2);\n  box-shadow: var(--jp-elevation-z2);\n  border-radius: 0px;\n  color: var(--jp-ui-font-color1);\n  transform: translateX(-40%) translateY(-58%);\n}\n\n.jp-DirListing-deadSpace {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-Document {\n  min-width: 120px;\n  min-height: 120px;\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n}\n\n/*-----------------------------------------------------------------------------\n| Main OutputArea\n| OutputArea has a list of Outputs\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea {\n  overflow-y: auto;\n}\n\n.jp-OutputArea-child {\n  display: flex;\n  flex-direction: row;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child {\n  flex-direction: column;\n}\n\n.jp-OutputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-outprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n.jp-OutputArea-output {\n  height: auto;\n  overflow: auto;\n  user-select: text;\n  -moz-user-select: text;\n  -webkit-user-select: text;\n  -ms-user-select: text;\n}\n\n.jp-OutputArea-child .jp-OutputArea-output {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  margin-left: var(--jp-notebook-padding);\n}\n\n/**\n * Isolated output.\n */\n.jp-OutputArea-output.jp-mod-isolated {\n  width: 100%;\n  display: block;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n/* pre */\n\n.jp-OutputArea-output pre {\n  border: none;\n  margin: 0px;\n  padding: 0px;\n  overflow-x: auto;\n  overflow-y: auto;\n  word-break: break-all;\n  word-wrap: break-word;\n  white-space: pre-wrap;\n}\n\n/* tables */\n\n.jp-OutputArea-output.jp-RenderedHTMLCommon table {\n  margin-left: 0;\n  margin-right: 0;\n}\n\n/* description lists */\n\n.jp-OutputArea-output dl,\n.jp-OutputArea-output dt,\n.jp-OutputArea-output dd {\n  display: block;\n}\n\n.jp-OutputArea-output dl {\n  width: 100%;\n  overflow: hidden;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dt {\n  font-weight: bold;\n  float: left;\n  width: 20%;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dd {\n  float: left;\n  width: 80%;\n  padding: 0;\n  margin: 0;\n}\n\n/* Hide the gutter in case of\n *  - nested output areas (e.g. in the case of output widgets)\n *  - mirrored output areas\n */\n.jp-OutputArea .jp-OutputArea .jp-OutputArea-prompt {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| executeResult is added to any Output-result for the display of the object\n| returned by a cell\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  margin-left: 0px;\n  flex: 1 1 auto;\n}\n\n/* Text output with the Out[] prompt needs a top padding to match the\n * alignment of the Out[] prompt itself.\n */\n.jp-OutputArea-executeResult .jp-RenderedText.jp-OutputArea-output {\n  padding-top: var(--jp-code-padding);\n  border-top: var(--jp-border-width) solid transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| The Stdin output\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-stdin {\n  line-height: var(--jp-code-line-height);\n  padding-top: var(--jp-code-padding);\n  display: flex;\n}\n\n.jp-Stdin-prompt {\n  color: var(--jp-content-font-color0);\n  padding-right: var(--jp-code-padding);\n  vertical-align: baseline;\n  flex: 0 0 auto;\n}\n\n.jp-Stdin-input {\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  color: inherit;\n  background-color: inherit;\n  width: 42%;\n  min-width: 200px;\n  /* make sure input baseline aligns with prompt */\n  vertical-align: baseline;\n  /* padding + margin = 0.5em between prompt and cursor */\n  padding: 0em 0.25em;\n  margin: 0em 0.25em;\n  flex: 0 0 70%;\n}\n\n.jp-Stdin-input:focus {\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Output Area View\n|----------------------------------------------------------------------------*/\n\n.jp-LinkedOutputView .jp-OutputArea {\n  height: 100%;\n  display: block;\n}\n\n.jp-LinkedOutputView .jp-OutputArea-output:only-child {\n  height: 100%;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapser {\n  flex: 0 0 var(--jp-cell-collapser-width);\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n  border-radius: var(--jp-border-radius);\n  opacity: 1;\n}\n\n.jp-Collapser-child {\n  display: block;\n  width: 100%;\n  box-sizing: border-box;\n  /* height: 100% doesn't work because the height of its parent is computed from content */\n  position: absolute;\n  top: 0px;\n  bottom: 0px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Header/Footer\n|----------------------------------------------------------------------------*/\n\n/* Hidden by zero height by default */\n.jp-CellHeader,\n.jp-CellFooter {\n  height: 0px;\n  width: 100%;\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Input\n|----------------------------------------------------------------------------*/\n\n/* All input areas */\n.jp-InputArea {\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n}\n\nbody[data-format='mobile'] .jp-InputArea {\n  flex-direction: column;\n}\n\n.jp-InputArea-editor {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  /* This is the non-active, default styling */\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  border-radius: 0px;\n  background: var(--jp-cell-editor-background);\n}\n\nbody[data-format='mobile'] .jp-InputArea-editor {\n  margin-left: var(--jp-notebook-padding);\n}\n\n.jp-InputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-inprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  opacity: var(--jp-cell-prompt-opacity);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-InputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Placeholder {\n  display: flex;\n  flex-direction: row;\n  flex: 1 1 auto;\n}\n\n.jp-Placeholder-prompt {\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content {\n  flex: 1 1 auto;\n  border: none;\n  background: transparent;\n  height: 20px;\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon {\n  width: 32px;\n  height: 16px;\n  border: 1px solid transparent;\n  border-radius: var(--jp-border-radius);\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon:hover {\n  border: 1px solid var(--jp-border-color1);\n  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);\n  background-color: var(--jp-layout-color0);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-cell-scrolling-output-offset: 5px;\n}\n\n/*-----------------------------------------------------------------------------\n| Cell\n|----------------------------------------------------------------------------*/\n\n.jp-Cell {\n  padding: var(--jp-cell-padding);\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Common input/output\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-inputWrapper,\n.jp-Cell-outputWrapper {\n  display: flex;\n  flex-direction: row;\n  padding: 0px;\n  margin: 0px;\n  /* Added to reveal the box-shadow on the input and output collapsers. */\n  overflow: visible;\n}\n\n/* Only input/output areas inside cells */\n.jp-Cell-inputArea,\n.jp-Cell-outputArea {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Collapser\n|----------------------------------------------------------------------------*/\n\n/* Make the output collapser disappear when there is not output, but do so\n * in a manner that leaves it in the layout and preserves its width.\n */\n.jp-Cell.jp-mod-noOutputs .jp-Cell-outputCollapser {\n  border: none !important;\n  background: transparent !important;\n}\n\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputCollapser {\n  min-height: var(--jp-cell-collapser-min-height);\n}\n\n/*-----------------------------------------------------------------------------\n| Output\n|----------------------------------------------------------------------------*/\n\n/* Put a space between input and output when there IS output */\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputWrapper {\n  margin-top: 5px;\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-Cell-outputArea {\n  overflow-y: auto;\n  max-height: 200px;\n  box-shadow: inset 0 0 6px 2px rgba(0, 0, 0, 0.3);\n  margin-left: var(--jp-private-cell-scrolling-output-offset);\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  flex: 0 0\n    calc(\n      var(--jp-cell-prompt-width) -\n        var(--jp-private-cell-scrolling-output-offset)\n    );\n}\n\n/*-----------------------------------------------------------------------------\n| CodeCell\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| MarkdownCell\n|----------------------------------------------------------------------------*/\n\n.jp-MarkdownOutput {\n  flex: 1 1 auto;\n  margin-top: 0;\n  margin-bottom: 0;\n  padding-left: var(--jp-code-padding);\n}\n\n.jp-MarkdownOutput.jp-RenderedHTMLCommon {\n  overflow: auto;\n}\n\n.jp-showHiddenCellsButton {\n  margin-left: calc(var(--jp-cell-prompt-width) + 2 * var(--jp-code-padding));\n  margin-top: var(--jp-code-padding);\n  border: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-border-color3) !important;\n  color: var(--jp-content-font-color0) !important;\n}\n\n.jp-showHiddenCellsButton:hover {\n  background-color: var(--jp-border-color2) !important;\n}\n\n.jp-collapseHeadingButton {\n  display: none;\n}\n\n.jp-MarkdownCell:hover .jp-collapseHeadingButton {\n  display: flex;\n  min-height: var(--jp-cell-collapser-min-height);\n  position: absolute;\n  right: 0;\n  top: 0;\n  bottom: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n\n/*-----------------------------------------------------------------------------\n| Styles\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel-toolbar {\n  padding: 2px;\n}\n\n.jp-Toolbar-item.jp-Notebook-toolbarCellType .jp-select-wrapper.jp-mod-focused {\n  border: none;\n  box-shadow: none;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown select {\n  height: 24px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: 14px;\n  border-radius: 0;\n  display: block;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown span {\n  top: 5px !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-notebook-dragImage-width: 304px;\n  --jp-private-notebook-dragImage-height: 36px;\n  --jp-private-notebook-selected-color: var(--md-blue-400);\n  --jp-private-notebook-active-color: var(--md-green-400);\n}\n\n/*-----------------------------------------------------------------------------\n| Imports\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Notebook\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel {\n  display: block;\n  height: 100%;\n}\n\n.jp-NotebookPanel.jp-Document {\n  min-width: 240px;\n  min-height: 120px;\n}\n\n.jp-Notebook {\n  padding: var(--jp-notebook-padding);\n  outline: none;\n  overflow: auto;\n  background: var(--jp-layout-color0);\n}\n\n.jp-Notebook.jp-mod-scrollPastEnd::after {\n  display: block;\n  content: '';\n  min-height: var(--jp-notebook-scroll-padding);\n}\n\n.jp-MainAreaWidget-ContainStrict .jp-Notebook * {\n  contain: strict;\n}\n\n.jp-Notebook-render * {\n  contain: none !important;\n}\n\n.jp-Notebook .jp-Cell {\n  overflow: visible;\n}\n\n.jp-Notebook .jp-Cell .jp-InputPrompt {\n  cursor: move;\n  float: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook state related styling\n|\n| The notebook and cells each have states, here are the possibilities:\n|\n| - Notebook\n|   - Command\n|   - Edit\n| - Cell\n|   - None\n|   - Active (only one can be active)\n|   - Selected (the cells actions are applied to)\n|   - Multiselected (when multiple selected, the cursor)\n|   - No outputs\n|----------------------------------------------------------------------------*/\n\n/* Command or edit modes */\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-InputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-OutputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n/* cell is active */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser {\n  background: var(--jp-brand-color1);\n}\n\n/* cell is dirty */\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt {\n  color: var(--jp-warn-color1);\n}\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt:before {\n  color: var(--jp-warn-color1);\n  content: '•';\n}\n\n.jp-Notebook .jp-Cell.jp-mod-active.jp-mod-dirty .jp-Collapser {\n  background: var(--jp-warn-color1);\n}\n\n/* collapser is hovered */\n.jp-Notebook .jp-Cell .jp-Collapser:hover {\n  box-shadow: var(--jp-elevation-z2);\n  background: var(--jp-brand-color1);\n  opacity: var(--jp-cell-collapser-not-active-hover-opacity);\n}\n\n/* cell is active and collapser is hovered */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser:hover {\n  background: var(--jp-brand-color0);\n  opacity: 1;\n}\n\n/* Command mode */\n\n.jp-Notebook.jp-mod-commandMode .jp-Cell.jp-mod-selected {\n  background: var(--jp-notebook-multiselected-color);\n}\n\n.jp-Notebook.jp-mod-commandMode\n  .jp-Cell.jp-mod-active.jp-mod-selected:not(.jp-mod-multiSelected) {\n  background: transparent;\n}\n\n/* Edit mode */\n\n.jp-Notebook.jp-mod-editMode .jp-Cell.jp-mod-active .jp-InputArea-editor {\n  border: var(--jp-border-width) solid var(--jp-cell-editor-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-cell-editor-active-background);\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook drag and drop\n|----------------------------------------------------------------------------*/\n\n.jp-Notebook-cell.jp-mod-dropSource {\n  opacity: 0.5;\n}\n\n.jp-Notebook-cell.jp-mod-dropTarget,\n.jp-Notebook.jp-mod-commandMode\n  .jp-Notebook-cell.jp-mod-active.jp-mod-selected.jp-mod-dropTarget {\n  border-top-color: var(--jp-private-notebook-selected-color);\n  border-top-style: solid;\n  border-top-width: 2px;\n}\n\n.jp-dragImage {\n  display: block;\n  flex-direction: row;\n  width: var(--jp-private-notebook-dragImage-width);\n  height: var(--jp-private-notebook-dragImage-height);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background);\n  overflow: visible;\n}\n\n.jp-dragImage-singlePrompt {\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n.jp-dragImage .jp-dragImage-content {\n  flex: 1 1 auto;\n  z-index: 2;\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  line-height: var(--jp-code-line-height);\n  padding: var(--jp-code-padding);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background-color);\n  color: var(--jp-content-font-color3);\n  text-align: left;\n  margin: 4px 4px 4px 0px;\n}\n\n.jp-dragImage .jp-dragImage-prompt {\n  flex: 0 0 auto;\n  min-width: 36px;\n  color: var(--jp-cell-inprompt-font-color);\n  padding: var(--jp-code-padding);\n  padding-left: 12px;\n  font-family: var(--jp-cell-prompt-font-family);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: 1.9;\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n}\n\n.jp-dragImage-multipleBack {\n  z-index: -1;\n  position: absolute;\n  height: 32px;\n  width: 300px;\n  top: 8px;\n  left: 8px;\n  background: var(--jp-layout-color2);\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n/*-----------------------------------------------------------------------------\n| Cell toolbar\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookTools {\n  display: block;\n  min-width: var(--jp-sidebar-min-width);\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n    * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  overflow: auto;\n}\n\n.jp-NotebookTools-tool {\n  padding: 0px 12px 0 12px;\n}\n\n.jp-ActiveCellTool {\n  padding: 12px;\n  background-color: var(--jp-layout-color1);\n  border-top: none !important;\n}\n\n.jp-ActiveCellTool .jp-InputArea-prompt {\n  flex: 0 0 auto;\n  padding-left: 0px;\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor {\n  flex: 1 1 auto;\n  background: var(--jp-cell-editor-background);\n  border-color: var(--jp-cell-editor-border-color);\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor .CodeMirror {\n  background: transparent;\n}\n\n.jp-MetadataEditorTool {\n  flex-direction: column;\n  padding: 12px 0px 12px 0px;\n}\n\n.jp-RankedPanel > :not(:first-child) {\n  margin-top: 12px;\n}\n\n.jp-KeySelector select.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n}\n\n.jp-KeySelector label,\n.jp-MetadataEditorTool label {\n  line-height: 1.4;\n}\n\n.jp-NotebookTools .jp-select-wrapper {\n  margin-top: 4px;\n  margin-bottom: 0px;\n}\n\n.jp-NotebookTools .jp-Collapse {\n  margin-top: 16px;\n}\n\n/*-----------------------------------------------------------------------------\n| Presentation Mode (.jp-mod-presentationMode)\n|----------------------------------------------------------------------------*/\n\n.jp-mod-presentationMode .jp-Notebook {\n  --jp-content-font-size1: var(--jp-content-presentation-font-size1);\n  --jp-code-font-size: var(--jp-code-presentation-font-size);\n}\n\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-InputPrompt,\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-OutputPrompt {\n  flex: 0 0 110px;\n}\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-Placeholder {\n  padding-left: 55px;\n}\n\n.jp-Cell-Placeholder-wrapper {\n  background: #fff;\n  border: 1px solid;\n  border-color: #e5e6e9 #dfe0e4 #d0d1d5;\n  border-radius: 4px;\n  -webkit-border-radius: 4px;\n  margin: 10px 15px;\n}\n\n.jp-Cell-Placeholder-wrapper-inner {\n  padding: 15px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body {\n  background-repeat: repeat;\n  background-size: 50% auto;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  background: #f6f7f8;\n  background-image: -webkit-linear-gradient(\n    left,\n    #f6f7f8 0%,\n    #edeef1 20%,\n    #f6f7f8 40%,\n    #f6f7f8 100%\n  );\n  background-repeat: no-repeat;\n  background-size: 800px 104px;\n  height: 104px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  position: absolute;\n  right: 15px;\n  left: 15px;\n  top: 15px;\n}\n\ndiv.jp-Cell-Placeholder-h1 {\n  top: 20px;\n  height: 20px;\n  left: 15px;\n  width: 150px;\n}\n\ndiv.jp-Cell-Placeholder-h2 {\n  left: 15px;\n  top: 50px;\n  height: 10px;\n  width: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-1,\ndiv.jp-Cell-Placeholder-content-2,\ndiv.jp-Cell-Placeholder-content-3 {\n  left: 15px;\n  right: 15px;\n  height: 10px;\n}\n\ndiv.jp-Cell-Placeholder-content-1 {\n  top: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-2 {\n  top: 120px;\n}\n\ndiv.jp-Cell-Placeholder-content-3 {\n  top: 140px;\n}\n\n</style>\n\n    <style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\nThe following CSS variables define the main, public API for styling JupyterLab.\nThese variables should be used by all plugins wherever possible. In other\nwords, plugins should not define custom colors, sizes, etc unless absolutely\nnecessary. This enables users to change the visual theme of JupyterLab\nby changing these variables.\n\nMany variables appear in an ordered sequence (0,1,2,3). These sequences\nare designed to work well together, so for example, `--jp-border-color1` should\nbe used with `--jp-layout-color1`. The numbers have the following meanings:\n\n* 0: super-primary, reserved for special emphasis\n* 1: primary, most important under normal situations\n* 2: secondary, next most important under normal situations\n* 3: tertiary, next most important under normal situations\n\nThroughout JupyterLab, we are mostly following principles from Google's\nMaterial Design when selecting colors. We are not, however, following\nall of MD as it is not optimized for dense, information rich UIs.\n*/\n\n:root {\n  /* Elevation\n   *\n   * We style box-shadows using Material Design's idea of elevation. These particular numbers are taken from here:\n   *\n   * https://github.com/material-components/material-components-web\n   * https://material-components-web.appspot.com/elevation.html\n   */\n\n  --jp-shadow-base-lightness: 0;\n  --jp-shadow-umbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.2\n  );\n  --jp-shadow-penumbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.14\n  );\n  --jp-shadow-ambient-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.12\n  );\n  --jp-elevation-z0: none;\n  --jp-elevation-z1: 0px 2px 1px -1px var(--jp-shadow-umbra-color),\n    0px 1px 1px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 3px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z2: 0px 3px 1px -2px var(--jp-shadow-umbra-color),\n    0px 2px 2px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 5px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z4: 0px 2px 4px -1px var(--jp-shadow-umbra-color),\n    0px 4px 5px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 10px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z6: 0px 3px 5px -1px var(--jp-shadow-umbra-color),\n    0px 6px 10px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 18px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z8: 0px 5px 5px -3px var(--jp-shadow-umbra-color),\n    0px 8px 10px 1px var(--jp-shadow-penumbra-color),\n    0px 3px 14px 2px var(--jp-shadow-ambient-color);\n  --jp-elevation-z12: 0px 7px 8px -4px var(--jp-shadow-umbra-color),\n    0px 12px 17px 2px var(--jp-shadow-penumbra-color),\n    0px 5px 22px 4px var(--jp-shadow-ambient-color);\n  --jp-elevation-z16: 0px 8px 10px -5px var(--jp-shadow-umbra-color),\n    0px 16px 24px 2px var(--jp-shadow-penumbra-color),\n    0px 6px 30px 5px var(--jp-shadow-ambient-color);\n  --jp-elevation-z20: 0px 10px 13px -6px var(--jp-shadow-umbra-color),\n    0px 20px 31px 3px var(--jp-shadow-penumbra-color),\n    0px 8px 38px 7px var(--jp-shadow-ambient-color);\n  --jp-elevation-z24: 0px 11px 15px -7px var(--jp-shadow-umbra-color),\n    0px 24px 38px 3px var(--jp-shadow-penumbra-color),\n    0px 9px 46px 8px var(--jp-shadow-ambient-color);\n\n  /* Borders\n   *\n   * The following variables, specify the visual styling of borders in JupyterLab.\n   */\n\n  --jp-border-width: 1px;\n  --jp-border-color0: var(--md-grey-400);\n  --jp-border-color1: var(--md-grey-400);\n  --jp-border-color2: var(--md-grey-300);\n  --jp-border-color3: var(--md-grey-200);\n  --jp-border-radius: 2px;\n\n  /* UI Fonts\n   *\n   * The UI font CSS variables are used for the typography all of the JupyterLab\n   * user interface elements that are not directly user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-ui-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-ui-font-scale-factor: 1.2;\n  --jp-ui-font-size0: 0.83333em;\n  --jp-ui-font-size1: 13px; /* Base font size */\n  --jp-ui-font-size2: 1.2em;\n  --jp-ui-font-size3: 1.44em;\n\n  --jp-ui-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica,\n    Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';\n\n  /*\n   * Use these font colors against the corresponding main layout colors.\n   * In a light theme, these go from dark to light.\n   */\n\n  /* Defaults use Material Design specification */\n  --jp-ui-font-color0: rgba(0, 0, 0, 1);\n  --jp-ui-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-ui-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-ui-font-color3: rgba(0, 0, 0, 0.38);\n\n  /*\n   * Use these against the brand/accent/warn/error colors.\n   * These will typically go from light to darker, in both a dark and light theme.\n   */\n\n  --jp-ui-inverse-font-color0: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color1: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color2: rgba(255, 255, 255, 0.7);\n  --jp-ui-inverse-font-color3: rgba(255, 255, 255, 0.5);\n\n  /* Content Fonts\n   *\n   * Content font variables are used for typography of user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-content-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-content-line-height: 1.6;\n  --jp-content-font-scale-factor: 1.2;\n  --jp-content-font-size0: 0.83333em;\n  --jp-content-font-size1: 14px; /* Base font size */\n  --jp-content-font-size2: 1.2em;\n  --jp-content-font-size3: 1.44em;\n  --jp-content-font-size4: 1.728em;\n  --jp-content-font-size5: 2.0736em;\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-content-presentation-font-size1: 17px;\n\n  --jp-content-heading-line-height: 1;\n  --jp-content-heading-margin-top: 1.2em;\n  --jp-content-heading-margin-bottom: 0.8em;\n  --jp-content-heading-font-weight: 500;\n\n  /* Defaults use Material Design specification */\n  --jp-content-font-color0: rgba(0, 0, 0, 1);\n  --jp-content-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-content-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-content-font-color3: rgba(0, 0, 0, 0.38);\n\n  --jp-content-link-color: var(--md-blue-700);\n\n  --jp-content-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',\n    Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',\n    'Segoe UI Symbol';\n\n  /*\n   * Code Fonts\n   *\n   * Code font variables are used for typography of code and other monospaces content.\n   */\n\n  --jp-code-font-size: 13px;\n  --jp-code-line-height: 1.3077; /* 17px for 13px base */\n  --jp-code-padding: 5px; /* 5px for 13px base, codemirror highlighting needs integer px value */\n  --jp-code-font-family-default: Menlo, Consolas, 'DejaVu Sans Mono', monospace;\n  --jp-code-font-family: var(--jp-code-font-family-default);\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-code-presentation-font-size: 16px;\n\n  /* may need to tweak cursor width if you change font size */\n  --jp-code-cursor-width0: 1.4px;\n  --jp-code-cursor-width1: 2px;\n  --jp-code-cursor-width2: 4px;\n\n  /* Layout\n   *\n   * The following are the main layout colors use in JupyterLab. In a light\n   * theme these would go from light to dark.\n   */\n\n  --jp-layout-color0: white;\n  --jp-layout-color1: white;\n  --jp-layout-color2: var(--md-grey-200);\n  --jp-layout-color3: var(--md-grey-400);\n  --jp-layout-color4: var(--md-grey-600);\n\n  /* Inverse Layout\n   *\n   * The following are the inverse layout colors use in JupyterLab. In a light\n   * theme these would go from dark to light.\n   */\n\n  --jp-inverse-layout-color0: #111111;\n  --jp-inverse-layout-color1: var(--md-grey-900);\n  --jp-inverse-layout-color2: var(--md-grey-800);\n  --jp-inverse-layout-color3: var(--md-grey-700);\n  --jp-inverse-layout-color4: var(--md-grey-600);\n\n  /* Brand/accent */\n\n  --jp-brand-color0: var(--md-blue-900);\n  --jp-brand-color1: var(--md-blue-700);\n  --jp-brand-color2: var(--md-blue-300);\n  --jp-brand-color3: var(--md-blue-100);\n  --jp-brand-color4: var(--md-blue-50);\n\n  --jp-accent-color0: var(--md-green-900);\n  --jp-accent-color1: var(--md-green-700);\n  --jp-accent-color2: var(--md-green-300);\n  --jp-accent-color3: var(--md-green-100);\n\n  /* State colors (warn, error, success, info) */\n\n  --jp-warn-color0: var(--md-orange-900);\n  --jp-warn-color1: var(--md-orange-700);\n  --jp-warn-color2: var(--md-orange-300);\n  --jp-warn-color3: var(--md-orange-100);\n\n  --jp-error-color0: var(--md-red-900);\n  --jp-error-color1: var(--md-red-700);\n  --jp-error-color2: var(--md-red-300);\n  --jp-error-color3: var(--md-red-100);\n\n  --jp-success-color0: var(--md-green-900);\n  --jp-success-color1: var(--md-green-700);\n  --jp-success-color2: var(--md-green-300);\n  --jp-success-color3: var(--md-green-100);\n\n  --jp-info-color0: var(--md-cyan-900);\n  --jp-info-color1: var(--md-cyan-700);\n  --jp-info-color2: var(--md-cyan-300);\n  --jp-info-color3: var(--md-cyan-100);\n\n  /* Cell specific styles */\n\n  --jp-cell-padding: 5px;\n\n  --jp-cell-collapser-width: 8px;\n  --jp-cell-collapser-min-height: 20px;\n  --jp-cell-collapser-not-active-hover-opacity: 0.6;\n\n  --jp-cell-editor-background: var(--md-grey-100);\n  --jp-cell-editor-border-color: var(--md-grey-300);\n  --jp-cell-editor-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-cell-editor-active-background: var(--jp-layout-color0);\n  --jp-cell-editor-active-border-color: var(--jp-brand-color1);\n\n  --jp-cell-prompt-width: 64px;\n  --jp-cell-prompt-font-family: var(--jp-code-font-family-default);\n  --jp-cell-prompt-letter-spacing: 0px;\n  --jp-cell-prompt-opacity: 1;\n  --jp-cell-prompt-not-active-opacity: 0.5;\n  --jp-cell-prompt-not-active-font-color: var(--md-grey-700);\n  /* A custom blend of MD grey and blue 600\n   * See https://meyerweb.com/eric/tools/color-blend/#546E7A:1E88E5:5:hex */\n  --jp-cell-inprompt-font-color: #307fc1;\n  /* A custom blend of MD grey and orange 600\n   * https://meyerweb.com/eric/tools/color-blend/#546E7A:F4511E:5:hex */\n  --jp-cell-outprompt-font-color: #bf5b3d;\n\n  /* Notebook specific styles */\n\n  --jp-notebook-padding: 10px;\n  --jp-notebook-select-background: var(--jp-layout-color1);\n  --jp-notebook-multiselected-color: var(--md-blue-50);\n\n  /* The scroll padding is calculated to fill enough space at the bottom of the\n  notebook to show one single-line cell (with appropriate padding) at the top\n  when the notebook is scrolled all the way to the bottom. We also subtract one\n  pixel so that no scrollbar appears if we have just one single-line cell in the\n  notebook. This padding is to enable a 'scroll past end' feature in a notebook.\n  */\n  --jp-notebook-scroll-padding: calc(\n    100% - var(--jp-code-font-size) * var(--jp-code-line-height) -\n      var(--jp-code-padding) - var(--jp-cell-padding) - 1px\n  );\n\n  /* Rendermime styles */\n\n  --jp-rendermime-error-background: #fdd;\n  --jp-rendermime-table-row-background: var(--md-grey-100);\n  --jp-rendermime-table-row-hover-background: var(--md-light-blue-50);\n\n  /* Dialog specific styles */\n\n  --jp-dialog-background: rgba(0, 0, 0, 0.25);\n\n  /* Console specific styles */\n\n  --jp-console-padding: 10px;\n\n  /* Toolbar specific styles */\n\n  --jp-toolbar-border-color: var(--jp-border-color1);\n  --jp-toolbar-micro-height: 8px;\n  --jp-toolbar-background: var(--jp-layout-color1);\n  --jp-toolbar-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.24);\n  --jp-toolbar-header-margin: 4px 4px 0px 4px;\n  --jp-toolbar-active-background: var(--md-grey-300);\n\n  /* Statusbar specific styles */\n\n  --jp-statusbar-height: 24px;\n\n  /* Input field styles */\n\n  --jp-input-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-input-active-background: var(--jp-layout-color1);\n  --jp-input-hover-background: var(--jp-layout-color1);\n  --jp-input-background: var(--md-grey-100);\n  --jp-input-border-color: var(--jp-border-color1);\n  --jp-input-active-border-color: var(--jp-brand-color1);\n  --jp-input-active-box-shadow-color: rgba(19, 124, 189, 0.3);\n\n  /* General editor styles */\n\n  --jp-editor-selected-background: #d9d9d9;\n  --jp-editor-selected-focused-background: #d7d4f0;\n  --jp-editor-cursor-color: var(--jp-ui-font-color0);\n\n  /* Code mirror specific styles */\n\n  --jp-mirror-editor-keyword-color: #008000;\n  --jp-mirror-editor-atom-color: #88f;\n  --jp-mirror-editor-number-color: #080;\n  --jp-mirror-editor-def-color: #00f;\n  --jp-mirror-editor-variable-color: var(--md-grey-900);\n  --jp-mirror-editor-variable-2-color: #05a;\n  --jp-mirror-editor-variable-3-color: #085;\n  --jp-mirror-editor-punctuation-color: #05a;\n  --jp-mirror-editor-property-color: #05a;\n  --jp-mirror-editor-operator-color: #aa22ff;\n  --jp-mirror-editor-comment-color: #408080;\n  --jp-mirror-editor-string-color: #ba2121;\n  --jp-mirror-editor-string-2-color: #708;\n  --jp-mirror-editor-meta-color: #aa22ff;\n  --jp-mirror-editor-qualifier-color: #555;\n  --jp-mirror-editor-builtin-color: #008000;\n  --jp-mirror-editor-bracket-color: #997;\n  --jp-mirror-editor-tag-color: #170;\n  --jp-mirror-editor-attribute-color: #00c;\n  --jp-mirror-editor-header-color: blue;\n  --jp-mirror-editor-quote-color: #090;\n  --jp-mirror-editor-link-color: #00c;\n  --jp-mirror-editor-error-color: #f00;\n  --jp-mirror-editor-hr-color: #999;\n\n  /* Vega extension styles */\n\n  --jp-vega-background: white;\n\n  /* Sidebar-related styles */\n\n  --jp-sidebar-min-width: 250px;\n\n  /* Search-related styles */\n\n  --jp-search-toggle-off-opacity: 0.5;\n  --jp-search-toggle-hover-opacity: 0.8;\n  --jp-search-toggle-on-opacity: 1;\n  --jp-search-selected-match-background-color: rgb(245, 200, 0);\n  --jp-search-selected-match-color: black;\n  --jp-search-unselected-match-background-color: var(\n    --jp-inverse-layout-color0\n  );\n  --jp-search-unselected-match-color: var(--jp-ui-inverse-font-color0);\n\n  /* Icon colors that work well with light or dark backgrounds */\n  --jp-icon-contrast-color0: var(--md-purple-600);\n  --jp-icon-contrast-color1: var(--md-green-600);\n  --jp-icon-contrast-color2: var(--md-pink-600);\n  --jp-icon-contrast-color3: var(--md-blue-600);\n}\n</style>\n\n<style type=\"text/css\">\n/* Force rendering true colors when outputing to pdf */\n* {\n  -webkit-print-color-adjust: exact;\n}\n\n/* Misc */\na.anchor-link {\n  display: none;\n}\n\n/* Input area styling */\n.jp-InputArea {\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  overflow: hidden;\n}\n\n.CodeMirror.cm-s-jupyter .highlight pre {\n/* weird, but --jp-code-padding defined to be 5px but 4px horizontal padding is hardcoded for pre.CodeMirror-line */\n  padding: var(--jp-code-padding) 4px;\n  margin: 0;\n\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit;\n  color: inherit;\n\n}\n\n.jp-OutputArea-output pre {\n  line-height: inherit;\n  font-family: inherit;\n}\n\n.jp-RenderedText pre {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-code-font-size);\n}\n\n/* Using table instead of flexbox so that we can use break-inside property */\n/* CSS rules under this comment should not be required anymore after we move to the JupyterLab 4.0 CSS */\n\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  min-width: calc(\n    var(--jp-cell-prompt-width) - var(--jp-private-cell-scrolling-output-offset)\n  );\n}\n\n.jp-OutputArea-child {\n  display: table;\n  width: 100%;\n}\n\n.jp-OutputPrompt {\n  display: table-cell;\n  vertical-align: top;\n  min-width: var(--jp-cell-prompt-width);\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  display: table-row;\n}\n\n.jp-OutputArea-output {\n  display: table-cell;\n  width: 100%;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  display: table-row;\n}\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  width: 100%;\n}\n\n/* Hiding the collapser by default */\n.jp-Collapser {\n  display: none;\n}\n\n@page {\n    margin: 0.5in; /* Margin for each printed piece of paper */\n}\n\n@media print {\n  .jp-Cell-inputWrapper,\n  .jp-Cell-outputWrapper {\n    display: block;\n  }\n\n  .jp-OutputArea-child {\n    break-inside: avoid-page;\n  }\n}\n</style>\n\n<!-- Load mathjax -->\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/latest.js?config=TeX-AMS_CHTML-full,Safe\"> </script>\n    <!-- MathJax configuration -->\n    <script type=\"text/x-mathjax-config\">\n    init_mathjax = function() {\n        if (window.MathJax) {\n        // MathJax loaded\n            MathJax.Hub.Config({\n                TeX: {\n                    equationNumbers: {\n                    autoNumber: \"AMS\",\n                    useLabelIds: true\n                    }\n                },\n                tex2jax: {\n                    inlineMath: [ ['$','$'], [\"\\\\(\",\"\\\\)\"] ],\n                    displayMath: [ ['$$','$$'], [\"\\\\[\",\"\\\\]\"] ],\n                    processEscapes: true,\n                    processEnvironments: true\n                },\n                displayAlign: 'center',\n                CommonHTML: {\n                    linebreaks: {\n                    automatic: true\n                    }\n                }\n            });\n\n            MathJax.Hub.Queue([\"Typeset\", MathJax.Hub]);\n        }\n    }\n    init_mathjax();\n    </script>\n    <!-- End of mathjax configuration --></head>\n<body class=\"jp-Notebook\" data-jp-theme-light=\"true\" data-jp-theme-name=\"JupyterLab Light\">\n<div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[1]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Diagrams.Prelude</span><span class=\"w\"> </span><span class=\"k\">hiding</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">normal</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Measure</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Class</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Enumerator</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Weighted</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Sampler.Strict</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Sampler.Lazy</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">L</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Traced.Static</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Inference.MCMC</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Numeric.Log</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Diagrams.Backend.Cairo</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">C</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Weighted</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">Weighted</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Density.Free</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Writer</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Loops</span>\n\n<span class=\"cm\">{-# LANGUAGE NoMonomorphismRestriction #-}</span>\n<span class=\"cm\">{-# LANGUAGE FlexibleContexts          #-}</span>\n<span class=\"cm\">{-# LANGUAGE TypeFamilies              #-}</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<!-- ideas:\n\nsample from the space of linear maps, and apply to a square\n\nshow wigner semicircle distribution -->\n<p><code>Diagram</code>s, from the <code>diagrams</code> package, are representations of 2D diagrams, which can be displayed using a variety of backends. In the spirit of Haskell, <code>Diagram</code>s  compose in a variety of ways, so to create a complex diagrams, you build it up from simpler parts.</p>\n<p>Because <code>Diagram</code>s are first class values in Haskell, we can define distributions over them</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[2]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">circles</span><span class=\"w\"> </span><span class=\"n\">n</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">bernoulli</span><span class=\"w\"> </span><span class=\"mf\">0.01</span>\n<span class=\"w\">    </span><span class=\"kr\">if</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"kr\">then</span><span class=\"w\"> </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">mconcat</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">circle</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"mi\">1</span><span class=\"o\">..</span><span class=\"n\">n</span><span class=\"p\">])</span><span class=\"w\"> </span><span class=\"kr\">else</span><span class=\"w\"> </span><span class=\"n\">circles</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">n</span><span class=\"w\"> </span><span class=\"o\">+</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">)</span>\n<span class=\"w\">    </span>\n<span class=\"nf\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">diagram</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">circles</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">)</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n<div class=\"jp-OutputArea-child\">\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedSVG jp-OutputArea-output \" data-mime-type=\"image/svg+xml\">\n<!--?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?-->\n<svg width=\"353.553391pt\" height=\"353.553391pt\" viewBox=\"0 0 353.553391 353.553391\" version=\"1.1\">\n<g id=\"surface2\">\n<path style=\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.554688 176.777344 C 353.554688 79.144531 274.410156 0 176.777344 0 C 79.144531 0 0 79.144531 0 176.777344 C 0 274.410156 79.144531 353.554688 176.777344 353.554688 C 274.410156 353.554688 353.554688 274.410156 353.554688 176.777344 Z M 353.554688 176.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 344.714844 176.777344 C 344.714844 84.027344 269.527344 8.839844 176.777344 8.839844 C 84.027344 8.839844 8.839844 84.027344 8.839844 176.777344 C 8.839844 269.527344 84.027344 344.714844 176.777344 344.714844 C 269.527344 344.714844 344.714844 269.527344 344.714844 176.777344 Z M 344.714844 176.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 335.875 176.777344 C 335.875 88.910156 264.644531 17.679688 176.777344 17.679688 C 88.910156 17.679688 17.679688 88.910156 17.679688 176.777344 C 17.679688 264.644531 88.910156 335.875 176.777344 335.875 C 264.644531 335.875 335.875 264.644531 335.875 176.777344 Z M 335.875 176.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.035156 176.777344 C 327.035156 93.789062 259.761719 26.515625 176.773438 26.515625 C 93.785156 26.515625 26.511719 93.789062 26.511719 176.777344 C 26.511719 259.765625 93.785156 327.039062 176.773438 327.039062 C 259.761719 327.039062 327.035156 259.765625 327.035156 176.777344 Z M 327.035156 176.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 318.199219 176.777344 C 318.199219 98.671875 254.882812 35.355469 176.777344 35.355469 C 98.671875 35.355469 35.355469 98.671875 35.355469 176.777344 C 35.355469 254.882812 98.671875 318.199219 176.777344 318.199219 C 254.882812 318.199219 318.199219 254.882812 318.199219 176.777344 Z M 318.199219 176.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.359375 176.777344 C 309.359375 103.554688 250 44.195312 176.777344 44.195312 C 103.554688 44.195312 44.195312 103.554688 44.195312 176.777344 C 44.195312 250 103.554688 309.359375 176.777344 309.359375 C 250 309.359375 309.359375 250 309.359375 176.777344 Z M 309.359375 176.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.519531 176.777344 C 300.519531 108.4375 245.117188 53.035156 176.777344 53.035156 C 108.4375 53.035156 53.035156 108.4375 53.035156 176.777344 C 53.035156 245.117188 108.4375 300.519531 176.777344 300.519531 C 245.117188 300.519531 300.519531 245.117188 300.519531 176.777344 Z M 300.519531 176.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.679688 176.777344 C 291.679688 113.316406 240.234375 61.871094 176.773438 61.871094 C 113.3125 61.871094 61.867188 113.316406 61.867188 176.777344 C 61.867188 240.238281 113.3125 291.683594 176.773438 291.683594 C 240.234375 291.683594 291.679688 240.238281 291.679688 176.777344 Z M 291.679688 176.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.84375 176.777344 C 282.84375 118.199219 235.355469 70.710938 176.777344 70.710938 C 118.199219 70.710938 70.710938 118.199219 70.710938 176.777344 C 70.710938 235.355469 118.199219 282.84375 176.777344 282.84375 C 235.355469 282.84375 282.84375 235.355469 282.84375 176.777344 Z M 282.84375 176.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.003906 176.777344 C 274.003906 123.082031 230.472656 79.550781 176.777344 79.550781 C 123.082031 79.550781 79.550781 123.082031 79.550781 176.777344 C 79.550781 230.472656 123.082031 274.003906 176.777344 274.003906 C 230.472656 274.003906 274.003906 230.472656 274.003906 176.777344 Z M 274.003906 176.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.164062 176.777344 C 265.164062 127.960938 225.589844 88.390625 176.777344 88.390625 C 127.960938 88.390625 88.390625 127.964844 88.390625 176.777344 C 88.390625 225.59375 127.964844 265.164062 176.777344 265.164062 C 225.59375 265.164062 265.164062 225.589844 265.164062 176.777344 Z M 265.164062 176.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.328125 176.777344 C 256.328125 132.84375 220.710938 97.226562 176.777344 97.226562 C 132.84375 97.226562 97.226562 132.84375 97.226562 176.777344 C 97.226562 220.710938 132.84375 256.328125 176.777344 256.328125 C 220.710938 256.328125 256.328125 220.710938 256.328125 176.777344 Z M 256.328125 176.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.488281 176.777344 C 247.488281 137.726562 215.828125 106.066406 176.777344 106.066406 C 137.726562 106.066406 106.066406 137.726562 106.066406 176.777344 C 106.066406 215.828125 137.726562 247.488281 176.777344 247.488281 C 215.828125 247.488281 247.488281 215.828125 247.488281 176.777344 Z M 247.488281 176.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.648438 176.777344 C 238.648438 142.605469 210.949219 114.90625 176.777344 114.90625 C 142.605469 114.90625 114.90625 142.605469 114.90625 176.777344 C 114.90625 210.949219 142.605469 238.648438 176.777344 238.648438 C 210.949219 238.648438 238.648438 210.949219 238.648438 176.777344 Z M 238.648438 176.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.808594 176.777344 C 229.808594 147.488281 206.066406 123.746094 176.777344 123.746094 C 147.488281 123.746094 123.746094 147.488281 123.746094 176.777344 C 123.746094 206.066406 147.488281 229.808594 176.777344 229.808594 C 206.066406 229.808594 229.808594 206.066406 229.808594 176.777344 Z M 229.808594 176.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 220.972656 176.777344 C 220.972656 152.371094 201.1875 132.582031 176.777344 132.582031 C 152.371094 132.582031 132.582031 152.367188 132.582031 176.777344 C 132.582031 201.183594 152.367188 220.972656 176.777344 220.972656 C 201.183594 220.972656 220.972656 201.1875 220.972656 176.777344 Z M 220.972656 176.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.132812 176.777344 C 212.132812 157.25 196.304688 141.421875 176.777344 141.421875 C 157.25 141.421875 141.421875 157.25 141.421875 176.777344 C 141.421875 196.304688 157.25 212.132812 176.777344 212.132812 C 196.304688 212.132812 212.132812 196.304688 212.132812 176.777344 Z M 212.132812 176.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.292969 176.777344 C 203.292969 162.132812 191.421875 150.261719 176.777344 150.261719 C 162.132812 150.261719 150.261719 162.132812 150.261719 176.777344 C 150.261719 191.421875 162.132812 203.292969 176.777344 203.292969 C 191.421875 203.292969 203.292969 191.421875 203.292969 176.777344 Z M 203.292969 176.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.453125 176.777344 C 194.453125 167.015625 186.539062 159.101562 176.777344 159.101562 C 167.015625 159.101562 159.101562 167.015625 159.101562 176.777344 C 159.101562 186.539062 167.015625 194.453125 176.777344 194.453125 C 186.539062 194.453125 194.453125 186.539062 194.453125 176.777344 Z M 194.453125 176.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.617188 176.777344 C 185.617188 171.894531 181.660156 167.9375 176.777344 167.9375 C 171.894531 167.9375 167.9375 171.894531 167.9375 176.777344 C 167.9375 181.660156 171.894531 185.617188 176.777344 185.617188 C 181.660156 185.617188 185.617188 181.660156 185.617188 176.777344 Z M 185.617188 176.777344 \"></path>\n</g>\n</svg>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h2 id=\"Viewing-traces\">Viewing traces<a class=\"anchor-link\" href=\"#Viewing-traces\">&#182;</a></h2><p>A nice use of diagrams is to view probabilistic program execution traces. Given a <code>program :: MonadMeasure m =&gt; m X</code>, we can convert it into a sampler of traces and their weights using <code>getTrace</code> defined below:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[3]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">getTrace</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">WeightedT</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">DensityT</span><span class=\"w\"> </span><span class=\"kt\">SamplerIO</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">a</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kt\">SamplerIO</span><span class=\"w\"> </span><span class=\"p\">([</span><span class=\"kt\">Double</span><span class=\"p\">],</span><span class=\"w\"> </span><span class=\"kt\">Log</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span>\n<span class=\"nf\">getTrace</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"p\">((</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"n\">y</span><span class=\"p\">),</span><span class=\"n\">z</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">z</span><span class=\"p\">,</span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">runWriterT</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">runWeightedT</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">Weighted</span><span class=\"o\">.</span><span class=\"n\">hoist</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">WriterT</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">runDensityT</span><span class=\"w\"> </span><span class=\"kt\">[]</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">m</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[4]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">program</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span>\n<span class=\"w\">    </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">beta</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"> </span><span class=\"mi\">2</span>\n<span class=\"w\">    </span><span class=\"n\">b</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"kt\">Control</span><span class=\"o\">.</span><span class=\"kt\">Monad</span><span class=\"o\">.</span><span class=\"kt\">Bayes</span><span class=\"o\">.</span><span class=\"kt\">Class</span><span class=\"o\">.</span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"o\">**</span><span class=\"mi\">2</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"mi\">1</span>\n<span class=\"w\">    </span><span class=\"n\">factor</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">normalPdf</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"w\"> </span><span class=\"n\">abs</span><span class=\"w\"> </span><span class=\"n\">b</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">x</span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"n\">b</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[5]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">traceDiagram</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"p\">([</span><span class=\"kt\">Double</span><span class=\"p\">],</span><span class=\"w\"> </span><span class=\"kt\">Log</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kt\">Diagram</span><span class=\"w\"> </span><span class=\"kt\">C</span><span class=\"o\">.</span><span class=\"kt\">B</span>\n<span class=\"nf\">traceDiagram</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">trace</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">weight</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">fromVertices</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"n\">p2</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">i</span><span class=\"p\">,</span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">|</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">y</span><span class=\"p\">,</span><span class=\"n\">i</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">trace</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"mi\">1</span><span class=\"o\">..</span><span class=\"p\">]]</span><span class=\"w\"> </span><span class=\"o\">#</span><span class=\"w\"> </span><span class=\"n\">opacity</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">ln</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">exp</span><span class=\"w\"> </span><span class=\"n\">weight</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">#</span><span class=\"w\"> </span><span class=\"n\">scaleX</span><span class=\"w\"> </span><span class=\"mi\">1</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[6]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">diagram</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">mconcat</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"n\">traceDiagram</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">1000</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">getTrace</span><span class=\"w\"> </span><span class=\"n\">program</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n<div class=\"jp-OutputArea-child\">\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedSVG jp-OutputArea-output \" data-mime-type=\"image/svg+xml\">\n<!--?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?-->\n<svg width=\"353.778234pt\" height=\"353.328404pt\" viewBox=\"0 0 353.778234 353.328404\" version=\"1.1\">\n<g id=\"surface8\">\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.634018;\" d=\"M 0 174.992188 L 353.777344 114.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.200771;\" d=\"M 0 73.675781 L 353.777344 348.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.13568;\" d=\"M 0 37.488281 L 353.777344 2.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.275641;\" d=\"M 0 23.015625 L 353.777344 181.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.350537;\" d=\"M 0 288.867188 L 353.777344 308.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.286501;\" d=\"M 0 304.804688 L 353.777344 29.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.414079;\" d=\"M 0 115.746094 L 353.777344 164.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.448893;\" d=\"M 0 336.058594 L 353.777344 287.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.36922;\" d=\"M 0 118.578125 L 353.777344 73.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.240651;\" d=\"M 0 183.964844 L 353.777344 338.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.820259;\" d=\"M 0 296.539062 L 353.777344 112.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.45837;\" d=\"M 0 319.835938 L 353.777344 68.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.338984;\" d=\"M 0 59.535156 L 353.777344 92.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.226067;\" d=\"M 0 324.757812 L 353.777344 13.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.523865;\" d=\"M 0 330.855469 L 353.777344 274.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.557994;\" d=\"M 0 208.351562 L 353.777344 271.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.975957;\" d=\"M 0 323.003906 L 353.777344 232.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.631492;\" d=\"M 0 144.511719 L 353.777344 129.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.40411;\" d=\"M 0 81.324219 L 353.777344 105.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.705623;\" d=\"M 0 291.78125 L 353.777344 252.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.247359;\" d=\"M 0 146.171875 L 353.777344 171.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.32439;\" d=\"M 0 304.933594 L 353.777344 315.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.00847114;\" d=\"M 0 150.039062 L 353.777344 207.75 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.164233;\" d=\"M 0 198.230469 L 353.777344 3.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.214551;\" d=\"M 0 91.46875 L 353.777344 346.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.223661;\" d=\"M 0 120.953125 L 353.777344 343.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.344612;\" d=\"M 0 68.179688 L 353.777344 88.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.990502;\" d=\"M 0 204.757812 L 353.777344 145.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.2355;\" d=\"M 0 245.476562 L 353.777344 17.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.397964;\" d=\"M 0 278.78125 L 353.777344 184.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.468389;\" d=\"M 0 148.53125 L 353.777344 92 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.582443;\" d=\"M 0 139.96875 L 353.777344 121.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.168369;\" d=\"M 0 206.195312 L 353.777344 350.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.726355;\" d=\"M 0 320.253906 L 353.777344 103.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.54406;\" d=\"M 0 234.75 L 353.777344 88.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.525555;\" d=\"M 0 311.121094 L 353.777344 79.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 326.179688 L 353.777344 208.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.55907;\" d=\"M 0 148.09375 L 353.777344 112.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.249886;\" d=\"M 0 2.90625 L 353.777344 191.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.261882;\" d=\"M 0 97.351562 L 353.777344 39.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.13247;\" d=\"M 0 202.578125 L 353.777344 353.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.4084;\" d=\"M 0 89.636719 L 353.777344 302.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.226464;\" d=\"M 0 74.445312 L 353.777344 178.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.457555;\" d=\"M 0 127.59375 L 353.777344 96.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.563949;\" d=\"M 0 128.183594 L 353.777344 267.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 272.570312 L 353.777344 212.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.310115;\" d=\"M 0 129.644531 L 353.777344 323.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.67994;\" d=\"M 0 344.085938 L 353.777344 98.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.624755;\" d=\"M 0 275.195312 L 353.777344 95.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.460423;\" d=\"M 0 86.273438 L 353.777344 126.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.496795;\" d=\"M 0 237.203125 L 353.777344 80.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.279745;\" d=\"M 0 38.960938 L 353.777344 76.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.707534;\" d=\"M 0 261.96875 L 353.777344 252.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 276.988281 L 353.777344 165.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.661019;\" d=\"M 0 195.980469 L 353.777344 257.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.410827;\" d=\"M 0 215.761719 L 353.777344 65.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.459509;\" d=\"M 0 239.382812 L 353.777344 73.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 332.160156 L 353.777344 167.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.327008;\" d=\"M 0 142.578125 L 353.777344 53.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.273853;\" d=\"M 0 298.820312 L 353.777344 26.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.818061;\" d=\"M 0 188.480469 L 353.777344 238.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.225707;\" d=\"M 0 10.59375 L 353.777344 197.75 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.473702;\" d=\"M 0 231.625 L 353.777344 76.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.215231;\" d=\"M 0 43.40625 L 353.777344 33.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.367741;\" d=\"M 0 322.75 L 353.777344 304.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.341921;\" d=\"M 0 189.828125 L 353.777344 169.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.914645;\" d=\"M 0 196.222656 L 353.777344 142.25 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.316726;\" d=\"M 0 53.269531 L 353.777344 276.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.451926;\" d=\"M 0 76.371094 L 353.777344 282.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.526117;\" d=\"M 0 316.15625 L 353.777344 274.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.37306;\" d=\"M 0 284.617188 L 353.777344 303.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.512174;\" d=\"M 0 302.214844 L 353.777344 276.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.355252;\" d=\"M 0 35.914062 L 353.777344 146.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.490101;\" d=\"M 0 118.003906 L 353.777344 160.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.204304;\" d=\"M 0 109.410156 L 353.777344 15.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 284.003906 L 353.777344 137.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.31929;\" d=\"M 0 49.753906 L 353.777344 90.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.207317;\" d=\"M 0 74.90625 L 353.777344 252.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.277614;\" d=\"M 0 323.636719 L 353.777344 26.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.321296;\" d=\"M 0 65.898438 L 353.777344 171.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.178725;\" d=\"M 0 140.132812 L 353.777344 350.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.147217;\" d=\"M 0 242.789062 L 353.777344 352.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.296021;\" d=\"M 0 11.847656 L 353.777344 151.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.267621;\" d=\"M 0 48.59375 L 353.777344 61.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.316504;\" d=\"M 0 144.839844 L 353.777344 321.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.115205;\" d=\"M 0 55.902344 L 353.777344 0.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.288952;\" d=\"M 0 226.269531 L 353.777344 194.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.603538;\" d=\"M 0 126.980469 L 353.777344 144.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.952394;\" d=\"M 0 250.214844 L 353.777344 127.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.287588;\" d=\"M 0 172.894531 L 353.777344 36.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.623477;\" d=\"M 0 140.976562 L 353.777344 257.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.377636;\" d=\"M 0 51.863281 L 353.777344 308.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 235.886719 L 353.777344 225.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 341.320312 L 353.777344 190.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.448636;\" d=\"M 0 160.449219 L 353.777344 83.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.398332;\" d=\"M 0 115.394531 L 353.777344 84.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.355712;\" d=\"M 0 193.390625 L 353.777344 310.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.450608;\" d=\"M 0 167.453125 L 353.777344 82.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.456602;\" d=\"M 0 92.464844 L 353.777344 289.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.260101;\" d=\"M 0 35.542969 L 353.777344 182.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.187176;\" d=\"M 0 202.324219 L 353.777344 348.5 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.399527;\" d=\"M 0 215.246094 L 353.777344 299.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.241027;\" d=\"M 0 331.390625 L 353.777344 17.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.940634;\" d=\"M 0 229.96875 L 353.777344 232.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0413888;\" d=\"M 0 57.828125 L 353.777344 196.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.949072;\" d=\"M 0 348.554688 L 353.777344 119.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.21316;\" d=\"M 0 149.121094 L 353.777344 344.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.00874538;\" d=\"M 0 276.039062 L 353.777344 183.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.138754;\" d=\"M 0 137.921875 L 353.777344 174.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.388712;\" d=\"M 0 224.382812 L 353.777344 59.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0402962;\" d=\"M 0 85.972656 L 353.777344 187.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.521043;\" d=\"M 0 296.949219 L 353.777344 275.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.589473;\" d=\"M 0 136.484375 L 353.777344 155.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.968701;\" d=\"M 0 277.925781 L 353.777344 124.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 306.417969 L 353.777344 215.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.153126;\" d=\"M 0 109.46875 L 353.777344 3.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.583281;\" d=\"M 0 205.953125 L 353.777344 267.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.2049;\" d=\"M 0 23.390625 L 353.777344 38.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 292.058594 L 353.777344 136.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.721952;\" d=\"M 0 184.289062 L 353.777344 124.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.267483;\" d=\"M 0 12.703125 L 353.777344 106.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.370697;\" d=\"M 0 221.136719 L 353.777344 305.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.313043;\" d=\"M 0 327.78125 L 353.777344 317.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.198064;\" d=\"M 0 158.511719 L 353.777344 10.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.207587;\" d=\"M 0 101.027344 L 353.777344 17.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.856645;\" d=\"M 0 222.058594 L 353.777344 126.25 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.877406;\" d=\"M 0 189.070312 L 353.777344 154.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.360088;\" d=\"M 0 38.417969 L 353.777344 140.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.728935;\" d=\"M 0 157.910156 L 353.777344 238.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.285178;\" d=\"M 0 47.414062 L 353.777344 176.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.486215;\" d=\"M 0 91.777344 L 353.777344 278.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.560395;\" d=\"M 0 244.785156 L 353.777344 270.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.267578;\" d=\"M 0 268.621094 L 353.777344 25.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.509298;\" d=\"M 0 98.761719 L 353.777344 135.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 239.777344 L 353.777344 225.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.649276;\" d=\"M 0 182.90625 L 353.777344 114.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.820412;\" d=\"M 0 325.402344 L 353.777344 242.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.251037;\" d=\"M 0 60.097656 L 353.777344 46.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.652475;\" d=\"M 0 266.371094 L 353.777344 187.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.44877;\" d=\"M 0 223.019531 L 353.777344 72.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 351.394531 L 353.777344 147.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.86816;\" d=\"M 0 266.804688 L 353.777344 239.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.39781;\" d=\"M 0 345.917969 L 353.777344 297.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 321.394531 L 353.777344 145.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.695209;\" d=\"M 0 228.578125 L 353.777344 109.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 232.109375 L 353.777344 207.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.626495;\" d=\"M 0 133.21875 L 353.777344 249.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.359803;\" d=\"M 0 278.574219 L 353.777344 306.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.249388;\" d=\"M 0 341.613281 L 353.777344 19.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.627347;\" d=\"M 0 133.964844 L 353.777344 146.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.367268;\" d=\"M 0 242.710938 L 353.777344 52.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.627718;\" d=\"M 0 245.980469 L 353.777344 98.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.221039;\" d=\"M 0 12.226562 L 353.777344 63.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.354994;\" d=\"M 0 251.195312 L 353.777344 48.875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.414476;\" d=\"M 0 69.640625 L 353.777344 122.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.66397;\" d=\"M 0 307.855469 L 353.777344 256.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.435673;\" d=\"M 0 142.351562 L 353.777344 294.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.263963;\" d=\"M 0 6.691406 L 353.777344 123.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.327685;\" d=\"M 0 38.238281 L 353.777344 325.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.634408;\" d=\"M 0 223.398438 L 353.777344 102.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 310.117188 L 353.777344 140.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.382956;\" d=\"M 0 281.011719 L 353.777344 301.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.439019;\" d=\"M 0 99.835938 L 353.777344 294.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 350.679688 L 353.777344 188.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0254397;\" d=\"M 0 283.757812 L 353.777344 174.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.406984;\" d=\"M 0 209.613281 L 353.777344 65.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.229953;\" d=\"M 0 182.484375 L 353.777344 18.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.354069;\" d=\"M 0 191.671875 L 353.777344 53.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.341794;\" d=\"M 0 67.464844 L 353.777344 88.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.926984;\" d=\"M 0 231.113281 L 353.777344 129.5 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.327343;\" d=\"M 0 182.949219 L 353.777344 317.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.350514;\" d=\"M 0 330.703125 L 353.777344 45.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 262.621094 L 353.777344 201.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.550955;\" d=\"M 0 168.636719 L 353.777344 102.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0897423;\" d=\"M 0 5.242188 L 353.777344 0 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.723607;\" d=\"M 0 293.21875 L 353.777344 104.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.462974;\" d=\"M 0 159.679688 L 353.777344 87.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.522289;\" d=\"M 0 351.777344 L 353.777344 275.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.300866;\" d=\"M 0 19.9375 L 353.777344 172.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.526103;\" d=\"M 0 133.097656 L 353.777344 111.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.908276;\" d=\"M 0 193.214844 L 353.777344 154.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.201556;\" d=\"M 0 315.332031 L 353.777344 345.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.631233;\" d=\"M 0 134.746094 L 353.777344 250.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.373809;\" d=\"M 0 44.035156 L 353.777344 301.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.285212;\" d=\"M 0 214.648438 L 353.777344 32.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.737795;\" d=\"M 0 176.824219 L 353.777344 246.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.32991;\" d=\"M 0 54.925781 L 353.777344 323.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.859799;\" d=\"M 0 267.347656 L 353.777344 118.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.924135;\" d=\"M 0 192.710938 L 353.777344 222.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.433158;\" d=\"M 0 98.675781 L 353.777344 104.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.674674;\" d=\"M 0 192.472656 L 353.777344 163.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.674077;\" d=\"M 0 147.144531 L 353.777344 139.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.220145;\" d=\"M 0 128.472656 L 353.777344 18.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.706675;\" d=\"M 0 229.769531 L 353.777344 110.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.217025;\" d=\"M 0 249.265625 L 353.777344 342.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.36884;\" d=\"M 0 51.347656 L 353.777344 119 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.282319;\" d=\"M 0 11.785156 L 353.777344 126.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.516143;\" d=\"M 0 307.054688 L 353.777344 78.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.443267;\" d=\"M 0 173.640625 L 353.777344 211.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.285305;\" d=\"M 0 158.035156 L 353.777344 328.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.254381;\" d=\"M 0 328.910156 L 353.777344 20.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.384827;\" d=\"M 0 130.0625 L 353.777344 306.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.601032;\" d=\"M 0 159.414062 L 353.777344 264.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 308.722656 L 353.777344 212.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.595605;\" d=\"M 0 170.324219 L 353.777344 265.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.378448;\" d=\"M 0 46.804688 L 353.777344 304.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.335513;\" d=\"M 0 36.800781 L 353.777344 297.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.298052;\" d=\"M 0 17.804688 L 353.777344 315.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.449555;\" d=\"M 0 114.269531 L 353.777344 100.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.212915;\" d=\"M 0 178.371094 L 353.777344 13.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.263118;\" d=\"M 0 12.683594 L 353.777344 102.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.757722;\" d=\"M 0 171.394531 L 353.777344 135.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.274799;\" d=\"M 0 75.671875 L 353.777344 51.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.328418;\" d=\"M 0 126.085938 L 353.777344 319.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.248935;\" d=\"M 0 305.96875 L 353.777344 19.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.430037;\" d=\"M 0 277.199219 L 353.777344 64.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 229.121094 L 353.777344 204.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.913849;\" d=\"M 0 205.347656 L 353.777344 136.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.886327;\" d=\"M 0 219.746094 L 353.777344 236.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.520704;\" d=\"M 0 111.703125 L 353.777344 124.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.495721;\" d=\"M 0 331.351562 L 353.777344 74.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.454873;\" d=\"M 0 188.910156 L 353.777344 289.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0157593;\" d=\"M 0 259.402344 L 353.777344 185.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 290.765625 L 353.777344 208.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.478268;\" d=\"M 0 90.898438 L 353.777344 281.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.483484;\" d=\"M 0 184.558594 L 353.777344 283.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.315253;\" d=\"M 0 128.945312 L 353.777344 52.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.012627;\" d=\"M 0 25.984375 L 353.777344 274.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 304.488281 L 353.777344 130.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.452445;\" d=\"M 0 276.566406 L 353.777344 68.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.409679;\" d=\"M 0 145.964844 L 353.777344 299.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.401688;\" d=\"M 0 282 L 353.777344 297.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 303.363281 L 353.777344 167.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.309427;\" d=\"M 0 28.179688 L 353.777344 111.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.420041;\" d=\"M 0 156.335938 L 353.777344 297.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.328453;\" d=\"M 0 24.46875 L 353.777344 149.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.459758;\" d=\"M 0 123.4375 L 353.777344 289.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0804781;\" d=\"M 0 302.449219 L 353.777344 180.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.137787;\" d=\"M 0 306.351562 L 353.777344 353.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.157556;\" d=\"M 0 128.472656 L 353.777344 352.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.014849;\" d=\"M 0 200.035156 L 353.777344 175.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 240.914062 L 353.777344 160.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.305078;\" d=\"M 0 272.769531 L 353.777344 34.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.639071;\" d=\"M 0 217.09375 L 353.777344 104.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 314.75 L 353.777344 139.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.549565;\" d=\"M 0 120.027344 L 353.777344 245.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.184615;\" d=\"M 0 133.464844 L 353.777344 8.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.435209;\" d=\"M 0 245.996094 L 353.777344 291.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.213807;\" d=\"M 0 35.613281 L 353.777344 348.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.420656;\" d=\"M 0 249.367188 L 353.777344 294.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.303585;\" d=\"M 0 245.160156 L 353.777344 35.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.595454;\" d=\"M 0 150.664062 L 353.777344 118.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.376395;\" d=\"M 0 136.453125 L 353.777344 70.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.471413;\" d=\"M 0 137.339844 L 353.777344 287.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.441657;\" d=\"M 0 137.429688 L 353.777344 227.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.28402;\" d=\"M 0 9.3125 L 353.777344 140.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.433373;\" d=\"M 0 74.488281 L 353.777344 126.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.184038;\" d=\"M 0 10.8125 L 353.777344 205.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.489474;\" d=\"M 0 120.375 L 353.777344 283.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 266.484375 L 353.777344 134.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 335.351562 L 353.777344 170.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.822563;\" d=\"M 0 220.105469 L 353.777344 241.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.749761;\" d=\"M 0 163.40625 L 353.777344 149.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.366687;\" d=\"M 0 138.113281 L 353.777344 67.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.466994;\" d=\"M 0 83.835938 L 353.777344 134.375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.220208;\" d=\"M 0 160.160156 L 353.777344 16.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0832487;\" d=\"M 0 71.976562 L 353.777344 188.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.405572;\" d=\"M 0 117.78125 L 353.777344 236.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 278.523438 L 353.777344 153.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.334003;\" d=\"M 0 181.21875 L 353.777344 315.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0330283;\" d=\"M 0 39.734375 L 353.777344 265.75 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.21462;\" d=\"M 0 274.777344 L 353.777344 11.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 311.085938 L 353.777344 145.625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.316201;\" d=\"M 0 120.996094 L 353.777344 322.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.177071;\" d=\"M 0 304.550781 L 353.777344 349.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.161168;\" d=\"M 0 82.167969 L 353.777344 5.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.303842;\" d=\"M 0 258.949219 L 353.777344 321.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.391842;\" d=\"M 0 66.113281 L 353.777344 114.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.825195;\" d=\"M 0 208.605469 L 353.777344 240.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.235447;\" d=\"M 0 78.742188 L 353.777344 177 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.368757;\" d=\"M 0 98.726562 L 353.777344 246.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.265563;\" d=\"M 0 58.101562 L 353.777344 268.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.490226;\" d=\"M 0 196.632812 L 353.777344 282.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 330.816406 L 353.777344 159.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.323726;\" d=\"M 0 71.226562 L 353.777344 170.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.174625;\" d=\"M 0 13 L 353.777344 24.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 293.734375 L 353.777344 141.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 266.046875 L 353.777344 203.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.58419;\" d=\"M 0 286.796875 L 353.777344 266.5 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.450392;\" d=\"M 0 167.761719 L 353.777344 82.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.687638;\" d=\"M 0 335.804688 L 353.777344 99.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.268001;\" d=\"M 0 327.519531 L 353.777344 24.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.48821;\" d=\"M 0 101.84375 L 353.777344 281.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.30343;\" d=\"M 0 14.980469 L 353.777344 145.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.62843;\" d=\"M 0 157.421875 L 353.777344 121.25 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.185896;\" d=\"M 0 37.660156 L 353.777344 351.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.411787;\" d=\"M 0 60.136719 L 353.777344 292.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.260797;\" d=\"M 0 20.558594 L 353.777344 84.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.269427;\" d=\"M 0 52.777344 L 353.777344 272.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.601243;\" d=\"M 0 333.855469 L 353.777344 89.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.321228;\" d=\"M 0 227.484375 L 353.777344 317.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.282102;\" d=\"M 0 104.828125 L 353.777344 331.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.221028;\" d=\"M 0 186.34375 L 353.777344 15.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 268.164062 L 353.777344 198.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.526712;\" d=\"M 0 230.167969 L 353.777344 275.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.188679;\" d=\"M 0 14.644531 L 353.777344 33.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.324193;\" d=\"M 0 69.363281 L 353.777344 324.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 315.808594 L 353.777344 131.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.202288;\" d=\"M 0 9.640625 L 353.777344 313.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.305439;\" d=\"M 0 193.210938 L 353.777344 322.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.493012;\" d=\"M 0 194.398438 L 353.777344 85.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 345.339844 L 353.777344 154.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.382931;\" d=\"M 0 142.585938 L 353.777344 71.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.402959;\" d=\"M 0 290.25 L 353.777344 297.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.871893;\" d=\"M 0 184.613281 L 353.777344 226.125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 334.339844 L 353.777344 144.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.361406;\" d=\"M 0 127.542969 L 353.777344 311.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.566194;\" d=\"M 0 295.585938 L 353.777344 268.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.294543;\" d=\"M 0 129.964844 L 353.777344 327.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.144202;\" d=\"M 0 98.167969 L 353.777344 353.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.792504;\" d=\"M 0 243.433594 L 353.777344 116.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.544929;\" d=\"M 0 112.316406 L 353.777344 253.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.992335;\" d=\"M 0 292.664062 L 353.777344 124.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.585783;\" d=\"M 0 127.835938 L 353.777344 131.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 308.589844 L 353.777344 154.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.397789;\" d=\"M 0 54.527344 L 353.777344 293.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.271538;\" d=\"M 0 5.128906 L 353.777344 145.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.568209;\" d=\"M 0 342.90625 L 353.777344 85.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.47844;\" d=\"M 0 253.449219 L 353.777344 283.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.348062;\" d=\"M 0 96.132812 L 353.777344 246.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.297834;\" d=\"M 0 177.089844 L 353.777344 39.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.630521;\" d=\"M 0 150.140625 L 353.777344 125.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 266.695312 L 353.777344 139.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.48129;\" d=\"M 0 100.195312 L 353.777344 283.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.542331;\" d=\"M 0 133.042969 L 353.777344 115.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.792158;\" d=\"M 0 180.785156 L 353.777344 239.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.382827;\" d=\"M 0 85.960938 L 353.777344 93.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.57362;\" d=\"M 0 190.648438 L 353.777344 269.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.228013;\" d=\"M 0 51.777344 L 353.777344 37.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0262368;\" d=\"M 0 13.402344 L 353.777344 291.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.265361;\" d=\"M 0 13.402344 L 353.777344 102.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.261721;\" d=\"M 0 221.238281 L 353.777344 25.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.242657;\" d=\"M 0 174.257812 L 353.777344 338.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.432881;\" d=\"M 0 260.296875 L 353.777344 65.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.455233;\" d=\"M 0 333.765625 L 353.777344 67.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.503068;\" d=\"M 0 341.898438 L 353.777344 278.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.416541;\" d=\"M 0 335.855469 L 353.777344 59.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.333826;\" d=\"M 0 39.058594 L 353.777344 112.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.334259;\" d=\"M 0 27.324219 L 353.777344 313.375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.46762;\" d=\"M 0 242.679688 L 353.777344 74.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.28486;\" d=\"M 0 20.199219 L 353.777344 105.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.441032;\" d=\"M 0 295.570312 L 353.777344 289.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.272517;\" d=\"M 0 91.296875 L 353.777344 45.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.648833;\" d=\"M 0 174.75 L 353.777344 258.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.647779;\" d=\"M 0 187.105469 L 353.777344 113.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.47335;\" d=\"M 0 97.710938 L 353.777344 285.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.192171;\" d=\"M 0 340.675781 L 353.777344 347.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.217783;\" d=\"M 0 337.089844 L 353.777344 11.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.747887;\" d=\"M 0 183.367188 L 353.777344 127.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.262242;\" d=\"M 0 96.480469 L 353.777344 336.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0106406;\" d=\"M 0 27.519531 L 353.777344 273 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.346627;\" d=\"M 0 174.371094 L 353.777344 312.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0980762;\" d=\"M 0 45.308594 L 353.777344 266.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.804912;\" d=\"M 0 175.105469 L 353.777344 234.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.00768395;\" d=\"M 0 54.769531 L 353.777344 250.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.228948;\" d=\"M 0 143.632812 L 353.777344 20.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.29402;\" d=\"M 0 271.738281 L 353.777344 323.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.208195;\" d=\"M 0 107.320312 L 353.777344 17.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.301976;\" d=\"M 0 67.144531 L 353.777344 68.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.25332;\" d=\"M 0 152.910156 L 353.777344 336.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.405762;\" d=\"M 0 246.175781 L 353.777344 61.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.327256;\" d=\"M 0 181.46875 L 353.777344 47.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.366413;\" d=\"M 0 331.644531 L 353.777344 304.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.837217;\" d=\"M 0 348.800781 L 353.777344 112.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.211435;\" d=\"M 0 75.441406 L 353.777344 179.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.834695;\" d=\"M 0 337.527344 L 353.777344 111.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.210534;\" d=\"M 0 73.457031 L 353.777344 179.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.36376;\" d=\"M 0 163.378906 L 353.777344 61 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.386726;\" d=\"M 0 350.167969 L 353.777344 53.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.44769;\" d=\"M 0 210.703125 L 353.777344 74.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.271688;\" d=\"M 0 245.503906 L 353.777344 26.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.328528;\" d=\"M 0 341.503906 L 353.777344 313.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 291.695312 L 353.777344 144.375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.697384;\" d=\"M 0 224.390625 L 353.777344 253.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.30534;\" d=\"M 0 211.5 L 353.777344 321.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.292194;\" d=\"M 0 26.632812 L 353.777344 177.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.3143;\" d=\"M 0 69.503906 L 353.777344 73.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.56223;\" d=\"M 0 300.671875 L 353.777344 269.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.666224;\" d=\"M 0 271.949219 L 353.777344 256.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.202017;\" d=\"M 0 238.289062 L 353.777344 345.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.156818;\" d=\"M 0 226.597656 L 353.777344 351.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 332.449219 L 353.777344 124.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 295.136719 L 353.777344 226.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.28649;\" d=\"M 0 88.765625 L 353.777344 247.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.315746;\" d=\"M 0 43.109375 L 353.777344 328.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.390691;\" d=\"M 0 138.609375 L 353.777344 166.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.391909;\" d=\"M 0 85.445312 L 353.777344 97.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.356067;\" d=\"M 0 338.703125 L 353.777344 46.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.354666;\" d=\"M 0 288.449219 L 353.777344 308 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.36425;\" d=\"M 0 60.917969 L 353.777344 104.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.406139;\" d=\"M 0 85.667969 L 353.777344 103.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.557457;\" d=\"M 0 209.078125 L 353.777344 94.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.157821;\" d=\"M 0 293.089844 L 353.777344 2.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.339506;\" d=\"M 0 236.875 L 353.777344 45.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.321084;\" d=\"M 0 265.371094 L 353.777344 39.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.473234;\" d=\"M 0 87.265625 L 353.777344 281.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 269.15625 L 353.777344 148.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.99463;\" d=\"M 0 204.445312 L 353.777344 154.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.330026;\" d=\"M 0 249.277344 L 353.777344 42.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 336.90625 L 353.777344 131.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.490003;\" d=\"M 0 270.226562 L 353.777344 76.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.452976;\" d=\"M 0 322.878906 L 353.777344 286.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.478551;\" d=\"M 0 100.609375 L 353.777344 156.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.467961;\" d=\"M 0 195.1875 L 353.777344 286.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 275.410156 L 353.777344 144.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.891643;\" d=\"M 0 204.429688 L 353.777344 160.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.231112;\" d=\"M 0 62.007812 L 353.777344 35.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.447508;\" d=\"M 0 113.851562 L 353.777344 292.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.263771;\" d=\"M 0 2.671875 L 353.777344 174.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.427794;\" d=\"M 0 173.945312 L 353.777344 75.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.663066;\" d=\"M 0 277.425781 L 353.777344 257.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.612097;\" d=\"M 0 322.1875 L 353.777344 91.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.282328;\" d=\"M 0 31.445312 L 353.777344 86.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.837962;\" d=\"M 0 228.1875 L 353.777344 240.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 342.898438 L 353.777344 133.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.451082;\" d=\"M 0 169.597656 L 353.777344 82.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.32444;\" d=\"M 0 130.6875 L 353.777344 55.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.302595;\" d=\"M 0 117.222656 L 353.777344 50.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.309611;\" d=\"M 0 100.160156 L 353.777344 325.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.813689;\" d=\"M 0 184.371094 L 353.777344 136.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.377726;\" d=\"M 0 47.375 L 353.777344 152.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.504321;\" d=\"M 0 195.8125 L 353.777344 279.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 306.660156 L 353.777344 221.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.416003;\" d=\"M 0 137.949219 L 353.777344 226.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0104291;\" d=\"M 0 208.847656 L 353.777344 175.25 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0653013;\" d=\"M 0 111.816406 L 353.777344 180.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.724692;\" d=\"M 0 309.046875 L 353.777344 103.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.212991;\" d=\"M 0 36.917969 L 353.777344 35.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.266468;\" d=\"M 0 129.691406 L 353.777344 334.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 352.917969 L 353.777344 157.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.392431;\" d=\"M 0 152.316406 L 353.777344 167.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 261.0625 L 353.777344 223.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.147413;\" d=\"M 0 93.167969 L 353.777344 2.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.607272;\" d=\"M 0 282.179688 L 353.777344 263.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.326951;\" d=\"M 0 64.113281 L 353.777344 83.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.318136;\" d=\"M 0 20.890625 L 353.777344 318.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.477228;\" d=\"M 0 96.902344 L 353.777344 122.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.265485;\" d=\"M 0 199.429688 L 353.777344 27.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.385108;\" d=\"M 0 331.914062 L 353.777344 53.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.549075;\" d=\"M 0 294.582031 L 353.777344 84.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.366011;\" d=\"M 0 324.332031 L 353.777344 48.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.303267;\" d=\"M 0 140.351562 L 353.777344 324.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.375652;\" d=\"M 0 182.480469 L 353.777344 305.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.293295;\" d=\"M 0 115.507812 L 353.777344 47.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.292353;\" d=\"M 0 109.308594 L 353.777344 48.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.408331;\" d=\"M 0 66.328125 L 353.777344 156.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.490407;\" d=\"M 0 160.199219 L 353.777344 93.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.309236;\" d=\"M 0 23.855469 L 353.777344 330.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.409133;\" d=\"M 0 174.601562 L 353.777344 298.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.577663;\" d=\"M 0 211.769531 L 353.777344 97.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.268403;\" d=\"M 0 84.59375 L 353.777344 45.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.505117;\" d=\"M 0 128.269531 L 353.777344 280.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 324.226562 L 353.777344 127.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.480039;\" d=\"M 0 229.085938 L 353.777344 78.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.534588;\" d=\"M 0 114.0625 L 353.777344 271.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.44306;\" d=\"M 0 75.386719 L 353.777344 288.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.23244;\" d=\"M 0 321.40625 L 353.777344 338.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.708414;\" d=\"M 0 162.132812 L 353.777344 247.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.247795;\" d=\"M 0 35.691406 L 353.777344 58.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.754897;\" d=\"M 0 206.46875 L 353.777344 205.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.549463;\" d=\"M 0 122.132812 L 353.777344 244.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.512961;\" d=\"M 0 255.660156 L 353.777344 81.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.422142;\" d=\"M 0 119.210938 L 353.777344 90.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 340.1875 L 353.777344 151.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.256048;\" d=\"M 0 138.191406 L 353.777344 30.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.416676;\" d=\"M 0 264.566406 L 353.777344 62.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.319658;\" d=\"M 0 136.738281 L 353.777344 52.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.335364;\" d=\"M 0 212.109375 L 353.777344 46.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0254846;\" d=\"M 0 68.878906 L 353.777344 194.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.759626;\" d=\"M 0 307.597656 L 353.777344 247.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.454053;\" d=\"M 0 94.234375 L 353.777344 290.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.312595;\" d=\"M 0 37.296875 L 353.777344 329.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.873131;\" d=\"M 0 185.054688 L 353.777344 227.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.568393;\" d=\"M 0 174.3125 L 353.777344 269.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0604749;\" d=\"M 0 26.683594 L 353.777344 209.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.451023;\" d=\"M 0 181.417969 L 353.777344 290.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.224954;\" d=\"M 0 123 L 353.777344 343.375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.337748;\" d=\"M 0 108.996094 L 353.777344 318.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.724312;\" d=\"M 0 316.292969 L 353.777344 103.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.397204;\" d=\"M 0 321.703125 L 353.777344 298.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.143676;\" d=\"M 0 239.238281 L 353.777344 352.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.29008;\" d=\"M 0 33.640625 L 353.777344 89.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.429182;\" d=\"M 0 106.078125 L 353.777344 163.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.721118;\" d=\"M 0 313.511719 L 353.777344 103.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.204895;\" d=\"M 0 181.820312 L 353.777344 345.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.511904;\" d=\"M 0 104.992188 L 353.777344 275.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.271624;\" d=\"M 0 21.847656 L 353.777344 91.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.27625;\" d=\"M 0 133.464844 L 353.777344 331.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 245.617188 L 353.777344 223.125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.737014;\" d=\"M 0 172.789062 L 353.777344 245.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.329093;\" d=\"M 0 125.289062 L 353.777344 58.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.506302;\" d=\"M 0 291.804688 L 353.777344 77.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.309851;\" d=\"M 0 72.71875 L 353.777344 327.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.326264;\" d=\"M 0 198.398438 L 353.777344 45.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 346.257812 L 353.777344 215.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.574302;\" d=\"M 0 148.421875 L 353.777344 115.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.666158;\" d=\"M 0 169.152344 L 353.777344 122.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.548673;\" d=\"M 0 114.207031 L 353.777344 252.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.376052;\" d=\"M 0 96.207031 L 353.777344 85.5 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.706061;\" d=\"M 0 216.203125 L 353.777344 252.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.277869;\" d=\"M 0 343.699219 L 353.777344 26.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.579456;\" d=\"M 0 121.003906 L 353.777344 259.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0260474;\" d=\"M 0 85.976562 L 353.777344 235.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.964154;\" d=\"M 0 217.84375 L 353.777344 136.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.182945;\" d=\"M 0 9.1875 L 353.777344 34.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.253833;\" d=\"M 0 296.324219 L 353.777344 20.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.293879;\" d=\"M 0 15.84375 L 353.777344 317.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.640263;\" d=\"M 0 181.445312 L 353.777344 259.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.455793;\" d=\"M 0 275.445312 L 353.777344 286.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.37944;\" d=\"M 0 180.421875 L 353.777344 208.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.245033;\" d=\"M 0 20.804688 L 353.777344 71.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.950812;\" d=\"M 0 261.539062 L 353.777344 168.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.427654;\" d=\"M 0 320.1875 L 353.777344 291.75 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.235885;\" d=\"M 0 161.78125 L 353.777344 21.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.178146;\" d=\"M 0 16.730469 L 353.777344 202.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.739724;\" d=\"M 0 195.503906 L 353.777344 248.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.49246;\" d=\"M 0 102.800781 L 353.777344 253.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.268063;\" d=\"M 0 128.191406 L 353.777344 333.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.660017;\" d=\"M 0 241 L 353.777344 103.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.559343;\" d=\"M 0 222.023438 L 353.777344 167.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.450838;\" d=\"M 0 167.835938 L 353.777344 82.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0886972;\" d=\"M 0 17.652344 L 353.777344 213.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 282.601562 L 353.777344 142.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 263.292969 L 353.777344 193.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 334.519531 L 353.777344 211.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.341057;\" d=\"M 0 298.859375 L 353.777344 311.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.520598;\" d=\"M 0 311.148438 L 353.777344 275.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.758944;\" d=\"M 0 170.476562 L 353.777344 241.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.275801;\" d=\"M 0 174.648438 L 353.777344 330.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.959066;\" d=\"M 0 211.625 L 353.777344 229.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.537757;\" d=\"M 0 318.410156 L 353.777344 81.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.653675;\" d=\"M 0 270.875 L 353.777344 258.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.861839;\" d=\"M 0 336.835938 L 353.777344 239.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.220541;\" d=\"M 0 115.980469 L 353.777344 20.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.207908;\" d=\"M 0 19.722656 L 353.777344 43.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.801623;\" d=\"M 0 349.839844 L 353.777344 244.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.102011;\" d=\"M 0 14.320312 L 353.777344 214.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.181508;\" d=\"M 0 179.128906 L 353.777344 6.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.172073;\" d=\"M 0 53.484375 L 353.777344 11.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.203476;\" d=\"M 0 1.769531 L 353.777344 72.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.405467;\" d=\"M 0 61.402344 L 353.777344 129.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.857386;\" d=\"M 0 246.929688 L 353.777344 239.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.477114;\" d=\"M 0 86.695312 L 353.777344 271.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 262.507812 L 353.777344 195.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0144451;\" d=\"M 0 79.65625 L 353.777344 192.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.746378;\" d=\"M 0 196.65625 L 353.777344 247.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.653532;\" d=\"M 0 283.78125 L 353.777344 258.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.160945;\" d=\"M 0 74.488281 L 353.777344 5.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.375068;\" d=\"M 0 262.519531 L 353.777344 53.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.304933;\" d=\"M 0 16.339844 L 353.777344 320.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.302089;\" d=\"M 0 142.230469 L 353.777344 325.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.629975;\" d=\"M 0 206.246094 L 353.777344 105.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.20811;\" d=\"M 0 67.472656 L 353.777344 348.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.710297;\" d=\"M 0 268.667969 L 353.777344 252.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.225413;\" d=\"M 0 56.792969 L 353.777344 181.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.229611;\" d=\"M 0 309.828125 L 353.777344 14.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 294.832031 L 353.777344 163.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.577881;\" d=\"M 0 162.496094 L 353.777344 268.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.353606;\" d=\"M 0 140.851562 L 353.777344 62.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.715199;\" d=\"M 0 243.976562 L 353.777344 108.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.347044;\" d=\"M 0 161.496094 L 353.777344 313.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.414948;\" d=\"M 0 80.957031 L 353.777344 263.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.50232;\" d=\"M 0 225.730469 L 353.777344 279.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 210.28125 L 353.777344 214.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.398599;\" d=\"M 0 266.132812 L 353.777344 298.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 305.691406 L 353.777344 191.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.386124;\" d=\"M 0 57.484375 L 353.777344 282.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0464589;\" d=\"M 0 24.164062 L 353.777344 213.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.320586;\" d=\"M 0 339.503906 L 353.777344 37.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.467255;\" d=\"M 0 111.949219 L 353.777344 107.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.451444;\" d=\"M 0 83.222656 L 353.777344 267.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.579676;\" d=\"M 0 176.230469 L 353.777344 105.75 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 349.8125 L 353.777344 152.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.276987;\" d=\"M 0 224.976562 L 353.777344 328.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.199736;\" d=\"M 0 335.558594 L 353.777344 345.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.936681;\" d=\"M 0 200.15625 L 353.777344 142.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.564498;\" d=\"M 0 319.789062 L 353.777344 268.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.140535;\" d=\"M 0 20.011719 L 353.777344 294.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.317784;\" d=\"M 0 30.066406 L 353.777344 115.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.44237;\" d=\"M 0 335.554688 L 353.777344 288.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.245504;\" d=\"M 0 281.769531 L 353.777344 335.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.604552;\" d=\"M 0 290.152344 L 353.777344 263.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.436276;\" d=\"M 0 324.699219 L 353.777344 290.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.332806;\" d=\"M 0 152.488281 L 353.777344 53.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 290.820312 L 353.777344 224.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.659005;\" d=\"M 0 151.175781 L 353.777344 130.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.316184;\" d=\"M 0 19.847656 L 353.777344 145.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.226259;\" d=\"M 0 47.675781 L 353.777344 38.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.358223;\" d=\"M 0 73.65625 L 353.777344 315.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.475302;\" d=\"M 0 303.425781 L 353.777344 282.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.35868;\" d=\"M 0 107.054688 L 353.777344 74.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.484229;\" d=\"M 0 206.632812 L 353.777344 201.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.395013;\" d=\"M 0 59.6875 L 353.777344 124.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 289.199219 L 353.777344 191.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.568359;\" d=\"M 0 145.851562 L 353.777344 115.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.614733;\" d=\"M 0 133.558594 L 353.777344 242.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.843808;\" d=\"M 0 311.195312 L 353.777344 113.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.541789;\" d=\"M 0 206.335938 L 353.777344 92.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 233.65625 L 353.777344 150.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.733725;\" d=\"M 0 333.097656 L 353.777344 249.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 298.269531 L 353.777344 221.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.518232;\" d=\"M 0 250.691406 L 353.777344 82.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.266611;\" d=\"M 0 6.507812 L 353.777344 128.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.413126;\" d=\"M 0 127.722656 L 353.777344 84.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.227122;\" d=\"M 0 40.578125 L 353.777344 42.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.524677;\" d=\"M 0 109.304688 L 353.777344 252.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 313.777344 L 353.777344 127.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.51711;\" d=\"M 0 148.34375 L 353.777344 278.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.388555;\" d=\"M 0 67.324219 L 353.777344 161.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.222442;\" d=\"M 0 236.75 L 353.777344 341.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.135572;\" d=\"M 0 29.84375 L 353.777344 3.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.526535;\" d=\"M 0 206.945312 L 353.777344 89.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.374594;\" d=\"M 0 185.765625 L 353.777344 60.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.262506;\" d=\"M 0 186.65625 L 353.777344 333.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.209741;\" d=\"M 0 22.027344 L 353.777344 42.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.449513;\" d=\"M 0 77.804688 L 353.777344 274.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.456112;\" d=\"M 0 115.84375 L 353.777344 102.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.817363;\" d=\"M 0 316.277344 L 353.777344 243.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.282268;\" d=\"M 0 172.519531 L 353.777344 34.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 338.890625 L 353.777344 172.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.446699;\" d=\"M 0 83.476562 L 353.777344 265.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.368757;\" d=\"M 0 198.570312 L 353.777344 306.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.232796;\" d=\"M 0 8.742188 L 353.777344 81.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.403618;\" d=\"M 0 212.988281 L 353.777344 298.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.353003;\" d=\"M 0 35.808594 L 353.777344 153.125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.518747;\" d=\"M 0 262.539062 L 353.777344 276.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.41618;\" d=\"M 0 63.585938 L 353.777344 149.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.89798;\" d=\"M 0 205.628906 L 353.777344 233.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.344867;\" d=\"M 0 217.035156 L 353.777344 169.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.368037;\" d=\"M 0 45.015625 L 353.777344 129.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.322915;\" d=\"M 0 185.902344 L 353.777344 45.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.240425;\" d=\"M 0 0.9375 L 353.777344 129.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.148728;\" d=\"M 0 54.992188 L 353.777344 4.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.192009;\" d=\"M 0 300.03125 L 353.777344 347.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.363337;\" d=\"M 0 43.304688 L 353.777344 157.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.406694;\" d=\"M 0 307.425781 L 353.777344 296.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 296.71875 L 353.777344 164.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.170576;\" d=\"M 0 3.863281 L 353.777344 31.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.47491;\" d=\"M 0 216.53125 L 353.777344 78.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.205064;\" d=\"M 0 12.429688 L 353.777344 200.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.244871;\" d=\"M 0 75.605469 L 353.777344 37.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 351.378906 L 353.777344 134.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.248611;\" d=\"M 0 351.480469 L 353.777344 334.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.245363;\" d=\"M 0 3.679688 L 353.777344 346.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.377175;\" d=\"M 0 63.4375 L 353.777344 310.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.785045;\" d=\"M 0 276.839844 L 353.777344 111.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.480844;\" d=\"M 0 304.160156 L 353.777344 72.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.301591;\" d=\"M 0 17.789062 L 353.777344 316.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.312067;\" d=\"M 0 305.53125 L 353.777344 318.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.949379;\" d=\"M 0 239.347656 L 353.777344 129.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.230287;\" d=\"M 0 275.335938 L 353.777344 184.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.501021;\" d=\"M 0 195.390625 L 353.777344 87.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 231.101562 L 353.777344 144.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 224.257812 L 353.777344 154.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 345.734375 L 353.777344 151.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.47839;\" d=\"M 0 166.933594 L 353.777344 88.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 323.523438 L 353.777344 129.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.27214;\" d=\"M 0 225.503906 L 353.777344 329.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0200144;\" d=\"M 0 143.164062 L 353.777344 179.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.26616;\" d=\"M 0 309.316406 L 353.777344 330.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.368334;\" d=\"M 0 89.660156 L 353.777344 252.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.945912;\" d=\"M 0 230.578125 L 353.777344 131.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.762443;\" d=\"M 0 283.136719 L 353.777344 108.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0710499;\" d=\"M 0 97.539062 L 353.777344 232.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.240984;\" d=\"M 0 5.101562 L 353.777344 101.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.351021;\" d=\"M 0 115.214844 L 353.777344 68.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 241.230469 L 353.777344 227.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.307302;\" d=\"M 0 151.679688 L 353.777344 45.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.405308;\" d=\"M 0 105.707031 L 353.777344 302.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.680188;\" d=\"M 0 352.691406 L 353.777344 255.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.491196;\" d=\"M 0 294.617188 L 353.777344 74.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.196344;\" d=\"M 0 94.265625 L 353.777344 14.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 276.074219 L 353.777344 155.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.641793;\" d=\"M 0 150.675781 L 353.777344 127.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.277578;\" d=\"M 0 60.949219 L 353.777344 335.875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.895204;\" d=\"M 0 230.539062 L 353.777344 127.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.212726;\" d=\"M 0 25.421875 L 353.777344 42.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.776505;\" d=\"M 0 206.015625 L 353.777344 205.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.2822;\" d=\"M 0 243.613281 L 353.777344 326.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.333062;\" d=\"M 0 26.460938 L 353.777344 146.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.428917;\" d=\"M 0 255.863281 L 353.777344 292.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.417158;\" d=\"M 0 203.199219 L 353.777344 68.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.450407;\" d=\"M 0 153.691406 L 353.777344 291.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.201549;\" d=\"M 0 128.804688 L 353.777344 13.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0390104;\" d=\"M 0 27.253906 L 353.777344 212.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.265717;\" d=\"M 0 170.984375 L 353.777344 170.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.330643;\" d=\"M 0 276.792969 L 353.777344 313.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.379983;\" d=\"M 0 237.074219 L 353.777344 303.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.162149;\" d=\"M 0 141.652344 L 353.777344 3.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.26686;\" d=\"M 0 192.109375 L 353.777344 28.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.798023;\" d=\"M 0 191.835938 L 353.777344 130.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.288133;\" d=\"M 0 11.503906 L 353.777344 135.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.533328;\" d=\"M 0 237.230469 L 353.777344 86.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 351.90625 L 353.777344 203.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.392567;\" d=\"M 0 109.980469 L 353.777344 305.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.477703;\" d=\"M 0 94.652344 L 353.777344 124.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.327504;\" d=\"M 0 243.605469 L 353.777344 315.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 291.953125 L 353.777344 161.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0404086;\" d=\"M 0 128.484375 L 353.777344 217.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.19776;\" d=\"M 0 146.289062 L 353.777344 172.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.218533;\" d=\"M 0 16.109375 L 353.777344 55.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.283283;\" d=\"M 0 31.722656 L 353.777344 294.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.321915;\" d=\"M 0 233.117188 L 353.777344 41.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.610893;\" d=\"M 0 303.113281 L 353.777344 91.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.135689;\" d=\"M 0 122.820312 L 353.777344 1.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.435883;\" d=\"M 0 161.320312 L 353.777344 293.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.302795;\" d=\"M 0 211.890625 L 353.777344 322.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.389193;\" d=\"M 0 111.820312 L 353.777344 83.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.968988;\" d=\"M 0 216.972656 L 353.777344 136.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.96291;\" d=\"M 0 223.996094 L 353.777344 230.625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.666711;\" d=\"M 0 338.703125 L 353.777344 97.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.679445;\" d=\"M 0 292.601562 L 353.777344 100.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.230248;\" d=\"M 0 331.160156 L 353.777344 14.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.826334;\" d=\"M 0 183.441406 L 353.777344 219.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0133326;\" d=\"M 0 28.152344 L 353.777344 273.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.341942;\" d=\"M 0 179.417969 L 353.777344 168.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 308.644531 L 353.777344 163.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.211779;\" d=\"M 0 139.394531 L 353.777344 15.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 295.523438 L 353.777344 207.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.452988;\" d=\"M 0 77.019531 L 353.777344 145.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 340.097656 L 353.777344 230.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.393942;\" d=\"M 0 214.394531 L 353.777344 300.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.233732;\" d=\"M 0 230.746094 L 353.777344 17.125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.540421;\" d=\"M 0 268.398438 L 353.777344 84.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.249886;\" d=\"M 0 72.402344 L 353.777344 41.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.152853;\" d=\"M 0 326.367188 L 353.777344 352.125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.248026;\" d=\"M 0 92.285156 L 353.777344 34.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 345.742188 L 353.777344 153.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.322285;\" d=\"M 0 56.21875 L 353.777344 86.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.744973;\" d=\"M 0 296.273438 L 353.777344 106.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0282922;\" d=\"M 0 166.082031 L 353.777344 204.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.490473;\" d=\"M 0 174.636719 L 353.777344 165.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.349144;\" d=\"M 0 68.550781 L 353.777344 318.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 236.527344 L 353.777344 138.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 315.902344 L 353.777344 142.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.22549;\" d=\"M 0 115.492188 L 353.777344 22.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.507828;\" d=\"M 0 125.398438 L 353.777344 279.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.225028;\" d=\"M 0 140.511719 L 353.777344 219.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.879117;\" d=\"M 0 282.976562 L 353.777344 117.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.45628;\" d=\"M 0 134.648438 L 353.777344 290.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.697207;\" d=\"M 0 159.410156 L 353.777344 154.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.403917;\" d=\"M 0 191.925781 L 353.777344 168.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0536211;\" d=\"M 0 147.539062 L 353.777344 177.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 273.140625 L 353.777344 191.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.317557;\" d=\"M 0 268.230469 L 353.777344 317.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.690468;\" d=\"M 0 196.0625 L 353.777344 253.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.230255;\" d=\"M 0 242.84375 L 353.777344 339.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.228721;\" d=\"M 0 145.152344 L 353.777344 217.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.431791;\" d=\"M 0 69.066406 L 353.777344 289.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.264956;\" d=\"M 0 79.753906 L 353.777344 45.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0855564;\" d=\"M 0 20.832031 L 353.777344 210.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.21986;\" d=\"M 0 77.703125 L 353.777344 26.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.323187;\" d=\"M 0 49.523438 L 353.777344 171.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.280834;\" d=\"M 0 13.910156 L 353.777344 117.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.333361;\" d=\"M 0 148.488281 L 353.777344 168.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.26954;\" d=\"M 0 214.597656 L 353.777344 330.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.419746;\" d=\"M 0 263.609375 L 353.777344 63.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.238106;\" d=\"M 0 60.988281 L 353.777344 39.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.140309;\" d=\"M 0 30.085938 L 353.777344 4.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.182418;\" d=\"M 0 245.519531 L 353.777344 5.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.269324;\" d=\"M 0 124.347656 L 353.777344 36.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.256711;\" d=\"M 0 26.90625 L 353.777344 184.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.424194;\" d=\"M 0 115.125 L 353.777344 164.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.436023;\" d=\"M 0 111.335938 L 353.777344 163.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.543643;\" d=\"M 0 223.597656 L 353.777344 273.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.159462;\" d=\"M 0 221.996094 L 353.777344 351.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.2265;\" d=\"M 0 125.464844 L 353.777344 21.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.2242;\" d=\"M 0 152.417969 L 353.777344 171.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.523634;\" d=\"M 0 295.144531 L 353.777344 275.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.267294;\" d=\"M 0 99.882812 L 353.777344 41.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.699511;\" d=\"M 0 287.867188 L 353.777344 253.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.40972;\" d=\"M 0 71.269531 L 353.777344 158.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.142986;\" d=\"M 0 152.375 L 353.777344 353.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.262348;\" d=\"M 0 128.351562 L 353.777344 171.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.580585;\" d=\"M 0 220.886719 L 353.777344 198.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 334.027344 L 353.777344 202.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.233901;\" d=\"M 0 294.136719 L 353.777344 338.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.254321;\" d=\"M 0 212.917969 L 353.777344 23.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.254704;\" d=\"M 0 188.199219 L 353.777344 25.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.317631;\" d=\"M 0 103.710938 L 353.777344 170.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.793238;\" d=\"M 0 208.621094 L 353.777344 124.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 325.414062 L 353.777344 135.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.551539;\" d=\"M 0 163.421875 L 353.777344 104.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.501097;\" d=\"M 0 190.304688 L 353.777344 280.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.243391;\" d=\"M 0 66.867188 L 353.777344 342.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.327648;\" d=\"M 0 290.015625 L 353.777344 314.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.543541;\" d=\"M 0 203.683594 L 353.777344 273.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.306403;\" d=\"M 0 38.171875 L 353.777344 174.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.514999;\" d=\"M 0 238.40625 L 353.777344 277.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.269465;\" d=\"M 0 102.40625 L 353.777344 41.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0052874;\" d=\"M 0 17.1875 L 353.777344 282.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.508236;\" d=\"M 0 249.210938 L 353.777344 278.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.599906;\" d=\"M 0 177.613281 L 353.777344 265.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 255.910156 L 353.777344 141.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.378654;\" d=\"M 0 205.824219 L 353.777344 58.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 324.59375 L 353.777344 159.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.370674;\" d=\"M 0 69.054688 L 353.777344 312.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.529393;\" d=\"M 0 214.441406 L 353.777344 275.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.489153;\" d=\"M 0 181.152344 L 353.777344 166.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.249813;\" d=\"M 0 27.328125 L 353.777344 295.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.324608;\" d=\"M 0 147.105469 L 353.777344 319.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.194251;\" d=\"M 0 146.628906 L 353.777344 10.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.170298;\" d=\"M 0 66.171875 L 353.777344 256.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.660831;\" d=\"M 0 253.296875 L 353.777344 257.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.745772;\" d=\"M 0 204.832031 L 353.777344 120.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.471474;\" d=\"M 0 216.589844 L 353.777344 285.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.278576;\" d=\"M 0 30.695312 L 353.777344 84.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.648495;\" d=\"M 0 179.984375 L 353.777344 162.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.329016;\" d=\"M 0 121.773438 L 353.777344 319.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.186172;\" d=\"M 0 112.09375 L 353.777344 9.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.051475;\" d=\"M 0 76.734375 L 353.777344 189.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 241.503906 L 353.777344 144.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.179146;\" d=\"M 0 82.359375 L 353.777344 10.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.236842;\" d=\"M 0 289.457031 L 353.777344 16.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.46573;\" d=\"M 0 105.695312 L 353.777344 159.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.300433;\" d=\"M 0 122.367188 L 353.777344 48.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.272481;\" d=\"M 0 123.441406 L 353.777344 38.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 277.207031 L 353.777344 216.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 287.253906 L 353.777344 148.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 274.054688 L 353.777344 141.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.25111;\" d=\"M 0 76.84375 L 353.777344 176.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 268.308594 L 353.777344 215.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 253.355469 L 353.777344 143.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 343.53125 L 353.777344 213.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 291.921875 L 353.777344 149.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.196544;\" d=\"M 0 38.425781 L 353.777344 279.75 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.31415;\" d=\"M 0 265.804688 L 353.777344 37.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.820449;\" d=\"M 0 249.761719 L 353.777344 192.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 296.917969 L 353.777344 131.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.561735;\" d=\"M 0 143.238281 L 353.777344 114.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.185933;\" d=\"M 0 73.261719 L 353.777344 13.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.31721;\" d=\"M 0 151.804688 L 353.777344 48.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.683976;\" d=\"M 0 281.613281 L 353.777344 101.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.367291;\" d=\"M 0 202.898438 L 353.777344 307.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.567942;\" d=\"M 0 264.925781 L 353.777344 88.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.410786;\" d=\"M 0 62.332031 L 353.777344 297.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.357008;\" d=\"M 0 47.347656 L 353.777344 116.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 327.992188 L 353.777344 147.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.294139;\" d=\"M 0 121.382812 L 353.777344 46.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.419062;\" d=\"M 0 311.835938 L 353.777344 60.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.46328;\" d=\"M 0 318.96875 L 353.777344 69.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.162299;\" d=\"M 0 22 L 353.777344 13.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.681622;\" d=\"M 0 194.589844 L 353.777344 163.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.207127;\" d=\"M 0 105.828125 L 353.777344 16.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.175081;\" d=\"M 0 319.328125 L 353.777344 3.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.591227;\" d=\"M 0 127.171875 L 353.777344 260.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.367463;\" d=\"M 0 290.847656 L 353.777344 304.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.280198;\" d=\"M 0 239.894531 L 353.777344 29.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.370568;\" d=\"M 0 128.484375 L 353.777344 229.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.241591;\" d=\"M 0 3.640625 L 353.777344 109.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 288.972656 L 353.777344 214.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.361714;\" d=\"M 0 303.644531 L 353.777344 48.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.206481;\" d=\"M 0 188.285156 L 353.777344 11.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0400576;\" d=\"M 0 1.9375 L 353.777344 244.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 301.1875 L 353.777344 160.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.426546;\" d=\"M 0 310.9375 L 353.777344 62.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.163892;\" d=\"M 0 11.394531 L 353.777344 18.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.709301;\" d=\"M 0 256.625 L 353.777344 169.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.40062;\" d=\"M 0 202.769531 L 353.777344 168.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0554112;\" d=\"M 0 231.113281 L 353.777344 173.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.348767;\" d=\"M 0 39.113281 L 353.777344 124.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.480659;\" d=\"M 0 305.597656 L 353.777344 282 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.283034;\" d=\"M 0 93.183594 L 353.777344 49.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.349676;\" d=\"M 0 245.289062 L 353.777344 309.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.617099;\" d=\"M 0 339.359375 L 353.777344 262.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 267.617188 L 353.777344 212.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.508592;\" d=\"M 0 325.433594 L 353.777344 76.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.781345;\" d=\"M 0 246.617188 L 353.777344 245.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 334.378906 L 353.777344 171.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.563984;\" d=\"M 0 302.207031 L 353.777344 85.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.282204;\" d=\"M 0 216.324219 L 353.777344 31.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 344.546875 L 353.777344 136.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.541524;\" d=\"M 0 289.859375 L 353.777344 83.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.295303;\" d=\"M 0 197.273438 L 353.777344 36.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.308002;\" d=\"M 0 346.492188 L 353.777344 34.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.932999;\" d=\"M 0 252.21875 L 353.777344 234.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.500982;\" d=\"M 0 311.457031 L 353.777344 75.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.272858;\" d=\"M 0 213.207031 L 353.777344 28.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.59031;\" d=\"M 0 284.667969 L 353.777344 90.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.783299;\" d=\"M 0 240.890625 L 353.777344 115.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 316.921875 L 353.777344 123.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.23747;\" d=\"M 0 334.109375 L 353.777344 16.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 235.09375 L 353.777344 139.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.354366;\" d=\"M 0 36.960938 L 353.777344 313.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.689257;\" d=\"M 0 244.5625 L 353.777344 106.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.660229;\" d=\"M 0 270.398438 L 353.777344 99.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.19901;\" d=\"M 0 56.132812 L 353.777344 21.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.456592;\" d=\"M 0 187.117188 L 353.777344 167.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.348056;\" d=\"M 0 89.339844 L 353.777344 317.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.405154;\" d=\"M 0 61.242188 L 353.777344 299.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.551697;\" d=\"M 0 328.285156 L 353.777344 270.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0371196;\" d=\"M 0 47.039062 L 353.777344 201.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.517106;\" d=\"M 0 107.421875 L 353.777344 253.375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.562766;\" d=\"M 0 203.25 L 353.777344 270.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.209763;\" d=\"M 0 64.210938 L 353.777344 347.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.280096;\" d=\"M 0 293.472656 L 353.777344 27.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.393652;\" d=\"M 0 100.640625 L 353.777344 305.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.414455;\" d=\"M 0 63.746094 L 353.777344 151.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.969863;\" d=\"M 0 205.757812 L 353.777344 211.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 235.679688 L 353.777344 214.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.193646;\" d=\"M 0 198.757812 L 353.777344 8.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.164281;\" d=\"M 0 219.824219 L 353.777344 351.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.373785;\" d=\"M 0 300.183594 L 353.777344 303.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 236.917969 L 353.777344 138.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.346059;\" d=\"M 0 203.324219 L 353.777344 50.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.150017;\" d=\"M 0 284.542969 L 353.777344 1.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.261455;\" d=\"M 0 237.933594 L 353.777344 332.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.467566;\" d=\"M 0 82.519531 L 353.777344 275.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.105688;\" d=\"M 0 5.664062 L 353.777344 224.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.315213;\" d=\"M 0 337.125 L 353.777344 36.367188 \"></path>\n</g>\n</svg>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[7]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">program</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Measure</span><span class=\"w\"> </span><span class=\"kt\">Double</span>\n<span class=\"nf\">program</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span>\n<span class=\"w\">    </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">random</span>\n<span class=\"w\">    </span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"o\">**</span><span class=\"mi\">2</span><span class=\"p\">)</span>\n<span class=\"w\">    </span><span class=\"n\">factor</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Exp</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">log</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">)</span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"n\">y</span>\n\n<span class=\"nf\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">diagram</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">mconcat</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"n\">traceDiagram</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">getTrace</span><span class=\"w\"> </span><span class=\"n\">program</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n<div class=\"jp-OutputArea-child\">\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedSVG jp-OutputArea-output \" data-mime-type=\"image/svg+xml\">\n<!--?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?-->\n<svg width=\"355.49176pt\" height=\"351.604335pt\" viewBox=\"0 0 355.49176 351.604335\" version=\"1.1\">\n<g id=\"surface14\">\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.465783;\" d=\"M 0 121.574219 L 355.492188 47.625 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.523569;\" d=\"M 0 122.65625 L 355.492188 37.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0071101;\" d=\"M 0 287.261719 L 355.492188 147.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0127178;\" d=\"M 0 273.996094 L 355.492188 141.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0189223;\" d=\"M 0 253.199219 L 355.492188 143.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.00585087;\" d=\"M 0 291.953125 L 355.492188 149.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0768927;\" d=\"M 0 265.707031 L 355.492188 36.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.00844535;\" d=\"M 0 296.96875 L 355.492188 130.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.160557;\" d=\"M 0 142.546875 L 355.492188 114.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 72.230469 L 355.492188 12.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.35457;\" d=\"M 0 151.15625 L 355.492188 47.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0233236;\" d=\"M 0 281.589844 L 355.492188 100.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0422731;\" d=\"M 0 264.824219 L 355.492188 87.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.329503;\" d=\"M 0 46.191406 L 355.492188 115.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.481534;\" d=\"M 0 120.585938 L 355.492188 45.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.013264;\" d=\"M 0 311.960938 L 355.492188 59.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.00826881;\" d=\"M 0 319.128906 L 355.492188 68.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 20.71875 L 355.492188 12.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0189931;\" d=\"M 0 194.144531 L 355.492188 163.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.817623;\" d=\"M 0 104.953125 L 355.492188 15.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0215017;\" d=\"M 0 319.492188 L 355.492188 2.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.143015;\" d=\"M 0 239.671875 L 355.492188 28.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.485694;\" d=\"M 0 2.273438 L 355.492188 108.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0219371;\" d=\"M 0 303.730469 L 355.492188 47.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.402306;\" d=\"M 0 187.8125 L 355.492188 10.25 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0135901;\" d=\"M 0 311.058594 L 355.492188 61.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 10.066406 L 355.492188 17.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0106457;\" d=\"M 0 202.363281 L 355.492188 168.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.299808;\" d=\"M 0 37.917969 L 355.492188 123.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.585536;\" d=\"M 0 92.25 L 355.492188 48.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.00499645;\" d=\"M 0 325.625 L 355.492188 75.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0147891;\" d=\"M 0 302.285156 L 355.492188 84.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.203471;\" d=\"M 0 215.988281 L 355.492188 30.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0235101;\" d=\"M 0 289.878906 L 355.492188 82.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.246883;\" d=\"M 0 196.84375 L 355.492188 35.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0112746;\" d=\"M 0 311.582031 L 355.492188 74.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.220015;\" d=\"M 0 212.851562 L 355.492188 27.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.02504;\" d=\"M 0 284.660156 L 355.492188 89.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0453248;\" d=\"M 0 240.671875 L 355.492188 115.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.00416303;\" d=\"M 0 317.074219 L 355.492188 123.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.00515767;\" d=\"M 0 334.34375 L 355.492188 15.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0302088;\" d=\"M 0 234.847656 L 355.492188 138.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0498987;\" d=\"M 0 244.359375 L 355.492188 105.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0318901;\" d=\"M 0 270.324219 L 355.492188 99.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 55.019531 L 355.492188 20.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0153189;\" d=\"M 0 186.640625 L 355.492188 166.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0409921;\" d=\"M 0 293.511719 L 355.492188 26.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.121635;\" d=\"M 0 62.671875 L 355.492188 150.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.380278;\" d=\"M 0 198.335938 L 355.492188 6.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0303674;\" d=\"M 0 236.683594 L 355.492188 137.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.193025;\" d=\"M 0 202.925781 L 355.492188 49.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.101196;\" d=\"M 0 284.535156 L 355.492188 0 \"></path>\n</g>\n</svg>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[8]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.List</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">sort</span><span class=\"p\">)</span>\n\n<span class=\"nf\">program</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Measure</span><span class=\"w\"> </span><span class=\"nb\">()</span>\n<span class=\"nf\">program</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span>\n<span class=\"w\">    </span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">3</span><span class=\"w\"> </span><span class=\"n\">random</span>\n<span class=\"w\">    </span><span class=\"n\">factor</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kr\">if</span><span class=\"w\"> </span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"o\">==</span><span class=\"w\"> </span><span class=\"n\">sort</span><span class=\"w\"> </span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"kr\">then</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"> </span><span class=\"kr\">else</span><span class=\"w\"> </span><span class=\"mf\">0.1</span>\n\n<span class=\"nf\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">diagram</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">mconcat</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"n\">traceDiagram</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">1000</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">getTrace</span><span class=\"w\"> </span><span class=\"n\">program</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n<div class=\"jp-OutputArea-child\">\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedSVG jp-OutputArea-output \" data-mime-type=\"image/svg+xml\">\n<!--?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?-->\n<svg width=\"447.240582pt\" height=\"223.552817pt\" viewBox=\"0 0 447.240582 223.552817\" version=\"1.1\">\n<g id=\"surface20\">\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 90.785156 L 223.621094 160.648438 L 447.242188 155.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 125.796875 L 223.621094 184.527344 L 447.242188 117.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 46.476562 L 223.621094 127.179688 L 447.242188 14.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 140.425781 L 223.621094 121.972656 L 447.242188 78 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 218.609375 L 223.621094 160.296875 L 447.242188 81.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 197.4375 L 223.621094 210.164062 L 447.242188 219.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 113.929688 L 223.621094 204.953125 L 447.242188 131.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 67.558594 L 223.621094 3.058594 L 447.242188 212.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 30.65625 L 223.621094 152.664062 L 447.242188 173.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 164.25 L 223.621094 51.738281 L 447.242188 190.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 26.550781 L 223.621094 216.304688 L 447.242188 39.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 101.492188 L 223.621094 51.664062 L 447.242188 36.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 131.550781 L 223.621094 17.078125 L 447.242188 78.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 205.347656 L 223.621094 124.265625 L 447.242188 46.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 20.21875 L 223.621094 163.925781 L 447.242188 220.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 101.65625 L 223.621094 44.222656 L 447.242188 155.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 212.058594 L 223.621094 34.152344 L 447.242188 157.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 171.84375 L 223.621094 52.597656 L 447.242188 131.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 133.296875 L 223.621094 179.515625 L 447.242188 161.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 185.585938 L 223.621094 16.457031 L 447.242188 176.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 63.691406 L 223.621094 37.558594 L 447.242188 57.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 177.816406 L 223.621094 48.222656 L 447.242188 83.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 60.207031 L 223.621094 61.804688 L 447.242188 102.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 96.136719 L 223.621094 127.648438 L 447.242188 156.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 155.261719 L 223.621094 75.628906 L 447.242188 93.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 103.953125 L 223.621094 71.984375 L 447.242188 43.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 145.925781 L 223.621094 209.027344 L 447.242188 142.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 213.980469 L 223.621094 130.363281 L 447.242188 119.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 138.449219 L 223.621094 96.941406 L 447.242188 176.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 165.339844 L 223.621094 95.660156 L 447.242188 216.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 70.097656 L 223.621094 90.511719 L 447.242188 138.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 216.910156 L 223.621094 50.585938 L 447.242188 139.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 27.148438 L 223.621094 167.246094 L 447.242188 46.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 112.117188 L 223.621094 35.460938 L 447.242188 21.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 181.382812 L 223.621094 154.488281 L 447.242188 114.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 99.585938 L 223.621094 33.503906 L 447.242188 30.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 32.144531 L 223.621094 41.988281 L 447.242188 47.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 0.3125 L 223.621094 156.496094 L 447.242188 3.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 43.894531 L 223.621094 50.382812 L 447.242188 11.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 98.457031 L 223.621094 193.375 L 447.242188 22.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 189.335938 L 223.621094 1.378906 L 447.242188 83.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 38.445312 L 223.621094 119.132812 L 447.242188 156.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 94.628906 L 223.621094 147.148438 L 447.242188 205.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 130.542969 L 223.621094 173.308594 L 447.242188 186.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 1.714844 L 223.621094 126.976562 L 447.242188 86.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 117.6875 L 223.621094 22.167969 L 447.242188 87.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 215.816406 L 223.621094 111.066406 L 447.242188 210.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 32.574219 L 223.621094 77.699219 L 447.242188 177.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 175.585938 L 223.621094 203.097656 L 447.242188 113.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 158.578125 L 223.621094 190.917969 L 447.242188 213.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 95.144531 L 223.621094 22.046875 L 447.242188 103.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 125.617188 L 223.621094 109.496094 L 447.242188 91.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 133.304688 L 223.621094 174 L 447.242188 101.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 7.640625 L 223.621094 113.515625 L 447.242188 63.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 77.296875 L 223.621094 10.054688 L 447.242188 115.25 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 42.636719 L 223.621094 93.207031 L 447.242188 222.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 143.472656 L 223.621094 1.980469 L 447.242188 172.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 199.269531 L 223.621094 165.117188 L 447.242188 153.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 197.722656 L 223.621094 163.359375 L 447.242188 54.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 73.101562 L 223.621094 159.003906 L 447.242188 156.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 166.289062 L 223.621094 176.589844 L 447.242188 102.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 215.527344 L 223.621094 209.359375 L 447.242188 33.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 28.054688 L 223.621094 209.328125 L 447.242188 48.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 44.898438 L 223.621094 119.949219 L 447.242188 162.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 90.929688 L 223.621094 219.476562 L 447.242188 101.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 166.757812 L 223.621094 210.535156 L 447.242188 61.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 136.570312 L 223.621094 167.300781 L 447.242188 111.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 29.316406 L 223.621094 146.445312 L 447.242188 44.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 96.929688 L 223.621094 80.3125 L 447.242188 32.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 221.191406 L 223.621094 5.011719 L 447.242188 102.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 114.582031 L 223.621094 175.097656 L 447.242188 33.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 88.480469 L 223.621094 83.578125 L 447.242188 62.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 111.28125 L 223.621094 98.25 L 447.242188 204.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 100.734375 L 223.621094 191.402344 L 447.242188 45.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 154.636719 L 223.621094 32.410156 L 447.242188 20.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 101.433594 L 223.621094 208.273438 L 447.242188 185.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 129.734375 L 223.621094 2.9375 L 447.242188 35.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 12.183594 L 223.621094 132.914062 L 447.242188 137.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 153.753906 L 223.621094 36.25 L 447.242188 108.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 139.46875 L 223.621094 88.957031 L 447.242188 212.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 103.007812 L 223.621094 47.609375 L 447.242188 130.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 51.246094 L 223.621094 186.671875 L 447.242188 222.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 218.636719 L 223.621094 221.164062 L 447.242188 133.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 144.84375 L 223.621094 11.175781 L 447.242188 34 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 167.96875 L 223.621094 86.828125 L 447.242188 100.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 38.933594 L 223.621094 126.625 L 447.242188 90.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 30.195312 L 223.621094 57.988281 L 447.242188 62.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 95.625 L 223.621094 87.183594 L 447.242188 158.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 167.066406 L 223.621094 127.496094 L 447.242188 90.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 6.84375 L 223.621094 63.539062 L 447.242188 69.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 116.792969 L 223.621094 184.882812 L 447.242188 121.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 170.417969 L 223.621094 180.675781 L 447.242188 40.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 196.78125 L 223.621094 152.246094 L 447.242188 63.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 201.128906 L 223.621094 15.054688 L 447.242188 170.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 171.144531 L 223.621094 97.195312 L 447.242188 160.25 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 181.683594 L 223.621094 188.410156 L 447.242188 182.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 14.347656 L 223.621094 181.761719 L 447.242188 204.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 54.941406 L 223.621094 23.347656 L 447.242188 178.25 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 132.894531 L 223.621094 125.84375 L 447.242188 72.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 29.492188 L 223.621094 73.988281 L 447.242188 68.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 7.398438 L 223.621094 105.453125 L 447.242188 169.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 46.015625 L 223.621094 58.765625 L 447.242188 65.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 174.144531 L 223.621094 63.058594 L 447.242188 161.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 150.835938 L 223.621094 194.128906 L 447.242188 74.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 33.074219 L 223.621094 207.5625 L 447.242188 52.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 17.515625 L 223.621094 82.851562 L 447.242188 173.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 78.875 L 223.621094 100.699219 L 447.242188 125.5 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 121.082031 L 223.621094 117.855469 L 447.242188 42.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 177.503906 L 223.621094 71.726562 L 447.242188 71.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 15.433594 L 223.621094 60.023438 L 447.242188 24.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 99.738281 L 223.621094 176.3125 L 447.242188 148.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 191.140625 L 223.621094 78.414062 L 447.242188 83.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 137.953125 L 223.621094 62.8125 L 447.242188 181.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 130.824219 L 223.621094 200.304688 L 447.242188 18.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 206.082031 L 223.621094 173.074219 L 447.242188 77.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 8.632812 L 223.621094 191.285156 L 447.242188 216.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 187.019531 L 223.621094 78.769531 L 447.242188 89.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 165.1875 L 223.621094 183.378906 L 447.242188 82.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 3.378906 L 223.621094 97.085938 L 447.242188 162.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 190.898438 L 223.621094 93.347656 L 447.242188 67.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 83.886719 L 223.621094 39.789062 L 447.242188 100.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 177.5625 L 223.621094 30.472656 L 447.242188 67.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 117.757812 L 223.621094 20.730469 L 447.242188 180.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 29.554688 L 223.621094 106.140625 L 447.242188 175.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 71.800781 L 223.621094 182.863281 L 447.242188 83.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 221.550781 L 223.621094 52.039062 L 447.242188 181.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 103.308594 L 223.621094 223.550781 L 447.242188 123.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 81.0625 L 223.621094 71.027344 L 447.242188 80.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 54.359375 L 223.621094 98.105469 L 447.242188 19.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 138.351562 L 223.621094 20.394531 L 447.242188 66.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 60.875 L 223.621094 59.871094 L 447.242188 72.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 29.203125 L 223.621094 103 L 447.242188 190.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 37.261719 L 223.621094 145.480469 L 447.242188 215.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 95.351562 L 223.621094 153.363281 L 447.242188 32.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 53.378906 L 223.621094 198.554688 L 447.242188 14.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 94.273438 L 223.621094 160.496094 L 447.242188 47.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 66.925781 L 223.621094 203.886719 L 447.242188 142.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 153.917969 L 223.621094 43.917969 L 447.242188 92.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 153.226562 L 223.621094 128.390625 L 447.242188 143.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 39.738281 L 223.621094 173.683594 L 447.242188 103.25 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 34.714844 L 223.621094 15.800781 L 447.242188 206.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 70.226562 L 223.621094 201.707031 L 447.242188 15.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 88.949219 L 223.621094 178.429688 L 447.242188 45.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 43.191406 L 223.621094 147.082031 L 447.242188 78.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 96.886719 L 223.621094 41.511719 L 447.242188 138.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 96.941406 L 223.621094 92.402344 L 447.242188 204.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 172.402344 L 223.621094 121.3125 L 447.242188 188.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 212.351562 L 223.621094 102.007812 L 447.242188 53.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 208.179688 L 223.621094 118.996094 L 447.242188 151.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 146.371094 L 223.621094 33.089844 L 447.242188 171.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 135.402344 L 223.621094 186.820312 L 447.242188 109.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 216.320312 L 223.621094 61.234375 L 447.242188 50.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 14.507812 L 223.621094 128.800781 L 447.242188 72.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 216.976562 L 223.621094 97.136719 L 447.242188 48.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 68.871094 L 223.621094 123.757812 L 447.242188 157.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 24.4375 L 223.621094 209.296875 L 447.242188 149.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 23.320312 L 223.621094 62.390625 L 447.242188 135.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 176.5 L 223.621094 17.242188 L 447.242188 28.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 37.449219 L 223.621094 132.261719 L 447.242188 29.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 4.914062 L 223.621094 105.636719 L 447.242188 103.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 165.199219 L 223.621094 164.722656 L 447.242188 204.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 51.304688 L 223.621094 34.773438 L 447.242188 93.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 138.523438 L 223.621094 214.585938 L 447.242188 27.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 190.96875 L 223.621094 28.128906 L 447.242188 36.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 47.605469 L 223.621094 61.105469 L 447.242188 49.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 203.304688 L 223.621094 84.953125 L 447.242188 167.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 206.964844 L 223.621094 61.121094 L 447.242188 12.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 125.636719 L 223.621094 160.972656 L 447.242188 13.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 112.933594 L 223.621094 114.746094 L 447.242188 130.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 165.875 L 223.621094 128.191406 L 447.242188 146.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 17.984375 L 223.621094 76.347656 L 447.242188 183.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 104.597656 L 223.621094 67.699219 L 447.242188 51.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 146.214844 L 223.621094 130.066406 L 447.242188 179.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 159.015625 L 223.621094 221.945312 L 447.242188 18.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 117.332031 L 223.621094 47.261719 L 447.242188 123.25 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 209.9375 L 223.621094 59.464844 L 447.242188 84.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 122.371094 L 223.621094 121.105469 L 447.242188 149.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 167.464844 L 223.621094 161.703125 L 447.242188 13.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 32.332031 L 223.621094 130.910156 L 447.242188 86.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 33.113281 L 223.621094 59.414062 L 447.242188 182.625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 5.375 L 223.621094 134.25 L 447.242188 158.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 57.507812 L 223.621094 176.015625 L 447.242188 5.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 168.023438 L 223.621094 40.703125 L 447.242188 109.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 7.0625 L 223.621094 10.625 L 447.242188 143.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 98.558594 L 223.621094 30.847656 L 447.242188 188.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 177.761719 L 223.621094 8.226562 L 447.242188 98.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 215.75 L 223.621094 69.539062 L 447.242188 175.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 207.132812 L 223.621094 47.253906 L 447.242188 195.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 97.488281 L 223.621094 106.015625 L 447.242188 117.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 35.214844 L 223.621094 87.175781 L 447.242188 151.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 74.285156 L 223.621094 50.046875 L 447.242188 91.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 205.933594 L 223.621094 220.257812 L 447.242188 135.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 0.859375 L 223.621094 158.109375 L 447.242188 72.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 46.109375 L 223.621094 6.65625 L 447.242188 183.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 149.453125 L 223.621094 121.4375 L 447.242188 24.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 128.566406 L 223.621094 70.28125 L 447.242188 87.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 116.851562 L 223.621094 98.53125 L 447.242188 32.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 50.652344 L 223.621094 197.691406 L 447.242188 13.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 26.640625 L 223.621094 26.136719 L 447.242188 2.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 61.371094 L 223.621094 177.988281 L 447.242188 4.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 129.046875 L 223.621094 10.253906 L 447.242188 95.25 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 15.558594 L 223.621094 135.234375 L 447.242188 31.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 200.535156 L 223.621094 122.925781 L 447.242188 112.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 108.789062 L 223.621094 89.480469 L 447.242188 45.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 188.363281 L 223.621094 99.441406 L 447.242188 114.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 221.226562 L 223.621094 170.679688 L 447.242188 35.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 34.398438 L 223.621094 121.214844 L 447.242188 59.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 166.640625 L 223.621094 147.019531 L 447.242188 167.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 52.011719 L 223.621094 176.34375 L 447.242188 69.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 30.703125 L 223.621094 179.695312 L 447.242188 30.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 82.097656 L 223.621094 171.882812 L 447.242188 200.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 97.113281 L 223.621094 133.359375 L 447.242188 209.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 151.8125 L 223.621094 75.710938 L 447.242188 202.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 194.882812 L 223.621094 99.425781 L 447.242188 193.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 164.285156 L 223.621094 200.625 L 447.242188 39.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 153.140625 L 223.621094 47.011719 L 447.242188 15.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 158.574219 L 223.621094 152.417969 L 447.242188 4.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 152.71875 L 223.621094 77.445312 L 447.242188 179.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 179.679688 L 223.621094 221.132812 L 447.242188 102.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 153.789062 L 223.621094 141.59375 L 447.242188 113.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 190.894531 L 223.621094 109.980469 L 447.242188 170.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 37.992188 L 223.621094 165.351562 L 447.242188 115.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 8.945312 L 223.621094 104.4375 L 447.242188 105.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 92.191406 L 223.621094 137.019531 L 447.242188 195.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 136.964844 L 223.621094 16.554688 L 447.242188 76.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 138.8125 L 223.621094 131.785156 L 447.242188 113.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 97.359375 L 223.621094 213.984375 L 447.242188 75.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 154.667969 L 223.621094 82.9375 L 447.242188 213.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 182.90625 L 223.621094 86.882812 L 447.242188 22.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 199.425781 L 223.621094 125.394531 L 447.242188 83.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 148.949219 L 223.621094 216.464844 L 447.242188 20.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 3.375 L 223.621094 155.78125 L 447.242188 182.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 76.058594 L 223.621094 55.707031 L 447.242188 88.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 67.507812 L 223.621094 93.949219 L 447.242188 200.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 219.398438 L 223.621094 59.242188 L 447.242188 154.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 125.496094 L 223.621094 27.558594 L 447.242188 186.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 168.761719 L 223.621094 59.777344 L 447.242188 27.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 12.628906 L 223.621094 135.257812 L 447.242188 69.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 30.0625 L 223.621094 208.164062 L 447.242188 98.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 27.207031 L 223.621094 198.792969 L 447.242188 180.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 69.921875 L 223.621094 17.1875 L 447.242188 60.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 144.648438 L 223.621094 142.683594 L 447.242188 161.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 66.851562 L 223.621094 49.054688 L 447.242188 130.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 149.242188 L 223.621094 170.320312 L 447.242188 221.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 169.832031 L 223.621094 123.945312 L 447.242188 127.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 219.445312 L 223.621094 172.609375 L 447.242188 157.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 200.277344 L 223.621094 101.679688 L 447.242188 13.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 145.835938 L 223.621094 122.183594 L 447.242188 5.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 109.523438 L 223.621094 120.335938 L 447.242188 82.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 152.222656 L 223.621094 183.394531 L 447.242188 163.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 94.105469 L 223.621094 202.496094 L 447.242188 122.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 178.511719 L 223.621094 50.1875 L 447.242188 105.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 44.996094 L 223.621094 182.714844 L 447.242188 1.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 187.898438 L 223.621094 141.730469 L 447.242188 104.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 164.488281 L 223.621094 43.667969 L 447.242188 179.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 48.996094 L 223.621094 69.539062 L 447.242188 75.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 8.539062 L 223.621094 129.652344 L 447.242188 178.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 34.1875 L 223.621094 149.097656 L 447.242188 218.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 49.75 L 223.621094 182.007812 L 447.242188 179.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 78.347656 L 223.621094 28.027344 L 447.242188 65.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 213.78125 L 223.621094 44.503906 L 447.242188 47.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 66.695312 L 223.621094 54.292969 L 447.242188 145.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 107.113281 L 223.621094 146.371094 L 447.242188 64.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 148.113281 L 223.621094 73.488281 L 447.242188 182.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 208.882812 L 223.621094 133.960938 L 447.242188 54.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 168.582031 L 223.621094 188.855469 L 447.242188 110.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 194.488281 L 223.621094 161.148438 L 447.242188 82.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 193.617188 L 223.621094 148.78125 L 447.242188 169.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 114.3125 L 223.621094 13.726562 L 447.242188 77.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 182.511719 L 223.621094 219.203125 L 447.242188 155.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 88.941406 L 223.621094 102.476562 L 447.242188 64.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 34.050781 L 223.621094 70.832031 L 447.242188 118.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 48.539062 L 223.621094 67.757812 L 447.242188 5.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 169.300781 L 223.621094 0.582031 L 447.242188 5.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 92.519531 L 223.621094 159.855469 L 447.242188 88.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 211.066406 L 223.621094 39.15625 L 447.242188 32.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 38.289062 L 223.621094 136.609375 L 447.242188 61.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 147.601562 L 223.621094 18.097656 L 447.242188 136.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 10.1875 L 223.621094 205.628906 L 447.242188 73.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 81.023438 L 223.621094 131.882812 L 447.242188 42.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 96.246094 L 223.621094 107 L 447.242188 164.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 57.109375 L 223.621094 205.503906 L 447.242188 15.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 139.9375 L 223.621094 146.925781 L 447.242188 134.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 80.210938 L 223.621094 128.976562 L 447.242188 164.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 116.425781 L 223.621094 176.71875 L 447.242188 31.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 7.175781 L 223.621094 125.359375 L 447.242188 69.25 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 37.070312 L 223.621094 213.625 L 447.242188 156.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 50.214844 L 223.621094 201.203125 L 447.242188 168.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 118.253906 L 223.621094 103.90625 L 447.242188 47.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 45.753906 L 223.621094 221.203125 L 447.242188 193.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 88.921875 L 223.621094 79.839844 L 447.242188 24.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 186.640625 L 223.621094 134.953125 L 447.242188 52.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 118.738281 L 223.621094 164.390625 L 447.242188 208.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 118.515625 L 223.621094 219.300781 L 447.242188 188.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 71.65625 L 223.621094 27.339844 L 447.242188 56.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 137.019531 L 223.621094 75.949219 L 447.242188 153.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 147.253906 L 223.621094 165.144531 L 447.242188 152.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 94.601562 L 223.621094 31.730469 L 447.242188 7.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 85.628906 L 223.621094 136.738281 L 447.242188 170.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 15.894531 L 223.621094 186.628906 L 447.242188 73.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 119.527344 L 223.621094 20.941406 L 447.242188 55.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 149.675781 L 223.621094 207.085938 L 447.242188 219.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 185.515625 L 223.621094 184.335938 L 447.242188 22.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 154.492188 L 223.621094 101.738281 L 447.242188 221.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 84.886719 L 223.621094 164.6875 L 447.242188 63.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 42.46875 L 223.621094 208.917969 L 447.242188 13.875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 12.253906 L 223.621094 116.167969 L 447.242188 222.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 50.828125 L 223.621094 143.898438 L 447.242188 46.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 170.820312 L 223.621094 182.71875 L 447.242188 44.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 202.246094 L 223.621094 24.925781 L 447.242188 67.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 182.648438 L 223.621094 37.949219 L 447.242188 53.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 89.570312 L 223.621094 117.628906 L 447.242188 119.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 195.9375 L 223.621094 56.214844 L 447.242188 140.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 49.027344 L 223.621094 221.894531 L 447.242188 193.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 48.261719 L 223.621094 98.09375 L 447.242188 140.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 212.785156 L 223.621094 75.617188 L 447.242188 189.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 10.875 L 223.621094 17.644531 L 447.242188 219.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 110.039062 L 223.621094 153.917969 L 447.242188 12.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 48.070312 L 223.621094 196.414062 L 447.242188 9.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 209.445312 L 223.621094 95.222656 L 447.242188 101.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 66.164062 L 223.621094 216.410156 L 447.242188 209.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 149.175781 L 223.621094 0.949219 L 447.242188 79.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 142.125 L 223.621094 4.535156 L 447.242188 106.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 214.441406 L 223.621094 32.578125 L 447.242188 102.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 29.921875 L 223.621094 29.96875 L 447.242188 133.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 50.511719 L 223.621094 158.730469 L 447.242188 96.25 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 12.851562 L 223.621094 171.480469 L 447.242188 172.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 49.109375 L 223.621094 142 L 447.242188 103.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 25.914062 L 223.621094 44.605469 L 447.242188 2.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 216.542969 L 223.621094 169.316406 L 447.242188 23.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 102.695312 L 223.621094 24.128906 L 447.242188 67.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 3.996094 L 223.621094 98.5625 L 447.242188 142.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 121.714844 L 223.621094 20.046875 L 447.242188 117.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 110.609375 L 223.621094 72.644531 L 447.242188 80.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 1.769531 L 223.621094 46.570312 L 447.242188 220.5 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 14.546875 L 223.621094 114.773438 L 447.242188 23.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 18.511719 L 223.621094 182.589844 L 447.242188 195.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 73.164062 L 223.621094 104.285156 L 447.242188 192.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 46.734375 L 223.621094 212.417969 L 447.242188 181.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 116.285156 L 223.621094 213.859375 L 447.242188 74.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 43.140625 L 223.621094 187.4375 L 447.242188 71.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 37.628906 L 223.621094 58.664062 L 447.242188 202.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 173.703125 L 223.621094 205.277344 L 447.242188 8.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 35.40625 L 223.621094 139.101562 L 447.242188 209.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 147.210938 L 223.621094 131.699219 L 447.242188 171.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 91.34375 L 223.621094 81.910156 L 447.242188 204.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 159.710938 L 223.621094 51.40625 L 447.242188 66.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 92.394531 L 223.621094 108.175781 L 447.242188 184.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 131.316406 L 223.621094 192.746094 L 447.242188 199.25 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 125.300781 L 223.621094 2.046875 L 447.242188 94.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 217.242188 L 223.621094 57.816406 L 447.242188 218.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 43.09375 L 223.621094 56.210938 L 447.242188 76.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 148.808594 L 223.621094 129.425781 L 447.242188 92.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 155.164062 L 223.621094 10.847656 L 447.242188 19.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 174.519531 L 223.621094 176.214844 L 447.242188 116.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 93.886719 L 223.621094 58.152344 L 447.242188 2.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 221.816406 L 223.621094 88.472656 L 447.242188 76.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 202.429688 L 223.621094 65.476562 L 447.242188 130.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 50.460938 L 223.621094 148.382812 L 447.242188 55.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 206.175781 L 223.621094 131.492188 L 447.242188 196.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 121.183594 L 223.621094 93.609375 L 447.242188 70.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 61.535156 L 223.621094 24.960938 L 447.242188 1.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 191.039062 L 223.621094 128.046875 L 447.242188 223.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 47.054688 L 223.621094 112.652344 L 447.242188 56.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 169.238281 L 223.621094 80.652344 L 447.242188 61.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 172.289062 L 223.621094 134.625 L 447.242188 81.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 62.308594 L 223.621094 81.945312 L 447.242188 204.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 173.949219 L 223.621094 60.292969 L 447.242188 217.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 50.707031 L 223.621094 54.53125 L 447.242188 79.75 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 24.625 L 223.621094 48.328125 L 447.242188 149.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 104.449219 L 223.621094 165.589844 L 447.242188 159.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 123.878906 L 223.621094 162.609375 L 447.242188 175.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 46.175781 L 223.621094 136.378906 L 447.242188 41.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 209.957031 L 223.621094 105.960938 L 447.242188 151.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 126.285156 L 223.621094 90.121094 L 447.242188 33.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 188.882812 L 223.621094 16.46875 L 447.242188 95.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 124.996094 L 223.621094 119.136719 L 447.242188 150.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 146.410156 L 223.621094 48.429688 L 447.242188 6.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 192.554688 L 223.621094 27.4375 L 447.242188 21.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 119.988281 L 223.621094 106.828125 L 447.242188 204.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 174.980469 L 223.621094 124.03125 L 447.242188 89.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 48.273438 L 223.621094 178.296875 L 447.242188 33.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 192.007812 L 223.621094 199.835938 L 447.242188 173.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 191.027344 L 223.621094 174.964844 L 447.242188 179.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 101.140625 L 223.621094 22.699219 L 447.242188 92.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 69.160156 L 223.621094 9.863281 L 447.242188 74.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 123.394531 L 223.621094 179.515625 L 447.242188 86.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 31.449219 L 223.621094 57.289062 L 447.242188 81.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 16.894531 L 223.621094 47.347656 L 447.242188 159.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 41.65625 L 223.621094 108.296875 L 447.242188 204.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 222.882812 L 223.621094 88.574219 L 447.242188 221.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 7.488281 L 223.621094 96.0625 L 447.242188 153.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 203.25 L 223.621094 30.714844 L 447.242188 38.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 35.335938 L 223.621094 0.21875 L 447.242188 91.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 91.238281 L 223.621094 143.023438 L 447.242188 122.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 158.160156 L 223.621094 80.390625 L 447.242188 80.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 162.78125 L 223.621094 109.285156 L 447.242188 23.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 32.78125 L 223.621094 195.164062 L 447.242188 89.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 120.46875 L 223.621094 149.101562 L 447.242188 142.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 101.417969 L 223.621094 53.011719 L 447.242188 215.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 195.972656 L 223.621094 72.941406 L 447.242188 53.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 105.847656 L 223.621094 52.210938 L 447.242188 122.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 115.273438 L 223.621094 58.445312 L 447.242188 182.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 49.855469 L 223.621094 143.34375 L 447.242188 22.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 189.265625 L 223.621094 127.886719 L 447.242188 220.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 209.46875 L 223.621094 10.9375 L 447.242188 136.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 124.09375 L 223.621094 145.363281 L 447.242188 147.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 220.320312 L 223.621094 75.359375 L 447.242188 36.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 115.703125 L 223.621094 94.257812 L 447.242188 218 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 87.179688 L 223.621094 110.484375 L 447.242188 174.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 118.726562 L 223.621094 141.832031 L 447.242188 37.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 187.699219 L 223.621094 174.113281 L 447.242188 54.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 78.480469 L 223.621094 86.269531 L 447.242188 98.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 193.683594 L 223.621094 136.410156 L 447.242188 175.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 169.097656 L 223.621094 69.195312 L 447.242188 1.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 14.785156 L 223.621094 24.230469 L 447.242188 130.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 78.417969 L 223.621094 184.609375 L 447.242188 86.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 8.03125 L 223.621094 67.339844 L 447.242188 116.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 200.972656 L 223.621094 139.78125 L 447.242188 193.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 100.191406 L 223.621094 6.722656 L 447.242188 207.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 79.800781 L 223.621094 63.859375 L 447.242188 11.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 119.511719 L 223.621094 97.671875 L 447.242188 140.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 150.574219 L 223.621094 24.28125 L 447.242188 89.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 29.96875 L 223.621094 111.839844 L 447.242188 99.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 170.820312 L 223.621094 58.011719 L 447.242188 175.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 169.792969 L 223.621094 15.824219 L 447.242188 154.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 142.496094 L 223.621094 62.425781 L 447.242188 85.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 115.613281 L 223.621094 72.410156 L 447.242188 151.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 29.277344 L 223.621094 205.6875 L 447.242188 153.5 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 168.371094 L 223.621094 118.832031 L 447.242188 37.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 93.320312 L 223.621094 140.96875 L 447.242188 45.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 168.644531 L 223.621094 151.140625 L 447.242188 222.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 188.261719 L 223.621094 40.449219 L 447.242188 140.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 203.152344 L 223.621094 91.6875 L 447.242188 218.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 69.085938 L 223.621094 4.898438 L 447.242188 168.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 146.714844 L 223.621094 131.347656 L 447.242188 144.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 194.003906 L 223.621094 84.207031 L 447.242188 157.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 215.929688 L 223.621094 12.234375 L 447.242188 176.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 92.636719 L 223.621094 46.5 L 447.242188 142.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 153.414062 L 223.621094 33.164062 L 447.242188 84.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 40 L 223.621094 155.480469 L 447.242188 62.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 158.78125 L 223.621094 30.894531 L 447.242188 7.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 162.371094 L 223.621094 44.019531 L 447.242188 77.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 89.980469 L 223.621094 186.175781 L 447.242188 194.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 205.445312 L 223.621094 4.230469 L 447.242188 78.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 141.207031 L 223.621094 65.066406 L 447.242188 24.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 190.628906 L 223.621094 196.023438 L 447.242188 88.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 63.105469 L 223.621094 186.210938 L 447.242188 177.625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 110.117188 L 223.621094 221.660156 L 447.242188 118.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 132.496094 L 223.621094 41.179688 L 447.242188 179.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 132.820312 L 223.621094 115.347656 L 447.242188 11.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 35.070312 L 223.621094 141.007812 L 447.242188 87.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 55.679688 L 223.621094 121.152344 L 447.242188 34.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 146.085938 L 223.621094 81.859375 L 447.242188 42.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 28.554688 L 223.621094 115.640625 L 447.242188 200.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 166 L 223.621094 127.582031 L 447.242188 209.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 0 L 223.621094 106.59375 L 447.242188 65.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 185.34375 L 223.621094 66.160156 L 447.242188 3.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 173.832031 L 223.621094 100.933594 L 447.242188 55.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 12.601562 L 223.621094 108.761719 L 447.242188 222.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 97.636719 L 223.621094 84.132812 L 447.242188 70.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 199.316406 L 223.621094 218.269531 L 447.242188 122.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 190.777344 L 223.621094 85.171875 L 447.242188 158.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 135.675781 L 223.621094 20.402344 L 447.242188 27.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 204.75 L 223.621094 111.769531 L 447.242188 155.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 67.9375 L 223.621094 137.777344 L 447.242188 34.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 140.65625 L 223.621094 168.988281 L 447.242188 74.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 62.371094 L 223.621094 66.078125 L 447.242188 121.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 87.957031 L 223.621094 121.664062 L 447.242188 103.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 50.03125 L 223.621094 145.832031 L 447.242188 93.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 69.746094 L 223.621094 81.207031 L 447.242188 11.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 157.558594 L 223.621094 216.503906 L 447.242188 145.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 79.757812 L 223.621094 32.457031 L 447.242188 75.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 194.085938 L 223.621094 49.621094 L 447.242188 7.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 207.667969 L 223.621094 109.757812 L 447.242188 133.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 207.902344 L 223.621094 13.070312 L 447.242188 99.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 167.082031 L 223.621094 82.210938 L 447.242188 193.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 195.140625 L 223.621094 134.503906 L 447.242188 100.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 192.730469 L 223.621094 107.660156 L 447.242188 167.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 23.261719 L 223.621094 187.882812 L 447.242188 29.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 63.785156 L 223.621094 11.25 L 447.242188 199.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 112.746094 L 223.621094 8.597656 L 447.242188 72.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 85.890625 L 223.621094 8.015625 L 447.242188 64.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 47.832031 L 223.621094 32.761719 L 447.242188 108.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 12.3125 L 223.621094 79.699219 L 447.242188 202.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 175.214844 L 223.621094 40.6875 L 447.242188 193.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 128.980469 L 223.621094 108.78125 L 447.242188 126.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 129.796875 L 223.621094 86.546875 L 447.242188 144.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 78.75 L 223.621094 138.902344 L 447.242188 149.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 209.445312 L 223.621094 47.136719 L 447.242188 70.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 117.175781 L 223.621094 119.410156 L 447.242188 182.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 183.789062 L 223.621094 132.023438 L 447.242188 163.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 179.429688 L 223.621094 57.457031 L 447.242188 177.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 81.503906 L 223.621094 33.257812 L 447.242188 116.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 82.3125 L 223.621094 16.421875 L 447.242188 173.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 174.816406 L 223.621094 43.503906 L 447.242188 192.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 188.039062 L 223.621094 92.261719 L 447.242188 189.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 15.742188 L 223.621094 158.234375 L 447.242188 178.25 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 70.664062 L 223.621094 191.753906 L 447.242188 106.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 98.820312 L 223.621094 187.898438 L 447.242188 17.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 183.261719 L 223.621094 15.464844 L 447.242188 94.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 191.175781 L 223.621094 114.324219 L 447.242188 78.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 111.027344 L 223.621094 193.644531 L 447.242188 223.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 81.207031 L 223.621094 222.703125 L 447.242188 136.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 101.75 L 223.621094 126.441406 L 447.242188 110.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 11.074219 L 223.621094 151.191406 L 447.242188 152.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 22.105469 L 223.621094 24.6875 L 447.242188 136.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 137.222656 L 223.621094 66.171875 L 447.242188 172.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 87.957031 L 223.621094 44.71875 L 447.242188 130.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 75.867188 L 223.621094 155.449219 L 447.242188 198.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 184.113281 L 223.621094 84.359375 L 447.242188 5.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 22.511719 L 223.621094 220.402344 L 447.242188 155.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 22.570312 L 223.621094 157.621094 L 447.242188 185.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 95.230469 L 223.621094 74.761719 L 447.242188 154.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 179.941406 L 223.621094 86.25 L 447.242188 44.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 86.8125 L 223.621094 181.617188 L 447.242188 5.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 88.816406 L 223.621094 86.871094 L 447.242188 143.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 45.542969 L 223.621094 147.960938 L 447.242188 5.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 80.261719 L 223.621094 19.972656 L 447.242188 163.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 6.835938 L 223.621094 130.167969 L 447.242188 47.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 179.160156 L 223.621094 164.066406 L 447.242188 116.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 168.441406 L 223.621094 84.910156 L 447.242188 76.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 152.566406 L 223.621094 211.972656 L 447.242188 107.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 110.796875 L 223.621094 123.386719 L 447.242188 139.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 42.585938 L 223.621094 103.289062 L 447.242188 94.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 52.992188 L 223.621094 84.9375 L 447.242188 87.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 118.890625 L 223.621094 101.234375 L 447.242188 10.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 74.449219 L 223.621094 149.597656 L 447.242188 45.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 199.539062 L 223.621094 176.054688 L 447.242188 96.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 25.117188 L 223.621094 167.980469 L 447.242188 114.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 92.050781 L 223.621094 173.683594 L 447.242188 7.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 76.480469 L 223.621094 204.113281 L 447.242188 196.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 3.480469 L 223.621094 192.503906 L 447.242188 220.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 163.679688 L 223.621094 202.910156 L 447.242188 51.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 151.941406 L 223.621094 41.789062 L 447.242188 72.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 7.648438 L 223.621094 171.644531 L 447.242188 131.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 111.878906 L 223.621094 73.714844 L 447.242188 134.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 62.40625 L 223.621094 155.640625 L 447.242188 49.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 178.464844 L 223.621094 36.726562 L 447.242188 169.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 209.105469 L 223.621094 100.722656 L 447.242188 124.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 15.707031 L 223.621094 45.019531 L 447.242188 108.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 185.667969 L 223.621094 89.75 L 447.242188 8.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 168.453125 L 223.621094 168.164062 L 447.242188 128.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 106.039062 L 223.621094 52.132812 L 447.242188 181.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 15.292969 L 223.621094 212.261719 L 447.242188 62.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 178.453125 L 223.621094 110.484375 L 447.242188 207.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 92.265625 L 223.621094 64.375 L 447.242188 178.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 104.652344 L 223.621094 113.625 L 447.242188 9.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 222.132812 L 223.621094 99.503906 L 447.242188 76.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 38.011719 L 223.621094 184.804688 L 447.242188 23.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 172.496094 L 223.621094 12.996094 L 447.242188 53.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 211.027344 L 223.621094 56.75 L 447.242188 33.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 209.8125 L 223.621094 143.792969 L 447.242188 200.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 117.785156 L 223.621094 9.746094 L 447.242188 66.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 174.160156 L 223.621094 169.503906 L 447.242188 125.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 9.257812 L 223.621094 21.210938 L 447.242188 145.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 83.285156 L 223.621094 43.847656 L 447.242188 205.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 6.09375 L 223.621094 197.941406 L 447.242188 199.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 54.261719 L 223.621094 122.128906 L 447.242188 203.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 218.285156 L 223.621094 97.585938 L 447.242188 122.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 187.800781 L 223.621094 90.128906 L 447.242188 44.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 116.691406 L 223.621094 142.929688 L 447.242188 183.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 197.078125 L 223.621094 211.335938 L 447.242188 91.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 186.835938 L 223.621094 169.9375 L 447.242188 80.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 223.226562 L 223.621094 82.148438 L 447.242188 207.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 153.871094 L 223.621094 73.542969 L 447.242188 62.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 78.398438 L 223.621094 70.996094 L 447.242188 160.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 80.804688 L 223.621094 83.003906 L 447.242188 184.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 152.269531 L 223.621094 195.054688 L 447.242188 97.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 34.46875 L 223.621094 185.386719 L 447.242188 24.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 53.953125 L 223.621094 3.242188 L 447.242188 92.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 160.203125 L 223.621094 178.9375 L 447.242188 216.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 155.914062 L 223.621094 9.75 L 447.242188 176.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 111.9375 L 223.621094 24.800781 L 447.242188 60.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 88.007812 L 223.621094 94.902344 L 447.242188 79.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 63.332031 L 223.621094 179.203125 L 447.242188 168.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 151.53125 L 223.621094 84.097656 L 447.242188 73.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 54.335938 L 223.621094 59.28125 L 447.242188 114.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 23.695312 L 223.621094 120.511719 L 447.242188 170.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 8.472656 L 223.621094 184.382812 L 447.242188 32.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 15.910156 L 223.621094 8.46875 L 447.242188 64.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 110.148438 L 223.621094 213.726562 L 447.242188 139.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 42.621094 L 223.621094 164.53125 L 447.242188 41.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 216.109375 L 223.621094 175.761719 L 447.242188 210.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 71.230469 L 223.621094 212.292969 L 447.242188 37.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 17.273438 L 223.621094 198.085938 L 447.242188 24.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 66.894531 L 223.621094 153.394531 L 447.242188 46.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 186.828125 L 223.621094 182.886719 L 447.242188 12.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 163.117188 L 223.621094 57.707031 L 447.242188 28.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 118.265625 L 223.621094 71.449219 L 447.242188 110.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 219.347656 L 223.621094 61.761719 L 447.242188 180.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 213.074219 L 223.621094 7.464844 L 447.242188 215.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 212.925781 L 223.621094 115.90625 L 447.242188 80.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 17.394531 L 223.621094 172.5625 L 447.242188 60.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 197.804688 L 223.621094 98.921875 L 447.242188 121.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 28.640625 L 223.621094 168.699219 L 447.242188 110.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 158.304688 L 223.621094 110.683594 L 447.242188 148.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 90.789062 L 223.621094 12.929688 L 447.242188 34.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 113.574219 L 223.621094 171.765625 L 447.242188 204.375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 67.835938 L 223.621094 10.808594 L 447.242188 119.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 212.597656 L 223.621094 42.441406 L 447.242188 43.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 155.605469 L 223.621094 38.703125 L 447.242188 96.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 192.722656 L 223.621094 114.707031 L 447.242188 30.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 121.433594 L 223.621094 117.488281 L 447.242188 209.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 113.167969 L 223.621094 220.476562 L 447.242188 70.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 213.347656 L 223.621094 70.789062 L 447.242188 47.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 38.558594 L 223.621094 46.429688 L 447.242188 113.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 29.289062 L 223.621094 144.558594 L 447.242188 103.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 46.804688 L 223.621094 221.339844 L 447.242188 33.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 155.183594 L 223.621094 17.007812 L 447.242188 133.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 91.257812 L 223.621094 215.863281 L 447.242188 198.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 141.835938 L 223.621094 160.230469 L 447.242188 184.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 111.941406 L 223.621094 133.6875 L 447.242188 203.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 33.746094 L 223.621094 149.105469 L 447.242188 16.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 170.261719 L 223.621094 43.933594 L 447.242188 46.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 171.898438 L 223.621094 162.320312 L 447.242188 190.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 218.480469 L 223.621094 104.972656 L 447.242188 124.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 143.230469 L 223.621094 222.464844 L 447.242188 150.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 143.214844 L 223.621094 210.136719 L 447.242188 78.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 56.109375 L 223.621094 156.6875 L 447.242188 186.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 105.484375 L 223.621094 27.25 L 447.242188 207.5 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 54.007812 L 223.621094 61.777344 L 447.242188 87.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 194.683594 L 223.621094 214.089844 L 447.242188 29.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 86.75 L 223.621094 124.90625 L 447.242188 182.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 65.273438 L 223.621094 38.503906 L 447.242188 66.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 132.15625 L 223.621094 59.699219 L 447.242188 54.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 28.96875 L 223.621094 185.261719 L 447.242188 1.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 167.738281 L 223.621094 24.949219 L 447.242188 149.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 93.59375 L 223.621094 55.160156 L 447.242188 177.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 129.226562 L 223.621094 97.929688 L 447.242188 170.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 124.945312 L 223.621094 157.566406 L 447.242188 26.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 212.957031 L 223.621094 83.035156 L 447.242188 92.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 181.316406 L 223.621094 170.804688 L 447.242188 48.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 63.59375 L 223.621094 99.113281 L 447.242188 204.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 181.027344 L 223.621094 104.023438 L 447.242188 126.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 174.085938 L 223.621094 91.273438 L 447.242188 123.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 22.359375 L 223.621094 129.21875 L 447.242188 101.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 71.964844 L 223.621094 185.011719 L 447.242188 39.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 47.910156 L 223.621094 1.6875 L 447.242188 110.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 40.207031 L 223.621094 133.875 L 447.242188 109.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 57.761719 L 223.621094 175.359375 L 447.242188 162.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 19.875 L 223.621094 54.480469 L 447.242188 203.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 118.5625 L 223.621094 144.238281 L 447.242188 151.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 216.742188 L 223.621094 84.117188 L 447.242188 94.375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 35.019531 L 223.621094 107.203125 L 447.242188 51.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 74.097656 L 223.621094 32.09375 L 447.242188 82.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 86.078125 L 223.621094 63.308594 L 447.242188 205.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 29.945312 L 223.621094 96.503906 L 447.242188 116.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 139.84375 L 223.621094 123.773438 L 447.242188 176.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 87.195312 L 223.621094 143.132812 L 447.242188 193.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 114.363281 L 223.621094 132.011719 L 447.242188 110.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 195.347656 L 223.621094 65.664062 L 447.242188 70.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 211.273438 L 223.621094 23.335938 L 447.242188 22.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 223.074219 L 223.621094 99.648438 L 447.242188 81.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 141.289062 L 223.621094 96.28125 L 447.242188 105.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 58.890625 L 223.621094 1.675781 L 447.242188 165.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 52.578125 L 223.621094 178.363281 L 447.242188 166.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 13.207031 L 223.621094 201.074219 L 447.242188 40.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 119.753906 L 223.621094 61.25 L 447.242188 77.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 126.058594 L 223.621094 17.378906 L 447.242188 67.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 53.125 L 223.621094 209.800781 L 447.242188 33.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 205.007812 L 223.621094 30.921875 L 447.242188 186.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 193.332031 L 223.621094 88.714844 L 447.242188 205.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 73.011719 L 223.621094 30.140625 L 447.242188 115.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 98.957031 L 223.621094 69.09375 L 447.242188 30.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 101.257812 L 223.621094 59.042969 L 447.242188 41.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 188.882812 L 223.621094 15.078125 L 447.242188 208.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 133.855469 L 223.621094 61.375 L 447.242188 110.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 177.242188 L 223.621094 53.46875 L 447.242188 28.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 204.941406 L 223.621094 80.53125 L 447.242188 81.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 171.667969 L 223.621094 144.804688 L 447.242188 49.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 47.652344 L 223.621094 182.433594 L 447.242188 72.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 213.988281 L 223.621094 149.953125 L 447.242188 112.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 102.484375 L 223.621094 156.308594 L 447.242188 203.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 36.890625 L 223.621094 26.195312 L 447.242188 139.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 130.507812 L 223.621094 129.800781 L 447.242188 22.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 51.289062 L 223.621094 77.199219 L 447.242188 154.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 75.351562 L 223.621094 57.152344 L 447.242188 161.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 19.035156 L 223.621094 215.03125 L 447.242188 95.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 167.230469 L 223.621094 39.390625 L 447.242188 87.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 29.496094 L 223.621094 86.433594 L 447.242188 33.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 43.539062 L 223.621094 122.824219 L 447.242188 134.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 183.511719 L 223.621094 194.429688 L 447.242188 156.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 23.574219 L 223.621094 208.203125 L 447.242188 59.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 170.566406 L 223.621094 116.972656 L 447.242188 143.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 16.867188 L 223.621094 132.601562 L 447.242188 110.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 217.046875 L 223.621094 114.675781 L 447.242188 183.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 68.894531 L 223.621094 201.316406 L 447.242188 77.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 188.398438 L 223.621094 199.925781 L 447.242188 65.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 151.21875 L 223.621094 223.015625 L 447.242188 203.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 103.15625 L 223.621094 21.265625 L 447.242188 56.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 198.167969 L 223.621094 65.324219 L 447.242188 67.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 174.082031 L 223.621094 114.925781 L 447.242188 218.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 13.808594 L 223.621094 57.773438 L 447.242188 66.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 141.035156 L 223.621094 84.363281 L 447.242188 209.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 109.21875 L 223.621094 155.210938 L 447.242188 155.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 49.03125 L 223.621094 79.195312 L 447.242188 36.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 45.964844 L 223.621094 207.097656 L 447.242188 184.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 136.09375 L 223.621094 125.40625 L 447.242188 28.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 93.816406 L 223.621094 72.75 L 447.242188 218.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 77.265625 L 223.621094 124.546875 L 447.242188 119.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 86.957031 L 223.621094 125.328125 L 447.242188 106.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 54.042969 L 223.621094 72.1875 L 447.242188 159.375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 136.660156 L 223.621094 159.578125 L 447.242188 60.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 163.886719 L 223.621094 217.25 L 447.242188 16.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 54.34375 L 223.621094 148.632812 L 447.242188 76.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 21.84375 L 223.621094 137.699219 L 447.242188 86.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 95.542969 L 223.621094 129.425781 L 447.242188 5.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 111.796875 L 223.621094 187.304688 L 447.242188 13.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 10.015625 L 223.621094 200.714844 L 447.242188 184.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 181.289062 L 223.621094 114.691406 L 447.242188 164.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 114.042969 L 223.621094 131.652344 L 447.242188 174.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 106.773438 L 223.621094 13.148438 L 447.242188 45.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 202.386719 L 223.621094 184.410156 L 447.242188 165.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 127.832031 L 223.621094 102.261719 L 447.242188 13.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 123.578125 L 223.621094 156.792969 L 447.242188 10.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 211.082031 L 223.621094 64.976562 L 447.242188 160.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 152.332031 L 223.621094 65.300781 L 447.242188 81.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 52.1875 L 223.621094 140.339844 L 447.242188 106.125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 11.15625 L 223.621094 134.761719 L 447.242188 106.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 122.4375 L 223.621094 178.632812 L 447.242188 90.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 211.445312 L 223.621094 133.382812 L 447.242188 166.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 174.085938 L 223.621094 188.910156 L 447.242188 196.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 107.757812 L 223.621094 152.558594 L 447.242188 196.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 144.777344 L 223.621094 110.394531 L 447.242188 208.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 131.1875 L 223.621094 117.289062 L 447.242188 133.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 163.195312 L 223.621094 201.261719 L 447.242188 51.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 212.910156 L 223.621094 151.636719 L 447.242188 171.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 27.457031 L 223.621094 73.3125 L 447.242188 12.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 221.132812 L 223.621094 154.40625 L 447.242188 12.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 4 L 223.621094 9.050781 L 447.242188 135.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 33.808594 L 223.621094 6.992188 L 447.242188 113.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 81.671875 L 223.621094 1.121094 L 447.242188 45.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 156.082031 L 223.621094 151.402344 L 447.242188 38.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 123.296875 L 223.621094 54.796875 L 447.242188 171.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 50.351562 L 223.621094 121.734375 L 447.242188 165.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 163.160156 L 223.621094 124.304688 L 447.242188 156.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 47.082031 L 223.621094 3.71875 L 447.242188 179.375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 202.847656 L 223.621094 165.9375 L 447.242188 33.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 89.902344 L 223.621094 205.539062 L 447.242188 10.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 220.011719 L 223.621094 130.367188 L 447.242188 66.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 169.824219 L 223.621094 159.457031 L 447.242188 42.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 9.269531 L 223.621094 35.898438 L 447.242188 114.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 186.363281 L 223.621094 103.46875 L 447.242188 195.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 39.585938 L 223.621094 102.710938 L 447.242188 169.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 154.214844 L 223.621094 68.855469 L 447.242188 89.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 166.492188 L 223.621094 102.082031 L 447.242188 198.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 142.683594 L 223.621094 176.714844 L 447.242188 51.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 188.617188 L 223.621094 132.914062 L 447.242188 135.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 193.222656 L 223.621094 120.738281 L 447.242188 168.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 134.929688 L 223.621094 36.335938 L 447.242188 178.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 214.597656 L 223.621094 23.839844 L 447.242188 15.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 168.878906 L 223.621094 70.761719 L 447.242188 67.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 111.394531 L 223.621094 66.84375 L 447.242188 52.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 207.660156 L 223.621094 221.113281 L 447.242188 96.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 87.324219 L 223.621094 121.898438 L 447.242188 142.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 89.9375 L 223.621094 212.101562 L 447.242188 218.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 202.136719 L 223.621094 169.992188 L 447.242188 126.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 122.359375 L 223.621094 12.648438 L 447.242188 185.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 19.003906 L 223.621094 72.914062 L 447.242188 94.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 182.550781 L 223.621094 178.101562 L 447.242188 111.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 18.871094 L 223.621094 143.472656 L 447.242188 212.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 166.78125 L 223.621094 178.101562 L 447.242188 212.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 205.238281 L 223.621094 183.324219 L 447.242188 183.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 33.933594 L 223.621094 1.40625 L 447.242188 178.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 183.824219 L 223.621094 142.1875 L 447.242188 96.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 91.722656 L 223.621094 95.554688 L 447.242188 82.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 30.136719 L 223.621094 24.167969 L 447.242188 12.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 178.851562 L 223.621094 46.554688 L 447.242188 199.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 67.667969 L 223.621094 47.058594 L 447.242188 191.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 78.582031 L 223.621094 130.609375 L 447.242188 127.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 182.800781 L 223.621094 121.074219 L 447.242188 37.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 153.34375 L 223.621094 92.191406 L 447.242188 72.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 196.703125 L 223.621094 71.75 L 447.242188 84.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 95.144531 L 223.621094 130.425781 L 447.242188 58.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 210.546875 L 223.621094 157.996094 L 447.242188 147.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 52.132812 L 223.621094 188.535156 L 447.242188 140.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 4.113281 L 223.621094 80.980469 L 447.242188 158.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 26.644531 L 223.621094 80.730469 L 447.242188 53.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 69.089844 L 223.621094 159.761719 L 447.242188 25.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 175.992188 L 223.621094 198.332031 L 447.242188 80.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 42.554688 L 223.621094 102.351562 L 447.242188 93.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 2.0625 L 223.621094 149.648438 L 447.242188 215.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 52.371094 L 223.621094 139.96875 L 447.242188 18.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 156.144531 L 223.621094 5.855469 L 447.242188 171.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 130.808594 L 223.621094 56.695312 L 447.242188 32.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 210.546875 L 223.621094 117.417969 L 447.242188 38.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 13.921875 L 223.621094 27.0625 L 447.242188 117.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 64.507812 L 223.621094 49.183594 L 447.242188 173.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 199.917969 L 223.621094 153.640625 L 447.242188 73.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 122.160156 L 223.621094 109.046875 L 447.242188 22.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 214.210938 L 223.621094 108.773438 L 447.242188 127.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 122.191406 L 223.621094 52.765625 L 447.242188 168.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 125.515625 L 223.621094 193.941406 L 447.242188 101.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 188.757812 L 223.621094 5.527344 L 447.242188 51.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 22.632812 L 223.621094 96.785156 L 447.242188 134.625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 133.570312 L 223.621094 60.464844 L 447.242188 139.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 165.949219 L 223.621094 174.601562 L 447.242188 38.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 147.492188 L 223.621094 40.191406 L 447.242188 94.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 8.488281 L 223.621094 175.226562 L 447.242188 129.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 107.273438 L 223.621094 77.410156 L 447.242188 135.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 28.453125 L 223.621094 82.136719 L 447.242188 137.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 81.792969 L 223.621094 117.507812 L 447.242188 28.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 34.757812 L 223.621094 2.734375 L 447.242188 0.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 99.515625 L 223.621094 189.644531 L 447.242188 219.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 194.320312 L 223.621094 187.183594 L 447.242188 27.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 20 L 223.621094 187.554688 L 447.242188 103.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 136.867188 L 223.621094 49.773438 L 447.242188 2.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 23.875 L 223.621094 7.855469 L 447.242188 126.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 222.105469 L 223.621094 84.953125 L 447.242188 47.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 219.269531 L 223.621094 222.167969 L 447.242188 211.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 40.097656 L 223.621094 196.265625 L 447.242188 2.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 45.976562 L 223.621094 174.988281 L 447.242188 70.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 11.246094 L 223.621094 200.070312 L 447.242188 192.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 81.636719 L 223.621094 193.125 L 447.242188 201.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 174.035156 L 223.621094 116.871094 L 447.242188 151.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 91.304688 L 223.621094 123.507812 L 447.242188 55.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 141.753906 L 223.621094 97.40625 L 447.242188 146.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 56.226562 L 223.621094 218.535156 L 447.242188 95.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 204.496094 L 223.621094 82.070312 L 447.242188 105.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 113.484375 L 223.621094 142.539062 L 447.242188 208.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 195.515625 L 223.621094 208.691406 L 447.242188 90.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 112.867188 L 223.621094 56.675781 L 447.242188 159.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 145.746094 L 223.621094 82.808594 L 447.242188 157.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 147.066406 L 223.621094 178.964844 L 447.242188 68.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 3.222656 L 223.621094 64.464844 L 447.242188 61.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 143.734375 L 223.621094 72.828125 L 447.242188 43.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 95.875 L 223.621094 28.835938 L 447.242188 152.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 161.246094 L 223.621094 66.816406 L 447.242188 191.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 186.222656 L 223.621094 47.347656 L 447.242188 222.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 98.238281 L 223.621094 59.582031 L 447.242188 9.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 95.242188 L 223.621094 80.652344 L 447.242188 174.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 212.304688 L 223.621094 12.449219 L 447.242188 145.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 145.722656 L 223.621094 80.441406 L 447.242188 38.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 130.160156 L 223.621094 16.070312 L 447.242188 26.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 74.742188 L 223.621094 118.796875 L 447.242188 130.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 206.582031 L 223.621094 12.605469 L 447.242188 171.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 16.726562 L 223.621094 92.851562 L 447.242188 153.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 43.207031 L 223.621094 161.730469 L 447.242188 184.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 97.148438 L 223.621094 184.011719 L 447.242188 128.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 134.191406 L 223.621094 81.417969 L 447.242188 8.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 108.078125 L 223.621094 107.582031 L 447.242188 17.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 191.59375 L 223.621094 174.957031 L 447.242188 198.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 89.535156 L 223.621094 2.375 L 447.242188 149.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 82.457031 L 223.621094 121.433594 L 447.242188 17.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 7.273438 L 223.621094 85.722656 L 447.242188 121.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 128.722656 L 223.621094 149.949219 L 447.242188 54.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 69.515625 L 223.621094 193.070312 L 447.242188 222.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 199.339844 L 223.621094 59.828125 L 447.242188 78.75 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 184.539062 L 223.621094 102.023438 L 447.242188 153.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 109.023438 L 223.621094 81.210938 L 447.242188 137.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 10.179688 L 223.621094 35.148438 L 447.242188 92.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 26.160156 L 223.621094 20.050781 L 447.242188 186.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 191.59375 L 223.621094 58.109375 L 447.242188 147.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 185.695312 L 223.621094 77.636719 L 447.242188 0.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 133.933594 L 223.621094 203.746094 L 447.242188 101.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 86.585938 L 223.621094 70.683594 L 447.242188 52.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 141.585938 L 223.621094 145.777344 L 447.242188 137.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 63.402344 L 223.621094 214.089844 L 447.242188 61.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 209.324219 L 223.621094 9.285156 L 447.242188 184.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 172.5625 L 223.621094 115.949219 L 447.242188 138.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 54.550781 L 223.621094 130.789062 L 447.242188 17.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 103.648438 L 223.621094 113.410156 L 447.242188 106.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 88.109375 L 223.621094 9.773438 L 447.242188 195.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 131.417969 L 223.621094 65.4375 L 447.242188 134.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 48.683594 L 223.621094 91.660156 L 447.242188 186.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 190.046875 L 223.621094 214.972656 L 447.242188 145.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 145.851562 L 223.621094 10.824219 L 447.242188 135.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 26 L 223.621094 169.652344 L 447.242188 53.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 206.292969 L 223.621094 222.574219 L 447.242188 45.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 96.8125 L 223.621094 58.332031 L 447.242188 22.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 35.535156 L 223.621094 54.789062 L 447.242188 218.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 129.417969 L 223.621094 187.273438 L 447.242188 67.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 110.386719 L 223.621094 104.757812 L 447.242188 104.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 135.539062 L 223.621094 43.332031 L 447.242188 201.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 149.507812 L 223.621094 87.511719 L 447.242188 51.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 14.019531 L 223.621094 199.683594 L 447.242188 90.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 79.265625 L 223.621094 176.800781 L 447.242188 73.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 74.574219 L 223.621094 88.816406 L 447.242188 138.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 85.109375 L 223.621094 183.609375 L 447.242188 178.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 106.273438 L 223.621094 100.761719 L 447.242188 97.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 93.257812 L 223.621094 111.921875 L 447.242188 121.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 200.617188 L 223.621094 172.652344 L 447.242188 121.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 123.929688 L 223.621094 160.363281 L 447.242188 169.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 137.6875 L 223.621094 153.5 L 447.242188 214.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 43.65625 L 223.621094 182.902344 L 447.242188 91.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 133.359375 L 223.621094 50.414062 L 447.242188 28.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 49.117188 L 223.621094 16.4375 L 447.242188 13.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 74.136719 L 223.621094 31.300781 L 447.242188 108.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 93.859375 L 223.621094 106.671875 L 447.242188 8.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 39.839844 L 223.621094 135.648438 L 447.242188 208.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 38.550781 L 223.621094 24.816406 L 447.242188 166.625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 3.464844 L 223.621094 19.015625 L 447.242188 2.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 78.597656 L 223.621094 23.335938 L 447.242188 155.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 103.875 L 223.621094 17.003906 L 447.242188 116.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 70.375 L 223.621094 103.175781 L 447.242188 72.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 172.589844 L 223.621094 11.316406 L 447.242188 150.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 140.320312 L 223.621094 222.328125 L 447.242188 141.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 108.417969 L 223.621094 79.304688 L 447.242188 13.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 186.558594 L 223.621094 173.867188 L 447.242188 96.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 160.097656 L 223.621094 63.136719 L 447.242188 25.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 45.050781 L 223.621094 100.308594 L 447.242188 181.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 108.339844 L 223.621094 96.3125 L 447.242188 223.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 139.621094 L 223.621094 125.40625 L 447.242188 81.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 213.847656 L 223.621094 211.136719 L 447.242188 128.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 134.585938 L 223.621094 14.839844 L 447.242188 185.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 107.550781 L 223.621094 118.960938 L 447.242188 15.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 131.867188 L 223.621094 78.425781 L 447.242188 65.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 116.515625 L 223.621094 12.996094 L 447.242188 170.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 205.691406 L 223.621094 85.777344 L 447.242188 80.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 177.371094 L 223.621094 103.300781 L 447.242188 66.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 42.265625 L 223.621094 216.398438 L 447.242188 120.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 172.816406 L 223.621094 183.316406 L 447.242188 198.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 24.128906 L 223.621094 110.003906 L 447.242188 128.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 26.171875 L 223.621094 150.695312 L 447.242188 175.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 10.863281 L 223.621094 178.507812 L 447.242188 64.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 167.582031 L 223.621094 157.527344 L 447.242188 175.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 161.757812 L 223.621094 89.324219 L 447.242188 112.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 100.5625 L 223.621094 130.097656 L 447.242188 37.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 43.648438 L 223.621094 197.492188 L 447.242188 205.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 105.03125 L 223.621094 135.546875 L 447.242188 174.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 17.273438 L 223.621094 186.828125 L 447.242188 114.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 6.453125 L 223.621094 92.984375 L 447.242188 201.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 41.824219 L 223.621094 161.929688 L 447.242188 92.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 75.949219 L 223.621094 160.105469 L 447.242188 162.75 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 136.90625 L 223.621094 180.246094 L 447.242188 129.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 53.351562 L 223.621094 5.605469 L 447.242188 151.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 113.769531 L 223.621094 102.632812 L 447.242188 19.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 6.296875 L 223.621094 76.972656 L 447.242188 202.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 48.503906 L 223.621094 119.628906 L 447.242188 70.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 6.433594 L 223.621094 152.652344 L 447.242188 91.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 140.242188 L 223.621094 113.492188 L 447.242188 52.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 101.027344 L 223.621094 182.960938 L 447.242188 10.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 77.347656 L 223.621094 30.828125 L 447.242188 66.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 136.996094 L 223.621094 78.023438 L 447.242188 24.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 181.570312 L 223.621094 93.921875 L 447.242188 175.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 111.394531 L 223.621094 173.226562 L 447.242188 89.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 169.597656 L 223.621094 136.210938 L 447.242188 48.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 135.09375 L 223.621094 160.144531 L 447.242188 90.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 184.523438 L 223.621094 94.769531 L 447.242188 217.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 23.785156 L 223.621094 24.289062 L 447.242188 176.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 45.695312 L 223.621094 137.144531 L 447.242188 168.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 121.671875 L 223.621094 85.117188 L 447.242188 130.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 187.679688 L 223.621094 83.0625 L 447.242188 157.875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 8.429688 L 223.621094 90.539062 L 447.242188 72.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 95.953125 L 223.621094 30.863281 L 447.242188 46.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 194.058594 L 223.621094 178.003906 L 447.242188 64.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 167.457031 L 223.621094 56.109375 L 447.242188 128.25 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 73.800781 L 223.621094 39.398438 L 447.242188 187.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 207.320312 L 223.621094 93.542969 L 447.242188 29.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 38.425781 L 223.621094 76.726562 L 447.242188 29.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 201.617188 L 223.621094 43.722656 L 447.242188 197.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 103.410156 L 223.621094 13.90625 L 447.242188 8.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 66.890625 L 223.621094 10.679688 L 447.242188 122.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 164.351562 L 223.621094 201.84375 L 447.242188 2.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 183.84375 L 223.621094 192.773438 L 447.242188 80.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 145.042969 L 223.621094 151.636719 L 447.242188 18.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 2.300781 L 223.621094 69.269531 L 447.242188 81.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 30.539062 L 223.621094 182.65625 L 447.242188 135.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 119.011719 L 223.621094 7.316406 L 447.242188 191.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 101.480469 L 223.621094 1.222656 L 447.242188 154.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 196.539062 L 223.621094 39.398438 L 447.242188 190.375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 107.179688 L 223.621094 7.203125 L 447.242188 11.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 128.167969 L 223.621094 106.558594 L 447.242188 162.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 109.503906 L 223.621094 11.675781 L 447.242188 172.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 24.722656 L 223.621094 78.742188 L 447.242188 146.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 31.304688 L 223.621094 193.167969 L 447.242188 178.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 155.042969 L 223.621094 195.90625 L 447.242188 58.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 134.265625 L 223.621094 214.507812 L 447.242188 165.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 205.703125 L 223.621094 48.53125 L 447.242188 169.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 108.125 L 223.621094 155.886719 L 447.242188 155.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 191.023438 L 223.621094 54.242188 L 447.242188 211.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 86.089844 L 223.621094 136.738281 L 447.242188 19.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 183.21875 L 223.621094 52.578125 L 447.242188 217.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 21.796875 L 223.621094 124.695312 L 447.242188 23.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 159.425781 L 223.621094 148.167969 L 447.242188 219.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 18.199219 L 223.621094 196.871094 L 447.242188 47.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 179.933594 L 223.621094 57.097656 L 447.242188 134.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 78.269531 L 223.621094 152.265625 L 447.242188 73.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 211.1875 L 223.621094 10.378906 L 447.242188 200.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 88.085938 L 223.621094 71.875 L 447.242188 122.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 23.363281 L 223.621094 198.066406 L 447.242188 148.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 63.171875 L 223.621094 154.585938 L 447.242188 67.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 35.480469 L 223.621094 13.621094 L 447.242188 170.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 200.539062 L 223.621094 118.277344 L 447.242188 105.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 38.710938 L 223.621094 189.453125 L 447.242188 56.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 127.261719 L 223.621094 207.507812 L 447.242188 171.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 67.902344 L 223.621094 160.160156 L 447.242188 29.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 219.945312 L 223.621094 128.472656 L 447.242188 170.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 185.503906 L 223.621094 17.574219 L 447.242188 40.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 95.707031 L 223.621094 63.613281 L 447.242188 193.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 130.058594 L 223.621094 133.746094 L 447.242188 40.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 5.269531 L 223.621094 148.972656 L 447.242188 135.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 138.949219 L 223.621094 222.046875 L 447.242188 125.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 87.234375 L 223.621094 189.742188 L 447.242188 191.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 177.207031 L 223.621094 112.65625 L 447.242188 149.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 0.871094 L 223.621094 128.519531 L 447.242188 31.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 150.394531 L 223.621094 209.96875 L 447.242188 179.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;\" d=\"M 0 142.058594 L 223.621094 52.15625 L 447.242188 173.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0 213.09375 L 223.621094 22.988281 L 447.242188 3.582031 \"></path>\n</g>\n</svg>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Displaying-random-walks\">Displaying random walks<a class=\"anchor-link\" href=\"#Displaying-random-walks\">&#182;</a></h1><p>Another nice use of <code>diagrams</code> is to produce a distribution over a random walk, and then convert it into a distribution over diagrams of random walks:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[9]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Sampler.Lazy</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">Lazy</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[10]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">kernel</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">V2</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V2</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span>\n<span class=\"nf\">kernel</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V2</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span>\n<span class=\"w\">    </span><span class=\"n\">newX</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"mf\">0.01</span>\n<span class=\"w\">    </span><span class=\"n\">newY</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"mf\">0.01</span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V2</span><span class=\"w\"> </span><span class=\"n\">newX</span><span class=\"w\"> </span><span class=\"n\">newY</span><span class=\"p\">)</span>\n\n<span class=\"nf\">randomWalk</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Distribution</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">V2</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">]</span>\n<span class=\"nf\">randomWalk</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">unfoldrM</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Just</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"n\">x</span><span class=\"p\">)))</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">kernel</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"mi\">0</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[11]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">convertPointToDiagram</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">V2</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kt\">Diagram</span><span class=\"w\"> </span><span class=\"kt\">C</span><span class=\"o\">.</span><span class=\"kt\">B</span>\n<span class=\"nf\">convertPointToDiagram</span><span class=\"w\"> </span><span class=\"n\">point</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">circle</span><span class=\"w\"> </span><span class=\"mf\">0.001</span><span class=\"w\"> </span><span class=\"o\">#</span><span class=\"w\"> </span><span class=\"n\">translate</span><span class=\"w\"> </span><span class=\"n\">point</span>\n\n<span class=\"nf\">convertListofNPointsToDiagram</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Int</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">V2</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">]</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kt\">Diagram</span><span class=\"w\"> </span><span class=\"kt\">C</span><span class=\"o\">.</span><span class=\"kt\">B</span>\n<span class=\"nf\">convertListofNPointsToDiagram</span><span class=\"w\"> </span><span class=\"n\">n</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">mconcat</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">take</span><span class=\"w\"> </span><span class=\"n\">n</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"n\">convertPointToDiagram</span>\n\n<span class=\"nf\">diagramList</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Distribution</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Diagram</span><span class=\"w\"> </span><span class=\"kt\">C</span><span class=\"o\">.</span><span class=\"kt\">B</span><span class=\"p\">)</span>\n<span class=\"nf\">diagramList</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">convertListofNPointsToDiagram</span><span class=\"w\"> </span><span class=\"mi\">10000</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">randomWalk</span>\n\n<span class=\"nf\">d</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"kt\">L</span><span class=\"o\">.</span><span class=\"n\">sampler</span><span class=\"w\"> </span><span class=\"n\">diagramList</span>\n<span class=\"nf\">diagram</span><span class=\"w\"> </span><span class=\"n\">d</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n<div class=\"jp-OutputArea-child\">\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedSVG jp-OutputArea-output \" data-mime-type=\"image/svg+xml\">\n<!--?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?-->\n<svg width=\"376.047429pt\" height=\"329.527436pt\" viewBox=\"0 0 376.047429 329.527436\" version=\"1.1\">\n<g id=\"surface26\">\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 359.683594 235.371094 C 359.683594 235.253906 359.589844 235.160156 359.472656 235.160156 C 359.355469 235.160156 359.261719 235.253906 359.261719 235.371094 C 359.261719 235.488281 359.355469 235.582031 359.472656 235.582031 C 359.589844 235.582031 359.683594 235.488281 359.683594 235.371094 Z M 359.683594 235.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 361.300781 233.492188 C 361.300781 233.375 361.207031 233.28125 361.089844 233.28125 C 360.972656 233.28125 360.878906 233.375 360.878906 233.492188 C 360.878906 233.609375 360.972656 233.703125 361.089844 233.703125 C 361.207031 233.703125 361.300781 233.609375 361.300781 233.492188 Z M 361.300781 233.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.988281 231.777344 C 358.988281 231.660156 358.894531 231.566406 358.777344 231.566406 C 358.660156 231.566406 358.566406 231.660156 358.566406 231.777344 C 358.566406 231.894531 358.660156 231.988281 358.777344 231.988281 C 358.894531 231.988281 358.988281 231.894531 358.988281 231.777344 Z M 358.988281 231.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.417969 228.089844 C 358.417969 227.972656 358.324219 227.878906 358.207031 227.878906 C 358.089844 227.878906 357.996094 227.972656 357.996094 228.089844 C 357.996094 228.207031 358.089844 228.300781 358.207031 228.300781 C 358.324219 228.300781 358.417969 228.207031 358.417969 228.089844 Z M 358.417969 228.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 357.550781 226.96875 C 357.550781 226.851562 357.457031 226.757812 357.339844 226.757812 C 357.222656 226.757812 357.128906 226.851562 357.128906 226.96875 C 357.128906 227.085938 357.222656 227.179688 357.339844 227.179688 C 357.457031 227.179688 357.550781 227.085938 357.550781 226.96875 Z M 357.550781 226.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 357.21875 225.585938 C 357.21875 225.46875 357.125 225.375 357.007812 225.375 C 356.890625 225.375 356.796875 225.46875 356.796875 225.585938 C 356.796875 225.703125 356.890625 225.796875 357.007812 225.796875 C 357.125 225.796875 357.21875 225.703125 357.21875 225.585938 Z M 357.21875 225.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.753906 227.183594 C 358.753906 227.066406 358.660156 226.972656 358.542969 226.972656 C 358.425781 226.972656 358.332031 227.066406 358.332031 227.183594 C 358.332031 227.300781 358.425781 227.394531 358.542969 227.394531 C 358.660156 227.394531 358.753906 227.300781 358.753906 227.183594 Z M 358.753906 227.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.335938 227.671875 C 358.335938 227.554688 358.242188 227.460938 358.125 227.460938 C 358.007812 227.460938 357.914062 227.554688 357.914062 227.671875 C 357.914062 227.789062 358.007812 227.882812 358.125 227.882812 C 358.242188 227.882812 358.335938 227.789062 358.335938 227.671875 Z M 358.335938 227.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 360.988281 222.855469 C 360.988281 222.738281 360.894531 222.644531 360.777344 222.644531 C 360.660156 222.644531 360.566406 222.738281 360.566406 222.855469 C 360.566406 222.972656 360.660156 223.066406 360.777344 223.066406 C 360.894531 223.066406 360.988281 222.972656 360.988281 222.855469 Z M 360.988281 222.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 359.03125 222.261719 C 359.03125 222.144531 358.9375 222.050781 358.820312 222.050781 C 358.703125 222.050781 358.609375 222.144531 358.609375 222.261719 C 358.609375 222.378906 358.703125 222.472656 358.820312 222.472656 C 358.9375 222.472656 359.03125 222.378906 359.03125 222.261719 Z M 359.03125 222.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.722656 220.792969 C 356.722656 220.675781 356.628906 220.582031 356.511719 220.582031 C 356.394531 220.582031 356.300781 220.675781 356.300781 220.792969 C 356.300781 220.910156 356.394531 221.003906 356.511719 221.003906 C 356.628906 221.003906 356.722656 220.910156 356.722656 220.792969 Z M 356.722656 220.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.703125 220.863281 C 355.703125 220.746094 355.609375 220.652344 355.492188 220.652344 C 355.375 220.652344 355.28125 220.746094 355.28125 220.863281 C 355.28125 220.980469 355.375 221.074219 355.492188 221.074219 C 355.609375 221.074219 355.703125 220.980469 355.703125 220.863281 Z M 355.703125 220.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.273438 220.578125 C 356.273438 220.460938 356.179688 220.367188 356.0625 220.367188 C 355.945312 220.367188 355.851562 220.460938 355.851562 220.578125 C 355.851562 220.695312 355.945312 220.789062 356.0625 220.789062 C 356.179688 220.789062 356.273438 220.695312 356.273438 220.578125 Z M 356.273438 220.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.292969 221.972656 C 355.292969 221.855469 355.199219 221.761719 355.082031 221.761719 C 354.964844 221.761719 354.871094 221.855469 354.871094 221.972656 C 354.871094 222.089844 354.964844 222.183594 355.082031 222.183594 C 355.199219 222.183594 355.292969 222.089844 355.292969 221.972656 Z M 355.292969 221.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.6875 222.199219 C 355.6875 222.082031 355.59375 221.988281 355.476562 221.988281 C 355.359375 221.988281 355.265625 222.082031 355.265625 222.199219 C 355.265625 222.316406 355.359375 222.410156 355.476562 222.410156 C 355.59375 222.410156 355.6875 222.316406 355.6875 222.199219 Z M 355.6875 222.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 357.347656 220.667969 C 357.347656 220.550781 357.253906 220.457031 357.136719 220.457031 C 357.019531 220.457031 356.925781 220.550781 356.925781 220.667969 C 356.925781 220.785156 357.019531 220.878906 357.136719 220.878906 C 357.253906 220.878906 357.347656 220.785156 357.347656 220.667969 Z M 357.347656 220.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.183594 216.238281 C 358.183594 216.121094 358.089844 216.027344 357.972656 216.027344 C 357.855469 216.027344 357.761719 216.121094 357.761719 216.238281 C 357.761719 216.355469 357.855469 216.449219 357.972656 216.449219 C 358.089844 216.449219 358.183594 216.355469 358.183594 216.238281 Z M 358.183594 216.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 360.117188 221.972656 C 360.117188 221.855469 360.023438 221.761719 359.90625 221.761719 C 359.789062 221.761719 359.695312 221.855469 359.695312 221.972656 C 359.695312 222.089844 359.789062 222.183594 359.90625 222.183594 C 360.023438 222.183594 360.117188 222.089844 360.117188 221.972656 Z M 360.117188 221.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 361.949219 220.757812 C 361.949219 220.640625 361.855469 220.546875 361.738281 220.546875 C 361.621094 220.546875 361.527344 220.640625 361.527344 220.757812 C 361.527344 220.875 361.621094 220.96875 361.738281 220.96875 C 361.855469 220.96875 361.949219 220.875 361.949219 220.757812 Z M 361.949219 220.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 363.246094 219.417969 C 363.246094 219.300781 363.152344 219.207031 363.035156 219.207031 C 362.917969 219.207031 362.824219 219.300781 362.824219 219.417969 C 362.824219 219.535156 362.917969 219.628906 363.035156 219.628906 C 363.152344 219.628906 363.246094 219.535156 363.246094 219.417969 Z M 363.246094 219.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 363.496094 216.277344 C 363.496094 216.160156 363.402344 216.066406 363.285156 216.066406 C 363.167969 216.066406 363.074219 216.160156 363.074219 216.277344 C 363.074219 216.394531 363.167969 216.488281 363.285156 216.488281 C 363.402344 216.488281 363.496094 216.394531 363.496094 216.277344 Z M 363.496094 216.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 364.601562 218.621094 C 364.601562 218.503906 364.507812 218.410156 364.390625 218.410156 C 364.273438 218.410156 364.179688 218.503906 364.179688 218.621094 C 364.179688 218.738281 364.273438 218.832031 364.390625 218.832031 C 364.507812 218.832031 364.601562 218.738281 364.601562 218.621094 Z M 364.601562 218.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 362.871094 216.03125 C 362.871094 215.914062 362.777344 215.820312 362.660156 215.820312 C 362.542969 215.820312 362.449219 215.914062 362.449219 216.03125 C 362.449219 216.148438 362.542969 216.242188 362.660156 216.242188 C 362.777344 216.242188 362.871094 216.148438 362.871094 216.03125 Z M 362.871094 216.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 364.609375 216.019531 C 364.609375 215.902344 364.515625 215.808594 364.398438 215.808594 C 364.28125 215.808594 364.1875 215.902344 364.1875 216.019531 C 364.1875 216.136719 364.28125 216.230469 364.398438 216.230469 C 364.515625 216.230469 364.609375 216.136719 364.609375 216.019531 Z M 364.609375 216.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 365.660156 217.554688 C 365.660156 217.4375 365.566406 217.34375 365.449219 217.34375 C 365.332031 217.34375 365.238281 217.4375 365.238281 217.554688 C 365.238281 217.671875 365.332031 217.765625 365.449219 217.765625 C 365.566406 217.765625 365.660156 217.671875 365.660156 217.554688 Z M 365.660156 217.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 369.996094 216.847656 C 369.996094 216.730469 369.902344 216.636719 369.785156 216.636719 C 369.667969 216.636719 369.574219 216.730469 369.574219 216.847656 C 369.574219 216.964844 369.667969 217.058594 369.785156 217.058594 C 369.902344 217.058594 369.996094 216.964844 369.996094 216.847656 Z M 369.996094 216.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 368.148438 218.871094 C 368.148438 218.753906 368.054688 218.660156 367.9375 218.660156 C 367.820312 218.660156 367.726562 218.753906 367.726562 218.871094 C 367.726562 218.988281 367.820312 219.082031 367.9375 219.082031 C 368.054688 219.082031 368.148438 218.988281 368.148438 218.871094 Z M 368.148438 218.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 365.652344 219.511719 C 365.652344 219.394531 365.558594 219.300781 365.441406 219.300781 C 365.324219 219.300781 365.230469 219.394531 365.230469 219.511719 C 365.230469 219.628906 365.324219 219.722656 365.441406 219.722656 C 365.558594 219.722656 365.652344 219.628906 365.652344 219.511719 Z M 365.652344 219.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 362.980469 220.820312 C 362.980469 220.703125 362.886719 220.609375 362.769531 220.609375 C 362.652344 220.609375 362.558594 220.703125 362.558594 220.820312 C 362.558594 220.9375 362.652344 221.03125 362.769531 221.03125 C 362.886719 221.03125 362.980469 220.9375 362.980469 220.820312 Z M 362.980469 220.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 361.554688 223.8125 C 361.554688 223.695312 361.460938 223.601562 361.34375 223.601562 C 361.226562 223.601562 361.132812 223.695312 361.132812 223.8125 C 361.132812 223.929688 361.226562 224.023438 361.34375 224.023438 C 361.460938 224.023438 361.554688 223.929688 361.554688 223.8125 Z M 361.554688 223.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 359.078125 222.785156 C 359.078125 222.667969 358.984375 222.574219 358.867188 222.574219 C 358.75 222.574219 358.65625 222.667969 358.65625 222.785156 C 358.65625 222.902344 358.75 222.996094 358.867188 222.996094 C 358.984375 222.996094 359.078125 222.902344 359.078125 222.785156 Z M 359.078125 222.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.886719 223.617188 C 358.886719 223.5 358.792969 223.40625 358.675781 223.40625 C 358.558594 223.40625 358.464844 223.5 358.464844 223.617188 C 358.464844 223.734375 358.558594 223.828125 358.675781 223.828125 C 358.792969 223.828125 358.886719 223.734375 358.886719 223.617188 Z M 358.886719 223.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 360.570312 225.613281 C 360.570312 225.496094 360.476562 225.402344 360.359375 225.402344 C 360.242188 225.402344 360.148438 225.496094 360.148438 225.613281 C 360.148438 225.730469 360.242188 225.824219 360.359375 225.824219 C 360.476562 225.824219 360.570312 225.730469 360.570312 225.613281 Z M 360.570312 225.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.421875 221.742188 C 358.421875 221.625 358.328125 221.53125 358.210938 221.53125 C 358.09375 221.53125 358 221.625 358 221.742188 C 358 221.859375 358.09375 221.953125 358.210938 221.953125 C 358.328125 221.953125 358.421875 221.859375 358.421875 221.742188 Z M 358.421875 221.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 360.839844 221.914062 C 360.839844 221.796875 360.746094 221.703125 360.628906 221.703125 C 360.511719 221.703125 360.417969 221.796875 360.417969 221.914062 C 360.417969 222.03125 360.511719 222.125 360.628906 222.125 C 360.746094 222.125 360.839844 222.03125 360.839844 221.914062 Z M 360.839844 221.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 361.160156 225.070312 C 361.160156 224.953125 361.066406 224.859375 360.949219 224.859375 C 360.832031 224.859375 360.738281 224.953125 360.738281 225.070312 C 360.738281 225.1875 360.832031 225.28125 360.949219 225.28125 C 361.066406 225.28125 361.160156 225.1875 361.160156 225.070312 Z M 361.160156 225.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 360.027344 225.15625 C 360.027344 225.039062 359.933594 224.945312 359.816406 224.945312 C 359.699219 224.945312 359.605469 225.039062 359.605469 225.15625 C 359.605469 225.273438 359.699219 225.367188 359.816406 225.367188 C 359.933594 225.367188 360.027344 225.273438 360.027344 225.15625 Z M 360.027344 225.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 357.671875 222.691406 C 357.671875 222.574219 357.578125 222.480469 357.460938 222.480469 C 357.34375 222.480469 357.25 222.574219 357.25 222.691406 C 357.25 222.808594 357.34375 222.902344 357.460938 222.902344 C 357.578125 222.902344 357.671875 222.808594 357.671875 222.691406 Z M 357.671875 222.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.234375 224.574219 C 356.234375 224.457031 356.140625 224.363281 356.023438 224.363281 C 355.90625 224.363281 355.8125 224.457031 355.8125 224.574219 C 355.8125 224.691406 355.90625 224.785156 356.023438 224.785156 C 356.140625 224.785156 356.234375 224.691406 356.234375 224.574219 Z M 356.234375 224.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.488281 219.855469 C 355.488281 219.738281 355.394531 219.644531 355.277344 219.644531 C 355.160156 219.644531 355.066406 219.738281 355.066406 219.855469 C 355.066406 219.972656 355.160156 220.066406 355.277344 220.066406 C 355.394531 220.066406 355.488281 219.972656 355.488281 219.855469 Z M 355.488281 219.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.191406 221.984375 C 356.191406 221.867188 356.097656 221.773438 355.980469 221.773438 C 355.863281 221.773438 355.769531 221.867188 355.769531 221.984375 C 355.769531 222.101562 355.863281 222.195312 355.980469 222.195312 C 356.097656 222.195312 356.191406 222.101562 356.191406 221.984375 Z M 356.191406 221.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 357.84375 218.96875 C 357.84375 218.851562 357.75 218.757812 357.632812 218.757812 C 357.515625 218.757812 357.421875 218.851562 357.421875 218.96875 C 357.421875 219.085938 357.515625 219.179688 357.632812 219.179688 C 357.75 219.179688 357.84375 219.085938 357.84375 218.96875 Z M 357.84375 218.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.515625 214.460938 C 358.515625 214.34375 358.421875 214.25 358.304688 214.25 C 358.1875 214.25 358.09375 214.34375 358.09375 214.460938 C 358.09375 214.578125 358.1875 214.671875 358.304688 214.671875 C 358.421875 214.671875 358.515625 214.578125 358.515625 214.460938 Z M 358.515625 214.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 359.238281 214.574219 C 359.238281 214.457031 359.144531 214.363281 359.027344 214.363281 C 358.910156 214.363281 358.816406 214.457031 358.816406 214.574219 C 358.816406 214.691406 358.910156 214.785156 359.027344 214.785156 C 359.144531 214.785156 359.238281 214.691406 359.238281 214.574219 Z M 359.238281 214.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 359.496094 214.601562 C 359.496094 214.484375 359.402344 214.390625 359.285156 214.390625 C 359.167969 214.390625 359.074219 214.484375 359.074219 214.601562 C 359.074219 214.71875 359.167969 214.8125 359.285156 214.8125 C 359.402344 214.8125 359.496094 214.71875 359.496094 214.601562 Z M 359.496094 214.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.632812 216.128906 C 356.632812 216.011719 356.539062 215.917969 356.421875 215.917969 C 356.304688 215.917969 356.210938 216.011719 356.210938 216.128906 C 356.210938 216.246094 356.304688 216.339844 356.421875 216.339844 C 356.539062 216.339844 356.632812 216.246094 356.632812 216.128906 Z M 356.632812 216.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 359.160156 214.261719 C 359.160156 214.144531 359.066406 214.050781 358.949219 214.050781 C 358.832031 214.050781 358.738281 214.144531 358.738281 214.261719 C 358.738281 214.378906 358.832031 214.472656 358.949219 214.472656 C 359.066406 214.472656 359.160156 214.378906 359.160156 214.261719 Z M 359.160156 214.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.28125 214.085938 C 358.28125 213.96875 358.1875 213.875 358.070312 213.875 C 357.953125 213.875 357.859375 213.96875 357.859375 214.085938 C 357.859375 214.203125 357.953125 214.296875 358.070312 214.296875 C 358.1875 214.296875 358.28125 214.203125 358.28125 214.085938 Z M 358.28125 214.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 360.894531 215.984375 C 360.894531 215.867188 360.800781 215.773438 360.683594 215.773438 C 360.566406 215.773438 360.472656 215.867188 360.472656 215.984375 C 360.472656 216.101562 360.566406 216.195312 360.683594 216.195312 C 360.800781 216.195312 360.894531 216.101562 360.894531 215.984375 Z M 360.894531 215.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 361.679688 222.417969 C 361.679688 222.300781 361.585938 222.207031 361.46875 222.207031 C 361.351562 222.207031 361.257812 222.300781 361.257812 222.417969 C 361.257812 222.535156 361.351562 222.628906 361.46875 222.628906 C 361.585938 222.628906 361.679688 222.535156 361.679688 222.417969 Z M 361.679688 222.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 361.5625 224.515625 C 361.5625 224.398438 361.46875 224.304688 361.351562 224.304688 C 361.234375 224.304688 361.140625 224.398438 361.140625 224.515625 C 361.140625 224.632812 361.234375 224.726562 361.351562 224.726562 C 361.46875 224.726562 361.5625 224.632812 361.5625 224.515625 Z M 361.5625 224.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 359.15625 222.320312 C 359.15625 222.203125 359.0625 222.109375 358.945312 222.109375 C 358.828125 222.109375 358.734375 222.203125 358.734375 222.320312 C 358.734375 222.4375 358.828125 222.53125 358.945312 222.53125 C 359.0625 222.53125 359.15625 222.4375 359.15625 222.320312 Z M 359.15625 222.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 359.691406 224.179688 C 359.691406 224.0625 359.597656 223.96875 359.480469 223.96875 C 359.363281 223.96875 359.269531 224.0625 359.269531 224.179688 C 359.269531 224.296875 359.363281 224.390625 359.480469 224.390625 C 359.597656 224.390625 359.691406 224.296875 359.691406 224.179688 Z M 359.691406 224.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 361.464844 223.960938 C 361.464844 223.84375 361.371094 223.75 361.253906 223.75 C 361.136719 223.75 361.042969 223.84375 361.042969 223.960938 C 361.042969 224.078125 361.136719 224.171875 361.253906 224.171875 C 361.371094 224.171875 361.464844 224.078125 361.464844 223.960938 Z M 361.464844 223.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 361.769531 222.011719 C 361.769531 221.894531 361.675781 221.800781 361.558594 221.800781 C 361.441406 221.800781 361.347656 221.894531 361.347656 222.011719 C 361.347656 222.128906 361.441406 222.222656 361.558594 222.222656 C 361.675781 222.222656 361.769531 222.128906 361.769531 222.011719 Z M 361.769531 222.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 359.125 225.125 C 359.125 225.007812 359.03125 224.914062 358.914062 224.914062 C 358.796875 224.914062 358.703125 225.007812 358.703125 225.125 C 358.703125 225.242188 358.796875 225.335938 358.914062 225.335938 C 359.03125 225.335938 359.125 225.242188 359.125 225.125 Z M 359.125 225.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.246094 225.214844 C 358.246094 225.097656 358.152344 225.003906 358.035156 225.003906 C 357.917969 225.003906 357.824219 225.097656 357.824219 225.214844 C 357.824219 225.332031 357.917969 225.425781 358.035156 225.425781 C 358.152344 225.425781 358.246094 225.332031 358.246094 225.214844 Z M 358.246094 225.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.636719 224.714844 C 356.636719 224.597656 356.542969 224.503906 356.425781 224.503906 C 356.308594 224.503906 356.214844 224.597656 356.214844 224.714844 C 356.214844 224.832031 356.308594 224.925781 356.425781 224.925781 C 356.542969 224.925781 356.636719 224.832031 356.636719 224.714844 Z M 356.636719 224.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 357.136719 223.125 C 357.136719 223.007812 357.042969 222.914062 356.925781 222.914062 C 356.808594 222.914062 356.714844 223.007812 356.714844 223.125 C 356.714844 223.242188 356.808594 223.335938 356.925781 223.335938 C 357.042969 223.335938 357.136719 223.242188 357.136719 223.125 Z M 357.136719 223.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.050781 224.867188 C 358.050781 224.75 357.957031 224.65625 357.839844 224.65625 C 357.722656 224.65625 357.628906 224.75 357.628906 224.867188 C 357.628906 224.984375 357.722656 225.078125 357.839844 225.078125 C 357.957031 225.078125 358.050781 224.984375 358.050781 224.867188 Z M 358.050781 224.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 360.308594 224.617188 C 360.308594 224.5 360.214844 224.40625 360.097656 224.40625 C 359.980469 224.40625 359.886719 224.5 359.886719 224.617188 C 359.886719 224.734375 359.980469 224.828125 360.097656 224.828125 C 360.214844 224.828125 360.308594 224.734375 360.308594 224.617188 Z M 360.308594 224.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 360.582031 228.582031 C 360.582031 228.464844 360.488281 228.371094 360.371094 228.371094 C 360.253906 228.371094 360.160156 228.464844 360.160156 228.582031 C 360.160156 228.699219 360.253906 228.792969 360.371094 228.792969 C 360.488281 228.792969 360.582031 228.699219 360.582031 228.582031 Z M 360.582031 228.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 357.132812 228.480469 C 357.132812 228.363281 357.039062 228.269531 356.921875 228.269531 C 356.804688 228.269531 356.710938 228.363281 356.710938 228.480469 C 356.710938 228.597656 356.804688 228.691406 356.921875 228.691406 C 357.039062 228.691406 357.132812 228.597656 357.132812 228.480469 Z M 357.132812 228.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.851562 229.925781 C 354.851562 229.808594 354.757812 229.714844 354.640625 229.714844 C 354.523438 229.714844 354.429688 229.808594 354.429688 229.925781 C 354.429688 230.042969 354.523438 230.136719 354.640625 230.136719 C 354.757812 230.136719 354.851562 230.042969 354.851562 229.925781 Z M 354.851562 229.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.234375 232.808594 C 354.234375 232.691406 354.140625 232.597656 354.023438 232.597656 C 353.90625 232.597656 353.8125 232.691406 353.8125 232.808594 C 353.8125 232.925781 353.90625 233.019531 354.023438 233.019531 C 354.140625 233.019531 354.234375 232.925781 354.234375 232.808594 Z M 354.234375 232.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.515625 235.511719 C 355.515625 235.394531 355.421875 235.300781 355.304688 235.300781 C 355.1875 235.300781 355.09375 235.394531 355.09375 235.511719 C 355.09375 235.628906 355.1875 235.722656 355.304688 235.722656 C 355.421875 235.722656 355.515625 235.628906 355.515625 235.511719 Z M 355.515625 235.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.34375 236.074219 C 353.34375 235.957031 353.25 235.863281 353.132812 235.863281 C 353.015625 235.863281 352.921875 235.957031 352.921875 236.074219 C 352.921875 236.191406 353.015625 236.285156 353.132812 236.285156 C 353.25 236.285156 353.34375 236.191406 353.34375 236.074219 Z M 353.34375 236.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.238281 233.269531 C 351.238281 233.152344 351.144531 233.058594 351.027344 233.058594 C 350.910156 233.058594 350.816406 233.152344 350.816406 233.269531 C 350.816406 233.386719 350.910156 233.480469 351.027344 233.480469 C 351.144531 233.480469 351.238281 233.386719 351.238281 233.269531 Z M 351.238281 233.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 350.367188 230.75 C 350.367188 230.632812 350.273438 230.539062 350.15625 230.539062 C 350.039062 230.539062 349.945312 230.632812 349.945312 230.75 C 349.945312 230.867188 350.039062 230.960938 350.15625 230.960938 C 350.273438 230.960938 350.367188 230.867188 350.367188 230.75 Z M 350.367188 230.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 349.601562 232.097656 C 349.601562 231.980469 349.507812 231.886719 349.390625 231.886719 C 349.273438 231.886719 349.179688 231.980469 349.179688 232.097656 C 349.179688 232.214844 349.273438 232.308594 349.390625 232.308594 C 349.507812 232.308594 349.601562 232.214844 349.601562 232.097656 Z M 349.601562 232.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 348.824219 231.277344 C 348.824219 231.160156 348.730469 231.066406 348.613281 231.066406 C 348.496094 231.066406 348.402344 231.160156 348.402344 231.277344 C 348.402344 231.394531 348.496094 231.488281 348.613281 231.488281 C 348.730469 231.488281 348.824219 231.394531 348.824219 231.277344 Z M 348.824219 231.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 343.738281 228.207031 C 343.738281 228.089844 343.644531 227.996094 343.527344 227.996094 C 343.410156 227.996094 343.316406 228.089844 343.316406 228.207031 C 343.316406 228.324219 343.410156 228.417969 343.527344 228.417969 C 343.644531 228.417969 343.738281 228.324219 343.738281 228.207031 Z M 343.738281 228.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 348.066406 227.675781 C 348.066406 227.558594 347.972656 227.464844 347.855469 227.464844 C 347.738281 227.464844 347.644531 227.558594 347.644531 227.675781 C 347.644531 227.792969 347.738281 227.886719 347.855469 227.886719 C 347.972656 227.886719 348.066406 227.792969 348.066406 227.675781 Z M 348.066406 227.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 349.597656 225.703125 C 349.597656 225.585938 349.503906 225.492188 349.386719 225.492188 C 349.269531 225.492188 349.175781 225.585938 349.175781 225.703125 C 349.175781 225.820312 349.269531 225.914062 349.386719 225.914062 C 349.503906 225.914062 349.597656 225.820312 349.597656 225.703125 Z M 349.597656 225.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.523438 225.398438 C 351.523438 225.28125 351.429688 225.1875 351.3125 225.1875 C 351.195312 225.1875 351.101562 225.28125 351.101562 225.398438 C 351.101562 225.515625 351.195312 225.609375 351.3125 225.609375 C 351.429688 225.609375 351.523438 225.515625 351.523438 225.398438 Z M 351.523438 225.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.96875 224.894531 C 355.96875 224.777344 355.875 224.683594 355.757812 224.683594 C 355.640625 224.683594 355.546875 224.777344 355.546875 224.894531 C 355.546875 225.011719 355.640625 225.105469 355.757812 225.105469 C 355.875 225.105469 355.96875 225.011719 355.96875 224.894531 Z M 355.96875 224.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.183594 225.125 C 354.183594 225.007812 354.089844 224.914062 353.972656 224.914062 C 353.855469 224.914062 353.761719 225.007812 353.761719 225.125 C 353.761719 225.242188 353.855469 225.335938 353.972656 225.335938 C 354.089844 225.335938 354.183594 225.242188 354.183594 225.125 Z M 354.183594 225.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 352.433594 223.472656 C 352.433594 223.355469 352.339844 223.261719 352.222656 223.261719 C 352.105469 223.261719 352.011719 223.355469 352.011719 223.472656 C 352.011719 223.589844 352.105469 223.683594 352.222656 223.683594 C 352.339844 223.683594 352.433594 223.589844 352.433594 223.472656 Z M 352.433594 223.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.121094 227.460938 C 354.121094 227.34375 354.027344 227.25 353.910156 227.25 C 353.792969 227.25 353.699219 227.34375 353.699219 227.460938 C 353.699219 227.578125 353.792969 227.671875 353.910156 227.671875 C 354.027344 227.671875 354.121094 227.578125 354.121094 227.460938 Z M 354.121094 227.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.523438 227.363281 C 353.523438 227.246094 353.429688 227.152344 353.3125 227.152344 C 353.195312 227.152344 353.101562 227.246094 353.101562 227.363281 C 353.101562 227.480469 353.195312 227.574219 353.3125 227.574219 C 353.429688 227.574219 353.523438 227.480469 353.523438 227.363281 Z M 353.523438 227.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.988281 225.882812 C 353.988281 225.765625 353.894531 225.671875 353.777344 225.671875 C 353.660156 225.671875 353.566406 225.765625 353.566406 225.882812 C 353.566406 226 353.660156 226.09375 353.777344 226.09375 C 353.894531 226.09375 353.988281 226 353.988281 225.882812 Z M 353.988281 225.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 357.410156 229.027344 C 357.410156 228.910156 357.316406 228.816406 357.199219 228.816406 C 357.082031 228.816406 356.988281 228.910156 356.988281 229.027344 C 356.988281 229.144531 357.082031 229.238281 357.199219 229.238281 C 357.316406 229.238281 357.410156 229.144531 357.410156 229.027344 Z M 357.410156 229.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.90625 231.667969 C 356.90625 231.550781 356.8125 231.457031 356.695312 231.457031 C 356.578125 231.457031 356.484375 231.550781 356.484375 231.667969 C 356.484375 231.785156 356.578125 231.878906 356.695312 231.878906 C 356.8125 231.878906 356.90625 231.785156 356.90625 231.667969 Z M 356.90625 231.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.824219 232.941406 C 358.824219 232.824219 358.730469 232.730469 358.613281 232.730469 C 358.496094 232.730469 358.402344 232.824219 358.402344 232.941406 C 358.402344 233.058594 358.496094 233.152344 358.613281 233.152344 C 358.730469 233.152344 358.824219 233.058594 358.824219 232.941406 Z M 358.824219 232.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.292969 226.214844 C 358.292969 226.097656 358.199219 226.003906 358.082031 226.003906 C 357.964844 226.003906 357.871094 226.097656 357.871094 226.214844 C 357.871094 226.332031 357.964844 226.425781 358.082031 226.425781 C 358.199219 226.425781 358.292969 226.332031 358.292969 226.214844 Z M 358.292969 226.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.480469 226.355469 C 354.480469 226.238281 354.386719 226.144531 354.269531 226.144531 C 354.152344 226.144531 354.058594 226.238281 354.058594 226.355469 C 354.058594 226.472656 354.152344 226.566406 354.269531 226.566406 C 354.386719 226.566406 354.480469 226.472656 354.480469 226.355469 Z M 354.480469 226.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 352.316406 227.890625 C 352.316406 227.773438 352.222656 227.679688 352.105469 227.679688 C 351.988281 227.679688 351.894531 227.773438 351.894531 227.890625 C 351.894531 228.007812 351.988281 228.101562 352.105469 228.101562 C 352.222656 228.101562 352.316406 228.007812 352.316406 227.890625 Z M 352.316406 227.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.792969 225.65625 C 353.792969 225.539062 353.699219 225.445312 353.582031 225.445312 C 353.464844 225.445312 353.371094 225.539062 353.371094 225.65625 C 353.371094 225.773438 353.464844 225.867188 353.582031 225.867188 C 353.699219 225.867188 353.792969 225.773438 353.792969 225.65625 Z M 353.792969 225.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 352.109375 222.175781 C 352.109375 222.058594 352.015625 221.964844 351.898438 221.964844 C 351.78125 221.964844 351.6875 222.058594 351.6875 222.175781 C 351.6875 222.292969 351.78125 222.386719 351.898438 222.386719 C 352.015625 222.386719 352.109375 222.292969 352.109375 222.175781 Z M 352.109375 222.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.128906 220.804688 C 351.128906 220.6875 351.035156 220.59375 350.917969 220.59375 C 350.800781 220.59375 350.707031 220.6875 350.707031 220.804688 C 350.707031 220.921875 350.800781 221.015625 350.917969 221.015625 C 351.035156 221.015625 351.128906 220.921875 351.128906 220.804688 Z M 351.128906 220.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 350.808594 221.171875 C 350.808594 221.054688 350.714844 220.960938 350.597656 220.960938 C 350.480469 220.960938 350.386719 221.054688 350.386719 221.171875 C 350.386719 221.289062 350.480469 221.382812 350.597656 221.382812 C 350.714844 221.382812 350.808594 221.289062 350.808594 221.171875 Z M 350.808594 221.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.105469 221.015625 C 354.105469 220.898438 354.011719 220.804688 353.894531 220.804688 C 353.777344 220.804688 353.683594 220.898438 353.683594 221.015625 C 353.683594 221.132812 353.777344 221.226562 353.894531 221.226562 C 354.011719 221.226562 354.105469 221.132812 354.105469 221.015625 Z M 354.105469 221.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.148438 225.382812 C 355.148438 225.265625 355.054688 225.171875 354.9375 225.171875 C 354.820312 225.171875 354.726562 225.265625 354.726562 225.382812 C 354.726562 225.5 354.820312 225.59375 354.9375 225.59375 C 355.054688 225.59375 355.148438 225.5 355.148438 225.382812 Z M 355.148438 225.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 350.480469 226.097656 C 350.480469 225.980469 350.386719 225.886719 350.269531 225.886719 C 350.152344 225.886719 350.058594 225.980469 350.058594 226.097656 C 350.058594 226.214844 350.152344 226.308594 350.269531 226.308594 C 350.386719 226.308594 350.480469 226.214844 350.480469 226.097656 Z M 350.480469 226.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 350.75 224.132812 C 350.75 224.015625 350.65625 223.921875 350.539062 223.921875 C 350.421875 223.921875 350.328125 224.015625 350.328125 224.132812 C 350.328125 224.25 350.421875 224.34375 350.539062 224.34375 C 350.65625 224.34375 350.75 224.25 350.75 224.132812 Z M 350.75 224.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 349.945312 222.488281 C 349.945312 222.371094 349.851562 222.277344 349.734375 222.277344 C 349.617188 222.277344 349.523438 222.371094 349.523438 222.488281 C 349.523438 222.605469 349.617188 222.699219 349.734375 222.699219 C 349.851562 222.699219 349.945312 222.605469 349.945312 222.488281 Z M 349.945312 222.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.535156 221.152344 C 351.535156 221.035156 351.441406 220.941406 351.324219 220.941406 C 351.207031 220.941406 351.113281 221.035156 351.113281 221.152344 C 351.113281 221.269531 351.207031 221.363281 351.324219 221.363281 C 351.441406 221.363281 351.535156 221.269531 351.535156 221.152344 Z M 351.535156 221.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.113281 219.554688 C 353.113281 219.4375 353.019531 219.34375 352.902344 219.34375 C 352.785156 219.34375 352.691406 219.4375 352.691406 219.554688 C 352.691406 219.671875 352.785156 219.765625 352.902344 219.765625 C 353.019531 219.765625 353.113281 219.671875 353.113281 219.554688 Z M 353.113281 219.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.265625 218.652344 C 351.265625 218.535156 351.171875 218.441406 351.054688 218.441406 C 350.9375 218.441406 350.84375 218.535156 350.84375 218.652344 C 350.84375 218.769531 350.9375 218.863281 351.054688 218.863281 C 351.171875 218.863281 351.265625 218.769531 351.265625 218.652344 Z M 351.265625 218.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.734375 220.289062 C 355.734375 220.171875 355.640625 220.078125 355.523438 220.078125 C 355.40625 220.078125 355.3125 220.171875 355.3125 220.289062 C 355.3125 220.40625 355.40625 220.5 355.523438 220.5 C 355.640625 220.5 355.734375 220.40625 355.734375 220.289062 Z M 355.734375 220.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 357.40625 225.308594 C 357.40625 225.191406 357.3125 225.097656 357.195312 225.097656 C 357.078125 225.097656 356.984375 225.191406 356.984375 225.308594 C 356.984375 225.425781 357.078125 225.519531 357.195312 225.519531 C 357.3125 225.519531 357.40625 225.425781 357.40625 225.308594 Z M 357.40625 225.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.476562 227.914062 C 354.476562 227.796875 354.382812 227.703125 354.265625 227.703125 C 354.148438 227.703125 354.054688 227.796875 354.054688 227.914062 C 354.054688 228.03125 354.148438 228.125 354.265625 228.125 C 354.382812 228.125 354.476562 228.03125 354.476562 227.914062 Z M 354.476562 227.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 352.648438 229.066406 C 352.648438 228.949219 352.554688 228.855469 352.4375 228.855469 C 352.320312 228.855469 352.226562 228.949219 352.226562 229.066406 C 352.226562 229.183594 352.320312 229.277344 352.4375 229.277344 C 352.554688 229.277344 352.648438 229.183594 352.648438 229.066406 Z M 352.648438 229.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 348.632812 227.621094 C 348.632812 227.503906 348.539062 227.410156 348.421875 227.410156 C 348.304688 227.410156 348.210938 227.503906 348.210938 227.621094 C 348.210938 227.738281 348.304688 227.832031 348.421875 227.832031 C 348.539062 227.832031 348.632812 227.738281 348.632812 227.621094 Z M 348.632812 227.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 347.9375 225.777344 C 347.9375 225.660156 347.84375 225.566406 347.726562 225.566406 C 347.609375 225.566406 347.515625 225.660156 347.515625 225.777344 C 347.515625 225.894531 347.609375 225.988281 347.726562 225.988281 C 347.84375 225.988281 347.9375 225.894531 347.9375 225.777344 Z M 347.9375 225.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 349.617188 222.519531 C 349.617188 222.402344 349.523438 222.308594 349.40625 222.308594 C 349.289062 222.308594 349.195312 222.402344 349.195312 222.519531 C 349.195312 222.636719 349.289062 222.730469 349.40625 222.730469 C 349.523438 222.730469 349.617188 222.636719 349.617188 222.519531 Z M 349.617188 222.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 346.25 222.996094 C 346.25 222.878906 346.15625 222.785156 346.039062 222.785156 C 345.921875 222.785156 345.828125 222.878906 345.828125 222.996094 C 345.828125 223.113281 345.921875 223.207031 346.039062 223.207031 C 346.15625 223.207031 346.25 223.113281 346.25 222.996094 Z M 346.25 222.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 349.050781 226.125 C 349.050781 226.007812 348.957031 225.914062 348.839844 225.914062 C 348.722656 225.914062 348.628906 226.007812 348.628906 226.125 C 348.628906 226.242188 348.722656 226.335938 348.839844 226.335938 C 348.957031 226.335938 349.050781 226.242188 349.050781 226.125 Z M 349.050781 226.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 347.21875 227.253906 C 347.21875 227.136719 347.125 227.042969 347.007812 227.042969 C 346.890625 227.042969 346.796875 227.136719 346.796875 227.253906 C 346.796875 227.371094 346.890625 227.464844 347.007812 227.464844 C 347.125 227.464844 347.21875 227.371094 347.21875 227.253906 Z M 347.21875 227.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 348.726562 225.050781 C 348.726562 224.933594 348.632812 224.839844 348.515625 224.839844 C 348.398438 224.839844 348.304688 224.933594 348.304688 225.050781 C 348.304688 225.167969 348.398438 225.261719 348.515625 225.261719 C 348.632812 225.261719 348.726562 225.167969 348.726562 225.050781 Z M 348.726562 225.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 347.328125 222.671875 C 347.328125 222.554688 347.234375 222.460938 347.117188 222.460938 C 347 222.460938 346.90625 222.554688 346.90625 222.671875 C 346.90625 222.789062 347 222.882812 347.117188 222.882812 C 347.234375 222.882812 347.328125 222.789062 347.328125 222.671875 Z M 347.328125 222.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 348.128906 225.578125 C 348.128906 225.460938 348.035156 225.367188 347.917969 225.367188 C 347.800781 225.367188 347.707031 225.460938 347.707031 225.578125 C 347.707031 225.695312 347.800781 225.789062 347.917969 225.789062 C 348.035156 225.789062 348.128906 225.695312 348.128906 225.578125 Z M 348.128906 225.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 349.871094 226.117188 C 349.871094 226 349.777344 225.90625 349.660156 225.90625 C 349.542969 225.90625 349.449219 226 349.449219 226.117188 C 349.449219 226.234375 349.542969 226.328125 349.660156 226.328125 C 349.777344 226.328125 349.871094 226.234375 349.871094 226.117188 Z M 349.871094 226.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 352.136719 228.132812 C 352.136719 228.015625 352.042969 227.921875 351.925781 227.921875 C 351.808594 227.921875 351.714844 228.015625 351.714844 228.132812 C 351.714844 228.25 351.808594 228.34375 351.925781 228.34375 C 352.042969 228.34375 352.136719 228.25 352.136719 228.132812 Z M 352.136719 228.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.976562 228.171875 C 353.976562 228.054688 353.882812 227.960938 353.765625 227.960938 C 353.648438 227.960938 353.554688 228.054688 353.554688 228.171875 C 353.554688 228.289062 353.648438 228.382812 353.765625 228.382812 C 353.882812 228.382812 353.976562 228.289062 353.976562 228.171875 Z M 353.976562 228.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.277344 226.964844 C 354.277344 226.847656 354.183594 226.753906 354.066406 226.753906 C 353.949219 226.753906 353.855469 226.847656 353.855469 226.964844 C 353.855469 227.082031 353.949219 227.175781 354.066406 227.175781 C 354.183594 227.175781 354.277344 227.082031 354.277344 226.964844 Z M 354.277344 226.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.625 230.125 C 354.625 230.007812 354.53125 229.914062 354.414062 229.914062 C 354.296875 229.914062 354.203125 230.007812 354.203125 230.125 C 354.203125 230.242188 354.296875 230.335938 354.414062 230.335938 C 354.53125 230.335938 354.625 230.242188 354.625 230.125 Z M 354.625 230.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.722656 230.597656 C 355.722656 230.480469 355.628906 230.386719 355.511719 230.386719 C 355.394531 230.386719 355.300781 230.480469 355.300781 230.597656 C 355.300781 230.714844 355.394531 230.808594 355.511719 230.808594 C 355.628906 230.808594 355.722656 230.714844 355.722656 230.597656 Z M 355.722656 230.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.171875 228.882812 C 358.171875 228.765625 358.078125 228.671875 357.960938 228.671875 C 357.84375 228.671875 357.75 228.765625 357.75 228.882812 C 357.75 229 357.84375 229.09375 357.960938 229.09375 C 358.078125 229.09375 358.171875 229 358.171875 228.882812 Z M 358.171875 228.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 357.359375 230.507812 C 357.359375 230.390625 357.265625 230.296875 357.148438 230.296875 C 357.03125 230.296875 356.9375 230.390625 356.9375 230.507812 C 356.9375 230.625 357.03125 230.71875 357.148438 230.71875 C 357.265625 230.71875 357.359375 230.625 357.359375 230.507812 Z M 357.359375 230.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 361.957031 228.039062 C 361.957031 227.921875 361.863281 227.828125 361.746094 227.828125 C 361.628906 227.828125 361.535156 227.921875 361.535156 228.039062 C 361.535156 228.15625 361.628906 228.25 361.746094 228.25 C 361.863281 228.25 361.957031 228.15625 361.957031 228.039062 Z M 361.957031 228.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 363.386719 229.941406 C 363.386719 229.824219 363.292969 229.730469 363.175781 229.730469 C 363.058594 229.730469 362.964844 229.824219 362.964844 229.941406 C 362.964844 230.058594 363.058594 230.152344 363.175781 230.152344 C 363.292969 230.152344 363.386719 230.058594 363.386719 229.941406 Z M 363.386719 229.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 361.035156 229.59375 C 361.035156 229.476562 360.941406 229.382812 360.824219 229.382812 C 360.707031 229.382812 360.613281 229.476562 360.613281 229.59375 C 360.613281 229.710938 360.707031 229.804688 360.824219 229.804688 C 360.941406 229.804688 361.035156 229.710938 361.035156 229.59375 Z M 361.035156 229.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 357.589844 230.898438 C 357.589844 230.78125 357.496094 230.6875 357.378906 230.6875 C 357.261719 230.6875 357.167969 230.78125 357.167969 230.898438 C 357.167969 231.015625 357.261719 231.109375 357.378906 231.109375 C 357.496094 231.109375 357.589844 231.015625 357.589844 230.898438 Z M 357.589844 230.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.328125 232.917969 C 356.328125 232.800781 356.234375 232.707031 356.117188 232.707031 C 356 232.707031 355.90625 232.800781 355.90625 232.917969 C 355.90625 233.035156 356 233.128906 356.117188 233.128906 C 356.234375 233.128906 356.328125 233.035156 356.328125 232.917969 Z M 356.328125 232.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.035156 232.902344 C 355.035156 232.785156 354.941406 232.691406 354.824219 232.691406 C 354.707031 232.691406 354.613281 232.785156 354.613281 232.902344 C 354.613281 233.019531 354.707031 233.113281 354.824219 233.113281 C 354.941406 233.113281 355.035156 233.019531 355.035156 232.902344 Z M 355.035156 232.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.113281 234.921875 C 355.113281 234.804688 355.019531 234.710938 354.902344 234.710938 C 354.785156 234.710938 354.691406 234.804688 354.691406 234.921875 C 354.691406 235.039062 354.785156 235.132812 354.902344 235.132812 C 355.019531 235.132812 355.113281 235.039062 355.113281 234.921875 Z M 355.113281 234.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.796875 233.726562 C 354.796875 233.609375 354.703125 233.515625 354.585938 233.515625 C 354.46875 233.515625 354.375 233.609375 354.375 233.726562 C 354.375 233.84375 354.46875 233.9375 354.585938 233.9375 C 354.703125 233.9375 354.796875 233.84375 354.796875 233.726562 Z M 354.796875 233.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.75 235.042969 C 353.75 234.925781 353.65625 234.832031 353.539062 234.832031 C 353.421875 234.832031 353.328125 234.925781 353.328125 235.042969 C 353.328125 235.160156 353.421875 235.253906 353.539062 235.253906 C 353.65625 235.253906 353.75 235.160156 353.75 235.042969 Z M 353.75 235.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.769531 238.277344 C 354.769531 238.160156 354.675781 238.066406 354.558594 238.066406 C 354.441406 238.066406 354.347656 238.160156 354.347656 238.277344 C 354.347656 238.394531 354.441406 238.488281 354.558594 238.488281 C 354.675781 238.488281 354.769531 238.394531 354.769531 238.277344 Z M 354.769531 238.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.253906 238.726562 C 355.253906 238.609375 355.160156 238.515625 355.042969 238.515625 C 354.925781 238.515625 354.832031 238.609375 354.832031 238.726562 C 354.832031 238.84375 354.925781 238.9375 355.042969 238.9375 C 355.160156 238.9375 355.253906 238.84375 355.253906 238.726562 Z M 355.253906 238.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.351562 235.472656 C 354.351562 235.355469 354.257812 235.261719 354.140625 235.261719 C 354.023438 235.261719 353.929688 235.355469 353.929688 235.472656 C 353.929688 235.589844 354.023438 235.683594 354.140625 235.683594 C 354.257812 235.683594 354.351562 235.589844 354.351562 235.472656 Z M 354.351562 235.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.722656 238.664062 C 354.722656 238.546875 354.628906 238.453125 354.511719 238.453125 C 354.394531 238.453125 354.300781 238.546875 354.300781 238.664062 C 354.300781 238.78125 354.394531 238.875 354.511719 238.875 C 354.628906 238.875 354.722656 238.78125 354.722656 238.664062 Z M 354.722656 238.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 357.828125 234.90625 C 357.828125 234.789062 357.734375 234.695312 357.617188 234.695312 C 357.5 234.695312 357.40625 234.789062 357.40625 234.90625 C 357.40625 235.023438 357.5 235.117188 357.617188 235.117188 C 357.734375 235.117188 357.828125 235.023438 357.828125 234.90625 Z M 357.828125 234.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 357.273438 233.359375 C 357.273438 233.242188 357.179688 233.148438 357.0625 233.148438 C 356.945312 233.148438 356.851562 233.242188 356.851562 233.359375 C 356.851562 233.476562 356.945312 233.570312 357.0625 233.570312 C 357.179688 233.570312 357.273438 233.476562 357.273438 233.359375 Z M 357.273438 233.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.113281 234.886719 C 358.113281 234.769531 358.019531 234.675781 357.902344 234.675781 C 357.785156 234.675781 357.691406 234.769531 357.691406 234.886719 C 357.691406 235.003906 357.785156 235.097656 357.902344 235.097656 C 358.019531 235.097656 358.113281 235.003906 358.113281 234.886719 Z M 358.113281 234.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.128906 238.265625 C 354.128906 238.148438 354.035156 238.054688 353.917969 238.054688 C 353.800781 238.054688 353.707031 238.148438 353.707031 238.265625 C 353.707031 238.382812 353.800781 238.476562 353.917969 238.476562 C 354.035156 238.476562 354.128906 238.382812 354.128906 238.265625 Z M 354.128906 238.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.65625 236.28125 C 353.65625 236.164062 353.5625 236.070312 353.445312 236.070312 C 353.328125 236.070312 353.234375 236.164062 353.234375 236.28125 C 353.234375 236.398438 353.328125 236.492188 353.445312 236.492188 C 353.5625 236.492188 353.65625 236.398438 353.65625 236.28125 Z M 353.65625 236.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 346.507812 234.324219 C 346.507812 234.207031 346.414062 234.113281 346.296875 234.113281 C 346.179688 234.113281 346.085938 234.207031 346.085938 234.324219 C 346.085938 234.441406 346.179688 234.535156 346.296875 234.535156 C 346.414062 234.535156 346.507812 234.441406 346.507812 234.324219 Z M 346.507812 234.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 348.621094 231.308594 C 348.621094 231.191406 348.527344 231.097656 348.410156 231.097656 C 348.292969 231.097656 348.199219 231.191406 348.199219 231.308594 C 348.199219 231.425781 348.292969 231.519531 348.410156 231.519531 C 348.527344 231.519531 348.621094 231.425781 348.621094 231.308594 Z M 348.621094 231.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 349.988281 228.902344 C 349.988281 228.785156 349.894531 228.691406 349.777344 228.691406 C 349.660156 228.691406 349.566406 228.785156 349.566406 228.902344 C 349.566406 229.019531 349.660156 229.113281 349.777344 229.113281 C 349.894531 229.113281 349.988281 229.019531 349.988281 228.902344 Z M 349.988281 228.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 352.179688 231.425781 C 352.179688 231.308594 352.085938 231.214844 351.96875 231.214844 C 351.851562 231.214844 351.757812 231.308594 351.757812 231.425781 C 351.757812 231.542969 351.851562 231.636719 351.96875 231.636719 C 352.085938 231.636719 352.179688 231.542969 352.179688 231.425781 Z M 352.179688 231.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 352.59375 231.105469 C 352.59375 230.988281 352.5 230.894531 352.382812 230.894531 C 352.265625 230.894531 352.171875 230.988281 352.171875 231.105469 C 352.171875 231.222656 352.265625 231.316406 352.382812 231.316406 C 352.5 231.316406 352.59375 231.222656 352.59375 231.105469 Z M 352.59375 231.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.929688 229.332031 C 353.929688 229.214844 353.835938 229.121094 353.71875 229.121094 C 353.601562 229.121094 353.507812 229.214844 353.507812 229.332031 C 353.507812 229.449219 353.601562 229.542969 353.71875 229.542969 C 353.835938 229.542969 353.929688 229.449219 353.929688 229.332031 Z M 353.929688 229.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 352.757812 227.5625 C 352.757812 227.445312 352.664062 227.351562 352.546875 227.351562 C 352.429688 227.351562 352.335938 227.445312 352.335938 227.5625 C 352.335938 227.679688 352.429688 227.773438 352.546875 227.773438 C 352.664062 227.773438 352.757812 227.679688 352.757812 227.5625 Z M 352.757812 227.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.75 230.128906 C 356.75 230.011719 356.65625 229.917969 356.539062 229.917969 C 356.421875 229.917969 356.328125 230.011719 356.328125 230.128906 C 356.328125 230.246094 356.421875 230.339844 356.539062 230.339844 C 356.65625 230.339844 356.75 230.246094 356.75 230.128906 Z M 356.75 230.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.683594 228.59375 C 356.683594 228.476562 356.589844 228.382812 356.472656 228.382812 C 356.355469 228.382812 356.261719 228.476562 356.261719 228.59375 C 356.261719 228.710938 356.355469 228.804688 356.472656 228.804688 C 356.589844 228.804688 356.683594 228.710938 356.683594 228.59375 Z M 356.683594 228.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.878906 227.5625 C 356.878906 227.445312 356.785156 227.351562 356.667969 227.351562 C 356.550781 227.351562 356.457031 227.445312 356.457031 227.5625 C 356.457031 227.679688 356.550781 227.773438 356.667969 227.773438 C 356.785156 227.773438 356.878906 227.679688 356.878906 227.5625 Z M 356.878906 227.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.742188 224.761719 C 355.742188 224.644531 355.648438 224.550781 355.53125 224.550781 C 355.414062 224.550781 355.320312 224.644531 355.320312 224.761719 C 355.320312 224.878906 355.414062 224.972656 355.53125 224.972656 C 355.648438 224.972656 355.742188 224.878906 355.742188 224.761719 Z M 355.742188 224.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.027344 223.75 C 351.027344 223.632812 350.933594 223.539062 350.816406 223.539062 C 350.699219 223.539062 350.605469 223.632812 350.605469 223.75 C 350.605469 223.867188 350.699219 223.960938 350.816406 223.960938 C 350.933594 223.960938 351.027344 223.867188 351.027344 223.75 Z M 351.027344 223.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 352.460938 226.164062 C 352.460938 226.046875 352.367188 225.953125 352.25 225.953125 C 352.132812 225.953125 352.039062 226.046875 352.039062 226.164062 C 352.039062 226.28125 352.132812 226.375 352.25 226.375 C 352.367188 226.375 352.460938 226.28125 352.460938 226.164062 Z M 352.460938 226.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 350.710938 226.542969 C 350.710938 226.425781 350.617188 226.332031 350.5 226.332031 C 350.382812 226.332031 350.289062 226.425781 350.289062 226.542969 C 350.289062 226.660156 350.382812 226.753906 350.5 226.753906 C 350.617188 226.753906 350.710938 226.660156 350.710938 226.542969 Z M 350.710938 226.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 349.746094 227.917969 C 349.746094 227.800781 349.652344 227.707031 349.535156 227.707031 C 349.417969 227.707031 349.324219 227.800781 349.324219 227.917969 C 349.324219 228.035156 349.417969 228.128906 349.535156 228.128906 C 349.652344 228.128906 349.746094 228.035156 349.746094 227.917969 Z M 349.746094 227.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 352.84375 225.757812 C 352.84375 225.640625 352.75 225.546875 352.632812 225.546875 C 352.515625 225.546875 352.421875 225.640625 352.421875 225.757812 C 352.421875 225.875 352.515625 225.96875 352.632812 225.96875 C 352.75 225.96875 352.84375 225.875 352.84375 225.757812 Z M 352.84375 225.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.828125 226.28125 C 353.828125 226.164062 353.734375 226.070312 353.617188 226.070312 C 353.5 226.070312 353.40625 226.164062 353.40625 226.28125 C 353.40625 226.398438 353.5 226.492188 353.617188 226.492188 C 353.734375 226.492188 353.828125 226.398438 353.828125 226.28125 Z M 353.828125 226.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.007812 223.199219 C 353.007812 223.082031 352.914062 222.988281 352.796875 222.988281 C 352.679688 222.988281 352.585938 223.082031 352.585938 223.199219 C 352.585938 223.316406 352.679688 223.410156 352.796875 223.410156 C 352.914062 223.410156 353.007812 223.316406 353.007812 223.199219 Z M 353.007812 223.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 349.855469 222.296875 C 349.855469 222.179688 349.761719 222.085938 349.644531 222.085938 C 349.527344 222.085938 349.433594 222.179688 349.433594 222.296875 C 349.433594 222.414062 349.527344 222.507812 349.644531 222.507812 C 349.761719 222.507812 349.855469 222.414062 349.855469 222.296875 Z M 349.855469 222.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.671875 224.625 C 351.671875 224.507812 351.578125 224.414062 351.460938 224.414062 C 351.34375 224.414062 351.25 224.507812 351.25 224.625 C 351.25 224.742188 351.34375 224.835938 351.460938 224.835938 C 351.578125 224.835938 351.671875 224.742188 351.671875 224.625 Z M 351.671875 224.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.824219 225.914062 C 351.824219 225.796875 351.730469 225.703125 351.613281 225.703125 C 351.496094 225.703125 351.402344 225.796875 351.402344 225.914062 C 351.402344 226.03125 351.496094 226.125 351.613281 226.125 C 351.730469 226.125 351.824219 226.03125 351.824219 225.914062 Z M 351.824219 225.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.316406 222.964844 C 351.316406 222.847656 351.222656 222.753906 351.105469 222.753906 C 350.988281 222.753906 350.894531 222.847656 350.894531 222.964844 C 350.894531 223.082031 350.988281 223.175781 351.105469 223.175781 C 351.222656 223.175781 351.316406 223.082031 351.316406 222.964844 Z M 351.316406 222.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.523438 224.675781 C 354.523438 224.558594 354.429688 224.464844 354.3125 224.464844 C 354.195312 224.464844 354.101562 224.558594 354.101562 224.675781 C 354.101562 224.792969 354.195312 224.886719 354.3125 224.886719 C 354.429688 224.886719 354.523438 224.792969 354.523438 224.675781 Z M 354.523438 224.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.828125 223.53125 C 358.828125 223.414062 358.734375 223.320312 358.617188 223.320312 C 358.5 223.320312 358.40625 223.414062 358.40625 223.53125 C 358.40625 223.648438 358.5 223.742188 358.617188 223.742188 C 358.734375 223.742188 358.828125 223.648438 358.828125 223.53125 Z M 358.828125 223.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 360.273438 224.144531 C 360.273438 224.027344 360.179688 223.933594 360.0625 223.933594 C 359.945312 223.933594 359.851562 224.027344 359.851562 224.144531 C 359.851562 224.261719 359.945312 224.355469 360.0625 224.355469 C 360.179688 224.355469 360.273438 224.261719 360.273438 224.144531 Z M 360.273438 224.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.367188 225.25 C 358.367188 225.132812 358.273438 225.039062 358.15625 225.039062 C 358.039062 225.039062 357.945312 225.132812 357.945312 225.25 C 357.945312 225.367188 358.039062 225.460938 358.15625 225.460938 C 358.273438 225.460938 358.367188 225.367188 358.367188 225.25 Z M 358.367188 225.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 359.640625 223.96875 C 359.640625 223.851562 359.546875 223.757812 359.429688 223.757812 C 359.3125 223.757812 359.21875 223.851562 359.21875 223.96875 C 359.21875 224.085938 359.3125 224.179688 359.429688 224.179688 C 359.546875 224.179688 359.640625 224.085938 359.640625 223.96875 Z M 359.640625 223.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 359.75 226.261719 C 359.75 226.144531 359.65625 226.050781 359.539062 226.050781 C 359.421875 226.050781 359.328125 226.144531 359.328125 226.261719 C 359.328125 226.378906 359.421875 226.472656 359.539062 226.472656 C 359.65625 226.472656 359.75 226.378906 359.75 226.261719 Z M 359.75 226.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 361.03125 227.636719 C 361.03125 227.519531 360.9375 227.425781 360.820312 227.425781 C 360.703125 227.425781 360.609375 227.519531 360.609375 227.636719 C 360.609375 227.753906 360.703125 227.847656 360.820312 227.847656 C 360.9375 227.847656 361.03125 227.753906 361.03125 227.636719 Z M 361.03125 227.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 359.859375 230.644531 C 359.859375 230.527344 359.765625 230.433594 359.648438 230.433594 C 359.53125 230.433594 359.4375 230.527344 359.4375 230.644531 C 359.4375 230.761719 359.53125 230.855469 359.648438 230.855469 C 359.765625 230.855469 359.859375 230.761719 359.859375 230.644531 Z M 359.859375 230.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 360.757812 230.375 C 360.757812 230.257812 360.664062 230.164062 360.546875 230.164062 C 360.429688 230.164062 360.335938 230.257812 360.335938 230.375 C 360.335938 230.492188 360.429688 230.585938 360.546875 230.585938 C 360.664062 230.585938 360.757812 230.492188 360.757812 230.375 Z M 360.757812 230.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 360.113281 230.964844 C 360.113281 230.847656 360.019531 230.753906 359.902344 230.753906 C 359.785156 230.753906 359.691406 230.847656 359.691406 230.964844 C 359.691406 231.082031 359.785156 231.175781 359.902344 231.175781 C 360.019531 231.175781 360.113281 231.082031 360.113281 230.964844 Z M 360.113281 230.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 362.21875 228.4375 C 362.21875 228.320312 362.125 228.226562 362.007812 228.226562 C 361.890625 228.226562 361.796875 228.320312 361.796875 228.4375 C 361.796875 228.554688 361.890625 228.648438 362.007812 228.648438 C 362.125 228.648438 362.21875 228.554688 362.21875 228.4375 Z M 362.21875 228.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 360.761719 229.605469 C 360.761719 229.488281 360.667969 229.394531 360.550781 229.394531 C 360.433594 229.394531 360.339844 229.488281 360.339844 229.605469 C 360.339844 229.722656 360.433594 229.816406 360.550781 229.816406 C 360.667969 229.816406 360.761719 229.722656 360.761719 229.605469 Z M 360.761719 229.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 361.113281 225.894531 C 361.113281 225.777344 361.019531 225.683594 360.902344 225.683594 C 360.785156 225.683594 360.691406 225.777344 360.691406 225.894531 C 360.691406 226.011719 360.785156 226.105469 360.902344 226.105469 C 361.019531 226.105469 361.113281 226.011719 361.113281 225.894531 Z M 361.113281 225.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.640625 227.074219 C 358.640625 226.957031 358.546875 226.863281 358.429688 226.863281 C 358.3125 226.863281 358.21875 226.957031 358.21875 227.074219 C 358.21875 227.191406 358.3125 227.285156 358.429688 227.285156 C 358.546875 227.285156 358.640625 227.191406 358.640625 227.074219 Z M 358.640625 227.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.90625 228.800781 C 356.90625 228.683594 356.8125 228.589844 356.695312 228.589844 C 356.578125 228.589844 356.484375 228.683594 356.484375 228.800781 C 356.484375 228.917969 356.578125 229.011719 356.695312 229.011719 C 356.8125 229.011719 356.90625 228.917969 356.90625 228.800781 Z M 356.90625 228.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.941406 232.632812 C 355.941406 232.515625 355.847656 232.421875 355.730469 232.421875 C 355.613281 232.421875 355.519531 232.515625 355.519531 232.632812 C 355.519531 232.75 355.613281 232.84375 355.730469 232.84375 C 355.847656 232.84375 355.941406 232.75 355.941406 232.632812 Z M 355.941406 232.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.230469 237.636719 C 354.230469 237.519531 354.136719 237.425781 354.019531 237.425781 C 353.902344 237.425781 353.808594 237.519531 353.808594 237.636719 C 353.808594 237.753906 353.902344 237.847656 354.019531 237.847656 C 354.136719 237.847656 354.230469 237.753906 354.230469 237.636719 Z M 354.230469 237.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.644531 238.632812 C 353.644531 238.515625 353.550781 238.421875 353.433594 238.421875 C 353.316406 238.421875 353.222656 238.515625 353.222656 238.632812 C 353.222656 238.75 353.316406 238.84375 353.433594 238.84375 C 353.550781 238.84375 353.644531 238.75 353.644531 238.632812 Z M 353.644531 238.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.09375 237.128906 C 353.09375 237.011719 353 236.917969 352.882812 236.917969 C 352.765625 236.917969 352.671875 237.011719 352.671875 237.128906 C 352.671875 237.246094 352.765625 237.339844 352.882812 237.339844 C 353 237.339844 353.09375 237.246094 353.09375 237.128906 Z M 353.09375 237.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 349.960938 234.445312 C 349.960938 234.328125 349.867188 234.234375 349.75 234.234375 C 349.632812 234.234375 349.539062 234.328125 349.539062 234.445312 C 349.539062 234.5625 349.632812 234.65625 349.75 234.65625 C 349.867188 234.65625 349.960938 234.5625 349.960938 234.445312 Z M 349.960938 234.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 348.761719 239.0625 C 348.761719 238.945312 348.667969 238.851562 348.550781 238.851562 C 348.433594 238.851562 348.339844 238.945312 348.339844 239.0625 C 348.339844 239.179688 348.433594 239.273438 348.550781 239.273438 C 348.667969 239.273438 348.761719 239.179688 348.761719 239.0625 Z M 348.761719 239.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 346.644531 237.746094 C 346.644531 237.628906 346.550781 237.535156 346.433594 237.535156 C 346.316406 237.535156 346.222656 237.628906 346.222656 237.746094 C 346.222656 237.863281 346.316406 237.957031 346.433594 237.957031 C 346.550781 237.957031 346.644531 237.863281 346.644531 237.746094 Z M 346.644531 237.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 345.707031 238.636719 C 345.707031 238.519531 345.613281 238.425781 345.496094 238.425781 C 345.378906 238.425781 345.285156 238.519531 345.285156 238.636719 C 345.285156 238.753906 345.378906 238.847656 345.496094 238.847656 C 345.613281 238.847656 345.707031 238.753906 345.707031 238.636719 Z M 345.707031 238.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 346.851562 234.507812 C 346.851562 234.390625 346.757812 234.296875 346.640625 234.296875 C 346.523438 234.296875 346.429688 234.390625 346.429688 234.507812 C 346.429688 234.625 346.523438 234.71875 346.640625 234.71875 C 346.757812 234.71875 346.851562 234.625 346.851562 234.507812 Z M 346.851562 234.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 346.992188 235.847656 C 346.992188 235.730469 346.898438 235.636719 346.78125 235.636719 C 346.664062 235.636719 346.570312 235.730469 346.570312 235.847656 C 346.570312 235.964844 346.664062 236.058594 346.78125 236.058594 C 346.898438 236.058594 346.992188 235.964844 346.992188 235.847656 Z M 346.992188 235.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 347.972656 242.742188 C 347.972656 242.625 347.878906 242.53125 347.761719 242.53125 C 347.644531 242.53125 347.550781 242.625 347.550781 242.742188 C 347.550781 242.859375 347.644531 242.953125 347.761719 242.953125 C 347.878906 242.953125 347.972656 242.859375 347.972656 242.742188 Z M 347.972656 242.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 346.324219 239.574219 C 346.324219 239.457031 346.230469 239.363281 346.113281 239.363281 C 345.996094 239.363281 345.902344 239.457031 345.902344 239.574219 C 345.902344 239.691406 345.996094 239.785156 346.113281 239.785156 C 346.230469 239.785156 346.324219 239.691406 346.324219 239.574219 Z M 346.324219 239.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 346.824219 240.5625 C 346.824219 240.445312 346.730469 240.351562 346.613281 240.351562 C 346.496094 240.351562 346.402344 240.445312 346.402344 240.5625 C 346.402344 240.679688 346.496094 240.773438 346.613281 240.773438 C 346.730469 240.773438 346.824219 240.679688 346.824219 240.5625 Z M 346.824219 240.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 349.246094 238.0625 C 349.246094 237.945312 349.152344 237.851562 349.035156 237.851562 C 348.917969 237.851562 348.824219 237.945312 348.824219 238.0625 C 348.824219 238.179688 348.917969 238.273438 349.035156 238.273438 C 349.152344 238.273438 349.246094 238.179688 349.246094 238.0625 Z M 349.246094 238.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 350.773438 234.230469 C 350.773438 234.113281 350.679688 234.019531 350.5625 234.019531 C 350.445312 234.019531 350.351562 234.113281 350.351562 234.230469 C 350.351562 234.347656 350.445312 234.441406 350.5625 234.441406 C 350.679688 234.441406 350.773438 234.347656 350.773438 234.230469 Z M 350.773438 234.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 352.796875 238.527344 C 352.796875 238.410156 352.703125 238.316406 352.585938 238.316406 C 352.46875 238.316406 352.375 238.410156 352.375 238.527344 C 352.375 238.644531 352.46875 238.738281 352.585938 238.738281 C 352.703125 238.738281 352.796875 238.644531 352.796875 238.527344 Z M 352.796875 238.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.59375 239.753906 C 354.59375 239.636719 354.5 239.542969 354.382812 239.542969 C 354.265625 239.542969 354.171875 239.636719 354.171875 239.753906 C 354.171875 239.871094 354.265625 239.964844 354.382812 239.964844 C 354.5 239.964844 354.59375 239.871094 354.59375 239.753906 Z M 354.59375 239.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 352.828125 236.441406 C 352.828125 236.324219 352.734375 236.230469 352.617188 236.230469 C 352.5 236.230469 352.40625 236.324219 352.40625 236.441406 C 352.40625 236.558594 352.5 236.652344 352.617188 236.652344 C 352.734375 236.652344 352.828125 236.558594 352.828125 236.441406 Z M 352.828125 236.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.546875 236.515625 C 354.546875 236.398438 354.453125 236.304688 354.335938 236.304688 C 354.21875 236.304688 354.125 236.398438 354.125 236.515625 C 354.125 236.632812 354.21875 236.726562 354.335938 236.726562 C 354.453125 236.726562 354.546875 236.632812 354.546875 236.515625 Z M 354.546875 236.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 357.902344 236.730469 C 357.902344 236.613281 357.808594 236.519531 357.691406 236.519531 C 357.574219 236.519531 357.480469 236.613281 357.480469 236.730469 C 357.480469 236.847656 357.574219 236.941406 357.691406 236.941406 C 357.808594 236.941406 357.902344 236.847656 357.902344 236.730469 Z M 357.902344 236.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 360.699219 235.914062 C 360.699219 235.796875 360.605469 235.703125 360.488281 235.703125 C 360.371094 235.703125 360.277344 235.796875 360.277344 235.914062 C 360.277344 236.03125 360.371094 236.125 360.488281 236.125 C 360.605469 236.125 360.699219 236.03125 360.699219 235.914062 Z M 360.699219 235.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.179688 237.707031 C 358.179688 237.589844 358.085938 237.496094 357.96875 237.496094 C 357.851562 237.496094 357.757812 237.589844 357.757812 237.707031 C 357.757812 237.824219 357.851562 237.917969 357.96875 237.917969 C 358.085938 237.917969 358.179688 237.824219 358.179688 237.707031 Z M 358.179688 237.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 361.972656 242.972656 C 361.972656 242.855469 361.878906 242.761719 361.761719 242.761719 C 361.644531 242.761719 361.550781 242.855469 361.550781 242.972656 C 361.550781 243.089844 361.644531 243.183594 361.761719 243.183594 C 361.878906 243.183594 361.972656 243.089844 361.972656 242.972656 Z M 361.972656 242.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 365.640625 245.007812 C 365.640625 244.890625 365.546875 244.796875 365.429688 244.796875 C 365.3125 244.796875 365.21875 244.890625 365.21875 245.007812 C 365.21875 245.125 365.3125 245.21875 365.429688 245.21875 C 365.546875 245.21875 365.640625 245.125 365.640625 245.007812 Z M 365.640625 245.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 361.457031 245.027344 C 361.457031 244.910156 361.363281 244.816406 361.246094 244.816406 C 361.128906 244.816406 361.035156 244.910156 361.035156 245.027344 C 361.035156 245.144531 361.128906 245.238281 361.246094 245.238281 C 361.363281 245.238281 361.457031 245.144531 361.457031 245.027344 Z M 361.457031 245.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 359.195312 247.332031 C 359.195312 247.214844 359.101562 247.121094 358.984375 247.121094 C 358.867188 247.121094 358.773438 247.214844 358.773438 247.332031 C 358.773438 247.449219 358.867188 247.542969 358.984375 247.542969 C 359.101562 247.542969 359.195312 247.449219 359.195312 247.332031 Z M 359.195312 247.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 359.628906 245.40625 C 359.628906 245.289062 359.535156 245.195312 359.417969 245.195312 C 359.300781 245.195312 359.207031 245.289062 359.207031 245.40625 C 359.207031 245.523438 359.300781 245.617188 359.417969 245.617188 C 359.535156 245.617188 359.628906 245.523438 359.628906 245.40625 Z M 359.628906 245.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 357.683594 244.664062 C 357.683594 244.546875 357.589844 244.453125 357.472656 244.453125 C 357.355469 244.453125 357.261719 244.546875 357.261719 244.664062 C 357.261719 244.78125 357.355469 244.875 357.472656 244.875 C 357.589844 244.875 357.683594 244.78125 357.683594 244.664062 Z M 357.683594 244.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.636719 242.117188 C 356.636719 242 356.542969 241.90625 356.425781 241.90625 C 356.308594 241.90625 356.214844 242 356.214844 242.117188 C 356.214844 242.234375 356.308594 242.328125 356.425781 242.328125 C 356.542969 242.328125 356.636719 242.234375 356.636719 242.117188 Z M 356.636719 242.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.851562 243.03125 C 356.851562 242.914062 356.757812 242.820312 356.640625 242.820312 C 356.523438 242.820312 356.429688 242.914062 356.429688 243.03125 C 356.429688 243.148438 356.523438 243.242188 356.640625 243.242188 C 356.757812 243.242188 356.851562 243.148438 356.851562 243.03125 Z M 356.851562 243.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.25 241.65625 C 351.25 241.539062 351.15625 241.445312 351.039062 241.445312 C 350.921875 241.445312 350.828125 241.539062 350.828125 241.65625 C 350.828125 241.773438 350.921875 241.867188 351.039062 241.867188 C 351.15625 241.867188 351.25 241.773438 351.25 241.65625 Z M 351.25 241.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 352.089844 240.628906 C 352.089844 240.511719 351.996094 240.417969 351.878906 240.417969 C 351.761719 240.417969 351.667969 240.511719 351.667969 240.628906 C 351.667969 240.746094 351.761719 240.839844 351.878906 240.839844 C 351.996094 240.839844 352.089844 240.746094 352.089844 240.628906 Z M 352.089844 240.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.976562 238.382812 C 356.976562 238.265625 356.882812 238.171875 356.765625 238.171875 C 356.648438 238.171875 356.554688 238.265625 356.554688 238.382812 C 356.554688 238.5 356.648438 238.59375 356.765625 238.59375 C 356.882812 238.59375 356.976562 238.5 356.976562 238.382812 Z M 356.976562 238.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 357.363281 238.46875 C 357.363281 238.351562 357.269531 238.257812 357.152344 238.257812 C 357.035156 238.257812 356.941406 238.351562 356.941406 238.46875 C 356.941406 238.585938 357.035156 238.679688 357.152344 238.679688 C 357.269531 238.679688 357.363281 238.585938 357.363281 238.46875 Z M 357.363281 238.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.148438 235.996094 C 358.148438 235.878906 358.054688 235.785156 357.9375 235.785156 C 357.820312 235.785156 357.726562 235.878906 357.726562 235.996094 C 357.726562 236.113281 357.820312 236.207031 357.9375 236.207031 C 358.054688 236.207031 358.148438 236.113281 358.148438 235.996094 Z M 358.148438 235.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.703125 235.566406 C 354.703125 235.449219 354.609375 235.355469 354.492188 235.355469 C 354.375 235.355469 354.28125 235.449219 354.28125 235.566406 C 354.28125 235.683594 354.375 235.777344 354.492188 235.777344 C 354.609375 235.777344 354.703125 235.683594 354.703125 235.566406 Z M 354.703125 235.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.046875 236.675781 C 354.046875 236.558594 353.953125 236.464844 353.835938 236.464844 C 353.71875 236.464844 353.625 236.558594 353.625 236.675781 C 353.625 236.792969 353.71875 236.886719 353.835938 236.886719 C 353.953125 236.886719 354.046875 236.792969 354.046875 236.675781 Z M 354.046875 236.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.914062 235.359375 C 355.914062 235.242188 355.820312 235.148438 355.703125 235.148438 C 355.585938 235.148438 355.492188 235.242188 355.492188 235.359375 C 355.492188 235.476562 355.585938 235.570312 355.703125 235.570312 C 355.820312 235.570312 355.914062 235.476562 355.914062 235.359375 Z M 355.914062 235.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.5 233.144531 C 355.5 233.027344 355.40625 232.933594 355.289062 232.933594 C 355.171875 232.933594 355.078125 233.027344 355.078125 233.144531 C 355.078125 233.261719 355.171875 233.355469 355.289062 233.355469 C 355.40625 233.355469 355.5 233.261719 355.5 233.144531 Z M 355.5 233.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.699219 233.667969 C 355.699219 233.550781 355.605469 233.457031 355.488281 233.457031 C 355.371094 233.457031 355.277344 233.550781 355.277344 233.667969 C 355.277344 233.785156 355.371094 233.878906 355.488281 233.878906 C 355.605469 233.878906 355.699219 233.785156 355.699219 233.667969 Z M 355.699219 233.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.898438 233.09375 C 355.898438 232.976562 355.804688 232.882812 355.6875 232.882812 C 355.570312 232.882812 355.476562 232.976562 355.476562 233.09375 C 355.476562 233.210938 355.570312 233.304688 355.6875 233.304688 C 355.804688 233.304688 355.898438 233.210938 355.898438 233.09375 Z M 355.898438 233.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 357.730469 235.769531 C 357.730469 235.652344 357.636719 235.558594 357.519531 235.558594 C 357.402344 235.558594 357.308594 235.652344 357.308594 235.769531 C 357.308594 235.886719 357.402344 235.980469 357.519531 235.980469 C 357.636719 235.980469 357.730469 235.886719 357.730469 235.769531 Z M 357.730469 235.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.863281 236.183594 C 353.863281 236.066406 353.769531 235.972656 353.652344 235.972656 C 353.535156 235.972656 353.441406 236.066406 353.441406 236.183594 C 353.441406 236.300781 353.535156 236.394531 353.652344 236.394531 C 353.769531 236.394531 353.863281 236.300781 353.863281 236.183594 Z M 353.863281 236.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.941406 235.230469 C 354.941406 235.113281 354.847656 235.019531 354.730469 235.019531 C 354.613281 235.019531 354.519531 235.113281 354.519531 235.230469 C 354.519531 235.347656 354.613281 235.441406 354.730469 235.441406 C 354.847656 235.441406 354.941406 235.347656 354.941406 235.230469 Z M 354.941406 235.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 357.214844 233.46875 C 357.214844 233.351562 357.121094 233.257812 357.003906 233.257812 C 356.886719 233.257812 356.792969 233.351562 356.792969 233.46875 C 356.792969 233.585938 356.886719 233.679688 357.003906 233.679688 C 357.121094 233.679688 357.214844 233.585938 357.214844 233.46875 Z M 357.214844 233.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 357.976562 233.488281 C 357.976562 233.371094 357.882812 233.277344 357.765625 233.277344 C 357.648438 233.277344 357.554688 233.371094 357.554688 233.488281 C 357.554688 233.605469 357.648438 233.699219 357.765625 233.699219 C 357.882812 233.699219 357.976562 233.605469 357.976562 233.488281 Z M 357.976562 233.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.078125 234.660156 C 358.078125 234.542969 357.984375 234.449219 357.867188 234.449219 C 357.75 234.449219 357.65625 234.542969 357.65625 234.660156 C 357.65625 234.777344 357.75 234.871094 357.867188 234.871094 C 357.984375 234.871094 358.078125 234.777344 358.078125 234.660156 Z M 358.078125 234.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 359.546875 232.109375 C 359.546875 231.992188 359.453125 231.898438 359.335938 231.898438 C 359.21875 231.898438 359.125 231.992188 359.125 232.109375 C 359.125 232.226562 359.21875 232.320312 359.335938 232.320312 C 359.453125 232.320312 359.546875 232.226562 359.546875 232.109375 Z M 359.546875 232.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 359.238281 234.089844 C 359.238281 233.972656 359.144531 233.878906 359.027344 233.878906 C 358.910156 233.878906 358.816406 233.972656 358.816406 234.089844 C 358.816406 234.207031 358.910156 234.300781 359.027344 234.300781 C 359.144531 234.300781 359.238281 234.207031 359.238281 234.089844 Z M 359.238281 234.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.503906 231.417969 C 355.503906 231.300781 355.410156 231.207031 355.292969 231.207031 C 355.175781 231.207031 355.082031 231.300781 355.082031 231.417969 C 355.082031 231.535156 355.175781 231.628906 355.292969 231.628906 C 355.410156 231.628906 355.503906 231.535156 355.503906 231.417969 Z M 355.503906 231.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 357.414062 232.488281 C 357.414062 232.371094 357.320312 232.277344 357.203125 232.277344 C 357.085938 232.277344 356.992188 232.371094 356.992188 232.488281 C 356.992188 232.605469 357.085938 232.699219 357.203125 232.699219 C 357.320312 232.699219 357.414062 232.605469 357.414062 232.488281 Z M 357.414062 232.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.441406 231.957031 C 355.441406 231.839844 355.347656 231.746094 355.230469 231.746094 C 355.113281 231.746094 355.019531 231.839844 355.019531 231.957031 C 355.019531 232.074219 355.113281 232.167969 355.230469 232.167969 C 355.347656 232.167969 355.441406 232.074219 355.441406 231.957031 Z M 355.441406 231.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.085938 231.882812 C 354.085938 231.765625 353.992188 231.671875 353.875 231.671875 C 353.757812 231.671875 353.664062 231.765625 353.664062 231.882812 C 353.664062 232 353.757812 232.09375 353.875 232.09375 C 353.992188 232.09375 354.085938 232 354.085938 231.882812 Z M 354.085938 231.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.558594 231.796875 C 353.558594 231.679688 353.464844 231.585938 353.347656 231.585938 C 353.230469 231.585938 353.136719 231.679688 353.136719 231.796875 C 353.136719 231.914062 353.230469 232.007812 353.347656 232.007812 C 353.464844 232.007812 353.558594 231.914062 353.558594 231.796875 Z M 353.558594 231.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.863281 228.566406 C 353.863281 228.449219 353.769531 228.355469 353.652344 228.355469 C 353.535156 228.355469 353.441406 228.449219 353.441406 228.566406 C 353.441406 228.683594 353.535156 228.777344 353.652344 228.777344 C 353.769531 228.777344 353.863281 228.683594 353.863281 228.566406 Z M 353.863281 228.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.921875 227.960938 C 353.921875 227.84375 353.828125 227.75 353.710938 227.75 C 353.59375 227.75 353.5 227.84375 353.5 227.960938 C 353.5 228.078125 353.59375 228.171875 353.710938 228.171875 C 353.828125 228.171875 353.921875 228.078125 353.921875 227.960938 Z M 353.921875 227.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.292969 228.746094 C 353.292969 228.628906 353.199219 228.535156 353.082031 228.535156 C 352.964844 228.535156 352.871094 228.628906 352.871094 228.746094 C 352.871094 228.863281 352.964844 228.957031 353.082031 228.957031 C 353.199219 228.957031 353.292969 228.863281 353.292969 228.746094 Z M 353.292969 228.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.6875 231.75 C 354.6875 231.632812 354.59375 231.539062 354.476562 231.539062 C 354.359375 231.539062 354.265625 231.632812 354.265625 231.75 C 354.265625 231.867188 354.359375 231.960938 354.476562 231.960938 C 354.59375 231.960938 354.6875 231.867188 354.6875 231.75 Z M 354.6875 231.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.574219 230.625 C 351.574219 230.507812 351.480469 230.414062 351.363281 230.414062 C 351.246094 230.414062 351.152344 230.507812 351.152344 230.625 C 351.152344 230.742188 351.246094 230.835938 351.363281 230.835938 C 351.480469 230.835938 351.574219 230.742188 351.574219 230.625 Z M 351.574219 230.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 349.839844 232.132812 C 349.839844 232.015625 349.746094 231.921875 349.628906 231.921875 C 349.511719 231.921875 349.417969 232.015625 349.417969 232.132812 C 349.417969 232.25 349.511719 232.34375 349.628906 232.34375 C 349.746094 232.34375 349.839844 232.25 349.839844 232.132812 Z M 349.839844 232.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 347.339844 232.703125 C 347.339844 232.585938 347.246094 232.492188 347.128906 232.492188 C 347.011719 232.492188 346.917969 232.585938 346.917969 232.703125 C 346.917969 232.820312 347.011719 232.914062 347.128906 232.914062 C 347.246094 232.914062 347.339844 232.820312 347.339844 232.703125 Z M 347.339844 232.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 347.605469 232.078125 C 347.605469 231.960938 347.511719 231.867188 347.394531 231.867188 C 347.277344 231.867188 347.183594 231.960938 347.183594 232.078125 C 347.183594 232.195312 347.277344 232.289062 347.394531 232.289062 C 347.511719 232.289062 347.605469 232.195312 347.605469 232.078125 Z M 347.605469 232.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 348.078125 234.078125 C 348.078125 233.960938 347.984375 233.867188 347.867188 233.867188 C 347.75 233.867188 347.65625 233.960938 347.65625 234.078125 C 347.65625 234.195312 347.75 234.289062 347.867188 234.289062 C 347.984375 234.289062 348.078125 234.195312 348.078125 234.078125 Z M 348.078125 234.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 347.464844 233.625 C 347.464844 233.507812 347.371094 233.414062 347.253906 233.414062 C 347.136719 233.414062 347.042969 233.507812 347.042969 233.625 C 347.042969 233.742188 347.136719 233.835938 347.253906 233.835938 C 347.371094 233.835938 347.464844 233.742188 347.464844 233.625 Z M 347.464844 233.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 352.898438 232.765625 C 352.898438 232.648438 352.804688 232.554688 352.6875 232.554688 C 352.570312 232.554688 352.476562 232.648438 352.476562 232.765625 C 352.476562 232.882812 352.570312 232.976562 352.6875 232.976562 C 352.804688 232.976562 352.898438 232.882812 352.898438 232.765625 Z M 352.898438 232.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.507812 231.003906 C 351.507812 230.886719 351.414062 230.792969 351.296875 230.792969 C 351.179688 230.792969 351.085938 230.886719 351.085938 231.003906 C 351.085938 231.121094 351.179688 231.214844 351.296875 231.214844 C 351.414062 231.214844 351.507812 231.121094 351.507812 231.003906 Z M 351.507812 231.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.007812 234.464844 C 351.007812 234.347656 350.914062 234.253906 350.796875 234.253906 C 350.679688 234.253906 350.585938 234.347656 350.585938 234.464844 C 350.585938 234.582031 350.679688 234.675781 350.796875 234.675781 C 350.914062 234.675781 351.007812 234.582031 351.007812 234.464844 Z M 351.007812 234.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.476562 233.527344 C 351.476562 233.410156 351.382812 233.316406 351.265625 233.316406 C 351.148438 233.316406 351.054688 233.410156 351.054688 233.527344 C 351.054688 233.644531 351.148438 233.738281 351.265625 233.738281 C 351.382812 233.738281 351.476562 233.644531 351.476562 233.527344 Z M 351.476562 233.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 350.574219 235.9375 C 350.574219 235.820312 350.480469 235.726562 350.363281 235.726562 C 350.246094 235.726562 350.152344 235.820312 350.152344 235.9375 C 350.152344 236.054688 350.246094 236.148438 350.363281 236.148438 C 350.480469 236.148438 350.574219 236.054688 350.574219 235.9375 Z M 350.574219 235.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.414062 236.785156 C 351.414062 236.667969 351.320312 236.574219 351.203125 236.574219 C 351.085938 236.574219 350.992188 236.667969 350.992188 236.785156 C 350.992188 236.902344 351.085938 236.996094 351.203125 236.996094 C 351.320312 236.996094 351.414062 236.902344 351.414062 236.785156 Z M 351.414062 236.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 348.863281 235.253906 C 348.863281 235.136719 348.769531 235.042969 348.652344 235.042969 C 348.535156 235.042969 348.441406 235.136719 348.441406 235.253906 C 348.441406 235.371094 348.535156 235.464844 348.652344 235.464844 C 348.769531 235.464844 348.863281 235.371094 348.863281 235.253906 Z M 348.863281 235.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 349.3125 234.855469 C 349.3125 234.738281 349.21875 234.644531 349.101562 234.644531 C 348.984375 234.644531 348.890625 234.738281 348.890625 234.855469 C 348.890625 234.972656 348.984375 235.066406 349.101562 235.066406 C 349.21875 235.066406 349.3125 234.972656 349.3125 234.855469 Z M 349.3125 234.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.152344 236.132812 C 354.152344 236.015625 354.058594 235.921875 353.941406 235.921875 C 353.824219 235.921875 353.730469 236.015625 353.730469 236.132812 C 353.730469 236.25 353.824219 236.34375 353.941406 236.34375 C 354.058594 236.34375 354.152344 236.25 354.152344 236.132812 Z M 354.152344 236.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.226562 238.367188 C 355.226562 238.25 355.132812 238.15625 355.015625 238.15625 C 354.898438 238.15625 354.804688 238.25 354.804688 238.367188 C 354.804688 238.484375 354.898438 238.578125 355.015625 238.578125 C 355.132812 238.578125 355.226562 238.484375 355.226562 238.367188 Z M 355.226562 238.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.902344 239.214844 C 355.902344 239.097656 355.808594 239.003906 355.691406 239.003906 C 355.574219 239.003906 355.480469 239.097656 355.480469 239.214844 C 355.480469 239.332031 355.574219 239.425781 355.691406 239.425781 C 355.808594 239.425781 355.902344 239.332031 355.902344 239.214844 Z M 355.902344 239.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 364.832031 238.777344 C 364.832031 238.660156 364.738281 238.566406 364.621094 238.566406 C 364.503906 238.566406 364.410156 238.660156 364.410156 238.777344 C 364.410156 238.894531 364.503906 238.988281 364.621094 238.988281 C 364.738281 238.988281 364.832031 238.894531 364.832031 238.777344 Z M 364.832031 238.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 366.179688 239.566406 C 366.179688 239.449219 366.085938 239.355469 365.96875 239.355469 C 365.851562 239.355469 365.757812 239.449219 365.757812 239.566406 C 365.757812 239.683594 365.851562 239.777344 365.96875 239.777344 C 366.085938 239.777344 366.179688 239.683594 366.179688 239.566406 Z M 366.179688 239.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 369.035156 236.832031 C 369.035156 236.714844 368.941406 236.621094 368.824219 236.621094 C 368.707031 236.621094 368.613281 236.714844 368.613281 236.832031 C 368.613281 236.949219 368.707031 237.042969 368.824219 237.042969 C 368.941406 237.042969 369.035156 236.949219 369.035156 236.832031 Z M 369.035156 236.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 369.144531 232.953125 C 369.144531 232.835938 369.050781 232.742188 368.933594 232.742188 C 368.816406 232.742188 368.722656 232.835938 368.722656 232.953125 C 368.722656 233.070312 368.816406 233.164062 368.933594 233.164062 C 369.050781 233.164062 369.144531 233.070312 369.144531 232.953125 Z M 369.144531 232.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 368.03125 234.867188 C 368.03125 234.75 367.9375 234.65625 367.820312 234.65625 C 367.703125 234.65625 367.609375 234.75 367.609375 234.867188 C 367.609375 234.984375 367.703125 235.078125 367.820312 235.078125 C 367.9375 235.078125 368.03125 234.984375 368.03125 234.867188 Z M 368.03125 234.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 368.273438 232.214844 C 368.273438 232.097656 368.179688 232.003906 368.0625 232.003906 C 367.945312 232.003906 367.851562 232.097656 367.851562 232.214844 C 367.851562 232.332031 367.945312 232.425781 368.0625 232.425781 C 368.179688 232.425781 368.273438 232.332031 368.273438 232.214844 Z M 368.273438 232.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 366.261719 229.855469 C 366.261719 229.738281 366.167969 229.644531 366.050781 229.644531 C 365.933594 229.644531 365.839844 229.738281 365.839844 229.855469 C 365.839844 229.972656 365.933594 230.066406 366.050781 230.066406 C 366.167969 230.066406 366.261719 229.972656 366.261719 229.855469 Z M 366.261719 229.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 365.222656 231.96875 C 365.222656 231.851562 365.128906 231.757812 365.011719 231.757812 C 364.894531 231.757812 364.800781 231.851562 364.800781 231.96875 C 364.800781 232.085938 364.894531 232.179688 365.011719 232.179688 C 365.128906 232.179688 365.222656 232.085938 365.222656 231.96875 Z M 365.222656 231.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 368.789062 231.210938 C 368.789062 231.09375 368.695312 231 368.578125 231 C 368.460938 231 368.367188 231.09375 368.367188 231.210938 C 368.367188 231.328125 368.460938 231.421875 368.578125 231.421875 C 368.695312 231.421875 368.789062 231.328125 368.789062 231.210938 Z M 368.789062 231.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 369.710938 231.625 C 369.710938 231.507812 369.617188 231.414062 369.5 231.414062 C 369.382812 231.414062 369.289062 231.507812 369.289062 231.625 C 369.289062 231.742188 369.382812 231.835938 369.5 231.835938 C 369.617188 231.835938 369.710938 231.742188 369.710938 231.625 Z M 369.710938 231.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 367.050781 233.074219 C 367.050781 232.957031 366.957031 232.863281 366.839844 232.863281 C 366.722656 232.863281 366.628906 232.957031 366.628906 233.074219 C 366.628906 233.191406 366.722656 233.285156 366.839844 233.285156 C 366.957031 233.285156 367.050781 233.191406 367.050781 233.074219 Z M 367.050781 233.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 364.582031 235.28125 C 364.582031 235.164062 364.488281 235.070312 364.371094 235.070312 C 364.253906 235.070312 364.160156 235.164062 364.160156 235.28125 C 364.160156 235.398438 364.253906 235.492188 364.371094 235.492188 C 364.488281 235.492188 364.582031 235.398438 364.582031 235.28125 Z M 364.582031 235.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 367.480469 238.152344 C 367.480469 238.035156 367.386719 237.941406 367.269531 237.941406 C 367.152344 237.941406 367.058594 238.035156 367.058594 238.152344 C 367.058594 238.269531 367.152344 238.363281 367.269531 238.363281 C 367.386719 238.363281 367.480469 238.269531 367.480469 238.152344 Z M 367.480469 238.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 366.183594 235.996094 C 366.183594 235.878906 366.089844 235.785156 365.972656 235.785156 C 365.855469 235.785156 365.761719 235.878906 365.761719 235.996094 C 365.761719 236.113281 365.855469 236.207031 365.972656 236.207031 C 366.089844 236.207031 366.183594 236.113281 366.183594 235.996094 Z M 366.183594 235.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 364.757812 234.113281 C 364.757812 233.996094 364.664062 233.902344 364.546875 233.902344 C 364.429688 233.902344 364.335938 233.996094 364.335938 234.113281 C 364.335938 234.230469 364.429688 234.324219 364.546875 234.324219 C 364.664062 234.324219 364.757812 234.230469 364.757812 234.113281 Z M 364.757812 234.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 365.585938 233.277344 C 365.585938 233.160156 365.492188 233.066406 365.375 233.066406 C 365.257812 233.066406 365.164062 233.160156 365.164062 233.277344 C 365.164062 233.394531 365.257812 233.488281 365.375 233.488281 C 365.492188 233.488281 365.585938 233.394531 365.585938 233.277344 Z M 365.585938 233.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 368.304688 234.480469 C 368.304688 234.363281 368.210938 234.269531 368.09375 234.269531 C 367.976562 234.269531 367.882812 234.363281 367.882812 234.480469 C 367.882812 234.597656 367.976562 234.691406 368.09375 234.691406 C 368.210938 234.691406 368.304688 234.597656 368.304688 234.480469 Z M 368.304688 234.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 368.941406 233.511719 C 368.941406 233.394531 368.847656 233.300781 368.730469 233.300781 C 368.613281 233.300781 368.519531 233.394531 368.519531 233.511719 C 368.519531 233.628906 368.613281 233.722656 368.730469 233.722656 C 368.847656 233.722656 368.941406 233.628906 368.941406 233.511719 Z M 368.941406 233.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 365.050781 234.648438 C 365.050781 234.53125 364.957031 234.4375 364.839844 234.4375 C 364.722656 234.4375 364.628906 234.53125 364.628906 234.648438 C 364.628906 234.765625 364.722656 234.859375 364.839844 234.859375 C 364.957031 234.859375 365.050781 234.765625 365.050781 234.648438 Z M 365.050781 234.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 365.191406 232.980469 C 365.191406 232.863281 365.097656 232.769531 364.980469 232.769531 C 364.863281 232.769531 364.769531 232.863281 364.769531 232.980469 C 364.769531 233.097656 364.863281 233.191406 364.980469 233.191406 C 365.097656 233.191406 365.191406 233.097656 365.191406 232.980469 Z M 365.191406 232.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 362.457031 235.226562 C 362.457031 235.109375 362.363281 235.015625 362.246094 235.015625 C 362.128906 235.015625 362.035156 235.109375 362.035156 235.226562 C 362.035156 235.34375 362.128906 235.4375 362.246094 235.4375 C 362.363281 235.4375 362.457031 235.34375 362.457031 235.226562 Z M 362.457031 235.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 365.484375 234.777344 C 365.484375 234.660156 365.390625 234.566406 365.273438 234.566406 C 365.15625 234.566406 365.0625 234.660156 365.0625 234.777344 C 365.0625 234.894531 365.15625 234.988281 365.273438 234.988281 C 365.390625 234.988281 365.484375 234.894531 365.484375 234.777344 Z M 365.484375 234.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 365.484375 235.023438 C 365.484375 234.90625 365.390625 234.8125 365.273438 234.8125 C 365.15625 234.8125 365.0625 234.90625 365.0625 235.023438 C 365.0625 235.140625 365.15625 235.234375 365.273438 235.234375 C 365.390625 235.234375 365.484375 235.140625 365.484375 235.023438 Z M 365.484375 235.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 362.640625 238.476562 C 362.640625 238.359375 362.546875 238.265625 362.429688 238.265625 C 362.3125 238.265625 362.21875 238.359375 362.21875 238.476562 C 362.21875 238.59375 362.3125 238.6875 362.429688 238.6875 C 362.546875 238.6875 362.640625 238.59375 362.640625 238.476562 Z M 362.640625 238.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 362.210938 238.980469 C 362.210938 238.863281 362.117188 238.769531 362 238.769531 C 361.882812 238.769531 361.789062 238.863281 361.789062 238.980469 C 361.789062 239.097656 361.882812 239.191406 362 239.191406 C 362.117188 239.191406 362.210938 239.097656 362.210938 238.980469 Z M 362.210938 238.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 363.660156 241.082031 C 363.660156 240.964844 363.566406 240.871094 363.449219 240.871094 C 363.332031 240.871094 363.238281 240.964844 363.238281 241.082031 C 363.238281 241.199219 363.332031 241.292969 363.449219 241.292969 C 363.566406 241.292969 363.660156 241.199219 363.660156 241.082031 Z M 363.660156 241.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 363.308594 240.203125 C 363.308594 240.085938 363.214844 239.992188 363.097656 239.992188 C 362.980469 239.992188 362.886719 240.085938 362.886719 240.203125 C 362.886719 240.320312 362.980469 240.414062 363.097656 240.414062 C 363.214844 240.414062 363.308594 240.320312 363.308594 240.203125 Z M 363.308594 240.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 357.425781 240.023438 C 357.425781 239.90625 357.332031 239.8125 357.214844 239.8125 C 357.097656 239.8125 357.003906 239.90625 357.003906 240.023438 C 357.003906 240.140625 357.097656 240.234375 357.214844 240.234375 C 357.332031 240.234375 357.425781 240.140625 357.425781 240.023438 Z M 357.425781 240.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 357.457031 240.152344 C 357.457031 240.035156 357.363281 239.941406 357.246094 239.941406 C 357.128906 239.941406 357.035156 240.035156 357.035156 240.152344 C 357.035156 240.269531 357.128906 240.363281 357.246094 240.363281 C 357.363281 240.363281 357.457031 240.269531 357.457031 240.152344 Z M 357.457031 240.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 360.4375 239.425781 C 360.4375 239.308594 360.34375 239.214844 360.226562 239.214844 C 360.109375 239.214844 360.015625 239.308594 360.015625 239.425781 C 360.015625 239.542969 360.109375 239.636719 360.226562 239.636719 C 360.34375 239.636719 360.4375 239.542969 360.4375 239.425781 Z M 360.4375 239.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 361.070312 239.746094 C 361.070312 239.628906 360.976562 239.535156 360.859375 239.535156 C 360.742188 239.535156 360.648438 239.628906 360.648438 239.746094 C 360.648438 239.863281 360.742188 239.957031 360.859375 239.957031 C 360.976562 239.957031 361.070312 239.863281 361.070312 239.746094 Z M 361.070312 239.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 363.675781 237.917969 C 363.675781 237.800781 363.582031 237.707031 363.464844 237.707031 C 363.347656 237.707031 363.253906 237.800781 363.253906 237.917969 C 363.253906 238.035156 363.347656 238.128906 363.464844 238.128906 C 363.582031 238.128906 363.675781 238.035156 363.675781 237.917969 Z M 363.675781 237.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 365.496094 241.152344 C 365.496094 241.035156 365.402344 240.941406 365.285156 240.941406 C 365.167969 240.941406 365.074219 241.035156 365.074219 241.152344 C 365.074219 241.269531 365.167969 241.363281 365.285156 241.363281 C 365.402344 241.363281 365.496094 241.269531 365.496094 241.152344 Z M 365.496094 241.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 364.710938 238.847656 C 364.710938 238.730469 364.617188 238.636719 364.5 238.636719 C 364.382812 238.636719 364.289062 238.730469 364.289062 238.847656 C 364.289062 238.964844 364.382812 239.058594 364.5 239.058594 C 364.617188 239.058594 364.710938 238.964844 364.710938 238.847656 Z M 364.710938 238.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 360.910156 236.871094 C 360.910156 236.753906 360.816406 236.660156 360.699219 236.660156 C 360.582031 236.660156 360.488281 236.753906 360.488281 236.871094 C 360.488281 236.988281 360.582031 237.082031 360.699219 237.082031 C 360.816406 237.082031 360.910156 236.988281 360.910156 236.871094 Z M 360.910156 236.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 361.21875 233.660156 C 361.21875 233.542969 361.125 233.449219 361.007812 233.449219 C 360.890625 233.449219 360.796875 233.542969 360.796875 233.660156 C 360.796875 233.777344 360.890625 233.871094 361.007812 233.871094 C 361.125 233.871094 361.21875 233.777344 361.21875 233.660156 Z M 361.21875 233.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 364.167969 232.8125 C 364.167969 232.695312 364.074219 232.601562 363.957031 232.601562 C 363.839844 232.601562 363.746094 232.695312 363.746094 232.8125 C 363.746094 232.929688 363.839844 233.023438 363.957031 233.023438 C 364.074219 233.023438 364.167969 232.929688 364.167969 232.8125 Z M 364.167969 232.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 365.929688 230.484375 C 365.929688 230.367188 365.835938 230.273438 365.71875 230.273438 C 365.601562 230.273438 365.507812 230.367188 365.507812 230.484375 C 365.507812 230.601562 365.601562 230.695312 365.71875 230.695312 C 365.835938 230.695312 365.929688 230.601562 365.929688 230.484375 Z M 365.929688 230.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 368.175781 230.625 C 368.175781 230.507812 368.082031 230.414062 367.964844 230.414062 C 367.847656 230.414062 367.753906 230.507812 367.753906 230.625 C 367.753906 230.742188 367.847656 230.835938 367.964844 230.835938 C 368.082031 230.835938 368.175781 230.742188 368.175781 230.625 Z M 368.175781 230.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 365.832031 231.847656 C 365.832031 231.730469 365.738281 231.636719 365.621094 231.636719 C 365.503906 231.636719 365.410156 231.730469 365.410156 231.847656 C 365.410156 231.964844 365.503906 232.058594 365.621094 232.058594 C 365.738281 232.058594 365.832031 231.964844 365.832031 231.847656 Z M 365.832031 231.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 365.082031 232.703125 C 365.082031 232.585938 364.988281 232.492188 364.871094 232.492188 C 364.753906 232.492188 364.660156 232.585938 364.660156 232.703125 C 364.660156 232.820312 364.753906 232.914062 364.871094 232.914062 C 364.988281 232.914062 365.082031 232.820312 365.082031 232.703125 Z M 365.082031 232.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 366.523438 232.84375 C 366.523438 232.726562 366.429688 232.632812 366.3125 232.632812 C 366.195312 232.632812 366.101562 232.726562 366.101562 232.84375 C 366.101562 232.960938 366.195312 233.054688 366.3125 233.054688 C 366.429688 233.054688 366.523438 232.960938 366.523438 232.84375 Z M 366.523438 232.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 367.4375 228.8125 C 367.4375 228.695312 367.34375 228.601562 367.226562 228.601562 C 367.109375 228.601562 367.015625 228.695312 367.015625 228.8125 C 367.015625 228.929688 367.109375 229.023438 367.226562 229.023438 C 367.34375 229.023438 367.4375 228.929688 367.4375 228.8125 Z M 367.4375 228.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 368.996094 227.488281 C 368.996094 227.371094 368.902344 227.277344 368.785156 227.277344 C 368.667969 227.277344 368.574219 227.371094 368.574219 227.488281 C 368.574219 227.605469 368.667969 227.699219 368.785156 227.699219 C 368.902344 227.699219 368.996094 227.605469 368.996094 227.488281 Z M 368.996094 227.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 368.480469 228.878906 C 368.480469 228.761719 368.386719 228.667969 368.269531 228.667969 C 368.152344 228.667969 368.058594 228.761719 368.058594 228.878906 C 368.058594 228.996094 368.152344 229.089844 368.269531 229.089844 C 368.386719 229.089844 368.480469 228.996094 368.480469 228.878906 Z M 368.480469 228.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 370.296875 231.066406 C 370.296875 230.949219 370.203125 230.855469 370.085938 230.855469 C 369.96875 230.855469 369.875 230.949219 369.875 231.066406 C 369.875 231.183594 369.96875 231.277344 370.085938 231.277344 C 370.203125 231.277344 370.296875 231.183594 370.296875 231.066406 Z M 370.296875 231.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 376.046875 233.941406 C 376.046875 233.824219 375.953125 233.730469 375.835938 233.730469 C 375.71875 233.730469 375.625 233.824219 375.625 233.941406 C 375.625 234.058594 375.71875 234.152344 375.835938 234.152344 C 375.953125 234.152344 376.046875 234.058594 376.046875 233.941406 Z M 376.046875 233.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 372.46875 231.460938 C 372.46875 231.34375 372.375 231.25 372.257812 231.25 C 372.140625 231.25 372.046875 231.34375 372.046875 231.460938 C 372.046875 231.578125 372.140625 231.671875 372.257812 231.671875 C 372.375 231.671875 372.46875 231.578125 372.46875 231.460938 Z M 372.46875 231.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 371.75 228.070312 C 371.75 227.953125 371.65625 227.859375 371.539062 227.859375 C 371.421875 227.859375 371.328125 227.953125 371.328125 228.070312 C 371.328125 228.1875 371.421875 228.28125 371.539062 228.28125 C 371.65625 228.28125 371.75 228.1875 371.75 228.070312 Z M 371.75 228.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 371.359375 229.585938 C 371.359375 229.46875 371.265625 229.375 371.148438 229.375 C 371.03125 229.375 370.9375 229.46875 370.9375 229.585938 C 370.9375 229.703125 371.03125 229.796875 371.148438 229.796875 C 371.265625 229.796875 371.359375 229.703125 371.359375 229.585938 Z M 371.359375 229.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 372.796875 226.496094 C 372.796875 226.378906 372.703125 226.285156 372.585938 226.285156 C 372.46875 226.285156 372.375 226.378906 372.375 226.496094 C 372.375 226.613281 372.46875 226.707031 372.585938 226.707031 C 372.703125 226.707031 372.796875 226.613281 372.796875 226.496094 Z M 372.796875 226.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 373.96875 222.738281 C 373.96875 222.621094 373.875 222.527344 373.757812 222.527344 C 373.640625 222.527344 373.546875 222.621094 373.546875 222.738281 C 373.546875 222.855469 373.640625 222.949219 373.757812 222.949219 C 373.875 222.949219 373.96875 222.855469 373.96875 222.738281 Z M 373.96875 222.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 372.113281 225.816406 C 372.113281 225.699219 372.019531 225.605469 371.902344 225.605469 C 371.785156 225.605469 371.691406 225.699219 371.691406 225.816406 C 371.691406 225.933594 371.785156 226.027344 371.902344 226.027344 C 372.019531 226.027344 372.113281 225.933594 372.113281 225.816406 Z M 372.113281 225.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 371.292969 223.800781 C 371.292969 223.683594 371.199219 223.589844 371.082031 223.589844 C 370.964844 223.589844 370.871094 223.683594 370.871094 223.800781 C 370.871094 223.917969 370.964844 224.011719 371.082031 224.011719 C 371.199219 224.011719 371.292969 223.917969 371.292969 223.800781 Z M 371.292969 223.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 369.53125 221.847656 C 369.53125 221.730469 369.4375 221.636719 369.320312 221.636719 C 369.203125 221.636719 369.109375 221.730469 369.109375 221.847656 C 369.109375 221.964844 369.203125 222.058594 369.320312 222.058594 C 369.4375 222.058594 369.53125 221.964844 369.53125 221.847656 Z M 369.53125 221.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 368.722656 219.265625 C 368.722656 219.148438 368.628906 219.054688 368.511719 219.054688 C 368.394531 219.054688 368.300781 219.148438 368.300781 219.265625 C 368.300781 219.382812 368.394531 219.476562 368.511719 219.476562 C 368.628906 219.476562 368.722656 219.382812 368.722656 219.265625 Z M 368.722656 219.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 368.046875 214.898438 C 368.046875 214.78125 367.953125 214.6875 367.835938 214.6875 C 367.71875 214.6875 367.625 214.78125 367.625 214.898438 C 367.625 215.015625 367.71875 215.109375 367.835938 215.109375 C 367.953125 215.109375 368.046875 215.015625 368.046875 214.898438 Z M 368.046875 214.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 366.40625 217.773438 C 366.40625 217.65625 366.3125 217.5625 366.195312 217.5625 C 366.078125 217.5625 365.984375 217.65625 365.984375 217.773438 C 365.984375 217.890625 366.078125 217.984375 366.195312 217.984375 C 366.3125 217.984375 366.40625 217.890625 366.40625 217.773438 Z M 366.40625 217.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 365.644531 215.230469 C 365.644531 215.113281 365.550781 215.019531 365.433594 215.019531 C 365.316406 215.019531 365.222656 215.113281 365.222656 215.230469 C 365.222656 215.347656 365.316406 215.441406 365.433594 215.441406 C 365.550781 215.441406 365.644531 215.347656 365.644531 215.230469 Z M 365.644531 215.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 368.355469 214.570312 C 368.355469 214.453125 368.261719 214.359375 368.144531 214.359375 C 368.027344 214.359375 367.933594 214.453125 367.933594 214.570312 C 367.933594 214.6875 368.027344 214.78125 368.144531 214.78125 C 368.261719 214.78125 368.355469 214.6875 368.355469 214.570312 Z M 368.355469 214.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 367.996094 214.253906 C 367.996094 214.136719 367.902344 214.042969 367.785156 214.042969 C 367.667969 214.042969 367.574219 214.136719 367.574219 214.253906 C 367.574219 214.371094 367.667969 214.464844 367.785156 214.464844 C 367.902344 214.464844 367.996094 214.371094 367.996094 214.253906 Z M 367.996094 214.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 366.859375 214.351562 C 366.859375 214.234375 366.765625 214.140625 366.648438 214.140625 C 366.53125 214.140625 366.4375 214.234375 366.4375 214.351562 C 366.4375 214.46875 366.53125 214.5625 366.648438 214.5625 C 366.765625 214.5625 366.859375 214.46875 366.859375 214.351562 Z M 366.859375 214.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 366.484375 216.859375 C 366.484375 216.742188 366.390625 216.648438 366.273438 216.648438 C 366.15625 216.648438 366.0625 216.742188 366.0625 216.859375 C 366.0625 216.976562 366.15625 217.070312 366.273438 217.070312 C 366.390625 217.070312 366.484375 216.976562 366.484375 216.859375 Z M 366.484375 216.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 367.484375 213.660156 C 367.484375 213.542969 367.390625 213.449219 367.273438 213.449219 C 367.15625 213.449219 367.0625 213.542969 367.0625 213.660156 C 367.0625 213.777344 367.15625 213.871094 367.273438 213.871094 C 367.390625 213.871094 367.484375 213.777344 367.484375 213.660156 Z M 367.484375 213.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 364.625 211.585938 C 364.625 211.46875 364.53125 211.375 364.414062 211.375 C 364.296875 211.375 364.203125 211.46875 364.203125 211.585938 C 364.203125 211.703125 364.296875 211.796875 364.414062 211.796875 C 364.53125 211.796875 364.625 211.703125 364.625 211.585938 Z M 364.625 211.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 365.9375 209.96875 C 365.9375 209.851562 365.84375 209.757812 365.726562 209.757812 C 365.609375 209.757812 365.515625 209.851562 365.515625 209.96875 C 365.515625 210.085938 365.609375 210.179688 365.726562 210.179688 C 365.84375 210.179688 365.9375 210.085938 365.9375 209.96875 Z M 365.9375 209.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 367.121094 209.152344 C 367.121094 209.035156 367.027344 208.941406 366.910156 208.941406 C 366.792969 208.941406 366.699219 209.035156 366.699219 209.152344 C 366.699219 209.269531 366.792969 209.363281 366.910156 209.363281 C 367.027344 209.363281 367.121094 209.269531 367.121094 209.152344 Z M 367.121094 209.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 366.382812 206.289062 C 366.382812 206.171875 366.289062 206.078125 366.171875 206.078125 C 366.054688 206.078125 365.960938 206.171875 365.960938 206.289062 C 365.960938 206.40625 366.054688 206.5 366.171875 206.5 C 366.289062 206.5 366.382812 206.40625 366.382812 206.289062 Z M 366.382812 206.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 365.414062 207.363281 C 365.414062 207.246094 365.320312 207.152344 365.203125 207.152344 C 365.085938 207.152344 364.992188 207.246094 364.992188 207.363281 C 364.992188 207.480469 365.085938 207.574219 365.203125 207.574219 C 365.320312 207.574219 365.414062 207.480469 365.414062 207.363281 Z M 365.414062 207.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 368.050781 206.253906 C 368.050781 206.136719 367.957031 206.042969 367.839844 206.042969 C 367.722656 206.042969 367.628906 206.136719 367.628906 206.253906 C 367.628906 206.371094 367.722656 206.464844 367.839844 206.464844 C 367.957031 206.464844 368.050781 206.371094 368.050781 206.253906 Z M 368.050781 206.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 369.476562 207.601562 C 369.476562 207.484375 369.382812 207.390625 369.265625 207.390625 C 369.148438 207.390625 369.054688 207.484375 369.054688 207.601562 C 369.054688 207.71875 369.148438 207.8125 369.265625 207.8125 C 369.382812 207.8125 369.476562 207.71875 369.476562 207.601562 Z M 369.476562 207.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 369.019531 207.714844 C 369.019531 207.597656 368.925781 207.503906 368.808594 207.503906 C 368.691406 207.503906 368.597656 207.597656 368.597656 207.714844 C 368.597656 207.832031 368.691406 207.925781 368.808594 207.925781 C 368.925781 207.925781 369.019531 207.832031 369.019531 207.714844 Z M 369.019531 207.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 368.050781 208.175781 C 368.050781 208.058594 367.957031 207.964844 367.839844 207.964844 C 367.722656 207.964844 367.628906 208.058594 367.628906 208.175781 C 367.628906 208.292969 367.722656 208.386719 367.839844 208.386719 C 367.957031 208.386719 368.050781 208.292969 368.050781 208.175781 Z M 368.050781 208.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 369.167969 209.105469 C 369.167969 208.988281 369.074219 208.894531 368.957031 208.894531 C 368.839844 208.894531 368.746094 208.988281 368.746094 209.105469 C 368.746094 209.222656 368.839844 209.316406 368.957031 209.316406 C 369.074219 209.316406 369.167969 209.222656 369.167969 209.105469 Z M 369.167969 209.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 367.96875 207.675781 C 367.96875 207.558594 367.875 207.464844 367.757812 207.464844 C 367.640625 207.464844 367.546875 207.558594 367.546875 207.675781 C 367.546875 207.792969 367.640625 207.886719 367.757812 207.886719 C 367.875 207.886719 367.96875 207.792969 367.96875 207.675781 Z M 367.96875 207.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 369.226562 208.058594 C 369.226562 207.941406 369.132812 207.847656 369.015625 207.847656 C 368.898438 207.847656 368.804688 207.941406 368.804688 208.058594 C 368.804688 208.175781 368.898438 208.269531 369.015625 208.269531 C 369.132812 208.269531 369.226562 208.175781 369.226562 208.058594 Z M 369.226562 208.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 372.425781 208.5625 C 372.425781 208.445312 372.332031 208.351562 372.214844 208.351562 C 372.097656 208.351562 372.003906 208.445312 372.003906 208.5625 C 372.003906 208.679688 372.097656 208.773438 372.214844 208.773438 C 372.332031 208.773438 372.425781 208.679688 372.425781 208.5625 Z M 372.425781 208.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 371.164062 207.328125 C 371.164062 207.210938 371.070312 207.117188 370.953125 207.117188 C 370.835938 207.117188 370.742188 207.210938 370.742188 207.328125 C 370.742188 207.445312 370.835938 207.539062 370.953125 207.539062 C 371.070312 207.539062 371.164062 207.445312 371.164062 207.328125 Z M 371.164062 207.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 369.699219 205.222656 C 369.699219 205.105469 369.605469 205.011719 369.488281 205.011719 C 369.371094 205.011719 369.277344 205.105469 369.277344 205.222656 C 369.277344 205.339844 369.371094 205.433594 369.488281 205.433594 C 369.605469 205.433594 369.699219 205.339844 369.699219 205.222656 Z M 369.699219 205.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 366.257812 206.507812 C 366.257812 206.390625 366.164062 206.296875 366.046875 206.296875 C 365.929688 206.296875 365.835938 206.390625 365.835938 206.507812 C 365.835938 206.625 365.929688 206.71875 366.046875 206.71875 C 366.164062 206.71875 366.257812 206.625 366.257812 206.507812 Z M 366.257812 206.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 364.464844 205.535156 C 364.464844 205.417969 364.371094 205.324219 364.253906 205.324219 C 364.136719 205.324219 364.042969 205.417969 364.042969 205.535156 C 364.042969 205.652344 364.136719 205.746094 364.253906 205.746094 C 364.371094 205.746094 364.464844 205.652344 364.464844 205.535156 Z M 364.464844 205.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 361.566406 205.414062 C 361.566406 205.296875 361.472656 205.203125 361.355469 205.203125 C 361.238281 205.203125 361.144531 205.296875 361.144531 205.414062 C 361.144531 205.53125 361.238281 205.625 361.355469 205.625 C 361.472656 205.625 361.566406 205.53125 361.566406 205.414062 Z M 361.566406 205.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.683594 203.472656 C 358.683594 203.355469 358.589844 203.261719 358.472656 203.261719 C 358.355469 203.261719 358.261719 203.355469 358.261719 203.472656 C 358.261719 203.589844 358.355469 203.683594 358.472656 203.683594 C 358.589844 203.683594 358.683594 203.589844 358.683594 203.472656 Z M 358.683594 203.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.421875 198.78125 C 354.421875 198.664062 354.328125 198.570312 354.210938 198.570312 C 354.09375 198.570312 354 198.664062 354 198.78125 C 354 198.898438 354.09375 198.992188 354.210938 198.992188 C 354.328125 198.992188 354.421875 198.898438 354.421875 198.78125 Z M 354.421875 198.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.203125 198.089844 C 355.203125 197.972656 355.109375 197.878906 354.992188 197.878906 C 354.875 197.878906 354.78125 197.972656 354.78125 198.089844 C 354.78125 198.207031 354.875 198.300781 354.992188 198.300781 C 355.109375 198.300781 355.203125 198.207031 355.203125 198.089844 Z M 355.203125 198.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.855469 196.253906 C 353.855469 196.136719 353.761719 196.042969 353.644531 196.042969 C 353.527344 196.042969 353.433594 196.136719 353.433594 196.253906 C 353.433594 196.371094 353.527344 196.464844 353.644531 196.464844 C 353.761719 196.464844 353.855469 196.371094 353.855469 196.253906 Z M 353.855469 196.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.105469 194.203125 C 356.105469 194.085938 356.011719 193.992188 355.894531 193.992188 C 355.777344 193.992188 355.683594 194.085938 355.683594 194.203125 C 355.683594 194.320312 355.777344 194.414062 355.894531 194.414062 C 356.011719 194.414062 356.105469 194.320312 356.105469 194.203125 Z M 356.105469 194.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.5625 195.332031 C 354.5625 195.214844 354.46875 195.121094 354.351562 195.121094 C 354.234375 195.121094 354.140625 195.214844 354.140625 195.332031 C 354.140625 195.449219 354.234375 195.542969 354.351562 195.542969 C 354.46875 195.542969 354.5625 195.449219 354.5625 195.332031 Z M 354.5625 195.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.324219 200.265625 C 354.324219 200.148438 354.230469 200.054688 354.113281 200.054688 C 353.996094 200.054688 353.902344 200.148438 353.902344 200.265625 C 353.902344 200.382812 353.996094 200.476562 354.113281 200.476562 C 354.230469 200.476562 354.324219 200.382812 354.324219 200.265625 Z M 354.324219 200.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.367188 201.871094 C 356.367188 201.753906 356.273438 201.660156 356.15625 201.660156 C 356.039062 201.660156 355.945312 201.753906 355.945312 201.871094 C 355.945312 201.988281 356.039062 202.082031 356.15625 202.082031 C 356.273438 202.082031 356.367188 201.988281 356.367188 201.871094 Z M 356.367188 201.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.835938 202.441406 C 358.835938 202.324219 358.742188 202.230469 358.625 202.230469 C 358.507812 202.230469 358.414062 202.324219 358.414062 202.441406 C 358.414062 202.558594 358.507812 202.652344 358.625 202.652344 C 358.742188 202.652344 358.835938 202.558594 358.835938 202.441406 Z M 358.835938 202.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 359.667969 202.386719 C 359.667969 202.269531 359.574219 202.175781 359.457031 202.175781 C 359.339844 202.175781 359.246094 202.269531 359.246094 202.386719 C 359.246094 202.503906 359.339844 202.597656 359.457031 202.597656 C 359.574219 202.597656 359.667969 202.503906 359.667969 202.386719 Z M 359.667969 202.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 359.28125 199.429688 C 359.28125 199.3125 359.1875 199.21875 359.070312 199.21875 C 358.953125 199.21875 358.859375 199.3125 358.859375 199.429688 C 358.859375 199.546875 358.953125 199.640625 359.070312 199.640625 C 359.1875 199.640625 359.28125 199.546875 359.28125 199.429688 Z M 359.28125 199.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.285156 196.867188 C 356.285156 196.75 356.191406 196.65625 356.074219 196.65625 C 355.957031 196.65625 355.863281 196.75 355.863281 196.867188 C 355.863281 196.984375 355.957031 197.078125 356.074219 197.078125 C 356.191406 197.078125 356.285156 196.984375 356.285156 196.867188 Z M 356.285156 196.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.824219 196.121094 C 356.824219 196.003906 356.730469 195.910156 356.613281 195.910156 C 356.496094 195.910156 356.402344 196.003906 356.402344 196.121094 C 356.402344 196.238281 356.496094 196.332031 356.613281 196.332031 C 356.730469 196.332031 356.824219 196.238281 356.824219 196.121094 Z M 356.824219 196.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.613281 195.441406 C 354.613281 195.324219 354.519531 195.230469 354.402344 195.230469 C 354.285156 195.230469 354.191406 195.324219 354.191406 195.441406 C 354.191406 195.558594 354.285156 195.652344 354.402344 195.652344 C 354.519531 195.652344 354.613281 195.558594 354.613281 195.441406 Z M 354.613281 195.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.308594 193.566406 C 355.308594 193.449219 355.214844 193.355469 355.097656 193.355469 C 354.980469 193.355469 354.886719 193.449219 354.886719 193.566406 C 354.886719 193.683594 354.980469 193.777344 355.097656 193.777344 C 355.214844 193.777344 355.308594 193.683594 355.308594 193.566406 Z M 355.308594 193.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.90625 194.160156 C 353.90625 194.042969 353.8125 193.949219 353.695312 193.949219 C 353.578125 193.949219 353.484375 194.042969 353.484375 194.160156 C 353.484375 194.277344 353.578125 194.371094 353.695312 194.371094 C 353.8125 194.371094 353.90625 194.277344 353.90625 194.160156 Z M 353.90625 194.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.292969 194.542969 C 355.292969 194.425781 355.199219 194.332031 355.082031 194.332031 C 354.964844 194.332031 354.871094 194.425781 354.871094 194.542969 C 354.871094 194.660156 354.964844 194.753906 355.082031 194.753906 C 355.199219 194.753906 355.292969 194.660156 355.292969 194.542969 Z M 355.292969 194.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.515625 197.882812 C 356.515625 197.765625 356.421875 197.671875 356.304688 197.671875 C 356.1875 197.671875 356.09375 197.765625 356.09375 197.882812 C 356.09375 198 356.1875 198.09375 356.304688 198.09375 C 356.421875 198.09375 356.515625 198 356.515625 197.882812 Z M 356.515625 197.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.386719 197.644531 C 355.386719 197.527344 355.292969 197.433594 355.175781 197.433594 C 355.058594 197.433594 354.964844 197.527344 354.964844 197.644531 C 354.964844 197.761719 355.058594 197.855469 355.175781 197.855469 C 355.292969 197.855469 355.386719 197.761719 355.386719 197.644531 Z M 355.386719 197.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.648438 198.261719 C 356.648438 198.144531 356.554688 198.050781 356.4375 198.050781 C 356.320312 198.050781 356.226562 198.144531 356.226562 198.261719 C 356.226562 198.378906 356.320312 198.472656 356.4375 198.472656 C 356.554688 198.472656 356.648438 198.378906 356.648438 198.261719 Z M 356.648438 198.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.527344 195.894531 C 355.527344 195.777344 355.433594 195.683594 355.316406 195.683594 C 355.199219 195.683594 355.105469 195.777344 355.105469 195.894531 C 355.105469 196.011719 355.199219 196.105469 355.316406 196.105469 C 355.433594 196.105469 355.527344 196.011719 355.527344 195.894531 Z M 355.527344 195.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.835938 197.378906 C 354.835938 197.261719 354.742188 197.167969 354.625 197.167969 C 354.507812 197.167969 354.414062 197.261719 354.414062 197.378906 C 354.414062 197.496094 354.507812 197.589844 354.625 197.589844 C 354.742188 197.589844 354.835938 197.496094 354.835938 197.378906 Z M 354.835938 197.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.035156 201.65625 C 356.035156 201.539062 355.941406 201.445312 355.824219 201.445312 C 355.707031 201.445312 355.613281 201.539062 355.613281 201.65625 C 355.613281 201.773438 355.707031 201.867188 355.824219 201.867188 C 355.941406 201.867188 356.035156 201.773438 356.035156 201.65625 Z M 356.035156 201.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 352.507812 202.09375 C 352.507812 201.976562 352.414062 201.882812 352.296875 201.882812 C 352.179688 201.882812 352.085938 201.976562 352.085938 202.09375 C 352.085938 202.210938 352.179688 202.304688 352.296875 202.304688 C 352.414062 202.304688 352.507812 202.210938 352.507812 202.09375 Z M 352.507812 202.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 350.605469 206.417969 C 350.605469 206.300781 350.511719 206.207031 350.394531 206.207031 C 350.277344 206.207031 350.183594 206.300781 350.183594 206.417969 C 350.183594 206.535156 350.277344 206.628906 350.394531 206.628906 C 350.511719 206.628906 350.605469 206.535156 350.605469 206.417969 Z M 350.605469 206.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.007812 206.660156 C 354.007812 206.542969 353.914062 206.449219 353.796875 206.449219 C 353.679688 206.449219 353.585938 206.542969 353.585938 206.660156 C 353.585938 206.777344 353.679688 206.871094 353.796875 206.871094 C 353.914062 206.871094 354.007812 206.777344 354.007812 206.660156 Z M 354.007812 206.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.632812 204.703125 C 354.632812 204.585938 354.539062 204.492188 354.421875 204.492188 C 354.304688 204.492188 354.210938 204.585938 354.210938 204.703125 C 354.210938 204.820312 354.304688 204.914062 354.421875 204.914062 C 354.539062 204.914062 354.632812 204.820312 354.632812 204.703125 Z M 354.632812 204.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 352.496094 208.777344 C 352.496094 208.660156 352.402344 208.566406 352.285156 208.566406 C 352.167969 208.566406 352.074219 208.660156 352.074219 208.777344 C 352.074219 208.894531 352.167969 208.988281 352.285156 208.988281 C 352.402344 208.988281 352.496094 208.894531 352.496094 208.777344 Z M 352.496094 208.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.648438 210.980469 C 353.648438 210.863281 353.554688 210.769531 353.4375 210.769531 C 353.320312 210.769531 353.226562 210.863281 353.226562 210.980469 C 353.226562 211.097656 353.320312 211.191406 353.4375 211.191406 C 353.554688 211.191406 353.648438 211.097656 353.648438 210.980469 Z M 353.648438 210.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.421875 215.445312 C 351.421875 215.328125 351.328125 215.234375 351.210938 215.234375 C 351.09375 215.234375 351 215.328125 351 215.445312 C 351 215.5625 351.09375 215.65625 351.210938 215.65625 C 351.328125 215.65625 351.421875 215.5625 351.421875 215.445312 Z M 351.421875 215.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 347.695312 213.234375 C 347.695312 213.117188 347.601562 213.023438 347.484375 213.023438 C 347.367188 213.023438 347.273438 213.117188 347.273438 213.234375 C 347.273438 213.351562 347.367188 213.445312 347.484375 213.445312 C 347.601562 213.445312 347.695312 213.351562 347.695312 213.234375 Z M 347.695312 213.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 348.265625 213.058594 C 348.265625 212.941406 348.171875 212.847656 348.054688 212.847656 C 347.9375 212.847656 347.84375 212.941406 347.84375 213.058594 C 347.84375 213.175781 347.9375 213.269531 348.054688 213.269531 C 348.171875 213.269531 348.265625 213.175781 348.265625 213.058594 Z M 348.265625 213.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 346.527344 212.90625 C 346.527344 212.789062 346.433594 212.695312 346.316406 212.695312 C 346.199219 212.695312 346.105469 212.789062 346.105469 212.90625 C 346.105469 213.023438 346.199219 213.117188 346.316406 213.117188 C 346.433594 213.117188 346.527344 213.023438 346.527344 212.90625 Z M 346.527344 212.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 347.09375 213.054688 C 347.09375 212.9375 347 212.84375 346.882812 212.84375 C 346.765625 212.84375 346.671875 212.9375 346.671875 213.054688 C 346.671875 213.171875 346.765625 213.265625 346.882812 213.265625 C 347 213.265625 347.09375 213.171875 347.09375 213.054688 Z M 347.09375 213.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 348.542969 214.019531 C 348.542969 213.902344 348.449219 213.808594 348.332031 213.808594 C 348.214844 213.808594 348.121094 213.902344 348.121094 214.019531 C 348.121094 214.136719 348.214844 214.230469 348.332031 214.230469 C 348.449219 214.230469 348.542969 214.136719 348.542969 214.019531 Z M 348.542969 214.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 350.007812 213.019531 C 350.007812 212.902344 349.914062 212.808594 349.796875 212.808594 C 349.679688 212.808594 349.585938 212.902344 349.585938 213.019531 C 349.585938 213.136719 349.679688 213.230469 349.796875 213.230469 C 349.914062 213.230469 350.007812 213.136719 350.007812 213.019531 Z M 350.007812 213.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 350.734375 214.269531 C 350.734375 214.152344 350.640625 214.058594 350.523438 214.058594 C 350.40625 214.058594 350.3125 214.152344 350.3125 214.269531 C 350.3125 214.386719 350.40625 214.480469 350.523438 214.480469 C 350.640625 214.480469 350.734375 214.386719 350.734375 214.269531 Z M 350.734375 214.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 349.933594 215.226562 C 349.933594 215.109375 349.839844 215.015625 349.722656 215.015625 C 349.605469 215.015625 349.511719 215.109375 349.511719 215.226562 C 349.511719 215.34375 349.605469 215.4375 349.722656 215.4375 C 349.839844 215.4375 349.933594 215.34375 349.933594 215.226562 Z M 349.933594 215.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 350.9375 214.460938 C 350.9375 214.34375 350.84375 214.25 350.726562 214.25 C 350.609375 214.25 350.515625 214.34375 350.515625 214.460938 C 350.515625 214.578125 350.609375 214.671875 350.726562 214.671875 C 350.84375 214.671875 350.9375 214.578125 350.9375 214.460938 Z M 350.9375 214.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.441406 217.390625 C 351.441406 217.273438 351.347656 217.179688 351.230469 217.179688 C 351.113281 217.179688 351.019531 217.273438 351.019531 217.390625 C 351.019531 217.507812 351.113281 217.601562 351.230469 217.601562 C 351.347656 217.601562 351.441406 217.507812 351.441406 217.390625 Z M 351.441406 217.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 349.574219 214.296875 C 349.574219 214.179688 349.480469 214.085938 349.363281 214.085938 C 349.246094 214.085938 349.152344 214.179688 349.152344 214.296875 C 349.152344 214.414062 349.246094 214.507812 349.363281 214.507812 C 349.480469 214.507812 349.574219 214.414062 349.574219 214.296875 Z M 349.574219 214.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 352.964844 213.578125 C 352.964844 213.460938 352.871094 213.367188 352.753906 213.367188 C 352.636719 213.367188 352.542969 213.460938 352.542969 213.578125 C 352.542969 213.695312 352.636719 213.789062 352.753906 213.789062 C 352.871094 213.789062 352.964844 213.695312 352.964844 213.578125 Z M 352.964844 213.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.433594 212.492188 C 351.433594 212.375 351.339844 212.28125 351.222656 212.28125 C 351.105469 212.28125 351.011719 212.375 351.011719 212.492188 C 351.011719 212.609375 351.105469 212.703125 351.222656 212.703125 C 351.339844 212.703125 351.433594 212.609375 351.433594 212.492188 Z M 351.433594 212.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.800781 214.042969 C 351.800781 213.925781 351.707031 213.832031 351.589844 213.832031 C 351.472656 213.832031 351.378906 213.925781 351.378906 214.042969 C 351.378906 214.160156 351.472656 214.253906 351.589844 214.253906 C 351.707031 214.253906 351.800781 214.160156 351.800781 214.042969 Z M 351.800781 214.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.652344 217.046875 C 355.652344 216.929688 355.558594 216.835938 355.441406 216.835938 C 355.324219 216.835938 355.230469 216.929688 355.230469 217.046875 C 355.230469 217.164062 355.324219 217.257812 355.441406 217.257812 C 355.558594 217.257812 355.652344 217.164062 355.652344 217.046875 Z M 355.652344 217.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.464844 214.644531 C 353.464844 214.527344 353.371094 214.433594 353.253906 214.433594 C 353.136719 214.433594 353.042969 214.527344 353.042969 214.644531 C 353.042969 214.761719 353.136719 214.855469 353.253906 214.855469 C 353.371094 214.855469 353.464844 214.761719 353.464844 214.644531 Z M 353.464844 214.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.261719 216.707031 C 354.261719 216.589844 354.167969 216.496094 354.050781 216.496094 C 353.933594 216.496094 353.839844 216.589844 353.839844 216.707031 C 353.839844 216.824219 353.933594 216.917969 354.050781 216.917969 C 354.167969 216.917969 354.261719 216.824219 354.261719 216.707031 Z M 354.261719 216.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.238281 217.433594 C 353.238281 217.316406 353.144531 217.222656 353.027344 217.222656 C 352.910156 217.222656 352.816406 217.316406 352.816406 217.433594 C 352.816406 217.550781 352.910156 217.644531 353.027344 217.644531 C 353.144531 217.644531 353.238281 217.550781 353.238281 217.433594 Z M 353.238281 217.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 352.042969 218.191406 C 352.042969 218.074219 351.949219 217.980469 351.832031 217.980469 C 351.714844 217.980469 351.621094 218.074219 351.621094 218.191406 C 351.621094 218.308594 351.714844 218.402344 351.832031 218.402344 C 351.949219 218.402344 352.042969 218.308594 352.042969 218.191406 Z M 352.042969 218.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 352.859375 220 C 352.859375 219.882812 352.765625 219.789062 352.648438 219.789062 C 352.53125 219.789062 352.4375 219.882812 352.4375 220 C 352.4375 220.117188 352.53125 220.210938 352.648438 220.210938 C 352.765625 220.210938 352.859375 220.117188 352.859375 220 Z M 352.859375 220 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 349.460938 217.058594 C 349.460938 216.941406 349.367188 216.847656 349.25 216.847656 C 349.132812 216.847656 349.039062 216.941406 349.039062 217.058594 C 349.039062 217.175781 349.132812 217.269531 349.25 217.269531 C 349.367188 217.269531 349.460938 217.175781 349.460938 217.058594 Z M 349.460938 217.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 346.578125 216.9375 C 346.578125 216.820312 346.484375 216.726562 346.367188 216.726562 C 346.25 216.726562 346.15625 216.820312 346.15625 216.9375 C 346.15625 217.054688 346.25 217.148438 346.367188 217.148438 C 346.484375 217.148438 346.578125 217.054688 346.578125 216.9375 Z M 346.578125 216.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 347.800781 222.6875 C 347.800781 222.570312 347.707031 222.476562 347.589844 222.476562 C 347.472656 222.476562 347.378906 222.570312 347.378906 222.6875 C 347.378906 222.804688 347.472656 222.898438 347.589844 222.898438 C 347.707031 222.898438 347.800781 222.804688 347.800781 222.6875 Z M 347.800781 222.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 344.675781 225.453125 C 344.675781 225.335938 344.582031 225.242188 344.464844 225.242188 C 344.347656 225.242188 344.253906 225.335938 344.253906 225.453125 C 344.253906 225.570312 344.347656 225.664062 344.464844 225.664062 C 344.582031 225.664062 344.675781 225.570312 344.675781 225.453125 Z M 344.675781 225.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 344.003906 224.589844 C 344.003906 224.472656 343.910156 224.378906 343.792969 224.378906 C 343.675781 224.378906 343.582031 224.472656 343.582031 224.589844 C 343.582031 224.707031 343.675781 224.800781 343.792969 224.800781 C 343.910156 224.800781 344.003906 224.707031 344.003906 224.589844 Z M 344.003906 224.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 343.085938 224.828125 C 343.085938 224.710938 342.992188 224.617188 342.875 224.617188 C 342.757812 224.617188 342.664062 224.710938 342.664062 224.828125 C 342.664062 224.945312 342.757812 225.039062 342.875 225.039062 C 342.992188 225.039062 343.085938 224.945312 343.085938 224.828125 Z M 343.085938 224.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 345.027344 223.296875 C 345.027344 223.179688 344.933594 223.085938 344.816406 223.085938 C 344.699219 223.085938 344.605469 223.179688 344.605469 223.296875 C 344.605469 223.414062 344.699219 223.507812 344.816406 223.507812 C 344.933594 223.507812 345.027344 223.414062 345.027344 223.296875 Z M 345.027344 223.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 341.308594 223.730469 C 341.308594 223.613281 341.214844 223.519531 341.097656 223.519531 C 340.980469 223.519531 340.886719 223.613281 340.886719 223.730469 C 340.886719 223.847656 340.980469 223.941406 341.097656 223.941406 C 341.214844 223.941406 341.308594 223.847656 341.308594 223.730469 Z M 341.308594 223.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 342.460938 223.9375 C 342.460938 223.820312 342.367188 223.726562 342.25 223.726562 C 342.132812 223.726562 342.039062 223.820312 342.039062 223.9375 C 342.039062 224.054688 342.132812 224.148438 342.25 224.148438 C 342.367188 224.148438 342.460938 224.054688 342.460938 223.9375 Z M 342.460938 223.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 343.035156 225.339844 C 343.035156 225.222656 342.941406 225.128906 342.824219 225.128906 C 342.707031 225.128906 342.613281 225.222656 342.613281 225.339844 C 342.613281 225.457031 342.707031 225.550781 342.824219 225.550781 C 342.941406 225.550781 343.035156 225.457031 343.035156 225.339844 Z M 343.035156 225.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 342.523438 225.8125 C 342.523438 225.695312 342.429688 225.601562 342.3125 225.601562 C 342.195312 225.601562 342.101562 225.695312 342.101562 225.8125 C 342.101562 225.929688 342.195312 226.023438 342.3125 226.023438 C 342.429688 226.023438 342.523438 225.929688 342.523438 225.8125 Z M 342.523438 225.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 345.5625 225.976562 C 345.5625 225.859375 345.46875 225.765625 345.351562 225.765625 C 345.234375 225.765625 345.140625 225.859375 345.140625 225.976562 C 345.140625 226.09375 345.234375 226.1875 345.351562 226.1875 C 345.46875 226.1875 345.5625 226.09375 345.5625 225.976562 Z M 345.5625 225.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.105469 226.28125 C 351.105469 226.164062 351.011719 226.070312 350.894531 226.070312 C 350.777344 226.070312 350.683594 226.164062 350.683594 226.28125 C 350.683594 226.398438 350.777344 226.492188 350.894531 226.492188 C 351.011719 226.492188 351.105469 226.398438 351.105469 226.28125 Z M 351.105469 226.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.375 227.625 C 351.375 227.507812 351.28125 227.414062 351.164062 227.414062 C 351.046875 227.414062 350.953125 227.507812 350.953125 227.625 C 350.953125 227.742188 351.046875 227.835938 351.164062 227.835938 C 351.28125 227.835938 351.375 227.742188 351.375 227.625 Z M 351.375 227.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.914062 226.914062 C 351.914062 226.796875 351.820312 226.703125 351.703125 226.703125 C 351.585938 226.703125 351.492188 226.796875 351.492188 226.914062 C 351.492188 227.03125 351.585938 227.125 351.703125 227.125 C 351.820312 227.125 351.914062 227.03125 351.914062 226.914062 Z M 351.914062 226.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 349.8125 226.378906 C 349.8125 226.261719 349.71875 226.167969 349.601562 226.167969 C 349.484375 226.167969 349.390625 226.261719 349.390625 226.378906 C 349.390625 226.496094 349.484375 226.589844 349.601562 226.589844 C 349.71875 226.589844 349.8125 226.496094 349.8125 226.378906 Z M 349.8125 226.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 349.472656 225.191406 C 349.472656 225.074219 349.378906 224.980469 349.261719 224.980469 C 349.144531 224.980469 349.050781 225.074219 349.050781 225.191406 C 349.050781 225.308594 349.144531 225.402344 349.261719 225.402344 C 349.378906 225.402344 349.472656 225.308594 349.472656 225.191406 Z M 349.472656 225.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 350.058594 228.4375 C 350.058594 228.320312 349.964844 228.226562 349.847656 228.226562 C 349.730469 228.226562 349.636719 228.320312 349.636719 228.4375 C 349.636719 228.554688 349.730469 228.648438 349.847656 228.648438 C 349.964844 228.648438 350.058594 228.554688 350.058594 228.4375 Z M 350.058594 228.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.015625 229.714844 C 354.015625 229.597656 353.921875 229.503906 353.804688 229.503906 C 353.6875 229.503906 353.59375 229.597656 353.59375 229.714844 C 353.59375 229.832031 353.6875 229.925781 353.804688 229.925781 C 353.921875 229.925781 354.015625 229.832031 354.015625 229.714844 Z M 354.015625 229.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 352.273438 230.492188 C 352.273438 230.375 352.179688 230.28125 352.0625 230.28125 C 351.945312 230.28125 351.851562 230.375 351.851562 230.492188 C 351.851562 230.609375 351.945312 230.703125 352.0625 230.703125 C 352.179688 230.703125 352.273438 230.609375 352.273438 230.492188 Z M 352.273438 230.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.652344 228.15625 C 351.652344 228.039062 351.558594 227.945312 351.441406 227.945312 C 351.324219 227.945312 351.230469 228.039062 351.230469 228.15625 C 351.230469 228.273438 351.324219 228.367188 351.441406 228.367188 C 351.558594 228.367188 351.652344 228.273438 351.652344 228.15625 Z M 351.652344 228.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.800781 224.945312 C 353.800781 224.828125 353.707031 224.734375 353.589844 224.734375 C 353.472656 224.734375 353.378906 224.828125 353.378906 224.945312 C 353.378906 225.0625 353.472656 225.15625 353.589844 225.15625 C 353.707031 225.15625 353.800781 225.0625 353.800781 224.945312 Z M 353.800781 224.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.261719 226.152344 C 354.261719 226.035156 354.167969 225.941406 354.050781 225.941406 C 353.933594 225.941406 353.839844 226.035156 353.839844 226.152344 C 353.839844 226.269531 353.933594 226.363281 354.050781 226.363281 C 354.167969 226.363281 354.261719 226.269531 354.261719 226.152344 Z M 354.261719 226.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.007812 230.167969 C 353.007812 230.050781 352.914062 229.957031 352.796875 229.957031 C 352.679688 229.957031 352.585938 230.050781 352.585938 230.167969 C 352.585938 230.285156 352.679688 230.378906 352.796875 230.378906 C 352.914062 230.378906 353.007812 230.285156 353.007812 230.167969 Z M 353.007812 230.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 352.691406 229.710938 C 352.691406 229.59375 352.597656 229.5 352.480469 229.5 C 352.363281 229.5 352.269531 229.59375 352.269531 229.710938 C 352.269531 229.828125 352.363281 229.921875 352.480469 229.921875 C 352.597656 229.921875 352.691406 229.828125 352.691406 229.710938 Z M 352.691406 229.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.214844 232.039062 C 354.214844 231.921875 354.121094 231.828125 354.003906 231.828125 C 353.886719 231.828125 353.792969 231.921875 353.792969 232.039062 C 353.792969 232.15625 353.886719 232.25 354.003906 232.25 C 354.121094 232.25 354.214844 232.15625 354.214844 232.039062 Z M 354.214844 232.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 350.597656 234.8125 C 350.597656 234.695312 350.503906 234.601562 350.386719 234.601562 C 350.269531 234.601562 350.175781 234.695312 350.175781 234.8125 C 350.175781 234.929688 350.269531 235.023438 350.386719 235.023438 C 350.503906 235.023438 350.597656 234.929688 350.597656 234.8125 Z M 350.597656 234.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 350.511719 233.386719 C 350.511719 233.269531 350.417969 233.175781 350.300781 233.175781 C 350.183594 233.175781 350.089844 233.269531 350.089844 233.386719 C 350.089844 233.503906 350.183594 233.597656 350.300781 233.597656 C 350.417969 233.597656 350.511719 233.503906 350.511719 233.386719 Z M 350.511719 233.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.050781 231.917969 C 354.050781 231.800781 353.957031 231.707031 353.839844 231.707031 C 353.722656 231.707031 353.628906 231.800781 353.628906 231.917969 C 353.628906 232.035156 353.722656 232.128906 353.839844 232.128906 C 353.957031 232.128906 354.050781 232.035156 354.050781 231.917969 Z M 354.050781 231.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.484375 230.351562 C 353.484375 230.234375 353.390625 230.140625 353.273438 230.140625 C 353.15625 230.140625 353.0625 230.234375 353.0625 230.351562 C 353.0625 230.46875 353.15625 230.5625 353.273438 230.5625 C 353.390625 230.5625 353.484375 230.46875 353.484375 230.351562 Z M 353.484375 230.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.785156 231.40625 C 354.785156 231.289062 354.691406 231.195312 354.574219 231.195312 C 354.457031 231.195312 354.363281 231.289062 354.363281 231.40625 C 354.363281 231.523438 354.457031 231.617188 354.574219 231.617188 C 354.691406 231.617188 354.785156 231.523438 354.785156 231.40625 Z M 354.785156 231.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.082031 231.285156 C 358.082031 231.167969 357.988281 231.074219 357.871094 231.074219 C 357.753906 231.074219 357.660156 231.167969 357.660156 231.285156 C 357.660156 231.402344 357.753906 231.496094 357.871094 231.496094 C 357.988281 231.496094 358.082031 231.402344 358.082031 231.285156 Z M 358.082031 231.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 360.730469 232.796875 C 360.730469 232.679688 360.636719 232.585938 360.519531 232.585938 C 360.402344 232.585938 360.308594 232.679688 360.308594 232.796875 C 360.308594 232.914062 360.402344 233.007812 360.519531 233.007812 C 360.636719 233.007812 360.730469 232.914062 360.730469 232.796875 Z M 360.730469 232.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 359.785156 232.648438 C 359.785156 232.53125 359.691406 232.4375 359.574219 232.4375 C 359.457031 232.4375 359.363281 232.53125 359.363281 232.648438 C 359.363281 232.765625 359.457031 232.859375 359.574219 232.859375 C 359.691406 232.859375 359.785156 232.765625 359.785156 232.648438 Z M 359.785156 232.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 360.226562 232.109375 C 360.226562 231.992188 360.132812 231.898438 360.015625 231.898438 C 359.898438 231.898438 359.804688 231.992188 359.804688 232.109375 C 359.804688 232.226562 359.898438 232.320312 360.015625 232.320312 C 360.132812 232.320312 360.226562 232.226562 360.226562 232.109375 Z M 360.226562 232.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.707031 233.292969 C 358.707031 233.175781 358.613281 233.082031 358.496094 233.082031 C 358.378906 233.082031 358.285156 233.175781 358.285156 233.292969 C 358.285156 233.410156 358.378906 233.503906 358.496094 233.503906 C 358.613281 233.503906 358.707031 233.410156 358.707031 233.292969 Z M 358.707031 233.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.765625 232.035156 C 358.765625 231.917969 358.671875 231.824219 358.554688 231.824219 C 358.4375 231.824219 358.34375 231.917969 358.34375 232.035156 C 358.34375 232.152344 358.4375 232.246094 358.554688 232.246094 C 358.671875 232.246094 358.765625 232.152344 358.765625 232.035156 Z M 358.765625 232.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.089844 231.800781 C 358.089844 231.683594 357.996094 231.589844 357.878906 231.589844 C 357.761719 231.589844 357.667969 231.683594 357.667969 231.800781 C 357.667969 231.917969 357.761719 232.011719 357.878906 232.011719 C 357.996094 232.011719 358.089844 231.917969 358.089844 231.800781 Z M 358.089844 231.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 360.203125 230.96875 C 360.203125 230.851562 360.109375 230.757812 359.992188 230.757812 C 359.875 230.757812 359.78125 230.851562 359.78125 230.96875 C 359.78125 231.085938 359.875 231.179688 359.992188 231.179688 C 360.109375 231.179688 360.203125 231.085938 360.203125 230.96875 Z M 360.203125 230.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 361.601562 234.160156 C 361.601562 234.042969 361.507812 233.949219 361.390625 233.949219 C 361.273438 233.949219 361.179688 234.042969 361.179688 234.160156 C 361.179688 234.277344 361.273438 234.371094 361.390625 234.371094 C 361.507812 234.371094 361.601562 234.277344 361.601562 234.160156 Z M 361.601562 234.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 359.988281 234.707031 C 359.988281 234.589844 359.894531 234.496094 359.777344 234.496094 C 359.660156 234.496094 359.566406 234.589844 359.566406 234.707031 C 359.566406 234.824219 359.660156 234.917969 359.777344 234.917969 C 359.894531 234.917969 359.988281 234.824219 359.988281 234.707031 Z M 359.988281 234.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 361.609375 235.332031 C 361.609375 235.214844 361.515625 235.121094 361.398438 235.121094 C 361.28125 235.121094 361.1875 235.214844 361.1875 235.332031 C 361.1875 235.449219 361.28125 235.542969 361.398438 235.542969 C 361.515625 235.542969 361.609375 235.449219 361.609375 235.332031 Z M 361.609375 235.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 362.144531 237.507812 C 362.144531 237.390625 362.050781 237.296875 361.933594 237.296875 C 361.816406 237.296875 361.722656 237.390625 361.722656 237.507812 C 361.722656 237.625 361.816406 237.71875 361.933594 237.71875 C 362.050781 237.71875 362.144531 237.625 362.144531 237.507812 Z M 362.144531 237.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 362.078125 238.074219 C 362.078125 237.957031 361.984375 237.863281 361.867188 237.863281 C 361.75 237.863281 361.65625 237.957031 361.65625 238.074219 C 361.65625 238.191406 361.75 238.285156 361.867188 238.285156 C 361.984375 238.285156 362.078125 238.191406 362.078125 238.074219 Z M 362.078125 238.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 360.207031 239.550781 C 360.207031 239.433594 360.113281 239.339844 359.996094 239.339844 C 359.878906 239.339844 359.785156 239.433594 359.785156 239.550781 C 359.785156 239.667969 359.878906 239.761719 359.996094 239.761719 C 360.113281 239.761719 360.207031 239.667969 360.207031 239.550781 Z M 360.207031 239.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 361.390625 238.21875 C 361.390625 238.101562 361.296875 238.007812 361.179688 238.007812 C 361.0625 238.007812 360.96875 238.101562 360.96875 238.21875 C 360.96875 238.335938 361.0625 238.429688 361.179688 238.429688 C 361.296875 238.429688 361.390625 238.335938 361.390625 238.21875 Z M 361.390625 238.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.644531 243.503906 C 358.644531 243.386719 358.550781 243.292969 358.433594 243.292969 C 358.316406 243.292969 358.222656 243.386719 358.222656 243.503906 C 358.222656 243.621094 358.316406 243.714844 358.433594 243.714844 C 358.550781 243.714844 358.644531 243.621094 358.644531 243.503906 Z M 358.644531 243.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.246094 244.691406 C 358.246094 244.574219 358.152344 244.480469 358.035156 244.480469 C 357.917969 244.480469 357.824219 244.574219 357.824219 244.691406 C 357.824219 244.808594 357.917969 244.902344 358.035156 244.902344 C 358.152344 244.902344 358.246094 244.808594 358.246094 244.691406 Z M 358.246094 244.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 359.277344 243.460938 C 359.277344 243.34375 359.183594 243.25 359.066406 243.25 C 358.949219 243.25 358.855469 243.34375 358.855469 243.460938 C 358.855469 243.578125 358.949219 243.671875 359.066406 243.671875 C 359.183594 243.671875 359.277344 243.578125 359.277344 243.460938 Z M 359.277344 243.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 358.433594 246.085938 C 358.433594 245.96875 358.339844 245.875 358.222656 245.875 C 358.105469 245.875 358.011719 245.96875 358.011719 246.085938 C 358.011719 246.203125 358.105469 246.296875 358.222656 246.296875 C 358.339844 246.296875 358.433594 246.203125 358.433594 246.085938 Z M 358.433594 246.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 357.925781 247.378906 C 357.925781 247.261719 357.832031 247.167969 357.714844 247.167969 C 357.597656 247.167969 357.503906 247.261719 357.503906 247.378906 C 357.503906 247.496094 357.597656 247.589844 357.714844 247.589844 C 357.832031 247.589844 357.925781 247.496094 357.925781 247.378906 Z M 357.925781 247.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 357.480469 248.652344 C 357.480469 248.535156 357.386719 248.441406 357.269531 248.441406 C 357.152344 248.441406 357.058594 248.535156 357.058594 248.652344 C 357.058594 248.769531 357.152344 248.863281 357.269531 248.863281 C 357.386719 248.863281 357.480469 248.769531 357.480469 248.652344 Z M 357.480469 248.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.960938 248.445312 C 356.960938 248.328125 356.867188 248.234375 356.75 248.234375 C 356.632812 248.234375 356.539062 248.328125 356.539062 248.445312 C 356.539062 248.5625 356.632812 248.65625 356.75 248.65625 C 356.867188 248.65625 356.960938 248.5625 356.960938 248.445312 Z M 356.960938 248.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.226562 244.984375 C 354.226562 244.867188 354.132812 244.773438 354.015625 244.773438 C 353.898438 244.773438 353.804688 244.867188 353.804688 244.984375 C 353.804688 245.101562 353.898438 245.195312 354.015625 245.195312 C 354.132812 245.195312 354.226562 245.101562 354.226562 244.984375 Z M 354.226562 244.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.820312 243.316406 C 353.820312 243.199219 353.726562 243.105469 353.609375 243.105469 C 353.492188 243.105469 353.398438 243.199219 353.398438 243.316406 C 353.398438 243.433594 353.492188 243.527344 353.609375 243.527344 C 353.726562 243.527344 353.820312 243.433594 353.820312 243.316406 Z M 353.820312 243.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.113281 243.351562 C 354.113281 243.234375 354.019531 243.140625 353.902344 243.140625 C 353.785156 243.140625 353.691406 243.234375 353.691406 243.351562 C 353.691406 243.46875 353.785156 243.5625 353.902344 243.5625 C 354.019531 243.5625 354.113281 243.46875 354.113281 243.351562 Z M 354.113281 243.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.648438 243.902344 C 356.648438 243.785156 356.554688 243.691406 356.4375 243.691406 C 356.320312 243.691406 356.226562 243.785156 356.226562 243.902344 C 356.226562 244.019531 356.320312 244.113281 356.4375 244.113281 C 356.554688 244.113281 356.648438 244.019531 356.648438 243.902344 Z M 356.648438 243.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.214844 244.804688 C 355.214844 244.6875 355.121094 244.59375 355.003906 244.59375 C 354.886719 244.59375 354.792969 244.6875 354.792969 244.804688 C 354.792969 244.921875 354.886719 245.015625 355.003906 245.015625 C 355.121094 245.015625 355.214844 244.921875 355.214844 244.804688 Z M 355.214844 244.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.769531 243.933594 C 354.769531 243.816406 354.675781 243.722656 354.558594 243.722656 C 354.441406 243.722656 354.347656 243.816406 354.347656 243.933594 C 354.347656 244.050781 354.441406 244.144531 354.558594 244.144531 C 354.675781 244.144531 354.769531 244.050781 354.769531 243.933594 Z M 354.769531 243.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 354.136719 242.503906 C 354.136719 242.386719 354.042969 242.292969 353.925781 242.292969 C 353.808594 242.292969 353.714844 242.386719 353.714844 242.503906 C 353.714844 242.621094 353.808594 242.714844 353.925781 242.714844 C 354.042969 242.714844 354.136719 242.621094 354.136719 242.503906 Z M 354.136719 242.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.765625 240.652344 C 351.765625 240.535156 351.671875 240.441406 351.554688 240.441406 C 351.4375 240.441406 351.34375 240.535156 351.34375 240.652344 C 351.34375 240.769531 351.4375 240.863281 351.554688 240.863281 C 351.671875 240.863281 351.765625 240.769531 351.765625 240.652344 Z M 351.765625 240.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 348.023438 239.238281 C 348.023438 239.121094 347.929688 239.027344 347.8125 239.027344 C 347.695312 239.027344 347.601562 239.121094 347.601562 239.238281 C 347.601562 239.355469 347.695312 239.449219 347.8125 239.449219 C 347.929688 239.449219 348.023438 239.355469 348.023438 239.238281 Z M 348.023438 239.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 346.515625 238.023438 C 346.515625 237.90625 346.421875 237.8125 346.304688 237.8125 C 346.1875 237.8125 346.09375 237.90625 346.09375 238.023438 C 346.09375 238.140625 346.1875 238.234375 346.304688 238.234375 C 346.421875 238.234375 346.515625 238.140625 346.515625 238.023438 Z M 346.515625 238.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 349.785156 237.011719 C 349.785156 236.894531 349.691406 236.800781 349.574219 236.800781 C 349.457031 236.800781 349.363281 236.894531 349.363281 237.011719 C 349.363281 237.128906 349.457031 237.222656 349.574219 237.222656 C 349.691406 237.222656 349.785156 237.128906 349.785156 237.011719 Z M 349.785156 237.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 346.964844 238.042969 C 346.964844 237.925781 346.871094 237.832031 346.753906 237.832031 C 346.636719 237.832031 346.542969 237.925781 346.542969 238.042969 C 346.542969 238.160156 346.636719 238.253906 346.753906 238.253906 C 346.871094 238.253906 346.964844 238.160156 346.964844 238.042969 Z M 346.964844 238.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 346.132812 238.226562 C 346.132812 238.109375 346.039062 238.015625 345.921875 238.015625 C 345.804688 238.015625 345.710938 238.109375 345.710938 238.226562 C 345.710938 238.34375 345.804688 238.4375 345.921875 238.4375 C 346.039062 238.4375 346.132812 238.34375 346.132812 238.226562 Z M 346.132812 238.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 349.480469 242.28125 C 349.480469 242.164062 349.386719 242.070312 349.269531 242.070312 C 349.152344 242.070312 349.058594 242.164062 349.058594 242.28125 C 349.058594 242.398438 349.152344 242.492188 349.269531 242.492188 C 349.386719 242.492188 349.480469 242.398438 349.480469 242.28125 Z M 349.480469 242.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 348.785156 245.074219 C 348.785156 244.957031 348.691406 244.863281 348.574219 244.863281 C 348.457031 244.863281 348.363281 244.957031 348.363281 245.074219 C 348.363281 245.191406 348.457031 245.285156 348.574219 245.285156 C 348.691406 245.285156 348.785156 245.191406 348.785156 245.074219 Z M 348.785156 245.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 350.859375 240.183594 C 350.859375 240.066406 350.765625 239.972656 350.648438 239.972656 C 350.53125 239.972656 350.4375 240.066406 350.4375 240.183594 C 350.4375 240.300781 350.53125 240.394531 350.648438 240.394531 C 350.765625 240.394531 350.859375 240.300781 350.859375 240.183594 Z M 350.859375 240.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 348.59375 237.105469 C 348.59375 236.988281 348.5 236.894531 348.382812 236.894531 C 348.265625 236.894531 348.171875 236.988281 348.171875 237.105469 C 348.171875 237.222656 348.265625 237.316406 348.382812 237.316406 C 348.5 237.316406 348.59375 237.222656 348.59375 237.105469 Z M 348.59375 237.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.792969 235.136719 C 351.792969 235.019531 351.699219 234.925781 351.582031 234.925781 C 351.464844 234.925781 351.371094 235.019531 351.371094 235.136719 C 351.371094 235.253906 351.464844 235.347656 351.582031 235.347656 C 351.699219 235.347656 351.792969 235.253906 351.792969 235.136719 Z M 351.792969 235.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 353.492188 232.679688 C 353.492188 232.5625 353.398438 232.46875 353.28125 232.46875 C 353.164062 232.46875 353.070312 232.5625 353.070312 232.679688 C 353.070312 232.796875 353.164062 232.890625 353.28125 232.890625 C 353.398438 232.890625 353.492188 232.796875 353.492188 232.679688 Z M 353.492188 232.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 348.390625 234.847656 C 348.390625 234.730469 348.296875 234.636719 348.179688 234.636719 C 348.0625 234.636719 347.96875 234.730469 347.96875 234.847656 C 347.96875 234.964844 348.0625 235.058594 348.179688 235.058594 C 348.296875 235.058594 348.390625 234.964844 348.390625 234.847656 Z M 348.390625 234.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 344.917969 235.320312 C 344.917969 235.203125 344.824219 235.109375 344.707031 235.109375 C 344.589844 235.109375 344.496094 235.203125 344.496094 235.320312 C 344.496094 235.4375 344.589844 235.53125 344.707031 235.53125 C 344.824219 235.53125 344.917969 235.4375 344.917969 235.320312 Z M 344.917969 235.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 344.394531 233.015625 C 344.394531 232.898438 344.300781 232.804688 344.183594 232.804688 C 344.066406 232.804688 343.972656 232.898438 343.972656 233.015625 C 343.972656 233.132812 344.066406 233.226562 344.183594 233.226562 C 344.300781 233.226562 344.394531 233.132812 344.394531 233.015625 Z M 344.394531 233.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 344.683594 232.203125 C 344.683594 232.085938 344.589844 231.992188 344.472656 231.992188 C 344.355469 231.992188 344.261719 232.085938 344.261719 232.203125 C 344.261719 232.320312 344.355469 232.414062 344.472656 232.414062 C 344.589844 232.414062 344.683594 232.320312 344.683594 232.203125 Z M 344.683594 232.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 344.160156 231.855469 C 344.160156 231.738281 344.066406 231.644531 343.949219 231.644531 C 343.832031 231.644531 343.738281 231.738281 343.738281 231.855469 C 343.738281 231.972656 343.832031 232.066406 343.949219 232.066406 C 344.066406 232.066406 344.160156 231.972656 344.160156 231.855469 Z M 344.160156 231.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 342.125 229.578125 C 342.125 229.460938 342.03125 229.367188 341.914062 229.367188 C 341.796875 229.367188 341.703125 229.460938 341.703125 229.578125 C 341.703125 229.695312 341.796875 229.789062 341.914062 229.789062 C 342.03125 229.789062 342.125 229.695312 342.125 229.578125 Z M 342.125 229.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 344.089844 228.367188 C 344.089844 228.25 343.996094 228.15625 343.878906 228.15625 C 343.761719 228.15625 343.667969 228.25 343.667969 228.367188 C 343.667969 228.484375 343.761719 228.578125 343.878906 228.578125 C 343.996094 228.578125 344.089844 228.484375 344.089844 228.367188 Z M 344.089844 228.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 346.648438 226.839844 C 346.648438 226.722656 346.554688 226.628906 346.4375 226.628906 C 346.320312 226.628906 346.226562 226.722656 346.226562 226.839844 C 346.226562 226.957031 346.320312 227.050781 346.4375 227.050781 C 346.554688 227.050781 346.648438 226.957031 346.648438 226.839844 Z M 346.648438 226.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 345.460938 229.144531 C 345.460938 229.027344 345.367188 228.933594 345.25 228.933594 C 345.132812 228.933594 345.039062 229.027344 345.039062 229.144531 C 345.039062 229.261719 345.132812 229.355469 345.25 229.355469 C 345.367188 229.355469 345.460938 229.261719 345.460938 229.144531 Z M 345.460938 229.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 344.054688 230.863281 C 344.054688 230.746094 343.960938 230.652344 343.84375 230.652344 C 343.726562 230.652344 343.632812 230.746094 343.632812 230.863281 C 343.632812 230.980469 343.726562 231.074219 343.84375 231.074219 C 343.960938 231.074219 344.054688 230.980469 344.054688 230.863281 Z M 344.054688 230.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 343.085938 232.496094 C 343.085938 232.378906 342.992188 232.285156 342.875 232.285156 C 342.757812 232.285156 342.664062 232.378906 342.664062 232.496094 C 342.664062 232.613281 342.757812 232.707031 342.875 232.707031 C 342.992188 232.707031 343.085938 232.613281 343.085938 232.496094 Z M 343.085938 232.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 348.367188 233.253906 C 348.367188 233.136719 348.273438 233.042969 348.15625 233.042969 C 348.039062 233.042969 347.945312 233.136719 347.945312 233.253906 C 347.945312 233.371094 348.039062 233.464844 348.15625 233.464844 C 348.273438 233.464844 348.367188 233.371094 348.367188 233.253906 Z M 348.367188 233.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 348.996094 232.03125 C 348.996094 231.914062 348.902344 231.820312 348.785156 231.820312 C 348.667969 231.820312 348.574219 231.914062 348.574219 232.03125 C 348.574219 232.148438 348.667969 232.242188 348.785156 232.242188 C 348.902344 232.242188 348.996094 232.148438 348.996094 232.03125 Z M 348.996094 232.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 350.230469 230.914062 C 350.230469 230.796875 350.136719 230.703125 350.019531 230.703125 C 349.902344 230.703125 349.808594 230.796875 349.808594 230.914062 C 349.808594 231.03125 349.902344 231.125 350.019531 231.125 C 350.136719 231.125 350.230469 231.03125 350.230469 230.914062 Z M 350.230469 230.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 349.28125 229.257812 C 349.28125 229.140625 349.1875 229.046875 349.070312 229.046875 C 348.953125 229.046875 348.859375 229.140625 348.859375 229.257812 C 348.859375 229.375 348.953125 229.46875 349.070312 229.46875 C 349.1875 229.46875 349.28125 229.375 349.28125 229.257812 Z M 349.28125 229.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 349.96875 228.910156 C 349.96875 228.792969 349.875 228.699219 349.757812 228.699219 C 349.640625 228.699219 349.546875 228.792969 349.546875 228.910156 C 349.546875 229.027344 349.640625 229.121094 349.757812 229.121094 C 349.875 229.121094 349.96875 229.027344 349.96875 228.910156 Z M 349.96875 228.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 349.3125 227.992188 C 349.3125 227.875 349.21875 227.78125 349.101562 227.78125 C 348.984375 227.78125 348.890625 227.875 348.890625 227.992188 C 348.890625 228.109375 348.984375 228.203125 349.101562 228.203125 C 349.21875 228.203125 349.3125 228.109375 349.3125 227.992188 Z M 349.3125 227.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 352.183594 229.335938 C 352.183594 229.21875 352.089844 229.125 351.972656 229.125 C 351.855469 229.125 351.761719 229.21875 351.761719 229.335938 C 351.761719 229.453125 351.855469 229.546875 351.972656 229.546875 C 352.089844 229.546875 352.183594 229.453125 352.183594 229.335938 Z M 352.183594 229.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 356.699219 230.125 C 356.699219 230.007812 356.605469 229.914062 356.488281 229.914062 C 356.371094 229.914062 356.277344 230.007812 356.277344 230.125 C 356.277344 230.242188 356.371094 230.335938 356.488281 230.335938 C 356.605469 230.335938 356.699219 230.242188 356.699219 230.125 Z M 356.699219 230.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 355.179688 231.132812 C 355.179688 231.015625 355.085938 230.921875 354.96875 230.921875 C 354.851562 230.921875 354.757812 231.015625 354.757812 231.132812 C 354.757812 231.25 354.851562 231.34375 354.96875 231.34375 C 355.085938 231.34375 355.179688 231.25 355.179688 231.132812 Z M 355.179688 231.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 352.34375 227.84375 C 352.34375 227.726562 352.25 227.632812 352.132812 227.632812 C 352.015625 227.632812 351.921875 227.726562 351.921875 227.84375 C 351.921875 227.960938 352.015625 228.054688 352.132812 228.054688 C 352.25 228.054688 352.34375 227.960938 352.34375 227.84375 Z M 352.34375 227.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 351.394531 227.769531 C 351.394531 227.652344 351.300781 227.558594 351.183594 227.558594 C 351.066406 227.558594 350.972656 227.652344 350.972656 227.769531 C 350.972656 227.886719 351.066406 227.980469 351.183594 227.980469 C 351.300781 227.980469 351.394531 227.886719 351.394531 227.769531 Z M 351.394531 227.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 350.355469 225.941406 C 350.355469 225.824219 350.261719 225.730469 350.144531 225.730469 C 350.027344 225.730469 349.933594 225.824219 349.933594 225.941406 C 349.933594 226.058594 350.027344 226.152344 350.144531 226.152344 C 350.261719 226.152344 350.355469 226.058594 350.355469 225.941406 Z M 350.355469 225.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 344.875 228.394531 C 344.875 228.277344 344.78125 228.183594 344.664062 228.183594 C 344.546875 228.183594 344.453125 228.277344 344.453125 228.394531 C 344.453125 228.511719 344.546875 228.605469 344.664062 228.605469 C 344.78125 228.605469 344.875 228.511719 344.875 228.394531 Z M 344.875 228.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 344.304688 230.199219 C 344.304688 230.082031 344.210938 229.988281 344.09375 229.988281 C 343.976562 229.988281 343.882812 230.082031 343.882812 230.199219 C 343.882812 230.316406 343.976562 230.410156 344.09375 230.410156 C 344.210938 230.410156 344.304688 230.316406 344.304688 230.199219 Z M 344.304688 230.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 346.3125 233.148438 C 346.3125 233.03125 346.21875 232.9375 346.101562 232.9375 C 345.984375 232.9375 345.890625 233.03125 345.890625 233.148438 C 345.890625 233.265625 345.984375 233.359375 346.101562 233.359375 C 346.21875 233.359375 346.3125 233.265625 346.3125 233.148438 Z M 346.3125 233.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 343.902344 236.082031 C 343.902344 235.964844 343.808594 235.871094 343.691406 235.871094 C 343.574219 235.871094 343.480469 235.964844 343.480469 236.082031 C 343.480469 236.199219 343.574219 236.292969 343.691406 236.292969 C 343.808594 236.292969 343.902344 236.199219 343.902344 236.082031 Z M 343.902344 236.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 342.152344 235.617188 C 342.152344 235.5 342.058594 235.40625 341.941406 235.40625 C 341.824219 235.40625 341.730469 235.5 341.730469 235.617188 C 341.730469 235.734375 341.824219 235.828125 341.941406 235.828125 C 342.058594 235.828125 342.152344 235.734375 342.152344 235.617188 Z M 342.152344 235.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 341.644531 236.109375 C 341.644531 235.992188 341.550781 235.898438 341.433594 235.898438 C 341.316406 235.898438 341.222656 235.992188 341.222656 236.109375 C 341.222656 236.226562 341.316406 236.320312 341.433594 236.320312 C 341.550781 236.320312 341.644531 236.226562 341.644531 236.109375 Z M 341.644531 236.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 343.871094 238.109375 C 343.871094 237.992188 343.777344 237.898438 343.660156 237.898438 C 343.542969 237.898438 343.449219 237.992188 343.449219 238.109375 C 343.449219 238.226562 343.542969 238.320312 343.660156 238.320312 C 343.777344 238.320312 343.871094 238.226562 343.871094 238.109375 Z M 343.871094 238.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 343.578125 238.195312 C 343.578125 238.078125 343.484375 237.984375 343.367188 237.984375 C 343.25 237.984375 343.15625 238.078125 343.15625 238.195312 C 343.15625 238.3125 343.25 238.40625 343.367188 238.40625 C 343.484375 238.40625 343.578125 238.3125 343.578125 238.195312 Z M 343.578125 238.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 344.605469 233.710938 C 344.605469 233.59375 344.511719 233.5 344.394531 233.5 C 344.277344 233.5 344.183594 233.59375 344.183594 233.710938 C 344.183594 233.828125 344.277344 233.921875 344.394531 233.921875 C 344.511719 233.921875 344.605469 233.828125 344.605469 233.710938 Z M 344.605469 233.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 340.71875 235.609375 C 340.71875 235.492188 340.625 235.398438 340.507812 235.398438 C 340.390625 235.398438 340.296875 235.492188 340.296875 235.609375 C 340.296875 235.726562 340.390625 235.820312 340.507812 235.820312 C 340.625 235.820312 340.71875 235.726562 340.71875 235.609375 Z M 340.71875 235.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 337.203125 235.050781 C 337.203125 234.933594 337.109375 234.839844 336.992188 234.839844 C 336.875 234.839844 336.78125 234.933594 336.78125 235.050781 C 336.78125 235.167969 336.875 235.261719 336.992188 235.261719 C 337.109375 235.261719 337.203125 235.167969 337.203125 235.050781 Z M 337.203125 235.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 338.84375 235.933594 C 338.84375 235.816406 338.75 235.722656 338.632812 235.722656 C 338.515625 235.722656 338.421875 235.816406 338.421875 235.933594 C 338.421875 236.050781 338.515625 236.144531 338.632812 236.144531 C 338.75 236.144531 338.84375 236.050781 338.84375 235.933594 Z M 338.84375 235.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 337.699219 238.761719 C 337.699219 238.644531 337.605469 238.550781 337.488281 238.550781 C 337.371094 238.550781 337.277344 238.644531 337.277344 238.761719 C 337.277344 238.878906 337.371094 238.972656 337.488281 238.972656 C 337.605469 238.972656 337.699219 238.878906 337.699219 238.761719 Z M 337.699219 238.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 337.136719 238.21875 C 337.136719 238.101562 337.042969 238.007812 336.925781 238.007812 C 336.808594 238.007812 336.714844 238.101562 336.714844 238.21875 C 336.714844 238.335938 336.808594 238.429688 336.925781 238.429688 C 337.042969 238.429688 337.136719 238.335938 337.136719 238.21875 Z M 337.136719 238.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 339.949219 238.917969 C 339.949219 238.800781 339.855469 238.707031 339.738281 238.707031 C 339.621094 238.707031 339.527344 238.800781 339.527344 238.917969 C 339.527344 239.035156 339.621094 239.128906 339.738281 239.128906 C 339.855469 239.128906 339.949219 239.035156 339.949219 238.917969 Z M 339.949219 238.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 338.609375 239.09375 C 338.609375 238.976562 338.515625 238.882812 338.398438 238.882812 C 338.28125 238.882812 338.1875 238.976562 338.1875 239.09375 C 338.1875 239.210938 338.28125 239.304688 338.398438 239.304688 C 338.515625 239.304688 338.609375 239.210938 338.609375 239.09375 Z M 338.609375 239.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 336.613281 236.914062 C 336.613281 236.796875 336.519531 236.703125 336.402344 236.703125 C 336.285156 236.703125 336.191406 236.796875 336.191406 236.914062 C 336.191406 237.03125 336.285156 237.125 336.402344 237.125 C 336.519531 237.125 336.613281 237.03125 336.613281 236.914062 Z M 336.613281 236.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 338.476562 236.414062 C 338.476562 236.296875 338.382812 236.203125 338.265625 236.203125 C 338.148438 236.203125 338.054688 236.296875 338.054688 236.414062 C 338.054688 236.53125 338.148438 236.625 338.265625 236.625 C 338.382812 236.625 338.476562 236.53125 338.476562 236.414062 Z M 338.476562 236.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 337.011719 236.390625 C 337.011719 236.273438 336.917969 236.179688 336.800781 236.179688 C 336.683594 236.179688 336.589844 236.273438 336.589844 236.390625 C 336.589844 236.507812 336.683594 236.601562 336.800781 236.601562 C 336.917969 236.601562 337.011719 236.507812 337.011719 236.390625 Z M 337.011719 236.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 335.535156 242.09375 C 335.535156 241.976562 335.441406 241.882812 335.324219 241.882812 C 335.207031 241.882812 335.113281 241.976562 335.113281 242.09375 C 335.113281 242.210938 335.207031 242.304688 335.324219 242.304688 C 335.441406 242.304688 335.535156 242.210938 335.535156 242.09375 Z M 335.535156 242.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 334.644531 242.058594 C 334.644531 241.941406 334.550781 241.847656 334.433594 241.847656 C 334.316406 241.847656 334.222656 241.941406 334.222656 242.058594 C 334.222656 242.175781 334.316406 242.269531 334.433594 242.269531 C 334.550781 242.269531 334.644531 242.175781 334.644531 242.058594 Z M 334.644531 242.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 334.585938 242.804688 C 334.585938 242.6875 334.492188 242.59375 334.375 242.59375 C 334.257812 242.59375 334.164062 242.6875 334.164062 242.804688 C 334.164062 242.921875 334.257812 243.015625 334.375 243.015625 C 334.492188 243.015625 334.585938 242.921875 334.585938 242.804688 Z M 334.585938 242.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 335.847656 244.035156 C 335.847656 243.917969 335.753906 243.824219 335.636719 243.824219 C 335.519531 243.824219 335.425781 243.917969 335.425781 244.035156 C 335.425781 244.152344 335.519531 244.246094 335.636719 244.246094 C 335.753906 244.246094 335.847656 244.152344 335.847656 244.035156 Z M 335.847656 244.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 335.601562 240.882812 C 335.601562 240.765625 335.507812 240.671875 335.390625 240.671875 C 335.273438 240.671875 335.179688 240.765625 335.179688 240.882812 C 335.179688 241 335.273438 241.09375 335.390625 241.09375 C 335.507812 241.09375 335.601562 241 335.601562 240.882812 Z M 335.601562 240.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 338.488281 240.742188 C 338.488281 240.625 338.394531 240.53125 338.277344 240.53125 C 338.160156 240.53125 338.066406 240.625 338.066406 240.742188 C 338.066406 240.859375 338.160156 240.953125 338.277344 240.953125 C 338.394531 240.953125 338.488281 240.859375 338.488281 240.742188 Z M 338.488281 240.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 338.824219 241.390625 C 338.824219 241.273438 338.730469 241.179688 338.613281 241.179688 C 338.496094 241.179688 338.402344 241.273438 338.402344 241.390625 C 338.402344 241.507812 338.496094 241.601562 338.613281 241.601562 C 338.730469 241.601562 338.824219 241.507812 338.824219 241.390625 Z M 338.824219 241.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 339.617188 241.417969 C 339.617188 241.300781 339.523438 241.207031 339.40625 241.207031 C 339.289062 241.207031 339.195312 241.300781 339.195312 241.417969 C 339.195312 241.535156 339.289062 241.628906 339.40625 241.628906 C 339.523438 241.628906 339.617188 241.535156 339.617188 241.417969 Z M 339.617188 241.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 338.996094 241.890625 C 338.996094 241.773438 338.902344 241.679688 338.785156 241.679688 C 338.667969 241.679688 338.574219 241.773438 338.574219 241.890625 C 338.574219 242.007812 338.667969 242.101562 338.785156 242.101562 C 338.902344 242.101562 338.996094 242.007812 338.996094 241.890625 Z M 338.996094 241.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 337.640625 241.617188 C 337.640625 241.5 337.546875 241.40625 337.429688 241.40625 C 337.3125 241.40625 337.21875 241.5 337.21875 241.617188 C 337.21875 241.734375 337.3125 241.828125 337.429688 241.828125 C 337.546875 241.828125 337.640625 241.734375 337.640625 241.617188 Z M 337.640625 241.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 338.003906 239.695312 C 338.003906 239.578125 337.910156 239.484375 337.792969 239.484375 C 337.675781 239.484375 337.582031 239.578125 337.582031 239.695312 C 337.582031 239.8125 337.675781 239.90625 337.792969 239.90625 C 337.910156 239.90625 338.003906 239.8125 338.003906 239.695312 Z M 338.003906 239.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 339.167969 239.226562 C 339.167969 239.109375 339.074219 239.015625 338.957031 239.015625 C 338.839844 239.015625 338.746094 239.109375 338.746094 239.226562 C 338.746094 239.34375 338.839844 239.4375 338.957031 239.4375 C 339.074219 239.4375 339.167969 239.34375 339.167969 239.226562 Z M 339.167969 239.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 340.367188 241.425781 C 340.367188 241.308594 340.273438 241.214844 340.15625 241.214844 C 340.039062 241.214844 339.945312 241.308594 339.945312 241.425781 C 339.945312 241.542969 340.039062 241.636719 340.15625 241.636719 C 340.273438 241.636719 340.367188 241.542969 340.367188 241.425781 Z M 340.367188 241.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 337.203125 241.085938 C 337.203125 240.96875 337.109375 240.875 336.992188 240.875 C 336.875 240.875 336.78125 240.96875 336.78125 241.085938 C 336.78125 241.203125 336.875 241.296875 336.992188 241.296875 C 337.109375 241.296875 337.203125 241.203125 337.203125 241.085938 Z M 337.203125 241.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 338.644531 238.339844 C 338.644531 238.222656 338.550781 238.128906 338.433594 238.128906 C 338.316406 238.128906 338.222656 238.222656 338.222656 238.339844 C 338.222656 238.457031 338.316406 238.550781 338.433594 238.550781 C 338.550781 238.550781 338.644531 238.457031 338.644531 238.339844 Z M 338.644531 238.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 338.054688 237.894531 C 338.054688 237.777344 337.960938 237.683594 337.84375 237.683594 C 337.726562 237.683594 337.632812 237.777344 337.632812 237.894531 C 337.632812 238.011719 337.726562 238.105469 337.84375 238.105469 C 337.960938 238.105469 338.054688 238.011719 338.054688 237.894531 Z M 338.054688 237.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 339.84375 237.988281 C 339.84375 237.871094 339.75 237.777344 339.632812 237.777344 C 339.515625 237.777344 339.421875 237.871094 339.421875 237.988281 C 339.421875 238.105469 339.515625 238.199219 339.632812 238.199219 C 339.75 238.199219 339.84375 238.105469 339.84375 237.988281 Z M 339.84375 237.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 338.628906 238.953125 C 338.628906 238.835938 338.535156 238.742188 338.417969 238.742188 C 338.300781 238.742188 338.207031 238.835938 338.207031 238.953125 C 338.207031 239.070312 338.300781 239.164062 338.417969 239.164062 C 338.535156 239.164062 338.628906 239.070312 338.628906 238.953125 Z M 338.628906 238.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 335.066406 240.539062 C 335.066406 240.421875 334.972656 240.328125 334.855469 240.328125 C 334.738281 240.328125 334.644531 240.421875 334.644531 240.539062 C 334.644531 240.65625 334.738281 240.75 334.855469 240.75 C 334.972656 240.75 335.066406 240.65625 335.066406 240.539062 Z M 335.066406 240.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 334.4375 237.445312 C 334.4375 237.328125 334.34375 237.234375 334.226562 237.234375 C 334.109375 237.234375 334.015625 237.328125 334.015625 237.445312 C 334.015625 237.5625 334.109375 237.65625 334.226562 237.65625 C 334.34375 237.65625 334.4375 237.5625 334.4375 237.445312 Z M 334.4375 237.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 333.148438 237.195312 C 333.148438 237.078125 333.054688 236.984375 332.9375 236.984375 C 332.820312 236.984375 332.726562 237.078125 332.726562 237.195312 C 332.726562 237.3125 332.820312 237.40625 332.9375 237.40625 C 333.054688 237.40625 333.148438 237.3125 333.148438 237.195312 Z M 333.148438 237.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 337.273438 236.078125 C 337.273438 235.960938 337.179688 235.867188 337.0625 235.867188 C 336.945312 235.867188 336.851562 235.960938 336.851562 236.078125 C 336.851562 236.195312 336.945312 236.289062 337.0625 236.289062 C 337.179688 236.289062 337.273438 236.195312 337.273438 236.078125 Z M 337.273438 236.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 338.816406 234.832031 C 338.816406 234.714844 338.722656 234.621094 338.605469 234.621094 C 338.488281 234.621094 338.394531 234.714844 338.394531 234.832031 C 338.394531 234.949219 338.488281 235.042969 338.605469 235.042969 C 338.722656 235.042969 338.816406 234.949219 338.816406 234.832031 Z M 338.816406 234.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 339.59375 234.152344 C 339.59375 234.035156 339.5 233.941406 339.382812 233.941406 C 339.265625 233.941406 339.171875 234.035156 339.171875 234.152344 C 339.171875 234.269531 339.265625 234.363281 339.382812 234.363281 C 339.5 234.363281 339.59375 234.269531 339.59375 234.152344 Z M 339.59375 234.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 338.617188 231.804688 C 338.617188 231.6875 338.523438 231.59375 338.40625 231.59375 C 338.289062 231.59375 338.195312 231.6875 338.195312 231.804688 C 338.195312 231.921875 338.289062 232.015625 338.40625 232.015625 C 338.523438 232.015625 338.617188 231.921875 338.617188 231.804688 Z M 338.617188 231.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 341.492188 233.871094 C 341.492188 233.753906 341.398438 233.660156 341.28125 233.660156 C 341.164062 233.660156 341.070312 233.753906 341.070312 233.871094 C 341.070312 233.988281 341.164062 234.082031 341.28125 234.082031 C 341.398438 234.082031 341.492188 233.988281 341.492188 233.871094 Z M 341.492188 233.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 341.191406 235.980469 C 341.191406 235.863281 341.097656 235.769531 340.980469 235.769531 C 340.863281 235.769531 340.769531 235.863281 340.769531 235.980469 C 340.769531 236.097656 340.863281 236.191406 340.980469 236.191406 C 341.097656 236.191406 341.191406 236.097656 341.191406 235.980469 Z M 341.191406 235.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 334.773438 235.722656 C 334.773438 235.605469 334.679688 235.511719 334.5625 235.511719 C 334.445312 235.511719 334.351562 235.605469 334.351562 235.722656 C 334.351562 235.839844 334.445312 235.933594 334.5625 235.933594 C 334.679688 235.933594 334.773438 235.839844 334.773438 235.722656 Z M 334.773438 235.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 332.34375 235.449219 C 332.34375 235.332031 332.25 235.238281 332.132812 235.238281 C 332.015625 235.238281 331.921875 235.332031 331.921875 235.449219 C 331.921875 235.566406 332.015625 235.660156 332.132812 235.660156 C 332.25 235.660156 332.34375 235.566406 332.34375 235.449219 Z M 332.34375 235.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 331.648438 233.25 C 331.648438 233.132812 331.554688 233.039062 331.4375 233.039062 C 331.320312 233.039062 331.226562 233.132812 331.226562 233.25 C 331.226562 233.367188 331.320312 233.460938 331.4375 233.460938 C 331.554688 233.460938 331.648438 233.367188 331.648438 233.25 Z M 331.648438 233.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 331.515625 232.9375 C 331.515625 232.820312 331.421875 232.726562 331.304688 232.726562 C 331.1875 232.726562 331.09375 232.820312 331.09375 232.9375 C 331.09375 233.054688 331.1875 233.148438 331.304688 233.148438 C 331.421875 233.148438 331.515625 233.054688 331.515625 232.9375 Z M 331.515625 232.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 333.070312 232.695312 C 333.070312 232.578125 332.976562 232.484375 332.859375 232.484375 C 332.742188 232.484375 332.648438 232.578125 332.648438 232.695312 C 332.648438 232.8125 332.742188 232.90625 332.859375 232.90625 C 332.976562 232.90625 333.070312 232.8125 333.070312 232.695312 Z M 333.070312 232.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 333.058594 234.628906 C 333.058594 234.511719 332.964844 234.417969 332.847656 234.417969 C 332.730469 234.417969 332.636719 234.511719 332.636719 234.628906 C 332.636719 234.746094 332.730469 234.839844 332.847656 234.839844 C 332.964844 234.839844 333.058594 234.746094 333.058594 234.628906 Z M 333.058594 234.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 333.089844 236.820312 C 333.089844 236.703125 332.996094 236.609375 332.878906 236.609375 C 332.761719 236.609375 332.667969 236.703125 332.667969 236.820312 C 332.667969 236.9375 332.761719 237.03125 332.878906 237.03125 C 332.996094 237.03125 333.089844 236.9375 333.089844 236.820312 Z M 333.089844 236.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 334.089844 239.109375 C 334.089844 238.992188 333.996094 238.898438 333.878906 238.898438 C 333.761719 238.898438 333.667969 238.992188 333.667969 239.109375 C 333.667969 239.226562 333.761719 239.320312 333.878906 239.320312 C 333.996094 239.320312 334.089844 239.226562 334.089844 239.109375 Z M 334.089844 239.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 332.132812 238.132812 C 332.132812 238.015625 332.039062 237.921875 331.921875 237.921875 C 331.804688 237.921875 331.710938 238.015625 331.710938 238.132812 C 331.710938 238.25 331.804688 238.34375 331.921875 238.34375 C 332.039062 238.34375 332.132812 238.25 332.132812 238.132812 Z M 332.132812 238.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 332.546875 234.585938 C 332.546875 234.46875 332.453125 234.375 332.335938 234.375 C 332.21875 234.375 332.125 234.46875 332.125 234.585938 C 332.125 234.703125 332.21875 234.796875 332.335938 234.796875 C 332.453125 234.796875 332.546875 234.703125 332.546875 234.585938 Z M 332.546875 234.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 330.882812 232.957031 C 330.882812 232.839844 330.789062 232.746094 330.671875 232.746094 C 330.554688 232.746094 330.460938 232.839844 330.460938 232.957031 C 330.460938 233.074219 330.554688 233.167969 330.671875 233.167969 C 330.789062 233.167969 330.882812 233.074219 330.882812 232.957031 Z M 330.882812 232.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 333.191406 236.902344 C 333.191406 236.785156 333.097656 236.691406 332.980469 236.691406 C 332.863281 236.691406 332.769531 236.785156 332.769531 236.902344 C 332.769531 237.019531 332.863281 237.113281 332.980469 237.113281 C 333.097656 237.113281 333.191406 237.019531 333.191406 236.902344 Z M 333.191406 236.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 330.695312 238.304688 C 330.695312 238.1875 330.601562 238.09375 330.484375 238.09375 C 330.367188 238.09375 330.273438 238.1875 330.273438 238.304688 C 330.273438 238.421875 330.367188 238.515625 330.484375 238.515625 C 330.601562 238.515625 330.695312 238.421875 330.695312 238.304688 Z M 330.695312 238.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 334.722656 237.535156 C 334.722656 237.417969 334.628906 237.324219 334.511719 237.324219 C 334.394531 237.324219 334.300781 237.417969 334.300781 237.535156 C 334.300781 237.652344 334.394531 237.746094 334.511719 237.746094 C 334.628906 237.746094 334.722656 237.652344 334.722656 237.535156 Z M 334.722656 237.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 331.285156 239.777344 C 331.285156 239.660156 331.191406 239.566406 331.074219 239.566406 C 330.957031 239.566406 330.863281 239.660156 330.863281 239.777344 C 330.863281 239.894531 330.957031 239.988281 331.074219 239.988281 C 331.191406 239.988281 331.285156 239.894531 331.285156 239.777344 Z M 331.285156 239.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 331.046875 244.070312 C 331.046875 243.953125 330.953125 243.859375 330.835938 243.859375 C 330.71875 243.859375 330.625 243.953125 330.625 244.070312 C 330.625 244.1875 330.71875 244.28125 330.835938 244.28125 C 330.953125 244.28125 331.046875 244.1875 331.046875 244.070312 Z M 331.046875 244.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 328.746094 241.519531 C 328.746094 241.402344 328.652344 241.308594 328.535156 241.308594 C 328.417969 241.308594 328.324219 241.402344 328.324219 241.519531 C 328.324219 241.636719 328.417969 241.730469 328.535156 241.730469 C 328.652344 241.730469 328.746094 241.636719 328.746094 241.519531 Z M 328.746094 241.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 329.726562 239.441406 C 329.726562 239.324219 329.632812 239.230469 329.515625 239.230469 C 329.398438 239.230469 329.304688 239.324219 329.304688 239.441406 C 329.304688 239.558594 329.398438 239.652344 329.515625 239.652344 C 329.632812 239.652344 329.726562 239.558594 329.726562 239.441406 Z M 329.726562 239.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 329.839844 238.535156 C 329.839844 238.417969 329.746094 238.324219 329.628906 238.324219 C 329.511719 238.324219 329.417969 238.417969 329.417969 238.535156 C 329.417969 238.652344 329.511719 238.746094 329.628906 238.746094 C 329.746094 238.746094 329.839844 238.652344 329.839844 238.535156 Z M 329.839844 238.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 329.660156 240.101562 C 329.660156 239.984375 329.566406 239.890625 329.449219 239.890625 C 329.332031 239.890625 329.238281 239.984375 329.238281 240.101562 C 329.238281 240.21875 329.332031 240.3125 329.449219 240.3125 C 329.566406 240.3125 329.660156 240.21875 329.660156 240.101562 Z M 329.660156 240.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.488281 238.667969 C 326.488281 238.550781 326.394531 238.457031 326.277344 238.457031 C 326.160156 238.457031 326.066406 238.550781 326.066406 238.667969 C 326.066406 238.785156 326.160156 238.878906 326.277344 238.878906 C 326.394531 238.878906 326.488281 238.785156 326.488281 238.667969 Z M 326.488281 238.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.921875 238.046875 C 326.921875 237.929688 326.828125 237.835938 326.710938 237.835938 C 326.59375 237.835938 326.5 237.929688 326.5 238.046875 C 326.5 238.164062 326.59375 238.257812 326.710938 238.257812 C 326.828125 238.257812 326.921875 238.164062 326.921875 238.046875 Z M 326.921875 238.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.386719 236.054688 C 326.386719 235.9375 326.292969 235.84375 326.175781 235.84375 C 326.058594 235.84375 325.964844 235.9375 325.964844 236.054688 C 325.964844 236.171875 326.058594 236.265625 326.175781 236.265625 C 326.292969 236.265625 326.386719 236.171875 326.386719 236.054688 Z M 326.386719 236.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.617188 235.539062 C 325.617188 235.421875 325.523438 235.328125 325.40625 235.328125 C 325.289062 235.328125 325.195312 235.421875 325.195312 235.539062 C 325.195312 235.65625 325.289062 235.75 325.40625 235.75 C 325.523438 235.75 325.617188 235.65625 325.617188 235.539062 Z M 325.617188 235.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.648438 237.617188 C 322.648438 237.5 322.554688 237.40625 322.4375 237.40625 C 322.320312 237.40625 322.226562 237.5 322.226562 237.617188 C 322.226562 237.734375 322.320312 237.828125 322.4375 237.828125 C 322.554688 237.828125 322.648438 237.734375 322.648438 237.617188 Z M 322.648438 237.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.574219 236.925781 C 322.574219 236.808594 322.480469 236.714844 322.363281 236.714844 C 322.246094 236.714844 322.152344 236.808594 322.152344 236.925781 C 322.152344 237.042969 322.246094 237.136719 322.363281 237.136719 C 322.480469 237.136719 322.574219 237.042969 322.574219 236.925781 Z M 322.574219 236.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.910156 237.300781 C 321.910156 237.183594 321.816406 237.089844 321.699219 237.089844 C 321.582031 237.089844 321.488281 237.183594 321.488281 237.300781 C 321.488281 237.417969 321.582031 237.511719 321.699219 237.511719 C 321.816406 237.511719 321.910156 237.417969 321.910156 237.300781 Z M 321.910156 237.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.40625 238.628906 C 326.40625 238.511719 326.3125 238.417969 326.195312 238.417969 C 326.078125 238.417969 325.984375 238.511719 325.984375 238.628906 C 325.984375 238.746094 326.078125 238.839844 326.195312 238.839844 C 326.3125 238.839844 326.40625 238.746094 326.40625 238.628906 Z M 326.40625 238.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.464844 241.058594 C 325.464844 240.941406 325.371094 240.847656 325.253906 240.847656 C 325.136719 240.847656 325.042969 240.941406 325.042969 241.058594 C 325.042969 241.175781 325.136719 241.269531 325.253906 241.269531 C 325.371094 241.269531 325.464844 241.175781 325.464844 241.058594 Z M 325.464844 241.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 320.058594 243.71875 C 320.058594 243.601562 319.964844 243.507812 319.847656 243.507812 C 319.730469 243.507812 319.636719 243.601562 319.636719 243.71875 C 319.636719 243.835938 319.730469 243.929688 319.847656 243.929688 C 319.964844 243.929688 320.058594 243.835938 320.058594 243.71875 Z M 320.058594 243.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.722656 241.429688 C 321.722656 241.3125 321.628906 241.21875 321.511719 241.21875 C 321.394531 241.21875 321.300781 241.3125 321.300781 241.429688 C 321.300781 241.546875 321.394531 241.640625 321.511719 241.640625 C 321.628906 241.640625 321.722656 241.546875 321.722656 241.429688 Z M 321.722656 241.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 320.707031 237.683594 C 320.707031 237.566406 320.613281 237.472656 320.496094 237.472656 C 320.378906 237.472656 320.285156 237.566406 320.285156 237.683594 C 320.285156 237.800781 320.378906 237.894531 320.496094 237.894531 C 320.613281 237.894531 320.707031 237.800781 320.707031 237.683594 Z M 320.707031 237.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 320.105469 234.296875 C 320.105469 234.179688 320.011719 234.085938 319.894531 234.085938 C 319.777344 234.085938 319.683594 234.179688 319.683594 234.296875 C 319.683594 234.414062 319.777344 234.507812 319.894531 234.507812 C 320.011719 234.507812 320.105469 234.414062 320.105469 234.296875 Z M 320.105469 234.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 318.085938 237.644531 C 318.085938 237.527344 317.992188 237.433594 317.875 237.433594 C 317.757812 237.433594 317.664062 237.527344 317.664062 237.644531 C 317.664062 237.761719 317.757812 237.855469 317.875 237.855469 C 317.992188 237.855469 318.085938 237.761719 318.085938 237.644531 Z M 318.085938 237.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.316406 238.515625 C 321.316406 238.398438 321.222656 238.304688 321.105469 238.304688 C 320.988281 238.304688 320.894531 238.398438 320.894531 238.515625 C 320.894531 238.632812 320.988281 238.726562 321.105469 238.726562 C 321.222656 238.726562 321.316406 238.632812 321.316406 238.515625 Z M 321.316406 238.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.570312 240 C 324.570312 239.882812 324.476562 239.789062 324.359375 239.789062 C 324.242188 239.789062 324.148438 239.882812 324.148438 240 C 324.148438 240.117188 324.242188 240.210938 324.359375 240.210938 C 324.476562 240.210938 324.570312 240.117188 324.570312 240 Z M 324.570312 240 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.550781 239.761719 C 325.550781 239.644531 325.457031 239.550781 325.339844 239.550781 C 325.222656 239.550781 325.128906 239.644531 325.128906 239.761719 C 325.128906 239.878906 325.222656 239.972656 325.339844 239.972656 C 325.457031 239.972656 325.550781 239.878906 325.550781 239.761719 Z M 325.550781 239.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.675781 237.316406 C 326.675781 237.199219 326.582031 237.105469 326.464844 237.105469 C 326.347656 237.105469 326.253906 237.199219 326.253906 237.316406 C 326.253906 237.433594 326.347656 237.527344 326.464844 237.527344 C 326.582031 237.527344 326.675781 237.433594 326.675781 237.316406 Z M 326.675781 237.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.128906 239.824219 C 324.128906 239.707031 324.035156 239.613281 323.917969 239.613281 C 323.800781 239.613281 323.707031 239.707031 323.707031 239.824219 C 323.707031 239.941406 323.800781 240.035156 323.917969 240.035156 C 324.035156 240.035156 324.128906 239.941406 324.128906 239.824219 Z M 324.128906 239.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.242188 241.441406 C 322.242188 241.324219 322.148438 241.230469 322.03125 241.230469 C 321.914062 241.230469 321.820312 241.324219 321.820312 241.441406 C 321.820312 241.558594 321.914062 241.652344 322.03125 241.652344 C 322.148438 241.652344 322.242188 241.558594 322.242188 241.441406 Z M 322.242188 241.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.613281 241.003906 C 322.613281 240.886719 322.519531 240.792969 322.402344 240.792969 C 322.285156 240.792969 322.191406 240.886719 322.191406 241.003906 C 322.191406 241.121094 322.285156 241.214844 322.402344 241.214844 C 322.519531 241.214844 322.613281 241.121094 322.613281 241.003906 Z M 322.613281 241.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.871094 244.109375 C 322.871094 243.992188 322.777344 243.898438 322.660156 243.898438 C 322.542969 243.898438 322.449219 243.992188 322.449219 244.109375 C 322.449219 244.226562 322.542969 244.320312 322.660156 244.320312 C 322.777344 244.320312 322.871094 244.226562 322.871094 244.109375 Z M 322.871094 244.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.394531 244.007812 C 322.394531 243.890625 322.300781 243.796875 322.183594 243.796875 C 322.066406 243.796875 321.972656 243.890625 321.972656 244.007812 C 321.972656 244.125 322.066406 244.21875 322.183594 244.21875 C 322.300781 244.21875 322.394531 244.125 322.394531 244.007812 Z M 322.394531 244.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.308594 246.640625 C 323.308594 246.523438 323.214844 246.429688 323.097656 246.429688 C 322.980469 246.429688 322.886719 246.523438 322.886719 246.640625 C 322.886719 246.757812 322.980469 246.851562 323.097656 246.851562 C 323.214844 246.851562 323.308594 246.757812 323.308594 246.640625 Z M 323.308594 246.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 318.550781 248 C 318.550781 247.882812 318.457031 247.789062 318.339844 247.789062 C 318.222656 247.789062 318.128906 247.882812 318.128906 248 C 318.128906 248.117188 318.222656 248.210938 318.339844 248.210938 C 318.457031 248.210938 318.550781 248.117188 318.550781 248 Z M 318.550781 248 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 318.703125 247.769531 C 318.703125 247.652344 318.609375 247.558594 318.492188 247.558594 C 318.375 247.558594 318.28125 247.652344 318.28125 247.769531 C 318.28125 247.886719 318.375 247.980469 318.492188 247.980469 C 318.609375 247.980469 318.703125 247.886719 318.703125 247.769531 Z M 318.703125 247.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 319.753906 246.191406 C 319.753906 246.074219 319.660156 245.980469 319.542969 245.980469 C 319.425781 245.980469 319.332031 246.074219 319.332031 246.191406 C 319.332031 246.308594 319.425781 246.402344 319.542969 246.402344 C 319.660156 246.402344 319.753906 246.308594 319.753906 246.191406 Z M 319.753906 246.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 320.183594 248.789062 C 320.183594 248.671875 320.089844 248.578125 319.972656 248.578125 C 319.855469 248.578125 319.761719 248.671875 319.761719 248.789062 C 319.761719 248.90625 319.855469 249 319.972656 249 C 320.089844 249 320.183594 248.90625 320.183594 248.789062 Z M 320.183594 248.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.257812 245.898438 C 316.257812 245.78125 316.164062 245.6875 316.046875 245.6875 C 315.929688 245.6875 315.835938 245.78125 315.835938 245.898438 C 315.835938 246.015625 315.929688 246.109375 316.046875 246.109375 C 316.164062 246.109375 316.257812 246.015625 316.257812 245.898438 Z M 316.257812 245.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.40625 245.625 C 315.40625 245.507812 315.3125 245.414062 315.195312 245.414062 C 315.078125 245.414062 314.984375 245.507812 314.984375 245.625 C 314.984375 245.742188 315.078125 245.835938 315.195312 245.835938 C 315.3125 245.835938 315.40625 245.742188 315.40625 245.625 Z M 315.40625 245.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.421875 241.296875 C 313.421875 241.179688 313.328125 241.085938 313.210938 241.085938 C 313.09375 241.085938 313 241.179688 313 241.296875 C 313 241.414062 313.09375 241.507812 313.210938 241.507812 C 313.328125 241.507812 313.421875 241.414062 313.421875 241.296875 Z M 313.421875 241.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.914062 239.800781 C 314.914062 239.683594 314.820312 239.589844 314.703125 239.589844 C 314.585938 239.589844 314.492188 239.683594 314.492188 239.800781 C 314.492188 239.917969 314.585938 240.011719 314.703125 240.011719 C 314.820312 240.011719 314.914062 239.917969 314.914062 239.800781 Z M 314.914062 239.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.804688 238.214844 C 315.804688 238.097656 315.710938 238.003906 315.59375 238.003906 C 315.476562 238.003906 315.382812 238.097656 315.382812 238.214844 C 315.382812 238.332031 315.476562 238.425781 315.59375 238.425781 C 315.710938 238.425781 315.804688 238.332031 315.804688 238.214844 Z M 315.804688 238.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.4375 238.160156 C 317.4375 238.042969 317.34375 237.949219 317.226562 237.949219 C 317.109375 237.949219 317.015625 238.042969 317.015625 238.160156 C 317.015625 238.277344 317.109375 238.371094 317.226562 238.371094 C 317.34375 238.371094 317.4375 238.277344 317.4375 238.160156 Z M 317.4375 238.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 319.191406 237.429688 C 319.191406 237.3125 319.097656 237.21875 318.980469 237.21875 C 318.863281 237.21875 318.769531 237.3125 318.769531 237.429688 C 318.769531 237.546875 318.863281 237.640625 318.980469 237.640625 C 319.097656 237.640625 319.191406 237.546875 319.191406 237.429688 Z M 319.191406 237.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.96875 236.480469 C 317.96875 236.363281 317.875 236.269531 317.757812 236.269531 C 317.640625 236.269531 317.546875 236.363281 317.546875 236.480469 C 317.546875 236.597656 317.640625 236.691406 317.757812 236.691406 C 317.875 236.691406 317.96875 236.597656 317.96875 236.480469 Z M 317.96875 236.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.925781 233.714844 C 317.925781 233.597656 317.832031 233.503906 317.714844 233.503906 C 317.597656 233.503906 317.503906 233.597656 317.503906 233.714844 C 317.503906 233.832031 317.597656 233.925781 317.714844 233.925781 C 317.832031 233.925781 317.925781 233.832031 317.925781 233.714844 Z M 317.925781 233.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.597656 232.824219 C 312.597656 232.707031 312.503906 232.613281 312.386719 232.613281 C 312.269531 232.613281 312.175781 232.707031 312.175781 232.824219 C 312.175781 232.941406 312.269531 233.035156 312.386719 233.035156 C 312.503906 233.035156 312.597656 232.941406 312.597656 232.824219 Z M 312.597656 232.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.3125 234.164062 C 310.3125 234.046875 310.21875 233.953125 310.101562 233.953125 C 309.984375 233.953125 309.890625 234.046875 309.890625 234.164062 C 309.890625 234.28125 309.984375 234.375 310.101562 234.375 C 310.21875 234.375 310.3125 234.28125 310.3125 234.164062 Z M 310.3125 234.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.914062 236.304688 C 308.914062 236.1875 308.820312 236.09375 308.703125 236.09375 C 308.585938 236.09375 308.492188 236.1875 308.492188 236.304688 C 308.492188 236.421875 308.585938 236.515625 308.703125 236.515625 C 308.820312 236.515625 308.914062 236.421875 308.914062 236.304688 Z M 308.914062 236.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.933594 234.988281 C 309.933594 234.871094 309.839844 234.777344 309.722656 234.777344 C 309.605469 234.777344 309.511719 234.871094 309.511719 234.988281 C 309.511719 235.105469 309.605469 235.199219 309.722656 235.199219 C 309.839844 235.199219 309.933594 235.105469 309.933594 234.988281 Z M 309.933594 234.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.015625 233.175781 C 315.015625 233.058594 314.921875 232.964844 314.804688 232.964844 C 314.6875 232.964844 314.59375 233.058594 314.59375 233.175781 C 314.59375 233.292969 314.6875 233.386719 314.804688 233.386719 C 314.921875 233.386719 315.015625 233.292969 315.015625 233.175781 Z M 315.015625 233.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.0625 234.582031 C 316.0625 234.464844 315.96875 234.371094 315.851562 234.371094 C 315.734375 234.371094 315.640625 234.464844 315.640625 234.582031 C 315.640625 234.699219 315.734375 234.792969 315.851562 234.792969 C 315.96875 234.792969 316.0625 234.699219 316.0625 234.582031 Z M 316.0625 234.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.519531 229.894531 C 315.519531 229.777344 315.425781 229.683594 315.308594 229.683594 C 315.191406 229.683594 315.097656 229.777344 315.097656 229.894531 C 315.097656 230.011719 315.191406 230.105469 315.308594 230.105469 C 315.425781 230.105469 315.519531 230.011719 315.519531 229.894531 Z M 315.519531 229.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.226562 228.550781 C 314.226562 228.433594 314.132812 228.339844 314.015625 228.339844 C 313.898438 228.339844 313.804688 228.433594 313.804688 228.550781 C 313.804688 228.667969 313.898438 228.761719 314.015625 228.761719 C 314.132812 228.761719 314.226562 228.667969 314.226562 228.550781 Z M 314.226562 228.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.78125 230.742188 C 315.78125 230.625 315.6875 230.53125 315.570312 230.53125 C 315.453125 230.53125 315.359375 230.625 315.359375 230.742188 C 315.359375 230.859375 315.453125 230.953125 315.570312 230.953125 C 315.6875 230.953125 315.78125 230.859375 315.78125 230.742188 Z M 315.78125 230.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.835938 230.050781 C 313.835938 229.933594 313.742188 229.839844 313.625 229.839844 C 313.507812 229.839844 313.414062 229.933594 313.414062 230.050781 C 313.414062 230.167969 313.507812 230.261719 313.625 230.261719 C 313.742188 230.261719 313.835938 230.167969 313.835938 230.050781 Z M 313.835938 230.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.378906 230.429688 C 314.378906 230.3125 314.285156 230.21875 314.167969 230.21875 C 314.050781 230.21875 313.957031 230.3125 313.957031 230.429688 C 313.957031 230.546875 314.050781 230.640625 314.167969 230.640625 C 314.285156 230.640625 314.378906 230.546875 314.378906 230.429688 Z M 314.378906 230.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.058594 232.582031 C 316.058594 232.464844 315.964844 232.371094 315.847656 232.371094 C 315.730469 232.371094 315.636719 232.464844 315.636719 232.582031 C 315.636719 232.699219 315.730469 232.792969 315.847656 232.792969 C 315.964844 232.792969 316.058594 232.699219 316.058594 232.582031 Z M 316.058594 232.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.339844 229.941406 C 313.339844 229.824219 313.246094 229.730469 313.128906 229.730469 C 313.011719 229.730469 312.917969 229.824219 312.917969 229.941406 C 312.917969 230.058594 313.011719 230.152344 313.128906 230.152344 C 313.246094 230.152344 313.339844 230.058594 313.339844 229.941406 Z M 313.339844 229.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.875 233.648438 C 315.875 233.53125 315.78125 233.4375 315.664062 233.4375 C 315.546875 233.4375 315.453125 233.53125 315.453125 233.648438 C 315.453125 233.765625 315.546875 233.859375 315.664062 233.859375 C 315.78125 233.859375 315.875 233.765625 315.875 233.648438 Z M 315.875 233.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.894531 235.460938 C 312.894531 235.34375 312.800781 235.25 312.683594 235.25 C 312.566406 235.25 312.472656 235.34375 312.472656 235.460938 C 312.472656 235.578125 312.566406 235.671875 312.683594 235.671875 C 312.800781 235.671875 312.894531 235.578125 312.894531 235.460938 Z M 312.894531 235.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.839844 235.367188 C 313.839844 235.25 313.746094 235.15625 313.628906 235.15625 C 313.511719 235.15625 313.417969 235.25 313.417969 235.367188 C 313.417969 235.484375 313.511719 235.578125 313.628906 235.578125 C 313.746094 235.578125 313.839844 235.484375 313.839844 235.367188 Z M 313.839844 235.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.824219 233.785156 C 314.824219 233.667969 314.730469 233.574219 314.613281 233.574219 C 314.496094 233.574219 314.402344 233.667969 314.402344 233.785156 C 314.402344 233.902344 314.496094 233.996094 314.613281 233.996094 C 314.730469 233.996094 314.824219 233.902344 314.824219 233.785156 Z M 314.824219 233.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.296875 235.511719 C 315.296875 235.394531 315.203125 235.300781 315.085938 235.300781 C 314.96875 235.300781 314.875 235.394531 314.875 235.511719 C 314.875 235.628906 314.96875 235.722656 315.085938 235.722656 C 315.203125 235.722656 315.296875 235.628906 315.296875 235.511719 Z M 315.296875 235.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.191406 237.113281 C 313.191406 236.996094 313.097656 236.902344 312.980469 236.902344 C 312.863281 236.902344 312.769531 236.996094 312.769531 237.113281 C 312.769531 237.230469 312.863281 237.324219 312.980469 237.324219 C 313.097656 237.324219 313.191406 237.230469 313.191406 237.113281 Z M 313.191406 237.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.292969 241.300781 C 315.292969 241.183594 315.199219 241.089844 315.082031 241.089844 C 314.964844 241.089844 314.871094 241.183594 314.871094 241.300781 C 314.871094 241.417969 314.964844 241.511719 315.082031 241.511719 C 315.199219 241.511719 315.292969 241.417969 315.292969 241.300781 Z M 315.292969 241.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.257812 242.394531 C 317.257812 242.277344 317.164062 242.183594 317.046875 242.183594 C 316.929688 242.183594 316.835938 242.277344 316.835938 242.394531 C 316.835938 242.511719 316.929688 242.605469 317.046875 242.605469 C 317.164062 242.605469 317.257812 242.511719 317.257812 242.394531 Z M 317.257812 242.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.691406 240.316406 C 316.691406 240.199219 316.597656 240.105469 316.480469 240.105469 C 316.363281 240.105469 316.269531 240.199219 316.269531 240.316406 C 316.269531 240.433594 316.363281 240.527344 316.480469 240.527344 C 316.597656 240.527344 316.691406 240.433594 316.691406 240.316406 Z M 316.691406 240.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.855469 239.121094 C 313.855469 239.003906 313.761719 238.910156 313.644531 238.910156 C 313.527344 238.910156 313.433594 239.003906 313.433594 239.121094 C 313.433594 239.238281 313.527344 239.332031 313.644531 239.332031 C 313.761719 239.332031 313.855469 239.238281 313.855469 239.121094 Z M 313.855469 239.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.972656 242.476562 C 314.972656 242.359375 314.878906 242.265625 314.761719 242.265625 C 314.644531 242.265625 314.550781 242.359375 314.550781 242.476562 C 314.550781 242.59375 314.644531 242.6875 314.761719 242.6875 C 314.878906 242.6875 314.972656 242.59375 314.972656 242.476562 Z M 314.972656 242.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.253906 246.882812 C 315.253906 246.765625 315.160156 246.671875 315.042969 246.671875 C 314.925781 246.671875 314.832031 246.765625 314.832031 246.882812 C 314.832031 247 314.925781 247.09375 315.042969 247.09375 C 315.160156 247.09375 315.253906 247 315.253906 246.882812 Z M 315.253906 246.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.585938 246.351562 C 310.585938 246.234375 310.492188 246.140625 310.375 246.140625 C 310.257812 246.140625 310.164062 246.234375 310.164062 246.351562 C 310.164062 246.46875 310.257812 246.5625 310.375 246.5625 C 310.492188 246.5625 310.585938 246.46875 310.585938 246.351562 Z M 310.585938 246.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.4375 243.605469 C 310.4375 243.488281 310.34375 243.394531 310.226562 243.394531 C 310.109375 243.394531 310.015625 243.488281 310.015625 243.605469 C 310.015625 243.722656 310.109375 243.816406 310.226562 243.816406 C 310.34375 243.816406 310.4375 243.722656 310.4375 243.605469 Z M 310.4375 243.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.628906 245.96875 C 311.628906 245.851562 311.535156 245.757812 311.417969 245.757812 C 311.300781 245.757812 311.207031 245.851562 311.207031 245.96875 C 311.207031 246.085938 311.300781 246.179688 311.417969 246.179688 C 311.535156 246.179688 311.628906 246.085938 311.628906 245.96875 Z M 311.628906 245.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.992188 245.078125 C 307.992188 244.960938 307.898438 244.867188 307.78125 244.867188 C 307.664062 244.867188 307.570312 244.960938 307.570312 245.078125 C 307.570312 245.195312 307.664062 245.289062 307.78125 245.289062 C 307.898438 245.289062 307.992188 245.195312 307.992188 245.078125 Z M 307.992188 245.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.675781 247.371094 C 308.675781 247.253906 308.582031 247.160156 308.464844 247.160156 C 308.347656 247.160156 308.253906 247.253906 308.253906 247.371094 C 308.253906 247.488281 308.347656 247.582031 308.464844 247.582031 C 308.582031 247.582031 308.675781 247.488281 308.675781 247.371094 Z M 308.675781 247.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.480469 249.113281 C 307.480469 248.996094 307.386719 248.902344 307.269531 248.902344 C 307.152344 248.902344 307.058594 248.996094 307.058594 249.113281 C 307.058594 249.230469 307.152344 249.324219 307.269531 249.324219 C 307.386719 249.324219 307.480469 249.230469 307.480469 249.113281 Z M 307.480469 249.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.65625 247.304688 C 307.65625 247.1875 307.5625 247.09375 307.445312 247.09375 C 307.328125 247.09375 307.234375 247.1875 307.234375 247.304688 C 307.234375 247.421875 307.328125 247.515625 307.445312 247.515625 C 307.5625 247.515625 307.65625 247.421875 307.65625 247.304688 Z M 307.65625 247.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.246094 248.515625 C 309.246094 248.398438 309.152344 248.304688 309.035156 248.304688 C 308.917969 248.304688 308.824219 248.398438 308.824219 248.515625 C 308.824219 248.632812 308.917969 248.726562 309.035156 248.726562 C 309.152344 248.726562 309.246094 248.632812 309.246094 248.515625 Z M 309.246094 248.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.902344 252.226562 C 308.902344 252.109375 308.808594 252.015625 308.691406 252.015625 C 308.574219 252.015625 308.480469 252.109375 308.480469 252.226562 C 308.480469 252.34375 308.574219 252.4375 308.691406 252.4375 C 308.808594 252.4375 308.902344 252.34375 308.902344 252.226562 Z M 308.902344 252.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.328125 252.96875 C 308.328125 252.851562 308.234375 252.757812 308.117188 252.757812 C 308 252.757812 307.90625 252.851562 307.90625 252.96875 C 307.90625 253.085938 308 253.179688 308.117188 253.179688 C 308.234375 253.179688 308.328125 253.085938 308.328125 252.96875 Z M 308.328125 252.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.371094 254.539062 C 308.371094 254.421875 308.277344 254.328125 308.160156 254.328125 C 308.042969 254.328125 307.949219 254.421875 307.949219 254.539062 C 307.949219 254.65625 308.042969 254.75 308.160156 254.75 C 308.277344 254.75 308.371094 254.65625 308.371094 254.539062 Z M 308.371094 254.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.75 254.714844 C 306.75 254.597656 306.65625 254.503906 306.539062 254.503906 C 306.421875 254.503906 306.328125 254.597656 306.328125 254.714844 C 306.328125 254.832031 306.421875 254.925781 306.539062 254.925781 C 306.65625 254.925781 306.75 254.832031 306.75 254.714844 Z M 306.75 254.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.039062 254.511719 C 308.039062 254.394531 307.945312 254.300781 307.828125 254.300781 C 307.710938 254.300781 307.617188 254.394531 307.617188 254.511719 C 307.617188 254.628906 307.710938 254.722656 307.828125 254.722656 C 307.945312 254.722656 308.039062 254.628906 308.039062 254.511719 Z M 308.039062 254.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.429688 254.753906 C 306.429688 254.636719 306.335938 254.542969 306.21875 254.542969 C 306.101562 254.542969 306.007812 254.636719 306.007812 254.753906 C 306.007812 254.871094 306.101562 254.964844 306.21875 254.964844 C 306.335938 254.964844 306.429688 254.871094 306.429688 254.753906 Z M 306.429688 254.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.972656 254.75 C 308.972656 254.632812 308.878906 254.539062 308.761719 254.539062 C 308.644531 254.539062 308.550781 254.632812 308.550781 254.75 C 308.550781 254.867188 308.644531 254.960938 308.761719 254.960938 C 308.878906 254.960938 308.972656 254.867188 308.972656 254.75 Z M 308.972656 254.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309 256.589844 C 309 256.472656 308.90625 256.378906 308.789062 256.378906 C 308.671875 256.378906 308.578125 256.472656 308.578125 256.589844 C 308.578125 256.707031 308.671875 256.800781 308.789062 256.800781 C 308.90625 256.800781 309 256.707031 309 256.589844 Z M 309 256.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.160156 256.972656 C 309.160156 256.855469 309.066406 256.761719 308.949219 256.761719 C 308.832031 256.761719 308.738281 256.855469 308.738281 256.972656 C 308.738281 257.089844 308.832031 257.183594 308.949219 257.183594 C 309.066406 257.183594 309.160156 257.089844 309.160156 256.972656 Z M 309.160156 256.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.644531 253.671875 C 310.644531 253.554688 310.550781 253.460938 310.433594 253.460938 C 310.316406 253.460938 310.222656 253.554688 310.222656 253.671875 C 310.222656 253.789062 310.316406 253.882812 310.433594 253.882812 C 310.550781 253.882812 310.644531 253.789062 310.644531 253.671875 Z M 310.644531 253.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.238281 250.433594 C 311.238281 250.316406 311.144531 250.222656 311.027344 250.222656 C 310.910156 250.222656 310.816406 250.316406 310.816406 250.433594 C 310.816406 250.550781 310.910156 250.644531 311.027344 250.644531 C 311.144531 250.644531 311.238281 250.550781 311.238281 250.433594 Z M 311.238281 250.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.492188 253.144531 C 317.492188 253.027344 317.398438 252.933594 317.28125 252.933594 C 317.164062 252.933594 317.070312 253.027344 317.070312 253.144531 C 317.070312 253.261719 317.164062 253.355469 317.28125 253.355469 C 317.398438 253.355469 317.492188 253.261719 317.492188 253.144531 Z M 317.492188 253.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 318.289062 253.667969 C 318.289062 253.550781 318.195312 253.457031 318.078125 253.457031 C 317.960938 253.457031 317.867188 253.550781 317.867188 253.667969 C 317.867188 253.785156 317.960938 253.878906 318.078125 253.878906 C 318.195312 253.878906 318.289062 253.785156 318.289062 253.667969 Z M 318.289062 253.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 318.574219 256.949219 C 318.574219 256.832031 318.480469 256.738281 318.363281 256.738281 C 318.246094 256.738281 318.152344 256.832031 318.152344 256.949219 C 318.152344 257.066406 318.246094 257.160156 318.363281 257.160156 C 318.480469 257.160156 318.574219 257.066406 318.574219 256.949219 Z M 318.574219 256.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.765625 258.238281 C 315.765625 258.121094 315.671875 258.027344 315.554688 258.027344 C 315.4375 258.027344 315.34375 258.121094 315.34375 258.238281 C 315.34375 258.355469 315.4375 258.449219 315.554688 258.449219 C 315.671875 258.449219 315.765625 258.355469 315.765625 258.238281 Z M 315.765625 258.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.964844 254.988281 C 312.964844 254.871094 312.871094 254.777344 312.753906 254.777344 C 312.636719 254.777344 312.542969 254.871094 312.542969 254.988281 C 312.542969 255.105469 312.636719 255.199219 312.753906 255.199219 C 312.871094 255.199219 312.964844 255.105469 312.964844 254.988281 Z M 312.964844 254.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.261719 256.121094 C 312.261719 256.003906 312.167969 255.910156 312.050781 255.910156 C 311.933594 255.910156 311.839844 256.003906 311.839844 256.121094 C 311.839844 256.238281 311.933594 256.332031 312.050781 256.332031 C 312.167969 256.332031 312.261719 256.238281 312.261719 256.121094 Z M 312.261719 256.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.183594 257.808594 C 314.183594 257.691406 314.089844 257.597656 313.972656 257.597656 C 313.855469 257.597656 313.761719 257.691406 313.761719 257.808594 C 313.761719 257.925781 313.855469 258.019531 313.972656 258.019531 C 314.089844 258.019531 314.183594 257.925781 314.183594 257.808594 Z M 314.183594 257.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.101562 256.890625 C 313.101562 256.773438 313.007812 256.679688 312.890625 256.679688 C 312.773438 256.679688 312.679688 256.773438 312.679688 256.890625 C 312.679688 257.007812 312.773438 257.101562 312.890625 257.101562 C 313.007812 257.101562 313.101562 257.007812 313.101562 256.890625 Z M 313.101562 256.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.78125 261.066406 C 309.78125 260.949219 309.6875 260.855469 309.570312 260.855469 C 309.453125 260.855469 309.359375 260.949219 309.359375 261.066406 C 309.359375 261.183594 309.453125 261.277344 309.570312 261.277344 C 309.6875 261.277344 309.78125 261.183594 309.78125 261.066406 Z M 309.78125 261.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.90625 260.082031 C 306.90625 259.964844 306.8125 259.871094 306.695312 259.871094 C 306.578125 259.871094 306.484375 259.964844 306.484375 260.082031 C 306.484375 260.199219 306.578125 260.292969 306.695312 260.292969 C 306.8125 260.292969 306.90625 260.199219 306.90625 260.082031 Z M 306.90625 260.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.8125 258.492188 C 307.8125 258.375 307.71875 258.28125 307.601562 258.28125 C 307.484375 258.28125 307.390625 258.375 307.390625 258.492188 C 307.390625 258.609375 307.484375 258.703125 307.601562 258.703125 C 307.71875 258.703125 307.8125 258.609375 307.8125 258.492188 Z M 307.8125 258.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.460938 255.582031 C 303.460938 255.464844 303.367188 255.371094 303.25 255.371094 C 303.132812 255.371094 303.039062 255.464844 303.039062 255.582031 C 303.039062 255.699219 303.132812 255.792969 303.25 255.792969 C 303.367188 255.792969 303.460938 255.699219 303.460938 255.582031 Z M 303.460938 255.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.253906 255.753906 C 301.253906 255.636719 301.160156 255.542969 301.042969 255.542969 C 300.925781 255.542969 300.832031 255.636719 300.832031 255.753906 C 300.832031 255.871094 300.925781 255.964844 301.042969 255.964844 C 301.160156 255.964844 301.253906 255.871094 301.253906 255.753906 Z M 301.253906 255.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.347656 256.941406 C 299.347656 256.824219 299.253906 256.730469 299.136719 256.730469 C 299.019531 256.730469 298.925781 256.824219 298.925781 256.941406 C 298.925781 257.058594 299.019531 257.152344 299.136719 257.152344 C 299.253906 257.152344 299.347656 257.058594 299.347656 256.941406 Z M 299.347656 256.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.605469 255.773438 C 295.605469 255.65625 295.511719 255.5625 295.394531 255.5625 C 295.277344 255.5625 295.183594 255.65625 295.183594 255.773438 C 295.183594 255.890625 295.277344 255.984375 295.394531 255.984375 C 295.511719 255.984375 295.605469 255.890625 295.605469 255.773438 Z M 295.605469 255.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.722656 258.253906 C 297.722656 258.136719 297.628906 258.042969 297.511719 258.042969 C 297.394531 258.042969 297.300781 258.136719 297.300781 258.253906 C 297.300781 258.371094 297.394531 258.464844 297.511719 258.464844 C 297.628906 258.464844 297.722656 258.371094 297.722656 258.253906 Z M 297.722656 258.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.554688 252.484375 C 297.554688 252.367188 297.460938 252.273438 297.34375 252.273438 C 297.226562 252.273438 297.132812 252.367188 297.132812 252.484375 C 297.132812 252.601562 297.226562 252.695312 297.34375 252.695312 C 297.460938 252.695312 297.554688 252.601562 297.554688 252.484375 Z M 297.554688 252.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.496094 254.84375 C 298.496094 254.726562 298.402344 254.632812 298.285156 254.632812 C 298.167969 254.632812 298.074219 254.726562 298.074219 254.84375 C 298.074219 254.960938 298.167969 255.054688 298.285156 255.054688 C 298.402344 255.054688 298.496094 254.960938 298.496094 254.84375 Z M 298.496094 254.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.390625 253.644531 C 298.390625 253.527344 298.296875 253.433594 298.179688 253.433594 C 298.0625 253.433594 297.96875 253.527344 297.96875 253.644531 C 297.96875 253.761719 298.0625 253.855469 298.179688 253.855469 C 298.296875 253.855469 298.390625 253.761719 298.390625 253.644531 Z M 298.390625 253.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.382812 252.632812 C 300.382812 252.515625 300.289062 252.421875 300.171875 252.421875 C 300.054688 252.421875 299.960938 252.515625 299.960938 252.632812 C 299.960938 252.75 300.054688 252.84375 300.171875 252.84375 C 300.289062 252.84375 300.382812 252.75 300.382812 252.632812 Z M 300.382812 252.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.3125 252.28125 C 298.3125 252.164062 298.21875 252.070312 298.101562 252.070312 C 297.984375 252.070312 297.890625 252.164062 297.890625 252.28125 C 297.890625 252.398438 297.984375 252.492188 298.101562 252.492188 C 298.21875 252.492188 298.3125 252.398438 298.3125 252.28125 Z M 298.3125 252.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.882812 252.332031 C 299.882812 252.214844 299.789062 252.121094 299.671875 252.121094 C 299.554688 252.121094 299.460938 252.214844 299.460938 252.332031 C 299.460938 252.449219 299.554688 252.542969 299.671875 252.542969 C 299.789062 252.542969 299.882812 252.449219 299.882812 252.332031 Z M 299.882812 252.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.097656 250.859375 C 299.097656 250.742188 299.003906 250.648438 298.886719 250.648438 C 298.769531 250.648438 298.675781 250.742188 298.675781 250.859375 C 298.675781 250.976562 298.769531 251.070312 298.886719 251.070312 C 299.003906 251.070312 299.097656 250.976562 299.097656 250.859375 Z M 299.097656 250.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.804688 248.910156 C 299.804688 248.792969 299.710938 248.699219 299.59375 248.699219 C 299.476562 248.699219 299.382812 248.792969 299.382812 248.910156 C 299.382812 249.027344 299.476562 249.121094 299.59375 249.121094 C 299.710938 249.121094 299.804688 249.027344 299.804688 248.910156 Z M 299.804688 248.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.953125 248.929688 C 297.953125 248.8125 297.859375 248.71875 297.742188 248.71875 C 297.625 248.71875 297.53125 248.8125 297.53125 248.929688 C 297.53125 249.046875 297.625 249.140625 297.742188 249.140625 C 297.859375 249.140625 297.953125 249.046875 297.953125 248.929688 Z M 297.953125 248.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.929688 246.902344 C 297.929688 246.785156 297.835938 246.691406 297.71875 246.691406 C 297.601562 246.691406 297.507812 246.785156 297.507812 246.902344 C 297.507812 247.019531 297.601562 247.113281 297.71875 247.113281 C 297.835938 247.113281 297.929688 247.019531 297.929688 246.902344 Z M 297.929688 246.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.511719 243.9375 C 298.511719 243.820312 298.417969 243.726562 298.300781 243.726562 C 298.183594 243.726562 298.089844 243.820312 298.089844 243.9375 C 298.089844 244.054688 298.183594 244.148438 298.300781 244.148438 C 298.417969 244.148438 298.511719 244.054688 298.511719 243.9375 Z M 298.511719 243.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.664062 243.660156 C 296.664062 243.542969 296.570312 243.449219 296.453125 243.449219 C 296.335938 243.449219 296.242188 243.542969 296.242188 243.660156 C 296.242188 243.777344 296.335938 243.871094 296.453125 243.871094 C 296.570312 243.871094 296.664062 243.777344 296.664062 243.660156 Z M 296.664062 243.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.828125 246.242188 C 295.828125 246.125 295.734375 246.03125 295.617188 246.03125 C 295.5 246.03125 295.40625 246.125 295.40625 246.242188 C 295.40625 246.359375 295.5 246.453125 295.617188 246.453125 C 295.734375 246.453125 295.828125 246.359375 295.828125 246.242188 Z M 295.828125 246.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.585938 246.648438 C 293.585938 246.53125 293.492188 246.4375 293.375 246.4375 C 293.257812 246.4375 293.164062 246.53125 293.164062 246.648438 C 293.164062 246.765625 293.257812 246.859375 293.375 246.859375 C 293.492188 246.859375 293.585938 246.765625 293.585938 246.648438 Z M 293.585938 246.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.535156 246.527344 C 291.535156 246.410156 291.441406 246.316406 291.324219 246.316406 C 291.207031 246.316406 291.113281 246.410156 291.113281 246.527344 C 291.113281 246.644531 291.207031 246.738281 291.324219 246.738281 C 291.441406 246.738281 291.535156 246.644531 291.535156 246.527344 Z M 291.535156 246.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.683594 248.601562 C 290.683594 248.484375 290.589844 248.390625 290.472656 248.390625 C 290.355469 248.390625 290.261719 248.484375 290.261719 248.601562 C 290.261719 248.71875 290.355469 248.8125 290.472656 248.8125 C 290.589844 248.8125 290.683594 248.71875 290.683594 248.601562 Z M 290.683594 248.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.335938 250.582031 C 288.335938 250.464844 288.242188 250.371094 288.125 250.371094 C 288.007812 250.371094 287.914062 250.464844 287.914062 250.582031 C 287.914062 250.699219 288.007812 250.792969 288.125 250.792969 C 288.242188 250.792969 288.335938 250.699219 288.335938 250.582031 Z M 288.335938 250.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.925781 253.945312 C 290.925781 253.828125 290.832031 253.734375 290.714844 253.734375 C 290.597656 253.734375 290.503906 253.828125 290.503906 253.945312 C 290.503906 254.0625 290.597656 254.15625 290.714844 254.15625 C 290.832031 254.15625 290.925781 254.0625 290.925781 253.945312 Z M 290.925781 253.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.90625 255.839844 C 290.90625 255.722656 290.8125 255.628906 290.695312 255.628906 C 290.578125 255.628906 290.484375 255.722656 290.484375 255.839844 C 290.484375 255.957031 290.578125 256.050781 290.695312 256.050781 C 290.8125 256.050781 290.90625 255.957031 290.90625 255.839844 Z M 290.90625 255.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.613281 253.746094 C 291.613281 253.628906 291.519531 253.535156 291.402344 253.535156 C 291.285156 253.535156 291.191406 253.628906 291.191406 253.746094 C 291.191406 253.863281 291.285156 253.957031 291.402344 253.957031 C 291.519531 253.957031 291.613281 253.863281 291.613281 253.746094 Z M 291.613281 253.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.625 254.800781 C 290.625 254.683594 290.53125 254.589844 290.414062 254.589844 C 290.296875 254.589844 290.203125 254.683594 290.203125 254.800781 C 290.203125 254.917969 290.296875 255.011719 290.414062 255.011719 C 290.53125 255.011719 290.625 254.917969 290.625 254.800781 Z M 290.625 254.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.597656 254.8125 C 290.597656 254.695312 290.503906 254.601562 290.386719 254.601562 C 290.269531 254.601562 290.175781 254.695312 290.175781 254.8125 C 290.175781 254.929688 290.269531 255.023438 290.386719 255.023438 C 290.503906 255.023438 290.597656 254.929688 290.597656 254.8125 Z M 290.597656 254.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.253906 255.535156 C 292.253906 255.417969 292.160156 255.324219 292.042969 255.324219 C 291.925781 255.324219 291.832031 255.417969 291.832031 255.535156 C 291.832031 255.652344 291.925781 255.746094 292.042969 255.746094 C 292.160156 255.746094 292.253906 255.652344 292.253906 255.535156 Z M 292.253906 255.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.3125 252.792969 C 298.3125 252.675781 298.21875 252.582031 298.101562 252.582031 C 297.984375 252.582031 297.890625 252.675781 297.890625 252.792969 C 297.890625 252.910156 297.984375 253.003906 298.101562 253.003906 C 298.21875 253.003906 298.3125 252.910156 298.3125 252.792969 Z M 298.3125 252.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.4375 250.570312 C 300.4375 250.453125 300.34375 250.359375 300.226562 250.359375 C 300.109375 250.359375 300.015625 250.453125 300.015625 250.570312 C 300.015625 250.6875 300.109375 250.78125 300.226562 250.78125 C 300.34375 250.78125 300.4375 250.6875 300.4375 250.570312 Z M 300.4375 250.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.074219 249.382812 C 302.074219 249.265625 301.980469 249.171875 301.863281 249.171875 C 301.746094 249.171875 301.652344 249.265625 301.652344 249.382812 C 301.652344 249.5 301.746094 249.59375 301.863281 249.59375 C 301.980469 249.59375 302.074219 249.5 302.074219 249.382812 Z M 302.074219 249.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.5625 248.28125 C 302.5625 248.164062 302.46875 248.070312 302.351562 248.070312 C 302.234375 248.070312 302.140625 248.164062 302.140625 248.28125 C 302.140625 248.398438 302.234375 248.492188 302.351562 248.492188 C 302.46875 248.492188 302.5625 248.398438 302.5625 248.28125 Z M 302.5625 248.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.03125 245.515625 C 302.03125 245.398438 301.9375 245.304688 301.820312 245.304688 C 301.703125 245.304688 301.609375 245.398438 301.609375 245.515625 C 301.609375 245.632812 301.703125 245.726562 301.820312 245.726562 C 301.9375 245.726562 302.03125 245.632812 302.03125 245.515625 Z M 302.03125 245.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.105469 247.398438 C 305.105469 247.28125 305.011719 247.1875 304.894531 247.1875 C 304.777344 247.1875 304.683594 247.28125 304.683594 247.398438 C 304.683594 247.515625 304.777344 247.609375 304.894531 247.609375 C 305.011719 247.609375 305.105469 247.515625 305.105469 247.398438 Z M 305.105469 247.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.863281 248.53125 C 302.863281 248.414062 302.769531 248.320312 302.652344 248.320312 C 302.535156 248.320312 302.441406 248.414062 302.441406 248.53125 C 302.441406 248.648438 302.535156 248.742188 302.652344 248.742188 C 302.769531 248.742188 302.863281 248.648438 302.863281 248.53125 Z M 302.863281 248.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.730469 246.855469 C 305.730469 246.738281 305.636719 246.644531 305.519531 246.644531 C 305.402344 246.644531 305.308594 246.738281 305.308594 246.855469 C 305.308594 246.972656 305.402344 247.066406 305.519531 247.066406 C 305.636719 247.066406 305.730469 246.972656 305.730469 246.855469 Z M 305.730469 246.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.359375 248.066406 C 306.359375 247.949219 306.265625 247.855469 306.148438 247.855469 C 306.03125 247.855469 305.9375 247.949219 305.9375 248.066406 C 305.9375 248.183594 306.03125 248.277344 306.148438 248.277344 C 306.265625 248.277344 306.359375 248.183594 306.359375 248.066406 Z M 306.359375 248.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.023438 244.398438 C 307.023438 244.28125 306.929688 244.1875 306.8125 244.1875 C 306.695312 244.1875 306.601562 244.28125 306.601562 244.398438 C 306.601562 244.515625 306.695312 244.609375 306.8125 244.609375 C 306.929688 244.609375 307.023438 244.515625 307.023438 244.398438 Z M 307.023438 244.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.265625 248.039062 C 305.265625 247.921875 305.171875 247.828125 305.054688 247.828125 C 304.9375 247.828125 304.84375 247.921875 304.84375 248.039062 C 304.84375 248.15625 304.9375 248.25 305.054688 248.25 C 305.171875 248.25 305.265625 248.15625 305.265625 248.039062 Z M 305.265625 248.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.203125 249.75 C 303.203125 249.632812 303.109375 249.539062 302.992188 249.539062 C 302.875 249.539062 302.78125 249.632812 302.78125 249.75 C 302.78125 249.867188 302.875 249.960938 302.992188 249.960938 C 303.109375 249.960938 303.203125 249.867188 303.203125 249.75 Z M 303.203125 249.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.382812 252.691406 C 300.382812 252.574219 300.289062 252.480469 300.171875 252.480469 C 300.054688 252.480469 299.960938 252.574219 299.960938 252.691406 C 299.960938 252.808594 300.054688 252.902344 300.171875 252.902344 C 300.289062 252.902344 300.382812 252.808594 300.382812 252.691406 Z M 300.382812 252.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.898438 254.058594 C 303.898438 253.941406 303.804688 253.847656 303.6875 253.847656 C 303.570312 253.847656 303.476562 253.941406 303.476562 254.058594 C 303.476562 254.175781 303.570312 254.269531 303.6875 254.269531 C 303.804688 254.269531 303.898438 254.175781 303.898438 254.058594 Z M 303.898438 254.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.386719 255.484375 C 306.386719 255.367188 306.292969 255.273438 306.175781 255.273438 C 306.058594 255.273438 305.964844 255.367188 305.964844 255.484375 C 305.964844 255.601562 306.058594 255.695312 306.175781 255.695312 C 306.292969 255.695312 306.386719 255.601562 306.386719 255.484375 Z M 306.386719 255.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.996094 253.984375 C 305.996094 253.867188 305.902344 253.773438 305.785156 253.773438 C 305.667969 253.773438 305.574219 253.867188 305.574219 253.984375 C 305.574219 254.101562 305.667969 254.195312 305.785156 254.195312 C 305.902344 254.195312 305.996094 254.101562 305.996094 253.984375 Z M 305.996094 253.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.769531 252.613281 C 307.769531 252.496094 307.675781 252.402344 307.558594 252.402344 C 307.441406 252.402344 307.347656 252.496094 307.347656 252.613281 C 307.347656 252.730469 307.441406 252.824219 307.558594 252.824219 C 307.675781 252.824219 307.769531 252.730469 307.769531 252.613281 Z M 307.769531 252.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.703125 253.695312 C 305.703125 253.578125 305.609375 253.484375 305.492188 253.484375 C 305.375 253.484375 305.28125 253.578125 305.28125 253.695312 C 305.28125 253.8125 305.375 253.90625 305.492188 253.90625 C 305.609375 253.90625 305.703125 253.8125 305.703125 253.695312 Z M 305.703125 253.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.636719 254.253906 C 303.636719 254.136719 303.542969 254.042969 303.425781 254.042969 C 303.308594 254.042969 303.214844 254.136719 303.214844 254.253906 C 303.214844 254.371094 303.308594 254.464844 303.425781 254.464844 C 303.542969 254.464844 303.636719 254.371094 303.636719 254.253906 Z M 303.636719 254.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.332031 253.695312 C 305.332031 253.578125 305.238281 253.484375 305.121094 253.484375 C 305.003906 253.484375 304.910156 253.578125 304.910156 253.695312 C 304.910156 253.8125 305.003906 253.90625 305.121094 253.90625 C 305.238281 253.90625 305.332031 253.8125 305.332031 253.695312 Z M 305.332031 253.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.90625 253.667969 C 304.90625 253.550781 304.8125 253.457031 304.695312 253.457031 C 304.578125 253.457031 304.484375 253.550781 304.484375 253.667969 C 304.484375 253.785156 304.578125 253.878906 304.695312 253.878906 C 304.8125 253.878906 304.90625 253.785156 304.90625 253.667969 Z M 304.90625 253.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.734375 253.058594 C 305.734375 252.941406 305.640625 252.847656 305.523438 252.847656 C 305.40625 252.847656 305.3125 252.941406 305.3125 253.058594 C 305.3125 253.175781 305.40625 253.269531 305.523438 253.269531 C 305.640625 253.269531 305.734375 253.175781 305.734375 253.058594 Z M 305.734375 253.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.042969 257.925781 C 304.042969 257.808594 303.949219 257.714844 303.832031 257.714844 C 303.714844 257.714844 303.621094 257.808594 303.621094 257.925781 C 303.621094 258.042969 303.714844 258.136719 303.832031 258.136719 C 303.949219 258.136719 304.042969 258.042969 304.042969 257.925781 Z M 304.042969 257.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.707031 261.136719 C 303.707031 261.019531 303.613281 260.925781 303.496094 260.925781 C 303.378906 260.925781 303.285156 261.019531 303.285156 261.136719 C 303.285156 261.253906 303.378906 261.347656 303.496094 261.347656 C 303.613281 261.347656 303.707031 261.253906 303.707031 261.136719 Z M 303.707031 261.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.140625 261.050781 C 299.140625 260.933594 299.046875 260.839844 298.929688 260.839844 C 298.8125 260.839844 298.71875 260.933594 298.71875 261.050781 C 298.71875 261.167969 298.8125 261.261719 298.929688 261.261719 C 299.046875 261.261719 299.140625 261.167969 299.140625 261.050781 Z M 299.140625 261.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.035156 261.40625 C 304.035156 261.289062 303.941406 261.195312 303.824219 261.195312 C 303.707031 261.195312 303.613281 261.289062 303.613281 261.40625 C 303.613281 261.523438 303.707031 261.617188 303.824219 261.617188 C 303.941406 261.617188 304.035156 261.523438 304.035156 261.40625 Z M 304.035156 261.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.726562 260.667969 C 303.726562 260.550781 303.632812 260.457031 303.515625 260.457031 C 303.398438 260.457031 303.304688 260.550781 303.304688 260.667969 C 303.304688 260.785156 303.398438 260.878906 303.515625 260.878906 C 303.632812 260.878906 303.726562 260.785156 303.726562 260.667969 Z M 303.726562 260.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.308594 257.464844 C 303.308594 257.347656 303.214844 257.253906 303.097656 257.253906 C 302.980469 257.253906 302.886719 257.347656 302.886719 257.464844 C 302.886719 257.582031 302.980469 257.675781 303.097656 257.675781 C 303.214844 257.675781 303.308594 257.582031 303.308594 257.464844 Z M 303.308594 257.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.257812 255.121094 C 302.257812 255.003906 302.164062 254.910156 302.046875 254.910156 C 301.929688 254.910156 301.835938 255.003906 301.835938 255.121094 C 301.835938 255.238281 301.929688 255.332031 302.046875 255.332031 C 302.164062 255.332031 302.257812 255.238281 302.257812 255.121094 Z M 302.257812 255.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.328125 255.574219 C 303.328125 255.457031 303.234375 255.363281 303.117188 255.363281 C 303 255.363281 302.90625 255.457031 302.90625 255.574219 C 302.90625 255.691406 303 255.785156 303.117188 255.785156 C 303.234375 255.785156 303.328125 255.691406 303.328125 255.574219 Z M 303.328125 255.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.601562 255.101562 C 300.601562 254.984375 300.507812 254.890625 300.390625 254.890625 C 300.273438 254.890625 300.179688 254.984375 300.179688 255.101562 C 300.179688 255.21875 300.273438 255.3125 300.390625 255.3125 C 300.507812 255.3125 300.601562 255.21875 300.601562 255.101562 Z M 300.601562 255.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.480469 254.589844 C 303.480469 254.472656 303.386719 254.378906 303.269531 254.378906 C 303.152344 254.378906 303.058594 254.472656 303.058594 254.589844 C 303.058594 254.707031 303.152344 254.800781 303.269531 254.800781 C 303.386719 254.800781 303.480469 254.707031 303.480469 254.589844 Z M 303.480469 254.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.910156 250.097656 C 304.910156 249.980469 304.816406 249.886719 304.699219 249.886719 C 304.582031 249.886719 304.488281 249.980469 304.488281 250.097656 C 304.488281 250.214844 304.582031 250.308594 304.699219 250.308594 C 304.816406 250.308594 304.910156 250.214844 304.910156 250.097656 Z M 304.910156 250.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.449219 248.21875 C 302.449219 248.101562 302.355469 248.007812 302.238281 248.007812 C 302.121094 248.007812 302.027344 248.101562 302.027344 248.21875 C 302.027344 248.335938 302.121094 248.429688 302.238281 248.429688 C 302.355469 248.429688 302.449219 248.335938 302.449219 248.21875 Z M 302.449219 248.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.171875 248.894531 C 303.171875 248.777344 303.078125 248.683594 302.960938 248.683594 C 302.84375 248.683594 302.75 248.777344 302.75 248.894531 C 302.75 249.011719 302.84375 249.105469 302.960938 249.105469 C 303.078125 249.105469 303.171875 249.011719 303.171875 248.894531 Z M 303.171875 248.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.445312 249.410156 C 302.445312 249.292969 302.351562 249.199219 302.234375 249.199219 C 302.117188 249.199219 302.023438 249.292969 302.023438 249.410156 C 302.023438 249.527344 302.117188 249.621094 302.234375 249.621094 C 302.351562 249.621094 302.445312 249.527344 302.445312 249.410156 Z M 302.445312 249.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.730469 248.910156 C 298.730469 248.792969 298.636719 248.699219 298.519531 248.699219 C 298.402344 248.699219 298.308594 248.792969 298.308594 248.910156 C 298.308594 249.027344 298.402344 249.121094 298.519531 249.121094 C 298.636719 249.121094 298.730469 249.027344 298.730469 248.910156 Z M 298.730469 248.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.492188 249.371094 C 300.492188 249.253906 300.398438 249.160156 300.28125 249.160156 C 300.164062 249.160156 300.070312 249.253906 300.070312 249.371094 C 300.070312 249.488281 300.164062 249.582031 300.28125 249.582031 C 300.398438 249.582031 300.492188 249.488281 300.492188 249.371094 Z M 300.492188 249.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.609375 248.777344 C 301.609375 248.660156 301.515625 248.566406 301.398438 248.566406 C 301.28125 248.566406 301.1875 248.660156 301.1875 248.777344 C 301.1875 248.894531 301.28125 248.988281 301.398438 248.988281 C 301.515625 248.988281 301.609375 248.894531 301.609375 248.777344 Z M 301.609375 248.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.335938 247.558594 C 301.335938 247.441406 301.242188 247.347656 301.125 247.347656 C 301.007812 247.347656 300.914062 247.441406 300.914062 247.558594 C 300.914062 247.675781 301.007812 247.769531 301.125 247.769531 C 301.242188 247.769531 301.335938 247.675781 301.335938 247.558594 Z M 301.335938 247.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.261719 249.085938 C 303.261719 248.96875 303.167969 248.875 303.050781 248.875 C 302.933594 248.875 302.839844 248.96875 302.839844 249.085938 C 302.839844 249.203125 302.933594 249.296875 303.050781 249.296875 C 303.167969 249.296875 303.261719 249.203125 303.261719 249.085938 Z M 303.261719 249.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.707031 251.703125 C 296.707031 251.585938 296.613281 251.492188 296.496094 251.492188 C 296.378906 251.492188 296.285156 251.585938 296.285156 251.703125 C 296.285156 251.820312 296.378906 251.914062 296.496094 251.914062 C 296.613281 251.914062 296.707031 251.820312 296.707031 251.703125 Z M 296.707031 251.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.019531 248.789062 C 296.019531 248.671875 295.925781 248.578125 295.808594 248.578125 C 295.691406 248.578125 295.597656 248.671875 295.597656 248.789062 C 295.597656 248.90625 295.691406 249 295.808594 249 C 295.925781 249 296.019531 248.90625 296.019531 248.789062 Z M 296.019531 248.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.289062 253.789062 C 298.289062 253.671875 298.195312 253.578125 298.078125 253.578125 C 297.960938 253.578125 297.867188 253.671875 297.867188 253.789062 C 297.867188 253.90625 297.960938 254 298.078125 254 C 298.195312 254 298.289062 253.90625 298.289062 253.789062 Z M 298.289062 253.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.117188 255.863281 C 300.117188 255.746094 300.023438 255.652344 299.90625 255.652344 C 299.789062 255.652344 299.695312 255.746094 299.695312 255.863281 C 299.695312 255.980469 299.789062 256.074219 299.90625 256.074219 C 300.023438 256.074219 300.117188 255.980469 300.117188 255.863281 Z M 300.117188 255.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.789062 252.367188 C 302.789062 252.25 302.695312 252.15625 302.578125 252.15625 C 302.460938 252.15625 302.367188 252.25 302.367188 252.367188 C 302.367188 252.484375 302.460938 252.578125 302.578125 252.578125 C 302.695312 252.578125 302.789062 252.484375 302.789062 252.367188 Z M 302.789062 252.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.609375 251.925781 C 304.609375 251.808594 304.515625 251.714844 304.398438 251.714844 C 304.28125 251.714844 304.1875 251.808594 304.1875 251.925781 C 304.1875 252.042969 304.28125 252.136719 304.398438 252.136719 C 304.515625 252.136719 304.609375 252.042969 304.609375 251.925781 Z M 304.609375 251.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.5 251.46875 C 304.5 251.351562 304.40625 251.257812 304.289062 251.257812 C 304.171875 251.257812 304.078125 251.351562 304.078125 251.46875 C 304.078125 251.585938 304.171875 251.679688 304.289062 251.679688 C 304.40625 251.679688 304.5 251.585938 304.5 251.46875 Z M 304.5 251.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.824219 250.09375 C 301.824219 249.976562 301.730469 249.882812 301.613281 249.882812 C 301.496094 249.882812 301.402344 249.976562 301.402344 250.09375 C 301.402344 250.210938 301.496094 250.304688 301.613281 250.304688 C 301.730469 250.304688 301.824219 250.210938 301.824219 250.09375 Z M 301.824219 250.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.839844 249.84375 C 301.839844 249.726562 301.746094 249.632812 301.628906 249.632812 C 301.511719 249.632812 301.417969 249.726562 301.417969 249.84375 C 301.417969 249.960938 301.511719 250.054688 301.628906 250.054688 C 301.746094 250.054688 301.839844 249.960938 301.839844 249.84375 Z M 301.839844 249.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.003906 249.648438 C 303.003906 249.53125 302.910156 249.4375 302.792969 249.4375 C 302.675781 249.4375 302.582031 249.53125 302.582031 249.648438 C 302.582031 249.765625 302.675781 249.859375 302.792969 249.859375 C 302.910156 249.859375 303.003906 249.765625 303.003906 249.648438 Z M 303.003906 249.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.253906 249.53125 C 303.253906 249.414062 303.160156 249.320312 303.042969 249.320312 C 302.925781 249.320312 302.832031 249.414062 302.832031 249.53125 C 302.832031 249.648438 302.925781 249.742188 303.042969 249.742188 C 303.160156 249.742188 303.253906 249.648438 303.253906 249.53125 Z M 303.253906 249.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.367188 252.101562 C 301.367188 251.984375 301.273438 251.890625 301.15625 251.890625 C 301.039062 251.890625 300.945312 251.984375 300.945312 252.101562 C 300.945312 252.21875 301.039062 252.3125 301.15625 252.3125 C 301.273438 252.3125 301.367188 252.21875 301.367188 252.101562 Z M 301.367188 252.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.839844 254.449219 C 299.839844 254.332031 299.746094 254.238281 299.628906 254.238281 C 299.511719 254.238281 299.417969 254.332031 299.417969 254.449219 C 299.417969 254.566406 299.511719 254.660156 299.628906 254.660156 C 299.746094 254.660156 299.839844 254.566406 299.839844 254.449219 Z M 299.839844 254.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.015625 256.746094 C 301.015625 256.628906 300.921875 256.535156 300.804688 256.535156 C 300.6875 256.535156 300.59375 256.628906 300.59375 256.746094 C 300.59375 256.863281 300.6875 256.957031 300.804688 256.957031 C 300.921875 256.957031 301.015625 256.863281 301.015625 256.746094 Z M 301.015625 256.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.6875 257.554688 C 298.6875 257.4375 298.59375 257.34375 298.476562 257.34375 C 298.359375 257.34375 298.265625 257.4375 298.265625 257.554688 C 298.265625 257.671875 298.359375 257.765625 298.476562 257.765625 C 298.59375 257.765625 298.6875 257.671875 298.6875 257.554688 Z M 298.6875 257.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.585938 256.257812 C 302.585938 256.140625 302.492188 256.046875 302.375 256.046875 C 302.257812 256.046875 302.164062 256.140625 302.164062 256.257812 C 302.164062 256.375 302.257812 256.46875 302.375 256.46875 C 302.492188 256.46875 302.585938 256.375 302.585938 256.257812 Z M 302.585938 256.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.539062 257.050781 C 301.539062 256.933594 301.445312 256.839844 301.328125 256.839844 C 301.210938 256.839844 301.117188 256.933594 301.117188 257.050781 C 301.117188 257.167969 301.210938 257.261719 301.328125 257.261719 C 301.445312 257.261719 301.539062 257.167969 301.539062 257.050781 Z M 301.539062 257.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.082031 254.578125 C 302.082031 254.460938 301.988281 254.367188 301.871094 254.367188 C 301.753906 254.367188 301.660156 254.460938 301.660156 254.578125 C 301.660156 254.695312 301.753906 254.789062 301.871094 254.789062 C 301.988281 254.789062 302.082031 254.695312 302.082031 254.578125 Z M 302.082031 254.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.4375 250.480469 C 305.4375 250.363281 305.34375 250.269531 305.226562 250.269531 C 305.109375 250.269531 305.015625 250.363281 305.015625 250.480469 C 305.015625 250.597656 305.109375 250.691406 305.226562 250.691406 C 305.34375 250.691406 305.4375 250.597656 305.4375 250.480469 Z M 305.4375 250.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.234375 253.859375 C 306.234375 253.742188 306.140625 253.648438 306.023438 253.648438 C 305.90625 253.648438 305.8125 253.742188 305.8125 253.859375 C 305.8125 253.976562 305.90625 254.070312 306.023438 254.070312 C 306.140625 254.070312 306.234375 253.976562 306.234375 253.859375 Z M 306.234375 253.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.382812 254.730469 C 306.382812 254.613281 306.289062 254.519531 306.171875 254.519531 C 306.054688 254.519531 305.960938 254.613281 305.960938 254.730469 C 305.960938 254.847656 306.054688 254.941406 306.171875 254.941406 C 306.289062 254.941406 306.382812 254.847656 306.382812 254.730469 Z M 306.382812 254.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.265625 254.59375 C 305.265625 254.476562 305.171875 254.382812 305.054688 254.382812 C 304.9375 254.382812 304.84375 254.476562 304.84375 254.59375 C 304.84375 254.710938 304.9375 254.804688 305.054688 254.804688 C 305.171875 254.804688 305.265625 254.710938 305.265625 254.59375 Z M 305.265625 254.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.851562 257.96875 C 305.851562 257.851562 305.757812 257.757812 305.640625 257.757812 C 305.523438 257.757812 305.429688 257.851562 305.429688 257.96875 C 305.429688 258.085938 305.523438 258.179688 305.640625 258.179688 C 305.757812 258.179688 305.851562 258.085938 305.851562 257.96875 Z M 305.851562 257.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.449219 264.804688 C 305.449219 264.6875 305.355469 264.59375 305.238281 264.59375 C 305.121094 264.59375 305.027344 264.6875 305.027344 264.804688 C 305.027344 264.921875 305.121094 265.015625 305.238281 265.015625 C 305.355469 265.015625 305.449219 264.921875 305.449219 264.804688 Z M 305.449219 264.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.484375 265.359375 C 304.484375 265.242188 304.390625 265.148438 304.273438 265.148438 C 304.15625 265.148438 304.0625 265.242188 304.0625 265.359375 C 304.0625 265.476562 304.15625 265.570312 304.273438 265.570312 C 304.390625 265.570312 304.484375 265.476562 304.484375 265.359375 Z M 304.484375 265.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.671875 266.148438 C 304.671875 266.03125 304.578125 265.9375 304.460938 265.9375 C 304.34375 265.9375 304.25 266.03125 304.25 266.148438 C 304.25 266.265625 304.34375 266.359375 304.460938 266.359375 C 304.578125 266.359375 304.671875 266.265625 304.671875 266.148438 Z M 304.671875 266.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.324219 265.351562 C 300.324219 265.234375 300.230469 265.140625 300.113281 265.140625 C 299.996094 265.140625 299.902344 265.234375 299.902344 265.351562 C 299.902344 265.46875 299.996094 265.5625 300.113281 265.5625 C 300.230469 265.5625 300.324219 265.46875 300.324219 265.351562 Z M 300.324219 265.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.355469 263.75 C 296.355469 263.632812 296.261719 263.539062 296.144531 263.539062 C 296.027344 263.539062 295.933594 263.632812 295.933594 263.75 C 295.933594 263.867188 296.027344 263.960938 296.144531 263.960938 C 296.261719 263.960938 296.355469 263.867188 296.355469 263.75 Z M 296.355469 263.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.851562 261.992188 C 295.851562 261.875 295.757812 261.78125 295.640625 261.78125 C 295.523438 261.78125 295.429688 261.875 295.429688 261.992188 C 295.429688 262.109375 295.523438 262.203125 295.640625 262.203125 C 295.757812 262.203125 295.851562 262.109375 295.851562 261.992188 Z M 295.851562 261.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.566406 260.988281 C 293.566406 260.871094 293.472656 260.777344 293.355469 260.777344 C 293.238281 260.777344 293.144531 260.871094 293.144531 260.988281 C 293.144531 261.105469 293.238281 261.199219 293.355469 261.199219 C 293.472656 261.199219 293.566406 261.105469 293.566406 260.988281 Z M 293.566406 260.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.148438 260.117188 C 295.148438 260 295.054688 259.90625 294.9375 259.90625 C 294.820312 259.90625 294.726562 260 294.726562 260.117188 C 294.726562 260.234375 294.820312 260.328125 294.9375 260.328125 C 295.054688 260.328125 295.148438 260.234375 295.148438 260.117188 Z M 295.148438 260.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.351562 261.433594 C 294.351562 261.316406 294.257812 261.222656 294.140625 261.222656 C 294.023438 261.222656 293.929688 261.316406 293.929688 261.433594 C 293.929688 261.550781 294.023438 261.644531 294.140625 261.644531 C 294.257812 261.644531 294.351562 261.550781 294.351562 261.433594 Z M 294.351562 261.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.71875 260.140625 C 291.71875 260.023438 291.625 259.929688 291.507812 259.929688 C 291.390625 259.929688 291.296875 260.023438 291.296875 260.140625 C 291.296875 260.257812 291.390625 260.351562 291.507812 260.351562 C 291.625 260.351562 291.71875 260.257812 291.71875 260.140625 Z M 291.71875 260.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.433594 262.296875 C 292.433594 262.179688 292.339844 262.085938 292.222656 262.085938 C 292.105469 262.085938 292.011719 262.179688 292.011719 262.296875 C 292.011719 262.414062 292.105469 262.507812 292.222656 262.507812 C 292.339844 262.507812 292.433594 262.414062 292.433594 262.296875 Z M 292.433594 262.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.15625 262.421875 C 293.15625 262.304688 293.0625 262.210938 292.945312 262.210938 C 292.828125 262.210938 292.734375 262.304688 292.734375 262.421875 C 292.734375 262.539062 292.828125 262.632812 292.945312 262.632812 C 293.0625 262.632812 293.15625 262.539062 293.15625 262.421875 Z M 293.15625 262.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.894531 263.722656 C 292.894531 263.605469 292.800781 263.511719 292.683594 263.511719 C 292.566406 263.511719 292.472656 263.605469 292.472656 263.722656 C 292.472656 263.839844 292.566406 263.933594 292.683594 263.933594 C 292.800781 263.933594 292.894531 263.839844 292.894531 263.722656 Z M 292.894531 263.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.589844 265.574219 C 293.589844 265.457031 293.496094 265.363281 293.378906 265.363281 C 293.261719 265.363281 293.167969 265.457031 293.167969 265.574219 C 293.167969 265.691406 293.261719 265.785156 293.378906 265.785156 C 293.496094 265.785156 293.589844 265.691406 293.589844 265.574219 Z M 293.589844 265.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.242188 261.953125 C 293.242188 261.835938 293.148438 261.742188 293.03125 261.742188 C 292.914062 261.742188 292.820312 261.835938 292.820312 261.953125 C 292.820312 262.070312 292.914062 262.164062 293.03125 262.164062 C 293.148438 262.164062 293.242188 262.070312 293.242188 261.953125 Z M 293.242188 261.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.636719 262.78125 C 294.636719 262.664062 294.542969 262.570312 294.425781 262.570312 C 294.308594 262.570312 294.214844 262.664062 294.214844 262.78125 C 294.214844 262.898438 294.308594 262.992188 294.425781 262.992188 C 294.542969 262.992188 294.636719 262.898438 294.636719 262.78125 Z M 294.636719 262.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.582031 261.722656 C 296.582031 261.605469 296.488281 261.511719 296.371094 261.511719 C 296.253906 261.511719 296.160156 261.605469 296.160156 261.722656 C 296.160156 261.839844 296.253906 261.933594 296.371094 261.933594 C 296.488281 261.933594 296.582031 261.839844 296.582031 261.722656 Z M 296.582031 261.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.992188 260.902344 C 298.992188 260.785156 298.898438 260.691406 298.78125 260.691406 C 298.664062 260.691406 298.570312 260.785156 298.570312 260.902344 C 298.570312 261.019531 298.664062 261.113281 298.78125 261.113281 C 298.898438 261.113281 298.992188 261.019531 298.992188 260.902344 Z M 298.992188 260.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.109375 265.222656 C 302.109375 265.105469 302.015625 265.011719 301.898438 265.011719 C 301.78125 265.011719 301.6875 265.105469 301.6875 265.222656 C 301.6875 265.339844 301.78125 265.433594 301.898438 265.433594 C 302.015625 265.433594 302.109375 265.339844 302.109375 265.222656 Z M 302.109375 265.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.414062 266.007812 C 303.414062 265.890625 303.320312 265.796875 303.203125 265.796875 C 303.085938 265.796875 302.992188 265.890625 302.992188 266.007812 C 302.992188 266.125 303.085938 266.21875 303.203125 266.21875 C 303.320312 266.21875 303.414062 266.125 303.414062 266.007812 Z M 303.414062 266.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.917969 267.332031 C 300.917969 267.214844 300.824219 267.121094 300.707031 267.121094 C 300.589844 267.121094 300.496094 267.214844 300.496094 267.332031 C 300.496094 267.449219 300.589844 267.542969 300.707031 267.542969 C 300.824219 267.542969 300.917969 267.449219 300.917969 267.332031 Z M 300.917969 267.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.4375 265.699219 C 299.4375 265.582031 299.34375 265.488281 299.226562 265.488281 C 299.109375 265.488281 299.015625 265.582031 299.015625 265.699219 C 299.015625 265.816406 299.109375 265.910156 299.226562 265.910156 C 299.34375 265.910156 299.4375 265.816406 299.4375 265.699219 Z M 299.4375 265.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.496094 264.386719 C 300.496094 264.269531 300.402344 264.175781 300.285156 264.175781 C 300.167969 264.175781 300.074219 264.269531 300.074219 264.386719 C 300.074219 264.503906 300.167969 264.597656 300.285156 264.597656 C 300.402344 264.597656 300.496094 264.503906 300.496094 264.386719 Z M 300.496094 264.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.539062 264.425781 C 302.539062 264.308594 302.445312 264.214844 302.328125 264.214844 C 302.210938 264.214844 302.117188 264.308594 302.117188 264.425781 C 302.117188 264.542969 302.210938 264.636719 302.328125 264.636719 C 302.445312 264.636719 302.539062 264.542969 302.539062 264.425781 Z M 302.539062 264.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.3125 260.953125 C 300.3125 260.835938 300.21875 260.742188 300.101562 260.742188 C 299.984375 260.742188 299.890625 260.835938 299.890625 260.953125 C 299.890625 261.070312 299.984375 261.164062 300.101562 261.164062 C 300.21875 261.164062 300.3125 261.070312 300.3125 260.953125 Z M 300.3125 260.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.714844 264.074219 C 302.714844 263.957031 302.621094 263.863281 302.503906 263.863281 C 302.386719 263.863281 302.292969 263.957031 302.292969 264.074219 C 302.292969 264.191406 302.386719 264.285156 302.503906 264.285156 C 302.621094 264.285156 302.714844 264.191406 302.714844 264.074219 Z M 302.714844 264.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.222656 264.765625 C 307.222656 264.648438 307.128906 264.554688 307.011719 264.554688 C 306.894531 264.554688 306.800781 264.648438 306.800781 264.765625 C 306.800781 264.882812 306.894531 264.976562 307.011719 264.976562 C 307.128906 264.976562 307.222656 264.882812 307.222656 264.765625 Z M 307.222656 264.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.398438 266.234375 C 308.398438 266.117188 308.304688 266.023438 308.1875 266.023438 C 308.070312 266.023438 307.976562 266.117188 307.976562 266.234375 C 307.976562 266.351562 308.070312 266.445312 308.1875 266.445312 C 308.304688 266.445312 308.398438 266.351562 308.398438 266.234375 Z M 308.398438 266.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.832031 267.414062 C 306.832031 267.296875 306.738281 267.203125 306.621094 267.203125 C 306.503906 267.203125 306.410156 267.296875 306.410156 267.414062 C 306.410156 267.53125 306.503906 267.625 306.621094 267.625 C 306.738281 267.625 306.832031 267.53125 306.832031 267.414062 Z M 306.832031 267.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.253906 271.328125 C 306.253906 271.210938 306.160156 271.117188 306.042969 271.117188 C 305.925781 271.117188 305.832031 271.210938 305.832031 271.328125 C 305.832031 271.445312 305.925781 271.539062 306.042969 271.539062 C 306.160156 271.539062 306.253906 271.445312 306.253906 271.328125 Z M 306.253906 271.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.859375 272.3125 C 309.859375 272.195312 309.765625 272.101562 309.648438 272.101562 C 309.53125 272.101562 309.4375 272.195312 309.4375 272.3125 C 309.4375 272.429688 309.53125 272.523438 309.648438 272.523438 C 309.765625 272.523438 309.859375 272.429688 309.859375 272.3125 Z M 309.859375 272.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.683594 271.65625 C 310.683594 271.539062 310.589844 271.445312 310.472656 271.445312 C 310.355469 271.445312 310.261719 271.539062 310.261719 271.65625 C 310.261719 271.773438 310.355469 271.867188 310.472656 271.867188 C 310.589844 271.867188 310.683594 271.773438 310.683594 271.65625 Z M 310.683594 271.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.839844 269.28125 C 307.839844 269.164062 307.746094 269.070312 307.628906 269.070312 C 307.511719 269.070312 307.417969 269.164062 307.417969 269.28125 C 307.417969 269.398438 307.511719 269.492188 307.628906 269.492188 C 307.746094 269.492188 307.839844 269.398438 307.839844 269.28125 Z M 307.839844 269.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.785156 269.792969 C 306.785156 269.675781 306.691406 269.582031 306.574219 269.582031 C 306.457031 269.582031 306.363281 269.675781 306.363281 269.792969 C 306.363281 269.910156 306.457031 270.003906 306.574219 270.003906 C 306.691406 270.003906 306.785156 269.910156 306.785156 269.792969 Z M 306.785156 269.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.476562 267.460938 C 304.476562 267.34375 304.382812 267.25 304.265625 267.25 C 304.148438 267.25 304.054688 267.34375 304.054688 267.460938 C 304.054688 267.578125 304.148438 267.671875 304.265625 267.671875 C 304.382812 267.671875 304.476562 267.578125 304.476562 267.460938 Z M 304.476562 267.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.628906 266.734375 C 302.628906 266.617188 302.535156 266.523438 302.417969 266.523438 C 302.300781 266.523438 302.207031 266.617188 302.207031 266.734375 C 302.207031 266.851562 302.300781 266.945312 302.417969 266.945312 C 302.535156 266.945312 302.628906 266.851562 302.628906 266.734375 Z M 302.628906 266.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.066406 266.460938 C 302.066406 266.34375 301.972656 266.25 301.855469 266.25 C 301.738281 266.25 301.644531 266.34375 301.644531 266.460938 C 301.644531 266.578125 301.738281 266.671875 301.855469 266.671875 C 301.972656 266.671875 302.066406 266.578125 302.066406 266.460938 Z M 302.066406 266.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.625 265.875 C 299.625 265.757812 299.53125 265.664062 299.414062 265.664062 C 299.296875 265.664062 299.203125 265.757812 299.203125 265.875 C 299.203125 265.992188 299.296875 266.085938 299.414062 266.085938 C 299.53125 266.085938 299.625 265.992188 299.625 265.875 Z M 299.625 265.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.351562 262.992188 C 297.351562 262.875 297.257812 262.78125 297.140625 262.78125 C 297.023438 262.78125 296.929688 262.875 296.929688 262.992188 C 296.929688 263.109375 297.023438 263.203125 297.140625 263.203125 C 297.257812 263.203125 297.351562 263.109375 297.351562 262.992188 Z M 297.351562 262.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.933594 262.660156 C 296.933594 262.542969 296.839844 262.449219 296.722656 262.449219 C 296.605469 262.449219 296.511719 262.542969 296.511719 262.660156 C 296.511719 262.777344 296.605469 262.871094 296.722656 262.871094 C 296.839844 262.871094 296.933594 262.777344 296.933594 262.660156 Z M 296.933594 262.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.183594 264.65625 C 297.183594 264.539062 297.089844 264.445312 296.972656 264.445312 C 296.855469 264.445312 296.761719 264.539062 296.761719 264.65625 C 296.761719 264.773438 296.855469 264.867188 296.972656 264.867188 C 297.089844 264.867188 297.183594 264.773438 297.183594 264.65625 Z M 297.183594 264.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.523438 261.179688 C 296.523438 261.0625 296.429688 260.96875 296.3125 260.96875 C 296.195312 260.96875 296.101562 261.0625 296.101562 261.179688 C 296.101562 261.296875 296.195312 261.390625 296.3125 261.390625 C 296.429688 261.390625 296.523438 261.296875 296.523438 261.179688 Z M 296.523438 261.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.742188 258.613281 C 294.742188 258.496094 294.648438 258.402344 294.53125 258.402344 C 294.414062 258.402344 294.320312 258.496094 294.320312 258.613281 C 294.320312 258.730469 294.414062 258.824219 294.53125 258.824219 C 294.648438 258.824219 294.742188 258.730469 294.742188 258.613281 Z M 294.742188 258.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.367188 256.261719 C 294.367188 256.144531 294.273438 256.050781 294.15625 256.050781 C 294.039062 256.050781 293.945312 256.144531 293.945312 256.261719 C 293.945312 256.378906 294.039062 256.472656 294.15625 256.472656 C 294.273438 256.472656 294.367188 256.378906 294.367188 256.261719 Z M 294.367188 256.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.617188 259.007812 C 294.617188 258.890625 294.523438 258.796875 294.40625 258.796875 C 294.289062 258.796875 294.195312 258.890625 294.195312 259.007812 C 294.195312 259.125 294.289062 259.21875 294.40625 259.21875 C 294.523438 259.21875 294.617188 259.125 294.617188 259.007812 Z M 294.617188 259.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.460938 258.277344 C 292.460938 258.160156 292.367188 258.066406 292.25 258.066406 C 292.132812 258.066406 292.039062 258.160156 292.039062 258.277344 C 292.039062 258.394531 292.132812 258.488281 292.25 258.488281 C 292.367188 258.488281 292.460938 258.394531 292.460938 258.277344 Z M 292.460938 258.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.28125 254.75 C 292.28125 254.632812 292.1875 254.539062 292.070312 254.539062 C 291.953125 254.539062 291.859375 254.632812 291.859375 254.75 C 291.859375 254.867188 291.953125 254.960938 292.070312 254.960938 C 292.1875 254.960938 292.28125 254.867188 292.28125 254.75 Z M 292.28125 254.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.65625 250.855469 C 289.65625 250.738281 289.5625 250.644531 289.445312 250.644531 C 289.328125 250.644531 289.234375 250.738281 289.234375 250.855469 C 289.234375 250.972656 289.328125 251.066406 289.445312 251.066406 C 289.5625 251.066406 289.65625 250.972656 289.65625 250.855469 Z M 289.65625 250.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.511719 252.417969 C 292.511719 252.300781 292.417969 252.207031 292.300781 252.207031 C 292.183594 252.207031 292.089844 252.300781 292.089844 252.417969 C 292.089844 252.535156 292.183594 252.628906 292.300781 252.628906 C 292.417969 252.628906 292.511719 252.535156 292.511719 252.417969 Z M 292.511719 252.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.195312 255.128906 C 300.195312 255.011719 300.101562 254.917969 299.984375 254.917969 C 299.867188 254.917969 299.773438 255.011719 299.773438 255.128906 C 299.773438 255.246094 299.867188 255.339844 299.984375 255.339844 C 300.101562 255.339844 300.195312 255.246094 300.195312 255.128906 Z M 300.195312 255.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.945312 253.683594 C 295.945312 253.566406 295.851562 253.472656 295.734375 253.472656 C 295.617188 253.472656 295.523438 253.566406 295.523438 253.683594 C 295.523438 253.800781 295.617188 253.894531 295.734375 253.894531 C 295.851562 253.894531 295.945312 253.800781 295.945312 253.683594 Z M 295.945312 253.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.878906 253.78125 C 293.878906 253.664062 293.785156 253.570312 293.667969 253.570312 C 293.550781 253.570312 293.457031 253.664062 293.457031 253.78125 C 293.457031 253.898438 293.550781 253.992188 293.667969 253.992188 C 293.785156 253.992188 293.878906 253.898438 293.878906 253.78125 Z M 293.878906 253.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.789062 255.765625 C 292.789062 255.648438 292.695312 255.554688 292.578125 255.554688 C 292.460938 255.554688 292.367188 255.648438 292.367188 255.765625 C 292.367188 255.882812 292.460938 255.976562 292.578125 255.976562 C 292.695312 255.976562 292.789062 255.882812 292.789062 255.765625 Z M 292.789062 255.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.152344 253.386719 C 293.152344 253.269531 293.058594 253.175781 292.941406 253.175781 C 292.824219 253.175781 292.730469 253.269531 292.730469 253.386719 C 292.730469 253.503906 292.824219 253.597656 292.941406 253.597656 C 293.058594 253.597656 293.152344 253.503906 293.152344 253.386719 Z M 293.152344 253.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.574219 250.453125 C 292.574219 250.335938 292.480469 250.242188 292.363281 250.242188 C 292.246094 250.242188 292.152344 250.335938 292.152344 250.453125 C 292.152344 250.570312 292.246094 250.664062 292.363281 250.664062 C 292.480469 250.664062 292.574219 250.570312 292.574219 250.453125 Z M 292.574219 250.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.511719 252.6875 C 291.511719 252.570312 291.417969 252.476562 291.300781 252.476562 C 291.183594 252.476562 291.089844 252.570312 291.089844 252.6875 C 291.089844 252.804688 291.183594 252.898438 291.300781 252.898438 C 291.417969 252.898438 291.511719 252.804688 291.511719 252.6875 Z M 291.511719 252.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.660156 249.246094 C 293.660156 249.128906 293.566406 249.035156 293.449219 249.035156 C 293.332031 249.035156 293.238281 249.128906 293.238281 249.246094 C 293.238281 249.363281 293.332031 249.457031 293.449219 249.457031 C 293.566406 249.457031 293.660156 249.363281 293.660156 249.246094 Z M 293.660156 249.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.527344 249.023438 C 294.527344 248.90625 294.433594 248.8125 294.316406 248.8125 C 294.199219 248.8125 294.105469 248.90625 294.105469 249.023438 C 294.105469 249.140625 294.199219 249.234375 294.316406 249.234375 C 294.433594 249.234375 294.527344 249.140625 294.527344 249.023438 Z M 294.527344 249.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.65625 247.925781 C 292.65625 247.808594 292.5625 247.714844 292.445312 247.714844 C 292.328125 247.714844 292.234375 247.808594 292.234375 247.925781 C 292.234375 248.042969 292.328125 248.136719 292.445312 248.136719 C 292.5625 248.136719 292.65625 248.042969 292.65625 247.925781 Z M 292.65625 247.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.085938 246.042969 C 293.085938 245.925781 292.992188 245.832031 292.875 245.832031 C 292.757812 245.832031 292.664062 245.925781 292.664062 246.042969 C 292.664062 246.160156 292.757812 246.253906 292.875 246.253906 C 292.992188 246.253906 293.085938 246.160156 293.085938 246.042969 Z M 293.085938 246.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.351562 242.863281 C 286.351562 242.746094 286.257812 242.652344 286.140625 242.652344 C 286.023438 242.652344 285.929688 242.746094 285.929688 242.863281 C 285.929688 242.980469 286.023438 243.074219 286.140625 243.074219 C 286.257812 243.074219 286.351562 242.980469 286.351562 242.863281 Z M 286.351562 242.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.308594 245.0625 C 289.308594 244.945312 289.214844 244.851562 289.097656 244.851562 C 288.980469 244.851562 288.886719 244.945312 288.886719 245.0625 C 288.886719 245.179688 288.980469 245.273438 289.097656 245.273438 C 289.214844 245.273438 289.308594 245.179688 289.308594 245.0625 Z M 289.308594 245.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.152344 246.136719 C 288.152344 246.019531 288.058594 245.925781 287.941406 245.925781 C 287.824219 245.925781 287.730469 246.019531 287.730469 246.136719 C 287.730469 246.253906 287.824219 246.347656 287.941406 246.347656 C 288.058594 246.347656 288.152344 246.253906 288.152344 246.136719 Z M 288.152344 246.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.972656 248.175781 C 285.972656 248.058594 285.878906 247.964844 285.761719 247.964844 C 285.644531 247.964844 285.550781 248.058594 285.550781 248.175781 C 285.550781 248.292969 285.644531 248.386719 285.761719 248.386719 C 285.878906 248.386719 285.972656 248.292969 285.972656 248.175781 Z M 285.972656 248.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.609375 249.753906 C 287.609375 249.636719 287.515625 249.542969 287.398438 249.542969 C 287.28125 249.542969 287.1875 249.636719 287.1875 249.753906 C 287.1875 249.871094 287.28125 249.964844 287.398438 249.964844 C 287.515625 249.964844 287.609375 249.871094 287.609375 249.753906 Z M 287.609375 249.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.769531 245.785156 C 288.769531 245.667969 288.675781 245.574219 288.558594 245.574219 C 288.441406 245.574219 288.347656 245.667969 288.347656 245.785156 C 288.347656 245.902344 288.441406 245.996094 288.558594 245.996094 C 288.675781 245.996094 288.769531 245.902344 288.769531 245.785156 Z M 288.769531 245.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.671875 244.984375 C 287.671875 244.867188 287.578125 244.773438 287.460938 244.773438 C 287.34375 244.773438 287.25 244.867188 287.25 244.984375 C 287.25 245.101562 287.34375 245.195312 287.460938 245.195312 C 287.578125 245.195312 287.671875 245.101562 287.671875 244.984375 Z M 287.671875 244.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.75 249.496094 C 287.75 249.378906 287.65625 249.285156 287.539062 249.285156 C 287.421875 249.285156 287.328125 249.378906 287.328125 249.496094 C 287.328125 249.613281 287.421875 249.707031 287.539062 249.707031 C 287.65625 249.707031 287.75 249.613281 287.75 249.496094 Z M 287.75 249.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.558594 249.96875 C 287.558594 249.851562 287.464844 249.757812 287.347656 249.757812 C 287.230469 249.757812 287.136719 249.851562 287.136719 249.96875 C 287.136719 250.085938 287.230469 250.179688 287.347656 250.179688 C 287.464844 250.179688 287.558594 250.085938 287.558594 249.96875 Z M 287.558594 249.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.152344 248.167969 C 285.152344 248.050781 285.058594 247.957031 284.941406 247.957031 C 284.824219 247.957031 284.730469 248.050781 284.730469 248.167969 C 284.730469 248.285156 284.824219 248.378906 284.941406 248.378906 C 285.058594 248.378906 285.152344 248.285156 285.152344 248.167969 Z M 285.152344 248.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.386719 250.105469 C 288.386719 249.988281 288.292969 249.894531 288.175781 249.894531 C 288.058594 249.894531 287.964844 249.988281 287.964844 250.105469 C 287.964844 250.222656 288.058594 250.316406 288.175781 250.316406 C 288.292969 250.316406 288.386719 250.222656 288.386719 250.105469 Z M 288.386719 250.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.984375 248.140625 C 289.984375 248.023438 289.890625 247.929688 289.773438 247.929688 C 289.65625 247.929688 289.5625 248.023438 289.5625 248.140625 C 289.5625 248.257812 289.65625 248.351562 289.773438 248.351562 C 289.890625 248.351562 289.984375 248.257812 289.984375 248.140625 Z M 289.984375 248.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.914062 247.488281 C 289.914062 247.371094 289.820312 247.277344 289.703125 247.277344 C 289.585938 247.277344 289.492188 247.371094 289.492188 247.488281 C 289.492188 247.605469 289.585938 247.699219 289.703125 247.699219 C 289.820312 247.699219 289.914062 247.605469 289.914062 247.488281 Z M 289.914062 247.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.949219 247.210938 C 292.949219 247.09375 292.855469 247 292.738281 247 C 292.621094 247 292.527344 247.09375 292.527344 247.210938 C 292.527344 247.328125 292.621094 247.421875 292.738281 247.421875 C 292.855469 247.421875 292.949219 247.328125 292.949219 247.210938 Z M 292.949219 247.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.367188 251.101562 C 297.367188 250.984375 297.273438 250.890625 297.15625 250.890625 C 297.039062 250.890625 296.945312 250.984375 296.945312 251.101562 C 296.945312 251.21875 297.039062 251.3125 297.15625 251.3125 C 297.273438 251.3125 297.367188 251.21875 297.367188 251.101562 Z M 297.367188 251.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.351562 252.640625 C 299.351562 252.523438 299.257812 252.429688 299.140625 252.429688 C 299.023438 252.429688 298.929688 252.523438 298.929688 252.640625 C 298.929688 252.757812 299.023438 252.851562 299.140625 252.851562 C 299.257812 252.851562 299.351562 252.757812 299.351562 252.640625 Z M 299.351562 252.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.933594 256.878906 C 302.933594 256.761719 302.839844 256.667969 302.722656 256.667969 C 302.605469 256.667969 302.511719 256.761719 302.511719 256.878906 C 302.511719 256.996094 302.605469 257.089844 302.722656 257.089844 C 302.839844 257.089844 302.933594 256.996094 302.933594 256.878906 Z M 302.933594 256.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.605469 254.78125 C 303.605469 254.664062 303.511719 254.570312 303.394531 254.570312 C 303.277344 254.570312 303.183594 254.664062 303.183594 254.78125 C 303.183594 254.898438 303.277344 254.992188 303.394531 254.992188 C 303.511719 254.992188 303.605469 254.898438 303.605469 254.78125 Z M 303.605469 254.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.761719 256.3125 C 300.761719 256.195312 300.667969 256.101562 300.550781 256.101562 C 300.433594 256.101562 300.339844 256.195312 300.339844 256.3125 C 300.339844 256.429688 300.433594 256.523438 300.550781 256.523438 C 300.667969 256.523438 300.761719 256.429688 300.761719 256.3125 Z M 300.761719 256.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.222656 256.308594 C 299.222656 256.191406 299.128906 256.097656 299.011719 256.097656 C 298.894531 256.097656 298.800781 256.191406 298.800781 256.308594 C 298.800781 256.425781 298.894531 256.519531 299.011719 256.519531 C 299.128906 256.519531 299.222656 256.425781 299.222656 256.308594 Z M 299.222656 256.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.089844 262.164062 C 296.089844 262.046875 295.996094 261.953125 295.878906 261.953125 C 295.761719 261.953125 295.667969 262.046875 295.667969 262.164062 C 295.667969 262.28125 295.761719 262.375 295.878906 262.375 C 295.996094 262.375 296.089844 262.28125 296.089844 262.164062 Z M 296.089844 262.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.511719 262.335938 C 292.511719 262.21875 292.417969 262.125 292.300781 262.125 C 292.183594 262.125 292.089844 262.21875 292.089844 262.335938 C 292.089844 262.453125 292.183594 262.546875 292.300781 262.546875 C 292.417969 262.546875 292.511719 262.453125 292.511719 262.335938 Z M 292.511719 262.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.816406 268.433594 C 292.816406 268.316406 292.722656 268.222656 292.605469 268.222656 C 292.488281 268.222656 292.394531 268.316406 292.394531 268.433594 C 292.394531 268.550781 292.488281 268.644531 292.605469 268.644531 C 292.722656 268.644531 292.816406 268.550781 292.816406 268.433594 Z M 292.816406 268.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.628906 263.832031 C 292.628906 263.714844 292.535156 263.621094 292.417969 263.621094 C 292.300781 263.621094 292.207031 263.714844 292.207031 263.832031 C 292.207031 263.949219 292.300781 264.042969 292.417969 264.042969 C 292.535156 264.042969 292.628906 263.949219 292.628906 263.832031 Z M 292.628906 263.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.128906 261.320312 C 291.128906 261.203125 291.035156 261.109375 290.917969 261.109375 C 290.800781 261.109375 290.707031 261.203125 290.707031 261.320312 C 290.707031 261.4375 290.800781 261.53125 290.917969 261.53125 C 291.035156 261.53125 291.128906 261.4375 291.128906 261.320312 Z M 291.128906 261.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.632812 260.8125 C 290.632812 260.695312 290.539062 260.601562 290.421875 260.601562 C 290.304688 260.601562 290.210938 260.695312 290.210938 260.8125 C 290.210938 260.929688 290.304688 261.023438 290.421875 261.023438 C 290.539062 261.023438 290.632812 260.929688 290.632812 260.8125 Z M 290.632812 260.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.011719 261.035156 C 290.011719 260.917969 289.917969 260.824219 289.800781 260.824219 C 289.683594 260.824219 289.589844 260.917969 289.589844 261.035156 C 289.589844 261.152344 289.683594 261.246094 289.800781 261.246094 C 289.917969 261.246094 290.011719 261.152344 290.011719 261.035156 Z M 290.011719 261.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.859375 260.171875 C 289.859375 260.054688 289.765625 259.960938 289.648438 259.960938 C 289.53125 259.960938 289.4375 260.054688 289.4375 260.171875 C 289.4375 260.289062 289.53125 260.382812 289.648438 260.382812 C 289.765625 260.382812 289.859375 260.289062 289.859375 260.171875 Z M 289.859375 260.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.429688 260.476562 C 292.429688 260.359375 292.335938 260.265625 292.21875 260.265625 C 292.101562 260.265625 292.007812 260.359375 292.007812 260.476562 C 292.007812 260.59375 292.101562 260.6875 292.21875 260.6875 C 292.335938 260.6875 292.429688 260.59375 292.429688 260.476562 Z M 292.429688 260.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.972656 260.527344 C 289.972656 260.410156 289.878906 260.316406 289.761719 260.316406 C 289.644531 260.316406 289.550781 260.410156 289.550781 260.527344 C 289.550781 260.644531 289.644531 260.738281 289.761719 260.738281 C 289.878906 260.738281 289.972656 260.644531 289.972656 260.527344 Z M 289.972656 260.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.101562 258.769531 C 290.101562 258.652344 290.007812 258.558594 289.890625 258.558594 C 289.773438 258.558594 289.679688 258.652344 289.679688 258.769531 C 289.679688 258.886719 289.773438 258.980469 289.890625 258.980469 C 290.007812 258.980469 290.101562 258.886719 290.101562 258.769531 Z M 290.101562 258.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.511719 259.808594 C 289.511719 259.691406 289.417969 259.597656 289.300781 259.597656 C 289.183594 259.597656 289.089844 259.691406 289.089844 259.808594 C 289.089844 259.925781 289.183594 260.019531 289.300781 260.019531 C 289.417969 260.019531 289.511719 259.925781 289.511719 259.808594 Z M 289.511719 259.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.320312 260.039062 C 290.320312 259.921875 290.226562 259.828125 290.109375 259.828125 C 289.992188 259.828125 289.898438 259.921875 289.898438 260.039062 C 289.898438 260.15625 289.992188 260.25 290.109375 260.25 C 290.226562 260.25 290.320312 260.15625 290.320312 260.039062 Z M 290.320312 260.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.832031 263.1875 C 289.832031 263.070312 289.738281 262.976562 289.621094 262.976562 C 289.503906 262.976562 289.410156 263.070312 289.410156 263.1875 C 289.410156 263.304688 289.503906 263.398438 289.621094 263.398438 C 289.738281 263.398438 289.832031 263.304688 289.832031 263.1875 Z M 289.832031 263.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.5 260.875 C 292.5 260.757812 292.40625 260.664062 292.289062 260.664062 C 292.171875 260.664062 292.078125 260.757812 292.078125 260.875 C 292.078125 260.992188 292.171875 261.085938 292.289062 261.085938 C 292.40625 261.085938 292.5 260.992188 292.5 260.875 Z M 292.5 260.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.746094 256.15625 C 290.746094 256.039062 290.652344 255.945312 290.535156 255.945312 C 290.417969 255.945312 290.324219 256.039062 290.324219 256.15625 C 290.324219 256.273438 290.417969 256.367188 290.535156 256.367188 C 290.652344 256.367188 290.746094 256.273438 290.746094 256.15625 Z M 290.746094 256.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.246094 252.886719 C 290.246094 252.769531 290.152344 252.675781 290.035156 252.675781 C 289.917969 252.675781 289.824219 252.769531 289.824219 252.886719 C 289.824219 253.003906 289.917969 253.097656 290.035156 253.097656 C 290.152344 253.097656 290.246094 253.003906 290.246094 252.886719 Z M 290.246094 252.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.121094 248.042969 C 292.121094 247.925781 292.027344 247.832031 291.910156 247.832031 C 291.792969 247.832031 291.699219 247.925781 291.699219 248.042969 C 291.699219 248.160156 291.792969 248.253906 291.910156 248.253906 C 292.027344 248.253906 292.121094 248.160156 292.121094 248.042969 Z M 292.121094 248.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.148438 246.019531 C 292.148438 245.902344 292.054688 245.808594 291.9375 245.808594 C 291.820312 245.808594 291.726562 245.902344 291.726562 246.019531 C 291.726562 246.136719 291.820312 246.230469 291.9375 246.230469 C 292.054688 246.230469 292.148438 246.136719 292.148438 246.019531 Z M 292.148438 246.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.082031 245.621094 C 292.082031 245.503906 291.988281 245.410156 291.871094 245.410156 C 291.753906 245.410156 291.660156 245.503906 291.660156 245.621094 C 291.660156 245.738281 291.753906 245.832031 291.871094 245.832031 C 291.988281 245.832031 292.082031 245.738281 292.082031 245.621094 Z M 292.082031 245.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.980469 246.632812 C 291.980469 246.515625 291.886719 246.421875 291.769531 246.421875 C 291.652344 246.421875 291.558594 246.515625 291.558594 246.632812 C 291.558594 246.75 291.652344 246.84375 291.769531 246.84375 C 291.886719 246.84375 291.980469 246.75 291.980469 246.632812 Z M 291.980469 246.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.683594 246.4375 C 296.683594 246.320312 296.589844 246.226562 296.472656 246.226562 C 296.355469 246.226562 296.261719 246.320312 296.261719 246.4375 C 296.261719 246.554688 296.355469 246.648438 296.472656 246.648438 C 296.589844 246.648438 296.683594 246.554688 296.683594 246.4375 Z M 296.683594 246.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.015625 246.046875 C 302.015625 245.929688 301.921875 245.835938 301.804688 245.835938 C 301.6875 245.835938 301.59375 245.929688 301.59375 246.046875 C 301.59375 246.164062 301.6875 246.257812 301.804688 246.257812 C 301.921875 246.257812 302.015625 246.164062 302.015625 246.046875 Z M 302.015625 246.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.972656 249.714844 C 298.972656 249.597656 298.878906 249.503906 298.761719 249.503906 C 298.644531 249.503906 298.550781 249.597656 298.550781 249.714844 C 298.550781 249.832031 298.644531 249.925781 298.761719 249.925781 C 298.878906 249.925781 298.972656 249.832031 298.972656 249.714844 Z M 298.972656 249.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.027344 252.601562 C 295.027344 252.484375 294.933594 252.390625 294.816406 252.390625 C 294.699219 252.390625 294.605469 252.484375 294.605469 252.601562 C 294.605469 252.71875 294.699219 252.8125 294.816406 252.8125 C 294.933594 252.8125 295.027344 252.71875 295.027344 252.601562 Z M 295.027344 252.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.023438 251.609375 C 295.023438 251.492188 294.929688 251.398438 294.8125 251.398438 C 294.695312 251.398438 294.601562 251.492188 294.601562 251.609375 C 294.601562 251.726562 294.695312 251.820312 294.8125 251.820312 C 294.929688 251.820312 295.023438 251.726562 295.023438 251.609375 Z M 295.023438 251.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.140625 249.632812 C 294.140625 249.515625 294.046875 249.421875 293.929688 249.421875 C 293.8125 249.421875 293.71875 249.515625 293.71875 249.632812 C 293.71875 249.75 293.8125 249.84375 293.929688 249.84375 C 294.046875 249.84375 294.140625 249.75 294.140625 249.632812 Z M 294.140625 249.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.089844 248.089844 C 297.089844 247.972656 296.996094 247.878906 296.878906 247.878906 C 296.761719 247.878906 296.667969 247.972656 296.667969 248.089844 C 296.667969 248.207031 296.761719 248.300781 296.878906 248.300781 C 296.996094 248.300781 297.089844 248.207031 297.089844 248.089844 Z M 297.089844 248.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.476562 251.359375 C 301.476562 251.242188 301.382812 251.148438 301.265625 251.148438 C 301.148438 251.148438 301.054688 251.242188 301.054688 251.359375 C 301.054688 251.476562 301.148438 251.570312 301.265625 251.570312 C 301.382812 251.570312 301.476562 251.476562 301.476562 251.359375 Z M 301.476562 251.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.019531 252.648438 C 297.019531 252.53125 296.925781 252.4375 296.808594 252.4375 C 296.691406 252.4375 296.597656 252.53125 296.597656 252.648438 C 296.597656 252.765625 296.691406 252.859375 296.808594 252.859375 C 296.925781 252.859375 297.019531 252.765625 297.019531 252.648438 Z M 297.019531 252.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.1875 253.335938 C 295.1875 253.21875 295.09375 253.125 294.976562 253.125 C 294.859375 253.125 294.765625 253.21875 294.765625 253.335938 C 294.765625 253.453125 294.859375 253.546875 294.976562 253.546875 C 295.09375 253.546875 295.1875 253.453125 295.1875 253.335938 Z M 295.1875 253.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.460938 253.664062 C 296.460938 253.546875 296.367188 253.453125 296.25 253.453125 C 296.132812 253.453125 296.039062 253.546875 296.039062 253.664062 C 296.039062 253.78125 296.132812 253.875 296.25 253.875 C 296.367188 253.875 296.460938 253.78125 296.460938 253.664062 Z M 296.460938 253.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.335938 253.164062 C 298.335938 253.046875 298.242188 252.953125 298.125 252.953125 C 298.007812 252.953125 297.914062 253.046875 297.914062 253.164062 C 297.914062 253.28125 298.007812 253.375 298.125 253.375 C 298.242188 253.375 298.335938 253.28125 298.335938 253.164062 Z M 298.335938 253.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.425781 253.699219 C 303.425781 253.582031 303.332031 253.488281 303.214844 253.488281 C 303.097656 253.488281 303.003906 253.582031 303.003906 253.699219 C 303.003906 253.816406 303.097656 253.910156 303.214844 253.910156 C 303.332031 253.910156 303.425781 253.816406 303.425781 253.699219 Z M 303.425781 253.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.65625 253.328125 C 305.65625 253.210938 305.5625 253.117188 305.445312 253.117188 C 305.328125 253.117188 305.234375 253.210938 305.234375 253.328125 C 305.234375 253.445312 305.328125 253.539062 305.445312 253.539062 C 305.5625 253.539062 305.65625 253.445312 305.65625 253.328125 Z M 305.65625 253.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.148438 248.820312 C 307.148438 248.703125 307.054688 248.609375 306.9375 248.609375 C 306.820312 248.609375 306.726562 248.703125 306.726562 248.820312 C 306.726562 248.9375 306.820312 249.03125 306.9375 249.03125 C 307.054688 249.03125 307.148438 248.9375 307.148438 248.820312 Z M 307.148438 248.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.078125 247.53125 C 308.078125 247.414062 307.984375 247.320312 307.867188 247.320312 C 307.75 247.320312 307.65625 247.414062 307.65625 247.53125 C 307.65625 247.648438 307.75 247.742188 307.867188 247.742188 C 307.984375 247.742188 308.078125 247.648438 308.078125 247.53125 Z M 308.078125 247.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.378906 243.726562 C 307.378906 243.609375 307.285156 243.515625 307.167969 243.515625 C 307.050781 243.515625 306.957031 243.609375 306.957031 243.726562 C 306.957031 243.84375 307.050781 243.9375 307.167969 243.9375 C 307.285156 243.9375 307.378906 243.84375 307.378906 243.726562 Z M 307.378906 243.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.351562 243.308594 C 310.351562 243.191406 310.257812 243.097656 310.140625 243.097656 C 310.023438 243.097656 309.929688 243.191406 309.929688 243.308594 C 309.929688 243.425781 310.023438 243.519531 310.140625 243.519531 C 310.257812 243.519531 310.351562 243.425781 310.351562 243.308594 Z M 310.351562 243.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.738281 238.207031 C 311.738281 238.089844 311.644531 237.996094 311.527344 237.996094 C 311.410156 237.996094 311.316406 238.089844 311.316406 238.207031 C 311.316406 238.324219 311.410156 238.417969 311.527344 238.417969 C 311.644531 238.417969 311.738281 238.324219 311.738281 238.207031 Z M 311.738281 238.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.640625 236.421875 C 309.640625 236.304688 309.546875 236.210938 309.429688 236.210938 C 309.3125 236.210938 309.21875 236.304688 309.21875 236.421875 C 309.21875 236.539062 309.3125 236.632812 309.429688 236.632812 C 309.546875 236.632812 309.640625 236.539062 309.640625 236.421875 Z M 309.640625 236.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.921875 236.703125 C 307.921875 236.585938 307.828125 236.492188 307.710938 236.492188 C 307.59375 236.492188 307.5 236.585938 307.5 236.703125 C 307.5 236.820312 307.59375 236.914062 307.710938 236.914062 C 307.828125 236.914062 307.921875 236.820312 307.921875 236.703125 Z M 307.921875 236.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.082031 239.054688 C 308.082031 238.9375 307.988281 238.84375 307.871094 238.84375 C 307.753906 238.84375 307.660156 238.9375 307.660156 239.054688 C 307.660156 239.171875 307.753906 239.265625 307.871094 239.265625 C 307.988281 239.265625 308.082031 239.171875 308.082031 239.054688 Z M 308.082031 239.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.9375 239.90625 C 311.9375 239.789062 311.84375 239.695312 311.726562 239.695312 C 311.609375 239.695312 311.515625 239.789062 311.515625 239.90625 C 311.515625 240.023438 311.609375 240.117188 311.726562 240.117188 C 311.84375 240.117188 311.9375 240.023438 311.9375 239.90625 Z M 311.9375 239.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.484375 233.96875 C 313.484375 233.851562 313.390625 233.757812 313.273438 233.757812 C 313.15625 233.757812 313.0625 233.851562 313.0625 233.96875 C 313.0625 234.085938 313.15625 234.179688 313.273438 234.179688 C 313.390625 234.179688 313.484375 234.085938 313.484375 233.96875 Z M 313.484375 233.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.828125 233.242188 C 309.828125 233.125 309.734375 233.03125 309.617188 233.03125 C 309.5 233.03125 309.40625 233.125 309.40625 233.242188 C 309.40625 233.359375 309.5 233.453125 309.617188 233.453125 C 309.734375 233.453125 309.828125 233.359375 309.828125 233.242188 Z M 309.828125 233.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.53125 234.363281 C 310.53125 234.246094 310.4375 234.152344 310.320312 234.152344 C 310.203125 234.152344 310.109375 234.246094 310.109375 234.363281 C 310.109375 234.480469 310.203125 234.574219 310.320312 234.574219 C 310.4375 234.574219 310.53125 234.480469 310.53125 234.363281 Z M 310.53125 234.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.308594 233.539062 C 312.308594 233.421875 312.214844 233.328125 312.097656 233.328125 C 311.980469 233.328125 311.886719 233.421875 311.886719 233.539062 C 311.886719 233.65625 311.980469 233.75 312.097656 233.75 C 312.214844 233.75 312.308594 233.65625 312.308594 233.539062 Z M 312.308594 233.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.519531 235.941406 C 315.519531 235.824219 315.425781 235.730469 315.308594 235.730469 C 315.191406 235.730469 315.097656 235.824219 315.097656 235.941406 C 315.097656 236.058594 315.191406 236.152344 315.308594 236.152344 C 315.425781 236.152344 315.519531 236.058594 315.519531 235.941406 Z M 315.519531 235.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.816406 237.257812 C 310.816406 237.140625 310.722656 237.046875 310.605469 237.046875 C 310.488281 237.046875 310.394531 237.140625 310.394531 237.257812 C 310.394531 237.375 310.488281 237.46875 310.605469 237.46875 C 310.722656 237.46875 310.816406 237.375 310.816406 237.257812 Z M 310.816406 237.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.226562 236.03125 C 312.226562 235.914062 312.132812 235.820312 312.015625 235.820312 C 311.898438 235.820312 311.804688 235.914062 311.804688 236.03125 C 311.804688 236.148438 311.898438 236.242188 312.015625 236.242188 C 312.132812 236.242188 312.226562 236.148438 312.226562 236.03125 Z M 312.226562 236.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.417969 235.714844 C 309.417969 235.597656 309.324219 235.503906 309.207031 235.503906 C 309.089844 235.503906 308.996094 235.597656 308.996094 235.714844 C 308.996094 235.832031 309.089844 235.925781 309.207031 235.925781 C 309.324219 235.925781 309.417969 235.832031 309.417969 235.714844 Z M 309.417969 235.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.929688 235.480469 C 311.929688 235.363281 311.835938 235.269531 311.71875 235.269531 C 311.601562 235.269531 311.507812 235.363281 311.507812 235.480469 C 311.507812 235.597656 311.601562 235.691406 311.71875 235.691406 C 311.835938 235.691406 311.929688 235.597656 311.929688 235.480469 Z M 311.929688 235.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.195312 234.417969 C 310.195312 234.300781 310.101562 234.207031 309.984375 234.207031 C 309.867188 234.207031 309.773438 234.300781 309.773438 234.417969 C 309.773438 234.535156 309.867188 234.628906 309.984375 234.628906 C 310.101562 234.628906 310.195312 234.535156 310.195312 234.417969 Z M 310.195312 234.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.082031 235.464844 C 312.082031 235.347656 311.988281 235.253906 311.871094 235.253906 C 311.753906 235.253906 311.660156 235.347656 311.660156 235.464844 C 311.660156 235.582031 311.753906 235.675781 311.871094 235.675781 C 311.988281 235.675781 312.082031 235.582031 312.082031 235.464844 Z M 312.082031 235.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.078125 237.875 C 313.078125 237.757812 312.984375 237.664062 312.867188 237.664062 C 312.75 237.664062 312.65625 237.757812 312.65625 237.875 C 312.65625 237.992188 312.75 238.085938 312.867188 238.085938 C 312.984375 238.085938 313.078125 237.992188 313.078125 237.875 Z M 313.078125 237.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.761719 234.761719 C 310.761719 234.644531 310.667969 234.550781 310.550781 234.550781 C 310.433594 234.550781 310.339844 234.644531 310.339844 234.761719 C 310.339844 234.878906 310.433594 234.972656 310.550781 234.972656 C 310.667969 234.972656 310.761719 234.878906 310.761719 234.761719 Z M 310.761719 234.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.921875 231.054688 C 311.921875 230.9375 311.828125 230.84375 311.710938 230.84375 C 311.59375 230.84375 311.5 230.9375 311.5 231.054688 C 311.5 231.171875 311.59375 231.265625 311.710938 231.265625 C 311.828125 231.265625 311.921875 231.171875 311.921875 231.054688 Z M 311.921875 231.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.023438 228.558594 C 314.023438 228.441406 313.929688 228.347656 313.8125 228.347656 C 313.695312 228.347656 313.601562 228.441406 313.601562 228.558594 C 313.601562 228.675781 313.695312 228.769531 313.8125 228.769531 C 313.929688 228.769531 314.023438 228.675781 314.023438 228.558594 Z M 314.023438 228.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.515625 230.832031 C 311.515625 230.714844 311.421875 230.621094 311.304688 230.621094 C 311.1875 230.621094 311.09375 230.714844 311.09375 230.832031 C 311.09375 230.949219 311.1875 231.042969 311.304688 231.042969 C 311.421875 231.042969 311.515625 230.949219 311.515625 230.832031 Z M 311.515625 230.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.929688 229.613281 C 312.929688 229.496094 312.835938 229.402344 312.71875 229.402344 C 312.601562 229.402344 312.507812 229.496094 312.507812 229.613281 C 312.507812 229.730469 312.601562 229.824219 312.71875 229.824219 C 312.835938 229.824219 312.929688 229.730469 312.929688 229.613281 Z M 312.929688 229.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.976562 229.703125 C 310.976562 229.585938 310.882812 229.492188 310.765625 229.492188 C 310.648438 229.492188 310.554688 229.585938 310.554688 229.703125 C 310.554688 229.820312 310.648438 229.914062 310.765625 229.914062 C 310.882812 229.914062 310.976562 229.820312 310.976562 229.703125 Z M 310.976562 229.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.746094 232.207031 C 312.746094 232.089844 312.652344 231.996094 312.535156 231.996094 C 312.417969 231.996094 312.324219 232.089844 312.324219 232.207031 C 312.324219 232.324219 312.417969 232.417969 312.535156 232.417969 C 312.652344 232.417969 312.746094 232.324219 312.746094 232.207031 Z M 312.746094 232.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.027344 231.214844 C 314.027344 231.097656 313.933594 231.003906 313.816406 231.003906 C 313.699219 231.003906 313.605469 231.097656 313.605469 231.214844 C 313.605469 231.332031 313.699219 231.425781 313.816406 231.425781 C 313.933594 231.425781 314.027344 231.332031 314.027344 231.214844 Z M 314.027344 231.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.476562 231.234375 C 310.476562 231.117188 310.382812 231.023438 310.265625 231.023438 C 310.148438 231.023438 310.054688 231.117188 310.054688 231.234375 C 310.054688 231.351562 310.148438 231.445312 310.265625 231.445312 C 310.382812 231.445312 310.476562 231.351562 310.476562 231.234375 Z M 310.476562 231.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.074219 232.542969 C 312.074219 232.425781 311.980469 232.332031 311.863281 232.332031 C 311.746094 232.332031 311.652344 232.425781 311.652344 232.542969 C 311.652344 232.660156 311.746094 232.753906 311.863281 232.753906 C 311.980469 232.753906 312.074219 232.660156 312.074219 232.542969 Z M 312.074219 232.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.203125 229.070312 C 315.203125 228.953125 315.109375 228.859375 314.992188 228.859375 C 314.875 228.859375 314.78125 228.953125 314.78125 229.070312 C 314.78125 229.1875 314.875 229.28125 314.992188 229.28125 C 315.109375 229.28125 315.203125 229.1875 315.203125 229.070312 Z M 315.203125 229.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.765625 226.589844 C 312.765625 226.472656 312.671875 226.378906 312.554688 226.378906 C 312.4375 226.378906 312.34375 226.472656 312.34375 226.589844 C 312.34375 226.707031 312.4375 226.800781 312.554688 226.800781 C 312.671875 226.800781 312.765625 226.707031 312.765625 226.589844 Z M 312.765625 226.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.9375 225.207031 C 310.9375 225.089844 310.84375 224.996094 310.726562 224.996094 C 310.609375 224.996094 310.515625 225.089844 310.515625 225.207031 C 310.515625 225.324219 310.609375 225.417969 310.726562 225.417969 C 310.84375 225.417969 310.9375 225.324219 310.9375 225.207031 Z M 310.9375 225.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.507812 228.601562 C 310.507812 228.484375 310.414062 228.390625 310.296875 228.390625 C 310.179688 228.390625 310.085938 228.484375 310.085938 228.601562 C 310.085938 228.71875 310.179688 228.8125 310.296875 228.8125 C 310.414062 228.8125 310.507812 228.71875 310.507812 228.601562 Z M 310.507812 228.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.582031 231.21875 C 311.582031 231.101562 311.488281 231.007812 311.371094 231.007812 C 311.253906 231.007812 311.160156 231.101562 311.160156 231.21875 C 311.160156 231.335938 311.253906 231.429688 311.371094 231.429688 C 311.488281 231.429688 311.582031 231.335938 311.582031 231.21875 Z M 311.582031 231.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.597656 233.289062 C 308.597656 233.171875 308.503906 233.078125 308.386719 233.078125 C 308.269531 233.078125 308.175781 233.171875 308.175781 233.289062 C 308.175781 233.40625 308.269531 233.5 308.386719 233.5 C 308.503906 233.5 308.597656 233.40625 308.597656 233.289062 Z M 308.597656 233.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.324219 235.832031 C 311.324219 235.714844 311.230469 235.621094 311.113281 235.621094 C 310.996094 235.621094 310.902344 235.714844 310.902344 235.832031 C 310.902344 235.949219 310.996094 236.042969 311.113281 236.042969 C 311.230469 236.042969 311.324219 235.949219 311.324219 235.832031 Z M 311.324219 235.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.5 236.734375 C 309.5 236.617188 309.40625 236.523438 309.289062 236.523438 C 309.171875 236.523438 309.078125 236.617188 309.078125 236.734375 C 309.078125 236.851562 309.171875 236.945312 309.289062 236.945312 C 309.40625 236.945312 309.5 236.851562 309.5 236.734375 Z M 309.5 236.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.085938 237.839844 C 308.085938 237.722656 307.992188 237.628906 307.875 237.628906 C 307.757812 237.628906 307.664062 237.722656 307.664062 237.839844 C 307.664062 237.957031 307.757812 238.050781 307.875 238.050781 C 307.992188 238.050781 308.085938 237.957031 308.085938 237.839844 Z M 308.085938 237.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.214844 237.804688 C 309.214844 237.6875 309.121094 237.59375 309.003906 237.59375 C 308.886719 237.59375 308.792969 237.6875 308.792969 237.804688 C 308.792969 237.921875 308.886719 238.015625 309.003906 238.015625 C 309.121094 238.015625 309.214844 237.921875 309.214844 237.804688 Z M 309.214844 237.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.003906 236.542969 C 307.003906 236.425781 306.910156 236.332031 306.792969 236.332031 C 306.675781 236.332031 306.582031 236.425781 306.582031 236.542969 C 306.582031 236.660156 306.675781 236.753906 306.792969 236.753906 C 306.910156 236.753906 307.003906 236.660156 307.003906 236.542969 Z M 307.003906 236.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.199219 232.195312 C 305.199219 232.078125 305.105469 231.984375 304.988281 231.984375 C 304.871094 231.984375 304.777344 232.078125 304.777344 232.195312 C 304.777344 232.3125 304.871094 232.40625 304.988281 232.40625 C 305.105469 232.40625 305.199219 232.3125 305.199219 232.195312 Z M 305.199219 232.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.515625 235.644531 C 304.515625 235.527344 304.421875 235.433594 304.304688 235.433594 C 304.1875 235.433594 304.09375 235.527344 304.09375 235.644531 C 304.09375 235.761719 304.1875 235.855469 304.304688 235.855469 C 304.421875 235.855469 304.515625 235.761719 304.515625 235.644531 Z M 304.515625 235.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.691406 236.019531 C 304.691406 235.902344 304.597656 235.808594 304.480469 235.808594 C 304.363281 235.808594 304.269531 235.902344 304.269531 236.019531 C 304.269531 236.136719 304.363281 236.230469 304.480469 236.230469 C 304.597656 236.230469 304.691406 236.136719 304.691406 236.019531 Z M 304.691406 236.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.59375 232.855469 C 309.59375 232.738281 309.5 232.644531 309.382812 232.644531 C 309.265625 232.644531 309.171875 232.738281 309.171875 232.855469 C 309.171875 232.972656 309.265625 233.066406 309.382812 233.066406 C 309.5 233.066406 309.59375 232.972656 309.59375 232.855469 Z M 309.59375 232.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.671875 230.867188 C 306.671875 230.75 306.578125 230.65625 306.460938 230.65625 C 306.34375 230.65625 306.25 230.75 306.25 230.867188 C 306.25 230.984375 306.34375 231.078125 306.460938 231.078125 C 306.578125 231.078125 306.671875 230.984375 306.671875 230.867188 Z M 306.671875 230.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.777344 229.378906 C 305.777344 229.261719 305.683594 229.167969 305.566406 229.167969 C 305.449219 229.167969 305.355469 229.261719 305.355469 229.378906 C 305.355469 229.496094 305.449219 229.589844 305.566406 229.589844 C 305.683594 229.589844 305.777344 229.496094 305.777344 229.378906 Z M 305.777344 229.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.097656 229.75 C 308.097656 229.632812 308.003906 229.539062 307.886719 229.539062 C 307.769531 229.539062 307.675781 229.632812 307.675781 229.75 C 307.675781 229.867188 307.769531 229.960938 307.886719 229.960938 C 308.003906 229.960938 308.097656 229.867188 308.097656 229.75 Z M 308.097656 229.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.953125 233.648438 C 306.953125 233.53125 306.859375 233.4375 306.742188 233.4375 C 306.625 233.4375 306.53125 233.53125 306.53125 233.648438 C 306.53125 233.765625 306.625 233.859375 306.742188 233.859375 C 306.859375 233.859375 306.953125 233.765625 306.953125 233.648438 Z M 306.953125 233.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.457031 233.9375 C 306.457031 233.820312 306.363281 233.726562 306.246094 233.726562 C 306.128906 233.726562 306.035156 233.820312 306.035156 233.9375 C 306.035156 234.054688 306.128906 234.148438 306.246094 234.148438 C 306.363281 234.148438 306.457031 234.054688 306.457031 233.9375 Z M 306.457031 233.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.640625 236.476562 C 303.640625 236.359375 303.546875 236.265625 303.429688 236.265625 C 303.3125 236.265625 303.21875 236.359375 303.21875 236.476562 C 303.21875 236.59375 303.3125 236.6875 303.429688 236.6875 C 303.546875 236.6875 303.640625 236.59375 303.640625 236.476562 Z M 303.640625 236.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.414062 237 C 304.414062 236.882812 304.320312 236.789062 304.203125 236.789062 C 304.085938 236.789062 303.992188 236.882812 303.992188 237 C 303.992188 237.117188 304.085938 237.210938 304.203125 237.210938 C 304.320312 237.210938 304.414062 237.117188 304.414062 237 Z M 304.414062 237 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.257812 238.785156 C 308.257812 238.667969 308.164062 238.574219 308.046875 238.574219 C 307.929688 238.574219 307.835938 238.667969 307.835938 238.785156 C 307.835938 238.902344 307.929688 238.996094 308.046875 238.996094 C 308.164062 238.996094 308.257812 238.902344 308.257812 238.785156 Z M 308.257812 238.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.40625 240.492188 C 307.40625 240.375 307.3125 240.28125 307.195312 240.28125 C 307.078125 240.28125 306.984375 240.375 306.984375 240.492188 C 306.984375 240.609375 307.078125 240.703125 307.195312 240.703125 C 307.3125 240.703125 307.40625 240.609375 307.40625 240.492188 Z M 307.40625 240.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.796875 242.199219 C 309.796875 242.082031 309.703125 241.988281 309.585938 241.988281 C 309.46875 241.988281 309.375 242.082031 309.375 242.199219 C 309.375 242.316406 309.46875 242.410156 309.585938 242.410156 C 309.703125 242.410156 309.796875 242.316406 309.796875 242.199219 Z M 309.796875 242.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.410156 244.484375 C 307.410156 244.367188 307.316406 244.273438 307.199219 244.273438 C 307.082031 244.273438 306.988281 244.367188 306.988281 244.484375 C 306.988281 244.601562 307.082031 244.695312 307.199219 244.695312 C 307.316406 244.695312 307.410156 244.601562 307.410156 244.484375 Z M 307.410156 244.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.585938 242.777344 C 306.585938 242.660156 306.492188 242.566406 306.375 242.566406 C 306.257812 242.566406 306.164062 242.660156 306.164062 242.777344 C 306.164062 242.894531 306.257812 242.988281 306.375 242.988281 C 306.492188 242.988281 306.585938 242.894531 306.585938 242.777344 Z M 306.585938 242.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.441406 243.324219 C 304.441406 243.207031 304.347656 243.113281 304.230469 243.113281 C 304.113281 243.113281 304.019531 243.207031 304.019531 243.324219 C 304.019531 243.441406 304.113281 243.535156 304.230469 243.535156 C 304.347656 243.535156 304.441406 243.441406 304.441406 243.324219 Z M 304.441406 243.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.746094 242.390625 C 301.746094 242.273438 301.652344 242.179688 301.535156 242.179688 C 301.417969 242.179688 301.324219 242.273438 301.324219 242.390625 C 301.324219 242.507812 301.417969 242.601562 301.535156 242.601562 C 301.652344 242.601562 301.746094 242.507812 301.746094 242.390625 Z M 301.746094 242.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.867188 243.382812 C 299.867188 243.265625 299.773438 243.171875 299.65625 243.171875 C 299.539062 243.171875 299.445312 243.265625 299.445312 243.382812 C 299.445312 243.5 299.539062 243.59375 299.65625 243.59375 C 299.773438 243.59375 299.867188 243.5 299.867188 243.382812 Z M 299.867188 243.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.386719 241.382812 C 302.386719 241.265625 302.292969 241.171875 302.175781 241.171875 C 302.058594 241.171875 301.964844 241.265625 301.964844 241.382812 C 301.964844 241.5 302.058594 241.59375 302.175781 241.59375 C 302.292969 241.59375 302.386719 241.5 302.386719 241.382812 Z M 302.386719 241.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.53125 242.210938 C 303.53125 242.09375 303.4375 242 303.320312 242 C 303.203125 242 303.109375 242.09375 303.109375 242.210938 C 303.109375 242.328125 303.203125 242.421875 303.320312 242.421875 C 303.4375 242.421875 303.53125 242.328125 303.53125 242.210938 Z M 303.53125 242.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.925781 247.769531 C 308.925781 247.652344 308.832031 247.558594 308.714844 247.558594 C 308.597656 247.558594 308.503906 247.652344 308.503906 247.769531 C 308.503906 247.886719 308.597656 247.980469 308.714844 247.980469 C 308.832031 247.980469 308.925781 247.886719 308.925781 247.769531 Z M 308.925781 247.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.21875 246.386719 C 308.21875 246.269531 308.125 246.175781 308.007812 246.175781 C 307.890625 246.175781 307.796875 246.269531 307.796875 246.386719 C 307.796875 246.503906 307.890625 246.597656 308.007812 246.597656 C 308.125 246.597656 308.21875 246.503906 308.21875 246.386719 Z M 308.21875 246.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.285156 246.664062 C 309.285156 246.546875 309.191406 246.453125 309.074219 246.453125 C 308.957031 246.453125 308.863281 246.546875 308.863281 246.664062 C 308.863281 246.78125 308.957031 246.875 309.074219 246.875 C 309.191406 246.875 309.285156 246.78125 309.285156 246.664062 Z M 309.285156 246.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.335938 242.378906 C 306.335938 242.261719 306.242188 242.167969 306.125 242.167969 C 306.007812 242.167969 305.914062 242.261719 305.914062 242.378906 C 305.914062 242.496094 306.007812 242.589844 306.125 242.589844 C 306.242188 242.589844 306.335938 242.496094 306.335938 242.378906 Z M 306.335938 242.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.105469 240.207031 C 303.105469 240.089844 303.011719 239.996094 302.894531 239.996094 C 302.777344 239.996094 302.683594 240.089844 302.683594 240.207031 C 302.683594 240.324219 302.777344 240.417969 302.894531 240.417969 C 303.011719 240.417969 303.105469 240.324219 303.105469 240.207031 Z M 303.105469 240.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.019531 240.320312 C 310.019531 240.203125 309.925781 240.109375 309.808594 240.109375 C 309.691406 240.109375 309.597656 240.203125 309.597656 240.320312 C 309.597656 240.4375 309.691406 240.53125 309.808594 240.53125 C 309.925781 240.53125 310.019531 240.4375 310.019531 240.320312 Z M 310.019531 240.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.449219 238.925781 C 312.449219 238.808594 312.355469 238.714844 312.238281 238.714844 C 312.121094 238.714844 312.027344 238.808594 312.027344 238.925781 C 312.027344 239.042969 312.121094 239.136719 312.238281 239.136719 C 312.355469 239.136719 312.449219 239.042969 312.449219 238.925781 Z M 312.449219 238.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.574219 237.65625 C 313.574219 237.539062 313.480469 237.445312 313.363281 237.445312 C 313.246094 237.445312 313.152344 237.539062 313.152344 237.65625 C 313.152344 237.773438 313.246094 237.867188 313.363281 237.867188 C 313.480469 237.867188 313.574219 237.773438 313.574219 237.65625 Z M 313.574219 237.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.625 241.664062 C 314.625 241.546875 314.53125 241.453125 314.414062 241.453125 C 314.296875 241.453125 314.203125 241.546875 314.203125 241.664062 C 314.203125 241.78125 314.296875 241.875 314.414062 241.875 C 314.53125 241.875 314.625 241.78125 314.625 241.664062 Z M 314.625 241.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.109375 242.398438 C 317.109375 242.28125 317.015625 242.1875 316.898438 242.1875 C 316.78125 242.1875 316.6875 242.28125 316.6875 242.398438 C 316.6875 242.515625 316.78125 242.609375 316.898438 242.609375 C 317.015625 242.609375 317.109375 242.515625 317.109375 242.398438 Z M 317.109375 242.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.503906 239.472656 C 314.503906 239.355469 314.410156 239.261719 314.292969 239.261719 C 314.175781 239.261719 314.082031 239.355469 314.082031 239.472656 C 314.082031 239.589844 314.175781 239.683594 314.292969 239.683594 C 314.410156 239.683594 314.503906 239.589844 314.503906 239.472656 Z M 314.503906 239.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.226562 239.085938 C 316.226562 238.96875 316.132812 238.875 316.015625 238.875 C 315.898438 238.875 315.804688 238.96875 315.804688 239.085938 C 315.804688 239.203125 315.898438 239.296875 316.015625 239.296875 C 316.132812 239.296875 316.226562 239.203125 316.226562 239.085938 Z M 316.226562 239.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315 238.957031 C 315 238.839844 314.90625 238.746094 314.789062 238.746094 C 314.671875 238.746094 314.578125 238.839844 314.578125 238.957031 C 314.578125 239.074219 314.671875 239.167969 314.789062 239.167969 C 314.90625 239.167969 315 239.074219 315 238.957031 Z M 315 238.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 318.566406 233.261719 C 318.566406 233.144531 318.472656 233.050781 318.355469 233.050781 C 318.238281 233.050781 318.144531 233.144531 318.144531 233.261719 C 318.144531 233.378906 318.238281 233.472656 318.355469 233.472656 C 318.472656 233.472656 318.566406 233.378906 318.566406 233.261719 Z M 318.566406 233.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.273438 235.59375 C 323.273438 235.476562 323.179688 235.382812 323.0625 235.382812 C 322.945312 235.382812 322.851562 235.476562 322.851562 235.59375 C 322.851562 235.710938 322.945312 235.804688 323.0625 235.804688 C 323.179688 235.804688 323.273438 235.710938 323.273438 235.59375 Z M 323.273438 235.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.210938 236.910156 C 326.210938 236.792969 326.117188 236.699219 326 236.699219 C 325.882812 236.699219 325.789062 236.792969 325.789062 236.910156 C 325.789062 237.027344 325.882812 237.121094 326 237.121094 C 326.117188 237.121094 326.210938 237.027344 326.210938 236.910156 Z M 326.210938 236.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.460938 241.960938 C 326.460938 241.84375 326.367188 241.75 326.25 241.75 C 326.132812 241.75 326.039062 241.84375 326.039062 241.960938 C 326.039062 242.078125 326.132812 242.171875 326.25 242.171875 C 326.367188 242.171875 326.460938 242.078125 326.460938 241.960938 Z M 326.460938 241.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.347656 243.464844 C 325.347656 243.347656 325.253906 243.253906 325.136719 243.253906 C 325.019531 243.253906 324.925781 243.347656 324.925781 243.464844 C 324.925781 243.582031 325.019531 243.675781 325.136719 243.675781 C 325.253906 243.675781 325.347656 243.582031 325.347656 243.464844 Z M 325.347656 243.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.152344 243.5625 C 321.152344 243.445312 321.058594 243.351562 320.941406 243.351562 C 320.824219 243.351562 320.730469 243.445312 320.730469 243.5625 C 320.730469 243.679688 320.824219 243.773438 320.941406 243.773438 C 321.058594 243.773438 321.152344 243.679688 321.152344 243.5625 Z M 321.152344 243.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 320.75 244.480469 C 320.75 244.363281 320.65625 244.269531 320.539062 244.269531 C 320.421875 244.269531 320.328125 244.363281 320.328125 244.480469 C 320.328125 244.597656 320.421875 244.691406 320.539062 244.691406 C 320.65625 244.691406 320.75 244.597656 320.75 244.480469 Z M 320.75 244.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.738281 244.804688 C 322.738281 244.6875 322.644531 244.59375 322.527344 244.59375 C 322.410156 244.59375 322.316406 244.6875 322.316406 244.804688 C 322.316406 244.921875 322.410156 245.015625 322.527344 245.015625 C 322.644531 245.015625 322.738281 244.921875 322.738281 244.804688 Z M 322.738281 244.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.382812 245.003906 C 324.382812 244.886719 324.289062 244.792969 324.171875 244.792969 C 324.054688 244.792969 323.960938 244.886719 323.960938 245.003906 C 323.960938 245.121094 324.054688 245.214844 324.171875 245.214844 C 324.289062 245.214844 324.382812 245.121094 324.382812 245.003906 Z M 324.382812 245.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.226562 244.976562 C 325.226562 244.859375 325.132812 244.765625 325.015625 244.765625 C 324.898438 244.765625 324.804688 244.859375 324.804688 244.976562 C 324.804688 245.09375 324.898438 245.1875 325.015625 245.1875 C 325.132812 245.1875 325.226562 245.09375 325.226562 244.976562 Z M 325.226562 244.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.972656 248.183594 C 324.972656 248.066406 324.878906 247.972656 324.761719 247.972656 C 324.644531 247.972656 324.550781 248.066406 324.550781 248.183594 C 324.550781 248.300781 324.644531 248.394531 324.761719 248.394531 C 324.878906 248.394531 324.972656 248.300781 324.972656 248.183594 Z M 324.972656 248.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.648438 249.179688 C 325.648438 249.0625 325.554688 248.96875 325.4375 248.96875 C 325.320312 248.96875 325.226562 249.0625 325.226562 249.179688 C 325.226562 249.296875 325.320312 249.390625 325.4375 249.390625 C 325.554688 249.390625 325.648438 249.296875 325.648438 249.179688 Z M 325.648438 249.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 328.066406 247.761719 C 328.066406 247.644531 327.972656 247.550781 327.855469 247.550781 C 327.738281 247.550781 327.644531 247.644531 327.644531 247.761719 C 327.644531 247.878906 327.738281 247.972656 327.855469 247.972656 C 327.972656 247.972656 328.066406 247.878906 328.066406 247.761719 Z M 328.066406 247.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 328.773438 247.484375 C 328.773438 247.367188 328.679688 247.273438 328.5625 247.273438 C 328.445312 247.273438 328.351562 247.367188 328.351562 247.484375 C 328.351562 247.601562 328.445312 247.695312 328.5625 247.695312 C 328.679688 247.695312 328.773438 247.601562 328.773438 247.484375 Z M 328.773438 247.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 329.070312 246.710938 C 329.070312 246.59375 328.976562 246.5 328.859375 246.5 C 328.742188 246.5 328.648438 246.59375 328.648438 246.710938 C 328.648438 246.828125 328.742188 246.921875 328.859375 246.921875 C 328.976562 246.921875 329.070312 246.828125 329.070312 246.710938 Z M 329.070312 246.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.523438 246.652344 C 327.523438 246.535156 327.429688 246.441406 327.3125 246.441406 C 327.195312 246.441406 327.101562 246.535156 327.101562 246.652344 C 327.101562 246.769531 327.195312 246.863281 327.3125 246.863281 C 327.429688 246.863281 327.523438 246.769531 327.523438 246.652344 Z M 327.523438 246.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.128906 247.0625 C 327.128906 246.945312 327.035156 246.851562 326.917969 246.851562 C 326.800781 246.851562 326.707031 246.945312 326.707031 247.0625 C 326.707031 247.179688 326.800781 247.273438 326.917969 247.273438 C 327.035156 247.273438 327.128906 247.179688 327.128906 247.0625 Z M 327.128906 247.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.613281 248.183594 C 327.613281 248.066406 327.519531 247.972656 327.402344 247.972656 C 327.285156 247.972656 327.191406 248.066406 327.191406 248.183594 C 327.191406 248.300781 327.285156 248.394531 327.402344 248.394531 C 327.519531 248.394531 327.613281 248.300781 327.613281 248.183594 Z M 327.613281 248.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.773438 249.238281 C 327.773438 249.121094 327.679688 249.027344 327.5625 249.027344 C 327.445312 249.027344 327.351562 249.121094 327.351562 249.238281 C 327.351562 249.355469 327.445312 249.449219 327.5625 249.449219 C 327.679688 249.449219 327.773438 249.355469 327.773438 249.238281 Z M 327.773438 249.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.316406 247.53125 C 326.316406 247.414062 326.222656 247.320312 326.105469 247.320312 C 325.988281 247.320312 325.894531 247.414062 325.894531 247.53125 C 325.894531 247.648438 325.988281 247.742188 326.105469 247.742188 C 326.222656 247.742188 326.316406 247.648438 326.316406 247.53125 Z M 326.316406 247.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 329.515625 243.730469 C 329.515625 243.613281 329.421875 243.519531 329.304688 243.519531 C 329.1875 243.519531 329.09375 243.613281 329.09375 243.730469 C 329.09375 243.847656 329.1875 243.941406 329.304688 243.941406 C 329.421875 243.941406 329.515625 243.847656 329.515625 243.730469 Z M 329.515625 243.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 331.492188 243.363281 C 331.492188 243.246094 331.398438 243.152344 331.28125 243.152344 C 331.164062 243.152344 331.070312 243.246094 331.070312 243.363281 C 331.070312 243.480469 331.164062 243.574219 331.28125 243.574219 C 331.398438 243.574219 331.492188 243.480469 331.492188 243.363281 Z M 331.492188 243.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 332.433594 245.890625 C 332.433594 245.773438 332.339844 245.679688 332.222656 245.679688 C 332.105469 245.679688 332.011719 245.773438 332.011719 245.890625 C 332.011719 246.007812 332.105469 246.101562 332.222656 246.101562 C 332.339844 246.101562 332.433594 246.007812 332.433594 245.890625 Z M 332.433594 245.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 334.21875 247.582031 C 334.21875 247.464844 334.125 247.371094 334.007812 247.371094 C 333.890625 247.371094 333.796875 247.464844 333.796875 247.582031 C 333.796875 247.699219 333.890625 247.792969 334.007812 247.792969 C 334.125 247.792969 334.21875 247.699219 334.21875 247.582031 Z M 334.21875 247.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 332.257812 252.9375 C 332.257812 252.820312 332.164062 252.726562 332.046875 252.726562 C 331.929688 252.726562 331.835938 252.820312 331.835938 252.9375 C 331.835938 253.054688 331.929688 253.148438 332.046875 253.148438 C 332.164062 253.148438 332.257812 253.054688 332.257812 252.9375 Z M 332.257812 252.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 332.742188 246.585938 C 332.742188 246.46875 332.648438 246.375 332.53125 246.375 C 332.414062 246.375 332.320312 246.46875 332.320312 246.585938 C 332.320312 246.703125 332.414062 246.796875 332.53125 246.796875 C 332.648438 246.796875 332.742188 246.703125 332.742188 246.585938 Z M 332.742188 246.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 332.230469 247.164062 C 332.230469 247.046875 332.136719 246.953125 332.019531 246.953125 C 331.902344 246.953125 331.808594 247.046875 331.808594 247.164062 C 331.808594 247.28125 331.902344 247.375 332.019531 247.375 C 332.136719 247.375 332.230469 247.28125 332.230469 247.164062 Z M 332.230469 247.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 330.21875 247.695312 C 330.21875 247.578125 330.125 247.484375 330.007812 247.484375 C 329.890625 247.484375 329.796875 247.578125 329.796875 247.695312 C 329.796875 247.8125 329.890625 247.90625 330.007812 247.90625 C 330.125 247.90625 330.21875 247.8125 330.21875 247.695312 Z M 330.21875 247.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 330.25 246.296875 C 330.25 246.179688 330.15625 246.085938 330.039062 246.085938 C 329.921875 246.085938 329.828125 246.179688 329.828125 246.296875 C 329.828125 246.414062 329.921875 246.507812 330.039062 246.507812 C 330.15625 246.507812 330.25 246.414062 330.25 246.296875 Z M 330.25 246.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 331.082031 248.882812 C 331.082031 248.765625 330.988281 248.671875 330.871094 248.671875 C 330.753906 248.671875 330.660156 248.765625 330.660156 248.882812 C 330.660156 249 330.753906 249.09375 330.871094 249.09375 C 330.988281 249.09375 331.082031 249 331.082031 248.882812 Z M 331.082031 248.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 331.117188 249.269531 C 331.117188 249.152344 331.023438 249.058594 330.90625 249.058594 C 330.789062 249.058594 330.695312 249.152344 330.695312 249.269531 C 330.695312 249.386719 330.789062 249.480469 330.90625 249.480469 C 331.023438 249.480469 331.117188 249.386719 331.117188 249.269531 Z M 331.117188 249.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 334.351562 249.148438 C 334.351562 249.03125 334.257812 248.9375 334.140625 248.9375 C 334.023438 248.9375 333.929688 249.03125 333.929688 249.148438 C 333.929688 249.265625 334.023438 249.359375 334.140625 249.359375 C 334.257812 249.359375 334.351562 249.265625 334.351562 249.148438 Z M 334.351562 249.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 334.257812 246.269531 C 334.257812 246.152344 334.164062 246.058594 334.046875 246.058594 C 333.929688 246.058594 333.835938 246.152344 333.835938 246.269531 C 333.835938 246.386719 333.929688 246.480469 334.046875 246.480469 C 334.164062 246.480469 334.257812 246.386719 334.257812 246.269531 Z M 334.257812 246.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 333.78125 248.824219 C 333.78125 248.707031 333.6875 248.613281 333.570312 248.613281 C 333.453125 248.613281 333.359375 248.707031 333.359375 248.824219 C 333.359375 248.941406 333.453125 249.035156 333.570312 249.035156 C 333.6875 249.035156 333.78125 248.941406 333.78125 248.824219 Z M 333.78125 248.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 335.46875 247.828125 C 335.46875 247.710938 335.375 247.617188 335.257812 247.617188 C 335.140625 247.617188 335.046875 247.710938 335.046875 247.828125 C 335.046875 247.945312 335.140625 248.039062 335.257812 248.039062 C 335.375 248.039062 335.46875 247.945312 335.46875 247.828125 Z M 335.46875 247.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 337.121094 246.941406 C 337.121094 246.824219 337.027344 246.730469 336.910156 246.730469 C 336.792969 246.730469 336.699219 246.824219 336.699219 246.941406 C 336.699219 247.058594 336.792969 247.152344 336.910156 247.152344 C 337.027344 247.152344 337.121094 247.058594 337.121094 246.941406 Z M 337.121094 246.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 338.460938 246.515625 C 338.460938 246.398438 338.367188 246.304688 338.25 246.304688 C 338.132812 246.304688 338.039062 246.398438 338.039062 246.515625 C 338.039062 246.632812 338.132812 246.726562 338.25 246.726562 C 338.367188 246.726562 338.460938 246.632812 338.460938 246.515625 Z M 338.460938 246.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 334.589844 242.535156 C 334.589844 242.417969 334.496094 242.324219 334.378906 242.324219 C 334.261719 242.324219 334.167969 242.417969 334.167969 242.535156 C 334.167969 242.652344 334.261719 242.746094 334.378906 242.746094 C 334.496094 242.746094 334.589844 242.652344 334.589844 242.535156 Z M 334.589844 242.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 333.90625 241.308594 C 333.90625 241.191406 333.8125 241.097656 333.695312 241.097656 C 333.578125 241.097656 333.484375 241.191406 333.484375 241.308594 C 333.484375 241.425781 333.578125 241.519531 333.695312 241.519531 C 333.8125 241.519531 333.90625 241.425781 333.90625 241.308594 Z M 333.90625 241.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 333.605469 240.800781 C 333.605469 240.683594 333.511719 240.589844 333.394531 240.589844 C 333.277344 240.589844 333.183594 240.683594 333.183594 240.800781 C 333.183594 240.917969 333.277344 241.011719 333.394531 241.011719 C 333.511719 241.011719 333.605469 240.917969 333.605469 240.800781 Z M 333.605469 240.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 337.117188 243.285156 C 337.117188 243.167969 337.023438 243.074219 336.90625 243.074219 C 336.789062 243.074219 336.695312 243.167969 336.695312 243.285156 C 336.695312 243.402344 336.789062 243.496094 336.90625 243.496094 C 337.023438 243.496094 337.117188 243.402344 337.117188 243.285156 Z M 337.117188 243.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 339.539062 243.671875 C 339.539062 243.554688 339.445312 243.460938 339.328125 243.460938 C 339.210938 243.460938 339.117188 243.554688 339.117188 243.671875 C 339.117188 243.789062 339.210938 243.882812 339.328125 243.882812 C 339.445312 243.882812 339.539062 243.789062 339.539062 243.671875 Z M 339.539062 243.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 336.175781 244.800781 C 336.175781 244.683594 336.082031 244.589844 335.964844 244.589844 C 335.847656 244.589844 335.753906 244.683594 335.753906 244.800781 C 335.753906 244.917969 335.847656 245.011719 335.964844 245.011719 C 336.082031 245.011719 336.175781 244.917969 336.175781 244.800781 Z M 336.175781 244.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 337.972656 243.816406 C 337.972656 243.699219 337.878906 243.605469 337.761719 243.605469 C 337.644531 243.605469 337.550781 243.699219 337.550781 243.816406 C 337.550781 243.933594 337.644531 244.027344 337.761719 244.027344 C 337.878906 244.027344 337.972656 243.933594 337.972656 243.816406 Z M 337.972656 243.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 336.703125 243.675781 C 336.703125 243.558594 336.609375 243.464844 336.492188 243.464844 C 336.375 243.464844 336.28125 243.558594 336.28125 243.675781 C 336.28125 243.792969 336.375 243.886719 336.492188 243.886719 C 336.609375 243.886719 336.703125 243.792969 336.703125 243.675781 Z M 336.703125 243.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 332.945312 246.074219 C 332.945312 245.957031 332.851562 245.863281 332.734375 245.863281 C 332.617188 245.863281 332.523438 245.957031 332.523438 246.074219 C 332.523438 246.191406 332.617188 246.285156 332.734375 246.285156 C 332.851562 246.285156 332.945312 246.191406 332.945312 246.074219 Z M 332.945312 246.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 331.378906 247.414062 C 331.378906 247.296875 331.285156 247.203125 331.167969 247.203125 C 331.050781 247.203125 330.957031 247.296875 330.957031 247.414062 C 330.957031 247.53125 331.050781 247.625 331.167969 247.625 C 331.285156 247.625 331.378906 247.53125 331.378906 247.414062 Z M 331.378906 247.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 330.847656 246.785156 C 330.847656 246.667969 330.753906 246.574219 330.636719 246.574219 C 330.519531 246.574219 330.425781 246.667969 330.425781 246.785156 C 330.425781 246.902344 330.519531 246.996094 330.636719 246.996094 C 330.753906 246.996094 330.847656 246.902344 330.847656 246.785156 Z M 330.847656 246.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 329.671875 244.753906 C 329.671875 244.636719 329.578125 244.542969 329.460938 244.542969 C 329.34375 244.542969 329.25 244.636719 329.25 244.753906 C 329.25 244.871094 329.34375 244.964844 329.460938 244.964844 C 329.578125 244.964844 329.671875 244.871094 329.671875 244.753906 Z M 329.671875 244.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 331.296875 243.765625 C 331.296875 243.648438 331.203125 243.554688 331.085938 243.554688 C 330.96875 243.554688 330.875 243.648438 330.875 243.765625 C 330.875 243.882812 330.96875 243.976562 331.085938 243.976562 C 331.203125 243.976562 331.296875 243.882812 331.296875 243.765625 Z M 331.296875 243.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 331.660156 242.546875 C 331.660156 242.429688 331.566406 242.335938 331.449219 242.335938 C 331.332031 242.335938 331.238281 242.429688 331.238281 242.546875 C 331.238281 242.664062 331.332031 242.757812 331.449219 242.757812 C 331.566406 242.757812 331.660156 242.664062 331.660156 242.546875 Z M 331.660156 242.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 332.507812 243.472656 C 332.507812 243.355469 332.414062 243.261719 332.296875 243.261719 C 332.179688 243.261719 332.085938 243.355469 332.085938 243.472656 C 332.085938 243.589844 332.179688 243.683594 332.296875 243.683594 C 332.414062 243.683594 332.507812 243.589844 332.507812 243.472656 Z M 332.507812 243.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 334.308594 241.097656 C 334.308594 240.980469 334.214844 240.886719 334.097656 240.886719 C 333.980469 240.886719 333.886719 240.980469 333.886719 241.097656 C 333.886719 241.214844 333.980469 241.308594 334.097656 241.308594 C 334.214844 241.308594 334.308594 241.214844 334.308594 241.097656 Z M 334.308594 241.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 331.601562 244.882812 C 331.601562 244.765625 331.507812 244.671875 331.390625 244.671875 C 331.273438 244.671875 331.179688 244.765625 331.179688 244.882812 C 331.179688 245 331.273438 245.09375 331.390625 245.09375 C 331.507812 245.09375 331.601562 245 331.601562 244.882812 Z M 331.601562 244.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 330.84375 244.34375 C 330.84375 244.226562 330.75 244.132812 330.632812 244.132812 C 330.515625 244.132812 330.421875 244.226562 330.421875 244.34375 C 330.421875 244.460938 330.515625 244.554688 330.632812 244.554688 C 330.75 244.554688 330.84375 244.460938 330.84375 244.34375 Z M 330.84375 244.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 331.714844 243.722656 C 331.714844 243.605469 331.621094 243.511719 331.503906 243.511719 C 331.386719 243.511719 331.292969 243.605469 331.292969 243.722656 C 331.292969 243.839844 331.386719 243.933594 331.503906 243.933594 C 331.621094 243.933594 331.714844 243.839844 331.714844 243.722656 Z M 331.714844 243.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 332.308594 248.367188 C 332.308594 248.25 332.214844 248.15625 332.097656 248.15625 C 331.980469 248.15625 331.886719 248.25 331.886719 248.367188 C 331.886719 248.484375 331.980469 248.578125 332.097656 248.578125 C 332.214844 248.578125 332.308594 248.484375 332.308594 248.367188 Z M 332.308594 248.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 334.273438 250.453125 C 334.273438 250.335938 334.179688 250.242188 334.0625 250.242188 C 333.945312 250.242188 333.851562 250.335938 333.851562 250.453125 C 333.851562 250.570312 333.945312 250.664062 334.0625 250.664062 C 334.179688 250.664062 334.273438 250.570312 334.273438 250.453125 Z M 334.273438 250.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 332.554688 251.992188 C 332.554688 251.875 332.460938 251.78125 332.34375 251.78125 C 332.226562 251.78125 332.132812 251.875 332.132812 251.992188 C 332.132812 252.109375 332.226562 252.203125 332.34375 252.203125 C 332.460938 252.203125 332.554688 252.109375 332.554688 251.992188 Z M 332.554688 251.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 330.800781 254.039062 C 330.800781 253.921875 330.707031 253.828125 330.589844 253.828125 C 330.472656 253.828125 330.378906 253.921875 330.378906 254.039062 C 330.378906 254.15625 330.472656 254.25 330.589844 254.25 C 330.707031 254.25 330.800781 254.15625 330.800781 254.039062 Z M 330.800781 254.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 334.667969 256.039062 C 334.667969 255.921875 334.574219 255.828125 334.457031 255.828125 C 334.339844 255.828125 334.246094 255.921875 334.246094 256.039062 C 334.246094 256.15625 334.339844 256.25 334.457031 256.25 C 334.574219 256.25 334.667969 256.15625 334.667969 256.039062 Z M 334.667969 256.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 332.707031 258.503906 C 332.707031 258.386719 332.613281 258.292969 332.496094 258.292969 C 332.378906 258.292969 332.285156 258.386719 332.285156 258.503906 C 332.285156 258.621094 332.378906 258.714844 332.496094 258.714844 C 332.613281 258.714844 332.707031 258.621094 332.707031 258.503906 Z M 332.707031 258.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 329.675781 256.921875 C 329.675781 256.804688 329.582031 256.710938 329.464844 256.710938 C 329.347656 256.710938 329.253906 256.804688 329.253906 256.921875 C 329.253906 257.039062 329.347656 257.132812 329.464844 257.132812 C 329.582031 257.132812 329.675781 257.039062 329.675781 256.921875 Z M 329.675781 256.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 331.789062 258.503906 C 331.789062 258.386719 331.695312 258.292969 331.578125 258.292969 C 331.460938 258.292969 331.367188 258.386719 331.367188 258.503906 C 331.367188 258.621094 331.460938 258.714844 331.578125 258.714844 C 331.695312 258.714844 331.789062 258.621094 331.789062 258.503906 Z M 331.789062 258.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 330.507812 256.347656 C 330.507812 256.230469 330.414062 256.136719 330.296875 256.136719 C 330.179688 256.136719 330.085938 256.230469 330.085938 256.347656 C 330.085938 256.464844 330.179688 256.558594 330.296875 256.558594 C 330.414062 256.558594 330.507812 256.464844 330.507812 256.347656 Z M 330.507812 256.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 330.265625 260.492188 C 330.265625 260.375 330.171875 260.28125 330.054688 260.28125 C 329.9375 260.28125 329.84375 260.375 329.84375 260.492188 C 329.84375 260.609375 329.9375 260.703125 330.054688 260.703125 C 330.171875 260.703125 330.265625 260.609375 330.265625 260.492188 Z M 330.265625 260.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 332.960938 257.496094 C 332.960938 257.378906 332.867188 257.285156 332.75 257.285156 C 332.632812 257.285156 332.539062 257.378906 332.539062 257.496094 C 332.539062 257.613281 332.632812 257.707031 332.75 257.707031 C 332.867188 257.707031 332.960938 257.613281 332.960938 257.496094 Z M 332.960938 257.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 333.238281 255.785156 C 333.238281 255.667969 333.144531 255.574219 333.027344 255.574219 C 332.910156 255.574219 332.816406 255.667969 332.816406 255.785156 C 332.816406 255.902344 332.910156 255.996094 333.027344 255.996094 C 333.144531 255.996094 333.238281 255.902344 333.238281 255.785156 Z M 333.238281 255.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 333.96875 257.328125 C 333.96875 257.210938 333.875 257.117188 333.757812 257.117188 C 333.640625 257.117188 333.546875 257.210938 333.546875 257.328125 C 333.546875 257.445312 333.640625 257.539062 333.757812 257.539062 C 333.875 257.539062 333.96875 257.445312 333.96875 257.328125 Z M 333.96875 257.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 331.617188 258.367188 C 331.617188 258.25 331.523438 258.15625 331.40625 258.15625 C 331.289062 258.15625 331.195312 258.25 331.195312 258.367188 C 331.195312 258.484375 331.289062 258.578125 331.40625 258.578125 C 331.523438 258.578125 331.617188 258.484375 331.617188 258.367188 Z M 331.617188 258.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 331.03125 259.949219 C 331.03125 259.832031 330.9375 259.738281 330.820312 259.738281 C 330.703125 259.738281 330.609375 259.832031 330.609375 259.949219 C 330.609375 260.066406 330.703125 260.160156 330.820312 260.160156 C 330.9375 260.160156 331.03125 260.066406 331.03125 259.949219 Z M 331.03125 259.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 329.6875 262.808594 C 329.6875 262.691406 329.59375 262.597656 329.476562 262.597656 C 329.359375 262.597656 329.265625 262.691406 329.265625 262.808594 C 329.265625 262.925781 329.359375 263.019531 329.476562 263.019531 C 329.59375 263.019531 329.6875 262.925781 329.6875 262.808594 Z M 329.6875 262.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.464844 264.117188 C 327.464844 264 327.371094 263.90625 327.253906 263.90625 C 327.136719 263.90625 327.042969 264 327.042969 264.117188 C 327.042969 264.234375 327.136719 264.328125 327.253906 264.328125 C 327.371094 264.328125 327.464844 264.234375 327.464844 264.117188 Z M 327.464844 264.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.339844 264.242188 C 327.339844 264.125 327.246094 264.03125 327.128906 264.03125 C 327.011719 264.03125 326.917969 264.125 326.917969 264.242188 C 326.917969 264.359375 327.011719 264.453125 327.128906 264.453125 C 327.246094 264.453125 327.339844 264.359375 327.339844 264.242188 Z M 327.339844 264.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.511719 267.441406 C 327.511719 267.324219 327.417969 267.230469 327.300781 267.230469 C 327.183594 267.230469 327.089844 267.324219 327.089844 267.441406 C 327.089844 267.558594 327.183594 267.652344 327.300781 267.652344 C 327.417969 267.652344 327.511719 267.558594 327.511719 267.441406 Z M 327.511719 267.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 329.644531 265.9375 C 329.644531 265.820312 329.550781 265.726562 329.433594 265.726562 C 329.316406 265.726562 329.222656 265.820312 329.222656 265.9375 C 329.222656 266.054688 329.316406 266.148438 329.433594 266.148438 C 329.550781 266.148438 329.644531 266.054688 329.644531 265.9375 Z M 329.644531 265.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 329.964844 266.242188 C 329.964844 266.125 329.871094 266.03125 329.753906 266.03125 C 329.636719 266.03125 329.542969 266.125 329.542969 266.242188 C 329.542969 266.359375 329.636719 266.453125 329.753906 266.453125 C 329.871094 266.453125 329.964844 266.359375 329.964844 266.242188 Z M 329.964844 266.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.933594 267.828125 C 327.933594 267.710938 327.839844 267.617188 327.722656 267.617188 C 327.605469 267.617188 327.511719 267.710938 327.511719 267.828125 C 327.511719 267.945312 327.605469 268.039062 327.722656 268.039062 C 327.839844 268.039062 327.933594 267.945312 327.933594 267.828125 Z M 327.933594 267.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.484375 266.242188 C 325.484375 266.125 325.390625 266.03125 325.273438 266.03125 C 325.15625 266.03125 325.0625 266.125 325.0625 266.242188 C 325.0625 266.359375 325.15625 266.453125 325.273438 266.453125 C 325.390625 266.453125 325.484375 266.359375 325.484375 266.242188 Z M 325.484375 266.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.566406 265.582031 C 324.566406 265.464844 324.472656 265.371094 324.355469 265.371094 C 324.238281 265.371094 324.144531 265.464844 324.144531 265.582031 C 324.144531 265.699219 324.238281 265.792969 324.355469 265.792969 C 324.472656 265.792969 324.566406 265.699219 324.566406 265.582031 Z M 324.566406 265.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.59375 264.320312 C 325.59375 264.203125 325.5 264.109375 325.382812 264.109375 C 325.265625 264.109375 325.171875 264.203125 325.171875 264.320312 C 325.171875 264.4375 325.265625 264.53125 325.382812 264.53125 C 325.5 264.53125 325.59375 264.4375 325.59375 264.320312 Z M 325.59375 264.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.085938 263.800781 C 327.085938 263.683594 326.992188 263.589844 326.875 263.589844 C 326.757812 263.589844 326.664062 263.683594 326.664062 263.800781 C 326.664062 263.917969 326.757812 264.011719 326.875 264.011719 C 326.992188 264.011719 327.085938 263.917969 327.085938 263.800781 Z M 327.085938 263.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.128906 265.804688 C 327.128906 265.6875 327.035156 265.59375 326.917969 265.59375 C 326.800781 265.59375 326.707031 265.6875 326.707031 265.804688 C 326.707031 265.921875 326.800781 266.015625 326.917969 266.015625 C 327.035156 266.015625 327.128906 265.921875 327.128906 265.804688 Z M 327.128906 265.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.019531 266.976562 C 325.019531 266.859375 324.925781 266.765625 324.808594 266.765625 C 324.691406 266.765625 324.597656 266.859375 324.597656 266.976562 C 324.597656 267.09375 324.691406 267.1875 324.808594 267.1875 C 324.925781 267.1875 325.019531 267.09375 325.019531 266.976562 Z M 325.019531 266.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.289062 268.09375 C 321.289062 267.976562 321.195312 267.882812 321.078125 267.882812 C 320.960938 267.882812 320.867188 267.976562 320.867188 268.09375 C 320.867188 268.210938 320.960938 268.304688 321.078125 268.304688 C 321.195312 268.304688 321.289062 268.210938 321.289062 268.09375 Z M 321.289062 268.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 320.902344 269.214844 C 320.902344 269.097656 320.808594 269.003906 320.691406 269.003906 C 320.574219 269.003906 320.480469 269.097656 320.480469 269.214844 C 320.480469 269.332031 320.574219 269.425781 320.691406 269.425781 C 320.808594 269.425781 320.902344 269.332031 320.902344 269.214844 Z M 320.902344 269.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 319.867188 270.769531 C 319.867188 270.652344 319.773438 270.558594 319.65625 270.558594 C 319.539062 270.558594 319.445312 270.652344 319.445312 270.769531 C 319.445312 270.886719 319.539062 270.980469 319.65625 270.980469 C 319.773438 270.980469 319.867188 270.886719 319.867188 270.769531 Z M 319.867188 270.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.8125 269.570312 C 317.8125 269.453125 317.71875 269.359375 317.601562 269.359375 C 317.484375 269.359375 317.390625 269.453125 317.390625 269.570312 C 317.390625 269.6875 317.484375 269.78125 317.601562 269.78125 C 317.71875 269.78125 317.8125 269.6875 317.8125 269.570312 Z M 317.8125 269.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 319.023438 271.753906 C 319.023438 271.636719 318.929688 271.542969 318.8125 271.542969 C 318.695312 271.542969 318.601562 271.636719 318.601562 271.753906 C 318.601562 271.871094 318.695312 271.964844 318.8125 271.964844 C 318.929688 271.964844 319.023438 271.871094 319.023438 271.753906 Z M 319.023438 271.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.8125 270.96875 C 316.8125 270.851562 316.71875 270.757812 316.601562 270.757812 C 316.484375 270.757812 316.390625 270.851562 316.390625 270.96875 C 316.390625 271.085938 316.484375 271.179688 316.601562 271.179688 C 316.71875 271.179688 316.8125 271.085938 316.8125 270.96875 Z M 316.8125 270.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.042969 269.875 C 315.042969 269.757812 314.949219 269.664062 314.832031 269.664062 C 314.714844 269.664062 314.621094 269.757812 314.621094 269.875 C 314.621094 269.992188 314.714844 270.085938 314.832031 270.085938 C 314.949219 270.085938 315.042969 269.992188 315.042969 269.875 Z M 315.042969 269.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 318.71875 271.179688 C 318.71875 271.0625 318.625 270.96875 318.507812 270.96875 C 318.390625 270.96875 318.296875 271.0625 318.296875 271.179688 C 318.296875 271.296875 318.390625 271.390625 318.507812 271.390625 C 318.625 271.390625 318.71875 271.296875 318.71875 271.179688 Z M 318.71875 271.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 319.914062 268.042969 C 319.914062 267.925781 319.820312 267.832031 319.703125 267.832031 C 319.585938 267.832031 319.492188 267.925781 319.492188 268.042969 C 319.492188 268.160156 319.585938 268.253906 319.703125 268.253906 C 319.820312 268.253906 319.914062 268.160156 319.914062 268.042969 Z M 319.914062 268.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.964844 267.699219 C 322.964844 267.582031 322.871094 267.488281 322.753906 267.488281 C 322.636719 267.488281 322.542969 267.582031 322.542969 267.699219 C 322.542969 267.816406 322.636719 267.910156 322.753906 267.910156 C 322.871094 267.910156 322.964844 267.816406 322.964844 267.699219 Z M 322.964844 267.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.859375 269.6875 C 317.859375 269.570312 317.765625 269.476562 317.648438 269.476562 C 317.53125 269.476562 317.4375 269.570312 317.4375 269.6875 C 317.4375 269.804688 317.53125 269.898438 317.648438 269.898438 C 317.765625 269.898438 317.859375 269.804688 317.859375 269.6875 Z M 317.859375 269.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 319 274.128906 C 319 274.011719 318.90625 273.917969 318.789062 273.917969 C 318.671875 273.917969 318.578125 274.011719 318.578125 274.128906 C 318.578125 274.246094 318.671875 274.339844 318.789062 274.339844 C 318.90625 274.339844 319 274.246094 319 274.128906 Z M 319 274.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.203125 279.183594 C 315.203125 279.066406 315.109375 278.972656 314.992188 278.972656 C 314.875 278.972656 314.78125 279.066406 314.78125 279.183594 C 314.78125 279.300781 314.875 279.394531 314.992188 279.394531 C 315.109375 279.394531 315.203125 279.300781 315.203125 279.183594 Z M 315.203125 279.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.742188 280.355469 C 314.742188 280.238281 314.648438 280.144531 314.53125 280.144531 C 314.414062 280.144531 314.320312 280.238281 314.320312 280.355469 C 314.320312 280.472656 314.414062 280.566406 314.53125 280.566406 C 314.648438 280.566406 314.742188 280.472656 314.742188 280.355469 Z M 314.742188 280.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.429688 282.230469 C 317.429688 282.113281 317.335938 282.019531 317.21875 282.019531 C 317.101562 282.019531 317.007812 282.113281 317.007812 282.230469 C 317.007812 282.347656 317.101562 282.441406 317.21875 282.441406 C 317.335938 282.441406 317.429688 282.347656 317.429688 282.230469 Z M 317.429688 282.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.425781 281.394531 C 314.425781 281.277344 314.332031 281.183594 314.214844 281.183594 C 314.097656 281.183594 314.003906 281.277344 314.003906 281.394531 C 314.003906 281.511719 314.097656 281.605469 314.214844 281.605469 C 314.332031 281.605469 314.425781 281.511719 314.425781 281.394531 Z M 314.425781 281.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.585938 280.429688 C 316.585938 280.3125 316.492188 280.21875 316.375 280.21875 C 316.257812 280.21875 316.164062 280.3125 316.164062 280.429688 C 316.164062 280.546875 316.257812 280.640625 316.375 280.640625 C 316.492188 280.640625 316.585938 280.546875 316.585938 280.429688 Z M 316.585938 280.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 318.828125 279.328125 C 318.828125 279.210938 318.734375 279.117188 318.617188 279.117188 C 318.5 279.117188 318.40625 279.210938 318.40625 279.328125 C 318.40625 279.445312 318.5 279.539062 318.617188 279.539062 C 318.734375 279.539062 318.828125 279.445312 318.828125 279.328125 Z M 318.828125 279.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.136719 278.222656 C 316.136719 278.105469 316.042969 278.011719 315.925781 278.011719 C 315.808594 278.011719 315.714844 278.105469 315.714844 278.222656 C 315.714844 278.339844 315.808594 278.433594 315.925781 278.433594 C 316.042969 278.433594 316.136719 278.339844 316.136719 278.222656 Z M 316.136719 278.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.46875 277.328125 C 316.46875 277.210938 316.375 277.117188 316.257812 277.117188 C 316.140625 277.117188 316.046875 277.210938 316.046875 277.328125 C 316.046875 277.445312 316.140625 277.539062 316.257812 277.539062 C 316.375 277.539062 316.46875 277.445312 316.46875 277.328125 Z M 316.46875 277.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.519531 274.078125 C 314.519531 273.960938 314.425781 273.867188 314.308594 273.867188 C 314.191406 273.867188 314.097656 273.960938 314.097656 274.078125 C 314.097656 274.195312 314.191406 274.289062 314.308594 274.289062 C 314.425781 274.289062 314.519531 274.195312 314.519531 274.078125 Z M 314.519531 274.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.605469 277.964844 C 310.605469 277.847656 310.511719 277.753906 310.394531 277.753906 C 310.277344 277.753906 310.183594 277.847656 310.183594 277.964844 C 310.183594 278.082031 310.277344 278.175781 310.394531 278.175781 C 310.511719 278.175781 310.605469 278.082031 310.605469 277.964844 Z M 310.605469 277.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.847656 278.753906 C 307.847656 278.636719 307.753906 278.542969 307.636719 278.542969 C 307.519531 278.542969 307.425781 278.636719 307.425781 278.753906 C 307.425781 278.871094 307.519531 278.964844 307.636719 278.964844 C 307.753906 278.964844 307.847656 278.871094 307.847656 278.753906 Z M 307.847656 278.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.84375 278.96875 C 307.84375 278.851562 307.75 278.757812 307.632812 278.757812 C 307.515625 278.757812 307.421875 278.851562 307.421875 278.96875 C 307.421875 279.085938 307.515625 279.179688 307.632812 279.179688 C 307.75 279.179688 307.84375 279.085938 307.84375 278.96875 Z M 307.84375 278.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.289062 277.28125 C 303.289062 277.164062 303.195312 277.070312 303.078125 277.070312 C 302.960938 277.070312 302.867188 277.164062 302.867188 277.28125 C 302.867188 277.398438 302.960938 277.492188 303.078125 277.492188 C 303.195312 277.492188 303.289062 277.398438 303.289062 277.28125 Z M 303.289062 277.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.867188 278.863281 C 302.867188 278.746094 302.773438 278.652344 302.65625 278.652344 C 302.539062 278.652344 302.445312 278.746094 302.445312 278.863281 C 302.445312 278.980469 302.539062 279.074219 302.65625 279.074219 C 302.773438 279.074219 302.867188 278.980469 302.867188 278.863281 Z M 302.867188 278.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.589844 278.886719 C 300.589844 278.769531 300.496094 278.675781 300.378906 278.675781 C 300.261719 278.675781 300.167969 278.769531 300.167969 278.886719 C 300.167969 279.003906 300.261719 279.097656 300.378906 279.097656 C 300.496094 279.097656 300.589844 279.003906 300.589844 278.886719 Z M 300.589844 278.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.9375 275.804688 C 298.9375 275.6875 298.84375 275.59375 298.726562 275.59375 C 298.609375 275.59375 298.515625 275.6875 298.515625 275.804688 C 298.515625 275.921875 298.609375 276.015625 298.726562 276.015625 C 298.84375 276.015625 298.9375 275.921875 298.9375 275.804688 Z M 298.9375 275.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.8125 277.871094 C 300.8125 277.753906 300.71875 277.660156 300.601562 277.660156 C 300.484375 277.660156 300.390625 277.753906 300.390625 277.871094 C 300.390625 277.988281 300.484375 278.082031 300.601562 278.082031 C 300.71875 278.082031 300.8125 277.988281 300.8125 277.871094 Z M 300.8125 277.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.742188 277.386719 C 301.742188 277.269531 301.648438 277.175781 301.53125 277.175781 C 301.414062 277.175781 301.320312 277.269531 301.320312 277.386719 C 301.320312 277.503906 301.414062 277.597656 301.53125 277.597656 C 301.648438 277.597656 301.742188 277.503906 301.742188 277.386719 Z M 301.742188 277.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.722656 278.898438 C 301.722656 278.78125 301.628906 278.6875 301.511719 278.6875 C 301.394531 278.6875 301.300781 278.78125 301.300781 278.898438 C 301.300781 279.015625 301.394531 279.109375 301.511719 279.109375 C 301.628906 279.109375 301.722656 279.015625 301.722656 278.898438 Z M 301.722656 278.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.796875 274.53125 C 302.796875 274.414062 302.703125 274.320312 302.585938 274.320312 C 302.46875 274.320312 302.375 274.414062 302.375 274.53125 C 302.375 274.648438 302.46875 274.742188 302.585938 274.742188 C 302.703125 274.742188 302.796875 274.648438 302.796875 274.53125 Z M 302.796875 274.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.152344 275.070312 C 302.152344 274.953125 302.058594 274.859375 301.941406 274.859375 C 301.824219 274.859375 301.730469 274.953125 301.730469 275.070312 C 301.730469 275.1875 301.824219 275.28125 301.941406 275.28125 C 302.058594 275.28125 302.152344 275.1875 302.152344 275.070312 Z M 302.152344 275.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.34375 276.546875 C 298.34375 276.429688 298.25 276.335938 298.132812 276.335938 C 298.015625 276.335938 297.921875 276.429688 297.921875 276.546875 C 297.921875 276.664062 298.015625 276.757812 298.132812 276.757812 C 298.25 276.757812 298.34375 276.664062 298.34375 276.546875 Z M 298.34375 276.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.734375 277.246094 C 296.734375 277.128906 296.640625 277.035156 296.523438 277.035156 C 296.40625 277.035156 296.3125 277.128906 296.3125 277.246094 C 296.3125 277.363281 296.40625 277.457031 296.523438 277.457031 C 296.640625 277.457031 296.734375 277.363281 296.734375 277.246094 Z M 296.734375 277.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.496094 280.628906 C 299.496094 280.511719 299.402344 280.417969 299.285156 280.417969 C 299.167969 280.417969 299.074219 280.511719 299.074219 280.628906 C 299.074219 280.746094 299.167969 280.839844 299.285156 280.839844 C 299.402344 280.839844 299.496094 280.746094 299.496094 280.628906 Z M 299.496094 280.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.277344 283.125 C 296.277344 283.007812 296.183594 282.914062 296.066406 282.914062 C 295.949219 282.914062 295.855469 283.007812 295.855469 283.125 C 295.855469 283.242188 295.949219 283.335938 296.066406 283.335938 C 296.183594 283.335938 296.277344 283.242188 296.277344 283.125 Z M 296.277344 283.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.664062 286.800781 C 296.664062 286.683594 296.570312 286.589844 296.453125 286.589844 C 296.335938 286.589844 296.242188 286.683594 296.242188 286.800781 C 296.242188 286.917969 296.335938 287.011719 296.453125 287.011719 C 296.570312 287.011719 296.664062 286.917969 296.664062 286.800781 Z M 296.664062 286.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.585938 286.285156 C 295.585938 286.167969 295.492188 286.074219 295.375 286.074219 C 295.257812 286.074219 295.164062 286.167969 295.164062 286.285156 C 295.164062 286.402344 295.257812 286.496094 295.375 286.496094 C 295.492188 286.496094 295.585938 286.402344 295.585938 286.285156 Z M 295.585938 286.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.4375 287.15625 C 293.4375 287.039062 293.34375 286.945312 293.226562 286.945312 C 293.109375 286.945312 293.015625 287.039062 293.015625 287.15625 C 293.015625 287.273438 293.109375 287.367188 293.226562 287.367188 C 293.34375 287.367188 293.4375 287.273438 293.4375 287.15625 Z M 293.4375 287.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.726562 287.480469 C 294.726562 287.363281 294.632812 287.269531 294.515625 287.269531 C 294.398438 287.269531 294.304688 287.363281 294.304688 287.480469 C 294.304688 287.597656 294.398438 287.691406 294.515625 287.691406 C 294.632812 287.691406 294.726562 287.597656 294.726562 287.480469 Z M 294.726562 287.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.355469 290.238281 C 294.355469 290.121094 294.261719 290.027344 294.144531 290.027344 C 294.027344 290.027344 293.933594 290.121094 293.933594 290.238281 C 293.933594 290.355469 294.027344 290.449219 294.144531 290.449219 C 294.261719 290.449219 294.355469 290.355469 294.355469 290.238281 Z M 294.355469 290.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.515625 289.652344 C 295.515625 289.535156 295.421875 289.441406 295.304688 289.441406 C 295.1875 289.441406 295.09375 289.535156 295.09375 289.652344 C 295.09375 289.769531 295.1875 289.863281 295.304688 289.863281 C 295.421875 289.863281 295.515625 289.769531 295.515625 289.652344 Z M 295.515625 289.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.386719 292.023438 C 296.386719 291.90625 296.292969 291.8125 296.175781 291.8125 C 296.058594 291.8125 295.964844 291.90625 295.964844 292.023438 C 295.964844 292.140625 296.058594 292.234375 296.175781 292.234375 C 296.292969 292.234375 296.386719 292.140625 296.386719 292.023438 Z M 296.386719 292.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.488281 291.121094 C 298.488281 291.003906 298.394531 290.910156 298.277344 290.910156 C 298.160156 290.910156 298.066406 291.003906 298.066406 291.121094 C 298.066406 291.238281 298.160156 291.332031 298.277344 291.332031 C 298.394531 291.332031 298.488281 291.238281 298.488281 291.121094 Z M 298.488281 291.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.066406 289.113281 C 302.066406 288.996094 301.972656 288.902344 301.855469 288.902344 C 301.738281 288.902344 301.644531 288.996094 301.644531 289.113281 C 301.644531 289.230469 301.738281 289.324219 301.855469 289.324219 C 301.972656 289.324219 302.066406 289.230469 302.066406 289.113281 Z M 302.066406 289.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.191406 293.453125 C 302.191406 293.335938 302.097656 293.242188 301.980469 293.242188 C 301.863281 293.242188 301.769531 293.335938 301.769531 293.453125 C 301.769531 293.570312 301.863281 293.664062 301.980469 293.664062 C 302.097656 293.664062 302.191406 293.570312 302.191406 293.453125 Z M 302.191406 293.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.683594 295.285156 C 297.683594 295.167969 297.589844 295.074219 297.472656 295.074219 C 297.355469 295.074219 297.261719 295.167969 297.261719 295.285156 C 297.261719 295.402344 297.355469 295.496094 297.472656 295.496094 C 297.589844 295.496094 297.683594 295.402344 297.683594 295.285156 Z M 297.683594 295.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.929688 294.769531 C 294.929688 294.652344 294.835938 294.558594 294.71875 294.558594 C 294.601562 294.558594 294.507812 294.652344 294.507812 294.769531 C 294.507812 294.886719 294.601562 294.980469 294.71875 294.980469 C 294.835938 294.980469 294.929688 294.886719 294.929688 294.769531 Z M 294.929688 294.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.289062 296.9375 C 294.289062 296.820312 294.195312 296.726562 294.078125 296.726562 C 293.960938 296.726562 293.867188 296.820312 293.867188 296.9375 C 293.867188 297.054688 293.960938 297.148438 294.078125 297.148438 C 294.195312 297.148438 294.289062 297.054688 294.289062 296.9375 Z M 294.289062 296.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.59375 298.277344 C 293.59375 298.160156 293.5 298.066406 293.382812 298.066406 C 293.265625 298.066406 293.171875 298.160156 293.171875 298.277344 C 293.171875 298.394531 293.265625 298.488281 293.382812 298.488281 C 293.5 298.488281 293.59375 298.394531 293.59375 298.277344 Z M 293.59375 298.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.195312 296.871094 C 294.195312 296.753906 294.101562 296.660156 293.984375 296.660156 C 293.867188 296.660156 293.773438 296.753906 293.773438 296.871094 C 293.773438 296.988281 293.867188 297.082031 293.984375 297.082031 C 294.101562 297.082031 294.195312 296.988281 294.195312 296.871094 Z M 294.195312 296.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.488281 299.585938 C 296.488281 299.46875 296.394531 299.375 296.277344 299.375 C 296.160156 299.375 296.066406 299.46875 296.066406 299.585938 C 296.066406 299.703125 296.160156 299.796875 296.277344 299.796875 C 296.394531 299.796875 296.488281 299.703125 296.488281 299.585938 Z M 296.488281 299.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.695312 299.902344 C 296.695312 299.785156 296.601562 299.691406 296.484375 299.691406 C 296.367188 299.691406 296.273438 299.785156 296.273438 299.902344 C 296.273438 300.019531 296.367188 300.113281 296.484375 300.113281 C 296.601562 300.113281 296.695312 300.019531 296.695312 299.902344 Z M 296.695312 299.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.019531 300.003906 C 295.019531 299.886719 294.925781 299.792969 294.808594 299.792969 C 294.691406 299.792969 294.597656 299.886719 294.597656 300.003906 C 294.597656 300.121094 294.691406 300.214844 294.808594 300.214844 C 294.925781 300.214844 295.019531 300.121094 295.019531 300.003906 Z M 295.019531 300.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.789062 300.296875 C 293.789062 300.179688 293.695312 300.085938 293.578125 300.085938 C 293.460938 300.085938 293.367188 300.179688 293.367188 300.296875 C 293.367188 300.414062 293.460938 300.507812 293.578125 300.507812 C 293.695312 300.507812 293.789062 300.414062 293.789062 300.296875 Z M 293.789062 300.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.457031 302.164062 C 293.457031 302.046875 293.363281 301.953125 293.246094 301.953125 C 293.128906 301.953125 293.035156 302.046875 293.035156 302.164062 C 293.035156 302.28125 293.128906 302.375 293.246094 302.375 C 293.363281 302.375 293.457031 302.28125 293.457031 302.164062 Z M 293.457031 302.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.214844 302.617188 C 296.214844 302.5 296.121094 302.40625 296.003906 302.40625 C 295.886719 302.40625 295.792969 302.5 295.792969 302.617188 C 295.792969 302.734375 295.886719 302.828125 296.003906 302.828125 C 296.121094 302.828125 296.214844 302.734375 296.214844 302.617188 Z M 296.214844 302.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.648438 303.792969 C 294.648438 303.675781 294.554688 303.582031 294.4375 303.582031 C 294.320312 303.582031 294.226562 303.675781 294.226562 303.792969 C 294.226562 303.910156 294.320312 304.003906 294.4375 304.003906 C 294.554688 304.003906 294.648438 303.910156 294.648438 303.792969 Z M 294.648438 303.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.15625 306.644531 C 293.15625 306.527344 293.0625 306.433594 292.945312 306.433594 C 292.828125 306.433594 292.734375 306.527344 292.734375 306.644531 C 292.734375 306.761719 292.828125 306.855469 292.945312 306.855469 C 293.0625 306.855469 293.15625 306.761719 293.15625 306.644531 Z M 293.15625 306.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.371094 306.773438 C 292.371094 306.65625 292.277344 306.5625 292.160156 306.5625 C 292.042969 306.5625 291.949219 306.65625 291.949219 306.773438 C 291.949219 306.890625 292.042969 306.984375 292.160156 306.984375 C 292.277344 306.984375 292.371094 306.890625 292.371094 306.773438 Z M 292.371094 306.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.617188 305.75 C 293.617188 305.632812 293.523438 305.539062 293.40625 305.539062 C 293.289062 305.539062 293.195312 305.632812 293.195312 305.75 C 293.195312 305.867188 293.289062 305.960938 293.40625 305.960938 C 293.523438 305.960938 293.617188 305.867188 293.617188 305.75 Z M 293.617188 305.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.636719 302.210938 C 294.636719 302.09375 294.542969 302 294.425781 302 C 294.308594 302 294.214844 302.09375 294.214844 302.210938 C 294.214844 302.328125 294.308594 302.421875 294.425781 302.421875 C 294.542969 302.421875 294.636719 302.328125 294.636719 302.210938 Z M 294.636719 302.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.792969 299.546875 C 290.792969 299.429688 290.699219 299.335938 290.582031 299.335938 C 290.464844 299.335938 290.371094 299.429688 290.371094 299.546875 C 290.371094 299.664062 290.464844 299.757812 290.582031 299.757812 C 290.699219 299.757812 290.792969 299.664062 290.792969 299.546875 Z M 290.792969 299.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.835938 302.898438 C 289.835938 302.78125 289.742188 302.6875 289.625 302.6875 C 289.507812 302.6875 289.414062 302.78125 289.414062 302.898438 C 289.414062 303.015625 289.507812 303.109375 289.625 303.109375 C 289.742188 303.109375 289.835938 303.015625 289.835938 302.898438 Z M 289.835938 302.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.339844 308.785156 C 288.339844 308.667969 288.246094 308.574219 288.128906 308.574219 C 288.011719 308.574219 287.917969 308.667969 287.917969 308.785156 C 287.917969 308.902344 288.011719 308.996094 288.128906 308.996094 C 288.246094 308.996094 288.339844 308.902344 288.339844 308.785156 Z M 288.339844 308.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.378906 307.566406 C 288.378906 307.449219 288.285156 307.355469 288.167969 307.355469 C 288.050781 307.355469 287.957031 307.449219 287.957031 307.566406 C 287.957031 307.683594 288.050781 307.777344 288.167969 307.777344 C 288.285156 307.777344 288.378906 307.683594 288.378906 307.566406 Z M 288.378906 307.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.136719 305.105469 C 289.136719 304.988281 289.042969 304.894531 288.925781 304.894531 C 288.808594 304.894531 288.714844 304.988281 288.714844 305.105469 C 288.714844 305.222656 288.808594 305.316406 288.925781 305.316406 C 289.042969 305.316406 289.136719 305.222656 289.136719 305.105469 Z M 289.136719 305.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.03125 306.527344 C 291.03125 306.410156 290.9375 306.316406 290.820312 306.316406 C 290.703125 306.316406 290.609375 306.410156 290.609375 306.527344 C 290.609375 306.644531 290.703125 306.738281 290.820312 306.738281 C 290.9375 306.738281 291.03125 306.644531 291.03125 306.527344 Z M 291.03125 306.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.328125 309.265625 C 287.328125 309.148438 287.234375 309.054688 287.117188 309.054688 C 287 309.054688 286.90625 309.148438 286.90625 309.265625 C 286.90625 309.382812 287 309.476562 287.117188 309.476562 C 287.234375 309.476562 287.328125 309.382812 287.328125 309.265625 Z M 287.328125 309.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.40625 311.136719 C 288.40625 311.019531 288.3125 310.925781 288.195312 310.925781 C 288.078125 310.925781 287.984375 311.019531 287.984375 311.136719 C 287.984375 311.253906 288.078125 311.347656 288.195312 311.347656 C 288.3125 311.347656 288.40625 311.253906 288.40625 311.136719 Z M 288.40625 311.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.570312 313.332031 C 287.570312 313.214844 287.476562 313.121094 287.359375 313.121094 C 287.242188 313.121094 287.148438 313.214844 287.148438 313.332031 C 287.148438 313.449219 287.242188 313.542969 287.359375 313.542969 C 287.476562 313.542969 287.570312 313.449219 287.570312 313.332031 Z M 287.570312 313.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.8125 312.816406 C 288.8125 312.699219 288.71875 312.605469 288.601562 312.605469 C 288.484375 312.605469 288.390625 312.699219 288.390625 312.816406 C 288.390625 312.933594 288.484375 313.027344 288.601562 313.027344 C 288.71875 313.027344 288.8125 312.933594 288.8125 312.816406 Z M 288.8125 312.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.320312 310.210938 C 289.320312 310.09375 289.226562 310 289.109375 310 C 288.992188 310 288.898438 310.09375 288.898438 310.210938 C 288.898438 310.328125 288.992188 310.421875 289.109375 310.421875 C 289.226562 310.421875 289.320312 310.328125 289.320312 310.210938 Z M 289.320312 310.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.535156 314.949219 C 290.535156 314.832031 290.441406 314.738281 290.324219 314.738281 C 290.207031 314.738281 290.113281 314.832031 290.113281 314.949219 C 290.113281 315.066406 290.207031 315.160156 290.324219 315.160156 C 290.441406 315.160156 290.535156 315.066406 290.535156 314.949219 Z M 290.535156 314.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.667969 313.359375 C 292.667969 313.242188 292.574219 313.148438 292.457031 313.148438 C 292.339844 313.148438 292.246094 313.242188 292.246094 313.359375 C 292.246094 313.476562 292.339844 313.570312 292.457031 313.570312 C 292.574219 313.570312 292.667969 313.476562 292.667969 313.359375 Z M 292.667969 313.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.652344 315.660156 C 290.652344 315.542969 290.558594 315.449219 290.441406 315.449219 C 290.324219 315.449219 290.230469 315.542969 290.230469 315.660156 C 290.230469 315.777344 290.324219 315.871094 290.441406 315.871094 C 290.558594 315.871094 290.652344 315.777344 290.652344 315.660156 Z M 290.652344 315.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.34375 317.011719 C 288.34375 316.894531 288.25 316.800781 288.132812 316.800781 C 288.015625 316.800781 287.921875 316.894531 287.921875 317.011719 C 287.921875 317.128906 288.015625 317.222656 288.132812 317.222656 C 288.25 317.222656 288.34375 317.128906 288.34375 317.011719 Z M 288.34375 317.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.988281 319.753906 C 289.988281 319.636719 289.894531 319.542969 289.777344 319.542969 C 289.660156 319.542969 289.566406 319.636719 289.566406 319.753906 C 289.566406 319.871094 289.660156 319.964844 289.777344 319.964844 C 289.894531 319.964844 289.988281 319.871094 289.988281 319.753906 Z M 289.988281 319.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.390625 319.261719 C 291.390625 319.144531 291.296875 319.050781 291.179688 319.050781 C 291.0625 319.050781 290.96875 319.144531 290.96875 319.261719 C 290.96875 319.378906 291.0625 319.472656 291.179688 319.472656 C 291.296875 319.472656 291.390625 319.378906 291.390625 319.261719 Z M 291.390625 319.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.996094 321.210938 C 292.996094 321.09375 292.902344 321 292.785156 321 C 292.667969 321 292.574219 321.09375 292.574219 321.210938 C 292.574219 321.328125 292.667969 321.421875 292.785156 321.421875 C 292.902344 321.421875 292.996094 321.328125 292.996094 321.210938 Z M 292.996094 321.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.605469 319.519531 C 292.605469 319.402344 292.511719 319.308594 292.394531 319.308594 C 292.277344 319.308594 292.183594 319.402344 292.183594 319.519531 C 292.183594 319.636719 292.277344 319.730469 292.394531 319.730469 C 292.511719 319.730469 292.605469 319.636719 292.605469 319.519531 Z M 292.605469 319.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.039062 316.625 C 292.039062 316.507812 291.945312 316.414062 291.828125 316.414062 C 291.710938 316.414062 291.617188 316.507812 291.617188 316.625 C 291.617188 316.742188 291.710938 316.835938 291.828125 316.835938 C 291.945312 316.835938 292.039062 316.742188 292.039062 316.625 Z M 292.039062 316.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.132812 310.777344 C 292.132812 310.660156 292.039062 310.566406 291.921875 310.566406 C 291.804688 310.566406 291.710938 310.660156 291.710938 310.777344 C 291.710938 310.894531 291.804688 310.988281 291.921875 310.988281 C 292.039062 310.988281 292.132812 310.894531 292.132812 310.777344 Z M 292.132812 310.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.792969 312.042969 C 287.792969 311.925781 287.699219 311.832031 287.582031 311.832031 C 287.464844 311.832031 287.371094 311.925781 287.371094 312.042969 C 287.371094 312.160156 287.464844 312.253906 287.582031 312.253906 C 287.699219 312.253906 287.792969 312.160156 287.792969 312.042969 Z M 287.792969 312.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.59375 315.183594 C 290.59375 315.066406 290.5 314.972656 290.382812 314.972656 C 290.265625 314.972656 290.171875 315.066406 290.171875 315.183594 C 290.171875 315.300781 290.265625 315.394531 290.382812 315.394531 C 290.5 315.394531 290.59375 315.300781 290.59375 315.183594 Z M 290.59375 315.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.167969 316.757812 C 289.167969 316.640625 289.074219 316.546875 288.957031 316.546875 C 288.839844 316.546875 288.746094 316.640625 288.746094 316.757812 C 288.746094 316.875 288.839844 316.96875 288.957031 316.96875 C 289.074219 316.96875 289.167969 316.875 289.167969 316.757812 Z M 289.167969 316.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.148438 316.382812 C 287.148438 316.265625 287.054688 316.171875 286.9375 316.171875 C 286.820312 316.171875 286.726562 316.265625 286.726562 316.382812 C 286.726562 316.5 286.820312 316.59375 286.9375 316.59375 C 287.054688 316.59375 287.148438 316.5 287.148438 316.382812 Z M 287.148438 316.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.132812 315.332031 C 288.132812 315.214844 288.039062 315.121094 287.921875 315.121094 C 287.804688 315.121094 287.710938 315.214844 287.710938 315.332031 C 287.710938 315.449219 287.804688 315.542969 287.921875 315.542969 C 288.039062 315.542969 288.132812 315.449219 288.132812 315.332031 Z M 288.132812 315.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.746094 314.40625 C 288.746094 314.289062 288.652344 314.195312 288.535156 314.195312 C 288.417969 314.195312 288.324219 314.289062 288.324219 314.40625 C 288.324219 314.523438 288.417969 314.617188 288.535156 314.617188 C 288.652344 314.617188 288.746094 314.523438 288.746094 314.40625 Z M 288.746094 314.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.476562 312.578125 C 289.476562 312.460938 289.382812 312.367188 289.265625 312.367188 C 289.148438 312.367188 289.054688 312.460938 289.054688 312.578125 C 289.054688 312.695312 289.148438 312.789062 289.265625 312.789062 C 289.382812 312.789062 289.476562 312.695312 289.476562 312.578125 Z M 289.476562 312.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.542969 314.664062 C 287.542969 314.546875 287.449219 314.453125 287.332031 314.453125 C 287.214844 314.453125 287.121094 314.546875 287.121094 314.664062 C 287.121094 314.78125 287.214844 314.875 287.332031 314.875 C 287.449219 314.875 287.542969 314.78125 287.542969 314.664062 Z M 287.542969 314.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.199219 312.40625 C 284.199219 312.289062 284.105469 312.195312 283.988281 312.195312 C 283.871094 312.195312 283.777344 312.289062 283.777344 312.40625 C 283.777344 312.523438 283.871094 312.617188 283.988281 312.617188 C 284.105469 312.617188 284.199219 312.523438 284.199219 312.40625 Z M 284.199219 312.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.542969 314.613281 C 285.542969 314.496094 285.449219 314.402344 285.332031 314.402344 C 285.214844 314.402344 285.121094 314.496094 285.121094 314.613281 C 285.121094 314.730469 285.214844 314.824219 285.332031 314.824219 C 285.449219 314.824219 285.542969 314.730469 285.542969 314.613281 Z M 285.542969 314.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.601562 310.867188 C 288.601562 310.75 288.507812 310.65625 288.390625 310.65625 C 288.273438 310.65625 288.179688 310.75 288.179688 310.867188 C 288.179688 310.984375 288.273438 311.078125 288.390625 311.078125 C 288.507812 311.078125 288.601562 310.984375 288.601562 310.867188 Z M 288.601562 310.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.039062 313.070312 C 286.039062 312.953125 285.945312 312.859375 285.828125 312.859375 C 285.710938 312.859375 285.617188 312.953125 285.617188 313.070312 C 285.617188 313.1875 285.710938 313.28125 285.828125 313.28125 C 285.945312 313.28125 286.039062 313.1875 286.039062 313.070312 Z M 286.039062 313.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.324219 313.230469 C 284.324219 313.113281 284.230469 313.019531 284.113281 313.019531 C 283.996094 313.019531 283.902344 313.113281 283.902344 313.230469 C 283.902344 313.347656 283.996094 313.441406 284.113281 313.441406 C 284.230469 313.441406 284.324219 313.347656 284.324219 313.230469 Z M 284.324219 313.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.539062 311.539062 C 284.539062 311.421875 284.445312 311.328125 284.328125 311.328125 C 284.210938 311.328125 284.117188 311.421875 284.117188 311.539062 C 284.117188 311.65625 284.210938 311.75 284.328125 311.75 C 284.445312 311.75 284.539062 311.65625 284.539062 311.539062 Z M 284.539062 311.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.753906 308.246094 C 281.753906 308.128906 281.660156 308.035156 281.542969 308.035156 C 281.425781 308.035156 281.332031 308.128906 281.332031 308.246094 C 281.332031 308.363281 281.425781 308.457031 281.542969 308.457031 C 281.660156 308.457031 281.753906 308.363281 281.753906 308.246094 Z M 281.753906 308.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.730469 309.871094 C 282.730469 309.753906 282.636719 309.660156 282.519531 309.660156 C 282.402344 309.660156 282.308594 309.753906 282.308594 309.871094 C 282.308594 309.988281 282.402344 310.082031 282.519531 310.082031 C 282.636719 310.082031 282.730469 309.988281 282.730469 309.871094 Z M 282.730469 309.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.210938 309.121094 C 282.210938 309.003906 282.117188 308.910156 282 308.910156 C 281.882812 308.910156 281.789062 309.003906 281.789062 309.121094 C 281.789062 309.238281 281.882812 309.332031 282 309.332031 C 282.117188 309.332031 282.210938 309.238281 282.210938 309.121094 Z M 282.210938 309.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.703125 306.5625 C 285.703125 306.445312 285.609375 306.351562 285.492188 306.351562 C 285.375 306.351562 285.28125 306.445312 285.28125 306.5625 C 285.28125 306.679688 285.375 306.773438 285.492188 306.773438 C 285.609375 306.773438 285.703125 306.679688 285.703125 306.5625 Z M 285.703125 306.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.332031 308.441406 C 284.332031 308.324219 284.238281 308.230469 284.121094 308.230469 C 284.003906 308.230469 283.910156 308.324219 283.910156 308.441406 C 283.910156 308.558594 284.003906 308.652344 284.121094 308.652344 C 284.238281 308.652344 284.332031 308.558594 284.332031 308.441406 Z M 284.332031 308.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.308594 307.960938 C 287.308594 307.84375 287.214844 307.75 287.097656 307.75 C 286.980469 307.75 286.886719 307.84375 286.886719 307.960938 C 286.886719 308.078125 286.980469 308.171875 287.097656 308.171875 C 287.214844 308.171875 287.308594 308.078125 287.308594 307.960938 Z M 287.308594 307.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.765625 305.53125 C 286.765625 305.414062 286.671875 305.320312 286.554688 305.320312 C 286.4375 305.320312 286.34375 305.414062 286.34375 305.53125 C 286.34375 305.648438 286.4375 305.742188 286.554688 305.742188 C 286.671875 305.742188 286.765625 305.648438 286.765625 305.53125 Z M 286.765625 305.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.574219 308.730469 C 286.574219 308.613281 286.480469 308.519531 286.363281 308.519531 C 286.246094 308.519531 286.152344 308.613281 286.152344 308.730469 C 286.152344 308.847656 286.246094 308.941406 286.363281 308.941406 C 286.480469 308.941406 286.574219 308.847656 286.574219 308.730469 Z M 286.574219 308.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.730469 308.742188 C 286.730469 308.625 286.636719 308.53125 286.519531 308.53125 C 286.402344 308.53125 286.308594 308.625 286.308594 308.742188 C 286.308594 308.859375 286.402344 308.953125 286.519531 308.953125 C 286.636719 308.953125 286.730469 308.859375 286.730469 308.742188 Z M 286.730469 308.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.039062 307.882812 C 289.039062 307.765625 288.945312 307.671875 288.828125 307.671875 C 288.710938 307.671875 288.617188 307.765625 288.617188 307.882812 C 288.617188 308 288.710938 308.09375 288.828125 308.09375 C 288.945312 308.09375 289.039062 308 289.039062 307.882812 Z M 289.039062 307.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.28125 308.371094 C 291.28125 308.253906 291.1875 308.160156 291.070312 308.160156 C 290.953125 308.160156 290.859375 308.253906 290.859375 308.371094 C 290.859375 308.488281 290.953125 308.582031 291.070312 308.582031 C 291.1875 308.582031 291.28125 308.488281 291.28125 308.371094 Z M 291.28125 308.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.023438 310.359375 C 290.023438 310.242188 289.929688 310.148438 289.8125 310.148438 C 289.695312 310.148438 289.601562 310.242188 289.601562 310.359375 C 289.601562 310.476562 289.695312 310.570312 289.8125 310.570312 C 289.929688 310.570312 290.023438 310.476562 290.023438 310.359375 Z M 290.023438 310.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.890625 311.109375 C 291.890625 310.992188 291.796875 310.898438 291.679688 310.898438 C 291.5625 310.898438 291.46875 310.992188 291.46875 311.109375 C 291.46875 311.226562 291.5625 311.320312 291.679688 311.320312 C 291.796875 311.320312 291.890625 311.226562 291.890625 311.109375 Z M 291.890625 311.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.839844 310.914062 C 291.839844 310.796875 291.746094 310.703125 291.628906 310.703125 C 291.511719 310.703125 291.417969 310.796875 291.417969 310.914062 C 291.417969 311.03125 291.511719 311.125 291.628906 311.125 C 291.746094 311.125 291.839844 311.03125 291.839844 310.914062 Z M 291.839844 310.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.707031 312.351562 C 292.707031 312.234375 292.613281 312.140625 292.496094 312.140625 C 292.378906 312.140625 292.285156 312.234375 292.285156 312.351562 C 292.285156 312.46875 292.378906 312.5625 292.496094 312.5625 C 292.613281 312.5625 292.707031 312.46875 292.707031 312.351562 Z M 292.707031 312.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.582031 314.328125 C 295.582031 314.210938 295.488281 314.117188 295.371094 314.117188 C 295.253906 314.117188 295.160156 314.210938 295.160156 314.328125 C 295.160156 314.445312 295.253906 314.539062 295.371094 314.539062 C 295.488281 314.539062 295.582031 314.445312 295.582031 314.328125 Z M 295.582031 314.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.15625 313.496094 C 294.15625 313.378906 294.0625 313.285156 293.945312 313.285156 C 293.828125 313.285156 293.734375 313.378906 293.734375 313.496094 C 293.734375 313.613281 293.828125 313.707031 293.945312 313.707031 C 294.0625 313.707031 294.15625 313.613281 294.15625 313.496094 Z M 294.15625 313.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.003906 311.957031 C 295.003906 311.839844 294.910156 311.746094 294.792969 311.746094 C 294.675781 311.746094 294.582031 311.839844 294.582031 311.957031 C 294.582031 312.074219 294.675781 312.167969 294.792969 312.167969 C 294.910156 312.167969 295.003906 312.074219 295.003906 311.957031 Z M 295.003906 311.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.347656 311.609375 C 291.347656 311.492188 291.253906 311.398438 291.136719 311.398438 C 291.019531 311.398438 290.925781 311.492188 290.925781 311.609375 C 290.925781 311.726562 291.019531 311.820312 291.136719 311.820312 C 291.253906 311.820312 291.347656 311.726562 291.347656 311.609375 Z M 291.347656 311.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.503906 311.789062 C 291.503906 311.671875 291.410156 311.578125 291.292969 311.578125 C 291.175781 311.578125 291.082031 311.671875 291.082031 311.789062 C 291.082031 311.90625 291.175781 312 291.292969 312 C 291.410156 312 291.503906 311.90625 291.503906 311.789062 Z M 291.503906 311.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.703125 314.597656 C 293.703125 314.480469 293.609375 314.386719 293.492188 314.386719 C 293.375 314.386719 293.28125 314.480469 293.28125 314.597656 C 293.28125 314.714844 293.375 314.808594 293.492188 314.808594 C 293.609375 314.808594 293.703125 314.714844 293.703125 314.597656 Z M 293.703125 314.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.21875 312.738281 C 292.21875 312.621094 292.125 312.527344 292.007812 312.527344 C 291.890625 312.527344 291.796875 312.621094 291.796875 312.738281 C 291.796875 312.855469 291.890625 312.949219 292.007812 312.949219 C 292.125 312.949219 292.21875 312.855469 292.21875 312.738281 Z M 292.21875 312.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.804688 312.574219 C 295.804688 312.457031 295.710938 312.363281 295.59375 312.363281 C 295.476562 312.363281 295.382812 312.457031 295.382812 312.574219 C 295.382812 312.691406 295.476562 312.785156 295.59375 312.785156 C 295.710938 312.785156 295.804688 312.691406 295.804688 312.574219 Z M 295.804688 312.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.292969 310.324219 C 297.292969 310.207031 297.199219 310.113281 297.082031 310.113281 C 296.964844 310.113281 296.871094 310.207031 296.871094 310.324219 C 296.871094 310.441406 296.964844 310.535156 297.082031 310.535156 C 297.199219 310.535156 297.292969 310.441406 297.292969 310.324219 Z M 297.292969 310.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.023438 310.042969 C 296.023438 309.925781 295.929688 309.832031 295.8125 309.832031 C 295.695312 309.832031 295.601562 309.925781 295.601562 310.042969 C 295.601562 310.160156 295.695312 310.253906 295.8125 310.253906 C 295.929688 310.253906 296.023438 310.160156 296.023438 310.042969 Z M 296.023438 310.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.546875 308.457031 C 294.546875 308.339844 294.453125 308.246094 294.335938 308.246094 C 294.21875 308.246094 294.125 308.339844 294.125 308.457031 C 294.125 308.574219 294.21875 308.667969 294.335938 308.667969 C 294.453125 308.667969 294.546875 308.574219 294.546875 308.457031 Z M 294.546875 308.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.621094 310.925781 C 296.621094 310.808594 296.527344 310.714844 296.410156 310.714844 C 296.292969 310.714844 296.199219 310.808594 296.199219 310.925781 C 296.199219 311.042969 296.292969 311.136719 296.410156 311.136719 C 296.527344 311.136719 296.621094 311.042969 296.621094 310.925781 Z M 296.621094 310.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.96875 310.78125 C 294.96875 310.664062 294.875 310.570312 294.757812 310.570312 C 294.640625 310.570312 294.546875 310.664062 294.546875 310.78125 C 294.546875 310.898438 294.640625 310.992188 294.757812 310.992188 C 294.875 310.992188 294.96875 310.898438 294.96875 310.78125 Z M 294.96875 310.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.484375 316.417969 C 295.484375 316.300781 295.390625 316.207031 295.273438 316.207031 C 295.15625 316.207031 295.0625 316.300781 295.0625 316.417969 C 295.0625 316.535156 295.15625 316.628906 295.273438 316.628906 C 295.390625 316.628906 295.484375 316.535156 295.484375 316.417969 Z M 295.484375 316.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.644531 313.800781 C 294.644531 313.683594 294.550781 313.589844 294.433594 313.589844 C 294.316406 313.589844 294.222656 313.683594 294.222656 313.800781 C 294.222656 313.917969 294.316406 314.011719 294.433594 314.011719 C 294.550781 314.011719 294.644531 313.917969 294.644531 313.800781 Z M 294.644531 313.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.363281 316.03125 C 293.363281 315.914062 293.269531 315.820312 293.152344 315.820312 C 293.035156 315.820312 292.941406 315.914062 292.941406 316.03125 C 292.941406 316.148438 293.035156 316.242188 293.152344 316.242188 C 293.269531 316.242188 293.363281 316.148438 293.363281 316.03125 Z M 293.363281 316.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.941406 313.320312 C 294.941406 313.203125 294.847656 313.109375 294.730469 313.109375 C 294.613281 313.109375 294.519531 313.203125 294.519531 313.320312 C 294.519531 313.4375 294.613281 313.53125 294.730469 313.53125 C 294.847656 313.53125 294.941406 313.4375 294.941406 313.320312 Z M 294.941406 313.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.835938 313.207031 C 295.835938 313.089844 295.742188 312.996094 295.625 312.996094 C 295.507812 312.996094 295.414062 313.089844 295.414062 313.207031 C 295.414062 313.324219 295.507812 313.417969 295.625 313.417969 C 295.742188 313.417969 295.835938 313.324219 295.835938 313.207031 Z M 295.835938 313.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.59375 310.367188 C 297.59375 310.25 297.5 310.15625 297.382812 310.15625 C 297.265625 310.15625 297.171875 310.25 297.171875 310.367188 C 297.171875 310.484375 297.265625 310.578125 297.382812 310.578125 C 297.5 310.578125 297.59375 310.484375 297.59375 310.367188 Z M 297.59375 310.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.09375 311.496094 C 297.09375 311.378906 297 311.285156 296.882812 311.285156 C 296.765625 311.285156 296.671875 311.378906 296.671875 311.496094 C 296.671875 311.613281 296.765625 311.707031 296.882812 311.707031 C 297 311.707031 297.09375 311.613281 297.09375 311.496094 Z M 297.09375 311.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.496094 309.183594 C 299.496094 309.066406 299.402344 308.972656 299.285156 308.972656 C 299.167969 308.972656 299.074219 309.066406 299.074219 309.183594 C 299.074219 309.300781 299.167969 309.394531 299.285156 309.394531 C 299.402344 309.394531 299.496094 309.300781 299.496094 309.183594 Z M 299.496094 309.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.710938 308.464844 C 300.710938 308.347656 300.617188 308.253906 300.5 308.253906 C 300.382812 308.253906 300.289062 308.347656 300.289062 308.464844 C 300.289062 308.582031 300.382812 308.675781 300.5 308.675781 C 300.617188 308.675781 300.710938 308.582031 300.710938 308.464844 Z M 300.710938 308.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.800781 305.433594 C 301.800781 305.316406 301.707031 305.222656 301.589844 305.222656 C 301.472656 305.222656 301.378906 305.316406 301.378906 305.433594 C 301.378906 305.550781 301.472656 305.644531 301.589844 305.644531 C 301.707031 305.644531 301.800781 305.550781 301.800781 305.433594 Z M 301.800781 305.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.613281 305.476562 C 302.613281 305.359375 302.519531 305.265625 302.402344 305.265625 C 302.285156 305.265625 302.191406 305.359375 302.191406 305.476562 C 302.191406 305.59375 302.285156 305.6875 302.402344 305.6875 C 302.519531 305.6875 302.613281 305.59375 302.613281 305.476562 Z M 302.613281 305.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.558594 303.046875 C 304.558594 302.929688 304.464844 302.835938 304.347656 302.835938 C 304.230469 302.835938 304.136719 302.929688 304.136719 303.046875 C 304.136719 303.164062 304.230469 303.257812 304.347656 303.257812 C 304.464844 303.257812 304.558594 303.164062 304.558594 303.046875 Z M 304.558594 303.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.402344 304.730469 C 303.402344 304.613281 303.308594 304.519531 303.191406 304.519531 C 303.074219 304.519531 302.980469 304.613281 302.980469 304.730469 C 302.980469 304.847656 303.074219 304.941406 303.191406 304.941406 C 303.308594 304.941406 303.402344 304.847656 303.402344 304.730469 Z M 303.402344 304.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.527344 306.652344 C 301.527344 306.535156 301.433594 306.441406 301.316406 306.441406 C 301.199219 306.441406 301.105469 306.535156 301.105469 306.652344 C 301.105469 306.769531 301.199219 306.863281 301.316406 306.863281 C 301.433594 306.863281 301.527344 306.769531 301.527344 306.652344 Z M 301.527344 306.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.9375 307.132812 C 299.9375 307.015625 299.84375 306.921875 299.726562 306.921875 C 299.609375 306.921875 299.515625 307.015625 299.515625 307.132812 C 299.515625 307.25 299.609375 307.34375 299.726562 307.34375 C 299.84375 307.34375 299.9375 307.25 299.9375 307.132812 Z M 299.9375 307.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.039062 309.4375 C 300.039062 309.320312 299.945312 309.226562 299.828125 309.226562 C 299.710938 309.226562 299.617188 309.320312 299.617188 309.4375 C 299.617188 309.554688 299.710938 309.648438 299.828125 309.648438 C 299.945312 309.648438 300.039062 309.554688 300.039062 309.4375 Z M 300.039062 309.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.097656 310.539062 C 302.097656 310.421875 302.003906 310.328125 301.886719 310.328125 C 301.769531 310.328125 301.675781 310.421875 301.675781 310.539062 C 301.675781 310.65625 301.769531 310.75 301.886719 310.75 C 302.003906 310.75 302.097656 310.65625 302.097656 310.539062 Z M 302.097656 310.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.53125 307.398438 C 299.53125 307.28125 299.4375 307.1875 299.320312 307.1875 C 299.203125 307.1875 299.109375 307.28125 299.109375 307.398438 C 299.109375 307.515625 299.203125 307.609375 299.320312 307.609375 C 299.4375 307.609375 299.53125 307.515625 299.53125 307.398438 Z M 299.53125 307.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.101562 303.519531 C 303.101562 303.402344 303.007812 303.308594 302.890625 303.308594 C 302.773438 303.308594 302.679688 303.402344 302.679688 303.519531 C 302.679688 303.636719 302.773438 303.730469 302.890625 303.730469 C 303.007812 303.730469 303.101562 303.636719 303.101562 303.519531 Z M 303.101562 303.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.316406 300.273438 C 302.316406 300.15625 302.222656 300.0625 302.105469 300.0625 C 301.988281 300.0625 301.894531 300.15625 301.894531 300.273438 C 301.894531 300.390625 301.988281 300.484375 302.105469 300.484375 C 302.222656 300.484375 302.316406 300.390625 302.316406 300.273438 Z M 302.316406 300.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.457031 296.484375 C 301.457031 296.367188 301.363281 296.273438 301.246094 296.273438 C 301.128906 296.273438 301.035156 296.367188 301.035156 296.484375 C 301.035156 296.601562 301.128906 296.695312 301.246094 296.695312 C 301.363281 296.695312 301.457031 296.601562 301.457031 296.484375 Z M 301.457031 296.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.714844 296.855469 C 303.714844 296.738281 303.621094 296.644531 303.503906 296.644531 C 303.386719 296.644531 303.292969 296.738281 303.292969 296.855469 C 303.292969 296.972656 303.386719 297.066406 303.503906 297.066406 C 303.621094 297.066406 303.714844 296.972656 303.714844 296.855469 Z M 303.714844 296.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.117188 296.382812 C 300.117188 296.265625 300.023438 296.171875 299.90625 296.171875 C 299.789062 296.171875 299.695312 296.265625 299.695312 296.382812 C 299.695312 296.5 299.789062 296.59375 299.90625 296.59375 C 300.023438 296.59375 300.117188 296.5 300.117188 296.382812 Z M 300.117188 296.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.007812 294.191406 C 301.007812 294.074219 300.914062 293.980469 300.796875 293.980469 C 300.679688 293.980469 300.585938 294.074219 300.585938 294.191406 C 300.585938 294.308594 300.679688 294.402344 300.796875 294.402344 C 300.914062 294.402344 301.007812 294.308594 301.007812 294.191406 Z M 301.007812 294.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.4375 296.238281 C 302.4375 296.121094 302.34375 296.027344 302.226562 296.027344 C 302.109375 296.027344 302.015625 296.121094 302.015625 296.238281 C 302.015625 296.355469 302.109375 296.449219 302.226562 296.449219 C 302.34375 296.449219 302.4375 296.355469 302.4375 296.238281 Z M 302.4375 296.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.339844 294.890625 C 300.339844 294.773438 300.246094 294.679688 300.128906 294.679688 C 300.011719 294.679688 299.917969 294.773438 299.917969 294.890625 C 299.917969 295.007812 300.011719 295.101562 300.128906 295.101562 C 300.246094 295.101562 300.339844 295.007812 300.339844 294.890625 Z M 300.339844 294.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.867188 298.253906 C 299.867188 298.136719 299.773438 298.042969 299.65625 298.042969 C 299.539062 298.042969 299.445312 298.136719 299.445312 298.253906 C 299.445312 298.371094 299.539062 298.464844 299.65625 298.464844 C 299.773438 298.464844 299.867188 298.371094 299.867188 298.253906 Z M 299.867188 298.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.285156 297.28125 C 303.285156 297.164062 303.191406 297.070312 303.074219 297.070312 C 302.957031 297.070312 302.863281 297.164062 302.863281 297.28125 C 302.863281 297.398438 302.957031 297.492188 303.074219 297.492188 C 303.191406 297.492188 303.285156 297.398438 303.285156 297.28125 Z M 303.285156 297.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.261719 296.996094 C 303.261719 296.878906 303.167969 296.785156 303.050781 296.785156 C 302.933594 296.785156 302.839844 296.878906 302.839844 296.996094 C 302.839844 297.113281 302.933594 297.207031 303.050781 297.207031 C 303.167969 297.207031 303.261719 297.113281 303.261719 296.996094 Z M 303.261719 296.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.558594 296.386719 C 305.558594 296.269531 305.464844 296.175781 305.347656 296.175781 C 305.230469 296.175781 305.136719 296.269531 305.136719 296.386719 C 305.136719 296.503906 305.230469 296.597656 305.347656 296.597656 C 305.464844 296.597656 305.558594 296.503906 305.558594 296.386719 Z M 305.558594 296.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.011719 298.332031 C 307.011719 298.214844 306.917969 298.121094 306.800781 298.121094 C 306.683594 298.121094 306.589844 298.214844 306.589844 298.332031 C 306.589844 298.449219 306.683594 298.542969 306.800781 298.542969 C 306.917969 298.542969 307.011719 298.449219 307.011719 298.332031 Z M 307.011719 298.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.410156 297.675781 C 308.410156 297.558594 308.316406 297.464844 308.199219 297.464844 C 308.082031 297.464844 307.988281 297.558594 307.988281 297.675781 C 307.988281 297.792969 308.082031 297.886719 308.199219 297.886719 C 308.316406 297.886719 308.410156 297.792969 308.410156 297.675781 Z M 308.410156 297.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.855469 297.148438 C 307.855469 297.03125 307.761719 296.9375 307.644531 296.9375 C 307.527344 296.9375 307.433594 297.03125 307.433594 297.148438 C 307.433594 297.265625 307.527344 297.359375 307.644531 297.359375 C 307.761719 297.359375 307.855469 297.265625 307.855469 297.148438 Z M 307.855469 297.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.519531 295.917969 C 307.519531 295.800781 307.425781 295.707031 307.308594 295.707031 C 307.191406 295.707031 307.097656 295.800781 307.097656 295.917969 C 307.097656 296.035156 307.191406 296.128906 307.308594 296.128906 C 307.425781 296.128906 307.519531 296.035156 307.519531 295.917969 Z M 307.519531 295.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.789062 296.261719 C 307.789062 296.144531 307.695312 296.050781 307.578125 296.050781 C 307.460938 296.050781 307.367188 296.144531 307.367188 296.261719 C 307.367188 296.378906 307.460938 296.472656 307.578125 296.472656 C 307.695312 296.472656 307.789062 296.378906 307.789062 296.261719 Z M 307.789062 296.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.476562 295.855469 C 306.476562 295.738281 306.382812 295.644531 306.265625 295.644531 C 306.148438 295.644531 306.054688 295.738281 306.054688 295.855469 C 306.054688 295.972656 306.148438 296.066406 306.265625 296.066406 C 306.382812 296.066406 306.476562 295.972656 306.476562 295.855469 Z M 306.476562 295.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.207031 296.070312 C 307.207031 295.953125 307.113281 295.859375 306.996094 295.859375 C 306.878906 295.859375 306.785156 295.953125 306.785156 296.070312 C 306.785156 296.1875 306.878906 296.28125 306.996094 296.28125 C 307.113281 296.28125 307.207031 296.1875 307.207031 296.070312 Z M 307.207031 296.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.460938 293.21875 C 308.460938 293.101562 308.367188 293.007812 308.25 293.007812 C 308.132812 293.007812 308.039062 293.101562 308.039062 293.21875 C 308.039062 293.335938 308.132812 293.429688 308.25 293.429688 C 308.367188 293.429688 308.460938 293.335938 308.460938 293.21875 Z M 308.460938 293.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.074219 293.074219 C 307.074219 292.957031 306.980469 292.863281 306.863281 292.863281 C 306.746094 292.863281 306.652344 292.957031 306.652344 293.074219 C 306.652344 293.191406 306.746094 293.285156 306.863281 293.285156 C 306.980469 293.285156 307.074219 293.191406 307.074219 293.074219 Z M 307.074219 293.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.914062 292.148438 C 306.914062 292.03125 306.820312 291.9375 306.703125 291.9375 C 306.585938 291.9375 306.492188 292.03125 306.492188 292.148438 C 306.492188 292.265625 306.585938 292.359375 306.703125 292.359375 C 306.820312 292.359375 306.914062 292.265625 306.914062 292.148438 Z M 306.914062 292.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.464844 296.03125 C 304.464844 295.914062 304.371094 295.820312 304.253906 295.820312 C 304.136719 295.820312 304.042969 295.914062 304.042969 296.03125 C 304.042969 296.148438 304.136719 296.242188 304.253906 296.242188 C 304.371094 296.242188 304.464844 296.148438 304.464844 296.03125 Z M 304.464844 296.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.082031 295.066406 C 304.082031 294.949219 303.988281 294.855469 303.871094 294.855469 C 303.753906 294.855469 303.660156 294.949219 303.660156 295.066406 C 303.660156 295.183594 303.753906 295.277344 303.871094 295.277344 C 303.988281 295.277344 304.082031 295.183594 304.082031 295.066406 Z M 304.082031 295.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.90625 294.066406 C 303.90625 293.949219 303.8125 293.855469 303.695312 293.855469 C 303.578125 293.855469 303.484375 293.949219 303.484375 294.066406 C 303.484375 294.183594 303.578125 294.277344 303.695312 294.277344 C 303.8125 294.277344 303.90625 294.183594 303.90625 294.066406 Z M 303.90625 294.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.878906 292.398438 C 306.878906 292.28125 306.785156 292.1875 306.667969 292.1875 C 306.550781 292.1875 306.457031 292.28125 306.457031 292.398438 C 306.457031 292.515625 306.550781 292.609375 306.667969 292.609375 C 306.785156 292.609375 306.878906 292.515625 306.878906 292.398438 Z M 306.878906 292.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.179688 290.734375 C 309.179688 290.617188 309.085938 290.523438 308.96875 290.523438 C 308.851562 290.523438 308.757812 290.617188 308.757812 290.734375 C 308.757812 290.851562 308.851562 290.945312 308.96875 290.945312 C 309.085938 290.945312 309.179688 290.851562 309.179688 290.734375 Z M 309.179688 290.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.367188 291.429688 C 310.367188 291.3125 310.273438 291.21875 310.15625 291.21875 C 310.039062 291.21875 309.945312 291.3125 309.945312 291.429688 C 309.945312 291.546875 310.039062 291.640625 310.15625 291.640625 C 310.273438 291.640625 310.367188 291.546875 310.367188 291.429688 Z M 310.367188 291.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.894531 291.21875 C 308.894531 291.101562 308.800781 291.007812 308.683594 291.007812 C 308.566406 291.007812 308.472656 291.101562 308.472656 291.21875 C 308.472656 291.335938 308.566406 291.429688 308.683594 291.429688 C 308.800781 291.429688 308.894531 291.335938 308.894531 291.21875 Z M 308.894531 291.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.4375 293.636719 C 309.4375 293.519531 309.34375 293.425781 309.226562 293.425781 C 309.109375 293.425781 309.015625 293.519531 309.015625 293.636719 C 309.015625 293.753906 309.109375 293.847656 309.226562 293.847656 C 309.34375 293.847656 309.4375 293.753906 309.4375 293.636719 Z M 309.4375 293.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.957031 294.726562 C 307.957031 294.609375 307.863281 294.515625 307.746094 294.515625 C 307.628906 294.515625 307.535156 294.609375 307.535156 294.726562 C 307.535156 294.84375 307.628906 294.9375 307.746094 294.9375 C 307.863281 294.9375 307.957031 294.84375 307.957031 294.726562 Z M 307.957031 294.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.03125 294.464844 C 310.03125 294.347656 309.9375 294.253906 309.820312 294.253906 C 309.703125 294.253906 309.609375 294.347656 309.609375 294.464844 C 309.609375 294.582031 309.703125 294.675781 309.820312 294.675781 C 309.9375 294.675781 310.03125 294.582031 310.03125 294.464844 Z M 310.03125 294.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.417969 296.515625 C 310.417969 296.398438 310.324219 296.304688 310.207031 296.304688 C 310.089844 296.304688 309.996094 296.398438 309.996094 296.515625 C 309.996094 296.632812 310.089844 296.726562 310.207031 296.726562 C 310.324219 296.726562 310.417969 296.632812 310.417969 296.515625 Z M 310.417969 296.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.988281 298.316406 C 308.988281 298.199219 308.894531 298.105469 308.777344 298.105469 C 308.660156 298.105469 308.566406 298.199219 308.566406 298.316406 C 308.566406 298.433594 308.660156 298.527344 308.777344 298.527344 C 308.894531 298.527344 308.988281 298.433594 308.988281 298.316406 Z M 308.988281 298.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.03125 297.265625 C 308.03125 297.148438 307.9375 297.054688 307.820312 297.054688 C 307.703125 297.054688 307.609375 297.148438 307.609375 297.265625 C 307.609375 297.382812 307.703125 297.476562 307.820312 297.476562 C 307.9375 297.476562 308.03125 297.382812 308.03125 297.265625 Z M 308.03125 297.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.921875 295.703125 C 307.921875 295.585938 307.828125 295.492188 307.710938 295.492188 C 307.59375 295.492188 307.5 295.585938 307.5 295.703125 C 307.5 295.820312 307.59375 295.914062 307.710938 295.914062 C 307.828125 295.914062 307.921875 295.820312 307.921875 295.703125 Z M 307.921875 295.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.023438 296.003906 C 307.023438 295.886719 306.929688 295.792969 306.8125 295.792969 C 306.695312 295.792969 306.601562 295.886719 306.601562 296.003906 C 306.601562 296.121094 306.695312 296.214844 306.8125 296.214844 C 306.929688 296.214844 307.023438 296.121094 307.023438 296.003906 Z M 307.023438 296.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.730469 296.847656 C 309.730469 296.730469 309.636719 296.636719 309.519531 296.636719 C 309.402344 296.636719 309.308594 296.730469 309.308594 296.847656 C 309.308594 296.964844 309.402344 297.058594 309.519531 297.058594 C 309.636719 297.058594 309.730469 296.964844 309.730469 296.847656 Z M 309.730469 296.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.699219 292.554688 C 307.699219 292.4375 307.605469 292.34375 307.488281 292.34375 C 307.371094 292.34375 307.277344 292.4375 307.277344 292.554688 C 307.277344 292.671875 307.371094 292.765625 307.488281 292.765625 C 307.605469 292.765625 307.699219 292.671875 307.699219 292.554688 Z M 307.699219 292.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.441406 292.574219 C 307.441406 292.457031 307.347656 292.363281 307.230469 292.363281 C 307.113281 292.363281 307.019531 292.457031 307.019531 292.574219 C 307.019531 292.691406 307.113281 292.785156 307.230469 292.785156 C 307.347656 292.785156 307.441406 292.691406 307.441406 292.574219 Z M 307.441406 292.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.621094 294.113281 C 307.621094 293.996094 307.527344 293.902344 307.410156 293.902344 C 307.292969 293.902344 307.199219 293.996094 307.199219 294.113281 C 307.199219 294.230469 307.292969 294.324219 307.410156 294.324219 C 307.527344 294.324219 307.621094 294.230469 307.621094 294.113281 Z M 307.621094 294.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.996094 296.007812 C 310.996094 295.890625 310.902344 295.796875 310.785156 295.796875 C 310.667969 295.796875 310.574219 295.890625 310.574219 296.007812 C 310.574219 296.125 310.667969 296.21875 310.785156 296.21875 C 310.902344 296.21875 310.996094 296.125 310.996094 296.007812 Z M 310.996094 296.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.605469 295.46875 C 309.605469 295.351562 309.511719 295.257812 309.394531 295.257812 C 309.277344 295.257812 309.183594 295.351562 309.183594 295.46875 C 309.183594 295.585938 309.277344 295.679688 309.394531 295.679688 C 309.511719 295.679688 309.605469 295.585938 309.605469 295.46875 Z M 309.605469 295.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.527344 293.808594 C 309.527344 293.691406 309.433594 293.597656 309.316406 293.597656 C 309.199219 293.597656 309.105469 293.691406 309.105469 293.808594 C 309.105469 293.925781 309.199219 294.019531 309.316406 294.019531 C 309.433594 294.019531 309.527344 293.925781 309.527344 293.808594 Z M 309.527344 293.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.492188 291.722656 C 310.492188 291.605469 310.398438 291.511719 310.28125 291.511719 C 310.164062 291.511719 310.070312 291.605469 310.070312 291.722656 C 310.070312 291.839844 310.164062 291.933594 310.28125 291.933594 C 310.398438 291.933594 310.492188 291.839844 310.492188 291.722656 Z M 310.492188 291.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.972656 294.171875 C 310.972656 294.054688 310.878906 293.960938 310.761719 293.960938 C 310.644531 293.960938 310.550781 294.054688 310.550781 294.171875 C 310.550781 294.289062 310.644531 294.382812 310.761719 294.382812 C 310.878906 294.382812 310.972656 294.289062 310.972656 294.171875 Z M 310.972656 294.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.796875 292.523438 C 311.796875 292.40625 311.703125 292.3125 311.585938 292.3125 C 311.46875 292.3125 311.375 292.40625 311.375 292.523438 C 311.375 292.640625 311.46875 292.734375 311.585938 292.734375 C 311.703125 292.734375 311.796875 292.640625 311.796875 292.523438 Z M 311.796875 292.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.535156 291.382812 C 311.535156 291.265625 311.441406 291.171875 311.324219 291.171875 C 311.207031 291.171875 311.113281 291.265625 311.113281 291.382812 C 311.113281 291.5 311.207031 291.59375 311.324219 291.59375 C 311.441406 291.59375 311.535156 291.5 311.535156 291.382812 Z M 311.535156 291.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.976562 292.585938 C 309.976562 292.46875 309.882812 292.375 309.765625 292.375 C 309.648438 292.375 309.554688 292.46875 309.554688 292.585938 C 309.554688 292.703125 309.648438 292.796875 309.765625 292.796875 C 309.882812 292.796875 309.976562 292.703125 309.976562 292.585938 Z M 309.976562 292.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.554688 292.589844 C 308.554688 292.472656 308.460938 292.378906 308.34375 292.378906 C 308.226562 292.378906 308.132812 292.472656 308.132812 292.589844 C 308.132812 292.707031 308.226562 292.800781 308.34375 292.800781 C 308.460938 292.800781 308.554688 292.707031 308.554688 292.589844 Z M 308.554688 292.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.9375 291.734375 C 310.9375 291.617188 310.84375 291.523438 310.726562 291.523438 C 310.609375 291.523438 310.515625 291.617188 310.515625 291.734375 C 310.515625 291.851562 310.609375 291.945312 310.726562 291.945312 C 310.84375 291.945312 310.9375 291.851562 310.9375 291.734375 Z M 310.9375 291.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.945312 290.652344 C 312.945312 290.535156 312.851562 290.441406 312.734375 290.441406 C 312.617188 290.441406 312.523438 290.535156 312.523438 290.652344 C 312.523438 290.769531 312.617188 290.863281 312.734375 290.863281 C 312.851562 290.863281 312.945312 290.769531 312.945312 290.652344 Z M 312.945312 290.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.90625 292.320312 C 311.90625 292.203125 311.8125 292.109375 311.695312 292.109375 C 311.578125 292.109375 311.484375 292.203125 311.484375 292.320312 C 311.484375 292.4375 311.578125 292.53125 311.695312 292.53125 C 311.8125 292.53125 311.90625 292.4375 311.90625 292.320312 Z M 311.90625 292.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.980469 289.046875 C 309.980469 288.929688 309.886719 288.835938 309.769531 288.835938 C 309.652344 288.835938 309.558594 288.929688 309.558594 289.046875 C 309.558594 289.164062 309.652344 289.257812 309.769531 289.257812 C 309.886719 289.257812 309.980469 289.164062 309.980469 289.046875 Z M 309.980469 289.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.800781 287.285156 C 306.800781 287.167969 306.707031 287.074219 306.589844 287.074219 C 306.472656 287.074219 306.378906 287.167969 306.378906 287.285156 C 306.378906 287.402344 306.472656 287.496094 306.589844 287.496094 C 306.707031 287.496094 306.800781 287.402344 306.800781 287.285156 Z M 306.800781 287.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.050781 282.914062 C 308.050781 282.796875 307.957031 282.703125 307.839844 282.703125 C 307.722656 282.703125 307.628906 282.796875 307.628906 282.914062 C 307.628906 283.03125 307.722656 283.125 307.839844 283.125 C 307.957031 283.125 308.050781 283.03125 308.050781 282.914062 Z M 308.050781 282.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.566406 281.574219 C 308.566406 281.457031 308.472656 281.363281 308.355469 281.363281 C 308.238281 281.363281 308.144531 281.457031 308.144531 281.574219 C 308.144531 281.691406 308.238281 281.785156 308.355469 281.785156 C 308.472656 281.785156 308.566406 281.691406 308.566406 281.574219 Z M 308.566406 281.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.222656 282.25 C 308.222656 282.132812 308.128906 282.039062 308.011719 282.039062 C 307.894531 282.039062 307.800781 282.132812 307.800781 282.25 C 307.800781 282.367188 307.894531 282.460938 308.011719 282.460938 C 308.128906 282.460938 308.222656 282.367188 308.222656 282.25 Z M 308.222656 282.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.652344 284.503906 C 307.652344 284.386719 307.558594 284.292969 307.441406 284.292969 C 307.324219 284.292969 307.230469 284.386719 307.230469 284.503906 C 307.230469 284.621094 307.324219 284.714844 307.441406 284.714844 C 307.558594 284.714844 307.652344 284.621094 307.652344 284.503906 Z M 307.652344 284.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.691406 284.851562 C 309.691406 284.734375 309.597656 284.640625 309.480469 284.640625 C 309.363281 284.640625 309.269531 284.734375 309.269531 284.851562 C 309.269531 284.96875 309.363281 285.0625 309.480469 285.0625 C 309.597656 285.0625 309.691406 284.96875 309.691406 284.851562 Z M 309.691406 284.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.375 284.773438 C 308.375 284.65625 308.28125 284.5625 308.164062 284.5625 C 308.046875 284.5625 307.953125 284.65625 307.953125 284.773438 C 307.953125 284.890625 308.046875 284.984375 308.164062 284.984375 C 308.28125 284.984375 308.375 284.890625 308.375 284.773438 Z M 308.375 284.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.484375 289.3125 C 305.484375 289.195312 305.390625 289.101562 305.273438 289.101562 C 305.15625 289.101562 305.0625 289.195312 305.0625 289.3125 C 305.0625 289.429688 305.15625 289.523438 305.273438 289.523438 C 305.390625 289.523438 305.484375 289.429688 305.484375 289.3125 Z M 305.484375 289.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.265625 292.570312 C 306.265625 292.453125 306.171875 292.359375 306.054688 292.359375 C 305.9375 292.359375 305.84375 292.453125 305.84375 292.570312 C 305.84375 292.6875 305.9375 292.78125 306.054688 292.78125 C 306.171875 292.78125 306.265625 292.6875 306.265625 292.570312 Z M 306.265625 292.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.789062 290.585938 C 307.789062 290.46875 307.695312 290.375 307.578125 290.375 C 307.460938 290.375 307.367188 290.46875 307.367188 290.585938 C 307.367188 290.703125 307.460938 290.796875 307.578125 290.796875 C 307.695312 290.796875 307.789062 290.703125 307.789062 290.585938 Z M 307.789062 290.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.132812 286.722656 C 306.132812 286.605469 306.039062 286.511719 305.921875 286.511719 C 305.804688 286.511719 305.710938 286.605469 305.710938 286.722656 C 305.710938 286.839844 305.804688 286.933594 305.921875 286.933594 C 306.039062 286.933594 306.132812 286.839844 306.132812 286.722656 Z M 306.132812 286.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.65625 285.792969 C 303.65625 285.675781 303.5625 285.582031 303.445312 285.582031 C 303.328125 285.582031 303.234375 285.675781 303.234375 285.792969 C 303.234375 285.910156 303.328125 286.003906 303.445312 286.003906 C 303.5625 286.003906 303.65625 285.910156 303.65625 285.792969 Z M 303.65625 285.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.945312 288.066406 C 302.945312 287.949219 302.851562 287.855469 302.734375 287.855469 C 302.617188 287.855469 302.523438 287.949219 302.523438 288.066406 C 302.523438 288.183594 302.617188 288.277344 302.734375 288.277344 C 302.851562 288.277344 302.945312 288.183594 302.945312 288.066406 Z M 302.945312 288.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.667969 287.65625 C 305.667969 287.539062 305.574219 287.445312 305.457031 287.445312 C 305.339844 287.445312 305.246094 287.539062 305.246094 287.65625 C 305.246094 287.773438 305.339844 287.867188 305.457031 287.867188 C 305.574219 287.867188 305.667969 287.773438 305.667969 287.65625 Z M 305.667969 287.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.25 285.773438 C 309.25 285.65625 309.15625 285.5625 309.039062 285.5625 C 308.921875 285.5625 308.828125 285.65625 308.828125 285.773438 C 308.828125 285.890625 308.921875 285.984375 309.039062 285.984375 C 309.15625 285.984375 309.25 285.890625 309.25 285.773438 Z M 309.25 285.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.226562 284.082031 C 308.226562 283.964844 308.132812 283.871094 308.015625 283.871094 C 307.898438 283.871094 307.804688 283.964844 307.804688 284.082031 C 307.804688 284.199219 307.898438 284.292969 308.015625 284.292969 C 308.132812 284.292969 308.226562 284.199219 308.226562 284.082031 Z M 308.226562 284.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.542969 286.429688 C 310.542969 286.3125 310.449219 286.21875 310.332031 286.21875 C 310.214844 286.21875 310.121094 286.3125 310.121094 286.429688 C 310.121094 286.546875 310.214844 286.640625 310.332031 286.640625 C 310.449219 286.640625 310.542969 286.546875 310.542969 286.429688 Z M 310.542969 286.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.609375 288.003906 C 308.609375 287.886719 308.515625 287.792969 308.398438 287.792969 C 308.28125 287.792969 308.1875 287.886719 308.1875 288.003906 C 308.1875 288.121094 308.28125 288.214844 308.398438 288.214844 C 308.515625 288.214844 308.609375 288.121094 308.609375 288.003906 Z M 308.609375 288.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.535156 286.851562 C 308.535156 286.734375 308.441406 286.640625 308.324219 286.640625 C 308.207031 286.640625 308.113281 286.734375 308.113281 286.851562 C 308.113281 286.96875 308.207031 287.0625 308.324219 287.0625 C 308.441406 287.0625 308.535156 286.96875 308.535156 286.851562 Z M 308.535156 286.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.78125 287.542969 C 306.78125 287.425781 306.6875 287.332031 306.570312 287.332031 C 306.453125 287.332031 306.359375 287.425781 306.359375 287.542969 C 306.359375 287.660156 306.453125 287.753906 306.570312 287.753906 C 306.6875 287.753906 306.78125 287.660156 306.78125 287.542969 Z M 306.78125 287.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.609375 289.652344 C 306.609375 289.535156 306.515625 289.441406 306.398438 289.441406 C 306.28125 289.441406 306.1875 289.535156 306.1875 289.652344 C 306.1875 289.769531 306.28125 289.863281 306.398438 289.863281 C 306.515625 289.863281 306.609375 289.769531 306.609375 289.652344 Z M 306.609375 289.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.390625 290.808594 C 304.390625 290.691406 304.296875 290.597656 304.179688 290.597656 C 304.0625 290.597656 303.96875 290.691406 303.96875 290.808594 C 303.96875 290.925781 304.0625 291.019531 304.179688 291.019531 C 304.296875 291.019531 304.390625 290.925781 304.390625 290.808594 Z M 304.390625 290.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.5 294.105469 C 310.5 293.988281 310.40625 293.894531 310.289062 293.894531 C 310.171875 293.894531 310.078125 293.988281 310.078125 294.105469 C 310.078125 294.222656 310.171875 294.316406 310.289062 294.316406 C 310.40625 294.316406 310.5 294.222656 310.5 294.105469 Z M 310.5 294.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.898438 292.539062 C 311.898438 292.421875 311.804688 292.328125 311.6875 292.328125 C 311.570312 292.328125 311.476562 292.421875 311.476562 292.539062 C 311.476562 292.65625 311.570312 292.75 311.6875 292.75 C 311.804688 292.75 311.898438 292.65625 311.898438 292.539062 Z M 311.898438 292.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.871094 297.671875 C 310.871094 297.554688 310.777344 297.460938 310.660156 297.460938 C 310.542969 297.460938 310.449219 297.554688 310.449219 297.671875 C 310.449219 297.789062 310.542969 297.882812 310.660156 297.882812 C 310.777344 297.882812 310.871094 297.789062 310.871094 297.671875 Z M 310.871094 297.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.574219 300.425781 C 313.574219 300.308594 313.480469 300.214844 313.363281 300.214844 C 313.246094 300.214844 313.152344 300.308594 313.152344 300.425781 C 313.152344 300.542969 313.246094 300.636719 313.363281 300.636719 C 313.480469 300.636719 313.574219 300.542969 313.574219 300.425781 Z M 313.574219 300.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.1875 299.804688 C 314.1875 299.6875 314.09375 299.59375 313.976562 299.59375 C 313.859375 299.59375 313.765625 299.6875 313.765625 299.804688 C 313.765625 299.921875 313.859375 300.015625 313.976562 300.015625 C 314.09375 300.015625 314.1875 299.921875 314.1875 299.804688 Z M 314.1875 299.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.042969 297.921875 C 317.042969 297.804688 316.949219 297.710938 316.832031 297.710938 C 316.714844 297.710938 316.621094 297.804688 316.621094 297.921875 C 316.621094 298.039062 316.714844 298.132812 316.832031 298.132812 C 316.949219 298.132812 317.042969 298.039062 317.042969 297.921875 Z M 317.042969 297.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.800781 300.613281 C 315.800781 300.496094 315.707031 300.402344 315.589844 300.402344 C 315.472656 300.402344 315.378906 300.496094 315.378906 300.613281 C 315.378906 300.730469 315.472656 300.824219 315.589844 300.824219 C 315.707031 300.824219 315.800781 300.730469 315.800781 300.613281 Z M 315.800781 300.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.851562 303.3125 C 314.851562 303.195312 314.757812 303.101562 314.640625 303.101562 C 314.523438 303.101562 314.429688 303.195312 314.429688 303.3125 C 314.429688 303.429688 314.523438 303.523438 314.640625 303.523438 C 314.757812 303.523438 314.851562 303.429688 314.851562 303.3125 Z M 314.851562 303.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.722656 302.40625 C 315.722656 302.289062 315.628906 302.195312 315.511719 302.195312 C 315.394531 302.195312 315.300781 302.289062 315.300781 302.40625 C 315.300781 302.523438 315.394531 302.617188 315.511719 302.617188 C 315.628906 302.617188 315.722656 302.523438 315.722656 302.40625 Z M 315.722656 302.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.085938 301.582031 C 315.085938 301.464844 314.992188 301.371094 314.875 301.371094 C 314.757812 301.371094 314.664062 301.464844 314.664062 301.582031 C 314.664062 301.699219 314.757812 301.792969 314.875 301.792969 C 314.992188 301.792969 315.085938 301.699219 315.085938 301.582031 Z M 315.085938 301.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317 300.113281 C 317 299.996094 316.90625 299.902344 316.789062 299.902344 C 316.671875 299.902344 316.578125 299.996094 316.578125 300.113281 C 316.578125 300.230469 316.671875 300.324219 316.789062 300.324219 C 316.90625 300.324219 317 300.230469 317 300.113281 Z M 317 300.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.816406 301.261719 C 313.816406 301.144531 313.722656 301.050781 313.605469 301.050781 C 313.488281 301.050781 313.394531 301.144531 313.394531 301.261719 C 313.394531 301.378906 313.488281 301.472656 313.605469 301.472656 C 313.722656 301.472656 313.816406 301.378906 313.816406 301.261719 Z M 313.816406 301.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.410156 301.929688 C 313.410156 301.8125 313.316406 301.71875 313.199219 301.71875 C 313.082031 301.71875 312.988281 301.8125 312.988281 301.929688 C 312.988281 302.046875 313.082031 302.140625 313.199219 302.140625 C 313.316406 302.140625 313.410156 302.046875 313.410156 301.929688 Z M 313.410156 301.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.316406 303.171875 C 311.316406 303.054688 311.222656 302.960938 311.105469 302.960938 C 310.988281 302.960938 310.894531 303.054688 310.894531 303.171875 C 310.894531 303.289062 310.988281 303.382812 311.105469 303.382812 C 311.222656 303.382812 311.316406 303.289062 311.316406 303.171875 Z M 311.316406 303.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.261719 305.359375 C 315.261719 305.242188 315.167969 305.148438 315.050781 305.148438 C 314.933594 305.148438 314.839844 305.242188 314.839844 305.359375 C 314.839844 305.476562 314.933594 305.570312 315.050781 305.570312 C 315.167969 305.570312 315.261719 305.476562 315.261719 305.359375 Z M 315.261719 305.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.71875 301.441406 C 313.71875 301.324219 313.625 301.230469 313.507812 301.230469 C 313.390625 301.230469 313.296875 301.324219 313.296875 301.441406 C 313.296875 301.558594 313.390625 301.652344 313.507812 301.652344 C 313.625 301.652344 313.71875 301.558594 313.71875 301.441406 Z M 313.71875 301.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.566406 301.421875 C 314.566406 301.304688 314.472656 301.210938 314.355469 301.210938 C 314.238281 301.210938 314.144531 301.304688 314.144531 301.421875 C 314.144531 301.539062 314.238281 301.632812 314.355469 301.632812 C 314.472656 301.632812 314.566406 301.539062 314.566406 301.421875 Z M 314.566406 301.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.660156 298.203125 C 313.660156 298.085938 313.566406 297.992188 313.449219 297.992188 C 313.332031 297.992188 313.238281 298.085938 313.238281 298.203125 C 313.238281 298.320312 313.332031 298.414062 313.449219 298.414062 C 313.566406 298.414062 313.660156 298.320312 313.660156 298.203125 Z M 313.660156 298.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.140625 298.761719 C 314.140625 298.644531 314.046875 298.550781 313.929688 298.550781 C 313.8125 298.550781 313.71875 298.644531 313.71875 298.761719 C 313.71875 298.878906 313.8125 298.972656 313.929688 298.972656 C 314.046875 298.972656 314.140625 298.878906 314.140625 298.761719 Z M 314.140625 298.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.539062 303.460938 C 315.539062 303.34375 315.445312 303.25 315.328125 303.25 C 315.210938 303.25 315.117188 303.34375 315.117188 303.460938 C 315.117188 303.578125 315.210938 303.671875 315.328125 303.671875 C 315.445312 303.671875 315.539062 303.578125 315.539062 303.460938 Z M 315.539062 303.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.746094 301.402344 C 313.746094 301.285156 313.652344 301.191406 313.535156 301.191406 C 313.417969 301.191406 313.324219 301.285156 313.324219 301.402344 C 313.324219 301.519531 313.417969 301.613281 313.535156 301.613281 C 313.652344 301.613281 313.746094 301.519531 313.746094 301.402344 Z M 313.746094 301.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.71875 302.925781 C 313.71875 302.808594 313.625 302.714844 313.507812 302.714844 C 313.390625 302.714844 313.296875 302.808594 313.296875 302.925781 C 313.296875 303.042969 313.390625 303.136719 313.507812 303.136719 C 313.625 303.136719 313.71875 303.042969 313.71875 302.925781 Z M 313.71875 302.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.199219 301.582031 C 313.199219 301.464844 313.105469 301.371094 312.988281 301.371094 C 312.871094 301.371094 312.777344 301.464844 312.777344 301.582031 C 312.777344 301.699219 312.871094 301.792969 312.988281 301.792969 C 313.105469 301.792969 313.199219 301.699219 313.199219 301.582031 Z M 313.199219 301.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.476562 300.644531 C 315.476562 300.527344 315.382812 300.433594 315.265625 300.433594 C 315.148438 300.433594 315.054688 300.527344 315.054688 300.644531 C 315.054688 300.761719 315.148438 300.855469 315.265625 300.855469 C 315.382812 300.855469 315.476562 300.761719 315.476562 300.644531 Z M 315.476562 300.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.820312 304.507812 C 316.820312 304.390625 316.726562 304.296875 316.609375 304.296875 C 316.492188 304.296875 316.398438 304.390625 316.398438 304.507812 C 316.398438 304.625 316.492188 304.71875 316.609375 304.71875 C 316.726562 304.71875 316.820312 304.625 316.820312 304.507812 Z M 316.820312 304.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.09375 303.8125 C 315.09375 303.695312 315 303.601562 314.882812 303.601562 C 314.765625 303.601562 314.671875 303.695312 314.671875 303.8125 C 314.671875 303.929688 314.765625 304.023438 314.882812 304.023438 C 315 304.023438 315.09375 303.929688 315.09375 303.8125 Z M 315.09375 303.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.664062 304.785156 C 314.664062 304.667969 314.570312 304.574219 314.453125 304.574219 C 314.335938 304.574219 314.242188 304.667969 314.242188 304.785156 C 314.242188 304.902344 314.335938 304.996094 314.453125 304.996094 C 314.570312 304.996094 314.664062 304.902344 314.664062 304.785156 Z M 314.664062 304.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.957031 304.210938 C 316.957031 304.09375 316.863281 304 316.746094 304 C 316.628906 304 316.535156 304.09375 316.535156 304.210938 C 316.535156 304.328125 316.628906 304.421875 316.746094 304.421875 C 316.863281 304.421875 316.957031 304.328125 316.957031 304.210938 Z M 316.957031 304.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.394531 303.441406 C 316.394531 303.324219 316.300781 303.230469 316.183594 303.230469 C 316.066406 303.230469 315.972656 303.324219 315.972656 303.441406 C 315.972656 303.558594 316.066406 303.652344 316.183594 303.652344 C 316.300781 303.652344 316.394531 303.558594 316.394531 303.441406 Z M 316.394531 303.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.683594 304.875 C 316.683594 304.757812 316.589844 304.664062 316.472656 304.664062 C 316.355469 304.664062 316.261719 304.757812 316.261719 304.875 C 316.261719 304.992188 316.355469 305.085938 316.472656 305.085938 C 316.589844 305.085938 316.683594 304.992188 316.683594 304.875 Z M 316.683594 304.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.035156 303.46875 C 315.035156 303.351562 314.941406 303.257812 314.824219 303.257812 C 314.707031 303.257812 314.613281 303.351562 314.613281 303.46875 C 314.613281 303.585938 314.707031 303.679688 314.824219 303.679688 C 314.941406 303.679688 315.035156 303.585938 315.035156 303.46875 Z M 315.035156 303.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.960938 302.640625 C 315.960938 302.523438 315.867188 302.429688 315.75 302.429688 C 315.632812 302.429688 315.539062 302.523438 315.539062 302.640625 C 315.539062 302.757812 315.632812 302.851562 315.75 302.851562 C 315.867188 302.851562 315.960938 302.757812 315.960938 302.640625 Z M 315.960938 302.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.9375 303.144531 C 313.9375 303.027344 313.84375 302.933594 313.726562 302.933594 C 313.609375 302.933594 313.515625 303.027344 313.515625 303.144531 C 313.515625 303.261719 313.609375 303.355469 313.726562 303.355469 C 313.84375 303.355469 313.9375 303.261719 313.9375 303.144531 Z M 313.9375 303.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.691406 303.296875 C 312.691406 303.179688 312.597656 303.085938 312.480469 303.085938 C 312.363281 303.085938 312.269531 303.179688 312.269531 303.296875 C 312.269531 303.414062 312.363281 303.507812 312.480469 303.507812 C 312.597656 303.507812 312.691406 303.414062 312.691406 303.296875 Z M 312.691406 303.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.253906 305.902344 C 316.253906 305.785156 316.160156 305.691406 316.042969 305.691406 C 315.925781 305.691406 315.832031 305.785156 315.832031 305.902344 C 315.832031 306.019531 315.925781 306.113281 316.042969 306.113281 C 316.160156 306.113281 316.253906 306.019531 316.253906 305.902344 Z M 316.253906 305.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.75 307.28125 C 316.75 307.164062 316.65625 307.070312 316.539062 307.070312 C 316.421875 307.070312 316.328125 307.164062 316.328125 307.28125 C 316.328125 307.398438 316.421875 307.492188 316.539062 307.492188 C 316.65625 307.492188 316.75 307.398438 316.75 307.28125 Z M 316.75 307.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.015625 309.007812 C 315.015625 308.890625 314.921875 308.796875 314.804688 308.796875 C 314.6875 308.796875 314.59375 308.890625 314.59375 309.007812 C 314.59375 309.125 314.6875 309.21875 314.804688 309.21875 C 314.921875 309.21875 315.015625 309.125 315.015625 309.007812 Z M 315.015625 309.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.855469 308.730469 C 315.855469 308.613281 315.761719 308.519531 315.644531 308.519531 C 315.527344 308.519531 315.433594 308.613281 315.433594 308.730469 C 315.433594 308.847656 315.527344 308.941406 315.644531 308.941406 C 315.761719 308.941406 315.855469 308.847656 315.855469 308.730469 Z M 315.855469 308.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.652344 309.492188 C 317.652344 309.375 317.558594 309.28125 317.441406 309.28125 C 317.324219 309.28125 317.230469 309.375 317.230469 309.492188 C 317.230469 309.609375 317.324219 309.703125 317.441406 309.703125 C 317.558594 309.703125 317.652344 309.609375 317.652344 309.492188 Z M 317.652344 309.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.6875 308.957031 C 315.6875 308.839844 315.59375 308.746094 315.476562 308.746094 C 315.359375 308.746094 315.265625 308.839844 315.265625 308.957031 C 315.265625 309.074219 315.359375 309.167969 315.476562 309.167969 C 315.59375 309.167969 315.6875 309.074219 315.6875 308.957031 Z M 315.6875 308.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.769531 304.847656 C 317.769531 304.730469 317.675781 304.636719 317.558594 304.636719 C 317.441406 304.636719 317.347656 304.730469 317.347656 304.847656 C 317.347656 304.964844 317.441406 305.058594 317.558594 305.058594 C 317.675781 305.058594 317.769531 304.964844 317.769531 304.847656 Z M 317.769531 304.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 318.003906 302.566406 C 318.003906 302.449219 317.910156 302.355469 317.792969 302.355469 C 317.675781 302.355469 317.582031 302.449219 317.582031 302.566406 C 317.582031 302.683594 317.675781 302.777344 317.792969 302.777344 C 317.910156 302.777344 318.003906 302.683594 318.003906 302.566406 Z M 318.003906 302.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 319.855469 308.824219 C 319.855469 308.707031 319.761719 308.613281 319.644531 308.613281 C 319.527344 308.613281 319.433594 308.707031 319.433594 308.824219 C 319.433594 308.941406 319.527344 309.035156 319.644531 309.035156 C 319.761719 309.035156 319.855469 308.941406 319.855469 308.824219 Z M 319.855469 308.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.398438 310.582031 C 315.398438 310.464844 315.304688 310.371094 315.1875 310.371094 C 315.070312 310.371094 314.976562 310.464844 314.976562 310.582031 C 314.976562 310.699219 315.070312 310.792969 315.1875 310.792969 C 315.304688 310.792969 315.398438 310.699219 315.398438 310.582031 Z M 315.398438 310.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.085938 309.320312 C 314.085938 309.203125 313.992188 309.109375 313.875 309.109375 C 313.757812 309.109375 313.664062 309.203125 313.664062 309.320312 C 313.664062 309.4375 313.757812 309.53125 313.875 309.53125 C 313.992188 309.53125 314.085938 309.4375 314.085938 309.320312 Z M 314.085938 309.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.445312 309.140625 C 316.445312 309.023438 316.351562 308.929688 316.234375 308.929688 C 316.117188 308.929688 316.023438 309.023438 316.023438 309.140625 C 316.023438 309.257812 316.117188 309.351562 316.234375 309.351562 C 316.351562 309.351562 316.445312 309.257812 316.445312 309.140625 Z M 316.445312 309.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.367188 314.863281 C 315.367188 314.746094 315.273438 314.652344 315.15625 314.652344 C 315.039062 314.652344 314.945312 314.746094 314.945312 314.863281 C 314.945312 314.980469 315.039062 315.074219 315.15625 315.074219 C 315.273438 315.074219 315.367188 314.980469 315.367188 314.863281 Z M 315.367188 314.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.5625 314.839844 C 315.5625 314.722656 315.46875 314.628906 315.351562 314.628906 C 315.234375 314.628906 315.140625 314.722656 315.140625 314.839844 C 315.140625 314.957031 315.234375 315.050781 315.351562 315.050781 C 315.46875 315.050781 315.5625 314.957031 315.5625 314.839844 Z M 315.5625 314.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.125 315.558594 C 316.125 315.441406 316.03125 315.347656 315.914062 315.347656 C 315.796875 315.347656 315.703125 315.441406 315.703125 315.558594 C 315.703125 315.675781 315.796875 315.769531 315.914062 315.769531 C 316.03125 315.769531 316.125 315.675781 316.125 315.558594 Z M 316.125 315.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.328125 314.925781 C 317.328125 314.808594 317.234375 314.714844 317.117188 314.714844 C 317 314.714844 316.90625 314.808594 316.90625 314.925781 C 316.90625 315.042969 317 315.136719 317.117188 315.136719 C 317.234375 315.136719 317.328125 315.042969 317.328125 314.925781 Z M 317.328125 314.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 319.757812 315.605469 C 319.757812 315.488281 319.664062 315.394531 319.546875 315.394531 C 319.429688 315.394531 319.335938 315.488281 319.335938 315.605469 C 319.335938 315.722656 319.429688 315.816406 319.546875 315.816406 C 319.664062 315.816406 319.757812 315.722656 319.757812 315.605469 Z M 319.757812 315.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 320.964844 316.332031 C 320.964844 316.214844 320.871094 316.121094 320.753906 316.121094 C 320.636719 316.121094 320.542969 316.214844 320.542969 316.332031 C 320.542969 316.449219 320.636719 316.542969 320.753906 316.542969 C 320.871094 316.542969 320.964844 316.449219 320.964844 316.332031 Z M 320.964844 316.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.582031 318.792969 C 324.582031 318.675781 324.488281 318.582031 324.371094 318.582031 C 324.253906 318.582031 324.160156 318.675781 324.160156 318.792969 C 324.160156 318.910156 324.253906 319.003906 324.371094 319.003906 C 324.488281 319.003906 324.582031 318.910156 324.582031 318.792969 Z M 324.582031 318.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.820312 322.960938 C 325.820312 322.84375 325.726562 322.75 325.609375 322.75 C 325.492188 322.75 325.398438 322.84375 325.398438 322.960938 C 325.398438 323.078125 325.492188 323.171875 325.609375 323.171875 C 325.726562 323.171875 325.820312 323.078125 325.820312 322.960938 Z M 325.820312 322.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.96875 321.261719 C 322.96875 321.144531 322.875 321.050781 322.757812 321.050781 C 322.640625 321.050781 322.546875 321.144531 322.546875 321.261719 C 322.546875 321.378906 322.640625 321.472656 322.757812 321.472656 C 322.875 321.472656 322.96875 321.378906 322.96875 321.261719 Z M 322.96875 321.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.648438 323.308594 C 322.648438 323.191406 322.554688 323.097656 322.4375 323.097656 C 322.320312 323.097656 322.226562 323.191406 322.226562 323.308594 C 322.226562 323.425781 322.320312 323.519531 322.4375 323.519531 C 322.554688 323.519531 322.648438 323.425781 322.648438 323.308594 Z M 322.648438 323.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.714844 325.125 C 321.714844 325.007812 321.621094 324.914062 321.503906 324.914062 C 321.386719 324.914062 321.292969 325.007812 321.292969 325.125 C 321.292969 325.242188 321.386719 325.335938 321.503906 325.335938 C 321.621094 325.335938 321.714844 325.242188 321.714844 325.125 Z M 321.714844 325.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.011719 324.75 C 326.011719 324.632812 325.917969 324.539062 325.800781 324.539062 C 325.683594 324.539062 325.589844 324.632812 325.589844 324.75 C 325.589844 324.867188 325.683594 324.960938 325.800781 324.960938 C 325.917969 324.960938 326.011719 324.867188 326.011719 324.75 Z M 326.011719 324.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.6875 326.898438 C 325.6875 326.78125 325.59375 326.6875 325.476562 326.6875 C 325.359375 326.6875 325.265625 326.78125 325.265625 326.898438 C 325.265625 327.015625 325.359375 327.109375 325.476562 327.109375 C 325.59375 327.109375 325.6875 327.015625 325.6875 326.898438 Z M 325.6875 326.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.101562 327.441406 C 324.101562 327.324219 324.007812 327.230469 323.890625 327.230469 C 323.773438 327.230469 323.679688 327.324219 323.679688 327.441406 C 323.679688 327.558594 323.773438 327.652344 323.890625 327.652344 C 324.007812 327.652344 324.101562 327.558594 324.101562 327.441406 Z M 324.101562 327.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 328.546875 324.878906 C 328.546875 324.761719 328.453125 324.667969 328.335938 324.667969 C 328.21875 324.667969 328.125 324.761719 328.125 324.878906 C 328.125 324.996094 328.21875 325.089844 328.335938 325.089844 C 328.453125 325.089844 328.546875 324.996094 328.546875 324.878906 Z M 328.546875 324.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.667969 320.269531 C 327.667969 320.152344 327.574219 320.058594 327.457031 320.058594 C 327.339844 320.058594 327.246094 320.152344 327.246094 320.269531 C 327.246094 320.386719 327.339844 320.480469 327.457031 320.480469 C 327.574219 320.480469 327.667969 320.386719 327.667969 320.269531 Z M 327.667969 320.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 328.035156 322.957031 C 328.035156 322.839844 327.941406 322.746094 327.824219 322.746094 C 327.707031 322.746094 327.613281 322.839844 327.613281 322.957031 C 327.613281 323.074219 327.707031 323.167969 327.824219 323.167969 C 327.941406 323.167969 328.035156 323.074219 328.035156 322.957031 Z M 328.035156 322.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.972656 326.039062 C 325.972656 325.921875 325.878906 325.828125 325.761719 325.828125 C 325.644531 325.828125 325.550781 325.921875 325.550781 326.039062 C 325.550781 326.15625 325.644531 326.25 325.761719 326.25 C 325.878906 326.25 325.972656 326.15625 325.972656 326.039062 Z M 325.972656 326.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.660156 329.316406 C 327.660156 329.199219 327.566406 329.105469 327.449219 329.105469 C 327.332031 329.105469 327.238281 329.199219 327.238281 329.316406 C 327.238281 329.433594 327.332031 329.527344 327.449219 329.527344 C 327.566406 329.527344 327.660156 329.433594 327.660156 329.316406 Z M 327.660156 329.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.351562 325.765625 C 325.351562 325.648438 325.257812 325.554688 325.140625 325.554688 C 325.023438 325.554688 324.929688 325.648438 324.929688 325.765625 C 324.929688 325.882812 325.023438 325.976562 325.140625 325.976562 C 325.257812 325.976562 325.351562 325.882812 325.351562 325.765625 Z M 325.351562 325.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.539062 325.644531 C 322.539062 325.527344 322.445312 325.433594 322.328125 325.433594 C 322.210938 325.433594 322.117188 325.527344 322.117188 325.644531 C 322.117188 325.761719 322.210938 325.855469 322.328125 325.855469 C 322.445312 325.855469 322.539062 325.761719 322.539062 325.644531 Z M 322.539062 325.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.710938 323.257812 C 323.710938 323.140625 323.617188 323.046875 323.5 323.046875 C 323.382812 323.046875 323.289062 323.140625 323.289062 323.257812 C 323.289062 323.375 323.382812 323.46875 323.5 323.46875 C 323.617188 323.46875 323.710938 323.375 323.710938 323.257812 Z M 323.710938 323.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.699219 319.847656 C 324.699219 319.730469 324.605469 319.636719 324.488281 319.636719 C 324.371094 319.636719 324.277344 319.730469 324.277344 319.847656 C 324.277344 319.964844 324.371094 320.058594 324.488281 320.058594 C 324.605469 320.058594 324.699219 319.964844 324.699219 319.847656 Z M 324.699219 319.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.472656 318.863281 C 323.472656 318.746094 323.378906 318.652344 323.261719 318.652344 C 323.144531 318.652344 323.050781 318.746094 323.050781 318.863281 C 323.050781 318.980469 323.144531 319.074219 323.261719 319.074219 C 323.378906 319.074219 323.472656 318.980469 323.472656 318.863281 Z M 323.472656 318.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.007812 314.953125 C 321.007812 314.835938 320.914062 314.742188 320.796875 314.742188 C 320.679688 314.742188 320.585938 314.835938 320.585938 314.953125 C 320.585938 315.070312 320.679688 315.164062 320.796875 315.164062 C 320.914062 315.164062 321.007812 315.070312 321.007812 314.953125 Z M 321.007812 314.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.136719 310.753906 C 322.136719 310.636719 322.042969 310.542969 321.925781 310.542969 C 321.808594 310.542969 321.714844 310.636719 321.714844 310.753906 C 321.714844 310.871094 321.808594 310.964844 321.925781 310.964844 C 322.042969 310.964844 322.136719 310.871094 322.136719 310.753906 Z M 322.136719 310.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.058594 312.542969 C 322.058594 312.425781 321.964844 312.332031 321.847656 312.332031 C 321.730469 312.332031 321.636719 312.425781 321.636719 312.542969 C 321.636719 312.660156 321.730469 312.753906 321.847656 312.753906 C 321.964844 312.753906 322.058594 312.660156 322.058594 312.542969 Z M 322.058594 312.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 319.492188 310.6875 C 319.492188 310.570312 319.398438 310.476562 319.28125 310.476562 C 319.164062 310.476562 319.070312 310.570312 319.070312 310.6875 C 319.070312 310.804688 319.164062 310.898438 319.28125 310.898438 C 319.398438 310.898438 319.492188 310.804688 319.492188 310.6875 Z M 319.492188 310.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.867188 309.203125 C 316.867188 309.085938 316.773438 308.992188 316.65625 308.992188 C 316.539062 308.992188 316.445312 309.085938 316.445312 309.203125 C 316.445312 309.320312 316.539062 309.414062 316.65625 309.414062 C 316.773438 309.414062 316.867188 309.320312 316.867188 309.203125 Z M 316.867188 309.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.949219 309.273438 C 315.949219 309.15625 315.855469 309.0625 315.738281 309.0625 C 315.621094 309.0625 315.527344 309.15625 315.527344 309.273438 C 315.527344 309.390625 315.621094 309.484375 315.738281 309.484375 C 315.855469 309.484375 315.949219 309.390625 315.949219 309.273438 Z M 315.949219 309.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.035156 308.414062 C 316.035156 308.296875 315.941406 308.203125 315.824219 308.203125 C 315.707031 308.203125 315.613281 308.296875 315.613281 308.414062 C 315.613281 308.53125 315.707031 308.625 315.824219 308.625 C 315.941406 308.625 316.035156 308.53125 316.035156 308.414062 Z M 316.035156 308.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.695312 308.113281 C 317.695312 307.996094 317.601562 307.902344 317.484375 307.902344 C 317.367188 307.902344 317.273438 307.996094 317.273438 308.113281 C 317.273438 308.230469 317.367188 308.324219 317.484375 308.324219 C 317.601562 308.324219 317.695312 308.230469 317.695312 308.113281 Z M 317.695312 308.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.71875 307.722656 C 316.71875 307.605469 316.625 307.511719 316.507812 307.511719 C 316.390625 307.511719 316.296875 307.605469 316.296875 307.722656 C 316.296875 307.839844 316.390625 307.933594 316.507812 307.933594 C 316.625 307.933594 316.71875 307.839844 316.71875 307.722656 Z M 316.71875 307.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.390625 309.742188 C 314.390625 309.625 314.296875 309.53125 314.179688 309.53125 C 314.0625 309.53125 313.96875 309.625 313.96875 309.742188 C 313.96875 309.859375 314.0625 309.953125 314.179688 309.953125 C 314.296875 309.953125 314.390625 309.859375 314.390625 309.742188 Z M 314.390625 309.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.695312 311.339844 C 314.695312 311.222656 314.601562 311.128906 314.484375 311.128906 C 314.367188 311.128906 314.273438 311.222656 314.273438 311.339844 C 314.273438 311.457031 314.367188 311.550781 314.484375 311.550781 C 314.601562 311.550781 314.695312 311.457031 314.695312 311.339844 Z M 314.695312 311.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.695312 311.054688 C 314.695312 310.9375 314.601562 310.84375 314.484375 310.84375 C 314.367188 310.84375 314.273438 310.9375 314.273438 311.054688 C 314.273438 311.171875 314.367188 311.265625 314.484375 311.265625 C 314.601562 311.265625 314.695312 311.171875 314.695312 311.054688 Z M 314.695312 311.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.53125 312.808594 C 312.53125 312.691406 312.4375 312.597656 312.320312 312.597656 C 312.203125 312.597656 312.109375 312.691406 312.109375 312.808594 C 312.109375 312.925781 312.203125 313.019531 312.320312 313.019531 C 312.4375 313.019531 312.53125 312.925781 312.53125 312.808594 Z M 312.53125 312.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.496094 313.457031 C 313.496094 313.339844 313.402344 313.246094 313.285156 313.246094 C 313.167969 313.246094 313.074219 313.339844 313.074219 313.457031 C 313.074219 313.574219 313.167969 313.667969 313.285156 313.667969 C 313.402344 313.667969 313.496094 313.574219 313.496094 313.457031 Z M 313.496094 313.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.554688 313.910156 C 314.554688 313.792969 314.460938 313.699219 314.34375 313.699219 C 314.226562 313.699219 314.132812 313.792969 314.132812 313.910156 C 314.132812 314.027344 314.226562 314.121094 314.34375 314.121094 C 314.460938 314.121094 314.554688 314.027344 314.554688 313.910156 Z M 314.554688 313.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.15625 313.011719 C 314.15625 312.894531 314.0625 312.800781 313.945312 312.800781 C 313.828125 312.800781 313.734375 312.894531 313.734375 313.011719 C 313.734375 313.128906 313.828125 313.222656 313.945312 313.222656 C 314.0625 313.222656 314.15625 313.128906 314.15625 313.011719 Z M 314.15625 313.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.8125 309.929688 C 316.8125 309.8125 316.71875 309.71875 316.601562 309.71875 C 316.484375 309.71875 316.390625 309.8125 316.390625 309.929688 C 316.390625 310.046875 316.484375 310.140625 316.601562 310.140625 C 316.71875 310.140625 316.8125 310.046875 316.8125 309.929688 Z M 316.8125 309.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 318.003906 310.128906 C 318.003906 310.011719 317.910156 309.917969 317.792969 309.917969 C 317.675781 309.917969 317.582031 310.011719 317.582031 310.128906 C 317.582031 310.246094 317.675781 310.339844 317.792969 310.339844 C 317.910156 310.339844 318.003906 310.246094 318.003906 310.128906 Z M 318.003906 310.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.105469 306.304688 C 316.105469 306.1875 316.011719 306.09375 315.894531 306.09375 C 315.777344 306.09375 315.683594 306.1875 315.683594 306.304688 C 315.683594 306.421875 315.777344 306.515625 315.894531 306.515625 C 316.011719 306.515625 316.105469 306.421875 316.105469 306.304688 Z M 316.105469 306.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.59375 309.6875 C 316.59375 309.570312 316.5 309.476562 316.382812 309.476562 C 316.265625 309.476562 316.171875 309.570312 316.171875 309.6875 C 316.171875 309.804688 316.265625 309.898438 316.382812 309.898438 C 316.5 309.898438 316.59375 309.804688 316.59375 309.6875 Z M 316.59375 309.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313 309.769531 C 313 309.652344 312.90625 309.558594 312.789062 309.558594 C 312.671875 309.558594 312.578125 309.652344 312.578125 309.769531 C 312.578125 309.886719 312.671875 309.980469 312.789062 309.980469 C 312.90625 309.980469 313 309.886719 313 309.769531 Z M 313 309.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.511719 306.816406 C 314.511719 306.699219 314.417969 306.605469 314.300781 306.605469 C 314.183594 306.605469 314.089844 306.699219 314.089844 306.816406 C 314.089844 306.933594 314.183594 307.027344 314.300781 307.027344 C 314.417969 307.027344 314.511719 306.933594 314.511719 306.816406 Z M 314.511719 306.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.507812 303.679688 C 311.507812 303.5625 311.414062 303.46875 311.296875 303.46875 C 311.179688 303.46875 311.085938 303.5625 311.085938 303.679688 C 311.085938 303.796875 311.179688 303.890625 311.296875 303.890625 C 311.414062 303.890625 311.507812 303.796875 311.507812 303.679688 Z M 311.507812 303.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.863281 296.558594 C 308.863281 296.441406 308.769531 296.347656 308.652344 296.347656 C 308.535156 296.347656 308.441406 296.441406 308.441406 296.558594 C 308.441406 296.675781 308.535156 296.769531 308.652344 296.769531 C 308.769531 296.769531 308.863281 296.675781 308.863281 296.558594 Z M 308.863281 296.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.753906 299.066406 C 304.753906 298.949219 304.660156 298.855469 304.542969 298.855469 C 304.425781 298.855469 304.332031 298.949219 304.332031 299.066406 C 304.332031 299.183594 304.425781 299.277344 304.542969 299.277344 C 304.660156 299.277344 304.753906 299.183594 304.753906 299.066406 Z M 304.753906 299.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.777344 298.707031 C 301.777344 298.589844 301.683594 298.496094 301.566406 298.496094 C 301.449219 298.496094 301.355469 298.589844 301.355469 298.707031 C 301.355469 298.824219 301.449219 298.917969 301.566406 298.917969 C 301.683594 298.917969 301.777344 298.824219 301.777344 298.707031 Z M 301.777344 298.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.265625 297.707031 C 302.265625 297.589844 302.171875 297.496094 302.054688 297.496094 C 301.9375 297.496094 301.84375 297.589844 301.84375 297.707031 C 301.84375 297.824219 301.9375 297.917969 302.054688 297.917969 C 302.171875 297.917969 302.265625 297.824219 302.265625 297.707031 Z M 302.265625 297.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.035156 297.1875 C 302.035156 297.070312 301.941406 296.976562 301.824219 296.976562 C 301.707031 296.976562 301.613281 297.070312 301.613281 297.1875 C 301.613281 297.304688 301.707031 297.398438 301.824219 297.398438 C 301.941406 297.398438 302.035156 297.304688 302.035156 297.1875 Z M 302.035156 297.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.894531 294.789062 C 299.894531 294.671875 299.800781 294.578125 299.683594 294.578125 C 299.566406 294.578125 299.472656 294.671875 299.472656 294.789062 C 299.472656 294.90625 299.566406 295 299.683594 295 C 299.800781 295 299.894531 294.90625 299.894531 294.789062 Z M 299.894531 294.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.605469 291.066406 C 303.605469 290.949219 303.511719 290.855469 303.394531 290.855469 C 303.277344 290.855469 303.183594 290.949219 303.183594 291.066406 C 303.183594 291.183594 303.277344 291.277344 303.394531 291.277344 C 303.511719 291.277344 303.605469 291.183594 303.605469 291.066406 Z M 303.605469 291.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.914062 291.222656 C 301.914062 291.105469 301.820312 291.011719 301.703125 291.011719 C 301.585938 291.011719 301.492188 291.105469 301.492188 291.222656 C 301.492188 291.339844 301.585938 291.433594 301.703125 291.433594 C 301.820312 291.433594 301.914062 291.339844 301.914062 291.222656 Z M 301.914062 291.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.917969 298.128906 C 302.917969 298.011719 302.824219 297.917969 302.707031 297.917969 C 302.589844 297.917969 302.496094 298.011719 302.496094 298.128906 C 302.496094 298.246094 302.589844 298.339844 302.707031 298.339844 C 302.824219 298.339844 302.917969 298.246094 302.917969 298.128906 Z M 302.917969 298.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.1875 296.234375 C 302.1875 296.117188 302.09375 296.023438 301.976562 296.023438 C 301.859375 296.023438 301.765625 296.117188 301.765625 296.234375 C 301.765625 296.351562 301.859375 296.445312 301.976562 296.445312 C 302.09375 296.445312 302.1875 296.351562 302.1875 296.234375 Z M 302.1875 296.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.789062 297.769531 C 303.789062 297.652344 303.695312 297.558594 303.578125 297.558594 C 303.460938 297.558594 303.367188 297.652344 303.367188 297.769531 C 303.367188 297.886719 303.460938 297.980469 303.578125 297.980469 C 303.695312 297.980469 303.789062 297.886719 303.789062 297.769531 Z M 303.789062 297.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.816406 294.4375 C 305.816406 294.320312 305.722656 294.226562 305.605469 294.226562 C 305.488281 294.226562 305.394531 294.320312 305.394531 294.4375 C 305.394531 294.554688 305.488281 294.648438 305.605469 294.648438 C 305.722656 294.648438 305.816406 294.554688 305.816406 294.4375 Z M 305.816406 294.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.5625 292.191406 C 308.5625 292.074219 308.46875 291.980469 308.351562 291.980469 C 308.234375 291.980469 308.140625 292.074219 308.140625 292.191406 C 308.140625 292.308594 308.234375 292.402344 308.351562 292.402344 C 308.46875 292.402344 308.5625 292.308594 308.5625 292.191406 Z M 308.5625 292.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.683594 288.769531 C 308.683594 288.652344 308.589844 288.558594 308.472656 288.558594 C 308.355469 288.558594 308.261719 288.652344 308.261719 288.769531 C 308.261719 288.886719 308.355469 288.980469 308.472656 288.980469 C 308.589844 288.980469 308.683594 288.886719 308.683594 288.769531 Z M 308.683594 288.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.796875 290.121094 C 307.796875 290.003906 307.703125 289.910156 307.585938 289.910156 C 307.46875 289.910156 307.375 290.003906 307.375 290.121094 C 307.375 290.238281 307.46875 290.332031 307.585938 290.332031 C 307.703125 290.332031 307.796875 290.238281 307.796875 290.121094 Z M 307.796875 290.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.671875 294.042969 C 307.671875 293.925781 307.578125 293.832031 307.460938 293.832031 C 307.34375 293.832031 307.25 293.925781 307.25 294.042969 C 307.25 294.160156 307.34375 294.253906 307.460938 294.253906 C 307.578125 294.253906 307.671875 294.160156 307.671875 294.042969 Z M 307.671875 294.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.179688 292.980469 C 308.179688 292.863281 308.085938 292.769531 307.96875 292.769531 C 307.851562 292.769531 307.757812 292.863281 307.757812 292.980469 C 307.757812 293.097656 307.851562 293.191406 307.96875 293.191406 C 308.085938 293.191406 308.179688 293.097656 308.179688 292.980469 Z M 308.179688 292.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.488281 293.074219 C 313.488281 292.957031 313.394531 292.863281 313.277344 292.863281 C 313.160156 292.863281 313.066406 292.957031 313.066406 293.074219 C 313.066406 293.191406 313.160156 293.285156 313.277344 293.285156 C 313.394531 293.285156 313.488281 293.191406 313.488281 293.074219 Z M 313.488281 293.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.539062 291.238281 C 315.539062 291.121094 315.445312 291.027344 315.328125 291.027344 C 315.210938 291.027344 315.117188 291.121094 315.117188 291.238281 C 315.117188 291.355469 315.210938 291.449219 315.328125 291.449219 C 315.445312 291.449219 315.539062 291.355469 315.539062 291.238281 Z M 315.539062 291.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 318.511719 289.804688 C 318.511719 289.6875 318.417969 289.59375 318.300781 289.59375 C 318.183594 289.59375 318.089844 289.6875 318.089844 289.804688 C 318.089844 289.921875 318.183594 290.015625 318.300781 290.015625 C 318.417969 290.015625 318.511719 289.921875 318.511719 289.804688 Z M 318.511719 289.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 319.519531 290.214844 C 319.519531 290.097656 319.425781 290.003906 319.308594 290.003906 C 319.191406 290.003906 319.097656 290.097656 319.097656 290.214844 C 319.097656 290.332031 319.191406 290.425781 319.308594 290.425781 C 319.425781 290.425781 319.519531 290.332031 319.519531 290.214844 Z M 319.519531 290.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.820312 288.144531 C 322.820312 288.027344 322.726562 287.933594 322.609375 287.933594 C 322.492188 287.933594 322.398438 288.027344 322.398438 288.144531 C 322.398438 288.261719 322.492188 288.355469 322.609375 288.355469 C 322.726562 288.355469 322.820312 288.261719 322.820312 288.144531 Z M 322.820312 288.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.761719 289.015625 C 321.761719 288.898438 321.667969 288.804688 321.550781 288.804688 C 321.433594 288.804688 321.339844 288.898438 321.339844 289.015625 C 321.339844 289.132812 321.433594 289.226562 321.550781 289.226562 C 321.667969 289.226562 321.761719 289.132812 321.761719 289.015625 Z M 321.761719 289.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.429688 288.066406 C 322.429688 287.949219 322.335938 287.855469 322.21875 287.855469 C 322.101562 287.855469 322.007812 287.949219 322.007812 288.066406 C 322.007812 288.183594 322.101562 288.277344 322.21875 288.277344 C 322.335938 288.277344 322.429688 288.183594 322.429688 288.066406 Z M 322.429688 288.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.570312 287.128906 C 324.570312 287.011719 324.476562 286.917969 324.359375 286.917969 C 324.242188 286.917969 324.148438 287.011719 324.148438 287.128906 C 324.148438 287.246094 324.242188 287.339844 324.359375 287.339844 C 324.476562 287.339844 324.570312 287.246094 324.570312 287.128906 Z M 324.570312 287.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.980469 288.921875 C 326.980469 288.804688 326.886719 288.710938 326.769531 288.710938 C 326.652344 288.710938 326.558594 288.804688 326.558594 288.921875 C 326.558594 289.039062 326.652344 289.132812 326.769531 289.132812 C 326.886719 289.132812 326.980469 289.039062 326.980469 288.921875 Z M 326.980469 288.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.734375 289.539062 C 324.734375 289.421875 324.640625 289.328125 324.523438 289.328125 C 324.40625 289.328125 324.3125 289.421875 324.3125 289.539062 C 324.3125 289.65625 324.40625 289.75 324.523438 289.75 C 324.640625 289.75 324.734375 289.65625 324.734375 289.539062 Z M 324.734375 289.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.800781 292.386719 C 323.800781 292.269531 323.707031 292.175781 323.589844 292.175781 C 323.472656 292.175781 323.378906 292.269531 323.378906 292.386719 C 323.378906 292.503906 323.472656 292.597656 323.589844 292.597656 C 323.707031 292.597656 323.800781 292.503906 323.800781 292.386719 Z M 323.800781 292.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.445312 292.667969 C 324.445312 292.550781 324.351562 292.457031 324.234375 292.457031 C 324.117188 292.457031 324.023438 292.550781 324.023438 292.667969 C 324.023438 292.785156 324.117188 292.878906 324.234375 292.878906 C 324.351562 292.878906 324.445312 292.785156 324.445312 292.667969 Z M 324.445312 292.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.804688 292.207031 C 322.804688 292.089844 322.710938 291.996094 322.59375 291.996094 C 322.476562 291.996094 322.382812 292.089844 322.382812 292.207031 C 322.382812 292.324219 322.476562 292.417969 322.59375 292.417969 C 322.710938 292.417969 322.804688 292.324219 322.804688 292.207031 Z M 322.804688 292.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.773438 295.066406 C 322.773438 294.949219 322.679688 294.855469 322.5625 294.855469 C 322.445312 294.855469 322.351562 294.949219 322.351562 295.066406 C 322.351562 295.183594 322.445312 295.277344 322.5625 295.277344 C 322.679688 295.277344 322.773438 295.183594 322.773438 295.066406 Z M 322.773438 295.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.953125 296.453125 C 326.953125 296.335938 326.859375 296.242188 326.742188 296.242188 C 326.625 296.242188 326.53125 296.335938 326.53125 296.453125 C 326.53125 296.570312 326.625 296.664062 326.742188 296.664062 C 326.859375 296.664062 326.953125 296.570312 326.953125 296.453125 Z M 326.953125 296.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.238281 296.398438 C 326.238281 296.28125 326.144531 296.1875 326.027344 296.1875 C 325.910156 296.1875 325.816406 296.28125 325.816406 296.398438 C 325.816406 296.515625 325.910156 296.609375 326.027344 296.609375 C 326.144531 296.609375 326.238281 296.515625 326.238281 296.398438 Z M 326.238281 296.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.40625 298.316406 C 321.40625 298.199219 321.3125 298.105469 321.195312 298.105469 C 321.078125 298.105469 320.984375 298.199219 320.984375 298.316406 C 320.984375 298.433594 321.078125 298.527344 321.195312 298.527344 C 321.3125 298.527344 321.40625 298.433594 321.40625 298.316406 Z M 321.40625 298.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 320.1875 299.460938 C 320.1875 299.34375 320.09375 299.25 319.976562 299.25 C 319.859375 299.25 319.765625 299.34375 319.765625 299.460938 C 319.765625 299.578125 319.859375 299.671875 319.976562 299.671875 C 320.09375 299.671875 320.1875 299.578125 320.1875 299.460938 Z M 320.1875 299.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 320.980469 302.082031 C 320.980469 301.964844 320.886719 301.871094 320.769531 301.871094 C 320.652344 301.871094 320.558594 301.964844 320.558594 302.082031 C 320.558594 302.199219 320.652344 302.292969 320.769531 302.292969 C 320.886719 302.292969 320.980469 302.199219 320.980469 302.082031 Z M 320.980469 302.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 320.53125 298.460938 C 320.53125 298.34375 320.4375 298.25 320.320312 298.25 C 320.203125 298.25 320.109375 298.34375 320.109375 298.460938 C 320.109375 298.578125 320.203125 298.671875 320.320312 298.671875 C 320.4375 298.671875 320.53125 298.578125 320.53125 298.460938 Z M 320.53125 298.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.058594 300.632812 C 321.058594 300.515625 320.964844 300.421875 320.847656 300.421875 C 320.730469 300.421875 320.636719 300.515625 320.636719 300.632812 C 320.636719 300.75 320.730469 300.84375 320.847656 300.84375 C 320.964844 300.84375 321.058594 300.75 321.058594 300.632812 Z M 321.058594 300.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 319.851562 302.484375 C 319.851562 302.367188 319.757812 302.273438 319.640625 302.273438 C 319.523438 302.273438 319.429688 302.367188 319.429688 302.484375 C 319.429688 302.601562 319.523438 302.695312 319.640625 302.695312 C 319.757812 302.695312 319.851562 302.601562 319.851562 302.484375 Z M 319.851562 302.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.097656 301.472656 C 322.097656 301.355469 322.003906 301.261719 321.886719 301.261719 C 321.769531 301.261719 321.675781 301.355469 321.675781 301.472656 C 321.675781 301.589844 321.769531 301.683594 321.886719 301.683594 C 322.003906 301.683594 322.097656 301.589844 322.097656 301.472656 Z M 322.097656 301.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.984375 301.230469 C 324.984375 301.113281 324.890625 301.019531 324.773438 301.019531 C 324.65625 301.019531 324.5625 301.113281 324.5625 301.230469 C 324.5625 301.347656 324.65625 301.441406 324.773438 301.441406 C 324.890625 301.441406 324.984375 301.347656 324.984375 301.230469 Z M 324.984375 301.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.929688 300.59375 C 324.929688 300.476562 324.835938 300.382812 324.71875 300.382812 C 324.601562 300.382812 324.507812 300.476562 324.507812 300.59375 C 324.507812 300.710938 324.601562 300.804688 324.71875 300.804688 C 324.835938 300.804688 324.929688 300.710938 324.929688 300.59375 Z M 324.929688 300.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.847656 300.925781 C 323.847656 300.808594 323.753906 300.714844 323.636719 300.714844 C 323.519531 300.714844 323.425781 300.808594 323.425781 300.925781 C 323.425781 301.042969 323.519531 301.136719 323.636719 301.136719 C 323.753906 301.136719 323.847656 301.042969 323.847656 300.925781 Z M 323.847656 300.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.242188 297.695312 C 325.242188 297.578125 325.148438 297.484375 325.03125 297.484375 C 324.914062 297.484375 324.820312 297.578125 324.820312 297.695312 C 324.820312 297.8125 324.914062 297.90625 325.03125 297.90625 C 325.148438 297.90625 325.242188 297.8125 325.242188 297.695312 Z M 325.242188 297.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 328.765625 297.140625 C 328.765625 297.023438 328.671875 296.929688 328.554688 296.929688 C 328.4375 296.929688 328.34375 297.023438 328.34375 297.140625 C 328.34375 297.257812 328.4375 297.351562 328.554688 297.351562 C 328.671875 297.351562 328.765625 297.257812 328.765625 297.140625 Z M 328.765625 297.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 329.300781 293.519531 C 329.300781 293.402344 329.207031 293.308594 329.089844 293.308594 C 328.972656 293.308594 328.878906 293.402344 328.878906 293.519531 C 328.878906 293.636719 328.972656 293.730469 329.089844 293.730469 C 329.207031 293.730469 329.300781 293.636719 329.300781 293.519531 Z M 329.300781 293.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 329.414062 291.535156 C 329.414062 291.417969 329.320312 291.324219 329.203125 291.324219 C 329.085938 291.324219 328.992188 291.417969 328.992188 291.535156 C 328.992188 291.652344 329.085938 291.746094 329.203125 291.746094 C 329.320312 291.746094 329.414062 291.652344 329.414062 291.535156 Z M 329.414062 291.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.621094 291.886719 C 326.621094 291.769531 326.527344 291.675781 326.410156 291.675781 C 326.292969 291.675781 326.199219 291.769531 326.199219 291.886719 C 326.199219 292.003906 326.292969 292.097656 326.410156 292.097656 C 326.527344 292.097656 326.621094 292.003906 326.621094 291.886719 Z M 326.621094 291.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 328.230469 288.140625 C 328.230469 288.023438 328.136719 287.929688 328.019531 287.929688 C 327.902344 287.929688 327.808594 288.023438 327.808594 288.140625 C 327.808594 288.257812 327.902344 288.351562 328.019531 288.351562 C 328.136719 288.351562 328.230469 288.257812 328.230469 288.140625 Z M 328.230469 288.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.152344 290.761719 C 326.152344 290.644531 326.058594 290.550781 325.941406 290.550781 C 325.824219 290.550781 325.730469 290.644531 325.730469 290.761719 C 325.730469 290.878906 325.824219 290.972656 325.941406 290.972656 C 326.058594 290.972656 326.152344 290.878906 326.152344 290.761719 Z M 326.152344 290.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.066406 290.722656 C 324.066406 290.605469 323.972656 290.511719 323.855469 290.511719 C 323.738281 290.511719 323.644531 290.605469 323.644531 290.722656 C 323.644531 290.839844 323.738281 290.933594 323.855469 290.933594 C 323.972656 290.933594 324.066406 290.839844 324.066406 290.722656 Z M 324.066406 290.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.632812 293.484375 C 323.632812 293.367188 323.539062 293.273438 323.421875 293.273438 C 323.304688 293.273438 323.210938 293.367188 323.210938 293.484375 C 323.210938 293.601562 323.304688 293.695312 323.421875 293.695312 C 323.539062 293.695312 323.632812 293.601562 323.632812 293.484375 Z M 323.632812 293.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.660156 297 C 321.660156 296.882812 321.566406 296.789062 321.449219 296.789062 C 321.332031 296.789062 321.238281 296.882812 321.238281 297 C 321.238281 297.117188 321.332031 297.210938 321.449219 297.210938 C 321.566406 297.210938 321.660156 297.117188 321.660156 297 Z M 321.660156 297 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 318.503906 296.839844 C 318.503906 296.722656 318.410156 296.628906 318.292969 296.628906 C 318.175781 296.628906 318.082031 296.722656 318.082031 296.839844 C 318.082031 296.957031 318.175781 297.050781 318.292969 297.050781 C 318.410156 297.050781 318.503906 296.957031 318.503906 296.839844 Z M 318.503906 296.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 319.007812 297.085938 C 319.007812 296.96875 318.914062 296.875 318.796875 296.875 C 318.679688 296.875 318.585938 296.96875 318.585938 297.085938 C 318.585938 297.203125 318.679688 297.296875 318.796875 297.296875 C 318.914062 297.296875 319.007812 297.203125 319.007812 297.085938 Z M 319.007812 297.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 320.863281 294.789062 C 320.863281 294.671875 320.769531 294.578125 320.652344 294.578125 C 320.535156 294.578125 320.441406 294.671875 320.441406 294.789062 C 320.441406 294.90625 320.535156 295 320.652344 295 C 320.769531 295 320.863281 294.90625 320.863281 294.789062 Z M 320.863281 294.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.554688 298.707031 C 323.554688 298.589844 323.460938 298.496094 323.34375 298.496094 C 323.226562 298.496094 323.132812 298.589844 323.132812 298.707031 C 323.132812 298.824219 323.226562 298.917969 323.34375 298.917969 C 323.460938 298.917969 323.554688 298.824219 323.554688 298.707031 Z M 323.554688 298.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.28125 295.839844 C 322.28125 295.722656 322.1875 295.628906 322.070312 295.628906 C 321.953125 295.628906 321.859375 295.722656 321.859375 295.839844 C 321.859375 295.957031 321.953125 296.050781 322.070312 296.050781 C 322.1875 296.050781 322.28125 295.957031 322.28125 295.839844 Z M 322.28125 295.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 320.890625 297.285156 C 320.890625 297.167969 320.796875 297.074219 320.679688 297.074219 C 320.5625 297.074219 320.46875 297.167969 320.46875 297.285156 C 320.46875 297.402344 320.5625 297.496094 320.679688 297.496094 C 320.796875 297.496094 320.890625 297.402344 320.890625 297.285156 Z M 320.890625 297.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 319.910156 297.617188 C 319.910156 297.5 319.816406 297.40625 319.699219 297.40625 C 319.582031 297.40625 319.488281 297.5 319.488281 297.617188 C 319.488281 297.734375 319.582031 297.828125 319.699219 297.828125 C 319.816406 297.828125 319.910156 297.734375 319.910156 297.617188 Z M 319.910156 297.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.78125 296.785156 C 316.78125 296.667969 316.6875 296.574219 316.570312 296.574219 C 316.453125 296.574219 316.359375 296.667969 316.359375 296.785156 C 316.359375 296.902344 316.453125 296.996094 316.570312 296.996094 C 316.6875 296.996094 316.78125 296.902344 316.78125 296.785156 Z M 316.78125 296.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 319.433594 298.578125 C 319.433594 298.460938 319.339844 298.367188 319.222656 298.367188 C 319.105469 298.367188 319.011719 298.460938 319.011719 298.578125 C 319.011719 298.695312 319.105469 298.789062 319.222656 298.789062 C 319.339844 298.789062 319.433594 298.695312 319.433594 298.578125 Z M 319.433594 298.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.480469 297.53125 C 325.480469 297.414062 325.386719 297.320312 325.269531 297.320312 C 325.152344 297.320312 325.058594 297.414062 325.058594 297.53125 C 325.058594 297.648438 325.152344 297.742188 325.269531 297.742188 C 325.386719 297.742188 325.480469 297.648438 325.480469 297.53125 Z M 325.480469 297.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.6875 298.492188 C 325.6875 298.375 325.59375 298.28125 325.476562 298.28125 C 325.359375 298.28125 325.265625 298.375 325.265625 298.492188 C 325.265625 298.609375 325.359375 298.703125 325.476562 298.703125 C 325.59375 298.703125 325.6875 298.609375 325.6875 298.492188 Z M 325.6875 298.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.136719 296.386719 C 324.136719 296.269531 324.042969 296.175781 323.925781 296.175781 C 323.808594 296.175781 323.714844 296.269531 323.714844 296.386719 C 323.714844 296.503906 323.808594 296.597656 323.925781 296.597656 C 324.042969 296.597656 324.136719 296.503906 324.136719 296.386719 Z M 324.136719 296.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 320.132812 294.726562 C 320.132812 294.609375 320.039062 294.515625 319.921875 294.515625 C 319.804688 294.515625 319.710938 294.609375 319.710938 294.726562 C 319.710938 294.84375 319.804688 294.9375 319.921875 294.9375 C 320.039062 294.9375 320.132812 294.84375 320.132812 294.726562 Z M 320.132812 294.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.011719 291.566406 C 321.011719 291.449219 320.917969 291.355469 320.800781 291.355469 C 320.683594 291.355469 320.589844 291.449219 320.589844 291.566406 C 320.589844 291.683594 320.683594 291.777344 320.800781 291.777344 C 320.917969 291.777344 321.011719 291.683594 321.011719 291.566406 Z M 321.011719 291.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.464844 290.195312 C 317.464844 290.078125 317.371094 289.984375 317.253906 289.984375 C 317.136719 289.984375 317.042969 290.078125 317.042969 290.195312 C 317.042969 290.3125 317.136719 290.40625 317.253906 290.40625 C 317.371094 290.40625 317.464844 290.3125 317.464844 290.195312 Z M 317.464844 290.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.964844 292.976562 C 314.964844 292.859375 314.871094 292.765625 314.753906 292.765625 C 314.636719 292.765625 314.542969 292.859375 314.542969 292.976562 C 314.542969 293.09375 314.636719 293.1875 314.753906 293.1875 C 314.871094 293.1875 314.964844 293.09375 314.964844 292.976562 Z M 314.964844 292.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.070312 291.238281 C 315.070312 291.121094 314.976562 291.027344 314.859375 291.027344 C 314.742188 291.027344 314.648438 291.121094 314.648438 291.238281 C 314.648438 291.355469 314.742188 291.449219 314.859375 291.449219 C 314.976562 291.449219 315.070312 291.355469 315.070312 291.238281 Z M 315.070312 291.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.355469 295.257812 C 315.355469 295.140625 315.261719 295.046875 315.144531 295.046875 C 315.027344 295.046875 314.933594 295.140625 314.933594 295.257812 C 314.933594 295.375 315.027344 295.46875 315.144531 295.46875 C 315.261719 295.46875 315.355469 295.375 315.355469 295.257812 Z M 315.355469 295.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.527344 291.707031 C 314.527344 291.589844 314.433594 291.496094 314.316406 291.496094 C 314.199219 291.496094 314.105469 291.589844 314.105469 291.707031 C 314.105469 291.824219 314.199219 291.917969 314.316406 291.917969 C 314.433594 291.917969 314.527344 291.824219 314.527344 291.707031 Z M 314.527344 291.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.511719 293.414062 C 313.511719 293.296875 313.417969 293.203125 313.300781 293.203125 C 313.183594 293.203125 313.089844 293.296875 313.089844 293.414062 C 313.089844 293.53125 313.183594 293.625 313.300781 293.625 C 313.417969 293.625 313.511719 293.53125 313.511719 293.414062 Z M 313.511719 293.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.417969 293.351562 C 315.417969 293.234375 315.324219 293.140625 315.207031 293.140625 C 315.089844 293.140625 314.996094 293.234375 314.996094 293.351562 C 314.996094 293.46875 315.089844 293.5625 315.207031 293.5625 C 315.324219 293.5625 315.417969 293.46875 315.417969 293.351562 Z M 315.417969 293.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.617188 291.277344 C 307.617188 291.160156 307.523438 291.066406 307.40625 291.066406 C 307.289062 291.066406 307.195312 291.160156 307.195312 291.277344 C 307.195312 291.394531 307.289062 291.488281 307.40625 291.488281 C 307.523438 291.488281 307.617188 291.394531 307.617188 291.277344 Z M 307.617188 291.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.414062 288.066406 C 307.414062 287.949219 307.320312 287.855469 307.203125 287.855469 C 307.085938 287.855469 306.992188 287.949219 306.992188 288.066406 C 306.992188 288.183594 307.085938 288.277344 307.203125 288.277344 C 307.320312 288.277344 307.414062 288.183594 307.414062 288.066406 Z M 307.414062 288.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.425781 284.585938 C 310.425781 284.46875 310.332031 284.375 310.214844 284.375 C 310.097656 284.375 310.003906 284.46875 310.003906 284.585938 C 310.003906 284.703125 310.097656 284.796875 310.214844 284.796875 C 310.332031 284.796875 310.425781 284.703125 310.425781 284.585938 Z M 310.425781 284.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.546875 285.859375 C 308.546875 285.742188 308.453125 285.648438 308.335938 285.648438 C 308.21875 285.648438 308.125 285.742188 308.125 285.859375 C 308.125 285.976562 308.21875 286.070312 308.335938 286.070312 C 308.453125 286.070312 308.546875 285.976562 308.546875 285.859375 Z M 308.546875 285.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.628906 288.5625 C 314.628906 288.445312 314.535156 288.351562 314.417969 288.351562 C 314.300781 288.351562 314.207031 288.445312 314.207031 288.5625 C 314.207031 288.679688 314.300781 288.773438 314.417969 288.773438 C 314.535156 288.773438 314.628906 288.679688 314.628906 288.5625 Z M 314.628906 288.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.945312 290.664062 C 313.945312 290.546875 313.851562 290.453125 313.734375 290.453125 C 313.617188 290.453125 313.523438 290.546875 313.523438 290.664062 C 313.523438 290.78125 313.617188 290.875 313.734375 290.875 C 313.851562 290.875 313.945312 290.78125 313.945312 290.664062 Z M 313.945312 290.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.871094 292.699219 C 312.871094 292.582031 312.777344 292.488281 312.660156 292.488281 C 312.542969 292.488281 312.449219 292.582031 312.449219 292.699219 C 312.449219 292.816406 312.542969 292.910156 312.660156 292.910156 C 312.777344 292.910156 312.871094 292.816406 312.871094 292.699219 Z M 312.871094 292.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.351562 292.847656 C 314.351562 292.730469 314.257812 292.636719 314.140625 292.636719 C 314.023438 292.636719 313.929688 292.730469 313.929688 292.847656 C 313.929688 292.964844 314.023438 293.058594 314.140625 293.058594 C 314.257812 293.058594 314.351562 292.964844 314.351562 292.847656 Z M 314.351562 292.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.046875 289.46875 C 314.046875 289.351562 313.953125 289.257812 313.835938 289.257812 C 313.71875 289.257812 313.625 289.351562 313.625 289.46875 C 313.625 289.585938 313.71875 289.679688 313.835938 289.679688 C 313.953125 289.679688 314.046875 289.585938 314.046875 289.46875 Z M 314.046875 289.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.953125 292.570312 C 311.953125 292.453125 311.859375 292.359375 311.742188 292.359375 C 311.625 292.359375 311.53125 292.453125 311.53125 292.570312 C 311.53125 292.6875 311.625 292.78125 311.742188 292.78125 C 311.859375 292.78125 311.953125 292.6875 311.953125 292.570312 Z M 311.953125 292.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.824219 290.683594 C 313.824219 290.566406 313.730469 290.472656 313.613281 290.472656 C 313.496094 290.472656 313.402344 290.566406 313.402344 290.683594 C 313.402344 290.800781 313.496094 290.894531 313.613281 290.894531 C 313.730469 290.894531 313.824219 290.800781 313.824219 290.683594 Z M 313.824219 290.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.089844 289.191406 C 313.089844 289.074219 312.996094 288.980469 312.878906 288.980469 C 312.761719 288.980469 312.667969 289.074219 312.667969 289.191406 C 312.667969 289.308594 312.761719 289.402344 312.878906 289.402344 C 312.996094 289.402344 313.089844 289.308594 313.089844 289.191406 Z M 313.089844 289.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.117188 296.816406 C 311.117188 296.699219 311.023438 296.605469 310.90625 296.605469 C 310.789062 296.605469 310.695312 296.699219 310.695312 296.816406 C 310.695312 296.933594 310.789062 297.027344 310.90625 297.027344 C 311.023438 297.027344 311.117188 296.933594 311.117188 296.816406 Z M 311.117188 296.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.390625 299.492188 C 309.390625 299.375 309.296875 299.28125 309.179688 299.28125 C 309.0625 299.28125 308.96875 299.375 308.96875 299.492188 C 308.96875 299.609375 309.0625 299.703125 309.179688 299.703125 C 309.296875 299.703125 309.390625 299.609375 309.390625 299.492188 Z M 309.390625 299.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.117188 296.703125 C 309.117188 296.585938 309.023438 296.492188 308.90625 296.492188 C 308.789062 296.492188 308.695312 296.585938 308.695312 296.703125 C 308.695312 296.820312 308.789062 296.914062 308.90625 296.914062 C 309.023438 296.914062 309.117188 296.820312 309.117188 296.703125 Z M 309.117188 296.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.980469 297.453125 C 309.980469 297.335938 309.886719 297.242188 309.769531 297.242188 C 309.652344 297.242188 309.558594 297.335938 309.558594 297.453125 C 309.558594 297.570312 309.652344 297.664062 309.769531 297.664062 C 309.886719 297.664062 309.980469 297.570312 309.980469 297.453125 Z M 309.980469 297.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.769531 300.058594 C 312.769531 299.941406 312.675781 299.847656 312.558594 299.847656 C 312.441406 299.847656 312.347656 299.941406 312.347656 300.058594 C 312.347656 300.175781 312.441406 300.269531 312.558594 300.269531 C 312.675781 300.269531 312.769531 300.175781 312.769531 300.058594 Z M 312.769531 300.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.453125 296.007812 C 308.453125 295.890625 308.359375 295.796875 308.242188 295.796875 C 308.125 295.796875 308.03125 295.890625 308.03125 296.007812 C 308.03125 296.125 308.125 296.21875 308.242188 296.21875 C 308.359375 296.21875 308.453125 296.125 308.453125 296.007812 Z M 308.453125 296.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.921875 296.007812 C 306.921875 295.890625 306.828125 295.796875 306.710938 295.796875 C 306.59375 295.796875 306.5 295.890625 306.5 296.007812 C 306.5 296.125 306.59375 296.21875 306.710938 296.21875 C 306.828125 296.21875 306.921875 296.125 306.921875 296.007812 Z M 306.921875 296.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.039062 297.921875 C 312.039062 297.804688 311.945312 297.710938 311.828125 297.710938 C 311.710938 297.710938 311.617188 297.804688 311.617188 297.921875 C 311.617188 298.039062 311.710938 298.132812 311.828125 298.132812 C 311.945312 298.132812 312.039062 298.039062 312.039062 297.921875 Z M 312.039062 297.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.691406 297.953125 C 311.691406 297.835938 311.597656 297.742188 311.480469 297.742188 C 311.363281 297.742188 311.269531 297.835938 311.269531 297.953125 C 311.269531 298.070312 311.363281 298.164062 311.480469 298.164062 C 311.597656 298.164062 311.691406 298.070312 311.691406 297.953125 Z M 311.691406 297.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.992188 300.503906 C 308.992188 300.386719 308.898438 300.292969 308.78125 300.292969 C 308.664062 300.292969 308.570312 300.386719 308.570312 300.503906 C 308.570312 300.621094 308.664062 300.714844 308.78125 300.714844 C 308.898438 300.714844 308.992188 300.621094 308.992188 300.503906 Z M 308.992188 300.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.898438 302.214844 C 306.898438 302.097656 306.804688 302.003906 306.6875 302.003906 C 306.570312 302.003906 306.476562 302.097656 306.476562 302.214844 C 306.476562 302.332031 306.570312 302.425781 306.6875 302.425781 C 306.804688 302.425781 306.898438 302.332031 306.898438 302.214844 Z M 306.898438 302.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.503906 303.382812 C 304.503906 303.265625 304.410156 303.171875 304.292969 303.171875 C 304.175781 303.171875 304.082031 303.265625 304.082031 303.382812 C 304.082031 303.5 304.175781 303.59375 304.292969 303.59375 C 304.410156 303.59375 304.503906 303.5 304.503906 303.382812 Z M 304.503906 303.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.6875 304.484375 C 305.6875 304.367188 305.59375 304.273438 305.476562 304.273438 C 305.359375 304.273438 305.265625 304.367188 305.265625 304.484375 C 305.265625 304.601562 305.359375 304.695312 305.476562 304.695312 C 305.59375 304.695312 305.6875 304.601562 305.6875 304.484375 Z M 305.6875 304.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.367188 306.105469 C 306.367188 305.988281 306.273438 305.894531 306.15625 305.894531 C 306.039062 305.894531 305.945312 305.988281 305.945312 306.105469 C 305.945312 306.222656 306.039062 306.316406 306.15625 306.316406 C 306.273438 306.316406 306.367188 306.222656 306.367188 306.105469 Z M 306.367188 306.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.753906 307.230469 C 303.753906 307.113281 303.660156 307.019531 303.542969 307.019531 C 303.425781 307.019531 303.332031 307.113281 303.332031 307.230469 C 303.332031 307.347656 303.425781 307.441406 303.542969 307.441406 C 303.660156 307.441406 303.753906 307.347656 303.753906 307.230469 Z M 303.753906 307.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.855469 310.542969 C 307.855469 310.425781 307.761719 310.332031 307.644531 310.332031 C 307.527344 310.332031 307.433594 310.425781 307.433594 310.542969 C 307.433594 310.660156 307.527344 310.753906 307.644531 310.753906 C 307.761719 310.753906 307.855469 310.660156 307.855469 310.542969 Z M 307.855469 310.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.761719 307.429688 C 308.761719 307.3125 308.667969 307.21875 308.550781 307.21875 C 308.433594 307.21875 308.339844 307.3125 308.339844 307.429688 C 308.339844 307.546875 308.433594 307.640625 308.550781 307.640625 C 308.667969 307.640625 308.761719 307.546875 308.761719 307.429688 Z M 308.761719 307.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.582031 308.144531 C 308.582031 308.027344 308.488281 307.933594 308.371094 307.933594 C 308.253906 307.933594 308.160156 308.027344 308.160156 308.144531 C 308.160156 308.261719 308.253906 308.355469 308.371094 308.355469 C 308.488281 308.355469 308.582031 308.261719 308.582031 308.144531 Z M 308.582031 308.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.078125 306.800781 C 311.078125 306.683594 310.984375 306.589844 310.867188 306.589844 C 310.75 306.589844 310.65625 306.683594 310.65625 306.800781 C 310.65625 306.917969 310.75 307.011719 310.867188 307.011719 C 310.984375 307.011719 311.078125 306.917969 311.078125 306.800781 Z M 311.078125 306.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.480469 302.890625 C 309.480469 302.773438 309.386719 302.679688 309.269531 302.679688 C 309.152344 302.679688 309.058594 302.773438 309.058594 302.890625 C 309.058594 303.007812 309.152344 303.101562 309.269531 303.101562 C 309.386719 303.101562 309.480469 303.007812 309.480469 302.890625 Z M 309.480469 302.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.132812 303.679688 C 309.132812 303.5625 309.039062 303.46875 308.921875 303.46875 C 308.804688 303.46875 308.710938 303.5625 308.710938 303.679688 C 308.710938 303.796875 308.804688 303.890625 308.921875 303.890625 C 309.039062 303.890625 309.132812 303.796875 309.132812 303.679688 Z M 309.132812 303.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.550781 305.902344 C 311.550781 305.785156 311.457031 305.691406 311.339844 305.691406 C 311.222656 305.691406 311.128906 305.785156 311.128906 305.902344 C 311.128906 306.019531 311.222656 306.113281 311.339844 306.113281 C 311.457031 306.113281 311.550781 306.019531 311.550781 305.902344 Z M 311.550781 305.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.933594 305.847656 C 306.933594 305.730469 306.839844 305.636719 306.722656 305.636719 C 306.605469 305.636719 306.511719 305.730469 306.511719 305.847656 C 306.511719 305.964844 306.605469 306.058594 306.722656 306.058594 C 306.839844 306.058594 306.933594 305.964844 306.933594 305.847656 Z M 306.933594 305.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.191406 304.476562 C 305.191406 304.359375 305.097656 304.265625 304.980469 304.265625 C 304.863281 304.265625 304.769531 304.359375 304.769531 304.476562 C 304.769531 304.59375 304.863281 304.6875 304.980469 304.6875 C 305.097656 304.6875 305.191406 304.59375 305.191406 304.476562 Z M 305.191406 304.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.90625 307.453125 C 303.90625 307.335938 303.8125 307.242188 303.695312 307.242188 C 303.578125 307.242188 303.484375 307.335938 303.484375 307.453125 C 303.484375 307.570312 303.578125 307.664062 303.695312 307.664062 C 303.8125 307.664062 303.90625 307.570312 303.90625 307.453125 Z M 303.90625 307.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.386719 304.828125 C 307.386719 304.710938 307.292969 304.617188 307.175781 304.617188 C 307.058594 304.617188 306.964844 304.710938 306.964844 304.828125 C 306.964844 304.945312 307.058594 305.039062 307.175781 305.039062 C 307.292969 305.039062 307.386719 304.945312 307.386719 304.828125 Z M 307.386719 304.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.882812 305.472656 C 306.882812 305.355469 306.789062 305.261719 306.671875 305.261719 C 306.554688 305.261719 306.460938 305.355469 306.460938 305.472656 C 306.460938 305.589844 306.554688 305.683594 306.671875 305.683594 C 306.789062 305.683594 306.882812 305.589844 306.882812 305.472656 Z M 306.882812 305.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.730469 307.410156 C 307.730469 307.292969 307.636719 307.199219 307.519531 307.199219 C 307.402344 307.199219 307.308594 307.292969 307.308594 307.410156 C 307.308594 307.527344 307.402344 307.621094 307.519531 307.621094 C 307.636719 307.621094 307.730469 307.527344 307.730469 307.410156 Z M 307.730469 307.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.679688 306.226562 C 307.679688 306.109375 307.585938 306.015625 307.46875 306.015625 C 307.351562 306.015625 307.257812 306.109375 307.257812 306.226562 C 307.257812 306.34375 307.351562 306.4375 307.46875 306.4375 C 307.585938 306.4375 307.679688 306.34375 307.679688 306.226562 Z M 307.679688 306.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.804688 306.996094 C 307.804688 306.878906 307.710938 306.785156 307.59375 306.785156 C 307.476562 306.785156 307.382812 306.878906 307.382812 306.996094 C 307.382812 307.113281 307.476562 307.207031 307.59375 307.207031 C 307.710938 307.207031 307.804688 307.113281 307.804688 306.996094 Z M 307.804688 306.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.050781 308.304688 C 304.050781 308.1875 303.957031 308.09375 303.839844 308.09375 C 303.722656 308.09375 303.628906 308.1875 303.628906 308.304688 C 303.628906 308.421875 303.722656 308.515625 303.839844 308.515625 C 303.957031 308.515625 304.050781 308.421875 304.050781 308.304688 Z M 304.050781 308.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.429688 309.394531 C 301.429688 309.277344 301.335938 309.183594 301.21875 309.183594 C 301.101562 309.183594 301.007812 309.277344 301.007812 309.394531 C 301.007812 309.511719 301.101562 309.605469 301.21875 309.605469 C 301.335938 309.605469 301.429688 309.511719 301.429688 309.394531 Z M 301.429688 309.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.613281 309.144531 C 303.613281 309.027344 303.519531 308.933594 303.402344 308.933594 C 303.285156 308.933594 303.191406 309.027344 303.191406 309.144531 C 303.191406 309.261719 303.285156 309.355469 303.402344 309.355469 C 303.519531 309.355469 303.613281 309.261719 303.613281 309.144531 Z M 303.613281 309.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.117188 309.882812 C 301.117188 309.765625 301.023438 309.671875 300.90625 309.671875 C 300.789062 309.671875 300.695312 309.765625 300.695312 309.882812 C 300.695312 310 300.789062 310.09375 300.90625 310.09375 C 301.023438 310.09375 301.117188 310 301.117188 309.882812 Z M 301.117188 309.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.042969 309.9375 C 301.042969 309.820312 300.949219 309.726562 300.832031 309.726562 C 300.714844 309.726562 300.621094 309.820312 300.621094 309.9375 C 300.621094 310.054688 300.714844 310.148438 300.832031 310.148438 C 300.949219 310.148438 301.042969 310.054688 301.042969 309.9375 Z M 301.042969 309.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.566406 312.554688 C 299.566406 312.4375 299.472656 312.34375 299.355469 312.34375 C 299.238281 312.34375 299.144531 312.4375 299.144531 312.554688 C 299.144531 312.671875 299.238281 312.765625 299.355469 312.765625 C 299.472656 312.765625 299.566406 312.671875 299.566406 312.554688 Z M 299.566406 312.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.429688 307.796875 C 301.429688 307.679688 301.335938 307.585938 301.21875 307.585938 C 301.101562 307.585938 301.007812 307.679688 301.007812 307.796875 C 301.007812 307.914062 301.101562 308.007812 301.21875 308.007812 C 301.335938 308.007812 301.429688 307.914062 301.429688 307.796875 Z M 301.429688 307.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.492188 307.609375 C 299.492188 307.492188 299.398438 307.398438 299.28125 307.398438 C 299.164062 307.398438 299.070312 307.492188 299.070312 307.609375 C 299.070312 307.726562 299.164062 307.820312 299.28125 307.820312 C 299.398438 307.820312 299.492188 307.726562 299.492188 307.609375 Z M 299.492188 307.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.992188 311.78125 C 298.992188 311.664062 298.898438 311.570312 298.78125 311.570312 C 298.664062 311.570312 298.570312 311.664062 298.570312 311.78125 C 298.570312 311.898438 298.664062 311.992188 298.78125 311.992188 C 298.898438 311.992188 298.992188 311.898438 298.992188 311.78125 Z M 298.992188 311.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.101562 311.300781 C 299.101562 311.183594 299.007812 311.089844 298.890625 311.089844 C 298.773438 311.089844 298.679688 311.183594 298.679688 311.300781 C 298.679688 311.417969 298.773438 311.511719 298.890625 311.511719 C 299.007812 311.511719 299.101562 311.417969 299.101562 311.300781 Z M 299.101562 311.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.148438 308.601562 C 298.148438 308.484375 298.054688 308.390625 297.9375 308.390625 C 297.820312 308.390625 297.726562 308.484375 297.726562 308.601562 C 297.726562 308.71875 297.820312 308.8125 297.9375 308.8125 C 298.054688 308.8125 298.148438 308.71875 298.148438 308.601562 Z M 298.148438 308.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.398438 310.496094 C 296.398438 310.378906 296.304688 310.285156 296.1875 310.285156 C 296.070312 310.285156 295.976562 310.378906 295.976562 310.496094 C 295.976562 310.613281 296.070312 310.707031 296.1875 310.707031 C 296.304688 310.707031 296.398438 310.613281 296.398438 310.496094 Z M 296.398438 310.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.347656 309.503906 C 296.347656 309.386719 296.253906 309.292969 296.136719 309.292969 C 296.019531 309.292969 295.925781 309.386719 295.925781 309.503906 C 295.925781 309.621094 296.019531 309.714844 296.136719 309.714844 C 296.253906 309.714844 296.347656 309.621094 296.347656 309.503906 Z M 296.347656 309.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.996094 311.105469 C 298.996094 310.988281 298.902344 310.894531 298.785156 310.894531 C 298.667969 310.894531 298.574219 310.988281 298.574219 311.105469 C 298.574219 311.222656 298.667969 311.316406 298.785156 311.316406 C 298.902344 311.316406 298.996094 311.222656 298.996094 311.105469 Z M 298.996094 311.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.054688 311.113281 C 299.054688 310.996094 298.960938 310.902344 298.84375 310.902344 C 298.726562 310.902344 298.632812 310.996094 298.632812 311.113281 C 298.632812 311.230469 298.726562 311.324219 298.84375 311.324219 C 298.960938 311.324219 299.054688 311.230469 299.054688 311.113281 Z M 299.054688 311.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.101562 313.816406 C 297.101562 313.699219 297.007812 313.605469 296.890625 313.605469 C 296.773438 313.605469 296.679688 313.699219 296.679688 313.816406 C 296.679688 313.933594 296.773438 314.027344 296.890625 314.027344 C 297.007812 314.027344 297.101562 313.933594 297.101562 313.816406 Z M 297.101562 313.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.488281 314.515625 C 298.488281 314.398438 298.394531 314.304688 298.277344 314.304688 C 298.160156 314.304688 298.066406 314.398438 298.066406 314.515625 C 298.066406 314.632812 298.160156 314.726562 298.277344 314.726562 C 298.394531 314.726562 298.488281 314.632812 298.488281 314.515625 Z M 298.488281 314.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.496094 311.738281 C 297.496094 311.621094 297.402344 311.527344 297.285156 311.527344 C 297.167969 311.527344 297.074219 311.621094 297.074219 311.738281 C 297.074219 311.855469 297.167969 311.949219 297.285156 311.949219 C 297.402344 311.949219 297.496094 311.855469 297.496094 311.738281 Z M 297.496094 311.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.328125 312.167969 C 295.328125 312.050781 295.234375 311.957031 295.117188 311.957031 C 295 311.957031 294.90625 312.050781 294.90625 312.167969 C 294.90625 312.285156 295 312.378906 295.117188 312.378906 C 295.234375 312.378906 295.328125 312.285156 295.328125 312.167969 Z M 295.328125 312.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.898438 311.15625 C 294.898438 311.039062 294.804688 310.945312 294.6875 310.945312 C 294.570312 310.945312 294.476562 311.039062 294.476562 311.15625 C 294.476562 311.273438 294.570312 311.367188 294.6875 311.367188 C 294.804688 311.367188 294.898438 311.273438 294.898438 311.15625 Z M 294.898438 311.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.675781 308.351562 C 296.675781 308.234375 296.582031 308.140625 296.464844 308.140625 C 296.347656 308.140625 296.253906 308.234375 296.253906 308.351562 C 296.253906 308.46875 296.347656 308.5625 296.464844 308.5625 C 296.582031 308.5625 296.675781 308.46875 296.675781 308.351562 Z M 296.675781 308.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.238281 305.257812 C 296.238281 305.140625 296.144531 305.046875 296.027344 305.046875 C 295.910156 305.046875 295.816406 305.140625 295.816406 305.257812 C 295.816406 305.375 295.910156 305.46875 296.027344 305.46875 C 296.144531 305.46875 296.238281 305.375 296.238281 305.257812 Z M 296.238281 305.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.152344 307.140625 C 296.152344 307.023438 296.058594 306.929688 295.941406 306.929688 C 295.824219 306.929688 295.730469 307.023438 295.730469 307.140625 C 295.730469 307.257812 295.824219 307.351562 295.941406 307.351562 C 296.058594 307.351562 296.152344 307.257812 296.152344 307.140625 Z M 296.152344 307.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.785156 304.683594 C 293.785156 304.566406 293.691406 304.472656 293.574219 304.472656 C 293.457031 304.472656 293.363281 304.566406 293.363281 304.683594 C 293.363281 304.800781 293.457031 304.894531 293.574219 304.894531 C 293.691406 304.894531 293.785156 304.800781 293.785156 304.683594 Z M 293.785156 304.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.878906 303.214844 C 291.878906 303.097656 291.785156 303.003906 291.667969 303.003906 C 291.550781 303.003906 291.457031 303.097656 291.457031 303.214844 C 291.457031 303.332031 291.550781 303.425781 291.667969 303.425781 C 291.785156 303.425781 291.878906 303.332031 291.878906 303.214844 Z M 291.878906 303.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.84375 303.738281 C 292.84375 303.621094 292.75 303.527344 292.632812 303.527344 C 292.515625 303.527344 292.421875 303.621094 292.421875 303.738281 C 292.421875 303.855469 292.515625 303.949219 292.632812 303.949219 C 292.75 303.949219 292.84375 303.855469 292.84375 303.738281 Z M 292.84375 303.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.410156 303.265625 C 295.410156 303.148438 295.316406 303.054688 295.199219 303.054688 C 295.082031 303.054688 294.988281 303.148438 294.988281 303.265625 C 294.988281 303.382812 295.082031 303.476562 295.199219 303.476562 C 295.316406 303.476562 295.410156 303.382812 295.410156 303.265625 Z M 295.410156 303.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.40625 307.179688 C 295.40625 307.0625 295.3125 306.96875 295.195312 306.96875 C 295.078125 306.96875 294.984375 307.0625 294.984375 307.179688 C 294.984375 307.296875 295.078125 307.390625 295.195312 307.390625 C 295.3125 307.390625 295.40625 307.296875 295.40625 307.179688 Z M 295.40625 307.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.984375 305.394531 C 296.984375 305.277344 296.890625 305.183594 296.773438 305.183594 C 296.65625 305.183594 296.5625 305.277344 296.5625 305.394531 C 296.5625 305.511719 296.65625 305.605469 296.773438 305.605469 C 296.890625 305.605469 296.984375 305.511719 296.984375 305.394531 Z M 296.984375 305.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.003906 304.773438 C 294.003906 304.65625 293.910156 304.5625 293.792969 304.5625 C 293.675781 304.5625 293.582031 304.65625 293.582031 304.773438 C 293.582031 304.890625 293.675781 304.984375 293.792969 304.984375 C 293.910156 304.984375 294.003906 304.890625 294.003906 304.773438 Z M 294.003906 304.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.03125 305.496094 C 295.03125 305.378906 294.9375 305.285156 294.820312 305.285156 C 294.703125 305.285156 294.609375 305.378906 294.609375 305.496094 C 294.609375 305.613281 294.703125 305.707031 294.820312 305.707031 C 294.9375 305.707031 295.03125 305.613281 295.03125 305.496094 Z M 295.03125 305.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.179688 306.714844 C 292.179688 306.597656 292.085938 306.503906 291.96875 306.503906 C 291.851562 306.503906 291.757812 306.597656 291.757812 306.714844 C 291.757812 306.832031 291.851562 306.925781 291.96875 306.925781 C 292.085938 306.925781 292.179688 306.832031 292.179688 306.714844 Z M 292.179688 306.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.839844 307.246094 C 293.839844 307.128906 293.746094 307.035156 293.628906 307.035156 C 293.511719 307.035156 293.417969 307.128906 293.417969 307.246094 C 293.417969 307.363281 293.511719 307.457031 293.628906 307.457031 C 293.746094 307.457031 293.839844 307.363281 293.839844 307.246094 Z M 293.839844 307.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.214844 306.742188 C 293.214844 306.625 293.121094 306.53125 293.003906 306.53125 C 292.886719 306.53125 292.792969 306.625 292.792969 306.742188 C 292.792969 306.859375 292.886719 306.953125 293.003906 306.953125 C 293.121094 306.953125 293.214844 306.859375 293.214844 306.742188 Z M 293.214844 306.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.207031 309.0625 C 296.207031 308.945312 296.113281 308.851562 295.996094 308.851562 C 295.878906 308.851562 295.785156 308.945312 295.785156 309.0625 C 295.785156 309.179688 295.878906 309.273438 295.996094 309.273438 C 296.113281 309.273438 296.207031 309.179688 296.207031 309.0625 Z M 296.207031 309.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.636719 306.988281 C 297.636719 306.871094 297.542969 306.777344 297.425781 306.777344 C 297.308594 306.777344 297.214844 306.871094 297.214844 306.988281 C 297.214844 307.105469 297.308594 307.199219 297.425781 307.199219 C 297.542969 307.199219 297.636719 307.105469 297.636719 306.988281 Z M 297.636719 306.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.023438 307.3125 C 297.023438 307.195312 296.929688 307.101562 296.8125 307.101562 C 296.695312 307.101562 296.601562 307.195312 296.601562 307.3125 C 296.601562 307.429688 296.695312 307.523438 296.8125 307.523438 C 296.929688 307.523438 297.023438 307.429688 297.023438 307.3125 Z M 297.023438 307.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.992188 308.054688 C 296.992188 307.9375 296.898438 307.84375 296.78125 307.84375 C 296.664062 307.84375 296.570312 307.9375 296.570312 308.054688 C 296.570312 308.171875 296.664062 308.265625 296.78125 308.265625 C 296.898438 308.265625 296.992188 308.171875 296.992188 308.054688 Z M 296.992188 308.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.433594 308.246094 C 297.433594 308.128906 297.339844 308.035156 297.222656 308.035156 C 297.105469 308.035156 297.011719 308.128906 297.011719 308.246094 C 297.011719 308.363281 297.105469 308.457031 297.222656 308.457031 C 297.339844 308.457031 297.433594 308.363281 297.433594 308.246094 Z M 297.433594 308.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.335938 306.300781 C 299.335938 306.183594 299.242188 306.089844 299.125 306.089844 C 299.007812 306.089844 298.914062 306.183594 298.914062 306.300781 C 298.914062 306.417969 299.007812 306.511719 299.125 306.511719 C 299.242188 306.511719 299.335938 306.417969 299.335938 306.300781 Z M 299.335938 306.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.980469 306.078125 C 300.980469 305.960938 300.886719 305.867188 300.769531 305.867188 C 300.652344 305.867188 300.558594 305.960938 300.558594 306.078125 C 300.558594 306.195312 300.652344 306.289062 300.769531 306.289062 C 300.886719 306.289062 300.980469 306.195312 300.980469 306.078125 Z M 300.980469 306.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.898438 303.757812 C 301.898438 303.640625 301.804688 303.546875 301.6875 303.546875 C 301.570312 303.546875 301.476562 303.640625 301.476562 303.757812 C 301.476562 303.875 301.570312 303.96875 301.6875 303.96875 C 301.804688 303.96875 301.898438 303.875 301.898438 303.757812 Z M 301.898438 303.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.675781 302.03125 C 302.675781 301.914062 302.582031 301.820312 302.464844 301.820312 C 302.347656 301.820312 302.253906 301.914062 302.253906 302.03125 C 302.253906 302.148438 302.347656 302.242188 302.464844 302.242188 C 302.582031 302.242188 302.675781 302.148438 302.675781 302.03125 Z M 302.675781 302.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.386719 300.8125 C 304.386719 300.695312 304.292969 300.601562 304.175781 300.601562 C 304.058594 300.601562 303.964844 300.695312 303.964844 300.8125 C 303.964844 300.929688 304.058594 301.023438 304.175781 301.023438 C 304.292969 301.023438 304.386719 300.929688 304.386719 300.8125 Z M 304.386719 300.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.007812 301.109375 C 296.007812 300.992188 295.914062 300.898438 295.796875 300.898438 C 295.679688 300.898438 295.585938 300.992188 295.585938 301.109375 C 295.585938 301.226562 295.679688 301.320312 295.796875 301.320312 C 295.914062 301.320312 296.007812 301.226562 296.007812 301.109375 Z M 296.007812 301.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.957031 300.015625 C 293.957031 299.898438 293.863281 299.804688 293.746094 299.804688 C 293.628906 299.804688 293.535156 299.898438 293.535156 300.015625 C 293.535156 300.132812 293.628906 300.226562 293.746094 300.226562 C 293.863281 300.226562 293.957031 300.132812 293.957031 300.015625 Z M 293.957031 300.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.421875 299.457031 C 291.421875 299.339844 291.328125 299.246094 291.210938 299.246094 C 291.09375 299.246094 291 299.339844 291 299.457031 C 291 299.574219 291.09375 299.667969 291.210938 299.667969 C 291.328125 299.667969 291.421875 299.574219 291.421875 299.457031 Z M 291.421875 299.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.257812 298.648438 C 289.257812 298.53125 289.164062 298.4375 289.046875 298.4375 C 288.929688 298.4375 288.835938 298.53125 288.835938 298.648438 C 288.835938 298.765625 288.929688 298.859375 289.046875 298.859375 C 289.164062 298.859375 289.257812 298.765625 289.257812 298.648438 Z M 289.257812 298.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.492188 295.238281 C 291.492188 295.121094 291.398438 295.027344 291.28125 295.027344 C 291.164062 295.027344 291.070312 295.121094 291.070312 295.238281 C 291.070312 295.355469 291.164062 295.449219 291.28125 295.449219 C 291.398438 295.449219 291.492188 295.355469 291.492188 295.238281 Z M 291.492188 295.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.304688 292.210938 C 290.304688 292.09375 290.210938 292 290.09375 292 C 289.976562 292 289.882812 292.09375 289.882812 292.210938 C 289.882812 292.328125 289.976562 292.421875 290.09375 292.421875 C 290.210938 292.421875 290.304688 292.328125 290.304688 292.210938 Z M 290.304688 292.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.28125 288.175781 C 287.28125 288.058594 287.1875 287.964844 287.070312 287.964844 C 286.953125 287.964844 286.859375 288.058594 286.859375 288.175781 C 286.859375 288.292969 286.953125 288.386719 287.070312 288.386719 C 287.1875 288.386719 287.28125 288.292969 287.28125 288.175781 Z M 287.28125 288.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.964844 287.214844 C 283.964844 287.097656 283.871094 287.003906 283.753906 287.003906 C 283.636719 287.003906 283.542969 287.097656 283.542969 287.214844 C 283.542969 287.332031 283.636719 287.425781 283.753906 287.425781 C 283.871094 287.425781 283.964844 287.332031 283.964844 287.214844 Z M 283.964844 287.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.949219 286.484375 C 282.949219 286.367188 282.855469 286.273438 282.738281 286.273438 C 282.621094 286.273438 282.527344 286.367188 282.527344 286.484375 C 282.527344 286.601562 282.621094 286.695312 282.738281 286.695312 C 282.855469 286.695312 282.949219 286.601562 282.949219 286.484375 Z M 282.949219 286.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.640625 283.875 C 279.640625 283.757812 279.546875 283.664062 279.429688 283.664062 C 279.3125 283.664062 279.21875 283.757812 279.21875 283.875 C 279.21875 283.992188 279.3125 284.085938 279.429688 284.085938 C 279.546875 284.085938 279.640625 283.992188 279.640625 283.875 Z M 279.640625 283.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.132812 280.472656 C 282.132812 280.355469 282.039062 280.261719 281.921875 280.261719 C 281.804688 280.261719 281.710938 280.355469 281.710938 280.472656 C 281.710938 280.589844 281.804688 280.683594 281.921875 280.683594 C 282.039062 280.683594 282.132812 280.589844 282.132812 280.472656 Z M 282.132812 280.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.246094 275.113281 C 281.246094 274.996094 281.152344 274.902344 281.035156 274.902344 C 280.917969 274.902344 280.824219 274.996094 280.824219 275.113281 C 280.824219 275.230469 280.917969 275.324219 281.035156 275.324219 C 281.152344 275.324219 281.246094 275.230469 281.246094 275.113281 Z M 281.246094 275.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.140625 276.519531 C 282.140625 276.402344 282.046875 276.308594 281.929688 276.308594 C 281.8125 276.308594 281.71875 276.402344 281.71875 276.519531 C 281.71875 276.636719 281.8125 276.730469 281.929688 276.730469 C 282.046875 276.730469 282.140625 276.636719 282.140625 276.519531 Z M 282.140625 276.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.210938 278.4375 C 282.210938 278.320312 282.117188 278.226562 282 278.226562 C 281.882812 278.226562 281.789062 278.320312 281.789062 278.4375 C 281.789062 278.554688 281.882812 278.648438 282 278.648438 C 282.117188 278.648438 282.210938 278.554688 282.210938 278.4375 Z M 282.210938 278.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.15625 281.285156 C 281.15625 281.167969 281.0625 281.074219 280.945312 281.074219 C 280.828125 281.074219 280.734375 281.167969 280.734375 281.285156 C 280.734375 281.402344 280.828125 281.496094 280.945312 281.496094 C 281.0625 281.496094 281.15625 281.402344 281.15625 281.285156 Z M 281.15625 281.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.894531 278.507812 C 283.894531 278.390625 283.800781 278.296875 283.683594 278.296875 C 283.566406 278.296875 283.472656 278.390625 283.472656 278.507812 C 283.472656 278.625 283.566406 278.71875 283.683594 278.71875 C 283.800781 278.71875 283.894531 278.625 283.894531 278.507812 Z M 283.894531 278.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.1875 277.191406 C 287.1875 277.074219 287.09375 276.980469 286.976562 276.980469 C 286.859375 276.980469 286.765625 277.074219 286.765625 277.191406 C 286.765625 277.308594 286.859375 277.402344 286.976562 277.402344 C 287.09375 277.402344 287.1875 277.308594 287.1875 277.191406 Z M 287.1875 277.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.085938 277.269531 C 288.085938 277.152344 287.992188 277.058594 287.875 277.058594 C 287.757812 277.058594 287.664062 277.152344 287.664062 277.269531 C 287.664062 277.386719 287.757812 277.480469 287.875 277.480469 C 287.992188 277.480469 288.085938 277.386719 288.085938 277.269531 Z M 288.085938 277.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.421875 279.917969 C 288.421875 279.800781 288.328125 279.707031 288.210938 279.707031 C 288.09375 279.707031 288 279.800781 288 279.917969 C 288 280.035156 288.09375 280.128906 288.210938 280.128906 C 288.328125 280.128906 288.421875 280.035156 288.421875 279.917969 Z M 288.421875 279.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.609375 278.789062 C 288.609375 278.671875 288.515625 278.578125 288.398438 278.578125 C 288.28125 278.578125 288.1875 278.671875 288.1875 278.789062 C 288.1875 278.90625 288.28125 279 288.398438 279 C 288.515625 279 288.609375 278.90625 288.609375 278.789062 Z M 288.609375 278.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.671875 276.984375 C 286.671875 276.867188 286.578125 276.773438 286.460938 276.773438 C 286.34375 276.773438 286.25 276.867188 286.25 276.984375 C 286.25 277.101562 286.34375 277.195312 286.460938 277.195312 C 286.578125 277.195312 286.671875 277.101562 286.671875 276.984375 Z M 286.671875 276.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.476562 276.355469 C 285.476562 276.238281 285.382812 276.144531 285.265625 276.144531 C 285.148438 276.144531 285.054688 276.238281 285.054688 276.355469 C 285.054688 276.472656 285.148438 276.566406 285.265625 276.566406 C 285.382812 276.566406 285.476562 276.472656 285.476562 276.355469 Z M 285.476562 276.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.191406 275.886719 C 284.191406 275.769531 284.097656 275.675781 283.980469 275.675781 C 283.863281 275.675781 283.769531 275.769531 283.769531 275.886719 C 283.769531 276.003906 283.863281 276.097656 283.980469 276.097656 C 284.097656 276.097656 284.191406 276.003906 284.191406 275.886719 Z M 284.191406 275.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.339844 275.917969 C 286.339844 275.800781 286.246094 275.707031 286.128906 275.707031 C 286.011719 275.707031 285.917969 275.800781 285.917969 275.917969 C 285.917969 276.035156 286.011719 276.128906 286.128906 276.128906 C 286.246094 276.128906 286.339844 276.035156 286.339844 275.917969 Z M 286.339844 275.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.003906 277.03125 C 286.003906 276.914062 285.910156 276.820312 285.792969 276.820312 C 285.675781 276.820312 285.582031 276.914062 285.582031 277.03125 C 285.582031 277.148438 285.675781 277.242188 285.792969 277.242188 C 285.910156 277.242188 286.003906 277.148438 286.003906 277.03125 Z M 286.003906 277.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.910156 275.15625 C 281.910156 275.039062 281.816406 274.945312 281.699219 274.945312 C 281.582031 274.945312 281.488281 275.039062 281.488281 275.15625 C 281.488281 275.273438 281.582031 275.367188 281.699219 275.367188 C 281.816406 275.367188 281.910156 275.273438 281.910156 275.15625 Z M 281.910156 275.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.398438 271.9375 C 283.398438 271.820312 283.304688 271.726562 283.1875 271.726562 C 283.070312 271.726562 282.976562 271.820312 282.976562 271.9375 C 282.976562 272.054688 283.070312 272.148438 283.1875 272.148438 C 283.304688 272.148438 283.398438 272.054688 283.398438 271.9375 Z M 283.398438 271.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.097656 269.242188 C 286.097656 269.125 286.003906 269.03125 285.886719 269.03125 C 285.769531 269.03125 285.675781 269.125 285.675781 269.242188 C 285.675781 269.359375 285.769531 269.453125 285.886719 269.453125 C 286.003906 269.453125 286.097656 269.359375 286.097656 269.242188 Z M 286.097656 269.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.9375 267.769531 C 284.9375 267.652344 284.84375 267.558594 284.726562 267.558594 C 284.609375 267.558594 284.515625 267.652344 284.515625 267.769531 C 284.515625 267.886719 284.609375 267.980469 284.726562 267.980469 C 284.84375 267.980469 284.9375 267.886719 284.9375 267.769531 Z M 284.9375 267.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.289062 269.855469 C 284.289062 269.738281 284.195312 269.644531 284.078125 269.644531 C 283.960938 269.644531 283.867188 269.738281 283.867188 269.855469 C 283.867188 269.972656 283.960938 270.066406 284.078125 270.066406 C 284.195312 270.066406 284.289062 269.972656 284.289062 269.855469 Z M 284.289062 269.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.273438 269.941406 C 286.273438 269.824219 286.179688 269.730469 286.0625 269.730469 C 285.945312 269.730469 285.851562 269.824219 285.851562 269.941406 C 285.851562 270.058594 285.945312 270.152344 286.0625 270.152344 C 286.179688 270.152344 286.273438 270.058594 286.273438 269.941406 Z M 286.273438 269.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.242188 268.738281 C 287.242188 268.621094 287.148438 268.527344 287.03125 268.527344 C 286.914062 268.527344 286.820312 268.621094 286.820312 268.738281 C 286.820312 268.855469 286.914062 268.949219 287.03125 268.949219 C 287.148438 268.949219 287.242188 268.855469 287.242188 268.738281 Z M 287.242188 268.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.847656 266.789062 C 285.847656 266.671875 285.753906 266.578125 285.636719 266.578125 C 285.519531 266.578125 285.425781 266.671875 285.425781 266.789062 C 285.425781 266.90625 285.519531 267 285.636719 267 C 285.753906 267 285.847656 266.90625 285.847656 266.789062 Z M 285.847656 266.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.335938 266.835938 C 286.335938 266.71875 286.242188 266.625 286.125 266.625 C 286.007812 266.625 285.914062 266.71875 285.914062 266.835938 C 285.914062 266.953125 286.007812 267.046875 286.125 267.046875 C 286.242188 267.046875 286.335938 266.953125 286.335938 266.835938 Z M 286.335938 266.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.386719 267.222656 C 288.386719 267.105469 288.292969 267.011719 288.175781 267.011719 C 288.058594 267.011719 287.964844 267.105469 287.964844 267.222656 C 287.964844 267.339844 288.058594 267.433594 288.175781 267.433594 C 288.292969 267.433594 288.386719 267.339844 288.386719 267.222656 Z M 288.386719 267.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.464844 263.996094 C 287.464844 263.878906 287.371094 263.785156 287.253906 263.785156 C 287.136719 263.785156 287.042969 263.878906 287.042969 263.996094 C 287.042969 264.113281 287.136719 264.207031 287.253906 264.207031 C 287.371094 264.207031 287.464844 264.113281 287.464844 263.996094 Z M 287.464844 263.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.425781 264.257812 C 287.425781 264.140625 287.332031 264.046875 287.214844 264.046875 C 287.097656 264.046875 287.003906 264.140625 287.003906 264.257812 C 287.003906 264.375 287.097656 264.46875 287.214844 264.46875 C 287.332031 264.46875 287.425781 264.375 287.425781 264.257812 Z M 287.425781 264.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.367188 266.359375 C 287.367188 266.242188 287.273438 266.148438 287.15625 266.148438 C 287.039062 266.148438 286.945312 266.242188 286.945312 266.359375 C 286.945312 266.476562 287.039062 266.570312 287.15625 266.570312 C 287.273438 266.570312 287.367188 266.476562 287.367188 266.359375 Z M 287.367188 266.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.988281 269.441406 C 287.988281 269.324219 287.894531 269.230469 287.777344 269.230469 C 287.660156 269.230469 287.566406 269.324219 287.566406 269.441406 C 287.566406 269.558594 287.660156 269.652344 287.777344 269.652344 C 287.894531 269.652344 287.988281 269.558594 287.988281 269.441406 Z M 287.988281 269.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.707031 269.226562 C 284.707031 269.109375 284.613281 269.015625 284.496094 269.015625 C 284.378906 269.015625 284.285156 269.109375 284.285156 269.226562 C 284.285156 269.34375 284.378906 269.4375 284.496094 269.4375 C 284.613281 269.4375 284.707031 269.34375 284.707031 269.226562 Z M 284.707031 269.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.804688 270.042969 C 288.804688 269.925781 288.710938 269.832031 288.59375 269.832031 C 288.476562 269.832031 288.382812 269.925781 288.382812 270.042969 C 288.382812 270.160156 288.476562 270.253906 288.59375 270.253906 C 288.710938 270.253906 288.804688 270.160156 288.804688 270.042969 Z M 288.804688 270.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.6875 269.8125 C 286.6875 269.695312 286.59375 269.601562 286.476562 269.601562 C 286.359375 269.601562 286.265625 269.695312 286.265625 269.8125 C 286.265625 269.929688 286.359375 270.023438 286.476562 270.023438 C 286.59375 270.023438 286.6875 269.929688 286.6875 269.8125 Z M 286.6875 269.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.300781 269.707031 C 289.300781 269.589844 289.207031 269.496094 289.089844 269.496094 C 288.972656 269.496094 288.878906 269.589844 288.878906 269.707031 C 288.878906 269.824219 288.972656 269.917969 289.089844 269.917969 C 289.207031 269.917969 289.300781 269.824219 289.300781 269.707031 Z M 289.300781 269.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.894531 273.265625 C 293.894531 273.148438 293.800781 273.054688 293.683594 273.054688 C 293.566406 273.054688 293.472656 273.148438 293.472656 273.265625 C 293.472656 273.382812 293.566406 273.476562 293.683594 273.476562 C 293.800781 273.476562 293.894531 273.382812 293.894531 273.265625 Z M 293.894531 273.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.5 274.679688 C 296.5 274.5625 296.40625 274.46875 296.289062 274.46875 C 296.171875 274.46875 296.078125 274.5625 296.078125 274.679688 C 296.078125 274.796875 296.171875 274.890625 296.289062 274.890625 C 296.40625 274.890625 296.5 274.796875 296.5 274.679688 Z M 296.5 274.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.09375 277.101562 C 295.09375 276.984375 295 276.890625 294.882812 276.890625 C 294.765625 276.890625 294.671875 276.984375 294.671875 277.101562 C 294.671875 277.21875 294.765625 277.3125 294.882812 277.3125 C 295 277.3125 295.09375 277.21875 295.09375 277.101562 Z M 295.09375 277.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.398438 280.269531 C 292.398438 280.152344 292.304688 280.058594 292.1875 280.058594 C 292.070312 280.058594 291.976562 280.152344 291.976562 280.269531 C 291.976562 280.386719 292.070312 280.480469 292.1875 280.480469 C 292.304688 280.480469 292.398438 280.386719 292.398438 280.269531 Z M 292.398438 280.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.167969 277.199219 C 289.167969 277.082031 289.074219 276.988281 288.957031 276.988281 C 288.839844 276.988281 288.746094 277.082031 288.746094 277.199219 C 288.746094 277.316406 288.839844 277.410156 288.957031 277.410156 C 289.074219 277.410156 289.167969 277.316406 289.167969 277.199219 Z M 289.167969 277.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.433594 278.480469 C 291.433594 278.363281 291.339844 278.269531 291.222656 278.269531 C 291.105469 278.269531 291.011719 278.363281 291.011719 278.480469 C 291.011719 278.597656 291.105469 278.691406 291.222656 278.691406 C 291.339844 278.691406 291.433594 278.597656 291.433594 278.480469 Z M 291.433594 278.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.847656 277.523438 C 289.847656 277.40625 289.753906 277.3125 289.636719 277.3125 C 289.519531 277.3125 289.425781 277.40625 289.425781 277.523438 C 289.425781 277.640625 289.519531 277.734375 289.636719 277.734375 C 289.753906 277.734375 289.847656 277.640625 289.847656 277.523438 Z M 289.847656 277.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.730469 278.578125 C 289.730469 278.460938 289.636719 278.367188 289.519531 278.367188 C 289.402344 278.367188 289.308594 278.460938 289.308594 278.578125 C 289.308594 278.695312 289.402344 278.789062 289.519531 278.789062 C 289.636719 278.789062 289.730469 278.695312 289.730469 278.578125 Z M 289.730469 278.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.363281 277.085938 C 289.363281 276.96875 289.269531 276.875 289.152344 276.875 C 289.035156 276.875 288.941406 276.96875 288.941406 277.085938 C 288.941406 277.203125 289.035156 277.296875 289.152344 277.296875 C 289.269531 277.296875 289.363281 277.203125 289.363281 277.085938 Z M 289.363281 277.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.117188 277.601562 C 292.117188 277.484375 292.023438 277.390625 291.90625 277.390625 C 291.789062 277.390625 291.695312 277.484375 291.695312 277.601562 C 291.695312 277.71875 291.789062 277.8125 291.90625 277.8125 C 292.023438 277.8125 292.117188 277.71875 292.117188 277.601562 Z M 292.117188 277.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.996094 274.9375 C 295.996094 274.820312 295.902344 274.726562 295.785156 274.726562 C 295.667969 274.726562 295.574219 274.820312 295.574219 274.9375 C 295.574219 275.054688 295.667969 275.148438 295.785156 275.148438 C 295.902344 275.148438 295.996094 275.054688 295.996094 274.9375 Z M 295.996094 274.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.761719 274.171875 C 298.761719 274.054688 298.667969 273.960938 298.550781 273.960938 C 298.433594 273.960938 298.339844 274.054688 298.339844 274.171875 C 298.339844 274.289062 298.433594 274.382812 298.550781 274.382812 C 298.667969 274.382812 298.761719 274.289062 298.761719 274.171875 Z M 298.761719 274.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.089844 274.992188 C 296.089844 274.875 295.996094 274.78125 295.878906 274.78125 C 295.761719 274.78125 295.667969 274.875 295.667969 274.992188 C 295.667969 275.109375 295.761719 275.203125 295.878906 275.203125 C 295.996094 275.203125 296.089844 275.109375 296.089844 274.992188 Z M 296.089844 274.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.265625 279.660156 C 290.265625 279.542969 290.171875 279.449219 290.054688 279.449219 C 289.9375 279.449219 289.84375 279.542969 289.84375 279.660156 C 289.84375 279.777344 289.9375 279.871094 290.054688 279.871094 C 290.171875 279.871094 290.265625 279.777344 290.265625 279.660156 Z M 290.265625 279.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.542969 278.644531 C 290.542969 278.527344 290.449219 278.433594 290.332031 278.433594 C 290.214844 278.433594 290.121094 278.527344 290.121094 278.644531 C 290.121094 278.761719 290.214844 278.855469 290.332031 278.855469 C 290.449219 278.855469 290.542969 278.761719 290.542969 278.644531 Z M 290.542969 278.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.847656 278.746094 C 285.847656 278.628906 285.753906 278.535156 285.636719 278.535156 C 285.519531 278.535156 285.425781 278.628906 285.425781 278.746094 C 285.425781 278.863281 285.519531 278.957031 285.636719 278.957031 C 285.753906 278.957031 285.847656 278.863281 285.847656 278.746094 Z M 285.847656 278.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.074219 277.71875 C 284.074219 277.601562 283.980469 277.507812 283.863281 277.507812 C 283.746094 277.507812 283.652344 277.601562 283.652344 277.71875 C 283.652344 277.835938 283.746094 277.929688 283.863281 277.929688 C 283.980469 277.929688 284.074219 277.835938 284.074219 277.71875 Z M 284.074219 277.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.550781 276.433594 C 287.550781 276.316406 287.457031 276.222656 287.339844 276.222656 C 287.222656 276.222656 287.128906 276.316406 287.128906 276.433594 C 287.128906 276.550781 287.222656 276.644531 287.339844 276.644531 C 287.457031 276.644531 287.550781 276.550781 287.550781 276.433594 Z M 287.550781 276.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.042969 276.566406 C 287.042969 276.449219 286.949219 276.355469 286.832031 276.355469 C 286.714844 276.355469 286.621094 276.449219 286.621094 276.566406 C 286.621094 276.683594 286.714844 276.777344 286.832031 276.777344 C 286.949219 276.777344 287.042969 276.683594 287.042969 276.566406 Z M 287.042969 276.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.820312 277.054688 C 289.820312 276.9375 289.726562 276.84375 289.609375 276.84375 C 289.492188 276.84375 289.398438 276.9375 289.398438 277.054688 C 289.398438 277.171875 289.492188 277.265625 289.609375 277.265625 C 289.726562 277.265625 289.820312 277.171875 289.820312 277.054688 Z M 289.820312 277.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.976562 277.847656 C 289.976562 277.730469 289.882812 277.636719 289.765625 277.636719 C 289.648438 277.636719 289.554688 277.730469 289.554688 277.847656 C 289.554688 277.964844 289.648438 278.058594 289.765625 278.058594 C 289.882812 278.058594 289.976562 277.964844 289.976562 277.847656 Z M 289.976562 277.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.4375 277.382812 C 291.4375 277.265625 291.34375 277.171875 291.226562 277.171875 C 291.109375 277.171875 291.015625 277.265625 291.015625 277.382812 C 291.015625 277.5 291.109375 277.59375 291.226562 277.59375 C 291.34375 277.59375 291.4375 277.5 291.4375 277.382812 Z M 291.4375 277.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.972656 276.289062 C 291.972656 276.171875 291.878906 276.078125 291.761719 276.078125 C 291.644531 276.078125 291.550781 276.171875 291.550781 276.289062 C 291.550781 276.40625 291.644531 276.5 291.761719 276.5 C 291.878906 276.5 291.972656 276.40625 291.972656 276.289062 Z M 291.972656 276.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.265625 273.855469 C 294.265625 273.738281 294.171875 273.644531 294.054688 273.644531 C 293.9375 273.644531 293.84375 273.738281 293.84375 273.855469 C 293.84375 273.972656 293.9375 274.066406 294.054688 274.066406 C 294.171875 274.066406 294.265625 273.972656 294.265625 273.855469 Z M 294.265625 273.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.519531 275.488281 C 293.519531 275.371094 293.425781 275.277344 293.308594 275.277344 C 293.191406 275.277344 293.097656 275.371094 293.097656 275.488281 C 293.097656 275.605469 293.191406 275.699219 293.308594 275.699219 C 293.425781 275.699219 293.519531 275.605469 293.519531 275.488281 Z M 293.519531 275.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.960938 275.828125 C 293.960938 275.710938 293.867188 275.617188 293.75 275.617188 C 293.632812 275.617188 293.539062 275.710938 293.539062 275.828125 C 293.539062 275.945312 293.632812 276.039062 293.75 276.039062 C 293.867188 276.039062 293.960938 275.945312 293.960938 275.828125 Z M 293.960938 275.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.21875 278.003906 C 294.21875 277.886719 294.125 277.792969 294.007812 277.792969 C 293.890625 277.792969 293.796875 277.886719 293.796875 278.003906 C 293.796875 278.121094 293.890625 278.214844 294.007812 278.214844 C 294.125 278.214844 294.21875 278.121094 294.21875 278.003906 Z M 294.21875 278.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.125 274.289062 C 294.125 274.171875 294.03125 274.078125 293.914062 274.078125 C 293.796875 274.078125 293.703125 274.171875 293.703125 274.289062 C 293.703125 274.40625 293.796875 274.5 293.914062 274.5 C 294.03125 274.5 294.125 274.40625 294.125 274.289062 Z M 294.125 274.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.921875 274.980469 C 290.921875 274.863281 290.828125 274.769531 290.710938 274.769531 C 290.59375 274.769531 290.5 274.863281 290.5 274.980469 C 290.5 275.097656 290.59375 275.191406 290.710938 275.191406 C 290.828125 275.191406 290.921875 275.097656 290.921875 274.980469 Z M 290.921875 274.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.542969 277.152344 C 293.542969 277.035156 293.449219 276.941406 293.332031 276.941406 C 293.214844 276.941406 293.121094 277.035156 293.121094 277.152344 C 293.121094 277.269531 293.214844 277.363281 293.332031 277.363281 C 293.449219 277.363281 293.542969 277.269531 293.542969 277.152344 Z M 293.542969 277.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.308594 277.675781 C 292.308594 277.558594 292.214844 277.464844 292.097656 277.464844 C 291.980469 277.464844 291.886719 277.558594 291.886719 277.675781 C 291.886719 277.792969 291.980469 277.886719 292.097656 277.886719 C 292.214844 277.886719 292.308594 277.792969 292.308594 277.675781 Z M 292.308594 277.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.945312 277.117188 C 292.945312 277 292.851562 276.90625 292.734375 276.90625 C 292.617188 276.90625 292.523438 277 292.523438 277.117188 C 292.523438 277.234375 292.617188 277.328125 292.734375 277.328125 C 292.851562 277.328125 292.945312 277.234375 292.945312 277.117188 Z M 292.945312 277.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.730469 284.363281 C 287.730469 284.246094 287.636719 284.152344 287.519531 284.152344 C 287.402344 284.152344 287.308594 284.246094 287.308594 284.363281 C 287.308594 284.480469 287.402344 284.574219 287.519531 284.574219 C 287.636719 284.574219 287.730469 284.480469 287.730469 284.363281 Z M 287.730469 284.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.03125 286.507812 C 284.03125 286.390625 283.9375 286.296875 283.820312 286.296875 C 283.703125 286.296875 283.609375 286.390625 283.609375 286.507812 C 283.609375 286.625 283.703125 286.71875 283.820312 286.71875 C 283.9375 286.71875 284.03125 286.625 284.03125 286.507812 Z M 284.03125 286.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.554688 286.109375 C 282.554688 285.992188 282.460938 285.898438 282.34375 285.898438 C 282.226562 285.898438 282.132812 285.992188 282.132812 286.109375 C 282.132812 286.226562 282.226562 286.320312 282.34375 286.320312 C 282.460938 286.320312 282.554688 286.226562 282.554688 286.109375 Z M 282.554688 286.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.863281 292.425781 C 284.863281 292.308594 284.769531 292.214844 284.652344 292.214844 C 284.535156 292.214844 284.441406 292.308594 284.441406 292.425781 C 284.441406 292.542969 284.535156 292.636719 284.652344 292.636719 C 284.769531 292.636719 284.863281 292.542969 284.863281 292.425781 Z M 284.863281 292.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.664062 294.925781 C 287.664062 294.808594 287.570312 294.714844 287.453125 294.714844 C 287.335938 294.714844 287.242188 294.808594 287.242188 294.925781 C 287.242188 295.042969 287.335938 295.136719 287.453125 295.136719 C 287.570312 295.136719 287.664062 295.042969 287.664062 294.925781 Z M 287.664062 294.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.855469 297.152344 C 289.855469 297.035156 289.761719 296.941406 289.644531 296.941406 C 289.527344 296.941406 289.433594 297.035156 289.433594 297.152344 C 289.433594 297.269531 289.527344 297.363281 289.644531 297.363281 C 289.761719 297.363281 289.855469 297.269531 289.855469 297.152344 Z M 289.855469 297.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.109375 293.90625 C 294.109375 293.789062 294.015625 293.695312 293.898438 293.695312 C 293.78125 293.695312 293.6875 293.789062 293.6875 293.90625 C 293.6875 294.023438 293.78125 294.117188 293.898438 294.117188 C 294.015625 294.117188 294.109375 294.023438 294.109375 293.90625 Z M 294.109375 293.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.480469 294.203125 C 294.480469 294.085938 294.386719 293.992188 294.269531 293.992188 C 294.152344 293.992188 294.058594 294.085938 294.058594 294.203125 C 294.058594 294.320312 294.152344 294.414062 294.269531 294.414062 C 294.386719 294.414062 294.480469 294.320312 294.480469 294.203125 Z M 294.480469 294.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.234375 296.808594 C 294.234375 296.691406 294.140625 296.597656 294.023438 296.597656 C 293.90625 296.597656 293.8125 296.691406 293.8125 296.808594 C 293.8125 296.925781 293.90625 297.019531 294.023438 297.019531 C 294.140625 297.019531 294.234375 296.925781 294.234375 296.808594 Z M 294.234375 296.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.054688 301.027344 C 291.054688 300.910156 290.960938 300.816406 290.84375 300.816406 C 290.726562 300.816406 290.632812 300.910156 290.632812 301.027344 C 290.632812 301.144531 290.726562 301.238281 290.84375 301.238281 C 290.960938 301.238281 291.054688 301.144531 291.054688 301.027344 Z M 291.054688 301.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.582031 296.144531 C 289.582031 296.027344 289.488281 295.933594 289.371094 295.933594 C 289.253906 295.933594 289.160156 296.027344 289.160156 296.144531 C 289.160156 296.261719 289.253906 296.355469 289.371094 296.355469 C 289.488281 296.355469 289.582031 296.261719 289.582031 296.144531 Z M 289.582031 296.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.117188 293.46875 C 291.117188 293.351562 291.023438 293.257812 290.90625 293.257812 C 290.789062 293.257812 290.695312 293.351562 290.695312 293.46875 C 290.695312 293.585938 290.789062 293.679688 290.90625 293.679688 C 291.023438 293.679688 291.117188 293.585938 291.117188 293.46875 Z M 291.117188 293.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.160156 298.980469 C 288.160156 298.863281 288.066406 298.769531 287.949219 298.769531 C 287.832031 298.769531 287.738281 298.863281 287.738281 298.980469 C 287.738281 299.097656 287.832031 299.191406 287.949219 299.191406 C 288.066406 299.191406 288.160156 299.097656 288.160156 298.980469 Z M 288.160156 298.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.371094 300.179688 C 288.371094 300.0625 288.277344 299.96875 288.160156 299.96875 C 288.042969 299.96875 287.949219 300.0625 287.949219 300.179688 C 287.949219 300.296875 288.042969 300.390625 288.160156 300.390625 C 288.277344 300.390625 288.371094 300.296875 288.371094 300.179688 Z M 288.371094 300.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.777344 302.53125 C 288.777344 302.414062 288.683594 302.320312 288.566406 302.320312 C 288.449219 302.320312 288.355469 302.414062 288.355469 302.53125 C 288.355469 302.648438 288.449219 302.742188 288.566406 302.742188 C 288.683594 302.742188 288.777344 302.648438 288.777344 302.53125 Z M 288.777344 302.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.351562 302.523438 C 289.351562 302.40625 289.257812 302.3125 289.140625 302.3125 C 289.023438 302.3125 288.929688 302.40625 288.929688 302.523438 C 288.929688 302.640625 289.023438 302.734375 289.140625 302.734375 C 289.257812 302.734375 289.351562 302.640625 289.351562 302.523438 Z M 289.351562 302.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.128906 303.707031 C 291.128906 303.589844 291.035156 303.496094 290.917969 303.496094 C 290.800781 303.496094 290.707031 303.589844 290.707031 303.707031 C 290.707031 303.824219 290.800781 303.917969 290.917969 303.917969 C 291.035156 303.917969 291.128906 303.824219 291.128906 303.707031 Z M 291.128906 303.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.554688 302.015625 C 294.554688 301.898438 294.460938 301.804688 294.34375 301.804688 C 294.226562 301.804688 294.132812 301.898438 294.132812 302.015625 C 294.132812 302.132812 294.226562 302.226562 294.34375 302.226562 C 294.460938 302.226562 294.554688 302.132812 294.554688 302.015625 Z M 294.554688 302.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.523438 303.417969 C 291.523438 303.300781 291.429688 303.207031 291.3125 303.207031 C 291.195312 303.207031 291.101562 303.300781 291.101562 303.417969 C 291.101562 303.535156 291.195312 303.628906 291.3125 303.628906 C 291.429688 303.628906 291.523438 303.535156 291.523438 303.417969 Z M 291.523438 303.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.832031 302.382812 C 289.832031 302.265625 289.738281 302.171875 289.621094 302.171875 C 289.503906 302.171875 289.410156 302.265625 289.410156 302.382812 C 289.410156 302.5 289.503906 302.59375 289.621094 302.59375 C 289.738281 302.59375 289.832031 302.5 289.832031 302.382812 Z M 289.832031 302.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.152344 302.121094 C 288.152344 302.003906 288.058594 301.910156 287.941406 301.910156 C 287.824219 301.910156 287.730469 302.003906 287.730469 302.121094 C 287.730469 302.238281 287.824219 302.332031 287.941406 302.332031 C 288.058594 302.332031 288.152344 302.238281 288.152344 302.121094 Z M 288.152344 302.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.820312 298.496094 C 286.820312 298.378906 286.726562 298.285156 286.609375 298.285156 C 286.492188 298.285156 286.398438 298.378906 286.398438 298.496094 C 286.398438 298.613281 286.492188 298.707031 286.609375 298.707031 C 286.726562 298.707031 286.820312 298.613281 286.820312 298.496094 Z M 286.820312 298.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.214844 299.851562 C 289.214844 299.734375 289.121094 299.640625 289.003906 299.640625 C 288.886719 299.640625 288.792969 299.734375 288.792969 299.851562 C 288.792969 299.96875 288.886719 300.0625 289.003906 300.0625 C 289.121094 300.0625 289.214844 299.96875 289.214844 299.851562 Z M 289.214844 299.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.710938 301.917969 C 289.710938 301.800781 289.617188 301.707031 289.5 301.707031 C 289.382812 301.707031 289.289062 301.800781 289.289062 301.917969 C 289.289062 302.035156 289.382812 302.128906 289.5 302.128906 C 289.617188 302.128906 289.710938 302.035156 289.710938 301.917969 Z M 289.710938 301.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.804688 300.1875 C 292.804688 300.070312 292.710938 299.976562 292.59375 299.976562 C 292.476562 299.976562 292.382812 300.070312 292.382812 300.1875 C 292.382812 300.304688 292.476562 300.398438 292.59375 300.398438 C 292.710938 300.398438 292.804688 300.304688 292.804688 300.1875 Z M 292.804688 300.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.503906 299.355469 C 292.503906 299.238281 292.410156 299.144531 292.292969 299.144531 C 292.175781 299.144531 292.082031 299.238281 292.082031 299.355469 C 292.082031 299.472656 292.175781 299.566406 292.292969 299.566406 C 292.410156 299.566406 292.503906 299.472656 292.503906 299.355469 Z M 292.503906 299.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.515625 298.347656 C 288.515625 298.230469 288.421875 298.136719 288.304688 298.136719 C 288.1875 298.136719 288.09375 298.230469 288.09375 298.347656 C 288.09375 298.464844 288.1875 298.558594 288.304688 298.558594 C 288.421875 298.558594 288.515625 298.464844 288.515625 298.347656 Z M 288.515625 298.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.703125 299.097656 C 285.703125 298.980469 285.609375 298.886719 285.492188 298.886719 C 285.375 298.886719 285.28125 298.980469 285.28125 299.097656 C 285.28125 299.214844 285.375 299.308594 285.492188 299.308594 C 285.609375 299.308594 285.703125 299.214844 285.703125 299.097656 Z M 285.703125 299.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.664062 297.339844 C 284.664062 297.222656 284.570312 297.128906 284.453125 297.128906 C 284.335938 297.128906 284.242188 297.222656 284.242188 297.339844 C 284.242188 297.457031 284.335938 297.550781 284.453125 297.550781 C 284.570312 297.550781 284.664062 297.457031 284.664062 297.339844 Z M 284.664062 297.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.421875 297.929688 C 286.421875 297.8125 286.328125 297.71875 286.210938 297.71875 C 286.09375 297.71875 286 297.8125 286 297.929688 C 286 298.046875 286.09375 298.140625 286.210938 298.140625 C 286.328125 298.140625 286.421875 298.046875 286.421875 297.929688 Z M 286.421875 297.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.546875 297.515625 C 284.546875 297.398438 284.453125 297.304688 284.335938 297.304688 C 284.21875 297.304688 284.125 297.398438 284.125 297.515625 C 284.125 297.632812 284.21875 297.726562 284.335938 297.726562 C 284.453125 297.726562 284.546875 297.632812 284.546875 297.515625 Z M 284.546875 297.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.703125 296.183594 C 286.703125 296.066406 286.609375 295.972656 286.492188 295.972656 C 286.375 295.972656 286.28125 296.066406 286.28125 296.183594 C 286.28125 296.300781 286.375 296.394531 286.492188 296.394531 C 286.609375 296.394531 286.703125 296.300781 286.703125 296.183594 Z M 286.703125 296.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.632812 297.578125 C 288.632812 297.460938 288.539062 297.367188 288.421875 297.367188 C 288.304688 297.367188 288.210938 297.460938 288.210938 297.578125 C 288.210938 297.695312 288.304688 297.789062 288.421875 297.789062 C 288.539062 297.789062 288.632812 297.695312 288.632812 297.578125 Z M 288.632812 297.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.304688 297.453125 C 287.304688 297.335938 287.210938 297.242188 287.09375 297.242188 C 286.976562 297.242188 286.882812 297.335938 286.882812 297.453125 C 286.882812 297.570312 286.976562 297.664062 287.09375 297.664062 C 287.210938 297.664062 287.304688 297.570312 287.304688 297.453125 Z M 287.304688 297.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.222656 300.152344 C 288.222656 300.035156 288.128906 299.941406 288.011719 299.941406 C 287.894531 299.941406 287.800781 300.035156 287.800781 300.152344 C 287.800781 300.269531 287.894531 300.363281 288.011719 300.363281 C 288.128906 300.363281 288.222656 300.269531 288.222656 300.152344 Z M 288.222656 300.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.726562 299.453125 C 284.726562 299.335938 284.632812 299.242188 284.515625 299.242188 C 284.398438 299.242188 284.304688 299.335938 284.304688 299.453125 C 284.304688 299.570312 284.398438 299.664062 284.515625 299.664062 C 284.632812 299.664062 284.726562 299.570312 284.726562 299.453125 Z M 284.726562 299.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.394531 297.867188 C 286.394531 297.75 286.300781 297.65625 286.183594 297.65625 C 286.066406 297.65625 285.972656 297.75 285.972656 297.867188 C 285.972656 297.984375 286.066406 298.078125 286.183594 298.078125 C 286.300781 298.078125 286.394531 297.984375 286.394531 297.867188 Z M 286.394531 297.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.175781 297.09375 C 287.175781 296.976562 287.082031 296.882812 286.964844 296.882812 C 286.847656 296.882812 286.753906 296.976562 286.753906 297.09375 C 286.753906 297.210938 286.847656 297.304688 286.964844 297.304688 C 287.082031 297.304688 287.175781 297.210938 287.175781 297.09375 Z M 287.175781 297.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.792969 295.535156 C 288.792969 295.417969 288.699219 295.324219 288.582031 295.324219 C 288.464844 295.324219 288.371094 295.417969 288.371094 295.535156 C 288.371094 295.652344 288.464844 295.746094 288.582031 295.746094 C 288.699219 295.746094 288.792969 295.652344 288.792969 295.535156 Z M 288.792969 295.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.433594 294.855469 C 287.433594 294.738281 287.339844 294.644531 287.222656 294.644531 C 287.105469 294.644531 287.011719 294.738281 287.011719 294.855469 C 287.011719 294.972656 287.105469 295.066406 287.222656 295.066406 C 287.339844 295.066406 287.433594 294.972656 287.433594 294.855469 Z M 287.433594 294.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.46875 293.734375 C 286.46875 293.617188 286.375 293.523438 286.257812 293.523438 C 286.140625 293.523438 286.046875 293.617188 286.046875 293.734375 C 286.046875 293.851562 286.140625 293.945312 286.257812 293.945312 C 286.375 293.945312 286.46875 293.851562 286.46875 293.734375 Z M 286.46875 293.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.84375 295.957031 C 285.84375 295.839844 285.75 295.746094 285.632812 295.746094 C 285.515625 295.746094 285.421875 295.839844 285.421875 295.957031 C 285.421875 296.074219 285.515625 296.167969 285.632812 296.167969 C 285.75 296.167969 285.84375 296.074219 285.84375 295.957031 Z M 285.84375 295.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.609375 294.0625 C 283.609375 293.945312 283.515625 293.851562 283.398438 293.851562 C 283.28125 293.851562 283.1875 293.945312 283.1875 294.0625 C 283.1875 294.179688 283.28125 294.273438 283.398438 294.273438 C 283.515625 294.273438 283.609375 294.179688 283.609375 294.0625 Z M 283.609375 294.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.128906 291.742188 C 284.128906 291.625 284.035156 291.53125 283.917969 291.53125 C 283.800781 291.53125 283.707031 291.625 283.707031 291.742188 C 283.707031 291.859375 283.800781 291.953125 283.917969 291.953125 C 284.035156 291.953125 284.128906 291.859375 284.128906 291.742188 Z M 284.128906 291.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.230469 288.367188 C 282.230469 288.25 282.136719 288.15625 282.019531 288.15625 C 281.902344 288.15625 281.808594 288.25 281.808594 288.367188 C 281.808594 288.484375 281.902344 288.578125 282.019531 288.578125 C 282.136719 288.578125 282.230469 288.484375 282.230469 288.367188 Z M 282.230469 288.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.546875 283.558594 C 279.546875 283.441406 279.453125 283.347656 279.335938 283.347656 C 279.21875 283.347656 279.125 283.441406 279.125 283.558594 C 279.125 283.675781 279.21875 283.769531 279.335938 283.769531 C 279.453125 283.769531 279.546875 283.675781 279.546875 283.558594 Z M 279.546875 283.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.527344 284.632812 C 279.527344 284.515625 279.433594 284.421875 279.316406 284.421875 C 279.199219 284.421875 279.105469 284.515625 279.105469 284.632812 C 279.105469 284.75 279.199219 284.84375 279.316406 284.84375 C 279.433594 284.84375 279.527344 284.75 279.527344 284.632812 Z M 279.527344 284.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.359375 287.449219 C 277.359375 287.332031 277.265625 287.238281 277.148438 287.238281 C 277.03125 287.238281 276.9375 287.332031 276.9375 287.449219 C 276.9375 287.566406 277.03125 287.660156 277.148438 287.660156 C 277.265625 287.660156 277.359375 287.566406 277.359375 287.449219 Z M 277.359375 287.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.753906 287.332031 C 274.753906 287.214844 274.660156 287.121094 274.542969 287.121094 C 274.425781 287.121094 274.332031 287.214844 274.332031 287.332031 C 274.332031 287.449219 274.425781 287.542969 274.542969 287.542969 C 274.660156 287.542969 274.753906 287.449219 274.753906 287.332031 Z M 274.753906 287.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.972656 286.410156 C 270.972656 286.292969 270.878906 286.199219 270.761719 286.199219 C 270.644531 286.199219 270.550781 286.292969 270.550781 286.410156 C 270.550781 286.527344 270.644531 286.621094 270.761719 286.621094 C 270.878906 286.621094 270.972656 286.527344 270.972656 286.410156 Z M 270.972656 286.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.5 288.492188 C 275.5 288.375 275.40625 288.28125 275.289062 288.28125 C 275.171875 288.28125 275.078125 288.375 275.078125 288.492188 C 275.078125 288.609375 275.171875 288.703125 275.289062 288.703125 C 275.40625 288.703125 275.5 288.609375 275.5 288.492188 Z M 275.5 288.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.589844 290.953125 C 277.589844 290.835938 277.496094 290.742188 277.378906 290.742188 C 277.261719 290.742188 277.167969 290.835938 277.167969 290.953125 C 277.167969 291.070312 277.261719 291.164062 277.378906 291.164062 C 277.496094 291.164062 277.589844 291.070312 277.589844 290.953125 Z M 277.589844 290.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.03125 291.425781 C 277.03125 291.308594 276.9375 291.214844 276.820312 291.214844 C 276.703125 291.214844 276.609375 291.308594 276.609375 291.425781 C 276.609375 291.542969 276.703125 291.636719 276.820312 291.636719 C 276.9375 291.636719 277.03125 291.542969 277.03125 291.425781 Z M 277.03125 291.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.851562 293.175781 C 277.851562 293.058594 277.757812 292.964844 277.640625 292.964844 C 277.523438 292.964844 277.429688 293.058594 277.429688 293.175781 C 277.429688 293.292969 277.523438 293.386719 277.640625 293.386719 C 277.757812 293.386719 277.851562 293.292969 277.851562 293.175781 Z M 277.851562 293.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.152344 293.714844 C 279.152344 293.597656 279.058594 293.503906 278.941406 293.503906 C 278.824219 293.503906 278.730469 293.597656 278.730469 293.714844 C 278.730469 293.832031 278.824219 293.925781 278.941406 293.925781 C 279.058594 293.925781 279.152344 293.832031 279.152344 293.714844 Z M 279.152344 293.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.742188 293.214844 C 277.742188 293.097656 277.648438 293.003906 277.53125 293.003906 C 277.414062 293.003906 277.320312 293.097656 277.320312 293.214844 C 277.320312 293.332031 277.414062 293.425781 277.53125 293.425781 C 277.648438 293.425781 277.742188 293.332031 277.742188 293.214844 Z M 277.742188 293.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.609375 290.5625 C 272.609375 290.445312 272.515625 290.351562 272.398438 290.351562 C 272.28125 290.351562 272.1875 290.445312 272.1875 290.5625 C 272.1875 290.679688 272.28125 290.773438 272.398438 290.773438 C 272.515625 290.773438 272.609375 290.679688 272.609375 290.5625 Z M 272.609375 290.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.449219 290.980469 C 274.449219 290.863281 274.355469 290.769531 274.238281 290.769531 C 274.121094 290.769531 274.027344 290.863281 274.027344 290.980469 C 274.027344 291.097656 274.121094 291.191406 274.238281 291.191406 C 274.355469 291.191406 274.449219 291.097656 274.449219 290.980469 Z M 274.449219 290.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.308594 290.011719 C 273.308594 289.894531 273.214844 289.800781 273.097656 289.800781 C 272.980469 289.800781 272.886719 289.894531 272.886719 290.011719 C 272.886719 290.128906 272.980469 290.222656 273.097656 290.222656 C 273.214844 290.222656 273.308594 290.128906 273.308594 290.011719 Z M 273.308594 290.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.46875 287.507812 C 275.46875 287.390625 275.375 287.296875 275.257812 287.296875 C 275.140625 287.296875 275.046875 287.390625 275.046875 287.507812 C 275.046875 287.625 275.140625 287.71875 275.257812 287.71875 C 275.375 287.71875 275.46875 287.625 275.46875 287.507812 Z M 275.46875 287.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.007812 284.722656 C 274.007812 284.605469 273.914062 284.511719 273.796875 284.511719 C 273.679688 284.511719 273.585938 284.605469 273.585938 284.722656 C 273.585938 284.839844 273.679688 284.933594 273.796875 284.933594 C 273.914062 284.933594 274.007812 284.839844 274.007812 284.722656 Z M 274.007812 284.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.597656 287.480469 C 273.597656 287.363281 273.503906 287.269531 273.386719 287.269531 C 273.269531 287.269531 273.175781 287.363281 273.175781 287.480469 C 273.175781 287.597656 273.269531 287.691406 273.386719 287.691406 C 273.503906 287.691406 273.597656 287.597656 273.597656 287.480469 Z M 273.597656 287.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.40625 288.511719 C 274.40625 288.394531 274.3125 288.300781 274.195312 288.300781 C 274.078125 288.300781 273.984375 288.394531 273.984375 288.511719 C 273.984375 288.628906 274.078125 288.722656 274.195312 288.722656 C 274.3125 288.722656 274.40625 288.628906 274.40625 288.511719 Z M 274.40625 288.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.3125 285.863281 C 273.3125 285.746094 273.21875 285.652344 273.101562 285.652344 C 272.984375 285.652344 272.890625 285.746094 272.890625 285.863281 C 272.890625 285.980469 272.984375 286.074219 273.101562 286.074219 C 273.21875 286.074219 273.3125 285.980469 273.3125 285.863281 Z M 273.3125 285.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.039062 281.757812 C 273.039062 281.640625 272.945312 281.546875 272.828125 281.546875 C 272.710938 281.546875 272.617188 281.640625 272.617188 281.757812 C 272.617188 281.875 272.710938 281.96875 272.828125 281.96875 C 272.945312 281.96875 273.039062 281.875 273.039062 281.757812 Z M 273.039062 281.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.015625 282.671875 C 272.015625 282.554688 271.921875 282.460938 271.804688 282.460938 C 271.6875 282.460938 271.59375 282.554688 271.59375 282.671875 C 271.59375 282.789062 271.6875 282.882812 271.804688 282.882812 C 271.921875 282.882812 272.015625 282.789062 272.015625 282.671875 Z M 272.015625 282.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.046875 281.679688 C 272.046875 281.5625 271.953125 281.46875 271.835938 281.46875 C 271.71875 281.46875 271.625 281.5625 271.625 281.679688 C 271.625 281.796875 271.71875 281.890625 271.835938 281.890625 C 271.953125 281.890625 272.046875 281.796875 272.046875 281.679688 Z M 272.046875 281.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.429688 280.804688 C 268.429688 280.6875 268.335938 280.59375 268.21875 280.59375 C 268.101562 280.59375 268.007812 280.6875 268.007812 280.804688 C 268.007812 280.921875 268.101562 281.015625 268.21875 281.015625 C 268.335938 281.015625 268.429688 280.921875 268.429688 280.804688 Z M 268.429688 280.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.015625 281.195312 C 269.015625 281.078125 268.921875 280.984375 268.804688 280.984375 C 268.6875 280.984375 268.59375 281.078125 268.59375 281.195312 C 268.59375 281.3125 268.6875 281.40625 268.804688 281.40625 C 268.921875 281.40625 269.015625 281.3125 269.015625 281.195312 Z M 269.015625 281.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.222656 282.835938 C 270.222656 282.71875 270.128906 282.625 270.011719 282.625 C 269.894531 282.625 269.800781 282.71875 269.800781 282.835938 C 269.800781 282.953125 269.894531 283.046875 270.011719 283.046875 C 270.128906 283.046875 270.222656 282.953125 270.222656 282.835938 Z M 270.222656 282.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.699219 279.035156 C 270.699219 278.917969 270.605469 278.824219 270.488281 278.824219 C 270.371094 278.824219 270.277344 278.917969 270.277344 279.035156 C 270.277344 279.152344 270.371094 279.246094 270.488281 279.246094 C 270.605469 279.246094 270.699219 279.152344 270.699219 279.035156 Z M 270.699219 279.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.152344 279.066406 C 270.152344 278.949219 270.058594 278.855469 269.941406 278.855469 C 269.824219 278.855469 269.730469 278.949219 269.730469 279.066406 C 269.730469 279.183594 269.824219 279.277344 269.941406 279.277344 C 270.058594 279.277344 270.152344 279.183594 270.152344 279.066406 Z M 270.152344 279.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.039062 277.628906 C 269.039062 277.511719 268.945312 277.417969 268.828125 277.417969 C 268.710938 277.417969 268.617188 277.511719 268.617188 277.628906 C 268.617188 277.746094 268.710938 277.839844 268.828125 277.839844 C 268.945312 277.839844 269.039062 277.746094 269.039062 277.628906 Z M 269.039062 277.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.59375 280.792969 C 268.59375 280.675781 268.5 280.582031 268.382812 280.582031 C 268.265625 280.582031 268.171875 280.675781 268.171875 280.792969 C 268.171875 280.910156 268.265625 281.003906 268.382812 281.003906 C 268.5 281.003906 268.59375 280.910156 268.59375 280.792969 Z M 268.59375 280.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.574219 280.742188 C 266.574219 280.625 266.480469 280.53125 266.363281 280.53125 C 266.246094 280.53125 266.152344 280.625 266.152344 280.742188 C 266.152344 280.859375 266.246094 280.953125 266.363281 280.953125 C 266.480469 280.953125 266.574219 280.859375 266.574219 280.742188 Z M 266.574219 280.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.847656 282.765625 C 266.847656 282.648438 266.753906 282.554688 266.636719 282.554688 C 266.519531 282.554688 266.425781 282.648438 266.425781 282.765625 C 266.425781 282.882812 266.519531 282.976562 266.636719 282.976562 C 266.753906 282.976562 266.847656 282.882812 266.847656 282.765625 Z M 266.847656 282.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.542969 282.59375 C 266.542969 282.476562 266.449219 282.382812 266.332031 282.382812 C 266.214844 282.382812 266.121094 282.476562 266.121094 282.59375 C 266.121094 282.710938 266.214844 282.804688 266.332031 282.804688 C 266.449219 282.804688 266.542969 282.710938 266.542969 282.59375 Z M 266.542969 282.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.289062 282.230469 C 268.289062 282.113281 268.195312 282.019531 268.078125 282.019531 C 267.960938 282.019531 267.867188 282.113281 267.867188 282.230469 C 267.867188 282.347656 267.960938 282.441406 268.078125 282.441406 C 268.195312 282.441406 268.289062 282.347656 268.289062 282.230469 Z M 268.289062 282.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.949219 282.484375 C 268.949219 282.367188 268.855469 282.273438 268.738281 282.273438 C 268.621094 282.273438 268.527344 282.367188 268.527344 282.484375 C 268.527344 282.601562 268.621094 282.695312 268.738281 282.695312 C 268.855469 282.695312 268.949219 282.601562 268.949219 282.484375 Z M 268.949219 282.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.996094 282.890625 C 269.996094 282.773438 269.902344 282.679688 269.785156 282.679688 C 269.667969 282.679688 269.574219 282.773438 269.574219 282.890625 C 269.574219 283.007812 269.667969 283.101562 269.785156 283.101562 C 269.902344 283.101562 269.996094 283.007812 269.996094 282.890625 Z M 269.996094 282.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.570312 282.175781 C 269.570312 282.058594 269.476562 281.964844 269.359375 281.964844 C 269.242188 281.964844 269.148438 282.058594 269.148438 282.175781 C 269.148438 282.292969 269.242188 282.386719 269.359375 282.386719 C 269.476562 282.386719 269.570312 282.292969 269.570312 282.175781 Z M 269.570312 282.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.210938 283.777344 C 267.210938 283.660156 267.117188 283.566406 267 283.566406 C 266.882812 283.566406 266.789062 283.660156 266.789062 283.777344 C 266.789062 283.894531 266.882812 283.988281 267 283.988281 C 267.117188 283.988281 267.210938 283.894531 267.210938 283.777344 Z M 267.210938 283.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.804688 285.371094 C 266.804688 285.253906 266.710938 285.160156 266.59375 285.160156 C 266.476562 285.160156 266.382812 285.253906 266.382812 285.371094 C 266.382812 285.488281 266.476562 285.582031 266.59375 285.582031 C 266.710938 285.582031 266.804688 285.488281 266.804688 285.371094 Z M 266.804688 285.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.070312 285.804688 C 266.070312 285.6875 265.976562 285.59375 265.859375 285.59375 C 265.742188 285.59375 265.648438 285.6875 265.648438 285.804688 C 265.648438 285.921875 265.742188 286.015625 265.859375 286.015625 C 265.976562 286.015625 266.070312 285.921875 266.070312 285.804688 Z M 266.070312 285.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.402344 286.371094 C 266.402344 286.253906 266.308594 286.160156 266.191406 286.160156 C 266.074219 286.160156 265.980469 286.253906 265.980469 286.371094 C 265.980469 286.488281 266.074219 286.582031 266.191406 286.582031 C 266.308594 286.582031 266.402344 286.488281 266.402344 286.371094 Z M 266.402344 286.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.332031 289.625 C 265.332031 289.507812 265.238281 289.414062 265.121094 289.414062 C 265.003906 289.414062 264.910156 289.507812 264.910156 289.625 C 264.910156 289.742188 265.003906 289.835938 265.121094 289.835938 C 265.238281 289.835938 265.332031 289.742188 265.332031 289.625 Z M 265.332031 289.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.292969 293.257812 C 262.292969 293.140625 262.199219 293.046875 262.082031 293.046875 C 261.964844 293.046875 261.871094 293.140625 261.871094 293.257812 C 261.871094 293.375 261.964844 293.46875 262.082031 293.46875 C 262.199219 293.46875 262.292969 293.375 262.292969 293.257812 Z M 262.292969 293.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.675781 294.652344 C 262.675781 294.535156 262.582031 294.441406 262.464844 294.441406 C 262.347656 294.441406 262.253906 294.535156 262.253906 294.652344 C 262.253906 294.769531 262.347656 294.863281 262.464844 294.863281 C 262.582031 294.863281 262.675781 294.769531 262.675781 294.652344 Z M 262.675781 294.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.070312 294.789062 C 261.070312 294.671875 260.976562 294.578125 260.859375 294.578125 C 260.742188 294.578125 260.648438 294.671875 260.648438 294.789062 C 260.648438 294.90625 260.742188 295 260.859375 295 C 260.976562 295 261.070312 294.90625 261.070312 294.789062 Z M 261.070312 294.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.617188 294.648438 C 262.617188 294.53125 262.523438 294.4375 262.40625 294.4375 C 262.289062 294.4375 262.195312 294.53125 262.195312 294.648438 C 262.195312 294.765625 262.289062 294.859375 262.40625 294.859375 C 262.523438 294.859375 262.617188 294.765625 262.617188 294.648438 Z M 262.617188 294.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.808594 293.488281 C 261.808594 293.371094 261.714844 293.277344 261.597656 293.277344 C 261.480469 293.277344 261.386719 293.371094 261.386719 293.488281 C 261.386719 293.605469 261.480469 293.699219 261.597656 293.699219 C 261.714844 293.699219 261.808594 293.605469 261.808594 293.488281 Z M 261.808594 293.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.222656 294.25 C 264.222656 294.132812 264.128906 294.039062 264.011719 294.039062 C 263.894531 294.039062 263.800781 294.132812 263.800781 294.25 C 263.800781 294.367188 263.894531 294.460938 264.011719 294.460938 C 264.128906 294.460938 264.222656 294.367188 264.222656 294.25 Z M 264.222656 294.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.566406 292.160156 C 262.566406 292.042969 262.472656 291.949219 262.355469 291.949219 C 262.238281 291.949219 262.144531 292.042969 262.144531 292.160156 C 262.144531 292.277344 262.238281 292.371094 262.355469 292.371094 C 262.472656 292.371094 262.566406 292.277344 262.566406 292.160156 Z M 262.566406 292.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.390625 292.023438 C 265.390625 291.90625 265.296875 291.8125 265.179688 291.8125 C 265.0625 291.8125 264.96875 291.90625 264.96875 292.023438 C 264.96875 292.140625 265.0625 292.234375 265.179688 292.234375 C 265.296875 292.234375 265.390625 292.140625 265.390625 292.023438 Z M 265.390625 292.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.617188 291.472656 C 264.617188 291.355469 264.523438 291.261719 264.40625 291.261719 C 264.289062 291.261719 264.195312 291.355469 264.195312 291.472656 C 264.195312 291.589844 264.289062 291.683594 264.40625 291.683594 C 264.523438 291.683594 264.617188 291.589844 264.617188 291.472656 Z M 264.617188 291.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.5625 292.769531 C 265.5625 292.652344 265.46875 292.558594 265.351562 292.558594 C 265.234375 292.558594 265.140625 292.652344 265.140625 292.769531 C 265.140625 292.886719 265.234375 292.980469 265.351562 292.980469 C 265.46875 292.980469 265.5625 292.886719 265.5625 292.769531 Z M 265.5625 292.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.785156 292.4375 C 266.785156 292.320312 266.691406 292.226562 266.574219 292.226562 C 266.457031 292.226562 266.363281 292.320312 266.363281 292.4375 C 266.363281 292.554688 266.457031 292.648438 266.574219 292.648438 C 266.691406 292.648438 266.785156 292.554688 266.785156 292.4375 Z M 266.785156 292.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.804688 292.121094 C 270.804688 292.003906 270.710938 291.910156 270.59375 291.910156 C 270.476562 291.910156 270.382812 292.003906 270.382812 292.121094 C 270.382812 292.238281 270.476562 292.332031 270.59375 292.332031 C 270.710938 292.332031 270.804688 292.238281 270.804688 292.121094 Z M 270.804688 292.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.445312 289.878906 C 271.445312 289.761719 271.351562 289.667969 271.234375 289.667969 C 271.117188 289.667969 271.023438 289.761719 271.023438 289.878906 C 271.023438 289.996094 271.117188 290.089844 271.234375 290.089844 C 271.351562 290.089844 271.445312 289.996094 271.445312 289.878906 Z M 271.445312 289.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.488281 287.804688 C 271.488281 287.6875 271.394531 287.59375 271.277344 287.59375 C 271.160156 287.59375 271.066406 287.6875 271.066406 287.804688 C 271.066406 287.921875 271.160156 288.015625 271.277344 288.015625 C 271.394531 288.015625 271.488281 287.921875 271.488281 287.804688 Z M 271.488281 287.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.179688 285.390625 C 269.179688 285.273438 269.085938 285.179688 268.96875 285.179688 C 268.851562 285.179688 268.757812 285.273438 268.757812 285.390625 C 268.757812 285.507812 268.851562 285.601562 268.96875 285.601562 C 269.085938 285.601562 269.179688 285.507812 269.179688 285.390625 Z M 269.179688 285.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.914062 285.789062 C 269.914062 285.671875 269.820312 285.578125 269.703125 285.578125 C 269.585938 285.578125 269.492188 285.671875 269.492188 285.789062 C 269.492188 285.90625 269.585938 286 269.703125 286 C 269.820312 286 269.914062 285.90625 269.914062 285.789062 Z M 269.914062 285.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.101562 284.367188 C 268.101562 284.25 268.007812 284.15625 267.890625 284.15625 C 267.773438 284.15625 267.679688 284.25 267.679688 284.367188 C 267.679688 284.484375 267.773438 284.578125 267.890625 284.578125 C 268.007812 284.578125 268.101562 284.484375 268.101562 284.367188 Z M 268.101562 284.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.269531 287.980469 C 270.269531 287.863281 270.175781 287.769531 270.058594 287.769531 C 269.941406 287.769531 269.847656 287.863281 269.847656 287.980469 C 269.847656 288.097656 269.941406 288.191406 270.058594 288.191406 C 270.175781 288.191406 270.269531 288.097656 270.269531 287.980469 Z M 270.269531 287.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.433594 287.917969 C 269.433594 287.800781 269.339844 287.707031 269.222656 287.707031 C 269.105469 287.707031 269.011719 287.800781 269.011719 287.917969 C 269.011719 288.035156 269.105469 288.128906 269.222656 288.128906 C 269.339844 288.128906 269.433594 288.035156 269.433594 287.917969 Z M 269.433594 287.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.253906 288 C 270.253906 287.882812 270.160156 287.789062 270.042969 287.789062 C 269.925781 287.789062 269.832031 287.882812 269.832031 288 C 269.832031 288.117188 269.925781 288.210938 270.042969 288.210938 C 270.160156 288.210938 270.253906 288.117188 270.253906 288 Z M 270.253906 288 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.019531 289.082031 C 269.019531 288.964844 268.925781 288.871094 268.808594 288.871094 C 268.691406 288.871094 268.597656 288.964844 268.597656 289.082031 C 268.597656 289.199219 268.691406 289.292969 268.808594 289.292969 C 268.925781 289.292969 269.019531 289.199219 269.019531 289.082031 Z M 269.019531 289.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.457031 285.296875 C 266.457031 285.179688 266.363281 285.085938 266.246094 285.085938 C 266.128906 285.085938 266.035156 285.179688 266.035156 285.296875 C 266.035156 285.414062 266.128906 285.507812 266.246094 285.507812 C 266.363281 285.507812 266.457031 285.414062 266.457031 285.296875 Z M 266.457031 285.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.085938 290.519531 C 267.085938 290.402344 266.992188 290.308594 266.875 290.308594 C 266.757812 290.308594 266.664062 290.402344 266.664062 290.519531 C 266.664062 290.636719 266.757812 290.730469 266.875 290.730469 C 266.992188 290.730469 267.085938 290.636719 267.085938 290.519531 Z M 267.085938 290.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.589844 291.019531 C 266.589844 290.902344 266.496094 290.808594 266.378906 290.808594 C 266.261719 290.808594 266.167969 290.902344 266.167969 291.019531 C 266.167969 291.136719 266.261719 291.230469 266.378906 291.230469 C 266.496094 291.230469 266.589844 291.136719 266.589844 291.019531 Z M 266.589844 291.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.183594 292.433594 C 266.183594 292.316406 266.089844 292.222656 265.972656 292.222656 C 265.855469 292.222656 265.761719 292.316406 265.761719 292.433594 C 265.761719 292.550781 265.855469 292.644531 265.972656 292.644531 C 266.089844 292.644531 266.183594 292.550781 266.183594 292.433594 Z M 266.183594 292.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.292969 293.722656 C 265.292969 293.605469 265.199219 293.511719 265.082031 293.511719 C 264.964844 293.511719 264.871094 293.605469 264.871094 293.722656 C 264.871094 293.839844 264.964844 293.933594 265.082031 293.933594 C 265.199219 293.933594 265.292969 293.839844 265.292969 293.722656 Z M 265.292969 293.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.441406 292.976562 C 263.441406 292.859375 263.347656 292.765625 263.230469 292.765625 C 263.113281 292.765625 263.019531 292.859375 263.019531 292.976562 C 263.019531 293.09375 263.113281 293.1875 263.230469 293.1875 C 263.347656 293.1875 263.441406 293.09375 263.441406 292.976562 Z M 263.441406 292.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.921875 292.671875 C 262.921875 292.554688 262.828125 292.460938 262.710938 292.460938 C 262.59375 292.460938 262.5 292.554688 262.5 292.671875 C 262.5 292.789062 262.59375 292.882812 262.710938 292.882812 C 262.828125 292.882812 262.921875 292.789062 262.921875 292.671875 Z M 262.921875 292.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.835938 291.328125 C 260.835938 291.210938 260.742188 291.117188 260.625 291.117188 C 260.507812 291.117188 260.414062 291.210938 260.414062 291.328125 C 260.414062 291.445312 260.507812 291.539062 260.625 291.539062 C 260.742188 291.539062 260.835938 291.445312 260.835938 291.328125 Z M 260.835938 291.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.433594 287.289062 C 260.433594 287.171875 260.339844 287.078125 260.222656 287.078125 C 260.105469 287.078125 260.011719 287.171875 260.011719 287.289062 C 260.011719 287.40625 260.105469 287.5 260.222656 287.5 C 260.339844 287.5 260.433594 287.40625 260.433594 287.289062 Z M 260.433594 287.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.585938 287.410156 C 260.585938 287.292969 260.492188 287.199219 260.375 287.199219 C 260.257812 287.199219 260.164062 287.292969 260.164062 287.410156 C 260.164062 287.527344 260.257812 287.621094 260.375 287.621094 C 260.492188 287.621094 260.585938 287.527344 260.585938 287.410156 Z M 260.585938 287.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.492188 285.742188 C 259.492188 285.625 259.398438 285.53125 259.28125 285.53125 C 259.164062 285.53125 259.070312 285.625 259.070312 285.742188 C 259.070312 285.859375 259.164062 285.953125 259.28125 285.953125 C 259.398438 285.953125 259.492188 285.859375 259.492188 285.742188 Z M 259.492188 285.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.578125 286.53125 C 259.578125 286.414062 259.484375 286.320312 259.367188 286.320312 C 259.25 286.320312 259.15625 286.414062 259.15625 286.53125 C 259.15625 286.648438 259.25 286.742188 259.367188 286.742188 C 259.484375 286.742188 259.578125 286.648438 259.578125 286.53125 Z M 259.578125 286.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.890625 289.347656 C 261.890625 289.230469 261.796875 289.136719 261.679688 289.136719 C 261.5625 289.136719 261.46875 289.230469 261.46875 289.347656 C 261.46875 289.464844 261.5625 289.558594 261.679688 289.558594 C 261.796875 289.558594 261.890625 289.464844 261.890625 289.347656 Z M 261.890625 289.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.136719 290.523438 C 260.136719 290.40625 260.042969 290.3125 259.925781 290.3125 C 259.808594 290.3125 259.714844 290.40625 259.714844 290.523438 C 259.714844 290.640625 259.808594 290.734375 259.925781 290.734375 C 260.042969 290.734375 260.136719 290.640625 260.136719 290.523438 Z M 260.136719 290.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.125 293.992188 C 260.125 293.875 260.03125 293.78125 259.914062 293.78125 C 259.796875 293.78125 259.703125 293.875 259.703125 293.992188 C 259.703125 294.109375 259.796875 294.203125 259.914062 294.203125 C 260.03125 294.203125 260.125 294.109375 260.125 293.992188 Z M 260.125 293.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.296875 292.527344 C 259.296875 292.410156 259.203125 292.316406 259.085938 292.316406 C 258.96875 292.316406 258.875 292.410156 258.875 292.527344 C 258.875 292.644531 258.96875 292.738281 259.085938 292.738281 C 259.203125 292.738281 259.296875 292.644531 259.296875 292.527344 Z M 259.296875 292.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.453125 294.761719 C 259.453125 294.644531 259.359375 294.550781 259.242188 294.550781 C 259.125 294.550781 259.03125 294.644531 259.03125 294.761719 C 259.03125 294.878906 259.125 294.972656 259.242188 294.972656 C 259.359375 294.972656 259.453125 294.878906 259.453125 294.761719 Z M 259.453125 294.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.542969 293.269531 C 259.542969 293.152344 259.449219 293.058594 259.332031 293.058594 C 259.214844 293.058594 259.121094 293.152344 259.121094 293.269531 C 259.121094 293.386719 259.214844 293.480469 259.332031 293.480469 C 259.449219 293.480469 259.542969 293.386719 259.542969 293.269531 Z M 259.542969 293.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.226562 290.695312 C 262.226562 290.578125 262.132812 290.484375 262.015625 290.484375 C 261.898438 290.484375 261.804688 290.578125 261.804688 290.695312 C 261.804688 290.8125 261.898438 290.90625 262.015625 290.90625 C 262.132812 290.90625 262.226562 290.8125 262.226562 290.695312 Z M 262.226562 290.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.511719 298.082031 C 262.511719 297.964844 262.417969 297.871094 262.300781 297.871094 C 262.183594 297.871094 262.089844 297.964844 262.089844 298.082031 C 262.089844 298.199219 262.183594 298.292969 262.300781 298.292969 C 262.417969 298.292969 262.511719 298.199219 262.511719 298.082031 Z M 262.511719 298.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.070312 299.273438 C 263.070312 299.15625 262.976562 299.0625 262.859375 299.0625 C 262.742188 299.0625 262.648438 299.15625 262.648438 299.273438 C 262.648438 299.390625 262.742188 299.484375 262.859375 299.484375 C 262.976562 299.484375 263.070312 299.390625 263.070312 299.273438 Z M 263.070312 299.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.929688 297.742188 C 265.929688 297.625 265.835938 297.53125 265.71875 297.53125 C 265.601562 297.53125 265.507812 297.625 265.507812 297.742188 C 265.507812 297.859375 265.601562 297.953125 265.71875 297.953125 C 265.835938 297.953125 265.929688 297.859375 265.929688 297.742188 Z M 265.929688 297.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.070312 298.527344 C 266.070312 298.410156 265.976562 298.316406 265.859375 298.316406 C 265.742188 298.316406 265.648438 298.410156 265.648438 298.527344 C 265.648438 298.644531 265.742188 298.738281 265.859375 298.738281 C 265.976562 298.738281 266.070312 298.644531 266.070312 298.527344 Z M 266.070312 298.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.4375 297.414062 C 265.4375 297.296875 265.34375 297.203125 265.226562 297.203125 C 265.109375 297.203125 265.015625 297.296875 265.015625 297.414062 C 265.015625 297.53125 265.109375 297.625 265.226562 297.625 C 265.34375 297.625 265.4375 297.53125 265.4375 297.414062 Z M 265.4375 297.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.949219 298.125 C 266.949219 298.007812 266.855469 297.914062 266.738281 297.914062 C 266.621094 297.914062 266.527344 298.007812 266.527344 298.125 C 266.527344 298.242188 266.621094 298.335938 266.738281 298.335938 C 266.855469 298.335938 266.949219 298.242188 266.949219 298.125 Z M 266.949219 298.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.9375 296.921875 C 266.9375 296.804688 266.84375 296.710938 266.726562 296.710938 C 266.609375 296.710938 266.515625 296.804688 266.515625 296.921875 C 266.515625 297.039062 266.609375 297.132812 266.726562 297.132812 C 266.84375 297.132812 266.9375 297.039062 266.9375 296.921875 Z M 266.9375 296.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.144531 298.207031 C 268.144531 298.089844 268.050781 297.996094 267.933594 297.996094 C 267.816406 297.996094 267.722656 298.089844 267.722656 298.207031 C 267.722656 298.324219 267.816406 298.417969 267.933594 298.417969 C 268.050781 298.417969 268.144531 298.324219 268.144531 298.207031 Z M 268.144531 298.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.359375 294.71875 C 266.359375 294.601562 266.265625 294.507812 266.148438 294.507812 C 266.03125 294.507812 265.9375 294.601562 265.9375 294.71875 C 265.9375 294.835938 266.03125 294.929688 266.148438 294.929688 C 266.265625 294.929688 266.359375 294.835938 266.359375 294.71875 Z M 266.359375 294.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.90625 298.867188 C 264.90625 298.75 264.8125 298.65625 264.695312 298.65625 C 264.578125 298.65625 264.484375 298.75 264.484375 298.867188 C 264.484375 298.984375 264.578125 299.078125 264.695312 299.078125 C 264.8125 299.078125 264.90625 298.984375 264.90625 298.867188 Z M 264.90625 298.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.296875 294.59375 C 267.296875 294.476562 267.203125 294.382812 267.085938 294.382812 C 266.96875 294.382812 266.875 294.476562 266.875 294.59375 C 266.875 294.710938 266.96875 294.804688 267.085938 294.804688 C 267.203125 294.804688 267.296875 294.710938 267.296875 294.59375 Z M 267.296875 294.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.140625 295.34375 C 269.140625 295.226562 269.046875 295.132812 268.929688 295.132812 C 268.8125 295.132812 268.71875 295.226562 268.71875 295.34375 C 268.71875 295.460938 268.8125 295.554688 268.929688 295.554688 C 269.046875 295.554688 269.140625 295.460938 269.140625 295.34375 Z M 269.140625 295.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.214844 293.71875 C 269.214844 293.601562 269.121094 293.507812 269.003906 293.507812 C 268.886719 293.507812 268.792969 293.601562 268.792969 293.71875 C 268.792969 293.835938 268.886719 293.929688 269.003906 293.929688 C 269.121094 293.929688 269.214844 293.835938 269.214844 293.71875 Z M 269.214844 293.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.519531 296.976562 C 267.519531 296.859375 267.425781 296.765625 267.308594 296.765625 C 267.191406 296.765625 267.097656 296.859375 267.097656 296.976562 C 267.097656 297.09375 267.191406 297.1875 267.308594 297.1875 C 267.425781 297.1875 267.519531 297.09375 267.519531 296.976562 Z M 267.519531 296.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.519531 296.347656 C 265.519531 296.230469 265.425781 296.136719 265.308594 296.136719 C 265.191406 296.136719 265.097656 296.230469 265.097656 296.347656 C 265.097656 296.464844 265.191406 296.558594 265.308594 296.558594 C 265.425781 296.558594 265.519531 296.464844 265.519531 296.347656 Z M 265.519531 296.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.292969 291.222656 C 264.292969 291.105469 264.199219 291.011719 264.082031 291.011719 C 263.964844 291.011719 263.871094 291.105469 263.871094 291.222656 C 263.871094 291.339844 263.964844 291.433594 264.082031 291.433594 C 264.199219 291.433594 264.292969 291.339844 264.292969 291.222656 Z M 264.292969 291.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.972656 289.253906 C 265.972656 289.136719 265.878906 289.042969 265.761719 289.042969 C 265.644531 289.042969 265.550781 289.136719 265.550781 289.253906 C 265.550781 289.371094 265.644531 289.464844 265.761719 289.464844 C 265.878906 289.464844 265.972656 289.371094 265.972656 289.253906 Z M 265.972656 289.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.300781 290.128906 C 265.300781 290.011719 265.207031 289.917969 265.089844 289.917969 C 264.972656 289.917969 264.878906 290.011719 264.878906 290.128906 C 264.878906 290.246094 264.972656 290.339844 265.089844 290.339844 C 265.207031 290.339844 265.300781 290.246094 265.300781 290.128906 Z M 265.300781 290.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.585938 294.382812 C 261.585938 294.265625 261.492188 294.171875 261.375 294.171875 C 261.257812 294.171875 261.164062 294.265625 261.164062 294.382812 C 261.164062 294.5 261.257812 294.59375 261.375 294.59375 C 261.492188 294.59375 261.585938 294.5 261.585938 294.382812 Z M 261.585938 294.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.804688 295.574219 C 257.804688 295.457031 257.710938 295.363281 257.59375 295.363281 C 257.476562 295.363281 257.382812 295.457031 257.382812 295.574219 C 257.382812 295.691406 257.476562 295.785156 257.59375 295.785156 C 257.710938 295.785156 257.804688 295.691406 257.804688 295.574219 Z M 257.804688 295.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.871094 293.589844 C 258.871094 293.472656 258.777344 293.378906 258.660156 293.378906 C 258.542969 293.378906 258.449219 293.472656 258.449219 293.589844 C 258.449219 293.707031 258.542969 293.800781 258.660156 293.800781 C 258.777344 293.800781 258.871094 293.707031 258.871094 293.589844 Z M 258.871094 293.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.941406 294.804688 C 258.941406 294.6875 258.847656 294.59375 258.730469 294.59375 C 258.613281 294.59375 258.519531 294.6875 258.519531 294.804688 C 258.519531 294.921875 258.613281 295.015625 258.730469 295.015625 C 258.847656 295.015625 258.941406 294.921875 258.941406 294.804688 Z M 258.941406 294.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.613281 293.371094 C 259.613281 293.253906 259.519531 293.160156 259.402344 293.160156 C 259.285156 293.160156 259.191406 293.253906 259.191406 293.371094 C 259.191406 293.488281 259.285156 293.582031 259.402344 293.582031 C 259.519531 293.582031 259.613281 293.488281 259.613281 293.371094 Z M 259.613281 293.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.332031 289.503906 C 259.332031 289.386719 259.238281 289.292969 259.121094 289.292969 C 259.003906 289.292969 258.910156 289.386719 258.910156 289.503906 C 258.910156 289.621094 259.003906 289.714844 259.121094 289.714844 C 259.238281 289.714844 259.332031 289.621094 259.332031 289.503906 Z M 259.332031 289.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.125 288.433594 C 258.125 288.316406 258.03125 288.222656 257.914062 288.222656 C 257.796875 288.222656 257.703125 288.316406 257.703125 288.433594 C 257.703125 288.550781 257.796875 288.644531 257.914062 288.644531 C 258.03125 288.644531 258.125 288.550781 258.125 288.433594 Z M 258.125 288.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.589844 285.582031 C 260.589844 285.464844 260.496094 285.371094 260.378906 285.371094 C 260.261719 285.371094 260.167969 285.464844 260.167969 285.582031 C 260.167969 285.699219 260.261719 285.792969 260.378906 285.792969 C 260.496094 285.792969 260.589844 285.699219 260.589844 285.582031 Z M 260.589844 285.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.515625 288.425781 C 258.515625 288.308594 258.421875 288.214844 258.304688 288.214844 C 258.1875 288.214844 258.09375 288.308594 258.09375 288.425781 C 258.09375 288.542969 258.1875 288.636719 258.304688 288.636719 C 258.421875 288.636719 258.515625 288.542969 258.515625 288.425781 Z M 258.515625 288.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.746094 289.011719 C 258.746094 288.894531 258.652344 288.800781 258.535156 288.800781 C 258.417969 288.800781 258.324219 288.894531 258.324219 289.011719 C 258.324219 289.128906 258.417969 289.222656 258.535156 289.222656 C 258.652344 289.222656 258.746094 289.128906 258.746094 289.011719 Z M 258.746094 289.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.472656 286.605469 C 255.472656 286.488281 255.378906 286.394531 255.261719 286.394531 C 255.144531 286.394531 255.050781 286.488281 255.050781 286.605469 C 255.050781 286.722656 255.144531 286.816406 255.261719 286.816406 C 255.378906 286.816406 255.472656 286.722656 255.472656 286.605469 Z M 255.472656 286.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.757812 283.578125 C 252.757812 283.460938 252.664062 283.367188 252.546875 283.367188 C 252.429688 283.367188 252.335938 283.460938 252.335938 283.578125 C 252.335938 283.695312 252.429688 283.789062 252.546875 283.789062 C 252.664062 283.789062 252.757812 283.695312 252.757812 283.578125 Z M 252.757812 283.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.542969 281.847656 C 252.542969 281.730469 252.449219 281.636719 252.332031 281.636719 C 252.214844 281.636719 252.121094 281.730469 252.121094 281.847656 C 252.121094 281.964844 252.214844 282.058594 252.332031 282.058594 C 252.449219 282.058594 252.542969 281.964844 252.542969 281.847656 Z M 252.542969 281.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.058594 283.90625 C 255.058594 283.789062 254.964844 283.695312 254.847656 283.695312 C 254.730469 283.695312 254.636719 283.789062 254.636719 283.90625 C 254.636719 284.023438 254.730469 284.117188 254.847656 284.117188 C 254.964844 284.117188 255.058594 284.023438 255.058594 283.90625 Z M 255.058594 283.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.316406 283.550781 C 251.316406 283.433594 251.222656 283.339844 251.105469 283.339844 C 250.988281 283.339844 250.894531 283.433594 250.894531 283.550781 C 250.894531 283.667969 250.988281 283.761719 251.105469 283.761719 C 251.222656 283.761719 251.316406 283.667969 251.316406 283.550781 Z M 251.316406 283.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.082031 282.023438 C 256.082031 281.90625 255.988281 281.8125 255.871094 281.8125 C 255.753906 281.8125 255.660156 281.90625 255.660156 282.023438 C 255.660156 282.140625 255.753906 282.234375 255.871094 282.234375 C 255.988281 282.234375 256.082031 282.140625 256.082031 282.023438 Z M 256.082031 282.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.882812 280.90625 C 253.882812 280.789062 253.789062 280.695312 253.671875 280.695312 C 253.554688 280.695312 253.460938 280.789062 253.460938 280.90625 C 253.460938 281.023438 253.554688 281.117188 253.671875 281.117188 C 253.789062 281.117188 253.882812 281.023438 253.882812 280.90625 Z M 253.882812 280.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.019531 279.394531 C 254.019531 279.277344 253.925781 279.183594 253.808594 279.183594 C 253.691406 279.183594 253.597656 279.277344 253.597656 279.394531 C 253.597656 279.511719 253.691406 279.605469 253.808594 279.605469 C 253.925781 279.605469 254.019531 279.511719 254.019531 279.394531 Z M 254.019531 279.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.289062 279.386719 C 255.289062 279.269531 255.195312 279.175781 255.078125 279.175781 C 254.960938 279.175781 254.867188 279.269531 254.867188 279.386719 C 254.867188 279.503906 254.960938 279.597656 255.078125 279.597656 C 255.195312 279.597656 255.289062 279.503906 255.289062 279.386719 Z M 255.289062 279.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.570312 282.238281 C 253.570312 282.121094 253.476562 282.027344 253.359375 282.027344 C 253.242188 282.027344 253.148438 282.121094 253.148438 282.238281 C 253.148438 282.355469 253.242188 282.449219 253.359375 282.449219 C 253.476562 282.449219 253.570312 282.355469 253.570312 282.238281 Z M 253.570312 282.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.019531 281.703125 C 252.019531 281.585938 251.925781 281.492188 251.808594 281.492188 C 251.691406 281.492188 251.597656 281.585938 251.597656 281.703125 C 251.597656 281.820312 251.691406 281.914062 251.808594 281.914062 C 251.925781 281.914062 252.019531 281.820312 252.019531 281.703125 Z M 252.019531 281.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.714844 280.207031 C 250.714844 280.089844 250.621094 279.996094 250.503906 279.996094 C 250.386719 279.996094 250.292969 280.089844 250.292969 280.207031 C 250.292969 280.324219 250.386719 280.417969 250.503906 280.417969 C 250.621094 280.417969 250.714844 280.324219 250.714844 280.207031 Z M 250.714844 280.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.738281 281.355469 C 247.738281 281.238281 247.644531 281.144531 247.527344 281.144531 C 247.410156 281.144531 247.316406 281.238281 247.316406 281.355469 C 247.316406 281.472656 247.410156 281.566406 247.527344 281.566406 C 247.644531 281.566406 247.738281 281.472656 247.738281 281.355469 Z M 247.738281 281.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249 278.945312 C 249 278.828125 248.90625 278.734375 248.789062 278.734375 C 248.671875 278.734375 248.578125 278.828125 248.578125 278.945312 C 248.578125 279.0625 248.671875 279.15625 248.789062 279.15625 C 248.90625 279.15625 249 279.0625 249 278.945312 Z M 249 278.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.304688 275.644531 C 250.304688 275.527344 250.210938 275.433594 250.09375 275.433594 C 249.976562 275.433594 249.882812 275.527344 249.882812 275.644531 C 249.882812 275.761719 249.976562 275.855469 250.09375 275.855469 C 250.210938 275.855469 250.304688 275.761719 250.304688 275.644531 Z M 250.304688 275.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.59375 281.175781 C 249.59375 281.058594 249.5 280.964844 249.382812 280.964844 C 249.265625 280.964844 249.171875 281.058594 249.171875 281.175781 C 249.171875 281.292969 249.265625 281.386719 249.382812 281.386719 C 249.5 281.386719 249.59375 281.292969 249.59375 281.175781 Z M 249.59375 281.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.382812 279.308594 C 252.382812 279.191406 252.289062 279.097656 252.171875 279.097656 C 252.054688 279.097656 251.960938 279.191406 251.960938 279.308594 C 251.960938 279.425781 252.054688 279.519531 252.171875 279.519531 C 252.289062 279.519531 252.382812 279.425781 252.382812 279.308594 Z M 252.382812 279.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.597656 277.125 C 253.597656 277.007812 253.503906 276.914062 253.386719 276.914062 C 253.269531 276.914062 253.175781 277.007812 253.175781 277.125 C 253.175781 277.242188 253.269531 277.335938 253.386719 277.335938 C 253.503906 277.335938 253.597656 277.242188 253.597656 277.125 Z M 253.597656 277.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.316406 278.417969 C 250.316406 278.300781 250.222656 278.207031 250.105469 278.207031 C 249.988281 278.207031 249.894531 278.300781 249.894531 278.417969 C 249.894531 278.535156 249.988281 278.628906 250.105469 278.628906 C 250.222656 278.628906 250.316406 278.535156 250.316406 278.417969 Z M 250.316406 278.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.738281 281.371094 C 250.738281 281.253906 250.644531 281.160156 250.527344 281.160156 C 250.410156 281.160156 250.316406 281.253906 250.316406 281.371094 C 250.316406 281.488281 250.410156 281.582031 250.527344 281.582031 C 250.644531 281.582031 250.738281 281.488281 250.738281 281.371094 Z M 250.738281 281.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.875 286.40625 C 244.875 286.289062 244.78125 286.195312 244.664062 286.195312 C 244.546875 286.195312 244.453125 286.289062 244.453125 286.40625 C 244.453125 286.523438 244.546875 286.617188 244.664062 286.617188 C 244.78125 286.617188 244.875 286.523438 244.875 286.40625 Z M 244.875 286.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.789062 284.4375 C 246.789062 284.320312 246.695312 284.226562 246.578125 284.226562 C 246.460938 284.226562 246.367188 284.320312 246.367188 284.4375 C 246.367188 284.554688 246.460938 284.648438 246.578125 284.648438 C 246.695312 284.648438 246.789062 284.554688 246.789062 284.4375 Z M 246.789062 284.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.980469 286.421875 C 247.980469 286.304688 247.886719 286.210938 247.769531 286.210938 C 247.652344 286.210938 247.558594 286.304688 247.558594 286.421875 C 247.558594 286.539062 247.652344 286.632812 247.769531 286.632812 C 247.886719 286.632812 247.980469 286.539062 247.980469 286.421875 Z M 247.980469 286.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.097656 289.367188 C 250.097656 289.25 250.003906 289.15625 249.886719 289.15625 C 249.769531 289.15625 249.675781 289.25 249.675781 289.367188 C 249.675781 289.484375 249.769531 289.578125 249.886719 289.578125 C 250.003906 289.578125 250.097656 289.484375 250.097656 289.367188 Z M 250.097656 289.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.523438 289.882812 C 252.523438 289.765625 252.429688 289.671875 252.3125 289.671875 C 252.195312 289.671875 252.101562 289.765625 252.101562 289.882812 C 252.101562 290 252.195312 290.09375 252.3125 290.09375 C 252.429688 290.09375 252.523438 290 252.523438 289.882812 Z M 252.523438 289.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.648438 288.519531 C 251.648438 288.402344 251.554688 288.308594 251.4375 288.308594 C 251.320312 288.308594 251.226562 288.402344 251.226562 288.519531 C 251.226562 288.636719 251.320312 288.730469 251.4375 288.730469 C 251.554688 288.730469 251.648438 288.636719 251.648438 288.519531 Z M 251.648438 288.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.433594 290.378906 C 252.433594 290.261719 252.339844 290.167969 252.222656 290.167969 C 252.105469 290.167969 252.011719 290.261719 252.011719 290.378906 C 252.011719 290.496094 252.105469 290.589844 252.222656 290.589844 C 252.339844 290.589844 252.433594 290.496094 252.433594 290.378906 Z M 252.433594 290.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.75 288.757812 C 251.75 288.640625 251.65625 288.546875 251.539062 288.546875 C 251.421875 288.546875 251.328125 288.640625 251.328125 288.757812 C 251.328125 288.875 251.421875 288.96875 251.539062 288.96875 C 251.65625 288.96875 251.75 288.875 251.75 288.757812 Z M 251.75 288.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.042969 287.769531 C 253.042969 287.652344 252.949219 287.558594 252.832031 287.558594 C 252.714844 287.558594 252.621094 287.652344 252.621094 287.769531 C 252.621094 287.886719 252.714844 287.980469 252.832031 287.980469 C 252.949219 287.980469 253.042969 287.886719 253.042969 287.769531 Z M 253.042969 287.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.441406 287.242188 C 253.441406 287.125 253.347656 287.03125 253.230469 287.03125 C 253.113281 287.03125 253.019531 287.125 253.019531 287.242188 C 253.019531 287.359375 253.113281 287.453125 253.230469 287.453125 C 253.347656 287.453125 253.441406 287.359375 253.441406 287.242188 Z M 253.441406 287.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.117188 283.933594 C 251.117188 283.816406 251.023438 283.722656 250.90625 283.722656 C 250.789062 283.722656 250.695312 283.816406 250.695312 283.933594 C 250.695312 284.050781 250.789062 284.144531 250.90625 284.144531 C 251.023438 284.144531 251.117188 284.050781 251.117188 283.933594 Z M 251.117188 283.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.71875 277.855469 C 251.71875 277.738281 251.625 277.644531 251.507812 277.644531 C 251.390625 277.644531 251.296875 277.738281 251.296875 277.855469 C 251.296875 277.972656 251.390625 278.066406 251.507812 278.066406 C 251.625 278.066406 251.71875 277.972656 251.71875 277.855469 Z M 251.71875 277.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.082031 278.878906 C 256.082031 278.761719 255.988281 278.667969 255.871094 278.667969 C 255.753906 278.667969 255.660156 278.761719 255.660156 278.878906 C 255.660156 278.996094 255.753906 279.089844 255.871094 279.089844 C 255.988281 279.089844 256.082031 278.996094 256.082031 278.878906 Z M 256.082031 278.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.988281 277.027344 C 257.988281 276.910156 257.894531 276.816406 257.777344 276.816406 C 257.660156 276.816406 257.566406 276.910156 257.566406 277.027344 C 257.566406 277.144531 257.660156 277.238281 257.777344 277.238281 C 257.894531 277.238281 257.988281 277.144531 257.988281 277.027344 Z M 257.988281 277.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.683594 278.914062 C 255.683594 278.796875 255.589844 278.703125 255.472656 278.703125 C 255.355469 278.703125 255.261719 278.796875 255.261719 278.914062 C 255.261719 279.03125 255.355469 279.125 255.472656 279.125 C 255.589844 279.125 255.683594 279.03125 255.683594 278.914062 Z M 255.683594 278.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.644531 278.664062 C 253.644531 278.546875 253.550781 278.453125 253.433594 278.453125 C 253.316406 278.453125 253.222656 278.546875 253.222656 278.664062 C 253.222656 278.78125 253.316406 278.875 253.433594 278.875 C 253.550781 278.875 253.644531 278.78125 253.644531 278.664062 Z M 253.644531 278.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.785156 279.914062 C 253.785156 279.796875 253.691406 279.703125 253.574219 279.703125 C 253.457031 279.703125 253.363281 279.796875 253.363281 279.914062 C 253.363281 280.03125 253.457031 280.125 253.574219 280.125 C 253.691406 280.125 253.785156 280.03125 253.785156 279.914062 Z M 253.785156 279.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.394531 280.765625 C 252.394531 280.648438 252.300781 280.554688 252.183594 280.554688 C 252.066406 280.554688 251.972656 280.648438 251.972656 280.765625 C 251.972656 280.882812 252.066406 280.976562 252.183594 280.976562 C 252.300781 280.976562 252.394531 280.882812 252.394531 280.765625 Z M 252.394531 280.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.574219 280.269531 C 253.574219 280.152344 253.480469 280.058594 253.363281 280.058594 C 253.246094 280.058594 253.152344 280.152344 253.152344 280.269531 C 253.152344 280.386719 253.246094 280.480469 253.363281 280.480469 C 253.480469 280.480469 253.574219 280.386719 253.574219 280.269531 Z M 253.574219 280.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.027344 280.714844 C 253.027344 280.597656 252.933594 280.503906 252.816406 280.503906 C 252.699219 280.503906 252.605469 280.597656 252.605469 280.714844 C 252.605469 280.832031 252.699219 280.925781 252.816406 280.925781 C 252.933594 280.925781 253.027344 280.832031 253.027344 280.714844 Z M 253.027344 280.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.273438 283 C 252.273438 282.882812 252.179688 282.789062 252.0625 282.789062 C 251.945312 282.789062 251.851562 282.882812 251.851562 283 C 251.851562 283.117188 251.945312 283.210938 252.0625 283.210938 C 252.179688 283.210938 252.273438 283.117188 252.273438 283 Z M 252.273438 283 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.621094 282.957031 C 252.621094 282.839844 252.527344 282.746094 252.410156 282.746094 C 252.292969 282.746094 252.199219 282.839844 252.199219 282.957031 C 252.199219 283.074219 252.292969 283.167969 252.410156 283.167969 C 252.527344 283.167969 252.621094 283.074219 252.621094 282.957031 Z M 252.621094 282.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.605469 283.210938 C 256.605469 283.09375 256.511719 283 256.394531 283 C 256.277344 283 256.183594 283.09375 256.183594 283.210938 C 256.183594 283.328125 256.277344 283.421875 256.394531 283.421875 C 256.511719 283.421875 256.605469 283.328125 256.605469 283.210938 Z M 256.605469 283.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.007812 281.136719 C 252.007812 281.019531 251.914062 280.925781 251.796875 280.925781 C 251.679688 280.925781 251.585938 281.019531 251.585938 281.136719 C 251.585938 281.253906 251.679688 281.347656 251.796875 281.347656 C 251.914062 281.347656 252.007812 281.253906 252.007812 281.136719 Z M 252.007812 281.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.308594 281.230469 C 249.308594 281.113281 249.214844 281.019531 249.097656 281.019531 C 248.980469 281.019531 248.886719 281.113281 248.886719 281.230469 C 248.886719 281.347656 248.980469 281.441406 249.097656 281.441406 C 249.214844 281.441406 249.308594 281.347656 249.308594 281.230469 Z M 249.308594 281.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.320312 280.660156 C 249.320312 280.542969 249.226562 280.449219 249.109375 280.449219 C 248.992188 280.449219 248.898438 280.542969 248.898438 280.660156 C 248.898438 280.777344 248.992188 280.871094 249.109375 280.871094 C 249.226562 280.871094 249.320312 280.777344 249.320312 280.660156 Z M 249.320312 280.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.277344 284.789062 C 247.277344 284.671875 247.183594 284.578125 247.066406 284.578125 C 246.949219 284.578125 246.855469 284.671875 246.855469 284.789062 C 246.855469 284.90625 246.949219 285 247.066406 285 C 247.183594 285 247.277344 284.90625 247.277344 284.789062 Z M 247.277344 284.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.320312 280.167969 C 250.320312 280.050781 250.226562 279.957031 250.109375 279.957031 C 249.992188 279.957031 249.898438 280.050781 249.898438 280.167969 C 249.898438 280.285156 249.992188 280.378906 250.109375 280.378906 C 250.226562 280.378906 250.320312 280.285156 250.320312 280.167969 Z M 250.320312 280.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.1875 279.757812 C 249.1875 279.640625 249.09375 279.546875 248.976562 279.546875 C 248.859375 279.546875 248.765625 279.640625 248.765625 279.757812 C 248.765625 279.875 248.859375 279.96875 248.976562 279.96875 C 249.09375 279.96875 249.1875 279.875 249.1875 279.757812 Z M 249.1875 279.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.261719 277.203125 C 250.261719 277.085938 250.167969 276.992188 250.050781 276.992188 C 249.933594 276.992188 249.839844 277.085938 249.839844 277.203125 C 249.839844 277.320312 249.933594 277.414062 250.050781 277.414062 C 250.167969 277.414062 250.261719 277.320312 250.261719 277.203125 Z M 250.261719 277.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.722656 278.386719 C 252.722656 278.269531 252.628906 278.175781 252.511719 278.175781 C 252.394531 278.175781 252.300781 278.269531 252.300781 278.386719 C 252.300781 278.503906 252.394531 278.597656 252.511719 278.597656 C 252.628906 278.597656 252.722656 278.503906 252.722656 278.386719 Z M 252.722656 278.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.707031 275.976562 C 254.707031 275.859375 254.613281 275.765625 254.496094 275.765625 C 254.378906 275.765625 254.285156 275.859375 254.285156 275.976562 C 254.285156 276.09375 254.378906 276.1875 254.496094 276.1875 C 254.613281 276.1875 254.707031 276.09375 254.707031 275.976562 Z M 254.707031 275.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.898438 272.664062 C 256.898438 272.546875 256.804688 272.453125 256.6875 272.453125 C 256.570312 272.453125 256.476562 272.546875 256.476562 272.664062 C 256.476562 272.78125 256.570312 272.875 256.6875 272.875 C 256.804688 272.875 256.898438 272.78125 256.898438 272.664062 Z M 256.898438 272.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.542969 274.972656 C 255.542969 274.855469 255.449219 274.761719 255.332031 274.761719 C 255.214844 274.761719 255.121094 274.855469 255.121094 274.972656 C 255.121094 275.089844 255.214844 275.183594 255.332031 275.183594 C 255.449219 275.183594 255.542969 275.089844 255.542969 274.972656 Z M 255.542969 274.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.761719 278.691406 C 251.761719 278.574219 251.667969 278.480469 251.550781 278.480469 C 251.433594 278.480469 251.339844 278.574219 251.339844 278.691406 C 251.339844 278.808594 251.433594 278.902344 251.550781 278.902344 C 251.667969 278.902344 251.761719 278.808594 251.761719 278.691406 Z M 251.761719 278.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.449219 277.445312 C 255.449219 277.328125 255.355469 277.234375 255.238281 277.234375 C 255.121094 277.234375 255.027344 277.328125 255.027344 277.445312 C 255.027344 277.5625 255.121094 277.65625 255.238281 277.65625 C 255.355469 277.65625 255.449219 277.5625 255.449219 277.445312 Z M 255.449219 277.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.542969 278.949219 C 255.542969 278.832031 255.449219 278.738281 255.332031 278.738281 C 255.214844 278.738281 255.121094 278.832031 255.121094 278.949219 C 255.121094 279.066406 255.214844 279.160156 255.332031 279.160156 C 255.449219 279.160156 255.542969 279.066406 255.542969 278.949219 Z M 255.542969 278.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.230469 279.5625 C 259.230469 279.445312 259.136719 279.351562 259.019531 279.351562 C 258.902344 279.351562 258.808594 279.445312 258.808594 279.5625 C 258.808594 279.679688 258.902344 279.773438 259.019531 279.773438 C 259.136719 279.773438 259.230469 279.679688 259.230469 279.5625 Z M 259.230469 279.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.765625 282.246094 C 262.765625 282.128906 262.671875 282.035156 262.554688 282.035156 C 262.4375 282.035156 262.34375 282.128906 262.34375 282.246094 C 262.34375 282.363281 262.4375 282.457031 262.554688 282.457031 C 262.671875 282.457031 262.765625 282.363281 262.765625 282.246094 Z M 262.765625 282.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.488281 283.957031 C 262.488281 283.839844 262.394531 283.746094 262.277344 283.746094 C 262.160156 283.746094 262.066406 283.839844 262.066406 283.957031 C 262.066406 284.074219 262.160156 284.167969 262.277344 284.167969 C 262.394531 284.167969 262.488281 284.074219 262.488281 283.957031 Z M 262.488281 283.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.734375 281.902344 C 260.734375 281.785156 260.640625 281.691406 260.523438 281.691406 C 260.40625 281.691406 260.3125 281.785156 260.3125 281.902344 C 260.3125 282.019531 260.40625 282.113281 260.523438 282.113281 C 260.640625 282.113281 260.734375 282.019531 260.734375 281.902344 Z M 260.734375 281.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.988281 280.648438 C 262.988281 280.53125 262.894531 280.4375 262.777344 280.4375 C 262.660156 280.4375 262.566406 280.53125 262.566406 280.648438 C 262.566406 280.765625 262.660156 280.859375 262.777344 280.859375 C 262.894531 280.859375 262.988281 280.765625 262.988281 280.648438 Z M 262.988281 280.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.882812 279.265625 C 261.882812 279.148438 261.789062 279.054688 261.671875 279.054688 C 261.554688 279.054688 261.460938 279.148438 261.460938 279.265625 C 261.460938 279.382812 261.554688 279.476562 261.671875 279.476562 C 261.789062 279.476562 261.882812 279.382812 261.882812 279.265625 Z M 261.882812 279.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.875 274.910156 C 261.875 274.792969 261.78125 274.699219 261.664062 274.699219 C 261.546875 274.699219 261.453125 274.792969 261.453125 274.910156 C 261.453125 275.027344 261.546875 275.121094 261.664062 275.121094 C 261.78125 275.121094 261.875 275.027344 261.875 274.910156 Z M 261.875 274.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.75 276.417969 C 262.75 276.300781 262.65625 276.207031 262.539062 276.207031 C 262.421875 276.207031 262.328125 276.300781 262.328125 276.417969 C 262.328125 276.535156 262.421875 276.628906 262.539062 276.628906 C 262.65625 276.628906 262.75 276.535156 262.75 276.417969 Z M 262.75 276.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.226562 274.359375 C 262.226562 274.242188 262.132812 274.148438 262.015625 274.148438 C 261.898438 274.148438 261.804688 274.242188 261.804688 274.359375 C 261.804688 274.476562 261.898438 274.570312 262.015625 274.570312 C 262.132812 274.570312 262.226562 274.476562 262.226562 274.359375 Z M 262.226562 274.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.464844 272.527344 C 266.464844 272.410156 266.371094 272.316406 266.253906 272.316406 C 266.136719 272.316406 266.042969 272.410156 266.042969 272.527344 C 266.042969 272.644531 266.136719 272.738281 266.253906 272.738281 C 266.371094 272.738281 266.464844 272.644531 266.464844 272.527344 Z M 266.464844 272.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.46875 271.679688 C 266.46875 271.5625 266.375 271.46875 266.257812 271.46875 C 266.140625 271.46875 266.046875 271.5625 266.046875 271.679688 C 266.046875 271.796875 266.140625 271.890625 266.257812 271.890625 C 266.375 271.890625 266.46875 271.796875 266.46875 271.679688 Z M 266.46875 271.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.71875 271.128906 C 263.71875 271.011719 263.625 270.917969 263.507812 270.917969 C 263.390625 270.917969 263.296875 271.011719 263.296875 271.128906 C 263.296875 271.246094 263.390625 271.339844 263.507812 271.339844 C 263.625 271.339844 263.71875 271.246094 263.71875 271.128906 Z M 263.71875 271.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.40625 269.53125 C 264.40625 269.414062 264.3125 269.320312 264.195312 269.320312 C 264.078125 269.320312 263.984375 269.414062 263.984375 269.53125 C 263.984375 269.648438 264.078125 269.742188 264.195312 269.742188 C 264.3125 269.742188 264.40625 269.648438 264.40625 269.53125 Z M 264.40625 269.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.335938 271.191406 C 265.335938 271.074219 265.242188 270.980469 265.125 270.980469 C 265.007812 270.980469 264.914062 271.074219 264.914062 271.191406 C 264.914062 271.308594 265.007812 271.402344 265.125 271.402344 C 265.242188 271.402344 265.335938 271.308594 265.335938 271.191406 Z M 265.335938 271.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.039062 272.695312 C 268.039062 272.578125 267.945312 272.484375 267.828125 272.484375 C 267.710938 272.484375 267.617188 272.578125 267.617188 272.695312 C 267.617188 272.8125 267.710938 272.90625 267.828125 272.90625 C 267.945312 272.90625 268.039062 272.8125 268.039062 272.695312 Z M 268.039062 272.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.328125 271.796875 C 267.328125 271.679688 267.234375 271.585938 267.117188 271.585938 C 267 271.585938 266.90625 271.679688 266.90625 271.796875 C 266.90625 271.914062 267 272.007812 267.117188 272.007812 C 267.234375 272.007812 267.328125 271.914062 267.328125 271.796875 Z M 267.328125 271.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.410156 272.804688 C 267.410156 272.6875 267.316406 272.59375 267.199219 272.59375 C 267.082031 272.59375 266.988281 272.6875 266.988281 272.804688 C 266.988281 272.921875 267.082031 273.015625 267.199219 273.015625 C 267.316406 273.015625 267.410156 272.921875 267.410156 272.804688 Z M 267.410156 272.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.113281 269.621094 C 267.113281 269.503906 267.019531 269.410156 266.902344 269.410156 C 266.785156 269.410156 266.691406 269.503906 266.691406 269.621094 C 266.691406 269.738281 266.785156 269.832031 266.902344 269.832031 C 267.019531 269.832031 267.113281 269.738281 267.113281 269.621094 Z M 267.113281 269.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.351562 271.1875 C 266.351562 271.070312 266.257812 270.976562 266.140625 270.976562 C 266.023438 270.976562 265.929688 271.070312 265.929688 271.1875 C 265.929688 271.304688 266.023438 271.398438 266.140625 271.398438 C 266.257812 271.398438 266.351562 271.304688 266.351562 271.1875 Z M 266.351562 271.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.027344 271.242188 C 269.027344 271.125 268.933594 271.03125 268.816406 271.03125 C 268.699219 271.03125 268.605469 271.125 268.605469 271.242188 C 268.605469 271.359375 268.699219 271.453125 268.816406 271.453125 C 268.933594 271.453125 269.027344 271.359375 269.027344 271.242188 Z M 269.027344 271.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.691406 269.003906 C 273.691406 268.886719 273.597656 268.792969 273.480469 268.792969 C 273.363281 268.792969 273.269531 268.886719 273.269531 269.003906 C 273.269531 269.121094 273.363281 269.214844 273.480469 269.214844 C 273.597656 269.214844 273.691406 269.121094 273.691406 269.003906 Z M 273.691406 269.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.695312 264.027344 C 271.695312 263.910156 271.601562 263.816406 271.484375 263.816406 C 271.367188 263.816406 271.273438 263.910156 271.273438 264.027344 C 271.273438 264.144531 271.367188 264.238281 271.484375 264.238281 C 271.601562 264.238281 271.695312 264.144531 271.695312 264.027344 Z M 271.695312 264.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.90625 267.539062 C 270.90625 267.421875 270.8125 267.328125 270.695312 267.328125 C 270.578125 267.328125 270.484375 267.421875 270.484375 267.539062 C 270.484375 267.65625 270.578125 267.75 270.695312 267.75 C 270.8125 267.75 270.90625 267.65625 270.90625 267.539062 Z M 270.90625 267.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.3125 269.714844 C 272.3125 269.597656 272.21875 269.503906 272.101562 269.503906 C 271.984375 269.503906 271.890625 269.597656 271.890625 269.714844 C 271.890625 269.832031 271.984375 269.925781 272.101562 269.925781 C 272.21875 269.925781 272.3125 269.832031 272.3125 269.714844 Z M 272.3125 269.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.265625 271.25 C 272.265625 271.132812 272.171875 271.039062 272.054688 271.039062 C 271.9375 271.039062 271.84375 271.132812 271.84375 271.25 C 271.84375 271.367188 271.9375 271.460938 272.054688 271.460938 C 272.171875 271.460938 272.265625 271.367188 272.265625 271.25 Z M 272.265625 271.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.894531 273.195312 C 269.894531 273.078125 269.800781 272.984375 269.683594 272.984375 C 269.566406 272.984375 269.472656 273.078125 269.472656 273.195312 C 269.472656 273.3125 269.566406 273.40625 269.683594 273.40625 C 269.800781 273.40625 269.894531 273.3125 269.894531 273.195312 Z M 269.894531 273.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.058594 271.761719 C 273.058594 271.644531 272.964844 271.550781 272.847656 271.550781 C 272.730469 271.550781 272.636719 271.644531 272.636719 271.761719 C 272.636719 271.878906 272.730469 271.972656 272.847656 271.972656 C 272.964844 271.972656 273.058594 271.878906 273.058594 271.761719 Z M 273.058594 271.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.855469 273.28125 C 270.855469 273.164062 270.761719 273.070312 270.644531 273.070312 C 270.527344 273.070312 270.433594 273.164062 270.433594 273.28125 C 270.433594 273.398438 270.527344 273.492188 270.644531 273.492188 C 270.761719 273.492188 270.855469 273.398438 270.855469 273.28125 Z M 270.855469 273.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.0625 272.800781 C 270.0625 272.683594 269.96875 272.589844 269.851562 272.589844 C 269.734375 272.589844 269.640625 272.683594 269.640625 272.800781 C 269.640625 272.917969 269.734375 273.011719 269.851562 273.011719 C 269.96875 273.011719 270.0625 272.917969 270.0625 272.800781 Z M 270.0625 272.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.128906 272.605469 C 269.128906 272.488281 269.035156 272.394531 268.917969 272.394531 C 268.800781 272.394531 268.707031 272.488281 268.707031 272.605469 C 268.707031 272.722656 268.800781 272.816406 268.917969 272.816406 C 269.035156 272.816406 269.128906 272.722656 269.128906 272.605469 Z M 269.128906 272.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.621094 268.921875 C 268.621094 268.804688 268.527344 268.710938 268.410156 268.710938 C 268.292969 268.710938 268.199219 268.804688 268.199219 268.921875 C 268.199219 269.039062 268.292969 269.132812 268.410156 269.132812 C 268.527344 269.132812 268.621094 269.039062 268.621094 268.921875 Z M 268.621094 268.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.738281 267.75 C 265.738281 267.632812 265.644531 267.539062 265.527344 267.539062 C 265.410156 267.539062 265.316406 267.632812 265.316406 267.75 C 265.316406 267.867188 265.410156 267.960938 265.527344 267.960938 C 265.644531 267.960938 265.738281 267.867188 265.738281 267.75 Z M 265.738281 267.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.472656 268.289062 C 269.472656 268.171875 269.378906 268.078125 269.261719 268.078125 C 269.144531 268.078125 269.050781 268.171875 269.050781 268.289062 C 269.050781 268.40625 269.144531 268.5 269.261719 268.5 C 269.378906 268.5 269.472656 268.40625 269.472656 268.289062 Z M 269.472656 268.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.710938 268.214844 C 271.710938 268.097656 271.617188 268.003906 271.5 268.003906 C 271.382812 268.003906 271.289062 268.097656 271.289062 268.214844 C 271.289062 268.332031 271.382812 268.425781 271.5 268.425781 C 271.617188 268.425781 271.710938 268.332031 271.710938 268.214844 Z M 271.710938 268.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.113281 267.636719 C 273.113281 267.519531 273.019531 267.425781 272.902344 267.425781 C 272.785156 267.425781 272.691406 267.519531 272.691406 267.636719 C 272.691406 267.753906 272.785156 267.847656 272.902344 267.847656 C 273.019531 267.847656 273.113281 267.753906 273.113281 267.636719 Z M 273.113281 267.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.707031 266.34375 C 272.707031 266.226562 272.613281 266.132812 272.496094 266.132812 C 272.378906 266.132812 272.285156 266.226562 272.285156 266.34375 C 272.285156 266.460938 272.378906 266.554688 272.496094 266.554688 C 272.613281 266.554688 272.707031 266.460938 272.707031 266.34375 Z M 272.707031 266.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.488281 269.980469 C 273.488281 269.863281 273.394531 269.769531 273.277344 269.769531 C 273.160156 269.769531 273.066406 269.863281 273.066406 269.980469 C 273.066406 270.097656 273.160156 270.191406 273.277344 270.191406 C 273.394531 270.191406 273.488281 270.097656 273.488281 269.980469 Z M 273.488281 269.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.710938 271.746094 C 272.710938 271.628906 272.617188 271.535156 272.5 271.535156 C 272.382812 271.535156 272.289062 271.628906 272.289062 271.746094 C 272.289062 271.863281 272.382812 271.957031 272.5 271.957031 C 272.617188 271.957031 272.710938 271.863281 272.710938 271.746094 Z M 272.710938 271.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.125 268.449219 C 274.125 268.332031 274.03125 268.238281 273.914062 268.238281 C 273.796875 268.238281 273.703125 268.332031 273.703125 268.449219 C 273.703125 268.566406 273.796875 268.660156 273.914062 268.660156 C 274.03125 268.660156 274.125 268.566406 274.125 268.449219 Z M 274.125 268.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.097656 268.613281 C 276.097656 268.496094 276.003906 268.402344 275.886719 268.402344 C 275.769531 268.402344 275.675781 268.496094 275.675781 268.613281 C 275.675781 268.730469 275.769531 268.824219 275.886719 268.824219 C 276.003906 268.824219 276.097656 268.730469 276.097656 268.613281 Z M 276.097656 268.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.261719 267.105469 C 276.261719 266.988281 276.167969 266.894531 276.050781 266.894531 C 275.933594 266.894531 275.839844 266.988281 275.839844 267.105469 C 275.839844 267.222656 275.933594 267.316406 276.050781 267.316406 C 276.167969 267.316406 276.261719 267.222656 276.261719 267.105469 Z M 276.261719 267.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.972656 266.96875 C 275.972656 266.851562 275.878906 266.757812 275.761719 266.757812 C 275.644531 266.757812 275.550781 266.851562 275.550781 266.96875 C 275.550781 267.085938 275.644531 267.179688 275.761719 267.179688 C 275.878906 267.179688 275.972656 267.085938 275.972656 266.96875 Z M 275.972656 266.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.875 267.601562 C 274.875 267.484375 274.78125 267.390625 274.664062 267.390625 C 274.546875 267.390625 274.453125 267.484375 274.453125 267.601562 C 274.453125 267.71875 274.546875 267.8125 274.664062 267.8125 C 274.78125 267.8125 274.875 267.71875 274.875 267.601562 Z M 274.875 267.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.816406 267.734375 C 273.816406 267.617188 273.722656 267.523438 273.605469 267.523438 C 273.488281 267.523438 273.394531 267.617188 273.394531 267.734375 C 273.394531 267.851562 273.488281 267.945312 273.605469 267.945312 C 273.722656 267.945312 273.816406 267.851562 273.816406 267.734375 Z M 273.816406 267.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.996094 269.722656 C 274.996094 269.605469 274.902344 269.511719 274.785156 269.511719 C 274.667969 269.511719 274.574219 269.605469 274.574219 269.722656 C 274.574219 269.839844 274.667969 269.933594 274.785156 269.933594 C 274.902344 269.933594 274.996094 269.839844 274.996094 269.722656 Z M 274.996094 269.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.621094 274.289062 C 275.621094 274.171875 275.527344 274.078125 275.410156 274.078125 C 275.292969 274.078125 275.199219 274.171875 275.199219 274.289062 C 275.199219 274.40625 275.292969 274.5 275.410156 274.5 C 275.527344 274.5 275.621094 274.40625 275.621094 274.289062 Z M 275.621094 274.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.183594 273.046875 C 277.183594 272.929688 277.089844 272.835938 276.972656 272.835938 C 276.855469 272.835938 276.761719 272.929688 276.761719 273.046875 C 276.761719 273.164062 276.855469 273.257812 276.972656 273.257812 C 277.089844 273.257812 277.183594 273.164062 277.183594 273.046875 Z M 277.183594 273.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.550781 271.523438 C 279.550781 271.40625 279.457031 271.3125 279.339844 271.3125 C 279.222656 271.3125 279.128906 271.40625 279.128906 271.523438 C 279.128906 271.640625 279.222656 271.734375 279.339844 271.734375 C 279.457031 271.734375 279.550781 271.640625 279.550781 271.523438 Z M 279.550781 271.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.144531 270.636719 C 280.144531 270.519531 280.050781 270.425781 279.933594 270.425781 C 279.816406 270.425781 279.722656 270.519531 279.722656 270.636719 C 279.722656 270.753906 279.816406 270.847656 279.933594 270.847656 C 280.050781 270.847656 280.144531 270.753906 280.144531 270.636719 Z M 280.144531 270.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.199219 269.625 C 282.199219 269.507812 282.105469 269.414062 281.988281 269.414062 C 281.871094 269.414062 281.777344 269.507812 281.777344 269.625 C 281.777344 269.742188 281.871094 269.835938 281.988281 269.835938 C 282.105469 269.835938 282.199219 269.742188 282.199219 269.625 Z M 282.199219 269.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.511719 269.308594 C 282.511719 269.191406 282.417969 269.097656 282.300781 269.097656 C 282.183594 269.097656 282.089844 269.191406 282.089844 269.308594 C 282.089844 269.425781 282.183594 269.519531 282.300781 269.519531 C 282.417969 269.519531 282.511719 269.425781 282.511719 269.308594 Z M 282.511719 269.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.140625 269.300781 C 280.140625 269.183594 280.046875 269.089844 279.929688 269.089844 C 279.8125 269.089844 279.71875 269.183594 279.71875 269.300781 C 279.71875 269.417969 279.8125 269.511719 279.929688 269.511719 C 280.046875 269.511719 280.140625 269.417969 280.140625 269.300781 Z M 280.140625 269.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.628906 267.945312 C 282.628906 267.828125 282.535156 267.734375 282.417969 267.734375 C 282.300781 267.734375 282.207031 267.828125 282.207031 267.945312 C 282.207031 268.0625 282.300781 268.15625 282.417969 268.15625 C 282.535156 268.15625 282.628906 268.0625 282.628906 267.945312 Z M 282.628906 267.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.253906 268.246094 C 280.253906 268.128906 280.160156 268.035156 280.042969 268.035156 C 279.925781 268.035156 279.832031 268.128906 279.832031 268.246094 C 279.832031 268.363281 279.925781 268.457031 280.042969 268.457031 C 280.160156 268.457031 280.253906 268.363281 280.253906 268.246094 Z M 280.253906 268.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.6875 274.007812 C 279.6875 273.890625 279.59375 273.796875 279.476562 273.796875 C 279.359375 273.796875 279.265625 273.890625 279.265625 274.007812 C 279.265625 274.125 279.359375 274.21875 279.476562 274.21875 C 279.59375 274.21875 279.6875 274.125 279.6875 274.007812 Z M 279.6875 274.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.339844 274.0625 C 282.339844 273.945312 282.246094 273.851562 282.128906 273.851562 C 282.011719 273.851562 281.917969 273.945312 281.917969 274.0625 C 281.917969 274.179688 282.011719 274.273438 282.128906 274.273438 C 282.246094 274.273438 282.339844 274.179688 282.339844 274.0625 Z M 282.339844 274.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.578125 272.753906 C 281.578125 272.636719 281.484375 272.542969 281.367188 272.542969 C 281.25 272.542969 281.15625 272.636719 281.15625 272.753906 C 281.15625 272.871094 281.25 272.964844 281.367188 272.964844 C 281.484375 272.964844 281.578125 272.871094 281.578125 272.753906 Z M 281.578125 272.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.023438 267.5 C 282.023438 267.382812 281.929688 267.289062 281.8125 267.289062 C 281.695312 267.289062 281.601562 267.382812 281.601562 267.5 C 281.601562 267.617188 281.695312 267.710938 281.8125 267.710938 C 281.929688 267.710938 282.023438 267.617188 282.023438 267.5 Z M 282.023438 267.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.933594 269.175781 C 282.933594 269.058594 282.839844 268.964844 282.722656 268.964844 C 282.605469 268.964844 282.511719 269.058594 282.511719 269.175781 C 282.511719 269.292969 282.605469 269.386719 282.722656 269.386719 C 282.839844 269.386719 282.933594 269.292969 282.933594 269.175781 Z M 282.933594 269.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.71875 264.582031 C 279.71875 264.464844 279.625 264.371094 279.507812 264.371094 C 279.390625 264.371094 279.296875 264.464844 279.296875 264.582031 C 279.296875 264.699219 279.390625 264.792969 279.507812 264.792969 C 279.625 264.792969 279.71875 264.699219 279.71875 264.582031 Z M 279.71875 264.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.039062 266.171875 C 285.039062 266.054688 284.945312 265.960938 284.828125 265.960938 C 284.710938 265.960938 284.617188 266.054688 284.617188 266.171875 C 284.617188 266.289062 284.710938 266.382812 284.828125 266.382812 C 284.945312 266.382812 285.039062 266.289062 285.039062 266.171875 Z M 285.039062 266.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.375 266.160156 C 288.375 266.042969 288.28125 265.949219 288.164062 265.949219 C 288.046875 265.949219 287.953125 266.042969 287.953125 266.160156 C 287.953125 266.277344 288.046875 266.371094 288.164062 266.371094 C 288.28125 266.371094 288.375 266.277344 288.375 266.160156 Z M 288.375 266.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.199219 269.652344 C 290.199219 269.535156 290.105469 269.441406 289.988281 269.441406 C 289.871094 269.441406 289.777344 269.535156 289.777344 269.652344 C 289.777344 269.769531 289.871094 269.863281 289.988281 269.863281 C 290.105469 269.863281 290.199219 269.769531 290.199219 269.652344 Z M 290.199219 269.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.808594 267.53125 C 291.808594 267.414062 291.714844 267.320312 291.597656 267.320312 C 291.480469 267.320312 291.386719 267.414062 291.386719 267.53125 C 291.386719 267.648438 291.480469 267.742188 291.597656 267.742188 C 291.714844 267.742188 291.808594 267.648438 291.808594 267.53125 Z M 291.808594 267.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.972656 270.90625 C 290.972656 270.789062 290.878906 270.695312 290.761719 270.695312 C 290.644531 270.695312 290.550781 270.789062 290.550781 270.90625 C 290.550781 271.023438 290.644531 271.117188 290.761719 271.117188 C 290.878906 271.117188 290.972656 271.023438 290.972656 270.90625 Z M 290.972656 270.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.996094 270.773438 C 291.996094 270.65625 291.902344 270.5625 291.785156 270.5625 C 291.667969 270.5625 291.574219 270.65625 291.574219 270.773438 C 291.574219 270.890625 291.667969 270.984375 291.785156 270.984375 C 291.902344 270.984375 291.996094 270.890625 291.996094 270.773438 Z M 291.996094 270.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.4375 269.507812 C 289.4375 269.390625 289.34375 269.296875 289.226562 269.296875 C 289.109375 269.296875 289.015625 269.390625 289.015625 269.507812 C 289.015625 269.625 289.109375 269.71875 289.226562 269.71875 C 289.34375 269.71875 289.4375 269.625 289.4375 269.507812 Z M 289.4375 269.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.671875 267.859375 C 287.671875 267.742188 287.578125 267.648438 287.460938 267.648438 C 287.34375 267.648438 287.25 267.742188 287.25 267.859375 C 287.25 267.976562 287.34375 268.070312 287.460938 268.070312 C 287.578125 268.070312 287.671875 267.976562 287.671875 267.859375 Z M 287.671875 267.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.445312 271.640625 C 287.445312 271.523438 287.351562 271.429688 287.234375 271.429688 C 287.117188 271.429688 287.023438 271.523438 287.023438 271.640625 C 287.023438 271.757812 287.117188 271.851562 287.234375 271.851562 C 287.351562 271.851562 287.445312 271.757812 287.445312 271.640625 Z M 287.445312 271.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.199219 270.742188 C 289.199219 270.625 289.105469 270.53125 288.988281 270.53125 C 288.871094 270.53125 288.777344 270.625 288.777344 270.742188 C 288.777344 270.859375 288.871094 270.953125 288.988281 270.953125 C 289.105469 270.953125 289.199219 270.859375 289.199219 270.742188 Z M 289.199219 270.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.042969 271.394531 C 289.042969 271.277344 288.949219 271.183594 288.832031 271.183594 C 288.714844 271.183594 288.621094 271.277344 288.621094 271.394531 C 288.621094 271.511719 288.714844 271.605469 288.832031 271.605469 C 288.949219 271.605469 289.042969 271.511719 289.042969 271.394531 Z M 289.042969 271.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.6875 269.570312 C 288.6875 269.453125 288.59375 269.359375 288.476562 269.359375 C 288.359375 269.359375 288.265625 269.453125 288.265625 269.570312 C 288.265625 269.6875 288.359375 269.78125 288.476562 269.78125 C 288.59375 269.78125 288.6875 269.6875 288.6875 269.570312 Z M 288.6875 269.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.496094 270.25 C 290.496094 270.132812 290.402344 270.039062 290.285156 270.039062 C 290.167969 270.039062 290.074219 270.132812 290.074219 270.25 C 290.074219 270.367188 290.167969 270.460938 290.285156 270.460938 C 290.402344 270.460938 290.496094 270.367188 290.496094 270.25 Z M 290.496094 270.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.265625 272.257812 C 291.265625 272.140625 291.171875 272.046875 291.054688 272.046875 C 290.9375 272.046875 290.84375 272.140625 290.84375 272.257812 C 290.84375 272.375 290.9375 272.46875 291.054688 272.46875 C 291.171875 272.46875 291.265625 272.375 291.265625 272.257812 Z M 291.265625 272.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.074219 273.558594 C 292.074219 273.441406 291.980469 273.347656 291.863281 273.347656 C 291.746094 273.347656 291.652344 273.441406 291.652344 273.558594 C 291.652344 273.675781 291.746094 273.769531 291.863281 273.769531 C 291.980469 273.769531 292.074219 273.675781 292.074219 273.558594 Z M 292.074219 273.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.636719 269.394531 C 286.636719 269.277344 286.542969 269.183594 286.425781 269.183594 C 286.308594 269.183594 286.214844 269.277344 286.214844 269.394531 C 286.214844 269.511719 286.308594 269.605469 286.425781 269.605469 C 286.542969 269.605469 286.636719 269.511719 286.636719 269.394531 Z M 286.636719 269.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.65625 271.644531 C 285.65625 271.527344 285.5625 271.433594 285.445312 271.433594 C 285.328125 271.433594 285.234375 271.527344 285.234375 271.644531 C 285.234375 271.761719 285.328125 271.855469 285.445312 271.855469 C 285.5625 271.855469 285.65625 271.761719 285.65625 271.644531 Z M 285.65625 271.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.441406 273.09375 C 287.441406 272.976562 287.347656 272.882812 287.230469 272.882812 C 287.113281 272.882812 287.019531 272.976562 287.019531 273.09375 C 287.019531 273.210938 287.113281 273.304688 287.230469 273.304688 C 287.347656 273.304688 287.441406 273.210938 287.441406 273.09375 Z M 287.441406 273.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.148438 275.792969 C 287.148438 275.675781 287.054688 275.582031 286.9375 275.582031 C 286.820312 275.582031 286.726562 275.675781 286.726562 275.792969 C 286.726562 275.910156 286.820312 276.003906 286.9375 276.003906 C 287.054688 276.003906 287.148438 275.910156 287.148438 275.792969 Z M 287.148438 275.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.859375 278.945312 C 283.859375 278.828125 283.765625 278.734375 283.648438 278.734375 C 283.53125 278.734375 283.4375 278.828125 283.4375 278.945312 C 283.4375 279.0625 283.53125 279.15625 283.648438 279.15625 C 283.765625 279.15625 283.859375 279.0625 283.859375 278.945312 Z M 283.859375 278.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.027344 278.445312 C 283.027344 278.328125 282.933594 278.234375 282.816406 278.234375 C 282.699219 278.234375 282.605469 278.328125 282.605469 278.445312 C 282.605469 278.5625 282.699219 278.65625 282.816406 278.65625 C 282.933594 278.65625 283.027344 278.5625 283.027344 278.445312 Z M 283.027344 278.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.871094 276.714844 C 286.871094 276.597656 286.777344 276.503906 286.660156 276.503906 C 286.542969 276.503906 286.449219 276.597656 286.449219 276.714844 C 286.449219 276.832031 286.542969 276.925781 286.660156 276.925781 C 286.777344 276.925781 286.871094 276.832031 286.871094 276.714844 Z M 286.871094 276.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.953125 274.289062 C 286.953125 274.171875 286.859375 274.078125 286.742188 274.078125 C 286.625 274.078125 286.53125 274.171875 286.53125 274.289062 C 286.53125 274.40625 286.625 274.5 286.742188 274.5 C 286.859375 274.5 286.953125 274.40625 286.953125 274.289062 Z M 286.953125 274.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.234375 270.109375 C 288.234375 269.992188 288.140625 269.898438 288.023438 269.898438 C 287.90625 269.898438 287.8125 269.992188 287.8125 270.109375 C 287.8125 270.226562 287.90625 270.320312 288.023438 270.320312 C 288.140625 270.320312 288.234375 270.226562 288.234375 270.109375 Z M 288.234375 270.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.316406 267.390625 C 287.316406 267.273438 287.222656 267.179688 287.105469 267.179688 C 286.988281 267.179688 286.894531 267.273438 286.894531 267.390625 C 286.894531 267.507812 286.988281 267.601562 287.105469 267.601562 C 287.222656 267.601562 287.316406 267.507812 287.316406 267.390625 Z M 287.316406 267.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.558594 264.324219 C 288.558594 264.207031 288.464844 264.113281 288.347656 264.113281 C 288.230469 264.113281 288.136719 264.207031 288.136719 264.324219 C 288.136719 264.441406 288.230469 264.535156 288.347656 264.535156 C 288.464844 264.535156 288.558594 264.441406 288.558594 264.324219 Z M 288.558594 264.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.894531 267.90625 C 288.894531 267.789062 288.800781 267.695312 288.683594 267.695312 C 288.566406 267.695312 288.472656 267.789062 288.472656 267.90625 C 288.472656 268.023438 288.566406 268.117188 288.683594 268.117188 C 288.800781 268.117188 288.894531 268.023438 288.894531 267.90625 Z M 288.894531 267.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.628906 267.589844 C 290.628906 267.472656 290.535156 267.378906 290.417969 267.378906 C 290.300781 267.378906 290.207031 267.472656 290.207031 267.589844 C 290.207031 267.707031 290.300781 267.800781 290.417969 267.800781 C 290.535156 267.800781 290.628906 267.707031 290.628906 267.589844 Z M 290.628906 267.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.300781 264.773438 C 293.300781 264.65625 293.207031 264.5625 293.089844 264.5625 C 292.972656 264.5625 292.878906 264.65625 292.878906 264.773438 C 292.878906 264.890625 292.972656 264.984375 293.089844 264.984375 C 293.207031 264.984375 293.300781 264.890625 293.300781 264.773438 Z M 293.300781 264.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.261719 263.121094 C 296.261719 263.003906 296.167969 262.910156 296.050781 262.910156 C 295.933594 262.910156 295.839844 263.003906 295.839844 263.121094 C 295.839844 263.238281 295.933594 263.332031 296.050781 263.332031 C 296.167969 263.332031 296.261719 263.238281 296.261719 263.121094 Z M 296.261719 263.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.441406 260.820312 C 295.441406 260.703125 295.347656 260.609375 295.230469 260.609375 C 295.113281 260.609375 295.019531 260.703125 295.019531 260.820312 C 295.019531 260.9375 295.113281 261.03125 295.230469 261.03125 C 295.347656 261.03125 295.441406 260.9375 295.441406 260.820312 Z M 295.441406 260.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.511719 260.375 C 296.511719 260.257812 296.417969 260.164062 296.300781 260.164062 C 296.183594 260.164062 296.089844 260.257812 296.089844 260.375 C 296.089844 260.492188 296.183594 260.585938 296.300781 260.585938 C 296.417969 260.585938 296.511719 260.492188 296.511719 260.375 Z M 296.511719 260.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.207031 262.03125 C 295.207031 261.914062 295.113281 261.820312 294.996094 261.820312 C 294.878906 261.820312 294.785156 261.914062 294.785156 262.03125 C 294.785156 262.148438 294.878906 262.242188 294.996094 262.242188 C 295.113281 262.242188 295.207031 262.148438 295.207031 262.03125 Z M 295.207031 262.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.449219 261.847656 C 294.449219 261.730469 294.355469 261.636719 294.238281 261.636719 C 294.121094 261.636719 294.027344 261.730469 294.027344 261.847656 C 294.027344 261.964844 294.121094 262.058594 294.238281 262.058594 C 294.355469 262.058594 294.449219 261.964844 294.449219 261.847656 Z M 294.449219 261.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.160156 262.410156 C 291.160156 262.292969 291.066406 262.199219 290.949219 262.199219 C 290.832031 262.199219 290.738281 262.292969 290.738281 262.410156 C 290.738281 262.527344 290.832031 262.621094 290.949219 262.621094 C 291.066406 262.621094 291.160156 262.527344 291.160156 262.410156 Z M 291.160156 262.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.179688 261.804688 C 287.179688 261.6875 287.085938 261.59375 286.96875 261.59375 C 286.851562 261.59375 286.757812 261.6875 286.757812 261.804688 C 286.757812 261.921875 286.851562 262.015625 286.96875 262.015625 C 287.085938 262.015625 287.179688 261.921875 287.179688 261.804688 Z M 287.179688 261.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.847656 261.273438 C 287.847656 261.15625 287.753906 261.0625 287.636719 261.0625 C 287.519531 261.0625 287.425781 261.15625 287.425781 261.273438 C 287.425781 261.390625 287.519531 261.484375 287.636719 261.484375 C 287.753906 261.484375 287.847656 261.390625 287.847656 261.273438 Z M 287.847656 261.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.621094 255.894531 C 287.621094 255.777344 287.527344 255.683594 287.410156 255.683594 C 287.292969 255.683594 287.199219 255.777344 287.199219 255.894531 C 287.199219 256.011719 287.292969 256.105469 287.410156 256.105469 C 287.527344 256.105469 287.621094 256.011719 287.621094 255.894531 Z M 287.621094 255.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.875 253.5 C 284.875 253.382812 284.78125 253.289062 284.664062 253.289062 C 284.546875 253.289062 284.453125 253.382812 284.453125 253.5 C 284.453125 253.617188 284.546875 253.710938 284.664062 253.710938 C 284.78125 253.710938 284.875 253.617188 284.875 253.5 Z M 284.875 253.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.996094 252.277344 C 285.996094 252.160156 285.902344 252.066406 285.785156 252.066406 C 285.667969 252.066406 285.574219 252.160156 285.574219 252.277344 C 285.574219 252.394531 285.667969 252.488281 285.785156 252.488281 C 285.902344 252.488281 285.996094 252.394531 285.996094 252.277344 Z M 285.996094 252.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.804688 253.226562 C 283.804688 253.109375 283.710938 253.015625 283.59375 253.015625 C 283.476562 253.015625 283.382812 253.109375 283.382812 253.226562 C 283.382812 253.34375 283.476562 253.4375 283.59375 253.4375 C 283.710938 253.4375 283.804688 253.34375 283.804688 253.226562 Z M 283.804688 253.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.8125 254.523438 C 284.8125 254.40625 284.71875 254.3125 284.601562 254.3125 C 284.484375 254.3125 284.390625 254.40625 284.390625 254.523438 C 284.390625 254.640625 284.484375 254.734375 284.601562 254.734375 C 284.71875 254.734375 284.8125 254.640625 284.8125 254.523438 Z M 284.8125 254.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.285156 253.574219 C 283.285156 253.457031 283.191406 253.363281 283.074219 253.363281 C 282.957031 253.363281 282.863281 253.457031 282.863281 253.574219 C 282.863281 253.691406 282.957031 253.785156 283.074219 253.785156 C 283.191406 253.785156 283.285156 253.691406 283.285156 253.574219 Z M 283.285156 253.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.542969 256.851562 C 280.542969 256.734375 280.449219 256.640625 280.332031 256.640625 C 280.214844 256.640625 280.121094 256.734375 280.121094 256.851562 C 280.121094 256.96875 280.214844 257.0625 280.332031 257.0625 C 280.449219 257.0625 280.542969 256.96875 280.542969 256.851562 Z M 280.542969 256.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.316406 257.222656 C 282.316406 257.105469 282.222656 257.011719 282.105469 257.011719 C 281.988281 257.011719 281.894531 257.105469 281.894531 257.222656 C 281.894531 257.339844 281.988281 257.433594 282.105469 257.433594 C 282.222656 257.433594 282.316406 257.339844 282.316406 257.222656 Z M 282.316406 257.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.917969 260.101562 C 284.917969 259.984375 284.824219 259.890625 284.707031 259.890625 C 284.589844 259.890625 284.496094 259.984375 284.496094 260.101562 C 284.496094 260.21875 284.589844 260.3125 284.707031 260.3125 C 284.824219 260.3125 284.917969 260.21875 284.917969 260.101562 Z M 284.917969 260.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.578125 259.367188 C 283.578125 259.25 283.484375 259.15625 283.367188 259.15625 C 283.25 259.15625 283.15625 259.25 283.15625 259.367188 C 283.15625 259.484375 283.25 259.578125 283.367188 259.578125 C 283.484375 259.578125 283.578125 259.484375 283.578125 259.367188 Z M 283.578125 259.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.152344 257.125 C 283.152344 257.007812 283.058594 256.914062 282.941406 256.914062 C 282.824219 256.914062 282.730469 257.007812 282.730469 257.125 C 282.730469 257.242188 282.824219 257.335938 282.941406 257.335938 C 283.058594 257.335938 283.152344 257.242188 283.152344 257.125 Z M 283.152344 257.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.621094 256.980469 C 280.621094 256.863281 280.527344 256.769531 280.410156 256.769531 C 280.292969 256.769531 280.199219 256.863281 280.199219 256.980469 C 280.199219 257.097656 280.292969 257.191406 280.410156 257.191406 C 280.527344 257.191406 280.621094 257.097656 280.621094 256.980469 Z M 280.621094 256.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.886719 255.519531 C 281.886719 255.402344 281.792969 255.308594 281.675781 255.308594 C 281.558594 255.308594 281.464844 255.402344 281.464844 255.519531 C 281.464844 255.636719 281.558594 255.730469 281.675781 255.730469 C 281.792969 255.730469 281.886719 255.636719 281.886719 255.519531 Z M 281.886719 255.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.183594 256.996094 C 281.183594 256.878906 281.089844 256.785156 280.972656 256.785156 C 280.855469 256.785156 280.761719 256.878906 280.761719 256.996094 C 280.761719 257.113281 280.855469 257.207031 280.972656 257.207031 C 281.089844 257.207031 281.183594 257.113281 281.183594 256.996094 Z M 281.183594 256.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.507812 253.753906 C 279.507812 253.636719 279.414062 253.542969 279.296875 253.542969 C 279.179688 253.542969 279.085938 253.636719 279.085938 253.753906 C 279.085938 253.871094 279.179688 253.964844 279.296875 253.964844 C 279.414062 253.964844 279.507812 253.871094 279.507812 253.753906 Z M 279.507812 253.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.664062 254.679688 C 280.664062 254.5625 280.570312 254.46875 280.453125 254.46875 C 280.335938 254.46875 280.242188 254.5625 280.242188 254.679688 C 280.242188 254.796875 280.335938 254.890625 280.453125 254.890625 C 280.570312 254.890625 280.664062 254.796875 280.664062 254.679688 Z M 280.664062 254.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.839844 254.1875 C 279.839844 254.070312 279.746094 253.976562 279.628906 253.976562 C 279.511719 253.976562 279.417969 254.070312 279.417969 254.1875 C 279.417969 254.304688 279.511719 254.398438 279.628906 254.398438 C 279.746094 254.398438 279.839844 254.304688 279.839844 254.1875 Z M 279.839844 254.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.980469 254.820312 C 279.980469 254.703125 279.886719 254.609375 279.769531 254.609375 C 279.652344 254.609375 279.558594 254.703125 279.558594 254.820312 C 279.558594 254.9375 279.652344 255.03125 279.769531 255.03125 C 279.886719 255.03125 279.980469 254.9375 279.980469 254.820312 Z M 279.980469 254.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.3125 253.847656 C 279.3125 253.730469 279.21875 253.636719 279.101562 253.636719 C 278.984375 253.636719 278.890625 253.730469 278.890625 253.847656 C 278.890625 253.964844 278.984375 254.058594 279.101562 254.058594 C 279.21875 254.058594 279.3125 253.964844 279.3125 253.847656 Z M 279.3125 253.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.59375 256.859375 C 278.59375 256.742188 278.5 256.648438 278.382812 256.648438 C 278.265625 256.648438 278.171875 256.742188 278.171875 256.859375 C 278.171875 256.976562 278.265625 257.070312 278.382812 257.070312 C 278.5 257.070312 278.59375 256.976562 278.59375 256.859375 Z M 278.59375 256.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.117188 257.925781 C 281.117188 257.808594 281.023438 257.714844 280.90625 257.714844 C 280.789062 257.714844 280.695312 257.808594 280.695312 257.925781 C 280.695312 258.042969 280.789062 258.136719 280.90625 258.136719 C 281.023438 258.136719 281.117188 258.042969 281.117188 257.925781 Z M 281.117188 257.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.195312 259.058594 C 285.195312 258.941406 285.101562 258.847656 284.984375 258.847656 C 284.867188 258.847656 284.773438 258.941406 284.773438 259.058594 C 284.773438 259.175781 284.867188 259.269531 284.984375 259.269531 C 285.101562 259.269531 285.195312 259.175781 285.195312 259.058594 Z M 285.195312 259.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.679688 258.359375 C 286.679688 258.242188 286.585938 258.148438 286.46875 258.148438 C 286.351562 258.148438 286.257812 258.242188 286.257812 258.359375 C 286.257812 258.476562 286.351562 258.570312 286.46875 258.570312 C 286.585938 258.570312 286.679688 258.476562 286.679688 258.359375 Z M 286.679688 258.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.640625 260.078125 C 286.640625 259.960938 286.546875 259.867188 286.429688 259.867188 C 286.3125 259.867188 286.21875 259.960938 286.21875 260.078125 C 286.21875 260.195312 286.3125 260.289062 286.429688 260.289062 C 286.546875 260.289062 286.640625 260.195312 286.640625 260.078125 Z M 286.640625 260.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.53125 262.929688 C 285.53125 262.8125 285.4375 262.71875 285.320312 262.71875 C 285.203125 262.71875 285.109375 262.8125 285.109375 262.929688 C 285.109375 263.046875 285.203125 263.140625 285.320312 263.140625 C 285.4375 263.140625 285.53125 263.046875 285.53125 262.929688 Z M 285.53125 262.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.402344 260.117188 C 284.402344 260 284.308594 259.90625 284.191406 259.90625 C 284.074219 259.90625 283.980469 260 283.980469 260.117188 C 283.980469 260.234375 284.074219 260.328125 284.191406 260.328125 C 284.308594 260.328125 284.402344 260.234375 284.402344 260.117188 Z M 284.402344 260.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.203125 261.238281 C 288.203125 261.121094 288.109375 261.027344 287.992188 261.027344 C 287.875 261.027344 287.78125 261.121094 287.78125 261.238281 C 287.78125 261.355469 287.875 261.449219 287.992188 261.449219 C 288.109375 261.449219 288.203125 261.355469 288.203125 261.238281 Z M 288.203125 261.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.296875 259.949219 C 289.296875 259.832031 289.203125 259.738281 289.085938 259.738281 C 288.96875 259.738281 288.875 259.832031 288.875 259.949219 C 288.875 260.066406 288.96875 260.160156 289.085938 260.160156 C 289.203125 260.160156 289.296875 260.066406 289.296875 259.949219 Z M 289.296875 259.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.019531 260.921875 C 291.019531 260.804688 290.925781 260.710938 290.808594 260.710938 C 290.691406 260.710938 290.597656 260.804688 290.597656 260.921875 C 290.597656 261.039062 290.691406 261.132812 290.808594 261.132812 C 290.925781 261.132812 291.019531 261.039062 291.019531 260.921875 Z M 291.019531 260.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.207031 262.757812 C 290.207031 262.640625 290.113281 262.546875 289.996094 262.546875 C 289.878906 262.546875 289.785156 262.640625 289.785156 262.757812 C 289.785156 262.875 289.878906 262.96875 289.996094 262.96875 C 290.113281 262.96875 290.207031 262.875 290.207031 262.757812 Z M 290.207031 262.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.488281 263.695312 C 288.488281 263.578125 288.394531 263.484375 288.277344 263.484375 C 288.160156 263.484375 288.066406 263.578125 288.066406 263.695312 C 288.066406 263.8125 288.160156 263.90625 288.277344 263.90625 C 288.394531 263.90625 288.488281 263.8125 288.488281 263.695312 Z M 288.488281 263.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.242188 260.421875 C 289.242188 260.304688 289.148438 260.210938 289.03125 260.210938 C 288.914062 260.210938 288.820312 260.304688 288.820312 260.421875 C 288.820312 260.539062 288.914062 260.632812 289.03125 260.632812 C 289.148438 260.632812 289.242188 260.539062 289.242188 260.421875 Z M 289.242188 260.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.269531 261.574219 C 288.269531 261.457031 288.175781 261.363281 288.058594 261.363281 C 287.941406 261.363281 287.847656 261.457031 287.847656 261.574219 C 287.847656 261.691406 287.941406 261.785156 288.058594 261.785156 C 288.175781 261.785156 288.269531 261.691406 288.269531 261.574219 Z M 288.269531 261.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.148438 264.222656 C 290.148438 264.105469 290.054688 264.011719 289.9375 264.011719 C 289.820312 264.011719 289.726562 264.105469 289.726562 264.222656 C 289.726562 264.339844 289.820312 264.433594 289.9375 264.433594 C 290.054688 264.433594 290.148438 264.339844 290.148438 264.222656 Z M 290.148438 264.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.226562 262.46875 C 289.226562 262.351562 289.132812 262.257812 289.015625 262.257812 C 288.898438 262.257812 288.804688 262.351562 288.804688 262.46875 C 288.804688 262.585938 288.898438 262.679688 289.015625 262.679688 C 289.132812 262.679688 289.226562 262.585938 289.226562 262.46875 Z M 289.226562 262.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.875 261.957031 C 291.875 261.839844 291.78125 261.746094 291.664062 261.746094 C 291.546875 261.746094 291.453125 261.839844 291.453125 261.957031 C 291.453125 262.074219 291.546875 262.167969 291.664062 262.167969 C 291.78125 262.167969 291.875 262.074219 291.875 261.957031 Z M 291.875 261.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.859375 262.371094 C 290.859375 262.253906 290.765625 262.160156 290.648438 262.160156 C 290.53125 262.160156 290.4375 262.253906 290.4375 262.371094 C 290.4375 262.488281 290.53125 262.582031 290.648438 262.582031 C 290.765625 262.582031 290.859375 262.488281 290.859375 262.371094 Z M 290.859375 262.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.003906 261.421875 C 286.003906 261.304688 285.910156 261.210938 285.792969 261.210938 C 285.675781 261.210938 285.582031 261.304688 285.582031 261.421875 C 285.582031 261.539062 285.675781 261.632812 285.792969 261.632812 C 285.910156 261.632812 286.003906 261.539062 286.003906 261.421875 Z M 286.003906 261.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.804688 262.238281 C 283.804688 262.121094 283.710938 262.027344 283.59375 262.027344 C 283.476562 262.027344 283.382812 262.121094 283.382812 262.238281 C 283.382812 262.355469 283.476562 262.449219 283.59375 262.449219 C 283.710938 262.449219 283.804688 262.355469 283.804688 262.238281 Z M 283.804688 262.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.328125 266.40625 C 286.328125 266.289062 286.234375 266.195312 286.117188 266.195312 C 286 266.195312 285.90625 266.289062 285.90625 266.40625 C 285.90625 266.523438 286 266.617188 286.117188 266.617188 C 286.234375 266.617188 286.328125 266.523438 286.328125 266.40625 Z M 286.328125 266.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.871094 268.257812 C 285.871094 268.140625 285.777344 268.046875 285.660156 268.046875 C 285.542969 268.046875 285.449219 268.140625 285.449219 268.257812 C 285.449219 268.375 285.542969 268.46875 285.660156 268.46875 C 285.777344 268.46875 285.871094 268.375 285.871094 268.257812 Z M 285.871094 268.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.933594 269.554688 C 285.933594 269.4375 285.839844 269.34375 285.722656 269.34375 C 285.605469 269.34375 285.511719 269.4375 285.511719 269.554688 C 285.511719 269.671875 285.605469 269.765625 285.722656 269.765625 C 285.839844 269.765625 285.933594 269.671875 285.933594 269.554688 Z M 285.933594 269.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.292969 269.929688 C 285.292969 269.8125 285.199219 269.71875 285.082031 269.71875 C 284.964844 269.71875 284.871094 269.8125 284.871094 269.929688 C 284.871094 270.046875 284.964844 270.140625 285.082031 270.140625 C 285.199219 270.140625 285.292969 270.046875 285.292969 269.929688 Z M 285.292969 269.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.214844 268.949219 C 288.214844 268.832031 288.121094 268.738281 288.003906 268.738281 C 287.886719 268.738281 287.792969 268.832031 287.792969 268.949219 C 287.792969 269.066406 287.886719 269.160156 288.003906 269.160156 C 288.121094 269.160156 288.214844 269.066406 288.214844 268.949219 Z M 288.214844 268.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.347656 265.945312 C 291.347656 265.828125 291.253906 265.734375 291.136719 265.734375 C 291.019531 265.734375 290.925781 265.828125 290.925781 265.945312 C 290.925781 266.0625 291.019531 266.15625 291.136719 266.15625 C 291.253906 266.15625 291.347656 266.0625 291.347656 265.945312 Z M 291.347656 265.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.75 263.234375 C 291.75 263.117188 291.65625 263.023438 291.539062 263.023438 C 291.421875 263.023438 291.328125 263.117188 291.328125 263.234375 C 291.328125 263.351562 291.421875 263.445312 291.539062 263.445312 C 291.65625 263.445312 291.75 263.351562 291.75 263.234375 Z M 291.75 263.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.730469 268.625 C 295.730469 268.507812 295.636719 268.414062 295.519531 268.414062 C 295.402344 268.414062 295.308594 268.507812 295.308594 268.625 C 295.308594 268.742188 295.402344 268.835938 295.519531 268.835938 C 295.636719 268.835938 295.730469 268.742188 295.730469 268.625 Z M 295.730469 268.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.636719 269.015625 C 296.636719 268.898438 296.542969 268.804688 296.425781 268.804688 C 296.308594 268.804688 296.214844 268.898438 296.214844 269.015625 C 296.214844 269.132812 296.308594 269.226562 296.425781 269.226562 C 296.542969 269.226562 296.636719 269.132812 296.636719 269.015625 Z M 296.636719 269.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.503906 269.199219 C 297.503906 269.082031 297.410156 268.988281 297.292969 268.988281 C 297.175781 268.988281 297.082031 269.082031 297.082031 269.199219 C 297.082031 269.316406 297.175781 269.410156 297.292969 269.410156 C 297.410156 269.410156 297.503906 269.316406 297.503906 269.199219 Z M 297.503906 269.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.527344 268.757812 C 297.527344 268.640625 297.433594 268.546875 297.316406 268.546875 C 297.199219 268.546875 297.105469 268.640625 297.105469 268.757812 C 297.105469 268.875 297.199219 268.96875 297.316406 268.96875 C 297.433594 268.96875 297.527344 268.875 297.527344 268.757812 Z M 297.527344 268.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.570312 263.847656 C 294.570312 263.730469 294.476562 263.636719 294.359375 263.636719 C 294.242188 263.636719 294.148438 263.730469 294.148438 263.847656 C 294.148438 263.964844 294.242188 264.058594 294.359375 264.058594 C 294.476562 264.058594 294.570312 263.964844 294.570312 263.847656 Z M 294.570312 263.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.179688 265.386719 C 299.179688 265.269531 299.085938 265.175781 298.96875 265.175781 C 298.851562 265.175781 298.757812 265.269531 298.757812 265.386719 C 298.757812 265.503906 298.851562 265.597656 298.96875 265.597656 C 299.085938 265.597656 299.179688 265.503906 299.179688 265.386719 Z M 299.179688 265.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.050781 263.777344 C 297.050781 263.660156 296.957031 263.566406 296.839844 263.566406 C 296.722656 263.566406 296.628906 263.660156 296.628906 263.777344 C 296.628906 263.894531 296.722656 263.988281 296.839844 263.988281 C 296.957031 263.988281 297.050781 263.894531 297.050781 263.777344 Z M 297.050781 263.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.78125 264.480469 C 298.78125 264.363281 298.6875 264.269531 298.570312 264.269531 C 298.453125 264.269531 298.359375 264.363281 298.359375 264.480469 C 298.359375 264.597656 298.453125 264.691406 298.570312 264.691406 C 298.6875 264.691406 298.78125 264.597656 298.78125 264.480469 Z M 298.78125 264.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.199219 262.484375 C 299.199219 262.367188 299.105469 262.273438 298.988281 262.273438 C 298.871094 262.273438 298.777344 262.367188 298.777344 262.484375 C 298.777344 262.601562 298.871094 262.695312 298.988281 262.695312 C 299.105469 262.695312 299.199219 262.601562 299.199219 262.484375 Z M 299.199219 262.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.585938 266.734375 C 299.585938 266.617188 299.492188 266.523438 299.375 266.523438 C 299.257812 266.523438 299.164062 266.617188 299.164062 266.734375 C 299.164062 266.851562 299.257812 266.945312 299.375 266.945312 C 299.492188 266.945312 299.585938 266.851562 299.585938 266.734375 Z M 299.585938 266.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.585938 266.496094 C 298.585938 266.378906 298.492188 266.285156 298.375 266.285156 C 298.257812 266.285156 298.164062 266.378906 298.164062 266.496094 C 298.164062 266.613281 298.257812 266.707031 298.375 266.707031 C 298.492188 266.707031 298.585938 266.613281 298.585938 266.496094 Z M 298.585938 266.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.71875 265.660156 C 296.71875 265.542969 296.625 265.449219 296.507812 265.449219 C 296.390625 265.449219 296.296875 265.542969 296.296875 265.660156 C 296.296875 265.777344 296.390625 265.871094 296.507812 265.871094 C 296.625 265.871094 296.71875 265.777344 296.71875 265.660156 Z M 296.71875 265.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.554688 268.292969 C 299.554688 268.175781 299.460938 268.082031 299.34375 268.082031 C 299.226562 268.082031 299.132812 268.175781 299.132812 268.292969 C 299.132812 268.410156 299.226562 268.503906 299.34375 268.503906 C 299.460938 268.503906 299.554688 268.410156 299.554688 268.292969 Z M 299.554688 268.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.941406 268.472656 C 300.941406 268.355469 300.847656 268.261719 300.730469 268.261719 C 300.613281 268.261719 300.519531 268.355469 300.519531 268.472656 C 300.519531 268.589844 300.613281 268.683594 300.730469 268.683594 C 300.847656 268.683594 300.941406 268.589844 300.941406 268.472656 Z M 300.941406 268.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.238281 267.953125 C 302.238281 267.835938 302.144531 267.742188 302.027344 267.742188 C 301.910156 267.742188 301.816406 267.835938 301.816406 267.953125 C 301.816406 268.070312 301.910156 268.164062 302.027344 268.164062 C 302.144531 268.164062 302.238281 268.070312 302.238281 267.953125 Z M 302.238281 267.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.640625 266.160156 C 306.640625 266.042969 306.546875 265.949219 306.429688 265.949219 C 306.3125 265.949219 306.21875 266.042969 306.21875 266.160156 C 306.21875 266.277344 306.3125 266.371094 306.429688 266.371094 C 306.546875 266.371094 306.640625 266.277344 306.640625 266.160156 Z M 306.640625 266.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.714844 267.535156 C 306.714844 267.417969 306.621094 267.324219 306.503906 267.324219 C 306.386719 267.324219 306.292969 267.417969 306.292969 267.535156 C 306.292969 267.652344 306.386719 267.746094 306.503906 267.746094 C 306.621094 267.746094 306.714844 267.652344 306.714844 267.535156 Z M 306.714844 267.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.277344 265.613281 C 307.277344 265.496094 307.183594 265.402344 307.066406 265.402344 C 306.949219 265.402344 306.855469 265.496094 306.855469 265.613281 C 306.855469 265.730469 306.949219 265.824219 307.066406 265.824219 C 307.183594 265.824219 307.277344 265.730469 307.277344 265.613281 Z M 307.277344 265.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.722656 264.703125 C 305.722656 264.585938 305.628906 264.492188 305.511719 264.492188 C 305.394531 264.492188 305.300781 264.585938 305.300781 264.703125 C 305.300781 264.820312 305.394531 264.914062 305.511719 264.914062 C 305.628906 264.914062 305.722656 264.820312 305.722656 264.703125 Z M 305.722656 264.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.175781 265.085938 C 306.175781 264.96875 306.082031 264.875 305.964844 264.875 C 305.847656 264.875 305.753906 264.96875 305.753906 265.085938 C 305.753906 265.203125 305.847656 265.296875 305.964844 265.296875 C 306.082031 265.296875 306.175781 265.203125 306.175781 265.085938 Z M 306.175781 265.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.632812 264.589844 C 303.632812 264.472656 303.539062 264.378906 303.421875 264.378906 C 303.304688 264.378906 303.210938 264.472656 303.210938 264.589844 C 303.210938 264.707031 303.304688 264.800781 303.421875 264.800781 C 303.539062 264.800781 303.632812 264.707031 303.632812 264.589844 Z M 303.632812 264.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.492188 262.25 C 304.492188 262.132812 304.398438 262.039062 304.28125 262.039062 C 304.164062 262.039062 304.070312 262.132812 304.070312 262.25 C 304.070312 262.367188 304.164062 262.460938 304.28125 262.460938 C 304.398438 262.460938 304.492188 262.367188 304.492188 262.25 Z M 304.492188 262.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.988281 265.714844 C 306.988281 265.597656 306.894531 265.503906 306.777344 265.503906 C 306.660156 265.503906 306.566406 265.597656 306.566406 265.714844 C 306.566406 265.832031 306.660156 265.925781 306.777344 265.925781 C 306.894531 265.925781 306.988281 265.832031 306.988281 265.714844 Z M 306.988281 265.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.085938 266.277344 C 305.085938 266.160156 304.992188 266.066406 304.875 266.066406 C 304.757812 266.066406 304.664062 266.160156 304.664062 266.277344 C 304.664062 266.394531 304.757812 266.488281 304.875 266.488281 C 304.992188 266.488281 305.085938 266.394531 305.085938 266.277344 Z M 305.085938 266.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.191406 266.921875 C 306.191406 266.804688 306.097656 266.710938 305.980469 266.710938 C 305.863281 266.710938 305.769531 266.804688 305.769531 266.921875 C 305.769531 267.039062 305.863281 267.132812 305.980469 267.132812 C 306.097656 267.132812 306.191406 267.039062 306.191406 266.921875 Z M 306.191406 266.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.070312 263.988281 C 307.070312 263.871094 306.976562 263.777344 306.859375 263.777344 C 306.742188 263.777344 306.648438 263.871094 306.648438 263.988281 C 306.648438 264.105469 306.742188 264.199219 306.859375 264.199219 C 306.976562 264.199219 307.070312 264.105469 307.070312 263.988281 Z M 307.070312 263.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.8125 260.679688 C 308.8125 260.5625 308.71875 260.46875 308.601562 260.46875 C 308.484375 260.46875 308.390625 260.5625 308.390625 260.679688 C 308.390625 260.796875 308.484375 260.890625 308.601562 260.890625 C 308.71875 260.890625 308.8125 260.796875 308.8125 260.679688 Z M 308.8125 260.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.671875 259.304688 C 311.671875 259.1875 311.578125 259.09375 311.460938 259.09375 C 311.34375 259.09375 311.25 259.1875 311.25 259.304688 C 311.25 259.421875 311.34375 259.515625 311.460938 259.515625 C 311.578125 259.515625 311.671875 259.421875 311.671875 259.304688 Z M 311.671875 259.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.679688 258.878906 C 311.679688 258.761719 311.585938 258.667969 311.46875 258.667969 C 311.351562 258.667969 311.257812 258.761719 311.257812 258.878906 C 311.257812 258.996094 311.351562 259.089844 311.46875 259.089844 C 311.585938 259.089844 311.679688 258.996094 311.679688 258.878906 Z M 311.679688 258.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.652344 261.058594 C 311.652344 260.941406 311.558594 260.847656 311.441406 260.847656 C 311.324219 260.847656 311.230469 260.941406 311.230469 261.058594 C 311.230469 261.175781 311.324219 261.269531 311.441406 261.269531 C 311.558594 261.269531 311.652344 261.175781 311.652344 261.058594 Z M 311.652344 261.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.597656 262.964844 C 312.597656 262.847656 312.503906 262.753906 312.386719 262.753906 C 312.269531 262.753906 312.175781 262.847656 312.175781 262.964844 C 312.175781 263.082031 312.269531 263.175781 312.386719 263.175781 C 312.503906 263.175781 312.597656 263.082031 312.597656 262.964844 Z M 312.597656 262.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.636719 264.199219 C 309.636719 264.082031 309.542969 263.988281 309.425781 263.988281 C 309.308594 263.988281 309.214844 264.082031 309.214844 264.199219 C 309.214844 264.316406 309.308594 264.410156 309.425781 264.410156 C 309.542969 264.410156 309.636719 264.316406 309.636719 264.199219 Z M 309.636719 264.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.398438 267.558594 C 306.398438 267.441406 306.304688 267.347656 306.1875 267.347656 C 306.070312 267.347656 305.976562 267.441406 305.976562 267.558594 C 305.976562 267.675781 306.070312 267.769531 306.1875 267.769531 C 306.304688 267.769531 306.398438 267.675781 306.398438 267.558594 Z M 306.398438 267.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.917969 267.089844 C 305.917969 266.972656 305.824219 266.878906 305.707031 266.878906 C 305.589844 266.878906 305.496094 266.972656 305.496094 267.089844 C 305.496094 267.207031 305.589844 267.300781 305.707031 267.300781 C 305.824219 267.300781 305.917969 267.207031 305.917969 267.089844 Z M 305.917969 267.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.625 264.007812 C 310.625 263.890625 310.53125 263.796875 310.414062 263.796875 C 310.296875 263.796875 310.203125 263.890625 310.203125 264.007812 C 310.203125 264.125 310.296875 264.21875 310.414062 264.21875 C 310.53125 264.21875 310.625 264.125 310.625 264.007812 Z M 310.625 264.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.007812 263.636719 C 313.007812 263.519531 312.914062 263.425781 312.796875 263.425781 C 312.679688 263.425781 312.585938 263.519531 312.585938 263.636719 C 312.585938 263.753906 312.679688 263.847656 312.796875 263.847656 C 312.914062 263.847656 313.007812 263.753906 313.007812 263.636719 Z M 313.007812 263.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.480469 261.90625 C 317.480469 261.789062 317.386719 261.695312 317.269531 261.695312 C 317.152344 261.695312 317.058594 261.789062 317.058594 261.90625 C 317.058594 262.023438 317.152344 262.117188 317.269531 262.117188 C 317.386719 262.117188 317.480469 262.023438 317.480469 261.90625 Z M 317.480469 261.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.832031 258.550781 C 316.832031 258.433594 316.738281 258.339844 316.621094 258.339844 C 316.503906 258.339844 316.410156 258.433594 316.410156 258.550781 C 316.410156 258.667969 316.503906 258.761719 316.621094 258.761719 C 316.738281 258.761719 316.832031 258.667969 316.832031 258.550781 Z M 316.832031 258.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.925781 259.355469 C 317.925781 259.238281 317.832031 259.144531 317.714844 259.144531 C 317.597656 259.144531 317.503906 259.238281 317.503906 259.355469 C 317.503906 259.472656 317.597656 259.566406 317.714844 259.566406 C 317.832031 259.566406 317.925781 259.472656 317.925781 259.355469 Z M 317.925781 259.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.191406 259.992188 C 317.191406 259.875 317.097656 259.78125 316.980469 259.78125 C 316.863281 259.78125 316.769531 259.875 316.769531 259.992188 C 316.769531 260.109375 316.863281 260.203125 316.980469 260.203125 C 317.097656 260.203125 317.191406 260.109375 317.191406 259.992188 Z M 317.191406 259.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.714844 261.144531 C 311.714844 261.027344 311.621094 260.933594 311.503906 260.933594 C 311.386719 260.933594 311.292969 261.027344 311.292969 261.144531 C 311.292969 261.261719 311.386719 261.355469 311.503906 261.355469 C 311.621094 261.355469 311.714844 261.261719 311.714844 261.144531 Z M 311.714844 261.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.363281 262.011719 C 309.363281 261.894531 309.269531 261.800781 309.152344 261.800781 C 309.035156 261.800781 308.941406 261.894531 308.941406 262.011719 C 308.941406 262.128906 309.035156 262.222656 309.152344 262.222656 C 309.269531 262.222656 309.363281 262.128906 309.363281 262.011719 Z M 309.363281 262.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.78125 260.410156 C 309.78125 260.292969 309.6875 260.199219 309.570312 260.199219 C 309.453125 260.199219 309.359375 260.292969 309.359375 260.410156 C 309.359375 260.527344 309.453125 260.621094 309.570312 260.621094 C 309.6875 260.621094 309.78125 260.527344 309.78125 260.410156 Z M 309.78125 260.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.101562 262.183594 C 304.101562 262.066406 304.007812 261.972656 303.890625 261.972656 C 303.773438 261.972656 303.679688 262.066406 303.679688 262.183594 C 303.679688 262.300781 303.773438 262.394531 303.890625 262.394531 C 304.007812 262.394531 304.101562 262.300781 304.101562 262.183594 Z M 304.101562 262.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.054688 262.265625 C 309.054688 262.148438 308.960938 262.054688 308.84375 262.054688 C 308.726562 262.054688 308.632812 262.148438 308.632812 262.265625 C 308.632812 262.382812 308.726562 262.476562 308.84375 262.476562 C 308.960938 262.476562 309.054688 262.382812 309.054688 262.265625 Z M 309.054688 262.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.214844 262.457031 C 308.214844 262.339844 308.121094 262.246094 308.003906 262.246094 C 307.886719 262.246094 307.792969 262.339844 307.792969 262.457031 C 307.792969 262.574219 307.886719 262.667969 308.003906 262.667969 C 308.121094 262.667969 308.214844 262.574219 308.214844 262.457031 Z M 308.214844 262.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.734375 260.929688 C 310.734375 260.8125 310.640625 260.71875 310.523438 260.71875 C 310.40625 260.71875 310.3125 260.8125 310.3125 260.929688 C 310.3125 261.046875 310.40625 261.140625 310.523438 261.140625 C 310.640625 261.140625 310.734375 261.046875 310.734375 260.929688 Z M 310.734375 260.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.9375 261.148438 C 308.9375 261.03125 308.84375 260.9375 308.726562 260.9375 C 308.609375 260.9375 308.515625 261.03125 308.515625 261.148438 C 308.515625 261.265625 308.609375 261.359375 308.726562 261.359375 C 308.84375 261.359375 308.9375 261.265625 308.9375 261.148438 Z M 308.9375 261.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.625 263.34375 C 309.625 263.226562 309.53125 263.132812 309.414062 263.132812 C 309.296875 263.132812 309.203125 263.226562 309.203125 263.34375 C 309.203125 263.460938 309.296875 263.554688 309.414062 263.554688 C 309.53125 263.554688 309.625 263.460938 309.625 263.34375 Z M 309.625 263.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.859375 265.15625 C 307.859375 265.039062 307.765625 264.945312 307.648438 264.945312 C 307.53125 264.945312 307.4375 265.039062 307.4375 265.15625 C 307.4375 265.273438 307.53125 265.367188 307.648438 265.367188 C 307.765625 265.367188 307.859375 265.273438 307.859375 265.15625 Z M 307.859375 265.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.359375 265.972656 C 309.359375 265.855469 309.265625 265.761719 309.148438 265.761719 C 309.03125 265.761719 308.9375 265.855469 308.9375 265.972656 C 308.9375 266.089844 309.03125 266.183594 309.148438 266.183594 C 309.265625 266.183594 309.359375 266.089844 309.359375 265.972656 Z M 309.359375 265.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.394531 264.585938 C 312.394531 264.46875 312.300781 264.375 312.183594 264.375 C 312.066406 264.375 311.972656 264.46875 311.972656 264.585938 C 311.972656 264.703125 312.066406 264.796875 312.183594 264.796875 C 312.300781 264.796875 312.394531 264.703125 312.394531 264.585938 Z M 312.394531 264.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.988281 264.273438 C 308.988281 264.15625 308.894531 264.0625 308.777344 264.0625 C 308.660156 264.0625 308.566406 264.15625 308.566406 264.273438 C 308.566406 264.390625 308.660156 264.484375 308.777344 264.484375 C 308.894531 264.484375 308.988281 264.390625 308.988281 264.273438 Z M 308.988281 264.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.15625 263.261719 C 312.15625 263.144531 312.0625 263.050781 311.945312 263.050781 C 311.828125 263.050781 311.734375 263.144531 311.734375 263.261719 C 311.734375 263.378906 311.828125 263.472656 311.945312 263.472656 C 312.0625 263.472656 312.15625 263.378906 312.15625 263.261719 Z M 312.15625 263.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.355469 264.9375 C 310.355469 264.820312 310.261719 264.726562 310.144531 264.726562 C 310.027344 264.726562 309.933594 264.820312 309.933594 264.9375 C 309.933594 265.054688 310.027344 265.148438 310.144531 265.148438 C 310.261719 265.148438 310.355469 265.054688 310.355469 264.9375 Z M 310.355469 264.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.496094 266.414062 C 309.496094 266.296875 309.402344 266.203125 309.285156 266.203125 C 309.167969 266.203125 309.074219 266.296875 309.074219 266.414062 C 309.074219 266.53125 309.167969 266.625 309.285156 266.625 C 309.402344 266.625 309.496094 266.53125 309.496094 266.414062 Z M 309.496094 266.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.09375 265.558594 C 313.09375 265.441406 313 265.347656 312.882812 265.347656 C 312.765625 265.347656 312.671875 265.441406 312.671875 265.558594 C 312.671875 265.675781 312.765625 265.769531 312.882812 265.769531 C 313 265.769531 313.09375 265.675781 313.09375 265.558594 Z M 313.09375 265.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.632812 266.253906 C 311.632812 266.136719 311.539062 266.042969 311.421875 266.042969 C 311.304688 266.042969 311.210938 266.136719 311.210938 266.253906 C 311.210938 266.371094 311.304688 266.464844 311.421875 266.464844 C 311.539062 266.464844 311.632812 266.371094 311.632812 266.253906 Z M 311.632812 266.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.125 264.070312 C 310.125 263.953125 310.03125 263.859375 309.914062 263.859375 C 309.796875 263.859375 309.703125 263.953125 309.703125 264.070312 C 309.703125 264.1875 309.796875 264.28125 309.914062 264.28125 C 310.03125 264.28125 310.125 264.1875 310.125 264.070312 Z M 310.125 264.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.460938 260.179688 C 311.460938 260.0625 311.367188 259.96875 311.25 259.96875 C 311.132812 259.96875 311.039062 260.0625 311.039062 260.179688 C 311.039062 260.296875 311.132812 260.390625 311.25 260.390625 C 311.367188 260.390625 311.460938 260.296875 311.460938 260.179688 Z M 311.460938 260.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.898438 261.019531 C 310.898438 260.902344 310.804688 260.808594 310.6875 260.808594 C 310.570312 260.808594 310.476562 260.902344 310.476562 261.019531 C 310.476562 261.136719 310.570312 261.230469 310.6875 261.230469 C 310.804688 261.230469 310.898438 261.136719 310.898438 261.019531 Z M 310.898438 261.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.792969 259.925781 C 311.792969 259.808594 311.699219 259.714844 311.582031 259.714844 C 311.464844 259.714844 311.371094 259.808594 311.371094 259.925781 C 311.371094 260.042969 311.464844 260.136719 311.582031 260.136719 C 311.699219 260.136719 311.792969 260.042969 311.792969 259.925781 Z M 311.792969 259.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.15625 256.09375 C 310.15625 255.976562 310.0625 255.882812 309.945312 255.882812 C 309.828125 255.882812 309.734375 255.976562 309.734375 256.09375 C 309.734375 256.210938 309.828125 256.304688 309.945312 256.304688 C 310.0625 256.304688 310.15625 256.210938 310.15625 256.09375 Z M 310.15625 256.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.023438 258.59375 C 309.023438 258.476562 308.929688 258.382812 308.8125 258.382812 C 308.695312 258.382812 308.601562 258.476562 308.601562 258.59375 C 308.601562 258.710938 308.695312 258.804688 308.8125 258.804688 C 308.929688 258.804688 309.023438 258.710938 309.023438 258.59375 Z M 309.023438 258.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.179688 260.542969 C 307.179688 260.425781 307.085938 260.332031 306.96875 260.332031 C 306.851562 260.332031 306.757812 260.425781 306.757812 260.542969 C 306.757812 260.660156 306.851562 260.753906 306.96875 260.753906 C 307.085938 260.753906 307.179688 260.660156 307.179688 260.542969 Z M 307.179688 260.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.644531 260.171875 C 303.644531 260.054688 303.550781 259.960938 303.433594 259.960938 C 303.316406 259.960938 303.222656 260.054688 303.222656 260.171875 C 303.222656 260.289062 303.316406 260.382812 303.433594 260.382812 C 303.550781 260.382812 303.644531 260.289062 303.644531 260.171875 Z M 303.644531 260.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.875 261.203125 C 305.875 261.085938 305.78125 260.992188 305.664062 260.992188 C 305.546875 260.992188 305.453125 261.085938 305.453125 261.203125 C 305.453125 261.320312 305.546875 261.414062 305.664062 261.414062 C 305.78125 261.414062 305.875 261.320312 305.875 261.203125 Z M 305.875 261.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.394531 261.679688 C 302.394531 261.5625 302.300781 261.46875 302.183594 261.46875 C 302.066406 261.46875 301.972656 261.5625 301.972656 261.679688 C 301.972656 261.796875 302.066406 261.890625 302.183594 261.890625 C 302.300781 261.890625 302.394531 261.796875 302.394531 261.679688 Z M 302.394531 261.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.085938 261.9375 C 304.085938 261.820312 303.992188 261.726562 303.875 261.726562 C 303.757812 261.726562 303.664062 261.820312 303.664062 261.9375 C 303.664062 262.054688 303.757812 262.148438 303.875 262.148438 C 303.992188 262.148438 304.085938 262.054688 304.085938 261.9375 Z M 304.085938 261.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.949219 261.433594 C 302.949219 261.316406 302.855469 261.222656 302.738281 261.222656 C 302.621094 261.222656 302.527344 261.316406 302.527344 261.433594 C 302.527344 261.550781 302.621094 261.644531 302.738281 261.644531 C 302.855469 261.644531 302.949219 261.550781 302.949219 261.433594 Z M 302.949219 261.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.585938 255.613281 C 302.585938 255.496094 302.492188 255.402344 302.375 255.402344 C 302.257812 255.402344 302.164062 255.496094 302.164062 255.613281 C 302.164062 255.730469 302.257812 255.824219 302.375 255.824219 C 302.492188 255.824219 302.585938 255.730469 302.585938 255.613281 Z M 302.585938 255.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.289062 258.085938 C 301.289062 257.96875 301.195312 257.875 301.078125 257.875 C 300.960938 257.875 300.867188 257.96875 300.867188 258.085938 C 300.867188 258.203125 300.960938 258.296875 301.078125 258.296875 C 301.195312 258.296875 301.289062 258.203125 301.289062 258.085938 Z M 301.289062 258.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.289062 263.511719 C 303.289062 263.394531 303.195312 263.300781 303.078125 263.300781 C 302.960938 263.300781 302.867188 263.394531 302.867188 263.511719 C 302.867188 263.628906 302.960938 263.722656 303.078125 263.722656 C 303.195312 263.722656 303.289062 263.628906 303.289062 263.511719 Z M 303.289062 263.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.078125 261.65625 C 302.078125 261.539062 301.984375 261.445312 301.867188 261.445312 C 301.75 261.445312 301.65625 261.539062 301.65625 261.65625 C 301.65625 261.773438 301.75 261.867188 301.867188 261.867188 C 301.984375 261.867188 302.078125 261.773438 302.078125 261.65625 Z M 302.078125 261.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.136719 264.640625 C 303.136719 264.523438 303.042969 264.429688 302.925781 264.429688 C 302.808594 264.429688 302.714844 264.523438 302.714844 264.640625 C 302.714844 264.757812 302.808594 264.851562 302.925781 264.851562 C 303.042969 264.851562 303.136719 264.757812 303.136719 264.640625 Z M 303.136719 264.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.105469 266.128906 C 305.105469 266.011719 305.011719 265.917969 304.894531 265.917969 C 304.777344 265.917969 304.683594 266.011719 304.683594 266.128906 C 304.683594 266.246094 304.777344 266.339844 304.894531 266.339844 C 305.011719 266.339844 305.105469 266.246094 305.105469 266.128906 Z M 305.105469 266.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.660156 265.039062 C 302.660156 264.921875 302.566406 264.828125 302.449219 264.828125 C 302.332031 264.828125 302.238281 264.921875 302.238281 265.039062 C 302.238281 265.15625 302.332031 265.25 302.449219 265.25 C 302.566406 265.25 302.660156 265.15625 302.660156 265.039062 Z M 302.660156 265.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.207031 263.65625 C 304.207031 263.539062 304.113281 263.445312 303.996094 263.445312 C 303.878906 263.445312 303.785156 263.539062 303.785156 263.65625 C 303.785156 263.773438 303.878906 263.867188 303.996094 263.867188 C 304.113281 263.867188 304.207031 263.773438 304.207031 263.65625 Z M 304.207031 263.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.949219 268.109375 C 307.949219 267.992188 307.855469 267.898438 307.738281 267.898438 C 307.621094 267.898438 307.527344 267.992188 307.527344 268.109375 C 307.527344 268.226562 307.621094 268.320312 307.738281 268.320312 C 307.855469 268.320312 307.949219 268.226562 307.949219 268.109375 Z M 307.949219 268.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.582031 266.503906 C 309.582031 266.386719 309.488281 266.292969 309.371094 266.292969 C 309.253906 266.292969 309.160156 266.386719 309.160156 266.503906 C 309.160156 266.621094 309.253906 266.714844 309.371094 266.714844 C 309.488281 266.714844 309.582031 266.621094 309.582031 266.503906 Z M 309.582031 266.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.722656 266.515625 C 308.722656 266.398438 308.628906 266.304688 308.511719 266.304688 C 308.394531 266.304688 308.300781 266.398438 308.300781 266.515625 C 308.300781 266.632812 308.394531 266.726562 308.511719 266.726562 C 308.628906 266.726562 308.722656 266.632812 308.722656 266.515625 Z M 308.722656 266.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.84375 266.386719 C 308.84375 266.269531 308.75 266.175781 308.632812 266.175781 C 308.515625 266.175781 308.421875 266.269531 308.421875 266.386719 C 308.421875 266.503906 308.515625 266.597656 308.632812 266.597656 C 308.75 266.597656 308.84375 266.503906 308.84375 266.386719 Z M 308.84375 266.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.59375 263.640625 C 306.59375 263.523438 306.5 263.429688 306.382812 263.429688 C 306.265625 263.429688 306.171875 263.523438 306.171875 263.640625 C 306.171875 263.757812 306.265625 263.851562 306.382812 263.851562 C 306.5 263.851562 306.59375 263.757812 306.59375 263.640625 Z M 306.59375 263.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.242188 264.304688 C 305.242188 264.1875 305.148438 264.09375 305.03125 264.09375 C 304.914062 264.09375 304.820312 264.1875 304.820312 264.304688 C 304.820312 264.421875 304.914062 264.515625 305.03125 264.515625 C 305.148438 264.515625 305.242188 264.421875 305.242188 264.304688 Z M 305.242188 264.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.53125 265.992188 C 299.53125 265.875 299.4375 265.78125 299.320312 265.78125 C 299.203125 265.78125 299.109375 265.875 299.109375 265.992188 C 299.109375 266.109375 299.203125 266.203125 299.320312 266.203125 C 299.4375 266.203125 299.53125 266.109375 299.53125 265.992188 Z M 299.53125 265.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.304688 262.652344 C 301.304688 262.535156 301.210938 262.441406 301.09375 262.441406 C 300.976562 262.441406 300.882812 262.535156 300.882812 262.652344 C 300.882812 262.769531 300.976562 262.863281 301.09375 262.863281 C 301.210938 262.863281 301.304688 262.769531 301.304688 262.652344 Z M 301.304688 262.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.097656 266.136719 C 302.097656 266.019531 302.003906 265.925781 301.886719 265.925781 C 301.769531 265.925781 301.675781 266.019531 301.675781 266.136719 C 301.675781 266.253906 301.769531 266.347656 301.886719 266.347656 C 302.003906 266.347656 302.097656 266.253906 302.097656 266.136719 Z M 302.097656 266.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.464844 267.339844 C 302.464844 267.222656 302.371094 267.128906 302.253906 267.128906 C 302.136719 267.128906 302.042969 267.222656 302.042969 267.339844 C 302.042969 267.457031 302.136719 267.550781 302.253906 267.550781 C 302.371094 267.550781 302.464844 267.457031 302.464844 267.339844 Z M 302.464844 267.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.757812 266.523438 C 302.757812 266.40625 302.664062 266.3125 302.546875 266.3125 C 302.429688 266.3125 302.335938 266.40625 302.335938 266.523438 C 302.335938 266.640625 302.429688 266.734375 302.546875 266.734375 C 302.664062 266.734375 302.757812 266.640625 302.757812 266.523438 Z M 302.757812 266.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.574219 265.4375 C 302.574219 265.320312 302.480469 265.226562 302.363281 265.226562 C 302.246094 265.226562 302.152344 265.320312 302.152344 265.4375 C 302.152344 265.554688 302.246094 265.648438 302.363281 265.648438 C 302.480469 265.648438 302.574219 265.554688 302.574219 265.4375 Z M 302.574219 265.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.199219 268.253906 C 304.199219 268.136719 304.105469 268.042969 303.988281 268.042969 C 303.871094 268.042969 303.777344 268.136719 303.777344 268.253906 C 303.777344 268.371094 303.871094 268.464844 303.988281 268.464844 C 304.105469 268.464844 304.199219 268.371094 304.199219 268.253906 Z M 304.199219 268.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.804688 264.546875 C 303.804688 264.429688 303.710938 264.335938 303.59375 264.335938 C 303.476562 264.335938 303.382812 264.429688 303.382812 264.546875 C 303.382812 264.664062 303.476562 264.757812 303.59375 264.757812 C 303.710938 264.757812 303.804688 264.664062 303.804688 264.546875 Z M 303.804688 264.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.117188 264.101562 C 302.117188 263.984375 302.023438 263.890625 301.90625 263.890625 C 301.789062 263.890625 301.695312 263.984375 301.695312 264.101562 C 301.695312 264.21875 301.789062 264.3125 301.90625 264.3125 C 302.023438 264.3125 302.117188 264.21875 302.117188 264.101562 Z M 302.117188 264.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.488281 261.820312 C 306.488281 261.703125 306.394531 261.609375 306.277344 261.609375 C 306.160156 261.609375 306.066406 261.703125 306.066406 261.820312 C 306.066406 261.9375 306.160156 262.03125 306.277344 262.03125 C 306.394531 262.03125 306.488281 261.9375 306.488281 261.820312 Z M 306.488281 261.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.546875 265.246094 C 308.546875 265.128906 308.453125 265.035156 308.335938 265.035156 C 308.21875 265.035156 308.125 265.128906 308.125 265.246094 C 308.125 265.363281 308.21875 265.457031 308.335938 265.457031 C 308.453125 265.457031 308.546875 265.363281 308.546875 265.246094 Z M 308.546875 265.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.800781 266.453125 C 310.800781 266.335938 310.707031 266.242188 310.589844 266.242188 C 310.472656 266.242188 310.378906 266.335938 310.378906 266.453125 C 310.378906 266.570312 310.472656 266.664062 310.589844 266.664062 C 310.707031 266.664062 310.800781 266.570312 310.800781 266.453125 Z M 310.800781 266.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.804688 266.996094 C 308.804688 266.878906 308.710938 266.785156 308.59375 266.785156 C 308.476562 266.785156 308.382812 266.878906 308.382812 266.996094 C 308.382812 267.113281 308.476562 267.207031 308.59375 267.207031 C 308.710938 267.207031 308.804688 267.113281 308.804688 266.996094 Z M 308.804688 266.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.542969 269.585938 C 308.542969 269.46875 308.449219 269.375 308.332031 269.375 C 308.214844 269.375 308.121094 269.46875 308.121094 269.585938 C 308.121094 269.703125 308.214844 269.796875 308.332031 269.796875 C 308.449219 269.796875 308.542969 269.703125 308.542969 269.585938 Z M 308.542969 269.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.015625 269.222656 C 310.015625 269.105469 309.921875 269.011719 309.804688 269.011719 C 309.6875 269.011719 309.59375 269.105469 309.59375 269.222656 C 309.59375 269.339844 309.6875 269.433594 309.804688 269.433594 C 309.921875 269.433594 310.015625 269.339844 310.015625 269.222656 Z M 310.015625 269.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.40625 267.183594 C 309.40625 267.066406 309.3125 266.972656 309.195312 266.972656 C 309.078125 266.972656 308.984375 267.066406 308.984375 267.183594 C 308.984375 267.300781 309.078125 267.394531 309.195312 267.394531 C 309.3125 267.394531 309.40625 267.300781 309.40625 267.183594 Z M 309.40625 267.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.847656 264.191406 C 308.847656 264.074219 308.753906 263.980469 308.636719 263.980469 C 308.519531 263.980469 308.425781 264.074219 308.425781 264.191406 C 308.425781 264.308594 308.519531 264.402344 308.636719 264.402344 C 308.753906 264.402344 308.847656 264.308594 308.847656 264.191406 Z M 308.847656 264.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.285156 267.792969 C 308.285156 267.675781 308.191406 267.582031 308.074219 267.582031 C 307.957031 267.582031 307.863281 267.675781 307.863281 267.792969 C 307.863281 267.910156 307.957031 268.003906 308.074219 268.003906 C 308.191406 268.003906 308.285156 267.910156 308.285156 267.792969 Z M 308.285156 267.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.308594 268.089844 C 309.308594 267.972656 309.214844 267.878906 309.097656 267.878906 C 308.980469 267.878906 308.886719 267.972656 308.886719 268.089844 C 308.886719 268.207031 308.980469 268.300781 309.097656 268.300781 C 309.214844 268.300781 309.308594 268.207031 309.308594 268.089844 Z M 309.308594 268.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.125 268.515625 C 303.125 268.398438 303.03125 268.304688 302.914062 268.304688 C 302.796875 268.304688 302.703125 268.398438 302.703125 268.515625 C 302.703125 268.632812 302.796875 268.726562 302.914062 268.726562 C 303.03125 268.726562 303.125 268.632812 303.125 268.515625 Z M 303.125 268.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.113281 267.386719 C 304.113281 267.269531 304.019531 267.175781 303.902344 267.175781 C 303.785156 267.175781 303.691406 267.269531 303.691406 267.386719 C 303.691406 267.503906 303.785156 267.597656 303.902344 267.597656 C 304.019531 267.597656 304.113281 267.503906 304.113281 267.386719 Z M 304.113281 267.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.902344 267.457031 C 302.902344 267.339844 302.808594 267.246094 302.691406 267.246094 C 302.574219 267.246094 302.480469 267.339844 302.480469 267.457031 C 302.480469 267.574219 302.574219 267.667969 302.691406 267.667969 C 302.808594 267.667969 302.902344 267.574219 302.902344 267.457031 Z M 302.902344 267.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.257812 265.371094 C 304.257812 265.253906 304.164062 265.160156 304.046875 265.160156 C 303.929688 265.160156 303.835938 265.253906 303.835938 265.371094 C 303.835938 265.488281 303.929688 265.582031 304.046875 265.582031 C 304.164062 265.582031 304.257812 265.488281 304.257812 265.371094 Z M 304.257812 265.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.660156 267.429688 C 303.660156 267.3125 303.566406 267.21875 303.449219 267.21875 C 303.332031 267.21875 303.238281 267.3125 303.238281 267.429688 C 303.238281 267.546875 303.332031 267.640625 303.449219 267.640625 C 303.566406 267.640625 303.660156 267.546875 303.660156 267.429688 Z M 303.660156 267.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.292969 268.800781 C 302.292969 268.683594 302.199219 268.589844 302.082031 268.589844 C 301.964844 268.589844 301.871094 268.683594 301.871094 268.800781 C 301.871094 268.917969 301.964844 269.011719 302.082031 269.011719 C 302.199219 269.011719 302.292969 268.917969 302.292969 268.800781 Z M 302.292969 268.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.175781 267.355469 C 302.175781 267.238281 302.082031 267.144531 301.964844 267.144531 C 301.847656 267.144531 301.753906 267.238281 301.753906 267.355469 C 301.753906 267.472656 301.847656 267.566406 301.964844 267.566406 C 302.082031 267.566406 302.175781 267.472656 302.175781 267.355469 Z M 302.175781 267.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.28125 264.980469 C 302.28125 264.863281 302.1875 264.769531 302.070312 264.769531 C 301.953125 264.769531 301.859375 264.863281 301.859375 264.980469 C 301.859375 265.097656 301.953125 265.191406 302.070312 265.191406 C 302.1875 265.191406 302.28125 265.097656 302.28125 264.980469 Z M 302.28125 264.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.410156 260.355469 C 299.410156 260.238281 299.316406 260.144531 299.199219 260.144531 C 299.082031 260.144531 298.988281 260.238281 298.988281 260.355469 C 298.988281 260.472656 299.082031 260.566406 299.199219 260.566406 C 299.316406 260.566406 299.410156 260.472656 299.410156 260.355469 Z M 299.410156 260.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.925781 261.402344 C 297.925781 261.285156 297.832031 261.191406 297.714844 261.191406 C 297.597656 261.191406 297.503906 261.285156 297.503906 261.402344 C 297.503906 261.519531 297.597656 261.613281 297.714844 261.613281 C 297.832031 261.613281 297.925781 261.519531 297.925781 261.402344 Z M 297.925781 261.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.964844 258.71875 C 302.964844 258.601562 302.871094 258.507812 302.753906 258.507812 C 302.636719 258.507812 302.542969 258.601562 302.542969 258.71875 C 302.542969 258.835938 302.636719 258.929688 302.753906 258.929688 C 302.871094 258.929688 302.964844 258.835938 302.964844 258.71875 Z M 302.964844 258.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.019531 258.953125 C 303.019531 258.835938 302.925781 258.742188 302.808594 258.742188 C 302.691406 258.742188 302.597656 258.835938 302.597656 258.953125 C 302.597656 259.070312 302.691406 259.164062 302.808594 259.164062 C 302.925781 259.164062 303.019531 259.070312 303.019531 258.953125 Z M 303.019531 258.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.390625 259.203125 C 305.390625 259.085938 305.296875 258.992188 305.179688 258.992188 C 305.0625 258.992188 304.96875 259.085938 304.96875 259.203125 C 304.96875 259.320312 305.0625 259.414062 305.179688 259.414062 C 305.296875 259.414062 305.390625 259.320312 305.390625 259.203125 Z M 305.390625 259.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.714844 260.457031 C 305.714844 260.339844 305.621094 260.246094 305.503906 260.246094 C 305.386719 260.246094 305.292969 260.339844 305.292969 260.457031 C 305.292969 260.574219 305.386719 260.667969 305.503906 260.667969 C 305.621094 260.667969 305.714844 260.574219 305.714844 260.457031 Z M 305.714844 260.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.5 262.730469 C 302.5 262.613281 302.40625 262.519531 302.289062 262.519531 C 302.171875 262.519531 302.078125 262.613281 302.078125 262.730469 C 302.078125 262.847656 302.171875 262.941406 302.289062 262.941406 C 302.40625 262.941406 302.5 262.847656 302.5 262.730469 Z M 302.5 262.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.90625 262.597656 C 301.90625 262.480469 301.8125 262.386719 301.695312 262.386719 C 301.578125 262.386719 301.484375 262.480469 301.484375 262.597656 C 301.484375 262.714844 301.578125 262.808594 301.695312 262.808594 C 301.8125 262.808594 301.90625 262.714844 301.90625 262.597656 Z M 301.90625 262.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.625 264.519531 C 305.625 264.402344 305.53125 264.308594 305.414062 264.308594 C 305.296875 264.308594 305.203125 264.402344 305.203125 264.519531 C 305.203125 264.636719 305.296875 264.730469 305.414062 264.730469 C 305.53125 264.730469 305.625 264.636719 305.625 264.519531 Z M 305.625 264.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.886719 267.171875 C 304.886719 267.054688 304.792969 266.960938 304.675781 266.960938 C 304.558594 266.960938 304.464844 267.054688 304.464844 267.171875 C 304.464844 267.289062 304.558594 267.382812 304.675781 267.382812 C 304.792969 267.382812 304.886719 267.289062 304.886719 267.171875 Z M 304.886719 267.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.316406 270.660156 C 305.316406 270.542969 305.222656 270.449219 305.105469 270.449219 C 304.988281 270.449219 304.894531 270.542969 304.894531 270.660156 C 304.894531 270.777344 304.988281 270.871094 305.105469 270.871094 C 305.222656 270.871094 305.316406 270.777344 305.316406 270.660156 Z M 305.316406 270.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.703125 272.308594 C 303.703125 272.191406 303.609375 272.097656 303.492188 272.097656 C 303.375 272.097656 303.28125 272.191406 303.28125 272.308594 C 303.28125 272.425781 303.375 272.519531 303.492188 272.519531 C 303.609375 272.519531 303.703125 272.425781 303.703125 272.308594 Z M 303.703125 272.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.785156 274.292969 C 302.785156 274.175781 302.691406 274.082031 302.574219 274.082031 C 302.457031 274.082031 302.363281 274.175781 302.363281 274.292969 C 302.363281 274.410156 302.457031 274.503906 302.574219 274.503906 C 302.691406 274.503906 302.785156 274.410156 302.785156 274.292969 Z M 302.785156 274.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.734375 276.921875 C 304.734375 276.804688 304.640625 276.710938 304.523438 276.710938 C 304.40625 276.710938 304.3125 276.804688 304.3125 276.921875 C 304.3125 277.039062 304.40625 277.132812 304.523438 277.132812 C 304.640625 277.132812 304.734375 277.039062 304.734375 276.921875 Z M 304.734375 276.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.460938 277.40625 C 305.460938 277.289062 305.367188 277.195312 305.25 277.195312 C 305.132812 277.195312 305.039062 277.289062 305.039062 277.40625 C 305.039062 277.523438 305.132812 277.617188 305.25 277.617188 C 305.367188 277.617188 305.460938 277.523438 305.460938 277.40625 Z M 305.460938 277.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.441406 277.539062 C 307.441406 277.421875 307.347656 277.328125 307.230469 277.328125 C 307.113281 277.328125 307.019531 277.421875 307.019531 277.539062 C 307.019531 277.65625 307.113281 277.75 307.230469 277.75 C 307.347656 277.75 307.441406 277.65625 307.441406 277.539062 Z M 307.441406 277.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.820312 281.078125 C 304.820312 280.960938 304.726562 280.867188 304.609375 280.867188 C 304.492188 280.867188 304.398438 280.960938 304.398438 281.078125 C 304.398438 281.195312 304.492188 281.289062 304.609375 281.289062 C 304.726562 281.289062 304.820312 281.195312 304.820312 281.078125 Z M 304.820312 281.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.011719 281.394531 C 305.011719 281.277344 304.917969 281.183594 304.800781 281.183594 C 304.683594 281.183594 304.589844 281.277344 304.589844 281.394531 C 304.589844 281.511719 304.683594 281.605469 304.800781 281.605469 C 304.917969 281.605469 305.011719 281.511719 305.011719 281.394531 Z M 305.011719 281.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.335938 279.945312 C 303.335938 279.828125 303.242188 279.734375 303.125 279.734375 C 303.007812 279.734375 302.914062 279.828125 302.914062 279.945312 C 302.914062 280.0625 303.007812 280.15625 303.125 280.15625 C 303.242188 280.15625 303.335938 280.0625 303.335938 279.945312 Z M 303.335938 279.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.96875 281.195312 C 301.96875 281.078125 301.875 280.984375 301.757812 280.984375 C 301.640625 280.984375 301.546875 281.078125 301.546875 281.195312 C 301.546875 281.3125 301.640625 281.40625 301.757812 281.40625 C 301.875 281.40625 301.96875 281.3125 301.96875 281.195312 Z M 301.96875 281.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.390625 284.308594 C 302.390625 284.191406 302.296875 284.097656 302.179688 284.097656 C 302.0625 284.097656 301.96875 284.191406 301.96875 284.308594 C 301.96875 284.425781 302.0625 284.519531 302.179688 284.519531 C 302.296875 284.519531 302.390625 284.425781 302.390625 284.308594 Z M 302.390625 284.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.4375 281.953125 C 303.4375 281.835938 303.34375 281.742188 303.226562 281.742188 C 303.109375 281.742188 303.015625 281.835938 303.015625 281.953125 C 303.015625 282.070312 303.109375 282.164062 303.226562 282.164062 C 303.34375 282.164062 303.4375 282.070312 303.4375 281.953125 Z M 303.4375 281.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.527344 281.394531 C 302.527344 281.277344 302.433594 281.183594 302.316406 281.183594 C 302.199219 281.183594 302.105469 281.277344 302.105469 281.394531 C 302.105469 281.511719 302.199219 281.605469 302.316406 281.605469 C 302.433594 281.605469 302.527344 281.511719 302.527344 281.394531 Z M 302.527344 281.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.589844 281.292969 C 304.589844 281.175781 304.496094 281.082031 304.378906 281.082031 C 304.261719 281.082031 304.167969 281.175781 304.167969 281.292969 C 304.167969 281.410156 304.261719 281.503906 304.378906 281.503906 C 304.496094 281.503906 304.589844 281.410156 304.589844 281.292969 Z M 304.589844 281.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.820312 280.917969 C 301.820312 280.800781 301.726562 280.707031 301.609375 280.707031 C 301.492188 280.707031 301.398438 280.800781 301.398438 280.917969 C 301.398438 281.035156 301.492188 281.128906 301.609375 281.128906 C 301.726562 281.128906 301.820312 281.035156 301.820312 280.917969 Z M 301.820312 280.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.242188 288.78125 C 305.242188 288.664062 305.148438 288.570312 305.03125 288.570312 C 304.914062 288.570312 304.820312 288.664062 304.820312 288.78125 C 304.820312 288.898438 304.914062 288.992188 305.03125 288.992188 C 305.148438 288.992188 305.242188 288.898438 305.242188 288.78125 Z M 305.242188 288.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.074219 290.714844 C 308.074219 290.597656 307.980469 290.503906 307.863281 290.503906 C 307.746094 290.503906 307.652344 290.597656 307.652344 290.714844 C 307.652344 290.832031 307.746094 290.925781 307.863281 290.925781 C 307.980469 290.925781 308.074219 290.832031 308.074219 290.714844 Z M 308.074219 290.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.453125 291.199219 C 308.453125 291.082031 308.359375 290.988281 308.242188 290.988281 C 308.125 290.988281 308.03125 291.082031 308.03125 291.199219 C 308.03125 291.316406 308.125 291.410156 308.242188 291.410156 C 308.359375 291.410156 308.453125 291.316406 308.453125 291.199219 Z M 308.453125 291.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.554688 291.511719 C 312.554688 291.394531 312.460938 291.300781 312.34375 291.300781 C 312.226562 291.300781 312.132812 291.394531 312.132812 291.511719 C 312.132812 291.628906 312.226562 291.722656 312.34375 291.722656 C 312.460938 291.722656 312.554688 291.628906 312.554688 291.511719 Z M 312.554688 291.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.390625 291.097656 C 313.390625 290.980469 313.296875 290.886719 313.179688 290.886719 C 313.0625 290.886719 312.96875 290.980469 312.96875 291.097656 C 312.96875 291.214844 313.0625 291.308594 313.179688 291.308594 C 313.296875 291.308594 313.390625 291.214844 313.390625 291.097656 Z M 313.390625 291.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.046875 292.683594 C 315.046875 292.566406 314.953125 292.472656 314.835938 292.472656 C 314.71875 292.472656 314.625 292.566406 314.625 292.683594 C 314.625 292.800781 314.71875 292.894531 314.835938 292.894531 C 314.953125 292.894531 315.046875 292.800781 315.046875 292.683594 Z M 315.046875 292.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.238281 294.855469 C 312.238281 294.738281 312.144531 294.644531 312.027344 294.644531 C 311.910156 294.644531 311.816406 294.738281 311.816406 294.855469 C 311.816406 294.972656 311.910156 295.066406 312.027344 295.066406 C 312.144531 295.066406 312.238281 294.972656 312.238281 294.855469 Z M 312.238281 294.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.789062 294.308594 C 313.789062 294.191406 313.695312 294.097656 313.578125 294.097656 C 313.460938 294.097656 313.367188 294.191406 313.367188 294.308594 C 313.367188 294.425781 313.460938 294.519531 313.578125 294.519531 C 313.695312 294.519531 313.789062 294.425781 313.789062 294.308594 Z M 313.789062 294.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.914062 295.144531 C 314.914062 295.027344 314.820312 294.933594 314.703125 294.933594 C 314.585938 294.933594 314.492188 295.027344 314.492188 295.144531 C 314.492188 295.261719 314.585938 295.355469 314.703125 295.355469 C 314.820312 295.355469 314.914062 295.261719 314.914062 295.144531 Z M 314.914062 295.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.878906 295.265625 C 313.878906 295.148438 313.785156 295.054688 313.667969 295.054688 C 313.550781 295.054688 313.457031 295.148438 313.457031 295.265625 C 313.457031 295.382812 313.550781 295.476562 313.667969 295.476562 C 313.785156 295.476562 313.878906 295.382812 313.878906 295.265625 Z M 313.878906 295.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.273438 301.84375 C 313.273438 301.726562 313.179688 301.632812 313.0625 301.632812 C 312.945312 301.632812 312.851562 301.726562 312.851562 301.84375 C 312.851562 301.960938 312.945312 302.054688 313.0625 302.054688 C 313.179688 302.054688 313.273438 301.960938 313.273438 301.84375 Z M 313.273438 301.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.261719 302.429688 C 313.261719 302.3125 313.167969 302.21875 313.050781 302.21875 C 312.933594 302.21875 312.839844 302.3125 312.839844 302.429688 C 312.839844 302.546875 312.933594 302.640625 313.050781 302.640625 C 313.167969 302.640625 313.261719 302.546875 313.261719 302.429688 Z M 313.261719 302.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.460938 302.632812 C 314.460938 302.515625 314.367188 302.421875 314.25 302.421875 C 314.132812 302.421875 314.039062 302.515625 314.039062 302.632812 C 314.039062 302.75 314.132812 302.84375 314.25 302.84375 C 314.367188 302.84375 314.460938 302.75 314.460938 302.632812 Z M 314.460938 302.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.378906 300.085938 C 312.378906 299.96875 312.285156 299.875 312.167969 299.875 C 312.050781 299.875 311.957031 299.96875 311.957031 300.085938 C 311.957031 300.203125 312.050781 300.296875 312.167969 300.296875 C 312.285156 300.296875 312.378906 300.203125 312.378906 300.085938 Z M 312.378906 300.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.847656 297.585938 C 309.847656 297.46875 309.753906 297.375 309.636719 297.375 C 309.519531 297.375 309.425781 297.46875 309.425781 297.585938 C 309.425781 297.703125 309.519531 297.796875 309.636719 297.796875 C 309.753906 297.796875 309.847656 297.703125 309.847656 297.585938 Z M 309.847656 297.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.269531 296.867188 C 310.269531 296.75 310.175781 296.65625 310.058594 296.65625 C 309.941406 296.65625 309.847656 296.75 309.847656 296.867188 C 309.847656 296.984375 309.941406 297.078125 310.058594 297.078125 C 310.175781 297.078125 310.269531 296.984375 310.269531 296.867188 Z M 310.269531 296.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.765625 292.230469 C 311.765625 292.113281 311.671875 292.019531 311.554688 292.019531 C 311.4375 292.019531 311.34375 292.113281 311.34375 292.230469 C 311.34375 292.347656 311.4375 292.441406 311.554688 292.441406 C 311.671875 292.441406 311.765625 292.347656 311.765625 292.230469 Z M 311.765625 292.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.832031 292.082031 C 316.832031 291.964844 316.738281 291.871094 316.621094 291.871094 C 316.503906 291.871094 316.410156 291.964844 316.410156 292.082031 C 316.410156 292.199219 316.503906 292.292969 316.621094 292.292969 C 316.738281 292.292969 316.832031 292.199219 316.832031 292.082031 Z M 316.832031 292.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.320312 285.597656 C 317.320312 285.480469 317.226562 285.386719 317.109375 285.386719 C 316.992188 285.386719 316.898438 285.480469 316.898438 285.597656 C 316.898438 285.714844 316.992188 285.808594 317.109375 285.808594 C 317.226562 285.808594 317.320312 285.714844 317.320312 285.597656 Z M 317.320312 285.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.777344 285.84375 C 322.777344 285.726562 322.683594 285.632812 322.566406 285.632812 C 322.449219 285.632812 322.355469 285.726562 322.355469 285.84375 C 322.355469 285.960938 322.449219 286.054688 322.566406 286.054688 C 322.683594 286.054688 322.777344 285.960938 322.777344 285.84375 Z M 322.777344 285.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.929688 288.269531 C 317.929688 288.152344 317.835938 288.058594 317.71875 288.058594 C 317.601562 288.058594 317.507812 288.152344 317.507812 288.269531 C 317.507812 288.386719 317.601562 288.480469 317.71875 288.480469 C 317.835938 288.480469 317.929688 288.386719 317.929688 288.269531 Z M 317.929688 288.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 318.675781 286.480469 C 318.675781 286.363281 318.582031 286.269531 318.464844 286.269531 C 318.347656 286.269531 318.253906 286.363281 318.253906 286.480469 C 318.253906 286.597656 318.347656 286.691406 318.464844 286.691406 C 318.582031 286.691406 318.675781 286.597656 318.675781 286.480469 Z M 318.675781 286.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 319.179688 285.710938 C 319.179688 285.59375 319.085938 285.5 318.96875 285.5 C 318.851562 285.5 318.757812 285.59375 318.757812 285.710938 C 318.757812 285.828125 318.851562 285.921875 318.96875 285.921875 C 319.085938 285.921875 319.179688 285.828125 319.179688 285.710938 Z M 319.179688 285.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 319.316406 284.851562 C 319.316406 284.734375 319.222656 284.640625 319.105469 284.640625 C 318.988281 284.640625 318.894531 284.734375 318.894531 284.851562 C 318.894531 284.96875 318.988281 285.0625 319.105469 285.0625 C 319.222656 285.0625 319.316406 284.96875 319.316406 284.851562 Z M 319.316406 284.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.195312 284.390625 C 321.195312 284.273438 321.101562 284.179688 320.984375 284.179688 C 320.867188 284.179688 320.773438 284.273438 320.773438 284.390625 C 320.773438 284.507812 320.867188 284.601562 320.984375 284.601562 C 321.101562 284.601562 321.195312 284.507812 321.195312 284.390625 Z M 321.195312 284.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 320.207031 285.175781 C 320.207031 285.058594 320.113281 284.964844 319.996094 284.964844 C 319.878906 284.964844 319.785156 285.058594 319.785156 285.175781 C 319.785156 285.292969 319.878906 285.386719 319.996094 285.386719 C 320.113281 285.386719 320.207031 285.292969 320.207031 285.175781 Z M 320.207031 285.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.613281 281.304688 C 316.613281 281.1875 316.519531 281.09375 316.402344 281.09375 C 316.285156 281.09375 316.191406 281.1875 316.191406 281.304688 C 316.191406 281.421875 316.285156 281.515625 316.402344 281.515625 C 316.519531 281.515625 316.613281 281.421875 316.613281 281.304688 Z M 316.613281 281.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 318.464844 281.5 C 318.464844 281.382812 318.371094 281.289062 318.253906 281.289062 C 318.136719 281.289062 318.042969 281.382812 318.042969 281.5 C 318.042969 281.617188 318.136719 281.710938 318.253906 281.710938 C 318.371094 281.710938 318.464844 281.617188 318.464844 281.5 Z M 318.464844 281.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 318.203125 281.453125 C 318.203125 281.335938 318.109375 281.242188 317.992188 281.242188 C 317.875 281.242188 317.78125 281.335938 317.78125 281.453125 C 317.78125 281.570312 317.875 281.664062 317.992188 281.664062 C 318.109375 281.664062 318.203125 281.570312 318.203125 281.453125 Z M 318.203125 281.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.390625 281.777344 C 317.390625 281.660156 317.296875 281.566406 317.179688 281.566406 C 317.0625 281.566406 316.96875 281.660156 316.96875 281.777344 C 316.96875 281.894531 317.0625 281.988281 317.179688 281.988281 C 317.296875 281.988281 317.390625 281.894531 317.390625 281.777344 Z M 317.390625 281.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.433594 278.128906 C 317.433594 278.011719 317.339844 277.917969 317.222656 277.917969 C 317.105469 277.917969 317.011719 278.011719 317.011719 278.128906 C 317.011719 278.246094 317.105469 278.339844 317.222656 278.339844 C 317.339844 278.339844 317.433594 278.246094 317.433594 278.128906 Z M 317.433594 278.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.535156 275.921875 C 314.535156 275.804688 314.441406 275.710938 314.324219 275.710938 C 314.207031 275.710938 314.113281 275.804688 314.113281 275.921875 C 314.113281 276.039062 314.207031 276.132812 314.324219 276.132812 C 314.441406 276.132812 314.535156 276.039062 314.535156 275.921875 Z M 314.535156 275.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.390625 279.554688 C 315.390625 279.4375 315.296875 279.34375 315.179688 279.34375 C 315.0625 279.34375 314.96875 279.4375 314.96875 279.554688 C 314.96875 279.671875 315.0625 279.765625 315.179688 279.765625 C 315.296875 279.765625 315.390625 279.671875 315.390625 279.554688 Z M 315.390625 279.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.5 275.394531 C 312.5 275.277344 312.40625 275.183594 312.289062 275.183594 C 312.171875 275.183594 312.078125 275.277344 312.078125 275.394531 C 312.078125 275.511719 312.171875 275.605469 312.289062 275.605469 C 312.40625 275.605469 312.5 275.511719 312.5 275.394531 Z M 312.5 275.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.855469 272.007812 C 312.855469 271.890625 312.761719 271.796875 312.644531 271.796875 C 312.527344 271.796875 312.433594 271.890625 312.433594 272.007812 C 312.433594 272.125 312.527344 272.21875 312.644531 272.21875 C 312.761719 272.21875 312.855469 272.125 312.855469 272.007812 Z M 312.855469 272.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.109375 270.582031 C 314.109375 270.464844 314.015625 270.371094 313.898438 270.371094 C 313.78125 270.371094 313.6875 270.464844 313.6875 270.582031 C 313.6875 270.699219 313.78125 270.792969 313.898438 270.792969 C 314.015625 270.792969 314.109375 270.699219 314.109375 270.582031 Z M 314.109375 270.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.425781 268.984375 C 314.425781 268.867188 314.332031 268.773438 314.214844 268.773438 C 314.097656 268.773438 314.003906 268.867188 314.003906 268.984375 C 314.003906 269.101562 314.097656 269.195312 314.214844 269.195312 C 314.332031 269.195312 314.425781 269.101562 314.425781 268.984375 Z M 314.425781 268.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 320.039062 266.304688 C 320.039062 266.1875 319.945312 266.09375 319.828125 266.09375 C 319.710938 266.09375 319.617188 266.1875 319.617188 266.304688 C 319.617188 266.421875 319.710938 266.515625 319.828125 266.515625 C 319.945312 266.515625 320.039062 266.421875 320.039062 266.304688 Z M 320.039062 266.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 318.484375 265.773438 C 318.484375 265.65625 318.390625 265.5625 318.273438 265.5625 C 318.15625 265.5625 318.0625 265.65625 318.0625 265.773438 C 318.0625 265.890625 318.15625 265.984375 318.273438 265.984375 C 318.390625 265.984375 318.484375 265.890625 318.484375 265.773438 Z M 318.484375 265.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 320.191406 270.21875 C 320.191406 270.101562 320.097656 270.007812 319.980469 270.007812 C 319.863281 270.007812 319.769531 270.101562 319.769531 270.21875 C 319.769531 270.335938 319.863281 270.429688 319.980469 270.429688 C 320.097656 270.429688 320.191406 270.335938 320.191406 270.21875 Z M 320.191406 270.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 319.582031 273.980469 C 319.582031 273.863281 319.488281 273.769531 319.371094 273.769531 C 319.253906 273.769531 319.160156 273.863281 319.160156 273.980469 C 319.160156 274.097656 319.253906 274.191406 319.371094 274.191406 C 319.488281 274.191406 319.582031 274.097656 319.582031 273.980469 Z M 319.582031 273.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 318.085938 270.699219 C 318.085938 270.582031 317.992188 270.488281 317.875 270.488281 C 317.757812 270.488281 317.664062 270.582031 317.664062 270.699219 C 317.664062 270.816406 317.757812 270.910156 317.875 270.910156 C 317.992188 270.910156 318.085938 270.816406 318.085938 270.699219 Z M 318.085938 270.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.898438 271.316406 C 317.898438 271.199219 317.804688 271.105469 317.6875 271.105469 C 317.570312 271.105469 317.476562 271.199219 317.476562 271.316406 C 317.476562 271.433594 317.570312 271.527344 317.6875 271.527344 C 317.804688 271.527344 317.898438 271.433594 317.898438 271.316406 Z M 317.898438 271.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.460938 275.328125 C 317.460938 275.210938 317.367188 275.117188 317.25 275.117188 C 317.132812 275.117188 317.039062 275.210938 317.039062 275.328125 C 317.039062 275.445312 317.132812 275.539062 317.25 275.539062 C 317.367188 275.539062 317.460938 275.445312 317.460938 275.328125 Z M 317.460938 275.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.542969 271.449219 C 317.542969 271.332031 317.449219 271.238281 317.332031 271.238281 C 317.214844 271.238281 317.121094 271.332031 317.121094 271.449219 C 317.121094 271.566406 317.214844 271.660156 317.332031 271.660156 C 317.449219 271.660156 317.542969 271.566406 317.542969 271.449219 Z M 317.542969 271.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 318.445312 275.761719 C 318.445312 275.644531 318.351562 275.550781 318.234375 275.550781 C 318.117188 275.550781 318.023438 275.644531 318.023438 275.761719 C 318.023438 275.878906 318.117188 275.972656 318.234375 275.972656 C 318.351562 275.972656 318.445312 275.878906 318.445312 275.761719 Z M 318.445312 275.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.367188 273.640625 C 322.367188 273.523438 322.273438 273.429688 322.15625 273.429688 C 322.039062 273.429688 321.945312 273.523438 321.945312 273.640625 C 321.945312 273.757812 322.039062 273.851562 322.15625 273.851562 C 322.273438 273.851562 322.367188 273.757812 322.367188 273.640625 Z M 322.367188 273.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.804688 273.667969 C 321.804688 273.550781 321.710938 273.457031 321.59375 273.457031 C 321.476562 273.457031 321.382812 273.550781 321.382812 273.667969 C 321.382812 273.785156 321.476562 273.878906 321.59375 273.878906 C 321.710938 273.878906 321.804688 273.785156 321.804688 273.667969 Z M 321.804688 273.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.804688 275.289062 C 317.804688 275.171875 317.710938 275.078125 317.59375 275.078125 C 317.476562 275.078125 317.382812 275.171875 317.382812 275.289062 C 317.382812 275.40625 317.476562 275.5 317.59375 275.5 C 317.710938 275.5 317.804688 275.40625 317.804688 275.289062 Z M 317.804688 275.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.476562 278.03125 C 322.476562 277.914062 322.382812 277.820312 322.265625 277.820312 C 322.148438 277.820312 322.054688 277.914062 322.054688 278.03125 C 322.054688 278.148438 322.148438 278.242188 322.265625 278.242188 C 322.382812 278.242188 322.476562 278.148438 322.476562 278.03125 Z M 322.476562 278.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.183594 276.964844 C 321.183594 276.847656 321.089844 276.753906 320.972656 276.753906 C 320.855469 276.753906 320.761719 276.847656 320.761719 276.964844 C 320.761719 277.082031 320.855469 277.175781 320.972656 277.175781 C 321.089844 277.175781 321.183594 277.082031 321.183594 276.964844 Z M 321.183594 276.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.632812 272.339844 C 323.632812 272.222656 323.539062 272.128906 323.421875 272.128906 C 323.304688 272.128906 323.210938 272.222656 323.210938 272.339844 C 323.210938 272.457031 323.304688 272.550781 323.421875 272.550781 C 323.539062 272.550781 323.632812 272.457031 323.632812 272.339844 Z M 323.632812 272.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.921875 273.730469 C 326.921875 273.613281 326.828125 273.519531 326.710938 273.519531 C 326.59375 273.519531 326.5 273.613281 326.5 273.730469 C 326.5 273.847656 326.59375 273.941406 326.710938 273.941406 C 326.828125 273.941406 326.921875 273.847656 326.921875 273.730469 Z M 326.921875 273.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.222656 274.328125 C 325.222656 274.210938 325.128906 274.117188 325.011719 274.117188 C 324.894531 274.117188 324.800781 274.210938 324.800781 274.328125 C 324.800781 274.445312 324.894531 274.539062 325.011719 274.539062 C 325.128906 274.539062 325.222656 274.445312 325.222656 274.328125 Z M 325.222656 274.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.804688 274.761719 C 326.804688 274.644531 326.710938 274.550781 326.59375 274.550781 C 326.476562 274.550781 326.382812 274.644531 326.382812 274.761719 C 326.382812 274.878906 326.476562 274.972656 326.59375 274.972656 C 326.710938 274.972656 326.804688 274.878906 326.804688 274.761719 Z M 326.804688 274.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.691406 272.804688 C 326.691406 272.6875 326.597656 272.59375 326.480469 272.59375 C 326.363281 272.59375 326.269531 272.6875 326.269531 272.804688 C 326.269531 272.921875 326.363281 273.015625 326.480469 273.015625 C 326.597656 273.015625 326.691406 272.921875 326.691406 272.804688 Z M 326.691406 272.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.445312 275.496094 C 326.445312 275.378906 326.351562 275.285156 326.234375 275.285156 C 326.117188 275.285156 326.023438 275.378906 326.023438 275.496094 C 326.023438 275.613281 326.117188 275.707031 326.234375 275.707031 C 326.351562 275.707031 326.445312 275.613281 326.445312 275.496094 Z M 326.445312 275.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.078125 273.601562 C 326.078125 273.484375 325.984375 273.390625 325.867188 273.390625 C 325.75 273.390625 325.65625 273.484375 325.65625 273.601562 C 325.65625 273.71875 325.75 273.8125 325.867188 273.8125 C 325.984375 273.8125 326.078125 273.71875 326.078125 273.601562 Z M 326.078125 273.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.757812 273.121094 C 324.757812 273.003906 324.664062 272.910156 324.546875 272.910156 C 324.429688 272.910156 324.335938 273.003906 324.335938 273.121094 C 324.335938 273.238281 324.429688 273.332031 324.546875 273.332031 C 324.664062 273.332031 324.757812 273.238281 324.757812 273.121094 Z M 324.757812 273.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.574219 274.09375 C 324.574219 273.976562 324.480469 273.882812 324.363281 273.882812 C 324.246094 273.882812 324.152344 273.976562 324.152344 274.09375 C 324.152344 274.210938 324.246094 274.304688 324.363281 274.304688 C 324.480469 274.304688 324.574219 274.210938 324.574219 274.09375 Z M 324.574219 274.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.316406 272.550781 C 327.316406 272.433594 327.222656 272.339844 327.105469 272.339844 C 326.988281 272.339844 326.894531 272.433594 326.894531 272.550781 C 326.894531 272.667969 326.988281 272.761719 327.105469 272.761719 C 327.222656 272.761719 327.316406 272.667969 327.316406 272.550781 Z M 327.316406 272.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.757812 271.039062 C 327.757812 270.921875 327.664062 270.828125 327.546875 270.828125 C 327.429688 270.828125 327.335938 270.921875 327.335938 271.039062 C 327.335938 271.15625 327.429688 271.25 327.546875 271.25 C 327.664062 271.25 327.757812 271.15625 327.757812 271.039062 Z M 327.757812 271.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.207031 269.914062 C 324.207031 269.796875 324.113281 269.703125 323.996094 269.703125 C 323.878906 269.703125 323.785156 269.796875 323.785156 269.914062 C 323.785156 270.03125 323.878906 270.125 323.996094 270.125 C 324.113281 270.125 324.207031 270.03125 324.207031 269.914062 Z M 324.207031 269.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.164062 269.917969 C 321.164062 269.800781 321.070312 269.707031 320.953125 269.707031 C 320.835938 269.707031 320.742188 269.800781 320.742188 269.917969 C 320.742188 270.035156 320.835938 270.128906 320.953125 270.128906 C 321.070312 270.128906 321.164062 270.035156 321.164062 269.917969 Z M 321.164062 269.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.785156 268.042969 C 322.785156 267.925781 322.691406 267.832031 322.574219 267.832031 C 322.457031 267.832031 322.363281 267.925781 322.363281 268.042969 C 322.363281 268.160156 322.457031 268.253906 322.574219 268.253906 C 322.691406 268.253906 322.785156 268.160156 322.785156 268.042969 Z M 322.785156 268.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.210938 269.464844 C 322.210938 269.347656 322.117188 269.253906 322 269.253906 C 321.882812 269.253906 321.789062 269.347656 321.789062 269.464844 C 321.789062 269.582031 321.882812 269.675781 322 269.675781 C 322.117188 269.675781 322.210938 269.582031 322.210938 269.464844 Z M 322.210938 269.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.324219 267.554688 C 323.324219 267.4375 323.230469 267.34375 323.113281 267.34375 C 322.996094 267.34375 322.902344 267.4375 322.902344 267.554688 C 322.902344 267.671875 322.996094 267.765625 323.113281 267.765625 C 323.230469 267.765625 323.324219 267.671875 323.324219 267.554688 Z M 323.324219 267.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.148438 265.996094 C 323.148438 265.878906 323.054688 265.785156 322.9375 265.785156 C 322.820312 265.785156 322.726562 265.878906 322.726562 265.996094 C 322.726562 266.113281 322.820312 266.207031 322.9375 266.207031 C 323.054688 266.207031 323.148438 266.113281 323.148438 265.996094 Z M 323.148438 265.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.519531 266.5625 C 326.519531 266.445312 326.425781 266.351562 326.308594 266.351562 C 326.191406 266.351562 326.097656 266.445312 326.097656 266.5625 C 326.097656 266.679688 326.191406 266.773438 326.308594 266.773438 C 326.425781 266.773438 326.519531 266.679688 326.519531 266.5625 Z M 326.519531 266.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.480469 269.324219 C 324.480469 269.207031 324.386719 269.113281 324.269531 269.113281 C 324.152344 269.113281 324.058594 269.207031 324.058594 269.324219 C 324.058594 269.441406 324.152344 269.535156 324.269531 269.535156 C 324.386719 269.535156 324.480469 269.441406 324.480469 269.324219 Z M 324.480469 269.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.941406 268.355469 C 327.941406 268.238281 327.847656 268.144531 327.730469 268.144531 C 327.613281 268.144531 327.519531 268.238281 327.519531 268.355469 C 327.519531 268.472656 327.613281 268.566406 327.730469 268.566406 C 327.847656 268.566406 327.941406 268.472656 327.941406 268.355469 Z M 327.941406 268.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.542969 265.28125 C 327.542969 265.164062 327.449219 265.070312 327.332031 265.070312 C 327.214844 265.070312 327.121094 265.164062 327.121094 265.28125 C 327.121094 265.398438 327.214844 265.492188 327.332031 265.492188 C 327.449219 265.492188 327.542969 265.398438 327.542969 265.28125 Z M 327.542969 265.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.605469 268.820312 C 326.605469 268.703125 326.511719 268.609375 326.394531 268.609375 C 326.277344 268.609375 326.183594 268.703125 326.183594 268.820312 C 326.183594 268.9375 326.277344 269.03125 326.394531 269.03125 C 326.511719 269.03125 326.605469 268.9375 326.605469 268.820312 Z M 326.605469 268.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 328.773438 268.089844 C 328.773438 267.972656 328.679688 267.878906 328.5625 267.878906 C 328.445312 267.878906 328.351562 267.972656 328.351562 268.089844 C 328.351562 268.207031 328.445312 268.300781 328.5625 268.300781 C 328.679688 268.300781 328.773438 268.207031 328.773438 268.089844 Z M 328.773438 268.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.542969 267.503906 C 324.542969 267.386719 324.449219 267.292969 324.332031 267.292969 C 324.214844 267.292969 324.121094 267.386719 324.121094 267.503906 C 324.121094 267.621094 324.214844 267.714844 324.332031 267.714844 C 324.449219 267.714844 324.542969 267.621094 324.542969 267.503906 Z M 324.542969 267.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.730469 266.019531 C 323.730469 265.902344 323.636719 265.808594 323.519531 265.808594 C 323.402344 265.808594 323.308594 265.902344 323.308594 266.019531 C 323.308594 266.136719 323.402344 266.230469 323.519531 266.230469 C 323.636719 266.230469 323.730469 266.136719 323.730469 266.019531 Z M 323.730469 266.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.890625 263.878906 C 324.890625 263.761719 324.796875 263.667969 324.679688 263.667969 C 324.5625 263.667969 324.46875 263.761719 324.46875 263.878906 C 324.46875 263.996094 324.5625 264.089844 324.679688 264.089844 C 324.796875 264.089844 324.890625 263.996094 324.890625 263.878906 Z M 324.890625 263.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.878906 261.964844 C 322.878906 261.847656 322.785156 261.753906 322.667969 261.753906 C 322.550781 261.753906 322.457031 261.847656 322.457031 261.964844 C 322.457031 262.082031 322.550781 262.175781 322.667969 262.175781 C 322.785156 262.175781 322.878906 262.082031 322.878906 261.964844 Z M 322.878906 261.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.597656 261.605469 C 321.597656 261.488281 321.503906 261.394531 321.386719 261.394531 C 321.269531 261.394531 321.175781 261.488281 321.175781 261.605469 C 321.175781 261.722656 321.269531 261.816406 321.386719 261.816406 C 321.503906 261.816406 321.597656 261.722656 321.597656 261.605469 Z M 321.597656 261.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 320.871094 258.390625 C 320.871094 258.273438 320.777344 258.179688 320.660156 258.179688 C 320.542969 258.179688 320.449219 258.273438 320.449219 258.390625 C 320.449219 258.507812 320.542969 258.601562 320.660156 258.601562 C 320.777344 258.601562 320.871094 258.507812 320.871094 258.390625 Z M 320.871094 258.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 319.917969 257.96875 C 319.917969 257.851562 319.824219 257.757812 319.707031 257.757812 C 319.589844 257.757812 319.496094 257.851562 319.496094 257.96875 C 319.496094 258.085938 319.589844 258.179688 319.707031 258.179688 C 319.824219 258.179688 319.917969 258.085938 319.917969 257.96875 Z M 319.917969 257.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.816406 256.304688 C 316.816406 256.1875 316.722656 256.09375 316.605469 256.09375 C 316.488281 256.09375 316.394531 256.1875 316.394531 256.304688 C 316.394531 256.421875 316.488281 256.515625 316.605469 256.515625 C 316.722656 256.515625 316.816406 256.421875 316.816406 256.304688 Z M 316.816406 256.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.582031 253.636719 C 317.582031 253.519531 317.488281 253.425781 317.371094 253.425781 C 317.253906 253.425781 317.160156 253.519531 317.160156 253.636719 C 317.160156 253.753906 317.253906 253.847656 317.371094 253.847656 C 317.488281 253.847656 317.582031 253.753906 317.582031 253.636719 Z M 317.582031 253.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.558594 250.339844 C 317.558594 250.222656 317.464844 250.128906 317.347656 250.128906 C 317.230469 250.128906 317.136719 250.222656 317.136719 250.339844 C 317.136719 250.457031 317.230469 250.550781 317.347656 250.550781 C 317.464844 250.550781 317.558594 250.457031 317.558594 250.339844 Z M 317.558594 250.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.605469 255.183594 C 313.605469 255.066406 313.511719 254.972656 313.394531 254.972656 C 313.277344 254.972656 313.183594 255.066406 313.183594 255.183594 C 313.183594 255.300781 313.277344 255.394531 313.394531 255.394531 C 313.511719 255.394531 313.605469 255.300781 313.605469 255.183594 Z M 313.605469 255.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.132812 255.203125 C 312.132812 255.085938 312.039062 254.992188 311.921875 254.992188 C 311.804688 254.992188 311.710938 255.085938 311.710938 255.203125 C 311.710938 255.320312 311.804688 255.414062 311.921875 255.414062 C 312.039062 255.414062 312.132812 255.320312 312.132812 255.203125 Z M 312.132812 255.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.320312 255.902344 C 308.320312 255.785156 308.226562 255.691406 308.109375 255.691406 C 307.992188 255.691406 307.898438 255.785156 307.898438 255.902344 C 307.898438 256.019531 307.992188 256.113281 308.109375 256.113281 C 308.226562 256.113281 308.320312 256.019531 308.320312 255.902344 Z M 308.320312 255.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.097656 254.5625 C 311.097656 254.445312 311.003906 254.351562 310.886719 254.351562 C 310.769531 254.351562 310.675781 254.445312 310.675781 254.5625 C 310.675781 254.679688 310.769531 254.773438 310.886719 254.773438 C 311.003906 254.773438 311.097656 254.679688 311.097656 254.5625 Z M 311.097656 254.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.832031 251.683594 C 312.832031 251.566406 312.738281 251.472656 312.621094 251.472656 C 312.503906 251.472656 312.410156 251.566406 312.410156 251.683594 C 312.410156 251.800781 312.503906 251.894531 312.621094 251.894531 C 312.738281 251.894531 312.832031 251.800781 312.832031 251.683594 Z M 312.832031 251.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.765625 254.992188 C 314.765625 254.875 314.671875 254.78125 314.554688 254.78125 C 314.4375 254.78125 314.34375 254.875 314.34375 254.992188 C 314.34375 255.109375 314.4375 255.203125 314.554688 255.203125 C 314.671875 255.203125 314.765625 255.109375 314.765625 254.992188 Z M 314.765625 254.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.429688 255.53125 C 315.429688 255.414062 315.335938 255.320312 315.21875 255.320312 C 315.101562 255.320312 315.007812 255.414062 315.007812 255.53125 C 315.007812 255.648438 315.101562 255.742188 315.21875 255.742188 C 315.335938 255.742188 315.429688 255.648438 315.429688 255.53125 Z M 315.429688 255.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.761719 256.671875 C 315.761719 256.554688 315.667969 256.460938 315.550781 256.460938 C 315.433594 256.460938 315.339844 256.554688 315.339844 256.671875 C 315.339844 256.789062 315.433594 256.882812 315.550781 256.882812 C 315.667969 256.882812 315.761719 256.789062 315.761719 256.671875 Z M 315.761719 256.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.324219 254.042969 C 317.324219 253.925781 317.230469 253.832031 317.113281 253.832031 C 316.996094 253.832031 316.902344 253.925781 316.902344 254.042969 C 316.902344 254.160156 316.996094 254.253906 317.113281 254.253906 C 317.230469 254.253906 317.324219 254.160156 317.324219 254.042969 Z M 317.324219 254.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.351562 256.195312 C 316.351562 256.078125 316.257812 255.984375 316.140625 255.984375 C 316.023438 255.984375 315.929688 256.078125 315.929688 256.195312 C 315.929688 256.3125 316.023438 256.40625 316.140625 256.40625 C 316.257812 256.40625 316.351562 256.3125 316.351562 256.195312 Z M 316.351562 256.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.113281 262.570312 C 315.113281 262.453125 315.019531 262.359375 314.902344 262.359375 C 314.785156 262.359375 314.691406 262.453125 314.691406 262.570312 C 314.691406 262.6875 314.785156 262.78125 314.902344 262.78125 C 315.019531 262.78125 315.113281 262.6875 315.113281 262.570312 Z M 315.113281 262.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.335938 264.828125 C 315.335938 264.710938 315.242188 264.617188 315.125 264.617188 C 315.007812 264.617188 314.914062 264.710938 314.914062 264.828125 C 314.914062 264.945312 315.007812 265.039062 315.125 265.039062 C 315.242188 265.039062 315.335938 264.945312 315.335938 264.828125 Z M 315.335938 264.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.738281 267.269531 C 316.738281 267.152344 316.644531 267.058594 316.527344 267.058594 C 316.410156 267.058594 316.316406 267.152344 316.316406 267.269531 C 316.316406 267.386719 316.410156 267.480469 316.527344 267.480469 C 316.644531 267.480469 316.738281 267.386719 316.738281 267.269531 Z M 316.738281 267.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.511719 265.652344 C 317.511719 265.535156 317.417969 265.441406 317.300781 265.441406 C 317.183594 265.441406 317.089844 265.535156 317.089844 265.652344 C 317.089844 265.769531 317.183594 265.863281 317.300781 265.863281 C 317.417969 265.863281 317.511719 265.769531 317.511719 265.652344 Z M 317.511719 265.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.839844 266.777344 C 316.839844 266.660156 316.746094 266.566406 316.628906 266.566406 C 316.511719 266.566406 316.417969 266.660156 316.417969 266.777344 C 316.417969 266.894531 316.511719 266.988281 316.628906 266.988281 C 316.746094 266.988281 316.839844 266.894531 316.839844 266.777344 Z M 316.839844 266.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.855469 266.632812 C 317.855469 266.515625 317.761719 266.421875 317.644531 266.421875 C 317.527344 266.421875 317.433594 266.515625 317.433594 266.632812 C 317.433594 266.75 317.527344 266.84375 317.644531 266.84375 C 317.761719 266.84375 317.855469 266.75 317.855469 266.632812 Z M 317.855469 266.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.113281 270.355469 C 315.113281 270.238281 315.019531 270.144531 314.902344 270.144531 C 314.785156 270.144531 314.691406 270.238281 314.691406 270.355469 C 314.691406 270.472656 314.785156 270.566406 314.902344 270.566406 C 315.019531 270.566406 315.113281 270.472656 315.113281 270.355469 Z M 315.113281 270.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 318.722656 271.769531 C 318.722656 271.652344 318.628906 271.558594 318.511719 271.558594 C 318.394531 271.558594 318.300781 271.652344 318.300781 271.769531 C 318.300781 271.886719 318.394531 271.980469 318.511719 271.980469 C 318.628906 271.980469 318.722656 271.886719 318.722656 271.769531 Z M 318.722656 271.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 320.242188 270.195312 C 320.242188 270.078125 320.148438 269.984375 320.03125 269.984375 C 319.914062 269.984375 319.820312 270.078125 319.820312 270.195312 C 319.820312 270.3125 319.914062 270.40625 320.03125 270.40625 C 320.148438 270.40625 320.242188 270.3125 320.242188 270.195312 Z M 320.242188 270.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.96875 272.523438 C 315.96875 272.40625 315.875 272.3125 315.757812 272.3125 C 315.640625 272.3125 315.546875 272.40625 315.546875 272.523438 C 315.546875 272.640625 315.640625 272.734375 315.757812 272.734375 C 315.875 272.734375 315.96875 272.640625 315.96875 272.523438 Z M 315.96875 272.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.335938 273.140625 C 314.335938 273.023438 314.242188 272.929688 314.125 272.929688 C 314.007812 272.929688 313.914062 273.023438 313.914062 273.140625 C 313.914062 273.257812 314.007812 273.351562 314.125 273.351562 C 314.242188 273.351562 314.335938 273.257812 314.335938 273.140625 Z M 314.335938 273.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.425781 269.261719 C 310.425781 269.144531 310.332031 269.050781 310.214844 269.050781 C 310.097656 269.050781 310.003906 269.144531 310.003906 269.261719 C 310.003906 269.378906 310.097656 269.472656 310.214844 269.472656 C 310.332031 269.472656 310.425781 269.378906 310.425781 269.261719 Z M 310.425781 269.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.707031 268.917969 C 313.707031 268.800781 313.613281 268.707031 313.496094 268.707031 C 313.378906 268.707031 313.285156 268.800781 313.285156 268.917969 C 313.285156 269.035156 313.378906 269.128906 313.496094 269.128906 C 313.613281 269.128906 313.707031 269.035156 313.707031 268.917969 Z M 313.707031 268.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.679688 265.433594 C 314.679688 265.316406 314.585938 265.222656 314.46875 265.222656 C 314.351562 265.222656 314.257812 265.316406 314.257812 265.433594 C 314.257812 265.550781 314.351562 265.644531 314.46875 265.644531 C 314.585938 265.644531 314.679688 265.550781 314.679688 265.433594 Z M 314.679688 265.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.972656 264.859375 C 315.972656 264.742188 315.878906 264.648438 315.761719 264.648438 C 315.644531 264.648438 315.550781 264.742188 315.550781 264.859375 C 315.550781 264.976562 315.644531 265.070312 315.761719 265.070312 C 315.878906 265.070312 315.972656 264.976562 315.972656 264.859375 Z M 315.972656 264.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.039062 263.003906 C 317.039062 262.886719 316.945312 262.792969 316.828125 262.792969 C 316.710938 262.792969 316.617188 262.886719 316.617188 263.003906 C 316.617188 263.121094 316.710938 263.214844 316.828125 263.214844 C 316.945312 263.214844 317.039062 263.121094 317.039062 263.003906 Z M 317.039062 263.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.46875 262.851562 C 315.46875 262.734375 315.375 262.640625 315.257812 262.640625 C 315.140625 262.640625 315.046875 262.734375 315.046875 262.851562 C 315.046875 262.96875 315.140625 263.0625 315.257812 263.0625 C 315.375 263.0625 315.46875 262.96875 315.46875 262.851562 Z M 315.46875 262.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 318.304688 262.273438 C 318.304688 262.15625 318.210938 262.0625 318.09375 262.0625 C 317.976562 262.0625 317.882812 262.15625 317.882812 262.273438 C 317.882812 262.390625 317.976562 262.484375 318.09375 262.484375 C 318.210938 262.484375 318.304688 262.390625 318.304688 262.273438 Z M 318.304688 262.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.773438 260.375 C 322.773438 260.257812 322.679688 260.164062 322.5625 260.164062 C 322.445312 260.164062 322.351562 260.257812 322.351562 260.375 C 322.351562 260.492188 322.445312 260.585938 322.5625 260.585938 C 322.679688 260.585938 322.773438 260.492188 322.773438 260.375 Z M 322.773438 260.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.035156 257.960938 C 322.035156 257.84375 321.941406 257.75 321.824219 257.75 C 321.707031 257.75 321.613281 257.84375 321.613281 257.960938 C 321.613281 258.078125 321.707031 258.171875 321.824219 258.171875 C 321.941406 258.171875 322.035156 258.078125 322.035156 257.960938 Z M 322.035156 257.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.25 258.269531 C 323.25 258.152344 323.15625 258.058594 323.039062 258.058594 C 322.921875 258.058594 322.828125 258.152344 322.828125 258.269531 C 322.828125 258.386719 322.921875 258.480469 323.039062 258.480469 C 323.15625 258.480469 323.25 258.386719 323.25 258.269531 Z M 323.25 258.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.664062 260.976562 C 323.664062 260.859375 323.570312 260.765625 323.453125 260.765625 C 323.335938 260.765625 323.242188 260.859375 323.242188 260.976562 C 323.242188 261.09375 323.335938 261.1875 323.453125 261.1875 C 323.570312 261.1875 323.664062 261.09375 323.664062 260.976562 Z M 323.664062 260.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.605469 258.925781 C 322.605469 258.808594 322.511719 258.714844 322.394531 258.714844 C 322.277344 258.714844 322.183594 258.808594 322.183594 258.925781 C 322.183594 259.042969 322.277344 259.136719 322.394531 259.136719 C 322.511719 259.136719 322.605469 259.042969 322.605469 258.925781 Z M 322.605469 258.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.066406 257.914062 C 322.066406 257.796875 321.972656 257.703125 321.855469 257.703125 C 321.738281 257.703125 321.644531 257.796875 321.644531 257.914062 C 321.644531 258.03125 321.738281 258.125 321.855469 258.125 C 321.972656 258.125 322.066406 258.03125 322.066406 257.914062 Z M 322.066406 257.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.011719 258.097656 C 325.011719 257.980469 324.917969 257.886719 324.800781 257.886719 C 324.683594 257.886719 324.589844 257.980469 324.589844 258.097656 C 324.589844 258.214844 324.683594 258.308594 324.800781 258.308594 C 324.917969 258.308594 325.011719 258.214844 325.011719 258.097656 Z M 325.011719 258.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.203125 253.089844 C 323.203125 252.972656 323.109375 252.878906 322.992188 252.878906 C 322.875 252.878906 322.78125 252.972656 322.78125 253.089844 C 322.78125 253.207031 322.875 253.300781 322.992188 253.300781 C 323.109375 253.300781 323.203125 253.207031 323.203125 253.089844 Z M 323.203125 253.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.433594 256.253906 C 321.433594 256.136719 321.339844 256.042969 321.222656 256.042969 C 321.105469 256.042969 321.011719 256.136719 321.011719 256.253906 C 321.011719 256.371094 321.105469 256.464844 321.222656 256.464844 C 321.339844 256.464844 321.433594 256.371094 321.433594 256.253906 Z M 321.433594 256.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.226562 258.117188 C 321.226562 258 321.132812 257.90625 321.015625 257.90625 C 320.898438 257.90625 320.804688 258 320.804688 258.117188 C 320.804688 258.234375 320.898438 258.328125 321.015625 258.328125 C 321.132812 258.328125 321.226562 258.234375 321.226562 258.117188 Z M 321.226562 258.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.378906 255.71875 C 322.378906 255.601562 322.285156 255.507812 322.167969 255.507812 C 322.050781 255.507812 321.957031 255.601562 321.957031 255.71875 C 321.957031 255.835938 322.050781 255.929688 322.167969 255.929688 C 322.285156 255.929688 322.378906 255.835938 322.378906 255.71875 Z M 322.378906 255.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.132812 256.929688 C 321.132812 256.8125 321.039062 256.71875 320.921875 256.71875 C 320.804688 256.71875 320.710938 256.8125 320.710938 256.929688 C 320.710938 257.046875 320.804688 257.140625 320.921875 257.140625 C 321.039062 257.140625 321.132812 257.046875 321.132812 256.929688 Z M 321.132812 256.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.898438 257.007812 C 322.898438 256.890625 322.804688 256.796875 322.6875 256.796875 C 322.570312 256.796875 322.476562 256.890625 322.476562 257.007812 C 322.476562 257.125 322.570312 257.21875 322.6875 257.21875 C 322.804688 257.21875 322.898438 257.125 322.898438 257.007812 Z M 322.898438 257.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.4375 258.359375 C 325.4375 258.242188 325.34375 258.148438 325.226562 258.148438 C 325.109375 258.148438 325.015625 258.242188 325.015625 258.359375 C 325.015625 258.476562 325.109375 258.570312 325.226562 258.570312 C 325.34375 258.570312 325.4375 258.476562 325.4375 258.359375 Z M 325.4375 258.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.960938 259.347656 C 325.960938 259.230469 325.867188 259.136719 325.75 259.136719 C 325.632812 259.136719 325.539062 259.230469 325.539062 259.347656 C 325.539062 259.464844 325.632812 259.558594 325.75 259.558594 C 325.867188 259.558594 325.960938 259.464844 325.960938 259.347656 Z M 325.960938 259.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.230469 258.46875 C 326.230469 258.351562 326.136719 258.257812 326.019531 258.257812 C 325.902344 258.257812 325.808594 258.351562 325.808594 258.46875 C 325.808594 258.585938 325.902344 258.679688 326.019531 258.679688 C 326.136719 258.679688 326.230469 258.585938 326.230469 258.46875 Z M 326.230469 258.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.585938 256.960938 C 325.585938 256.84375 325.492188 256.75 325.375 256.75 C 325.257812 256.75 325.164062 256.84375 325.164062 256.960938 C 325.164062 257.078125 325.257812 257.171875 325.375 257.171875 C 325.492188 257.171875 325.585938 257.078125 325.585938 256.960938 Z M 325.585938 256.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.394531 253.71875 C 324.394531 253.601562 324.300781 253.507812 324.183594 253.507812 C 324.066406 253.507812 323.972656 253.601562 323.972656 253.71875 C 323.972656 253.835938 324.066406 253.929688 324.183594 253.929688 C 324.300781 253.929688 324.394531 253.835938 324.394531 253.71875 Z M 324.394531 253.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.171875 250.804688 C 324.171875 250.6875 324.078125 250.59375 323.960938 250.59375 C 323.84375 250.59375 323.75 250.6875 323.75 250.804688 C 323.75 250.921875 323.84375 251.015625 323.960938 251.015625 C 324.078125 251.015625 324.171875 250.921875 324.171875 250.804688 Z M 324.171875 250.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.972656 249.921875 C 325.972656 249.804688 325.878906 249.710938 325.761719 249.710938 C 325.644531 249.710938 325.550781 249.804688 325.550781 249.921875 C 325.550781 250.039062 325.644531 250.132812 325.761719 250.132812 C 325.878906 250.132812 325.972656 250.039062 325.972656 249.921875 Z M 325.972656 249.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 330.785156 250.867188 C 330.785156 250.75 330.691406 250.65625 330.574219 250.65625 C 330.457031 250.65625 330.363281 250.75 330.363281 250.867188 C 330.363281 250.984375 330.457031 251.078125 330.574219 251.078125 C 330.691406 251.078125 330.785156 250.984375 330.785156 250.867188 Z M 330.785156 250.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 328.507812 253.695312 C 328.507812 253.578125 328.414062 253.484375 328.296875 253.484375 C 328.179688 253.484375 328.085938 253.578125 328.085938 253.695312 C 328.085938 253.8125 328.179688 253.90625 328.296875 253.90625 C 328.414062 253.90625 328.507812 253.8125 328.507812 253.695312 Z M 328.507812 253.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 330.527344 253.8125 C 330.527344 253.695312 330.433594 253.601562 330.316406 253.601562 C 330.199219 253.601562 330.105469 253.695312 330.105469 253.8125 C 330.105469 253.929688 330.199219 254.023438 330.316406 254.023438 C 330.433594 254.023438 330.527344 253.929688 330.527344 253.8125 Z M 330.527344 253.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.78125 255.019531 C 327.78125 254.902344 327.6875 254.808594 327.570312 254.808594 C 327.453125 254.808594 327.359375 254.902344 327.359375 255.019531 C 327.359375 255.136719 327.453125 255.230469 327.570312 255.230469 C 327.6875 255.230469 327.78125 255.136719 327.78125 255.019531 Z M 327.78125 255.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 328.328125 254.65625 C 328.328125 254.539062 328.234375 254.445312 328.117188 254.445312 C 328 254.445312 327.90625 254.539062 327.90625 254.65625 C 327.90625 254.773438 328 254.867188 328.117188 254.867188 C 328.234375 254.867188 328.328125 254.773438 328.328125 254.65625 Z M 328.328125 254.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 331.339844 256.527344 C 331.339844 256.410156 331.246094 256.316406 331.128906 256.316406 C 331.011719 256.316406 330.917969 256.410156 330.917969 256.527344 C 330.917969 256.644531 331.011719 256.738281 331.128906 256.738281 C 331.246094 256.738281 331.339844 256.644531 331.339844 256.527344 Z M 331.339844 256.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 329.523438 256.457031 C 329.523438 256.339844 329.429688 256.246094 329.3125 256.246094 C 329.195312 256.246094 329.101562 256.339844 329.101562 256.457031 C 329.101562 256.574219 329.195312 256.667969 329.3125 256.667969 C 329.429688 256.667969 329.523438 256.574219 329.523438 256.457031 Z M 329.523438 256.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 330.984375 256.84375 C 330.984375 256.726562 330.890625 256.632812 330.773438 256.632812 C 330.65625 256.632812 330.5625 256.726562 330.5625 256.84375 C 330.5625 256.960938 330.65625 257.054688 330.773438 257.054688 C 330.890625 257.054688 330.984375 256.960938 330.984375 256.84375 Z M 330.984375 256.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 331.816406 256.253906 C 331.816406 256.136719 331.722656 256.042969 331.605469 256.042969 C 331.488281 256.042969 331.394531 256.136719 331.394531 256.253906 C 331.394531 256.371094 331.488281 256.464844 331.605469 256.464844 C 331.722656 256.464844 331.816406 256.371094 331.816406 256.253906 Z M 331.816406 256.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 329.769531 255.789062 C 329.769531 255.671875 329.675781 255.578125 329.558594 255.578125 C 329.441406 255.578125 329.347656 255.671875 329.347656 255.789062 C 329.347656 255.90625 329.441406 256 329.558594 256 C 329.675781 256 329.769531 255.90625 329.769531 255.789062 Z M 329.769531 255.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.3125 255.261719 C 326.3125 255.144531 326.21875 255.050781 326.101562 255.050781 C 325.984375 255.050781 325.890625 255.144531 325.890625 255.261719 C 325.890625 255.378906 325.984375 255.472656 326.101562 255.472656 C 326.21875 255.472656 326.3125 255.378906 326.3125 255.261719 Z M 326.3125 255.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 329.644531 253.53125 C 329.644531 253.414062 329.550781 253.320312 329.433594 253.320312 C 329.316406 253.320312 329.222656 253.414062 329.222656 253.53125 C 329.222656 253.648438 329.316406 253.742188 329.433594 253.742188 C 329.550781 253.742188 329.644531 253.648438 329.644531 253.53125 Z M 329.644531 253.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 332.722656 251.109375 C 332.722656 250.992188 332.628906 250.898438 332.511719 250.898438 C 332.394531 250.898438 332.300781 250.992188 332.300781 251.109375 C 332.300781 251.226562 332.394531 251.320312 332.511719 251.320312 C 332.628906 251.320312 332.722656 251.226562 332.722656 251.109375 Z M 332.722656 251.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 331.875 250.679688 C 331.875 250.5625 331.78125 250.46875 331.664062 250.46875 C 331.546875 250.46875 331.453125 250.5625 331.453125 250.679688 C 331.453125 250.796875 331.546875 250.890625 331.664062 250.890625 C 331.78125 250.890625 331.875 250.796875 331.875 250.679688 Z M 331.875 250.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 330.425781 248.105469 C 330.425781 247.988281 330.332031 247.894531 330.214844 247.894531 C 330.097656 247.894531 330.003906 247.988281 330.003906 248.105469 C 330.003906 248.222656 330.097656 248.316406 330.214844 248.316406 C 330.332031 248.316406 330.425781 248.222656 330.425781 248.105469 Z M 330.425781 248.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 331.464844 249.453125 C 331.464844 249.335938 331.371094 249.242188 331.253906 249.242188 C 331.136719 249.242188 331.042969 249.335938 331.042969 249.453125 C 331.042969 249.570312 331.136719 249.664062 331.253906 249.664062 C 331.371094 249.664062 331.464844 249.570312 331.464844 249.453125 Z M 331.464844 249.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 331.042969 250.332031 C 331.042969 250.214844 330.949219 250.121094 330.832031 250.121094 C 330.714844 250.121094 330.621094 250.214844 330.621094 250.332031 C 330.621094 250.449219 330.714844 250.542969 330.832031 250.542969 C 330.949219 250.542969 331.042969 250.449219 331.042969 250.332031 Z M 331.042969 250.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 332.226562 250.878906 C 332.226562 250.761719 332.132812 250.667969 332.015625 250.667969 C 331.898438 250.667969 331.804688 250.761719 331.804688 250.878906 C 331.804688 250.996094 331.898438 251.089844 332.015625 251.089844 C 332.132812 251.089844 332.226562 250.996094 332.226562 250.878906 Z M 332.226562 250.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 333.546875 250.652344 C 333.546875 250.535156 333.453125 250.441406 333.335938 250.441406 C 333.21875 250.441406 333.125 250.535156 333.125 250.652344 C 333.125 250.769531 333.21875 250.863281 333.335938 250.863281 C 333.453125 250.863281 333.546875 250.769531 333.546875 250.652344 Z M 333.546875 250.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 334.886719 252.292969 C 334.886719 252.175781 334.792969 252.082031 334.675781 252.082031 C 334.558594 252.082031 334.464844 252.175781 334.464844 252.292969 C 334.464844 252.410156 334.558594 252.503906 334.675781 252.503906 C 334.792969 252.503906 334.886719 252.410156 334.886719 252.292969 Z M 334.886719 252.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 331.980469 252.898438 C 331.980469 252.78125 331.886719 252.6875 331.769531 252.6875 C 331.652344 252.6875 331.558594 252.78125 331.558594 252.898438 C 331.558594 253.015625 331.652344 253.109375 331.769531 253.109375 C 331.886719 253.109375 331.980469 253.015625 331.980469 252.898438 Z M 331.980469 252.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 329.691406 253.648438 C 329.691406 253.53125 329.597656 253.4375 329.480469 253.4375 C 329.363281 253.4375 329.269531 253.53125 329.269531 253.648438 C 329.269531 253.765625 329.363281 253.859375 329.480469 253.859375 C 329.597656 253.859375 329.691406 253.765625 329.691406 253.648438 Z M 329.691406 253.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 329.476562 257.839844 C 329.476562 257.722656 329.382812 257.628906 329.265625 257.628906 C 329.148438 257.628906 329.054688 257.722656 329.054688 257.839844 C 329.054688 257.957031 329.148438 258.050781 329.265625 258.050781 C 329.382812 258.050781 329.476562 257.957031 329.476562 257.839844 Z M 329.476562 257.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 330.78125 256.71875 C 330.78125 256.601562 330.6875 256.507812 330.570312 256.507812 C 330.453125 256.507812 330.359375 256.601562 330.359375 256.71875 C 330.359375 256.835938 330.453125 256.929688 330.570312 256.929688 C 330.6875 256.929688 330.78125 256.835938 330.78125 256.71875 Z M 330.78125 256.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 330.625 254.984375 C 330.625 254.867188 330.53125 254.773438 330.414062 254.773438 C 330.296875 254.773438 330.203125 254.867188 330.203125 254.984375 C 330.203125 255.101562 330.296875 255.195312 330.414062 255.195312 C 330.53125 255.195312 330.625 255.101562 330.625 254.984375 Z M 330.625 254.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 328.445312 254.070312 C 328.445312 253.953125 328.351562 253.859375 328.234375 253.859375 C 328.117188 253.859375 328.023438 253.953125 328.023438 254.070312 C 328.023438 254.1875 328.117188 254.28125 328.234375 254.28125 C 328.351562 254.28125 328.445312 254.1875 328.445312 254.070312 Z M 328.445312 254.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 331.503906 253.792969 C 331.503906 253.675781 331.410156 253.582031 331.292969 253.582031 C 331.175781 253.582031 331.082031 253.675781 331.082031 253.792969 C 331.082031 253.910156 331.175781 254.003906 331.292969 254.003906 C 331.410156 254.003906 331.503906 253.910156 331.503906 253.792969 Z M 331.503906 253.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 332.417969 252.984375 C 332.417969 252.867188 332.324219 252.773438 332.207031 252.773438 C 332.089844 252.773438 331.996094 252.867188 331.996094 252.984375 C 331.996094 253.101562 332.089844 253.195312 332.207031 253.195312 C 332.324219 253.195312 332.417969 253.101562 332.417969 252.984375 Z M 332.417969 252.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 330.40625 254.417969 C 330.40625 254.300781 330.3125 254.207031 330.195312 254.207031 C 330.078125 254.207031 329.984375 254.300781 329.984375 254.417969 C 329.984375 254.535156 330.078125 254.628906 330.195312 254.628906 C 330.3125 254.628906 330.40625 254.535156 330.40625 254.417969 Z M 330.40625 254.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 329.570312 253.214844 C 329.570312 253.097656 329.476562 253.003906 329.359375 253.003906 C 329.242188 253.003906 329.148438 253.097656 329.148438 253.214844 C 329.148438 253.332031 329.242188 253.425781 329.359375 253.425781 C 329.476562 253.425781 329.570312 253.332031 329.570312 253.214844 Z M 329.570312 253.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 328.542969 253.769531 C 328.542969 253.652344 328.449219 253.558594 328.332031 253.558594 C 328.214844 253.558594 328.121094 253.652344 328.121094 253.769531 C 328.121094 253.886719 328.214844 253.980469 328.332031 253.980469 C 328.449219 253.980469 328.542969 253.886719 328.542969 253.769531 Z M 328.542969 253.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 330.585938 255.480469 C 330.585938 255.363281 330.492188 255.269531 330.375 255.269531 C 330.257812 255.269531 330.164062 255.363281 330.164062 255.480469 C 330.164062 255.597656 330.257812 255.691406 330.375 255.691406 C 330.492188 255.691406 330.585938 255.597656 330.585938 255.480469 Z M 330.585938 255.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 328.773438 253.289062 C 328.773438 253.171875 328.679688 253.078125 328.5625 253.078125 C 328.445312 253.078125 328.351562 253.171875 328.351562 253.289062 C 328.351562 253.40625 328.445312 253.5 328.5625 253.5 C 328.679688 253.5 328.773438 253.40625 328.773438 253.289062 Z M 328.773438 253.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.898438 252.113281 C 327.898438 251.996094 327.804688 251.902344 327.6875 251.902344 C 327.570312 251.902344 327.476562 251.996094 327.476562 252.113281 C 327.476562 252.230469 327.570312 252.324219 327.6875 252.324219 C 327.804688 252.324219 327.898438 252.230469 327.898438 252.113281 Z M 327.898438 252.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.398438 254.476562 C 325.398438 254.359375 325.304688 254.265625 325.1875 254.265625 C 325.070312 254.265625 324.976562 254.359375 324.976562 254.476562 C 324.976562 254.59375 325.070312 254.6875 325.1875 254.6875 C 325.304688 254.6875 325.398438 254.59375 325.398438 254.476562 Z M 325.398438 254.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 328.480469 252.886719 C 328.480469 252.769531 328.386719 252.675781 328.269531 252.675781 C 328.152344 252.675781 328.058594 252.769531 328.058594 252.886719 C 328.058594 253.003906 328.152344 253.097656 328.269531 253.097656 C 328.386719 253.097656 328.480469 253.003906 328.480469 252.886719 Z M 328.480469 252.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.070312 251.992188 C 327.070312 251.875 326.976562 251.78125 326.859375 251.78125 C 326.742188 251.78125 326.648438 251.875 326.648438 251.992188 C 326.648438 252.109375 326.742188 252.203125 326.859375 252.203125 C 326.976562 252.203125 327.070312 252.109375 327.070312 251.992188 Z M 327.070312 251.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 329.367188 254.515625 C 329.367188 254.398438 329.273438 254.304688 329.15625 254.304688 C 329.039062 254.304688 328.945312 254.398438 328.945312 254.515625 C 328.945312 254.632812 329.039062 254.726562 329.15625 254.726562 C 329.273438 254.726562 329.367188 254.632812 329.367188 254.515625 Z M 329.367188 254.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.753906 255.09375 C 327.753906 254.976562 327.660156 254.882812 327.542969 254.882812 C 327.425781 254.882812 327.332031 254.976562 327.332031 255.09375 C 327.332031 255.210938 327.425781 255.304688 327.542969 255.304688 C 327.660156 255.304688 327.753906 255.210938 327.753906 255.09375 Z M 327.753906 255.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 329.183594 255.921875 C 329.183594 255.804688 329.089844 255.710938 328.972656 255.710938 C 328.855469 255.710938 328.761719 255.804688 328.761719 255.921875 C 328.761719 256.039062 328.855469 256.132812 328.972656 256.132812 C 329.089844 256.132812 329.183594 256.039062 329.183594 255.921875 Z M 329.183594 255.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 329.328125 256.636719 C 329.328125 256.519531 329.234375 256.425781 329.117188 256.425781 C 329 256.425781 328.90625 256.519531 328.90625 256.636719 C 328.90625 256.753906 329 256.847656 329.117188 256.847656 C 329.234375 256.847656 329.328125 256.753906 329.328125 256.636719 Z M 329.328125 256.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 328.117188 257.875 C 328.117188 257.757812 328.023438 257.664062 327.90625 257.664062 C 327.789062 257.664062 327.695312 257.757812 327.695312 257.875 C 327.695312 257.992188 327.789062 258.085938 327.90625 258.085938 C 328.023438 258.085938 328.117188 257.992188 328.117188 257.875 Z M 328.117188 257.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.390625 258.320312 C 323.390625 258.203125 323.296875 258.109375 323.179688 258.109375 C 323.0625 258.109375 322.96875 258.203125 322.96875 258.320312 C 322.96875 258.4375 323.0625 258.53125 323.179688 258.53125 C 323.296875 258.53125 323.390625 258.4375 323.390625 258.320312 Z M 323.390625 258.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.679688 256.53125 C 324.679688 256.414062 324.585938 256.320312 324.46875 256.320312 C 324.351562 256.320312 324.257812 256.414062 324.257812 256.53125 C 324.257812 256.648438 324.351562 256.742188 324.46875 256.742188 C 324.585938 256.742188 324.679688 256.648438 324.679688 256.53125 Z M 324.679688 256.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.183594 258.582031 C 325.183594 258.464844 325.089844 258.371094 324.972656 258.371094 C 324.855469 258.371094 324.761719 258.464844 324.761719 258.582031 C 324.761719 258.699219 324.855469 258.792969 324.972656 258.792969 C 325.089844 258.792969 325.183594 258.699219 325.183594 258.582031 Z M 325.183594 258.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 328.082031 257.796875 C 328.082031 257.679688 327.988281 257.585938 327.871094 257.585938 C 327.753906 257.585938 327.660156 257.679688 327.660156 257.796875 C 327.660156 257.914062 327.753906 258.007812 327.871094 258.007812 C 327.988281 258.007812 328.082031 257.914062 328.082031 257.796875 Z M 328.082031 257.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 328.613281 262.824219 C 328.613281 262.707031 328.519531 262.613281 328.402344 262.613281 C 328.285156 262.613281 328.191406 262.707031 328.191406 262.824219 C 328.191406 262.941406 328.285156 263.035156 328.402344 263.035156 C 328.519531 263.035156 328.613281 262.941406 328.613281 262.824219 Z M 328.613281 262.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.652344 264.167969 C 325.652344 264.050781 325.558594 263.957031 325.441406 263.957031 C 325.324219 263.957031 325.230469 264.050781 325.230469 264.167969 C 325.230469 264.285156 325.324219 264.378906 325.441406 264.378906 C 325.558594 264.378906 325.652344 264.285156 325.652344 264.167969 Z M 325.652344 264.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.695312 264.140625 C 322.695312 264.023438 322.601562 263.929688 322.484375 263.929688 C 322.367188 263.929688 322.273438 264.023438 322.273438 264.140625 C 322.273438 264.257812 322.367188 264.351562 322.484375 264.351562 C 322.601562 264.351562 322.695312 264.257812 322.695312 264.140625 Z M 322.695312 264.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 320.1875 261.535156 C 320.1875 261.417969 320.09375 261.324219 319.976562 261.324219 C 319.859375 261.324219 319.765625 261.417969 319.765625 261.535156 C 319.765625 261.652344 319.859375 261.746094 319.976562 261.746094 C 320.09375 261.746094 320.1875 261.652344 320.1875 261.535156 Z M 320.1875 261.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.179688 260.933594 C 321.179688 260.816406 321.085938 260.722656 320.96875 260.722656 C 320.851562 260.722656 320.757812 260.816406 320.757812 260.933594 C 320.757812 261.050781 320.851562 261.144531 320.96875 261.144531 C 321.085938 261.144531 321.179688 261.050781 321.179688 260.933594 Z M 321.179688 260.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.730469 262.382812 C 321.730469 262.265625 321.636719 262.171875 321.519531 262.171875 C 321.402344 262.171875 321.308594 262.265625 321.308594 262.382812 C 321.308594 262.5 321.402344 262.59375 321.519531 262.59375 C 321.636719 262.59375 321.730469 262.5 321.730469 262.382812 Z M 321.730469 262.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.507812 262.550781 C 323.507812 262.433594 323.414062 262.339844 323.296875 262.339844 C 323.179688 262.339844 323.085938 262.433594 323.085938 262.550781 C 323.085938 262.667969 323.179688 262.761719 323.296875 262.761719 C 323.414062 262.761719 323.507812 262.667969 323.507812 262.550781 Z M 323.507812 262.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 330.03125 263.726562 C 330.03125 263.609375 329.9375 263.515625 329.820312 263.515625 C 329.703125 263.515625 329.609375 263.609375 329.609375 263.726562 C 329.609375 263.84375 329.703125 263.9375 329.820312 263.9375 C 329.9375 263.9375 330.03125 263.84375 330.03125 263.726562 Z M 330.03125 263.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 332.332031 263.027344 C 332.332031 262.910156 332.238281 262.816406 332.121094 262.816406 C 332.003906 262.816406 331.910156 262.910156 331.910156 263.027344 C 331.910156 263.144531 332.003906 263.238281 332.121094 263.238281 C 332.238281 263.238281 332.332031 263.144531 332.332031 263.027344 Z M 332.332031 263.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 330.828125 262.566406 C 330.828125 262.449219 330.734375 262.355469 330.617188 262.355469 C 330.5 262.355469 330.40625 262.449219 330.40625 262.566406 C 330.40625 262.683594 330.5 262.777344 330.617188 262.777344 C 330.734375 262.777344 330.828125 262.683594 330.828125 262.566406 Z M 330.828125 262.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 333.324219 262.105469 C 333.324219 261.988281 333.230469 261.894531 333.113281 261.894531 C 332.996094 261.894531 332.902344 261.988281 332.902344 262.105469 C 332.902344 262.222656 332.996094 262.316406 333.113281 262.316406 C 333.230469 262.316406 333.324219 262.222656 333.324219 262.105469 Z M 333.324219 262.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 332.527344 261.859375 C 332.527344 261.742188 332.433594 261.648438 332.316406 261.648438 C 332.199219 261.648438 332.105469 261.742188 332.105469 261.859375 C 332.105469 261.976562 332.199219 262.070312 332.316406 262.070312 C 332.433594 262.070312 332.527344 261.976562 332.527344 261.859375 Z M 332.527344 261.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 329.304688 263.296875 C 329.304688 263.179688 329.210938 263.085938 329.09375 263.085938 C 328.976562 263.085938 328.882812 263.179688 328.882812 263.296875 C 328.882812 263.414062 328.976562 263.507812 329.09375 263.507812 C 329.210938 263.507812 329.304688 263.414062 329.304688 263.296875 Z M 329.304688 263.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 328.125 263.410156 C 328.125 263.292969 328.03125 263.199219 327.914062 263.199219 C 327.796875 263.199219 327.703125 263.292969 327.703125 263.410156 C 327.703125 263.527344 327.796875 263.621094 327.914062 263.621094 C 328.03125 263.621094 328.125 263.527344 328.125 263.410156 Z M 328.125 263.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 331.492188 261.488281 C 331.492188 261.371094 331.398438 261.277344 331.28125 261.277344 C 331.164062 261.277344 331.070312 261.371094 331.070312 261.488281 C 331.070312 261.605469 331.164062 261.699219 331.28125 261.699219 C 331.398438 261.699219 331.492188 261.605469 331.492188 261.488281 Z M 331.492188 261.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.554688 260.363281 C 327.554688 260.246094 327.460938 260.152344 327.34375 260.152344 C 327.226562 260.152344 327.132812 260.246094 327.132812 260.363281 C 327.132812 260.480469 327.226562 260.574219 327.34375 260.574219 C 327.460938 260.574219 327.554688 260.480469 327.554688 260.363281 Z M 327.554688 260.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.070312 261.800781 C 325.070312 261.683594 324.976562 261.589844 324.859375 261.589844 C 324.742188 261.589844 324.648438 261.683594 324.648438 261.800781 C 324.648438 261.917969 324.742188 262.011719 324.859375 262.011719 C 324.976562 262.011719 325.070312 261.917969 325.070312 261.800781 Z M 325.070312 261.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.054688 261.402344 C 323.054688 261.285156 322.960938 261.191406 322.84375 261.191406 C 322.726562 261.191406 322.632812 261.285156 322.632812 261.402344 C 322.632812 261.519531 322.726562 261.613281 322.84375 261.613281 C 322.960938 261.613281 323.054688 261.519531 323.054688 261.402344 Z M 323.054688 261.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.238281 263.507812 C 324.238281 263.390625 324.144531 263.296875 324.027344 263.296875 C 323.910156 263.296875 323.816406 263.390625 323.816406 263.507812 C 323.816406 263.625 323.910156 263.71875 324.027344 263.71875 C 324.144531 263.71875 324.238281 263.625 324.238281 263.507812 Z M 324.238281 263.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.667969 264.128906 C 323.667969 264.011719 323.574219 263.917969 323.457031 263.917969 C 323.339844 263.917969 323.246094 264.011719 323.246094 264.128906 C 323.246094 264.246094 323.339844 264.339844 323.457031 264.339844 C 323.574219 264.339844 323.667969 264.246094 323.667969 264.128906 Z M 323.667969 264.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.921875 259.550781 C 324.921875 259.433594 324.828125 259.339844 324.710938 259.339844 C 324.59375 259.339844 324.5 259.433594 324.5 259.550781 C 324.5 259.667969 324.59375 259.761719 324.710938 259.761719 C 324.828125 259.761719 324.921875 259.667969 324.921875 259.550781 Z M 324.921875 259.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.441406 258.835938 C 323.441406 258.71875 323.347656 258.625 323.230469 258.625 C 323.113281 258.625 323.019531 258.71875 323.019531 258.835938 C 323.019531 258.953125 323.113281 259.046875 323.230469 259.046875 C 323.347656 259.046875 323.441406 258.953125 323.441406 258.835938 Z M 323.441406 258.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.570312 256.90625 C 324.570312 256.789062 324.476562 256.695312 324.359375 256.695312 C 324.242188 256.695312 324.148438 256.789062 324.148438 256.90625 C 324.148438 257.023438 324.242188 257.117188 324.359375 257.117188 C 324.476562 257.117188 324.570312 257.023438 324.570312 256.90625 Z M 324.570312 256.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 328.90625 254.960938 C 328.90625 254.84375 328.8125 254.75 328.695312 254.75 C 328.578125 254.75 328.484375 254.84375 328.484375 254.960938 C 328.484375 255.078125 328.578125 255.171875 328.695312 255.171875 C 328.8125 255.171875 328.90625 255.078125 328.90625 254.960938 Z M 328.90625 254.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.886719 258.292969 C 327.886719 258.175781 327.792969 258.082031 327.675781 258.082031 C 327.558594 258.082031 327.464844 258.175781 327.464844 258.292969 C 327.464844 258.410156 327.558594 258.503906 327.675781 258.503906 C 327.792969 258.503906 327.886719 258.410156 327.886719 258.292969 Z M 327.886719 258.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.195312 253.535156 C 325.195312 253.417969 325.101562 253.324219 324.984375 253.324219 C 324.867188 253.324219 324.773438 253.417969 324.773438 253.535156 C 324.773438 253.652344 324.867188 253.746094 324.984375 253.746094 C 325.101562 253.746094 325.195312 253.652344 325.195312 253.535156 Z M 325.195312 253.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.761719 254.296875 C 321.761719 254.179688 321.667969 254.085938 321.550781 254.085938 C 321.433594 254.085938 321.339844 254.179688 321.339844 254.296875 C 321.339844 254.414062 321.433594 254.507812 321.550781 254.507812 C 321.667969 254.507812 321.761719 254.414062 321.761719 254.296875 Z M 321.761719 254.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.585938 252.449219 C 322.585938 252.332031 322.492188 252.238281 322.375 252.238281 C 322.257812 252.238281 322.164062 252.332031 322.164062 252.449219 C 322.164062 252.566406 322.257812 252.660156 322.375 252.660156 C 322.492188 252.660156 322.585938 252.566406 322.585938 252.449219 Z M 322.585938 252.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.085938 256.335938 C 324.085938 256.21875 323.992188 256.125 323.875 256.125 C 323.757812 256.125 323.664062 256.21875 323.664062 256.335938 C 323.664062 256.453125 323.757812 256.546875 323.875 256.546875 C 323.992188 256.546875 324.085938 256.453125 324.085938 256.335938 Z M 324.085938 256.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.019531 251.851562 C 324.019531 251.734375 323.925781 251.640625 323.808594 251.640625 C 323.691406 251.640625 323.597656 251.734375 323.597656 251.851562 C 323.597656 251.96875 323.691406 252.0625 323.808594 252.0625 C 323.925781 252.0625 324.019531 251.96875 324.019531 251.851562 Z M 324.019531 251.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.609375 246.617188 C 322.609375 246.5 322.515625 246.40625 322.398438 246.40625 C 322.28125 246.40625 322.1875 246.5 322.1875 246.617188 C 322.1875 246.734375 322.28125 246.828125 322.398438 246.828125 C 322.515625 246.828125 322.609375 246.734375 322.609375 246.617188 Z M 322.609375 246.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.988281 243.085938 C 326.988281 242.96875 326.894531 242.875 326.777344 242.875 C 326.660156 242.875 326.566406 242.96875 326.566406 243.085938 C 326.566406 243.203125 326.660156 243.296875 326.777344 243.296875 C 326.894531 243.296875 326.988281 243.203125 326.988281 243.085938 Z M 326.988281 243.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.25 243.054688 C 323.25 242.9375 323.15625 242.84375 323.039062 242.84375 C 322.921875 242.84375 322.828125 242.9375 322.828125 243.054688 C 322.828125 243.171875 322.921875 243.265625 323.039062 243.265625 C 323.15625 243.265625 323.25 243.171875 323.25 243.054688 Z M 323.25 243.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.71875 244.074219 C 322.71875 243.957031 322.625 243.863281 322.507812 243.863281 C 322.390625 243.863281 322.296875 243.957031 322.296875 244.074219 C 322.296875 244.191406 322.390625 244.285156 322.507812 244.285156 C 322.625 244.285156 322.71875 244.191406 322.71875 244.074219 Z M 322.71875 244.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.140625 241.285156 C 324.140625 241.167969 324.046875 241.074219 323.929688 241.074219 C 323.8125 241.074219 323.71875 241.167969 323.71875 241.285156 C 323.71875 241.402344 323.8125 241.496094 323.929688 241.496094 C 324.046875 241.496094 324.140625 241.402344 324.140625 241.285156 Z M 324.140625 241.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.175781 241.585938 C 326.175781 241.46875 326.082031 241.375 325.964844 241.375 C 325.847656 241.375 325.753906 241.46875 325.753906 241.585938 C 325.753906 241.703125 325.847656 241.796875 325.964844 241.796875 C 326.082031 241.796875 326.175781 241.703125 326.175781 241.585938 Z M 326.175781 241.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.261719 241.523438 C 325.261719 241.40625 325.167969 241.3125 325.050781 241.3125 C 324.933594 241.3125 324.839844 241.40625 324.839844 241.523438 C 324.839844 241.640625 324.933594 241.734375 325.050781 241.734375 C 325.167969 241.734375 325.261719 241.640625 325.261719 241.523438 Z M 325.261719 241.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.742188 239.746094 C 324.742188 239.628906 324.648438 239.535156 324.53125 239.535156 C 324.414062 239.535156 324.320312 239.628906 324.320312 239.746094 C 324.320312 239.863281 324.414062 239.957031 324.53125 239.957031 C 324.648438 239.957031 324.742188 239.863281 324.742188 239.746094 Z M 324.742188 239.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.820312 241.679688 C 324.820312 241.5625 324.726562 241.46875 324.609375 241.46875 C 324.492188 241.46875 324.398438 241.5625 324.398438 241.679688 C 324.398438 241.796875 324.492188 241.890625 324.609375 241.890625 C 324.726562 241.890625 324.820312 241.796875 324.820312 241.679688 Z M 324.820312 241.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.292969 243.375 C 323.292969 243.257812 323.199219 243.164062 323.082031 243.164062 C 322.964844 243.164062 322.871094 243.257812 322.871094 243.375 C 322.871094 243.492188 322.964844 243.585938 323.082031 243.585938 C 323.199219 243.585938 323.292969 243.492188 323.292969 243.375 Z M 323.292969 243.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.304688 241.613281 C 324.304688 241.496094 324.210938 241.402344 324.09375 241.402344 C 323.976562 241.402344 323.882812 241.496094 323.882812 241.613281 C 323.882812 241.730469 323.976562 241.824219 324.09375 241.824219 C 324.210938 241.824219 324.304688 241.730469 324.304688 241.613281 Z M 324.304688 241.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.996094 242.871094 C 327.996094 242.753906 327.902344 242.660156 327.785156 242.660156 C 327.667969 242.660156 327.574219 242.753906 327.574219 242.871094 C 327.574219 242.988281 327.667969 243.082031 327.785156 243.082031 C 327.902344 243.082031 327.996094 242.988281 327.996094 242.871094 Z M 327.996094 242.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 329.195312 244.175781 C 329.195312 244.058594 329.101562 243.964844 328.984375 243.964844 C 328.867188 243.964844 328.773438 244.058594 328.773438 244.175781 C 328.773438 244.292969 328.867188 244.386719 328.984375 244.386719 C 329.101562 244.386719 329.195312 244.292969 329.195312 244.175781 Z M 329.195312 244.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.933594 244.113281 C 327.933594 243.996094 327.839844 243.902344 327.722656 243.902344 C 327.605469 243.902344 327.511719 243.996094 327.511719 244.113281 C 327.511719 244.230469 327.605469 244.324219 327.722656 244.324219 C 327.839844 244.324219 327.933594 244.230469 327.933594 244.113281 Z M 327.933594 244.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 328.933594 243.226562 C 328.933594 243.109375 328.839844 243.015625 328.722656 243.015625 C 328.605469 243.015625 328.511719 243.109375 328.511719 243.226562 C 328.511719 243.34375 328.605469 243.4375 328.722656 243.4375 C 328.839844 243.4375 328.933594 243.34375 328.933594 243.226562 Z M 328.933594 243.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.496094 245.050781 C 322.496094 244.933594 322.402344 244.839844 322.285156 244.839844 C 322.167969 244.839844 322.074219 244.933594 322.074219 245.050781 C 322.074219 245.167969 322.167969 245.261719 322.285156 245.261719 C 322.402344 245.261719 322.496094 245.167969 322.496094 245.050781 Z M 322.496094 245.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.761719 243.816406 C 321.761719 243.699219 321.667969 243.605469 321.550781 243.605469 C 321.433594 243.605469 321.339844 243.699219 321.339844 243.816406 C 321.339844 243.933594 321.433594 244.027344 321.550781 244.027344 C 321.667969 244.027344 321.761719 243.933594 321.761719 243.816406 Z M 321.761719 243.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.707031 246.828125 C 324.707031 246.710938 324.613281 246.617188 324.496094 246.617188 C 324.378906 246.617188 324.285156 246.710938 324.285156 246.828125 C 324.285156 246.945312 324.378906 247.039062 324.496094 247.039062 C 324.613281 247.039062 324.707031 246.945312 324.707031 246.828125 Z M 324.707031 246.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.253906 251.21875 C 326.253906 251.101562 326.160156 251.007812 326.042969 251.007812 C 325.925781 251.007812 325.832031 251.101562 325.832031 251.21875 C 325.832031 251.335938 325.925781 251.429688 326.042969 251.429688 C 326.160156 251.429688 326.253906 251.335938 326.253906 251.21875 Z M 326.253906 251.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.703125 251.695312 C 322.703125 251.578125 322.609375 251.484375 322.492188 251.484375 C 322.375 251.484375 322.28125 251.578125 322.28125 251.695312 C 322.28125 251.8125 322.375 251.90625 322.492188 251.90625 C 322.609375 251.90625 322.703125 251.8125 322.703125 251.695312 Z M 322.703125 251.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 320.75 251.539062 C 320.75 251.421875 320.65625 251.328125 320.539062 251.328125 C 320.421875 251.328125 320.328125 251.421875 320.328125 251.539062 C 320.328125 251.65625 320.421875 251.75 320.539062 251.75 C 320.65625 251.75 320.75 251.65625 320.75 251.539062 Z M 320.75 251.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.667969 247.371094 C 322.667969 247.253906 322.574219 247.160156 322.457031 247.160156 C 322.339844 247.160156 322.246094 247.253906 322.246094 247.371094 C 322.246094 247.488281 322.339844 247.582031 322.457031 247.582031 C 322.574219 247.582031 322.667969 247.488281 322.667969 247.371094 Z M 322.667969 247.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.273438 248.515625 C 323.273438 248.398438 323.179688 248.304688 323.0625 248.304688 C 322.945312 248.304688 322.851562 248.398438 322.851562 248.515625 C 322.851562 248.632812 322.945312 248.726562 323.0625 248.726562 C 323.179688 248.726562 323.273438 248.632812 323.273438 248.515625 Z M 323.273438 248.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.882812 245.824219 C 323.882812 245.707031 323.789062 245.613281 323.671875 245.613281 C 323.554688 245.613281 323.460938 245.707031 323.460938 245.824219 C 323.460938 245.941406 323.554688 246.035156 323.671875 246.035156 C 323.789062 246.035156 323.882812 245.941406 323.882812 245.824219 Z M 323.882812 245.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.277344 244.1875 C 326.277344 244.070312 326.183594 243.976562 326.066406 243.976562 C 325.949219 243.976562 325.855469 244.070312 325.855469 244.1875 C 325.855469 244.304688 325.949219 244.398438 326.066406 244.398438 C 326.183594 244.398438 326.277344 244.304688 326.277344 244.1875 Z M 326.277344 244.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.445312 242.902344 C 327.445312 242.785156 327.351562 242.691406 327.234375 242.691406 C 327.117188 242.691406 327.023438 242.785156 327.023438 242.902344 C 327.023438 243.019531 327.117188 243.113281 327.234375 243.113281 C 327.351562 243.113281 327.445312 243.019531 327.445312 242.902344 Z M 327.445312 242.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 328.800781 238.757812 C 328.800781 238.640625 328.707031 238.546875 328.589844 238.546875 C 328.472656 238.546875 328.378906 238.640625 328.378906 238.757812 C 328.378906 238.875 328.472656 238.96875 328.589844 238.96875 C 328.707031 238.96875 328.800781 238.875 328.800781 238.757812 Z M 328.800781 238.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 328.972656 239.101562 C 328.972656 238.984375 328.878906 238.890625 328.761719 238.890625 C 328.644531 238.890625 328.550781 238.984375 328.550781 239.101562 C 328.550781 239.21875 328.644531 239.3125 328.761719 239.3125 C 328.878906 239.3125 328.972656 239.21875 328.972656 239.101562 Z M 328.972656 239.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.417969 239.953125 C 327.417969 239.835938 327.324219 239.742188 327.207031 239.742188 C 327.089844 239.742188 326.996094 239.835938 326.996094 239.953125 C 326.996094 240.070312 327.089844 240.164062 327.207031 240.164062 C 327.324219 240.164062 327.417969 240.070312 327.417969 239.953125 Z M 327.417969 239.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.777344 239.117188 C 323.777344 239 323.683594 238.90625 323.566406 238.90625 C 323.449219 238.90625 323.355469 239 323.355469 239.117188 C 323.355469 239.234375 323.449219 239.328125 323.566406 239.328125 C 323.683594 239.328125 323.777344 239.234375 323.777344 239.117188 Z M 323.777344 239.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.820312 238.570312 C 323.820312 238.453125 323.726562 238.359375 323.609375 238.359375 C 323.492188 238.359375 323.398438 238.453125 323.398438 238.570312 C 323.398438 238.6875 323.492188 238.78125 323.609375 238.78125 C 323.726562 238.78125 323.820312 238.6875 323.820312 238.570312 Z M 323.820312 238.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.871094 239.445312 C 323.871094 239.328125 323.777344 239.234375 323.660156 239.234375 C 323.542969 239.234375 323.449219 239.328125 323.449219 239.445312 C 323.449219 239.5625 323.542969 239.65625 323.660156 239.65625 C 323.777344 239.65625 323.871094 239.5625 323.871094 239.445312 Z M 323.871094 239.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.808594 240.742188 C 323.808594 240.625 323.714844 240.53125 323.597656 240.53125 C 323.480469 240.53125 323.386719 240.625 323.386719 240.742188 C 323.386719 240.859375 323.480469 240.953125 323.597656 240.953125 C 323.714844 240.953125 323.808594 240.859375 323.808594 240.742188 Z M 323.808594 240.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.628906 239.800781 C 321.628906 239.683594 321.535156 239.589844 321.417969 239.589844 C 321.300781 239.589844 321.207031 239.683594 321.207031 239.800781 C 321.207031 239.917969 321.300781 240.011719 321.417969 240.011719 C 321.535156 240.011719 321.628906 239.917969 321.628906 239.800781 Z M 321.628906 239.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.460938 238.648438 C 317.460938 238.53125 317.367188 238.4375 317.25 238.4375 C 317.132812 238.4375 317.039062 238.53125 317.039062 238.648438 C 317.039062 238.765625 317.132812 238.859375 317.25 238.859375 C 317.367188 238.859375 317.460938 238.765625 317.460938 238.648438 Z M 317.460938 238.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.722656 239.15625 C 315.722656 239.039062 315.628906 238.945312 315.511719 238.945312 C 315.394531 238.945312 315.300781 239.039062 315.300781 239.15625 C 315.300781 239.273438 315.394531 239.367188 315.511719 239.367188 C 315.628906 239.367188 315.722656 239.273438 315.722656 239.15625 Z M 315.722656 239.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.835938 237.109375 C 312.835938 236.992188 312.742188 236.898438 312.625 236.898438 C 312.507812 236.898438 312.414062 236.992188 312.414062 237.109375 C 312.414062 237.226562 312.507812 237.320312 312.625 237.320312 C 312.742188 237.320312 312.835938 237.226562 312.835938 237.109375 Z M 312.835938 237.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.457031 235.765625 C 310.457031 235.648438 310.363281 235.554688 310.246094 235.554688 C 310.128906 235.554688 310.035156 235.648438 310.035156 235.765625 C 310.035156 235.882812 310.128906 235.976562 310.246094 235.976562 C 310.363281 235.976562 310.457031 235.882812 310.457031 235.765625 Z M 310.457031 235.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.621094 239.433594 C 307.621094 239.316406 307.527344 239.222656 307.410156 239.222656 C 307.292969 239.222656 307.199219 239.316406 307.199219 239.433594 C 307.199219 239.550781 307.292969 239.644531 307.410156 239.644531 C 307.527344 239.644531 307.621094 239.550781 307.621094 239.433594 Z M 307.621094 239.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.40625 236.90625 C 311.40625 236.789062 311.3125 236.695312 311.195312 236.695312 C 311.078125 236.695312 310.984375 236.789062 310.984375 236.90625 C 310.984375 237.023438 311.078125 237.117188 311.195312 237.117188 C 311.3125 237.117188 311.40625 237.023438 311.40625 236.90625 Z M 311.40625 236.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.636719 235.378906 C 309.636719 235.261719 309.542969 235.167969 309.425781 235.167969 C 309.308594 235.167969 309.214844 235.261719 309.214844 235.378906 C 309.214844 235.496094 309.308594 235.589844 309.425781 235.589844 C 309.542969 235.589844 309.636719 235.496094 309.636719 235.378906 Z M 309.636719 235.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 311.152344 234.359375 C 311.152344 234.242188 311.058594 234.148438 310.941406 234.148438 C 310.824219 234.148438 310.730469 234.242188 310.730469 234.359375 C 310.730469 234.476562 310.824219 234.570312 310.941406 234.570312 C 311.058594 234.570312 311.152344 234.476562 311.152344 234.359375 Z M 311.152344 234.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.378906 232.441406 C 310.378906 232.324219 310.285156 232.230469 310.167969 232.230469 C 310.050781 232.230469 309.957031 232.324219 309.957031 232.441406 C 309.957031 232.558594 310.050781 232.652344 310.167969 232.652344 C 310.285156 232.652344 310.378906 232.558594 310.378906 232.441406 Z M 310.378906 232.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.878906 232.664062 C 310.878906 232.546875 310.785156 232.453125 310.667969 232.453125 C 310.550781 232.453125 310.457031 232.546875 310.457031 232.664062 C 310.457031 232.78125 310.550781 232.875 310.667969 232.875 C 310.785156 232.875 310.878906 232.78125 310.878906 232.664062 Z M 310.878906 232.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.480469 232.046875 C 309.480469 231.929688 309.386719 231.835938 309.269531 231.835938 C 309.152344 231.835938 309.058594 231.929688 309.058594 232.046875 C 309.058594 232.164062 309.152344 232.257812 309.269531 232.257812 C 309.386719 232.257812 309.480469 232.164062 309.480469 232.046875 Z M 309.480469 232.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.011719 231.613281 C 307.011719 231.496094 306.917969 231.402344 306.800781 231.402344 C 306.683594 231.402344 306.589844 231.496094 306.589844 231.613281 C 306.589844 231.730469 306.683594 231.824219 306.800781 231.824219 C 306.917969 231.824219 307.011719 231.730469 307.011719 231.613281 Z M 307.011719 231.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.917969 229.617188 C 305.917969 229.5 305.824219 229.40625 305.707031 229.40625 C 305.589844 229.40625 305.496094 229.5 305.496094 229.617188 C 305.496094 229.734375 305.589844 229.828125 305.707031 229.828125 C 305.824219 229.828125 305.917969 229.734375 305.917969 229.617188 Z M 305.917969 229.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.863281 233.585938 C 307.863281 233.46875 307.769531 233.375 307.652344 233.375 C 307.535156 233.375 307.441406 233.46875 307.441406 233.585938 C 307.441406 233.703125 307.535156 233.796875 307.652344 233.796875 C 307.769531 233.796875 307.863281 233.703125 307.863281 233.585938 Z M 307.863281 233.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.257812 234.476562 C 306.257812 234.359375 306.164062 234.265625 306.046875 234.265625 C 305.929688 234.265625 305.835938 234.359375 305.835938 234.476562 C 305.835938 234.59375 305.929688 234.6875 306.046875 234.6875 C 306.164062 234.6875 306.257812 234.59375 306.257812 234.476562 Z M 306.257812 234.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.375 235.027344 C 307.375 234.910156 307.28125 234.816406 307.164062 234.816406 C 307.046875 234.816406 306.953125 234.910156 306.953125 235.027344 C 306.953125 235.144531 307.046875 235.238281 307.164062 235.238281 C 307.28125 235.238281 307.375 235.144531 307.375 235.027344 Z M 307.375 235.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.71875 237.378906 C 303.71875 237.261719 303.625 237.167969 303.507812 237.167969 C 303.390625 237.167969 303.296875 237.261719 303.296875 237.378906 C 303.296875 237.496094 303.390625 237.589844 303.507812 237.589844 C 303.625 237.589844 303.71875 237.496094 303.71875 237.378906 Z M 303.71875 237.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.332031 235.152344 C 304.332031 235.035156 304.238281 234.941406 304.121094 234.941406 C 304.003906 234.941406 303.910156 235.035156 303.910156 235.152344 C 303.910156 235.269531 304.003906 235.363281 304.121094 235.363281 C 304.238281 235.363281 304.332031 235.269531 304.332031 235.152344 Z M 304.332031 235.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.363281 238.734375 C 303.363281 238.617188 303.269531 238.523438 303.152344 238.523438 C 303.035156 238.523438 302.941406 238.617188 302.941406 238.734375 C 302.941406 238.851562 303.035156 238.945312 303.152344 238.945312 C 303.269531 238.945312 303.363281 238.851562 303.363281 238.734375 Z M 303.363281 238.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.914062 237.40625 C 306.914062 237.289062 306.820312 237.195312 306.703125 237.195312 C 306.585938 237.195312 306.492188 237.289062 306.492188 237.40625 C 306.492188 237.523438 306.585938 237.617188 306.703125 237.617188 C 306.820312 237.617188 306.914062 237.523438 306.914062 237.40625 Z M 306.914062 237.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.273438 235.554688 C 305.273438 235.4375 305.179688 235.34375 305.0625 235.34375 C 304.945312 235.34375 304.851562 235.4375 304.851562 235.554688 C 304.851562 235.671875 304.945312 235.765625 305.0625 235.765625 C 305.179688 235.765625 305.273438 235.671875 305.273438 235.554688 Z M 305.273438 235.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.933594 235.773438 C 304.933594 235.65625 304.839844 235.5625 304.722656 235.5625 C 304.605469 235.5625 304.511719 235.65625 304.511719 235.773438 C 304.511719 235.890625 304.605469 235.984375 304.722656 235.984375 C 304.839844 235.984375 304.933594 235.890625 304.933594 235.773438 Z M 304.933594 235.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.625 231.507812 C 304.625 231.390625 304.53125 231.296875 304.414062 231.296875 C 304.296875 231.296875 304.203125 231.390625 304.203125 231.507812 C 304.203125 231.625 304.296875 231.71875 304.414062 231.71875 C 304.53125 231.71875 304.625 231.625 304.625 231.507812 Z M 304.625 231.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.808594 227.019531 C 306.808594 226.902344 306.714844 226.808594 306.597656 226.808594 C 306.480469 226.808594 306.386719 226.902344 306.386719 227.019531 C 306.386719 227.136719 306.480469 227.230469 306.597656 227.230469 C 306.714844 227.230469 306.808594 227.136719 306.808594 227.019531 Z M 306.808594 227.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.03125 229.503906 C 303.03125 229.386719 302.9375 229.292969 302.820312 229.292969 C 302.703125 229.292969 302.609375 229.386719 302.609375 229.503906 C 302.609375 229.621094 302.703125 229.714844 302.820312 229.714844 C 302.9375 229.714844 303.03125 229.621094 303.03125 229.503906 Z M 303.03125 229.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.015625 230.410156 C 304.015625 230.292969 303.921875 230.199219 303.804688 230.199219 C 303.6875 230.199219 303.59375 230.292969 303.59375 230.410156 C 303.59375 230.527344 303.6875 230.621094 303.804688 230.621094 C 303.921875 230.621094 304.015625 230.527344 304.015625 230.410156 Z M 304.015625 230.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.566406 233.828125 C 304.566406 233.710938 304.472656 233.617188 304.355469 233.617188 C 304.238281 233.617188 304.144531 233.710938 304.144531 233.828125 C 304.144531 233.945312 304.238281 234.039062 304.355469 234.039062 C 304.472656 234.039062 304.566406 233.945312 304.566406 233.828125 Z M 304.566406 233.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.15625 234.597656 C 302.15625 234.480469 302.0625 234.386719 301.945312 234.386719 C 301.828125 234.386719 301.734375 234.480469 301.734375 234.597656 C 301.734375 234.714844 301.828125 234.808594 301.945312 234.808594 C 302.0625 234.808594 302.15625 234.714844 302.15625 234.597656 Z M 302.15625 234.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.03125 237.214844 C 302.03125 237.097656 301.9375 237.003906 301.820312 237.003906 C 301.703125 237.003906 301.609375 237.097656 301.609375 237.214844 C 301.609375 237.332031 301.703125 237.425781 301.820312 237.425781 C 301.9375 237.425781 302.03125 237.332031 302.03125 237.214844 Z M 302.03125 237.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.941406 234.105469 C 302.941406 233.988281 302.847656 233.894531 302.730469 233.894531 C 302.613281 233.894531 302.519531 233.988281 302.519531 234.105469 C 302.519531 234.222656 302.613281 234.316406 302.730469 234.316406 C 302.847656 234.316406 302.941406 234.222656 302.941406 234.105469 Z M 302.941406 234.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.21875 234.644531 C 304.21875 234.527344 304.125 234.433594 304.007812 234.433594 C 303.890625 234.433594 303.796875 234.527344 303.796875 234.644531 C 303.796875 234.761719 303.890625 234.855469 304.007812 234.855469 C 304.125 234.855469 304.21875 234.761719 304.21875 234.644531 Z M 304.21875 234.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.246094 233.699219 C 302.246094 233.582031 302.152344 233.488281 302.035156 233.488281 C 301.917969 233.488281 301.824219 233.582031 301.824219 233.699219 C 301.824219 233.816406 301.917969 233.910156 302.035156 233.910156 C 302.152344 233.910156 302.246094 233.816406 302.246094 233.699219 Z M 302.246094 233.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.546875 236.484375 C 301.546875 236.367188 301.453125 236.273438 301.335938 236.273438 C 301.21875 236.273438 301.125 236.367188 301.125 236.484375 C 301.125 236.601562 301.21875 236.695312 301.335938 236.695312 C 301.453125 236.695312 301.546875 236.601562 301.546875 236.484375 Z M 301.546875 236.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.820312 237.265625 C 304.820312 237.148438 304.726562 237.054688 304.609375 237.054688 C 304.492188 237.054688 304.398438 237.148438 304.398438 237.265625 C 304.398438 237.382812 304.492188 237.476562 304.609375 237.476562 C 304.726562 237.476562 304.820312 237.382812 304.820312 237.265625 Z M 304.820312 237.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.972656 232.015625 C 302.972656 231.898438 302.878906 231.804688 302.761719 231.804688 C 302.644531 231.804688 302.550781 231.898438 302.550781 232.015625 C 302.550781 232.132812 302.644531 232.226562 302.761719 232.226562 C 302.878906 232.226562 302.972656 232.132812 302.972656 232.015625 Z M 302.972656 232.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.082031 233.292969 C 302.082031 233.175781 301.988281 233.082031 301.871094 233.082031 C 301.753906 233.082031 301.660156 233.175781 301.660156 233.292969 C 301.660156 233.410156 301.753906 233.503906 301.871094 233.503906 C 301.988281 233.503906 302.082031 233.410156 302.082031 233.292969 Z M 302.082031 233.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.351562 233.027344 C 303.351562 232.910156 303.257812 232.816406 303.140625 232.816406 C 303.023438 232.816406 302.929688 232.910156 302.929688 233.027344 C 302.929688 233.144531 303.023438 233.238281 303.140625 233.238281 C 303.257812 233.238281 303.351562 233.144531 303.351562 233.027344 Z M 303.351562 233.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.171875 232.574219 C 304.171875 232.457031 304.078125 232.363281 303.960938 232.363281 C 303.84375 232.363281 303.75 232.457031 303.75 232.574219 C 303.75 232.691406 303.84375 232.785156 303.960938 232.785156 C 304.078125 232.785156 304.171875 232.691406 304.171875 232.574219 Z M 304.171875 232.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.082031 232.832031 C 306.082031 232.714844 305.988281 232.621094 305.871094 232.621094 C 305.753906 232.621094 305.660156 232.714844 305.660156 232.832031 C 305.660156 232.949219 305.753906 233.042969 305.871094 233.042969 C 305.988281 233.042969 306.082031 232.949219 306.082031 232.832031 Z M 306.082031 232.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.078125 235.8125 C 304.078125 235.695312 303.984375 235.601562 303.867188 235.601562 C 303.75 235.601562 303.65625 235.695312 303.65625 235.8125 C 303.65625 235.929688 303.75 236.023438 303.867188 236.023438 C 303.984375 236.023438 304.078125 235.929688 304.078125 235.8125 Z M 304.078125 235.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.148438 238.546875 C 302.148438 238.429688 302.054688 238.335938 301.9375 238.335938 C 301.820312 238.335938 301.726562 238.429688 301.726562 238.546875 C 301.726562 238.664062 301.820312 238.757812 301.9375 238.757812 C 302.054688 238.757812 302.148438 238.664062 302.148438 238.546875 Z M 302.148438 238.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.683594 240.898438 C 304.683594 240.78125 304.589844 240.6875 304.472656 240.6875 C 304.355469 240.6875 304.261719 240.78125 304.261719 240.898438 C 304.261719 241.015625 304.355469 241.109375 304.472656 241.109375 C 304.589844 241.109375 304.683594 241.015625 304.683594 240.898438 Z M 304.683594 240.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.574219 243.972656 C 302.574219 243.855469 302.480469 243.761719 302.363281 243.761719 C 302.246094 243.761719 302.152344 243.855469 302.152344 243.972656 C 302.152344 244.089844 302.246094 244.183594 302.363281 244.183594 C 302.480469 244.183594 302.574219 244.089844 302.574219 243.972656 Z M 302.574219 243.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.058594 244.234375 C 301.058594 244.117188 300.964844 244.023438 300.847656 244.023438 C 300.730469 244.023438 300.636719 244.117188 300.636719 244.234375 C 300.636719 244.351562 300.730469 244.445312 300.847656 244.445312 C 300.964844 244.445312 301.058594 244.351562 301.058594 244.234375 Z M 301.058594 244.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.691406 244.855469 C 299.691406 244.738281 299.597656 244.644531 299.480469 244.644531 C 299.363281 244.644531 299.269531 244.738281 299.269531 244.855469 C 299.269531 244.972656 299.363281 245.066406 299.480469 245.066406 C 299.597656 245.066406 299.691406 244.972656 299.691406 244.855469 Z M 299.691406 244.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.871094 246.476562 C 300.871094 246.359375 300.777344 246.265625 300.660156 246.265625 C 300.542969 246.265625 300.449219 246.359375 300.449219 246.476562 C 300.449219 246.59375 300.542969 246.6875 300.660156 246.6875 C 300.777344 246.6875 300.871094 246.59375 300.871094 246.476562 Z M 300.871094 246.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.613281 246.75 C 300.613281 246.632812 300.519531 246.539062 300.402344 246.539062 C 300.285156 246.539062 300.191406 246.632812 300.191406 246.75 C 300.191406 246.867188 300.285156 246.960938 300.402344 246.960938 C 300.519531 246.960938 300.613281 246.867188 300.613281 246.75 Z M 300.613281 246.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.59375 246.960938 C 298.59375 246.84375 298.5 246.75 298.382812 246.75 C 298.265625 246.75 298.171875 246.84375 298.171875 246.960938 C 298.171875 247.078125 298.265625 247.171875 298.382812 247.171875 C 298.5 247.171875 298.59375 247.078125 298.59375 246.960938 Z M 298.59375 246.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.121094 243.546875 C 296.121094 243.429688 296.027344 243.335938 295.910156 243.335938 C 295.792969 243.335938 295.699219 243.429688 295.699219 243.546875 C 295.699219 243.664062 295.792969 243.757812 295.910156 243.757812 C 296.027344 243.757812 296.121094 243.664062 296.121094 243.546875 Z M 296.121094 243.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.4375 247.28125 C 297.4375 247.164062 297.34375 247.070312 297.226562 247.070312 C 297.109375 247.070312 297.015625 247.164062 297.015625 247.28125 C 297.015625 247.398438 297.109375 247.492188 297.226562 247.492188 C 297.34375 247.492188 297.4375 247.398438 297.4375 247.28125 Z M 297.4375 247.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.304688 249.515625 C 298.304688 249.398438 298.210938 249.304688 298.09375 249.304688 C 297.976562 249.304688 297.882812 249.398438 297.882812 249.515625 C 297.882812 249.632812 297.976562 249.726562 298.09375 249.726562 C 298.210938 249.726562 298.304688 249.632812 298.304688 249.515625 Z M 298.304688 249.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.050781 248.257812 C 299.050781 248.140625 298.957031 248.046875 298.839844 248.046875 C 298.722656 248.046875 298.628906 248.140625 298.628906 248.257812 C 298.628906 248.375 298.722656 248.46875 298.839844 248.46875 C 298.957031 248.46875 299.050781 248.375 299.050781 248.257812 Z M 299.050781 248.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.59375 247.996094 C 297.59375 247.878906 297.5 247.785156 297.382812 247.785156 C 297.265625 247.785156 297.171875 247.878906 297.171875 247.996094 C 297.171875 248.113281 297.265625 248.207031 297.382812 248.207031 C 297.5 248.207031 297.59375 248.113281 297.59375 247.996094 Z M 297.59375 247.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.074219 246.992188 C 300.074219 246.875 299.980469 246.78125 299.863281 246.78125 C 299.746094 246.78125 299.652344 246.875 299.652344 246.992188 C 299.652344 247.109375 299.746094 247.203125 299.863281 247.203125 C 299.980469 247.203125 300.074219 247.109375 300.074219 246.992188 Z M 300.074219 246.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.898438 246.097656 C 300.898438 245.980469 300.804688 245.886719 300.6875 245.886719 C 300.570312 245.886719 300.476562 245.980469 300.476562 246.097656 C 300.476562 246.214844 300.570312 246.308594 300.6875 246.308594 C 300.804688 246.308594 300.898438 246.214844 300.898438 246.097656 Z M 300.898438 246.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.953125 247.128906 C 299.953125 247.011719 299.859375 246.917969 299.742188 246.917969 C 299.625 246.917969 299.53125 247.011719 299.53125 247.128906 C 299.53125 247.246094 299.625 247.339844 299.742188 247.339844 C 299.859375 247.339844 299.953125 247.246094 299.953125 247.128906 Z M 299.953125 247.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.988281 248.789062 C 299.988281 248.671875 299.894531 248.578125 299.777344 248.578125 C 299.660156 248.578125 299.566406 248.671875 299.566406 248.789062 C 299.566406 248.90625 299.660156 249 299.777344 249 C 299.894531 249 299.988281 248.90625 299.988281 248.789062 Z M 299.988281 248.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.398438 246.105469 C 301.398438 245.988281 301.304688 245.894531 301.1875 245.894531 C 301.070312 245.894531 300.976562 245.988281 300.976562 246.105469 C 300.976562 246.222656 301.070312 246.316406 301.1875 246.316406 C 301.304688 246.316406 301.398438 246.222656 301.398438 246.105469 Z M 301.398438 246.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.410156 245.132812 C 299.410156 245.015625 299.316406 244.921875 299.199219 244.921875 C 299.082031 244.921875 298.988281 245.015625 298.988281 245.132812 C 298.988281 245.25 299.082031 245.34375 299.199219 245.34375 C 299.316406 245.34375 299.410156 245.25 299.410156 245.132812 Z M 299.410156 245.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.324219 244.9375 C 300.324219 244.820312 300.230469 244.726562 300.113281 244.726562 C 299.996094 244.726562 299.902344 244.820312 299.902344 244.9375 C 299.902344 245.054688 299.996094 245.148438 300.113281 245.148438 C 300.230469 245.148438 300.324219 245.054688 300.324219 244.9375 Z M 300.324219 244.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.242188 242.332031 C 300.242188 242.214844 300.148438 242.121094 300.03125 242.121094 C 299.914062 242.121094 299.820312 242.214844 299.820312 242.332031 C 299.820312 242.449219 299.914062 242.542969 300.03125 242.542969 C 300.148438 242.542969 300.242188 242.449219 300.242188 242.332031 Z M 300.242188 242.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.789062 240.65625 C 301.789062 240.539062 301.695312 240.445312 301.578125 240.445312 C 301.460938 240.445312 301.367188 240.539062 301.367188 240.65625 C 301.367188 240.773438 301.460938 240.867188 301.578125 240.867188 C 301.695312 240.867188 301.789062 240.773438 301.789062 240.65625 Z M 301.789062 240.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.214844 239.9375 C 302.214844 239.820312 302.121094 239.726562 302.003906 239.726562 C 301.886719 239.726562 301.792969 239.820312 301.792969 239.9375 C 301.792969 240.054688 301.886719 240.148438 302.003906 240.148438 C 302.121094 240.148438 302.214844 240.054688 302.214844 239.9375 Z M 302.214844 239.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.652344 234.828125 C 300.652344 234.710938 300.558594 234.617188 300.441406 234.617188 C 300.324219 234.617188 300.230469 234.710938 300.230469 234.828125 C 300.230469 234.945312 300.324219 235.039062 300.441406 235.039062 C 300.558594 235.039062 300.652344 234.945312 300.652344 234.828125 Z M 300.652344 234.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.476562 235.085938 C 301.476562 234.96875 301.382812 234.875 301.265625 234.875 C 301.148438 234.875 301.054688 234.96875 301.054688 235.085938 C 301.054688 235.203125 301.148438 235.296875 301.265625 235.296875 C 301.382812 235.296875 301.476562 235.203125 301.476562 235.085938 Z M 301.476562 235.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.910156 239.75 C 302.910156 239.632812 302.816406 239.539062 302.699219 239.539062 C 302.582031 239.539062 302.488281 239.632812 302.488281 239.75 C 302.488281 239.867188 302.582031 239.960938 302.699219 239.960938 C 302.816406 239.960938 302.910156 239.867188 302.910156 239.75 Z M 302.910156 239.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.804688 240.167969 C 301.804688 240.050781 301.710938 239.957031 301.59375 239.957031 C 301.476562 239.957031 301.382812 240.050781 301.382812 240.167969 C 301.382812 240.285156 301.476562 240.378906 301.59375 240.378906 C 301.710938 240.378906 301.804688 240.285156 301.804688 240.167969 Z M 301.804688 240.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.230469 240.816406 C 299.230469 240.699219 299.136719 240.605469 299.019531 240.605469 C 298.902344 240.605469 298.808594 240.699219 298.808594 240.816406 C 298.808594 240.933594 298.902344 241.027344 299.019531 241.027344 C 299.136719 241.027344 299.230469 240.933594 299.230469 240.816406 Z M 299.230469 240.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.339844 241.46875 C 301.339844 241.351562 301.246094 241.257812 301.128906 241.257812 C 301.011719 241.257812 300.917969 241.351562 300.917969 241.46875 C 300.917969 241.585938 301.011719 241.679688 301.128906 241.679688 C 301.246094 241.679688 301.339844 241.585938 301.339844 241.46875 Z M 301.339844 241.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.652344 240.445312 C 299.652344 240.328125 299.558594 240.234375 299.441406 240.234375 C 299.324219 240.234375 299.230469 240.328125 299.230469 240.445312 C 299.230469 240.5625 299.324219 240.65625 299.441406 240.65625 C 299.558594 240.65625 299.652344 240.5625 299.652344 240.445312 Z M 299.652344 240.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.621094 241.933594 C 298.621094 241.816406 298.527344 241.722656 298.410156 241.722656 C 298.292969 241.722656 298.199219 241.816406 298.199219 241.933594 C 298.199219 242.050781 298.292969 242.144531 298.410156 242.144531 C 298.527344 242.144531 298.621094 242.050781 298.621094 241.933594 Z M 298.621094 241.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.832031 246.25 C 295.832031 246.132812 295.738281 246.039062 295.621094 246.039062 C 295.503906 246.039062 295.410156 246.132812 295.410156 246.25 C 295.410156 246.367188 295.503906 246.460938 295.621094 246.460938 C 295.738281 246.460938 295.832031 246.367188 295.832031 246.25 Z M 295.832031 246.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.746094 247.34375 C 294.746094 247.226562 294.652344 247.132812 294.535156 247.132812 C 294.417969 247.132812 294.324219 247.226562 294.324219 247.34375 C 294.324219 247.460938 294.417969 247.554688 294.535156 247.554688 C 294.652344 247.554688 294.746094 247.460938 294.746094 247.34375 Z M 294.746094 247.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297 247.976562 C 297 247.859375 296.90625 247.765625 296.789062 247.765625 C 296.671875 247.765625 296.578125 247.859375 296.578125 247.976562 C 296.578125 248.09375 296.671875 248.1875 296.789062 248.1875 C 296.90625 248.1875 297 248.09375 297 247.976562 Z M 297 247.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.933594 247.507812 C 296.933594 247.390625 296.839844 247.296875 296.722656 247.296875 C 296.605469 247.296875 296.511719 247.390625 296.511719 247.507812 C 296.511719 247.625 296.605469 247.71875 296.722656 247.71875 C 296.839844 247.71875 296.933594 247.625 296.933594 247.507812 Z M 296.933594 247.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.425781 247.214844 C 298.425781 247.097656 298.332031 247.003906 298.214844 247.003906 C 298.097656 247.003906 298.003906 247.097656 298.003906 247.214844 C 298.003906 247.332031 298.097656 247.425781 298.214844 247.425781 C 298.332031 247.425781 298.425781 247.332031 298.425781 247.214844 Z M 298.425781 247.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.316406 251.183594 C 298.316406 251.066406 298.222656 250.972656 298.105469 250.972656 C 297.988281 250.972656 297.894531 251.066406 297.894531 251.183594 C 297.894531 251.300781 297.988281 251.394531 298.105469 251.394531 C 298.222656 251.394531 298.316406 251.300781 298.316406 251.183594 Z M 298.316406 251.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.945312 251.152344 C 297.945312 251.035156 297.851562 250.941406 297.734375 250.941406 C 297.617188 250.941406 297.523438 251.035156 297.523438 251.152344 C 297.523438 251.269531 297.617188 251.363281 297.734375 251.363281 C 297.851562 251.363281 297.945312 251.269531 297.945312 251.152344 Z M 297.945312 251.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.144531 250.476562 C 296.144531 250.359375 296.050781 250.265625 295.933594 250.265625 C 295.816406 250.265625 295.722656 250.359375 295.722656 250.476562 C 295.722656 250.59375 295.816406 250.6875 295.933594 250.6875 C 296.050781 250.6875 296.144531 250.59375 296.144531 250.476562 Z M 296.144531 250.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.785156 252.308594 C 297.785156 252.191406 297.691406 252.097656 297.574219 252.097656 C 297.457031 252.097656 297.363281 252.191406 297.363281 252.308594 C 297.363281 252.425781 297.457031 252.519531 297.574219 252.519531 C 297.691406 252.519531 297.785156 252.425781 297.785156 252.308594 Z M 297.785156 252.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.964844 249.769531 C 294.964844 249.652344 294.871094 249.558594 294.753906 249.558594 C 294.636719 249.558594 294.542969 249.652344 294.542969 249.769531 C 294.542969 249.886719 294.636719 249.980469 294.753906 249.980469 C 294.871094 249.980469 294.964844 249.886719 294.964844 249.769531 Z M 294.964844 249.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.632812 248.171875 C 294.632812 248.054688 294.539062 247.960938 294.421875 247.960938 C 294.304688 247.960938 294.210938 248.054688 294.210938 248.171875 C 294.210938 248.289062 294.304688 248.382812 294.421875 248.382812 C 294.539062 248.382812 294.632812 248.289062 294.632812 248.171875 Z M 294.632812 248.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.574219 251.101562 C 292.574219 250.984375 292.480469 250.890625 292.363281 250.890625 C 292.246094 250.890625 292.152344 250.984375 292.152344 251.101562 C 292.152344 251.21875 292.246094 251.3125 292.363281 251.3125 C 292.480469 251.3125 292.574219 251.21875 292.574219 251.101562 Z M 292.574219 251.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.417969 250.898438 C 293.417969 250.78125 293.324219 250.6875 293.207031 250.6875 C 293.089844 250.6875 292.996094 250.78125 292.996094 250.898438 C 292.996094 251.015625 293.089844 251.109375 293.207031 251.109375 C 293.324219 251.109375 293.417969 251.015625 293.417969 250.898438 Z M 293.417969 250.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.734375 248.9375 C 293.734375 248.820312 293.640625 248.726562 293.523438 248.726562 C 293.40625 248.726562 293.3125 248.820312 293.3125 248.9375 C 293.3125 249.054688 293.40625 249.148438 293.523438 249.148438 C 293.640625 249.148438 293.734375 249.054688 293.734375 248.9375 Z M 293.734375 248.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.953125 247.777344 C 296.953125 247.660156 296.859375 247.566406 296.742188 247.566406 C 296.625 247.566406 296.53125 247.660156 296.53125 247.777344 C 296.53125 247.894531 296.625 247.988281 296.742188 247.988281 C 296.859375 247.988281 296.953125 247.894531 296.953125 247.777344 Z M 296.953125 247.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.148438 247.320312 C 297.148438 247.203125 297.054688 247.109375 296.9375 247.109375 C 296.820312 247.109375 296.726562 247.203125 296.726562 247.320312 C 296.726562 247.4375 296.820312 247.53125 296.9375 247.53125 C 297.054688 247.53125 297.148438 247.4375 297.148438 247.320312 Z M 297.148438 247.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.25 246.484375 C 299.25 246.367188 299.15625 246.273438 299.039062 246.273438 C 298.921875 246.273438 298.828125 246.367188 298.828125 246.484375 C 298.828125 246.601562 298.921875 246.695312 299.039062 246.695312 C 299.15625 246.695312 299.25 246.601562 299.25 246.484375 Z M 299.25 246.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.339844 247.066406 C 297.339844 246.949219 297.246094 246.855469 297.128906 246.855469 C 297.011719 246.855469 296.917969 246.949219 296.917969 247.066406 C 296.917969 247.183594 297.011719 247.277344 297.128906 247.277344 C 297.246094 247.277344 297.339844 247.183594 297.339844 247.066406 Z M 297.339844 247.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.023438 250.5625 C 294.023438 250.445312 293.929688 250.351562 293.8125 250.351562 C 293.695312 250.351562 293.601562 250.445312 293.601562 250.5625 C 293.601562 250.679688 293.695312 250.773438 293.8125 250.773438 C 293.929688 250.773438 294.023438 250.679688 294.023438 250.5625 Z M 294.023438 250.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.992188 249.347656 C 290.992188 249.230469 290.898438 249.136719 290.78125 249.136719 C 290.664062 249.136719 290.570312 249.230469 290.570312 249.347656 C 290.570312 249.464844 290.664062 249.558594 290.78125 249.558594 C 290.898438 249.558594 290.992188 249.464844 290.992188 249.347656 Z M 290.992188 249.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.355469 245.957031 C 292.355469 245.839844 292.261719 245.746094 292.144531 245.746094 C 292.027344 245.746094 291.933594 245.839844 291.933594 245.957031 C 291.933594 246.074219 292.027344 246.167969 292.144531 246.167969 C 292.261719 246.167969 292.355469 246.074219 292.355469 245.957031 Z M 292.355469 245.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.160156 247.207031 C 290.160156 247.089844 290.066406 246.996094 289.949219 246.996094 C 289.832031 246.996094 289.738281 247.089844 289.738281 247.207031 C 289.738281 247.324219 289.832031 247.417969 289.949219 247.417969 C 290.066406 247.417969 290.160156 247.324219 290.160156 247.207031 Z M 290.160156 247.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.476562 251.632812 C 292.476562 251.515625 292.382812 251.421875 292.265625 251.421875 C 292.148438 251.421875 292.054688 251.515625 292.054688 251.632812 C 292.054688 251.75 292.148438 251.84375 292.265625 251.84375 C 292.382812 251.84375 292.476562 251.75 292.476562 251.632812 Z M 292.476562 251.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.703125 247.757812 C 293.703125 247.640625 293.609375 247.546875 293.492188 247.546875 C 293.375 247.546875 293.28125 247.640625 293.28125 247.757812 C 293.28125 247.875 293.375 247.96875 293.492188 247.96875 C 293.609375 247.96875 293.703125 247.875 293.703125 247.757812 Z M 293.703125 247.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.34375 248.089844 C 294.34375 247.972656 294.25 247.878906 294.132812 247.878906 C 294.015625 247.878906 293.921875 247.972656 293.921875 248.089844 C 293.921875 248.207031 294.015625 248.300781 294.132812 248.300781 C 294.25 248.300781 294.34375 248.207031 294.34375 248.089844 Z M 294.34375 248.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.328125 247.972656 C 292.328125 247.855469 292.234375 247.761719 292.117188 247.761719 C 292 247.761719 291.90625 247.855469 291.90625 247.972656 C 291.90625 248.089844 292 248.183594 292.117188 248.183594 C 292.234375 248.183594 292.328125 248.089844 292.328125 247.972656 Z M 292.328125 247.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.617188 250.292969 C 293.617188 250.175781 293.523438 250.082031 293.40625 250.082031 C 293.289062 250.082031 293.195312 250.175781 293.195312 250.292969 C 293.195312 250.410156 293.289062 250.503906 293.40625 250.503906 C 293.523438 250.503906 293.617188 250.410156 293.617188 250.292969 Z M 293.617188 250.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.824219 247.371094 C 294.824219 247.253906 294.730469 247.160156 294.613281 247.160156 C 294.496094 247.160156 294.402344 247.253906 294.402344 247.371094 C 294.402344 247.488281 294.496094 247.582031 294.613281 247.582031 C 294.730469 247.582031 294.824219 247.488281 294.824219 247.371094 Z M 294.824219 247.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.523438 247.925781 C 295.523438 247.808594 295.429688 247.714844 295.3125 247.714844 C 295.195312 247.714844 295.101562 247.808594 295.101562 247.925781 C 295.101562 248.042969 295.195312 248.136719 295.3125 248.136719 C 295.429688 248.136719 295.523438 248.042969 295.523438 247.925781 Z M 295.523438 247.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.160156 248.242188 C 293.160156 248.125 293.066406 248.03125 292.949219 248.03125 C 292.832031 248.03125 292.738281 248.125 292.738281 248.242188 C 292.738281 248.359375 292.832031 248.453125 292.949219 248.453125 C 293.066406 248.453125 293.160156 248.359375 293.160156 248.242188 Z M 293.160156 248.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.921875 246.4375 C 293.921875 246.320312 293.828125 246.226562 293.710938 246.226562 C 293.59375 246.226562 293.5 246.320312 293.5 246.4375 C 293.5 246.554688 293.59375 246.648438 293.710938 246.648438 C 293.828125 246.648438 293.921875 246.554688 293.921875 246.4375 Z M 293.921875 246.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.824219 250.984375 C 292.824219 250.867188 292.730469 250.773438 292.613281 250.773438 C 292.496094 250.773438 292.402344 250.867188 292.402344 250.984375 C 292.402344 251.101562 292.496094 251.195312 292.613281 251.195312 C 292.730469 251.195312 292.824219 251.101562 292.824219 250.984375 Z M 292.824219 250.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.519531 251.980469 C 291.519531 251.863281 291.425781 251.769531 291.308594 251.769531 C 291.191406 251.769531 291.097656 251.863281 291.097656 251.980469 C 291.097656 252.097656 291.191406 252.191406 291.308594 252.191406 C 291.425781 252.191406 291.519531 252.097656 291.519531 251.980469 Z M 291.519531 251.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.964844 250.523438 C 288.964844 250.40625 288.871094 250.3125 288.753906 250.3125 C 288.636719 250.3125 288.542969 250.40625 288.542969 250.523438 C 288.542969 250.640625 288.636719 250.734375 288.753906 250.734375 C 288.871094 250.734375 288.964844 250.640625 288.964844 250.523438 Z M 288.964844 250.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.632812 250.644531 C 290.632812 250.527344 290.539062 250.433594 290.421875 250.433594 C 290.304688 250.433594 290.210938 250.527344 290.210938 250.644531 C 290.210938 250.761719 290.304688 250.855469 290.421875 250.855469 C 290.539062 250.855469 290.632812 250.761719 290.632812 250.644531 Z M 290.632812 250.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.472656 246.898438 C 291.472656 246.78125 291.378906 246.6875 291.261719 246.6875 C 291.144531 246.6875 291.050781 246.78125 291.050781 246.898438 C 291.050781 247.015625 291.144531 247.109375 291.261719 247.109375 C 291.378906 247.109375 291.472656 247.015625 291.472656 246.898438 Z M 291.472656 246.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.644531 248.976562 C 291.644531 248.859375 291.550781 248.765625 291.433594 248.765625 C 291.316406 248.765625 291.222656 248.859375 291.222656 248.976562 C 291.222656 249.09375 291.316406 249.1875 291.433594 249.1875 C 291.550781 249.1875 291.644531 249.09375 291.644531 248.976562 Z M 291.644531 248.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.910156 249.394531 C 291.910156 249.277344 291.816406 249.183594 291.699219 249.183594 C 291.582031 249.183594 291.488281 249.277344 291.488281 249.394531 C 291.488281 249.511719 291.582031 249.605469 291.699219 249.605469 C 291.816406 249.605469 291.910156 249.511719 291.910156 249.394531 Z M 291.910156 249.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.699219 248.566406 C 291.699219 248.449219 291.605469 248.355469 291.488281 248.355469 C 291.371094 248.355469 291.277344 248.449219 291.277344 248.566406 C 291.277344 248.683594 291.371094 248.777344 291.488281 248.777344 C 291.605469 248.777344 291.699219 248.683594 291.699219 248.566406 Z M 291.699219 248.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.988281 249.542969 C 290.988281 249.425781 290.894531 249.332031 290.777344 249.332031 C 290.660156 249.332031 290.566406 249.425781 290.566406 249.542969 C 290.566406 249.660156 290.660156 249.753906 290.777344 249.753906 C 290.894531 249.753906 290.988281 249.660156 290.988281 249.542969 Z M 290.988281 249.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.558594 249.59375 C 290.558594 249.476562 290.464844 249.382812 290.347656 249.382812 C 290.230469 249.382812 290.136719 249.476562 290.136719 249.59375 C 290.136719 249.710938 290.230469 249.804688 290.347656 249.804688 C 290.464844 249.804688 290.558594 249.710938 290.558594 249.59375 Z M 290.558594 249.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.625 250.523438 C 289.625 250.40625 289.53125 250.3125 289.414062 250.3125 C 289.296875 250.3125 289.203125 250.40625 289.203125 250.523438 C 289.203125 250.640625 289.296875 250.734375 289.414062 250.734375 C 289.53125 250.734375 289.625 250.640625 289.625 250.523438 Z M 289.625 250.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.117188 249.625 C 291.117188 249.507812 291.023438 249.414062 290.90625 249.414062 C 290.789062 249.414062 290.695312 249.507812 290.695312 249.625 C 290.695312 249.742188 290.789062 249.835938 290.90625 249.835938 C 291.023438 249.835938 291.117188 249.742188 291.117188 249.625 Z M 291.117188 249.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.226562 251.066406 C 293.226562 250.949219 293.132812 250.855469 293.015625 250.855469 C 292.898438 250.855469 292.804688 250.949219 292.804688 251.066406 C 292.804688 251.183594 292.898438 251.277344 293.015625 251.277344 C 293.132812 251.277344 293.226562 251.183594 293.226562 251.066406 Z M 293.226562 251.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.703125 249.128906 C 290.703125 249.011719 290.609375 248.917969 290.492188 248.917969 C 290.375 248.917969 290.28125 249.011719 290.28125 249.128906 C 290.28125 249.246094 290.375 249.339844 290.492188 249.339844 C 290.609375 249.339844 290.703125 249.246094 290.703125 249.128906 Z M 290.703125 249.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.0625 250.160156 C 288.0625 250.042969 287.96875 249.949219 287.851562 249.949219 C 287.734375 249.949219 287.640625 250.042969 287.640625 250.160156 C 287.640625 250.277344 287.734375 250.371094 287.851562 250.371094 C 287.96875 250.371094 288.0625 250.277344 288.0625 250.160156 Z M 288.0625 250.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.085938 248.664062 C 287.085938 248.546875 286.992188 248.453125 286.875 248.453125 C 286.757812 248.453125 286.664062 248.546875 286.664062 248.664062 C 286.664062 248.78125 286.757812 248.875 286.875 248.875 C 286.992188 248.875 287.085938 248.78125 287.085938 248.664062 Z M 287.085938 248.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.566406 249.304688 C 288.566406 249.1875 288.472656 249.09375 288.355469 249.09375 C 288.238281 249.09375 288.144531 249.1875 288.144531 249.304688 C 288.144531 249.421875 288.238281 249.515625 288.355469 249.515625 C 288.472656 249.515625 288.566406 249.421875 288.566406 249.304688 Z M 288.566406 249.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.035156 247.667969 C 291.035156 247.550781 290.941406 247.457031 290.824219 247.457031 C 290.707031 247.457031 290.613281 247.550781 290.613281 247.667969 C 290.613281 247.785156 290.707031 247.878906 290.824219 247.878906 C 290.941406 247.878906 291.035156 247.785156 291.035156 247.667969 Z M 291.035156 247.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.035156 250.675781 C 289.035156 250.558594 288.941406 250.464844 288.824219 250.464844 C 288.707031 250.464844 288.613281 250.558594 288.613281 250.675781 C 288.613281 250.792969 288.707031 250.886719 288.824219 250.886719 C 288.941406 250.886719 289.035156 250.792969 289.035156 250.675781 Z M 289.035156 250.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.722656 248.375 C 290.722656 248.257812 290.628906 248.164062 290.511719 248.164062 C 290.394531 248.164062 290.300781 248.257812 290.300781 248.375 C 290.300781 248.492188 290.394531 248.585938 290.511719 248.585938 C 290.628906 248.585938 290.722656 248.492188 290.722656 248.375 Z M 290.722656 248.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.140625 252.09375 C 289.140625 251.976562 289.046875 251.882812 288.929688 251.882812 C 288.8125 251.882812 288.71875 251.976562 288.71875 252.09375 C 288.71875 252.210938 288.8125 252.304688 288.929688 252.304688 C 289.046875 252.304688 289.140625 252.210938 289.140625 252.09375 Z M 289.140625 252.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.039062 249.964844 C 291.039062 249.847656 290.945312 249.753906 290.828125 249.753906 C 290.710938 249.753906 290.617188 249.847656 290.617188 249.964844 C 290.617188 250.082031 290.710938 250.175781 290.828125 250.175781 C 290.945312 250.175781 291.039062 250.082031 291.039062 249.964844 Z M 291.039062 249.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.085938 251.332031 C 293.085938 251.214844 292.992188 251.121094 292.875 251.121094 C 292.757812 251.121094 292.664062 251.214844 292.664062 251.332031 C 292.664062 251.449219 292.757812 251.542969 292.875 251.542969 C 292.992188 251.542969 293.085938 251.449219 293.085938 251.332031 Z M 293.085938 251.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.628906 250.035156 C 292.628906 249.917969 292.535156 249.824219 292.417969 249.824219 C 292.300781 249.824219 292.207031 249.917969 292.207031 250.035156 C 292.207031 250.152344 292.300781 250.246094 292.417969 250.246094 C 292.535156 250.246094 292.628906 250.152344 292.628906 250.035156 Z M 292.628906 250.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.136719 248.894531 C 295.136719 248.777344 295.042969 248.683594 294.925781 248.683594 C 294.808594 248.683594 294.714844 248.777344 294.714844 248.894531 C 294.714844 249.011719 294.808594 249.105469 294.925781 249.105469 C 295.042969 249.105469 295.136719 249.011719 295.136719 248.894531 Z M 295.136719 248.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.21875 248.382812 C 297.21875 248.265625 297.125 248.171875 297.007812 248.171875 C 296.890625 248.171875 296.796875 248.265625 296.796875 248.382812 C 296.796875 248.5 296.890625 248.59375 297.007812 248.59375 C 297.125 248.59375 297.21875 248.5 297.21875 248.382812 Z M 297.21875 248.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.640625 245.578125 C 293.640625 245.460938 293.546875 245.367188 293.429688 245.367188 C 293.3125 245.367188 293.21875 245.460938 293.21875 245.578125 C 293.21875 245.695312 293.3125 245.789062 293.429688 245.789062 C 293.546875 245.789062 293.640625 245.695312 293.640625 245.578125 Z M 293.640625 245.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.023438 246.765625 C 292.023438 246.648438 291.929688 246.554688 291.8125 246.554688 C 291.695312 246.554688 291.601562 246.648438 291.601562 246.765625 C 291.601562 246.882812 291.695312 246.976562 291.8125 246.976562 C 291.929688 246.976562 292.023438 246.882812 292.023438 246.765625 Z M 292.023438 246.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.203125 248.769531 C 288.203125 248.652344 288.109375 248.558594 287.992188 248.558594 C 287.875 248.558594 287.78125 248.652344 287.78125 248.769531 C 287.78125 248.886719 287.875 248.980469 287.992188 248.980469 C 288.109375 248.980469 288.203125 248.886719 288.203125 248.769531 Z M 288.203125 248.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.398438 250.25 C 286.398438 250.132812 286.304688 250.039062 286.1875 250.039062 C 286.070312 250.039062 285.976562 250.132812 285.976562 250.25 C 285.976562 250.367188 286.070312 250.460938 286.1875 250.460938 C 286.304688 250.460938 286.398438 250.367188 286.398438 250.25 Z M 286.398438 250.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.335938 248.652344 C 284.335938 248.535156 284.242188 248.441406 284.125 248.441406 C 284.007812 248.441406 283.914062 248.535156 283.914062 248.652344 C 283.914062 248.769531 284.007812 248.863281 284.125 248.863281 C 284.242188 248.863281 284.335938 248.769531 284.335938 248.652344 Z M 284.335938 248.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.050781 248.761719 C 286.050781 248.644531 285.957031 248.550781 285.839844 248.550781 C 285.722656 248.550781 285.628906 248.644531 285.628906 248.761719 C 285.628906 248.878906 285.722656 248.972656 285.839844 248.972656 C 285.957031 248.972656 286.050781 248.878906 286.050781 248.761719 Z M 286.050781 248.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.769531 250.859375 C 284.769531 250.742188 284.675781 250.648438 284.558594 250.648438 C 284.441406 250.648438 284.347656 250.742188 284.347656 250.859375 C 284.347656 250.976562 284.441406 251.070312 284.558594 251.070312 C 284.675781 251.070312 284.769531 250.976562 284.769531 250.859375 Z M 284.769531 250.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.675781 253.148438 C 284.675781 253.03125 284.582031 252.9375 284.464844 252.9375 C 284.347656 252.9375 284.253906 253.03125 284.253906 253.148438 C 284.253906 253.265625 284.347656 253.359375 284.464844 253.359375 C 284.582031 253.359375 284.675781 253.265625 284.675781 253.148438 Z M 284.675781 253.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.363281 247.644531 C 287.363281 247.527344 287.269531 247.433594 287.152344 247.433594 C 287.035156 247.433594 286.941406 247.527344 286.941406 247.644531 C 286.941406 247.761719 287.035156 247.855469 287.152344 247.855469 C 287.269531 247.855469 287.363281 247.761719 287.363281 247.644531 Z M 287.363281 247.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.558594 247.597656 C 288.558594 247.480469 288.464844 247.386719 288.347656 247.386719 C 288.230469 247.386719 288.136719 247.480469 288.136719 247.597656 C 288.136719 247.714844 288.230469 247.808594 288.347656 247.808594 C 288.464844 247.808594 288.558594 247.714844 288.558594 247.597656 Z M 288.558594 247.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.25 247.535156 C 287.25 247.417969 287.15625 247.324219 287.039062 247.324219 C 286.921875 247.324219 286.828125 247.417969 286.828125 247.535156 C 286.828125 247.652344 286.921875 247.746094 287.039062 247.746094 C 287.15625 247.746094 287.25 247.652344 287.25 247.535156 Z M 287.25 247.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.6875 245.871094 C 288.6875 245.753906 288.59375 245.660156 288.476562 245.660156 C 288.359375 245.660156 288.265625 245.753906 288.265625 245.871094 C 288.265625 245.988281 288.359375 246.082031 288.476562 246.082031 C 288.59375 246.082031 288.6875 245.988281 288.6875 245.871094 Z M 288.6875 245.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.765625 244.355469 C 287.765625 244.238281 287.671875 244.144531 287.554688 244.144531 C 287.4375 244.144531 287.34375 244.238281 287.34375 244.355469 C 287.34375 244.472656 287.4375 244.566406 287.554688 244.566406 C 287.671875 244.566406 287.765625 244.472656 287.765625 244.355469 Z M 287.765625 244.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.871094 242.9375 C 287.871094 242.820312 287.777344 242.726562 287.660156 242.726562 C 287.542969 242.726562 287.449219 242.820312 287.449219 242.9375 C 287.449219 243.054688 287.542969 243.148438 287.660156 243.148438 C 287.777344 243.148438 287.871094 243.054688 287.871094 242.9375 Z M 287.871094 242.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.476562 244.535156 C 285.476562 244.417969 285.382812 244.324219 285.265625 244.324219 C 285.148438 244.324219 285.054688 244.417969 285.054688 244.535156 C 285.054688 244.652344 285.148438 244.746094 285.265625 244.746094 C 285.382812 244.746094 285.476562 244.652344 285.476562 244.535156 Z M 285.476562 244.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.875 246.820312 C 284.875 246.703125 284.78125 246.609375 284.664062 246.609375 C 284.546875 246.609375 284.453125 246.703125 284.453125 246.820312 C 284.453125 246.9375 284.546875 247.03125 284.664062 247.03125 C 284.78125 247.03125 284.875 246.9375 284.875 246.820312 Z M 284.875 246.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.972656 249.382812 C 282.972656 249.265625 282.878906 249.171875 282.761719 249.171875 C 282.644531 249.171875 282.550781 249.265625 282.550781 249.382812 C 282.550781 249.5 282.644531 249.59375 282.761719 249.59375 C 282.878906 249.59375 282.972656 249.5 282.972656 249.382812 Z M 282.972656 249.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.511719 253.570312 C 281.511719 253.453125 281.417969 253.359375 281.300781 253.359375 C 281.183594 253.359375 281.089844 253.453125 281.089844 253.570312 C 281.089844 253.6875 281.183594 253.78125 281.300781 253.78125 C 281.417969 253.78125 281.511719 253.6875 281.511719 253.570312 Z M 281.511719 253.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.980469 255.378906 C 276.980469 255.261719 276.886719 255.167969 276.769531 255.167969 C 276.652344 255.167969 276.558594 255.261719 276.558594 255.378906 C 276.558594 255.496094 276.652344 255.589844 276.769531 255.589844 C 276.886719 255.589844 276.980469 255.496094 276.980469 255.378906 Z M 276.980469 255.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.417969 258.40625 C 278.417969 258.289062 278.324219 258.195312 278.207031 258.195312 C 278.089844 258.195312 277.996094 258.289062 277.996094 258.40625 C 277.996094 258.523438 278.089844 258.617188 278.207031 258.617188 C 278.324219 258.617188 278.417969 258.523438 278.417969 258.40625 Z M 278.417969 258.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.707031 259.28125 C 277.707031 259.164062 277.613281 259.070312 277.496094 259.070312 C 277.378906 259.070312 277.285156 259.164062 277.285156 259.28125 C 277.285156 259.398438 277.378906 259.492188 277.496094 259.492188 C 277.613281 259.492188 277.707031 259.398438 277.707031 259.28125 Z M 277.707031 259.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.96875 258.785156 C 274.96875 258.667969 274.875 258.574219 274.757812 258.574219 C 274.640625 258.574219 274.546875 258.667969 274.546875 258.785156 C 274.546875 258.902344 274.640625 258.996094 274.757812 258.996094 C 274.875 258.996094 274.96875 258.902344 274.96875 258.785156 Z M 274.96875 258.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.871094 260.207031 C 275.871094 260.089844 275.777344 259.996094 275.660156 259.996094 C 275.542969 259.996094 275.449219 260.089844 275.449219 260.207031 C 275.449219 260.324219 275.542969 260.417969 275.660156 260.417969 C 275.777344 260.417969 275.871094 260.324219 275.871094 260.207031 Z M 275.871094 260.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.644531 262 C 274.644531 261.882812 274.550781 261.789062 274.433594 261.789062 C 274.316406 261.789062 274.222656 261.882812 274.222656 262 C 274.222656 262.117188 274.316406 262.210938 274.433594 262.210938 C 274.550781 262.210938 274.644531 262.117188 274.644531 262 Z M 274.644531 262 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.6875 261.757812 C 271.6875 261.640625 271.59375 261.546875 271.476562 261.546875 C 271.359375 261.546875 271.265625 261.640625 271.265625 261.757812 C 271.265625 261.875 271.359375 261.96875 271.476562 261.96875 C 271.59375 261.96875 271.6875 261.875 271.6875 261.757812 Z M 271.6875 261.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.304688 260.902344 C 270.304688 260.785156 270.210938 260.691406 270.09375 260.691406 C 269.976562 260.691406 269.882812 260.785156 269.882812 260.902344 C 269.882812 261.019531 269.976562 261.113281 270.09375 261.113281 C 270.210938 261.113281 270.304688 261.019531 270.304688 260.902344 Z M 270.304688 260.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.242188 263.785156 C 270.242188 263.667969 270.148438 263.574219 270.03125 263.574219 C 269.914062 263.574219 269.820312 263.667969 269.820312 263.785156 C 269.820312 263.902344 269.914062 263.996094 270.03125 263.996094 C 270.148438 263.996094 270.242188 263.902344 270.242188 263.785156 Z M 270.242188 263.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.90625 262.503906 C 270.90625 262.386719 270.8125 262.292969 270.695312 262.292969 C 270.578125 262.292969 270.484375 262.386719 270.484375 262.503906 C 270.484375 262.621094 270.578125 262.714844 270.695312 262.714844 C 270.8125 262.714844 270.90625 262.621094 270.90625 262.503906 Z M 270.90625 262.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.230469 263.714844 C 271.230469 263.597656 271.136719 263.503906 271.019531 263.503906 C 270.902344 263.503906 270.808594 263.597656 270.808594 263.714844 C 270.808594 263.832031 270.902344 263.925781 271.019531 263.925781 C 271.136719 263.925781 271.230469 263.832031 271.230469 263.714844 Z M 271.230469 263.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.039062 260.898438 C 270.039062 260.78125 269.945312 260.6875 269.828125 260.6875 C 269.710938 260.6875 269.617188 260.78125 269.617188 260.898438 C 269.617188 261.015625 269.710938 261.109375 269.828125 261.109375 C 269.945312 261.109375 270.039062 261.015625 270.039062 260.898438 Z M 270.039062 260.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.050781 262.699219 C 271.050781 262.582031 270.957031 262.488281 270.839844 262.488281 C 270.722656 262.488281 270.628906 262.582031 270.628906 262.699219 C 270.628906 262.816406 270.722656 262.910156 270.839844 262.910156 C 270.957031 262.910156 271.050781 262.816406 271.050781 262.699219 Z M 271.050781 262.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.246094 262.84375 C 273.246094 262.726562 273.152344 262.632812 273.035156 262.632812 C 272.917969 262.632812 272.824219 262.726562 272.824219 262.84375 C 272.824219 262.960938 272.917969 263.054688 273.035156 263.054688 C 273.152344 263.054688 273.246094 262.960938 273.246094 262.84375 Z M 273.246094 262.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.367188 264.566406 C 276.367188 264.449219 276.273438 264.355469 276.15625 264.355469 C 276.039062 264.355469 275.945312 264.449219 275.945312 264.566406 C 275.945312 264.683594 276.039062 264.777344 276.15625 264.777344 C 276.273438 264.777344 276.367188 264.683594 276.367188 264.566406 Z M 276.367188 264.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.175781 264.996094 C 277.175781 264.878906 277.082031 264.785156 276.964844 264.785156 C 276.847656 264.785156 276.753906 264.878906 276.753906 264.996094 C 276.753906 265.113281 276.847656 265.207031 276.964844 265.207031 C 277.082031 265.207031 277.175781 265.113281 277.175781 264.996094 Z M 277.175781 264.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.496094 260.890625 C 276.496094 260.773438 276.402344 260.679688 276.285156 260.679688 C 276.167969 260.679688 276.074219 260.773438 276.074219 260.890625 C 276.074219 261.007812 276.167969 261.101562 276.285156 261.101562 C 276.402344 261.101562 276.496094 261.007812 276.496094 260.890625 Z M 276.496094 260.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.667969 258.027344 C 274.667969 257.910156 274.574219 257.816406 274.457031 257.816406 C 274.339844 257.816406 274.246094 257.910156 274.246094 258.027344 C 274.246094 258.144531 274.339844 258.238281 274.457031 258.238281 C 274.574219 258.238281 274.667969 258.144531 274.667969 258.027344 Z M 274.667969 258.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.585938 259.730469 C 274.585938 259.613281 274.492188 259.519531 274.375 259.519531 C 274.257812 259.519531 274.164062 259.613281 274.164062 259.730469 C 274.164062 259.847656 274.257812 259.941406 274.375 259.941406 C 274.492188 259.941406 274.585938 259.847656 274.585938 259.730469 Z M 274.585938 259.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.066406 257.628906 C 272.066406 257.511719 271.972656 257.417969 271.855469 257.417969 C 271.738281 257.417969 271.644531 257.511719 271.644531 257.628906 C 271.644531 257.746094 271.738281 257.839844 271.855469 257.839844 C 271.972656 257.839844 272.066406 257.746094 272.066406 257.628906 Z M 272.066406 257.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.519531 257.929688 C 275.519531 257.8125 275.425781 257.71875 275.308594 257.71875 C 275.191406 257.71875 275.097656 257.8125 275.097656 257.929688 C 275.097656 258.046875 275.191406 258.140625 275.308594 258.140625 C 275.425781 258.140625 275.519531 258.046875 275.519531 257.929688 Z M 275.519531 257.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.574219 259.203125 C 276.574219 259.085938 276.480469 258.992188 276.363281 258.992188 C 276.246094 258.992188 276.152344 259.085938 276.152344 259.203125 C 276.152344 259.320312 276.246094 259.414062 276.363281 259.414062 C 276.480469 259.414062 276.574219 259.320312 276.574219 259.203125 Z M 276.574219 259.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.027344 262.332031 C 275.027344 262.214844 274.933594 262.121094 274.816406 262.121094 C 274.699219 262.121094 274.605469 262.214844 274.605469 262.332031 C 274.605469 262.449219 274.699219 262.542969 274.816406 262.542969 C 274.933594 262.542969 275.027344 262.449219 275.027344 262.332031 Z M 275.027344 262.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.855469 262.574219 C 275.855469 262.457031 275.761719 262.363281 275.644531 262.363281 C 275.527344 262.363281 275.433594 262.457031 275.433594 262.574219 C 275.433594 262.691406 275.527344 262.785156 275.644531 262.785156 C 275.761719 262.785156 275.855469 262.691406 275.855469 262.574219 Z M 275.855469 262.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.964844 263.941406 C 272.964844 263.824219 272.871094 263.730469 272.753906 263.730469 C 272.636719 263.730469 272.542969 263.824219 272.542969 263.941406 C 272.542969 264.058594 272.636719 264.152344 272.753906 264.152344 C 272.871094 264.152344 272.964844 264.058594 272.964844 263.941406 Z M 272.964844 263.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.660156 265.363281 C 273.660156 265.246094 273.566406 265.152344 273.449219 265.152344 C 273.332031 265.152344 273.238281 265.246094 273.238281 265.363281 C 273.238281 265.480469 273.332031 265.574219 273.449219 265.574219 C 273.566406 265.574219 273.660156 265.480469 273.660156 265.363281 Z M 273.660156 265.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.324219 268.105469 C 274.324219 267.988281 274.230469 267.894531 274.113281 267.894531 C 273.996094 267.894531 273.902344 267.988281 273.902344 268.105469 C 273.902344 268.222656 273.996094 268.316406 274.113281 268.316406 C 274.230469 268.316406 274.324219 268.222656 274.324219 268.105469 Z M 274.324219 268.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.324219 262.863281 C 277.324219 262.746094 277.230469 262.652344 277.113281 262.652344 C 276.996094 262.652344 276.902344 262.746094 276.902344 262.863281 C 276.902344 262.980469 276.996094 263.074219 277.113281 263.074219 C 277.230469 263.074219 277.324219 262.980469 277.324219 262.863281 Z M 277.324219 262.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.238281 261.5625 C 280.238281 261.445312 280.144531 261.351562 280.027344 261.351562 C 279.910156 261.351562 279.816406 261.445312 279.816406 261.5625 C 279.816406 261.679688 279.910156 261.773438 280.027344 261.773438 C 280.144531 261.773438 280.238281 261.679688 280.238281 261.5625 Z M 280.238281 261.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.585938 259.613281 C 283.585938 259.496094 283.492188 259.402344 283.375 259.402344 C 283.257812 259.402344 283.164062 259.496094 283.164062 259.613281 C 283.164062 259.730469 283.257812 259.824219 283.375 259.824219 C 283.492188 259.824219 283.585938 259.730469 283.585938 259.613281 Z M 283.585938 259.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.191406 259.742188 C 287.191406 259.625 287.097656 259.53125 286.980469 259.53125 C 286.863281 259.53125 286.769531 259.625 286.769531 259.742188 C 286.769531 259.859375 286.863281 259.953125 286.980469 259.953125 C 287.097656 259.953125 287.191406 259.859375 287.191406 259.742188 Z M 287.191406 259.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.683594 261.710938 C 288.683594 261.59375 288.589844 261.5 288.472656 261.5 C 288.355469 261.5 288.261719 261.59375 288.261719 261.710938 C 288.261719 261.828125 288.355469 261.921875 288.472656 261.921875 C 288.589844 261.921875 288.683594 261.828125 288.683594 261.710938 Z M 288.683594 261.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.222656 262.023438 C 285.222656 261.90625 285.128906 261.8125 285.011719 261.8125 C 284.894531 261.8125 284.800781 261.90625 284.800781 262.023438 C 284.800781 262.140625 284.894531 262.234375 285.011719 262.234375 C 285.128906 262.234375 285.222656 262.140625 285.222656 262.023438 Z M 285.222656 262.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.539062 258.832031 C 291.539062 258.714844 291.445312 258.621094 291.328125 258.621094 C 291.210938 258.621094 291.117188 258.714844 291.117188 258.832031 C 291.117188 258.949219 291.210938 259.042969 291.328125 259.042969 C 291.445312 259.042969 291.539062 258.949219 291.539062 258.832031 Z M 291.539062 258.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.480469 257.691406 C 290.480469 257.574219 290.386719 257.480469 290.269531 257.480469 C 290.152344 257.480469 290.058594 257.574219 290.058594 257.691406 C 290.058594 257.808594 290.152344 257.902344 290.269531 257.902344 C 290.386719 257.902344 290.480469 257.808594 290.480469 257.691406 Z M 290.480469 257.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.460938 256.101562 C 289.460938 255.984375 289.367188 255.890625 289.25 255.890625 C 289.132812 255.890625 289.039062 255.984375 289.039062 256.101562 C 289.039062 256.21875 289.132812 256.3125 289.25 256.3125 C 289.367188 256.3125 289.460938 256.21875 289.460938 256.101562 Z M 289.460938 256.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.160156 255.867188 C 290.160156 255.75 290.066406 255.65625 289.949219 255.65625 C 289.832031 255.65625 289.738281 255.75 289.738281 255.867188 C 289.738281 255.984375 289.832031 256.078125 289.949219 256.078125 C 290.066406 256.078125 290.160156 255.984375 290.160156 255.867188 Z M 290.160156 255.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.148438 253.703125 C 290.148438 253.585938 290.054688 253.492188 289.9375 253.492188 C 289.820312 253.492188 289.726562 253.585938 289.726562 253.703125 C 289.726562 253.820312 289.820312 253.914062 289.9375 253.914062 C 290.054688 253.914062 290.148438 253.820312 290.148438 253.703125 Z M 290.148438 253.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.78125 254.210938 C 288.78125 254.09375 288.6875 254 288.570312 254 C 288.453125 254 288.359375 254.09375 288.359375 254.210938 C 288.359375 254.328125 288.453125 254.421875 288.570312 254.421875 C 288.6875 254.421875 288.78125 254.328125 288.78125 254.210938 Z M 288.78125 254.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.675781 252.613281 C 285.675781 252.496094 285.582031 252.402344 285.464844 252.402344 C 285.347656 252.402344 285.253906 252.496094 285.253906 252.613281 C 285.253906 252.730469 285.347656 252.824219 285.464844 252.824219 C 285.582031 252.824219 285.675781 252.730469 285.675781 252.613281 Z M 285.675781 252.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.171875 249.695312 C 284.171875 249.578125 284.078125 249.484375 283.960938 249.484375 C 283.84375 249.484375 283.75 249.578125 283.75 249.695312 C 283.75 249.8125 283.84375 249.90625 283.960938 249.90625 C 284.078125 249.90625 284.171875 249.8125 284.171875 249.695312 Z M 284.171875 249.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.898438 249.671875 C 283.898438 249.554688 283.804688 249.460938 283.6875 249.460938 C 283.570312 249.460938 283.476562 249.554688 283.476562 249.671875 C 283.476562 249.789062 283.570312 249.882812 283.6875 249.882812 C 283.804688 249.882812 283.898438 249.789062 283.898438 249.671875 Z M 283.898438 249.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.265625 250.488281 C 281.265625 250.371094 281.171875 250.277344 281.054688 250.277344 C 280.9375 250.277344 280.84375 250.371094 280.84375 250.488281 C 280.84375 250.605469 280.9375 250.699219 281.054688 250.699219 C 281.171875 250.699219 281.265625 250.605469 281.265625 250.488281 Z M 281.265625 250.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.75 251.148438 C 278.75 251.03125 278.65625 250.9375 278.539062 250.9375 C 278.421875 250.9375 278.328125 251.03125 278.328125 251.148438 C 278.328125 251.265625 278.421875 251.359375 278.539062 251.359375 C 278.65625 251.359375 278.75 251.265625 278.75 251.148438 Z M 278.75 251.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.109375 251.898438 C 283.109375 251.78125 283.015625 251.6875 282.898438 251.6875 C 282.78125 251.6875 282.6875 251.78125 282.6875 251.898438 C 282.6875 252.015625 282.78125 252.109375 282.898438 252.109375 C 283.015625 252.109375 283.109375 252.015625 283.109375 251.898438 Z M 283.109375 251.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.222656 254.996094 C 284.222656 254.878906 284.128906 254.785156 284.011719 254.785156 C 283.894531 254.785156 283.800781 254.878906 283.800781 254.996094 C 283.800781 255.113281 283.894531 255.207031 284.011719 255.207031 C 284.128906 255.207031 284.222656 255.113281 284.222656 254.996094 Z M 284.222656 254.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.859375 255.554688 C 284.859375 255.4375 284.765625 255.34375 284.648438 255.34375 C 284.53125 255.34375 284.4375 255.4375 284.4375 255.554688 C 284.4375 255.671875 284.53125 255.765625 284.648438 255.765625 C 284.765625 255.765625 284.859375 255.671875 284.859375 255.554688 Z M 284.859375 255.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.710938 255.492188 C 288.710938 255.375 288.617188 255.28125 288.5 255.28125 C 288.382812 255.28125 288.289062 255.375 288.289062 255.492188 C 288.289062 255.609375 288.382812 255.703125 288.5 255.703125 C 288.617188 255.703125 288.710938 255.609375 288.710938 255.492188 Z M 288.710938 255.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.386719 254.40625 C 287.386719 254.289062 287.292969 254.195312 287.175781 254.195312 C 287.058594 254.195312 286.964844 254.289062 286.964844 254.40625 C 286.964844 254.523438 287.058594 254.617188 287.175781 254.617188 C 287.292969 254.617188 287.386719 254.523438 287.386719 254.40625 Z M 287.386719 254.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.015625 254.457031 C 289.015625 254.339844 288.921875 254.246094 288.804688 254.246094 C 288.6875 254.246094 288.59375 254.339844 288.59375 254.457031 C 288.59375 254.574219 288.6875 254.667969 288.804688 254.667969 C 288.921875 254.667969 289.015625 254.574219 289.015625 254.457031 Z M 289.015625 254.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.5 254.730469 C 285.5 254.613281 285.40625 254.519531 285.289062 254.519531 C 285.171875 254.519531 285.078125 254.613281 285.078125 254.730469 C 285.078125 254.847656 285.171875 254.941406 285.289062 254.941406 C 285.40625 254.941406 285.5 254.847656 285.5 254.730469 Z M 285.5 254.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.136719 252.179688 C 288.136719 252.0625 288.042969 251.96875 287.925781 251.96875 C 287.808594 251.96875 287.714844 252.0625 287.714844 252.179688 C 287.714844 252.296875 287.808594 252.390625 287.925781 252.390625 C 288.042969 252.390625 288.136719 252.296875 288.136719 252.179688 Z M 288.136719 252.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.878906 254.15625 C 286.878906 254.039062 286.785156 253.945312 286.667969 253.945312 C 286.550781 253.945312 286.457031 254.039062 286.457031 254.15625 C 286.457031 254.273438 286.550781 254.367188 286.667969 254.367188 C 286.785156 254.367188 286.878906 254.273438 286.878906 254.15625 Z M 286.878906 254.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.207031 255.265625 C 286.207031 255.148438 286.113281 255.054688 285.996094 255.054688 C 285.878906 255.054688 285.785156 255.148438 285.785156 255.265625 C 285.785156 255.382812 285.878906 255.476562 285.996094 255.476562 C 286.113281 255.476562 286.207031 255.382812 286.207031 255.265625 Z M 286.207031 255.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.199219 256.269531 C 285.199219 256.152344 285.105469 256.058594 284.988281 256.058594 C 284.871094 256.058594 284.777344 256.152344 284.777344 256.269531 C 284.777344 256.386719 284.871094 256.480469 284.988281 256.480469 C 285.105469 256.480469 285.199219 256.386719 285.199219 256.269531 Z M 285.199219 256.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.222656 259.539062 C 284.222656 259.421875 284.128906 259.328125 284.011719 259.328125 C 283.894531 259.328125 283.800781 259.421875 283.800781 259.539062 C 283.800781 259.65625 283.894531 259.75 284.011719 259.75 C 284.128906 259.75 284.222656 259.65625 284.222656 259.539062 Z M 284.222656 259.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.527344 256.613281 C 284.527344 256.496094 284.433594 256.402344 284.316406 256.402344 C 284.199219 256.402344 284.105469 256.496094 284.105469 256.613281 C 284.105469 256.730469 284.199219 256.824219 284.316406 256.824219 C 284.433594 256.824219 284.527344 256.730469 284.527344 256.613281 Z M 284.527344 256.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.675781 254.902344 C 285.675781 254.785156 285.582031 254.691406 285.464844 254.691406 C 285.347656 254.691406 285.253906 254.785156 285.253906 254.902344 C 285.253906 255.019531 285.347656 255.113281 285.464844 255.113281 C 285.582031 255.113281 285.675781 255.019531 285.675781 254.902344 Z M 285.675781 254.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.703125 256.003906 C 284.703125 255.886719 284.609375 255.792969 284.492188 255.792969 C 284.375 255.792969 284.28125 255.886719 284.28125 256.003906 C 284.28125 256.121094 284.375 256.214844 284.492188 256.214844 C 284.609375 256.214844 284.703125 256.121094 284.703125 256.003906 Z M 284.703125 256.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.726562 256.394531 C 286.726562 256.277344 286.632812 256.183594 286.515625 256.183594 C 286.398438 256.183594 286.304688 256.277344 286.304688 256.394531 C 286.304688 256.511719 286.398438 256.605469 286.515625 256.605469 C 286.632812 256.605469 286.726562 256.511719 286.726562 256.394531 Z M 286.726562 256.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.417969 256.566406 C 289.417969 256.449219 289.324219 256.355469 289.207031 256.355469 C 289.089844 256.355469 288.996094 256.449219 288.996094 256.566406 C 288.996094 256.683594 289.089844 256.777344 289.207031 256.777344 C 289.324219 256.777344 289.417969 256.683594 289.417969 256.566406 Z M 289.417969 256.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.320312 257.960938 C 286.320312 257.84375 286.226562 257.75 286.109375 257.75 C 285.992188 257.75 285.898438 257.84375 285.898438 257.960938 C 285.898438 258.078125 285.992188 258.171875 286.109375 258.171875 C 286.226562 258.171875 286.320312 258.078125 286.320312 257.960938 Z M 286.320312 257.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.546875 255.875 C 283.546875 255.757812 283.453125 255.664062 283.335938 255.664062 C 283.21875 255.664062 283.125 255.757812 283.125 255.875 C 283.125 255.992188 283.21875 256.085938 283.335938 256.085938 C 283.453125 256.085938 283.546875 255.992188 283.546875 255.875 Z M 283.546875 255.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.335938 251.824219 C 286.335938 251.707031 286.242188 251.613281 286.125 251.613281 C 286.007812 251.613281 285.914062 251.707031 285.914062 251.824219 C 285.914062 251.941406 286.007812 252.035156 286.125 252.035156 C 286.242188 252.035156 286.335938 251.941406 286.335938 251.824219 Z M 286.335938 251.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.8125 252.398438 C 289.8125 252.28125 289.71875 252.1875 289.601562 252.1875 C 289.484375 252.1875 289.390625 252.28125 289.390625 252.398438 C 289.390625 252.515625 289.484375 252.609375 289.601562 252.609375 C 289.71875 252.609375 289.8125 252.515625 289.8125 252.398438 Z M 289.8125 252.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.925781 247.652344 C 293.925781 247.535156 293.832031 247.441406 293.714844 247.441406 C 293.597656 247.441406 293.503906 247.535156 293.503906 247.652344 C 293.503906 247.769531 293.597656 247.863281 293.714844 247.863281 C 293.832031 247.863281 293.925781 247.769531 293.925781 247.652344 Z M 293.925781 247.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.34375 247.34375 C 296.34375 247.226562 296.25 247.132812 296.132812 247.132812 C 296.015625 247.132812 295.921875 247.226562 295.921875 247.34375 C 295.921875 247.460938 296.015625 247.554688 296.132812 247.554688 C 296.25 247.554688 296.34375 247.460938 296.34375 247.34375 Z M 296.34375 247.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.605469 245.972656 C 294.605469 245.855469 294.511719 245.761719 294.394531 245.761719 C 294.277344 245.761719 294.183594 245.855469 294.183594 245.972656 C 294.183594 246.089844 294.277344 246.183594 294.394531 246.183594 C 294.511719 246.183594 294.605469 246.089844 294.605469 245.972656 Z M 294.605469 245.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.875 252.117188 C 292.875 252 292.78125 251.90625 292.664062 251.90625 C 292.546875 251.90625 292.453125 252 292.453125 252.117188 C 292.453125 252.234375 292.546875 252.328125 292.664062 252.328125 C 292.78125 252.328125 292.875 252.234375 292.875 252.117188 Z M 292.875 252.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.050781 252.519531 C 295.050781 252.402344 294.957031 252.308594 294.839844 252.308594 C 294.722656 252.308594 294.628906 252.402344 294.628906 252.519531 C 294.628906 252.636719 294.722656 252.730469 294.839844 252.730469 C 294.957031 252.730469 295.050781 252.636719 295.050781 252.519531 Z M 295.050781 252.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.234375 254.277344 C 296.234375 254.160156 296.140625 254.066406 296.023438 254.066406 C 295.90625 254.066406 295.8125 254.160156 295.8125 254.277344 C 295.8125 254.394531 295.90625 254.488281 296.023438 254.488281 C 296.140625 254.488281 296.234375 254.394531 296.234375 254.277344 Z M 296.234375 254.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.371094 252.097656 C 296.371094 251.980469 296.277344 251.886719 296.160156 251.886719 C 296.042969 251.886719 295.949219 251.980469 295.949219 252.097656 C 295.949219 252.214844 296.042969 252.308594 296.160156 252.308594 C 296.277344 252.308594 296.371094 252.214844 296.371094 252.097656 Z M 296.371094 252.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.335938 253.109375 C 295.335938 252.992188 295.242188 252.898438 295.125 252.898438 C 295.007812 252.898438 294.914062 252.992188 294.914062 253.109375 C 294.914062 253.226562 295.007812 253.320312 295.125 253.320312 C 295.242188 253.320312 295.335938 253.226562 295.335938 253.109375 Z M 295.335938 253.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.78125 256.714844 C 290.78125 256.597656 290.6875 256.503906 290.570312 256.503906 C 290.453125 256.503906 290.359375 256.597656 290.359375 256.714844 C 290.359375 256.832031 290.453125 256.925781 290.570312 256.925781 C 290.6875 256.925781 290.78125 256.832031 290.78125 256.714844 Z M 290.78125 256.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.457031 258.8125 C 290.457031 258.695312 290.363281 258.601562 290.246094 258.601562 C 290.128906 258.601562 290.035156 258.695312 290.035156 258.8125 C 290.035156 258.929688 290.128906 259.023438 290.246094 259.023438 C 290.363281 259.023438 290.457031 258.929688 290.457031 258.8125 Z M 290.457031 258.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.96875 257.140625 C 290.96875 257.023438 290.875 256.929688 290.757812 256.929688 C 290.640625 256.929688 290.546875 257.023438 290.546875 257.140625 C 290.546875 257.257812 290.640625 257.351562 290.757812 257.351562 C 290.875 257.351562 290.96875 257.257812 290.96875 257.140625 Z M 290.96875 257.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.0625 255.855469 C 290.0625 255.738281 289.96875 255.644531 289.851562 255.644531 C 289.734375 255.644531 289.640625 255.738281 289.640625 255.855469 C 289.640625 255.972656 289.734375 256.066406 289.851562 256.066406 C 289.96875 256.066406 290.0625 255.972656 290.0625 255.855469 Z M 290.0625 255.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.101562 258.386719 C 291.101562 258.269531 291.007812 258.175781 290.890625 258.175781 C 290.773438 258.175781 290.679688 258.269531 290.679688 258.386719 C 290.679688 258.503906 290.773438 258.597656 290.890625 258.597656 C 291.007812 258.597656 291.101562 258.503906 291.101562 258.386719 Z M 291.101562 258.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.394531 256.90625 C 290.394531 256.789062 290.300781 256.695312 290.183594 256.695312 C 290.066406 256.695312 289.972656 256.789062 289.972656 256.90625 C 289.972656 257.023438 290.066406 257.117188 290.183594 257.117188 C 290.300781 257.117188 290.394531 257.023438 290.394531 256.90625 Z M 290.394531 256.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.402344 257.65625 C 291.402344 257.539062 291.308594 257.445312 291.191406 257.445312 C 291.074219 257.445312 290.980469 257.539062 290.980469 257.65625 C 290.980469 257.773438 291.074219 257.867188 291.191406 257.867188 C 291.308594 257.867188 291.402344 257.773438 291.402344 257.65625 Z M 291.402344 257.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.480469 258.679688 C 291.480469 258.5625 291.386719 258.46875 291.269531 258.46875 C 291.152344 258.46875 291.058594 258.5625 291.058594 258.679688 C 291.058594 258.796875 291.152344 258.890625 291.269531 258.890625 C 291.386719 258.890625 291.480469 258.796875 291.480469 258.679688 Z M 291.480469 258.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.660156 258.019531 C 293.660156 257.902344 293.566406 257.808594 293.449219 257.808594 C 293.332031 257.808594 293.238281 257.902344 293.238281 258.019531 C 293.238281 258.136719 293.332031 258.230469 293.449219 258.230469 C 293.566406 258.230469 293.660156 258.136719 293.660156 258.019531 Z M 293.660156 258.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.582031 259.457031 C 292.582031 259.339844 292.488281 259.246094 292.371094 259.246094 C 292.253906 259.246094 292.160156 259.339844 292.160156 259.457031 C 292.160156 259.574219 292.253906 259.667969 292.371094 259.667969 C 292.488281 259.667969 292.582031 259.574219 292.582031 259.457031 Z M 292.582031 259.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.660156 261.050781 C 290.660156 260.933594 290.566406 260.839844 290.449219 260.839844 C 290.332031 260.839844 290.238281 260.933594 290.238281 261.050781 C 290.238281 261.167969 290.332031 261.261719 290.449219 261.261719 C 290.566406 261.261719 290.660156 261.167969 290.660156 261.050781 Z M 290.660156 261.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.070312 260.820312 C 293.070312 260.703125 292.976562 260.609375 292.859375 260.609375 C 292.742188 260.609375 292.648438 260.703125 292.648438 260.820312 C 292.648438 260.9375 292.742188 261.03125 292.859375 261.03125 C 292.976562 261.03125 293.070312 260.9375 293.070312 260.820312 Z M 293.070312 260.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.386719 263.621094 C 292.386719 263.503906 292.292969 263.410156 292.175781 263.410156 C 292.058594 263.410156 291.964844 263.503906 291.964844 263.621094 C 291.964844 263.738281 292.058594 263.832031 292.175781 263.832031 C 292.292969 263.832031 292.386719 263.738281 292.386719 263.621094 Z M 292.386719 263.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.308594 265.273438 C 291.308594 265.15625 291.214844 265.0625 291.097656 265.0625 C 290.980469 265.0625 290.886719 265.15625 290.886719 265.273438 C 290.886719 265.390625 290.980469 265.484375 291.097656 265.484375 C 291.214844 265.484375 291.308594 265.390625 291.308594 265.273438 Z M 291.308594 265.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.347656 268.789062 C 289.347656 268.671875 289.253906 268.578125 289.136719 268.578125 C 289.019531 268.578125 288.925781 268.671875 288.925781 268.789062 C 288.925781 268.90625 289.019531 269 289.136719 269 C 289.253906 269 289.347656 268.90625 289.347656 268.789062 Z M 289.347656 268.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.632812 269.71875 C 290.632812 269.601562 290.539062 269.507812 290.421875 269.507812 C 290.304688 269.507812 290.210938 269.601562 290.210938 269.71875 C 290.210938 269.835938 290.304688 269.929688 290.421875 269.929688 C 290.539062 269.929688 290.632812 269.835938 290.632812 269.71875 Z M 290.632812 269.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.699219 270.78125 C 287.699219 270.664062 287.605469 270.570312 287.488281 270.570312 C 287.371094 270.570312 287.277344 270.664062 287.277344 270.78125 C 287.277344 270.898438 287.371094 270.992188 287.488281 270.992188 C 287.605469 270.992188 287.699219 270.898438 287.699219 270.78125 Z M 287.699219 270.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.359375 274.4375 C 287.359375 274.320312 287.265625 274.226562 287.148438 274.226562 C 287.03125 274.226562 286.9375 274.320312 286.9375 274.4375 C 286.9375 274.554688 287.03125 274.648438 287.148438 274.648438 C 287.265625 274.648438 287.359375 274.554688 287.359375 274.4375 Z M 287.359375 274.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.660156 270.941406 C 288.660156 270.824219 288.566406 270.730469 288.449219 270.730469 C 288.332031 270.730469 288.238281 270.824219 288.238281 270.941406 C 288.238281 271.058594 288.332031 271.152344 288.449219 271.152344 C 288.566406 271.152344 288.660156 271.058594 288.660156 270.941406 Z M 288.660156 270.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.761719 272.039062 C 290.761719 271.921875 290.667969 271.828125 290.550781 271.828125 C 290.433594 271.828125 290.339844 271.921875 290.339844 272.039062 C 290.339844 272.15625 290.433594 272.25 290.550781 272.25 C 290.667969 272.25 290.761719 272.15625 290.761719 272.039062 Z M 290.761719 272.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.621094 273.488281 C 289.621094 273.371094 289.527344 273.277344 289.410156 273.277344 C 289.292969 273.277344 289.199219 273.371094 289.199219 273.488281 C 289.199219 273.605469 289.292969 273.699219 289.410156 273.699219 C 289.527344 273.699219 289.621094 273.605469 289.621094 273.488281 Z M 289.621094 273.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.726562 272.195312 C 291.726562 272.078125 291.632812 271.984375 291.515625 271.984375 C 291.398438 271.984375 291.304688 272.078125 291.304688 272.195312 C 291.304688 272.3125 291.398438 272.40625 291.515625 272.40625 C 291.632812 272.40625 291.726562 272.3125 291.726562 272.195312 Z M 291.726562 272.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.199219 269.125 C 288.199219 269.007812 288.105469 268.914062 287.988281 268.914062 C 287.871094 268.914062 287.777344 269.007812 287.777344 269.125 C 287.777344 269.242188 287.871094 269.335938 287.988281 269.335938 C 288.105469 269.335938 288.199219 269.242188 288.199219 269.125 Z M 288.199219 269.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.046875 269.652344 C 290.046875 269.535156 289.953125 269.441406 289.835938 269.441406 C 289.71875 269.441406 289.625 269.535156 289.625 269.652344 C 289.625 269.769531 289.71875 269.863281 289.835938 269.863281 C 289.953125 269.863281 290.046875 269.769531 290.046875 269.652344 Z M 290.046875 269.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288 269.269531 C 288 269.152344 287.90625 269.058594 287.789062 269.058594 C 287.671875 269.058594 287.578125 269.152344 287.578125 269.269531 C 287.578125 269.386719 287.671875 269.480469 287.789062 269.480469 C 287.90625 269.480469 288 269.386719 288 269.269531 Z M 288 269.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.972656 266.089844 C 289.972656 265.972656 289.878906 265.878906 289.761719 265.878906 C 289.644531 265.878906 289.550781 265.972656 289.550781 266.089844 C 289.550781 266.207031 289.644531 266.300781 289.761719 266.300781 C 289.878906 266.300781 289.972656 266.207031 289.972656 266.089844 Z M 289.972656 266.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.921875 263.285156 C 288.921875 263.167969 288.828125 263.074219 288.710938 263.074219 C 288.59375 263.074219 288.5 263.167969 288.5 263.285156 C 288.5 263.402344 288.59375 263.496094 288.710938 263.496094 C 288.828125 263.496094 288.921875 263.402344 288.921875 263.285156 Z M 288.921875 263.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.203125 264.332031 C 286.203125 264.214844 286.109375 264.121094 285.992188 264.121094 C 285.875 264.121094 285.78125 264.214844 285.78125 264.332031 C 285.78125 264.449219 285.875 264.542969 285.992188 264.542969 C 286.109375 264.542969 286.203125 264.449219 286.203125 264.332031 Z M 286.203125 264.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.746094 266.875 C 287.746094 266.757812 287.652344 266.664062 287.535156 266.664062 C 287.417969 266.664062 287.324219 266.757812 287.324219 266.875 C 287.324219 266.992188 287.417969 267.085938 287.535156 267.085938 C 287.652344 267.085938 287.746094 266.992188 287.746094 266.875 Z M 287.746094 266.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.59375 263.761719 C 288.59375 263.644531 288.5 263.550781 288.382812 263.550781 C 288.265625 263.550781 288.171875 263.644531 288.171875 263.761719 C 288.171875 263.878906 288.265625 263.972656 288.382812 263.972656 C 288.5 263.972656 288.59375 263.878906 288.59375 263.761719 Z M 288.59375 263.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.316406 265.867188 C 290.316406 265.75 290.222656 265.65625 290.105469 265.65625 C 289.988281 265.65625 289.894531 265.75 289.894531 265.867188 C 289.894531 265.984375 289.988281 266.078125 290.105469 266.078125 C 290.222656 266.078125 290.316406 265.984375 290.316406 265.867188 Z M 290.316406 265.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.089844 267.347656 C 287.089844 267.230469 286.996094 267.136719 286.878906 267.136719 C 286.761719 267.136719 286.667969 267.230469 286.667969 267.347656 C 286.667969 267.464844 286.761719 267.558594 286.878906 267.558594 C 286.996094 267.558594 287.089844 267.464844 287.089844 267.347656 Z M 287.089844 267.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.925781 268.25 C 287.925781 268.132812 287.832031 268.039062 287.714844 268.039062 C 287.597656 268.039062 287.503906 268.132812 287.503906 268.25 C 287.503906 268.367188 287.597656 268.460938 287.714844 268.460938 C 287.832031 268.460938 287.925781 268.367188 287.925781 268.25 Z M 287.925781 268.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.253906 266.519531 C 288.253906 266.402344 288.160156 266.308594 288.042969 266.308594 C 287.925781 266.308594 287.832031 266.402344 287.832031 266.519531 C 287.832031 266.636719 287.925781 266.730469 288.042969 266.730469 C 288.160156 266.730469 288.253906 266.636719 288.253906 266.519531 Z M 288.253906 266.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.1875 266.0625 C 289.1875 265.945312 289.09375 265.851562 288.976562 265.851562 C 288.859375 265.851562 288.765625 265.945312 288.765625 266.0625 C 288.765625 266.179688 288.859375 266.273438 288.976562 266.273438 C 289.09375 266.273438 289.1875 266.179688 289.1875 266.0625 Z M 289.1875 266.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.320312 263.617188 C 291.320312 263.5 291.226562 263.40625 291.109375 263.40625 C 290.992188 263.40625 290.898438 263.5 290.898438 263.617188 C 290.898438 263.734375 290.992188 263.828125 291.109375 263.828125 C 291.226562 263.828125 291.320312 263.734375 291.320312 263.617188 Z M 291.320312 263.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.484375 263.152344 C 289.484375 263.035156 289.390625 262.941406 289.273438 262.941406 C 289.15625 262.941406 289.0625 263.035156 289.0625 263.152344 C 289.0625 263.269531 289.15625 263.363281 289.273438 263.363281 C 289.390625 263.363281 289.484375 263.269531 289.484375 263.152344 Z M 289.484375 263.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.875 261.5 C 289.875 261.382812 289.78125 261.289062 289.664062 261.289062 C 289.546875 261.289062 289.453125 261.382812 289.453125 261.5 C 289.453125 261.617188 289.546875 261.710938 289.664062 261.710938 C 289.78125 261.710938 289.875 261.617188 289.875 261.5 Z M 289.875 261.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.367188 262.054688 C 292.367188 261.9375 292.273438 261.84375 292.15625 261.84375 C 292.039062 261.84375 291.945312 261.9375 291.945312 262.054688 C 291.945312 262.171875 292.039062 262.265625 292.15625 262.265625 C 292.273438 262.265625 292.367188 262.171875 292.367188 262.054688 Z M 292.367188 262.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.796875 257.375 C 291.796875 257.257812 291.703125 257.164062 291.585938 257.164062 C 291.46875 257.164062 291.375 257.257812 291.375 257.375 C 291.375 257.492188 291.46875 257.585938 291.585938 257.585938 C 291.703125 257.585938 291.796875 257.492188 291.796875 257.375 Z M 291.796875 257.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.066406 255.722656 C 290.066406 255.605469 289.972656 255.511719 289.855469 255.511719 C 289.738281 255.511719 289.644531 255.605469 289.644531 255.722656 C 289.644531 255.839844 289.738281 255.933594 289.855469 255.933594 C 289.972656 255.933594 290.066406 255.839844 290.066406 255.722656 Z M 290.066406 255.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.675781 253.136719 C 290.675781 253.019531 290.582031 252.925781 290.464844 252.925781 C 290.347656 252.925781 290.253906 253.019531 290.253906 253.136719 C 290.253906 253.253906 290.347656 253.347656 290.464844 253.347656 C 290.582031 253.347656 290.675781 253.253906 290.675781 253.136719 Z M 290.675781 253.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.804688 256.105469 C 293.804688 255.988281 293.710938 255.894531 293.59375 255.894531 C 293.476562 255.894531 293.382812 255.988281 293.382812 256.105469 C 293.382812 256.222656 293.476562 256.316406 293.59375 256.316406 C 293.710938 256.316406 293.804688 256.222656 293.804688 256.105469 Z M 293.804688 256.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.9375 254.484375 C 293.9375 254.367188 293.84375 254.273438 293.726562 254.273438 C 293.609375 254.273438 293.515625 254.367188 293.515625 254.484375 C 293.515625 254.601562 293.609375 254.695312 293.726562 254.695312 C 293.84375 254.695312 293.9375 254.601562 293.9375 254.484375 Z M 293.9375 254.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.273438 256.324219 C 292.273438 256.207031 292.179688 256.113281 292.0625 256.113281 C 291.945312 256.113281 291.851562 256.207031 291.851562 256.324219 C 291.851562 256.441406 291.945312 256.535156 292.0625 256.535156 C 292.179688 256.535156 292.273438 256.441406 292.273438 256.324219 Z M 292.273438 256.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.136719 253.371094 C 290.136719 253.253906 290.042969 253.160156 289.925781 253.160156 C 289.808594 253.160156 289.714844 253.253906 289.714844 253.371094 C 289.714844 253.488281 289.808594 253.582031 289.925781 253.582031 C 290.042969 253.582031 290.136719 253.488281 290.136719 253.371094 Z M 290.136719 253.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.058594 253.144531 C 292.058594 253.027344 291.964844 252.933594 291.847656 252.933594 C 291.730469 252.933594 291.636719 253.027344 291.636719 253.144531 C 291.636719 253.261719 291.730469 253.355469 291.847656 253.355469 C 291.964844 253.355469 292.058594 253.261719 292.058594 253.144531 Z M 292.058594 253.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.078125 251.976562 C 296.078125 251.859375 295.984375 251.765625 295.867188 251.765625 C 295.75 251.765625 295.65625 251.859375 295.65625 251.976562 C 295.65625 252.09375 295.75 252.1875 295.867188 252.1875 C 295.984375 252.1875 296.078125 252.09375 296.078125 251.976562 Z M 296.078125 251.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.875 253.210938 C 295.875 253.09375 295.78125 253 295.664062 253 C 295.546875 253 295.453125 253.09375 295.453125 253.210938 C 295.453125 253.328125 295.546875 253.421875 295.664062 253.421875 C 295.78125 253.421875 295.875 253.328125 295.875 253.210938 Z M 295.875 253.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.980469 257.066406 C 297.980469 256.949219 297.886719 256.855469 297.769531 256.855469 C 297.652344 256.855469 297.558594 256.949219 297.558594 257.066406 C 297.558594 257.183594 297.652344 257.277344 297.769531 257.277344 C 297.886719 257.277344 297.980469 257.183594 297.980469 257.066406 Z M 297.980469 257.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.304688 258.238281 C 298.304688 258.121094 298.210938 258.027344 298.09375 258.027344 C 297.976562 258.027344 297.882812 258.121094 297.882812 258.238281 C 297.882812 258.355469 297.976562 258.449219 298.09375 258.449219 C 298.210938 258.449219 298.304688 258.355469 298.304688 258.238281 Z M 298.304688 258.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.214844 258.589844 C 299.214844 258.472656 299.121094 258.378906 299.003906 258.378906 C 298.886719 258.378906 298.792969 258.472656 298.792969 258.589844 C 298.792969 258.707031 298.886719 258.800781 299.003906 258.800781 C 299.121094 258.800781 299.214844 258.707031 299.214844 258.589844 Z M 299.214844 258.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.523438 259.957031 C 304.523438 259.839844 304.429688 259.746094 304.3125 259.746094 C 304.195312 259.746094 304.101562 259.839844 304.101562 259.957031 C 304.101562 260.074219 304.195312 260.167969 304.3125 260.167969 C 304.429688 260.167969 304.523438 260.074219 304.523438 259.957031 Z M 304.523438 259.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.324219 257.050781 C 303.324219 256.933594 303.230469 256.839844 303.113281 256.839844 C 302.996094 256.839844 302.902344 256.933594 302.902344 257.050781 C 302.902344 257.167969 302.996094 257.261719 303.113281 257.261719 C 303.230469 257.261719 303.324219 257.167969 303.324219 257.050781 Z M 303.324219 257.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.789062 257.203125 C 301.789062 257.085938 301.695312 256.992188 301.578125 256.992188 C 301.460938 256.992188 301.367188 257.085938 301.367188 257.203125 C 301.367188 257.320312 301.460938 257.414062 301.578125 257.414062 C 301.695312 257.414062 301.789062 257.320312 301.789062 257.203125 Z M 301.789062 257.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.347656 257.902344 C 300.347656 257.785156 300.253906 257.691406 300.136719 257.691406 C 300.019531 257.691406 299.925781 257.785156 299.925781 257.902344 C 299.925781 258.019531 300.019531 258.113281 300.136719 258.113281 C 300.253906 258.113281 300.347656 258.019531 300.347656 257.902344 Z M 300.347656 257.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.761719 253.738281 C 298.761719 253.621094 298.667969 253.527344 298.550781 253.527344 C 298.433594 253.527344 298.339844 253.621094 298.339844 253.738281 C 298.339844 253.855469 298.433594 253.949219 298.550781 253.949219 C 298.667969 253.949219 298.761719 253.855469 298.761719 253.738281 Z M 298.761719 253.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.148438 254 C 301.148438 253.882812 301.054688 253.789062 300.9375 253.789062 C 300.820312 253.789062 300.726562 253.882812 300.726562 254 C 300.726562 254.117188 300.820312 254.210938 300.9375 254.210938 C 301.054688 254.210938 301.148438 254.117188 301.148438 254 Z M 301.148438 254 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.726562 253.808594 C 302.726562 253.691406 302.632812 253.597656 302.515625 253.597656 C 302.398438 253.597656 302.304688 253.691406 302.304688 253.808594 C 302.304688 253.925781 302.398438 254.019531 302.515625 254.019531 C 302.632812 254.019531 302.726562 253.925781 302.726562 253.808594 Z M 302.726562 253.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.789062 250.085938 C 304.789062 249.96875 304.695312 249.875 304.578125 249.875 C 304.460938 249.875 304.367188 249.96875 304.367188 250.085938 C 304.367188 250.203125 304.460938 250.296875 304.578125 250.296875 C 304.695312 250.296875 304.789062 250.203125 304.789062 250.085938 Z M 304.789062 250.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.078125 253.597656 C 305.078125 253.480469 304.984375 253.386719 304.867188 253.386719 C 304.75 253.386719 304.65625 253.480469 304.65625 253.597656 C 304.65625 253.714844 304.75 253.808594 304.867188 253.808594 C 304.984375 253.808594 305.078125 253.714844 305.078125 253.597656 Z M 305.078125 253.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.484375 255.691406 C 307.484375 255.574219 307.390625 255.480469 307.273438 255.480469 C 307.15625 255.480469 307.0625 255.574219 307.0625 255.691406 C 307.0625 255.808594 307.15625 255.902344 307.273438 255.902344 C 307.390625 255.902344 307.484375 255.808594 307.484375 255.691406 Z M 307.484375 255.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.996094 253.171875 C 308.996094 253.054688 308.902344 252.960938 308.785156 252.960938 C 308.667969 252.960938 308.574219 253.054688 308.574219 253.171875 C 308.574219 253.289062 308.667969 253.382812 308.785156 253.382812 C 308.902344 253.382812 308.996094 253.289062 308.996094 253.171875 Z M 308.996094 253.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.671875 249.863281 C 310.671875 249.746094 310.578125 249.652344 310.460938 249.652344 C 310.34375 249.652344 310.25 249.746094 310.25 249.863281 C 310.25 249.980469 310.34375 250.074219 310.460938 250.074219 C 310.578125 250.074219 310.671875 249.980469 310.671875 249.863281 Z M 310.671875 249.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.199219 249.609375 C 312.199219 249.492188 312.105469 249.398438 311.988281 249.398438 C 311.871094 249.398438 311.777344 249.492188 311.777344 249.609375 C 311.777344 249.726562 311.871094 249.820312 311.988281 249.820312 C 312.105469 249.820312 312.199219 249.726562 312.199219 249.609375 Z M 312.199219 249.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.449219 250.394531 C 314.449219 250.277344 314.355469 250.183594 314.238281 250.183594 C 314.121094 250.183594 314.027344 250.277344 314.027344 250.394531 C 314.027344 250.511719 314.121094 250.605469 314.238281 250.605469 C 314.355469 250.605469 314.449219 250.511719 314.449219 250.394531 Z M 314.449219 250.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.113281 249.992188 C 317.113281 249.875 317.019531 249.78125 316.902344 249.78125 C 316.785156 249.78125 316.691406 249.875 316.691406 249.992188 C 316.691406 250.109375 316.785156 250.203125 316.902344 250.203125 C 317.019531 250.203125 317.113281 250.109375 317.113281 249.992188 Z M 317.113281 249.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.027344 248.839844 C 317.027344 248.722656 316.933594 248.628906 316.816406 248.628906 C 316.699219 248.628906 316.605469 248.722656 316.605469 248.839844 C 316.605469 248.957031 316.699219 249.050781 316.816406 249.050781 C 316.933594 249.050781 317.027344 248.957031 317.027344 248.839844 Z M 317.027344 248.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.386719 251.914062 C 321.386719 251.796875 321.292969 251.703125 321.175781 251.703125 C 321.058594 251.703125 320.964844 251.796875 320.964844 251.914062 C 320.964844 252.03125 321.058594 252.125 321.175781 252.125 C 321.292969 252.125 321.386719 252.03125 321.386719 251.914062 Z M 321.386719 251.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.421875 253.617188 C 325.421875 253.5 325.328125 253.40625 325.210938 253.40625 C 325.09375 253.40625 325 253.5 325 253.617188 C 325 253.734375 325.09375 253.828125 325.210938 253.828125 C 325.328125 253.828125 325.421875 253.734375 325.421875 253.617188 Z M 325.421875 253.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.523438 253.515625 C 325.523438 253.398438 325.429688 253.304688 325.3125 253.304688 C 325.195312 253.304688 325.101562 253.398438 325.101562 253.515625 C 325.101562 253.632812 325.195312 253.726562 325.3125 253.726562 C 325.429688 253.726562 325.523438 253.632812 325.523438 253.515625 Z M 325.523438 253.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.914062 256.125 C 323.914062 256.007812 323.820312 255.914062 323.703125 255.914062 C 323.585938 255.914062 323.492188 256.007812 323.492188 256.125 C 323.492188 256.242188 323.585938 256.335938 323.703125 256.335938 C 323.820312 256.335938 323.914062 256.242188 323.914062 256.125 Z M 323.914062 256.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.410156 256.398438 C 323.410156 256.28125 323.316406 256.1875 323.199219 256.1875 C 323.082031 256.1875 322.988281 256.28125 322.988281 256.398438 C 322.988281 256.515625 323.082031 256.609375 323.199219 256.609375 C 323.316406 256.609375 323.410156 256.515625 323.410156 256.398438 Z M 323.410156 256.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.710938 256.109375 C 321.710938 255.992188 321.617188 255.898438 321.5 255.898438 C 321.382812 255.898438 321.289062 255.992188 321.289062 256.109375 C 321.289062 256.226562 321.382812 256.320312 321.5 256.320312 C 321.617188 256.320312 321.710938 256.226562 321.710938 256.109375 Z M 321.710938 256.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.496094 255.5625 C 321.496094 255.445312 321.402344 255.351562 321.285156 255.351562 C 321.167969 255.351562 321.074219 255.445312 321.074219 255.5625 C 321.074219 255.679688 321.167969 255.773438 321.285156 255.773438 C 321.402344 255.773438 321.496094 255.679688 321.496094 255.5625 Z M 321.496094 255.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.238281 254.453125 C 324.238281 254.335938 324.144531 254.242188 324.027344 254.242188 C 323.910156 254.242188 323.816406 254.335938 323.816406 254.453125 C 323.816406 254.570312 323.910156 254.664062 324.027344 254.664062 C 324.144531 254.664062 324.238281 254.570312 324.238281 254.453125 Z M 324.238281 254.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.234375 251.125 C 324.234375 251.007812 324.140625 250.914062 324.023438 250.914062 C 323.90625 250.914062 323.8125 251.007812 323.8125 251.125 C 323.8125 251.242188 323.90625 251.335938 324.023438 251.335938 C 324.140625 251.335938 324.234375 251.242188 324.234375 251.125 Z M 324.234375 251.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.015625 244.941406 C 326.015625 244.824219 325.921875 244.730469 325.804688 244.730469 C 325.6875 244.730469 325.59375 244.824219 325.59375 244.941406 C 325.59375 245.058594 325.6875 245.152344 325.804688 245.152344 C 325.921875 245.152344 326.015625 245.058594 326.015625 244.941406 Z M 326.015625 244.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.4375 242.214844 C 325.4375 242.097656 325.34375 242.003906 325.226562 242.003906 C 325.109375 242.003906 325.015625 242.097656 325.015625 242.214844 C 325.015625 242.332031 325.109375 242.425781 325.226562 242.425781 C 325.34375 242.425781 325.4375 242.332031 325.4375 242.214844 Z M 325.4375 242.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.453125 241.136719 C 327.453125 241.019531 327.359375 240.925781 327.242188 240.925781 C 327.125 240.925781 327.03125 241.019531 327.03125 241.136719 C 327.03125 241.253906 327.125 241.347656 327.242188 241.347656 C 327.359375 241.347656 327.453125 241.253906 327.453125 241.136719 Z M 327.453125 241.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.488281 239.226562 C 325.488281 239.109375 325.394531 239.015625 325.277344 239.015625 C 325.160156 239.015625 325.066406 239.109375 325.066406 239.226562 C 325.066406 239.34375 325.160156 239.4375 325.277344 239.4375 C 325.394531 239.4375 325.488281 239.34375 325.488281 239.226562 Z M 325.488281 239.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.191406 238.570312 C 325.191406 238.453125 325.097656 238.359375 324.980469 238.359375 C 324.863281 238.359375 324.769531 238.453125 324.769531 238.570312 C 324.769531 238.6875 324.863281 238.78125 324.980469 238.78125 C 325.097656 238.78125 325.191406 238.6875 325.191406 238.570312 Z M 325.191406 238.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 320.527344 238.125 C 320.527344 238.007812 320.433594 237.914062 320.316406 237.914062 C 320.199219 237.914062 320.105469 238.007812 320.105469 238.125 C 320.105469 238.242188 320.199219 238.335938 320.316406 238.335938 C 320.433594 238.335938 320.527344 238.242188 320.527344 238.125 Z M 320.527344 238.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 319.808594 238.566406 C 319.808594 238.449219 319.714844 238.355469 319.597656 238.355469 C 319.480469 238.355469 319.386719 238.449219 319.386719 238.566406 C 319.386719 238.683594 319.480469 238.777344 319.597656 238.777344 C 319.714844 238.777344 319.808594 238.683594 319.808594 238.566406 Z M 319.808594 238.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.5625 239.878906 C 321.5625 239.761719 321.46875 239.667969 321.351562 239.667969 C 321.234375 239.667969 321.140625 239.761719 321.140625 239.878906 C 321.140625 239.996094 321.234375 240.089844 321.351562 240.089844 C 321.46875 240.089844 321.5625 239.996094 321.5625 239.878906 Z M 321.5625 239.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 318.132812 236.027344 C 318.132812 235.910156 318.039062 235.816406 317.921875 235.816406 C 317.804688 235.816406 317.710938 235.910156 317.710938 236.027344 C 317.710938 236.144531 317.804688 236.238281 317.921875 236.238281 C 318.039062 236.238281 318.132812 236.144531 318.132812 236.027344 Z M 318.132812 236.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.746094 236.019531 C 316.746094 235.902344 316.652344 235.808594 316.535156 235.808594 C 316.417969 235.808594 316.324219 235.902344 316.324219 236.019531 C 316.324219 236.136719 316.417969 236.230469 316.535156 236.230469 C 316.652344 236.230469 316.746094 236.136719 316.746094 236.019531 Z M 316.746094 236.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.953125 232.800781 C 313.953125 232.683594 313.859375 232.589844 313.742188 232.589844 C 313.625 232.589844 313.53125 232.683594 313.53125 232.800781 C 313.53125 232.917969 313.625 233.011719 313.742188 233.011719 C 313.859375 233.011719 313.953125 232.917969 313.953125 232.800781 Z M 313.953125 232.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.164062 233.328125 C 317.164062 233.210938 317.070312 233.117188 316.953125 233.117188 C 316.835938 233.117188 316.742188 233.210938 316.742188 233.328125 C 316.742188 233.445312 316.835938 233.539062 316.953125 233.539062 C 317.070312 233.539062 317.164062 233.445312 317.164062 233.328125 Z M 317.164062 233.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.734375 236.242188 C 317.734375 236.125 317.640625 236.03125 317.523438 236.03125 C 317.40625 236.03125 317.3125 236.125 317.3125 236.242188 C 317.3125 236.359375 317.40625 236.453125 317.523438 236.453125 C 317.640625 236.453125 317.734375 236.359375 317.734375 236.242188 Z M 317.734375 236.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 318.339844 235.09375 C 318.339844 234.976562 318.246094 234.882812 318.128906 234.882812 C 318.011719 234.882812 317.917969 234.976562 317.917969 235.09375 C 317.917969 235.210938 318.011719 235.304688 318.128906 235.304688 C 318.246094 235.304688 318.339844 235.210938 318.339844 235.09375 Z M 318.339844 235.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 318.632812 236.171875 C 318.632812 236.054688 318.539062 235.960938 318.421875 235.960938 C 318.304688 235.960938 318.210938 236.054688 318.210938 236.171875 C 318.210938 236.289062 318.304688 236.382812 318.421875 236.382812 C 318.539062 236.382812 318.632812 236.289062 318.632812 236.171875 Z M 318.632812 236.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.074219 240.417969 C 323.074219 240.300781 322.980469 240.207031 322.863281 240.207031 C 322.746094 240.207031 322.652344 240.300781 322.652344 240.417969 C 322.652344 240.535156 322.746094 240.628906 322.863281 240.628906 C 322.980469 240.628906 323.074219 240.535156 323.074219 240.417969 Z M 323.074219 240.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.777344 239.972656 C 323.777344 239.855469 323.683594 239.761719 323.566406 239.761719 C 323.449219 239.761719 323.355469 239.855469 323.355469 239.972656 C 323.355469 240.089844 323.449219 240.183594 323.566406 240.183594 C 323.683594 240.183594 323.777344 240.089844 323.777344 239.972656 Z M 323.777344 239.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 320.503906 238.886719 C 320.503906 238.769531 320.410156 238.675781 320.292969 238.675781 C 320.175781 238.675781 320.082031 238.769531 320.082031 238.886719 C 320.082031 239.003906 320.175781 239.097656 320.292969 239.097656 C 320.410156 239.097656 320.503906 239.003906 320.503906 238.886719 Z M 320.503906 238.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.839844 238.046875 C 316.839844 237.929688 316.746094 237.835938 316.628906 237.835938 C 316.511719 237.835938 316.417969 237.929688 316.417969 238.046875 C 316.417969 238.164062 316.511719 238.257812 316.628906 238.257812 C 316.746094 238.257812 316.839844 238.164062 316.839844 238.046875 Z M 316.839844 238.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 319.28125 239.84375 C 319.28125 239.726562 319.1875 239.632812 319.070312 239.632812 C 318.953125 239.632812 318.859375 239.726562 318.859375 239.84375 C 318.859375 239.960938 318.953125 240.054688 319.070312 240.054688 C 319.1875 240.054688 319.28125 239.960938 319.28125 239.84375 Z M 319.28125 239.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 319.839844 239.765625 C 319.839844 239.648438 319.746094 239.554688 319.628906 239.554688 C 319.511719 239.554688 319.417969 239.648438 319.417969 239.765625 C 319.417969 239.882812 319.511719 239.976562 319.628906 239.976562 C 319.746094 239.976562 319.839844 239.882812 319.839844 239.765625 Z M 319.839844 239.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 317.632812 239.820312 C 317.632812 239.703125 317.539062 239.609375 317.421875 239.609375 C 317.304688 239.609375 317.210938 239.703125 317.210938 239.820312 C 317.210938 239.9375 317.304688 240.03125 317.421875 240.03125 C 317.539062 240.03125 317.632812 239.9375 317.632812 239.820312 Z M 317.632812 239.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.796875 243.464844 C 324.796875 243.347656 324.703125 243.253906 324.585938 243.253906 C 324.46875 243.253906 324.375 243.347656 324.375 243.464844 C 324.375 243.582031 324.46875 243.675781 324.585938 243.675781 C 324.703125 243.675781 324.796875 243.582031 324.796875 243.464844 Z M 324.796875 243.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.53125 244.316406 C 324.53125 244.199219 324.4375 244.105469 324.320312 244.105469 C 324.203125 244.105469 324.109375 244.199219 324.109375 244.316406 C 324.109375 244.433594 324.203125 244.527344 324.320312 244.527344 C 324.4375 244.527344 324.53125 244.433594 324.53125 244.316406 Z M 324.53125 244.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.292969 242.390625 C 325.292969 242.273438 325.199219 242.179688 325.082031 242.179688 C 324.964844 242.179688 324.871094 242.273438 324.871094 242.390625 C 324.871094 242.507812 324.964844 242.601562 325.082031 242.601562 C 325.199219 242.601562 325.292969 242.507812 325.292969 242.390625 Z M 325.292969 242.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.519531 245.089844 C 324.519531 244.972656 324.425781 244.878906 324.308594 244.878906 C 324.191406 244.878906 324.097656 244.972656 324.097656 245.089844 C 324.097656 245.207031 324.191406 245.300781 324.308594 245.300781 C 324.425781 245.300781 324.519531 245.207031 324.519531 245.089844 Z M 324.519531 245.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.914062 246.566406 C 322.914062 246.449219 322.820312 246.355469 322.703125 246.355469 C 322.585938 246.355469 322.492188 246.449219 322.492188 246.566406 C 322.492188 246.683594 322.585938 246.777344 322.703125 246.777344 C 322.820312 246.777344 322.914062 246.683594 322.914062 246.566406 Z M 322.914062 246.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 320.710938 248.554688 C 320.710938 248.4375 320.617188 248.34375 320.5 248.34375 C 320.382812 248.34375 320.289062 248.4375 320.289062 248.554688 C 320.289062 248.671875 320.382812 248.765625 320.5 248.765625 C 320.617188 248.765625 320.710938 248.671875 320.710938 248.554688 Z M 320.710938 248.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.21875 251.164062 C 323.21875 251.046875 323.125 250.953125 323.007812 250.953125 C 322.890625 250.953125 322.796875 251.046875 322.796875 251.164062 C 322.796875 251.28125 322.890625 251.375 323.007812 251.375 C 323.125 251.375 323.21875 251.28125 323.21875 251.164062 Z M 323.21875 251.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 320.671875 251.257812 C 320.671875 251.140625 320.578125 251.046875 320.460938 251.046875 C 320.34375 251.046875 320.25 251.140625 320.25 251.257812 C 320.25 251.375 320.34375 251.46875 320.460938 251.46875 C 320.578125 251.46875 320.671875 251.375 320.671875 251.257812 Z M 320.671875 251.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.625 250.160156 C 321.625 250.042969 321.53125 249.949219 321.414062 249.949219 C 321.296875 249.949219 321.203125 250.042969 321.203125 250.160156 C 321.203125 250.277344 321.296875 250.371094 321.414062 250.371094 C 321.53125 250.371094 321.625 250.277344 321.625 250.160156 Z M 321.625 250.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.882812 250 C 322.882812 249.882812 322.789062 249.789062 322.671875 249.789062 C 322.554688 249.789062 322.460938 249.882812 322.460938 250 C 322.460938 250.117188 322.554688 250.210938 322.671875 250.210938 C 322.789062 250.210938 322.882812 250.117188 322.882812 250 Z M 322.882812 250 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 322.480469 247.871094 C 322.480469 247.753906 322.386719 247.660156 322.269531 247.660156 C 322.152344 247.660156 322.058594 247.753906 322.058594 247.871094 C 322.058594 247.988281 322.152344 248.082031 322.269531 248.082031 C 322.386719 248.082031 322.480469 247.988281 322.480469 247.871094 Z M 322.480469 247.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.164062 245.484375 C 321.164062 245.367188 321.070312 245.273438 320.953125 245.273438 C 320.835938 245.273438 320.742188 245.367188 320.742188 245.484375 C 320.742188 245.601562 320.835938 245.695312 320.953125 245.695312 C 321.070312 245.695312 321.164062 245.601562 321.164062 245.484375 Z M 321.164062 245.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.621094 244.414062 C 324.621094 244.296875 324.527344 244.203125 324.410156 244.203125 C 324.292969 244.203125 324.199219 244.296875 324.199219 244.414062 C 324.199219 244.53125 324.292969 244.625 324.410156 244.625 C 324.527344 244.625 324.621094 244.53125 324.621094 244.414062 Z M 324.621094 244.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.363281 244.722656 C 327.363281 244.605469 327.269531 244.511719 327.152344 244.511719 C 327.035156 244.511719 326.941406 244.605469 326.941406 244.722656 C 326.941406 244.839844 327.035156 244.933594 327.152344 244.933594 C 327.269531 244.933594 327.363281 244.839844 327.363281 244.722656 Z M 327.363281 244.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.355469 246.734375 C 325.355469 246.617188 325.261719 246.523438 325.144531 246.523438 C 325.027344 246.523438 324.933594 246.617188 324.933594 246.734375 C 324.933594 246.851562 325.027344 246.945312 325.144531 246.945312 C 325.261719 246.945312 325.355469 246.851562 325.355469 246.734375 Z M 325.355469 246.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.164062 249.59375 C 324.164062 249.476562 324.070312 249.382812 323.953125 249.382812 C 323.835938 249.382812 323.742188 249.476562 323.742188 249.59375 C 323.742188 249.710938 323.835938 249.804688 323.953125 249.804688 C 324.070312 249.804688 324.164062 249.710938 324.164062 249.59375 Z M 324.164062 249.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.761719 248.085938 C 327.761719 247.96875 327.667969 247.875 327.550781 247.875 C 327.433594 247.875 327.339844 247.96875 327.339844 248.085938 C 327.339844 248.203125 327.433594 248.296875 327.550781 248.296875 C 327.667969 248.296875 327.761719 248.203125 327.761719 248.085938 Z M 327.761719 248.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 330.238281 249.035156 C 330.238281 248.917969 330.144531 248.824219 330.027344 248.824219 C 329.910156 248.824219 329.816406 248.917969 329.816406 249.035156 C 329.816406 249.152344 329.910156 249.246094 330.027344 249.246094 C 330.144531 249.246094 330.238281 249.152344 330.238281 249.035156 Z M 330.238281 249.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 330.4375 250.597656 C 330.4375 250.480469 330.34375 250.386719 330.226562 250.386719 C 330.109375 250.386719 330.015625 250.480469 330.015625 250.597656 C 330.015625 250.714844 330.109375 250.808594 330.226562 250.808594 C 330.34375 250.808594 330.4375 250.714844 330.4375 250.597656 Z M 330.4375 250.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 327.289062 251.789062 C 327.289062 251.671875 327.195312 251.578125 327.078125 251.578125 C 326.960938 251.578125 326.867188 251.671875 326.867188 251.789062 C 326.867188 251.90625 326.960938 252 327.078125 252 C 327.195312 252 327.289062 251.90625 327.289062 251.789062 Z M 327.289062 251.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.472656 254.199219 C 324.472656 254.082031 324.378906 253.988281 324.261719 253.988281 C 324.144531 253.988281 324.050781 254.082031 324.050781 254.199219 C 324.050781 254.316406 324.144531 254.410156 324.261719 254.410156 C 324.378906 254.410156 324.472656 254.316406 324.472656 254.199219 Z M 324.472656 254.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 323.417969 254.132812 C 323.417969 254.015625 323.324219 253.921875 323.207031 253.921875 C 323.089844 253.921875 322.996094 254.015625 322.996094 254.132812 C 322.996094 254.25 323.089844 254.34375 323.207031 254.34375 C 323.324219 254.34375 323.417969 254.25 323.417969 254.132812 Z M 323.417969 254.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.882812 255.914062 C 325.882812 255.796875 325.789062 255.703125 325.671875 255.703125 C 325.554688 255.703125 325.460938 255.796875 325.460938 255.914062 C 325.460938 256.03125 325.554688 256.125 325.671875 256.125 C 325.789062 256.125 325.882812 256.03125 325.882812 255.914062 Z M 325.882812 255.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 328.386719 255.546875 C 328.386719 255.429688 328.292969 255.335938 328.175781 255.335938 C 328.058594 255.335938 327.964844 255.429688 327.964844 255.546875 C 327.964844 255.664062 328.058594 255.757812 328.175781 255.757812 C 328.292969 255.757812 328.386719 255.664062 328.386719 255.546875 Z M 328.386719 255.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 325.609375 254.941406 C 325.609375 254.824219 325.515625 254.730469 325.398438 254.730469 C 325.28125 254.730469 325.1875 254.824219 325.1875 254.941406 C 325.1875 255.058594 325.28125 255.152344 325.398438 255.152344 C 325.515625 255.152344 325.609375 255.058594 325.609375 254.941406 Z M 325.609375 254.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 326.230469 254.199219 C 326.230469 254.082031 326.136719 253.988281 326.019531 253.988281 C 325.902344 253.988281 325.808594 254.082031 325.808594 254.199219 C 325.808594 254.316406 325.902344 254.410156 326.019531 254.410156 C 326.136719 254.410156 326.230469 254.316406 326.230469 254.199219 Z M 326.230469 254.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 324.613281 253.953125 C 324.613281 253.835938 324.519531 253.742188 324.402344 253.742188 C 324.285156 253.742188 324.191406 253.835938 324.191406 253.953125 C 324.191406 254.070312 324.285156 254.164062 324.402344 254.164062 C 324.519531 254.164062 324.613281 254.070312 324.613281 253.953125 Z M 324.613281 253.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 321.859375 254.1875 C 321.859375 254.070312 321.765625 253.976562 321.648438 253.976562 C 321.53125 253.976562 321.4375 254.070312 321.4375 254.1875 C 321.4375 254.304688 321.53125 254.398438 321.648438 254.398438 C 321.765625 254.398438 321.859375 254.304688 321.859375 254.1875 Z M 321.859375 254.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 316.75 250.917969 C 316.75 250.800781 316.65625 250.707031 316.539062 250.707031 C 316.421875 250.707031 316.328125 250.800781 316.328125 250.917969 C 316.328125 251.035156 316.421875 251.128906 316.539062 251.128906 C 316.65625 251.128906 316.75 251.035156 316.75 250.917969 Z M 316.75 250.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.324219 249.90625 C 315.324219 249.789062 315.230469 249.695312 315.113281 249.695312 C 314.996094 249.695312 314.902344 249.789062 314.902344 249.90625 C 314.902344 250.023438 314.996094 250.117188 315.113281 250.117188 C 315.230469 250.117188 315.324219 250.023438 315.324219 249.90625 Z M 315.324219 249.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.660156 249.949219 C 313.660156 249.832031 313.566406 249.738281 313.449219 249.738281 C 313.332031 249.738281 313.238281 249.832031 313.238281 249.949219 C 313.238281 250.066406 313.332031 250.160156 313.449219 250.160156 C 313.566406 250.160156 313.660156 250.066406 313.660156 249.949219 Z M 313.660156 249.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 315.574219 252.410156 C 315.574219 252.292969 315.480469 252.199219 315.363281 252.199219 C 315.246094 252.199219 315.152344 252.292969 315.152344 252.410156 C 315.152344 252.527344 315.246094 252.621094 315.363281 252.621094 C 315.480469 252.621094 315.574219 252.527344 315.574219 252.410156 Z M 315.574219 252.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.816406 252.195312 C 312.816406 252.078125 312.722656 251.984375 312.605469 251.984375 C 312.488281 251.984375 312.394531 252.078125 312.394531 252.195312 C 312.394531 252.3125 312.488281 252.40625 312.605469 252.40625 C 312.722656 252.40625 312.816406 252.3125 312.816406 252.195312 Z M 312.816406 252.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 312.355469 247.875 C 312.355469 247.757812 312.261719 247.664062 312.144531 247.664062 C 312.027344 247.664062 311.933594 247.757812 311.933594 247.875 C 311.933594 247.992188 312.027344 248.085938 312.144531 248.085938 C 312.261719 248.085938 312.355469 247.992188 312.355469 247.875 Z M 312.355469 247.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 314.835938 247.097656 C 314.835938 246.980469 314.742188 246.886719 314.625 246.886719 C 314.507812 246.886719 314.414062 246.980469 314.414062 247.097656 C 314.414062 247.214844 314.507812 247.308594 314.625 247.308594 C 314.742188 247.308594 314.835938 247.214844 314.835938 247.097656 Z M 314.835938 247.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 313.035156 244.59375 C 313.035156 244.476562 312.941406 244.382812 312.824219 244.382812 C 312.707031 244.382812 312.613281 244.476562 312.613281 244.59375 C 312.613281 244.710938 312.707031 244.804688 312.824219 244.804688 C 312.941406 244.804688 313.035156 244.710938 313.035156 244.59375 Z M 313.035156 244.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 310.367188 243.128906 C 310.367188 243.011719 310.273438 242.917969 310.15625 242.917969 C 310.039062 242.917969 309.945312 243.011719 309.945312 243.128906 C 309.945312 243.246094 310.039062 243.339844 310.15625 243.339844 C 310.273438 243.339844 310.367188 243.246094 310.367188 243.128906 Z M 310.367188 243.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.457031 242.476562 C 308.457031 242.359375 308.363281 242.265625 308.246094 242.265625 C 308.128906 242.265625 308.035156 242.359375 308.035156 242.476562 C 308.035156 242.59375 308.128906 242.6875 308.246094 242.6875 C 308.363281 242.6875 308.457031 242.59375 308.457031 242.476562 Z M 308.457031 242.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.089844 243.917969 C 307.089844 243.800781 306.996094 243.707031 306.878906 243.707031 C 306.761719 243.707031 306.667969 243.800781 306.667969 243.917969 C 306.667969 244.035156 306.761719 244.128906 306.878906 244.128906 C 306.996094 244.128906 307.089844 244.035156 307.089844 243.917969 Z M 307.089844 243.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.300781 245.878906 C 303.300781 245.761719 303.207031 245.667969 303.089844 245.667969 C 302.972656 245.667969 302.878906 245.761719 302.878906 245.878906 C 302.878906 245.996094 302.972656 246.089844 303.089844 246.089844 C 303.207031 246.089844 303.300781 245.996094 303.300781 245.878906 Z M 303.300781 245.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.394531 243.632812 C 302.394531 243.515625 302.300781 243.421875 302.183594 243.421875 C 302.066406 243.421875 301.972656 243.515625 301.972656 243.632812 C 301.972656 243.75 302.066406 243.84375 302.183594 243.84375 C 302.300781 243.84375 302.394531 243.75 302.394531 243.632812 Z M 302.394531 243.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.339844 245.300781 C 303.339844 245.183594 303.246094 245.089844 303.128906 245.089844 C 303.011719 245.089844 302.917969 245.183594 302.917969 245.300781 C 302.917969 245.417969 303.011719 245.511719 303.128906 245.511719 C 303.246094 245.511719 303.339844 245.417969 303.339844 245.300781 Z M 303.339844 245.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.402344 247.324219 C 302.402344 247.207031 302.308594 247.113281 302.191406 247.113281 C 302.074219 247.113281 301.980469 247.207031 301.980469 247.324219 C 301.980469 247.441406 302.074219 247.535156 302.191406 247.535156 C 302.308594 247.535156 302.402344 247.441406 302.402344 247.324219 Z M 302.402344 247.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.695312 246.414062 C 299.695312 246.296875 299.601562 246.203125 299.484375 246.203125 C 299.367188 246.203125 299.273438 246.296875 299.273438 246.414062 C 299.273438 246.53125 299.367188 246.625 299.484375 246.625 C 299.601562 246.625 299.695312 246.53125 299.695312 246.414062 Z M 299.695312 246.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.433594 247.460938 C 297.433594 247.34375 297.339844 247.25 297.222656 247.25 C 297.105469 247.25 297.011719 247.34375 297.011719 247.460938 C 297.011719 247.578125 297.105469 247.671875 297.222656 247.671875 C 297.339844 247.671875 297.433594 247.578125 297.433594 247.460938 Z M 297.433594 247.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.636719 247.496094 C 301.636719 247.378906 301.542969 247.285156 301.425781 247.285156 C 301.308594 247.285156 301.214844 247.378906 301.214844 247.496094 C 301.214844 247.613281 301.308594 247.707031 301.425781 247.707031 C 301.542969 247.707031 301.636719 247.613281 301.636719 247.496094 Z M 301.636719 247.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.796875 250.347656 C 301.796875 250.230469 301.703125 250.136719 301.585938 250.136719 C 301.46875 250.136719 301.375 250.230469 301.375 250.347656 C 301.375 250.464844 301.46875 250.558594 301.585938 250.558594 C 301.703125 250.558594 301.796875 250.464844 301.796875 250.347656 Z M 301.796875 250.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.773438 252.820312 C 302.773438 252.703125 302.679688 252.609375 302.5625 252.609375 C 302.445312 252.609375 302.351562 252.703125 302.351562 252.820312 C 302.351562 252.9375 302.445312 253.03125 302.5625 253.03125 C 302.679688 253.03125 302.773438 252.9375 302.773438 252.820312 Z M 302.773438 252.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.441406 251.546875 C 303.441406 251.429688 303.347656 251.335938 303.230469 251.335938 C 303.113281 251.335938 303.019531 251.429688 303.019531 251.546875 C 303.019531 251.664062 303.113281 251.757812 303.230469 251.757812 C 303.347656 251.757812 303.441406 251.664062 303.441406 251.546875 Z M 303.441406 251.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.492188 251.300781 C 303.492188 251.183594 303.398438 251.089844 303.28125 251.089844 C 303.164062 251.089844 303.070312 251.183594 303.070312 251.300781 C 303.070312 251.417969 303.164062 251.511719 303.28125 251.511719 C 303.398438 251.511719 303.492188 251.417969 303.492188 251.300781 Z M 303.492188 251.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.632812 250.113281 C 303.632812 249.996094 303.539062 249.902344 303.421875 249.902344 C 303.304688 249.902344 303.210938 249.996094 303.210938 250.113281 C 303.210938 250.230469 303.304688 250.324219 303.421875 250.324219 C 303.539062 250.324219 303.632812 250.230469 303.632812 250.113281 Z M 303.632812 250.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.242188 249.933594 C 303.242188 249.816406 303.148438 249.722656 303.03125 249.722656 C 302.914062 249.722656 302.820312 249.816406 302.820312 249.933594 C 302.820312 250.050781 302.914062 250.144531 303.03125 250.144531 C 303.148438 250.144531 303.242188 250.050781 303.242188 249.933594 Z M 303.242188 249.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.527344 251.171875 C 302.527344 251.054688 302.433594 250.960938 302.316406 250.960938 C 302.199219 250.960938 302.105469 251.054688 302.105469 251.171875 C 302.105469 251.289062 302.199219 251.382812 302.316406 251.382812 C 302.433594 251.382812 302.527344 251.289062 302.527344 251.171875 Z M 302.527344 251.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.078125 251.191406 C 305.078125 251.074219 304.984375 250.980469 304.867188 250.980469 C 304.75 250.980469 304.65625 251.074219 304.65625 251.191406 C 304.65625 251.308594 304.75 251.402344 304.867188 251.402344 C 304.984375 251.402344 305.078125 251.308594 305.078125 251.191406 Z M 305.078125 251.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.980469 252.375 C 304.980469 252.257812 304.886719 252.164062 304.769531 252.164062 C 304.652344 252.164062 304.558594 252.257812 304.558594 252.375 C 304.558594 252.492188 304.652344 252.585938 304.769531 252.585938 C 304.886719 252.585938 304.980469 252.492188 304.980469 252.375 Z M 304.980469 252.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.066406 250.882812 C 307.066406 250.765625 306.972656 250.671875 306.855469 250.671875 C 306.738281 250.671875 306.644531 250.765625 306.644531 250.882812 C 306.644531 251 306.738281 251.09375 306.855469 251.09375 C 306.972656 251.09375 307.066406 251 307.066406 250.882812 Z M 307.066406 250.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.660156 249.867188 C 308.660156 249.75 308.566406 249.65625 308.449219 249.65625 C 308.332031 249.65625 308.238281 249.75 308.238281 249.867188 C 308.238281 249.984375 308.332031 250.078125 308.449219 250.078125 C 308.566406 250.078125 308.660156 249.984375 308.660156 249.867188 Z M 308.660156 249.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.417969 248.09375 C 307.417969 247.976562 307.324219 247.882812 307.207031 247.882812 C 307.089844 247.882812 306.996094 247.976562 306.996094 248.09375 C 306.996094 248.210938 307.089844 248.304688 307.207031 248.304688 C 307.324219 248.304688 307.417969 248.210938 307.417969 248.09375 Z M 307.417969 248.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 307.621094 248.90625 C 307.621094 248.789062 307.527344 248.695312 307.410156 248.695312 C 307.292969 248.695312 307.199219 248.789062 307.199219 248.90625 C 307.199219 249.023438 307.292969 249.117188 307.410156 249.117188 C 307.527344 249.117188 307.621094 249.023438 307.621094 248.90625 Z M 307.621094 248.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.777344 247.648438 C 305.777344 247.53125 305.683594 247.4375 305.566406 247.4375 C 305.449219 247.4375 305.355469 247.53125 305.355469 247.648438 C 305.355469 247.765625 305.449219 247.859375 305.566406 247.859375 C 305.683594 247.859375 305.777344 247.765625 305.777344 247.648438 Z M 305.777344 247.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.476562 249.570312 C 304.476562 249.453125 304.382812 249.359375 304.265625 249.359375 C 304.148438 249.359375 304.054688 249.453125 304.054688 249.570312 C 304.054688 249.6875 304.148438 249.78125 304.265625 249.78125 C 304.382812 249.78125 304.476562 249.6875 304.476562 249.570312 Z M 304.476562 249.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.375 249.128906 C 305.375 249.011719 305.28125 248.917969 305.164062 248.917969 C 305.046875 248.917969 304.953125 249.011719 304.953125 249.128906 C 304.953125 249.246094 305.046875 249.339844 305.164062 249.339844 C 305.28125 249.339844 305.375 249.246094 305.375 249.128906 Z M 305.375 249.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.695312 250.078125 C 305.695312 249.960938 305.601562 249.867188 305.484375 249.867188 C 305.367188 249.867188 305.273438 249.960938 305.273438 250.078125 C 305.273438 250.195312 305.367188 250.289062 305.484375 250.289062 C 305.601562 250.289062 305.695312 250.195312 305.695312 250.078125 Z M 305.695312 250.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.285156 247.933594 C 308.285156 247.816406 308.191406 247.722656 308.074219 247.722656 C 307.957031 247.722656 307.863281 247.816406 307.863281 247.933594 C 307.863281 248.050781 307.957031 248.144531 308.074219 248.144531 C 308.191406 248.144531 308.285156 248.050781 308.285156 247.933594 Z M 308.285156 247.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.667969 251.03125 C 304.667969 250.914062 304.574219 250.820312 304.457031 250.820312 C 304.339844 250.820312 304.246094 250.914062 304.246094 251.03125 C 304.246094 251.148438 304.339844 251.242188 304.457031 251.242188 C 304.574219 251.242188 304.667969 251.148438 304.667969 251.03125 Z M 304.667969 251.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.246094 249.660156 C 304.246094 249.542969 304.152344 249.449219 304.035156 249.449219 C 303.917969 249.449219 303.824219 249.542969 303.824219 249.660156 C 303.824219 249.777344 303.917969 249.871094 304.035156 249.871094 C 304.152344 249.871094 304.246094 249.777344 304.246094 249.660156 Z M 304.246094 249.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.128906 248.882812 C 301.128906 248.765625 301.035156 248.671875 300.917969 248.671875 C 300.800781 248.671875 300.707031 248.765625 300.707031 248.882812 C 300.707031 249 300.800781 249.09375 300.917969 249.09375 C 301.035156 249.09375 301.128906 249 301.128906 248.882812 Z M 301.128906 248.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.726562 249.726562 C 298.726562 249.609375 298.632812 249.515625 298.515625 249.515625 C 298.398438 249.515625 298.304688 249.609375 298.304688 249.726562 C 298.304688 249.84375 298.398438 249.9375 298.515625 249.9375 C 298.632812 249.9375 298.726562 249.84375 298.726562 249.726562 Z M 298.726562 249.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.152344 250.21875 C 298.152344 250.101562 298.058594 250.007812 297.941406 250.007812 C 297.824219 250.007812 297.730469 250.101562 297.730469 250.21875 C 297.730469 250.335938 297.824219 250.429688 297.941406 250.429688 C 298.058594 250.429688 298.152344 250.335938 298.152344 250.21875 Z M 298.152344 250.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.636719 250.859375 C 296.636719 250.742188 296.542969 250.648438 296.425781 250.648438 C 296.308594 250.648438 296.214844 250.742188 296.214844 250.859375 C 296.214844 250.976562 296.308594 251.070312 296.425781 251.070312 C 296.542969 251.070312 296.636719 250.976562 296.636719 250.859375 Z M 296.636719 250.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.972656 247.121094 C 297.972656 247.003906 297.878906 246.910156 297.761719 246.910156 C 297.644531 246.910156 297.550781 247.003906 297.550781 247.121094 C 297.550781 247.238281 297.644531 247.332031 297.761719 247.332031 C 297.878906 247.332031 297.972656 247.238281 297.972656 247.121094 Z M 297.972656 247.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.523438 243.222656 C 299.523438 243.105469 299.429688 243.011719 299.3125 243.011719 C 299.195312 243.011719 299.101562 243.105469 299.101562 243.222656 C 299.101562 243.339844 299.195312 243.433594 299.3125 243.433594 C 299.429688 243.433594 299.523438 243.339844 299.523438 243.222656 Z M 299.523438 243.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.980469 242.621094 C 304.980469 242.503906 304.886719 242.410156 304.769531 242.410156 C 304.652344 242.410156 304.558594 242.503906 304.558594 242.621094 C 304.558594 242.738281 304.652344 242.832031 304.769531 242.832031 C 304.886719 242.832031 304.980469 242.738281 304.980469 242.621094 Z M 304.980469 242.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 306.1875 243.933594 C 306.1875 243.816406 306.09375 243.722656 305.976562 243.722656 C 305.859375 243.722656 305.765625 243.816406 305.765625 243.933594 C 305.765625 244.050781 305.859375 244.144531 305.976562 244.144531 C 306.09375 244.144531 306.1875 244.050781 306.1875 243.933594 Z M 306.1875 243.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.527344 242.164062 C 303.527344 242.046875 303.433594 241.953125 303.316406 241.953125 C 303.199219 241.953125 303.105469 242.046875 303.105469 242.164062 C 303.105469 242.28125 303.199219 242.375 303.316406 242.375 C 303.433594 242.375 303.527344 242.28125 303.527344 242.164062 Z M 303.527344 242.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.613281 238.761719 C 302.613281 238.644531 302.519531 238.550781 302.402344 238.550781 C 302.285156 238.550781 302.191406 238.644531 302.191406 238.761719 C 302.191406 238.878906 302.285156 238.972656 302.402344 238.972656 C 302.519531 238.972656 302.613281 238.878906 302.613281 238.761719 Z M 302.613281 238.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.9375 244.277344 C 302.9375 244.160156 302.84375 244.066406 302.726562 244.066406 C 302.609375 244.066406 302.515625 244.160156 302.515625 244.277344 C 302.515625 244.394531 302.609375 244.488281 302.726562 244.488281 C 302.84375 244.488281 302.9375 244.394531 302.9375 244.277344 Z M 302.9375 244.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.609375 244.058594 C 298.609375 243.941406 298.515625 243.847656 298.398438 243.847656 C 298.28125 243.847656 298.1875 243.941406 298.1875 244.058594 C 298.1875 244.175781 298.28125 244.269531 298.398438 244.269531 C 298.515625 244.269531 298.609375 244.175781 298.609375 244.058594 Z M 298.609375 244.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.621094 242.847656 C 296.621094 242.730469 296.527344 242.636719 296.410156 242.636719 C 296.292969 242.636719 296.199219 242.730469 296.199219 242.847656 C 296.199219 242.964844 296.292969 243.058594 296.410156 243.058594 C 296.527344 243.058594 296.621094 242.964844 296.621094 242.847656 Z M 296.621094 242.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.859375 246.742188 C 297.859375 246.625 297.765625 246.53125 297.648438 246.53125 C 297.53125 246.53125 297.4375 246.625 297.4375 246.742188 C 297.4375 246.859375 297.53125 246.953125 297.648438 246.953125 C 297.765625 246.953125 297.859375 246.859375 297.859375 246.742188 Z M 297.859375 246.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.324219 245.582031 C 299.324219 245.464844 299.230469 245.371094 299.113281 245.371094 C 298.996094 245.371094 298.902344 245.464844 298.902344 245.582031 C 298.902344 245.699219 298.996094 245.792969 299.113281 245.792969 C 299.230469 245.792969 299.324219 245.699219 299.324219 245.582031 Z M 299.324219 245.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.335938 244.25 C 298.335938 244.132812 298.242188 244.039062 298.125 244.039062 C 298.007812 244.039062 297.914062 244.132812 297.914062 244.25 C 297.914062 244.367188 298.007812 244.460938 298.125 244.460938 C 298.242188 244.460938 298.335938 244.367188 298.335938 244.25 Z M 298.335938 244.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.011719 242.851562 C 296.011719 242.734375 295.917969 242.640625 295.800781 242.640625 C 295.683594 242.640625 295.589844 242.734375 295.589844 242.851562 C 295.589844 242.96875 295.683594 243.0625 295.800781 243.0625 C 295.917969 243.0625 296.011719 242.96875 296.011719 242.851562 Z M 296.011719 242.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.164062 243.847656 C 298.164062 243.730469 298.070312 243.636719 297.953125 243.636719 C 297.835938 243.636719 297.742188 243.730469 297.742188 243.847656 C 297.742188 243.964844 297.835938 244.058594 297.953125 244.058594 C 298.070312 244.058594 298.164062 243.964844 298.164062 243.847656 Z M 298.164062 243.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.691406 244.378906 C 297.691406 244.261719 297.597656 244.167969 297.480469 244.167969 C 297.363281 244.167969 297.269531 244.261719 297.269531 244.378906 C 297.269531 244.496094 297.363281 244.589844 297.480469 244.589844 C 297.597656 244.589844 297.691406 244.496094 297.691406 244.378906 Z M 297.691406 244.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.636719 242.855469 C 297.636719 242.738281 297.542969 242.644531 297.425781 242.644531 C 297.308594 242.644531 297.214844 242.738281 297.214844 242.855469 C 297.214844 242.972656 297.308594 243.066406 297.425781 243.066406 C 297.542969 243.066406 297.636719 242.972656 297.636719 242.855469 Z M 297.636719 242.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.769531 244.695312 C 296.769531 244.578125 296.675781 244.484375 296.558594 244.484375 C 296.441406 244.484375 296.347656 244.578125 296.347656 244.695312 C 296.347656 244.8125 296.441406 244.90625 296.558594 244.90625 C 296.675781 244.90625 296.769531 244.8125 296.769531 244.695312 Z M 296.769531 244.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.128906 243.960938 C 295.128906 243.84375 295.035156 243.75 294.917969 243.75 C 294.800781 243.75 294.707031 243.84375 294.707031 243.960938 C 294.707031 244.078125 294.800781 244.171875 294.917969 244.171875 C 295.035156 244.171875 295.128906 244.078125 295.128906 243.960938 Z M 295.128906 243.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.074219 242.921875 C 294.074219 242.804688 293.980469 242.710938 293.863281 242.710938 C 293.746094 242.710938 293.652344 242.804688 293.652344 242.921875 C 293.652344 243.039062 293.746094 243.132812 293.863281 243.132812 C 293.980469 243.132812 294.074219 243.039062 294.074219 242.921875 Z M 294.074219 242.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.863281 241.847656 C 294.863281 241.730469 294.769531 241.636719 294.652344 241.636719 C 294.535156 241.636719 294.441406 241.730469 294.441406 241.847656 C 294.441406 241.964844 294.535156 242.058594 294.652344 242.058594 C 294.769531 242.058594 294.863281 241.964844 294.863281 241.847656 Z M 294.863281 241.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.464844 241.191406 C 294.464844 241.074219 294.371094 240.980469 294.253906 240.980469 C 294.136719 240.980469 294.042969 241.074219 294.042969 241.191406 C 294.042969 241.308594 294.136719 241.402344 294.253906 241.402344 C 294.371094 241.402344 294.464844 241.308594 294.464844 241.191406 Z M 294.464844 241.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.160156 244.839844 C 291.160156 244.722656 291.066406 244.628906 290.949219 244.628906 C 290.832031 244.628906 290.738281 244.722656 290.738281 244.839844 C 290.738281 244.957031 290.832031 245.050781 290.949219 245.050781 C 291.066406 245.050781 291.160156 244.957031 291.160156 244.839844 Z M 291.160156 244.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.957031 245.511719 C 287.957031 245.394531 287.863281 245.300781 287.746094 245.300781 C 287.628906 245.300781 287.535156 245.394531 287.535156 245.511719 C 287.535156 245.628906 287.628906 245.722656 287.746094 245.722656 C 287.863281 245.722656 287.957031 245.628906 287.957031 245.511719 Z M 287.957031 245.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.496094 245.945312 C 286.496094 245.828125 286.402344 245.734375 286.285156 245.734375 C 286.167969 245.734375 286.074219 245.828125 286.074219 245.945312 C 286.074219 246.0625 286.167969 246.15625 286.285156 246.15625 C 286.402344 246.15625 286.496094 246.0625 286.496094 245.945312 Z M 286.496094 245.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.066406 245.042969 C 284.066406 244.925781 283.972656 244.832031 283.855469 244.832031 C 283.738281 244.832031 283.644531 244.925781 283.644531 245.042969 C 283.644531 245.160156 283.738281 245.253906 283.855469 245.253906 C 283.972656 245.253906 284.066406 245.160156 284.066406 245.042969 Z M 284.066406 245.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.765625 245.828125 C 280.765625 245.710938 280.671875 245.617188 280.554688 245.617188 C 280.4375 245.617188 280.34375 245.710938 280.34375 245.828125 C 280.34375 245.945312 280.4375 246.039062 280.554688 246.039062 C 280.671875 246.039062 280.765625 245.945312 280.765625 245.828125 Z M 280.765625 245.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.890625 245.917969 C 281.890625 245.800781 281.796875 245.707031 281.679688 245.707031 C 281.5625 245.707031 281.46875 245.800781 281.46875 245.917969 C 281.46875 246.035156 281.5625 246.128906 281.679688 246.128906 C 281.796875 246.128906 281.890625 246.035156 281.890625 245.917969 Z M 281.890625 245.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.925781 245.605469 C 283.925781 245.488281 283.832031 245.394531 283.714844 245.394531 C 283.597656 245.394531 283.503906 245.488281 283.503906 245.605469 C 283.503906 245.722656 283.597656 245.816406 283.714844 245.816406 C 283.832031 245.816406 283.925781 245.722656 283.925781 245.605469 Z M 283.925781 245.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.910156 244.648438 C 285.910156 244.53125 285.816406 244.4375 285.699219 244.4375 C 285.582031 244.4375 285.488281 244.53125 285.488281 244.648438 C 285.488281 244.765625 285.582031 244.859375 285.699219 244.859375 C 285.816406 244.859375 285.910156 244.765625 285.910156 244.648438 Z M 285.910156 244.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.777344 245.777344 C 284.777344 245.660156 284.683594 245.566406 284.566406 245.566406 C 284.449219 245.566406 284.355469 245.660156 284.355469 245.777344 C 284.355469 245.894531 284.449219 245.988281 284.566406 245.988281 C 284.683594 245.988281 284.777344 245.894531 284.777344 245.777344 Z M 284.777344 245.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.734375 247.992188 C 285.734375 247.875 285.640625 247.78125 285.523438 247.78125 C 285.40625 247.78125 285.3125 247.875 285.3125 247.992188 C 285.3125 248.109375 285.40625 248.203125 285.523438 248.203125 C 285.640625 248.203125 285.734375 248.109375 285.734375 247.992188 Z M 285.734375 247.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.691406 250.664062 C 285.691406 250.546875 285.597656 250.453125 285.480469 250.453125 C 285.363281 250.453125 285.269531 250.546875 285.269531 250.664062 C 285.269531 250.78125 285.363281 250.875 285.480469 250.875 C 285.597656 250.875 285.691406 250.78125 285.691406 250.664062 Z M 285.691406 250.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.984375 249.363281 C 287.984375 249.246094 287.890625 249.152344 287.773438 249.152344 C 287.65625 249.152344 287.5625 249.246094 287.5625 249.363281 C 287.5625 249.480469 287.65625 249.574219 287.773438 249.574219 C 287.890625 249.574219 287.984375 249.480469 287.984375 249.363281 Z M 287.984375 249.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.015625 250.636719 C 286.015625 250.519531 285.921875 250.425781 285.804688 250.425781 C 285.6875 250.425781 285.59375 250.519531 285.59375 250.636719 C 285.59375 250.753906 285.6875 250.847656 285.804688 250.847656 C 285.921875 250.847656 286.015625 250.753906 286.015625 250.636719 Z M 286.015625 250.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.027344 249.617188 C 287.027344 249.5 286.933594 249.40625 286.816406 249.40625 C 286.699219 249.40625 286.605469 249.5 286.605469 249.617188 C 286.605469 249.734375 286.699219 249.828125 286.816406 249.828125 C 286.933594 249.828125 287.027344 249.734375 287.027344 249.617188 Z M 287.027344 249.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.082031 252.273438 C 285.082031 252.15625 284.988281 252.0625 284.871094 252.0625 C 284.753906 252.0625 284.660156 252.15625 284.660156 252.273438 C 284.660156 252.390625 284.753906 252.484375 284.871094 252.484375 C 284.988281 252.484375 285.082031 252.390625 285.082031 252.273438 Z M 285.082031 252.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.566406 250.109375 C 285.566406 249.992188 285.472656 249.898438 285.355469 249.898438 C 285.238281 249.898438 285.144531 249.992188 285.144531 250.109375 C 285.144531 250.226562 285.238281 250.320312 285.355469 250.320312 C 285.472656 250.320312 285.566406 250.226562 285.566406 250.109375 Z M 285.566406 250.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.90625 252.34375 C 284.90625 252.226562 284.8125 252.132812 284.695312 252.132812 C 284.578125 252.132812 284.484375 252.226562 284.484375 252.34375 C 284.484375 252.460938 284.578125 252.554688 284.695312 252.554688 C 284.8125 252.554688 284.90625 252.460938 284.90625 252.34375 Z M 284.90625 252.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.484375 251 C 278.484375 250.882812 278.390625 250.789062 278.273438 250.789062 C 278.15625 250.789062 278.0625 250.882812 278.0625 251 C 278.0625 251.117188 278.15625 251.210938 278.273438 251.210938 C 278.390625 251.210938 278.484375 251.117188 278.484375 251 Z M 278.484375 251 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.710938 251.085938 C 276.710938 250.96875 276.617188 250.875 276.5 250.875 C 276.382812 250.875 276.289062 250.96875 276.289062 251.085938 C 276.289062 251.203125 276.382812 251.296875 276.5 251.296875 C 276.617188 251.296875 276.710938 251.203125 276.710938 251.085938 Z M 276.710938 251.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.179688 250.132812 C 277.179688 250.015625 277.085938 249.921875 276.96875 249.921875 C 276.851562 249.921875 276.757812 250.015625 276.757812 250.132812 C 276.757812 250.25 276.851562 250.34375 276.96875 250.34375 C 277.085938 250.34375 277.179688 250.25 277.179688 250.132812 Z M 277.179688 250.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.246094 251.070312 C 279.246094 250.953125 279.152344 250.859375 279.035156 250.859375 C 278.917969 250.859375 278.824219 250.953125 278.824219 251.070312 C 278.824219 251.1875 278.917969 251.28125 279.035156 251.28125 C 279.152344 251.28125 279.246094 251.1875 279.246094 251.070312 Z M 279.246094 251.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.390625 253.1875 C 279.390625 253.070312 279.296875 252.976562 279.179688 252.976562 C 279.0625 252.976562 278.96875 253.070312 278.96875 253.1875 C 278.96875 253.304688 279.0625 253.398438 279.179688 253.398438 C 279.296875 253.398438 279.390625 253.304688 279.390625 253.1875 Z M 279.390625 253.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.414062 254.457031 C 275.414062 254.339844 275.320312 254.246094 275.203125 254.246094 C 275.085938 254.246094 274.992188 254.339844 274.992188 254.457031 C 274.992188 254.574219 275.085938 254.667969 275.203125 254.667969 C 275.320312 254.667969 275.414062 254.574219 275.414062 254.457031 Z M 275.414062 254.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.019531 256.453125 C 276.019531 256.335938 275.925781 256.242188 275.808594 256.242188 C 275.691406 256.242188 275.597656 256.335938 275.597656 256.453125 C 275.597656 256.570312 275.691406 256.664062 275.808594 256.664062 C 275.925781 256.664062 276.019531 256.570312 276.019531 256.453125 Z M 276.019531 256.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276 251.839844 C 276 251.722656 275.90625 251.628906 275.789062 251.628906 C 275.671875 251.628906 275.578125 251.722656 275.578125 251.839844 C 275.578125 251.957031 275.671875 252.050781 275.789062 252.050781 C 275.90625 252.050781 276 251.957031 276 251.839844 Z M 276 251.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.78125 250.023438 C 274.78125 249.90625 274.6875 249.8125 274.570312 249.8125 C 274.453125 249.8125 274.359375 249.90625 274.359375 250.023438 C 274.359375 250.140625 274.453125 250.234375 274.570312 250.234375 C 274.6875 250.234375 274.78125 250.140625 274.78125 250.023438 Z M 274.78125 250.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.375 246.976562 C 276.375 246.859375 276.28125 246.765625 276.164062 246.765625 C 276.046875 246.765625 275.953125 246.859375 275.953125 246.976562 C 275.953125 247.09375 276.046875 247.1875 276.164062 247.1875 C 276.28125 247.1875 276.375 247.09375 276.375 246.976562 Z M 276.375 246.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.949219 246.832031 C 276.949219 246.714844 276.855469 246.621094 276.738281 246.621094 C 276.621094 246.621094 276.527344 246.714844 276.527344 246.832031 C 276.527344 246.949219 276.621094 247.042969 276.738281 247.042969 C 276.855469 247.042969 276.949219 246.949219 276.949219 246.832031 Z M 276.949219 246.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.609375 245.816406 C 275.609375 245.699219 275.515625 245.605469 275.398438 245.605469 C 275.28125 245.605469 275.1875 245.699219 275.1875 245.816406 C 275.1875 245.933594 275.28125 246.027344 275.398438 246.027344 C 275.515625 246.027344 275.609375 245.933594 275.609375 245.816406 Z M 275.609375 245.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.667969 249.257812 C 273.667969 249.140625 273.574219 249.046875 273.457031 249.046875 C 273.339844 249.046875 273.246094 249.140625 273.246094 249.257812 C 273.246094 249.375 273.339844 249.46875 273.457031 249.46875 C 273.574219 249.46875 273.667969 249.375 273.667969 249.257812 Z M 273.667969 249.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.695312 243.839844 C 276.695312 243.722656 276.601562 243.628906 276.484375 243.628906 C 276.367188 243.628906 276.273438 243.722656 276.273438 243.839844 C 276.273438 243.957031 276.367188 244.050781 276.484375 244.050781 C 276.601562 244.050781 276.695312 243.957031 276.695312 243.839844 Z M 276.695312 243.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.992188 246.289062 C 277.992188 246.171875 277.898438 246.078125 277.78125 246.078125 C 277.664062 246.078125 277.570312 246.171875 277.570312 246.289062 C 277.570312 246.40625 277.664062 246.5 277.78125 246.5 C 277.898438 246.5 277.992188 246.40625 277.992188 246.289062 Z M 277.992188 246.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.789062 244.492188 C 278.789062 244.375 278.695312 244.28125 278.578125 244.28125 C 278.460938 244.28125 278.367188 244.375 278.367188 244.492188 C 278.367188 244.609375 278.460938 244.703125 278.578125 244.703125 C 278.695312 244.703125 278.789062 244.609375 278.789062 244.492188 Z M 278.789062 244.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.578125 243.136719 C 280.578125 243.019531 280.484375 242.925781 280.367188 242.925781 C 280.25 242.925781 280.15625 243.019531 280.15625 243.136719 C 280.15625 243.253906 280.25 243.347656 280.367188 243.347656 C 280.484375 243.347656 280.578125 243.253906 280.578125 243.136719 Z M 280.578125 243.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.980469 240.414062 C 278.980469 240.296875 278.886719 240.203125 278.769531 240.203125 C 278.652344 240.203125 278.558594 240.296875 278.558594 240.414062 C 278.558594 240.53125 278.652344 240.625 278.769531 240.625 C 278.886719 240.625 278.980469 240.53125 278.980469 240.414062 Z M 278.980469 240.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.804688 238.941406 C 279.804688 238.824219 279.710938 238.730469 279.59375 238.730469 C 279.476562 238.730469 279.382812 238.824219 279.382812 238.941406 C 279.382812 239.058594 279.476562 239.152344 279.59375 239.152344 C 279.710938 239.152344 279.804688 239.058594 279.804688 238.941406 Z M 279.804688 238.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.003906 236.039062 C 280.003906 235.921875 279.910156 235.828125 279.792969 235.828125 C 279.675781 235.828125 279.582031 235.921875 279.582031 236.039062 C 279.582031 236.15625 279.675781 236.25 279.792969 236.25 C 279.910156 236.25 280.003906 236.15625 280.003906 236.039062 Z M 280.003906 236.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.363281 234.210938 C 278.363281 234.09375 278.269531 234 278.152344 234 C 278.035156 234 277.941406 234.09375 277.941406 234.210938 C 277.941406 234.328125 278.035156 234.421875 278.152344 234.421875 C 278.269531 234.421875 278.363281 234.328125 278.363281 234.210938 Z M 278.363281 234.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.976562 233.125 C 277.976562 233.007812 277.882812 232.914062 277.765625 232.914062 C 277.648438 232.914062 277.554688 233.007812 277.554688 233.125 C 277.554688 233.242188 277.648438 233.335938 277.765625 233.335938 C 277.882812 233.335938 277.976562 233.242188 277.976562 233.125 Z M 277.976562 233.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.699219 233.417969 C 277.699219 233.300781 277.605469 233.207031 277.488281 233.207031 C 277.371094 233.207031 277.277344 233.300781 277.277344 233.417969 C 277.277344 233.535156 277.371094 233.628906 277.488281 233.628906 C 277.605469 233.628906 277.699219 233.535156 277.699219 233.417969 Z M 277.699219 233.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.957031 235.046875 C 278.957031 234.929688 278.863281 234.835938 278.746094 234.835938 C 278.628906 234.835938 278.535156 234.929688 278.535156 235.046875 C 278.535156 235.164062 278.628906 235.257812 278.746094 235.257812 C 278.863281 235.257812 278.957031 235.164062 278.957031 235.046875 Z M 278.957031 235.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.238281 234.492188 C 280.238281 234.375 280.144531 234.28125 280.027344 234.28125 C 279.910156 234.28125 279.816406 234.375 279.816406 234.492188 C 279.816406 234.609375 279.910156 234.703125 280.027344 234.703125 C 280.144531 234.703125 280.238281 234.609375 280.238281 234.492188 Z M 280.238281 234.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.121094 233.183594 C 281.121094 233.066406 281.027344 232.972656 280.910156 232.972656 C 280.792969 232.972656 280.699219 233.066406 280.699219 233.183594 C 280.699219 233.300781 280.792969 233.394531 280.910156 233.394531 C 281.027344 233.394531 281.121094 233.300781 281.121094 233.183594 Z M 281.121094 233.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.191406 233.085938 C 280.191406 232.96875 280.097656 232.875 279.980469 232.875 C 279.863281 232.875 279.769531 232.96875 279.769531 233.085938 C 279.769531 233.203125 279.863281 233.296875 279.980469 233.296875 C 280.097656 233.296875 280.191406 233.203125 280.191406 233.085938 Z M 280.191406 233.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.023438 233.808594 C 278.023438 233.691406 277.929688 233.597656 277.8125 233.597656 C 277.695312 233.597656 277.601562 233.691406 277.601562 233.808594 C 277.601562 233.925781 277.695312 234.019531 277.8125 234.019531 C 277.929688 234.019531 278.023438 233.925781 278.023438 233.808594 Z M 278.023438 233.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.144531 231.101562 C 276.144531 230.984375 276.050781 230.890625 275.933594 230.890625 C 275.816406 230.890625 275.722656 230.984375 275.722656 231.101562 C 275.722656 231.21875 275.816406 231.3125 275.933594 231.3125 C 276.050781 231.3125 276.144531 231.21875 276.144531 231.101562 Z M 276.144531 231.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.046875 233.945312 C 275.046875 233.828125 274.953125 233.734375 274.835938 233.734375 C 274.71875 233.734375 274.625 233.828125 274.625 233.945312 C 274.625 234.0625 274.71875 234.15625 274.835938 234.15625 C 274.953125 234.15625 275.046875 234.0625 275.046875 233.945312 Z M 275.046875 233.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.722656 232.816406 C 272.722656 232.699219 272.628906 232.605469 272.511719 232.605469 C 272.394531 232.605469 272.300781 232.699219 272.300781 232.816406 C 272.300781 232.933594 272.394531 233.027344 272.511719 233.027344 C 272.628906 233.027344 272.722656 232.933594 272.722656 232.816406 Z M 272.722656 232.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.027344 231.433594 C 269.027344 231.316406 268.933594 231.222656 268.816406 231.222656 C 268.699219 231.222656 268.605469 231.316406 268.605469 231.433594 C 268.605469 231.550781 268.699219 231.644531 268.816406 231.644531 C 268.933594 231.644531 269.027344 231.550781 269.027344 231.433594 Z M 269.027344 231.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.25 232.082031 C 267.25 231.964844 267.15625 231.871094 267.039062 231.871094 C 266.921875 231.871094 266.828125 231.964844 266.828125 232.082031 C 266.828125 232.199219 266.921875 232.292969 267.039062 232.292969 C 267.15625 232.292969 267.25 232.199219 267.25 232.082031 Z M 267.25 232.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.21875 235.335938 C 268.21875 235.21875 268.125 235.125 268.007812 235.125 C 267.890625 235.125 267.796875 235.21875 267.796875 235.335938 C 267.796875 235.453125 267.890625 235.546875 268.007812 235.546875 C 268.125 235.546875 268.21875 235.453125 268.21875 235.335938 Z M 268.21875 235.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.3125 236.855469 C 265.3125 236.738281 265.21875 236.644531 265.101562 236.644531 C 264.984375 236.644531 264.890625 236.738281 264.890625 236.855469 C 264.890625 236.972656 264.984375 237.066406 265.101562 237.066406 C 265.21875 237.066406 265.3125 236.972656 265.3125 236.855469 Z M 265.3125 236.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.234375 241.53125 C 263.234375 241.414062 263.140625 241.320312 263.023438 241.320312 C 262.90625 241.320312 262.8125 241.414062 262.8125 241.53125 C 262.8125 241.648438 262.90625 241.742188 263.023438 241.742188 C 263.140625 241.742188 263.234375 241.648438 263.234375 241.53125 Z M 263.234375 241.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.433594 241.929688 C 263.433594 241.8125 263.339844 241.71875 263.222656 241.71875 C 263.105469 241.71875 263.011719 241.8125 263.011719 241.929688 C 263.011719 242.046875 263.105469 242.140625 263.222656 242.140625 C 263.339844 242.140625 263.433594 242.046875 263.433594 241.929688 Z M 263.433594 241.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.75 244.625 C 265.75 244.507812 265.65625 244.414062 265.539062 244.414062 C 265.421875 244.414062 265.328125 244.507812 265.328125 244.625 C 265.328125 244.742188 265.421875 244.835938 265.539062 244.835938 C 265.65625 244.835938 265.75 244.742188 265.75 244.625 Z M 265.75 244.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.988281 242.5625 C 267.988281 242.445312 267.894531 242.351562 267.777344 242.351562 C 267.660156 242.351562 267.566406 242.445312 267.566406 242.5625 C 267.566406 242.679688 267.660156 242.773438 267.777344 242.773438 C 267.894531 242.773438 267.988281 242.679688 267.988281 242.5625 Z M 267.988281 242.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.3125 242.410156 C 269.3125 242.292969 269.21875 242.199219 269.101562 242.199219 C 268.984375 242.199219 268.890625 242.292969 268.890625 242.410156 C 268.890625 242.527344 268.984375 242.621094 269.101562 242.621094 C 269.21875 242.621094 269.3125 242.527344 269.3125 242.410156 Z M 269.3125 242.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.972656 245.605469 C 271.972656 245.488281 271.878906 245.394531 271.761719 245.394531 C 271.644531 245.394531 271.550781 245.488281 271.550781 245.605469 C 271.550781 245.722656 271.644531 245.816406 271.761719 245.816406 C 271.878906 245.816406 271.972656 245.722656 271.972656 245.605469 Z M 271.972656 245.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.105469 246.730469 C 272.105469 246.613281 272.011719 246.519531 271.894531 246.519531 C 271.777344 246.519531 271.683594 246.613281 271.683594 246.730469 C 271.683594 246.847656 271.777344 246.941406 271.894531 246.941406 C 272.011719 246.941406 272.105469 246.847656 272.105469 246.730469 Z M 272.105469 246.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.136719 248.875 C 276.136719 248.757812 276.042969 248.664062 275.925781 248.664062 C 275.808594 248.664062 275.714844 248.757812 275.714844 248.875 C 275.714844 248.992188 275.808594 249.085938 275.925781 249.085938 C 276.042969 249.085938 276.136719 248.992188 276.136719 248.875 Z M 276.136719 248.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.511719 246.230469 C 277.511719 246.113281 277.417969 246.019531 277.300781 246.019531 C 277.183594 246.019531 277.089844 246.113281 277.089844 246.230469 C 277.089844 246.347656 277.183594 246.441406 277.300781 246.441406 C 277.417969 246.441406 277.511719 246.347656 277.511719 246.230469 Z M 277.511719 246.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.625 247.328125 C 278.625 247.210938 278.53125 247.117188 278.414062 247.117188 C 278.296875 247.117188 278.203125 247.210938 278.203125 247.328125 C 278.203125 247.445312 278.296875 247.539062 278.414062 247.539062 C 278.53125 247.539062 278.625 247.445312 278.625 247.328125 Z M 278.625 247.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.027344 246.773438 C 278.027344 246.65625 277.933594 246.5625 277.816406 246.5625 C 277.699219 246.5625 277.605469 246.65625 277.605469 246.773438 C 277.605469 246.890625 277.699219 246.984375 277.816406 246.984375 C 277.933594 246.984375 278.027344 246.890625 278.027344 246.773438 Z M 278.027344 246.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.53125 245.738281 C 272.53125 245.621094 272.4375 245.527344 272.320312 245.527344 C 272.203125 245.527344 272.109375 245.621094 272.109375 245.738281 C 272.109375 245.855469 272.203125 245.949219 272.320312 245.949219 C 272.4375 245.949219 272.53125 245.855469 272.53125 245.738281 Z M 272.53125 245.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.34375 245.332031 C 274.34375 245.214844 274.25 245.121094 274.132812 245.121094 C 274.015625 245.121094 273.921875 245.214844 273.921875 245.332031 C 273.921875 245.449219 274.015625 245.542969 274.132812 245.542969 C 274.25 245.542969 274.34375 245.449219 274.34375 245.332031 Z M 274.34375 245.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.800781 246.285156 C 280.800781 246.167969 280.707031 246.074219 280.589844 246.074219 C 280.472656 246.074219 280.378906 246.167969 280.378906 246.285156 C 280.378906 246.402344 280.472656 246.496094 280.589844 246.496094 C 280.707031 246.496094 280.800781 246.402344 280.800781 246.285156 Z M 280.800781 246.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.855469 242.246094 C 280.855469 242.128906 280.761719 242.035156 280.644531 242.035156 C 280.527344 242.035156 280.433594 242.128906 280.433594 242.246094 C 280.433594 242.363281 280.527344 242.457031 280.644531 242.457031 C 280.761719 242.457031 280.855469 242.363281 280.855469 242.246094 Z M 280.855469 242.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.640625 247.34375 C 279.640625 247.226562 279.546875 247.132812 279.429688 247.132812 C 279.3125 247.132812 279.21875 247.226562 279.21875 247.34375 C 279.21875 247.460938 279.3125 247.554688 279.429688 247.554688 C 279.546875 247.554688 279.640625 247.460938 279.640625 247.34375 Z M 279.640625 247.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.25 249.632812 C 277.25 249.515625 277.15625 249.421875 277.039062 249.421875 C 276.921875 249.421875 276.828125 249.515625 276.828125 249.632812 C 276.828125 249.75 276.921875 249.84375 277.039062 249.84375 C 277.15625 249.84375 277.25 249.75 277.25 249.632812 Z M 277.25 249.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.980469 249.476562 C 275.980469 249.359375 275.886719 249.265625 275.769531 249.265625 C 275.652344 249.265625 275.558594 249.359375 275.558594 249.476562 C 275.558594 249.59375 275.652344 249.6875 275.769531 249.6875 C 275.886719 249.6875 275.980469 249.59375 275.980469 249.476562 Z M 275.980469 249.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.46875 247.808594 C 275.46875 247.691406 275.375 247.597656 275.257812 247.597656 C 275.140625 247.597656 275.046875 247.691406 275.046875 247.808594 C 275.046875 247.925781 275.140625 248.019531 275.257812 248.019531 C 275.375 248.019531 275.46875 247.925781 275.46875 247.808594 Z M 275.46875 247.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.136719 245.980469 C 275.136719 245.863281 275.042969 245.769531 274.925781 245.769531 C 274.808594 245.769531 274.714844 245.863281 274.714844 245.980469 C 274.714844 246.097656 274.808594 246.191406 274.925781 246.191406 C 275.042969 246.191406 275.136719 246.097656 275.136719 245.980469 Z M 275.136719 245.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.4375 245.445312 C 272.4375 245.328125 272.34375 245.234375 272.226562 245.234375 C 272.109375 245.234375 272.015625 245.328125 272.015625 245.445312 C 272.015625 245.5625 272.109375 245.65625 272.226562 245.65625 C 272.34375 245.65625 272.4375 245.5625 272.4375 245.445312 Z M 272.4375 245.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.832031 245.476562 C 271.832031 245.359375 271.738281 245.265625 271.621094 245.265625 C 271.503906 245.265625 271.410156 245.359375 271.410156 245.476562 C 271.410156 245.59375 271.503906 245.6875 271.621094 245.6875 C 271.738281 245.6875 271.832031 245.59375 271.832031 245.476562 Z M 271.832031 245.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.296875 246.148438 C 272.296875 246.03125 272.203125 245.9375 272.085938 245.9375 C 271.96875 245.9375 271.875 246.03125 271.875 246.148438 C 271.875 246.265625 271.96875 246.359375 272.085938 246.359375 C 272.203125 246.359375 272.296875 246.265625 272.296875 246.148438 Z M 272.296875 246.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.773438 246.5625 C 271.773438 246.445312 271.679688 246.351562 271.5625 246.351562 C 271.445312 246.351562 271.351562 246.445312 271.351562 246.5625 C 271.351562 246.679688 271.445312 246.773438 271.5625 246.773438 C 271.679688 246.773438 271.773438 246.679688 271.773438 246.5625 Z M 271.773438 246.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.195312 250.574219 C 274.195312 250.457031 274.101562 250.363281 273.984375 250.363281 C 273.867188 250.363281 273.773438 250.457031 273.773438 250.574219 C 273.773438 250.691406 273.867188 250.785156 273.984375 250.785156 C 274.101562 250.785156 274.195312 250.691406 274.195312 250.574219 Z M 274.195312 250.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.613281 250.855469 C 274.613281 250.738281 274.519531 250.644531 274.402344 250.644531 C 274.285156 250.644531 274.191406 250.738281 274.191406 250.855469 C 274.191406 250.972656 274.285156 251.066406 274.402344 251.066406 C 274.519531 251.066406 274.613281 250.972656 274.613281 250.855469 Z M 274.613281 250.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.761719 253.820312 C 272.761719 253.703125 272.667969 253.609375 272.550781 253.609375 C 272.433594 253.609375 272.339844 253.703125 272.339844 253.820312 C 272.339844 253.9375 272.433594 254.03125 272.550781 254.03125 C 272.667969 254.03125 272.761719 253.9375 272.761719 253.820312 Z M 272.761719 253.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.125 253.746094 C 273.125 253.628906 273.03125 253.535156 272.914062 253.535156 C 272.796875 253.535156 272.703125 253.628906 272.703125 253.746094 C 272.703125 253.863281 272.796875 253.957031 272.914062 253.957031 C 273.03125 253.957031 273.125 253.863281 273.125 253.746094 Z M 273.125 253.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.8125 255.324219 C 272.8125 255.207031 272.71875 255.113281 272.601562 255.113281 C 272.484375 255.113281 272.390625 255.207031 272.390625 255.324219 C 272.390625 255.441406 272.484375 255.535156 272.601562 255.535156 C 272.71875 255.535156 272.8125 255.441406 272.8125 255.324219 Z M 272.8125 255.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.25 257.464844 C 271.25 257.347656 271.15625 257.253906 271.039062 257.253906 C 270.921875 257.253906 270.828125 257.347656 270.828125 257.464844 C 270.828125 257.582031 270.921875 257.675781 271.039062 257.675781 C 271.15625 257.675781 271.25 257.582031 271.25 257.464844 Z M 271.25 257.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.410156 257.132812 C 271.410156 257.015625 271.316406 256.921875 271.199219 256.921875 C 271.082031 256.921875 270.988281 257.015625 270.988281 257.132812 C 270.988281 257.25 271.082031 257.34375 271.199219 257.34375 C 271.316406 257.34375 271.410156 257.25 271.410156 257.132812 Z M 271.410156 257.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.421875 258.226562 C 269.421875 258.109375 269.328125 258.015625 269.210938 258.015625 C 269.09375 258.015625 269 258.109375 269 258.226562 C 269 258.34375 269.09375 258.4375 269.210938 258.4375 C 269.328125 258.4375 269.421875 258.34375 269.421875 258.226562 Z M 269.421875 258.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.289062 253.753906 C 268.289062 253.636719 268.195312 253.542969 268.078125 253.542969 C 267.960938 253.542969 267.867188 253.636719 267.867188 253.753906 C 267.867188 253.871094 267.960938 253.964844 268.078125 253.964844 C 268.195312 253.964844 268.289062 253.871094 268.289062 253.753906 Z M 268.289062 253.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.378906 252.257812 C 269.378906 252.140625 269.285156 252.046875 269.167969 252.046875 C 269.050781 252.046875 268.957031 252.140625 268.957031 252.257812 C 268.957031 252.375 269.050781 252.46875 269.167969 252.46875 C 269.285156 252.46875 269.378906 252.375 269.378906 252.257812 Z M 269.378906 252.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.433594 250.925781 C 268.433594 250.808594 268.339844 250.714844 268.222656 250.714844 C 268.105469 250.714844 268.011719 250.808594 268.011719 250.925781 C 268.011719 251.042969 268.105469 251.136719 268.222656 251.136719 C 268.339844 251.136719 268.433594 251.042969 268.433594 250.925781 Z M 268.433594 250.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.652344 251.394531 C 268.652344 251.277344 268.558594 251.183594 268.441406 251.183594 C 268.324219 251.183594 268.230469 251.277344 268.230469 251.394531 C 268.230469 251.511719 268.324219 251.605469 268.441406 251.605469 C 268.558594 251.605469 268.652344 251.511719 268.652344 251.394531 Z M 268.652344 251.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.996094 251.695312 C 265.996094 251.578125 265.902344 251.484375 265.785156 251.484375 C 265.667969 251.484375 265.574219 251.578125 265.574219 251.695312 C 265.574219 251.8125 265.667969 251.90625 265.785156 251.90625 C 265.902344 251.90625 265.996094 251.8125 265.996094 251.695312 Z M 265.996094 251.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.800781 250.214844 C 262.800781 250.097656 262.707031 250.003906 262.589844 250.003906 C 262.472656 250.003906 262.378906 250.097656 262.378906 250.214844 C 262.378906 250.332031 262.472656 250.425781 262.589844 250.425781 C 262.707031 250.425781 262.800781 250.332031 262.800781 250.214844 Z M 262.800781 250.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.949219 249.9375 C 263.949219 249.820312 263.855469 249.726562 263.738281 249.726562 C 263.621094 249.726562 263.527344 249.820312 263.527344 249.9375 C 263.527344 250.054688 263.621094 250.148438 263.738281 250.148438 C 263.855469 250.148438 263.949219 250.054688 263.949219 249.9375 Z M 263.949219 249.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.117188 248.703125 C 264.117188 248.585938 264.023438 248.492188 263.90625 248.492188 C 263.789062 248.492188 263.695312 248.585938 263.695312 248.703125 C 263.695312 248.820312 263.789062 248.914062 263.90625 248.914062 C 264.023438 248.914062 264.117188 248.820312 264.117188 248.703125 Z M 264.117188 248.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.835938 247.648438 C 263.835938 247.53125 263.742188 247.4375 263.625 247.4375 C 263.507812 247.4375 263.414062 247.53125 263.414062 247.648438 C 263.414062 247.765625 263.507812 247.859375 263.625 247.859375 C 263.742188 247.859375 263.835938 247.765625 263.835938 247.648438 Z M 263.835938 247.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.214844 249.238281 C 266.214844 249.121094 266.121094 249.027344 266.003906 249.027344 C 265.886719 249.027344 265.792969 249.121094 265.792969 249.238281 C 265.792969 249.355469 265.886719 249.449219 266.003906 249.449219 C 266.121094 249.449219 266.214844 249.355469 266.214844 249.238281 Z M 266.214844 249.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.757812 250.613281 C 265.757812 250.496094 265.664062 250.402344 265.546875 250.402344 C 265.429688 250.402344 265.335938 250.496094 265.335938 250.613281 C 265.335938 250.730469 265.429688 250.824219 265.546875 250.824219 C 265.664062 250.824219 265.757812 250.730469 265.757812 250.613281 Z M 265.757812 250.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.617188 246.335938 C 264.617188 246.21875 264.523438 246.125 264.40625 246.125 C 264.289062 246.125 264.195312 246.21875 264.195312 246.335938 C 264.195312 246.453125 264.289062 246.546875 264.40625 246.546875 C 264.523438 246.546875 264.617188 246.453125 264.617188 246.335938 Z M 264.617188 246.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.703125 246.253906 C 264.703125 246.136719 264.609375 246.042969 264.492188 246.042969 C 264.375 246.042969 264.28125 246.136719 264.28125 246.253906 C 264.28125 246.371094 264.375 246.464844 264.492188 246.464844 C 264.609375 246.464844 264.703125 246.371094 264.703125 246.253906 Z M 264.703125 246.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266 246.808594 C 266 246.691406 265.90625 246.597656 265.789062 246.597656 C 265.671875 246.597656 265.578125 246.691406 265.578125 246.808594 C 265.578125 246.925781 265.671875 247.019531 265.789062 247.019531 C 265.90625 247.019531 266 246.925781 266 246.808594 Z M 266 246.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.542969 243.929688 C 267.542969 243.8125 267.449219 243.71875 267.332031 243.71875 C 267.214844 243.71875 267.121094 243.8125 267.121094 243.929688 C 267.121094 244.046875 267.214844 244.140625 267.332031 244.140625 C 267.449219 244.140625 267.542969 244.046875 267.542969 243.929688 Z M 267.542969 243.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.101562 243.171875 C 269.101562 243.054688 269.007812 242.960938 268.890625 242.960938 C 268.773438 242.960938 268.679688 243.054688 268.679688 243.171875 C 268.679688 243.289062 268.773438 243.382812 268.890625 243.382812 C 269.007812 243.382812 269.101562 243.289062 269.101562 243.171875 Z M 269.101562 243.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.105469 241.476562 C 268.105469 241.359375 268.011719 241.265625 267.894531 241.265625 C 267.777344 241.265625 267.683594 241.359375 267.683594 241.476562 C 267.683594 241.59375 267.777344 241.6875 267.894531 241.6875 C 268.011719 241.6875 268.105469 241.59375 268.105469 241.476562 Z M 268.105469 241.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.484375 242.265625 C 266.484375 242.148438 266.390625 242.054688 266.273438 242.054688 C 266.15625 242.054688 266.0625 242.148438 266.0625 242.265625 C 266.0625 242.382812 266.15625 242.476562 266.273438 242.476562 C 266.390625 242.476562 266.484375 242.382812 266.484375 242.265625 Z M 266.484375 242.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.800781 244.753906 C 263.800781 244.636719 263.707031 244.542969 263.589844 244.542969 C 263.472656 244.542969 263.378906 244.636719 263.378906 244.753906 C 263.378906 244.871094 263.472656 244.964844 263.589844 244.964844 C 263.707031 244.964844 263.800781 244.871094 263.800781 244.753906 Z M 263.800781 244.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.542969 243.875 C 264.542969 243.757812 264.449219 243.664062 264.332031 243.664062 C 264.214844 243.664062 264.121094 243.757812 264.121094 243.875 C 264.121094 243.992188 264.214844 244.085938 264.332031 244.085938 C 264.449219 244.085938 264.542969 243.992188 264.542969 243.875 Z M 264.542969 243.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.773438 244.246094 C 262.773438 244.128906 262.679688 244.035156 262.5625 244.035156 C 262.445312 244.035156 262.351562 244.128906 262.351562 244.246094 C 262.351562 244.363281 262.445312 244.457031 262.5625 244.457031 C 262.679688 244.457031 262.773438 244.363281 262.773438 244.246094 Z M 262.773438 244.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.457031 238.257812 C 260.457031 238.140625 260.363281 238.046875 260.246094 238.046875 C 260.128906 238.046875 260.035156 238.140625 260.035156 238.257812 C 260.035156 238.375 260.128906 238.46875 260.246094 238.46875 C 260.363281 238.46875 260.457031 238.375 260.457031 238.257812 Z M 260.457031 238.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.886719 239.40625 C 265.886719 239.289062 265.792969 239.195312 265.675781 239.195312 C 265.558594 239.195312 265.464844 239.289062 265.464844 239.40625 C 265.464844 239.523438 265.558594 239.617188 265.675781 239.617188 C 265.792969 239.617188 265.886719 239.523438 265.886719 239.40625 Z M 265.886719 239.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.945312 240.710938 C 266.945312 240.59375 266.851562 240.5 266.734375 240.5 C 266.617188 240.5 266.523438 240.59375 266.523438 240.710938 C 266.523438 240.828125 266.617188 240.921875 266.734375 240.921875 C 266.851562 240.921875 266.945312 240.828125 266.945312 240.710938 Z M 266.945312 240.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.917969 239.785156 C 265.917969 239.667969 265.824219 239.574219 265.707031 239.574219 C 265.589844 239.574219 265.496094 239.667969 265.496094 239.785156 C 265.496094 239.902344 265.589844 239.996094 265.707031 239.996094 C 265.824219 239.996094 265.917969 239.902344 265.917969 239.785156 Z M 265.917969 239.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.234375 239.101562 C 268.234375 238.984375 268.140625 238.890625 268.023438 238.890625 C 267.90625 238.890625 267.8125 238.984375 267.8125 239.101562 C 267.8125 239.21875 267.90625 239.3125 268.023438 239.3125 C 268.140625 239.3125 268.234375 239.21875 268.234375 239.101562 Z M 268.234375 239.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.363281 239.175781 C 267.363281 239.058594 267.269531 238.964844 267.152344 238.964844 C 267.035156 238.964844 266.941406 239.058594 266.941406 239.175781 C 266.941406 239.292969 267.035156 239.386719 267.152344 239.386719 C 267.269531 239.386719 267.363281 239.292969 267.363281 239.175781 Z M 267.363281 239.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.757812 238.433594 C 266.757812 238.316406 266.664062 238.222656 266.546875 238.222656 C 266.429688 238.222656 266.335938 238.316406 266.335938 238.433594 C 266.335938 238.550781 266.429688 238.644531 266.546875 238.644531 C 266.664062 238.644531 266.757812 238.550781 266.757812 238.433594 Z M 266.757812 238.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.601562 237.214844 C 266.601562 237.097656 266.507812 237.003906 266.390625 237.003906 C 266.273438 237.003906 266.179688 237.097656 266.179688 237.214844 C 266.179688 237.332031 266.273438 237.425781 266.390625 237.425781 C 266.507812 237.425781 266.601562 237.332031 266.601562 237.214844 Z M 266.601562 237.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.203125 232.574219 C 266.203125 232.457031 266.109375 232.363281 265.992188 232.363281 C 265.875 232.363281 265.78125 232.457031 265.78125 232.574219 C 265.78125 232.691406 265.875 232.785156 265.992188 232.785156 C 266.109375 232.785156 266.203125 232.691406 266.203125 232.574219 Z M 266.203125 232.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.914062 234.886719 C 265.914062 234.769531 265.820312 234.675781 265.703125 234.675781 C 265.585938 234.675781 265.492188 234.769531 265.492188 234.886719 C 265.492188 235.003906 265.585938 235.097656 265.703125 235.097656 C 265.820312 235.097656 265.914062 235.003906 265.914062 234.886719 Z M 265.914062 234.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.828125 235.359375 C 267.828125 235.242188 267.734375 235.148438 267.617188 235.148438 C 267.5 235.148438 267.40625 235.242188 267.40625 235.359375 C 267.40625 235.476562 267.5 235.570312 267.617188 235.570312 C 267.734375 235.570312 267.828125 235.476562 267.828125 235.359375 Z M 267.828125 235.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.304688 237.320312 C 266.304688 237.203125 266.210938 237.109375 266.09375 237.109375 C 265.976562 237.109375 265.882812 237.203125 265.882812 237.320312 C 265.882812 237.4375 265.976562 237.53125 266.09375 237.53125 C 266.210938 237.53125 266.304688 237.4375 266.304688 237.320312 Z M 266.304688 237.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.394531 235.597656 C 265.394531 235.480469 265.300781 235.386719 265.183594 235.386719 C 265.066406 235.386719 264.972656 235.480469 264.972656 235.597656 C 264.972656 235.714844 265.066406 235.808594 265.183594 235.808594 C 265.300781 235.808594 265.394531 235.714844 265.394531 235.597656 Z M 265.394531 235.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.957031 235.003906 C 265.957031 234.886719 265.863281 234.792969 265.746094 234.792969 C 265.628906 234.792969 265.535156 234.886719 265.535156 235.003906 C 265.535156 235.121094 265.628906 235.214844 265.746094 235.214844 C 265.863281 235.214844 265.957031 235.121094 265.957031 235.003906 Z M 265.957031 235.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.507812 231.28125 C 262.507812 231.164062 262.414062 231.070312 262.296875 231.070312 C 262.179688 231.070312 262.085938 231.164062 262.085938 231.28125 C 262.085938 231.398438 262.179688 231.492188 262.296875 231.492188 C 262.414062 231.492188 262.507812 231.398438 262.507812 231.28125 Z M 262.507812 231.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.046875 233.125 C 264.046875 233.007812 263.953125 232.914062 263.835938 232.914062 C 263.71875 232.914062 263.625 233.007812 263.625 233.125 C 263.625 233.242188 263.71875 233.335938 263.835938 233.335938 C 263.953125 233.335938 264.046875 233.242188 264.046875 233.125 Z M 264.046875 233.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.328125 235.78125 C 263.328125 235.664062 263.234375 235.570312 263.117188 235.570312 C 263 235.570312 262.90625 235.664062 262.90625 235.78125 C 262.90625 235.898438 263 235.992188 263.117188 235.992188 C 263.234375 235.992188 263.328125 235.898438 263.328125 235.78125 Z M 263.328125 235.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.734375 234.746094 C 262.734375 234.628906 262.640625 234.535156 262.523438 234.535156 C 262.40625 234.535156 262.3125 234.628906 262.3125 234.746094 C 262.3125 234.863281 262.40625 234.957031 262.523438 234.957031 C 262.640625 234.957031 262.734375 234.863281 262.734375 234.746094 Z M 262.734375 234.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.195312 234.851562 C 264.195312 234.734375 264.101562 234.640625 263.984375 234.640625 C 263.867188 234.640625 263.773438 234.734375 263.773438 234.851562 C 263.773438 234.96875 263.867188 235.0625 263.984375 235.0625 C 264.101562 235.0625 264.195312 234.96875 264.195312 234.851562 Z M 264.195312 234.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.210938 237.308594 C 265.210938 237.191406 265.117188 237.097656 265 237.097656 C 264.882812 237.097656 264.789062 237.191406 264.789062 237.308594 C 264.789062 237.425781 264.882812 237.519531 265 237.519531 C 265.117188 237.519531 265.210938 237.425781 265.210938 237.308594 Z M 265.210938 237.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.589844 239.585938 C 261.589844 239.46875 261.496094 239.375 261.378906 239.375 C 261.261719 239.375 261.167969 239.46875 261.167969 239.585938 C 261.167969 239.703125 261.261719 239.796875 261.378906 239.796875 C 261.496094 239.796875 261.589844 239.703125 261.589844 239.585938 Z M 261.589844 239.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.941406 236.289062 C 258.941406 236.171875 258.847656 236.078125 258.730469 236.078125 C 258.613281 236.078125 258.519531 236.171875 258.519531 236.289062 C 258.519531 236.40625 258.613281 236.5 258.730469 236.5 C 258.847656 236.5 258.941406 236.40625 258.941406 236.289062 Z M 258.941406 236.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.515625 239.457031 C 258.515625 239.339844 258.421875 239.246094 258.304688 239.246094 C 258.1875 239.246094 258.09375 239.339844 258.09375 239.457031 C 258.09375 239.574219 258.1875 239.667969 258.304688 239.667969 C 258.421875 239.667969 258.515625 239.574219 258.515625 239.457031 Z M 258.515625 239.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.265625 239.507812 C 254.265625 239.390625 254.171875 239.296875 254.054688 239.296875 C 253.9375 239.296875 253.84375 239.390625 253.84375 239.507812 C 253.84375 239.625 253.9375 239.71875 254.054688 239.71875 C 254.171875 239.71875 254.265625 239.625 254.265625 239.507812 Z M 254.265625 239.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.808594 241.210938 C 255.808594 241.09375 255.714844 241 255.597656 241 C 255.480469 241 255.386719 241.09375 255.386719 241.210938 C 255.386719 241.328125 255.480469 241.421875 255.597656 241.421875 C 255.714844 241.421875 255.808594 241.328125 255.808594 241.210938 Z M 255.808594 241.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.050781 243.425781 C 254.050781 243.308594 253.957031 243.214844 253.839844 243.214844 C 253.722656 243.214844 253.628906 243.308594 253.628906 243.425781 C 253.628906 243.542969 253.722656 243.636719 253.839844 243.636719 C 253.957031 243.636719 254.050781 243.542969 254.050781 243.425781 Z M 254.050781 243.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.519531 243.164062 C 251.519531 243.046875 251.425781 242.953125 251.308594 242.953125 C 251.191406 242.953125 251.097656 243.046875 251.097656 243.164062 C 251.097656 243.28125 251.191406 243.375 251.308594 243.375 C 251.425781 243.375 251.519531 243.28125 251.519531 243.164062 Z M 251.519531 243.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.976562 245.007812 C 251.976562 244.890625 251.882812 244.796875 251.765625 244.796875 C 251.648438 244.796875 251.554688 244.890625 251.554688 245.007812 C 251.554688 245.125 251.648438 245.21875 251.765625 245.21875 C 251.882812 245.21875 251.976562 245.125 251.976562 245.007812 Z M 251.976562 245.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.273438 240.269531 C 251.273438 240.152344 251.179688 240.058594 251.0625 240.058594 C 250.945312 240.058594 250.851562 240.152344 250.851562 240.269531 C 250.851562 240.386719 250.945312 240.480469 251.0625 240.480469 C 251.179688 240.480469 251.273438 240.386719 251.273438 240.269531 Z M 251.273438 240.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.589844 242.804688 C 254.589844 242.6875 254.496094 242.59375 254.378906 242.59375 C 254.261719 242.59375 254.167969 242.6875 254.167969 242.804688 C 254.167969 242.921875 254.261719 243.015625 254.378906 243.015625 C 254.496094 243.015625 254.589844 242.921875 254.589844 242.804688 Z M 254.589844 242.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.546875 243.746094 C 253.546875 243.628906 253.453125 243.535156 253.335938 243.535156 C 253.21875 243.535156 253.125 243.628906 253.125 243.746094 C 253.125 243.863281 253.21875 243.957031 253.335938 243.957031 C 253.453125 243.957031 253.546875 243.863281 253.546875 243.746094 Z M 253.546875 243.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.921875 243.738281 C 252.921875 243.621094 252.828125 243.527344 252.710938 243.527344 C 252.59375 243.527344 252.5 243.621094 252.5 243.738281 C 252.5 243.855469 252.59375 243.949219 252.710938 243.949219 C 252.828125 243.949219 252.921875 243.855469 252.921875 243.738281 Z M 252.921875 243.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.242188 244.367188 C 258.242188 244.25 258.148438 244.15625 258.03125 244.15625 C 257.914062 244.15625 257.820312 244.25 257.820312 244.367188 C 257.820312 244.484375 257.914062 244.578125 258.03125 244.578125 C 258.148438 244.578125 258.242188 244.484375 258.242188 244.367188 Z M 258.242188 244.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.371094 240.660156 C 258.371094 240.542969 258.277344 240.449219 258.160156 240.449219 C 258.042969 240.449219 257.949219 240.542969 257.949219 240.660156 C 257.949219 240.777344 258.042969 240.871094 258.160156 240.871094 C 258.277344 240.871094 258.371094 240.777344 258.371094 240.660156 Z M 258.371094 240.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.039062 240.785156 C 256.039062 240.667969 255.945312 240.574219 255.828125 240.574219 C 255.710938 240.574219 255.617188 240.667969 255.617188 240.785156 C 255.617188 240.902344 255.710938 240.996094 255.828125 240.996094 C 255.945312 240.996094 256.039062 240.902344 256.039062 240.785156 Z M 256.039062 240.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.761719 240.875 C 256.761719 240.757812 256.667969 240.664062 256.550781 240.664062 C 256.433594 240.664062 256.339844 240.757812 256.339844 240.875 C 256.339844 240.992188 256.433594 241.085938 256.550781 241.085938 C 256.667969 241.085938 256.761719 240.992188 256.761719 240.875 Z M 256.761719 240.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.710938 239.542969 C 255.710938 239.425781 255.617188 239.332031 255.5 239.332031 C 255.382812 239.332031 255.289062 239.425781 255.289062 239.542969 C 255.289062 239.660156 255.382812 239.753906 255.5 239.753906 C 255.617188 239.753906 255.710938 239.660156 255.710938 239.542969 Z M 255.710938 239.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.375 240.5625 C 256.375 240.445312 256.28125 240.351562 256.164062 240.351562 C 256.046875 240.351562 255.953125 240.445312 255.953125 240.5625 C 255.953125 240.679688 256.046875 240.773438 256.164062 240.773438 C 256.28125 240.773438 256.375 240.679688 256.375 240.5625 Z M 256.375 240.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.753906 240.566406 C 254.753906 240.449219 254.660156 240.355469 254.542969 240.355469 C 254.425781 240.355469 254.332031 240.449219 254.332031 240.566406 C 254.332031 240.683594 254.425781 240.777344 254.542969 240.777344 C 254.660156 240.777344 254.753906 240.683594 254.753906 240.566406 Z M 254.753906 240.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.085938 236.773438 C 254.085938 236.65625 253.992188 236.5625 253.875 236.5625 C 253.757812 236.5625 253.664062 236.65625 253.664062 236.773438 C 253.664062 236.890625 253.757812 236.984375 253.875 236.984375 C 253.992188 236.984375 254.085938 236.890625 254.085938 236.773438 Z M 254.085938 236.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.5625 239.570312 C 255.5625 239.453125 255.46875 239.359375 255.351562 239.359375 C 255.234375 239.359375 255.140625 239.453125 255.140625 239.570312 C 255.140625 239.6875 255.234375 239.78125 255.351562 239.78125 C 255.46875 239.78125 255.5625 239.6875 255.5625 239.570312 Z M 255.5625 239.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.382812 239.546875 C 254.382812 239.429688 254.289062 239.335938 254.171875 239.335938 C 254.054688 239.335938 253.960938 239.429688 253.960938 239.546875 C 253.960938 239.664062 254.054688 239.757812 254.171875 239.757812 C 254.289062 239.757812 254.382812 239.664062 254.382812 239.546875 Z M 254.382812 239.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.425781 239.679688 C 252.425781 239.5625 252.332031 239.46875 252.214844 239.46875 C 252.097656 239.46875 252.003906 239.5625 252.003906 239.679688 C 252.003906 239.796875 252.097656 239.890625 252.214844 239.890625 C 252.332031 239.890625 252.425781 239.796875 252.425781 239.679688 Z M 252.425781 239.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.695312 239.390625 C 252.695312 239.273438 252.601562 239.179688 252.484375 239.179688 C 252.367188 239.179688 252.273438 239.273438 252.273438 239.390625 C 252.273438 239.507812 252.367188 239.601562 252.484375 239.601562 C 252.601562 239.601562 252.695312 239.507812 252.695312 239.390625 Z M 252.695312 239.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.972656 241.242188 C 250.972656 241.125 250.878906 241.03125 250.761719 241.03125 C 250.644531 241.03125 250.550781 241.125 250.550781 241.242188 C 250.550781 241.359375 250.644531 241.453125 250.761719 241.453125 C 250.878906 241.453125 250.972656 241.359375 250.972656 241.242188 Z M 250.972656 241.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.53125 242.601562 C 251.53125 242.484375 251.4375 242.390625 251.320312 242.390625 C 251.203125 242.390625 251.109375 242.484375 251.109375 242.601562 C 251.109375 242.71875 251.203125 242.8125 251.320312 242.8125 C 251.4375 242.8125 251.53125 242.71875 251.53125 242.601562 Z M 251.53125 242.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.953125 245.769531 C 251.953125 245.652344 251.859375 245.558594 251.742188 245.558594 C 251.625 245.558594 251.53125 245.652344 251.53125 245.769531 C 251.53125 245.886719 251.625 245.980469 251.742188 245.980469 C 251.859375 245.980469 251.953125 245.886719 251.953125 245.769531 Z M 251.953125 245.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.5 247.84375 C 251.5 247.726562 251.40625 247.632812 251.289062 247.632812 C 251.171875 247.632812 251.078125 247.726562 251.078125 247.84375 C 251.078125 247.960938 251.171875 248.054688 251.289062 248.054688 C 251.40625 248.054688 251.5 247.960938 251.5 247.84375 Z M 251.5 247.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.253906 247.039062 C 250.253906 246.921875 250.160156 246.828125 250.042969 246.828125 C 249.925781 246.828125 249.832031 246.921875 249.832031 247.039062 C 249.832031 247.15625 249.925781 247.25 250.042969 247.25 C 250.160156 247.25 250.253906 247.15625 250.253906 247.039062 Z M 250.253906 247.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.0625 245.34375 C 252.0625 245.226562 251.96875 245.132812 251.851562 245.132812 C 251.734375 245.132812 251.640625 245.226562 251.640625 245.34375 C 251.640625 245.460938 251.734375 245.554688 251.851562 245.554688 C 251.96875 245.554688 252.0625 245.460938 252.0625 245.34375 Z M 252.0625 245.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.082031 248.074219 C 252.082031 247.957031 251.988281 247.863281 251.871094 247.863281 C 251.753906 247.863281 251.660156 247.957031 251.660156 248.074219 C 251.660156 248.191406 251.753906 248.285156 251.871094 248.285156 C 251.988281 248.285156 252.082031 248.191406 252.082031 248.074219 Z M 252.082031 248.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.605469 244.332031 C 252.605469 244.214844 252.511719 244.121094 252.394531 244.121094 C 252.277344 244.121094 252.183594 244.214844 252.183594 244.332031 C 252.183594 244.449219 252.277344 244.542969 252.394531 244.542969 C 252.511719 244.542969 252.605469 244.449219 252.605469 244.332031 Z M 252.605469 244.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.046875 241.558594 C 251.046875 241.441406 250.953125 241.347656 250.835938 241.347656 C 250.71875 241.347656 250.625 241.441406 250.625 241.558594 C 250.625 241.675781 250.71875 241.769531 250.835938 241.769531 C 250.953125 241.769531 251.046875 241.675781 251.046875 241.558594 Z M 251.046875 241.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.097656 241.015625 C 249.097656 240.898438 249.003906 240.804688 248.886719 240.804688 C 248.769531 240.804688 248.675781 240.898438 248.675781 241.015625 C 248.675781 241.132812 248.769531 241.226562 248.886719 241.226562 C 249.003906 241.226562 249.097656 241.132812 249.097656 241.015625 Z M 249.097656 241.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.492188 241.289062 C 247.492188 241.171875 247.398438 241.078125 247.28125 241.078125 C 247.164062 241.078125 247.070312 241.171875 247.070312 241.289062 C 247.070312 241.40625 247.164062 241.5 247.28125 241.5 C 247.398438 241.5 247.492188 241.40625 247.492188 241.289062 Z M 247.492188 241.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.117188 242.230469 C 246.117188 242.113281 246.023438 242.019531 245.90625 242.019531 C 245.789062 242.019531 245.695312 242.113281 245.695312 242.230469 C 245.695312 242.347656 245.789062 242.441406 245.90625 242.441406 C 246.023438 242.441406 246.117188 242.347656 246.117188 242.230469 Z M 246.117188 242.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.898438 243.898438 C 245.898438 243.78125 245.804688 243.6875 245.6875 243.6875 C 245.570312 243.6875 245.476562 243.78125 245.476562 243.898438 C 245.476562 244.015625 245.570312 244.109375 245.6875 244.109375 C 245.804688 244.109375 245.898438 244.015625 245.898438 243.898438 Z M 245.898438 243.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.703125 245.78125 C 248.703125 245.664062 248.609375 245.570312 248.492188 245.570312 C 248.375 245.570312 248.28125 245.664062 248.28125 245.78125 C 248.28125 245.898438 248.375 245.992188 248.492188 245.992188 C 248.609375 245.992188 248.703125 245.898438 248.703125 245.78125 Z M 248.703125 245.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.292969 248.023438 C 250.292969 247.90625 250.199219 247.8125 250.082031 247.8125 C 249.964844 247.8125 249.871094 247.90625 249.871094 248.023438 C 249.871094 248.140625 249.964844 248.234375 250.082031 248.234375 C 250.199219 248.234375 250.292969 248.140625 250.292969 248.023438 Z M 250.292969 248.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.171875 247.820312 C 248.171875 247.703125 248.078125 247.609375 247.960938 247.609375 C 247.84375 247.609375 247.75 247.703125 247.75 247.820312 C 247.75 247.9375 247.84375 248.03125 247.960938 248.03125 C 248.078125 248.03125 248.171875 247.9375 248.171875 247.820312 Z M 248.171875 247.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.738281 244.941406 C 247.738281 244.824219 247.644531 244.730469 247.527344 244.730469 C 247.410156 244.730469 247.316406 244.824219 247.316406 244.941406 C 247.316406 245.058594 247.410156 245.152344 247.527344 245.152344 C 247.644531 245.152344 247.738281 245.058594 247.738281 244.941406 Z M 247.738281 244.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.15625 245.984375 C 247.15625 245.867188 247.0625 245.773438 246.945312 245.773438 C 246.828125 245.773438 246.734375 245.867188 246.734375 245.984375 C 246.734375 246.101562 246.828125 246.195312 246.945312 246.195312 C 247.0625 246.195312 247.15625 246.101562 247.15625 245.984375 Z M 247.15625 245.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.355469 246.191406 C 247.355469 246.074219 247.261719 245.980469 247.144531 245.980469 C 247.027344 245.980469 246.933594 246.074219 246.933594 246.191406 C 246.933594 246.308594 247.027344 246.402344 247.144531 246.402344 C 247.261719 246.402344 247.355469 246.308594 247.355469 246.191406 Z M 247.355469 246.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.503906 247.273438 C 244.503906 247.15625 244.410156 247.0625 244.292969 247.0625 C 244.175781 247.0625 244.082031 247.15625 244.082031 247.273438 C 244.082031 247.390625 244.175781 247.484375 244.292969 247.484375 C 244.410156 247.484375 244.503906 247.390625 244.503906 247.273438 Z M 244.503906 247.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.015625 247.070312 C 245.015625 246.953125 244.921875 246.859375 244.804688 246.859375 C 244.6875 246.859375 244.59375 246.953125 244.59375 247.070312 C 244.59375 247.1875 244.6875 247.28125 244.804688 247.28125 C 244.921875 247.28125 245.015625 247.1875 245.015625 247.070312 Z M 245.015625 247.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.265625 248.464844 C 248.265625 248.347656 248.171875 248.253906 248.054688 248.253906 C 247.9375 248.253906 247.84375 248.347656 247.84375 248.464844 C 247.84375 248.582031 247.9375 248.675781 248.054688 248.675781 C 248.171875 248.675781 248.265625 248.582031 248.265625 248.464844 Z M 248.265625 248.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.183594 249.761719 C 249.183594 249.644531 249.089844 249.550781 248.972656 249.550781 C 248.855469 249.550781 248.761719 249.644531 248.761719 249.761719 C 248.761719 249.878906 248.855469 249.972656 248.972656 249.972656 C 249.089844 249.972656 249.183594 249.878906 249.183594 249.761719 Z M 249.183594 249.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.132812 249.039062 C 247.132812 248.921875 247.039062 248.828125 246.921875 248.828125 C 246.804688 248.828125 246.710938 248.921875 246.710938 249.039062 C 246.710938 249.15625 246.804688 249.25 246.921875 249.25 C 247.039062 249.25 247.132812 249.15625 247.132812 249.039062 Z M 247.132812 249.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.214844 245.078125 C 252.214844 244.960938 252.121094 244.867188 252.003906 244.867188 C 251.886719 244.867188 251.792969 244.960938 251.792969 245.078125 C 251.792969 245.195312 251.886719 245.289062 252.003906 245.289062 C 252.121094 245.289062 252.214844 245.195312 252.214844 245.078125 Z M 252.214844 245.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.523438 244.996094 C 253.523438 244.878906 253.429688 244.785156 253.3125 244.785156 C 253.195312 244.785156 253.101562 244.878906 253.101562 244.996094 C 253.101562 245.113281 253.195312 245.207031 253.3125 245.207031 C 253.429688 245.207031 253.523438 245.113281 253.523438 244.996094 Z M 253.523438 244.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.277344 244.929688 C 253.277344 244.8125 253.183594 244.71875 253.066406 244.71875 C 252.949219 244.71875 252.855469 244.8125 252.855469 244.929688 C 252.855469 245.046875 252.949219 245.140625 253.066406 245.140625 C 253.183594 245.140625 253.277344 245.046875 253.277344 244.929688 Z M 253.277344 244.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.703125 243.410156 C 257.703125 243.292969 257.609375 243.199219 257.492188 243.199219 C 257.375 243.199219 257.28125 243.292969 257.28125 243.410156 C 257.28125 243.527344 257.375 243.621094 257.492188 243.621094 C 257.609375 243.621094 257.703125 243.527344 257.703125 243.410156 Z M 257.703125 243.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.898438 243.296875 C 256.898438 243.179688 256.804688 243.085938 256.6875 243.085938 C 256.570312 243.085938 256.476562 243.179688 256.476562 243.296875 C 256.476562 243.414062 256.570312 243.507812 256.6875 243.507812 C 256.804688 243.507812 256.898438 243.414062 256.898438 243.296875 Z M 256.898438 243.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.320312 242.679688 C 258.320312 242.5625 258.226562 242.46875 258.109375 242.46875 C 257.992188 242.46875 257.898438 242.5625 257.898438 242.679688 C 257.898438 242.796875 257.992188 242.890625 258.109375 242.890625 C 258.226562 242.890625 258.320312 242.796875 258.320312 242.679688 Z M 258.320312 242.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.371094 238.695312 C 258.371094 238.578125 258.277344 238.484375 258.160156 238.484375 C 258.042969 238.484375 257.949219 238.578125 257.949219 238.695312 C 257.949219 238.8125 258.042969 238.90625 258.160156 238.90625 C 258.277344 238.90625 258.371094 238.8125 258.371094 238.695312 Z M 258.371094 238.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.230469 238.667969 C 256.230469 238.550781 256.136719 238.457031 256.019531 238.457031 C 255.902344 238.457031 255.808594 238.550781 255.808594 238.667969 C 255.808594 238.785156 255.902344 238.878906 256.019531 238.878906 C 256.136719 238.878906 256.230469 238.785156 256.230469 238.667969 Z M 256.230469 238.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.683594 238.648438 C 257.683594 238.53125 257.589844 238.4375 257.472656 238.4375 C 257.355469 238.4375 257.261719 238.53125 257.261719 238.648438 C 257.261719 238.765625 257.355469 238.859375 257.472656 238.859375 C 257.589844 238.859375 257.683594 238.765625 257.683594 238.648438 Z M 257.683594 238.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.015625 238.832031 C 258.015625 238.714844 257.921875 238.621094 257.804688 238.621094 C 257.6875 238.621094 257.59375 238.714844 257.59375 238.832031 C 257.59375 238.949219 257.6875 239.042969 257.804688 239.042969 C 257.921875 239.042969 258.015625 238.949219 258.015625 238.832031 Z M 258.015625 238.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.933594 240.21875 C 260.933594 240.101562 260.839844 240.007812 260.722656 240.007812 C 260.605469 240.007812 260.511719 240.101562 260.511719 240.21875 C 260.511719 240.335938 260.605469 240.429688 260.722656 240.429688 C 260.839844 240.429688 260.933594 240.335938 260.933594 240.21875 Z M 260.933594 240.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.910156 241.898438 C 258.910156 241.78125 258.816406 241.6875 258.699219 241.6875 C 258.582031 241.6875 258.488281 241.78125 258.488281 241.898438 C 258.488281 242.015625 258.582031 242.109375 258.699219 242.109375 C 258.816406 242.109375 258.910156 242.015625 258.910156 241.898438 Z M 258.910156 241.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.074219 240.554688 C 262.074219 240.4375 261.980469 240.34375 261.863281 240.34375 C 261.746094 240.34375 261.652344 240.4375 261.652344 240.554688 C 261.652344 240.671875 261.746094 240.765625 261.863281 240.765625 C 261.980469 240.765625 262.074219 240.671875 262.074219 240.554688 Z M 262.074219 240.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.40625 238.464844 C 259.40625 238.347656 259.3125 238.253906 259.195312 238.253906 C 259.078125 238.253906 258.984375 238.347656 258.984375 238.464844 C 258.984375 238.582031 259.078125 238.675781 259.195312 238.675781 C 259.3125 238.675781 259.40625 238.582031 259.40625 238.464844 Z M 259.40625 238.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.273438 239.4375 C 259.273438 239.320312 259.179688 239.226562 259.0625 239.226562 C 258.945312 239.226562 258.851562 239.320312 258.851562 239.4375 C 258.851562 239.554688 258.945312 239.648438 259.0625 239.648438 C 259.179688 239.648438 259.273438 239.554688 259.273438 239.4375 Z M 259.273438 239.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.316406 239.875 C 260.316406 239.757812 260.222656 239.664062 260.105469 239.664062 C 259.988281 239.664062 259.894531 239.757812 259.894531 239.875 C 259.894531 239.992188 259.988281 240.085938 260.105469 240.085938 C 260.222656 240.085938 260.316406 239.992188 260.316406 239.875 Z M 260.316406 239.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.34375 239.863281 C 262.34375 239.746094 262.25 239.652344 262.132812 239.652344 C 262.015625 239.652344 261.921875 239.746094 261.921875 239.863281 C 261.921875 239.980469 262.015625 240.074219 262.132812 240.074219 C 262.25 240.074219 262.34375 239.980469 262.34375 239.863281 Z M 262.34375 239.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.253906 245.117188 C 259.253906 245 259.160156 244.90625 259.042969 244.90625 C 258.925781 244.90625 258.832031 245 258.832031 245.117188 C 258.832031 245.234375 258.925781 245.328125 259.042969 245.328125 C 259.160156 245.328125 259.253906 245.234375 259.253906 245.117188 Z M 259.253906 245.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.335938 244.691406 C 260.335938 244.574219 260.242188 244.480469 260.125 244.480469 C 260.007812 244.480469 259.914062 244.574219 259.914062 244.691406 C 259.914062 244.808594 260.007812 244.902344 260.125 244.902344 C 260.242188 244.902344 260.335938 244.808594 260.335938 244.691406 Z M 260.335938 244.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.089844 239.015625 C 257.089844 238.898438 256.996094 238.804688 256.878906 238.804688 C 256.761719 238.804688 256.667969 238.898438 256.667969 239.015625 C 256.667969 239.132812 256.761719 239.226562 256.878906 239.226562 C 256.996094 239.226562 257.089844 239.132812 257.089844 239.015625 Z M 257.089844 239.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.203125 241.949219 C 257.203125 241.832031 257.109375 241.738281 256.992188 241.738281 C 256.875 241.738281 256.78125 241.832031 256.78125 241.949219 C 256.78125 242.066406 256.875 242.160156 256.992188 242.160156 C 257.109375 242.160156 257.203125 242.066406 257.203125 241.949219 Z M 257.203125 241.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.734375 244.742188 C 257.734375 244.625 257.640625 244.53125 257.523438 244.53125 C 257.40625 244.53125 257.3125 244.625 257.3125 244.742188 C 257.3125 244.859375 257.40625 244.953125 257.523438 244.953125 C 257.640625 244.953125 257.734375 244.859375 257.734375 244.742188 Z M 257.734375 244.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.296875 243.503906 C 253.296875 243.386719 253.203125 243.292969 253.085938 243.292969 C 252.96875 243.292969 252.875 243.386719 252.875 243.503906 C 252.875 243.621094 252.96875 243.714844 253.085938 243.714844 C 253.203125 243.714844 253.296875 243.621094 253.296875 243.503906 Z M 253.296875 243.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.238281 243.527344 C 253.238281 243.410156 253.144531 243.316406 253.027344 243.316406 C 252.910156 243.316406 252.816406 243.410156 252.816406 243.527344 C 252.816406 243.644531 252.910156 243.738281 253.027344 243.738281 C 253.144531 243.738281 253.238281 243.644531 253.238281 243.527344 Z M 253.238281 243.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.761719 244.054688 C 255.761719 243.9375 255.667969 243.84375 255.550781 243.84375 C 255.433594 243.84375 255.339844 243.9375 255.339844 244.054688 C 255.339844 244.171875 255.433594 244.265625 255.550781 244.265625 C 255.667969 244.265625 255.761719 244.171875 255.761719 244.054688 Z M 255.761719 244.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.921875 242.835938 C 256.921875 242.71875 256.828125 242.625 256.710938 242.625 C 256.59375 242.625 256.5 242.71875 256.5 242.835938 C 256.5 242.953125 256.59375 243.046875 256.710938 243.046875 C 256.828125 243.046875 256.921875 242.953125 256.921875 242.835938 Z M 256.921875 242.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.472656 242.757812 C 257.472656 242.640625 257.378906 242.546875 257.261719 242.546875 C 257.144531 242.546875 257.050781 242.640625 257.050781 242.757812 C 257.050781 242.875 257.144531 242.96875 257.261719 242.96875 C 257.378906 242.96875 257.472656 242.875 257.472656 242.757812 Z M 257.472656 242.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.121094 240.839844 C 261.121094 240.722656 261.027344 240.628906 260.910156 240.628906 C 260.792969 240.628906 260.699219 240.722656 260.699219 240.839844 C 260.699219 240.957031 260.792969 241.050781 260.910156 241.050781 C 261.027344 241.050781 261.121094 240.957031 261.121094 240.839844 Z M 261.121094 240.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.371094 239.984375 C 262.371094 239.867188 262.277344 239.773438 262.160156 239.773438 C 262.042969 239.773438 261.949219 239.867188 261.949219 239.984375 C 261.949219 240.101562 262.042969 240.195312 262.160156 240.195312 C 262.277344 240.195312 262.371094 240.101562 262.371094 239.984375 Z M 262.371094 239.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.972656 238.191406 C 262.972656 238.074219 262.878906 237.980469 262.761719 237.980469 C 262.644531 237.980469 262.550781 238.074219 262.550781 238.191406 C 262.550781 238.308594 262.644531 238.402344 262.761719 238.402344 C 262.878906 238.402344 262.972656 238.308594 262.972656 238.191406 Z M 262.972656 238.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.574219 238.574219 C 262.574219 238.457031 262.480469 238.363281 262.363281 238.363281 C 262.246094 238.363281 262.152344 238.457031 262.152344 238.574219 C 262.152344 238.691406 262.246094 238.785156 262.363281 238.785156 C 262.480469 238.785156 262.574219 238.691406 262.574219 238.574219 Z M 262.574219 238.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.882812 238.238281 C 269.882812 238.121094 269.789062 238.027344 269.671875 238.027344 C 269.554688 238.027344 269.460938 238.121094 269.460938 238.238281 C 269.460938 238.355469 269.554688 238.449219 269.671875 238.449219 C 269.789062 238.449219 269.882812 238.355469 269.882812 238.238281 Z M 269.882812 238.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.941406 240.734375 C 266.941406 240.617188 266.847656 240.523438 266.730469 240.523438 C 266.613281 240.523438 266.519531 240.617188 266.519531 240.734375 C 266.519531 240.851562 266.613281 240.945312 266.730469 240.945312 C 266.847656 240.945312 266.941406 240.851562 266.941406 240.734375 Z M 266.941406 240.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.296875 242.839844 C 268.296875 242.722656 268.203125 242.628906 268.085938 242.628906 C 267.96875 242.628906 267.875 242.722656 267.875 242.839844 C 267.875 242.957031 267.96875 243.050781 268.085938 243.050781 C 268.203125 243.050781 268.296875 242.957031 268.296875 242.839844 Z M 268.296875 242.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.261719 244.59375 C 269.261719 244.476562 269.167969 244.382812 269.050781 244.382812 C 268.933594 244.382812 268.839844 244.476562 268.839844 244.59375 C 268.839844 244.710938 268.933594 244.804688 269.050781 244.804688 C 269.167969 244.804688 269.261719 244.710938 269.261719 244.59375 Z M 269.261719 244.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.628906 243.550781 C 268.628906 243.433594 268.535156 243.339844 268.417969 243.339844 C 268.300781 243.339844 268.207031 243.433594 268.207031 243.550781 C 268.207031 243.667969 268.300781 243.761719 268.417969 243.761719 C 268.535156 243.761719 268.628906 243.667969 268.628906 243.550781 Z M 268.628906 243.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.859375 245.152344 C 272.859375 245.035156 272.765625 244.941406 272.648438 244.941406 C 272.53125 244.941406 272.4375 245.035156 272.4375 245.152344 C 272.4375 245.269531 272.53125 245.363281 272.648438 245.363281 C 272.765625 245.363281 272.859375 245.269531 272.859375 245.152344 Z M 272.859375 245.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.277344 247.296875 C 272.277344 247.179688 272.183594 247.085938 272.066406 247.085938 C 271.949219 247.085938 271.855469 247.179688 271.855469 247.296875 C 271.855469 247.414062 271.949219 247.507812 272.066406 247.507812 C 272.183594 247.507812 272.277344 247.414062 272.277344 247.296875 Z M 272.277344 247.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.914062 245.53125 C 270.914062 245.414062 270.820312 245.320312 270.703125 245.320312 C 270.585938 245.320312 270.492188 245.414062 270.492188 245.53125 C 270.492188 245.648438 270.585938 245.742188 270.703125 245.742188 C 270.820312 245.742188 270.914062 245.648438 270.914062 245.53125 Z M 270.914062 245.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.625 245.742188 C 270.625 245.625 270.53125 245.53125 270.414062 245.53125 C 270.296875 245.53125 270.203125 245.625 270.203125 245.742188 C 270.203125 245.859375 270.296875 245.953125 270.414062 245.953125 C 270.53125 245.953125 270.625 245.859375 270.625 245.742188 Z M 270.625 245.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.796875 243.773438 C 269.796875 243.65625 269.703125 243.5625 269.585938 243.5625 C 269.46875 243.5625 269.375 243.65625 269.375 243.773438 C 269.375 243.890625 269.46875 243.984375 269.585938 243.984375 C 269.703125 243.984375 269.796875 243.890625 269.796875 243.773438 Z M 269.796875 243.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.921875 243.023438 C 270.921875 242.90625 270.828125 242.8125 270.710938 242.8125 C 270.59375 242.8125 270.5 242.90625 270.5 243.023438 C 270.5 243.140625 270.59375 243.234375 270.710938 243.234375 C 270.828125 243.234375 270.921875 243.140625 270.921875 243.023438 Z M 270.921875 243.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.878906 241.445312 C 269.878906 241.328125 269.785156 241.234375 269.667969 241.234375 C 269.550781 241.234375 269.457031 241.328125 269.457031 241.445312 C 269.457031 241.5625 269.550781 241.65625 269.667969 241.65625 C 269.785156 241.65625 269.878906 241.5625 269.878906 241.445312 Z M 269.878906 241.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.820312 241.351562 C 271.820312 241.234375 271.726562 241.140625 271.609375 241.140625 C 271.492188 241.140625 271.398438 241.234375 271.398438 241.351562 C 271.398438 241.46875 271.492188 241.5625 271.609375 241.5625 C 271.726562 241.5625 271.820312 241.46875 271.820312 241.351562 Z M 271.820312 241.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.601562 240.09375 C 271.601562 239.976562 271.507812 239.882812 271.390625 239.882812 C 271.273438 239.882812 271.179688 239.976562 271.179688 240.09375 C 271.179688 240.210938 271.273438 240.304688 271.390625 240.304688 C 271.507812 240.304688 271.601562 240.210938 271.601562 240.09375 Z M 271.601562 240.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272 238.1875 C 272 238.070312 271.90625 237.976562 271.789062 237.976562 C 271.671875 237.976562 271.578125 238.070312 271.578125 238.1875 C 271.578125 238.304688 271.671875 238.398438 271.789062 238.398438 C 271.90625 238.398438 272 238.304688 272 238.1875 Z M 272 238.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.3125 235.304688 C 271.3125 235.1875 271.21875 235.09375 271.101562 235.09375 C 270.984375 235.09375 270.890625 235.1875 270.890625 235.304688 C 270.890625 235.421875 270.984375 235.515625 271.101562 235.515625 C 271.21875 235.515625 271.3125 235.421875 271.3125 235.304688 Z M 271.3125 235.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.304688 235.757812 C 268.304688 235.640625 268.210938 235.546875 268.09375 235.546875 C 267.976562 235.546875 267.882812 235.640625 267.882812 235.757812 C 267.882812 235.875 267.976562 235.96875 268.09375 235.96875 C 268.210938 235.96875 268.304688 235.875 268.304688 235.757812 Z M 268.304688 235.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.816406 236.003906 C 267.816406 235.886719 267.722656 235.792969 267.605469 235.792969 C 267.488281 235.792969 267.394531 235.886719 267.394531 236.003906 C 267.394531 236.121094 267.488281 236.214844 267.605469 236.214844 C 267.722656 236.214844 267.816406 236.121094 267.816406 236.003906 Z M 267.816406 236.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.035156 237.78125 C 267.035156 237.664062 266.941406 237.570312 266.824219 237.570312 C 266.707031 237.570312 266.613281 237.664062 266.613281 237.78125 C 266.613281 237.898438 266.707031 237.992188 266.824219 237.992188 C 266.941406 237.992188 267.035156 237.898438 267.035156 237.78125 Z M 267.035156 237.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.367188 240.183594 C 266.367188 240.066406 266.273438 239.972656 266.15625 239.972656 C 266.039062 239.972656 265.945312 240.066406 265.945312 240.183594 C 265.945312 240.300781 266.039062 240.394531 266.15625 240.394531 C 266.273438 240.394531 266.367188 240.300781 266.367188 240.183594 Z M 266.367188 240.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.585938 236.402344 C 268.585938 236.285156 268.492188 236.191406 268.375 236.191406 C 268.257812 236.191406 268.164062 236.285156 268.164062 236.402344 C 268.164062 236.519531 268.257812 236.613281 268.375 236.613281 C 268.492188 236.613281 268.585938 236.519531 268.585938 236.402344 Z M 268.585938 236.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.082031 237.980469 C 269.082031 237.863281 268.988281 237.769531 268.871094 237.769531 C 268.753906 237.769531 268.660156 237.863281 268.660156 237.980469 C 268.660156 238.097656 268.753906 238.191406 268.871094 238.191406 C 268.988281 238.191406 269.082031 238.097656 269.082031 237.980469 Z M 269.082031 237.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.109375 237.398438 C 266.109375 237.28125 266.015625 237.1875 265.898438 237.1875 C 265.78125 237.1875 265.6875 237.28125 265.6875 237.398438 C 265.6875 237.515625 265.78125 237.609375 265.898438 237.609375 C 266.015625 237.609375 266.109375 237.515625 266.109375 237.398438 Z M 266.109375 237.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.042969 237.890625 C 269.042969 237.773438 268.949219 237.679688 268.832031 237.679688 C 268.714844 237.679688 268.621094 237.773438 268.621094 237.890625 C 268.621094 238.007812 268.714844 238.101562 268.832031 238.101562 C 268.949219 238.101562 269.042969 238.007812 269.042969 237.890625 Z M 269.042969 237.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.804688 241.054688 C 270.804688 240.9375 270.710938 240.84375 270.59375 240.84375 C 270.476562 240.84375 270.382812 240.9375 270.382812 241.054688 C 270.382812 241.171875 270.476562 241.265625 270.59375 241.265625 C 270.710938 241.265625 270.804688 241.171875 270.804688 241.054688 Z M 270.804688 241.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.953125 242.550781 C 271.953125 242.433594 271.859375 242.339844 271.742188 242.339844 C 271.625 242.339844 271.53125 242.433594 271.53125 242.550781 C 271.53125 242.667969 271.625 242.761719 271.742188 242.761719 C 271.859375 242.761719 271.953125 242.667969 271.953125 242.550781 Z M 271.953125 242.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.535156 245.3125 C 273.535156 245.195312 273.441406 245.101562 273.324219 245.101562 C 273.207031 245.101562 273.113281 245.195312 273.113281 245.3125 C 273.113281 245.429688 273.207031 245.523438 273.324219 245.523438 C 273.441406 245.523438 273.535156 245.429688 273.535156 245.3125 Z M 273.535156 245.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.355469 243.949219 C 274.355469 243.832031 274.261719 243.738281 274.144531 243.738281 C 274.027344 243.738281 273.933594 243.832031 273.933594 243.949219 C 273.933594 244.066406 274.027344 244.160156 274.144531 244.160156 C 274.261719 244.160156 274.355469 244.066406 274.355469 243.949219 Z M 274.355469 243.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.863281 244.199219 C 275.863281 244.082031 275.769531 243.988281 275.652344 243.988281 C 275.535156 243.988281 275.441406 244.082031 275.441406 244.199219 C 275.441406 244.316406 275.535156 244.410156 275.652344 244.410156 C 275.769531 244.410156 275.863281 244.316406 275.863281 244.199219 Z M 275.863281 244.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.679688 240.898438 C 272.679688 240.78125 272.585938 240.6875 272.46875 240.6875 C 272.351562 240.6875 272.257812 240.78125 272.257812 240.898438 C 272.257812 241.015625 272.351562 241.109375 272.46875 241.109375 C 272.585938 241.109375 272.679688 241.015625 272.679688 240.898438 Z M 272.679688 240.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.039062 244.582031 C 274.039062 244.464844 273.945312 244.371094 273.828125 244.371094 C 273.710938 244.371094 273.617188 244.464844 273.617188 244.582031 C 273.617188 244.699219 273.710938 244.792969 273.828125 244.792969 C 273.945312 244.792969 274.039062 244.699219 274.039062 244.582031 Z M 274.039062 244.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.339844 246.765625 C 274.339844 246.648438 274.246094 246.554688 274.128906 246.554688 C 274.011719 246.554688 273.917969 246.648438 273.917969 246.765625 C 273.917969 246.882812 274.011719 246.976562 274.128906 246.976562 C 274.246094 246.976562 274.339844 246.882812 274.339844 246.765625 Z M 274.339844 246.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.664062 246.585938 C 274.664062 246.46875 274.570312 246.375 274.453125 246.375 C 274.335938 246.375 274.242188 246.46875 274.242188 246.585938 C 274.242188 246.703125 274.335938 246.796875 274.453125 246.796875 C 274.570312 246.796875 274.664062 246.703125 274.664062 246.585938 Z M 274.664062 246.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.492188 248.214844 C 278.492188 248.097656 278.398438 248.003906 278.28125 248.003906 C 278.164062 248.003906 278.070312 248.097656 278.070312 248.214844 C 278.070312 248.332031 278.164062 248.425781 278.28125 248.425781 C 278.398438 248.425781 278.492188 248.332031 278.492188 248.214844 Z M 278.492188 248.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.792969 248.089844 C 278.792969 247.972656 278.699219 247.878906 278.582031 247.878906 C 278.464844 247.878906 278.371094 247.972656 278.371094 248.089844 C 278.371094 248.207031 278.464844 248.300781 278.582031 248.300781 C 278.699219 248.300781 278.792969 248.207031 278.792969 248.089844 Z M 278.792969 248.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.949219 251.175781 C 275.949219 251.058594 275.855469 250.964844 275.738281 250.964844 C 275.621094 250.964844 275.527344 251.058594 275.527344 251.175781 C 275.527344 251.292969 275.621094 251.386719 275.738281 251.386719 C 275.855469 251.386719 275.949219 251.292969 275.949219 251.175781 Z M 275.949219 251.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.015625 249.167969 C 280.015625 249.050781 279.921875 248.957031 279.804688 248.957031 C 279.6875 248.957031 279.59375 249.050781 279.59375 249.167969 C 279.59375 249.285156 279.6875 249.378906 279.804688 249.378906 C 279.921875 249.378906 280.015625 249.285156 280.015625 249.167969 Z M 280.015625 249.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.15625 245.441406 C 279.15625 245.324219 279.0625 245.230469 278.945312 245.230469 C 278.828125 245.230469 278.734375 245.324219 278.734375 245.441406 C 278.734375 245.558594 278.828125 245.652344 278.945312 245.652344 C 279.0625 245.652344 279.15625 245.558594 279.15625 245.441406 Z M 279.15625 245.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.363281 244.28125 C 277.363281 244.164062 277.269531 244.070312 277.152344 244.070312 C 277.035156 244.070312 276.941406 244.164062 276.941406 244.28125 C 276.941406 244.398438 277.035156 244.492188 277.152344 244.492188 C 277.269531 244.492188 277.363281 244.398438 277.363281 244.28125 Z M 277.363281 244.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.050781 243.339844 C 276.050781 243.222656 275.957031 243.128906 275.839844 243.128906 C 275.722656 243.128906 275.628906 243.222656 275.628906 243.339844 C 275.628906 243.457031 275.722656 243.550781 275.839844 243.550781 C 275.957031 243.550781 276.050781 243.457031 276.050781 243.339844 Z M 276.050781 243.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.769531 242.847656 C 277.769531 242.730469 277.675781 242.636719 277.558594 242.636719 C 277.441406 242.636719 277.347656 242.730469 277.347656 242.847656 C 277.347656 242.964844 277.441406 243.058594 277.558594 243.058594 C 277.675781 243.058594 277.769531 242.964844 277.769531 242.847656 Z M 277.769531 242.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.289062 242.648438 C 277.289062 242.53125 277.195312 242.4375 277.078125 242.4375 C 276.960938 242.4375 276.867188 242.53125 276.867188 242.648438 C 276.867188 242.765625 276.960938 242.859375 277.078125 242.859375 C 277.195312 242.859375 277.289062 242.765625 277.289062 242.648438 Z M 277.289062 242.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.792969 246.015625 C 275.792969 245.898438 275.699219 245.804688 275.582031 245.804688 C 275.464844 245.804688 275.371094 245.898438 275.371094 246.015625 C 275.371094 246.132812 275.464844 246.226562 275.582031 246.226562 C 275.699219 246.226562 275.792969 246.132812 275.792969 246.015625 Z M 275.792969 246.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.21875 247.382812 C 278.21875 247.265625 278.125 247.171875 278.007812 247.171875 C 277.890625 247.171875 277.796875 247.265625 277.796875 247.382812 C 277.796875 247.5 277.890625 247.59375 278.007812 247.59375 C 278.125 247.59375 278.21875 247.5 278.21875 247.382812 Z M 278.21875 247.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.179688 249.128906 C 274.179688 249.011719 274.085938 248.917969 273.96875 248.917969 C 273.851562 248.917969 273.757812 249.011719 273.757812 249.128906 C 273.757812 249.246094 273.851562 249.339844 273.96875 249.339844 C 274.085938 249.339844 274.179688 249.246094 274.179688 249.128906 Z M 274.179688 249.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.851562 251.867188 C 276.851562 251.75 276.757812 251.65625 276.640625 251.65625 C 276.523438 251.65625 276.429688 251.75 276.429688 251.867188 C 276.429688 251.984375 276.523438 252.078125 276.640625 252.078125 C 276.757812 252.078125 276.851562 251.984375 276.851562 251.867188 Z M 276.851562 251.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.261719 246.804688 C 275.261719 246.6875 275.167969 246.59375 275.050781 246.59375 C 274.933594 246.59375 274.839844 246.6875 274.839844 246.804688 C 274.839844 246.921875 274.933594 247.015625 275.050781 247.015625 C 275.167969 247.015625 275.261719 246.921875 275.261719 246.804688 Z M 275.261719 246.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.875 249.515625 C 278.875 249.398438 278.78125 249.304688 278.664062 249.304688 C 278.546875 249.304688 278.453125 249.398438 278.453125 249.515625 C 278.453125 249.632812 278.546875 249.726562 278.664062 249.726562 C 278.78125 249.726562 278.875 249.632812 278.875 249.515625 Z M 278.875 249.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.316406 247.121094 C 277.316406 247.003906 277.222656 246.910156 277.105469 246.910156 C 276.988281 246.910156 276.894531 247.003906 276.894531 247.121094 C 276.894531 247.238281 276.988281 247.332031 277.105469 247.332031 C 277.222656 247.332031 277.316406 247.238281 277.316406 247.121094 Z M 277.316406 247.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.597656 247.46875 C 280.597656 247.351562 280.503906 247.257812 280.386719 247.257812 C 280.269531 247.257812 280.175781 247.351562 280.175781 247.46875 C 280.175781 247.585938 280.269531 247.679688 280.386719 247.679688 C 280.503906 247.679688 280.597656 247.585938 280.597656 247.46875 Z M 280.597656 247.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.859375 248.410156 C 281.859375 248.292969 281.765625 248.199219 281.648438 248.199219 C 281.53125 248.199219 281.4375 248.292969 281.4375 248.410156 C 281.4375 248.527344 281.53125 248.621094 281.648438 248.621094 C 281.765625 248.621094 281.859375 248.527344 281.859375 248.410156 Z M 281.859375 248.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.605469 249.875 C 282.605469 249.757812 282.511719 249.664062 282.394531 249.664062 C 282.277344 249.664062 282.183594 249.757812 282.183594 249.875 C 282.183594 249.992188 282.277344 250.085938 282.394531 250.085938 C 282.511719 250.085938 282.605469 249.992188 282.605469 249.875 Z M 282.605469 249.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.628906 249.648438 C 282.628906 249.53125 282.535156 249.4375 282.417969 249.4375 C 282.300781 249.4375 282.207031 249.53125 282.207031 249.648438 C 282.207031 249.765625 282.300781 249.859375 282.417969 249.859375 C 282.535156 249.859375 282.628906 249.765625 282.628906 249.648438 Z M 282.628906 249.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.769531 251.484375 C 278.769531 251.367188 278.675781 251.273438 278.558594 251.273438 C 278.441406 251.273438 278.347656 251.367188 278.347656 251.484375 C 278.347656 251.601562 278.441406 251.695312 278.558594 251.695312 C 278.675781 251.695312 278.769531 251.601562 278.769531 251.484375 Z M 278.769531 251.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.214844 251.09375 C 281.214844 250.976562 281.121094 250.882812 281.003906 250.882812 C 280.886719 250.882812 280.792969 250.976562 280.792969 251.09375 C 280.792969 251.210938 280.886719 251.304688 281.003906 251.304688 C 281.121094 251.304688 281.214844 251.210938 281.214844 251.09375 Z M 281.214844 251.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.097656 252.832031 C 280.097656 252.714844 280.003906 252.621094 279.886719 252.621094 C 279.769531 252.621094 279.675781 252.714844 279.675781 252.832031 C 279.675781 252.949219 279.769531 253.042969 279.886719 253.042969 C 280.003906 253.042969 280.097656 252.949219 280.097656 252.832031 Z M 280.097656 252.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.261719 252.96875 C 280.261719 252.851562 280.167969 252.757812 280.050781 252.757812 C 279.933594 252.757812 279.839844 252.851562 279.839844 252.96875 C 279.839844 253.085938 279.933594 253.179688 280.050781 253.179688 C 280.167969 253.179688 280.261719 253.085938 280.261719 252.96875 Z M 280.261719 252.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.152344 248.769531 C 277.152344 248.652344 277.058594 248.558594 276.941406 248.558594 C 276.824219 248.558594 276.730469 248.652344 276.730469 248.769531 C 276.730469 248.886719 276.824219 248.980469 276.941406 248.980469 C 277.058594 248.980469 277.152344 248.886719 277.152344 248.769531 Z M 277.152344 248.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.925781 250.054688 C 274.925781 249.9375 274.832031 249.84375 274.714844 249.84375 C 274.597656 249.84375 274.503906 249.9375 274.503906 250.054688 C 274.503906 250.171875 274.597656 250.265625 274.714844 250.265625 C 274.832031 250.265625 274.925781 250.171875 274.925781 250.054688 Z M 274.925781 250.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.378906 251.054688 C 276.378906 250.9375 276.285156 250.84375 276.167969 250.84375 C 276.050781 250.84375 275.957031 250.9375 275.957031 251.054688 C 275.957031 251.171875 276.050781 251.265625 276.167969 251.265625 C 276.285156 251.265625 276.378906 251.171875 276.378906 251.054688 Z M 276.378906 251.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.667969 251.777344 C 277.667969 251.660156 277.574219 251.566406 277.457031 251.566406 C 277.339844 251.566406 277.246094 251.660156 277.246094 251.777344 C 277.246094 251.894531 277.339844 251.988281 277.457031 251.988281 C 277.574219 251.988281 277.667969 251.894531 277.667969 251.777344 Z M 277.667969 251.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.160156 253.078125 C 277.160156 252.960938 277.066406 252.867188 276.949219 252.867188 C 276.832031 252.867188 276.738281 252.960938 276.738281 253.078125 C 276.738281 253.195312 276.832031 253.289062 276.949219 253.289062 C 277.066406 253.289062 277.160156 253.195312 277.160156 253.078125 Z M 277.160156 253.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.929688 250.902344 C 274.929688 250.785156 274.835938 250.691406 274.71875 250.691406 C 274.601562 250.691406 274.507812 250.785156 274.507812 250.902344 C 274.507812 251.019531 274.601562 251.113281 274.71875 251.113281 C 274.835938 251.113281 274.929688 251.019531 274.929688 250.902344 Z M 274.929688 250.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.554688 247.976562 C 274.554688 247.859375 274.460938 247.765625 274.34375 247.765625 C 274.226562 247.765625 274.132812 247.859375 274.132812 247.976562 C 274.132812 248.09375 274.226562 248.1875 274.34375 248.1875 C 274.460938 248.1875 274.554688 248.09375 274.554688 247.976562 Z M 274.554688 247.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.175781 248.253906 C 272.175781 248.136719 272.082031 248.042969 271.964844 248.042969 C 271.847656 248.042969 271.753906 248.136719 271.753906 248.253906 C 271.753906 248.371094 271.847656 248.464844 271.964844 248.464844 C 272.082031 248.464844 272.175781 248.371094 272.175781 248.253906 Z M 272.175781 248.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.195312 247.554688 C 271.195312 247.4375 271.101562 247.34375 270.984375 247.34375 C 270.867188 247.34375 270.773438 247.4375 270.773438 247.554688 C 270.773438 247.671875 270.867188 247.765625 270.984375 247.765625 C 271.101562 247.765625 271.195312 247.671875 271.195312 247.554688 Z M 271.195312 247.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.570312 245.753906 C 270.570312 245.636719 270.476562 245.542969 270.359375 245.542969 C 270.242188 245.542969 270.148438 245.636719 270.148438 245.753906 C 270.148438 245.871094 270.242188 245.964844 270.359375 245.964844 C 270.476562 245.964844 270.570312 245.871094 270.570312 245.753906 Z M 270.570312 245.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.074219 245.113281 C 273.074219 244.996094 272.980469 244.902344 272.863281 244.902344 C 272.746094 244.902344 272.652344 244.996094 272.652344 245.113281 C 272.652344 245.230469 272.746094 245.324219 272.863281 245.324219 C 272.980469 245.324219 273.074219 245.230469 273.074219 245.113281 Z M 273.074219 245.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.242188 244.238281 C 271.242188 244.121094 271.148438 244.027344 271.03125 244.027344 C 270.914062 244.027344 270.820312 244.121094 270.820312 244.238281 C 270.820312 244.355469 270.914062 244.449219 271.03125 244.449219 C 271.148438 244.449219 271.242188 244.355469 271.242188 244.238281 Z M 271.242188 244.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.691406 246.09375 C 271.691406 245.976562 271.597656 245.882812 271.480469 245.882812 C 271.363281 245.882812 271.269531 245.976562 271.269531 246.09375 C 271.269531 246.210938 271.363281 246.304688 271.480469 246.304688 C 271.597656 246.304688 271.691406 246.210938 271.691406 246.09375 Z M 271.691406 246.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.527344 245.085938 C 272.527344 244.96875 272.433594 244.875 272.316406 244.875 C 272.199219 244.875 272.105469 244.96875 272.105469 245.085938 C 272.105469 245.203125 272.199219 245.296875 272.316406 245.296875 C 272.433594 245.296875 272.527344 245.203125 272.527344 245.085938 Z M 272.527344 245.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.765625 242.652344 C 269.765625 242.535156 269.671875 242.441406 269.554688 242.441406 C 269.4375 242.441406 269.34375 242.535156 269.34375 242.652344 C 269.34375 242.769531 269.4375 242.863281 269.554688 242.863281 C 269.671875 242.863281 269.765625 242.769531 269.765625 242.652344 Z M 269.765625 242.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.363281 238.601562 C 266.363281 238.484375 266.269531 238.390625 266.152344 238.390625 C 266.035156 238.390625 265.941406 238.484375 265.941406 238.601562 C 265.941406 238.71875 266.035156 238.8125 266.152344 238.8125 C 266.269531 238.8125 266.363281 238.71875 266.363281 238.601562 Z M 266.363281 238.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.964844 238.816406 C 265.964844 238.699219 265.871094 238.605469 265.753906 238.605469 C 265.636719 238.605469 265.542969 238.699219 265.542969 238.816406 C 265.542969 238.933594 265.636719 239.027344 265.753906 239.027344 C 265.871094 239.027344 265.964844 238.933594 265.964844 238.816406 Z M 265.964844 238.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.257812 241.917969 C 263.257812 241.800781 263.164062 241.707031 263.046875 241.707031 C 262.929688 241.707031 262.835938 241.800781 262.835938 241.917969 C 262.835938 242.035156 262.929688 242.128906 263.046875 242.128906 C 263.164062 242.128906 263.257812 242.035156 263.257812 241.917969 Z M 263.257812 241.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.160156 244.480469 C 266.160156 244.363281 266.066406 244.269531 265.949219 244.269531 C 265.832031 244.269531 265.738281 244.363281 265.738281 244.480469 C 265.738281 244.597656 265.832031 244.691406 265.949219 244.691406 C 266.066406 244.691406 266.160156 244.597656 266.160156 244.480469 Z M 266.160156 244.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.058594 243.515625 C 264.058594 243.398438 263.964844 243.304688 263.847656 243.304688 C 263.730469 243.304688 263.636719 243.398438 263.636719 243.515625 C 263.636719 243.632812 263.730469 243.726562 263.847656 243.726562 C 263.964844 243.726562 264.058594 243.632812 264.058594 243.515625 Z M 264.058594 243.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.105469 242.238281 C 267.105469 242.121094 267.011719 242.027344 266.894531 242.027344 C 266.777344 242.027344 266.683594 242.121094 266.683594 242.238281 C 266.683594 242.355469 266.777344 242.449219 266.894531 242.449219 C 267.011719 242.449219 267.105469 242.355469 267.105469 242.238281 Z M 267.105469 242.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.589844 242.441406 C 264.589844 242.324219 264.496094 242.230469 264.378906 242.230469 C 264.261719 242.230469 264.167969 242.324219 264.167969 242.441406 C 264.167969 242.558594 264.261719 242.652344 264.378906 242.652344 C 264.496094 242.652344 264.589844 242.558594 264.589844 242.441406 Z M 264.589844 242.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.539062 241.871094 C 265.539062 241.753906 265.445312 241.660156 265.328125 241.660156 C 265.210938 241.660156 265.117188 241.753906 265.117188 241.871094 C 265.117188 241.988281 265.210938 242.082031 265.328125 242.082031 C 265.445312 242.082031 265.539062 241.988281 265.539062 241.871094 Z M 265.539062 241.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.40625 243.484375 C 261.40625 243.367188 261.3125 243.273438 261.195312 243.273438 C 261.078125 243.273438 260.984375 243.367188 260.984375 243.484375 C 260.984375 243.601562 261.078125 243.695312 261.195312 243.695312 C 261.3125 243.695312 261.40625 243.601562 261.40625 243.484375 Z M 261.40625 243.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.917969 245.65625 C 261.917969 245.539062 261.824219 245.445312 261.707031 245.445312 C 261.589844 245.445312 261.496094 245.539062 261.496094 245.65625 C 261.496094 245.773438 261.589844 245.867188 261.707031 245.867188 C 261.824219 245.867188 261.917969 245.773438 261.917969 245.65625 Z M 261.917969 245.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.859375 249.347656 C 257.859375 249.230469 257.765625 249.136719 257.648438 249.136719 C 257.53125 249.136719 257.4375 249.230469 257.4375 249.347656 C 257.4375 249.464844 257.53125 249.558594 257.648438 249.558594 C 257.765625 249.558594 257.859375 249.464844 257.859375 249.347656 Z M 257.859375 249.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.515625 250.472656 C 257.515625 250.355469 257.421875 250.261719 257.304688 250.261719 C 257.1875 250.261719 257.09375 250.355469 257.09375 250.472656 C 257.09375 250.589844 257.1875 250.683594 257.304688 250.683594 C 257.421875 250.683594 257.515625 250.589844 257.515625 250.472656 Z M 257.515625 250.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.015625 247.582031 C 260.015625 247.464844 259.921875 247.371094 259.804688 247.371094 C 259.6875 247.371094 259.59375 247.464844 259.59375 247.582031 C 259.59375 247.699219 259.6875 247.792969 259.804688 247.792969 C 259.921875 247.792969 260.015625 247.699219 260.015625 247.582031 Z M 260.015625 247.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.523438 250.757812 C 259.523438 250.640625 259.429688 250.546875 259.3125 250.546875 C 259.195312 250.546875 259.101562 250.640625 259.101562 250.757812 C 259.101562 250.875 259.195312 250.96875 259.3125 250.96875 C 259.429688 250.96875 259.523438 250.875 259.523438 250.757812 Z M 259.523438 250.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.453125 255.703125 C 263.453125 255.585938 263.359375 255.492188 263.242188 255.492188 C 263.125 255.492188 263.03125 255.585938 263.03125 255.703125 C 263.03125 255.820312 263.125 255.914062 263.242188 255.914062 C 263.359375 255.914062 263.453125 255.820312 263.453125 255.703125 Z M 263.453125 255.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.328125 255.761719 C 261.328125 255.644531 261.234375 255.550781 261.117188 255.550781 C 261 255.550781 260.90625 255.644531 260.90625 255.761719 C 260.90625 255.878906 261 255.972656 261.117188 255.972656 C 261.234375 255.972656 261.328125 255.878906 261.328125 255.761719 Z M 261.328125 255.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.457031 254.890625 C 261.457031 254.773438 261.363281 254.679688 261.246094 254.679688 C 261.128906 254.679688 261.035156 254.773438 261.035156 254.890625 C 261.035156 255.007812 261.128906 255.101562 261.246094 255.101562 C 261.363281 255.101562 261.457031 255.007812 261.457031 254.890625 Z M 261.457031 254.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.800781 254.21875 C 261.800781 254.101562 261.707031 254.007812 261.589844 254.007812 C 261.472656 254.007812 261.378906 254.101562 261.378906 254.21875 C 261.378906 254.335938 261.472656 254.429688 261.589844 254.429688 C 261.707031 254.429688 261.800781 254.335938 261.800781 254.21875 Z M 261.800781 254.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.109375 253.609375 C 259.109375 253.492188 259.015625 253.398438 258.898438 253.398438 C 258.78125 253.398438 258.6875 253.492188 258.6875 253.609375 C 258.6875 253.726562 258.78125 253.820312 258.898438 253.820312 C 259.015625 253.820312 259.109375 253.726562 259.109375 253.609375 Z M 259.109375 253.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.300781 253.699219 C 262.300781 253.582031 262.207031 253.488281 262.089844 253.488281 C 261.972656 253.488281 261.878906 253.582031 261.878906 253.699219 C 261.878906 253.816406 261.972656 253.910156 262.089844 253.910156 C 262.207031 253.910156 262.300781 253.816406 262.300781 253.699219 Z M 262.300781 253.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.980469 256.933594 C 262.980469 256.816406 262.886719 256.722656 262.769531 256.722656 C 262.652344 256.722656 262.558594 256.816406 262.558594 256.933594 C 262.558594 257.050781 262.652344 257.144531 262.769531 257.144531 C 262.886719 257.144531 262.980469 257.050781 262.980469 256.933594 Z M 262.980469 256.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.320312 255.257812 C 261.320312 255.140625 261.226562 255.046875 261.109375 255.046875 C 260.992188 255.046875 260.898438 255.140625 260.898438 255.257812 C 260.898438 255.375 260.992188 255.46875 261.109375 255.46875 C 261.226562 255.46875 261.320312 255.375 261.320312 255.257812 Z M 261.320312 255.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.796875 255.34375 C 261.796875 255.226562 261.703125 255.132812 261.585938 255.132812 C 261.46875 255.132812 261.375 255.226562 261.375 255.34375 C 261.375 255.460938 261.46875 255.554688 261.585938 255.554688 C 261.703125 255.554688 261.796875 255.460938 261.796875 255.34375 Z M 261.796875 255.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.546875 257.613281 C 263.546875 257.496094 263.453125 257.402344 263.335938 257.402344 C 263.21875 257.402344 263.125 257.496094 263.125 257.613281 C 263.125 257.730469 263.21875 257.824219 263.335938 257.824219 C 263.453125 257.824219 263.546875 257.730469 263.546875 257.613281 Z M 263.546875 257.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.9375 256.597656 C 260.9375 256.480469 260.84375 256.386719 260.726562 256.386719 C 260.609375 256.386719 260.515625 256.480469 260.515625 256.597656 C 260.515625 256.714844 260.609375 256.808594 260.726562 256.808594 C 260.84375 256.808594 260.9375 256.714844 260.9375 256.597656 Z M 260.9375 256.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.671875 256.875 C 258.671875 256.757812 258.578125 256.664062 258.460938 256.664062 C 258.34375 256.664062 258.25 256.757812 258.25 256.875 C 258.25 256.992188 258.34375 257.085938 258.460938 257.085938 C 258.578125 257.085938 258.671875 256.992188 258.671875 256.875 Z M 258.671875 256.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.375 259.671875 C 255.375 259.554688 255.28125 259.460938 255.164062 259.460938 C 255.046875 259.460938 254.953125 259.554688 254.953125 259.671875 C 254.953125 259.789062 255.046875 259.882812 255.164062 259.882812 C 255.28125 259.882812 255.375 259.789062 255.375 259.671875 Z M 255.375 259.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.128906 261.230469 C 256.128906 261.113281 256.035156 261.019531 255.917969 261.019531 C 255.800781 261.019531 255.707031 261.113281 255.707031 261.230469 C 255.707031 261.347656 255.800781 261.441406 255.917969 261.441406 C 256.035156 261.441406 256.128906 261.347656 256.128906 261.230469 Z M 256.128906 261.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.875 264.585938 C 257.875 264.46875 257.78125 264.375 257.664062 264.375 C 257.546875 264.375 257.453125 264.46875 257.453125 264.585938 C 257.453125 264.703125 257.546875 264.796875 257.664062 264.796875 C 257.78125 264.796875 257.875 264.703125 257.875 264.585938 Z M 257.875 264.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.460938 261.789062 C 252.460938 261.671875 252.367188 261.578125 252.25 261.578125 C 252.132812 261.578125 252.039062 261.671875 252.039062 261.789062 C 252.039062 261.90625 252.132812 262 252.25 262 C 252.367188 262 252.460938 261.90625 252.460938 261.789062 Z M 252.460938 261.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.839844 262.921875 C 252.839844 262.804688 252.746094 262.710938 252.628906 262.710938 C 252.511719 262.710938 252.417969 262.804688 252.417969 262.921875 C 252.417969 263.039062 252.511719 263.132812 252.628906 263.132812 C 252.746094 263.132812 252.839844 263.039062 252.839844 262.921875 Z M 252.839844 262.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.441406 264.273438 C 250.441406 264.15625 250.347656 264.0625 250.230469 264.0625 C 250.113281 264.0625 250.019531 264.15625 250.019531 264.273438 C 250.019531 264.390625 250.113281 264.484375 250.230469 264.484375 C 250.347656 264.484375 250.441406 264.390625 250.441406 264.273438 Z M 250.441406 264.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.453125 262.578125 C 248.453125 262.460938 248.359375 262.367188 248.242188 262.367188 C 248.125 262.367188 248.03125 262.460938 248.03125 262.578125 C 248.03125 262.695312 248.125 262.789062 248.242188 262.789062 C 248.359375 262.789062 248.453125 262.695312 248.453125 262.578125 Z M 248.453125 262.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.328125 266.671875 C 247.328125 266.554688 247.234375 266.460938 247.117188 266.460938 C 247 266.460938 246.90625 266.554688 246.90625 266.671875 C 246.90625 266.789062 247 266.882812 247.117188 266.882812 C 247.234375 266.882812 247.328125 266.789062 247.328125 266.671875 Z M 247.328125 266.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.476562 264.160156 C 248.476562 264.042969 248.382812 263.949219 248.265625 263.949219 C 248.148438 263.949219 248.054688 264.042969 248.054688 264.160156 C 248.054688 264.277344 248.148438 264.371094 248.265625 264.371094 C 248.382812 264.371094 248.476562 264.277344 248.476562 264.160156 Z M 248.476562 264.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.59375 262.246094 C 249.59375 262.128906 249.5 262.035156 249.382812 262.035156 C 249.265625 262.035156 249.171875 262.128906 249.171875 262.246094 C 249.171875 262.363281 249.265625 262.457031 249.382812 262.457031 C 249.5 262.457031 249.59375 262.363281 249.59375 262.246094 Z M 249.59375 262.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.746094 262.601562 C 252.746094 262.484375 252.652344 262.390625 252.535156 262.390625 C 252.417969 262.390625 252.324219 262.484375 252.324219 262.601562 C 252.324219 262.71875 252.417969 262.8125 252.535156 262.8125 C 252.652344 262.8125 252.746094 262.71875 252.746094 262.601562 Z M 252.746094 262.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.5625 260.3125 C 257.5625 260.195312 257.46875 260.101562 257.351562 260.101562 C 257.234375 260.101562 257.140625 260.195312 257.140625 260.3125 C 257.140625 260.429688 257.234375 260.523438 257.351562 260.523438 C 257.46875 260.523438 257.5625 260.429688 257.5625 260.3125 Z M 257.5625 260.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.304688 259.019531 C 261.304688 258.902344 261.210938 258.808594 261.09375 258.808594 C 260.976562 258.808594 260.882812 258.902344 260.882812 259.019531 C 260.882812 259.136719 260.976562 259.230469 261.09375 259.230469 C 261.210938 259.230469 261.304688 259.136719 261.304688 259.019531 Z M 261.304688 259.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.476562 261.828125 C 261.476562 261.710938 261.382812 261.617188 261.265625 261.617188 C 261.148438 261.617188 261.054688 261.710938 261.054688 261.828125 C 261.054688 261.945312 261.148438 262.039062 261.265625 262.039062 C 261.382812 262.039062 261.476562 261.945312 261.476562 261.828125 Z M 261.476562 261.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.644531 267.929688 C 261.644531 267.8125 261.550781 267.71875 261.433594 267.71875 C 261.316406 267.71875 261.222656 267.8125 261.222656 267.929688 C 261.222656 268.046875 261.316406 268.140625 261.433594 268.140625 C 261.550781 268.140625 261.644531 268.046875 261.644531 267.929688 Z M 261.644531 267.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.082031 267.46875 C 256.082031 267.351562 255.988281 267.257812 255.871094 267.257812 C 255.753906 267.257812 255.660156 267.351562 255.660156 267.46875 C 255.660156 267.585938 255.753906 267.679688 255.871094 267.679688 C 255.988281 267.679688 256.082031 267.585938 256.082031 267.46875 Z M 256.082031 267.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.96875 268.347656 C 254.96875 268.230469 254.875 268.136719 254.757812 268.136719 C 254.640625 268.136719 254.546875 268.230469 254.546875 268.347656 C 254.546875 268.464844 254.640625 268.558594 254.757812 268.558594 C 254.875 268.558594 254.96875 268.464844 254.96875 268.347656 Z M 254.96875 268.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.007812 268.136719 C 255.007812 268.019531 254.914062 267.925781 254.796875 267.925781 C 254.679688 267.925781 254.585938 268.019531 254.585938 268.136719 C 254.585938 268.253906 254.679688 268.347656 254.796875 268.347656 C 254.914062 268.347656 255.007812 268.253906 255.007812 268.136719 Z M 255.007812 268.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.546875 266.558594 C 254.546875 266.441406 254.453125 266.347656 254.335938 266.347656 C 254.21875 266.347656 254.125 266.441406 254.125 266.558594 C 254.125 266.675781 254.21875 266.769531 254.335938 266.769531 C 254.453125 266.769531 254.546875 266.675781 254.546875 266.558594 Z M 254.546875 266.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.984375 266.523438 C 256.984375 266.40625 256.890625 266.3125 256.773438 266.3125 C 256.65625 266.3125 256.5625 266.40625 256.5625 266.523438 C 256.5625 266.640625 256.65625 266.734375 256.773438 266.734375 C 256.890625 266.734375 256.984375 266.640625 256.984375 266.523438 Z M 256.984375 266.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.113281 264.40625 C 258.113281 264.289062 258.019531 264.195312 257.902344 264.195312 C 257.785156 264.195312 257.691406 264.289062 257.691406 264.40625 C 257.691406 264.523438 257.785156 264.617188 257.902344 264.617188 C 258.019531 264.617188 258.113281 264.523438 258.113281 264.40625 Z M 258.113281 264.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.617188 263.082031 C 255.617188 262.964844 255.523438 262.871094 255.40625 262.871094 C 255.289062 262.871094 255.195312 262.964844 255.195312 263.082031 C 255.195312 263.199219 255.289062 263.292969 255.40625 263.292969 C 255.523438 263.292969 255.617188 263.199219 255.617188 263.082031 Z M 255.617188 263.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.453125 260.539062 C 257.453125 260.421875 257.359375 260.328125 257.242188 260.328125 C 257.125 260.328125 257.03125 260.421875 257.03125 260.539062 C 257.03125 260.65625 257.125 260.75 257.242188 260.75 C 257.359375 260.75 257.453125 260.65625 257.453125 260.539062 Z M 257.453125 260.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.175781 260.03125 C 256.175781 259.914062 256.082031 259.820312 255.964844 259.820312 C 255.847656 259.820312 255.753906 259.914062 255.753906 260.03125 C 255.753906 260.148438 255.847656 260.242188 255.964844 260.242188 C 256.082031 260.242188 256.175781 260.148438 256.175781 260.03125 Z M 256.175781 260.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.214844 257.914062 C 258.214844 257.796875 258.121094 257.703125 258.003906 257.703125 C 257.886719 257.703125 257.792969 257.796875 257.792969 257.914062 C 257.792969 258.03125 257.886719 258.125 258.003906 258.125 C 258.121094 258.125 258.214844 258.03125 258.214844 257.914062 Z M 258.214844 257.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.90625 260.007812 C 257.90625 259.890625 257.8125 259.796875 257.695312 259.796875 C 257.578125 259.796875 257.484375 259.890625 257.484375 260.007812 C 257.484375 260.125 257.578125 260.21875 257.695312 260.21875 C 257.8125 260.21875 257.90625 260.125 257.90625 260.007812 Z M 257.90625 260.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.609375 257.597656 C 258.609375 257.480469 258.515625 257.386719 258.398438 257.386719 C 258.28125 257.386719 258.1875 257.480469 258.1875 257.597656 C 258.1875 257.714844 258.28125 257.808594 258.398438 257.808594 C 258.515625 257.808594 258.609375 257.714844 258.609375 257.597656 Z M 258.609375 257.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.152344 256.515625 C 255.152344 256.398438 255.058594 256.304688 254.941406 256.304688 C 254.824219 256.304688 254.730469 256.398438 254.730469 256.515625 C 254.730469 256.632812 254.824219 256.726562 254.941406 256.726562 C 255.058594 256.726562 255.152344 256.632812 255.152344 256.515625 Z M 255.152344 256.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.523438 256.804688 C 253.523438 256.6875 253.429688 256.59375 253.3125 256.59375 C 253.195312 256.59375 253.101562 256.6875 253.101562 256.804688 C 253.101562 256.921875 253.195312 257.015625 253.3125 257.015625 C 253.429688 257.015625 253.523438 256.921875 253.523438 256.804688 Z M 253.523438 256.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.828125 257.246094 C 254.828125 257.128906 254.734375 257.035156 254.617188 257.035156 C 254.5 257.035156 254.40625 257.128906 254.40625 257.246094 C 254.40625 257.363281 254.5 257.457031 254.617188 257.457031 C 254.734375 257.457031 254.828125 257.363281 254.828125 257.246094 Z M 254.828125 257.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.019531 255.058594 C 250.019531 254.941406 249.925781 254.847656 249.808594 254.847656 C 249.691406 254.847656 249.597656 254.941406 249.597656 255.058594 C 249.597656 255.175781 249.691406 255.269531 249.808594 255.269531 C 249.925781 255.269531 250.019531 255.175781 250.019531 255.058594 Z M 250.019531 255.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.066406 256.222656 C 251.066406 256.105469 250.972656 256.011719 250.855469 256.011719 C 250.738281 256.011719 250.644531 256.105469 250.644531 256.222656 C 250.644531 256.339844 250.738281 256.433594 250.855469 256.433594 C 250.972656 256.433594 251.066406 256.339844 251.066406 256.222656 Z M 251.066406 256.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.210938 255.515625 C 251.210938 255.398438 251.117188 255.304688 251 255.304688 C 250.882812 255.304688 250.789062 255.398438 250.789062 255.515625 C 250.789062 255.632812 250.882812 255.726562 251 255.726562 C 251.117188 255.726562 251.210938 255.632812 251.210938 255.515625 Z M 251.210938 255.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.964844 257.554688 C 250.964844 257.4375 250.871094 257.34375 250.753906 257.34375 C 250.636719 257.34375 250.542969 257.4375 250.542969 257.554688 C 250.542969 257.671875 250.636719 257.765625 250.753906 257.765625 C 250.871094 257.765625 250.964844 257.671875 250.964844 257.554688 Z M 250.964844 257.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.601562 256.570312 C 251.601562 256.453125 251.507812 256.359375 251.390625 256.359375 C 251.273438 256.359375 251.179688 256.453125 251.179688 256.570312 C 251.179688 256.6875 251.273438 256.78125 251.390625 256.78125 C 251.507812 256.78125 251.601562 256.6875 251.601562 256.570312 Z M 251.601562 256.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.84375 255.578125 C 250.84375 255.460938 250.75 255.367188 250.632812 255.367188 C 250.515625 255.367188 250.421875 255.460938 250.421875 255.578125 C 250.421875 255.695312 250.515625 255.789062 250.632812 255.789062 C 250.75 255.789062 250.84375 255.695312 250.84375 255.578125 Z M 250.84375 255.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.617188 257.027344 C 249.617188 256.910156 249.523438 256.816406 249.40625 256.816406 C 249.289062 256.816406 249.195312 256.910156 249.195312 257.027344 C 249.195312 257.144531 249.289062 257.238281 249.40625 257.238281 C 249.523438 257.238281 249.617188 257.144531 249.617188 257.027344 Z M 249.617188 257.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.316406 255.742188 C 251.316406 255.625 251.222656 255.53125 251.105469 255.53125 C 250.988281 255.53125 250.894531 255.625 250.894531 255.742188 C 250.894531 255.859375 250.988281 255.953125 251.105469 255.953125 C 251.222656 255.953125 251.316406 255.859375 251.316406 255.742188 Z M 251.316406 255.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.207031 252.738281 C 251.207031 252.621094 251.113281 252.527344 250.996094 252.527344 C 250.878906 252.527344 250.785156 252.621094 250.785156 252.738281 C 250.785156 252.855469 250.878906 252.949219 250.996094 252.949219 C 251.113281 252.949219 251.207031 252.855469 251.207031 252.738281 Z M 251.207031 252.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.042969 252.832031 C 252.042969 252.714844 251.949219 252.621094 251.832031 252.621094 C 251.714844 252.621094 251.621094 252.714844 251.621094 252.832031 C 251.621094 252.949219 251.714844 253.042969 251.832031 253.042969 C 251.949219 253.042969 252.042969 252.949219 252.042969 252.832031 Z M 252.042969 252.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.800781 253.660156 C 249.800781 253.542969 249.707031 253.449219 249.589844 253.449219 C 249.472656 253.449219 249.378906 253.542969 249.378906 253.660156 C 249.378906 253.777344 249.472656 253.871094 249.589844 253.871094 C 249.707031 253.871094 249.800781 253.777344 249.800781 253.660156 Z M 249.800781 253.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.226562 254.824219 C 249.226562 254.707031 249.132812 254.613281 249.015625 254.613281 C 248.898438 254.613281 248.804688 254.707031 248.804688 254.824219 C 248.804688 254.941406 248.898438 255.035156 249.015625 255.035156 C 249.132812 255.035156 249.226562 254.941406 249.226562 254.824219 Z M 249.226562 254.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.160156 253.253906 C 251.160156 253.136719 251.066406 253.042969 250.949219 253.042969 C 250.832031 253.042969 250.738281 253.136719 250.738281 253.253906 C 250.738281 253.371094 250.832031 253.464844 250.949219 253.464844 C 251.066406 253.464844 251.160156 253.371094 251.160156 253.253906 Z M 251.160156 253.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.65625 249.226562 C 252.65625 249.109375 252.5625 249.015625 252.445312 249.015625 C 252.328125 249.015625 252.234375 249.109375 252.234375 249.226562 C 252.234375 249.34375 252.328125 249.4375 252.445312 249.4375 C 252.5625 249.4375 252.65625 249.34375 252.65625 249.226562 Z M 252.65625 249.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.230469 249.421875 C 253.230469 249.304688 253.136719 249.210938 253.019531 249.210938 C 252.902344 249.210938 252.808594 249.304688 252.808594 249.421875 C 252.808594 249.539062 252.902344 249.632812 253.019531 249.632812 C 253.136719 249.632812 253.230469 249.539062 253.230469 249.421875 Z M 253.230469 249.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.878906 247.542969 C 252.878906 247.425781 252.785156 247.332031 252.667969 247.332031 C 252.550781 247.332031 252.457031 247.425781 252.457031 247.542969 C 252.457031 247.660156 252.550781 247.753906 252.667969 247.753906 C 252.785156 247.753906 252.878906 247.660156 252.878906 247.542969 Z M 252.878906 247.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.765625 244.84375 C 252.765625 244.726562 252.671875 244.632812 252.554688 244.632812 C 252.4375 244.632812 252.34375 244.726562 252.34375 244.84375 C 252.34375 244.960938 252.4375 245.054688 252.554688 245.054688 C 252.671875 245.054688 252.765625 244.960938 252.765625 244.84375 Z M 252.765625 244.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.386719 244.59375 C 255.386719 244.476562 255.292969 244.382812 255.175781 244.382812 C 255.058594 244.382812 254.964844 244.476562 254.964844 244.59375 C 254.964844 244.710938 255.058594 244.804688 255.175781 244.804688 C 255.292969 244.804688 255.386719 244.710938 255.386719 244.59375 Z M 255.386719 244.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.097656 242.917969 C 254.097656 242.800781 254.003906 242.707031 253.886719 242.707031 C 253.769531 242.707031 253.675781 242.800781 253.675781 242.917969 C 253.675781 243.035156 253.769531 243.128906 253.886719 243.128906 C 254.003906 243.128906 254.097656 243.035156 254.097656 242.917969 Z M 254.097656 242.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.285156 241.816406 C 257.285156 241.699219 257.191406 241.605469 257.074219 241.605469 C 256.957031 241.605469 256.863281 241.699219 256.863281 241.816406 C 256.863281 241.933594 256.957031 242.027344 257.074219 242.027344 C 257.191406 242.027344 257.285156 241.933594 257.285156 241.816406 Z M 257.285156 241.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.902344 242.046875 C 253.902344 241.929688 253.808594 241.835938 253.691406 241.835938 C 253.574219 241.835938 253.480469 241.929688 253.480469 242.046875 C 253.480469 242.164062 253.574219 242.257812 253.691406 242.257812 C 253.808594 242.257812 253.902344 242.164062 253.902344 242.046875 Z M 253.902344 242.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.234375 239.742188 C 256.234375 239.625 256.140625 239.53125 256.023438 239.53125 C 255.90625 239.53125 255.8125 239.625 255.8125 239.742188 C 255.8125 239.859375 255.90625 239.953125 256.023438 239.953125 C 256.140625 239.953125 256.234375 239.859375 256.234375 239.742188 Z M 256.234375 239.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.898438 238.160156 C 257.898438 238.042969 257.804688 237.949219 257.6875 237.949219 C 257.570312 237.949219 257.476562 238.042969 257.476562 238.160156 C 257.476562 238.277344 257.570312 238.371094 257.6875 238.371094 C 257.804688 238.371094 257.898438 238.277344 257.898438 238.160156 Z M 257.898438 238.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.230469 237.480469 C 257.230469 237.363281 257.136719 237.269531 257.019531 237.269531 C 256.902344 237.269531 256.808594 237.363281 256.808594 237.480469 C 256.808594 237.597656 256.902344 237.691406 257.019531 237.691406 C 257.136719 237.691406 257.230469 237.597656 257.230469 237.480469 Z M 257.230469 237.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.242188 235.117188 C 257.242188 235 257.148438 234.90625 257.03125 234.90625 C 256.914062 234.90625 256.820312 235 256.820312 235.117188 C 256.820312 235.234375 256.914062 235.328125 257.03125 235.328125 C 257.148438 235.328125 257.242188 235.234375 257.242188 235.117188 Z M 257.242188 235.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.84375 233.351562 C 254.84375 233.234375 254.75 233.140625 254.632812 233.140625 C 254.515625 233.140625 254.421875 233.234375 254.421875 233.351562 C 254.421875 233.46875 254.515625 233.5625 254.632812 233.5625 C 254.75 233.5625 254.84375 233.46875 254.84375 233.351562 Z M 254.84375 233.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.703125 231.796875 C 254.703125 231.679688 254.609375 231.585938 254.492188 231.585938 C 254.375 231.585938 254.28125 231.679688 254.28125 231.796875 C 254.28125 231.914062 254.375 232.007812 254.492188 232.007812 C 254.609375 232.007812 254.703125 231.914062 254.703125 231.796875 Z M 254.703125 231.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.550781 233.078125 C 253.550781 232.960938 253.457031 232.867188 253.339844 232.867188 C 253.222656 232.867188 253.128906 232.960938 253.128906 233.078125 C 253.128906 233.195312 253.222656 233.289062 253.339844 233.289062 C 253.457031 233.289062 253.550781 233.195312 253.550781 233.078125 Z M 253.550781 233.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.875 231.609375 C 254.875 231.492188 254.78125 231.398438 254.664062 231.398438 C 254.546875 231.398438 254.453125 231.492188 254.453125 231.609375 C 254.453125 231.726562 254.546875 231.820312 254.664062 231.820312 C 254.78125 231.820312 254.875 231.726562 254.875 231.609375 Z M 254.875 231.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.550781 232.089844 C 253.550781 231.972656 253.457031 231.878906 253.339844 231.878906 C 253.222656 231.878906 253.128906 231.972656 253.128906 232.089844 C 253.128906 232.207031 253.222656 232.300781 253.339844 232.300781 C 253.457031 232.300781 253.550781 232.207031 253.550781 232.089844 Z M 253.550781 232.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.179688 233.132812 C 255.179688 233.015625 255.085938 232.921875 254.96875 232.921875 C 254.851562 232.921875 254.757812 233.015625 254.757812 233.132812 C 254.757812 233.25 254.851562 233.34375 254.96875 233.34375 C 255.085938 233.34375 255.179688 233.25 255.179688 233.132812 Z M 255.179688 233.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.886719 234.660156 C 253.886719 234.542969 253.792969 234.449219 253.675781 234.449219 C 253.558594 234.449219 253.464844 234.542969 253.464844 234.660156 C 253.464844 234.777344 253.558594 234.871094 253.675781 234.871094 C 253.792969 234.871094 253.886719 234.777344 253.886719 234.660156 Z M 253.886719 234.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.140625 234.671875 C 251.140625 234.554688 251.046875 234.460938 250.929688 234.460938 C 250.8125 234.460938 250.71875 234.554688 250.71875 234.671875 C 250.71875 234.789062 250.8125 234.882812 250.929688 234.882812 C 251.046875 234.882812 251.140625 234.789062 251.140625 234.671875 Z M 251.140625 234.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.511719 237.050781 C 244.511719 236.933594 244.417969 236.839844 244.300781 236.839844 C 244.183594 236.839844 244.089844 236.933594 244.089844 237.050781 C 244.089844 237.167969 244.183594 237.261719 244.300781 237.261719 C 244.417969 237.261719 244.511719 237.167969 244.511719 237.050781 Z M 244.511719 237.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.128906 236.441406 C 241.128906 236.324219 241.035156 236.230469 240.917969 236.230469 C 240.800781 236.230469 240.707031 236.324219 240.707031 236.441406 C 240.707031 236.558594 240.800781 236.652344 240.917969 236.652344 C 241.035156 236.652344 241.128906 236.558594 241.128906 236.441406 Z M 241.128906 236.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.34375 241.582031 C 245.34375 241.464844 245.25 241.371094 245.132812 241.371094 C 245.015625 241.371094 244.921875 241.464844 244.921875 241.582031 C 244.921875 241.699219 245.015625 241.792969 245.132812 241.792969 C 245.25 241.792969 245.34375 241.699219 245.34375 241.582031 Z M 245.34375 241.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.636719 244.234375 C 246.636719 244.117188 246.542969 244.023438 246.425781 244.023438 C 246.308594 244.023438 246.214844 244.117188 246.214844 244.234375 C 246.214844 244.351562 246.308594 244.445312 246.425781 244.445312 C 246.542969 244.445312 246.636719 244.351562 246.636719 244.234375 Z M 246.636719 244.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.917969 244.222656 C 250.917969 244.105469 250.824219 244.011719 250.707031 244.011719 C 250.589844 244.011719 250.496094 244.105469 250.496094 244.222656 C 250.496094 244.339844 250.589844 244.433594 250.707031 244.433594 C 250.824219 244.433594 250.917969 244.339844 250.917969 244.222656 Z M 250.917969 244.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.792969 243.492188 C 251.792969 243.375 251.699219 243.28125 251.582031 243.28125 C 251.464844 243.28125 251.371094 243.375 251.371094 243.492188 C 251.371094 243.609375 251.464844 243.703125 251.582031 243.703125 C 251.699219 243.703125 251.792969 243.609375 251.792969 243.492188 Z M 251.792969 243.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.265625 241.828125 C 247.265625 241.710938 247.171875 241.617188 247.054688 241.617188 C 246.9375 241.617188 246.84375 241.710938 246.84375 241.828125 C 246.84375 241.945312 246.9375 242.039062 247.054688 242.039062 C 247.171875 242.039062 247.265625 241.945312 247.265625 241.828125 Z M 247.265625 241.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.925781 241.273438 C 244.925781 241.15625 244.832031 241.0625 244.714844 241.0625 C 244.597656 241.0625 244.503906 241.15625 244.503906 241.273438 C 244.503906 241.390625 244.597656 241.484375 244.714844 241.484375 C 244.832031 241.484375 244.925781 241.390625 244.925781 241.273438 Z M 244.925781 241.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.910156 244.355469 C 246.910156 244.238281 246.816406 244.144531 246.699219 244.144531 C 246.582031 244.144531 246.488281 244.238281 246.488281 244.355469 C 246.488281 244.472656 246.582031 244.566406 246.699219 244.566406 C 246.816406 244.566406 246.910156 244.472656 246.910156 244.355469 Z M 246.910156 244.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.738281 248.496094 C 246.738281 248.378906 246.644531 248.285156 246.527344 248.285156 C 246.410156 248.285156 246.316406 248.378906 246.316406 248.496094 C 246.316406 248.613281 246.410156 248.707031 246.527344 248.707031 C 246.644531 248.707031 246.738281 248.613281 246.738281 248.496094 Z M 246.738281 248.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.90625 249.59375 C 244.90625 249.476562 244.8125 249.382812 244.695312 249.382812 C 244.578125 249.382812 244.484375 249.476562 244.484375 249.59375 C 244.484375 249.710938 244.578125 249.804688 244.695312 249.804688 C 244.8125 249.804688 244.90625 249.710938 244.90625 249.59375 Z M 244.90625 249.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.355469 252.671875 C 247.355469 252.554688 247.261719 252.460938 247.144531 252.460938 C 247.027344 252.460938 246.933594 252.554688 246.933594 252.671875 C 246.933594 252.789062 247.027344 252.882812 247.144531 252.882812 C 247.261719 252.882812 247.355469 252.789062 247.355469 252.671875 Z M 247.355469 252.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.25 250.398438 C 249.25 250.28125 249.15625 250.1875 249.039062 250.1875 C 248.921875 250.1875 248.828125 250.28125 248.828125 250.398438 C 248.828125 250.515625 248.921875 250.609375 249.039062 250.609375 C 249.15625 250.609375 249.25 250.515625 249.25 250.398438 Z M 249.25 250.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.636719 249.144531 C 250.636719 249.027344 250.542969 248.933594 250.425781 248.933594 C 250.308594 248.933594 250.214844 249.027344 250.214844 249.144531 C 250.214844 249.261719 250.308594 249.355469 250.425781 249.355469 C 250.542969 249.355469 250.636719 249.261719 250.636719 249.144531 Z M 250.636719 249.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.222656 243.773438 C 251.222656 243.65625 251.128906 243.5625 251.011719 243.5625 C 250.894531 243.5625 250.800781 243.65625 250.800781 243.773438 C 250.800781 243.890625 250.894531 243.984375 251.011719 243.984375 C 251.128906 243.984375 251.222656 243.890625 251.222656 243.773438 Z M 251.222656 243.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.941406 242.164062 C 248.941406 242.046875 248.847656 241.953125 248.730469 241.953125 C 248.613281 241.953125 248.519531 242.046875 248.519531 242.164062 C 248.519531 242.28125 248.613281 242.375 248.730469 242.375 C 248.847656 242.375 248.941406 242.28125 248.941406 242.164062 Z M 248.941406 242.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.4375 243.707031 C 249.4375 243.589844 249.34375 243.496094 249.226562 243.496094 C 249.109375 243.496094 249.015625 243.589844 249.015625 243.707031 C 249.015625 243.824219 249.109375 243.917969 249.226562 243.917969 C 249.34375 243.917969 249.4375 243.824219 249.4375 243.707031 Z M 249.4375 243.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.503906 243.914062 C 251.503906 243.796875 251.410156 243.703125 251.292969 243.703125 C 251.175781 243.703125 251.082031 243.796875 251.082031 243.914062 C 251.082031 244.03125 251.175781 244.125 251.292969 244.125 C 251.410156 244.125 251.503906 244.03125 251.503906 243.914062 Z M 251.503906 243.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.921875 248.203125 C 247.921875 248.085938 247.828125 247.992188 247.710938 247.992188 C 247.59375 247.992188 247.5 248.085938 247.5 248.203125 C 247.5 248.320312 247.59375 248.414062 247.710938 248.414062 C 247.828125 248.414062 247.921875 248.320312 247.921875 248.203125 Z M 247.921875 248.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.191406 250.9375 C 247.191406 250.820312 247.097656 250.726562 246.980469 250.726562 C 246.863281 250.726562 246.769531 250.820312 246.769531 250.9375 C 246.769531 251.054688 246.863281 251.148438 246.980469 251.148438 C 247.097656 251.148438 247.191406 251.054688 247.191406 250.9375 Z M 247.191406 250.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.695312 251.730469 C 244.695312 251.613281 244.601562 251.519531 244.484375 251.519531 C 244.367188 251.519531 244.273438 251.613281 244.273438 251.730469 C 244.273438 251.847656 244.367188 251.941406 244.484375 251.941406 C 244.601562 251.941406 244.695312 251.847656 244.695312 251.730469 Z M 244.695312 251.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.425781 249.417969 C 245.425781 249.300781 245.332031 249.207031 245.214844 249.207031 C 245.097656 249.207031 245.003906 249.300781 245.003906 249.417969 C 245.003906 249.535156 245.097656 249.628906 245.214844 249.628906 C 245.332031 249.628906 245.425781 249.535156 245.425781 249.417969 Z M 245.425781 249.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.332031 246.394531 C 242.332031 246.277344 242.238281 246.183594 242.121094 246.183594 C 242.003906 246.183594 241.910156 246.277344 241.910156 246.394531 C 241.910156 246.511719 242.003906 246.605469 242.121094 246.605469 C 242.238281 246.605469 242.332031 246.511719 242.332031 246.394531 Z M 242.332031 246.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.253906 249.148438 C 242.253906 249.03125 242.160156 248.9375 242.042969 248.9375 C 241.925781 248.9375 241.832031 249.03125 241.832031 249.148438 C 241.832031 249.265625 241.925781 249.359375 242.042969 249.359375 C 242.160156 249.359375 242.253906 249.265625 242.253906 249.148438 Z M 242.253906 249.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.777344 248.136719 C 241.777344 248.019531 241.683594 247.925781 241.566406 247.925781 C 241.449219 247.925781 241.355469 248.019531 241.355469 248.136719 C 241.355469 248.253906 241.449219 248.347656 241.566406 248.347656 C 241.683594 248.347656 241.777344 248.253906 241.777344 248.136719 Z M 241.777344 248.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.234375 246.570312 C 243.234375 246.453125 243.140625 246.359375 243.023438 246.359375 C 242.90625 246.359375 242.8125 246.453125 242.8125 246.570312 C 242.8125 246.6875 242.90625 246.78125 243.023438 246.78125 C 243.140625 246.78125 243.234375 246.6875 243.234375 246.570312 Z M 243.234375 246.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.640625 246.4375 C 241.640625 246.320312 241.546875 246.226562 241.429688 246.226562 C 241.3125 246.226562 241.21875 246.320312 241.21875 246.4375 C 241.21875 246.554688 241.3125 246.648438 241.429688 246.648438 C 241.546875 246.648438 241.640625 246.554688 241.640625 246.4375 Z M 241.640625 246.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.257812 247.246094 C 244.257812 247.128906 244.164062 247.035156 244.046875 247.035156 C 243.929688 247.035156 243.835938 247.128906 243.835938 247.246094 C 243.835938 247.363281 243.929688 247.457031 244.046875 247.457031 C 244.164062 247.457031 244.257812 247.363281 244.257812 247.246094 Z M 244.257812 247.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.671875 249.164062 C 243.671875 249.046875 243.578125 248.953125 243.460938 248.953125 C 243.34375 248.953125 243.25 249.046875 243.25 249.164062 C 243.25 249.28125 243.34375 249.375 243.460938 249.375 C 243.578125 249.375 243.671875 249.28125 243.671875 249.164062 Z M 243.671875 249.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.527344 246.0625 C 243.527344 245.945312 243.433594 245.851562 243.316406 245.851562 C 243.199219 245.851562 243.105469 245.945312 243.105469 246.0625 C 243.105469 246.179688 243.199219 246.273438 243.316406 246.273438 C 243.433594 246.273438 243.527344 246.179688 243.527344 246.0625 Z M 243.527344 246.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.171875 245.007812 C 246.171875 244.890625 246.078125 244.796875 245.960938 244.796875 C 245.84375 244.796875 245.75 244.890625 245.75 245.007812 C 245.75 245.125 245.84375 245.21875 245.960938 245.21875 C 246.078125 245.21875 246.171875 245.125 246.171875 245.007812 Z M 246.171875 245.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.015625 249.925781 C 244.015625 249.808594 243.921875 249.714844 243.804688 249.714844 C 243.6875 249.714844 243.59375 249.808594 243.59375 249.925781 C 243.59375 250.042969 243.6875 250.136719 243.804688 250.136719 C 243.921875 250.136719 244.015625 250.042969 244.015625 249.925781 Z M 244.015625 249.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.921875 253.832031 C 242.921875 253.714844 242.828125 253.621094 242.710938 253.621094 C 242.59375 253.621094 242.5 253.714844 242.5 253.832031 C 242.5 253.949219 242.59375 254.042969 242.710938 254.042969 C 242.828125 254.042969 242.921875 253.949219 242.921875 253.832031 Z M 242.921875 253.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.878906 250.253906 C 244.878906 250.136719 244.785156 250.042969 244.667969 250.042969 C 244.550781 250.042969 244.457031 250.136719 244.457031 250.253906 C 244.457031 250.371094 244.550781 250.464844 244.667969 250.464844 C 244.785156 250.464844 244.878906 250.371094 244.878906 250.253906 Z M 244.878906 250.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.578125 252.78125 C 243.578125 252.664062 243.484375 252.570312 243.367188 252.570312 C 243.25 252.570312 243.15625 252.664062 243.15625 252.78125 C 243.15625 252.898438 243.25 252.992188 243.367188 252.992188 C 243.484375 252.992188 243.578125 252.898438 243.578125 252.78125 Z M 243.578125 252.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.511719 253.261719 C 246.511719 253.144531 246.417969 253.050781 246.300781 253.050781 C 246.183594 253.050781 246.089844 253.144531 246.089844 253.261719 C 246.089844 253.378906 246.183594 253.472656 246.300781 253.472656 C 246.417969 253.472656 246.511719 253.378906 246.511719 253.261719 Z M 246.511719 253.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.609375 252.707031 C 245.609375 252.589844 245.515625 252.496094 245.398438 252.496094 C 245.28125 252.496094 245.1875 252.589844 245.1875 252.707031 C 245.1875 252.824219 245.28125 252.917969 245.398438 252.917969 C 245.515625 252.917969 245.609375 252.824219 245.609375 252.707031 Z M 245.609375 252.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.132812 251.953125 C 245.132812 251.835938 245.039062 251.742188 244.921875 251.742188 C 244.804688 251.742188 244.710938 251.835938 244.710938 251.953125 C 244.710938 252.070312 244.804688 252.164062 244.921875 252.164062 C 245.039062 252.164062 245.132812 252.070312 245.132812 251.953125 Z M 245.132812 251.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.335938 251.917969 C 250.335938 251.800781 250.242188 251.707031 250.125 251.707031 C 250.007812 251.707031 249.914062 251.800781 249.914062 251.917969 C 249.914062 252.035156 250.007812 252.128906 250.125 252.128906 C 250.242188 252.128906 250.335938 252.035156 250.335938 251.917969 Z M 250.335938 251.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.871094 251.816406 C 250.871094 251.699219 250.777344 251.605469 250.660156 251.605469 C 250.542969 251.605469 250.449219 251.699219 250.449219 251.816406 C 250.449219 251.933594 250.542969 252.027344 250.660156 252.027344 C 250.777344 252.027344 250.871094 251.933594 250.871094 251.816406 Z M 250.871094 251.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.238281 250.488281 C 253.238281 250.371094 253.144531 250.277344 253.027344 250.277344 C 252.910156 250.277344 252.816406 250.371094 252.816406 250.488281 C 252.816406 250.605469 252.910156 250.699219 253.027344 250.699219 C 253.144531 250.699219 253.238281 250.605469 253.238281 250.488281 Z M 253.238281 250.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.480469 255.714844 C 251.480469 255.597656 251.386719 255.503906 251.269531 255.503906 C 251.152344 255.503906 251.058594 255.597656 251.058594 255.714844 C 251.058594 255.832031 251.152344 255.925781 251.269531 255.925781 C 251.386719 255.925781 251.480469 255.832031 251.480469 255.714844 Z M 251.480469 255.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.753906 253.414062 C 250.753906 253.296875 250.660156 253.203125 250.542969 253.203125 C 250.425781 253.203125 250.332031 253.296875 250.332031 253.414062 C 250.332031 253.53125 250.425781 253.625 250.542969 253.625 C 250.660156 253.625 250.753906 253.53125 250.753906 253.414062 Z M 250.753906 253.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.695312 254.089844 C 250.695312 253.972656 250.601562 253.878906 250.484375 253.878906 C 250.367188 253.878906 250.273438 253.972656 250.273438 254.089844 C 250.273438 254.207031 250.367188 254.300781 250.484375 254.300781 C 250.601562 254.300781 250.695312 254.207031 250.695312 254.089844 Z M 250.695312 254.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.222656 251.132812 C 251.222656 251.015625 251.128906 250.921875 251.011719 250.921875 C 250.894531 250.921875 250.800781 251.015625 250.800781 251.132812 C 250.800781 251.25 250.894531 251.34375 251.011719 251.34375 C 251.128906 251.34375 251.222656 251.25 251.222656 251.132812 Z M 251.222656 251.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.613281 250.925781 C 249.613281 250.808594 249.519531 250.714844 249.402344 250.714844 C 249.285156 250.714844 249.191406 250.808594 249.191406 250.925781 C 249.191406 251.042969 249.285156 251.136719 249.402344 251.136719 C 249.519531 251.136719 249.613281 251.042969 249.613281 250.925781 Z M 249.613281 250.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.609375 250.25 C 251.609375 250.132812 251.515625 250.039062 251.398438 250.039062 C 251.28125 250.039062 251.1875 250.132812 251.1875 250.25 C 251.1875 250.367188 251.28125 250.460938 251.398438 250.460938 C 251.515625 250.460938 251.609375 250.367188 251.609375 250.25 Z M 251.609375 250.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.882812 250.28125 C 251.882812 250.164062 251.789062 250.070312 251.671875 250.070312 C 251.554688 250.070312 251.460938 250.164062 251.460938 250.28125 C 251.460938 250.398438 251.554688 250.492188 251.671875 250.492188 C 251.789062 250.492188 251.882812 250.398438 251.882812 250.28125 Z M 251.882812 250.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.214844 251.632812 C 248.214844 251.515625 248.121094 251.421875 248.003906 251.421875 C 247.886719 251.421875 247.792969 251.515625 247.792969 251.632812 C 247.792969 251.75 247.886719 251.84375 248.003906 251.84375 C 248.121094 251.84375 248.214844 251.75 248.214844 251.632812 Z M 248.214844 251.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.910156 250.320312 C 246.910156 250.203125 246.816406 250.109375 246.699219 250.109375 C 246.582031 250.109375 246.488281 250.203125 246.488281 250.320312 C 246.488281 250.4375 246.582031 250.53125 246.699219 250.53125 C 246.816406 250.53125 246.910156 250.4375 246.910156 250.320312 Z M 246.910156 250.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.585938 249.078125 C 244.585938 248.960938 244.492188 248.867188 244.375 248.867188 C 244.257812 248.867188 244.164062 248.960938 244.164062 249.078125 C 244.164062 249.195312 244.257812 249.289062 244.375 249.289062 C 244.492188 249.289062 244.585938 249.195312 244.585938 249.078125 Z M 244.585938 249.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.613281 250.335938 C 244.613281 250.21875 244.519531 250.125 244.402344 250.125 C 244.285156 250.125 244.191406 250.21875 244.191406 250.335938 C 244.191406 250.453125 244.285156 250.546875 244.402344 250.546875 C 244.519531 250.546875 244.613281 250.453125 244.613281 250.335938 Z M 244.613281 250.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.414062 252 C 244.414062 251.882812 244.320312 251.789062 244.203125 251.789062 C 244.085938 251.789062 243.992188 251.882812 243.992188 252 C 243.992188 252.117188 244.085938 252.210938 244.203125 252.210938 C 244.320312 252.210938 244.414062 252.117188 244.414062 252 Z M 244.414062 252 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.550781 254.011719 C 242.550781 253.894531 242.457031 253.800781 242.339844 253.800781 C 242.222656 253.800781 242.128906 253.894531 242.128906 254.011719 C 242.128906 254.128906 242.222656 254.222656 242.339844 254.222656 C 242.457031 254.222656 242.550781 254.128906 242.550781 254.011719 Z M 242.550781 254.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.457031 250.539062 C 242.457031 250.421875 242.363281 250.328125 242.246094 250.328125 C 242.128906 250.328125 242.035156 250.421875 242.035156 250.539062 C 242.035156 250.65625 242.128906 250.75 242.246094 250.75 C 242.363281 250.75 242.457031 250.65625 242.457031 250.539062 Z M 242.457031 250.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243 250.988281 C 243 250.871094 242.90625 250.777344 242.789062 250.777344 C 242.671875 250.777344 242.578125 250.871094 242.578125 250.988281 C 242.578125 251.105469 242.671875 251.199219 242.789062 251.199219 C 242.90625 251.199219 243 251.105469 243 250.988281 Z M 243 250.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.421875 252.398438 C 245.421875 252.28125 245.328125 252.1875 245.210938 252.1875 C 245.09375 252.1875 245 252.28125 245 252.398438 C 245 252.515625 245.09375 252.609375 245.210938 252.609375 C 245.328125 252.609375 245.421875 252.515625 245.421875 252.398438 Z M 245.421875 252.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.148438 248.46875 C 247.148438 248.351562 247.054688 248.257812 246.9375 248.257812 C 246.820312 248.257812 246.726562 248.351562 246.726562 248.46875 C 246.726562 248.585938 246.820312 248.679688 246.9375 248.679688 C 247.054688 248.679688 247.148438 248.585938 247.148438 248.46875 Z M 247.148438 248.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.160156 250.308594 C 247.160156 250.191406 247.066406 250.097656 246.949219 250.097656 C 246.832031 250.097656 246.738281 250.191406 246.738281 250.308594 C 246.738281 250.425781 246.832031 250.519531 246.949219 250.519531 C 247.066406 250.519531 247.160156 250.425781 247.160156 250.308594 Z M 247.160156 250.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.566406 250.902344 C 246.566406 250.785156 246.472656 250.691406 246.355469 250.691406 C 246.238281 250.691406 246.144531 250.785156 246.144531 250.902344 C 246.144531 251.019531 246.238281 251.113281 246.355469 251.113281 C 246.472656 251.113281 246.566406 251.019531 246.566406 250.902344 Z M 246.566406 250.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.003906 250.386719 C 246.003906 250.269531 245.910156 250.175781 245.792969 250.175781 C 245.675781 250.175781 245.582031 250.269531 245.582031 250.386719 C 245.582031 250.503906 245.675781 250.597656 245.792969 250.597656 C 245.910156 250.597656 246.003906 250.503906 246.003906 250.386719 Z M 246.003906 250.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.34375 250.234375 C 246.34375 250.117188 246.25 250.023438 246.132812 250.023438 C 246.015625 250.023438 245.921875 250.117188 245.921875 250.234375 C 245.921875 250.351562 246.015625 250.445312 246.132812 250.445312 C 246.25 250.445312 246.34375 250.351562 246.34375 250.234375 Z M 246.34375 250.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.457031 253.023438 C 245.457031 252.90625 245.363281 252.8125 245.246094 252.8125 C 245.128906 252.8125 245.035156 252.90625 245.035156 253.023438 C 245.035156 253.140625 245.128906 253.234375 245.246094 253.234375 C 245.363281 253.234375 245.457031 253.140625 245.457031 253.023438 Z M 245.457031 253.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.210938 255.410156 C 245.210938 255.292969 245.117188 255.199219 245 255.199219 C 244.882812 255.199219 244.789062 255.292969 244.789062 255.410156 C 244.789062 255.527344 244.882812 255.621094 245 255.621094 C 245.117188 255.621094 245.210938 255.527344 245.210938 255.410156 Z M 245.210938 255.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.800781 255.554688 C 248.800781 255.4375 248.707031 255.34375 248.589844 255.34375 C 248.472656 255.34375 248.378906 255.4375 248.378906 255.554688 C 248.378906 255.671875 248.472656 255.765625 248.589844 255.765625 C 248.707031 255.765625 248.800781 255.671875 248.800781 255.554688 Z M 248.800781 255.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.734375 251.925781 C 251.734375 251.808594 251.640625 251.714844 251.523438 251.714844 C 251.40625 251.714844 251.3125 251.808594 251.3125 251.925781 C 251.3125 252.042969 251.40625 252.136719 251.523438 252.136719 C 251.640625 252.136719 251.734375 252.042969 251.734375 251.925781 Z M 251.734375 251.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.460938 251.207031 C 255.460938 251.089844 255.367188 250.996094 255.25 250.996094 C 255.132812 250.996094 255.039062 251.089844 255.039062 251.207031 C 255.039062 251.324219 255.132812 251.417969 255.25 251.417969 C 255.367188 251.417969 255.460938 251.324219 255.460938 251.207031 Z M 255.460938 251.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.140625 250.503906 C 254.140625 250.386719 254.046875 250.292969 253.929688 250.292969 C 253.8125 250.292969 253.71875 250.386719 253.71875 250.503906 C 253.71875 250.621094 253.8125 250.714844 253.929688 250.714844 C 254.046875 250.714844 254.140625 250.621094 254.140625 250.503906 Z M 254.140625 250.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.324219 249.960938 C 255.324219 249.84375 255.230469 249.75 255.113281 249.75 C 254.996094 249.75 254.902344 249.84375 254.902344 249.960938 C 254.902344 250.078125 254.996094 250.171875 255.113281 250.171875 C 255.230469 250.171875 255.324219 250.078125 255.324219 249.960938 Z M 255.324219 249.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.492188 251.703125 C 258.492188 251.585938 258.398438 251.492188 258.28125 251.492188 C 258.164062 251.492188 258.070312 251.585938 258.070312 251.703125 C 258.070312 251.820312 258.164062 251.914062 258.28125 251.914062 C 258.398438 251.914062 258.492188 251.820312 258.492188 251.703125 Z M 258.492188 251.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.578125 251.824219 C 259.578125 251.707031 259.484375 251.613281 259.367188 251.613281 C 259.25 251.613281 259.15625 251.707031 259.15625 251.824219 C 259.15625 251.941406 259.25 252.035156 259.367188 252.035156 C 259.484375 252.035156 259.578125 251.941406 259.578125 251.824219 Z M 259.578125 251.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.128906 258.085938 C 259.128906 257.96875 259.035156 257.875 258.917969 257.875 C 258.800781 257.875 258.707031 257.96875 258.707031 258.085938 C 258.707031 258.203125 258.800781 258.296875 258.917969 258.296875 C 259.035156 258.296875 259.128906 258.203125 259.128906 258.085938 Z M 259.128906 258.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.703125 254.808594 C 258.703125 254.691406 258.609375 254.597656 258.492188 254.597656 C 258.375 254.597656 258.28125 254.691406 258.28125 254.808594 C 258.28125 254.925781 258.375 255.019531 258.492188 255.019531 C 258.609375 255.019531 258.703125 254.925781 258.703125 254.808594 Z M 258.703125 254.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.292969 252.207031 C 257.292969 252.089844 257.199219 251.996094 257.082031 251.996094 C 256.964844 251.996094 256.871094 252.089844 256.871094 252.207031 C 256.871094 252.324219 256.964844 252.417969 257.082031 252.417969 C 257.199219 252.417969 257.292969 252.324219 257.292969 252.207031 Z M 257.292969 252.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.652344 254.992188 C 255.652344 254.875 255.558594 254.78125 255.441406 254.78125 C 255.324219 254.78125 255.230469 254.875 255.230469 254.992188 C 255.230469 255.109375 255.324219 255.203125 255.441406 255.203125 C 255.558594 255.203125 255.652344 255.109375 255.652344 254.992188 Z M 255.652344 254.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.03125 258.574219 C 259.03125 258.457031 258.9375 258.363281 258.820312 258.363281 C 258.703125 258.363281 258.609375 258.457031 258.609375 258.574219 C 258.609375 258.691406 258.703125 258.785156 258.820312 258.785156 C 258.9375 258.785156 259.03125 258.691406 259.03125 258.574219 Z M 259.03125 258.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.429688 255.949219 C 262.429688 255.832031 262.335938 255.738281 262.21875 255.738281 C 262.101562 255.738281 262.007812 255.832031 262.007812 255.949219 C 262.007812 256.066406 262.101562 256.160156 262.21875 256.160156 C 262.335938 256.160156 262.429688 256.066406 262.429688 255.949219 Z M 262.429688 255.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.855469 253.015625 C 261.855469 252.898438 261.761719 252.804688 261.644531 252.804688 C 261.527344 252.804688 261.433594 252.898438 261.433594 253.015625 C 261.433594 253.132812 261.527344 253.226562 261.644531 253.226562 C 261.761719 253.226562 261.855469 253.132812 261.855469 253.015625 Z M 261.855469 253.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.753906 250.980469 C 263.753906 250.863281 263.660156 250.769531 263.542969 250.769531 C 263.425781 250.769531 263.332031 250.863281 263.332031 250.980469 C 263.332031 251.097656 263.425781 251.191406 263.542969 251.191406 C 263.660156 251.191406 263.753906 251.097656 263.753906 250.980469 Z M 263.753906 250.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.726562 253.140625 C 262.726562 253.023438 262.632812 252.929688 262.515625 252.929688 C 262.398438 252.929688 262.304688 253.023438 262.304688 253.140625 C 262.304688 253.257812 262.398438 253.351562 262.515625 253.351562 C 262.632812 253.351562 262.726562 253.257812 262.726562 253.140625 Z M 262.726562 253.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.851562 253.226562 C 257.851562 253.109375 257.757812 253.015625 257.640625 253.015625 C 257.523438 253.015625 257.429688 253.109375 257.429688 253.226562 C 257.429688 253.34375 257.523438 253.4375 257.640625 253.4375 C 257.757812 253.4375 257.851562 253.34375 257.851562 253.226562 Z M 257.851562 253.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.828125 249.445312 C 256.828125 249.328125 256.734375 249.234375 256.617188 249.234375 C 256.5 249.234375 256.40625 249.328125 256.40625 249.445312 C 256.40625 249.5625 256.5 249.65625 256.617188 249.65625 C 256.734375 249.65625 256.828125 249.5625 256.828125 249.445312 Z M 256.828125 249.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.121094 252.816406 C 258.121094 252.699219 258.027344 252.605469 257.910156 252.605469 C 257.792969 252.605469 257.699219 252.699219 257.699219 252.816406 C 257.699219 252.933594 257.792969 253.027344 257.910156 253.027344 C 258.027344 253.027344 258.121094 252.933594 258.121094 252.816406 Z M 258.121094 252.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.480469 252.605469 C 259.480469 252.488281 259.386719 252.394531 259.269531 252.394531 C 259.152344 252.394531 259.058594 252.488281 259.058594 252.605469 C 259.058594 252.722656 259.152344 252.816406 259.269531 252.816406 C 259.386719 252.816406 259.480469 252.722656 259.480469 252.605469 Z M 259.480469 252.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.980469 250.910156 C 256.980469 250.792969 256.886719 250.699219 256.769531 250.699219 C 256.652344 250.699219 256.558594 250.792969 256.558594 250.910156 C 256.558594 251.027344 256.652344 251.121094 256.769531 251.121094 C 256.886719 251.121094 256.980469 251.027344 256.980469 250.910156 Z M 256.980469 250.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.914062 251.972656 C 254.914062 251.855469 254.820312 251.761719 254.703125 251.761719 C 254.585938 251.761719 254.492188 251.855469 254.492188 251.972656 C 254.492188 252.089844 254.585938 252.183594 254.703125 252.183594 C 254.820312 252.183594 254.914062 252.089844 254.914062 251.972656 Z M 254.914062 251.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.882812 249.566406 C 253.882812 249.449219 253.789062 249.355469 253.671875 249.355469 C 253.554688 249.355469 253.460938 249.449219 253.460938 249.566406 C 253.460938 249.683594 253.554688 249.777344 253.671875 249.777344 C 253.789062 249.777344 253.882812 249.683594 253.882812 249.566406 Z M 253.882812 249.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.730469 249.195312 C 253.730469 249.078125 253.636719 248.984375 253.519531 248.984375 C 253.402344 248.984375 253.308594 249.078125 253.308594 249.195312 C 253.308594 249.3125 253.402344 249.40625 253.519531 249.40625 C 253.636719 249.40625 253.730469 249.3125 253.730469 249.195312 Z M 253.730469 249.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.679688 248.683594 C 253.679688 248.566406 253.585938 248.472656 253.46875 248.472656 C 253.351562 248.472656 253.257812 248.566406 253.257812 248.683594 C 253.257812 248.800781 253.351562 248.894531 253.46875 248.894531 C 253.585938 248.894531 253.679688 248.800781 253.679688 248.683594 Z M 253.679688 248.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.988281 251.992188 C 254.988281 251.875 254.894531 251.78125 254.777344 251.78125 C 254.660156 251.78125 254.566406 251.875 254.566406 251.992188 C 254.566406 252.109375 254.660156 252.203125 254.777344 252.203125 C 254.894531 252.203125 254.988281 252.109375 254.988281 251.992188 Z M 254.988281 251.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.941406 252.21875 C 258.941406 252.101562 258.847656 252.007812 258.730469 252.007812 C 258.613281 252.007812 258.519531 252.101562 258.519531 252.21875 C 258.519531 252.335938 258.613281 252.429688 258.730469 252.429688 C 258.847656 252.429688 258.941406 252.335938 258.941406 252.21875 Z M 258.941406 252.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.253906 254.929688 C 260.253906 254.8125 260.160156 254.71875 260.042969 254.71875 C 259.925781 254.71875 259.832031 254.8125 259.832031 254.929688 C 259.832031 255.046875 259.925781 255.140625 260.042969 255.140625 C 260.160156 255.140625 260.253906 255.046875 260.253906 254.929688 Z M 260.253906 254.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.402344 257.007812 C 259.402344 256.890625 259.308594 256.796875 259.191406 256.796875 C 259.074219 256.796875 258.980469 256.890625 258.980469 257.007812 C 258.980469 257.125 259.074219 257.21875 259.191406 257.21875 C 259.308594 257.21875 259.402344 257.125 259.402344 257.007812 Z M 259.402344 257.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.089844 255.003906 C 258.089844 254.886719 257.996094 254.792969 257.878906 254.792969 C 257.761719 254.792969 257.667969 254.886719 257.667969 255.003906 C 257.667969 255.121094 257.761719 255.214844 257.878906 255.214844 C 257.996094 255.214844 258.089844 255.121094 258.089844 255.003906 Z M 258.089844 255.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.875 254.394531 C 256.875 254.277344 256.78125 254.183594 256.664062 254.183594 C 256.546875 254.183594 256.453125 254.277344 256.453125 254.394531 C 256.453125 254.511719 256.546875 254.605469 256.664062 254.605469 C 256.78125 254.605469 256.875 254.511719 256.875 254.394531 Z M 256.875 254.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.710938 253.34375 C 256.710938 253.226562 256.617188 253.132812 256.5 253.132812 C 256.382812 253.132812 256.289062 253.226562 256.289062 253.34375 C 256.289062 253.460938 256.382812 253.554688 256.5 253.554688 C 256.617188 253.554688 256.710938 253.460938 256.710938 253.34375 Z M 256.710938 253.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.042969 250.148438 C 257.042969 250.03125 256.949219 249.9375 256.832031 249.9375 C 256.714844 249.9375 256.621094 250.03125 256.621094 250.148438 C 256.621094 250.265625 256.714844 250.359375 256.832031 250.359375 C 256.949219 250.359375 257.042969 250.265625 257.042969 250.148438 Z M 257.042969 250.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.859375 250.5625 C 255.859375 250.445312 255.765625 250.351562 255.648438 250.351562 C 255.53125 250.351562 255.4375 250.445312 255.4375 250.5625 C 255.4375 250.679688 255.53125 250.773438 255.648438 250.773438 C 255.765625 250.773438 255.859375 250.679688 255.859375 250.5625 Z M 255.859375 250.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.128906 247.449219 C 257.128906 247.332031 257.035156 247.238281 256.917969 247.238281 C 256.800781 247.238281 256.707031 247.332031 256.707031 247.449219 C 256.707031 247.566406 256.800781 247.660156 256.917969 247.660156 C 257.035156 247.660156 257.128906 247.566406 257.128906 247.449219 Z M 257.128906 247.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.097656 247.070312 C 257.097656 246.953125 257.003906 246.859375 256.886719 246.859375 C 256.769531 246.859375 256.675781 246.953125 256.675781 247.070312 C 256.675781 247.1875 256.769531 247.28125 256.886719 247.28125 C 257.003906 247.28125 257.097656 247.1875 257.097656 247.070312 Z M 257.097656 247.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.328125 244.671875 C 257.328125 244.554688 257.234375 244.460938 257.117188 244.460938 C 257 244.460938 256.90625 244.554688 256.90625 244.671875 C 256.90625 244.789062 257 244.882812 257.117188 244.882812 C 257.234375 244.882812 257.328125 244.789062 257.328125 244.671875 Z M 257.328125 244.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.144531 244.820312 C 255.144531 244.703125 255.050781 244.609375 254.933594 244.609375 C 254.816406 244.609375 254.722656 244.703125 254.722656 244.820312 C 254.722656 244.9375 254.816406 245.03125 254.933594 245.03125 C 255.050781 245.03125 255.144531 244.9375 255.144531 244.820312 Z M 255.144531 244.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.535156 242.734375 C 257.535156 242.617188 257.441406 242.523438 257.324219 242.523438 C 257.207031 242.523438 257.113281 242.617188 257.113281 242.734375 C 257.113281 242.851562 257.207031 242.945312 257.324219 242.945312 C 257.441406 242.945312 257.535156 242.851562 257.535156 242.734375 Z M 257.535156 242.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.601562 240.363281 C 257.601562 240.246094 257.507812 240.152344 257.390625 240.152344 C 257.273438 240.152344 257.179688 240.246094 257.179688 240.363281 C 257.179688 240.480469 257.273438 240.574219 257.390625 240.574219 C 257.507812 240.574219 257.601562 240.480469 257.601562 240.363281 Z M 257.601562 240.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.929688 240.460938 C 257.929688 240.34375 257.835938 240.25 257.71875 240.25 C 257.601562 240.25 257.507812 240.34375 257.507812 240.460938 C 257.507812 240.578125 257.601562 240.671875 257.71875 240.671875 C 257.835938 240.671875 257.929688 240.578125 257.929688 240.460938 Z M 257.929688 240.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.402344 240.128906 C 255.402344 240.011719 255.308594 239.917969 255.191406 239.917969 C 255.074219 239.917969 254.980469 240.011719 254.980469 240.128906 C 254.980469 240.246094 255.074219 240.339844 255.191406 240.339844 C 255.308594 240.339844 255.402344 240.246094 255.402344 240.128906 Z M 255.402344 240.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.40625 242.070312 C 257.40625 241.953125 257.3125 241.859375 257.195312 241.859375 C 257.078125 241.859375 256.984375 241.953125 256.984375 242.070312 C 256.984375 242.1875 257.078125 242.28125 257.195312 242.28125 C 257.3125 242.28125 257.40625 242.1875 257.40625 242.070312 Z M 257.40625 242.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.089844 241.226562 C 256.089844 241.109375 255.996094 241.015625 255.878906 241.015625 C 255.761719 241.015625 255.667969 241.109375 255.667969 241.226562 C 255.667969 241.34375 255.761719 241.4375 255.878906 241.4375 C 255.996094 241.4375 256.089844 241.34375 256.089844 241.226562 Z M 256.089844 241.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.550781 242.019531 C 256.550781 241.902344 256.457031 241.808594 256.339844 241.808594 C 256.222656 241.808594 256.128906 241.902344 256.128906 242.019531 C 256.128906 242.136719 256.222656 242.230469 256.339844 242.230469 C 256.457031 242.230469 256.550781 242.136719 256.550781 242.019531 Z M 256.550781 242.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.890625 241.144531 C 256.890625 241.027344 256.796875 240.933594 256.679688 240.933594 C 256.5625 240.933594 256.46875 241.027344 256.46875 241.144531 C 256.46875 241.261719 256.5625 241.355469 256.679688 241.355469 C 256.796875 241.355469 256.890625 241.261719 256.890625 241.144531 Z M 256.890625 241.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.699219 239.246094 C 257.699219 239.128906 257.605469 239.035156 257.488281 239.035156 C 257.371094 239.035156 257.277344 239.128906 257.277344 239.246094 C 257.277344 239.363281 257.371094 239.457031 257.488281 239.457031 C 257.605469 239.457031 257.699219 239.363281 257.699219 239.246094 Z M 257.699219 239.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.324219 239.433594 C 255.324219 239.316406 255.230469 239.222656 255.113281 239.222656 C 254.996094 239.222656 254.902344 239.316406 254.902344 239.433594 C 254.902344 239.550781 254.996094 239.644531 255.113281 239.644531 C 255.230469 239.644531 255.324219 239.550781 255.324219 239.433594 Z M 255.324219 239.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.691406 239.414062 C 253.691406 239.296875 253.597656 239.203125 253.480469 239.203125 C 253.363281 239.203125 253.269531 239.296875 253.269531 239.414062 C 253.269531 239.53125 253.363281 239.625 253.480469 239.625 C 253.597656 239.625 253.691406 239.53125 253.691406 239.414062 Z M 253.691406 239.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.144531 240.894531 C 254.144531 240.777344 254.050781 240.683594 253.933594 240.683594 C 253.816406 240.683594 253.722656 240.777344 253.722656 240.894531 C 253.722656 241.011719 253.816406 241.105469 253.933594 241.105469 C 254.050781 241.105469 254.144531 241.011719 254.144531 240.894531 Z M 254.144531 240.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.621094 240.375 C 255.621094 240.257812 255.527344 240.164062 255.410156 240.164062 C 255.292969 240.164062 255.199219 240.257812 255.199219 240.375 C 255.199219 240.492188 255.292969 240.585938 255.410156 240.585938 C 255.527344 240.585938 255.621094 240.492188 255.621094 240.375 Z M 255.621094 240.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.65625 241.691406 C 254.65625 241.574219 254.5625 241.480469 254.445312 241.480469 C 254.328125 241.480469 254.234375 241.574219 254.234375 241.691406 C 254.234375 241.808594 254.328125 241.902344 254.445312 241.902344 C 254.5625 241.902344 254.65625 241.808594 254.65625 241.691406 Z M 254.65625 241.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.199219 240.835938 C 257.199219 240.71875 257.105469 240.625 256.988281 240.625 C 256.871094 240.625 256.777344 240.71875 256.777344 240.835938 C 256.777344 240.953125 256.871094 241.046875 256.988281 241.046875 C 257.105469 241.046875 257.199219 240.953125 257.199219 240.835938 Z M 257.199219 240.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.171875 240.917969 C 258.171875 240.800781 258.078125 240.707031 257.960938 240.707031 C 257.84375 240.707031 257.75 240.800781 257.75 240.917969 C 257.75 241.035156 257.84375 241.128906 257.960938 241.128906 C 258.078125 241.128906 258.171875 241.035156 258.171875 240.917969 Z M 258.171875 240.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.550781 240.714844 C 261.550781 240.597656 261.457031 240.503906 261.339844 240.503906 C 261.222656 240.503906 261.128906 240.597656 261.128906 240.714844 C 261.128906 240.832031 261.222656 240.925781 261.339844 240.925781 C 261.457031 240.925781 261.550781 240.832031 261.550781 240.714844 Z M 261.550781 240.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.464844 239.910156 C 262.464844 239.792969 262.371094 239.699219 262.253906 239.699219 C 262.136719 239.699219 262.042969 239.792969 262.042969 239.910156 C 262.042969 240.027344 262.136719 240.121094 262.253906 240.121094 C 262.371094 240.121094 262.464844 240.027344 262.464844 239.910156 Z M 262.464844 239.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.699219 239.753906 C 260.699219 239.636719 260.605469 239.542969 260.488281 239.542969 C 260.371094 239.542969 260.277344 239.636719 260.277344 239.753906 C 260.277344 239.871094 260.371094 239.964844 260.488281 239.964844 C 260.605469 239.964844 260.699219 239.871094 260.699219 239.753906 Z M 260.699219 239.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.550781 241.617188 C 262.550781 241.5 262.457031 241.40625 262.339844 241.40625 C 262.222656 241.40625 262.128906 241.5 262.128906 241.617188 C 262.128906 241.734375 262.222656 241.828125 262.339844 241.828125 C 262.457031 241.828125 262.550781 241.734375 262.550781 241.617188 Z M 262.550781 241.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.152344 246.195312 C 264.152344 246.078125 264.058594 245.984375 263.941406 245.984375 C 263.824219 245.984375 263.730469 246.078125 263.730469 246.195312 C 263.730469 246.3125 263.824219 246.40625 263.941406 246.40625 C 264.058594 246.40625 264.152344 246.3125 264.152344 246.195312 Z M 264.152344 246.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.761719 246.128906 C 263.761719 246.011719 263.667969 245.917969 263.550781 245.917969 C 263.433594 245.917969 263.339844 246.011719 263.339844 246.128906 C 263.339844 246.246094 263.433594 246.339844 263.550781 246.339844 C 263.667969 246.339844 263.761719 246.246094 263.761719 246.128906 Z M 263.761719 246.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.195312 246.769531 C 263.195312 246.652344 263.101562 246.558594 262.984375 246.558594 C 262.867188 246.558594 262.773438 246.652344 262.773438 246.769531 C 262.773438 246.886719 262.867188 246.980469 262.984375 246.980469 C 263.101562 246.980469 263.195312 246.886719 263.195312 246.769531 Z M 263.195312 246.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.9375 247.800781 C 259.9375 247.683594 259.84375 247.589844 259.726562 247.589844 C 259.609375 247.589844 259.515625 247.683594 259.515625 247.800781 C 259.515625 247.917969 259.609375 248.011719 259.726562 248.011719 C 259.84375 248.011719 259.9375 247.917969 259.9375 247.800781 Z M 259.9375 247.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.105469 242.386719 C 258.105469 242.269531 258.011719 242.175781 257.894531 242.175781 C 257.777344 242.175781 257.683594 242.269531 257.683594 242.386719 C 257.683594 242.503906 257.777344 242.597656 257.894531 242.597656 C 258.011719 242.597656 258.105469 242.503906 258.105469 242.386719 Z M 258.105469 242.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.042969 239.742188 C 257.042969 239.625 256.949219 239.53125 256.832031 239.53125 C 256.714844 239.53125 256.621094 239.625 256.621094 239.742188 C 256.621094 239.859375 256.714844 239.953125 256.832031 239.953125 C 256.949219 239.953125 257.042969 239.859375 257.042969 239.742188 Z M 257.042969 239.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.773438 239.464844 C 254.773438 239.347656 254.679688 239.253906 254.5625 239.253906 C 254.445312 239.253906 254.351562 239.347656 254.351562 239.464844 C 254.351562 239.582031 254.445312 239.675781 254.5625 239.675781 C 254.679688 239.675781 254.773438 239.582031 254.773438 239.464844 Z M 254.773438 239.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.929688 241.019531 C 255.929688 240.902344 255.835938 240.808594 255.71875 240.808594 C 255.601562 240.808594 255.507812 240.902344 255.507812 241.019531 C 255.507812 241.136719 255.601562 241.230469 255.71875 241.230469 C 255.835938 241.230469 255.929688 241.136719 255.929688 241.019531 Z M 255.929688 241.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.578125 240.980469 C 257.578125 240.863281 257.484375 240.769531 257.367188 240.769531 C 257.25 240.769531 257.15625 240.863281 257.15625 240.980469 C 257.15625 241.097656 257.25 241.191406 257.367188 241.191406 C 257.484375 241.191406 257.578125 241.097656 257.578125 240.980469 Z M 257.578125 240.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.707031 239.8125 C 261.707031 239.695312 261.613281 239.601562 261.496094 239.601562 C 261.378906 239.601562 261.285156 239.695312 261.285156 239.8125 C 261.285156 239.929688 261.378906 240.023438 261.496094 240.023438 C 261.613281 240.023438 261.707031 239.929688 261.707031 239.8125 Z M 261.707031 239.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.929688 243.992188 C 257.929688 243.875 257.835938 243.78125 257.71875 243.78125 C 257.601562 243.78125 257.507812 243.875 257.507812 243.992188 C 257.507812 244.109375 257.601562 244.203125 257.71875 244.203125 C 257.835938 244.203125 257.929688 244.109375 257.929688 243.992188 Z M 257.929688 243.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.316406 241.46875 C 256.316406 241.351562 256.222656 241.257812 256.105469 241.257812 C 255.988281 241.257812 255.894531 241.351562 255.894531 241.46875 C 255.894531 241.585938 255.988281 241.679688 256.105469 241.679688 C 256.222656 241.679688 256.316406 241.585938 256.316406 241.46875 Z M 256.316406 241.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.460938 243.726562 C 260.460938 243.609375 260.367188 243.515625 260.25 243.515625 C 260.132812 243.515625 260.039062 243.609375 260.039062 243.726562 C 260.039062 243.84375 260.132812 243.9375 260.25 243.9375 C 260.367188 243.9375 260.460938 243.84375 260.460938 243.726562 Z M 260.460938 243.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.300781 244.324219 C 260.300781 244.207031 260.207031 244.113281 260.089844 244.113281 C 259.972656 244.113281 259.878906 244.207031 259.878906 244.324219 C 259.878906 244.441406 259.972656 244.535156 260.089844 244.535156 C 260.207031 244.535156 260.300781 244.441406 260.300781 244.324219 Z M 260.300781 244.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.351562 241.828125 C 260.351562 241.710938 260.257812 241.617188 260.140625 241.617188 C 260.023438 241.617188 259.929688 241.710938 259.929688 241.828125 C 259.929688 241.945312 260.023438 242.039062 260.140625 242.039062 C 260.257812 242.039062 260.351562 241.945312 260.351562 241.828125 Z M 260.351562 241.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.796875 243.015625 C 260.796875 242.898438 260.703125 242.804688 260.585938 242.804688 C 260.46875 242.804688 260.375 242.898438 260.375 243.015625 C 260.375 243.132812 260.46875 243.226562 260.585938 243.226562 C 260.703125 243.226562 260.796875 243.132812 260.796875 243.015625 Z M 260.796875 243.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.871094 241.441406 C 257.871094 241.324219 257.777344 241.230469 257.660156 241.230469 C 257.542969 241.230469 257.449219 241.324219 257.449219 241.441406 C 257.449219 241.558594 257.542969 241.652344 257.660156 241.652344 C 257.777344 241.652344 257.871094 241.558594 257.871094 241.441406 Z M 257.871094 241.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.597656 240.539062 C 255.597656 240.421875 255.503906 240.328125 255.386719 240.328125 C 255.269531 240.328125 255.175781 240.421875 255.175781 240.539062 C 255.175781 240.65625 255.269531 240.75 255.386719 240.75 C 255.503906 240.75 255.597656 240.65625 255.597656 240.539062 Z M 255.597656 240.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.234375 238.082031 C 255.234375 237.964844 255.140625 237.871094 255.023438 237.871094 C 254.90625 237.871094 254.8125 237.964844 254.8125 238.082031 C 254.8125 238.199219 254.90625 238.292969 255.023438 238.292969 C 255.140625 238.292969 255.234375 238.199219 255.234375 238.082031 Z M 255.234375 238.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.214844 236.875 C 254.214844 236.757812 254.121094 236.664062 254.003906 236.664062 C 253.886719 236.664062 253.792969 236.757812 253.792969 236.875 C 253.792969 236.992188 253.886719 237.085938 254.003906 237.085938 C 254.121094 237.085938 254.214844 236.992188 254.214844 236.875 Z M 254.214844 236.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.355469 237.289062 C 250.355469 237.171875 250.261719 237.078125 250.144531 237.078125 C 250.027344 237.078125 249.933594 237.171875 249.933594 237.289062 C 249.933594 237.40625 250.027344 237.5 250.144531 237.5 C 250.261719 237.5 250.355469 237.40625 250.355469 237.289062 Z M 250.355469 237.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.699219 235.851562 C 251.699219 235.734375 251.605469 235.640625 251.488281 235.640625 C 251.371094 235.640625 251.277344 235.734375 251.277344 235.851562 C 251.277344 235.96875 251.371094 236.0625 251.488281 236.0625 C 251.605469 236.0625 251.699219 235.96875 251.699219 235.851562 Z M 251.699219 235.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.246094 235.53125 C 253.246094 235.414062 253.152344 235.320312 253.035156 235.320312 C 252.917969 235.320312 252.824219 235.414062 252.824219 235.53125 C 252.824219 235.648438 252.917969 235.742188 253.035156 235.742188 C 253.152344 235.742188 253.246094 235.648438 253.246094 235.53125 Z M 253.246094 235.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.976562 234.65625 C 253.976562 234.539062 253.882812 234.445312 253.765625 234.445312 C 253.648438 234.445312 253.554688 234.539062 253.554688 234.65625 C 253.554688 234.773438 253.648438 234.867188 253.765625 234.867188 C 253.882812 234.867188 253.976562 234.773438 253.976562 234.65625 Z M 253.976562 234.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.605469 234.363281 C 254.605469 234.246094 254.511719 234.152344 254.394531 234.152344 C 254.277344 234.152344 254.183594 234.246094 254.183594 234.363281 C 254.183594 234.480469 254.277344 234.574219 254.394531 234.574219 C 254.511719 234.574219 254.605469 234.480469 254.605469 234.363281 Z M 254.605469 234.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.390625 235.097656 C 259.390625 234.980469 259.296875 234.886719 259.179688 234.886719 C 259.0625 234.886719 258.96875 234.980469 258.96875 235.097656 C 258.96875 235.214844 259.0625 235.308594 259.179688 235.308594 C 259.296875 235.308594 259.390625 235.214844 259.390625 235.097656 Z M 259.390625 235.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.003906 234.710938 C 260.003906 234.59375 259.910156 234.5 259.792969 234.5 C 259.675781 234.5 259.582031 234.59375 259.582031 234.710938 C 259.582031 234.828125 259.675781 234.921875 259.792969 234.921875 C 259.910156 234.921875 260.003906 234.828125 260.003906 234.710938 Z M 260.003906 234.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.527344 234.125 C 258.527344 234.007812 258.433594 233.914062 258.316406 233.914062 C 258.199219 233.914062 258.105469 234.007812 258.105469 234.125 C 258.105469 234.242188 258.199219 234.335938 258.316406 234.335938 C 258.433594 234.335938 258.527344 234.242188 258.527344 234.125 Z M 258.527344 234.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.050781 236.289062 C 259.050781 236.171875 258.957031 236.078125 258.839844 236.078125 C 258.722656 236.078125 258.628906 236.171875 258.628906 236.289062 C 258.628906 236.40625 258.722656 236.5 258.839844 236.5 C 258.957031 236.5 259.050781 236.40625 259.050781 236.289062 Z M 259.050781 236.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.675781 233.449219 C 258.675781 233.332031 258.582031 233.238281 258.464844 233.238281 C 258.347656 233.238281 258.253906 233.332031 258.253906 233.449219 C 258.253906 233.566406 258.347656 233.660156 258.464844 233.660156 C 258.582031 233.660156 258.675781 233.566406 258.675781 233.449219 Z M 258.675781 233.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.324219 234.121094 C 257.324219 234.003906 257.230469 233.910156 257.113281 233.910156 C 256.996094 233.910156 256.902344 234.003906 256.902344 234.121094 C 256.902344 234.238281 256.996094 234.332031 257.113281 234.332031 C 257.230469 234.332031 257.324219 234.238281 257.324219 234.121094 Z M 257.324219 234.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.277344 234.527344 C 257.277344 234.410156 257.183594 234.316406 257.066406 234.316406 C 256.949219 234.316406 256.855469 234.410156 256.855469 234.527344 C 256.855469 234.644531 256.949219 234.738281 257.066406 234.738281 C 257.183594 234.738281 257.277344 234.644531 257.277344 234.527344 Z M 257.277344 234.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.96875 234.609375 C 256.96875 234.492188 256.875 234.398438 256.757812 234.398438 C 256.640625 234.398438 256.546875 234.492188 256.546875 234.609375 C 256.546875 234.726562 256.640625 234.820312 256.757812 234.820312 C 256.875 234.820312 256.96875 234.726562 256.96875 234.609375 Z M 256.96875 234.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255 232.644531 C 255 232.527344 254.90625 232.433594 254.789062 232.433594 C 254.671875 232.433594 254.578125 232.527344 254.578125 232.644531 C 254.578125 232.761719 254.671875 232.855469 254.789062 232.855469 C 254.90625 232.855469 255 232.761719 255 232.644531 Z M 255 232.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.402344 231.335938 C 256.402344 231.21875 256.308594 231.125 256.191406 231.125 C 256.074219 231.125 255.980469 231.21875 255.980469 231.335938 C 255.980469 231.453125 256.074219 231.546875 256.191406 231.546875 C 256.308594 231.546875 256.402344 231.453125 256.402344 231.335938 Z M 256.402344 231.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.058594 235.152344 C 253.058594 235.035156 252.964844 234.941406 252.847656 234.941406 C 252.730469 234.941406 252.636719 235.035156 252.636719 235.152344 C 252.636719 235.269531 252.730469 235.363281 252.847656 235.363281 C 252.964844 235.363281 253.058594 235.269531 253.058594 235.152344 Z M 253.058594 235.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.726562 239.277344 C 256.726562 239.160156 256.632812 239.066406 256.515625 239.066406 C 256.398438 239.066406 256.304688 239.160156 256.304688 239.277344 C 256.304688 239.394531 256.398438 239.488281 256.515625 239.488281 C 256.632812 239.488281 256.726562 239.394531 256.726562 239.277344 Z M 256.726562 239.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.554688 234.929688 C 259.554688 234.8125 259.460938 234.71875 259.34375 234.71875 C 259.226562 234.71875 259.132812 234.8125 259.132812 234.929688 C 259.132812 235.046875 259.226562 235.140625 259.34375 235.140625 C 259.460938 235.140625 259.554688 235.046875 259.554688 234.929688 Z M 259.554688 234.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.253906 234 C 263.253906 233.882812 263.160156 233.789062 263.042969 233.789062 C 262.925781 233.789062 262.832031 233.882812 262.832031 234 C 262.832031 234.117188 262.925781 234.210938 263.042969 234.210938 C 263.160156 234.210938 263.253906 234.117188 263.253906 234 Z M 263.253906 234 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.679688 235.574219 C 265.679688 235.457031 265.585938 235.363281 265.46875 235.363281 C 265.351562 235.363281 265.257812 235.457031 265.257812 235.574219 C 265.257812 235.691406 265.351562 235.785156 265.46875 235.785156 C 265.585938 235.785156 265.679688 235.691406 265.679688 235.574219 Z M 265.679688 235.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.828125 236.75 C 263.828125 236.632812 263.734375 236.539062 263.617188 236.539062 C 263.5 236.539062 263.40625 236.632812 263.40625 236.75 C 263.40625 236.867188 263.5 236.960938 263.617188 236.960938 C 263.734375 236.960938 263.828125 236.867188 263.828125 236.75 Z M 263.828125 236.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.023438 240.03125 C 263.023438 239.914062 262.929688 239.820312 262.8125 239.820312 C 262.695312 239.820312 262.601562 239.914062 262.601562 240.03125 C 262.601562 240.148438 262.695312 240.242188 262.8125 240.242188 C 262.929688 240.242188 263.023438 240.148438 263.023438 240.03125 Z M 263.023438 240.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.433594 240.773438 C 265.433594 240.65625 265.339844 240.5625 265.222656 240.5625 C 265.105469 240.5625 265.011719 240.65625 265.011719 240.773438 C 265.011719 240.890625 265.105469 240.984375 265.222656 240.984375 C 265.339844 240.984375 265.433594 240.890625 265.433594 240.773438 Z M 265.433594 240.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.871094 240.492188 C 265.871094 240.375 265.777344 240.28125 265.660156 240.28125 C 265.542969 240.28125 265.449219 240.375 265.449219 240.492188 C 265.449219 240.609375 265.542969 240.703125 265.660156 240.703125 C 265.777344 240.703125 265.871094 240.609375 265.871094 240.492188 Z M 265.871094 240.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.523438 236.90625 C 265.523438 236.789062 265.429688 236.695312 265.3125 236.695312 C 265.195312 236.695312 265.101562 236.789062 265.101562 236.90625 C 265.101562 237.023438 265.195312 237.117188 265.3125 237.117188 C 265.429688 237.117188 265.523438 237.023438 265.523438 236.90625 Z M 265.523438 236.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.015625 240.578125 C 264.015625 240.460938 263.921875 240.367188 263.804688 240.367188 C 263.6875 240.367188 263.59375 240.460938 263.59375 240.578125 C 263.59375 240.695312 263.6875 240.789062 263.804688 240.789062 C 263.921875 240.789062 264.015625 240.695312 264.015625 240.578125 Z M 264.015625 240.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.949219 242.574219 C 264.949219 242.457031 264.855469 242.363281 264.738281 242.363281 C 264.621094 242.363281 264.527344 242.457031 264.527344 242.574219 C 264.527344 242.691406 264.621094 242.785156 264.738281 242.785156 C 264.855469 242.785156 264.949219 242.691406 264.949219 242.574219 Z M 264.949219 242.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.964844 244.714844 C 265.964844 244.597656 265.871094 244.503906 265.753906 244.503906 C 265.636719 244.503906 265.542969 244.597656 265.542969 244.714844 C 265.542969 244.832031 265.636719 244.925781 265.753906 244.925781 C 265.871094 244.925781 265.964844 244.832031 265.964844 244.714844 Z M 265.964844 244.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.121094 242.511719 C 263.121094 242.394531 263.027344 242.300781 262.910156 242.300781 C 262.792969 242.300781 262.699219 242.394531 262.699219 242.511719 C 262.699219 242.628906 262.792969 242.722656 262.910156 242.722656 C 263.027344 242.722656 263.121094 242.628906 263.121094 242.511719 Z M 263.121094 242.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.710938 240.132812 C 260.710938 240.015625 260.617188 239.921875 260.5 239.921875 C 260.382812 239.921875 260.289062 240.015625 260.289062 240.132812 C 260.289062 240.25 260.382812 240.34375 260.5 240.34375 C 260.617188 240.34375 260.710938 240.25 260.710938 240.132812 Z M 260.710938 240.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.90625 239.605469 C 263.90625 239.488281 263.8125 239.394531 263.695312 239.394531 C 263.578125 239.394531 263.484375 239.488281 263.484375 239.605469 C 263.484375 239.722656 263.578125 239.816406 263.695312 239.816406 C 263.8125 239.816406 263.90625 239.722656 263.90625 239.605469 Z M 263.90625 239.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.367188 237.1875 C 262.367188 237.070312 262.273438 236.976562 262.15625 236.976562 C 262.039062 236.976562 261.945312 237.070312 261.945312 237.1875 C 261.945312 237.304688 262.039062 237.398438 262.15625 237.398438 C 262.273438 237.398438 262.367188 237.304688 262.367188 237.1875 Z M 262.367188 237.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.40625 238.019531 C 261.40625 237.902344 261.3125 237.808594 261.195312 237.808594 C 261.078125 237.808594 260.984375 237.902344 260.984375 238.019531 C 260.984375 238.136719 261.078125 238.230469 261.195312 238.230469 C 261.3125 238.230469 261.40625 238.136719 261.40625 238.019531 Z M 261.40625 238.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.746094 241.054688 C 257.746094 240.9375 257.652344 240.84375 257.535156 240.84375 C 257.417969 240.84375 257.324219 240.9375 257.324219 241.054688 C 257.324219 241.171875 257.417969 241.265625 257.535156 241.265625 C 257.652344 241.265625 257.746094 241.171875 257.746094 241.054688 Z M 257.746094 241.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.703125 241.597656 C 259.703125 241.480469 259.609375 241.386719 259.492188 241.386719 C 259.375 241.386719 259.28125 241.480469 259.28125 241.597656 C 259.28125 241.714844 259.375 241.808594 259.492188 241.808594 C 259.609375 241.808594 259.703125 241.714844 259.703125 241.597656 Z M 259.703125 241.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.808594 239.4375 C 255.808594 239.320312 255.714844 239.226562 255.597656 239.226562 C 255.480469 239.226562 255.386719 239.320312 255.386719 239.4375 C 255.386719 239.554688 255.480469 239.648438 255.597656 239.648438 C 255.714844 239.648438 255.808594 239.554688 255.808594 239.4375 Z M 255.808594 239.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.578125 238.496094 C 253.578125 238.378906 253.484375 238.285156 253.367188 238.285156 C 253.25 238.285156 253.15625 238.378906 253.15625 238.496094 C 253.15625 238.613281 253.25 238.707031 253.367188 238.707031 C 253.484375 238.707031 253.578125 238.613281 253.578125 238.496094 Z M 253.578125 238.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.691406 236.148438 C 251.691406 236.03125 251.597656 235.9375 251.480469 235.9375 C 251.363281 235.9375 251.269531 236.03125 251.269531 236.148438 C 251.269531 236.265625 251.363281 236.359375 251.480469 236.359375 C 251.597656 236.359375 251.691406 236.265625 251.691406 236.148438 Z M 251.691406 236.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.722656 237.824219 C 250.722656 237.707031 250.628906 237.613281 250.511719 237.613281 C 250.394531 237.613281 250.300781 237.707031 250.300781 237.824219 C 250.300781 237.941406 250.394531 238.035156 250.511719 238.035156 C 250.628906 238.035156 250.722656 237.941406 250.722656 237.824219 Z M 250.722656 237.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.902344 236.136719 C 249.902344 236.019531 249.808594 235.925781 249.691406 235.925781 C 249.574219 235.925781 249.480469 236.019531 249.480469 236.136719 C 249.480469 236.253906 249.574219 236.347656 249.691406 236.347656 C 249.808594 236.347656 249.902344 236.253906 249.902344 236.136719 Z M 249.902344 236.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.582031 234.984375 C 252.582031 234.867188 252.488281 234.773438 252.371094 234.773438 C 252.253906 234.773438 252.160156 234.867188 252.160156 234.984375 C 252.160156 235.101562 252.253906 235.195312 252.371094 235.195312 C 252.488281 235.195312 252.582031 235.101562 252.582031 234.984375 Z M 252.582031 234.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.621094 236.226562 C 254.621094 236.109375 254.527344 236.015625 254.410156 236.015625 C 254.292969 236.015625 254.199219 236.109375 254.199219 236.226562 C 254.199219 236.34375 254.292969 236.4375 254.410156 236.4375 C 254.527344 236.4375 254.621094 236.34375 254.621094 236.226562 Z M 254.621094 236.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.277344 239.050781 C 251.277344 238.933594 251.183594 238.839844 251.066406 238.839844 C 250.949219 238.839844 250.855469 238.933594 250.855469 239.050781 C 250.855469 239.167969 250.949219 239.261719 251.066406 239.261719 C 251.183594 239.261719 251.277344 239.167969 251.277344 239.050781 Z M 251.277344 239.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.257812 243.484375 C 253.257812 243.367188 253.164062 243.273438 253.046875 243.273438 C 252.929688 243.273438 252.835938 243.367188 252.835938 243.484375 C 252.835938 243.601562 252.929688 243.695312 253.046875 243.695312 C 253.164062 243.695312 253.257812 243.601562 253.257812 243.484375 Z M 253.257812 243.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.3125 246.582031 C 252.3125 246.464844 252.21875 246.371094 252.101562 246.371094 C 251.984375 246.371094 251.890625 246.464844 251.890625 246.582031 C 251.890625 246.699219 251.984375 246.792969 252.101562 246.792969 C 252.21875 246.792969 252.3125 246.699219 252.3125 246.582031 Z M 252.3125 246.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.554688 246.148438 C 252.554688 246.03125 252.460938 245.9375 252.34375 245.9375 C 252.226562 245.9375 252.132812 246.03125 252.132812 246.148438 C 252.132812 246.265625 252.226562 246.359375 252.34375 246.359375 C 252.460938 246.359375 252.554688 246.265625 252.554688 246.148438 Z M 252.554688 246.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.3125 247.222656 C 252.3125 247.105469 252.21875 247.011719 252.101562 247.011719 C 251.984375 247.011719 251.890625 247.105469 251.890625 247.222656 C 251.890625 247.339844 251.984375 247.433594 252.101562 247.433594 C 252.21875 247.433594 252.3125 247.339844 252.3125 247.222656 Z M 252.3125 247.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.109375 247.152344 C 254.109375 247.035156 254.015625 246.941406 253.898438 246.941406 C 253.78125 246.941406 253.6875 247.035156 253.6875 247.152344 C 253.6875 247.269531 253.78125 247.363281 253.898438 247.363281 C 254.015625 247.363281 254.109375 247.269531 254.109375 247.152344 Z M 254.109375 247.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.160156 248.386719 C 257.160156 248.269531 257.066406 248.175781 256.949219 248.175781 C 256.832031 248.175781 256.738281 248.269531 256.738281 248.386719 C 256.738281 248.503906 256.832031 248.597656 256.949219 248.597656 C 257.066406 248.597656 257.160156 248.503906 257.160156 248.386719 Z M 257.160156 248.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.328125 251.351562 C 256.328125 251.234375 256.234375 251.140625 256.117188 251.140625 C 256 251.140625 255.90625 251.234375 255.90625 251.351562 C 255.90625 251.46875 256 251.5625 256.117188 251.5625 C 256.234375 251.5625 256.328125 251.46875 256.328125 251.351562 Z M 256.328125 251.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.75 251.09375 C 260.75 250.976562 260.65625 250.882812 260.539062 250.882812 C 260.421875 250.882812 260.328125 250.976562 260.328125 251.09375 C 260.328125 251.210938 260.421875 251.304688 260.539062 251.304688 C 260.65625 251.304688 260.75 251.210938 260.75 251.09375 Z M 260.75 251.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.914062 252.285156 C 260.914062 252.167969 260.820312 252.074219 260.703125 252.074219 C 260.585938 252.074219 260.492188 252.167969 260.492188 252.285156 C 260.492188 252.402344 260.585938 252.496094 260.703125 252.496094 C 260.820312 252.496094 260.914062 252.402344 260.914062 252.285156 Z M 260.914062 252.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.117188 252.015625 C 258.117188 251.898438 258.023438 251.804688 257.90625 251.804688 C 257.789062 251.804688 257.695312 251.898438 257.695312 252.015625 C 257.695312 252.132812 257.789062 252.226562 257.90625 252.226562 C 258.023438 252.226562 258.117188 252.132812 258.117188 252.015625 Z M 258.117188 252.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.195312 252.46875 C 258.195312 252.351562 258.101562 252.257812 257.984375 252.257812 C 257.867188 252.257812 257.773438 252.351562 257.773438 252.46875 C 257.773438 252.585938 257.867188 252.679688 257.984375 252.679688 C 258.101562 252.679688 258.195312 252.585938 258.195312 252.46875 Z M 258.195312 252.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.425781 253.519531 C 258.425781 253.402344 258.332031 253.308594 258.214844 253.308594 C 258.097656 253.308594 258.003906 253.402344 258.003906 253.519531 C 258.003906 253.636719 258.097656 253.730469 258.214844 253.730469 C 258.332031 253.730469 258.425781 253.636719 258.425781 253.519531 Z M 258.425781 253.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.25 253.746094 C 256.25 253.628906 256.15625 253.535156 256.039062 253.535156 C 255.921875 253.535156 255.828125 253.628906 255.828125 253.746094 C 255.828125 253.863281 255.921875 253.957031 256.039062 253.957031 C 256.15625 253.957031 256.25 253.863281 256.25 253.746094 Z M 256.25 253.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.660156 255.488281 C 253.660156 255.371094 253.566406 255.277344 253.449219 255.277344 C 253.332031 255.277344 253.238281 255.371094 253.238281 255.488281 C 253.238281 255.605469 253.332031 255.699219 253.449219 255.699219 C 253.566406 255.699219 253.660156 255.605469 253.660156 255.488281 Z M 253.660156 255.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.3125 255.644531 C 257.3125 255.527344 257.21875 255.433594 257.101562 255.433594 C 256.984375 255.433594 256.890625 255.527344 256.890625 255.644531 C 256.890625 255.761719 256.984375 255.855469 257.101562 255.855469 C 257.21875 255.855469 257.3125 255.761719 257.3125 255.644531 Z M 257.3125 255.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.390625 258.960938 C 254.390625 258.84375 254.296875 258.75 254.179688 258.75 C 254.0625 258.75 253.96875 258.84375 253.96875 258.960938 C 253.96875 259.078125 254.0625 259.171875 254.179688 259.171875 C 254.296875 259.171875 254.390625 259.078125 254.390625 258.960938 Z M 254.390625 258.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.902344 258.433594 C 253.902344 258.316406 253.808594 258.222656 253.691406 258.222656 C 253.574219 258.222656 253.480469 258.316406 253.480469 258.433594 C 253.480469 258.550781 253.574219 258.644531 253.691406 258.644531 C 253.808594 258.644531 253.902344 258.550781 253.902344 258.433594 Z M 253.902344 258.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.746094 260.445312 C 253.746094 260.328125 253.652344 260.234375 253.535156 260.234375 C 253.417969 260.234375 253.324219 260.328125 253.324219 260.445312 C 253.324219 260.5625 253.417969 260.65625 253.535156 260.65625 C 253.652344 260.65625 253.746094 260.5625 253.746094 260.445312 Z M 253.746094 260.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.03125 262.578125 C 253.03125 262.460938 252.9375 262.367188 252.820312 262.367188 C 252.703125 262.367188 252.609375 262.460938 252.609375 262.578125 C 252.609375 262.695312 252.703125 262.789062 252.820312 262.789062 C 252.9375 262.789062 253.03125 262.695312 253.03125 262.578125 Z M 253.03125 262.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.371094 262.605469 C 248.371094 262.488281 248.277344 262.394531 248.160156 262.394531 C 248.042969 262.394531 247.949219 262.488281 247.949219 262.605469 C 247.949219 262.722656 248.042969 262.816406 248.160156 262.816406 C 248.277344 262.816406 248.371094 262.722656 248.371094 262.605469 Z M 248.371094 262.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.957031 264.050781 C 246.957031 263.933594 246.863281 263.839844 246.746094 263.839844 C 246.628906 263.839844 246.535156 263.933594 246.535156 264.050781 C 246.535156 264.167969 246.628906 264.261719 246.746094 264.261719 C 246.863281 264.261719 246.957031 264.167969 246.957031 264.050781 Z M 246.957031 264.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.574219 265.589844 C 245.574219 265.472656 245.480469 265.378906 245.363281 265.378906 C 245.246094 265.378906 245.152344 265.472656 245.152344 265.589844 C 245.152344 265.707031 245.246094 265.800781 245.363281 265.800781 C 245.480469 265.800781 245.574219 265.707031 245.574219 265.589844 Z M 245.574219 265.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.308594 264.136719 C 244.308594 264.019531 244.214844 263.925781 244.097656 263.925781 C 243.980469 263.925781 243.886719 264.019531 243.886719 264.136719 C 243.886719 264.253906 243.980469 264.347656 244.097656 264.347656 C 244.214844 264.347656 244.308594 264.253906 244.308594 264.136719 Z M 244.308594 264.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.226562 264.683594 C 241.226562 264.566406 241.132812 264.472656 241.015625 264.472656 C 240.898438 264.472656 240.804688 264.566406 240.804688 264.683594 C 240.804688 264.800781 240.898438 264.894531 241.015625 264.894531 C 241.132812 264.894531 241.226562 264.800781 241.226562 264.683594 Z M 241.226562 264.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.6875 265.972656 C 243.6875 265.855469 243.59375 265.761719 243.476562 265.761719 C 243.359375 265.761719 243.265625 265.855469 243.265625 265.972656 C 243.265625 266.089844 243.359375 266.183594 243.476562 266.183594 C 243.59375 266.183594 243.6875 266.089844 243.6875 265.972656 Z M 243.6875 265.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.054688 264.292969 C 246.054688 264.175781 245.960938 264.082031 245.84375 264.082031 C 245.726562 264.082031 245.632812 264.175781 245.632812 264.292969 C 245.632812 264.410156 245.726562 264.503906 245.84375 264.503906 C 245.960938 264.503906 246.054688 264.410156 246.054688 264.292969 Z M 246.054688 264.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.878906 260.917969 C 244.878906 260.800781 244.785156 260.707031 244.667969 260.707031 C 244.550781 260.707031 244.457031 260.800781 244.457031 260.917969 C 244.457031 261.035156 244.550781 261.128906 244.667969 261.128906 C 244.785156 261.128906 244.878906 261.035156 244.878906 260.917969 Z M 244.878906 260.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.933594 260.253906 C 244.933594 260.136719 244.839844 260.042969 244.722656 260.042969 C 244.605469 260.042969 244.511719 260.136719 244.511719 260.253906 C 244.511719 260.371094 244.605469 260.464844 244.722656 260.464844 C 244.839844 260.464844 244.933594 260.371094 244.933594 260.253906 Z M 244.933594 260.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.34375 258.929688 C 242.34375 258.8125 242.25 258.71875 242.132812 258.71875 C 242.015625 258.71875 241.921875 258.8125 241.921875 258.929688 C 241.921875 259.046875 242.015625 259.140625 242.132812 259.140625 C 242.25 259.140625 242.34375 259.046875 242.34375 258.929688 Z M 242.34375 258.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.253906 259.332031 C 243.253906 259.214844 243.160156 259.121094 243.042969 259.121094 C 242.925781 259.121094 242.832031 259.214844 242.832031 259.332031 C 242.832031 259.449219 242.925781 259.542969 243.042969 259.542969 C 243.160156 259.542969 243.253906 259.449219 243.253906 259.332031 Z M 243.253906 259.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.644531 260.394531 C 244.644531 260.277344 244.550781 260.183594 244.433594 260.183594 C 244.316406 260.183594 244.222656 260.277344 244.222656 260.394531 C 244.222656 260.511719 244.316406 260.605469 244.433594 260.605469 C 244.550781 260.605469 244.644531 260.511719 244.644531 260.394531 Z M 244.644531 260.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.699219 262.453125 C 245.699219 262.335938 245.605469 262.242188 245.488281 262.242188 C 245.371094 262.242188 245.277344 262.335938 245.277344 262.453125 C 245.277344 262.570312 245.371094 262.664062 245.488281 262.664062 C 245.605469 262.664062 245.699219 262.570312 245.699219 262.453125 Z M 245.699219 262.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.945312 265.21875 C 247.945312 265.101562 247.851562 265.007812 247.734375 265.007812 C 247.617188 265.007812 247.523438 265.101562 247.523438 265.21875 C 247.523438 265.335938 247.617188 265.429688 247.734375 265.429688 C 247.851562 265.429688 247.945312 265.335938 247.945312 265.21875 Z M 247.945312 265.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.652344 266.171875 C 246.652344 266.054688 246.558594 265.960938 246.441406 265.960938 C 246.324219 265.960938 246.230469 266.054688 246.230469 266.171875 C 246.230469 266.289062 246.324219 266.382812 246.441406 266.382812 C 246.558594 266.382812 246.652344 266.289062 246.652344 266.171875 Z M 246.652344 266.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.179688 264.359375 C 245.179688 264.242188 245.085938 264.148438 244.96875 264.148438 C 244.851562 264.148438 244.757812 264.242188 244.757812 264.359375 C 244.757812 264.476562 244.851562 264.570312 244.96875 264.570312 C 245.085938 264.570312 245.179688 264.476562 245.179688 264.359375 Z M 245.179688 264.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.238281 263.167969 C 242.238281 263.050781 242.144531 262.957031 242.027344 262.957031 C 241.910156 262.957031 241.816406 263.050781 241.816406 263.167969 C 241.816406 263.285156 241.910156 263.378906 242.027344 263.378906 C 242.144531 263.378906 242.238281 263.285156 242.238281 263.167969 Z M 242.238281 263.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.097656 262.675781 C 239.097656 262.558594 239.003906 262.464844 238.886719 262.464844 C 238.769531 262.464844 238.675781 262.558594 238.675781 262.675781 C 238.675781 262.792969 238.769531 262.886719 238.886719 262.886719 C 239.003906 262.886719 239.097656 262.792969 239.097656 262.675781 Z M 239.097656 262.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.839844 261.289062 C 239.839844 261.171875 239.746094 261.078125 239.628906 261.078125 C 239.511719 261.078125 239.417969 261.171875 239.417969 261.289062 C 239.417969 261.40625 239.511719 261.5 239.628906 261.5 C 239.746094 261.5 239.839844 261.40625 239.839844 261.289062 Z M 239.839844 261.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.351562 260.75 C 241.351562 260.632812 241.257812 260.539062 241.140625 260.539062 C 241.023438 260.539062 240.929688 260.632812 240.929688 260.75 C 240.929688 260.867188 241.023438 260.960938 241.140625 260.960938 C 241.257812 260.960938 241.351562 260.867188 241.351562 260.75 Z M 241.351562 260.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.308594 260.050781 C 242.308594 259.933594 242.214844 259.839844 242.097656 259.839844 C 241.980469 259.839844 241.886719 259.933594 241.886719 260.050781 C 241.886719 260.167969 241.980469 260.261719 242.097656 260.261719 C 242.214844 260.261719 242.308594 260.167969 242.308594 260.050781 Z M 242.308594 260.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.488281 259.789062 C 243.488281 259.671875 243.394531 259.578125 243.277344 259.578125 C 243.160156 259.578125 243.066406 259.671875 243.066406 259.789062 C 243.066406 259.90625 243.160156 260 243.277344 260 C 243.394531 260 243.488281 259.90625 243.488281 259.789062 Z M 243.488281 259.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.601562 260.960938 C 240.601562 260.84375 240.507812 260.75 240.390625 260.75 C 240.273438 260.75 240.179688 260.84375 240.179688 260.960938 C 240.179688 261.078125 240.273438 261.171875 240.390625 261.171875 C 240.507812 261.171875 240.601562 261.078125 240.601562 260.960938 Z M 240.601562 260.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.019531 257.574219 C 238.019531 257.457031 237.925781 257.363281 237.808594 257.363281 C 237.691406 257.363281 237.597656 257.457031 237.597656 257.574219 C 237.597656 257.691406 237.691406 257.785156 237.808594 257.785156 C 237.925781 257.785156 238.019531 257.691406 238.019531 257.574219 Z M 238.019531 257.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.925781 260.726562 C 241.925781 260.609375 241.832031 260.515625 241.714844 260.515625 C 241.597656 260.515625 241.503906 260.609375 241.503906 260.726562 C 241.503906 260.84375 241.597656 260.9375 241.714844 260.9375 C 241.832031 260.9375 241.925781 260.84375 241.925781 260.726562 Z M 241.925781 260.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.070312 261.4375 C 243.070312 261.320312 242.976562 261.226562 242.859375 261.226562 C 242.742188 261.226562 242.648438 261.320312 242.648438 261.4375 C 242.648438 261.554688 242.742188 261.648438 242.859375 261.648438 C 242.976562 261.648438 243.070312 261.554688 243.070312 261.4375 Z M 243.070312 261.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.5 263.773438 C 243.5 263.65625 243.40625 263.5625 243.289062 263.5625 C 243.171875 263.5625 243.078125 263.65625 243.078125 263.773438 C 243.078125 263.890625 243.171875 263.984375 243.289062 263.984375 C 243.40625 263.984375 243.5 263.890625 243.5 263.773438 Z M 243.5 263.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.539062 263.691406 C 245.539062 263.574219 245.445312 263.480469 245.328125 263.480469 C 245.210938 263.480469 245.117188 263.574219 245.117188 263.691406 C 245.117188 263.808594 245.210938 263.902344 245.328125 263.902344 C 245.445312 263.902344 245.539062 263.808594 245.539062 263.691406 Z M 245.539062 263.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.589844 260.636719 C 247.589844 260.519531 247.496094 260.425781 247.378906 260.425781 C 247.261719 260.425781 247.167969 260.519531 247.167969 260.636719 C 247.167969 260.753906 247.261719 260.847656 247.378906 260.847656 C 247.496094 260.847656 247.589844 260.753906 247.589844 260.636719 Z M 247.589844 260.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.792969 261.859375 C 246.792969 261.742188 246.699219 261.648438 246.582031 261.648438 C 246.464844 261.648438 246.371094 261.742188 246.371094 261.859375 C 246.371094 261.976562 246.464844 262.070312 246.582031 262.070312 C 246.699219 262.070312 246.792969 261.976562 246.792969 261.859375 Z M 246.792969 261.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.511719 263.691406 C 246.511719 263.574219 246.417969 263.480469 246.300781 263.480469 C 246.183594 263.480469 246.089844 263.574219 246.089844 263.691406 C 246.089844 263.808594 246.183594 263.902344 246.300781 263.902344 C 246.417969 263.902344 246.511719 263.808594 246.511719 263.691406 Z M 246.511719 263.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.550781 262.574219 C 244.550781 262.457031 244.457031 262.363281 244.339844 262.363281 C 244.222656 262.363281 244.128906 262.457031 244.128906 262.574219 C 244.128906 262.691406 244.222656 262.785156 244.339844 262.785156 C 244.457031 262.785156 244.550781 262.691406 244.550781 262.574219 Z M 244.550781 262.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.554688 267.5625 C 246.554688 267.445312 246.460938 267.351562 246.34375 267.351562 C 246.226562 267.351562 246.132812 267.445312 246.132812 267.5625 C 246.132812 267.679688 246.226562 267.773438 246.34375 267.773438 C 246.460938 267.773438 246.554688 267.679688 246.554688 267.5625 Z M 246.554688 267.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.730469 266.171875 C 246.730469 266.054688 246.636719 265.960938 246.519531 265.960938 C 246.402344 265.960938 246.308594 266.054688 246.308594 266.171875 C 246.308594 266.289062 246.402344 266.382812 246.519531 266.382812 C 246.636719 266.382812 246.730469 266.289062 246.730469 266.171875 Z M 246.730469 266.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.992188 265.65625 C 248.992188 265.539062 248.898438 265.445312 248.78125 265.445312 C 248.664062 265.445312 248.570312 265.539062 248.570312 265.65625 C 248.570312 265.773438 248.664062 265.867188 248.78125 265.867188 C 248.898438 265.867188 248.992188 265.773438 248.992188 265.65625 Z M 248.992188 265.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.9375 267.976562 C 250.9375 267.859375 250.84375 267.765625 250.726562 267.765625 C 250.609375 267.765625 250.515625 267.859375 250.515625 267.976562 C 250.515625 268.09375 250.609375 268.1875 250.726562 268.1875 C 250.84375 268.1875 250.9375 268.09375 250.9375 267.976562 Z M 250.9375 267.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.917969 269.277344 C 249.917969 269.160156 249.824219 269.066406 249.707031 269.066406 C 249.589844 269.066406 249.496094 269.160156 249.496094 269.277344 C 249.496094 269.394531 249.589844 269.488281 249.707031 269.488281 C 249.824219 269.488281 249.917969 269.394531 249.917969 269.277344 Z M 249.917969 269.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.148438 269.890625 C 251.148438 269.773438 251.054688 269.679688 250.9375 269.679688 C 250.820312 269.679688 250.726562 269.773438 250.726562 269.890625 C 250.726562 270.007812 250.820312 270.101562 250.9375 270.101562 C 251.054688 270.101562 251.148438 270.007812 251.148438 269.890625 Z M 251.148438 269.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.070312 267.699219 C 255.070312 267.582031 254.976562 267.488281 254.859375 267.488281 C 254.742188 267.488281 254.648438 267.582031 254.648438 267.699219 C 254.648438 267.816406 254.742188 267.910156 254.859375 267.910156 C 254.976562 267.910156 255.070312 267.816406 255.070312 267.699219 Z M 255.070312 267.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.605469 266.789062 C 255.605469 266.671875 255.511719 266.578125 255.394531 266.578125 C 255.277344 266.578125 255.183594 266.671875 255.183594 266.789062 C 255.183594 266.90625 255.277344 267 255.394531 267 C 255.511719 267 255.605469 266.90625 255.605469 266.789062 Z M 255.605469 266.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.984375 266.828125 C 259.984375 266.710938 259.890625 266.617188 259.773438 266.617188 C 259.65625 266.617188 259.5625 266.710938 259.5625 266.828125 C 259.5625 266.945312 259.65625 267.039062 259.773438 267.039062 C 259.890625 267.039062 259.984375 266.945312 259.984375 266.828125 Z M 259.984375 266.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.457031 262.792969 C 261.457031 262.675781 261.363281 262.582031 261.246094 262.582031 C 261.128906 262.582031 261.035156 262.675781 261.035156 262.792969 C 261.035156 262.910156 261.128906 263.003906 261.246094 263.003906 C 261.363281 263.003906 261.457031 262.910156 261.457031 262.792969 Z M 261.457031 262.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.976562 262.523438 C 262.976562 262.40625 262.882812 262.3125 262.765625 262.3125 C 262.648438 262.3125 262.554688 262.40625 262.554688 262.523438 C 262.554688 262.640625 262.648438 262.734375 262.765625 262.734375 C 262.882812 262.734375 262.976562 262.640625 262.976562 262.523438 Z M 262.976562 262.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.554688 261.457031 C 265.554688 261.339844 265.460938 261.246094 265.34375 261.246094 C 265.226562 261.246094 265.132812 261.339844 265.132812 261.457031 C 265.132812 261.574219 265.226562 261.667969 265.34375 261.667969 C 265.460938 261.667969 265.554688 261.574219 265.554688 261.457031 Z M 265.554688 261.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.097656 263.421875 C 265.097656 263.304688 265.003906 263.210938 264.886719 263.210938 C 264.769531 263.210938 264.675781 263.304688 264.675781 263.421875 C 264.675781 263.539062 264.769531 263.632812 264.886719 263.632812 C 265.003906 263.632812 265.097656 263.539062 265.097656 263.421875 Z M 265.097656 263.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.027344 262.085938 C 263.027344 261.96875 262.933594 261.875 262.816406 261.875 C 262.699219 261.875 262.605469 261.96875 262.605469 262.085938 C 262.605469 262.203125 262.699219 262.296875 262.816406 262.296875 C 262.933594 262.296875 263.027344 262.203125 263.027344 262.085938 Z M 263.027344 262.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.125 261.027344 C 266.125 260.910156 266.03125 260.816406 265.914062 260.816406 C 265.796875 260.816406 265.703125 260.910156 265.703125 261.027344 C 265.703125 261.144531 265.796875 261.238281 265.914062 261.238281 C 266.03125 261.238281 266.125 261.144531 266.125 261.027344 Z M 266.125 261.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.292969 257.320312 C 267.292969 257.203125 267.199219 257.109375 267.082031 257.109375 C 266.964844 257.109375 266.871094 257.203125 266.871094 257.320312 C 266.871094 257.4375 266.964844 257.53125 267.082031 257.53125 C 267.199219 257.53125 267.292969 257.4375 267.292969 257.320312 Z M 267.292969 257.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.878906 254.277344 C 265.878906 254.160156 265.785156 254.066406 265.667969 254.066406 C 265.550781 254.066406 265.457031 254.160156 265.457031 254.277344 C 265.457031 254.394531 265.550781 254.488281 265.667969 254.488281 C 265.785156 254.488281 265.878906 254.394531 265.878906 254.277344 Z M 265.878906 254.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.875 256.433594 C 259.875 256.316406 259.78125 256.222656 259.664062 256.222656 C 259.546875 256.222656 259.453125 256.316406 259.453125 256.433594 C 259.453125 256.550781 259.546875 256.644531 259.664062 256.644531 C 259.78125 256.644531 259.875 256.550781 259.875 256.433594 Z M 259.875 256.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.96875 260.742188 C 258.96875 260.625 258.875 260.53125 258.757812 260.53125 C 258.640625 260.53125 258.546875 260.625 258.546875 260.742188 C 258.546875 260.859375 258.640625 260.953125 258.757812 260.953125 C 258.875 260.953125 258.96875 260.859375 258.96875 260.742188 Z M 258.96875 260.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.617188 262.660156 C 257.617188 262.542969 257.523438 262.449219 257.40625 262.449219 C 257.289062 262.449219 257.195312 262.542969 257.195312 262.660156 C 257.195312 262.777344 257.289062 262.871094 257.40625 262.871094 C 257.523438 262.871094 257.617188 262.777344 257.617188 262.660156 Z M 257.617188 262.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.828125 264.75 C 257.828125 264.632812 257.734375 264.539062 257.617188 264.539062 C 257.5 264.539062 257.40625 264.632812 257.40625 264.75 C 257.40625 264.867188 257.5 264.960938 257.617188 264.960938 C 257.734375 264.960938 257.828125 264.867188 257.828125 264.75 Z M 257.828125 264.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.644531 265.203125 C 262.644531 265.085938 262.550781 264.992188 262.433594 264.992188 C 262.316406 264.992188 262.222656 265.085938 262.222656 265.203125 C 262.222656 265.320312 262.316406 265.414062 262.433594 265.414062 C 262.550781 265.414062 262.644531 265.320312 262.644531 265.203125 Z M 262.644531 265.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.605469 264.089844 C 260.605469 263.972656 260.511719 263.878906 260.394531 263.878906 C 260.277344 263.878906 260.183594 263.972656 260.183594 264.089844 C 260.183594 264.207031 260.277344 264.300781 260.394531 264.300781 C 260.511719 264.300781 260.605469 264.207031 260.605469 264.089844 Z M 260.605469 264.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.222656 267.46875 C 258.222656 267.351562 258.128906 267.257812 258.011719 267.257812 C 257.894531 267.257812 257.800781 267.351562 257.800781 267.46875 C 257.800781 267.585938 257.894531 267.679688 258.011719 267.679688 C 258.128906 267.679688 258.222656 267.585938 258.222656 267.46875 Z M 258.222656 267.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.851562 266.3125 C 258.851562 266.195312 258.757812 266.101562 258.640625 266.101562 C 258.523438 266.101562 258.429688 266.195312 258.429688 266.3125 C 258.429688 266.429688 258.523438 266.523438 258.640625 266.523438 C 258.757812 266.523438 258.851562 266.429688 258.851562 266.3125 Z M 258.851562 266.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.910156 268.457031 C 258.910156 268.339844 258.816406 268.246094 258.699219 268.246094 C 258.582031 268.246094 258.488281 268.339844 258.488281 268.457031 C 258.488281 268.574219 258.582031 268.667969 258.699219 268.667969 C 258.816406 268.667969 258.910156 268.574219 258.910156 268.457031 Z M 258.910156 268.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.328125 269.542969 C 261.328125 269.425781 261.234375 269.332031 261.117188 269.332031 C 261 269.332031 260.90625 269.425781 260.90625 269.542969 C 260.90625 269.660156 261 269.753906 261.117188 269.753906 C 261.234375 269.753906 261.328125 269.660156 261.328125 269.542969 Z M 261.328125 269.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.828125 269.6875 C 263.828125 269.570312 263.734375 269.476562 263.617188 269.476562 C 263.5 269.476562 263.40625 269.570312 263.40625 269.6875 C 263.40625 269.804688 263.5 269.898438 263.617188 269.898438 C 263.734375 269.898438 263.828125 269.804688 263.828125 269.6875 Z M 263.828125 269.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.449219 268.617188 C 266.449219 268.5 266.355469 268.40625 266.238281 268.40625 C 266.121094 268.40625 266.027344 268.5 266.027344 268.617188 C 266.027344 268.734375 266.121094 268.828125 266.238281 268.828125 C 266.355469 268.828125 266.449219 268.734375 266.449219 268.617188 Z M 266.449219 268.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.335938 268.691406 C 264.335938 268.574219 264.242188 268.480469 264.125 268.480469 C 264.007812 268.480469 263.914062 268.574219 263.914062 268.691406 C 263.914062 268.808594 264.007812 268.902344 264.125 268.902344 C 264.242188 268.902344 264.335938 268.808594 264.335938 268.691406 Z M 264.335938 268.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.535156 267.082031 C 266.535156 266.964844 266.441406 266.871094 266.324219 266.871094 C 266.207031 266.871094 266.113281 266.964844 266.113281 267.082031 C 266.113281 267.199219 266.207031 267.292969 266.324219 267.292969 C 266.441406 267.292969 266.535156 267.199219 266.535156 267.082031 Z M 266.535156 267.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.308594 267.792969 C 262.308594 267.675781 262.214844 267.582031 262.097656 267.582031 C 261.980469 267.582031 261.886719 267.675781 261.886719 267.792969 C 261.886719 267.910156 261.980469 268.003906 262.097656 268.003906 C 262.214844 268.003906 262.308594 267.910156 262.308594 267.792969 Z M 262.308594 267.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.734375 266.433594 C 260.734375 266.316406 260.640625 266.222656 260.523438 266.222656 C 260.40625 266.222656 260.3125 266.316406 260.3125 266.433594 C 260.3125 266.550781 260.40625 266.644531 260.523438 266.644531 C 260.640625 266.644531 260.734375 266.550781 260.734375 266.433594 Z M 260.734375 266.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.738281 266.585938 C 258.738281 266.46875 258.644531 266.375 258.527344 266.375 C 258.410156 266.375 258.316406 266.46875 258.316406 266.585938 C 258.316406 266.703125 258.410156 266.796875 258.527344 266.796875 C 258.644531 266.796875 258.738281 266.703125 258.738281 266.585938 Z M 258.738281 266.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.761719 269.820312 C 255.761719 269.703125 255.667969 269.609375 255.550781 269.609375 C 255.433594 269.609375 255.339844 269.703125 255.339844 269.820312 C 255.339844 269.9375 255.433594 270.03125 255.550781 270.03125 C 255.667969 270.03125 255.761719 269.9375 255.761719 269.820312 Z M 255.761719 269.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.605469 270.851562 C 255.605469 270.734375 255.511719 270.640625 255.394531 270.640625 C 255.277344 270.640625 255.183594 270.734375 255.183594 270.851562 C 255.183594 270.96875 255.277344 271.0625 255.394531 271.0625 C 255.511719 271.0625 255.605469 270.96875 255.605469 270.851562 Z M 255.605469 270.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.265625 268.699219 C 257.265625 268.582031 257.171875 268.488281 257.054688 268.488281 C 256.9375 268.488281 256.84375 268.582031 256.84375 268.699219 C 256.84375 268.816406 256.9375 268.910156 257.054688 268.910156 C 257.171875 268.910156 257.265625 268.816406 257.265625 268.699219 Z M 257.265625 268.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.148438 270.730469 C 259.148438 270.613281 259.054688 270.519531 258.9375 270.519531 C 258.820312 270.519531 258.726562 270.613281 258.726562 270.730469 C 258.726562 270.847656 258.820312 270.941406 258.9375 270.941406 C 259.054688 270.941406 259.148438 270.847656 259.148438 270.730469 Z M 259.148438 270.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.976562 272.289062 C 254.976562 272.171875 254.882812 272.078125 254.765625 272.078125 C 254.648438 272.078125 254.554688 272.171875 254.554688 272.289062 C 254.554688 272.40625 254.648438 272.5 254.765625 272.5 C 254.882812 272.5 254.976562 272.40625 254.976562 272.289062 Z M 254.976562 272.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.34375 272.089844 C 256.34375 271.972656 256.25 271.878906 256.132812 271.878906 C 256.015625 271.878906 255.921875 271.972656 255.921875 272.089844 C 255.921875 272.207031 256.015625 272.300781 256.132812 272.300781 C 256.25 272.300781 256.34375 272.207031 256.34375 272.089844 Z M 256.34375 272.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.550781 270.375 C 253.550781 270.257812 253.457031 270.164062 253.339844 270.164062 C 253.222656 270.164062 253.128906 270.257812 253.128906 270.375 C 253.128906 270.492188 253.222656 270.585938 253.339844 270.585938 C 253.457031 270.585938 253.550781 270.492188 253.550781 270.375 Z M 253.550781 270.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.667969 272.332031 C 252.667969 272.214844 252.574219 272.121094 252.457031 272.121094 C 252.339844 272.121094 252.246094 272.214844 252.246094 272.332031 C 252.246094 272.449219 252.339844 272.542969 252.457031 272.542969 C 252.574219 272.542969 252.667969 272.449219 252.667969 272.332031 Z M 252.667969 272.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.25 269.066406 C 253.25 268.949219 253.15625 268.855469 253.039062 268.855469 C 252.921875 268.855469 252.828125 268.949219 252.828125 269.066406 C 252.828125 269.183594 252.921875 269.277344 253.039062 269.277344 C 253.15625 269.277344 253.25 269.183594 253.25 269.066406 Z M 253.25 269.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.949219 266.929688 C 254.949219 266.8125 254.855469 266.71875 254.738281 266.71875 C 254.621094 266.71875 254.527344 266.8125 254.527344 266.929688 C 254.527344 267.046875 254.621094 267.140625 254.738281 267.140625 C 254.855469 267.140625 254.949219 267.046875 254.949219 266.929688 Z M 254.949219 266.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.613281 268.492188 C 257.613281 268.375 257.519531 268.28125 257.402344 268.28125 C 257.285156 268.28125 257.191406 268.375 257.191406 268.492188 C 257.191406 268.609375 257.285156 268.703125 257.402344 268.703125 C 257.519531 268.703125 257.613281 268.609375 257.613281 268.492188 Z M 257.613281 268.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.554688 264.210938 C 258.554688 264.09375 258.460938 264 258.34375 264 C 258.226562 264 258.132812 264.09375 258.132812 264.210938 C 258.132812 264.328125 258.226562 264.421875 258.34375 264.421875 C 258.460938 264.421875 258.554688 264.328125 258.554688 264.210938 Z M 258.554688 264.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.1875 261.421875 C 259.1875 261.304688 259.09375 261.210938 258.976562 261.210938 C 258.859375 261.210938 258.765625 261.304688 258.765625 261.421875 C 258.765625 261.539062 258.859375 261.632812 258.976562 261.632812 C 259.09375 261.632812 259.1875 261.539062 259.1875 261.421875 Z M 259.1875 261.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.933594 258.5 C 260.933594 258.382812 260.839844 258.289062 260.722656 258.289062 C 260.605469 258.289062 260.511719 258.382812 260.511719 258.5 C 260.511719 258.617188 260.605469 258.710938 260.722656 258.710938 C 260.839844 258.710938 260.933594 258.617188 260.933594 258.5 Z M 260.933594 258.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.371094 257.800781 C 264.371094 257.683594 264.277344 257.589844 264.160156 257.589844 C 264.042969 257.589844 263.949219 257.683594 263.949219 257.800781 C 263.949219 257.917969 264.042969 258.011719 264.160156 258.011719 C 264.277344 258.011719 264.371094 257.917969 264.371094 257.800781 Z M 264.371094 257.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.039062 259.863281 C 265.039062 259.746094 264.945312 259.652344 264.828125 259.652344 C 264.710938 259.652344 264.617188 259.746094 264.617188 259.863281 C 264.617188 259.980469 264.710938 260.074219 264.828125 260.074219 C 264.945312 260.074219 265.039062 259.980469 265.039062 259.863281 Z M 265.039062 259.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.058594 257.488281 C 265.058594 257.371094 264.964844 257.277344 264.847656 257.277344 C 264.730469 257.277344 264.636719 257.371094 264.636719 257.488281 C 264.636719 257.605469 264.730469 257.699219 264.847656 257.699219 C 264.964844 257.699219 265.058594 257.605469 265.058594 257.488281 Z M 265.058594 257.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.453125 256.746094 C 265.453125 256.628906 265.359375 256.535156 265.242188 256.535156 C 265.125 256.535156 265.03125 256.628906 265.03125 256.746094 C 265.03125 256.863281 265.125 256.957031 265.242188 256.957031 C 265.359375 256.957031 265.453125 256.863281 265.453125 256.746094 Z M 265.453125 256.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.96875 257.375 C 263.96875 257.257812 263.875 257.164062 263.757812 257.164062 C 263.640625 257.164062 263.546875 257.257812 263.546875 257.375 C 263.546875 257.492188 263.640625 257.585938 263.757812 257.585938 C 263.875 257.585938 263.96875 257.492188 263.96875 257.375 Z M 263.96875 257.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.835938 256.050781 C 267.835938 255.933594 267.742188 255.839844 267.625 255.839844 C 267.507812 255.839844 267.414062 255.933594 267.414062 256.050781 C 267.414062 256.167969 267.507812 256.261719 267.625 256.261719 C 267.742188 256.261719 267.835938 256.167969 267.835938 256.050781 Z M 267.835938 256.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.097656 252.660156 C 271.097656 252.542969 271.003906 252.449219 270.886719 252.449219 C 270.769531 252.449219 270.675781 252.542969 270.675781 252.660156 C 270.675781 252.777344 270.769531 252.871094 270.886719 252.871094 C 271.003906 252.871094 271.097656 252.777344 271.097656 252.660156 Z M 271.097656 252.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.375 252.199219 C 272.375 252.082031 272.28125 251.988281 272.164062 251.988281 C 272.046875 251.988281 271.953125 252.082031 271.953125 252.199219 C 271.953125 252.316406 272.046875 252.410156 272.164062 252.410156 C 272.28125 252.410156 272.375 252.316406 272.375 252.199219 Z M 272.375 252.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.515625 251.59375 C 271.515625 251.476562 271.421875 251.382812 271.304688 251.382812 C 271.1875 251.382812 271.09375 251.476562 271.09375 251.59375 C 271.09375 251.710938 271.1875 251.804688 271.304688 251.804688 C 271.421875 251.804688 271.515625 251.710938 271.515625 251.59375 Z M 271.515625 251.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.609375 249.851562 C 274.609375 249.734375 274.515625 249.640625 274.398438 249.640625 C 274.28125 249.640625 274.1875 249.734375 274.1875 249.851562 C 274.1875 249.96875 274.28125 250.0625 274.398438 250.0625 C 274.515625 250.0625 274.609375 249.96875 274.609375 249.851562 Z M 274.609375 249.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.1875 251.105469 C 274.1875 250.988281 274.09375 250.894531 273.976562 250.894531 C 273.859375 250.894531 273.765625 250.988281 273.765625 251.105469 C 273.765625 251.222656 273.859375 251.316406 273.976562 251.316406 C 274.09375 251.316406 274.1875 251.222656 274.1875 251.105469 Z M 274.1875 251.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.417969 248.90625 C 276.417969 248.789062 276.324219 248.695312 276.207031 248.695312 C 276.089844 248.695312 275.996094 248.789062 275.996094 248.90625 C 275.996094 249.023438 276.089844 249.117188 276.207031 249.117188 C 276.324219 249.117188 276.417969 249.023438 276.417969 248.90625 Z M 276.417969 248.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.238281 250.921875 C 273.238281 250.804688 273.144531 250.710938 273.027344 250.710938 C 272.910156 250.710938 272.816406 250.804688 272.816406 250.921875 C 272.816406 251.039062 272.910156 251.132812 273.027344 251.132812 C 273.144531 251.132812 273.238281 251.039062 273.238281 250.921875 Z M 273.238281 250.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.84375 248.261719 C 273.84375 248.144531 273.75 248.050781 273.632812 248.050781 C 273.515625 248.050781 273.421875 248.144531 273.421875 248.261719 C 273.421875 248.378906 273.515625 248.472656 273.632812 248.472656 C 273.75 248.472656 273.84375 248.378906 273.84375 248.261719 Z M 273.84375 248.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.277344 244.480469 C 272.277344 244.363281 272.183594 244.269531 272.066406 244.269531 C 271.949219 244.269531 271.855469 244.363281 271.855469 244.480469 C 271.855469 244.597656 271.949219 244.691406 272.066406 244.691406 C 272.183594 244.691406 272.277344 244.597656 272.277344 244.480469 Z M 272.277344 244.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.324219 242.433594 C 272.324219 242.316406 272.230469 242.222656 272.113281 242.222656 C 271.996094 242.222656 271.902344 242.316406 271.902344 242.433594 C 271.902344 242.550781 271.996094 242.644531 272.113281 242.644531 C 272.230469 242.644531 272.324219 242.550781 272.324219 242.433594 Z M 272.324219 242.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.699219 242.886719 C 272.699219 242.769531 272.605469 242.675781 272.488281 242.675781 C 272.371094 242.675781 272.277344 242.769531 272.277344 242.886719 C 272.277344 243.003906 272.371094 243.097656 272.488281 243.097656 C 272.605469 243.097656 272.699219 243.003906 272.699219 242.886719 Z M 272.699219 242.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.207031 241.957031 C 269.207031 241.839844 269.113281 241.746094 268.996094 241.746094 C 268.878906 241.746094 268.785156 241.839844 268.785156 241.957031 C 268.785156 242.074219 268.878906 242.167969 268.996094 242.167969 C 269.113281 242.167969 269.207031 242.074219 269.207031 241.957031 Z M 269.207031 241.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.28125 243.59375 C 273.28125 243.476562 273.1875 243.382812 273.070312 243.382812 C 272.953125 243.382812 272.859375 243.476562 272.859375 243.59375 C 272.859375 243.710938 272.953125 243.804688 273.070312 243.804688 C 273.1875 243.804688 273.28125 243.710938 273.28125 243.59375 Z M 273.28125 243.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.570312 245.742188 C 270.570312 245.625 270.476562 245.53125 270.359375 245.53125 C 270.242188 245.53125 270.148438 245.625 270.148438 245.742188 C 270.148438 245.859375 270.242188 245.953125 270.359375 245.953125 C 270.476562 245.953125 270.570312 245.859375 270.570312 245.742188 Z M 270.570312 245.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.226562 248.222656 C 270.226562 248.105469 270.132812 248.011719 270.015625 248.011719 C 269.898438 248.011719 269.804688 248.105469 269.804688 248.222656 C 269.804688 248.339844 269.898438 248.433594 270.015625 248.433594 C 270.132812 248.433594 270.226562 248.339844 270.226562 248.222656 Z M 270.226562 248.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.984375 250.496094 C 270.984375 250.378906 270.890625 250.285156 270.773438 250.285156 C 270.65625 250.285156 270.5625 250.378906 270.5625 250.496094 C 270.5625 250.613281 270.65625 250.707031 270.773438 250.707031 C 270.890625 250.707031 270.984375 250.613281 270.984375 250.496094 Z M 270.984375 250.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.519531 249.066406 C 272.519531 248.949219 272.425781 248.855469 272.308594 248.855469 C 272.191406 248.855469 272.097656 248.949219 272.097656 249.066406 C 272.097656 249.183594 272.191406 249.277344 272.308594 249.277344 C 272.425781 249.277344 272.519531 249.183594 272.519531 249.066406 Z M 272.519531 249.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.554688 248.050781 C 273.554688 247.933594 273.460938 247.839844 273.34375 247.839844 C 273.226562 247.839844 273.132812 247.933594 273.132812 248.050781 C 273.132812 248.167969 273.226562 248.261719 273.34375 248.261719 C 273.460938 248.261719 273.554688 248.167969 273.554688 248.050781 Z M 273.554688 248.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.453125 249.449219 C 276.453125 249.332031 276.359375 249.238281 276.242188 249.238281 C 276.125 249.238281 276.03125 249.332031 276.03125 249.449219 C 276.03125 249.566406 276.125 249.660156 276.242188 249.660156 C 276.359375 249.660156 276.453125 249.566406 276.453125 249.449219 Z M 276.453125 249.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.765625 245.929688 C 279.765625 245.8125 279.671875 245.71875 279.554688 245.71875 C 279.4375 245.71875 279.34375 245.8125 279.34375 245.929688 C 279.34375 246.046875 279.4375 246.140625 279.554688 246.140625 C 279.671875 246.140625 279.765625 246.046875 279.765625 245.929688 Z M 279.765625 245.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.359375 247.609375 C 279.359375 247.492188 279.265625 247.398438 279.148438 247.398438 C 279.03125 247.398438 278.9375 247.492188 278.9375 247.609375 C 278.9375 247.726562 279.03125 247.820312 279.148438 247.820312 C 279.265625 247.820312 279.359375 247.726562 279.359375 247.609375 Z M 279.359375 247.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.964844 247.480469 C 282.964844 247.363281 282.871094 247.269531 282.753906 247.269531 C 282.636719 247.269531 282.542969 247.363281 282.542969 247.480469 C 282.542969 247.597656 282.636719 247.691406 282.753906 247.691406 C 282.871094 247.691406 282.964844 247.597656 282.964844 247.480469 Z M 282.964844 247.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.949219 245.96875 C 281.949219 245.851562 281.855469 245.757812 281.738281 245.757812 C 281.621094 245.757812 281.527344 245.851562 281.527344 245.96875 C 281.527344 246.085938 281.621094 246.179688 281.738281 246.179688 C 281.855469 246.179688 281.949219 246.085938 281.949219 245.96875 Z M 281.949219 245.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.914062 244.734375 C 279.914062 244.617188 279.820312 244.523438 279.703125 244.523438 C 279.585938 244.523438 279.492188 244.617188 279.492188 244.734375 C 279.492188 244.851562 279.585938 244.945312 279.703125 244.945312 C 279.820312 244.945312 279.914062 244.851562 279.914062 244.734375 Z M 279.914062 244.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.929688 242.070312 C 278.929688 241.953125 278.835938 241.859375 278.71875 241.859375 C 278.601562 241.859375 278.507812 241.953125 278.507812 242.070312 C 278.507812 242.1875 278.601562 242.28125 278.71875 242.28125 C 278.835938 242.28125 278.929688 242.1875 278.929688 242.070312 Z M 278.929688 242.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.1875 247.054688 C 278.1875 246.9375 278.09375 246.84375 277.976562 246.84375 C 277.859375 246.84375 277.765625 246.9375 277.765625 247.054688 C 277.765625 247.171875 277.859375 247.265625 277.976562 247.265625 C 278.09375 247.265625 278.1875 247.171875 278.1875 247.054688 Z M 278.1875 247.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.125 245.867188 C 280.125 245.75 280.03125 245.65625 279.914062 245.65625 C 279.796875 245.65625 279.703125 245.75 279.703125 245.867188 C 279.703125 245.984375 279.796875 246.078125 279.914062 246.078125 C 280.03125 246.078125 280.125 245.984375 280.125 245.867188 Z M 280.125 245.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.742188 245.777344 C 279.742188 245.660156 279.648438 245.566406 279.53125 245.566406 C 279.414062 245.566406 279.320312 245.660156 279.320312 245.777344 C 279.320312 245.894531 279.414062 245.988281 279.53125 245.988281 C 279.648438 245.988281 279.742188 245.894531 279.742188 245.777344 Z M 279.742188 245.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.324219 242.355469 C 279.324219 242.238281 279.230469 242.144531 279.113281 242.144531 C 278.996094 242.144531 278.902344 242.238281 278.902344 242.355469 C 278.902344 242.472656 278.996094 242.566406 279.113281 242.566406 C 279.230469 242.566406 279.324219 242.472656 279.324219 242.355469 Z M 279.324219 242.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.351562 237.386719 C 279.351562 237.269531 279.257812 237.175781 279.140625 237.175781 C 279.023438 237.175781 278.929688 237.269531 278.929688 237.386719 C 278.929688 237.503906 279.023438 237.597656 279.140625 237.597656 C 279.257812 237.597656 279.351562 237.503906 279.351562 237.386719 Z M 279.351562 237.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.652344 239.734375 C 280.652344 239.617188 280.558594 239.523438 280.441406 239.523438 C 280.324219 239.523438 280.230469 239.617188 280.230469 239.734375 C 280.230469 239.851562 280.324219 239.945312 280.441406 239.945312 C 280.558594 239.945312 280.652344 239.851562 280.652344 239.734375 Z M 280.652344 239.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.277344 243.339844 C 282.277344 243.222656 282.183594 243.128906 282.066406 243.128906 C 281.949219 243.128906 281.855469 243.222656 281.855469 243.339844 C 281.855469 243.457031 281.949219 243.550781 282.066406 243.550781 C 282.183594 243.550781 282.277344 243.457031 282.277344 243.339844 Z M 282.277344 243.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.164062 243.546875 C 283.164062 243.429688 283.070312 243.335938 282.953125 243.335938 C 282.835938 243.335938 282.742188 243.429688 282.742188 243.546875 C 282.742188 243.664062 282.835938 243.757812 282.953125 243.757812 C 283.070312 243.757812 283.164062 243.664062 283.164062 243.546875 Z M 283.164062 243.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.691406 243.609375 C 284.691406 243.492188 284.597656 243.398438 284.480469 243.398438 C 284.363281 243.398438 284.269531 243.492188 284.269531 243.609375 C 284.269531 243.726562 284.363281 243.820312 284.480469 243.820312 C 284.597656 243.820312 284.691406 243.726562 284.691406 243.609375 Z M 284.691406 243.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.96875 246.144531 C 283.96875 246.027344 283.875 245.933594 283.757812 245.933594 C 283.640625 245.933594 283.546875 246.027344 283.546875 246.144531 C 283.546875 246.261719 283.640625 246.355469 283.757812 246.355469 C 283.875 246.355469 283.96875 246.261719 283.96875 246.144531 Z M 283.96875 246.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.101562 246.390625 C 283.101562 246.273438 283.007812 246.179688 282.890625 246.179688 C 282.773438 246.179688 282.679688 246.273438 282.679688 246.390625 C 282.679688 246.507812 282.773438 246.601562 282.890625 246.601562 C 283.007812 246.601562 283.101562 246.507812 283.101562 246.390625 Z M 283.101562 246.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.269531 246.1875 C 282.269531 246.070312 282.175781 245.976562 282.058594 245.976562 C 281.941406 245.976562 281.847656 246.070312 281.847656 246.1875 C 281.847656 246.304688 281.941406 246.398438 282.058594 246.398438 C 282.175781 246.398438 282.269531 246.304688 282.269531 246.1875 Z M 282.269531 246.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.613281 246.652344 C 282.613281 246.535156 282.519531 246.441406 282.402344 246.441406 C 282.285156 246.441406 282.191406 246.535156 282.191406 246.652344 C 282.191406 246.769531 282.285156 246.863281 282.402344 246.863281 C 282.519531 246.863281 282.613281 246.769531 282.613281 246.652344 Z M 282.613281 246.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.1875 245.203125 C 282.1875 245.085938 282.09375 244.992188 281.976562 244.992188 C 281.859375 244.992188 281.765625 245.085938 281.765625 245.203125 C 281.765625 245.320312 281.859375 245.414062 281.976562 245.414062 C 282.09375 245.414062 282.1875 245.320312 282.1875 245.203125 Z M 282.1875 245.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.679688 245.65625 C 283.679688 245.539062 283.585938 245.445312 283.46875 245.445312 C 283.351562 245.445312 283.257812 245.539062 283.257812 245.65625 C 283.257812 245.773438 283.351562 245.867188 283.46875 245.867188 C 283.585938 245.867188 283.679688 245.773438 283.679688 245.65625 Z M 283.679688 245.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.371094 244.199219 C 284.371094 244.082031 284.277344 243.988281 284.160156 243.988281 C 284.042969 243.988281 283.949219 244.082031 283.949219 244.199219 C 283.949219 244.316406 284.042969 244.410156 284.160156 244.410156 C 284.277344 244.410156 284.371094 244.316406 284.371094 244.199219 Z M 284.371094 244.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.808594 248.875 C 280.808594 248.757812 280.714844 248.664062 280.597656 248.664062 C 280.480469 248.664062 280.386719 248.757812 280.386719 248.875 C 280.386719 248.992188 280.480469 249.085938 280.597656 249.085938 C 280.714844 249.085938 280.808594 248.992188 280.808594 248.875 Z M 280.808594 248.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.523438 244.191406 C 282.523438 244.074219 282.429688 243.980469 282.3125 243.980469 C 282.195312 243.980469 282.101562 244.074219 282.101562 244.191406 C 282.101562 244.308594 282.195312 244.402344 282.3125 244.402344 C 282.429688 244.402344 282.523438 244.308594 282.523438 244.191406 Z M 282.523438 244.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.460938 243.234375 C 283.460938 243.117188 283.367188 243.023438 283.25 243.023438 C 283.132812 243.023438 283.039062 243.117188 283.039062 243.234375 C 283.039062 243.351562 283.132812 243.445312 283.25 243.445312 C 283.367188 243.445312 283.460938 243.351562 283.460938 243.234375 Z M 283.460938 243.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.640625 244.84375 C 279.640625 244.726562 279.546875 244.632812 279.429688 244.632812 C 279.3125 244.632812 279.21875 244.726562 279.21875 244.84375 C 279.21875 244.960938 279.3125 245.054688 279.429688 245.054688 C 279.546875 245.054688 279.640625 244.960938 279.640625 244.84375 Z M 279.640625 244.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.070312 242.207031 C 279.070312 242.089844 278.976562 241.996094 278.859375 241.996094 C 278.742188 241.996094 278.648438 242.089844 278.648438 242.207031 C 278.648438 242.324219 278.742188 242.417969 278.859375 242.417969 C 278.976562 242.417969 279.070312 242.324219 279.070312 242.207031 Z M 279.070312 242.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.457031 239.828125 C 278.457031 239.710938 278.363281 239.617188 278.246094 239.617188 C 278.128906 239.617188 278.035156 239.710938 278.035156 239.828125 C 278.035156 239.945312 278.128906 240.039062 278.246094 240.039062 C 278.363281 240.039062 278.457031 239.945312 278.457031 239.828125 Z M 278.457031 239.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.949219 242.308594 C 278.949219 242.191406 278.855469 242.097656 278.738281 242.097656 C 278.621094 242.097656 278.527344 242.191406 278.527344 242.308594 C 278.527344 242.425781 278.621094 242.519531 278.738281 242.519531 C 278.855469 242.519531 278.949219 242.425781 278.949219 242.308594 Z M 278.949219 242.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.40625 246.492188 C 272.40625 246.375 272.3125 246.28125 272.195312 246.28125 C 272.078125 246.28125 271.984375 246.375 271.984375 246.492188 C 271.984375 246.609375 272.078125 246.703125 272.195312 246.703125 C 272.3125 246.703125 272.40625 246.609375 272.40625 246.492188 Z M 272.40625 246.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.085938 246.589844 C 272.085938 246.472656 271.992188 246.378906 271.875 246.378906 C 271.757812 246.378906 271.664062 246.472656 271.664062 246.589844 C 271.664062 246.707031 271.757812 246.800781 271.875 246.800781 C 271.992188 246.800781 272.085938 246.707031 272.085938 246.589844 Z M 272.085938 246.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.925781 249.082031 C 271.925781 248.964844 271.832031 248.871094 271.714844 248.871094 C 271.597656 248.871094 271.503906 248.964844 271.503906 249.082031 C 271.503906 249.199219 271.597656 249.292969 271.714844 249.292969 C 271.832031 249.292969 271.925781 249.199219 271.925781 249.082031 Z M 271.925781 249.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.144531 246.714844 C 271.144531 246.597656 271.050781 246.503906 270.933594 246.503906 C 270.816406 246.503906 270.722656 246.597656 270.722656 246.714844 C 270.722656 246.832031 270.816406 246.925781 270.933594 246.925781 C 271.050781 246.925781 271.144531 246.832031 271.144531 246.714844 Z M 271.144531 246.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.878906 245.390625 C 271.878906 245.273438 271.785156 245.179688 271.667969 245.179688 C 271.550781 245.179688 271.457031 245.273438 271.457031 245.390625 C 271.457031 245.507812 271.550781 245.601562 271.667969 245.601562 C 271.785156 245.601562 271.878906 245.507812 271.878906 245.390625 Z M 271.878906 245.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.003906 246.066406 C 274.003906 245.949219 273.910156 245.855469 273.792969 245.855469 C 273.675781 245.855469 273.582031 245.949219 273.582031 246.066406 C 273.582031 246.183594 273.675781 246.277344 273.792969 246.277344 C 273.910156 246.277344 274.003906 246.183594 274.003906 246.066406 Z M 274.003906 246.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.445312 244.6875 C 272.445312 244.570312 272.351562 244.476562 272.234375 244.476562 C 272.117188 244.476562 272.023438 244.570312 272.023438 244.6875 C 272.023438 244.804688 272.117188 244.898438 272.234375 244.898438 C 272.351562 244.898438 272.445312 244.804688 272.445312 244.6875 Z M 272.445312 244.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.398438 243.972656 C 272.398438 243.855469 272.304688 243.761719 272.1875 243.761719 C 272.070312 243.761719 271.976562 243.855469 271.976562 243.972656 C 271.976562 244.089844 272.070312 244.183594 272.1875 244.183594 C 272.304688 244.183594 272.398438 244.089844 272.398438 243.972656 Z M 272.398438 243.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.832031 242.449219 C 268.832031 242.332031 268.738281 242.238281 268.621094 242.238281 C 268.503906 242.238281 268.410156 242.332031 268.410156 242.449219 C 268.410156 242.566406 268.503906 242.660156 268.621094 242.660156 C 268.738281 242.660156 268.832031 242.566406 268.832031 242.449219 Z M 268.832031 242.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.796875 240.402344 C 268.796875 240.285156 268.703125 240.191406 268.585938 240.191406 C 268.46875 240.191406 268.375 240.285156 268.375 240.402344 C 268.375 240.519531 268.46875 240.613281 268.585938 240.613281 C 268.703125 240.613281 268.796875 240.519531 268.796875 240.402344 Z M 268.796875 240.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.15625 240.359375 C 266.15625 240.242188 266.0625 240.148438 265.945312 240.148438 C 265.828125 240.148438 265.734375 240.242188 265.734375 240.359375 C 265.734375 240.476562 265.828125 240.570312 265.945312 240.570312 C 266.0625 240.570312 266.15625 240.476562 266.15625 240.359375 Z M 266.15625 240.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.507812 239.929688 C 268.507812 239.8125 268.414062 239.71875 268.296875 239.71875 C 268.179688 239.71875 268.085938 239.8125 268.085938 239.929688 C 268.085938 240.046875 268.179688 240.140625 268.296875 240.140625 C 268.414062 240.140625 268.507812 240.046875 268.507812 239.929688 Z M 268.507812 239.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.71875 238.539062 C 268.71875 238.421875 268.625 238.328125 268.507812 238.328125 C 268.390625 238.328125 268.296875 238.421875 268.296875 238.539062 C 268.296875 238.65625 268.390625 238.75 268.507812 238.75 C 268.625 238.75 268.71875 238.65625 268.71875 238.539062 Z M 268.71875 238.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.441406 235.511719 C 265.441406 235.394531 265.347656 235.300781 265.230469 235.300781 C 265.113281 235.300781 265.019531 235.394531 265.019531 235.511719 C 265.019531 235.628906 265.113281 235.722656 265.230469 235.722656 C 265.347656 235.722656 265.441406 235.628906 265.441406 235.511719 Z M 265.441406 235.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.285156 233.375 C 268.285156 233.257812 268.191406 233.164062 268.074219 233.164062 C 267.957031 233.164062 267.863281 233.257812 267.863281 233.375 C 267.863281 233.492188 267.957031 233.585938 268.074219 233.585938 C 268.191406 233.585938 268.285156 233.492188 268.285156 233.375 Z M 268.285156 233.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.445312 232.449219 C 267.445312 232.332031 267.351562 232.238281 267.234375 232.238281 C 267.117188 232.238281 267.023438 232.332031 267.023438 232.449219 C 267.023438 232.566406 267.117188 232.660156 267.234375 232.660156 C 267.351562 232.660156 267.445312 232.566406 267.445312 232.449219 Z M 267.445312 232.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.386719 234.046875 C 268.386719 233.929688 268.292969 233.835938 268.175781 233.835938 C 268.058594 233.835938 267.964844 233.929688 267.964844 234.046875 C 267.964844 234.164062 268.058594 234.257812 268.175781 234.257812 C 268.292969 234.257812 268.386719 234.164062 268.386719 234.046875 Z M 268.386719 234.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.105469 237.425781 C 268.105469 237.308594 268.011719 237.214844 267.894531 237.214844 C 267.777344 237.214844 267.683594 237.308594 267.683594 237.425781 C 267.683594 237.542969 267.777344 237.636719 267.894531 237.636719 C 268.011719 237.636719 268.105469 237.542969 268.105469 237.425781 Z M 268.105469 237.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.824219 236.019531 C 262.824219 235.902344 262.730469 235.808594 262.613281 235.808594 C 262.496094 235.808594 262.402344 235.902344 262.402344 236.019531 C 262.402344 236.136719 262.496094 236.230469 262.613281 236.230469 C 262.730469 236.230469 262.824219 236.136719 262.824219 236.019531 Z M 262.824219 236.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.878906 234.546875 C 260.878906 234.429688 260.785156 234.335938 260.667969 234.335938 C 260.550781 234.335938 260.457031 234.429688 260.457031 234.546875 C 260.457031 234.664062 260.550781 234.757812 260.667969 234.757812 C 260.785156 234.757812 260.878906 234.664062 260.878906 234.546875 Z M 260.878906 234.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.734375 236.253906 C 263.734375 236.136719 263.640625 236.042969 263.523438 236.042969 C 263.40625 236.042969 263.3125 236.136719 263.3125 236.253906 C 263.3125 236.371094 263.40625 236.464844 263.523438 236.464844 C 263.640625 236.464844 263.734375 236.371094 263.734375 236.253906 Z M 263.734375 236.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.628906 234.089844 C 260.628906 233.972656 260.535156 233.878906 260.417969 233.878906 C 260.300781 233.878906 260.207031 233.972656 260.207031 234.089844 C 260.207031 234.207031 260.300781 234.300781 260.417969 234.300781 C 260.535156 234.300781 260.628906 234.207031 260.628906 234.089844 Z M 260.628906 234.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.125 235.417969 C 263.125 235.300781 263.03125 235.207031 262.914062 235.207031 C 262.796875 235.207031 262.703125 235.300781 262.703125 235.417969 C 262.703125 235.535156 262.796875 235.628906 262.914062 235.628906 C 263.03125 235.628906 263.125 235.535156 263.125 235.417969 Z M 263.125 235.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.84375 233.527344 C 260.84375 233.410156 260.75 233.316406 260.632812 233.316406 C 260.515625 233.316406 260.421875 233.410156 260.421875 233.527344 C 260.421875 233.644531 260.515625 233.738281 260.632812 233.738281 C 260.75 233.738281 260.84375 233.644531 260.84375 233.527344 Z M 260.84375 233.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.480469 233.5 C 262.480469 233.382812 262.386719 233.289062 262.269531 233.289062 C 262.152344 233.289062 262.058594 233.382812 262.058594 233.5 C 262.058594 233.617188 262.152344 233.710938 262.269531 233.710938 C 262.386719 233.710938 262.480469 233.617188 262.480469 233.5 Z M 262.480469 233.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.738281 232.238281 C 264.738281 232.121094 264.644531 232.027344 264.527344 232.027344 C 264.410156 232.027344 264.316406 232.121094 264.316406 232.238281 C 264.316406 232.355469 264.410156 232.449219 264.527344 232.449219 C 264.644531 232.449219 264.738281 232.355469 264.738281 232.238281 Z M 264.738281 232.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.851562 232.277344 C 265.851562 232.160156 265.757812 232.066406 265.640625 232.066406 C 265.523438 232.066406 265.429688 232.160156 265.429688 232.277344 C 265.429688 232.394531 265.523438 232.488281 265.640625 232.488281 C 265.757812 232.488281 265.851562 232.394531 265.851562 232.277344 Z M 265.851562 232.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.902344 230.554688 C 265.902344 230.4375 265.808594 230.34375 265.691406 230.34375 C 265.574219 230.34375 265.480469 230.4375 265.480469 230.554688 C 265.480469 230.671875 265.574219 230.765625 265.691406 230.765625 C 265.808594 230.765625 265.902344 230.671875 265.902344 230.554688 Z M 265.902344 230.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.46875 231.542969 C 263.46875 231.425781 263.375 231.332031 263.257812 231.332031 C 263.140625 231.332031 263.046875 231.425781 263.046875 231.542969 C 263.046875 231.660156 263.140625 231.753906 263.257812 231.753906 C 263.375 231.753906 263.46875 231.660156 263.46875 231.542969 Z M 263.46875 231.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.347656 230.367188 C 261.347656 230.25 261.253906 230.15625 261.136719 230.15625 C 261.019531 230.15625 260.925781 230.25 260.925781 230.367188 C 260.925781 230.484375 261.019531 230.578125 261.136719 230.578125 C 261.253906 230.578125 261.347656 230.484375 261.347656 230.367188 Z M 261.347656 230.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.40625 232.058594 C 260.40625 231.941406 260.3125 231.847656 260.195312 231.847656 C 260.078125 231.847656 259.984375 231.941406 259.984375 232.058594 C 259.984375 232.175781 260.078125 232.269531 260.195312 232.269531 C 260.3125 232.269531 260.40625 232.175781 260.40625 232.058594 Z M 260.40625 232.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.78125 229.589844 C 259.78125 229.472656 259.6875 229.378906 259.570312 229.378906 C 259.453125 229.378906 259.359375 229.472656 259.359375 229.589844 C 259.359375 229.707031 259.453125 229.800781 259.570312 229.800781 C 259.6875 229.800781 259.78125 229.707031 259.78125 229.589844 Z M 259.78125 229.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.203125 228.371094 C 257.203125 228.253906 257.109375 228.160156 256.992188 228.160156 C 256.875 228.160156 256.78125 228.253906 256.78125 228.371094 C 256.78125 228.488281 256.875 228.582031 256.992188 228.582031 C 257.109375 228.582031 257.203125 228.488281 257.203125 228.371094 Z M 257.203125 228.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.277344 226.539062 C 259.277344 226.421875 259.183594 226.328125 259.066406 226.328125 C 258.949219 226.328125 258.855469 226.421875 258.855469 226.539062 C 258.855469 226.65625 258.949219 226.75 259.066406 226.75 C 259.183594 226.75 259.277344 226.65625 259.277344 226.539062 Z M 259.277344 226.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.84375 224.933594 C 263.84375 224.816406 263.75 224.722656 263.632812 224.722656 C 263.515625 224.722656 263.421875 224.816406 263.421875 224.933594 C 263.421875 225.050781 263.515625 225.144531 263.632812 225.144531 C 263.75 225.144531 263.84375 225.050781 263.84375 224.933594 Z M 263.84375 224.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.328125 229.539062 C 263.328125 229.421875 263.234375 229.328125 263.117188 229.328125 C 263 229.328125 262.90625 229.421875 262.90625 229.539062 C 262.90625 229.65625 263 229.75 263.117188 229.75 C 263.234375 229.75 263.328125 229.65625 263.328125 229.539062 Z M 263.328125 229.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.929688 226.015625 C 261.929688 225.898438 261.835938 225.804688 261.71875 225.804688 C 261.601562 225.804688 261.507812 225.898438 261.507812 226.015625 C 261.507812 226.132812 261.601562 226.226562 261.71875 226.226562 C 261.835938 226.226562 261.929688 226.132812 261.929688 226.015625 Z M 261.929688 226.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.457031 226.882812 C 263.457031 226.765625 263.363281 226.671875 263.246094 226.671875 C 263.128906 226.671875 263.035156 226.765625 263.035156 226.882812 C 263.035156 227 263.128906 227.09375 263.246094 227.09375 C 263.363281 227.09375 263.457031 227 263.457031 226.882812 Z M 263.457031 226.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.941406 222.898438 C 262.941406 222.78125 262.847656 222.6875 262.730469 222.6875 C 262.613281 222.6875 262.519531 222.78125 262.519531 222.898438 C 262.519531 223.015625 262.613281 223.109375 262.730469 223.109375 C 262.847656 223.109375 262.941406 223.015625 262.941406 222.898438 Z M 262.941406 222.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.875 223.421875 C 262.875 223.304688 262.78125 223.210938 262.664062 223.210938 C 262.546875 223.210938 262.453125 223.304688 262.453125 223.421875 C 262.453125 223.539062 262.546875 223.632812 262.664062 223.632812 C 262.78125 223.632812 262.875 223.539062 262.875 223.421875 Z M 262.875 223.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.492188 222.21875 C 261.492188 222.101562 261.398438 222.007812 261.28125 222.007812 C 261.164062 222.007812 261.070312 222.101562 261.070312 222.21875 C 261.070312 222.335938 261.164062 222.429688 261.28125 222.429688 C 261.398438 222.429688 261.492188 222.335938 261.492188 222.21875 Z M 261.492188 222.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.921875 223.273438 C 261.921875 223.15625 261.828125 223.0625 261.710938 223.0625 C 261.59375 223.0625 261.5 223.15625 261.5 223.273438 C 261.5 223.390625 261.59375 223.484375 261.710938 223.484375 C 261.828125 223.484375 261.921875 223.390625 261.921875 223.273438 Z M 261.921875 223.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.828125 219.585938 C 264.828125 219.46875 264.734375 219.375 264.617188 219.375 C 264.5 219.375 264.40625 219.46875 264.40625 219.585938 C 264.40625 219.703125 264.5 219.796875 264.617188 219.796875 C 264.734375 219.796875 264.828125 219.703125 264.828125 219.585938 Z M 264.828125 219.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.035156 219.78125 C 264.035156 219.664062 263.941406 219.570312 263.824219 219.570312 C 263.707031 219.570312 263.613281 219.664062 263.613281 219.78125 C 263.613281 219.898438 263.707031 219.992188 263.824219 219.992188 C 263.941406 219.992188 264.035156 219.898438 264.035156 219.78125 Z M 264.035156 219.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.820312 217.0625 C 263.820312 216.945312 263.726562 216.851562 263.609375 216.851562 C 263.492188 216.851562 263.398438 216.945312 263.398438 217.0625 C 263.398438 217.179688 263.492188 217.273438 263.609375 217.273438 C 263.726562 217.273438 263.820312 217.179688 263.820312 217.0625 Z M 263.820312 217.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.433594 217.347656 C 261.433594 217.230469 261.339844 217.136719 261.222656 217.136719 C 261.105469 217.136719 261.011719 217.230469 261.011719 217.347656 C 261.011719 217.464844 261.105469 217.558594 261.222656 217.558594 C 261.339844 217.558594 261.433594 217.464844 261.433594 217.347656 Z M 261.433594 217.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.136719 220.71875 C 261.136719 220.601562 261.042969 220.507812 260.925781 220.507812 C 260.808594 220.507812 260.714844 220.601562 260.714844 220.71875 C 260.714844 220.835938 260.808594 220.929688 260.925781 220.929688 C 261.042969 220.929688 261.136719 220.835938 261.136719 220.71875 Z M 261.136719 220.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.5 220.582031 C 256.5 220.464844 256.40625 220.371094 256.289062 220.371094 C 256.171875 220.371094 256.078125 220.464844 256.078125 220.582031 C 256.078125 220.699219 256.171875 220.792969 256.289062 220.792969 C 256.40625 220.792969 256.5 220.699219 256.5 220.582031 Z M 256.5 220.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.484375 219.675781 C 256.484375 219.558594 256.390625 219.464844 256.273438 219.464844 C 256.15625 219.464844 256.0625 219.558594 256.0625 219.675781 C 256.0625 219.792969 256.15625 219.886719 256.273438 219.886719 C 256.390625 219.886719 256.484375 219.792969 256.484375 219.675781 Z M 256.484375 219.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.925781 215.953125 C 256.925781 215.835938 256.832031 215.742188 256.714844 215.742188 C 256.597656 215.742188 256.503906 215.835938 256.503906 215.953125 C 256.503906 216.070312 256.597656 216.164062 256.714844 216.164062 C 256.832031 216.164062 256.925781 216.070312 256.925781 215.953125 Z M 256.925781 215.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.148438 213.859375 C 258.148438 213.742188 258.054688 213.648438 257.9375 213.648438 C 257.820312 213.648438 257.726562 213.742188 257.726562 213.859375 C 257.726562 213.976562 257.820312 214.070312 257.9375 214.070312 C 258.054688 214.070312 258.148438 213.976562 258.148438 213.859375 Z M 258.148438 213.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.695312 214.902344 C 261.695312 214.785156 261.601562 214.691406 261.484375 214.691406 C 261.367188 214.691406 261.273438 214.785156 261.273438 214.902344 C 261.273438 215.019531 261.367188 215.113281 261.484375 215.113281 C 261.601562 215.113281 261.695312 215.019531 261.695312 214.902344 Z M 261.695312 214.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.082031 216.25 C 262.082031 216.132812 261.988281 216.039062 261.871094 216.039062 C 261.753906 216.039062 261.660156 216.132812 261.660156 216.25 C 261.660156 216.367188 261.753906 216.460938 261.871094 216.460938 C 261.988281 216.460938 262.082031 216.367188 262.082031 216.25 Z M 262.082031 216.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.808594 215.609375 C 260.808594 215.492188 260.714844 215.398438 260.597656 215.398438 C 260.480469 215.398438 260.386719 215.492188 260.386719 215.609375 C 260.386719 215.726562 260.480469 215.820312 260.597656 215.820312 C 260.714844 215.820312 260.808594 215.726562 260.808594 215.609375 Z M 260.808594 215.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.863281 213.355469 C 266.863281 213.238281 266.769531 213.144531 266.652344 213.144531 C 266.535156 213.144531 266.441406 213.238281 266.441406 213.355469 C 266.441406 213.472656 266.535156 213.566406 266.652344 213.566406 C 266.769531 213.566406 266.863281 213.472656 266.863281 213.355469 Z M 266.863281 213.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.480469 215.464844 C 266.480469 215.347656 266.386719 215.253906 266.269531 215.253906 C 266.152344 215.253906 266.058594 215.347656 266.058594 215.464844 C 266.058594 215.582031 266.152344 215.675781 266.269531 215.675781 C 266.386719 215.675781 266.480469 215.582031 266.480469 215.464844 Z M 266.480469 215.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.21875 214.179688 C 266.21875 214.0625 266.125 213.96875 266.007812 213.96875 C 265.890625 213.96875 265.796875 214.0625 265.796875 214.179688 C 265.796875 214.296875 265.890625 214.390625 266.007812 214.390625 C 266.125 214.390625 266.21875 214.296875 266.21875 214.179688 Z M 266.21875 214.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.996094 214.148438 C 264.996094 214.03125 264.902344 213.9375 264.785156 213.9375 C 264.667969 213.9375 264.574219 214.03125 264.574219 214.148438 C 264.574219 214.265625 264.667969 214.359375 264.785156 214.359375 C 264.902344 214.359375 264.996094 214.265625 264.996094 214.148438 Z M 264.996094 214.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.046875 216.886719 C 267.046875 216.769531 266.953125 216.675781 266.835938 216.675781 C 266.71875 216.675781 266.625 216.769531 266.625 216.886719 C 266.625 217.003906 266.71875 217.097656 266.835938 217.097656 C 266.953125 217.097656 267.046875 217.003906 267.046875 216.886719 Z M 267.046875 216.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.929688 216.332031 C 268.929688 216.214844 268.835938 216.121094 268.71875 216.121094 C 268.601562 216.121094 268.507812 216.214844 268.507812 216.332031 C 268.507812 216.449219 268.601562 216.542969 268.71875 216.542969 C 268.835938 216.542969 268.929688 216.449219 268.929688 216.332031 Z M 268.929688 216.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.675781 216.238281 C 270.675781 216.121094 270.582031 216.027344 270.464844 216.027344 C 270.347656 216.027344 270.253906 216.121094 270.253906 216.238281 C 270.253906 216.355469 270.347656 216.449219 270.464844 216.449219 C 270.582031 216.449219 270.675781 216.355469 270.675781 216.238281 Z M 270.675781 216.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.566406 221.320312 C 274.566406 221.203125 274.472656 221.109375 274.355469 221.109375 C 274.238281 221.109375 274.144531 221.203125 274.144531 221.320312 C 274.144531 221.4375 274.238281 221.53125 274.355469 221.53125 C 274.472656 221.53125 274.566406 221.4375 274.566406 221.320312 Z M 274.566406 221.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.226562 220.019531 C 274.226562 219.902344 274.132812 219.808594 274.015625 219.808594 C 273.898438 219.808594 273.804688 219.902344 273.804688 220.019531 C 273.804688 220.136719 273.898438 220.230469 274.015625 220.230469 C 274.132812 220.230469 274.226562 220.136719 274.226562 220.019531 Z M 274.226562 220.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.195312 217.917969 C 274.195312 217.800781 274.101562 217.707031 273.984375 217.707031 C 273.867188 217.707031 273.773438 217.800781 273.773438 217.917969 C 273.773438 218.035156 273.867188 218.128906 273.984375 218.128906 C 274.101562 218.128906 274.195312 218.035156 274.195312 217.917969 Z M 274.195312 217.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.386719 219.515625 C 272.386719 219.398438 272.292969 219.304688 272.175781 219.304688 C 272.058594 219.304688 271.964844 219.398438 271.964844 219.515625 C 271.964844 219.632812 272.058594 219.726562 272.175781 219.726562 C 272.292969 219.726562 272.386719 219.632812 272.386719 219.515625 Z M 272.386719 219.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.253906 220.59375 C 272.253906 220.476562 272.160156 220.382812 272.042969 220.382812 C 271.925781 220.382812 271.832031 220.476562 271.832031 220.59375 C 271.832031 220.710938 271.925781 220.804688 272.042969 220.804688 C 272.160156 220.804688 272.253906 220.710938 272.253906 220.59375 Z M 272.253906 220.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.070312 221.234375 C 272.070312 221.117188 271.976562 221.023438 271.859375 221.023438 C 271.742188 221.023438 271.648438 221.117188 271.648438 221.234375 C 271.648438 221.351562 271.742188 221.445312 271.859375 221.445312 C 271.976562 221.445312 272.070312 221.351562 272.070312 221.234375 Z M 272.070312 221.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.871094 221.582031 C 270.871094 221.464844 270.777344 221.371094 270.660156 221.371094 C 270.542969 221.371094 270.449219 221.464844 270.449219 221.582031 C 270.449219 221.699219 270.542969 221.792969 270.660156 221.792969 C 270.777344 221.792969 270.871094 221.699219 270.871094 221.582031 Z M 270.871094 221.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.714844 221.171875 C 270.714844 221.054688 270.621094 220.960938 270.503906 220.960938 C 270.386719 220.960938 270.292969 221.054688 270.292969 221.171875 C 270.292969 221.289062 270.386719 221.382812 270.503906 221.382812 C 270.621094 221.382812 270.714844 221.289062 270.714844 221.171875 Z M 270.714844 221.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.78125 219.414062 C 267.78125 219.296875 267.6875 219.203125 267.570312 219.203125 C 267.453125 219.203125 267.359375 219.296875 267.359375 219.414062 C 267.359375 219.53125 267.453125 219.625 267.570312 219.625 C 267.6875 219.625 267.78125 219.53125 267.78125 219.414062 Z M 267.78125 219.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.066406 219.835938 C 267.066406 219.71875 266.972656 219.625 266.855469 219.625 C 266.738281 219.625 266.644531 219.71875 266.644531 219.835938 C 266.644531 219.953125 266.738281 220.046875 266.855469 220.046875 C 266.972656 220.046875 267.066406 219.953125 267.066406 219.835938 Z M 267.066406 219.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.128906 218.210938 C 269.128906 218.09375 269.035156 218 268.917969 218 C 268.800781 218 268.707031 218.09375 268.707031 218.210938 C 268.707031 218.328125 268.800781 218.421875 268.917969 218.421875 C 269.035156 218.421875 269.128906 218.328125 269.128906 218.210938 Z M 269.128906 218.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.300781 219.234375 C 271.300781 219.117188 271.207031 219.023438 271.089844 219.023438 C 270.972656 219.023438 270.878906 219.117188 270.878906 219.234375 C 270.878906 219.351562 270.972656 219.445312 271.089844 219.445312 C 271.207031 219.445312 271.300781 219.351562 271.300781 219.234375 Z M 271.300781 219.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.746094 222.953125 C 272.746094 222.835938 272.652344 222.742188 272.535156 222.742188 C 272.417969 222.742188 272.324219 222.835938 272.324219 222.953125 C 272.324219 223.070312 272.417969 223.164062 272.535156 223.164062 C 272.652344 223.164062 272.746094 223.070312 272.746094 222.953125 Z M 272.746094 222.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.949219 222.269531 C 273.949219 222.152344 273.855469 222.058594 273.738281 222.058594 C 273.621094 222.058594 273.527344 222.152344 273.527344 222.269531 C 273.527344 222.386719 273.621094 222.480469 273.738281 222.480469 C 273.855469 222.480469 273.949219 222.386719 273.949219 222.269531 Z M 273.949219 222.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.304688 222.6875 C 276.304688 222.570312 276.210938 222.476562 276.09375 222.476562 C 275.976562 222.476562 275.882812 222.570312 275.882812 222.6875 C 275.882812 222.804688 275.976562 222.898438 276.09375 222.898438 C 276.210938 222.898438 276.304688 222.804688 276.304688 222.6875 Z M 276.304688 222.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.527344 221.855469 C 282.527344 221.738281 282.433594 221.644531 282.316406 221.644531 C 282.199219 221.644531 282.105469 221.738281 282.105469 221.855469 C 282.105469 221.972656 282.199219 222.066406 282.316406 222.066406 C 282.433594 222.066406 282.527344 221.972656 282.527344 221.855469 Z M 282.527344 221.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.609375 223.667969 C 280.609375 223.550781 280.515625 223.457031 280.398438 223.457031 C 280.28125 223.457031 280.1875 223.550781 280.1875 223.667969 C 280.1875 223.785156 280.28125 223.878906 280.398438 223.878906 C 280.515625 223.878906 280.609375 223.785156 280.609375 223.667969 Z M 280.609375 223.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.734375 220.496094 C 277.734375 220.378906 277.640625 220.285156 277.523438 220.285156 C 277.40625 220.285156 277.3125 220.378906 277.3125 220.496094 C 277.3125 220.613281 277.40625 220.707031 277.523438 220.707031 C 277.640625 220.707031 277.734375 220.613281 277.734375 220.496094 Z M 277.734375 220.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.503906 217.460938 C 278.503906 217.34375 278.410156 217.25 278.292969 217.25 C 278.175781 217.25 278.082031 217.34375 278.082031 217.460938 C 278.082031 217.578125 278.175781 217.671875 278.292969 217.671875 C 278.410156 217.671875 278.503906 217.578125 278.503906 217.460938 Z M 278.503906 217.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.128906 216.117188 C 278.128906 216 278.035156 215.90625 277.917969 215.90625 C 277.800781 215.90625 277.707031 216 277.707031 216.117188 C 277.707031 216.234375 277.800781 216.328125 277.917969 216.328125 C 278.035156 216.328125 278.128906 216.234375 278.128906 216.117188 Z M 278.128906 216.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.566406 216.738281 C 279.566406 216.621094 279.472656 216.527344 279.355469 216.527344 C 279.238281 216.527344 279.144531 216.621094 279.144531 216.738281 C 279.144531 216.855469 279.238281 216.949219 279.355469 216.949219 C 279.472656 216.949219 279.566406 216.855469 279.566406 216.738281 Z M 279.566406 216.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.347656 218.695312 C 278.347656 218.578125 278.253906 218.484375 278.136719 218.484375 C 278.019531 218.484375 277.925781 218.578125 277.925781 218.695312 C 277.925781 218.8125 278.019531 218.90625 278.136719 218.90625 C 278.253906 218.90625 278.347656 218.8125 278.347656 218.695312 Z M 278.347656 218.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.523438 218.96875 C 276.523438 218.851562 276.429688 218.757812 276.3125 218.757812 C 276.195312 218.757812 276.101562 218.851562 276.101562 218.96875 C 276.101562 219.085938 276.195312 219.179688 276.3125 219.179688 C 276.429688 219.179688 276.523438 219.085938 276.523438 218.96875 Z M 276.523438 218.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.570312 220.933594 C 277.570312 220.816406 277.476562 220.722656 277.359375 220.722656 C 277.242188 220.722656 277.148438 220.816406 277.148438 220.933594 C 277.148438 221.050781 277.242188 221.144531 277.359375 221.144531 C 277.476562 221.144531 277.570312 221.050781 277.570312 220.933594 Z M 277.570312 220.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.660156 218.132812 C 274.660156 218.015625 274.566406 217.921875 274.449219 217.921875 C 274.332031 217.921875 274.238281 218.015625 274.238281 218.132812 C 274.238281 218.25 274.332031 218.34375 274.449219 218.34375 C 274.566406 218.34375 274.660156 218.25 274.660156 218.132812 Z M 274.660156 218.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.328125 218.71875 C 276.328125 218.601562 276.234375 218.507812 276.117188 218.507812 C 276 218.507812 275.90625 218.601562 275.90625 218.71875 C 275.90625 218.835938 276 218.929688 276.117188 218.929688 C 276.234375 218.929688 276.328125 218.835938 276.328125 218.71875 Z M 276.328125 218.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.679688 217.53125 C 278.679688 217.414062 278.585938 217.320312 278.46875 217.320312 C 278.351562 217.320312 278.257812 217.414062 278.257812 217.53125 C 278.257812 217.648438 278.351562 217.742188 278.46875 217.742188 C 278.585938 217.742188 278.679688 217.648438 278.679688 217.53125 Z M 278.679688 217.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.890625 215.945312 C 280.890625 215.828125 280.796875 215.734375 280.679688 215.734375 C 280.5625 215.734375 280.46875 215.828125 280.46875 215.945312 C 280.46875 216.0625 280.5625 216.15625 280.679688 216.15625 C 280.796875 216.15625 280.890625 216.0625 280.890625 215.945312 Z M 280.890625 215.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.207031 216.671875 C 282.207031 216.554688 282.113281 216.460938 281.996094 216.460938 C 281.878906 216.460938 281.785156 216.554688 281.785156 216.671875 C 281.785156 216.789062 281.878906 216.882812 281.996094 216.882812 C 282.113281 216.882812 282.207031 216.789062 282.207031 216.671875 Z M 282.207031 216.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.558594 216.445312 C 281.558594 216.328125 281.464844 216.234375 281.347656 216.234375 C 281.230469 216.234375 281.136719 216.328125 281.136719 216.445312 C 281.136719 216.5625 281.230469 216.65625 281.347656 216.65625 C 281.464844 216.65625 281.558594 216.5625 281.558594 216.445312 Z M 281.558594 216.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.070312 216.355469 C 280.070312 216.238281 279.976562 216.144531 279.859375 216.144531 C 279.742188 216.144531 279.648438 216.238281 279.648438 216.355469 C 279.648438 216.472656 279.742188 216.566406 279.859375 216.566406 C 279.976562 216.566406 280.070312 216.472656 280.070312 216.355469 Z M 280.070312 216.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.914062 214.683594 C 279.914062 214.566406 279.820312 214.472656 279.703125 214.472656 C 279.585938 214.472656 279.492188 214.566406 279.492188 214.683594 C 279.492188 214.800781 279.585938 214.894531 279.703125 214.894531 C 279.820312 214.894531 279.914062 214.800781 279.914062 214.683594 Z M 279.914062 214.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.269531 210.957031 C 279.269531 210.839844 279.175781 210.746094 279.058594 210.746094 C 278.941406 210.746094 278.847656 210.839844 278.847656 210.957031 C 278.847656 211.074219 278.941406 211.167969 279.058594 211.167969 C 279.175781 211.167969 279.269531 211.074219 279.269531 210.957031 Z M 279.269531 210.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.917969 210.246094 C 279.917969 210.128906 279.824219 210.035156 279.707031 210.035156 C 279.589844 210.035156 279.496094 210.128906 279.496094 210.246094 C 279.496094 210.363281 279.589844 210.457031 279.707031 210.457031 C 279.824219 210.457031 279.917969 210.363281 279.917969 210.246094 Z M 279.917969 210.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.429688 208.09375 C 282.429688 207.976562 282.335938 207.882812 282.21875 207.882812 C 282.101562 207.882812 282.007812 207.976562 282.007812 208.09375 C 282.007812 208.210938 282.101562 208.304688 282.21875 208.304688 C 282.335938 208.304688 282.429688 208.210938 282.429688 208.09375 Z M 282.429688 208.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.964844 205.980469 C 281.964844 205.863281 281.871094 205.769531 281.753906 205.769531 C 281.636719 205.769531 281.542969 205.863281 281.542969 205.980469 C 281.542969 206.097656 281.636719 206.191406 281.753906 206.191406 C 281.871094 206.191406 281.964844 206.097656 281.964844 205.980469 Z M 281.964844 205.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.125 206.257812 C 280.125 206.140625 280.03125 206.046875 279.914062 206.046875 C 279.796875 206.046875 279.703125 206.140625 279.703125 206.257812 C 279.703125 206.375 279.796875 206.46875 279.914062 206.46875 C 280.03125 206.46875 280.125 206.375 280.125 206.257812 Z M 280.125 206.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.234375 208.851562 C 283.234375 208.734375 283.140625 208.640625 283.023438 208.640625 C 282.90625 208.640625 282.8125 208.734375 282.8125 208.851562 C 282.8125 208.96875 282.90625 209.0625 283.023438 209.0625 C 283.140625 209.0625 283.234375 208.96875 283.234375 208.851562 Z M 283.234375 208.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.753906 210.722656 C 280.753906 210.605469 280.660156 210.511719 280.542969 210.511719 C 280.425781 210.511719 280.332031 210.605469 280.332031 210.722656 C 280.332031 210.839844 280.425781 210.933594 280.542969 210.933594 C 280.660156 210.933594 280.753906 210.839844 280.753906 210.722656 Z M 280.753906 210.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.421875 215.609375 C 277.421875 215.492188 277.328125 215.398438 277.210938 215.398438 C 277.09375 215.398438 277 215.492188 277 215.609375 C 277 215.726562 277.09375 215.820312 277.210938 215.820312 C 277.328125 215.820312 277.421875 215.726562 277.421875 215.609375 Z M 277.421875 215.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.164062 213.824219 C 279.164062 213.707031 279.070312 213.613281 278.953125 213.613281 C 278.835938 213.613281 278.742188 213.707031 278.742188 213.824219 C 278.742188 213.941406 278.835938 214.035156 278.953125 214.035156 C 279.070312 214.035156 279.164062 213.941406 279.164062 213.824219 Z M 279.164062 213.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.316406 213.277344 C 279.316406 213.160156 279.222656 213.066406 279.105469 213.066406 C 278.988281 213.066406 278.894531 213.160156 278.894531 213.277344 C 278.894531 213.394531 278.988281 213.488281 279.105469 213.488281 C 279.222656 213.488281 279.316406 213.394531 279.316406 213.277344 Z M 279.316406 213.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.863281 213.039062 C 275.863281 212.921875 275.769531 212.828125 275.652344 212.828125 C 275.535156 212.828125 275.441406 212.921875 275.441406 213.039062 C 275.441406 213.15625 275.535156 213.25 275.652344 213.25 C 275.769531 213.25 275.863281 213.15625 275.863281 213.039062 Z M 275.863281 213.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.8125 211.394531 C 276.8125 211.277344 276.71875 211.183594 276.601562 211.183594 C 276.484375 211.183594 276.390625 211.277344 276.390625 211.394531 C 276.390625 211.511719 276.484375 211.605469 276.601562 211.605469 C 276.71875 211.605469 276.8125 211.511719 276.8125 211.394531 Z M 276.8125 211.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.523438 210.429688 C 278.523438 210.3125 278.429688 210.21875 278.3125 210.21875 C 278.195312 210.21875 278.101562 210.3125 278.101562 210.429688 C 278.101562 210.546875 278.195312 210.640625 278.3125 210.640625 C 278.429688 210.640625 278.523438 210.546875 278.523438 210.429688 Z M 278.523438 210.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.648438 213.871094 C 280.648438 213.753906 280.554688 213.660156 280.4375 213.660156 C 280.320312 213.660156 280.226562 213.753906 280.226562 213.871094 C 280.226562 213.988281 280.320312 214.082031 280.4375 214.082031 C 280.554688 214.082031 280.648438 213.988281 280.648438 213.871094 Z M 280.648438 213.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.488281 215.246094 C 278.488281 215.128906 278.394531 215.035156 278.277344 215.035156 C 278.160156 215.035156 278.066406 215.128906 278.066406 215.246094 C 278.066406 215.363281 278.160156 215.457031 278.277344 215.457031 C 278.394531 215.457031 278.488281 215.363281 278.488281 215.246094 Z M 278.488281 215.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.105469 213.921875 C 278.105469 213.804688 278.011719 213.710938 277.894531 213.710938 C 277.777344 213.710938 277.683594 213.804688 277.683594 213.921875 C 277.683594 214.039062 277.777344 214.132812 277.894531 214.132812 C 278.011719 214.132812 278.105469 214.039062 278.105469 213.921875 Z M 278.105469 213.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.382812 214.292969 C 279.382812 214.175781 279.289062 214.082031 279.171875 214.082031 C 279.054688 214.082031 278.960938 214.175781 278.960938 214.292969 C 278.960938 214.410156 279.054688 214.503906 279.171875 214.503906 C 279.289062 214.503906 279.382812 214.410156 279.382812 214.292969 Z M 279.382812 214.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.386719 217 C 277.386719 216.882812 277.292969 216.789062 277.175781 216.789062 C 277.058594 216.789062 276.964844 216.882812 276.964844 217 C 276.964844 217.117188 277.058594 217.210938 277.175781 217.210938 C 277.292969 217.210938 277.386719 217.117188 277.386719 217 Z M 277.386719 217 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.085938 215.882812 C 278.085938 215.765625 277.992188 215.671875 277.875 215.671875 C 277.757812 215.671875 277.664062 215.765625 277.664062 215.882812 C 277.664062 216 277.757812 216.09375 277.875 216.09375 C 277.992188 216.09375 278.085938 216 278.085938 215.882812 Z M 278.085938 215.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.84375 216.394531 C 279.84375 216.277344 279.75 216.183594 279.632812 216.183594 C 279.515625 216.183594 279.421875 216.277344 279.421875 216.394531 C 279.421875 216.511719 279.515625 216.605469 279.632812 216.605469 C 279.75 216.605469 279.84375 216.511719 279.84375 216.394531 Z M 279.84375 216.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.3125 216.546875 C 277.3125 216.429688 277.21875 216.335938 277.101562 216.335938 C 276.984375 216.335938 276.890625 216.429688 276.890625 216.546875 C 276.890625 216.664062 276.984375 216.757812 277.101562 216.757812 C 277.21875 216.757812 277.3125 216.664062 277.3125 216.546875 Z M 277.3125 216.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.140625 215.222656 C 276.140625 215.105469 276.046875 215.011719 275.929688 215.011719 C 275.8125 215.011719 275.71875 215.105469 275.71875 215.222656 C 275.71875 215.339844 275.8125 215.433594 275.929688 215.433594 C 276.046875 215.433594 276.140625 215.339844 276.140625 215.222656 Z M 276.140625 215.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.507812 216.945312 C 278.507812 216.828125 278.414062 216.734375 278.296875 216.734375 C 278.179688 216.734375 278.085938 216.828125 278.085938 216.945312 C 278.085938 217.0625 278.179688 217.15625 278.296875 217.15625 C 278.414062 217.15625 278.507812 217.0625 278.507812 216.945312 Z M 278.507812 216.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.734375 219.632812 C 281.734375 219.515625 281.640625 219.421875 281.523438 219.421875 C 281.40625 219.421875 281.3125 219.515625 281.3125 219.632812 C 281.3125 219.75 281.40625 219.84375 281.523438 219.84375 C 281.640625 219.84375 281.734375 219.75 281.734375 219.632812 Z M 281.734375 219.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.175781 218.574219 C 281.175781 218.457031 281.082031 218.363281 280.964844 218.363281 C 280.847656 218.363281 280.753906 218.457031 280.753906 218.574219 C 280.753906 218.691406 280.847656 218.785156 280.964844 218.785156 C 281.082031 218.785156 281.175781 218.691406 281.175781 218.574219 Z M 281.175781 218.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.203125 222.207031 C 281.203125 222.089844 281.109375 221.996094 280.992188 221.996094 C 280.875 221.996094 280.78125 222.089844 280.78125 222.207031 C 280.78125 222.324219 280.875 222.417969 280.992188 222.417969 C 281.109375 222.417969 281.203125 222.324219 281.203125 222.207031 Z M 281.203125 222.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.675781 225.003906 C 279.675781 224.886719 279.582031 224.792969 279.464844 224.792969 C 279.347656 224.792969 279.253906 224.886719 279.253906 225.003906 C 279.253906 225.121094 279.347656 225.214844 279.464844 225.214844 C 279.582031 225.214844 279.675781 225.121094 279.675781 225.003906 Z M 279.675781 225.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.015625 226.222656 C 277.015625 226.105469 276.921875 226.011719 276.804688 226.011719 C 276.6875 226.011719 276.59375 226.105469 276.59375 226.222656 C 276.59375 226.339844 276.6875 226.433594 276.804688 226.433594 C 276.921875 226.433594 277.015625 226.339844 277.015625 226.222656 Z M 277.015625 226.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.742188 221.632812 C 276.742188 221.515625 276.648438 221.421875 276.53125 221.421875 C 276.414062 221.421875 276.320312 221.515625 276.320312 221.632812 C 276.320312 221.75 276.414062 221.84375 276.53125 221.84375 C 276.648438 221.84375 276.742188 221.75 276.742188 221.632812 Z M 276.742188 221.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.4375 220.671875 C 276.4375 220.554688 276.34375 220.460938 276.226562 220.460938 C 276.109375 220.460938 276.015625 220.554688 276.015625 220.671875 C 276.015625 220.789062 276.109375 220.882812 276.226562 220.882812 C 276.34375 220.882812 276.4375 220.789062 276.4375 220.671875 Z M 276.4375 220.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.324219 220.742188 C 278.324219 220.625 278.230469 220.53125 278.113281 220.53125 C 277.996094 220.53125 277.902344 220.625 277.902344 220.742188 C 277.902344 220.859375 277.996094 220.953125 278.113281 220.953125 C 278.230469 220.953125 278.324219 220.859375 278.324219 220.742188 Z M 278.324219 220.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.605469 219.707031 C 276.605469 219.589844 276.511719 219.496094 276.394531 219.496094 C 276.277344 219.496094 276.183594 219.589844 276.183594 219.707031 C 276.183594 219.824219 276.277344 219.917969 276.394531 219.917969 C 276.511719 219.917969 276.605469 219.824219 276.605469 219.707031 Z M 276.605469 219.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.066406 223.667969 C 277.066406 223.550781 276.972656 223.457031 276.855469 223.457031 C 276.738281 223.457031 276.644531 223.550781 276.644531 223.667969 C 276.644531 223.785156 276.738281 223.878906 276.855469 223.878906 C 276.972656 223.878906 277.066406 223.785156 277.066406 223.667969 Z M 277.066406 223.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.917969 221.117188 C 275.917969 221 275.824219 220.90625 275.707031 220.90625 C 275.589844 220.90625 275.496094 221 275.496094 221.117188 C 275.496094 221.234375 275.589844 221.328125 275.707031 221.328125 C 275.824219 221.328125 275.917969 221.234375 275.917969 221.117188 Z M 275.917969 221.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.605469 221.75 C 277.605469 221.632812 277.511719 221.539062 277.394531 221.539062 C 277.277344 221.539062 277.183594 221.632812 277.183594 221.75 C 277.183594 221.867188 277.277344 221.960938 277.394531 221.960938 C 277.511719 221.960938 277.605469 221.867188 277.605469 221.75 Z M 277.605469 221.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.71875 222.304688 C 275.71875 222.1875 275.625 222.09375 275.507812 222.09375 C 275.390625 222.09375 275.296875 222.1875 275.296875 222.304688 C 275.296875 222.421875 275.390625 222.515625 275.507812 222.515625 C 275.625 222.515625 275.71875 222.421875 275.71875 222.304688 Z M 275.71875 222.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.710938 224.914062 C 272.710938 224.796875 272.617188 224.703125 272.5 224.703125 C 272.382812 224.703125 272.289062 224.796875 272.289062 224.914062 C 272.289062 225.03125 272.382812 225.125 272.5 225.125 C 272.617188 225.125 272.710938 225.03125 272.710938 224.914062 Z M 272.710938 224.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.464844 224.691406 C 273.464844 224.574219 273.371094 224.480469 273.253906 224.480469 C 273.136719 224.480469 273.042969 224.574219 273.042969 224.691406 C 273.042969 224.808594 273.136719 224.902344 273.253906 224.902344 C 273.371094 224.902344 273.464844 224.808594 273.464844 224.691406 Z M 273.464844 224.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.699219 221.261719 C 273.699219 221.144531 273.605469 221.050781 273.488281 221.050781 C 273.371094 221.050781 273.277344 221.144531 273.277344 221.261719 C 273.277344 221.378906 273.371094 221.472656 273.488281 221.472656 C 273.605469 221.472656 273.699219 221.378906 273.699219 221.261719 Z M 273.699219 221.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.605469 220.410156 C 270.605469 220.292969 270.511719 220.199219 270.394531 220.199219 C 270.277344 220.199219 270.183594 220.292969 270.183594 220.410156 C 270.183594 220.527344 270.277344 220.621094 270.394531 220.621094 C 270.511719 220.621094 270.605469 220.527344 270.605469 220.410156 Z M 270.605469 220.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.28125 217.277344 C 270.28125 217.160156 270.1875 217.066406 270.070312 217.066406 C 269.953125 217.066406 269.859375 217.160156 269.859375 217.277344 C 269.859375 217.394531 269.953125 217.488281 270.070312 217.488281 C 270.1875 217.488281 270.28125 217.394531 270.28125 217.277344 Z M 270.28125 217.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.84375 219.988281 C 269.84375 219.871094 269.75 219.777344 269.632812 219.777344 C 269.515625 219.777344 269.421875 219.871094 269.421875 219.988281 C 269.421875 220.105469 269.515625 220.199219 269.632812 220.199219 C 269.75 220.199219 269.84375 220.105469 269.84375 219.988281 Z M 269.84375 219.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.777344 216.335938 C 270.777344 216.21875 270.683594 216.125 270.566406 216.125 C 270.449219 216.125 270.355469 216.21875 270.355469 216.335938 C 270.355469 216.453125 270.449219 216.546875 270.566406 216.546875 C 270.683594 216.546875 270.777344 216.453125 270.777344 216.335938 Z M 270.777344 216.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.648438 217.226562 C 270.648438 217.109375 270.554688 217.015625 270.4375 217.015625 C 270.320312 217.015625 270.226562 217.109375 270.226562 217.226562 C 270.226562 217.34375 270.320312 217.4375 270.4375 217.4375 C 270.554688 217.4375 270.648438 217.34375 270.648438 217.226562 Z M 270.648438 217.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.617188 217.609375 C 272.617188 217.492188 272.523438 217.398438 272.40625 217.398438 C 272.289062 217.398438 272.195312 217.492188 272.195312 217.609375 C 272.195312 217.726562 272.289062 217.820312 272.40625 217.820312 C 272.523438 217.820312 272.617188 217.726562 272.617188 217.609375 Z M 272.617188 217.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.445312 216.234375 C 271.445312 216.117188 271.351562 216.023438 271.234375 216.023438 C 271.117188 216.023438 271.023438 216.117188 271.023438 216.234375 C 271.023438 216.351562 271.117188 216.445312 271.234375 216.445312 C 271.351562 216.445312 271.445312 216.351562 271.445312 216.234375 Z M 271.445312 216.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.128906 220.011719 C 268.128906 219.894531 268.035156 219.800781 267.917969 219.800781 C 267.800781 219.800781 267.707031 219.894531 267.707031 220.011719 C 267.707031 220.128906 267.800781 220.222656 267.917969 220.222656 C 268.035156 220.222656 268.128906 220.128906 268.128906 220.011719 Z M 268.128906 220.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.203125 223.222656 C 268.203125 223.105469 268.109375 223.011719 267.992188 223.011719 C 267.875 223.011719 267.78125 223.105469 267.78125 223.222656 C 267.78125 223.339844 267.875 223.433594 267.992188 223.433594 C 268.109375 223.433594 268.203125 223.339844 268.203125 223.222656 Z M 268.203125 223.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.449219 219.574219 C 267.449219 219.457031 267.355469 219.363281 267.238281 219.363281 C 267.121094 219.363281 267.027344 219.457031 267.027344 219.574219 C 267.027344 219.691406 267.121094 219.785156 267.238281 219.785156 C 267.355469 219.785156 267.449219 219.691406 267.449219 219.574219 Z M 267.449219 219.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.527344 220.023438 C 269.527344 219.90625 269.433594 219.8125 269.316406 219.8125 C 269.199219 219.8125 269.105469 219.90625 269.105469 220.023438 C 269.105469 220.140625 269.199219 220.234375 269.316406 220.234375 C 269.433594 220.234375 269.527344 220.140625 269.527344 220.023438 Z M 269.527344 220.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.863281 219.035156 C 270.863281 218.917969 270.769531 218.824219 270.652344 218.824219 C 270.535156 218.824219 270.441406 218.917969 270.441406 219.035156 C 270.441406 219.152344 270.535156 219.246094 270.652344 219.246094 C 270.769531 219.246094 270.863281 219.152344 270.863281 219.035156 Z M 270.863281 219.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.300781 219.71875 C 266.300781 219.601562 266.207031 219.507812 266.089844 219.507812 C 265.972656 219.507812 265.878906 219.601562 265.878906 219.71875 C 265.878906 219.835938 265.972656 219.929688 266.089844 219.929688 C 266.207031 219.929688 266.300781 219.835938 266.300781 219.71875 Z M 266.300781 219.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.4375 219.453125 C 266.4375 219.335938 266.34375 219.242188 266.226562 219.242188 C 266.109375 219.242188 266.015625 219.335938 266.015625 219.453125 C 266.015625 219.570312 266.109375 219.664062 266.226562 219.664062 C 266.34375 219.664062 266.4375 219.570312 266.4375 219.453125 Z M 266.4375 219.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.925781 217.15625 C 263.925781 217.039062 263.832031 216.945312 263.714844 216.945312 C 263.597656 216.945312 263.503906 217.039062 263.503906 217.15625 C 263.503906 217.273438 263.597656 217.367188 263.714844 217.367188 C 263.832031 217.367188 263.925781 217.273438 263.925781 217.15625 Z M 263.925781 217.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.75 217.953125 C 265.75 217.835938 265.65625 217.742188 265.539062 217.742188 C 265.421875 217.742188 265.328125 217.835938 265.328125 217.953125 C 265.328125 218.070312 265.421875 218.164062 265.539062 218.164062 C 265.65625 218.164062 265.75 218.070312 265.75 217.953125 Z M 265.75 217.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.234375 218.445312 C 266.234375 218.328125 266.140625 218.234375 266.023438 218.234375 C 265.90625 218.234375 265.8125 218.328125 265.8125 218.445312 C 265.8125 218.5625 265.90625 218.65625 266.023438 218.65625 C 266.140625 218.65625 266.234375 218.5625 266.234375 218.445312 Z M 266.234375 218.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.445312 219.523438 C 266.445312 219.40625 266.351562 219.3125 266.234375 219.3125 C 266.117188 219.3125 266.023438 219.40625 266.023438 219.523438 C 266.023438 219.640625 266.117188 219.734375 266.234375 219.734375 C 266.351562 219.734375 266.445312 219.640625 266.445312 219.523438 Z M 266.445312 219.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.636719 218.382812 C 270.636719 218.265625 270.542969 218.171875 270.425781 218.171875 C 270.308594 218.171875 270.214844 218.265625 270.214844 218.382812 C 270.214844 218.5 270.308594 218.59375 270.425781 218.59375 C 270.542969 218.59375 270.636719 218.5 270.636719 218.382812 Z M 270.636719 218.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.128906 220.996094 C 269.128906 220.878906 269.035156 220.785156 268.917969 220.785156 C 268.800781 220.785156 268.707031 220.878906 268.707031 220.996094 C 268.707031 221.113281 268.800781 221.207031 268.917969 221.207031 C 269.035156 221.207031 269.128906 221.113281 269.128906 220.996094 Z M 269.128906 220.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.8125 217.480469 C 266.8125 217.363281 266.71875 217.269531 266.601562 217.269531 C 266.484375 217.269531 266.390625 217.363281 266.390625 217.480469 C 266.390625 217.597656 266.484375 217.691406 266.601562 217.691406 C 266.71875 217.691406 266.8125 217.597656 266.8125 217.480469 Z M 266.8125 217.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.210938 218.273438 C 268.210938 218.15625 268.117188 218.0625 268 218.0625 C 267.882812 218.0625 267.789062 218.15625 267.789062 218.273438 C 267.789062 218.390625 267.882812 218.484375 268 218.484375 C 268.117188 218.484375 268.210938 218.390625 268.210938 218.273438 Z M 268.210938 218.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.535156 217.121094 C 268.535156 217.003906 268.441406 216.910156 268.324219 216.910156 C 268.207031 216.910156 268.113281 217.003906 268.113281 217.121094 C 268.113281 217.238281 268.207031 217.332031 268.324219 217.332031 C 268.441406 217.332031 268.535156 217.238281 268.535156 217.121094 Z M 268.535156 217.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.550781 219.300781 C 270.550781 219.183594 270.457031 219.089844 270.339844 219.089844 C 270.222656 219.089844 270.128906 219.183594 270.128906 219.300781 C 270.128906 219.417969 270.222656 219.511719 270.339844 219.511719 C 270.457031 219.511719 270.550781 219.417969 270.550781 219.300781 Z M 270.550781 219.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.894531 221.097656 C 268.894531 220.980469 268.800781 220.886719 268.683594 220.886719 C 268.566406 220.886719 268.472656 220.980469 268.472656 221.097656 C 268.472656 221.214844 268.566406 221.308594 268.683594 221.308594 C 268.800781 221.308594 268.894531 221.214844 268.894531 221.097656 Z M 268.894531 221.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.6875 220.523438 C 269.6875 220.40625 269.59375 220.3125 269.476562 220.3125 C 269.359375 220.3125 269.265625 220.40625 269.265625 220.523438 C 269.265625 220.640625 269.359375 220.734375 269.476562 220.734375 C 269.59375 220.734375 269.6875 220.640625 269.6875 220.523438 Z M 269.6875 220.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.433594 221.277344 C 272.433594 221.160156 272.339844 221.066406 272.222656 221.066406 C 272.105469 221.066406 272.011719 221.160156 272.011719 221.277344 C 272.011719 221.394531 272.105469 221.488281 272.222656 221.488281 C 272.339844 221.488281 272.433594 221.394531 272.433594 221.277344 Z M 272.433594 221.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.019531 220.023438 C 271.019531 219.90625 270.925781 219.8125 270.808594 219.8125 C 270.691406 219.8125 270.597656 219.90625 270.597656 220.023438 C 270.597656 220.140625 270.691406 220.234375 270.808594 220.234375 C 270.925781 220.234375 271.019531 220.140625 271.019531 220.023438 Z M 271.019531 220.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.464844 222.515625 C 271.464844 222.398438 271.371094 222.304688 271.253906 222.304688 C 271.136719 222.304688 271.042969 222.398438 271.042969 222.515625 C 271.042969 222.632812 271.136719 222.726562 271.253906 222.726562 C 271.371094 222.726562 271.464844 222.632812 271.464844 222.515625 Z M 271.464844 222.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.242188 219.65625 C 271.242188 219.539062 271.148438 219.445312 271.03125 219.445312 C 270.914062 219.445312 270.820312 219.539062 270.820312 219.65625 C 270.820312 219.773438 270.914062 219.867188 271.03125 219.867188 C 271.148438 219.867188 271.242188 219.773438 271.242188 219.65625 Z M 271.242188 219.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.375 217.609375 C 271.375 217.492188 271.28125 217.398438 271.164062 217.398438 C 271.046875 217.398438 270.953125 217.492188 270.953125 217.609375 C 270.953125 217.726562 271.046875 217.820312 271.164062 217.820312 C 271.28125 217.820312 271.375 217.726562 271.375 217.609375 Z M 271.375 217.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.460938 220.914062 C 270.460938 220.796875 270.367188 220.703125 270.25 220.703125 C 270.132812 220.703125 270.039062 220.796875 270.039062 220.914062 C 270.039062 221.03125 270.132812 221.125 270.25 221.125 C 270.367188 221.125 270.460938 221.03125 270.460938 220.914062 Z M 270.460938 220.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.035156 221.363281 C 272.035156 221.246094 271.941406 221.152344 271.824219 221.152344 C 271.707031 221.152344 271.613281 221.246094 271.613281 221.363281 C 271.613281 221.480469 271.707031 221.574219 271.824219 221.574219 C 271.941406 221.574219 272.035156 221.480469 272.035156 221.363281 Z M 272.035156 221.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.421875 224.460938 C 271.421875 224.34375 271.328125 224.25 271.210938 224.25 C 271.09375 224.25 271 224.34375 271 224.460938 C 271 224.578125 271.09375 224.671875 271.210938 224.671875 C 271.328125 224.671875 271.421875 224.578125 271.421875 224.460938 Z M 271.421875 224.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.808594 223.054688 C 271.808594 222.9375 271.714844 222.84375 271.597656 222.84375 C 271.480469 222.84375 271.386719 222.9375 271.386719 223.054688 C 271.386719 223.171875 271.480469 223.265625 271.597656 223.265625 C 271.714844 223.265625 271.808594 223.171875 271.808594 223.054688 Z M 271.808594 223.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.996094 223.046875 C 271.996094 222.929688 271.902344 222.835938 271.785156 222.835938 C 271.667969 222.835938 271.574219 222.929688 271.574219 223.046875 C 271.574219 223.164062 271.667969 223.257812 271.785156 223.257812 C 271.902344 223.257812 271.996094 223.164062 271.996094 223.046875 Z M 271.996094 223.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.417969 224.304688 C 271.417969 224.1875 271.324219 224.09375 271.207031 224.09375 C 271.089844 224.09375 270.996094 224.1875 270.996094 224.304688 C 270.996094 224.421875 271.089844 224.515625 271.207031 224.515625 C 271.324219 224.515625 271.417969 224.421875 271.417969 224.304688 Z M 271.417969 224.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.722656 223.113281 C 273.722656 222.996094 273.628906 222.902344 273.511719 222.902344 C 273.394531 222.902344 273.300781 222.996094 273.300781 223.113281 C 273.300781 223.230469 273.394531 223.324219 273.511719 223.324219 C 273.628906 223.324219 273.722656 223.230469 273.722656 223.113281 Z M 273.722656 223.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.304688 227.25 C 274.304688 227.132812 274.210938 227.039062 274.09375 227.039062 C 273.976562 227.039062 273.882812 227.132812 273.882812 227.25 C 273.882812 227.367188 273.976562 227.460938 274.09375 227.460938 C 274.210938 227.460938 274.304688 227.367188 274.304688 227.25 Z M 274.304688 227.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.714844 230.464844 C 271.714844 230.347656 271.621094 230.253906 271.503906 230.253906 C 271.386719 230.253906 271.292969 230.347656 271.292969 230.464844 C 271.292969 230.582031 271.386719 230.675781 271.503906 230.675781 C 271.621094 230.675781 271.714844 230.582031 271.714844 230.464844 Z M 271.714844 230.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.664062 229.328125 C 268.664062 229.210938 268.570312 229.117188 268.453125 229.117188 C 268.335938 229.117188 268.242188 229.210938 268.242188 229.328125 C 268.242188 229.445312 268.335938 229.539062 268.453125 229.539062 C 268.570312 229.539062 268.664062 229.445312 268.664062 229.328125 Z M 268.664062 229.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.003906 229.097656 C 273.003906 228.980469 272.910156 228.886719 272.792969 228.886719 C 272.675781 228.886719 272.582031 228.980469 272.582031 229.097656 C 272.582031 229.214844 272.675781 229.308594 272.792969 229.308594 C 272.910156 229.308594 273.003906 229.214844 273.003906 229.097656 Z M 273.003906 229.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.023438 227.738281 C 272.023438 227.621094 271.929688 227.527344 271.8125 227.527344 C 271.695312 227.527344 271.601562 227.621094 271.601562 227.738281 C 271.601562 227.855469 271.695312 227.949219 271.8125 227.949219 C 271.929688 227.949219 272.023438 227.855469 272.023438 227.738281 Z M 272.023438 227.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.398438 228.203125 C 270.398438 228.085938 270.304688 227.992188 270.1875 227.992188 C 270.070312 227.992188 269.976562 228.085938 269.976562 228.203125 C 269.976562 228.320312 270.070312 228.414062 270.1875 228.414062 C 270.304688 228.414062 270.398438 228.320312 270.398438 228.203125 Z M 270.398438 228.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.707031 226.9375 C 268.707031 226.820312 268.613281 226.726562 268.496094 226.726562 C 268.378906 226.726562 268.285156 226.820312 268.285156 226.9375 C 268.285156 227.054688 268.378906 227.148438 268.496094 227.148438 C 268.613281 227.148438 268.707031 227.054688 268.707031 226.9375 Z M 268.707031 226.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.070312 225.722656 C 265.070312 225.605469 264.976562 225.511719 264.859375 225.511719 C 264.742188 225.511719 264.648438 225.605469 264.648438 225.722656 C 264.648438 225.839844 264.742188 225.933594 264.859375 225.933594 C 264.976562 225.933594 265.070312 225.839844 265.070312 225.722656 Z M 265.070312 225.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.453125 224.898438 C 264.453125 224.78125 264.359375 224.6875 264.242188 224.6875 C 264.125 224.6875 264.03125 224.78125 264.03125 224.898438 C 264.03125 225.015625 264.125 225.109375 264.242188 225.109375 C 264.359375 225.109375 264.453125 225.015625 264.453125 224.898438 Z M 264.453125 224.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.355469 224.6875 C 261.355469 224.570312 261.261719 224.476562 261.144531 224.476562 C 261.027344 224.476562 260.933594 224.570312 260.933594 224.6875 C 260.933594 224.804688 261.027344 224.898438 261.144531 224.898438 C 261.261719 224.898438 261.355469 224.804688 261.355469 224.6875 Z M 261.355469 224.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.121094 229.03125 C 257.121094 228.914062 257.027344 228.820312 256.910156 228.820312 C 256.792969 228.820312 256.699219 228.914062 256.699219 229.03125 C 256.699219 229.148438 256.792969 229.242188 256.910156 229.242188 C 257.027344 229.242188 257.121094 229.148438 257.121094 229.03125 Z M 257.121094 229.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.878906 228.957031 C 256.878906 228.839844 256.785156 228.746094 256.667969 228.746094 C 256.550781 228.746094 256.457031 228.839844 256.457031 228.957031 C 256.457031 229.074219 256.550781 229.167969 256.667969 229.167969 C 256.785156 229.167969 256.878906 229.074219 256.878906 228.957031 Z M 256.878906 228.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.882812 228.5 C 255.882812 228.382812 255.789062 228.289062 255.671875 228.289062 C 255.554688 228.289062 255.460938 228.382812 255.460938 228.5 C 255.460938 228.617188 255.554688 228.710938 255.671875 228.710938 C 255.789062 228.710938 255.882812 228.617188 255.882812 228.5 Z M 255.882812 228.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.652344 231.542969 C 256.652344 231.425781 256.558594 231.332031 256.441406 231.332031 C 256.324219 231.332031 256.230469 231.425781 256.230469 231.542969 C 256.230469 231.660156 256.324219 231.753906 256.441406 231.753906 C 256.558594 231.753906 256.652344 231.660156 256.652344 231.542969 Z M 256.652344 231.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.5625 231.875 C 254.5625 231.757812 254.46875 231.664062 254.351562 231.664062 C 254.234375 231.664062 254.140625 231.757812 254.140625 231.875 C 254.140625 231.992188 254.234375 232.085938 254.351562 232.085938 C 254.46875 232.085938 254.5625 231.992188 254.5625 231.875 Z M 254.5625 231.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.21875 230.804688 C 252.21875 230.6875 252.125 230.59375 252.007812 230.59375 C 251.890625 230.59375 251.796875 230.6875 251.796875 230.804688 C 251.796875 230.921875 251.890625 231.015625 252.007812 231.015625 C 252.125 231.015625 252.21875 230.921875 252.21875 230.804688 Z M 252.21875 230.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.734375 227.167969 C 249.734375 227.050781 249.640625 226.957031 249.523438 226.957031 C 249.40625 226.957031 249.3125 227.050781 249.3125 227.167969 C 249.3125 227.285156 249.40625 227.378906 249.523438 227.378906 C 249.640625 227.378906 249.734375 227.285156 249.734375 227.167969 Z M 249.734375 227.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.003906 225.675781 C 252.003906 225.558594 251.910156 225.464844 251.792969 225.464844 C 251.675781 225.464844 251.582031 225.558594 251.582031 225.675781 C 251.582031 225.792969 251.675781 225.886719 251.792969 225.886719 C 251.910156 225.886719 252.003906 225.792969 252.003906 225.675781 Z M 252.003906 225.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.328125 226.96875 C 253.328125 226.851562 253.234375 226.757812 253.117188 226.757812 C 253 226.757812 252.90625 226.851562 252.90625 226.96875 C 252.90625 227.085938 253 227.179688 253.117188 227.179688 C 253.234375 227.179688 253.328125 227.085938 253.328125 226.96875 Z M 253.328125 226.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.277344 227.699219 C 254.277344 227.582031 254.183594 227.488281 254.066406 227.488281 C 253.949219 227.488281 253.855469 227.582031 253.855469 227.699219 C 253.855469 227.816406 253.949219 227.910156 254.066406 227.910156 C 254.183594 227.910156 254.277344 227.816406 254.277344 227.699219 Z M 254.277344 227.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.648438 223.125 C 254.648438 223.007812 254.554688 222.914062 254.4375 222.914062 C 254.320312 222.914062 254.226562 223.007812 254.226562 223.125 C 254.226562 223.242188 254.320312 223.335938 254.4375 223.335938 C 254.554688 223.335938 254.648438 223.242188 254.648438 223.125 Z M 254.648438 223.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.578125 221.832031 C 256.578125 221.714844 256.484375 221.621094 256.367188 221.621094 C 256.25 221.621094 256.15625 221.714844 256.15625 221.832031 C 256.15625 221.949219 256.25 222.042969 256.367188 222.042969 C 256.484375 222.042969 256.578125 221.949219 256.578125 221.832031 Z M 256.578125 221.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.933594 222.988281 C 256.933594 222.871094 256.839844 222.777344 256.722656 222.777344 C 256.605469 222.777344 256.511719 222.871094 256.511719 222.988281 C 256.511719 223.105469 256.605469 223.199219 256.722656 223.199219 C 256.839844 223.199219 256.933594 223.105469 256.933594 222.988281 Z M 256.933594 222.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.136719 222.554688 C 259.136719 222.4375 259.042969 222.34375 258.925781 222.34375 C 258.808594 222.34375 258.714844 222.4375 258.714844 222.554688 C 258.714844 222.671875 258.808594 222.765625 258.925781 222.765625 C 259.042969 222.765625 259.136719 222.671875 259.136719 222.554688 Z M 259.136719 222.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.707031 222.304688 C 260.707031 222.1875 260.613281 222.09375 260.496094 222.09375 C 260.378906 222.09375 260.285156 222.1875 260.285156 222.304688 C 260.285156 222.421875 260.378906 222.515625 260.496094 222.515625 C 260.613281 222.515625 260.707031 222.421875 260.707031 222.304688 Z M 260.707031 222.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.394531 221.480469 C 259.394531 221.363281 259.300781 221.269531 259.183594 221.269531 C 259.066406 221.269531 258.972656 221.363281 258.972656 221.480469 C 258.972656 221.597656 259.066406 221.691406 259.183594 221.691406 C 259.300781 221.691406 259.394531 221.597656 259.394531 221.480469 Z M 259.394531 221.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.484375 221.75 C 260.484375 221.632812 260.390625 221.539062 260.273438 221.539062 C 260.15625 221.539062 260.0625 221.632812 260.0625 221.75 C 260.0625 221.867188 260.15625 221.960938 260.273438 221.960938 C 260.390625 221.960938 260.484375 221.867188 260.484375 221.75 Z M 260.484375 221.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.089844 222.695312 C 260.089844 222.578125 259.996094 222.484375 259.878906 222.484375 C 259.761719 222.484375 259.667969 222.578125 259.667969 222.695312 C 259.667969 222.8125 259.761719 222.90625 259.878906 222.90625 C 259.996094 222.90625 260.089844 222.8125 260.089844 222.695312 Z M 260.089844 222.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.296875 222.691406 C 261.296875 222.574219 261.203125 222.480469 261.085938 222.480469 C 260.96875 222.480469 260.875 222.574219 260.875 222.691406 C 260.875 222.808594 260.96875 222.902344 261.085938 222.902344 C 261.203125 222.902344 261.296875 222.808594 261.296875 222.691406 Z M 261.296875 222.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.792969 223.515625 C 263.792969 223.398438 263.699219 223.304688 263.582031 223.304688 C 263.464844 223.304688 263.371094 223.398438 263.371094 223.515625 C 263.371094 223.632812 263.464844 223.726562 263.582031 223.726562 C 263.699219 223.726562 263.792969 223.632812 263.792969 223.515625 Z M 263.792969 223.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.441406 224.078125 C 262.441406 223.960938 262.347656 223.867188 262.230469 223.867188 C 262.113281 223.867188 262.019531 223.960938 262.019531 224.078125 C 262.019531 224.195312 262.113281 224.289062 262.230469 224.289062 C 262.347656 224.289062 262.441406 224.195312 262.441406 224.078125 Z M 262.441406 224.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.488281 225.355469 C 262.488281 225.238281 262.394531 225.144531 262.277344 225.144531 C 262.160156 225.144531 262.066406 225.238281 262.066406 225.355469 C 262.066406 225.472656 262.160156 225.566406 262.277344 225.566406 C 262.394531 225.566406 262.488281 225.472656 262.488281 225.355469 Z M 262.488281 225.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.625 227 C 258.625 226.882812 258.53125 226.789062 258.414062 226.789062 C 258.296875 226.789062 258.203125 226.882812 258.203125 227 C 258.203125 227.117188 258.296875 227.210938 258.414062 227.210938 C 258.53125 227.210938 258.625 227.117188 258.625 227 Z M 258.625 227 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.835938 225.671875 C 257.835938 225.554688 257.742188 225.460938 257.625 225.460938 C 257.507812 225.460938 257.414062 225.554688 257.414062 225.671875 C 257.414062 225.789062 257.507812 225.882812 257.625 225.882812 C 257.742188 225.882812 257.835938 225.789062 257.835938 225.671875 Z M 257.835938 225.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.964844 224.699219 C 259.964844 224.582031 259.871094 224.488281 259.753906 224.488281 C 259.636719 224.488281 259.542969 224.582031 259.542969 224.699219 C 259.542969 224.816406 259.636719 224.910156 259.753906 224.910156 C 259.871094 224.910156 259.964844 224.816406 259.964844 224.699219 Z M 259.964844 224.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.601562 220.644531 C 258.601562 220.527344 258.507812 220.433594 258.390625 220.433594 C 258.273438 220.433594 258.179688 220.527344 258.179688 220.644531 C 258.179688 220.761719 258.273438 220.855469 258.390625 220.855469 C 258.507812 220.855469 258.601562 220.761719 258.601562 220.644531 Z M 258.601562 220.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.597656 220.414062 C 255.597656 220.296875 255.503906 220.203125 255.386719 220.203125 C 255.269531 220.203125 255.175781 220.296875 255.175781 220.414062 C 255.175781 220.53125 255.269531 220.625 255.386719 220.625 C 255.503906 220.625 255.597656 220.53125 255.597656 220.414062 Z M 255.597656 220.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.984375 223.074219 C 254.984375 222.957031 254.890625 222.863281 254.773438 222.863281 C 254.65625 222.863281 254.5625 222.957031 254.5625 223.074219 C 254.5625 223.191406 254.65625 223.285156 254.773438 223.285156 C 254.890625 223.285156 254.984375 223.191406 254.984375 223.074219 Z M 254.984375 223.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.910156 219.550781 C 261.910156 219.433594 261.816406 219.339844 261.699219 219.339844 C 261.582031 219.339844 261.488281 219.433594 261.488281 219.550781 C 261.488281 219.667969 261.582031 219.761719 261.699219 219.761719 C 261.816406 219.761719 261.910156 219.667969 261.910156 219.550781 Z M 261.910156 219.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.703125 220.089844 C 261.703125 219.972656 261.609375 219.878906 261.492188 219.878906 C 261.375 219.878906 261.28125 219.972656 261.28125 220.089844 C 261.28125 220.207031 261.375 220.300781 261.492188 220.300781 C 261.609375 220.300781 261.703125 220.207031 261.703125 220.089844 Z M 261.703125 220.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.523438 222.644531 C 261.523438 222.527344 261.429688 222.433594 261.3125 222.433594 C 261.195312 222.433594 261.101562 222.527344 261.101562 222.644531 C 261.101562 222.761719 261.195312 222.855469 261.3125 222.855469 C 261.429688 222.855469 261.523438 222.761719 261.523438 222.644531 Z M 261.523438 222.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.597656 224.519531 C 260.597656 224.402344 260.503906 224.308594 260.386719 224.308594 C 260.269531 224.308594 260.175781 224.402344 260.175781 224.519531 C 260.175781 224.636719 260.269531 224.730469 260.386719 224.730469 C 260.503906 224.730469 260.597656 224.636719 260.597656 224.519531 Z M 260.597656 224.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.292969 226.039062 C 259.292969 225.921875 259.199219 225.828125 259.082031 225.828125 C 258.964844 225.828125 258.871094 225.921875 258.871094 226.039062 C 258.871094 226.15625 258.964844 226.25 259.082031 226.25 C 259.199219 226.25 259.292969 226.15625 259.292969 226.039062 Z M 259.292969 226.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.75 225.015625 C 257.75 224.898438 257.65625 224.804688 257.539062 224.804688 C 257.421875 224.804688 257.328125 224.898438 257.328125 225.015625 C 257.328125 225.132812 257.421875 225.226562 257.539062 225.226562 C 257.65625 225.226562 257.75 225.132812 257.75 225.015625 Z M 257.75 225.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.101562 225.828125 C 256.101562 225.710938 256.007812 225.617188 255.890625 225.617188 C 255.773438 225.617188 255.679688 225.710938 255.679688 225.828125 C 255.679688 225.945312 255.773438 226.039062 255.890625 226.039062 C 256.007812 226.039062 256.101562 225.945312 256.101562 225.828125 Z M 256.101562 225.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.546875 224.488281 C 254.546875 224.371094 254.453125 224.277344 254.335938 224.277344 C 254.21875 224.277344 254.125 224.371094 254.125 224.488281 C 254.125 224.605469 254.21875 224.699219 254.335938 224.699219 C 254.453125 224.699219 254.546875 224.605469 254.546875 224.488281 Z M 254.546875 224.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.949219 221.71875 C 247.949219 221.601562 247.855469 221.507812 247.738281 221.507812 C 247.621094 221.507812 247.527344 221.601562 247.527344 221.71875 C 247.527344 221.835938 247.621094 221.929688 247.738281 221.929688 C 247.855469 221.929688 247.949219 221.835938 247.949219 221.71875 Z M 247.949219 221.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.800781 222.636719 C 248.800781 222.519531 248.707031 222.425781 248.589844 222.425781 C 248.472656 222.425781 248.378906 222.519531 248.378906 222.636719 C 248.378906 222.753906 248.472656 222.847656 248.589844 222.847656 C 248.707031 222.847656 248.800781 222.753906 248.800781 222.636719 Z M 248.800781 222.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.539062 224.035156 C 245.539062 223.917969 245.445312 223.824219 245.328125 223.824219 C 245.210938 223.824219 245.117188 223.917969 245.117188 224.035156 C 245.117188 224.152344 245.210938 224.246094 245.328125 224.246094 C 245.445312 224.246094 245.539062 224.152344 245.539062 224.035156 Z M 245.539062 224.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.484375 227.632812 C 245.484375 227.515625 245.390625 227.421875 245.273438 227.421875 C 245.15625 227.421875 245.0625 227.515625 245.0625 227.632812 C 245.0625 227.75 245.15625 227.84375 245.273438 227.84375 C 245.390625 227.84375 245.484375 227.75 245.484375 227.632812 Z M 245.484375 227.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.804688 225.050781 C 244.804688 224.933594 244.710938 224.839844 244.59375 224.839844 C 244.476562 224.839844 244.382812 224.933594 244.382812 225.050781 C 244.382812 225.167969 244.476562 225.261719 244.59375 225.261719 C 244.710938 225.261719 244.804688 225.167969 244.804688 225.050781 Z M 244.804688 225.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.167969 226.449219 C 240.167969 226.332031 240.074219 226.238281 239.957031 226.238281 C 239.839844 226.238281 239.746094 226.332031 239.746094 226.449219 C 239.746094 226.566406 239.839844 226.660156 239.957031 226.660156 C 240.074219 226.660156 240.167969 226.566406 240.167969 226.449219 Z M 240.167969 226.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.847656 225.679688 C 238.847656 225.5625 238.753906 225.46875 238.636719 225.46875 C 238.519531 225.46875 238.425781 225.5625 238.425781 225.679688 C 238.425781 225.796875 238.519531 225.890625 238.636719 225.890625 C 238.753906 225.890625 238.847656 225.796875 238.847656 225.679688 Z M 238.847656 225.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.78125 221.492188 C 239.78125 221.375 239.6875 221.28125 239.570312 221.28125 C 239.453125 221.28125 239.359375 221.375 239.359375 221.492188 C 239.359375 221.609375 239.453125 221.703125 239.570312 221.703125 C 239.6875 221.703125 239.78125 221.609375 239.78125 221.492188 Z M 239.78125 221.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.367188 222.820312 C 242.367188 222.703125 242.273438 222.609375 242.15625 222.609375 C 242.039062 222.609375 241.945312 222.703125 241.945312 222.820312 C 241.945312 222.9375 242.039062 223.03125 242.15625 223.03125 C 242.273438 223.03125 242.367188 222.9375 242.367188 222.820312 Z M 242.367188 222.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.644531 222.34375 C 243.644531 222.226562 243.550781 222.132812 243.433594 222.132812 C 243.316406 222.132812 243.222656 222.226562 243.222656 222.34375 C 243.222656 222.460938 243.316406 222.554688 243.433594 222.554688 C 243.550781 222.554688 243.644531 222.460938 243.644531 222.34375 Z M 243.644531 222.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.21875 223.375 C 246.21875 223.257812 246.125 223.164062 246.007812 223.164062 C 245.890625 223.164062 245.796875 223.257812 245.796875 223.375 C 245.796875 223.492188 245.890625 223.585938 246.007812 223.585938 C 246.125 223.585938 246.21875 223.492188 246.21875 223.375 Z M 246.21875 223.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.726562 227.132812 C 246.726562 227.015625 246.632812 226.921875 246.515625 226.921875 C 246.398438 226.921875 246.304688 227.015625 246.304688 227.132812 C 246.304688 227.25 246.398438 227.34375 246.515625 227.34375 C 246.632812 227.34375 246.726562 227.25 246.726562 227.132812 Z M 246.726562 227.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.382812 225.765625 C 246.382812 225.648438 246.289062 225.554688 246.171875 225.554688 C 246.054688 225.554688 245.960938 225.648438 245.960938 225.765625 C 245.960938 225.882812 246.054688 225.976562 246.171875 225.976562 C 246.289062 225.976562 246.382812 225.882812 246.382812 225.765625 Z M 246.382812 225.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.925781 223.613281 C 245.925781 223.496094 245.832031 223.402344 245.714844 223.402344 C 245.597656 223.402344 245.503906 223.496094 245.503906 223.613281 C 245.503906 223.730469 245.597656 223.824219 245.714844 223.824219 C 245.832031 223.824219 245.925781 223.730469 245.925781 223.613281 Z M 245.925781 223.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.507812 227.773438 C 245.507812 227.65625 245.414062 227.5625 245.296875 227.5625 C 245.179688 227.5625 245.085938 227.65625 245.085938 227.773438 C 245.085938 227.890625 245.179688 227.984375 245.296875 227.984375 C 245.414062 227.984375 245.507812 227.890625 245.507812 227.773438 Z M 245.507812 227.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.535156 230.183594 C 250.535156 230.066406 250.441406 229.972656 250.324219 229.972656 C 250.207031 229.972656 250.113281 230.066406 250.113281 230.183594 C 250.113281 230.300781 250.207031 230.394531 250.324219 230.394531 C 250.441406 230.394531 250.535156 230.300781 250.535156 230.183594 Z M 250.535156 230.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.976562 229.554688 C 249.976562 229.4375 249.882812 229.34375 249.765625 229.34375 C 249.648438 229.34375 249.554688 229.4375 249.554688 229.554688 C 249.554688 229.671875 249.648438 229.765625 249.765625 229.765625 C 249.882812 229.765625 249.976562 229.671875 249.976562 229.554688 Z M 249.976562 229.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.546875 228.027344 C 247.546875 227.910156 247.453125 227.816406 247.335938 227.816406 C 247.21875 227.816406 247.125 227.910156 247.125 228.027344 C 247.125 228.144531 247.21875 228.238281 247.335938 228.238281 C 247.453125 228.238281 247.546875 228.144531 247.546875 228.027344 Z M 247.546875 228.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.457031 226.101562 C 249.457031 225.984375 249.363281 225.890625 249.246094 225.890625 C 249.128906 225.890625 249.035156 225.984375 249.035156 226.101562 C 249.035156 226.21875 249.128906 226.3125 249.246094 226.3125 C 249.363281 226.3125 249.457031 226.21875 249.457031 226.101562 Z M 249.457031 226.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.414062 225.878906 C 248.414062 225.761719 248.320312 225.667969 248.203125 225.667969 C 248.085938 225.667969 247.992188 225.761719 247.992188 225.878906 C 247.992188 225.996094 248.085938 226.089844 248.203125 226.089844 C 248.320312 226.089844 248.414062 225.996094 248.414062 225.878906 Z M 248.414062 225.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.96875 231.410156 C 250.96875 231.292969 250.875 231.199219 250.757812 231.199219 C 250.640625 231.199219 250.546875 231.292969 250.546875 231.410156 C 250.546875 231.527344 250.640625 231.621094 250.757812 231.621094 C 250.875 231.621094 250.96875 231.527344 250.96875 231.410156 Z M 250.96875 231.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.898438 230.40625 C 249.898438 230.289062 249.804688 230.195312 249.6875 230.195312 C 249.570312 230.195312 249.476562 230.289062 249.476562 230.40625 C 249.476562 230.523438 249.570312 230.617188 249.6875 230.617188 C 249.804688 230.617188 249.898438 230.523438 249.898438 230.40625 Z M 249.898438 230.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.382812 230.335938 C 250.382812 230.21875 250.289062 230.125 250.171875 230.125 C 250.054688 230.125 249.960938 230.21875 249.960938 230.335938 C 249.960938 230.453125 250.054688 230.546875 250.171875 230.546875 C 250.289062 230.546875 250.382812 230.453125 250.382812 230.335938 Z M 250.382812 230.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.152344 229.683594 C 247.152344 229.566406 247.058594 229.472656 246.941406 229.472656 C 246.824219 229.472656 246.730469 229.566406 246.730469 229.683594 C 246.730469 229.800781 246.824219 229.894531 246.941406 229.894531 C 247.058594 229.894531 247.152344 229.800781 247.152344 229.683594 Z M 247.152344 229.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.730469 232.492188 C 247.730469 232.375 247.636719 232.28125 247.519531 232.28125 C 247.402344 232.28125 247.308594 232.375 247.308594 232.492188 C 247.308594 232.609375 247.402344 232.703125 247.519531 232.703125 C 247.636719 232.703125 247.730469 232.609375 247.730469 232.492188 Z M 247.730469 232.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.554688 234.027344 C 249.554688 233.910156 249.460938 233.816406 249.34375 233.816406 C 249.226562 233.816406 249.132812 233.910156 249.132812 234.027344 C 249.132812 234.144531 249.226562 234.238281 249.34375 234.238281 C 249.460938 234.238281 249.554688 234.144531 249.554688 234.027344 Z M 249.554688 234.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.167969 236.972656 C 247.167969 236.855469 247.074219 236.761719 246.957031 236.761719 C 246.839844 236.761719 246.746094 236.855469 246.746094 236.972656 C 246.746094 237.089844 246.839844 237.183594 246.957031 237.183594 C 247.074219 237.183594 247.167969 237.089844 247.167969 236.972656 Z M 247.167969 236.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.414062 233.136719 C 242.414062 233.019531 242.320312 232.925781 242.203125 232.925781 C 242.085938 232.925781 241.992188 233.019531 241.992188 233.136719 C 241.992188 233.253906 242.085938 233.347656 242.203125 233.347656 C 242.320312 233.347656 242.414062 233.253906 242.414062 233.136719 Z M 242.414062 233.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.125 229.824219 C 241.125 229.707031 241.03125 229.613281 240.914062 229.613281 C 240.796875 229.613281 240.703125 229.707031 240.703125 229.824219 C 240.703125 229.941406 240.796875 230.035156 240.914062 230.035156 C 241.03125 230.035156 241.125 229.941406 241.125 229.824219 Z M 241.125 229.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.742188 232.65625 C 239.742188 232.539062 239.648438 232.445312 239.53125 232.445312 C 239.414062 232.445312 239.320312 232.539062 239.320312 232.65625 C 239.320312 232.773438 239.414062 232.867188 239.53125 232.867188 C 239.648438 232.867188 239.742188 232.773438 239.742188 232.65625 Z M 239.742188 232.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.769531 231.757812 C 242.769531 231.640625 242.675781 231.546875 242.558594 231.546875 C 242.441406 231.546875 242.347656 231.640625 242.347656 231.757812 C 242.347656 231.875 242.441406 231.96875 242.558594 231.96875 C 242.675781 231.96875 242.769531 231.875 242.769531 231.757812 Z M 242.769531 231.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.109375 233.789062 C 243.109375 233.671875 243.015625 233.578125 242.898438 233.578125 C 242.78125 233.578125 242.6875 233.671875 242.6875 233.789062 C 242.6875 233.90625 242.78125 234 242.898438 234 C 243.015625 234 243.109375 233.90625 243.109375 233.789062 Z M 243.109375 233.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.292969 231.992188 C 244.292969 231.875 244.199219 231.78125 244.082031 231.78125 C 243.964844 231.78125 243.871094 231.875 243.871094 231.992188 C 243.871094 232.109375 243.964844 232.203125 244.082031 232.203125 C 244.199219 232.203125 244.292969 232.109375 244.292969 231.992188 Z M 244.292969 231.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.839844 235.222656 C 244.839844 235.105469 244.746094 235.011719 244.628906 235.011719 C 244.511719 235.011719 244.417969 235.105469 244.417969 235.222656 C 244.417969 235.339844 244.511719 235.433594 244.628906 235.433594 C 244.746094 235.433594 244.839844 235.339844 244.839844 235.222656 Z M 244.839844 235.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.582031 232.578125 C 242.582031 232.460938 242.488281 232.367188 242.371094 232.367188 C 242.253906 232.367188 242.160156 232.460938 242.160156 232.578125 C 242.160156 232.695312 242.253906 232.789062 242.371094 232.789062 C 242.488281 232.789062 242.582031 232.695312 242.582031 232.578125 Z M 242.582031 232.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.246094 232.011719 C 242.246094 231.894531 242.152344 231.800781 242.035156 231.800781 C 241.917969 231.800781 241.824219 231.894531 241.824219 232.011719 C 241.824219 232.128906 241.917969 232.222656 242.035156 232.222656 C 242.152344 232.222656 242.246094 232.128906 242.246094 232.011719 Z M 242.246094 232.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.648438 228.605469 C 243.648438 228.488281 243.554688 228.394531 243.4375 228.394531 C 243.320312 228.394531 243.226562 228.488281 243.226562 228.605469 C 243.226562 228.722656 243.320312 228.816406 243.4375 228.816406 C 243.554688 228.816406 243.648438 228.722656 243.648438 228.605469 Z M 243.648438 228.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.457031 227.183594 C 245.457031 227.066406 245.363281 226.972656 245.246094 226.972656 C 245.128906 226.972656 245.035156 227.066406 245.035156 227.183594 C 245.035156 227.300781 245.128906 227.394531 245.246094 227.394531 C 245.363281 227.394531 245.457031 227.300781 245.457031 227.183594 Z M 245.457031 227.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.816406 225.691406 C 245.816406 225.574219 245.722656 225.480469 245.605469 225.480469 C 245.488281 225.480469 245.394531 225.574219 245.394531 225.691406 C 245.394531 225.808594 245.488281 225.902344 245.605469 225.902344 C 245.722656 225.902344 245.816406 225.808594 245.816406 225.691406 Z M 245.816406 225.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.460938 227.71875 C 247.460938 227.601562 247.367188 227.507812 247.25 227.507812 C 247.132812 227.507812 247.039062 227.601562 247.039062 227.71875 C 247.039062 227.835938 247.132812 227.929688 247.25 227.929688 C 247.367188 227.929688 247.460938 227.835938 247.460938 227.71875 Z M 247.460938 227.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.089844 227.183594 C 248.089844 227.066406 247.996094 226.972656 247.878906 226.972656 C 247.761719 226.972656 247.667969 227.066406 247.667969 227.183594 C 247.667969 227.300781 247.761719 227.394531 247.878906 227.394531 C 247.996094 227.394531 248.089844 227.300781 248.089844 227.183594 Z M 248.089844 227.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.753906 227.507812 C 247.753906 227.390625 247.660156 227.296875 247.542969 227.296875 C 247.425781 227.296875 247.332031 227.390625 247.332031 227.507812 C 247.332031 227.625 247.425781 227.71875 247.542969 227.71875 C 247.660156 227.71875 247.753906 227.625 247.753906 227.507812 Z M 247.753906 227.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.808594 225.289062 C 249.808594 225.171875 249.714844 225.078125 249.597656 225.078125 C 249.480469 225.078125 249.386719 225.171875 249.386719 225.289062 C 249.386719 225.40625 249.480469 225.5 249.597656 225.5 C 249.714844 225.5 249.808594 225.40625 249.808594 225.289062 Z M 249.808594 225.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.585938 225.140625 C 249.585938 225.023438 249.492188 224.929688 249.375 224.929688 C 249.257812 224.929688 249.164062 225.023438 249.164062 225.140625 C 249.164062 225.257812 249.257812 225.351562 249.375 225.351562 C 249.492188 225.351562 249.585938 225.257812 249.585938 225.140625 Z M 249.585938 225.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.304688 225.316406 C 249.304688 225.199219 249.210938 225.105469 249.09375 225.105469 C 248.976562 225.105469 248.882812 225.199219 248.882812 225.316406 C 248.882812 225.433594 248.976562 225.527344 249.09375 225.527344 C 249.210938 225.527344 249.304688 225.433594 249.304688 225.316406 Z M 249.304688 225.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.277344 221.46875 C 249.277344 221.351562 249.183594 221.257812 249.066406 221.257812 C 248.949219 221.257812 248.855469 221.351562 248.855469 221.46875 C 248.855469 221.585938 248.949219 221.679688 249.066406 221.679688 C 249.183594 221.679688 249.277344 221.585938 249.277344 221.46875 Z M 249.277344 221.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.03125 223.578125 C 246.03125 223.460938 245.9375 223.367188 245.820312 223.367188 C 245.703125 223.367188 245.609375 223.460938 245.609375 223.578125 C 245.609375 223.695312 245.703125 223.789062 245.820312 223.789062 C 245.9375 223.789062 246.03125 223.695312 246.03125 223.578125 Z M 246.03125 223.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.933594 224.09375 C 245.933594 223.976562 245.839844 223.882812 245.722656 223.882812 C 245.605469 223.882812 245.511719 223.976562 245.511719 224.09375 C 245.511719 224.210938 245.605469 224.304688 245.722656 224.304688 C 245.839844 224.304688 245.933594 224.210938 245.933594 224.09375 Z M 245.933594 224.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.605469 225.050781 C 243.605469 224.933594 243.511719 224.839844 243.394531 224.839844 C 243.277344 224.839844 243.183594 224.933594 243.183594 225.050781 C 243.183594 225.167969 243.277344 225.261719 243.394531 225.261719 C 243.511719 225.261719 243.605469 225.167969 243.605469 225.050781 Z M 243.605469 225.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.921875 224.125 C 240.921875 224.007812 240.828125 223.914062 240.710938 223.914062 C 240.59375 223.914062 240.5 224.007812 240.5 224.125 C 240.5 224.242188 240.59375 224.335938 240.710938 224.335938 C 240.828125 224.335938 240.921875 224.242188 240.921875 224.125 Z M 240.921875 224.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.613281 221.960938 C 237.613281 221.84375 237.519531 221.75 237.402344 221.75 C 237.285156 221.75 237.191406 221.84375 237.191406 221.960938 C 237.191406 222.078125 237.285156 222.171875 237.402344 222.171875 C 237.519531 222.171875 237.613281 222.078125 237.613281 221.960938 Z M 237.613281 221.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.644531 225.636719 C 239.644531 225.519531 239.550781 225.425781 239.433594 225.425781 C 239.316406 225.425781 239.222656 225.519531 239.222656 225.636719 C 239.222656 225.753906 239.316406 225.847656 239.433594 225.847656 C 239.550781 225.847656 239.644531 225.753906 239.644531 225.636719 Z M 239.644531 225.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.867188 223.542969 C 242.867188 223.425781 242.773438 223.332031 242.65625 223.332031 C 242.539062 223.332031 242.445312 223.425781 242.445312 223.542969 C 242.445312 223.660156 242.539062 223.753906 242.65625 223.753906 C 242.773438 223.753906 242.867188 223.660156 242.867188 223.542969 Z M 242.867188 223.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.722656 224.300781 C 240.722656 224.183594 240.628906 224.089844 240.511719 224.089844 C 240.394531 224.089844 240.300781 224.183594 240.300781 224.300781 C 240.300781 224.417969 240.394531 224.511719 240.511719 224.511719 C 240.628906 224.511719 240.722656 224.417969 240.722656 224.300781 Z M 240.722656 224.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.300781 224.59375 C 241.300781 224.476562 241.207031 224.382812 241.089844 224.382812 C 240.972656 224.382812 240.878906 224.476562 240.878906 224.59375 C 240.878906 224.710938 240.972656 224.804688 241.089844 224.804688 C 241.207031 224.804688 241.300781 224.710938 241.300781 224.59375 Z M 241.300781 224.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.925781 230.738281 C 238.925781 230.621094 238.832031 230.527344 238.714844 230.527344 C 238.597656 230.527344 238.503906 230.621094 238.503906 230.738281 C 238.503906 230.855469 238.597656 230.949219 238.714844 230.949219 C 238.832031 230.949219 238.925781 230.855469 238.925781 230.738281 Z M 238.925781 230.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.433594 232.335938 C 237.433594 232.21875 237.339844 232.125 237.222656 232.125 C 237.105469 232.125 237.011719 232.21875 237.011719 232.335938 C 237.011719 232.453125 237.105469 232.546875 237.222656 232.546875 C 237.339844 232.546875 237.433594 232.453125 237.433594 232.335938 Z M 237.433594 232.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.828125 235.355469 C 234.828125 235.238281 234.734375 235.144531 234.617188 235.144531 C 234.5 235.144531 234.40625 235.238281 234.40625 235.355469 C 234.40625 235.472656 234.5 235.566406 234.617188 235.566406 C 234.734375 235.566406 234.828125 235.472656 234.828125 235.355469 Z M 234.828125 235.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.289062 236.8125 C 235.289062 236.695312 235.195312 236.601562 235.078125 236.601562 C 234.960938 236.601562 234.867188 236.695312 234.867188 236.8125 C 234.867188 236.929688 234.960938 237.023438 235.078125 237.023438 C 235.195312 237.023438 235.289062 236.929688 235.289062 236.8125 Z M 235.289062 236.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.574219 233.382812 C 236.574219 233.265625 236.480469 233.171875 236.363281 233.171875 C 236.246094 233.171875 236.152344 233.265625 236.152344 233.382812 C 236.152344 233.5 236.246094 233.59375 236.363281 233.59375 C 236.480469 233.59375 236.574219 233.5 236.574219 233.382812 Z M 236.574219 233.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.972656 232.144531 C 237.972656 232.027344 237.878906 231.933594 237.761719 231.933594 C 237.644531 231.933594 237.550781 232.027344 237.550781 232.144531 C 237.550781 232.261719 237.644531 232.355469 237.761719 232.355469 C 237.878906 232.355469 237.972656 232.261719 237.972656 232.144531 Z M 237.972656 232.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.597656 232.695312 C 237.597656 232.578125 237.503906 232.484375 237.386719 232.484375 C 237.269531 232.484375 237.175781 232.578125 237.175781 232.695312 C 237.175781 232.8125 237.269531 232.90625 237.386719 232.90625 C 237.503906 232.90625 237.597656 232.8125 237.597656 232.695312 Z M 237.597656 232.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.871094 231.800781 C 234.871094 231.683594 234.777344 231.589844 234.660156 231.589844 C 234.542969 231.589844 234.449219 231.683594 234.449219 231.800781 C 234.449219 231.917969 234.542969 232.011719 234.660156 232.011719 C 234.777344 232.011719 234.871094 231.917969 234.871094 231.800781 Z M 234.871094 231.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.984375 232.46875 C 235.984375 232.351562 235.890625 232.257812 235.773438 232.257812 C 235.65625 232.257812 235.5625 232.351562 235.5625 232.46875 C 235.5625 232.585938 235.65625 232.679688 235.773438 232.679688 C 235.890625 232.679688 235.984375 232.585938 235.984375 232.46875 Z M 235.984375 232.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.75 233.347656 C 233.75 233.230469 233.65625 233.136719 233.539062 233.136719 C 233.421875 233.136719 233.328125 233.230469 233.328125 233.347656 C 233.328125 233.464844 233.421875 233.558594 233.539062 233.558594 C 233.65625 233.558594 233.75 233.464844 233.75 233.347656 Z M 233.75 233.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.640625 232.96875 C 230.640625 232.851562 230.546875 232.757812 230.429688 232.757812 C 230.3125 232.757812 230.21875 232.851562 230.21875 232.96875 C 230.21875 233.085938 230.3125 233.179688 230.429688 233.179688 C 230.546875 233.179688 230.640625 233.085938 230.640625 232.96875 Z M 230.640625 232.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.382812 232.765625 C 229.382812 232.648438 229.289062 232.554688 229.171875 232.554688 C 229.054688 232.554688 228.960938 232.648438 228.960938 232.765625 C 228.960938 232.882812 229.054688 232.976562 229.171875 232.976562 C 229.289062 232.976562 229.382812 232.882812 229.382812 232.765625 Z M 229.382812 232.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.171875 233.167969 C 227.171875 233.050781 227.078125 232.957031 226.960938 232.957031 C 226.84375 232.957031 226.75 233.050781 226.75 233.167969 C 226.75 233.285156 226.84375 233.378906 226.960938 233.378906 C 227.078125 233.378906 227.171875 233.285156 227.171875 233.167969 Z M 227.171875 233.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.148438 226.828125 C 229.148438 226.710938 229.054688 226.617188 228.9375 226.617188 C 228.820312 226.617188 228.726562 226.710938 228.726562 226.828125 C 228.726562 226.945312 228.820312 227.039062 228.9375 227.039062 C 229.054688 227.039062 229.148438 226.945312 229.148438 226.828125 Z M 229.148438 226.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.957031 229.082031 C 230.957031 228.964844 230.863281 228.871094 230.746094 228.871094 C 230.628906 228.871094 230.535156 228.964844 230.535156 229.082031 C 230.535156 229.199219 230.628906 229.292969 230.746094 229.292969 C 230.863281 229.292969 230.957031 229.199219 230.957031 229.082031 Z M 230.957031 229.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.296875 231.328125 C 227.296875 231.210938 227.203125 231.117188 227.085938 231.117188 C 226.96875 231.117188 226.875 231.210938 226.875 231.328125 C 226.875 231.445312 226.96875 231.539062 227.085938 231.539062 C 227.203125 231.539062 227.296875 231.445312 227.296875 231.328125 Z M 227.296875 231.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.617188 233.335938 C 228.617188 233.21875 228.523438 233.125 228.40625 233.125 C 228.289062 233.125 228.195312 233.21875 228.195312 233.335938 C 228.195312 233.453125 228.289062 233.546875 228.40625 233.546875 C 228.523438 233.546875 228.617188 233.453125 228.617188 233.335938 Z M 228.617188 233.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.1875 238.308594 C 231.1875 238.191406 231.09375 238.097656 230.976562 238.097656 C 230.859375 238.097656 230.765625 238.191406 230.765625 238.308594 C 230.765625 238.425781 230.859375 238.519531 230.976562 238.519531 C 231.09375 238.519531 231.1875 238.425781 231.1875 238.308594 Z M 231.1875 238.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.199219 242.128906 C 233.199219 242.011719 233.105469 241.917969 232.988281 241.917969 C 232.871094 241.917969 232.777344 242.011719 232.777344 242.128906 C 232.777344 242.246094 232.871094 242.339844 232.988281 242.339844 C 233.105469 242.339844 233.199219 242.246094 233.199219 242.128906 Z M 233.199219 242.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.640625 244.382812 C 233.640625 244.265625 233.546875 244.171875 233.429688 244.171875 C 233.3125 244.171875 233.21875 244.265625 233.21875 244.382812 C 233.21875 244.5 233.3125 244.59375 233.429688 244.59375 C 233.546875 244.59375 233.640625 244.5 233.640625 244.382812 Z M 233.640625 244.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.367188 245.542969 C 230.367188 245.425781 230.273438 245.332031 230.15625 245.332031 C 230.039062 245.332031 229.945312 245.425781 229.945312 245.542969 C 229.945312 245.660156 230.039062 245.753906 230.15625 245.753906 C 230.273438 245.753906 230.367188 245.660156 230.367188 245.542969 Z M 230.367188 245.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.773438 246.714844 C 230.773438 246.597656 230.679688 246.503906 230.5625 246.503906 C 230.445312 246.503906 230.351562 246.597656 230.351562 246.714844 C 230.351562 246.832031 230.445312 246.925781 230.5625 246.925781 C 230.679688 246.925781 230.773438 246.832031 230.773438 246.714844 Z M 230.773438 246.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.203125 243.582031 C 228.203125 243.464844 228.109375 243.371094 227.992188 243.371094 C 227.875 243.371094 227.78125 243.464844 227.78125 243.582031 C 227.78125 243.699219 227.875 243.792969 227.992188 243.792969 C 228.109375 243.792969 228.203125 243.699219 228.203125 243.582031 Z M 228.203125 243.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.394531 240.609375 C 228.394531 240.492188 228.300781 240.398438 228.183594 240.398438 C 228.066406 240.398438 227.972656 240.492188 227.972656 240.609375 C 227.972656 240.726562 228.066406 240.820312 228.183594 240.820312 C 228.300781 240.820312 228.394531 240.726562 228.394531 240.609375 Z M 228.394531 240.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.882812 236.765625 C 228.882812 236.648438 228.789062 236.554688 228.671875 236.554688 C 228.554688 236.554688 228.460938 236.648438 228.460938 236.765625 C 228.460938 236.882812 228.554688 236.976562 228.671875 236.976562 C 228.789062 236.976562 228.882812 236.882812 228.882812 236.765625 Z M 228.882812 236.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.75 235.0625 C 227.75 234.945312 227.65625 234.851562 227.539062 234.851562 C 227.421875 234.851562 227.328125 234.945312 227.328125 235.0625 C 227.328125 235.179688 227.421875 235.273438 227.539062 235.273438 C 227.65625 235.273438 227.75 235.179688 227.75 235.0625 Z M 227.75 235.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.769531 238.609375 C 225.769531 238.492188 225.675781 238.398438 225.558594 238.398438 C 225.441406 238.398438 225.347656 238.492188 225.347656 238.609375 C 225.347656 238.726562 225.441406 238.820312 225.558594 238.820312 C 225.675781 238.820312 225.769531 238.726562 225.769531 238.609375 Z M 225.769531 238.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.351562 239.328125 C 227.351562 239.210938 227.257812 239.117188 227.140625 239.117188 C 227.023438 239.117188 226.929688 239.210938 226.929688 239.328125 C 226.929688 239.445312 227.023438 239.539062 227.140625 239.539062 C 227.257812 239.539062 227.351562 239.445312 227.351562 239.328125 Z M 227.351562 239.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.390625 241.996094 C 229.390625 241.878906 229.296875 241.785156 229.179688 241.785156 C 229.0625 241.785156 228.96875 241.878906 228.96875 241.996094 C 228.96875 242.113281 229.0625 242.207031 229.179688 242.207031 C 229.296875 242.207031 229.390625 242.113281 229.390625 241.996094 Z M 229.390625 241.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.96875 241.535156 C 227.96875 241.417969 227.875 241.324219 227.757812 241.324219 C 227.640625 241.324219 227.546875 241.417969 227.546875 241.535156 C 227.546875 241.652344 227.640625 241.746094 227.757812 241.746094 C 227.875 241.746094 227.96875 241.652344 227.96875 241.535156 Z M 227.96875 241.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.273438 244.253906 C 230.273438 244.136719 230.179688 244.042969 230.0625 244.042969 C 229.945312 244.042969 229.851562 244.136719 229.851562 244.253906 C 229.851562 244.371094 229.945312 244.464844 230.0625 244.464844 C 230.179688 244.464844 230.273438 244.371094 230.273438 244.253906 Z M 230.273438 244.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.730469 242.578125 C 228.730469 242.460938 228.636719 242.367188 228.519531 242.367188 C 228.402344 242.367188 228.308594 242.460938 228.308594 242.578125 C 228.308594 242.695312 228.402344 242.789062 228.519531 242.789062 C 228.636719 242.789062 228.730469 242.695312 228.730469 242.578125 Z M 228.730469 242.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.175781 245.203125 C 232.175781 245.085938 232.082031 244.992188 231.964844 244.992188 C 231.847656 244.992188 231.753906 245.085938 231.753906 245.203125 C 231.753906 245.320312 231.847656 245.414062 231.964844 245.414062 C 232.082031 245.414062 232.175781 245.320312 232.175781 245.203125 Z M 232.175781 245.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.617188 246.578125 C 233.617188 246.460938 233.523438 246.367188 233.40625 246.367188 C 233.289062 246.367188 233.195312 246.460938 233.195312 246.578125 C 233.195312 246.695312 233.289062 246.789062 233.40625 246.789062 C 233.523438 246.789062 233.617188 246.695312 233.617188 246.578125 Z M 233.617188 246.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.949219 245.648438 C 234.949219 245.53125 234.855469 245.4375 234.738281 245.4375 C 234.621094 245.4375 234.527344 245.53125 234.527344 245.648438 C 234.527344 245.765625 234.621094 245.859375 234.738281 245.859375 C 234.855469 245.859375 234.949219 245.765625 234.949219 245.648438 Z M 234.949219 245.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.273438 246.253906 C 234.273438 246.136719 234.179688 246.042969 234.0625 246.042969 C 233.945312 246.042969 233.851562 246.136719 233.851562 246.253906 C 233.851562 246.371094 233.945312 246.464844 234.0625 246.464844 C 234.179688 246.464844 234.273438 246.371094 234.273438 246.253906 Z M 234.273438 246.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.890625 246.730469 C 231.890625 246.613281 231.796875 246.519531 231.679688 246.519531 C 231.5625 246.519531 231.46875 246.613281 231.46875 246.730469 C 231.46875 246.847656 231.5625 246.941406 231.679688 246.941406 C 231.796875 246.941406 231.890625 246.847656 231.890625 246.730469 Z M 231.890625 246.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.757812 246.457031 C 231.757812 246.339844 231.664062 246.246094 231.546875 246.246094 C 231.429688 246.246094 231.335938 246.339844 231.335938 246.457031 C 231.335938 246.574219 231.429688 246.667969 231.546875 246.667969 C 231.664062 246.667969 231.757812 246.574219 231.757812 246.457031 Z M 231.757812 246.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.699219 249.460938 C 228.699219 249.34375 228.605469 249.25 228.488281 249.25 C 228.371094 249.25 228.277344 249.34375 228.277344 249.460938 C 228.277344 249.578125 228.371094 249.671875 228.488281 249.671875 C 228.605469 249.671875 228.699219 249.578125 228.699219 249.460938 Z M 228.699219 249.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.140625 246.710938 C 229.140625 246.59375 229.046875 246.5 228.929688 246.5 C 228.8125 246.5 228.71875 246.59375 228.71875 246.710938 C 228.71875 246.828125 228.8125 246.921875 228.929688 246.921875 C 229.046875 246.921875 229.140625 246.828125 229.140625 246.710938 Z M 229.140625 246.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.453125 247.664062 C 234.453125 247.546875 234.359375 247.453125 234.242188 247.453125 C 234.125 247.453125 234.03125 247.546875 234.03125 247.664062 C 234.03125 247.78125 234.125 247.875 234.242188 247.875 C 234.359375 247.875 234.453125 247.78125 234.453125 247.664062 Z M 234.453125 247.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.761719 250.523438 C 234.761719 250.40625 234.667969 250.3125 234.550781 250.3125 C 234.433594 250.3125 234.339844 250.40625 234.339844 250.523438 C 234.339844 250.640625 234.433594 250.734375 234.550781 250.734375 C 234.667969 250.734375 234.761719 250.640625 234.761719 250.523438 Z M 234.761719 250.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.554688 249.949219 C 235.554688 249.832031 235.460938 249.738281 235.34375 249.738281 C 235.226562 249.738281 235.132812 249.832031 235.132812 249.949219 C 235.132812 250.066406 235.226562 250.160156 235.34375 250.160156 C 235.460938 250.160156 235.554688 250.066406 235.554688 249.949219 Z M 235.554688 249.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.007812 253.589844 C 235.007812 253.472656 234.914062 253.378906 234.796875 253.378906 C 234.679688 253.378906 234.585938 253.472656 234.585938 253.589844 C 234.585938 253.707031 234.679688 253.800781 234.796875 253.800781 C 234.914062 253.800781 235.007812 253.707031 235.007812 253.589844 Z M 235.007812 253.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.691406 248.488281 C 235.691406 248.371094 235.597656 248.277344 235.480469 248.277344 C 235.363281 248.277344 235.269531 248.371094 235.269531 248.488281 C 235.269531 248.605469 235.363281 248.699219 235.480469 248.699219 C 235.597656 248.699219 235.691406 248.605469 235.691406 248.488281 Z M 235.691406 248.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.28125 244.582031 C 236.28125 244.464844 236.1875 244.371094 236.070312 244.371094 C 235.953125 244.371094 235.859375 244.464844 235.859375 244.582031 C 235.859375 244.699219 235.953125 244.792969 236.070312 244.792969 C 236.1875 244.792969 236.28125 244.699219 236.28125 244.582031 Z M 236.28125 244.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.796875 243.832031 C 232.796875 243.714844 232.703125 243.621094 232.585938 243.621094 C 232.46875 243.621094 232.375 243.714844 232.375 243.832031 C 232.375 243.949219 232.46875 244.042969 232.585938 244.042969 C 232.703125 244.042969 232.796875 243.949219 232.796875 243.832031 Z M 232.796875 243.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.785156 246.652344 C 233.785156 246.535156 233.691406 246.441406 233.574219 246.441406 C 233.457031 246.441406 233.363281 246.535156 233.363281 246.652344 C 233.363281 246.769531 233.457031 246.863281 233.574219 246.863281 C 233.691406 246.863281 233.785156 246.769531 233.785156 246.652344 Z M 233.785156 246.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.78125 247.457031 C 231.78125 247.339844 231.6875 247.246094 231.570312 247.246094 C 231.453125 247.246094 231.359375 247.339844 231.359375 247.457031 C 231.359375 247.574219 231.453125 247.667969 231.570312 247.667969 C 231.6875 247.667969 231.78125 247.574219 231.78125 247.457031 Z M 231.78125 247.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.851562 248.65625 C 229.851562 248.539062 229.757812 248.445312 229.640625 248.445312 C 229.523438 248.445312 229.429688 248.539062 229.429688 248.65625 C 229.429688 248.773438 229.523438 248.867188 229.640625 248.867188 C 229.757812 248.867188 229.851562 248.773438 229.851562 248.65625 Z M 229.851562 248.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.410156 248.277344 C 227.410156 248.160156 227.316406 248.066406 227.199219 248.066406 C 227.082031 248.066406 226.988281 248.160156 226.988281 248.277344 C 226.988281 248.394531 227.082031 248.488281 227.199219 248.488281 C 227.316406 248.488281 227.410156 248.394531 227.410156 248.277344 Z M 227.410156 248.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.542969 251.710938 C 228.542969 251.59375 228.449219 251.5 228.332031 251.5 C 228.214844 251.5 228.121094 251.59375 228.121094 251.710938 C 228.121094 251.828125 228.214844 251.921875 228.332031 251.921875 C 228.449219 251.921875 228.542969 251.828125 228.542969 251.710938 Z M 228.542969 251.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.898438 250.285156 C 223.898438 250.167969 223.804688 250.074219 223.6875 250.074219 C 223.570312 250.074219 223.476562 250.167969 223.476562 250.285156 C 223.476562 250.402344 223.570312 250.496094 223.6875 250.496094 C 223.804688 250.496094 223.898438 250.402344 223.898438 250.285156 Z M 223.898438 250.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 222.355469 250.597656 C 222.355469 250.480469 222.261719 250.386719 222.144531 250.386719 C 222.027344 250.386719 221.933594 250.480469 221.933594 250.597656 C 221.933594 250.714844 222.027344 250.808594 222.144531 250.808594 C 222.261719 250.808594 222.355469 250.714844 222.355469 250.597656 Z M 222.355469 250.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.917969 249.398438 C 223.917969 249.28125 223.824219 249.1875 223.707031 249.1875 C 223.589844 249.1875 223.496094 249.28125 223.496094 249.398438 C 223.496094 249.515625 223.589844 249.609375 223.707031 249.609375 C 223.824219 249.609375 223.917969 249.515625 223.917969 249.398438 Z M 223.917969 249.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 222.148438 247.0625 C 222.148438 246.945312 222.054688 246.851562 221.9375 246.851562 C 221.820312 246.851562 221.726562 246.945312 221.726562 247.0625 C 221.726562 247.179688 221.820312 247.273438 221.9375 247.273438 C 222.054688 247.273438 222.148438 247.179688 222.148438 247.0625 Z M 222.148438 247.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.757812 246.371094 C 224.757812 246.253906 224.664062 246.160156 224.546875 246.160156 C 224.429688 246.160156 224.335938 246.253906 224.335938 246.371094 C 224.335938 246.488281 224.429688 246.582031 224.546875 246.582031 C 224.664062 246.582031 224.757812 246.488281 224.757812 246.371094 Z M 224.757812 246.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.753906 249.667969 C 224.753906 249.550781 224.660156 249.457031 224.542969 249.457031 C 224.425781 249.457031 224.332031 249.550781 224.332031 249.667969 C 224.332031 249.785156 224.425781 249.878906 224.542969 249.878906 C 224.660156 249.878906 224.753906 249.785156 224.753906 249.667969 Z M 224.753906 249.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.449219 248.449219 C 223.449219 248.332031 223.355469 248.238281 223.238281 248.238281 C 223.121094 248.238281 223.027344 248.332031 223.027344 248.449219 C 223.027344 248.566406 223.121094 248.660156 223.238281 248.660156 C 223.355469 248.660156 223.449219 248.566406 223.449219 248.449219 Z M 223.449219 248.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 222.53125 248.277344 C 222.53125 248.160156 222.4375 248.066406 222.320312 248.066406 C 222.203125 248.066406 222.109375 248.160156 222.109375 248.277344 C 222.109375 248.394531 222.203125 248.488281 222.320312 248.488281 C 222.4375 248.488281 222.53125 248.394531 222.53125 248.277344 Z M 222.53125 248.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 220.0625 249.8125 C 220.0625 249.695312 219.96875 249.601562 219.851562 249.601562 C 219.734375 249.601562 219.640625 249.695312 219.640625 249.8125 C 219.640625 249.929688 219.734375 250.023438 219.851562 250.023438 C 219.96875 250.023438 220.0625 249.929688 220.0625 249.8125 Z M 220.0625 249.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.5625 245.886719 C 219.5625 245.769531 219.46875 245.675781 219.351562 245.675781 C 219.234375 245.675781 219.140625 245.769531 219.140625 245.886719 C 219.140625 246.003906 219.234375 246.097656 219.351562 246.097656 C 219.46875 246.097656 219.5625 246.003906 219.5625 245.886719 Z M 219.5625 245.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.265625 243.253906 C 221.265625 243.136719 221.171875 243.042969 221.054688 243.042969 C 220.9375 243.042969 220.84375 243.136719 220.84375 243.253906 C 220.84375 243.371094 220.9375 243.464844 221.054688 243.464844 C 221.171875 243.464844 221.265625 243.371094 221.265625 243.253906 Z M 221.265625 243.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.011719 246.476562 C 221.011719 246.359375 220.917969 246.265625 220.800781 246.265625 C 220.683594 246.265625 220.589844 246.359375 220.589844 246.476562 C 220.589844 246.59375 220.683594 246.6875 220.800781 246.6875 C 220.917969 246.6875 221.011719 246.59375 221.011719 246.476562 Z M 221.011719 246.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.109375 246.792969 C 224.109375 246.675781 224.015625 246.582031 223.898438 246.582031 C 223.78125 246.582031 223.6875 246.675781 223.6875 246.792969 C 223.6875 246.910156 223.78125 247.003906 223.898438 247.003906 C 224.015625 247.003906 224.109375 246.910156 224.109375 246.792969 Z M 224.109375 246.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 222.960938 244.648438 C 222.960938 244.53125 222.867188 244.4375 222.75 244.4375 C 222.632812 244.4375 222.539062 244.53125 222.539062 244.648438 C 222.539062 244.765625 222.632812 244.859375 222.75 244.859375 C 222.867188 244.859375 222.960938 244.765625 222.960938 244.648438 Z M 222.960938 244.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.246094 244.933594 C 225.246094 244.816406 225.152344 244.722656 225.035156 244.722656 C 224.917969 244.722656 224.824219 244.816406 224.824219 244.933594 C 224.824219 245.050781 224.917969 245.144531 225.035156 245.144531 C 225.152344 245.144531 225.246094 245.050781 225.246094 244.933594 Z M 225.246094 244.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 222.613281 245.226562 C 222.613281 245.109375 222.519531 245.015625 222.402344 245.015625 C 222.285156 245.015625 222.191406 245.109375 222.191406 245.226562 C 222.191406 245.34375 222.285156 245.4375 222.402344 245.4375 C 222.519531 245.4375 222.613281 245.34375 222.613281 245.226562 Z M 222.613281 245.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 222.957031 250.480469 C 222.957031 250.363281 222.863281 250.269531 222.746094 250.269531 C 222.628906 250.269531 222.535156 250.363281 222.535156 250.480469 C 222.535156 250.597656 222.628906 250.691406 222.746094 250.691406 C 222.863281 250.691406 222.957031 250.597656 222.957031 250.480469 Z M 222.957031 250.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.65625 250.273438 C 227.65625 250.15625 227.5625 250.0625 227.445312 250.0625 C 227.328125 250.0625 227.234375 250.15625 227.234375 250.273438 C 227.234375 250.390625 227.328125 250.484375 227.445312 250.484375 C 227.5625 250.484375 227.65625 250.390625 227.65625 250.273438 Z M 227.65625 250.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.558594 256.089844 C 228.558594 255.972656 228.464844 255.878906 228.347656 255.878906 C 228.230469 255.878906 228.136719 255.972656 228.136719 256.089844 C 228.136719 256.207031 228.230469 256.300781 228.347656 256.300781 C 228.464844 256.300781 228.558594 256.207031 228.558594 256.089844 Z M 228.558594 256.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.796875 257.324219 C 229.796875 257.207031 229.703125 257.113281 229.585938 257.113281 C 229.46875 257.113281 229.375 257.207031 229.375 257.324219 C 229.375 257.441406 229.46875 257.535156 229.585938 257.535156 C 229.703125 257.535156 229.796875 257.441406 229.796875 257.324219 Z M 229.796875 257.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.207031 254.234375 C 230.207031 254.117188 230.113281 254.023438 229.996094 254.023438 C 229.878906 254.023438 229.785156 254.117188 229.785156 254.234375 C 229.785156 254.351562 229.878906 254.445312 229.996094 254.445312 C 230.113281 254.445312 230.207031 254.351562 230.207031 254.234375 Z M 230.207031 254.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.558594 251.226562 C 229.558594 251.109375 229.464844 251.015625 229.347656 251.015625 C 229.230469 251.015625 229.136719 251.109375 229.136719 251.226562 C 229.136719 251.34375 229.230469 251.4375 229.347656 251.4375 C 229.464844 251.4375 229.558594 251.34375 229.558594 251.226562 Z M 229.558594 251.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.710938 251.585938 C 226.710938 251.46875 226.617188 251.375 226.5 251.375 C 226.382812 251.375 226.289062 251.46875 226.289062 251.585938 C 226.289062 251.703125 226.382812 251.796875 226.5 251.796875 C 226.617188 251.796875 226.710938 251.703125 226.710938 251.585938 Z M 226.710938 251.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.882812 250.753906 C 226.882812 250.636719 226.789062 250.542969 226.671875 250.542969 C 226.554688 250.542969 226.460938 250.636719 226.460938 250.753906 C 226.460938 250.871094 226.554688 250.964844 226.671875 250.964844 C 226.789062 250.964844 226.882812 250.871094 226.882812 250.753906 Z M 226.882812 250.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.640625 250.84375 C 227.640625 250.726562 227.546875 250.632812 227.429688 250.632812 C 227.3125 250.632812 227.21875 250.726562 227.21875 250.84375 C 227.21875 250.960938 227.3125 251.054688 227.429688 251.054688 C 227.546875 251.054688 227.640625 250.960938 227.640625 250.84375 Z M 227.640625 250.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.710938 253.542969 C 226.710938 253.425781 226.617188 253.332031 226.5 253.332031 C 226.382812 253.332031 226.289062 253.425781 226.289062 253.542969 C 226.289062 253.660156 226.382812 253.753906 226.5 253.753906 C 226.617188 253.753906 226.710938 253.660156 226.710938 253.542969 Z M 226.710938 253.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.160156 251.28125 C 225.160156 251.164062 225.066406 251.070312 224.949219 251.070312 C 224.832031 251.070312 224.738281 251.164062 224.738281 251.28125 C 224.738281 251.398438 224.832031 251.492188 224.949219 251.492188 C 225.066406 251.492188 225.160156 251.398438 225.160156 251.28125 Z M 225.160156 251.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.804688 252.789062 C 226.804688 252.671875 226.710938 252.578125 226.59375 252.578125 C 226.476562 252.578125 226.382812 252.671875 226.382812 252.789062 C 226.382812 252.90625 226.476562 253 226.59375 253 C 226.710938 253 226.804688 252.90625 226.804688 252.789062 Z M 226.804688 252.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.914062 255.925781 C 227.914062 255.808594 227.820312 255.714844 227.703125 255.714844 C 227.585938 255.714844 227.492188 255.808594 227.492188 255.925781 C 227.492188 256.042969 227.585938 256.136719 227.703125 256.136719 C 227.820312 256.136719 227.914062 256.042969 227.914062 255.925781 Z M 227.914062 255.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.035156 253.015625 C 225.035156 252.898438 224.941406 252.804688 224.824219 252.804688 C 224.707031 252.804688 224.613281 252.898438 224.613281 253.015625 C 224.613281 253.132812 224.707031 253.226562 224.824219 253.226562 C 224.941406 253.226562 225.035156 253.132812 225.035156 253.015625 Z M 225.035156 253.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.015625 254.855469 C 227.015625 254.738281 226.921875 254.644531 226.804688 254.644531 C 226.6875 254.644531 226.59375 254.738281 226.59375 254.855469 C 226.59375 254.972656 226.6875 255.066406 226.804688 255.066406 C 226.921875 255.066406 227.015625 254.972656 227.015625 254.855469 Z M 227.015625 254.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.832031 255.089844 C 227.832031 254.972656 227.738281 254.878906 227.621094 254.878906 C 227.503906 254.878906 227.410156 254.972656 227.410156 255.089844 C 227.410156 255.207031 227.503906 255.300781 227.621094 255.300781 C 227.738281 255.300781 227.832031 255.207031 227.832031 255.089844 Z M 227.832031 255.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.929688 255.398438 C 224.929688 255.28125 224.835938 255.1875 224.71875 255.1875 C 224.601562 255.1875 224.507812 255.28125 224.507812 255.398438 C 224.507812 255.515625 224.601562 255.609375 224.71875 255.609375 C 224.835938 255.609375 224.929688 255.515625 224.929688 255.398438 Z M 224.929688 255.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.878906 253.808594 C 223.878906 253.691406 223.785156 253.597656 223.667969 253.597656 C 223.550781 253.597656 223.457031 253.691406 223.457031 253.808594 C 223.457031 253.925781 223.550781 254.019531 223.667969 254.019531 C 223.785156 254.019531 223.878906 253.925781 223.878906 253.808594 Z M 223.878906 253.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.148438 256.519531 C 224.148438 256.402344 224.054688 256.308594 223.9375 256.308594 C 223.820312 256.308594 223.726562 256.402344 223.726562 256.519531 C 223.726562 256.636719 223.820312 256.730469 223.9375 256.730469 C 224.054688 256.730469 224.148438 256.636719 224.148438 256.519531 Z M 224.148438 256.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.632812 256.746094 C 221.632812 256.628906 221.539062 256.535156 221.421875 256.535156 C 221.304688 256.535156 221.210938 256.628906 221.210938 256.746094 C 221.210938 256.863281 221.304688 256.957031 221.421875 256.957031 C 221.539062 256.957031 221.632812 256.863281 221.632812 256.746094 Z M 221.632812 256.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 220.902344 256.253906 C 220.902344 256.136719 220.808594 256.042969 220.691406 256.042969 C 220.574219 256.042969 220.480469 256.136719 220.480469 256.253906 C 220.480469 256.371094 220.574219 256.464844 220.691406 256.464844 C 220.808594 256.464844 220.902344 256.371094 220.902344 256.253906 Z M 220.902344 256.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.984375 259.753906 C 217.984375 259.636719 217.890625 259.542969 217.773438 259.542969 C 217.65625 259.542969 217.5625 259.636719 217.5625 259.753906 C 217.5625 259.871094 217.65625 259.964844 217.773438 259.964844 C 217.890625 259.964844 217.984375 259.871094 217.984375 259.753906 Z M 217.984375 259.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.105469 256.984375 C 218.105469 256.867188 218.011719 256.773438 217.894531 256.773438 C 217.777344 256.773438 217.683594 256.867188 217.683594 256.984375 C 217.683594 257.101562 217.777344 257.195312 217.894531 257.195312 C 218.011719 257.195312 218.105469 257.101562 218.105469 256.984375 Z M 218.105469 256.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.488281 256.695312 C 215.488281 256.578125 215.394531 256.484375 215.277344 256.484375 C 215.160156 256.484375 215.066406 256.578125 215.066406 256.695312 C 215.066406 256.8125 215.160156 256.90625 215.277344 256.90625 C 215.394531 256.90625 215.488281 256.8125 215.488281 256.695312 Z M 215.488281 256.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.605469 257.835938 C 214.605469 257.71875 214.511719 257.625 214.394531 257.625 C 214.277344 257.625 214.183594 257.71875 214.183594 257.835938 C 214.183594 257.953125 214.277344 258.046875 214.394531 258.046875 C 214.511719 258.046875 214.605469 257.953125 214.605469 257.835938 Z M 214.605469 257.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.390625 259.03125 C 217.390625 258.914062 217.296875 258.820312 217.179688 258.820312 C 217.0625 258.820312 216.96875 258.914062 216.96875 259.03125 C 216.96875 259.148438 217.0625 259.242188 217.179688 259.242188 C 217.296875 259.242188 217.390625 259.148438 217.390625 259.03125 Z M 217.390625 259.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.4375 258.882812 C 216.4375 258.765625 216.34375 258.671875 216.226562 258.671875 C 216.109375 258.671875 216.015625 258.765625 216.015625 258.882812 C 216.015625 259 216.109375 259.09375 216.226562 259.09375 C 216.34375 259.09375 216.4375 259 216.4375 258.882812 Z M 216.4375 258.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.765625 258.433594 C 214.765625 258.316406 214.671875 258.222656 214.554688 258.222656 C 214.4375 258.222656 214.34375 258.316406 214.34375 258.433594 C 214.34375 258.550781 214.4375 258.644531 214.554688 258.644531 C 214.671875 258.644531 214.765625 258.550781 214.765625 258.433594 Z M 214.765625 258.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.542969 258.296875 C 215.542969 258.179688 215.449219 258.085938 215.332031 258.085938 C 215.214844 258.085938 215.121094 258.179688 215.121094 258.296875 C 215.121094 258.414062 215.214844 258.507812 215.332031 258.507812 C 215.449219 258.507812 215.542969 258.414062 215.542969 258.296875 Z M 215.542969 258.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.699219 256.3125 C 213.699219 256.195312 213.605469 256.101562 213.488281 256.101562 C 213.371094 256.101562 213.277344 256.195312 213.277344 256.3125 C 213.277344 256.429688 213.371094 256.523438 213.488281 256.523438 C 213.605469 256.523438 213.699219 256.429688 213.699219 256.3125 Z M 213.699219 256.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.253906 258.246094 C 216.253906 258.128906 216.160156 258.035156 216.042969 258.035156 C 215.925781 258.035156 215.832031 258.128906 215.832031 258.246094 C 215.832031 258.363281 215.925781 258.457031 216.042969 258.457031 C 216.160156 258.457031 216.253906 258.363281 216.253906 258.246094 Z M 216.253906 258.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.011719 262.074219 C 217.011719 261.957031 216.917969 261.863281 216.800781 261.863281 C 216.683594 261.863281 216.589844 261.957031 216.589844 262.074219 C 216.589844 262.191406 216.683594 262.285156 216.800781 262.285156 C 216.917969 262.285156 217.011719 262.191406 217.011719 262.074219 Z M 217.011719 262.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.277344 258.804688 C 216.277344 258.6875 216.183594 258.59375 216.066406 258.59375 C 215.949219 258.59375 215.855469 258.6875 215.855469 258.804688 C 215.855469 258.921875 215.949219 259.015625 216.066406 259.015625 C 216.183594 259.015625 216.277344 258.921875 216.277344 258.804688 Z M 216.277344 258.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.707031 260.441406 C 212.707031 260.324219 212.613281 260.230469 212.496094 260.230469 C 212.378906 260.230469 212.285156 260.324219 212.285156 260.441406 C 212.285156 260.558594 212.378906 260.652344 212.496094 260.652344 C 212.613281 260.652344 212.707031 260.558594 212.707031 260.441406 Z M 212.707031 260.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.734375 262.148438 C 214.734375 262.03125 214.640625 261.9375 214.523438 261.9375 C 214.40625 261.9375 214.3125 262.03125 214.3125 262.148438 C 214.3125 262.265625 214.40625 262.359375 214.523438 262.359375 C 214.640625 262.359375 214.734375 262.265625 214.734375 262.148438 Z M 214.734375 262.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.527344 257.914062 C 214.527344 257.796875 214.433594 257.703125 214.316406 257.703125 C 214.199219 257.703125 214.105469 257.796875 214.105469 257.914062 C 214.105469 258.03125 214.199219 258.125 214.316406 258.125 C 214.433594 258.125 214.527344 258.03125 214.527344 257.914062 Z M 214.527344 257.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.035156 261.285156 C 217.035156 261.167969 216.941406 261.074219 216.824219 261.074219 C 216.707031 261.074219 216.613281 261.167969 216.613281 261.285156 C 216.613281 261.402344 216.707031 261.496094 216.824219 261.496094 C 216.941406 261.496094 217.035156 261.402344 217.035156 261.285156 Z M 217.035156 261.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.902344 262.167969 C 215.902344 262.050781 215.808594 261.957031 215.691406 261.957031 C 215.574219 261.957031 215.480469 262.050781 215.480469 262.167969 C 215.480469 262.285156 215.574219 262.378906 215.691406 262.378906 C 215.808594 262.378906 215.902344 262.285156 215.902344 262.167969 Z M 215.902344 262.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.066406 263.964844 C 216.066406 263.847656 215.972656 263.753906 215.855469 263.753906 C 215.738281 263.753906 215.644531 263.847656 215.644531 263.964844 C 215.644531 264.082031 215.738281 264.175781 215.855469 264.175781 C 215.972656 264.175781 216.066406 264.082031 216.066406 263.964844 Z M 216.066406 263.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.960938 260.71875 C 216.960938 260.601562 216.867188 260.507812 216.75 260.507812 C 216.632812 260.507812 216.539062 260.601562 216.539062 260.71875 C 216.539062 260.835938 216.632812 260.929688 216.75 260.929688 C 216.867188 260.929688 216.960938 260.835938 216.960938 260.71875 Z M 216.960938 260.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.65625 262.210938 C 217.65625 262.09375 217.5625 262 217.445312 262 C 217.328125 262 217.234375 262.09375 217.234375 262.210938 C 217.234375 262.328125 217.328125 262.421875 217.445312 262.421875 C 217.5625 262.421875 217.65625 262.328125 217.65625 262.210938 Z M 217.65625 262.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.21875 259.402344 C 219.21875 259.285156 219.125 259.191406 219.007812 259.191406 C 218.890625 259.191406 218.796875 259.285156 218.796875 259.402344 C 218.796875 259.519531 218.890625 259.613281 219.007812 259.613281 C 219.125 259.613281 219.21875 259.519531 219.21875 259.402344 Z M 219.21875 259.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.511719 258.488281 C 218.511719 258.371094 218.417969 258.277344 218.300781 258.277344 C 218.183594 258.277344 218.089844 258.371094 218.089844 258.488281 C 218.089844 258.605469 218.183594 258.699219 218.300781 258.699219 C 218.417969 258.699219 218.511719 258.605469 218.511719 258.488281 Z M 218.511719 258.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.914062 255.5 C 216.914062 255.382812 216.820312 255.289062 216.703125 255.289062 C 216.585938 255.289062 216.492188 255.382812 216.492188 255.5 C 216.492188 255.617188 216.585938 255.710938 216.703125 255.710938 C 216.820312 255.710938 216.914062 255.617188 216.914062 255.5 Z M 216.914062 255.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.183594 253.382812 C 216.183594 253.265625 216.089844 253.171875 215.972656 253.171875 C 215.855469 253.171875 215.761719 253.265625 215.761719 253.382812 C 215.761719 253.5 215.855469 253.59375 215.972656 253.59375 C 216.089844 253.59375 216.183594 253.5 216.183594 253.382812 Z M 216.183594 253.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.683594 257.753906 C 218.683594 257.636719 218.589844 257.542969 218.472656 257.542969 C 218.355469 257.542969 218.261719 257.636719 218.261719 257.753906 C 218.261719 257.871094 218.355469 257.964844 218.472656 257.964844 C 218.589844 257.964844 218.683594 257.871094 218.683594 257.753906 Z M 218.683594 257.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.964844 262.023438 C 216.964844 261.90625 216.871094 261.8125 216.753906 261.8125 C 216.636719 261.8125 216.542969 261.90625 216.542969 262.023438 C 216.542969 262.140625 216.636719 262.234375 216.753906 262.234375 C 216.871094 262.234375 216.964844 262.140625 216.964844 262.023438 Z M 216.964844 262.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.855469 258.703125 C 217.855469 258.585938 217.761719 258.492188 217.644531 258.492188 C 217.527344 258.492188 217.433594 258.585938 217.433594 258.703125 C 217.433594 258.820312 217.527344 258.914062 217.644531 258.914062 C 217.761719 258.914062 217.855469 258.820312 217.855469 258.703125 Z M 217.855469 258.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 220.257812 258.269531 C 220.257812 258.152344 220.164062 258.058594 220.046875 258.058594 C 219.929688 258.058594 219.835938 258.152344 219.835938 258.269531 C 219.835938 258.386719 219.929688 258.480469 220.046875 258.480469 C 220.164062 258.480469 220.257812 258.386719 220.257812 258.269531 Z M 220.257812 258.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.847656 256.679688 C 219.847656 256.5625 219.753906 256.46875 219.636719 256.46875 C 219.519531 256.46875 219.425781 256.5625 219.425781 256.679688 C 219.425781 256.796875 219.519531 256.890625 219.636719 256.890625 C 219.753906 256.890625 219.847656 256.796875 219.847656 256.679688 Z M 219.847656 256.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.800781 256.730469 C 219.800781 256.613281 219.707031 256.519531 219.589844 256.519531 C 219.472656 256.519531 219.378906 256.613281 219.378906 256.730469 C 219.378906 256.847656 219.472656 256.941406 219.589844 256.941406 C 219.707031 256.941406 219.800781 256.847656 219.800781 256.730469 Z M 219.800781 256.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.171875 257.210938 C 219.171875 257.09375 219.078125 257 218.960938 257 C 218.84375 257 218.75 257.09375 218.75 257.210938 C 218.75 257.328125 218.84375 257.421875 218.960938 257.421875 C 219.078125 257.421875 219.171875 257.328125 219.171875 257.210938 Z M 219.171875 257.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.183594 257.503906 C 217.183594 257.386719 217.089844 257.292969 216.972656 257.292969 C 216.855469 257.292969 216.761719 257.386719 216.761719 257.503906 C 216.761719 257.621094 216.855469 257.714844 216.972656 257.714844 C 217.089844 257.714844 217.183594 257.621094 217.183594 257.503906 Z M 217.183594 257.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.210938 255.082031 C 221.210938 254.964844 221.117188 254.871094 221 254.871094 C 220.882812 254.871094 220.789062 254.964844 220.789062 255.082031 C 220.789062 255.199219 220.882812 255.292969 221 255.292969 C 221.117188 255.292969 221.210938 255.199219 221.210938 255.082031 Z M 221.210938 255.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 220.929688 255.535156 C 220.929688 255.417969 220.835938 255.324219 220.71875 255.324219 C 220.601562 255.324219 220.507812 255.417969 220.507812 255.535156 C 220.507812 255.652344 220.601562 255.746094 220.71875 255.746094 C 220.835938 255.746094 220.929688 255.652344 220.929688 255.535156 Z M 220.929688 255.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217 254.296875 C 217 254.179688 216.90625 254.085938 216.789062 254.085938 C 216.671875 254.085938 216.578125 254.179688 216.578125 254.296875 C 216.578125 254.414062 216.671875 254.507812 216.789062 254.507812 C 216.90625 254.507812 217 254.414062 217 254.296875 Z M 217 254.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.066406 255.917969 C 215.066406 255.800781 214.972656 255.707031 214.855469 255.707031 C 214.738281 255.707031 214.644531 255.800781 214.644531 255.917969 C 214.644531 256.035156 214.738281 256.128906 214.855469 256.128906 C 214.972656 256.128906 215.066406 256.035156 215.066406 255.917969 Z M 215.066406 255.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.683594 257.609375 C 212.683594 257.492188 212.589844 257.398438 212.472656 257.398438 C 212.355469 257.398438 212.261719 257.492188 212.261719 257.609375 C 212.261719 257.726562 212.355469 257.820312 212.472656 257.820312 C 212.589844 257.820312 212.683594 257.726562 212.683594 257.609375 Z M 212.683594 257.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.636719 260.191406 C 211.636719 260.074219 211.542969 259.980469 211.425781 259.980469 C 211.308594 259.980469 211.214844 260.074219 211.214844 260.191406 C 211.214844 260.308594 211.308594 260.402344 211.425781 260.402344 C 211.542969 260.402344 211.636719 260.308594 211.636719 260.191406 Z M 211.636719 260.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.871094 257.933594 C 207.871094 257.816406 207.777344 257.722656 207.660156 257.722656 C 207.542969 257.722656 207.449219 257.816406 207.449219 257.933594 C 207.449219 258.050781 207.542969 258.144531 207.660156 258.144531 C 207.777344 258.144531 207.871094 258.050781 207.871094 257.933594 Z M 207.871094 257.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.214844 256.234375 C 205.214844 256.117188 205.121094 256.023438 205.003906 256.023438 C 204.886719 256.023438 204.792969 256.117188 204.792969 256.234375 C 204.792969 256.351562 204.886719 256.445312 205.003906 256.445312 C 205.121094 256.445312 205.214844 256.351562 205.214844 256.234375 Z M 205.214844 256.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.734375 256.484375 C 206.734375 256.367188 206.640625 256.273438 206.523438 256.273438 C 206.40625 256.273438 206.3125 256.367188 206.3125 256.484375 C 206.3125 256.601562 206.40625 256.695312 206.523438 256.695312 C 206.640625 256.695312 206.734375 256.601562 206.734375 256.484375 Z M 206.734375 256.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.429688 255.617188 C 207.429688 255.5 207.335938 255.40625 207.21875 255.40625 C 207.101562 255.40625 207.007812 255.5 207.007812 255.617188 C 207.007812 255.734375 207.101562 255.828125 207.21875 255.828125 C 207.335938 255.828125 207.429688 255.734375 207.429688 255.617188 Z M 207.429688 255.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.960938 256.316406 C 204.960938 256.199219 204.867188 256.105469 204.75 256.105469 C 204.632812 256.105469 204.539062 256.199219 204.539062 256.316406 C 204.539062 256.433594 204.632812 256.527344 204.75 256.527344 C 204.867188 256.527344 204.960938 256.433594 204.960938 256.316406 Z M 204.960938 256.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.644531 253.859375 C 205.644531 253.742188 205.550781 253.648438 205.433594 253.648438 C 205.316406 253.648438 205.222656 253.742188 205.222656 253.859375 C 205.222656 253.976562 205.316406 254.070312 205.433594 254.070312 C 205.550781 254.070312 205.644531 253.976562 205.644531 253.859375 Z M 205.644531 253.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.128906 252.21875 C 208.128906 252.101562 208.035156 252.007812 207.917969 252.007812 C 207.800781 252.007812 207.707031 252.101562 207.707031 252.21875 C 207.707031 252.335938 207.800781 252.429688 207.917969 252.429688 C 208.035156 252.429688 208.128906 252.335938 208.128906 252.21875 Z M 208.128906 252.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.117188 251.191406 C 208.117188 251.074219 208.023438 250.980469 207.90625 250.980469 C 207.789062 250.980469 207.695312 251.074219 207.695312 251.191406 C 207.695312 251.308594 207.789062 251.402344 207.90625 251.402344 C 208.023438 251.402344 208.117188 251.308594 208.117188 251.191406 Z M 208.117188 251.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.171875 250.988281 C 207.171875 250.871094 207.078125 250.777344 206.960938 250.777344 C 206.84375 250.777344 206.75 250.871094 206.75 250.988281 C 206.75 251.105469 206.84375 251.199219 206.960938 251.199219 C 207.078125 251.199219 207.171875 251.105469 207.171875 250.988281 Z M 207.171875 250.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.6875 253.269531 C 207.6875 253.152344 207.59375 253.058594 207.476562 253.058594 C 207.359375 253.058594 207.265625 253.152344 207.265625 253.269531 C 207.265625 253.386719 207.359375 253.480469 207.476562 253.480469 C 207.59375 253.480469 207.6875 253.386719 207.6875 253.269531 Z M 207.6875 253.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.964844 252.226562 C 206.964844 252.109375 206.871094 252.015625 206.753906 252.015625 C 206.636719 252.015625 206.542969 252.109375 206.542969 252.226562 C 206.542969 252.34375 206.636719 252.4375 206.753906 252.4375 C 206.871094 252.4375 206.964844 252.34375 206.964844 252.226562 Z M 206.964844 252.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.371094 251.582031 C 207.371094 251.464844 207.277344 251.371094 207.160156 251.371094 C 207.042969 251.371094 206.949219 251.464844 206.949219 251.582031 C 206.949219 251.699219 207.042969 251.792969 207.160156 251.792969 C 207.277344 251.792969 207.371094 251.699219 207.371094 251.582031 Z M 207.371094 251.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.320312 252.203125 C 207.320312 252.085938 207.226562 251.992188 207.109375 251.992188 C 206.992188 251.992188 206.898438 252.085938 206.898438 252.203125 C 206.898438 252.320312 206.992188 252.414062 207.109375 252.414062 C 207.226562 252.414062 207.320312 252.320312 207.320312 252.203125 Z M 207.320312 252.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.78125 251.921875 C 207.78125 251.804688 207.6875 251.710938 207.570312 251.710938 C 207.453125 251.710938 207.359375 251.804688 207.359375 251.921875 C 207.359375 252.039062 207.453125 252.132812 207.570312 252.132812 C 207.6875 252.132812 207.78125 252.039062 207.78125 251.921875 Z M 207.78125 251.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.683594 254.753906 C 212.683594 254.636719 212.589844 254.542969 212.472656 254.542969 C 212.355469 254.542969 212.261719 254.636719 212.261719 254.753906 C 212.261719 254.871094 212.355469 254.964844 212.472656 254.964844 C 212.589844 254.964844 212.683594 254.871094 212.683594 254.753906 Z M 212.683594 254.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.898438 255.730469 C 209.898438 255.613281 209.804688 255.519531 209.6875 255.519531 C 209.570312 255.519531 209.476562 255.613281 209.476562 255.730469 C 209.476562 255.847656 209.570312 255.941406 209.6875 255.941406 C 209.804688 255.941406 209.898438 255.847656 209.898438 255.730469 Z M 209.898438 255.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.316406 257.773438 C 206.316406 257.65625 206.222656 257.5625 206.105469 257.5625 C 205.988281 257.5625 205.894531 257.65625 205.894531 257.773438 C 205.894531 257.890625 205.988281 257.984375 206.105469 257.984375 C 206.222656 257.984375 206.316406 257.890625 206.316406 257.773438 Z M 206.316406 257.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.816406 257.871094 C 203.816406 257.753906 203.722656 257.660156 203.605469 257.660156 C 203.488281 257.660156 203.394531 257.753906 203.394531 257.871094 C 203.394531 257.988281 203.488281 258.082031 203.605469 258.082031 C 203.722656 258.082031 203.816406 257.988281 203.816406 257.871094 Z M 203.816406 257.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.636719 258.507812 C 203.636719 258.390625 203.542969 258.296875 203.425781 258.296875 C 203.308594 258.296875 203.214844 258.390625 203.214844 258.507812 C 203.214844 258.625 203.308594 258.71875 203.425781 258.71875 C 203.542969 258.71875 203.636719 258.625 203.636719 258.507812 Z M 203.636719 258.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203 256.316406 C 203 256.199219 202.90625 256.105469 202.789062 256.105469 C 202.671875 256.105469 202.578125 256.199219 202.578125 256.316406 C 202.578125 256.433594 202.671875 256.527344 202.789062 256.527344 C 202.90625 256.527344 203 256.433594 203 256.316406 Z M 203 256.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.558594 255.765625 C 203.558594 255.648438 203.464844 255.554688 203.347656 255.554688 C 203.230469 255.554688 203.136719 255.648438 203.136719 255.765625 C 203.136719 255.882812 203.230469 255.976562 203.347656 255.976562 C 203.464844 255.976562 203.558594 255.882812 203.558594 255.765625 Z M 203.558594 255.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.601562 252.414062 C 208.601562 252.296875 208.507812 252.203125 208.390625 252.203125 C 208.273438 252.203125 208.179688 252.296875 208.179688 252.414062 C 208.179688 252.53125 208.273438 252.625 208.390625 252.625 C 208.507812 252.625 208.601562 252.53125 208.601562 252.414062 Z M 208.601562 252.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.523438 252.300781 C 209.523438 252.183594 209.429688 252.089844 209.3125 252.089844 C 209.195312 252.089844 209.101562 252.183594 209.101562 252.300781 C 209.101562 252.417969 209.195312 252.511719 209.3125 252.511719 C 209.429688 252.511719 209.523438 252.417969 209.523438 252.300781 Z M 209.523438 252.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.808594 250.535156 C 206.808594 250.417969 206.714844 250.324219 206.597656 250.324219 C 206.480469 250.324219 206.386719 250.417969 206.386719 250.535156 C 206.386719 250.652344 206.480469 250.746094 206.597656 250.746094 C 206.714844 250.746094 206.808594 250.652344 206.808594 250.535156 Z M 206.808594 250.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.785156 251.664062 C 204.785156 251.546875 204.691406 251.453125 204.574219 251.453125 C 204.457031 251.453125 204.363281 251.546875 204.363281 251.664062 C 204.363281 251.78125 204.457031 251.875 204.574219 251.875 C 204.691406 251.875 204.785156 251.78125 204.785156 251.664062 Z M 204.785156 251.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.945312 251.976562 C 204.945312 251.859375 204.851562 251.765625 204.734375 251.765625 C 204.617188 251.765625 204.523438 251.859375 204.523438 251.976562 C 204.523438 252.09375 204.617188 252.1875 204.734375 252.1875 C 204.851562 252.1875 204.945312 252.09375 204.945312 251.976562 Z M 204.945312 251.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.144531 254.144531 C 206.144531 254.027344 206.050781 253.933594 205.933594 253.933594 C 205.816406 253.933594 205.722656 254.027344 205.722656 254.144531 C 205.722656 254.261719 205.816406 254.355469 205.933594 254.355469 C 206.050781 254.355469 206.144531 254.261719 206.144531 254.144531 Z M 206.144531 254.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.527344 257.5625 C 206.527344 257.445312 206.433594 257.351562 206.316406 257.351562 C 206.199219 257.351562 206.105469 257.445312 206.105469 257.5625 C 206.105469 257.679688 206.199219 257.773438 206.316406 257.773438 C 206.433594 257.773438 206.527344 257.679688 206.527344 257.5625 Z M 206.527344 257.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.9375 258.761719 C 206.9375 258.644531 206.84375 258.550781 206.726562 258.550781 C 206.609375 258.550781 206.515625 258.644531 206.515625 258.761719 C 206.515625 258.878906 206.609375 258.972656 206.726562 258.972656 C 206.84375 258.972656 206.9375 258.878906 206.9375 258.761719 Z M 206.9375 258.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.414062 256.238281 C 207.414062 256.121094 207.320312 256.027344 207.203125 256.027344 C 207.085938 256.027344 206.992188 256.121094 206.992188 256.238281 C 206.992188 256.355469 207.085938 256.449219 207.203125 256.449219 C 207.320312 256.449219 207.414062 256.355469 207.414062 256.238281 Z M 207.414062 256.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.492188 255.125 C 203.492188 255.007812 203.398438 254.914062 203.28125 254.914062 C 203.164062 254.914062 203.070312 255.007812 203.070312 255.125 C 203.070312 255.242188 203.164062 255.335938 203.28125 255.335938 C 203.398438 255.335938 203.492188 255.242188 203.492188 255.125 Z M 203.492188 255.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.164062 256.953125 C 205.164062 256.835938 205.070312 256.742188 204.953125 256.742188 C 204.835938 256.742188 204.742188 256.835938 204.742188 256.953125 C 204.742188 257.070312 204.835938 257.164062 204.953125 257.164062 C 205.070312 257.164062 205.164062 257.070312 205.164062 256.953125 Z M 205.164062 256.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.8125 254.167969 C 202.8125 254.050781 202.71875 253.957031 202.601562 253.957031 C 202.484375 253.957031 202.390625 254.050781 202.390625 254.167969 C 202.390625 254.285156 202.484375 254.378906 202.601562 254.378906 C 202.71875 254.378906 202.8125 254.285156 202.8125 254.167969 Z M 202.8125 254.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.402344 253.949219 C 203.402344 253.832031 203.308594 253.738281 203.191406 253.738281 C 203.074219 253.738281 202.980469 253.832031 202.980469 253.949219 C 202.980469 254.066406 203.074219 254.160156 203.191406 254.160156 C 203.308594 254.160156 203.402344 254.066406 203.402344 253.949219 Z M 203.402344 253.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.550781 254.25 C 204.550781 254.132812 204.457031 254.039062 204.339844 254.039062 C 204.222656 254.039062 204.128906 254.132812 204.128906 254.25 C 204.128906 254.367188 204.222656 254.460938 204.339844 254.460938 C 204.457031 254.460938 204.550781 254.367188 204.550781 254.25 Z M 204.550781 254.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.324219 252.460938 C 207.324219 252.34375 207.230469 252.25 207.113281 252.25 C 206.996094 252.25 206.902344 252.34375 206.902344 252.460938 C 206.902344 252.578125 206.996094 252.671875 207.113281 252.671875 C 207.230469 252.671875 207.324219 252.578125 207.324219 252.460938 Z M 207.324219 252.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.464844 254.390625 C 205.464844 254.273438 205.371094 254.179688 205.253906 254.179688 C 205.136719 254.179688 205.042969 254.273438 205.042969 254.390625 C 205.042969 254.507812 205.136719 254.601562 205.253906 254.601562 C 205.371094 254.601562 205.464844 254.507812 205.464844 254.390625 Z M 205.464844 254.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.0625 253.398438 C 207.0625 253.28125 206.96875 253.1875 206.851562 253.1875 C 206.734375 253.1875 206.640625 253.28125 206.640625 253.398438 C 206.640625 253.515625 206.734375 253.609375 206.851562 253.609375 C 206.96875 253.609375 207.0625 253.515625 207.0625 253.398438 Z M 207.0625 253.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.402344 253.066406 C 209.402344 252.949219 209.308594 252.855469 209.191406 252.855469 C 209.074219 252.855469 208.980469 252.949219 208.980469 253.066406 C 208.980469 253.183594 209.074219 253.277344 209.191406 253.277344 C 209.308594 253.277344 209.402344 253.183594 209.402344 253.066406 Z M 209.402344 253.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.828125 251.636719 C 209.828125 251.519531 209.734375 251.425781 209.617188 251.425781 C 209.5 251.425781 209.40625 251.519531 209.40625 251.636719 C 209.40625 251.753906 209.5 251.847656 209.617188 251.847656 C 209.734375 251.847656 209.828125 251.753906 209.828125 251.636719 Z M 209.828125 251.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.5625 251.132812 C 209.5625 251.015625 209.46875 250.921875 209.351562 250.921875 C 209.234375 250.921875 209.140625 251.015625 209.140625 251.132812 C 209.140625 251.25 209.234375 251.34375 209.351562 251.34375 C 209.46875 251.34375 209.5625 251.25 209.5625 251.132812 Z M 209.5625 251.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.78125 251.964844 C 208.78125 251.847656 208.6875 251.753906 208.570312 251.753906 C 208.453125 251.753906 208.359375 251.847656 208.359375 251.964844 C 208.359375 252.082031 208.453125 252.175781 208.570312 252.175781 C 208.6875 252.175781 208.78125 252.082031 208.78125 251.964844 Z M 208.78125 251.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.457031 250.449219 C 208.457031 250.332031 208.363281 250.238281 208.246094 250.238281 C 208.128906 250.238281 208.035156 250.332031 208.035156 250.449219 C 208.035156 250.566406 208.128906 250.660156 208.246094 250.660156 C 208.363281 250.660156 208.457031 250.566406 208.457031 250.449219 Z M 208.457031 250.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.679688 246.902344 C 206.679688 246.785156 206.585938 246.691406 206.46875 246.691406 C 206.351562 246.691406 206.257812 246.785156 206.257812 246.902344 C 206.257812 247.019531 206.351562 247.113281 206.46875 247.113281 C 206.585938 247.113281 206.679688 247.019531 206.679688 246.902344 Z M 206.679688 246.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.253906 248.125 C 204.253906 248.007812 204.160156 247.914062 204.042969 247.914062 C 203.925781 247.914062 203.832031 248.007812 203.832031 248.125 C 203.832031 248.242188 203.925781 248.335938 204.042969 248.335938 C 204.160156 248.335938 204.253906 248.242188 204.253906 248.125 Z M 204.253906 248.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.53125 245.300781 C 204.53125 245.183594 204.4375 245.089844 204.320312 245.089844 C 204.203125 245.089844 204.109375 245.183594 204.109375 245.300781 C 204.109375 245.417969 204.203125 245.511719 204.320312 245.511719 C 204.4375 245.511719 204.53125 245.417969 204.53125 245.300781 Z M 204.53125 245.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.507812 245.613281 C 206.507812 245.496094 206.414062 245.402344 206.296875 245.402344 C 206.179688 245.402344 206.085938 245.496094 206.085938 245.613281 C 206.085938 245.730469 206.179688 245.824219 206.296875 245.824219 C 206.414062 245.824219 206.507812 245.730469 206.507812 245.613281 Z M 206.507812 245.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.25 246.019531 C 208.25 245.902344 208.15625 245.808594 208.039062 245.808594 C 207.921875 245.808594 207.828125 245.902344 207.828125 246.019531 C 207.828125 246.136719 207.921875 246.230469 208.039062 246.230469 C 208.15625 246.230469 208.25 246.136719 208.25 246.019531 Z M 208.25 246.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.445312 246.328125 C 209.445312 246.210938 209.351562 246.117188 209.234375 246.117188 C 209.117188 246.117188 209.023438 246.210938 209.023438 246.328125 C 209.023438 246.445312 209.117188 246.539062 209.234375 246.539062 C 209.351562 246.539062 209.445312 246.445312 209.445312 246.328125 Z M 209.445312 246.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.636719 242.867188 C 211.636719 242.75 211.542969 242.65625 211.425781 242.65625 C 211.308594 242.65625 211.214844 242.75 211.214844 242.867188 C 211.214844 242.984375 211.308594 243.078125 211.425781 243.078125 C 211.542969 243.078125 211.636719 242.984375 211.636719 242.867188 Z M 211.636719 242.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.382812 240.023438 C 212.382812 239.90625 212.289062 239.8125 212.171875 239.8125 C 212.054688 239.8125 211.960938 239.90625 211.960938 240.023438 C 211.960938 240.140625 212.054688 240.234375 212.171875 240.234375 C 212.289062 240.234375 212.382812 240.140625 212.382812 240.023438 Z M 212.382812 240.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.722656 239.359375 C 211.722656 239.242188 211.628906 239.148438 211.511719 239.148438 C 211.394531 239.148438 211.300781 239.242188 211.300781 239.359375 C 211.300781 239.476562 211.394531 239.570312 211.511719 239.570312 C 211.628906 239.570312 211.722656 239.476562 211.722656 239.359375 Z M 211.722656 239.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.367188 235.183594 C 209.367188 235.066406 209.273438 234.972656 209.15625 234.972656 C 209.039062 234.972656 208.945312 235.066406 208.945312 235.183594 C 208.945312 235.300781 209.039062 235.394531 209.15625 235.394531 C 209.273438 235.394531 209.367188 235.300781 209.367188 235.183594 Z M 209.367188 235.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.679688 235.945312 C 214.679688 235.828125 214.585938 235.734375 214.46875 235.734375 C 214.351562 235.734375 214.257812 235.828125 214.257812 235.945312 C 214.257812 236.0625 214.351562 236.15625 214.46875 236.15625 C 214.585938 236.15625 214.679688 236.0625 214.679688 235.945312 Z M 214.679688 235.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.34375 232.738281 C 216.34375 232.621094 216.25 232.527344 216.132812 232.527344 C 216.015625 232.527344 215.921875 232.621094 215.921875 232.738281 C 215.921875 232.855469 216.015625 232.949219 216.132812 232.949219 C 216.25 232.949219 216.34375 232.855469 216.34375 232.738281 Z M 216.34375 232.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.480469 231.726562 C 216.480469 231.609375 216.386719 231.515625 216.269531 231.515625 C 216.152344 231.515625 216.058594 231.609375 216.058594 231.726562 C 216.058594 231.84375 216.152344 231.9375 216.269531 231.9375 C 216.386719 231.9375 216.480469 231.84375 216.480469 231.726562 Z M 216.480469 231.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.226562 228.394531 C 219.226562 228.277344 219.132812 228.183594 219.015625 228.183594 C 218.898438 228.183594 218.804688 228.277344 218.804688 228.394531 C 218.804688 228.511719 218.898438 228.605469 219.015625 228.605469 C 219.132812 228.605469 219.226562 228.511719 219.226562 228.394531 Z M 219.226562 228.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 220.328125 229.746094 C 220.328125 229.628906 220.234375 229.535156 220.117188 229.535156 C 220 229.535156 219.90625 229.628906 219.90625 229.746094 C 219.90625 229.863281 220 229.957031 220.117188 229.957031 C 220.234375 229.957031 220.328125 229.863281 220.328125 229.746094 Z M 220.328125 229.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.40625 228.253906 C 224.40625 228.136719 224.3125 228.042969 224.195312 228.042969 C 224.078125 228.042969 223.984375 228.136719 223.984375 228.253906 C 223.984375 228.371094 224.078125 228.464844 224.195312 228.464844 C 224.3125 228.464844 224.40625 228.371094 224.40625 228.253906 Z M 224.40625 228.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.265625 228.554688 C 228.265625 228.4375 228.171875 228.34375 228.054688 228.34375 C 227.9375 228.34375 227.84375 228.4375 227.84375 228.554688 C 227.84375 228.671875 227.9375 228.765625 228.054688 228.765625 C 228.171875 228.765625 228.265625 228.671875 228.265625 228.554688 Z M 228.265625 228.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.300781 225.496094 C 232.300781 225.378906 232.207031 225.285156 232.089844 225.285156 C 231.972656 225.285156 231.878906 225.378906 231.878906 225.496094 C 231.878906 225.613281 231.972656 225.707031 232.089844 225.707031 C 232.207031 225.707031 232.300781 225.613281 232.300781 225.496094 Z M 232.300781 225.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.792969 223.96875 C 227.792969 223.851562 227.699219 223.757812 227.582031 223.757812 C 227.464844 223.757812 227.371094 223.851562 227.371094 223.96875 C 227.371094 224.085938 227.464844 224.179688 227.582031 224.179688 C 227.699219 224.179688 227.792969 224.085938 227.792969 223.96875 Z M 227.792969 223.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.113281 223.792969 C 225.113281 223.675781 225.019531 223.582031 224.902344 223.582031 C 224.785156 223.582031 224.691406 223.675781 224.691406 223.792969 C 224.691406 223.910156 224.785156 224.003906 224.902344 224.003906 C 225.019531 224.003906 225.113281 223.910156 225.113281 223.792969 Z M 225.113281 223.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.316406 221.445312 C 224.316406 221.328125 224.222656 221.234375 224.105469 221.234375 C 223.988281 221.234375 223.894531 221.328125 223.894531 221.445312 C 223.894531 221.5625 223.988281 221.65625 224.105469 221.65625 C 224.222656 221.65625 224.316406 221.5625 224.316406 221.445312 Z M 224.316406 221.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.597656 227.308594 C 223.597656 227.191406 223.503906 227.097656 223.386719 227.097656 C 223.269531 227.097656 223.175781 227.191406 223.175781 227.308594 C 223.175781 227.425781 223.269531 227.519531 223.386719 227.519531 C 223.503906 227.519531 223.597656 227.425781 223.597656 227.308594 Z M 223.597656 227.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.210938 225.394531 C 227.210938 225.277344 227.117188 225.183594 227 225.183594 C 226.882812 225.183594 226.789062 225.277344 226.789062 225.394531 C 226.789062 225.511719 226.882812 225.605469 227 225.605469 C 227.117188 225.605469 227.210938 225.511719 227.210938 225.394531 Z M 227.210938 225.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.867188 227.902344 C 227.867188 227.785156 227.773438 227.691406 227.65625 227.691406 C 227.539062 227.691406 227.445312 227.785156 227.445312 227.902344 C 227.445312 228.019531 227.539062 228.113281 227.65625 228.113281 C 227.773438 228.113281 227.867188 228.019531 227.867188 227.902344 Z M 227.867188 227.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.007812 225.980469 C 227.007812 225.863281 226.914062 225.769531 226.796875 225.769531 C 226.679688 225.769531 226.585938 225.863281 226.585938 225.980469 C 226.585938 226.097656 226.679688 226.191406 226.796875 226.191406 C 226.914062 226.191406 227.007812 226.097656 227.007812 225.980469 Z M 227.007812 225.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.304688 227.867188 C 229.304688 227.75 229.210938 227.65625 229.09375 227.65625 C 228.976562 227.65625 228.882812 227.75 228.882812 227.867188 C 228.882812 227.984375 228.976562 228.078125 229.09375 228.078125 C 229.210938 228.078125 229.304688 227.984375 229.304688 227.867188 Z M 229.304688 227.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.972656 226.164062 C 226.972656 226.046875 226.878906 225.953125 226.761719 225.953125 C 226.644531 225.953125 226.550781 226.046875 226.550781 226.164062 C 226.550781 226.28125 226.644531 226.375 226.761719 226.375 C 226.878906 226.375 226.972656 226.28125 226.972656 226.164062 Z M 226.972656 226.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.320312 222.027344 C 225.320312 221.910156 225.226562 221.816406 225.109375 221.816406 C 224.992188 221.816406 224.898438 221.910156 224.898438 222.027344 C 224.898438 222.144531 224.992188 222.238281 225.109375 222.238281 C 225.226562 222.238281 225.320312 222.144531 225.320312 222.027344 Z M 225.320312 222.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.070312 223.246094 C 227.070312 223.128906 226.976562 223.035156 226.859375 223.035156 C 226.742188 223.035156 226.648438 223.128906 226.648438 223.246094 C 226.648438 223.363281 226.742188 223.457031 226.859375 223.457031 C 226.976562 223.457031 227.070312 223.363281 227.070312 223.246094 Z M 227.070312 223.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.347656 220.15625 C 223.347656 220.039062 223.253906 219.945312 223.136719 219.945312 C 223.019531 219.945312 222.925781 220.039062 222.925781 220.15625 C 222.925781 220.273438 223.019531 220.367188 223.136719 220.367188 C 223.253906 220.367188 223.347656 220.273438 223.347656 220.15625 Z M 223.347656 220.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.734375 216.839844 C 227.734375 216.722656 227.640625 216.628906 227.523438 216.628906 C 227.40625 216.628906 227.3125 216.722656 227.3125 216.839844 C 227.3125 216.957031 227.40625 217.050781 227.523438 217.050781 C 227.640625 217.050781 227.734375 216.957031 227.734375 216.839844 Z M 227.734375 216.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 222.527344 218.78125 C 222.527344 218.664062 222.433594 218.570312 222.316406 218.570312 C 222.199219 218.570312 222.105469 218.664062 222.105469 218.78125 C 222.105469 218.898438 222.199219 218.992188 222.316406 218.992188 C 222.433594 218.992188 222.527344 218.898438 222.527344 218.78125 Z M 222.527344 218.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.765625 218.742188 C 226.765625 218.625 226.671875 218.53125 226.554688 218.53125 C 226.4375 218.53125 226.34375 218.625 226.34375 218.742188 C 226.34375 218.859375 226.4375 218.953125 226.554688 218.953125 C 226.671875 218.953125 226.765625 218.859375 226.765625 218.742188 Z M 226.765625 218.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.054688 221.9375 C 227.054688 221.820312 226.960938 221.726562 226.84375 221.726562 C 226.726562 221.726562 226.632812 221.820312 226.632812 221.9375 C 226.632812 222.054688 226.726562 222.148438 226.84375 222.148438 C 226.960938 222.148438 227.054688 222.054688 227.054688 221.9375 Z M 227.054688 221.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.308594 223.507812 C 227.308594 223.390625 227.214844 223.296875 227.097656 223.296875 C 226.980469 223.296875 226.886719 223.390625 226.886719 223.507812 C 226.886719 223.625 226.980469 223.71875 227.097656 223.71875 C 227.214844 223.71875 227.308594 223.625 227.308594 223.507812 Z M 227.308594 223.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.917969 224.007812 C 228.917969 223.890625 228.824219 223.796875 228.707031 223.796875 C 228.589844 223.796875 228.496094 223.890625 228.496094 224.007812 C 228.496094 224.125 228.589844 224.21875 228.707031 224.21875 C 228.824219 224.21875 228.917969 224.125 228.917969 224.007812 Z M 228.917969 224.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.226562 225.167969 C 232.226562 225.050781 232.132812 224.957031 232.015625 224.957031 C 231.898438 224.957031 231.804688 225.050781 231.804688 225.167969 C 231.804688 225.285156 231.898438 225.378906 232.015625 225.378906 C 232.132812 225.378906 232.226562 225.285156 232.226562 225.167969 Z M 232.226562 225.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.855469 219.65625 C 238.855469 219.539062 238.761719 219.445312 238.644531 219.445312 C 238.527344 219.445312 238.433594 219.539062 238.433594 219.65625 C 238.433594 219.773438 238.527344 219.867188 238.644531 219.867188 C 238.761719 219.867188 238.855469 219.773438 238.855469 219.65625 Z M 238.855469 219.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.183594 218.855469 C 238.183594 218.738281 238.089844 218.644531 237.972656 218.644531 C 237.855469 218.644531 237.761719 218.738281 237.761719 218.855469 C 237.761719 218.972656 237.855469 219.066406 237.972656 219.066406 C 238.089844 219.066406 238.183594 218.972656 238.183594 218.855469 Z M 238.183594 218.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.992188 217.15625 C 234.992188 217.039062 234.898438 216.945312 234.78125 216.945312 C 234.664062 216.945312 234.570312 217.039062 234.570312 217.15625 C 234.570312 217.273438 234.664062 217.367188 234.78125 217.367188 C 234.898438 217.367188 234.992188 217.273438 234.992188 217.15625 Z M 234.992188 217.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.296875 219.941406 C 235.296875 219.824219 235.203125 219.730469 235.085938 219.730469 C 234.96875 219.730469 234.875 219.824219 234.875 219.941406 C 234.875 220.058594 234.96875 220.152344 235.085938 220.152344 C 235.203125 220.152344 235.296875 220.058594 235.296875 219.941406 Z M 235.296875 219.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.695312 221.550781 C 236.695312 221.433594 236.601562 221.339844 236.484375 221.339844 C 236.367188 221.339844 236.273438 221.433594 236.273438 221.550781 C 236.273438 221.667969 236.367188 221.761719 236.484375 221.761719 C 236.601562 221.761719 236.695312 221.667969 236.695312 221.550781 Z M 236.695312 221.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.8125 221.597656 C 235.8125 221.480469 235.71875 221.386719 235.601562 221.386719 C 235.484375 221.386719 235.390625 221.480469 235.390625 221.597656 C 235.390625 221.714844 235.484375 221.808594 235.601562 221.808594 C 235.71875 221.808594 235.8125 221.714844 235.8125 221.597656 Z M 235.8125 221.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.027344 223.132812 C 233.027344 223.015625 232.933594 222.921875 232.816406 222.921875 C 232.699219 222.921875 232.605469 223.015625 232.605469 223.132812 C 232.605469 223.25 232.699219 223.34375 232.816406 223.34375 C 232.933594 223.34375 233.027344 223.25 233.027344 223.132812 Z M 233.027344 223.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.800781 224.953125 C 233.800781 224.835938 233.707031 224.742188 233.589844 224.742188 C 233.472656 224.742188 233.378906 224.835938 233.378906 224.953125 C 233.378906 225.070312 233.472656 225.164062 233.589844 225.164062 C 233.707031 225.164062 233.800781 225.070312 233.800781 224.953125 Z M 233.800781 224.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.851562 220.472656 C 233.851562 220.355469 233.757812 220.261719 233.640625 220.261719 C 233.523438 220.261719 233.429688 220.355469 233.429688 220.472656 C 233.429688 220.589844 233.523438 220.683594 233.640625 220.683594 C 233.757812 220.683594 233.851562 220.589844 233.851562 220.472656 Z M 233.851562 220.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.464844 219.804688 C 235.464844 219.6875 235.371094 219.59375 235.253906 219.59375 C 235.136719 219.59375 235.042969 219.6875 235.042969 219.804688 C 235.042969 219.921875 235.136719 220.015625 235.253906 220.015625 C 235.371094 220.015625 235.464844 219.921875 235.464844 219.804688 Z M 235.464844 219.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.585938 221.066406 C 233.585938 220.949219 233.492188 220.855469 233.375 220.855469 C 233.257812 220.855469 233.164062 220.949219 233.164062 221.066406 C 233.164062 221.183594 233.257812 221.277344 233.375 221.277344 C 233.492188 221.277344 233.585938 221.183594 233.585938 221.066406 Z M 233.585938 221.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.207031 222.714844 C 232.207031 222.597656 232.113281 222.503906 231.996094 222.503906 C 231.878906 222.503906 231.785156 222.597656 231.785156 222.714844 C 231.785156 222.832031 231.878906 222.925781 231.996094 222.925781 C 232.113281 222.925781 232.207031 222.832031 232.207031 222.714844 Z M 232.207031 222.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.046875 223.085938 C 227.046875 222.96875 226.953125 222.875 226.835938 222.875 C 226.71875 222.875 226.625 222.96875 226.625 223.085938 C 226.625 223.203125 226.71875 223.296875 226.835938 223.296875 C 226.953125 223.296875 227.046875 223.203125 227.046875 223.085938 Z M 227.046875 223.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.96875 226.769531 C 226.96875 226.652344 226.875 226.558594 226.757812 226.558594 C 226.640625 226.558594 226.546875 226.652344 226.546875 226.769531 C 226.546875 226.886719 226.640625 226.980469 226.757812 226.980469 C 226.875 226.980469 226.96875 226.886719 226.96875 226.769531 Z M 226.96875 226.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.050781 227.480469 C 231.050781 227.363281 230.957031 227.269531 230.839844 227.269531 C 230.722656 227.269531 230.628906 227.363281 230.628906 227.480469 C 230.628906 227.597656 230.722656 227.691406 230.839844 227.691406 C 230.957031 227.691406 231.050781 227.597656 231.050781 227.480469 Z M 231.050781 227.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.472656 231.652344 C 232.472656 231.535156 232.378906 231.441406 232.261719 231.441406 C 232.144531 231.441406 232.050781 231.535156 232.050781 231.652344 C 232.050781 231.769531 232.144531 231.863281 232.261719 231.863281 C 232.378906 231.863281 232.472656 231.769531 232.472656 231.652344 Z M 232.472656 231.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.714844 226.039062 C 233.714844 225.921875 233.621094 225.828125 233.503906 225.828125 C 233.386719 225.828125 233.292969 225.921875 233.292969 226.039062 C 233.292969 226.15625 233.386719 226.25 233.503906 226.25 C 233.621094 226.25 233.714844 226.15625 233.714844 226.039062 Z M 233.714844 226.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.960938 225.132812 C 231.960938 225.015625 231.867188 224.921875 231.75 224.921875 C 231.632812 224.921875 231.539062 225.015625 231.539062 225.132812 C 231.539062 225.25 231.632812 225.34375 231.75 225.34375 C 231.867188 225.34375 231.960938 225.25 231.960938 225.132812 Z M 231.960938 225.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.746094 221.664062 C 231.746094 221.546875 231.652344 221.453125 231.535156 221.453125 C 231.417969 221.453125 231.324219 221.546875 231.324219 221.664062 C 231.324219 221.78125 231.417969 221.875 231.535156 221.875 C 231.652344 221.875 231.746094 221.78125 231.746094 221.664062 Z M 231.746094 221.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.886719 219.871094 C 230.886719 219.753906 230.792969 219.660156 230.675781 219.660156 C 230.558594 219.660156 230.464844 219.753906 230.464844 219.871094 C 230.464844 219.988281 230.558594 220.082031 230.675781 220.082031 C 230.792969 220.082031 230.886719 219.988281 230.886719 219.871094 Z M 230.886719 219.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.6875 219.503906 C 232.6875 219.386719 232.59375 219.292969 232.476562 219.292969 C 232.359375 219.292969 232.265625 219.386719 232.265625 219.503906 C 232.265625 219.621094 232.359375 219.714844 232.476562 219.714844 C 232.59375 219.714844 232.6875 219.621094 232.6875 219.503906 Z M 232.6875 219.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.773438 221.847656 C 235.773438 221.730469 235.679688 221.636719 235.5625 221.636719 C 235.445312 221.636719 235.351562 221.730469 235.351562 221.847656 C 235.351562 221.964844 235.445312 222.058594 235.5625 222.058594 C 235.679688 222.058594 235.773438 221.964844 235.773438 221.847656 Z M 235.773438 221.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.976562 223.507812 C 237.976562 223.390625 237.882812 223.296875 237.765625 223.296875 C 237.648438 223.296875 237.554688 223.390625 237.554688 223.507812 C 237.554688 223.625 237.648438 223.71875 237.765625 223.71875 C 237.882812 223.71875 237.976562 223.625 237.976562 223.507812 Z M 237.976562 223.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.203125 222.433594 C 239.203125 222.316406 239.109375 222.222656 238.992188 222.222656 C 238.875 222.222656 238.78125 222.316406 238.78125 222.433594 C 238.78125 222.550781 238.875 222.644531 238.992188 222.644531 C 239.109375 222.644531 239.203125 222.550781 239.203125 222.433594 Z M 239.203125 222.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.960938 224.640625 C 237.960938 224.523438 237.867188 224.429688 237.75 224.429688 C 237.632812 224.429688 237.539062 224.523438 237.539062 224.640625 C 237.539062 224.757812 237.632812 224.851562 237.75 224.851562 C 237.867188 224.851562 237.960938 224.757812 237.960938 224.640625 Z M 237.960938 224.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.476562 219.378906 C 239.476562 219.261719 239.382812 219.167969 239.265625 219.167969 C 239.148438 219.167969 239.054688 219.261719 239.054688 219.378906 C 239.054688 219.496094 239.148438 219.589844 239.265625 219.589844 C 239.382812 219.589844 239.476562 219.496094 239.476562 219.378906 Z M 239.476562 219.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.859375 217.179688 C 236.859375 217.0625 236.765625 216.96875 236.648438 216.96875 C 236.53125 216.96875 236.4375 217.0625 236.4375 217.179688 C 236.4375 217.296875 236.53125 217.390625 236.648438 217.390625 C 236.765625 217.390625 236.859375 217.296875 236.859375 217.179688 Z M 236.859375 217.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.320312 215.714844 C 236.320312 215.597656 236.226562 215.503906 236.109375 215.503906 C 235.992188 215.503906 235.898438 215.597656 235.898438 215.714844 C 235.898438 215.832031 235.992188 215.925781 236.109375 215.925781 C 236.226562 215.925781 236.320312 215.832031 236.320312 215.714844 Z M 236.320312 215.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.382812 215.519531 C 237.382812 215.402344 237.289062 215.308594 237.171875 215.308594 C 237.054688 215.308594 236.960938 215.402344 236.960938 215.519531 C 236.960938 215.636719 237.054688 215.730469 237.171875 215.730469 C 237.289062 215.730469 237.382812 215.636719 237.382812 215.519531 Z M 237.382812 215.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.550781 216.140625 C 240.550781 216.023438 240.457031 215.929688 240.339844 215.929688 C 240.222656 215.929688 240.128906 216.023438 240.128906 216.140625 C 240.128906 216.257812 240.222656 216.351562 240.339844 216.351562 C 240.457031 216.351562 240.550781 216.257812 240.550781 216.140625 Z M 240.550781 216.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.59375 217.234375 C 237.59375 217.117188 237.5 217.023438 237.382812 217.023438 C 237.265625 217.023438 237.171875 217.117188 237.171875 217.234375 C 237.171875 217.351562 237.265625 217.445312 237.382812 217.445312 C 237.5 217.445312 237.59375 217.351562 237.59375 217.234375 Z M 237.59375 217.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.777344 220.515625 C 237.777344 220.398438 237.683594 220.304688 237.566406 220.304688 C 237.449219 220.304688 237.355469 220.398438 237.355469 220.515625 C 237.355469 220.632812 237.449219 220.726562 237.566406 220.726562 C 237.683594 220.726562 237.777344 220.632812 237.777344 220.515625 Z M 237.777344 220.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.953125 216.5625 C 238.953125 216.445312 238.859375 216.351562 238.742188 216.351562 C 238.625 216.351562 238.53125 216.445312 238.53125 216.5625 C 238.53125 216.679688 238.625 216.773438 238.742188 216.773438 C 238.859375 216.773438 238.953125 216.679688 238.953125 216.5625 Z M 238.953125 216.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.445312 214.789062 C 238.445312 214.671875 238.351562 214.578125 238.234375 214.578125 C 238.117188 214.578125 238.023438 214.671875 238.023438 214.789062 C 238.023438 214.90625 238.117188 215 238.234375 215 C 238.351562 215 238.445312 214.90625 238.445312 214.789062 Z M 238.445312 214.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.324219 217.171875 C 239.324219 217.054688 239.230469 216.960938 239.113281 216.960938 C 238.996094 216.960938 238.902344 217.054688 238.902344 217.171875 C 238.902344 217.289062 238.996094 217.382812 239.113281 217.382812 C 239.230469 217.382812 239.324219 217.289062 239.324219 217.171875 Z M 239.324219 217.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.996094 218.789062 C 236.996094 218.671875 236.902344 218.578125 236.785156 218.578125 C 236.667969 218.578125 236.574219 218.671875 236.574219 218.789062 C 236.574219 218.90625 236.667969 219 236.785156 219 C 236.902344 219 236.996094 218.90625 236.996094 218.789062 Z M 236.996094 218.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.636719 218.28125 C 238.636719 218.164062 238.542969 218.070312 238.425781 218.070312 C 238.308594 218.070312 238.214844 218.164062 238.214844 218.28125 C 238.214844 218.398438 238.308594 218.492188 238.425781 218.492188 C 238.542969 218.492188 238.636719 218.398438 238.636719 218.28125 Z M 238.636719 218.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.613281 219.589844 C 236.613281 219.472656 236.519531 219.378906 236.402344 219.378906 C 236.285156 219.378906 236.191406 219.472656 236.191406 219.589844 C 236.191406 219.707031 236.285156 219.800781 236.402344 219.800781 C 236.519531 219.800781 236.613281 219.707031 236.613281 219.589844 Z M 236.613281 219.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.058594 220.648438 C 237.058594 220.53125 236.964844 220.4375 236.847656 220.4375 C 236.730469 220.4375 236.636719 220.53125 236.636719 220.648438 C 236.636719 220.765625 236.730469 220.859375 236.847656 220.859375 C 236.964844 220.859375 237.058594 220.765625 237.058594 220.648438 Z M 237.058594 220.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.199219 226.027344 C 237.199219 225.910156 237.105469 225.816406 236.988281 225.816406 C 236.871094 225.816406 236.777344 225.910156 236.777344 226.027344 C 236.777344 226.144531 236.871094 226.238281 236.988281 226.238281 C 237.105469 226.238281 237.199219 226.144531 237.199219 226.027344 Z M 237.199219 226.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.601562 227.757812 C 239.601562 227.640625 239.507812 227.546875 239.390625 227.546875 C 239.273438 227.546875 239.179688 227.640625 239.179688 227.757812 C 239.179688 227.875 239.273438 227.96875 239.390625 227.96875 C 239.507812 227.96875 239.601562 227.875 239.601562 227.757812 Z M 239.601562 227.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.445312 230.546875 C 239.445312 230.429688 239.351562 230.335938 239.234375 230.335938 C 239.117188 230.335938 239.023438 230.429688 239.023438 230.546875 C 239.023438 230.664062 239.117188 230.757812 239.234375 230.757812 C 239.351562 230.757812 239.445312 230.664062 239.445312 230.546875 Z M 239.445312 230.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.773438 229.644531 C 237.773438 229.527344 237.679688 229.433594 237.5625 229.433594 C 237.445312 229.433594 237.351562 229.527344 237.351562 229.644531 C 237.351562 229.761719 237.445312 229.855469 237.5625 229.855469 C 237.679688 229.855469 237.773438 229.761719 237.773438 229.644531 Z M 237.773438 229.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.242188 232.601562 C 240.242188 232.484375 240.148438 232.390625 240.03125 232.390625 C 239.914062 232.390625 239.820312 232.484375 239.820312 232.601562 C 239.820312 232.71875 239.914062 232.8125 240.03125 232.8125 C 240.148438 232.8125 240.242188 232.71875 240.242188 232.601562 Z M 240.242188 232.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.28125 231.847656 C 240.28125 231.730469 240.1875 231.636719 240.070312 231.636719 C 239.953125 231.636719 239.859375 231.730469 239.859375 231.847656 C 239.859375 231.964844 239.953125 232.058594 240.070312 232.058594 C 240.1875 232.058594 240.28125 231.964844 240.28125 231.847656 Z M 240.28125 231.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.007812 230.726562 C 241.007812 230.609375 240.914062 230.515625 240.796875 230.515625 C 240.679688 230.515625 240.585938 230.609375 240.585938 230.726562 C 240.585938 230.84375 240.679688 230.9375 240.796875 230.9375 C 240.914062 230.9375 241.007812 230.84375 241.007812 230.726562 Z M 241.007812 230.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.804688 227.769531 C 242.804688 227.652344 242.710938 227.558594 242.59375 227.558594 C 242.476562 227.558594 242.382812 227.652344 242.382812 227.769531 C 242.382812 227.886719 242.476562 227.980469 242.59375 227.980469 C 242.710938 227.980469 242.804688 227.886719 242.804688 227.769531 Z M 242.804688 227.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.011719 229.648438 C 243.011719 229.53125 242.917969 229.4375 242.800781 229.4375 C 242.683594 229.4375 242.589844 229.53125 242.589844 229.648438 C 242.589844 229.765625 242.683594 229.859375 242.800781 229.859375 C 242.917969 229.859375 243.011719 229.765625 243.011719 229.648438 Z M 243.011719 229.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.699219 228.621094 C 245.699219 228.503906 245.605469 228.410156 245.488281 228.410156 C 245.371094 228.410156 245.277344 228.503906 245.277344 228.621094 C 245.277344 228.738281 245.371094 228.832031 245.488281 228.832031 C 245.605469 228.832031 245.699219 228.738281 245.699219 228.621094 Z M 245.699219 228.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.613281 230.613281 C 247.613281 230.496094 247.519531 230.402344 247.402344 230.402344 C 247.285156 230.402344 247.191406 230.496094 247.191406 230.613281 C 247.191406 230.730469 247.285156 230.824219 247.402344 230.824219 C 247.519531 230.824219 247.613281 230.730469 247.613281 230.613281 Z M 247.613281 230.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.980469 231.402344 C 251.980469 231.285156 251.886719 231.191406 251.769531 231.191406 C 251.652344 231.191406 251.558594 231.285156 251.558594 231.402344 C 251.558594 231.519531 251.652344 231.613281 251.769531 231.613281 C 251.886719 231.613281 251.980469 231.519531 251.980469 231.402344 Z M 251.980469 231.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.34375 228.792969 C 254.34375 228.675781 254.25 228.582031 254.132812 228.582031 C 254.015625 228.582031 253.921875 228.675781 253.921875 228.792969 C 253.921875 228.910156 254.015625 229.003906 254.132812 229.003906 C 254.25 229.003906 254.34375 228.910156 254.34375 228.792969 Z M 254.34375 228.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.0625 231.804688 C 254.0625 231.6875 253.96875 231.59375 253.851562 231.59375 C 253.734375 231.59375 253.640625 231.6875 253.640625 231.804688 C 253.640625 231.921875 253.734375 232.015625 253.851562 232.015625 C 253.96875 232.015625 254.0625 231.921875 254.0625 231.804688 Z M 254.0625 231.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.980469 232.175781 C 253.980469 232.058594 253.886719 231.964844 253.769531 231.964844 C 253.652344 231.964844 253.558594 232.058594 253.558594 232.175781 C 253.558594 232.292969 253.652344 232.386719 253.769531 232.386719 C 253.886719 232.386719 253.980469 232.292969 253.980469 232.175781 Z M 253.980469 232.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.429688 229.582031 C 253.429688 229.464844 253.335938 229.371094 253.21875 229.371094 C 253.101562 229.371094 253.007812 229.464844 253.007812 229.582031 C 253.007812 229.699219 253.101562 229.792969 253.21875 229.792969 C 253.335938 229.792969 253.429688 229.699219 253.429688 229.582031 Z M 253.429688 229.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.832031 227.914062 C 252.832031 227.796875 252.738281 227.703125 252.621094 227.703125 C 252.503906 227.703125 252.410156 227.796875 252.410156 227.914062 C 252.410156 228.03125 252.503906 228.125 252.621094 228.125 C 252.738281 228.125 252.832031 228.03125 252.832031 227.914062 Z M 252.832031 227.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.890625 228.871094 C 254.890625 228.753906 254.796875 228.660156 254.679688 228.660156 C 254.5625 228.660156 254.46875 228.753906 254.46875 228.871094 C 254.46875 228.988281 254.5625 229.082031 254.679688 229.082031 C 254.796875 229.082031 254.890625 228.988281 254.890625 228.871094 Z M 254.890625 228.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.8125 227.765625 C 254.8125 227.648438 254.71875 227.554688 254.601562 227.554688 C 254.484375 227.554688 254.390625 227.648438 254.390625 227.765625 C 254.390625 227.882812 254.484375 227.976562 254.601562 227.976562 C 254.71875 227.976562 254.8125 227.882812 254.8125 227.765625 Z M 254.8125 227.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.824219 231.011719 C 256.824219 230.894531 256.730469 230.800781 256.613281 230.800781 C 256.496094 230.800781 256.402344 230.894531 256.402344 231.011719 C 256.402344 231.128906 256.496094 231.222656 256.613281 231.222656 C 256.730469 231.222656 256.824219 231.128906 256.824219 231.011719 Z M 256.824219 231.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.828125 233.898438 C 258.828125 233.78125 258.734375 233.6875 258.617188 233.6875 C 258.5 233.6875 258.40625 233.78125 258.40625 233.898438 C 258.40625 234.015625 258.5 234.109375 258.617188 234.109375 C 258.734375 234.109375 258.828125 234.015625 258.828125 233.898438 Z M 258.828125 233.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.707031 229.3125 C 261.707031 229.195312 261.613281 229.101562 261.496094 229.101562 C 261.378906 229.101562 261.285156 229.195312 261.285156 229.3125 C 261.285156 229.429688 261.378906 229.523438 261.496094 229.523438 C 261.613281 229.523438 261.707031 229.429688 261.707031 229.3125 Z M 261.707031 229.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.65625 232.359375 C 265.65625 232.242188 265.5625 232.148438 265.445312 232.148438 C 265.328125 232.148438 265.234375 232.242188 265.234375 232.359375 C 265.234375 232.476562 265.328125 232.570312 265.445312 232.570312 C 265.5625 232.570312 265.65625 232.476562 265.65625 232.359375 Z M 265.65625 232.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.496094 232.070312 C 265.496094 231.953125 265.402344 231.859375 265.285156 231.859375 C 265.167969 231.859375 265.074219 231.953125 265.074219 232.070312 C 265.074219 232.1875 265.167969 232.28125 265.285156 232.28125 C 265.402344 232.28125 265.496094 232.1875 265.496094 232.070312 Z M 265.496094 232.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.460938 233.484375 C 266.460938 233.367188 266.367188 233.273438 266.25 233.273438 C 266.132812 233.273438 266.039062 233.367188 266.039062 233.484375 C 266.039062 233.601562 266.132812 233.695312 266.25 233.695312 C 266.367188 233.695312 266.460938 233.601562 266.460938 233.484375 Z M 266.460938 233.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.6875 231.96875 C 264.6875 231.851562 264.59375 231.757812 264.476562 231.757812 C 264.359375 231.757812 264.265625 231.851562 264.265625 231.96875 C 264.265625 232.085938 264.359375 232.179688 264.476562 232.179688 C 264.59375 232.179688 264.6875 232.085938 264.6875 231.96875 Z M 264.6875 231.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.332031 230.308594 C 263.332031 230.191406 263.238281 230.097656 263.121094 230.097656 C 263.003906 230.097656 262.910156 230.191406 262.910156 230.308594 C 262.910156 230.425781 263.003906 230.519531 263.121094 230.519531 C 263.238281 230.519531 263.332031 230.425781 263.332031 230.308594 Z M 263.332031 230.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.863281 235.210938 C 260.863281 235.09375 260.769531 235 260.652344 235 C 260.535156 235 260.441406 235.09375 260.441406 235.210938 C 260.441406 235.328125 260.535156 235.421875 260.652344 235.421875 C 260.769531 235.421875 260.863281 235.328125 260.863281 235.210938 Z M 260.863281 235.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.300781 236.546875 C 263.300781 236.429688 263.207031 236.335938 263.089844 236.335938 C 262.972656 236.335938 262.878906 236.429688 262.878906 236.546875 C 262.878906 236.664062 262.972656 236.757812 263.089844 236.757812 C 263.207031 236.757812 263.300781 236.664062 263.300781 236.546875 Z M 263.300781 236.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.679688 229.269531 C 262.679688 229.152344 262.585938 229.058594 262.46875 229.058594 C 262.351562 229.058594 262.257812 229.152344 262.257812 229.269531 C 262.257812 229.386719 262.351562 229.480469 262.46875 229.480469 C 262.585938 229.480469 262.679688 229.386719 262.679688 229.269531 Z M 262.679688 229.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.015625 229.058594 C 266.015625 228.941406 265.921875 228.847656 265.804688 228.847656 C 265.6875 228.847656 265.59375 228.941406 265.59375 229.058594 C 265.59375 229.175781 265.6875 229.269531 265.804688 229.269531 C 265.921875 229.269531 266.015625 229.175781 266.015625 229.058594 Z M 266.015625 229.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.683594 230.574219 C 266.683594 230.457031 266.589844 230.363281 266.472656 230.363281 C 266.355469 230.363281 266.261719 230.457031 266.261719 230.574219 C 266.261719 230.691406 266.355469 230.785156 266.472656 230.785156 C 266.589844 230.785156 266.683594 230.691406 266.683594 230.574219 Z M 266.683594 230.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.980469 229.675781 C 267.980469 229.558594 267.886719 229.464844 267.769531 229.464844 C 267.652344 229.464844 267.558594 229.558594 267.558594 229.675781 C 267.558594 229.792969 267.652344 229.886719 267.769531 229.886719 C 267.886719 229.886719 267.980469 229.792969 267.980469 229.675781 Z M 267.980469 229.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.171875 230.347656 C 266.171875 230.230469 266.078125 230.136719 265.960938 230.136719 C 265.84375 230.136719 265.75 230.230469 265.75 230.347656 C 265.75 230.464844 265.84375 230.558594 265.960938 230.558594 C 266.078125 230.558594 266.171875 230.464844 266.171875 230.347656 Z M 266.171875 230.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.714844 231.59375 C 267.714844 231.476562 267.621094 231.382812 267.503906 231.382812 C 267.386719 231.382812 267.292969 231.476562 267.292969 231.59375 C 267.292969 231.710938 267.386719 231.804688 267.503906 231.804688 C 267.621094 231.804688 267.714844 231.710938 267.714844 231.59375 Z M 267.714844 231.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.222656 236.664062 C 265.222656 236.546875 265.128906 236.453125 265.011719 236.453125 C 264.894531 236.453125 264.800781 236.546875 264.800781 236.664062 C 264.800781 236.78125 264.894531 236.875 265.011719 236.875 C 265.128906 236.875 265.222656 236.78125 265.222656 236.664062 Z M 265.222656 236.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.730469 239.660156 C 265.730469 239.542969 265.636719 239.449219 265.519531 239.449219 C 265.402344 239.449219 265.308594 239.542969 265.308594 239.660156 C 265.308594 239.777344 265.402344 239.871094 265.519531 239.871094 C 265.636719 239.871094 265.730469 239.777344 265.730469 239.660156 Z M 265.730469 239.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.234375 239.65625 C 263.234375 239.539062 263.140625 239.445312 263.023438 239.445312 C 262.90625 239.445312 262.8125 239.539062 262.8125 239.65625 C 262.8125 239.773438 262.90625 239.867188 263.023438 239.867188 C 263.140625 239.867188 263.234375 239.773438 263.234375 239.65625 Z M 263.234375 239.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.757812 241.296875 C 261.757812 241.179688 261.664062 241.085938 261.546875 241.085938 C 261.429688 241.085938 261.335938 241.179688 261.335938 241.296875 C 261.335938 241.414062 261.429688 241.507812 261.546875 241.507812 C 261.664062 241.507812 261.757812 241.414062 261.757812 241.296875 Z M 261.757812 241.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.429688 242.480469 C 261.429688 242.363281 261.335938 242.269531 261.21875 242.269531 C 261.101562 242.269531 261.007812 242.363281 261.007812 242.480469 C 261.007812 242.597656 261.101562 242.691406 261.21875 242.691406 C 261.335938 242.691406 261.429688 242.597656 261.429688 242.480469 Z M 261.429688 242.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.085938 242.304688 C 265.085938 242.1875 264.992188 242.09375 264.875 242.09375 C 264.757812 242.09375 264.664062 242.1875 264.664062 242.304688 C 264.664062 242.421875 264.757812 242.515625 264.875 242.515625 C 264.992188 242.515625 265.085938 242.421875 265.085938 242.304688 Z M 265.085938 242.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.253906 242.585938 C 262.253906 242.46875 262.160156 242.375 262.042969 242.375 C 261.925781 242.375 261.832031 242.46875 261.832031 242.585938 C 261.832031 242.703125 261.925781 242.796875 262.042969 242.796875 C 262.160156 242.796875 262.253906 242.703125 262.253906 242.585938 Z M 262.253906 242.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.394531 243.011719 C 262.394531 242.894531 262.300781 242.800781 262.183594 242.800781 C 262.066406 242.800781 261.972656 242.894531 261.972656 243.011719 C 261.972656 243.128906 262.066406 243.222656 262.183594 243.222656 C 262.300781 243.222656 262.394531 243.128906 262.394531 243.011719 Z M 262.394531 243.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.859375 241.585938 C 265.859375 241.46875 265.765625 241.375 265.648438 241.375 C 265.53125 241.375 265.4375 241.46875 265.4375 241.585938 C 265.4375 241.703125 265.53125 241.796875 265.648438 241.796875 C 265.765625 241.796875 265.859375 241.703125 265.859375 241.585938 Z M 265.859375 241.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.699219 244.125 C 261.699219 244.007812 261.605469 243.914062 261.488281 243.914062 C 261.371094 243.914062 261.277344 244.007812 261.277344 244.125 C 261.277344 244.242188 261.371094 244.335938 261.488281 244.335938 C 261.605469 244.335938 261.699219 244.242188 261.699219 244.125 Z M 261.699219 244.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.921875 240.667969 C 259.921875 240.550781 259.828125 240.457031 259.710938 240.457031 C 259.59375 240.457031 259.5 240.550781 259.5 240.667969 C 259.5 240.785156 259.59375 240.878906 259.710938 240.878906 C 259.828125 240.878906 259.921875 240.785156 259.921875 240.667969 Z M 259.921875 240.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.910156 240.410156 C 257.910156 240.292969 257.816406 240.199219 257.699219 240.199219 C 257.582031 240.199219 257.488281 240.292969 257.488281 240.410156 C 257.488281 240.527344 257.582031 240.621094 257.699219 240.621094 C 257.816406 240.621094 257.910156 240.527344 257.910156 240.410156 Z M 257.910156 240.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.90625 241.382812 C 260.90625 241.265625 260.8125 241.171875 260.695312 241.171875 C 260.578125 241.171875 260.484375 241.265625 260.484375 241.382812 C 260.484375 241.5 260.578125 241.59375 260.695312 241.59375 C 260.8125 241.59375 260.90625 241.5 260.90625 241.382812 Z M 260.90625 241.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.648438 238.488281 C 261.648438 238.371094 261.554688 238.277344 261.4375 238.277344 C 261.320312 238.277344 261.226562 238.371094 261.226562 238.488281 C 261.226562 238.605469 261.320312 238.699219 261.4375 238.699219 C 261.554688 238.699219 261.648438 238.605469 261.648438 238.488281 Z M 261.648438 238.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.632812 240.386719 C 261.632812 240.269531 261.539062 240.175781 261.421875 240.175781 C 261.304688 240.175781 261.210938 240.269531 261.210938 240.386719 C 261.210938 240.503906 261.304688 240.597656 261.421875 240.597656 C 261.539062 240.597656 261.632812 240.503906 261.632812 240.386719 Z M 261.632812 240.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.113281 240.378906 C 263.113281 240.261719 263.019531 240.167969 262.902344 240.167969 C 262.785156 240.167969 262.691406 240.261719 262.691406 240.378906 C 262.691406 240.496094 262.785156 240.589844 262.902344 240.589844 C 263.019531 240.589844 263.113281 240.496094 263.113281 240.378906 Z M 263.113281 240.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.59375 241.382812 C 266.59375 241.265625 266.5 241.171875 266.382812 241.171875 C 266.265625 241.171875 266.171875 241.265625 266.171875 241.382812 C 266.171875 241.5 266.265625 241.59375 266.382812 241.59375 C 266.5 241.59375 266.59375 241.5 266.59375 241.382812 Z M 266.59375 241.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.585938 243.105469 C 265.585938 242.988281 265.492188 242.894531 265.375 242.894531 C 265.257812 242.894531 265.164062 242.988281 265.164062 243.105469 C 265.164062 243.222656 265.257812 243.316406 265.375 243.316406 C 265.492188 243.316406 265.585938 243.222656 265.585938 243.105469 Z M 265.585938 243.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.4375 243.257812 C 264.4375 243.140625 264.34375 243.046875 264.226562 243.046875 C 264.109375 243.046875 264.015625 243.140625 264.015625 243.257812 C 264.015625 243.375 264.109375 243.46875 264.226562 243.46875 C 264.34375 243.46875 264.4375 243.375 264.4375 243.257812 Z M 264.4375 243.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.289062 244.703125 C 263.289062 244.585938 263.195312 244.492188 263.078125 244.492188 C 262.960938 244.492188 262.867188 244.585938 262.867188 244.703125 C 262.867188 244.820312 262.960938 244.914062 263.078125 244.914062 C 263.195312 244.914062 263.289062 244.820312 263.289062 244.703125 Z M 263.289062 244.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.214844 244.300781 C 262.214844 244.183594 262.121094 244.089844 262.003906 244.089844 C 261.886719 244.089844 261.792969 244.183594 261.792969 244.300781 C 261.792969 244.417969 261.886719 244.511719 262.003906 244.511719 C 262.121094 244.511719 262.214844 244.417969 262.214844 244.300781 Z M 262.214844 244.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.175781 245.410156 C 262.175781 245.292969 262.082031 245.199219 261.964844 245.199219 C 261.847656 245.199219 261.753906 245.292969 261.753906 245.410156 C 261.753906 245.527344 261.847656 245.621094 261.964844 245.621094 C 262.082031 245.621094 262.175781 245.527344 262.175781 245.410156 Z M 262.175781 245.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.597656 244.207031 C 261.597656 244.089844 261.503906 243.996094 261.386719 243.996094 C 261.269531 243.996094 261.175781 244.089844 261.175781 244.207031 C 261.175781 244.324219 261.269531 244.417969 261.386719 244.417969 C 261.503906 244.417969 261.597656 244.324219 261.597656 244.207031 Z M 261.597656 244.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.800781 242.308594 C 262.800781 242.191406 262.707031 242.097656 262.589844 242.097656 C 262.472656 242.097656 262.378906 242.191406 262.378906 242.308594 C 262.378906 242.425781 262.472656 242.519531 262.589844 242.519531 C 262.707031 242.519531 262.800781 242.425781 262.800781 242.308594 Z M 262.800781 242.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.8125 241.078125 C 263.8125 240.960938 263.71875 240.867188 263.601562 240.867188 C 263.484375 240.867188 263.390625 240.960938 263.390625 241.078125 C 263.390625 241.195312 263.484375 241.289062 263.601562 241.289062 C 263.71875 241.289062 263.8125 241.195312 263.8125 241.078125 Z M 263.8125 241.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.929688 244.785156 C 262.929688 244.667969 262.835938 244.574219 262.71875 244.574219 C 262.601562 244.574219 262.507812 244.667969 262.507812 244.785156 C 262.507812 244.902344 262.601562 244.996094 262.71875 244.996094 C 262.835938 244.996094 262.929688 244.902344 262.929688 244.785156 Z M 262.929688 244.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.433594 245.464844 C 262.433594 245.347656 262.339844 245.253906 262.222656 245.253906 C 262.105469 245.253906 262.011719 245.347656 262.011719 245.464844 C 262.011719 245.582031 262.105469 245.675781 262.222656 245.675781 C 262.339844 245.675781 262.433594 245.582031 262.433594 245.464844 Z M 262.433594 245.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.183594 246.285156 C 263.183594 246.167969 263.089844 246.074219 262.972656 246.074219 C 262.855469 246.074219 262.761719 246.167969 262.761719 246.285156 C 262.761719 246.402344 262.855469 246.496094 262.972656 246.496094 C 263.089844 246.496094 263.183594 246.402344 263.183594 246.285156 Z M 263.183594 246.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.058594 245.296875 C 263.058594 245.179688 262.964844 245.085938 262.847656 245.085938 C 262.730469 245.085938 262.636719 245.179688 262.636719 245.296875 C 262.636719 245.414062 262.730469 245.507812 262.847656 245.507812 C 262.964844 245.507812 263.058594 245.414062 263.058594 245.296875 Z M 263.058594 245.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.542969 248.539062 C 258.542969 248.421875 258.449219 248.328125 258.332031 248.328125 C 258.214844 248.328125 258.121094 248.421875 258.121094 248.539062 C 258.121094 248.65625 258.214844 248.75 258.332031 248.75 C 258.449219 248.75 258.542969 248.65625 258.542969 248.539062 Z M 258.542969 248.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.503906 250.523438 C 257.503906 250.40625 257.410156 250.3125 257.292969 250.3125 C 257.175781 250.3125 257.082031 250.40625 257.082031 250.523438 C 257.082031 250.640625 257.175781 250.734375 257.292969 250.734375 C 257.410156 250.734375 257.503906 250.640625 257.503906 250.523438 Z M 257.503906 250.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.222656 249.914062 C 259.222656 249.796875 259.128906 249.703125 259.011719 249.703125 C 258.894531 249.703125 258.800781 249.796875 258.800781 249.914062 C 258.800781 250.03125 258.894531 250.125 259.011719 250.125 C 259.128906 250.125 259.222656 250.03125 259.222656 249.914062 Z M 259.222656 249.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.644531 251.136719 C 264.644531 251.019531 264.550781 250.925781 264.433594 250.925781 C 264.316406 250.925781 264.222656 251.019531 264.222656 251.136719 C 264.222656 251.253906 264.316406 251.347656 264.433594 251.347656 C 264.550781 251.347656 264.644531 251.253906 264.644531 251.136719 Z M 264.644531 251.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.828125 250.515625 C 264.828125 250.398438 264.734375 250.304688 264.617188 250.304688 C 264.5 250.304688 264.40625 250.398438 264.40625 250.515625 C 264.40625 250.632812 264.5 250.726562 264.617188 250.726562 C 264.734375 250.726562 264.828125 250.632812 264.828125 250.515625 Z M 264.828125 250.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.9375 252.988281 C 266.9375 252.871094 266.84375 252.777344 266.726562 252.777344 C 266.609375 252.777344 266.515625 252.871094 266.515625 252.988281 C 266.515625 253.105469 266.609375 253.199219 266.726562 253.199219 C 266.84375 253.199219 266.9375 253.105469 266.9375 252.988281 Z M 266.9375 252.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.949219 253.527344 C 263.949219 253.410156 263.855469 253.316406 263.738281 253.316406 C 263.621094 253.316406 263.527344 253.410156 263.527344 253.527344 C 263.527344 253.644531 263.621094 253.738281 263.738281 253.738281 C 263.855469 253.738281 263.949219 253.644531 263.949219 253.527344 Z M 263.949219 253.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.671875 254.761719 C 265.671875 254.644531 265.578125 254.550781 265.460938 254.550781 C 265.34375 254.550781 265.25 254.644531 265.25 254.761719 C 265.25 254.878906 265.34375 254.972656 265.460938 254.972656 C 265.578125 254.972656 265.671875 254.878906 265.671875 254.761719 Z M 265.671875 254.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.0625 255.476562 C 267.0625 255.359375 266.96875 255.265625 266.851562 255.265625 C 266.734375 255.265625 266.640625 255.359375 266.640625 255.476562 C 266.640625 255.59375 266.734375 255.6875 266.851562 255.6875 C 266.96875 255.6875 267.0625 255.59375 267.0625 255.476562 Z M 267.0625 255.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.902344 253.871094 C 267.902344 253.753906 267.808594 253.660156 267.691406 253.660156 C 267.574219 253.660156 267.480469 253.753906 267.480469 253.871094 C 267.480469 253.988281 267.574219 254.082031 267.691406 254.082031 C 267.808594 254.082031 267.902344 253.988281 267.902344 253.871094 Z M 267.902344 253.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.417969 256.335938 C 267.417969 256.21875 267.324219 256.125 267.207031 256.125 C 267.089844 256.125 266.996094 256.21875 266.996094 256.335938 C 266.996094 256.453125 267.089844 256.546875 267.207031 256.546875 C 267.324219 256.546875 267.417969 256.453125 267.417969 256.335938 Z M 267.417969 256.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.910156 254.980469 C 268.910156 254.863281 268.816406 254.769531 268.699219 254.769531 C 268.582031 254.769531 268.488281 254.863281 268.488281 254.980469 C 268.488281 255.097656 268.582031 255.191406 268.699219 255.191406 C 268.816406 255.191406 268.910156 255.097656 268.910156 254.980469 Z M 268.910156 254.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.164062 255.765625 C 269.164062 255.648438 269.070312 255.554688 268.953125 255.554688 C 268.835938 255.554688 268.742188 255.648438 268.742188 255.765625 C 268.742188 255.882812 268.835938 255.976562 268.953125 255.976562 C 269.070312 255.976562 269.164062 255.882812 269.164062 255.765625 Z M 269.164062 255.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.960938 257.722656 C 268.960938 257.605469 268.867188 257.511719 268.75 257.511719 C 268.632812 257.511719 268.539062 257.605469 268.539062 257.722656 C 268.539062 257.839844 268.632812 257.933594 268.75 257.933594 C 268.867188 257.933594 268.960938 257.839844 268.960938 257.722656 Z M 268.960938 257.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.140625 252.742188 C 269.140625 252.625 269.046875 252.53125 268.929688 252.53125 C 268.8125 252.53125 268.71875 252.625 268.71875 252.742188 C 268.71875 252.859375 268.8125 252.953125 268.929688 252.953125 C 269.046875 252.953125 269.140625 252.859375 269.140625 252.742188 Z M 269.140625 252.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.554688 254.046875 C 273.554688 253.929688 273.460938 253.835938 273.34375 253.835938 C 273.226562 253.835938 273.132812 253.929688 273.132812 254.046875 C 273.132812 254.164062 273.226562 254.257812 273.34375 254.257812 C 273.460938 254.257812 273.554688 254.164062 273.554688 254.046875 Z M 273.554688 254.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.652344 252.410156 C 272.652344 252.292969 272.558594 252.199219 272.441406 252.199219 C 272.324219 252.199219 272.230469 252.292969 272.230469 252.410156 C 272.230469 252.527344 272.324219 252.621094 272.441406 252.621094 C 272.558594 252.621094 272.652344 252.527344 272.652344 252.410156 Z M 272.652344 252.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.820312 249.839844 C 271.820312 249.722656 271.726562 249.628906 271.609375 249.628906 C 271.492188 249.628906 271.398438 249.722656 271.398438 249.839844 C 271.398438 249.957031 271.492188 250.050781 271.609375 250.050781 C 271.726562 250.050781 271.820312 249.957031 271.820312 249.839844 Z M 271.820312 249.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.800781 250.242188 C 268.800781 250.125 268.707031 250.03125 268.589844 250.03125 C 268.472656 250.03125 268.378906 250.125 268.378906 250.242188 C 268.378906 250.359375 268.472656 250.453125 268.589844 250.453125 C 268.707031 250.453125 268.800781 250.359375 268.800781 250.242188 Z M 268.800781 250.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.238281 252.09375 C 270.238281 251.976562 270.144531 251.882812 270.027344 251.882812 C 269.910156 251.882812 269.816406 251.976562 269.816406 252.09375 C 269.816406 252.210938 269.910156 252.304688 270.027344 252.304688 C 270.144531 252.304688 270.238281 252.210938 270.238281 252.09375 Z M 270.238281 252.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.746094 251.996094 C 270.746094 251.878906 270.652344 251.785156 270.535156 251.785156 C 270.417969 251.785156 270.324219 251.878906 270.324219 251.996094 C 270.324219 252.113281 270.417969 252.207031 270.535156 252.207031 C 270.652344 252.207031 270.746094 252.113281 270.746094 251.996094 Z M 270.746094 251.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.632812 251.078125 C 271.632812 250.960938 271.539062 250.867188 271.421875 250.867188 C 271.304688 250.867188 271.210938 250.960938 271.210938 251.078125 C 271.210938 251.195312 271.304688 251.289062 271.421875 251.289062 C 271.539062 251.289062 271.632812 251.195312 271.632812 251.078125 Z M 271.632812 251.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.042969 253.675781 C 271.042969 253.558594 270.949219 253.464844 270.832031 253.464844 C 270.714844 253.464844 270.621094 253.558594 270.621094 253.675781 C 270.621094 253.792969 270.714844 253.886719 270.832031 253.886719 C 270.949219 253.886719 271.042969 253.792969 271.042969 253.675781 Z M 271.042969 253.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.746094 257.191406 C 269.746094 257.074219 269.652344 256.980469 269.535156 256.980469 C 269.417969 256.980469 269.324219 257.074219 269.324219 257.191406 C 269.324219 257.308594 269.417969 257.402344 269.535156 257.402344 C 269.652344 257.402344 269.746094 257.308594 269.746094 257.191406 Z M 269.746094 257.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.0625 255.464844 C 267.0625 255.347656 266.96875 255.253906 266.851562 255.253906 C 266.734375 255.253906 266.640625 255.347656 266.640625 255.464844 C 266.640625 255.582031 266.734375 255.675781 266.851562 255.675781 C 266.96875 255.675781 267.0625 255.582031 267.0625 255.464844 Z M 267.0625 255.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.171875 256.253906 C 267.171875 256.136719 267.078125 256.042969 266.960938 256.042969 C 266.84375 256.042969 266.75 256.136719 266.75 256.253906 C 266.75 256.371094 266.84375 256.464844 266.960938 256.464844 C 267.078125 256.464844 267.171875 256.371094 267.171875 256.253906 Z M 267.171875 256.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.207031 257.804688 C 265.207031 257.6875 265.113281 257.59375 264.996094 257.59375 C 264.878906 257.59375 264.785156 257.6875 264.785156 257.804688 C 264.785156 257.921875 264.878906 258.015625 264.996094 258.015625 C 265.113281 258.015625 265.207031 257.921875 265.207031 257.804688 Z M 265.207031 257.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.820312 260.4375 C 266.820312 260.320312 266.726562 260.226562 266.609375 260.226562 C 266.492188 260.226562 266.398438 260.320312 266.398438 260.4375 C 266.398438 260.554688 266.492188 260.648438 266.609375 260.648438 C 266.726562 260.648438 266.820312 260.554688 266.820312 260.4375 Z M 266.820312 260.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.539062 261.742188 C 266.539062 261.625 266.445312 261.53125 266.328125 261.53125 C 266.210938 261.53125 266.117188 261.625 266.117188 261.742188 C 266.117188 261.859375 266.210938 261.953125 266.328125 261.953125 C 266.445312 261.953125 266.539062 261.859375 266.539062 261.742188 Z M 266.539062 261.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.109375 263.167969 C 266.109375 263.050781 266.015625 262.957031 265.898438 262.957031 C 265.78125 262.957031 265.6875 263.050781 265.6875 263.167969 C 265.6875 263.285156 265.78125 263.378906 265.898438 263.378906 C 266.015625 263.378906 266.109375 263.285156 266.109375 263.167969 Z M 266.109375 263.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.160156 264.171875 C 265.160156 264.054688 265.066406 263.960938 264.949219 263.960938 C 264.832031 263.960938 264.738281 264.054688 264.738281 264.171875 C 264.738281 264.289062 264.832031 264.382812 264.949219 264.382812 C 265.066406 264.382812 265.160156 264.289062 265.160156 264.171875 Z M 265.160156 264.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.183594 263.210938 C 265.183594 263.09375 265.089844 263 264.972656 263 C 264.855469 263 264.761719 263.09375 264.761719 263.210938 C 264.761719 263.328125 264.855469 263.421875 264.972656 263.421875 C 265.089844 263.421875 265.183594 263.328125 265.183594 263.210938 Z M 265.183594 263.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.347656 268.261719 C 268.347656 268.144531 268.253906 268.050781 268.136719 268.050781 C 268.019531 268.050781 267.925781 268.144531 267.925781 268.261719 C 267.925781 268.378906 268.019531 268.472656 268.136719 268.472656 C 268.253906 268.472656 268.347656 268.378906 268.347656 268.261719 Z M 268.347656 268.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.199219 262.261719 C 268.199219 262.144531 268.105469 262.050781 267.988281 262.050781 C 267.871094 262.050781 267.777344 262.144531 267.777344 262.261719 C 267.777344 262.378906 267.871094 262.472656 267.988281 262.472656 C 268.105469 262.472656 268.199219 262.378906 268.199219 262.261719 Z M 268.199219 262.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.652344 262.910156 C 267.652344 262.792969 267.558594 262.699219 267.441406 262.699219 C 267.324219 262.699219 267.230469 262.792969 267.230469 262.910156 C 267.230469 263.027344 267.324219 263.121094 267.441406 263.121094 C 267.558594 263.121094 267.652344 263.027344 267.652344 262.910156 Z M 267.652344 262.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.753906 264.085938 C 270.753906 263.96875 270.660156 263.875 270.542969 263.875 C 270.425781 263.875 270.332031 263.96875 270.332031 264.085938 C 270.332031 264.203125 270.425781 264.296875 270.542969 264.296875 C 270.660156 264.296875 270.753906 264.203125 270.753906 264.085938 Z M 270.753906 264.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.753906 262.296875 C 269.753906 262.179688 269.660156 262.085938 269.542969 262.085938 C 269.425781 262.085938 269.332031 262.179688 269.332031 262.296875 C 269.332031 262.414062 269.425781 262.507812 269.542969 262.507812 C 269.660156 262.507812 269.753906 262.414062 269.753906 262.296875 Z M 269.753906 262.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.644531 261.285156 C 268.644531 261.167969 268.550781 261.074219 268.433594 261.074219 C 268.316406 261.074219 268.222656 261.167969 268.222656 261.285156 C 268.222656 261.402344 268.316406 261.496094 268.433594 261.496094 C 268.550781 261.496094 268.644531 261.402344 268.644531 261.285156 Z M 268.644531 261.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.394531 262.226562 C 267.394531 262.109375 267.300781 262.015625 267.183594 262.015625 C 267.066406 262.015625 266.972656 262.109375 266.972656 262.226562 C 266.972656 262.34375 267.066406 262.4375 267.183594 262.4375 C 267.300781 262.4375 267.394531 262.34375 267.394531 262.226562 Z M 267.394531 262.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.953125 261.558594 C 266.953125 261.441406 266.859375 261.347656 266.742188 261.347656 C 266.625 261.347656 266.53125 261.441406 266.53125 261.558594 C 266.53125 261.675781 266.625 261.769531 266.742188 261.769531 C 266.859375 261.769531 266.953125 261.675781 266.953125 261.558594 Z M 266.953125 261.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.90625 258.136719 C 267.90625 258.019531 267.8125 257.925781 267.695312 257.925781 C 267.578125 257.925781 267.484375 258.019531 267.484375 258.136719 C 267.484375 258.253906 267.578125 258.347656 267.695312 258.347656 C 267.8125 258.347656 267.90625 258.253906 267.90625 258.136719 Z M 267.90625 258.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.257812 256.140625 C 269.257812 256.023438 269.164062 255.929688 269.046875 255.929688 C 268.929688 255.929688 268.835938 256.023438 268.835938 256.140625 C 268.835938 256.257812 268.929688 256.351562 269.046875 256.351562 C 269.164062 256.351562 269.257812 256.257812 269.257812 256.140625 Z M 269.257812 256.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.441406 259.539062 C 269.441406 259.421875 269.347656 259.328125 269.230469 259.328125 C 269.113281 259.328125 269.019531 259.421875 269.019531 259.539062 C 269.019531 259.65625 269.113281 259.75 269.230469 259.75 C 269.347656 259.75 269.441406 259.65625 269.441406 259.539062 Z M 269.441406 259.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.917969 259.363281 C 265.917969 259.246094 265.824219 259.152344 265.707031 259.152344 C 265.589844 259.152344 265.496094 259.246094 265.496094 259.363281 C 265.496094 259.480469 265.589844 259.574219 265.707031 259.574219 C 265.824219 259.574219 265.917969 259.480469 265.917969 259.363281 Z M 265.917969 259.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.359375 259.617188 C 269.359375 259.5 269.265625 259.40625 269.148438 259.40625 C 269.03125 259.40625 268.9375 259.5 268.9375 259.617188 C 268.9375 259.734375 269.03125 259.828125 269.148438 259.828125 C 269.265625 259.828125 269.359375 259.734375 269.359375 259.617188 Z M 269.359375 259.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.734375 260.335938 C 268.734375 260.21875 268.640625 260.125 268.523438 260.125 C 268.40625 260.125 268.3125 260.21875 268.3125 260.335938 C 268.3125 260.453125 268.40625 260.546875 268.523438 260.546875 C 268.640625 260.546875 268.734375 260.453125 268.734375 260.335938 Z M 268.734375 260.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.597656 261.535156 C 267.597656 261.417969 267.503906 261.324219 267.386719 261.324219 C 267.269531 261.324219 267.175781 261.417969 267.175781 261.535156 C 267.175781 261.652344 267.269531 261.746094 267.386719 261.746094 C 267.503906 261.746094 267.597656 261.652344 267.597656 261.535156 Z M 267.597656 261.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.34375 261 C 264.34375 260.882812 264.25 260.789062 264.132812 260.789062 C 264.015625 260.789062 263.921875 260.882812 263.921875 261 C 263.921875 261.117188 264.015625 261.210938 264.132812 261.210938 C 264.25 261.210938 264.34375 261.117188 264.34375 261 Z M 264.34375 261 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.851562 258.109375 C 264.851562 257.992188 264.757812 257.898438 264.640625 257.898438 C 264.523438 257.898438 264.429688 257.992188 264.429688 258.109375 C 264.429688 258.226562 264.523438 258.320312 264.640625 258.320312 C 264.757812 258.320312 264.851562 258.226562 264.851562 258.109375 Z M 264.851562 258.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.679688 254.050781 C 263.679688 253.933594 263.585938 253.839844 263.46875 253.839844 C 263.351562 253.839844 263.257812 253.933594 263.257812 254.050781 C 263.257812 254.167969 263.351562 254.261719 263.46875 254.261719 C 263.585938 254.261719 263.679688 254.167969 263.679688 254.050781 Z M 263.679688 254.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.769531 253.394531 C 263.769531 253.277344 263.675781 253.183594 263.558594 253.183594 C 263.441406 253.183594 263.347656 253.277344 263.347656 253.394531 C 263.347656 253.511719 263.441406 253.605469 263.558594 253.605469 C 263.675781 253.605469 263.769531 253.511719 263.769531 253.394531 Z M 263.769531 253.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.617188 251.660156 C 264.617188 251.542969 264.523438 251.449219 264.40625 251.449219 C 264.289062 251.449219 264.195312 251.542969 264.195312 251.660156 C 264.195312 251.777344 264.289062 251.871094 264.40625 251.871094 C 264.523438 251.871094 264.617188 251.777344 264.617188 251.660156 Z M 264.617188 251.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.808594 252.9375 C 264.808594 252.820312 264.714844 252.726562 264.597656 252.726562 C 264.480469 252.726562 264.386719 252.820312 264.386719 252.9375 C 264.386719 253.054688 264.480469 253.148438 264.597656 253.148438 C 264.714844 253.148438 264.808594 253.054688 264.808594 252.9375 Z M 264.808594 252.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.613281 252.066406 C 265.613281 251.949219 265.519531 251.855469 265.402344 251.855469 C 265.285156 251.855469 265.191406 251.949219 265.191406 252.066406 C 265.191406 252.183594 265.285156 252.277344 265.402344 252.277344 C 265.519531 252.277344 265.613281 252.183594 265.613281 252.066406 Z M 265.613281 252.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.847656 254.75 C 267.847656 254.632812 267.753906 254.539062 267.636719 254.539062 C 267.519531 254.539062 267.425781 254.632812 267.425781 254.75 C 267.425781 254.867188 267.519531 254.960938 267.636719 254.960938 C 267.753906 254.960938 267.847656 254.867188 267.847656 254.75 Z M 267.847656 254.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.488281 257.511719 C 264.488281 257.394531 264.394531 257.300781 264.277344 257.300781 C 264.160156 257.300781 264.066406 257.394531 264.066406 257.511719 C 264.066406 257.628906 264.160156 257.722656 264.277344 257.722656 C 264.394531 257.722656 264.488281 257.628906 264.488281 257.511719 Z M 264.488281 257.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.851562 255.625 C 261.851562 255.507812 261.757812 255.414062 261.640625 255.414062 C 261.523438 255.414062 261.429688 255.507812 261.429688 255.625 C 261.429688 255.742188 261.523438 255.835938 261.640625 255.835938 C 261.757812 255.835938 261.851562 255.742188 261.851562 255.625 Z M 261.851562 255.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.308594 254.976562 C 257.308594 254.859375 257.214844 254.765625 257.097656 254.765625 C 256.980469 254.765625 256.886719 254.859375 256.886719 254.976562 C 256.886719 255.09375 256.980469 255.1875 257.097656 255.1875 C 257.214844 255.1875 257.308594 255.09375 257.308594 254.976562 Z M 257.308594 254.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.367188 253.734375 C 259.367188 253.617188 259.273438 253.523438 259.15625 253.523438 C 259.039062 253.523438 258.945312 253.617188 258.945312 253.734375 C 258.945312 253.851562 259.039062 253.945312 259.15625 253.945312 C 259.273438 253.945312 259.367188 253.851562 259.367188 253.734375 Z M 259.367188 253.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.269531 255.730469 C 259.269531 255.613281 259.175781 255.519531 259.058594 255.519531 C 258.941406 255.519531 258.847656 255.613281 258.847656 255.730469 C 258.847656 255.847656 258.941406 255.941406 259.058594 255.941406 C 259.175781 255.941406 259.269531 255.847656 259.269531 255.730469 Z M 259.269531 255.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.285156 251.980469 C 259.285156 251.863281 259.191406 251.769531 259.074219 251.769531 C 258.957031 251.769531 258.863281 251.863281 258.863281 251.980469 C 258.863281 252.097656 258.957031 252.191406 259.074219 252.191406 C 259.191406 252.191406 259.285156 252.097656 259.285156 251.980469 Z M 259.285156 251.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.628906 252.164062 C 261.628906 252.046875 261.535156 251.953125 261.417969 251.953125 C 261.300781 251.953125 261.207031 252.046875 261.207031 252.164062 C 261.207031 252.28125 261.300781 252.375 261.417969 252.375 C 261.535156 252.375 261.628906 252.28125 261.628906 252.164062 Z M 261.628906 252.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.917969 251.691406 C 264.917969 251.574219 264.824219 251.480469 264.707031 251.480469 C 264.589844 251.480469 264.496094 251.574219 264.496094 251.691406 C 264.496094 251.808594 264.589844 251.902344 264.707031 251.902344 C 264.824219 251.902344 264.917969 251.808594 264.917969 251.691406 Z M 264.917969 251.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.074219 249.742188 C 264.074219 249.625 263.980469 249.53125 263.863281 249.53125 C 263.746094 249.53125 263.652344 249.625 263.652344 249.742188 C 263.652344 249.859375 263.746094 249.953125 263.863281 249.953125 C 263.980469 249.953125 264.074219 249.859375 264.074219 249.742188 Z M 264.074219 249.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.941406 249.691406 C 261.941406 249.574219 261.847656 249.480469 261.730469 249.480469 C 261.613281 249.480469 261.519531 249.574219 261.519531 249.691406 C 261.519531 249.808594 261.613281 249.902344 261.730469 249.902344 C 261.847656 249.902344 261.941406 249.808594 261.941406 249.691406 Z M 261.941406 249.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.683594 249.378906 C 263.683594 249.261719 263.589844 249.167969 263.472656 249.167969 C 263.355469 249.167969 263.261719 249.261719 263.261719 249.378906 C 263.261719 249.496094 263.355469 249.589844 263.472656 249.589844 C 263.589844 249.589844 263.683594 249.496094 263.683594 249.378906 Z M 263.683594 249.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.835938 251.484375 C 264.835938 251.367188 264.742188 251.273438 264.625 251.273438 C 264.507812 251.273438 264.414062 251.367188 264.414062 251.484375 C 264.414062 251.601562 264.507812 251.695312 264.625 251.695312 C 264.742188 251.695312 264.835938 251.601562 264.835938 251.484375 Z M 264.835938 251.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.417969 251.03125 C 262.417969 250.914062 262.324219 250.820312 262.207031 250.820312 C 262.089844 250.820312 261.996094 250.914062 261.996094 251.03125 C 261.996094 251.148438 262.089844 251.242188 262.207031 251.242188 C 262.324219 251.242188 262.417969 251.148438 262.417969 251.03125 Z M 262.417969 251.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.265625 250.777344 C 259.265625 250.660156 259.171875 250.566406 259.054688 250.566406 C 258.9375 250.566406 258.84375 250.660156 258.84375 250.777344 C 258.84375 250.894531 258.9375 250.988281 259.054688 250.988281 C 259.171875 250.988281 259.265625 250.894531 259.265625 250.777344 Z M 259.265625 250.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.15625 252.058594 C 262.15625 251.941406 262.0625 251.847656 261.945312 251.847656 C 261.828125 251.847656 261.734375 251.941406 261.734375 252.058594 C 261.734375 252.175781 261.828125 252.269531 261.945312 252.269531 C 262.0625 252.269531 262.15625 252.175781 262.15625 252.058594 Z M 262.15625 252.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.863281 253.324219 C 259.863281 253.207031 259.769531 253.113281 259.652344 253.113281 C 259.535156 253.113281 259.441406 253.207031 259.441406 253.324219 C 259.441406 253.441406 259.535156 253.535156 259.652344 253.535156 C 259.769531 253.535156 259.863281 253.441406 259.863281 253.324219 Z M 259.863281 253.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.410156 253.996094 C 260.410156 253.878906 260.316406 253.785156 260.199219 253.785156 C 260.082031 253.785156 259.988281 253.878906 259.988281 253.996094 C 259.988281 254.113281 260.082031 254.207031 260.199219 254.207031 C 260.316406 254.207031 260.410156 254.113281 260.410156 253.996094 Z M 260.410156 253.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.738281 254.476562 C 258.738281 254.359375 258.644531 254.265625 258.527344 254.265625 C 258.410156 254.265625 258.316406 254.359375 258.316406 254.476562 C 258.316406 254.59375 258.410156 254.6875 258.527344 254.6875 C 258.644531 254.6875 258.738281 254.59375 258.738281 254.476562 Z M 258.738281 254.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.4375 254.066406 C 260.4375 253.949219 260.34375 253.855469 260.226562 253.855469 C 260.109375 253.855469 260.015625 253.949219 260.015625 254.066406 C 260.015625 254.183594 260.109375 254.277344 260.226562 254.277344 C 260.34375 254.277344 260.4375 254.183594 260.4375 254.066406 Z M 260.4375 254.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.960938 252.332031 C 263.960938 252.214844 263.867188 252.121094 263.75 252.121094 C 263.632812 252.121094 263.539062 252.214844 263.539062 252.332031 C 263.539062 252.449219 263.632812 252.542969 263.75 252.542969 C 263.867188 252.542969 263.960938 252.449219 263.960938 252.332031 Z M 263.960938 252.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.871094 251.945312 C 266.871094 251.828125 266.777344 251.734375 266.660156 251.734375 C 266.542969 251.734375 266.449219 251.828125 266.449219 251.945312 C 266.449219 252.0625 266.542969 252.15625 266.660156 252.15625 C 266.777344 252.15625 266.871094 252.0625 266.871094 251.945312 Z M 266.871094 251.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.445312 250.316406 C 269.445312 250.199219 269.351562 250.105469 269.234375 250.105469 C 269.117188 250.105469 269.023438 250.199219 269.023438 250.316406 C 269.023438 250.433594 269.117188 250.527344 269.234375 250.527344 C 269.351562 250.527344 269.445312 250.433594 269.445312 250.316406 Z M 269.445312 250.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.925781 249.046875 C 266.925781 248.929688 266.832031 248.835938 266.714844 248.835938 C 266.597656 248.835938 266.503906 248.929688 266.503906 249.046875 C 266.503906 249.164062 266.597656 249.257812 266.714844 249.257812 C 266.832031 249.257812 266.925781 249.164062 266.925781 249.046875 Z M 266.925781 249.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.636719 247.25 C 266.636719 247.132812 266.542969 247.039062 266.425781 247.039062 C 266.308594 247.039062 266.214844 247.132812 266.214844 247.25 C 266.214844 247.367188 266.308594 247.460938 266.425781 247.460938 C 266.542969 247.460938 266.636719 247.367188 266.636719 247.25 Z M 266.636719 247.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.890625 243.1875 C 263.890625 243.070312 263.796875 242.976562 263.679688 242.976562 C 263.5625 242.976562 263.46875 243.070312 263.46875 243.1875 C 263.46875 243.304688 263.5625 243.398438 263.679688 243.398438 C 263.796875 243.398438 263.890625 243.304688 263.890625 243.1875 Z M 263.890625 243.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.660156 242.316406 C 267.660156 242.199219 267.566406 242.105469 267.449219 242.105469 C 267.332031 242.105469 267.238281 242.199219 267.238281 242.316406 C 267.238281 242.433594 267.332031 242.527344 267.449219 242.527344 C 267.566406 242.527344 267.660156 242.433594 267.660156 242.316406 Z M 267.660156 242.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.707031 244.105469 C 263.707031 243.988281 263.613281 243.894531 263.496094 243.894531 C 263.378906 243.894531 263.285156 243.988281 263.285156 244.105469 C 263.285156 244.222656 263.378906 244.316406 263.496094 244.316406 C 263.613281 244.316406 263.707031 244.222656 263.707031 244.105469 Z M 263.707031 244.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.441406 243.394531 C 264.441406 243.277344 264.347656 243.183594 264.230469 243.183594 C 264.113281 243.183594 264.019531 243.277344 264.019531 243.394531 C 264.019531 243.511719 264.113281 243.605469 264.230469 243.605469 C 264.347656 243.605469 264.441406 243.511719 264.441406 243.394531 Z M 264.441406 243.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.503906 244.007812 C 262.503906 243.890625 262.410156 243.796875 262.292969 243.796875 C 262.175781 243.796875 262.082031 243.890625 262.082031 244.007812 C 262.082031 244.125 262.175781 244.21875 262.292969 244.21875 C 262.410156 244.21875 262.503906 244.125 262.503906 244.007812 Z M 262.503906 244.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.054688 248.164062 C 262.054688 248.046875 261.960938 247.953125 261.84375 247.953125 C 261.726562 247.953125 261.632812 248.046875 261.632812 248.164062 C 261.632812 248.28125 261.726562 248.375 261.84375 248.375 C 261.960938 248.375 262.054688 248.28125 262.054688 248.164062 Z M 262.054688 248.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.71875 252.5625 C 262.71875 252.445312 262.625 252.351562 262.507812 252.351562 C 262.390625 252.351562 262.296875 252.445312 262.296875 252.5625 C 262.296875 252.679688 262.390625 252.773438 262.507812 252.773438 C 262.625 252.773438 262.71875 252.679688 262.71875 252.5625 Z M 262.71875 252.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.371094 254.804688 C 262.371094 254.6875 262.277344 254.59375 262.160156 254.59375 C 262.042969 254.59375 261.949219 254.6875 261.949219 254.804688 C 261.949219 254.921875 262.042969 255.015625 262.160156 255.015625 C 262.277344 255.015625 262.371094 254.921875 262.371094 254.804688 Z M 262.371094 254.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.640625 255.414062 C 261.640625 255.296875 261.546875 255.203125 261.429688 255.203125 C 261.3125 255.203125 261.21875 255.296875 261.21875 255.414062 C 261.21875 255.53125 261.3125 255.625 261.429688 255.625 C 261.546875 255.625 261.640625 255.53125 261.640625 255.414062 Z M 261.640625 255.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.859375 254.695312 C 261.859375 254.578125 261.765625 254.484375 261.648438 254.484375 C 261.53125 254.484375 261.4375 254.578125 261.4375 254.695312 C 261.4375 254.8125 261.53125 254.90625 261.648438 254.90625 C 261.765625 254.90625 261.859375 254.8125 261.859375 254.695312 Z M 261.859375 254.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.496094 257.933594 C 259.496094 257.816406 259.402344 257.722656 259.285156 257.722656 C 259.167969 257.722656 259.074219 257.816406 259.074219 257.933594 C 259.074219 258.050781 259.167969 258.144531 259.285156 258.144531 C 259.402344 258.144531 259.496094 258.050781 259.496094 257.933594 Z M 259.496094 257.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.460938 255.699219 C 261.460938 255.582031 261.367188 255.488281 261.25 255.488281 C 261.132812 255.488281 261.039062 255.582031 261.039062 255.699219 C 261.039062 255.816406 261.132812 255.910156 261.25 255.910156 C 261.367188 255.910156 261.460938 255.816406 261.460938 255.699219 Z M 261.460938 255.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.167969 250.308594 C 264.167969 250.191406 264.074219 250.097656 263.957031 250.097656 C 263.839844 250.097656 263.746094 250.191406 263.746094 250.308594 C 263.746094 250.425781 263.839844 250.519531 263.957031 250.519531 C 264.074219 250.519531 264.167969 250.425781 264.167969 250.308594 Z M 264.167969 250.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.320312 248.546875 C 262.320312 248.429688 262.226562 248.335938 262.109375 248.335938 C 261.992188 248.335938 261.898438 248.429688 261.898438 248.546875 C 261.898438 248.664062 261.992188 248.757812 262.109375 248.757812 C 262.226562 248.757812 262.320312 248.664062 262.320312 248.546875 Z M 262.320312 248.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.980469 250.761719 C 262.980469 250.644531 262.886719 250.550781 262.769531 250.550781 C 262.652344 250.550781 262.558594 250.644531 262.558594 250.761719 C 262.558594 250.878906 262.652344 250.972656 262.769531 250.972656 C 262.886719 250.972656 262.980469 250.878906 262.980469 250.761719 Z M 262.980469 250.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.953125 249.601562 C 267.953125 249.484375 267.859375 249.390625 267.742188 249.390625 C 267.625 249.390625 267.53125 249.484375 267.53125 249.601562 C 267.53125 249.71875 267.625 249.8125 267.742188 249.8125 C 267.859375 249.8125 267.953125 249.71875 267.953125 249.601562 Z M 267.953125 249.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.183594 252.554688 C 265.183594 252.4375 265.089844 252.34375 264.972656 252.34375 C 264.855469 252.34375 264.761719 252.4375 264.761719 252.554688 C 264.761719 252.671875 264.855469 252.765625 264.972656 252.765625 C 265.089844 252.765625 265.183594 252.671875 265.183594 252.554688 Z M 265.183594 252.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.660156 253.253906 C 270.660156 253.136719 270.566406 253.042969 270.449219 253.042969 C 270.332031 253.042969 270.238281 253.136719 270.238281 253.253906 C 270.238281 253.371094 270.332031 253.464844 270.449219 253.464844 C 270.566406 253.464844 270.660156 253.371094 270.660156 253.253906 Z M 270.660156 253.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.859375 253.339844 C 269.859375 253.222656 269.765625 253.128906 269.648438 253.128906 C 269.53125 253.128906 269.4375 253.222656 269.4375 253.339844 C 269.4375 253.457031 269.53125 253.550781 269.648438 253.550781 C 269.765625 253.550781 269.859375 253.457031 269.859375 253.339844 Z M 269.859375 253.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.917969 251.398438 C 270.917969 251.28125 270.824219 251.1875 270.707031 251.1875 C 270.589844 251.1875 270.496094 251.28125 270.496094 251.398438 C 270.496094 251.515625 270.589844 251.609375 270.707031 251.609375 C 270.824219 251.609375 270.917969 251.515625 270.917969 251.398438 Z M 270.917969 251.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.726562 248.417969 C 266.726562 248.300781 266.632812 248.207031 266.515625 248.207031 C 266.398438 248.207031 266.304688 248.300781 266.304688 248.417969 C 266.304688 248.535156 266.398438 248.628906 266.515625 248.628906 C 266.632812 248.628906 266.726562 248.535156 266.726562 248.417969 Z M 266.726562 248.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.371094 247.328125 C 262.371094 247.210938 262.277344 247.117188 262.160156 247.117188 C 262.042969 247.117188 261.949219 247.210938 261.949219 247.328125 C 261.949219 247.445312 262.042969 247.539062 262.160156 247.539062 C 262.277344 247.539062 262.371094 247.445312 262.371094 247.328125 Z M 262.371094 247.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.632812 245.851562 C 260.632812 245.734375 260.539062 245.640625 260.421875 245.640625 C 260.304688 245.640625 260.210938 245.734375 260.210938 245.851562 C 260.210938 245.96875 260.304688 246.0625 260.421875 246.0625 C 260.539062 246.0625 260.632812 245.96875 260.632812 245.851562 Z M 260.632812 245.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.230469 248.464844 C 256.230469 248.347656 256.136719 248.253906 256.019531 248.253906 C 255.902344 248.253906 255.808594 248.347656 255.808594 248.464844 C 255.808594 248.582031 255.902344 248.675781 256.019531 248.675781 C 256.136719 248.675781 256.230469 248.582031 256.230469 248.464844 Z M 256.230469 248.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.421875 247.960938 C 256.421875 247.84375 256.328125 247.75 256.210938 247.75 C 256.09375 247.75 256 247.84375 256 247.960938 C 256 248.078125 256.09375 248.171875 256.210938 248.171875 C 256.328125 248.171875 256.421875 248.078125 256.421875 247.960938 Z M 256.421875 247.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.394531 252.078125 C 260.394531 251.960938 260.300781 251.867188 260.183594 251.867188 C 260.066406 251.867188 259.972656 251.960938 259.972656 252.078125 C 259.972656 252.195312 260.066406 252.289062 260.183594 252.289062 C 260.300781 252.289062 260.394531 252.195312 260.394531 252.078125 Z M 260.394531 252.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.117188 246.066406 C 256.117188 245.949219 256.023438 245.855469 255.90625 245.855469 C 255.789062 245.855469 255.695312 245.949219 255.695312 246.066406 C 255.695312 246.183594 255.789062 246.277344 255.90625 246.277344 C 256.023438 246.277344 256.117188 246.183594 256.117188 246.066406 Z M 256.117188 246.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.964844 247.90625 C 257.964844 247.789062 257.871094 247.695312 257.753906 247.695312 C 257.636719 247.695312 257.542969 247.789062 257.542969 247.90625 C 257.542969 248.023438 257.636719 248.117188 257.753906 248.117188 C 257.871094 248.117188 257.964844 248.023438 257.964844 247.90625 Z M 257.964844 247.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.90625 244.734375 C 256.90625 244.617188 256.8125 244.523438 256.695312 244.523438 C 256.578125 244.523438 256.484375 244.617188 256.484375 244.734375 C 256.484375 244.851562 256.578125 244.945312 256.695312 244.945312 C 256.8125 244.945312 256.90625 244.851562 256.90625 244.734375 Z M 256.90625 244.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.789062 243.214844 C 257.789062 243.097656 257.695312 243.003906 257.578125 243.003906 C 257.460938 243.003906 257.367188 243.097656 257.367188 243.214844 C 257.367188 243.332031 257.460938 243.425781 257.578125 243.425781 C 257.695312 243.425781 257.789062 243.332031 257.789062 243.214844 Z M 257.789062 243.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.441406 246.996094 C 256.441406 246.878906 256.347656 246.785156 256.230469 246.785156 C 256.113281 246.785156 256.019531 246.878906 256.019531 246.996094 C 256.019531 247.113281 256.113281 247.207031 256.230469 247.207031 C 256.347656 247.207031 256.441406 247.113281 256.441406 246.996094 Z M 256.441406 246.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.457031 246.855469 C 254.457031 246.738281 254.363281 246.644531 254.246094 246.644531 C 254.128906 246.644531 254.035156 246.738281 254.035156 246.855469 C 254.035156 246.972656 254.128906 247.066406 254.246094 247.066406 C 254.363281 247.066406 254.457031 246.972656 254.457031 246.855469 Z M 254.457031 246.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.097656 247.257812 C 257.097656 247.140625 257.003906 247.046875 256.886719 247.046875 C 256.769531 247.046875 256.675781 247.140625 256.675781 247.257812 C 256.675781 247.375 256.769531 247.46875 256.886719 247.46875 C 257.003906 247.46875 257.097656 247.375 257.097656 247.257812 Z M 257.097656 247.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.917969 247.214844 C 260.917969 247.097656 260.824219 247.003906 260.707031 247.003906 C 260.589844 247.003906 260.496094 247.097656 260.496094 247.214844 C 260.496094 247.332031 260.589844 247.425781 260.707031 247.425781 C 260.824219 247.425781 260.917969 247.332031 260.917969 247.214844 Z M 260.917969 247.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.105469 243.816406 C 265.105469 243.699219 265.011719 243.605469 264.894531 243.605469 C 264.777344 243.605469 264.683594 243.699219 264.683594 243.816406 C 264.683594 243.933594 264.777344 244.027344 264.894531 244.027344 C 265.011719 244.027344 265.105469 243.933594 265.105469 243.816406 Z M 265.105469 243.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.511719 244.054688 C 264.511719 243.9375 264.417969 243.84375 264.300781 243.84375 C 264.183594 243.84375 264.089844 243.9375 264.089844 244.054688 C 264.089844 244.171875 264.183594 244.265625 264.300781 244.265625 C 264.417969 244.265625 264.511719 244.171875 264.511719 244.054688 Z M 264.511719 244.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.027344 247.441406 C 263.027344 247.324219 262.933594 247.230469 262.816406 247.230469 C 262.699219 247.230469 262.605469 247.324219 262.605469 247.441406 C 262.605469 247.558594 262.699219 247.652344 262.816406 247.652344 C 262.933594 247.652344 263.027344 247.558594 263.027344 247.441406 Z M 263.027344 247.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.167969 247.484375 C 260.167969 247.367188 260.074219 247.273438 259.957031 247.273438 C 259.839844 247.273438 259.746094 247.367188 259.746094 247.484375 C 259.746094 247.601562 259.839844 247.695312 259.957031 247.695312 C 260.074219 247.695312 260.167969 247.601562 260.167969 247.484375 Z M 260.167969 247.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.78125 250.328125 C 261.78125 250.210938 261.6875 250.117188 261.570312 250.117188 C 261.453125 250.117188 261.359375 250.210938 261.359375 250.328125 C 261.359375 250.445312 261.453125 250.539062 261.570312 250.539062 C 261.6875 250.539062 261.78125 250.445312 261.78125 250.328125 Z M 261.78125 250.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.132812 250.144531 C 264.132812 250.027344 264.039062 249.933594 263.921875 249.933594 C 263.804688 249.933594 263.710938 250.027344 263.710938 250.144531 C 263.710938 250.261719 263.804688 250.355469 263.921875 250.355469 C 264.039062 250.355469 264.132812 250.261719 264.132812 250.144531 Z M 264.132812 250.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.980469 254.957031 C 263.980469 254.839844 263.886719 254.746094 263.769531 254.746094 C 263.652344 254.746094 263.558594 254.839844 263.558594 254.957031 C 263.558594 255.074219 263.652344 255.167969 263.769531 255.167969 C 263.886719 255.167969 263.980469 255.074219 263.980469 254.957031 Z M 263.980469 254.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.1875 259.539062 C 268.1875 259.421875 268.09375 259.328125 267.976562 259.328125 C 267.859375 259.328125 267.765625 259.421875 267.765625 259.539062 C 267.765625 259.65625 267.859375 259.75 267.976562 259.75 C 268.09375 259.75 268.1875 259.65625 268.1875 259.539062 Z M 268.1875 259.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.304688 257.015625 C 268.304688 256.898438 268.210938 256.804688 268.09375 256.804688 C 267.976562 256.804688 267.882812 256.898438 267.882812 257.015625 C 267.882812 257.132812 267.976562 257.226562 268.09375 257.226562 C 268.210938 257.226562 268.304688 257.132812 268.304688 257.015625 Z M 268.304688 257.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.789062 256.222656 C 269.789062 256.105469 269.695312 256.011719 269.578125 256.011719 C 269.460938 256.011719 269.367188 256.105469 269.367188 256.222656 C 269.367188 256.339844 269.460938 256.433594 269.578125 256.433594 C 269.695312 256.433594 269.789062 256.339844 269.789062 256.222656 Z M 269.789062 256.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.410156 256.496094 C 270.410156 256.378906 270.316406 256.285156 270.199219 256.285156 C 270.082031 256.285156 269.988281 256.378906 269.988281 256.496094 C 269.988281 256.613281 270.082031 256.707031 270.199219 256.707031 C 270.316406 256.707031 270.410156 256.613281 270.410156 256.496094 Z M 270.410156 256.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.835938 256.089844 C 271.835938 255.972656 271.742188 255.878906 271.625 255.878906 C 271.507812 255.878906 271.414062 255.972656 271.414062 256.089844 C 271.414062 256.207031 271.507812 256.300781 271.625 256.300781 C 271.742188 256.300781 271.835938 256.207031 271.835938 256.089844 Z M 271.835938 256.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272 255.914062 C 272 255.796875 271.90625 255.703125 271.789062 255.703125 C 271.671875 255.703125 271.578125 255.796875 271.578125 255.914062 C 271.578125 256.03125 271.671875 256.125 271.789062 256.125 C 271.90625 256.125 272 256.03125 272 255.914062 Z M 272 255.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.820312 257.222656 C 268.820312 257.105469 268.726562 257.011719 268.609375 257.011719 C 268.492188 257.011719 268.398438 257.105469 268.398438 257.222656 C 268.398438 257.339844 268.492188 257.433594 268.609375 257.433594 C 268.726562 257.433594 268.820312 257.339844 268.820312 257.222656 Z M 268.820312 257.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.738281 257.71875 C 267.738281 257.601562 267.644531 257.507812 267.527344 257.507812 C 267.410156 257.507812 267.316406 257.601562 267.316406 257.71875 C 267.316406 257.835938 267.410156 257.929688 267.527344 257.929688 C 267.644531 257.929688 267.738281 257.835938 267.738281 257.71875 Z M 267.738281 257.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.390625 258.078125 C 267.390625 257.960938 267.296875 257.867188 267.179688 257.867188 C 267.0625 257.867188 266.96875 257.960938 266.96875 258.078125 C 266.96875 258.195312 267.0625 258.289062 267.179688 258.289062 C 267.296875 258.289062 267.390625 258.195312 267.390625 258.078125 Z M 267.390625 258.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.882812 259.949219 C 270.882812 259.832031 270.789062 259.738281 270.671875 259.738281 C 270.554688 259.738281 270.460938 259.832031 270.460938 259.949219 C 270.460938 260.066406 270.554688 260.160156 270.671875 260.160156 C 270.789062 260.160156 270.882812 260.066406 270.882812 259.949219 Z M 270.882812 259.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.875 260.75 C 275.875 260.632812 275.78125 260.539062 275.664062 260.539062 C 275.546875 260.539062 275.453125 260.632812 275.453125 260.75 C 275.453125 260.867188 275.546875 260.960938 275.664062 260.960938 C 275.78125 260.960938 275.875 260.867188 275.875 260.75 Z M 275.875 260.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.480469 262.375 C 275.480469 262.257812 275.386719 262.164062 275.269531 262.164062 C 275.152344 262.164062 275.058594 262.257812 275.058594 262.375 C 275.058594 262.492188 275.152344 262.585938 275.269531 262.585938 C 275.386719 262.585938 275.480469 262.492188 275.480469 262.375 Z M 275.480469 262.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.28125 263.652344 C 274.28125 263.535156 274.1875 263.441406 274.070312 263.441406 C 273.953125 263.441406 273.859375 263.535156 273.859375 263.652344 C 273.859375 263.769531 273.953125 263.863281 274.070312 263.863281 C 274.1875 263.863281 274.28125 263.769531 274.28125 263.652344 Z M 274.28125 263.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.316406 266.496094 C 274.316406 266.378906 274.222656 266.285156 274.105469 266.285156 C 273.988281 266.285156 273.894531 266.378906 273.894531 266.496094 C 273.894531 266.613281 273.988281 266.707031 274.105469 266.707031 C 274.222656 266.707031 274.316406 266.613281 274.316406 266.496094 Z M 274.316406 266.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.210938 264.542969 C 270.210938 264.425781 270.117188 264.332031 270 264.332031 C 269.882812 264.332031 269.789062 264.425781 269.789062 264.542969 C 269.789062 264.660156 269.882812 264.753906 270 264.753906 C 270.117188 264.753906 270.210938 264.660156 270.210938 264.542969 Z M 270.210938 264.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.558594 264.023438 C 267.558594 263.90625 267.464844 263.8125 267.347656 263.8125 C 267.230469 263.8125 267.136719 263.90625 267.136719 264.023438 C 267.136719 264.140625 267.230469 264.234375 267.347656 264.234375 C 267.464844 264.234375 267.558594 264.140625 267.558594 264.023438 Z M 267.558594 264.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.828125 262.792969 C 266.828125 262.675781 266.734375 262.582031 266.617188 262.582031 C 266.5 262.582031 266.40625 262.675781 266.40625 262.792969 C 266.40625 262.910156 266.5 263.003906 266.617188 263.003906 C 266.734375 263.003906 266.828125 262.910156 266.828125 262.792969 Z M 266.828125 262.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.476562 264.078125 C 263.476562 263.960938 263.382812 263.867188 263.265625 263.867188 C 263.148438 263.867188 263.054688 263.960938 263.054688 264.078125 C 263.054688 264.195312 263.148438 264.289062 263.265625 264.289062 C 263.382812 264.289062 263.476562 264.195312 263.476562 264.078125 Z M 263.476562 264.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.28125 264.492188 C 263.28125 264.375 263.1875 264.28125 263.070312 264.28125 C 262.953125 264.28125 262.859375 264.375 262.859375 264.492188 C 262.859375 264.609375 262.953125 264.703125 263.070312 264.703125 C 263.1875 264.703125 263.28125 264.609375 263.28125 264.492188 Z M 263.28125 264.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.140625 262.503906 C 261.140625 262.386719 261.046875 262.292969 260.929688 262.292969 C 260.8125 262.292969 260.71875 262.386719 260.71875 262.503906 C 260.71875 262.621094 260.8125 262.714844 260.929688 262.714844 C 261.046875 262.714844 261.140625 262.621094 261.140625 262.503906 Z M 261.140625 262.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.757812 262.445312 C 259.757812 262.328125 259.664062 262.234375 259.546875 262.234375 C 259.429688 262.234375 259.335938 262.328125 259.335938 262.445312 C 259.335938 262.5625 259.429688 262.65625 259.546875 262.65625 C 259.664062 262.65625 259.757812 262.5625 259.757812 262.445312 Z M 259.757812 262.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.726562 261.796875 C 261.726562 261.679688 261.632812 261.585938 261.515625 261.585938 C 261.398438 261.585938 261.304688 261.679688 261.304688 261.796875 C 261.304688 261.914062 261.398438 262.007812 261.515625 262.007812 C 261.632812 262.007812 261.726562 261.914062 261.726562 261.796875 Z M 261.726562 261.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.816406 260.996094 C 257.816406 260.878906 257.722656 260.785156 257.605469 260.785156 C 257.488281 260.785156 257.394531 260.878906 257.394531 260.996094 C 257.394531 261.113281 257.488281 261.207031 257.605469 261.207031 C 257.722656 261.207031 257.816406 261.113281 257.816406 260.996094 Z M 257.816406 260.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.394531 257.25 C 258.394531 257.132812 258.300781 257.039062 258.183594 257.039062 C 258.066406 257.039062 257.972656 257.132812 257.972656 257.25 C 257.972656 257.367188 258.066406 257.460938 258.183594 257.460938 C 258.300781 257.460938 258.394531 257.367188 258.394531 257.25 Z M 258.394531 257.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.871094 255.863281 C 260.871094 255.746094 260.777344 255.652344 260.660156 255.652344 C 260.542969 255.652344 260.449219 255.746094 260.449219 255.863281 C 260.449219 255.980469 260.542969 256.074219 260.660156 256.074219 C 260.777344 256.074219 260.871094 255.980469 260.871094 255.863281 Z M 260.871094 255.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.390625 260.433594 C 259.390625 260.316406 259.296875 260.222656 259.179688 260.222656 C 259.0625 260.222656 258.96875 260.316406 258.96875 260.433594 C 258.96875 260.550781 259.0625 260.644531 259.179688 260.644531 C 259.296875 260.644531 259.390625 260.550781 259.390625 260.433594 Z M 259.390625 260.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.515625 259.167969 C 259.515625 259.050781 259.421875 258.957031 259.304688 258.957031 C 259.1875 258.957031 259.09375 259.050781 259.09375 259.167969 C 259.09375 259.285156 259.1875 259.378906 259.304688 259.378906 C 259.421875 259.378906 259.515625 259.285156 259.515625 259.167969 Z M 259.515625 259.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.414062 259.023438 C 262.414062 258.90625 262.320312 258.8125 262.203125 258.8125 C 262.085938 258.8125 261.992188 258.90625 261.992188 259.023438 C 261.992188 259.140625 262.085938 259.234375 262.203125 259.234375 C 262.320312 259.234375 262.414062 259.140625 262.414062 259.023438 Z M 262.414062 259.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.179688 258.417969 C 261.179688 258.300781 261.085938 258.207031 260.96875 258.207031 C 260.851562 258.207031 260.757812 258.300781 260.757812 258.417969 C 260.757812 258.535156 260.851562 258.628906 260.96875 258.628906 C 261.085938 258.628906 261.179688 258.535156 261.179688 258.417969 Z M 261.179688 258.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.226562 258.269531 C 260.226562 258.152344 260.132812 258.058594 260.015625 258.058594 C 259.898438 258.058594 259.804688 258.152344 259.804688 258.269531 C 259.804688 258.386719 259.898438 258.480469 260.015625 258.480469 C 260.132812 258.480469 260.226562 258.386719 260.226562 258.269531 Z M 260.226562 258.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.117188 258.671875 C 264.117188 258.554688 264.023438 258.460938 263.90625 258.460938 C 263.789062 258.460938 263.695312 258.554688 263.695312 258.671875 C 263.695312 258.789062 263.789062 258.882812 263.90625 258.882812 C 264.023438 258.882812 264.117188 258.789062 264.117188 258.671875 Z M 264.117188 258.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.539062 258.359375 C 263.539062 258.242188 263.445312 258.148438 263.328125 258.148438 C 263.210938 258.148438 263.117188 258.242188 263.117188 258.359375 C 263.117188 258.476562 263.210938 258.570312 263.328125 258.570312 C 263.445312 258.570312 263.539062 258.476562 263.539062 258.359375 Z M 263.539062 258.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.917969 253.382812 C 263.917969 253.265625 263.824219 253.171875 263.707031 253.171875 C 263.589844 253.171875 263.496094 253.265625 263.496094 253.382812 C 263.496094 253.5 263.589844 253.59375 263.707031 253.59375 C 263.824219 253.59375 263.917969 253.5 263.917969 253.382812 Z M 263.917969 253.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.457031 251.875 C 265.457031 251.757812 265.363281 251.664062 265.246094 251.664062 C 265.128906 251.664062 265.035156 251.757812 265.035156 251.875 C 265.035156 251.992188 265.128906 252.085938 265.246094 252.085938 C 265.363281 252.085938 265.457031 251.992188 265.457031 251.875 Z M 265.457031 251.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.460938 253.332031 C 266.460938 253.214844 266.367188 253.121094 266.25 253.121094 C 266.132812 253.121094 266.039062 253.214844 266.039062 253.332031 C 266.039062 253.449219 266.132812 253.542969 266.25 253.542969 C 266.367188 253.542969 266.460938 253.449219 266.460938 253.332031 Z M 266.460938 253.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.761719 254.277344 C 266.761719 254.160156 266.667969 254.066406 266.550781 254.066406 C 266.433594 254.066406 266.339844 254.160156 266.339844 254.277344 C 266.339844 254.394531 266.433594 254.488281 266.550781 254.488281 C 266.667969 254.488281 266.761719 254.394531 266.761719 254.277344 Z M 266.761719 254.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.078125 251.265625 C 266.078125 251.148438 265.984375 251.054688 265.867188 251.054688 C 265.75 251.054688 265.65625 251.148438 265.65625 251.265625 C 265.65625 251.382812 265.75 251.476562 265.867188 251.476562 C 265.984375 251.476562 266.078125 251.382812 266.078125 251.265625 Z M 266.078125 251.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.425781 248.710938 C 267.425781 248.59375 267.332031 248.5 267.214844 248.5 C 267.097656 248.5 267.003906 248.59375 267.003906 248.710938 C 267.003906 248.828125 267.097656 248.921875 267.214844 248.921875 C 267.332031 248.921875 267.425781 248.828125 267.425781 248.710938 Z M 267.425781 248.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.660156 252.359375 C 266.660156 252.242188 266.566406 252.148438 266.449219 252.148438 C 266.332031 252.148438 266.238281 252.242188 266.238281 252.359375 C 266.238281 252.476562 266.332031 252.570312 266.449219 252.570312 C 266.566406 252.570312 266.660156 252.476562 266.660156 252.359375 Z M 266.660156 252.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.429688 253.226562 C 269.429688 253.109375 269.335938 253.015625 269.21875 253.015625 C 269.101562 253.015625 269.007812 253.109375 269.007812 253.226562 C 269.007812 253.34375 269.101562 253.4375 269.21875 253.4375 C 269.335938 253.4375 269.429688 253.34375 269.429688 253.226562 Z M 269.429688 253.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.46875 254.480469 C 266.46875 254.363281 266.375 254.269531 266.257812 254.269531 C 266.140625 254.269531 266.046875 254.363281 266.046875 254.480469 C 266.046875 254.597656 266.140625 254.691406 266.257812 254.691406 C 266.375 254.691406 266.46875 254.597656 266.46875 254.480469 Z M 266.46875 254.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.828125 252.167969 C 267.828125 252.050781 267.734375 251.957031 267.617188 251.957031 C 267.5 251.957031 267.40625 252.050781 267.40625 252.167969 C 267.40625 252.285156 267.5 252.378906 267.617188 252.378906 C 267.734375 252.378906 267.828125 252.285156 267.828125 252.167969 Z M 267.828125 252.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.574219 251.019531 C 265.574219 250.902344 265.480469 250.808594 265.363281 250.808594 C 265.246094 250.808594 265.152344 250.902344 265.152344 251.019531 C 265.152344 251.136719 265.246094 251.230469 265.363281 251.230469 C 265.480469 251.230469 265.574219 251.136719 265.574219 251.019531 Z M 265.574219 251.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.660156 253.101562 C 263.660156 252.984375 263.566406 252.890625 263.449219 252.890625 C 263.332031 252.890625 263.238281 252.984375 263.238281 253.101562 C 263.238281 253.21875 263.332031 253.3125 263.449219 253.3125 C 263.566406 253.3125 263.660156 253.21875 263.660156 253.101562 Z M 263.660156 253.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.585938 251.761719 C 264.585938 251.644531 264.492188 251.550781 264.375 251.550781 C 264.257812 251.550781 264.164062 251.644531 264.164062 251.761719 C 264.164062 251.878906 264.257812 251.972656 264.375 251.972656 C 264.492188 251.972656 264.585938 251.878906 264.585938 251.761719 Z M 264.585938 251.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.550781 251.875 C 266.550781 251.757812 266.457031 251.664062 266.339844 251.664062 C 266.222656 251.664062 266.128906 251.757812 266.128906 251.875 C 266.128906 251.992188 266.222656 252.085938 266.339844 252.085938 C 266.457031 252.085938 266.550781 251.992188 266.550781 251.875 Z M 266.550781 251.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.28125 255.308594 C 266.28125 255.191406 266.1875 255.097656 266.070312 255.097656 C 265.953125 255.097656 265.859375 255.191406 265.859375 255.308594 C 265.859375 255.425781 265.953125 255.519531 266.070312 255.519531 C 266.1875 255.519531 266.28125 255.425781 266.28125 255.308594 Z M 266.28125 255.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.746094 256.59375 C 265.746094 256.476562 265.652344 256.382812 265.535156 256.382812 C 265.417969 256.382812 265.324219 256.476562 265.324219 256.59375 C 265.324219 256.710938 265.417969 256.804688 265.535156 256.804688 C 265.652344 256.804688 265.746094 256.710938 265.746094 256.59375 Z M 265.746094 256.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.195312 256.992188 C 266.195312 256.875 266.101562 256.78125 265.984375 256.78125 C 265.867188 256.78125 265.773438 256.875 265.773438 256.992188 C 265.773438 257.109375 265.867188 257.203125 265.984375 257.203125 C 266.101562 257.203125 266.195312 257.109375 266.195312 256.992188 Z M 266.195312 256.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.480469 255.746094 C 266.480469 255.628906 266.386719 255.535156 266.269531 255.535156 C 266.152344 255.535156 266.058594 255.628906 266.058594 255.746094 C 266.058594 255.863281 266.152344 255.957031 266.269531 255.957031 C 266.386719 255.957031 266.480469 255.863281 266.480469 255.746094 Z M 266.480469 255.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.398438 254.789062 C 266.398438 254.671875 266.304688 254.578125 266.1875 254.578125 C 266.070312 254.578125 265.976562 254.671875 265.976562 254.789062 C 265.976562 254.90625 266.070312 255 266.1875 255 C 266.304688 255 266.398438 254.90625 266.398438 254.789062 Z M 266.398438 254.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.320312 252.113281 C 268.320312 251.996094 268.226562 251.902344 268.109375 251.902344 C 267.992188 251.902344 267.898438 251.996094 267.898438 252.113281 C 267.898438 252.230469 267.992188 252.324219 268.109375 252.324219 C 268.226562 252.324219 268.320312 252.230469 268.320312 252.113281 Z M 268.320312 252.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.882812 253.714844 C 266.882812 253.597656 266.789062 253.503906 266.671875 253.503906 C 266.554688 253.503906 266.460938 253.597656 266.460938 253.714844 C 266.460938 253.832031 266.554688 253.925781 266.671875 253.925781 C 266.789062 253.925781 266.882812 253.832031 266.882812 253.714844 Z M 266.882812 253.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.585938 254.992188 C 266.585938 254.875 266.492188 254.78125 266.375 254.78125 C 266.257812 254.78125 266.164062 254.875 266.164062 254.992188 C 266.164062 255.109375 266.257812 255.203125 266.375 255.203125 C 266.492188 255.203125 266.585938 255.109375 266.585938 254.992188 Z M 266.585938 254.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.328125 255 C 270.328125 254.882812 270.234375 254.789062 270.117188 254.789062 C 270 254.789062 269.90625 254.882812 269.90625 255 C 269.90625 255.117188 270 255.210938 270.117188 255.210938 C 270.234375 255.210938 270.328125 255.117188 270.328125 255 Z M 270.328125 255 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.816406 254.28125 C 271.816406 254.164062 271.722656 254.070312 271.605469 254.070312 C 271.488281 254.070312 271.394531 254.164062 271.394531 254.28125 C 271.394531 254.398438 271.488281 254.492188 271.605469 254.492188 C 271.722656 254.492188 271.816406 254.398438 271.816406 254.28125 Z M 271.816406 254.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.105469 255.835938 C 271.105469 255.71875 271.011719 255.625 270.894531 255.625 C 270.777344 255.625 270.683594 255.71875 270.683594 255.835938 C 270.683594 255.953125 270.777344 256.046875 270.894531 256.046875 C 271.011719 256.046875 271.105469 255.953125 271.105469 255.835938 Z M 271.105469 255.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.574219 254.984375 C 269.574219 254.867188 269.480469 254.773438 269.363281 254.773438 C 269.246094 254.773438 269.152344 254.867188 269.152344 254.984375 C 269.152344 255.101562 269.246094 255.195312 269.363281 255.195312 C 269.480469 255.195312 269.574219 255.101562 269.574219 254.984375 Z M 269.574219 254.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.976562 251.105469 C 270.976562 250.988281 270.882812 250.894531 270.765625 250.894531 C 270.648438 250.894531 270.554688 250.988281 270.554688 251.105469 C 270.554688 251.222656 270.648438 251.316406 270.765625 251.316406 C 270.882812 251.316406 270.976562 251.222656 270.976562 251.105469 Z M 270.976562 251.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.269531 251.011719 C 267.269531 250.894531 267.175781 250.800781 267.058594 250.800781 C 266.941406 250.800781 266.847656 250.894531 266.847656 251.011719 C 266.847656 251.128906 266.941406 251.222656 267.058594 251.222656 C 267.175781 251.222656 267.269531 251.128906 267.269531 251.011719 Z M 267.269531 251.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.367188 247.507812 C 267.367188 247.390625 267.273438 247.296875 267.15625 247.296875 C 267.039062 247.296875 266.945312 247.390625 266.945312 247.507812 C 266.945312 247.625 267.039062 247.71875 267.15625 247.71875 C 267.273438 247.71875 267.367188 247.625 267.367188 247.507812 Z M 267.367188 247.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.320312 249.019531 C 268.320312 248.902344 268.226562 248.808594 268.109375 248.808594 C 267.992188 248.808594 267.898438 248.902344 267.898438 249.019531 C 267.898438 249.136719 267.992188 249.230469 268.109375 249.230469 C 268.226562 249.230469 268.320312 249.136719 268.320312 249.019531 Z M 268.320312 249.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.410156 250.953125 C 270.410156 250.835938 270.316406 250.742188 270.199219 250.742188 C 270.082031 250.742188 269.988281 250.835938 269.988281 250.953125 C 269.988281 251.070312 270.082031 251.164062 270.199219 251.164062 C 270.316406 251.164062 270.410156 251.070312 270.410156 250.953125 Z M 270.410156 250.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.601562 252.21875 C 273.601562 252.101562 273.507812 252.007812 273.390625 252.007812 C 273.273438 252.007812 273.179688 252.101562 273.179688 252.21875 C 273.179688 252.335938 273.273438 252.429688 273.390625 252.429688 C 273.507812 252.429688 273.601562 252.335938 273.601562 252.21875 Z M 273.601562 252.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.355469 256.601562 C 275.355469 256.484375 275.261719 256.390625 275.144531 256.390625 C 275.027344 256.390625 274.933594 256.484375 274.933594 256.601562 C 274.933594 256.71875 275.027344 256.8125 275.144531 256.8125 C 275.261719 256.8125 275.355469 256.71875 275.355469 256.601562 Z M 275.355469 256.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.820312 256.285156 C 276.820312 256.167969 276.726562 256.074219 276.609375 256.074219 C 276.492188 256.074219 276.398438 256.167969 276.398438 256.285156 C 276.398438 256.402344 276.492188 256.496094 276.609375 256.496094 C 276.726562 256.496094 276.820312 256.402344 276.820312 256.285156 Z M 276.820312 256.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.851562 257.75 C 281.851562 257.632812 281.757812 257.539062 281.640625 257.539062 C 281.523438 257.539062 281.429688 257.632812 281.429688 257.75 C 281.429688 257.867188 281.523438 257.960938 281.640625 257.960938 C 281.757812 257.960938 281.851562 257.867188 281.851562 257.75 Z M 281.851562 257.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.433594 256.636719 C 282.433594 256.519531 282.339844 256.425781 282.222656 256.425781 C 282.105469 256.425781 282.011719 256.519531 282.011719 256.636719 C 282.011719 256.753906 282.105469 256.847656 282.222656 256.847656 C 282.339844 256.847656 282.433594 256.753906 282.433594 256.636719 Z M 282.433594 256.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.265625 258.507812 C 283.265625 258.390625 283.171875 258.296875 283.054688 258.296875 C 282.9375 258.296875 282.84375 258.390625 282.84375 258.507812 C 282.84375 258.625 282.9375 258.71875 283.054688 258.71875 C 283.171875 258.71875 283.265625 258.625 283.265625 258.507812 Z M 283.265625 258.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.371094 257.25 C 279.371094 257.132812 279.277344 257.039062 279.160156 257.039062 C 279.042969 257.039062 278.949219 257.132812 278.949219 257.25 C 278.949219 257.367188 279.042969 257.460938 279.160156 257.460938 C 279.277344 257.460938 279.371094 257.367188 279.371094 257.25 Z M 279.371094 257.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.097656 260.152344 C 281.097656 260.035156 281.003906 259.941406 280.886719 259.941406 C 280.769531 259.941406 280.675781 260.035156 280.675781 260.152344 C 280.675781 260.269531 280.769531 260.363281 280.886719 260.363281 C 281.003906 260.363281 281.097656 260.269531 281.097656 260.152344 Z M 281.097656 260.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.035156 261.464844 C 282.035156 261.347656 281.941406 261.253906 281.824219 261.253906 C 281.707031 261.253906 281.613281 261.347656 281.613281 261.464844 C 281.613281 261.582031 281.707031 261.675781 281.824219 261.675781 C 281.941406 261.675781 282.035156 261.582031 282.035156 261.464844 Z M 282.035156 261.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.726562 260.367188 C 282.726562 260.25 282.632812 260.15625 282.515625 260.15625 C 282.398438 260.15625 282.304688 260.25 282.304688 260.367188 C 282.304688 260.484375 282.398438 260.578125 282.515625 260.578125 C 282.632812 260.578125 282.726562 260.484375 282.726562 260.367188 Z M 282.726562 260.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.980469 261.601562 C 282.980469 261.484375 282.886719 261.390625 282.769531 261.390625 C 282.652344 261.390625 282.558594 261.484375 282.558594 261.601562 C 282.558594 261.71875 282.652344 261.8125 282.769531 261.8125 C 282.886719 261.8125 282.980469 261.71875 282.980469 261.601562 Z M 282.980469 261.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.378906 260.164062 C 279.378906 260.046875 279.285156 259.953125 279.167969 259.953125 C 279.050781 259.953125 278.957031 260.046875 278.957031 260.164062 C 278.957031 260.28125 279.050781 260.375 279.167969 260.375 C 279.285156 260.375 279.378906 260.28125 279.378906 260.164062 Z M 279.378906 260.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.144531 259.457031 C 276.144531 259.339844 276.050781 259.246094 275.933594 259.246094 C 275.816406 259.246094 275.722656 259.339844 275.722656 259.457031 C 275.722656 259.574219 275.816406 259.667969 275.933594 259.667969 C 276.050781 259.667969 276.144531 259.574219 276.144531 259.457031 Z M 276.144531 259.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.574219 258.449219 C 279.574219 258.332031 279.480469 258.238281 279.363281 258.238281 C 279.246094 258.238281 279.152344 258.332031 279.152344 258.449219 C 279.152344 258.566406 279.246094 258.660156 279.363281 258.660156 C 279.480469 258.660156 279.574219 258.566406 279.574219 258.449219 Z M 279.574219 258.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.753906 255.019531 C 276.753906 254.902344 276.660156 254.808594 276.542969 254.808594 C 276.425781 254.808594 276.332031 254.902344 276.332031 255.019531 C 276.332031 255.136719 276.425781 255.230469 276.542969 255.230469 C 276.660156 255.230469 276.753906 255.136719 276.753906 255.019531 Z M 276.753906 255.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.410156 255.386719 C 278.410156 255.269531 278.316406 255.175781 278.199219 255.175781 C 278.082031 255.175781 277.988281 255.269531 277.988281 255.386719 C 277.988281 255.503906 278.082031 255.597656 278.199219 255.597656 C 278.316406 255.597656 278.410156 255.503906 278.410156 255.386719 Z M 278.410156 255.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.992188 259.246094 C 276.992188 259.128906 276.898438 259.035156 276.78125 259.035156 C 276.664062 259.035156 276.570312 259.128906 276.570312 259.246094 C 276.570312 259.363281 276.664062 259.457031 276.78125 259.457031 C 276.898438 259.457031 276.992188 259.363281 276.992188 259.246094 Z M 276.992188 259.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.742188 260.570312 C 276.742188 260.453125 276.648438 260.359375 276.53125 260.359375 C 276.414062 260.359375 276.320312 260.453125 276.320312 260.570312 C 276.320312 260.6875 276.414062 260.78125 276.53125 260.78125 C 276.648438 260.78125 276.742188 260.6875 276.742188 260.570312 Z M 276.742188 260.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.28125 262.441406 C 277.28125 262.324219 277.1875 262.230469 277.070312 262.230469 C 276.953125 262.230469 276.859375 262.324219 276.859375 262.441406 C 276.859375 262.558594 276.953125 262.652344 277.070312 262.652344 C 277.1875 262.652344 277.28125 262.558594 277.28125 262.441406 Z M 277.28125 262.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.519531 261.035156 C 275.519531 260.917969 275.425781 260.824219 275.308594 260.824219 C 275.191406 260.824219 275.097656 260.917969 275.097656 261.035156 C 275.097656 261.152344 275.191406 261.246094 275.308594 261.246094 C 275.425781 261.246094 275.519531 261.152344 275.519531 261.035156 Z M 275.519531 261.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.746094 262.46875 C 275.746094 262.351562 275.652344 262.257812 275.535156 262.257812 C 275.417969 262.257812 275.324219 262.351562 275.324219 262.46875 C 275.324219 262.585938 275.417969 262.679688 275.535156 262.679688 C 275.652344 262.679688 275.746094 262.585938 275.746094 262.46875 Z M 275.746094 262.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.238281 263.84375 C 278.238281 263.726562 278.144531 263.632812 278.027344 263.632812 C 277.910156 263.632812 277.816406 263.726562 277.816406 263.84375 C 277.816406 263.960938 277.910156 264.054688 278.027344 264.054688 C 278.144531 264.054688 278.238281 263.960938 278.238281 263.84375 Z M 278.238281 263.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.894531 264.121094 C 280.894531 264.003906 280.800781 263.910156 280.683594 263.910156 C 280.566406 263.910156 280.472656 264.003906 280.472656 264.121094 C 280.472656 264.238281 280.566406 264.332031 280.683594 264.332031 C 280.800781 264.332031 280.894531 264.238281 280.894531 264.121094 Z M 280.894531 264.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.277344 265.839844 C 283.277344 265.722656 283.183594 265.628906 283.066406 265.628906 C 282.949219 265.628906 282.855469 265.722656 282.855469 265.839844 C 282.855469 265.957031 282.949219 266.050781 283.066406 266.050781 C 283.183594 266.050781 283.277344 265.957031 283.277344 265.839844 Z M 283.277344 265.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.832031 266.480469 C 281.832031 266.363281 281.738281 266.269531 281.621094 266.269531 C 281.503906 266.269531 281.410156 266.363281 281.410156 266.480469 C 281.410156 266.597656 281.503906 266.691406 281.621094 266.691406 C 281.738281 266.691406 281.832031 266.597656 281.832031 266.480469 Z M 281.832031 266.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.464844 268.398438 C 283.464844 268.28125 283.371094 268.1875 283.253906 268.1875 C 283.136719 268.1875 283.042969 268.28125 283.042969 268.398438 C 283.042969 268.515625 283.136719 268.609375 283.253906 268.609375 C 283.371094 268.609375 283.464844 268.515625 283.464844 268.398438 Z M 283.464844 268.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.050781 266.71875 C 280.050781 266.601562 279.957031 266.507812 279.839844 266.507812 C 279.722656 266.507812 279.628906 266.601562 279.628906 266.71875 C 279.628906 266.835938 279.722656 266.929688 279.839844 266.929688 C 279.957031 266.929688 280.050781 266.835938 280.050781 266.71875 Z M 280.050781 266.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.835938 264.269531 C 278.835938 264.152344 278.742188 264.058594 278.625 264.058594 C 278.507812 264.058594 278.414062 264.152344 278.414062 264.269531 C 278.414062 264.386719 278.507812 264.480469 278.625 264.480469 C 278.742188 264.480469 278.835938 264.386719 278.835938 264.269531 Z M 278.835938 264.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.957031 264.074219 C 276.957031 263.957031 276.863281 263.863281 276.746094 263.863281 C 276.628906 263.863281 276.535156 263.957031 276.535156 264.074219 C 276.535156 264.191406 276.628906 264.285156 276.746094 264.285156 C 276.863281 264.285156 276.957031 264.191406 276.957031 264.074219 Z M 276.957031 264.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.257812 263.792969 C 277.257812 263.675781 277.164062 263.582031 277.046875 263.582031 C 276.929688 263.582031 276.835938 263.675781 276.835938 263.792969 C 276.835938 263.910156 276.929688 264.003906 277.046875 264.003906 C 277.164062 264.003906 277.257812 263.910156 277.257812 263.792969 Z M 277.257812 263.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.046875 267.449219 C 277.046875 267.332031 276.953125 267.238281 276.835938 267.238281 C 276.71875 267.238281 276.625 267.332031 276.625 267.449219 C 276.625 267.566406 276.71875 267.660156 276.835938 267.660156 C 276.953125 267.660156 277.046875 267.566406 277.046875 267.449219 Z M 277.046875 267.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.558594 271.203125 C 275.558594 271.085938 275.464844 270.992188 275.347656 270.992188 C 275.230469 270.992188 275.136719 271.085938 275.136719 271.203125 C 275.136719 271.320312 275.230469 271.414062 275.347656 271.414062 C 275.464844 271.414062 275.558594 271.320312 275.558594 271.203125 Z M 275.558594 271.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.949219 270.441406 C 279.949219 270.324219 279.855469 270.230469 279.738281 270.230469 C 279.621094 270.230469 279.527344 270.324219 279.527344 270.441406 C 279.527344 270.558594 279.621094 270.652344 279.738281 270.652344 C 279.855469 270.652344 279.949219 270.558594 279.949219 270.441406 Z M 279.949219 270.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.105469 269.65625 C 279.105469 269.539062 279.011719 269.445312 278.894531 269.445312 C 278.777344 269.445312 278.683594 269.539062 278.683594 269.65625 C 278.683594 269.773438 278.777344 269.867188 278.894531 269.867188 C 279.011719 269.867188 279.105469 269.773438 279.105469 269.65625 Z M 279.105469 269.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.40625 267.574219 C 276.40625 267.457031 276.3125 267.363281 276.195312 267.363281 C 276.078125 267.363281 275.984375 267.457031 275.984375 267.574219 C 275.984375 267.691406 276.078125 267.785156 276.195312 267.785156 C 276.3125 267.785156 276.40625 267.691406 276.40625 267.574219 Z M 276.40625 267.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.902344 267.746094 C 272.902344 267.628906 272.808594 267.535156 272.691406 267.535156 C 272.574219 267.535156 272.480469 267.628906 272.480469 267.746094 C 272.480469 267.863281 272.574219 267.957031 272.691406 267.957031 C 272.808594 267.957031 272.902344 267.863281 272.902344 267.746094 Z M 272.902344 267.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.734375 274.164062 C 272.734375 274.046875 272.640625 273.953125 272.523438 273.953125 C 272.40625 273.953125 272.3125 274.046875 272.3125 274.164062 C 272.3125 274.28125 272.40625 274.375 272.523438 274.375 C 272.640625 274.375 272.734375 274.28125 272.734375 274.164062 Z M 272.734375 274.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.09375 274.371094 C 272.09375 274.253906 272 274.160156 271.882812 274.160156 C 271.765625 274.160156 271.671875 274.253906 271.671875 274.371094 C 271.671875 274.488281 271.765625 274.582031 271.882812 274.582031 C 272 274.582031 272.09375 274.488281 272.09375 274.371094 Z M 272.09375 274.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.214844 272.59375 C 271.214844 272.476562 271.121094 272.382812 271.003906 272.382812 C 270.886719 272.382812 270.792969 272.476562 270.792969 272.59375 C 270.792969 272.710938 270.886719 272.804688 271.003906 272.804688 C 271.121094 272.804688 271.214844 272.710938 271.214844 272.59375 Z M 271.214844 272.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.804688 269.257812 C 270.804688 269.140625 270.710938 269.046875 270.59375 269.046875 C 270.476562 269.046875 270.382812 269.140625 270.382812 269.257812 C 270.382812 269.375 270.476562 269.46875 270.59375 269.46875 C 270.710938 269.46875 270.804688 269.375 270.804688 269.257812 Z M 270.804688 269.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.660156 268.371094 C 270.660156 268.253906 270.566406 268.160156 270.449219 268.160156 C 270.332031 268.160156 270.238281 268.253906 270.238281 268.371094 C 270.238281 268.488281 270.332031 268.582031 270.449219 268.582031 C 270.566406 268.582031 270.660156 268.488281 270.660156 268.371094 Z M 270.660156 268.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.25 265.34375 C 268.25 265.226562 268.15625 265.132812 268.039062 265.132812 C 267.921875 265.132812 267.828125 265.226562 267.828125 265.34375 C 267.828125 265.460938 267.921875 265.554688 268.039062 265.554688 C 268.15625 265.554688 268.25 265.460938 268.25 265.34375 Z M 268.25 265.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.722656 265.886719 C 265.722656 265.769531 265.628906 265.675781 265.511719 265.675781 C 265.394531 265.675781 265.300781 265.769531 265.300781 265.886719 C 265.300781 266.003906 265.394531 266.097656 265.511719 266.097656 C 265.628906 266.097656 265.722656 266.003906 265.722656 265.886719 Z M 265.722656 265.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.597656 266.492188 C 261.597656 266.375 261.503906 266.28125 261.386719 266.28125 C 261.269531 266.28125 261.175781 266.375 261.175781 266.492188 C 261.175781 266.609375 261.269531 266.703125 261.386719 266.703125 C 261.503906 266.703125 261.597656 266.609375 261.597656 266.492188 Z M 261.597656 266.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.621094 270.570312 C 259.621094 270.453125 259.527344 270.359375 259.410156 270.359375 C 259.292969 270.359375 259.199219 270.453125 259.199219 270.570312 C 259.199219 270.6875 259.292969 270.78125 259.410156 270.78125 C 259.527344 270.78125 259.621094 270.6875 259.621094 270.570312 Z M 259.621094 270.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.394531 269.796875 C 258.394531 269.679688 258.300781 269.585938 258.183594 269.585938 C 258.066406 269.585938 257.972656 269.679688 257.972656 269.796875 C 257.972656 269.914062 258.066406 270.007812 258.183594 270.007812 C 258.300781 270.007812 258.394531 269.914062 258.394531 269.796875 Z M 258.394531 269.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.0625 269.453125 C 258.0625 269.335938 257.96875 269.242188 257.851562 269.242188 C 257.734375 269.242188 257.640625 269.335938 257.640625 269.453125 C 257.640625 269.570312 257.734375 269.664062 257.851562 269.664062 C 257.96875 269.664062 258.0625 269.570312 258.0625 269.453125 Z M 258.0625 269.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.328125 271.566406 C 259.328125 271.449219 259.234375 271.355469 259.117188 271.355469 C 259 271.355469 258.90625 271.449219 258.90625 271.566406 C 258.90625 271.683594 259 271.777344 259.117188 271.777344 C 259.234375 271.777344 259.328125 271.683594 259.328125 271.566406 Z M 259.328125 271.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.679688 271.042969 C 255.679688 270.925781 255.585938 270.832031 255.46875 270.832031 C 255.351562 270.832031 255.257812 270.925781 255.257812 271.042969 C 255.257812 271.160156 255.351562 271.253906 255.46875 271.253906 C 255.585938 271.253906 255.679688 271.160156 255.679688 271.042969 Z M 255.679688 271.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.375 272.953125 C 257.375 272.835938 257.28125 272.742188 257.164062 272.742188 C 257.046875 272.742188 256.953125 272.835938 256.953125 272.953125 C 256.953125 273.070312 257.046875 273.164062 257.164062 273.164062 C 257.28125 273.164062 257.375 273.070312 257.375 272.953125 Z M 257.375 272.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.910156 277.828125 C 258.910156 277.710938 258.816406 277.617188 258.699219 277.617188 C 258.582031 277.617188 258.488281 277.710938 258.488281 277.828125 C 258.488281 277.945312 258.582031 278.039062 258.699219 278.039062 C 258.816406 278.039062 258.910156 277.945312 258.910156 277.828125 Z M 258.910156 277.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.734375 279.597656 C 260.734375 279.480469 260.640625 279.386719 260.523438 279.386719 C 260.40625 279.386719 260.3125 279.480469 260.3125 279.597656 C 260.3125 279.714844 260.40625 279.808594 260.523438 279.808594 C 260.640625 279.808594 260.734375 279.714844 260.734375 279.597656 Z M 260.734375 279.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.894531 277.378906 C 262.894531 277.261719 262.800781 277.167969 262.683594 277.167969 C 262.566406 277.167969 262.472656 277.261719 262.472656 277.378906 C 262.472656 277.496094 262.566406 277.589844 262.683594 277.589844 C 262.800781 277.589844 262.894531 277.496094 262.894531 277.378906 Z M 262.894531 277.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.15625 276.292969 C 262.15625 276.175781 262.0625 276.082031 261.945312 276.082031 C 261.828125 276.082031 261.734375 276.175781 261.734375 276.292969 C 261.734375 276.410156 261.828125 276.503906 261.945312 276.503906 C 262.0625 276.503906 262.15625 276.410156 262.15625 276.292969 Z M 262.15625 276.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.238281 274.007812 C 264.238281 273.890625 264.144531 273.796875 264.027344 273.796875 C 263.910156 273.796875 263.816406 273.890625 263.816406 274.007812 C 263.816406 274.125 263.910156 274.21875 264.027344 274.21875 C 264.144531 274.21875 264.238281 274.125 264.238281 274.007812 Z M 264.238281 274.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.988281 275.039062 C 263.988281 274.921875 263.894531 274.828125 263.777344 274.828125 C 263.660156 274.828125 263.566406 274.921875 263.566406 275.039062 C 263.566406 275.15625 263.660156 275.25 263.777344 275.25 C 263.894531 275.25 263.988281 275.15625 263.988281 275.039062 Z M 263.988281 275.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.421875 278.210938 C 261.421875 278.09375 261.328125 278 261.210938 278 C 261.09375 278 261 278.09375 261 278.210938 C 261 278.328125 261.09375 278.421875 261.210938 278.421875 C 261.328125 278.421875 261.421875 278.328125 261.421875 278.210938 Z M 261.421875 278.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.558594 278.777344 C 259.558594 278.660156 259.464844 278.566406 259.347656 278.566406 C 259.230469 278.566406 259.136719 278.660156 259.136719 278.777344 C 259.136719 278.894531 259.230469 278.988281 259.347656 278.988281 C 259.464844 278.988281 259.558594 278.894531 259.558594 278.777344 Z M 259.558594 278.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.601562 278.28125 C 261.601562 278.164062 261.507812 278.070312 261.390625 278.070312 C 261.273438 278.070312 261.179688 278.164062 261.179688 278.28125 C 261.179688 278.398438 261.273438 278.492188 261.390625 278.492188 C 261.507812 278.492188 261.601562 278.398438 261.601562 278.28125 Z M 261.601562 278.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.566406 278.980469 C 261.566406 278.863281 261.472656 278.769531 261.355469 278.769531 C 261.238281 278.769531 261.144531 278.863281 261.144531 278.980469 C 261.144531 279.097656 261.238281 279.191406 261.355469 279.191406 C 261.472656 279.191406 261.566406 279.097656 261.566406 278.980469 Z M 261.566406 278.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.355469 278.027344 C 260.355469 277.910156 260.261719 277.816406 260.144531 277.816406 C 260.027344 277.816406 259.933594 277.910156 259.933594 278.027344 C 259.933594 278.144531 260.027344 278.238281 260.144531 278.238281 C 260.261719 278.238281 260.355469 278.144531 260.355469 278.027344 Z M 260.355469 278.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.253906 279.136719 C 262.253906 279.019531 262.160156 278.925781 262.042969 278.925781 C 261.925781 278.925781 261.832031 279.019531 261.832031 279.136719 C 261.832031 279.253906 261.925781 279.347656 262.042969 279.347656 C 262.160156 279.347656 262.253906 279.253906 262.253906 279.136719 Z M 262.253906 279.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.367188 279.917969 C 260.367188 279.800781 260.273438 279.707031 260.15625 279.707031 C 260.039062 279.707031 259.945312 279.800781 259.945312 279.917969 C 259.945312 280.035156 260.039062 280.128906 260.15625 280.128906 C 260.273438 280.128906 260.367188 280.035156 260.367188 279.917969 Z M 260.367188 279.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.792969 280.214844 C 263.792969 280.097656 263.699219 280.003906 263.582031 280.003906 C 263.464844 280.003906 263.371094 280.097656 263.371094 280.214844 C 263.371094 280.332031 263.464844 280.425781 263.582031 280.425781 C 263.699219 280.425781 263.792969 280.332031 263.792969 280.214844 Z M 263.792969 280.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.460938 278.9375 C 266.460938 278.820312 266.367188 278.726562 266.25 278.726562 C 266.132812 278.726562 266.039062 278.820312 266.039062 278.9375 C 266.039062 279.054688 266.132812 279.148438 266.25 279.148438 C 266.367188 279.148438 266.460938 279.054688 266.460938 278.9375 Z M 266.460938 278.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.332031 277.851562 C 267.332031 277.734375 267.238281 277.640625 267.121094 277.640625 C 267.003906 277.640625 266.910156 277.734375 266.910156 277.851562 C 266.910156 277.96875 267.003906 278.0625 267.121094 278.0625 C 267.238281 278.0625 267.332031 277.96875 267.332031 277.851562 Z M 267.332031 277.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.917969 279.304688 C 270.917969 279.1875 270.824219 279.09375 270.707031 279.09375 C 270.589844 279.09375 270.496094 279.1875 270.496094 279.304688 C 270.496094 279.421875 270.589844 279.515625 270.707031 279.515625 C 270.824219 279.515625 270.917969 279.421875 270.917969 279.304688 Z M 270.917969 279.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.695312 278.320312 C 266.695312 278.203125 266.601562 278.109375 266.484375 278.109375 C 266.367188 278.109375 266.273438 278.203125 266.273438 278.320312 C 266.273438 278.4375 266.367188 278.53125 266.484375 278.53125 C 266.601562 278.53125 266.695312 278.4375 266.695312 278.320312 Z M 266.695312 278.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.222656 273.835938 C 266.222656 273.71875 266.128906 273.625 266.011719 273.625 C 265.894531 273.625 265.800781 273.71875 265.800781 273.835938 C 265.800781 273.953125 265.894531 274.046875 266.011719 274.046875 C 266.128906 274.046875 266.222656 273.953125 266.222656 273.835938 Z M 266.222656 273.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.632812 271.035156 C 266.632812 270.917969 266.539062 270.824219 266.421875 270.824219 C 266.304688 270.824219 266.210938 270.917969 266.210938 271.035156 C 266.210938 271.152344 266.304688 271.246094 266.421875 271.246094 C 266.539062 271.246094 266.632812 271.152344 266.632812 271.035156 Z M 266.632812 271.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.320312 268.773438 C 268.320312 268.65625 268.226562 268.5625 268.109375 268.5625 C 267.992188 268.5625 267.898438 268.65625 267.898438 268.773438 C 267.898438 268.890625 267.992188 268.984375 268.109375 268.984375 C 268.226562 268.984375 268.320312 268.890625 268.320312 268.773438 Z M 268.320312 268.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.449219 266.335938 C 269.449219 266.21875 269.355469 266.125 269.238281 266.125 C 269.121094 266.125 269.027344 266.21875 269.027344 266.335938 C 269.027344 266.453125 269.121094 266.546875 269.238281 266.546875 C 269.355469 266.546875 269.449219 266.453125 269.449219 266.335938 Z M 269.449219 266.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.453125 267.898438 C 270.453125 267.78125 270.359375 267.6875 270.242188 267.6875 C 270.125 267.6875 270.03125 267.78125 270.03125 267.898438 C 270.03125 268.015625 270.125 268.109375 270.242188 268.109375 C 270.359375 268.109375 270.453125 268.015625 270.453125 267.898438 Z M 270.453125 267.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.394531 264.789062 C 272.394531 264.671875 272.300781 264.578125 272.183594 264.578125 C 272.066406 264.578125 271.972656 264.671875 271.972656 264.789062 C 271.972656 264.90625 272.066406 265 272.183594 265 C 272.300781 265 272.394531 264.90625 272.394531 264.789062 Z M 272.394531 264.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.949219 266.832031 C 272.949219 266.714844 272.855469 266.621094 272.738281 266.621094 C 272.621094 266.621094 272.527344 266.714844 272.527344 266.832031 C 272.527344 266.949219 272.621094 267.042969 272.738281 267.042969 C 272.855469 267.042969 272.949219 266.949219 272.949219 266.832031 Z M 272.949219 266.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.796875 267.820312 C 274.796875 267.703125 274.703125 267.609375 274.585938 267.609375 C 274.46875 267.609375 274.375 267.703125 274.375 267.820312 C 274.375 267.9375 274.46875 268.03125 274.585938 268.03125 C 274.703125 268.03125 274.796875 267.9375 274.796875 267.820312 Z M 274.796875 267.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.300781 267.835938 C 277.300781 267.71875 277.207031 267.625 277.089844 267.625 C 276.972656 267.625 276.878906 267.71875 276.878906 267.835938 C 276.878906 267.953125 276.972656 268.046875 277.089844 268.046875 C 277.207031 268.046875 277.300781 267.953125 277.300781 267.835938 Z M 277.300781 267.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.171875 269.394531 C 277.171875 269.277344 277.078125 269.183594 276.960938 269.183594 C 276.84375 269.183594 276.75 269.277344 276.75 269.394531 C 276.75 269.511719 276.84375 269.605469 276.960938 269.605469 C 277.078125 269.605469 277.171875 269.511719 277.171875 269.394531 Z M 277.171875 269.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.011719 269.394531 C 277.011719 269.277344 276.917969 269.183594 276.800781 269.183594 C 276.683594 269.183594 276.589844 269.277344 276.589844 269.394531 C 276.589844 269.511719 276.683594 269.605469 276.800781 269.605469 C 276.917969 269.605469 277.011719 269.511719 277.011719 269.394531 Z M 277.011719 269.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.144531 266.953125 C 278.144531 266.835938 278.050781 266.742188 277.933594 266.742188 C 277.816406 266.742188 277.722656 266.835938 277.722656 266.953125 C 277.722656 267.070312 277.816406 267.164062 277.933594 267.164062 C 278.050781 267.164062 278.144531 267.070312 278.144531 266.953125 Z M 278.144531 266.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.136719 268.296875 C 280.136719 268.179688 280.042969 268.085938 279.925781 268.085938 C 279.808594 268.085938 279.714844 268.179688 279.714844 268.296875 C 279.714844 268.414062 279.808594 268.507812 279.925781 268.507812 C 280.042969 268.507812 280.136719 268.414062 280.136719 268.296875 Z M 280.136719 268.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.148438 262.691406 C 281.148438 262.574219 281.054688 262.480469 280.9375 262.480469 C 280.820312 262.480469 280.726562 262.574219 280.726562 262.691406 C 280.726562 262.808594 280.820312 262.902344 280.9375 262.902344 C 281.054688 262.902344 281.148438 262.808594 281.148438 262.691406 Z M 281.148438 262.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.644531 263.164062 C 278.644531 263.046875 278.550781 262.953125 278.433594 262.953125 C 278.316406 262.953125 278.222656 263.046875 278.222656 263.164062 C 278.222656 263.28125 278.316406 263.375 278.433594 263.375 C 278.550781 263.375 278.644531 263.28125 278.644531 263.164062 Z M 278.644531 263.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.675781 262.121094 C 276.675781 262.003906 276.582031 261.910156 276.464844 261.910156 C 276.347656 261.910156 276.253906 262.003906 276.253906 262.121094 C 276.253906 262.238281 276.347656 262.332031 276.464844 262.332031 C 276.582031 262.332031 276.675781 262.238281 276.675781 262.121094 Z M 276.675781 262.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.558594 263.285156 C 275.558594 263.167969 275.464844 263.074219 275.347656 263.074219 C 275.230469 263.074219 275.136719 263.167969 275.136719 263.285156 C 275.136719 263.402344 275.230469 263.496094 275.347656 263.496094 C 275.464844 263.496094 275.558594 263.402344 275.558594 263.285156 Z M 275.558594 263.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.617188 260.757812 C 272.617188 260.640625 272.523438 260.546875 272.40625 260.546875 C 272.289062 260.546875 272.195312 260.640625 272.195312 260.757812 C 272.195312 260.875 272.289062 260.96875 272.40625 260.96875 C 272.523438 260.96875 272.617188 260.875 272.617188 260.757812 Z M 272.617188 260.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.769531 262.949219 C 270.769531 262.832031 270.675781 262.738281 270.558594 262.738281 C 270.441406 262.738281 270.347656 262.832031 270.347656 262.949219 C 270.347656 263.066406 270.441406 263.160156 270.558594 263.160156 C 270.675781 263.160156 270.769531 263.066406 270.769531 262.949219 Z M 270.769531 262.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.847656 263.640625 C 269.847656 263.523438 269.753906 263.429688 269.636719 263.429688 C 269.519531 263.429688 269.425781 263.523438 269.425781 263.640625 C 269.425781 263.757812 269.519531 263.851562 269.636719 263.851562 C 269.753906 263.851562 269.847656 263.757812 269.847656 263.640625 Z M 269.847656 263.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.996094 262.039062 C 268.996094 261.921875 268.902344 261.828125 268.785156 261.828125 C 268.667969 261.828125 268.574219 261.921875 268.574219 262.039062 C 268.574219 262.15625 268.667969 262.25 268.785156 262.25 C 268.902344 262.25 268.996094 262.15625 268.996094 262.039062 Z M 268.996094 262.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.605469 259.226562 C 268.605469 259.109375 268.511719 259.015625 268.394531 259.015625 C 268.277344 259.015625 268.183594 259.109375 268.183594 259.226562 C 268.183594 259.34375 268.277344 259.4375 268.394531 259.4375 C 268.511719 259.4375 268.605469 259.34375 268.605469 259.226562 Z M 268.605469 259.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.152344 259.824219 C 267.152344 259.707031 267.058594 259.613281 266.941406 259.613281 C 266.824219 259.613281 266.730469 259.707031 266.730469 259.824219 C 266.730469 259.941406 266.824219 260.035156 266.941406 260.035156 C 267.058594 260.035156 267.152344 259.941406 267.152344 259.824219 Z M 267.152344 259.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.683594 258.988281 C 267.683594 258.871094 267.589844 258.777344 267.472656 258.777344 C 267.355469 258.777344 267.261719 258.871094 267.261719 258.988281 C 267.261719 259.105469 267.355469 259.199219 267.472656 259.199219 C 267.589844 259.199219 267.683594 259.105469 267.683594 258.988281 Z M 267.683594 258.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.933594 260.75 C 268.933594 260.632812 268.839844 260.539062 268.722656 260.539062 C 268.605469 260.539062 268.511719 260.632812 268.511719 260.75 C 268.511719 260.867188 268.605469 260.960938 268.722656 260.960938 C 268.839844 260.960938 268.933594 260.867188 268.933594 260.75 Z M 268.933594 260.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.910156 261.621094 C 266.910156 261.503906 266.816406 261.410156 266.699219 261.410156 C 266.582031 261.410156 266.488281 261.503906 266.488281 261.621094 C 266.488281 261.738281 266.582031 261.832031 266.699219 261.832031 C 266.816406 261.832031 266.910156 261.738281 266.910156 261.621094 Z M 266.910156 261.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.988281 260.816406 C 265.988281 260.699219 265.894531 260.605469 265.777344 260.605469 C 265.660156 260.605469 265.566406 260.699219 265.566406 260.816406 C 265.566406 260.933594 265.660156 261.027344 265.777344 261.027344 C 265.894531 261.027344 265.988281 260.933594 265.988281 260.816406 Z M 265.988281 260.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.796875 260.441406 C 266.796875 260.324219 266.703125 260.230469 266.585938 260.230469 C 266.46875 260.230469 266.375 260.324219 266.375 260.441406 C 266.375 260.558594 266.46875 260.652344 266.585938 260.652344 C 266.703125 260.652344 266.796875 260.558594 266.796875 260.441406 Z M 266.796875 260.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.40625 256.511719 C 268.40625 256.394531 268.3125 256.300781 268.195312 256.300781 C 268.078125 256.300781 267.984375 256.394531 267.984375 256.511719 C 267.984375 256.628906 268.078125 256.722656 268.195312 256.722656 C 268.3125 256.722656 268.40625 256.628906 268.40625 256.511719 Z M 268.40625 256.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.390625 258.664062 C 265.390625 258.546875 265.296875 258.453125 265.179688 258.453125 C 265.0625 258.453125 264.96875 258.546875 264.96875 258.664062 C 264.96875 258.78125 265.0625 258.875 265.179688 258.875 C 265.296875 258.875 265.390625 258.78125 265.390625 258.664062 Z M 265.390625 258.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.914062 258.339844 C 262.914062 258.222656 262.820312 258.128906 262.703125 258.128906 C 262.585938 258.128906 262.492188 258.222656 262.492188 258.339844 C 262.492188 258.457031 262.585938 258.550781 262.703125 258.550781 C 262.820312 258.550781 262.914062 258.457031 262.914062 258.339844 Z M 262.914062 258.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.933594 258.683594 C 265.933594 258.566406 265.839844 258.472656 265.722656 258.472656 C 265.605469 258.472656 265.511719 258.566406 265.511719 258.683594 C 265.511719 258.800781 265.605469 258.894531 265.722656 258.894531 C 265.839844 258.894531 265.933594 258.800781 265.933594 258.683594 Z M 265.933594 258.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.773438 257.496094 C 265.773438 257.378906 265.679688 257.285156 265.5625 257.285156 C 265.445312 257.285156 265.351562 257.378906 265.351562 257.496094 C 265.351562 257.613281 265.445312 257.707031 265.5625 257.707031 C 265.679688 257.707031 265.773438 257.613281 265.773438 257.496094 Z M 265.773438 257.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.464844 258.398438 C 265.464844 258.28125 265.371094 258.1875 265.253906 258.1875 C 265.136719 258.1875 265.042969 258.28125 265.042969 258.398438 C 265.042969 258.515625 265.136719 258.609375 265.253906 258.609375 C 265.371094 258.609375 265.464844 258.515625 265.464844 258.398438 Z M 265.464844 258.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.269531 255.988281 C 263.269531 255.871094 263.175781 255.777344 263.058594 255.777344 C 262.941406 255.777344 262.847656 255.871094 262.847656 255.988281 C 262.847656 256.105469 262.941406 256.199219 263.058594 256.199219 C 263.175781 256.199219 263.269531 256.105469 263.269531 255.988281 Z M 263.269531 255.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.078125 261.183594 C 265.078125 261.066406 264.984375 260.972656 264.867188 260.972656 C 264.75 260.972656 264.65625 261.066406 264.65625 261.183594 C 264.65625 261.300781 264.75 261.394531 264.867188 261.394531 C 264.984375 261.394531 265.078125 261.300781 265.078125 261.183594 Z M 265.078125 261.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.3125 261.078125 C 262.3125 260.960938 262.21875 260.867188 262.101562 260.867188 C 261.984375 260.867188 261.890625 260.960938 261.890625 261.078125 C 261.890625 261.195312 261.984375 261.289062 262.101562 261.289062 C 262.21875 261.289062 262.3125 261.195312 262.3125 261.078125 Z M 262.3125 261.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.695312 262.566406 C 261.695312 262.449219 261.601562 262.355469 261.484375 262.355469 C 261.367188 262.355469 261.273438 262.449219 261.273438 262.566406 C 261.273438 262.683594 261.367188 262.777344 261.484375 262.777344 C 261.601562 262.777344 261.695312 262.683594 261.695312 262.566406 Z M 261.695312 262.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.914062 261.019531 C 257.914062 260.902344 257.820312 260.808594 257.703125 260.808594 C 257.585938 260.808594 257.492188 260.902344 257.492188 261.019531 C 257.492188 261.136719 257.585938 261.230469 257.703125 261.230469 C 257.820312 261.230469 257.914062 261.136719 257.914062 261.019531 Z M 257.914062 261.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.261719 261.410156 C 256.261719 261.292969 256.167969 261.199219 256.050781 261.199219 C 255.933594 261.199219 255.839844 261.292969 255.839844 261.410156 C 255.839844 261.527344 255.933594 261.621094 256.050781 261.621094 C 256.167969 261.621094 256.261719 261.527344 256.261719 261.410156 Z M 256.261719 261.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.925781 258.691406 C 261.925781 258.574219 261.832031 258.480469 261.714844 258.480469 C 261.597656 258.480469 261.503906 258.574219 261.503906 258.691406 C 261.503906 258.808594 261.597656 258.902344 261.714844 258.902344 C 261.832031 258.902344 261.925781 258.808594 261.925781 258.691406 Z M 261.925781 258.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.148438 259.375 C 260.148438 259.257812 260.054688 259.164062 259.9375 259.164062 C 259.820312 259.164062 259.726562 259.257812 259.726562 259.375 C 259.726562 259.492188 259.820312 259.585938 259.9375 259.585938 C 260.054688 259.585938 260.148438 259.492188 260.148438 259.375 Z M 260.148438 259.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.605469 259.207031 C 262.605469 259.089844 262.511719 258.996094 262.394531 258.996094 C 262.277344 258.996094 262.183594 259.089844 262.183594 259.207031 C 262.183594 259.324219 262.277344 259.417969 262.394531 259.417969 C 262.511719 259.417969 262.605469 259.324219 262.605469 259.207031 Z M 262.605469 259.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.394531 258.527344 C 262.394531 258.410156 262.300781 258.316406 262.183594 258.316406 C 262.066406 258.316406 261.972656 258.410156 261.972656 258.527344 C 261.972656 258.644531 262.066406 258.738281 262.183594 258.738281 C 262.300781 258.738281 262.394531 258.644531 262.394531 258.527344 Z M 262.394531 258.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.410156 260.210938 C 258.410156 260.09375 258.316406 260 258.199219 260 C 258.082031 260 257.988281 260.09375 257.988281 260.210938 C 257.988281 260.328125 258.082031 260.421875 258.199219 260.421875 C 258.316406 260.421875 258.410156 260.328125 258.410156 260.210938 Z M 258.410156 260.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.03125 259.910156 C 260.03125 259.792969 259.9375 259.699219 259.820312 259.699219 C 259.703125 259.699219 259.609375 259.792969 259.609375 259.910156 C 259.609375 260.027344 259.703125 260.121094 259.820312 260.121094 C 259.9375 260.121094 260.03125 260.027344 260.03125 259.910156 Z M 260.03125 259.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.40625 262.007812 C 259.40625 261.890625 259.3125 261.796875 259.195312 261.796875 C 259.078125 261.796875 258.984375 261.890625 258.984375 262.007812 C 258.984375 262.125 259.078125 262.21875 259.195312 262.21875 C 259.3125 262.21875 259.40625 262.125 259.40625 262.007812 Z M 259.40625 262.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.527344 260.507812 C 257.527344 260.390625 257.433594 260.296875 257.316406 260.296875 C 257.199219 260.296875 257.105469 260.390625 257.105469 260.507812 C 257.105469 260.625 257.199219 260.71875 257.316406 260.71875 C 257.433594 260.71875 257.527344 260.625 257.527344 260.507812 Z M 257.527344 260.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.460938 260.875 C 259.460938 260.757812 259.367188 260.664062 259.25 260.664062 C 259.132812 260.664062 259.039062 260.757812 259.039062 260.875 C 259.039062 260.992188 259.132812 261.085938 259.25 261.085938 C 259.367188 261.085938 259.460938 260.992188 259.460938 260.875 Z M 259.460938 260.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.691406 259.097656 C 263.691406 258.980469 263.597656 258.886719 263.480469 258.886719 C 263.363281 258.886719 263.269531 258.980469 263.269531 259.097656 C 263.269531 259.214844 263.363281 259.308594 263.480469 259.308594 C 263.597656 259.308594 263.691406 259.214844 263.691406 259.097656 Z M 263.691406 259.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.898438 260.828125 C 259.898438 260.710938 259.804688 260.617188 259.6875 260.617188 C 259.570312 260.617188 259.476562 260.710938 259.476562 260.828125 C 259.476562 260.945312 259.570312 261.039062 259.6875 261.039062 C 259.804688 261.039062 259.898438 260.945312 259.898438 260.828125 Z M 259.898438 260.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.90625 259.574219 C 257.90625 259.457031 257.8125 259.363281 257.695312 259.363281 C 257.578125 259.363281 257.484375 259.457031 257.484375 259.574219 C 257.484375 259.691406 257.578125 259.785156 257.695312 259.785156 C 257.8125 259.785156 257.90625 259.691406 257.90625 259.574219 Z M 257.90625 259.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.199219 259.148438 C 259.199219 259.03125 259.105469 258.9375 258.988281 258.9375 C 258.871094 258.9375 258.777344 259.03125 258.777344 259.148438 C 258.777344 259.265625 258.871094 259.359375 258.988281 259.359375 C 259.105469 259.359375 259.199219 259.265625 259.199219 259.148438 Z M 259.199219 259.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.410156 259.574219 C 262.410156 259.457031 262.316406 259.363281 262.199219 259.363281 C 262.082031 259.363281 261.988281 259.457031 261.988281 259.574219 C 261.988281 259.691406 262.082031 259.785156 262.199219 259.785156 C 262.316406 259.785156 262.410156 259.691406 262.410156 259.574219 Z M 262.410156 259.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.664062 262.003906 C 261.664062 261.886719 261.570312 261.792969 261.453125 261.792969 C 261.335938 261.792969 261.242188 261.886719 261.242188 262.003906 C 261.242188 262.121094 261.335938 262.214844 261.453125 262.214844 C 261.570312 262.214844 261.664062 262.121094 261.664062 262.003906 Z M 261.664062 262.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.820312 262.074219 C 262.820312 261.957031 262.726562 261.863281 262.609375 261.863281 C 262.492188 261.863281 262.398438 261.957031 262.398438 262.074219 C 262.398438 262.191406 262.492188 262.285156 262.609375 262.285156 C 262.726562 262.285156 262.820312 262.191406 262.820312 262.074219 Z M 262.820312 262.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.566406 262.417969 C 259.566406 262.300781 259.472656 262.207031 259.355469 262.207031 C 259.238281 262.207031 259.144531 262.300781 259.144531 262.417969 C 259.144531 262.535156 259.238281 262.628906 259.355469 262.628906 C 259.472656 262.628906 259.566406 262.535156 259.566406 262.417969 Z M 259.566406 262.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.453125 260.355469 C 256.453125 260.238281 256.359375 260.144531 256.242188 260.144531 C 256.125 260.144531 256.03125 260.238281 256.03125 260.355469 C 256.03125 260.472656 256.125 260.566406 256.242188 260.566406 C 256.359375 260.566406 256.453125 260.472656 256.453125 260.355469 Z M 256.453125 260.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.753906 264.238281 C 254.753906 264.121094 254.660156 264.027344 254.542969 264.027344 C 254.425781 264.027344 254.332031 264.121094 254.332031 264.238281 C 254.332031 264.355469 254.425781 264.449219 254.542969 264.449219 C 254.660156 264.449219 254.753906 264.355469 254.753906 264.238281 Z M 254.753906 264.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.347656 264.113281 C 252.347656 263.996094 252.253906 263.902344 252.136719 263.902344 C 252.019531 263.902344 251.925781 263.996094 251.925781 264.113281 C 251.925781 264.230469 252.019531 264.324219 252.136719 264.324219 C 252.253906 264.324219 252.347656 264.230469 252.347656 264.113281 Z M 252.347656 264.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.328125 263.605469 C 254.328125 263.488281 254.234375 263.394531 254.117188 263.394531 C 254 263.394531 253.90625 263.488281 253.90625 263.605469 C 253.90625 263.722656 254 263.816406 254.117188 263.816406 C 254.234375 263.816406 254.328125 263.722656 254.328125 263.605469 Z M 254.328125 263.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.882812 264.714844 C 255.882812 264.597656 255.789062 264.503906 255.671875 264.503906 C 255.554688 264.503906 255.460938 264.597656 255.460938 264.714844 C 255.460938 264.832031 255.554688 264.925781 255.671875 264.925781 C 255.789062 264.925781 255.882812 264.832031 255.882812 264.714844 Z M 255.882812 264.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.660156 268.523438 C 261.660156 268.40625 261.566406 268.3125 261.449219 268.3125 C 261.332031 268.3125 261.238281 268.40625 261.238281 268.523438 C 261.238281 268.640625 261.332031 268.734375 261.449219 268.734375 C 261.566406 268.734375 261.660156 268.640625 261.660156 268.523438 Z M 261.660156 268.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.226562 271.898438 C 261.226562 271.78125 261.132812 271.6875 261.015625 271.6875 C 260.898438 271.6875 260.804688 271.78125 260.804688 271.898438 C 260.804688 272.015625 260.898438 272.109375 261.015625 272.109375 C 261.132812 272.109375 261.226562 272.015625 261.226562 271.898438 Z M 261.226562 271.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.011719 272.847656 C 261.011719 272.730469 260.917969 272.636719 260.800781 272.636719 C 260.683594 272.636719 260.589844 272.730469 260.589844 272.847656 C 260.589844 272.964844 260.683594 273.058594 260.800781 273.058594 C 260.917969 273.058594 261.011719 272.964844 261.011719 272.847656 Z M 261.011719 272.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.246094 269.585938 C 261.246094 269.46875 261.152344 269.375 261.035156 269.375 C 260.917969 269.375 260.824219 269.46875 260.824219 269.585938 C 260.824219 269.703125 260.917969 269.796875 261.035156 269.796875 C 261.152344 269.796875 261.246094 269.703125 261.246094 269.585938 Z M 261.246094 269.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.816406 268.667969 C 262.816406 268.550781 262.722656 268.457031 262.605469 268.457031 C 262.488281 268.457031 262.394531 268.550781 262.394531 268.667969 C 262.394531 268.785156 262.488281 268.878906 262.605469 268.878906 C 262.722656 268.878906 262.816406 268.785156 262.816406 268.667969 Z M 262.816406 268.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.027344 264.84375 C 260.027344 264.726562 259.933594 264.632812 259.816406 264.632812 C 259.699219 264.632812 259.605469 264.726562 259.605469 264.84375 C 259.605469 264.960938 259.699219 265.054688 259.816406 265.054688 C 259.933594 265.054688 260.027344 264.960938 260.027344 264.84375 Z M 260.027344 264.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.515625 265.191406 C 259.515625 265.074219 259.421875 264.980469 259.304688 264.980469 C 259.1875 264.980469 259.09375 265.074219 259.09375 265.191406 C 259.09375 265.308594 259.1875 265.402344 259.304688 265.402344 C 259.421875 265.402344 259.515625 265.308594 259.515625 265.191406 Z M 259.515625 265.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.074219 264.859375 C 261.074219 264.742188 260.980469 264.648438 260.863281 264.648438 C 260.746094 264.648438 260.652344 264.742188 260.652344 264.859375 C 260.652344 264.976562 260.746094 265.070312 260.863281 265.070312 C 260.980469 265.070312 261.074219 264.976562 261.074219 264.859375 Z M 261.074219 264.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.046875 263.253906 C 265.046875 263.136719 264.953125 263.042969 264.835938 263.042969 C 264.71875 263.042969 264.625 263.136719 264.625 263.253906 C 264.625 263.371094 264.71875 263.464844 264.835938 263.464844 C 264.953125 263.464844 265.046875 263.371094 265.046875 263.253906 Z M 265.046875 263.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.445312 266.226562 C 265.445312 266.109375 265.351562 266.015625 265.234375 266.015625 C 265.117188 266.015625 265.023438 266.109375 265.023438 266.226562 C 265.023438 266.34375 265.117188 266.4375 265.234375 266.4375 C 265.351562 266.4375 265.445312 266.34375 265.445312 266.226562 Z M 265.445312 266.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.375 267.71875 C 266.375 267.601562 266.28125 267.507812 266.164062 267.507812 C 266.046875 267.507812 265.953125 267.601562 265.953125 267.71875 C 265.953125 267.835938 266.046875 267.929688 266.164062 267.929688 C 266.28125 267.929688 266.375 267.835938 266.375 267.71875 Z M 266.375 267.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.503906 265.480469 C 268.503906 265.363281 268.410156 265.269531 268.292969 265.269531 C 268.175781 265.269531 268.082031 265.363281 268.082031 265.480469 C 268.082031 265.597656 268.175781 265.691406 268.292969 265.691406 C 268.410156 265.691406 268.503906 265.597656 268.503906 265.480469 Z M 268.503906 265.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.417969 265.421875 C 270.417969 265.304688 270.324219 265.210938 270.207031 265.210938 C 270.089844 265.210938 269.996094 265.304688 269.996094 265.421875 C 269.996094 265.539062 270.089844 265.632812 270.207031 265.632812 C 270.324219 265.632812 270.417969 265.539062 270.417969 265.421875 Z M 270.417969 265.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.472656 264.011719 C 268.472656 263.894531 268.378906 263.800781 268.261719 263.800781 C 268.144531 263.800781 268.050781 263.894531 268.050781 264.011719 C 268.050781 264.128906 268.144531 264.222656 268.261719 264.222656 C 268.378906 264.222656 268.472656 264.128906 268.472656 264.011719 Z M 268.472656 264.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.800781 264.496094 C 267.800781 264.378906 267.707031 264.285156 267.589844 264.285156 C 267.472656 264.285156 267.378906 264.378906 267.378906 264.496094 C 267.378906 264.613281 267.472656 264.707031 267.589844 264.707031 C 267.707031 264.707031 267.800781 264.613281 267.800781 264.496094 Z M 267.800781 264.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.621094 265.339844 C 269.621094 265.222656 269.527344 265.128906 269.410156 265.128906 C 269.292969 265.128906 269.199219 265.222656 269.199219 265.339844 C 269.199219 265.457031 269.292969 265.550781 269.410156 265.550781 C 269.527344 265.550781 269.621094 265.457031 269.621094 265.339844 Z M 269.621094 265.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.582031 262.652344 C 267.582031 262.535156 267.488281 262.441406 267.371094 262.441406 C 267.253906 262.441406 267.160156 262.535156 267.160156 262.652344 C 267.160156 262.769531 267.253906 262.863281 267.371094 262.863281 C 267.488281 262.863281 267.582031 262.769531 267.582031 262.652344 Z M 267.582031 262.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.339844 259.441406 C 270.339844 259.324219 270.246094 259.230469 270.128906 259.230469 C 270.011719 259.230469 269.917969 259.324219 269.917969 259.441406 C 269.917969 259.558594 270.011719 259.652344 270.128906 259.652344 C 270.246094 259.652344 270.339844 259.558594 270.339844 259.441406 Z M 270.339844 259.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.429688 261.871094 C 276.429688 261.753906 276.335938 261.660156 276.21875 261.660156 C 276.101562 261.660156 276.007812 261.753906 276.007812 261.871094 C 276.007812 261.988281 276.101562 262.082031 276.21875 262.082031 C 276.335938 262.082031 276.429688 261.988281 276.429688 261.871094 Z M 276.429688 261.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.582031 265.203125 C 274.582031 265.085938 274.488281 264.992188 274.371094 264.992188 C 274.253906 264.992188 274.160156 265.085938 274.160156 265.203125 C 274.160156 265.320312 274.253906 265.414062 274.371094 265.414062 C 274.488281 265.414062 274.582031 265.320312 274.582031 265.203125 Z M 274.582031 265.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.542969 267.789062 C 275.542969 267.671875 275.449219 267.578125 275.332031 267.578125 C 275.214844 267.578125 275.121094 267.671875 275.121094 267.789062 C 275.121094 267.90625 275.214844 268 275.332031 268 C 275.449219 268 275.542969 267.90625 275.542969 267.789062 Z M 275.542969 267.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.335938 268.402344 C 271.335938 268.285156 271.242188 268.191406 271.125 268.191406 C 271.007812 268.191406 270.914062 268.285156 270.914062 268.402344 C 270.914062 268.519531 271.007812 268.613281 271.125 268.613281 C 271.242188 268.613281 271.335938 268.519531 271.335938 268.402344 Z M 271.335938 268.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.046875 267.636719 C 273.046875 267.519531 272.953125 267.425781 272.835938 267.425781 C 272.71875 267.425781 272.625 267.519531 272.625 267.636719 C 272.625 267.753906 272.71875 267.847656 272.835938 267.847656 C 272.953125 267.847656 273.046875 267.753906 273.046875 267.636719 Z M 273.046875 267.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.519531 267.347656 C 270.519531 267.230469 270.425781 267.136719 270.308594 267.136719 C 270.191406 267.136719 270.097656 267.230469 270.097656 267.347656 C 270.097656 267.464844 270.191406 267.558594 270.308594 267.558594 C 270.425781 267.558594 270.519531 267.464844 270.519531 267.347656 Z M 270.519531 267.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.6875 267.761719 C 270.6875 267.644531 270.59375 267.550781 270.476562 267.550781 C 270.359375 267.550781 270.265625 267.644531 270.265625 267.761719 C 270.265625 267.878906 270.359375 267.972656 270.476562 267.972656 C 270.59375 267.972656 270.6875 267.878906 270.6875 267.761719 Z M 270.6875 267.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.292969 266.128906 C 271.292969 266.011719 271.199219 265.917969 271.082031 265.917969 C 270.964844 265.917969 270.871094 266.011719 270.871094 266.128906 C 270.871094 266.246094 270.964844 266.339844 271.082031 266.339844 C 271.199219 266.339844 271.292969 266.246094 271.292969 266.128906 Z M 271.292969 266.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.992188 265.019531 C 272.992188 264.902344 272.898438 264.808594 272.78125 264.808594 C 272.664062 264.808594 272.570312 264.902344 272.570312 265.019531 C 272.570312 265.136719 272.664062 265.230469 272.78125 265.230469 C 272.898438 265.230469 272.992188 265.136719 272.992188 265.019531 Z M 272.992188 265.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.742188 265.246094 C 272.742188 265.128906 272.648438 265.035156 272.53125 265.035156 C 272.414062 265.035156 272.320312 265.128906 272.320312 265.246094 C 272.320312 265.363281 272.414062 265.457031 272.53125 265.457031 C 272.648438 265.457031 272.742188 265.363281 272.742188 265.246094 Z M 272.742188 265.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.144531 265.6875 C 276.144531 265.570312 276.050781 265.476562 275.933594 265.476562 C 275.816406 265.476562 275.722656 265.570312 275.722656 265.6875 C 275.722656 265.804688 275.816406 265.898438 275.933594 265.898438 C 276.050781 265.898438 276.144531 265.804688 276.144531 265.6875 Z M 276.144531 265.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.816406 266.550781 C 276.816406 266.433594 276.722656 266.339844 276.605469 266.339844 C 276.488281 266.339844 276.394531 266.433594 276.394531 266.550781 C 276.394531 266.667969 276.488281 266.761719 276.605469 266.761719 C 276.722656 266.761719 276.816406 266.667969 276.816406 266.550781 Z M 276.816406 266.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.324219 263.421875 C 276.324219 263.304688 276.230469 263.210938 276.113281 263.210938 C 275.996094 263.210938 275.902344 263.304688 275.902344 263.421875 C 275.902344 263.539062 275.996094 263.632812 276.113281 263.632812 C 276.230469 263.632812 276.324219 263.539062 276.324219 263.421875 Z M 276.324219 263.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.078125 263.128906 C 277.078125 263.011719 276.984375 262.917969 276.867188 262.917969 C 276.75 262.917969 276.65625 263.011719 276.65625 263.128906 C 276.65625 263.246094 276.75 263.339844 276.867188 263.339844 C 276.984375 263.339844 277.078125 263.246094 277.078125 263.128906 Z M 277.078125 263.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.253906 264.84375 C 275.253906 264.726562 275.160156 264.632812 275.042969 264.632812 C 274.925781 264.632812 274.832031 264.726562 274.832031 264.84375 C 274.832031 264.960938 274.925781 265.054688 275.042969 265.054688 C 275.160156 265.054688 275.253906 264.960938 275.253906 264.84375 Z M 275.253906 264.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.09375 267.21875 C 276.09375 267.101562 276 267.007812 275.882812 267.007812 C 275.765625 267.007812 275.671875 267.101562 275.671875 267.21875 C 275.671875 267.335938 275.765625 267.429688 275.882812 267.429688 C 276 267.429688 276.09375 267.335938 276.09375 267.21875 Z M 276.09375 267.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.003906 266.503906 C 275.003906 266.386719 274.910156 266.292969 274.792969 266.292969 C 274.675781 266.292969 274.582031 266.386719 274.582031 266.503906 C 274.582031 266.621094 274.675781 266.714844 274.792969 266.714844 C 274.910156 266.714844 275.003906 266.621094 275.003906 266.503906 Z M 275.003906 266.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.734375 270.820312 C 276.734375 270.703125 276.640625 270.609375 276.523438 270.609375 C 276.40625 270.609375 276.3125 270.703125 276.3125 270.820312 C 276.3125 270.9375 276.40625 271.03125 276.523438 271.03125 C 276.640625 271.03125 276.734375 270.9375 276.734375 270.820312 Z M 276.734375 270.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.058594 270.917969 C 274.058594 270.800781 273.964844 270.707031 273.847656 270.707031 C 273.730469 270.707031 273.636719 270.800781 273.636719 270.917969 C 273.636719 271.035156 273.730469 271.128906 273.847656 271.128906 C 273.964844 271.128906 274.058594 271.035156 274.058594 270.917969 Z M 274.058594 270.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.542969 268.410156 C 276.542969 268.292969 276.449219 268.199219 276.332031 268.199219 C 276.214844 268.199219 276.121094 268.292969 276.121094 268.410156 C 276.121094 268.527344 276.214844 268.621094 276.332031 268.621094 C 276.449219 268.621094 276.542969 268.527344 276.542969 268.410156 Z M 276.542969 268.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.023438 267.003906 C 276.023438 266.886719 275.929688 266.792969 275.8125 266.792969 C 275.695312 266.792969 275.601562 266.886719 275.601562 267.003906 C 275.601562 267.121094 275.695312 267.214844 275.8125 267.214844 C 275.929688 267.214844 276.023438 267.121094 276.023438 267.003906 Z M 276.023438 267.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.652344 262.449219 C 279.652344 262.332031 279.558594 262.238281 279.441406 262.238281 C 279.324219 262.238281 279.230469 262.332031 279.230469 262.449219 C 279.230469 262.566406 279.324219 262.660156 279.441406 262.660156 C 279.558594 262.660156 279.652344 262.566406 279.652344 262.449219 Z M 279.652344 262.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.023438 263.160156 C 277.023438 263.042969 276.929688 262.949219 276.8125 262.949219 C 276.695312 262.949219 276.601562 263.042969 276.601562 263.160156 C 276.601562 263.277344 276.695312 263.371094 276.8125 263.371094 C 276.929688 263.371094 277.023438 263.277344 277.023438 263.160156 Z M 277.023438 263.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.042969 260.996094 C 279.042969 260.878906 278.949219 260.785156 278.832031 260.785156 C 278.714844 260.785156 278.621094 260.878906 278.621094 260.996094 C 278.621094 261.113281 278.714844 261.207031 278.832031 261.207031 C 278.949219 261.207031 279.042969 261.113281 279.042969 260.996094 Z M 279.042969 260.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.910156 257.28125 C 279.910156 257.164062 279.816406 257.070312 279.699219 257.070312 C 279.582031 257.070312 279.488281 257.164062 279.488281 257.28125 C 279.488281 257.398438 279.582031 257.492188 279.699219 257.492188 C 279.816406 257.492188 279.910156 257.398438 279.910156 257.28125 Z M 279.910156 257.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.445312 255.640625 C 280.445312 255.523438 280.351562 255.429688 280.234375 255.429688 C 280.117188 255.429688 280.023438 255.523438 280.023438 255.640625 C 280.023438 255.757812 280.117188 255.851562 280.234375 255.851562 C 280.351562 255.851562 280.445312 255.757812 280.445312 255.640625 Z M 280.445312 255.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.492188 259.894531 C 281.492188 259.777344 281.398438 259.683594 281.28125 259.683594 C 281.164062 259.683594 281.070312 259.777344 281.070312 259.894531 C 281.070312 260.011719 281.164062 260.105469 281.28125 260.105469 C 281.398438 260.105469 281.492188 260.011719 281.492188 259.894531 Z M 281.492188 259.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.261719 258.621094 C 285.261719 258.503906 285.167969 258.410156 285.050781 258.410156 C 284.933594 258.410156 284.839844 258.503906 284.839844 258.621094 C 284.839844 258.738281 284.933594 258.832031 285.050781 258.832031 C 285.167969 258.832031 285.261719 258.738281 285.261719 258.621094 Z M 285.261719 258.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.199219 258.324219 C 286.199219 258.207031 286.105469 258.113281 285.988281 258.113281 C 285.871094 258.113281 285.777344 258.207031 285.777344 258.324219 C 285.777344 258.441406 285.871094 258.535156 285.988281 258.535156 C 286.105469 258.535156 286.199219 258.441406 286.199219 258.324219 Z M 286.199219 258.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.269531 260.835938 C 288.269531 260.71875 288.175781 260.625 288.058594 260.625 C 287.941406 260.625 287.847656 260.71875 287.847656 260.835938 C 287.847656 260.953125 287.941406 261.046875 288.058594 261.046875 C 288.175781 261.046875 288.269531 260.953125 288.269531 260.835938 Z M 288.269531 260.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.644531 262.28125 C 290.644531 262.164062 290.550781 262.070312 290.433594 262.070312 C 290.316406 262.070312 290.222656 262.164062 290.222656 262.28125 C 290.222656 262.398438 290.316406 262.492188 290.433594 262.492188 C 290.550781 262.492188 290.644531 262.398438 290.644531 262.28125 Z M 290.644531 262.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.339844 260.3125 C 290.339844 260.195312 290.246094 260.101562 290.128906 260.101562 C 290.011719 260.101562 289.917969 260.195312 289.917969 260.3125 C 289.917969 260.429688 290.011719 260.523438 290.128906 260.523438 C 290.246094 260.523438 290.339844 260.429688 290.339844 260.3125 Z M 290.339844 260.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.550781 260.265625 C 290.550781 260.148438 290.457031 260.054688 290.339844 260.054688 C 290.222656 260.054688 290.128906 260.148438 290.128906 260.265625 C 290.128906 260.382812 290.222656 260.476562 290.339844 260.476562 C 290.457031 260.476562 290.550781 260.382812 290.550781 260.265625 Z M 290.550781 260.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.871094 259.4375 C 290.871094 259.320312 290.777344 259.226562 290.660156 259.226562 C 290.542969 259.226562 290.449219 259.320312 290.449219 259.4375 C 290.449219 259.554688 290.542969 259.648438 290.660156 259.648438 C 290.777344 259.648438 290.871094 259.554688 290.871094 259.4375 Z M 290.871094 259.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.433594 258.402344 C 292.433594 258.285156 292.339844 258.191406 292.222656 258.191406 C 292.105469 258.191406 292.011719 258.285156 292.011719 258.402344 C 292.011719 258.519531 292.105469 258.613281 292.222656 258.613281 C 292.339844 258.613281 292.433594 258.519531 292.433594 258.402344 Z M 292.433594 258.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.648438 257.414062 C 292.648438 257.296875 292.554688 257.203125 292.4375 257.203125 C 292.320312 257.203125 292.226562 257.296875 292.226562 257.414062 C 292.226562 257.53125 292.320312 257.625 292.4375 257.625 C 292.554688 257.625 292.648438 257.53125 292.648438 257.414062 Z M 292.648438 257.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.832031 256.46875 C 295.832031 256.351562 295.738281 256.257812 295.621094 256.257812 C 295.503906 256.257812 295.410156 256.351562 295.410156 256.46875 C 295.410156 256.585938 295.503906 256.679688 295.621094 256.679688 C 295.738281 256.679688 295.832031 256.585938 295.832031 256.46875 Z M 295.832031 256.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.128906 259.351562 C 293.128906 259.234375 293.035156 259.140625 292.917969 259.140625 C 292.800781 259.140625 292.707031 259.234375 292.707031 259.351562 C 292.707031 259.46875 292.800781 259.5625 292.917969 259.5625 C 293.035156 259.5625 293.128906 259.46875 293.128906 259.351562 Z M 293.128906 259.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.742188 260.214844 C 292.742188 260.097656 292.648438 260.003906 292.53125 260.003906 C 292.414062 260.003906 292.320312 260.097656 292.320312 260.214844 C 292.320312 260.332031 292.414062 260.425781 292.53125 260.425781 C 292.648438 260.425781 292.742188 260.332031 292.742188 260.214844 Z M 292.742188 260.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.601562 261.386719 C 292.601562 261.269531 292.507812 261.175781 292.390625 261.175781 C 292.273438 261.175781 292.179688 261.269531 292.179688 261.386719 C 292.179688 261.503906 292.273438 261.597656 292.390625 261.597656 C 292.507812 261.597656 292.601562 261.503906 292.601562 261.386719 Z M 292.601562 261.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.113281 262.746094 C 291.113281 262.628906 291.019531 262.535156 290.902344 262.535156 C 290.785156 262.535156 290.691406 262.628906 290.691406 262.746094 C 290.691406 262.863281 290.785156 262.957031 290.902344 262.957031 C 291.019531 262.957031 291.113281 262.863281 291.113281 262.746094 Z M 291.113281 262.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.328125 262.46875 C 293.328125 262.351562 293.234375 262.257812 293.117188 262.257812 C 293 262.257812 292.90625 262.351562 292.90625 262.46875 C 292.90625 262.585938 293 262.679688 293.117188 262.679688 C 293.234375 262.679688 293.328125 262.585938 293.328125 262.46875 Z M 293.328125 262.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.855469 260.351562 C 291.855469 260.234375 291.761719 260.140625 291.644531 260.140625 C 291.527344 260.140625 291.433594 260.234375 291.433594 260.351562 C 291.433594 260.46875 291.527344 260.5625 291.644531 260.5625 C 291.761719 260.5625 291.855469 260.46875 291.855469 260.351562 Z M 291.855469 260.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.917969 262.960938 C 290.917969 262.84375 290.824219 262.75 290.707031 262.75 C 290.589844 262.75 290.496094 262.84375 290.496094 262.960938 C 290.496094 263.078125 290.589844 263.171875 290.707031 263.171875 C 290.824219 263.171875 290.917969 263.078125 290.917969 262.960938 Z M 290.917969 262.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.675781 262.148438 C 289.675781 262.03125 289.582031 261.9375 289.464844 261.9375 C 289.347656 261.9375 289.253906 262.03125 289.253906 262.148438 C 289.253906 262.265625 289.347656 262.359375 289.464844 262.359375 C 289.582031 262.359375 289.675781 262.265625 289.675781 262.148438 Z M 289.675781 262.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.667969 265.132812 C 287.667969 265.015625 287.574219 264.921875 287.457031 264.921875 C 287.339844 264.921875 287.246094 265.015625 287.246094 265.132812 C 287.246094 265.25 287.339844 265.34375 287.457031 265.34375 C 287.574219 265.34375 287.667969 265.25 287.667969 265.132812 Z M 287.667969 265.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.339844 263.988281 C 288.339844 263.871094 288.246094 263.777344 288.128906 263.777344 C 288.011719 263.777344 287.917969 263.871094 287.917969 263.988281 C 287.917969 264.105469 288.011719 264.199219 288.128906 264.199219 C 288.246094 264.199219 288.339844 264.105469 288.339844 263.988281 Z M 288.339844 263.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.730469 263.269531 C 289.730469 263.152344 289.636719 263.058594 289.519531 263.058594 C 289.402344 263.058594 289.308594 263.152344 289.308594 263.269531 C 289.308594 263.386719 289.402344 263.480469 289.519531 263.480469 C 289.636719 263.480469 289.730469 263.386719 289.730469 263.269531 Z M 289.730469 263.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.78125 265.667969 C 291.78125 265.550781 291.6875 265.457031 291.570312 265.457031 C 291.453125 265.457031 291.359375 265.550781 291.359375 265.667969 C 291.359375 265.785156 291.453125 265.878906 291.570312 265.878906 C 291.6875 265.878906 291.78125 265.785156 291.78125 265.667969 Z M 291.78125 265.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.992188 263.457031 C 292.992188 263.339844 292.898438 263.246094 292.78125 263.246094 C 292.664062 263.246094 292.570312 263.339844 292.570312 263.457031 C 292.570312 263.574219 292.664062 263.667969 292.78125 263.667969 C 292.898438 263.667969 292.992188 263.574219 292.992188 263.457031 Z M 292.992188 263.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.230469 265.378906 C 295.230469 265.261719 295.136719 265.167969 295.019531 265.167969 C 294.902344 265.167969 294.808594 265.261719 294.808594 265.378906 C 294.808594 265.496094 294.902344 265.589844 295.019531 265.589844 C 295.136719 265.589844 295.230469 265.496094 295.230469 265.378906 Z M 295.230469 265.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.957031 266.40625 C 294.957031 266.289062 294.863281 266.195312 294.746094 266.195312 C 294.628906 266.195312 294.535156 266.289062 294.535156 266.40625 C 294.535156 266.523438 294.628906 266.617188 294.746094 266.617188 C 294.863281 266.617188 294.957031 266.523438 294.957031 266.40625 Z M 294.957031 266.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.109375 267.695312 C 295.109375 267.578125 295.015625 267.484375 294.898438 267.484375 C 294.78125 267.484375 294.6875 267.578125 294.6875 267.695312 C 294.6875 267.8125 294.78125 267.90625 294.898438 267.90625 C 295.015625 267.90625 295.109375 267.8125 295.109375 267.695312 Z M 295.109375 267.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.09375 266.519531 C 293.09375 266.402344 293 266.308594 292.882812 266.308594 C 292.765625 266.308594 292.671875 266.402344 292.671875 266.519531 C 292.671875 266.636719 292.765625 266.730469 292.882812 266.730469 C 293 266.730469 293.09375 266.636719 293.09375 266.519531 Z M 293.09375 266.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.320312 265.941406 C 293.320312 265.824219 293.226562 265.730469 293.109375 265.730469 C 292.992188 265.730469 292.898438 265.824219 292.898438 265.941406 C 292.898438 266.058594 292.992188 266.152344 293.109375 266.152344 C 293.226562 266.152344 293.320312 266.058594 293.320312 265.941406 Z M 293.320312 265.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.007812 265.679688 C 293.007812 265.5625 292.914062 265.46875 292.796875 265.46875 C 292.679688 265.46875 292.585938 265.5625 292.585938 265.679688 C 292.585938 265.796875 292.679688 265.890625 292.796875 265.890625 C 292.914062 265.890625 293.007812 265.796875 293.007812 265.679688 Z M 293.007812 265.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.625 262.289062 C 290.625 262.171875 290.53125 262.078125 290.414062 262.078125 C 290.296875 262.078125 290.203125 262.171875 290.203125 262.289062 C 290.203125 262.40625 290.296875 262.5 290.414062 262.5 C 290.53125 262.5 290.625 262.40625 290.625 262.289062 Z M 290.625 262.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.695312 262.0625 C 287.695312 261.945312 287.601562 261.851562 287.484375 261.851562 C 287.367188 261.851562 287.273438 261.945312 287.273438 262.0625 C 287.273438 262.179688 287.367188 262.273438 287.484375 262.273438 C 287.601562 262.273438 287.695312 262.179688 287.695312 262.0625 Z M 287.695312 262.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.472656 260.996094 C 291.472656 260.878906 291.378906 260.785156 291.261719 260.785156 C 291.144531 260.785156 291.050781 260.878906 291.050781 260.996094 C 291.050781 261.113281 291.144531 261.207031 291.261719 261.207031 C 291.378906 261.207031 291.472656 261.113281 291.472656 260.996094 Z M 291.472656 260.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.515625 260.121094 C 290.515625 260.003906 290.421875 259.910156 290.304688 259.910156 C 290.1875 259.910156 290.09375 260.003906 290.09375 260.121094 C 290.09375 260.238281 290.1875 260.332031 290.304688 260.332031 C 290.421875 260.332031 290.515625 260.238281 290.515625 260.121094 Z M 290.515625 260.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.429688 260.453125 C 295.429688 260.335938 295.335938 260.242188 295.21875 260.242188 C 295.101562 260.242188 295.007812 260.335938 295.007812 260.453125 C 295.007812 260.570312 295.101562 260.664062 295.21875 260.664062 C 295.335938 260.664062 295.429688 260.570312 295.429688 260.453125 Z M 295.429688 260.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.9375 261.683594 C 294.9375 261.566406 294.84375 261.472656 294.726562 261.472656 C 294.609375 261.472656 294.515625 261.566406 294.515625 261.683594 C 294.515625 261.800781 294.609375 261.894531 294.726562 261.894531 C 294.84375 261.894531 294.9375 261.800781 294.9375 261.683594 Z M 294.9375 261.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.855469 261.113281 C 296.855469 260.996094 296.761719 260.902344 296.644531 260.902344 C 296.527344 260.902344 296.433594 260.996094 296.433594 261.113281 C 296.433594 261.230469 296.527344 261.324219 296.644531 261.324219 C 296.761719 261.324219 296.855469 261.230469 296.855469 261.113281 Z M 296.855469 261.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.046875 262.652344 C 297.046875 262.535156 296.953125 262.441406 296.835938 262.441406 C 296.71875 262.441406 296.625 262.535156 296.625 262.652344 C 296.625 262.769531 296.71875 262.863281 296.835938 262.863281 C 296.953125 262.863281 297.046875 262.769531 297.046875 262.652344 Z M 297.046875 262.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.554688 262.019531 C 296.554688 261.902344 296.460938 261.808594 296.34375 261.808594 C 296.226562 261.808594 296.132812 261.902344 296.132812 262.019531 C 296.132812 262.136719 296.226562 262.230469 296.34375 262.230469 C 296.460938 262.230469 296.554688 262.136719 296.554688 262.019531 Z M 296.554688 262.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.882812 265.542969 C 298.882812 265.425781 298.789062 265.332031 298.671875 265.332031 C 298.554688 265.332031 298.460938 265.425781 298.460938 265.542969 C 298.460938 265.660156 298.554688 265.753906 298.671875 265.753906 C 298.789062 265.753906 298.882812 265.660156 298.882812 265.542969 Z M 298.882812 265.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.21875 267.125 C 296.21875 267.007812 296.125 266.914062 296.007812 266.914062 C 295.890625 266.914062 295.796875 267.007812 295.796875 267.125 C 295.796875 267.242188 295.890625 267.335938 296.007812 267.335938 C 296.125 267.335938 296.21875 267.242188 296.21875 267.125 Z M 296.21875 267.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.6875 263.148438 C 294.6875 263.03125 294.59375 262.9375 294.476562 262.9375 C 294.359375 262.9375 294.265625 263.03125 294.265625 263.148438 C 294.265625 263.265625 294.359375 263.359375 294.476562 263.359375 C 294.59375 263.359375 294.6875 263.265625 294.6875 263.148438 Z M 294.6875 263.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.003906 261.960938 C 293.003906 261.84375 292.910156 261.75 292.792969 261.75 C 292.675781 261.75 292.582031 261.84375 292.582031 261.960938 C 292.582031 262.078125 292.675781 262.171875 292.792969 262.171875 C 292.910156 262.171875 293.003906 262.078125 293.003906 261.960938 Z M 293.003906 261.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.351562 263.847656 C 295.351562 263.730469 295.257812 263.636719 295.140625 263.636719 C 295.023438 263.636719 294.929688 263.730469 294.929688 263.847656 C 294.929688 263.964844 295.023438 264.058594 295.140625 264.058594 C 295.257812 264.058594 295.351562 263.964844 295.351562 263.847656 Z M 295.351562 263.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297 261.335938 C 297 261.21875 296.90625 261.125 296.789062 261.125 C 296.671875 261.125 296.578125 261.21875 296.578125 261.335938 C 296.578125 261.453125 296.671875 261.546875 296.789062 261.546875 C 296.90625 261.546875 297 261.453125 297 261.335938 Z M 297 261.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.039062 260.910156 C 297.039062 260.792969 296.945312 260.699219 296.828125 260.699219 C 296.710938 260.699219 296.617188 260.792969 296.617188 260.910156 C 296.617188 261.027344 296.710938 261.121094 296.828125 261.121094 C 296.945312 261.121094 297.039062 261.027344 297.039062 260.910156 Z M 297.039062 260.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.316406 262.871094 C 299.316406 262.753906 299.222656 262.660156 299.105469 262.660156 C 298.988281 262.660156 298.894531 262.753906 298.894531 262.871094 C 298.894531 262.988281 298.988281 263.082031 299.105469 263.082031 C 299.222656 263.082031 299.316406 262.988281 299.316406 262.871094 Z M 299.316406 262.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.445312 259.726562 C 300.445312 259.609375 300.351562 259.515625 300.234375 259.515625 C 300.117188 259.515625 300.023438 259.609375 300.023438 259.726562 C 300.023438 259.84375 300.117188 259.9375 300.234375 259.9375 C 300.351562 259.9375 300.445312 259.84375 300.445312 259.726562 Z M 300.445312 259.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.996094 260.4375 C 300.996094 260.320312 300.902344 260.226562 300.785156 260.226562 C 300.667969 260.226562 300.574219 260.320312 300.574219 260.4375 C 300.574219 260.554688 300.667969 260.648438 300.785156 260.648438 C 300.902344 260.648438 300.996094 260.554688 300.996094 260.4375 Z M 300.996094 260.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.835938 260.292969 C 299.835938 260.175781 299.742188 260.082031 299.625 260.082031 C 299.507812 260.082031 299.414062 260.175781 299.414062 260.292969 C 299.414062 260.410156 299.507812 260.503906 299.625 260.503906 C 299.742188 260.503906 299.835938 260.410156 299.835938 260.292969 Z M 299.835938 260.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.476562 256.554688 C 299.476562 256.4375 299.382812 256.34375 299.265625 256.34375 C 299.148438 256.34375 299.054688 256.4375 299.054688 256.554688 C 299.054688 256.671875 299.148438 256.765625 299.265625 256.765625 C 299.382812 256.765625 299.476562 256.671875 299.476562 256.554688 Z M 299.476562 256.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.777344 250.449219 C 296.777344 250.332031 296.683594 250.238281 296.566406 250.238281 C 296.449219 250.238281 296.355469 250.332031 296.355469 250.449219 C 296.355469 250.566406 296.449219 250.660156 296.566406 250.660156 C 296.683594 250.660156 296.777344 250.566406 296.777344 250.449219 Z M 296.777344 250.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.253906 249.996094 C 293.253906 249.878906 293.160156 249.785156 293.042969 249.785156 C 292.925781 249.785156 292.832031 249.878906 292.832031 249.996094 C 292.832031 250.113281 292.925781 250.207031 293.042969 250.207031 C 293.160156 250.207031 293.253906 250.113281 293.253906 249.996094 Z M 293.253906 249.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.082031 247.640625 C 297.082031 247.523438 296.988281 247.429688 296.871094 247.429688 C 296.753906 247.429688 296.660156 247.523438 296.660156 247.640625 C 296.660156 247.757812 296.753906 247.851562 296.871094 247.851562 C 296.988281 247.851562 297.082031 247.757812 297.082031 247.640625 Z M 297.082031 247.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.949219 246.457031 C 293.949219 246.339844 293.855469 246.246094 293.738281 246.246094 C 293.621094 246.246094 293.527344 246.339844 293.527344 246.457031 C 293.527344 246.574219 293.621094 246.667969 293.738281 246.667969 C 293.855469 246.667969 293.949219 246.574219 293.949219 246.457031 Z M 293.949219 246.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.757812 247.21875 C 292.757812 247.101562 292.664062 247.007812 292.546875 247.007812 C 292.429688 247.007812 292.335938 247.101562 292.335938 247.21875 C 292.335938 247.335938 292.429688 247.429688 292.546875 247.429688 C 292.664062 247.429688 292.757812 247.335938 292.757812 247.21875 Z M 292.757812 247.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.449219 247.34375 C 295.449219 247.226562 295.355469 247.132812 295.238281 247.132812 C 295.121094 247.132812 295.027344 247.226562 295.027344 247.34375 C 295.027344 247.460938 295.121094 247.554688 295.238281 247.554688 C 295.355469 247.554688 295.449219 247.460938 295.449219 247.34375 Z M 295.449219 247.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.023438 248.746094 C 297.023438 248.628906 296.929688 248.535156 296.8125 248.535156 C 296.695312 248.535156 296.601562 248.628906 296.601562 248.746094 C 296.601562 248.863281 296.695312 248.957031 296.8125 248.957031 C 296.929688 248.957031 297.023438 248.863281 297.023438 248.746094 Z M 297.023438 248.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.121094 249.4375 C 299.121094 249.320312 299.027344 249.226562 298.910156 249.226562 C 298.792969 249.226562 298.699219 249.320312 298.699219 249.4375 C 298.699219 249.554688 298.792969 249.648438 298.910156 249.648438 C 299.027344 249.648438 299.121094 249.554688 299.121094 249.4375 Z M 299.121094 249.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.136719 255.625 C 298.136719 255.507812 298.042969 255.414062 297.925781 255.414062 C 297.808594 255.414062 297.714844 255.507812 297.714844 255.625 C 297.714844 255.742188 297.808594 255.835938 297.925781 255.835938 C 298.042969 255.835938 298.136719 255.742188 298.136719 255.625 Z M 298.136719 255.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.136719 256.515625 C 299.136719 256.398438 299.042969 256.304688 298.925781 256.304688 C 298.808594 256.304688 298.714844 256.398438 298.714844 256.515625 C 298.714844 256.632812 298.808594 256.726562 298.925781 256.726562 C 299.042969 256.726562 299.136719 256.632812 299.136719 256.515625 Z M 299.136719 256.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.285156 258.175781 C 297.285156 258.058594 297.191406 257.964844 297.074219 257.964844 C 296.957031 257.964844 296.863281 258.058594 296.863281 258.175781 C 296.863281 258.292969 296.957031 258.386719 297.074219 258.386719 C 297.191406 258.386719 297.285156 258.292969 297.285156 258.175781 Z M 297.285156 258.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.3125 258.976562 C 296.3125 258.859375 296.21875 258.765625 296.101562 258.765625 C 295.984375 258.765625 295.890625 258.859375 295.890625 258.976562 C 295.890625 259.09375 295.984375 259.1875 296.101562 259.1875 C 296.21875 259.1875 296.3125 259.09375 296.3125 258.976562 Z M 296.3125 258.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.574219 258.292969 C 297.574219 258.175781 297.480469 258.082031 297.363281 258.082031 C 297.246094 258.082031 297.152344 258.175781 297.152344 258.292969 C 297.152344 258.410156 297.246094 258.503906 297.363281 258.503906 C 297.480469 258.503906 297.574219 258.410156 297.574219 258.292969 Z M 297.574219 258.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.996094 258.757812 C 300.996094 258.640625 300.902344 258.546875 300.785156 258.546875 C 300.667969 258.546875 300.574219 258.640625 300.574219 258.757812 C 300.574219 258.875 300.667969 258.96875 300.785156 258.96875 C 300.902344 258.96875 300.996094 258.875 300.996094 258.757812 Z M 300.996094 258.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.632812 261.132812 C 300.632812 261.015625 300.539062 260.921875 300.421875 260.921875 C 300.304688 260.921875 300.210938 261.015625 300.210938 261.132812 C 300.210938 261.25 300.304688 261.34375 300.421875 261.34375 C 300.539062 261.34375 300.632812 261.25 300.632812 261.132812 Z M 300.632812 261.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.195312 258.574219 C 304.195312 258.457031 304.101562 258.363281 303.984375 258.363281 C 303.867188 258.363281 303.773438 258.457031 303.773438 258.574219 C 303.773438 258.691406 303.867188 258.785156 303.984375 258.785156 C 304.101562 258.785156 304.195312 258.691406 304.195312 258.574219 Z M 304.195312 258.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.429688 258.21875 C 304.429688 258.101562 304.335938 258.007812 304.21875 258.007812 C 304.101562 258.007812 304.007812 258.101562 304.007812 258.21875 C 304.007812 258.335938 304.101562 258.429688 304.21875 258.429688 C 304.335938 258.429688 304.429688 258.335938 304.429688 258.21875 Z M 304.429688 258.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.199219 257.3125 C 303.199219 257.195312 303.105469 257.101562 302.988281 257.101562 C 302.871094 257.101562 302.777344 257.195312 302.777344 257.3125 C 302.777344 257.429688 302.871094 257.523438 302.988281 257.523438 C 303.105469 257.523438 303.199219 257.429688 303.199219 257.3125 Z M 303.199219 257.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.863281 251.316406 C 302.863281 251.199219 302.769531 251.105469 302.652344 251.105469 C 302.535156 251.105469 302.441406 251.199219 302.441406 251.316406 C 302.441406 251.433594 302.535156 251.527344 302.652344 251.527344 C 302.769531 251.527344 302.863281 251.433594 302.863281 251.316406 Z M 302.863281 251.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.367188 251.476562 C 304.367188 251.359375 304.273438 251.265625 304.15625 251.265625 C 304.039062 251.265625 303.945312 251.359375 303.945312 251.476562 C 303.945312 251.59375 304.039062 251.6875 304.15625 251.6875 C 304.273438 251.6875 304.367188 251.59375 304.367188 251.476562 Z M 304.367188 251.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.933594 251.097656 C 303.933594 250.980469 303.839844 250.886719 303.722656 250.886719 C 303.605469 250.886719 303.511719 250.980469 303.511719 251.097656 C 303.511719 251.214844 303.605469 251.308594 303.722656 251.308594 C 303.839844 251.308594 303.933594 251.214844 303.933594 251.097656 Z M 303.933594 251.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.0625 251.433594 C 301.0625 251.316406 300.96875 251.222656 300.851562 251.222656 C 300.734375 251.222656 300.640625 251.316406 300.640625 251.433594 C 300.640625 251.550781 300.734375 251.644531 300.851562 251.644531 C 300.96875 251.644531 301.0625 251.550781 301.0625 251.433594 Z M 301.0625 251.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.625 247.449219 C 300.625 247.332031 300.53125 247.238281 300.414062 247.238281 C 300.296875 247.238281 300.203125 247.332031 300.203125 247.449219 C 300.203125 247.566406 300.296875 247.660156 300.414062 247.660156 C 300.53125 247.660156 300.625 247.566406 300.625 247.449219 Z M 300.625 247.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.871094 244.726562 C 300.871094 244.609375 300.777344 244.515625 300.660156 244.515625 C 300.542969 244.515625 300.449219 244.609375 300.449219 244.726562 C 300.449219 244.84375 300.542969 244.9375 300.660156 244.9375 C 300.777344 244.9375 300.871094 244.84375 300.871094 244.726562 Z M 300.871094 244.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.648438 245.347656 C 303.648438 245.230469 303.554688 245.136719 303.4375 245.136719 C 303.320312 245.136719 303.226562 245.230469 303.226562 245.347656 C 303.226562 245.464844 303.320312 245.558594 303.4375 245.558594 C 303.554688 245.558594 303.648438 245.464844 303.648438 245.347656 Z M 303.648438 245.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.253906 244.023438 C 301.253906 243.90625 301.160156 243.8125 301.042969 243.8125 C 300.925781 243.8125 300.832031 243.90625 300.832031 244.023438 C 300.832031 244.140625 300.925781 244.234375 301.042969 244.234375 C 301.160156 244.234375 301.253906 244.140625 301.253906 244.023438 Z M 301.253906 244.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.214844 240.0625 C 302.214844 239.945312 302.121094 239.851562 302.003906 239.851562 C 301.886719 239.851562 301.792969 239.945312 301.792969 240.0625 C 301.792969 240.179688 301.886719 240.273438 302.003906 240.273438 C 302.121094 240.273438 302.214844 240.179688 302.214844 240.0625 Z M 302.214844 240.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.371094 239.414062 C 299.371094 239.296875 299.277344 239.203125 299.160156 239.203125 C 299.042969 239.203125 298.949219 239.296875 298.949219 239.414062 C 298.949219 239.53125 299.042969 239.625 299.160156 239.625 C 299.277344 239.625 299.371094 239.53125 299.371094 239.414062 Z M 299.371094 239.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.300781 241.0625 C 300.300781 240.945312 300.207031 240.851562 300.089844 240.851562 C 299.972656 240.851562 299.878906 240.945312 299.878906 241.0625 C 299.878906 241.179688 299.972656 241.273438 300.089844 241.273438 C 300.207031 241.273438 300.300781 241.179688 300.300781 241.0625 Z M 300.300781 241.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.332031 240.414062 C 301.332031 240.296875 301.238281 240.203125 301.121094 240.203125 C 301.003906 240.203125 300.910156 240.296875 300.910156 240.414062 C 300.910156 240.53125 301.003906 240.625 301.121094 240.625 C 301.238281 240.625 301.332031 240.53125 301.332031 240.414062 Z M 301.332031 240.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.503906 245.097656 C 301.503906 244.980469 301.410156 244.886719 301.292969 244.886719 C 301.175781 244.886719 301.082031 244.980469 301.082031 245.097656 C 301.082031 245.214844 301.175781 245.308594 301.292969 245.308594 C 301.410156 245.308594 301.503906 245.214844 301.503906 245.097656 Z M 301.503906 245.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.25 245.035156 C 302.25 244.917969 302.15625 244.824219 302.039062 244.824219 C 301.921875 244.824219 301.828125 244.917969 301.828125 245.035156 C 301.828125 245.152344 301.921875 245.246094 302.039062 245.246094 C 302.15625 245.246094 302.25 245.152344 302.25 245.035156 Z M 302.25 245.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.542969 247.703125 C 301.542969 247.585938 301.449219 247.492188 301.332031 247.492188 C 301.214844 247.492188 301.121094 247.585938 301.121094 247.703125 C 301.121094 247.820312 301.214844 247.914062 301.332031 247.914062 C 301.449219 247.914062 301.542969 247.820312 301.542969 247.703125 Z M 301.542969 247.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.429688 251.355469 C 302.429688 251.238281 302.335938 251.144531 302.21875 251.144531 C 302.101562 251.144531 302.007812 251.238281 302.007812 251.355469 C 302.007812 251.472656 302.101562 251.566406 302.21875 251.566406 C 302.335938 251.566406 302.429688 251.472656 302.429688 251.355469 Z M 302.429688 251.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.515625 252.695312 C 302.515625 252.578125 302.421875 252.484375 302.304688 252.484375 C 302.1875 252.484375 302.09375 252.578125 302.09375 252.695312 C 302.09375 252.8125 302.1875 252.90625 302.304688 252.90625 C 302.421875 252.90625 302.515625 252.8125 302.515625 252.695312 Z M 302.515625 252.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.894531 254.519531 C 305.894531 254.402344 305.800781 254.308594 305.683594 254.308594 C 305.566406 254.308594 305.472656 254.402344 305.472656 254.519531 C 305.472656 254.636719 305.566406 254.730469 305.683594 254.730469 C 305.800781 254.730469 305.894531 254.636719 305.894531 254.519531 Z M 305.894531 254.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.871094 255.964844 C 305.871094 255.847656 305.777344 255.753906 305.660156 255.753906 C 305.542969 255.753906 305.449219 255.847656 305.449219 255.964844 C 305.449219 256.082031 305.542969 256.175781 305.660156 256.175781 C 305.777344 256.175781 305.871094 256.082031 305.871094 255.964844 Z M 305.871094 255.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.4375 255.191406 C 305.4375 255.074219 305.34375 254.980469 305.226562 254.980469 C 305.109375 254.980469 305.015625 255.074219 305.015625 255.191406 C 305.015625 255.308594 305.109375 255.402344 305.226562 255.402344 C 305.34375 255.402344 305.4375 255.308594 305.4375 255.191406 Z M 305.4375 255.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 305.046875 253.980469 C 305.046875 253.863281 304.953125 253.769531 304.835938 253.769531 C 304.71875 253.769531 304.625 253.863281 304.625 253.980469 C 304.625 254.097656 304.71875 254.191406 304.835938 254.191406 C 304.953125 254.191406 305.046875 254.097656 305.046875 253.980469 Z M 305.046875 253.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.183594 255.089844 C 302.183594 254.972656 302.089844 254.878906 301.972656 254.878906 C 301.855469 254.878906 301.761719 254.972656 301.761719 255.089844 C 301.761719 255.207031 301.855469 255.300781 301.972656 255.300781 C 302.089844 255.300781 302.183594 255.207031 302.183594 255.089844 Z M 302.183594 255.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.632812 252.894531 C 299.632812 252.777344 299.539062 252.683594 299.421875 252.683594 C 299.304688 252.683594 299.210938 252.777344 299.210938 252.894531 C 299.210938 253.011719 299.304688 253.105469 299.421875 253.105469 C 299.539062 253.105469 299.632812 253.011719 299.632812 252.894531 Z M 299.632812 252.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.183594 253.183594 C 298.183594 253.066406 298.089844 252.972656 297.972656 252.972656 C 297.855469 252.972656 297.761719 253.066406 297.761719 253.183594 C 297.761719 253.300781 297.855469 253.394531 297.972656 253.394531 C 298.089844 253.394531 298.183594 253.300781 298.183594 253.183594 Z M 298.183594 253.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.257812 252.828125 C 297.257812 252.710938 297.164062 252.617188 297.046875 252.617188 C 296.929688 252.617188 296.835938 252.710938 296.835938 252.828125 C 296.835938 252.945312 296.929688 253.039062 297.046875 253.039062 C 297.164062 253.039062 297.257812 252.945312 297.257812 252.828125 Z M 297.257812 252.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.523438 251.394531 C 297.523438 251.277344 297.429688 251.183594 297.3125 251.183594 C 297.195312 251.183594 297.101562 251.277344 297.101562 251.394531 C 297.101562 251.511719 297.195312 251.605469 297.3125 251.605469 C 297.429688 251.605469 297.523438 251.511719 297.523438 251.394531 Z M 297.523438 251.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.28125 250.84375 C 299.28125 250.726562 299.1875 250.632812 299.070312 250.632812 C 298.953125 250.632812 298.859375 250.726562 298.859375 250.84375 C 298.859375 250.960938 298.953125 251.054688 299.070312 251.054688 C 299.1875 251.054688 299.28125 250.960938 299.28125 250.84375 Z M 299.28125 250.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.679688 252.84375 C 300.679688 252.726562 300.585938 252.632812 300.46875 252.632812 C 300.351562 252.632812 300.257812 252.726562 300.257812 252.84375 C 300.257812 252.960938 300.351562 253.054688 300.46875 253.054688 C 300.585938 253.054688 300.679688 252.960938 300.679688 252.84375 Z M 300.679688 252.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.085938 253.25 C 294.085938 253.132812 293.992188 253.039062 293.875 253.039062 C 293.757812 253.039062 293.664062 253.132812 293.664062 253.25 C 293.664062 253.367188 293.757812 253.460938 293.875 253.460938 C 293.992188 253.460938 294.085938 253.367188 294.085938 253.25 Z M 294.085938 253.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.867188 252.65625 C 296.867188 252.539062 296.773438 252.445312 296.65625 252.445312 C 296.539062 252.445312 296.445312 252.539062 296.445312 252.65625 C 296.445312 252.773438 296.539062 252.867188 296.65625 252.867188 C 296.773438 252.867188 296.867188 252.773438 296.867188 252.65625 Z M 296.867188 252.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.269531 251.296875 C 296.269531 251.179688 296.175781 251.085938 296.058594 251.085938 C 295.941406 251.085938 295.847656 251.179688 295.847656 251.296875 C 295.847656 251.414062 295.941406 251.507812 296.058594 251.507812 C 296.175781 251.507812 296.269531 251.414062 296.269531 251.296875 Z M 296.269531 251.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.960938 254.992188 C 298.960938 254.875 298.867188 254.78125 298.75 254.78125 C 298.632812 254.78125 298.539062 254.875 298.539062 254.992188 C 298.539062 255.109375 298.632812 255.203125 298.75 255.203125 C 298.867188 255.203125 298.960938 255.109375 298.960938 254.992188 Z M 298.960938 254.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.617188 254.628906 C 294.617188 254.511719 294.523438 254.417969 294.40625 254.417969 C 294.289062 254.417969 294.195312 254.511719 294.195312 254.628906 C 294.195312 254.746094 294.289062 254.839844 294.40625 254.839844 C 294.523438 254.839844 294.617188 254.746094 294.617188 254.628906 Z M 294.617188 254.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.363281 254.832031 C 297.363281 254.714844 297.269531 254.621094 297.152344 254.621094 C 297.035156 254.621094 296.941406 254.714844 296.941406 254.832031 C 296.941406 254.949219 297.035156 255.042969 297.152344 255.042969 C 297.269531 255.042969 297.363281 254.949219 297.363281 254.832031 Z M 297.363281 254.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.851562 258.003906 C 292.851562 257.886719 292.757812 257.792969 292.640625 257.792969 C 292.523438 257.792969 292.429688 257.886719 292.429688 258.003906 C 292.429688 258.121094 292.523438 258.214844 292.640625 258.214844 C 292.757812 258.214844 292.851562 258.121094 292.851562 258.003906 Z M 292.851562 258.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.386719 257.84375 C 292.386719 257.726562 292.292969 257.632812 292.175781 257.632812 C 292.058594 257.632812 291.964844 257.726562 291.964844 257.84375 C 291.964844 257.960938 292.058594 258.054688 292.175781 258.054688 C 292.292969 258.054688 292.386719 257.960938 292.386719 257.84375 Z M 292.386719 257.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.445312 257.527344 C 288.445312 257.410156 288.351562 257.316406 288.234375 257.316406 C 288.117188 257.316406 288.023438 257.410156 288.023438 257.527344 C 288.023438 257.644531 288.117188 257.738281 288.234375 257.738281 C 288.351562 257.738281 288.445312 257.644531 288.445312 257.527344 Z M 288.445312 257.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.421875 257.71875 C 291.421875 257.601562 291.328125 257.507812 291.210938 257.507812 C 291.09375 257.507812 291 257.601562 291 257.71875 C 291 257.835938 291.09375 257.929688 291.210938 257.929688 C 291.328125 257.929688 291.421875 257.835938 291.421875 257.71875 Z M 291.421875 257.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.933594 259.296875 C 293.933594 259.179688 293.839844 259.085938 293.722656 259.085938 C 293.605469 259.085938 293.511719 259.179688 293.511719 259.296875 C 293.511719 259.414062 293.605469 259.507812 293.722656 259.507812 C 293.839844 259.507812 293.933594 259.414062 293.933594 259.296875 Z M 293.933594 259.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.136719 260.011719 C 292.136719 259.894531 292.042969 259.800781 291.925781 259.800781 C 291.808594 259.800781 291.714844 259.894531 291.714844 260.011719 C 291.714844 260.128906 291.808594 260.222656 291.925781 260.222656 C 292.042969 260.222656 292.136719 260.128906 292.136719 260.011719 Z M 292.136719 260.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.222656 259.714844 C 290.222656 259.597656 290.128906 259.503906 290.011719 259.503906 C 289.894531 259.503906 289.800781 259.597656 289.800781 259.714844 C 289.800781 259.832031 289.894531 259.925781 290.011719 259.925781 C 290.128906 259.925781 290.222656 259.832031 290.222656 259.714844 Z M 290.222656 259.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.84375 259.382812 C 288.84375 259.265625 288.75 259.171875 288.632812 259.171875 C 288.515625 259.171875 288.421875 259.265625 288.421875 259.382812 C 288.421875 259.5 288.515625 259.59375 288.632812 259.59375 C 288.75 259.59375 288.84375 259.5 288.84375 259.382812 Z M 288.84375 259.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.816406 262.238281 C 287.816406 262.121094 287.722656 262.027344 287.605469 262.027344 C 287.488281 262.027344 287.394531 262.121094 287.394531 262.238281 C 287.394531 262.355469 287.488281 262.449219 287.605469 262.449219 C 287.722656 262.449219 287.816406 262.355469 287.816406 262.238281 Z M 287.816406 262.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.984375 261.347656 C 283.984375 261.230469 283.890625 261.136719 283.773438 261.136719 C 283.65625 261.136719 283.5625 261.230469 283.5625 261.347656 C 283.5625 261.464844 283.65625 261.558594 283.773438 261.558594 C 283.890625 261.558594 283.984375 261.464844 283.984375 261.347656 Z M 283.984375 261.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.4375 262.003906 C 280.4375 261.886719 280.34375 261.792969 280.226562 261.792969 C 280.109375 261.792969 280.015625 261.886719 280.015625 262.003906 C 280.015625 262.121094 280.109375 262.214844 280.226562 262.214844 C 280.34375 262.214844 280.4375 262.121094 280.4375 262.003906 Z M 280.4375 262.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.40625 260.300781 C 277.40625 260.183594 277.3125 260.089844 277.195312 260.089844 C 277.078125 260.089844 276.984375 260.183594 276.984375 260.300781 C 276.984375 260.417969 277.078125 260.511719 277.195312 260.511719 C 277.3125 260.511719 277.40625 260.417969 277.40625 260.300781 Z M 277.40625 260.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.132812 259.707031 C 280.132812 259.589844 280.039062 259.496094 279.921875 259.496094 C 279.804688 259.496094 279.710938 259.589844 279.710938 259.707031 C 279.710938 259.824219 279.804688 259.917969 279.921875 259.917969 C 280.039062 259.917969 280.132812 259.824219 280.132812 259.707031 Z M 280.132812 259.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.320312 256.589844 C 278.320312 256.472656 278.226562 256.378906 278.109375 256.378906 C 277.992188 256.378906 277.898438 256.472656 277.898438 256.589844 C 277.898438 256.707031 277.992188 256.800781 278.109375 256.800781 C 278.226562 256.800781 278.320312 256.707031 278.320312 256.589844 Z M 278.320312 256.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.164062 254.554688 C 280.164062 254.4375 280.070312 254.34375 279.953125 254.34375 C 279.835938 254.34375 279.742188 254.4375 279.742188 254.554688 C 279.742188 254.671875 279.835938 254.765625 279.953125 254.765625 C 280.070312 254.765625 280.164062 254.671875 280.164062 254.554688 Z M 280.164062 254.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.339844 253.1875 C 279.339844 253.070312 279.246094 252.976562 279.128906 252.976562 C 279.011719 252.976562 278.917969 253.070312 278.917969 253.1875 C 278.917969 253.304688 279.011719 253.398438 279.128906 253.398438 C 279.246094 253.398438 279.339844 253.304688 279.339844 253.1875 Z M 279.339844 253.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.5625 251.785156 C 278.5625 251.667969 278.46875 251.574219 278.351562 251.574219 C 278.234375 251.574219 278.140625 251.667969 278.140625 251.785156 C 278.140625 251.902344 278.234375 251.996094 278.351562 251.996094 C 278.46875 251.996094 278.5625 251.902344 278.5625 251.785156 Z M 278.5625 251.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.945312 256.058594 C 276.945312 255.941406 276.851562 255.847656 276.734375 255.847656 C 276.617188 255.847656 276.523438 255.941406 276.523438 256.058594 C 276.523438 256.175781 276.617188 256.269531 276.734375 256.269531 C 276.851562 256.269531 276.945312 256.175781 276.945312 256.058594 Z M 276.945312 256.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.847656 259.40625 C 277.847656 259.289062 277.753906 259.195312 277.636719 259.195312 C 277.519531 259.195312 277.425781 259.289062 277.425781 259.40625 C 277.425781 259.523438 277.519531 259.617188 277.636719 259.617188 C 277.753906 259.617188 277.847656 259.523438 277.847656 259.40625 Z M 277.847656 259.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.453125 261.105469 C 280.453125 260.988281 280.359375 260.894531 280.242188 260.894531 C 280.125 260.894531 280.03125 260.988281 280.03125 261.105469 C 280.03125 261.222656 280.125 261.316406 280.242188 261.316406 C 280.359375 261.316406 280.453125 261.222656 280.453125 261.105469 Z M 280.453125 261.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.855469 257.820312 C 280.855469 257.703125 280.761719 257.609375 280.644531 257.609375 C 280.527344 257.609375 280.433594 257.703125 280.433594 257.820312 C 280.433594 257.9375 280.527344 258.03125 280.644531 258.03125 C 280.761719 258.03125 280.855469 257.9375 280.855469 257.820312 Z M 280.855469 257.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.609375 257.289062 C 279.609375 257.171875 279.515625 257.078125 279.398438 257.078125 C 279.28125 257.078125 279.1875 257.171875 279.1875 257.289062 C 279.1875 257.40625 279.28125 257.5 279.398438 257.5 C 279.515625 257.5 279.609375 257.40625 279.609375 257.289062 Z M 279.609375 257.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.863281 257.464844 C 278.863281 257.347656 278.769531 257.253906 278.652344 257.253906 C 278.535156 257.253906 278.441406 257.347656 278.441406 257.464844 C 278.441406 257.582031 278.535156 257.675781 278.652344 257.675781 C 278.769531 257.675781 278.863281 257.582031 278.863281 257.464844 Z M 278.863281 257.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.546875 257.050781 C 277.546875 256.933594 277.453125 256.839844 277.335938 256.839844 C 277.21875 256.839844 277.125 256.933594 277.125 257.050781 C 277.125 257.167969 277.21875 257.261719 277.335938 257.261719 C 277.453125 257.261719 277.546875 257.167969 277.546875 257.050781 Z M 277.546875 257.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.304688 259.4375 C 278.304688 259.320312 278.210938 259.226562 278.09375 259.226562 C 277.976562 259.226562 277.882812 259.320312 277.882812 259.4375 C 277.882812 259.554688 277.976562 259.648438 278.09375 259.648438 C 278.210938 259.648438 278.304688 259.554688 278.304688 259.4375 Z M 278.304688 259.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.238281 259.71875 C 281.238281 259.601562 281.144531 259.507812 281.027344 259.507812 C 280.910156 259.507812 280.816406 259.601562 280.816406 259.71875 C 280.816406 259.835938 280.910156 259.929688 281.027344 259.929688 C 281.144531 259.929688 281.238281 259.835938 281.238281 259.71875 Z M 281.238281 259.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.984375 256.9375 C 280.984375 256.820312 280.890625 256.726562 280.773438 256.726562 C 280.65625 256.726562 280.5625 256.820312 280.5625 256.9375 C 280.5625 257.054688 280.65625 257.148438 280.773438 257.148438 C 280.890625 257.148438 280.984375 257.054688 280.984375 256.9375 Z M 280.984375 256.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.867188 257.144531 C 280.867188 257.027344 280.773438 256.933594 280.65625 256.933594 C 280.539062 256.933594 280.445312 257.027344 280.445312 257.144531 C 280.445312 257.261719 280.539062 257.355469 280.65625 257.355469 C 280.773438 257.355469 280.867188 257.261719 280.867188 257.144531 Z M 280.867188 257.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.296875 258.847656 C 274.296875 258.730469 274.203125 258.636719 274.085938 258.636719 C 273.96875 258.636719 273.875 258.730469 273.875 258.847656 C 273.875 258.964844 273.96875 259.058594 274.085938 259.058594 C 274.203125 259.058594 274.296875 258.964844 274.296875 258.847656 Z M 274.296875 258.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.078125 258.402344 C 274.078125 258.285156 273.984375 258.191406 273.867188 258.191406 C 273.75 258.191406 273.65625 258.285156 273.65625 258.402344 C 273.65625 258.519531 273.75 258.613281 273.867188 258.613281 C 273.984375 258.613281 274.078125 258.519531 274.078125 258.402344 Z M 274.078125 258.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.722656 259.832031 C 273.722656 259.714844 273.628906 259.621094 273.511719 259.621094 C 273.394531 259.621094 273.300781 259.714844 273.300781 259.832031 C 273.300781 259.949219 273.394531 260.042969 273.511719 260.042969 C 273.628906 260.042969 273.722656 259.949219 273.722656 259.832031 Z M 273.722656 259.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.414062 260.894531 C 272.414062 260.777344 272.320312 260.683594 272.203125 260.683594 C 272.085938 260.683594 271.992188 260.777344 271.992188 260.894531 C 271.992188 261.011719 272.085938 261.105469 272.203125 261.105469 C 272.320312 261.105469 272.414062 261.011719 272.414062 260.894531 Z M 272.414062 260.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.539062 260.140625 C 272.539062 260.023438 272.445312 259.929688 272.328125 259.929688 C 272.210938 259.929688 272.117188 260.023438 272.117188 260.140625 C 272.117188 260.257812 272.210938 260.351562 272.328125 260.351562 C 272.445312 260.351562 272.539062 260.257812 272.539062 260.140625 Z M 272.539062 260.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.289062 257.984375 C 273.289062 257.867188 273.195312 257.773438 273.078125 257.773438 C 272.960938 257.773438 272.867188 257.867188 272.867188 257.984375 C 272.867188 258.101562 272.960938 258.195312 273.078125 258.195312 C 273.195312 258.195312 273.289062 258.101562 273.289062 257.984375 Z M 273.289062 257.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.34375 256.015625 C 274.34375 255.898438 274.25 255.804688 274.132812 255.804688 C 274.015625 255.804688 273.921875 255.898438 273.921875 256.015625 C 273.921875 256.132812 274.015625 256.226562 274.132812 256.226562 C 274.25 256.226562 274.34375 256.132812 274.34375 256.015625 Z M 274.34375 256.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.257812 252.398438 C 270.257812 252.28125 270.164062 252.1875 270.046875 252.1875 C 269.929688 252.1875 269.835938 252.28125 269.835938 252.398438 C 269.835938 252.515625 269.929688 252.609375 270.046875 252.609375 C 270.164062 252.609375 270.257812 252.515625 270.257812 252.398438 Z M 270.257812 252.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.863281 255.5625 C 269.863281 255.445312 269.769531 255.351562 269.652344 255.351562 C 269.535156 255.351562 269.441406 255.445312 269.441406 255.5625 C 269.441406 255.679688 269.535156 255.773438 269.652344 255.773438 C 269.769531 255.773438 269.863281 255.679688 269.863281 255.5625 Z M 269.863281 255.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.214844 259.039062 C 271.214844 258.921875 271.121094 258.828125 271.003906 258.828125 C 270.886719 258.828125 270.792969 258.921875 270.792969 259.039062 C 270.792969 259.15625 270.886719 259.25 271.003906 259.25 C 271.121094 259.25 271.214844 259.15625 271.214844 259.039062 Z M 271.214844 259.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.417969 261.726562 C 271.417969 261.609375 271.324219 261.515625 271.207031 261.515625 C 271.089844 261.515625 270.996094 261.609375 270.996094 261.726562 C 270.996094 261.84375 271.089844 261.9375 271.207031 261.9375 C 271.324219 261.9375 271.417969 261.84375 271.417969 261.726562 Z M 271.417969 261.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.628906 262.628906 C 271.628906 262.511719 271.535156 262.417969 271.417969 262.417969 C 271.300781 262.417969 271.207031 262.511719 271.207031 262.628906 C 271.207031 262.746094 271.300781 262.839844 271.417969 262.839844 C 271.535156 262.839844 271.628906 262.746094 271.628906 262.628906 Z M 271.628906 262.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.703125 259.578125 C 270.703125 259.460938 270.609375 259.367188 270.492188 259.367188 C 270.375 259.367188 270.28125 259.460938 270.28125 259.578125 C 270.28125 259.695312 270.375 259.789062 270.492188 259.789062 C 270.609375 259.789062 270.703125 259.695312 270.703125 259.578125 Z M 270.703125 259.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.550781 260.410156 C 272.550781 260.292969 272.457031 260.199219 272.339844 260.199219 C 272.222656 260.199219 272.128906 260.292969 272.128906 260.410156 C 272.128906 260.527344 272.222656 260.621094 272.339844 260.621094 C 272.457031 260.621094 272.550781 260.527344 272.550781 260.410156 Z M 272.550781 260.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.066406 257.523438 C 274.066406 257.40625 273.972656 257.3125 273.855469 257.3125 C 273.738281 257.3125 273.644531 257.40625 273.644531 257.523438 C 273.644531 257.640625 273.738281 257.734375 273.855469 257.734375 C 273.972656 257.734375 274.066406 257.640625 274.066406 257.523438 Z M 274.066406 257.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.460938 256.972656 C 275.460938 256.855469 275.367188 256.761719 275.25 256.761719 C 275.132812 256.761719 275.039062 256.855469 275.039062 256.972656 C 275.039062 257.089844 275.132812 257.183594 275.25 257.183594 C 275.367188 257.183594 275.460938 257.089844 275.460938 256.972656 Z M 275.460938 256.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.660156 257.558594 C 274.660156 257.441406 274.566406 257.347656 274.449219 257.347656 C 274.332031 257.347656 274.238281 257.441406 274.238281 257.558594 C 274.238281 257.675781 274.332031 257.769531 274.449219 257.769531 C 274.566406 257.769531 274.660156 257.675781 274.660156 257.558594 Z M 274.660156 257.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.351562 259.488281 C 273.351562 259.371094 273.257812 259.277344 273.140625 259.277344 C 273.023438 259.277344 272.929688 259.371094 272.929688 259.488281 C 272.929688 259.605469 273.023438 259.699219 273.140625 259.699219 C 273.257812 259.699219 273.351562 259.605469 273.351562 259.488281 Z M 273.351562 259.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.535156 261.417969 C 275.535156 261.300781 275.441406 261.207031 275.324219 261.207031 C 275.207031 261.207031 275.113281 261.300781 275.113281 261.417969 C 275.113281 261.535156 275.207031 261.628906 275.324219 261.628906 C 275.441406 261.628906 275.535156 261.535156 275.535156 261.417969 Z M 275.535156 261.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.570312 262.019531 C 273.570312 261.902344 273.476562 261.808594 273.359375 261.808594 C 273.242188 261.808594 273.148438 261.902344 273.148438 262.019531 C 273.148438 262.136719 273.242188 262.230469 273.359375 262.230469 C 273.476562 262.230469 273.570312 262.136719 273.570312 262.019531 Z M 273.570312 262.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.378906 260.957031 C 276.378906 260.839844 276.285156 260.746094 276.167969 260.746094 C 276.050781 260.746094 275.957031 260.839844 275.957031 260.957031 C 275.957031 261.074219 276.050781 261.167969 276.167969 261.167969 C 276.285156 261.167969 276.378906 261.074219 276.378906 260.957031 Z M 276.378906 260.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.359375 258.164062 C 271.359375 258.046875 271.265625 257.953125 271.148438 257.953125 C 271.03125 257.953125 270.9375 258.046875 270.9375 258.164062 C 270.9375 258.28125 271.03125 258.375 271.148438 258.375 C 271.265625 258.375 271.359375 258.28125 271.359375 258.164062 Z M 271.359375 258.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.574219 259.714844 C 270.574219 259.597656 270.480469 259.503906 270.363281 259.503906 C 270.246094 259.503906 270.152344 259.597656 270.152344 259.714844 C 270.152344 259.832031 270.246094 259.925781 270.363281 259.925781 C 270.480469 259.925781 270.574219 259.832031 270.574219 259.714844 Z M 270.574219 259.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.316406 257.53125 C 270.316406 257.414062 270.222656 257.320312 270.105469 257.320312 C 269.988281 257.320312 269.894531 257.414062 269.894531 257.53125 C 269.894531 257.648438 269.988281 257.742188 270.105469 257.742188 C 270.222656 257.742188 270.316406 257.648438 270.316406 257.53125 Z M 270.316406 257.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.914062 260.246094 C 273.914062 260.128906 273.820312 260.035156 273.703125 260.035156 C 273.585938 260.035156 273.492188 260.128906 273.492188 260.246094 C 273.492188 260.363281 273.585938 260.457031 273.703125 260.457031 C 273.820312 260.457031 273.914062 260.363281 273.914062 260.246094 Z M 273.914062 260.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.128906 260.828125 C 274.128906 260.710938 274.035156 260.617188 273.917969 260.617188 C 273.800781 260.617188 273.707031 260.710938 273.707031 260.828125 C 273.707031 260.945312 273.800781 261.039062 273.917969 261.039062 C 274.035156 261.039062 274.128906 260.945312 274.128906 260.828125 Z M 274.128906 260.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.941406 260.789062 C 278.941406 260.671875 278.847656 260.578125 278.730469 260.578125 C 278.613281 260.578125 278.519531 260.671875 278.519531 260.789062 C 278.519531 260.90625 278.613281 261 278.730469 261 C 278.847656 261 278.941406 260.90625 278.941406 260.789062 Z M 278.941406 260.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.175781 258.675781 C 281.175781 258.558594 281.082031 258.464844 280.964844 258.464844 C 280.847656 258.464844 280.753906 258.558594 280.753906 258.675781 C 280.753906 258.792969 280.847656 258.886719 280.964844 258.886719 C 281.082031 258.886719 281.175781 258.792969 281.175781 258.675781 Z M 281.175781 258.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.710938 257.234375 C 281.710938 257.117188 281.617188 257.023438 281.5 257.023438 C 281.382812 257.023438 281.289062 257.117188 281.289062 257.234375 C 281.289062 257.351562 281.382812 257.445312 281.5 257.445312 C 281.617188 257.445312 281.710938 257.351562 281.710938 257.234375 Z M 281.710938 257.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.542969 257.082031 C 281.542969 256.964844 281.449219 256.871094 281.332031 256.871094 C 281.214844 256.871094 281.121094 256.964844 281.121094 257.082031 C 281.121094 257.199219 281.214844 257.292969 281.332031 257.292969 C 281.449219 257.292969 281.542969 257.199219 281.542969 257.082031 Z M 281.542969 257.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.828125 258.167969 C 277.828125 258.050781 277.734375 257.957031 277.617188 257.957031 C 277.5 257.957031 277.40625 258.050781 277.40625 258.167969 C 277.40625 258.285156 277.5 258.378906 277.617188 258.378906 C 277.734375 258.378906 277.828125 258.285156 277.828125 258.167969 Z M 277.828125 258.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.296875 258.664062 C 275.296875 258.546875 275.203125 258.453125 275.085938 258.453125 C 274.96875 258.453125 274.875 258.546875 274.875 258.664062 C 274.875 258.78125 274.96875 258.875 275.085938 258.875 C 275.203125 258.875 275.296875 258.78125 275.296875 258.664062 Z M 275.296875 258.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.960938 256.867188 C 279.960938 256.75 279.867188 256.65625 279.75 256.65625 C 279.632812 256.65625 279.539062 256.75 279.539062 256.867188 C 279.539062 256.984375 279.632812 257.078125 279.75 257.078125 C 279.867188 257.078125 279.960938 256.984375 279.960938 256.867188 Z M 279.960938 256.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.054688 257.058594 C 282.054688 256.941406 281.960938 256.847656 281.84375 256.847656 C 281.726562 256.847656 281.632812 256.941406 281.632812 257.058594 C 281.632812 257.175781 281.726562 257.269531 281.84375 257.269531 C 281.960938 257.269531 282.054688 257.175781 282.054688 257.058594 Z M 282.054688 257.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.648438 258.742188 C 281.648438 258.625 281.554688 258.53125 281.4375 258.53125 C 281.320312 258.53125 281.226562 258.625 281.226562 258.742188 C 281.226562 258.859375 281.320312 258.953125 281.4375 258.953125 C 281.554688 258.953125 281.648438 258.859375 281.648438 258.742188 Z M 281.648438 258.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.792969 256.511719 C 283.792969 256.394531 283.699219 256.300781 283.582031 256.300781 C 283.464844 256.300781 283.371094 256.394531 283.371094 256.511719 C 283.371094 256.628906 283.464844 256.722656 283.582031 256.722656 C 283.699219 256.722656 283.792969 256.628906 283.792969 256.511719 Z M 283.792969 256.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.546875 254.109375 C 282.546875 253.992188 282.453125 253.898438 282.335938 253.898438 C 282.21875 253.898438 282.125 253.992188 282.125 254.109375 C 282.125 254.226562 282.21875 254.320312 282.335938 254.320312 C 282.453125 254.320312 282.546875 254.226562 282.546875 254.109375 Z M 282.546875 254.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.746094 253.183594 C 278.746094 253.066406 278.652344 252.972656 278.535156 252.972656 C 278.417969 252.972656 278.324219 253.066406 278.324219 253.183594 C 278.324219 253.300781 278.417969 253.394531 278.535156 253.394531 C 278.652344 253.394531 278.746094 253.300781 278.746094 253.183594 Z M 278.746094 253.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.742188 256.097656 C 277.742188 255.980469 277.648438 255.886719 277.53125 255.886719 C 277.414062 255.886719 277.320312 255.980469 277.320312 256.097656 C 277.320312 256.214844 277.414062 256.308594 277.53125 256.308594 C 277.648438 256.308594 277.742188 256.214844 277.742188 256.097656 Z M 277.742188 256.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.351562 252.605469 C 275.351562 252.488281 275.257812 252.394531 275.140625 252.394531 C 275.023438 252.394531 274.929688 252.488281 274.929688 252.605469 C 274.929688 252.722656 275.023438 252.816406 275.140625 252.816406 C 275.257812 252.816406 275.351562 252.722656 275.351562 252.605469 Z M 275.351562 252.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.386719 253.398438 C 271.386719 253.28125 271.292969 253.1875 271.175781 253.1875 C 271.058594 253.1875 270.964844 253.28125 270.964844 253.398438 C 270.964844 253.515625 271.058594 253.609375 271.175781 253.609375 C 271.292969 253.609375 271.386719 253.515625 271.386719 253.398438 Z M 271.386719 253.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.964844 252.390625 C 273.964844 252.273438 273.871094 252.179688 273.753906 252.179688 C 273.636719 252.179688 273.542969 252.273438 273.542969 252.390625 C 273.542969 252.507812 273.636719 252.601562 273.753906 252.601562 C 273.871094 252.601562 273.964844 252.507812 273.964844 252.390625 Z M 273.964844 252.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.742188 254.566406 C 273.742188 254.449219 273.648438 254.355469 273.53125 254.355469 C 273.414062 254.355469 273.320312 254.449219 273.320312 254.566406 C 273.320312 254.683594 273.414062 254.777344 273.53125 254.777344 C 273.648438 254.777344 273.742188 254.683594 273.742188 254.566406 Z M 273.742188 254.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.738281 255.441406 C 274.738281 255.324219 274.644531 255.230469 274.527344 255.230469 C 274.410156 255.230469 274.316406 255.324219 274.316406 255.441406 C 274.316406 255.558594 274.410156 255.652344 274.527344 255.652344 C 274.644531 255.652344 274.738281 255.558594 274.738281 255.441406 Z M 274.738281 255.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.65625 259.710938 C 271.65625 259.59375 271.5625 259.5 271.445312 259.5 C 271.328125 259.5 271.234375 259.59375 271.234375 259.710938 C 271.234375 259.828125 271.328125 259.921875 271.445312 259.921875 C 271.5625 259.921875 271.65625 259.828125 271.65625 259.710938 Z M 271.65625 259.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.382812 259.339844 C 273.382812 259.222656 273.289062 259.128906 273.171875 259.128906 C 273.054688 259.128906 272.960938 259.222656 272.960938 259.339844 C 272.960938 259.457031 273.054688 259.550781 273.171875 259.550781 C 273.289062 259.550781 273.382812 259.457031 273.382812 259.339844 Z M 273.382812 259.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.492188 261.105469 C 273.492188 260.988281 273.398438 260.894531 273.28125 260.894531 C 273.164062 260.894531 273.070312 260.988281 273.070312 261.105469 C 273.070312 261.222656 273.164062 261.316406 273.28125 261.316406 C 273.398438 261.316406 273.492188 261.222656 273.492188 261.105469 Z M 273.492188 261.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.992188 260.4375 C 269.992188 260.320312 269.898438 260.226562 269.78125 260.226562 C 269.664062 260.226562 269.570312 260.320312 269.570312 260.4375 C 269.570312 260.554688 269.664062 260.648438 269.78125 260.648438 C 269.898438 260.648438 269.992188 260.554688 269.992188 260.4375 Z M 269.992188 260.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.6875 262.257812 C 267.6875 262.140625 267.59375 262.046875 267.476562 262.046875 C 267.359375 262.046875 267.265625 262.140625 267.265625 262.257812 C 267.265625 262.375 267.359375 262.46875 267.476562 262.46875 C 267.59375 262.46875 267.6875 262.375 267.6875 262.257812 Z M 267.6875 262.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.894531 262.0625 C 264.894531 261.945312 264.800781 261.851562 264.683594 261.851562 C 264.566406 261.851562 264.472656 261.945312 264.472656 262.0625 C 264.472656 262.179688 264.566406 262.273438 264.683594 262.273438 C 264.800781 262.273438 264.894531 262.179688 264.894531 262.0625 Z M 264.894531 262.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.882812 264.511719 C 261.882812 264.394531 261.789062 264.300781 261.671875 264.300781 C 261.554688 264.300781 261.460938 264.394531 261.460938 264.511719 C 261.460938 264.628906 261.554688 264.722656 261.671875 264.722656 C 261.789062 264.722656 261.882812 264.628906 261.882812 264.511719 Z M 261.882812 264.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.242188 263.496094 C 260.242188 263.378906 260.148438 263.285156 260.03125 263.285156 C 259.914062 263.285156 259.820312 263.378906 259.820312 263.496094 C 259.820312 263.613281 259.914062 263.707031 260.03125 263.707031 C 260.148438 263.707031 260.242188 263.613281 260.242188 263.496094 Z M 260.242188 263.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.449219 265.433594 C 257.449219 265.316406 257.355469 265.222656 257.238281 265.222656 C 257.121094 265.222656 257.027344 265.316406 257.027344 265.433594 C 257.027344 265.550781 257.121094 265.644531 257.238281 265.644531 C 257.355469 265.644531 257.449219 265.550781 257.449219 265.433594 Z M 257.449219 265.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.371094 264.246094 C 261.371094 264.128906 261.277344 264.035156 261.160156 264.035156 C 261.042969 264.035156 260.949219 264.128906 260.949219 264.246094 C 260.949219 264.363281 261.042969 264.457031 261.160156 264.457031 C 261.277344 264.457031 261.371094 264.363281 261.371094 264.246094 Z M 261.371094 264.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.289062 263.296875 C 264.289062 263.179688 264.195312 263.085938 264.078125 263.085938 C 263.960938 263.085938 263.867188 263.179688 263.867188 263.296875 C 263.867188 263.414062 263.960938 263.507812 264.078125 263.507812 C 264.195312 263.507812 264.289062 263.414062 264.289062 263.296875 Z M 264.289062 263.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.761719 261.648438 C 263.761719 261.53125 263.667969 261.4375 263.550781 261.4375 C 263.433594 261.4375 263.339844 261.53125 263.339844 261.648438 C 263.339844 261.765625 263.433594 261.859375 263.550781 261.859375 C 263.667969 261.859375 263.761719 261.765625 263.761719 261.648438 Z M 263.761719 261.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.765625 263.832031 C 263.765625 263.714844 263.671875 263.621094 263.554688 263.621094 C 263.4375 263.621094 263.34375 263.714844 263.34375 263.832031 C 263.34375 263.949219 263.4375 264.042969 263.554688 264.042969 C 263.671875 264.042969 263.765625 263.949219 263.765625 263.832031 Z M 263.765625 263.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.253906 263.664062 C 264.253906 263.546875 264.160156 263.453125 264.042969 263.453125 C 263.925781 263.453125 263.832031 263.546875 263.832031 263.664062 C 263.832031 263.78125 263.925781 263.875 264.042969 263.875 C 264.160156 263.875 264.253906 263.78125 264.253906 263.664062 Z M 264.253906 263.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.90625 263.917969 C 266.90625 263.800781 266.8125 263.707031 266.695312 263.707031 C 266.578125 263.707031 266.484375 263.800781 266.484375 263.917969 C 266.484375 264.035156 266.578125 264.128906 266.695312 264.128906 C 266.8125 264.128906 266.90625 264.035156 266.90625 263.917969 Z M 266.90625 263.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.066406 266.027344 C 270.066406 265.910156 269.972656 265.816406 269.855469 265.816406 C 269.738281 265.816406 269.644531 265.910156 269.644531 266.027344 C 269.644531 266.144531 269.738281 266.238281 269.855469 266.238281 C 269.972656 266.238281 270.066406 266.144531 270.066406 266.027344 Z M 270.066406 266.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.589844 263.722656 C 272.589844 263.605469 272.496094 263.511719 272.378906 263.511719 C 272.261719 263.511719 272.167969 263.605469 272.167969 263.722656 C 272.167969 263.839844 272.261719 263.933594 272.378906 263.933594 C 272.496094 263.933594 272.589844 263.839844 272.589844 263.722656 Z M 272.589844 263.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.273438 264.050781 C 273.273438 263.933594 273.179688 263.839844 273.0625 263.839844 C 272.945312 263.839844 272.851562 263.933594 272.851562 264.050781 C 272.851562 264.167969 272.945312 264.261719 273.0625 264.261719 C 273.179688 264.261719 273.273438 264.167969 273.273438 264.050781 Z M 273.273438 264.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.679688 266.121094 C 272.679688 266.003906 272.585938 265.910156 272.46875 265.910156 C 272.351562 265.910156 272.257812 266.003906 272.257812 266.121094 C 272.257812 266.238281 272.351562 266.332031 272.46875 266.332031 C 272.585938 266.332031 272.679688 266.238281 272.679688 266.121094 Z M 272.679688 266.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.1875 266.90625 C 272.1875 266.789062 272.09375 266.695312 271.976562 266.695312 C 271.859375 266.695312 271.765625 266.789062 271.765625 266.90625 C 271.765625 267.023438 271.859375 267.117188 271.976562 267.117188 C 272.09375 267.117188 272.1875 267.023438 272.1875 266.90625 Z M 272.1875 266.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.492188 267.359375 C 278.492188 267.242188 278.398438 267.148438 278.28125 267.148438 C 278.164062 267.148438 278.070312 267.242188 278.070312 267.359375 C 278.070312 267.476562 278.164062 267.570312 278.28125 267.570312 C 278.398438 267.570312 278.492188 267.476562 278.492188 267.359375 Z M 278.492188 267.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.824219 265.558594 C 273.824219 265.441406 273.730469 265.347656 273.613281 265.347656 C 273.496094 265.347656 273.402344 265.441406 273.402344 265.558594 C 273.402344 265.675781 273.496094 265.769531 273.613281 265.769531 C 273.730469 265.769531 273.824219 265.675781 273.824219 265.558594 Z M 273.824219 265.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.574219 266.125 C 270.574219 266.007812 270.480469 265.914062 270.363281 265.914062 C 270.246094 265.914062 270.152344 266.007812 270.152344 266.125 C 270.152344 266.242188 270.246094 266.335938 270.363281 266.335938 C 270.480469 266.335938 270.574219 266.242188 270.574219 266.125 Z M 270.574219 266.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.683594 262.652344 C 272.683594 262.535156 272.589844 262.441406 272.472656 262.441406 C 272.355469 262.441406 272.261719 262.535156 272.261719 262.652344 C 272.261719 262.769531 272.355469 262.863281 272.472656 262.863281 C 272.589844 262.863281 272.683594 262.769531 272.683594 262.652344 Z M 272.683594 262.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.402344 261.613281 C 272.402344 261.496094 272.308594 261.402344 272.191406 261.402344 C 272.074219 261.402344 271.980469 261.496094 271.980469 261.613281 C 271.980469 261.730469 272.074219 261.824219 272.191406 261.824219 C 272.308594 261.824219 272.402344 261.730469 272.402344 261.613281 Z M 272.402344 261.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.152344 259.015625 C 271.152344 258.898438 271.058594 258.804688 270.941406 258.804688 C 270.824219 258.804688 270.730469 258.898438 270.730469 259.015625 C 270.730469 259.132812 270.824219 259.226562 270.941406 259.226562 C 271.058594 259.226562 271.152344 259.132812 271.152344 259.015625 Z M 271.152344 259.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.738281 262.261719 C 272.738281 262.144531 272.644531 262.050781 272.527344 262.050781 C 272.410156 262.050781 272.316406 262.144531 272.316406 262.261719 C 272.316406 262.378906 272.410156 262.472656 272.527344 262.472656 C 272.644531 262.472656 272.738281 262.378906 272.738281 262.261719 Z M 272.738281 262.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.578125 263.085938 C 266.578125 262.96875 266.484375 262.875 266.367188 262.875 C 266.25 262.875 266.15625 262.96875 266.15625 263.085938 C 266.15625 263.203125 266.25 263.296875 266.367188 263.296875 C 266.484375 263.296875 266.578125 263.203125 266.578125 263.085938 Z M 266.578125 263.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.941406 259.132812 C 266.941406 259.015625 266.847656 258.921875 266.730469 258.921875 C 266.613281 258.921875 266.519531 259.015625 266.519531 259.132812 C 266.519531 259.25 266.613281 259.34375 266.730469 259.34375 C 266.847656 259.34375 266.941406 259.25 266.941406 259.132812 Z M 266.941406 259.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.988281 258.386719 C 267.988281 258.269531 267.894531 258.175781 267.777344 258.175781 C 267.660156 258.175781 267.566406 258.269531 267.566406 258.386719 C 267.566406 258.503906 267.660156 258.597656 267.777344 258.597656 C 267.894531 258.597656 267.988281 258.503906 267.988281 258.386719 Z M 267.988281 258.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.957031 259.824219 C 267.957031 259.707031 267.863281 259.613281 267.746094 259.613281 C 267.628906 259.613281 267.535156 259.707031 267.535156 259.824219 C 267.535156 259.941406 267.628906 260.035156 267.746094 260.035156 C 267.863281 260.035156 267.957031 259.941406 267.957031 259.824219 Z M 267.957031 259.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.460938 259.933594 C 268.460938 259.816406 268.367188 259.722656 268.25 259.722656 C 268.132812 259.722656 268.039062 259.816406 268.039062 259.933594 C 268.039062 260.050781 268.132812 260.144531 268.25 260.144531 C 268.367188 260.144531 268.460938 260.050781 268.460938 259.933594 Z M 268.460938 259.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.429688 263.167969 C 268.429688 263.050781 268.335938 262.957031 268.21875 262.957031 C 268.101562 262.957031 268.007812 263.050781 268.007812 263.167969 C 268.007812 263.285156 268.101562 263.378906 268.21875 263.378906 C 268.335938 263.378906 268.429688 263.285156 268.429688 263.167969 Z M 268.429688 263.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.09375 266.132812 C 266.09375 266.015625 266 265.921875 265.882812 265.921875 C 265.765625 265.921875 265.671875 266.015625 265.671875 266.132812 C 265.671875 266.25 265.765625 266.34375 265.882812 266.34375 C 266 266.34375 266.09375 266.25 266.09375 266.132812 Z M 266.09375 266.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.75 260.734375 C 269.75 260.617188 269.65625 260.523438 269.539062 260.523438 C 269.421875 260.523438 269.328125 260.617188 269.328125 260.734375 C 269.328125 260.851562 269.421875 260.945312 269.539062 260.945312 C 269.65625 260.945312 269.75 260.851562 269.75 260.734375 Z M 269.75 260.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.976562 262.183594 C 268.976562 262.066406 268.882812 261.972656 268.765625 261.972656 C 268.648438 261.972656 268.554688 262.066406 268.554688 262.183594 C 268.554688 262.300781 268.648438 262.394531 268.765625 262.394531 C 268.882812 262.394531 268.976562 262.300781 268.976562 262.183594 Z M 268.976562 262.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.523438 263.238281 C 271.523438 263.121094 271.429688 263.027344 271.3125 263.027344 C 271.195312 263.027344 271.101562 263.121094 271.101562 263.238281 C 271.101562 263.355469 271.195312 263.449219 271.3125 263.449219 C 271.429688 263.449219 271.523438 263.355469 271.523438 263.238281 Z M 271.523438 263.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.570312 264.386719 C 275.570312 264.269531 275.476562 264.175781 275.359375 264.175781 C 275.242188 264.175781 275.148438 264.269531 275.148438 264.386719 C 275.148438 264.503906 275.242188 264.597656 275.359375 264.597656 C 275.476562 264.597656 275.570312 264.503906 275.570312 264.386719 Z M 275.570312 264.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.355469 265.671875 C 276.355469 265.554688 276.261719 265.460938 276.144531 265.460938 C 276.027344 265.460938 275.933594 265.554688 275.933594 265.671875 C 275.933594 265.789062 276.027344 265.882812 276.144531 265.882812 C 276.261719 265.882812 276.355469 265.789062 276.355469 265.671875 Z M 276.355469 265.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.535156 268.488281 C 276.535156 268.371094 276.441406 268.277344 276.324219 268.277344 C 276.207031 268.277344 276.113281 268.371094 276.113281 268.488281 C 276.113281 268.605469 276.207031 268.699219 276.324219 268.699219 C 276.441406 268.699219 276.535156 268.605469 276.535156 268.488281 Z M 276.535156 268.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.257812 271.65625 C 275.257812 271.539062 275.164062 271.445312 275.046875 271.445312 C 274.929688 271.445312 274.835938 271.539062 274.835938 271.65625 C 274.835938 271.773438 274.929688 271.867188 275.046875 271.867188 C 275.164062 271.867188 275.257812 271.773438 275.257812 271.65625 Z M 275.257812 271.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.835938 275.207031 C 277.835938 275.089844 277.742188 274.996094 277.625 274.996094 C 277.507812 274.996094 277.414062 275.089844 277.414062 275.207031 C 277.414062 275.324219 277.507812 275.417969 277.625 275.417969 C 277.742188 275.417969 277.835938 275.324219 277.835938 275.207031 Z M 277.835938 275.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.492188 275.738281 C 278.492188 275.621094 278.398438 275.527344 278.28125 275.527344 C 278.164062 275.527344 278.070312 275.621094 278.070312 275.738281 C 278.070312 275.855469 278.164062 275.949219 278.28125 275.949219 C 278.398438 275.949219 278.492188 275.855469 278.492188 275.738281 Z M 278.492188 275.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.445312 276.398438 C 275.445312 276.28125 275.351562 276.1875 275.234375 276.1875 C 275.117188 276.1875 275.023438 276.28125 275.023438 276.398438 C 275.023438 276.515625 275.117188 276.609375 275.234375 276.609375 C 275.351562 276.609375 275.445312 276.515625 275.445312 276.398438 Z M 275.445312 276.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.589844 276.273438 C 272.589844 276.15625 272.496094 276.0625 272.378906 276.0625 C 272.261719 276.0625 272.167969 276.15625 272.167969 276.273438 C 272.167969 276.390625 272.261719 276.484375 272.378906 276.484375 C 272.496094 276.484375 272.589844 276.390625 272.589844 276.273438 Z M 272.589844 276.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.640625 273.886719 C 269.640625 273.769531 269.546875 273.675781 269.429688 273.675781 C 269.3125 273.675781 269.21875 273.769531 269.21875 273.886719 C 269.21875 274.003906 269.3125 274.097656 269.429688 274.097656 C 269.546875 274.097656 269.640625 274.003906 269.640625 273.886719 Z M 269.640625 273.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.5625 274.6875 C 271.5625 274.570312 271.46875 274.476562 271.351562 274.476562 C 271.234375 274.476562 271.140625 274.570312 271.140625 274.6875 C 271.140625 274.804688 271.234375 274.898438 271.351562 274.898438 C 271.46875 274.898438 271.5625 274.804688 271.5625 274.6875 Z M 271.5625 274.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.574219 273.914062 C 271.574219 273.796875 271.480469 273.703125 271.363281 273.703125 C 271.246094 273.703125 271.152344 273.796875 271.152344 273.914062 C 271.152344 274.03125 271.246094 274.125 271.363281 274.125 C 271.480469 274.125 271.574219 274.03125 271.574219 273.914062 Z M 271.574219 273.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.085938 270.417969 C 269.085938 270.300781 268.992188 270.207031 268.875 270.207031 C 268.757812 270.207031 268.664062 270.300781 268.664062 270.417969 C 268.664062 270.535156 268.757812 270.628906 268.875 270.628906 C 268.992188 270.628906 269.085938 270.535156 269.085938 270.417969 Z M 269.085938 270.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.222656 272.464844 C 268.222656 272.347656 268.128906 272.253906 268.011719 272.253906 C 267.894531 272.253906 267.800781 272.347656 267.800781 272.464844 C 267.800781 272.582031 267.894531 272.675781 268.011719 272.675781 C 268.128906 272.675781 268.222656 272.582031 268.222656 272.464844 Z M 268.222656 272.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.398438 272.121094 C 266.398438 272.003906 266.304688 271.910156 266.1875 271.910156 C 266.070312 271.910156 265.976562 272.003906 265.976562 272.121094 C 265.976562 272.238281 266.070312 272.332031 266.1875 272.332031 C 266.304688 272.332031 266.398438 272.238281 266.398438 272.121094 Z M 266.398438 272.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.320312 269.933594 C 268.320312 269.816406 268.226562 269.722656 268.109375 269.722656 C 267.992188 269.722656 267.898438 269.816406 267.898438 269.933594 C 267.898438 270.050781 267.992188 270.144531 268.109375 270.144531 C 268.226562 270.144531 268.320312 270.050781 268.320312 269.933594 Z M 268.320312 269.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.1875 267.941406 C 272.1875 267.824219 272.09375 267.730469 271.976562 267.730469 C 271.859375 267.730469 271.765625 267.824219 271.765625 267.941406 C 271.765625 268.058594 271.859375 268.152344 271.976562 268.152344 C 272.09375 268.152344 272.1875 268.058594 272.1875 267.941406 Z M 272.1875 267.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.347656 269.578125 C 272.347656 269.460938 272.253906 269.367188 272.136719 269.367188 C 272.019531 269.367188 271.925781 269.460938 271.925781 269.578125 C 271.925781 269.695312 272.019531 269.789062 272.136719 269.789062 C 272.253906 269.789062 272.347656 269.695312 272.347656 269.578125 Z M 272.347656 269.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.925781 270.128906 C 273.925781 270.011719 273.832031 269.917969 273.714844 269.917969 C 273.597656 269.917969 273.503906 270.011719 273.503906 270.128906 C 273.503906 270.246094 273.597656 270.339844 273.714844 270.339844 C 273.832031 270.339844 273.925781 270.246094 273.925781 270.128906 Z M 273.925781 270.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.273438 269.882812 C 273.273438 269.765625 273.179688 269.671875 273.0625 269.671875 C 272.945312 269.671875 272.851562 269.765625 272.851562 269.882812 C 272.851562 270 272.945312 270.09375 273.0625 270.09375 C 273.179688 270.09375 273.273438 270 273.273438 269.882812 Z M 273.273438 269.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.910156 269.703125 C 273.910156 269.585938 273.816406 269.492188 273.699219 269.492188 C 273.582031 269.492188 273.488281 269.585938 273.488281 269.703125 C 273.488281 269.820312 273.582031 269.914062 273.699219 269.914062 C 273.816406 269.914062 273.910156 269.820312 273.910156 269.703125 Z M 273.910156 269.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.179688 268.175781 C 270.179688 268.058594 270.085938 267.964844 269.96875 267.964844 C 269.851562 267.964844 269.757812 268.058594 269.757812 268.175781 C 269.757812 268.292969 269.851562 268.386719 269.96875 268.386719 C 270.085938 268.386719 270.179688 268.292969 270.179688 268.175781 Z M 270.179688 268.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.769531 267.007812 C 266.769531 266.890625 266.675781 266.796875 266.558594 266.796875 C 266.441406 266.796875 266.347656 266.890625 266.347656 267.007812 C 266.347656 267.125 266.441406 267.21875 266.558594 267.21875 C 266.675781 267.21875 266.769531 267.125 266.769531 267.007812 Z M 266.769531 267.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.808594 269.289062 C 266.808594 269.171875 266.714844 269.078125 266.597656 269.078125 C 266.480469 269.078125 266.386719 269.171875 266.386719 269.289062 C 266.386719 269.40625 266.480469 269.5 266.597656 269.5 C 266.714844 269.5 266.808594 269.40625 266.808594 269.289062 Z M 266.808594 269.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.773438 273.71875 C 262.773438 273.601562 262.679688 273.507812 262.5625 273.507812 C 262.445312 273.507812 262.351562 273.601562 262.351562 273.71875 C 262.351562 273.835938 262.445312 273.929688 262.5625 273.929688 C 262.679688 273.929688 262.773438 273.835938 262.773438 273.71875 Z M 262.773438 273.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262 274.453125 C 262 274.335938 261.90625 274.242188 261.789062 274.242188 C 261.671875 274.242188 261.578125 274.335938 261.578125 274.453125 C 261.578125 274.570312 261.671875 274.664062 261.789062 274.664062 C 261.90625 274.664062 262 274.570312 262 274.453125 Z M 262 274.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.011719 271.097656 C 262.011719 270.980469 261.917969 270.886719 261.800781 270.886719 C 261.683594 270.886719 261.589844 270.980469 261.589844 271.097656 C 261.589844 271.214844 261.683594 271.308594 261.800781 271.308594 C 261.917969 271.308594 262.011719 271.214844 262.011719 271.097656 Z M 262.011719 271.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.648438 271.324219 C 261.648438 271.207031 261.554688 271.113281 261.4375 271.113281 C 261.320312 271.113281 261.226562 271.207031 261.226562 271.324219 C 261.226562 271.441406 261.320312 271.535156 261.4375 271.535156 C 261.554688 271.535156 261.648438 271.441406 261.648438 271.324219 Z M 261.648438 271.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.082031 270.15625 C 263.082031 270.039062 262.988281 269.945312 262.871094 269.945312 C 262.753906 269.945312 262.660156 270.039062 262.660156 270.15625 C 262.660156 270.273438 262.753906 270.367188 262.871094 270.367188 C 262.988281 270.367188 263.082031 270.273438 263.082031 270.15625 Z M 263.082031 270.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.335938 276.394531 C 264.335938 276.277344 264.242188 276.183594 264.125 276.183594 C 264.007812 276.183594 263.914062 276.277344 263.914062 276.394531 C 263.914062 276.511719 264.007812 276.605469 264.125 276.605469 C 264.242188 276.605469 264.335938 276.511719 264.335938 276.394531 Z M 264.335938 276.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.234375 276.070312 C 262.234375 275.953125 262.140625 275.859375 262.023438 275.859375 C 261.90625 275.859375 261.8125 275.953125 261.8125 276.070312 C 261.8125 276.1875 261.90625 276.28125 262.023438 276.28125 C 262.140625 276.28125 262.234375 276.1875 262.234375 276.070312 Z M 262.234375 276.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.785156 274.21875 C 260.785156 274.101562 260.691406 274.007812 260.574219 274.007812 C 260.457031 274.007812 260.363281 274.101562 260.363281 274.21875 C 260.363281 274.335938 260.457031 274.429688 260.574219 274.429688 C 260.691406 274.429688 260.785156 274.335938 260.785156 274.21875 Z M 260.785156 274.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.449219 270.480469 C 260.449219 270.363281 260.355469 270.269531 260.238281 270.269531 C 260.121094 270.269531 260.027344 270.363281 260.027344 270.480469 C 260.027344 270.597656 260.121094 270.691406 260.238281 270.691406 C 260.355469 270.691406 260.449219 270.597656 260.449219 270.480469 Z M 260.449219 270.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.867188 275.761719 C 258.867188 275.644531 258.773438 275.550781 258.65625 275.550781 C 258.539062 275.550781 258.445312 275.644531 258.445312 275.761719 C 258.445312 275.878906 258.539062 275.972656 258.65625 275.972656 C 258.773438 275.972656 258.867188 275.878906 258.867188 275.761719 Z M 258.867188 275.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.488281 275.558594 C 258.488281 275.441406 258.394531 275.347656 258.277344 275.347656 C 258.160156 275.347656 258.066406 275.441406 258.066406 275.558594 C 258.066406 275.675781 258.160156 275.769531 258.277344 275.769531 C 258.394531 275.769531 258.488281 275.675781 258.488281 275.558594 Z M 258.488281 275.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.261719 273.648438 C 260.261719 273.53125 260.167969 273.4375 260.050781 273.4375 C 259.933594 273.4375 259.839844 273.53125 259.839844 273.648438 C 259.839844 273.765625 259.933594 273.859375 260.050781 273.859375 C 260.167969 273.859375 260.261719 273.765625 260.261719 273.648438 Z M 260.261719 273.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.492188 275.410156 C 258.492188 275.292969 258.398438 275.199219 258.28125 275.199219 C 258.164062 275.199219 258.070312 275.292969 258.070312 275.410156 C 258.070312 275.527344 258.164062 275.621094 258.28125 275.621094 C 258.398438 275.621094 258.492188 275.527344 258.492188 275.410156 Z M 258.492188 275.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.191406 271.691406 C 257.191406 271.574219 257.097656 271.480469 256.980469 271.480469 C 256.863281 271.480469 256.769531 271.574219 256.769531 271.691406 C 256.769531 271.808594 256.863281 271.902344 256.980469 271.902344 C 257.097656 271.902344 257.191406 271.808594 257.191406 271.691406 Z M 257.191406 271.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.308594 267.5625 C 259.308594 267.445312 259.214844 267.351562 259.097656 267.351562 C 258.980469 267.351562 258.886719 267.445312 258.886719 267.5625 C 258.886719 267.679688 258.980469 267.773438 259.097656 267.773438 C 259.214844 267.773438 259.308594 267.679688 259.308594 267.5625 Z M 259.308594 267.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.921875 266.925781 C 259.921875 266.808594 259.828125 266.714844 259.710938 266.714844 C 259.59375 266.714844 259.5 266.808594 259.5 266.925781 C 259.5 267.042969 259.59375 267.136719 259.710938 267.136719 C 259.828125 267.136719 259.921875 267.042969 259.921875 266.925781 Z M 259.921875 266.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.402344 265.300781 C 256.402344 265.183594 256.308594 265.089844 256.191406 265.089844 C 256.074219 265.089844 255.980469 265.183594 255.980469 265.300781 C 255.980469 265.417969 256.074219 265.511719 256.191406 265.511719 C 256.308594 265.511719 256.402344 265.417969 256.402344 265.300781 Z M 256.402344 265.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.484375 265.421875 C 256.484375 265.304688 256.390625 265.210938 256.273438 265.210938 C 256.15625 265.210938 256.0625 265.304688 256.0625 265.421875 C 256.0625 265.539062 256.15625 265.632812 256.273438 265.632812 C 256.390625 265.632812 256.484375 265.539062 256.484375 265.421875 Z M 256.484375 265.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.347656 265.261719 C 255.347656 265.144531 255.253906 265.050781 255.136719 265.050781 C 255.019531 265.050781 254.925781 265.144531 254.925781 265.261719 C 254.925781 265.378906 255.019531 265.472656 255.136719 265.472656 C 255.253906 265.472656 255.347656 265.378906 255.347656 265.261719 Z M 255.347656 265.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.863281 265.035156 C 254.863281 264.917969 254.769531 264.824219 254.652344 264.824219 C 254.535156 264.824219 254.441406 264.917969 254.441406 265.035156 C 254.441406 265.152344 254.535156 265.246094 254.652344 265.246094 C 254.769531 265.246094 254.863281 265.152344 254.863281 265.035156 Z M 254.863281 265.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.945312 266.054688 C 248.945312 265.9375 248.851562 265.84375 248.734375 265.84375 C 248.617188 265.84375 248.523438 265.9375 248.523438 266.054688 C 248.523438 266.171875 248.617188 266.265625 248.734375 266.265625 C 248.851562 266.265625 248.945312 266.171875 248.945312 266.054688 Z M 248.945312 266.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.355469 263.34375 C 249.355469 263.226562 249.261719 263.132812 249.144531 263.132812 C 249.027344 263.132812 248.933594 263.226562 248.933594 263.34375 C 248.933594 263.460938 249.027344 263.554688 249.144531 263.554688 C 249.261719 263.554688 249.355469 263.460938 249.355469 263.34375 Z M 249.355469 263.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.085938 262.738281 C 251.085938 262.621094 250.992188 262.527344 250.875 262.527344 C 250.757812 262.527344 250.664062 262.621094 250.664062 262.738281 C 250.664062 262.855469 250.757812 262.949219 250.875 262.949219 C 250.992188 262.949219 251.085938 262.855469 251.085938 262.738281 Z M 251.085938 262.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.476562 264.839844 C 249.476562 264.722656 249.382812 264.628906 249.265625 264.628906 C 249.148438 264.628906 249.054688 264.722656 249.054688 264.839844 C 249.054688 264.957031 249.148438 265.050781 249.265625 265.050781 C 249.382812 265.050781 249.476562 264.957031 249.476562 264.839844 Z M 249.476562 264.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.152344 267.3125 C 249.152344 267.195312 249.058594 267.101562 248.941406 267.101562 C 248.824219 267.101562 248.730469 267.195312 248.730469 267.3125 C 248.730469 267.429688 248.824219 267.523438 248.941406 267.523438 C 249.058594 267.523438 249.152344 267.429688 249.152344 267.3125 Z M 249.152344 267.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.441406 268.0625 C 249.441406 267.945312 249.347656 267.851562 249.230469 267.851562 C 249.113281 267.851562 249.019531 267.945312 249.019531 268.0625 C 249.019531 268.179688 249.113281 268.273438 249.230469 268.273438 C 249.347656 268.273438 249.441406 268.179688 249.441406 268.0625 Z M 249.441406 268.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.140625 267.945312 C 247.140625 267.828125 247.046875 267.734375 246.929688 267.734375 C 246.8125 267.734375 246.71875 267.828125 246.71875 267.945312 C 246.71875 268.0625 246.8125 268.15625 246.929688 268.15625 C 247.046875 268.15625 247.140625 268.0625 247.140625 267.945312 Z M 247.140625 267.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.355469 269.085938 C 248.355469 268.96875 248.261719 268.875 248.144531 268.875 C 248.027344 268.875 247.933594 268.96875 247.933594 269.085938 C 247.933594 269.203125 248.027344 269.296875 248.144531 269.296875 C 248.261719 269.296875 248.355469 269.203125 248.355469 269.085938 Z M 248.355469 269.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.980469 268.679688 C 243.980469 268.5625 243.886719 268.46875 243.769531 268.46875 C 243.652344 268.46875 243.558594 268.5625 243.558594 268.679688 C 243.558594 268.796875 243.652344 268.890625 243.769531 268.890625 C 243.886719 268.890625 243.980469 268.796875 243.980469 268.679688 Z M 243.980469 268.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.882812 267.371094 C 242.882812 267.253906 242.789062 267.160156 242.671875 267.160156 C 242.554688 267.160156 242.460938 267.253906 242.460938 267.371094 C 242.460938 267.488281 242.554688 267.582031 242.671875 267.582031 C 242.789062 267.582031 242.882812 267.488281 242.882812 267.371094 Z M 242.882812 267.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.625 270.546875 C 244.625 270.429688 244.53125 270.335938 244.414062 270.335938 C 244.296875 270.335938 244.203125 270.429688 244.203125 270.546875 C 244.203125 270.664062 244.296875 270.757812 244.414062 270.757812 C 244.53125 270.757812 244.625 270.664062 244.625 270.546875 Z M 244.625 270.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.933594 271.84375 C 244.933594 271.726562 244.839844 271.632812 244.722656 271.632812 C 244.605469 271.632812 244.511719 271.726562 244.511719 271.84375 C 244.511719 271.960938 244.605469 272.054688 244.722656 272.054688 C 244.839844 272.054688 244.933594 271.960938 244.933594 271.84375 Z M 244.933594 271.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.199219 269.214844 C 243.199219 269.097656 243.105469 269.003906 242.988281 269.003906 C 242.871094 269.003906 242.777344 269.097656 242.777344 269.214844 C 242.777344 269.332031 242.871094 269.425781 242.988281 269.425781 C 243.105469 269.425781 243.199219 269.332031 243.199219 269.214844 Z M 243.199219 269.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.667969 273.332031 C 243.667969 273.214844 243.574219 273.121094 243.457031 273.121094 C 243.339844 273.121094 243.246094 273.214844 243.246094 273.332031 C 243.246094 273.449219 243.339844 273.542969 243.457031 273.542969 C 243.574219 273.542969 243.667969 273.449219 243.667969 273.332031 Z M 243.667969 273.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.5 275.925781 C 238.5 275.808594 238.40625 275.714844 238.289062 275.714844 C 238.171875 275.714844 238.078125 275.808594 238.078125 275.925781 C 238.078125 276.042969 238.171875 276.136719 238.289062 276.136719 C 238.40625 276.136719 238.5 276.042969 238.5 275.925781 Z M 238.5 275.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.5625 275.550781 C 237.5625 275.433594 237.46875 275.339844 237.351562 275.339844 C 237.234375 275.339844 237.140625 275.433594 237.140625 275.550781 C 237.140625 275.667969 237.234375 275.761719 237.351562 275.761719 C 237.46875 275.761719 237.5625 275.667969 237.5625 275.550781 Z M 237.5625 275.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.035156 273.25 C 236.035156 273.132812 235.941406 273.039062 235.824219 273.039062 C 235.707031 273.039062 235.613281 273.132812 235.613281 273.25 C 235.613281 273.367188 235.707031 273.460938 235.824219 273.460938 C 235.941406 273.460938 236.035156 273.367188 236.035156 273.25 Z M 236.035156 273.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.953125 270.753906 C 237.953125 270.636719 237.859375 270.542969 237.742188 270.542969 C 237.625 270.542969 237.53125 270.636719 237.53125 270.753906 C 237.53125 270.871094 237.625 270.964844 237.742188 270.964844 C 237.859375 270.964844 237.953125 270.871094 237.953125 270.753906 Z M 237.953125 270.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.695312 270.269531 C 237.695312 270.152344 237.601562 270.058594 237.484375 270.058594 C 237.367188 270.058594 237.273438 270.152344 237.273438 270.269531 C 237.273438 270.386719 237.367188 270.480469 237.484375 270.480469 C 237.601562 270.480469 237.695312 270.386719 237.695312 270.269531 Z M 237.695312 270.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.523438 271.277344 C 240.523438 271.160156 240.429688 271.066406 240.3125 271.066406 C 240.195312 271.066406 240.101562 271.160156 240.101562 271.277344 C 240.101562 271.394531 240.195312 271.488281 240.3125 271.488281 C 240.429688 271.488281 240.523438 271.394531 240.523438 271.277344 Z M 240.523438 271.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.695312 272.359375 C 238.695312 272.242188 238.601562 272.148438 238.484375 272.148438 C 238.367188 272.148438 238.273438 272.242188 238.273438 272.359375 C 238.273438 272.476562 238.367188 272.570312 238.484375 272.570312 C 238.601562 272.570312 238.695312 272.476562 238.695312 272.359375 Z M 238.695312 272.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.195312 273.3125 C 244.195312 273.195312 244.101562 273.101562 243.984375 273.101562 C 243.867188 273.101562 243.773438 273.195312 243.773438 273.3125 C 243.773438 273.429688 243.867188 273.523438 243.984375 273.523438 C 244.101562 273.523438 244.195312 273.429688 244.195312 273.3125 Z M 244.195312 273.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.628906 274.839844 C 242.628906 274.722656 242.535156 274.628906 242.417969 274.628906 C 242.300781 274.628906 242.207031 274.722656 242.207031 274.839844 C 242.207031 274.957031 242.300781 275.050781 242.417969 275.050781 C 242.535156 275.050781 242.628906 274.957031 242.628906 274.839844 Z M 242.628906 274.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.269531 271.058594 C 244.269531 270.941406 244.175781 270.847656 244.058594 270.847656 C 243.941406 270.847656 243.847656 270.941406 243.847656 271.058594 C 243.847656 271.175781 243.941406 271.269531 244.058594 271.269531 C 244.175781 271.269531 244.269531 271.175781 244.269531 271.058594 Z M 244.269531 271.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.707031 271.023438 C 244.707031 270.90625 244.613281 270.8125 244.496094 270.8125 C 244.378906 270.8125 244.285156 270.90625 244.285156 271.023438 C 244.285156 271.140625 244.378906 271.234375 244.496094 271.234375 C 244.613281 271.234375 244.707031 271.140625 244.707031 271.023438 Z M 244.707031 271.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.148438 273.328125 C 242.148438 273.210938 242.054688 273.117188 241.9375 273.117188 C 241.820312 273.117188 241.726562 273.210938 241.726562 273.328125 C 241.726562 273.445312 241.820312 273.539062 241.9375 273.539062 C 242.054688 273.539062 242.148438 273.445312 242.148438 273.328125 Z M 242.148438 273.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.183594 276.328125 C 243.183594 276.210938 243.089844 276.117188 242.972656 276.117188 C 242.855469 276.117188 242.761719 276.210938 242.761719 276.328125 C 242.761719 276.445312 242.855469 276.539062 242.972656 276.539062 C 243.089844 276.539062 243.183594 276.445312 243.183594 276.328125 Z M 243.183594 276.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.417969 278.179688 C 242.417969 278.0625 242.324219 277.96875 242.207031 277.96875 C 242.089844 277.96875 241.996094 278.0625 241.996094 278.179688 C 241.996094 278.296875 242.089844 278.390625 242.207031 278.390625 C 242.324219 278.390625 242.417969 278.296875 242.417969 278.179688 Z M 242.417969 278.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.816406 276.933594 C 238.816406 276.816406 238.722656 276.722656 238.605469 276.722656 C 238.488281 276.722656 238.394531 276.816406 238.394531 276.933594 C 238.394531 277.050781 238.488281 277.144531 238.605469 277.144531 C 238.722656 277.144531 238.816406 277.050781 238.816406 276.933594 Z M 238.816406 276.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.035156 273.488281 C 238.035156 273.371094 237.941406 273.277344 237.824219 273.277344 C 237.707031 273.277344 237.613281 273.371094 237.613281 273.488281 C 237.613281 273.605469 237.707031 273.699219 237.824219 273.699219 C 237.941406 273.699219 238.035156 273.605469 238.035156 273.488281 Z M 238.035156 273.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.917969 274.378906 C 240.917969 274.261719 240.824219 274.167969 240.707031 274.167969 C 240.589844 274.167969 240.496094 274.261719 240.496094 274.378906 C 240.496094 274.496094 240.589844 274.589844 240.707031 274.589844 C 240.824219 274.589844 240.917969 274.496094 240.917969 274.378906 Z M 240.917969 274.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.320312 273.394531 C 242.320312 273.277344 242.226562 273.183594 242.109375 273.183594 C 241.992188 273.183594 241.898438 273.277344 241.898438 273.394531 C 241.898438 273.511719 241.992188 273.605469 242.109375 273.605469 C 242.226562 273.605469 242.320312 273.511719 242.320312 273.394531 Z M 242.320312 273.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.179688 278.765625 C 241.179688 278.648438 241.085938 278.554688 240.96875 278.554688 C 240.851562 278.554688 240.757812 278.648438 240.757812 278.765625 C 240.757812 278.882812 240.851562 278.976562 240.96875 278.976562 C 241.085938 278.976562 241.179688 278.882812 241.179688 278.765625 Z M 241.179688 278.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.632812 277.664062 C 238.632812 277.546875 238.539062 277.453125 238.421875 277.453125 C 238.304688 277.453125 238.210938 277.546875 238.210938 277.664062 C 238.210938 277.78125 238.304688 277.875 238.421875 277.875 C 238.539062 277.875 238.632812 277.78125 238.632812 277.664062 Z M 238.632812 277.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.679688 277 C 241.679688 276.882812 241.585938 276.789062 241.46875 276.789062 C 241.351562 276.789062 241.257812 276.882812 241.257812 277 C 241.257812 277.117188 241.351562 277.210938 241.46875 277.210938 C 241.585938 277.210938 241.679688 277.117188 241.679688 277 Z M 241.679688 277 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.40625 278.152344 C 241.40625 278.035156 241.3125 277.941406 241.195312 277.941406 C 241.078125 277.941406 240.984375 278.035156 240.984375 278.152344 C 240.984375 278.269531 241.078125 278.363281 241.195312 278.363281 C 241.3125 278.363281 241.40625 278.269531 241.40625 278.152344 Z M 241.40625 278.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.074219 275.890625 C 244.074219 275.773438 243.980469 275.679688 243.863281 275.679688 C 243.746094 275.679688 243.652344 275.773438 243.652344 275.890625 C 243.652344 276.007812 243.746094 276.101562 243.863281 276.101562 C 243.980469 276.101562 244.074219 276.007812 244.074219 275.890625 Z M 244.074219 275.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.84375 278.210938 C 246.84375 278.09375 246.75 278 246.632812 278 C 246.515625 278 246.421875 278.09375 246.421875 278.210938 C 246.421875 278.328125 246.515625 278.421875 246.632812 278.421875 C 246.75 278.421875 246.84375 278.328125 246.84375 278.210938 Z M 246.84375 278.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.449219 274.929688 C 246.449219 274.8125 246.355469 274.71875 246.238281 274.71875 C 246.121094 274.71875 246.027344 274.8125 246.027344 274.929688 C 246.027344 275.046875 246.121094 275.140625 246.238281 275.140625 C 246.355469 275.140625 246.449219 275.046875 246.449219 274.929688 Z M 246.449219 274.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.980469 274.476562 C 240.980469 274.359375 240.886719 274.265625 240.769531 274.265625 C 240.652344 274.265625 240.558594 274.359375 240.558594 274.476562 C 240.558594 274.59375 240.652344 274.6875 240.769531 274.6875 C 240.886719 274.6875 240.980469 274.59375 240.980469 274.476562 Z M 240.980469 274.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.773438 273.828125 C 243.773438 273.710938 243.679688 273.617188 243.5625 273.617188 C 243.445312 273.617188 243.351562 273.710938 243.351562 273.828125 C 243.351562 273.945312 243.445312 274.039062 243.5625 274.039062 C 243.679688 274.039062 243.773438 273.945312 243.773438 273.828125 Z M 243.773438 273.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.445312 272.730469 C 242.445312 272.613281 242.351562 272.519531 242.234375 272.519531 C 242.117188 272.519531 242.023438 272.613281 242.023438 272.730469 C 242.023438 272.847656 242.117188 272.941406 242.234375 272.941406 C 242.351562 272.941406 242.445312 272.847656 242.445312 272.730469 Z M 242.445312 272.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.746094 272.613281 C 242.746094 272.496094 242.652344 272.402344 242.535156 272.402344 C 242.417969 272.402344 242.324219 272.496094 242.324219 272.613281 C 242.324219 272.730469 242.417969 272.824219 242.535156 272.824219 C 242.652344 272.824219 242.746094 272.730469 242.746094 272.613281 Z M 242.746094 272.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.855469 273.488281 C 241.855469 273.371094 241.761719 273.277344 241.644531 273.277344 C 241.527344 273.277344 241.433594 273.371094 241.433594 273.488281 C 241.433594 273.605469 241.527344 273.699219 241.644531 273.699219 C 241.761719 273.699219 241.855469 273.605469 241.855469 273.488281 Z M 241.855469 273.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.007812 270.671875 C 242.007812 270.554688 241.914062 270.460938 241.796875 270.460938 C 241.679688 270.460938 241.585938 270.554688 241.585938 270.671875 C 241.585938 270.789062 241.679688 270.882812 241.796875 270.882812 C 241.914062 270.882812 242.007812 270.789062 242.007812 270.671875 Z M 242.007812 270.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.945312 268.132812 C 240.945312 268.015625 240.851562 267.921875 240.734375 267.921875 C 240.617188 267.921875 240.523438 268.015625 240.523438 268.132812 C 240.523438 268.25 240.617188 268.34375 240.734375 268.34375 C 240.851562 268.34375 240.945312 268.25 240.945312 268.132812 Z M 240.945312 268.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.394531 267.066406 C 241.394531 266.949219 241.300781 266.855469 241.183594 266.855469 C 241.066406 266.855469 240.972656 266.949219 240.972656 267.066406 C 240.972656 267.183594 241.066406 267.277344 241.183594 267.277344 C 241.300781 267.277344 241.394531 267.183594 241.394531 267.066406 Z M 241.394531 267.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.738281 271.003906 C 242.738281 270.886719 242.644531 270.792969 242.527344 270.792969 C 242.410156 270.792969 242.316406 270.886719 242.316406 271.003906 C 242.316406 271.121094 242.410156 271.214844 242.527344 271.214844 C 242.644531 271.214844 242.738281 271.121094 242.738281 271.003906 Z M 242.738281 271.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.859375 267.914062 C 242.859375 267.796875 242.765625 267.703125 242.648438 267.703125 C 242.53125 267.703125 242.4375 267.796875 242.4375 267.914062 C 242.4375 268.03125 242.53125 268.125 242.648438 268.125 C 242.765625 268.125 242.859375 268.03125 242.859375 267.914062 Z M 242.859375 267.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.144531 269.304688 C 240.144531 269.1875 240.050781 269.09375 239.933594 269.09375 C 239.816406 269.09375 239.722656 269.1875 239.722656 269.304688 C 239.722656 269.421875 239.816406 269.515625 239.933594 269.515625 C 240.050781 269.515625 240.144531 269.421875 240.144531 269.304688 Z M 240.144531 269.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.878906 268.15625 C 240.878906 268.039062 240.785156 267.945312 240.667969 267.945312 C 240.550781 267.945312 240.457031 268.039062 240.457031 268.15625 C 240.457031 268.273438 240.550781 268.367188 240.667969 268.367188 C 240.785156 268.367188 240.878906 268.273438 240.878906 268.15625 Z M 240.878906 268.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.332031 267.28125 C 241.332031 267.164062 241.238281 267.070312 241.121094 267.070312 C 241.003906 267.070312 240.910156 267.164062 240.910156 267.28125 C 240.910156 267.398438 241.003906 267.492188 241.121094 267.492188 C 241.238281 267.492188 241.332031 267.398438 241.332031 267.28125 Z M 241.332031 267.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.449219 266.445312 C 243.449219 266.328125 243.355469 266.234375 243.238281 266.234375 C 243.121094 266.234375 243.027344 266.328125 243.027344 266.445312 C 243.027344 266.5625 243.121094 266.65625 243.238281 266.65625 C 243.355469 266.65625 243.449219 266.5625 243.449219 266.445312 Z M 243.449219 266.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.804688 266.207031 C 240.804688 266.089844 240.710938 265.996094 240.59375 265.996094 C 240.476562 265.996094 240.382812 266.089844 240.382812 266.207031 C 240.382812 266.324219 240.476562 266.417969 240.59375 266.417969 C 240.710938 266.417969 240.804688 266.324219 240.804688 266.207031 Z M 240.804688 266.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.714844 267.792969 C 242.714844 267.675781 242.621094 267.582031 242.503906 267.582031 C 242.386719 267.582031 242.292969 267.675781 242.292969 267.792969 C 242.292969 267.910156 242.386719 268.003906 242.503906 268.003906 C 242.621094 268.003906 242.714844 267.910156 242.714844 267.792969 Z M 242.714844 267.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.859375 268.238281 C 244.859375 268.121094 244.765625 268.027344 244.648438 268.027344 C 244.53125 268.027344 244.4375 268.121094 244.4375 268.238281 C 244.4375 268.355469 244.53125 268.449219 244.648438 268.449219 C 244.765625 268.449219 244.859375 268.355469 244.859375 268.238281 Z M 244.859375 268.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.285156 268.203125 C 243.285156 268.085938 243.191406 267.992188 243.074219 267.992188 C 242.957031 267.992188 242.863281 268.085938 242.863281 268.203125 C 242.863281 268.320312 242.957031 268.414062 243.074219 268.414062 C 243.191406 268.414062 243.285156 268.320312 243.285156 268.203125 Z M 243.285156 268.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.246094 265.6875 C 245.246094 265.570312 245.152344 265.476562 245.035156 265.476562 C 244.917969 265.476562 244.824219 265.570312 244.824219 265.6875 C 244.824219 265.804688 244.917969 265.898438 245.035156 265.898438 C 245.152344 265.898438 245.246094 265.804688 245.246094 265.6875 Z M 245.246094 265.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.070312 265.320312 C 246.070312 265.203125 245.976562 265.109375 245.859375 265.109375 C 245.742188 265.109375 245.648438 265.203125 245.648438 265.320312 C 245.648438 265.4375 245.742188 265.53125 245.859375 265.53125 C 245.976562 265.53125 246.070312 265.4375 246.070312 265.320312 Z M 246.070312 265.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.304688 263.441406 C 245.304688 263.324219 245.210938 263.230469 245.09375 263.230469 C 244.976562 263.230469 244.882812 263.324219 244.882812 263.441406 C 244.882812 263.558594 244.976562 263.652344 245.09375 263.652344 C 245.210938 263.652344 245.304688 263.558594 245.304688 263.441406 Z M 245.304688 263.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.746094 263.417969 C 243.746094 263.300781 243.652344 263.207031 243.535156 263.207031 C 243.417969 263.207031 243.324219 263.300781 243.324219 263.417969 C 243.324219 263.535156 243.417969 263.628906 243.535156 263.628906 C 243.652344 263.628906 243.746094 263.535156 243.746094 263.417969 Z M 243.746094 263.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.738281 261.582031 C 245.738281 261.464844 245.644531 261.371094 245.527344 261.371094 C 245.410156 261.371094 245.316406 261.464844 245.316406 261.582031 C 245.316406 261.699219 245.410156 261.792969 245.527344 261.792969 C 245.644531 261.792969 245.738281 261.699219 245.738281 261.582031 Z M 245.738281 261.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.59375 264.722656 C 243.59375 264.605469 243.5 264.511719 243.382812 264.511719 C 243.265625 264.511719 243.171875 264.605469 243.171875 264.722656 C 243.171875 264.839844 243.265625 264.933594 243.382812 264.933594 C 243.5 264.933594 243.59375 264.839844 243.59375 264.722656 Z M 243.59375 264.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.15625 264.949219 C 246.15625 264.832031 246.0625 264.738281 245.945312 264.738281 C 245.828125 264.738281 245.734375 264.832031 245.734375 264.949219 C 245.734375 265.066406 245.828125 265.160156 245.945312 265.160156 C 246.0625 265.160156 246.15625 265.066406 246.15625 264.949219 Z M 246.15625 264.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.699219 266.71875 C 245.699219 266.601562 245.605469 266.507812 245.488281 266.507812 C 245.371094 266.507812 245.277344 266.601562 245.277344 266.71875 C 245.277344 266.835938 245.371094 266.929688 245.488281 266.929688 C 245.605469 266.929688 245.699219 266.835938 245.699219 266.71875 Z M 245.699219 266.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.300781 265.707031 C 246.300781 265.589844 246.207031 265.496094 246.089844 265.496094 C 245.972656 265.496094 245.878906 265.589844 245.878906 265.707031 C 245.878906 265.824219 245.972656 265.917969 246.089844 265.917969 C 246.207031 265.917969 246.300781 265.824219 246.300781 265.707031 Z M 246.300781 265.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.664062 269.09375 C 244.664062 268.976562 244.570312 268.882812 244.453125 268.882812 C 244.335938 268.882812 244.242188 268.976562 244.242188 269.09375 C 244.242188 269.210938 244.335938 269.304688 244.453125 269.304688 C 244.570312 269.304688 244.664062 269.210938 244.664062 269.09375 Z M 244.664062 269.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.074219 268.390625 C 246.074219 268.273438 245.980469 268.179688 245.863281 268.179688 C 245.746094 268.179688 245.652344 268.273438 245.652344 268.390625 C 245.652344 268.507812 245.746094 268.601562 245.863281 268.601562 C 245.980469 268.601562 246.074219 268.507812 246.074219 268.390625 Z M 246.074219 268.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.742188 271.765625 C 246.742188 271.648438 246.648438 271.554688 246.53125 271.554688 C 246.414062 271.554688 246.320312 271.648438 246.320312 271.765625 C 246.320312 271.882812 246.414062 271.976562 246.53125 271.976562 C 246.648438 271.976562 246.742188 271.882812 246.742188 271.765625 Z M 246.742188 271.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.832031 271.191406 C 243.832031 271.074219 243.738281 270.980469 243.621094 270.980469 C 243.503906 270.980469 243.410156 271.074219 243.410156 271.191406 C 243.410156 271.308594 243.503906 271.402344 243.621094 271.402344 C 243.738281 271.402344 243.832031 271.308594 243.832031 271.191406 Z M 243.832031 271.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.144531 272.363281 C 243.144531 272.246094 243.050781 272.152344 242.933594 272.152344 C 242.816406 272.152344 242.722656 272.246094 242.722656 272.363281 C 242.722656 272.480469 242.816406 272.574219 242.933594 272.574219 C 243.050781 272.574219 243.144531 272.480469 243.144531 272.363281 Z M 243.144531 272.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.699219 271.296875 C 243.699219 271.179688 243.605469 271.085938 243.488281 271.085938 C 243.371094 271.085938 243.277344 271.179688 243.277344 271.296875 C 243.277344 271.414062 243.371094 271.507812 243.488281 271.507812 C 243.605469 271.507812 243.699219 271.414062 243.699219 271.296875 Z M 243.699219 271.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.304688 271.625 C 242.304688 271.507812 242.210938 271.414062 242.09375 271.414062 C 241.976562 271.414062 241.882812 271.507812 241.882812 271.625 C 241.882812 271.742188 241.976562 271.835938 242.09375 271.835938 C 242.210938 271.835938 242.304688 271.742188 242.304688 271.625 Z M 242.304688 271.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.839844 269.589844 C 240.839844 269.472656 240.746094 269.378906 240.628906 269.378906 C 240.511719 269.378906 240.417969 269.472656 240.417969 269.589844 C 240.417969 269.707031 240.511719 269.800781 240.628906 269.800781 C 240.746094 269.800781 240.839844 269.707031 240.839844 269.589844 Z M 240.839844 269.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.042969 267.628906 C 240.042969 267.511719 239.949219 267.417969 239.832031 267.417969 C 239.714844 267.417969 239.621094 267.511719 239.621094 267.628906 C 239.621094 267.746094 239.714844 267.839844 239.832031 267.839844 C 239.949219 267.839844 240.042969 267.746094 240.042969 267.628906 Z M 240.042969 267.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.203125 267.402344 C 238.203125 267.285156 238.109375 267.191406 237.992188 267.191406 C 237.875 267.191406 237.78125 267.285156 237.78125 267.402344 C 237.78125 267.519531 237.875 267.613281 237.992188 267.613281 C 238.109375 267.613281 238.203125 267.519531 238.203125 267.402344 Z M 238.203125 267.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.785156 268.269531 C 235.785156 268.152344 235.691406 268.058594 235.574219 268.058594 C 235.457031 268.058594 235.363281 268.152344 235.363281 268.269531 C 235.363281 268.386719 235.457031 268.480469 235.574219 268.480469 C 235.691406 268.480469 235.785156 268.386719 235.785156 268.269531 Z M 235.785156 268.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.378906 267.925781 C 236.378906 267.808594 236.285156 267.714844 236.167969 267.714844 C 236.050781 267.714844 235.957031 267.808594 235.957031 267.925781 C 235.957031 268.042969 236.050781 268.136719 236.167969 268.136719 C 236.285156 268.136719 236.378906 268.042969 236.378906 267.925781 Z M 236.378906 267.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.941406 265.53125 C 235.941406 265.414062 235.847656 265.320312 235.730469 265.320312 C 235.613281 265.320312 235.519531 265.414062 235.519531 265.53125 C 235.519531 265.648438 235.613281 265.742188 235.730469 265.742188 C 235.847656 265.742188 235.941406 265.648438 235.941406 265.53125 Z M 235.941406 265.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.515625 267.417969 C 234.515625 267.300781 234.421875 267.207031 234.304688 267.207031 C 234.1875 267.207031 234.09375 267.300781 234.09375 267.417969 C 234.09375 267.535156 234.1875 267.628906 234.304688 267.628906 C 234.421875 267.628906 234.515625 267.535156 234.515625 267.417969 Z M 234.515625 267.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.59375 271.480469 C 232.59375 271.363281 232.5 271.269531 232.382812 271.269531 C 232.265625 271.269531 232.171875 271.363281 232.171875 271.480469 C 232.171875 271.597656 232.265625 271.691406 232.382812 271.691406 C 232.5 271.691406 232.59375 271.597656 232.59375 271.480469 Z M 232.59375 271.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.9375 272.230469 C 235.9375 272.113281 235.84375 272.019531 235.726562 272.019531 C 235.609375 272.019531 235.515625 272.113281 235.515625 272.230469 C 235.515625 272.347656 235.609375 272.441406 235.726562 272.441406 C 235.84375 272.441406 235.9375 272.347656 235.9375 272.230469 Z M 235.9375 272.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.542969 273.363281 C 233.542969 273.246094 233.449219 273.152344 233.332031 273.152344 C 233.214844 273.152344 233.121094 273.246094 233.121094 273.363281 C 233.121094 273.480469 233.214844 273.574219 233.332031 273.574219 C 233.449219 273.574219 233.542969 273.480469 233.542969 273.363281 Z M 233.542969 273.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.195312 270.335938 C 233.195312 270.21875 233.101562 270.125 232.984375 270.125 C 232.867188 270.125 232.773438 270.21875 232.773438 270.335938 C 232.773438 270.453125 232.867188 270.546875 232.984375 270.546875 C 233.101562 270.546875 233.195312 270.453125 233.195312 270.335938 Z M 233.195312 270.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.976562 272.261719 C 234.976562 272.144531 234.882812 272.050781 234.765625 272.050781 C 234.648438 272.050781 234.554688 272.144531 234.554688 272.261719 C 234.554688 272.378906 234.648438 272.472656 234.765625 272.472656 C 234.882812 272.472656 234.976562 272.378906 234.976562 272.261719 Z M 234.976562 272.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.6875 270.808594 C 234.6875 270.691406 234.59375 270.597656 234.476562 270.597656 C 234.359375 270.597656 234.265625 270.691406 234.265625 270.808594 C 234.265625 270.925781 234.359375 271.019531 234.476562 271.019531 C 234.59375 271.019531 234.6875 270.925781 234.6875 270.808594 Z M 234.6875 270.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.664062 271.589844 C 235.664062 271.472656 235.570312 271.378906 235.453125 271.378906 C 235.335938 271.378906 235.242188 271.472656 235.242188 271.589844 C 235.242188 271.707031 235.335938 271.800781 235.453125 271.800781 C 235.570312 271.800781 235.664062 271.707031 235.664062 271.589844 Z M 235.664062 271.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.207031 269.367188 C 236.207031 269.25 236.113281 269.15625 235.996094 269.15625 C 235.878906 269.15625 235.785156 269.25 235.785156 269.367188 C 235.785156 269.484375 235.878906 269.578125 235.996094 269.578125 C 236.113281 269.578125 236.207031 269.484375 236.207031 269.367188 Z M 236.207031 269.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.457031 268.597656 C 235.457031 268.480469 235.363281 268.386719 235.246094 268.386719 C 235.128906 268.386719 235.035156 268.480469 235.035156 268.597656 C 235.035156 268.714844 235.128906 268.808594 235.246094 268.808594 C 235.363281 268.808594 235.457031 268.714844 235.457031 268.597656 Z M 235.457031 268.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.96875 265.433594 C 237.96875 265.316406 237.875 265.222656 237.757812 265.222656 C 237.640625 265.222656 237.546875 265.316406 237.546875 265.433594 C 237.546875 265.550781 237.640625 265.644531 237.757812 265.644531 C 237.875 265.644531 237.96875 265.550781 237.96875 265.433594 Z M 237.96875 265.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.164062 264.933594 C 237.164062 264.816406 237.070312 264.722656 236.953125 264.722656 C 236.835938 264.722656 236.742188 264.816406 236.742188 264.933594 C 236.742188 265.050781 236.835938 265.144531 236.953125 265.144531 C 237.070312 265.144531 237.164062 265.050781 237.164062 264.933594 Z M 237.164062 264.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.308594 266.722656 C 238.308594 266.605469 238.214844 266.511719 238.097656 266.511719 C 237.980469 266.511719 237.886719 266.605469 237.886719 266.722656 C 237.886719 266.839844 237.980469 266.933594 238.097656 266.933594 C 238.214844 266.933594 238.308594 266.839844 238.308594 266.722656 Z M 238.308594 266.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.652344 263.804688 C 238.652344 263.6875 238.558594 263.59375 238.441406 263.59375 C 238.324219 263.59375 238.230469 263.6875 238.230469 263.804688 C 238.230469 263.921875 238.324219 264.015625 238.441406 264.015625 C 238.558594 264.015625 238.652344 263.921875 238.652344 263.804688 Z M 238.652344 263.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.117188 264.390625 C 240.117188 264.273438 240.023438 264.179688 239.90625 264.179688 C 239.789062 264.179688 239.695312 264.273438 239.695312 264.390625 C 239.695312 264.507812 239.789062 264.601562 239.90625 264.601562 C 240.023438 264.601562 240.117188 264.507812 240.117188 264.390625 Z M 240.117188 264.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.773438 266.335938 C 241.773438 266.21875 241.679688 266.125 241.5625 266.125 C 241.445312 266.125 241.351562 266.21875 241.351562 266.335938 C 241.351562 266.453125 241.445312 266.546875 241.5625 266.546875 C 241.679688 266.546875 241.773438 266.453125 241.773438 266.335938 Z M 241.773438 266.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.574219 268.460938 C 241.574219 268.34375 241.480469 268.25 241.363281 268.25 C 241.246094 268.25 241.152344 268.34375 241.152344 268.460938 C 241.152344 268.578125 241.246094 268.671875 241.363281 268.671875 C 241.480469 268.671875 241.574219 268.578125 241.574219 268.460938 Z M 241.574219 268.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.601562 266.964844 C 238.601562 266.847656 238.507812 266.753906 238.390625 266.753906 C 238.273438 266.753906 238.179688 266.847656 238.179688 266.964844 C 238.179688 267.082031 238.273438 267.175781 238.390625 267.175781 C 238.507812 267.175781 238.601562 267.082031 238.601562 266.964844 Z M 238.601562 266.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.691406 262.535156 C 235.691406 262.417969 235.597656 262.324219 235.480469 262.324219 C 235.363281 262.324219 235.269531 262.417969 235.269531 262.535156 C 235.269531 262.652344 235.363281 262.746094 235.480469 262.746094 C 235.597656 262.746094 235.691406 262.652344 235.691406 262.535156 Z M 235.691406 262.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.546875 263.246094 C 237.546875 263.128906 237.453125 263.035156 237.335938 263.035156 C 237.21875 263.035156 237.125 263.128906 237.125 263.246094 C 237.125 263.363281 237.21875 263.457031 237.335938 263.457031 C 237.453125 263.457031 237.546875 263.363281 237.546875 263.246094 Z M 237.546875 263.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.316406 260.128906 C 236.316406 260.011719 236.222656 259.917969 236.105469 259.917969 C 235.988281 259.917969 235.894531 260.011719 235.894531 260.128906 C 235.894531 260.246094 235.988281 260.339844 236.105469 260.339844 C 236.222656 260.339844 236.316406 260.246094 236.316406 260.128906 Z M 236.316406 260.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.789062 257.542969 C 237.789062 257.425781 237.695312 257.332031 237.578125 257.332031 C 237.460938 257.332031 237.367188 257.425781 237.367188 257.542969 C 237.367188 257.660156 237.460938 257.753906 237.578125 257.753906 C 237.695312 257.753906 237.789062 257.660156 237.789062 257.542969 Z M 237.789062 257.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.53125 256.738281 C 237.53125 256.621094 237.4375 256.527344 237.320312 256.527344 C 237.203125 256.527344 237.109375 256.621094 237.109375 256.738281 C 237.109375 256.855469 237.203125 256.949219 237.320312 256.949219 C 237.4375 256.949219 237.53125 256.855469 237.53125 256.738281 Z M 237.53125 256.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.210938 260.238281 C 237.210938 260.121094 237.117188 260.027344 237 260.027344 C 236.882812 260.027344 236.789062 260.121094 236.789062 260.238281 C 236.789062 260.355469 236.882812 260.449219 237 260.449219 C 237.117188 260.449219 237.210938 260.355469 237.210938 260.238281 Z M 237.210938 260.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.875 260.503906 C 234.875 260.386719 234.78125 260.292969 234.664062 260.292969 C 234.546875 260.292969 234.453125 260.386719 234.453125 260.503906 C 234.453125 260.621094 234.546875 260.714844 234.664062 260.714844 C 234.78125 260.714844 234.875 260.621094 234.875 260.503906 Z M 234.875 260.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.34375 260.101562 C 235.34375 259.984375 235.25 259.890625 235.132812 259.890625 C 235.015625 259.890625 234.921875 259.984375 234.921875 260.101562 C 234.921875 260.21875 235.015625 260.3125 235.132812 260.3125 C 235.25 260.3125 235.34375 260.21875 235.34375 260.101562 Z M 235.34375 260.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.910156 257.25 C 234.910156 257.132812 234.816406 257.039062 234.699219 257.039062 C 234.582031 257.039062 234.488281 257.132812 234.488281 257.25 C 234.488281 257.367188 234.582031 257.460938 234.699219 257.460938 C 234.816406 257.460938 234.910156 257.367188 234.910156 257.25 Z M 234.910156 257.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.441406 257.375 C 235.441406 257.257812 235.347656 257.164062 235.230469 257.164062 C 235.113281 257.164062 235.019531 257.257812 235.019531 257.375 C 235.019531 257.492188 235.113281 257.585938 235.230469 257.585938 C 235.347656 257.585938 235.441406 257.492188 235.441406 257.375 Z M 235.441406 257.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.339844 259.355469 C 237.339844 259.238281 237.246094 259.144531 237.128906 259.144531 C 237.011719 259.144531 236.917969 259.238281 236.917969 259.355469 C 236.917969 259.472656 237.011719 259.566406 237.128906 259.566406 C 237.246094 259.566406 237.339844 259.472656 237.339844 259.355469 Z M 237.339844 259.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.722656 258.78125 C 234.722656 258.664062 234.628906 258.570312 234.511719 258.570312 C 234.394531 258.570312 234.300781 258.664062 234.300781 258.78125 C 234.300781 258.898438 234.394531 258.992188 234.511719 258.992188 C 234.628906 258.992188 234.722656 258.898438 234.722656 258.78125 Z M 234.722656 258.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.902344 257.050781 C 230.902344 256.933594 230.808594 256.839844 230.691406 256.839844 C 230.574219 256.839844 230.480469 256.933594 230.480469 257.050781 C 230.480469 257.167969 230.574219 257.261719 230.691406 257.261719 C 230.808594 257.261719 230.902344 257.167969 230.902344 257.050781 Z M 230.902344 257.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.441406 256.535156 C 232.441406 256.417969 232.347656 256.324219 232.230469 256.324219 C 232.113281 256.324219 232.019531 256.417969 232.019531 256.535156 C 232.019531 256.652344 232.113281 256.746094 232.230469 256.746094 C 232.347656 256.746094 232.441406 256.652344 232.441406 256.535156 Z M 232.441406 256.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.714844 259.589844 C 234.714844 259.472656 234.621094 259.378906 234.503906 259.378906 C 234.386719 259.378906 234.292969 259.472656 234.292969 259.589844 C 234.292969 259.707031 234.386719 259.800781 234.503906 259.800781 C 234.621094 259.800781 234.714844 259.707031 234.714844 259.589844 Z M 234.714844 259.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.128906 262.234375 C 237.128906 262.117188 237.035156 262.023438 236.917969 262.023438 C 236.800781 262.023438 236.707031 262.117188 236.707031 262.234375 C 236.707031 262.351562 236.800781 262.445312 236.917969 262.445312 C 237.035156 262.445312 237.128906 262.351562 237.128906 262.234375 Z M 237.128906 262.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.292969 262.558594 C 238.292969 262.441406 238.199219 262.347656 238.082031 262.347656 C 237.964844 262.347656 237.871094 262.441406 237.871094 262.558594 C 237.871094 262.675781 237.964844 262.769531 238.082031 262.769531 C 238.199219 262.769531 238.292969 262.675781 238.292969 262.558594 Z M 238.292969 262.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.9375 260.171875 C 238.9375 260.054688 238.84375 259.960938 238.726562 259.960938 C 238.609375 259.960938 238.515625 260.054688 238.515625 260.171875 C 238.515625 260.289062 238.609375 260.382812 238.726562 260.382812 C 238.84375 260.382812 238.9375 260.289062 238.9375 260.171875 Z M 238.9375 260.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.523438 256.578125 C 237.523438 256.460938 237.429688 256.367188 237.3125 256.367188 C 237.195312 256.367188 237.101562 256.460938 237.101562 256.578125 C 237.101562 256.695312 237.195312 256.789062 237.3125 256.789062 C 237.429688 256.789062 237.523438 256.695312 237.523438 256.578125 Z M 237.523438 256.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.277344 258.597656 C 241.277344 258.480469 241.183594 258.386719 241.066406 258.386719 C 240.949219 258.386719 240.855469 258.480469 240.855469 258.597656 C 240.855469 258.714844 240.949219 258.808594 241.066406 258.808594 C 241.183594 258.808594 241.277344 258.714844 241.277344 258.597656 Z M 241.277344 258.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.535156 253.914062 C 240.535156 253.796875 240.441406 253.703125 240.324219 253.703125 C 240.207031 253.703125 240.113281 253.796875 240.113281 253.914062 C 240.113281 254.03125 240.207031 254.125 240.324219 254.125 C 240.441406 254.125 240.535156 254.03125 240.535156 253.914062 Z M 240.535156 253.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.535156 252.777344 C 240.535156 252.660156 240.441406 252.566406 240.324219 252.566406 C 240.207031 252.566406 240.113281 252.660156 240.113281 252.777344 C 240.113281 252.894531 240.207031 252.988281 240.324219 252.988281 C 240.441406 252.988281 240.535156 252.894531 240.535156 252.777344 Z M 240.535156 252.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.425781 251.308594 C 243.425781 251.191406 243.332031 251.097656 243.214844 251.097656 C 243.097656 251.097656 243.003906 251.191406 243.003906 251.308594 C 243.003906 251.425781 243.097656 251.519531 243.214844 251.519531 C 243.332031 251.519531 243.425781 251.425781 243.425781 251.308594 Z M 243.425781 251.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.339844 254.167969 C 241.339844 254.050781 241.246094 253.957031 241.128906 253.957031 C 241.011719 253.957031 240.917969 254.050781 240.917969 254.167969 C 240.917969 254.285156 241.011719 254.378906 241.128906 254.378906 C 241.246094 254.378906 241.339844 254.285156 241.339844 254.167969 Z M 241.339844 254.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.21875 253.074219 C 242.21875 252.957031 242.125 252.863281 242.007812 252.863281 C 241.890625 252.863281 241.796875 252.957031 241.796875 253.074219 C 241.796875 253.191406 241.890625 253.285156 242.007812 253.285156 C 242.125 253.285156 242.21875 253.191406 242.21875 253.074219 Z M 242.21875 253.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.203125 251.15625 C 242.203125 251.039062 242.109375 250.945312 241.992188 250.945312 C 241.875 250.945312 241.78125 251.039062 241.78125 251.15625 C 241.78125 251.273438 241.875 251.367188 241.992188 251.367188 C 242.109375 251.367188 242.203125 251.273438 242.203125 251.15625 Z M 242.203125 251.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.058594 253.003906 C 243.058594 252.886719 242.964844 252.792969 242.847656 252.792969 C 242.730469 252.792969 242.636719 252.886719 242.636719 253.003906 C 242.636719 253.121094 242.730469 253.214844 242.847656 253.214844 C 242.964844 253.214844 243.058594 253.121094 243.058594 253.003906 Z M 243.058594 253.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.0625 251.746094 C 242.0625 251.628906 241.96875 251.535156 241.851562 251.535156 C 241.734375 251.535156 241.640625 251.628906 241.640625 251.746094 C 241.640625 251.863281 241.734375 251.957031 241.851562 251.957031 C 241.96875 251.957031 242.0625 251.863281 242.0625 251.746094 Z M 242.0625 251.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.179688 249.746094 C 239.179688 249.628906 239.085938 249.535156 238.96875 249.535156 C 238.851562 249.535156 238.757812 249.628906 238.757812 249.746094 C 238.757812 249.863281 238.851562 249.957031 238.96875 249.957031 C 239.085938 249.957031 239.179688 249.863281 239.179688 249.746094 Z M 239.179688 249.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.304688 250.929688 C 241.304688 250.8125 241.210938 250.71875 241.09375 250.71875 C 240.976562 250.71875 240.882812 250.8125 240.882812 250.929688 C 240.882812 251.046875 240.976562 251.140625 241.09375 251.140625 C 241.210938 251.140625 241.304688 251.046875 241.304688 250.929688 Z M 241.304688 250.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.765625 250.582031 C 241.765625 250.464844 241.671875 250.371094 241.554688 250.371094 C 241.4375 250.371094 241.34375 250.464844 241.34375 250.582031 C 241.34375 250.699219 241.4375 250.792969 241.554688 250.792969 C 241.671875 250.792969 241.765625 250.699219 241.765625 250.582031 Z M 241.765625 250.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.660156 250.875 C 241.660156 250.757812 241.566406 250.664062 241.449219 250.664062 C 241.332031 250.664062 241.238281 250.757812 241.238281 250.875 C 241.238281 250.992188 241.332031 251.085938 241.449219 251.085938 C 241.566406 251.085938 241.660156 250.992188 241.660156 250.875 Z M 241.660156 250.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.769531 250.46875 C 243.769531 250.351562 243.675781 250.257812 243.558594 250.257812 C 243.441406 250.257812 243.347656 250.351562 243.347656 250.46875 C 243.347656 250.585938 243.441406 250.679688 243.558594 250.679688 C 243.675781 250.679688 243.769531 250.585938 243.769531 250.46875 Z M 243.769531 250.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.613281 252.152344 C 243.613281 252.035156 243.519531 251.941406 243.402344 251.941406 C 243.285156 251.941406 243.191406 252.035156 243.191406 252.152344 C 243.191406 252.269531 243.285156 252.363281 243.402344 252.363281 C 243.519531 252.363281 243.613281 252.269531 243.613281 252.152344 Z M 243.613281 252.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.140625 254.828125 C 240.140625 254.710938 240.046875 254.617188 239.929688 254.617188 C 239.8125 254.617188 239.71875 254.710938 239.71875 254.828125 C 239.71875 254.945312 239.8125 255.039062 239.929688 255.039062 C 240.046875 255.039062 240.140625 254.945312 240.140625 254.828125 Z M 240.140625 254.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.285156 253.910156 C 240.285156 253.792969 240.191406 253.699219 240.074219 253.699219 C 239.957031 253.699219 239.863281 253.792969 239.863281 253.910156 C 239.863281 254.027344 239.957031 254.121094 240.074219 254.121094 C 240.191406 254.121094 240.285156 254.027344 240.285156 253.910156 Z M 240.285156 253.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.679688 252.957031 C 239.679688 252.839844 239.585938 252.746094 239.46875 252.746094 C 239.351562 252.746094 239.257812 252.839844 239.257812 252.957031 C 239.257812 253.074219 239.351562 253.167969 239.46875 253.167969 C 239.585938 253.167969 239.679688 253.074219 239.679688 252.957031 Z M 239.679688 252.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.675781 254.878906 C 237.675781 254.761719 237.582031 254.667969 237.464844 254.667969 C 237.347656 254.667969 237.253906 254.761719 237.253906 254.878906 C 237.253906 254.996094 237.347656 255.089844 237.464844 255.089844 C 237.582031 255.089844 237.675781 254.996094 237.675781 254.878906 Z M 237.675781 254.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.015625 254.65625 C 235.015625 254.539062 234.921875 254.445312 234.804688 254.445312 C 234.6875 254.445312 234.59375 254.539062 234.59375 254.65625 C 234.59375 254.773438 234.6875 254.867188 234.804688 254.867188 C 234.921875 254.867188 235.015625 254.773438 235.015625 254.65625 Z M 235.015625 254.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.4375 259.621094 C 231.4375 259.503906 231.34375 259.410156 231.226562 259.410156 C 231.109375 259.410156 231.015625 259.503906 231.015625 259.621094 C 231.015625 259.738281 231.109375 259.832031 231.226562 259.832031 C 231.34375 259.832031 231.4375 259.738281 231.4375 259.621094 Z M 231.4375 259.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.980469 261.164062 C 225.980469 261.046875 225.886719 260.953125 225.769531 260.953125 C 225.652344 260.953125 225.558594 261.046875 225.558594 261.164062 C 225.558594 261.28125 225.652344 261.375 225.769531 261.375 C 225.886719 261.375 225.980469 261.28125 225.980469 261.164062 Z M 225.980469 261.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.230469 261.566406 C 226.230469 261.449219 226.136719 261.355469 226.019531 261.355469 C 225.902344 261.355469 225.808594 261.449219 225.808594 261.566406 C 225.808594 261.683594 225.902344 261.777344 226.019531 261.777344 C 226.136719 261.777344 226.230469 261.683594 226.230469 261.566406 Z M 226.230469 261.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.039062 263.476562 C 226.039062 263.359375 225.945312 263.265625 225.828125 263.265625 C 225.710938 263.265625 225.617188 263.359375 225.617188 263.476562 C 225.617188 263.59375 225.710938 263.6875 225.828125 263.6875 C 225.945312 263.6875 226.039062 263.59375 226.039062 263.476562 Z M 226.039062 263.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.070312 260.851562 C 228.070312 260.734375 227.976562 260.640625 227.859375 260.640625 C 227.742188 260.640625 227.648438 260.734375 227.648438 260.851562 C 227.648438 260.96875 227.742188 261.0625 227.859375 261.0625 C 227.976562 261.0625 228.070312 260.96875 228.070312 260.851562 Z M 228.070312 260.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.640625 256.730469 C 229.640625 256.613281 229.546875 256.519531 229.429688 256.519531 C 229.3125 256.519531 229.21875 256.613281 229.21875 256.730469 C 229.21875 256.847656 229.3125 256.941406 229.429688 256.941406 C 229.546875 256.941406 229.640625 256.847656 229.640625 256.730469 Z M 229.640625 256.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.367188 258.273438 C 228.367188 258.15625 228.273438 258.0625 228.15625 258.0625 C 228.039062 258.0625 227.945312 258.15625 227.945312 258.273438 C 227.945312 258.390625 228.039062 258.484375 228.15625 258.484375 C 228.273438 258.484375 228.367188 258.390625 228.367188 258.273438 Z M 228.367188 258.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.996094 256.679688 C 226.996094 256.5625 226.902344 256.46875 226.785156 256.46875 C 226.667969 256.46875 226.574219 256.5625 226.574219 256.679688 C 226.574219 256.796875 226.667969 256.890625 226.785156 256.890625 C 226.902344 256.890625 226.996094 256.796875 226.996094 256.679688 Z M 226.996094 256.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.242188 256.320312 C 231.242188 256.203125 231.148438 256.109375 231.03125 256.109375 C 230.914062 256.109375 230.820312 256.203125 230.820312 256.320312 C 230.820312 256.4375 230.914062 256.53125 231.03125 256.53125 C 231.148438 256.53125 231.242188 256.4375 231.242188 256.320312 Z M 231.242188 256.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.472656 254.121094 C 230.472656 254.003906 230.378906 253.910156 230.261719 253.910156 C 230.144531 253.910156 230.050781 254.003906 230.050781 254.121094 C 230.050781 254.238281 230.144531 254.332031 230.261719 254.332031 C 230.378906 254.332031 230.472656 254.238281 230.472656 254.121094 Z M 230.472656 254.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.109375 254.660156 C 230.109375 254.542969 230.015625 254.449219 229.898438 254.449219 C 229.78125 254.449219 229.6875 254.542969 229.6875 254.660156 C 229.6875 254.777344 229.78125 254.871094 229.898438 254.871094 C 230.015625 254.871094 230.109375 254.777344 230.109375 254.660156 Z M 230.109375 254.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.742188 254.882812 C 227.742188 254.765625 227.648438 254.671875 227.53125 254.671875 C 227.414062 254.671875 227.320312 254.765625 227.320312 254.882812 C 227.320312 255 227.414062 255.09375 227.53125 255.09375 C 227.648438 255.09375 227.742188 255 227.742188 254.882812 Z M 227.742188 254.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.988281 255.230469 C 227.988281 255.113281 227.894531 255.019531 227.777344 255.019531 C 227.660156 255.019531 227.566406 255.113281 227.566406 255.230469 C 227.566406 255.347656 227.660156 255.441406 227.777344 255.441406 C 227.894531 255.441406 227.988281 255.347656 227.988281 255.230469 Z M 227.988281 255.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.476562 252.542969 C 227.476562 252.425781 227.382812 252.332031 227.265625 252.332031 C 227.148438 252.332031 227.054688 252.425781 227.054688 252.542969 C 227.054688 252.660156 227.148438 252.753906 227.265625 252.753906 C 227.382812 252.753906 227.476562 252.660156 227.476562 252.542969 Z M 227.476562 252.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.292969 253.730469 C 230.292969 253.613281 230.199219 253.519531 230.082031 253.519531 C 229.964844 253.519531 229.871094 253.613281 229.871094 253.730469 C 229.871094 253.847656 229.964844 253.941406 230.082031 253.941406 C 230.199219 253.941406 230.292969 253.847656 230.292969 253.730469 Z M 230.292969 253.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.285156 251.808594 C 232.285156 251.691406 232.191406 251.597656 232.074219 251.597656 C 231.957031 251.597656 231.863281 251.691406 231.863281 251.808594 C 231.863281 251.925781 231.957031 252.019531 232.074219 252.019531 C 232.191406 252.019531 232.285156 251.925781 232.285156 251.808594 Z M 232.285156 251.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.671875 251.679688 C 235.671875 251.5625 235.578125 251.46875 235.460938 251.46875 C 235.34375 251.46875 235.25 251.5625 235.25 251.679688 C 235.25 251.796875 235.34375 251.890625 235.460938 251.890625 C 235.578125 251.890625 235.671875 251.796875 235.671875 251.679688 Z M 235.671875 251.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.253906 249.761719 C 234.253906 249.644531 234.160156 249.550781 234.042969 249.550781 C 233.925781 249.550781 233.832031 249.644531 233.832031 249.761719 C 233.832031 249.878906 233.925781 249.972656 234.042969 249.972656 C 234.160156 249.972656 234.253906 249.878906 234.253906 249.761719 Z M 234.253906 249.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.242188 249.605469 C 233.242188 249.488281 233.148438 249.394531 233.03125 249.394531 C 232.914062 249.394531 232.820312 249.488281 232.820312 249.605469 C 232.820312 249.722656 232.914062 249.816406 233.03125 249.816406 C 233.148438 249.816406 233.242188 249.722656 233.242188 249.605469 Z M 233.242188 249.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.835938 249.75 C 234.835938 249.632812 234.742188 249.539062 234.625 249.539062 C 234.507812 249.539062 234.414062 249.632812 234.414062 249.75 C 234.414062 249.867188 234.507812 249.960938 234.625 249.960938 C 234.742188 249.960938 234.835938 249.867188 234.835938 249.75 Z M 234.835938 249.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.371094 248.585938 C 230.371094 248.46875 230.277344 248.375 230.160156 248.375 C 230.042969 248.375 229.949219 248.46875 229.949219 248.585938 C 229.949219 248.703125 230.042969 248.796875 230.160156 248.796875 C 230.277344 248.796875 230.371094 248.703125 230.371094 248.585938 Z M 230.371094 248.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.875 248.578125 C 230.875 248.460938 230.78125 248.367188 230.664062 248.367188 C 230.546875 248.367188 230.453125 248.460938 230.453125 248.578125 C 230.453125 248.695312 230.546875 248.789062 230.664062 248.789062 C 230.78125 248.789062 230.875 248.695312 230.875 248.578125 Z M 230.875 248.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.539062 247.289062 C 233.539062 247.171875 233.445312 247.078125 233.328125 247.078125 C 233.210938 247.078125 233.117188 247.171875 233.117188 247.289062 C 233.117188 247.40625 233.210938 247.5 233.328125 247.5 C 233.445312 247.5 233.539062 247.40625 233.539062 247.289062 Z M 233.539062 247.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.183594 246.734375 C 231.183594 246.617188 231.089844 246.523438 230.972656 246.523438 C 230.855469 246.523438 230.761719 246.617188 230.761719 246.734375 C 230.761719 246.851562 230.855469 246.945312 230.972656 246.945312 C 231.089844 246.945312 231.183594 246.851562 231.183594 246.734375 Z M 231.183594 246.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.328125 247.84375 C 230.328125 247.726562 230.234375 247.632812 230.117188 247.632812 C 230 247.632812 229.90625 247.726562 229.90625 247.84375 C 229.90625 247.960938 230 248.054688 230.117188 248.054688 C 230.234375 248.054688 230.328125 247.960938 230.328125 247.84375 Z M 230.328125 247.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.902344 249.574219 C 230.902344 249.457031 230.808594 249.363281 230.691406 249.363281 C 230.574219 249.363281 230.480469 249.457031 230.480469 249.574219 C 230.480469 249.691406 230.574219 249.785156 230.691406 249.785156 C 230.808594 249.785156 230.902344 249.691406 230.902344 249.574219 Z M 230.902344 249.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.355469 245.390625 C 230.355469 245.273438 230.261719 245.179688 230.144531 245.179688 C 230.027344 245.179688 229.933594 245.273438 229.933594 245.390625 C 229.933594 245.507812 230.027344 245.601562 230.144531 245.601562 C 230.261719 245.601562 230.355469 245.507812 230.355469 245.390625 Z M 230.355469 245.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.988281 245.769531 C 228.988281 245.652344 228.894531 245.558594 228.777344 245.558594 C 228.660156 245.558594 228.566406 245.652344 228.566406 245.769531 C 228.566406 245.886719 228.660156 245.980469 228.777344 245.980469 C 228.894531 245.980469 228.988281 245.886719 228.988281 245.769531 Z M 228.988281 245.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.363281 246.042969 C 225.363281 245.925781 225.269531 245.832031 225.152344 245.832031 C 225.035156 245.832031 224.941406 245.925781 224.941406 246.042969 C 224.941406 246.160156 225.035156 246.253906 225.152344 246.253906 C 225.269531 246.253906 225.363281 246.160156 225.363281 246.042969 Z M 225.363281 246.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.175781 247.210938 C 229.175781 247.09375 229.082031 247 228.964844 247 C 228.847656 247 228.753906 247.09375 228.753906 247.210938 C 228.753906 247.328125 228.847656 247.421875 228.964844 247.421875 C 229.082031 247.421875 229.175781 247.328125 229.175781 247.210938 Z M 229.175781 247.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.820312 247.238281 C 232.820312 247.121094 232.726562 247.027344 232.609375 247.027344 C 232.492188 247.027344 232.398438 247.121094 232.398438 247.238281 C 232.398438 247.355469 232.492188 247.449219 232.609375 247.449219 C 232.726562 247.449219 232.820312 247.355469 232.820312 247.238281 Z M 232.820312 247.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.136719 248.714844 C 231.136719 248.597656 231.042969 248.503906 230.925781 248.503906 C 230.808594 248.503906 230.714844 248.597656 230.714844 248.714844 C 230.714844 248.832031 230.808594 248.925781 230.925781 248.925781 C 231.042969 248.925781 231.136719 248.832031 231.136719 248.714844 Z M 231.136719 248.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.746094 245.8125 C 229.746094 245.695312 229.652344 245.601562 229.535156 245.601562 C 229.417969 245.601562 229.324219 245.695312 229.324219 245.8125 C 229.324219 245.929688 229.417969 246.023438 229.535156 246.023438 C 229.652344 246.023438 229.746094 245.929688 229.746094 245.8125 Z M 229.746094 245.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.113281 244.652344 C 231.113281 244.535156 231.019531 244.441406 230.902344 244.441406 C 230.785156 244.441406 230.691406 244.535156 230.691406 244.652344 C 230.691406 244.769531 230.785156 244.863281 230.902344 244.863281 C 231.019531 244.863281 231.113281 244.769531 231.113281 244.652344 Z M 231.113281 244.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.820312 247.800781 C 231.820312 247.683594 231.726562 247.589844 231.609375 247.589844 C 231.492188 247.589844 231.398438 247.683594 231.398438 247.800781 C 231.398438 247.917969 231.492188 248.011719 231.609375 248.011719 C 231.726562 248.011719 231.820312 247.917969 231.820312 247.800781 Z M 231.820312 247.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.269531 250.519531 C 230.269531 250.402344 230.175781 250.308594 230.058594 250.308594 C 229.941406 250.308594 229.847656 250.402344 229.847656 250.519531 C 229.847656 250.636719 229.941406 250.730469 230.058594 250.730469 C 230.175781 250.730469 230.269531 250.636719 230.269531 250.519531 Z M 230.269531 250.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.578125 252.269531 C 227.578125 252.152344 227.484375 252.058594 227.367188 252.058594 C 227.25 252.058594 227.15625 252.152344 227.15625 252.269531 C 227.15625 252.386719 227.25 252.480469 227.367188 252.480469 C 227.484375 252.480469 227.578125 252.386719 227.578125 252.269531 Z M 227.578125 252.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.597656 252.558594 C 229.597656 252.441406 229.503906 252.347656 229.386719 252.347656 C 229.269531 252.347656 229.175781 252.441406 229.175781 252.558594 C 229.175781 252.675781 229.269531 252.769531 229.386719 252.769531 C 229.503906 252.769531 229.597656 252.675781 229.597656 252.558594 Z M 229.597656 252.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.585938 245.367188 C 225.585938 245.25 225.492188 245.15625 225.375 245.15625 C 225.257812 245.15625 225.164062 245.25 225.164062 245.367188 C 225.164062 245.484375 225.257812 245.578125 225.375 245.578125 C 225.492188 245.578125 225.585938 245.484375 225.585938 245.367188 Z M 225.585938 245.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.894531 243.695312 C 223.894531 243.578125 223.800781 243.484375 223.683594 243.484375 C 223.566406 243.484375 223.472656 243.578125 223.472656 243.695312 C 223.472656 243.8125 223.566406 243.90625 223.683594 243.90625 C 223.800781 243.90625 223.894531 243.8125 223.894531 243.695312 Z M 223.894531 243.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.46875 244.519531 C 225.46875 244.402344 225.375 244.308594 225.257812 244.308594 C 225.140625 244.308594 225.046875 244.402344 225.046875 244.519531 C 225.046875 244.636719 225.140625 244.730469 225.257812 244.730469 C 225.375 244.730469 225.46875 244.636719 225.46875 244.519531 Z M 225.46875 244.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.371094 242.601562 C 224.371094 242.484375 224.277344 242.390625 224.160156 242.390625 C 224.042969 242.390625 223.949219 242.484375 223.949219 242.601562 C 223.949219 242.71875 224.042969 242.8125 224.160156 242.8125 C 224.277344 242.8125 224.371094 242.71875 224.371094 242.601562 Z M 224.371094 242.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.15625 244.777344 C 224.15625 244.660156 224.0625 244.566406 223.945312 244.566406 C 223.828125 244.566406 223.734375 244.660156 223.734375 244.777344 C 223.734375 244.894531 223.828125 244.988281 223.945312 244.988281 C 224.0625 244.988281 224.15625 244.894531 224.15625 244.777344 Z M 224.15625 244.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.707031 243.957031 C 226.707031 243.839844 226.613281 243.746094 226.496094 243.746094 C 226.378906 243.746094 226.285156 243.839844 226.285156 243.957031 C 226.285156 244.074219 226.378906 244.167969 226.496094 244.167969 C 226.613281 244.167969 226.707031 244.074219 226.707031 243.957031 Z M 226.707031 243.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.519531 242.5 C 224.519531 242.382812 224.425781 242.289062 224.308594 242.289062 C 224.191406 242.289062 224.097656 242.382812 224.097656 242.5 C 224.097656 242.617188 224.191406 242.710938 224.308594 242.710938 C 224.425781 242.710938 224.519531 242.617188 224.519531 242.5 Z M 224.519531 242.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.242188 240.285156 C 223.242188 240.167969 223.148438 240.074219 223.03125 240.074219 C 222.914062 240.074219 222.820312 240.167969 222.820312 240.285156 C 222.820312 240.402344 222.914062 240.496094 223.03125 240.496094 C 223.148438 240.496094 223.242188 240.402344 223.242188 240.285156 Z M 223.242188 240.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.75 237.65625 C 226.75 237.539062 226.65625 237.445312 226.539062 237.445312 C 226.421875 237.445312 226.328125 237.539062 226.328125 237.65625 C 226.328125 237.773438 226.421875 237.867188 226.539062 237.867188 C 226.65625 237.867188 226.75 237.773438 226.75 237.65625 Z M 226.75 237.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.421875 237.894531 C 226.421875 237.777344 226.328125 237.683594 226.210938 237.683594 C 226.09375 237.683594 226 237.777344 226 237.894531 C 226 238.011719 226.09375 238.105469 226.210938 238.105469 C 226.328125 238.105469 226.421875 238.011719 226.421875 237.894531 Z M 226.421875 237.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.394531 236.503906 C 227.394531 236.386719 227.300781 236.292969 227.183594 236.292969 C 227.066406 236.292969 226.972656 236.386719 226.972656 236.503906 C 226.972656 236.621094 227.066406 236.714844 227.183594 236.714844 C 227.300781 236.714844 227.394531 236.621094 227.394531 236.503906 Z M 227.394531 236.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.46875 232.917969 C 229.46875 232.800781 229.375 232.707031 229.257812 232.707031 C 229.140625 232.707031 229.046875 232.800781 229.046875 232.917969 C 229.046875 233.035156 229.140625 233.128906 229.257812 233.128906 C 229.375 233.128906 229.46875 233.035156 229.46875 232.917969 Z M 229.46875 232.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.246094 235.316406 C 223.246094 235.199219 223.152344 235.105469 223.035156 235.105469 C 222.917969 235.105469 222.824219 235.199219 222.824219 235.316406 C 222.824219 235.433594 222.917969 235.527344 223.035156 235.527344 C 223.152344 235.527344 223.246094 235.433594 223.246094 235.316406 Z M 223.246094 235.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.042969 234.003906 C 226.042969 233.886719 225.949219 233.792969 225.832031 233.792969 C 225.714844 233.792969 225.621094 233.886719 225.621094 234.003906 C 225.621094 234.121094 225.714844 234.214844 225.832031 234.214844 C 225.949219 234.214844 226.042969 234.121094 226.042969 234.003906 Z M 226.042969 234.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.644531 230.398438 C 223.644531 230.28125 223.550781 230.1875 223.433594 230.1875 C 223.316406 230.1875 223.222656 230.28125 223.222656 230.398438 C 223.222656 230.515625 223.316406 230.609375 223.433594 230.609375 C 223.550781 230.609375 223.644531 230.515625 223.644531 230.398438 Z M 223.644531 230.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.621094 229.492188 C 223.621094 229.375 223.527344 229.28125 223.410156 229.28125 C 223.292969 229.28125 223.199219 229.375 223.199219 229.492188 C 223.199219 229.609375 223.292969 229.703125 223.410156 229.703125 C 223.527344 229.703125 223.621094 229.609375 223.621094 229.492188 Z M 223.621094 229.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.980469 230.988281 C 221.980469 230.871094 221.886719 230.777344 221.769531 230.777344 C 221.652344 230.777344 221.558594 230.871094 221.558594 230.988281 C 221.558594 231.105469 221.652344 231.199219 221.769531 231.199219 C 221.886719 231.199219 221.980469 231.105469 221.980469 230.988281 Z M 221.980469 230.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 222.738281 225.605469 C 222.738281 225.488281 222.644531 225.394531 222.527344 225.394531 C 222.410156 225.394531 222.316406 225.488281 222.316406 225.605469 C 222.316406 225.722656 222.410156 225.816406 222.527344 225.816406 C 222.644531 225.816406 222.738281 225.722656 222.738281 225.605469 Z M 222.738281 225.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.847656 222.707031 C 223.847656 222.589844 223.753906 222.496094 223.636719 222.496094 C 223.519531 222.496094 223.425781 222.589844 223.425781 222.707031 C 223.425781 222.824219 223.519531 222.917969 223.636719 222.917969 C 223.753906 222.917969 223.847656 222.824219 223.847656 222.707031 Z M 223.847656 222.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.441406 222.019531 C 227.441406 221.902344 227.347656 221.808594 227.230469 221.808594 C 227.113281 221.808594 227.019531 221.902344 227.019531 222.019531 C 227.019531 222.136719 227.113281 222.230469 227.230469 222.230469 C 227.347656 222.230469 227.441406 222.136719 227.441406 222.019531 Z M 227.441406 222.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.851562 223.125 C 228.851562 223.007812 228.757812 222.914062 228.640625 222.914062 C 228.523438 222.914062 228.429688 223.007812 228.429688 223.125 C 228.429688 223.242188 228.523438 223.335938 228.640625 223.335938 C 228.757812 223.335938 228.851562 223.242188 228.851562 223.125 Z M 228.851562 223.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.660156 224.757812 C 228.660156 224.640625 228.566406 224.546875 228.449219 224.546875 C 228.332031 224.546875 228.238281 224.640625 228.238281 224.757812 C 228.238281 224.875 228.332031 224.96875 228.449219 224.96875 C 228.566406 224.96875 228.660156 224.875 228.660156 224.757812 Z M 228.660156 224.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.699219 221.800781 C 228.699219 221.683594 228.605469 221.589844 228.488281 221.589844 C 228.371094 221.589844 228.277344 221.683594 228.277344 221.800781 C 228.277344 221.917969 228.371094 222.011719 228.488281 222.011719 C 228.605469 222.011719 228.699219 221.917969 228.699219 221.800781 Z M 228.699219 221.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.714844 221.507812 C 228.714844 221.390625 228.621094 221.296875 228.503906 221.296875 C 228.386719 221.296875 228.292969 221.390625 228.292969 221.507812 C 228.292969 221.625 228.386719 221.71875 228.503906 221.71875 C 228.621094 221.71875 228.714844 221.625 228.714844 221.507812 Z M 228.714844 221.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.882812 220.191406 C 226.882812 220.074219 226.789062 219.980469 226.671875 219.980469 C 226.554688 219.980469 226.460938 220.074219 226.460938 220.191406 C 226.460938 220.308594 226.554688 220.402344 226.671875 220.402344 C 226.789062 220.402344 226.882812 220.308594 226.882812 220.191406 Z M 226.882812 220.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.695312 221.832031 C 226.695312 221.714844 226.601562 221.621094 226.484375 221.621094 C 226.367188 221.621094 226.273438 221.714844 226.273438 221.832031 C 226.273438 221.949219 226.367188 222.042969 226.484375 222.042969 C 226.601562 222.042969 226.695312 221.949219 226.695312 221.832031 Z M 226.695312 221.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.851562 222.054688 C 224.851562 221.9375 224.757812 221.84375 224.640625 221.84375 C 224.523438 221.84375 224.429688 221.9375 224.429688 222.054688 C 224.429688 222.171875 224.523438 222.265625 224.640625 222.265625 C 224.757812 222.265625 224.851562 222.171875 224.851562 222.054688 Z M 224.851562 222.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.828125 221.542969 C 224.828125 221.425781 224.734375 221.332031 224.617188 221.332031 C 224.5 221.332031 224.40625 221.425781 224.40625 221.542969 C 224.40625 221.660156 224.5 221.753906 224.617188 221.753906 C 224.734375 221.753906 224.828125 221.660156 224.828125 221.542969 Z M 224.828125 221.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.90625 223.027344 C 225.90625 222.910156 225.8125 222.816406 225.695312 222.816406 C 225.578125 222.816406 225.484375 222.910156 225.484375 223.027344 C 225.484375 223.144531 225.578125 223.238281 225.695312 223.238281 C 225.8125 223.238281 225.90625 223.144531 225.90625 223.027344 Z M 225.90625 223.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.5625 223.550781 C 224.5625 223.433594 224.46875 223.339844 224.351562 223.339844 C 224.234375 223.339844 224.140625 223.433594 224.140625 223.550781 C 224.140625 223.667969 224.234375 223.761719 224.351562 223.761719 C 224.46875 223.761719 224.5625 223.667969 224.5625 223.550781 Z M 224.5625 223.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.496094 222.867188 C 221.496094 222.75 221.402344 222.65625 221.285156 222.65625 C 221.167969 222.65625 221.074219 222.75 221.074219 222.867188 C 221.074219 222.984375 221.167969 223.078125 221.285156 223.078125 C 221.402344 223.078125 221.496094 222.984375 221.496094 222.867188 Z M 221.496094 222.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.820312 221.152344 C 224.820312 221.035156 224.726562 220.941406 224.609375 220.941406 C 224.492188 220.941406 224.398438 221.035156 224.398438 221.152344 C 224.398438 221.269531 224.492188 221.363281 224.609375 221.363281 C 224.726562 221.363281 224.820312 221.269531 224.820312 221.152344 Z M 224.820312 221.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.855469 224.105469 C 225.855469 223.988281 225.761719 223.894531 225.644531 223.894531 C 225.527344 223.894531 225.433594 223.988281 225.433594 224.105469 C 225.433594 224.222656 225.527344 224.316406 225.644531 224.316406 C 225.761719 224.316406 225.855469 224.222656 225.855469 224.105469 Z M 225.855469 224.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.761719 223.4375 C 228.761719 223.320312 228.667969 223.226562 228.550781 223.226562 C 228.433594 223.226562 228.339844 223.320312 228.339844 223.4375 C 228.339844 223.554688 228.433594 223.648438 228.550781 223.648438 C 228.667969 223.648438 228.761719 223.554688 228.761719 223.4375 Z M 228.761719 223.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.296875 219.878906 C 233.296875 219.761719 233.203125 219.667969 233.085938 219.667969 C 232.96875 219.667969 232.875 219.761719 232.875 219.878906 C 232.875 219.996094 232.96875 220.089844 233.085938 220.089844 C 233.203125 220.089844 233.296875 219.996094 233.296875 219.878906 Z M 233.296875 219.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.636719 218.671875 C 236.636719 218.554688 236.542969 218.460938 236.425781 218.460938 C 236.308594 218.460938 236.214844 218.554688 236.214844 218.671875 C 236.214844 218.789062 236.308594 218.882812 236.425781 218.882812 C 236.542969 218.882812 236.636719 218.789062 236.636719 218.671875 Z M 236.636719 218.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.820312 216.5 C 232.820312 216.382812 232.726562 216.289062 232.609375 216.289062 C 232.492188 216.289062 232.398438 216.382812 232.398438 216.5 C 232.398438 216.617188 232.492188 216.710938 232.609375 216.710938 C 232.726562 216.710938 232.820312 216.617188 232.820312 216.5 Z M 232.820312 216.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.980469 216.128906 C 235.980469 216.011719 235.886719 215.917969 235.769531 215.917969 C 235.652344 215.917969 235.558594 216.011719 235.558594 216.128906 C 235.558594 216.246094 235.652344 216.339844 235.769531 216.339844 C 235.886719 216.339844 235.980469 216.246094 235.980469 216.128906 Z M 235.980469 216.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.3125 217.8125 C 236.3125 217.695312 236.21875 217.601562 236.101562 217.601562 C 235.984375 217.601562 235.890625 217.695312 235.890625 217.8125 C 235.890625 217.929688 235.984375 218.023438 236.101562 218.023438 C 236.21875 218.023438 236.3125 217.929688 236.3125 217.8125 Z M 236.3125 217.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.683594 222.421875 C 236.683594 222.304688 236.589844 222.210938 236.472656 222.210938 C 236.355469 222.210938 236.261719 222.304688 236.261719 222.421875 C 236.261719 222.539062 236.355469 222.632812 236.472656 222.632812 C 236.589844 222.632812 236.683594 222.539062 236.683594 222.421875 Z M 236.683594 222.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.601562 221.347656 C 234.601562 221.230469 234.507812 221.136719 234.390625 221.136719 C 234.273438 221.136719 234.179688 221.230469 234.179688 221.347656 C 234.179688 221.464844 234.273438 221.558594 234.390625 221.558594 C 234.507812 221.558594 234.601562 221.464844 234.601562 221.347656 Z M 234.601562 221.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.34375 222.234375 C 233.34375 222.117188 233.25 222.023438 233.132812 222.023438 C 233.015625 222.023438 232.921875 222.117188 232.921875 222.234375 C 232.921875 222.351562 233.015625 222.445312 233.132812 222.445312 C 233.25 222.445312 233.34375 222.351562 233.34375 222.234375 Z M 233.34375 222.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.5625 219.492188 C 238.5625 219.375 238.46875 219.28125 238.351562 219.28125 C 238.234375 219.28125 238.140625 219.375 238.140625 219.492188 C 238.140625 219.609375 238.234375 219.703125 238.351562 219.703125 C 238.46875 219.703125 238.5625 219.609375 238.5625 219.492188 Z M 238.5625 219.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.9375 219.855469 C 237.9375 219.738281 237.84375 219.644531 237.726562 219.644531 C 237.609375 219.644531 237.515625 219.738281 237.515625 219.855469 C 237.515625 219.972656 237.609375 220.066406 237.726562 220.066406 C 237.84375 220.066406 237.9375 219.972656 237.9375 219.855469 Z M 237.9375 219.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.179688 221.074219 C 235.179688 220.957031 235.085938 220.863281 234.96875 220.863281 C 234.851562 220.863281 234.757812 220.957031 234.757812 221.074219 C 234.757812 221.191406 234.851562 221.285156 234.96875 221.285156 C 235.085938 221.285156 235.179688 221.191406 235.179688 221.074219 Z M 235.179688 221.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.730469 221.296875 C 232.730469 221.179688 232.636719 221.085938 232.519531 221.085938 C 232.402344 221.085938 232.308594 221.179688 232.308594 221.296875 C 232.308594 221.414062 232.402344 221.507812 232.519531 221.507812 C 232.636719 221.507812 232.730469 221.414062 232.730469 221.296875 Z M 232.730469 221.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.121094 217.949219 C 233.121094 217.832031 233.027344 217.738281 232.910156 217.738281 C 232.792969 217.738281 232.699219 217.832031 232.699219 217.949219 C 232.699219 218.066406 232.792969 218.160156 232.910156 218.160156 C 233.027344 218.160156 233.121094 218.066406 233.121094 217.949219 Z M 233.121094 217.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.207031 217.710938 C 230.207031 217.59375 230.113281 217.5 229.996094 217.5 C 229.878906 217.5 229.785156 217.59375 229.785156 217.710938 C 229.785156 217.828125 229.878906 217.921875 229.996094 217.921875 C 230.113281 217.921875 230.207031 217.828125 230.207031 217.710938 Z M 230.207031 217.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.574219 218.894531 C 229.574219 218.777344 229.480469 218.683594 229.363281 218.683594 C 229.246094 218.683594 229.152344 218.777344 229.152344 218.894531 C 229.152344 219.011719 229.246094 219.105469 229.363281 219.105469 C 229.480469 219.105469 229.574219 219.011719 229.574219 218.894531 Z M 229.574219 218.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.457031 217.714844 C 228.457031 217.597656 228.363281 217.503906 228.246094 217.503906 C 228.128906 217.503906 228.035156 217.597656 228.035156 217.714844 C 228.035156 217.832031 228.128906 217.925781 228.246094 217.925781 C 228.363281 217.925781 228.457031 217.832031 228.457031 217.714844 Z M 228.457031 217.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.015625 214.164062 C 226.015625 214.046875 225.921875 213.953125 225.804688 213.953125 C 225.6875 213.953125 225.59375 214.046875 225.59375 214.164062 C 225.59375 214.28125 225.6875 214.375 225.804688 214.375 C 225.921875 214.375 226.015625 214.28125 226.015625 214.164062 Z M 226.015625 214.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.085938 215.527344 C 223.085938 215.410156 222.992188 215.316406 222.875 215.316406 C 222.757812 215.316406 222.664062 215.410156 222.664062 215.527344 C 222.664062 215.644531 222.757812 215.738281 222.875 215.738281 C 222.992188 215.738281 223.085938 215.644531 223.085938 215.527344 Z M 223.085938 215.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.933594 216.210938 C 219.933594 216.09375 219.839844 216 219.722656 216 C 219.605469 216 219.511719 216.09375 219.511719 216.210938 C 219.511719 216.328125 219.605469 216.421875 219.722656 216.421875 C 219.839844 216.421875 219.933594 216.328125 219.933594 216.210938 Z M 219.933594 216.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.859375 217.324219 C 217.859375 217.207031 217.765625 217.113281 217.648438 217.113281 C 217.53125 217.113281 217.4375 217.207031 217.4375 217.324219 C 217.4375 217.441406 217.53125 217.535156 217.648438 217.535156 C 217.765625 217.535156 217.859375 217.441406 217.859375 217.324219 Z M 217.859375 217.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.222656 216.371094 C 219.222656 216.253906 219.128906 216.160156 219.011719 216.160156 C 218.894531 216.160156 218.800781 216.253906 218.800781 216.371094 C 218.800781 216.488281 218.894531 216.582031 219.011719 216.582031 C 219.128906 216.582031 219.222656 216.488281 219.222656 216.371094 Z M 219.222656 216.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 220.878906 219.886719 C 220.878906 219.769531 220.785156 219.675781 220.667969 219.675781 C 220.550781 219.675781 220.457031 219.769531 220.457031 219.886719 C 220.457031 220.003906 220.550781 220.097656 220.667969 220.097656 C 220.785156 220.097656 220.878906 220.003906 220.878906 219.886719 Z M 220.878906 219.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.53125 220.101562 C 219.53125 219.984375 219.4375 219.890625 219.320312 219.890625 C 219.203125 219.890625 219.109375 219.984375 219.109375 220.101562 C 219.109375 220.21875 219.203125 220.3125 219.320312 220.3125 C 219.4375 220.3125 219.53125 220.21875 219.53125 220.101562 Z M 219.53125 220.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.40625 223.210938 C 219.40625 223.09375 219.3125 223 219.195312 223 C 219.078125 223 218.984375 223.09375 218.984375 223.210938 C 218.984375 223.328125 219.078125 223.421875 219.195312 223.421875 C 219.3125 223.421875 219.40625 223.328125 219.40625 223.210938 Z M 219.40625 223.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.667969 225.425781 C 219.667969 225.308594 219.574219 225.214844 219.457031 225.214844 C 219.339844 225.214844 219.246094 225.308594 219.246094 225.425781 C 219.246094 225.542969 219.339844 225.636719 219.457031 225.636719 C 219.574219 225.636719 219.667969 225.542969 219.667969 225.425781 Z M 219.667969 225.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 222.160156 230.296875 C 222.160156 230.179688 222.066406 230.085938 221.949219 230.085938 C 221.832031 230.085938 221.738281 230.179688 221.738281 230.296875 C 221.738281 230.414062 221.832031 230.507812 221.949219 230.507812 C 222.066406 230.507812 222.160156 230.414062 222.160156 230.296875 Z M 222.160156 230.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.820312 227.53125 C 221.820312 227.414062 221.726562 227.320312 221.609375 227.320312 C 221.492188 227.320312 221.398438 227.414062 221.398438 227.53125 C 221.398438 227.648438 221.492188 227.742188 221.609375 227.742188 C 221.726562 227.742188 221.820312 227.648438 221.820312 227.53125 Z M 221.820312 227.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.308594 229.148438 C 218.308594 229.03125 218.214844 228.9375 218.097656 228.9375 C 217.980469 228.9375 217.886719 229.03125 217.886719 229.148438 C 217.886719 229.265625 217.980469 229.359375 218.097656 229.359375 C 218.214844 229.359375 218.308594 229.265625 218.308594 229.148438 Z M 218.308594 229.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.277344 226.410156 C 216.277344 226.292969 216.183594 226.199219 216.066406 226.199219 C 215.949219 226.199219 215.855469 226.292969 215.855469 226.410156 C 215.855469 226.527344 215.949219 226.621094 216.066406 226.621094 C 216.183594 226.621094 216.277344 226.527344 216.277344 226.410156 Z M 216.277344 226.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.480469 221.640625 C 218.480469 221.523438 218.386719 221.429688 218.269531 221.429688 C 218.152344 221.429688 218.058594 221.523438 218.058594 221.640625 C 218.058594 221.757812 218.152344 221.851562 218.269531 221.851562 C 218.386719 221.851562 218.480469 221.757812 218.480469 221.640625 Z M 218.480469 221.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.578125 226.5 C 217.578125 226.382812 217.484375 226.289062 217.367188 226.289062 C 217.25 226.289062 217.15625 226.382812 217.15625 226.5 C 217.15625 226.617188 217.25 226.710938 217.367188 226.710938 C 217.484375 226.710938 217.578125 226.617188 217.578125 226.5 Z M 217.578125 226.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.433594 228.410156 C 217.433594 228.292969 217.339844 228.199219 217.222656 228.199219 C 217.105469 228.199219 217.011719 228.292969 217.011719 228.410156 C 217.011719 228.527344 217.105469 228.621094 217.222656 228.621094 C 217.339844 228.621094 217.433594 228.527344 217.433594 228.410156 Z M 217.433594 228.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.347656 228.757812 C 216.347656 228.640625 216.253906 228.546875 216.136719 228.546875 C 216.019531 228.546875 215.925781 228.640625 215.925781 228.757812 C 215.925781 228.875 216.019531 228.96875 216.136719 228.96875 C 216.253906 228.96875 216.347656 228.875 216.347656 228.757812 Z M 216.347656 228.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.464844 228.429688 C 218.464844 228.3125 218.371094 228.21875 218.253906 228.21875 C 218.136719 228.21875 218.042969 228.3125 218.042969 228.429688 C 218.042969 228.546875 218.136719 228.640625 218.253906 228.640625 C 218.371094 228.640625 218.464844 228.546875 218.464844 228.429688 Z M 218.464844 228.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.566406 226.632812 C 218.566406 226.515625 218.472656 226.421875 218.355469 226.421875 C 218.238281 226.421875 218.144531 226.515625 218.144531 226.632812 C 218.144531 226.75 218.238281 226.84375 218.355469 226.84375 C 218.472656 226.84375 218.566406 226.75 218.566406 226.632812 Z M 218.566406 226.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 220.894531 226.847656 C 220.894531 226.730469 220.800781 226.636719 220.683594 226.636719 C 220.566406 226.636719 220.472656 226.730469 220.472656 226.847656 C 220.472656 226.964844 220.566406 227.058594 220.683594 227.058594 C 220.800781 227.058594 220.894531 226.964844 220.894531 226.847656 Z M 220.894531 226.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.25 225.0625 C 218.25 224.945312 218.15625 224.851562 218.039062 224.851562 C 217.921875 224.851562 217.828125 224.945312 217.828125 225.0625 C 217.828125 225.179688 217.921875 225.273438 218.039062 225.273438 C 218.15625 225.273438 218.25 225.179688 218.25 225.0625 Z M 218.25 225.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.644531 224.359375 C 221.644531 224.242188 221.550781 224.148438 221.433594 224.148438 C 221.316406 224.148438 221.222656 224.242188 221.222656 224.359375 C 221.222656 224.476562 221.316406 224.570312 221.433594 224.570312 C 221.550781 224.570312 221.644531 224.476562 221.644531 224.359375 Z M 221.644531 224.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 222.25 222.78125 C 222.25 222.664062 222.15625 222.570312 222.039062 222.570312 C 221.921875 222.570312 221.828125 222.664062 221.828125 222.78125 C 221.828125 222.898438 221.921875 222.992188 222.039062 222.992188 C 222.15625 222.992188 222.25 222.898438 222.25 222.78125 Z M 222.25 222.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 220.132812 222.605469 C 220.132812 222.488281 220.039062 222.394531 219.921875 222.394531 C 219.804688 222.394531 219.710938 222.488281 219.710938 222.605469 C 219.710938 222.722656 219.804688 222.816406 219.921875 222.816406 C 220.039062 222.816406 220.132812 222.722656 220.132812 222.605469 Z M 220.132812 222.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.640625 221.496094 C 218.640625 221.378906 218.546875 221.285156 218.429688 221.285156 C 218.3125 221.285156 218.21875 221.378906 218.21875 221.496094 C 218.21875 221.613281 218.3125 221.707031 218.429688 221.707031 C 218.546875 221.707031 218.640625 221.613281 218.640625 221.496094 Z M 218.640625 221.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 220.332031 219.78125 C 220.332031 219.664062 220.238281 219.570312 220.121094 219.570312 C 220.003906 219.570312 219.910156 219.664062 219.910156 219.78125 C 219.910156 219.898438 220.003906 219.992188 220.121094 219.992188 C 220.238281 219.992188 220.332031 219.898438 220.332031 219.78125 Z M 220.332031 219.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.121094 218.144531 C 221.121094 218.027344 221.027344 217.933594 220.910156 217.933594 C 220.792969 217.933594 220.699219 218.027344 220.699219 218.144531 C 220.699219 218.261719 220.792969 218.355469 220.910156 218.355469 C 221.027344 218.355469 221.121094 218.261719 221.121094 218.144531 Z M 221.121094 218.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.8125 216.34375 C 216.8125 216.226562 216.71875 216.132812 216.601562 216.132812 C 216.484375 216.132812 216.390625 216.226562 216.390625 216.34375 C 216.390625 216.460938 216.484375 216.554688 216.601562 216.554688 C 216.71875 216.554688 216.8125 216.460938 216.8125 216.34375 Z M 216.8125 216.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.128906 216.957031 C 214.128906 216.839844 214.035156 216.746094 213.917969 216.746094 C 213.800781 216.746094 213.707031 216.839844 213.707031 216.957031 C 213.707031 217.074219 213.800781 217.167969 213.917969 217.167969 C 214.035156 217.167969 214.128906 217.074219 214.128906 216.957031 Z M 214.128906 216.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.597656 215.964844 C 215.597656 215.847656 215.503906 215.753906 215.386719 215.753906 C 215.269531 215.753906 215.175781 215.847656 215.175781 215.964844 C 215.175781 216.082031 215.269531 216.175781 215.386719 216.175781 C 215.503906 216.175781 215.597656 216.082031 215.597656 215.964844 Z M 215.597656 215.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.457031 216.601562 C 214.457031 216.484375 214.363281 216.390625 214.246094 216.390625 C 214.128906 216.390625 214.035156 216.484375 214.035156 216.601562 C 214.035156 216.71875 214.128906 216.8125 214.246094 216.8125 C 214.363281 216.8125 214.457031 216.71875 214.457031 216.601562 Z M 214.457031 216.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.925781 218 C 213.925781 217.882812 213.832031 217.789062 213.714844 217.789062 C 213.597656 217.789062 213.503906 217.882812 213.503906 218 C 213.503906 218.117188 213.597656 218.210938 213.714844 218.210938 C 213.832031 218.210938 213.925781 218.117188 213.925781 218 Z M 213.925781 218 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.789062 218.886719 C 216.789062 218.769531 216.695312 218.675781 216.578125 218.675781 C 216.460938 218.675781 216.367188 218.769531 216.367188 218.886719 C 216.367188 219.003906 216.460938 219.097656 216.578125 219.097656 C 216.695312 219.097656 216.789062 219.003906 216.789062 218.886719 Z M 216.789062 218.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.363281 219.046875 C 217.363281 218.929688 217.269531 218.835938 217.152344 218.835938 C 217.035156 218.835938 216.941406 218.929688 216.941406 219.046875 C 216.941406 219.164062 217.035156 219.257812 217.152344 219.257812 C 217.269531 219.257812 217.363281 219.164062 217.363281 219.046875 Z M 217.363281 219.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.964844 222.917969 C 215.964844 222.800781 215.871094 222.707031 215.753906 222.707031 C 215.636719 222.707031 215.542969 222.800781 215.542969 222.917969 C 215.542969 223.035156 215.636719 223.128906 215.753906 223.128906 C 215.871094 223.128906 215.964844 223.035156 215.964844 222.917969 Z M 215.964844 222.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.402344 224.359375 C 217.402344 224.242188 217.308594 224.148438 217.191406 224.148438 C 217.074219 224.148438 216.980469 224.242188 216.980469 224.359375 C 216.980469 224.476562 217.074219 224.570312 217.191406 224.570312 C 217.308594 224.570312 217.402344 224.476562 217.402344 224.359375 Z M 217.402344 224.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.460938 226.691406 C 217.460938 226.574219 217.367188 226.480469 217.25 226.480469 C 217.132812 226.480469 217.039062 226.574219 217.039062 226.691406 C 217.039062 226.808594 217.132812 226.902344 217.25 226.902344 C 217.367188 226.902344 217.460938 226.808594 217.460938 226.691406 Z M 217.460938 226.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.03125 227.964844 C 216.03125 227.847656 215.9375 227.753906 215.820312 227.753906 C 215.703125 227.753906 215.609375 227.847656 215.609375 227.964844 C 215.609375 228.082031 215.703125 228.175781 215.820312 228.175781 C 215.9375 228.175781 216.03125 228.082031 216.03125 227.964844 Z M 216.03125 227.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.480469 227.453125 C 212.480469 227.335938 212.386719 227.242188 212.269531 227.242188 C 212.152344 227.242188 212.058594 227.335938 212.058594 227.453125 C 212.058594 227.570312 212.152344 227.664062 212.269531 227.664062 C 212.386719 227.664062 212.480469 227.570312 212.480469 227.453125 Z M 212.480469 227.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.027344 227.042969 C 211.027344 226.925781 210.933594 226.832031 210.816406 226.832031 C 210.699219 226.832031 210.605469 226.925781 210.605469 227.042969 C 210.605469 227.160156 210.699219 227.253906 210.816406 227.253906 C 210.933594 227.253906 211.027344 227.160156 211.027344 227.042969 Z M 211.027344 227.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.460938 227.269531 C 209.460938 227.152344 209.367188 227.058594 209.25 227.058594 C 209.132812 227.058594 209.039062 227.152344 209.039062 227.269531 C 209.039062 227.386719 209.132812 227.480469 209.25 227.480469 C 209.367188 227.480469 209.460938 227.386719 209.460938 227.269531 Z M 209.460938 227.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.035156 224.828125 C 209.035156 224.710938 208.941406 224.617188 208.824219 224.617188 C 208.707031 224.617188 208.613281 224.710938 208.613281 224.828125 C 208.613281 224.945312 208.707031 225.039062 208.824219 225.039062 C 208.941406 225.039062 209.035156 224.945312 209.035156 224.828125 Z M 209.035156 224.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.25 225.601562 C 210.25 225.484375 210.15625 225.390625 210.039062 225.390625 C 209.921875 225.390625 209.828125 225.484375 209.828125 225.601562 C 209.828125 225.71875 209.921875 225.8125 210.039062 225.8125 C 210.15625 225.8125 210.25 225.71875 210.25 225.601562 Z M 210.25 225.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.742188 227.027344 C 213.742188 226.910156 213.648438 226.816406 213.53125 226.816406 C 213.414062 226.816406 213.320312 226.910156 213.320312 227.027344 C 213.320312 227.144531 213.414062 227.238281 213.53125 227.238281 C 213.648438 227.238281 213.742188 227.144531 213.742188 227.027344 Z M 213.742188 227.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.785156 227.605469 C 212.785156 227.488281 212.691406 227.394531 212.574219 227.394531 C 212.457031 227.394531 212.363281 227.488281 212.363281 227.605469 C 212.363281 227.722656 212.457031 227.816406 212.574219 227.816406 C 212.691406 227.816406 212.785156 227.722656 212.785156 227.605469 Z M 212.785156 227.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.191406 227.277344 C 214.191406 227.160156 214.097656 227.066406 213.980469 227.066406 C 213.863281 227.066406 213.769531 227.160156 213.769531 227.277344 C 213.769531 227.394531 213.863281 227.488281 213.980469 227.488281 C 214.097656 227.488281 214.191406 227.394531 214.191406 227.277344 Z M 214.191406 227.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.636719 227.050781 C 214.636719 226.933594 214.542969 226.839844 214.425781 226.839844 C 214.308594 226.839844 214.214844 226.933594 214.214844 227.050781 C 214.214844 227.167969 214.308594 227.261719 214.425781 227.261719 C 214.542969 227.261719 214.636719 227.167969 214.636719 227.050781 Z M 214.636719 227.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.207031 226.394531 C 215.207031 226.277344 215.113281 226.183594 214.996094 226.183594 C 214.878906 226.183594 214.785156 226.277344 214.785156 226.394531 C 214.785156 226.511719 214.878906 226.605469 214.996094 226.605469 C 215.113281 226.605469 215.207031 226.511719 215.207031 226.394531 Z M 215.207031 226.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.742188 225.214844 C 214.742188 225.097656 214.648438 225.003906 214.53125 225.003906 C 214.414062 225.003906 214.320312 225.097656 214.320312 225.214844 C 214.320312 225.332031 214.414062 225.425781 214.53125 225.425781 C 214.648438 225.425781 214.742188 225.332031 214.742188 225.214844 Z M 214.742188 225.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.871094 227.707031 C 214.871094 227.589844 214.777344 227.496094 214.660156 227.496094 C 214.542969 227.496094 214.449219 227.589844 214.449219 227.707031 C 214.449219 227.824219 214.542969 227.917969 214.660156 227.917969 C 214.777344 227.917969 214.871094 227.824219 214.871094 227.707031 Z M 214.871094 227.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.277344 227.019531 C 216.277344 226.902344 216.183594 226.808594 216.066406 226.808594 C 215.949219 226.808594 215.855469 226.902344 215.855469 227.019531 C 215.855469 227.136719 215.949219 227.230469 216.066406 227.230469 C 216.183594 227.230469 216.277344 227.136719 216.277344 227.019531 Z M 216.277344 227.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.75 226.21875 C 214.75 226.101562 214.65625 226.007812 214.539062 226.007812 C 214.421875 226.007812 214.328125 226.101562 214.328125 226.21875 C 214.328125 226.335938 214.421875 226.429688 214.539062 226.429688 C 214.65625 226.429688 214.75 226.335938 214.75 226.21875 Z M 214.75 226.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.335938 228.539062 C 214.335938 228.421875 214.242188 228.328125 214.125 228.328125 C 214.007812 228.328125 213.914062 228.421875 213.914062 228.539062 C 213.914062 228.65625 214.007812 228.75 214.125 228.75 C 214.242188 228.75 214.335938 228.65625 214.335938 228.539062 Z M 214.335938 228.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.050781 227.527344 C 212.050781 227.410156 211.957031 227.316406 211.839844 227.316406 C 211.722656 227.316406 211.628906 227.410156 211.628906 227.527344 C 211.628906 227.644531 211.722656 227.738281 211.839844 227.738281 C 211.957031 227.738281 212.050781 227.644531 212.050781 227.527344 Z M 212.050781 227.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.269531 225.109375 C 208.269531 224.992188 208.175781 224.898438 208.058594 224.898438 C 207.941406 224.898438 207.847656 224.992188 207.847656 225.109375 C 207.847656 225.226562 207.941406 225.320312 208.058594 225.320312 C 208.175781 225.320312 208.269531 225.226562 208.269531 225.109375 Z M 208.269531 225.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.609375 226.238281 C 208.609375 226.121094 208.515625 226.027344 208.398438 226.027344 C 208.28125 226.027344 208.1875 226.121094 208.1875 226.238281 C 208.1875 226.355469 208.28125 226.449219 208.398438 226.449219 C 208.515625 226.449219 208.609375 226.355469 208.609375 226.238281 Z M 208.609375 226.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.550781 228.5 C 208.550781 228.382812 208.457031 228.289062 208.339844 228.289062 C 208.222656 228.289062 208.128906 228.382812 208.128906 228.5 C 208.128906 228.617188 208.222656 228.710938 208.339844 228.710938 C 208.457031 228.710938 208.550781 228.617188 208.550781 228.5 Z M 208.550781 228.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.316406 231.863281 C 208.316406 231.746094 208.222656 231.652344 208.105469 231.652344 C 207.988281 231.652344 207.894531 231.746094 207.894531 231.863281 C 207.894531 231.980469 207.988281 232.074219 208.105469 232.074219 C 208.222656 232.074219 208.316406 231.980469 208.316406 231.863281 Z M 208.316406 231.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.792969 231.023438 C 209.792969 230.90625 209.699219 230.8125 209.582031 230.8125 C 209.464844 230.8125 209.371094 230.90625 209.371094 231.023438 C 209.371094 231.140625 209.464844 231.234375 209.582031 231.234375 C 209.699219 231.234375 209.792969 231.140625 209.792969 231.023438 Z M 209.792969 231.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.324219 233.285156 C 209.324219 233.167969 209.230469 233.074219 209.113281 233.074219 C 208.996094 233.074219 208.902344 233.167969 208.902344 233.285156 C 208.902344 233.402344 208.996094 233.496094 209.113281 233.496094 C 209.230469 233.496094 209.324219 233.402344 209.324219 233.285156 Z M 209.324219 233.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.511719 235.546875 C 209.511719 235.429688 209.417969 235.335938 209.300781 235.335938 C 209.183594 235.335938 209.089844 235.429688 209.089844 235.546875 C 209.089844 235.664062 209.183594 235.757812 209.300781 235.757812 C 209.417969 235.757812 209.511719 235.664062 209.511719 235.546875 Z M 209.511719 235.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.582031 232.425781 C 210.582031 232.308594 210.488281 232.214844 210.371094 232.214844 C 210.253906 232.214844 210.160156 232.308594 210.160156 232.425781 C 210.160156 232.542969 210.253906 232.636719 210.371094 232.636719 C 210.488281 232.636719 210.582031 232.542969 210.582031 232.425781 Z M 210.582031 232.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.085938 235.210938 C 212.085938 235.09375 211.992188 235 211.875 235 C 211.757812 235 211.664062 235.09375 211.664062 235.210938 C 211.664062 235.328125 211.757812 235.421875 211.875 235.421875 C 211.992188 235.421875 212.085938 235.328125 212.085938 235.210938 Z M 212.085938 235.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.433594 238.160156 C 212.433594 238.042969 212.339844 237.949219 212.222656 237.949219 C 212.105469 237.949219 212.011719 238.042969 212.011719 238.160156 C 212.011719 238.277344 212.105469 238.371094 212.222656 238.371094 C 212.339844 238.371094 212.433594 238.277344 212.433594 238.160156 Z M 212.433594 238.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.039062 240.863281 C 213.039062 240.746094 212.945312 240.652344 212.828125 240.652344 C 212.710938 240.652344 212.617188 240.746094 212.617188 240.863281 C 212.617188 240.980469 212.710938 241.074219 212.828125 241.074219 C 212.945312 241.074219 213.039062 240.980469 213.039062 240.863281 Z M 213.039062 240.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.808594 240.023438 C 213.808594 239.90625 213.714844 239.8125 213.597656 239.8125 C 213.480469 239.8125 213.386719 239.90625 213.386719 240.023438 C 213.386719 240.140625 213.480469 240.234375 213.597656 240.234375 C 213.714844 240.234375 213.808594 240.140625 213.808594 240.023438 Z M 213.808594 240.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.746094 242.617188 C 214.746094 242.5 214.652344 242.40625 214.535156 242.40625 C 214.417969 242.40625 214.324219 242.5 214.324219 242.617188 C 214.324219 242.734375 214.417969 242.828125 214.535156 242.828125 C 214.652344 242.828125 214.746094 242.734375 214.746094 242.617188 Z M 214.746094 242.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.140625 244.570312 C 212.140625 244.453125 212.046875 244.359375 211.929688 244.359375 C 211.8125 244.359375 211.71875 244.453125 211.71875 244.570312 C 211.71875 244.6875 211.8125 244.78125 211.929688 244.78125 C 212.046875 244.78125 212.140625 244.6875 212.140625 244.570312 Z M 212.140625 244.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.097656 241.519531 C 213.097656 241.402344 213.003906 241.308594 212.886719 241.308594 C 212.769531 241.308594 212.675781 241.402344 212.675781 241.519531 C 212.675781 241.636719 212.769531 241.730469 212.886719 241.730469 C 213.003906 241.730469 213.097656 241.636719 213.097656 241.519531 Z M 213.097656 241.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.140625 241.3125 C 213.140625 241.195312 213.046875 241.101562 212.929688 241.101562 C 212.8125 241.101562 212.71875 241.195312 212.71875 241.3125 C 212.71875 241.429688 212.8125 241.523438 212.929688 241.523438 C 213.046875 241.523438 213.140625 241.429688 213.140625 241.3125 Z M 213.140625 241.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.246094 244.8125 C 212.246094 244.695312 212.152344 244.601562 212.035156 244.601562 C 211.917969 244.601562 211.824219 244.695312 211.824219 244.8125 C 211.824219 244.929688 211.917969 245.023438 212.035156 245.023438 C 212.152344 245.023438 212.246094 244.929688 212.246094 244.8125 Z M 212.246094 244.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.585938 241.449219 C 210.585938 241.332031 210.492188 241.238281 210.375 241.238281 C 210.257812 241.238281 210.164062 241.332031 210.164062 241.449219 C 210.164062 241.566406 210.257812 241.660156 210.375 241.660156 C 210.492188 241.660156 210.585938 241.566406 210.585938 241.449219 Z M 210.585938 241.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.988281 240.570312 C 212.988281 240.453125 212.894531 240.359375 212.777344 240.359375 C 212.660156 240.359375 212.566406 240.453125 212.566406 240.570312 C 212.566406 240.6875 212.660156 240.78125 212.777344 240.78125 C 212.894531 240.78125 212.988281 240.6875 212.988281 240.570312 Z M 212.988281 240.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.015625 241.621094 C 212.015625 241.503906 211.921875 241.410156 211.804688 241.410156 C 211.6875 241.410156 211.59375 241.503906 211.59375 241.621094 C 211.59375 241.738281 211.6875 241.832031 211.804688 241.832031 C 211.921875 241.832031 212.015625 241.738281 212.015625 241.621094 Z M 212.015625 241.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.203125 238.296875 C 215.203125 238.179688 215.109375 238.085938 214.992188 238.085938 C 214.875 238.085938 214.78125 238.179688 214.78125 238.296875 C 214.78125 238.414062 214.875 238.507812 214.992188 238.507812 C 215.109375 238.507812 215.203125 238.414062 215.203125 238.296875 Z M 215.203125 238.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.554688 235.828125 C 215.554688 235.710938 215.460938 235.617188 215.34375 235.617188 C 215.226562 235.617188 215.132812 235.710938 215.132812 235.828125 C 215.132812 235.945312 215.226562 236.039062 215.34375 236.039062 C 215.460938 236.039062 215.554688 235.945312 215.554688 235.828125 Z M 215.554688 235.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.9375 237.636719 C 214.9375 237.519531 214.84375 237.425781 214.726562 237.425781 C 214.609375 237.425781 214.515625 237.519531 214.515625 237.636719 C 214.515625 237.753906 214.609375 237.847656 214.726562 237.847656 C 214.84375 237.847656 214.9375 237.753906 214.9375 237.636719 Z M 214.9375 237.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.703125 236.738281 C 213.703125 236.621094 213.609375 236.527344 213.492188 236.527344 C 213.375 236.527344 213.28125 236.621094 213.28125 236.738281 C 213.28125 236.855469 213.375 236.949219 213.492188 236.949219 C 213.609375 236.949219 213.703125 236.855469 213.703125 236.738281 Z M 213.703125 236.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.25 236.660156 C 214.25 236.542969 214.15625 236.449219 214.039062 236.449219 C 213.921875 236.449219 213.828125 236.542969 213.828125 236.660156 C 213.828125 236.777344 213.921875 236.871094 214.039062 236.871094 C 214.15625 236.871094 214.25 236.777344 214.25 236.660156 Z M 214.25 236.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.097656 238.332031 C 217.097656 238.214844 217.003906 238.121094 216.886719 238.121094 C 216.769531 238.121094 216.675781 238.214844 216.675781 238.332031 C 216.675781 238.449219 216.769531 238.542969 216.886719 238.542969 C 217.003906 238.542969 217.097656 238.449219 217.097656 238.332031 Z M 217.097656 238.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.414062 238.460938 C 218.414062 238.34375 218.320312 238.25 218.203125 238.25 C 218.085938 238.25 217.992188 238.34375 217.992188 238.460938 C 217.992188 238.578125 218.085938 238.671875 218.203125 238.671875 C 218.320312 238.671875 218.414062 238.578125 218.414062 238.460938 Z M 218.414062 238.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.496094 239.28125 C 218.496094 239.164062 218.402344 239.070312 218.285156 239.070312 C 218.167969 239.070312 218.074219 239.164062 218.074219 239.28125 C 218.074219 239.398438 218.167969 239.492188 218.285156 239.492188 C 218.402344 239.492188 218.496094 239.398438 218.496094 239.28125 Z M 218.496094 239.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.773438 242.855469 C 218.773438 242.738281 218.679688 242.644531 218.5625 242.644531 C 218.445312 242.644531 218.351562 242.738281 218.351562 242.855469 C 218.351562 242.972656 218.445312 243.066406 218.5625 243.066406 C 218.679688 243.066406 218.773438 242.972656 218.773438 242.855469 Z M 218.773438 242.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.269531 241.324219 C 215.269531 241.207031 215.175781 241.113281 215.058594 241.113281 C 214.941406 241.113281 214.847656 241.207031 214.847656 241.324219 C 214.847656 241.441406 214.941406 241.535156 215.058594 241.535156 C 215.175781 241.535156 215.269531 241.441406 215.269531 241.324219 Z M 215.269531 241.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.175781 240.542969 C 213.175781 240.425781 213.082031 240.332031 212.964844 240.332031 C 212.847656 240.332031 212.753906 240.425781 212.753906 240.542969 C 212.753906 240.660156 212.847656 240.753906 212.964844 240.753906 C 213.082031 240.753906 213.175781 240.660156 213.175781 240.542969 Z M 213.175781 240.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.484375 239.910156 C 214.484375 239.792969 214.390625 239.699219 214.273438 239.699219 C 214.15625 239.699219 214.0625 239.792969 214.0625 239.910156 C 214.0625 240.027344 214.15625 240.121094 214.273438 240.121094 C 214.390625 240.121094 214.484375 240.027344 214.484375 239.910156 Z M 214.484375 239.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.65625 238.851562 C 212.65625 238.734375 212.5625 238.640625 212.445312 238.640625 C 212.328125 238.640625 212.234375 238.734375 212.234375 238.851562 C 212.234375 238.96875 212.328125 239.0625 212.445312 239.0625 C 212.5625 239.0625 212.65625 238.96875 212.65625 238.851562 Z M 212.65625 238.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.539062 235.035156 C 209.539062 234.917969 209.445312 234.824219 209.328125 234.824219 C 209.210938 234.824219 209.117188 234.917969 209.117188 235.035156 C 209.117188 235.152344 209.210938 235.246094 209.328125 235.246094 C 209.445312 235.246094 209.539062 235.152344 209.539062 235.035156 Z M 209.539062 235.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.539062 237.464844 C 209.539062 237.347656 209.445312 237.253906 209.328125 237.253906 C 209.210938 237.253906 209.117188 237.347656 209.117188 237.464844 C 209.117188 237.582031 209.210938 237.675781 209.328125 237.675781 C 209.445312 237.675781 209.539062 237.582031 209.539062 237.464844 Z M 209.539062 237.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.277344 238.863281 C 206.277344 238.746094 206.183594 238.652344 206.066406 238.652344 C 205.949219 238.652344 205.855469 238.746094 205.855469 238.863281 C 205.855469 238.980469 205.949219 239.074219 206.066406 239.074219 C 206.183594 239.074219 206.277344 238.980469 206.277344 238.863281 Z M 206.277344 238.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.046875 238.089844 C 205.046875 237.972656 204.953125 237.878906 204.835938 237.878906 C 204.71875 237.878906 204.625 237.972656 204.625 238.089844 C 204.625 238.207031 204.71875 238.300781 204.835938 238.300781 C 204.953125 238.300781 205.046875 238.207031 205.046875 238.089844 Z M 205.046875 238.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.519531 240.394531 C 206.519531 240.277344 206.425781 240.183594 206.308594 240.183594 C 206.191406 240.183594 206.097656 240.277344 206.097656 240.394531 C 206.097656 240.511719 206.191406 240.605469 206.308594 240.605469 C 206.425781 240.605469 206.519531 240.511719 206.519531 240.394531 Z M 206.519531 240.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.09375 241.027344 C 202.09375 240.910156 202 240.816406 201.882812 240.816406 C 201.765625 240.816406 201.671875 240.910156 201.671875 241.027344 C 201.671875 241.144531 201.765625 241.238281 201.882812 241.238281 C 202 241.238281 202.09375 241.144531 202.09375 241.027344 Z M 202.09375 241.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.234375 238.796875 C 203.234375 238.679688 203.140625 238.585938 203.023438 238.585938 C 202.90625 238.585938 202.8125 238.679688 202.8125 238.796875 C 202.8125 238.914062 202.90625 239.007812 203.023438 239.007812 C 203.140625 239.007812 203.234375 238.914062 203.234375 238.796875 Z M 203.234375 238.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.601562 238.378906 C 202.601562 238.261719 202.507812 238.167969 202.390625 238.167969 C 202.273438 238.167969 202.179688 238.261719 202.179688 238.378906 C 202.179688 238.496094 202.273438 238.589844 202.390625 238.589844 C 202.507812 238.589844 202.601562 238.496094 202.601562 238.378906 Z M 202.601562 238.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.046875 233.867188 C 202.046875 233.75 201.953125 233.65625 201.835938 233.65625 C 201.71875 233.65625 201.625 233.75 201.625 233.867188 C 201.625 233.984375 201.71875 234.078125 201.835938 234.078125 C 201.953125 234.078125 202.046875 233.984375 202.046875 233.867188 Z M 202.046875 233.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.996094 233.890625 C 200.996094 233.773438 200.902344 233.679688 200.785156 233.679688 C 200.667969 233.679688 200.574219 233.773438 200.574219 233.890625 C 200.574219 234.007812 200.667969 234.101562 200.785156 234.101562 C 200.902344 234.101562 200.996094 234.007812 200.996094 233.890625 Z M 200.996094 233.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.140625 237.09375 C 203.140625 236.976562 203.046875 236.882812 202.929688 236.882812 C 202.8125 236.882812 202.71875 236.976562 202.71875 237.09375 C 202.71875 237.210938 202.8125 237.304688 202.929688 237.304688 C 203.046875 237.304688 203.140625 237.210938 203.140625 237.09375 Z M 203.140625 237.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.179688 236.359375 C 207.179688 236.242188 207.085938 236.148438 206.96875 236.148438 C 206.851562 236.148438 206.757812 236.242188 206.757812 236.359375 C 206.757812 236.476562 206.851562 236.570312 206.96875 236.570312 C 207.085938 236.570312 207.179688 236.476562 207.179688 236.359375 Z M 207.179688 236.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.5 238.804688 C 207.5 238.6875 207.40625 238.59375 207.289062 238.59375 C 207.171875 238.59375 207.078125 238.6875 207.078125 238.804688 C 207.078125 238.921875 207.171875 239.015625 207.289062 239.015625 C 207.40625 239.015625 207.5 238.921875 207.5 238.804688 Z M 207.5 238.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.464844 238.617188 C 210.464844 238.5 210.371094 238.40625 210.253906 238.40625 C 210.136719 238.40625 210.042969 238.5 210.042969 238.617188 C 210.042969 238.734375 210.136719 238.828125 210.253906 238.828125 C 210.371094 238.828125 210.464844 238.734375 210.464844 238.617188 Z M 210.464844 238.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.792969 238.65625 C 209.792969 238.539062 209.699219 238.445312 209.582031 238.445312 C 209.464844 238.445312 209.371094 238.539062 209.371094 238.65625 C 209.371094 238.773438 209.464844 238.867188 209.582031 238.867188 C 209.699219 238.867188 209.792969 238.773438 209.792969 238.65625 Z M 209.792969 238.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.890625 233.769531 C 212.890625 233.652344 212.796875 233.558594 212.679688 233.558594 C 212.5625 233.558594 212.46875 233.652344 212.46875 233.769531 C 212.46875 233.886719 212.5625 233.980469 212.679688 233.980469 C 212.796875 233.980469 212.890625 233.886719 212.890625 233.769531 Z M 212.890625 233.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.261719 232.363281 C 214.261719 232.246094 214.167969 232.152344 214.050781 232.152344 C 213.933594 232.152344 213.839844 232.246094 213.839844 232.363281 C 213.839844 232.480469 213.933594 232.574219 214.050781 232.574219 C 214.167969 232.574219 214.261719 232.480469 214.261719 232.363281 Z M 214.261719 232.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.300781 231.472656 C 214.300781 231.355469 214.207031 231.261719 214.089844 231.261719 C 213.972656 231.261719 213.878906 231.355469 213.878906 231.472656 C 213.878906 231.589844 213.972656 231.683594 214.089844 231.683594 C 214.207031 231.683594 214.300781 231.589844 214.300781 231.472656 Z M 214.300781 231.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.539062 230.433594 C 216.539062 230.316406 216.445312 230.222656 216.328125 230.222656 C 216.210938 230.222656 216.117188 230.316406 216.117188 230.433594 C 216.117188 230.550781 216.210938 230.644531 216.328125 230.644531 C 216.445312 230.644531 216.539062 230.550781 216.539062 230.433594 Z M 216.539062 230.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.832031 231.863281 C 213.832031 231.746094 213.738281 231.652344 213.621094 231.652344 C 213.503906 231.652344 213.410156 231.746094 213.410156 231.863281 C 213.410156 231.980469 213.503906 232.074219 213.621094 232.074219 C 213.738281 232.074219 213.832031 231.980469 213.832031 231.863281 Z M 213.832031 231.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.261719 233.367188 C 211.261719 233.25 211.167969 233.15625 211.050781 233.15625 C 210.933594 233.15625 210.839844 233.25 210.839844 233.367188 C 210.839844 233.484375 210.933594 233.578125 211.050781 233.578125 C 211.167969 233.578125 211.261719 233.484375 211.261719 233.367188 Z M 211.261719 233.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.78125 227.347656 C 211.78125 227.230469 211.6875 227.136719 211.570312 227.136719 C 211.453125 227.136719 211.359375 227.230469 211.359375 227.347656 C 211.359375 227.464844 211.453125 227.558594 211.570312 227.558594 C 211.6875 227.558594 211.78125 227.464844 211.78125 227.347656 Z M 211.78125 227.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.226562 224.65625 C 211.226562 224.539062 211.132812 224.445312 211.015625 224.445312 C 210.898438 224.445312 210.804688 224.539062 210.804688 224.65625 C 210.804688 224.773438 210.898438 224.867188 211.015625 224.867188 C 211.132812 224.867188 211.226562 224.773438 211.226562 224.65625 Z M 211.226562 224.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.265625 219.632812 C 211.265625 219.515625 211.171875 219.421875 211.054688 219.421875 C 210.9375 219.421875 210.84375 219.515625 210.84375 219.632812 C 210.84375 219.75 210.9375 219.84375 211.054688 219.84375 C 211.171875 219.84375 211.265625 219.75 211.265625 219.632812 Z M 211.265625 219.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.269531 220.667969 C 208.269531 220.550781 208.175781 220.457031 208.058594 220.457031 C 207.941406 220.457031 207.847656 220.550781 207.847656 220.667969 C 207.847656 220.785156 207.941406 220.878906 208.058594 220.878906 C 208.175781 220.878906 208.269531 220.785156 208.269531 220.667969 Z M 208.269531 220.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.09375 225.757812 C 206.09375 225.640625 206 225.546875 205.882812 225.546875 C 205.765625 225.546875 205.671875 225.640625 205.671875 225.757812 C 205.671875 225.875 205.765625 225.96875 205.882812 225.96875 C 206 225.96875 206.09375 225.875 206.09375 225.757812 Z M 206.09375 225.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.59375 227.171875 C 211.59375 227.054688 211.5 226.960938 211.382812 226.960938 C 211.265625 226.960938 211.171875 227.054688 211.171875 227.171875 C 211.171875 227.289062 211.265625 227.382812 211.382812 227.382812 C 211.5 227.382812 211.59375 227.289062 211.59375 227.171875 Z M 211.59375 227.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.273438 229.558594 C 214.273438 229.441406 214.179688 229.347656 214.0625 229.347656 C 213.945312 229.347656 213.851562 229.441406 213.851562 229.558594 C 213.851562 229.675781 213.945312 229.769531 214.0625 229.769531 C 214.179688 229.769531 214.273438 229.675781 214.273438 229.558594 Z M 214.273438 229.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.835938 230.871094 C 213.835938 230.753906 213.742188 230.660156 213.625 230.660156 C 213.507812 230.660156 213.414062 230.753906 213.414062 230.871094 C 213.414062 230.988281 213.507812 231.082031 213.625 231.082031 C 213.742188 231.082031 213.835938 230.988281 213.835938 230.871094 Z M 213.835938 230.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.433594 230.125 C 212.433594 230.007812 212.339844 229.914062 212.222656 229.914062 C 212.105469 229.914062 212.011719 230.007812 212.011719 230.125 C 212.011719 230.242188 212.105469 230.335938 212.222656 230.335938 C 212.339844 230.335938 212.433594 230.242188 212.433594 230.125 Z M 212.433594 230.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.582031 228.976562 C 214.582031 228.859375 214.488281 228.765625 214.371094 228.765625 C 214.253906 228.765625 214.160156 228.859375 214.160156 228.976562 C 214.160156 229.09375 214.253906 229.1875 214.371094 229.1875 C 214.488281 229.1875 214.582031 229.09375 214.582031 228.976562 Z M 214.582031 228.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.765625 229.550781 C 212.765625 229.433594 212.671875 229.339844 212.554688 229.339844 C 212.4375 229.339844 212.34375 229.433594 212.34375 229.550781 C 212.34375 229.667969 212.4375 229.761719 212.554688 229.761719 C 212.671875 229.761719 212.765625 229.667969 212.765625 229.550781 Z M 212.765625 229.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.570312 231.355469 C 212.570312 231.238281 212.476562 231.144531 212.359375 231.144531 C 212.242188 231.144531 212.148438 231.238281 212.148438 231.355469 C 212.148438 231.472656 212.242188 231.566406 212.359375 231.566406 C 212.476562 231.566406 212.570312 231.472656 212.570312 231.355469 Z M 212.570312 231.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.210938 232.945312 C 213.210938 232.828125 213.117188 232.734375 213 232.734375 C 212.882812 232.734375 212.789062 232.828125 212.789062 232.945312 C 212.789062 233.0625 212.882812 233.15625 213 233.15625 C 213.117188 233.15625 213.210938 233.0625 213.210938 232.945312 Z M 213.210938 232.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.410156 235.835938 C 213.410156 235.71875 213.316406 235.625 213.199219 235.625 C 213.082031 235.625 212.988281 235.71875 212.988281 235.835938 C 212.988281 235.953125 213.082031 236.046875 213.199219 236.046875 C 213.316406 236.046875 213.410156 235.953125 213.410156 235.835938 Z M 213.410156 235.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.734375 235.96875 C 213.734375 235.851562 213.640625 235.757812 213.523438 235.757812 C 213.40625 235.757812 213.3125 235.851562 213.3125 235.96875 C 213.3125 236.085938 213.40625 236.179688 213.523438 236.179688 C 213.640625 236.179688 213.734375 236.085938 213.734375 235.96875 Z M 213.734375 235.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.6875 238.335938 C 221.6875 238.21875 221.59375 238.125 221.476562 238.125 C 221.359375 238.125 221.265625 238.21875 221.265625 238.335938 C 221.265625 238.453125 221.359375 238.546875 221.476562 238.546875 C 221.59375 238.546875 221.6875 238.453125 221.6875 238.335938 Z M 221.6875 238.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 220.4375 240.890625 C 220.4375 240.773438 220.34375 240.679688 220.226562 240.679688 C 220.109375 240.679688 220.015625 240.773438 220.015625 240.890625 C 220.015625 241.007812 220.109375 241.101562 220.226562 241.101562 C 220.34375 241.101562 220.4375 241.007812 220.4375 240.890625 Z M 220.4375 240.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 220.933594 242.226562 C 220.933594 242.109375 220.839844 242.015625 220.722656 242.015625 C 220.605469 242.015625 220.511719 242.109375 220.511719 242.226562 C 220.511719 242.34375 220.605469 242.4375 220.722656 242.4375 C 220.839844 242.4375 220.933594 242.34375 220.933594 242.226562 Z M 220.933594 242.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.886719 244.453125 C 217.886719 244.335938 217.792969 244.242188 217.675781 244.242188 C 217.558594 244.242188 217.464844 244.335938 217.464844 244.453125 C 217.464844 244.570312 217.558594 244.664062 217.675781 244.664062 C 217.792969 244.664062 217.886719 244.570312 217.886719 244.453125 Z M 217.886719 244.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 220.707031 245.160156 C 220.707031 245.042969 220.613281 244.949219 220.496094 244.949219 C 220.378906 244.949219 220.285156 245.042969 220.285156 245.160156 C 220.285156 245.277344 220.378906 245.371094 220.496094 245.371094 C 220.613281 245.371094 220.707031 245.277344 220.707031 245.160156 Z M 220.707031 245.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.464844 248.703125 C 218.464844 248.585938 218.371094 248.492188 218.253906 248.492188 C 218.136719 248.492188 218.042969 248.585938 218.042969 248.703125 C 218.042969 248.820312 218.136719 248.914062 218.253906 248.914062 C 218.371094 248.914062 218.464844 248.820312 218.464844 248.703125 Z M 218.464844 248.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.199219 251.519531 C 218.199219 251.402344 218.105469 251.308594 217.988281 251.308594 C 217.871094 251.308594 217.777344 251.402344 217.777344 251.519531 C 217.777344 251.636719 217.871094 251.730469 217.988281 251.730469 C 218.105469 251.730469 218.199219 251.636719 218.199219 251.519531 Z M 218.199219 251.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.691406 249.8125 C 215.691406 249.695312 215.597656 249.601562 215.480469 249.601562 C 215.363281 249.601562 215.269531 249.695312 215.269531 249.8125 C 215.269531 249.929688 215.363281 250.023438 215.480469 250.023438 C 215.597656 250.023438 215.691406 249.929688 215.691406 249.8125 Z M 215.691406 249.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.78125 249.492188 C 216.78125 249.375 216.6875 249.28125 216.570312 249.28125 C 216.453125 249.28125 216.359375 249.375 216.359375 249.492188 C 216.359375 249.609375 216.453125 249.703125 216.570312 249.703125 C 216.6875 249.703125 216.78125 249.609375 216.78125 249.492188 Z M 216.78125 249.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.125 246.113281 C 217.125 245.996094 217.03125 245.902344 216.914062 245.902344 C 216.796875 245.902344 216.703125 245.996094 216.703125 246.113281 C 216.703125 246.230469 216.796875 246.324219 216.914062 246.324219 C 217.03125 246.324219 217.125 246.230469 217.125 246.113281 Z M 217.125 246.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.648438 246.433594 C 216.648438 246.316406 216.554688 246.222656 216.4375 246.222656 C 216.320312 246.222656 216.226562 246.316406 216.226562 246.433594 C 216.226562 246.550781 216.320312 246.644531 216.4375 246.644531 C 216.554688 246.644531 216.648438 246.550781 216.648438 246.433594 Z M 216.648438 246.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.042969 242.773438 C 218.042969 242.65625 217.949219 242.5625 217.832031 242.5625 C 217.714844 242.5625 217.621094 242.65625 217.621094 242.773438 C 217.621094 242.890625 217.714844 242.984375 217.832031 242.984375 C 217.949219 242.984375 218.042969 242.890625 218.042969 242.773438 Z M 218.042969 242.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.417969 241.660156 C 218.417969 241.542969 218.324219 241.449219 218.207031 241.449219 C 218.089844 241.449219 217.996094 241.542969 217.996094 241.660156 C 217.996094 241.777344 218.089844 241.871094 218.207031 241.871094 C 218.324219 241.871094 218.417969 241.777344 218.417969 241.660156 Z M 218.417969 241.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.242188 242.535156 C 219.242188 242.417969 219.148438 242.324219 219.03125 242.324219 C 218.914062 242.324219 218.820312 242.417969 218.820312 242.535156 C 218.820312 242.652344 218.914062 242.746094 219.03125 242.746094 C 219.148438 242.746094 219.242188 242.652344 219.242188 242.535156 Z M 219.242188 242.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.550781 240.664062 C 218.550781 240.546875 218.457031 240.453125 218.339844 240.453125 C 218.222656 240.453125 218.128906 240.546875 218.128906 240.664062 C 218.128906 240.78125 218.222656 240.875 218.339844 240.875 C 218.457031 240.875 218.550781 240.78125 218.550781 240.664062 Z M 218.550781 240.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.789062 239.652344 C 218.789062 239.535156 218.695312 239.441406 218.578125 239.441406 C 218.460938 239.441406 218.367188 239.535156 218.367188 239.652344 C 218.367188 239.769531 218.460938 239.863281 218.578125 239.863281 C 218.695312 239.863281 218.789062 239.769531 218.789062 239.652344 Z M 218.789062 239.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 220.515625 242.273438 C 220.515625 242.15625 220.421875 242.0625 220.304688 242.0625 C 220.1875 242.0625 220.09375 242.15625 220.09375 242.273438 C 220.09375 242.390625 220.1875 242.484375 220.304688 242.484375 C 220.421875 242.484375 220.515625 242.390625 220.515625 242.273438 Z M 220.515625 242.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 220.882812 241.367188 C 220.882812 241.25 220.789062 241.15625 220.671875 241.15625 C 220.554688 241.15625 220.460938 241.25 220.460938 241.367188 C 220.460938 241.484375 220.554688 241.578125 220.671875 241.578125 C 220.789062 241.578125 220.882812 241.484375 220.882812 241.367188 Z M 220.882812 241.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.730469 240.320312 C 219.730469 240.203125 219.636719 240.109375 219.519531 240.109375 C 219.402344 240.109375 219.308594 240.203125 219.308594 240.320312 C 219.308594 240.4375 219.402344 240.53125 219.519531 240.53125 C 219.636719 240.53125 219.730469 240.4375 219.730469 240.320312 Z M 219.730469 240.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.957031 239.640625 C 219.957031 239.523438 219.863281 239.429688 219.746094 239.429688 C 219.628906 239.429688 219.535156 239.523438 219.535156 239.640625 C 219.535156 239.757812 219.628906 239.851562 219.746094 239.851562 C 219.863281 239.851562 219.957031 239.757812 219.957031 239.640625 Z M 219.957031 239.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.625 237.082031 C 217.625 236.964844 217.53125 236.871094 217.414062 236.871094 C 217.296875 236.871094 217.203125 236.964844 217.203125 237.082031 C 217.203125 237.199219 217.296875 237.292969 217.414062 237.292969 C 217.53125 237.292969 217.625 237.199219 217.625 237.082031 Z M 217.625 237.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.976562 243.261719 C 216.976562 243.144531 216.882812 243.050781 216.765625 243.050781 C 216.648438 243.050781 216.554688 243.144531 216.554688 243.261719 C 216.554688 243.378906 216.648438 243.472656 216.765625 243.472656 C 216.882812 243.472656 216.976562 243.378906 216.976562 243.261719 Z M 216.976562 243.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.988281 245.179688 C 219.988281 245.0625 219.894531 244.96875 219.777344 244.96875 C 219.660156 244.96875 219.566406 245.0625 219.566406 245.179688 C 219.566406 245.296875 219.660156 245.390625 219.777344 245.390625 C 219.894531 245.390625 219.988281 245.296875 219.988281 245.179688 Z M 219.988281 245.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.789062 243.210938 C 218.789062 243.09375 218.695312 243 218.578125 243 C 218.460938 243 218.367188 243.09375 218.367188 243.210938 C 218.367188 243.328125 218.460938 243.421875 218.578125 243.421875 C 218.695312 243.421875 218.789062 243.328125 218.789062 243.210938 Z M 218.789062 243.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 220.027344 245.21875 C 220.027344 245.101562 219.933594 245.007812 219.816406 245.007812 C 219.699219 245.007812 219.605469 245.101562 219.605469 245.21875 C 219.605469 245.335938 219.699219 245.429688 219.816406 245.429688 C 219.933594 245.429688 220.027344 245.335938 220.027344 245.21875 Z M 220.027344 245.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.398438 245.957031 C 218.398438 245.839844 218.304688 245.746094 218.1875 245.746094 C 218.070312 245.746094 217.976562 245.839844 217.976562 245.957031 C 217.976562 246.074219 218.070312 246.167969 218.1875 246.167969 C 218.304688 246.167969 218.398438 246.074219 218.398438 245.957031 Z M 218.398438 245.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.195312 241.691406 C 217.195312 241.574219 217.101562 241.480469 216.984375 241.480469 C 216.867188 241.480469 216.773438 241.574219 216.773438 241.691406 C 216.773438 241.808594 216.867188 241.902344 216.984375 241.902344 C 217.101562 241.902344 217.195312 241.808594 217.195312 241.691406 Z M 217.195312 241.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.992188 240.296875 C 213.992188 240.179688 213.898438 240.085938 213.78125 240.085938 C 213.664062 240.085938 213.570312 240.179688 213.570312 240.296875 C 213.570312 240.414062 213.664062 240.507812 213.78125 240.507812 C 213.898438 240.507812 213.992188 240.414062 213.992188 240.296875 Z M 213.992188 240.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.878906 247.019531 C 217.878906 246.902344 217.785156 246.808594 217.667969 246.808594 C 217.550781 246.808594 217.457031 246.902344 217.457031 247.019531 C 217.457031 247.136719 217.550781 247.230469 217.667969 247.230469 C 217.785156 247.230469 217.878906 247.136719 217.878906 247.019531 Z M 217.878906 247.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.828125 250.40625 C 216.828125 250.289062 216.734375 250.195312 216.617188 250.195312 C 216.5 250.195312 216.40625 250.289062 216.40625 250.40625 C 216.40625 250.523438 216.5 250.617188 216.617188 250.617188 C 216.734375 250.617188 216.828125 250.523438 216.828125 250.40625 Z M 216.828125 250.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.121094 251.996094 C 216.121094 251.878906 216.027344 251.785156 215.910156 251.785156 C 215.792969 251.785156 215.699219 251.878906 215.699219 251.996094 C 215.699219 252.113281 215.792969 252.207031 215.910156 252.207031 C 216.027344 252.207031 216.121094 252.113281 216.121094 251.996094 Z M 216.121094 251.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.511719 248.316406 C 218.511719 248.199219 218.417969 248.105469 218.300781 248.105469 C 218.183594 248.105469 218.089844 248.199219 218.089844 248.316406 C 218.089844 248.433594 218.183594 248.527344 218.300781 248.527344 C 218.417969 248.527344 218.511719 248.433594 218.511719 248.316406 Z M 218.511719 248.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.484375 250.183594 C 219.484375 250.066406 219.390625 249.972656 219.273438 249.972656 C 219.15625 249.972656 219.0625 250.066406 219.0625 250.183594 C 219.0625 250.300781 219.15625 250.394531 219.273438 250.394531 C 219.390625 250.394531 219.484375 250.300781 219.484375 250.183594 Z M 219.484375 250.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 220.984375 253.445312 C 220.984375 253.328125 220.890625 253.234375 220.773438 253.234375 C 220.65625 253.234375 220.5625 253.328125 220.5625 253.445312 C 220.5625 253.5625 220.65625 253.65625 220.773438 253.65625 C 220.890625 253.65625 220.984375 253.5625 220.984375 253.445312 Z M 220.984375 253.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.964844 251.832031 C 218.964844 251.714844 218.871094 251.621094 218.753906 251.621094 C 218.636719 251.621094 218.542969 251.714844 218.542969 251.832031 C 218.542969 251.949219 218.636719 252.042969 218.753906 252.042969 C 218.871094 252.042969 218.964844 251.949219 218.964844 251.832031 Z M 218.964844 251.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218 253.625 C 218 253.507812 217.90625 253.414062 217.789062 253.414062 C 217.671875 253.414062 217.578125 253.507812 217.578125 253.625 C 217.578125 253.742188 217.671875 253.835938 217.789062 253.835938 C 217.90625 253.835938 218 253.742188 218 253.625 Z M 218 253.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.289062 252.785156 C 218.289062 252.667969 218.195312 252.574219 218.078125 252.574219 C 217.960938 252.574219 217.867188 252.667969 217.867188 252.785156 C 217.867188 252.902344 217.960938 252.996094 218.078125 252.996094 C 218.195312 252.996094 218.289062 252.902344 218.289062 252.785156 Z M 218.289062 252.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.515625 250.019531 C 217.515625 249.902344 217.421875 249.808594 217.304688 249.808594 C 217.1875 249.808594 217.09375 249.902344 217.09375 250.019531 C 217.09375 250.136719 217.1875 250.230469 217.304688 250.230469 C 217.421875 250.230469 217.515625 250.136719 217.515625 250.019531 Z M 217.515625 250.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.660156 251.992188 C 214.660156 251.875 214.566406 251.78125 214.449219 251.78125 C 214.332031 251.78125 214.238281 251.875 214.238281 251.992188 C 214.238281 252.109375 214.332031 252.203125 214.449219 252.203125 C 214.566406 252.203125 214.660156 252.109375 214.660156 251.992188 Z M 214.660156 251.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.730469 250.917969 C 212.730469 250.800781 212.636719 250.707031 212.519531 250.707031 C 212.402344 250.707031 212.308594 250.800781 212.308594 250.917969 C 212.308594 251.035156 212.402344 251.128906 212.519531 251.128906 C 212.636719 251.128906 212.730469 251.035156 212.730469 250.917969 Z M 212.730469 250.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.683594 248.882812 C 213.683594 248.765625 213.589844 248.671875 213.472656 248.671875 C 213.355469 248.671875 213.261719 248.765625 213.261719 248.882812 C 213.261719 249 213.355469 249.09375 213.472656 249.09375 C 213.589844 249.09375 213.683594 249 213.683594 248.882812 Z M 213.683594 248.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.203125 248.71875 C 216.203125 248.601562 216.109375 248.507812 215.992188 248.507812 C 215.875 248.507812 215.78125 248.601562 215.78125 248.71875 C 215.78125 248.835938 215.875 248.929688 215.992188 248.929688 C 216.109375 248.929688 216.203125 248.835938 216.203125 248.71875 Z M 216.203125 248.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.445312 250.132812 C 216.445312 250.015625 216.351562 249.921875 216.234375 249.921875 C 216.117188 249.921875 216.023438 250.015625 216.023438 250.132812 C 216.023438 250.25 216.117188 250.34375 216.234375 250.34375 C 216.351562 250.34375 216.445312 250.25 216.445312 250.132812 Z M 216.445312 250.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.742188 249.710938 C 217.742188 249.59375 217.648438 249.5 217.53125 249.5 C 217.414062 249.5 217.320312 249.59375 217.320312 249.710938 C 217.320312 249.828125 217.414062 249.921875 217.53125 249.921875 C 217.648438 249.921875 217.742188 249.828125 217.742188 249.710938 Z M 217.742188 249.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.554688 247.230469 C 214.554688 247.113281 214.460938 247.019531 214.34375 247.019531 C 214.226562 247.019531 214.132812 247.113281 214.132812 247.230469 C 214.132812 247.347656 214.226562 247.441406 214.34375 247.441406 C 214.460938 247.441406 214.554688 247.347656 214.554688 247.230469 Z M 214.554688 247.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.492188 250.550781 C 211.492188 250.433594 211.398438 250.339844 211.28125 250.339844 C 211.164062 250.339844 211.070312 250.433594 211.070312 250.550781 C 211.070312 250.667969 211.164062 250.761719 211.28125 250.761719 C 211.398438 250.761719 211.492188 250.667969 211.492188 250.550781 Z M 211.492188 250.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.324219 249.671875 C 210.324219 249.554688 210.230469 249.460938 210.113281 249.460938 C 209.996094 249.460938 209.902344 249.554688 209.902344 249.671875 C 209.902344 249.789062 209.996094 249.882812 210.113281 249.882812 C 210.230469 249.882812 210.324219 249.789062 210.324219 249.671875 Z M 210.324219 249.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.511719 249.980469 C 208.511719 249.863281 208.417969 249.769531 208.300781 249.769531 C 208.183594 249.769531 208.089844 249.863281 208.089844 249.980469 C 208.089844 250.097656 208.183594 250.191406 208.300781 250.191406 C 208.417969 250.191406 208.511719 250.097656 208.511719 249.980469 Z M 208.511719 249.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.691406 241.988281 C 211.691406 241.871094 211.597656 241.777344 211.480469 241.777344 C 211.363281 241.777344 211.269531 241.871094 211.269531 241.988281 C 211.269531 242.105469 211.363281 242.199219 211.480469 242.199219 C 211.597656 242.199219 211.691406 242.105469 211.691406 241.988281 Z M 211.691406 241.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.550781 244.707031 C 211.550781 244.589844 211.457031 244.496094 211.339844 244.496094 C 211.222656 244.496094 211.128906 244.589844 211.128906 244.707031 C 211.128906 244.824219 211.222656 244.917969 211.339844 244.917969 C 211.457031 244.917969 211.550781 244.824219 211.550781 244.707031 Z M 211.550781 244.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.289062 240.207031 C 214.289062 240.089844 214.195312 239.996094 214.078125 239.996094 C 213.960938 239.996094 213.867188 240.089844 213.867188 240.207031 C 213.867188 240.324219 213.960938 240.417969 214.078125 240.417969 C 214.195312 240.417969 214.289062 240.324219 214.289062 240.207031 Z M 214.289062 240.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.691406 238.144531 C 214.691406 238.027344 214.597656 237.933594 214.480469 237.933594 C 214.363281 237.933594 214.269531 238.027344 214.269531 238.144531 C 214.269531 238.261719 214.363281 238.355469 214.480469 238.355469 C 214.597656 238.355469 214.691406 238.261719 214.691406 238.144531 Z M 214.691406 238.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.757812 238.703125 C 214.757812 238.585938 214.664062 238.492188 214.546875 238.492188 C 214.429688 238.492188 214.335938 238.585938 214.335938 238.703125 C 214.335938 238.820312 214.429688 238.914062 214.546875 238.914062 C 214.664062 238.914062 214.757812 238.820312 214.757812 238.703125 Z M 214.757812 238.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.011719 239.683594 C 215.011719 239.566406 214.917969 239.472656 214.800781 239.472656 C 214.683594 239.472656 214.589844 239.566406 214.589844 239.683594 C 214.589844 239.800781 214.683594 239.894531 214.800781 239.894531 C 214.917969 239.894531 215.011719 239.800781 215.011719 239.683594 Z M 215.011719 239.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.980469 242.570312 C 211.980469 242.453125 211.886719 242.359375 211.769531 242.359375 C 211.652344 242.359375 211.558594 242.453125 211.558594 242.570312 C 211.558594 242.6875 211.652344 242.78125 211.769531 242.78125 C 211.886719 242.78125 211.980469 242.6875 211.980469 242.570312 Z M 211.980469 242.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.539062 241.882812 C 207.539062 241.765625 207.445312 241.671875 207.328125 241.671875 C 207.210938 241.671875 207.117188 241.765625 207.117188 241.882812 C 207.117188 242 207.210938 242.09375 207.328125 242.09375 C 207.445312 242.09375 207.539062 242 207.539062 241.882812 Z M 207.539062 241.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.394531 236.199219 C 206.394531 236.082031 206.300781 235.988281 206.183594 235.988281 C 206.066406 235.988281 205.972656 236.082031 205.972656 236.199219 C 205.972656 236.316406 206.066406 236.410156 206.183594 236.410156 C 206.300781 236.410156 206.394531 236.316406 206.394531 236.199219 Z M 206.394531 236.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.71875 237.332031 C 206.71875 237.214844 206.625 237.121094 206.507812 237.121094 C 206.390625 237.121094 206.296875 237.214844 206.296875 237.332031 C 206.296875 237.449219 206.390625 237.542969 206.507812 237.542969 C 206.625 237.542969 206.71875 237.449219 206.71875 237.332031 Z M 206.71875 237.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.460938 238.914062 C 209.460938 238.796875 209.367188 238.703125 209.25 238.703125 C 209.132812 238.703125 209.039062 238.796875 209.039062 238.914062 C 209.039062 239.03125 209.132812 239.125 209.25 239.125 C 209.367188 239.125 209.460938 239.03125 209.460938 238.914062 Z M 209.460938 238.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206 237.929688 C 206 237.8125 205.90625 237.71875 205.789062 237.71875 C 205.671875 237.71875 205.578125 237.8125 205.578125 237.929688 C 205.578125 238.046875 205.671875 238.140625 205.789062 238.140625 C 205.90625 238.140625 206 238.046875 206 237.929688 Z M 206 237.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.960938 238.171875 C 204.960938 238.054688 204.867188 237.960938 204.75 237.960938 C 204.632812 237.960938 204.539062 238.054688 204.539062 238.171875 C 204.539062 238.289062 204.632812 238.382812 204.75 238.382812 C 204.867188 238.382812 204.960938 238.289062 204.960938 238.171875 Z M 204.960938 238.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.496094 237.824219 C 203.496094 237.707031 203.402344 237.613281 203.285156 237.613281 C 203.167969 237.613281 203.074219 237.707031 203.074219 237.824219 C 203.074219 237.941406 203.167969 238.035156 203.285156 238.035156 C 203.402344 238.035156 203.496094 237.941406 203.496094 237.824219 Z M 203.496094 237.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.78125 237.621094 C 202.78125 237.503906 202.6875 237.410156 202.570312 237.410156 C 202.453125 237.410156 202.359375 237.503906 202.359375 237.621094 C 202.359375 237.738281 202.453125 237.832031 202.570312 237.832031 C 202.6875 237.832031 202.78125 237.738281 202.78125 237.621094 Z M 202.78125 237.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.578125 236.023438 C 206.578125 235.90625 206.484375 235.8125 206.367188 235.8125 C 206.25 235.8125 206.15625 235.90625 206.15625 236.023438 C 206.15625 236.140625 206.25 236.234375 206.367188 236.234375 C 206.484375 236.234375 206.578125 236.140625 206.578125 236.023438 Z M 206.578125 236.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.726562 235.996094 C 205.726562 235.878906 205.632812 235.785156 205.515625 235.785156 C 205.398438 235.785156 205.304688 235.878906 205.304688 235.996094 C 205.304688 236.113281 205.398438 236.207031 205.515625 236.207031 C 205.632812 236.207031 205.726562 236.113281 205.726562 235.996094 Z M 205.726562 235.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.972656 233.550781 C 204.972656 233.433594 204.878906 233.339844 204.761719 233.339844 C 204.644531 233.339844 204.550781 233.433594 204.550781 233.550781 C 204.550781 233.667969 204.644531 233.761719 204.761719 233.761719 C 204.878906 233.761719 204.972656 233.667969 204.972656 233.550781 Z M 204.972656 233.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.078125 235.722656 C 200.078125 235.605469 199.984375 235.511719 199.867188 235.511719 C 199.75 235.511719 199.65625 235.605469 199.65625 235.722656 C 199.65625 235.839844 199.75 235.933594 199.867188 235.933594 C 199.984375 235.933594 200.078125 235.839844 200.078125 235.722656 Z M 200.078125 235.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.890625 232.667969 C 196.890625 232.550781 196.796875 232.457031 196.679688 232.457031 C 196.5625 232.457031 196.46875 232.550781 196.46875 232.667969 C 196.46875 232.785156 196.5625 232.878906 196.679688 232.878906 C 196.796875 232.878906 196.890625 232.785156 196.890625 232.667969 Z M 196.890625 232.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.472656 234.1875 C 193.472656 234.070312 193.378906 233.976562 193.261719 233.976562 C 193.144531 233.976562 193.050781 234.070312 193.050781 234.1875 C 193.050781 234.304688 193.144531 234.398438 193.261719 234.398438 C 193.378906 234.398438 193.472656 234.304688 193.472656 234.1875 Z M 193.472656 234.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.484375 231.054688 C 193.484375 230.9375 193.390625 230.84375 193.273438 230.84375 C 193.15625 230.84375 193.0625 230.9375 193.0625 231.054688 C 193.0625 231.171875 193.15625 231.265625 193.273438 231.265625 C 193.390625 231.265625 193.484375 231.171875 193.484375 231.054688 Z M 193.484375 231.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.191406 231.890625 C 194.191406 231.773438 194.097656 231.679688 193.980469 231.679688 C 193.863281 231.679688 193.769531 231.773438 193.769531 231.890625 C 193.769531 232.007812 193.863281 232.101562 193.980469 232.101562 C 194.097656 232.101562 194.191406 232.007812 194.191406 231.890625 Z M 194.191406 231.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.972656 231.902344 C 199.972656 231.785156 199.878906 231.691406 199.761719 231.691406 C 199.644531 231.691406 199.550781 231.785156 199.550781 231.902344 C 199.550781 232.019531 199.644531 232.113281 199.761719 232.113281 C 199.878906 232.113281 199.972656 232.019531 199.972656 231.902344 Z M 199.972656 231.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.382812 226.457031 C 199.382812 226.339844 199.289062 226.246094 199.171875 226.246094 C 199.054688 226.246094 198.960938 226.339844 198.960938 226.457031 C 198.960938 226.574219 199.054688 226.667969 199.171875 226.667969 C 199.289062 226.667969 199.382812 226.574219 199.382812 226.457031 Z M 199.382812 226.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.414062 227.917969 C 201.414062 227.800781 201.320312 227.707031 201.203125 227.707031 C 201.085938 227.707031 200.992188 227.800781 200.992188 227.917969 C 200.992188 228.035156 201.085938 228.128906 201.203125 228.128906 C 201.320312 228.128906 201.414062 228.035156 201.414062 227.917969 Z M 201.414062 227.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.179688 231.652344 C 200.179688 231.535156 200.085938 231.441406 199.96875 231.441406 C 199.851562 231.441406 199.757812 231.535156 199.757812 231.652344 C 199.757812 231.769531 199.851562 231.863281 199.96875 231.863281 C 200.085938 231.863281 200.179688 231.769531 200.179688 231.652344 Z M 200.179688 231.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.554688 232.765625 C 199.554688 232.648438 199.460938 232.554688 199.34375 232.554688 C 199.226562 232.554688 199.132812 232.648438 199.132812 232.765625 C 199.132812 232.882812 199.226562 232.976562 199.34375 232.976562 C 199.460938 232.976562 199.554688 232.882812 199.554688 232.765625 Z M 199.554688 232.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.984375 234.464844 C 202.984375 234.347656 202.890625 234.253906 202.773438 234.253906 C 202.65625 234.253906 202.5625 234.347656 202.5625 234.464844 C 202.5625 234.582031 202.65625 234.675781 202.773438 234.675781 C 202.890625 234.675781 202.984375 234.582031 202.984375 234.464844 Z M 202.984375 234.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.824219 234.429688 C 201.824219 234.3125 201.730469 234.21875 201.613281 234.21875 C 201.496094 234.21875 201.402344 234.3125 201.402344 234.429688 C 201.402344 234.546875 201.496094 234.640625 201.613281 234.640625 C 201.730469 234.640625 201.824219 234.546875 201.824219 234.429688 Z M 201.824219 234.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.25 233.613281 C 201.25 233.496094 201.15625 233.402344 201.039062 233.402344 C 200.921875 233.402344 200.828125 233.496094 200.828125 233.613281 C 200.828125 233.730469 200.921875 233.824219 201.039062 233.824219 C 201.15625 233.824219 201.25 233.730469 201.25 233.613281 Z M 201.25 233.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.894531 229.652344 C 202.894531 229.535156 202.800781 229.441406 202.683594 229.441406 C 202.566406 229.441406 202.472656 229.535156 202.472656 229.652344 C 202.472656 229.769531 202.566406 229.863281 202.683594 229.863281 C 202.800781 229.863281 202.894531 229.769531 202.894531 229.652344 Z M 202.894531 229.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.660156 229.613281 C 204.660156 229.496094 204.566406 229.402344 204.449219 229.402344 C 204.332031 229.402344 204.238281 229.496094 204.238281 229.613281 C 204.238281 229.730469 204.332031 229.824219 204.449219 229.824219 C 204.566406 229.824219 204.660156 229.730469 204.660156 229.613281 Z M 204.660156 229.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.992188 233.945312 C 204.992188 233.828125 204.898438 233.734375 204.78125 233.734375 C 204.664062 233.734375 204.570312 233.828125 204.570312 233.945312 C 204.570312 234.0625 204.664062 234.15625 204.78125 234.15625 C 204.898438 234.15625 204.992188 234.0625 204.992188 233.945312 Z M 204.992188 233.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.898438 231.695312 C 206.898438 231.578125 206.804688 231.484375 206.6875 231.484375 C 206.570312 231.484375 206.476562 231.578125 206.476562 231.695312 C 206.476562 231.8125 206.570312 231.90625 206.6875 231.90625 C 206.804688 231.90625 206.898438 231.8125 206.898438 231.695312 Z M 206.898438 231.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.984375 235.574219 C 205.984375 235.457031 205.890625 235.363281 205.773438 235.363281 C 205.65625 235.363281 205.5625 235.457031 205.5625 235.574219 C 205.5625 235.691406 205.65625 235.785156 205.773438 235.785156 C 205.890625 235.785156 205.984375 235.691406 205.984375 235.574219 Z M 205.984375 235.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.648438 233.441406 C 205.648438 233.324219 205.554688 233.230469 205.4375 233.230469 C 205.320312 233.230469 205.226562 233.324219 205.226562 233.441406 C 205.226562 233.558594 205.320312 233.652344 205.4375 233.652344 C 205.554688 233.652344 205.648438 233.558594 205.648438 233.441406 Z M 205.648438 233.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.410156 236.027344 C 208.410156 235.910156 208.316406 235.816406 208.199219 235.816406 C 208.082031 235.816406 207.988281 235.910156 207.988281 236.027344 C 207.988281 236.144531 208.082031 236.238281 208.199219 236.238281 C 208.316406 236.238281 208.410156 236.144531 208.410156 236.027344 Z M 208.410156 236.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.992188 239.054688 C 211.992188 238.9375 211.898438 238.84375 211.78125 238.84375 C 211.664062 238.84375 211.570312 238.9375 211.570312 239.054688 C 211.570312 239.171875 211.664062 239.265625 211.78125 239.265625 C 211.898438 239.265625 211.992188 239.171875 211.992188 239.054688 Z M 211.992188 239.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.046875 236.925781 C 215.046875 236.808594 214.953125 236.714844 214.835938 236.714844 C 214.71875 236.714844 214.625 236.808594 214.625 236.925781 C 214.625 237.042969 214.71875 237.136719 214.835938 237.136719 C 214.953125 237.136719 215.046875 237.042969 215.046875 236.925781 Z M 215.046875 236.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.972656 237.011719 C 213.972656 236.894531 213.878906 236.800781 213.761719 236.800781 C 213.644531 236.800781 213.550781 236.894531 213.550781 237.011719 C 213.550781 237.128906 213.644531 237.222656 213.761719 237.222656 C 213.878906 237.222656 213.972656 237.128906 213.972656 237.011719 Z M 213.972656 237.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.007812 236.699219 C 216.007812 236.582031 215.914062 236.488281 215.796875 236.488281 C 215.679688 236.488281 215.585938 236.582031 215.585938 236.699219 C 215.585938 236.816406 215.679688 236.910156 215.796875 236.910156 C 215.914062 236.910156 216.007812 236.816406 216.007812 236.699219 Z M 216.007812 236.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.46875 232.011719 C 217.46875 231.894531 217.375 231.800781 217.257812 231.800781 C 217.140625 231.800781 217.046875 231.894531 217.046875 232.011719 C 217.046875 232.128906 217.140625 232.222656 217.257812 232.222656 C 217.375 232.222656 217.46875 232.128906 217.46875 232.011719 Z M 217.46875 232.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.980469 230.6875 C 219.980469 230.570312 219.886719 230.476562 219.769531 230.476562 C 219.652344 230.476562 219.558594 230.570312 219.558594 230.6875 C 219.558594 230.804688 219.652344 230.898438 219.769531 230.898438 C 219.886719 230.898438 219.980469 230.804688 219.980469 230.6875 Z M 219.980469 230.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.679688 232.441406 C 219.679688 232.324219 219.585938 232.230469 219.46875 232.230469 C 219.351562 232.230469 219.257812 232.324219 219.257812 232.441406 C 219.257812 232.558594 219.351562 232.652344 219.46875 232.652344 C 219.585938 232.652344 219.679688 232.558594 219.679688 232.441406 Z M 219.679688 232.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.054688 232.84375 C 219.054688 232.726562 218.960938 232.632812 218.84375 232.632812 C 218.726562 232.632812 218.632812 232.726562 218.632812 232.84375 C 218.632812 232.960938 218.726562 233.054688 218.84375 233.054688 C 218.960938 233.054688 219.054688 232.960938 219.054688 232.84375 Z M 219.054688 232.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.660156 231.910156 C 214.660156 231.792969 214.566406 231.699219 214.449219 231.699219 C 214.332031 231.699219 214.238281 231.792969 214.238281 231.910156 C 214.238281 232.027344 214.332031 232.121094 214.449219 232.121094 C 214.566406 232.121094 214.660156 232.027344 214.660156 231.910156 Z M 214.660156 231.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.5625 232.105469 C 212.5625 231.988281 212.46875 231.894531 212.351562 231.894531 C 212.234375 231.894531 212.140625 231.988281 212.140625 232.105469 C 212.140625 232.222656 212.234375 232.316406 212.351562 232.316406 C 212.46875 232.316406 212.5625 232.222656 212.5625 232.105469 Z M 212.5625 232.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.085938 229.945312 C 212.085938 229.828125 211.992188 229.734375 211.875 229.734375 C 211.757812 229.734375 211.664062 229.828125 211.664062 229.945312 C 211.664062 230.0625 211.757812 230.15625 211.875 230.15625 C 211.992188 230.15625 212.085938 230.0625 212.085938 229.945312 Z M 212.085938 229.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.558594 227.859375 C 211.558594 227.742188 211.464844 227.648438 211.347656 227.648438 C 211.230469 227.648438 211.136719 227.742188 211.136719 227.859375 C 211.136719 227.976562 211.230469 228.070312 211.347656 228.070312 C 211.464844 228.070312 211.558594 227.976562 211.558594 227.859375 Z M 211.558594 227.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.800781 231.105469 C 209.800781 230.988281 209.707031 230.894531 209.589844 230.894531 C 209.472656 230.894531 209.378906 230.988281 209.378906 231.105469 C 209.378906 231.222656 209.472656 231.316406 209.589844 231.316406 C 209.707031 231.316406 209.800781 231.222656 209.800781 231.105469 Z M 209.800781 231.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.835938 229.117188 C 208.835938 229 208.742188 228.90625 208.625 228.90625 C 208.507812 228.90625 208.414062 229 208.414062 229.117188 C 208.414062 229.234375 208.507812 229.328125 208.625 229.328125 C 208.742188 229.328125 208.835938 229.234375 208.835938 229.117188 Z M 208.835938 229.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.960938 229.832031 C 208.960938 229.714844 208.867188 229.621094 208.75 229.621094 C 208.632812 229.621094 208.539062 229.714844 208.539062 229.832031 C 208.539062 229.949219 208.632812 230.042969 208.75 230.042969 C 208.867188 230.042969 208.960938 229.949219 208.960938 229.832031 Z M 208.960938 229.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.917969 230.722656 C 207.917969 230.605469 207.824219 230.511719 207.707031 230.511719 C 207.589844 230.511719 207.496094 230.605469 207.496094 230.722656 C 207.496094 230.839844 207.589844 230.933594 207.707031 230.933594 C 207.824219 230.933594 207.917969 230.839844 207.917969 230.722656 Z M 207.917969 230.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.738281 232.195312 C 208.738281 232.078125 208.644531 231.984375 208.527344 231.984375 C 208.410156 231.984375 208.316406 232.078125 208.316406 232.195312 C 208.316406 232.3125 208.410156 232.40625 208.527344 232.40625 C 208.644531 232.40625 208.738281 232.3125 208.738281 232.195312 Z M 208.738281 232.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.90625 229.996094 C 207.90625 229.878906 207.8125 229.785156 207.695312 229.785156 C 207.578125 229.785156 207.484375 229.878906 207.484375 229.996094 C 207.484375 230.113281 207.578125 230.207031 207.695312 230.207031 C 207.8125 230.207031 207.90625 230.113281 207.90625 229.996094 Z M 207.90625 229.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.640625 224.640625 C 205.640625 224.523438 205.546875 224.429688 205.429688 224.429688 C 205.3125 224.429688 205.21875 224.523438 205.21875 224.640625 C 205.21875 224.757812 205.3125 224.851562 205.429688 224.851562 C 205.546875 224.851562 205.640625 224.757812 205.640625 224.640625 Z M 205.640625 224.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.257812 228.246094 C 205.257812 228.128906 205.164062 228.035156 205.046875 228.035156 C 204.929688 228.035156 204.835938 228.128906 204.835938 228.246094 C 204.835938 228.363281 204.929688 228.457031 205.046875 228.457031 C 205.164062 228.457031 205.257812 228.363281 205.257812 228.246094 Z M 205.257812 228.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.242188 226.640625 C 205.242188 226.523438 205.148438 226.429688 205.03125 226.429688 C 204.914062 226.429688 204.820312 226.523438 204.820312 226.640625 C 204.820312 226.757812 204.914062 226.851562 205.03125 226.851562 C 205.148438 226.851562 205.242188 226.757812 205.242188 226.640625 Z M 205.242188 226.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.871094 227.363281 C 203.871094 227.246094 203.777344 227.152344 203.660156 227.152344 C 203.542969 227.152344 203.449219 227.246094 203.449219 227.363281 C 203.449219 227.480469 203.542969 227.574219 203.660156 227.574219 C 203.777344 227.574219 203.871094 227.480469 203.871094 227.363281 Z M 203.871094 227.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.875 227.035156 C 202.875 226.917969 202.78125 226.824219 202.664062 226.824219 C 202.546875 226.824219 202.453125 226.917969 202.453125 227.035156 C 202.453125 227.152344 202.546875 227.246094 202.664062 227.246094 C 202.78125 227.246094 202.875 227.152344 202.875 227.035156 Z M 202.875 227.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.300781 224.367188 C 201.300781 224.25 201.207031 224.15625 201.089844 224.15625 C 200.972656 224.15625 200.878906 224.25 200.878906 224.367188 C 200.878906 224.484375 200.972656 224.578125 201.089844 224.578125 C 201.207031 224.578125 201.300781 224.484375 201.300781 224.367188 Z M 201.300781 224.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.4375 224.148438 C 201.4375 224.03125 201.34375 223.9375 201.226562 223.9375 C 201.109375 223.9375 201.015625 224.03125 201.015625 224.148438 C 201.015625 224.265625 201.109375 224.359375 201.226562 224.359375 C 201.34375 224.359375 201.4375 224.265625 201.4375 224.148438 Z M 201.4375 224.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.167969 227.308594 C 203.167969 227.191406 203.074219 227.097656 202.957031 227.097656 C 202.839844 227.097656 202.746094 227.191406 202.746094 227.308594 C 202.746094 227.425781 202.839844 227.519531 202.957031 227.519531 C 203.074219 227.519531 203.167969 227.425781 203.167969 227.308594 Z M 203.167969 227.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.726562 226.488281 C 203.726562 226.371094 203.632812 226.277344 203.515625 226.277344 C 203.398438 226.277344 203.304688 226.371094 203.304688 226.488281 C 203.304688 226.605469 203.398438 226.699219 203.515625 226.699219 C 203.632812 226.699219 203.726562 226.605469 203.726562 226.488281 Z M 203.726562 226.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.183594 219.300781 C 202.183594 219.183594 202.089844 219.089844 201.972656 219.089844 C 201.855469 219.089844 201.761719 219.183594 201.761719 219.300781 C 201.761719 219.417969 201.855469 219.511719 201.972656 219.511719 C 202.089844 219.511719 202.183594 219.417969 202.183594 219.300781 Z M 202.183594 219.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.617188 220.0625 C 203.617188 219.945312 203.523438 219.851562 203.40625 219.851562 C 203.289062 219.851562 203.195312 219.945312 203.195312 220.0625 C 203.195312 220.179688 203.289062 220.273438 203.40625 220.273438 C 203.523438 220.273438 203.617188 220.179688 203.617188 220.0625 Z M 203.617188 220.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.710938 221.382812 C 200.710938 221.265625 200.617188 221.171875 200.5 221.171875 C 200.382812 221.171875 200.289062 221.265625 200.289062 221.382812 C 200.289062 221.5 200.382812 221.59375 200.5 221.59375 C 200.617188 221.59375 200.710938 221.5 200.710938 221.382812 Z M 200.710938 221.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.355469 220.007812 C 199.355469 219.890625 199.261719 219.796875 199.144531 219.796875 C 199.027344 219.796875 198.933594 219.890625 198.933594 220.007812 C 198.933594 220.125 199.027344 220.21875 199.144531 220.21875 C 199.261719 220.21875 199.355469 220.125 199.355469 220.007812 Z M 199.355469 220.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.492188 221.902344 C 198.492188 221.785156 198.398438 221.691406 198.28125 221.691406 C 198.164062 221.691406 198.070312 221.785156 198.070312 221.902344 C 198.070312 222.019531 198.164062 222.113281 198.28125 222.113281 C 198.398438 222.113281 198.492188 222.019531 198.492188 221.902344 Z M 198.492188 221.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.765625 219.605469 C 199.765625 219.488281 199.671875 219.394531 199.554688 219.394531 C 199.4375 219.394531 199.34375 219.488281 199.34375 219.605469 C 199.34375 219.722656 199.4375 219.816406 199.554688 219.816406 C 199.671875 219.816406 199.765625 219.722656 199.765625 219.605469 Z M 199.765625 219.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.023438 220.125 C 199.023438 220.007812 198.929688 219.914062 198.8125 219.914062 C 198.695312 219.914062 198.601562 220.007812 198.601562 220.125 C 198.601562 220.242188 198.695312 220.335938 198.8125 220.335938 C 198.929688 220.335938 199.023438 220.242188 199.023438 220.125 Z M 199.023438 220.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.386719 218.601562 C 198.386719 218.484375 198.292969 218.390625 198.175781 218.390625 C 198.058594 218.390625 197.964844 218.484375 197.964844 218.601562 C 197.964844 218.71875 198.058594 218.8125 198.175781 218.8125 C 198.292969 218.8125 198.386719 218.71875 198.386719 218.601562 Z M 198.386719 218.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.804688 219.589844 C 197.804688 219.472656 197.710938 219.378906 197.59375 219.378906 C 197.476562 219.378906 197.382812 219.472656 197.382812 219.589844 C 197.382812 219.707031 197.476562 219.800781 197.59375 219.800781 C 197.710938 219.800781 197.804688 219.707031 197.804688 219.589844 Z M 197.804688 219.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.941406 218.046875 C 196.941406 217.929688 196.847656 217.835938 196.730469 217.835938 C 196.613281 217.835938 196.519531 217.929688 196.519531 218.046875 C 196.519531 218.164062 196.613281 218.257812 196.730469 218.257812 C 196.847656 218.257812 196.941406 218.164062 196.941406 218.046875 Z M 196.941406 218.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.976562 218.394531 C 194.976562 218.277344 194.882812 218.183594 194.765625 218.183594 C 194.648438 218.183594 194.554688 218.277344 194.554688 218.394531 C 194.554688 218.511719 194.648438 218.605469 194.765625 218.605469 C 194.882812 218.605469 194.976562 218.511719 194.976562 218.394531 Z M 194.976562 218.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.089844 220.402344 C 194.089844 220.285156 193.996094 220.191406 193.878906 220.191406 C 193.761719 220.191406 193.667969 220.285156 193.667969 220.402344 C 193.667969 220.519531 193.761719 220.613281 193.878906 220.613281 C 193.996094 220.613281 194.089844 220.519531 194.089844 220.402344 Z M 194.089844 220.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.554688 221.871094 C 196.554688 221.753906 196.460938 221.660156 196.34375 221.660156 C 196.226562 221.660156 196.132812 221.753906 196.132812 221.871094 C 196.132812 221.988281 196.226562 222.082031 196.34375 222.082031 C 196.460938 222.082031 196.554688 221.988281 196.554688 221.871094 Z M 196.554688 221.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.835938 224.179688 C 196.835938 224.0625 196.742188 223.96875 196.625 223.96875 C 196.507812 223.96875 196.414062 224.0625 196.414062 224.179688 C 196.414062 224.296875 196.507812 224.390625 196.625 224.390625 C 196.742188 224.390625 196.835938 224.296875 196.835938 224.179688 Z M 196.835938 224.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.496094 226.242188 C 194.496094 226.125 194.402344 226.03125 194.285156 226.03125 C 194.167969 226.03125 194.074219 226.125 194.074219 226.242188 C 194.074219 226.359375 194.167969 226.453125 194.285156 226.453125 C 194.402344 226.453125 194.496094 226.359375 194.496094 226.242188 Z M 194.496094 226.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.761719 222.066406 C 196.761719 221.949219 196.667969 221.855469 196.550781 221.855469 C 196.433594 221.855469 196.339844 221.949219 196.339844 222.066406 C 196.339844 222.183594 196.433594 222.277344 196.550781 222.277344 C 196.667969 222.277344 196.761719 222.183594 196.761719 222.066406 Z M 196.761719 222.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.128906 220.613281 C 198.128906 220.496094 198.035156 220.402344 197.917969 220.402344 C 197.800781 220.402344 197.707031 220.496094 197.707031 220.613281 C 197.707031 220.730469 197.800781 220.824219 197.917969 220.824219 C 198.035156 220.824219 198.128906 220.730469 198.128906 220.613281 Z M 198.128906 220.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.480469 219.613281 C 198.480469 219.496094 198.386719 219.402344 198.269531 219.402344 C 198.152344 219.402344 198.058594 219.496094 198.058594 219.613281 C 198.058594 219.730469 198.152344 219.824219 198.269531 219.824219 C 198.386719 219.824219 198.480469 219.730469 198.480469 219.613281 Z M 198.480469 219.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.695312 219.5625 C 199.695312 219.445312 199.601562 219.351562 199.484375 219.351562 C 199.367188 219.351562 199.273438 219.445312 199.273438 219.5625 C 199.273438 219.679688 199.367188 219.773438 199.484375 219.773438 C 199.601562 219.773438 199.695312 219.679688 199.695312 219.5625 Z M 199.695312 219.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.886719 220.539062 C 198.886719 220.421875 198.792969 220.328125 198.675781 220.328125 C 198.558594 220.328125 198.464844 220.421875 198.464844 220.539062 C 198.464844 220.65625 198.558594 220.75 198.675781 220.75 C 198.792969 220.75 198.886719 220.65625 198.886719 220.539062 Z M 198.886719 220.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.148438 220.488281 C 200.148438 220.371094 200.054688 220.277344 199.9375 220.277344 C 199.820312 220.277344 199.726562 220.371094 199.726562 220.488281 C 199.726562 220.605469 199.820312 220.699219 199.9375 220.699219 C 200.054688 220.699219 200.148438 220.605469 200.148438 220.488281 Z M 200.148438 220.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.546875 217.15625 C 201.546875 217.039062 201.453125 216.945312 201.335938 216.945312 C 201.21875 216.945312 201.125 217.039062 201.125 217.15625 C 201.125 217.273438 201.21875 217.367188 201.335938 217.367188 C 201.453125 217.367188 201.546875 217.273438 201.546875 217.15625 Z M 201.546875 217.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.710938 217.734375 C 202.710938 217.617188 202.617188 217.523438 202.5 217.523438 C 202.382812 217.523438 202.289062 217.617188 202.289062 217.734375 C 202.289062 217.851562 202.382812 217.945312 202.5 217.945312 C 202.617188 217.945312 202.710938 217.851562 202.710938 217.734375 Z M 202.710938 217.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.277344 215.628906 C 203.277344 215.511719 203.183594 215.417969 203.066406 215.417969 C 202.949219 215.417969 202.855469 215.511719 202.855469 215.628906 C 202.855469 215.746094 202.949219 215.839844 203.066406 215.839844 C 203.183594 215.839844 203.277344 215.746094 203.277344 215.628906 Z M 203.277344 215.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.46875 215.210938 C 199.46875 215.09375 199.375 215 199.257812 215 C 199.140625 215 199.046875 215.09375 199.046875 215.210938 C 199.046875 215.328125 199.140625 215.421875 199.257812 215.421875 C 199.375 215.421875 199.46875 215.328125 199.46875 215.210938 Z M 199.46875 215.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.304688 214.210938 C 197.304688 214.09375 197.210938 214 197.09375 214 C 196.976562 214 196.882812 214.09375 196.882812 214.210938 C 196.882812 214.328125 196.976562 214.421875 197.09375 214.421875 C 197.210938 214.421875 197.304688 214.328125 197.304688 214.210938 Z M 197.304688 214.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.625 210.023438 C 193.625 209.90625 193.53125 209.8125 193.414062 209.8125 C 193.296875 209.8125 193.203125 209.90625 193.203125 210.023438 C 193.203125 210.140625 193.296875 210.234375 193.414062 210.234375 C 193.53125 210.234375 193.625 210.140625 193.625 210.023438 Z M 193.625 210.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.746094 209.363281 C 192.746094 209.246094 192.652344 209.152344 192.535156 209.152344 C 192.417969 209.152344 192.324219 209.246094 192.324219 209.363281 C 192.324219 209.480469 192.417969 209.574219 192.535156 209.574219 C 192.652344 209.574219 192.746094 209.480469 192.746094 209.363281 Z M 192.746094 209.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.738281 211.367188 C 189.738281 211.25 189.644531 211.15625 189.527344 211.15625 C 189.410156 211.15625 189.316406 211.25 189.316406 211.367188 C 189.316406 211.484375 189.410156 211.578125 189.527344 211.578125 C 189.644531 211.578125 189.738281 211.484375 189.738281 211.367188 Z M 189.738281 211.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.253906 214.28125 C 189.253906 214.164062 189.160156 214.070312 189.042969 214.070312 C 188.925781 214.070312 188.832031 214.164062 188.832031 214.28125 C 188.832031 214.398438 188.925781 214.492188 189.042969 214.492188 C 189.160156 214.492188 189.253906 214.398438 189.253906 214.28125 Z M 189.253906 214.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.269531 215.875 C 189.269531 215.757812 189.175781 215.664062 189.058594 215.664062 C 188.941406 215.664062 188.847656 215.757812 188.847656 215.875 C 188.847656 215.992188 188.941406 216.085938 189.058594 216.085938 C 189.175781 216.085938 189.269531 215.992188 189.269531 215.875 Z M 189.269531 215.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.851562 212.105469 C 188.851562 211.988281 188.757812 211.894531 188.640625 211.894531 C 188.523438 211.894531 188.429688 211.988281 188.429688 212.105469 C 188.429688 212.222656 188.523438 212.316406 188.640625 212.316406 C 188.757812 212.316406 188.851562 212.222656 188.851562 212.105469 Z M 188.851562 212.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.878906 211.339844 C 185.878906 211.222656 185.785156 211.128906 185.667969 211.128906 C 185.550781 211.128906 185.457031 211.222656 185.457031 211.339844 C 185.457031 211.457031 185.550781 211.550781 185.667969 211.550781 C 185.785156 211.550781 185.878906 211.457031 185.878906 211.339844 Z M 185.878906 211.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.441406 204.820312 C 184.441406 204.703125 184.347656 204.609375 184.230469 204.609375 C 184.113281 204.609375 184.019531 204.703125 184.019531 204.820312 C 184.019531 204.9375 184.113281 205.03125 184.230469 205.03125 C 184.347656 205.03125 184.441406 204.9375 184.441406 204.820312 Z M 184.441406 204.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.515625 207.367188 C 185.515625 207.25 185.421875 207.15625 185.304688 207.15625 C 185.1875 207.15625 185.09375 207.25 185.09375 207.367188 C 185.09375 207.484375 185.1875 207.578125 185.304688 207.578125 C 185.421875 207.578125 185.515625 207.484375 185.515625 207.367188 Z M 185.515625 207.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.449219 204.320312 C 185.449219 204.203125 185.355469 204.109375 185.238281 204.109375 C 185.121094 204.109375 185.027344 204.203125 185.027344 204.320312 C 185.027344 204.4375 185.121094 204.53125 185.238281 204.53125 C 185.355469 204.53125 185.449219 204.4375 185.449219 204.320312 Z M 185.449219 204.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.757812 204.929688 C 189.757812 204.8125 189.664062 204.71875 189.546875 204.71875 C 189.429688 204.71875 189.335938 204.8125 189.335938 204.929688 C 189.335938 205.046875 189.429688 205.140625 189.546875 205.140625 C 189.664062 205.140625 189.757812 205.046875 189.757812 204.929688 Z M 189.757812 204.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.367188 208.175781 C 184.367188 208.058594 184.273438 207.964844 184.15625 207.964844 C 184.039062 207.964844 183.945312 208.058594 183.945312 208.175781 C 183.945312 208.292969 184.039062 208.386719 184.15625 208.386719 C 184.273438 208.386719 184.367188 208.292969 184.367188 208.175781 Z M 184.367188 208.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.144531 205.726562 C 186.144531 205.609375 186.050781 205.515625 185.933594 205.515625 C 185.816406 205.515625 185.722656 205.609375 185.722656 205.726562 C 185.722656 205.84375 185.816406 205.9375 185.933594 205.9375 C 186.050781 205.9375 186.144531 205.84375 186.144531 205.726562 Z M 186.144531 205.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.886719 204.773438 C 186.886719 204.65625 186.792969 204.5625 186.675781 204.5625 C 186.558594 204.5625 186.464844 204.65625 186.464844 204.773438 C 186.464844 204.890625 186.558594 204.984375 186.675781 204.984375 C 186.792969 204.984375 186.886719 204.890625 186.886719 204.773438 Z M 186.886719 204.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.925781 205.214844 C 187.925781 205.097656 187.832031 205.003906 187.714844 205.003906 C 187.597656 205.003906 187.503906 205.097656 187.503906 205.214844 C 187.503906 205.332031 187.597656 205.425781 187.714844 205.425781 C 187.832031 205.425781 187.925781 205.332031 187.925781 205.214844 Z M 187.925781 205.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.828125 205.398438 C 184.828125 205.28125 184.734375 205.1875 184.617188 205.1875 C 184.5 205.1875 184.40625 205.28125 184.40625 205.398438 C 184.40625 205.515625 184.5 205.609375 184.617188 205.609375 C 184.734375 205.609375 184.828125 205.515625 184.828125 205.398438 Z M 184.828125 205.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.867188 201.765625 C 188.867188 201.648438 188.773438 201.554688 188.65625 201.554688 C 188.539062 201.554688 188.445312 201.648438 188.445312 201.765625 C 188.445312 201.882812 188.539062 201.976562 188.65625 201.976562 C 188.773438 201.976562 188.867188 201.882812 188.867188 201.765625 Z M 188.867188 201.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.734375 199.699219 C 189.734375 199.582031 189.640625 199.488281 189.523438 199.488281 C 189.40625 199.488281 189.3125 199.582031 189.3125 199.699219 C 189.3125 199.816406 189.40625 199.910156 189.523438 199.910156 C 189.640625 199.910156 189.734375 199.816406 189.734375 199.699219 Z M 189.734375 199.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.292969 196.902344 C 190.292969 196.785156 190.199219 196.691406 190.082031 196.691406 C 189.964844 196.691406 189.871094 196.785156 189.871094 196.902344 C 189.871094 197.019531 189.964844 197.113281 190.082031 197.113281 C 190.199219 197.113281 190.292969 197.019531 190.292969 196.902344 Z M 190.292969 196.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.84375 195.871094 C 190.84375 195.753906 190.75 195.660156 190.632812 195.660156 C 190.515625 195.660156 190.421875 195.753906 190.421875 195.871094 C 190.421875 195.988281 190.515625 196.082031 190.632812 196.082031 C 190.75 196.082031 190.84375 195.988281 190.84375 195.871094 Z M 190.84375 195.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.96875 197.332031 C 190.96875 197.214844 190.875 197.121094 190.757812 197.121094 C 190.640625 197.121094 190.546875 197.214844 190.546875 197.332031 C 190.546875 197.449219 190.640625 197.542969 190.757812 197.542969 C 190.875 197.542969 190.96875 197.449219 190.96875 197.332031 Z M 190.96875 197.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.164062 198.121094 C 188.164062 198.003906 188.070312 197.910156 187.953125 197.910156 C 187.835938 197.910156 187.742188 198.003906 187.742188 198.121094 C 187.742188 198.238281 187.835938 198.332031 187.953125 198.332031 C 188.070312 198.332031 188.164062 198.238281 188.164062 198.121094 Z M 188.164062 198.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.910156 198.230469 C 189.910156 198.113281 189.816406 198.019531 189.699219 198.019531 C 189.582031 198.019531 189.488281 198.113281 189.488281 198.230469 C 189.488281 198.347656 189.582031 198.441406 189.699219 198.441406 C 189.816406 198.441406 189.910156 198.347656 189.910156 198.230469 Z M 189.910156 198.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.070312 197.78125 C 193.070312 197.664062 192.976562 197.570312 192.859375 197.570312 C 192.742188 197.570312 192.648438 197.664062 192.648438 197.78125 C 192.648438 197.898438 192.742188 197.992188 192.859375 197.992188 C 192.976562 197.992188 193.070312 197.898438 193.070312 197.78125 Z M 193.070312 197.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.890625 196.925781 C 193.890625 196.808594 193.796875 196.714844 193.679688 196.714844 C 193.5625 196.714844 193.46875 196.808594 193.46875 196.925781 C 193.46875 197.042969 193.5625 197.136719 193.679688 197.136719 C 193.796875 197.136719 193.890625 197.042969 193.890625 196.925781 Z M 193.890625 196.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.046875 197.785156 C 195.046875 197.667969 194.953125 197.574219 194.835938 197.574219 C 194.71875 197.574219 194.625 197.667969 194.625 197.785156 C 194.625 197.902344 194.71875 197.996094 194.835938 197.996094 C 194.953125 197.996094 195.046875 197.902344 195.046875 197.785156 Z M 195.046875 197.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.195312 196.742188 C 198.195312 196.625 198.101562 196.53125 197.984375 196.53125 C 197.867188 196.53125 197.773438 196.625 197.773438 196.742188 C 197.773438 196.859375 197.867188 196.953125 197.984375 196.953125 C 198.101562 196.953125 198.195312 196.859375 198.195312 196.742188 Z M 198.195312 196.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.238281 197.96875 C 194.238281 197.851562 194.144531 197.757812 194.027344 197.757812 C 193.910156 197.757812 193.816406 197.851562 193.816406 197.96875 C 193.816406 198.085938 193.910156 198.179688 194.027344 198.179688 C 194.144531 198.179688 194.238281 198.085938 194.238281 197.96875 Z M 194.238281 197.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.710938 197.800781 C 192.710938 197.683594 192.617188 197.589844 192.5 197.589844 C 192.382812 197.589844 192.289062 197.683594 192.289062 197.800781 C 192.289062 197.917969 192.382812 198.011719 192.5 198.011719 C 192.617188 198.011719 192.710938 197.917969 192.710938 197.800781 Z M 192.710938 197.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.253906 199.660156 C 195.253906 199.542969 195.160156 199.449219 195.042969 199.449219 C 194.925781 199.449219 194.832031 199.542969 194.832031 199.660156 C 194.832031 199.777344 194.925781 199.871094 195.042969 199.871094 C 195.160156 199.871094 195.253906 199.777344 195.253906 199.660156 Z M 195.253906 199.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.734375 196.359375 C 192.734375 196.242188 192.640625 196.148438 192.523438 196.148438 C 192.40625 196.148438 192.3125 196.242188 192.3125 196.359375 C 192.3125 196.476562 192.40625 196.570312 192.523438 196.570312 C 192.640625 196.570312 192.734375 196.476562 192.734375 196.359375 Z M 192.734375 196.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.3125 197.820312 C 194.3125 197.703125 194.21875 197.609375 194.101562 197.609375 C 193.984375 197.609375 193.890625 197.703125 193.890625 197.820312 C 193.890625 197.9375 193.984375 198.03125 194.101562 198.03125 C 194.21875 198.03125 194.3125 197.9375 194.3125 197.820312 Z M 194.3125 197.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.511719 193.820312 C 194.511719 193.703125 194.417969 193.609375 194.300781 193.609375 C 194.183594 193.609375 194.089844 193.703125 194.089844 193.820312 C 194.089844 193.9375 194.183594 194.03125 194.300781 194.03125 C 194.417969 194.03125 194.511719 193.9375 194.511719 193.820312 Z M 194.511719 193.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.894531 191.074219 C 195.894531 190.957031 195.800781 190.863281 195.683594 190.863281 C 195.566406 190.863281 195.472656 190.957031 195.472656 191.074219 C 195.472656 191.191406 195.566406 191.285156 195.683594 191.285156 C 195.800781 191.285156 195.894531 191.191406 195.894531 191.074219 Z M 195.894531 191.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.882812 189.789062 C 197.882812 189.671875 197.789062 189.578125 197.671875 189.578125 C 197.554688 189.578125 197.460938 189.671875 197.460938 189.789062 C 197.460938 189.90625 197.554688 190 197.671875 190 C 197.789062 190 197.882812 189.90625 197.882812 189.789062 Z M 197.882812 189.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.824219 188.722656 C 194.824219 188.605469 194.730469 188.511719 194.613281 188.511719 C 194.496094 188.511719 194.402344 188.605469 194.402344 188.722656 C 194.402344 188.839844 194.496094 188.933594 194.613281 188.933594 C 194.730469 188.933594 194.824219 188.839844 194.824219 188.722656 Z M 194.824219 188.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.78125 188.574219 C 198.78125 188.457031 198.6875 188.363281 198.570312 188.363281 C 198.453125 188.363281 198.359375 188.457031 198.359375 188.574219 C 198.359375 188.691406 198.453125 188.785156 198.570312 188.785156 C 198.6875 188.785156 198.78125 188.691406 198.78125 188.574219 Z M 198.78125 188.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.167969 184.984375 C 196.167969 184.867188 196.074219 184.773438 195.957031 184.773438 C 195.839844 184.773438 195.746094 184.867188 195.746094 184.984375 C 195.746094 185.101562 195.839844 185.195312 195.957031 185.195312 C 196.074219 185.195312 196.167969 185.101562 196.167969 184.984375 Z M 196.167969 184.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.789062 184.472656 C 194.789062 184.355469 194.695312 184.261719 194.578125 184.261719 C 194.460938 184.261719 194.367188 184.355469 194.367188 184.472656 C 194.367188 184.589844 194.460938 184.683594 194.578125 184.683594 C 194.695312 184.683594 194.789062 184.589844 194.789062 184.472656 Z M 194.789062 184.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.035156 183.804688 C 194.035156 183.6875 193.941406 183.59375 193.824219 183.59375 C 193.707031 183.59375 193.613281 183.6875 193.613281 183.804688 C 193.613281 183.921875 193.707031 184.015625 193.824219 184.015625 C 193.941406 184.015625 194.035156 183.921875 194.035156 183.804688 Z M 194.035156 183.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.757812 184.132812 C 197.757812 184.015625 197.664062 183.921875 197.546875 183.921875 C 197.429688 183.921875 197.335938 184.015625 197.335938 184.132812 C 197.335938 184.25 197.429688 184.34375 197.546875 184.34375 C 197.664062 184.34375 197.757812 184.25 197.757812 184.132812 Z M 197.757812 184.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.6875 186.53125 C 199.6875 186.414062 199.59375 186.320312 199.476562 186.320312 C 199.359375 186.320312 199.265625 186.414062 199.265625 186.53125 C 199.265625 186.648438 199.359375 186.742188 199.476562 186.742188 C 199.59375 186.742188 199.6875 186.648438 199.6875 186.53125 Z M 199.6875 186.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.3125 187.0625 C 197.3125 186.945312 197.21875 186.851562 197.101562 186.851562 C 196.984375 186.851562 196.890625 186.945312 196.890625 187.0625 C 196.890625 187.179688 196.984375 187.273438 197.101562 187.273438 C 197.21875 187.273438 197.3125 187.179688 197.3125 187.0625 Z M 197.3125 187.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.75 188.53125 C 200.75 188.414062 200.65625 188.320312 200.539062 188.320312 C 200.421875 188.320312 200.328125 188.414062 200.328125 188.53125 C 200.328125 188.648438 200.421875 188.742188 200.539062 188.742188 C 200.65625 188.742188 200.75 188.648438 200.75 188.53125 Z M 200.75 188.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.753906 185.578125 C 197.753906 185.460938 197.660156 185.367188 197.542969 185.367188 C 197.425781 185.367188 197.332031 185.460938 197.332031 185.578125 C 197.332031 185.695312 197.425781 185.789062 197.542969 185.789062 C 197.660156 185.789062 197.753906 185.695312 197.753906 185.578125 Z M 197.753906 185.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.269531 183.074219 C 197.269531 182.957031 197.175781 182.863281 197.058594 182.863281 C 196.941406 182.863281 196.847656 182.957031 196.847656 183.074219 C 196.847656 183.191406 196.941406 183.285156 197.058594 183.285156 C 197.175781 183.285156 197.269531 183.191406 197.269531 183.074219 Z M 197.269531 183.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.386719 185.171875 C 198.386719 185.054688 198.292969 184.960938 198.175781 184.960938 C 198.058594 184.960938 197.964844 185.054688 197.964844 185.171875 C 197.964844 185.289062 198.058594 185.382812 198.175781 185.382812 C 198.292969 185.382812 198.386719 185.289062 198.386719 185.171875 Z M 198.386719 185.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.351562 187.496094 C 199.351562 187.378906 199.257812 187.285156 199.140625 187.285156 C 199.023438 187.285156 198.929688 187.378906 198.929688 187.496094 C 198.929688 187.613281 199.023438 187.707031 199.140625 187.707031 C 199.257812 187.707031 199.351562 187.613281 199.351562 187.496094 Z M 199.351562 187.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.414062 189.570312 C 196.414062 189.453125 196.320312 189.359375 196.203125 189.359375 C 196.085938 189.359375 195.992188 189.453125 195.992188 189.570312 C 195.992188 189.6875 196.085938 189.78125 196.203125 189.78125 C 196.320312 189.78125 196.414062 189.6875 196.414062 189.570312 Z M 196.414062 189.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.523438 187.28125 C 194.523438 187.164062 194.429688 187.070312 194.3125 187.070312 C 194.195312 187.070312 194.101562 187.164062 194.101562 187.28125 C 194.101562 187.398438 194.195312 187.492188 194.3125 187.492188 C 194.429688 187.492188 194.523438 187.398438 194.523438 187.28125 Z M 194.523438 187.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.183594 185.332031 C 197.183594 185.214844 197.089844 185.121094 196.972656 185.121094 C 196.855469 185.121094 196.761719 185.214844 196.761719 185.332031 C 196.761719 185.449219 196.855469 185.542969 196.972656 185.542969 C 197.089844 185.542969 197.183594 185.449219 197.183594 185.332031 Z M 197.183594 185.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.738281 183.292969 C 195.738281 183.175781 195.644531 183.082031 195.527344 183.082031 C 195.410156 183.082031 195.316406 183.175781 195.316406 183.292969 C 195.316406 183.410156 195.410156 183.503906 195.527344 183.503906 C 195.644531 183.503906 195.738281 183.410156 195.738281 183.292969 Z M 195.738281 183.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.769531 180.460938 C 193.769531 180.34375 193.675781 180.25 193.558594 180.25 C 193.441406 180.25 193.347656 180.34375 193.347656 180.460938 C 193.347656 180.578125 193.441406 180.671875 193.558594 180.671875 C 193.675781 180.671875 193.769531 180.578125 193.769531 180.460938 Z M 193.769531 180.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.453125 177.730469 C 194.453125 177.613281 194.359375 177.519531 194.242188 177.519531 C 194.125 177.519531 194.03125 177.613281 194.03125 177.730469 C 194.03125 177.847656 194.125 177.941406 194.242188 177.941406 C 194.359375 177.941406 194.453125 177.847656 194.453125 177.730469 Z M 194.453125 177.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.726562 179.125 C 195.726562 179.007812 195.632812 178.914062 195.515625 178.914062 C 195.398438 178.914062 195.304688 179.007812 195.304688 179.125 C 195.304688 179.242188 195.398438 179.335938 195.515625 179.335938 C 195.632812 179.335938 195.726562 179.242188 195.726562 179.125 Z M 195.726562 179.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.519531 180.921875 C 196.519531 180.804688 196.425781 180.710938 196.308594 180.710938 C 196.191406 180.710938 196.097656 180.804688 196.097656 180.921875 C 196.097656 181.039062 196.191406 181.132812 196.308594 181.132812 C 196.425781 181.132812 196.519531 181.039062 196.519531 180.921875 Z M 196.519531 180.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.378906 185.085938 C 196.378906 184.96875 196.285156 184.875 196.167969 184.875 C 196.050781 184.875 195.957031 184.96875 195.957031 185.085938 C 195.957031 185.203125 196.050781 185.296875 196.167969 185.296875 C 196.285156 185.296875 196.378906 185.203125 196.378906 185.085938 Z M 196.378906 185.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.921875 184.5 C 194.921875 184.382812 194.828125 184.289062 194.710938 184.289062 C 194.59375 184.289062 194.5 184.382812 194.5 184.5 C 194.5 184.617188 194.59375 184.710938 194.710938 184.710938 C 194.828125 184.710938 194.921875 184.617188 194.921875 184.5 Z M 194.921875 184.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.953125 187.191406 C 194.953125 187.074219 194.859375 186.980469 194.742188 186.980469 C 194.625 186.980469 194.53125 187.074219 194.53125 187.191406 C 194.53125 187.308594 194.625 187.402344 194.742188 187.402344 C 194.859375 187.402344 194.953125 187.308594 194.953125 187.191406 Z M 194.953125 187.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.769531 187.6875 C 195.769531 187.570312 195.675781 187.476562 195.558594 187.476562 C 195.441406 187.476562 195.347656 187.570312 195.347656 187.6875 C 195.347656 187.804688 195.441406 187.898438 195.558594 187.898438 C 195.675781 187.898438 195.769531 187.804688 195.769531 187.6875 Z M 195.769531 187.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.746094 184.003906 C 197.746094 183.886719 197.652344 183.792969 197.535156 183.792969 C 197.417969 183.792969 197.324219 183.886719 197.324219 184.003906 C 197.324219 184.121094 197.417969 184.214844 197.535156 184.214844 C 197.652344 184.214844 197.746094 184.121094 197.746094 184.003906 Z M 197.746094 184.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.1875 183.476562 C 195.1875 183.359375 195.09375 183.265625 194.976562 183.265625 C 194.859375 183.265625 194.765625 183.359375 194.765625 183.476562 C 194.765625 183.59375 194.859375 183.6875 194.976562 183.6875 C 195.09375 183.6875 195.1875 183.59375 195.1875 183.476562 Z M 195.1875 183.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.820312 184.8125 C 193.820312 184.695312 193.726562 184.601562 193.609375 184.601562 C 193.492188 184.601562 193.398438 184.695312 193.398438 184.8125 C 193.398438 184.929688 193.492188 185.023438 193.609375 185.023438 C 193.726562 185.023438 193.820312 184.929688 193.820312 184.8125 Z M 193.820312 184.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.976562 184.949219 C 195.976562 184.832031 195.882812 184.738281 195.765625 184.738281 C 195.648438 184.738281 195.554688 184.832031 195.554688 184.949219 C 195.554688 185.066406 195.648438 185.160156 195.765625 185.160156 C 195.882812 185.160156 195.976562 185.066406 195.976562 184.949219 Z M 195.976562 184.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.890625 185.484375 C 195.890625 185.367188 195.796875 185.273438 195.679688 185.273438 C 195.5625 185.273438 195.46875 185.367188 195.46875 185.484375 C 195.46875 185.601562 195.5625 185.695312 195.679688 185.695312 C 195.796875 185.695312 195.890625 185.601562 195.890625 185.484375 Z M 195.890625 185.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.042969 188.242188 C 194.042969 188.125 193.949219 188.03125 193.832031 188.03125 C 193.714844 188.03125 193.621094 188.125 193.621094 188.242188 C 193.621094 188.359375 193.714844 188.453125 193.832031 188.453125 C 193.949219 188.453125 194.042969 188.359375 194.042969 188.242188 Z M 194.042969 188.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.742188 188.699219 C 191.742188 188.582031 191.648438 188.488281 191.53125 188.488281 C 191.414062 188.488281 191.320312 188.582031 191.320312 188.699219 C 191.320312 188.816406 191.414062 188.910156 191.53125 188.910156 C 191.648438 188.910156 191.742188 188.816406 191.742188 188.699219 Z M 191.742188 188.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.441406 190.824219 C 195.441406 190.707031 195.347656 190.613281 195.230469 190.613281 C 195.113281 190.613281 195.019531 190.707031 195.019531 190.824219 C 195.019531 190.941406 195.113281 191.035156 195.230469 191.035156 C 195.347656 191.035156 195.441406 190.941406 195.441406 190.824219 Z M 195.441406 190.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.152344 192.621094 C 195.152344 192.503906 195.058594 192.410156 194.941406 192.410156 C 194.824219 192.410156 194.730469 192.503906 194.730469 192.621094 C 194.730469 192.738281 194.824219 192.832031 194.941406 192.832031 C 195.058594 192.832031 195.152344 192.738281 195.152344 192.621094 Z M 195.152344 192.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.015625 191.054688 C 195.015625 190.9375 194.921875 190.84375 194.804688 190.84375 C 194.6875 190.84375 194.59375 190.9375 194.59375 191.054688 C 194.59375 191.171875 194.6875 191.265625 194.804688 191.265625 C 194.921875 191.265625 195.015625 191.171875 195.015625 191.054688 Z M 195.015625 191.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.308594 191.253906 C 194.308594 191.136719 194.214844 191.042969 194.097656 191.042969 C 193.980469 191.042969 193.886719 191.136719 193.886719 191.253906 C 193.886719 191.371094 193.980469 191.464844 194.097656 191.464844 C 194.214844 191.464844 194.308594 191.371094 194.308594 191.253906 Z M 194.308594 191.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.949219 191.6875 C 193.949219 191.570312 193.855469 191.476562 193.738281 191.476562 C 193.621094 191.476562 193.527344 191.570312 193.527344 191.6875 C 193.527344 191.804688 193.621094 191.898438 193.738281 191.898438 C 193.855469 191.898438 193.949219 191.804688 193.949219 191.6875 Z M 193.949219 191.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.929688 192.3125 C 196.929688 192.195312 196.835938 192.101562 196.71875 192.101562 C 196.601562 192.101562 196.507812 192.195312 196.507812 192.3125 C 196.507812 192.429688 196.601562 192.523438 196.71875 192.523438 C 196.835938 192.523438 196.929688 192.429688 196.929688 192.3125 Z M 196.929688 192.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.511719 194.660156 C 193.511719 194.542969 193.417969 194.449219 193.300781 194.449219 C 193.183594 194.449219 193.089844 194.542969 193.089844 194.660156 C 193.089844 194.777344 193.183594 194.871094 193.300781 194.871094 C 193.417969 194.871094 193.511719 194.777344 193.511719 194.660156 Z M 193.511719 194.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.152344 193.691406 C 197.152344 193.574219 197.058594 193.480469 196.941406 193.480469 C 196.824219 193.480469 196.730469 193.574219 196.730469 193.691406 C 196.730469 193.808594 196.824219 193.902344 196.941406 193.902344 C 197.058594 193.902344 197.152344 193.808594 197.152344 193.691406 Z M 197.152344 193.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.964844 190.941406 C 199.964844 190.824219 199.871094 190.730469 199.753906 190.730469 C 199.636719 190.730469 199.542969 190.824219 199.542969 190.941406 C 199.542969 191.058594 199.636719 191.152344 199.753906 191.152344 C 199.871094 191.152344 199.964844 191.058594 199.964844 190.941406 Z M 199.964844 190.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.300781 192.058594 C 202.300781 191.941406 202.207031 191.847656 202.089844 191.847656 C 201.972656 191.847656 201.878906 191.941406 201.878906 192.058594 C 201.878906 192.175781 201.972656 192.269531 202.089844 192.269531 C 202.207031 192.269531 202.300781 192.175781 202.300781 192.058594 Z M 202.300781 192.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.859375 188.886719 C 202.859375 188.769531 202.765625 188.675781 202.648438 188.675781 C 202.53125 188.675781 202.4375 188.769531 202.4375 188.886719 C 202.4375 189.003906 202.53125 189.097656 202.648438 189.097656 C 202.765625 189.097656 202.859375 189.003906 202.859375 188.886719 Z M 202.859375 188.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.660156 191.59375 C 203.660156 191.476562 203.566406 191.382812 203.449219 191.382812 C 203.332031 191.382812 203.238281 191.476562 203.238281 191.59375 C 203.238281 191.710938 203.332031 191.804688 203.449219 191.804688 C 203.566406 191.804688 203.660156 191.710938 203.660156 191.59375 Z M 203.660156 191.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.820312 193.136719 C 202.820312 193.019531 202.726562 192.925781 202.609375 192.925781 C 202.492188 192.925781 202.398438 193.019531 202.398438 193.136719 C 202.398438 193.253906 202.492188 193.347656 202.609375 193.347656 C 202.726562 193.347656 202.820312 193.253906 202.820312 193.136719 Z M 202.820312 193.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.933594 192.773438 C 208.933594 192.65625 208.839844 192.5625 208.722656 192.5625 C 208.605469 192.5625 208.511719 192.65625 208.511719 192.773438 C 208.511719 192.890625 208.605469 192.984375 208.722656 192.984375 C 208.839844 192.984375 208.933594 192.890625 208.933594 192.773438 Z M 208.933594 192.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.828125 191.921875 C 210.828125 191.804688 210.734375 191.710938 210.617188 191.710938 C 210.5 191.710938 210.40625 191.804688 210.40625 191.921875 C 210.40625 192.039062 210.5 192.132812 210.617188 192.132812 C 210.734375 192.132812 210.828125 192.039062 210.828125 191.921875 Z M 210.828125 191.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.976562 192.832031 C 214.976562 192.714844 214.882812 192.621094 214.765625 192.621094 C 214.648438 192.621094 214.554688 192.714844 214.554688 192.832031 C 214.554688 192.949219 214.648438 193.042969 214.765625 193.042969 C 214.882812 193.042969 214.976562 192.949219 214.976562 192.832031 Z M 214.976562 192.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.878906 191.335938 C 215.878906 191.21875 215.785156 191.125 215.667969 191.125 C 215.550781 191.125 215.457031 191.21875 215.457031 191.335938 C 215.457031 191.453125 215.550781 191.546875 215.667969 191.546875 C 215.785156 191.546875 215.878906 191.453125 215.878906 191.335938 Z M 215.878906 191.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.425781 194.089844 C 216.425781 193.972656 216.332031 193.878906 216.214844 193.878906 C 216.097656 193.878906 216.003906 193.972656 216.003906 194.089844 C 216.003906 194.207031 216.097656 194.300781 216.214844 194.300781 C 216.332031 194.300781 216.425781 194.207031 216.425781 194.089844 Z M 216.425781 194.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.054688 193.71875 C 217.054688 193.601562 216.960938 193.507812 216.84375 193.507812 C 216.726562 193.507812 216.632812 193.601562 216.632812 193.71875 C 216.632812 193.835938 216.726562 193.929688 216.84375 193.929688 C 216.960938 193.929688 217.054688 193.835938 217.054688 193.71875 Z M 217.054688 193.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.128906 192.316406 C 214.128906 192.199219 214.035156 192.105469 213.917969 192.105469 C 213.800781 192.105469 213.707031 192.199219 213.707031 192.316406 C 213.707031 192.433594 213.800781 192.527344 213.917969 192.527344 C 214.035156 192.527344 214.128906 192.433594 214.128906 192.316406 Z M 214.128906 192.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.570312 192.308594 C 214.570312 192.191406 214.476562 192.097656 214.359375 192.097656 C 214.242188 192.097656 214.148438 192.191406 214.148438 192.308594 C 214.148438 192.425781 214.242188 192.519531 214.359375 192.519531 C 214.476562 192.519531 214.570312 192.425781 214.570312 192.308594 Z M 214.570312 192.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.539062 195.179688 C 212.539062 195.0625 212.445312 194.96875 212.328125 194.96875 C 212.210938 194.96875 212.117188 195.0625 212.117188 195.179688 C 212.117188 195.296875 212.210938 195.390625 212.328125 195.390625 C 212.445312 195.390625 212.539062 195.296875 212.539062 195.179688 Z M 212.539062 195.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.148438 194.488281 C 209.148438 194.371094 209.054688 194.277344 208.9375 194.277344 C 208.820312 194.277344 208.726562 194.371094 208.726562 194.488281 C 208.726562 194.605469 208.820312 194.699219 208.9375 194.699219 C 209.054688 194.699219 209.148438 194.605469 209.148438 194.488281 Z M 209.148438 194.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.816406 194.089844 C 213.816406 193.972656 213.722656 193.878906 213.605469 193.878906 C 213.488281 193.878906 213.394531 193.972656 213.394531 194.089844 C 213.394531 194.207031 213.488281 194.300781 213.605469 194.300781 C 213.722656 194.300781 213.816406 194.207031 213.816406 194.089844 Z M 213.816406 194.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.507812 194.386719 C 213.507812 194.269531 213.414062 194.175781 213.296875 194.175781 C 213.179688 194.175781 213.085938 194.269531 213.085938 194.386719 C 213.085938 194.503906 213.179688 194.597656 213.296875 194.597656 C 213.414062 194.597656 213.507812 194.503906 213.507812 194.386719 Z M 213.507812 194.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.421875 192.519531 C 210.421875 192.402344 210.328125 192.308594 210.210938 192.308594 C 210.09375 192.308594 210 192.402344 210 192.519531 C 210 192.636719 210.09375 192.730469 210.210938 192.730469 C 210.328125 192.730469 210.421875 192.636719 210.421875 192.519531 Z M 210.421875 192.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.25 194.574219 C 209.25 194.457031 209.15625 194.363281 209.039062 194.363281 C 208.921875 194.363281 208.828125 194.457031 208.828125 194.574219 C 208.828125 194.691406 208.921875 194.785156 209.039062 194.785156 C 209.15625 194.785156 209.25 194.691406 209.25 194.574219 Z M 209.25 194.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.804688 196.0625 C 208.804688 195.945312 208.710938 195.851562 208.59375 195.851562 C 208.476562 195.851562 208.382812 195.945312 208.382812 196.0625 C 208.382812 196.179688 208.476562 196.273438 208.59375 196.273438 C 208.710938 196.273438 208.804688 196.179688 208.804688 196.0625 Z M 208.804688 196.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.128906 197.886719 C 209.128906 197.769531 209.035156 197.675781 208.917969 197.675781 C 208.800781 197.675781 208.707031 197.769531 208.707031 197.886719 C 208.707031 198.003906 208.800781 198.097656 208.917969 198.097656 C 209.035156 198.097656 209.128906 198.003906 209.128906 197.886719 Z M 209.128906 197.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.28125 199.839844 C 209.28125 199.722656 209.1875 199.628906 209.070312 199.628906 C 208.953125 199.628906 208.859375 199.722656 208.859375 199.839844 C 208.859375 199.957031 208.953125 200.050781 209.070312 200.050781 C 209.1875 200.050781 209.28125 199.957031 209.28125 199.839844 Z M 209.28125 199.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.515625 197.984375 C 206.515625 197.867188 206.421875 197.773438 206.304688 197.773438 C 206.1875 197.773438 206.09375 197.867188 206.09375 197.984375 C 206.09375 198.101562 206.1875 198.195312 206.304688 198.195312 C 206.421875 198.195312 206.515625 198.101562 206.515625 197.984375 Z M 206.515625 197.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.953125 198.347656 C 204.953125 198.230469 204.859375 198.136719 204.742188 198.136719 C 204.625 198.136719 204.53125 198.230469 204.53125 198.347656 C 204.53125 198.464844 204.625 198.558594 204.742188 198.558594 C 204.859375 198.558594 204.953125 198.464844 204.953125 198.347656 Z M 204.953125 198.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.804688 194.253906 C 200.804688 194.136719 200.710938 194.042969 200.59375 194.042969 C 200.476562 194.042969 200.382812 194.136719 200.382812 194.253906 C 200.382812 194.371094 200.476562 194.464844 200.59375 194.464844 C 200.710938 194.464844 200.804688 194.371094 200.804688 194.253906 Z M 200.804688 194.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.3125 195.496094 C 201.3125 195.378906 201.21875 195.285156 201.101562 195.285156 C 200.984375 195.285156 200.890625 195.378906 200.890625 195.496094 C 200.890625 195.613281 200.984375 195.707031 201.101562 195.707031 C 201.21875 195.707031 201.3125 195.613281 201.3125 195.496094 Z M 201.3125 195.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.867188 194.191406 C 198.867188 194.074219 198.773438 193.980469 198.65625 193.980469 C 198.539062 193.980469 198.445312 194.074219 198.445312 194.191406 C 198.445312 194.308594 198.539062 194.402344 198.65625 194.402344 C 198.773438 194.402344 198.867188 194.308594 198.867188 194.191406 Z M 198.867188 194.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.132812 199.335938 C 200.132812 199.21875 200.039062 199.125 199.921875 199.125 C 199.804688 199.125 199.710938 199.21875 199.710938 199.335938 C 199.710938 199.453125 199.804688 199.546875 199.921875 199.546875 C 200.039062 199.546875 200.132812 199.453125 200.132812 199.335938 Z M 200.132812 199.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.929688 196.1875 C 199.929688 196.070312 199.835938 195.976562 199.71875 195.976562 C 199.601562 195.976562 199.507812 196.070312 199.507812 196.1875 C 199.507812 196.304688 199.601562 196.398438 199.71875 196.398438 C 199.835938 196.398438 199.929688 196.304688 199.929688 196.1875 Z M 199.929688 196.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.03125 195.523438 C 200.03125 195.40625 199.9375 195.3125 199.820312 195.3125 C 199.703125 195.3125 199.609375 195.40625 199.609375 195.523438 C 199.609375 195.640625 199.703125 195.734375 199.820312 195.734375 C 199.9375 195.734375 200.03125 195.640625 200.03125 195.523438 Z M 200.03125 195.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.113281 193.449219 C 198.113281 193.332031 198.019531 193.238281 197.902344 193.238281 C 197.785156 193.238281 197.691406 193.332031 197.691406 193.449219 C 197.691406 193.566406 197.785156 193.660156 197.902344 193.660156 C 198.019531 193.660156 198.113281 193.566406 198.113281 193.449219 Z M 198.113281 193.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.148438 193.863281 C 196.148438 193.746094 196.054688 193.652344 195.9375 193.652344 C 195.820312 193.652344 195.726562 193.746094 195.726562 193.863281 C 195.726562 193.980469 195.820312 194.074219 195.9375 194.074219 C 196.054688 194.074219 196.148438 193.980469 196.148438 193.863281 Z M 196.148438 193.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.546875 191.292969 C 193.546875 191.175781 193.453125 191.082031 193.335938 191.082031 C 193.21875 191.082031 193.125 191.175781 193.125 191.292969 C 193.125 191.410156 193.21875 191.503906 193.335938 191.503906 C 193.453125 191.503906 193.546875 191.410156 193.546875 191.292969 Z M 193.546875 191.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.988281 189.320312 C 191.988281 189.203125 191.894531 189.109375 191.777344 189.109375 C 191.660156 189.109375 191.566406 189.203125 191.566406 189.320312 C 191.566406 189.4375 191.660156 189.53125 191.777344 189.53125 C 191.894531 189.53125 191.988281 189.4375 191.988281 189.320312 Z M 191.988281 189.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.050781 189.691406 C 189.050781 189.574219 188.957031 189.480469 188.839844 189.480469 C 188.722656 189.480469 188.628906 189.574219 188.628906 189.691406 C 188.628906 189.808594 188.722656 189.902344 188.839844 189.902344 C 188.957031 189.902344 189.050781 189.808594 189.050781 189.691406 Z M 189.050781 189.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.066406 189.722656 C 187.066406 189.605469 186.972656 189.511719 186.855469 189.511719 C 186.738281 189.511719 186.644531 189.605469 186.644531 189.722656 C 186.644531 189.839844 186.738281 189.933594 186.855469 189.933594 C 186.972656 189.933594 187.066406 189.839844 187.066406 189.722656 Z M 187.066406 189.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.65625 187.8125 C 186.65625 187.695312 186.5625 187.601562 186.445312 187.601562 C 186.328125 187.601562 186.234375 187.695312 186.234375 187.8125 C 186.234375 187.929688 186.328125 188.023438 186.445312 188.023438 C 186.5625 188.023438 186.65625 187.929688 186.65625 187.8125 Z M 186.65625 187.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.816406 189.390625 C 184.816406 189.273438 184.722656 189.179688 184.605469 189.179688 C 184.488281 189.179688 184.394531 189.273438 184.394531 189.390625 C 184.394531 189.507812 184.488281 189.601562 184.605469 189.601562 C 184.722656 189.601562 184.816406 189.507812 184.816406 189.390625 Z M 184.816406 189.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.039062 190.796875 C 182.039062 190.679688 181.945312 190.585938 181.828125 190.585938 C 181.710938 190.585938 181.617188 190.679688 181.617188 190.796875 C 181.617188 190.914062 181.710938 191.007812 181.828125 191.007812 C 181.945312 191.007812 182.039062 190.914062 182.039062 190.796875 Z M 182.039062 190.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.675781 190.285156 C 183.675781 190.167969 183.582031 190.074219 183.464844 190.074219 C 183.347656 190.074219 183.253906 190.167969 183.253906 190.285156 C 183.253906 190.402344 183.347656 190.496094 183.464844 190.496094 C 183.582031 190.496094 183.675781 190.402344 183.675781 190.285156 Z M 183.675781 190.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.164062 187.414062 C 185.164062 187.296875 185.070312 187.203125 184.953125 187.203125 C 184.835938 187.203125 184.742188 187.296875 184.742188 187.414062 C 184.742188 187.53125 184.835938 187.625 184.953125 187.625 C 185.070312 187.625 185.164062 187.53125 185.164062 187.414062 Z M 185.164062 187.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.902344 185.265625 C 184.902344 185.148438 184.808594 185.054688 184.691406 185.054688 C 184.574219 185.054688 184.480469 185.148438 184.480469 185.265625 C 184.480469 185.382812 184.574219 185.476562 184.691406 185.476562 C 184.808594 185.476562 184.902344 185.382812 184.902344 185.265625 Z M 184.902344 185.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.816406 187.707031 C 185.816406 187.589844 185.722656 187.496094 185.605469 187.496094 C 185.488281 187.496094 185.394531 187.589844 185.394531 187.707031 C 185.394531 187.824219 185.488281 187.917969 185.605469 187.917969 C 185.722656 187.917969 185.816406 187.824219 185.816406 187.707031 Z M 185.816406 187.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.347656 191.222656 C 185.347656 191.105469 185.253906 191.011719 185.136719 191.011719 C 185.019531 191.011719 184.925781 191.105469 184.925781 191.222656 C 184.925781 191.339844 185.019531 191.433594 185.136719 191.433594 C 185.253906 191.433594 185.347656 191.339844 185.347656 191.222656 Z M 185.347656 191.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.226562 192.984375 C 185.226562 192.867188 185.132812 192.773438 185.015625 192.773438 C 184.898438 192.773438 184.804688 192.867188 184.804688 192.984375 C 184.804688 193.101562 184.898438 193.195312 185.015625 193.195312 C 185.132812 193.195312 185.226562 193.101562 185.226562 192.984375 Z M 185.226562 192.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.261719 192.554688 C 182.261719 192.4375 182.167969 192.34375 182.050781 192.34375 C 181.933594 192.34375 181.839844 192.4375 181.839844 192.554688 C 181.839844 192.671875 181.933594 192.765625 182.050781 192.765625 C 182.167969 192.765625 182.261719 192.671875 182.261719 192.554688 Z M 182.261719 192.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 180.433594 192.417969 C 180.433594 192.300781 180.339844 192.207031 180.222656 192.207031 C 180.105469 192.207031 180.011719 192.300781 180.011719 192.417969 C 180.011719 192.535156 180.105469 192.628906 180.222656 192.628906 C 180.339844 192.628906 180.433594 192.535156 180.433594 192.417969 Z M 180.433594 192.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.753906 193.609375 C 181.753906 193.492188 181.660156 193.398438 181.542969 193.398438 C 181.425781 193.398438 181.332031 193.492188 181.332031 193.609375 C 181.332031 193.726562 181.425781 193.820312 181.542969 193.820312 C 181.660156 193.820312 181.753906 193.726562 181.753906 193.609375 Z M 181.753906 193.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 180.433594 190.273438 C 180.433594 190.15625 180.339844 190.0625 180.222656 190.0625 C 180.105469 190.0625 180.011719 190.15625 180.011719 190.273438 C 180.011719 190.390625 180.105469 190.484375 180.222656 190.484375 C 180.339844 190.484375 180.433594 190.390625 180.433594 190.273438 Z M 180.433594 190.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.707031 188.785156 C 183.707031 188.667969 183.613281 188.574219 183.496094 188.574219 C 183.378906 188.574219 183.285156 188.667969 183.285156 188.785156 C 183.285156 188.902344 183.378906 188.996094 183.496094 188.996094 C 183.613281 188.996094 183.707031 188.902344 183.707031 188.785156 Z M 183.707031 188.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.667969 194.640625 C 182.667969 194.523438 182.574219 194.429688 182.457031 194.429688 C 182.339844 194.429688 182.246094 194.523438 182.246094 194.640625 C 182.246094 194.757812 182.339844 194.851562 182.457031 194.851562 C 182.574219 194.851562 182.667969 194.757812 182.667969 194.640625 Z M 182.667969 194.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.039062 197.261719 C 182.039062 197.144531 181.945312 197.050781 181.828125 197.050781 C 181.710938 197.050781 181.617188 197.144531 181.617188 197.261719 C 181.617188 197.378906 181.710938 197.472656 181.828125 197.472656 C 181.945312 197.472656 182.039062 197.378906 182.039062 197.261719 Z M 182.039062 197.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.773438 198.078125 C 187.773438 197.960938 187.679688 197.867188 187.5625 197.867188 C 187.445312 197.867188 187.351562 197.960938 187.351562 198.078125 C 187.351562 198.195312 187.445312 198.289062 187.5625 198.289062 C 187.679688 198.289062 187.773438 198.195312 187.773438 198.078125 Z M 187.773438 198.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.664062 201.445312 C 188.664062 201.328125 188.570312 201.234375 188.453125 201.234375 C 188.335938 201.234375 188.242188 201.328125 188.242188 201.445312 C 188.242188 201.5625 188.335938 201.65625 188.453125 201.65625 C 188.570312 201.65625 188.664062 201.5625 188.664062 201.445312 Z M 188.664062 201.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.8125 206.574219 C 189.8125 206.457031 189.71875 206.363281 189.601562 206.363281 C 189.484375 206.363281 189.390625 206.457031 189.390625 206.574219 C 189.390625 206.691406 189.484375 206.785156 189.601562 206.785156 C 189.71875 206.785156 189.8125 206.691406 189.8125 206.574219 Z M 189.8125 206.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.984375 209.640625 C 188.984375 209.523438 188.890625 209.429688 188.773438 209.429688 C 188.65625 209.429688 188.5625 209.523438 188.5625 209.640625 C 188.5625 209.757812 188.65625 209.851562 188.773438 209.851562 C 188.890625 209.851562 188.984375 209.757812 188.984375 209.640625 Z M 188.984375 209.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.6875 208.882812 C 190.6875 208.765625 190.59375 208.671875 190.476562 208.671875 C 190.359375 208.671875 190.265625 208.765625 190.265625 208.882812 C 190.265625 209 190.359375 209.09375 190.476562 209.09375 C 190.59375 209.09375 190.6875 209 190.6875 208.882812 Z M 190.6875 208.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.828125 209.285156 C 191.828125 209.167969 191.734375 209.074219 191.617188 209.074219 C 191.5 209.074219 191.40625 209.167969 191.40625 209.285156 C 191.40625 209.402344 191.5 209.496094 191.617188 209.496094 C 191.734375 209.496094 191.828125 209.402344 191.828125 209.285156 Z M 191.828125 209.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.542969 209.507812 C 194.542969 209.390625 194.449219 209.296875 194.332031 209.296875 C 194.214844 209.296875 194.121094 209.390625 194.121094 209.507812 C 194.121094 209.625 194.214844 209.71875 194.332031 209.71875 C 194.449219 209.71875 194.542969 209.625 194.542969 209.507812 Z M 194.542969 209.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.21875 209.777344 C 194.21875 209.660156 194.125 209.566406 194.007812 209.566406 C 193.890625 209.566406 193.796875 209.660156 193.796875 209.777344 C 193.796875 209.894531 193.890625 209.988281 194.007812 209.988281 C 194.125 209.988281 194.21875 209.894531 194.21875 209.777344 Z M 194.21875 209.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.898438 209.335938 C 194.898438 209.21875 194.804688 209.125 194.6875 209.125 C 194.570312 209.125 194.476562 209.21875 194.476562 209.335938 C 194.476562 209.453125 194.570312 209.546875 194.6875 209.546875 C 194.804688 209.546875 194.898438 209.453125 194.898438 209.335938 Z M 194.898438 209.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.398438 210.785156 C 194.398438 210.667969 194.304688 210.574219 194.1875 210.574219 C 194.070312 210.574219 193.976562 210.667969 193.976562 210.785156 C 193.976562 210.902344 194.070312 210.996094 194.1875 210.996094 C 194.304688 210.996094 194.398438 210.902344 194.398438 210.785156 Z M 194.398438 210.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.148438 210.589844 C 194.148438 210.472656 194.054688 210.378906 193.9375 210.378906 C 193.820312 210.378906 193.726562 210.472656 193.726562 210.589844 C 193.726562 210.707031 193.820312 210.800781 193.9375 210.800781 C 194.054688 210.800781 194.148438 210.707031 194.148438 210.589844 Z M 194.148438 210.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.757812 213.3125 C 193.757812 213.195312 193.664062 213.101562 193.546875 213.101562 C 193.429688 213.101562 193.335938 213.195312 193.335938 213.3125 C 193.335938 213.429688 193.429688 213.523438 193.546875 213.523438 C 193.664062 213.523438 193.757812 213.429688 193.757812 213.3125 Z M 193.757812 213.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.863281 212.589844 C 193.863281 212.472656 193.769531 212.378906 193.652344 212.378906 C 193.535156 212.378906 193.441406 212.472656 193.441406 212.589844 C 193.441406 212.707031 193.535156 212.800781 193.652344 212.800781 C 193.769531 212.800781 193.863281 212.707031 193.863281 212.589844 Z M 193.863281 212.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.164062 214.132812 C 190.164062 214.015625 190.070312 213.921875 189.953125 213.921875 C 189.835938 213.921875 189.742188 214.015625 189.742188 214.132812 C 189.742188 214.25 189.835938 214.34375 189.953125 214.34375 C 190.070312 214.34375 190.164062 214.25 190.164062 214.132812 Z M 190.164062 214.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.246094 214.375 C 190.246094 214.257812 190.152344 214.164062 190.035156 214.164062 C 189.917969 214.164062 189.824219 214.257812 189.824219 214.375 C 189.824219 214.492188 189.917969 214.585938 190.035156 214.585938 C 190.152344 214.585938 190.246094 214.492188 190.246094 214.375 Z M 190.246094 214.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.855469 213.226562 C 192.855469 213.109375 192.761719 213.015625 192.644531 213.015625 C 192.527344 213.015625 192.433594 213.109375 192.433594 213.226562 C 192.433594 213.34375 192.527344 213.4375 192.644531 213.4375 C 192.761719 213.4375 192.855469 213.34375 192.855469 213.226562 Z M 192.855469 213.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.105469 214.734375 C 192.105469 214.617188 192.011719 214.523438 191.894531 214.523438 C 191.777344 214.523438 191.683594 214.617188 191.683594 214.734375 C 191.683594 214.851562 191.777344 214.945312 191.894531 214.945312 C 192.011719 214.945312 192.105469 214.851562 192.105469 214.734375 Z M 192.105469 214.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.308594 216.035156 C 190.308594 215.917969 190.214844 215.824219 190.097656 215.824219 C 189.980469 215.824219 189.886719 215.917969 189.886719 216.035156 C 189.886719 216.152344 189.980469 216.246094 190.097656 216.246094 C 190.214844 216.246094 190.308594 216.152344 190.308594 216.035156 Z M 190.308594 216.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.246094 218.675781 C 190.246094 218.558594 190.152344 218.464844 190.035156 218.464844 C 189.917969 218.464844 189.824219 218.558594 189.824219 218.675781 C 189.824219 218.792969 189.917969 218.886719 190.035156 218.886719 C 190.152344 218.886719 190.246094 218.792969 190.246094 218.675781 Z M 190.246094 218.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.214844 220.332031 C 190.214844 220.214844 190.121094 220.121094 190.003906 220.121094 C 189.886719 220.121094 189.792969 220.214844 189.792969 220.332031 C 189.792969 220.449219 189.886719 220.542969 190.003906 220.542969 C 190.121094 220.542969 190.214844 220.449219 190.214844 220.332031 Z M 190.214844 220.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.074219 221.691406 C 189.074219 221.574219 188.980469 221.480469 188.863281 221.480469 C 188.746094 221.480469 188.652344 221.574219 188.652344 221.691406 C 188.652344 221.808594 188.746094 221.902344 188.863281 221.902344 C 188.980469 221.902344 189.074219 221.808594 189.074219 221.691406 Z M 189.074219 221.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.117188 218.890625 C 187.117188 218.773438 187.023438 218.679688 186.90625 218.679688 C 186.789062 218.679688 186.695312 218.773438 186.695312 218.890625 C 186.695312 219.007812 186.789062 219.101562 186.90625 219.101562 C 187.023438 219.101562 187.117188 219.007812 187.117188 218.890625 Z M 187.117188 218.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.296875 220.976562 C 186.296875 220.859375 186.203125 220.765625 186.085938 220.765625 C 185.96875 220.765625 185.875 220.859375 185.875 220.976562 C 185.875 221.09375 185.96875 221.1875 186.085938 221.1875 C 186.203125 221.1875 186.296875 221.09375 186.296875 220.976562 Z M 186.296875 220.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.558594 222.128906 C 188.558594 222.011719 188.464844 221.917969 188.347656 221.917969 C 188.230469 221.917969 188.136719 222.011719 188.136719 222.128906 C 188.136719 222.246094 188.230469 222.339844 188.347656 222.339844 C 188.464844 222.339844 188.558594 222.246094 188.558594 222.128906 Z M 188.558594 222.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.496094 219.257812 C 189.496094 219.140625 189.402344 219.046875 189.285156 219.046875 C 189.167969 219.046875 189.074219 219.140625 189.074219 219.257812 C 189.074219 219.375 189.167969 219.46875 189.285156 219.46875 C 189.402344 219.46875 189.496094 219.375 189.496094 219.257812 Z M 189.496094 219.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.070312 219.167969 C 188.070312 219.050781 187.976562 218.957031 187.859375 218.957031 C 187.742188 218.957031 187.648438 219.050781 187.648438 219.167969 C 187.648438 219.285156 187.742188 219.378906 187.859375 219.378906 C 187.976562 219.378906 188.070312 219.285156 188.070312 219.167969 Z M 188.070312 219.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.585938 220.441406 C 186.585938 220.324219 186.492188 220.230469 186.375 220.230469 C 186.257812 220.230469 186.164062 220.324219 186.164062 220.441406 C 186.164062 220.558594 186.257812 220.652344 186.375 220.652344 C 186.492188 220.652344 186.585938 220.558594 186.585938 220.441406 Z M 186.585938 220.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.542969 217.601562 C 185.542969 217.484375 185.449219 217.390625 185.332031 217.390625 C 185.214844 217.390625 185.121094 217.484375 185.121094 217.601562 C 185.121094 217.71875 185.214844 217.8125 185.332031 217.8125 C 185.449219 217.8125 185.542969 217.71875 185.542969 217.601562 Z M 185.542969 217.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.617188 217.320312 C 189.617188 217.203125 189.523438 217.109375 189.40625 217.109375 C 189.289062 217.109375 189.195312 217.203125 189.195312 217.320312 C 189.195312 217.4375 189.289062 217.53125 189.40625 217.53125 C 189.523438 217.53125 189.617188 217.4375 189.617188 217.320312 Z M 189.617188 217.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.636719 217.140625 C 188.636719 217.023438 188.542969 216.929688 188.425781 216.929688 C 188.308594 216.929688 188.214844 217.023438 188.214844 217.140625 C 188.214844 217.257812 188.308594 217.351562 188.425781 217.351562 C 188.542969 217.351562 188.636719 217.257812 188.636719 217.140625 Z M 188.636719 217.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.660156 217.519531 C 190.660156 217.402344 190.566406 217.308594 190.449219 217.308594 C 190.332031 217.308594 190.238281 217.402344 190.238281 217.519531 C 190.238281 217.636719 190.332031 217.730469 190.449219 217.730469 C 190.566406 217.730469 190.660156 217.636719 190.660156 217.519531 Z M 190.660156 217.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.148438 218.746094 C 192.148438 218.628906 192.054688 218.535156 191.9375 218.535156 C 191.820312 218.535156 191.726562 218.628906 191.726562 218.746094 C 191.726562 218.863281 191.820312 218.957031 191.9375 218.957031 C 192.054688 218.957031 192.148438 218.863281 192.148438 218.746094 Z M 192.148438 218.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.121094 217.152344 C 192.121094 217.035156 192.027344 216.941406 191.910156 216.941406 C 191.792969 216.941406 191.699219 217.035156 191.699219 217.152344 C 191.699219 217.269531 191.792969 217.363281 191.910156 217.363281 C 192.027344 217.363281 192.121094 217.269531 192.121094 217.152344 Z M 192.121094 217.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.253906 217.285156 C 192.253906 217.167969 192.160156 217.074219 192.042969 217.074219 C 191.925781 217.074219 191.832031 217.167969 191.832031 217.285156 C 191.832031 217.402344 191.925781 217.496094 192.042969 217.496094 C 192.160156 217.496094 192.253906 217.402344 192.253906 217.285156 Z M 192.253906 217.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.460938 215.597656 C 187.460938 215.480469 187.367188 215.386719 187.25 215.386719 C 187.132812 215.386719 187.039062 215.480469 187.039062 215.597656 C 187.039062 215.714844 187.132812 215.808594 187.25 215.808594 C 187.367188 215.808594 187.460938 215.714844 187.460938 215.597656 Z M 187.460938 215.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.257812 214.503906 C 187.257812 214.386719 187.164062 214.292969 187.046875 214.292969 C 186.929688 214.292969 186.835938 214.386719 186.835938 214.503906 C 186.835938 214.621094 186.929688 214.714844 187.046875 214.714844 C 187.164062 214.714844 187.257812 214.621094 187.257812 214.503906 Z M 187.257812 214.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.703125 218.359375 C 186.703125 218.242188 186.609375 218.148438 186.492188 218.148438 C 186.375 218.148438 186.28125 218.242188 186.28125 218.359375 C 186.28125 218.476562 186.375 218.570312 186.492188 218.570312 C 186.609375 218.570312 186.703125 218.476562 186.703125 218.359375 Z M 186.703125 218.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.261719 217.636719 C 187.261719 217.519531 187.167969 217.425781 187.050781 217.425781 C 186.933594 217.425781 186.839844 217.519531 186.839844 217.636719 C 186.839844 217.753906 186.933594 217.847656 187.050781 217.847656 C 187.167969 217.847656 187.261719 217.753906 187.261719 217.636719 Z M 187.261719 217.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.84375 219.144531 C 186.84375 219.027344 186.75 218.933594 186.632812 218.933594 C 186.515625 218.933594 186.421875 219.027344 186.421875 219.144531 C 186.421875 219.261719 186.515625 219.355469 186.632812 219.355469 C 186.75 219.355469 186.84375 219.261719 186.84375 219.144531 Z M 186.84375 219.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.859375 220.304688 C 185.859375 220.1875 185.765625 220.09375 185.648438 220.09375 C 185.53125 220.09375 185.4375 220.1875 185.4375 220.304688 C 185.4375 220.421875 185.53125 220.515625 185.648438 220.515625 C 185.765625 220.515625 185.859375 220.421875 185.859375 220.304688 Z M 185.859375 220.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.640625 218.96875 C 185.640625 218.851562 185.546875 218.757812 185.429688 218.757812 C 185.3125 218.757812 185.21875 218.851562 185.21875 218.96875 C 185.21875 219.085938 185.3125 219.179688 185.429688 219.179688 C 185.546875 219.179688 185.640625 219.085938 185.640625 218.96875 Z M 185.640625 218.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.5 217.8125 C 186.5 217.695312 186.40625 217.601562 186.289062 217.601562 C 186.171875 217.601562 186.078125 217.695312 186.078125 217.8125 C 186.078125 217.929688 186.171875 218.023438 186.289062 218.023438 C 186.40625 218.023438 186.5 217.929688 186.5 217.8125 Z M 186.5 217.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.957031 213.921875 C 188.957031 213.804688 188.863281 213.710938 188.746094 213.710938 C 188.628906 213.710938 188.535156 213.804688 188.535156 213.921875 C 188.535156 214.039062 188.628906 214.132812 188.746094 214.132812 C 188.863281 214.132812 188.957031 214.039062 188.957031 213.921875 Z M 188.957031 213.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.828125 213.019531 C 189.828125 212.902344 189.734375 212.808594 189.617188 212.808594 C 189.5 212.808594 189.40625 212.902344 189.40625 213.019531 C 189.40625 213.136719 189.5 213.230469 189.617188 213.230469 C 189.734375 213.230469 189.828125 213.136719 189.828125 213.019531 Z M 189.828125 213.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.796875 212.949219 C 188.796875 212.832031 188.703125 212.738281 188.585938 212.738281 C 188.46875 212.738281 188.375 212.832031 188.375 212.949219 C 188.375 213.066406 188.46875 213.160156 188.585938 213.160156 C 188.703125 213.160156 188.796875 213.066406 188.796875 212.949219 Z M 188.796875 212.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.277344 211.550781 C 186.277344 211.433594 186.183594 211.339844 186.066406 211.339844 C 185.949219 211.339844 185.855469 211.433594 185.855469 211.550781 C 185.855469 211.667969 185.949219 211.761719 186.066406 211.761719 C 186.183594 211.761719 186.277344 211.667969 186.277344 211.550781 Z M 186.277344 211.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.316406 210.476562 C 183.316406 210.359375 183.222656 210.265625 183.105469 210.265625 C 182.988281 210.265625 182.894531 210.359375 182.894531 210.476562 C 182.894531 210.59375 182.988281 210.6875 183.105469 210.6875 C 183.222656 210.6875 183.316406 210.59375 183.316406 210.476562 Z M 183.316406 210.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.761719 208.265625 C 185.761719 208.148438 185.667969 208.054688 185.550781 208.054688 C 185.433594 208.054688 185.339844 208.148438 185.339844 208.265625 C 185.339844 208.382812 185.433594 208.476562 185.550781 208.476562 C 185.667969 208.476562 185.761719 208.382812 185.761719 208.265625 Z M 185.761719 208.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.226562 209.414062 C 188.226562 209.296875 188.132812 209.203125 188.015625 209.203125 C 187.898438 209.203125 187.804688 209.296875 187.804688 209.414062 C 187.804688 209.53125 187.898438 209.625 188.015625 209.625 C 188.132812 209.625 188.226562 209.53125 188.226562 209.414062 Z M 188.226562 209.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.59375 207.828125 C 186.59375 207.710938 186.5 207.617188 186.382812 207.617188 C 186.265625 207.617188 186.171875 207.710938 186.171875 207.828125 C 186.171875 207.945312 186.265625 208.039062 186.382812 208.039062 C 186.5 208.039062 186.59375 207.945312 186.59375 207.828125 Z M 186.59375 207.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.84375 210.84375 C 186.84375 210.726562 186.75 210.632812 186.632812 210.632812 C 186.515625 210.632812 186.421875 210.726562 186.421875 210.84375 C 186.421875 210.960938 186.515625 211.054688 186.632812 211.054688 C 186.75 211.054688 186.84375 210.960938 186.84375 210.84375 Z M 186.84375 210.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.175781 211.625 C 189.175781 211.507812 189.082031 211.414062 188.964844 211.414062 C 188.847656 211.414062 188.753906 211.507812 188.753906 211.625 C 188.753906 211.742188 188.847656 211.835938 188.964844 211.835938 C 189.082031 211.835938 189.175781 211.742188 189.175781 211.625 Z M 189.175781 211.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.976562 213.652344 C 188.976562 213.535156 188.882812 213.441406 188.765625 213.441406 C 188.648438 213.441406 188.554688 213.535156 188.554688 213.652344 C 188.554688 213.769531 188.648438 213.863281 188.765625 213.863281 C 188.882812 213.863281 188.976562 213.769531 188.976562 213.652344 Z M 188.976562 213.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.765625 212.121094 C 189.765625 212.003906 189.671875 211.910156 189.554688 211.910156 C 189.4375 211.910156 189.34375 212.003906 189.34375 212.121094 C 189.34375 212.238281 189.4375 212.332031 189.554688 212.332031 C 189.671875 212.332031 189.765625 212.238281 189.765625 212.121094 Z M 189.765625 212.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.191406 213.621094 C 189.191406 213.503906 189.097656 213.410156 188.980469 213.410156 C 188.863281 213.410156 188.769531 213.503906 188.769531 213.621094 C 188.769531 213.738281 188.863281 213.832031 188.980469 213.832031 C 189.097656 213.832031 189.191406 213.738281 189.191406 213.621094 Z M 189.191406 213.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.164062 213.792969 C 193.164062 213.675781 193.070312 213.582031 192.953125 213.582031 C 192.835938 213.582031 192.742188 213.675781 192.742188 213.792969 C 192.742188 213.910156 192.835938 214.003906 192.953125 214.003906 C 193.070312 214.003906 193.164062 213.910156 193.164062 213.792969 Z M 193.164062 213.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.511719 219.363281 C 189.511719 219.246094 189.417969 219.152344 189.300781 219.152344 C 189.183594 219.152344 189.089844 219.246094 189.089844 219.363281 C 189.089844 219.480469 189.183594 219.574219 189.300781 219.574219 C 189.417969 219.574219 189.511719 219.480469 189.511719 219.363281 Z M 189.511719 219.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.875 216.871094 C 187.875 216.753906 187.78125 216.660156 187.664062 216.660156 C 187.546875 216.660156 187.453125 216.753906 187.453125 216.871094 C 187.453125 216.988281 187.546875 217.082031 187.664062 217.082031 C 187.78125 217.082031 187.875 216.988281 187.875 216.871094 Z M 187.875 216.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.792969 215.957031 C 185.792969 215.839844 185.699219 215.746094 185.582031 215.746094 C 185.464844 215.746094 185.371094 215.839844 185.371094 215.957031 C 185.371094 216.074219 185.464844 216.167969 185.582031 216.167969 C 185.699219 216.167969 185.792969 216.074219 185.792969 215.957031 Z M 185.792969 215.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.988281 220.878906 C 184.988281 220.761719 184.894531 220.667969 184.777344 220.667969 C 184.660156 220.667969 184.566406 220.761719 184.566406 220.878906 C 184.566406 220.996094 184.660156 221.089844 184.777344 221.089844 C 184.894531 221.089844 184.988281 220.996094 184.988281 220.878906 Z M 184.988281 220.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.195312 218.597656 C 187.195312 218.480469 187.101562 218.386719 186.984375 218.386719 C 186.867188 218.386719 186.773438 218.480469 186.773438 218.597656 C 186.773438 218.714844 186.867188 218.808594 186.984375 218.808594 C 187.101562 218.808594 187.195312 218.714844 187.195312 218.597656 Z M 187.195312 218.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.835938 220.417969 C 186.835938 220.300781 186.742188 220.207031 186.625 220.207031 C 186.507812 220.207031 186.414062 220.300781 186.414062 220.417969 C 186.414062 220.535156 186.507812 220.628906 186.625 220.628906 C 186.742188 220.628906 186.835938 220.535156 186.835938 220.417969 Z M 186.835938 220.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.472656 221.117188 C 191.472656 221 191.378906 220.90625 191.261719 220.90625 C 191.144531 220.90625 191.050781 221 191.050781 221.117188 C 191.050781 221.234375 191.144531 221.328125 191.261719 221.328125 C 191.378906 221.328125 191.472656 221.234375 191.472656 221.117188 Z M 191.472656 221.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.917969 220.71875 C 187.917969 220.601562 187.824219 220.507812 187.707031 220.507812 C 187.589844 220.507812 187.496094 220.601562 187.496094 220.71875 C 187.496094 220.835938 187.589844 220.929688 187.707031 220.929688 C 187.824219 220.929688 187.917969 220.835938 187.917969 220.71875 Z M 187.917969 220.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.96875 220.496094 C 185.96875 220.378906 185.875 220.285156 185.757812 220.285156 C 185.640625 220.285156 185.546875 220.378906 185.546875 220.496094 C 185.546875 220.613281 185.640625 220.707031 185.757812 220.707031 C 185.875 220.707031 185.96875 220.613281 185.96875 220.496094 Z M 185.96875 220.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.941406 217.039062 C 186.941406 216.921875 186.847656 216.828125 186.730469 216.828125 C 186.613281 216.828125 186.519531 216.921875 186.519531 217.039062 C 186.519531 217.15625 186.613281 217.25 186.730469 217.25 C 186.847656 217.25 186.941406 217.15625 186.941406 217.039062 Z M 186.941406 217.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.445312 218.140625 C 185.445312 218.023438 185.351562 217.929688 185.234375 217.929688 C 185.117188 217.929688 185.023438 218.023438 185.023438 218.140625 C 185.023438 218.257812 185.117188 218.351562 185.234375 218.351562 C 185.351562 218.351562 185.445312 218.257812 185.445312 218.140625 Z M 185.445312 218.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.722656 217.566406 C 188.722656 217.449219 188.628906 217.355469 188.511719 217.355469 C 188.394531 217.355469 188.300781 217.449219 188.300781 217.566406 C 188.300781 217.683594 188.394531 217.777344 188.511719 217.777344 C 188.628906 217.777344 188.722656 217.683594 188.722656 217.566406 Z M 188.722656 217.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.582031 216.847656 C 191.582031 216.730469 191.488281 216.636719 191.371094 216.636719 C 191.253906 216.636719 191.160156 216.730469 191.160156 216.847656 C 191.160156 216.964844 191.253906 217.058594 191.371094 217.058594 C 191.488281 217.058594 191.582031 216.964844 191.582031 216.847656 Z M 191.582031 216.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.449219 217.085938 C 192.449219 216.96875 192.355469 216.875 192.238281 216.875 C 192.121094 216.875 192.027344 216.96875 192.027344 217.085938 C 192.027344 217.203125 192.121094 217.296875 192.238281 217.296875 C 192.355469 217.296875 192.449219 217.203125 192.449219 217.085938 Z M 192.449219 217.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.921875 215.867188 C 191.921875 215.75 191.828125 215.65625 191.710938 215.65625 C 191.59375 215.65625 191.5 215.75 191.5 215.867188 C 191.5 215.984375 191.59375 216.078125 191.710938 216.078125 C 191.828125 216.078125 191.921875 215.984375 191.921875 215.867188 Z M 191.921875 215.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.320312 215.417969 C 192.320312 215.300781 192.226562 215.207031 192.109375 215.207031 C 191.992188 215.207031 191.898438 215.300781 191.898438 215.417969 C 191.898438 215.535156 191.992188 215.628906 192.109375 215.628906 C 192.226562 215.628906 192.320312 215.535156 192.320312 215.417969 Z M 192.320312 215.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.410156 213.117188 C 191.410156 213 191.316406 212.90625 191.199219 212.90625 C 191.082031 212.90625 190.988281 213 190.988281 213.117188 C 190.988281 213.234375 191.082031 213.328125 191.199219 213.328125 C 191.316406 213.328125 191.410156 213.234375 191.410156 213.117188 Z M 191.410156 213.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.933594 214.464844 C 189.933594 214.347656 189.839844 214.253906 189.722656 214.253906 C 189.605469 214.253906 189.511719 214.347656 189.511719 214.464844 C 189.511719 214.582031 189.605469 214.675781 189.722656 214.675781 C 189.839844 214.675781 189.933594 214.582031 189.933594 214.464844 Z M 189.933594 214.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.269531 213.386719 C 192.269531 213.269531 192.175781 213.175781 192.058594 213.175781 C 191.941406 213.175781 191.847656 213.269531 191.847656 213.386719 C 191.847656 213.503906 191.941406 213.597656 192.058594 213.597656 C 192.175781 213.597656 192.269531 213.503906 192.269531 213.386719 Z M 192.269531 213.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.554688 217.546875 C 195.554688 217.429688 195.460938 217.335938 195.34375 217.335938 C 195.226562 217.335938 195.132812 217.429688 195.132812 217.546875 C 195.132812 217.664062 195.226562 217.757812 195.34375 217.757812 C 195.460938 217.757812 195.554688 217.664062 195.554688 217.546875 Z M 195.554688 217.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.675781 219.265625 C 193.675781 219.148438 193.582031 219.054688 193.464844 219.054688 C 193.347656 219.054688 193.253906 219.148438 193.253906 219.265625 C 193.253906 219.382812 193.347656 219.476562 193.464844 219.476562 C 193.582031 219.476562 193.675781 219.382812 193.675781 219.265625 Z M 193.675781 219.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.703125 220.269531 C 193.703125 220.152344 193.609375 220.058594 193.492188 220.058594 C 193.375 220.058594 193.28125 220.152344 193.28125 220.269531 C 193.28125 220.386719 193.375 220.480469 193.492188 220.480469 C 193.609375 220.480469 193.703125 220.386719 193.703125 220.269531 Z M 193.703125 220.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.679688 221.136719 C 194.679688 221.019531 194.585938 220.925781 194.46875 220.925781 C 194.351562 220.925781 194.257812 221.019531 194.257812 221.136719 C 194.257812 221.253906 194.351562 221.347656 194.46875 221.347656 C 194.585938 221.347656 194.679688 221.253906 194.679688 221.136719 Z M 194.679688 221.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.777344 222.699219 C 198.777344 222.582031 198.683594 222.488281 198.566406 222.488281 C 198.449219 222.488281 198.355469 222.582031 198.355469 222.699219 C 198.355469 222.816406 198.449219 222.910156 198.566406 222.910156 C 198.683594 222.910156 198.777344 222.816406 198.777344 222.699219 Z M 198.777344 222.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.910156 219.210938 C 198.910156 219.09375 198.816406 219 198.699219 219 C 198.582031 219 198.488281 219.09375 198.488281 219.210938 C 198.488281 219.328125 198.582031 219.421875 198.699219 219.421875 C 198.816406 219.421875 198.910156 219.328125 198.910156 219.210938 Z M 198.910156 219.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.464844 217.726562 C 199.464844 217.609375 199.371094 217.515625 199.253906 217.515625 C 199.136719 217.515625 199.042969 217.609375 199.042969 217.726562 C 199.042969 217.84375 199.136719 217.9375 199.253906 217.9375 C 199.371094 217.9375 199.464844 217.84375 199.464844 217.726562 Z M 199.464844 217.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.722656 215.59375 C 197.722656 215.476562 197.628906 215.382812 197.511719 215.382812 C 197.394531 215.382812 197.300781 215.476562 197.300781 215.59375 C 197.300781 215.710938 197.394531 215.804688 197.511719 215.804688 C 197.628906 215.804688 197.722656 215.710938 197.722656 215.59375 Z M 197.722656 215.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.550781 220.238281 C 194.550781 220.121094 194.457031 220.027344 194.339844 220.027344 C 194.222656 220.027344 194.128906 220.121094 194.128906 220.238281 C 194.128906 220.355469 194.222656 220.449219 194.339844 220.449219 C 194.457031 220.449219 194.550781 220.355469 194.550781 220.238281 Z M 194.550781 220.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.8125 218.765625 C 194.8125 218.648438 194.71875 218.554688 194.601562 218.554688 C 194.484375 218.554688 194.390625 218.648438 194.390625 218.765625 C 194.390625 218.882812 194.484375 218.976562 194.601562 218.976562 C 194.71875 218.976562 194.8125 218.882812 194.8125 218.765625 Z M 194.8125 218.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.484375 219.136719 C 196.484375 219.019531 196.390625 218.925781 196.273438 218.925781 C 196.15625 218.925781 196.0625 219.019531 196.0625 219.136719 C 196.0625 219.253906 196.15625 219.347656 196.273438 219.347656 C 196.390625 219.347656 196.484375 219.253906 196.484375 219.136719 Z M 196.484375 219.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.441406 218.300781 C 197.441406 218.183594 197.347656 218.089844 197.230469 218.089844 C 197.113281 218.089844 197.019531 218.183594 197.019531 218.300781 C 197.019531 218.417969 197.113281 218.511719 197.230469 218.511719 C 197.347656 218.511719 197.441406 218.417969 197.441406 218.300781 Z M 197.441406 218.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.039062 219.027344 C 195.039062 218.910156 194.945312 218.816406 194.828125 218.816406 C 194.710938 218.816406 194.617188 218.910156 194.617188 219.027344 C 194.617188 219.144531 194.710938 219.238281 194.828125 219.238281 C 194.945312 219.238281 195.039062 219.144531 195.039062 219.027344 Z M 195.039062 219.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.414062 220.125 C 191.414062 220.007812 191.320312 219.914062 191.203125 219.914062 C 191.085938 219.914062 190.992188 220.007812 190.992188 220.125 C 190.992188 220.242188 191.085938 220.335938 191.203125 220.335938 C 191.320312 220.335938 191.414062 220.242188 191.414062 220.125 Z M 191.414062 220.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.726562 222.839844 C 193.726562 222.722656 193.632812 222.628906 193.515625 222.628906 C 193.398438 222.628906 193.304688 222.722656 193.304688 222.839844 C 193.304688 222.957031 193.398438 223.050781 193.515625 223.050781 C 193.632812 223.050781 193.726562 222.957031 193.726562 222.839844 Z M 193.726562 222.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.257812 223.640625 C 190.257812 223.523438 190.164062 223.429688 190.046875 223.429688 C 189.929688 223.429688 189.835938 223.523438 189.835938 223.640625 C 189.835938 223.757812 189.929688 223.851562 190.046875 223.851562 C 190.164062 223.851562 190.257812 223.757812 190.257812 223.640625 Z M 190.257812 223.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.996094 222.359375 C 189.996094 222.242188 189.902344 222.148438 189.785156 222.148438 C 189.667969 222.148438 189.574219 222.242188 189.574219 222.359375 C 189.574219 222.476562 189.667969 222.570312 189.785156 222.570312 C 189.902344 222.570312 189.996094 222.476562 189.996094 222.359375 Z M 189.996094 222.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.730469 224.617188 C 194.730469 224.5 194.636719 224.40625 194.519531 224.40625 C 194.402344 224.40625 194.308594 224.5 194.308594 224.617188 C 194.308594 224.734375 194.402344 224.828125 194.519531 224.828125 C 194.636719 224.828125 194.730469 224.734375 194.730469 224.617188 Z M 194.730469 224.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.675781 225.332031 C 191.675781 225.214844 191.582031 225.121094 191.464844 225.121094 C 191.347656 225.121094 191.253906 225.214844 191.253906 225.332031 C 191.253906 225.449219 191.347656 225.542969 191.464844 225.542969 C 191.582031 225.542969 191.675781 225.449219 191.675781 225.332031 Z M 191.675781 225.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.121094 227.652344 C 194.121094 227.535156 194.027344 227.441406 193.910156 227.441406 C 193.792969 227.441406 193.699219 227.535156 193.699219 227.652344 C 193.699219 227.769531 193.792969 227.863281 193.910156 227.863281 C 194.027344 227.863281 194.121094 227.769531 194.121094 227.652344 Z M 194.121094 227.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.78125 229.902344 C 193.78125 229.785156 193.6875 229.691406 193.570312 229.691406 C 193.453125 229.691406 193.359375 229.785156 193.359375 229.902344 C 193.359375 230.019531 193.453125 230.113281 193.570312 230.113281 C 193.6875 230.113281 193.78125 230.019531 193.78125 229.902344 Z M 193.78125 229.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.148438 229.582031 C 191.148438 229.464844 191.054688 229.371094 190.9375 229.371094 C 190.820312 229.371094 190.726562 229.464844 190.726562 229.582031 C 190.726562 229.699219 190.820312 229.792969 190.9375 229.792969 C 191.054688 229.792969 191.148438 229.699219 191.148438 229.582031 Z M 191.148438 229.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.863281 230.722656 C 190.863281 230.605469 190.769531 230.511719 190.652344 230.511719 C 190.535156 230.511719 190.441406 230.605469 190.441406 230.722656 C 190.441406 230.839844 190.535156 230.933594 190.652344 230.933594 C 190.769531 230.933594 190.863281 230.839844 190.863281 230.722656 Z M 190.863281 230.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.796875 231.753906 C 188.796875 231.636719 188.703125 231.542969 188.585938 231.542969 C 188.46875 231.542969 188.375 231.636719 188.375 231.753906 C 188.375 231.871094 188.46875 231.964844 188.585938 231.964844 C 188.703125 231.964844 188.796875 231.871094 188.796875 231.753906 Z M 188.796875 231.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.769531 231.3125 C 188.769531 231.195312 188.675781 231.101562 188.558594 231.101562 C 188.441406 231.101562 188.347656 231.195312 188.347656 231.3125 C 188.347656 231.429688 188.441406 231.523438 188.558594 231.523438 C 188.675781 231.523438 188.769531 231.429688 188.769531 231.3125 Z M 188.769531 231.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.402344 234.359375 C 188.402344 234.242188 188.308594 234.148438 188.191406 234.148438 C 188.074219 234.148438 187.980469 234.242188 187.980469 234.359375 C 187.980469 234.476562 188.074219 234.570312 188.191406 234.570312 C 188.308594 234.570312 188.402344 234.476562 188.402344 234.359375 Z M 188.402344 234.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.996094 232.65625 C 186.996094 232.539062 186.902344 232.445312 186.785156 232.445312 C 186.667969 232.445312 186.574219 232.539062 186.574219 232.65625 C 186.574219 232.773438 186.667969 232.867188 186.785156 232.867188 C 186.902344 232.867188 186.996094 232.773438 186.996094 232.65625 Z M 186.996094 232.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.796875 231.523438 C 187.796875 231.40625 187.703125 231.3125 187.585938 231.3125 C 187.46875 231.3125 187.375 231.40625 187.375 231.523438 C 187.375 231.640625 187.46875 231.734375 187.585938 231.734375 C 187.703125 231.734375 187.796875 231.640625 187.796875 231.523438 Z M 187.796875 231.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.050781 233.71875 C 188.050781 233.601562 187.957031 233.507812 187.839844 233.507812 C 187.722656 233.507812 187.628906 233.601562 187.628906 233.71875 C 187.628906 233.835938 187.722656 233.929688 187.839844 233.929688 C 187.957031 233.929688 188.050781 233.835938 188.050781 233.71875 Z M 188.050781 233.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.902344 229.707031 C 190.902344 229.589844 190.808594 229.496094 190.691406 229.496094 C 190.574219 229.496094 190.480469 229.589844 190.480469 229.707031 C 190.480469 229.824219 190.574219 229.917969 190.691406 229.917969 C 190.808594 229.917969 190.902344 229.824219 190.902344 229.707031 Z M 190.902344 229.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.007812 224.75 C 193.007812 224.632812 192.914062 224.539062 192.796875 224.539062 C 192.679688 224.539062 192.585938 224.632812 192.585938 224.75 C 192.585938 224.867188 192.679688 224.960938 192.796875 224.960938 C 192.914062 224.960938 193.007812 224.867188 193.007812 224.75 Z M 193.007812 224.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.070312 221.335938 C 192.070312 221.21875 191.976562 221.125 191.859375 221.125 C 191.742188 221.125 191.648438 221.21875 191.648438 221.335938 C 191.648438 221.453125 191.742188 221.546875 191.859375 221.546875 C 191.976562 221.546875 192.070312 221.453125 192.070312 221.335938 Z M 192.070312 221.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.996094 224.964844 C 190.996094 224.847656 190.902344 224.753906 190.785156 224.753906 C 190.667969 224.753906 190.574219 224.847656 190.574219 224.964844 C 190.574219 225.082031 190.667969 225.175781 190.785156 225.175781 C 190.902344 225.175781 190.996094 225.082031 190.996094 224.964844 Z M 190.996094 224.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.832031 226.621094 C 189.832031 226.503906 189.738281 226.410156 189.621094 226.410156 C 189.503906 226.410156 189.410156 226.503906 189.410156 226.621094 C 189.410156 226.738281 189.503906 226.832031 189.621094 226.832031 C 189.738281 226.832031 189.832031 226.738281 189.832031 226.621094 Z M 189.832031 226.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.179688 229.546875 C 190.179688 229.429688 190.085938 229.335938 189.96875 229.335938 C 189.851562 229.335938 189.757812 229.429688 189.757812 229.546875 C 189.757812 229.664062 189.851562 229.757812 189.96875 229.757812 C 190.085938 229.757812 190.179688 229.664062 190.179688 229.546875 Z M 190.179688 229.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.839844 227.730469 C 189.839844 227.613281 189.746094 227.519531 189.628906 227.519531 C 189.511719 227.519531 189.417969 227.613281 189.417969 227.730469 C 189.417969 227.847656 189.511719 227.941406 189.628906 227.941406 C 189.746094 227.941406 189.839844 227.847656 189.839844 227.730469 Z M 189.839844 227.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.421875 226.644531 C 185.421875 226.527344 185.328125 226.433594 185.210938 226.433594 C 185.09375 226.433594 185 226.527344 185 226.644531 C 185 226.761719 185.09375 226.855469 185.210938 226.855469 C 185.328125 226.855469 185.421875 226.761719 185.421875 226.644531 Z M 185.421875 226.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.042969 225.925781 C 189.042969 225.808594 188.949219 225.714844 188.832031 225.714844 C 188.714844 225.714844 188.621094 225.808594 188.621094 225.925781 C 188.621094 226.042969 188.714844 226.136719 188.832031 226.136719 C 188.949219 226.136719 189.042969 226.042969 189.042969 225.925781 Z M 189.042969 225.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.054688 227.8125 C 188.054688 227.695312 187.960938 227.601562 187.84375 227.601562 C 187.726562 227.601562 187.632812 227.695312 187.632812 227.8125 C 187.632812 227.929688 187.726562 228.023438 187.84375 228.023438 C 187.960938 228.023438 188.054688 227.929688 188.054688 227.8125 Z M 188.054688 227.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.59375 228.839844 C 186.59375 228.722656 186.5 228.628906 186.382812 228.628906 C 186.265625 228.628906 186.171875 228.722656 186.171875 228.839844 C 186.171875 228.957031 186.265625 229.050781 186.382812 229.050781 C 186.5 229.050781 186.59375 228.957031 186.59375 228.839844 Z M 186.59375 228.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.417969 227.515625 C 186.417969 227.398438 186.324219 227.304688 186.207031 227.304688 C 186.089844 227.304688 185.996094 227.398438 185.996094 227.515625 C 185.996094 227.632812 186.089844 227.726562 186.207031 227.726562 C 186.324219 227.726562 186.417969 227.632812 186.417969 227.515625 Z M 186.417969 227.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.242188 225.316406 C 190.242188 225.199219 190.148438 225.105469 190.03125 225.105469 C 189.914062 225.105469 189.820312 225.199219 189.820312 225.316406 C 189.820312 225.433594 189.914062 225.527344 190.03125 225.527344 C 190.148438 225.527344 190.242188 225.433594 190.242188 225.316406 Z M 190.242188 225.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.390625 222.949219 C 187.390625 222.832031 187.296875 222.738281 187.179688 222.738281 C 187.0625 222.738281 186.96875 222.832031 186.96875 222.949219 C 186.96875 223.066406 187.0625 223.160156 187.179688 223.160156 C 187.296875 223.160156 187.390625 223.066406 187.390625 222.949219 Z M 187.390625 222.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.507812 220.976562 C 186.507812 220.859375 186.414062 220.765625 186.296875 220.765625 C 186.179688 220.765625 186.085938 220.859375 186.085938 220.976562 C 186.085938 221.09375 186.179688 221.1875 186.296875 221.1875 C 186.414062 221.1875 186.507812 221.09375 186.507812 220.976562 Z M 186.507812 220.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.191406 224.636719 C 188.191406 224.519531 188.097656 224.425781 187.980469 224.425781 C 187.863281 224.425781 187.769531 224.519531 187.769531 224.636719 C 187.769531 224.753906 187.863281 224.847656 187.980469 224.847656 C 188.097656 224.847656 188.191406 224.753906 188.191406 224.636719 Z M 188.191406 224.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.96875 224.839844 C 188.96875 224.722656 188.875 224.628906 188.757812 224.628906 C 188.640625 224.628906 188.546875 224.722656 188.546875 224.839844 C 188.546875 224.957031 188.640625 225.050781 188.757812 225.050781 C 188.875 225.050781 188.96875 224.957031 188.96875 224.839844 Z M 188.96875 224.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.820312 219.964844 C 188.820312 219.847656 188.726562 219.753906 188.609375 219.753906 C 188.492188 219.753906 188.398438 219.847656 188.398438 219.964844 C 188.398438 220.082031 188.492188 220.175781 188.609375 220.175781 C 188.726562 220.175781 188.820312 220.082031 188.820312 219.964844 Z M 188.820312 219.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.761719 218.648438 C 189.761719 218.53125 189.667969 218.4375 189.550781 218.4375 C 189.433594 218.4375 189.339844 218.53125 189.339844 218.648438 C 189.339844 218.765625 189.433594 218.859375 189.550781 218.859375 C 189.667969 218.859375 189.761719 218.765625 189.761719 218.648438 Z M 189.761719 218.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.160156 218.378906 C 189.160156 218.261719 189.066406 218.167969 188.949219 218.167969 C 188.832031 218.167969 188.738281 218.261719 188.738281 218.378906 C 188.738281 218.496094 188.832031 218.589844 188.949219 218.589844 C 189.066406 218.589844 189.160156 218.496094 189.160156 218.378906 Z M 189.160156 218.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.636719 217.203125 C 187.636719 217.085938 187.542969 216.992188 187.425781 216.992188 C 187.308594 216.992188 187.214844 217.085938 187.214844 217.203125 C 187.214844 217.320312 187.308594 217.414062 187.425781 217.414062 C 187.542969 217.414062 187.636719 217.320312 187.636719 217.203125 Z M 187.636719 217.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.59375 213.863281 C 190.59375 213.746094 190.5 213.652344 190.382812 213.652344 C 190.265625 213.652344 190.171875 213.746094 190.171875 213.863281 C 190.171875 213.980469 190.265625 214.074219 190.382812 214.074219 C 190.5 214.074219 190.59375 213.980469 190.59375 213.863281 Z M 190.59375 213.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.636719 213.542969 C 194.636719 213.425781 194.542969 213.332031 194.425781 213.332031 C 194.308594 213.332031 194.214844 213.425781 194.214844 213.542969 C 194.214844 213.660156 194.308594 213.753906 194.425781 213.753906 C 194.542969 213.753906 194.636719 213.660156 194.636719 213.542969 Z M 194.636719 213.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.445312 214.257812 C 198.445312 214.140625 198.351562 214.046875 198.234375 214.046875 C 198.117188 214.046875 198.023438 214.140625 198.023438 214.257812 C 198.023438 214.375 198.117188 214.46875 198.234375 214.46875 C 198.351562 214.46875 198.445312 214.375 198.445312 214.257812 Z M 198.445312 214.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.082031 211.84375 C 200.082031 211.726562 199.988281 211.632812 199.871094 211.632812 C 199.753906 211.632812 199.660156 211.726562 199.660156 211.84375 C 199.660156 211.960938 199.753906 212.054688 199.871094 212.054688 C 199.988281 212.054688 200.082031 211.960938 200.082031 211.84375 Z M 200.082031 211.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.296875 212.894531 C 199.296875 212.777344 199.203125 212.683594 199.085938 212.683594 C 198.96875 212.683594 198.875 212.777344 198.875 212.894531 C 198.875 213.011719 198.96875 213.105469 199.085938 213.105469 C 199.203125 213.105469 199.296875 213.011719 199.296875 212.894531 Z M 199.296875 212.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.886719 214.761719 C 199.886719 214.644531 199.792969 214.550781 199.675781 214.550781 C 199.558594 214.550781 199.464844 214.644531 199.464844 214.761719 C 199.464844 214.878906 199.558594 214.972656 199.675781 214.972656 C 199.792969 214.972656 199.886719 214.878906 199.886719 214.761719 Z M 199.886719 214.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.625 214.671875 C 199.625 214.554688 199.53125 214.460938 199.414062 214.460938 C 199.296875 214.460938 199.203125 214.554688 199.203125 214.671875 C 199.203125 214.789062 199.296875 214.882812 199.414062 214.882812 C 199.53125 214.882812 199.625 214.789062 199.625 214.671875 Z M 199.625 214.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.421875 213.46875 C 197.421875 213.351562 197.328125 213.257812 197.210938 213.257812 C 197.09375 213.257812 197 213.351562 197 213.46875 C 197 213.585938 197.09375 213.679688 197.210938 213.679688 C 197.328125 213.679688 197.421875 213.585938 197.421875 213.46875 Z M 197.421875 213.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.644531 215.226562 C 194.644531 215.109375 194.550781 215.015625 194.433594 215.015625 C 194.316406 215.015625 194.222656 215.109375 194.222656 215.226562 C 194.222656 215.34375 194.316406 215.4375 194.433594 215.4375 C 194.550781 215.4375 194.644531 215.34375 194.644531 215.226562 Z M 194.644531 215.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.195312 215.484375 C 195.195312 215.367188 195.101562 215.273438 194.984375 215.273438 C 194.867188 215.273438 194.773438 215.367188 194.773438 215.484375 C 194.773438 215.601562 194.867188 215.695312 194.984375 215.695312 C 195.101562 215.695312 195.195312 215.601562 195.195312 215.484375 Z M 195.195312 215.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.144531 217.070312 C 196.144531 216.953125 196.050781 216.859375 195.933594 216.859375 C 195.816406 216.859375 195.722656 216.953125 195.722656 217.070312 C 195.722656 217.1875 195.816406 217.28125 195.933594 217.28125 C 196.050781 217.28125 196.144531 217.1875 196.144531 217.070312 Z M 196.144531 217.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.328125 214.769531 C 193.328125 214.652344 193.234375 214.558594 193.117188 214.558594 C 193 214.558594 192.90625 214.652344 192.90625 214.769531 C 192.90625 214.886719 193 214.980469 193.117188 214.980469 C 193.234375 214.980469 193.328125 214.886719 193.328125 214.769531 Z M 193.328125 214.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.796875 215.195312 C 193.796875 215.078125 193.703125 214.984375 193.585938 214.984375 C 193.46875 214.984375 193.375 215.078125 193.375 215.195312 C 193.375 215.3125 193.46875 215.40625 193.585938 215.40625 C 193.703125 215.40625 193.796875 215.3125 193.796875 215.195312 Z M 193.796875 215.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.445312 217.632812 C 194.445312 217.515625 194.351562 217.421875 194.234375 217.421875 C 194.117188 217.421875 194.023438 217.515625 194.023438 217.632812 C 194.023438 217.75 194.117188 217.84375 194.234375 217.84375 C 194.351562 217.84375 194.445312 217.75 194.445312 217.632812 Z M 194.445312 217.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.675781 218.886719 C 192.675781 218.769531 192.582031 218.675781 192.464844 218.675781 C 192.347656 218.675781 192.253906 218.769531 192.253906 218.886719 C 192.253906 219.003906 192.347656 219.097656 192.464844 219.097656 C 192.582031 219.097656 192.675781 219.003906 192.675781 218.886719 Z M 192.675781 218.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.265625 221.976562 C 191.265625 221.859375 191.171875 221.765625 191.054688 221.765625 C 190.9375 221.765625 190.84375 221.859375 190.84375 221.976562 C 190.84375 222.09375 190.9375 222.1875 191.054688 222.1875 C 191.171875 222.1875 191.265625 222.09375 191.265625 221.976562 Z M 191.265625 221.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.042969 221.148438 C 191.042969 221.03125 190.949219 220.9375 190.832031 220.9375 C 190.714844 220.9375 190.621094 221.03125 190.621094 221.148438 C 190.621094 221.265625 190.714844 221.359375 190.832031 221.359375 C 190.949219 221.359375 191.042969 221.265625 191.042969 221.148438 Z M 191.042969 221.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.390625 220.632812 C 193.390625 220.515625 193.296875 220.421875 193.179688 220.421875 C 193.0625 220.421875 192.96875 220.515625 192.96875 220.632812 C 192.96875 220.75 193.0625 220.84375 193.179688 220.84375 C 193.296875 220.84375 193.390625 220.75 193.390625 220.632812 Z M 193.390625 220.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.582031 221.820312 C 193.582031 221.703125 193.488281 221.609375 193.371094 221.609375 C 193.253906 221.609375 193.160156 221.703125 193.160156 221.820312 C 193.160156 221.9375 193.253906 222.03125 193.371094 222.03125 C 193.488281 222.03125 193.582031 221.9375 193.582031 221.820312 Z M 193.582031 221.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.800781 221.023438 C 192.800781 220.90625 192.707031 220.8125 192.589844 220.8125 C 192.472656 220.8125 192.378906 220.90625 192.378906 221.023438 C 192.378906 221.140625 192.472656 221.234375 192.589844 221.234375 C 192.707031 221.234375 192.800781 221.140625 192.800781 221.023438 Z M 192.800781 221.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.410156 221.4375 C 198.410156 221.320312 198.316406 221.226562 198.199219 221.226562 C 198.082031 221.226562 197.988281 221.320312 197.988281 221.4375 C 197.988281 221.554688 198.082031 221.648438 198.199219 221.648438 C 198.316406 221.648438 198.410156 221.554688 198.410156 221.4375 Z M 198.410156 221.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.988281 223.535156 C 195.988281 223.417969 195.894531 223.324219 195.777344 223.324219 C 195.660156 223.324219 195.566406 223.417969 195.566406 223.535156 C 195.566406 223.652344 195.660156 223.746094 195.777344 223.746094 C 195.894531 223.746094 195.988281 223.652344 195.988281 223.535156 Z M 195.988281 223.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.519531 224.703125 C 197.519531 224.585938 197.425781 224.492188 197.308594 224.492188 C 197.191406 224.492188 197.097656 224.585938 197.097656 224.703125 C 197.097656 224.820312 197.191406 224.914062 197.308594 224.914062 C 197.425781 224.914062 197.519531 224.820312 197.519531 224.703125 Z M 197.519531 224.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.480469 222.863281 C 200.480469 222.746094 200.386719 222.652344 200.269531 222.652344 C 200.152344 222.652344 200.058594 222.746094 200.058594 222.863281 C 200.058594 222.980469 200.152344 223.074219 200.269531 223.074219 C 200.386719 223.074219 200.480469 222.980469 200.480469 222.863281 Z M 200.480469 222.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.898438 223.277344 C 201.898438 223.160156 201.804688 223.066406 201.6875 223.066406 C 201.570312 223.066406 201.476562 223.160156 201.476562 223.277344 C 201.476562 223.394531 201.570312 223.488281 201.6875 223.488281 C 201.804688 223.488281 201.898438 223.394531 201.898438 223.277344 Z M 201.898438 223.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.90625 221.46875 C 202.90625 221.351562 202.8125 221.257812 202.695312 221.257812 C 202.578125 221.257812 202.484375 221.351562 202.484375 221.46875 C 202.484375 221.585938 202.578125 221.679688 202.695312 221.679688 C 202.8125 221.679688 202.90625 221.585938 202.90625 221.46875 Z M 202.90625 221.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.285156 221.207031 C 199.285156 221.089844 199.191406 220.996094 199.074219 220.996094 C 198.957031 220.996094 198.863281 221.089844 198.863281 221.207031 C 198.863281 221.324219 198.957031 221.417969 199.074219 221.417969 C 199.191406 221.417969 199.285156 221.324219 199.285156 221.207031 Z M 199.285156 221.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.113281 223.730469 C 201.113281 223.613281 201.019531 223.519531 200.902344 223.519531 C 200.785156 223.519531 200.691406 223.613281 200.691406 223.730469 C 200.691406 223.847656 200.785156 223.941406 200.902344 223.941406 C 201.019531 223.941406 201.113281 223.847656 201.113281 223.730469 Z M 201.113281 223.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.046875 223.507812 C 205.046875 223.390625 204.953125 223.296875 204.835938 223.296875 C 204.71875 223.296875 204.625 223.390625 204.625 223.507812 C 204.625 223.625 204.71875 223.71875 204.835938 223.71875 C 204.953125 223.71875 205.046875 223.625 205.046875 223.507812 Z M 205.046875 223.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.910156 223.742188 C 205.910156 223.625 205.816406 223.53125 205.699219 223.53125 C 205.582031 223.53125 205.488281 223.625 205.488281 223.742188 C 205.488281 223.859375 205.582031 223.953125 205.699219 223.953125 C 205.816406 223.953125 205.910156 223.859375 205.910156 223.742188 Z M 205.910156 223.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.101562 222.671875 C 209.101562 222.554688 209.007812 222.460938 208.890625 222.460938 C 208.773438 222.460938 208.679688 222.554688 208.679688 222.671875 C 208.679688 222.789062 208.773438 222.882812 208.890625 222.882812 C 209.007812 222.882812 209.101562 222.789062 209.101562 222.671875 Z M 209.101562 222.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.648438 225.488281 C 208.648438 225.371094 208.554688 225.277344 208.4375 225.277344 C 208.320312 225.277344 208.226562 225.371094 208.226562 225.488281 C 208.226562 225.605469 208.320312 225.699219 208.4375 225.699219 C 208.554688 225.699219 208.648438 225.605469 208.648438 225.488281 Z M 208.648438 225.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.457031 224.46875 C 210.457031 224.351562 210.363281 224.257812 210.246094 224.257812 C 210.128906 224.257812 210.035156 224.351562 210.035156 224.46875 C 210.035156 224.585938 210.128906 224.679688 210.246094 224.679688 C 210.363281 224.679688 210.457031 224.585938 210.457031 224.46875 Z M 210.457031 224.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.820312 223.738281 C 211.820312 223.621094 211.726562 223.527344 211.609375 223.527344 C 211.492188 223.527344 211.398438 223.621094 211.398438 223.738281 C 211.398438 223.855469 211.492188 223.949219 211.609375 223.949219 C 211.726562 223.949219 211.820312 223.855469 211.820312 223.738281 Z M 211.820312 223.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.894531 224.621094 C 207.894531 224.503906 207.800781 224.410156 207.683594 224.410156 C 207.566406 224.410156 207.472656 224.503906 207.472656 224.621094 C 207.472656 224.738281 207.566406 224.832031 207.683594 224.832031 C 207.800781 224.832031 207.894531 224.738281 207.894531 224.621094 Z M 207.894531 224.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.820312 227.117188 C 206.820312 227 206.726562 226.90625 206.609375 226.90625 C 206.492188 226.90625 206.398438 227 206.398438 227.117188 C 206.398438 227.234375 206.492188 227.328125 206.609375 227.328125 C 206.726562 227.328125 206.820312 227.234375 206.820312 227.117188 Z M 206.820312 227.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.835938 227.554688 C 208.835938 227.4375 208.742188 227.34375 208.625 227.34375 C 208.507812 227.34375 208.414062 227.4375 208.414062 227.554688 C 208.414062 227.671875 208.507812 227.765625 208.625 227.765625 C 208.742188 227.765625 208.835938 227.671875 208.835938 227.554688 Z M 208.835938 227.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.355469 230.425781 C 209.355469 230.308594 209.261719 230.214844 209.144531 230.214844 C 209.027344 230.214844 208.933594 230.308594 208.933594 230.425781 C 208.933594 230.542969 209.027344 230.636719 209.144531 230.636719 C 209.261719 230.636719 209.355469 230.542969 209.355469 230.425781 Z M 209.355469 230.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.664062 229.984375 C 208.664062 229.867188 208.570312 229.773438 208.453125 229.773438 C 208.335938 229.773438 208.242188 229.867188 208.242188 229.984375 C 208.242188 230.101562 208.335938 230.195312 208.453125 230.195312 C 208.570312 230.195312 208.664062 230.101562 208.664062 229.984375 Z M 208.664062 229.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.824219 228.628906 C 209.824219 228.511719 209.730469 228.417969 209.613281 228.417969 C 209.496094 228.417969 209.402344 228.511719 209.402344 228.628906 C 209.402344 228.746094 209.496094 228.839844 209.613281 228.839844 C 209.730469 228.839844 209.824219 228.746094 209.824219 228.628906 Z M 209.824219 228.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.539062 228.015625 C 206.539062 227.898438 206.445312 227.804688 206.328125 227.804688 C 206.210938 227.804688 206.117188 227.898438 206.117188 228.015625 C 206.117188 228.132812 206.210938 228.226562 206.328125 228.226562 C 206.445312 228.226562 206.539062 228.132812 206.539062 228.015625 Z M 206.539062 228.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.3125 231.246094 C 206.3125 231.128906 206.21875 231.035156 206.101562 231.035156 C 205.984375 231.035156 205.890625 231.128906 205.890625 231.246094 C 205.890625 231.363281 205.984375 231.457031 206.101562 231.457031 C 206.21875 231.457031 206.3125 231.363281 206.3125 231.246094 Z M 206.3125 231.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.394531 231.742188 C 205.394531 231.625 205.300781 231.53125 205.183594 231.53125 C 205.066406 231.53125 204.972656 231.625 204.972656 231.742188 C 204.972656 231.859375 205.066406 231.953125 205.183594 231.953125 C 205.300781 231.953125 205.394531 231.859375 205.394531 231.742188 Z M 205.394531 231.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.054688 230.488281 C 206.054688 230.371094 205.960938 230.277344 205.84375 230.277344 C 205.726562 230.277344 205.632812 230.371094 205.632812 230.488281 C 205.632812 230.605469 205.726562 230.699219 205.84375 230.699219 C 205.960938 230.699219 206.054688 230.605469 206.054688 230.488281 Z M 206.054688 230.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.9375 227.949219 C 206.9375 227.832031 206.84375 227.738281 206.726562 227.738281 C 206.609375 227.738281 206.515625 227.832031 206.515625 227.949219 C 206.515625 228.066406 206.609375 228.160156 206.726562 228.160156 C 206.84375 228.160156 206.9375 228.066406 206.9375 227.949219 Z M 206.9375 227.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.058594 226.035156 C 208.058594 225.917969 207.964844 225.824219 207.847656 225.824219 C 207.730469 225.824219 207.636719 225.917969 207.636719 226.035156 C 207.636719 226.152344 207.730469 226.246094 207.847656 226.246094 C 207.964844 226.246094 208.058594 226.152344 208.058594 226.035156 Z M 208.058594 226.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.34375 226.042969 C 206.34375 225.925781 206.25 225.832031 206.132812 225.832031 C 206.015625 225.832031 205.921875 225.925781 205.921875 226.042969 C 205.921875 226.160156 206.015625 226.253906 206.132812 226.253906 C 206.25 226.253906 206.34375 226.160156 206.34375 226.042969 Z M 206.34375 226.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.269531 220.214844 C 203.269531 220.097656 203.175781 220.003906 203.058594 220.003906 C 202.941406 220.003906 202.847656 220.097656 202.847656 220.214844 C 202.847656 220.332031 202.941406 220.425781 203.058594 220.425781 C 203.175781 220.425781 203.269531 220.332031 203.269531 220.214844 Z M 203.269531 220.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.875 220.339844 C 197.875 220.222656 197.78125 220.128906 197.664062 220.128906 C 197.546875 220.128906 197.453125 220.222656 197.453125 220.339844 C 197.453125 220.457031 197.546875 220.550781 197.664062 220.550781 C 197.78125 220.550781 197.875 220.457031 197.875 220.339844 Z M 197.875 220.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.851562 223.292969 C 197.851562 223.175781 197.757812 223.082031 197.640625 223.082031 C 197.523438 223.082031 197.429688 223.175781 197.429688 223.292969 C 197.429688 223.410156 197.523438 223.503906 197.640625 223.503906 C 197.757812 223.503906 197.851562 223.410156 197.851562 223.292969 Z M 197.851562 223.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.832031 224.265625 C 201.832031 224.148438 201.738281 224.054688 201.621094 224.054688 C 201.503906 224.054688 201.410156 224.148438 201.410156 224.265625 C 201.410156 224.382812 201.503906 224.476562 201.621094 224.476562 C 201.738281 224.476562 201.832031 224.382812 201.832031 224.265625 Z M 201.832031 224.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.617188 224.128906 C 202.617188 224.011719 202.523438 223.917969 202.40625 223.917969 C 202.289062 223.917969 202.195312 224.011719 202.195312 224.128906 C 202.195312 224.246094 202.289062 224.339844 202.40625 224.339844 C 202.523438 224.339844 202.617188 224.246094 202.617188 224.128906 Z M 202.617188 224.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.515625 225.613281 C 203.515625 225.496094 203.421875 225.402344 203.304688 225.402344 C 203.1875 225.402344 203.09375 225.496094 203.09375 225.613281 C 203.09375 225.730469 203.1875 225.824219 203.304688 225.824219 C 203.421875 225.824219 203.515625 225.730469 203.515625 225.613281 Z M 203.515625 225.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.746094 227.058594 C 198.746094 226.941406 198.652344 226.847656 198.535156 226.847656 C 198.417969 226.847656 198.324219 226.941406 198.324219 227.058594 C 198.324219 227.175781 198.417969 227.269531 198.535156 227.269531 C 198.652344 227.269531 198.746094 227.175781 198.746094 227.058594 Z M 198.746094 227.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.160156 228.636719 C 199.160156 228.519531 199.066406 228.425781 198.949219 228.425781 C 198.832031 228.425781 198.738281 228.519531 198.738281 228.636719 C 198.738281 228.753906 198.832031 228.847656 198.949219 228.847656 C 199.066406 228.847656 199.160156 228.753906 199.160156 228.636719 Z M 199.160156 228.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.035156 228.792969 C 197.035156 228.675781 196.941406 228.582031 196.824219 228.582031 C 196.707031 228.582031 196.613281 228.675781 196.613281 228.792969 C 196.613281 228.910156 196.707031 229.003906 196.824219 229.003906 C 196.941406 229.003906 197.035156 228.910156 197.035156 228.792969 Z M 197.035156 228.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.359375 225.507812 C 196.359375 225.390625 196.265625 225.296875 196.148438 225.296875 C 196.03125 225.296875 195.9375 225.390625 195.9375 225.507812 C 195.9375 225.625 196.03125 225.71875 196.148438 225.71875 C 196.265625 225.71875 196.359375 225.625 196.359375 225.507812 Z M 196.359375 225.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.984375 228.136719 C 197.984375 228.019531 197.890625 227.925781 197.773438 227.925781 C 197.65625 227.925781 197.5625 228.019531 197.5625 228.136719 C 197.5625 228.253906 197.65625 228.347656 197.773438 228.347656 C 197.890625 228.347656 197.984375 228.253906 197.984375 228.136719 Z M 197.984375 228.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.191406 227.242188 C 199.191406 227.125 199.097656 227.03125 198.980469 227.03125 C 198.863281 227.03125 198.769531 227.125 198.769531 227.242188 C 198.769531 227.359375 198.863281 227.453125 198.980469 227.453125 C 199.097656 227.453125 199.191406 227.359375 199.191406 227.242188 Z M 199.191406 227.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.035156 227.421875 C 198.035156 227.304688 197.941406 227.210938 197.824219 227.210938 C 197.707031 227.210938 197.613281 227.304688 197.613281 227.421875 C 197.613281 227.539062 197.707031 227.632812 197.824219 227.632812 C 197.941406 227.632812 198.035156 227.539062 198.035156 227.421875 Z M 198.035156 227.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.8125 228.808594 C 194.8125 228.691406 194.71875 228.597656 194.601562 228.597656 C 194.484375 228.597656 194.390625 228.691406 194.390625 228.808594 C 194.390625 228.925781 194.484375 229.019531 194.601562 229.019531 C 194.71875 229.019531 194.8125 228.925781 194.8125 228.808594 Z M 194.8125 228.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.925781 231.523438 C 194.925781 231.40625 194.832031 231.3125 194.714844 231.3125 C 194.597656 231.3125 194.503906 231.40625 194.503906 231.523438 C 194.503906 231.640625 194.597656 231.734375 194.714844 231.734375 C 194.832031 231.734375 194.925781 231.640625 194.925781 231.523438 Z M 194.925781 231.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.683594 231.6875 C 194.683594 231.570312 194.589844 231.476562 194.472656 231.476562 C 194.355469 231.476562 194.261719 231.570312 194.261719 231.6875 C 194.261719 231.804688 194.355469 231.898438 194.472656 231.898438 C 194.589844 231.898438 194.683594 231.804688 194.683594 231.6875 Z M 194.683594 231.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.25 232.746094 C 193.25 232.628906 193.15625 232.535156 193.039062 232.535156 C 192.921875 232.535156 192.828125 232.628906 192.828125 232.746094 C 192.828125 232.863281 192.921875 232.957031 193.039062 232.957031 C 193.15625 232.957031 193.25 232.863281 193.25 232.746094 Z M 193.25 232.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.394531 230.289062 C 192.394531 230.171875 192.300781 230.078125 192.183594 230.078125 C 192.066406 230.078125 191.972656 230.171875 191.972656 230.289062 C 191.972656 230.40625 192.066406 230.5 192.183594 230.5 C 192.300781 230.5 192.394531 230.40625 192.394531 230.289062 Z M 192.394531 230.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.378906 229.417969 C 196.378906 229.300781 196.285156 229.207031 196.167969 229.207031 C 196.050781 229.207031 195.957031 229.300781 195.957031 229.417969 C 195.957031 229.535156 196.050781 229.628906 196.167969 229.628906 C 196.285156 229.628906 196.378906 229.535156 196.378906 229.417969 Z M 196.378906 229.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.21875 228.976562 C 201.21875 228.859375 201.125 228.765625 201.007812 228.765625 C 200.890625 228.765625 200.796875 228.859375 200.796875 228.976562 C 200.796875 229.09375 200.890625 229.1875 201.007812 229.1875 C 201.125 229.1875 201.21875 229.09375 201.21875 228.976562 Z M 201.21875 228.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.199219 225.074219 C 202.199219 224.957031 202.105469 224.863281 201.988281 224.863281 C 201.871094 224.863281 201.777344 224.957031 201.777344 225.074219 C 201.777344 225.191406 201.871094 225.285156 201.988281 225.285156 C 202.105469 225.285156 202.199219 225.191406 202.199219 225.074219 Z M 202.199219 225.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.980469 229.402344 C 202.980469 229.285156 202.886719 229.191406 202.769531 229.191406 C 202.652344 229.191406 202.558594 229.285156 202.558594 229.402344 C 202.558594 229.519531 202.652344 229.613281 202.769531 229.613281 C 202.886719 229.613281 202.980469 229.519531 202.980469 229.402344 Z M 202.980469 229.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.273438 227.066406 C 205.273438 226.949219 205.179688 226.855469 205.0625 226.855469 C 204.945312 226.855469 204.851562 226.949219 204.851562 227.066406 C 204.851562 227.183594 204.945312 227.277344 205.0625 227.277344 C 205.179688 227.277344 205.273438 227.183594 205.273438 227.066406 Z M 205.273438 227.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.1875 226.8125 C 205.1875 226.695312 205.09375 226.601562 204.976562 226.601562 C 204.859375 226.601562 204.765625 226.695312 204.765625 226.8125 C 204.765625 226.929688 204.859375 227.023438 204.976562 227.023438 C 205.09375 227.023438 205.1875 226.929688 205.1875 226.8125 Z M 205.1875 226.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.980469 227.128906 C 207.980469 227.011719 207.886719 226.917969 207.769531 226.917969 C 207.652344 226.917969 207.558594 227.011719 207.558594 227.128906 C 207.558594 227.246094 207.652344 227.339844 207.769531 227.339844 C 207.886719 227.339844 207.980469 227.246094 207.980469 227.128906 Z M 207.980469 227.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.253906 227.945312 C 208.253906 227.828125 208.160156 227.734375 208.042969 227.734375 C 207.925781 227.734375 207.832031 227.828125 207.832031 227.945312 C 207.832031 228.0625 207.925781 228.15625 208.042969 228.15625 C 208.160156 228.15625 208.253906 228.0625 208.253906 227.945312 Z M 208.253906 227.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.984375 227.128906 C 204.984375 227.011719 204.890625 226.917969 204.773438 226.917969 C 204.65625 226.917969 204.5625 227.011719 204.5625 227.128906 C 204.5625 227.246094 204.65625 227.339844 204.773438 227.339844 C 204.890625 227.339844 204.984375 227.246094 204.984375 227.128906 Z M 204.984375 227.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.589844 228.449219 C 205.589844 228.332031 205.496094 228.238281 205.378906 228.238281 C 205.261719 228.238281 205.167969 228.332031 205.167969 228.449219 C 205.167969 228.566406 205.261719 228.660156 205.378906 228.660156 C 205.496094 228.660156 205.589844 228.566406 205.589844 228.449219 Z M 205.589844 228.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.90625 229.308594 C 204.90625 229.191406 204.8125 229.097656 204.695312 229.097656 C 204.578125 229.097656 204.484375 229.191406 204.484375 229.308594 C 204.484375 229.425781 204.578125 229.519531 204.695312 229.519531 C 204.8125 229.519531 204.90625 229.425781 204.90625 229.308594 Z M 204.90625 229.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.589844 229.859375 C 202.589844 229.742188 202.496094 229.648438 202.378906 229.648438 C 202.261719 229.648438 202.167969 229.742188 202.167969 229.859375 C 202.167969 229.976562 202.261719 230.070312 202.378906 230.070312 C 202.496094 230.070312 202.589844 229.976562 202.589844 229.859375 Z M 202.589844 229.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.640625 231.585938 C 201.640625 231.46875 201.546875 231.375 201.429688 231.375 C 201.3125 231.375 201.21875 231.46875 201.21875 231.585938 C 201.21875 231.703125 201.3125 231.796875 201.429688 231.796875 C 201.546875 231.796875 201.640625 231.703125 201.640625 231.585938 Z M 201.640625 231.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.574219 232.929688 C 203.574219 232.8125 203.480469 232.71875 203.363281 232.71875 C 203.246094 232.71875 203.152344 232.8125 203.152344 232.929688 C 203.152344 233.046875 203.246094 233.140625 203.363281 233.140625 C 203.480469 233.140625 203.574219 233.046875 203.574219 232.929688 Z M 203.574219 232.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.980469 231.0625 C 202.980469 230.945312 202.886719 230.851562 202.769531 230.851562 C 202.652344 230.851562 202.558594 230.945312 202.558594 231.0625 C 202.558594 231.179688 202.652344 231.273438 202.769531 231.273438 C 202.886719 231.273438 202.980469 231.179688 202.980469 231.0625 Z M 202.980469 231.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.574219 231.070312 C 200.574219 230.953125 200.480469 230.859375 200.363281 230.859375 C 200.246094 230.859375 200.152344 230.953125 200.152344 231.070312 C 200.152344 231.1875 200.246094 231.28125 200.363281 231.28125 C 200.480469 231.28125 200.574219 231.1875 200.574219 231.070312 Z M 200.574219 231.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.964844 231.5625 C 198.964844 231.445312 198.871094 231.351562 198.753906 231.351562 C 198.636719 231.351562 198.542969 231.445312 198.542969 231.5625 C 198.542969 231.679688 198.636719 231.773438 198.753906 231.773438 C 198.871094 231.773438 198.964844 231.679688 198.964844 231.5625 Z M 198.964844 231.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.070312 232.988281 C 197.070312 232.871094 196.976562 232.777344 196.859375 232.777344 C 196.742188 232.777344 196.648438 232.871094 196.648438 232.988281 C 196.648438 233.105469 196.742188 233.199219 196.859375 233.199219 C 196.976562 233.199219 197.070312 233.105469 197.070312 232.988281 Z M 197.070312 232.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.738281 230.726562 C 199.738281 230.609375 199.644531 230.515625 199.527344 230.515625 C 199.410156 230.515625 199.316406 230.609375 199.316406 230.726562 C 199.316406 230.84375 199.410156 230.9375 199.527344 230.9375 C 199.644531 230.9375 199.738281 230.84375 199.738281 230.726562 Z M 199.738281 230.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.21875 230.789062 C 203.21875 230.671875 203.125 230.578125 203.007812 230.578125 C 202.890625 230.578125 202.796875 230.671875 202.796875 230.789062 C 202.796875 230.90625 202.890625 231 203.007812 231 C 203.125 231 203.21875 230.90625 203.21875 230.789062 Z M 203.21875 230.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.804688 233.1875 C 202.804688 233.070312 202.710938 232.976562 202.59375 232.976562 C 202.476562 232.976562 202.382812 233.070312 202.382812 233.1875 C 202.382812 233.304688 202.476562 233.398438 202.59375 233.398438 C 202.710938 233.398438 202.804688 233.304688 202.804688 233.1875 Z M 202.804688 233.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.121094 232.335938 C 201.121094 232.21875 201.027344 232.125 200.910156 232.125 C 200.792969 232.125 200.699219 232.21875 200.699219 232.335938 C 200.699219 232.453125 200.792969 232.546875 200.910156 232.546875 C 201.027344 232.546875 201.121094 232.453125 201.121094 232.335938 Z M 201.121094 232.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.644531 234.546875 C 199.644531 234.429688 199.550781 234.335938 199.433594 234.335938 C 199.316406 234.335938 199.222656 234.429688 199.222656 234.546875 C 199.222656 234.664062 199.316406 234.757812 199.433594 234.757812 C 199.550781 234.757812 199.644531 234.664062 199.644531 234.546875 Z M 199.644531 234.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.902344 234.460938 C 198.902344 234.34375 198.808594 234.25 198.691406 234.25 C 198.574219 234.25 198.480469 234.34375 198.480469 234.460938 C 198.480469 234.578125 198.574219 234.671875 198.691406 234.671875 C 198.808594 234.671875 198.902344 234.578125 198.902344 234.460938 Z M 198.902344 234.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.628906 232.3125 C 199.628906 232.195312 199.535156 232.101562 199.417969 232.101562 C 199.300781 232.101562 199.207031 232.195312 199.207031 232.3125 C 199.207031 232.429688 199.300781 232.523438 199.417969 232.523438 C 199.535156 232.523438 199.628906 232.429688 199.628906 232.3125 Z M 199.628906 232.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.523438 234.324219 C 199.523438 234.207031 199.429688 234.113281 199.3125 234.113281 C 199.195312 234.113281 199.101562 234.207031 199.101562 234.324219 C 199.101562 234.441406 199.195312 234.535156 199.3125 234.535156 C 199.429688 234.535156 199.523438 234.441406 199.523438 234.324219 Z M 199.523438 234.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.265625 235.03125 C 200.265625 234.914062 200.171875 234.820312 200.054688 234.820312 C 199.9375 234.820312 199.84375 234.914062 199.84375 235.03125 C 199.84375 235.148438 199.9375 235.242188 200.054688 235.242188 C 200.171875 235.242188 200.265625 235.148438 200.265625 235.03125 Z M 200.265625 235.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.09375 235.226562 C 198.09375 235.109375 198 235.015625 197.882812 235.015625 C 197.765625 235.015625 197.671875 235.109375 197.671875 235.226562 C 197.671875 235.34375 197.765625 235.4375 197.882812 235.4375 C 198 235.4375 198.09375 235.34375 198.09375 235.226562 Z M 198.09375 235.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.1875 231.117188 C 199.1875 231 199.09375 230.90625 198.976562 230.90625 C 198.859375 230.90625 198.765625 231 198.765625 231.117188 C 198.765625 231.234375 198.859375 231.328125 198.976562 231.328125 C 199.09375 231.328125 199.1875 231.234375 199.1875 231.117188 Z M 199.1875 231.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.296875 230.851562 C 195.296875 230.734375 195.203125 230.640625 195.085938 230.640625 C 194.96875 230.640625 194.875 230.734375 194.875 230.851562 C 194.875 230.96875 194.96875 231.0625 195.085938 231.0625 C 195.203125 231.0625 195.296875 230.96875 195.296875 230.851562 Z M 195.296875 230.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.789062 230.445312 C 198.789062 230.328125 198.695312 230.234375 198.578125 230.234375 C 198.460938 230.234375 198.367188 230.328125 198.367188 230.445312 C 198.367188 230.5625 198.460938 230.65625 198.578125 230.65625 C 198.695312 230.65625 198.789062 230.5625 198.789062 230.445312 Z M 198.789062 230.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.515625 231.65625 C 197.515625 231.539062 197.421875 231.445312 197.304688 231.445312 C 197.1875 231.445312 197.09375 231.539062 197.09375 231.65625 C 197.09375 231.773438 197.1875 231.867188 197.304688 231.867188 C 197.421875 231.867188 197.515625 231.773438 197.515625 231.65625 Z M 197.515625 231.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.765625 232.152344 C 196.765625 232.035156 196.671875 231.941406 196.554688 231.941406 C 196.4375 231.941406 196.34375 232.035156 196.34375 232.152344 C 196.34375 232.269531 196.4375 232.363281 196.554688 232.363281 C 196.671875 232.363281 196.765625 232.269531 196.765625 232.152344 Z M 196.765625 232.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.636719 231.078125 C 193.636719 230.960938 193.542969 230.867188 193.425781 230.867188 C 193.308594 230.867188 193.214844 230.960938 193.214844 231.078125 C 193.214844 231.195312 193.308594 231.289062 193.425781 231.289062 C 193.542969 231.289062 193.636719 231.195312 193.636719 231.078125 Z M 193.636719 231.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.949219 231.824219 C 192.949219 231.707031 192.855469 231.613281 192.738281 231.613281 C 192.621094 231.613281 192.527344 231.707031 192.527344 231.824219 C 192.527344 231.941406 192.621094 232.035156 192.738281 232.035156 C 192.855469 232.035156 192.949219 231.941406 192.949219 231.824219 Z M 192.949219 231.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.597656 231.140625 C 189.597656 231.023438 189.503906 230.929688 189.386719 230.929688 C 189.269531 230.929688 189.175781 231.023438 189.175781 231.140625 C 189.175781 231.257812 189.269531 231.351562 189.386719 231.351562 C 189.503906 231.351562 189.597656 231.257812 189.597656 231.140625 Z M 189.597656 231.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.832031 229.734375 C 190.832031 229.617188 190.738281 229.523438 190.621094 229.523438 C 190.503906 229.523438 190.410156 229.617188 190.410156 229.734375 C 190.410156 229.851562 190.503906 229.945312 190.621094 229.945312 C 190.738281 229.945312 190.832031 229.851562 190.832031 229.734375 Z M 190.832031 229.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.988281 229.875 C 192.988281 229.757812 192.894531 229.664062 192.777344 229.664062 C 192.660156 229.664062 192.566406 229.757812 192.566406 229.875 C 192.566406 229.992188 192.660156 230.085938 192.777344 230.085938 C 192.894531 230.085938 192.988281 229.992188 192.988281 229.875 Z M 192.988281 229.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.484375 232.054688 C 196.484375 231.9375 196.390625 231.84375 196.273438 231.84375 C 196.15625 231.84375 196.0625 231.9375 196.0625 232.054688 C 196.0625 232.171875 196.15625 232.265625 196.273438 232.265625 C 196.390625 232.265625 196.484375 232.171875 196.484375 232.054688 Z M 196.484375 232.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.441406 232.28125 C 194.441406 232.164062 194.347656 232.070312 194.230469 232.070312 C 194.113281 232.070312 194.019531 232.164062 194.019531 232.28125 C 194.019531 232.398438 194.113281 232.492188 194.230469 232.492188 C 194.347656 232.492188 194.441406 232.398438 194.441406 232.28125 Z M 194.441406 232.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.070312 230.191406 C 195.070312 230.074219 194.976562 229.980469 194.859375 229.980469 C 194.742188 229.980469 194.648438 230.074219 194.648438 230.191406 C 194.648438 230.308594 194.742188 230.402344 194.859375 230.402344 C 194.976562 230.402344 195.070312 230.308594 195.070312 230.191406 Z M 195.070312 230.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.613281 231.289062 C 195.613281 231.171875 195.519531 231.078125 195.402344 231.078125 C 195.285156 231.078125 195.191406 231.171875 195.191406 231.289062 C 195.191406 231.40625 195.285156 231.5 195.402344 231.5 C 195.519531 231.5 195.613281 231.40625 195.613281 231.289062 Z M 195.613281 231.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.234375 232.730469 C 196.234375 232.613281 196.140625 232.519531 196.023438 232.519531 C 195.90625 232.519531 195.8125 232.613281 195.8125 232.730469 C 195.8125 232.847656 195.90625 232.941406 196.023438 232.941406 C 196.140625 232.941406 196.234375 232.847656 196.234375 232.730469 Z M 196.234375 232.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.972656 234.976562 C 197.972656 234.859375 197.878906 234.765625 197.761719 234.765625 C 197.644531 234.765625 197.550781 234.859375 197.550781 234.976562 C 197.550781 235.09375 197.644531 235.1875 197.761719 235.1875 C 197.878906 235.1875 197.972656 235.09375 197.972656 234.976562 Z M 197.972656 234.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.933594 233.765625 C 197.933594 233.648438 197.839844 233.554688 197.722656 233.554688 C 197.605469 233.554688 197.511719 233.648438 197.511719 233.765625 C 197.511719 233.882812 197.605469 233.976562 197.722656 233.976562 C 197.839844 233.976562 197.933594 233.882812 197.933594 233.765625 Z M 197.933594 233.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.375 235.390625 C 199.375 235.273438 199.28125 235.179688 199.164062 235.179688 C 199.046875 235.179688 198.953125 235.273438 198.953125 235.390625 C 198.953125 235.507812 199.046875 235.601562 199.164062 235.601562 C 199.28125 235.601562 199.375 235.507812 199.375 235.390625 Z M 199.375 235.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.460938 236.894531 C 198.460938 236.777344 198.367188 236.683594 198.25 236.683594 C 198.132812 236.683594 198.039062 236.777344 198.039062 236.894531 C 198.039062 237.011719 198.132812 237.105469 198.25 237.105469 C 198.367188 237.105469 198.460938 237.011719 198.460938 236.894531 Z M 198.460938 236.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.691406 239.140625 C 197.691406 239.023438 197.597656 238.929688 197.480469 238.929688 C 197.363281 238.929688 197.269531 239.023438 197.269531 239.140625 C 197.269531 239.257812 197.363281 239.351562 197.480469 239.351562 C 197.597656 239.351562 197.691406 239.257812 197.691406 239.140625 Z M 197.691406 239.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.167969 241.75 C 192.167969 241.632812 192.074219 241.539062 191.957031 241.539062 C 191.839844 241.539062 191.746094 241.632812 191.746094 241.75 C 191.746094 241.867188 191.839844 241.960938 191.957031 241.960938 C 192.074219 241.960938 192.167969 241.867188 192.167969 241.75 Z M 192.167969 241.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.957031 241.246094 C 194.957031 241.128906 194.863281 241.035156 194.746094 241.035156 C 194.628906 241.035156 194.535156 241.128906 194.535156 241.246094 C 194.535156 241.363281 194.628906 241.457031 194.746094 241.457031 C 194.863281 241.457031 194.957031 241.363281 194.957031 241.246094 Z M 194.957031 241.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.699219 241.429688 C 194.699219 241.3125 194.605469 241.21875 194.488281 241.21875 C 194.371094 241.21875 194.277344 241.3125 194.277344 241.429688 C 194.277344 241.546875 194.371094 241.640625 194.488281 241.640625 C 194.605469 241.640625 194.699219 241.546875 194.699219 241.429688 Z M 194.699219 241.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.171875 240.953125 C 194.171875 240.835938 194.078125 240.742188 193.960938 240.742188 C 193.84375 240.742188 193.75 240.835938 193.75 240.953125 C 193.75 241.070312 193.84375 241.164062 193.960938 241.164062 C 194.078125 241.164062 194.171875 241.070312 194.171875 240.953125 Z M 194.171875 240.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.949219 243.386719 C 193.949219 243.269531 193.855469 243.175781 193.738281 243.175781 C 193.621094 243.175781 193.527344 243.269531 193.527344 243.386719 C 193.527344 243.503906 193.621094 243.597656 193.738281 243.597656 C 193.855469 243.597656 193.949219 243.503906 193.949219 243.386719 Z M 193.949219 243.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.417969 244.257812 C 193.417969 244.140625 193.324219 244.046875 193.207031 244.046875 C 193.089844 244.046875 192.996094 244.140625 192.996094 244.257812 C 192.996094 244.375 193.089844 244.46875 193.207031 244.46875 C 193.324219 244.46875 193.417969 244.375 193.417969 244.257812 Z M 193.417969 244.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.316406 245.109375 C 195.316406 244.992188 195.222656 244.898438 195.105469 244.898438 C 194.988281 244.898438 194.894531 244.992188 194.894531 245.109375 C 194.894531 245.226562 194.988281 245.320312 195.105469 245.320312 C 195.222656 245.320312 195.316406 245.226562 195.316406 245.109375 Z M 195.316406 245.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.949219 245.078125 C 192.949219 244.960938 192.855469 244.867188 192.738281 244.867188 C 192.621094 244.867188 192.527344 244.960938 192.527344 245.078125 C 192.527344 245.195312 192.621094 245.289062 192.738281 245.289062 C 192.855469 245.289062 192.949219 245.195312 192.949219 245.078125 Z M 192.949219 245.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.925781 243.929688 C 190.925781 243.8125 190.832031 243.71875 190.714844 243.71875 C 190.597656 243.71875 190.503906 243.8125 190.503906 243.929688 C 190.503906 244.046875 190.597656 244.140625 190.714844 244.140625 C 190.832031 244.140625 190.925781 244.046875 190.925781 243.929688 Z M 190.925781 243.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.359375 243.140625 C 191.359375 243.023438 191.265625 242.929688 191.148438 242.929688 C 191.03125 242.929688 190.9375 243.023438 190.9375 243.140625 C 190.9375 243.257812 191.03125 243.351562 191.148438 243.351562 C 191.265625 243.351562 191.359375 243.257812 191.359375 243.140625 Z M 191.359375 243.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.800781 242.90625 C 195.800781 242.789062 195.707031 242.695312 195.589844 242.695312 C 195.472656 242.695312 195.378906 242.789062 195.378906 242.90625 C 195.378906 243.023438 195.472656 243.117188 195.589844 243.117188 C 195.707031 243.117188 195.800781 243.023438 195.800781 242.90625 Z M 195.800781 242.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.019531 244.996094 C 194.019531 244.878906 193.925781 244.785156 193.808594 244.785156 C 193.691406 244.785156 193.597656 244.878906 193.597656 244.996094 C 193.597656 245.113281 193.691406 245.207031 193.808594 245.207031 C 193.925781 245.207031 194.019531 245.113281 194.019531 244.996094 Z M 194.019531 244.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.457031 240.25 C 192.457031 240.132812 192.363281 240.039062 192.246094 240.039062 C 192.128906 240.039062 192.035156 240.132812 192.035156 240.25 C 192.035156 240.367188 192.128906 240.460938 192.246094 240.460938 C 192.363281 240.460938 192.457031 240.367188 192.457031 240.25 Z M 192.457031 240.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.640625 238.382812 C 194.640625 238.265625 194.546875 238.171875 194.429688 238.171875 C 194.3125 238.171875 194.21875 238.265625 194.21875 238.382812 C 194.21875 238.5 194.3125 238.59375 194.429688 238.59375 C 194.546875 238.59375 194.640625 238.5 194.640625 238.382812 Z M 194.640625 238.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.546875 239.1875 C 196.546875 239.070312 196.453125 238.976562 196.335938 238.976562 C 196.21875 238.976562 196.125 239.070312 196.125 239.1875 C 196.125 239.304688 196.21875 239.398438 196.335938 239.398438 C 196.453125 239.398438 196.546875 239.304688 196.546875 239.1875 Z M 196.546875 239.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.71875 240.308594 C 195.71875 240.191406 195.625 240.097656 195.507812 240.097656 C 195.390625 240.097656 195.296875 240.191406 195.296875 240.308594 C 195.296875 240.425781 195.390625 240.519531 195.507812 240.519531 C 195.625 240.519531 195.71875 240.425781 195.71875 240.308594 Z M 195.71875 240.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.789062 238.757812 C 197.789062 238.640625 197.695312 238.546875 197.578125 238.546875 C 197.460938 238.546875 197.367188 238.640625 197.367188 238.757812 C 197.367188 238.875 197.460938 238.96875 197.578125 238.96875 C 197.695312 238.96875 197.789062 238.875 197.789062 238.757812 Z M 197.789062 238.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.546875 238.695312 C 195.546875 238.578125 195.453125 238.484375 195.335938 238.484375 C 195.21875 238.484375 195.125 238.578125 195.125 238.695312 C 195.125 238.8125 195.21875 238.90625 195.335938 238.90625 C 195.453125 238.90625 195.546875 238.8125 195.546875 238.695312 Z M 195.546875 238.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.101562 239.976562 C 197.101562 239.859375 197.007812 239.765625 196.890625 239.765625 C 196.773438 239.765625 196.679688 239.859375 196.679688 239.976562 C 196.679688 240.09375 196.773438 240.1875 196.890625 240.1875 C 197.007812 240.1875 197.101562 240.09375 197.101562 239.976562 Z M 197.101562 239.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.777344 242.296875 C 196.777344 242.179688 196.683594 242.085938 196.566406 242.085938 C 196.449219 242.085938 196.355469 242.179688 196.355469 242.296875 C 196.355469 242.414062 196.449219 242.507812 196.566406 242.507812 C 196.683594 242.507812 196.777344 242.414062 196.777344 242.296875 Z M 196.777344 242.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.832031 242.515625 C 197.832031 242.398438 197.738281 242.304688 197.621094 242.304688 C 197.503906 242.304688 197.410156 242.398438 197.410156 242.515625 C 197.410156 242.632812 197.503906 242.726562 197.621094 242.726562 C 197.738281 242.726562 197.832031 242.632812 197.832031 242.515625 Z M 197.832031 242.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.734375 245.546875 C 194.734375 245.429688 194.640625 245.335938 194.523438 245.335938 C 194.40625 245.335938 194.3125 245.429688 194.3125 245.546875 C 194.3125 245.664062 194.40625 245.757812 194.523438 245.757812 C 194.640625 245.757812 194.734375 245.664062 194.734375 245.546875 Z M 194.734375 245.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.730469 245.621094 C 192.730469 245.503906 192.636719 245.410156 192.519531 245.410156 C 192.402344 245.410156 192.308594 245.503906 192.308594 245.621094 C 192.308594 245.738281 192.402344 245.832031 192.519531 245.832031 C 192.636719 245.832031 192.730469 245.738281 192.730469 245.621094 Z M 192.730469 245.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.117188 245.941406 C 193.117188 245.824219 193.023438 245.730469 192.90625 245.730469 C 192.789062 245.730469 192.695312 245.824219 192.695312 245.941406 C 192.695312 246.058594 192.789062 246.152344 192.90625 246.152344 C 193.023438 246.152344 193.117188 246.058594 193.117188 245.941406 Z M 193.117188 245.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.019531 243.332031 C 193.019531 243.214844 192.925781 243.121094 192.808594 243.121094 C 192.691406 243.121094 192.597656 243.214844 192.597656 243.332031 C 192.597656 243.449219 192.691406 243.542969 192.808594 243.542969 C 192.925781 243.542969 193.019531 243.449219 193.019531 243.332031 Z M 193.019531 243.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.082031 243.894531 C 197.082031 243.777344 196.988281 243.683594 196.871094 243.683594 C 196.753906 243.683594 196.660156 243.777344 196.660156 243.894531 C 196.660156 244.011719 196.753906 244.105469 196.871094 244.105469 C 196.988281 244.105469 197.082031 244.011719 197.082031 243.894531 Z M 197.082031 243.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.738281 243.65625 C 198.738281 243.539062 198.644531 243.445312 198.527344 243.445312 C 198.410156 243.445312 198.316406 243.539062 198.316406 243.65625 C 198.316406 243.773438 198.410156 243.867188 198.527344 243.867188 C 198.644531 243.867188 198.738281 243.773438 198.738281 243.65625 Z M 198.738281 243.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.898438 247.4375 C 198.898438 247.320312 198.804688 247.226562 198.6875 247.226562 C 198.570312 247.226562 198.476562 247.320312 198.476562 247.4375 C 198.476562 247.554688 198.570312 247.648438 198.6875 247.648438 C 198.804688 247.648438 198.898438 247.554688 198.898438 247.4375 Z M 198.898438 247.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.8125 246.878906 C 198.8125 246.761719 198.71875 246.667969 198.601562 246.667969 C 198.484375 246.667969 198.390625 246.761719 198.390625 246.878906 C 198.390625 246.996094 198.484375 247.089844 198.601562 247.089844 C 198.71875 247.089844 198.8125 246.996094 198.8125 246.878906 Z M 198.8125 246.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.082031 248.351562 C 201.082031 248.234375 200.988281 248.140625 200.871094 248.140625 C 200.753906 248.140625 200.660156 248.234375 200.660156 248.351562 C 200.660156 248.46875 200.753906 248.5625 200.871094 248.5625 C 200.988281 248.5625 201.082031 248.46875 201.082031 248.351562 Z M 201.082031 248.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.089844 246.699219 C 205.089844 246.582031 204.996094 246.488281 204.878906 246.488281 C 204.761719 246.488281 204.667969 246.582031 204.667969 246.699219 C 204.667969 246.816406 204.761719 246.910156 204.878906 246.910156 C 204.996094 246.910156 205.089844 246.816406 205.089844 246.699219 Z M 205.089844 246.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.679688 244.960938 C 200.679688 244.84375 200.585938 244.75 200.46875 244.75 C 200.351562 244.75 200.257812 244.84375 200.257812 244.960938 C 200.257812 245.078125 200.351562 245.171875 200.46875 245.171875 C 200.585938 245.171875 200.679688 245.078125 200.679688 244.960938 Z M 200.679688 244.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.230469 242.917969 C 199.230469 242.800781 199.136719 242.707031 199.019531 242.707031 C 198.902344 242.707031 198.808594 242.800781 198.808594 242.917969 C 198.808594 243.035156 198.902344 243.128906 199.019531 243.128906 C 199.136719 243.128906 199.230469 243.035156 199.230469 242.917969 Z M 199.230469 242.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.859375 243.953125 C 199.859375 243.835938 199.765625 243.742188 199.648438 243.742188 C 199.53125 243.742188 199.4375 243.835938 199.4375 243.953125 C 199.4375 244.070312 199.53125 244.164062 199.648438 244.164062 C 199.765625 244.164062 199.859375 244.070312 199.859375 243.953125 Z M 199.859375 243.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.023438 245.019531 C 201.023438 244.902344 200.929688 244.808594 200.8125 244.808594 C 200.695312 244.808594 200.601562 244.902344 200.601562 245.019531 C 200.601562 245.136719 200.695312 245.230469 200.8125 245.230469 C 200.929688 245.230469 201.023438 245.136719 201.023438 245.019531 Z M 201.023438 245.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.195312 246.496094 C 203.195312 246.378906 203.101562 246.285156 202.984375 246.285156 C 202.867188 246.285156 202.773438 246.378906 202.773438 246.496094 C 202.773438 246.613281 202.867188 246.707031 202.984375 246.707031 C 203.101562 246.707031 203.195312 246.613281 203.195312 246.496094 Z M 203.195312 246.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.804688 250.078125 C 200.804688 249.960938 200.710938 249.867188 200.59375 249.867188 C 200.476562 249.867188 200.382812 249.960938 200.382812 250.078125 C 200.382812 250.195312 200.476562 250.289062 200.59375 250.289062 C 200.710938 250.289062 200.804688 250.195312 200.804688 250.078125 Z M 200.804688 250.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.050781 250.949219 C 203.050781 250.832031 202.957031 250.738281 202.839844 250.738281 C 202.722656 250.738281 202.628906 250.832031 202.628906 250.949219 C 202.628906 251.066406 202.722656 251.160156 202.839844 251.160156 C 202.957031 251.160156 203.050781 251.066406 203.050781 250.949219 Z M 203.050781 250.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.5625 252.246094 C 201.5625 252.128906 201.46875 252.035156 201.351562 252.035156 C 201.234375 252.035156 201.140625 252.128906 201.140625 252.246094 C 201.140625 252.363281 201.234375 252.457031 201.351562 252.457031 C 201.46875 252.457031 201.5625 252.363281 201.5625 252.246094 Z M 201.5625 252.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.003906 254.441406 C 203.003906 254.324219 202.910156 254.230469 202.792969 254.230469 C 202.675781 254.230469 202.582031 254.324219 202.582031 254.441406 C 202.582031 254.558594 202.675781 254.652344 202.792969 254.652344 C 202.910156 254.652344 203.003906 254.558594 203.003906 254.441406 Z M 203.003906 254.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.253906 252.238281 C 202.253906 252.121094 202.160156 252.027344 202.042969 252.027344 C 201.925781 252.027344 201.832031 252.121094 201.832031 252.238281 C 201.832031 252.355469 201.925781 252.449219 202.042969 252.449219 C 202.160156 252.449219 202.253906 252.355469 202.253906 252.238281 Z M 202.253906 252.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.605469 253.453125 C 202.605469 253.335938 202.511719 253.242188 202.394531 253.242188 C 202.277344 253.242188 202.183594 253.335938 202.183594 253.453125 C 202.183594 253.570312 202.277344 253.664062 202.394531 253.664062 C 202.511719 253.664062 202.605469 253.570312 202.605469 253.453125 Z M 202.605469 253.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.203125 249.582031 C 203.203125 249.464844 203.109375 249.371094 202.992188 249.371094 C 202.875 249.371094 202.78125 249.464844 202.78125 249.582031 C 202.78125 249.699219 202.875 249.792969 202.992188 249.792969 C 203.109375 249.792969 203.203125 249.699219 203.203125 249.582031 Z M 203.203125 249.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.851562 248.414062 C 203.851562 248.296875 203.757812 248.203125 203.640625 248.203125 C 203.523438 248.203125 203.429688 248.296875 203.429688 248.414062 C 203.429688 248.53125 203.523438 248.625 203.640625 248.625 C 203.757812 248.625 203.851562 248.53125 203.851562 248.414062 Z M 203.851562 248.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.152344 251.425781 C 202.152344 251.308594 202.058594 251.214844 201.941406 251.214844 C 201.824219 251.214844 201.730469 251.308594 201.730469 251.425781 C 201.730469 251.542969 201.824219 251.636719 201.941406 251.636719 C 202.058594 251.636719 202.152344 251.542969 202.152344 251.425781 Z M 202.152344 251.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.765625 255.820312 C 201.765625 255.703125 201.671875 255.609375 201.554688 255.609375 C 201.4375 255.609375 201.34375 255.703125 201.34375 255.820312 C 201.34375 255.9375 201.4375 256.03125 201.554688 256.03125 C 201.671875 256.03125 201.765625 255.9375 201.765625 255.820312 Z M 201.765625 255.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.683594 254.242188 C 203.683594 254.125 203.589844 254.03125 203.472656 254.03125 C 203.355469 254.03125 203.261719 254.125 203.261719 254.242188 C 203.261719 254.359375 203.355469 254.453125 203.472656 254.453125 C 203.589844 254.453125 203.683594 254.359375 203.683594 254.242188 Z M 203.683594 254.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.558594 254.335938 C 198.558594 254.21875 198.464844 254.125 198.347656 254.125 C 198.230469 254.125 198.136719 254.21875 198.136719 254.335938 C 198.136719 254.453125 198.230469 254.546875 198.347656 254.546875 C 198.464844 254.546875 198.558594 254.453125 198.558594 254.335938 Z M 198.558594 254.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.492188 252.949219 C 196.492188 252.832031 196.398438 252.738281 196.28125 252.738281 C 196.164062 252.738281 196.070312 252.832031 196.070312 252.949219 C 196.070312 253.066406 196.164062 253.160156 196.28125 253.160156 C 196.398438 253.160156 196.492188 253.066406 196.492188 252.949219 Z M 196.492188 252.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.570312 253.742188 C 197.570312 253.625 197.476562 253.53125 197.359375 253.53125 C 197.242188 253.53125 197.148438 253.625 197.148438 253.742188 C 197.148438 253.859375 197.242188 253.953125 197.359375 253.953125 C 197.476562 253.953125 197.570312 253.859375 197.570312 253.742188 Z M 197.570312 253.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.097656 255.582031 C 198.097656 255.464844 198.003906 255.371094 197.886719 255.371094 C 197.769531 255.371094 197.675781 255.464844 197.675781 255.582031 C 197.675781 255.699219 197.769531 255.792969 197.886719 255.792969 C 198.003906 255.792969 198.097656 255.699219 198.097656 255.582031 Z M 198.097656 255.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.007812 253.777344 C 194.007812 253.660156 193.914062 253.566406 193.796875 253.566406 C 193.679688 253.566406 193.585938 253.660156 193.585938 253.777344 C 193.585938 253.894531 193.679688 253.988281 193.796875 253.988281 C 193.914062 253.988281 194.007812 253.894531 194.007812 253.777344 Z M 194.007812 253.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.085938 253.695312 C 193.085938 253.578125 192.992188 253.484375 192.875 253.484375 C 192.757812 253.484375 192.664062 253.578125 192.664062 253.695312 C 192.664062 253.8125 192.757812 253.90625 192.875 253.90625 C 192.992188 253.90625 193.085938 253.8125 193.085938 253.695312 Z M 193.085938 253.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.417969 256.179688 C 193.417969 256.0625 193.324219 255.96875 193.207031 255.96875 C 193.089844 255.96875 192.996094 256.0625 192.996094 256.179688 C 192.996094 256.296875 193.089844 256.390625 193.207031 256.390625 C 193.324219 256.390625 193.417969 256.296875 193.417969 256.179688 Z M 193.417969 256.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.867188 256.476562 C 191.867188 256.359375 191.773438 256.265625 191.65625 256.265625 C 191.539062 256.265625 191.445312 256.359375 191.445312 256.476562 C 191.445312 256.59375 191.539062 256.6875 191.65625 256.6875 C 191.773438 256.6875 191.867188 256.59375 191.867188 256.476562 Z M 191.867188 256.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.761719 257.453125 C 191.761719 257.335938 191.667969 257.242188 191.550781 257.242188 C 191.433594 257.242188 191.339844 257.335938 191.339844 257.453125 C 191.339844 257.570312 191.433594 257.664062 191.550781 257.664062 C 191.667969 257.664062 191.761719 257.570312 191.761719 257.453125 Z M 191.761719 257.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.160156 256.441406 C 192.160156 256.324219 192.066406 256.230469 191.949219 256.230469 C 191.832031 256.230469 191.738281 256.324219 191.738281 256.441406 C 191.738281 256.558594 191.832031 256.652344 191.949219 256.652344 C 192.066406 256.652344 192.160156 256.558594 192.160156 256.441406 Z M 192.160156 256.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.671875 257.347656 C 190.671875 257.230469 190.578125 257.136719 190.460938 257.136719 C 190.34375 257.136719 190.25 257.230469 190.25 257.347656 C 190.25 257.464844 190.34375 257.558594 190.460938 257.558594 C 190.578125 257.558594 190.671875 257.464844 190.671875 257.347656 Z M 190.671875 257.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.5625 256.703125 C 188.5625 256.585938 188.46875 256.492188 188.351562 256.492188 C 188.234375 256.492188 188.140625 256.585938 188.140625 256.703125 C 188.140625 256.820312 188.234375 256.914062 188.351562 256.914062 C 188.46875 256.914062 188.5625 256.820312 188.5625 256.703125 Z M 188.5625 256.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.074219 254.644531 C 189.074219 254.527344 188.980469 254.433594 188.863281 254.433594 C 188.746094 254.433594 188.652344 254.527344 188.652344 254.644531 C 188.652344 254.761719 188.746094 254.855469 188.863281 254.855469 C 188.980469 254.855469 189.074219 254.761719 189.074219 254.644531 Z M 189.074219 254.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.320312 254.273438 C 187.320312 254.15625 187.226562 254.0625 187.109375 254.0625 C 186.992188 254.0625 186.898438 254.15625 186.898438 254.273438 C 186.898438 254.390625 186.992188 254.484375 187.109375 254.484375 C 187.226562 254.484375 187.320312 254.390625 187.320312 254.273438 Z M 187.320312 254.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.84375 254.824219 C 186.84375 254.707031 186.75 254.613281 186.632812 254.613281 C 186.515625 254.613281 186.421875 254.707031 186.421875 254.824219 C 186.421875 254.941406 186.515625 255.035156 186.632812 255.035156 C 186.75 255.035156 186.84375 254.941406 186.84375 254.824219 Z M 186.84375 254.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.265625 255.046875 C 190.265625 254.929688 190.171875 254.835938 190.054688 254.835938 C 189.9375 254.835938 189.84375 254.929688 189.84375 255.046875 C 189.84375 255.164062 189.9375 255.257812 190.054688 255.257812 C 190.171875 255.257812 190.265625 255.164062 190.265625 255.046875 Z M 190.265625 255.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.363281 251.6875 C 193.363281 251.570312 193.269531 251.476562 193.152344 251.476562 C 193.035156 251.476562 192.941406 251.570312 192.941406 251.6875 C 192.941406 251.804688 193.035156 251.898438 193.152344 251.898438 C 193.269531 251.898438 193.363281 251.804688 193.363281 251.6875 Z M 193.363281 251.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.285156 254.9375 C 190.285156 254.820312 190.191406 254.726562 190.074219 254.726562 C 189.957031 254.726562 189.863281 254.820312 189.863281 254.9375 C 189.863281 255.054688 189.957031 255.148438 190.074219 255.148438 C 190.191406 255.148438 190.285156 255.054688 190.285156 254.9375 Z M 190.285156 254.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.847656 253.460938 C 191.847656 253.34375 191.753906 253.25 191.636719 253.25 C 191.519531 253.25 191.425781 253.34375 191.425781 253.460938 C 191.425781 253.578125 191.519531 253.671875 191.636719 253.671875 C 191.753906 253.671875 191.847656 253.578125 191.847656 253.460938 Z M 191.847656 253.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.328125 254.085938 C 190.328125 253.96875 190.234375 253.875 190.117188 253.875 C 190 253.875 189.90625 253.96875 189.90625 254.085938 C 189.90625 254.203125 190 254.296875 190.117188 254.296875 C 190.234375 254.296875 190.328125 254.203125 190.328125 254.085938 Z M 190.328125 254.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.203125 255.382812 C 191.203125 255.265625 191.109375 255.171875 190.992188 255.171875 C 190.875 255.171875 190.78125 255.265625 190.78125 255.382812 C 190.78125 255.5 190.875 255.59375 190.992188 255.59375 C 191.109375 255.59375 191.203125 255.5 191.203125 255.382812 Z M 191.203125 255.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.273438 256.796875 C 188.273438 256.679688 188.179688 256.585938 188.0625 256.585938 C 187.945312 256.585938 187.851562 256.679688 187.851562 256.796875 C 187.851562 256.914062 187.945312 257.007812 188.0625 257.007812 C 188.179688 257.007812 188.273438 256.914062 188.273438 256.796875 Z M 188.273438 256.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.769531 253.933594 C 189.769531 253.816406 189.675781 253.722656 189.558594 253.722656 C 189.441406 253.722656 189.347656 253.816406 189.347656 253.933594 C 189.347656 254.050781 189.441406 254.144531 189.558594 254.144531 C 189.675781 254.144531 189.769531 254.050781 189.769531 253.933594 Z M 189.769531 253.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.859375 251.96875 C 190.859375 251.851562 190.765625 251.757812 190.648438 251.757812 C 190.53125 251.757812 190.4375 251.851562 190.4375 251.96875 C 190.4375 252.085938 190.53125 252.179688 190.648438 252.179688 C 190.765625 252.179688 190.859375 252.085938 190.859375 251.96875 Z M 190.859375 251.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.914062 251.257812 C 192.914062 251.140625 192.820312 251.046875 192.703125 251.046875 C 192.585938 251.046875 192.492188 251.140625 192.492188 251.257812 C 192.492188 251.375 192.585938 251.46875 192.703125 251.46875 C 192.820312 251.46875 192.914062 251.375 192.914062 251.257812 Z M 192.914062 251.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.324219 250.386719 C 189.324219 250.269531 189.230469 250.175781 189.113281 250.175781 C 188.996094 250.175781 188.902344 250.269531 188.902344 250.386719 C 188.902344 250.503906 188.996094 250.597656 189.113281 250.597656 C 189.230469 250.597656 189.324219 250.503906 189.324219 250.386719 Z M 189.324219 250.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.453125 250.351562 C 190.453125 250.234375 190.359375 250.140625 190.242188 250.140625 C 190.125 250.140625 190.03125 250.234375 190.03125 250.351562 C 190.03125 250.46875 190.125 250.5625 190.242188 250.5625 C 190.359375 250.5625 190.453125 250.46875 190.453125 250.351562 Z M 190.453125 250.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.890625 249.828125 C 189.890625 249.710938 189.796875 249.617188 189.679688 249.617188 C 189.5625 249.617188 189.46875 249.710938 189.46875 249.828125 C 189.46875 249.945312 189.5625 250.039062 189.679688 250.039062 C 189.796875 250.039062 189.890625 249.945312 189.890625 249.828125 Z M 189.890625 249.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.859375 248.527344 C 188.859375 248.410156 188.765625 248.316406 188.648438 248.316406 C 188.53125 248.316406 188.4375 248.410156 188.4375 248.527344 C 188.4375 248.644531 188.53125 248.738281 188.648438 248.738281 C 188.765625 248.738281 188.859375 248.644531 188.859375 248.527344 Z M 188.859375 248.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.960938 248.03125 C 185.960938 247.914062 185.867188 247.820312 185.75 247.820312 C 185.632812 247.820312 185.539062 247.914062 185.539062 248.03125 C 185.539062 248.148438 185.632812 248.242188 185.75 248.242188 C 185.867188 248.242188 185.960938 248.148438 185.960938 248.03125 Z M 185.960938 248.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.625 251.804688 C 188.625 251.6875 188.53125 251.59375 188.414062 251.59375 C 188.296875 251.59375 188.203125 251.6875 188.203125 251.804688 C 188.203125 251.921875 188.296875 252.015625 188.414062 252.015625 C 188.53125 252.015625 188.625 251.921875 188.625 251.804688 Z M 188.625 251.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.035156 249.550781 C 185.035156 249.433594 184.941406 249.339844 184.824219 249.339844 C 184.707031 249.339844 184.613281 249.433594 184.613281 249.550781 C 184.613281 249.667969 184.707031 249.761719 184.824219 249.761719 C 184.941406 249.761719 185.035156 249.667969 185.035156 249.550781 Z M 185.035156 249.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.609375 250.214844 C 185.609375 250.097656 185.515625 250.003906 185.398438 250.003906 C 185.28125 250.003906 185.1875 250.097656 185.1875 250.214844 C 185.1875 250.332031 185.28125 250.425781 185.398438 250.425781 C 185.515625 250.425781 185.609375 250.332031 185.609375 250.214844 Z M 185.609375 250.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.21875 251 C 184.21875 250.882812 184.125 250.789062 184.007812 250.789062 C 183.890625 250.789062 183.796875 250.882812 183.796875 251 C 183.796875 251.117188 183.890625 251.210938 184.007812 251.210938 C 184.125 251.210938 184.21875 251.117188 184.21875 251 Z M 184.21875 251 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.300781 251.980469 C 183.300781 251.863281 183.207031 251.769531 183.089844 251.769531 C 182.972656 251.769531 182.878906 251.863281 182.878906 251.980469 C 182.878906 252.097656 182.972656 252.191406 183.089844 252.191406 C 183.207031 252.191406 183.300781 252.097656 183.300781 251.980469 Z M 183.300781 251.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.617188 252.496094 C 181.617188 252.378906 181.523438 252.285156 181.40625 252.285156 C 181.289062 252.285156 181.195312 252.378906 181.195312 252.496094 C 181.195312 252.613281 181.289062 252.707031 181.40625 252.707031 C 181.523438 252.707031 181.617188 252.613281 181.617188 252.496094 Z M 181.617188 252.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.058594 250.375 C 183.058594 250.257812 182.964844 250.164062 182.847656 250.164062 C 182.730469 250.164062 182.636719 250.257812 182.636719 250.375 C 182.636719 250.492188 182.730469 250.585938 182.847656 250.585938 C 182.964844 250.585938 183.058594 250.492188 183.058594 250.375 Z M 183.058594 250.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.128906 245.410156 C 185.128906 245.292969 185.035156 245.199219 184.917969 245.199219 C 184.800781 245.199219 184.707031 245.292969 184.707031 245.410156 C 184.707031 245.527344 184.800781 245.621094 184.917969 245.621094 C 185.035156 245.621094 185.128906 245.527344 185.128906 245.410156 Z M 185.128906 245.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.972656 245.046875 C 182.972656 244.929688 182.878906 244.835938 182.761719 244.835938 C 182.644531 244.835938 182.550781 244.929688 182.550781 245.046875 C 182.550781 245.164062 182.644531 245.257812 182.761719 245.257812 C 182.878906 245.257812 182.972656 245.164062 182.972656 245.046875 Z M 182.972656 245.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.328125 244.558594 C 183.328125 244.441406 183.234375 244.347656 183.117188 244.347656 C 183 244.347656 182.90625 244.441406 182.90625 244.558594 C 182.90625 244.675781 183 244.769531 183.117188 244.769531 C 183.234375 244.769531 183.328125 244.675781 183.328125 244.558594 Z M 183.328125 244.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.433594 246.632812 C 181.433594 246.515625 181.339844 246.421875 181.222656 246.421875 C 181.105469 246.421875 181.011719 246.515625 181.011719 246.632812 C 181.011719 246.75 181.105469 246.84375 181.222656 246.84375 C 181.339844 246.84375 181.433594 246.75 181.433594 246.632812 Z M 181.433594 246.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.417969 245.277344 C 182.417969 245.160156 182.324219 245.066406 182.207031 245.066406 C 182.089844 245.066406 181.996094 245.160156 181.996094 245.277344 C 181.996094 245.394531 182.089844 245.488281 182.207031 245.488281 C 182.324219 245.488281 182.417969 245.394531 182.417969 245.277344 Z M 182.417969 245.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 180.746094 246.65625 C 180.746094 246.539062 180.652344 246.445312 180.535156 246.445312 C 180.417969 246.445312 180.324219 246.539062 180.324219 246.65625 C 180.324219 246.773438 180.417969 246.867188 180.535156 246.867188 C 180.652344 246.867188 180.746094 246.773438 180.746094 246.65625 Z M 180.746094 246.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 179.679688 245.34375 C 179.679688 245.226562 179.585938 245.132812 179.46875 245.132812 C 179.351562 245.132812 179.257812 245.226562 179.257812 245.34375 C 179.257812 245.460938 179.351562 245.554688 179.46875 245.554688 C 179.585938 245.554688 179.679688 245.460938 179.679688 245.34375 Z M 179.679688 245.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 178.339844 244.722656 C 178.339844 244.605469 178.246094 244.511719 178.128906 244.511719 C 178.011719 244.511719 177.917969 244.605469 177.917969 244.722656 C 177.917969 244.839844 178.011719 244.933594 178.128906 244.933594 C 178.246094 244.933594 178.339844 244.839844 178.339844 244.722656 Z M 178.339844 244.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 177.390625 243.949219 C 177.390625 243.832031 177.296875 243.738281 177.179688 243.738281 C 177.0625 243.738281 176.96875 243.832031 176.96875 243.949219 C 176.96875 244.066406 177.0625 244.160156 177.179688 244.160156 C 177.296875 244.160156 177.390625 244.066406 177.390625 243.949219 Z M 177.390625 243.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 177.613281 238.8125 C 177.613281 238.695312 177.519531 238.601562 177.402344 238.601562 C 177.285156 238.601562 177.191406 238.695312 177.191406 238.8125 C 177.191406 238.929688 177.285156 239.023438 177.402344 239.023438 C 177.519531 239.023438 177.613281 238.929688 177.613281 238.8125 Z M 177.613281 238.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.492188 238.964844 C 175.492188 238.847656 175.398438 238.753906 175.28125 238.753906 C 175.164062 238.753906 175.070312 238.847656 175.070312 238.964844 C 175.070312 239.082031 175.164062 239.175781 175.28125 239.175781 C 175.398438 239.175781 175.492188 239.082031 175.492188 238.964844 Z M 175.492188 238.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 174.441406 240.296875 C 174.441406 240.179688 174.347656 240.085938 174.230469 240.085938 C 174.113281 240.085938 174.019531 240.179688 174.019531 240.296875 C 174.019531 240.414062 174.113281 240.507812 174.230469 240.507812 C 174.347656 240.507812 174.441406 240.414062 174.441406 240.296875 Z M 174.441406 240.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.25 240.304688 C 175.25 240.1875 175.15625 240.09375 175.039062 240.09375 C 174.921875 240.09375 174.828125 240.1875 174.828125 240.304688 C 174.828125 240.421875 174.921875 240.515625 175.039062 240.515625 C 175.15625 240.515625 175.25 240.421875 175.25 240.304688 Z M 175.25 240.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 176.699219 238.425781 C 176.699219 238.308594 176.605469 238.214844 176.488281 238.214844 C 176.371094 238.214844 176.277344 238.308594 176.277344 238.425781 C 176.277344 238.542969 176.371094 238.636719 176.488281 238.636719 C 176.605469 238.636719 176.699219 238.542969 176.699219 238.425781 Z M 176.699219 238.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 178.21875 239.871094 C 178.21875 239.753906 178.125 239.660156 178.007812 239.660156 C 177.890625 239.660156 177.796875 239.753906 177.796875 239.871094 C 177.796875 239.988281 177.890625 240.082031 178.007812 240.082031 C 178.125 240.082031 178.21875 239.988281 178.21875 239.871094 Z M 178.21875 239.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 180.148438 244.796875 C 180.148438 244.679688 180.054688 244.585938 179.9375 244.585938 C 179.820312 244.585938 179.726562 244.679688 179.726562 244.796875 C 179.726562 244.914062 179.820312 245.007812 179.9375 245.007812 C 180.054688 245.007812 180.148438 244.914062 180.148438 244.796875 Z M 180.148438 244.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.773438 242.3125 C 181.773438 242.195312 181.679688 242.101562 181.5625 242.101562 C 181.445312 242.101562 181.351562 242.195312 181.351562 242.3125 C 181.351562 242.429688 181.445312 242.523438 181.5625 242.523438 C 181.679688 242.523438 181.773438 242.429688 181.773438 242.3125 Z M 181.773438 242.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.65625 242.25 C 181.65625 242.132812 181.5625 242.039062 181.445312 242.039062 C 181.328125 242.039062 181.234375 242.132812 181.234375 242.25 C 181.234375 242.367188 181.328125 242.460938 181.445312 242.460938 C 181.5625 242.460938 181.65625 242.367188 181.65625 242.25 Z M 181.65625 242.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.421875 240.097656 C 184.421875 239.980469 184.328125 239.886719 184.210938 239.886719 C 184.09375 239.886719 184 239.980469 184 240.097656 C 184 240.214844 184.09375 240.308594 184.210938 240.308594 C 184.328125 240.308594 184.421875 240.214844 184.421875 240.097656 Z M 184.421875 240.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.308594 237.957031 C 183.308594 237.839844 183.214844 237.746094 183.097656 237.746094 C 182.980469 237.746094 182.886719 237.839844 182.886719 237.957031 C 182.886719 238.074219 182.980469 238.167969 183.097656 238.167969 C 183.214844 238.167969 183.308594 238.074219 183.308594 237.957031 Z M 183.308594 237.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 179.609375 239.300781 C 179.609375 239.183594 179.515625 239.089844 179.398438 239.089844 C 179.28125 239.089844 179.1875 239.183594 179.1875 239.300781 C 179.1875 239.417969 179.28125 239.511719 179.398438 239.511719 C 179.515625 239.511719 179.609375 239.417969 179.609375 239.300781 Z M 179.609375 239.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.925781 237.691406 C 175.925781 237.574219 175.832031 237.480469 175.714844 237.480469 C 175.597656 237.480469 175.503906 237.574219 175.503906 237.691406 C 175.503906 237.808594 175.597656 237.902344 175.714844 237.902344 C 175.832031 237.902344 175.925781 237.808594 175.925781 237.691406 Z M 175.925781 237.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 176.980469 236.144531 C 176.980469 236.027344 176.886719 235.933594 176.769531 235.933594 C 176.652344 235.933594 176.558594 236.027344 176.558594 236.144531 C 176.558594 236.261719 176.652344 236.355469 176.769531 236.355469 C 176.886719 236.355469 176.980469 236.261719 176.980469 236.144531 Z M 176.980469 236.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 178.296875 239.828125 C 178.296875 239.710938 178.203125 239.617188 178.085938 239.617188 C 177.96875 239.617188 177.875 239.710938 177.875 239.828125 C 177.875 239.945312 177.96875 240.039062 178.085938 240.039062 C 178.203125 240.039062 178.296875 239.945312 178.296875 239.828125 Z M 178.296875 239.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.203125 237.300781 C 181.203125 237.183594 181.109375 237.089844 180.992188 237.089844 C 180.875 237.089844 180.78125 237.183594 180.78125 237.300781 C 180.78125 237.417969 180.875 237.511719 180.992188 237.511719 C 181.109375 237.511719 181.203125 237.417969 181.203125 237.300781 Z M 181.203125 237.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 178.601562 237.632812 C 178.601562 237.515625 178.507812 237.421875 178.390625 237.421875 C 178.273438 237.421875 178.179688 237.515625 178.179688 237.632812 C 178.179688 237.75 178.273438 237.84375 178.390625 237.84375 C 178.507812 237.84375 178.601562 237.75 178.601562 237.632812 Z M 178.601562 237.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 177.898438 237.558594 C 177.898438 237.441406 177.804688 237.347656 177.6875 237.347656 C 177.570312 237.347656 177.476562 237.441406 177.476562 237.558594 C 177.476562 237.675781 177.570312 237.769531 177.6875 237.769531 C 177.804688 237.769531 177.898438 237.675781 177.898438 237.558594 Z M 177.898438 237.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.476562 234.777344 C 175.476562 234.660156 175.382812 234.566406 175.265625 234.566406 C 175.148438 234.566406 175.054688 234.660156 175.054688 234.777344 C 175.054688 234.894531 175.148438 234.988281 175.265625 234.988281 C 175.382812 234.988281 175.476562 234.894531 175.476562 234.777344 Z M 175.476562 234.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 171.402344 236.96875 C 171.402344 236.851562 171.308594 236.757812 171.191406 236.757812 C 171.074219 236.757812 170.980469 236.851562 170.980469 236.96875 C 170.980469 237.085938 171.074219 237.179688 171.191406 237.179688 C 171.308594 237.179688 171.402344 237.085938 171.402344 236.96875 Z M 171.402344 236.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 170.492188 235.027344 C 170.492188 234.910156 170.398438 234.816406 170.28125 234.816406 C 170.164062 234.816406 170.070312 234.910156 170.070312 235.027344 C 170.070312 235.144531 170.164062 235.238281 170.28125 235.238281 C 170.398438 235.238281 170.492188 235.144531 170.492188 235.027344 Z M 170.492188 235.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 171.960938 234.121094 C 171.960938 234.003906 171.867188 233.910156 171.75 233.910156 C 171.632812 233.910156 171.539062 234.003906 171.539062 234.121094 C 171.539062 234.238281 171.632812 234.332031 171.75 234.332031 C 171.867188 234.332031 171.960938 234.238281 171.960938 234.121094 Z M 171.960938 234.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 173.355469 237.460938 C 173.355469 237.34375 173.261719 237.25 173.144531 237.25 C 173.027344 237.25 172.933594 237.34375 172.933594 237.460938 C 172.933594 237.578125 173.027344 237.671875 173.144531 237.671875 C 173.261719 237.671875 173.355469 237.578125 173.355469 237.460938 Z M 173.355469 237.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 176.09375 241.488281 C 176.09375 241.371094 176 241.277344 175.882812 241.277344 C 175.765625 241.277344 175.671875 241.371094 175.671875 241.488281 C 175.671875 241.605469 175.765625 241.699219 175.882812 241.699219 C 176 241.699219 176.09375 241.605469 176.09375 241.488281 Z M 176.09375 241.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 172.84375 245.929688 C 172.84375 245.8125 172.75 245.71875 172.632812 245.71875 C 172.515625 245.71875 172.421875 245.8125 172.421875 245.929688 C 172.421875 246.046875 172.515625 246.140625 172.632812 246.140625 C 172.75 246.140625 172.84375 246.046875 172.84375 245.929688 Z M 172.84375 245.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.234375 240.601562 C 175.234375 240.484375 175.140625 240.390625 175.023438 240.390625 C 174.90625 240.390625 174.8125 240.484375 174.8125 240.601562 C 174.8125 240.71875 174.90625 240.8125 175.023438 240.8125 C 175.140625 240.8125 175.234375 240.71875 175.234375 240.601562 Z M 175.234375 240.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.273438 240.125 C 175.273438 240.007812 175.179688 239.914062 175.0625 239.914062 C 174.945312 239.914062 174.851562 240.007812 174.851562 240.125 C 174.851562 240.242188 174.945312 240.335938 175.0625 240.335938 C 175.179688 240.335938 175.273438 240.242188 175.273438 240.125 Z M 175.273438 240.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 178.773438 241.742188 C 178.773438 241.625 178.679688 241.53125 178.5625 241.53125 C 178.445312 241.53125 178.351562 241.625 178.351562 241.742188 C 178.351562 241.859375 178.445312 241.953125 178.5625 241.953125 C 178.679688 241.953125 178.773438 241.859375 178.773438 241.742188 Z M 178.773438 241.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 178.734375 245.027344 C 178.734375 244.910156 178.640625 244.816406 178.523438 244.816406 C 178.40625 244.816406 178.3125 244.910156 178.3125 245.027344 C 178.3125 245.144531 178.40625 245.238281 178.523438 245.238281 C 178.640625 245.238281 178.734375 245.144531 178.734375 245.027344 Z M 178.734375 245.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 176.589844 245.46875 C 176.589844 245.351562 176.496094 245.257812 176.378906 245.257812 C 176.261719 245.257812 176.167969 245.351562 176.167969 245.46875 C 176.167969 245.585938 176.261719 245.679688 176.378906 245.679688 C 176.496094 245.679688 176.589844 245.585938 176.589844 245.46875 Z M 176.589844 245.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 176.546875 242.945312 C 176.546875 242.828125 176.453125 242.734375 176.335938 242.734375 C 176.21875 242.734375 176.125 242.828125 176.125 242.945312 C 176.125 243.0625 176.21875 243.15625 176.335938 243.15625 C 176.453125 243.15625 176.546875 243.0625 176.546875 242.945312 Z M 176.546875 242.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 177.148438 244.398438 C 177.148438 244.28125 177.054688 244.1875 176.9375 244.1875 C 176.820312 244.1875 176.726562 244.28125 176.726562 244.398438 C 176.726562 244.515625 176.820312 244.609375 176.9375 244.609375 C 177.054688 244.609375 177.148438 244.515625 177.148438 244.398438 Z M 177.148438 244.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 174.082031 246.300781 C 174.082031 246.183594 173.988281 246.089844 173.871094 246.089844 C 173.753906 246.089844 173.660156 246.183594 173.660156 246.300781 C 173.660156 246.417969 173.753906 246.511719 173.871094 246.511719 C 173.988281 246.511719 174.082031 246.417969 174.082031 246.300781 Z M 174.082031 246.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 173.753906 248.871094 C 173.753906 248.753906 173.660156 248.660156 173.542969 248.660156 C 173.425781 248.660156 173.332031 248.753906 173.332031 248.871094 C 173.332031 248.988281 173.425781 249.082031 173.542969 249.082031 C 173.660156 249.082031 173.753906 248.988281 173.753906 248.871094 Z M 173.753906 248.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 174.851562 250.394531 C 174.851562 250.277344 174.757812 250.183594 174.640625 250.183594 C 174.523438 250.183594 174.429688 250.277344 174.429688 250.394531 C 174.429688 250.511719 174.523438 250.605469 174.640625 250.605469 C 174.757812 250.605469 174.851562 250.511719 174.851562 250.394531 Z M 174.851562 250.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 178.835938 247.738281 C 178.835938 247.621094 178.742188 247.527344 178.625 247.527344 C 178.507812 247.527344 178.414062 247.621094 178.414062 247.738281 C 178.414062 247.855469 178.507812 247.949219 178.625 247.949219 C 178.742188 247.949219 178.835938 247.855469 178.835938 247.738281 Z M 178.835938 247.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 178.691406 245.109375 C 178.691406 244.992188 178.597656 244.898438 178.480469 244.898438 C 178.363281 244.898438 178.269531 244.992188 178.269531 245.109375 C 178.269531 245.226562 178.363281 245.320312 178.480469 245.320312 C 178.597656 245.320312 178.691406 245.226562 178.691406 245.109375 Z M 178.691406 245.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 178.378906 245.472656 C 178.378906 245.355469 178.285156 245.261719 178.167969 245.261719 C 178.050781 245.261719 177.957031 245.355469 177.957031 245.472656 C 177.957031 245.589844 178.050781 245.683594 178.167969 245.683594 C 178.285156 245.683594 178.378906 245.589844 178.378906 245.472656 Z M 178.378906 245.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 177.628906 244.335938 C 177.628906 244.21875 177.535156 244.125 177.417969 244.125 C 177.300781 244.125 177.207031 244.21875 177.207031 244.335938 C 177.207031 244.453125 177.300781 244.546875 177.417969 244.546875 C 177.535156 244.546875 177.628906 244.453125 177.628906 244.335938 Z M 177.628906 244.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.835938 241.289062 C 175.835938 241.171875 175.742188 241.078125 175.625 241.078125 C 175.507812 241.078125 175.414062 241.171875 175.414062 241.289062 C 175.414062 241.40625 175.507812 241.5 175.625 241.5 C 175.742188 241.5 175.835938 241.40625 175.835938 241.289062 Z M 175.835938 241.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 174.097656 240.253906 C 174.097656 240.136719 174.003906 240.042969 173.886719 240.042969 C 173.769531 240.042969 173.675781 240.136719 173.675781 240.253906 C 173.675781 240.371094 173.769531 240.464844 173.886719 240.464844 C 174.003906 240.464844 174.097656 240.371094 174.097656 240.253906 Z M 174.097656 240.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 172.003906 241.097656 C 172.003906 240.980469 171.910156 240.886719 171.792969 240.886719 C 171.675781 240.886719 171.582031 240.980469 171.582031 241.097656 C 171.582031 241.214844 171.675781 241.308594 171.792969 241.308594 C 171.910156 241.308594 172.003906 241.214844 172.003906 241.097656 Z M 172.003906 241.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 171.585938 241.382812 C 171.585938 241.265625 171.492188 241.171875 171.375 241.171875 C 171.257812 241.171875 171.164062 241.265625 171.164062 241.382812 C 171.164062 241.5 171.257812 241.59375 171.375 241.59375 C 171.492188 241.59375 171.585938 241.5 171.585938 241.382812 Z M 171.585938 241.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 169.675781 242.324219 C 169.675781 242.207031 169.582031 242.113281 169.464844 242.113281 C 169.347656 242.113281 169.253906 242.207031 169.253906 242.324219 C 169.253906 242.441406 169.347656 242.535156 169.464844 242.535156 C 169.582031 242.535156 169.675781 242.441406 169.675781 242.324219 Z M 169.675781 242.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 165.589844 242.171875 C 165.589844 242.054688 165.496094 241.960938 165.378906 241.960938 C 165.261719 241.960938 165.167969 242.054688 165.167969 242.171875 C 165.167969 242.289062 165.261719 242.382812 165.378906 242.382812 C 165.496094 242.382812 165.589844 242.289062 165.589844 242.171875 Z M 165.589844 242.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 165.460938 245.988281 C 165.460938 245.871094 165.367188 245.777344 165.25 245.777344 C 165.132812 245.777344 165.039062 245.871094 165.039062 245.988281 C 165.039062 246.105469 165.132812 246.199219 165.25 246.199219 C 165.367188 246.199219 165.460938 246.105469 165.460938 245.988281 Z M 165.460938 245.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 162.816406 242.703125 C 162.816406 242.585938 162.722656 242.492188 162.605469 242.492188 C 162.488281 242.492188 162.394531 242.585938 162.394531 242.703125 C 162.394531 242.820312 162.488281 242.914062 162.605469 242.914062 C 162.722656 242.914062 162.816406 242.820312 162.816406 242.703125 Z M 162.816406 242.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 163.667969 242.886719 C 163.667969 242.769531 163.574219 242.675781 163.457031 242.675781 C 163.339844 242.675781 163.246094 242.769531 163.246094 242.886719 C 163.246094 243.003906 163.339844 243.097656 163.457031 243.097656 C 163.574219 243.097656 163.667969 243.003906 163.667969 242.886719 Z M 163.667969 242.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 164.269531 244.386719 C 164.269531 244.269531 164.175781 244.175781 164.058594 244.175781 C 163.941406 244.175781 163.847656 244.269531 163.847656 244.386719 C 163.847656 244.503906 163.941406 244.597656 164.058594 244.597656 C 164.175781 244.597656 164.269531 244.503906 164.269531 244.386719 Z M 164.269531 244.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 164.894531 241.996094 C 164.894531 241.878906 164.800781 241.785156 164.683594 241.785156 C 164.566406 241.785156 164.472656 241.878906 164.472656 241.996094 C 164.472656 242.113281 164.566406 242.207031 164.683594 242.207031 C 164.800781 242.207031 164.894531 242.113281 164.894531 241.996094 Z M 164.894531 241.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 168.480469 241.976562 C 168.480469 241.859375 168.386719 241.765625 168.269531 241.765625 C 168.152344 241.765625 168.058594 241.859375 168.058594 241.976562 C 168.058594 242.09375 168.152344 242.1875 168.269531 242.1875 C 168.386719 242.1875 168.480469 242.09375 168.480469 241.976562 Z M 168.480469 241.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 168.9375 243.667969 C 168.9375 243.550781 168.84375 243.457031 168.726562 243.457031 C 168.609375 243.457031 168.515625 243.550781 168.515625 243.667969 C 168.515625 243.785156 168.609375 243.878906 168.726562 243.878906 C 168.84375 243.878906 168.9375 243.785156 168.9375 243.667969 Z M 168.9375 243.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 171.410156 240.90625 C 171.410156 240.789062 171.316406 240.695312 171.199219 240.695312 C 171.082031 240.695312 170.988281 240.789062 170.988281 240.90625 C 170.988281 241.023438 171.082031 241.117188 171.199219 241.117188 C 171.316406 241.117188 171.410156 241.023438 171.410156 240.90625 Z M 171.410156 240.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 173.339844 237.777344 C 173.339844 237.660156 173.246094 237.566406 173.128906 237.566406 C 173.011719 237.566406 172.917969 237.660156 172.917969 237.777344 C 172.917969 237.894531 173.011719 237.988281 173.128906 237.988281 C 173.246094 237.988281 173.339844 237.894531 173.339844 237.777344 Z M 173.339844 237.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 174.886719 239.828125 C 174.886719 239.710938 174.792969 239.617188 174.675781 239.617188 C 174.558594 239.617188 174.464844 239.710938 174.464844 239.828125 C 174.464844 239.945312 174.558594 240.039062 174.675781 240.039062 C 174.792969 240.039062 174.886719 239.945312 174.886719 239.828125 Z M 174.886719 239.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.769531 237.984375 C 175.769531 237.867188 175.675781 237.773438 175.558594 237.773438 C 175.441406 237.773438 175.347656 237.867188 175.347656 237.984375 C 175.347656 238.101562 175.441406 238.195312 175.558594 238.195312 C 175.675781 238.195312 175.769531 238.101562 175.769531 237.984375 Z M 175.769531 237.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 174.914062 236.96875 C 174.914062 236.851562 174.820312 236.757812 174.703125 236.757812 C 174.585938 236.757812 174.492188 236.851562 174.492188 236.96875 C 174.492188 237.085938 174.585938 237.179688 174.703125 237.179688 C 174.820312 237.179688 174.914062 237.085938 174.914062 236.96875 Z M 174.914062 236.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 178.179688 236.957031 C 178.179688 236.839844 178.085938 236.746094 177.96875 236.746094 C 177.851562 236.746094 177.757812 236.839844 177.757812 236.957031 C 177.757812 237.074219 177.851562 237.167969 177.96875 237.167969 C 178.085938 237.167969 178.179688 237.074219 178.179688 236.957031 Z M 178.179688 236.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 180.425781 240.609375 C 180.425781 240.492188 180.332031 240.398438 180.214844 240.398438 C 180.097656 240.398438 180.003906 240.492188 180.003906 240.609375 C 180.003906 240.726562 180.097656 240.820312 180.214844 240.820312 C 180.332031 240.820312 180.425781 240.726562 180.425781 240.609375 Z M 180.425781 240.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 178.394531 242.957031 C 178.394531 242.839844 178.300781 242.746094 178.183594 242.746094 C 178.066406 242.746094 177.972656 242.839844 177.972656 242.957031 C 177.972656 243.074219 178.066406 243.167969 178.183594 243.167969 C 178.300781 243.167969 178.394531 243.074219 178.394531 242.957031 Z M 178.394531 242.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 176.953125 243.878906 C 176.953125 243.761719 176.859375 243.667969 176.742188 243.667969 C 176.625 243.667969 176.53125 243.761719 176.53125 243.878906 C 176.53125 243.996094 176.625 244.089844 176.742188 244.089844 C 176.859375 244.089844 176.953125 243.996094 176.953125 243.878906 Z M 176.953125 243.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 177.257812 243.476562 C 177.257812 243.359375 177.164062 243.265625 177.046875 243.265625 C 176.929688 243.265625 176.835938 243.359375 176.835938 243.476562 C 176.835938 243.59375 176.929688 243.6875 177.046875 243.6875 C 177.164062 243.6875 177.257812 243.59375 177.257812 243.476562 Z M 177.257812 243.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 176.792969 238.773438 C 176.792969 238.65625 176.699219 238.5625 176.582031 238.5625 C 176.464844 238.5625 176.371094 238.65625 176.371094 238.773438 C 176.371094 238.890625 176.464844 238.984375 176.582031 238.984375 C 176.699219 238.984375 176.792969 238.890625 176.792969 238.773438 Z M 176.792969 238.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 179.46875 239.152344 C 179.46875 239.035156 179.375 238.941406 179.257812 238.941406 C 179.140625 238.941406 179.046875 239.035156 179.046875 239.152344 C 179.046875 239.269531 179.140625 239.363281 179.257812 239.363281 C 179.375 239.363281 179.46875 239.269531 179.46875 239.152344 Z M 179.46875 239.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 180.648438 241.257812 C 180.648438 241.140625 180.554688 241.046875 180.4375 241.046875 C 180.320312 241.046875 180.226562 241.140625 180.226562 241.257812 C 180.226562 241.375 180.320312 241.46875 180.4375 241.46875 C 180.554688 241.46875 180.648438 241.375 180.648438 241.257812 Z M 180.648438 241.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 180.761719 240.871094 C 180.761719 240.753906 180.667969 240.660156 180.550781 240.660156 C 180.433594 240.660156 180.339844 240.753906 180.339844 240.871094 C 180.339844 240.988281 180.433594 241.082031 180.550781 241.082031 C 180.667969 241.082031 180.761719 240.988281 180.761719 240.871094 Z M 180.761719 240.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 180.179688 241.835938 C 180.179688 241.71875 180.085938 241.625 179.96875 241.625 C 179.851562 241.625 179.757812 241.71875 179.757812 241.835938 C 179.757812 241.953125 179.851562 242.046875 179.96875 242.046875 C 180.085938 242.046875 180.179688 241.953125 180.179688 241.835938 Z M 180.179688 241.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 180.066406 243.765625 C 180.066406 243.648438 179.972656 243.554688 179.855469 243.554688 C 179.738281 243.554688 179.644531 243.648438 179.644531 243.765625 C 179.644531 243.882812 179.738281 243.976562 179.855469 243.976562 C 179.972656 243.976562 180.066406 243.882812 180.066406 243.765625 Z M 180.066406 243.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 179.332031 240.714844 C 179.332031 240.597656 179.238281 240.503906 179.121094 240.503906 C 179.003906 240.503906 178.910156 240.597656 178.910156 240.714844 C 178.910156 240.832031 179.003906 240.925781 179.121094 240.925781 C 179.238281 240.925781 179.332031 240.832031 179.332031 240.714844 Z M 179.332031 240.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.066406 239.183594 C 181.066406 239.066406 180.972656 238.972656 180.855469 238.972656 C 180.738281 238.972656 180.644531 239.066406 180.644531 239.183594 C 180.644531 239.300781 180.738281 239.394531 180.855469 239.394531 C 180.972656 239.394531 181.066406 239.300781 181.066406 239.183594 Z M 181.066406 239.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 177.699219 239.355469 C 177.699219 239.238281 177.605469 239.144531 177.488281 239.144531 C 177.371094 239.144531 177.277344 239.238281 177.277344 239.355469 C 177.277344 239.472656 177.371094 239.566406 177.488281 239.566406 C 177.605469 239.566406 177.699219 239.472656 177.699219 239.355469 Z M 177.699219 239.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.644531 241.574219 C 183.644531 241.457031 183.550781 241.363281 183.433594 241.363281 C 183.316406 241.363281 183.222656 241.457031 183.222656 241.574219 C 183.222656 241.691406 183.316406 241.785156 183.433594 241.785156 C 183.550781 241.785156 183.644531 241.691406 183.644531 241.574219 Z M 183.644531 241.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.9375 241.863281 C 184.9375 241.746094 184.84375 241.652344 184.726562 241.652344 C 184.609375 241.652344 184.515625 241.746094 184.515625 241.863281 C 184.515625 241.980469 184.609375 242.074219 184.726562 242.074219 C 184.84375 242.074219 184.9375 241.980469 184.9375 241.863281 Z M 184.9375 241.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.675781 241.082031 C 183.675781 240.964844 183.582031 240.871094 183.464844 240.871094 C 183.347656 240.871094 183.253906 240.964844 183.253906 241.082031 C 183.253906 241.199219 183.347656 241.292969 183.464844 241.292969 C 183.582031 241.292969 183.675781 241.199219 183.675781 241.082031 Z M 183.675781 241.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.375 246.152344 C 186.375 246.035156 186.28125 245.941406 186.164062 245.941406 C 186.046875 245.941406 185.953125 246.035156 185.953125 246.152344 C 185.953125 246.269531 186.046875 246.363281 186.164062 246.363281 C 186.28125 246.363281 186.375 246.269531 186.375 246.152344 Z M 186.375 246.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.671875 248.492188 C 184.671875 248.375 184.578125 248.28125 184.460938 248.28125 C 184.34375 248.28125 184.25 248.375 184.25 248.492188 C 184.25 248.609375 184.34375 248.703125 184.460938 248.703125 C 184.578125 248.703125 184.671875 248.609375 184.671875 248.492188 Z M 184.671875 248.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.441406 249.972656 C 184.441406 249.855469 184.347656 249.761719 184.230469 249.761719 C 184.113281 249.761719 184.019531 249.855469 184.019531 249.972656 C 184.019531 250.089844 184.113281 250.183594 184.230469 250.183594 C 184.347656 250.183594 184.441406 250.089844 184.441406 249.972656 Z M 184.441406 249.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.523438 248.535156 C 181.523438 248.417969 181.429688 248.324219 181.3125 248.324219 C 181.195312 248.324219 181.101562 248.417969 181.101562 248.535156 C 181.101562 248.652344 181.195312 248.746094 181.3125 248.746094 C 181.429688 248.746094 181.523438 248.652344 181.523438 248.535156 Z M 181.523438 248.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.046875 247.214844 C 181.046875 247.097656 180.953125 247.003906 180.835938 247.003906 C 180.71875 247.003906 180.625 247.097656 180.625 247.214844 C 180.625 247.332031 180.71875 247.425781 180.835938 247.425781 C 180.953125 247.425781 181.046875 247.332031 181.046875 247.214844 Z M 181.046875 247.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.953125 247.269531 C 185.953125 247.152344 185.859375 247.058594 185.742188 247.058594 C 185.625 247.058594 185.53125 247.152344 185.53125 247.269531 C 185.53125 247.386719 185.625 247.480469 185.742188 247.480469 C 185.859375 247.480469 185.953125 247.386719 185.953125 247.269531 Z M 185.953125 247.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.355469 249.492188 C 186.355469 249.375 186.261719 249.28125 186.144531 249.28125 C 186.027344 249.28125 185.933594 249.375 185.933594 249.492188 C 185.933594 249.609375 186.027344 249.703125 186.144531 249.703125 C 186.261719 249.703125 186.355469 249.609375 186.355469 249.492188 Z M 186.355469 249.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.789062 249.921875 C 189.789062 249.804688 189.695312 249.710938 189.578125 249.710938 C 189.460938 249.710938 189.367188 249.804688 189.367188 249.921875 C 189.367188 250.039062 189.460938 250.132812 189.578125 250.132812 C 189.695312 250.132812 189.789062 250.039062 189.789062 249.921875 Z M 189.789062 249.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.375 250.683594 C 191.375 250.566406 191.28125 250.472656 191.164062 250.472656 C 191.046875 250.472656 190.953125 250.566406 190.953125 250.683594 C 190.953125 250.800781 191.046875 250.894531 191.164062 250.894531 C 191.28125 250.894531 191.375 250.800781 191.375 250.683594 Z M 191.375 250.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.84375 252.390625 C 191.84375 252.273438 191.75 252.179688 191.632812 252.179688 C 191.515625 252.179688 191.421875 252.273438 191.421875 252.390625 C 191.421875 252.507812 191.515625 252.601562 191.632812 252.601562 C 191.75 252.601562 191.84375 252.507812 191.84375 252.390625 Z M 191.84375 252.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.414062 251.253906 C 197.414062 251.136719 197.320312 251.042969 197.203125 251.042969 C 197.085938 251.042969 196.992188 251.136719 196.992188 251.253906 C 196.992188 251.371094 197.085938 251.464844 197.203125 251.464844 C 197.320312 251.464844 197.414062 251.371094 197.414062 251.253906 Z M 197.414062 251.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.871094 252.316406 C 197.871094 252.199219 197.777344 252.105469 197.660156 252.105469 C 197.542969 252.105469 197.449219 252.199219 197.449219 252.316406 C 197.449219 252.433594 197.542969 252.527344 197.660156 252.527344 C 197.777344 252.527344 197.871094 252.433594 197.871094 252.316406 Z M 197.871094 252.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.101562 250.808594 C 203.101562 250.691406 203.007812 250.597656 202.890625 250.597656 C 202.773438 250.597656 202.679688 250.691406 202.679688 250.808594 C 202.679688 250.925781 202.773438 251.019531 202.890625 251.019531 C 203.007812 251.019531 203.101562 250.925781 203.101562 250.808594 Z M 203.101562 250.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.605469 255.148438 C 204.605469 255.03125 204.511719 254.9375 204.394531 254.9375 C 204.277344 254.9375 204.183594 255.03125 204.183594 255.148438 C 204.183594 255.265625 204.277344 255.359375 204.394531 255.359375 C 204.511719 255.359375 204.605469 255.265625 204.605469 255.148438 Z M 204.605469 255.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.78125 254.152344 C 202.78125 254.035156 202.6875 253.941406 202.570312 253.941406 C 202.453125 253.941406 202.359375 254.035156 202.359375 254.152344 C 202.359375 254.269531 202.453125 254.363281 202.570312 254.363281 C 202.6875 254.363281 202.78125 254.269531 202.78125 254.152344 Z M 202.78125 254.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.824219 250.621094 C 202.824219 250.503906 202.730469 250.410156 202.613281 250.410156 C 202.496094 250.410156 202.402344 250.503906 202.402344 250.621094 C 202.402344 250.738281 202.496094 250.832031 202.613281 250.832031 C 202.730469 250.832031 202.824219 250.738281 202.824219 250.621094 Z M 202.824219 250.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.5 253.117188 C 203.5 253 203.40625 252.90625 203.289062 252.90625 C 203.171875 252.90625 203.078125 253 203.078125 253.117188 C 203.078125 253.234375 203.171875 253.328125 203.289062 253.328125 C 203.40625 253.328125 203.5 253.234375 203.5 253.117188 Z M 203.5 253.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.402344 255.847656 C 204.402344 255.730469 204.308594 255.636719 204.191406 255.636719 C 204.074219 255.636719 203.980469 255.730469 203.980469 255.847656 C 203.980469 255.964844 204.074219 256.058594 204.191406 256.058594 C 204.308594 256.058594 204.402344 255.964844 204.402344 255.847656 Z M 204.402344 255.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.589844 257.710938 C 205.589844 257.59375 205.496094 257.5 205.378906 257.5 C 205.261719 257.5 205.167969 257.59375 205.167969 257.710938 C 205.167969 257.828125 205.261719 257.921875 205.378906 257.921875 C 205.496094 257.921875 205.589844 257.828125 205.589844 257.710938 Z M 205.589844 257.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.894531 255.898438 C 204.894531 255.78125 204.800781 255.6875 204.683594 255.6875 C 204.566406 255.6875 204.472656 255.78125 204.472656 255.898438 C 204.472656 256.015625 204.566406 256.109375 204.683594 256.109375 C 204.800781 256.109375 204.894531 256.015625 204.894531 255.898438 Z M 204.894531 255.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.070312 257.738281 C 204.070312 257.621094 203.976562 257.527344 203.859375 257.527344 C 203.742188 257.527344 203.648438 257.621094 203.648438 257.738281 C 203.648438 257.855469 203.742188 257.949219 203.859375 257.949219 C 203.976562 257.949219 204.070312 257.855469 204.070312 257.738281 Z M 204.070312 257.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.683594 260.835938 C 206.683594 260.71875 206.589844 260.625 206.472656 260.625 C 206.355469 260.625 206.261719 260.71875 206.261719 260.835938 C 206.261719 260.953125 206.355469 261.046875 206.472656 261.046875 C 206.589844 261.046875 206.683594 260.953125 206.683594 260.835938 Z M 206.683594 260.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.894531 263.785156 C 205.894531 263.667969 205.800781 263.574219 205.683594 263.574219 C 205.566406 263.574219 205.472656 263.667969 205.472656 263.785156 C 205.472656 263.902344 205.566406 263.996094 205.683594 263.996094 C 205.800781 263.996094 205.894531 263.902344 205.894531 263.785156 Z M 205.894531 263.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.101562 263.609375 C 203.101562 263.492188 203.007812 263.398438 202.890625 263.398438 C 202.773438 263.398438 202.679688 263.492188 202.679688 263.609375 C 202.679688 263.726562 202.773438 263.820312 202.890625 263.820312 C 203.007812 263.820312 203.101562 263.726562 203.101562 263.609375 Z M 203.101562 263.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.542969 263.238281 C 200.542969 263.121094 200.449219 263.027344 200.332031 263.027344 C 200.214844 263.027344 200.121094 263.121094 200.121094 263.238281 C 200.121094 263.355469 200.214844 263.449219 200.332031 263.449219 C 200.449219 263.449219 200.542969 263.355469 200.542969 263.238281 Z M 200.542969 263.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.796875 263.859375 C 200.796875 263.742188 200.703125 263.648438 200.585938 263.648438 C 200.46875 263.648438 200.375 263.742188 200.375 263.859375 C 200.375 263.976562 200.46875 264.070312 200.585938 264.070312 C 200.703125 264.070312 200.796875 263.976562 200.796875 263.859375 Z M 200.796875 263.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.4375 260.226562 C 199.4375 260.109375 199.34375 260.015625 199.226562 260.015625 C 199.109375 260.015625 199.015625 260.109375 199.015625 260.226562 C 199.015625 260.34375 199.109375 260.4375 199.226562 260.4375 C 199.34375 260.4375 199.4375 260.34375 199.4375 260.226562 Z M 199.4375 260.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.011719 259.898438 C 202.011719 259.78125 201.917969 259.6875 201.800781 259.6875 C 201.683594 259.6875 201.589844 259.78125 201.589844 259.898438 C 201.589844 260.015625 201.683594 260.109375 201.800781 260.109375 C 201.917969 260.109375 202.011719 260.015625 202.011719 259.898438 Z M 202.011719 259.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.875 263.269531 C 204.875 263.152344 204.78125 263.058594 204.664062 263.058594 C 204.546875 263.058594 204.453125 263.152344 204.453125 263.269531 C 204.453125 263.386719 204.546875 263.480469 204.664062 263.480469 C 204.78125 263.480469 204.875 263.386719 204.875 263.269531 Z M 204.875 263.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.226562 261.074219 C 208.226562 260.957031 208.132812 260.863281 208.015625 260.863281 C 207.898438 260.863281 207.804688 260.957031 207.804688 261.074219 C 207.804688 261.191406 207.898438 261.285156 208.015625 261.285156 C 208.132812 261.285156 208.226562 261.191406 208.226562 261.074219 Z M 208.226562 261.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.097656 258.46875 C 206.097656 258.351562 206.003906 258.257812 205.886719 258.257812 C 205.769531 258.257812 205.675781 258.351562 205.675781 258.46875 C 205.675781 258.585938 205.769531 258.679688 205.886719 258.679688 C 206.003906 258.679688 206.097656 258.585938 206.097656 258.46875 Z M 206.097656 258.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.695312 255.648438 C 203.695312 255.53125 203.601562 255.4375 203.484375 255.4375 C 203.367188 255.4375 203.273438 255.53125 203.273438 255.648438 C 203.273438 255.765625 203.367188 255.859375 203.484375 255.859375 C 203.601562 255.859375 203.695312 255.765625 203.695312 255.648438 Z M 203.695312 255.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.929688 254.503906 C 205.929688 254.386719 205.835938 254.292969 205.71875 254.292969 C 205.601562 254.292969 205.507812 254.386719 205.507812 254.503906 C 205.507812 254.621094 205.601562 254.714844 205.71875 254.714844 C 205.835938 254.714844 205.929688 254.621094 205.929688 254.503906 Z M 205.929688 254.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.4375 252.640625 C 205.4375 252.523438 205.34375 252.429688 205.226562 252.429688 C 205.109375 252.429688 205.015625 252.523438 205.015625 252.640625 C 205.015625 252.757812 205.109375 252.851562 205.226562 252.851562 C 205.34375 252.851562 205.4375 252.757812 205.4375 252.640625 Z M 205.4375 252.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.757812 255.273438 C 204.757812 255.15625 204.664062 255.0625 204.546875 255.0625 C 204.429688 255.0625 204.335938 255.15625 204.335938 255.273438 C 204.335938 255.390625 204.429688 255.484375 204.546875 255.484375 C 204.664062 255.484375 204.757812 255.390625 204.757812 255.273438 Z M 204.757812 255.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.980469 254.144531 C 202.980469 254.027344 202.886719 253.933594 202.769531 253.933594 C 202.652344 253.933594 202.558594 254.027344 202.558594 254.144531 C 202.558594 254.261719 202.652344 254.355469 202.769531 254.355469 C 202.886719 254.355469 202.980469 254.261719 202.980469 254.144531 Z M 202.980469 254.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.285156 254.9375 C 199.285156 254.820312 199.191406 254.726562 199.074219 254.726562 C 198.957031 254.726562 198.863281 254.820312 198.863281 254.9375 C 198.863281 255.054688 198.957031 255.148438 199.074219 255.148438 C 199.191406 255.148438 199.285156 255.054688 199.285156 254.9375 Z M 199.285156 254.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.691406 253.988281 C 194.691406 253.871094 194.597656 253.777344 194.480469 253.777344 C 194.363281 253.777344 194.269531 253.871094 194.269531 253.988281 C 194.269531 254.105469 194.363281 254.199219 194.480469 254.199219 C 194.597656 254.199219 194.691406 254.105469 194.691406 253.988281 Z M 194.691406 253.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.859375 248.984375 C 194.859375 248.867188 194.765625 248.773438 194.648438 248.773438 C 194.53125 248.773438 194.4375 248.867188 194.4375 248.984375 C 194.4375 249.101562 194.53125 249.195312 194.648438 249.195312 C 194.765625 249.195312 194.859375 249.101562 194.859375 248.984375 Z M 194.859375 248.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.585938 243.5 C 198.585938 243.382812 198.492188 243.289062 198.375 243.289062 C 198.257812 243.289062 198.164062 243.382812 198.164062 243.5 C 198.164062 243.617188 198.257812 243.710938 198.375 243.710938 C 198.492188 243.710938 198.585938 243.617188 198.585938 243.5 Z M 198.585938 243.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.511719 244.417969 C 197.511719 244.300781 197.417969 244.207031 197.300781 244.207031 C 197.183594 244.207031 197.089844 244.300781 197.089844 244.417969 C 197.089844 244.535156 197.183594 244.628906 197.300781 244.628906 C 197.417969 244.628906 197.511719 244.535156 197.511719 244.417969 Z M 197.511719 244.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.324219 243.570312 C 197.324219 243.453125 197.230469 243.359375 197.113281 243.359375 C 196.996094 243.359375 196.902344 243.453125 196.902344 243.570312 C 196.902344 243.6875 196.996094 243.78125 197.113281 243.78125 C 197.230469 243.78125 197.324219 243.6875 197.324219 243.570312 Z M 197.324219 243.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.082031 248.152344 C 199.082031 248.035156 198.988281 247.941406 198.871094 247.941406 C 198.753906 247.941406 198.660156 248.035156 198.660156 248.152344 C 198.660156 248.269531 198.753906 248.363281 198.871094 248.363281 C 198.988281 248.363281 199.082031 248.269531 199.082031 248.152344 Z M 199.082031 248.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.878906 249.425781 C 199.878906 249.308594 199.785156 249.214844 199.667969 249.214844 C 199.550781 249.214844 199.457031 249.308594 199.457031 249.425781 C 199.457031 249.542969 199.550781 249.636719 199.667969 249.636719 C 199.785156 249.636719 199.878906 249.542969 199.878906 249.425781 Z M 199.878906 249.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.414062 245.261719 C 200.414062 245.144531 200.320312 245.050781 200.203125 245.050781 C 200.085938 245.050781 199.992188 245.144531 199.992188 245.261719 C 199.992188 245.378906 200.085938 245.472656 200.203125 245.472656 C 200.320312 245.472656 200.414062 245.378906 200.414062 245.261719 Z M 200.414062 245.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.015625 244.769531 C 203.015625 244.652344 202.921875 244.558594 202.804688 244.558594 C 202.6875 244.558594 202.59375 244.652344 202.59375 244.769531 C 202.59375 244.886719 202.6875 244.980469 202.804688 244.980469 C 202.921875 244.980469 203.015625 244.886719 203.015625 244.769531 Z M 203.015625 244.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.621094 244.773438 C 202.621094 244.65625 202.527344 244.5625 202.410156 244.5625 C 202.292969 244.5625 202.199219 244.65625 202.199219 244.773438 C 202.199219 244.890625 202.292969 244.984375 202.410156 244.984375 C 202.527344 244.984375 202.621094 244.890625 202.621094 244.773438 Z M 202.621094 244.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.472656 247.195312 C 201.472656 247.078125 201.378906 246.984375 201.261719 246.984375 C 201.144531 246.984375 201.050781 247.078125 201.050781 247.195312 C 201.050781 247.3125 201.144531 247.40625 201.261719 247.40625 C 201.378906 247.40625 201.472656 247.3125 201.472656 247.195312 Z M 201.472656 247.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.808594 247.132812 C 204.808594 247.015625 204.714844 246.921875 204.597656 246.921875 C 204.480469 246.921875 204.386719 247.015625 204.386719 247.132812 C 204.386719 247.25 204.480469 247.34375 204.597656 247.34375 C 204.714844 247.34375 204.808594 247.25 204.808594 247.132812 Z M 204.808594 247.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.527344 247.722656 C 204.527344 247.605469 204.433594 247.511719 204.316406 247.511719 C 204.199219 247.511719 204.105469 247.605469 204.105469 247.722656 C 204.105469 247.839844 204.199219 247.933594 204.316406 247.933594 C 204.433594 247.933594 204.527344 247.839844 204.527344 247.722656 Z M 204.527344 247.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.472656 246.980469 C 204.472656 246.863281 204.378906 246.769531 204.261719 246.769531 C 204.144531 246.769531 204.050781 246.863281 204.050781 246.980469 C 204.050781 247.097656 204.144531 247.191406 204.261719 247.191406 C 204.378906 247.191406 204.472656 247.097656 204.472656 246.980469 Z M 204.472656 246.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.847656 245.394531 C 202.847656 245.277344 202.753906 245.183594 202.636719 245.183594 C 202.519531 245.183594 202.425781 245.277344 202.425781 245.394531 C 202.425781 245.511719 202.519531 245.605469 202.636719 245.605469 C 202.753906 245.605469 202.847656 245.511719 202.847656 245.394531 Z M 202.847656 245.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.511719 242.886719 C 199.511719 242.769531 199.417969 242.675781 199.300781 242.675781 C 199.183594 242.675781 199.089844 242.769531 199.089844 242.886719 C 199.089844 243.003906 199.183594 243.097656 199.300781 243.097656 C 199.417969 243.097656 199.511719 243.003906 199.511719 242.886719 Z M 199.511719 242.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.796875 246.398438 C 199.796875 246.28125 199.703125 246.1875 199.585938 246.1875 C 199.46875 246.1875 199.375 246.28125 199.375 246.398438 C 199.375 246.515625 199.46875 246.609375 199.585938 246.609375 C 199.703125 246.609375 199.796875 246.515625 199.796875 246.398438 Z M 199.796875 246.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.574219 246.894531 C 198.574219 246.777344 198.480469 246.683594 198.363281 246.683594 C 198.246094 246.683594 198.152344 246.777344 198.152344 246.894531 C 198.152344 247.011719 198.246094 247.105469 198.363281 247.105469 C 198.480469 247.105469 198.574219 247.011719 198.574219 246.894531 Z M 198.574219 246.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.863281 242.78125 C 196.863281 242.664062 196.769531 242.570312 196.652344 242.570312 C 196.535156 242.570312 196.441406 242.664062 196.441406 242.78125 C 196.441406 242.898438 196.535156 242.992188 196.652344 242.992188 C 196.769531 242.992188 196.863281 242.898438 196.863281 242.78125 Z M 196.863281 242.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.78125 242 C 194.78125 241.882812 194.6875 241.789062 194.570312 241.789062 C 194.453125 241.789062 194.359375 241.882812 194.359375 242 C 194.359375 242.117188 194.453125 242.210938 194.570312 242.210938 C 194.6875 242.210938 194.78125 242.117188 194.78125 242 Z M 194.78125 242 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.308594 243.464844 C 195.308594 243.347656 195.214844 243.253906 195.097656 243.253906 C 194.980469 243.253906 194.886719 243.347656 194.886719 243.464844 C 194.886719 243.582031 194.980469 243.675781 195.097656 243.675781 C 195.214844 243.675781 195.308594 243.582031 195.308594 243.464844 Z M 195.308594 243.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.421875 249.316406 C 195.421875 249.199219 195.328125 249.105469 195.210938 249.105469 C 195.09375 249.105469 195 249.199219 195 249.316406 C 195 249.433594 195.09375 249.527344 195.210938 249.527344 C 195.328125 249.527344 195.421875 249.433594 195.421875 249.316406 Z M 195.421875 249.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.703125 253.097656 C 196.703125 252.980469 196.609375 252.886719 196.492188 252.886719 C 196.375 252.886719 196.28125 252.980469 196.28125 253.097656 C 196.28125 253.214844 196.375 253.308594 196.492188 253.308594 C 196.609375 253.308594 196.703125 253.214844 196.703125 253.097656 Z M 196.703125 253.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.171875 254.648438 C 201.171875 254.53125 201.078125 254.4375 200.960938 254.4375 C 200.84375 254.4375 200.75 254.53125 200.75 254.648438 C 200.75 254.765625 200.84375 254.859375 200.960938 254.859375 C 201.078125 254.859375 201.171875 254.765625 201.171875 254.648438 Z M 201.171875 254.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.863281 255.359375 C 203.863281 255.242188 203.769531 255.148438 203.652344 255.148438 C 203.535156 255.148438 203.441406 255.242188 203.441406 255.359375 C 203.441406 255.476562 203.535156 255.570312 203.652344 255.570312 C 203.769531 255.570312 203.863281 255.476562 203.863281 255.359375 Z M 203.863281 255.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.992188 255.402344 C 205.992188 255.285156 205.898438 255.191406 205.78125 255.191406 C 205.664062 255.191406 205.570312 255.285156 205.570312 255.402344 C 205.570312 255.519531 205.664062 255.613281 205.78125 255.613281 C 205.898438 255.613281 205.992188 255.519531 205.992188 255.402344 Z M 205.992188 255.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.84375 256.953125 C 206.84375 256.835938 206.75 256.742188 206.632812 256.742188 C 206.515625 256.742188 206.421875 256.835938 206.421875 256.953125 C 206.421875 257.070312 206.515625 257.164062 206.632812 257.164062 C 206.75 257.164062 206.84375 257.070312 206.84375 256.953125 Z M 206.84375 256.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.585938 253.84375 C 205.585938 253.726562 205.492188 253.632812 205.375 253.632812 C 205.257812 253.632812 205.164062 253.726562 205.164062 253.84375 C 205.164062 253.960938 205.257812 254.054688 205.375 254.054688 C 205.492188 254.054688 205.585938 253.960938 205.585938 253.84375 Z M 205.585938 253.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.714844 253.480469 C 207.714844 253.363281 207.621094 253.269531 207.503906 253.269531 C 207.386719 253.269531 207.292969 253.363281 207.292969 253.480469 C 207.292969 253.597656 207.386719 253.691406 207.503906 253.691406 C 207.621094 253.691406 207.714844 253.597656 207.714844 253.480469 Z M 207.714844 253.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.210938 252.183594 C 209.210938 252.066406 209.117188 251.972656 209 251.972656 C 208.882812 251.972656 208.789062 252.066406 208.789062 252.183594 C 208.789062 252.300781 208.882812 252.394531 209 252.394531 C 209.117188 252.394531 209.210938 252.300781 209.210938 252.183594 Z M 209.210938 252.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.277344 252.742188 C 208.277344 252.625 208.183594 252.53125 208.066406 252.53125 C 207.949219 252.53125 207.855469 252.625 207.855469 252.742188 C 207.855469 252.859375 207.949219 252.953125 208.066406 252.953125 C 208.183594 252.953125 208.277344 252.859375 208.277344 252.742188 Z M 208.277344 252.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.921875 255.390625 C 210.921875 255.273438 210.828125 255.179688 210.710938 255.179688 C 210.59375 255.179688 210.5 255.273438 210.5 255.390625 C 210.5 255.507812 210.59375 255.601562 210.710938 255.601562 C 210.828125 255.601562 210.921875 255.507812 210.921875 255.390625 Z M 210.921875 255.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.617188 256.359375 C 213.617188 256.242188 213.523438 256.148438 213.40625 256.148438 C 213.289062 256.148438 213.195312 256.242188 213.195312 256.359375 C 213.195312 256.476562 213.289062 256.570312 213.40625 256.570312 C 213.523438 256.570312 213.617188 256.476562 213.617188 256.359375 Z M 213.617188 256.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.859375 258.664062 C 215.859375 258.546875 215.765625 258.453125 215.648438 258.453125 C 215.53125 258.453125 215.4375 258.546875 215.4375 258.664062 C 215.4375 258.78125 215.53125 258.875 215.648438 258.875 C 215.765625 258.875 215.859375 258.78125 215.859375 258.664062 Z M 215.859375 258.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.9375 258.683594 C 215.9375 258.566406 215.84375 258.472656 215.726562 258.472656 C 215.609375 258.472656 215.515625 258.566406 215.515625 258.683594 C 215.515625 258.800781 215.609375 258.894531 215.726562 258.894531 C 215.84375 258.894531 215.9375 258.800781 215.9375 258.683594 Z M 215.9375 258.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.335938 258.671875 C 217.335938 258.554688 217.242188 258.460938 217.125 258.460938 C 217.007812 258.460938 216.914062 258.554688 216.914062 258.671875 C 216.914062 258.789062 217.007812 258.882812 217.125 258.882812 C 217.242188 258.882812 217.335938 258.789062 217.335938 258.671875 Z M 217.335938 258.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.457031 257.890625 C 218.457031 257.773438 218.363281 257.679688 218.246094 257.679688 C 218.128906 257.679688 218.035156 257.773438 218.035156 257.890625 C 218.035156 258.007812 218.128906 258.101562 218.246094 258.101562 C 218.363281 258.101562 218.457031 258.007812 218.457031 257.890625 Z M 218.457031 257.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.359375 259.121094 C 218.359375 259.003906 218.265625 258.910156 218.148438 258.910156 C 218.03125 258.910156 217.9375 259.003906 217.9375 259.121094 C 217.9375 259.238281 218.03125 259.332031 218.148438 259.332031 C 218.265625 259.332031 218.359375 259.238281 218.359375 259.121094 Z M 218.359375 259.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.878906 260.324219 C 215.878906 260.207031 215.785156 260.113281 215.667969 260.113281 C 215.550781 260.113281 215.457031 260.207031 215.457031 260.324219 C 215.457031 260.441406 215.550781 260.535156 215.667969 260.535156 C 215.785156 260.535156 215.878906 260.441406 215.878906 260.324219 Z M 215.878906 260.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.183594 264.230469 C 217.183594 264.113281 217.089844 264.019531 216.972656 264.019531 C 216.855469 264.019531 216.761719 264.113281 216.761719 264.230469 C 216.761719 264.347656 216.855469 264.441406 216.972656 264.441406 C 217.089844 264.441406 217.183594 264.347656 217.183594 264.230469 Z M 217.183594 264.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.375 265.925781 C 218.375 265.808594 218.28125 265.714844 218.164062 265.714844 C 218.046875 265.714844 217.953125 265.808594 217.953125 265.925781 C 217.953125 266.042969 218.046875 266.136719 218.164062 266.136719 C 218.28125 266.136719 218.375 266.042969 218.375 265.925781 Z M 218.375 265.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.535156 264.851562 C 216.535156 264.734375 216.441406 264.640625 216.324219 264.640625 C 216.207031 264.640625 216.113281 264.734375 216.113281 264.851562 C 216.113281 264.96875 216.207031 265.0625 216.324219 265.0625 C 216.441406 265.0625 216.535156 264.96875 216.535156 264.851562 Z M 216.535156 264.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.054688 262 C 219.054688 261.882812 218.960938 261.789062 218.84375 261.789062 C 218.726562 261.789062 218.632812 261.882812 218.632812 262 C 218.632812 262.117188 218.726562 262.210938 218.84375 262.210938 C 218.960938 262.210938 219.054688 262.117188 219.054688 262 Z M 219.054688 262 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.386719 261.085938 C 219.386719 260.96875 219.292969 260.875 219.175781 260.875 C 219.058594 260.875 218.964844 260.96875 218.964844 261.085938 C 218.964844 261.203125 219.058594 261.296875 219.175781 261.296875 C 219.292969 261.296875 219.386719 261.203125 219.386719 261.085938 Z M 219.386719 261.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.527344 257.910156 C 218.527344 257.792969 218.433594 257.699219 218.316406 257.699219 C 218.199219 257.699219 218.105469 257.792969 218.105469 257.910156 C 218.105469 258.027344 218.199219 258.121094 218.316406 258.121094 C 218.433594 258.121094 218.527344 258.027344 218.527344 257.910156 Z M 218.527344 257.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.214844 256.367188 C 219.214844 256.25 219.121094 256.15625 219.003906 256.15625 C 218.886719 256.15625 218.792969 256.25 218.792969 256.367188 C 218.792969 256.484375 218.886719 256.578125 219.003906 256.578125 C 219.121094 256.578125 219.214844 256.484375 219.214844 256.367188 Z M 219.214844 256.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.078125 251.957031 C 218.078125 251.839844 217.984375 251.746094 217.867188 251.746094 C 217.75 251.746094 217.65625 251.839844 217.65625 251.957031 C 217.65625 252.074219 217.75 252.167969 217.867188 252.167969 C 217.984375 252.167969 218.078125 252.074219 218.078125 251.957031 Z M 218.078125 251.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.191406 251.308594 C 217.191406 251.191406 217.097656 251.097656 216.980469 251.097656 C 216.863281 251.097656 216.769531 251.191406 216.769531 251.308594 C 216.769531 251.425781 216.863281 251.519531 216.980469 251.519531 C 217.097656 251.519531 217.191406 251.425781 217.191406 251.308594 Z M 217.191406 251.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.683594 251.457031 C 213.683594 251.339844 213.589844 251.246094 213.472656 251.246094 C 213.355469 251.246094 213.261719 251.339844 213.261719 251.457031 C 213.261719 251.574219 213.355469 251.667969 213.472656 251.667969 C 213.589844 251.667969 213.683594 251.574219 213.683594 251.457031 Z M 213.683594 251.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.011719 254.382812 C 215.011719 254.265625 214.917969 254.171875 214.800781 254.171875 C 214.683594 254.171875 214.589844 254.265625 214.589844 254.382812 C 214.589844 254.5 214.683594 254.59375 214.800781 254.59375 C 214.917969 254.59375 215.011719 254.5 215.011719 254.382812 Z M 215.011719 254.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.421875 252.644531 C 214.421875 252.527344 214.328125 252.433594 214.210938 252.433594 C 214.09375 252.433594 214 252.527344 214 252.644531 C 214 252.761719 214.09375 252.855469 214.210938 252.855469 C 214.328125 252.855469 214.421875 252.761719 214.421875 252.644531 Z M 214.421875 252.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.511719 254.695312 C 212.511719 254.578125 212.417969 254.484375 212.300781 254.484375 C 212.183594 254.484375 212.089844 254.578125 212.089844 254.695312 C 212.089844 254.8125 212.183594 254.90625 212.300781 254.90625 C 212.417969 254.90625 212.511719 254.8125 212.511719 254.695312 Z M 212.511719 254.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.855469 253.972656 C 211.855469 253.855469 211.761719 253.761719 211.644531 253.761719 C 211.527344 253.761719 211.433594 253.855469 211.433594 253.972656 C 211.433594 254.089844 211.527344 254.183594 211.644531 254.183594 C 211.761719 254.183594 211.855469 254.089844 211.855469 253.972656 Z M 211.855469 253.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.972656 254.753906 C 207.972656 254.636719 207.878906 254.542969 207.761719 254.542969 C 207.644531 254.542969 207.550781 254.636719 207.550781 254.753906 C 207.550781 254.871094 207.644531 254.964844 207.761719 254.964844 C 207.878906 254.964844 207.972656 254.871094 207.972656 254.753906 Z M 207.972656 254.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.523438 259.914062 C 207.523438 259.796875 207.429688 259.703125 207.3125 259.703125 C 207.195312 259.703125 207.101562 259.796875 207.101562 259.914062 C 207.101562 260.03125 207.195312 260.125 207.3125 260.125 C 207.429688 260.125 207.523438 260.03125 207.523438 259.914062 Z M 207.523438 259.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.640625 256.21875 C 209.640625 256.101562 209.546875 256.007812 209.429688 256.007812 C 209.3125 256.007812 209.21875 256.101562 209.21875 256.21875 C 209.21875 256.335938 209.3125 256.429688 209.429688 256.429688 C 209.546875 256.429688 209.640625 256.335938 209.640625 256.21875 Z M 209.640625 256.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.652344 254.730469 C 206.652344 254.613281 206.558594 254.519531 206.441406 254.519531 C 206.324219 254.519531 206.230469 254.613281 206.230469 254.730469 C 206.230469 254.847656 206.324219 254.941406 206.441406 254.941406 C 206.558594 254.941406 206.652344 254.847656 206.652344 254.730469 Z M 206.652344 254.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.296875 258.632812 C 206.296875 258.515625 206.203125 258.421875 206.085938 258.421875 C 205.96875 258.421875 205.875 258.515625 205.875 258.632812 C 205.875 258.75 205.96875 258.84375 206.085938 258.84375 C 206.203125 258.84375 206.296875 258.75 206.296875 258.632812 Z M 206.296875 258.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.507812 260.042969 C 204.507812 259.925781 204.414062 259.832031 204.296875 259.832031 C 204.179688 259.832031 204.085938 259.925781 204.085938 260.042969 C 204.085938 260.160156 204.179688 260.253906 204.296875 260.253906 C 204.414062 260.253906 204.507812 260.160156 204.507812 260.042969 Z M 204.507812 260.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.90625 260.996094 C 202.90625 260.878906 202.8125 260.785156 202.695312 260.785156 C 202.578125 260.785156 202.484375 260.878906 202.484375 260.996094 C 202.484375 261.113281 202.578125 261.207031 202.695312 261.207031 C 202.8125 261.207031 202.90625 261.113281 202.90625 260.996094 Z M 202.90625 260.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.410156 263.496094 C 205.410156 263.378906 205.316406 263.285156 205.199219 263.285156 C 205.082031 263.285156 204.988281 263.378906 204.988281 263.496094 C 204.988281 263.613281 205.082031 263.707031 205.199219 263.707031 C 205.316406 263.707031 205.410156 263.613281 205.410156 263.496094 Z M 205.410156 263.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.769531 265.753906 C 202.769531 265.636719 202.675781 265.542969 202.558594 265.542969 C 202.441406 265.542969 202.347656 265.636719 202.347656 265.753906 C 202.347656 265.871094 202.441406 265.964844 202.558594 265.964844 C 202.675781 265.964844 202.769531 265.871094 202.769531 265.753906 Z M 202.769531 265.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.324219 267.980469 C 203.324219 267.863281 203.230469 267.769531 203.113281 267.769531 C 202.996094 267.769531 202.902344 267.863281 202.902344 267.980469 C 202.902344 268.097656 202.996094 268.191406 203.113281 268.191406 C 203.230469 268.191406 203.324219 268.097656 203.324219 267.980469 Z M 203.324219 267.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207 267.753906 C 207 267.636719 206.90625 267.542969 206.789062 267.542969 C 206.671875 267.542969 206.578125 267.636719 206.578125 267.753906 C 206.578125 267.871094 206.671875 267.964844 206.789062 267.964844 C 206.90625 267.964844 207 267.871094 207 267.753906 Z M 207 267.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.421875 266.890625 C 206.421875 266.773438 206.328125 266.679688 206.210938 266.679688 C 206.09375 266.679688 206 266.773438 206 266.890625 C 206 267.007812 206.09375 267.101562 206.210938 267.101562 C 206.328125 267.101562 206.421875 267.007812 206.421875 266.890625 Z M 206.421875 266.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.863281 262 C 207.863281 261.882812 207.769531 261.789062 207.652344 261.789062 C 207.535156 261.789062 207.441406 261.882812 207.441406 262 C 207.441406 262.117188 207.535156 262.210938 207.652344 262.210938 C 207.769531 262.210938 207.863281 262.117188 207.863281 262 Z M 207.863281 262 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.523438 264.710938 C 207.523438 264.59375 207.429688 264.5 207.3125 264.5 C 207.195312 264.5 207.101562 264.59375 207.101562 264.710938 C 207.101562 264.828125 207.195312 264.921875 207.3125 264.921875 C 207.429688 264.921875 207.523438 264.828125 207.523438 264.710938 Z M 207.523438 264.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.164062 265.9375 C 209.164062 265.820312 209.070312 265.726562 208.953125 265.726562 C 208.835938 265.726562 208.742188 265.820312 208.742188 265.9375 C 208.742188 266.054688 208.835938 266.148438 208.953125 266.148438 C 209.070312 266.148438 209.164062 266.054688 209.164062 265.9375 Z M 209.164062 265.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.984375 264.878906 C 211.984375 264.761719 211.890625 264.667969 211.773438 264.667969 C 211.65625 264.667969 211.5625 264.761719 211.5625 264.878906 C 211.5625 264.996094 211.65625 265.089844 211.773438 265.089844 C 211.890625 265.089844 211.984375 264.996094 211.984375 264.878906 Z M 211.984375 264.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.40625 267.464844 C 208.40625 267.347656 208.3125 267.253906 208.195312 267.253906 C 208.078125 267.253906 207.984375 267.347656 207.984375 267.464844 C 207.984375 267.582031 208.078125 267.675781 208.195312 267.675781 C 208.3125 267.675781 208.40625 267.582031 208.40625 267.464844 Z M 208.40625 267.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.585938 272.132812 C 205.585938 272.015625 205.492188 271.921875 205.375 271.921875 C 205.257812 271.921875 205.164062 272.015625 205.164062 272.132812 C 205.164062 272.25 205.257812 272.34375 205.375 272.34375 C 205.492188 272.34375 205.585938 272.25 205.585938 272.132812 Z M 205.585938 272.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.429688 268.691406 C 208.429688 268.574219 208.335938 268.480469 208.21875 268.480469 C 208.101562 268.480469 208.007812 268.574219 208.007812 268.691406 C 208.007812 268.808594 208.101562 268.902344 208.21875 268.902344 C 208.335938 268.902344 208.429688 268.808594 208.429688 268.691406 Z M 208.429688 268.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.003906 269.425781 C 208.003906 269.308594 207.910156 269.214844 207.792969 269.214844 C 207.675781 269.214844 207.582031 269.308594 207.582031 269.425781 C 207.582031 269.542969 207.675781 269.636719 207.792969 269.636719 C 207.910156 269.636719 208.003906 269.542969 208.003906 269.425781 Z M 208.003906 269.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.296875 268.609375 C 205.296875 268.492188 205.203125 268.398438 205.085938 268.398438 C 204.96875 268.398438 204.875 268.492188 204.875 268.609375 C 204.875 268.726562 204.96875 268.820312 205.085938 268.820312 C 205.203125 268.820312 205.296875 268.726562 205.296875 268.609375 Z M 205.296875 268.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.714844 268.277344 C 205.714844 268.160156 205.621094 268.066406 205.503906 268.066406 C 205.386719 268.066406 205.292969 268.160156 205.292969 268.277344 C 205.292969 268.394531 205.386719 268.488281 205.503906 268.488281 C 205.621094 268.488281 205.714844 268.394531 205.714844 268.277344 Z M 205.714844 268.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.367188 268.539062 C 205.367188 268.421875 205.273438 268.328125 205.15625 268.328125 C 205.039062 268.328125 204.945312 268.421875 204.945312 268.539062 C 204.945312 268.65625 205.039062 268.75 205.15625 268.75 C 205.273438 268.75 205.367188 268.65625 205.367188 268.539062 Z M 205.367188 268.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.699219 267.304688 C 203.699219 267.1875 203.605469 267.09375 203.488281 267.09375 C 203.371094 267.09375 203.277344 267.1875 203.277344 267.304688 C 203.277344 267.421875 203.371094 267.515625 203.488281 267.515625 C 203.605469 267.515625 203.699219 267.421875 203.699219 267.304688 Z M 203.699219 267.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.964844 265.03125 C 202.964844 264.914062 202.871094 264.820312 202.753906 264.820312 C 202.636719 264.820312 202.542969 264.914062 202.542969 265.03125 C 202.542969 265.148438 202.636719 265.242188 202.753906 265.242188 C 202.871094 265.242188 202.964844 265.148438 202.964844 265.03125 Z M 202.964844 265.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.675781 266.058594 C 200.675781 265.941406 200.582031 265.847656 200.464844 265.847656 C 200.347656 265.847656 200.253906 265.941406 200.253906 266.058594 C 200.253906 266.175781 200.347656 266.269531 200.464844 266.269531 C 200.582031 266.269531 200.675781 266.175781 200.675781 266.058594 Z M 200.675781 266.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.9375 267.609375 C 196.9375 267.492188 196.84375 267.398438 196.726562 267.398438 C 196.609375 267.398438 196.515625 267.492188 196.515625 267.609375 C 196.515625 267.726562 196.609375 267.820312 196.726562 267.820312 C 196.84375 267.820312 196.9375 267.726562 196.9375 267.609375 Z M 196.9375 267.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.964844 270.125 C 193.964844 270.007812 193.871094 269.914062 193.753906 269.914062 C 193.636719 269.914062 193.542969 270.007812 193.542969 270.125 C 193.542969 270.242188 193.636719 270.335938 193.753906 270.335938 C 193.871094 270.335938 193.964844 270.242188 193.964844 270.125 Z M 193.964844 270.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.019531 271.179688 C 198.019531 271.0625 197.925781 270.96875 197.808594 270.96875 C 197.691406 270.96875 197.597656 271.0625 197.597656 271.179688 C 197.597656 271.296875 197.691406 271.390625 197.808594 271.390625 C 197.925781 271.390625 198.019531 271.296875 198.019531 271.179688 Z M 198.019531 271.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.96875 272.96875 C 195.96875 272.851562 195.875 272.757812 195.757812 272.757812 C 195.640625 272.757812 195.546875 272.851562 195.546875 272.96875 C 195.546875 273.085938 195.640625 273.179688 195.757812 273.179688 C 195.875 273.179688 195.96875 273.085938 195.96875 272.96875 Z M 195.96875 272.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.847656 268.828125 C 193.847656 268.710938 193.753906 268.617188 193.636719 268.617188 C 193.519531 268.617188 193.425781 268.710938 193.425781 268.828125 C 193.425781 268.945312 193.519531 269.039062 193.636719 269.039062 C 193.753906 269.039062 193.847656 268.945312 193.847656 268.828125 Z M 193.847656 268.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.980469 266.824219 C 196.980469 266.707031 196.886719 266.613281 196.769531 266.613281 C 196.652344 266.613281 196.558594 266.707031 196.558594 266.824219 C 196.558594 266.941406 196.652344 267.035156 196.769531 267.035156 C 196.886719 267.035156 196.980469 266.941406 196.980469 266.824219 Z M 196.980469 266.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.847656 266.230469 C 195.847656 266.113281 195.753906 266.019531 195.636719 266.019531 C 195.519531 266.019531 195.425781 266.113281 195.425781 266.230469 C 195.425781 266.347656 195.519531 266.441406 195.636719 266.441406 C 195.753906 266.441406 195.847656 266.347656 195.847656 266.230469 Z M 195.847656 266.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.914062 268.3125 C 194.914062 268.195312 194.820312 268.101562 194.703125 268.101562 C 194.585938 268.101562 194.492188 268.195312 194.492188 268.3125 C 194.492188 268.429688 194.585938 268.523438 194.703125 268.523438 C 194.820312 268.523438 194.914062 268.429688 194.914062 268.3125 Z M 194.914062 268.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.441406 267.796875 C 194.441406 267.679688 194.347656 267.585938 194.230469 267.585938 C 194.113281 267.585938 194.019531 267.679688 194.019531 267.796875 C 194.019531 267.914062 194.113281 268.007812 194.230469 268.007812 C 194.347656 268.007812 194.441406 267.914062 194.441406 267.796875 Z M 194.441406 267.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.824219 272.367188 C 191.824219 272.25 191.730469 272.15625 191.613281 272.15625 C 191.496094 272.15625 191.402344 272.25 191.402344 272.367188 C 191.402344 272.484375 191.496094 272.578125 191.613281 272.578125 C 191.730469 272.578125 191.824219 272.484375 191.824219 272.367188 Z M 191.824219 272.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.949219 271.710938 C 192.949219 271.59375 192.855469 271.5 192.738281 271.5 C 192.621094 271.5 192.527344 271.59375 192.527344 271.710938 C 192.527344 271.828125 192.621094 271.921875 192.738281 271.921875 C 192.855469 271.921875 192.949219 271.828125 192.949219 271.710938 Z M 192.949219 271.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.800781 269.585938 C 190.800781 269.46875 190.707031 269.375 190.589844 269.375 C 190.472656 269.375 190.378906 269.46875 190.378906 269.585938 C 190.378906 269.703125 190.472656 269.796875 190.589844 269.796875 C 190.707031 269.796875 190.800781 269.703125 190.800781 269.585938 Z M 190.800781 269.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.453125 266.640625 C 189.453125 266.523438 189.359375 266.429688 189.242188 266.429688 C 189.125 266.429688 189.03125 266.523438 189.03125 266.640625 C 189.03125 266.757812 189.125 266.851562 189.242188 266.851562 C 189.359375 266.851562 189.453125 266.757812 189.453125 266.640625 Z M 189.453125 266.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.414062 264.800781 C 190.414062 264.683594 190.320312 264.589844 190.203125 264.589844 C 190.085938 264.589844 189.992188 264.683594 189.992188 264.800781 C 189.992188 264.917969 190.085938 265.011719 190.203125 265.011719 C 190.320312 265.011719 190.414062 264.917969 190.414062 264.800781 Z M 190.414062 264.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.019531 269.378906 C 193.019531 269.261719 192.925781 269.167969 192.808594 269.167969 C 192.691406 269.167969 192.597656 269.261719 192.597656 269.378906 C 192.597656 269.496094 192.691406 269.589844 192.808594 269.589844 C 192.925781 269.589844 193.019531 269.496094 193.019531 269.378906 Z M 193.019531 269.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.726562 270.4375 C 192.726562 270.320312 192.632812 270.226562 192.515625 270.226562 C 192.398438 270.226562 192.304688 270.320312 192.304688 270.4375 C 192.304688 270.554688 192.398438 270.648438 192.515625 270.648438 C 192.632812 270.648438 192.726562 270.554688 192.726562 270.4375 Z M 192.726562 270.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.589844 269.566406 C 191.589844 269.449219 191.496094 269.355469 191.378906 269.355469 C 191.261719 269.355469 191.167969 269.449219 191.167969 269.566406 C 191.167969 269.683594 191.261719 269.777344 191.378906 269.777344 C 191.496094 269.777344 191.589844 269.683594 191.589844 269.566406 Z M 191.589844 269.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.835938 266.582031 C 191.835938 266.464844 191.742188 266.371094 191.625 266.371094 C 191.507812 266.371094 191.414062 266.464844 191.414062 266.582031 C 191.414062 266.699219 191.507812 266.792969 191.625 266.792969 C 191.742188 266.792969 191.835938 266.699219 191.835938 266.582031 Z M 191.835938 266.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.21875 265.292969 C 189.21875 265.175781 189.125 265.082031 189.007812 265.082031 C 188.890625 265.082031 188.796875 265.175781 188.796875 265.292969 C 188.796875 265.410156 188.890625 265.503906 189.007812 265.503906 C 189.125 265.503906 189.21875 265.410156 189.21875 265.292969 Z M 189.21875 265.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.707031 259.832031 C 191.707031 259.714844 191.613281 259.621094 191.496094 259.621094 C 191.378906 259.621094 191.285156 259.714844 191.285156 259.832031 C 191.285156 259.949219 191.378906 260.042969 191.496094 260.042969 C 191.613281 260.042969 191.707031 259.949219 191.707031 259.832031 Z M 191.707031 259.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.066406 261.226562 C 194.066406 261.109375 193.972656 261.015625 193.855469 261.015625 C 193.738281 261.015625 193.644531 261.109375 193.644531 261.226562 C 193.644531 261.34375 193.738281 261.4375 193.855469 261.4375 C 193.972656 261.4375 194.066406 261.34375 194.066406 261.226562 Z M 194.066406 261.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.507812 263.65625 C 194.507812 263.539062 194.414062 263.445312 194.296875 263.445312 C 194.179688 263.445312 194.085938 263.539062 194.085938 263.65625 C 194.085938 263.773438 194.179688 263.867188 194.296875 263.867188 C 194.414062 263.867188 194.507812 263.773438 194.507812 263.65625 Z M 194.507812 263.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.429688 262.667969 C 197.429688 262.550781 197.335938 262.457031 197.21875 262.457031 C 197.101562 262.457031 197.007812 262.550781 197.007812 262.667969 C 197.007812 262.785156 197.101562 262.878906 197.21875 262.878906 C 197.335938 262.878906 197.429688 262.785156 197.429688 262.667969 Z M 197.429688 262.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.261719 263.355469 C 200.261719 263.238281 200.167969 263.144531 200.050781 263.144531 C 199.933594 263.144531 199.839844 263.238281 199.839844 263.355469 C 199.839844 263.472656 199.933594 263.566406 200.050781 263.566406 C 200.167969 263.566406 200.261719 263.472656 200.261719 263.355469 Z M 200.261719 263.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.082031 261.992188 C 201.082031 261.875 200.988281 261.78125 200.871094 261.78125 C 200.753906 261.78125 200.660156 261.875 200.660156 261.992188 C 200.660156 262.109375 200.753906 262.203125 200.871094 262.203125 C 200.988281 262.203125 201.082031 262.109375 201.082031 261.992188 Z M 201.082031 261.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.21875 261.773438 C 201.21875 261.65625 201.125 261.5625 201.007812 261.5625 C 200.890625 261.5625 200.796875 261.65625 200.796875 261.773438 C 200.796875 261.890625 200.890625 261.984375 201.007812 261.984375 C 201.125 261.984375 201.21875 261.890625 201.21875 261.773438 Z M 201.21875 261.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.054688 262.976562 C 202.054688 262.859375 201.960938 262.765625 201.84375 262.765625 C 201.726562 262.765625 201.632812 262.859375 201.632812 262.976562 C 201.632812 263.09375 201.726562 263.1875 201.84375 263.1875 C 201.960938 263.1875 202.054688 263.09375 202.054688 262.976562 Z M 202.054688 262.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.355469 263.367188 C 202.355469 263.25 202.261719 263.15625 202.144531 263.15625 C 202.027344 263.15625 201.933594 263.25 201.933594 263.367188 C 201.933594 263.484375 202.027344 263.578125 202.144531 263.578125 C 202.261719 263.578125 202.355469 263.484375 202.355469 263.367188 Z M 202.355469 263.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.695312 262.757812 C 199.695312 262.640625 199.601562 262.546875 199.484375 262.546875 C 199.367188 262.546875 199.273438 262.640625 199.273438 262.757812 C 199.273438 262.875 199.367188 262.96875 199.484375 262.96875 C 199.601562 262.96875 199.695312 262.875 199.695312 262.757812 Z M 199.695312 262.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.46875 261.390625 C 201.46875 261.273438 201.375 261.179688 201.257812 261.179688 C 201.140625 261.179688 201.046875 261.273438 201.046875 261.390625 C 201.046875 261.507812 201.140625 261.601562 201.257812 261.601562 C 201.375 261.601562 201.46875 261.507812 201.46875 261.390625 Z M 201.46875 261.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.476562 260.503906 C 199.476562 260.386719 199.382812 260.292969 199.265625 260.292969 C 199.148438 260.292969 199.054688 260.386719 199.054688 260.503906 C 199.054688 260.621094 199.148438 260.714844 199.265625 260.714844 C 199.382812 260.714844 199.476562 260.621094 199.476562 260.503906 Z M 199.476562 260.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.414062 260.699219 C 199.414062 260.582031 199.320312 260.488281 199.203125 260.488281 C 199.085938 260.488281 198.992188 260.582031 198.992188 260.699219 C 198.992188 260.816406 199.085938 260.910156 199.203125 260.910156 C 199.320312 260.910156 199.414062 260.816406 199.414062 260.699219 Z M 199.414062 260.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.488281 260.050781 C 199.488281 259.933594 199.394531 259.839844 199.277344 259.839844 C 199.160156 259.839844 199.066406 259.933594 199.066406 260.050781 C 199.066406 260.167969 199.160156 260.261719 199.277344 260.261719 C 199.394531 260.261719 199.488281 260.167969 199.488281 260.050781 Z M 199.488281 260.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.96875 259.015625 C 197.96875 258.898438 197.875 258.804688 197.757812 258.804688 C 197.640625 258.804688 197.546875 258.898438 197.546875 259.015625 C 197.546875 259.132812 197.640625 259.226562 197.757812 259.226562 C 197.875 259.226562 197.96875 259.132812 197.96875 259.015625 Z M 197.96875 259.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.253906 253.613281 C 196.253906 253.496094 196.160156 253.402344 196.042969 253.402344 C 195.925781 253.402344 195.832031 253.496094 195.832031 253.613281 C 195.832031 253.730469 195.925781 253.824219 196.042969 253.824219 C 196.160156 253.824219 196.253906 253.730469 196.253906 253.613281 Z M 196.253906 253.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.199219 252.730469 C 197.199219 252.613281 197.105469 252.519531 196.988281 252.519531 C 196.871094 252.519531 196.777344 252.613281 196.777344 252.730469 C 196.777344 252.847656 196.871094 252.941406 196.988281 252.941406 C 197.105469 252.941406 197.199219 252.847656 197.199219 252.730469 Z M 197.199219 252.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.152344 249.167969 C 198.152344 249.050781 198.058594 248.957031 197.941406 248.957031 C 197.824219 248.957031 197.730469 249.050781 197.730469 249.167969 C 197.730469 249.285156 197.824219 249.378906 197.941406 249.378906 C 198.058594 249.378906 198.152344 249.285156 198.152344 249.167969 Z M 198.152344 249.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.632812 249.09375 C 200.632812 248.976562 200.539062 248.882812 200.421875 248.882812 C 200.304688 248.882812 200.210938 248.976562 200.210938 249.09375 C 200.210938 249.210938 200.304688 249.304688 200.421875 249.304688 C 200.539062 249.304688 200.632812 249.210938 200.632812 249.09375 Z M 200.632812 249.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.632812 253.371094 C 199.632812 253.253906 199.539062 253.160156 199.421875 253.160156 C 199.304688 253.160156 199.210938 253.253906 199.210938 253.371094 C 199.210938 253.488281 199.304688 253.582031 199.421875 253.582031 C 199.539062 253.582031 199.632812 253.488281 199.632812 253.371094 Z M 199.632812 253.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.082031 254.574219 C 197.082031 254.457031 196.988281 254.363281 196.871094 254.363281 C 196.753906 254.363281 196.660156 254.457031 196.660156 254.574219 C 196.660156 254.691406 196.753906 254.785156 196.871094 254.785156 C 196.988281 254.785156 197.082031 254.691406 197.082031 254.574219 Z M 197.082031 254.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.554688 259.324219 C 196.554688 259.207031 196.460938 259.113281 196.34375 259.113281 C 196.226562 259.113281 196.132812 259.207031 196.132812 259.324219 C 196.132812 259.441406 196.226562 259.535156 196.34375 259.535156 C 196.460938 259.535156 196.554688 259.441406 196.554688 259.324219 Z M 196.554688 259.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.179688 258.8125 C 196.179688 258.695312 196.085938 258.601562 195.96875 258.601562 C 195.851562 258.601562 195.757812 258.695312 195.757812 258.8125 C 195.757812 258.929688 195.851562 259.023438 195.96875 259.023438 C 196.085938 259.023438 196.179688 258.929688 196.179688 258.8125 Z M 196.179688 258.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.019531 259.421875 C 199.019531 259.304688 198.925781 259.210938 198.808594 259.210938 C 198.691406 259.210938 198.597656 259.304688 198.597656 259.421875 C 198.597656 259.539062 198.691406 259.632812 198.808594 259.632812 C 198.925781 259.632812 199.019531 259.539062 199.019531 259.421875 Z M 199.019531 259.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.929688 260.289062 C 198.929688 260.171875 198.835938 260.078125 198.71875 260.078125 C 198.601562 260.078125 198.507812 260.171875 198.507812 260.289062 C 198.507812 260.40625 198.601562 260.5 198.71875 260.5 C 198.835938 260.5 198.929688 260.40625 198.929688 260.289062 Z M 198.929688 260.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.15625 259.097656 C 200.15625 258.980469 200.0625 258.886719 199.945312 258.886719 C 199.828125 258.886719 199.734375 258.980469 199.734375 259.097656 C 199.734375 259.214844 199.828125 259.308594 199.945312 259.308594 C 200.0625 259.308594 200.15625 259.214844 200.15625 259.097656 Z M 200.15625 259.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.773438 258.855469 C 202.773438 258.738281 202.679688 258.644531 202.5625 258.644531 C 202.445312 258.644531 202.351562 258.738281 202.351562 258.855469 C 202.351562 258.972656 202.445312 259.066406 202.5625 259.066406 C 202.679688 259.066406 202.773438 258.972656 202.773438 258.855469 Z M 202.773438 258.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.183594 260.199219 C 203.183594 260.082031 203.089844 259.988281 202.972656 259.988281 C 202.855469 259.988281 202.761719 260.082031 202.761719 260.199219 C 202.761719 260.316406 202.855469 260.410156 202.972656 260.410156 C 203.089844 260.410156 203.183594 260.316406 203.183594 260.199219 Z M 203.183594 260.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.042969 263.980469 C 208.042969 263.863281 207.949219 263.769531 207.832031 263.769531 C 207.714844 263.769531 207.621094 263.863281 207.621094 263.980469 C 207.621094 264.097656 207.714844 264.191406 207.832031 264.191406 C 207.949219 264.191406 208.042969 264.097656 208.042969 263.980469 Z M 208.042969 263.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.097656 262.070312 C 207.097656 261.953125 207.003906 261.859375 206.886719 261.859375 C 206.769531 261.859375 206.675781 261.953125 206.675781 262.070312 C 206.675781 262.1875 206.769531 262.28125 206.886719 262.28125 C 207.003906 262.28125 207.097656 262.1875 207.097656 262.070312 Z M 207.097656 262.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.152344 262.988281 C 205.152344 262.871094 205.058594 262.777344 204.941406 262.777344 C 204.824219 262.777344 204.730469 262.871094 204.730469 262.988281 C 204.730469 263.105469 204.824219 263.199219 204.941406 263.199219 C 205.058594 263.199219 205.152344 263.105469 205.152344 262.988281 Z M 205.152344 262.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.753906 260.105469 C 204.753906 259.988281 204.660156 259.894531 204.542969 259.894531 C 204.425781 259.894531 204.332031 259.988281 204.332031 260.105469 C 204.332031 260.222656 204.425781 260.316406 204.542969 260.316406 C 204.660156 260.316406 204.753906 260.222656 204.753906 260.105469 Z M 204.753906 260.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.242188 262.09375 C 203.242188 261.976562 203.148438 261.882812 203.03125 261.882812 C 202.914062 261.882812 202.820312 261.976562 202.820312 262.09375 C 202.820312 262.210938 202.914062 262.304688 203.03125 262.304688 C 203.148438 262.304688 203.242188 262.210938 203.242188 262.09375 Z M 203.242188 262.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.617188 263.152344 C 200.617188 263.035156 200.523438 262.941406 200.40625 262.941406 C 200.289062 262.941406 200.195312 263.035156 200.195312 263.152344 C 200.195312 263.269531 200.289062 263.363281 200.40625 263.363281 C 200.523438 263.363281 200.617188 263.269531 200.617188 263.152344 Z M 200.617188 263.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.773438 262.949219 C 200.773438 262.832031 200.679688 262.738281 200.5625 262.738281 C 200.445312 262.738281 200.351562 262.832031 200.351562 262.949219 C 200.351562 263.066406 200.445312 263.160156 200.5625 263.160156 C 200.679688 263.160156 200.773438 263.066406 200.773438 262.949219 Z M 200.773438 262.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.101562 264.371094 C 199.101562 264.253906 199.007812 264.160156 198.890625 264.160156 C 198.773438 264.160156 198.679688 264.253906 198.679688 264.371094 C 198.679688 264.488281 198.773438 264.582031 198.890625 264.582031 C 199.007812 264.582031 199.101562 264.488281 199.101562 264.371094 Z M 199.101562 264.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.320312 261.902344 C 197.320312 261.785156 197.226562 261.691406 197.109375 261.691406 C 196.992188 261.691406 196.898438 261.785156 196.898438 261.902344 C 196.898438 262.019531 196.992188 262.113281 197.109375 262.113281 C 197.226562 262.113281 197.320312 262.019531 197.320312 261.902344 Z M 197.320312 261.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.015625 258.613281 C 197.015625 258.496094 196.921875 258.402344 196.804688 258.402344 C 196.6875 258.402344 196.59375 258.496094 196.59375 258.613281 C 196.59375 258.730469 196.6875 258.824219 196.804688 258.824219 C 196.921875 258.824219 197.015625 258.730469 197.015625 258.613281 Z M 197.015625 258.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.195312 257.652344 C 199.195312 257.535156 199.101562 257.441406 198.984375 257.441406 C 198.867188 257.441406 198.773438 257.535156 198.773438 257.652344 C 198.773438 257.769531 198.867188 257.863281 198.984375 257.863281 C 199.101562 257.863281 199.195312 257.769531 199.195312 257.652344 Z M 199.195312 257.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.621094 257.78125 C 195.621094 257.664062 195.527344 257.570312 195.410156 257.570312 C 195.292969 257.570312 195.199219 257.664062 195.199219 257.78125 C 195.199219 257.898438 195.292969 257.992188 195.410156 257.992188 C 195.527344 257.992188 195.621094 257.898438 195.621094 257.78125 Z M 195.621094 257.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.292969 258.320312 C 198.292969 258.203125 198.199219 258.109375 198.082031 258.109375 C 197.964844 258.109375 197.871094 258.203125 197.871094 258.320312 C 197.871094 258.4375 197.964844 258.53125 198.082031 258.53125 C 198.199219 258.53125 198.292969 258.4375 198.292969 258.320312 Z M 198.292969 258.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.761719 257.957031 C 200.761719 257.839844 200.667969 257.746094 200.550781 257.746094 C 200.433594 257.746094 200.339844 257.839844 200.339844 257.957031 C 200.339844 258.074219 200.433594 258.167969 200.550781 258.167969 C 200.667969 258.167969 200.761719 258.074219 200.761719 257.957031 Z M 200.761719 257.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.34375 260.933594 C 196.34375 260.816406 196.25 260.722656 196.132812 260.722656 C 196.015625 260.722656 195.921875 260.816406 195.921875 260.933594 C 195.921875 261.050781 196.015625 261.144531 196.132812 261.144531 C 196.25 261.144531 196.34375 261.050781 196.34375 260.933594 Z M 196.34375 260.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.738281 261.429688 C 197.738281 261.3125 197.644531 261.21875 197.527344 261.21875 C 197.410156 261.21875 197.316406 261.3125 197.316406 261.429688 C 197.316406 261.546875 197.410156 261.640625 197.527344 261.640625 C 197.644531 261.640625 197.738281 261.546875 197.738281 261.429688 Z M 197.738281 261.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.898438 259.230469 C 202.898438 259.113281 202.804688 259.019531 202.6875 259.019531 C 202.570312 259.019531 202.476562 259.113281 202.476562 259.230469 C 202.476562 259.347656 202.570312 259.441406 202.6875 259.441406 C 202.804688 259.441406 202.898438 259.347656 202.898438 259.230469 Z M 202.898438 259.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.253906 258.820312 C 201.253906 258.703125 201.160156 258.609375 201.042969 258.609375 C 200.925781 258.609375 200.832031 258.703125 200.832031 258.820312 C 200.832031 258.9375 200.925781 259.03125 201.042969 259.03125 C 201.160156 259.03125 201.253906 258.9375 201.253906 258.820312 Z M 201.253906 258.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.503906 259.859375 C 201.503906 259.742188 201.410156 259.648438 201.292969 259.648438 C 201.175781 259.648438 201.082031 259.742188 201.082031 259.859375 C 201.082031 259.976562 201.175781 260.070312 201.292969 260.070312 C 201.410156 260.070312 201.503906 259.976562 201.503906 259.859375 Z M 201.503906 259.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.472656 259.984375 C 201.472656 259.867188 201.378906 259.773438 201.261719 259.773438 C 201.144531 259.773438 201.050781 259.867188 201.050781 259.984375 C 201.050781 260.101562 201.144531 260.195312 201.261719 260.195312 C 201.378906 260.195312 201.472656 260.101562 201.472656 259.984375 Z M 201.472656 259.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.839844 258.15625 C 200.839844 258.039062 200.746094 257.945312 200.628906 257.945312 C 200.511719 257.945312 200.417969 258.039062 200.417969 258.15625 C 200.417969 258.273438 200.511719 258.367188 200.628906 258.367188 C 200.746094 258.367188 200.839844 258.273438 200.839844 258.15625 Z M 200.839844 258.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.105469 259.058594 C 203.105469 258.941406 203.011719 258.847656 202.894531 258.847656 C 202.777344 258.847656 202.683594 258.941406 202.683594 259.058594 C 202.683594 259.175781 202.777344 259.269531 202.894531 259.269531 C 203.011719 259.269531 203.105469 259.175781 203.105469 259.058594 Z M 203.105469 259.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.804688 259.359375 C 200.804688 259.242188 200.710938 259.148438 200.59375 259.148438 C 200.476562 259.148438 200.382812 259.242188 200.382812 259.359375 C 200.382812 259.476562 200.476562 259.570312 200.59375 259.570312 C 200.710938 259.570312 200.804688 259.476562 200.804688 259.359375 Z M 200.804688 259.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.34375 255.417969 C 200.34375 255.300781 200.25 255.207031 200.132812 255.207031 C 200.015625 255.207031 199.921875 255.300781 199.921875 255.417969 C 199.921875 255.535156 200.015625 255.628906 200.132812 255.628906 C 200.25 255.628906 200.34375 255.535156 200.34375 255.417969 Z M 200.34375 255.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.417969 254.988281 C 199.417969 254.871094 199.324219 254.777344 199.207031 254.777344 C 199.089844 254.777344 198.996094 254.871094 198.996094 254.988281 C 198.996094 255.105469 199.089844 255.199219 199.207031 255.199219 C 199.324219 255.199219 199.417969 255.105469 199.417969 254.988281 Z M 199.417969 254.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.300781 253.265625 C 197.300781 253.148438 197.207031 253.054688 197.089844 253.054688 C 196.972656 253.054688 196.878906 253.148438 196.878906 253.265625 C 196.878906 253.382812 196.972656 253.476562 197.089844 253.476562 C 197.207031 253.476562 197.300781 253.382812 197.300781 253.265625 Z M 197.300781 253.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.523438 252.917969 C 196.523438 252.800781 196.429688 252.707031 196.3125 252.707031 C 196.195312 252.707031 196.101562 252.800781 196.101562 252.917969 C 196.101562 253.035156 196.195312 253.128906 196.3125 253.128906 C 196.429688 253.128906 196.523438 253.035156 196.523438 252.917969 Z M 196.523438 252.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.765625 254.769531 C 196.765625 254.652344 196.671875 254.558594 196.554688 254.558594 C 196.4375 254.558594 196.34375 254.652344 196.34375 254.769531 C 196.34375 254.886719 196.4375 254.980469 196.554688 254.980469 C 196.671875 254.980469 196.765625 254.886719 196.765625 254.769531 Z M 196.765625 254.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.285156 253.007812 C 196.285156 252.890625 196.191406 252.796875 196.074219 252.796875 C 195.957031 252.796875 195.863281 252.890625 195.863281 253.007812 C 195.863281 253.125 195.957031 253.21875 196.074219 253.21875 C 196.191406 253.21875 196.285156 253.125 196.285156 253.007812 Z M 196.285156 253.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.738281 252.222656 C 196.738281 252.105469 196.644531 252.011719 196.527344 252.011719 C 196.410156 252.011719 196.316406 252.105469 196.316406 252.222656 C 196.316406 252.339844 196.410156 252.433594 196.527344 252.433594 C 196.644531 252.433594 196.738281 252.339844 196.738281 252.222656 Z M 196.738281 252.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.597656 255.222656 C 195.597656 255.105469 195.503906 255.011719 195.386719 255.011719 C 195.269531 255.011719 195.175781 255.105469 195.175781 255.222656 C 195.175781 255.339844 195.269531 255.433594 195.386719 255.433594 C 195.503906 255.433594 195.597656 255.339844 195.597656 255.222656 Z M 195.597656 255.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.628906 257.285156 C 198.628906 257.167969 198.535156 257.074219 198.417969 257.074219 C 198.300781 257.074219 198.207031 257.167969 198.207031 257.285156 C 198.207031 257.402344 198.300781 257.496094 198.417969 257.496094 C 198.535156 257.496094 198.628906 257.402344 198.628906 257.285156 Z M 198.628906 257.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.257812 259.707031 C 199.257812 259.589844 199.164062 259.496094 199.046875 259.496094 C 198.929688 259.496094 198.835938 259.589844 198.835938 259.707031 C 198.835938 259.824219 198.929688 259.917969 199.046875 259.917969 C 199.164062 259.917969 199.257812 259.824219 199.257812 259.707031 Z M 199.257812 259.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.320312 259.476562 C 199.320312 259.359375 199.226562 259.265625 199.109375 259.265625 C 198.992188 259.265625 198.898438 259.359375 198.898438 259.476562 C 198.898438 259.59375 198.992188 259.6875 199.109375 259.6875 C 199.226562 259.6875 199.320312 259.59375 199.320312 259.476562 Z M 199.320312 259.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.667969 261.644531 C 202.667969 261.527344 202.574219 261.433594 202.457031 261.433594 C 202.339844 261.433594 202.246094 261.527344 202.246094 261.644531 C 202.246094 261.761719 202.339844 261.855469 202.457031 261.855469 C 202.574219 261.855469 202.667969 261.761719 202.667969 261.644531 Z M 202.667969 261.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.515625 262.773438 C 204.515625 262.65625 204.421875 262.5625 204.304688 262.5625 C 204.1875 262.5625 204.09375 262.65625 204.09375 262.773438 C 204.09375 262.890625 204.1875 262.984375 204.304688 262.984375 C 204.421875 262.984375 204.515625 262.890625 204.515625 262.773438 Z M 204.515625 262.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.546875 262.1875 C 204.546875 262.070312 204.453125 261.976562 204.335938 261.976562 C 204.21875 261.976562 204.125 262.070312 204.125 262.1875 C 204.125 262.304688 204.21875 262.398438 204.335938 262.398438 C 204.453125 262.398438 204.546875 262.304688 204.546875 262.1875 Z M 204.546875 262.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.757812 261.578125 C 203.757812 261.460938 203.664062 261.367188 203.546875 261.367188 C 203.429688 261.367188 203.335938 261.460938 203.335938 261.578125 C 203.335938 261.695312 203.429688 261.789062 203.546875 261.789062 C 203.664062 261.789062 203.757812 261.695312 203.757812 261.578125 Z M 203.757812 261.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.105469 261.371094 C 201.105469 261.253906 201.011719 261.160156 200.894531 261.160156 C 200.777344 261.160156 200.683594 261.253906 200.683594 261.371094 C 200.683594 261.488281 200.777344 261.582031 200.894531 261.582031 C 201.011719 261.582031 201.105469 261.488281 201.105469 261.371094 Z M 201.105469 261.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.734375 260.996094 C 201.734375 260.878906 201.640625 260.785156 201.523438 260.785156 C 201.40625 260.785156 201.3125 260.878906 201.3125 260.996094 C 201.3125 261.113281 201.40625 261.207031 201.523438 261.207031 C 201.640625 261.207031 201.734375 261.113281 201.734375 260.996094 Z M 201.734375 260.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.878906 258.597656 C 201.878906 258.480469 201.785156 258.386719 201.667969 258.386719 C 201.550781 258.386719 201.457031 258.480469 201.457031 258.597656 C 201.457031 258.714844 201.550781 258.808594 201.667969 258.808594 C 201.785156 258.808594 201.878906 258.714844 201.878906 258.597656 Z M 201.878906 258.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.839844 262.855469 C 201.839844 262.738281 201.746094 262.644531 201.628906 262.644531 C 201.511719 262.644531 201.417969 262.738281 201.417969 262.855469 C 201.417969 262.972656 201.511719 263.066406 201.628906 263.066406 C 201.746094 263.066406 201.839844 262.972656 201.839844 262.855469 Z M 201.839844 262.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.9375 264.609375 C 198.9375 264.492188 198.84375 264.398438 198.726562 264.398438 C 198.609375 264.398438 198.515625 264.492188 198.515625 264.609375 C 198.515625 264.726562 198.609375 264.820312 198.726562 264.820312 C 198.84375 264.820312 198.9375 264.726562 198.9375 264.609375 Z M 198.9375 264.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.65625 264.253906 C 199.65625 264.136719 199.5625 264.042969 199.445312 264.042969 C 199.328125 264.042969 199.234375 264.136719 199.234375 264.253906 C 199.234375 264.371094 199.328125 264.464844 199.445312 264.464844 C 199.5625 264.464844 199.65625 264.371094 199.65625 264.253906 Z M 199.65625 264.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.449219 267.074219 C 199.449219 266.957031 199.355469 266.863281 199.238281 266.863281 C 199.121094 266.863281 199.027344 266.957031 199.027344 267.074219 C 199.027344 267.191406 199.121094 267.285156 199.238281 267.285156 C 199.355469 267.285156 199.449219 267.191406 199.449219 267.074219 Z M 199.449219 267.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.328125 264.957031 C 201.328125 264.839844 201.234375 264.746094 201.117188 264.746094 C 201 264.746094 200.90625 264.839844 200.90625 264.957031 C 200.90625 265.074219 201 265.167969 201.117188 265.167969 C 201.234375 265.167969 201.328125 265.074219 201.328125 264.957031 Z M 201.328125 264.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.886719 263.011719 C 198.886719 262.894531 198.792969 262.800781 198.675781 262.800781 C 198.558594 262.800781 198.464844 262.894531 198.464844 263.011719 C 198.464844 263.128906 198.558594 263.222656 198.675781 263.222656 C 198.792969 263.222656 198.886719 263.128906 198.886719 263.011719 Z M 198.886719 263.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.136719 264.886719 C 199.136719 264.769531 199.042969 264.675781 198.925781 264.675781 C 198.808594 264.675781 198.714844 264.769531 198.714844 264.886719 C 198.714844 265.003906 198.808594 265.097656 198.925781 265.097656 C 199.042969 265.097656 199.136719 265.003906 199.136719 264.886719 Z M 199.136719 264.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.917969 263.042969 C 196.917969 262.925781 196.824219 262.832031 196.707031 262.832031 C 196.589844 262.832031 196.496094 262.925781 196.496094 263.042969 C 196.496094 263.160156 196.589844 263.253906 196.707031 263.253906 C 196.824219 263.253906 196.917969 263.160156 196.917969 263.042969 Z M 196.917969 263.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.464844 260.632812 C 197.464844 260.515625 197.371094 260.421875 197.253906 260.421875 C 197.136719 260.421875 197.042969 260.515625 197.042969 260.632812 C 197.042969 260.75 197.136719 260.84375 197.253906 260.84375 C 197.371094 260.84375 197.464844 260.75 197.464844 260.632812 Z M 197.464844 260.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.921875 255.113281 C 200.921875 254.996094 200.828125 254.902344 200.710938 254.902344 C 200.59375 254.902344 200.5 254.996094 200.5 255.113281 C 200.5 255.230469 200.59375 255.324219 200.710938 255.324219 C 200.828125 255.324219 200.921875 255.230469 200.921875 255.113281 Z M 200.921875 255.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.355469 256.0625 C 205.355469 255.945312 205.261719 255.851562 205.144531 255.851562 C 205.027344 255.851562 204.933594 255.945312 204.933594 256.0625 C 204.933594 256.179688 205.027344 256.273438 205.144531 256.273438 C 205.261719 256.273438 205.355469 256.179688 205.355469 256.0625 Z M 205.355469 256.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.90625 254.121094 C 203.90625 254.003906 203.8125 253.910156 203.695312 253.910156 C 203.578125 253.910156 203.484375 254.003906 203.484375 254.121094 C 203.484375 254.238281 203.578125 254.332031 203.695312 254.332031 C 203.8125 254.332031 203.90625 254.238281 203.90625 254.121094 Z M 203.90625 254.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.679688 255.523438 C 204.679688 255.40625 204.585938 255.3125 204.46875 255.3125 C 204.351562 255.3125 204.257812 255.40625 204.257812 255.523438 C 204.257812 255.640625 204.351562 255.734375 204.46875 255.734375 C 204.585938 255.734375 204.679688 255.640625 204.679688 255.523438 Z M 204.679688 255.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.730469 254.046875 C 205.730469 253.929688 205.636719 253.835938 205.519531 253.835938 C 205.402344 253.835938 205.308594 253.929688 205.308594 254.046875 C 205.308594 254.164062 205.402344 254.257812 205.519531 254.257812 C 205.636719 254.257812 205.730469 254.164062 205.730469 254.046875 Z M 205.730469 254.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.148438 253.03125 C 207.148438 252.914062 207.054688 252.820312 206.9375 252.820312 C 206.820312 252.820312 206.726562 252.914062 206.726562 253.03125 C 206.726562 253.148438 206.820312 253.242188 206.9375 253.242188 C 207.054688 253.242188 207.148438 253.148438 207.148438 253.03125 Z M 207.148438 253.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.53125 249.734375 C 206.53125 249.617188 206.4375 249.523438 206.320312 249.523438 C 206.203125 249.523438 206.109375 249.617188 206.109375 249.734375 C 206.109375 249.851562 206.203125 249.945312 206.320312 249.945312 C 206.4375 249.945312 206.53125 249.851562 206.53125 249.734375 Z M 206.53125 249.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.570312 249.097656 C 204.570312 248.980469 204.476562 248.886719 204.359375 248.886719 C 204.242188 248.886719 204.148438 248.980469 204.148438 249.097656 C 204.148438 249.214844 204.242188 249.308594 204.359375 249.308594 C 204.476562 249.308594 204.570312 249.214844 204.570312 249.097656 Z M 204.570312 249.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.242188 249.148438 C 205.242188 249.03125 205.148438 248.9375 205.03125 248.9375 C 204.914062 248.9375 204.820312 249.03125 204.820312 249.148438 C 204.820312 249.265625 204.914062 249.359375 205.03125 249.359375 C 205.148438 249.359375 205.242188 249.265625 205.242188 249.148438 Z M 205.242188 249.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.351562 246.960938 C 204.351562 246.84375 204.257812 246.75 204.140625 246.75 C 204.023438 246.75 203.929688 246.84375 203.929688 246.960938 C 203.929688 247.078125 204.023438 247.171875 204.140625 247.171875 C 204.257812 247.171875 204.351562 247.078125 204.351562 246.960938 Z M 204.351562 246.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.8125 248.171875 C 204.8125 248.054688 204.71875 247.960938 204.601562 247.960938 C 204.484375 247.960938 204.390625 248.054688 204.390625 248.171875 C 204.390625 248.289062 204.484375 248.382812 204.601562 248.382812 C 204.71875 248.382812 204.8125 248.289062 204.8125 248.171875 Z M 204.8125 248.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.550781 247.378906 C 203.550781 247.261719 203.457031 247.167969 203.339844 247.167969 C 203.222656 247.167969 203.128906 247.261719 203.128906 247.378906 C 203.128906 247.496094 203.222656 247.589844 203.339844 247.589844 C 203.457031 247.589844 203.550781 247.496094 203.550781 247.378906 Z M 203.550781 247.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.515625 243.226562 C 203.515625 243.109375 203.421875 243.015625 203.304688 243.015625 C 203.1875 243.015625 203.09375 243.109375 203.09375 243.226562 C 203.09375 243.34375 203.1875 243.4375 203.304688 243.4375 C 203.421875 243.4375 203.515625 243.34375 203.515625 243.226562 Z M 203.515625 243.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.738281 243.65625 C 204.738281 243.539062 204.644531 243.445312 204.527344 243.445312 C 204.410156 243.445312 204.316406 243.539062 204.316406 243.65625 C 204.316406 243.773438 204.410156 243.867188 204.527344 243.867188 C 204.644531 243.867188 204.738281 243.773438 204.738281 243.65625 Z M 204.738281 243.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.898438 244.039062 C 201.898438 243.921875 201.804688 243.828125 201.6875 243.828125 C 201.570312 243.828125 201.476562 243.921875 201.476562 244.039062 C 201.476562 244.15625 201.570312 244.25 201.6875 244.25 C 201.804688 244.25 201.898438 244.15625 201.898438 244.039062 Z M 201.898438 244.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.1875 244.457031 C 199.1875 244.339844 199.09375 244.246094 198.976562 244.246094 C 198.859375 244.246094 198.765625 244.339844 198.765625 244.457031 C 198.765625 244.574219 198.859375 244.667969 198.976562 244.667969 C 199.09375 244.667969 199.1875 244.574219 199.1875 244.457031 Z M 199.1875 244.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.289062 243.851562 C 199.289062 243.734375 199.195312 243.640625 199.078125 243.640625 C 198.960938 243.640625 198.867188 243.734375 198.867188 243.851562 C 198.867188 243.96875 198.960938 244.0625 199.078125 244.0625 C 199.195312 244.0625 199.289062 243.96875 199.289062 243.851562 Z M 199.289062 243.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.34375 242.113281 C 201.34375 241.996094 201.25 241.902344 201.132812 241.902344 C 201.015625 241.902344 200.921875 241.996094 200.921875 242.113281 C 200.921875 242.230469 201.015625 242.324219 201.132812 242.324219 C 201.25 242.324219 201.34375 242.230469 201.34375 242.113281 Z M 201.34375 242.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.679688 240.183594 C 203.679688 240.066406 203.585938 239.972656 203.46875 239.972656 C 203.351562 239.972656 203.257812 240.066406 203.257812 240.183594 C 203.257812 240.300781 203.351562 240.394531 203.46875 240.394531 C 203.585938 240.394531 203.679688 240.300781 203.679688 240.183594 Z M 203.679688 240.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.179688 239.511719 C 208.179688 239.394531 208.085938 239.300781 207.96875 239.300781 C 207.851562 239.300781 207.757812 239.394531 207.757812 239.511719 C 207.757812 239.628906 207.851562 239.722656 207.96875 239.722656 C 208.085938 239.722656 208.179688 239.628906 208.179688 239.511719 Z M 208.179688 239.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.089844 243.335938 C 209.089844 243.21875 208.996094 243.125 208.878906 243.125 C 208.761719 243.125 208.667969 243.21875 208.667969 243.335938 C 208.667969 243.453125 208.761719 243.546875 208.878906 243.546875 C 208.996094 243.546875 209.089844 243.453125 209.089844 243.335938 Z M 209.089844 243.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.882812 245.09375 C 207.882812 244.976562 207.789062 244.882812 207.671875 244.882812 C 207.554688 244.882812 207.460938 244.976562 207.460938 245.09375 C 207.460938 245.210938 207.554688 245.304688 207.671875 245.304688 C 207.789062 245.304688 207.882812 245.210938 207.882812 245.09375 Z M 207.882812 245.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.621094 244.035156 C 206.621094 243.917969 206.527344 243.824219 206.410156 243.824219 C 206.292969 243.824219 206.199219 243.917969 206.199219 244.035156 C 206.199219 244.152344 206.292969 244.246094 206.410156 244.246094 C 206.527344 244.246094 206.621094 244.152344 206.621094 244.035156 Z M 206.621094 244.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.175781 242.511719 C 207.175781 242.394531 207.082031 242.300781 206.964844 242.300781 C 206.847656 242.300781 206.753906 242.394531 206.753906 242.511719 C 206.753906 242.628906 206.847656 242.722656 206.964844 242.722656 C 207.082031 242.722656 207.175781 242.628906 207.175781 242.511719 Z M 207.175781 242.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.6875 243.257812 C 207.6875 243.140625 207.59375 243.046875 207.476562 243.046875 C 207.359375 243.046875 207.265625 243.140625 207.265625 243.257812 C 207.265625 243.375 207.359375 243.46875 207.476562 243.46875 C 207.59375 243.46875 207.6875 243.375 207.6875 243.257812 Z M 207.6875 243.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.5 242.285156 C 207.5 242.167969 207.40625 242.074219 207.289062 242.074219 C 207.171875 242.074219 207.078125 242.167969 207.078125 242.285156 C 207.078125 242.402344 207.171875 242.496094 207.289062 242.496094 C 207.40625 242.496094 207.5 242.402344 207.5 242.285156 Z M 207.5 242.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.546875 241.589844 C 208.546875 241.472656 208.453125 241.378906 208.335938 241.378906 C 208.21875 241.378906 208.125 241.472656 208.125 241.589844 C 208.125 241.707031 208.21875 241.800781 208.335938 241.800781 C 208.453125 241.800781 208.546875 241.707031 208.546875 241.589844 Z M 208.546875 241.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.792969 244.613281 C 207.792969 244.496094 207.699219 244.402344 207.582031 244.402344 C 207.464844 244.402344 207.371094 244.496094 207.371094 244.613281 C 207.371094 244.730469 207.464844 244.824219 207.582031 244.824219 C 207.699219 244.824219 207.792969 244.730469 207.792969 244.613281 Z M 207.792969 244.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.394531 244.21875 C 206.394531 244.101562 206.300781 244.007812 206.183594 244.007812 C 206.066406 244.007812 205.972656 244.101562 205.972656 244.21875 C 205.972656 244.335938 206.066406 244.429688 206.183594 244.429688 C 206.300781 244.429688 206.394531 244.335938 206.394531 244.21875 Z M 206.394531 244.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.414062 241.886719 C 207.414062 241.769531 207.320312 241.675781 207.203125 241.675781 C 207.085938 241.675781 206.992188 241.769531 206.992188 241.886719 C 206.992188 242.003906 207.085938 242.097656 207.203125 242.097656 C 207.320312 242.097656 207.414062 242.003906 207.414062 241.886719 Z M 207.414062 241.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.640625 239.148438 C 207.640625 239.03125 207.546875 238.9375 207.429688 238.9375 C 207.3125 238.9375 207.21875 239.03125 207.21875 239.148438 C 207.21875 239.265625 207.3125 239.359375 207.429688 239.359375 C 207.546875 239.359375 207.640625 239.265625 207.640625 239.148438 Z M 207.640625 239.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.972656 237.242188 C 205.972656 237.125 205.878906 237.03125 205.761719 237.03125 C 205.644531 237.03125 205.550781 237.125 205.550781 237.242188 C 205.550781 237.359375 205.644531 237.453125 205.761719 237.453125 C 205.878906 237.453125 205.972656 237.359375 205.972656 237.242188 Z M 205.972656 237.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.226562 231.976562 C 203.226562 231.859375 203.132812 231.765625 203.015625 231.765625 C 202.898438 231.765625 202.804688 231.859375 202.804688 231.976562 C 202.804688 232.09375 202.898438 232.1875 203.015625 232.1875 C 203.132812 232.1875 203.226562 232.09375 203.226562 231.976562 Z M 203.226562 231.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.355469 230.335938 C 203.355469 230.21875 203.261719 230.125 203.144531 230.125 C 203.027344 230.125 202.933594 230.21875 202.933594 230.335938 C 202.933594 230.453125 203.027344 230.546875 203.144531 230.546875 C 203.261719 230.546875 203.355469 230.453125 203.355469 230.335938 Z M 203.355469 230.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.765625 229.898438 C 201.765625 229.78125 201.671875 229.6875 201.554688 229.6875 C 201.4375 229.6875 201.34375 229.78125 201.34375 229.898438 C 201.34375 230.015625 201.4375 230.109375 201.554688 230.109375 C 201.671875 230.109375 201.765625 230.015625 201.765625 229.898438 Z M 201.765625 229.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.417969 231.28125 C 202.417969 231.164062 202.324219 231.070312 202.207031 231.070312 C 202.089844 231.070312 201.996094 231.164062 201.996094 231.28125 C 201.996094 231.398438 202.089844 231.492188 202.207031 231.492188 C 202.324219 231.492188 202.417969 231.398438 202.417969 231.28125 Z M 202.417969 231.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.363281 233.796875 C 202.363281 233.679688 202.269531 233.585938 202.152344 233.585938 C 202.035156 233.585938 201.941406 233.679688 201.941406 233.796875 C 201.941406 233.914062 202.035156 234.007812 202.152344 234.007812 C 202.269531 234.007812 202.363281 233.914062 202.363281 233.796875 Z M 202.363281 233.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.175781 234.566406 C 200.175781 234.449219 200.082031 234.355469 199.964844 234.355469 C 199.847656 234.355469 199.753906 234.449219 199.753906 234.566406 C 199.753906 234.683594 199.847656 234.777344 199.964844 234.777344 C 200.082031 234.777344 200.175781 234.683594 200.175781 234.566406 Z M 200.175781 234.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.664062 239.421875 C 196.664062 239.304688 196.570312 239.210938 196.453125 239.210938 C 196.335938 239.210938 196.242188 239.304688 196.242188 239.421875 C 196.242188 239.539062 196.335938 239.632812 196.453125 239.632812 C 196.570312 239.632812 196.664062 239.539062 196.664062 239.421875 Z M 196.664062 239.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.371094 240.140625 C 196.371094 240.023438 196.277344 239.929688 196.160156 239.929688 C 196.042969 239.929688 195.949219 240.023438 195.949219 240.140625 C 195.949219 240.257812 196.042969 240.351562 196.160156 240.351562 C 196.277344 240.351562 196.371094 240.257812 196.371094 240.140625 Z M 196.371094 240.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.613281 241.722656 C 196.613281 241.605469 196.519531 241.511719 196.402344 241.511719 C 196.285156 241.511719 196.191406 241.605469 196.191406 241.722656 C 196.191406 241.839844 196.285156 241.933594 196.402344 241.933594 C 196.519531 241.933594 196.613281 241.839844 196.613281 241.722656 Z M 196.613281 241.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.457031 246.375 C 193.457031 246.257812 193.363281 246.164062 193.246094 246.164062 C 193.128906 246.164062 193.035156 246.257812 193.035156 246.375 C 193.035156 246.492188 193.128906 246.585938 193.246094 246.585938 C 193.363281 246.585938 193.457031 246.492188 193.457031 246.375 Z M 193.457031 246.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.886719 247.972656 C 192.886719 247.855469 192.792969 247.761719 192.675781 247.761719 C 192.558594 247.761719 192.464844 247.855469 192.464844 247.972656 C 192.464844 248.089844 192.558594 248.183594 192.675781 248.183594 C 192.792969 248.183594 192.886719 248.089844 192.886719 247.972656 Z M 192.886719 247.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.277344 250.125 C 194.277344 250.007812 194.183594 249.914062 194.066406 249.914062 C 193.949219 249.914062 193.855469 250.007812 193.855469 250.125 C 193.855469 250.242188 193.949219 250.335938 194.066406 250.335938 C 194.183594 250.335938 194.277344 250.242188 194.277344 250.125 Z M 194.277344 250.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.171875 252.113281 C 190.171875 251.996094 190.078125 251.902344 189.960938 251.902344 C 189.84375 251.902344 189.75 251.996094 189.75 252.113281 C 189.75 252.230469 189.84375 252.324219 189.960938 252.324219 C 190.078125 252.324219 190.171875 252.230469 190.171875 252.113281 Z M 190.171875 252.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.460938 249.753906 C 186.460938 249.636719 186.367188 249.542969 186.25 249.542969 C 186.132812 249.542969 186.039062 249.636719 186.039062 249.753906 C 186.039062 249.871094 186.132812 249.964844 186.25 249.964844 C 186.367188 249.964844 186.460938 249.871094 186.460938 249.753906 Z M 186.460938 249.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.8125 251.261719 C 184.8125 251.144531 184.71875 251.050781 184.601562 251.050781 C 184.484375 251.050781 184.390625 251.144531 184.390625 251.261719 C 184.390625 251.378906 184.484375 251.472656 184.601562 251.472656 C 184.71875 251.472656 184.8125 251.378906 184.8125 251.261719 Z M 184.8125 251.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.980469 252.554688 C 184.980469 252.4375 184.886719 252.34375 184.769531 252.34375 C 184.652344 252.34375 184.558594 252.4375 184.558594 252.554688 C 184.558594 252.671875 184.652344 252.765625 184.769531 252.765625 C 184.886719 252.765625 184.980469 252.671875 184.980469 252.554688 Z M 184.980469 252.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.304688 254.5 C 187.304688 254.382812 187.210938 254.289062 187.09375 254.289062 C 186.976562 254.289062 186.882812 254.382812 186.882812 254.5 C 186.882812 254.617188 186.976562 254.710938 187.09375 254.710938 C 187.210938 254.710938 187.304688 254.617188 187.304688 254.5 Z M 187.304688 254.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.140625 255.921875 C 189.140625 255.804688 189.046875 255.710938 188.929688 255.710938 C 188.8125 255.710938 188.71875 255.804688 188.71875 255.921875 C 188.71875 256.039062 188.8125 256.132812 188.929688 256.132812 C 189.046875 256.132812 189.140625 256.039062 189.140625 255.921875 Z M 189.140625 255.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.179688 257.167969 C 189.179688 257.050781 189.085938 256.957031 188.96875 256.957031 C 188.851562 256.957031 188.757812 257.050781 188.757812 257.167969 C 188.757812 257.285156 188.851562 257.378906 188.96875 257.378906 C 189.085938 257.378906 189.179688 257.285156 189.179688 257.167969 Z M 189.179688 257.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.808594 258.832031 C 188.808594 258.714844 188.714844 258.621094 188.597656 258.621094 C 188.480469 258.621094 188.386719 258.714844 188.386719 258.832031 C 188.386719 258.949219 188.480469 259.042969 188.597656 259.042969 C 188.714844 259.042969 188.808594 258.949219 188.808594 258.832031 Z M 188.808594 258.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.152344 258.121094 C 186.152344 258.003906 186.058594 257.910156 185.941406 257.910156 C 185.824219 257.910156 185.730469 258.003906 185.730469 258.121094 C 185.730469 258.238281 185.824219 258.332031 185.941406 258.332031 C 186.058594 258.332031 186.152344 258.238281 186.152344 258.121094 Z M 186.152344 258.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.171875 259 C 186.171875 258.882812 186.078125 258.789062 185.960938 258.789062 C 185.84375 258.789062 185.75 258.882812 185.75 259 C 185.75 259.117188 185.84375 259.210938 185.960938 259.210938 C 186.078125 259.210938 186.171875 259.117188 186.171875 259 Z M 186.171875 259 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.332031 261.210938 C 184.332031 261.09375 184.238281 261 184.121094 261 C 184.003906 261 183.910156 261.09375 183.910156 261.210938 C 183.910156 261.328125 184.003906 261.421875 184.121094 261.421875 C 184.238281 261.421875 184.332031 261.328125 184.332031 261.210938 Z M 184.332031 261.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.386719 257.992188 C 182.386719 257.875 182.292969 257.78125 182.175781 257.78125 C 182.058594 257.78125 181.964844 257.875 181.964844 257.992188 C 181.964844 258.109375 182.058594 258.203125 182.175781 258.203125 C 182.292969 258.203125 182.386719 258.109375 182.386719 257.992188 Z M 182.386719 257.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.082031 260.722656 C 183.082031 260.605469 182.988281 260.511719 182.871094 260.511719 C 182.753906 260.511719 182.660156 260.605469 182.660156 260.722656 C 182.660156 260.839844 182.753906 260.933594 182.871094 260.933594 C 182.988281 260.933594 183.082031 260.839844 183.082031 260.722656 Z M 183.082031 260.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.878906 259.472656 C 184.878906 259.355469 184.785156 259.261719 184.667969 259.261719 C 184.550781 259.261719 184.457031 259.355469 184.457031 259.472656 C 184.457031 259.589844 184.550781 259.683594 184.667969 259.683594 C 184.785156 259.683594 184.878906 259.589844 184.878906 259.472656 Z M 184.878906 259.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.398438 260.441406 C 183.398438 260.324219 183.304688 260.230469 183.1875 260.230469 C 183.070312 260.230469 182.976562 260.324219 182.976562 260.441406 C 182.976562 260.558594 183.070312 260.652344 183.1875 260.652344 C 183.304688 260.652344 183.398438 260.558594 183.398438 260.441406 Z M 183.398438 260.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.648438 255.359375 C 183.648438 255.242188 183.554688 255.148438 183.4375 255.148438 C 183.320312 255.148438 183.226562 255.242188 183.226562 255.359375 C 183.226562 255.476562 183.320312 255.570312 183.4375 255.570312 C 183.554688 255.570312 183.648438 255.476562 183.648438 255.359375 Z M 183.648438 255.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.1875 255.015625 C 186.1875 254.898438 186.09375 254.804688 185.976562 254.804688 C 185.859375 254.804688 185.765625 254.898438 185.765625 255.015625 C 185.765625 255.132812 185.859375 255.226562 185.976562 255.226562 C 186.09375 255.226562 186.1875 255.132812 186.1875 255.015625 Z M 186.1875 255.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.835938 255.597656 C 186.835938 255.480469 186.742188 255.386719 186.625 255.386719 C 186.507812 255.386719 186.414062 255.480469 186.414062 255.597656 C 186.414062 255.714844 186.507812 255.808594 186.625 255.808594 C 186.742188 255.808594 186.835938 255.714844 186.835938 255.597656 Z M 186.835938 255.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.460938 253.535156 C 186.460938 253.417969 186.367188 253.324219 186.25 253.324219 C 186.132812 253.324219 186.039062 253.417969 186.039062 253.535156 C 186.039062 253.652344 186.132812 253.746094 186.25 253.746094 C 186.367188 253.746094 186.460938 253.652344 186.460938 253.535156 Z M 186.460938 253.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.121094 253.375 C 186.121094 253.257812 186.027344 253.164062 185.910156 253.164062 C 185.792969 253.164062 185.699219 253.257812 185.699219 253.375 C 185.699219 253.492188 185.792969 253.585938 185.910156 253.585938 C 186.027344 253.585938 186.121094 253.492188 186.121094 253.375 Z M 186.121094 253.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.347656 252.683594 C 185.347656 252.566406 185.253906 252.472656 185.136719 252.472656 C 185.019531 252.472656 184.925781 252.566406 184.925781 252.683594 C 184.925781 252.800781 185.019531 252.894531 185.136719 252.894531 C 185.253906 252.894531 185.347656 252.800781 185.347656 252.683594 Z M 185.347656 252.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.054688 250.824219 C 186.054688 250.707031 185.960938 250.613281 185.84375 250.613281 C 185.726562 250.613281 185.632812 250.707031 185.632812 250.824219 C 185.632812 250.941406 185.726562 251.035156 185.84375 251.035156 C 185.960938 251.035156 186.054688 250.941406 186.054688 250.824219 Z M 186.054688 250.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.296875 253.746094 C 187.296875 253.628906 187.203125 253.535156 187.085938 253.535156 C 186.96875 253.535156 186.875 253.628906 186.875 253.746094 C 186.875 253.863281 186.96875 253.957031 187.085938 253.957031 C 187.203125 253.957031 187.296875 253.863281 187.296875 253.746094 Z M 187.296875 253.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.28125 251.886719 C 182.28125 251.769531 182.1875 251.675781 182.070312 251.675781 C 181.953125 251.675781 181.859375 251.769531 181.859375 251.886719 C 181.859375 252.003906 181.953125 252.097656 182.070312 252.097656 C 182.1875 252.097656 182.28125 252.003906 182.28125 251.886719 Z M 182.28125 251.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.648438 250.386719 C 182.648438 250.269531 182.554688 250.175781 182.4375 250.175781 C 182.320312 250.175781 182.226562 250.269531 182.226562 250.386719 C 182.226562 250.503906 182.320312 250.597656 182.4375 250.597656 C 182.554688 250.597656 182.648438 250.503906 182.648438 250.386719 Z M 182.648438 250.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 180.582031 250.65625 C 180.582031 250.539062 180.488281 250.445312 180.371094 250.445312 C 180.253906 250.445312 180.160156 250.539062 180.160156 250.65625 C 180.160156 250.773438 180.253906 250.867188 180.371094 250.867188 C 180.488281 250.867188 180.582031 250.773438 180.582031 250.65625 Z M 180.582031 250.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.808594 251.367188 C 182.808594 251.25 182.714844 251.15625 182.597656 251.15625 C 182.480469 251.15625 182.386719 251.25 182.386719 251.367188 C 182.386719 251.484375 182.480469 251.578125 182.597656 251.578125 C 182.714844 251.578125 182.808594 251.484375 182.808594 251.367188 Z M 182.808594 251.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.160156 249.800781 C 183.160156 249.683594 183.066406 249.589844 182.949219 249.589844 C 182.832031 249.589844 182.738281 249.683594 182.738281 249.800781 C 182.738281 249.917969 182.832031 250.011719 182.949219 250.011719 C 183.066406 250.011719 183.160156 249.917969 183.160156 249.800781 Z M 183.160156 249.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.261719 253.054688 C 183.261719 252.9375 183.167969 252.84375 183.050781 252.84375 C 182.933594 252.84375 182.839844 252.9375 182.839844 253.054688 C 182.839844 253.171875 182.933594 253.265625 183.050781 253.265625 C 183.167969 253.265625 183.261719 253.171875 183.261719 253.054688 Z M 183.261719 253.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.613281 250.949219 C 184.613281 250.832031 184.519531 250.738281 184.402344 250.738281 C 184.285156 250.738281 184.191406 250.832031 184.191406 250.949219 C 184.191406 251.066406 184.285156 251.160156 184.402344 251.160156 C 184.519531 251.160156 184.613281 251.066406 184.613281 250.949219 Z M 184.613281 250.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.449219 249.636719 C 181.449219 249.519531 181.355469 249.425781 181.238281 249.425781 C 181.121094 249.425781 181.027344 249.519531 181.027344 249.636719 C 181.027344 249.753906 181.121094 249.847656 181.238281 249.847656 C 181.355469 249.847656 181.449219 249.753906 181.449219 249.636719 Z M 181.449219 249.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 178.226562 251.863281 C 178.226562 251.746094 178.132812 251.652344 178.015625 251.652344 C 177.898438 251.652344 177.804688 251.746094 177.804688 251.863281 C 177.804688 251.980469 177.898438 252.074219 178.015625 252.074219 C 178.132812 252.074219 178.226562 251.980469 178.226562 251.863281 Z M 178.226562 251.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 179.03125 254.214844 C 179.03125 254.097656 178.9375 254.003906 178.820312 254.003906 C 178.703125 254.003906 178.609375 254.097656 178.609375 254.214844 C 178.609375 254.332031 178.703125 254.425781 178.820312 254.425781 C 178.9375 254.425781 179.03125 254.332031 179.03125 254.214844 Z M 179.03125 254.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.671875 252.382812 C 181.671875 252.265625 181.578125 252.171875 181.460938 252.171875 C 181.34375 252.171875 181.25 252.265625 181.25 252.382812 C 181.25 252.5 181.34375 252.59375 181.460938 252.59375 C 181.578125 252.59375 181.671875 252.5 181.671875 252.382812 Z M 181.671875 252.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.449219 249.019531 C 182.449219 248.902344 182.355469 248.808594 182.238281 248.808594 C 182.121094 248.808594 182.027344 248.902344 182.027344 249.019531 C 182.027344 249.136719 182.121094 249.230469 182.238281 249.230469 C 182.355469 249.230469 182.449219 249.136719 182.449219 249.019531 Z M 182.449219 249.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.074219 249.851562 C 183.074219 249.734375 182.980469 249.640625 182.863281 249.640625 C 182.746094 249.640625 182.652344 249.734375 182.652344 249.851562 C 182.652344 249.96875 182.746094 250.0625 182.863281 250.0625 C 182.980469 250.0625 183.074219 249.96875 183.074219 249.851562 Z M 183.074219 249.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.332031 246.300781 C 182.332031 246.183594 182.238281 246.089844 182.121094 246.089844 C 182.003906 246.089844 181.910156 246.183594 181.910156 246.300781 C 181.910156 246.417969 182.003906 246.511719 182.121094 246.511719 C 182.238281 246.511719 182.332031 246.417969 182.332031 246.300781 Z M 182.332031 246.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.15625 247.652344 C 181.15625 247.535156 181.0625 247.441406 180.945312 247.441406 C 180.828125 247.441406 180.734375 247.535156 180.734375 247.652344 C 180.734375 247.769531 180.828125 247.863281 180.945312 247.863281 C 181.0625 247.863281 181.15625 247.769531 181.15625 247.652344 Z M 181.15625 247.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.394531 248.871094 C 182.394531 248.753906 182.300781 248.660156 182.183594 248.660156 C 182.066406 248.660156 181.972656 248.753906 181.972656 248.871094 C 181.972656 248.988281 182.066406 249.082031 182.183594 249.082031 C 182.300781 249.082031 182.394531 248.988281 182.394531 248.871094 Z M 182.394531 248.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.449219 250.800781 C 181.449219 250.683594 181.355469 250.589844 181.238281 250.589844 C 181.121094 250.589844 181.027344 250.683594 181.027344 250.800781 C 181.027344 250.917969 181.121094 251.011719 181.238281 251.011719 C 181.355469 251.011719 181.449219 250.917969 181.449219 250.800781 Z M 181.449219 250.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 179.847656 247.832031 C 179.847656 247.714844 179.753906 247.621094 179.636719 247.621094 C 179.519531 247.621094 179.425781 247.714844 179.425781 247.832031 C 179.425781 247.949219 179.519531 248.042969 179.636719 248.042969 C 179.753906 248.042969 179.847656 247.949219 179.847656 247.832031 Z M 179.847656 247.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 179.523438 245.898438 C 179.523438 245.78125 179.429688 245.6875 179.3125 245.6875 C 179.195312 245.6875 179.101562 245.78125 179.101562 245.898438 C 179.101562 246.015625 179.195312 246.109375 179.3125 246.109375 C 179.429688 246.109375 179.523438 246.015625 179.523438 245.898438 Z M 179.523438 245.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 180.816406 245.464844 C 180.816406 245.347656 180.722656 245.253906 180.605469 245.253906 C 180.488281 245.253906 180.394531 245.347656 180.394531 245.464844 C 180.394531 245.582031 180.488281 245.675781 180.605469 245.675781 C 180.722656 245.675781 180.816406 245.582031 180.816406 245.464844 Z M 180.816406 245.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.664062 244.777344 C 181.664062 244.660156 181.570312 244.566406 181.453125 244.566406 C 181.335938 244.566406 181.242188 244.660156 181.242188 244.777344 C 181.242188 244.894531 181.335938 244.988281 181.453125 244.988281 C 181.570312 244.988281 181.664062 244.894531 181.664062 244.777344 Z M 181.664062 244.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 180.386719 243.007812 C 180.386719 242.890625 180.292969 242.796875 180.175781 242.796875 C 180.058594 242.796875 179.964844 242.890625 179.964844 243.007812 C 179.964844 243.125 180.058594 243.21875 180.175781 243.21875 C 180.292969 243.21875 180.386719 243.125 180.386719 243.007812 Z M 180.386719 243.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.789062 241.570312 C 182.789062 241.453125 182.695312 241.359375 182.578125 241.359375 C 182.460938 241.359375 182.367188 241.453125 182.367188 241.570312 C 182.367188 241.6875 182.460938 241.78125 182.578125 241.78125 C 182.695312 241.78125 182.789062 241.6875 182.789062 241.570312 Z M 182.789062 241.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.945312 242.855469 C 183.945312 242.738281 183.851562 242.644531 183.734375 242.644531 C 183.617188 242.644531 183.523438 242.738281 183.523438 242.855469 C 183.523438 242.972656 183.617188 243.066406 183.734375 243.066406 C 183.851562 243.066406 183.945312 242.972656 183.945312 242.855469 Z M 183.945312 242.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.339844 240.722656 C 184.339844 240.605469 184.246094 240.511719 184.128906 240.511719 C 184.011719 240.511719 183.917969 240.605469 183.917969 240.722656 C 183.917969 240.839844 184.011719 240.933594 184.128906 240.933594 C 184.246094 240.933594 184.339844 240.839844 184.339844 240.722656 Z M 184.339844 240.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.328125 241.527344 C 185.328125 241.410156 185.234375 241.316406 185.117188 241.316406 C 185 241.316406 184.90625 241.410156 184.90625 241.527344 C 184.90625 241.644531 185 241.738281 185.117188 241.738281 C 185.234375 241.738281 185.328125 241.644531 185.328125 241.527344 Z M 185.328125 241.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.390625 242.484375 C 186.390625 242.367188 186.296875 242.273438 186.179688 242.273438 C 186.0625 242.273438 185.96875 242.367188 185.96875 242.484375 C 185.96875 242.601562 186.0625 242.695312 186.179688 242.695312 C 186.296875 242.695312 186.390625 242.601562 186.390625 242.484375 Z M 186.390625 242.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.851562 240.652344 C 187.851562 240.535156 187.757812 240.441406 187.640625 240.441406 C 187.523438 240.441406 187.429688 240.535156 187.429688 240.652344 C 187.429688 240.769531 187.523438 240.863281 187.640625 240.863281 C 187.757812 240.863281 187.851562 240.769531 187.851562 240.652344 Z M 187.851562 240.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.339844 239.339844 C 190.339844 239.222656 190.246094 239.128906 190.128906 239.128906 C 190.011719 239.128906 189.917969 239.222656 189.917969 239.339844 C 189.917969 239.457031 190.011719 239.550781 190.128906 239.550781 C 190.246094 239.550781 190.339844 239.457031 190.339844 239.339844 Z M 190.339844 239.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.21875 235.367188 C 192.21875 235.25 192.125 235.15625 192.007812 235.15625 C 191.890625 235.15625 191.796875 235.25 191.796875 235.367188 C 191.796875 235.484375 191.890625 235.578125 192.007812 235.578125 C 192.125 235.578125 192.21875 235.484375 192.21875 235.367188 Z M 192.21875 235.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.355469 234.238281 C 191.355469 234.121094 191.261719 234.027344 191.144531 234.027344 C 191.027344 234.027344 190.933594 234.121094 190.933594 234.238281 C 190.933594 234.355469 191.027344 234.449219 191.144531 234.449219 C 191.261719 234.449219 191.355469 234.355469 191.355469 234.238281 Z M 191.355469 234.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.007812 232.660156 C 193.007812 232.542969 192.914062 232.449219 192.796875 232.449219 C 192.679688 232.449219 192.585938 232.542969 192.585938 232.660156 C 192.585938 232.777344 192.679688 232.871094 192.796875 232.871094 C 192.914062 232.871094 193.007812 232.777344 193.007812 232.660156 Z M 193.007812 232.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.933594 235.542969 C 190.933594 235.425781 190.839844 235.332031 190.722656 235.332031 C 190.605469 235.332031 190.511719 235.425781 190.511719 235.542969 C 190.511719 235.660156 190.605469 235.753906 190.722656 235.753906 C 190.839844 235.753906 190.933594 235.660156 190.933594 235.542969 Z M 190.933594 235.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.378906 231.855469 C 194.378906 231.738281 194.285156 231.644531 194.167969 231.644531 C 194.050781 231.644531 193.957031 231.738281 193.957031 231.855469 C 193.957031 231.972656 194.050781 232.066406 194.167969 232.066406 C 194.285156 232.066406 194.378906 231.972656 194.378906 231.855469 Z M 194.378906 231.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.640625 226.4375 C 194.640625 226.320312 194.546875 226.226562 194.429688 226.226562 C 194.3125 226.226562 194.21875 226.320312 194.21875 226.4375 C 194.21875 226.554688 194.3125 226.648438 194.429688 226.648438 C 194.546875 226.648438 194.640625 226.554688 194.640625 226.4375 Z M 194.640625 226.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.382812 227.722656 C 195.382812 227.605469 195.289062 227.511719 195.171875 227.511719 C 195.054688 227.511719 194.960938 227.605469 194.960938 227.722656 C 194.960938 227.839844 195.054688 227.933594 195.171875 227.933594 C 195.289062 227.933594 195.382812 227.839844 195.382812 227.722656 Z M 195.382812 227.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.921875 226.703125 C 191.921875 226.585938 191.828125 226.492188 191.710938 226.492188 C 191.59375 226.492188 191.5 226.585938 191.5 226.703125 C 191.5 226.820312 191.59375 226.914062 191.710938 226.914062 C 191.828125 226.914062 191.921875 226.820312 191.921875 226.703125 Z M 191.921875 226.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.089844 229.878906 C 193.089844 229.761719 192.996094 229.667969 192.878906 229.667969 C 192.761719 229.667969 192.667969 229.761719 192.667969 229.878906 C 192.667969 229.996094 192.761719 230.089844 192.878906 230.089844 C 192.996094 230.089844 193.089844 229.996094 193.089844 229.878906 Z M 193.089844 229.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.714844 234.164062 C 193.714844 234.046875 193.621094 233.953125 193.503906 233.953125 C 193.386719 233.953125 193.292969 234.046875 193.292969 234.164062 C 193.292969 234.28125 193.386719 234.375 193.503906 234.375 C 193.621094 234.375 193.714844 234.28125 193.714844 234.164062 Z M 193.714844 234.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.6875 235.070312 C 192.6875 234.953125 192.59375 234.859375 192.476562 234.859375 C 192.359375 234.859375 192.265625 234.953125 192.265625 235.070312 C 192.265625 235.1875 192.359375 235.28125 192.476562 235.28125 C 192.59375 235.28125 192.6875 235.1875 192.6875 235.070312 Z M 192.6875 235.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.679688 233.550781 C 190.679688 233.433594 190.585938 233.339844 190.46875 233.339844 C 190.351562 233.339844 190.257812 233.433594 190.257812 233.550781 C 190.257812 233.667969 190.351562 233.761719 190.46875 233.761719 C 190.585938 233.761719 190.679688 233.667969 190.679688 233.550781 Z M 190.679688 233.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.308594 233.097656 C 189.308594 232.980469 189.214844 232.886719 189.097656 232.886719 C 188.980469 232.886719 188.886719 232.980469 188.886719 233.097656 C 188.886719 233.214844 188.980469 233.308594 189.097656 233.308594 C 189.214844 233.308594 189.308594 233.214844 189.308594 233.097656 Z M 189.308594 233.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.421875 230.121094 C 191.421875 230.003906 191.328125 229.910156 191.210938 229.910156 C 191.09375 229.910156 191 230.003906 191 230.121094 C 191 230.238281 191.09375 230.332031 191.210938 230.332031 C 191.328125 230.332031 191.421875 230.238281 191.421875 230.121094 Z M 191.421875 230.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.363281 231.753906 C 193.363281 231.636719 193.269531 231.542969 193.152344 231.542969 C 193.035156 231.542969 192.941406 231.636719 192.941406 231.753906 C 192.941406 231.871094 193.035156 231.964844 193.152344 231.964844 C 193.269531 231.964844 193.363281 231.871094 193.363281 231.753906 Z M 193.363281 231.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.785156 228.851562 C 196.785156 228.734375 196.691406 228.640625 196.574219 228.640625 C 196.457031 228.640625 196.363281 228.734375 196.363281 228.851562 C 196.363281 228.96875 196.457031 229.0625 196.574219 229.0625 C 196.691406 229.0625 196.785156 228.96875 196.785156 228.851562 Z M 196.785156 228.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.078125 228.746094 C 195.078125 228.628906 194.984375 228.535156 194.867188 228.535156 C 194.75 228.535156 194.65625 228.628906 194.65625 228.746094 C 194.65625 228.863281 194.75 228.957031 194.867188 228.957031 C 194.984375 228.957031 195.078125 228.863281 195.078125 228.746094 Z M 195.078125 228.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.453125 226.253906 C 195.453125 226.136719 195.359375 226.042969 195.242188 226.042969 C 195.125 226.042969 195.03125 226.136719 195.03125 226.253906 C 195.03125 226.371094 195.125 226.464844 195.242188 226.464844 C 195.359375 226.464844 195.453125 226.371094 195.453125 226.253906 Z M 195.453125 226.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.597656 227.015625 C 196.597656 226.898438 196.503906 226.804688 196.386719 226.804688 C 196.269531 226.804688 196.175781 226.898438 196.175781 227.015625 C 196.175781 227.132812 196.269531 227.226562 196.386719 227.226562 C 196.503906 227.226562 196.597656 227.132812 196.597656 227.015625 Z M 196.597656 227.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.28125 227.269531 C 198.28125 227.152344 198.1875 227.058594 198.070312 227.058594 C 197.953125 227.058594 197.859375 227.152344 197.859375 227.269531 C 197.859375 227.386719 197.953125 227.480469 198.070312 227.480469 C 198.1875 227.480469 198.28125 227.386719 198.28125 227.269531 Z M 198.28125 227.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.652344 226.59375 C 196.652344 226.476562 196.558594 226.382812 196.441406 226.382812 C 196.324219 226.382812 196.230469 226.476562 196.230469 226.59375 C 196.230469 226.710938 196.324219 226.804688 196.441406 226.804688 C 196.558594 226.804688 196.652344 226.710938 196.652344 226.59375 Z M 196.652344 226.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.175781 226.953125 C 200.175781 226.835938 200.082031 226.742188 199.964844 226.742188 C 199.847656 226.742188 199.753906 226.835938 199.753906 226.953125 C 199.753906 227.070312 199.847656 227.164062 199.964844 227.164062 C 200.082031 227.164062 200.175781 227.070312 200.175781 226.953125 Z M 200.175781 226.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.6875 224.972656 C 199.6875 224.855469 199.59375 224.761719 199.476562 224.761719 C 199.359375 224.761719 199.265625 224.855469 199.265625 224.972656 C 199.265625 225.089844 199.359375 225.183594 199.476562 225.183594 C 199.59375 225.183594 199.6875 225.089844 199.6875 224.972656 Z M 199.6875 224.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.652344 221.339844 C 197.652344 221.222656 197.558594 221.128906 197.441406 221.128906 C 197.324219 221.128906 197.230469 221.222656 197.230469 221.339844 C 197.230469 221.457031 197.324219 221.550781 197.441406 221.550781 C 197.558594 221.550781 197.652344 221.457031 197.652344 221.339844 Z M 197.652344 221.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.695312 222.296875 C 197.695312 222.179688 197.601562 222.085938 197.484375 222.085938 C 197.367188 222.085938 197.273438 222.179688 197.273438 222.296875 C 197.273438 222.414062 197.367188 222.507812 197.484375 222.507812 C 197.601562 222.507812 197.695312 222.414062 197.695312 222.296875 Z M 197.695312 222.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.863281 224.28125 C 198.863281 224.164062 198.769531 224.070312 198.652344 224.070312 C 198.535156 224.070312 198.441406 224.164062 198.441406 224.28125 C 198.441406 224.398438 198.535156 224.492188 198.652344 224.492188 C 198.769531 224.492188 198.863281 224.398438 198.863281 224.28125 Z M 198.863281 224.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.105469 224.597656 C 197.105469 224.480469 197.011719 224.386719 196.894531 224.386719 C 196.777344 224.386719 196.683594 224.480469 196.683594 224.597656 C 196.683594 224.714844 196.777344 224.808594 196.894531 224.808594 C 197.011719 224.808594 197.105469 224.714844 197.105469 224.597656 Z M 197.105469 224.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.90625 226.75 C 195.90625 226.632812 195.8125 226.539062 195.695312 226.539062 C 195.578125 226.539062 195.484375 226.632812 195.484375 226.75 C 195.484375 226.867188 195.578125 226.960938 195.695312 226.960938 C 195.8125 226.960938 195.90625 226.867188 195.90625 226.75 Z M 195.90625 226.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.25 229.109375 C 201.25 228.992188 201.15625 228.898438 201.039062 228.898438 C 200.921875 228.898438 200.828125 228.992188 200.828125 229.109375 C 200.828125 229.226562 200.921875 229.320312 201.039062 229.320312 C 201.15625 229.320312 201.25 229.226562 201.25 229.109375 Z M 201.25 229.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.765625 229.097656 C 201.765625 228.980469 201.671875 228.886719 201.554688 228.886719 C 201.4375 228.886719 201.34375 228.980469 201.34375 229.097656 C 201.34375 229.214844 201.4375 229.308594 201.554688 229.308594 C 201.671875 229.308594 201.765625 229.214844 201.765625 229.097656 Z M 201.765625 229.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.230469 232.074219 C 203.230469 231.957031 203.136719 231.863281 203.019531 231.863281 C 202.902344 231.863281 202.808594 231.957031 202.808594 232.074219 C 202.808594 232.191406 202.902344 232.285156 203.019531 232.285156 C 203.136719 232.285156 203.230469 232.191406 203.230469 232.074219 Z M 203.230469 232.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.410156 231.800781 C 203.410156 231.683594 203.316406 231.589844 203.199219 231.589844 C 203.082031 231.589844 202.988281 231.683594 202.988281 231.800781 C 202.988281 231.917969 203.082031 232.011719 203.199219 232.011719 C 203.316406 232.011719 203.410156 231.917969 203.410156 231.800781 Z M 203.410156 231.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.273438 232.800781 C 203.273438 232.683594 203.179688 232.589844 203.0625 232.589844 C 202.945312 232.589844 202.851562 232.683594 202.851562 232.800781 C 202.851562 232.917969 202.945312 233.011719 203.0625 233.011719 C 203.179688 233.011719 203.273438 232.917969 203.273438 232.800781 Z M 203.273438 232.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.757812 231.199219 C 202.757812 231.082031 202.664062 230.988281 202.546875 230.988281 C 202.429688 230.988281 202.335938 231.082031 202.335938 231.199219 C 202.335938 231.316406 202.429688 231.410156 202.546875 231.410156 C 202.664062 231.410156 202.757812 231.316406 202.757812 231.199219 Z M 202.757812 231.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.378906 231.113281 C 203.378906 230.996094 203.285156 230.902344 203.167969 230.902344 C 203.050781 230.902344 202.957031 230.996094 202.957031 231.113281 C 202.957031 231.230469 203.050781 231.324219 203.167969 231.324219 C 203.285156 231.324219 203.378906 231.230469 203.378906 231.113281 Z M 203.378906 231.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.382812 237.234375 C 205.382812 237.117188 205.289062 237.023438 205.171875 237.023438 C 205.054688 237.023438 204.960938 237.117188 204.960938 237.234375 C 204.960938 237.351562 205.054688 237.445312 205.171875 237.445312 C 205.289062 237.445312 205.382812 237.351562 205.382812 237.234375 Z M 205.382812 237.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.515625 239.765625 C 206.515625 239.648438 206.421875 239.554688 206.304688 239.554688 C 206.1875 239.554688 206.09375 239.648438 206.09375 239.765625 C 206.09375 239.882812 206.1875 239.976562 206.304688 239.976562 C 206.421875 239.976562 206.515625 239.882812 206.515625 239.765625 Z M 206.515625 239.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.648438 235.1875 C 205.648438 235.070312 205.554688 234.976562 205.4375 234.976562 C 205.320312 234.976562 205.226562 235.070312 205.226562 235.1875 C 205.226562 235.304688 205.320312 235.398438 205.4375 235.398438 C 205.554688 235.398438 205.648438 235.304688 205.648438 235.1875 Z M 205.648438 235.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.835938 233.605469 C 208.835938 233.488281 208.742188 233.394531 208.625 233.394531 C 208.507812 233.394531 208.414062 233.488281 208.414062 233.605469 C 208.414062 233.722656 208.507812 233.816406 208.625 233.816406 C 208.742188 233.816406 208.835938 233.722656 208.835938 233.605469 Z M 208.835938 233.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.203125 232.472656 C 209.203125 232.355469 209.109375 232.261719 208.992188 232.261719 C 208.875 232.261719 208.78125 232.355469 208.78125 232.472656 C 208.78125 232.589844 208.875 232.683594 208.992188 232.683594 C 209.109375 232.683594 209.203125 232.589844 209.203125 232.472656 Z M 209.203125 232.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.679688 234.453125 C 211.679688 234.335938 211.585938 234.242188 211.46875 234.242188 C 211.351562 234.242188 211.257812 234.335938 211.257812 234.453125 C 211.257812 234.570312 211.351562 234.664062 211.46875 234.664062 C 211.585938 234.664062 211.679688 234.570312 211.679688 234.453125 Z M 211.679688 234.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.5 234.769531 C 213.5 234.652344 213.40625 234.558594 213.289062 234.558594 C 213.171875 234.558594 213.078125 234.652344 213.078125 234.769531 C 213.078125 234.886719 213.171875 234.980469 213.289062 234.980469 C 213.40625 234.980469 213.5 234.886719 213.5 234.769531 Z M 213.5 234.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.910156 231.1875 C 217.910156 231.070312 217.816406 230.976562 217.699219 230.976562 C 217.582031 230.976562 217.488281 231.070312 217.488281 231.1875 C 217.488281 231.304688 217.582031 231.398438 217.699219 231.398438 C 217.816406 231.398438 217.910156 231.304688 217.910156 231.1875 Z M 217.910156 231.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.414062 229.46875 C 217.414062 229.351562 217.320312 229.257812 217.203125 229.257812 C 217.085938 229.257812 216.992188 229.351562 216.992188 229.46875 C 216.992188 229.585938 217.085938 229.679688 217.203125 229.679688 C 217.320312 229.679688 217.414062 229.585938 217.414062 229.46875 Z M 217.414062 229.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.566406 227.867188 C 214.566406 227.75 214.472656 227.65625 214.355469 227.65625 C 214.238281 227.65625 214.144531 227.75 214.144531 227.867188 C 214.144531 227.984375 214.238281 228.078125 214.355469 228.078125 C 214.472656 228.078125 214.566406 227.984375 214.566406 227.867188 Z M 214.566406 227.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.410156 228.0625 C 217.410156 227.945312 217.316406 227.851562 217.199219 227.851562 C 217.082031 227.851562 216.988281 227.945312 216.988281 228.0625 C 216.988281 228.179688 217.082031 228.273438 217.199219 228.273438 C 217.316406 228.273438 217.410156 228.179688 217.410156 228.0625 Z M 217.410156 228.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.707031 230.183594 C 221.707031 230.066406 221.613281 229.972656 221.496094 229.972656 C 221.378906 229.972656 221.285156 230.066406 221.285156 230.183594 C 221.285156 230.300781 221.378906 230.394531 221.496094 230.394531 C 221.613281 230.394531 221.707031 230.300781 221.707031 230.183594 Z M 221.707031 230.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.0625 229.824219 C 219.0625 229.707031 218.96875 229.613281 218.851562 229.613281 C 218.734375 229.613281 218.640625 229.707031 218.640625 229.824219 C 218.640625 229.941406 218.734375 230.035156 218.851562 230.035156 C 218.96875 230.035156 219.0625 229.941406 219.0625 229.824219 Z M 219.0625 229.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.898438 229.878906 C 216.898438 229.761719 216.804688 229.667969 216.6875 229.667969 C 216.570312 229.667969 216.476562 229.761719 216.476562 229.878906 C 216.476562 229.996094 216.570312 230.089844 216.6875 230.089844 C 216.804688 230.089844 216.898438 229.996094 216.898438 229.878906 Z M 216.898438 229.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.210938 232.132812 C 219.210938 232.015625 219.117188 231.921875 219 231.921875 C 218.882812 231.921875 218.789062 232.015625 218.789062 232.132812 C 218.789062 232.25 218.882812 232.34375 219 232.34375 C 219.117188 232.34375 219.210938 232.25 219.210938 232.132812 Z M 219.210938 232.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 220.367188 231.839844 C 220.367188 231.722656 220.273438 231.628906 220.15625 231.628906 C 220.039062 231.628906 219.945312 231.722656 219.945312 231.839844 C 219.945312 231.957031 220.039062 232.050781 220.15625 232.050781 C 220.273438 232.050781 220.367188 231.957031 220.367188 231.839844 Z M 220.367188 231.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 220.492188 231.019531 C 220.492188 230.902344 220.398438 230.808594 220.28125 230.808594 C 220.164062 230.808594 220.070312 230.902344 220.070312 231.019531 C 220.070312 231.136719 220.164062 231.230469 220.28125 231.230469 C 220.398438 231.230469 220.492188 231.136719 220.492188 231.019531 Z M 220.492188 231.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 220.230469 228.796875 C 220.230469 228.679688 220.136719 228.585938 220.019531 228.585938 C 219.902344 228.585938 219.808594 228.679688 219.808594 228.796875 C 219.808594 228.914062 219.902344 229.007812 220.019531 229.007812 C 220.136719 229.007812 220.230469 228.914062 220.230469 228.796875 Z M 220.230469 228.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.449219 231.644531 C 221.449219 231.527344 221.355469 231.433594 221.238281 231.433594 C 221.121094 231.433594 221.027344 231.527344 221.027344 231.644531 C 221.027344 231.761719 221.121094 231.855469 221.238281 231.855469 C 221.355469 231.855469 221.449219 231.761719 221.449219 231.644531 Z M 221.449219 231.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.738281 230.929688 C 223.738281 230.8125 223.644531 230.71875 223.527344 230.71875 C 223.410156 230.71875 223.316406 230.8125 223.316406 230.929688 C 223.316406 231.046875 223.410156 231.140625 223.527344 231.140625 C 223.644531 231.140625 223.738281 231.046875 223.738281 230.929688 Z M 223.738281 230.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.109375 227.824219 C 223.109375 227.707031 223.015625 227.613281 222.898438 227.613281 C 222.78125 227.613281 222.6875 227.707031 222.6875 227.824219 C 222.6875 227.941406 222.78125 228.035156 222.898438 228.035156 C 223.015625 228.035156 223.109375 227.941406 223.109375 227.824219 Z M 223.109375 227.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.0625 225.914062 C 224.0625 225.796875 223.96875 225.703125 223.851562 225.703125 C 223.734375 225.703125 223.640625 225.796875 223.640625 225.914062 C 223.640625 226.03125 223.734375 226.125 223.851562 226.125 C 223.96875 226.125 224.0625 226.03125 224.0625 225.914062 Z M 224.0625 225.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.0625 224.398438 C 226.0625 224.28125 225.96875 224.1875 225.851562 224.1875 C 225.734375 224.1875 225.640625 224.28125 225.640625 224.398438 C 225.640625 224.515625 225.734375 224.609375 225.851562 224.609375 C 225.96875 224.609375 226.0625 224.515625 226.0625 224.398438 Z M 226.0625 224.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.042969 225.535156 C 224.042969 225.417969 223.949219 225.324219 223.832031 225.324219 C 223.714844 225.324219 223.621094 225.417969 223.621094 225.535156 C 223.621094 225.652344 223.714844 225.746094 223.832031 225.746094 C 223.949219 225.746094 224.042969 225.652344 224.042969 225.535156 Z M 224.042969 225.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.699219 228.042969 C 223.699219 227.925781 223.605469 227.832031 223.488281 227.832031 C 223.371094 227.832031 223.277344 227.925781 223.277344 228.042969 C 223.277344 228.160156 223.371094 228.253906 223.488281 228.253906 C 223.605469 228.253906 223.699219 228.160156 223.699219 228.042969 Z M 223.699219 228.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.585938 229.222656 C 221.585938 229.105469 221.492188 229.011719 221.375 229.011719 C 221.257812 229.011719 221.164062 229.105469 221.164062 229.222656 C 221.164062 229.339844 221.257812 229.433594 221.375 229.433594 C 221.492188 229.433594 221.585938 229.339844 221.585938 229.222656 Z M 221.585938 229.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.769531 229.3125 C 217.769531 229.195312 217.675781 229.101562 217.558594 229.101562 C 217.441406 229.101562 217.347656 229.195312 217.347656 229.3125 C 217.347656 229.429688 217.441406 229.523438 217.558594 229.523438 C 217.675781 229.523438 217.769531 229.429688 217.769531 229.3125 Z M 217.769531 229.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.828125 229.804688 C 217.828125 229.6875 217.734375 229.59375 217.617188 229.59375 C 217.5 229.59375 217.40625 229.6875 217.40625 229.804688 C 217.40625 229.921875 217.5 230.015625 217.617188 230.015625 C 217.734375 230.015625 217.828125 229.921875 217.828125 229.804688 Z M 217.828125 229.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.539062 231.316406 C 213.539062 231.199219 213.445312 231.105469 213.328125 231.105469 C 213.210938 231.105469 213.117188 231.199219 213.117188 231.316406 C 213.117188 231.433594 213.210938 231.527344 213.328125 231.527344 C 213.445312 231.527344 213.539062 231.433594 213.539062 231.316406 Z M 213.539062 231.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.875 235.65625 C 214.875 235.539062 214.78125 235.445312 214.664062 235.445312 C 214.546875 235.445312 214.453125 235.539062 214.453125 235.65625 C 214.453125 235.773438 214.546875 235.867188 214.664062 235.867188 C 214.78125 235.867188 214.875 235.773438 214.875 235.65625 Z M 214.875 235.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.867188 236.617188 C 214.867188 236.5 214.773438 236.40625 214.65625 236.40625 C 214.539062 236.40625 214.445312 236.5 214.445312 236.617188 C 214.445312 236.734375 214.539062 236.828125 214.65625 236.828125 C 214.773438 236.828125 214.867188 236.734375 214.867188 236.617188 Z M 214.867188 236.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.347656 235.222656 C 213.347656 235.105469 213.253906 235.011719 213.136719 235.011719 C 213.019531 235.011719 212.925781 235.105469 212.925781 235.222656 C 212.925781 235.339844 213.019531 235.433594 213.136719 235.433594 C 213.253906 235.433594 213.347656 235.339844 213.347656 235.222656 Z M 213.347656 235.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.511719 239.359375 C 213.511719 239.242188 213.417969 239.148438 213.300781 239.148438 C 213.183594 239.148438 213.089844 239.242188 213.089844 239.359375 C 213.089844 239.476562 213.183594 239.570312 213.300781 239.570312 C 213.417969 239.570312 213.511719 239.476562 213.511719 239.359375 Z M 213.511719 239.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.535156 240.976562 C 214.535156 240.859375 214.441406 240.765625 214.324219 240.765625 C 214.207031 240.765625 214.113281 240.859375 214.113281 240.976562 C 214.113281 241.09375 214.207031 241.1875 214.324219 241.1875 C 214.441406 241.1875 214.535156 241.09375 214.535156 240.976562 Z M 214.535156 240.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.785156 240.617188 C 215.785156 240.5 215.691406 240.40625 215.574219 240.40625 C 215.457031 240.40625 215.363281 240.5 215.363281 240.617188 C 215.363281 240.734375 215.457031 240.828125 215.574219 240.828125 C 215.691406 240.828125 215.785156 240.734375 215.785156 240.617188 Z M 215.785156 240.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.855469 239.957031 C 216.855469 239.839844 216.761719 239.746094 216.644531 239.746094 C 216.527344 239.746094 216.433594 239.839844 216.433594 239.957031 C 216.433594 240.074219 216.527344 240.167969 216.644531 240.167969 C 216.761719 240.167969 216.855469 240.074219 216.855469 239.957031 Z M 216.855469 239.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.726562 240.902344 C 215.726562 240.785156 215.632812 240.691406 215.515625 240.691406 C 215.398438 240.691406 215.304688 240.785156 215.304688 240.902344 C 215.304688 241.019531 215.398438 241.113281 215.515625 241.113281 C 215.632812 241.113281 215.726562 241.019531 215.726562 240.902344 Z M 215.726562 240.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.285156 240.433594 C 212.285156 240.316406 212.191406 240.222656 212.074219 240.222656 C 211.957031 240.222656 211.863281 240.316406 211.863281 240.433594 C 211.863281 240.550781 211.957031 240.644531 212.074219 240.644531 C 212.191406 240.644531 212.285156 240.550781 212.285156 240.433594 Z M 212.285156 240.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.226562 238.089844 C 209.226562 237.972656 209.132812 237.878906 209.015625 237.878906 C 208.898438 237.878906 208.804688 237.972656 208.804688 238.089844 C 208.804688 238.207031 208.898438 238.300781 209.015625 238.300781 C 209.132812 238.300781 209.226562 238.207031 209.226562 238.089844 Z M 209.226562 238.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.128906 237.996094 C 209.128906 237.878906 209.035156 237.785156 208.917969 237.785156 C 208.800781 237.785156 208.707031 237.878906 208.707031 237.996094 C 208.707031 238.113281 208.800781 238.207031 208.917969 238.207031 C 209.035156 238.207031 209.128906 238.113281 209.128906 237.996094 Z M 209.128906 237.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.816406 234.78125 C 207.816406 234.664062 207.722656 234.570312 207.605469 234.570312 C 207.488281 234.570312 207.394531 234.664062 207.394531 234.78125 C 207.394531 234.898438 207.488281 234.992188 207.605469 234.992188 C 207.722656 234.992188 207.816406 234.898438 207.816406 234.78125 Z M 207.816406 234.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.269531 238.582031 C 208.269531 238.464844 208.175781 238.371094 208.058594 238.371094 C 207.941406 238.371094 207.847656 238.464844 207.847656 238.582031 C 207.847656 238.699219 207.941406 238.792969 208.058594 238.792969 C 208.175781 238.792969 208.269531 238.699219 208.269531 238.582031 Z M 208.269531 238.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.222656 238.78125 C 202.222656 238.664062 202.128906 238.570312 202.011719 238.570312 C 201.894531 238.570312 201.800781 238.664062 201.800781 238.78125 C 201.800781 238.898438 201.894531 238.992188 202.011719 238.992188 C 202.128906 238.992188 202.222656 238.898438 202.222656 238.78125 Z M 202.222656 238.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.085938 239.171875 C 204.085938 239.054688 203.992188 238.960938 203.875 238.960938 C 203.757812 238.960938 203.664062 239.054688 203.664062 239.171875 C 203.664062 239.289062 203.757812 239.382812 203.875 239.382812 C 203.992188 239.382812 204.085938 239.289062 204.085938 239.171875 Z M 204.085938 239.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.8125 241.175781 C 203.8125 241.058594 203.71875 240.964844 203.601562 240.964844 C 203.484375 240.964844 203.390625 241.058594 203.390625 241.175781 C 203.390625 241.292969 203.484375 241.386719 203.601562 241.386719 C 203.71875 241.386719 203.8125 241.292969 203.8125 241.175781 Z M 203.8125 241.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.367188 238.59375 C 203.367188 238.476562 203.273438 238.382812 203.15625 238.382812 C 203.039062 238.382812 202.945312 238.476562 202.945312 238.59375 C 202.945312 238.710938 203.039062 238.804688 203.15625 238.804688 C 203.273438 238.804688 203.367188 238.710938 203.367188 238.59375 Z M 203.367188 238.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206 241.324219 C 206 241.207031 205.90625 241.113281 205.789062 241.113281 C 205.671875 241.113281 205.578125 241.207031 205.578125 241.324219 C 205.578125 241.441406 205.671875 241.535156 205.789062 241.535156 C 205.90625 241.535156 206 241.441406 206 241.324219 Z M 206 241.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.996094 241.535156 C 206.996094 241.417969 206.902344 241.324219 206.785156 241.324219 C 206.667969 241.324219 206.574219 241.417969 206.574219 241.535156 C 206.574219 241.652344 206.667969 241.746094 206.785156 241.746094 C 206.902344 241.746094 206.996094 241.652344 206.996094 241.535156 Z M 206.996094 241.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.699219 243.21875 C 206.699219 243.101562 206.605469 243.007812 206.488281 243.007812 C 206.371094 243.007812 206.277344 243.101562 206.277344 243.21875 C 206.277344 243.335938 206.371094 243.429688 206.488281 243.429688 C 206.605469 243.429688 206.699219 243.335938 206.699219 243.21875 Z M 206.699219 243.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.265625 241.238281 C 205.265625 241.121094 205.171875 241.027344 205.054688 241.027344 C 204.9375 241.027344 204.84375 241.121094 204.84375 241.238281 C 204.84375 241.355469 204.9375 241.449219 205.054688 241.449219 C 205.171875 241.449219 205.265625 241.355469 205.265625 241.238281 Z M 205.265625 241.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.582031 244.546875 C 204.582031 244.429688 204.488281 244.335938 204.371094 244.335938 C 204.253906 244.335938 204.160156 244.429688 204.160156 244.546875 C 204.160156 244.664062 204.253906 244.757812 204.371094 244.757812 C 204.488281 244.757812 204.582031 244.664062 204.582031 244.546875 Z M 204.582031 244.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.003906 244.792969 C 207.003906 244.675781 206.910156 244.582031 206.792969 244.582031 C 206.675781 244.582031 206.582031 244.675781 206.582031 244.792969 C 206.582031 244.910156 206.675781 245.003906 206.792969 245.003906 C 206.910156 245.003906 207.003906 244.910156 207.003906 244.792969 Z M 207.003906 244.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.292969 243.597656 C 210.292969 243.480469 210.199219 243.386719 210.082031 243.386719 C 209.964844 243.386719 209.871094 243.480469 209.871094 243.597656 C 209.871094 243.714844 209.964844 243.808594 210.082031 243.808594 C 210.199219 243.808594 210.292969 243.714844 210.292969 243.597656 Z M 210.292969 243.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.976562 237.859375 C 208.976562 237.742188 208.882812 237.648438 208.765625 237.648438 C 208.648438 237.648438 208.554688 237.742188 208.554688 237.859375 C 208.554688 237.976562 208.648438 238.070312 208.765625 238.070312 C 208.882812 238.070312 208.976562 237.976562 208.976562 237.859375 Z M 208.976562 237.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.386719 235.757812 C 207.386719 235.640625 207.292969 235.546875 207.175781 235.546875 C 207.058594 235.546875 206.964844 235.640625 206.964844 235.757812 C 206.964844 235.875 207.058594 235.96875 207.175781 235.96875 C 207.292969 235.96875 207.386719 235.875 207.386719 235.757812 Z M 207.386719 235.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.527344 240.195312 C 204.527344 240.078125 204.433594 239.984375 204.316406 239.984375 C 204.199219 239.984375 204.105469 240.078125 204.105469 240.195312 C 204.105469 240.3125 204.199219 240.40625 204.316406 240.40625 C 204.433594 240.40625 204.527344 240.3125 204.527344 240.195312 Z M 204.527344 240.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.96875 240.671875 C 205.96875 240.554688 205.875 240.460938 205.757812 240.460938 C 205.640625 240.460938 205.546875 240.554688 205.546875 240.671875 C 205.546875 240.789062 205.640625 240.882812 205.757812 240.882812 C 205.875 240.882812 205.96875 240.789062 205.96875 240.671875 Z M 205.96875 240.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.023438 239.367188 C 204.023438 239.25 203.929688 239.15625 203.8125 239.15625 C 203.695312 239.15625 203.601562 239.25 203.601562 239.367188 C 203.601562 239.484375 203.695312 239.578125 203.8125 239.578125 C 203.929688 239.578125 204.023438 239.484375 204.023438 239.367188 Z M 204.023438 239.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.261719 238.664062 C 201.261719 238.546875 201.167969 238.453125 201.050781 238.453125 C 200.933594 238.453125 200.839844 238.546875 200.839844 238.664062 C 200.839844 238.78125 200.933594 238.875 201.050781 238.875 C 201.167969 238.875 201.261719 238.78125 201.261719 238.664062 Z M 201.261719 238.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.179688 239.578125 C 201.179688 239.460938 201.085938 239.367188 200.96875 239.367188 C 200.851562 239.367188 200.757812 239.460938 200.757812 239.578125 C 200.757812 239.695312 200.851562 239.789062 200.96875 239.789062 C 201.085938 239.789062 201.179688 239.695312 201.179688 239.578125 Z M 201.179688 239.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.6875 240.011719 C 200.6875 239.894531 200.59375 239.800781 200.476562 239.800781 C 200.359375 239.800781 200.265625 239.894531 200.265625 240.011719 C 200.265625 240.128906 200.359375 240.222656 200.476562 240.222656 C 200.59375 240.222656 200.6875 240.128906 200.6875 240.011719 Z M 200.6875 240.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.328125 236.78125 C 200.328125 236.664062 200.234375 236.570312 200.117188 236.570312 C 200 236.570312 199.90625 236.664062 199.90625 236.78125 C 199.90625 236.898438 200 236.992188 200.117188 236.992188 C 200.234375 236.992188 200.328125 236.898438 200.328125 236.78125 Z M 200.328125 236.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.332031 235.914062 C 201.332031 235.796875 201.238281 235.703125 201.121094 235.703125 C 201.003906 235.703125 200.910156 235.796875 200.910156 235.914062 C 200.910156 236.03125 201.003906 236.125 201.121094 236.125 C 201.238281 236.125 201.332031 236.03125 201.332031 235.914062 Z M 201.332031 235.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.175781 236.132812 C 199.175781 236.015625 199.082031 235.921875 198.964844 235.921875 C 198.847656 235.921875 198.753906 236.015625 198.753906 236.132812 C 198.753906 236.25 198.847656 236.34375 198.964844 236.34375 C 199.082031 236.34375 199.175781 236.25 199.175781 236.132812 Z M 199.175781 236.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.367188 233.886719 C 198.367188 233.769531 198.273438 233.675781 198.15625 233.675781 C 198.039062 233.675781 197.945312 233.769531 197.945312 233.886719 C 197.945312 234.003906 198.039062 234.097656 198.15625 234.097656 C 198.273438 234.097656 198.367188 234.003906 198.367188 233.886719 Z M 198.367188 233.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.199219 236.183594 C 201.199219 236.066406 201.105469 235.972656 200.988281 235.972656 C 200.871094 235.972656 200.777344 236.066406 200.777344 236.183594 C 200.777344 236.300781 200.871094 236.394531 200.988281 236.394531 C 201.105469 236.394531 201.199219 236.300781 201.199219 236.183594 Z M 201.199219 236.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.894531 238.300781 C 199.894531 238.183594 199.800781 238.089844 199.683594 238.089844 C 199.566406 238.089844 199.472656 238.183594 199.472656 238.300781 C 199.472656 238.417969 199.566406 238.511719 199.683594 238.511719 C 199.800781 238.511719 199.894531 238.417969 199.894531 238.300781 Z M 199.894531 238.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.382812 237.585938 C 199.382812 237.46875 199.289062 237.375 199.171875 237.375 C 199.054688 237.375 198.960938 237.46875 198.960938 237.585938 C 198.960938 237.703125 199.054688 237.796875 199.171875 237.796875 C 199.289062 237.796875 199.382812 237.703125 199.382812 237.585938 Z M 199.382812 237.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.328125 240.265625 C 197.328125 240.148438 197.234375 240.054688 197.117188 240.054688 C 197 240.054688 196.90625 240.148438 196.90625 240.265625 C 196.90625 240.382812 197 240.476562 197.117188 240.476562 C 197.234375 240.476562 197.328125 240.382812 197.328125 240.265625 Z M 197.328125 240.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.042969 243.140625 C 199.042969 243.023438 198.949219 242.929688 198.832031 242.929688 C 198.714844 242.929688 198.621094 243.023438 198.621094 243.140625 C 198.621094 243.257812 198.714844 243.351562 198.832031 243.351562 C 198.949219 243.351562 199.042969 243.257812 199.042969 243.140625 Z M 199.042969 243.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.191406 242.085938 C 196.191406 241.96875 196.097656 241.875 195.980469 241.875 C 195.863281 241.875 195.769531 241.96875 195.769531 242.085938 C 195.769531 242.203125 195.863281 242.296875 195.980469 242.296875 C 196.097656 242.296875 196.191406 242.203125 196.191406 242.085938 Z M 196.191406 242.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.867188 243.222656 C 195.867188 243.105469 195.773438 243.011719 195.65625 243.011719 C 195.539062 243.011719 195.445312 243.105469 195.445312 243.222656 C 195.445312 243.339844 195.539062 243.433594 195.65625 243.433594 C 195.773438 243.433594 195.867188 243.339844 195.867188 243.222656 Z M 195.867188 243.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.714844 242.535156 C 197.714844 242.417969 197.621094 242.324219 197.503906 242.324219 C 197.386719 242.324219 197.292969 242.417969 197.292969 242.535156 C 197.292969 242.652344 197.386719 242.746094 197.503906 242.746094 C 197.621094 242.746094 197.714844 242.652344 197.714844 242.535156 Z M 197.714844 242.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.199219 239.980469 C 196.199219 239.863281 196.105469 239.769531 195.988281 239.769531 C 195.871094 239.769531 195.777344 239.863281 195.777344 239.980469 C 195.777344 240.097656 195.871094 240.191406 195.988281 240.191406 C 196.105469 240.191406 196.199219 240.097656 196.199219 239.980469 Z M 196.199219 239.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.722656 237.195312 C 198.722656 237.078125 198.628906 236.984375 198.511719 236.984375 C 198.394531 236.984375 198.300781 237.078125 198.300781 237.195312 C 198.300781 237.3125 198.394531 237.40625 198.511719 237.40625 C 198.628906 237.40625 198.722656 237.3125 198.722656 237.195312 Z M 198.722656 237.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.039062 235.988281 C 198.039062 235.871094 197.945312 235.777344 197.828125 235.777344 C 197.710938 235.777344 197.617188 235.871094 197.617188 235.988281 C 197.617188 236.105469 197.710938 236.199219 197.828125 236.199219 C 197.945312 236.199219 198.039062 236.105469 198.039062 235.988281 Z M 198.039062 235.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.078125 236.597656 C 198.078125 236.480469 197.984375 236.386719 197.867188 236.386719 C 197.75 236.386719 197.65625 236.480469 197.65625 236.597656 C 197.65625 236.714844 197.75 236.808594 197.867188 236.808594 C 197.984375 236.808594 198.078125 236.714844 198.078125 236.597656 Z M 198.078125 236.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.441406 234.792969 C 198.441406 234.675781 198.347656 234.582031 198.230469 234.582031 C 198.113281 234.582031 198.019531 234.675781 198.019531 234.792969 C 198.019531 234.910156 198.113281 235.003906 198.230469 235.003906 C 198.347656 235.003906 198.441406 234.910156 198.441406 234.792969 Z M 198.441406 234.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.136719 235.285156 C 198.136719 235.167969 198.042969 235.074219 197.925781 235.074219 C 197.808594 235.074219 197.714844 235.167969 197.714844 235.285156 C 197.714844 235.402344 197.808594 235.496094 197.925781 235.496094 C 198.042969 235.496094 198.136719 235.402344 198.136719 235.285156 Z M 198.136719 235.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.375 235.953125 C 200.375 235.835938 200.28125 235.742188 200.164062 235.742188 C 200.046875 235.742188 199.953125 235.835938 199.953125 235.953125 C 199.953125 236.070312 200.046875 236.164062 200.164062 236.164062 C 200.28125 236.164062 200.375 236.070312 200.375 235.953125 Z M 200.375 235.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.257812 233.484375 C 198.257812 233.367188 198.164062 233.273438 198.046875 233.273438 C 197.929688 233.273438 197.835938 233.367188 197.835938 233.484375 C 197.835938 233.601562 197.929688 233.695312 198.046875 233.695312 C 198.164062 233.695312 198.257812 233.601562 198.257812 233.484375 Z M 198.257812 233.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.523438 233.550781 C 197.523438 233.433594 197.429688 233.339844 197.3125 233.339844 C 197.195312 233.339844 197.101562 233.433594 197.101562 233.550781 C 197.101562 233.667969 197.195312 233.761719 197.3125 233.761719 C 197.429688 233.761719 197.523438 233.667969 197.523438 233.550781 Z M 197.523438 233.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.234375 234.058594 C 198.234375 233.941406 198.140625 233.847656 198.023438 233.847656 C 197.90625 233.847656 197.8125 233.941406 197.8125 234.058594 C 197.8125 234.175781 197.90625 234.269531 198.023438 234.269531 C 198.140625 234.269531 198.234375 234.175781 198.234375 234.058594 Z M 198.234375 234.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.683594 232.796875 C 199.683594 232.679688 199.589844 232.585938 199.472656 232.585938 C 199.355469 232.585938 199.261719 232.679688 199.261719 232.796875 C 199.261719 232.914062 199.355469 233.007812 199.472656 233.007812 C 199.589844 233.007812 199.683594 232.914062 199.683594 232.796875 Z M 199.683594 232.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.300781 235.414062 C 203.300781 235.296875 203.207031 235.203125 203.089844 235.203125 C 202.972656 235.203125 202.878906 235.296875 202.878906 235.414062 C 202.878906 235.53125 202.972656 235.625 203.089844 235.625 C 203.207031 235.625 203.300781 235.53125 203.300781 235.414062 Z M 203.300781 235.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.835938 238.195312 C 204.835938 238.078125 204.742188 237.984375 204.625 237.984375 C 204.507812 237.984375 204.414062 238.078125 204.414062 238.195312 C 204.414062 238.3125 204.507812 238.40625 204.625 238.40625 C 204.742188 238.40625 204.835938 238.3125 204.835938 238.195312 Z M 204.835938 238.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.839844 239.402344 C 205.839844 239.285156 205.746094 239.191406 205.628906 239.191406 C 205.511719 239.191406 205.417969 239.285156 205.417969 239.402344 C 205.417969 239.519531 205.511719 239.613281 205.628906 239.613281 C 205.746094 239.613281 205.839844 239.519531 205.839844 239.402344 Z M 205.839844 239.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.914062 239.625 C 201.914062 239.507812 201.820312 239.414062 201.703125 239.414062 C 201.585938 239.414062 201.492188 239.507812 201.492188 239.625 C 201.492188 239.742188 201.585938 239.835938 201.703125 239.835938 C 201.820312 239.835938 201.914062 239.742188 201.914062 239.625 Z M 201.914062 239.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.183594 239.933594 C 205.183594 239.816406 205.089844 239.722656 204.972656 239.722656 C 204.855469 239.722656 204.761719 239.816406 204.761719 239.933594 C 204.761719 240.050781 204.855469 240.144531 204.972656 240.144531 C 205.089844 240.144531 205.183594 240.050781 205.183594 239.933594 Z M 205.183594 239.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.550781 238.585938 C 204.550781 238.46875 204.457031 238.375 204.339844 238.375 C 204.222656 238.375 204.128906 238.46875 204.128906 238.585938 C 204.128906 238.703125 204.222656 238.796875 204.339844 238.796875 C 204.457031 238.796875 204.550781 238.703125 204.550781 238.585938 Z M 204.550781 238.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.863281 234.835938 C 207.863281 234.71875 207.769531 234.625 207.652344 234.625 C 207.535156 234.625 207.441406 234.71875 207.441406 234.835938 C 207.441406 234.953125 207.535156 235.046875 207.652344 235.046875 C 207.769531 235.046875 207.863281 234.953125 207.863281 234.835938 Z M 207.863281 234.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.277344 230.769531 C 208.277344 230.652344 208.183594 230.558594 208.066406 230.558594 C 207.949219 230.558594 207.855469 230.652344 207.855469 230.769531 C 207.855469 230.886719 207.949219 230.980469 208.066406 230.980469 C 208.183594 230.980469 208.277344 230.886719 208.277344 230.769531 Z M 208.277344 230.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.421875 232.628906 C 208.421875 232.511719 208.328125 232.417969 208.210938 232.417969 C 208.09375 232.417969 208 232.511719 208 232.628906 C 208 232.746094 208.09375 232.839844 208.210938 232.839844 C 208.328125 232.839844 208.421875 232.746094 208.421875 232.628906 Z M 208.421875 232.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.027344 231.554688 C 206.027344 231.4375 205.933594 231.34375 205.816406 231.34375 C 205.699219 231.34375 205.605469 231.4375 205.605469 231.554688 C 205.605469 231.671875 205.699219 231.765625 205.816406 231.765625 C 205.933594 231.765625 206.027344 231.671875 206.027344 231.554688 Z M 206.027344 231.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.539062 233.191406 C 208.539062 233.074219 208.445312 232.980469 208.328125 232.980469 C 208.210938 232.980469 208.117188 233.074219 208.117188 233.191406 C 208.117188 233.308594 208.210938 233.402344 208.328125 233.402344 C 208.445312 233.402344 208.539062 233.308594 208.539062 233.191406 Z M 208.539062 233.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.933594 234.691406 C 210.933594 234.574219 210.839844 234.480469 210.722656 234.480469 C 210.605469 234.480469 210.511719 234.574219 210.511719 234.691406 C 210.511719 234.808594 210.605469 234.902344 210.722656 234.902344 C 210.839844 234.902344 210.933594 234.808594 210.933594 234.691406 Z M 210.933594 234.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.648438 231.058594 C 213.648438 230.941406 213.554688 230.847656 213.4375 230.847656 C 213.320312 230.847656 213.226562 230.941406 213.226562 231.058594 C 213.226562 231.175781 213.320312 231.269531 213.4375 231.269531 C 213.554688 231.269531 213.648438 231.175781 213.648438 231.058594 Z M 213.648438 231.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.933594 231.132812 C 211.933594 231.015625 211.839844 230.921875 211.722656 230.921875 C 211.605469 230.921875 211.511719 231.015625 211.511719 231.132812 C 211.511719 231.25 211.605469 231.34375 211.722656 231.34375 C 211.839844 231.34375 211.933594 231.25 211.933594 231.132812 Z M 211.933594 231.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.148438 232.164062 C 210.148438 232.046875 210.054688 231.953125 209.9375 231.953125 C 209.820312 231.953125 209.726562 232.046875 209.726562 232.164062 C 209.726562 232.28125 209.820312 232.375 209.9375 232.375 C 210.054688 232.375 210.148438 232.28125 210.148438 232.164062 Z M 210.148438 232.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.203125 229.609375 C 205.203125 229.492188 205.109375 229.398438 204.992188 229.398438 C 204.875 229.398438 204.78125 229.492188 204.78125 229.609375 C 204.78125 229.726562 204.875 229.820312 204.992188 229.820312 C 205.109375 229.820312 205.203125 229.726562 205.203125 229.609375 Z M 205.203125 229.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.53125 227.019531 C 203.53125 226.902344 203.4375 226.808594 203.320312 226.808594 C 203.203125 226.808594 203.109375 226.902344 203.109375 227.019531 C 203.109375 227.136719 203.203125 227.230469 203.320312 227.230469 C 203.4375 227.230469 203.53125 227.136719 203.53125 227.019531 Z M 203.53125 227.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.433594 226.683594 C 207.433594 226.566406 207.339844 226.472656 207.222656 226.472656 C 207.105469 226.472656 207.011719 226.566406 207.011719 226.683594 C 207.011719 226.800781 207.105469 226.894531 207.222656 226.894531 C 207.339844 226.894531 207.433594 226.800781 207.433594 226.683594 Z M 207.433594 226.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.199219 227.1875 C 207.199219 227.070312 207.105469 226.976562 206.988281 226.976562 C 206.871094 226.976562 206.777344 227.070312 206.777344 227.1875 C 206.777344 227.304688 206.871094 227.398438 206.988281 227.398438 C 207.105469 227.398438 207.199219 227.304688 207.199219 227.1875 Z M 207.199219 227.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.738281 230.628906 C 206.738281 230.511719 206.644531 230.417969 206.527344 230.417969 C 206.410156 230.417969 206.316406 230.511719 206.316406 230.628906 C 206.316406 230.746094 206.410156 230.839844 206.527344 230.839844 C 206.644531 230.839844 206.738281 230.746094 206.738281 230.628906 Z M 206.738281 230.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.304688 230.734375 C 211.304688 230.617188 211.210938 230.523438 211.09375 230.523438 C 210.976562 230.523438 210.882812 230.617188 210.882812 230.734375 C 210.882812 230.851562 210.976562 230.945312 211.09375 230.945312 C 211.210938 230.945312 211.304688 230.851562 211.304688 230.734375 Z M 211.304688 230.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.1875 230.046875 C 212.1875 229.929688 212.09375 229.835938 211.976562 229.835938 C 211.859375 229.835938 211.765625 229.929688 211.765625 230.046875 C 211.765625 230.164062 211.859375 230.257812 211.976562 230.257812 C 212.09375 230.257812 212.1875 230.164062 212.1875 230.046875 Z M 212.1875 230.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.019531 232.292969 C 212.019531 232.175781 211.925781 232.082031 211.808594 232.082031 C 211.691406 232.082031 211.597656 232.175781 211.597656 232.292969 C 211.597656 232.410156 211.691406 232.503906 211.808594 232.503906 C 211.925781 232.503906 212.019531 232.410156 212.019531 232.292969 Z M 212.019531 232.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.261719 230.230469 C 210.261719 230.113281 210.167969 230.019531 210.050781 230.019531 C 209.933594 230.019531 209.839844 230.113281 209.839844 230.230469 C 209.839844 230.347656 209.933594 230.441406 210.050781 230.441406 C 210.167969 230.441406 210.261719 230.347656 210.261719 230.230469 Z M 210.261719 230.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.148438 227.359375 C 210.148438 227.242188 210.054688 227.148438 209.9375 227.148438 C 209.820312 227.148438 209.726562 227.242188 209.726562 227.359375 C 209.726562 227.476562 209.820312 227.570312 209.9375 227.570312 C 210.054688 227.570312 210.148438 227.476562 210.148438 227.359375 Z M 210.148438 227.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.820312 230.8125 C 209.820312 230.695312 209.726562 230.601562 209.609375 230.601562 C 209.492188 230.601562 209.398438 230.695312 209.398438 230.8125 C 209.398438 230.929688 209.492188 231.023438 209.609375 231.023438 C 209.726562 231.023438 209.820312 230.929688 209.820312 230.8125 Z M 209.820312 230.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.644531 229.007812 C 208.644531 228.890625 208.550781 228.796875 208.433594 228.796875 C 208.316406 228.796875 208.222656 228.890625 208.222656 229.007812 C 208.222656 229.125 208.316406 229.21875 208.433594 229.21875 C 208.550781 229.21875 208.644531 229.125 208.644531 229.007812 Z M 208.644531 229.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.09375 231.25 C 209.09375 231.132812 209 231.039062 208.882812 231.039062 C 208.765625 231.039062 208.671875 231.132812 208.671875 231.25 C 208.671875 231.367188 208.765625 231.460938 208.882812 231.460938 C 209 231.460938 209.09375 231.367188 209.09375 231.25 Z M 209.09375 231.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.230469 234.695312 C 208.230469 234.578125 208.136719 234.484375 208.019531 234.484375 C 207.902344 234.484375 207.808594 234.578125 207.808594 234.695312 C 207.808594 234.8125 207.902344 234.90625 208.019531 234.90625 C 208.136719 234.90625 208.230469 234.8125 208.230469 234.695312 Z M 208.230469 234.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.59375 231.722656 C 213.59375 231.605469 213.5 231.511719 213.382812 231.511719 C 213.265625 231.511719 213.171875 231.605469 213.171875 231.722656 C 213.171875 231.839844 213.265625 231.933594 213.382812 231.933594 C 213.5 231.933594 213.59375 231.839844 213.59375 231.722656 Z M 213.59375 231.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.585938 232.613281 C 213.585938 232.496094 213.492188 232.402344 213.375 232.402344 C 213.257812 232.402344 213.164062 232.496094 213.164062 232.613281 C 213.164062 232.730469 213.257812 232.824219 213.375 232.824219 C 213.492188 232.824219 213.585938 232.730469 213.585938 232.613281 Z M 213.585938 232.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.351562 232.078125 C 215.351562 231.960938 215.257812 231.867188 215.140625 231.867188 C 215.023438 231.867188 214.929688 231.960938 214.929688 232.078125 C 214.929688 232.195312 215.023438 232.289062 215.140625 232.289062 C 215.257812 232.289062 215.351562 232.195312 215.351562 232.078125 Z M 215.351562 232.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.484375 230.300781 C 211.484375 230.183594 211.390625 230.089844 211.273438 230.089844 C 211.15625 230.089844 211.0625 230.183594 211.0625 230.300781 C 211.0625 230.417969 211.15625 230.511719 211.273438 230.511719 C 211.390625 230.511719 211.484375 230.417969 211.484375 230.300781 Z M 211.484375 230.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.277344 234.667969 C 211.277344 234.550781 211.183594 234.457031 211.066406 234.457031 C 210.949219 234.457031 210.855469 234.550781 210.855469 234.667969 C 210.855469 234.785156 210.949219 234.878906 211.066406 234.878906 C 211.183594 234.878906 211.277344 234.785156 211.277344 234.667969 Z M 211.277344 234.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.261719 233.292969 C 212.261719 233.175781 212.167969 233.082031 212.050781 233.082031 C 211.933594 233.082031 211.839844 233.175781 211.839844 233.292969 C 211.839844 233.410156 211.933594 233.503906 212.050781 233.503906 C 212.167969 233.503906 212.261719 233.410156 212.261719 233.292969 Z M 212.261719 233.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.476562 231.125 C 212.476562 231.007812 212.382812 230.914062 212.265625 230.914062 C 212.148438 230.914062 212.054688 231.007812 212.054688 231.125 C 212.054688 231.242188 212.148438 231.335938 212.265625 231.335938 C 212.382812 231.335938 212.476562 231.242188 212.476562 231.125 Z M 212.476562 231.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.960938 234.488281 C 210.960938 234.371094 210.867188 234.277344 210.75 234.277344 C 210.632812 234.277344 210.539062 234.371094 210.539062 234.488281 C 210.539062 234.605469 210.632812 234.699219 210.75 234.699219 C 210.867188 234.699219 210.960938 234.605469 210.960938 234.488281 Z M 210.960938 234.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.632812 234.023438 C 211.632812 233.90625 211.539062 233.8125 211.421875 233.8125 C 211.304688 233.8125 211.210938 233.90625 211.210938 234.023438 C 211.210938 234.140625 211.304688 234.234375 211.421875 234.234375 C 211.539062 234.234375 211.632812 234.140625 211.632812 234.023438 Z M 211.632812 234.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.636719 230.636719 C 212.636719 230.519531 212.542969 230.425781 212.425781 230.425781 C 212.308594 230.425781 212.214844 230.519531 212.214844 230.636719 C 212.214844 230.753906 212.308594 230.847656 212.425781 230.847656 C 212.542969 230.847656 212.636719 230.753906 212.636719 230.636719 Z M 212.636719 230.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.980469 228.847656 C 213.980469 228.730469 213.886719 228.636719 213.769531 228.636719 C 213.652344 228.636719 213.558594 228.730469 213.558594 228.847656 C 213.558594 228.964844 213.652344 229.058594 213.769531 229.058594 C 213.886719 229.058594 213.980469 228.964844 213.980469 228.847656 Z M 213.980469 228.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.976562 231.203125 C 212.976562 231.085938 212.882812 230.992188 212.765625 230.992188 C 212.648438 230.992188 212.554688 231.085938 212.554688 231.203125 C 212.554688 231.320312 212.648438 231.414062 212.765625 231.414062 C 212.882812 231.414062 212.976562 231.320312 212.976562 231.203125 Z M 212.976562 231.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.128906 228.699219 C 215.128906 228.582031 215.035156 228.488281 214.917969 228.488281 C 214.800781 228.488281 214.707031 228.582031 214.707031 228.699219 C 214.707031 228.816406 214.800781 228.910156 214.917969 228.910156 C 215.035156 228.910156 215.128906 228.816406 215.128906 228.699219 Z M 215.128906 228.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.808594 227.691406 C 215.808594 227.574219 215.714844 227.480469 215.597656 227.480469 C 215.480469 227.480469 215.386719 227.574219 215.386719 227.691406 C 215.386719 227.808594 215.480469 227.902344 215.597656 227.902344 C 215.714844 227.902344 215.808594 227.808594 215.808594 227.691406 Z M 215.808594 227.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.808594 229.355469 C 215.808594 229.238281 215.714844 229.144531 215.597656 229.144531 C 215.480469 229.144531 215.386719 229.238281 215.386719 229.355469 C 215.386719 229.472656 215.480469 229.566406 215.597656 229.566406 C 215.714844 229.566406 215.808594 229.472656 215.808594 229.355469 Z M 215.808594 229.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.464844 227.785156 C 210.464844 227.667969 210.371094 227.574219 210.253906 227.574219 C 210.136719 227.574219 210.042969 227.667969 210.042969 227.785156 C 210.042969 227.902344 210.136719 227.996094 210.253906 227.996094 C 210.371094 227.996094 210.464844 227.902344 210.464844 227.785156 Z M 210.464844 227.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.210938 225.140625 C 209.210938 225.023438 209.117188 224.929688 209 224.929688 C 208.882812 224.929688 208.789062 225.023438 208.789062 225.140625 C 208.789062 225.257812 208.882812 225.351562 209 225.351562 C 209.117188 225.351562 209.210938 225.257812 209.210938 225.140625 Z M 209.210938 225.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.898438 222.457031 C 209.898438 222.339844 209.804688 222.246094 209.6875 222.246094 C 209.570312 222.246094 209.476562 222.339844 209.476562 222.457031 C 209.476562 222.574219 209.570312 222.667969 209.6875 222.667969 C 209.804688 222.667969 209.898438 222.574219 209.898438 222.457031 Z M 209.898438 222.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.910156 222.238281 C 207.910156 222.121094 207.816406 222.027344 207.699219 222.027344 C 207.582031 222.027344 207.488281 222.121094 207.488281 222.238281 C 207.488281 222.355469 207.582031 222.449219 207.699219 222.449219 C 207.816406 222.449219 207.910156 222.355469 207.910156 222.238281 Z M 207.910156 222.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.027344 224.558594 C 209.027344 224.441406 208.933594 224.347656 208.816406 224.347656 C 208.699219 224.347656 208.605469 224.441406 208.605469 224.558594 C 208.605469 224.675781 208.699219 224.769531 208.816406 224.769531 C 208.933594 224.769531 209.027344 224.675781 209.027344 224.558594 Z M 209.027344 224.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.460938 226.480469 C 210.460938 226.363281 210.367188 226.269531 210.25 226.269531 C 210.132812 226.269531 210.039062 226.363281 210.039062 226.480469 C 210.039062 226.597656 210.132812 226.691406 210.25 226.691406 C 210.367188 226.691406 210.460938 226.597656 210.460938 226.480469 Z M 210.460938 226.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.140625 228.515625 C 210.140625 228.398438 210.046875 228.304688 209.929688 228.304688 C 209.8125 228.304688 209.71875 228.398438 209.71875 228.515625 C 209.71875 228.632812 209.8125 228.726562 209.929688 228.726562 C 210.046875 228.726562 210.140625 228.632812 210.140625 228.515625 Z M 210.140625 228.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.9375 227.355469 C 206.9375 227.238281 206.84375 227.144531 206.726562 227.144531 C 206.609375 227.144531 206.515625 227.238281 206.515625 227.355469 C 206.515625 227.472656 206.609375 227.566406 206.726562 227.566406 C 206.84375 227.566406 206.9375 227.472656 206.9375 227.355469 Z M 206.9375 227.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.519531 227.144531 C 208.519531 227.027344 208.425781 226.933594 208.308594 226.933594 C 208.191406 226.933594 208.097656 227.027344 208.097656 227.144531 C 208.097656 227.261719 208.191406 227.355469 208.308594 227.355469 C 208.425781 227.355469 208.519531 227.261719 208.519531 227.144531 Z M 208.519531 227.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.515625 226.5625 C 211.515625 226.445312 211.421875 226.351562 211.304688 226.351562 C 211.1875 226.351562 211.09375 226.445312 211.09375 226.5625 C 211.09375 226.679688 211.1875 226.773438 211.304688 226.773438 C 211.421875 226.773438 211.515625 226.679688 211.515625 226.5625 Z M 211.515625 226.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.335938 228.394531 C 215.335938 228.277344 215.242188 228.183594 215.125 228.183594 C 215.007812 228.183594 214.914062 228.277344 214.914062 228.394531 C 214.914062 228.511719 215.007812 228.605469 215.125 228.605469 C 215.242188 228.605469 215.335938 228.511719 215.335938 228.394531 Z M 215.335938 228.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.644531 223.804688 C 214.644531 223.6875 214.550781 223.59375 214.433594 223.59375 C 214.316406 223.59375 214.222656 223.6875 214.222656 223.804688 C 214.222656 223.921875 214.316406 224.015625 214.433594 224.015625 C 214.550781 224.015625 214.644531 223.921875 214.644531 223.804688 Z M 214.644531 223.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.449219 221.421875 C 211.449219 221.304688 211.355469 221.210938 211.238281 221.210938 C 211.121094 221.210938 211.027344 221.304688 211.027344 221.421875 C 211.027344 221.539062 211.121094 221.632812 211.238281 221.632812 C 211.355469 221.632812 211.449219 221.539062 211.449219 221.421875 Z M 211.449219 221.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.050781 223.378906 C 211.050781 223.261719 210.957031 223.167969 210.839844 223.167969 C 210.722656 223.167969 210.628906 223.261719 210.628906 223.378906 C 210.628906 223.496094 210.722656 223.589844 210.839844 223.589844 C 210.957031 223.589844 211.050781 223.496094 211.050781 223.378906 Z M 211.050781 223.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.574219 225.691406 C 213.574219 225.574219 213.480469 225.480469 213.363281 225.480469 C 213.246094 225.480469 213.152344 225.574219 213.152344 225.691406 C 213.152344 225.808594 213.246094 225.902344 213.363281 225.902344 C 213.480469 225.902344 213.574219 225.808594 213.574219 225.691406 Z M 213.574219 225.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.128906 227.703125 C 216.128906 227.585938 216.035156 227.492188 215.917969 227.492188 C 215.800781 227.492188 215.707031 227.585938 215.707031 227.703125 C 215.707031 227.820312 215.800781 227.914062 215.917969 227.914062 C 216.035156 227.914062 216.128906 227.820312 216.128906 227.703125 Z M 216.128906 227.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.222656 226.320312 C 218.222656 226.203125 218.128906 226.109375 218.011719 226.109375 C 217.894531 226.109375 217.800781 226.203125 217.800781 226.320312 C 217.800781 226.4375 217.894531 226.53125 218.011719 226.53125 C 218.128906 226.53125 218.222656 226.4375 218.222656 226.320312 Z M 218.222656 226.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.695312 219.296875 C 217.695312 219.179688 217.601562 219.085938 217.484375 219.085938 C 217.367188 219.085938 217.273438 219.179688 217.273438 219.296875 C 217.273438 219.414062 217.367188 219.507812 217.484375 219.507812 C 217.601562 219.507812 217.695312 219.414062 217.695312 219.296875 Z M 217.695312 219.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.054688 221.953125 C 218.054688 221.835938 217.960938 221.742188 217.84375 221.742188 C 217.726562 221.742188 217.632812 221.835938 217.632812 221.953125 C 217.632812 222.070312 217.726562 222.164062 217.84375 222.164062 C 217.960938 222.164062 218.054688 222.070312 218.054688 221.953125 Z M 218.054688 221.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.421875 221.246094 C 218.421875 221.128906 218.328125 221.035156 218.210938 221.035156 C 218.09375 221.035156 218 221.128906 218 221.246094 C 218 221.363281 218.09375 221.457031 218.210938 221.457031 C 218.328125 221.457031 218.421875 221.363281 218.421875 221.246094 Z M 218.421875 221.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.550781 220 C 218.550781 219.882812 218.457031 219.789062 218.339844 219.789062 C 218.222656 219.789062 218.128906 219.882812 218.128906 220 C 218.128906 220.117188 218.222656 220.210938 218.339844 220.210938 C 218.457031 220.210938 218.550781 220.117188 218.550781 220 Z M 218.550781 220 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.445312 220.007812 C 221.445312 219.890625 221.351562 219.796875 221.234375 219.796875 C 221.117188 219.796875 221.023438 219.890625 221.023438 220.007812 C 221.023438 220.125 221.117188 220.21875 221.234375 220.21875 C 221.351562 220.21875 221.445312 220.125 221.445312 220.007812 Z M 221.445312 220.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 222.316406 222.449219 C 222.316406 222.332031 222.222656 222.238281 222.105469 222.238281 C 221.988281 222.238281 221.894531 222.332031 221.894531 222.449219 C 221.894531 222.566406 221.988281 222.660156 222.105469 222.660156 C 222.222656 222.660156 222.316406 222.566406 222.316406 222.449219 Z M 222.316406 222.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 222.347656 222.585938 C 222.347656 222.46875 222.253906 222.375 222.136719 222.375 C 222.019531 222.375 221.925781 222.46875 221.925781 222.585938 C 221.925781 222.703125 222.019531 222.796875 222.136719 222.796875 C 222.253906 222.796875 222.347656 222.703125 222.347656 222.585938 Z M 222.347656 222.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.453125 223.816406 C 223.453125 223.699219 223.359375 223.605469 223.242188 223.605469 C 223.125 223.605469 223.03125 223.699219 223.03125 223.816406 C 223.03125 223.933594 223.125 224.027344 223.242188 224.027344 C 223.359375 224.027344 223.453125 223.933594 223.453125 223.816406 Z M 223.453125 223.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.8125 224.402344 C 223.8125 224.285156 223.71875 224.191406 223.601562 224.191406 C 223.484375 224.191406 223.390625 224.285156 223.390625 224.402344 C 223.390625 224.519531 223.484375 224.613281 223.601562 224.613281 C 223.71875 224.613281 223.8125 224.519531 223.8125 224.402344 Z M 223.8125 224.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.984375 223.769531 C 218.984375 223.652344 218.890625 223.558594 218.773438 223.558594 C 218.65625 223.558594 218.5625 223.652344 218.5625 223.769531 C 218.5625 223.886719 218.65625 223.980469 218.773438 223.980469 C 218.890625 223.980469 218.984375 223.886719 218.984375 223.769531 Z M 218.984375 223.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.511719 221.367188 C 218.511719 221.25 218.417969 221.15625 218.300781 221.15625 C 218.183594 221.15625 218.089844 221.25 218.089844 221.367188 C 218.089844 221.484375 218.183594 221.578125 218.300781 221.578125 C 218.417969 221.578125 218.511719 221.484375 218.511719 221.367188 Z M 218.511719 221.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.398438 219.546875 C 218.398438 219.429688 218.304688 219.335938 218.1875 219.335938 C 218.070312 219.335938 217.976562 219.429688 217.976562 219.546875 C 217.976562 219.664062 218.070312 219.757812 218.1875 219.757812 C 218.304688 219.757812 218.398438 219.664062 218.398438 219.546875 Z M 218.398438 219.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.300781 219.03125 C 217.300781 218.914062 217.207031 218.820312 217.089844 218.820312 C 216.972656 218.820312 216.878906 218.914062 216.878906 219.03125 C 216.878906 219.148438 216.972656 219.242188 217.089844 219.242188 C 217.207031 219.242188 217.300781 219.148438 217.300781 219.03125 Z M 217.300781 219.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.078125 216.746094 C 216.078125 216.628906 215.984375 216.535156 215.867188 216.535156 C 215.75 216.535156 215.65625 216.628906 215.65625 216.746094 C 215.65625 216.863281 215.75 216.957031 215.867188 216.957031 C 215.984375 216.957031 216.078125 216.863281 216.078125 216.746094 Z M 216.078125 216.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.082031 216.363281 C 214.082031 216.246094 213.988281 216.152344 213.871094 216.152344 C 213.753906 216.152344 213.660156 216.246094 213.660156 216.363281 C 213.660156 216.480469 213.753906 216.574219 213.871094 216.574219 C 213.988281 216.574219 214.082031 216.480469 214.082031 216.363281 Z M 214.082031 216.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.210938 213.605469 C 213.210938 213.488281 213.117188 213.394531 213 213.394531 C 212.882812 213.394531 212.789062 213.488281 212.789062 213.605469 C 212.789062 213.722656 212.882812 213.816406 213 213.816406 C 213.117188 213.816406 213.210938 213.722656 213.210938 213.605469 Z M 213.210938 213.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.832031 212.011719 C 211.832031 211.894531 211.738281 211.800781 211.621094 211.800781 C 211.503906 211.800781 211.410156 211.894531 211.410156 212.011719 C 211.410156 212.128906 211.503906 212.222656 211.621094 212.222656 C 211.738281 212.222656 211.832031 212.128906 211.832031 212.011719 Z M 211.832031 212.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.695312 207.839844 C 209.695312 207.722656 209.601562 207.628906 209.484375 207.628906 C 209.367188 207.628906 209.273438 207.722656 209.273438 207.839844 C 209.273438 207.957031 209.367188 208.050781 209.484375 208.050781 C 209.601562 208.050781 209.695312 207.957031 209.695312 207.839844 Z M 209.695312 207.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.59375 208.457031 C 207.59375 208.339844 207.5 208.246094 207.382812 208.246094 C 207.265625 208.246094 207.171875 208.339844 207.171875 208.457031 C 207.171875 208.574219 207.265625 208.667969 207.382812 208.667969 C 207.5 208.667969 207.59375 208.574219 207.59375 208.457031 Z M 207.59375 208.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.101562 207.285156 C 206.101562 207.167969 206.007812 207.074219 205.890625 207.074219 C 205.773438 207.074219 205.679688 207.167969 205.679688 207.285156 C 205.679688 207.402344 205.773438 207.496094 205.890625 207.496094 C 206.007812 207.496094 206.101562 207.402344 206.101562 207.285156 Z M 206.101562 207.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.597656 209.15625 C 206.597656 209.039062 206.503906 208.945312 206.386719 208.945312 C 206.269531 208.945312 206.175781 209.039062 206.175781 209.15625 C 206.175781 209.273438 206.269531 209.367188 206.386719 209.367188 C 206.503906 209.367188 206.597656 209.273438 206.597656 209.15625 Z M 206.597656 209.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.84375 203.738281 C 209.84375 203.621094 209.75 203.527344 209.632812 203.527344 C 209.515625 203.527344 209.421875 203.621094 209.421875 203.738281 C 209.421875 203.855469 209.515625 203.949219 209.632812 203.949219 C 209.75 203.949219 209.84375 203.855469 209.84375 203.738281 Z M 209.84375 203.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.9375 201.21875 C 207.9375 201.101562 207.84375 201.007812 207.726562 201.007812 C 207.609375 201.007812 207.515625 201.101562 207.515625 201.21875 C 207.515625 201.335938 207.609375 201.429688 207.726562 201.429688 C 207.84375 201.429688 207.9375 201.335938 207.9375 201.21875 Z M 207.9375 201.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.472656 202.359375 C 206.472656 202.242188 206.378906 202.148438 206.261719 202.148438 C 206.144531 202.148438 206.050781 202.242188 206.050781 202.359375 C 206.050781 202.476562 206.144531 202.570312 206.261719 202.570312 C 206.378906 202.570312 206.472656 202.476562 206.472656 202.359375 Z M 206.472656 202.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.730469 209.769531 C 203.730469 209.652344 203.636719 209.558594 203.519531 209.558594 C 203.402344 209.558594 203.308594 209.652344 203.308594 209.769531 C 203.308594 209.886719 203.402344 209.980469 203.519531 209.980469 C 203.636719 209.980469 203.730469 209.886719 203.730469 209.769531 Z M 203.730469 209.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.328125 207.441406 C 204.328125 207.324219 204.234375 207.230469 204.117188 207.230469 C 204 207.230469 203.90625 207.324219 203.90625 207.441406 C 203.90625 207.558594 204 207.652344 204.117188 207.652344 C 204.234375 207.652344 204.328125 207.558594 204.328125 207.441406 Z M 204.328125 207.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.695312 209.84375 C 206.695312 209.726562 206.601562 209.632812 206.484375 209.632812 C 206.367188 209.632812 206.273438 209.726562 206.273438 209.84375 C 206.273438 209.960938 206.367188 210.054688 206.484375 210.054688 C 206.601562 210.054688 206.695312 209.960938 206.695312 209.84375 Z M 206.695312 209.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.109375 212.152344 C 205.109375 212.035156 205.015625 211.941406 204.898438 211.941406 C 204.78125 211.941406 204.6875 212.035156 204.6875 212.152344 C 204.6875 212.269531 204.78125 212.363281 204.898438 212.363281 C 205.015625 212.363281 205.109375 212.269531 205.109375 212.152344 Z M 205.109375 212.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.644531 214.296875 C 203.644531 214.179688 203.550781 214.085938 203.433594 214.085938 C 203.316406 214.085938 203.222656 214.179688 203.222656 214.296875 C 203.222656 214.414062 203.316406 214.507812 203.433594 214.507812 C 203.550781 214.507812 203.644531 214.414062 203.644531 214.296875 Z M 203.644531 214.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.378906 216.320312 C 199.378906 216.203125 199.285156 216.109375 199.167969 216.109375 C 199.050781 216.109375 198.957031 216.203125 198.957031 216.320312 C 198.957031 216.4375 199.050781 216.53125 199.167969 216.53125 C 199.285156 216.53125 199.378906 216.4375 199.378906 216.320312 Z M 199.378906 216.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.902344 217.847656 C 200.902344 217.730469 200.808594 217.636719 200.691406 217.636719 C 200.574219 217.636719 200.480469 217.730469 200.480469 217.847656 C 200.480469 217.964844 200.574219 218.058594 200.691406 218.058594 C 200.808594 218.058594 200.902344 217.964844 200.902344 217.847656 Z M 200.902344 217.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.992188 217.632812 C 196.992188 217.515625 196.898438 217.421875 196.78125 217.421875 C 196.664062 217.421875 196.570312 217.515625 196.570312 217.632812 C 196.570312 217.75 196.664062 217.84375 196.78125 217.84375 C 196.898438 217.84375 196.992188 217.75 196.992188 217.632812 Z M 196.992188 217.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.554688 220.347656 C 199.554688 220.230469 199.460938 220.136719 199.34375 220.136719 C 199.226562 220.136719 199.132812 220.230469 199.132812 220.347656 C 199.132812 220.464844 199.226562 220.558594 199.34375 220.558594 C 199.460938 220.558594 199.554688 220.464844 199.554688 220.347656 Z M 199.554688 220.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.195312 219.941406 C 200.195312 219.824219 200.101562 219.730469 199.984375 219.730469 C 199.867188 219.730469 199.773438 219.824219 199.773438 219.941406 C 199.773438 220.058594 199.867188 220.152344 199.984375 220.152344 C 200.101562 220.152344 200.195312 220.058594 200.195312 219.941406 Z M 200.195312 219.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.558594 218.113281 C 201.558594 217.996094 201.464844 217.902344 201.347656 217.902344 C 201.230469 217.902344 201.136719 217.996094 201.136719 218.113281 C 201.136719 218.230469 201.230469 218.324219 201.347656 218.324219 C 201.464844 218.324219 201.558594 218.230469 201.558594 218.113281 Z M 201.558594 218.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.988281 218.828125 C 200.988281 218.710938 200.894531 218.617188 200.777344 218.617188 C 200.660156 218.617188 200.566406 218.710938 200.566406 218.828125 C 200.566406 218.945312 200.660156 219.039062 200.777344 219.039062 C 200.894531 219.039062 200.988281 218.945312 200.988281 218.828125 Z M 200.988281 218.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.082031 216.742188 C 200.082031 216.625 199.988281 216.53125 199.871094 216.53125 C 199.753906 216.53125 199.660156 216.625 199.660156 216.742188 C 199.660156 216.859375 199.753906 216.953125 199.871094 216.953125 C 199.988281 216.953125 200.082031 216.859375 200.082031 216.742188 Z M 200.082031 216.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.074219 214.671875 C 203.074219 214.554688 202.980469 214.460938 202.863281 214.460938 C 202.746094 214.460938 202.652344 214.554688 202.652344 214.671875 C 202.652344 214.789062 202.746094 214.882812 202.863281 214.882812 C 202.980469 214.882812 203.074219 214.789062 203.074219 214.671875 Z M 203.074219 214.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.160156 215.75 C 205.160156 215.632812 205.066406 215.539062 204.949219 215.539062 C 204.832031 215.539062 204.738281 215.632812 204.738281 215.75 C 204.738281 215.867188 204.832031 215.960938 204.949219 215.960938 C 205.066406 215.960938 205.160156 215.867188 205.160156 215.75 Z M 205.160156 215.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.269531 216.398438 C 204.269531 216.28125 204.175781 216.1875 204.058594 216.1875 C 203.941406 216.1875 203.847656 216.28125 203.847656 216.398438 C 203.847656 216.515625 203.941406 216.609375 204.058594 216.609375 C 204.175781 216.609375 204.269531 216.515625 204.269531 216.398438 Z M 204.269531 216.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.410156 218.3125 C 204.410156 218.195312 204.316406 218.101562 204.199219 218.101562 C 204.082031 218.101562 203.988281 218.195312 203.988281 218.3125 C 203.988281 218.429688 204.082031 218.523438 204.199219 218.523438 C 204.316406 218.523438 204.410156 218.429688 204.410156 218.3125 Z M 204.410156 218.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.0625 219.53125 C 204.0625 219.414062 203.96875 219.320312 203.851562 219.320312 C 203.734375 219.320312 203.640625 219.414062 203.640625 219.53125 C 203.640625 219.648438 203.734375 219.742188 203.851562 219.742188 C 203.96875 219.742188 204.0625 219.648438 204.0625 219.53125 Z M 204.0625 219.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.316406 215.847656 C 209.316406 215.730469 209.222656 215.636719 209.105469 215.636719 C 208.988281 215.636719 208.894531 215.730469 208.894531 215.847656 C 208.894531 215.964844 208.988281 216.058594 209.105469 216.058594 C 209.222656 216.058594 209.316406 215.964844 209.316406 215.847656 Z M 209.316406 215.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.328125 217.855469 C 211.328125 217.738281 211.234375 217.644531 211.117188 217.644531 C 211 217.644531 210.90625 217.738281 210.90625 217.855469 C 210.90625 217.972656 211 218.066406 211.117188 218.066406 C 211.234375 218.066406 211.328125 217.972656 211.328125 217.855469 Z M 211.328125 217.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.984375 218.078125 C 208.984375 217.960938 208.890625 217.867188 208.773438 217.867188 C 208.65625 217.867188 208.5625 217.960938 208.5625 218.078125 C 208.5625 218.195312 208.65625 218.289062 208.773438 218.289062 C 208.890625 218.289062 208.984375 218.195312 208.984375 218.078125 Z M 208.984375 218.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.65625 216.144531 C 210.65625 216.027344 210.5625 215.933594 210.445312 215.933594 C 210.328125 215.933594 210.234375 216.027344 210.234375 216.144531 C 210.234375 216.261719 210.328125 216.355469 210.445312 216.355469 C 210.5625 216.355469 210.65625 216.261719 210.65625 216.144531 Z M 210.65625 216.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.78125 215.378906 C 208.78125 215.261719 208.6875 215.167969 208.570312 215.167969 C 208.453125 215.167969 208.359375 215.261719 208.359375 215.378906 C 208.359375 215.496094 208.453125 215.589844 208.570312 215.589844 C 208.6875 215.589844 208.78125 215.496094 208.78125 215.378906 Z M 208.78125 215.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.039062 216.804688 C 208.039062 216.6875 207.945312 216.59375 207.828125 216.59375 C 207.710938 216.59375 207.617188 216.6875 207.617188 216.804688 C 207.617188 216.921875 207.710938 217.015625 207.828125 217.015625 C 207.945312 217.015625 208.039062 216.921875 208.039062 216.804688 Z M 208.039062 216.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.421875 216.480469 C 212.421875 216.363281 212.328125 216.269531 212.210938 216.269531 C 212.09375 216.269531 212 216.363281 212 216.480469 C 212 216.597656 212.09375 216.691406 212.210938 216.691406 C 212.328125 216.691406 212.421875 216.597656 212.421875 216.480469 Z M 212.421875 216.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.539062 215.824219 C 207.539062 215.707031 207.445312 215.613281 207.328125 215.613281 C 207.210938 215.613281 207.117188 215.707031 207.117188 215.824219 C 207.117188 215.941406 207.210938 216.035156 207.328125 216.035156 C 207.445312 216.035156 207.539062 215.941406 207.539062 215.824219 Z M 207.539062 215.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.25 216.144531 C 206.25 216.027344 206.15625 215.933594 206.039062 215.933594 C 205.921875 215.933594 205.828125 216.027344 205.828125 216.144531 C 205.828125 216.261719 205.921875 216.355469 206.039062 216.355469 C 206.15625 216.355469 206.25 216.261719 206.25 216.144531 Z M 206.25 216.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.058594 220.054688 C 205.058594 219.9375 204.964844 219.84375 204.847656 219.84375 C 204.730469 219.84375 204.636719 219.9375 204.636719 220.054688 C 204.636719 220.171875 204.730469 220.265625 204.847656 220.265625 C 204.964844 220.265625 205.058594 220.171875 205.058594 220.054688 Z M 205.058594 220.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.464844 220.375 C 204.464844 220.257812 204.371094 220.164062 204.253906 220.164062 C 204.136719 220.164062 204.042969 220.257812 204.042969 220.375 C 204.042969 220.492188 204.136719 220.585938 204.253906 220.585938 C 204.371094 220.585938 204.464844 220.492188 204.464844 220.375 Z M 204.464844 220.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.582031 218.875 C 203.582031 218.757812 203.488281 218.664062 203.371094 218.664062 C 203.253906 218.664062 203.160156 218.757812 203.160156 218.875 C 203.160156 218.992188 203.253906 219.085938 203.371094 219.085938 C 203.488281 219.085938 203.582031 218.992188 203.582031 218.875 Z M 203.582031 218.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.601562 217.769531 C 206.601562 217.652344 206.507812 217.558594 206.390625 217.558594 C 206.273438 217.558594 206.179688 217.652344 206.179688 217.769531 C 206.179688 217.886719 206.273438 217.980469 206.390625 217.980469 C 206.507812 217.980469 206.601562 217.886719 206.601562 217.769531 Z M 206.601562 217.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.582031 220.648438 C 206.582031 220.53125 206.488281 220.4375 206.371094 220.4375 C 206.253906 220.4375 206.160156 220.53125 206.160156 220.648438 C 206.160156 220.765625 206.253906 220.859375 206.371094 220.859375 C 206.488281 220.859375 206.582031 220.765625 206.582031 220.648438 Z M 206.582031 220.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.234375 217.550781 C 200.234375 217.433594 200.140625 217.339844 200.023438 217.339844 C 199.90625 217.339844 199.8125 217.433594 199.8125 217.550781 C 199.8125 217.667969 199.90625 217.761719 200.023438 217.761719 C 200.140625 217.761719 200.234375 217.667969 200.234375 217.550781 Z M 200.234375 217.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.726562 215.75 C 200.726562 215.632812 200.632812 215.539062 200.515625 215.539062 C 200.398438 215.539062 200.304688 215.632812 200.304688 215.75 C 200.304688 215.867188 200.398438 215.960938 200.515625 215.960938 C 200.632812 215.960938 200.726562 215.867188 200.726562 215.75 Z M 200.726562 215.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.214844 216.621094 C 200.214844 216.503906 200.121094 216.410156 200.003906 216.410156 C 199.886719 216.410156 199.792969 216.503906 199.792969 216.621094 C 199.792969 216.738281 199.886719 216.832031 200.003906 216.832031 C 200.121094 216.832031 200.214844 216.738281 200.214844 216.621094 Z M 200.214844 216.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.9375 216 C 200.9375 215.882812 200.84375 215.789062 200.726562 215.789062 C 200.609375 215.789062 200.515625 215.882812 200.515625 216 C 200.515625 216.117188 200.609375 216.210938 200.726562 216.210938 C 200.84375 216.210938 200.9375 216.117188 200.9375 216 Z M 200.9375 216 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.183594 217.5625 C 202.183594 217.445312 202.089844 217.351562 201.972656 217.351562 C 201.855469 217.351562 201.761719 217.445312 201.761719 217.5625 C 201.761719 217.679688 201.855469 217.773438 201.972656 217.773438 C 202.089844 217.773438 202.183594 217.679688 202.183594 217.5625 Z M 202.183594 217.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.574219 220.789062 C 204.574219 220.671875 204.480469 220.578125 204.363281 220.578125 C 204.246094 220.578125 204.152344 220.671875 204.152344 220.789062 C 204.152344 220.90625 204.246094 221 204.363281 221 C 204.480469 221 204.574219 220.90625 204.574219 220.789062 Z M 204.574219 220.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.515625 215.371094 C 207.515625 215.253906 207.421875 215.160156 207.304688 215.160156 C 207.1875 215.160156 207.09375 215.253906 207.09375 215.371094 C 207.09375 215.488281 207.1875 215.582031 207.304688 215.582031 C 207.421875 215.582031 207.515625 215.488281 207.515625 215.371094 Z M 207.515625 215.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.699219 215.078125 C 208.699219 214.960938 208.605469 214.867188 208.488281 214.867188 C 208.371094 214.867188 208.277344 214.960938 208.277344 215.078125 C 208.277344 215.195312 208.371094 215.289062 208.488281 215.289062 C 208.605469 215.289062 208.699219 215.195312 208.699219 215.078125 Z M 208.699219 215.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.863281 214.90625 C 207.863281 214.789062 207.769531 214.695312 207.652344 214.695312 C 207.535156 214.695312 207.441406 214.789062 207.441406 214.90625 C 207.441406 215.023438 207.535156 215.117188 207.652344 215.117188 C 207.769531 215.117188 207.863281 215.023438 207.863281 214.90625 Z M 207.863281 214.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.652344 212.710938 C 210.652344 212.59375 210.558594 212.5 210.441406 212.5 C 210.324219 212.5 210.230469 212.59375 210.230469 212.710938 C 210.230469 212.828125 210.324219 212.921875 210.441406 212.921875 C 210.558594 212.921875 210.652344 212.828125 210.652344 212.710938 Z M 210.652344 212.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.929688 211.242188 C 210.929688 211.125 210.835938 211.03125 210.71875 211.03125 C 210.601562 211.03125 210.507812 211.125 210.507812 211.242188 C 210.507812 211.359375 210.601562 211.453125 210.71875 211.453125 C 210.835938 211.453125 210.929688 211.359375 210.929688 211.242188 Z M 210.929688 211.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.21875 209.523438 C 213.21875 209.40625 213.125 209.3125 213.007812 209.3125 C 212.890625 209.3125 212.796875 209.40625 212.796875 209.523438 C 212.796875 209.640625 212.890625 209.734375 213.007812 209.734375 C 213.125 209.734375 213.21875 209.640625 213.21875 209.523438 Z M 213.21875 209.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.78125 208.269531 C 214.78125 208.152344 214.6875 208.058594 214.570312 208.058594 C 214.453125 208.058594 214.359375 208.152344 214.359375 208.269531 C 214.359375 208.386719 214.453125 208.480469 214.570312 208.480469 C 214.6875 208.480469 214.78125 208.386719 214.78125 208.269531 Z M 214.78125 208.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.242188 208.816406 C 212.242188 208.699219 212.148438 208.605469 212.03125 208.605469 C 211.914062 208.605469 211.820312 208.699219 211.820312 208.816406 C 211.820312 208.933594 211.914062 209.027344 212.03125 209.027344 C 212.148438 209.027344 212.242188 208.933594 212.242188 208.816406 Z M 212.242188 208.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.472656 207.867188 C 210.472656 207.75 210.378906 207.65625 210.261719 207.65625 C 210.144531 207.65625 210.050781 207.75 210.050781 207.867188 C 210.050781 207.984375 210.144531 208.078125 210.261719 208.078125 C 210.378906 208.078125 210.472656 207.984375 210.472656 207.867188 Z M 210.472656 207.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.808594 209.671875 C 211.808594 209.554688 211.714844 209.460938 211.597656 209.460938 C 211.480469 209.460938 211.386719 209.554688 211.386719 209.671875 C 211.386719 209.789062 211.480469 209.882812 211.597656 209.882812 C 211.714844 209.882812 211.808594 209.789062 211.808594 209.671875 Z M 211.808594 209.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.492188 212.089844 C 210.492188 211.972656 210.398438 211.878906 210.28125 211.878906 C 210.164062 211.878906 210.070312 211.972656 210.070312 212.089844 C 210.070312 212.207031 210.164062 212.300781 210.28125 212.300781 C 210.398438 212.300781 210.492188 212.207031 210.492188 212.089844 Z M 210.492188 212.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.746094 218.296875 C 211.746094 218.179688 211.652344 218.085938 211.535156 218.085938 C 211.417969 218.085938 211.324219 218.179688 211.324219 218.296875 C 211.324219 218.414062 211.417969 218.507812 211.535156 218.507812 C 211.652344 218.507812 211.746094 218.414062 211.746094 218.296875 Z M 211.746094 218.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.535156 220.703125 C 209.535156 220.585938 209.441406 220.492188 209.324219 220.492188 C 209.207031 220.492188 209.113281 220.585938 209.113281 220.703125 C 209.113281 220.820312 209.207031 220.914062 209.324219 220.914062 C 209.441406 220.914062 209.535156 220.820312 209.535156 220.703125 Z M 209.535156 220.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.476562 217.546875 C 210.476562 217.429688 210.382812 217.335938 210.265625 217.335938 C 210.148438 217.335938 210.054688 217.429688 210.054688 217.546875 C 210.054688 217.664062 210.148438 217.757812 210.265625 217.757812 C 210.382812 217.757812 210.476562 217.664062 210.476562 217.546875 Z M 210.476562 217.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.992188 217.390625 C 211.992188 217.273438 211.898438 217.179688 211.78125 217.179688 C 211.664062 217.179688 211.570312 217.273438 211.570312 217.390625 C 211.570312 217.507812 211.664062 217.601562 211.78125 217.601562 C 211.898438 217.601562 211.992188 217.507812 211.992188 217.390625 Z M 211.992188 217.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.121094 217.167969 C 212.121094 217.050781 212.027344 216.957031 211.910156 216.957031 C 211.792969 216.957031 211.699219 217.050781 211.699219 217.167969 C 211.699219 217.285156 211.792969 217.378906 211.910156 217.378906 C 212.027344 217.378906 212.121094 217.285156 212.121094 217.167969 Z M 212.121094 217.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.453125 217.035156 C 210.453125 216.917969 210.359375 216.824219 210.242188 216.824219 C 210.125 216.824219 210.03125 216.917969 210.03125 217.035156 C 210.03125 217.152344 210.125 217.246094 210.242188 217.246094 C 210.359375 217.246094 210.453125 217.152344 210.453125 217.035156 Z M 210.453125 217.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.539062 214.246094 C 211.539062 214.128906 211.445312 214.035156 211.328125 214.035156 C 211.210938 214.035156 211.117188 214.128906 211.117188 214.246094 C 211.117188 214.363281 211.210938 214.457031 211.328125 214.457031 C 211.445312 214.457031 211.539062 214.363281 211.539062 214.246094 Z M 211.539062 214.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.667969 213.769531 C 210.667969 213.652344 210.574219 213.558594 210.457031 213.558594 C 210.339844 213.558594 210.246094 213.652344 210.246094 213.769531 C 210.246094 213.886719 210.339844 213.980469 210.457031 213.980469 C 210.574219 213.980469 210.667969 213.886719 210.667969 213.769531 Z M 210.667969 213.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.519531 217.402344 C 211.519531 217.285156 211.425781 217.191406 211.308594 217.191406 C 211.191406 217.191406 211.097656 217.285156 211.097656 217.402344 C 211.097656 217.519531 211.191406 217.613281 211.308594 217.613281 C 211.425781 217.613281 211.519531 217.519531 211.519531 217.402344 Z M 211.519531 217.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.128906 216.410156 C 212.128906 216.292969 212.035156 216.199219 211.917969 216.199219 C 211.800781 216.199219 211.707031 216.292969 211.707031 216.410156 C 211.707031 216.527344 211.800781 216.621094 211.917969 216.621094 C 212.035156 216.621094 212.128906 216.527344 212.128906 216.410156 Z M 212.128906 216.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.324219 217.214844 C 209.324219 217.097656 209.230469 217.003906 209.113281 217.003906 C 208.996094 217.003906 208.902344 217.097656 208.902344 217.214844 C 208.902344 217.332031 208.996094 217.425781 209.113281 217.425781 C 209.230469 217.425781 209.324219 217.332031 209.324219 217.214844 Z M 209.324219 217.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.761719 217.617188 C 209.761719 217.5 209.667969 217.40625 209.550781 217.40625 C 209.433594 217.40625 209.339844 217.5 209.339844 217.617188 C 209.339844 217.734375 209.433594 217.828125 209.550781 217.828125 C 209.667969 217.828125 209.761719 217.734375 209.761719 217.617188 Z M 209.761719 217.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.449219 216.066406 C 206.449219 215.949219 206.355469 215.855469 206.238281 215.855469 C 206.121094 215.855469 206.027344 215.949219 206.027344 216.066406 C 206.027344 216.183594 206.121094 216.277344 206.238281 216.277344 C 206.355469 216.277344 206.449219 216.183594 206.449219 216.066406 Z M 206.449219 216.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.492188 218.296875 C 205.492188 218.179688 205.398438 218.085938 205.28125 218.085938 C 205.164062 218.085938 205.070312 218.179688 205.070312 218.296875 C 205.070312 218.414062 205.164062 218.507812 205.28125 218.507812 C 205.398438 218.507812 205.492188 218.414062 205.492188 218.296875 Z M 205.492188 218.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.058594 219.949219 C 205.058594 219.832031 204.964844 219.738281 204.847656 219.738281 C 204.730469 219.738281 204.636719 219.832031 204.636719 219.949219 C 204.636719 220.066406 204.730469 220.160156 204.847656 220.160156 C 204.964844 220.160156 205.058594 220.066406 205.058594 219.949219 Z M 205.058594 219.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.644531 223.089844 C 204.644531 222.972656 204.550781 222.878906 204.433594 222.878906 C 204.316406 222.878906 204.222656 222.972656 204.222656 223.089844 C 204.222656 223.207031 204.316406 223.300781 204.433594 223.300781 C 204.550781 223.300781 204.644531 223.207031 204.644531 223.089844 Z M 204.644531 223.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.800781 224.097656 C 204.800781 223.980469 204.707031 223.886719 204.589844 223.886719 C 204.472656 223.886719 204.378906 223.980469 204.378906 224.097656 C 204.378906 224.214844 204.472656 224.308594 204.589844 224.308594 C 204.707031 224.308594 204.800781 224.214844 204.800781 224.097656 Z M 204.800781 224.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.566406 223.707031 C 202.566406 223.589844 202.472656 223.496094 202.355469 223.496094 C 202.238281 223.496094 202.144531 223.589844 202.144531 223.707031 C 202.144531 223.824219 202.238281 223.917969 202.355469 223.917969 C 202.472656 223.917969 202.566406 223.824219 202.566406 223.707031 Z M 202.566406 223.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.582031 221.695312 C 202.582031 221.578125 202.488281 221.484375 202.371094 221.484375 C 202.253906 221.484375 202.160156 221.578125 202.160156 221.695312 C 202.160156 221.8125 202.253906 221.90625 202.371094 221.90625 C 202.488281 221.90625 202.582031 221.8125 202.582031 221.695312 Z M 202.582031 221.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.503906 223.664062 C 203.503906 223.546875 203.410156 223.453125 203.292969 223.453125 C 203.175781 223.453125 203.082031 223.546875 203.082031 223.664062 C 203.082031 223.78125 203.175781 223.875 203.292969 223.875 C 203.410156 223.875 203.503906 223.78125 203.503906 223.664062 Z M 203.503906 223.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.585938 223.324219 C 203.585938 223.207031 203.492188 223.113281 203.375 223.113281 C 203.257812 223.113281 203.164062 223.207031 203.164062 223.324219 C 203.164062 223.441406 203.257812 223.535156 203.375 223.535156 C 203.492188 223.535156 203.585938 223.441406 203.585938 223.324219 Z M 203.585938 223.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.367188 225.492188 C 202.367188 225.375 202.273438 225.28125 202.15625 225.28125 C 202.039062 225.28125 201.945312 225.375 201.945312 225.492188 C 201.945312 225.609375 202.039062 225.703125 202.15625 225.703125 C 202.273438 225.703125 202.367188 225.609375 202.367188 225.492188 Z M 202.367188 225.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.78125 222.277344 C 204.78125 222.160156 204.6875 222.066406 204.570312 222.066406 C 204.453125 222.066406 204.359375 222.160156 204.359375 222.277344 C 204.359375 222.394531 204.453125 222.488281 204.570312 222.488281 C 204.6875 222.488281 204.78125 222.394531 204.78125 222.277344 Z M 204.78125 222.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.53125 220.84375 C 206.53125 220.726562 206.4375 220.632812 206.320312 220.632812 C 206.203125 220.632812 206.109375 220.726562 206.109375 220.84375 C 206.109375 220.960938 206.203125 221.054688 206.320312 221.054688 C 206.4375 221.054688 206.53125 220.960938 206.53125 220.84375 Z M 206.53125 220.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.890625 219.785156 C 209.890625 219.667969 209.796875 219.574219 209.679688 219.574219 C 209.5625 219.574219 209.46875 219.667969 209.46875 219.785156 C 209.46875 219.902344 209.5625 219.996094 209.679688 219.996094 C 209.796875 219.996094 209.890625 219.902344 209.890625 219.785156 Z M 209.890625 219.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.824219 218.242188 C 208.824219 218.125 208.730469 218.03125 208.613281 218.03125 C 208.496094 218.03125 208.402344 218.125 208.402344 218.242188 C 208.402344 218.359375 208.496094 218.453125 208.613281 218.453125 C 208.730469 218.453125 208.824219 218.359375 208.824219 218.242188 Z M 208.824219 218.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.113281 214.222656 C 210.113281 214.105469 210.019531 214.011719 209.902344 214.011719 C 209.785156 214.011719 209.691406 214.105469 209.691406 214.222656 C 209.691406 214.339844 209.785156 214.433594 209.902344 214.433594 C 210.019531 214.433594 210.113281 214.339844 210.113281 214.222656 Z M 210.113281 214.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.5 213.925781 C 206.5 213.808594 206.40625 213.714844 206.289062 213.714844 C 206.171875 213.714844 206.078125 213.808594 206.078125 213.925781 C 206.078125 214.042969 206.171875 214.136719 206.289062 214.136719 C 206.40625 214.136719 206.5 214.042969 206.5 213.925781 Z M 206.5 213.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.375 213.019531 C 210.375 212.902344 210.28125 212.808594 210.164062 212.808594 C 210.046875 212.808594 209.953125 212.902344 209.953125 213.019531 C 209.953125 213.136719 210.046875 213.230469 210.164062 213.230469 C 210.28125 213.230469 210.375 213.136719 210.375 213.019531 Z M 210.375 213.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.316406 214.832031 C 209.316406 214.714844 209.222656 214.621094 209.105469 214.621094 C 208.988281 214.621094 208.894531 214.714844 208.894531 214.832031 C 208.894531 214.949219 208.988281 215.042969 209.105469 215.042969 C 209.222656 215.042969 209.316406 214.949219 209.316406 214.832031 Z M 209.316406 214.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.707031 212.558594 C 208.707031 212.441406 208.613281 212.347656 208.496094 212.347656 C 208.378906 212.347656 208.285156 212.441406 208.285156 212.558594 C 208.285156 212.675781 208.378906 212.769531 208.496094 212.769531 C 208.613281 212.769531 208.707031 212.675781 208.707031 212.558594 Z M 208.707031 212.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.195312 215.261719 C 210.195312 215.144531 210.101562 215.050781 209.984375 215.050781 C 209.867188 215.050781 209.773438 215.144531 209.773438 215.261719 C 209.773438 215.378906 209.867188 215.472656 209.984375 215.472656 C 210.101562 215.472656 210.195312 215.378906 210.195312 215.261719 Z M 210.195312 215.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.453125 216.800781 C 209.453125 216.683594 209.359375 216.589844 209.242188 216.589844 C 209.125 216.589844 209.03125 216.683594 209.03125 216.800781 C 209.03125 216.917969 209.125 217.011719 209.242188 217.011719 C 209.359375 217.011719 209.453125 216.917969 209.453125 216.800781 Z M 209.453125 216.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.046875 216.804688 C 212.046875 216.6875 211.953125 216.59375 211.835938 216.59375 C 211.71875 216.59375 211.625 216.6875 211.625 216.804688 C 211.625 216.921875 211.71875 217.015625 211.835938 217.015625 C 211.953125 217.015625 212.046875 216.921875 212.046875 216.804688 Z M 212.046875 216.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.609375 217.945312 C 211.609375 217.828125 211.515625 217.734375 211.398438 217.734375 C 211.28125 217.734375 211.1875 217.828125 211.1875 217.945312 C 211.1875 218.0625 211.28125 218.15625 211.398438 218.15625 C 211.515625 218.15625 211.609375 218.0625 211.609375 217.945312 Z M 211.609375 217.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.5 220.96875 C 205.5 220.851562 205.40625 220.757812 205.289062 220.757812 C 205.171875 220.757812 205.078125 220.851562 205.078125 220.96875 C 205.078125 221.085938 205.171875 221.179688 205.289062 221.179688 C 205.40625 221.179688 205.5 221.085938 205.5 220.96875 Z M 205.5 220.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.769531 218.566406 C 205.769531 218.449219 205.675781 218.355469 205.558594 218.355469 C 205.441406 218.355469 205.347656 218.449219 205.347656 218.566406 C 205.347656 218.683594 205.441406 218.777344 205.558594 218.777344 C 205.675781 218.777344 205.769531 218.683594 205.769531 218.566406 Z M 205.769531 218.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.53125 221.089844 C 208.53125 220.972656 208.4375 220.878906 208.320312 220.878906 C 208.203125 220.878906 208.109375 220.972656 208.109375 221.089844 C 208.109375 221.207031 208.203125 221.300781 208.320312 221.300781 C 208.4375 221.300781 208.53125 221.207031 208.53125 221.089844 Z M 208.53125 221.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.875 220.300781 C 206.875 220.183594 206.78125 220.089844 206.664062 220.089844 C 206.546875 220.089844 206.453125 220.183594 206.453125 220.300781 C 206.453125 220.417969 206.546875 220.511719 206.664062 220.511719 C 206.78125 220.511719 206.875 220.417969 206.875 220.300781 Z M 206.875 220.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.039062 221.210938 C 204.039062 221.09375 203.945312 221 203.828125 221 C 203.710938 221 203.617188 221.09375 203.617188 221.210938 C 203.617188 221.328125 203.710938 221.421875 203.828125 221.421875 C 203.945312 221.421875 204.039062 221.328125 204.039062 221.210938 Z M 204.039062 221.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.417969 218.25 C 202.417969 218.132812 202.324219 218.039062 202.207031 218.039062 C 202.089844 218.039062 201.996094 218.132812 201.996094 218.25 C 201.996094 218.367188 202.089844 218.460938 202.207031 218.460938 C 202.324219 218.460938 202.417969 218.367188 202.417969 218.25 Z M 202.417969 218.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.886719 214.328125 C 204.886719 214.210938 204.792969 214.117188 204.675781 214.117188 C 204.558594 214.117188 204.464844 214.210938 204.464844 214.328125 C 204.464844 214.445312 204.558594 214.539062 204.675781 214.539062 C 204.792969 214.539062 204.886719 214.445312 204.886719 214.328125 Z M 204.886719 214.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.960938 217.394531 C 203.960938 217.277344 203.867188 217.183594 203.75 217.183594 C 203.632812 217.183594 203.539062 217.277344 203.539062 217.394531 C 203.539062 217.511719 203.632812 217.605469 203.75 217.605469 C 203.867188 217.605469 203.960938 217.511719 203.960938 217.394531 Z M 203.960938 217.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.726562 214.605469 C 202.726562 214.488281 202.632812 214.394531 202.515625 214.394531 C 202.398438 214.394531 202.304688 214.488281 202.304688 214.605469 C 202.304688 214.722656 202.398438 214.816406 202.515625 214.816406 C 202.632812 214.816406 202.726562 214.722656 202.726562 214.605469 Z M 202.726562 214.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.046875 213.207031 C 201.046875 213.089844 200.953125 212.996094 200.835938 212.996094 C 200.71875 212.996094 200.625 213.089844 200.625 213.207031 C 200.625 213.324219 200.71875 213.417969 200.835938 213.417969 C 200.953125 213.417969 201.046875 213.324219 201.046875 213.207031 Z M 201.046875 213.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.347656 213.261719 C 202.347656 213.144531 202.253906 213.050781 202.136719 213.050781 C 202.019531 213.050781 201.925781 213.144531 201.925781 213.261719 C 201.925781 213.378906 202.019531 213.472656 202.136719 213.472656 C 202.253906 213.472656 202.347656 213.378906 202.347656 213.261719 Z M 202.347656 213.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.386719 211.191406 C 205.386719 211.074219 205.292969 210.980469 205.175781 210.980469 C 205.058594 210.980469 204.964844 211.074219 204.964844 211.191406 C 204.964844 211.308594 205.058594 211.402344 205.175781 211.402344 C 205.292969 211.402344 205.386719 211.308594 205.386719 211.191406 Z M 205.386719 211.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.410156 209.878906 C 204.410156 209.761719 204.316406 209.667969 204.199219 209.667969 C 204.082031 209.667969 203.988281 209.761719 203.988281 209.878906 C 203.988281 209.996094 204.082031 210.089844 204.199219 210.089844 C 204.316406 210.089844 204.410156 209.996094 204.410156 209.878906 Z M 204.410156 209.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.625 212.074219 C 205.625 211.957031 205.53125 211.863281 205.414062 211.863281 C 205.296875 211.863281 205.203125 211.957031 205.203125 212.074219 C 205.203125 212.191406 205.296875 212.285156 205.414062 212.285156 C 205.53125 212.285156 205.625 212.191406 205.625 212.074219 Z M 205.625 212.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.535156 209.433594 C 207.535156 209.316406 207.441406 209.222656 207.324219 209.222656 C 207.207031 209.222656 207.113281 209.316406 207.113281 209.433594 C 207.113281 209.550781 207.207031 209.644531 207.324219 209.644531 C 207.441406 209.644531 207.535156 209.550781 207.535156 209.433594 Z M 207.535156 209.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.628906 209.351562 C 208.628906 209.234375 208.535156 209.140625 208.417969 209.140625 C 208.300781 209.140625 208.207031 209.234375 208.207031 209.351562 C 208.207031 209.46875 208.300781 209.5625 208.417969 209.5625 C 208.535156 209.5625 208.628906 209.46875 208.628906 209.351562 Z M 208.628906 209.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.933594 212.84375 C 206.933594 212.726562 206.839844 212.632812 206.722656 212.632812 C 206.605469 212.632812 206.511719 212.726562 206.511719 212.84375 C 206.511719 212.960938 206.605469 213.054688 206.722656 213.054688 C 206.839844 213.054688 206.933594 212.960938 206.933594 212.84375 Z M 206.933594 212.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.90625 211.851562 C 206.90625 211.734375 206.8125 211.640625 206.695312 211.640625 C 206.578125 211.640625 206.484375 211.734375 206.484375 211.851562 C 206.484375 211.96875 206.578125 212.0625 206.695312 212.0625 C 206.8125 212.0625 206.90625 211.96875 206.90625 211.851562 Z M 206.90625 211.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.078125 210.621094 C 205.078125 210.503906 204.984375 210.410156 204.867188 210.410156 C 204.75 210.410156 204.65625 210.503906 204.65625 210.621094 C 204.65625 210.738281 204.75 210.832031 204.867188 210.832031 C 204.984375 210.832031 205.078125 210.738281 205.078125 210.621094 Z M 205.078125 210.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.214844 214.136719 C 204.214844 214.019531 204.121094 213.925781 204.003906 213.925781 C 203.886719 213.925781 203.792969 214.019531 203.792969 214.136719 C 203.792969 214.253906 203.886719 214.347656 204.003906 214.347656 C 204.121094 214.347656 204.214844 214.253906 204.214844 214.136719 Z M 204.214844 214.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.667969 213.800781 C 204.667969 213.683594 204.574219 213.589844 204.457031 213.589844 C 204.339844 213.589844 204.246094 213.683594 204.246094 213.800781 C 204.246094 213.917969 204.339844 214.011719 204.457031 214.011719 C 204.574219 214.011719 204.667969 213.917969 204.667969 213.800781 Z M 204.667969 213.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.546875 216.144531 C 207.546875 216.027344 207.453125 215.933594 207.335938 215.933594 C 207.21875 215.933594 207.125 216.027344 207.125 216.144531 C 207.125 216.261719 207.21875 216.355469 207.335938 216.355469 C 207.453125 216.355469 207.546875 216.261719 207.546875 216.144531 Z M 207.546875 216.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.921875 213.152344 C 209.921875 213.035156 209.828125 212.941406 209.710938 212.941406 C 209.59375 212.941406 209.5 213.035156 209.5 213.152344 C 209.5 213.269531 209.59375 213.363281 209.710938 213.363281 C 209.828125 213.363281 209.921875 213.269531 209.921875 213.152344 Z M 209.921875 213.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.980469 215.023438 C 205.980469 214.90625 205.886719 214.8125 205.769531 214.8125 C 205.652344 214.8125 205.558594 214.90625 205.558594 215.023438 C 205.558594 215.140625 205.652344 215.234375 205.769531 215.234375 C 205.886719 215.234375 205.980469 215.140625 205.980469 215.023438 Z M 205.980469 215.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.386719 214.425781 C 205.386719 214.308594 205.292969 214.214844 205.175781 214.214844 C 205.058594 214.214844 204.964844 214.308594 204.964844 214.425781 C 204.964844 214.542969 205.058594 214.636719 205.175781 214.636719 C 205.292969 214.636719 205.386719 214.542969 205.386719 214.425781 Z M 205.386719 214.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.332031 212.640625 C 207.332031 212.523438 207.238281 212.429688 207.121094 212.429688 C 207.003906 212.429688 206.910156 212.523438 206.910156 212.640625 C 206.910156 212.757812 207.003906 212.851562 207.121094 212.851562 C 207.238281 212.851562 207.332031 212.757812 207.332031 212.640625 Z M 207.332031 212.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.9375 216.628906 C 211.9375 216.511719 211.84375 216.417969 211.726562 216.417969 C 211.609375 216.417969 211.515625 216.511719 211.515625 216.628906 C 211.515625 216.746094 211.609375 216.839844 211.726562 216.839844 C 211.84375 216.839844 211.9375 216.746094 211.9375 216.628906 Z M 211.9375 216.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.53125 221.9375 C 211.53125 221.820312 211.4375 221.726562 211.320312 221.726562 C 211.203125 221.726562 211.109375 221.820312 211.109375 221.9375 C 211.109375 222.054688 211.203125 222.148438 211.320312 222.148438 C 211.4375 222.148438 211.53125 222.054688 211.53125 221.9375 Z M 211.53125 221.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.039062 225.570312 C 211.039062 225.453125 210.945312 225.359375 210.828125 225.359375 C 210.710938 225.359375 210.617188 225.453125 210.617188 225.570312 C 210.617188 225.6875 210.710938 225.78125 210.828125 225.78125 C 210.945312 225.78125 211.039062 225.6875 211.039062 225.570312 Z M 211.039062 225.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.878906 226.355469 C 211.878906 226.238281 211.785156 226.144531 211.667969 226.144531 C 211.550781 226.144531 211.457031 226.238281 211.457031 226.355469 C 211.457031 226.472656 211.550781 226.566406 211.667969 226.566406 C 211.785156 226.566406 211.878906 226.472656 211.878906 226.355469 Z M 211.878906 226.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.324219 221.074219 C 211.324219 220.957031 211.230469 220.863281 211.113281 220.863281 C 210.996094 220.863281 210.902344 220.957031 210.902344 221.074219 C 210.902344 221.191406 210.996094 221.285156 211.113281 221.285156 C 211.230469 221.285156 211.324219 221.191406 211.324219 221.074219 Z M 211.324219 221.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.492188 222.703125 C 216.492188 222.585938 216.398438 222.492188 216.28125 222.492188 C 216.164062 222.492188 216.070312 222.585938 216.070312 222.703125 C 216.070312 222.820312 216.164062 222.914062 216.28125 222.914062 C 216.398438 222.914062 216.492188 222.820312 216.492188 222.703125 Z M 216.492188 222.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.128906 221.945312 C 217.128906 221.828125 217.035156 221.734375 216.917969 221.734375 C 216.800781 221.734375 216.707031 221.828125 216.707031 221.945312 C 216.707031 222.0625 216.800781 222.15625 216.917969 222.15625 C 217.035156 222.15625 217.128906 222.0625 217.128906 221.945312 Z M 217.128906 221.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.425781 223.496094 C 216.425781 223.378906 216.332031 223.285156 216.214844 223.285156 C 216.097656 223.285156 216.003906 223.378906 216.003906 223.496094 C 216.003906 223.613281 216.097656 223.707031 216.214844 223.707031 C 216.332031 223.707031 216.425781 223.613281 216.425781 223.496094 Z M 216.425781 223.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.707031 217.90625 C 213.707031 217.789062 213.613281 217.695312 213.496094 217.695312 C 213.378906 217.695312 213.285156 217.789062 213.285156 217.90625 C 213.285156 218.023438 213.378906 218.117188 213.496094 218.117188 C 213.613281 218.117188 213.707031 218.023438 213.707031 217.90625 Z M 213.707031 217.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.347656 218.148438 C 212.347656 218.03125 212.253906 217.9375 212.136719 217.9375 C 212.019531 217.9375 211.925781 218.03125 211.925781 218.148438 C 211.925781 218.265625 212.019531 218.359375 212.136719 218.359375 C 212.253906 218.359375 212.347656 218.265625 212.347656 218.148438 Z M 212.347656 218.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.078125 217.328125 C 213.078125 217.210938 212.984375 217.117188 212.867188 217.117188 C 212.75 217.117188 212.65625 217.210938 212.65625 217.328125 C 212.65625 217.445312 212.75 217.539062 212.867188 217.539062 C 212.984375 217.539062 213.078125 217.445312 213.078125 217.328125 Z M 213.078125 217.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.457031 214.511719 C 210.457031 214.394531 210.363281 214.300781 210.246094 214.300781 C 210.128906 214.300781 210.035156 214.394531 210.035156 214.511719 C 210.035156 214.628906 210.128906 214.722656 210.246094 214.722656 C 210.363281 214.722656 210.457031 214.628906 210.457031 214.511719 Z M 210.457031 214.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.542969 213.785156 C 209.542969 213.667969 209.449219 213.574219 209.332031 213.574219 C 209.214844 213.574219 209.121094 213.667969 209.121094 213.785156 C 209.121094 213.902344 209.214844 213.996094 209.332031 213.996094 C 209.449219 213.996094 209.542969 213.902344 209.542969 213.785156 Z M 209.542969 213.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.109375 213.550781 C 211.109375 213.433594 211.015625 213.339844 210.898438 213.339844 C 210.78125 213.339844 210.6875 213.433594 210.6875 213.550781 C 210.6875 213.667969 210.78125 213.761719 210.898438 213.761719 C 211.015625 213.761719 211.109375 213.667969 211.109375 213.550781 Z M 211.109375 213.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.171875 213.328125 C 208.171875 213.210938 208.078125 213.117188 207.960938 213.117188 C 207.84375 213.117188 207.75 213.210938 207.75 213.328125 C 207.75 213.445312 207.84375 213.539062 207.960938 213.539062 C 208.078125 213.539062 208.171875 213.445312 208.171875 213.328125 Z M 208.171875 213.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.699219 211.746094 C 208.699219 211.628906 208.605469 211.535156 208.488281 211.535156 C 208.371094 211.535156 208.277344 211.628906 208.277344 211.746094 C 208.277344 211.863281 208.371094 211.957031 208.488281 211.957031 C 208.605469 211.957031 208.699219 211.863281 208.699219 211.746094 Z M 208.699219 211.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.773438 210.113281 C 209.773438 209.996094 209.679688 209.902344 209.5625 209.902344 C 209.445312 209.902344 209.351562 209.996094 209.351562 210.113281 C 209.351562 210.230469 209.445312 210.324219 209.5625 210.324219 C 209.679688 210.324219 209.773438 210.230469 209.773438 210.113281 Z M 209.773438 210.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.542969 211.832031 C 209.542969 211.714844 209.449219 211.621094 209.332031 211.621094 C 209.214844 211.621094 209.121094 211.714844 209.121094 211.832031 C 209.121094 211.949219 209.214844 212.042969 209.332031 212.042969 C 209.449219 212.042969 209.542969 211.949219 209.542969 211.832031 Z M 209.542969 211.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.15625 212.972656 C 209.15625 212.855469 209.0625 212.761719 208.945312 212.761719 C 208.828125 212.761719 208.734375 212.855469 208.734375 212.972656 C 208.734375 213.089844 208.828125 213.183594 208.945312 213.183594 C 209.0625 213.183594 209.15625 213.089844 209.15625 212.972656 Z M 209.15625 212.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.410156 210.855469 C 209.410156 210.738281 209.316406 210.644531 209.199219 210.644531 C 209.082031 210.644531 208.988281 210.738281 208.988281 210.855469 C 208.988281 210.972656 209.082031 211.066406 209.199219 211.066406 C 209.316406 211.066406 209.410156 210.972656 209.410156 210.855469 Z M 209.410156 210.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.074219 207.488281 C 209.074219 207.371094 208.980469 207.277344 208.863281 207.277344 C 208.746094 207.277344 208.652344 207.371094 208.652344 207.488281 C 208.652344 207.605469 208.746094 207.699219 208.863281 207.699219 C 208.980469 207.699219 209.074219 207.605469 209.074219 207.488281 Z M 209.074219 207.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.113281 206.617188 C 206.113281 206.5 206.019531 206.40625 205.902344 206.40625 C 205.785156 206.40625 205.691406 206.5 205.691406 206.617188 C 205.691406 206.734375 205.785156 206.828125 205.902344 206.828125 C 206.019531 206.828125 206.113281 206.734375 206.113281 206.617188 Z M 206.113281 206.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.941406 203.183594 C 207.941406 203.066406 207.847656 202.972656 207.730469 202.972656 C 207.613281 202.972656 207.519531 203.066406 207.519531 203.183594 C 207.519531 203.300781 207.613281 203.394531 207.730469 203.394531 C 207.847656 203.394531 207.941406 203.300781 207.941406 203.183594 Z M 207.941406 203.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.703125 205.859375 C 206.703125 205.742188 206.609375 205.648438 206.492188 205.648438 C 206.375 205.648438 206.28125 205.742188 206.28125 205.859375 C 206.28125 205.976562 206.375 206.070312 206.492188 206.070312 C 206.609375 206.070312 206.703125 205.976562 206.703125 205.859375 Z M 206.703125 205.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.152344 203.949219 C 205.152344 203.832031 205.058594 203.738281 204.941406 203.738281 C 204.824219 203.738281 204.730469 203.832031 204.730469 203.949219 C 204.730469 204.066406 204.824219 204.160156 204.941406 204.160156 C 205.058594 204.160156 205.152344 204.066406 205.152344 203.949219 Z M 205.152344 203.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.578125 202.328125 C 203.578125 202.210938 203.484375 202.117188 203.367188 202.117188 C 203.25 202.117188 203.15625 202.210938 203.15625 202.328125 C 203.15625 202.445312 203.25 202.539062 203.367188 202.539062 C 203.484375 202.539062 203.578125 202.445312 203.578125 202.328125 Z M 203.578125 202.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.601562 199.625 C 203.601562 199.507812 203.507812 199.414062 203.390625 199.414062 C 203.273438 199.414062 203.179688 199.507812 203.179688 199.625 C 203.179688 199.742188 203.273438 199.835938 203.390625 199.835938 C 203.507812 199.835938 203.601562 199.742188 203.601562 199.625 Z M 203.601562 199.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.554688 200.609375 C 203.554688 200.492188 203.460938 200.398438 203.34375 200.398438 C 203.226562 200.398438 203.132812 200.492188 203.132812 200.609375 C 203.132812 200.726562 203.226562 200.820312 203.34375 200.820312 C 203.460938 200.820312 203.554688 200.726562 203.554688 200.609375 Z M 203.554688 200.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.421875 203.574219 C 200.421875 203.457031 200.328125 203.363281 200.210938 203.363281 C 200.09375 203.363281 200 203.457031 200 203.574219 C 200 203.691406 200.09375 203.785156 200.210938 203.785156 C 200.328125 203.785156 200.421875 203.691406 200.421875 203.574219 Z M 200.421875 203.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.332031 206.238281 C 199.332031 206.121094 199.238281 206.027344 199.121094 206.027344 C 199.003906 206.027344 198.910156 206.121094 198.910156 206.238281 C 198.910156 206.355469 199.003906 206.449219 199.121094 206.449219 C 199.238281 206.449219 199.332031 206.355469 199.332031 206.238281 Z M 199.332031 206.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.230469 207.828125 C 199.230469 207.710938 199.136719 207.617188 199.019531 207.617188 C 198.902344 207.617188 198.808594 207.710938 198.808594 207.828125 C 198.808594 207.945312 198.902344 208.039062 199.019531 208.039062 C 199.136719 208.039062 199.230469 207.945312 199.230469 207.828125 Z M 199.230469 207.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.285156 203.589844 C 196.285156 203.472656 196.191406 203.378906 196.074219 203.378906 C 195.957031 203.378906 195.863281 203.472656 195.863281 203.589844 C 195.863281 203.707031 195.957031 203.800781 196.074219 203.800781 C 196.191406 203.800781 196.285156 203.707031 196.285156 203.589844 Z M 196.285156 203.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.339844 201.640625 C 196.339844 201.523438 196.246094 201.429688 196.128906 201.429688 C 196.011719 201.429688 195.917969 201.523438 195.917969 201.640625 C 195.917969 201.757812 196.011719 201.851562 196.128906 201.851562 C 196.246094 201.851562 196.339844 201.757812 196.339844 201.640625 Z M 196.339844 201.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.601562 200.46875 C 193.601562 200.351562 193.507812 200.257812 193.390625 200.257812 C 193.273438 200.257812 193.179688 200.351562 193.179688 200.46875 C 193.179688 200.585938 193.273438 200.679688 193.390625 200.679688 C 193.507812 200.679688 193.601562 200.585938 193.601562 200.46875 Z M 193.601562 200.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.6875 203.109375 C 194.6875 202.992188 194.59375 202.898438 194.476562 202.898438 C 194.359375 202.898438 194.265625 202.992188 194.265625 203.109375 C 194.265625 203.226562 194.359375 203.320312 194.476562 203.320312 C 194.59375 203.320312 194.6875 203.226562 194.6875 203.109375 Z M 194.6875 203.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.472656 203.578125 C 193.472656 203.460938 193.378906 203.367188 193.261719 203.367188 C 193.144531 203.367188 193.050781 203.460938 193.050781 203.578125 C 193.050781 203.695312 193.144531 203.789062 193.261719 203.789062 C 193.378906 203.789062 193.472656 203.695312 193.472656 203.578125 Z M 193.472656 203.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.636719 204.234375 C 193.636719 204.117188 193.542969 204.023438 193.425781 204.023438 C 193.308594 204.023438 193.214844 204.117188 193.214844 204.234375 C 193.214844 204.351562 193.308594 204.445312 193.425781 204.445312 C 193.542969 204.445312 193.636719 204.351562 193.636719 204.234375 Z M 193.636719 204.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.347656 204.277344 C 194.347656 204.160156 194.253906 204.066406 194.136719 204.066406 C 194.019531 204.066406 193.925781 204.160156 193.925781 204.277344 C 193.925781 204.394531 194.019531 204.488281 194.136719 204.488281 C 194.253906 204.488281 194.347656 204.394531 194.347656 204.277344 Z M 194.347656 204.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.074219 207.421875 C 196.074219 207.304688 195.980469 207.210938 195.863281 207.210938 C 195.746094 207.210938 195.652344 207.304688 195.652344 207.421875 C 195.652344 207.539062 195.746094 207.632812 195.863281 207.632812 C 195.980469 207.632812 196.074219 207.539062 196.074219 207.421875 Z M 196.074219 207.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.742188 207.535156 C 193.742188 207.417969 193.648438 207.324219 193.53125 207.324219 C 193.414062 207.324219 193.320312 207.417969 193.320312 207.535156 C 193.320312 207.652344 193.414062 207.746094 193.53125 207.746094 C 193.648438 207.746094 193.742188 207.652344 193.742188 207.535156 Z M 193.742188 207.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.503906 209.332031 C 194.503906 209.214844 194.410156 209.121094 194.292969 209.121094 C 194.175781 209.121094 194.082031 209.214844 194.082031 209.332031 C 194.082031 209.449219 194.175781 209.542969 194.292969 209.542969 C 194.410156 209.542969 194.503906 209.449219 194.503906 209.332031 Z M 194.503906 209.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.058594 208.277344 C 195.058594 208.160156 194.964844 208.066406 194.847656 208.066406 C 194.730469 208.066406 194.636719 208.160156 194.636719 208.277344 C 194.636719 208.394531 194.730469 208.488281 194.847656 208.488281 C 194.964844 208.488281 195.058594 208.394531 195.058594 208.277344 Z M 195.058594 208.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.257812 209.6875 C 188.257812 209.570312 188.164062 209.476562 188.046875 209.476562 C 187.929688 209.476562 187.835938 209.570312 187.835938 209.6875 C 187.835938 209.804688 187.929688 209.898438 188.046875 209.898438 C 188.164062 209.898438 188.257812 209.804688 188.257812 209.6875 Z M 188.257812 209.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.332031 206.019531 C 188.332031 205.902344 188.238281 205.808594 188.121094 205.808594 C 188.003906 205.808594 187.910156 205.902344 187.910156 206.019531 C 187.910156 206.136719 188.003906 206.230469 188.121094 206.230469 C 188.238281 206.230469 188.332031 206.136719 188.332031 206.019531 Z M 188.332031 206.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.785156 208.9375 C 190.785156 208.820312 190.691406 208.726562 190.574219 208.726562 C 190.457031 208.726562 190.363281 208.820312 190.363281 208.9375 C 190.363281 209.054688 190.457031 209.148438 190.574219 209.148438 C 190.691406 209.148438 190.785156 209.054688 190.785156 208.9375 Z M 190.785156 208.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.957031 206.5625 C 189.957031 206.445312 189.863281 206.351562 189.746094 206.351562 C 189.628906 206.351562 189.535156 206.445312 189.535156 206.5625 C 189.535156 206.679688 189.628906 206.773438 189.746094 206.773438 C 189.863281 206.773438 189.957031 206.679688 189.957031 206.5625 Z M 189.957031 206.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.1875 205.238281 C 194.1875 205.121094 194.09375 205.027344 193.976562 205.027344 C 193.859375 205.027344 193.765625 205.121094 193.765625 205.238281 C 193.765625 205.355469 193.859375 205.449219 193.976562 205.449219 C 194.09375 205.449219 194.1875 205.355469 194.1875 205.238281 Z M 194.1875 205.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.320312 205.269531 C 193.320312 205.152344 193.226562 205.058594 193.109375 205.058594 C 192.992188 205.058594 192.898438 205.152344 192.898438 205.269531 C 192.898438 205.386719 192.992188 205.480469 193.109375 205.480469 C 193.226562 205.480469 193.320312 205.386719 193.320312 205.269531 Z M 193.320312 205.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.511719 201.394531 C 191.511719 201.277344 191.417969 201.183594 191.300781 201.183594 C 191.183594 201.183594 191.089844 201.277344 191.089844 201.394531 C 191.089844 201.511719 191.183594 201.605469 191.300781 201.605469 C 191.417969 201.605469 191.511719 201.511719 191.511719 201.394531 Z M 191.511719 201.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.929688 201.570312 C 187.929688 201.453125 187.835938 201.359375 187.71875 201.359375 C 187.601562 201.359375 187.507812 201.453125 187.507812 201.570312 C 187.507812 201.6875 187.601562 201.78125 187.71875 201.78125 C 187.835938 201.78125 187.929688 201.6875 187.929688 201.570312 Z M 187.929688 201.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.546875 199.804688 C 187.546875 199.6875 187.453125 199.59375 187.335938 199.59375 C 187.21875 199.59375 187.125 199.6875 187.125 199.804688 C 187.125 199.921875 187.21875 200.015625 187.335938 200.015625 C 187.453125 200.015625 187.546875 199.921875 187.546875 199.804688 Z M 187.546875 199.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.542969 196.398438 C 186.542969 196.28125 186.449219 196.1875 186.332031 196.1875 C 186.214844 196.1875 186.121094 196.28125 186.121094 196.398438 C 186.121094 196.515625 186.214844 196.609375 186.332031 196.609375 C 186.449219 196.609375 186.542969 196.515625 186.542969 196.398438 Z M 186.542969 196.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.203125 195.675781 C 185.203125 195.558594 185.109375 195.464844 184.992188 195.464844 C 184.875 195.464844 184.78125 195.558594 184.78125 195.675781 C 184.78125 195.792969 184.875 195.886719 184.992188 195.886719 C 185.109375 195.886719 185.203125 195.792969 185.203125 195.675781 Z M 185.203125 195.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.527344 192.992188 C 183.527344 192.875 183.433594 192.78125 183.316406 192.78125 C 183.199219 192.78125 183.105469 192.875 183.105469 192.992188 C 183.105469 193.109375 183.199219 193.203125 183.316406 193.203125 C 183.433594 193.203125 183.527344 193.109375 183.527344 192.992188 Z M 183.527344 192.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.359375 189.363281 C 186.359375 189.246094 186.265625 189.152344 186.148438 189.152344 C 186.03125 189.152344 185.9375 189.246094 185.9375 189.363281 C 185.9375 189.480469 186.03125 189.574219 186.148438 189.574219 C 186.265625 189.574219 186.359375 189.480469 186.359375 189.363281 Z M 186.359375 189.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.65625 190.011719 C 185.65625 189.894531 185.5625 189.800781 185.445312 189.800781 C 185.328125 189.800781 185.234375 189.894531 185.234375 190.011719 C 185.234375 190.128906 185.328125 190.222656 185.445312 190.222656 C 185.5625 190.222656 185.65625 190.128906 185.65625 190.011719 Z M 185.65625 190.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 179.390625 190.804688 C 179.390625 190.6875 179.296875 190.59375 179.179688 190.59375 C 179.0625 190.59375 178.96875 190.6875 178.96875 190.804688 C 178.96875 190.921875 179.0625 191.015625 179.179688 191.015625 C 179.296875 191.015625 179.390625 190.921875 179.390625 190.804688 Z M 179.390625 190.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.390625 192.945312 C 182.390625 192.828125 182.296875 192.734375 182.179688 192.734375 C 182.0625 192.734375 181.96875 192.828125 181.96875 192.945312 C 181.96875 193.0625 182.0625 193.15625 182.179688 193.15625 C 182.296875 193.15625 182.390625 193.0625 182.390625 192.945312 Z M 182.390625 192.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.699219 193.378906 C 183.699219 193.261719 183.605469 193.167969 183.488281 193.167969 C 183.371094 193.167969 183.277344 193.261719 183.277344 193.378906 C 183.277344 193.496094 183.371094 193.589844 183.488281 193.589844 C 183.605469 193.589844 183.699219 193.496094 183.699219 193.378906 Z M 183.699219 193.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.671875 191.984375 C 181.671875 191.867188 181.578125 191.773438 181.460938 191.773438 C 181.34375 191.773438 181.25 191.867188 181.25 191.984375 C 181.25 192.101562 181.34375 192.195312 181.460938 192.195312 C 181.578125 192.195312 181.671875 192.101562 181.671875 191.984375 Z M 181.671875 191.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 180.714844 194.804688 C 180.714844 194.6875 180.621094 194.59375 180.503906 194.59375 C 180.386719 194.59375 180.292969 194.6875 180.292969 194.804688 C 180.292969 194.921875 180.386719 195.015625 180.503906 195.015625 C 180.621094 195.015625 180.714844 194.921875 180.714844 194.804688 Z M 180.714844 194.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.226562 193.898438 C 185.226562 193.78125 185.132812 193.6875 185.015625 193.6875 C 184.898438 193.6875 184.804688 193.78125 184.804688 193.898438 C 184.804688 194.015625 184.898438 194.109375 185.015625 194.109375 C 185.132812 194.109375 185.226562 194.015625 185.226562 193.898438 Z M 185.226562 193.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.066406 191.507812 C 183.066406 191.390625 182.972656 191.296875 182.855469 191.296875 C 182.738281 191.296875 182.644531 191.390625 182.644531 191.507812 C 182.644531 191.625 182.738281 191.71875 182.855469 191.71875 C 182.972656 191.71875 183.066406 191.625 183.066406 191.507812 Z M 183.066406 191.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.324219 189.738281 C 181.324219 189.621094 181.230469 189.527344 181.113281 189.527344 C 180.996094 189.527344 180.902344 189.621094 180.902344 189.738281 C 180.902344 189.855469 180.996094 189.949219 181.113281 189.949219 C 181.230469 189.949219 181.324219 189.855469 181.324219 189.738281 Z M 181.324219 189.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.019531 191.183594 C 181.019531 191.066406 180.925781 190.972656 180.808594 190.972656 C 180.691406 190.972656 180.597656 191.066406 180.597656 191.183594 C 180.597656 191.300781 180.691406 191.394531 180.808594 191.394531 C 180.925781 191.394531 181.019531 191.300781 181.019531 191.183594 Z M 181.019531 191.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.253906 195.433594 C 183.253906 195.316406 183.160156 195.222656 183.042969 195.222656 C 182.925781 195.222656 182.832031 195.316406 182.832031 195.433594 C 182.832031 195.550781 182.925781 195.644531 183.042969 195.644531 C 183.160156 195.644531 183.253906 195.550781 183.253906 195.433594 Z M 183.253906 195.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.179688 191.082031 C 184.179688 190.964844 184.085938 190.871094 183.96875 190.871094 C 183.851562 190.871094 183.757812 190.964844 183.757812 191.082031 C 183.757812 191.199219 183.851562 191.292969 183.96875 191.292969 C 184.085938 191.292969 184.179688 191.199219 184.179688 191.082031 Z M 184.179688 191.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.605469 191.15625 C 182.605469 191.039062 182.511719 190.945312 182.394531 190.945312 C 182.277344 190.945312 182.183594 191.039062 182.183594 191.15625 C 182.183594 191.273438 182.277344 191.367188 182.394531 191.367188 C 182.511719 191.367188 182.605469 191.273438 182.605469 191.15625 Z M 182.605469 191.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.789062 192.972656 C 187.789062 192.855469 187.695312 192.761719 187.578125 192.761719 C 187.460938 192.761719 187.367188 192.855469 187.367188 192.972656 C 187.367188 193.089844 187.460938 193.183594 187.578125 193.183594 C 187.695312 193.183594 187.789062 193.089844 187.789062 192.972656 Z M 187.789062 192.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.019531 191.480469 C 189.019531 191.363281 188.925781 191.269531 188.808594 191.269531 C 188.691406 191.269531 188.597656 191.363281 188.597656 191.480469 C 188.597656 191.597656 188.691406 191.691406 188.808594 191.691406 C 188.925781 191.691406 189.019531 191.597656 189.019531 191.480469 Z M 189.019531 191.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.949219 190.03125 C 185.949219 189.914062 185.855469 189.820312 185.738281 189.820312 C 185.621094 189.820312 185.527344 189.914062 185.527344 190.03125 C 185.527344 190.148438 185.621094 190.242188 185.738281 190.242188 C 185.855469 190.242188 185.949219 190.148438 185.949219 190.03125 Z M 185.949219 190.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.960938 192.753906 C 185.960938 192.636719 185.867188 192.542969 185.75 192.542969 C 185.632812 192.542969 185.539062 192.636719 185.539062 192.753906 C 185.539062 192.871094 185.632812 192.964844 185.75 192.964844 C 185.867188 192.964844 185.960938 192.871094 185.960938 192.753906 Z M 185.960938 192.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.492188 194.789062 C 188.492188 194.671875 188.398438 194.578125 188.28125 194.578125 C 188.164062 194.578125 188.070312 194.671875 188.070312 194.789062 C 188.070312 194.90625 188.164062 195 188.28125 195 C 188.398438 195 188.492188 194.90625 188.492188 194.789062 Z M 188.492188 194.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.238281 196.5625 C 190.238281 196.445312 190.144531 196.351562 190.027344 196.351562 C 189.910156 196.351562 189.816406 196.445312 189.816406 196.5625 C 189.816406 196.679688 189.910156 196.773438 190.027344 196.773438 C 190.144531 196.773438 190.238281 196.679688 190.238281 196.5625 Z M 190.238281 196.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.246094 198.050781 C 193.246094 197.933594 193.152344 197.839844 193.035156 197.839844 C 192.917969 197.839844 192.824219 197.933594 192.824219 198.050781 C 192.824219 198.167969 192.917969 198.261719 193.035156 198.261719 C 193.152344 198.261719 193.246094 198.167969 193.246094 198.050781 Z M 193.246094 198.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.664062 198.367188 C 192.664062 198.25 192.570312 198.15625 192.453125 198.15625 C 192.335938 198.15625 192.242188 198.25 192.242188 198.367188 C 192.242188 198.484375 192.335938 198.578125 192.453125 198.578125 C 192.570312 198.578125 192.664062 198.484375 192.664062 198.367188 Z M 192.664062 198.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.054688 199.144531 C 196.054688 199.027344 195.960938 198.933594 195.84375 198.933594 C 195.726562 198.933594 195.632812 199.027344 195.632812 199.144531 C 195.632812 199.261719 195.726562 199.355469 195.84375 199.355469 C 195.960938 199.355469 196.054688 199.261719 196.054688 199.144531 Z M 196.054688 199.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.523438 202.347656 C 200.523438 202.230469 200.429688 202.136719 200.3125 202.136719 C 200.195312 202.136719 200.101562 202.230469 200.101562 202.347656 C 200.101562 202.464844 200.195312 202.558594 200.3125 202.558594 C 200.429688 202.558594 200.523438 202.464844 200.523438 202.347656 Z M 200.523438 202.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.382812 201.632812 C 199.382812 201.515625 199.289062 201.421875 199.171875 201.421875 C 199.054688 201.421875 198.960938 201.515625 198.960938 201.632812 C 198.960938 201.75 199.054688 201.84375 199.171875 201.84375 C 199.289062 201.84375 199.382812 201.75 199.382812 201.632812 Z M 199.382812 201.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.867188 202.046875 C 200.867188 201.929688 200.773438 201.835938 200.65625 201.835938 C 200.539062 201.835938 200.445312 201.929688 200.445312 202.046875 C 200.445312 202.164062 200.539062 202.257812 200.65625 202.257812 C 200.773438 202.257812 200.867188 202.164062 200.867188 202.046875 Z M 200.867188 202.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.425781 201.851562 C 202.425781 201.734375 202.332031 201.640625 202.214844 201.640625 C 202.097656 201.640625 202.003906 201.734375 202.003906 201.851562 C 202.003906 201.96875 202.097656 202.0625 202.214844 202.0625 C 202.332031 202.0625 202.425781 201.96875 202.425781 201.851562 Z M 202.425781 201.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.878906 204.316406 C 202.878906 204.199219 202.785156 204.105469 202.667969 204.105469 C 202.550781 204.105469 202.457031 204.199219 202.457031 204.316406 C 202.457031 204.433594 202.550781 204.527344 202.667969 204.527344 C 202.785156 204.527344 202.878906 204.433594 202.878906 204.316406 Z M 202.878906 204.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.613281 204.195312 C 203.613281 204.078125 203.519531 203.984375 203.402344 203.984375 C 203.285156 203.984375 203.191406 204.078125 203.191406 204.195312 C 203.191406 204.3125 203.285156 204.40625 203.402344 204.40625 C 203.519531 204.40625 203.613281 204.3125 203.613281 204.195312 Z M 203.613281 204.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.640625 202.242188 C 204.640625 202.125 204.546875 202.03125 204.429688 202.03125 C 204.3125 202.03125 204.21875 202.125 204.21875 202.242188 C 204.21875 202.359375 204.3125 202.453125 204.429688 202.453125 C 204.546875 202.453125 204.640625 202.359375 204.640625 202.242188 Z M 204.640625 202.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.160156 198.605469 C 206.160156 198.488281 206.066406 198.394531 205.949219 198.394531 C 205.832031 198.394531 205.738281 198.488281 205.738281 198.605469 C 205.738281 198.722656 205.832031 198.816406 205.949219 198.816406 C 206.066406 198.816406 206.160156 198.722656 206.160156 198.605469 Z M 206.160156 198.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.554688 196.851562 C 204.554688 196.734375 204.460938 196.640625 204.34375 196.640625 C 204.226562 196.640625 204.132812 196.734375 204.132812 196.851562 C 204.132812 196.96875 204.226562 197.0625 204.34375 197.0625 C 204.460938 197.0625 204.554688 196.96875 204.554688 196.851562 Z M 204.554688 196.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.078125 196.9375 C 204.078125 196.820312 203.984375 196.726562 203.867188 196.726562 C 203.75 196.726562 203.65625 196.820312 203.65625 196.9375 C 203.65625 197.054688 203.75 197.148438 203.867188 197.148438 C 203.984375 197.148438 204.078125 197.054688 204.078125 196.9375 Z M 204.078125 196.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.644531 197.933594 C 205.644531 197.816406 205.550781 197.722656 205.433594 197.722656 C 205.316406 197.722656 205.222656 197.816406 205.222656 197.933594 C 205.222656 198.050781 205.316406 198.144531 205.433594 198.144531 C 205.550781 198.144531 205.644531 198.050781 205.644531 197.933594 Z M 205.644531 197.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.203125 197.316406 C 208.203125 197.199219 208.109375 197.105469 207.992188 197.105469 C 207.875 197.105469 207.78125 197.199219 207.78125 197.316406 C 207.78125 197.433594 207.875 197.527344 207.992188 197.527344 C 208.109375 197.527344 208.203125 197.433594 208.203125 197.316406 Z M 208.203125 197.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.851562 196.097656 C 206.851562 195.980469 206.757812 195.886719 206.640625 195.886719 C 206.523438 195.886719 206.429688 195.980469 206.429688 196.097656 C 206.429688 196.214844 206.523438 196.308594 206.640625 196.308594 C 206.757812 196.308594 206.851562 196.214844 206.851562 196.097656 Z M 206.851562 196.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.695312 197.027344 C 205.695312 196.910156 205.601562 196.816406 205.484375 196.816406 C 205.367188 196.816406 205.273438 196.910156 205.273438 197.027344 C 205.273438 197.144531 205.367188 197.238281 205.484375 197.238281 C 205.601562 197.238281 205.695312 197.144531 205.695312 197.027344 Z M 205.695312 197.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.386719 195.386719 C 207.386719 195.269531 207.292969 195.175781 207.175781 195.175781 C 207.058594 195.175781 206.964844 195.269531 206.964844 195.386719 C 206.964844 195.503906 207.058594 195.597656 207.175781 195.597656 C 207.292969 195.597656 207.386719 195.503906 207.386719 195.386719 Z M 207.386719 195.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.355469 191.871094 C 209.355469 191.753906 209.261719 191.660156 209.144531 191.660156 C 209.027344 191.660156 208.933594 191.753906 208.933594 191.871094 C 208.933594 191.988281 209.027344 192.082031 209.144531 192.082031 C 209.261719 192.082031 209.355469 191.988281 209.355469 191.871094 Z M 209.355469 191.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.15625 193.601562 C 207.15625 193.484375 207.0625 193.390625 206.945312 193.390625 C 206.828125 193.390625 206.734375 193.484375 206.734375 193.601562 C 206.734375 193.71875 206.828125 193.8125 206.945312 193.8125 C 207.0625 193.8125 207.15625 193.71875 207.15625 193.601562 Z M 207.15625 193.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.398438 195.75 C 209.398438 195.632812 209.304688 195.539062 209.1875 195.539062 C 209.070312 195.539062 208.976562 195.632812 208.976562 195.75 C 208.976562 195.867188 209.070312 195.960938 209.1875 195.960938 C 209.304688 195.960938 209.398438 195.867188 209.398438 195.75 Z M 209.398438 195.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.121094 191.625 C 209.121094 191.507812 209.027344 191.414062 208.910156 191.414062 C 208.792969 191.414062 208.699219 191.507812 208.699219 191.625 C 208.699219 191.742188 208.792969 191.835938 208.910156 191.835938 C 209.027344 191.835938 209.121094 191.742188 209.121094 191.625 Z M 209.121094 191.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.390625 193.027344 C 208.390625 192.910156 208.296875 192.816406 208.179688 192.816406 C 208.0625 192.816406 207.96875 192.910156 207.96875 193.027344 C 207.96875 193.144531 208.0625 193.238281 208.179688 193.238281 C 208.296875 193.238281 208.390625 193.144531 208.390625 193.027344 Z M 208.390625 193.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.554688 193.292969 C 209.554688 193.175781 209.460938 193.082031 209.34375 193.082031 C 209.226562 193.082031 209.132812 193.175781 209.132812 193.292969 C 209.132812 193.410156 209.226562 193.503906 209.34375 193.503906 C 209.460938 193.503906 209.554688 193.410156 209.554688 193.292969 Z M 209.554688 193.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.734375 192.199219 C 210.734375 192.082031 210.640625 191.988281 210.523438 191.988281 C 210.40625 191.988281 210.3125 192.082031 210.3125 192.199219 C 210.3125 192.316406 210.40625 192.410156 210.523438 192.410156 C 210.640625 192.410156 210.734375 192.316406 210.734375 192.199219 Z M 210.734375 192.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.351562 190 C 213.351562 189.882812 213.257812 189.789062 213.140625 189.789062 C 213.023438 189.789062 212.929688 189.882812 212.929688 190 C 212.929688 190.117188 213.023438 190.210938 213.140625 190.210938 C 213.257812 190.210938 213.351562 190.117188 213.351562 190 Z M 213.351562 190 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.015625 190.085938 C 213.015625 189.96875 212.921875 189.875 212.804688 189.875 C 212.6875 189.875 212.59375 189.96875 212.59375 190.085938 C 212.59375 190.203125 212.6875 190.296875 212.804688 190.296875 C 212.921875 190.296875 213.015625 190.203125 213.015625 190.085938 Z M 213.015625 190.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.820312 186.042969 C 214.820312 185.925781 214.726562 185.832031 214.609375 185.832031 C 214.492188 185.832031 214.398438 185.925781 214.398438 186.042969 C 214.398438 186.160156 214.492188 186.253906 214.609375 186.253906 C 214.726562 186.253906 214.820312 186.160156 214.820312 186.042969 Z M 214.820312 186.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.015625 187.589844 C 211.015625 187.472656 210.921875 187.378906 210.804688 187.378906 C 210.6875 187.378906 210.59375 187.472656 210.59375 187.589844 C 210.59375 187.707031 210.6875 187.800781 210.804688 187.800781 C 210.921875 187.800781 211.015625 187.707031 211.015625 187.589844 Z M 211.015625 187.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.589844 187.484375 C 211.589844 187.367188 211.496094 187.273438 211.378906 187.273438 C 211.261719 187.273438 211.167969 187.367188 211.167969 187.484375 C 211.167969 187.601562 211.261719 187.695312 211.378906 187.695312 C 211.496094 187.695312 211.589844 187.601562 211.589844 187.484375 Z M 211.589844 187.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.421875 184.269531 C 210.421875 184.152344 210.328125 184.058594 210.210938 184.058594 C 210.09375 184.058594 210 184.152344 210 184.269531 C 210 184.386719 210.09375 184.480469 210.210938 184.480469 C 210.328125 184.480469 210.421875 184.386719 210.421875 184.269531 Z M 210.421875 184.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.484375 186.570312 C 208.484375 186.453125 208.390625 186.359375 208.273438 186.359375 C 208.15625 186.359375 208.0625 186.453125 208.0625 186.570312 C 208.0625 186.6875 208.15625 186.78125 208.273438 186.78125 C 208.390625 186.78125 208.484375 186.6875 208.484375 186.570312 Z M 208.484375 186.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.980469 185.765625 C 211.980469 185.648438 211.886719 185.554688 211.769531 185.554688 C 211.652344 185.554688 211.558594 185.648438 211.558594 185.765625 C 211.558594 185.882812 211.652344 185.976562 211.769531 185.976562 C 211.886719 185.976562 211.980469 185.882812 211.980469 185.765625 Z M 211.980469 185.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.519531 185.265625 C 212.519531 185.148438 212.425781 185.054688 212.308594 185.054688 C 212.191406 185.054688 212.097656 185.148438 212.097656 185.265625 C 212.097656 185.382812 212.191406 185.476562 212.308594 185.476562 C 212.425781 185.476562 212.519531 185.382812 212.519531 185.265625 Z M 212.519531 185.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.0625 184.785156 C 211.0625 184.667969 210.96875 184.574219 210.851562 184.574219 C 210.734375 184.574219 210.640625 184.667969 210.640625 184.785156 C 210.640625 184.902344 210.734375 184.996094 210.851562 184.996094 C 210.96875 184.996094 211.0625 184.902344 211.0625 184.785156 Z M 211.0625 184.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.625 181.476562 C 211.625 181.359375 211.53125 181.265625 211.414062 181.265625 C 211.296875 181.265625 211.203125 181.359375 211.203125 181.476562 C 211.203125 181.59375 211.296875 181.6875 211.414062 181.6875 C 211.53125 181.6875 211.625 181.59375 211.625 181.476562 Z M 211.625 181.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.285156 180.328125 C 211.285156 180.210938 211.191406 180.117188 211.074219 180.117188 C 210.957031 180.117188 210.863281 180.210938 210.863281 180.328125 C 210.863281 180.445312 210.957031 180.539062 211.074219 180.539062 C 211.191406 180.539062 211.285156 180.445312 211.285156 180.328125 Z M 211.285156 180.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.898438 178.988281 C 209.898438 178.871094 209.804688 178.777344 209.6875 178.777344 C 209.570312 178.777344 209.476562 178.871094 209.476562 178.988281 C 209.476562 179.105469 209.570312 179.199219 209.6875 179.199219 C 209.804688 179.199219 209.898438 179.105469 209.898438 178.988281 Z M 209.898438 178.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.488281 179.761719 C 212.488281 179.644531 212.394531 179.550781 212.277344 179.550781 C 212.160156 179.550781 212.066406 179.644531 212.066406 179.761719 C 212.066406 179.878906 212.160156 179.972656 212.277344 179.972656 C 212.394531 179.972656 212.488281 179.878906 212.488281 179.761719 Z M 212.488281 179.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.796875 180.140625 C 207.796875 180.023438 207.703125 179.929688 207.585938 179.929688 C 207.46875 179.929688 207.375 180.023438 207.375 180.140625 C 207.375 180.257812 207.46875 180.351562 207.585938 180.351562 C 207.703125 180.351562 207.796875 180.257812 207.796875 180.140625 Z M 207.796875 180.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.773438 181.867188 C 207.773438 181.75 207.679688 181.65625 207.5625 181.65625 C 207.445312 181.65625 207.351562 181.75 207.351562 181.867188 C 207.351562 181.984375 207.445312 182.078125 207.5625 182.078125 C 207.679688 182.078125 207.773438 181.984375 207.773438 181.867188 Z M 207.773438 181.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.191406 182.101562 C 210.191406 181.984375 210.097656 181.890625 209.980469 181.890625 C 209.863281 181.890625 209.769531 181.984375 209.769531 182.101562 C 209.769531 182.21875 209.863281 182.3125 209.980469 182.3125 C 210.097656 182.3125 210.191406 182.21875 210.191406 182.101562 Z M 210.191406 182.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.425781 182.527344 C 211.425781 182.410156 211.332031 182.316406 211.214844 182.316406 C 211.097656 182.316406 211.003906 182.410156 211.003906 182.527344 C 211.003906 182.644531 211.097656 182.738281 211.214844 182.738281 C 211.332031 182.738281 211.425781 182.644531 211.425781 182.527344 Z M 211.425781 182.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.03125 184.203125 C 212.03125 184.085938 211.9375 183.992188 211.820312 183.992188 C 211.703125 183.992188 211.609375 184.085938 211.609375 184.203125 C 211.609375 184.320312 211.703125 184.414062 211.820312 184.414062 C 211.9375 184.414062 212.03125 184.320312 212.03125 184.203125 Z M 212.03125 184.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.8125 185.816406 C 214.8125 185.699219 214.71875 185.605469 214.601562 185.605469 C 214.484375 185.605469 214.390625 185.699219 214.390625 185.816406 C 214.390625 185.933594 214.484375 186.027344 214.601562 186.027344 C 214.71875 186.027344 214.8125 185.933594 214.8125 185.816406 Z M 214.8125 185.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.179688 182.664062 C 219.179688 182.546875 219.085938 182.453125 218.96875 182.453125 C 218.851562 182.453125 218.757812 182.546875 218.757812 182.664062 C 218.757812 182.78125 218.851562 182.875 218.96875 182.875 C 219.085938 182.875 219.179688 182.78125 219.179688 182.664062 Z M 219.179688 182.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.382812 180.710938 C 219.382812 180.59375 219.289062 180.5 219.171875 180.5 C 219.054688 180.5 218.960938 180.59375 218.960938 180.710938 C 218.960938 180.828125 219.054688 180.921875 219.171875 180.921875 C 219.289062 180.921875 219.382812 180.828125 219.382812 180.710938 Z M 219.382812 180.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.289062 180.019531 C 219.289062 179.902344 219.195312 179.808594 219.078125 179.808594 C 218.960938 179.808594 218.867188 179.902344 218.867188 180.019531 C 218.867188 180.136719 218.960938 180.230469 219.078125 180.230469 C 219.195312 180.230469 219.289062 180.136719 219.289062 180.019531 Z M 219.289062 180.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.863281 182.1875 C 219.863281 182.070312 219.769531 181.976562 219.652344 181.976562 C 219.535156 181.976562 219.441406 182.070312 219.441406 182.1875 C 219.441406 182.304688 219.535156 182.398438 219.652344 182.398438 C 219.769531 182.398438 219.863281 182.304688 219.863281 182.1875 Z M 219.863281 182.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.546875 182.402344 C 216.546875 182.285156 216.453125 182.191406 216.335938 182.191406 C 216.21875 182.191406 216.125 182.285156 216.125 182.402344 C 216.125 182.519531 216.21875 182.613281 216.335938 182.613281 C 216.453125 182.613281 216.546875 182.519531 216.546875 182.402344 Z M 216.546875 182.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.785156 181.769531 C 217.785156 181.652344 217.691406 181.558594 217.574219 181.558594 C 217.457031 181.558594 217.363281 181.652344 217.363281 181.769531 C 217.363281 181.886719 217.457031 181.980469 217.574219 181.980469 C 217.691406 181.980469 217.785156 181.886719 217.785156 181.769531 Z M 217.785156 181.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.679688 181.839844 C 213.679688 181.722656 213.585938 181.628906 213.46875 181.628906 C 213.351562 181.628906 213.257812 181.722656 213.257812 181.839844 C 213.257812 181.957031 213.351562 182.050781 213.46875 182.050781 C 213.585938 182.050781 213.679688 181.957031 213.679688 181.839844 Z M 213.679688 181.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.71875 181.421875 C 215.71875 181.304688 215.625 181.210938 215.507812 181.210938 C 215.390625 181.210938 215.296875 181.304688 215.296875 181.421875 C 215.296875 181.539062 215.390625 181.632812 215.507812 181.632812 C 215.625 181.632812 215.71875 181.539062 215.71875 181.421875 Z M 215.71875 181.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.0625 179.894531 C 212.0625 179.777344 211.96875 179.683594 211.851562 179.683594 C 211.734375 179.683594 211.640625 179.777344 211.640625 179.894531 C 211.640625 180.011719 211.734375 180.105469 211.851562 180.105469 C 211.96875 180.105469 212.0625 180.011719 212.0625 179.894531 Z M 212.0625 179.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.804688 184.207031 C 210.804688 184.089844 210.710938 183.996094 210.59375 183.996094 C 210.476562 183.996094 210.382812 184.089844 210.382812 184.207031 C 210.382812 184.324219 210.476562 184.417969 210.59375 184.417969 C 210.710938 184.417969 210.804688 184.324219 210.804688 184.207031 Z M 210.804688 184.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.160156 182.984375 C 211.160156 182.867188 211.066406 182.773438 210.949219 182.773438 C 210.832031 182.773438 210.738281 182.867188 210.738281 182.984375 C 210.738281 183.101562 210.832031 183.195312 210.949219 183.195312 C 211.066406 183.195312 211.160156 183.101562 211.160156 182.984375 Z M 211.160156 182.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.085938 183.125 C 211.085938 183.007812 210.992188 182.914062 210.875 182.914062 C 210.757812 182.914062 210.664062 183.007812 210.664062 183.125 C 210.664062 183.242188 210.757812 183.335938 210.875 183.335938 C 210.992188 183.335938 211.085938 183.242188 211.085938 183.125 Z M 211.085938 183.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.746094 185.222656 C 210.746094 185.105469 210.652344 185.011719 210.535156 185.011719 C 210.417969 185.011719 210.324219 185.105469 210.324219 185.222656 C 210.324219 185.339844 210.417969 185.433594 210.535156 185.433594 C 210.652344 185.433594 210.746094 185.339844 210.746094 185.222656 Z M 210.746094 185.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.367188 184.960938 C 211.367188 184.84375 211.273438 184.75 211.15625 184.75 C 211.039062 184.75 210.945312 184.84375 210.945312 184.960938 C 210.945312 185.078125 211.039062 185.171875 211.15625 185.171875 C 211.273438 185.171875 211.367188 185.078125 211.367188 184.960938 Z M 211.367188 184.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.714844 184.222656 C 210.714844 184.105469 210.621094 184.011719 210.503906 184.011719 C 210.386719 184.011719 210.292969 184.105469 210.292969 184.222656 C 210.292969 184.339844 210.386719 184.433594 210.503906 184.433594 C 210.621094 184.433594 210.714844 184.339844 210.714844 184.222656 Z M 210.714844 184.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.628906 187.03125 C 209.628906 186.914062 209.535156 186.820312 209.417969 186.820312 C 209.300781 186.820312 209.207031 186.914062 209.207031 187.03125 C 209.207031 187.148438 209.300781 187.242188 209.417969 187.242188 C 209.535156 187.242188 209.628906 187.148438 209.628906 187.03125 Z M 209.628906 187.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.492188 187.308594 C 205.492188 187.191406 205.398438 187.097656 205.28125 187.097656 C 205.164062 187.097656 205.070312 187.191406 205.070312 187.308594 C 205.070312 187.425781 205.164062 187.519531 205.28125 187.519531 C 205.398438 187.519531 205.492188 187.425781 205.492188 187.308594 Z M 205.492188 187.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.59375 181.785156 C 206.59375 181.667969 206.5 181.574219 206.382812 181.574219 C 206.265625 181.574219 206.171875 181.667969 206.171875 181.785156 C 206.171875 181.902344 206.265625 181.996094 206.382812 181.996094 C 206.5 181.996094 206.59375 181.902344 206.59375 181.785156 Z M 206.59375 181.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.039062 184.046875 C 209.039062 183.929688 208.945312 183.835938 208.828125 183.835938 C 208.710938 183.835938 208.617188 183.929688 208.617188 184.046875 C 208.617188 184.164062 208.710938 184.257812 208.828125 184.257812 C 208.945312 184.257812 209.039062 184.164062 209.039062 184.046875 Z M 209.039062 184.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.074219 186.882812 C 212.074219 186.765625 211.980469 186.671875 211.863281 186.671875 C 211.746094 186.671875 211.652344 186.765625 211.652344 186.882812 C 211.652344 187 211.746094 187.09375 211.863281 187.09375 C 211.980469 187.09375 212.074219 187 212.074219 186.882812 Z M 212.074219 186.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.171875 186.746094 C 214.171875 186.628906 214.078125 186.535156 213.960938 186.535156 C 213.84375 186.535156 213.75 186.628906 213.75 186.746094 C 213.75 186.863281 213.84375 186.957031 213.960938 186.957031 C 214.078125 186.957031 214.171875 186.863281 214.171875 186.746094 Z M 214.171875 186.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.246094 183.617188 C 218.246094 183.5 218.152344 183.40625 218.035156 183.40625 C 217.917969 183.40625 217.824219 183.5 217.824219 183.617188 C 217.824219 183.734375 217.917969 183.828125 218.035156 183.828125 C 218.152344 183.828125 218.246094 183.734375 218.246094 183.617188 Z M 218.246094 183.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.519531 180.085938 C 221.519531 179.96875 221.425781 179.875 221.308594 179.875 C 221.191406 179.875 221.097656 179.96875 221.097656 180.085938 C 221.097656 180.203125 221.191406 180.296875 221.308594 180.296875 C 221.425781 180.296875 221.519531 180.203125 221.519531 180.085938 Z M 221.519531 180.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.59375 178.929688 C 223.59375 178.8125 223.5 178.71875 223.382812 178.71875 C 223.265625 178.71875 223.171875 178.8125 223.171875 178.929688 C 223.171875 179.046875 223.265625 179.140625 223.382812 179.140625 C 223.5 179.140625 223.59375 179.046875 223.59375 178.929688 Z M 223.59375 178.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 222.449219 180.246094 C 222.449219 180.128906 222.355469 180.035156 222.238281 180.035156 C 222.121094 180.035156 222.027344 180.128906 222.027344 180.246094 C 222.027344 180.363281 222.121094 180.457031 222.238281 180.457031 C 222.355469 180.457031 222.449219 180.363281 222.449219 180.246094 Z M 222.449219 180.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.082031 176.210938 C 221.082031 176.09375 220.988281 176 220.871094 176 C 220.753906 176 220.660156 176.09375 220.660156 176.210938 C 220.660156 176.328125 220.753906 176.421875 220.871094 176.421875 C 220.988281 176.421875 221.082031 176.328125 221.082031 176.210938 Z M 221.082031 176.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.234375 175.320312 C 223.234375 175.203125 223.140625 175.109375 223.023438 175.109375 C 222.90625 175.109375 222.8125 175.203125 222.8125 175.320312 C 222.8125 175.4375 222.90625 175.53125 223.023438 175.53125 C 223.140625 175.53125 223.234375 175.4375 223.234375 175.320312 Z M 223.234375 175.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.476562 172.144531 C 223.476562 172.027344 223.382812 171.933594 223.265625 171.933594 C 223.148438 171.933594 223.054688 172.027344 223.054688 172.144531 C 223.054688 172.261719 223.148438 172.355469 223.265625 172.355469 C 223.382812 172.355469 223.476562 172.261719 223.476562 172.144531 Z M 223.476562 172.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.984375 173.054688 C 225.984375 172.9375 225.890625 172.84375 225.773438 172.84375 C 225.65625 172.84375 225.5625 172.9375 225.5625 173.054688 C 225.5625 173.171875 225.65625 173.265625 225.773438 173.265625 C 225.890625 173.265625 225.984375 173.171875 225.984375 173.054688 Z M 225.984375 173.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.820312 169.179688 C 223.820312 169.0625 223.726562 168.96875 223.609375 168.96875 C 223.492188 168.96875 223.398438 169.0625 223.398438 169.179688 C 223.398438 169.296875 223.492188 169.390625 223.609375 169.390625 C 223.726562 169.390625 223.820312 169.296875 223.820312 169.179688 Z M 223.820312 169.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.335938 167.199219 C 223.335938 167.082031 223.242188 166.988281 223.125 166.988281 C 223.007812 166.988281 222.914062 167.082031 222.914062 167.199219 C 222.914062 167.316406 223.007812 167.410156 223.125 167.410156 C 223.242188 167.410156 223.335938 167.316406 223.335938 167.199219 Z M 223.335938 167.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.152344 162.128906 C 221.152344 162.011719 221.058594 161.917969 220.941406 161.917969 C 220.824219 161.917969 220.730469 162.011719 220.730469 162.128906 C 220.730469 162.246094 220.824219 162.339844 220.941406 162.339844 C 221.058594 162.339844 221.152344 162.246094 221.152344 162.128906 Z M 221.152344 162.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.339844 163.332031 C 218.339844 163.214844 218.246094 163.121094 218.128906 163.121094 C 218.011719 163.121094 217.917969 163.214844 217.917969 163.332031 C 217.917969 163.449219 218.011719 163.542969 218.128906 163.542969 C 218.246094 163.542969 218.339844 163.449219 218.339844 163.332031 Z M 218.339844 163.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.042969 160.695312 C 219.042969 160.578125 218.949219 160.484375 218.832031 160.484375 C 218.714844 160.484375 218.621094 160.578125 218.621094 160.695312 C 218.621094 160.8125 218.714844 160.90625 218.832031 160.90625 C 218.949219 160.90625 219.042969 160.8125 219.042969 160.695312 Z M 219.042969 160.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.867188 162.175781 C 217.867188 162.058594 217.773438 161.964844 217.65625 161.964844 C 217.539062 161.964844 217.445312 162.058594 217.445312 162.175781 C 217.445312 162.292969 217.539062 162.386719 217.65625 162.386719 C 217.773438 162.386719 217.867188 162.292969 217.867188 162.175781 Z M 217.867188 162.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.351562 167.222656 C 219.351562 167.105469 219.257812 167.011719 219.140625 167.011719 C 219.023438 167.011719 218.929688 167.105469 218.929688 167.222656 C 218.929688 167.339844 219.023438 167.433594 219.140625 167.433594 C 219.257812 167.433594 219.351562 167.339844 219.351562 167.222656 Z M 219.351562 167.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.515625 167.636719 C 215.515625 167.519531 215.421875 167.425781 215.304688 167.425781 C 215.1875 167.425781 215.09375 167.519531 215.09375 167.636719 C 215.09375 167.753906 215.1875 167.847656 215.304688 167.847656 C 215.421875 167.847656 215.515625 167.753906 215.515625 167.636719 Z M 215.515625 167.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.5 171.042969 C 212.5 170.925781 212.40625 170.832031 212.289062 170.832031 C 212.171875 170.832031 212.078125 170.925781 212.078125 171.042969 C 212.078125 171.160156 212.171875 171.253906 212.289062 171.253906 C 212.40625 171.253906 212.5 171.160156 212.5 171.042969 Z M 212.5 171.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.253906 169.957031 C 214.253906 169.839844 214.160156 169.746094 214.042969 169.746094 C 213.925781 169.746094 213.832031 169.839844 213.832031 169.957031 C 213.832031 170.074219 213.925781 170.167969 214.042969 170.167969 C 214.160156 170.167969 214.253906 170.074219 214.253906 169.957031 Z M 214.253906 169.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.277344 167.609375 C 212.277344 167.492188 212.183594 167.398438 212.066406 167.398438 C 211.949219 167.398438 211.855469 167.492188 211.855469 167.609375 C 211.855469 167.726562 211.949219 167.820312 212.066406 167.820312 C 212.183594 167.820312 212.277344 167.726562 212.277344 167.609375 Z M 212.277344 167.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.898438 166.105469 C 212.898438 165.988281 212.804688 165.894531 212.6875 165.894531 C 212.570312 165.894531 212.476562 165.988281 212.476562 166.105469 C 212.476562 166.222656 212.570312 166.316406 212.6875 166.316406 C 212.804688 166.316406 212.898438 166.222656 212.898438 166.105469 Z M 212.898438 166.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.929688 165.550781 C 212.929688 165.433594 212.835938 165.339844 212.71875 165.339844 C 212.601562 165.339844 212.507812 165.433594 212.507812 165.550781 C 212.507812 165.667969 212.601562 165.761719 212.71875 165.761719 C 212.835938 165.761719 212.929688 165.667969 212.929688 165.550781 Z M 212.929688 165.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.433594 164.769531 C 215.433594 164.652344 215.339844 164.558594 215.222656 164.558594 C 215.105469 164.558594 215.011719 164.652344 215.011719 164.769531 C 215.011719 164.886719 215.105469 164.980469 215.222656 164.980469 C 215.339844 164.980469 215.433594 164.886719 215.433594 164.769531 Z M 215.433594 164.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.933594 162.75 C 212.933594 162.632812 212.839844 162.539062 212.722656 162.539062 C 212.605469 162.539062 212.511719 162.632812 212.511719 162.75 C 212.511719 162.867188 212.605469 162.960938 212.722656 162.960938 C 212.839844 162.960938 212.933594 162.867188 212.933594 162.75 Z M 212.933594 162.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.550781 163.699219 C 212.550781 163.582031 212.457031 163.488281 212.339844 163.488281 C 212.222656 163.488281 212.128906 163.582031 212.128906 163.699219 C 212.128906 163.816406 212.222656 163.910156 212.339844 163.910156 C 212.457031 163.910156 212.550781 163.816406 212.550781 163.699219 Z M 212.550781 163.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.527344 168.230469 C 211.527344 168.113281 211.433594 168.019531 211.316406 168.019531 C 211.199219 168.019531 211.105469 168.113281 211.105469 168.230469 C 211.105469 168.347656 211.199219 168.441406 211.316406 168.441406 C 211.433594 168.441406 211.527344 168.347656 211.527344 168.230469 Z M 211.527344 168.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.617188 167.023438 C 210.617188 166.90625 210.523438 166.8125 210.40625 166.8125 C 210.289062 166.8125 210.195312 166.90625 210.195312 167.023438 C 210.195312 167.140625 210.289062 167.234375 210.40625 167.234375 C 210.523438 167.234375 210.617188 167.140625 210.617188 167.023438 Z M 210.617188 167.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.292969 167.898438 C 210.292969 167.78125 210.199219 167.6875 210.082031 167.6875 C 209.964844 167.6875 209.871094 167.78125 209.871094 167.898438 C 209.871094 168.015625 209.964844 168.109375 210.082031 168.109375 C 210.199219 168.109375 210.292969 168.015625 210.292969 167.898438 Z M 210.292969 167.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.734375 168.710938 C 208.734375 168.59375 208.640625 168.5 208.523438 168.5 C 208.40625 168.5 208.3125 168.59375 208.3125 168.710938 C 208.3125 168.828125 208.40625 168.921875 208.523438 168.921875 C 208.640625 168.921875 208.734375 168.828125 208.734375 168.710938 Z M 208.734375 168.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.183594 168.472656 C 213.183594 168.355469 213.089844 168.261719 212.972656 168.261719 C 212.855469 168.261719 212.761719 168.355469 212.761719 168.472656 C 212.761719 168.589844 212.855469 168.683594 212.972656 168.683594 C 213.089844 168.683594 213.183594 168.589844 213.183594 168.472656 Z M 213.183594 168.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.050781 168.5 C 213.050781 168.382812 212.957031 168.289062 212.839844 168.289062 C 212.722656 168.289062 212.628906 168.382812 212.628906 168.5 C 212.628906 168.617188 212.722656 168.710938 212.839844 168.710938 C 212.957031 168.710938 213.050781 168.617188 213.050781 168.5 Z M 213.050781 168.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.832031 170.664062 C 212.832031 170.546875 212.738281 170.453125 212.621094 170.453125 C 212.503906 170.453125 212.410156 170.546875 212.410156 170.664062 C 212.410156 170.78125 212.503906 170.875 212.621094 170.875 C 212.738281 170.875 212.832031 170.78125 212.832031 170.664062 Z M 212.832031 170.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.089844 169.484375 C 210.089844 169.367188 209.996094 169.273438 209.878906 169.273438 C 209.761719 169.273438 209.667969 169.367188 209.667969 169.484375 C 209.667969 169.601562 209.761719 169.695312 209.878906 169.695312 C 209.996094 169.695312 210.089844 169.601562 210.089844 169.484375 Z M 210.089844 169.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.898438 169.527344 C 209.898438 169.410156 209.804688 169.316406 209.6875 169.316406 C 209.570312 169.316406 209.476562 169.410156 209.476562 169.527344 C 209.476562 169.644531 209.570312 169.738281 209.6875 169.738281 C 209.804688 169.738281 209.898438 169.644531 209.898438 169.527344 Z M 209.898438 169.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.847656 168.363281 C 205.847656 168.246094 205.753906 168.152344 205.636719 168.152344 C 205.519531 168.152344 205.425781 168.246094 205.425781 168.363281 C 205.425781 168.480469 205.519531 168.574219 205.636719 168.574219 C 205.753906 168.574219 205.847656 168.480469 205.847656 168.363281 Z M 205.847656 168.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.789062 171.03125 C 204.789062 170.914062 204.695312 170.820312 204.578125 170.820312 C 204.460938 170.820312 204.367188 170.914062 204.367188 171.03125 C 204.367188 171.148438 204.460938 171.242188 204.578125 171.242188 C 204.695312 171.242188 204.789062 171.148438 204.789062 171.03125 Z M 204.789062 171.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.75 168.792969 C 206.75 168.675781 206.65625 168.582031 206.539062 168.582031 C 206.421875 168.582031 206.328125 168.675781 206.328125 168.792969 C 206.328125 168.910156 206.421875 169.003906 206.539062 169.003906 C 206.65625 169.003906 206.75 168.910156 206.75 168.792969 Z M 206.75 168.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.730469 168.449219 C 205.730469 168.332031 205.636719 168.238281 205.519531 168.238281 C 205.402344 168.238281 205.308594 168.332031 205.308594 168.449219 C 205.308594 168.566406 205.402344 168.660156 205.519531 168.660156 C 205.636719 168.660156 205.730469 168.566406 205.730469 168.449219 Z M 205.730469 168.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.207031 171.730469 C 205.207031 171.613281 205.113281 171.519531 204.996094 171.519531 C 204.878906 171.519531 204.785156 171.613281 204.785156 171.730469 C 204.785156 171.847656 204.878906 171.941406 204.996094 171.941406 C 205.113281 171.941406 205.207031 171.847656 205.207031 171.730469 Z M 205.207031 171.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.550781 171.890625 C 204.550781 171.773438 204.457031 171.679688 204.339844 171.679688 C 204.222656 171.679688 204.128906 171.773438 204.128906 171.890625 C 204.128906 172.007812 204.222656 172.101562 204.339844 172.101562 C 204.457031 172.101562 204.550781 172.007812 204.550781 171.890625 Z M 204.550781 171.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.039062 172.347656 C 202.039062 172.230469 201.945312 172.136719 201.828125 172.136719 C 201.710938 172.136719 201.617188 172.230469 201.617188 172.347656 C 201.617188 172.464844 201.710938 172.558594 201.828125 172.558594 C 201.945312 172.558594 202.039062 172.464844 202.039062 172.347656 Z M 202.039062 172.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.203125 169.828125 C 203.203125 169.710938 203.109375 169.617188 202.992188 169.617188 C 202.875 169.617188 202.78125 169.710938 202.78125 169.828125 C 202.78125 169.945312 202.875 170.039062 202.992188 170.039062 C 203.109375 170.039062 203.203125 169.945312 203.203125 169.828125 Z M 203.203125 169.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.316406 172.101562 C 203.316406 171.984375 203.222656 171.890625 203.105469 171.890625 C 202.988281 171.890625 202.894531 171.984375 202.894531 172.101562 C 202.894531 172.21875 202.988281 172.3125 203.105469 172.3125 C 203.222656 172.3125 203.316406 172.21875 203.316406 172.101562 Z M 203.316406 172.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.679688 169.308594 C 202.679688 169.191406 202.585938 169.097656 202.46875 169.097656 C 202.351562 169.097656 202.257812 169.191406 202.257812 169.308594 C 202.257812 169.425781 202.351562 169.519531 202.46875 169.519531 C 202.585938 169.519531 202.679688 169.425781 202.679688 169.308594 Z M 202.679688 169.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.589844 169.480469 C 201.589844 169.363281 201.496094 169.269531 201.378906 169.269531 C 201.261719 169.269531 201.167969 169.363281 201.167969 169.480469 C 201.167969 169.597656 201.261719 169.691406 201.378906 169.691406 C 201.496094 169.691406 201.589844 169.597656 201.589844 169.480469 Z M 201.589844 169.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.015625 170.140625 C 203.015625 170.023438 202.921875 169.929688 202.804688 169.929688 C 202.6875 169.929688 202.59375 170.023438 202.59375 170.140625 C 202.59375 170.257812 202.6875 170.351562 202.804688 170.351562 C 202.921875 170.351562 203.015625 170.257812 203.015625 170.140625 Z M 203.015625 170.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.878906 171.691406 C 205.878906 171.574219 205.785156 171.480469 205.667969 171.480469 C 205.550781 171.480469 205.457031 171.574219 205.457031 171.691406 C 205.457031 171.808594 205.550781 171.902344 205.667969 171.902344 C 205.785156 171.902344 205.878906 171.808594 205.878906 171.691406 Z M 205.878906 171.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.269531 176.816406 C 205.269531 176.699219 205.175781 176.605469 205.058594 176.605469 C 204.941406 176.605469 204.847656 176.699219 204.847656 176.816406 C 204.847656 176.933594 204.941406 177.027344 205.058594 177.027344 C 205.175781 177.027344 205.269531 176.933594 205.269531 176.816406 Z M 205.269531 176.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.140625 175.5 C 206.140625 175.382812 206.046875 175.289062 205.929688 175.289062 C 205.8125 175.289062 205.71875 175.382812 205.71875 175.5 C 205.71875 175.617188 205.8125 175.710938 205.929688 175.710938 C 206.046875 175.710938 206.140625 175.617188 206.140625 175.5 Z M 206.140625 175.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.773438 177.414062 C 204.773438 177.296875 204.679688 177.203125 204.5625 177.203125 C 204.445312 177.203125 204.351562 177.296875 204.351562 177.414062 C 204.351562 177.53125 204.445312 177.625 204.5625 177.625 C 204.679688 177.625 204.773438 177.53125 204.773438 177.414062 Z M 204.773438 177.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.605469 180.351562 C 207.605469 180.234375 207.511719 180.140625 207.394531 180.140625 C 207.277344 180.140625 207.183594 180.234375 207.183594 180.351562 C 207.183594 180.46875 207.277344 180.5625 207.394531 180.5625 C 207.511719 180.5625 207.605469 180.46875 207.605469 180.351562 Z M 207.605469 180.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.75 177.695312 C 206.75 177.578125 206.65625 177.484375 206.539062 177.484375 C 206.421875 177.484375 206.328125 177.578125 206.328125 177.695312 C 206.328125 177.8125 206.421875 177.90625 206.539062 177.90625 C 206.65625 177.90625 206.75 177.8125 206.75 177.695312 Z M 206.75 177.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.683594 179.234375 C 206.683594 179.117188 206.589844 179.023438 206.472656 179.023438 C 206.355469 179.023438 206.261719 179.117188 206.261719 179.234375 C 206.261719 179.351562 206.355469 179.445312 206.472656 179.445312 C 206.589844 179.445312 206.683594 179.351562 206.683594 179.234375 Z M 206.683594 179.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.175781 178.9375 C 206.175781 178.820312 206.082031 178.726562 205.964844 178.726562 C 205.847656 178.726562 205.753906 178.820312 205.753906 178.9375 C 205.753906 179.054688 205.847656 179.148438 205.964844 179.148438 C 206.082031 179.148438 206.175781 179.054688 206.175781 178.9375 Z M 206.175781 178.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.773438 177.976562 C 202.773438 177.859375 202.679688 177.765625 202.5625 177.765625 C 202.445312 177.765625 202.351562 177.859375 202.351562 177.976562 C 202.351562 178.09375 202.445312 178.1875 202.5625 178.1875 C 202.679688 178.1875 202.773438 178.09375 202.773438 177.976562 Z M 202.773438 177.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.304688 181.609375 C 205.304688 181.492188 205.210938 181.398438 205.09375 181.398438 C 204.976562 181.398438 204.882812 181.492188 204.882812 181.609375 C 204.882812 181.726562 204.976562 181.820312 205.09375 181.820312 C 205.210938 181.820312 205.304688 181.726562 205.304688 181.609375 Z M 205.304688 181.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.730469 179.574219 C 205.730469 179.457031 205.636719 179.363281 205.519531 179.363281 C 205.402344 179.363281 205.308594 179.457031 205.308594 179.574219 C 205.308594 179.691406 205.402344 179.785156 205.519531 179.785156 C 205.636719 179.785156 205.730469 179.691406 205.730469 179.574219 Z M 205.730469 179.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.542969 177.367188 C 207.542969 177.25 207.449219 177.15625 207.332031 177.15625 C 207.214844 177.15625 207.121094 177.25 207.121094 177.367188 C 207.121094 177.484375 207.214844 177.578125 207.332031 177.578125 C 207.449219 177.578125 207.542969 177.484375 207.542969 177.367188 Z M 207.542969 177.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.613281 179.785156 C 207.613281 179.667969 207.519531 179.574219 207.402344 179.574219 C 207.285156 179.574219 207.191406 179.667969 207.191406 179.785156 C 207.191406 179.902344 207.285156 179.996094 207.402344 179.996094 C 207.519531 179.996094 207.613281 179.902344 207.613281 179.785156 Z M 207.613281 179.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.597656 178.804688 C 205.597656 178.6875 205.503906 178.59375 205.386719 178.59375 C 205.269531 178.59375 205.175781 178.6875 205.175781 178.804688 C 205.175781 178.921875 205.269531 179.015625 205.386719 179.015625 C 205.503906 179.015625 205.597656 178.921875 205.597656 178.804688 Z M 205.597656 178.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.308594 179.414062 C 205.308594 179.296875 205.214844 179.203125 205.097656 179.203125 C 204.980469 179.203125 204.886719 179.296875 204.886719 179.414062 C 204.886719 179.53125 204.980469 179.625 205.097656 179.625 C 205.214844 179.625 205.308594 179.53125 205.308594 179.414062 Z M 205.308594 179.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.921875 179.664062 C 204.921875 179.546875 204.828125 179.453125 204.710938 179.453125 C 204.59375 179.453125 204.5 179.546875 204.5 179.664062 C 204.5 179.78125 204.59375 179.875 204.710938 179.875 C 204.828125 179.875 204.921875 179.78125 204.921875 179.664062 Z M 204.921875 179.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.3125 182.292969 C 204.3125 182.175781 204.21875 182.082031 204.101562 182.082031 C 203.984375 182.082031 203.890625 182.175781 203.890625 182.292969 C 203.890625 182.410156 203.984375 182.503906 204.101562 182.503906 C 204.21875 182.503906 204.3125 182.410156 204.3125 182.292969 Z M 204.3125 182.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.632812 182.480469 C 199.632812 182.363281 199.539062 182.269531 199.421875 182.269531 C 199.304688 182.269531 199.210938 182.363281 199.210938 182.480469 C 199.210938 182.597656 199.304688 182.691406 199.421875 182.691406 C 199.539062 182.691406 199.632812 182.597656 199.632812 182.480469 Z M 199.632812 182.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.078125 179.710938 C 201.078125 179.59375 200.984375 179.5 200.867188 179.5 C 200.75 179.5 200.65625 179.59375 200.65625 179.710938 C 200.65625 179.828125 200.75 179.921875 200.867188 179.921875 C 200.984375 179.921875 201.078125 179.828125 201.078125 179.710938 Z M 201.078125 179.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.640625 175.109375 C 197.640625 174.992188 197.546875 174.898438 197.429688 174.898438 C 197.3125 174.898438 197.21875 174.992188 197.21875 175.109375 C 197.21875 175.226562 197.3125 175.320312 197.429688 175.320312 C 197.546875 175.320312 197.640625 175.226562 197.640625 175.109375 Z M 197.640625 175.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.035156 174.5 C 196.035156 174.382812 195.941406 174.289062 195.824219 174.289062 C 195.707031 174.289062 195.613281 174.382812 195.613281 174.5 C 195.613281 174.617188 195.707031 174.710938 195.824219 174.710938 C 195.941406 174.710938 196.035156 174.617188 196.035156 174.5 Z M 196.035156 174.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.011719 171.257812 C 197.011719 171.140625 196.917969 171.046875 196.800781 171.046875 C 196.683594 171.046875 196.589844 171.140625 196.589844 171.257812 C 196.589844 171.375 196.683594 171.46875 196.800781 171.46875 C 196.917969 171.46875 197.011719 171.375 197.011719 171.257812 Z M 197.011719 171.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.394531 172.679688 C 198.394531 172.5625 198.300781 172.46875 198.183594 172.46875 C 198.066406 172.46875 197.972656 172.5625 197.972656 172.679688 C 197.972656 172.796875 198.066406 172.890625 198.183594 172.890625 C 198.300781 172.890625 198.394531 172.796875 198.394531 172.679688 Z M 198.394531 172.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.84375 176.832031 C 196.84375 176.714844 196.75 176.621094 196.632812 176.621094 C 196.515625 176.621094 196.421875 176.714844 196.421875 176.832031 C 196.421875 176.949219 196.515625 177.042969 196.632812 177.042969 C 196.75 177.042969 196.84375 176.949219 196.84375 176.832031 Z M 196.84375 176.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.691406 173.335938 C 193.691406 173.21875 193.597656 173.125 193.480469 173.125 C 193.363281 173.125 193.269531 173.21875 193.269531 173.335938 C 193.269531 173.453125 193.363281 173.546875 193.480469 173.546875 C 193.597656 173.546875 193.691406 173.453125 193.691406 173.335938 Z M 193.691406 173.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.304688 172.785156 C 196.304688 172.667969 196.210938 172.574219 196.09375 172.574219 C 195.976562 172.574219 195.882812 172.667969 195.882812 172.785156 C 195.882812 172.902344 195.976562 172.996094 196.09375 172.996094 C 196.210938 172.996094 196.304688 172.902344 196.304688 172.785156 Z M 196.304688 172.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.410156 169.351562 C 194.410156 169.234375 194.316406 169.140625 194.199219 169.140625 C 194.082031 169.140625 193.988281 169.234375 193.988281 169.351562 C 193.988281 169.46875 194.082031 169.5625 194.199219 169.5625 C 194.316406 169.5625 194.410156 169.46875 194.410156 169.351562 Z M 194.410156 169.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.5625 170.585938 C 196.5625 170.46875 196.46875 170.375 196.351562 170.375 C 196.234375 170.375 196.140625 170.46875 196.140625 170.585938 C 196.140625 170.703125 196.234375 170.796875 196.351562 170.796875 C 196.46875 170.796875 196.5625 170.703125 196.5625 170.585938 Z M 196.5625 170.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.8125 168.382812 C 191.8125 168.265625 191.71875 168.171875 191.601562 168.171875 C 191.484375 168.171875 191.390625 168.265625 191.390625 168.382812 C 191.390625 168.5 191.484375 168.59375 191.601562 168.59375 C 191.71875 168.59375 191.8125 168.5 191.8125 168.382812 Z M 191.8125 168.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.128906 168.59375 C 190.128906 168.476562 190.035156 168.382812 189.917969 168.382812 C 189.800781 168.382812 189.707031 168.476562 189.707031 168.59375 C 189.707031 168.710938 189.800781 168.804688 189.917969 168.804688 C 190.035156 168.804688 190.128906 168.710938 190.128906 168.59375 Z M 190.128906 168.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.40625 169.769531 C 195.40625 169.652344 195.3125 169.558594 195.195312 169.558594 C 195.078125 169.558594 194.984375 169.652344 194.984375 169.769531 C 194.984375 169.886719 195.078125 169.980469 195.195312 169.980469 C 195.3125 169.980469 195.40625 169.886719 195.40625 169.769531 Z M 195.40625 169.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.289062 173.238281 C 194.289062 173.121094 194.195312 173.027344 194.078125 173.027344 C 193.960938 173.027344 193.867188 173.121094 193.867188 173.238281 C 193.867188 173.355469 193.960938 173.449219 194.078125 173.449219 C 194.195312 173.449219 194.289062 173.355469 194.289062 173.238281 Z M 194.289062 173.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.171875 174.816406 C 194.171875 174.699219 194.078125 174.605469 193.960938 174.605469 C 193.84375 174.605469 193.75 174.699219 193.75 174.816406 C 193.75 174.933594 193.84375 175.027344 193.960938 175.027344 C 194.078125 175.027344 194.171875 174.933594 194.171875 174.816406 Z M 194.171875 174.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.074219 175.777344 C 196.074219 175.660156 195.980469 175.566406 195.863281 175.566406 C 195.746094 175.566406 195.652344 175.660156 195.652344 175.777344 C 195.652344 175.894531 195.746094 175.988281 195.863281 175.988281 C 195.980469 175.988281 196.074219 175.894531 196.074219 175.777344 Z M 196.074219 175.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.578125 174.996094 C 198.578125 174.878906 198.484375 174.785156 198.367188 174.785156 C 198.25 174.785156 198.15625 174.878906 198.15625 174.996094 C 198.15625 175.113281 198.25 175.207031 198.367188 175.207031 C 198.484375 175.207031 198.578125 175.113281 198.578125 174.996094 Z M 198.578125 174.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.3125 174.660156 C 199.3125 174.542969 199.21875 174.449219 199.101562 174.449219 C 198.984375 174.449219 198.890625 174.542969 198.890625 174.660156 C 198.890625 174.777344 198.984375 174.871094 199.101562 174.871094 C 199.21875 174.871094 199.3125 174.777344 199.3125 174.660156 Z M 199.3125 174.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.550781 174.878906 C 200.550781 174.761719 200.457031 174.667969 200.339844 174.667969 C 200.222656 174.667969 200.128906 174.761719 200.128906 174.878906 C 200.128906 174.996094 200.222656 175.089844 200.339844 175.089844 C 200.457031 175.089844 200.550781 174.996094 200.550781 174.878906 Z M 200.550781 174.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.574219 174.808594 C 199.574219 174.691406 199.480469 174.597656 199.363281 174.597656 C 199.246094 174.597656 199.152344 174.691406 199.152344 174.808594 C 199.152344 174.925781 199.246094 175.019531 199.363281 175.019531 C 199.480469 175.019531 199.574219 174.925781 199.574219 174.808594 Z M 199.574219 174.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.703125 175.109375 C 197.703125 174.992188 197.609375 174.898438 197.492188 174.898438 C 197.375 174.898438 197.28125 174.992188 197.28125 175.109375 C 197.28125 175.226562 197.375 175.320312 197.492188 175.320312 C 197.609375 175.320312 197.703125 175.226562 197.703125 175.109375 Z M 197.703125 175.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.578125 173.164062 C 196.578125 173.046875 196.484375 172.953125 196.367188 172.953125 C 196.25 172.953125 196.15625 173.046875 196.15625 173.164062 C 196.15625 173.28125 196.25 173.375 196.367188 173.375 C 196.484375 173.375 196.578125 173.28125 196.578125 173.164062 Z M 196.578125 173.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.304688 172.152344 C 198.304688 172.035156 198.210938 171.941406 198.09375 171.941406 C 197.976562 171.941406 197.882812 172.035156 197.882812 172.152344 C 197.882812 172.269531 197.976562 172.363281 198.09375 172.363281 C 198.210938 172.363281 198.304688 172.269531 198.304688 172.152344 Z M 198.304688 172.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.898438 170.164062 C 195.898438 170.046875 195.804688 169.953125 195.6875 169.953125 C 195.570312 169.953125 195.476562 170.046875 195.476562 170.164062 C 195.476562 170.28125 195.570312 170.375 195.6875 170.375 C 195.804688 170.375 195.898438 170.28125 195.898438 170.164062 Z M 195.898438 170.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.914062 166.382812 C 192.914062 166.265625 192.820312 166.171875 192.703125 166.171875 C 192.585938 166.171875 192.492188 166.265625 192.492188 166.382812 C 192.492188 166.5 192.585938 166.59375 192.703125 166.59375 C 192.820312 166.59375 192.914062 166.5 192.914062 166.382812 Z M 192.914062 166.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.078125 169.929688 C 191.078125 169.8125 190.984375 169.71875 190.867188 169.71875 C 190.75 169.71875 190.65625 169.8125 190.65625 169.929688 C 190.65625 170.046875 190.75 170.140625 190.867188 170.140625 C 190.984375 170.140625 191.078125 170.046875 191.078125 169.929688 Z M 191.078125 169.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.332031 170.472656 C 190.332031 170.355469 190.238281 170.261719 190.121094 170.261719 C 190.003906 170.261719 189.910156 170.355469 189.910156 170.472656 C 189.910156 170.589844 190.003906 170.683594 190.121094 170.683594 C 190.238281 170.683594 190.332031 170.589844 190.332031 170.472656 Z M 190.332031 170.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.226562 174.203125 C 191.226562 174.085938 191.132812 173.992188 191.015625 173.992188 C 190.898438 173.992188 190.804688 174.085938 190.804688 174.203125 C 190.804688 174.320312 190.898438 174.414062 191.015625 174.414062 C 191.132812 174.414062 191.226562 174.320312 191.226562 174.203125 Z M 191.226562 174.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.496094 171.894531 C 191.496094 171.777344 191.402344 171.683594 191.285156 171.683594 C 191.167969 171.683594 191.074219 171.777344 191.074219 171.894531 C 191.074219 172.011719 191.167969 172.105469 191.285156 172.105469 C 191.402344 172.105469 191.496094 172.011719 191.496094 171.894531 Z M 191.496094 171.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.769531 174.652344 C 189.769531 174.535156 189.675781 174.441406 189.558594 174.441406 C 189.441406 174.441406 189.347656 174.535156 189.347656 174.652344 C 189.347656 174.769531 189.441406 174.863281 189.558594 174.863281 C 189.675781 174.863281 189.769531 174.769531 189.769531 174.652344 Z M 189.769531 174.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.753906 175.136719 C 190.753906 175.019531 190.660156 174.925781 190.542969 174.925781 C 190.425781 174.925781 190.332031 175.019531 190.332031 175.136719 C 190.332031 175.253906 190.425781 175.347656 190.542969 175.347656 C 190.660156 175.347656 190.753906 175.253906 190.753906 175.136719 Z M 190.753906 175.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.976562 174.679688 C 189.976562 174.5625 189.882812 174.46875 189.765625 174.46875 C 189.648438 174.46875 189.554688 174.5625 189.554688 174.679688 C 189.554688 174.796875 189.648438 174.890625 189.765625 174.890625 C 189.882812 174.890625 189.976562 174.796875 189.976562 174.679688 Z M 189.976562 174.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.425781 173.34375 C 187.425781 173.226562 187.332031 173.132812 187.214844 173.132812 C 187.097656 173.132812 187.003906 173.226562 187.003906 173.34375 C 187.003906 173.460938 187.097656 173.554688 187.214844 173.554688 C 187.332031 173.554688 187.425781 173.460938 187.425781 173.34375 Z M 187.425781 173.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.753906 172.90625 C 188.753906 172.789062 188.660156 172.695312 188.542969 172.695312 C 188.425781 172.695312 188.332031 172.789062 188.332031 172.90625 C 188.332031 173.023438 188.425781 173.117188 188.542969 173.117188 C 188.660156 173.117188 188.753906 173.023438 188.753906 172.90625 Z M 188.753906 172.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.84375 172.515625 C 187.84375 172.398438 187.75 172.304688 187.632812 172.304688 C 187.515625 172.304688 187.421875 172.398438 187.421875 172.515625 C 187.421875 172.632812 187.515625 172.726562 187.632812 172.726562 C 187.75 172.726562 187.84375 172.632812 187.84375 172.515625 Z M 187.84375 172.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.636719 172.265625 C 187.636719 172.148438 187.542969 172.054688 187.425781 172.054688 C 187.308594 172.054688 187.214844 172.148438 187.214844 172.265625 C 187.214844 172.382812 187.308594 172.476562 187.425781 172.476562 C 187.542969 172.476562 187.636719 172.382812 187.636719 172.265625 Z M 187.636719 172.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.386719 170.007812 C 188.386719 169.890625 188.292969 169.796875 188.175781 169.796875 C 188.058594 169.796875 187.964844 169.890625 187.964844 170.007812 C 187.964844 170.125 188.058594 170.21875 188.175781 170.21875 C 188.292969 170.21875 188.386719 170.125 188.386719 170.007812 Z M 188.386719 170.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.8125 172.589844 C 186.8125 172.472656 186.71875 172.378906 186.601562 172.378906 C 186.484375 172.378906 186.390625 172.472656 186.390625 172.589844 C 186.390625 172.707031 186.484375 172.800781 186.601562 172.800781 C 186.71875 172.800781 186.8125 172.707031 186.8125 172.589844 Z M 186.8125 172.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.636719 174.5 C 189.636719 174.382812 189.542969 174.289062 189.425781 174.289062 C 189.308594 174.289062 189.214844 174.382812 189.214844 174.5 C 189.214844 174.617188 189.308594 174.710938 189.425781 174.710938 C 189.542969 174.710938 189.636719 174.617188 189.636719 174.5 Z M 189.636719 174.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.527344 173.820312 C 188.527344 173.703125 188.433594 173.609375 188.316406 173.609375 C 188.199219 173.609375 188.105469 173.703125 188.105469 173.820312 C 188.105469 173.9375 188.199219 174.03125 188.316406 174.03125 C 188.433594 174.03125 188.527344 173.9375 188.527344 173.820312 Z M 188.527344 173.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.371094 173.8125 C 185.371094 173.695312 185.277344 173.601562 185.160156 173.601562 C 185.042969 173.601562 184.949219 173.695312 184.949219 173.8125 C 184.949219 173.929688 185.042969 174.023438 185.160156 174.023438 C 185.277344 174.023438 185.371094 173.929688 185.371094 173.8125 Z M 185.371094 173.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.125 176.667969 C 189.125 176.550781 189.03125 176.457031 188.914062 176.457031 C 188.796875 176.457031 188.703125 176.550781 188.703125 176.667969 C 188.703125 176.785156 188.796875 176.878906 188.914062 176.878906 C 189.03125 176.878906 189.125 176.785156 189.125 176.667969 Z M 189.125 176.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.4375 175.65625 C 186.4375 175.539062 186.34375 175.445312 186.226562 175.445312 C 186.109375 175.445312 186.015625 175.539062 186.015625 175.65625 C 186.015625 175.773438 186.109375 175.867188 186.226562 175.867188 C 186.34375 175.867188 186.4375 175.773438 186.4375 175.65625 Z M 186.4375 175.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.621094 178.699219 C 188.621094 178.582031 188.527344 178.488281 188.410156 178.488281 C 188.292969 178.488281 188.199219 178.582031 188.199219 178.699219 C 188.199219 178.816406 188.292969 178.910156 188.410156 178.910156 C 188.527344 178.910156 188.621094 178.816406 188.621094 178.699219 Z M 188.621094 178.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.015625 178.925781 C 189.015625 178.808594 188.921875 178.714844 188.804688 178.714844 C 188.6875 178.714844 188.59375 178.808594 188.59375 178.925781 C 188.59375 179.042969 188.6875 179.136719 188.804688 179.136719 C 188.921875 179.136719 189.015625 179.042969 189.015625 178.925781 Z M 189.015625 178.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.789062 178.140625 C 187.789062 178.023438 187.695312 177.929688 187.578125 177.929688 C 187.460938 177.929688 187.367188 178.023438 187.367188 178.140625 C 187.367188 178.257812 187.460938 178.351562 187.578125 178.351562 C 187.695312 178.351562 187.789062 178.257812 187.789062 178.140625 Z M 187.789062 178.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.027344 179.191406 C 190.027344 179.074219 189.933594 178.980469 189.816406 178.980469 C 189.699219 178.980469 189.605469 179.074219 189.605469 179.191406 C 189.605469 179.308594 189.699219 179.402344 189.816406 179.402344 C 189.933594 179.402344 190.027344 179.308594 190.027344 179.191406 Z M 190.027344 179.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.929688 177.59375 C 185.929688 177.476562 185.835938 177.382812 185.71875 177.382812 C 185.601562 177.382812 185.507812 177.476562 185.507812 177.59375 C 185.507812 177.710938 185.601562 177.804688 185.71875 177.804688 C 185.835938 177.804688 185.929688 177.710938 185.929688 177.59375 Z M 185.929688 177.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.710938 176.34375 C 183.710938 176.226562 183.617188 176.132812 183.5 176.132812 C 183.382812 176.132812 183.289062 176.226562 183.289062 176.34375 C 183.289062 176.460938 183.382812 176.554688 183.5 176.554688 C 183.617188 176.554688 183.710938 176.460938 183.710938 176.34375 Z M 183.710938 176.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.558594 175.085938 C 181.558594 174.96875 181.464844 174.875 181.347656 174.875 C 181.230469 174.875 181.136719 174.96875 181.136719 175.085938 C 181.136719 175.203125 181.230469 175.296875 181.347656 175.296875 C 181.464844 175.296875 181.558594 175.203125 181.558594 175.085938 Z M 181.558594 175.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.191406 174.148438 C 181.191406 174.03125 181.097656 173.9375 180.980469 173.9375 C 180.863281 173.9375 180.769531 174.03125 180.769531 174.148438 C 180.769531 174.265625 180.863281 174.359375 180.980469 174.359375 C 181.097656 174.359375 181.191406 174.265625 181.191406 174.148438 Z M 181.191406 174.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.527344 174.324219 C 181.527344 174.207031 181.433594 174.113281 181.316406 174.113281 C 181.199219 174.113281 181.105469 174.207031 181.105469 174.324219 C 181.105469 174.441406 181.199219 174.535156 181.316406 174.535156 C 181.433594 174.535156 181.527344 174.441406 181.527344 174.324219 Z M 181.527344 174.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.433594 172.121094 C 182.433594 172.003906 182.339844 171.910156 182.222656 171.910156 C 182.105469 171.910156 182.011719 172.003906 182.011719 172.121094 C 182.011719 172.238281 182.105469 172.332031 182.222656 172.332031 C 182.339844 172.332031 182.433594 172.238281 182.433594 172.121094 Z M 182.433594 172.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.449219 174.164062 C 183.449219 174.046875 183.355469 173.953125 183.238281 173.953125 C 183.121094 173.953125 183.027344 174.046875 183.027344 174.164062 C 183.027344 174.28125 183.121094 174.375 183.238281 174.375 C 183.355469 174.375 183.449219 174.28125 183.449219 174.164062 Z M 183.449219 174.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.160156 174.195312 C 182.160156 174.078125 182.066406 173.984375 181.949219 173.984375 C 181.832031 173.984375 181.738281 174.078125 181.738281 174.195312 C 181.738281 174.3125 181.832031 174.40625 181.949219 174.40625 C 182.066406 174.40625 182.160156 174.3125 182.160156 174.195312 Z M 182.160156 174.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.691406 171.003906 C 181.691406 170.886719 181.597656 170.792969 181.480469 170.792969 C 181.363281 170.792969 181.269531 170.886719 181.269531 171.003906 C 181.269531 171.121094 181.363281 171.214844 181.480469 171.214844 C 181.597656 171.214844 181.691406 171.121094 181.691406 171.003906 Z M 181.691406 171.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 180.714844 170.511719 C 180.714844 170.394531 180.621094 170.300781 180.503906 170.300781 C 180.386719 170.300781 180.292969 170.394531 180.292969 170.511719 C 180.292969 170.628906 180.386719 170.722656 180.503906 170.722656 C 180.621094 170.722656 180.714844 170.628906 180.714844 170.511719 Z M 180.714844 170.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.941406 166.078125 C 181.941406 165.960938 181.847656 165.867188 181.730469 165.867188 C 181.613281 165.867188 181.519531 165.960938 181.519531 166.078125 C 181.519531 166.195312 181.613281 166.289062 181.730469 166.289062 C 181.847656 166.289062 181.941406 166.195312 181.941406 166.078125 Z M 181.941406 166.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.125 163.257812 C 181.125 163.140625 181.03125 163.046875 180.914062 163.046875 C 180.796875 163.046875 180.703125 163.140625 180.703125 163.257812 C 180.703125 163.375 180.796875 163.46875 180.914062 163.46875 C 181.03125 163.46875 181.125 163.375 181.125 163.257812 Z M 181.125 163.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.671875 163.667969 C 181.671875 163.550781 181.578125 163.457031 181.460938 163.457031 C 181.34375 163.457031 181.25 163.550781 181.25 163.667969 C 181.25 163.785156 181.34375 163.878906 181.460938 163.878906 C 181.578125 163.878906 181.671875 163.785156 181.671875 163.667969 Z M 181.671875 163.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.105469 165.933594 C 184.105469 165.816406 184.011719 165.722656 183.894531 165.722656 C 183.777344 165.722656 183.683594 165.816406 183.683594 165.933594 C 183.683594 166.050781 183.777344 166.144531 183.894531 166.144531 C 184.011719 166.144531 184.105469 166.050781 184.105469 165.933594 Z M 184.105469 165.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.625 166.625 C 183.625 166.507812 183.53125 166.414062 183.414062 166.414062 C 183.296875 166.414062 183.203125 166.507812 183.203125 166.625 C 183.203125 166.742188 183.296875 166.835938 183.414062 166.835938 C 183.53125 166.835938 183.625 166.742188 183.625 166.625 Z M 183.625 166.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.40625 167.6875 C 181.40625 167.570312 181.3125 167.476562 181.195312 167.476562 C 181.078125 167.476562 180.984375 167.570312 180.984375 167.6875 C 180.984375 167.804688 181.078125 167.898438 181.195312 167.898438 C 181.3125 167.898438 181.40625 167.804688 181.40625 167.6875 Z M 181.40625 167.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.351562 171.542969 C 182.351562 171.425781 182.257812 171.332031 182.140625 171.332031 C 182.023438 171.332031 181.929688 171.425781 181.929688 171.542969 C 181.929688 171.660156 182.023438 171.753906 182.140625 171.753906 C 182.257812 171.753906 182.351562 171.660156 182.351562 171.542969 Z M 182.351562 171.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.183594 172.144531 C 184.183594 172.027344 184.089844 171.933594 183.972656 171.933594 C 183.855469 171.933594 183.761719 172.027344 183.761719 172.144531 C 183.761719 172.261719 183.855469 172.355469 183.972656 172.355469 C 184.089844 172.355469 184.183594 172.261719 184.183594 172.144531 Z M 184.183594 172.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.089844 170.320312 C 186.089844 170.203125 185.996094 170.109375 185.878906 170.109375 C 185.761719 170.109375 185.667969 170.203125 185.667969 170.320312 C 185.667969 170.4375 185.761719 170.53125 185.878906 170.53125 C 185.996094 170.53125 186.089844 170.4375 186.089844 170.320312 Z M 186.089844 170.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.703125 170.011719 C 184.703125 169.894531 184.609375 169.800781 184.492188 169.800781 C 184.375 169.800781 184.28125 169.894531 184.28125 170.011719 C 184.28125 170.128906 184.375 170.222656 184.492188 170.222656 C 184.609375 170.222656 184.703125 170.128906 184.703125 170.011719 Z M 184.703125 170.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.480469 169.925781 C 186.480469 169.808594 186.386719 169.714844 186.269531 169.714844 C 186.152344 169.714844 186.058594 169.808594 186.058594 169.925781 C 186.058594 170.042969 186.152344 170.136719 186.269531 170.136719 C 186.386719 170.136719 186.480469 170.042969 186.480469 169.925781 Z M 186.480469 169.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.871094 169.933594 C 185.871094 169.816406 185.777344 169.722656 185.660156 169.722656 C 185.542969 169.722656 185.449219 169.816406 185.449219 169.933594 C 185.449219 170.050781 185.542969 170.144531 185.660156 170.144531 C 185.777344 170.144531 185.871094 170.050781 185.871094 169.933594 Z M 185.871094 169.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.34375 172.160156 C 184.34375 172.042969 184.25 171.949219 184.132812 171.949219 C 184.015625 171.949219 183.921875 172.042969 183.921875 172.160156 C 183.921875 172.277344 184.015625 172.371094 184.132812 172.371094 C 184.25 172.371094 184.34375 172.277344 184.34375 172.160156 Z M 184.34375 172.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.21875 173.765625 C 183.21875 173.648438 183.125 173.554688 183.007812 173.554688 C 182.890625 173.554688 182.796875 173.648438 182.796875 173.765625 C 182.796875 173.882812 182.890625 173.976562 183.007812 173.976562 C 183.125 173.976562 183.21875 173.882812 183.21875 173.765625 Z M 183.21875 173.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.691406 171.8125 C 183.691406 171.695312 183.597656 171.601562 183.480469 171.601562 C 183.363281 171.601562 183.269531 171.695312 183.269531 171.8125 C 183.269531 171.929688 183.363281 172.023438 183.480469 172.023438 C 183.597656 172.023438 183.691406 171.929688 183.691406 171.8125 Z M 183.691406 171.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.285156 168.910156 C 185.285156 168.792969 185.191406 168.699219 185.074219 168.699219 C 184.957031 168.699219 184.863281 168.792969 184.863281 168.910156 C 184.863281 169.027344 184.957031 169.121094 185.074219 169.121094 C 185.191406 169.121094 185.285156 169.027344 185.285156 168.910156 Z M 185.285156 168.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.898438 163.886719 C 184.898438 163.769531 184.804688 163.675781 184.6875 163.675781 C 184.570312 163.675781 184.476562 163.769531 184.476562 163.886719 C 184.476562 164.003906 184.570312 164.097656 184.6875 164.097656 C 184.804688 164.097656 184.898438 164.003906 184.898438 163.886719 Z M 184.898438 163.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.8125 164.199219 C 184.8125 164.082031 184.71875 163.988281 184.601562 163.988281 C 184.484375 163.988281 184.390625 164.082031 184.390625 164.199219 C 184.390625 164.316406 184.484375 164.410156 184.601562 164.410156 C 184.71875 164.410156 184.8125 164.316406 184.8125 164.199219 Z M 184.8125 164.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.644531 165.722656 C 185.644531 165.605469 185.550781 165.511719 185.433594 165.511719 C 185.316406 165.511719 185.222656 165.605469 185.222656 165.722656 C 185.222656 165.839844 185.316406 165.933594 185.433594 165.933594 C 185.550781 165.933594 185.644531 165.839844 185.644531 165.722656 Z M 185.644531 165.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.433594 167.929688 C 190.433594 167.8125 190.339844 167.71875 190.222656 167.71875 C 190.105469 167.71875 190.011719 167.8125 190.011719 167.929688 C 190.011719 168.046875 190.105469 168.140625 190.222656 168.140625 C 190.339844 168.140625 190.433594 168.046875 190.433594 167.929688 Z M 190.433594 167.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.113281 168.910156 C 190.113281 168.792969 190.019531 168.699219 189.902344 168.699219 C 189.785156 168.699219 189.691406 168.792969 189.691406 168.910156 C 189.691406 169.027344 189.785156 169.121094 189.902344 169.121094 C 190.019531 169.121094 190.113281 169.027344 190.113281 168.910156 Z M 190.113281 168.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.222656 172.320312 C 193.222656 172.203125 193.128906 172.109375 193.011719 172.109375 C 192.894531 172.109375 192.800781 172.203125 192.800781 172.320312 C 192.800781 172.4375 192.894531 172.53125 193.011719 172.53125 C 193.128906 172.53125 193.222656 172.4375 193.222656 172.320312 Z M 193.222656 172.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.695312 169.503906 C 195.695312 169.386719 195.601562 169.292969 195.484375 169.292969 C 195.367188 169.292969 195.273438 169.386719 195.273438 169.503906 C 195.273438 169.621094 195.367188 169.714844 195.484375 169.714844 C 195.601562 169.714844 195.695312 169.621094 195.695312 169.503906 Z M 195.695312 169.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.035156 167.851562 C 196.035156 167.734375 195.941406 167.640625 195.824219 167.640625 C 195.707031 167.640625 195.613281 167.734375 195.613281 167.851562 C 195.613281 167.96875 195.707031 168.0625 195.824219 168.0625 C 195.941406 168.0625 196.035156 167.96875 196.035156 167.851562 Z M 196.035156 167.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.398438 166.46875 C 195.398438 166.351562 195.304688 166.257812 195.1875 166.257812 C 195.070312 166.257812 194.976562 166.351562 194.976562 166.46875 C 194.976562 166.585938 195.070312 166.679688 195.1875 166.679688 C 195.304688 166.679688 195.398438 166.585938 195.398438 166.46875 Z M 195.398438 166.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.535156 167.195312 C 196.535156 167.078125 196.441406 166.984375 196.324219 166.984375 C 196.207031 166.984375 196.113281 167.078125 196.113281 167.195312 C 196.113281 167.3125 196.207031 167.40625 196.324219 167.40625 C 196.441406 167.40625 196.535156 167.3125 196.535156 167.195312 Z M 196.535156 167.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.070312 166.910156 C 192.070312 166.792969 191.976562 166.699219 191.859375 166.699219 C 191.742188 166.699219 191.648438 166.792969 191.648438 166.910156 C 191.648438 167.027344 191.742188 167.121094 191.859375 167.121094 C 191.976562 167.121094 192.070312 167.027344 192.070312 166.910156 Z M 192.070312 166.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.726562 168.296875 C 196.726562 168.179688 196.632812 168.085938 196.515625 168.085938 C 196.398438 168.085938 196.304688 168.179688 196.304688 168.296875 C 196.304688 168.414062 196.398438 168.507812 196.515625 168.507812 C 196.632812 168.507812 196.726562 168.414062 196.726562 168.296875 Z M 196.726562 168.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.507812 170.363281 C 199.507812 170.246094 199.414062 170.152344 199.296875 170.152344 C 199.179688 170.152344 199.085938 170.246094 199.085938 170.363281 C 199.085938 170.480469 199.179688 170.574219 199.296875 170.574219 C 199.414062 170.574219 199.507812 170.480469 199.507812 170.363281 Z M 199.507812 170.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.003906 171.730469 C 201.003906 171.613281 200.910156 171.519531 200.792969 171.519531 C 200.675781 171.519531 200.582031 171.613281 200.582031 171.730469 C 200.582031 171.847656 200.675781 171.941406 200.792969 171.941406 C 200.910156 171.941406 201.003906 171.847656 201.003906 171.730469 Z M 201.003906 171.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.347656 171.914062 C 200.347656 171.796875 200.253906 171.703125 200.136719 171.703125 C 200.019531 171.703125 199.925781 171.796875 199.925781 171.914062 C 199.925781 172.03125 200.019531 172.125 200.136719 172.125 C 200.253906 172.125 200.347656 172.03125 200.347656 171.914062 Z M 200.347656 171.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.925781 174.476562 C 199.925781 174.359375 199.832031 174.265625 199.714844 174.265625 C 199.597656 174.265625 199.503906 174.359375 199.503906 174.476562 C 199.503906 174.59375 199.597656 174.6875 199.714844 174.6875 C 199.832031 174.6875 199.925781 174.59375 199.925781 174.476562 Z M 199.925781 174.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.382812 173.878906 C 199.382812 173.761719 199.289062 173.667969 199.171875 173.667969 C 199.054688 173.667969 198.960938 173.761719 198.960938 173.878906 C 198.960938 173.996094 199.054688 174.089844 199.171875 174.089844 C 199.289062 174.089844 199.382812 173.996094 199.382812 173.878906 Z M 199.382812 173.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.324219 177.164062 C 198.324219 177.046875 198.230469 176.953125 198.113281 176.953125 C 197.996094 176.953125 197.902344 177.046875 197.902344 177.164062 C 197.902344 177.28125 197.996094 177.375 198.113281 177.375 C 198.230469 177.375 198.324219 177.28125 198.324219 177.164062 Z M 198.324219 177.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.457031 178.609375 C 201.457031 178.492188 201.363281 178.398438 201.246094 178.398438 C 201.128906 178.398438 201.035156 178.492188 201.035156 178.609375 C 201.035156 178.726562 201.128906 178.820312 201.246094 178.820312 C 201.363281 178.820312 201.457031 178.726562 201.457031 178.609375 Z M 201.457031 178.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.617188 180.785156 C 201.617188 180.667969 201.523438 180.574219 201.40625 180.574219 C 201.289062 180.574219 201.195312 180.667969 201.195312 180.785156 C 201.195312 180.902344 201.289062 180.996094 201.40625 180.996094 C 201.523438 180.996094 201.617188 180.902344 201.617188 180.785156 Z M 201.617188 180.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.445312 179.199219 C 202.445312 179.082031 202.351562 178.988281 202.234375 178.988281 C 202.117188 178.988281 202.023438 179.082031 202.023438 179.199219 C 202.023438 179.316406 202.117188 179.410156 202.234375 179.410156 C 202.351562 179.410156 202.445312 179.316406 202.445312 179.199219 Z M 202.445312 179.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.316406 176.277344 C 203.316406 176.160156 203.222656 176.066406 203.105469 176.066406 C 202.988281 176.066406 202.894531 176.160156 202.894531 176.277344 C 202.894531 176.394531 202.988281 176.488281 203.105469 176.488281 C 203.222656 176.488281 203.316406 176.394531 203.316406 176.277344 Z M 203.316406 176.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.800781 175.039062 C 203.800781 174.921875 203.707031 174.828125 203.589844 174.828125 C 203.472656 174.828125 203.378906 174.921875 203.378906 175.039062 C 203.378906 175.15625 203.472656 175.25 203.589844 175.25 C 203.707031 175.25 203.800781 175.15625 203.800781 175.039062 Z M 203.800781 175.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.8125 175.6875 C 202.8125 175.570312 202.71875 175.476562 202.601562 175.476562 C 202.484375 175.476562 202.390625 175.570312 202.390625 175.6875 C 202.390625 175.804688 202.484375 175.898438 202.601562 175.898438 C 202.71875 175.898438 202.8125 175.804688 202.8125 175.6875 Z M 202.8125 175.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.875 175.445312 C 203.875 175.328125 203.78125 175.234375 203.664062 175.234375 C 203.546875 175.234375 203.453125 175.328125 203.453125 175.445312 C 203.453125 175.5625 203.546875 175.65625 203.664062 175.65625 C 203.78125 175.65625 203.875 175.5625 203.875 175.445312 Z M 203.875 175.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.035156 174.917969 C 203.035156 174.800781 202.941406 174.707031 202.824219 174.707031 C 202.707031 174.707031 202.613281 174.800781 202.613281 174.917969 C 202.613281 175.035156 202.707031 175.128906 202.824219 175.128906 C 202.941406 175.128906 203.035156 175.035156 203.035156 174.917969 Z M 203.035156 174.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.675781 176.148438 C 203.675781 176.03125 203.582031 175.9375 203.464844 175.9375 C 203.347656 175.9375 203.253906 176.03125 203.253906 176.148438 C 203.253906 176.265625 203.347656 176.359375 203.464844 176.359375 C 203.582031 176.359375 203.675781 176.265625 203.675781 176.148438 Z M 203.675781 176.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.898438 176.457031 C 205.898438 176.339844 205.804688 176.246094 205.6875 176.246094 C 205.570312 176.246094 205.476562 176.339844 205.476562 176.457031 C 205.476562 176.574219 205.570312 176.667969 205.6875 176.667969 C 205.804688 176.667969 205.898438 176.574219 205.898438 176.457031 Z M 205.898438 176.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.515625 175.871094 C 203.515625 175.753906 203.421875 175.660156 203.304688 175.660156 C 203.1875 175.660156 203.09375 175.753906 203.09375 175.871094 C 203.09375 175.988281 203.1875 176.082031 203.304688 176.082031 C 203.421875 176.082031 203.515625 175.988281 203.515625 175.871094 Z M 203.515625 175.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.171875 176.945312 C 201.171875 176.828125 201.078125 176.734375 200.960938 176.734375 C 200.84375 176.734375 200.75 176.828125 200.75 176.945312 C 200.75 177.0625 200.84375 177.15625 200.960938 177.15625 C 201.078125 177.15625 201.171875 177.0625 201.171875 176.945312 Z M 201.171875 176.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.828125 177.550781 C 201.828125 177.433594 201.734375 177.339844 201.617188 177.339844 C 201.5 177.339844 201.40625 177.433594 201.40625 177.550781 C 201.40625 177.667969 201.5 177.761719 201.617188 177.761719 C 201.734375 177.761719 201.828125 177.667969 201.828125 177.550781 Z M 201.828125 177.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.003906 178.65625 C 202.003906 178.539062 201.910156 178.445312 201.792969 178.445312 C 201.675781 178.445312 201.582031 178.539062 201.582031 178.65625 C 201.582031 178.773438 201.675781 178.867188 201.792969 178.867188 C 201.910156 178.867188 202.003906 178.773438 202.003906 178.65625 Z M 202.003906 178.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.414062 182.296875 C 203.414062 182.179688 203.320312 182.085938 203.203125 182.085938 C 203.085938 182.085938 202.992188 182.179688 202.992188 182.296875 C 202.992188 182.414062 203.085938 182.507812 203.203125 182.507812 C 203.320312 182.507812 203.414062 182.414062 203.414062 182.296875 Z M 203.414062 182.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.460938 182.65625 C 200.460938 182.539062 200.367188 182.445312 200.25 182.445312 C 200.132812 182.445312 200.039062 182.539062 200.039062 182.65625 C 200.039062 182.773438 200.132812 182.867188 200.25 182.867188 C 200.367188 182.867188 200.460938 182.773438 200.460938 182.65625 Z M 200.460938 182.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.121094 181.054688 C 200.121094 180.9375 200.027344 180.84375 199.910156 180.84375 C 199.792969 180.84375 199.699219 180.9375 199.699219 181.054688 C 199.699219 181.171875 199.792969 181.265625 199.910156 181.265625 C 200.027344 181.265625 200.121094 181.171875 200.121094 181.054688 Z M 200.121094 181.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.324219 181.460938 C 201.324219 181.34375 201.230469 181.25 201.113281 181.25 C 200.996094 181.25 200.902344 181.34375 200.902344 181.460938 C 200.902344 181.578125 200.996094 181.671875 201.113281 181.671875 C 201.230469 181.671875 201.324219 181.578125 201.324219 181.460938 Z M 201.324219 181.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.5625 180.015625 C 204.5625 179.898438 204.46875 179.804688 204.351562 179.804688 C 204.234375 179.804688 204.140625 179.898438 204.140625 180.015625 C 204.140625 180.132812 204.234375 180.226562 204.351562 180.226562 C 204.46875 180.226562 204.5625 180.132812 204.5625 180.015625 Z M 204.5625 180.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.257812 179.140625 C 205.257812 179.023438 205.164062 178.929688 205.046875 178.929688 C 204.929688 178.929688 204.835938 179.023438 204.835938 179.140625 C 204.835938 179.257812 204.929688 179.351562 205.046875 179.351562 C 205.164062 179.351562 205.257812 179.257812 205.257812 179.140625 Z M 205.257812 179.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.230469 178.511719 C 202.230469 178.394531 202.136719 178.300781 202.019531 178.300781 C 201.902344 178.300781 201.808594 178.394531 201.808594 178.511719 C 201.808594 178.628906 201.902344 178.722656 202.019531 178.722656 C 202.136719 178.722656 202.230469 178.628906 202.230469 178.511719 Z M 202.230469 178.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.039062 176.402344 C 201.039062 176.285156 200.945312 176.191406 200.828125 176.191406 C 200.710938 176.191406 200.617188 176.285156 200.617188 176.402344 C 200.617188 176.519531 200.710938 176.613281 200.828125 176.613281 C 200.945312 176.613281 201.039062 176.519531 201.039062 176.402344 Z M 201.039062 176.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.816406 175.277344 C 201.816406 175.160156 201.722656 175.066406 201.605469 175.066406 C 201.488281 175.066406 201.394531 175.160156 201.394531 175.277344 C 201.394531 175.394531 201.488281 175.488281 201.605469 175.488281 C 201.722656 175.488281 201.816406 175.394531 201.816406 175.277344 Z M 201.816406 175.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.210938 171.121094 C 201.210938 171.003906 201.117188 170.910156 201 170.910156 C 200.882812 170.910156 200.789062 171.003906 200.789062 171.121094 C 200.789062 171.238281 200.882812 171.332031 201 171.332031 C 201.117188 171.332031 201.210938 171.238281 201.210938 171.121094 Z M 201.210938 171.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.703125 173.367188 C 204.703125 173.25 204.609375 173.15625 204.492188 173.15625 C 204.375 173.15625 204.28125 173.25 204.28125 173.367188 C 204.28125 173.484375 204.375 173.578125 204.492188 173.578125 C 204.609375 173.578125 204.703125 173.484375 204.703125 173.367188 Z M 204.703125 173.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.128906 172.800781 C 205.128906 172.683594 205.035156 172.589844 204.917969 172.589844 C 204.800781 172.589844 204.707031 172.683594 204.707031 172.800781 C 204.707031 172.917969 204.800781 173.011719 204.917969 173.011719 C 205.035156 173.011719 205.128906 172.917969 205.128906 172.800781 Z M 205.128906 172.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.027344 175.644531 C 207.027344 175.527344 206.933594 175.433594 206.816406 175.433594 C 206.699219 175.433594 206.605469 175.527344 206.605469 175.644531 C 206.605469 175.761719 206.699219 175.855469 206.816406 175.855469 C 206.933594 175.855469 207.027344 175.761719 207.027344 175.644531 Z M 207.027344 175.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.089844 175.921875 C 207.089844 175.804688 206.996094 175.710938 206.878906 175.710938 C 206.761719 175.710938 206.667969 175.804688 206.667969 175.921875 C 206.667969 176.039062 206.761719 176.132812 206.878906 176.132812 C 206.996094 176.132812 207.089844 176.039062 207.089844 175.921875 Z M 207.089844 175.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.429688 177.585938 C 203.429688 177.46875 203.335938 177.375 203.21875 177.375 C 203.101562 177.375 203.007812 177.46875 203.007812 177.585938 C 203.007812 177.703125 203.101562 177.796875 203.21875 177.796875 C 203.335938 177.796875 203.429688 177.703125 203.429688 177.585938 Z M 203.429688 177.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.078125 177.175781 C 202.078125 177.058594 201.984375 176.964844 201.867188 176.964844 C 201.75 176.964844 201.65625 177.058594 201.65625 177.175781 C 201.65625 177.292969 201.75 177.386719 201.867188 177.386719 C 201.984375 177.386719 202.078125 177.292969 202.078125 177.175781 Z M 202.078125 177.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.222656 178.273438 C 200.222656 178.15625 200.128906 178.0625 200.011719 178.0625 C 199.894531 178.0625 199.800781 178.15625 199.800781 178.273438 C 199.800781 178.390625 199.894531 178.484375 200.011719 178.484375 C 200.128906 178.484375 200.222656 178.390625 200.222656 178.273438 Z M 200.222656 178.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.085938 178.710938 C 196.085938 178.59375 195.992188 178.5 195.875 178.5 C 195.757812 178.5 195.664062 178.59375 195.664062 178.710938 C 195.664062 178.828125 195.757812 178.921875 195.875 178.921875 C 195.992188 178.921875 196.085938 178.828125 196.085938 178.710938 Z M 196.085938 178.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.070312 178.894531 C 197.070312 178.777344 196.976562 178.683594 196.859375 178.683594 C 196.742188 178.683594 196.648438 178.777344 196.648438 178.894531 C 196.648438 179.011719 196.742188 179.105469 196.859375 179.105469 C 196.976562 179.105469 197.070312 179.011719 197.070312 178.894531 Z M 197.070312 178.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.722656 176.496094 C 197.722656 176.378906 197.628906 176.285156 197.511719 176.285156 C 197.394531 176.285156 197.300781 176.378906 197.300781 176.496094 C 197.300781 176.613281 197.394531 176.707031 197.511719 176.707031 C 197.628906 176.707031 197.722656 176.613281 197.722656 176.496094 Z M 197.722656 176.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.574219 175.351562 C 198.574219 175.234375 198.480469 175.140625 198.363281 175.140625 C 198.246094 175.140625 198.152344 175.234375 198.152344 175.351562 C 198.152344 175.46875 198.246094 175.5625 198.363281 175.5625 C 198.480469 175.5625 198.574219 175.46875 198.574219 175.351562 Z M 198.574219 175.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.605469 173.601562 C 199.605469 173.484375 199.511719 173.390625 199.394531 173.390625 C 199.277344 173.390625 199.183594 173.484375 199.183594 173.601562 C 199.183594 173.71875 199.277344 173.8125 199.394531 173.8125 C 199.511719 173.8125 199.605469 173.71875 199.605469 173.601562 Z M 199.605469 173.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.394531 174.113281 C 198.394531 173.996094 198.300781 173.902344 198.183594 173.902344 C 198.066406 173.902344 197.972656 173.996094 197.972656 174.113281 C 197.972656 174.230469 198.066406 174.324219 198.183594 174.324219 C 198.300781 174.324219 198.394531 174.230469 198.394531 174.113281 Z M 198.394531 174.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.421875 169.75 C 194.421875 169.632812 194.328125 169.539062 194.210938 169.539062 C 194.09375 169.539062 194 169.632812 194 169.75 C 194 169.867188 194.09375 169.960938 194.210938 169.960938 C 194.328125 169.960938 194.421875 169.867188 194.421875 169.75 Z M 194.421875 169.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.070312 166.453125 C 195.070312 166.335938 194.976562 166.242188 194.859375 166.242188 C 194.742188 166.242188 194.648438 166.335938 194.648438 166.453125 C 194.648438 166.570312 194.742188 166.664062 194.859375 166.664062 C 194.976562 166.664062 195.070312 166.570312 195.070312 166.453125 Z M 195.070312 166.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.664062 163.664062 C 193.664062 163.546875 193.570312 163.453125 193.453125 163.453125 C 193.335938 163.453125 193.242188 163.546875 193.242188 163.664062 C 193.242188 163.78125 193.335938 163.875 193.453125 163.875 C 193.570312 163.875 193.664062 163.78125 193.664062 163.664062 Z M 193.664062 163.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.214844 160.59375 C 191.214844 160.476562 191.121094 160.382812 191.003906 160.382812 C 190.886719 160.382812 190.792969 160.476562 190.792969 160.59375 C 190.792969 160.710938 190.886719 160.804688 191.003906 160.804688 C 191.121094 160.804688 191.214844 160.710938 191.214844 160.59375 Z M 191.214844 160.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.730469 163.984375 C 190.730469 163.867188 190.636719 163.773438 190.519531 163.773438 C 190.402344 163.773438 190.308594 163.867188 190.308594 163.984375 C 190.308594 164.101562 190.402344 164.195312 190.519531 164.195312 C 190.636719 164.195312 190.730469 164.101562 190.730469 163.984375 Z M 190.730469 163.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.730469 165.890625 C 188.730469 165.773438 188.636719 165.679688 188.519531 165.679688 C 188.402344 165.679688 188.308594 165.773438 188.308594 165.890625 C 188.308594 166.007812 188.402344 166.101562 188.519531 166.101562 C 188.636719 166.101562 188.730469 166.007812 188.730469 165.890625 Z M 188.730469 165.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.96875 170.863281 C 185.96875 170.746094 185.875 170.652344 185.757812 170.652344 C 185.640625 170.652344 185.546875 170.746094 185.546875 170.863281 C 185.546875 170.980469 185.640625 171.074219 185.757812 171.074219 C 185.875 171.074219 185.96875 170.980469 185.96875 170.863281 Z M 185.96875 170.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.917969 172.285156 C 186.917969 172.167969 186.824219 172.074219 186.707031 172.074219 C 186.589844 172.074219 186.496094 172.167969 186.496094 172.285156 C 186.496094 172.402344 186.589844 172.496094 186.707031 172.496094 C 186.824219 172.496094 186.917969 172.402344 186.917969 172.285156 Z M 186.917969 172.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.667969 174.078125 C 189.667969 173.960938 189.574219 173.867188 189.457031 173.867188 C 189.339844 173.867188 189.246094 173.960938 189.246094 174.078125 C 189.246094 174.195312 189.339844 174.289062 189.457031 174.289062 C 189.574219 174.289062 189.667969 174.195312 189.667969 174.078125 Z M 189.667969 174.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.839844 173.742188 C 192.839844 173.625 192.746094 173.53125 192.628906 173.53125 C 192.511719 173.53125 192.417969 173.625 192.417969 173.742188 C 192.417969 173.859375 192.511719 173.953125 192.628906 173.953125 C 192.746094 173.953125 192.839844 173.859375 192.839844 173.742188 Z M 192.839844 173.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.957031 172.730469 C 196.957031 172.613281 196.863281 172.519531 196.746094 172.519531 C 196.628906 172.519531 196.535156 172.613281 196.535156 172.730469 C 196.535156 172.847656 196.628906 172.941406 196.746094 172.941406 C 196.863281 172.941406 196.957031 172.847656 196.957031 172.730469 Z M 196.957031 172.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.988281 171.652344 C 196.988281 171.535156 196.894531 171.441406 196.777344 171.441406 C 196.660156 171.441406 196.566406 171.535156 196.566406 171.652344 C 196.566406 171.769531 196.660156 171.863281 196.777344 171.863281 C 196.894531 171.863281 196.988281 171.769531 196.988281 171.652344 Z M 196.988281 171.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.324219 169.3125 C 199.324219 169.195312 199.230469 169.101562 199.113281 169.101562 C 198.996094 169.101562 198.902344 169.195312 198.902344 169.3125 C 198.902344 169.429688 198.996094 169.523438 199.113281 169.523438 C 199.230469 169.523438 199.324219 169.429688 199.324219 169.3125 Z M 199.324219 169.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.574219 167.902344 C 199.574219 167.785156 199.480469 167.691406 199.363281 167.691406 C 199.246094 167.691406 199.152344 167.785156 199.152344 167.902344 C 199.152344 168.019531 199.246094 168.113281 199.363281 168.113281 C 199.480469 168.113281 199.574219 168.019531 199.574219 167.902344 Z M 199.574219 167.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.175781 166.792969 C 198.175781 166.675781 198.082031 166.582031 197.964844 166.582031 C 197.847656 166.582031 197.753906 166.675781 197.753906 166.792969 C 197.753906 166.910156 197.847656 167.003906 197.964844 167.003906 C 198.082031 167.003906 198.175781 166.910156 198.175781 166.792969 Z M 198.175781 166.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.84375 166.894531 C 199.84375 166.777344 199.75 166.683594 199.632812 166.683594 C 199.515625 166.683594 199.421875 166.777344 199.421875 166.894531 C 199.421875 167.011719 199.515625 167.105469 199.632812 167.105469 C 199.75 167.105469 199.84375 167.011719 199.84375 166.894531 Z M 199.84375 166.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.386719 169.476562 C 203.386719 169.359375 203.292969 169.265625 203.175781 169.265625 C 203.058594 169.265625 202.964844 169.359375 202.964844 169.476562 C 202.964844 169.59375 203.058594 169.6875 203.175781 169.6875 C 203.292969 169.6875 203.386719 169.59375 203.386719 169.476562 Z M 203.386719 169.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.707031 171.097656 C 198.707031 170.980469 198.613281 170.886719 198.496094 170.886719 C 198.378906 170.886719 198.285156 170.980469 198.285156 171.097656 C 198.285156 171.214844 198.378906 171.308594 198.496094 171.308594 C 198.613281 171.308594 198.707031 171.214844 198.707031 171.097656 Z M 198.707031 171.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.382812 170.441406 C 197.382812 170.324219 197.289062 170.230469 197.171875 170.230469 C 197.054688 170.230469 196.960938 170.324219 196.960938 170.441406 C 196.960938 170.558594 197.054688 170.652344 197.171875 170.652344 C 197.289062 170.652344 197.382812 170.558594 197.382812 170.441406 Z M 197.382812 170.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.371094 167.628906 C 197.371094 167.511719 197.277344 167.417969 197.160156 167.417969 C 197.042969 167.417969 196.949219 167.511719 196.949219 167.628906 C 196.949219 167.746094 197.042969 167.839844 197.160156 167.839844 C 197.277344 167.839844 197.371094 167.746094 197.371094 167.628906 Z M 197.371094 167.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.527344 163.847656 C 198.527344 163.730469 198.433594 163.636719 198.316406 163.636719 C 198.199219 163.636719 198.105469 163.730469 198.105469 163.847656 C 198.105469 163.964844 198.199219 164.058594 198.316406 164.058594 C 198.433594 164.058594 198.527344 163.964844 198.527344 163.847656 Z M 198.527344 163.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.085938 162.441406 C 201.085938 162.324219 200.992188 162.230469 200.875 162.230469 C 200.757812 162.230469 200.664062 162.324219 200.664062 162.441406 C 200.664062 162.558594 200.757812 162.652344 200.875 162.652344 C 200.992188 162.652344 201.085938 162.558594 201.085938 162.441406 Z M 201.085938 162.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.382812 162.136719 C 202.382812 162.019531 202.289062 161.925781 202.171875 161.925781 C 202.054688 161.925781 201.960938 162.019531 201.960938 162.136719 C 201.960938 162.253906 202.054688 162.347656 202.171875 162.347656 C 202.289062 162.347656 202.382812 162.253906 202.382812 162.136719 Z M 202.382812 162.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.601562 161.921875 C 202.601562 161.804688 202.507812 161.710938 202.390625 161.710938 C 202.273438 161.710938 202.179688 161.804688 202.179688 161.921875 C 202.179688 162.039062 202.273438 162.132812 202.390625 162.132812 C 202.507812 162.132812 202.601562 162.039062 202.601562 161.921875 Z M 202.601562 161.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.617188 159.644531 C 199.617188 159.527344 199.523438 159.433594 199.40625 159.433594 C 199.289062 159.433594 199.195312 159.527344 199.195312 159.644531 C 199.195312 159.761719 199.289062 159.855469 199.40625 159.855469 C 199.523438 159.855469 199.617188 159.761719 199.617188 159.644531 Z M 199.617188 159.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.445312 159.59375 C 195.445312 159.476562 195.351562 159.382812 195.234375 159.382812 C 195.117188 159.382812 195.023438 159.476562 195.023438 159.59375 C 195.023438 159.710938 195.117188 159.804688 195.234375 159.804688 C 195.351562 159.804688 195.445312 159.710938 195.445312 159.59375 Z M 195.445312 159.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.773438 160.652344 C 200.773438 160.535156 200.679688 160.441406 200.5625 160.441406 C 200.445312 160.441406 200.351562 160.535156 200.351562 160.652344 C 200.351562 160.769531 200.445312 160.863281 200.5625 160.863281 C 200.679688 160.863281 200.773438 160.769531 200.773438 160.652344 Z M 200.773438 160.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.078125 161.492188 C 199.078125 161.375 198.984375 161.28125 198.867188 161.28125 C 198.75 161.28125 198.65625 161.375 198.65625 161.492188 C 198.65625 161.609375 198.75 161.703125 198.867188 161.703125 C 198.984375 161.703125 199.078125 161.609375 199.078125 161.492188 Z M 199.078125 161.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.417969 159.335938 C 202.417969 159.21875 202.324219 159.125 202.207031 159.125 C 202.089844 159.125 201.996094 159.21875 201.996094 159.335938 C 201.996094 159.453125 202.089844 159.546875 202.207031 159.546875 C 202.324219 159.546875 202.417969 159.453125 202.417969 159.335938 Z M 202.417969 159.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.3125 158.996094 C 204.3125 158.878906 204.21875 158.785156 204.101562 158.785156 C 203.984375 158.785156 203.890625 158.878906 203.890625 158.996094 C 203.890625 159.113281 203.984375 159.207031 204.101562 159.207031 C 204.21875 159.207031 204.3125 159.113281 204.3125 158.996094 Z M 204.3125 158.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.210938 165.160156 C 206.210938 165.042969 206.117188 164.949219 206 164.949219 C 205.882812 164.949219 205.789062 165.042969 205.789062 165.160156 C 205.789062 165.277344 205.882812 165.371094 206 165.371094 C 206.117188 165.371094 206.210938 165.277344 206.210938 165.160156 Z M 206.210938 165.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.316406 170.195312 C 208.316406 170.078125 208.222656 169.984375 208.105469 169.984375 C 207.988281 169.984375 207.894531 170.078125 207.894531 170.195312 C 207.894531 170.3125 207.988281 170.40625 208.105469 170.40625 C 208.222656 170.40625 208.316406 170.3125 208.316406 170.195312 Z M 208.316406 170.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.691406 169.074219 C 204.691406 168.957031 204.597656 168.863281 204.480469 168.863281 C 204.363281 168.863281 204.269531 168.957031 204.269531 169.074219 C 204.269531 169.191406 204.363281 169.285156 204.480469 169.285156 C 204.597656 169.285156 204.691406 169.191406 204.691406 169.074219 Z M 204.691406 169.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.605469 169.78125 C 204.605469 169.664062 204.511719 169.570312 204.394531 169.570312 C 204.277344 169.570312 204.183594 169.664062 204.183594 169.78125 C 204.183594 169.898438 204.277344 169.992188 204.394531 169.992188 C 204.511719 169.992188 204.605469 169.898438 204.605469 169.78125 Z M 204.605469 169.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.851562 172.613281 C 204.851562 172.496094 204.757812 172.402344 204.640625 172.402344 C 204.523438 172.402344 204.429688 172.496094 204.429688 172.613281 C 204.429688 172.730469 204.523438 172.824219 204.640625 172.824219 C 204.757812 172.824219 204.851562 172.730469 204.851562 172.613281 Z M 204.851562 172.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.148438 171.21875 C 205.148438 171.101562 205.054688 171.007812 204.9375 171.007812 C 204.820312 171.007812 204.726562 171.101562 204.726562 171.21875 C 204.726562 171.335938 204.820312 171.429688 204.9375 171.429688 C 205.054688 171.429688 205.148438 171.335938 205.148438 171.21875 Z M 205.148438 171.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.039062 173.605469 C 203.039062 173.488281 202.945312 173.394531 202.828125 173.394531 C 202.710938 173.394531 202.617188 173.488281 202.617188 173.605469 C 202.617188 173.722656 202.710938 173.816406 202.828125 173.816406 C 202.945312 173.816406 203.039062 173.722656 203.039062 173.605469 Z M 203.039062 173.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.859375 175.066406 C 203.859375 174.949219 203.765625 174.855469 203.648438 174.855469 C 203.53125 174.855469 203.4375 174.949219 203.4375 175.066406 C 203.4375 175.183594 203.53125 175.277344 203.648438 175.277344 C 203.765625 175.277344 203.859375 175.183594 203.859375 175.066406 Z M 203.859375 175.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.683594 178.832031 C 203.683594 178.714844 203.589844 178.621094 203.472656 178.621094 C 203.355469 178.621094 203.261719 178.714844 203.261719 178.832031 C 203.261719 178.949219 203.355469 179.042969 203.472656 179.042969 C 203.589844 179.042969 203.683594 178.949219 203.683594 178.832031 Z M 203.683594 178.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.703125 181.53125 C 202.703125 181.414062 202.609375 181.320312 202.492188 181.320312 C 202.375 181.320312 202.28125 181.414062 202.28125 181.53125 C 202.28125 181.648438 202.375 181.742188 202.492188 181.742188 C 202.609375 181.742188 202.703125 181.648438 202.703125 181.53125 Z M 202.703125 181.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.433594 178.832031 C 203.433594 178.714844 203.339844 178.621094 203.222656 178.621094 C 203.105469 178.621094 203.011719 178.714844 203.011719 178.832031 C 203.011719 178.949219 203.105469 179.042969 203.222656 179.042969 C 203.339844 179.042969 203.433594 178.949219 203.433594 178.832031 Z M 203.433594 178.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.761719 180.820312 C 205.761719 180.703125 205.667969 180.609375 205.550781 180.609375 C 205.433594 180.609375 205.339844 180.703125 205.339844 180.820312 C 205.339844 180.9375 205.433594 181.03125 205.550781 181.03125 C 205.667969 181.03125 205.761719 180.9375 205.761719 180.820312 Z M 205.761719 180.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.898438 179.113281 C 205.898438 178.996094 205.804688 178.902344 205.6875 178.902344 C 205.570312 178.902344 205.476562 178.996094 205.476562 179.113281 C 205.476562 179.230469 205.570312 179.324219 205.6875 179.324219 C 205.804688 179.324219 205.898438 179.230469 205.898438 179.113281 Z M 205.898438 179.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.015625 178.234375 C 204.015625 178.117188 203.921875 178.023438 203.804688 178.023438 C 203.6875 178.023438 203.59375 178.117188 203.59375 178.234375 C 203.59375 178.351562 203.6875 178.445312 203.804688 178.445312 C 203.921875 178.445312 204.015625 178.351562 204.015625 178.234375 Z M 204.015625 178.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.28125 180.75 C 201.28125 180.632812 201.1875 180.539062 201.070312 180.539062 C 200.953125 180.539062 200.859375 180.632812 200.859375 180.75 C 200.859375 180.867188 200.953125 180.960938 201.070312 180.960938 C 201.1875 180.960938 201.28125 180.867188 201.28125 180.75 Z M 201.28125 180.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.386719 179.695312 C 201.386719 179.578125 201.292969 179.484375 201.175781 179.484375 C 201.058594 179.484375 200.964844 179.578125 200.964844 179.695312 C 200.964844 179.8125 201.058594 179.90625 201.175781 179.90625 C 201.292969 179.90625 201.386719 179.8125 201.386719 179.695312 Z M 201.386719 179.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.21875 182.601562 C 201.21875 182.484375 201.125 182.390625 201.007812 182.390625 C 200.890625 182.390625 200.796875 182.484375 200.796875 182.601562 C 200.796875 182.71875 200.890625 182.8125 201.007812 182.8125 C 201.125 182.8125 201.21875 182.71875 201.21875 182.601562 Z M 201.21875 182.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.9375 186.855469 C 202.9375 186.738281 202.84375 186.644531 202.726562 186.644531 C 202.609375 186.644531 202.515625 186.738281 202.515625 186.855469 C 202.515625 186.972656 202.609375 187.066406 202.726562 187.066406 C 202.84375 187.066406 202.9375 186.972656 202.9375 186.855469 Z M 202.9375 186.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.585938 184.039062 C 200.585938 183.921875 200.492188 183.828125 200.375 183.828125 C 200.257812 183.828125 200.164062 183.921875 200.164062 184.039062 C 200.164062 184.15625 200.257812 184.25 200.375 184.25 C 200.492188 184.25 200.585938 184.15625 200.585938 184.039062 Z M 200.585938 184.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.394531 182.605469 C 204.394531 182.488281 204.300781 182.394531 204.183594 182.394531 C 204.066406 182.394531 203.972656 182.488281 203.972656 182.605469 C 203.972656 182.722656 204.066406 182.816406 204.183594 182.816406 C 204.300781 182.816406 204.394531 182.722656 204.394531 182.605469 Z M 204.394531 182.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.257812 185.140625 C 204.257812 185.023438 204.164062 184.929688 204.046875 184.929688 C 203.929688 184.929688 203.835938 185.023438 203.835938 185.140625 C 203.835938 185.257812 203.929688 185.351562 204.046875 185.351562 C 204.164062 185.351562 204.257812 185.257812 204.257812 185.140625 Z M 204.257812 185.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.011719 186.054688 C 205.011719 185.9375 204.917969 185.84375 204.800781 185.84375 C 204.683594 185.84375 204.589844 185.9375 204.589844 186.054688 C 204.589844 186.171875 204.683594 186.265625 204.800781 186.265625 C 204.917969 186.265625 205.011719 186.171875 205.011719 186.054688 Z M 205.011719 186.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.160156 186.484375 C 201.160156 186.367188 201.066406 186.273438 200.949219 186.273438 C 200.832031 186.273438 200.738281 186.367188 200.738281 186.484375 C 200.738281 186.601562 200.832031 186.695312 200.949219 186.695312 C 201.066406 186.695312 201.160156 186.601562 201.160156 186.484375 Z M 201.160156 186.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.003906 188.894531 C 197.003906 188.777344 196.910156 188.683594 196.792969 188.683594 C 196.675781 188.683594 196.582031 188.777344 196.582031 188.894531 C 196.582031 189.011719 196.675781 189.105469 196.792969 189.105469 C 196.910156 189.105469 197.003906 189.011719 197.003906 188.894531 Z M 197.003906 188.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.996094 191.378906 C 199.996094 191.261719 199.902344 191.167969 199.785156 191.167969 C 199.667969 191.167969 199.574219 191.261719 199.574219 191.378906 C 199.574219 191.496094 199.667969 191.589844 199.785156 191.589844 C 199.902344 191.589844 199.996094 191.496094 199.996094 191.378906 Z M 199.996094 191.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.433594 193.078125 C 196.433594 192.960938 196.339844 192.867188 196.222656 192.867188 C 196.105469 192.867188 196.011719 192.960938 196.011719 193.078125 C 196.011719 193.195312 196.105469 193.289062 196.222656 193.289062 C 196.339844 193.289062 196.433594 193.195312 196.433594 193.078125 Z M 196.433594 193.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.128906 196.539062 C 197.128906 196.421875 197.035156 196.328125 196.917969 196.328125 C 196.800781 196.328125 196.707031 196.421875 196.707031 196.539062 C 196.707031 196.65625 196.800781 196.75 196.917969 196.75 C 197.035156 196.75 197.128906 196.65625 197.128906 196.539062 Z M 197.128906 196.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.195312 198.335938 C 200.195312 198.21875 200.101562 198.125 199.984375 198.125 C 199.867188 198.125 199.773438 198.21875 199.773438 198.335938 C 199.773438 198.453125 199.867188 198.546875 199.984375 198.546875 C 200.101562 198.546875 200.195312 198.453125 200.195312 198.335938 Z M 200.195312 198.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.308594 200.714844 C 201.308594 200.597656 201.214844 200.503906 201.097656 200.503906 C 200.980469 200.503906 200.886719 200.597656 200.886719 200.714844 C 200.886719 200.832031 200.980469 200.925781 201.097656 200.925781 C 201.214844 200.925781 201.308594 200.832031 201.308594 200.714844 Z M 201.308594 200.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.113281 203.808594 C 202.113281 203.691406 202.019531 203.597656 201.902344 203.597656 C 201.785156 203.597656 201.691406 203.691406 201.691406 203.808594 C 201.691406 203.925781 201.785156 204.019531 201.902344 204.019531 C 202.019531 204.019531 202.113281 203.925781 202.113281 203.808594 Z M 202.113281 203.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.359375 205.679688 C 203.359375 205.5625 203.265625 205.46875 203.148438 205.46875 C 203.03125 205.46875 202.9375 205.5625 202.9375 205.679688 C 202.9375 205.796875 203.03125 205.890625 203.148438 205.890625 C 203.265625 205.890625 203.359375 205.796875 203.359375 205.679688 Z M 203.359375 205.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.191406 201.296875 C 204.191406 201.179688 204.097656 201.085938 203.980469 201.085938 C 203.863281 201.085938 203.769531 201.179688 203.769531 201.296875 C 203.769531 201.414062 203.863281 201.507812 203.980469 201.507812 C 204.097656 201.507812 204.191406 201.414062 204.191406 201.296875 Z M 204.191406 201.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.253906 198.890625 C 207.253906 198.773438 207.160156 198.679688 207.042969 198.679688 C 206.925781 198.679688 206.832031 198.773438 206.832031 198.890625 C 206.832031 199.007812 206.925781 199.101562 207.042969 199.101562 C 207.160156 199.101562 207.253906 199.007812 207.253906 198.890625 Z M 207.253906 198.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.441406 200.125 C 208.441406 200.007812 208.347656 199.914062 208.230469 199.914062 C 208.113281 199.914062 208.019531 200.007812 208.019531 200.125 C 208.019531 200.242188 208.113281 200.335938 208.230469 200.335938 C 208.347656 200.335938 208.441406 200.242188 208.441406 200.125 Z M 208.441406 200.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.988281 197.734375 C 210.988281 197.617188 210.894531 197.523438 210.777344 197.523438 C 210.660156 197.523438 210.566406 197.617188 210.566406 197.734375 C 210.566406 197.851562 210.660156 197.945312 210.777344 197.945312 C 210.894531 197.945312 210.988281 197.851562 210.988281 197.734375 Z M 210.988281 197.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.5 201.664062 C 210.5 201.546875 210.40625 201.453125 210.289062 201.453125 C 210.171875 201.453125 210.078125 201.546875 210.078125 201.664062 C 210.078125 201.78125 210.171875 201.875 210.289062 201.875 C 210.40625 201.875 210.5 201.78125 210.5 201.664062 Z M 210.5 201.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.960938 199.699219 C 213.960938 199.582031 213.867188 199.488281 213.75 199.488281 C 213.632812 199.488281 213.539062 199.582031 213.539062 199.699219 C 213.539062 199.816406 213.632812 199.910156 213.75 199.910156 C 213.867188 199.910156 213.960938 199.816406 213.960938 199.699219 Z M 213.960938 199.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.929688 201.9375 C 213.929688 201.820312 213.835938 201.726562 213.71875 201.726562 C 213.601562 201.726562 213.507812 201.820312 213.507812 201.9375 C 213.507812 202.054688 213.601562 202.148438 213.71875 202.148438 C 213.835938 202.148438 213.929688 202.054688 213.929688 201.9375 Z M 213.929688 201.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.09375 204.304688 C 215.09375 204.1875 215 204.09375 214.882812 204.09375 C 214.765625 204.09375 214.671875 204.1875 214.671875 204.304688 C 214.671875 204.421875 214.765625 204.515625 214.882812 204.515625 C 215 204.515625 215.09375 204.421875 215.09375 204.304688 Z M 215.09375 204.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.28125 205.609375 C 213.28125 205.492188 213.1875 205.398438 213.070312 205.398438 C 212.953125 205.398438 212.859375 205.492188 212.859375 205.609375 C 212.859375 205.726562 212.953125 205.820312 213.070312 205.820312 C 213.1875 205.820312 213.28125 205.726562 213.28125 205.609375 Z M 213.28125 205.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.421875 205.023438 C 212.421875 204.90625 212.328125 204.8125 212.210938 204.8125 C 212.09375 204.8125 212 204.90625 212 205.023438 C 212 205.140625 212.09375 205.234375 212.210938 205.234375 C 212.328125 205.234375 212.421875 205.140625 212.421875 205.023438 Z M 212.421875 205.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.703125 204.265625 C 213.703125 204.148438 213.609375 204.054688 213.492188 204.054688 C 213.375 204.054688 213.28125 204.148438 213.28125 204.265625 C 213.28125 204.382812 213.375 204.476562 213.492188 204.476562 C 213.609375 204.476562 213.703125 204.382812 213.703125 204.265625 Z M 213.703125 204.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.085938 203.824219 C 212.085938 203.707031 211.992188 203.613281 211.875 203.613281 C 211.757812 203.613281 211.664062 203.707031 211.664062 203.824219 C 211.664062 203.941406 211.757812 204.035156 211.875 204.035156 C 211.992188 204.035156 212.085938 203.941406 212.085938 203.824219 Z M 212.085938 203.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.574219 207.878906 C 213.574219 207.761719 213.480469 207.667969 213.363281 207.667969 C 213.246094 207.667969 213.152344 207.761719 213.152344 207.878906 C 213.152344 207.996094 213.246094 208.089844 213.363281 208.089844 C 213.480469 208.089844 213.574219 207.996094 213.574219 207.878906 Z M 213.574219 207.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.699219 208.136719 C 214.699219 208.019531 214.605469 207.925781 214.488281 207.925781 C 214.371094 207.925781 214.277344 208.019531 214.277344 208.136719 C 214.277344 208.253906 214.371094 208.347656 214.488281 208.347656 C 214.605469 208.347656 214.699219 208.253906 214.699219 208.136719 Z M 214.699219 208.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.667969 210.351562 C 214.667969 210.234375 214.574219 210.140625 214.457031 210.140625 C 214.339844 210.140625 214.246094 210.234375 214.246094 210.351562 C 214.246094 210.46875 214.339844 210.5625 214.457031 210.5625 C 214.574219 210.5625 214.667969 210.46875 214.667969 210.351562 Z M 214.667969 210.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.625 211.832031 C 211.625 211.714844 211.53125 211.621094 211.414062 211.621094 C 211.296875 211.621094 211.203125 211.714844 211.203125 211.832031 C 211.203125 211.949219 211.296875 212.042969 211.414062 212.042969 C 211.53125 212.042969 211.625 211.949219 211.625 211.832031 Z M 211.625 211.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.472656 213.140625 C 211.472656 213.023438 211.378906 212.929688 211.261719 212.929688 C 211.144531 212.929688 211.050781 213.023438 211.050781 213.140625 C 211.050781 213.257812 211.144531 213.351562 211.261719 213.351562 C 211.378906 213.351562 211.472656 213.257812 211.472656 213.140625 Z M 211.472656 213.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.386719 216.25 C 212.386719 216.132812 212.292969 216.039062 212.175781 216.039062 C 212.058594 216.039062 211.964844 216.132812 211.964844 216.25 C 211.964844 216.367188 212.058594 216.460938 212.175781 216.460938 C 212.292969 216.460938 212.386719 216.367188 212.386719 216.25 Z M 212.386719 216.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.992188 218.265625 C 211.992188 218.148438 211.898438 218.054688 211.78125 218.054688 C 211.664062 218.054688 211.570312 218.148438 211.570312 218.265625 C 211.570312 218.382812 211.664062 218.476562 211.78125 218.476562 C 211.898438 218.476562 211.992188 218.382812 211.992188 218.265625 Z M 211.992188 218.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.832031 216.730469 C 205.832031 216.613281 205.738281 216.519531 205.621094 216.519531 C 205.503906 216.519531 205.410156 216.613281 205.410156 216.730469 C 205.410156 216.847656 205.503906 216.941406 205.621094 216.941406 C 205.738281 216.941406 205.832031 216.847656 205.832031 216.730469 Z M 205.832031 216.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.210938 217.460938 C 206.210938 217.34375 206.117188 217.25 206 217.25 C 205.882812 217.25 205.789062 217.34375 205.789062 217.460938 C 205.789062 217.578125 205.882812 217.671875 206 217.671875 C 206.117188 217.671875 206.210938 217.578125 206.210938 217.460938 Z M 206.210938 217.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.902344 215.226562 C 208.902344 215.109375 208.808594 215.015625 208.691406 215.015625 C 208.574219 215.015625 208.480469 215.109375 208.480469 215.226562 C 208.480469 215.34375 208.574219 215.4375 208.691406 215.4375 C 208.808594 215.4375 208.902344 215.34375 208.902344 215.226562 Z M 208.902344 215.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.710938 211.703125 C 207.710938 211.585938 207.617188 211.492188 207.5 211.492188 C 207.382812 211.492188 207.289062 211.585938 207.289062 211.703125 C 207.289062 211.820312 207.382812 211.914062 207.5 211.914062 C 207.617188 211.914062 207.710938 211.820312 207.710938 211.703125 Z M 207.710938 211.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.742188 212.261719 C 207.742188 212.144531 207.648438 212.050781 207.53125 212.050781 C 207.414062 212.050781 207.320312 212.144531 207.320312 212.261719 C 207.320312 212.378906 207.414062 212.472656 207.53125 212.472656 C 207.648438 212.472656 207.742188 212.378906 207.742188 212.261719 Z M 207.742188 212.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.871094 213.261719 C 210.871094 213.144531 210.777344 213.050781 210.660156 213.050781 C 210.542969 213.050781 210.449219 213.144531 210.449219 213.261719 C 210.449219 213.378906 210.542969 213.472656 210.660156 213.472656 C 210.777344 213.472656 210.871094 213.378906 210.871094 213.261719 Z M 210.871094 213.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.753906 214.855469 C 211.753906 214.738281 211.660156 214.644531 211.542969 214.644531 C 211.425781 214.644531 211.332031 214.738281 211.332031 214.855469 C 211.332031 214.972656 211.425781 215.066406 211.542969 215.066406 C 211.660156 215.066406 211.753906 214.972656 211.753906 214.855469 Z M 211.753906 214.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.976562 214.019531 C 209.976562 213.902344 209.882812 213.808594 209.765625 213.808594 C 209.648438 213.808594 209.554688 213.902344 209.554688 214.019531 C 209.554688 214.136719 209.648438 214.230469 209.765625 214.230469 C 209.882812 214.230469 209.976562 214.136719 209.976562 214.019531 Z M 209.976562 214.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.824219 214.277344 C 208.824219 214.160156 208.730469 214.066406 208.613281 214.066406 C 208.496094 214.066406 208.402344 214.160156 208.402344 214.277344 C 208.402344 214.394531 208.496094 214.488281 208.613281 214.488281 C 208.730469 214.488281 208.824219 214.394531 208.824219 214.277344 Z M 208.824219 214.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.46875 216.695312 C 208.46875 216.578125 208.375 216.484375 208.257812 216.484375 C 208.140625 216.484375 208.046875 216.578125 208.046875 216.695312 C 208.046875 216.8125 208.140625 216.90625 208.257812 216.90625 C 208.375 216.90625 208.46875 216.8125 208.46875 216.695312 Z M 208.46875 216.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.335938 219.875 C 211.335938 219.757812 211.242188 219.664062 211.125 219.664062 C 211.007812 219.664062 210.914062 219.757812 210.914062 219.875 C 210.914062 219.992188 211.007812 220.085938 211.125 220.085938 C 211.242188 220.085938 211.335938 219.992188 211.335938 219.875 Z M 211.335938 219.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.207031 216.121094 C 216.207031 216.003906 216.113281 215.910156 215.996094 215.910156 C 215.878906 215.910156 215.785156 216.003906 215.785156 216.121094 C 215.785156 216.238281 215.878906 216.332031 215.996094 216.332031 C 216.113281 216.332031 216.207031 216.238281 216.207031 216.121094 Z M 216.207031 216.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.480469 209.789062 C 217.480469 209.671875 217.386719 209.578125 217.269531 209.578125 C 217.152344 209.578125 217.058594 209.671875 217.058594 209.789062 C 217.058594 209.90625 217.152344 210 217.269531 210 C 217.386719 210 217.480469 209.90625 217.480469 209.789062 Z M 217.480469 209.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.195312 208.039062 C 219.195312 207.921875 219.101562 207.828125 218.984375 207.828125 C 218.867188 207.828125 218.773438 207.921875 218.773438 208.039062 C 218.773438 208.15625 218.867188 208.25 218.984375 208.25 C 219.101562 208.25 219.195312 208.15625 219.195312 208.039062 Z M 219.195312 208.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.074219 211.304688 C 217.074219 211.1875 216.980469 211.09375 216.863281 211.09375 C 216.746094 211.09375 216.652344 211.1875 216.652344 211.304688 C 216.652344 211.421875 216.746094 211.515625 216.863281 211.515625 C 216.980469 211.515625 217.074219 211.421875 217.074219 211.304688 Z M 217.074219 211.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.890625 211.488281 C 215.890625 211.371094 215.796875 211.277344 215.679688 211.277344 C 215.5625 211.277344 215.46875 211.371094 215.46875 211.488281 C 215.46875 211.605469 215.5625 211.699219 215.679688 211.699219 C 215.796875 211.699219 215.890625 211.605469 215.890625 211.488281 Z M 215.890625 211.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.609375 212.515625 C 215.609375 212.398438 215.515625 212.304688 215.398438 212.304688 C 215.28125 212.304688 215.1875 212.398438 215.1875 212.515625 C 215.1875 212.632812 215.28125 212.726562 215.398438 212.726562 C 215.515625 212.726562 215.609375 212.632812 215.609375 212.515625 Z M 215.609375 212.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.925781 212.589844 C 214.925781 212.472656 214.832031 212.378906 214.714844 212.378906 C 214.597656 212.378906 214.503906 212.472656 214.503906 212.589844 C 214.503906 212.707031 214.597656 212.800781 214.714844 212.800781 C 214.832031 212.800781 214.925781 212.707031 214.925781 212.589844 Z M 214.925781 212.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.484375 212.667969 C 217.484375 212.550781 217.390625 212.457031 217.273438 212.457031 C 217.15625 212.457031 217.0625 212.550781 217.0625 212.667969 C 217.0625 212.785156 217.15625 212.878906 217.273438 212.878906 C 217.390625 212.878906 217.484375 212.785156 217.484375 212.667969 Z M 217.484375 212.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.222656 213.738281 C 218.222656 213.621094 218.128906 213.527344 218.011719 213.527344 C 217.894531 213.527344 217.800781 213.621094 217.800781 213.738281 C 217.800781 213.855469 217.894531 213.949219 218.011719 213.949219 C 218.128906 213.949219 218.222656 213.855469 218.222656 213.738281 Z M 218.222656 213.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.277344 214.460938 C 218.277344 214.34375 218.183594 214.25 218.066406 214.25 C 217.949219 214.25 217.855469 214.34375 217.855469 214.460938 C 217.855469 214.578125 217.949219 214.671875 218.066406 214.671875 C 218.183594 214.671875 218.277344 214.578125 218.277344 214.460938 Z M 218.277344 214.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.902344 214.585938 C 221.902344 214.46875 221.808594 214.375 221.691406 214.375 C 221.574219 214.375 221.480469 214.46875 221.480469 214.585938 C 221.480469 214.703125 221.574219 214.796875 221.691406 214.796875 C 221.808594 214.796875 221.902344 214.703125 221.902344 214.585938 Z M 221.902344 214.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.425781 213.144531 C 225.425781 213.027344 225.332031 212.933594 225.214844 212.933594 C 225.097656 212.933594 225.003906 213.027344 225.003906 213.144531 C 225.003906 213.261719 225.097656 213.355469 225.214844 213.355469 C 225.332031 213.355469 225.425781 213.261719 225.425781 213.144531 Z M 225.425781 213.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.78125 213.832031 C 223.78125 213.714844 223.6875 213.621094 223.570312 213.621094 C 223.453125 213.621094 223.359375 213.714844 223.359375 213.832031 C 223.359375 213.949219 223.453125 214.042969 223.570312 214.042969 C 223.6875 214.042969 223.78125 213.949219 223.78125 213.832031 Z M 223.78125 213.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.742188 210.941406 C 227.742188 210.824219 227.648438 210.730469 227.53125 210.730469 C 227.414062 210.730469 227.320312 210.824219 227.320312 210.941406 C 227.320312 211.058594 227.414062 211.152344 227.53125 211.152344 C 227.648438 211.152344 227.742188 211.058594 227.742188 210.941406 Z M 227.742188 210.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.914062 214.945312 C 225.914062 214.828125 225.820312 214.734375 225.703125 214.734375 C 225.585938 214.734375 225.492188 214.828125 225.492188 214.945312 C 225.492188 215.0625 225.585938 215.15625 225.703125 215.15625 C 225.820312 215.15625 225.914062 215.0625 225.914062 214.945312 Z M 225.914062 214.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.316406 215.371094 C 221.316406 215.253906 221.222656 215.160156 221.105469 215.160156 C 220.988281 215.160156 220.894531 215.253906 220.894531 215.371094 C 220.894531 215.488281 220.988281 215.582031 221.105469 215.582031 C 221.222656 215.582031 221.316406 215.488281 221.316406 215.371094 Z M 221.316406 215.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.3125 214.699219 C 221.3125 214.582031 221.21875 214.488281 221.101562 214.488281 C 220.984375 214.488281 220.890625 214.582031 220.890625 214.699219 C 220.890625 214.816406 220.984375 214.910156 221.101562 214.910156 C 221.21875 214.910156 221.3125 214.816406 221.3125 214.699219 Z M 221.3125 214.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.585938 215.339844 C 224.585938 215.222656 224.492188 215.128906 224.375 215.128906 C 224.257812 215.128906 224.164062 215.222656 224.164062 215.339844 C 224.164062 215.457031 224.257812 215.550781 224.375 215.550781 C 224.492188 215.550781 224.585938 215.457031 224.585938 215.339844 Z M 224.585938 215.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.777344 214.660156 C 224.777344 214.542969 224.683594 214.449219 224.566406 214.449219 C 224.449219 214.449219 224.355469 214.542969 224.355469 214.660156 C 224.355469 214.777344 224.449219 214.871094 224.566406 214.871094 C 224.683594 214.871094 224.777344 214.777344 224.777344 214.660156 Z M 224.777344 214.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.285156 215.585938 C 224.285156 215.46875 224.191406 215.375 224.074219 215.375 C 223.957031 215.375 223.863281 215.46875 223.863281 215.585938 C 223.863281 215.703125 223.957031 215.796875 224.074219 215.796875 C 224.191406 215.796875 224.285156 215.703125 224.285156 215.585938 Z M 224.285156 215.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.621094 213.199219 C 225.621094 213.082031 225.527344 212.988281 225.410156 212.988281 C 225.292969 212.988281 225.199219 213.082031 225.199219 213.199219 C 225.199219 213.316406 225.292969 213.410156 225.410156 213.410156 C 225.527344 213.410156 225.621094 213.316406 225.621094 213.199219 Z M 225.621094 213.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.84375 212.316406 C 224.84375 212.199219 224.75 212.105469 224.632812 212.105469 C 224.515625 212.105469 224.421875 212.199219 224.421875 212.316406 C 224.421875 212.433594 224.515625 212.527344 224.632812 212.527344 C 224.75 212.527344 224.84375 212.433594 224.84375 212.316406 Z M 224.84375 212.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.15625 213.96875 C 224.15625 213.851562 224.0625 213.757812 223.945312 213.757812 C 223.828125 213.757812 223.734375 213.851562 223.734375 213.96875 C 223.734375 214.085938 223.828125 214.179688 223.945312 214.179688 C 224.0625 214.179688 224.15625 214.085938 224.15625 213.96875 Z M 224.15625 213.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.3125 219.304688 C 224.3125 219.1875 224.21875 219.09375 224.101562 219.09375 C 223.984375 219.09375 223.890625 219.1875 223.890625 219.304688 C 223.890625 219.421875 223.984375 219.515625 224.101562 219.515625 C 224.21875 219.515625 224.3125 219.421875 224.3125 219.304688 Z M 224.3125 219.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.324219 219.566406 C 225.324219 219.449219 225.230469 219.355469 225.113281 219.355469 C 224.996094 219.355469 224.902344 219.449219 224.902344 219.566406 C 224.902344 219.683594 224.996094 219.777344 225.113281 219.777344 C 225.230469 219.777344 225.324219 219.683594 225.324219 219.566406 Z M 225.324219 219.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.332031 218.085938 C 229.332031 217.96875 229.238281 217.875 229.121094 217.875 C 229.003906 217.875 228.910156 217.96875 228.910156 218.085938 C 228.910156 218.203125 229.003906 218.296875 229.121094 218.296875 C 229.238281 218.296875 229.332031 218.203125 229.332031 218.085938 Z M 229.332031 218.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.09375 219.007812 C 232.09375 218.890625 232 218.796875 231.882812 218.796875 C 231.765625 218.796875 231.671875 218.890625 231.671875 219.007812 C 231.671875 219.125 231.765625 219.21875 231.882812 219.21875 C 232 219.21875 232.09375 219.125 232.09375 219.007812 Z M 232.09375 219.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.558594 217.140625 C 233.558594 217.023438 233.464844 216.929688 233.347656 216.929688 C 233.230469 216.929688 233.136719 217.023438 233.136719 217.140625 C 233.136719 217.257812 233.230469 217.351562 233.347656 217.351562 C 233.464844 217.351562 233.558594 217.257812 233.558594 217.140625 Z M 233.558594 217.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.820312 215.871094 C 234.820312 215.753906 234.726562 215.660156 234.609375 215.660156 C 234.492188 215.660156 234.398438 215.753906 234.398438 215.871094 C 234.398438 215.988281 234.492188 216.082031 234.609375 216.082031 C 234.726562 216.082031 234.820312 215.988281 234.820312 215.871094 Z M 234.820312 215.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.582031 218.46875 C 238.582031 218.351562 238.488281 218.257812 238.371094 218.257812 C 238.253906 218.257812 238.160156 218.351562 238.160156 218.46875 C 238.160156 218.585938 238.253906 218.679688 238.371094 218.679688 C 238.488281 218.679688 238.582031 218.585938 238.582031 218.46875 Z M 238.582031 218.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.777344 218.75 C 238.777344 218.632812 238.683594 218.539062 238.566406 218.539062 C 238.449219 218.539062 238.355469 218.632812 238.355469 218.75 C 238.355469 218.867188 238.449219 218.960938 238.566406 218.960938 C 238.683594 218.960938 238.777344 218.867188 238.777344 218.75 Z M 238.777344 218.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.449219 218.882812 C 239.449219 218.765625 239.355469 218.671875 239.238281 218.671875 C 239.121094 218.671875 239.027344 218.765625 239.027344 218.882812 C 239.027344 219 239.121094 219.09375 239.238281 219.09375 C 239.355469 219.09375 239.449219 219 239.449219 218.882812 Z M 239.449219 218.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.011719 216.480469 C 241.011719 216.363281 240.917969 216.269531 240.800781 216.269531 C 240.683594 216.269531 240.589844 216.363281 240.589844 216.480469 C 240.589844 216.597656 240.683594 216.691406 240.800781 216.691406 C 240.917969 216.691406 241.011719 216.597656 241.011719 216.480469 Z M 241.011719 216.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.972656 214.679688 C 242.972656 214.5625 242.878906 214.46875 242.761719 214.46875 C 242.644531 214.46875 242.550781 214.5625 242.550781 214.679688 C 242.550781 214.796875 242.644531 214.890625 242.761719 214.890625 C 242.878906 214.890625 242.972656 214.796875 242.972656 214.679688 Z M 242.972656 214.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.941406 211.914062 C 239.941406 211.796875 239.847656 211.703125 239.730469 211.703125 C 239.613281 211.703125 239.519531 211.796875 239.519531 211.914062 C 239.519531 212.03125 239.613281 212.125 239.730469 212.125 C 239.847656 212.125 239.941406 212.03125 239.941406 211.914062 Z M 239.941406 211.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.113281 212.691406 C 245.113281 212.574219 245.019531 212.480469 244.902344 212.480469 C 244.785156 212.480469 244.691406 212.574219 244.691406 212.691406 C 244.691406 212.808594 244.785156 212.902344 244.902344 212.902344 C 245.019531 212.902344 245.113281 212.808594 245.113281 212.691406 Z M 245.113281 212.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.804688 215.941406 C 248.804688 215.824219 248.710938 215.730469 248.59375 215.730469 C 248.476562 215.730469 248.382812 215.824219 248.382812 215.941406 C 248.382812 216.058594 248.476562 216.152344 248.59375 216.152344 C 248.710938 216.152344 248.804688 216.058594 248.804688 215.941406 Z M 248.804688 215.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.714844 211.863281 C 251.714844 211.746094 251.621094 211.652344 251.503906 211.652344 C 251.386719 211.652344 251.292969 211.746094 251.292969 211.863281 C 251.292969 211.980469 251.386719 212.074219 251.503906 212.074219 C 251.621094 212.074219 251.714844 211.980469 251.714844 211.863281 Z M 251.714844 211.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.734375 213.484375 C 250.734375 213.367188 250.640625 213.273438 250.523438 213.273438 C 250.40625 213.273438 250.3125 213.367188 250.3125 213.484375 C 250.3125 213.601562 250.40625 213.695312 250.523438 213.695312 C 250.640625 213.695312 250.734375 213.601562 250.734375 213.484375 Z M 250.734375 213.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.136719 211.945312 C 253.136719 211.828125 253.042969 211.734375 252.925781 211.734375 C 252.808594 211.734375 252.714844 211.828125 252.714844 211.945312 C 252.714844 212.0625 252.808594 212.15625 252.925781 212.15625 C 253.042969 212.15625 253.136719 212.0625 253.136719 211.945312 Z M 253.136719 211.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.671875 208.871094 C 252.671875 208.753906 252.578125 208.660156 252.460938 208.660156 C 252.34375 208.660156 252.25 208.753906 252.25 208.871094 C 252.25 208.988281 252.34375 209.082031 252.460938 209.082031 C 252.578125 209.082031 252.671875 208.988281 252.671875 208.871094 Z M 252.671875 208.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.671875 211.132812 C 248.671875 211.015625 248.578125 210.921875 248.460938 210.921875 C 248.34375 210.921875 248.25 211.015625 248.25 211.132812 C 248.25 211.25 248.34375 211.34375 248.460938 211.34375 C 248.578125 211.34375 248.671875 211.25 248.671875 211.132812 Z M 248.671875 211.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.796875 212.84375 C 248.796875 212.726562 248.703125 212.632812 248.585938 212.632812 C 248.46875 212.632812 248.375 212.726562 248.375 212.84375 C 248.375 212.960938 248.46875 213.054688 248.585938 213.054688 C 248.703125 213.054688 248.796875 212.960938 248.796875 212.84375 Z M 248.796875 212.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.953125 212.699219 C 248.953125 212.582031 248.859375 212.488281 248.742188 212.488281 C 248.625 212.488281 248.53125 212.582031 248.53125 212.699219 C 248.53125 212.816406 248.625 212.910156 248.742188 212.910156 C 248.859375 212.910156 248.953125 212.816406 248.953125 212.699219 Z M 248.953125 212.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.191406 211.496094 C 245.191406 211.378906 245.097656 211.285156 244.980469 211.285156 C 244.863281 211.285156 244.769531 211.378906 244.769531 211.496094 C 244.769531 211.613281 244.863281 211.707031 244.980469 211.707031 C 245.097656 211.707031 245.191406 211.613281 245.191406 211.496094 Z M 245.191406 211.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.507812 205.820312 C 250.507812 205.703125 250.414062 205.609375 250.296875 205.609375 C 250.179688 205.609375 250.085938 205.703125 250.085938 205.820312 C 250.085938 205.9375 250.179688 206.03125 250.296875 206.03125 C 250.414062 206.03125 250.507812 205.9375 250.507812 205.820312 Z M 250.507812 205.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.261719 204.519531 C 251.261719 204.402344 251.167969 204.308594 251.050781 204.308594 C 250.933594 204.308594 250.839844 204.402344 250.839844 204.519531 C 250.839844 204.636719 250.933594 204.730469 251.050781 204.730469 C 251.167969 204.730469 251.261719 204.636719 251.261719 204.519531 Z M 251.261719 204.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.242188 206.472656 C 250.242188 206.355469 250.148438 206.261719 250.03125 206.261719 C 249.914062 206.261719 249.820312 206.355469 249.820312 206.472656 C 249.820312 206.589844 249.914062 206.683594 250.03125 206.683594 C 250.148438 206.683594 250.242188 206.589844 250.242188 206.472656 Z M 250.242188 206.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.101562 206.628906 C 252.101562 206.511719 252.007812 206.417969 251.890625 206.417969 C 251.773438 206.417969 251.679688 206.511719 251.679688 206.628906 C 251.679688 206.746094 251.773438 206.839844 251.890625 206.839844 C 252.007812 206.839844 252.101562 206.746094 252.101562 206.628906 Z M 252.101562 206.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.726562 207.015625 C 255.726562 206.898438 255.632812 206.804688 255.515625 206.804688 C 255.398438 206.804688 255.304688 206.898438 255.304688 207.015625 C 255.304688 207.132812 255.398438 207.226562 255.515625 207.226562 C 255.632812 207.226562 255.726562 207.132812 255.726562 207.015625 Z M 255.726562 207.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.867188 207.035156 C 257.867188 206.917969 257.773438 206.824219 257.65625 206.824219 C 257.539062 206.824219 257.445312 206.917969 257.445312 207.035156 C 257.445312 207.152344 257.539062 207.246094 257.65625 207.246094 C 257.773438 207.246094 257.867188 207.152344 257.867188 207.035156 Z M 257.867188 207.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.757812 207.425781 C 260.757812 207.308594 260.664062 207.214844 260.546875 207.214844 C 260.429688 207.214844 260.335938 207.308594 260.335938 207.425781 C 260.335938 207.542969 260.429688 207.636719 260.546875 207.636719 C 260.664062 207.636719 260.757812 207.542969 260.757812 207.425781 Z M 260.757812 207.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.566406 206.574219 C 260.566406 206.457031 260.472656 206.363281 260.355469 206.363281 C 260.238281 206.363281 260.144531 206.457031 260.144531 206.574219 C 260.144531 206.691406 260.238281 206.785156 260.355469 206.785156 C 260.472656 206.785156 260.566406 206.691406 260.566406 206.574219 Z M 260.566406 206.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.371094 208.808594 C 259.371094 208.691406 259.277344 208.597656 259.160156 208.597656 C 259.042969 208.597656 258.949219 208.691406 258.949219 208.808594 C 258.949219 208.925781 259.042969 209.019531 259.160156 209.019531 C 259.277344 209.019531 259.371094 208.925781 259.371094 208.808594 Z M 259.371094 208.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.847656 207.339844 C 255.847656 207.222656 255.753906 207.128906 255.636719 207.128906 C 255.519531 207.128906 255.425781 207.222656 255.425781 207.339844 C 255.425781 207.457031 255.519531 207.550781 255.636719 207.550781 C 255.753906 207.550781 255.847656 207.457031 255.847656 207.339844 Z M 255.847656 207.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.40625 210.359375 C 257.40625 210.242188 257.3125 210.148438 257.195312 210.148438 C 257.078125 210.148438 256.984375 210.242188 256.984375 210.359375 C 256.984375 210.476562 257.078125 210.570312 257.195312 210.570312 C 257.3125 210.570312 257.40625 210.476562 257.40625 210.359375 Z M 257.40625 210.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.289062 206.566406 C 255.289062 206.449219 255.195312 206.355469 255.078125 206.355469 C 254.960938 206.355469 254.867188 206.449219 254.867188 206.566406 C 254.867188 206.683594 254.960938 206.777344 255.078125 206.777344 C 255.195312 206.777344 255.289062 206.683594 255.289062 206.566406 Z M 255.289062 206.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.191406 206.691406 C 257.191406 206.574219 257.097656 206.480469 256.980469 206.480469 C 256.863281 206.480469 256.769531 206.574219 256.769531 206.691406 C 256.769531 206.808594 256.863281 206.902344 256.980469 206.902344 C 257.097656 206.902344 257.191406 206.808594 257.191406 206.691406 Z M 257.191406 206.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.847656 206.671875 C 258.847656 206.554688 258.753906 206.460938 258.636719 206.460938 C 258.519531 206.460938 258.425781 206.554688 258.425781 206.671875 C 258.425781 206.789062 258.519531 206.882812 258.636719 206.882812 C 258.753906 206.882812 258.847656 206.789062 258.847656 206.671875 Z M 258.847656 206.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.253906 208.777344 C 257.253906 208.660156 257.160156 208.566406 257.042969 208.566406 C 256.925781 208.566406 256.832031 208.660156 256.832031 208.777344 C 256.832031 208.894531 256.925781 208.988281 257.042969 208.988281 C 257.160156 208.988281 257.253906 208.894531 257.253906 208.777344 Z M 257.253906 208.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.621094 206.289062 C 257.621094 206.171875 257.527344 206.078125 257.410156 206.078125 C 257.292969 206.078125 257.199219 206.171875 257.199219 206.289062 C 257.199219 206.40625 257.292969 206.5 257.410156 206.5 C 257.527344 206.5 257.621094 206.40625 257.621094 206.289062 Z M 257.621094 206.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.914062 206.949219 C 256.914062 206.832031 256.820312 206.738281 256.703125 206.738281 C 256.585938 206.738281 256.492188 206.832031 256.492188 206.949219 C 256.492188 207.066406 256.585938 207.160156 256.703125 207.160156 C 256.820312 207.160156 256.914062 207.066406 256.914062 206.949219 Z M 256.914062 206.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.554688 209.03125 C 257.554688 208.914062 257.460938 208.820312 257.34375 208.820312 C 257.226562 208.820312 257.132812 208.914062 257.132812 209.03125 C 257.132812 209.148438 257.226562 209.242188 257.34375 209.242188 C 257.460938 209.242188 257.554688 209.148438 257.554688 209.03125 Z M 257.554688 209.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.132812 210.203125 C 254.132812 210.085938 254.039062 209.992188 253.921875 209.992188 C 253.804688 209.992188 253.710938 210.085938 253.710938 210.203125 C 253.710938 210.320312 253.804688 210.414062 253.921875 210.414062 C 254.039062 210.414062 254.132812 210.320312 254.132812 210.203125 Z M 254.132812 210.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.921875 211.503906 C 254.921875 211.386719 254.828125 211.292969 254.710938 211.292969 C 254.59375 211.292969 254.5 211.386719 254.5 211.503906 C 254.5 211.621094 254.59375 211.714844 254.710938 211.714844 C 254.828125 211.714844 254.921875 211.621094 254.921875 211.503906 Z M 254.921875 211.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.871094 213.78125 C 256.871094 213.664062 256.777344 213.570312 256.660156 213.570312 C 256.542969 213.570312 256.449219 213.664062 256.449219 213.78125 C 256.449219 213.898438 256.542969 213.992188 256.660156 213.992188 C 256.777344 213.992188 256.871094 213.898438 256.871094 213.78125 Z M 256.871094 213.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.679688 212.167969 C 256.679688 212.050781 256.585938 211.957031 256.46875 211.957031 C 256.351562 211.957031 256.257812 212.050781 256.257812 212.167969 C 256.257812 212.285156 256.351562 212.378906 256.46875 212.378906 C 256.585938 212.378906 256.679688 212.285156 256.679688 212.167969 Z M 256.679688 212.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.933594 217.390625 C 254.933594 217.273438 254.839844 217.179688 254.722656 217.179688 C 254.605469 217.179688 254.511719 217.273438 254.511719 217.390625 C 254.511719 217.507812 254.605469 217.601562 254.722656 217.601562 C 254.839844 217.601562 254.933594 217.507812 254.933594 217.390625 Z M 254.933594 217.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.363281 220.03125 C 254.363281 219.914062 254.269531 219.820312 254.152344 219.820312 C 254.035156 219.820312 253.941406 219.914062 253.941406 220.03125 C 253.941406 220.148438 254.035156 220.242188 254.152344 220.242188 C 254.269531 220.242188 254.363281 220.148438 254.363281 220.03125 Z M 254.363281 220.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.363281 219.519531 C 251.363281 219.402344 251.269531 219.308594 251.152344 219.308594 C 251.035156 219.308594 250.941406 219.402344 250.941406 219.519531 C 250.941406 219.636719 251.035156 219.730469 251.152344 219.730469 C 251.269531 219.730469 251.363281 219.636719 251.363281 219.519531 Z M 251.363281 219.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.246094 218.074219 C 251.246094 217.957031 251.152344 217.863281 251.035156 217.863281 C 250.917969 217.863281 250.824219 217.957031 250.824219 218.074219 C 250.824219 218.191406 250.917969 218.285156 251.035156 218.285156 C 251.152344 218.285156 251.246094 218.191406 251.246094 218.074219 Z M 251.246094 218.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.546875 216.589844 C 248.546875 216.472656 248.453125 216.378906 248.335938 216.378906 C 248.21875 216.378906 248.125 216.472656 248.125 216.589844 C 248.125 216.707031 248.21875 216.800781 248.335938 216.800781 C 248.453125 216.800781 248.546875 216.707031 248.546875 216.589844 Z M 248.546875 216.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.4375 217.046875 C 251.4375 216.929688 251.34375 216.835938 251.226562 216.835938 C 251.109375 216.835938 251.015625 216.929688 251.015625 217.046875 C 251.015625 217.164062 251.109375 217.257812 251.226562 217.257812 C 251.34375 217.257812 251.4375 217.164062 251.4375 217.046875 Z M 251.4375 217.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.515625 216.261719 C 247.515625 216.144531 247.421875 216.050781 247.304688 216.050781 C 247.1875 216.050781 247.09375 216.144531 247.09375 216.261719 C 247.09375 216.378906 247.1875 216.472656 247.304688 216.472656 C 247.421875 216.472656 247.515625 216.378906 247.515625 216.261719 Z M 247.515625 216.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.796875 217.636719 C 247.796875 217.519531 247.703125 217.425781 247.585938 217.425781 C 247.46875 217.425781 247.375 217.519531 247.375 217.636719 C 247.375 217.753906 247.46875 217.847656 247.585938 217.847656 C 247.703125 217.847656 247.796875 217.753906 247.796875 217.636719 Z M 247.796875 217.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.136719 218.417969 C 246.136719 218.300781 246.042969 218.207031 245.925781 218.207031 C 245.808594 218.207031 245.714844 218.300781 245.714844 218.417969 C 245.714844 218.535156 245.808594 218.628906 245.925781 218.628906 C 246.042969 218.628906 246.136719 218.535156 246.136719 218.417969 Z M 246.136719 218.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.992188 220.378906 C 243.992188 220.261719 243.898438 220.167969 243.78125 220.167969 C 243.664062 220.167969 243.570312 220.261719 243.570312 220.378906 C 243.570312 220.496094 243.664062 220.589844 243.78125 220.589844 C 243.898438 220.589844 243.992188 220.496094 243.992188 220.378906 Z M 243.992188 220.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.574219 220.214844 C 242.574219 220.097656 242.480469 220.003906 242.363281 220.003906 C 242.246094 220.003906 242.152344 220.097656 242.152344 220.214844 C 242.152344 220.332031 242.246094 220.425781 242.363281 220.425781 C 242.480469 220.425781 242.574219 220.332031 242.574219 220.214844 Z M 242.574219 220.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.109375 218.722656 C 241.109375 218.605469 241.015625 218.511719 240.898438 218.511719 C 240.78125 218.511719 240.6875 218.605469 240.6875 218.722656 C 240.6875 218.839844 240.78125 218.933594 240.898438 218.933594 C 241.015625 218.933594 241.109375 218.839844 241.109375 218.722656 Z M 241.109375 218.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.339844 218.933594 C 245.339844 218.816406 245.246094 218.722656 245.128906 218.722656 C 245.011719 218.722656 244.917969 218.816406 244.917969 218.933594 C 244.917969 219.050781 245.011719 219.144531 245.128906 219.144531 C 245.246094 219.144531 245.339844 219.050781 245.339844 218.933594 Z M 245.339844 218.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.574219 216.605469 C 244.574219 216.488281 244.480469 216.394531 244.363281 216.394531 C 244.246094 216.394531 244.152344 216.488281 244.152344 216.605469 C 244.152344 216.722656 244.246094 216.816406 244.363281 216.816406 C 244.480469 216.816406 244.574219 216.722656 244.574219 216.605469 Z M 244.574219 216.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.75 215.660156 C 248.75 215.542969 248.65625 215.449219 248.539062 215.449219 C 248.421875 215.449219 248.328125 215.542969 248.328125 215.660156 C 248.328125 215.777344 248.421875 215.871094 248.539062 215.871094 C 248.65625 215.871094 248.75 215.777344 248.75 215.660156 Z M 248.75 215.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.125 218.851562 C 249.125 218.734375 249.03125 218.640625 248.914062 218.640625 C 248.796875 218.640625 248.703125 218.734375 248.703125 218.851562 C 248.703125 218.96875 248.796875 219.0625 248.914062 219.0625 C 249.03125 219.0625 249.125 218.96875 249.125 218.851562 Z M 249.125 218.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.027344 216.722656 C 252.027344 216.605469 251.933594 216.511719 251.816406 216.511719 C 251.699219 216.511719 251.605469 216.605469 251.605469 216.722656 C 251.605469 216.839844 251.699219 216.933594 251.816406 216.933594 C 251.933594 216.933594 252.027344 216.839844 252.027344 216.722656 Z M 252.027344 216.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.859375 216.558594 C 251.859375 216.441406 251.765625 216.347656 251.648438 216.347656 C 251.53125 216.347656 251.4375 216.441406 251.4375 216.558594 C 251.4375 216.675781 251.53125 216.769531 251.648438 216.769531 C 251.765625 216.769531 251.859375 216.675781 251.859375 216.558594 Z M 251.859375 216.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.574219 215.859375 C 250.574219 215.742188 250.480469 215.648438 250.363281 215.648438 C 250.246094 215.648438 250.152344 215.742188 250.152344 215.859375 C 250.152344 215.976562 250.246094 216.070312 250.363281 216.070312 C 250.480469 216.070312 250.574219 215.976562 250.574219 215.859375 Z M 250.574219 215.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.339844 217.214844 C 247.339844 217.097656 247.246094 217.003906 247.128906 217.003906 C 247.011719 217.003906 246.917969 217.097656 246.917969 217.214844 C 246.917969 217.332031 247.011719 217.425781 247.128906 217.425781 C 247.246094 217.425781 247.339844 217.332031 247.339844 217.214844 Z M 247.339844 217.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.3125 214.261719 C 248.3125 214.144531 248.21875 214.050781 248.101562 214.050781 C 247.984375 214.050781 247.890625 214.144531 247.890625 214.261719 C 247.890625 214.378906 247.984375 214.472656 248.101562 214.472656 C 248.21875 214.472656 248.3125 214.378906 248.3125 214.261719 Z M 248.3125 214.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.59375 212.40625 C 250.59375 212.289062 250.5 212.195312 250.382812 212.195312 C 250.265625 212.195312 250.171875 212.289062 250.171875 212.40625 C 250.171875 212.523438 250.265625 212.617188 250.382812 212.617188 C 250.5 212.617188 250.59375 212.523438 250.59375 212.40625 Z M 250.59375 212.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.089844 213.070312 C 250.089844 212.953125 249.996094 212.859375 249.878906 212.859375 C 249.761719 212.859375 249.667969 212.953125 249.667969 213.070312 C 249.667969 213.1875 249.761719 213.28125 249.878906 213.28125 C 249.996094 213.28125 250.089844 213.1875 250.089844 213.070312 Z M 250.089844 213.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.808594 213.085938 C 252.808594 212.96875 252.714844 212.875 252.597656 212.875 C 252.480469 212.875 252.386719 212.96875 252.386719 213.085938 C 252.386719 213.203125 252.480469 213.296875 252.597656 213.296875 C 252.714844 213.296875 252.808594 213.203125 252.808594 213.085938 Z M 252.808594 213.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.910156 213.039062 C 253.910156 212.921875 253.816406 212.828125 253.699219 212.828125 C 253.582031 212.828125 253.488281 212.921875 253.488281 213.039062 C 253.488281 213.15625 253.582031 213.25 253.699219 213.25 C 253.816406 213.25 253.910156 213.15625 253.910156 213.039062 Z M 253.910156 213.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.808594 214.011719 C 256.808594 213.894531 256.714844 213.800781 256.597656 213.800781 C 256.480469 213.800781 256.386719 213.894531 256.386719 214.011719 C 256.386719 214.128906 256.480469 214.222656 256.597656 214.222656 C 256.714844 214.222656 256.808594 214.128906 256.808594 214.011719 Z M 256.808594 214.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.378906 211.292969 C 258.378906 211.175781 258.285156 211.082031 258.167969 211.082031 C 258.050781 211.082031 257.957031 211.175781 257.957031 211.292969 C 257.957031 211.410156 258.050781 211.503906 258.167969 211.503906 C 258.285156 211.503906 258.378906 211.410156 258.378906 211.292969 Z M 258.378906 211.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.996094 208.835938 C 257.996094 208.71875 257.902344 208.625 257.785156 208.625 C 257.667969 208.625 257.574219 208.71875 257.574219 208.835938 C 257.574219 208.953125 257.667969 209.046875 257.785156 209.046875 C 257.902344 209.046875 257.996094 208.953125 257.996094 208.835938 Z M 257.996094 208.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.5625 209.652344 C 257.5625 209.535156 257.46875 209.441406 257.351562 209.441406 C 257.234375 209.441406 257.140625 209.535156 257.140625 209.652344 C 257.140625 209.769531 257.234375 209.863281 257.351562 209.863281 C 257.46875 209.863281 257.5625 209.769531 257.5625 209.652344 Z M 257.5625 209.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.160156 211.777344 C 258.160156 211.660156 258.066406 211.566406 257.949219 211.566406 C 257.832031 211.566406 257.738281 211.660156 257.738281 211.777344 C 257.738281 211.894531 257.832031 211.988281 257.949219 211.988281 C 258.066406 211.988281 258.160156 211.894531 258.160156 211.777344 Z M 258.160156 211.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.027344 211.511719 C 260.027344 211.394531 259.933594 211.300781 259.816406 211.300781 C 259.699219 211.300781 259.605469 211.394531 259.605469 211.511719 C 259.605469 211.628906 259.699219 211.722656 259.816406 211.722656 C 259.933594 211.722656 260.027344 211.628906 260.027344 211.511719 Z M 260.027344 211.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.542969 210.191406 C 254.542969 210.074219 254.449219 209.980469 254.332031 209.980469 C 254.214844 209.980469 254.121094 210.074219 254.121094 210.191406 C 254.121094 210.308594 254.214844 210.402344 254.332031 210.402344 C 254.449219 210.402344 254.542969 210.308594 254.542969 210.191406 Z M 254.542969 210.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.378906 213.101562 C 253.378906 212.984375 253.285156 212.890625 253.167969 212.890625 C 253.050781 212.890625 252.957031 212.984375 252.957031 213.101562 C 252.957031 213.21875 253.050781 213.3125 253.167969 213.3125 C 253.285156 213.3125 253.378906 213.21875 253.378906 213.101562 Z M 253.378906 213.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.945312 214.503906 C 251.945312 214.386719 251.851562 214.292969 251.734375 214.292969 C 251.617188 214.292969 251.523438 214.386719 251.523438 214.503906 C 251.523438 214.621094 251.617188 214.714844 251.734375 214.714844 C 251.851562 214.714844 251.945312 214.621094 251.945312 214.503906 Z M 251.945312 214.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.476562 214.777344 C 250.476562 214.660156 250.382812 214.566406 250.265625 214.566406 C 250.148438 214.566406 250.054688 214.660156 250.054688 214.777344 C 250.054688 214.894531 250.148438 214.988281 250.265625 214.988281 C 250.382812 214.988281 250.476562 214.894531 250.476562 214.777344 Z M 250.476562 214.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.664062 212.414062 C 249.664062 212.296875 249.570312 212.203125 249.453125 212.203125 C 249.335938 212.203125 249.242188 212.296875 249.242188 212.414062 C 249.242188 212.53125 249.335938 212.625 249.453125 212.625 C 249.570312 212.625 249.664062 212.53125 249.664062 212.414062 Z M 249.664062 212.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.359375 213.148438 C 252.359375 213.03125 252.265625 212.9375 252.148438 212.9375 C 252.03125 212.9375 251.9375 213.03125 251.9375 213.148438 C 251.9375 213.265625 252.03125 213.359375 252.148438 213.359375 C 252.265625 213.359375 252.359375 213.265625 252.359375 213.148438 Z M 252.359375 213.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.546875 210.835938 C 255.546875 210.71875 255.453125 210.625 255.335938 210.625 C 255.21875 210.625 255.125 210.71875 255.125 210.835938 C 255.125 210.953125 255.21875 211.046875 255.335938 211.046875 C 255.453125 211.046875 255.546875 210.953125 255.546875 210.835938 Z M 255.546875 210.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.765625 209.199219 C 255.765625 209.082031 255.671875 208.988281 255.554688 208.988281 C 255.4375 208.988281 255.34375 209.082031 255.34375 209.199219 C 255.34375 209.316406 255.4375 209.410156 255.554688 209.410156 C 255.671875 209.410156 255.765625 209.316406 255.765625 209.199219 Z M 255.765625 209.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.238281 208.925781 C 257.238281 208.808594 257.144531 208.714844 257.027344 208.714844 C 256.910156 208.714844 256.816406 208.808594 256.816406 208.925781 C 256.816406 209.042969 256.910156 209.136719 257.027344 209.136719 C 257.144531 209.136719 257.238281 209.042969 257.238281 208.925781 Z M 257.238281 208.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.082031 209.171875 C 261.082031 209.054688 260.988281 208.960938 260.871094 208.960938 C 260.753906 208.960938 260.660156 209.054688 260.660156 209.171875 C 260.660156 209.289062 260.753906 209.382812 260.871094 209.382812 C 260.988281 209.382812 261.082031 209.289062 261.082031 209.171875 Z M 261.082031 209.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.042969 210.371094 C 260.042969 210.253906 259.949219 210.160156 259.832031 210.160156 C 259.714844 210.160156 259.621094 210.253906 259.621094 210.371094 C 259.621094 210.488281 259.714844 210.582031 259.832031 210.582031 C 259.949219 210.582031 260.042969 210.488281 260.042969 210.371094 Z M 260.042969 210.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.632812 210.851562 C 258.632812 210.734375 258.539062 210.640625 258.421875 210.640625 C 258.304688 210.640625 258.210938 210.734375 258.210938 210.851562 C 258.210938 210.96875 258.304688 211.0625 258.421875 211.0625 C 258.539062 211.0625 258.632812 210.96875 258.632812 210.851562 Z M 258.632812 210.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.921875 213.453125 C 259.921875 213.335938 259.828125 213.242188 259.710938 213.242188 C 259.59375 213.242188 259.5 213.335938 259.5 213.453125 C 259.5 213.570312 259.59375 213.664062 259.710938 213.664062 C 259.828125 213.664062 259.921875 213.570312 259.921875 213.453125 Z M 259.921875 213.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.679688 215.21875 C 261.679688 215.101562 261.585938 215.007812 261.46875 215.007812 C 261.351562 215.007812 261.257812 215.101562 261.257812 215.21875 C 261.257812 215.335938 261.351562 215.429688 261.46875 215.429688 C 261.585938 215.429688 261.679688 215.335938 261.679688 215.21875 Z M 261.679688 215.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.167969 217.089844 C 262.167969 216.972656 262.074219 216.878906 261.957031 216.878906 C 261.839844 216.878906 261.746094 216.972656 261.746094 217.089844 C 261.746094 217.207031 261.839844 217.300781 261.957031 217.300781 C 262.074219 217.300781 262.167969 217.207031 262.167969 217.089844 Z M 262.167969 217.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.128906 212.445312 C 260.128906 212.328125 260.035156 212.234375 259.917969 212.234375 C 259.800781 212.234375 259.707031 212.328125 259.707031 212.445312 C 259.707031 212.5625 259.800781 212.65625 259.917969 212.65625 C 260.035156 212.65625 260.128906 212.5625 260.128906 212.445312 Z M 260.128906 212.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.417969 210.511719 C 263.417969 210.394531 263.324219 210.300781 263.207031 210.300781 C 263.089844 210.300781 262.996094 210.394531 262.996094 210.511719 C 262.996094 210.628906 263.089844 210.722656 263.207031 210.722656 C 263.324219 210.722656 263.417969 210.628906 263.417969 210.511719 Z M 263.417969 210.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.214844 213.226562 C 263.214844 213.109375 263.121094 213.015625 263.003906 213.015625 C 262.886719 213.015625 262.792969 213.109375 262.792969 213.226562 C 262.792969 213.34375 262.886719 213.4375 263.003906 213.4375 C 263.121094 213.4375 263.214844 213.34375 263.214844 213.226562 Z M 263.214844 213.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.367188 211.960938 C 265.367188 211.84375 265.273438 211.75 265.15625 211.75 C 265.039062 211.75 264.945312 211.84375 264.945312 211.960938 C 264.945312 212.078125 265.039062 212.171875 265.15625 212.171875 C 265.273438 212.171875 265.367188 212.078125 265.367188 211.960938 Z M 265.367188 211.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.203125 215.910156 C 263.203125 215.792969 263.109375 215.699219 262.992188 215.699219 C 262.875 215.699219 262.78125 215.792969 262.78125 215.910156 C 262.78125 216.027344 262.875 216.121094 262.992188 216.121094 C 263.109375 216.121094 263.203125 216.027344 263.203125 215.910156 Z M 263.203125 215.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.832031 215.097656 C 267.832031 214.980469 267.738281 214.886719 267.621094 214.886719 C 267.503906 214.886719 267.410156 214.980469 267.410156 215.097656 C 267.410156 215.214844 267.503906 215.308594 267.621094 215.308594 C 267.738281 215.308594 267.832031 215.214844 267.832031 215.097656 Z M 267.832031 215.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.324219 210.601562 C 268.324219 210.484375 268.230469 210.390625 268.113281 210.390625 C 267.996094 210.390625 267.902344 210.484375 267.902344 210.601562 C 267.902344 210.71875 267.996094 210.8125 268.113281 210.8125 C 268.230469 210.8125 268.324219 210.71875 268.324219 210.601562 Z M 268.324219 210.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.007812 208.710938 C 269.007812 208.59375 268.914062 208.5 268.796875 208.5 C 268.679688 208.5 268.585938 208.59375 268.585938 208.710938 C 268.585938 208.828125 268.679688 208.921875 268.796875 208.921875 C 268.914062 208.921875 269.007812 208.828125 269.007812 208.710938 Z M 269.007812 208.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.859375 207.273438 C 266.859375 207.15625 266.765625 207.0625 266.648438 207.0625 C 266.53125 207.0625 266.4375 207.15625 266.4375 207.273438 C 266.4375 207.390625 266.53125 207.484375 266.648438 207.484375 C 266.765625 207.484375 266.859375 207.390625 266.859375 207.273438 Z M 266.859375 207.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.351562 204.605469 C 266.351562 204.488281 266.257812 204.394531 266.140625 204.394531 C 266.023438 204.394531 265.929688 204.488281 265.929688 204.605469 C 265.929688 204.722656 266.023438 204.816406 266.140625 204.816406 C 266.257812 204.816406 266.351562 204.722656 266.351562 204.605469 Z M 266.351562 204.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.773438 202.066406 C 267.773438 201.949219 267.679688 201.855469 267.5625 201.855469 C 267.445312 201.855469 267.351562 201.949219 267.351562 202.066406 C 267.351562 202.183594 267.445312 202.277344 267.5625 202.277344 C 267.679688 202.277344 267.773438 202.183594 267.773438 202.066406 Z M 267.773438 202.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.277344 200.96875 C 268.277344 200.851562 268.183594 200.757812 268.066406 200.757812 C 267.949219 200.757812 267.855469 200.851562 267.855469 200.96875 C 267.855469 201.085938 267.949219 201.179688 268.066406 201.179688 C 268.183594 201.179688 268.277344 201.085938 268.277344 200.96875 Z M 268.277344 200.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.980469 198.648438 C 266.980469 198.53125 266.886719 198.4375 266.769531 198.4375 C 266.652344 198.4375 266.558594 198.53125 266.558594 198.648438 C 266.558594 198.765625 266.652344 198.859375 266.769531 198.859375 C 266.886719 198.859375 266.980469 198.765625 266.980469 198.648438 Z M 266.980469 198.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.21875 202.289062 C 266.21875 202.171875 266.125 202.078125 266.007812 202.078125 C 265.890625 202.078125 265.796875 202.171875 265.796875 202.289062 C 265.796875 202.40625 265.890625 202.5 266.007812 202.5 C 266.125 202.5 266.21875 202.40625 266.21875 202.289062 Z M 266.21875 202.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.859375 199.355469 C 265.859375 199.238281 265.765625 199.144531 265.648438 199.144531 C 265.53125 199.144531 265.4375 199.238281 265.4375 199.355469 C 265.4375 199.472656 265.53125 199.566406 265.648438 199.566406 C 265.765625 199.566406 265.859375 199.472656 265.859375 199.355469 Z M 265.859375 199.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.464844 198.808594 C 266.464844 198.691406 266.371094 198.597656 266.253906 198.597656 C 266.136719 198.597656 266.042969 198.691406 266.042969 198.808594 C 266.042969 198.925781 266.136719 199.019531 266.253906 199.019531 C 266.371094 199.019531 266.464844 198.925781 266.464844 198.808594 Z M 266.464844 198.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.277344 197.453125 C 266.277344 197.335938 266.183594 197.242188 266.066406 197.242188 C 265.949219 197.242188 265.855469 197.335938 265.855469 197.453125 C 265.855469 197.570312 265.949219 197.664062 266.066406 197.664062 C 266.183594 197.664062 266.277344 197.570312 266.277344 197.453125 Z M 266.277344 197.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.511719 198.242188 C 264.511719 198.125 264.417969 198.03125 264.300781 198.03125 C 264.183594 198.03125 264.089844 198.125 264.089844 198.242188 C 264.089844 198.359375 264.183594 198.453125 264.300781 198.453125 C 264.417969 198.453125 264.511719 198.359375 264.511719 198.242188 Z M 264.511719 198.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.570312 194.042969 C 264.570312 193.925781 264.476562 193.832031 264.359375 193.832031 C 264.242188 193.832031 264.148438 193.925781 264.148438 194.042969 C 264.148438 194.160156 264.242188 194.253906 264.359375 194.253906 C 264.476562 194.253906 264.570312 194.160156 264.570312 194.042969 Z M 264.570312 194.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.601562 192.429688 C 264.601562 192.3125 264.507812 192.21875 264.390625 192.21875 C 264.273438 192.21875 264.179688 192.3125 264.179688 192.429688 C 264.179688 192.546875 264.273438 192.640625 264.390625 192.640625 C 264.507812 192.640625 264.601562 192.546875 264.601562 192.429688 Z M 264.601562 192.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.785156 194.933594 C 262.785156 194.816406 262.691406 194.722656 262.574219 194.722656 C 262.457031 194.722656 262.363281 194.816406 262.363281 194.933594 C 262.363281 195.050781 262.457031 195.144531 262.574219 195.144531 C 262.691406 195.144531 262.785156 195.050781 262.785156 194.933594 Z M 262.785156 194.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.242188 192.785156 C 262.242188 192.667969 262.148438 192.574219 262.03125 192.574219 C 261.914062 192.574219 261.820312 192.667969 261.820312 192.785156 C 261.820312 192.902344 261.914062 192.996094 262.03125 192.996094 C 262.148438 192.996094 262.242188 192.902344 262.242188 192.785156 Z M 262.242188 192.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.855469 193.71875 C 262.855469 193.601562 262.761719 193.507812 262.644531 193.507812 C 262.527344 193.507812 262.433594 193.601562 262.433594 193.71875 C 262.433594 193.835938 262.527344 193.929688 262.644531 193.929688 C 262.761719 193.929688 262.855469 193.835938 262.855469 193.71875 Z M 262.855469 193.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.46875 194.914062 C 264.46875 194.796875 264.375 194.703125 264.257812 194.703125 C 264.140625 194.703125 264.046875 194.796875 264.046875 194.914062 C 264.046875 195.03125 264.140625 195.125 264.257812 195.125 C 264.375 195.125 264.46875 195.03125 264.46875 194.914062 Z M 264.46875 194.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.035156 193.679688 C 259.035156 193.5625 258.941406 193.46875 258.824219 193.46875 C 258.707031 193.46875 258.613281 193.5625 258.613281 193.679688 C 258.613281 193.796875 258.707031 193.890625 258.824219 193.890625 C 258.941406 193.890625 259.035156 193.796875 259.035156 193.679688 Z M 259.035156 193.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.980469 192.066406 C 257.980469 191.949219 257.886719 191.855469 257.769531 191.855469 C 257.652344 191.855469 257.558594 191.949219 257.558594 192.066406 C 257.558594 192.183594 257.652344 192.277344 257.769531 192.277344 C 257.886719 192.277344 257.980469 192.183594 257.980469 192.066406 Z M 257.980469 192.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.550781 193.820312 C 255.550781 193.703125 255.457031 193.609375 255.339844 193.609375 C 255.222656 193.609375 255.128906 193.703125 255.128906 193.820312 C 255.128906 193.9375 255.222656 194.03125 255.339844 194.03125 C 255.457031 194.03125 255.550781 193.9375 255.550781 193.820312 Z M 255.550781 193.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.601562 195.53125 C 255.601562 195.414062 255.507812 195.320312 255.390625 195.320312 C 255.273438 195.320312 255.179688 195.414062 255.179688 195.53125 C 255.179688 195.648438 255.273438 195.742188 255.390625 195.742188 C 255.507812 195.742188 255.601562 195.648438 255.601562 195.53125 Z M 255.601562 195.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.433594 195.375 C 253.433594 195.257812 253.339844 195.164062 253.222656 195.164062 C 253.105469 195.164062 253.011719 195.257812 253.011719 195.375 C 253.011719 195.492188 253.105469 195.585938 253.222656 195.585938 C 253.339844 195.585938 253.433594 195.492188 253.433594 195.375 Z M 253.433594 195.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.390625 192.59375 C 251.390625 192.476562 251.296875 192.382812 251.179688 192.382812 C 251.0625 192.382812 250.96875 192.476562 250.96875 192.59375 C 250.96875 192.710938 251.0625 192.804688 251.179688 192.804688 C 251.296875 192.804688 251.390625 192.710938 251.390625 192.59375 Z M 251.390625 192.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.671875 194.207031 C 254.671875 194.089844 254.578125 193.996094 254.460938 193.996094 C 254.34375 193.996094 254.25 194.089844 254.25 194.207031 C 254.25 194.324219 254.34375 194.417969 254.460938 194.417969 C 254.578125 194.417969 254.671875 194.324219 254.671875 194.207031 Z M 254.671875 194.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.539062 194.464844 C 253.539062 194.347656 253.445312 194.253906 253.328125 194.253906 C 253.210938 194.253906 253.117188 194.347656 253.117188 194.464844 C 253.117188 194.582031 253.210938 194.675781 253.328125 194.675781 C 253.445312 194.675781 253.539062 194.582031 253.539062 194.464844 Z M 253.539062 194.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.75 195.742188 C 254.75 195.625 254.65625 195.53125 254.539062 195.53125 C 254.421875 195.53125 254.328125 195.625 254.328125 195.742188 C 254.328125 195.859375 254.421875 195.953125 254.539062 195.953125 C 254.65625 195.953125 254.75 195.859375 254.75 195.742188 Z M 254.75 195.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.722656 194.832031 C 255.722656 194.714844 255.628906 194.621094 255.511719 194.621094 C 255.394531 194.621094 255.300781 194.714844 255.300781 194.832031 C 255.300781 194.949219 255.394531 195.042969 255.511719 195.042969 C 255.628906 195.042969 255.722656 194.949219 255.722656 194.832031 Z M 255.722656 194.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.710938 198.597656 C 252.710938 198.480469 252.617188 198.386719 252.5 198.386719 C 252.382812 198.386719 252.289062 198.480469 252.289062 198.597656 C 252.289062 198.714844 252.382812 198.808594 252.5 198.808594 C 252.617188 198.808594 252.710938 198.714844 252.710938 198.597656 Z M 252.710938 198.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.460938 198.613281 C 249.460938 198.496094 249.367188 198.402344 249.25 198.402344 C 249.132812 198.402344 249.039062 198.496094 249.039062 198.613281 C 249.039062 198.730469 249.132812 198.824219 249.25 198.824219 C 249.367188 198.824219 249.460938 198.730469 249.460938 198.613281 Z M 249.460938 198.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.175781 194.445312 C 249.175781 194.328125 249.082031 194.234375 248.964844 194.234375 C 248.847656 194.234375 248.753906 194.328125 248.753906 194.445312 C 248.753906 194.5625 248.847656 194.65625 248.964844 194.65625 C 249.082031 194.65625 249.175781 194.5625 249.175781 194.445312 Z M 249.175781 194.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.28125 191.859375 C 248.28125 191.742188 248.1875 191.648438 248.070312 191.648438 C 247.953125 191.648438 247.859375 191.742188 247.859375 191.859375 C 247.859375 191.976562 247.953125 192.070312 248.070312 192.070312 C 248.1875 192.070312 248.28125 191.976562 248.28125 191.859375 Z M 248.28125 191.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.988281 195.632812 C 250.988281 195.515625 250.894531 195.421875 250.777344 195.421875 C 250.660156 195.421875 250.566406 195.515625 250.566406 195.632812 C 250.566406 195.75 250.660156 195.84375 250.777344 195.84375 C 250.894531 195.84375 250.988281 195.75 250.988281 195.632812 Z M 250.988281 195.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.972656 198.542969 C 250.972656 198.425781 250.878906 198.332031 250.761719 198.332031 C 250.644531 198.332031 250.550781 198.425781 250.550781 198.542969 C 250.550781 198.660156 250.644531 198.753906 250.761719 198.753906 C 250.878906 198.753906 250.972656 198.660156 250.972656 198.542969 Z M 250.972656 198.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.34375 198.519531 C 254.34375 198.402344 254.25 198.308594 254.132812 198.308594 C 254.015625 198.308594 253.921875 198.402344 253.921875 198.519531 C 253.921875 198.636719 254.015625 198.730469 254.132812 198.730469 C 254.25 198.730469 254.34375 198.636719 254.34375 198.519531 Z M 254.34375 198.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.480469 200.269531 C 251.480469 200.152344 251.386719 200.058594 251.269531 200.058594 C 251.152344 200.058594 251.058594 200.152344 251.058594 200.269531 C 251.058594 200.386719 251.152344 200.480469 251.269531 200.480469 C 251.386719 200.480469 251.480469 200.386719 251.480469 200.269531 Z M 251.480469 200.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.230469 204.644531 C 249.230469 204.527344 249.136719 204.433594 249.019531 204.433594 C 248.902344 204.433594 248.808594 204.527344 248.808594 204.644531 C 248.808594 204.761719 248.902344 204.855469 249.019531 204.855469 C 249.136719 204.855469 249.230469 204.761719 249.230469 204.644531 Z M 249.230469 204.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.410156 204.144531 C 248.410156 204.027344 248.316406 203.933594 248.199219 203.933594 C 248.082031 203.933594 247.988281 204.027344 247.988281 204.144531 C 247.988281 204.261719 248.082031 204.355469 248.199219 204.355469 C 248.316406 204.355469 248.410156 204.261719 248.410156 204.144531 Z M 248.410156 204.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.292969 206.910156 C 246.292969 206.792969 246.199219 206.699219 246.082031 206.699219 C 245.964844 206.699219 245.871094 206.792969 245.871094 206.910156 C 245.871094 207.027344 245.964844 207.121094 246.082031 207.121094 C 246.199219 207.121094 246.292969 207.027344 246.292969 206.910156 Z M 246.292969 206.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.191406 207.53125 C 249.191406 207.414062 249.097656 207.320312 248.980469 207.320312 C 248.863281 207.320312 248.769531 207.414062 248.769531 207.53125 C 248.769531 207.648438 248.863281 207.742188 248.980469 207.742188 C 249.097656 207.742188 249.191406 207.648438 249.191406 207.53125 Z M 249.191406 207.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.5 205.714844 C 248.5 205.597656 248.40625 205.503906 248.289062 205.503906 C 248.171875 205.503906 248.078125 205.597656 248.078125 205.714844 C 248.078125 205.832031 248.171875 205.925781 248.289062 205.925781 C 248.40625 205.925781 248.5 205.832031 248.5 205.714844 Z M 248.5 205.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.808594 207.019531 C 249.808594 206.902344 249.714844 206.808594 249.597656 206.808594 C 249.480469 206.808594 249.386719 206.902344 249.386719 207.019531 C 249.386719 207.136719 249.480469 207.230469 249.597656 207.230469 C 249.714844 207.230469 249.808594 207.136719 249.808594 207.019531 Z M 249.808594 207.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.296875 207.066406 C 246.296875 206.949219 246.203125 206.855469 246.085938 206.855469 C 245.96875 206.855469 245.875 206.949219 245.875 207.066406 C 245.875 207.183594 245.96875 207.277344 246.085938 207.277344 C 246.203125 207.277344 246.296875 207.183594 246.296875 207.066406 Z M 246.296875 207.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.980469 205.3125 C 246.980469 205.195312 246.886719 205.101562 246.769531 205.101562 C 246.652344 205.101562 246.558594 205.195312 246.558594 205.3125 C 246.558594 205.429688 246.652344 205.523438 246.769531 205.523438 C 246.886719 205.523438 246.980469 205.429688 246.980469 205.3125 Z M 246.980469 205.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.816406 205.304688 C 247.816406 205.1875 247.722656 205.09375 247.605469 205.09375 C 247.488281 205.09375 247.394531 205.1875 247.394531 205.304688 C 247.394531 205.421875 247.488281 205.515625 247.605469 205.515625 C 247.722656 205.515625 247.816406 205.421875 247.816406 205.304688 Z M 247.816406 205.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.515625 203.039062 C 248.515625 202.921875 248.421875 202.828125 248.304688 202.828125 C 248.1875 202.828125 248.09375 202.921875 248.09375 203.039062 C 248.09375 203.15625 248.1875 203.25 248.304688 203.25 C 248.421875 203.25 248.515625 203.15625 248.515625 203.039062 Z M 248.515625 203.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.03125 201.765625 C 251.03125 201.648438 250.9375 201.554688 250.820312 201.554688 C 250.703125 201.554688 250.609375 201.648438 250.609375 201.765625 C 250.609375 201.882812 250.703125 201.976562 250.820312 201.976562 C 250.9375 201.976562 251.03125 201.882812 251.03125 201.765625 Z M 251.03125 201.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.6875 200.464844 C 251.6875 200.347656 251.59375 200.253906 251.476562 200.253906 C 251.359375 200.253906 251.265625 200.347656 251.265625 200.464844 C 251.265625 200.582031 251.359375 200.675781 251.476562 200.675781 C 251.59375 200.675781 251.6875 200.582031 251.6875 200.464844 Z M 251.6875 200.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.160156 200.335938 C 254.160156 200.21875 254.066406 200.125 253.949219 200.125 C 253.832031 200.125 253.738281 200.21875 253.738281 200.335938 C 253.738281 200.453125 253.832031 200.546875 253.949219 200.546875 C 254.066406 200.546875 254.160156 200.453125 254.160156 200.335938 Z M 254.160156 200.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.4375 200.21875 C 252.4375 200.101562 252.34375 200.007812 252.226562 200.007812 C 252.109375 200.007812 252.015625 200.101562 252.015625 200.21875 C 252.015625 200.335938 252.109375 200.429688 252.226562 200.429688 C 252.34375 200.429688 252.4375 200.335938 252.4375 200.21875 Z M 252.4375 200.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.964844 200.707031 C 252.964844 200.589844 252.871094 200.496094 252.753906 200.496094 C 252.636719 200.496094 252.542969 200.589844 252.542969 200.707031 C 252.542969 200.824219 252.636719 200.917969 252.753906 200.917969 C 252.871094 200.917969 252.964844 200.824219 252.964844 200.707031 Z M 252.964844 200.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.578125 200.277344 C 253.578125 200.160156 253.484375 200.066406 253.367188 200.066406 C 253.25 200.066406 253.15625 200.160156 253.15625 200.277344 C 253.15625 200.394531 253.25 200.488281 253.367188 200.488281 C 253.484375 200.488281 253.578125 200.394531 253.578125 200.277344 Z M 253.578125 200.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.636719 199.660156 C 249.636719 199.542969 249.542969 199.449219 249.425781 199.449219 C 249.308594 199.449219 249.214844 199.542969 249.214844 199.660156 C 249.214844 199.777344 249.308594 199.871094 249.425781 199.871094 C 249.542969 199.871094 249.636719 199.777344 249.636719 199.660156 Z M 249.636719 199.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.429688 199.179688 C 250.429688 199.0625 250.335938 198.96875 250.21875 198.96875 C 250.101562 198.96875 250.007812 199.0625 250.007812 199.179688 C 250.007812 199.296875 250.101562 199.390625 250.21875 199.390625 C 250.335938 199.390625 250.429688 199.296875 250.429688 199.179688 Z M 250.429688 199.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.875 198.410156 C 251.875 198.292969 251.78125 198.199219 251.664062 198.199219 C 251.546875 198.199219 251.453125 198.292969 251.453125 198.410156 C 251.453125 198.527344 251.546875 198.621094 251.664062 198.621094 C 251.78125 198.621094 251.875 198.527344 251.875 198.410156 Z M 251.875 198.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.578125 197.78125 C 251.578125 197.664062 251.484375 197.570312 251.367188 197.570312 C 251.25 197.570312 251.15625 197.664062 251.15625 197.78125 C 251.15625 197.898438 251.25 197.992188 251.367188 197.992188 C 251.484375 197.992188 251.578125 197.898438 251.578125 197.78125 Z M 251.578125 197.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.523438 195.539062 C 255.523438 195.421875 255.429688 195.328125 255.3125 195.328125 C 255.195312 195.328125 255.101562 195.421875 255.101562 195.539062 C 255.101562 195.65625 255.195312 195.75 255.3125 195.75 C 255.429688 195.75 255.523438 195.65625 255.523438 195.539062 Z M 255.523438 195.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.304688 195.054688 C 255.304688 194.9375 255.210938 194.84375 255.09375 194.84375 C 254.976562 194.84375 254.882812 194.9375 254.882812 195.054688 C 254.882812 195.171875 254.976562 195.265625 255.09375 195.265625 C 255.210938 195.265625 255.304688 195.171875 255.304688 195.054688 Z M 255.304688 195.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.703125 196.804688 C 252.703125 196.6875 252.609375 196.59375 252.492188 196.59375 C 252.375 196.59375 252.28125 196.6875 252.28125 196.804688 C 252.28125 196.921875 252.375 197.015625 252.492188 197.015625 C 252.609375 197.015625 252.703125 196.921875 252.703125 196.804688 Z M 252.703125 196.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.867188 196.675781 C 251.867188 196.558594 251.773438 196.464844 251.65625 196.464844 C 251.539062 196.464844 251.445312 196.558594 251.445312 196.675781 C 251.445312 196.792969 251.539062 196.886719 251.65625 196.886719 C 251.773438 196.886719 251.867188 196.792969 251.867188 196.675781 Z M 251.867188 196.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.992188 199.640625 C 248.992188 199.523438 248.898438 199.429688 248.78125 199.429688 C 248.664062 199.429688 248.570312 199.523438 248.570312 199.640625 C 248.570312 199.757812 248.664062 199.851562 248.78125 199.851562 C 248.898438 199.851562 248.992188 199.757812 248.992188 199.640625 Z M 248.992188 199.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.761719 198.8125 C 247.761719 198.695312 247.667969 198.601562 247.550781 198.601562 C 247.433594 198.601562 247.339844 198.695312 247.339844 198.8125 C 247.339844 198.929688 247.433594 199.023438 247.550781 199.023438 C 247.667969 199.023438 247.761719 198.929688 247.761719 198.8125 Z M 247.761719 198.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.582031 199.351562 C 249.582031 199.234375 249.488281 199.140625 249.371094 199.140625 C 249.253906 199.140625 249.160156 199.234375 249.160156 199.351562 C 249.160156 199.46875 249.253906 199.5625 249.371094 199.5625 C 249.488281 199.5625 249.582031 199.46875 249.582031 199.351562 Z M 249.582031 199.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.53125 198.296875 C 250.53125 198.179688 250.4375 198.085938 250.320312 198.085938 C 250.203125 198.085938 250.109375 198.179688 250.109375 198.296875 C 250.109375 198.414062 250.203125 198.507812 250.320312 198.507812 C 250.4375 198.507812 250.53125 198.414062 250.53125 198.296875 Z M 250.53125 198.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.597656 201.03125 C 249.597656 200.914062 249.503906 200.820312 249.386719 200.820312 C 249.269531 200.820312 249.175781 200.914062 249.175781 201.03125 C 249.175781 201.148438 249.269531 201.242188 249.386719 201.242188 C 249.503906 201.242188 249.597656 201.148438 249.597656 201.03125 Z M 249.597656 201.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.929688 201.335938 C 246.929688 201.21875 246.835938 201.125 246.71875 201.125 C 246.601562 201.125 246.507812 201.21875 246.507812 201.335938 C 246.507812 201.453125 246.601562 201.546875 246.71875 201.546875 C 246.835938 201.546875 246.929688 201.453125 246.929688 201.335938 Z M 246.929688 201.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.761719 201.402344 C 245.761719 201.285156 245.667969 201.191406 245.550781 201.191406 C 245.433594 201.191406 245.339844 201.285156 245.339844 201.402344 C 245.339844 201.519531 245.433594 201.613281 245.550781 201.613281 C 245.667969 201.613281 245.761719 201.519531 245.761719 201.402344 Z M 245.761719 201.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.925781 202.039062 C 246.925781 201.921875 246.832031 201.828125 246.714844 201.828125 C 246.597656 201.828125 246.503906 201.921875 246.503906 202.039062 C 246.503906 202.15625 246.597656 202.25 246.714844 202.25 C 246.832031 202.25 246.925781 202.15625 246.925781 202.039062 Z M 246.925781 202.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.742188 203.640625 C 251.742188 203.523438 251.648438 203.429688 251.53125 203.429688 C 251.414062 203.429688 251.320312 203.523438 251.320312 203.640625 C 251.320312 203.757812 251.414062 203.851562 251.53125 203.851562 C 251.648438 203.851562 251.742188 203.757812 251.742188 203.640625 Z M 251.742188 203.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.726562 201.132812 C 252.726562 201.015625 252.632812 200.921875 252.515625 200.921875 C 252.398438 200.921875 252.304688 201.015625 252.304688 201.132812 C 252.304688 201.25 252.398438 201.34375 252.515625 201.34375 C 252.632812 201.34375 252.726562 201.25 252.726562 201.132812 Z M 252.726562 201.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.617188 200.667969 C 255.617188 200.550781 255.523438 200.457031 255.40625 200.457031 C 255.289062 200.457031 255.195312 200.550781 255.195312 200.667969 C 255.195312 200.785156 255.289062 200.878906 255.40625 200.878906 C 255.523438 200.878906 255.617188 200.785156 255.617188 200.667969 Z M 255.617188 200.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.714844 202.140625 C 255.714844 202.023438 255.621094 201.929688 255.503906 201.929688 C 255.386719 201.929688 255.292969 202.023438 255.292969 202.140625 C 255.292969 202.257812 255.386719 202.351562 255.503906 202.351562 C 255.621094 202.351562 255.714844 202.257812 255.714844 202.140625 Z M 255.714844 202.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.375 200.671875 C 254.375 200.554688 254.28125 200.460938 254.164062 200.460938 C 254.046875 200.460938 253.953125 200.554688 253.953125 200.671875 C 253.953125 200.789062 254.046875 200.882812 254.164062 200.882812 C 254.28125 200.882812 254.375 200.789062 254.375 200.671875 Z M 254.375 200.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.730469 196.96875 C 256.730469 196.851562 256.636719 196.757812 256.519531 196.757812 C 256.402344 196.757812 256.308594 196.851562 256.308594 196.96875 C 256.308594 197.085938 256.402344 197.179688 256.519531 197.179688 C 256.636719 197.179688 256.730469 197.085938 256.730469 196.96875 Z M 256.730469 196.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.554688 197.21875 C 257.554688 197.101562 257.460938 197.007812 257.34375 197.007812 C 257.226562 197.007812 257.132812 197.101562 257.132812 197.21875 C 257.132812 197.335938 257.226562 197.429688 257.34375 197.429688 C 257.460938 197.429688 257.554688 197.335938 257.554688 197.21875 Z M 257.554688 197.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.433594 196.785156 C 258.433594 196.667969 258.339844 196.574219 258.222656 196.574219 C 258.105469 196.574219 258.011719 196.667969 258.011719 196.785156 C 258.011719 196.902344 258.105469 196.996094 258.222656 196.996094 C 258.339844 196.996094 258.433594 196.902344 258.433594 196.785156 Z M 258.433594 196.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.800781 196.417969 C 258.800781 196.300781 258.707031 196.207031 258.589844 196.207031 C 258.472656 196.207031 258.378906 196.300781 258.378906 196.417969 C 258.378906 196.535156 258.472656 196.628906 258.589844 196.628906 C 258.707031 196.628906 258.800781 196.535156 258.800781 196.417969 Z M 258.800781 196.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.230469 194.070312 C 257.230469 193.953125 257.136719 193.859375 257.019531 193.859375 C 256.902344 193.859375 256.808594 193.953125 256.808594 194.070312 C 256.808594 194.1875 256.902344 194.28125 257.019531 194.28125 C 257.136719 194.28125 257.230469 194.1875 257.230469 194.070312 Z M 257.230469 194.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.433594 192.738281 C 256.433594 192.621094 256.339844 192.527344 256.222656 192.527344 C 256.105469 192.527344 256.011719 192.621094 256.011719 192.738281 C 256.011719 192.855469 256.105469 192.949219 256.222656 192.949219 C 256.339844 192.949219 256.433594 192.855469 256.433594 192.738281 Z M 256.433594 192.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.398438 195.402344 C 251.398438 195.285156 251.304688 195.191406 251.1875 195.191406 C 251.070312 195.191406 250.976562 195.285156 250.976562 195.402344 C 250.976562 195.519531 251.070312 195.613281 251.1875 195.613281 C 251.304688 195.613281 251.398438 195.519531 251.398438 195.402344 Z M 251.398438 195.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.921875 195.601562 C 252.921875 195.484375 252.828125 195.390625 252.710938 195.390625 C 252.59375 195.390625 252.5 195.484375 252.5 195.601562 C 252.5 195.71875 252.59375 195.8125 252.710938 195.8125 C 252.828125 195.8125 252.921875 195.71875 252.921875 195.601562 Z M 252.921875 195.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.351562 192.59375 C 254.351562 192.476562 254.257812 192.382812 254.140625 192.382812 C 254.023438 192.382812 253.929688 192.476562 253.929688 192.59375 C 253.929688 192.710938 254.023438 192.804688 254.140625 192.804688 C 254.257812 192.804688 254.351562 192.710938 254.351562 192.59375 Z M 254.351562 192.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.546875 193.816406 C 253.546875 193.699219 253.453125 193.605469 253.335938 193.605469 C 253.21875 193.605469 253.125 193.699219 253.125 193.816406 C 253.125 193.933594 253.21875 194.027344 253.335938 194.027344 C 253.453125 194.027344 253.546875 193.933594 253.546875 193.816406 Z M 253.546875 193.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.5625 192.722656 C 252.5625 192.605469 252.46875 192.511719 252.351562 192.511719 C 252.234375 192.511719 252.140625 192.605469 252.140625 192.722656 C 252.140625 192.839844 252.234375 192.933594 252.351562 192.933594 C 252.46875 192.933594 252.5625 192.839844 252.5625 192.722656 Z M 252.5625 192.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.457031 194.238281 C 249.457031 194.121094 249.363281 194.027344 249.246094 194.027344 C 249.128906 194.027344 249.035156 194.121094 249.035156 194.238281 C 249.035156 194.355469 249.128906 194.449219 249.246094 194.449219 C 249.363281 194.449219 249.457031 194.355469 249.457031 194.238281 Z M 249.457031 194.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.722656 194.480469 C 250.722656 194.363281 250.628906 194.269531 250.511719 194.269531 C 250.394531 194.269531 250.300781 194.363281 250.300781 194.480469 C 250.300781 194.597656 250.394531 194.691406 250.511719 194.691406 C 250.628906 194.691406 250.722656 194.597656 250.722656 194.480469 Z M 250.722656 194.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.789062 197.132812 C 253.789062 197.015625 253.695312 196.921875 253.578125 196.921875 C 253.460938 196.921875 253.367188 197.015625 253.367188 197.132812 C 253.367188 197.25 253.460938 197.34375 253.578125 197.34375 C 253.695312 197.34375 253.789062 197.25 253.789062 197.132812 Z M 253.789062 197.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.484375 192.964844 C 250.484375 192.847656 250.390625 192.753906 250.273438 192.753906 C 250.15625 192.753906 250.0625 192.847656 250.0625 192.964844 C 250.0625 193.082031 250.15625 193.175781 250.273438 193.175781 C 250.390625 193.175781 250.484375 193.082031 250.484375 192.964844 Z M 250.484375 192.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.164062 191.875 C 247.164062 191.757812 247.070312 191.664062 246.953125 191.664062 C 246.835938 191.664062 246.742188 191.757812 246.742188 191.875 C 246.742188 191.992188 246.835938 192.085938 246.953125 192.085938 C 247.070312 192.085938 247.164062 191.992188 247.164062 191.875 Z M 247.164062 191.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.265625 191.378906 C 248.265625 191.261719 248.171875 191.167969 248.054688 191.167969 C 247.9375 191.167969 247.84375 191.261719 247.84375 191.378906 C 247.84375 191.496094 247.9375 191.589844 248.054688 191.589844 C 248.171875 191.589844 248.265625 191.496094 248.265625 191.378906 Z M 248.265625 191.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.859375 193.445312 C 248.859375 193.328125 248.765625 193.234375 248.648438 193.234375 C 248.53125 193.234375 248.4375 193.328125 248.4375 193.445312 C 248.4375 193.5625 248.53125 193.65625 248.648438 193.65625 C 248.765625 193.65625 248.859375 193.5625 248.859375 193.445312 Z M 248.859375 193.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.429688 192.3125 C 247.429688 192.195312 247.335938 192.101562 247.21875 192.101562 C 247.101562 192.101562 247.007812 192.195312 247.007812 192.3125 C 247.007812 192.429688 247.101562 192.523438 247.21875 192.523438 C 247.335938 192.523438 247.429688 192.429688 247.429688 192.3125 Z M 247.429688 192.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.039062 190.257812 C 250.039062 190.140625 249.945312 190.046875 249.828125 190.046875 C 249.710938 190.046875 249.617188 190.140625 249.617188 190.257812 C 249.617188 190.375 249.710938 190.46875 249.828125 190.46875 C 249.945312 190.46875 250.039062 190.375 250.039062 190.257812 Z M 250.039062 190.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.894531 190.445312 C 246.894531 190.328125 246.800781 190.234375 246.683594 190.234375 C 246.566406 190.234375 246.472656 190.328125 246.472656 190.445312 C 246.472656 190.5625 246.566406 190.65625 246.683594 190.65625 C 246.800781 190.65625 246.894531 190.5625 246.894531 190.445312 Z M 246.894531 190.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.183594 190.667969 C 248.183594 190.550781 248.089844 190.457031 247.972656 190.457031 C 247.855469 190.457031 247.761719 190.550781 247.761719 190.667969 C 247.761719 190.785156 247.855469 190.878906 247.972656 190.878906 C 248.089844 190.878906 248.183594 190.785156 248.183594 190.667969 Z M 248.183594 190.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.050781 189.128906 C 250.050781 189.011719 249.957031 188.917969 249.839844 188.917969 C 249.722656 188.917969 249.628906 189.011719 249.628906 189.128906 C 249.628906 189.246094 249.722656 189.339844 249.839844 189.339844 C 249.957031 189.339844 250.050781 189.246094 250.050781 189.128906 Z M 250.050781 189.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.753906 190.328125 C 253.753906 190.210938 253.660156 190.117188 253.542969 190.117188 C 253.425781 190.117188 253.332031 190.210938 253.332031 190.328125 C 253.332031 190.445312 253.425781 190.539062 253.542969 190.539062 C 253.660156 190.539062 253.753906 190.445312 253.753906 190.328125 Z M 253.753906 190.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.171875 192.015625 C 250.171875 191.898438 250.078125 191.804688 249.960938 191.804688 C 249.84375 191.804688 249.75 191.898438 249.75 192.015625 C 249.75 192.132812 249.84375 192.226562 249.960938 192.226562 C 250.078125 192.226562 250.171875 192.132812 250.171875 192.015625 Z M 250.171875 192.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.183594 187.722656 C 251.183594 187.605469 251.089844 187.511719 250.972656 187.511719 C 250.855469 187.511719 250.761719 187.605469 250.761719 187.722656 C 250.761719 187.839844 250.855469 187.933594 250.972656 187.933594 C 251.089844 187.933594 251.183594 187.839844 251.183594 187.722656 Z M 251.183594 187.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.140625 187.40625 C 252.140625 187.289062 252.046875 187.195312 251.929688 187.195312 C 251.8125 187.195312 251.71875 187.289062 251.71875 187.40625 C 251.71875 187.523438 251.8125 187.617188 251.929688 187.617188 C 252.046875 187.617188 252.140625 187.523438 252.140625 187.40625 Z M 252.140625 187.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.277344 189.640625 C 253.277344 189.523438 253.183594 189.429688 253.066406 189.429688 C 252.949219 189.429688 252.855469 189.523438 252.855469 189.640625 C 252.855469 189.757812 252.949219 189.851562 253.066406 189.851562 C 253.183594 189.851562 253.277344 189.757812 253.277344 189.640625 Z M 253.277344 189.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.566406 185.816406 C 251.566406 185.699219 251.472656 185.605469 251.355469 185.605469 C 251.238281 185.605469 251.144531 185.699219 251.144531 185.816406 C 251.144531 185.933594 251.238281 186.027344 251.355469 186.027344 C 251.472656 186.027344 251.566406 185.933594 251.566406 185.816406 Z M 251.566406 185.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.171875 184.574219 C 248.171875 184.457031 248.078125 184.363281 247.960938 184.363281 C 247.84375 184.363281 247.75 184.457031 247.75 184.574219 C 247.75 184.691406 247.84375 184.785156 247.960938 184.785156 C 248.078125 184.785156 248.171875 184.691406 248.171875 184.574219 Z M 248.171875 184.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.382812 185.492188 C 245.382812 185.375 245.289062 185.28125 245.171875 185.28125 C 245.054688 185.28125 244.960938 185.375 244.960938 185.492188 C 244.960938 185.609375 245.054688 185.703125 245.171875 185.703125 C 245.289062 185.703125 245.382812 185.609375 245.382812 185.492188 Z M 245.382812 185.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.796875 184.8125 C 247.796875 184.695312 247.703125 184.601562 247.585938 184.601562 C 247.46875 184.601562 247.375 184.695312 247.375 184.8125 C 247.375 184.929688 247.46875 185.023438 247.585938 185.023438 C 247.703125 185.023438 247.796875 184.929688 247.796875 184.8125 Z M 247.796875 184.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.816406 184.179688 C 249.816406 184.0625 249.722656 183.96875 249.605469 183.96875 C 249.488281 183.96875 249.394531 184.0625 249.394531 184.179688 C 249.394531 184.296875 249.488281 184.390625 249.605469 184.390625 C 249.722656 184.390625 249.816406 184.296875 249.816406 184.179688 Z M 249.816406 184.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.4375 187.699219 C 250.4375 187.582031 250.34375 187.488281 250.226562 187.488281 C 250.109375 187.488281 250.015625 187.582031 250.015625 187.699219 C 250.015625 187.816406 250.109375 187.910156 250.226562 187.910156 C 250.34375 187.910156 250.4375 187.816406 250.4375 187.699219 Z M 250.4375 187.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.871094 185.113281 C 250.871094 184.996094 250.777344 184.902344 250.660156 184.902344 C 250.542969 184.902344 250.449219 184.996094 250.449219 185.113281 C 250.449219 185.230469 250.542969 185.324219 250.660156 185.324219 C 250.777344 185.324219 250.871094 185.230469 250.871094 185.113281 Z M 250.871094 185.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.910156 184.371094 C 249.910156 184.253906 249.816406 184.160156 249.699219 184.160156 C 249.582031 184.160156 249.488281 184.253906 249.488281 184.371094 C 249.488281 184.488281 249.582031 184.582031 249.699219 184.582031 C 249.816406 184.582031 249.910156 184.488281 249.910156 184.371094 Z M 249.910156 184.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.441406 183.203125 C 251.441406 183.085938 251.347656 182.992188 251.230469 182.992188 C 251.113281 182.992188 251.019531 183.085938 251.019531 183.203125 C 251.019531 183.320312 251.113281 183.414062 251.230469 183.414062 C 251.347656 183.414062 251.441406 183.320312 251.441406 183.203125 Z M 251.441406 183.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.078125 184.082031 C 252.078125 183.964844 251.984375 183.871094 251.867188 183.871094 C 251.75 183.871094 251.65625 183.964844 251.65625 184.082031 C 251.65625 184.199219 251.75 184.292969 251.867188 184.292969 C 251.984375 184.292969 252.078125 184.199219 252.078125 184.082031 Z M 252.078125 184.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.367188 183.8125 C 253.367188 183.695312 253.273438 183.601562 253.15625 183.601562 C 253.039062 183.601562 252.945312 183.695312 252.945312 183.8125 C 252.945312 183.929688 253.039062 184.023438 253.15625 184.023438 C 253.273438 184.023438 253.367188 183.929688 253.367188 183.8125 Z M 253.367188 183.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.382812 180.242188 C 257.382812 180.125 257.289062 180.03125 257.171875 180.03125 C 257.054688 180.03125 256.960938 180.125 256.960938 180.242188 C 256.960938 180.359375 257.054688 180.453125 257.171875 180.453125 C 257.289062 180.453125 257.382812 180.359375 257.382812 180.242188 Z M 257.382812 180.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.617188 180.558594 C 258.617188 180.441406 258.523438 180.347656 258.40625 180.347656 C 258.289062 180.347656 258.195312 180.441406 258.195312 180.558594 C 258.195312 180.675781 258.289062 180.769531 258.40625 180.769531 C 258.523438 180.769531 258.617188 180.675781 258.617188 180.558594 Z M 258.617188 180.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.660156 178.429688 C 258.660156 178.3125 258.566406 178.21875 258.449219 178.21875 C 258.332031 178.21875 258.238281 178.3125 258.238281 178.429688 C 258.238281 178.546875 258.332031 178.640625 258.449219 178.640625 C 258.566406 178.640625 258.660156 178.546875 258.660156 178.429688 Z M 258.660156 178.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.78125 181.332031 C 258.78125 181.214844 258.6875 181.121094 258.570312 181.121094 C 258.453125 181.121094 258.359375 181.214844 258.359375 181.332031 C 258.359375 181.449219 258.453125 181.542969 258.570312 181.542969 C 258.6875 181.542969 258.78125 181.449219 258.78125 181.332031 Z M 258.78125 181.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.804688 180.722656 C 259.804688 180.605469 259.710938 180.511719 259.59375 180.511719 C 259.476562 180.511719 259.382812 180.605469 259.382812 180.722656 C 259.382812 180.839844 259.476562 180.933594 259.59375 180.933594 C 259.710938 180.933594 259.804688 180.839844 259.804688 180.722656 Z M 259.804688 180.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.910156 179.207031 C 256.910156 179.089844 256.816406 178.996094 256.699219 178.996094 C 256.582031 178.996094 256.488281 179.089844 256.488281 179.207031 C 256.488281 179.324219 256.582031 179.417969 256.699219 179.417969 C 256.816406 179.417969 256.910156 179.324219 256.910156 179.207031 Z M 256.910156 179.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.019531 177.929688 C 259.019531 177.8125 258.925781 177.71875 258.808594 177.71875 C 258.691406 177.71875 258.597656 177.8125 258.597656 177.929688 C 258.597656 178.046875 258.691406 178.140625 258.808594 178.140625 C 258.925781 178.140625 259.019531 178.046875 259.019531 177.929688 Z M 259.019531 177.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.152344 176.191406 C 259.152344 176.074219 259.058594 175.980469 258.941406 175.980469 C 258.824219 175.980469 258.730469 176.074219 258.730469 176.191406 C 258.730469 176.308594 258.824219 176.402344 258.941406 176.402344 C 259.058594 176.402344 259.152344 176.308594 259.152344 176.191406 Z M 259.152344 176.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.917969 175.6875 C 259.917969 175.570312 259.824219 175.476562 259.707031 175.476562 C 259.589844 175.476562 259.496094 175.570312 259.496094 175.6875 C 259.496094 175.804688 259.589844 175.898438 259.707031 175.898438 C 259.824219 175.898438 259.917969 175.804688 259.917969 175.6875 Z M 259.917969 175.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.296875 178.738281 C 259.296875 178.621094 259.203125 178.527344 259.085938 178.527344 C 258.96875 178.527344 258.875 178.621094 258.875 178.738281 C 258.875 178.855469 258.96875 178.949219 259.085938 178.949219 C 259.203125 178.949219 259.296875 178.855469 259.296875 178.738281 Z M 259.296875 178.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.90625 183.359375 C 260.90625 183.242188 260.8125 183.148438 260.695312 183.148438 C 260.578125 183.148438 260.484375 183.242188 260.484375 183.359375 C 260.484375 183.476562 260.578125 183.570312 260.695312 183.570312 C 260.8125 183.570312 260.90625 183.476562 260.90625 183.359375 Z M 260.90625 183.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.449219 182.589844 C 260.449219 182.472656 260.355469 182.378906 260.238281 182.378906 C 260.121094 182.378906 260.027344 182.472656 260.027344 182.589844 C 260.027344 182.707031 260.121094 182.800781 260.238281 182.800781 C 260.355469 182.800781 260.449219 182.707031 260.449219 182.589844 Z M 260.449219 182.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.03125 184.96875 C 262.03125 184.851562 261.9375 184.757812 261.820312 184.757812 C 261.703125 184.757812 261.609375 184.851562 261.609375 184.96875 C 261.609375 185.085938 261.703125 185.179688 261.820312 185.179688 C 261.9375 185.179688 262.03125 185.085938 262.03125 184.96875 Z M 262.03125 184.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.457031 183.765625 C 260.457031 183.648438 260.363281 183.554688 260.246094 183.554688 C 260.128906 183.554688 260.035156 183.648438 260.035156 183.765625 C 260.035156 183.882812 260.128906 183.976562 260.246094 183.976562 C 260.363281 183.976562 260.457031 183.882812 260.457031 183.765625 Z M 260.457031 183.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.546875 185.378906 C 257.546875 185.261719 257.453125 185.167969 257.335938 185.167969 C 257.21875 185.167969 257.125 185.261719 257.125 185.378906 C 257.125 185.496094 257.21875 185.589844 257.335938 185.589844 C 257.453125 185.589844 257.546875 185.496094 257.546875 185.378906 Z M 257.546875 185.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.761719 182.050781 C 255.761719 181.933594 255.667969 181.839844 255.550781 181.839844 C 255.433594 181.839844 255.339844 181.933594 255.339844 182.050781 C 255.339844 182.167969 255.433594 182.261719 255.550781 182.261719 C 255.667969 182.261719 255.761719 182.167969 255.761719 182.050781 Z M 255.761719 182.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.292969 179.742188 C 257.292969 179.625 257.199219 179.53125 257.082031 179.53125 C 256.964844 179.53125 256.871094 179.625 256.871094 179.742188 C 256.871094 179.859375 256.964844 179.953125 257.082031 179.953125 C 257.199219 179.953125 257.292969 179.859375 257.292969 179.742188 Z M 257.292969 179.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.3125 177.910156 C 260.3125 177.792969 260.21875 177.699219 260.101562 177.699219 C 259.984375 177.699219 259.890625 177.792969 259.890625 177.910156 C 259.890625 178.027344 259.984375 178.121094 260.101562 178.121094 C 260.21875 178.121094 260.3125 178.027344 260.3125 177.910156 Z M 260.3125 177.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.914062 178.792969 C 259.914062 178.675781 259.820312 178.582031 259.703125 178.582031 C 259.585938 178.582031 259.492188 178.675781 259.492188 178.792969 C 259.492188 178.910156 259.585938 179.003906 259.703125 179.003906 C 259.820312 179.003906 259.914062 178.910156 259.914062 178.792969 Z M 259.914062 178.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.183594 176.339844 C 260.183594 176.222656 260.089844 176.128906 259.972656 176.128906 C 259.855469 176.128906 259.761719 176.222656 259.761719 176.339844 C 259.761719 176.457031 259.855469 176.550781 259.972656 176.550781 C 260.089844 176.550781 260.183594 176.457031 260.183594 176.339844 Z M 260.183594 176.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.617188 174.191406 C 260.617188 174.074219 260.523438 173.980469 260.40625 173.980469 C 260.289062 173.980469 260.195312 174.074219 260.195312 174.191406 C 260.195312 174.308594 260.289062 174.402344 260.40625 174.402344 C 260.523438 174.402344 260.617188 174.308594 260.617188 174.191406 Z M 260.617188 174.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.703125 177.773438 C 262.703125 177.65625 262.609375 177.5625 262.492188 177.5625 C 262.375 177.5625 262.28125 177.65625 262.28125 177.773438 C 262.28125 177.890625 262.375 177.984375 262.492188 177.984375 C 262.609375 177.984375 262.703125 177.890625 262.703125 177.773438 Z M 262.703125 177.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.722656 178.609375 C 263.722656 178.492188 263.628906 178.398438 263.511719 178.398438 C 263.394531 178.398438 263.300781 178.492188 263.300781 178.609375 C 263.300781 178.726562 263.394531 178.820312 263.511719 178.820312 C 263.628906 178.820312 263.722656 178.726562 263.722656 178.609375 Z M 263.722656 178.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.976562 178.613281 C 262.976562 178.496094 262.882812 178.402344 262.765625 178.402344 C 262.648438 178.402344 262.554688 178.496094 262.554688 178.613281 C 262.554688 178.730469 262.648438 178.824219 262.765625 178.824219 C 262.882812 178.824219 262.976562 178.730469 262.976562 178.613281 Z M 262.976562 178.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.5625 177.757812 C 264.5625 177.640625 264.46875 177.546875 264.351562 177.546875 C 264.234375 177.546875 264.140625 177.640625 264.140625 177.757812 C 264.140625 177.875 264.234375 177.96875 264.351562 177.96875 C 264.46875 177.96875 264.5625 177.875 264.5625 177.757812 Z M 264.5625 177.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.175781 177.121094 C 260.175781 177.003906 260.082031 176.910156 259.964844 176.910156 C 259.847656 176.910156 259.753906 177.003906 259.753906 177.121094 C 259.753906 177.238281 259.847656 177.332031 259.964844 177.332031 C 260.082031 177.332031 260.175781 177.238281 260.175781 177.121094 Z M 260.175781 177.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.84375 178.542969 C 260.84375 178.425781 260.75 178.332031 260.632812 178.332031 C 260.515625 178.332031 260.421875 178.425781 260.421875 178.542969 C 260.421875 178.660156 260.515625 178.753906 260.632812 178.753906 C 260.75 178.753906 260.84375 178.660156 260.84375 178.542969 Z M 260.84375 178.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.445312 179.972656 C 262.445312 179.855469 262.351562 179.761719 262.234375 179.761719 C 262.117188 179.761719 262.023438 179.855469 262.023438 179.972656 C 262.023438 180.089844 262.117188 180.183594 262.234375 180.183594 C 262.351562 180.183594 262.445312 180.089844 262.445312 179.972656 Z M 262.445312 179.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.394531 182.304688 C 263.394531 182.1875 263.300781 182.09375 263.183594 182.09375 C 263.066406 182.09375 262.972656 182.1875 262.972656 182.304688 C 262.972656 182.421875 263.066406 182.515625 263.183594 182.515625 C 263.300781 182.515625 263.394531 182.421875 263.394531 182.304688 Z M 263.394531 182.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.660156 180.296875 C 261.660156 180.179688 261.566406 180.085938 261.449219 180.085938 C 261.332031 180.085938 261.238281 180.179688 261.238281 180.296875 C 261.238281 180.414062 261.332031 180.507812 261.449219 180.507812 C 261.566406 180.507812 261.660156 180.414062 261.660156 180.296875 Z M 261.660156 180.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.085938 180.320312 C 262.085938 180.203125 261.992188 180.109375 261.875 180.109375 C 261.757812 180.109375 261.664062 180.203125 261.664062 180.320312 C 261.664062 180.4375 261.757812 180.53125 261.875 180.53125 C 261.992188 180.53125 262.085938 180.4375 262.085938 180.320312 Z M 262.085938 180.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.910156 179.792969 C 264.910156 179.675781 264.816406 179.582031 264.699219 179.582031 C 264.582031 179.582031 264.488281 179.675781 264.488281 179.792969 C 264.488281 179.910156 264.582031 180.003906 264.699219 180.003906 C 264.816406 180.003906 264.910156 179.910156 264.910156 179.792969 Z M 264.910156 179.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.855469 180.316406 C 267.855469 180.199219 267.761719 180.105469 267.644531 180.105469 C 267.527344 180.105469 267.433594 180.199219 267.433594 180.316406 C 267.433594 180.433594 267.527344 180.527344 267.644531 180.527344 C 267.761719 180.527344 267.855469 180.433594 267.855469 180.316406 Z M 267.855469 180.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.265625 180.4375 C 268.265625 180.320312 268.171875 180.226562 268.054688 180.226562 C 267.9375 180.226562 267.84375 180.320312 267.84375 180.4375 C 267.84375 180.554688 267.9375 180.648438 268.054688 180.648438 C 268.171875 180.648438 268.265625 180.554688 268.265625 180.4375 Z M 268.265625 180.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.816406 182.121094 C 267.816406 182.003906 267.722656 181.910156 267.605469 181.910156 C 267.488281 181.910156 267.394531 182.003906 267.394531 182.121094 C 267.394531 182.238281 267.488281 182.332031 267.605469 182.332031 C 267.722656 182.332031 267.816406 182.238281 267.816406 182.121094 Z M 267.816406 182.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.042969 181.628906 C 268.042969 181.511719 267.949219 181.417969 267.832031 181.417969 C 267.714844 181.417969 267.621094 181.511719 267.621094 181.628906 C 267.621094 181.746094 267.714844 181.839844 267.832031 181.839844 C 267.949219 181.839844 268.042969 181.746094 268.042969 181.628906 Z M 268.042969 181.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.757812 183.300781 C 268.757812 183.183594 268.664062 183.089844 268.546875 183.089844 C 268.429688 183.089844 268.335938 183.183594 268.335938 183.300781 C 268.335938 183.417969 268.429688 183.511719 268.546875 183.511719 C 268.664062 183.511719 268.757812 183.417969 268.757812 183.300781 Z M 268.757812 183.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.074219 182.546875 C 268.074219 182.429688 267.980469 182.335938 267.863281 182.335938 C 267.746094 182.335938 267.652344 182.429688 267.652344 182.546875 C 267.652344 182.664062 267.746094 182.757812 267.863281 182.757812 C 267.980469 182.757812 268.074219 182.664062 268.074219 182.546875 Z M 268.074219 182.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.171875 184.003906 C 271.171875 183.886719 271.078125 183.792969 270.960938 183.792969 C 270.84375 183.792969 270.75 183.886719 270.75 184.003906 C 270.75 184.121094 270.84375 184.214844 270.960938 184.214844 C 271.078125 184.214844 271.171875 184.121094 271.171875 184.003906 Z M 271.171875 184.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.859375 185.777344 C 272.859375 185.660156 272.765625 185.566406 272.648438 185.566406 C 272.53125 185.566406 272.4375 185.660156 272.4375 185.777344 C 272.4375 185.894531 272.53125 185.988281 272.648438 185.988281 C 272.765625 185.988281 272.859375 185.894531 272.859375 185.777344 Z M 272.859375 185.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.070312 185.71875 C 272.070312 185.601562 271.976562 185.507812 271.859375 185.507812 C 271.742188 185.507812 271.648438 185.601562 271.648438 185.71875 C 271.648438 185.835938 271.742188 185.929688 271.859375 185.929688 C 271.976562 185.929688 272.070312 185.835938 272.070312 185.71875 Z M 272.070312 185.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.636719 186.792969 C 274.636719 186.675781 274.542969 186.582031 274.425781 186.582031 C 274.308594 186.582031 274.214844 186.675781 274.214844 186.792969 C 274.214844 186.910156 274.308594 187.003906 274.425781 187.003906 C 274.542969 187.003906 274.636719 186.910156 274.636719 186.792969 Z M 274.636719 186.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.390625 192.199219 C 276.390625 192.082031 276.296875 191.988281 276.179688 191.988281 C 276.0625 191.988281 275.96875 192.082031 275.96875 192.199219 C 275.96875 192.316406 276.0625 192.410156 276.179688 192.410156 C 276.296875 192.410156 276.390625 192.316406 276.390625 192.199219 Z M 276.390625 192.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.609375 194.488281 C 277.609375 194.371094 277.515625 194.277344 277.398438 194.277344 C 277.28125 194.277344 277.1875 194.371094 277.1875 194.488281 C 277.1875 194.605469 277.28125 194.699219 277.398438 194.699219 C 277.515625 194.699219 277.609375 194.605469 277.609375 194.488281 Z M 277.609375 194.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.8125 189.6875 C 277.8125 189.570312 277.71875 189.476562 277.601562 189.476562 C 277.484375 189.476562 277.390625 189.570312 277.390625 189.6875 C 277.390625 189.804688 277.484375 189.898438 277.601562 189.898438 C 277.71875 189.898438 277.8125 189.804688 277.8125 189.6875 Z M 277.8125 189.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.007812 185.933594 C 278.007812 185.816406 277.914062 185.722656 277.796875 185.722656 C 277.679688 185.722656 277.585938 185.816406 277.585938 185.933594 C 277.585938 186.050781 277.679688 186.144531 277.796875 186.144531 C 277.914062 186.144531 278.007812 186.050781 278.007812 185.933594 Z M 278.007812 185.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.5 190.039062 C 281.5 189.921875 281.40625 189.828125 281.289062 189.828125 C 281.171875 189.828125 281.078125 189.921875 281.078125 190.039062 C 281.078125 190.15625 281.171875 190.25 281.289062 190.25 C 281.40625 190.25 281.5 190.15625 281.5 190.039062 Z M 281.5 190.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.238281 190.558594 C 284.238281 190.441406 284.144531 190.347656 284.027344 190.347656 C 283.910156 190.347656 283.816406 190.441406 283.816406 190.558594 C 283.816406 190.675781 283.910156 190.769531 284.027344 190.769531 C 284.144531 190.769531 284.238281 190.675781 284.238281 190.558594 Z M 284.238281 190.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.253906 192.929688 C 283.253906 192.8125 283.160156 192.71875 283.042969 192.71875 C 282.925781 192.71875 282.832031 192.8125 282.832031 192.929688 C 282.832031 193.046875 282.925781 193.140625 283.042969 193.140625 C 283.160156 193.140625 283.253906 193.046875 283.253906 192.929688 Z M 283.253906 192.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.078125 193.019531 C 281.078125 192.902344 280.984375 192.808594 280.867188 192.808594 C 280.75 192.808594 280.65625 192.902344 280.65625 193.019531 C 280.65625 193.136719 280.75 193.230469 280.867188 193.230469 C 280.984375 193.230469 281.078125 193.136719 281.078125 193.019531 Z M 281.078125 193.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.804688 194.253906 C 278.804688 194.136719 278.710938 194.042969 278.59375 194.042969 C 278.476562 194.042969 278.382812 194.136719 278.382812 194.253906 C 278.382812 194.371094 278.476562 194.464844 278.59375 194.464844 C 278.710938 194.464844 278.804688 194.371094 278.804688 194.253906 Z M 278.804688 194.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.273438 195.082031 C 280.273438 194.964844 280.179688 194.871094 280.0625 194.871094 C 279.945312 194.871094 279.851562 194.964844 279.851562 195.082031 C 279.851562 195.199219 279.945312 195.292969 280.0625 195.292969 C 280.179688 195.292969 280.273438 195.199219 280.273438 195.082031 Z M 280.273438 195.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.203125 193.609375 C 279.203125 193.492188 279.109375 193.398438 278.992188 193.398438 C 278.875 193.398438 278.78125 193.492188 278.78125 193.609375 C 278.78125 193.726562 278.875 193.820312 278.992188 193.820312 C 279.109375 193.820312 279.203125 193.726562 279.203125 193.609375 Z M 279.203125 193.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.859375 192.828125 C 277.859375 192.710938 277.765625 192.617188 277.648438 192.617188 C 277.53125 192.617188 277.4375 192.710938 277.4375 192.828125 C 277.4375 192.945312 277.53125 193.039062 277.648438 193.039062 C 277.765625 193.039062 277.859375 192.945312 277.859375 192.828125 Z M 277.859375 192.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.636719 191.925781 C 278.636719 191.808594 278.542969 191.714844 278.425781 191.714844 C 278.308594 191.714844 278.214844 191.808594 278.214844 191.925781 C 278.214844 192.042969 278.308594 192.136719 278.425781 192.136719 C 278.542969 192.136719 278.636719 192.042969 278.636719 191.925781 Z M 278.636719 191.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.324219 191.769531 C 279.324219 191.652344 279.230469 191.558594 279.113281 191.558594 C 278.996094 191.558594 278.902344 191.652344 278.902344 191.769531 C 278.902344 191.886719 278.996094 191.980469 279.113281 191.980469 C 279.230469 191.980469 279.324219 191.886719 279.324219 191.769531 Z M 279.324219 191.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.082031 189.761719 C 280.082031 189.644531 279.988281 189.550781 279.871094 189.550781 C 279.753906 189.550781 279.660156 189.644531 279.660156 189.761719 C 279.660156 189.878906 279.753906 189.972656 279.871094 189.972656 C 279.988281 189.972656 280.082031 189.878906 280.082031 189.761719 Z M 280.082031 189.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.421875 191.941406 C 278.421875 191.824219 278.328125 191.730469 278.210938 191.730469 C 278.09375 191.730469 278 191.824219 278 191.941406 C 278 192.058594 278.09375 192.152344 278.210938 192.152344 C 278.328125 192.152344 278.421875 192.058594 278.421875 191.941406 Z M 278.421875 191.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.972656 190.824219 C 279.972656 190.707031 279.878906 190.613281 279.761719 190.613281 C 279.644531 190.613281 279.550781 190.707031 279.550781 190.824219 C 279.550781 190.941406 279.644531 191.035156 279.761719 191.035156 C 279.878906 191.035156 279.972656 190.941406 279.972656 190.824219 Z M 279.972656 190.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.429688 190.554688 C 278.429688 190.4375 278.335938 190.34375 278.21875 190.34375 C 278.101562 190.34375 278.007812 190.4375 278.007812 190.554688 C 278.007812 190.671875 278.101562 190.765625 278.21875 190.765625 C 278.335938 190.765625 278.429688 190.671875 278.429688 190.554688 Z M 278.429688 190.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.984375 188.972656 C 279.984375 188.855469 279.890625 188.761719 279.773438 188.761719 C 279.65625 188.761719 279.5625 188.855469 279.5625 188.972656 C 279.5625 189.089844 279.65625 189.183594 279.773438 189.183594 C 279.890625 189.183594 279.984375 189.089844 279.984375 188.972656 Z M 279.984375 188.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.636719 193.417969 C 281.636719 193.300781 281.542969 193.207031 281.425781 193.207031 C 281.308594 193.207031 281.214844 193.300781 281.214844 193.417969 C 281.214844 193.535156 281.308594 193.628906 281.425781 193.628906 C 281.542969 193.628906 281.636719 193.535156 281.636719 193.417969 Z M 281.636719 193.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.132812 190.367188 C 280.132812 190.25 280.039062 190.15625 279.921875 190.15625 C 279.804688 190.15625 279.710938 190.25 279.710938 190.367188 C 279.710938 190.484375 279.804688 190.578125 279.921875 190.578125 C 280.039062 190.578125 280.132812 190.484375 280.132812 190.367188 Z M 280.132812 190.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.921875 192.335938 C 279.921875 192.21875 279.828125 192.125 279.710938 192.125 C 279.59375 192.125 279.5 192.21875 279.5 192.335938 C 279.5 192.453125 279.59375 192.546875 279.710938 192.546875 C 279.828125 192.546875 279.921875 192.453125 279.921875 192.335938 Z M 279.921875 192.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.90625 190.078125 C 274.90625 189.960938 274.8125 189.867188 274.695312 189.867188 C 274.578125 189.867188 274.484375 189.960938 274.484375 190.078125 C 274.484375 190.195312 274.578125 190.289062 274.695312 190.289062 C 274.8125 190.289062 274.90625 190.195312 274.90625 190.078125 Z M 274.90625 190.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.316406 190.625 C 274.316406 190.507812 274.222656 190.414062 274.105469 190.414062 C 273.988281 190.414062 273.894531 190.507812 273.894531 190.625 C 273.894531 190.742188 273.988281 190.835938 274.105469 190.835938 C 274.222656 190.835938 274.316406 190.742188 274.316406 190.625 Z M 274.316406 190.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.105469 191.515625 C 273.105469 191.398438 273.011719 191.304688 272.894531 191.304688 C 272.777344 191.304688 272.683594 191.398438 272.683594 191.515625 C 272.683594 191.632812 272.777344 191.726562 272.894531 191.726562 C 273.011719 191.726562 273.105469 191.632812 273.105469 191.515625 Z M 273.105469 191.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.753906 196.054688 C 272.753906 195.9375 272.660156 195.84375 272.542969 195.84375 C 272.425781 195.84375 272.332031 195.9375 272.332031 196.054688 C 272.332031 196.171875 272.425781 196.265625 272.542969 196.265625 C 272.660156 196.265625 272.753906 196.171875 272.753906 196.054688 Z M 272.753906 196.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.871094 194.816406 C 273.871094 194.699219 273.777344 194.605469 273.660156 194.605469 C 273.542969 194.605469 273.449219 194.699219 273.449219 194.816406 C 273.449219 194.933594 273.542969 195.027344 273.660156 195.027344 C 273.777344 195.027344 273.871094 194.933594 273.871094 194.816406 Z M 273.871094 194.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.488281 191.546875 C 274.488281 191.429688 274.394531 191.335938 274.277344 191.335938 C 274.160156 191.335938 274.066406 191.429688 274.066406 191.546875 C 274.066406 191.664062 274.160156 191.757812 274.277344 191.757812 C 274.394531 191.757812 274.488281 191.664062 274.488281 191.546875 Z M 274.488281 191.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.175781 188.886719 C 276.175781 188.769531 276.082031 188.675781 275.964844 188.675781 C 275.847656 188.675781 275.753906 188.769531 275.753906 188.886719 C 275.753906 189.003906 275.847656 189.097656 275.964844 189.097656 C 276.082031 189.097656 276.175781 189.003906 276.175781 188.886719 Z M 276.175781 188.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.246094 187.605469 C 276.246094 187.488281 276.152344 187.394531 276.035156 187.394531 C 275.917969 187.394531 275.824219 187.488281 275.824219 187.605469 C 275.824219 187.722656 275.917969 187.816406 276.035156 187.816406 C 276.152344 187.816406 276.246094 187.722656 276.246094 187.605469 Z M 276.246094 187.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.746094 185.90625 C 274.746094 185.789062 274.652344 185.695312 274.535156 185.695312 C 274.417969 185.695312 274.324219 185.789062 274.324219 185.90625 C 274.324219 186.023438 274.417969 186.117188 274.535156 186.117188 C 274.652344 186.117188 274.746094 186.023438 274.746094 185.90625 Z M 274.746094 185.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.347656 187.535156 C 273.347656 187.417969 273.253906 187.324219 273.136719 187.324219 C 273.019531 187.324219 272.925781 187.417969 272.925781 187.535156 C 272.925781 187.652344 273.019531 187.746094 273.136719 187.746094 C 273.253906 187.746094 273.347656 187.652344 273.347656 187.535156 Z M 273.347656 187.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.296875 187.375 C 273.296875 187.257812 273.203125 187.164062 273.085938 187.164062 C 272.96875 187.164062 272.875 187.257812 272.875 187.375 C 272.875 187.492188 272.96875 187.585938 273.085938 187.585938 C 273.203125 187.585938 273.296875 187.492188 273.296875 187.375 Z M 273.296875 187.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.839844 186.894531 C 271.839844 186.777344 271.746094 186.683594 271.628906 186.683594 C 271.511719 186.683594 271.417969 186.777344 271.417969 186.894531 C 271.417969 187.011719 271.511719 187.105469 271.628906 187.105469 C 271.746094 187.105469 271.839844 187.011719 271.839844 186.894531 Z M 271.839844 186.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.652344 186.046875 C 270.652344 185.929688 270.558594 185.835938 270.441406 185.835938 C 270.324219 185.835938 270.230469 185.929688 270.230469 186.046875 C 270.230469 186.164062 270.324219 186.257812 270.441406 186.257812 C 270.558594 186.257812 270.652344 186.164062 270.652344 186.046875 Z M 270.652344 186.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.535156 182.492188 C 269.535156 182.375 269.441406 182.28125 269.324219 182.28125 C 269.207031 182.28125 269.113281 182.375 269.113281 182.492188 C 269.113281 182.609375 269.207031 182.703125 269.324219 182.703125 C 269.441406 182.703125 269.535156 182.609375 269.535156 182.492188 Z M 269.535156 182.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.300781 187.445312 C 272.300781 187.328125 272.207031 187.234375 272.089844 187.234375 C 271.972656 187.234375 271.878906 187.328125 271.878906 187.445312 C 271.878906 187.5625 271.972656 187.65625 272.089844 187.65625 C 272.207031 187.65625 272.300781 187.5625 272.300781 187.445312 Z M 272.300781 187.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.917969 188.496094 C 271.917969 188.378906 271.824219 188.285156 271.707031 188.285156 C 271.589844 188.285156 271.496094 188.378906 271.496094 188.496094 C 271.496094 188.613281 271.589844 188.707031 271.707031 188.707031 C 271.824219 188.707031 271.917969 188.613281 271.917969 188.496094 Z M 271.917969 188.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.277344 190.058594 C 275.277344 189.941406 275.183594 189.847656 275.066406 189.847656 C 274.949219 189.847656 274.855469 189.941406 274.855469 190.058594 C 274.855469 190.175781 274.949219 190.269531 275.066406 190.269531 C 275.183594 190.269531 275.277344 190.175781 275.277344 190.058594 Z M 275.277344 190.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.214844 189.21875 C 275.214844 189.101562 275.121094 189.007812 275.003906 189.007812 C 274.886719 189.007812 274.792969 189.101562 274.792969 189.21875 C 274.792969 189.335938 274.886719 189.429688 275.003906 189.429688 C 275.121094 189.429688 275.214844 189.335938 275.214844 189.21875 Z M 275.214844 189.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.878906 189.117188 C 277.878906 189 277.785156 188.90625 277.667969 188.90625 C 277.550781 188.90625 277.457031 189 277.457031 189.117188 C 277.457031 189.234375 277.550781 189.328125 277.667969 189.328125 C 277.785156 189.328125 277.878906 189.234375 277.878906 189.117188 Z M 277.878906 189.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.570312 192.144531 C 276.570312 192.027344 276.476562 191.933594 276.359375 191.933594 C 276.242188 191.933594 276.148438 192.027344 276.148438 192.144531 C 276.148438 192.261719 276.242188 192.355469 276.359375 192.355469 C 276.476562 192.355469 276.570312 192.261719 276.570312 192.144531 Z M 276.570312 192.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.265625 189.726562 C 278.265625 189.609375 278.171875 189.515625 278.054688 189.515625 C 277.9375 189.515625 277.84375 189.609375 277.84375 189.726562 C 277.84375 189.84375 277.9375 189.9375 278.054688 189.9375 C 278.171875 189.9375 278.265625 189.84375 278.265625 189.726562 Z M 278.265625 189.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.597656 191.875 C 279.597656 191.757812 279.503906 191.664062 279.386719 191.664062 C 279.269531 191.664062 279.175781 191.757812 279.175781 191.875 C 279.175781 191.992188 279.269531 192.085938 279.386719 192.085938 C 279.503906 192.085938 279.597656 191.992188 279.597656 191.875 Z M 279.597656 191.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.152344 192.632812 C 284.152344 192.515625 284.058594 192.421875 283.941406 192.421875 C 283.824219 192.421875 283.730469 192.515625 283.730469 192.632812 C 283.730469 192.75 283.824219 192.84375 283.941406 192.84375 C 284.058594 192.84375 284.152344 192.75 284.152344 192.632812 Z M 284.152344 192.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.707031 191.335938 C 282.707031 191.21875 282.613281 191.125 282.496094 191.125 C 282.378906 191.125 282.285156 191.21875 282.285156 191.335938 C 282.285156 191.453125 282.378906 191.546875 282.496094 191.546875 C 282.613281 191.546875 282.707031 191.453125 282.707031 191.335938 Z M 282.707031 191.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.253906 189.96875 C 285.253906 189.851562 285.160156 189.757812 285.042969 189.757812 C 284.925781 189.757812 284.832031 189.851562 284.832031 189.96875 C 284.832031 190.085938 284.925781 190.179688 285.042969 190.179688 C 285.160156 190.179688 285.253906 190.085938 285.253906 189.96875 Z M 285.253906 189.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.898438 184.054688 C 283.898438 183.9375 283.804688 183.84375 283.6875 183.84375 C 283.570312 183.84375 283.476562 183.9375 283.476562 184.054688 C 283.476562 184.171875 283.570312 184.265625 283.6875 184.265625 C 283.804688 184.265625 283.898438 184.171875 283.898438 184.054688 Z M 283.898438 184.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.277344 185.414062 C 285.277344 185.296875 285.183594 185.203125 285.066406 185.203125 C 284.949219 185.203125 284.855469 185.296875 284.855469 185.414062 C 284.855469 185.53125 284.949219 185.625 285.066406 185.625 C 285.183594 185.625 285.277344 185.53125 285.277344 185.414062 Z M 285.277344 185.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.546875 184.472656 C 287.546875 184.355469 287.453125 184.261719 287.335938 184.261719 C 287.21875 184.261719 287.125 184.355469 287.125 184.472656 C 287.125 184.589844 287.21875 184.683594 287.335938 184.683594 C 287.453125 184.683594 287.546875 184.589844 287.546875 184.472656 Z M 287.546875 184.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.601562 182.414062 C 286.601562 182.296875 286.507812 182.203125 286.390625 182.203125 C 286.273438 182.203125 286.179688 182.296875 286.179688 182.414062 C 286.179688 182.53125 286.273438 182.625 286.390625 182.625 C 286.507812 182.625 286.601562 182.53125 286.601562 182.414062 Z M 286.601562 182.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.28125 183.398438 C 286.28125 183.28125 286.1875 183.1875 286.070312 183.1875 C 285.953125 183.1875 285.859375 183.28125 285.859375 183.398438 C 285.859375 183.515625 285.953125 183.609375 286.070312 183.609375 C 286.1875 183.609375 286.28125 183.515625 286.28125 183.398438 Z M 286.28125 183.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.65625 182.453125 C 287.65625 182.335938 287.5625 182.242188 287.445312 182.242188 C 287.328125 182.242188 287.234375 182.335938 287.234375 182.453125 C 287.234375 182.570312 287.328125 182.664062 287.445312 182.664062 C 287.5625 182.664062 287.65625 182.570312 287.65625 182.453125 Z M 287.65625 182.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.828125 180.707031 C 285.828125 180.589844 285.734375 180.496094 285.617188 180.496094 C 285.5 180.496094 285.40625 180.589844 285.40625 180.707031 C 285.40625 180.824219 285.5 180.917969 285.617188 180.917969 C 285.734375 180.917969 285.828125 180.824219 285.828125 180.707031 Z M 285.828125 180.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.296875 177.851562 C 284.296875 177.734375 284.203125 177.640625 284.085938 177.640625 C 283.96875 177.640625 283.875 177.734375 283.875 177.851562 C 283.875 177.96875 283.96875 178.0625 284.085938 178.0625 C 284.203125 178.0625 284.296875 177.96875 284.296875 177.851562 Z M 284.296875 177.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.699219 178.109375 C 284.699219 177.992188 284.605469 177.898438 284.488281 177.898438 C 284.371094 177.898438 284.277344 177.992188 284.277344 178.109375 C 284.277344 178.226562 284.371094 178.320312 284.488281 178.320312 C 284.605469 178.320312 284.699219 178.226562 284.699219 178.109375 Z M 284.699219 178.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.925781 176.761719 C 284.925781 176.644531 284.832031 176.550781 284.714844 176.550781 C 284.597656 176.550781 284.503906 176.644531 284.503906 176.761719 C 284.503906 176.878906 284.597656 176.972656 284.714844 176.972656 C 284.832031 176.972656 284.925781 176.878906 284.925781 176.761719 Z M 284.925781 176.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.476562 180.261719 C 285.476562 180.144531 285.382812 180.050781 285.265625 180.050781 C 285.148438 180.050781 285.054688 180.144531 285.054688 180.261719 C 285.054688 180.378906 285.148438 180.472656 285.265625 180.472656 C 285.382812 180.472656 285.476562 180.378906 285.476562 180.261719 Z M 285.476562 180.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.472656 185.785156 C 284.472656 185.667969 284.378906 185.574219 284.261719 185.574219 C 284.144531 185.574219 284.050781 185.667969 284.050781 185.785156 C 284.050781 185.902344 284.144531 185.996094 284.261719 185.996094 C 284.378906 185.996094 284.472656 185.902344 284.472656 185.785156 Z M 284.472656 185.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.019531 183.601562 C 287.019531 183.484375 286.925781 183.390625 286.808594 183.390625 C 286.691406 183.390625 286.597656 183.484375 286.597656 183.601562 C 286.597656 183.71875 286.691406 183.8125 286.808594 183.8125 C 286.925781 183.8125 287.019531 183.71875 287.019531 183.601562 Z M 287.019531 183.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.160156 181.351562 C 288.160156 181.234375 288.066406 181.140625 287.949219 181.140625 C 287.832031 181.140625 287.738281 181.234375 287.738281 181.351562 C 287.738281 181.46875 287.832031 181.5625 287.949219 181.5625 C 288.066406 181.5625 288.160156 181.46875 288.160156 181.351562 Z M 288.160156 181.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.261719 184.730469 C 287.261719 184.613281 287.167969 184.519531 287.050781 184.519531 C 286.933594 184.519531 286.839844 184.613281 286.839844 184.730469 C 286.839844 184.847656 286.933594 184.941406 287.050781 184.941406 C 287.167969 184.941406 287.261719 184.847656 287.261719 184.730469 Z M 287.261719 184.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.230469 184.4375 C 287.230469 184.320312 287.136719 184.226562 287.019531 184.226562 C 286.902344 184.226562 286.808594 184.320312 286.808594 184.4375 C 286.808594 184.554688 286.902344 184.648438 287.019531 184.648438 C 287.136719 184.648438 287.230469 184.554688 287.230469 184.4375 Z M 287.230469 184.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.542969 182.699219 C 286.542969 182.582031 286.449219 182.488281 286.332031 182.488281 C 286.214844 182.488281 286.121094 182.582031 286.121094 182.699219 C 286.121094 182.816406 286.214844 182.910156 286.332031 182.910156 C 286.449219 182.910156 286.542969 182.816406 286.542969 182.699219 Z M 286.542969 182.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.757812 183.957031 C 285.757812 183.839844 285.664062 183.746094 285.546875 183.746094 C 285.429688 183.746094 285.335938 183.839844 285.335938 183.957031 C 285.335938 184.074219 285.429688 184.167969 285.546875 184.167969 C 285.664062 184.167969 285.757812 184.074219 285.757812 183.957031 Z M 285.757812 183.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.484375 186.378906 C 285.484375 186.261719 285.390625 186.167969 285.273438 186.167969 C 285.15625 186.167969 285.0625 186.261719 285.0625 186.378906 C 285.0625 186.496094 285.15625 186.589844 285.273438 186.589844 C 285.390625 186.589844 285.484375 186.496094 285.484375 186.378906 Z M 285.484375 186.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.757812 183.28125 C 283.757812 183.164062 283.664062 183.070312 283.546875 183.070312 C 283.429688 183.070312 283.335938 183.164062 283.335938 183.28125 C 283.335938 183.398438 283.429688 183.492188 283.546875 183.492188 C 283.664062 183.492188 283.757812 183.398438 283.757812 183.28125 Z M 283.757812 183.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.824219 183.269531 C 284.824219 183.152344 284.730469 183.058594 284.613281 183.058594 C 284.496094 183.058594 284.402344 183.152344 284.402344 183.269531 C 284.402344 183.386719 284.496094 183.480469 284.613281 183.480469 C 284.730469 183.480469 284.824219 183.386719 284.824219 183.269531 Z M 284.824219 183.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.871094 183.835938 C 287.871094 183.71875 287.777344 183.625 287.660156 183.625 C 287.542969 183.625 287.449219 183.71875 287.449219 183.835938 C 287.449219 183.953125 287.542969 184.046875 287.660156 184.046875 C 287.777344 184.046875 287.871094 183.953125 287.871094 183.835938 Z M 287.871094 183.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.460938 179.300781 C 289.460938 179.183594 289.367188 179.089844 289.25 179.089844 C 289.132812 179.089844 289.039062 179.183594 289.039062 179.300781 C 289.039062 179.417969 289.132812 179.511719 289.25 179.511719 C 289.367188 179.511719 289.460938 179.417969 289.460938 179.300781 Z M 289.460938 179.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.007812 181.921875 C 290.007812 181.804688 289.914062 181.710938 289.796875 181.710938 C 289.679688 181.710938 289.585938 181.804688 289.585938 181.921875 C 289.585938 182.039062 289.679688 182.132812 289.796875 182.132812 C 289.914062 182.132812 290.007812 182.039062 290.007812 181.921875 Z M 290.007812 181.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.167969 179.902344 C 289.167969 179.785156 289.074219 179.691406 288.957031 179.691406 C 288.839844 179.691406 288.746094 179.785156 288.746094 179.902344 C 288.746094 180.019531 288.839844 180.113281 288.957031 180.113281 C 289.074219 180.113281 289.167969 180.019531 289.167969 179.902344 Z M 289.167969 179.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.75 176.207031 C 287.75 176.089844 287.65625 175.996094 287.539062 175.996094 C 287.421875 175.996094 287.328125 176.089844 287.328125 176.207031 C 287.328125 176.324219 287.421875 176.417969 287.539062 176.417969 C 287.65625 176.417969 287.75 176.324219 287.75 176.207031 Z M 287.75 176.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.796875 177.238281 C 285.796875 177.121094 285.703125 177.027344 285.585938 177.027344 C 285.46875 177.027344 285.375 177.121094 285.375 177.238281 C 285.375 177.355469 285.46875 177.449219 285.585938 177.449219 C 285.703125 177.449219 285.796875 177.355469 285.796875 177.238281 Z M 285.796875 177.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.308594 178.039062 C 283.308594 177.921875 283.214844 177.828125 283.097656 177.828125 C 282.980469 177.828125 282.886719 177.921875 282.886719 178.039062 C 282.886719 178.15625 282.980469 178.25 283.097656 178.25 C 283.214844 178.25 283.308594 178.15625 283.308594 178.039062 Z M 283.308594 178.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.007812 182.015625 C 288.007812 181.898438 287.914062 181.804688 287.796875 181.804688 C 287.679688 181.804688 287.585938 181.898438 287.585938 182.015625 C 287.585938 182.132812 287.679688 182.226562 287.796875 182.226562 C 287.914062 182.226562 288.007812 182.132812 288.007812 182.015625 Z M 288.007812 182.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.425781 183.351562 C 288.425781 183.234375 288.332031 183.140625 288.214844 183.140625 C 288.097656 183.140625 288.003906 183.234375 288.003906 183.351562 C 288.003906 183.46875 288.097656 183.5625 288.214844 183.5625 C 288.332031 183.5625 288.425781 183.46875 288.425781 183.351562 Z M 288.425781 183.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.546875 184.046875 C 292.546875 183.929688 292.453125 183.835938 292.335938 183.835938 C 292.21875 183.835938 292.125 183.929688 292.125 184.046875 C 292.125 184.164062 292.21875 184.257812 292.335938 184.257812 C 292.453125 184.257812 292.546875 184.164062 292.546875 184.046875 Z M 292.546875 184.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.679688 181.445312 C 292.679688 181.328125 292.585938 181.234375 292.46875 181.234375 C 292.351562 181.234375 292.257812 181.328125 292.257812 181.445312 C 292.257812 181.5625 292.351562 181.65625 292.46875 181.65625 C 292.585938 181.65625 292.679688 181.5625 292.679688 181.445312 Z M 292.679688 181.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.308594 179.324219 C 293.308594 179.207031 293.214844 179.113281 293.097656 179.113281 C 292.980469 179.113281 292.886719 179.207031 292.886719 179.324219 C 292.886719 179.441406 292.980469 179.535156 293.097656 179.535156 C 293.214844 179.535156 293.308594 179.441406 293.308594 179.324219 Z M 293.308594 179.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.300781 181.332031 C 292.300781 181.214844 292.207031 181.121094 292.089844 181.121094 C 291.972656 181.121094 291.878906 181.214844 291.878906 181.332031 C 291.878906 181.449219 291.972656 181.542969 292.089844 181.542969 C 292.207031 181.542969 292.300781 181.449219 292.300781 181.332031 Z M 292.300781 181.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.414062 179.777344 C 290.414062 179.660156 290.320312 179.566406 290.203125 179.566406 C 290.085938 179.566406 289.992188 179.660156 289.992188 179.777344 C 289.992188 179.894531 290.085938 179.988281 290.203125 179.988281 C 290.320312 179.988281 290.414062 179.894531 290.414062 179.777344 Z M 290.414062 179.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.488281 181.800781 C 287.488281 181.683594 287.394531 181.589844 287.277344 181.589844 C 287.160156 181.589844 287.066406 181.683594 287.066406 181.800781 C 287.066406 181.917969 287.160156 182.011719 287.277344 182.011719 C 287.394531 182.011719 287.488281 181.917969 287.488281 181.800781 Z M 287.488281 181.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.179688 181.402344 C 290.179688 181.285156 290.085938 181.191406 289.96875 181.191406 C 289.851562 181.191406 289.757812 181.285156 289.757812 181.402344 C 289.757812 181.519531 289.851562 181.613281 289.96875 181.613281 C 290.085938 181.613281 290.179688 181.519531 290.179688 181.402344 Z M 290.179688 181.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.191406 182.441406 C 290.191406 182.324219 290.097656 182.230469 289.980469 182.230469 C 289.863281 182.230469 289.769531 182.324219 289.769531 182.441406 C 289.769531 182.558594 289.863281 182.652344 289.980469 182.652344 C 290.097656 182.652344 290.191406 182.558594 290.191406 182.441406 Z M 290.191406 182.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.460938 184.054688 C 291.460938 183.9375 291.367188 183.84375 291.25 183.84375 C 291.132812 183.84375 291.039062 183.9375 291.039062 184.054688 C 291.039062 184.171875 291.132812 184.265625 291.25 184.265625 C 291.367188 184.265625 291.460938 184.171875 291.460938 184.054688 Z M 291.460938 184.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.558594 178.304688 C 291.558594 178.1875 291.464844 178.09375 291.347656 178.09375 C 291.230469 178.09375 291.136719 178.1875 291.136719 178.304688 C 291.136719 178.421875 291.230469 178.515625 291.347656 178.515625 C 291.464844 178.515625 291.558594 178.421875 291.558594 178.304688 Z M 291.558594 178.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 291.632812 182.28125 C 291.632812 182.164062 291.539062 182.070312 291.421875 182.070312 C 291.304688 182.070312 291.210938 182.164062 291.210938 182.28125 C 291.210938 182.398438 291.304688 182.492188 291.421875 182.492188 C 291.539062 182.492188 291.632812 182.398438 291.632812 182.28125 Z M 291.632812 182.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.316406 180.4375 C 290.316406 180.320312 290.222656 180.226562 290.105469 180.226562 C 289.988281 180.226562 289.894531 180.320312 289.894531 180.4375 C 289.894531 180.554688 289.988281 180.648438 290.105469 180.648438 C 290.222656 180.648438 290.316406 180.554688 290.316406 180.4375 Z M 290.316406 180.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.425781 181.558594 C 294.425781 181.441406 294.332031 181.347656 294.214844 181.347656 C 294.097656 181.347656 294.003906 181.441406 294.003906 181.558594 C 294.003906 181.675781 294.097656 181.769531 294.214844 181.769531 C 294.332031 181.769531 294.425781 181.675781 294.425781 181.558594 Z M 294.425781 181.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.84375 182.804688 C 293.84375 182.6875 293.75 182.59375 293.632812 182.59375 C 293.515625 182.59375 293.421875 182.6875 293.421875 182.804688 C 293.421875 182.921875 293.515625 183.015625 293.632812 183.015625 C 293.75 183.015625 293.84375 182.921875 293.84375 182.804688 Z M 293.84375 182.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.292969 186.015625 C 293.292969 185.898438 293.199219 185.804688 293.082031 185.804688 C 292.964844 185.804688 292.871094 185.898438 292.871094 186.015625 C 292.871094 186.132812 292.964844 186.226562 293.082031 186.226562 C 293.199219 186.226562 293.292969 186.132812 293.292969 186.015625 Z M 293.292969 186.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.027344 184.449219 C 288.027344 184.332031 287.933594 184.238281 287.816406 184.238281 C 287.699219 184.238281 287.605469 184.332031 287.605469 184.449219 C 287.605469 184.566406 287.699219 184.660156 287.816406 184.660156 C 287.933594 184.660156 288.027344 184.566406 288.027344 184.449219 Z M 288.027344 184.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.09375 183.71875 C 287.09375 183.601562 287 183.507812 286.882812 183.507812 C 286.765625 183.507812 286.671875 183.601562 286.671875 183.71875 C 286.671875 183.835938 286.765625 183.929688 286.882812 183.929688 C 287 183.929688 287.09375 183.835938 287.09375 183.71875 Z M 287.09375 183.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.6875 185.324219 C 285.6875 185.207031 285.59375 185.113281 285.476562 185.113281 C 285.359375 185.113281 285.265625 185.207031 285.265625 185.324219 C 285.265625 185.441406 285.359375 185.535156 285.476562 185.535156 C 285.59375 185.535156 285.6875 185.441406 285.6875 185.324219 Z M 285.6875 185.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.21875 189.515625 C 284.21875 189.398438 284.125 189.304688 284.007812 189.304688 C 283.890625 189.304688 283.796875 189.398438 283.796875 189.515625 C 283.796875 189.632812 283.890625 189.726562 284.007812 189.726562 C 284.125 189.726562 284.21875 189.632812 284.21875 189.515625 Z M 284.21875 189.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.945312 188.675781 C 283.945312 188.558594 283.851562 188.464844 283.734375 188.464844 C 283.617188 188.464844 283.523438 188.558594 283.523438 188.675781 C 283.523438 188.792969 283.617188 188.886719 283.734375 188.886719 C 283.851562 188.886719 283.945312 188.792969 283.945312 188.675781 Z M 283.945312 188.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.625 188.648438 C 282.625 188.53125 282.53125 188.4375 282.414062 188.4375 C 282.296875 188.4375 282.203125 188.53125 282.203125 188.648438 C 282.203125 188.765625 282.296875 188.859375 282.414062 188.859375 C 282.53125 188.859375 282.625 188.765625 282.625 188.648438 Z M 282.625 188.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.472656 189.3125 C 278.472656 189.195312 278.378906 189.101562 278.261719 189.101562 C 278.144531 189.101562 278.050781 189.195312 278.050781 189.3125 C 278.050781 189.429688 278.144531 189.523438 278.261719 189.523438 C 278.378906 189.523438 278.472656 189.429688 278.472656 189.3125 Z M 278.472656 189.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.953125 189.210938 C 279.953125 189.09375 279.859375 189 279.742188 189 C 279.625 189 279.53125 189.09375 279.53125 189.210938 C 279.53125 189.328125 279.625 189.421875 279.742188 189.421875 C 279.859375 189.421875 279.953125 189.328125 279.953125 189.210938 Z M 279.953125 189.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.996094 190.050781 C 281.996094 189.933594 281.902344 189.839844 281.785156 189.839844 C 281.667969 189.839844 281.574219 189.933594 281.574219 190.050781 C 281.574219 190.167969 281.667969 190.261719 281.785156 190.261719 C 281.902344 190.261719 281.996094 190.167969 281.996094 190.050781 Z M 281.996094 190.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.972656 187.847656 C 283.972656 187.730469 283.878906 187.636719 283.761719 187.636719 C 283.644531 187.636719 283.550781 187.730469 283.550781 187.847656 C 283.550781 187.964844 283.644531 188.058594 283.761719 188.058594 C 283.878906 188.058594 283.972656 187.964844 283.972656 187.847656 Z M 283.972656 187.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.066406 192.957031 C 284.066406 192.839844 283.972656 192.746094 283.855469 192.746094 C 283.738281 192.746094 283.644531 192.839844 283.644531 192.957031 C 283.644531 193.074219 283.738281 193.167969 283.855469 193.167969 C 283.972656 193.167969 284.066406 193.074219 284.066406 192.957031 Z M 284.066406 192.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.105469 189.097656 C 287.105469 188.980469 287.011719 188.886719 286.894531 188.886719 C 286.777344 188.886719 286.683594 188.980469 286.683594 189.097656 C 286.683594 189.214844 286.777344 189.308594 286.894531 189.308594 C 287.011719 189.308594 287.105469 189.214844 287.105469 189.097656 Z M 287.105469 189.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.765625 185.128906 C 286.765625 185.011719 286.671875 184.917969 286.554688 184.917969 C 286.4375 184.917969 286.34375 185.011719 286.34375 185.128906 C 286.34375 185.246094 286.4375 185.339844 286.554688 185.339844 C 286.671875 185.339844 286.765625 185.246094 286.765625 185.128906 Z M 286.765625 185.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.34375 182.441406 C 287.34375 182.324219 287.25 182.230469 287.132812 182.230469 C 287.015625 182.230469 286.921875 182.324219 286.921875 182.441406 C 286.921875 182.558594 287.015625 182.652344 287.132812 182.652344 C 287.25 182.652344 287.34375 182.558594 287.34375 182.441406 Z M 287.34375 182.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.003906 179.273438 C 289.003906 179.15625 288.910156 179.0625 288.792969 179.0625 C 288.675781 179.0625 288.582031 179.15625 288.582031 179.273438 C 288.582031 179.390625 288.675781 179.484375 288.792969 179.484375 C 288.910156 179.484375 289.003906 179.390625 289.003906 179.273438 Z M 289.003906 179.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.753906 181.839844 C 288.753906 181.722656 288.660156 181.628906 288.542969 181.628906 C 288.425781 181.628906 288.332031 181.722656 288.332031 181.839844 C 288.332031 181.957031 288.425781 182.050781 288.542969 182.050781 C 288.660156 182.050781 288.753906 181.957031 288.753906 181.839844 Z M 288.753906 181.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.074219 186.707031 C 287.074219 186.589844 286.980469 186.496094 286.863281 186.496094 C 286.746094 186.496094 286.652344 186.589844 286.652344 186.707031 C 286.652344 186.824219 286.746094 186.917969 286.863281 186.917969 C 286.980469 186.917969 287.074219 186.824219 287.074219 186.707031 Z M 287.074219 186.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.859375 182.472656 C 287.859375 182.355469 287.765625 182.261719 287.648438 182.261719 C 287.53125 182.261719 287.4375 182.355469 287.4375 182.472656 C 287.4375 182.589844 287.53125 182.683594 287.648438 182.683594 C 287.765625 182.683594 287.859375 182.589844 287.859375 182.472656 Z M 287.859375 182.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.992188 179.164062 C 285.992188 179.046875 285.898438 178.953125 285.78125 178.953125 C 285.664062 178.953125 285.570312 179.046875 285.570312 179.164062 C 285.570312 179.28125 285.664062 179.375 285.78125 179.375 C 285.898438 179.375 285.992188 179.28125 285.992188 179.164062 Z M 285.992188 179.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.09375 177.636719 C 283.09375 177.519531 283 177.425781 282.882812 177.425781 C 282.765625 177.425781 282.671875 177.519531 282.671875 177.636719 C 282.671875 177.753906 282.765625 177.847656 282.882812 177.847656 C 283 177.847656 283.09375 177.753906 283.09375 177.636719 Z M 283.09375 177.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.117188 175.402344 C 283.117188 175.285156 283.023438 175.191406 282.90625 175.191406 C 282.789062 175.191406 282.695312 175.285156 282.695312 175.402344 C 282.695312 175.519531 282.789062 175.613281 282.90625 175.613281 C 283.023438 175.613281 283.117188 175.519531 283.117188 175.402344 Z M 283.117188 175.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.535156 176.847656 C 283.535156 176.730469 283.441406 176.636719 283.324219 176.636719 C 283.207031 176.636719 283.113281 176.730469 283.113281 176.847656 C 283.113281 176.964844 283.207031 177.058594 283.324219 177.058594 C 283.441406 177.058594 283.535156 176.964844 283.535156 176.847656 Z M 283.535156 176.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.953125 179.722656 C 284.953125 179.605469 284.859375 179.511719 284.742188 179.511719 C 284.625 179.511719 284.53125 179.605469 284.53125 179.722656 C 284.53125 179.839844 284.625 179.933594 284.742188 179.933594 C 284.859375 179.933594 284.953125 179.839844 284.953125 179.722656 Z M 284.953125 179.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.992188 180.910156 C 284.992188 180.792969 284.898438 180.699219 284.78125 180.699219 C 284.664062 180.699219 284.570312 180.792969 284.570312 180.910156 C 284.570312 181.027344 284.664062 181.121094 284.78125 181.121094 C 284.898438 181.121094 284.992188 181.027344 284.992188 180.910156 Z M 284.992188 180.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.453125 184.960938 C 287.453125 184.84375 287.359375 184.75 287.242188 184.75 C 287.125 184.75 287.03125 184.84375 287.03125 184.960938 C 287.03125 185.078125 287.125 185.171875 287.242188 185.171875 C 287.359375 185.171875 287.453125 185.078125 287.453125 184.960938 Z M 287.453125 184.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.609375 187.898438 C 287.609375 187.78125 287.515625 187.6875 287.398438 187.6875 C 287.28125 187.6875 287.1875 187.78125 287.1875 187.898438 C 287.1875 188.015625 287.28125 188.109375 287.398438 188.109375 C 287.515625 188.109375 287.609375 188.015625 287.609375 187.898438 Z M 287.609375 187.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.308594 189.332031 C 288.308594 189.214844 288.214844 189.121094 288.097656 189.121094 C 287.980469 189.121094 287.886719 189.214844 287.886719 189.332031 C 287.886719 189.449219 287.980469 189.542969 288.097656 189.542969 C 288.214844 189.542969 288.308594 189.449219 288.308594 189.332031 Z M 288.308594 189.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.460938 189.617188 C 289.460938 189.5 289.367188 189.40625 289.25 189.40625 C 289.132812 189.40625 289.039062 189.5 289.039062 189.617188 C 289.039062 189.734375 289.132812 189.828125 289.25 189.828125 C 289.367188 189.828125 289.460938 189.734375 289.460938 189.617188 Z M 289.460938 189.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.328125 191.523438 C 290.328125 191.40625 290.234375 191.3125 290.117188 191.3125 C 290 191.3125 289.90625 191.40625 289.90625 191.523438 C 289.90625 191.640625 290 191.734375 290.117188 191.734375 C 290.234375 191.734375 290.328125 191.640625 290.328125 191.523438 Z M 290.328125 191.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.253906 191.550781 C 286.253906 191.433594 286.160156 191.339844 286.042969 191.339844 C 285.925781 191.339844 285.832031 191.433594 285.832031 191.550781 C 285.832031 191.667969 285.925781 191.761719 286.042969 191.761719 C 286.160156 191.761719 286.253906 191.667969 286.253906 191.550781 Z M 286.253906 191.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.292969 191.734375 C 285.292969 191.617188 285.199219 191.523438 285.082031 191.523438 C 284.964844 191.523438 284.871094 191.617188 284.871094 191.734375 C 284.871094 191.851562 284.964844 191.945312 285.082031 191.945312 C 285.199219 191.945312 285.292969 191.851562 285.292969 191.734375 Z M 285.292969 191.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.691406 188.828125 C 288.691406 188.710938 288.597656 188.617188 288.480469 188.617188 C 288.363281 188.617188 288.269531 188.710938 288.269531 188.828125 C 288.269531 188.945312 288.363281 189.039062 288.480469 189.039062 C 288.597656 189.039062 288.691406 188.945312 288.691406 188.828125 Z M 288.691406 188.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.726562 189.820312 C 290.726562 189.703125 290.632812 189.609375 290.515625 189.609375 C 290.398438 189.609375 290.304688 189.703125 290.304688 189.820312 C 290.304688 189.9375 290.398438 190.03125 290.515625 190.03125 C 290.632812 190.03125 290.726562 189.9375 290.726562 189.820312 Z M 290.726562 189.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.71875 188.546875 C 286.71875 188.429688 286.625 188.335938 286.507812 188.335938 C 286.390625 188.335938 286.296875 188.429688 286.296875 188.546875 C 286.296875 188.664062 286.390625 188.757812 286.507812 188.757812 C 286.625 188.757812 286.71875 188.664062 286.71875 188.546875 Z M 286.71875 188.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.023438 186.589844 C 287.023438 186.472656 286.929688 186.378906 286.8125 186.378906 C 286.695312 186.378906 286.601562 186.472656 286.601562 186.589844 C 286.601562 186.707031 286.695312 186.800781 286.8125 186.800781 C 286.929688 186.800781 287.023438 186.707031 287.023438 186.589844 Z M 287.023438 186.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.960938 193.511719 C 287.960938 193.394531 287.867188 193.300781 287.75 193.300781 C 287.632812 193.300781 287.539062 193.394531 287.539062 193.511719 C 287.539062 193.628906 287.632812 193.722656 287.75 193.722656 C 287.867188 193.722656 287.960938 193.628906 287.960938 193.511719 Z M 287.960938 193.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.878906 194.230469 C 289.878906 194.113281 289.785156 194.019531 289.667969 194.019531 C 289.550781 194.019531 289.457031 194.113281 289.457031 194.230469 C 289.457031 194.347656 289.550781 194.441406 289.667969 194.441406 C 289.785156 194.441406 289.878906 194.347656 289.878906 194.230469 Z M 289.878906 194.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.226562 194.132812 C 286.226562 194.015625 286.132812 193.921875 286.015625 193.921875 C 285.898438 193.921875 285.804688 194.015625 285.804688 194.132812 C 285.804688 194.25 285.898438 194.34375 286.015625 194.34375 C 286.132812 194.34375 286.226562 194.25 286.226562 194.132812 Z M 286.226562 194.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.257812 190.234375 C 288.257812 190.117188 288.164062 190.023438 288.046875 190.023438 C 287.929688 190.023438 287.835938 190.117188 287.835938 190.234375 C 287.835938 190.351562 287.929688 190.445312 288.046875 190.445312 C 288.164062 190.445312 288.257812 190.351562 288.257812 190.234375 Z M 288.257812 190.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.117188 189.15625 C 286.117188 189.039062 286.023438 188.945312 285.90625 188.945312 C 285.789062 188.945312 285.695312 189.039062 285.695312 189.15625 C 285.695312 189.273438 285.789062 189.367188 285.90625 189.367188 C 286.023438 189.367188 286.117188 189.273438 286.117188 189.15625 Z M 286.117188 189.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.011719 189.691406 C 288.011719 189.574219 287.917969 189.480469 287.800781 189.480469 C 287.683594 189.480469 287.589844 189.574219 287.589844 189.691406 C 287.589844 189.808594 287.683594 189.902344 287.800781 189.902344 C 287.917969 189.902344 288.011719 189.808594 288.011719 189.691406 Z M 288.011719 189.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.96875 189.988281 C 286.96875 189.871094 286.875 189.777344 286.757812 189.777344 C 286.640625 189.777344 286.546875 189.871094 286.546875 189.988281 C 286.546875 190.105469 286.640625 190.199219 286.757812 190.199219 C 286.875 190.199219 286.96875 190.105469 286.96875 189.988281 Z M 286.96875 189.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.070312 194.742188 C 289.070312 194.625 288.976562 194.53125 288.859375 194.53125 C 288.742188 194.53125 288.648438 194.625 288.648438 194.742188 C 288.648438 194.859375 288.742188 194.953125 288.859375 194.953125 C 288.976562 194.953125 289.070312 194.859375 289.070312 194.742188 Z M 289.070312 194.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.265625 195.992188 C 292.265625 195.875 292.171875 195.78125 292.054688 195.78125 C 291.9375 195.78125 291.84375 195.875 291.84375 195.992188 C 291.84375 196.109375 291.9375 196.203125 292.054688 196.203125 C 292.171875 196.203125 292.265625 196.109375 292.265625 195.992188 Z M 292.265625 195.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.972656 192.867188 C 293.972656 192.75 293.878906 192.65625 293.761719 192.65625 C 293.644531 192.65625 293.550781 192.75 293.550781 192.867188 C 293.550781 192.984375 293.644531 193.078125 293.761719 193.078125 C 293.878906 193.078125 293.972656 192.984375 293.972656 192.867188 Z M 293.972656 192.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.148438 193.285156 C 296.148438 193.167969 296.054688 193.074219 295.9375 193.074219 C 295.820312 193.074219 295.726562 193.167969 295.726562 193.285156 C 295.726562 193.402344 295.820312 193.496094 295.9375 193.496094 C 296.054688 193.496094 296.148438 193.402344 296.148438 193.285156 Z M 296.148438 193.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.765625 193.347656 C 294.765625 193.230469 294.671875 193.136719 294.554688 193.136719 C 294.4375 193.136719 294.34375 193.230469 294.34375 193.347656 C 294.34375 193.464844 294.4375 193.558594 294.554688 193.558594 C 294.671875 193.558594 294.765625 193.464844 294.765625 193.347656 Z M 294.765625 193.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.582031 197.246094 C 294.582031 197.128906 294.488281 197.035156 294.371094 197.035156 C 294.253906 197.035156 294.160156 197.128906 294.160156 197.246094 C 294.160156 197.363281 294.253906 197.457031 294.371094 197.457031 C 294.488281 197.457031 294.582031 197.363281 294.582031 197.246094 Z M 294.582031 197.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.410156 196.308594 C 295.410156 196.191406 295.316406 196.097656 295.199219 196.097656 C 295.082031 196.097656 294.988281 196.191406 294.988281 196.308594 C 294.988281 196.425781 295.082031 196.519531 295.199219 196.519531 C 295.316406 196.519531 295.410156 196.425781 295.410156 196.308594 Z M 295.410156 196.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.914062 196.902344 C 295.914062 196.785156 295.820312 196.691406 295.703125 196.691406 C 295.585938 196.691406 295.492188 196.785156 295.492188 196.902344 C 295.492188 197.019531 295.585938 197.113281 295.703125 197.113281 C 295.820312 197.113281 295.914062 197.019531 295.914062 196.902344 Z M 295.914062 196.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.648438 196.539062 C 294.648438 196.421875 294.554688 196.328125 294.4375 196.328125 C 294.320312 196.328125 294.226562 196.421875 294.226562 196.539062 C 294.226562 196.65625 294.320312 196.75 294.4375 196.75 C 294.554688 196.75 294.648438 196.65625 294.648438 196.539062 Z M 294.648438 196.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 295.261719 195.339844 C 295.261719 195.222656 295.167969 195.128906 295.050781 195.128906 C 294.933594 195.128906 294.839844 195.222656 294.839844 195.339844 C 294.839844 195.457031 294.933594 195.550781 295.050781 195.550781 C 295.167969 195.550781 295.261719 195.457031 295.261719 195.339844 Z M 295.261719 195.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.214844 192.515625 C 296.214844 192.398438 296.121094 192.304688 296.003906 192.304688 C 295.886719 192.304688 295.792969 192.398438 295.792969 192.515625 C 295.792969 192.632812 295.886719 192.726562 296.003906 192.726562 C 296.121094 192.726562 296.214844 192.632812 296.214844 192.515625 Z M 296.214844 192.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.824219 193.597656 C 299.824219 193.480469 299.730469 193.386719 299.613281 193.386719 C 299.496094 193.386719 299.402344 193.480469 299.402344 193.597656 C 299.402344 193.714844 299.496094 193.808594 299.613281 193.808594 C 299.730469 193.808594 299.824219 193.714844 299.824219 193.597656 Z M 299.824219 193.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.839844 190.636719 C 299.839844 190.519531 299.746094 190.425781 299.628906 190.425781 C 299.511719 190.425781 299.417969 190.519531 299.417969 190.636719 C 299.417969 190.753906 299.511719 190.847656 299.628906 190.847656 C 299.746094 190.847656 299.839844 190.753906 299.839844 190.636719 Z M 299.839844 190.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.535156 194.324219 C 301.535156 194.207031 301.441406 194.113281 301.324219 194.113281 C 301.207031 194.113281 301.113281 194.207031 301.113281 194.324219 C 301.113281 194.441406 301.207031 194.535156 301.324219 194.535156 C 301.441406 194.535156 301.535156 194.441406 301.535156 194.324219 Z M 301.535156 194.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.285156 197.476562 C 301.285156 197.359375 301.191406 197.265625 301.074219 197.265625 C 300.957031 197.265625 300.863281 197.359375 300.863281 197.476562 C 300.863281 197.59375 300.957031 197.6875 301.074219 197.6875 C 301.191406 197.6875 301.285156 197.59375 301.285156 197.476562 Z M 301.285156 197.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 298.910156 197.839844 C 298.910156 197.722656 298.816406 197.628906 298.699219 197.628906 C 298.582031 197.628906 298.488281 197.722656 298.488281 197.839844 C 298.488281 197.957031 298.582031 198.050781 298.699219 198.050781 C 298.816406 198.050781 298.910156 197.957031 298.910156 197.839844 Z M 298.910156 197.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 300.65625 196.867188 C 300.65625 196.75 300.5625 196.65625 300.445312 196.65625 C 300.328125 196.65625 300.234375 196.75 300.234375 196.867188 C 300.234375 196.984375 300.328125 197.078125 300.445312 197.078125 C 300.5625 197.078125 300.65625 196.984375 300.65625 196.867188 Z M 300.65625 196.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 301.597656 198.199219 C 301.597656 198.082031 301.503906 197.988281 301.386719 197.988281 C 301.269531 197.988281 301.175781 198.082031 301.175781 198.199219 C 301.175781 198.316406 301.269531 198.410156 301.386719 198.410156 C 301.503906 198.410156 301.597656 198.316406 301.597656 198.199219 Z M 301.597656 198.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.960938 199.148438 C 303.960938 199.03125 303.867188 198.9375 303.75 198.9375 C 303.632812 198.9375 303.539062 199.03125 303.539062 199.148438 C 303.539062 199.265625 303.632812 199.359375 303.75 199.359375 C 303.867188 199.359375 303.960938 199.265625 303.960938 199.148438 Z M 303.960938 199.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.726562 198.75 C 303.726562 198.632812 303.632812 198.539062 303.515625 198.539062 C 303.398438 198.539062 303.304688 198.632812 303.304688 198.75 C 303.304688 198.867188 303.398438 198.960938 303.515625 198.960938 C 303.632812 198.960938 303.726562 198.867188 303.726562 198.75 Z M 303.726562 198.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 302.976562 197.273438 C 302.976562 197.15625 302.882812 197.0625 302.765625 197.0625 C 302.648438 197.0625 302.554688 197.15625 302.554688 197.273438 C 302.554688 197.390625 302.648438 197.484375 302.765625 197.484375 C 302.882812 197.484375 302.976562 197.390625 302.976562 197.273438 Z M 302.976562 197.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 304.132812 199.148438 C 304.132812 199.03125 304.039062 198.9375 303.921875 198.9375 C 303.804688 198.9375 303.710938 199.03125 303.710938 199.148438 C 303.710938 199.265625 303.804688 199.359375 303.921875 199.359375 C 304.039062 199.359375 304.132812 199.265625 304.132812 199.148438 Z M 304.132812 199.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.125 198.09375 C 308.125 197.976562 308.03125 197.882812 307.914062 197.882812 C 307.796875 197.882812 307.703125 197.976562 307.703125 198.09375 C 307.703125 198.210938 307.796875 198.304688 307.914062 198.304688 C 308.03125 198.304688 308.125 198.210938 308.125 198.09375 Z M 308.125 198.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 309.070312 199.742188 C 309.070312 199.625 308.976562 199.53125 308.859375 199.53125 C 308.742188 199.53125 308.648438 199.625 308.648438 199.742188 C 308.648438 199.859375 308.742188 199.953125 308.859375 199.953125 C 308.976562 199.953125 309.070312 199.859375 309.070312 199.742188 Z M 309.070312 199.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 308.644531 199.183594 C 308.644531 199.066406 308.550781 198.972656 308.433594 198.972656 C 308.316406 198.972656 308.222656 199.066406 308.222656 199.183594 C 308.222656 199.300781 308.316406 199.394531 308.433594 199.394531 C 308.550781 199.394531 308.644531 199.300781 308.644531 199.183594 Z M 308.644531 199.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 303.171875 196.398438 C 303.171875 196.28125 303.078125 196.1875 302.960938 196.1875 C 302.84375 196.1875 302.75 196.28125 302.75 196.398438 C 302.75 196.515625 302.84375 196.609375 302.960938 196.609375 C 303.078125 196.609375 303.171875 196.515625 303.171875 196.398438 Z M 303.171875 196.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.957031 197.304688 C 299.957031 197.1875 299.863281 197.09375 299.746094 197.09375 C 299.628906 197.09375 299.535156 197.1875 299.535156 197.304688 C 299.535156 197.421875 299.628906 197.515625 299.746094 197.515625 C 299.863281 197.515625 299.957031 197.421875 299.957031 197.304688 Z M 299.957031 197.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 299.402344 198.65625 C 299.402344 198.539062 299.308594 198.445312 299.191406 198.445312 C 299.074219 198.445312 298.980469 198.539062 298.980469 198.65625 C 298.980469 198.773438 299.074219 198.867188 299.191406 198.867188 C 299.308594 198.867188 299.402344 198.773438 299.402344 198.65625 Z M 299.402344 198.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 297.902344 204.605469 C 297.902344 204.488281 297.808594 204.394531 297.691406 204.394531 C 297.574219 204.394531 297.480469 204.488281 297.480469 204.605469 C 297.480469 204.722656 297.574219 204.816406 297.691406 204.816406 C 297.808594 204.816406 297.902344 204.722656 297.902344 204.605469 Z M 297.902344 204.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.300781 201.914062 C 292.300781 201.796875 292.207031 201.703125 292.089844 201.703125 C 291.972656 201.703125 291.878906 201.796875 291.878906 201.914062 C 291.878906 202.03125 291.972656 202.125 292.089844 202.125 C 292.207031 202.125 292.300781 202.03125 292.300781 201.914062 Z M 292.300781 201.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.378906 200.132812 C 293.378906 200.015625 293.285156 199.921875 293.167969 199.921875 C 293.050781 199.921875 292.957031 200.015625 292.957031 200.132812 C 292.957031 200.25 293.050781 200.34375 293.167969 200.34375 C 293.285156 200.34375 293.378906 200.25 293.378906 200.132812 Z M 293.378906 200.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.792969 201.910156 C 293.792969 201.792969 293.699219 201.699219 293.582031 201.699219 C 293.464844 201.699219 293.371094 201.792969 293.371094 201.910156 C 293.371094 202.027344 293.464844 202.121094 293.582031 202.121094 C 293.699219 202.121094 293.792969 202.027344 293.792969 201.910156 Z M 293.792969 201.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.703125 201.378906 C 292.703125 201.261719 292.609375 201.167969 292.492188 201.167969 C 292.375 201.167969 292.28125 201.261719 292.28125 201.378906 C 292.28125 201.496094 292.375 201.589844 292.492188 201.589844 C 292.609375 201.589844 292.703125 201.496094 292.703125 201.378906 Z M 292.703125 201.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 293.851562 199.347656 C 293.851562 199.230469 293.757812 199.136719 293.640625 199.136719 C 293.523438 199.136719 293.429688 199.230469 293.429688 199.347656 C 293.429688 199.464844 293.523438 199.558594 293.640625 199.558594 C 293.757812 199.558594 293.851562 199.464844 293.851562 199.347656 Z M 293.851562 199.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 296.367188 203.132812 C 296.367188 203.015625 296.273438 202.921875 296.15625 202.921875 C 296.039062 202.921875 295.945312 203.015625 295.945312 203.132812 C 295.945312 203.25 296.039062 203.34375 296.15625 203.34375 C 296.273438 203.34375 296.367188 203.25 296.367188 203.132812 Z M 296.367188 203.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 294.453125 202.390625 C 294.453125 202.273438 294.359375 202.179688 294.242188 202.179688 C 294.125 202.179688 294.03125 202.273438 294.03125 202.390625 C 294.03125 202.507812 294.125 202.601562 294.242188 202.601562 C 294.359375 202.601562 294.453125 202.507812 294.453125 202.390625 Z M 294.453125 202.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.519531 202.921875 C 290.519531 202.804688 290.425781 202.710938 290.308594 202.710938 C 290.191406 202.710938 290.097656 202.804688 290.097656 202.921875 C 290.097656 203.039062 290.191406 203.132812 290.308594 203.132812 C 290.425781 203.132812 290.519531 203.039062 290.519531 202.921875 Z M 290.519531 202.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.566406 197.230469 C 290.566406 197.113281 290.472656 197.019531 290.355469 197.019531 C 290.238281 197.019531 290.144531 197.113281 290.144531 197.230469 C 290.144531 197.347656 290.238281 197.441406 290.355469 197.441406 C 290.472656 197.441406 290.566406 197.347656 290.566406 197.230469 Z M 290.566406 197.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.472656 195.503906 C 288.472656 195.386719 288.378906 195.292969 288.261719 195.292969 C 288.144531 195.292969 288.050781 195.386719 288.050781 195.503906 C 288.050781 195.621094 288.144531 195.714844 288.261719 195.714844 C 288.378906 195.714844 288.472656 195.621094 288.472656 195.503906 Z M 288.472656 195.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.808594 195.082031 C 290.808594 194.964844 290.714844 194.871094 290.597656 194.871094 C 290.480469 194.871094 290.386719 194.964844 290.386719 195.082031 C 290.386719 195.199219 290.480469 195.292969 290.597656 195.292969 C 290.714844 195.292969 290.808594 195.199219 290.808594 195.082031 Z M 290.808594 195.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.117188 196.0625 C 289.117188 195.945312 289.023438 195.851562 288.90625 195.851562 C 288.789062 195.851562 288.695312 195.945312 288.695312 196.0625 C 288.695312 196.179688 288.789062 196.273438 288.90625 196.273438 C 289.023438 196.273438 289.117188 196.179688 289.117188 196.0625 Z M 289.117188 196.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.441406 197.808594 C 289.441406 197.691406 289.347656 197.597656 289.230469 197.597656 C 289.113281 197.597656 289.019531 197.691406 289.019531 197.808594 C 289.019531 197.925781 289.113281 198.019531 289.230469 198.019531 C 289.347656 198.019531 289.441406 197.925781 289.441406 197.808594 Z M 289.441406 197.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.953125 194.058594 C 290.953125 193.941406 290.859375 193.847656 290.742188 193.847656 C 290.625 193.847656 290.53125 193.941406 290.53125 194.058594 C 290.53125 194.175781 290.625 194.269531 290.742188 194.269531 C 290.859375 194.269531 290.953125 194.175781 290.953125 194.058594 Z M 290.953125 194.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.410156 191.101562 C 290.410156 190.984375 290.316406 190.890625 290.199219 190.890625 C 290.082031 190.890625 289.988281 190.984375 289.988281 191.101562 C 289.988281 191.21875 290.082031 191.3125 290.199219 191.3125 C 290.316406 191.3125 290.410156 191.21875 290.410156 191.101562 Z M 290.410156 191.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.5 194.332031 C 292.5 194.214844 292.40625 194.121094 292.289062 194.121094 C 292.171875 194.121094 292.078125 194.214844 292.078125 194.332031 C 292.078125 194.449219 292.171875 194.542969 292.289062 194.542969 C 292.40625 194.542969 292.5 194.449219 292.5 194.332031 Z M 292.5 194.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.585938 195.804688 C 290.585938 195.6875 290.492188 195.59375 290.375 195.59375 C 290.257812 195.59375 290.164062 195.6875 290.164062 195.804688 C 290.164062 195.921875 290.257812 196.015625 290.375 196.015625 C 290.492188 196.015625 290.585938 195.921875 290.585938 195.804688 Z M 290.585938 195.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.910156 195.097656 C 285.910156 194.980469 285.816406 194.886719 285.699219 194.886719 C 285.582031 194.886719 285.488281 194.980469 285.488281 195.097656 C 285.488281 195.214844 285.582031 195.308594 285.699219 195.308594 C 285.816406 195.308594 285.910156 195.214844 285.910156 195.097656 Z M 285.910156 195.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.117188 192.734375 C 286.117188 192.617188 286.023438 192.523438 285.90625 192.523438 C 285.789062 192.523438 285.695312 192.617188 285.695312 192.734375 C 285.695312 192.851562 285.789062 192.945312 285.90625 192.945312 C 286.023438 192.945312 286.117188 192.851562 286.117188 192.734375 Z M 286.117188 192.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.335938 192.746094 C 285.335938 192.628906 285.242188 192.535156 285.125 192.535156 C 285.007812 192.535156 284.914062 192.628906 284.914062 192.746094 C 284.914062 192.863281 285.007812 192.957031 285.125 192.957031 C 285.242188 192.957031 285.335938 192.863281 285.335938 192.746094 Z M 285.335938 192.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.21875 190.882812 C 284.21875 190.765625 284.125 190.671875 284.007812 190.671875 C 283.890625 190.671875 283.796875 190.765625 283.796875 190.882812 C 283.796875 191 283.890625 191.09375 284.007812 191.09375 C 284.125 191.09375 284.21875 191 284.21875 190.882812 Z M 284.21875 190.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.53125 191.082031 C 285.53125 190.964844 285.4375 190.871094 285.320312 190.871094 C 285.203125 190.871094 285.109375 190.964844 285.109375 191.082031 C 285.109375 191.199219 285.203125 191.292969 285.320312 191.292969 C 285.4375 191.292969 285.53125 191.199219 285.53125 191.082031 Z M 285.53125 191.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.019531 188.863281 C 284.019531 188.746094 283.925781 188.652344 283.808594 188.652344 C 283.691406 188.652344 283.597656 188.746094 283.597656 188.863281 C 283.597656 188.980469 283.691406 189.074219 283.808594 189.074219 C 283.925781 189.074219 284.019531 188.980469 284.019531 188.863281 Z M 284.019531 188.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.925781 190.636719 C 280.925781 190.519531 280.832031 190.425781 280.714844 190.425781 C 280.597656 190.425781 280.503906 190.519531 280.503906 190.636719 C 280.503906 190.753906 280.597656 190.847656 280.714844 190.847656 C 280.832031 190.847656 280.925781 190.753906 280.925781 190.636719 Z M 280.925781 190.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.125 187.679688 C 281.125 187.5625 281.03125 187.46875 280.914062 187.46875 C 280.796875 187.46875 280.703125 187.5625 280.703125 187.679688 C 280.703125 187.796875 280.796875 187.890625 280.914062 187.890625 C 281.03125 187.890625 281.125 187.796875 281.125 187.679688 Z M 281.125 187.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.117188 190.949219 C 284.117188 190.832031 284.023438 190.738281 283.90625 190.738281 C 283.789062 190.738281 283.695312 190.832031 283.695312 190.949219 C 283.695312 191.066406 283.789062 191.160156 283.90625 191.160156 C 284.023438 191.160156 284.117188 191.066406 284.117188 190.949219 Z M 284.117188 190.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.601562 192.132812 C 284.601562 192.015625 284.507812 191.921875 284.390625 191.921875 C 284.273438 191.921875 284.179688 192.015625 284.179688 192.132812 C 284.179688 192.25 284.273438 192.34375 284.390625 192.34375 C 284.507812 192.34375 284.601562 192.25 284.601562 192.132812 Z M 284.601562 192.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.957031 195.050781 C 282.957031 194.933594 282.863281 194.839844 282.746094 194.839844 C 282.628906 194.839844 282.535156 194.933594 282.535156 195.050781 C 282.535156 195.167969 282.628906 195.261719 282.746094 195.261719 C 282.863281 195.261719 282.957031 195.167969 282.957031 195.050781 Z M 282.957031 195.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.414062 191.84375 C 279.414062 191.726562 279.320312 191.632812 279.203125 191.632812 C 279.085938 191.632812 278.992188 191.726562 278.992188 191.84375 C 278.992188 191.960938 279.085938 192.054688 279.203125 192.054688 C 279.320312 192.054688 279.414062 191.960938 279.414062 191.84375 Z M 279.414062 191.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.925781 191.847656 C 278.925781 191.730469 278.832031 191.636719 278.714844 191.636719 C 278.597656 191.636719 278.503906 191.730469 278.503906 191.847656 C 278.503906 191.964844 278.597656 192.058594 278.714844 192.058594 C 278.832031 192.058594 278.925781 191.964844 278.925781 191.847656 Z M 278.925781 191.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.128906 191.761719 C 278.128906 191.644531 278.035156 191.550781 277.917969 191.550781 C 277.800781 191.550781 277.707031 191.644531 277.707031 191.761719 C 277.707031 191.878906 277.800781 191.972656 277.917969 191.972656 C 278.035156 191.972656 278.128906 191.878906 278.128906 191.761719 Z M 278.128906 191.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.886719 190.1875 C 278.886719 190.070312 278.792969 189.976562 278.675781 189.976562 C 278.558594 189.976562 278.464844 190.070312 278.464844 190.1875 C 278.464844 190.304688 278.558594 190.398438 278.675781 190.398438 C 278.792969 190.398438 278.886719 190.304688 278.886719 190.1875 Z M 278.886719 190.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.054688 188.5 C 278.054688 188.382812 277.960938 188.289062 277.84375 188.289062 C 277.726562 188.289062 277.632812 188.382812 277.632812 188.5 C 277.632812 188.617188 277.726562 188.710938 277.84375 188.710938 C 277.960938 188.710938 278.054688 188.617188 278.054688 188.5 Z M 278.054688 188.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.898438 193.90625 C 278.898438 193.789062 278.804688 193.695312 278.6875 193.695312 C 278.570312 193.695312 278.476562 193.789062 278.476562 193.90625 C 278.476562 194.023438 278.570312 194.117188 278.6875 194.117188 C 278.804688 194.117188 278.898438 194.023438 278.898438 193.90625 Z M 278.898438 193.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.714844 193.960938 C 281.714844 193.84375 281.621094 193.75 281.503906 193.75 C 281.386719 193.75 281.292969 193.84375 281.292969 193.960938 C 281.292969 194.078125 281.386719 194.171875 281.503906 194.171875 C 281.621094 194.171875 281.714844 194.078125 281.714844 193.960938 Z M 281.714844 193.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.75 197.175781 C 283.75 197.058594 283.65625 196.964844 283.539062 196.964844 C 283.421875 196.964844 283.328125 197.058594 283.328125 197.175781 C 283.328125 197.292969 283.421875 197.386719 283.539062 197.386719 C 283.65625 197.386719 283.75 197.292969 283.75 197.175781 Z M 283.75 197.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.882812 199.890625 C 283.882812 199.773438 283.789062 199.679688 283.671875 199.679688 C 283.554688 199.679688 283.460938 199.773438 283.460938 199.890625 C 283.460938 200.007812 283.554688 200.101562 283.671875 200.101562 C 283.789062 200.101562 283.882812 200.007812 283.882812 199.890625 Z M 283.882812 199.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.035156 200.933594 C 281.035156 200.816406 280.941406 200.722656 280.824219 200.722656 C 280.707031 200.722656 280.613281 200.816406 280.613281 200.933594 C 280.613281 201.050781 280.707031 201.144531 280.824219 201.144531 C 280.941406 201.144531 281.035156 201.050781 281.035156 200.933594 Z M 281.035156 200.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.003906 202.417969 C 285.003906 202.300781 284.910156 202.207031 284.792969 202.207031 C 284.675781 202.207031 284.582031 202.300781 284.582031 202.417969 C 284.582031 202.535156 284.675781 202.628906 284.792969 202.628906 C 284.910156 202.628906 285.003906 202.535156 285.003906 202.417969 Z M 285.003906 202.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.496094 202.21875 C 285.496094 202.101562 285.402344 202.007812 285.285156 202.007812 C 285.167969 202.007812 285.074219 202.101562 285.074219 202.21875 C 285.074219 202.335938 285.167969 202.429688 285.285156 202.429688 C 285.402344 202.429688 285.496094 202.335938 285.496094 202.21875 Z M 285.496094 202.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.433594 198.789062 C 283.433594 198.671875 283.339844 198.578125 283.222656 198.578125 C 283.105469 198.578125 283.011719 198.671875 283.011719 198.789062 C 283.011719 198.90625 283.105469 199 283.222656 199 C 283.339844 199 283.433594 198.90625 283.433594 198.789062 Z M 283.433594 198.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.589844 196.417969 C 283.589844 196.300781 283.496094 196.207031 283.378906 196.207031 C 283.261719 196.207031 283.167969 196.300781 283.167969 196.417969 C 283.167969 196.535156 283.261719 196.628906 283.378906 196.628906 C 283.496094 196.628906 283.589844 196.535156 283.589844 196.417969 Z M 283.589844 196.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.820312 194.3125 C 280.820312 194.195312 280.726562 194.101562 280.609375 194.101562 C 280.492188 194.101562 280.398438 194.195312 280.398438 194.3125 C 280.398438 194.429688 280.492188 194.523438 280.609375 194.523438 C 280.726562 194.523438 280.820312 194.429688 280.820312 194.3125 Z M 280.820312 194.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.605469 192.546875 C 281.605469 192.429688 281.511719 192.335938 281.394531 192.335938 C 281.277344 192.335938 281.183594 192.429688 281.183594 192.546875 C 281.183594 192.664062 281.277344 192.757812 281.394531 192.757812 C 281.511719 192.757812 281.605469 192.664062 281.605469 192.546875 Z M 281.605469 192.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.210938 191.957031 C 281.210938 191.839844 281.117188 191.746094 281 191.746094 C 280.882812 191.746094 280.789062 191.839844 280.789062 191.957031 C 280.789062 192.074219 280.882812 192.167969 281 192.167969 C 281.117188 192.167969 281.210938 192.074219 281.210938 191.957031 Z M 281.210938 191.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.609375 191.441406 C 280.609375 191.324219 280.515625 191.230469 280.398438 191.230469 C 280.28125 191.230469 280.1875 191.324219 280.1875 191.441406 C 280.1875 191.558594 280.28125 191.652344 280.398438 191.652344 C 280.515625 191.652344 280.609375 191.558594 280.609375 191.441406 Z M 280.609375 191.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.335938 188.625 C 279.335938 188.507812 279.242188 188.414062 279.125 188.414062 C 279.007812 188.414062 278.914062 188.507812 278.914062 188.625 C 278.914062 188.742188 279.007812 188.835938 279.125 188.835938 C 279.242188 188.835938 279.335938 188.742188 279.335938 188.625 Z M 279.335938 188.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.1875 187.144531 C 279.1875 187.027344 279.09375 186.933594 278.976562 186.933594 C 278.859375 186.933594 278.765625 187.027344 278.765625 187.144531 C 278.765625 187.261719 278.859375 187.355469 278.976562 187.355469 C 279.09375 187.355469 279.1875 187.261719 279.1875 187.144531 Z M 279.1875 187.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.699219 187.265625 C 278.699219 187.148438 278.605469 187.054688 278.488281 187.054688 C 278.371094 187.054688 278.277344 187.148438 278.277344 187.265625 C 278.277344 187.382812 278.371094 187.476562 278.488281 187.476562 C 278.605469 187.476562 278.699219 187.382812 278.699219 187.265625 Z M 278.699219 187.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.1875 190.027344 C 278.1875 189.910156 278.09375 189.816406 277.976562 189.816406 C 277.859375 189.816406 277.765625 189.910156 277.765625 190.027344 C 277.765625 190.144531 277.859375 190.238281 277.976562 190.238281 C 278.09375 190.238281 278.1875 190.144531 278.1875 190.027344 Z M 278.1875 190.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.28125 187.09375 C 276.28125 186.976562 276.1875 186.882812 276.070312 186.882812 C 275.953125 186.882812 275.859375 186.976562 275.859375 187.09375 C 275.859375 187.210938 275.953125 187.304688 276.070312 187.304688 C 276.1875 187.304688 276.28125 187.210938 276.28125 187.09375 Z M 276.28125 187.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.902344 183.21875 C 277.902344 183.101562 277.808594 183.007812 277.691406 183.007812 C 277.574219 183.007812 277.480469 183.101562 277.480469 183.21875 C 277.480469 183.335938 277.574219 183.429688 277.691406 183.429688 C 277.808594 183.429688 277.902344 183.335938 277.902344 183.21875 Z M 277.902344 183.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.773438 181.578125 C 274.773438 181.460938 274.679688 181.367188 274.5625 181.367188 C 274.445312 181.367188 274.351562 181.460938 274.351562 181.578125 C 274.351562 181.695312 274.445312 181.789062 274.5625 181.789062 C 274.679688 181.789062 274.773438 181.695312 274.773438 181.578125 Z M 274.773438 181.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.796875 183.402344 C 275.796875 183.285156 275.703125 183.191406 275.585938 183.191406 C 275.46875 183.191406 275.375 183.285156 275.375 183.402344 C 275.375 183.519531 275.46875 183.613281 275.585938 183.613281 C 275.703125 183.613281 275.796875 183.519531 275.796875 183.402344 Z M 275.796875 183.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.589844 180.066406 C 274.589844 179.949219 274.496094 179.855469 274.378906 179.855469 C 274.261719 179.855469 274.167969 179.949219 274.167969 180.066406 C 274.167969 180.183594 274.261719 180.277344 274.378906 180.277344 C 274.496094 180.277344 274.589844 180.183594 274.589844 180.066406 Z M 274.589844 180.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.917969 181.914062 C 272.917969 181.796875 272.824219 181.703125 272.707031 181.703125 C 272.589844 181.703125 272.496094 181.796875 272.496094 181.914062 C 272.496094 182.03125 272.589844 182.125 272.707031 182.125 C 272.824219 182.125 272.917969 182.03125 272.917969 181.914062 Z M 272.917969 181.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.507812 184.761719 C 272.507812 184.644531 272.414062 184.550781 272.296875 184.550781 C 272.179688 184.550781 272.085938 184.644531 272.085938 184.761719 C 272.085938 184.878906 272.179688 184.972656 272.296875 184.972656 C 272.414062 184.972656 272.507812 184.878906 272.507812 184.761719 Z M 272.507812 184.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.230469 184.132812 C 270.230469 184.015625 270.136719 183.921875 270.019531 183.921875 C 269.902344 183.921875 269.808594 184.015625 269.808594 184.132812 C 269.808594 184.25 269.902344 184.34375 270.019531 184.34375 C 270.136719 184.34375 270.230469 184.25 270.230469 184.132812 Z M 270.230469 184.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.238281 182.589844 C 271.238281 182.472656 271.144531 182.378906 271.027344 182.378906 C 270.910156 182.378906 270.816406 182.472656 270.816406 182.589844 C 270.816406 182.707031 270.910156 182.800781 271.027344 182.800781 C 271.144531 182.800781 271.238281 182.707031 271.238281 182.589844 Z M 271.238281 182.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.527344 183.320312 C 276.527344 183.203125 276.433594 183.109375 276.316406 183.109375 C 276.199219 183.109375 276.105469 183.203125 276.105469 183.320312 C 276.105469 183.4375 276.199219 183.53125 276.316406 183.53125 C 276.433594 183.53125 276.527344 183.4375 276.527344 183.320312 Z M 276.527344 183.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.777344 184.527344 C 278.777344 184.410156 278.683594 184.316406 278.566406 184.316406 C 278.449219 184.316406 278.355469 184.410156 278.355469 184.527344 C 278.355469 184.644531 278.449219 184.738281 278.566406 184.738281 C 278.683594 184.738281 278.777344 184.644531 278.777344 184.527344 Z M 278.777344 184.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.824219 185.152344 C 275.824219 185.035156 275.730469 184.941406 275.613281 184.941406 C 275.496094 184.941406 275.402344 185.035156 275.402344 185.152344 C 275.402344 185.269531 275.496094 185.363281 275.613281 185.363281 C 275.730469 185.363281 275.824219 185.269531 275.824219 185.152344 Z M 275.824219 185.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.375 187.773438 C 274.375 187.65625 274.28125 187.5625 274.164062 187.5625 C 274.046875 187.5625 273.953125 187.65625 273.953125 187.773438 C 273.953125 187.890625 274.046875 187.984375 274.164062 187.984375 C 274.28125 187.984375 274.375 187.890625 274.375 187.773438 Z M 274.375 187.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.527344 187.996094 C 272.527344 187.878906 272.433594 187.785156 272.316406 187.785156 C 272.199219 187.785156 272.105469 187.878906 272.105469 187.996094 C 272.105469 188.113281 272.199219 188.207031 272.316406 188.207031 C 272.433594 188.207031 272.527344 188.113281 272.527344 187.996094 Z M 272.527344 187.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.0625 187.445312 C 272.0625 187.328125 271.96875 187.234375 271.851562 187.234375 C 271.734375 187.234375 271.640625 187.328125 271.640625 187.445312 C 271.640625 187.5625 271.734375 187.65625 271.851562 187.65625 C 271.96875 187.65625 272.0625 187.5625 272.0625 187.445312 Z M 272.0625 187.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.785156 188.28125 C 271.785156 188.164062 271.691406 188.070312 271.574219 188.070312 C 271.457031 188.070312 271.363281 188.164062 271.363281 188.28125 C 271.363281 188.398438 271.457031 188.492188 271.574219 188.492188 C 271.691406 188.492188 271.785156 188.398438 271.785156 188.28125 Z M 271.785156 188.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.195312 188.699219 C 273.195312 188.582031 273.101562 188.488281 272.984375 188.488281 C 272.867188 188.488281 272.773438 188.582031 272.773438 188.699219 C 272.773438 188.816406 272.867188 188.910156 272.984375 188.910156 C 273.101562 188.910156 273.195312 188.816406 273.195312 188.699219 Z M 273.195312 188.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.640625 188.894531 C 270.640625 188.777344 270.546875 188.683594 270.429688 188.683594 C 270.3125 188.683594 270.21875 188.777344 270.21875 188.894531 C 270.21875 189.011719 270.3125 189.105469 270.429688 189.105469 C 270.546875 189.105469 270.640625 189.011719 270.640625 188.894531 Z M 270.640625 188.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.496094 189.667969 C 274.496094 189.550781 274.402344 189.457031 274.285156 189.457031 C 274.167969 189.457031 274.074219 189.550781 274.074219 189.667969 C 274.074219 189.785156 274.167969 189.878906 274.285156 189.878906 C 274.402344 189.878906 274.496094 189.785156 274.496094 189.667969 Z M 274.496094 189.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.738281 186.753906 C 275.738281 186.636719 275.644531 186.542969 275.527344 186.542969 C 275.410156 186.542969 275.316406 186.636719 275.316406 186.753906 C 275.316406 186.871094 275.410156 186.964844 275.527344 186.964844 C 275.644531 186.964844 275.738281 186.871094 275.738281 186.753906 Z M 275.738281 186.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.242188 187.277344 C 277.242188 187.160156 277.148438 187.066406 277.03125 187.066406 C 276.914062 187.066406 276.820312 187.160156 276.820312 187.277344 C 276.820312 187.394531 276.914062 187.488281 277.03125 187.488281 C 277.148438 187.488281 277.242188 187.394531 277.242188 187.277344 Z M 277.242188 187.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.976562 186.964844 C 276.976562 186.847656 276.882812 186.753906 276.765625 186.753906 C 276.648438 186.753906 276.554688 186.847656 276.554688 186.964844 C 276.554688 187.082031 276.648438 187.175781 276.765625 187.175781 C 276.882812 187.175781 276.976562 187.082031 276.976562 186.964844 Z M 276.976562 186.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.855469 189.769531 C 276.855469 189.652344 276.761719 189.558594 276.644531 189.558594 C 276.527344 189.558594 276.433594 189.652344 276.433594 189.769531 C 276.433594 189.886719 276.527344 189.980469 276.644531 189.980469 C 276.761719 189.980469 276.855469 189.886719 276.855469 189.769531 Z M 276.855469 189.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277 188.96875 C 277 188.851562 276.90625 188.757812 276.789062 188.757812 C 276.671875 188.757812 276.578125 188.851562 276.578125 188.96875 C 276.578125 189.085938 276.671875 189.179688 276.789062 189.179688 C 276.90625 189.179688 277 189.085938 277 188.96875 Z M 277 188.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.117188 191.085938 C 276.117188 190.96875 276.023438 190.875 275.90625 190.875 C 275.789062 190.875 275.695312 190.96875 275.695312 191.085938 C 275.695312 191.203125 275.789062 191.296875 275.90625 191.296875 C 276.023438 191.296875 276.117188 191.203125 276.117188 191.085938 Z M 276.117188 191.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.042969 193.046875 C 275.042969 192.929688 274.949219 192.835938 274.832031 192.835938 C 274.714844 192.835938 274.621094 192.929688 274.621094 193.046875 C 274.621094 193.164062 274.714844 193.257812 274.832031 193.257812 C 274.949219 193.257812 275.042969 193.164062 275.042969 193.046875 Z M 275.042969 193.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.03125 194.082031 C 273.03125 193.964844 272.9375 193.871094 272.820312 193.871094 C 272.703125 193.871094 272.609375 193.964844 272.609375 194.082031 C 272.609375 194.199219 272.703125 194.292969 272.820312 194.292969 C 272.9375 194.292969 273.03125 194.199219 273.03125 194.082031 Z M 273.03125 194.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.816406 193.40625 C 273.816406 193.289062 273.722656 193.195312 273.605469 193.195312 C 273.488281 193.195312 273.394531 193.289062 273.394531 193.40625 C 273.394531 193.523438 273.488281 193.617188 273.605469 193.617188 C 273.722656 193.617188 273.816406 193.523438 273.816406 193.40625 Z M 273.816406 193.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.695312 195.949219 C 272.695312 195.832031 272.601562 195.738281 272.484375 195.738281 C 272.367188 195.738281 272.273438 195.832031 272.273438 195.949219 C 272.273438 196.066406 272.367188 196.160156 272.484375 196.160156 C 272.601562 196.160156 272.695312 196.066406 272.695312 195.949219 Z M 272.695312 195.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.953125 195.671875 C 275.953125 195.554688 275.859375 195.460938 275.742188 195.460938 C 275.625 195.460938 275.53125 195.554688 275.53125 195.671875 C 275.53125 195.789062 275.625 195.882812 275.742188 195.882812 C 275.859375 195.882812 275.953125 195.789062 275.953125 195.671875 Z M 275.953125 195.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.636719 192.546875 C 274.636719 192.429688 274.542969 192.335938 274.425781 192.335938 C 274.308594 192.335938 274.214844 192.429688 274.214844 192.546875 C 274.214844 192.664062 274.308594 192.757812 274.425781 192.757812 C 274.542969 192.757812 274.636719 192.664062 274.636719 192.546875 Z M 274.636719 192.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.703125 192.367188 C 275.703125 192.25 275.609375 192.15625 275.492188 192.15625 C 275.375 192.15625 275.28125 192.25 275.28125 192.367188 C 275.28125 192.484375 275.375 192.578125 275.492188 192.578125 C 275.609375 192.578125 275.703125 192.484375 275.703125 192.367188 Z M 275.703125 192.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.769531 195.636719 C 274.769531 195.519531 274.675781 195.425781 274.558594 195.425781 C 274.441406 195.425781 274.347656 195.519531 274.347656 195.636719 C 274.347656 195.753906 274.441406 195.847656 274.558594 195.847656 C 274.675781 195.847656 274.769531 195.753906 274.769531 195.636719 Z M 274.769531 195.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.460938 197.238281 C 275.460938 197.121094 275.367188 197.027344 275.25 197.027344 C 275.132812 197.027344 275.039062 197.121094 275.039062 197.238281 C 275.039062 197.355469 275.132812 197.449219 275.25 197.449219 C 275.367188 197.449219 275.460938 197.355469 275.460938 197.238281 Z M 275.460938 197.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.671875 198.640625 C 272.671875 198.523438 272.578125 198.429688 272.460938 198.429688 C 272.34375 198.429688 272.25 198.523438 272.25 198.640625 C 272.25 198.757812 272.34375 198.851562 272.460938 198.851562 C 272.578125 198.851562 272.671875 198.757812 272.671875 198.640625 Z M 272.671875 198.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.238281 202.265625 C 273.238281 202.148438 273.144531 202.054688 273.027344 202.054688 C 272.910156 202.054688 272.816406 202.148438 272.816406 202.265625 C 272.816406 202.382812 272.910156 202.476562 273.027344 202.476562 C 273.144531 202.476562 273.238281 202.382812 273.238281 202.265625 Z M 273.238281 202.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.867188 203.003906 C 273.867188 202.886719 273.773438 202.792969 273.65625 202.792969 C 273.539062 202.792969 273.445312 202.886719 273.445312 203.003906 C 273.445312 203.121094 273.539062 203.214844 273.65625 203.214844 C 273.773438 203.214844 273.867188 203.121094 273.867188 203.003906 Z M 273.867188 203.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.980469 197.820312 C 271.980469 197.703125 271.886719 197.609375 271.769531 197.609375 C 271.652344 197.609375 271.558594 197.703125 271.558594 197.820312 C 271.558594 197.9375 271.652344 198.03125 271.769531 198.03125 C 271.886719 198.03125 271.980469 197.9375 271.980469 197.820312 Z M 271.980469 197.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.117188 200.496094 C 275.117188 200.378906 275.023438 200.285156 274.90625 200.285156 C 274.789062 200.285156 274.695312 200.378906 274.695312 200.496094 C 274.695312 200.613281 274.789062 200.707031 274.90625 200.707031 C 275.023438 200.707031 275.117188 200.613281 275.117188 200.496094 Z M 275.117188 200.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.5625 201.308594 C 278.5625 201.191406 278.46875 201.097656 278.351562 201.097656 C 278.234375 201.097656 278.140625 201.191406 278.140625 201.308594 C 278.140625 201.425781 278.234375 201.519531 278.351562 201.519531 C 278.46875 201.519531 278.5625 201.425781 278.5625 201.308594 Z M 278.5625 201.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.640625 197.195312 C 277.640625 197.078125 277.546875 196.984375 277.429688 196.984375 C 277.3125 196.984375 277.21875 197.078125 277.21875 197.195312 C 277.21875 197.3125 277.3125 197.40625 277.429688 197.40625 C 277.546875 197.40625 277.640625 197.3125 277.640625 197.195312 Z M 277.640625 197.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.292969 198.523438 C 277.292969 198.40625 277.199219 198.3125 277.082031 198.3125 C 276.964844 198.3125 276.871094 198.40625 276.871094 198.523438 C 276.871094 198.640625 276.964844 198.734375 277.082031 198.734375 C 277.199219 198.734375 277.292969 198.640625 277.292969 198.523438 Z M 277.292969 198.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.917969 197.714844 C 273.917969 197.597656 273.824219 197.503906 273.707031 197.503906 C 273.589844 197.503906 273.496094 197.597656 273.496094 197.714844 C 273.496094 197.832031 273.589844 197.925781 273.707031 197.925781 C 273.824219 197.925781 273.917969 197.832031 273.917969 197.714844 Z M 273.917969 197.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.609375 199.191406 C 274.609375 199.074219 274.515625 198.980469 274.398438 198.980469 C 274.28125 198.980469 274.1875 199.074219 274.1875 199.191406 C 274.1875 199.308594 274.28125 199.402344 274.398438 199.402344 C 274.515625 199.402344 274.609375 199.308594 274.609375 199.191406 Z M 274.609375 199.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.066406 199.066406 C 276.066406 198.949219 275.972656 198.855469 275.855469 198.855469 C 275.738281 198.855469 275.644531 198.949219 275.644531 199.066406 C 275.644531 199.183594 275.738281 199.277344 275.855469 199.277344 C 275.972656 199.277344 276.066406 199.183594 276.066406 199.066406 Z M 276.066406 199.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.296875 200.359375 C 275.296875 200.242188 275.203125 200.148438 275.085938 200.148438 C 274.96875 200.148438 274.875 200.242188 274.875 200.359375 C 274.875 200.476562 274.96875 200.570312 275.085938 200.570312 C 275.203125 200.570312 275.296875 200.476562 275.296875 200.359375 Z M 275.296875 200.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.824219 200.394531 C 275.824219 200.277344 275.730469 200.183594 275.613281 200.183594 C 275.496094 200.183594 275.402344 200.277344 275.402344 200.394531 C 275.402344 200.511719 275.496094 200.605469 275.613281 200.605469 C 275.730469 200.605469 275.824219 200.511719 275.824219 200.394531 Z M 275.824219 200.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.984375 201.070312 C 274.984375 200.953125 274.890625 200.859375 274.773438 200.859375 C 274.65625 200.859375 274.5625 200.953125 274.5625 201.070312 C 274.5625 201.1875 274.65625 201.28125 274.773438 201.28125 C 274.890625 201.28125 274.984375 201.1875 274.984375 201.070312 Z M 274.984375 201.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.125 201.347656 C 273.125 201.230469 273.03125 201.136719 272.914062 201.136719 C 272.796875 201.136719 272.703125 201.230469 272.703125 201.347656 C 272.703125 201.464844 272.796875 201.558594 272.914062 201.558594 C 273.03125 201.558594 273.125 201.464844 273.125 201.347656 Z M 273.125 201.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.050781 203.382812 C 274.050781 203.265625 273.957031 203.171875 273.839844 203.171875 C 273.722656 203.171875 273.628906 203.265625 273.628906 203.382812 C 273.628906 203.5 273.722656 203.59375 273.839844 203.59375 C 273.957031 203.59375 274.050781 203.5 274.050781 203.382812 Z M 274.050781 203.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.539062 202.601562 C 274.539062 202.484375 274.445312 202.390625 274.328125 202.390625 C 274.210938 202.390625 274.117188 202.484375 274.117188 202.601562 C 274.117188 202.71875 274.210938 202.8125 274.328125 202.8125 C 274.445312 202.8125 274.539062 202.71875 274.539062 202.601562 Z M 274.539062 202.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.089844 196.535156 C 273.089844 196.417969 272.996094 196.324219 272.878906 196.324219 C 272.761719 196.324219 272.667969 196.417969 272.667969 196.535156 C 272.667969 196.652344 272.761719 196.746094 272.878906 196.746094 C 272.996094 196.746094 273.089844 196.652344 273.089844 196.535156 Z M 273.089844 196.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.789062 195.050781 C 276.789062 194.933594 276.695312 194.839844 276.578125 194.839844 C 276.460938 194.839844 276.367188 194.933594 276.367188 195.050781 C 276.367188 195.167969 276.460938 195.261719 276.578125 195.261719 C 276.695312 195.261719 276.789062 195.167969 276.789062 195.050781 Z M 276.789062 195.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.1875 195.128906 C 275.1875 195.011719 275.09375 194.917969 274.976562 194.917969 C 274.859375 194.917969 274.765625 195.011719 274.765625 195.128906 C 274.765625 195.246094 274.859375 195.339844 274.976562 195.339844 C 275.09375 195.339844 275.1875 195.246094 275.1875 195.128906 Z M 275.1875 195.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.652344 194.566406 C 276.652344 194.449219 276.558594 194.355469 276.441406 194.355469 C 276.324219 194.355469 276.230469 194.449219 276.230469 194.566406 C 276.230469 194.683594 276.324219 194.777344 276.441406 194.777344 C 276.558594 194.777344 276.652344 194.683594 276.652344 194.566406 Z M 276.652344 194.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.496094 190.269531 C 276.496094 190.152344 276.402344 190.058594 276.285156 190.058594 C 276.167969 190.058594 276.074219 190.152344 276.074219 190.269531 C 276.074219 190.386719 276.167969 190.480469 276.285156 190.480469 C 276.402344 190.480469 276.496094 190.386719 276.496094 190.269531 Z M 276.496094 190.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.453125 191.328125 C 277.453125 191.210938 277.359375 191.117188 277.242188 191.117188 C 277.125 191.117188 277.03125 191.210938 277.03125 191.328125 C 277.03125 191.445312 277.125 191.539062 277.242188 191.539062 C 277.359375 191.539062 277.453125 191.445312 277.453125 191.328125 Z M 277.453125 191.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.613281 191.679688 C 276.613281 191.5625 276.519531 191.46875 276.402344 191.46875 C 276.285156 191.46875 276.191406 191.5625 276.191406 191.679688 C 276.191406 191.796875 276.285156 191.890625 276.402344 191.890625 C 276.519531 191.890625 276.613281 191.796875 276.613281 191.679688 Z M 276.613281 191.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.78125 191.402344 C 279.78125 191.285156 279.6875 191.191406 279.570312 191.191406 C 279.453125 191.191406 279.359375 191.285156 279.359375 191.402344 C 279.359375 191.519531 279.453125 191.613281 279.570312 191.613281 C 279.6875 191.613281 279.78125 191.519531 279.78125 191.402344 Z M 279.78125 191.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.945312 192.667969 C 274.945312 192.550781 274.851562 192.457031 274.734375 192.457031 C 274.617188 192.457031 274.523438 192.550781 274.523438 192.667969 C 274.523438 192.785156 274.617188 192.878906 274.734375 192.878906 C 274.851562 192.878906 274.945312 192.785156 274.945312 192.667969 Z M 274.945312 192.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.042969 193.8125 C 275.042969 193.695312 274.949219 193.601562 274.832031 193.601562 C 274.714844 193.601562 274.621094 193.695312 274.621094 193.8125 C 274.621094 193.929688 274.714844 194.023438 274.832031 194.023438 C 274.949219 194.023438 275.042969 193.929688 275.042969 193.8125 Z M 275.042969 193.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.265625 191.917969 C 276.265625 191.800781 276.171875 191.707031 276.054688 191.707031 C 275.9375 191.707031 275.84375 191.800781 275.84375 191.917969 C 275.84375 192.035156 275.9375 192.128906 276.054688 192.128906 C 276.171875 192.128906 276.265625 192.035156 276.265625 191.917969 Z M 276.265625 191.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.328125 192.453125 C 280.328125 192.335938 280.234375 192.242188 280.117188 192.242188 C 280 192.242188 279.90625 192.335938 279.90625 192.453125 C 279.90625 192.570312 280 192.664062 280.117188 192.664062 C 280.234375 192.664062 280.328125 192.570312 280.328125 192.453125 Z M 280.328125 192.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.671875 191.015625 C 282.671875 190.898438 282.578125 190.804688 282.460938 190.804688 C 282.34375 190.804688 282.25 190.898438 282.25 191.015625 C 282.25 191.132812 282.34375 191.226562 282.460938 191.226562 C 282.578125 191.226562 282.671875 191.132812 282.671875 191.015625 Z M 282.671875 191.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.722656 194.296875 C 279.722656 194.179688 279.628906 194.085938 279.511719 194.085938 C 279.394531 194.085938 279.300781 194.179688 279.300781 194.296875 C 279.300781 194.414062 279.394531 194.507812 279.511719 194.507812 C 279.628906 194.507812 279.722656 194.414062 279.722656 194.296875 Z M 279.722656 194.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.417969 195.164062 C 278.417969 195.046875 278.324219 194.953125 278.207031 194.953125 C 278.089844 194.953125 277.996094 195.046875 277.996094 195.164062 C 277.996094 195.28125 278.089844 195.375 278.207031 195.375 C 278.324219 195.375 278.417969 195.28125 278.417969 195.164062 Z M 278.417969 195.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.488281 194.613281 C 280.488281 194.496094 280.394531 194.402344 280.277344 194.402344 C 280.160156 194.402344 280.066406 194.496094 280.066406 194.613281 C 280.066406 194.730469 280.160156 194.824219 280.277344 194.824219 C 280.394531 194.824219 280.488281 194.730469 280.488281 194.613281 Z M 280.488281 194.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.632812 192.28125 C 279.632812 192.164062 279.539062 192.070312 279.421875 192.070312 C 279.304688 192.070312 279.210938 192.164062 279.210938 192.28125 C 279.210938 192.398438 279.304688 192.492188 279.421875 192.492188 C 279.539062 192.492188 279.632812 192.398438 279.632812 192.28125 Z M 279.632812 192.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.566406 191.109375 C 276.566406 190.992188 276.472656 190.898438 276.355469 190.898438 C 276.238281 190.898438 276.144531 190.992188 276.144531 191.109375 C 276.144531 191.226562 276.238281 191.320312 276.355469 191.320312 C 276.472656 191.320312 276.566406 191.226562 276.566406 191.109375 Z M 276.566406 191.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.269531 189.578125 C 275.269531 189.460938 275.175781 189.367188 275.058594 189.367188 C 274.941406 189.367188 274.847656 189.460938 274.847656 189.578125 C 274.847656 189.695312 274.941406 189.789062 275.058594 189.789062 C 275.175781 189.789062 275.269531 189.695312 275.269531 189.578125 Z M 275.269531 189.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.226562 185.0625 C 277.226562 184.945312 277.132812 184.851562 277.015625 184.851562 C 276.898438 184.851562 276.804688 184.945312 276.804688 185.0625 C 276.804688 185.179688 276.898438 185.273438 277.015625 185.273438 C 277.132812 185.273438 277.226562 185.179688 277.226562 185.0625 Z M 277.226562 185.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.875 184.699219 C 270.875 184.582031 270.78125 184.488281 270.664062 184.488281 C 270.546875 184.488281 270.453125 184.582031 270.453125 184.699219 C 270.453125 184.816406 270.546875 184.910156 270.664062 184.910156 C 270.78125 184.910156 270.875 184.816406 270.875 184.699219 Z M 270.875 184.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.601562 185.425781 C 269.601562 185.308594 269.507812 185.214844 269.390625 185.214844 C 269.273438 185.214844 269.179688 185.308594 269.179688 185.425781 C 269.179688 185.542969 269.273438 185.636719 269.390625 185.636719 C 269.507812 185.636719 269.601562 185.542969 269.601562 185.425781 Z M 269.601562 185.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.886719 188.46875 C 268.886719 188.351562 268.792969 188.257812 268.675781 188.257812 C 268.558594 188.257812 268.464844 188.351562 268.464844 188.46875 C 268.464844 188.585938 268.558594 188.679688 268.675781 188.679688 C 268.792969 188.679688 268.886719 188.585938 268.886719 188.46875 Z M 268.886719 188.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.914062 189.246094 C 263.914062 189.128906 263.820312 189.035156 263.703125 189.035156 C 263.585938 189.035156 263.492188 189.128906 263.492188 189.246094 C 263.492188 189.363281 263.585938 189.457031 263.703125 189.457031 C 263.820312 189.457031 263.914062 189.363281 263.914062 189.246094 Z M 263.914062 189.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.910156 189.546875 C 265.910156 189.429688 265.816406 189.335938 265.699219 189.335938 C 265.582031 189.335938 265.488281 189.429688 265.488281 189.546875 C 265.488281 189.664062 265.582031 189.757812 265.699219 189.757812 C 265.816406 189.757812 265.910156 189.664062 265.910156 189.546875 Z M 265.910156 189.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.777344 188.542969 C 262.777344 188.425781 262.683594 188.332031 262.566406 188.332031 C 262.449219 188.332031 262.355469 188.425781 262.355469 188.542969 C 262.355469 188.660156 262.449219 188.753906 262.566406 188.753906 C 262.683594 188.753906 262.777344 188.660156 262.777344 188.542969 Z M 262.777344 188.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.480469 184.972656 C 262.480469 184.855469 262.386719 184.761719 262.269531 184.761719 C 262.152344 184.761719 262.058594 184.855469 262.058594 184.972656 C 262.058594 185.089844 262.152344 185.183594 262.269531 185.183594 C 262.386719 185.183594 262.480469 185.089844 262.480469 184.972656 Z M 262.480469 184.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.105469 188.144531 C 259.105469 188.027344 259.011719 187.933594 258.894531 187.933594 C 258.777344 187.933594 258.683594 188.027344 258.683594 188.144531 C 258.683594 188.261719 258.777344 188.355469 258.894531 188.355469 C 259.011719 188.355469 259.105469 188.261719 259.105469 188.144531 Z M 259.105469 188.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.246094 192.277344 C 261.246094 192.160156 261.152344 192.066406 261.035156 192.066406 C 260.917969 192.066406 260.824219 192.160156 260.824219 192.277344 C 260.824219 192.394531 260.917969 192.488281 261.035156 192.488281 C 261.152344 192.488281 261.246094 192.394531 261.246094 192.277344 Z M 261.246094 192.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.394531 194.707031 C 262.394531 194.589844 262.300781 194.496094 262.183594 194.496094 C 262.066406 194.496094 261.972656 194.589844 261.972656 194.707031 C 261.972656 194.824219 262.066406 194.917969 262.183594 194.917969 C 262.300781 194.917969 262.394531 194.824219 262.394531 194.707031 Z M 262.394531 194.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.335938 196.429688 C 261.335938 196.3125 261.242188 196.21875 261.125 196.21875 C 261.007812 196.21875 260.914062 196.3125 260.914062 196.429688 C 260.914062 196.546875 261.007812 196.640625 261.125 196.640625 C 261.242188 196.640625 261.335938 196.546875 261.335938 196.429688 Z M 261.335938 196.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.136719 195.769531 C 259.136719 195.652344 259.042969 195.558594 258.925781 195.558594 C 258.808594 195.558594 258.714844 195.652344 258.714844 195.769531 C 258.714844 195.886719 258.808594 195.980469 258.925781 195.980469 C 259.042969 195.980469 259.136719 195.886719 259.136719 195.769531 Z M 259.136719 195.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.617188 197.511719 C 256.617188 197.394531 256.523438 197.300781 256.40625 197.300781 C 256.289062 197.300781 256.195312 197.394531 256.195312 197.511719 C 256.195312 197.628906 256.289062 197.722656 256.40625 197.722656 C 256.523438 197.722656 256.617188 197.628906 256.617188 197.511719 Z M 256.617188 197.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.28125 199.109375 C 255.28125 198.992188 255.1875 198.898438 255.070312 198.898438 C 254.953125 198.898438 254.859375 198.992188 254.859375 199.109375 C 254.859375 199.226562 254.953125 199.320312 255.070312 199.320312 C 255.1875 199.320312 255.28125 199.226562 255.28125 199.109375 Z M 255.28125 199.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.558594 197.015625 C 253.558594 196.898438 253.464844 196.804688 253.347656 196.804688 C 253.230469 196.804688 253.136719 196.898438 253.136719 197.015625 C 253.136719 197.132812 253.230469 197.226562 253.347656 197.226562 C 253.464844 197.226562 253.558594 197.132812 253.558594 197.015625 Z M 253.558594 197.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.554688 194.925781 C 252.554688 194.808594 252.460938 194.714844 252.34375 194.714844 C 252.226562 194.714844 252.132812 194.808594 252.132812 194.925781 C 252.132812 195.042969 252.226562 195.136719 252.34375 195.136719 C 252.460938 195.136719 252.554688 195.042969 252.554688 194.925781 Z M 252.554688 194.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.382812 197.644531 C 249.382812 197.527344 249.289062 197.433594 249.171875 197.433594 C 249.054688 197.433594 248.960938 197.527344 248.960938 197.644531 C 248.960938 197.761719 249.054688 197.855469 249.171875 197.855469 C 249.289062 197.855469 249.382812 197.761719 249.382812 197.644531 Z M 249.382812 197.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.863281 198.148438 C 252.863281 198.03125 252.769531 197.9375 252.652344 197.9375 C 252.535156 197.9375 252.441406 198.03125 252.441406 198.148438 C 252.441406 198.265625 252.535156 198.359375 252.652344 198.359375 C 252.769531 198.359375 252.863281 198.265625 252.863281 198.148438 Z M 252.863281 198.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.03125 196.984375 C 252.03125 196.867188 251.9375 196.773438 251.820312 196.773438 C 251.703125 196.773438 251.609375 196.867188 251.609375 196.984375 C 251.609375 197.101562 251.703125 197.195312 251.820312 197.195312 C 251.9375 197.195312 252.03125 197.101562 252.03125 196.984375 Z M 252.03125 196.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.542969 196.496094 C 252.542969 196.378906 252.449219 196.285156 252.332031 196.285156 C 252.214844 196.285156 252.121094 196.378906 252.121094 196.496094 C 252.121094 196.613281 252.214844 196.707031 252.332031 196.707031 C 252.449219 196.707031 252.542969 196.613281 252.542969 196.496094 Z M 252.542969 196.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.601562 193.285156 C 250.601562 193.167969 250.507812 193.074219 250.390625 193.074219 C 250.273438 193.074219 250.179688 193.167969 250.179688 193.285156 C 250.179688 193.402344 250.273438 193.496094 250.390625 193.496094 C 250.507812 193.496094 250.601562 193.402344 250.601562 193.285156 Z M 250.601562 193.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.34375 197.09375 C 249.34375 196.976562 249.25 196.882812 249.132812 196.882812 C 249.015625 196.882812 248.921875 196.976562 248.921875 197.09375 C 248.921875 197.210938 249.015625 197.304688 249.132812 197.304688 C 249.25 197.304688 249.34375 197.210938 249.34375 197.09375 Z M 249.34375 197.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.761719 195.492188 C 247.761719 195.375 247.667969 195.28125 247.550781 195.28125 C 247.433594 195.28125 247.339844 195.375 247.339844 195.492188 C 247.339844 195.609375 247.433594 195.703125 247.550781 195.703125 C 247.667969 195.703125 247.761719 195.609375 247.761719 195.492188 Z M 247.761719 195.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.859375 195.609375 C 247.859375 195.492188 247.765625 195.398438 247.648438 195.398438 C 247.53125 195.398438 247.4375 195.492188 247.4375 195.609375 C 247.4375 195.726562 247.53125 195.820312 247.648438 195.820312 C 247.765625 195.820312 247.859375 195.726562 247.859375 195.609375 Z M 247.859375 195.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.074219 195.785156 C 248.074219 195.667969 247.980469 195.574219 247.863281 195.574219 C 247.746094 195.574219 247.652344 195.667969 247.652344 195.785156 C 247.652344 195.902344 247.746094 195.996094 247.863281 195.996094 C 247.980469 195.996094 248.074219 195.902344 248.074219 195.785156 Z M 248.074219 195.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.507812 196.253906 C 246.507812 196.136719 246.414062 196.042969 246.296875 196.042969 C 246.179688 196.042969 246.085938 196.136719 246.085938 196.253906 C 246.085938 196.371094 246.179688 196.464844 246.296875 196.464844 C 246.414062 196.464844 246.507812 196.371094 246.507812 196.253906 Z M 246.507812 196.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.132812 197.3125 C 246.132812 197.195312 246.039062 197.101562 245.921875 197.101562 C 245.804688 197.101562 245.710938 197.195312 245.710938 197.3125 C 245.710938 197.429688 245.804688 197.523438 245.921875 197.523438 C 246.039062 197.523438 246.132812 197.429688 246.132812 197.3125 Z M 246.132812 197.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.207031 199.59375 C 247.207031 199.476562 247.113281 199.382812 246.996094 199.382812 C 246.878906 199.382812 246.785156 199.476562 246.785156 199.59375 C 246.785156 199.710938 246.878906 199.804688 246.996094 199.804688 C 247.113281 199.804688 247.207031 199.710938 247.207031 199.59375 Z M 247.207031 199.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.222656 196.511719 C 249.222656 196.394531 249.128906 196.300781 249.011719 196.300781 C 248.894531 196.300781 248.800781 196.394531 248.800781 196.511719 C 248.800781 196.628906 248.894531 196.722656 249.011719 196.722656 C 249.128906 196.722656 249.222656 196.628906 249.222656 196.511719 Z M 249.222656 196.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.117188 196.367188 C 249.117188 196.25 249.023438 196.15625 248.90625 196.15625 C 248.789062 196.15625 248.695312 196.25 248.695312 196.367188 C 248.695312 196.484375 248.789062 196.578125 248.90625 196.578125 C 249.023438 196.578125 249.117188 196.484375 249.117188 196.367188 Z M 249.117188 196.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.671875 195.222656 C 247.671875 195.105469 247.578125 195.011719 247.460938 195.011719 C 247.34375 195.011719 247.25 195.105469 247.25 195.222656 C 247.25 195.339844 247.34375 195.433594 247.460938 195.433594 C 247.578125 195.433594 247.671875 195.339844 247.671875 195.222656 Z M 247.671875 195.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.292969 198.78125 C 244.292969 198.664062 244.199219 198.570312 244.082031 198.570312 C 243.964844 198.570312 243.871094 198.664062 243.871094 198.78125 C 243.871094 198.898438 243.964844 198.992188 244.082031 198.992188 C 244.199219 198.992188 244.292969 198.898438 244.292969 198.78125 Z M 244.292969 198.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.34375 199.636719 C 246.34375 199.519531 246.25 199.425781 246.132812 199.425781 C 246.015625 199.425781 245.921875 199.519531 245.921875 199.636719 C 245.921875 199.753906 246.015625 199.847656 246.132812 199.847656 C 246.25 199.847656 246.34375 199.753906 246.34375 199.636719 Z M 246.34375 199.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.191406 199.386719 C 244.191406 199.269531 244.097656 199.175781 243.980469 199.175781 C 243.863281 199.175781 243.769531 199.269531 243.769531 199.386719 C 243.769531 199.503906 243.863281 199.597656 243.980469 199.597656 C 244.097656 199.597656 244.191406 199.503906 244.191406 199.386719 Z M 244.191406 199.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.789062 202.234375 C 243.789062 202.117188 243.695312 202.023438 243.578125 202.023438 C 243.460938 202.023438 243.367188 202.117188 243.367188 202.234375 C 243.367188 202.351562 243.460938 202.445312 243.578125 202.445312 C 243.695312 202.445312 243.789062 202.351562 243.789062 202.234375 Z M 243.789062 202.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.277344 198.511719 C 242.277344 198.394531 242.183594 198.300781 242.066406 198.300781 C 241.949219 198.300781 241.855469 198.394531 241.855469 198.511719 C 241.855469 198.628906 241.949219 198.722656 242.066406 198.722656 C 242.183594 198.722656 242.277344 198.628906 242.277344 198.511719 Z M 242.277344 198.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.5625 198.132812 C 241.5625 198.015625 241.46875 197.921875 241.351562 197.921875 C 241.234375 197.921875 241.140625 198.015625 241.140625 198.132812 C 241.140625 198.25 241.234375 198.34375 241.351562 198.34375 C 241.46875 198.34375 241.5625 198.25 241.5625 198.132812 Z M 241.5625 198.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.917969 201.316406 C 240.917969 201.199219 240.824219 201.105469 240.707031 201.105469 C 240.589844 201.105469 240.496094 201.199219 240.496094 201.316406 C 240.496094 201.433594 240.589844 201.527344 240.707031 201.527344 C 240.824219 201.527344 240.917969 201.433594 240.917969 201.316406 Z M 240.917969 201.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.683594 204.007812 C 239.683594 203.890625 239.589844 203.796875 239.472656 203.796875 C 239.355469 203.796875 239.261719 203.890625 239.261719 204.007812 C 239.261719 204.125 239.355469 204.21875 239.472656 204.21875 C 239.589844 204.21875 239.683594 204.125 239.683594 204.007812 Z M 239.683594 204.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.042969 205.914062 C 240.042969 205.796875 239.949219 205.703125 239.832031 205.703125 C 239.714844 205.703125 239.621094 205.796875 239.621094 205.914062 C 239.621094 206.03125 239.714844 206.125 239.832031 206.125 C 239.949219 206.125 240.042969 206.03125 240.042969 205.914062 Z M 240.042969 205.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.78125 204.585938 C 238.78125 204.46875 238.6875 204.375 238.570312 204.375 C 238.453125 204.375 238.359375 204.46875 238.359375 204.585938 C 238.359375 204.703125 238.453125 204.796875 238.570312 204.796875 C 238.6875 204.796875 238.78125 204.703125 238.78125 204.585938 Z M 238.78125 204.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.578125 205.472656 C 241.578125 205.355469 241.484375 205.261719 241.367188 205.261719 C 241.25 205.261719 241.15625 205.355469 241.15625 205.472656 C 241.15625 205.589844 241.25 205.683594 241.367188 205.683594 C 241.484375 205.683594 241.578125 205.589844 241.578125 205.472656 Z M 241.578125 205.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.53125 202.535156 C 240.53125 202.417969 240.4375 202.324219 240.320312 202.324219 C 240.203125 202.324219 240.109375 202.417969 240.109375 202.535156 C 240.109375 202.652344 240.203125 202.746094 240.320312 202.746094 C 240.4375 202.746094 240.53125 202.652344 240.53125 202.535156 Z M 240.53125 202.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.441406 202.792969 C 240.441406 202.675781 240.347656 202.582031 240.230469 202.582031 C 240.113281 202.582031 240.019531 202.675781 240.019531 202.792969 C 240.019531 202.910156 240.113281 203.003906 240.230469 203.003906 C 240.347656 203.003906 240.441406 202.910156 240.441406 202.792969 Z M 240.441406 202.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.789062 203.484375 C 242.789062 203.367188 242.695312 203.273438 242.578125 203.273438 C 242.460938 203.273438 242.367188 203.367188 242.367188 203.484375 C 242.367188 203.601562 242.460938 203.695312 242.578125 203.695312 C 242.695312 203.695312 242.789062 203.601562 242.789062 203.484375 Z M 242.789062 203.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.140625 205.488281 C 239.140625 205.371094 239.046875 205.277344 238.929688 205.277344 C 238.8125 205.277344 238.71875 205.371094 238.71875 205.488281 C 238.71875 205.605469 238.8125 205.699219 238.929688 205.699219 C 239.046875 205.699219 239.140625 205.605469 239.140625 205.488281 Z M 239.140625 205.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.136719 205.398438 C 242.136719 205.28125 242.042969 205.1875 241.925781 205.1875 C 241.808594 205.1875 241.714844 205.28125 241.714844 205.398438 C 241.714844 205.515625 241.808594 205.609375 241.925781 205.609375 C 242.042969 205.609375 242.136719 205.515625 242.136719 205.398438 Z M 242.136719 205.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.730469 200.914062 C 243.730469 200.796875 243.636719 200.703125 243.519531 200.703125 C 243.402344 200.703125 243.308594 200.796875 243.308594 200.914062 C 243.308594 201.03125 243.402344 201.125 243.519531 201.125 C 243.636719 201.125 243.730469 201.03125 243.730469 200.914062 Z M 243.730469 200.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.273438 202.417969 C 243.273438 202.300781 243.179688 202.207031 243.0625 202.207031 C 242.945312 202.207031 242.851562 202.300781 242.851562 202.417969 C 242.851562 202.535156 242.945312 202.628906 243.0625 202.628906 C 243.179688 202.628906 243.273438 202.535156 243.273438 202.417969 Z M 243.273438 202.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.277344 203.179688 C 247.277344 203.0625 247.183594 202.96875 247.066406 202.96875 C 246.949219 202.96875 246.855469 203.0625 246.855469 203.179688 C 246.855469 203.296875 246.949219 203.390625 247.066406 203.390625 C 247.183594 203.390625 247.277344 203.296875 247.277344 203.179688 Z M 247.277344 203.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.386719 200.578125 C 246.386719 200.460938 246.292969 200.367188 246.175781 200.367188 C 246.058594 200.367188 245.964844 200.460938 245.964844 200.578125 C 245.964844 200.695312 246.058594 200.789062 246.175781 200.789062 C 246.292969 200.789062 246.386719 200.695312 246.386719 200.578125 Z M 246.386719 200.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.617188 200.589844 C 243.617188 200.472656 243.523438 200.378906 243.40625 200.378906 C 243.289062 200.378906 243.195312 200.472656 243.195312 200.589844 C 243.195312 200.707031 243.289062 200.800781 243.40625 200.800781 C 243.523438 200.800781 243.617188 200.707031 243.617188 200.589844 Z M 243.617188 200.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.726562 199.707031 C 239.726562 199.589844 239.632812 199.496094 239.515625 199.496094 C 239.398438 199.496094 239.304688 199.589844 239.304688 199.707031 C 239.304688 199.824219 239.398438 199.917969 239.515625 199.917969 C 239.632812 199.917969 239.726562 199.824219 239.726562 199.707031 Z M 239.726562 199.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.3125 201.894531 C 240.3125 201.777344 240.21875 201.683594 240.101562 201.683594 C 239.984375 201.683594 239.890625 201.777344 239.890625 201.894531 C 239.890625 202.011719 239.984375 202.105469 240.101562 202.105469 C 240.21875 202.105469 240.3125 202.011719 240.3125 201.894531 Z M 240.3125 201.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.125 203.335938 C 241.125 203.21875 241.03125 203.125 240.914062 203.125 C 240.796875 203.125 240.703125 203.21875 240.703125 203.335938 C 240.703125 203.453125 240.796875 203.546875 240.914062 203.546875 C 241.03125 203.546875 241.125 203.453125 241.125 203.335938 Z M 241.125 203.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.394531 200.503906 C 240.394531 200.386719 240.300781 200.292969 240.183594 200.292969 C 240.066406 200.292969 239.972656 200.386719 239.972656 200.503906 C 239.972656 200.621094 240.066406 200.714844 240.183594 200.714844 C 240.300781 200.714844 240.394531 200.621094 240.394531 200.503906 Z M 240.394531 200.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.332031 198.867188 C 238.332031 198.75 238.238281 198.65625 238.121094 198.65625 C 238.003906 198.65625 237.910156 198.75 237.910156 198.867188 C 237.910156 198.984375 238.003906 199.078125 238.121094 199.078125 C 238.238281 199.078125 238.332031 198.984375 238.332031 198.867188 Z M 238.332031 198.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.894531 197.476562 C 236.894531 197.359375 236.800781 197.265625 236.683594 197.265625 C 236.566406 197.265625 236.472656 197.359375 236.472656 197.476562 C 236.472656 197.59375 236.566406 197.6875 236.683594 197.6875 C 236.800781 197.6875 236.894531 197.59375 236.894531 197.476562 Z M 236.894531 197.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.382812 199.820312 C 236.382812 199.703125 236.289062 199.609375 236.171875 199.609375 C 236.054688 199.609375 235.960938 199.703125 235.960938 199.820312 C 235.960938 199.9375 236.054688 200.03125 236.171875 200.03125 C 236.289062 200.03125 236.382812 199.9375 236.382812 199.820312 Z M 236.382812 199.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.265625 200.417969 C 238.265625 200.300781 238.171875 200.207031 238.054688 200.207031 C 237.9375 200.207031 237.84375 200.300781 237.84375 200.417969 C 237.84375 200.535156 237.9375 200.628906 238.054688 200.628906 C 238.171875 200.628906 238.265625 200.535156 238.265625 200.417969 Z M 238.265625 200.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.839844 199.824219 C 232.839844 199.707031 232.746094 199.613281 232.628906 199.613281 C 232.511719 199.613281 232.417969 199.707031 232.417969 199.824219 C 232.417969 199.941406 232.511719 200.035156 232.628906 200.035156 C 232.746094 200.035156 232.839844 199.941406 232.839844 199.824219 Z M 232.839844 199.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.570312 204.835938 C 231.570312 204.71875 231.476562 204.625 231.359375 204.625 C 231.242188 204.625 231.148438 204.71875 231.148438 204.835938 C 231.148438 204.953125 231.242188 205.046875 231.359375 205.046875 C 231.476562 205.046875 231.570312 204.953125 231.570312 204.835938 Z M 231.570312 204.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.21875 205.628906 C 231.21875 205.511719 231.125 205.417969 231.007812 205.417969 C 230.890625 205.417969 230.796875 205.511719 230.796875 205.628906 C 230.796875 205.746094 230.890625 205.839844 231.007812 205.839844 C 231.125 205.839844 231.21875 205.746094 231.21875 205.628906 Z M 231.21875 205.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.796875 207.351562 C 229.796875 207.234375 229.703125 207.140625 229.585938 207.140625 C 229.46875 207.140625 229.375 207.234375 229.375 207.351562 C 229.375 207.46875 229.46875 207.5625 229.585938 207.5625 C 229.703125 207.5625 229.796875 207.46875 229.796875 207.351562 Z M 229.796875 207.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.875 206.179688 C 229.875 206.0625 229.78125 205.96875 229.664062 205.96875 C 229.546875 205.96875 229.453125 206.0625 229.453125 206.179688 C 229.453125 206.296875 229.546875 206.390625 229.664062 206.390625 C 229.78125 206.390625 229.875 206.296875 229.875 206.179688 Z M 229.875 206.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.082031 205.6875 C 229.082031 205.570312 228.988281 205.476562 228.871094 205.476562 C 228.753906 205.476562 228.660156 205.570312 228.660156 205.6875 C 228.660156 205.804688 228.753906 205.898438 228.871094 205.898438 C 228.988281 205.898438 229.082031 205.804688 229.082031 205.6875 Z M 229.082031 205.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.152344 207.132812 C 231.152344 207.015625 231.058594 206.921875 230.941406 206.921875 C 230.824219 206.921875 230.730469 207.015625 230.730469 207.132812 C 230.730469 207.25 230.824219 207.34375 230.941406 207.34375 C 231.058594 207.34375 231.152344 207.25 231.152344 207.132812 Z M 231.152344 207.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.988281 208.320312 C 233.988281 208.203125 233.894531 208.109375 233.777344 208.109375 C 233.660156 208.109375 233.566406 208.203125 233.566406 208.320312 C 233.566406 208.4375 233.660156 208.53125 233.777344 208.53125 C 233.894531 208.53125 233.988281 208.4375 233.988281 208.320312 Z M 233.988281 208.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.222656 210.175781 C 234.222656 210.058594 234.128906 209.964844 234.011719 209.964844 C 233.894531 209.964844 233.800781 210.058594 233.800781 210.175781 C 233.800781 210.292969 233.894531 210.386719 234.011719 210.386719 C 234.128906 210.386719 234.222656 210.292969 234.222656 210.175781 Z M 234.222656 210.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.84375 208.277344 C 232.84375 208.160156 232.75 208.066406 232.632812 208.066406 C 232.515625 208.066406 232.421875 208.160156 232.421875 208.277344 C 232.421875 208.394531 232.515625 208.488281 232.632812 208.488281 C 232.75 208.488281 232.84375 208.394531 232.84375 208.277344 Z M 232.84375 208.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.410156 207.917969 C 229.410156 207.800781 229.316406 207.707031 229.199219 207.707031 C 229.082031 207.707031 228.988281 207.800781 228.988281 207.917969 C 228.988281 208.035156 229.082031 208.128906 229.199219 208.128906 C 229.316406 208.128906 229.410156 208.035156 229.410156 207.917969 Z M 229.410156 207.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.488281 209.25 C 229.488281 209.132812 229.394531 209.039062 229.277344 209.039062 C 229.160156 209.039062 229.066406 209.132812 229.066406 209.25 C 229.066406 209.367188 229.160156 209.460938 229.277344 209.460938 C 229.394531 209.460938 229.488281 209.367188 229.488281 209.25 Z M 229.488281 209.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.71875 210.390625 C 227.71875 210.273438 227.625 210.179688 227.507812 210.179688 C 227.390625 210.179688 227.296875 210.273438 227.296875 210.390625 C 227.296875 210.507812 227.390625 210.601562 227.507812 210.601562 C 227.625 210.601562 227.71875 210.507812 227.71875 210.390625 Z M 227.71875 210.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.429688 209.417969 C 226.429688 209.300781 226.335938 209.207031 226.21875 209.207031 C 226.101562 209.207031 226.007812 209.300781 226.007812 209.417969 C 226.007812 209.535156 226.101562 209.628906 226.21875 209.628906 C 226.335938 209.628906 226.429688 209.535156 226.429688 209.417969 Z M 226.429688 209.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.714844 208.917969 C 221.714844 208.800781 221.621094 208.707031 221.503906 208.707031 C 221.386719 208.707031 221.292969 208.800781 221.292969 208.917969 C 221.292969 209.035156 221.386719 209.128906 221.503906 209.128906 C 221.621094 209.128906 221.714844 209.035156 221.714844 208.917969 Z M 221.714844 208.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 220.777344 208.074219 C 220.777344 207.957031 220.683594 207.863281 220.566406 207.863281 C 220.449219 207.863281 220.355469 207.957031 220.355469 208.074219 C 220.355469 208.191406 220.449219 208.285156 220.566406 208.285156 C 220.683594 208.285156 220.777344 208.191406 220.777344 208.074219 Z M 220.777344 208.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.652344 209.953125 C 221.652344 209.835938 221.558594 209.742188 221.441406 209.742188 C 221.324219 209.742188 221.230469 209.835938 221.230469 209.953125 C 221.230469 210.070312 221.324219 210.164062 221.441406 210.164062 C 221.558594 210.164062 221.652344 210.070312 221.652344 209.953125 Z M 221.652344 209.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.238281 208.976562 C 223.238281 208.859375 223.144531 208.765625 223.027344 208.765625 C 222.910156 208.765625 222.816406 208.859375 222.816406 208.976562 C 222.816406 209.09375 222.910156 209.1875 223.027344 209.1875 C 223.144531 209.1875 223.238281 209.09375 223.238281 208.976562 Z M 223.238281 208.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.046875 208.621094 C 221.046875 208.503906 220.953125 208.410156 220.835938 208.410156 C 220.71875 208.410156 220.625 208.503906 220.625 208.621094 C 220.625 208.738281 220.71875 208.832031 220.835938 208.832031 C 220.953125 208.832031 221.046875 208.738281 221.046875 208.621094 Z M 221.046875 208.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 220.628906 210.507812 C 220.628906 210.390625 220.535156 210.296875 220.417969 210.296875 C 220.300781 210.296875 220.207031 210.390625 220.207031 210.507812 C 220.207031 210.625 220.300781 210.71875 220.417969 210.71875 C 220.535156 210.71875 220.628906 210.625 220.628906 210.507812 Z M 220.628906 210.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.914062 212.785156 C 217.914062 212.667969 217.820312 212.574219 217.703125 212.574219 C 217.585938 212.574219 217.492188 212.667969 217.492188 212.785156 C 217.492188 212.902344 217.585938 212.996094 217.703125 212.996094 C 217.820312 212.996094 217.914062 212.902344 217.914062 212.785156 Z M 217.914062 212.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.671875 213.34375 C 218.671875 213.226562 218.578125 213.132812 218.460938 213.132812 C 218.34375 213.132812 218.25 213.226562 218.25 213.34375 C 218.25 213.460938 218.34375 213.554688 218.460938 213.554688 C 218.578125 213.554688 218.671875 213.460938 218.671875 213.34375 Z M 218.671875 213.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.734375 214.707031 C 218.734375 214.589844 218.640625 214.496094 218.523438 214.496094 C 218.40625 214.496094 218.3125 214.589844 218.3125 214.707031 C 218.3125 214.824219 218.40625 214.917969 218.523438 214.917969 C 218.640625 214.917969 218.734375 214.824219 218.734375 214.707031 Z M 218.734375 214.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.167969 216.59375 C 216.167969 216.476562 216.074219 216.382812 215.957031 216.382812 C 215.839844 216.382812 215.746094 216.476562 215.746094 216.59375 C 215.746094 216.710938 215.839844 216.804688 215.957031 216.804688 C 216.074219 216.804688 216.167969 216.710938 216.167969 216.59375 Z M 216.167969 216.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.210938 220.445312 C 216.210938 220.328125 216.117188 220.234375 216 220.234375 C 215.882812 220.234375 215.789062 220.328125 215.789062 220.445312 C 215.789062 220.5625 215.882812 220.65625 216 220.65625 C 216.117188 220.65625 216.210938 220.5625 216.210938 220.445312 Z M 216.210938 220.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.648438 220.359375 C 215.648438 220.242188 215.554688 220.148438 215.4375 220.148438 C 215.320312 220.148438 215.226562 220.242188 215.226562 220.359375 C 215.226562 220.476562 215.320312 220.570312 215.4375 220.570312 C 215.554688 220.570312 215.648438 220.476562 215.648438 220.359375 Z M 215.648438 220.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.855469 220.917969 C 217.855469 220.800781 217.761719 220.707031 217.644531 220.707031 C 217.527344 220.707031 217.433594 220.800781 217.433594 220.917969 C 217.433594 221.035156 217.527344 221.128906 217.644531 221.128906 C 217.761719 221.128906 217.855469 221.035156 217.855469 220.917969 Z M 217.855469 220.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.6875 221.675781 C 219.6875 221.558594 219.59375 221.464844 219.476562 221.464844 C 219.359375 221.464844 219.265625 221.558594 219.265625 221.675781 C 219.265625 221.792969 219.359375 221.886719 219.476562 221.886719 C 219.59375 221.886719 219.6875 221.792969 219.6875 221.675781 Z M 219.6875 221.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.695312 224.417969 C 223.695312 224.300781 223.601562 224.207031 223.484375 224.207031 C 223.367188 224.207031 223.273438 224.300781 223.273438 224.417969 C 223.273438 224.535156 223.367188 224.628906 223.484375 224.628906 C 223.601562 224.628906 223.695312 224.535156 223.695312 224.417969 Z M 223.695312 224.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 222.695312 226.285156 C 222.695312 226.167969 222.601562 226.074219 222.484375 226.074219 C 222.367188 226.074219 222.273438 226.167969 222.273438 226.285156 C 222.273438 226.402344 222.367188 226.496094 222.484375 226.496094 C 222.601562 226.496094 222.695312 226.402344 222.695312 226.285156 Z M 222.695312 226.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.804688 223.421875 C 224.804688 223.304688 224.710938 223.210938 224.59375 223.210938 C 224.476562 223.210938 224.382812 223.304688 224.382812 223.421875 C 224.382812 223.539062 224.476562 223.632812 224.59375 223.632812 C 224.710938 223.632812 224.804688 223.539062 224.804688 223.421875 Z M 224.804688 223.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.804688 223.289062 C 225.804688 223.171875 225.710938 223.078125 225.59375 223.078125 C 225.476562 223.078125 225.382812 223.171875 225.382812 223.289062 C 225.382812 223.40625 225.476562 223.5 225.59375 223.5 C 225.710938 223.5 225.804688 223.40625 225.804688 223.289062 Z M 225.804688 223.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.925781 224.402344 C 228.925781 224.285156 228.832031 224.191406 228.714844 224.191406 C 228.597656 224.191406 228.503906 224.285156 228.503906 224.402344 C 228.503906 224.519531 228.597656 224.613281 228.714844 224.613281 C 228.832031 224.613281 228.925781 224.519531 228.925781 224.402344 Z M 228.925781 224.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.914062 223.5 C 230.914062 223.382812 230.820312 223.289062 230.703125 223.289062 C 230.585938 223.289062 230.492188 223.382812 230.492188 223.5 C 230.492188 223.617188 230.585938 223.710938 230.703125 223.710938 C 230.820312 223.710938 230.914062 223.617188 230.914062 223.5 Z M 230.914062 223.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.617188 226.285156 C 232.617188 226.167969 232.523438 226.074219 232.40625 226.074219 C 232.289062 226.074219 232.195312 226.167969 232.195312 226.285156 C 232.195312 226.402344 232.289062 226.496094 232.40625 226.496094 C 232.523438 226.496094 232.617188 226.402344 232.617188 226.285156 Z M 232.617188 226.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.765625 226.128906 C 231.765625 226.011719 231.671875 225.917969 231.554688 225.917969 C 231.4375 225.917969 231.34375 226.011719 231.34375 226.128906 C 231.34375 226.246094 231.4375 226.339844 231.554688 226.339844 C 231.671875 226.339844 231.765625 226.246094 231.765625 226.128906 Z M 231.765625 226.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.421875 225.519531 C 231.421875 225.402344 231.328125 225.308594 231.210938 225.308594 C 231.09375 225.308594 231 225.402344 231 225.519531 C 231 225.636719 231.09375 225.730469 231.210938 225.730469 C 231.328125 225.730469 231.421875 225.636719 231.421875 225.519531 Z M 231.421875 225.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.816406 223.957031 C 229.816406 223.839844 229.722656 223.746094 229.605469 223.746094 C 229.488281 223.746094 229.394531 223.839844 229.394531 223.957031 C 229.394531 224.074219 229.488281 224.167969 229.605469 224.167969 C 229.722656 224.167969 229.816406 224.074219 229.816406 223.957031 Z M 229.816406 223.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.484375 220.277344 C 231.484375 220.160156 231.390625 220.066406 231.273438 220.066406 C 231.15625 220.066406 231.0625 220.160156 231.0625 220.277344 C 231.0625 220.394531 231.15625 220.488281 231.273438 220.488281 C 231.390625 220.488281 231.484375 220.394531 231.484375 220.277344 Z M 231.484375 220.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.5 221.535156 C 230.5 221.417969 230.40625 221.324219 230.289062 221.324219 C 230.171875 221.324219 230.078125 221.417969 230.078125 221.535156 C 230.078125 221.652344 230.171875 221.746094 230.289062 221.746094 C 230.40625 221.746094 230.5 221.652344 230.5 221.535156 Z M 230.5 221.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.695312 224.121094 C 230.695312 224.003906 230.601562 223.910156 230.484375 223.910156 C 230.367188 223.910156 230.273438 224.003906 230.273438 224.121094 C 230.273438 224.238281 230.367188 224.332031 230.484375 224.332031 C 230.601562 224.332031 230.695312 224.238281 230.695312 224.121094 Z M 230.695312 224.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.328125 222.898438 C 230.328125 222.78125 230.234375 222.6875 230.117188 222.6875 C 230 222.6875 229.90625 222.78125 229.90625 222.898438 C 229.90625 223.015625 230 223.109375 230.117188 223.109375 C 230.234375 223.109375 230.328125 223.015625 230.328125 222.898438 Z M 230.328125 222.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.234375 222.59375 C 232.234375 222.476562 232.140625 222.382812 232.023438 222.382812 C 231.90625 222.382812 231.8125 222.476562 231.8125 222.59375 C 231.8125 222.710938 231.90625 222.804688 232.023438 222.804688 C 232.140625 222.804688 232.234375 222.710938 232.234375 222.59375 Z M 232.234375 222.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.046875 223.871094 C 231.046875 223.753906 230.953125 223.660156 230.835938 223.660156 C 230.71875 223.660156 230.625 223.753906 230.625 223.871094 C 230.625 223.988281 230.71875 224.082031 230.835938 224.082031 C 230.953125 224.082031 231.046875 223.988281 231.046875 223.871094 Z M 231.046875 223.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.0625 225.855469 C 234.0625 225.738281 233.96875 225.644531 233.851562 225.644531 C 233.734375 225.644531 233.640625 225.738281 233.640625 225.855469 C 233.640625 225.972656 233.734375 226.066406 233.851562 226.066406 C 233.96875 226.066406 234.0625 225.972656 234.0625 225.855469 Z M 234.0625 225.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.132812 224.027344 C 233.132812 223.910156 233.039062 223.816406 232.921875 223.816406 C 232.804688 223.816406 232.710938 223.910156 232.710938 224.027344 C 232.710938 224.144531 232.804688 224.238281 232.921875 224.238281 C 233.039062 224.238281 233.132812 224.144531 233.132812 224.027344 Z M 233.132812 224.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.839844 225.730469 C 237.839844 225.613281 237.746094 225.519531 237.628906 225.519531 C 237.511719 225.519531 237.417969 225.613281 237.417969 225.730469 C 237.417969 225.847656 237.511719 225.941406 237.628906 225.941406 C 237.746094 225.941406 237.839844 225.847656 237.839844 225.730469 Z M 237.839844 225.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.371094 228.371094 C 239.371094 228.253906 239.277344 228.160156 239.160156 228.160156 C 239.042969 228.160156 238.949219 228.253906 238.949219 228.371094 C 238.949219 228.488281 239.042969 228.582031 239.160156 228.582031 C 239.277344 228.582031 239.371094 228.488281 239.371094 228.371094 Z M 239.371094 228.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.261719 224.410156 C 239.261719 224.292969 239.167969 224.199219 239.050781 224.199219 C 238.933594 224.199219 238.839844 224.292969 238.839844 224.410156 C 238.839844 224.527344 238.933594 224.621094 239.050781 224.621094 C 239.167969 224.621094 239.261719 224.527344 239.261719 224.410156 Z M 239.261719 224.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.019531 220.429688 C 237.019531 220.3125 236.925781 220.21875 236.808594 220.21875 C 236.691406 220.21875 236.597656 220.3125 236.597656 220.429688 C 236.597656 220.546875 236.691406 220.640625 236.808594 220.640625 C 236.925781 220.640625 237.019531 220.546875 237.019531 220.429688 Z M 237.019531 220.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.421875 221.683594 C 238.421875 221.566406 238.328125 221.472656 238.210938 221.472656 C 238.09375 221.472656 238 221.566406 238 221.683594 C 238 221.800781 238.09375 221.894531 238.210938 221.894531 C 238.328125 221.894531 238.421875 221.800781 238.421875 221.683594 Z M 238.421875 221.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.121094 222.894531 C 240.121094 222.777344 240.027344 222.683594 239.910156 222.683594 C 239.792969 222.683594 239.699219 222.777344 239.699219 222.894531 C 239.699219 223.011719 239.792969 223.105469 239.910156 223.105469 C 240.027344 223.105469 240.121094 223.011719 240.121094 222.894531 Z M 240.121094 222.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.027344 222.160156 C 240.027344 222.042969 239.933594 221.949219 239.816406 221.949219 C 239.699219 221.949219 239.605469 222.042969 239.605469 222.160156 C 239.605469 222.277344 239.699219 222.371094 239.816406 222.371094 C 239.933594 222.371094 240.027344 222.277344 240.027344 222.160156 Z M 240.027344 222.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.121094 221.234375 C 242.121094 221.117188 242.027344 221.023438 241.910156 221.023438 C 241.792969 221.023438 241.699219 221.117188 241.699219 221.234375 C 241.699219 221.351562 241.792969 221.445312 241.910156 221.445312 C 242.027344 221.445312 242.121094 221.351562 242.121094 221.234375 Z M 242.121094 221.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.25 219.382812 C 240.25 219.265625 240.15625 219.171875 240.039062 219.171875 C 239.921875 219.171875 239.828125 219.265625 239.828125 219.382812 C 239.828125 219.5 239.921875 219.59375 240.039062 219.59375 C 240.15625 219.59375 240.25 219.5 240.25 219.382812 Z M 240.25 219.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.726562 219.511719 C 235.726562 219.394531 235.632812 219.300781 235.515625 219.300781 C 235.398438 219.300781 235.304688 219.394531 235.304688 219.511719 C 235.304688 219.628906 235.398438 219.722656 235.515625 219.722656 C 235.632812 219.722656 235.726562 219.628906 235.726562 219.511719 Z M 235.726562 219.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.585938 218.910156 C 234.585938 218.792969 234.492188 218.699219 234.375 218.699219 C 234.257812 218.699219 234.164062 218.792969 234.164062 218.910156 C 234.164062 219.027344 234.257812 219.121094 234.375 219.121094 C 234.492188 219.121094 234.585938 219.027344 234.585938 218.910156 Z M 234.585938 218.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.984375 219.011719 C 236.984375 218.894531 236.890625 218.800781 236.773438 218.800781 C 236.65625 218.800781 236.5625 218.894531 236.5625 219.011719 C 236.5625 219.128906 236.65625 219.222656 236.773438 219.222656 C 236.890625 219.222656 236.984375 219.128906 236.984375 219.011719 Z M 236.984375 219.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.351562 219.097656 C 237.351562 218.980469 237.257812 218.886719 237.140625 218.886719 C 237.023438 218.886719 236.929688 218.980469 236.929688 219.097656 C 236.929688 219.214844 237.023438 219.308594 237.140625 219.308594 C 237.257812 219.308594 237.351562 219.214844 237.351562 219.097656 Z M 237.351562 219.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.925781 220.976562 C 241.925781 220.859375 241.832031 220.765625 241.714844 220.765625 C 241.597656 220.765625 241.503906 220.859375 241.503906 220.976562 C 241.503906 221.09375 241.597656 221.1875 241.714844 221.1875 C 241.832031 221.1875 241.925781 221.09375 241.925781 220.976562 Z M 241.925781 220.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.03125 220.972656 C 246.03125 220.855469 245.9375 220.761719 245.820312 220.761719 C 245.703125 220.761719 245.609375 220.855469 245.609375 220.972656 C 245.609375 221.089844 245.703125 221.183594 245.820312 221.183594 C 245.9375 221.183594 246.03125 221.089844 246.03125 220.972656 Z M 246.03125 220.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.527344 222.492188 C 243.527344 222.375 243.433594 222.28125 243.316406 222.28125 C 243.199219 222.28125 243.105469 222.375 243.105469 222.492188 C 243.105469 222.609375 243.199219 222.703125 243.316406 222.703125 C 243.433594 222.703125 243.527344 222.609375 243.527344 222.492188 Z M 243.527344 222.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.359375 223.648438 C 243.359375 223.53125 243.265625 223.4375 243.148438 223.4375 C 243.03125 223.4375 242.9375 223.53125 242.9375 223.648438 C 242.9375 223.765625 243.03125 223.859375 243.148438 223.859375 C 243.265625 223.859375 243.359375 223.765625 243.359375 223.648438 Z M 243.359375 223.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.082031 226.898438 C 245.082031 226.78125 244.988281 226.6875 244.871094 226.6875 C 244.753906 226.6875 244.660156 226.78125 244.660156 226.898438 C 244.660156 227.015625 244.753906 227.109375 244.871094 227.109375 C 244.988281 227.109375 245.082031 227.015625 245.082031 226.898438 Z M 245.082031 226.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.992188 224.304688 C 243.992188 224.1875 243.898438 224.09375 243.78125 224.09375 C 243.664062 224.09375 243.570312 224.1875 243.570312 224.304688 C 243.570312 224.421875 243.664062 224.515625 243.78125 224.515625 C 243.898438 224.515625 243.992188 224.421875 243.992188 224.304688 Z M 243.992188 224.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.835938 224.578125 C 243.835938 224.460938 243.742188 224.367188 243.625 224.367188 C 243.507812 224.367188 243.414062 224.460938 243.414062 224.578125 C 243.414062 224.695312 243.507812 224.789062 243.625 224.789062 C 243.742188 224.789062 243.835938 224.695312 243.835938 224.578125 Z M 243.835938 224.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.273438 224.382812 C 242.273438 224.265625 242.179688 224.171875 242.0625 224.171875 C 241.945312 224.171875 241.851562 224.265625 241.851562 224.382812 C 241.851562 224.5 241.945312 224.59375 242.0625 224.59375 C 242.179688 224.59375 242.273438 224.5 242.273438 224.382812 Z M 242.273438 224.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.210938 223.609375 C 243.210938 223.492188 243.117188 223.398438 243 223.398438 C 242.882812 223.398438 242.789062 223.492188 242.789062 223.609375 C 242.789062 223.726562 242.882812 223.820312 243 223.820312 C 243.117188 223.820312 243.210938 223.726562 243.210938 223.609375 Z M 243.210938 223.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.875 221.667969 C 244.875 221.550781 244.78125 221.457031 244.664062 221.457031 C 244.546875 221.457031 244.453125 221.550781 244.453125 221.667969 C 244.453125 221.785156 244.546875 221.878906 244.664062 221.878906 C 244.78125 221.878906 244.875 221.785156 244.875 221.667969 Z M 244.875 221.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.296875 222.832031 C 242.296875 222.714844 242.203125 222.621094 242.085938 222.621094 C 241.96875 222.621094 241.875 222.714844 241.875 222.832031 C 241.875 222.949219 241.96875 223.042969 242.085938 223.042969 C 242.203125 223.042969 242.296875 222.949219 242.296875 222.832031 Z M 242.296875 222.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.230469 221.351562 C 243.230469 221.234375 243.136719 221.140625 243.019531 221.140625 C 242.902344 221.140625 242.808594 221.234375 242.808594 221.351562 C 242.808594 221.46875 242.902344 221.5625 243.019531 221.5625 C 243.136719 221.5625 243.230469 221.46875 243.230469 221.351562 Z M 243.230469 221.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.058594 222.828125 C 245.058594 222.710938 244.964844 222.617188 244.847656 222.617188 C 244.730469 222.617188 244.636719 222.710938 244.636719 222.828125 C 244.636719 222.945312 244.730469 223.039062 244.847656 223.039062 C 244.964844 223.039062 245.058594 222.945312 245.058594 222.828125 Z M 245.058594 222.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.253906 219.609375 C 243.253906 219.492188 243.160156 219.398438 243.042969 219.398438 C 242.925781 219.398438 242.832031 219.492188 242.832031 219.609375 C 242.832031 219.726562 242.925781 219.820312 243.042969 219.820312 C 243.160156 219.820312 243.253906 219.726562 243.253906 219.609375 Z M 243.253906 219.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.5 217.457031 C 243.5 217.339844 243.40625 217.246094 243.289062 217.246094 C 243.171875 217.246094 243.078125 217.339844 243.078125 217.457031 C 243.078125 217.574219 243.171875 217.667969 243.289062 217.667969 C 243.40625 217.667969 243.5 217.574219 243.5 217.457031 Z M 243.5 217.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.242188 218.445312 C 245.242188 218.328125 245.148438 218.234375 245.03125 218.234375 C 244.914062 218.234375 244.820312 218.328125 244.820312 218.445312 C 244.820312 218.5625 244.914062 218.65625 245.03125 218.65625 C 245.148438 218.65625 245.242188 218.5625 245.242188 218.445312 Z M 245.242188 218.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.402344 217.921875 C 241.402344 217.804688 241.308594 217.710938 241.191406 217.710938 C 241.074219 217.710938 240.980469 217.804688 240.980469 217.921875 C 240.980469 218.039062 241.074219 218.132812 241.191406 218.132812 C 241.308594 218.132812 241.402344 218.039062 241.402344 217.921875 Z M 241.402344 217.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.753906 220.0625 C 244.753906 219.945312 244.660156 219.851562 244.542969 219.851562 C 244.425781 219.851562 244.332031 219.945312 244.332031 220.0625 C 244.332031 220.179688 244.425781 220.273438 244.542969 220.273438 C 244.660156 220.273438 244.753906 220.179688 244.753906 220.0625 Z M 244.753906 220.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.015625 219.519531 C 247.015625 219.402344 246.921875 219.308594 246.804688 219.308594 C 246.6875 219.308594 246.59375 219.402344 246.59375 219.519531 C 246.59375 219.636719 246.6875 219.730469 246.804688 219.730469 C 246.921875 219.730469 247.015625 219.636719 247.015625 219.519531 Z M 247.015625 219.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.851562 222.640625 C 245.851562 222.523438 245.757812 222.429688 245.640625 222.429688 C 245.523438 222.429688 245.429688 222.523438 245.429688 222.640625 C 245.429688 222.757812 245.523438 222.851562 245.640625 222.851562 C 245.757812 222.851562 245.851562 222.757812 245.851562 222.640625 Z M 245.851562 222.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.304688 225.265625 C 248.304688 225.148438 248.210938 225.054688 248.09375 225.054688 C 247.976562 225.054688 247.882812 225.148438 247.882812 225.265625 C 247.882812 225.382812 247.976562 225.476562 248.09375 225.476562 C 248.210938 225.476562 248.304688 225.382812 248.304688 225.265625 Z M 248.304688 225.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.445312 228.097656 C 245.445312 227.980469 245.351562 227.886719 245.234375 227.886719 C 245.117188 227.886719 245.023438 227.980469 245.023438 228.097656 C 245.023438 228.214844 245.117188 228.308594 245.234375 228.308594 C 245.351562 228.308594 245.445312 228.214844 245.445312 228.097656 Z M 245.445312 228.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.738281 227.429688 C 240.738281 227.3125 240.644531 227.21875 240.527344 227.21875 C 240.410156 227.21875 240.316406 227.3125 240.316406 227.429688 C 240.316406 227.546875 240.410156 227.640625 240.527344 227.640625 C 240.644531 227.640625 240.738281 227.546875 240.738281 227.429688 Z M 240.738281 227.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.535156 225.195312 C 240.535156 225.078125 240.441406 224.984375 240.324219 224.984375 C 240.207031 224.984375 240.113281 225.078125 240.113281 225.195312 C 240.113281 225.3125 240.207031 225.40625 240.324219 225.40625 C 240.441406 225.40625 240.535156 225.3125 240.535156 225.195312 Z M 240.535156 225.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.238281 225.617188 C 236.238281 225.5 236.144531 225.40625 236.027344 225.40625 C 235.910156 225.40625 235.816406 225.5 235.816406 225.617188 C 235.816406 225.734375 235.910156 225.828125 236.027344 225.828125 C 236.144531 225.828125 236.238281 225.734375 236.238281 225.617188 Z M 236.238281 225.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.121094 226.617188 C 237.121094 226.5 237.027344 226.40625 236.910156 226.40625 C 236.792969 226.40625 236.699219 226.5 236.699219 226.617188 C 236.699219 226.734375 236.792969 226.828125 236.910156 226.828125 C 237.027344 226.828125 237.121094 226.734375 237.121094 226.617188 Z M 237.121094 226.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.152344 224.679688 C 239.152344 224.5625 239.058594 224.46875 238.941406 224.46875 C 238.824219 224.46875 238.730469 224.5625 238.730469 224.679688 C 238.730469 224.796875 238.824219 224.890625 238.941406 224.890625 C 239.058594 224.890625 239.152344 224.796875 239.152344 224.679688 Z M 239.152344 224.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.507812 223.6875 C 240.507812 223.570312 240.414062 223.476562 240.296875 223.476562 C 240.179688 223.476562 240.085938 223.570312 240.085938 223.6875 C 240.085938 223.804688 240.179688 223.898438 240.296875 223.898438 C 240.414062 223.898438 240.507812 223.804688 240.507812 223.6875 Z M 240.507812 223.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.070312 224.039062 C 241.070312 223.921875 240.976562 223.828125 240.859375 223.828125 C 240.742188 223.828125 240.648438 223.921875 240.648438 224.039062 C 240.648438 224.15625 240.742188 224.25 240.859375 224.25 C 240.976562 224.25 241.070312 224.15625 241.070312 224.039062 Z M 241.070312 224.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.878906 224.425781 C 238.878906 224.308594 238.785156 224.214844 238.667969 224.214844 C 238.550781 224.214844 238.457031 224.308594 238.457031 224.425781 C 238.457031 224.542969 238.550781 224.636719 238.667969 224.636719 C 238.785156 224.636719 238.878906 224.542969 238.878906 224.425781 Z M 238.878906 224.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.21875 223.136719 C 240.21875 223.019531 240.125 222.925781 240.007812 222.925781 C 239.890625 222.925781 239.796875 223.019531 239.796875 223.136719 C 239.796875 223.253906 239.890625 223.347656 240.007812 223.347656 C 240.125 223.347656 240.21875 223.253906 240.21875 223.136719 Z M 240.21875 223.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.5625 223.78125 C 240.5625 223.664062 240.46875 223.570312 240.351562 223.570312 C 240.234375 223.570312 240.140625 223.664062 240.140625 223.78125 C 240.140625 223.898438 240.234375 223.992188 240.351562 223.992188 C 240.46875 223.992188 240.5625 223.898438 240.5625 223.78125 Z M 240.5625 223.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.523438 224.808594 C 236.523438 224.691406 236.429688 224.597656 236.3125 224.597656 C 236.195312 224.597656 236.101562 224.691406 236.101562 224.808594 C 236.101562 224.925781 236.195312 225.019531 236.3125 225.019531 C 236.429688 225.019531 236.523438 224.925781 236.523438 224.808594 Z M 236.523438 224.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.414062 225.882812 C 237.414062 225.765625 237.320312 225.671875 237.203125 225.671875 C 237.085938 225.671875 236.992188 225.765625 236.992188 225.882812 C 236.992188 226 237.085938 226.09375 237.203125 226.09375 C 237.320312 226.09375 237.414062 226 237.414062 225.882812 Z M 237.414062 225.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.742188 225.019531 C 237.742188 224.902344 237.648438 224.808594 237.53125 224.808594 C 237.414062 224.808594 237.320312 224.902344 237.320312 225.019531 C 237.320312 225.136719 237.414062 225.230469 237.53125 225.230469 C 237.648438 225.230469 237.742188 225.136719 237.742188 225.019531 Z M 237.742188 225.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.320312 220.085938 C 239.320312 219.96875 239.226562 219.875 239.109375 219.875 C 238.992188 219.875 238.898438 219.96875 238.898438 220.085938 C 238.898438 220.203125 238.992188 220.296875 239.109375 220.296875 C 239.226562 220.296875 239.320312 220.203125 239.320312 220.085938 Z M 239.320312 220.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.738281 223.3125 C 239.738281 223.195312 239.644531 223.101562 239.527344 223.101562 C 239.410156 223.101562 239.316406 223.195312 239.316406 223.3125 C 239.316406 223.429688 239.410156 223.523438 239.527344 223.523438 C 239.644531 223.523438 239.738281 223.429688 239.738281 223.3125 Z M 239.738281 223.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.550781 227.03125 C 239.550781 226.914062 239.457031 226.820312 239.339844 226.820312 C 239.222656 226.820312 239.128906 226.914062 239.128906 227.03125 C 239.128906 227.148438 239.222656 227.242188 239.339844 227.242188 C 239.457031 227.242188 239.550781 227.148438 239.550781 227.03125 Z M 239.550781 227.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.484375 228.222656 C 241.484375 228.105469 241.390625 228.011719 241.273438 228.011719 C 241.15625 228.011719 241.0625 228.105469 241.0625 228.222656 C 241.0625 228.339844 241.15625 228.433594 241.273438 228.433594 C 241.390625 228.433594 241.484375 228.339844 241.484375 228.222656 Z M 241.484375 228.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.78125 229.347656 C 246.78125 229.230469 246.6875 229.136719 246.570312 229.136719 C 246.453125 229.136719 246.359375 229.230469 246.359375 229.347656 C 246.359375 229.464844 246.453125 229.558594 246.570312 229.558594 C 246.6875 229.558594 246.78125 229.464844 246.78125 229.347656 Z M 246.78125 229.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.796875 227.804688 C 247.796875 227.6875 247.703125 227.59375 247.585938 227.59375 C 247.46875 227.59375 247.375 227.6875 247.375 227.804688 C 247.375 227.921875 247.46875 228.015625 247.585938 228.015625 C 247.703125 228.015625 247.796875 227.921875 247.796875 227.804688 Z M 247.796875 227.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.933594 226.570312 C 245.933594 226.453125 245.839844 226.359375 245.722656 226.359375 C 245.605469 226.359375 245.511719 226.453125 245.511719 226.570312 C 245.511719 226.6875 245.605469 226.78125 245.722656 226.78125 C 245.839844 226.78125 245.933594 226.6875 245.933594 226.570312 Z M 245.933594 226.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.691406 227.554688 C 242.691406 227.4375 242.597656 227.34375 242.480469 227.34375 C 242.363281 227.34375 242.269531 227.4375 242.269531 227.554688 C 242.269531 227.671875 242.363281 227.765625 242.480469 227.765625 C 242.597656 227.765625 242.691406 227.671875 242.691406 227.554688 Z M 242.691406 227.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.246094 230.132812 C 244.246094 230.015625 244.152344 229.921875 244.035156 229.921875 C 243.917969 229.921875 243.824219 230.015625 243.824219 230.132812 C 243.824219 230.25 243.917969 230.34375 244.035156 230.34375 C 244.152344 230.34375 244.246094 230.25 244.246094 230.132812 Z M 244.246094 230.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.3125 232.125 C 242.3125 232.007812 242.21875 231.914062 242.101562 231.914062 C 241.984375 231.914062 241.890625 232.007812 241.890625 232.125 C 241.890625 232.242188 241.984375 232.335938 242.101562 232.335938 C 242.21875 232.335938 242.3125 232.242188 242.3125 232.125 Z M 242.3125 232.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.929688 235.886719 C 240.929688 235.769531 240.835938 235.675781 240.71875 235.675781 C 240.601562 235.675781 240.507812 235.769531 240.507812 235.886719 C 240.507812 236.003906 240.601562 236.097656 240.71875 236.097656 C 240.835938 236.097656 240.929688 236.003906 240.929688 235.886719 Z M 240.929688 235.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.519531 238.109375 C 236.519531 237.992188 236.425781 237.898438 236.308594 237.898438 C 236.191406 237.898438 236.097656 237.992188 236.097656 238.109375 C 236.097656 238.226562 236.191406 238.320312 236.308594 238.320312 C 236.425781 238.320312 236.519531 238.226562 236.519531 238.109375 Z M 236.519531 238.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.546875 239.683594 C 239.546875 239.566406 239.453125 239.472656 239.335938 239.472656 C 239.21875 239.472656 239.125 239.566406 239.125 239.683594 C 239.125 239.800781 239.21875 239.894531 239.335938 239.894531 C 239.453125 239.894531 239.546875 239.800781 239.546875 239.683594 Z M 239.546875 239.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.058594 239.628906 C 238.058594 239.511719 237.964844 239.417969 237.847656 239.417969 C 237.730469 239.417969 237.636719 239.511719 237.636719 239.628906 C 237.636719 239.746094 237.730469 239.839844 237.847656 239.839844 C 237.964844 239.839844 238.058594 239.746094 238.058594 239.628906 Z M 238.058594 239.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.308594 236.867188 C 234.308594 236.75 234.214844 236.65625 234.097656 236.65625 C 233.980469 236.65625 233.886719 236.75 233.886719 236.867188 C 233.886719 236.984375 233.980469 237.078125 234.097656 237.078125 C 234.214844 237.078125 234.308594 236.984375 234.308594 236.867188 Z M 234.308594 236.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.464844 234.804688 C 235.464844 234.6875 235.371094 234.59375 235.253906 234.59375 C 235.136719 234.59375 235.042969 234.6875 235.042969 234.804688 C 235.042969 234.921875 235.136719 235.015625 235.253906 235.015625 C 235.371094 235.015625 235.464844 234.921875 235.464844 234.804688 Z M 235.464844 234.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.957031 233.378906 C 235.957031 233.261719 235.863281 233.167969 235.746094 233.167969 C 235.628906 233.167969 235.535156 233.261719 235.535156 233.378906 C 235.535156 233.496094 235.628906 233.589844 235.746094 233.589844 C 235.863281 233.589844 235.957031 233.496094 235.957031 233.378906 Z M 235.957031 233.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.453125 234.195312 C 237.453125 234.078125 237.359375 233.984375 237.242188 233.984375 C 237.125 233.984375 237.03125 234.078125 237.03125 234.195312 C 237.03125 234.3125 237.125 234.40625 237.242188 234.40625 C 237.359375 234.40625 237.453125 234.3125 237.453125 234.195312 Z M 237.453125 234.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.683594 233.433594 C 237.683594 233.316406 237.589844 233.222656 237.472656 233.222656 C 237.355469 233.222656 237.261719 233.316406 237.261719 233.433594 C 237.261719 233.550781 237.355469 233.644531 237.472656 233.644531 C 237.589844 233.644531 237.683594 233.550781 237.683594 233.433594 Z M 237.683594 233.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.335938 234.519531 C 235.335938 234.402344 235.242188 234.308594 235.125 234.308594 C 235.007812 234.308594 234.914062 234.402344 234.914062 234.519531 C 234.914062 234.636719 235.007812 234.730469 235.125 234.730469 C 235.242188 234.730469 235.335938 234.636719 235.335938 234.519531 Z M 235.335938 234.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.667969 235.109375 C 236.667969 234.992188 236.574219 234.898438 236.457031 234.898438 C 236.339844 234.898438 236.246094 234.992188 236.246094 235.109375 C 236.246094 235.226562 236.339844 235.320312 236.457031 235.320312 C 236.574219 235.320312 236.667969 235.226562 236.667969 235.109375 Z M 236.667969 235.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.554688 237.878906 C 236.554688 237.761719 236.460938 237.667969 236.34375 237.667969 C 236.226562 237.667969 236.132812 237.761719 236.132812 237.878906 C 236.132812 237.996094 236.226562 238.089844 236.34375 238.089844 C 236.460938 238.089844 236.554688 237.996094 236.554688 237.878906 Z M 236.554688 237.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.453125 236.277344 C 235.453125 236.160156 235.359375 236.066406 235.242188 236.066406 C 235.125 236.066406 235.03125 236.160156 235.03125 236.277344 C 235.03125 236.394531 235.125 236.488281 235.242188 236.488281 C 235.359375 236.488281 235.453125 236.394531 235.453125 236.277344 Z M 235.453125 236.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.894531 235.679688 C 233.894531 235.5625 233.800781 235.46875 233.683594 235.46875 C 233.566406 235.46875 233.472656 235.5625 233.472656 235.679688 C 233.472656 235.796875 233.566406 235.890625 233.683594 235.890625 C 233.800781 235.890625 233.894531 235.796875 233.894531 235.679688 Z M 233.894531 235.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.03125 237.109375 C 232.03125 236.992188 231.9375 236.898438 231.820312 236.898438 C 231.703125 236.898438 231.609375 236.992188 231.609375 237.109375 C 231.609375 237.226562 231.703125 237.320312 231.820312 237.320312 C 231.9375 237.320312 232.03125 237.226562 232.03125 237.109375 Z M 232.03125 237.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.074219 238.632812 C 231.074219 238.515625 230.980469 238.421875 230.863281 238.421875 C 230.746094 238.421875 230.652344 238.515625 230.652344 238.632812 C 230.652344 238.75 230.746094 238.84375 230.863281 238.84375 C 230.980469 238.84375 231.074219 238.75 231.074219 238.632812 Z M 231.074219 238.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.042969 241.636719 C 231.042969 241.519531 230.949219 241.425781 230.832031 241.425781 C 230.714844 241.425781 230.621094 241.519531 230.621094 241.636719 C 230.621094 241.753906 230.714844 241.847656 230.832031 241.847656 C 230.949219 241.847656 231.042969 241.753906 231.042969 241.636719 Z M 231.042969 241.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.890625 243.714844 C 229.890625 243.597656 229.796875 243.503906 229.679688 243.503906 C 229.5625 243.503906 229.46875 243.597656 229.46875 243.714844 C 229.46875 243.832031 229.5625 243.925781 229.679688 243.925781 C 229.796875 243.925781 229.890625 243.832031 229.890625 243.714844 Z M 229.890625 243.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.785156 244.574219 C 228.785156 244.457031 228.691406 244.363281 228.574219 244.363281 C 228.457031 244.363281 228.363281 244.457031 228.363281 244.574219 C 228.363281 244.691406 228.457031 244.785156 228.574219 244.785156 C 228.691406 244.785156 228.785156 244.691406 228.785156 244.574219 Z M 228.785156 244.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.070312 245.949219 C 228.070312 245.832031 227.976562 245.738281 227.859375 245.738281 C 227.742188 245.738281 227.648438 245.832031 227.648438 245.949219 C 227.648438 246.066406 227.742188 246.160156 227.859375 246.160156 C 227.976562 246.160156 228.070312 246.066406 228.070312 245.949219 Z M 228.070312 245.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.625 246.285156 C 228.625 246.167969 228.53125 246.074219 228.414062 246.074219 C 228.296875 246.074219 228.203125 246.167969 228.203125 246.285156 C 228.203125 246.402344 228.296875 246.496094 228.414062 246.496094 C 228.53125 246.496094 228.625 246.402344 228.625 246.285156 Z M 228.625 246.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.589844 246.121094 C 227.589844 246.003906 227.496094 245.910156 227.378906 245.910156 C 227.261719 245.910156 227.167969 246.003906 227.167969 246.121094 C 227.167969 246.238281 227.261719 246.332031 227.378906 246.332031 C 227.496094 246.332031 227.589844 246.238281 227.589844 246.121094 Z M 227.589844 246.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.75 247.699219 C 231.75 247.582031 231.65625 247.488281 231.539062 247.488281 C 231.421875 247.488281 231.328125 247.582031 231.328125 247.699219 C 231.328125 247.816406 231.421875 247.910156 231.539062 247.910156 C 231.65625 247.910156 231.75 247.816406 231.75 247.699219 Z M 231.75 247.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.121094 246.378906 C 230.121094 246.261719 230.027344 246.167969 229.910156 246.167969 C 229.792969 246.167969 229.699219 246.261719 229.699219 246.378906 C 229.699219 246.496094 229.792969 246.589844 229.910156 246.589844 C 230.027344 246.589844 230.121094 246.496094 230.121094 246.378906 Z M 230.121094 246.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.101562 248.078125 C 232.101562 247.960938 232.007812 247.867188 231.890625 247.867188 C 231.773438 247.867188 231.679688 247.960938 231.679688 248.078125 C 231.679688 248.195312 231.773438 248.289062 231.890625 248.289062 C 232.007812 248.289062 232.101562 248.195312 232.101562 248.078125 Z M 232.101562 248.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.949219 245.117188 C 233.949219 245 233.855469 244.90625 233.738281 244.90625 C 233.621094 244.90625 233.527344 245 233.527344 245.117188 C 233.527344 245.234375 233.621094 245.328125 233.738281 245.328125 C 233.855469 245.328125 233.949219 245.234375 233.949219 245.117188 Z M 233.949219 245.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.097656 243.363281 C 238.097656 243.246094 238.003906 243.152344 237.886719 243.152344 C 237.769531 243.152344 237.675781 243.246094 237.675781 243.363281 C 237.675781 243.480469 237.769531 243.574219 237.886719 243.574219 C 238.003906 243.574219 238.097656 243.480469 238.097656 243.363281 Z M 238.097656 243.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.53125 243.472656 C 238.53125 243.355469 238.4375 243.261719 238.320312 243.261719 C 238.203125 243.261719 238.109375 243.355469 238.109375 243.472656 C 238.109375 243.589844 238.203125 243.683594 238.320312 243.683594 C 238.4375 243.683594 238.53125 243.589844 238.53125 243.472656 Z M 238.53125 243.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.335938 244.78125 C 239.335938 244.664062 239.242188 244.570312 239.125 244.570312 C 239.007812 244.570312 238.914062 244.664062 238.914062 244.78125 C 238.914062 244.898438 239.007812 244.992188 239.125 244.992188 C 239.242188 244.992188 239.335938 244.898438 239.335938 244.78125 Z M 239.335938 244.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.269531 247.886719 C 241.269531 247.769531 241.175781 247.675781 241.058594 247.675781 C 240.941406 247.675781 240.847656 247.769531 240.847656 247.886719 C 240.847656 248.003906 240.941406 248.097656 241.058594 248.097656 C 241.175781 248.097656 241.269531 248.003906 241.269531 247.886719 Z M 241.269531 247.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.488281 246.691406 C 240.488281 246.574219 240.394531 246.480469 240.277344 246.480469 C 240.160156 246.480469 240.066406 246.574219 240.066406 246.691406 C 240.066406 246.808594 240.160156 246.902344 240.277344 246.902344 C 240.394531 246.902344 240.488281 246.808594 240.488281 246.691406 Z M 240.488281 246.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.855469 252.636719 C 242.855469 252.519531 242.761719 252.425781 242.644531 252.425781 C 242.527344 252.425781 242.433594 252.519531 242.433594 252.636719 C 242.433594 252.753906 242.527344 252.847656 242.644531 252.847656 C 242.761719 252.847656 242.855469 252.753906 242.855469 252.636719 Z M 242.855469 252.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.09375 252.71875 C 243.09375 252.601562 243 252.507812 242.882812 252.507812 C 242.765625 252.507812 242.671875 252.601562 242.671875 252.71875 C 242.671875 252.835938 242.765625 252.929688 242.882812 252.929688 C 243 252.929688 243.09375 252.835938 243.09375 252.71875 Z M 243.09375 252.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.753906 252.0625 C 249.753906 251.945312 249.660156 251.851562 249.542969 251.851562 C 249.425781 251.851562 249.332031 251.945312 249.332031 252.0625 C 249.332031 252.179688 249.425781 252.273438 249.542969 252.273438 C 249.660156 252.273438 249.753906 252.179688 249.753906 252.0625 Z M 249.753906 252.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.835938 255.191406 C 247.835938 255.074219 247.742188 254.980469 247.625 254.980469 C 247.507812 254.980469 247.414062 255.074219 247.414062 255.191406 C 247.414062 255.308594 247.507812 255.402344 247.625 255.402344 C 247.742188 255.402344 247.835938 255.308594 247.835938 255.191406 Z M 247.835938 255.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.785156 251.113281 C 248.785156 250.996094 248.691406 250.902344 248.574219 250.902344 C 248.457031 250.902344 248.363281 250.996094 248.363281 251.113281 C 248.363281 251.230469 248.457031 251.324219 248.574219 251.324219 C 248.691406 251.324219 248.785156 251.230469 248.785156 251.113281 Z M 248.785156 251.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.660156 250.347656 C 248.660156 250.230469 248.566406 250.136719 248.449219 250.136719 C 248.332031 250.136719 248.238281 250.230469 248.238281 250.347656 C 248.238281 250.464844 248.332031 250.558594 248.449219 250.558594 C 248.566406 250.558594 248.660156 250.464844 248.660156 250.347656 Z M 248.660156 250.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.765625 247.511719 C 250.765625 247.394531 250.671875 247.300781 250.554688 247.300781 C 250.4375 247.300781 250.34375 247.394531 250.34375 247.511719 C 250.34375 247.628906 250.4375 247.722656 250.554688 247.722656 C 250.671875 247.722656 250.765625 247.628906 250.765625 247.511719 Z M 250.765625 247.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.082031 247.339844 C 250.082031 247.222656 249.988281 247.128906 249.871094 247.128906 C 249.753906 247.128906 249.660156 247.222656 249.660156 247.339844 C 249.660156 247.457031 249.753906 247.550781 249.871094 247.550781 C 249.988281 247.550781 250.082031 247.457031 250.082031 247.339844 Z M 250.082031 247.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.570312 248.222656 C 250.570312 248.105469 250.476562 248.011719 250.359375 248.011719 C 250.242188 248.011719 250.148438 248.105469 250.148438 248.222656 C 250.148438 248.339844 250.242188 248.433594 250.359375 248.433594 C 250.476562 248.433594 250.570312 248.339844 250.570312 248.222656 Z M 250.570312 248.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.683594 244.503906 C 251.683594 244.386719 251.589844 244.292969 251.472656 244.292969 C 251.355469 244.292969 251.261719 244.386719 251.261719 244.503906 C 251.261719 244.621094 251.355469 244.714844 251.472656 244.714844 C 251.589844 244.714844 251.683594 244.621094 251.683594 244.503906 Z M 251.683594 244.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.503906 245.070312 C 248.503906 244.953125 248.410156 244.859375 248.292969 244.859375 C 248.175781 244.859375 248.082031 244.953125 248.082031 245.070312 C 248.082031 245.1875 248.175781 245.28125 248.292969 245.28125 C 248.410156 245.28125 248.503906 245.1875 248.503906 245.070312 Z M 248.503906 245.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.324219 245.003906 C 250.324219 244.886719 250.230469 244.792969 250.113281 244.792969 C 249.996094 244.792969 249.902344 244.886719 249.902344 245.003906 C 249.902344 245.121094 249.996094 245.214844 250.113281 245.214844 C 250.230469 245.214844 250.324219 245.121094 250.324219 245.003906 Z M 250.324219 245.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.105469 245.597656 C 252.105469 245.480469 252.011719 245.386719 251.894531 245.386719 C 251.777344 245.386719 251.683594 245.480469 251.683594 245.597656 C 251.683594 245.714844 251.777344 245.808594 251.894531 245.808594 C 252.011719 245.808594 252.105469 245.714844 252.105469 245.597656 Z M 252.105469 245.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.945312 244.335938 C 250.945312 244.21875 250.851562 244.125 250.734375 244.125 C 250.617188 244.125 250.523438 244.21875 250.523438 244.335938 C 250.523438 244.453125 250.617188 244.546875 250.734375 244.546875 C 250.851562 244.546875 250.945312 244.453125 250.945312 244.335938 Z M 250.945312 244.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.691406 243.84375 C 249.691406 243.726562 249.597656 243.632812 249.480469 243.632812 C 249.363281 243.632812 249.269531 243.726562 249.269531 243.84375 C 249.269531 243.960938 249.363281 244.054688 249.480469 244.054688 C 249.597656 244.054688 249.691406 243.960938 249.691406 243.84375 Z M 249.691406 243.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.007812 242.753906 C 249.007812 242.636719 248.914062 242.542969 248.796875 242.542969 C 248.679688 242.542969 248.585938 242.636719 248.585938 242.753906 C 248.585938 242.871094 248.679688 242.964844 248.796875 242.964844 C 248.914062 242.964844 249.007812 242.871094 249.007812 242.753906 Z M 249.007812 242.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.71875 246.023438 C 246.71875 245.90625 246.625 245.8125 246.507812 245.8125 C 246.390625 245.8125 246.296875 245.90625 246.296875 246.023438 C 246.296875 246.140625 246.390625 246.234375 246.507812 246.234375 C 246.625 246.234375 246.71875 246.140625 246.71875 246.023438 Z M 246.71875 246.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.894531 243.65625 C 244.894531 243.539062 244.800781 243.445312 244.683594 243.445312 C 244.566406 243.445312 244.472656 243.539062 244.472656 243.65625 C 244.472656 243.773438 244.566406 243.867188 244.683594 243.867188 C 244.800781 243.867188 244.894531 243.773438 244.894531 243.65625 Z M 244.894531 243.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.75 244.644531 C 242.75 244.527344 242.65625 244.433594 242.539062 244.433594 C 242.421875 244.433594 242.328125 244.527344 242.328125 244.644531 C 242.328125 244.761719 242.421875 244.855469 242.539062 244.855469 C 242.65625 244.855469 242.75 244.761719 242.75 244.644531 Z M 242.75 244.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.011719 245.65625 C 238.011719 245.539062 237.917969 245.445312 237.800781 245.445312 C 237.683594 245.445312 237.589844 245.539062 237.589844 245.65625 C 237.589844 245.773438 237.683594 245.867188 237.800781 245.867188 C 237.917969 245.867188 238.011719 245.773438 238.011719 245.65625 Z M 238.011719 245.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.59375 246.316406 C 238.59375 246.199219 238.5 246.105469 238.382812 246.105469 C 238.265625 246.105469 238.171875 246.199219 238.171875 246.316406 C 238.171875 246.433594 238.265625 246.527344 238.382812 246.527344 C 238.5 246.527344 238.59375 246.433594 238.59375 246.316406 Z M 238.59375 246.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.6875 247.363281 C 241.6875 247.246094 241.59375 247.152344 241.476562 247.152344 C 241.359375 247.152344 241.265625 247.246094 241.265625 247.363281 C 241.265625 247.480469 241.359375 247.574219 241.476562 247.574219 C 241.59375 247.574219 241.6875 247.480469 241.6875 247.363281 Z M 241.6875 247.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.65625 250.082031 C 242.65625 249.964844 242.5625 249.871094 242.445312 249.871094 C 242.328125 249.871094 242.234375 249.964844 242.234375 250.082031 C 242.234375 250.199219 242.328125 250.292969 242.445312 250.292969 C 242.5625 250.292969 242.65625 250.199219 242.65625 250.082031 Z M 242.65625 250.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.84375 250.226562 C 241.84375 250.109375 241.75 250.015625 241.632812 250.015625 C 241.515625 250.015625 241.421875 250.109375 241.421875 250.226562 C 241.421875 250.34375 241.515625 250.4375 241.632812 250.4375 C 241.75 250.4375 241.84375 250.34375 241.84375 250.226562 Z M 241.84375 250.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.304688 245.773438 C 242.304688 245.65625 242.210938 245.5625 242.09375 245.5625 C 241.976562 245.5625 241.882812 245.65625 241.882812 245.773438 C 241.882812 245.890625 241.976562 245.984375 242.09375 245.984375 C 242.210938 245.984375 242.304688 245.890625 242.304688 245.773438 Z M 242.304688 245.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.332031 243.101562 C 238.332031 242.984375 238.238281 242.890625 238.121094 242.890625 C 238.003906 242.890625 237.910156 242.984375 237.910156 243.101562 C 237.910156 243.21875 238.003906 243.3125 238.121094 243.3125 C 238.238281 243.3125 238.332031 243.21875 238.332031 243.101562 Z M 238.332031 243.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.839844 244.097656 C 241.839844 243.980469 241.746094 243.886719 241.628906 243.886719 C 241.511719 243.886719 241.417969 243.980469 241.417969 244.097656 C 241.417969 244.214844 241.511719 244.308594 241.628906 244.308594 C 241.746094 244.308594 241.839844 244.214844 241.839844 244.097656 Z M 241.839844 244.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.039062 236.648438 C 238.039062 236.53125 237.945312 236.4375 237.828125 236.4375 C 237.710938 236.4375 237.617188 236.53125 237.617188 236.648438 C 237.617188 236.765625 237.710938 236.859375 237.828125 236.859375 C 237.945312 236.859375 238.039062 236.765625 238.039062 236.648438 Z M 238.039062 236.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.300781 236.855469 C 240.300781 236.738281 240.207031 236.644531 240.089844 236.644531 C 239.972656 236.644531 239.878906 236.738281 239.878906 236.855469 C 239.878906 236.972656 239.972656 237.066406 240.089844 237.066406 C 240.207031 237.066406 240.300781 236.972656 240.300781 236.855469 Z M 240.300781 236.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.726562 235.65625 C 236.726562 235.539062 236.632812 235.445312 236.515625 235.445312 C 236.398438 235.445312 236.304688 235.539062 236.304688 235.65625 C 236.304688 235.773438 236.398438 235.867188 236.515625 235.867188 C 236.632812 235.867188 236.726562 235.773438 236.726562 235.65625 Z M 236.726562 235.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.871094 234.550781 C 237.871094 234.433594 237.777344 234.339844 237.660156 234.339844 C 237.542969 234.339844 237.449219 234.433594 237.449219 234.550781 C 237.449219 234.667969 237.542969 234.761719 237.660156 234.761719 C 237.777344 234.761719 237.871094 234.667969 237.871094 234.550781 Z M 237.871094 234.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.980469 233.796875 C 236.980469 233.679688 236.886719 233.585938 236.769531 233.585938 C 236.652344 233.585938 236.558594 233.679688 236.558594 233.796875 C 236.558594 233.914062 236.652344 234.007812 236.769531 234.007812 C 236.886719 234.007812 236.980469 233.914062 236.980469 233.796875 Z M 236.980469 233.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.320312 234.828125 C 232.320312 234.710938 232.226562 234.617188 232.109375 234.617188 C 231.992188 234.617188 231.898438 234.710938 231.898438 234.828125 C 231.898438 234.945312 231.992188 235.039062 232.109375 235.039062 C 232.226562 235.039062 232.320312 234.945312 232.320312 234.828125 Z M 232.320312 234.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.660156 233.253906 C 231.660156 233.136719 231.566406 233.042969 231.449219 233.042969 C 231.332031 233.042969 231.238281 233.136719 231.238281 233.253906 C 231.238281 233.371094 231.332031 233.464844 231.449219 233.464844 C 231.566406 233.464844 231.660156 233.371094 231.660156 233.253906 Z M 231.660156 233.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.28125 231 C 229.28125 230.882812 229.1875 230.789062 229.070312 230.789062 C 228.953125 230.789062 228.859375 230.882812 228.859375 231 C 228.859375 231.117188 228.953125 231.210938 229.070312 231.210938 C 229.1875 231.210938 229.28125 231.117188 229.28125 231 Z M 229.28125 231 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.738281 228.226562 C 231.738281 228.109375 231.644531 228.015625 231.527344 228.015625 C 231.410156 228.015625 231.316406 228.109375 231.316406 228.226562 C 231.316406 228.34375 231.410156 228.4375 231.527344 228.4375 C 231.644531 228.4375 231.738281 228.34375 231.738281 228.226562 Z M 231.738281 228.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.9375 226.421875 C 233.9375 226.304688 233.84375 226.210938 233.726562 226.210938 C 233.609375 226.210938 233.515625 226.304688 233.515625 226.421875 C 233.515625 226.539062 233.609375 226.632812 233.726562 226.632812 C 233.84375 226.632812 233.9375 226.539062 233.9375 226.421875 Z M 233.9375 226.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.589844 226.980469 C 235.589844 226.863281 235.496094 226.769531 235.378906 226.769531 C 235.261719 226.769531 235.167969 226.863281 235.167969 226.980469 C 235.167969 227.097656 235.261719 227.191406 235.378906 227.191406 C 235.496094 227.191406 235.589844 227.097656 235.589844 226.980469 Z M 235.589844 226.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.660156 224.980469 C 234.660156 224.863281 234.566406 224.769531 234.449219 224.769531 C 234.332031 224.769531 234.238281 224.863281 234.238281 224.980469 C 234.238281 225.097656 234.332031 225.191406 234.449219 225.191406 C 234.566406 225.191406 234.660156 225.097656 234.660156 224.980469 Z M 234.660156 224.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.949219 225.980469 C 237.949219 225.863281 237.855469 225.769531 237.738281 225.769531 C 237.621094 225.769531 237.527344 225.863281 237.527344 225.980469 C 237.527344 226.097656 237.621094 226.191406 237.738281 226.191406 C 237.855469 226.191406 237.949219 226.097656 237.949219 225.980469 Z M 237.949219 225.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.957031 221.808594 C 233.957031 221.691406 233.863281 221.597656 233.746094 221.597656 C 233.628906 221.597656 233.535156 221.691406 233.535156 221.808594 C 233.535156 221.925781 233.628906 222.019531 233.746094 222.019531 C 233.863281 222.019531 233.957031 221.925781 233.957031 221.808594 Z M 233.957031 221.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.941406 217.5 C 231.941406 217.382812 231.847656 217.289062 231.730469 217.289062 C 231.613281 217.289062 231.519531 217.382812 231.519531 217.5 C 231.519531 217.617188 231.613281 217.710938 231.730469 217.710938 C 231.847656 217.710938 231.941406 217.617188 231.941406 217.5 Z M 231.941406 217.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.757812 219.363281 C 235.757812 219.246094 235.664062 219.152344 235.546875 219.152344 C 235.429688 219.152344 235.335938 219.246094 235.335938 219.363281 C 235.335938 219.480469 235.429688 219.574219 235.546875 219.574219 C 235.664062 219.574219 235.757812 219.480469 235.757812 219.363281 Z M 235.757812 219.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.878906 217.71875 C 234.878906 217.601562 234.785156 217.507812 234.667969 217.507812 C 234.550781 217.507812 234.457031 217.601562 234.457031 217.71875 C 234.457031 217.835938 234.550781 217.929688 234.667969 217.929688 C 234.785156 217.929688 234.878906 217.835938 234.878906 217.71875 Z M 234.878906 217.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.664062 215.140625 C 232.664062 215.023438 232.570312 214.929688 232.453125 214.929688 C 232.335938 214.929688 232.242188 215.023438 232.242188 215.140625 C 232.242188 215.257812 232.335938 215.351562 232.453125 215.351562 C 232.570312 215.351562 232.664062 215.257812 232.664062 215.140625 Z M 232.664062 215.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.746094 216.144531 C 232.746094 216.027344 232.652344 215.933594 232.535156 215.933594 C 232.417969 215.933594 232.324219 216.027344 232.324219 216.144531 C 232.324219 216.261719 232.417969 216.355469 232.535156 216.355469 C 232.652344 216.355469 232.746094 216.261719 232.746094 216.144531 Z M 232.746094 216.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.832031 215.652344 C 231.832031 215.535156 231.738281 215.441406 231.621094 215.441406 C 231.503906 215.441406 231.410156 215.535156 231.410156 215.652344 C 231.410156 215.769531 231.503906 215.863281 231.621094 215.863281 C 231.738281 215.863281 231.832031 215.769531 231.832031 215.652344 Z M 231.832031 215.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.71875 218.941406 C 230.71875 218.824219 230.625 218.730469 230.507812 218.730469 C 230.390625 218.730469 230.296875 218.824219 230.296875 218.941406 C 230.296875 219.058594 230.390625 219.152344 230.507812 219.152344 C 230.625 219.152344 230.71875 219.058594 230.71875 218.941406 Z M 230.71875 218.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.691406 216.160156 C 228.691406 216.042969 228.597656 215.949219 228.480469 215.949219 C 228.363281 215.949219 228.269531 216.042969 228.269531 216.160156 C 228.269531 216.277344 228.363281 216.371094 228.480469 216.371094 C 228.597656 216.371094 228.691406 216.277344 228.691406 216.160156 Z M 228.691406 216.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.5625 213.238281 C 229.5625 213.121094 229.46875 213.027344 229.351562 213.027344 C 229.234375 213.027344 229.140625 213.121094 229.140625 213.238281 C 229.140625 213.355469 229.234375 213.449219 229.351562 213.449219 C 229.46875 213.449219 229.5625 213.355469 229.5625 213.238281 Z M 229.5625 213.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.230469 216.113281 C 230.230469 215.996094 230.136719 215.902344 230.019531 215.902344 C 229.902344 215.902344 229.808594 215.996094 229.808594 216.113281 C 229.808594 216.230469 229.902344 216.324219 230.019531 216.324219 C 230.136719 216.324219 230.230469 216.230469 230.230469 216.113281 Z M 230.230469 216.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.984375 217.792969 C 226.984375 217.675781 226.890625 217.582031 226.773438 217.582031 C 226.65625 217.582031 226.5625 217.675781 226.5625 217.792969 C 226.5625 217.910156 226.65625 218.003906 226.773438 218.003906 C 226.890625 218.003906 226.984375 217.910156 226.984375 217.792969 Z M 226.984375 217.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.445312 218.355469 C 225.445312 218.238281 225.351562 218.144531 225.234375 218.144531 C 225.117188 218.144531 225.023438 218.238281 225.023438 218.355469 C 225.023438 218.472656 225.117188 218.566406 225.234375 218.566406 C 225.351562 218.566406 225.445312 218.472656 225.445312 218.355469 Z M 225.445312 218.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.050781 219.230469 C 230.050781 219.113281 229.957031 219.019531 229.839844 219.019531 C 229.722656 219.019531 229.628906 219.113281 229.628906 219.230469 C 229.628906 219.347656 229.722656 219.441406 229.839844 219.441406 C 229.957031 219.441406 230.050781 219.347656 230.050781 219.230469 Z M 230.050781 219.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.449219 221.578125 C 233.449219 221.460938 233.355469 221.367188 233.238281 221.367188 C 233.121094 221.367188 233.027344 221.460938 233.027344 221.578125 C 233.027344 221.695312 233.121094 221.789062 233.238281 221.789062 C 233.355469 221.789062 233.449219 221.695312 233.449219 221.578125 Z M 233.449219 221.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.089844 218.660156 C 232.089844 218.542969 231.996094 218.449219 231.878906 218.449219 C 231.761719 218.449219 231.667969 218.542969 231.667969 218.660156 C 231.667969 218.777344 231.761719 218.871094 231.878906 218.871094 C 231.996094 218.871094 232.089844 218.777344 232.089844 218.660156 Z M 232.089844 218.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.332031 221.746094 C 234.332031 221.628906 234.238281 221.535156 234.121094 221.535156 C 234.003906 221.535156 233.910156 221.628906 233.910156 221.746094 C 233.910156 221.863281 234.003906 221.957031 234.121094 221.957031 C 234.238281 221.957031 234.332031 221.863281 234.332031 221.746094 Z M 234.332031 221.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.828125 220.832031 C 235.828125 220.714844 235.734375 220.621094 235.617188 220.621094 C 235.5 220.621094 235.40625 220.714844 235.40625 220.832031 C 235.40625 220.949219 235.5 221.042969 235.617188 221.042969 C 235.734375 221.042969 235.828125 220.949219 235.828125 220.832031 Z M 235.828125 220.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.332031 220.058594 C 236.332031 219.941406 236.238281 219.847656 236.121094 219.847656 C 236.003906 219.847656 235.910156 219.941406 235.910156 220.058594 C 235.910156 220.175781 236.003906 220.269531 236.121094 220.269531 C 236.238281 220.269531 236.332031 220.175781 236.332031 220.058594 Z M 236.332031 220.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.988281 217.625 C 232.988281 217.507812 232.894531 217.414062 232.777344 217.414062 C 232.660156 217.414062 232.566406 217.507812 232.566406 217.625 C 232.566406 217.742188 232.660156 217.835938 232.777344 217.835938 C 232.894531 217.835938 232.988281 217.742188 232.988281 217.625 Z M 232.988281 217.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.835938 214.0625 C 232.835938 213.945312 232.742188 213.851562 232.625 213.851562 C 232.507812 213.851562 232.414062 213.945312 232.414062 214.0625 C 232.414062 214.179688 232.507812 214.273438 232.625 214.273438 C 232.742188 214.273438 232.835938 214.179688 232.835938 214.0625 Z M 232.835938 214.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.027344 217.1875 C 233.027344 217.070312 232.933594 216.976562 232.816406 216.976562 C 232.699219 216.976562 232.605469 217.070312 232.605469 217.1875 C 232.605469 217.304688 232.699219 217.398438 232.816406 217.398438 C 232.933594 217.398438 233.027344 217.304688 233.027344 217.1875 Z M 233.027344 217.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.609375 214.707031 C 231.609375 214.589844 231.515625 214.496094 231.398438 214.496094 C 231.28125 214.496094 231.1875 214.589844 231.1875 214.707031 C 231.1875 214.824219 231.28125 214.917969 231.398438 214.917969 C 231.515625 214.917969 231.609375 214.824219 231.609375 214.707031 Z M 231.609375 214.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.59375 213.851562 C 232.59375 213.734375 232.5 213.640625 232.382812 213.640625 C 232.265625 213.640625 232.171875 213.734375 232.171875 213.851562 C 232.171875 213.96875 232.265625 214.0625 232.382812 214.0625 C 232.5 214.0625 232.59375 213.96875 232.59375 213.851562 Z M 232.59375 213.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.214844 213.929688 C 232.214844 213.8125 232.121094 213.71875 232.003906 213.71875 C 231.886719 213.71875 231.792969 213.8125 231.792969 213.929688 C 231.792969 214.046875 231.886719 214.140625 232.003906 214.140625 C 232.121094 214.140625 232.214844 214.046875 232.214844 213.929688 Z M 232.214844 213.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.9375 210.074219 C 229.9375 209.957031 229.84375 209.863281 229.726562 209.863281 C 229.609375 209.863281 229.515625 209.957031 229.515625 210.074219 C 229.515625 210.191406 229.609375 210.285156 229.726562 210.285156 C 229.84375 210.285156 229.9375 210.191406 229.9375 210.074219 Z M 229.9375 210.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.15625 205.675781 C 230.15625 205.558594 230.0625 205.464844 229.945312 205.464844 C 229.828125 205.464844 229.734375 205.558594 229.734375 205.675781 C 229.734375 205.792969 229.828125 205.886719 229.945312 205.886719 C 230.0625 205.886719 230.15625 205.792969 230.15625 205.675781 Z M 230.15625 205.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.160156 206.167969 C 228.160156 206.050781 228.066406 205.957031 227.949219 205.957031 C 227.832031 205.957031 227.738281 206.050781 227.738281 206.167969 C 227.738281 206.285156 227.832031 206.378906 227.949219 206.378906 C 228.066406 206.378906 228.160156 206.285156 228.160156 206.167969 Z M 228.160156 206.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.5 206.605469 C 227.5 206.488281 227.40625 206.394531 227.289062 206.394531 C 227.171875 206.394531 227.078125 206.488281 227.078125 206.605469 C 227.078125 206.722656 227.171875 206.816406 227.289062 206.816406 C 227.40625 206.816406 227.5 206.722656 227.5 206.605469 Z M 227.5 206.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.363281 207.761719 C 227.363281 207.644531 227.269531 207.550781 227.152344 207.550781 C 227.035156 207.550781 226.941406 207.644531 226.941406 207.761719 C 226.941406 207.878906 227.035156 207.972656 227.152344 207.972656 C 227.269531 207.972656 227.363281 207.878906 227.363281 207.761719 Z M 227.363281 207.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.972656 209.386719 C 221.972656 209.269531 221.878906 209.175781 221.761719 209.175781 C 221.644531 209.175781 221.550781 209.269531 221.550781 209.386719 C 221.550781 209.503906 221.644531 209.597656 221.761719 209.597656 C 221.878906 209.597656 221.972656 209.503906 221.972656 209.386719 Z M 221.972656 209.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.679688 208.574219 C 223.679688 208.457031 223.585938 208.363281 223.46875 208.363281 C 223.351562 208.363281 223.257812 208.457031 223.257812 208.574219 C 223.257812 208.691406 223.351562 208.785156 223.46875 208.785156 C 223.585938 208.785156 223.679688 208.691406 223.679688 208.574219 Z M 223.679688 208.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.6875 208.292969 C 224.6875 208.175781 224.59375 208.082031 224.476562 208.082031 C 224.359375 208.082031 224.265625 208.175781 224.265625 208.292969 C 224.265625 208.410156 224.359375 208.503906 224.476562 208.503906 C 224.59375 208.503906 224.6875 208.410156 224.6875 208.292969 Z M 224.6875 208.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.289062 206.800781 C 225.289062 206.683594 225.195312 206.589844 225.078125 206.589844 C 224.960938 206.589844 224.867188 206.683594 224.867188 206.800781 C 224.867188 206.917969 224.960938 207.011719 225.078125 207.011719 C 225.195312 207.011719 225.289062 206.917969 225.289062 206.800781 Z M 225.289062 206.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.265625 203.636719 C 226.265625 203.519531 226.171875 203.425781 226.054688 203.425781 C 225.9375 203.425781 225.84375 203.519531 225.84375 203.636719 C 225.84375 203.753906 225.9375 203.847656 226.054688 203.847656 C 226.171875 203.847656 226.265625 203.753906 226.265625 203.636719 Z M 226.265625 203.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.296875 206.445312 C 227.296875 206.328125 227.203125 206.234375 227.085938 206.234375 C 226.96875 206.234375 226.875 206.328125 226.875 206.445312 C 226.875 206.5625 226.96875 206.65625 227.085938 206.65625 C 227.203125 206.65625 227.296875 206.5625 227.296875 206.445312 Z M 227.296875 206.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.847656 206.5625 C 228.847656 206.445312 228.753906 206.351562 228.636719 206.351562 C 228.519531 206.351562 228.425781 206.445312 228.425781 206.5625 C 228.425781 206.679688 228.519531 206.773438 228.636719 206.773438 C 228.753906 206.773438 228.847656 206.679688 228.847656 206.5625 Z M 228.847656 206.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.996094 205.804688 C 228.996094 205.6875 228.902344 205.59375 228.785156 205.59375 C 228.667969 205.59375 228.574219 205.6875 228.574219 205.804688 C 228.574219 205.921875 228.667969 206.015625 228.785156 206.015625 C 228.902344 206.015625 228.996094 205.921875 228.996094 205.804688 Z M 228.996094 205.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.160156 207.070312 C 230.160156 206.953125 230.066406 206.859375 229.949219 206.859375 C 229.832031 206.859375 229.738281 206.953125 229.738281 207.070312 C 229.738281 207.1875 229.832031 207.28125 229.949219 207.28125 C 230.066406 207.28125 230.160156 207.1875 230.160156 207.070312 Z M 230.160156 207.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.039062 206.886719 C 228.039062 206.769531 227.945312 206.675781 227.828125 206.675781 C 227.710938 206.675781 227.617188 206.769531 227.617188 206.886719 C 227.617188 207.003906 227.710938 207.097656 227.828125 207.097656 C 227.945312 207.097656 228.039062 207.003906 228.039062 206.886719 Z M 228.039062 206.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.851562 206.082031 C 229.851562 205.964844 229.757812 205.871094 229.640625 205.871094 C 229.523438 205.871094 229.429688 205.964844 229.429688 206.082031 C 229.429688 206.199219 229.523438 206.292969 229.640625 206.292969 C 229.757812 206.292969 229.851562 206.199219 229.851562 206.082031 Z M 229.851562 206.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.796875 206.035156 C 227.796875 205.917969 227.703125 205.824219 227.585938 205.824219 C 227.46875 205.824219 227.375 205.917969 227.375 206.035156 C 227.375 206.152344 227.46875 206.246094 227.585938 206.246094 C 227.703125 206.246094 227.796875 206.152344 227.796875 206.035156 Z M 227.796875 206.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.101562 208.277344 C 233.101562 208.160156 233.007812 208.066406 232.890625 208.066406 C 232.773438 208.066406 232.679688 208.160156 232.679688 208.277344 C 232.679688 208.394531 232.773438 208.488281 232.890625 208.488281 C 233.007812 208.488281 233.101562 208.394531 233.101562 208.277344 Z M 233.101562 208.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.074219 208.863281 C 234.074219 208.746094 233.980469 208.652344 233.863281 208.652344 C 233.746094 208.652344 233.652344 208.746094 233.652344 208.863281 C 233.652344 208.980469 233.746094 209.074219 233.863281 209.074219 C 233.980469 209.074219 234.074219 208.980469 234.074219 208.863281 Z M 234.074219 208.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.171875 207.816406 C 233.171875 207.699219 233.078125 207.605469 232.960938 207.605469 C 232.84375 207.605469 232.75 207.699219 232.75 207.816406 C 232.75 207.933594 232.84375 208.027344 232.960938 208.027344 C 233.078125 208.027344 233.171875 207.933594 233.171875 207.816406 Z M 233.171875 207.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.898438 206.136719 C 230.898438 206.019531 230.804688 205.925781 230.6875 205.925781 C 230.570312 205.925781 230.476562 206.019531 230.476562 206.136719 C 230.476562 206.253906 230.570312 206.347656 230.6875 206.347656 C 230.804688 206.347656 230.898438 206.253906 230.898438 206.136719 Z M 230.898438 206.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.476562 204.96875 C 230.476562 204.851562 230.382812 204.757812 230.265625 204.757812 C 230.148438 204.757812 230.054688 204.851562 230.054688 204.96875 C 230.054688 205.085938 230.148438 205.179688 230.265625 205.179688 C 230.382812 205.179688 230.476562 205.085938 230.476562 204.96875 Z M 230.476562 204.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.09375 201.390625 C 227.09375 201.273438 227 201.179688 226.882812 201.179688 C 226.765625 201.179688 226.671875 201.273438 226.671875 201.390625 C 226.671875 201.507812 226.765625 201.601562 226.882812 201.601562 C 227 201.601562 227.09375 201.507812 227.09375 201.390625 Z M 227.09375 201.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.363281 200.011719 C 230.363281 199.894531 230.269531 199.800781 230.152344 199.800781 C 230.035156 199.800781 229.941406 199.894531 229.941406 200.011719 C 229.941406 200.128906 230.035156 200.222656 230.152344 200.222656 C 230.269531 200.222656 230.363281 200.128906 230.363281 200.011719 Z M 230.363281 200.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.992188 202.800781 C 230.992188 202.683594 230.898438 202.589844 230.78125 202.589844 C 230.664062 202.589844 230.570312 202.683594 230.570312 202.800781 C 230.570312 202.917969 230.664062 203.011719 230.78125 203.011719 C 230.898438 203.011719 230.992188 202.917969 230.992188 202.800781 Z M 230.992188 202.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.40625 204.15625 C 230.40625 204.039062 230.3125 203.945312 230.195312 203.945312 C 230.078125 203.945312 229.984375 204.039062 229.984375 204.15625 C 229.984375 204.273438 230.078125 204.367188 230.195312 204.367188 C 230.3125 204.367188 230.40625 204.273438 230.40625 204.15625 Z M 230.40625 204.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 233.914062 207.179688 C 233.914062 207.0625 233.820312 206.96875 233.703125 206.96875 C 233.585938 206.96875 233.492188 207.0625 233.492188 207.179688 C 233.492188 207.296875 233.585938 207.390625 233.703125 207.390625 C 233.820312 207.390625 233.914062 207.296875 233.914062 207.179688 Z M 233.914062 207.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.71875 206.839844 C 234.71875 206.722656 234.625 206.628906 234.507812 206.628906 C 234.390625 206.628906 234.296875 206.722656 234.296875 206.839844 C 234.296875 206.957031 234.390625 207.050781 234.507812 207.050781 C 234.625 207.050781 234.71875 206.957031 234.71875 206.839844 Z M 234.71875 206.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.710938 208.621094 C 235.710938 208.503906 235.617188 208.410156 235.5 208.410156 C 235.382812 208.410156 235.289062 208.503906 235.289062 208.621094 C 235.289062 208.738281 235.382812 208.832031 235.5 208.832031 C 235.617188 208.832031 235.710938 208.738281 235.710938 208.621094 Z M 235.710938 208.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.058594 207.875 C 237.058594 207.757812 236.964844 207.664062 236.847656 207.664062 C 236.730469 207.664062 236.636719 207.757812 236.636719 207.875 C 236.636719 207.992188 236.730469 208.085938 236.847656 208.085938 C 236.964844 208.085938 237.058594 207.992188 237.058594 207.875 Z M 237.058594 207.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.386719 208.335938 C 239.386719 208.21875 239.292969 208.125 239.175781 208.125 C 239.058594 208.125 238.964844 208.21875 238.964844 208.335938 C 238.964844 208.453125 239.058594 208.546875 239.175781 208.546875 C 239.292969 208.546875 239.386719 208.453125 239.386719 208.335938 Z M 239.386719 208.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240 212.785156 C 240 212.667969 239.90625 212.574219 239.789062 212.574219 C 239.671875 212.574219 239.578125 212.667969 239.578125 212.785156 C 239.578125 212.902344 239.671875 212.996094 239.789062 212.996094 C 239.90625 212.996094 240 212.902344 240 212.785156 Z M 240 212.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.410156 211.070312 C 241.410156 210.953125 241.316406 210.859375 241.199219 210.859375 C 241.082031 210.859375 240.988281 210.953125 240.988281 211.070312 C 240.988281 211.1875 241.082031 211.28125 241.199219 211.28125 C 241.316406 211.28125 241.410156 211.1875 241.410156 211.070312 Z M 241.410156 211.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.925781 209.058594 C 246.925781 208.941406 246.832031 208.847656 246.714844 208.847656 C 246.597656 208.847656 246.503906 208.941406 246.503906 209.058594 C 246.503906 209.175781 246.597656 209.269531 246.714844 209.269531 C 246.832031 209.269531 246.925781 209.175781 246.925781 209.058594 Z M 246.925781 209.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.464844 206.804688 C 249.464844 206.6875 249.371094 206.59375 249.253906 206.59375 C 249.136719 206.59375 249.042969 206.6875 249.042969 206.804688 C 249.042969 206.921875 249.136719 207.015625 249.253906 207.015625 C 249.371094 207.015625 249.464844 206.921875 249.464844 206.804688 Z M 249.464844 206.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.695312 208.003906 C 249.695312 207.886719 249.601562 207.792969 249.484375 207.792969 C 249.367188 207.792969 249.273438 207.886719 249.273438 208.003906 C 249.273438 208.121094 249.367188 208.214844 249.484375 208.214844 C 249.601562 208.214844 249.695312 208.121094 249.695312 208.003906 Z M 249.695312 208.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.78125 209.789062 C 245.78125 209.671875 245.6875 209.578125 245.570312 209.578125 C 245.453125 209.578125 245.359375 209.671875 245.359375 209.789062 C 245.359375 209.90625 245.453125 210 245.570312 210 C 245.6875 210 245.78125 209.90625 245.78125 209.789062 Z M 245.78125 209.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.496094 210.808594 C 242.496094 210.691406 242.402344 210.597656 242.285156 210.597656 C 242.167969 210.597656 242.074219 210.691406 242.074219 210.808594 C 242.074219 210.925781 242.167969 211.019531 242.285156 211.019531 C 242.402344 211.019531 242.496094 210.925781 242.496094 210.808594 Z M 242.496094 210.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.492188 213.253906 C 243.492188 213.136719 243.398438 213.042969 243.28125 213.042969 C 243.164062 213.042969 243.070312 213.136719 243.070312 213.253906 C 243.070312 213.371094 243.164062 213.464844 243.28125 213.464844 C 243.398438 213.464844 243.492188 213.371094 243.492188 213.253906 Z M 243.492188 213.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.941406 213.019531 C 244.941406 212.902344 244.847656 212.808594 244.730469 212.808594 C 244.613281 212.808594 244.519531 212.902344 244.519531 213.019531 C 244.519531 213.136719 244.613281 213.230469 244.730469 213.230469 C 244.847656 213.230469 244.941406 213.136719 244.941406 213.019531 Z M 244.941406 213.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.136719 212.367188 C 246.136719 212.25 246.042969 212.15625 245.925781 212.15625 C 245.808594 212.15625 245.714844 212.25 245.714844 212.367188 C 245.714844 212.484375 245.808594 212.578125 245.925781 212.578125 C 246.042969 212.578125 246.136719 212.484375 246.136719 212.367188 Z M 246.136719 212.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.097656 212.234375 C 247.097656 212.117188 247.003906 212.023438 246.886719 212.023438 C 246.769531 212.023438 246.675781 212.117188 246.675781 212.234375 C 246.675781 212.351562 246.769531 212.445312 246.886719 212.445312 C 247.003906 212.445312 247.097656 212.351562 247.097656 212.234375 Z M 247.097656 212.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.554688 215.257812 C 247.554688 215.140625 247.460938 215.046875 247.34375 215.046875 C 247.226562 215.046875 247.132812 215.140625 247.132812 215.257812 C 247.132812 215.375 247.226562 215.46875 247.34375 215.46875 C 247.460938 215.46875 247.554688 215.375 247.554688 215.257812 Z M 247.554688 215.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.964844 213.929688 C 248.964844 213.8125 248.871094 213.71875 248.753906 213.71875 C 248.636719 213.71875 248.542969 213.8125 248.542969 213.929688 C 248.542969 214.046875 248.636719 214.140625 248.753906 214.140625 C 248.871094 214.140625 248.964844 214.046875 248.964844 213.929688 Z M 248.964844 213.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.03125 216.417969 C 249.03125 216.300781 248.9375 216.207031 248.820312 216.207031 C 248.703125 216.207031 248.609375 216.300781 248.609375 216.417969 C 248.609375 216.535156 248.703125 216.628906 248.820312 216.628906 C 248.9375 216.628906 249.03125 216.535156 249.03125 216.417969 Z M 249.03125 216.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.808594 214.347656 C 252.808594 214.230469 252.714844 214.136719 252.597656 214.136719 C 252.480469 214.136719 252.386719 214.230469 252.386719 214.347656 C 252.386719 214.464844 252.480469 214.558594 252.597656 214.558594 C 252.714844 214.558594 252.808594 214.464844 252.808594 214.347656 Z M 252.808594 214.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.234375 217.976562 C 252.234375 217.859375 252.140625 217.765625 252.023438 217.765625 C 251.90625 217.765625 251.8125 217.859375 251.8125 217.976562 C 251.8125 218.09375 251.90625 218.1875 252.023438 218.1875 C 252.140625 218.1875 252.234375 218.09375 252.234375 217.976562 Z M 252.234375 217.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.363281 219.316406 C 248.363281 219.199219 248.269531 219.105469 248.152344 219.105469 C 248.035156 219.105469 247.941406 219.199219 247.941406 219.316406 C 247.941406 219.433594 248.035156 219.527344 248.152344 219.527344 C 248.269531 219.527344 248.363281 219.433594 248.363281 219.316406 Z M 248.363281 219.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.234375 219.503906 C 248.234375 219.386719 248.140625 219.292969 248.023438 219.292969 C 247.90625 219.292969 247.8125 219.386719 247.8125 219.503906 C 247.8125 219.621094 247.90625 219.714844 248.023438 219.714844 C 248.140625 219.714844 248.234375 219.621094 248.234375 219.503906 Z M 248.234375 219.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.109375 217.644531 C 248.109375 217.527344 248.015625 217.433594 247.898438 217.433594 C 247.78125 217.433594 247.6875 217.527344 247.6875 217.644531 C 247.6875 217.761719 247.78125 217.855469 247.898438 217.855469 C 248.015625 217.855469 248.109375 217.761719 248.109375 217.644531 Z M 248.109375 217.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.515625 216.730469 C 247.515625 216.613281 247.421875 216.519531 247.304688 216.519531 C 247.1875 216.519531 247.09375 216.613281 247.09375 216.730469 C 247.09375 216.847656 247.1875 216.941406 247.304688 216.941406 C 247.421875 216.941406 247.515625 216.847656 247.515625 216.730469 Z M 247.515625 216.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.101562 215.683594 C 246.101562 215.566406 246.007812 215.472656 245.890625 215.472656 C 245.773438 215.472656 245.679688 215.566406 245.679688 215.683594 C 245.679688 215.800781 245.773438 215.894531 245.890625 215.894531 C 246.007812 215.894531 246.101562 215.800781 246.101562 215.683594 Z M 246.101562 215.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.347656 217.101562 C 248.347656 216.984375 248.253906 216.890625 248.136719 216.890625 C 248.019531 216.890625 247.925781 216.984375 247.925781 217.101562 C 247.925781 217.21875 248.019531 217.3125 248.136719 217.3125 C 248.253906 217.3125 248.347656 217.21875 248.347656 217.101562 Z M 248.347656 217.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.429688 216.996094 C 247.429688 216.878906 247.335938 216.785156 247.21875 216.785156 C 247.101562 216.785156 247.007812 216.878906 247.007812 216.996094 C 247.007812 217.113281 247.101562 217.207031 247.21875 217.207031 C 247.335938 217.207031 247.429688 217.113281 247.429688 216.996094 Z M 247.429688 216.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.203125 215.46875 C 245.203125 215.351562 245.109375 215.257812 244.992188 215.257812 C 244.875 215.257812 244.78125 215.351562 244.78125 215.46875 C 244.78125 215.585938 244.875 215.679688 244.992188 215.679688 C 245.109375 215.679688 245.203125 215.585938 245.203125 215.46875 Z M 245.203125 215.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.605469 216.28125 C 243.605469 216.164062 243.511719 216.070312 243.394531 216.070312 C 243.277344 216.070312 243.183594 216.164062 243.183594 216.28125 C 243.183594 216.398438 243.277344 216.492188 243.394531 216.492188 C 243.511719 216.492188 243.605469 216.398438 243.605469 216.28125 Z M 243.605469 216.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.824219 214.101562 C 245.824219 213.984375 245.730469 213.890625 245.613281 213.890625 C 245.496094 213.890625 245.402344 213.984375 245.402344 214.101562 C 245.402344 214.21875 245.496094 214.3125 245.613281 214.3125 C 245.730469 214.3125 245.824219 214.21875 245.824219 214.101562 Z M 245.824219 214.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.285156 215.636719 C 245.285156 215.519531 245.191406 215.425781 245.074219 215.425781 C 244.957031 215.425781 244.863281 215.519531 244.863281 215.636719 C 244.863281 215.753906 244.957031 215.847656 245.074219 215.847656 C 245.191406 215.847656 245.285156 215.753906 245.285156 215.636719 Z M 245.285156 215.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.417969 219.046875 C 245.417969 218.929688 245.324219 218.835938 245.207031 218.835938 C 245.089844 218.835938 244.996094 218.929688 244.996094 219.046875 C 244.996094 219.164062 245.089844 219.257812 245.207031 219.257812 C 245.324219 219.257812 245.417969 219.164062 245.417969 219.046875 Z M 245.417969 219.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.609375 217.152344 C 245.609375 217.035156 245.515625 216.941406 245.398438 216.941406 C 245.28125 216.941406 245.1875 217.035156 245.1875 217.152344 C 245.1875 217.269531 245.28125 217.363281 245.398438 217.363281 C 245.515625 217.363281 245.609375 217.269531 245.609375 217.152344 Z M 245.609375 217.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.847656 213.570312 C 245.847656 213.453125 245.753906 213.359375 245.636719 213.359375 C 245.519531 213.359375 245.425781 213.453125 245.425781 213.570312 C 245.425781 213.6875 245.519531 213.78125 245.636719 213.78125 C 245.753906 213.78125 245.847656 213.6875 245.847656 213.570312 Z M 245.847656 213.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.769531 212.539062 C 243.769531 212.421875 243.675781 212.328125 243.558594 212.328125 C 243.441406 212.328125 243.347656 212.421875 243.347656 212.539062 C 243.347656 212.65625 243.441406 212.75 243.558594 212.75 C 243.675781 212.75 243.769531 212.65625 243.769531 212.539062 Z M 243.769531 212.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.945312 211.542969 C 241.945312 211.425781 241.851562 211.332031 241.734375 211.332031 C 241.617188 211.332031 241.523438 211.425781 241.523438 211.542969 C 241.523438 211.660156 241.617188 211.753906 241.734375 211.753906 C 241.851562 211.753906 241.945312 211.660156 241.945312 211.542969 Z M 241.945312 211.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.085938 213.121094 C 243.085938 213.003906 242.992188 212.910156 242.875 212.910156 C 242.757812 212.910156 242.664062 213.003906 242.664062 213.121094 C 242.664062 213.238281 242.757812 213.332031 242.875 213.332031 C 242.992188 213.332031 243.085938 213.238281 243.085938 213.121094 Z M 243.085938 213.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.140625 212.144531 C 244.140625 212.027344 244.046875 211.933594 243.929688 211.933594 C 243.8125 211.933594 243.71875 212.027344 243.71875 212.144531 C 243.71875 212.261719 243.8125 212.355469 243.929688 212.355469 C 244.046875 212.355469 244.140625 212.261719 244.140625 212.144531 Z M 244.140625 212.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.894531 206.492188 C 242.894531 206.375 242.800781 206.28125 242.683594 206.28125 C 242.566406 206.28125 242.472656 206.375 242.472656 206.492188 C 242.472656 206.609375 242.566406 206.703125 242.683594 206.703125 C 242.800781 206.703125 242.894531 206.609375 242.894531 206.492188 Z M 242.894531 206.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.210938 207.585938 C 243.210938 207.46875 243.117188 207.375 243 207.375 C 242.882812 207.375 242.789062 207.46875 242.789062 207.585938 C 242.789062 207.703125 242.882812 207.796875 243 207.796875 C 243.117188 207.796875 243.210938 207.703125 243.210938 207.585938 Z M 243.210938 207.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.804688 206.25 C 243.804688 206.132812 243.710938 206.039062 243.59375 206.039062 C 243.476562 206.039062 243.382812 206.132812 243.382812 206.25 C 243.382812 206.367188 243.476562 206.460938 243.59375 206.460938 C 243.710938 206.460938 243.804688 206.367188 243.804688 206.25 Z M 243.804688 206.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.226562 207.234375 C 245.226562 207.117188 245.132812 207.023438 245.015625 207.023438 C 244.898438 207.023438 244.804688 207.117188 244.804688 207.234375 C 244.804688 207.351562 244.898438 207.445312 245.015625 207.445312 C 245.132812 207.445312 245.226562 207.351562 245.226562 207.234375 Z M 245.226562 207.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.476562 208.933594 C 245.476562 208.816406 245.382812 208.722656 245.265625 208.722656 C 245.148438 208.722656 245.054688 208.816406 245.054688 208.933594 C 245.054688 209.050781 245.148438 209.144531 245.265625 209.144531 C 245.382812 209.144531 245.476562 209.050781 245.476562 208.933594 Z M 245.476562 208.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.0625 205.003906 C 244.0625 204.886719 243.96875 204.792969 243.851562 204.792969 C 243.734375 204.792969 243.640625 204.886719 243.640625 205.003906 C 243.640625 205.121094 243.734375 205.214844 243.851562 205.214844 C 243.96875 205.214844 244.0625 205.121094 244.0625 205.003906 Z M 244.0625 205.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.375 201.804688 C 244.375 201.6875 244.28125 201.59375 244.164062 201.59375 C 244.046875 201.59375 243.953125 201.6875 243.953125 201.804688 C 243.953125 201.921875 244.046875 202.015625 244.164062 202.015625 C 244.28125 202.015625 244.375 201.921875 244.375 201.804688 Z M 244.375 201.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.144531 201.667969 C 244.144531 201.550781 244.050781 201.457031 243.933594 201.457031 C 243.816406 201.457031 243.722656 201.550781 243.722656 201.667969 C 243.722656 201.785156 243.816406 201.878906 243.933594 201.878906 C 244.050781 201.878906 244.144531 201.785156 244.144531 201.667969 Z M 244.144531 201.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.121094 202.324219 C 244.121094 202.207031 244.027344 202.113281 243.910156 202.113281 C 243.792969 202.113281 243.699219 202.207031 243.699219 202.324219 C 243.699219 202.441406 243.792969 202.535156 243.910156 202.535156 C 244.027344 202.535156 244.121094 202.441406 244.121094 202.324219 Z M 244.121094 202.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.984375 204.726562 C 245.984375 204.609375 245.890625 204.515625 245.773438 204.515625 C 245.65625 204.515625 245.5625 204.609375 245.5625 204.726562 C 245.5625 204.84375 245.65625 204.9375 245.773438 204.9375 C 245.890625 204.9375 245.984375 204.84375 245.984375 204.726562 Z M 245.984375 204.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.636719 207.503906 C 250.636719 207.386719 250.542969 207.292969 250.425781 207.292969 C 250.308594 207.292969 250.214844 207.386719 250.214844 207.503906 C 250.214844 207.621094 250.308594 207.714844 250.425781 207.714844 C 250.542969 207.714844 250.636719 207.621094 250.636719 207.503906 Z M 250.636719 207.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.253906 209.652344 C 249.253906 209.535156 249.160156 209.441406 249.042969 209.441406 C 248.925781 209.441406 248.832031 209.535156 248.832031 209.652344 C 248.832031 209.769531 248.925781 209.863281 249.042969 209.863281 C 249.160156 209.863281 249.253906 209.769531 249.253906 209.652344 Z M 249.253906 209.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.382812 210.539062 C 250.382812 210.421875 250.289062 210.328125 250.171875 210.328125 C 250.054688 210.328125 249.960938 210.421875 249.960938 210.539062 C 249.960938 210.65625 250.054688 210.75 250.171875 210.75 C 250.289062 210.75 250.382812 210.65625 250.382812 210.539062 Z M 250.382812 210.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.523438 207.425781 C 250.523438 207.308594 250.429688 207.214844 250.3125 207.214844 C 250.195312 207.214844 250.101562 207.308594 250.101562 207.425781 C 250.101562 207.542969 250.195312 207.636719 250.3125 207.636719 C 250.429688 207.636719 250.523438 207.542969 250.523438 207.425781 Z M 250.523438 207.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.117188 206.203125 C 251.117188 206.085938 251.023438 205.992188 250.90625 205.992188 C 250.789062 205.992188 250.695312 206.085938 250.695312 206.203125 C 250.695312 206.320312 250.789062 206.414062 250.90625 206.414062 C 251.023438 206.414062 251.117188 206.320312 251.117188 206.203125 Z M 251.117188 206.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.875 204.09375 C 253.875 203.976562 253.78125 203.882812 253.664062 203.882812 C 253.546875 203.882812 253.453125 203.976562 253.453125 204.09375 C 253.453125 204.210938 253.546875 204.304688 253.664062 204.304688 C 253.78125 204.304688 253.875 204.210938 253.875 204.09375 Z M 253.875 204.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.664062 205.015625 C 253.664062 204.898438 253.570312 204.804688 253.453125 204.804688 C 253.335938 204.804688 253.242188 204.898438 253.242188 205.015625 C 253.242188 205.132812 253.335938 205.226562 253.453125 205.226562 C 253.570312 205.226562 253.664062 205.132812 253.664062 205.015625 Z M 253.664062 205.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.179688 208.867188 C 254.179688 208.75 254.085938 208.65625 253.96875 208.65625 C 253.851562 208.65625 253.757812 208.75 253.757812 208.867188 C 253.757812 208.984375 253.851562 209.078125 253.96875 209.078125 C 254.085938 209.078125 254.179688 208.984375 254.179688 208.867188 Z M 254.179688 208.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.921875 207.859375 C 253.921875 207.742188 253.828125 207.648438 253.710938 207.648438 C 253.59375 207.648438 253.5 207.742188 253.5 207.859375 C 253.5 207.976562 253.59375 208.070312 253.710938 208.070312 C 253.828125 208.070312 253.921875 207.976562 253.921875 207.859375 Z M 253.921875 207.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.273438 207.550781 C 250.273438 207.433594 250.179688 207.339844 250.0625 207.339844 C 249.945312 207.339844 249.851562 207.433594 249.851562 207.550781 C 249.851562 207.667969 249.945312 207.761719 250.0625 207.761719 C 250.179688 207.761719 250.273438 207.667969 250.273438 207.550781 Z M 250.273438 207.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.136719 203.953125 C 252.136719 203.835938 252.042969 203.742188 251.925781 203.742188 C 251.808594 203.742188 251.714844 203.835938 251.714844 203.953125 C 251.714844 204.070312 251.808594 204.164062 251.925781 204.164062 C 252.042969 204.164062 252.136719 204.070312 252.136719 203.953125 Z M 252.136719 203.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.210938 203.589844 C 248.210938 203.472656 248.117188 203.378906 248 203.378906 C 247.882812 203.378906 247.789062 203.472656 247.789062 203.589844 C 247.789062 203.707031 247.882812 203.800781 248 203.800781 C 248.117188 203.800781 248.210938 203.707031 248.210938 203.589844 Z M 248.210938 203.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.773438 203.855469 C 245.773438 203.738281 245.679688 203.644531 245.5625 203.644531 C 245.445312 203.644531 245.351562 203.738281 245.351562 203.855469 C 245.351562 203.972656 245.445312 204.066406 245.5625 204.066406 C 245.679688 204.066406 245.773438 203.972656 245.773438 203.855469 Z M 245.773438 203.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.429688 200.53125 C 246.429688 200.414062 246.335938 200.320312 246.21875 200.320312 C 246.101562 200.320312 246.007812 200.414062 246.007812 200.53125 C 246.007812 200.648438 246.101562 200.742188 246.21875 200.742188 C 246.335938 200.742188 246.429688 200.648438 246.429688 200.53125 Z M 246.429688 200.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.847656 200.511719 C 242.847656 200.394531 242.753906 200.300781 242.636719 200.300781 C 242.519531 200.300781 242.425781 200.394531 242.425781 200.511719 C 242.425781 200.628906 242.519531 200.722656 242.636719 200.722656 C 242.753906 200.722656 242.847656 200.628906 242.847656 200.511719 Z M 242.847656 200.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.546875 197.765625 C 243.546875 197.648438 243.453125 197.554688 243.335938 197.554688 C 243.21875 197.554688 243.125 197.648438 243.125 197.765625 C 243.125 197.882812 243.21875 197.976562 243.335938 197.976562 C 243.453125 197.976562 243.546875 197.882812 243.546875 197.765625 Z M 243.546875 197.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.898438 196.453125 C 244.898438 196.335938 244.804688 196.242188 244.6875 196.242188 C 244.570312 196.242188 244.476562 196.335938 244.476562 196.453125 C 244.476562 196.570312 244.570312 196.664062 244.6875 196.664062 C 244.804688 196.664062 244.898438 196.570312 244.898438 196.453125 Z M 244.898438 196.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.472656 197.710938 C 250.472656 197.59375 250.378906 197.5 250.261719 197.5 C 250.144531 197.5 250.050781 197.59375 250.050781 197.710938 C 250.050781 197.828125 250.144531 197.921875 250.261719 197.921875 C 250.378906 197.921875 250.472656 197.828125 250.472656 197.710938 Z M 250.472656 197.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.570312 196.527344 C 252.570312 196.410156 252.476562 196.316406 252.359375 196.316406 C 252.242188 196.316406 252.148438 196.410156 252.148438 196.527344 C 252.148438 196.644531 252.242188 196.738281 252.359375 196.738281 C 252.476562 196.738281 252.570312 196.644531 252.570312 196.527344 Z M 252.570312 196.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.824219 198.683594 C 251.824219 198.566406 251.730469 198.472656 251.613281 198.472656 C 251.496094 198.472656 251.402344 198.566406 251.402344 198.683594 C 251.402344 198.800781 251.496094 198.894531 251.613281 198.894531 C 251.730469 198.894531 251.824219 198.800781 251.824219 198.683594 Z M 251.824219 198.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.03125 199.664062 C 252.03125 199.546875 251.9375 199.453125 251.820312 199.453125 C 251.703125 199.453125 251.609375 199.546875 251.609375 199.664062 C 251.609375 199.78125 251.703125 199.875 251.820312 199.875 C 251.9375 199.875 252.03125 199.78125 252.03125 199.664062 Z M 252.03125 199.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.574219 200.851562 C 252.574219 200.734375 252.480469 200.640625 252.363281 200.640625 C 252.246094 200.640625 252.152344 200.734375 252.152344 200.851562 C 252.152344 200.96875 252.246094 201.0625 252.363281 201.0625 C 252.480469 201.0625 252.574219 200.96875 252.574219 200.851562 Z M 252.574219 200.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.035156 201.261719 C 251.035156 201.144531 250.941406 201.050781 250.824219 201.050781 C 250.707031 201.050781 250.613281 201.144531 250.613281 201.261719 C 250.613281 201.378906 250.707031 201.472656 250.824219 201.472656 C 250.941406 201.472656 251.035156 201.378906 251.035156 201.261719 Z M 251.035156 201.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.410156 200.210938 C 252.410156 200.09375 252.316406 200 252.199219 200 C 252.082031 200 251.988281 200.09375 251.988281 200.210938 C 251.988281 200.328125 252.082031 200.421875 252.199219 200.421875 C 252.316406 200.421875 252.410156 200.328125 252.410156 200.210938 Z M 252.410156 200.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.464844 195.898438 C 251.464844 195.78125 251.371094 195.6875 251.253906 195.6875 C 251.136719 195.6875 251.042969 195.78125 251.042969 195.898438 C 251.042969 196.015625 251.136719 196.109375 251.253906 196.109375 C 251.371094 196.109375 251.464844 196.015625 251.464844 195.898438 Z M 251.464844 195.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.234375 198.15625 C 252.234375 198.039062 252.140625 197.945312 252.023438 197.945312 C 251.90625 197.945312 251.8125 198.039062 251.8125 198.15625 C 251.8125 198.273438 251.90625 198.367188 252.023438 198.367188 C 252.140625 198.367188 252.234375 198.273438 252.234375 198.15625 Z M 252.234375 198.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.101562 198.636719 C 251.101562 198.519531 251.007812 198.425781 250.890625 198.425781 C 250.773438 198.425781 250.679688 198.519531 250.679688 198.636719 C 250.679688 198.753906 250.773438 198.847656 250.890625 198.847656 C 251.007812 198.847656 251.101562 198.753906 251.101562 198.636719 Z M 251.101562 198.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.496094 198.664062 C 251.496094 198.546875 251.402344 198.453125 251.285156 198.453125 C 251.167969 198.453125 251.074219 198.546875 251.074219 198.664062 C 251.074219 198.78125 251.167969 198.875 251.285156 198.875 C 251.402344 198.875 251.496094 198.78125 251.496094 198.664062 Z M 251.496094 198.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.464844 200.007812 C 249.464844 199.890625 249.371094 199.796875 249.253906 199.796875 C 249.136719 199.796875 249.042969 199.890625 249.042969 200.007812 C 249.042969 200.125 249.136719 200.21875 249.253906 200.21875 C 249.371094 200.21875 249.464844 200.125 249.464844 200.007812 Z M 249.464844 200.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.199219 199.621094 C 248.199219 199.503906 248.105469 199.410156 247.988281 199.410156 C 247.871094 199.410156 247.777344 199.503906 247.777344 199.621094 C 247.777344 199.738281 247.871094 199.832031 247.988281 199.832031 C 248.105469 199.832031 248.199219 199.738281 248.199219 199.621094 Z M 248.199219 199.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.410156 199.160156 C 246.410156 199.042969 246.316406 198.949219 246.199219 198.949219 C 246.082031 198.949219 245.988281 199.042969 245.988281 199.160156 C 245.988281 199.277344 246.082031 199.371094 246.199219 199.371094 C 246.316406 199.371094 246.410156 199.277344 246.410156 199.160156 Z M 246.410156 199.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.835938 196.324219 C 248.835938 196.207031 248.742188 196.113281 248.625 196.113281 C 248.507812 196.113281 248.414062 196.207031 248.414062 196.324219 C 248.414062 196.441406 248.507812 196.535156 248.625 196.535156 C 248.742188 196.535156 248.835938 196.441406 248.835938 196.324219 Z M 248.835938 196.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.464844 196.203125 C 249.464844 196.085938 249.371094 195.992188 249.253906 195.992188 C 249.136719 195.992188 249.042969 196.085938 249.042969 196.203125 C 249.042969 196.320312 249.136719 196.414062 249.253906 196.414062 C 249.371094 196.414062 249.464844 196.320312 249.464844 196.203125 Z M 249.464844 196.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.183594 197.121094 C 252.183594 197.003906 252.089844 196.910156 251.972656 196.910156 C 251.855469 196.910156 251.761719 197.003906 251.761719 197.121094 C 251.761719 197.238281 251.855469 197.332031 251.972656 197.332031 C 252.089844 197.332031 252.183594 197.238281 252.183594 197.121094 Z M 252.183594 197.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.441406 201.585938 C 247.441406 201.46875 247.347656 201.375 247.230469 201.375 C 247.113281 201.375 247.019531 201.46875 247.019531 201.585938 C 247.019531 201.703125 247.113281 201.796875 247.230469 201.796875 C 247.347656 201.796875 247.441406 201.703125 247.441406 201.585938 Z M 247.441406 201.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.554688 200.4375 C 249.554688 200.320312 249.460938 200.226562 249.34375 200.226562 C 249.226562 200.226562 249.132812 200.320312 249.132812 200.4375 C 249.132812 200.554688 249.226562 200.648438 249.34375 200.648438 C 249.460938 200.648438 249.554688 200.554688 249.554688 200.4375 Z M 249.554688 200.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.996094 201.140625 C 248.996094 201.023438 248.902344 200.929688 248.785156 200.929688 C 248.667969 200.929688 248.574219 201.023438 248.574219 201.140625 C 248.574219 201.257812 248.667969 201.351562 248.785156 201.351562 C 248.902344 201.351562 248.996094 201.257812 248.996094 201.140625 Z M 248.996094 201.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.300781 201.59375 C 248.300781 201.476562 248.207031 201.382812 248.089844 201.382812 C 247.972656 201.382812 247.878906 201.476562 247.878906 201.59375 C 247.878906 201.710938 247.972656 201.804688 248.089844 201.804688 C 248.207031 201.804688 248.300781 201.710938 248.300781 201.59375 Z M 248.300781 201.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.726562 200.898438 C 245.726562 200.78125 245.632812 200.6875 245.515625 200.6875 C 245.398438 200.6875 245.304688 200.78125 245.304688 200.898438 C 245.304688 201.015625 245.398438 201.109375 245.515625 201.109375 C 245.632812 201.109375 245.726562 201.015625 245.726562 200.898438 Z M 245.726562 200.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.429688 199.003906 C 246.429688 198.886719 246.335938 198.792969 246.21875 198.792969 C 246.101562 198.792969 246.007812 198.886719 246.007812 199.003906 C 246.007812 199.121094 246.101562 199.214844 246.21875 199.214844 C 246.335938 199.214844 246.429688 199.121094 246.429688 199.003906 Z M 246.429688 199.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.300781 202.289062 C 248.300781 202.171875 248.207031 202.078125 248.089844 202.078125 C 247.972656 202.078125 247.878906 202.171875 247.878906 202.289062 C 247.878906 202.40625 247.972656 202.5 248.089844 202.5 C 248.207031 202.5 248.300781 202.40625 248.300781 202.289062 Z M 248.300781 202.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.46875 202.46875 C 248.46875 202.351562 248.375 202.257812 248.257812 202.257812 C 248.140625 202.257812 248.046875 202.351562 248.046875 202.46875 C 248.046875 202.585938 248.140625 202.679688 248.257812 202.679688 C 248.375 202.679688 248.46875 202.585938 248.46875 202.46875 Z M 248.46875 202.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.546875 201.753906 C 249.546875 201.636719 249.453125 201.542969 249.335938 201.542969 C 249.21875 201.542969 249.125 201.636719 249.125 201.753906 C 249.125 201.871094 249.21875 201.964844 249.335938 201.964844 C 249.453125 201.964844 249.546875 201.871094 249.546875 201.753906 Z M 249.546875 201.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.753906 207.039062 C 252.753906 206.921875 252.660156 206.828125 252.542969 206.828125 C 252.425781 206.828125 252.332031 206.921875 252.332031 207.039062 C 252.332031 207.15625 252.425781 207.25 252.542969 207.25 C 252.660156 207.25 252.753906 207.15625 252.753906 207.039062 Z M 252.753906 207.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.453125 207.558594 C 252.453125 207.441406 252.359375 207.347656 252.242188 207.347656 C 252.125 207.347656 252.03125 207.441406 252.03125 207.558594 C 252.03125 207.675781 252.125 207.769531 252.242188 207.769531 C 252.359375 207.769531 252.453125 207.675781 252.453125 207.558594 Z M 252.453125 207.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.515625 207.335938 C 251.515625 207.21875 251.421875 207.125 251.304688 207.125 C 251.1875 207.125 251.09375 207.21875 251.09375 207.335938 C 251.09375 207.453125 251.1875 207.546875 251.304688 207.546875 C 251.421875 207.546875 251.515625 207.453125 251.515625 207.335938 Z M 251.515625 207.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.933594 205.1875 C 249.933594 205.070312 249.839844 204.976562 249.722656 204.976562 C 249.605469 204.976562 249.511719 205.070312 249.511719 205.1875 C 249.511719 205.304688 249.605469 205.398438 249.722656 205.398438 C 249.839844 205.398438 249.933594 205.304688 249.933594 205.1875 Z M 249.933594 205.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.019531 206.210938 C 250.019531 206.09375 249.925781 206 249.808594 206 C 249.691406 206 249.597656 206.09375 249.597656 206.210938 C 249.597656 206.328125 249.691406 206.421875 249.808594 206.421875 C 249.925781 206.421875 250.019531 206.328125 250.019531 206.210938 Z M 250.019531 206.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.6875 201.121094 C 252.6875 201.003906 252.59375 200.910156 252.476562 200.910156 C 252.359375 200.910156 252.265625 201.003906 252.265625 201.121094 C 252.265625 201.238281 252.359375 201.332031 252.476562 201.332031 C 252.59375 201.332031 252.6875 201.238281 252.6875 201.121094 Z M 252.6875 201.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.757812 202.1875 C 253.757812 202.070312 253.664062 201.976562 253.546875 201.976562 C 253.429688 201.976562 253.335938 202.070312 253.335938 202.1875 C 253.335938 202.304688 253.429688 202.398438 253.546875 202.398438 C 253.664062 202.398438 253.757812 202.304688 253.757812 202.1875 Z M 253.757812 202.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.777344 201.492188 C 256.777344 201.375 256.683594 201.28125 256.566406 201.28125 C 256.449219 201.28125 256.355469 201.375 256.355469 201.492188 C 256.355469 201.609375 256.449219 201.703125 256.566406 201.703125 C 256.683594 201.703125 256.777344 201.609375 256.777344 201.492188 Z M 256.777344 201.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.824219 199.964844 C 254.824219 199.847656 254.730469 199.753906 254.613281 199.753906 C 254.496094 199.753906 254.402344 199.847656 254.402344 199.964844 C 254.402344 200.082031 254.496094 200.175781 254.613281 200.175781 C 254.730469 200.175781 254.824219 200.082031 254.824219 199.964844 Z M 254.824219 199.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.644531 200.625 C 256.644531 200.507812 256.550781 200.414062 256.433594 200.414062 C 256.316406 200.414062 256.222656 200.507812 256.222656 200.625 C 256.222656 200.742188 256.316406 200.835938 256.433594 200.835938 C 256.550781 200.835938 256.644531 200.742188 256.644531 200.625 Z M 256.644531 200.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.414062 201.691406 C 258.414062 201.574219 258.320312 201.480469 258.203125 201.480469 C 258.085938 201.480469 257.992188 201.574219 257.992188 201.691406 C 257.992188 201.808594 258.085938 201.902344 258.203125 201.902344 C 258.320312 201.902344 258.414062 201.808594 258.414062 201.691406 Z M 258.414062 201.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.582031 199.675781 C 262.582031 199.558594 262.488281 199.464844 262.371094 199.464844 C 262.253906 199.464844 262.160156 199.558594 262.160156 199.675781 C 262.160156 199.792969 262.253906 199.886719 262.371094 199.886719 C 262.488281 199.886719 262.582031 199.792969 262.582031 199.675781 Z M 262.582031 199.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.085938 200.539062 C 265.085938 200.421875 264.992188 200.328125 264.875 200.328125 C 264.757812 200.328125 264.664062 200.421875 264.664062 200.539062 C 264.664062 200.65625 264.757812 200.75 264.875 200.75 C 264.992188 200.75 265.085938 200.65625 265.085938 200.539062 Z M 265.085938 200.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.320312 202.457031 C 262.320312 202.339844 262.226562 202.246094 262.109375 202.246094 C 261.992188 202.246094 261.898438 202.339844 261.898438 202.457031 C 261.898438 202.574219 261.992188 202.667969 262.109375 202.667969 C 262.226562 202.667969 262.320312 202.574219 262.320312 202.457031 Z M 262.320312 202.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.496094 202.558594 C 261.496094 202.441406 261.402344 202.347656 261.285156 202.347656 C 261.167969 202.347656 261.074219 202.441406 261.074219 202.558594 C 261.074219 202.675781 261.167969 202.769531 261.285156 202.769531 C 261.402344 202.769531 261.496094 202.675781 261.496094 202.558594 Z M 261.496094 202.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.773438 201.589844 C 259.773438 201.472656 259.679688 201.378906 259.5625 201.378906 C 259.445312 201.378906 259.351562 201.472656 259.351562 201.589844 C 259.351562 201.707031 259.445312 201.800781 259.5625 201.800781 C 259.679688 201.800781 259.773438 201.707031 259.773438 201.589844 Z M 259.773438 201.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.777344 200.058594 C 261.777344 199.941406 261.683594 199.847656 261.566406 199.847656 C 261.449219 199.847656 261.355469 199.941406 261.355469 200.058594 C 261.355469 200.175781 261.449219 200.269531 261.566406 200.269531 C 261.683594 200.269531 261.777344 200.175781 261.777344 200.058594 Z M 261.777344 200.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.746094 199.054688 C 261.746094 198.9375 261.652344 198.84375 261.535156 198.84375 C 261.417969 198.84375 261.324219 198.9375 261.324219 199.054688 C 261.324219 199.171875 261.417969 199.265625 261.535156 199.265625 C 261.652344 199.265625 261.746094 199.171875 261.746094 199.054688 Z M 261.746094 199.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.65625 199.996094 C 260.65625 199.878906 260.5625 199.785156 260.445312 199.785156 C 260.328125 199.785156 260.234375 199.878906 260.234375 199.996094 C 260.234375 200.113281 260.328125 200.207031 260.445312 200.207031 C 260.5625 200.207031 260.65625 200.113281 260.65625 199.996094 Z M 260.65625 199.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.664062 195.867188 C 260.664062 195.75 260.570312 195.65625 260.453125 195.65625 C 260.335938 195.65625 260.242188 195.75 260.242188 195.867188 C 260.242188 195.984375 260.335938 196.078125 260.453125 196.078125 C 260.570312 196.078125 260.664062 195.984375 260.664062 195.867188 Z M 260.664062 195.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.300781 195.605469 C 261.300781 195.488281 261.207031 195.394531 261.089844 195.394531 C 260.972656 195.394531 260.878906 195.488281 260.878906 195.605469 C 260.878906 195.722656 260.972656 195.816406 261.089844 195.816406 C 261.207031 195.816406 261.300781 195.722656 261.300781 195.605469 Z M 261.300781 195.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.714844 195.664062 C 261.714844 195.546875 261.621094 195.453125 261.503906 195.453125 C 261.386719 195.453125 261.292969 195.546875 261.292969 195.664062 C 261.292969 195.78125 261.386719 195.875 261.503906 195.875 C 261.621094 195.875 261.714844 195.78125 261.714844 195.664062 Z M 261.714844 195.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.210938 195.183594 C 263.210938 195.066406 263.117188 194.972656 263 194.972656 C 262.882812 194.972656 262.789062 195.066406 262.789062 195.183594 C 262.789062 195.300781 262.882812 195.394531 263 195.394531 C 263.117188 195.394531 263.210938 195.300781 263.210938 195.183594 Z M 263.210938 195.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.324219 193.339844 C 260.324219 193.222656 260.230469 193.128906 260.113281 193.128906 C 259.996094 193.128906 259.902344 193.222656 259.902344 193.339844 C 259.902344 193.457031 259.996094 193.550781 260.113281 193.550781 C 260.230469 193.550781 260.324219 193.457031 260.324219 193.339844 Z M 260.324219 193.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.636719 193.316406 C 261.636719 193.199219 261.542969 193.105469 261.425781 193.105469 C 261.308594 193.105469 261.214844 193.199219 261.214844 193.316406 C 261.214844 193.433594 261.308594 193.527344 261.425781 193.527344 C 261.542969 193.527344 261.636719 193.433594 261.636719 193.316406 Z M 261.636719 193.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.136719 195.980469 C 259.136719 195.863281 259.042969 195.769531 258.925781 195.769531 C 258.808594 195.769531 258.714844 195.863281 258.714844 195.980469 C 258.714844 196.097656 258.808594 196.191406 258.925781 196.191406 C 259.042969 196.191406 259.136719 196.097656 259.136719 195.980469 Z M 259.136719 195.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.394531 197.386719 C 262.394531 197.269531 262.300781 197.175781 262.183594 197.175781 C 262.066406 197.175781 261.972656 197.269531 261.972656 197.386719 C 261.972656 197.503906 262.066406 197.597656 262.183594 197.597656 C 262.300781 197.597656 262.394531 197.503906 262.394531 197.386719 Z M 262.394531 197.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.710938 197.25 C 262.710938 197.132812 262.617188 197.039062 262.5 197.039062 C 262.382812 197.039062 262.289062 197.132812 262.289062 197.25 C 262.289062 197.367188 262.382812 197.460938 262.5 197.460938 C 262.617188 197.460938 262.710938 197.367188 262.710938 197.25 Z M 262.710938 197.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.054688 197.886719 C 260.054688 197.769531 259.960938 197.675781 259.84375 197.675781 C 259.726562 197.675781 259.632812 197.769531 259.632812 197.886719 C 259.632812 198.003906 259.726562 198.097656 259.84375 198.097656 C 259.960938 198.097656 260.054688 198.003906 260.054688 197.886719 Z M 260.054688 197.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.589844 199 C 263.589844 198.882812 263.496094 198.789062 263.378906 198.789062 C 263.261719 198.789062 263.167969 198.882812 263.167969 199 C 263.167969 199.117188 263.261719 199.210938 263.378906 199.210938 C 263.496094 199.210938 263.589844 199.117188 263.589844 199 Z M 263.589844 199 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.234375 202.320312 C 266.234375 202.203125 266.140625 202.109375 266.023438 202.109375 C 265.90625 202.109375 265.8125 202.203125 265.8125 202.320312 C 265.8125 202.4375 265.90625 202.53125 266.023438 202.53125 C 266.140625 202.53125 266.234375 202.4375 266.234375 202.320312 Z M 266.234375 202.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.808594 200.964844 C 268.808594 200.847656 268.714844 200.753906 268.597656 200.753906 C 268.480469 200.753906 268.386719 200.847656 268.386719 200.964844 C 268.386719 201.082031 268.480469 201.175781 268.597656 201.175781 C 268.714844 201.175781 268.808594 201.082031 268.808594 200.964844 Z M 268.808594 200.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.492188 199.171875 C 269.492188 199.054688 269.398438 198.960938 269.28125 198.960938 C 269.164062 198.960938 269.070312 199.054688 269.070312 199.171875 C 269.070312 199.289062 269.164062 199.382812 269.28125 199.382812 C 269.398438 199.382812 269.492188 199.289062 269.492188 199.171875 Z M 269.492188 199.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.40625 196.363281 C 268.40625 196.246094 268.3125 196.152344 268.195312 196.152344 C 268.078125 196.152344 267.984375 196.246094 267.984375 196.363281 C 267.984375 196.480469 268.078125 196.574219 268.195312 196.574219 C 268.3125 196.574219 268.40625 196.480469 268.40625 196.363281 Z M 268.40625 196.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.210938 193.492188 C 267.210938 193.375 267.117188 193.28125 267 193.28125 C 266.882812 193.28125 266.789062 193.375 266.789062 193.492188 C 266.789062 193.609375 266.882812 193.703125 267 193.703125 C 267.117188 193.703125 267.210938 193.609375 267.210938 193.492188 Z M 267.210938 193.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.46875 193.410156 C 271.46875 193.292969 271.375 193.199219 271.257812 193.199219 C 271.140625 193.199219 271.046875 193.292969 271.046875 193.410156 C 271.046875 193.527344 271.140625 193.621094 271.257812 193.621094 C 271.375 193.621094 271.46875 193.527344 271.46875 193.410156 Z M 271.46875 193.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.339844 193.597656 C 269.339844 193.480469 269.246094 193.386719 269.128906 193.386719 C 269.011719 193.386719 268.917969 193.480469 268.917969 193.597656 C 268.917969 193.714844 269.011719 193.808594 269.128906 193.808594 C 269.246094 193.808594 269.339844 193.714844 269.339844 193.597656 Z M 269.339844 193.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.78125 193.726562 C 271.78125 193.609375 271.6875 193.515625 271.570312 193.515625 C 271.453125 193.515625 271.359375 193.609375 271.359375 193.726562 C 271.359375 193.84375 271.453125 193.9375 271.570312 193.9375 C 271.6875 193.9375 271.78125 193.84375 271.78125 193.726562 Z M 271.78125 193.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.359375 195.347656 C 272.359375 195.230469 272.265625 195.136719 272.148438 195.136719 C 272.03125 195.136719 271.9375 195.230469 271.9375 195.347656 C 271.9375 195.464844 272.03125 195.558594 272.148438 195.558594 C 272.265625 195.558594 272.359375 195.464844 272.359375 195.347656 Z M 272.359375 195.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.101562 194.261719 C 271.101562 194.144531 271.007812 194.050781 270.890625 194.050781 C 270.773438 194.050781 270.679688 194.144531 270.679688 194.261719 C 270.679688 194.378906 270.773438 194.472656 270.890625 194.472656 C 271.007812 194.472656 271.101562 194.378906 271.101562 194.261719 Z M 271.101562 194.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.5625 193.550781 C 267.5625 193.433594 267.46875 193.339844 267.351562 193.339844 C 267.234375 193.339844 267.140625 193.433594 267.140625 193.550781 C 267.140625 193.667969 267.234375 193.761719 267.351562 193.761719 C 267.46875 193.761719 267.5625 193.667969 267.5625 193.550781 Z M 267.5625 193.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.035156 197.789062 C 264.035156 197.671875 263.941406 197.578125 263.824219 197.578125 C 263.707031 197.578125 263.613281 197.671875 263.613281 197.789062 C 263.613281 197.90625 263.707031 198 263.824219 198 C 263.941406 198 264.035156 197.90625 264.035156 197.789062 Z M 264.035156 197.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.457031 196.703125 C 260.457031 196.585938 260.363281 196.492188 260.246094 196.492188 C 260.128906 196.492188 260.035156 196.585938 260.035156 196.703125 C 260.035156 196.820312 260.128906 196.914062 260.246094 196.914062 C 260.363281 196.914062 260.457031 196.820312 260.457031 196.703125 Z M 260.457031 196.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.375 198.042969 C 259.375 197.925781 259.28125 197.832031 259.164062 197.832031 C 259.046875 197.832031 258.953125 197.925781 258.953125 198.042969 C 258.953125 198.160156 259.046875 198.253906 259.164062 198.253906 C 259.28125 198.253906 259.375 198.160156 259.375 198.042969 Z M 259.375 198.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.925781 200.355469 C 259.925781 200.238281 259.832031 200.144531 259.714844 200.144531 C 259.597656 200.144531 259.503906 200.238281 259.503906 200.355469 C 259.503906 200.472656 259.597656 200.566406 259.714844 200.566406 C 259.832031 200.566406 259.925781 200.472656 259.925781 200.355469 Z M 259.925781 200.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.566406 198.234375 C 259.566406 198.117188 259.472656 198.023438 259.355469 198.023438 C 259.238281 198.023438 259.144531 198.117188 259.144531 198.234375 C 259.144531 198.351562 259.238281 198.445312 259.355469 198.445312 C 259.472656 198.445312 259.566406 198.351562 259.566406 198.234375 Z M 259.566406 198.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.785156 198.289062 C 261.785156 198.171875 261.691406 198.078125 261.574219 198.078125 C 261.457031 198.078125 261.363281 198.171875 261.363281 198.289062 C 261.363281 198.40625 261.457031 198.5 261.574219 198.5 C 261.691406 198.5 261.785156 198.40625 261.785156 198.289062 Z M 261.785156 198.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.488281 199.050781 C 260.488281 198.933594 260.394531 198.839844 260.277344 198.839844 C 260.160156 198.839844 260.066406 198.933594 260.066406 199.050781 C 260.066406 199.167969 260.160156 199.261719 260.277344 199.261719 C 260.394531 199.261719 260.488281 199.167969 260.488281 199.050781 Z M 260.488281 199.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.875 199.457031 C 261.875 199.339844 261.78125 199.246094 261.664062 199.246094 C 261.546875 199.246094 261.453125 199.339844 261.453125 199.457031 C 261.453125 199.574219 261.546875 199.667969 261.664062 199.667969 C 261.78125 199.667969 261.875 199.574219 261.875 199.457031 Z M 261.875 199.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.507812 199.820312 C 259.507812 199.703125 259.414062 199.609375 259.296875 199.609375 C 259.179688 199.609375 259.085938 199.703125 259.085938 199.820312 C 259.085938 199.9375 259.179688 200.03125 259.296875 200.03125 C 259.414062 200.03125 259.507812 199.9375 259.507812 199.820312 Z M 259.507812 199.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.890625 199.800781 C 258.890625 199.683594 258.796875 199.589844 258.679688 199.589844 C 258.5625 199.589844 258.46875 199.683594 258.46875 199.800781 C 258.46875 199.917969 258.5625 200.011719 258.679688 200.011719 C 258.796875 200.011719 258.890625 199.917969 258.890625 199.800781 Z M 258.890625 199.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.929688 199.039062 C 259.929688 198.921875 259.835938 198.828125 259.71875 198.828125 C 259.601562 198.828125 259.507812 198.921875 259.507812 199.039062 C 259.507812 199.15625 259.601562 199.25 259.71875 199.25 C 259.835938 199.25 259.929688 199.15625 259.929688 199.039062 Z M 259.929688 199.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.214844 197.3125 C 260.214844 197.195312 260.121094 197.101562 260.003906 197.101562 C 259.886719 197.101562 259.792969 197.195312 259.792969 197.3125 C 259.792969 197.429688 259.886719 197.523438 260.003906 197.523438 C 260.121094 197.523438 260.214844 197.429688 260.214844 197.3125 Z M 260.214844 197.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.515625 198.660156 C 260.515625 198.542969 260.421875 198.449219 260.304688 198.449219 C 260.1875 198.449219 260.09375 198.542969 260.09375 198.660156 C 260.09375 198.777344 260.1875 198.871094 260.304688 198.871094 C 260.421875 198.871094 260.515625 198.777344 260.515625 198.660156 Z M 260.515625 198.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.652344 198.734375 C 259.652344 198.617188 259.558594 198.523438 259.441406 198.523438 C 259.324219 198.523438 259.230469 198.617188 259.230469 198.734375 C 259.230469 198.851562 259.324219 198.945312 259.441406 198.945312 C 259.558594 198.945312 259.652344 198.851562 259.652344 198.734375 Z M 259.652344 198.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.65625 197.363281 C 258.65625 197.246094 258.5625 197.152344 258.445312 197.152344 C 258.328125 197.152344 258.234375 197.246094 258.234375 197.363281 C 258.234375 197.480469 258.328125 197.574219 258.445312 197.574219 C 258.5625 197.574219 258.65625 197.480469 258.65625 197.363281 Z M 258.65625 197.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.363281 196.878906 C 259.363281 196.761719 259.269531 196.667969 259.152344 196.667969 C 259.035156 196.667969 258.941406 196.761719 258.941406 196.878906 C 258.941406 196.996094 259.035156 197.089844 259.152344 197.089844 C 259.269531 197.089844 259.363281 196.996094 259.363281 196.878906 Z M 259.363281 196.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.980469 194.808594 C 259.980469 194.691406 259.886719 194.597656 259.769531 194.597656 C 259.652344 194.597656 259.558594 194.691406 259.558594 194.808594 C 259.558594 194.925781 259.652344 195.019531 259.769531 195.019531 C 259.886719 195.019531 259.980469 194.925781 259.980469 194.808594 Z M 259.980469 194.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.214844 194.414062 C 262.214844 194.296875 262.121094 194.203125 262.003906 194.203125 C 261.886719 194.203125 261.792969 194.296875 261.792969 194.414062 C 261.792969 194.53125 261.886719 194.625 262.003906 194.625 C 262.121094 194.625 262.214844 194.53125 262.214844 194.414062 Z M 262.214844 194.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.339844 196.628906 C 263.339844 196.511719 263.246094 196.417969 263.128906 196.417969 C 263.011719 196.417969 262.917969 196.511719 262.917969 196.628906 C 262.917969 196.746094 263.011719 196.839844 263.128906 196.839844 C 263.246094 196.839844 263.339844 196.746094 263.339844 196.628906 Z M 263.339844 196.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.375 195.808594 C 261.375 195.691406 261.28125 195.597656 261.164062 195.597656 C 261.046875 195.597656 260.953125 195.691406 260.953125 195.808594 C 260.953125 195.925781 261.046875 196.019531 261.164062 196.019531 C 261.28125 196.019531 261.375 195.925781 261.375 195.808594 Z M 261.375 195.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.808594 199.351562 C 262.808594 199.234375 262.714844 199.140625 262.597656 199.140625 C 262.480469 199.140625 262.386719 199.234375 262.386719 199.351562 C 262.386719 199.46875 262.480469 199.5625 262.597656 199.5625 C 262.714844 199.5625 262.808594 199.46875 262.808594 199.351562 Z M 262.808594 199.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.242188 197.582031 C 262.242188 197.464844 262.148438 197.371094 262.03125 197.371094 C 261.914062 197.371094 261.820312 197.464844 261.820312 197.582031 C 261.820312 197.699219 261.914062 197.792969 262.03125 197.792969 C 262.148438 197.792969 262.242188 197.699219 262.242188 197.582031 Z M 262.242188 197.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.855469 196.84375 C 262.855469 196.726562 262.761719 196.632812 262.644531 196.632812 C 262.527344 196.632812 262.433594 196.726562 262.433594 196.84375 C 262.433594 196.960938 262.527344 197.054688 262.644531 197.054688 C 262.761719 197.054688 262.855469 196.960938 262.855469 196.84375 Z M 262.855469 196.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.691406 195.851562 C 262.691406 195.734375 262.597656 195.640625 262.480469 195.640625 C 262.363281 195.640625 262.269531 195.734375 262.269531 195.851562 C 262.269531 195.96875 262.363281 196.0625 262.480469 196.0625 C 262.597656 196.0625 262.691406 195.96875 262.691406 195.851562 Z M 262.691406 195.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.03125 197.003906 C 265.03125 196.886719 264.9375 196.792969 264.820312 196.792969 C 264.703125 196.792969 264.609375 196.886719 264.609375 197.003906 C 264.609375 197.121094 264.703125 197.214844 264.820312 197.214844 C 264.9375 197.214844 265.03125 197.121094 265.03125 197.003906 Z M 265.03125 197.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.058594 194.058594 C 268.058594 193.941406 267.964844 193.847656 267.847656 193.847656 C 267.730469 193.847656 267.636719 193.941406 267.636719 194.058594 C 267.636719 194.175781 267.730469 194.269531 267.847656 194.269531 C 267.964844 194.269531 268.058594 194.175781 268.058594 194.058594 Z M 268.058594 194.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.621094 189.800781 C 266.621094 189.683594 266.527344 189.589844 266.410156 189.589844 C 266.292969 189.589844 266.199219 189.683594 266.199219 189.800781 C 266.199219 189.917969 266.292969 190.011719 266.410156 190.011719 C 266.527344 190.011719 266.621094 189.917969 266.621094 189.800781 Z M 266.621094 189.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.679688 189.699219 C 263.679688 189.582031 263.585938 189.488281 263.46875 189.488281 C 263.351562 189.488281 263.257812 189.582031 263.257812 189.699219 C 263.257812 189.816406 263.351562 189.910156 263.46875 189.910156 C 263.585938 189.910156 263.679688 189.816406 263.679688 189.699219 Z M 263.679688 189.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.179688 190.988281 C 263.179688 190.871094 263.085938 190.777344 262.96875 190.777344 C 262.851562 190.777344 262.757812 190.871094 262.757812 190.988281 C 262.757812 191.105469 262.851562 191.199219 262.96875 191.199219 C 263.085938 191.199219 263.179688 191.105469 263.179688 190.988281 Z M 263.179688 190.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.363281 189.414062 C 261.363281 189.296875 261.269531 189.203125 261.152344 189.203125 C 261.035156 189.203125 260.941406 189.296875 260.941406 189.414062 C 260.941406 189.53125 261.035156 189.625 261.152344 189.625 C 261.269531 189.625 261.363281 189.53125 261.363281 189.414062 Z M 261.363281 189.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.777344 192.640625 C 259.777344 192.523438 259.683594 192.429688 259.566406 192.429688 C 259.449219 192.429688 259.355469 192.523438 259.355469 192.640625 C 259.355469 192.757812 259.449219 192.851562 259.566406 192.851562 C 259.683594 192.851562 259.777344 192.757812 259.777344 192.640625 Z M 259.777344 192.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.003906 192.703125 C 256.003906 192.585938 255.910156 192.492188 255.792969 192.492188 C 255.675781 192.492188 255.582031 192.585938 255.582031 192.703125 C 255.582031 192.820312 255.675781 192.914062 255.792969 192.914062 C 255.910156 192.914062 256.003906 192.820312 256.003906 192.703125 Z M 256.003906 192.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.984375 193.230469 C 259.984375 193.113281 259.890625 193.019531 259.773438 193.019531 C 259.65625 193.019531 259.5625 193.113281 259.5625 193.230469 C 259.5625 193.347656 259.65625 193.441406 259.773438 193.441406 C 259.890625 193.441406 259.984375 193.347656 259.984375 193.230469 Z M 259.984375 193.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.417969 193.019531 C 259.417969 192.902344 259.324219 192.808594 259.207031 192.808594 C 259.089844 192.808594 258.996094 192.902344 258.996094 193.019531 C 258.996094 193.136719 259.089844 193.230469 259.207031 193.230469 C 259.324219 193.230469 259.417969 193.136719 259.417969 193.019531 Z M 259.417969 193.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.484375 194.171875 C 257.484375 194.054688 257.390625 193.960938 257.273438 193.960938 C 257.15625 193.960938 257.0625 194.054688 257.0625 194.171875 C 257.0625 194.289062 257.15625 194.382812 257.273438 194.382812 C 257.390625 194.382812 257.484375 194.289062 257.484375 194.171875 Z M 257.484375 194.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.40625 193.671875 C 257.40625 193.554688 257.3125 193.460938 257.195312 193.460938 C 257.078125 193.460938 256.984375 193.554688 256.984375 193.671875 C 256.984375 193.789062 257.078125 193.882812 257.195312 193.882812 C 257.3125 193.882812 257.40625 193.789062 257.40625 193.671875 Z M 257.40625 193.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.222656 194.804688 C 258.222656 194.6875 258.128906 194.59375 258.011719 194.59375 C 257.894531 194.59375 257.800781 194.6875 257.800781 194.804688 C 257.800781 194.921875 257.894531 195.015625 258.011719 195.015625 C 258.128906 195.015625 258.222656 194.921875 258.222656 194.804688 Z M 258.222656 194.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.671875 196.875 C 257.671875 196.757812 257.578125 196.664062 257.460938 196.664062 C 257.34375 196.664062 257.25 196.757812 257.25 196.875 C 257.25 196.992188 257.34375 197.085938 257.460938 197.085938 C 257.578125 197.085938 257.671875 196.992188 257.671875 196.875 Z M 257.671875 196.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.496094 196.5 C 257.496094 196.382812 257.402344 196.289062 257.285156 196.289062 C 257.167969 196.289062 257.074219 196.382812 257.074219 196.5 C 257.074219 196.617188 257.167969 196.710938 257.285156 196.710938 C 257.402344 196.710938 257.496094 196.617188 257.496094 196.5 Z M 257.496094 196.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.671875 197.988281 C 259.671875 197.871094 259.578125 197.777344 259.460938 197.777344 C 259.34375 197.777344 259.25 197.871094 259.25 197.988281 C 259.25 198.105469 259.34375 198.199219 259.460938 198.199219 C 259.578125 198.199219 259.671875 198.105469 259.671875 197.988281 Z M 259.671875 197.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.929688 199.589844 C 258.929688 199.472656 258.835938 199.378906 258.71875 199.378906 C 258.601562 199.378906 258.507812 199.472656 258.507812 199.589844 C 258.507812 199.707031 258.601562 199.800781 258.71875 199.800781 C 258.835938 199.800781 258.929688 199.707031 258.929688 199.589844 Z M 258.929688 199.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.933594 201.261719 C 259.933594 201.144531 259.839844 201.050781 259.722656 201.050781 C 259.605469 201.050781 259.511719 201.144531 259.511719 201.261719 C 259.511719 201.378906 259.605469 201.472656 259.722656 201.472656 C 259.839844 201.472656 259.933594 201.378906 259.933594 201.261719 Z M 259.933594 201.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.640625 198.734375 C 260.640625 198.617188 260.546875 198.523438 260.429688 198.523438 C 260.3125 198.523438 260.21875 198.617188 260.21875 198.734375 C 260.21875 198.851562 260.3125 198.945312 260.429688 198.945312 C 260.546875 198.945312 260.640625 198.851562 260.640625 198.734375 Z M 260.640625 198.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.070312 199.617188 C 258.070312 199.5 257.976562 199.40625 257.859375 199.40625 C 257.742188 199.40625 257.648438 199.5 257.648438 199.617188 C 257.648438 199.734375 257.742188 199.828125 257.859375 199.828125 C 257.976562 199.828125 258.070312 199.734375 258.070312 199.617188 Z M 258.070312 199.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.667969 198.835938 C 259.667969 198.71875 259.574219 198.625 259.457031 198.625 C 259.339844 198.625 259.246094 198.71875 259.246094 198.835938 C 259.246094 198.953125 259.339844 199.046875 259.457031 199.046875 C 259.574219 199.046875 259.667969 198.953125 259.667969 198.835938 Z M 259.667969 198.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.253906 195.9375 C 258.253906 195.820312 258.160156 195.726562 258.042969 195.726562 C 257.925781 195.726562 257.832031 195.820312 257.832031 195.9375 C 257.832031 196.054688 257.925781 196.148438 258.042969 196.148438 C 258.160156 196.148438 258.253906 196.054688 258.253906 195.9375 Z M 258.253906 195.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.335938 196.273438 C 257.335938 196.15625 257.242188 196.0625 257.125 196.0625 C 257.007812 196.0625 256.914062 196.15625 256.914062 196.273438 C 256.914062 196.390625 257.007812 196.484375 257.125 196.484375 C 257.242188 196.484375 257.335938 196.390625 257.335938 196.273438 Z M 257.335938 196.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.28125 197.738281 C 262.28125 197.621094 262.1875 197.527344 262.070312 197.527344 C 261.953125 197.527344 261.859375 197.621094 261.859375 197.738281 C 261.859375 197.855469 261.953125 197.949219 262.070312 197.949219 C 262.1875 197.949219 262.28125 197.855469 262.28125 197.738281 Z M 262.28125 197.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.855469 198.78125 C 260.855469 198.664062 260.761719 198.570312 260.644531 198.570312 C 260.527344 198.570312 260.433594 198.664062 260.433594 198.78125 C 260.433594 198.898438 260.527344 198.992188 260.644531 198.992188 C 260.761719 198.992188 260.855469 198.898438 260.855469 198.78125 Z M 260.855469 198.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.273438 198.808594 C 258.273438 198.691406 258.179688 198.597656 258.0625 198.597656 C 257.945312 198.597656 257.851562 198.691406 257.851562 198.808594 C 257.851562 198.925781 257.945312 199.019531 258.0625 199.019531 C 258.179688 199.019531 258.273438 198.925781 258.273438 198.808594 Z M 258.273438 198.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.382812 194.851562 C 259.382812 194.734375 259.289062 194.640625 259.171875 194.640625 C 259.054688 194.640625 258.960938 194.734375 258.960938 194.851562 C 258.960938 194.96875 259.054688 195.0625 259.171875 195.0625 C 259.289062 195.0625 259.382812 194.96875 259.382812 194.851562 Z M 259.382812 194.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.394531 196.164062 C 259.394531 196.046875 259.300781 195.953125 259.183594 195.953125 C 259.066406 195.953125 258.972656 196.046875 258.972656 196.164062 C 258.972656 196.28125 259.066406 196.375 259.183594 196.375 C 259.300781 196.375 259.394531 196.28125 259.394531 196.164062 Z M 259.394531 196.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.003906 197.503906 C 262.003906 197.386719 261.910156 197.292969 261.792969 197.292969 C 261.675781 197.292969 261.582031 197.386719 261.582031 197.503906 C 261.582031 197.621094 261.675781 197.714844 261.792969 197.714844 C 261.910156 197.714844 262.003906 197.621094 262.003906 197.503906 Z M 262.003906 197.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.28125 198.367188 C 263.28125 198.25 263.1875 198.15625 263.070312 198.15625 C 262.953125 198.15625 262.859375 198.25 262.859375 198.367188 C 262.859375 198.484375 262.953125 198.578125 263.070312 198.578125 C 263.1875 198.578125 263.28125 198.484375 263.28125 198.367188 Z M 263.28125 198.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.335938 196.996094 C 263.335938 196.878906 263.242188 196.785156 263.125 196.785156 C 263.007812 196.785156 262.914062 196.878906 262.914062 196.996094 C 262.914062 197.113281 263.007812 197.207031 263.125 197.207031 C 263.242188 197.207031 263.335938 197.113281 263.335938 196.996094 Z M 263.335938 196.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.160156 198.765625 C 265.160156 198.648438 265.066406 198.554688 264.949219 198.554688 C 264.832031 198.554688 264.738281 198.648438 264.738281 198.765625 C 264.738281 198.882812 264.832031 198.976562 264.949219 198.976562 C 265.066406 198.976562 265.160156 198.882812 265.160156 198.765625 Z M 265.160156 198.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.875 199.964844 C 259.875 199.847656 259.78125 199.753906 259.664062 199.753906 C 259.546875 199.753906 259.453125 199.847656 259.453125 199.964844 C 259.453125 200.082031 259.546875 200.175781 259.664062 200.175781 C 259.78125 200.175781 259.875 200.082031 259.875 199.964844 Z M 259.875 199.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.472656 203.328125 C 263.472656 203.210938 263.378906 203.117188 263.261719 203.117188 C 263.144531 203.117188 263.050781 203.210938 263.050781 203.328125 C 263.050781 203.445312 263.144531 203.539062 263.261719 203.539062 C 263.378906 203.539062 263.472656 203.445312 263.472656 203.328125 Z M 263.472656 203.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.265625 202.832031 C 264.265625 202.714844 264.171875 202.621094 264.054688 202.621094 C 263.9375 202.621094 263.84375 202.714844 263.84375 202.832031 C 263.84375 202.949219 263.9375 203.042969 264.054688 203.042969 C 264.171875 203.042969 264.265625 202.949219 264.265625 202.832031 Z M 264.265625 202.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.429688 198.921875 C 265.429688 198.804688 265.335938 198.710938 265.21875 198.710938 C 265.101562 198.710938 265.007812 198.804688 265.007812 198.921875 C 265.007812 199.039062 265.101562 199.132812 265.21875 199.132812 C 265.335938 199.132812 265.429688 199.039062 265.429688 198.921875 Z M 265.429688 198.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.828125 198.140625 C 265.828125 198.023438 265.734375 197.929688 265.617188 197.929688 C 265.5 197.929688 265.40625 198.023438 265.40625 198.140625 C 265.40625 198.257812 265.5 198.351562 265.617188 198.351562 C 265.734375 198.351562 265.828125 198.257812 265.828125 198.140625 Z M 265.828125 198.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.613281 200.390625 C 262.613281 200.273438 262.519531 200.179688 262.402344 200.179688 C 262.285156 200.179688 262.191406 200.273438 262.191406 200.390625 C 262.191406 200.507812 262.285156 200.601562 262.402344 200.601562 C 262.519531 200.601562 262.613281 200.507812 262.613281 200.390625 Z M 262.613281 200.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.296875 198.976562 C 261.296875 198.859375 261.203125 198.765625 261.085938 198.765625 C 260.96875 198.765625 260.875 198.859375 260.875 198.976562 C 260.875 199.09375 260.96875 199.1875 261.085938 199.1875 C 261.203125 199.1875 261.296875 199.09375 261.296875 198.976562 Z M 261.296875 198.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.289062 196.664062 C 258.289062 196.546875 258.195312 196.453125 258.078125 196.453125 C 257.960938 196.453125 257.867188 196.546875 257.867188 196.664062 C 257.867188 196.78125 257.960938 196.875 258.078125 196.875 C 258.195312 196.875 258.289062 196.78125 258.289062 196.664062 Z M 258.289062 196.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.175781 197.855469 C 254.175781 197.738281 254.082031 197.644531 253.964844 197.644531 C 253.847656 197.644531 253.753906 197.738281 253.753906 197.855469 C 253.753906 197.972656 253.847656 198.066406 253.964844 198.066406 C 254.082031 198.066406 254.175781 197.972656 254.175781 197.855469 Z M 254.175781 197.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.617188 200.136719 C 253.617188 200.019531 253.523438 199.925781 253.40625 199.925781 C 253.289062 199.925781 253.195312 200.019531 253.195312 200.136719 C 253.195312 200.253906 253.289062 200.347656 253.40625 200.347656 C 253.523438 200.347656 253.617188 200.253906 253.617188 200.136719 Z M 253.617188 200.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.667969 194.171875 C 252.667969 194.054688 252.574219 193.960938 252.457031 193.960938 C 252.339844 193.960938 252.246094 194.054688 252.246094 194.171875 C 252.246094 194.289062 252.339844 194.382812 252.457031 194.382812 C 252.574219 194.382812 252.667969 194.289062 252.667969 194.171875 Z M 252.667969 194.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.339844 195.570312 C 252.339844 195.453125 252.246094 195.359375 252.128906 195.359375 C 252.011719 195.359375 251.917969 195.453125 251.917969 195.570312 C 251.917969 195.6875 252.011719 195.78125 252.128906 195.78125 C 252.246094 195.78125 252.339844 195.6875 252.339844 195.570312 Z M 252.339844 195.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.648438 196.808594 C 248.648438 196.691406 248.554688 196.597656 248.4375 196.597656 C 248.320312 196.597656 248.226562 196.691406 248.226562 196.808594 C 248.226562 196.925781 248.320312 197.019531 248.4375 197.019531 C 248.554688 197.019531 248.648438 196.925781 248.648438 196.808594 Z M 248.648438 196.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.765625 198.652344 C 246.765625 198.535156 246.671875 198.441406 246.554688 198.441406 C 246.4375 198.441406 246.34375 198.535156 246.34375 198.652344 C 246.34375 198.769531 246.4375 198.863281 246.554688 198.863281 C 246.671875 198.863281 246.765625 198.769531 246.765625 198.652344 Z M 246.765625 198.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.507812 200.039062 C 247.507812 199.921875 247.414062 199.828125 247.296875 199.828125 C 247.179688 199.828125 247.085938 199.921875 247.085938 200.039062 C 247.085938 200.15625 247.179688 200.25 247.296875 200.25 C 247.414062 200.25 247.507812 200.15625 247.507812 200.039062 Z M 247.507812 200.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.542969 198.335938 C 244.542969 198.21875 244.449219 198.125 244.332031 198.125 C 244.214844 198.125 244.121094 198.21875 244.121094 198.335938 C 244.121094 198.453125 244.214844 198.546875 244.332031 198.546875 C 244.449219 198.546875 244.542969 198.453125 244.542969 198.335938 Z M 244.542969 198.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.777344 195.882812 C 242.777344 195.765625 242.683594 195.671875 242.566406 195.671875 C 242.449219 195.671875 242.355469 195.765625 242.355469 195.882812 C 242.355469 196 242.449219 196.09375 242.566406 196.09375 C 242.683594 196.09375 242.777344 196 242.777344 195.882812 Z M 242.777344 195.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.378906 194.140625 C 245.378906 194.023438 245.285156 193.929688 245.167969 193.929688 C 245.050781 193.929688 244.957031 194.023438 244.957031 194.140625 C 244.957031 194.257812 245.050781 194.351562 245.167969 194.351562 C 245.285156 194.351562 245.378906 194.257812 245.378906 194.140625 Z M 245.378906 194.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.875 195.402344 C 248.875 195.285156 248.78125 195.191406 248.664062 195.191406 C 248.546875 195.191406 248.453125 195.285156 248.453125 195.402344 C 248.453125 195.519531 248.546875 195.613281 248.664062 195.613281 C 248.78125 195.613281 248.875 195.519531 248.875 195.402344 Z M 248.875 195.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.070312 197.429688 C 252.070312 197.3125 251.976562 197.21875 251.859375 197.21875 C 251.742188 197.21875 251.648438 197.3125 251.648438 197.429688 C 251.648438 197.546875 251.742188 197.640625 251.859375 197.640625 C 251.976562 197.640625 252.070312 197.546875 252.070312 197.429688 Z M 252.070312 197.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.339844 200.871094 C 250.339844 200.753906 250.246094 200.660156 250.128906 200.660156 C 250.011719 200.660156 249.917969 200.753906 249.917969 200.871094 C 249.917969 200.988281 250.011719 201.082031 250.128906 201.082031 C 250.246094 201.082031 250.339844 200.988281 250.339844 200.871094 Z M 250.339844 200.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.75 202.519531 C 254.75 202.402344 254.65625 202.308594 254.539062 202.308594 C 254.421875 202.308594 254.328125 202.402344 254.328125 202.519531 C 254.328125 202.636719 254.421875 202.730469 254.539062 202.730469 C 254.65625 202.730469 254.75 202.636719 254.75 202.519531 Z M 254.75 202.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.414062 202.0625 C 251.414062 201.945312 251.320312 201.851562 251.203125 201.851562 C 251.085938 201.851562 250.992188 201.945312 250.992188 202.0625 C 250.992188 202.179688 251.085938 202.273438 251.203125 202.273438 C 251.320312 202.273438 251.414062 202.179688 251.414062 202.0625 Z M 251.414062 202.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.414062 198.691406 C 251.414062 198.574219 251.320312 198.480469 251.203125 198.480469 C 251.085938 198.480469 250.992188 198.574219 250.992188 198.691406 C 250.992188 198.808594 251.085938 198.902344 251.203125 198.902344 C 251.320312 198.902344 251.414062 198.808594 251.414062 198.691406 Z M 251.414062 198.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.070312 200.101562 C 251.070312 199.984375 250.976562 199.890625 250.859375 199.890625 C 250.742188 199.890625 250.648438 199.984375 250.648438 200.101562 C 250.648438 200.21875 250.742188 200.3125 250.859375 200.3125 C 250.976562 200.3125 251.070312 200.21875 251.070312 200.101562 Z M 251.070312 200.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.089844 203.894531 C 246.089844 203.777344 245.996094 203.683594 245.878906 203.683594 C 245.761719 203.683594 245.667969 203.777344 245.667969 203.894531 C 245.667969 204.011719 245.761719 204.105469 245.878906 204.105469 C 245.996094 204.105469 246.089844 204.011719 246.089844 203.894531 Z M 246.089844 203.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.25 203.835938 C 247.25 203.71875 247.15625 203.625 247.039062 203.625 C 246.921875 203.625 246.828125 203.71875 246.828125 203.835938 C 246.828125 203.953125 246.921875 204.046875 247.039062 204.046875 C 247.15625 204.046875 247.25 203.953125 247.25 203.835938 Z M 247.25 203.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.484375 200.882812 C 248.484375 200.765625 248.390625 200.671875 248.273438 200.671875 C 248.15625 200.671875 248.0625 200.765625 248.0625 200.882812 C 248.0625 201 248.15625 201.09375 248.273438 201.09375 C 248.390625 201.09375 248.484375 201 248.484375 200.882812 Z M 248.484375 200.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.910156 200.039062 C 245.910156 199.921875 245.816406 199.828125 245.699219 199.828125 C 245.582031 199.828125 245.488281 199.921875 245.488281 200.039062 C 245.488281 200.15625 245.582031 200.25 245.699219 200.25 C 245.816406 200.25 245.910156 200.15625 245.910156 200.039062 Z M 245.910156 200.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.144531 199.367188 C 245.144531 199.25 245.050781 199.15625 244.933594 199.15625 C 244.816406 199.15625 244.722656 199.25 244.722656 199.367188 C 244.722656 199.484375 244.816406 199.578125 244.933594 199.578125 C 245.050781 199.578125 245.144531 199.484375 245.144531 199.367188 Z M 245.144531 199.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.015625 198 C 247.015625 197.882812 246.921875 197.789062 246.804688 197.789062 C 246.6875 197.789062 246.59375 197.882812 246.59375 198 C 246.59375 198.117188 246.6875 198.210938 246.804688 198.210938 C 246.921875 198.210938 247.015625 198.117188 247.015625 198 Z M 247.015625 198 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.0625 199.460938 C 248.0625 199.34375 247.96875 199.25 247.851562 199.25 C 247.734375 199.25 247.640625 199.34375 247.640625 199.460938 C 247.640625 199.578125 247.734375 199.671875 247.851562 199.671875 C 247.96875 199.671875 248.0625 199.578125 248.0625 199.460938 Z M 248.0625 199.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.054688 197.40625 C 245.054688 197.289062 244.960938 197.195312 244.84375 197.195312 C 244.726562 197.195312 244.632812 197.289062 244.632812 197.40625 C 244.632812 197.523438 244.726562 197.617188 244.84375 197.617188 C 244.960938 197.617188 245.054688 197.523438 245.054688 197.40625 Z M 245.054688 197.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.558594 192.84375 C 242.558594 192.726562 242.464844 192.632812 242.347656 192.632812 C 242.230469 192.632812 242.136719 192.726562 242.136719 192.84375 C 242.136719 192.960938 242.230469 193.054688 242.347656 193.054688 C 242.464844 193.054688 242.558594 192.960938 242.558594 192.84375 Z M 242.558594 192.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.992188 192.835938 C 240.992188 192.71875 240.898438 192.625 240.78125 192.625 C 240.664062 192.625 240.570312 192.71875 240.570312 192.835938 C 240.570312 192.953125 240.664062 193.046875 240.78125 193.046875 C 240.898438 193.046875 240.992188 192.953125 240.992188 192.835938 Z M 240.992188 192.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.3125 193.082031 C 238.3125 192.964844 238.21875 192.871094 238.101562 192.871094 C 237.984375 192.871094 237.890625 192.964844 237.890625 193.082031 C 237.890625 193.199219 237.984375 193.292969 238.101562 193.292969 C 238.21875 193.292969 238.3125 193.199219 238.3125 193.082031 Z M 238.3125 193.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.542969 194.363281 C 239.542969 194.246094 239.449219 194.152344 239.332031 194.152344 C 239.214844 194.152344 239.121094 194.246094 239.121094 194.363281 C 239.121094 194.480469 239.214844 194.574219 239.332031 194.574219 C 239.449219 194.574219 239.542969 194.480469 239.542969 194.363281 Z M 239.542969 194.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.339844 195.476562 C 234.339844 195.359375 234.246094 195.265625 234.128906 195.265625 C 234.011719 195.265625 233.917969 195.359375 233.917969 195.476562 C 233.917969 195.59375 234.011719 195.6875 234.128906 195.6875 C 234.246094 195.6875 234.339844 195.59375 234.339844 195.476562 Z M 234.339844 195.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.578125 191.167969 C 230.578125 191.050781 230.484375 190.957031 230.367188 190.957031 C 230.25 190.957031 230.15625 191.050781 230.15625 191.167969 C 230.15625 191.285156 230.25 191.378906 230.367188 191.378906 C 230.484375 191.378906 230.578125 191.285156 230.578125 191.167969 Z M 230.578125 191.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.339844 194.28125 C 235.339844 194.164062 235.246094 194.070312 235.128906 194.070312 C 235.011719 194.070312 234.917969 194.164062 234.917969 194.28125 C 234.917969 194.398438 235.011719 194.492188 235.128906 194.492188 C 235.246094 194.492188 235.339844 194.398438 235.339844 194.28125 Z M 235.339844 194.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.835938 194.511719 C 231.835938 194.394531 231.742188 194.300781 231.625 194.300781 C 231.507812 194.300781 231.414062 194.394531 231.414062 194.511719 C 231.414062 194.628906 231.507812 194.722656 231.625 194.722656 C 231.742188 194.722656 231.835938 194.628906 231.835938 194.511719 Z M 231.835938 194.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.394531 197.058594 C 231.394531 196.941406 231.300781 196.847656 231.183594 196.847656 C 231.066406 196.847656 230.972656 196.941406 230.972656 197.058594 C 230.972656 197.175781 231.066406 197.269531 231.183594 197.269531 C 231.300781 197.269531 231.394531 197.175781 231.394531 197.058594 Z M 231.394531 197.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.535156 194.035156 C 231.535156 193.917969 231.441406 193.824219 231.324219 193.824219 C 231.207031 193.824219 231.113281 193.917969 231.113281 194.035156 C 231.113281 194.152344 231.207031 194.246094 231.324219 194.246094 C 231.441406 194.246094 231.535156 194.152344 231.535156 194.035156 Z M 231.535156 194.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.4375 195.625 C 231.4375 195.507812 231.34375 195.414062 231.226562 195.414062 C 231.109375 195.414062 231.015625 195.507812 231.015625 195.625 C 231.015625 195.742188 231.109375 195.835938 231.226562 195.835938 C 231.34375 195.835938 231.4375 195.742188 231.4375 195.625 Z M 231.4375 195.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.855469 198.375 C 229.855469 198.257812 229.761719 198.164062 229.644531 198.164062 C 229.527344 198.164062 229.433594 198.257812 229.433594 198.375 C 229.433594 198.492188 229.527344 198.585938 229.644531 198.585938 C 229.761719 198.585938 229.855469 198.492188 229.855469 198.375 Z M 229.855469 198.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.199219 198.527344 C 229.199219 198.410156 229.105469 198.316406 228.988281 198.316406 C 228.871094 198.316406 228.777344 198.410156 228.777344 198.527344 C 228.777344 198.644531 228.871094 198.738281 228.988281 198.738281 C 229.105469 198.738281 229.199219 198.644531 229.199219 198.527344 Z M 229.199219 198.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.761719 197.488281 C 228.761719 197.371094 228.667969 197.277344 228.550781 197.277344 C 228.433594 197.277344 228.339844 197.371094 228.339844 197.488281 C 228.339844 197.605469 228.433594 197.699219 228.550781 197.699219 C 228.667969 197.699219 228.761719 197.605469 228.761719 197.488281 Z M 228.761719 197.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.6875 193.679688 C 228.6875 193.5625 228.59375 193.46875 228.476562 193.46875 C 228.359375 193.46875 228.265625 193.5625 228.265625 193.679688 C 228.265625 193.796875 228.359375 193.890625 228.476562 193.890625 C 228.59375 193.890625 228.6875 193.796875 228.6875 193.679688 Z M 228.6875 193.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.574219 192.546875 C 228.574219 192.429688 228.480469 192.335938 228.363281 192.335938 C 228.246094 192.335938 228.152344 192.429688 228.152344 192.546875 C 228.152344 192.664062 228.246094 192.757812 228.363281 192.757812 C 228.480469 192.757812 228.574219 192.664062 228.574219 192.546875 Z M 228.574219 192.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.84375 190.714844 C 226.84375 190.597656 226.75 190.503906 226.632812 190.503906 C 226.515625 190.503906 226.421875 190.597656 226.421875 190.714844 C 226.421875 190.832031 226.515625 190.925781 226.632812 190.925781 C 226.75 190.925781 226.84375 190.832031 226.84375 190.714844 Z M 226.84375 190.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.152344 192.375 C 225.152344 192.257812 225.058594 192.164062 224.941406 192.164062 C 224.824219 192.164062 224.730469 192.257812 224.730469 192.375 C 224.730469 192.492188 224.824219 192.585938 224.941406 192.585938 C 225.058594 192.585938 225.152344 192.492188 225.152344 192.375 Z M 225.152344 192.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.050781 194.238281 C 225.050781 194.121094 224.957031 194.027344 224.839844 194.027344 C 224.722656 194.027344 224.628906 194.121094 224.628906 194.238281 C 224.628906 194.355469 224.722656 194.449219 224.839844 194.449219 C 224.957031 194.449219 225.050781 194.355469 225.050781 194.238281 Z M 225.050781 194.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.226562 192.09375 C 225.226562 191.976562 225.132812 191.882812 225.015625 191.882812 C 224.898438 191.882812 224.804688 191.976562 224.804688 192.09375 C 224.804688 192.210938 224.898438 192.304688 225.015625 192.304688 C 225.132812 192.304688 225.226562 192.210938 225.226562 192.09375 Z M 225.226562 192.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.066406 188.324219 C 224.066406 188.207031 223.972656 188.113281 223.855469 188.113281 C 223.738281 188.113281 223.644531 188.207031 223.644531 188.324219 C 223.644531 188.441406 223.738281 188.535156 223.855469 188.535156 C 223.972656 188.535156 224.066406 188.441406 224.066406 188.324219 Z M 224.066406 188.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.535156 189.332031 C 224.535156 189.214844 224.441406 189.121094 224.324219 189.121094 C 224.207031 189.121094 224.113281 189.214844 224.113281 189.332031 C 224.113281 189.449219 224.207031 189.542969 224.324219 189.542969 C 224.441406 189.542969 224.535156 189.449219 224.535156 189.332031 Z M 224.535156 189.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.347656 189.308594 C 231.347656 189.191406 231.253906 189.097656 231.136719 189.097656 C 231.019531 189.097656 230.925781 189.191406 230.925781 189.308594 C 230.925781 189.425781 231.019531 189.519531 231.136719 189.519531 C 231.253906 189.519531 231.347656 189.425781 231.347656 189.308594 Z M 231.347656 189.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.414062 190.457031 C 232.414062 190.339844 232.320312 190.246094 232.203125 190.246094 C 232.085938 190.246094 231.992188 190.339844 231.992188 190.457031 C 231.992188 190.574219 232.085938 190.667969 232.203125 190.667969 C 232.320312 190.667969 232.414062 190.574219 232.414062 190.457031 Z M 232.414062 190.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.722656 189.660156 C 230.722656 189.542969 230.628906 189.449219 230.511719 189.449219 C 230.394531 189.449219 230.300781 189.542969 230.300781 189.660156 C 230.300781 189.777344 230.394531 189.871094 230.511719 189.871094 C 230.628906 189.871094 230.722656 189.777344 230.722656 189.660156 Z M 230.722656 189.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.964844 188.15625 C 229.964844 188.039062 229.871094 187.945312 229.753906 187.945312 C 229.636719 187.945312 229.542969 188.039062 229.542969 188.15625 C 229.542969 188.273438 229.636719 188.367188 229.753906 188.367188 C 229.871094 188.367188 229.964844 188.273438 229.964844 188.15625 Z M 229.964844 188.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 228.953125 189.902344 C 228.953125 189.785156 228.859375 189.691406 228.742188 189.691406 C 228.625 189.691406 228.53125 189.785156 228.53125 189.902344 C 228.53125 190.019531 228.625 190.113281 228.742188 190.113281 C 228.859375 190.113281 228.953125 190.019531 228.953125 189.902344 Z M 228.953125 189.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.453125 189.058594 C 229.453125 188.941406 229.359375 188.847656 229.242188 188.847656 C 229.125 188.847656 229.03125 188.941406 229.03125 189.058594 C 229.03125 189.175781 229.125 189.269531 229.242188 189.269531 C 229.359375 189.269531 229.453125 189.175781 229.453125 189.058594 Z M 229.453125 189.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.648438 189.757812 C 230.648438 189.640625 230.554688 189.546875 230.4375 189.546875 C 230.320312 189.546875 230.226562 189.640625 230.226562 189.757812 C 230.226562 189.875 230.320312 189.96875 230.4375 189.96875 C 230.554688 189.96875 230.648438 189.875 230.648438 189.757812 Z M 230.648438 189.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.285156 193.191406 C 230.285156 193.074219 230.191406 192.980469 230.074219 192.980469 C 229.957031 192.980469 229.863281 193.074219 229.863281 193.191406 C 229.863281 193.308594 229.957031 193.402344 230.074219 193.402344 C 230.191406 193.402344 230.285156 193.308594 230.285156 193.191406 Z M 230.285156 193.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.730469 192.945312 C 232.730469 192.828125 232.636719 192.734375 232.519531 192.734375 C 232.402344 192.734375 232.308594 192.828125 232.308594 192.945312 C 232.308594 193.0625 232.402344 193.15625 232.519531 193.15625 C 232.636719 193.15625 232.730469 193.0625 232.730469 192.945312 Z M 232.730469 192.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.011719 191.777344 C 234.011719 191.660156 233.917969 191.566406 233.800781 191.566406 C 233.683594 191.566406 233.589844 191.660156 233.589844 191.777344 C 233.589844 191.894531 233.683594 191.988281 233.800781 191.988281 C 233.917969 191.988281 234.011719 191.894531 234.011719 191.777344 Z M 234.011719 191.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.738281 195.613281 C 231.738281 195.496094 231.644531 195.402344 231.527344 195.402344 C 231.410156 195.402344 231.316406 195.496094 231.316406 195.613281 C 231.316406 195.730469 231.410156 195.824219 231.527344 195.824219 C 231.644531 195.824219 231.738281 195.730469 231.738281 195.613281 Z M 231.738281 195.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.542969 196.617188 C 230.542969 196.5 230.449219 196.40625 230.332031 196.40625 C 230.214844 196.40625 230.121094 196.5 230.121094 196.617188 C 230.121094 196.734375 230.214844 196.828125 230.332031 196.828125 C 230.449219 196.828125 230.542969 196.734375 230.542969 196.617188 Z M 230.542969 196.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.003906 199.875 C 231.003906 199.757812 230.910156 199.664062 230.792969 199.664062 C 230.675781 199.664062 230.582031 199.757812 230.582031 199.875 C 230.582031 199.992188 230.675781 200.085938 230.792969 200.085938 C 230.910156 200.085938 231.003906 199.992188 231.003906 199.875 Z M 231.003906 199.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 229.136719 203.09375 C 229.136719 202.976562 229.042969 202.882812 228.925781 202.882812 C 228.808594 202.882812 228.714844 202.976562 228.714844 203.09375 C 228.714844 203.210938 228.808594 203.304688 228.925781 203.304688 C 229.042969 203.304688 229.136719 203.210938 229.136719 203.09375 Z M 229.136719 203.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.28125 208.042969 C 230.28125 207.925781 230.1875 207.832031 230.070312 207.832031 C 229.953125 207.832031 229.859375 207.925781 229.859375 208.042969 C 229.859375 208.160156 229.953125 208.253906 230.070312 208.253906 C 230.1875 208.253906 230.28125 208.160156 230.28125 208.042969 Z M 230.28125 208.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.4375 212.957031 C 232.4375 212.839844 232.34375 212.746094 232.226562 212.746094 C 232.109375 212.746094 232.015625 212.839844 232.015625 212.957031 C 232.015625 213.074219 232.109375 213.167969 232.226562 213.167969 C 232.34375 213.167969 232.4375 213.074219 232.4375 212.957031 Z M 232.4375 212.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 232.703125 211.609375 C 232.703125 211.492188 232.609375 211.398438 232.492188 211.398438 C 232.375 211.398438 232.28125 211.492188 232.28125 211.609375 C 232.28125 211.726562 232.375 211.820312 232.492188 211.820312 C 232.609375 211.820312 232.703125 211.726562 232.703125 211.609375 Z M 232.703125 211.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.191406 214.292969 C 235.191406 214.175781 235.097656 214.082031 234.980469 214.082031 C 234.863281 214.082031 234.769531 214.175781 234.769531 214.292969 C 234.769531 214.410156 234.863281 214.503906 234.980469 214.503906 C 235.097656 214.503906 235.191406 214.410156 235.191406 214.292969 Z M 235.191406 214.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.699219 216.496094 C 239.699219 216.378906 239.605469 216.285156 239.488281 216.285156 C 239.371094 216.285156 239.277344 216.378906 239.277344 216.496094 C 239.277344 216.613281 239.371094 216.707031 239.488281 216.707031 C 239.605469 216.707031 239.699219 216.613281 239.699219 216.496094 Z M 239.699219 216.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.214844 216.101562 C 238.214844 215.984375 238.121094 215.890625 238.003906 215.890625 C 237.886719 215.890625 237.792969 215.984375 237.792969 216.101562 C 237.792969 216.21875 237.886719 216.3125 238.003906 216.3125 C 238.121094 216.3125 238.214844 216.21875 238.214844 216.101562 Z M 238.214844 216.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.203125 216.773438 C 240.203125 216.65625 240.109375 216.5625 239.992188 216.5625 C 239.875 216.5625 239.78125 216.65625 239.78125 216.773438 C 239.78125 216.890625 239.875 216.984375 239.992188 216.984375 C 240.109375 216.984375 240.203125 216.890625 240.203125 216.773438 Z M 240.203125 216.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.742188 214.710938 C 240.742188 214.59375 240.648438 214.5 240.53125 214.5 C 240.414062 214.5 240.320312 214.59375 240.320312 214.710938 C 240.320312 214.828125 240.414062 214.921875 240.53125 214.921875 C 240.648438 214.921875 240.742188 214.828125 240.742188 214.710938 Z M 240.742188 214.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.996094 216.183594 C 240.996094 216.066406 240.902344 215.972656 240.785156 215.972656 C 240.667969 215.972656 240.574219 216.066406 240.574219 216.183594 C 240.574219 216.300781 240.667969 216.394531 240.785156 216.394531 C 240.902344 216.394531 240.996094 216.300781 240.996094 216.183594 Z M 240.996094 216.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.929688 211.839844 C 238.929688 211.722656 238.835938 211.628906 238.71875 211.628906 C 238.601562 211.628906 238.507812 211.722656 238.507812 211.839844 C 238.507812 211.957031 238.601562 212.050781 238.71875 212.050781 C 238.835938 212.050781 238.929688 211.957031 238.929688 211.839844 Z M 238.929688 211.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.007812 212.609375 C 237.007812 212.492188 236.914062 212.398438 236.796875 212.398438 C 236.679688 212.398438 236.585938 212.492188 236.585938 212.609375 C 236.585938 212.726562 236.679688 212.820312 236.796875 212.820312 C 236.914062 212.820312 237.007812 212.726562 237.007812 212.609375 Z M 237.007812 212.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.007812 210.390625 C 239.007812 210.273438 238.914062 210.179688 238.796875 210.179688 C 238.679688 210.179688 238.585938 210.273438 238.585938 210.390625 C 238.585938 210.507812 238.679688 210.601562 238.796875 210.601562 C 238.914062 210.601562 239.007812 210.507812 239.007812 210.390625 Z M 239.007812 210.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.035156 208.269531 C 241.035156 208.152344 240.941406 208.058594 240.824219 208.058594 C 240.707031 208.058594 240.613281 208.152344 240.613281 208.269531 C 240.613281 208.386719 240.707031 208.480469 240.824219 208.480469 C 240.941406 208.480469 241.035156 208.386719 241.035156 208.269531 Z M 241.035156 208.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.21875 205.5625 C 243.21875 205.445312 243.125 205.351562 243.007812 205.351562 C 242.890625 205.351562 242.796875 205.445312 242.796875 205.5625 C 242.796875 205.679688 242.890625 205.773438 243.007812 205.773438 C 243.125 205.773438 243.21875 205.679688 243.21875 205.5625 Z M 243.21875 205.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.386719 207.96875 C 244.386719 207.851562 244.292969 207.757812 244.175781 207.757812 C 244.058594 207.757812 243.964844 207.851562 243.964844 207.96875 C 243.964844 208.085938 244.058594 208.179688 244.175781 208.179688 C 244.292969 208.179688 244.386719 208.085938 244.386719 207.96875 Z M 244.386719 207.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.675781 208.351562 C 245.675781 208.234375 245.582031 208.140625 245.464844 208.140625 C 245.347656 208.140625 245.253906 208.234375 245.253906 208.351562 C 245.253906 208.46875 245.347656 208.5625 245.464844 208.5625 C 245.582031 208.5625 245.675781 208.46875 245.675781 208.351562 Z M 245.675781 208.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.265625 208.578125 C 249.265625 208.460938 249.171875 208.367188 249.054688 208.367188 C 248.9375 208.367188 248.84375 208.460938 248.84375 208.578125 C 248.84375 208.695312 248.9375 208.789062 249.054688 208.789062 C 249.171875 208.789062 249.265625 208.695312 249.265625 208.578125 Z M 249.265625 208.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.898438 209.726562 C 250.898438 209.609375 250.804688 209.515625 250.6875 209.515625 C 250.570312 209.515625 250.476562 209.609375 250.476562 209.726562 C 250.476562 209.84375 250.570312 209.9375 250.6875 209.9375 C 250.804688 209.9375 250.898438 209.84375 250.898438 209.726562 Z M 250.898438 209.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.351562 212 C 249.351562 211.882812 249.257812 211.789062 249.140625 211.789062 C 249.023438 211.789062 248.929688 211.882812 248.929688 212 C 248.929688 212.117188 249.023438 212.210938 249.140625 212.210938 C 249.257812 212.210938 249.351562 212.117188 249.351562 212 Z M 249.351562 212 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.707031 213.976562 C 250.707031 213.859375 250.613281 213.765625 250.496094 213.765625 C 250.378906 213.765625 250.285156 213.859375 250.285156 213.976562 C 250.285156 214.09375 250.378906 214.1875 250.496094 214.1875 C 250.613281 214.1875 250.707031 214.09375 250.707031 213.976562 Z M 250.707031 213.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.238281 210.082031 C 250.238281 209.964844 250.144531 209.871094 250.027344 209.871094 C 249.910156 209.871094 249.816406 209.964844 249.816406 210.082031 C 249.816406 210.199219 249.910156 210.292969 250.027344 210.292969 C 250.144531 210.292969 250.238281 210.199219 250.238281 210.082031 Z M 250.238281 210.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.070312 208.359375 C 248.070312 208.242188 247.976562 208.148438 247.859375 208.148438 C 247.742188 208.148438 247.648438 208.242188 247.648438 208.359375 C 247.648438 208.476562 247.742188 208.570312 247.859375 208.570312 C 247.976562 208.570312 248.070312 208.476562 248.070312 208.359375 Z M 248.070312 208.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.957031 208.90625 C 250.957031 208.789062 250.863281 208.695312 250.746094 208.695312 C 250.628906 208.695312 250.535156 208.789062 250.535156 208.90625 C 250.535156 209.023438 250.628906 209.117188 250.746094 209.117188 C 250.863281 209.117188 250.957031 209.023438 250.957031 208.90625 Z M 250.957031 208.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.023438 208.703125 C 249.023438 208.585938 248.929688 208.492188 248.8125 208.492188 C 248.695312 208.492188 248.601562 208.585938 248.601562 208.703125 C 248.601562 208.820312 248.695312 208.914062 248.8125 208.914062 C 248.929688 208.914062 249.023438 208.820312 249.023438 208.703125 Z M 249.023438 208.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.007812 208.414062 C 250.007812 208.296875 249.914062 208.203125 249.796875 208.203125 C 249.679688 208.203125 249.585938 208.296875 249.585938 208.414062 C 249.585938 208.53125 249.679688 208.625 249.796875 208.625 C 249.914062 208.625 250.007812 208.53125 250.007812 208.414062 Z M 250.007812 208.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.644531 205.878906 C 250.644531 205.761719 250.550781 205.667969 250.433594 205.667969 C 250.316406 205.667969 250.222656 205.761719 250.222656 205.878906 C 250.222656 205.996094 250.316406 206.089844 250.433594 206.089844 C 250.550781 206.089844 250.644531 205.996094 250.644531 205.878906 Z M 250.644531 205.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.039062 205.292969 C 251.039062 205.175781 250.945312 205.082031 250.828125 205.082031 C 250.710938 205.082031 250.617188 205.175781 250.617188 205.292969 C 250.617188 205.410156 250.710938 205.503906 250.828125 205.503906 C 250.945312 205.503906 251.039062 205.410156 251.039062 205.292969 Z M 251.039062 205.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.363281 201.574219 C 252.363281 201.457031 252.269531 201.363281 252.152344 201.363281 C 252.035156 201.363281 251.941406 201.457031 251.941406 201.574219 C 251.941406 201.691406 252.035156 201.785156 252.152344 201.785156 C 252.269531 201.785156 252.363281 201.691406 252.363281 201.574219 Z M 252.363281 201.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.070312 203.09375 C 251.070312 202.976562 250.976562 202.882812 250.859375 202.882812 C 250.742188 202.882812 250.648438 202.976562 250.648438 203.09375 C 250.648438 203.210938 250.742188 203.304688 250.859375 203.304688 C 250.976562 203.304688 251.070312 203.210938 251.070312 203.09375 Z M 251.070312 203.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.472656 201.476562 C 246.472656 201.359375 246.378906 201.265625 246.261719 201.265625 C 246.144531 201.265625 246.050781 201.359375 246.050781 201.476562 C 246.050781 201.59375 246.144531 201.6875 246.261719 201.6875 C 246.378906 201.6875 246.472656 201.59375 246.472656 201.476562 Z M 246.472656 201.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.507812 206.164062 C 243.507812 206.046875 243.414062 205.953125 243.296875 205.953125 C 243.179688 205.953125 243.085938 206.046875 243.085938 206.164062 C 243.085938 206.28125 243.179688 206.375 243.296875 206.375 C 243.414062 206.375 243.507812 206.28125 243.507812 206.164062 Z M 243.507812 206.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.679688 207.695312 C 243.679688 207.578125 243.585938 207.484375 243.46875 207.484375 C 243.351562 207.484375 243.257812 207.578125 243.257812 207.695312 C 243.257812 207.8125 243.351562 207.90625 243.46875 207.90625 C 243.585938 207.90625 243.679688 207.8125 243.679688 207.695312 Z M 243.679688 207.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.367188 206.273438 C 245.367188 206.15625 245.273438 206.0625 245.15625 206.0625 C 245.039062 206.0625 244.945312 206.15625 244.945312 206.273438 C 244.945312 206.390625 245.039062 206.484375 245.15625 206.484375 C 245.273438 206.484375 245.367188 206.390625 245.367188 206.273438 Z M 245.367188 206.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.488281 205.554688 C 246.488281 205.4375 246.394531 205.34375 246.277344 205.34375 C 246.160156 205.34375 246.066406 205.4375 246.066406 205.554688 C 246.066406 205.671875 246.160156 205.765625 246.277344 205.765625 C 246.394531 205.765625 246.488281 205.671875 246.488281 205.554688 Z M 246.488281 205.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.515625 201.570312 C 246.515625 201.453125 246.421875 201.359375 246.304688 201.359375 C 246.1875 201.359375 246.09375 201.453125 246.09375 201.570312 C 246.09375 201.6875 246.1875 201.78125 246.304688 201.78125 C 246.421875 201.78125 246.515625 201.6875 246.515625 201.570312 Z M 246.515625 201.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.152344 201.742188 C 248.152344 201.625 248.058594 201.53125 247.941406 201.53125 C 247.824219 201.53125 247.730469 201.625 247.730469 201.742188 C 247.730469 201.859375 247.824219 201.953125 247.941406 201.953125 C 248.058594 201.953125 248.152344 201.859375 248.152344 201.742188 Z M 248.152344 201.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.054688 197.769531 C 250.054688 197.652344 249.960938 197.558594 249.84375 197.558594 C 249.726562 197.558594 249.632812 197.652344 249.632812 197.769531 C 249.632812 197.886719 249.726562 197.980469 249.84375 197.980469 C 249.960938 197.980469 250.054688 197.886719 250.054688 197.769531 Z M 250.054688 197.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.910156 197.910156 C 252.910156 197.792969 252.816406 197.699219 252.699219 197.699219 C 252.582031 197.699219 252.488281 197.792969 252.488281 197.910156 C 252.488281 198.027344 252.582031 198.121094 252.699219 198.121094 C 252.816406 198.121094 252.910156 198.027344 252.910156 197.910156 Z M 252.910156 197.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.980469 195.734375 C 249.980469 195.617188 249.886719 195.523438 249.769531 195.523438 C 249.652344 195.523438 249.558594 195.617188 249.558594 195.734375 C 249.558594 195.851562 249.652344 195.945312 249.769531 195.945312 C 249.886719 195.945312 249.980469 195.851562 249.980469 195.734375 Z M 249.980469 195.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.523438 195.863281 C 254.523438 195.746094 254.429688 195.652344 254.3125 195.652344 C 254.195312 195.652344 254.101562 195.746094 254.101562 195.863281 C 254.101562 195.980469 254.195312 196.074219 254.3125 196.074219 C 254.429688 196.074219 254.523438 195.980469 254.523438 195.863281 Z M 254.523438 195.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.492188 190.460938 C 257.492188 190.34375 257.398438 190.25 257.28125 190.25 C 257.164062 190.25 257.070312 190.34375 257.070312 190.460938 C 257.070312 190.578125 257.164062 190.671875 257.28125 190.671875 C 257.398438 190.671875 257.492188 190.578125 257.492188 190.460938 Z M 257.492188 190.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.550781 188.070312 C 254.550781 187.953125 254.457031 187.859375 254.339844 187.859375 C 254.222656 187.859375 254.128906 187.953125 254.128906 188.070312 C 254.128906 188.1875 254.222656 188.28125 254.339844 188.28125 C 254.457031 188.28125 254.550781 188.1875 254.550781 188.070312 Z M 254.550781 188.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.824219 190.414062 C 254.824219 190.296875 254.730469 190.203125 254.613281 190.203125 C 254.496094 190.203125 254.402344 190.296875 254.402344 190.414062 C 254.402344 190.53125 254.496094 190.625 254.613281 190.625 C 254.730469 190.625 254.824219 190.53125 254.824219 190.414062 Z M 254.824219 190.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.226562 190.71875 C 259.226562 190.601562 259.132812 190.507812 259.015625 190.507812 C 258.898438 190.507812 258.804688 190.601562 258.804688 190.71875 C 258.804688 190.835938 258.898438 190.929688 259.015625 190.929688 C 259.132812 190.929688 259.226562 190.835938 259.226562 190.71875 Z M 259.226562 190.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.457031 191.851562 C 260.457031 191.734375 260.363281 191.640625 260.246094 191.640625 C 260.128906 191.640625 260.035156 191.734375 260.035156 191.851562 C 260.035156 191.96875 260.128906 192.0625 260.246094 192.0625 C 260.363281 192.0625 260.457031 191.96875 260.457031 191.851562 Z M 260.457031 191.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.609375 191.921875 C 257.609375 191.804688 257.515625 191.710938 257.398438 191.710938 C 257.28125 191.710938 257.1875 191.804688 257.1875 191.921875 C 257.1875 192.039062 257.28125 192.132812 257.398438 192.132812 C 257.515625 192.132812 257.609375 192.039062 257.609375 191.921875 Z M 257.609375 191.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.410156 191.578125 C 259.410156 191.460938 259.316406 191.367188 259.199219 191.367188 C 259.082031 191.367188 258.988281 191.460938 258.988281 191.578125 C 258.988281 191.695312 259.082031 191.789062 259.199219 191.789062 C 259.316406 191.789062 259.410156 191.695312 259.410156 191.578125 Z M 259.410156 191.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.265625 190.46875 C 261.265625 190.351562 261.171875 190.257812 261.054688 190.257812 C 260.9375 190.257812 260.84375 190.351562 260.84375 190.46875 C 260.84375 190.585938 260.9375 190.679688 261.054688 190.679688 C 261.171875 190.679688 261.265625 190.585938 261.265625 190.46875 Z M 261.265625 190.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.136719 191.222656 C 258.136719 191.105469 258.042969 191.011719 257.925781 191.011719 C 257.808594 191.011719 257.714844 191.105469 257.714844 191.222656 C 257.714844 191.339844 257.808594 191.433594 257.925781 191.433594 C 258.042969 191.433594 258.136719 191.339844 258.136719 191.222656 Z M 258.136719 191.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.917969 191.078125 C 257.917969 190.960938 257.824219 190.867188 257.707031 190.867188 C 257.589844 190.867188 257.496094 190.960938 257.496094 191.078125 C 257.496094 191.195312 257.589844 191.289062 257.707031 191.289062 C 257.824219 191.289062 257.917969 191.195312 257.917969 191.078125 Z M 257.917969 191.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.722656 189.75 C 256.722656 189.632812 256.628906 189.539062 256.511719 189.539062 C 256.394531 189.539062 256.300781 189.632812 256.300781 189.75 C 256.300781 189.867188 256.394531 189.960938 256.511719 189.960938 C 256.628906 189.960938 256.722656 189.867188 256.722656 189.75 Z M 256.722656 189.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.496094 192.777344 C 259.496094 192.660156 259.402344 192.566406 259.285156 192.566406 C 259.167969 192.566406 259.074219 192.660156 259.074219 192.777344 C 259.074219 192.894531 259.167969 192.988281 259.285156 192.988281 C 259.402344 192.988281 259.496094 192.894531 259.496094 192.777344 Z M 259.496094 192.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.285156 192.289062 C 262.285156 192.171875 262.191406 192.078125 262.074219 192.078125 C 261.957031 192.078125 261.863281 192.171875 261.863281 192.289062 C 261.863281 192.40625 261.957031 192.5 262.074219 192.5 C 262.191406 192.5 262.285156 192.40625 262.285156 192.289062 Z M 262.285156 192.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.777344 191.753906 C 261.777344 191.636719 261.683594 191.542969 261.566406 191.542969 C 261.449219 191.542969 261.355469 191.636719 261.355469 191.753906 C 261.355469 191.871094 261.449219 191.964844 261.566406 191.964844 C 261.683594 191.964844 261.777344 191.871094 261.777344 191.753906 Z M 261.777344 191.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.9375 194.5 C 259.9375 194.382812 259.84375 194.289062 259.726562 194.289062 C 259.609375 194.289062 259.515625 194.382812 259.515625 194.5 C 259.515625 194.617188 259.609375 194.710938 259.726562 194.710938 C 259.84375 194.710938 259.9375 194.617188 259.9375 194.5 Z M 259.9375 194.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.160156 197.28125 C 257.160156 197.164062 257.066406 197.070312 256.949219 197.070312 C 256.832031 197.070312 256.738281 197.164062 256.738281 197.28125 C 256.738281 197.398438 256.832031 197.492188 256.949219 197.492188 C 257.066406 197.492188 257.160156 197.398438 257.160156 197.28125 Z M 257.160156 197.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.019531 196.175781 C 256.019531 196.058594 255.925781 195.964844 255.808594 195.964844 C 255.691406 195.964844 255.597656 196.058594 255.597656 196.175781 C 255.597656 196.292969 255.691406 196.386719 255.808594 196.386719 C 255.925781 196.386719 256.019531 196.292969 256.019531 196.175781 Z M 256.019531 196.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.335938 196.375 C 255.335938 196.257812 255.242188 196.164062 255.125 196.164062 C 255.007812 196.164062 254.914062 196.257812 254.914062 196.375 C 254.914062 196.492188 255.007812 196.585938 255.125 196.585938 C 255.242188 196.585938 255.335938 196.492188 255.335938 196.375 Z M 255.335938 196.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.394531 196.523438 C 256.394531 196.40625 256.300781 196.3125 256.183594 196.3125 C 256.066406 196.3125 255.972656 196.40625 255.972656 196.523438 C 255.972656 196.640625 256.066406 196.734375 256.183594 196.734375 C 256.300781 196.734375 256.394531 196.640625 256.394531 196.523438 Z M 256.394531 196.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.925781 196.578125 C 257.925781 196.460938 257.832031 196.367188 257.714844 196.367188 C 257.597656 196.367188 257.503906 196.460938 257.503906 196.578125 C 257.503906 196.695312 257.597656 196.789062 257.714844 196.789062 C 257.832031 196.789062 257.925781 196.695312 257.925781 196.578125 Z M 257.925781 196.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.703125 197.039062 C 257.703125 196.921875 257.609375 196.828125 257.492188 196.828125 C 257.375 196.828125 257.28125 196.921875 257.28125 197.039062 C 257.28125 197.15625 257.375 197.25 257.492188 197.25 C 257.609375 197.25 257.703125 197.15625 257.703125 197.039062 Z M 257.703125 197.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255 196.652344 C 255 196.535156 254.90625 196.441406 254.789062 196.441406 C 254.671875 196.441406 254.578125 196.535156 254.578125 196.652344 C 254.578125 196.769531 254.671875 196.863281 254.789062 196.863281 C 254.90625 196.863281 255 196.769531 255 196.652344 Z M 255 196.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.019531 197.171875 C 256.019531 197.054688 255.925781 196.960938 255.808594 196.960938 C 255.691406 196.960938 255.597656 197.054688 255.597656 197.171875 C 255.597656 197.289062 255.691406 197.382812 255.808594 197.382812 C 255.925781 197.382812 256.019531 197.289062 256.019531 197.171875 Z M 256.019531 197.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.246094 199.40625 C 255.246094 199.289062 255.152344 199.195312 255.035156 199.195312 C 254.917969 199.195312 254.824219 199.289062 254.824219 199.40625 C 254.824219 199.523438 254.917969 199.617188 255.035156 199.617188 C 255.152344 199.617188 255.246094 199.523438 255.246094 199.40625 Z M 255.246094 199.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.765625 198.96875 C 254.765625 198.851562 254.671875 198.757812 254.554688 198.757812 C 254.4375 198.757812 254.34375 198.851562 254.34375 198.96875 C 254.34375 199.085938 254.4375 199.179688 254.554688 199.179688 C 254.671875 199.179688 254.765625 199.085938 254.765625 198.96875 Z M 254.765625 198.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.941406 199.945312 C 259.941406 199.828125 259.847656 199.734375 259.730469 199.734375 C 259.613281 199.734375 259.519531 199.828125 259.519531 199.945312 C 259.519531 200.0625 259.613281 200.15625 259.730469 200.15625 C 259.847656 200.15625 259.941406 200.0625 259.941406 199.945312 Z M 259.941406 199.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.894531 196.71875 C 259.894531 196.601562 259.800781 196.507812 259.683594 196.507812 C 259.566406 196.507812 259.472656 196.601562 259.472656 196.71875 C 259.472656 196.835938 259.566406 196.929688 259.683594 196.929688 C 259.800781 196.929688 259.894531 196.835938 259.894531 196.71875 Z M 259.894531 196.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.441406 198.871094 C 260.441406 198.753906 260.347656 198.660156 260.230469 198.660156 C 260.113281 198.660156 260.019531 198.753906 260.019531 198.871094 C 260.019531 198.988281 260.113281 199.082031 260.230469 199.082031 C 260.347656 199.082031 260.441406 198.988281 260.441406 198.871094 Z M 260.441406 198.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.691406 197.019531 C 258.691406 196.902344 258.597656 196.808594 258.480469 196.808594 C 258.363281 196.808594 258.269531 196.902344 258.269531 197.019531 C 258.269531 197.136719 258.363281 197.230469 258.480469 197.230469 C 258.597656 197.230469 258.691406 197.136719 258.691406 197.019531 Z M 258.691406 197.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.359375 195.152344 C 256.359375 195.035156 256.265625 194.941406 256.148438 194.941406 C 256.03125 194.941406 255.9375 195.035156 255.9375 195.152344 C 255.9375 195.269531 256.03125 195.363281 256.148438 195.363281 C 256.265625 195.363281 256.359375 195.269531 256.359375 195.152344 Z M 256.359375 195.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.988281 193.964844 C 254.988281 193.847656 254.894531 193.753906 254.777344 193.753906 C 254.660156 193.753906 254.566406 193.847656 254.566406 193.964844 C 254.566406 194.082031 254.660156 194.175781 254.777344 194.175781 C 254.894531 194.175781 254.988281 194.082031 254.988281 193.964844 Z M 254.988281 193.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.269531 193.347656 C 256.269531 193.230469 256.175781 193.136719 256.058594 193.136719 C 255.941406 193.136719 255.847656 193.230469 255.847656 193.347656 C 255.847656 193.464844 255.941406 193.558594 256.058594 193.558594 C 256.175781 193.558594 256.269531 193.464844 256.269531 193.347656 Z M 256.269531 193.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.722656 196.980469 C 257.722656 196.863281 257.628906 196.769531 257.511719 196.769531 C 257.394531 196.769531 257.300781 196.863281 257.300781 196.980469 C 257.300781 197.097656 257.394531 197.191406 257.511719 197.191406 C 257.628906 197.191406 257.722656 197.097656 257.722656 196.980469 Z M 257.722656 196.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.332031 198.195312 C 256.332031 198.078125 256.238281 197.984375 256.121094 197.984375 C 256.003906 197.984375 255.910156 198.078125 255.910156 198.195312 C 255.910156 198.3125 256.003906 198.40625 256.121094 198.40625 C 256.238281 198.40625 256.332031 198.3125 256.332031 198.195312 Z M 256.332031 198.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.507812 200.164062 C 258.507812 200.046875 258.414062 199.953125 258.296875 199.953125 C 258.179688 199.953125 258.085938 200.046875 258.085938 200.164062 C 258.085938 200.28125 258.179688 200.375 258.296875 200.375 C 258.414062 200.375 258.507812 200.28125 258.507812 200.164062 Z M 258.507812 200.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.910156 198.710938 C 257.910156 198.59375 257.816406 198.5 257.699219 198.5 C 257.582031 198.5 257.488281 198.59375 257.488281 198.710938 C 257.488281 198.828125 257.582031 198.921875 257.699219 198.921875 C 257.816406 198.921875 257.910156 198.828125 257.910156 198.710938 Z M 257.910156 198.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.753906 196.765625 C 259.753906 196.648438 259.660156 196.554688 259.542969 196.554688 C 259.425781 196.554688 259.332031 196.648438 259.332031 196.765625 C 259.332031 196.882812 259.425781 196.976562 259.542969 196.976562 C 259.660156 196.976562 259.753906 196.882812 259.753906 196.765625 Z M 259.753906 196.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.164062 196.679688 C 262.164062 196.5625 262.070312 196.46875 261.953125 196.46875 C 261.835938 196.46875 261.742188 196.5625 261.742188 196.679688 C 261.742188 196.796875 261.835938 196.890625 261.953125 196.890625 C 262.070312 196.890625 262.164062 196.796875 262.164062 196.679688 Z M 262.164062 196.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.070312 193.074219 C 261.070312 192.957031 260.976562 192.863281 260.859375 192.863281 C 260.742188 192.863281 260.648438 192.957031 260.648438 193.074219 C 260.648438 193.191406 260.742188 193.285156 260.859375 193.285156 C 260.976562 193.285156 261.070312 193.191406 261.070312 193.074219 Z M 261.070312 193.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.75 195.578125 C 259.75 195.460938 259.65625 195.367188 259.539062 195.367188 C 259.421875 195.367188 259.328125 195.460938 259.328125 195.578125 C 259.328125 195.695312 259.421875 195.789062 259.539062 195.789062 C 259.65625 195.789062 259.75 195.695312 259.75 195.578125 Z M 259.75 195.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.480469 196.777344 C 258.480469 196.660156 258.386719 196.566406 258.269531 196.566406 C 258.152344 196.566406 258.058594 196.660156 258.058594 196.777344 C 258.058594 196.894531 258.152344 196.988281 258.269531 196.988281 C 258.386719 196.988281 258.480469 196.894531 258.480469 196.777344 Z M 258.480469 196.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.203125 196.875 C 260.203125 196.757812 260.109375 196.664062 259.992188 196.664062 C 259.875 196.664062 259.78125 196.757812 259.78125 196.875 C 259.78125 196.992188 259.875 197.085938 259.992188 197.085938 C 260.109375 197.085938 260.203125 196.992188 260.203125 196.875 Z M 260.203125 196.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.355469 197.128906 C 256.355469 197.011719 256.261719 196.917969 256.144531 196.917969 C 256.027344 196.917969 255.933594 197.011719 255.933594 197.128906 C 255.933594 197.246094 256.027344 197.339844 256.144531 197.339844 C 256.261719 197.339844 256.355469 197.246094 256.355469 197.128906 Z M 256.355469 197.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.84375 198.566406 C 255.84375 198.449219 255.75 198.355469 255.632812 198.355469 C 255.515625 198.355469 255.421875 198.449219 255.421875 198.566406 C 255.421875 198.683594 255.515625 198.777344 255.632812 198.777344 C 255.75 198.777344 255.84375 198.683594 255.84375 198.566406 Z M 255.84375 198.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.0625 194.601562 C 257.0625 194.484375 256.96875 194.390625 256.851562 194.390625 C 256.734375 194.390625 256.640625 194.484375 256.640625 194.601562 C 256.640625 194.71875 256.734375 194.8125 256.851562 194.8125 C 256.96875 194.8125 257.0625 194.71875 257.0625 194.601562 Z M 257.0625 194.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.949219 194.742188 C 259.949219 194.625 259.855469 194.53125 259.738281 194.53125 C 259.621094 194.53125 259.527344 194.625 259.527344 194.742188 C 259.527344 194.859375 259.621094 194.953125 259.738281 194.953125 C 259.855469 194.953125 259.949219 194.859375 259.949219 194.742188 Z M 259.949219 194.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.78125 196.128906 C 260.78125 196.011719 260.6875 195.917969 260.570312 195.917969 C 260.453125 195.917969 260.359375 196.011719 260.359375 196.128906 C 260.359375 196.246094 260.453125 196.339844 260.570312 196.339844 C 260.6875 196.339844 260.78125 196.246094 260.78125 196.128906 Z M 260.78125 196.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.308594 199.207031 C 256.308594 199.089844 256.214844 198.996094 256.097656 198.996094 C 255.980469 198.996094 255.886719 199.089844 255.886719 199.207031 C 255.886719 199.324219 255.980469 199.417969 256.097656 199.417969 C 256.214844 199.417969 256.308594 199.324219 256.308594 199.207031 Z M 256.308594 199.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.164062 200.421875 C 254.164062 200.304688 254.070312 200.210938 253.953125 200.210938 C 253.835938 200.210938 253.742188 200.304688 253.742188 200.421875 C 253.742188 200.539062 253.835938 200.632812 253.953125 200.632812 C 254.070312 200.632812 254.164062 200.539062 254.164062 200.421875 Z M 254.164062 200.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.121094 201.265625 C 254.121094 201.148438 254.027344 201.054688 253.910156 201.054688 C 253.792969 201.054688 253.699219 201.148438 253.699219 201.265625 C 253.699219 201.382812 253.792969 201.476562 253.910156 201.476562 C 254.027344 201.476562 254.121094 201.382812 254.121094 201.265625 Z M 254.121094 201.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.207031 200.523438 C 256.207031 200.40625 256.113281 200.3125 255.996094 200.3125 C 255.878906 200.3125 255.785156 200.40625 255.785156 200.523438 C 255.785156 200.640625 255.878906 200.734375 255.996094 200.734375 C 256.113281 200.734375 256.207031 200.640625 256.207031 200.523438 Z M 256.207031 200.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.515625 200.226562 C 257.515625 200.109375 257.421875 200.015625 257.304688 200.015625 C 257.1875 200.015625 257.09375 200.109375 257.09375 200.226562 C 257.09375 200.34375 257.1875 200.4375 257.304688 200.4375 C 257.421875 200.4375 257.515625 200.34375 257.515625 200.226562 Z M 257.515625 200.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.816406 200.023438 C 256.816406 199.90625 256.722656 199.8125 256.605469 199.8125 C 256.488281 199.8125 256.394531 199.90625 256.394531 200.023438 C 256.394531 200.140625 256.488281 200.234375 256.605469 200.234375 C 256.722656 200.234375 256.816406 200.140625 256.816406 200.023438 Z M 256.816406 200.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.5 199.828125 C 256.5 199.710938 256.40625 199.617188 256.289062 199.617188 C 256.171875 199.617188 256.078125 199.710938 256.078125 199.828125 C 256.078125 199.945312 256.171875 200.039062 256.289062 200.039062 C 256.40625 200.039062 256.5 199.945312 256.5 199.828125 Z M 256.5 199.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.921875 201.730469 C 255.921875 201.613281 255.828125 201.519531 255.710938 201.519531 C 255.59375 201.519531 255.5 201.613281 255.5 201.730469 C 255.5 201.847656 255.59375 201.941406 255.710938 201.941406 C 255.828125 201.941406 255.921875 201.847656 255.921875 201.730469 Z M 255.921875 201.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.9375 204.035156 C 253.9375 203.917969 253.84375 203.824219 253.726562 203.824219 C 253.609375 203.824219 253.515625 203.917969 253.515625 204.035156 C 253.515625 204.152344 253.609375 204.246094 253.726562 204.246094 C 253.84375 204.246094 253.9375 204.152344 253.9375 204.035156 Z M 253.9375 204.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.183594 204.09375 C 258.183594 203.976562 258.089844 203.882812 257.972656 203.882812 C 257.855469 203.882812 257.761719 203.976562 257.761719 204.09375 C 257.761719 204.210938 257.855469 204.304688 257.972656 204.304688 C 258.089844 204.304688 258.183594 204.210938 258.183594 204.09375 Z M 258.183594 204.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.914062 207.246094 C 258.914062 207.128906 258.820312 207.035156 258.703125 207.035156 C 258.585938 207.035156 258.492188 207.128906 258.492188 207.246094 C 258.492188 207.363281 258.585938 207.457031 258.703125 207.457031 C 258.820312 207.457031 258.914062 207.363281 258.914062 207.246094 Z M 258.914062 207.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.878906 208.410156 C 258.878906 208.292969 258.785156 208.199219 258.667969 208.199219 C 258.550781 208.199219 258.457031 208.292969 258.457031 208.410156 C 258.457031 208.527344 258.550781 208.621094 258.667969 208.621094 C 258.785156 208.621094 258.878906 208.527344 258.878906 208.410156 Z M 258.878906 208.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.800781 207.84375 C 254.800781 207.726562 254.707031 207.632812 254.589844 207.632812 C 254.472656 207.632812 254.378906 207.726562 254.378906 207.84375 C 254.378906 207.960938 254.472656 208.054688 254.589844 208.054688 C 254.707031 208.054688 254.800781 207.960938 254.800781 207.84375 Z M 254.800781 207.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.414062 208.101562 C 257.414062 207.984375 257.320312 207.890625 257.203125 207.890625 C 257.085938 207.890625 256.992188 207.984375 256.992188 208.101562 C 256.992188 208.21875 257.085938 208.3125 257.203125 208.3125 C 257.320312 208.3125 257.414062 208.21875 257.414062 208.101562 Z M 257.414062 208.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.097656 207.667969 C 257.097656 207.550781 257.003906 207.457031 256.886719 207.457031 C 256.769531 207.457031 256.675781 207.550781 256.675781 207.667969 C 256.675781 207.785156 256.769531 207.878906 256.886719 207.878906 C 257.003906 207.878906 257.097656 207.785156 257.097656 207.667969 Z M 257.097656 207.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.789062 204.910156 C 261.789062 204.792969 261.695312 204.699219 261.578125 204.699219 C 261.460938 204.699219 261.367188 204.792969 261.367188 204.910156 C 261.367188 205.027344 261.460938 205.121094 261.578125 205.121094 C 261.695312 205.121094 261.789062 205.027344 261.789062 204.910156 Z M 261.789062 204.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.097656 209.109375 C 260.097656 208.992188 260.003906 208.898438 259.886719 208.898438 C 259.769531 208.898438 259.675781 208.992188 259.675781 209.109375 C 259.675781 209.226562 259.769531 209.320312 259.886719 209.320312 C 260.003906 209.320312 260.097656 209.226562 260.097656 209.109375 Z M 260.097656 209.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.296875 206.855469 C 259.296875 206.738281 259.203125 206.644531 259.085938 206.644531 C 258.96875 206.644531 258.875 206.738281 258.875 206.855469 C 258.875 206.972656 258.96875 207.066406 259.085938 207.066406 C 259.203125 207.066406 259.296875 206.972656 259.296875 206.855469 Z M 259.296875 206.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.269531 208.234375 C 259.269531 208.117188 259.175781 208.023438 259.058594 208.023438 C 258.941406 208.023438 258.847656 208.117188 258.847656 208.234375 C 258.847656 208.351562 258.941406 208.445312 259.058594 208.445312 C 259.175781 208.445312 259.269531 208.351562 259.269531 208.234375 Z M 259.269531 208.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.539062 208.503906 C 260.539062 208.386719 260.445312 208.292969 260.328125 208.292969 C 260.210938 208.292969 260.117188 208.386719 260.117188 208.503906 C 260.117188 208.621094 260.210938 208.714844 260.328125 208.714844 C 260.445312 208.714844 260.539062 208.621094 260.539062 208.503906 Z M 260.539062 208.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.125 209.9375 C 257.125 209.820312 257.03125 209.726562 256.914062 209.726562 C 256.796875 209.726562 256.703125 209.820312 256.703125 209.9375 C 256.703125 210.054688 256.796875 210.148438 256.914062 210.148438 C 257.03125 210.148438 257.125 210.054688 257.125 209.9375 Z M 257.125 209.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.738281 208.371094 C 257.738281 208.253906 257.644531 208.160156 257.527344 208.160156 C 257.410156 208.160156 257.316406 208.253906 257.316406 208.371094 C 257.316406 208.488281 257.410156 208.582031 257.527344 208.582031 C 257.644531 208.582031 257.738281 208.488281 257.738281 208.371094 Z M 257.738281 208.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.769531 204.695312 C 256.769531 204.578125 256.675781 204.484375 256.558594 204.484375 C 256.441406 204.484375 256.347656 204.578125 256.347656 204.695312 C 256.347656 204.8125 256.441406 204.90625 256.558594 204.90625 C 256.675781 204.90625 256.769531 204.8125 256.769531 204.695312 Z M 256.769531 204.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.039062 203.234375 C 253.039062 203.117188 252.945312 203.023438 252.828125 203.023438 C 252.710938 203.023438 252.617188 203.117188 252.617188 203.234375 C 252.617188 203.351562 252.710938 203.445312 252.828125 203.445312 C 252.945312 203.445312 253.039062 203.351562 253.039062 203.234375 Z M 253.039062 203.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.136719 204.949219 C 255.136719 204.832031 255.042969 204.738281 254.925781 204.738281 C 254.808594 204.738281 254.714844 204.832031 254.714844 204.949219 C 254.714844 205.066406 254.808594 205.160156 254.925781 205.160156 C 255.042969 205.160156 255.136719 205.066406 255.136719 204.949219 Z M 255.136719 204.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.722656 204.078125 C 256.722656 203.960938 256.628906 203.867188 256.511719 203.867188 C 256.394531 203.867188 256.300781 203.960938 256.300781 204.078125 C 256.300781 204.195312 256.394531 204.289062 256.511719 204.289062 C 256.628906 204.289062 256.722656 204.195312 256.722656 204.078125 Z M 256.722656 204.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.425781 203.71875 C 257.425781 203.601562 257.332031 203.507812 257.214844 203.507812 C 257.097656 203.507812 257.003906 203.601562 257.003906 203.71875 C 257.003906 203.835938 257.097656 203.929688 257.214844 203.929688 C 257.332031 203.929688 257.425781 203.835938 257.425781 203.71875 Z M 257.425781 203.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.542969 204.125 C 260.542969 204.007812 260.449219 203.914062 260.332031 203.914062 C 260.214844 203.914062 260.121094 204.007812 260.121094 204.125 C 260.121094 204.242188 260.214844 204.335938 260.332031 204.335938 C 260.449219 204.335938 260.542969 204.242188 260.542969 204.125 Z M 260.542969 204.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.324219 202.09375 C 261.324219 201.976562 261.230469 201.882812 261.113281 201.882812 C 260.996094 201.882812 260.902344 201.976562 260.902344 202.09375 C 260.902344 202.210938 260.996094 202.304688 261.113281 202.304688 C 261.230469 202.304688 261.324219 202.210938 261.324219 202.09375 Z M 261.324219 202.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.144531 203.144531 C 261.144531 203.027344 261.050781 202.933594 260.933594 202.933594 C 260.816406 202.933594 260.722656 203.027344 260.722656 203.144531 C 260.722656 203.261719 260.816406 203.355469 260.933594 203.355469 C 261.050781 203.355469 261.144531 203.261719 261.144531 203.144531 Z M 261.144531 203.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.722656 206.460938 C 263.722656 206.34375 263.628906 206.25 263.511719 206.25 C 263.394531 206.25 263.300781 206.34375 263.300781 206.460938 C 263.300781 206.578125 263.394531 206.671875 263.511719 206.671875 C 263.628906 206.671875 263.722656 206.578125 263.722656 206.460938 Z M 263.722656 206.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.832031 209.550781 C 264.832031 209.433594 264.738281 209.339844 264.621094 209.339844 C 264.503906 209.339844 264.410156 209.433594 264.410156 209.550781 C 264.410156 209.667969 264.503906 209.761719 264.621094 209.761719 C 264.738281 209.761719 264.832031 209.667969 264.832031 209.550781 Z M 264.832031 209.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.851562 204.140625 C 263.851562 204.023438 263.757812 203.929688 263.640625 203.929688 C 263.523438 203.929688 263.429688 204.023438 263.429688 204.140625 C 263.429688 204.257812 263.523438 204.351562 263.640625 204.351562 C 263.757812 204.351562 263.851562 204.257812 263.851562 204.140625 Z M 263.851562 204.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.851562 203.179688 C 262.851562 203.0625 262.757812 202.96875 262.640625 202.96875 C 262.523438 202.96875 262.429688 203.0625 262.429688 203.179688 C 262.429688 203.296875 262.523438 203.390625 262.640625 203.390625 C 262.757812 203.390625 262.851562 203.296875 262.851562 203.179688 Z M 262.851562 203.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.640625 200.855469 C 264.640625 200.738281 264.546875 200.644531 264.429688 200.644531 C 264.3125 200.644531 264.21875 200.738281 264.21875 200.855469 C 264.21875 200.972656 264.3125 201.066406 264.429688 201.066406 C 264.546875 201.066406 264.640625 200.972656 264.640625 200.855469 Z M 264.640625 200.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.074219 204.847656 C 265.074219 204.730469 264.980469 204.636719 264.863281 204.636719 C 264.746094 204.636719 264.652344 204.730469 264.652344 204.847656 C 264.652344 204.964844 264.746094 205.058594 264.863281 205.058594 C 264.980469 205.058594 265.074219 204.964844 265.074219 204.847656 Z M 265.074219 204.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.234375 200.035156 C 267.234375 199.917969 267.140625 199.824219 267.023438 199.824219 C 266.90625 199.824219 266.8125 199.917969 266.8125 200.035156 C 266.8125 200.152344 266.90625 200.246094 267.023438 200.246094 C 267.140625 200.246094 267.234375 200.152344 267.234375 200.035156 Z M 267.234375 200.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.140625 197.789062 C 268.140625 197.671875 268.046875 197.578125 267.929688 197.578125 C 267.8125 197.578125 267.71875 197.671875 267.71875 197.789062 C 267.71875 197.90625 267.8125 198 267.929688 198 C 268.046875 198 268.140625 197.90625 268.140625 197.789062 Z M 268.140625 197.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.882812 198.9375 C 268.882812 198.820312 268.789062 198.726562 268.671875 198.726562 C 268.554688 198.726562 268.460938 198.820312 268.460938 198.9375 C 268.460938 199.054688 268.554688 199.148438 268.671875 199.148438 C 268.789062 199.148438 268.882812 199.054688 268.882812 198.9375 Z M 268.882812 198.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.433594 201.410156 C 269.433594 201.292969 269.339844 201.199219 269.222656 201.199219 C 269.105469 201.199219 269.011719 201.292969 269.011719 201.410156 C 269.011719 201.527344 269.105469 201.621094 269.222656 201.621094 C 269.339844 201.621094 269.433594 201.527344 269.433594 201.410156 Z M 269.433594 201.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.378906 202.058594 C 269.378906 201.941406 269.285156 201.847656 269.167969 201.847656 C 269.050781 201.847656 268.957031 201.941406 268.957031 202.058594 C 268.957031 202.175781 269.050781 202.269531 269.167969 202.269531 C 269.285156 202.269531 269.378906 202.175781 269.378906 202.058594 Z M 269.378906 202.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.78125 202.535156 C 268.78125 202.417969 268.6875 202.324219 268.570312 202.324219 C 268.453125 202.324219 268.359375 202.417969 268.359375 202.535156 C 268.359375 202.652344 268.453125 202.746094 268.570312 202.746094 C 268.6875 202.746094 268.78125 202.652344 268.78125 202.535156 Z M 268.78125 202.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.800781 202.628906 C 268.800781 202.511719 268.707031 202.417969 268.589844 202.417969 C 268.472656 202.417969 268.378906 202.511719 268.378906 202.628906 C 268.378906 202.746094 268.472656 202.839844 268.589844 202.839844 C 268.707031 202.839844 268.800781 202.746094 268.800781 202.628906 Z M 268.800781 202.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.121094 202.691406 C 267.121094 202.574219 267.027344 202.480469 266.910156 202.480469 C 266.792969 202.480469 266.699219 202.574219 266.699219 202.691406 C 266.699219 202.808594 266.792969 202.902344 266.910156 202.902344 C 267.027344 202.902344 267.121094 202.808594 267.121094 202.691406 Z M 267.121094 202.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.664062 204.875 C 266.664062 204.757812 266.570312 204.664062 266.453125 204.664062 C 266.335938 204.664062 266.242188 204.757812 266.242188 204.875 C 266.242188 204.992188 266.335938 205.085938 266.453125 205.085938 C 266.570312 205.085938 266.664062 204.992188 266.664062 204.875 Z M 266.664062 204.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.742188 200.59375 C 266.742188 200.476562 266.648438 200.382812 266.53125 200.382812 C 266.414062 200.382812 266.320312 200.476562 266.320312 200.59375 C 266.320312 200.710938 266.414062 200.804688 266.53125 200.804688 C 266.648438 200.804688 266.742188 200.710938 266.742188 200.59375 Z M 266.742188 200.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.90625 200.449219 C 268.90625 200.332031 268.8125 200.238281 268.695312 200.238281 C 268.578125 200.238281 268.484375 200.332031 268.484375 200.449219 C 268.484375 200.566406 268.578125 200.660156 268.695312 200.660156 C 268.8125 200.660156 268.90625 200.566406 268.90625 200.449219 Z M 268.90625 200.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.464844 199.894531 C 267.464844 199.777344 267.371094 199.683594 267.253906 199.683594 C 267.136719 199.683594 267.042969 199.777344 267.042969 199.894531 C 267.042969 200.011719 267.136719 200.105469 267.253906 200.105469 C 267.371094 200.105469 267.464844 200.011719 267.464844 199.894531 Z M 267.464844 199.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.222656 198.570312 C 268.222656 198.453125 268.128906 198.359375 268.011719 198.359375 C 267.894531 198.359375 267.800781 198.453125 267.800781 198.570312 C 267.800781 198.6875 267.894531 198.78125 268.011719 198.78125 C 268.128906 198.78125 268.222656 198.6875 268.222656 198.570312 Z M 268.222656 198.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.75 195.9375 C 270.75 195.820312 270.65625 195.726562 270.539062 195.726562 C 270.421875 195.726562 270.328125 195.820312 270.328125 195.9375 C 270.328125 196.054688 270.421875 196.148438 270.539062 196.148438 C 270.65625 196.148438 270.75 196.054688 270.75 195.9375 Z M 270.75 195.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.464844 197.367188 C 270.464844 197.25 270.371094 197.15625 270.253906 197.15625 C 270.136719 197.15625 270.042969 197.25 270.042969 197.367188 C 270.042969 197.484375 270.136719 197.578125 270.253906 197.578125 C 270.371094 197.578125 270.464844 197.484375 270.464844 197.367188 Z M 270.464844 197.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.714844 195.410156 C 272.714844 195.292969 272.621094 195.199219 272.503906 195.199219 C 272.386719 195.199219 272.292969 195.292969 272.292969 195.410156 C 272.292969 195.527344 272.386719 195.621094 272.503906 195.621094 C 272.621094 195.621094 272.714844 195.527344 272.714844 195.410156 Z M 272.714844 195.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.339844 196.839844 C 271.339844 196.722656 271.246094 196.628906 271.128906 196.628906 C 271.011719 196.628906 270.917969 196.722656 270.917969 196.839844 C 270.917969 196.957031 271.011719 197.050781 271.128906 197.050781 C 271.246094 197.050781 271.339844 196.957031 271.339844 196.839844 Z M 271.339844 196.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.523438 199.828125 C 267.523438 199.710938 267.429688 199.617188 267.3125 199.617188 C 267.195312 199.617188 267.101562 199.710938 267.101562 199.828125 C 267.101562 199.945312 267.195312 200.039062 267.3125 200.039062 C 267.429688 200.039062 267.523438 199.945312 267.523438 199.828125 Z M 267.523438 199.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.894531 200.789062 C 267.894531 200.671875 267.800781 200.578125 267.683594 200.578125 C 267.566406 200.578125 267.472656 200.671875 267.472656 200.789062 C 267.472656 200.90625 267.566406 201 267.683594 201 C 267.800781 201 267.894531 200.90625 267.894531 200.789062 Z M 267.894531 200.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.191406 200.445312 C 268.191406 200.328125 268.097656 200.234375 267.980469 200.234375 C 267.863281 200.234375 267.769531 200.328125 267.769531 200.445312 C 267.769531 200.5625 267.863281 200.65625 267.980469 200.65625 C 268.097656 200.65625 268.191406 200.5625 268.191406 200.445312 Z M 268.191406 200.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.167969 200.734375 C 267.167969 200.617188 267.074219 200.523438 266.957031 200.523438 C 266.839844 200.523438 266.746094 200.617188 266.746094 200.734375 C 266.746094 200.851562 266.839844 200.945312 266.957031 200.945312 C 267.074219 200.945312 267.167969 200.851562 267.167969 200.734375 Z M 267.167969 200.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.976562 201.699219 C 266.976562 201.582031 266.882812 201.488281 266.765625 201.488281 C 266.648438 201.488281 266.554688 201.582031 266.554688 201.699219 C 266.554688 201.816406 266.648438 201.910156 266.765625 201.910156 C 266.882812 201.910156 266.976562 201.816406 266.976562 201.699219 Z M 266.976562 201.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.257812 203.574219 C 266.257812 203.457031 266.164062 203.363281 266.046875 203.363281 C 265.929688 203.363281 265.835938 203.457031 265.835938 203.574219 C 265.835938 203.691406 265.929688 203.785156 266.046875 203.785156 C 266.164062 203.785156 266.257812 203.691406 266.257812 203.574219 Z M 266.257812 203.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.308594 204.699219 C 265.308594 204.582031 265.214844 204.488281 265.097656 204.488281 C 264.980469 204.488281 264.886719 204.582031 264.886719 204.699219 C 264.886719 204.816406 264.980469 204.910156 265.097656 204.910156 C 265.214844 204.910156 265.308594 204.816406 265.308594 204.699219 Z M 265.308594 204.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.132812 204.605469 C 262.132812 204.488281 262.039062 204.394531 261.921875 204.394531 C 261.804688 204.394531 261.710938 204.488281 261.710938 204.605469 C 261.710938 204.722656 261.804688 204.816406 261.921875 204.816406 C 262.039062 204.816406 262.132812 204.722656 262.132812 204.605469 Z M 262.132812 204.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.820312 200.980469 C 259.820312 200.863281 259.726562 200.769531 259.609375 200.769531 C 259.492188 200.769531 259.398438 200.863281 259.398438 200.980469 C 259.398438 201.097656 259.492188 201.191406 259.609375 201.191406 C 259.726562 201.191406 259.820312 201.097656 259.820312 200.980469 Z M 259.820312 200.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.003906 203.066406 C 259.003906 202.949219 258.910156 202.855469 258.792969 202.855469 C 258.675781 202.855469 258.582031 202.949219 258.582031 203.066406 C 258.582031 203.183594 258.675781 203.277344 258.792969 203.277344 C 258.910156 203.277344 259.003906 203.183594 259.003906 203.066406 Z M 259.003906 203.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.78125 205.734375 C 258.78125 205.617188 258.6875 205.523438 258.570312 205.523438 C 258.453125 205.523438 258.359375 205.617188 258.359375 205.734375 C 258.359375 205.851562 258.453125 205.945312 258.570312 205.945312 C 258.6875 205.945312 258.78125 205.851562 258.78125 205.734375 Z M 258.78125 205.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.277344 204.792969 C 257.277344 204.675781 257.183594 204.582031 257.066406 204.582031 C 256.949219 204.582031 256.855469 204.675781 256.855469 204.792969 C 256.855469 204.910156 256.949219 205.003906 257.066406 205.003906 C 257.183594 205.003906 257.277344 204.910156 257.277344 204.792969 Z M 257.277344 204.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.851562 201.34375 C 257.851562 201.226562 257.757812 201.132812 257.640625 201.132812 C 257.523438 201.132812 257.429688 201.226562 257.429688 201.34375 C 257.429688 201.460938 257.523438 201.554688 257.640625 201.554688 C 257.757812 201.554688 257.851562 201.460938 257.851562 201.34375 Z M 257.851562 201.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.207031 198.566406 C 257.207031 198.449219 257.113281 198.355469 256.996094 198.355469 C 256.878906 198.355469 256.785156 198.449219 256.785156 198.566406 C 256.785156 198.683594 256.878906 198.777344 256.996094 198.777344 C 257.113281 198.777344 257.207031 198.683594 257.207031 198.566406 Z M 257.207031 198.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.773438 199.453125 C 260.773438 199.335938 260.679688 199.242188 260.5625 199.242188 C 260.445312 199.242188 260.351562 199.335938 260.351562 199.453125 C 260.351562 199.570312 260.445312 199.664062 260.5625 199.664062 C 260.679688 199.664062 260.773438 199.570312 260.773438 199.453125 Z M 260.773438 199.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.527344 198.605469 C 258.527344 198.488281 258.433594 198.394531 258.316406 198.394531 C 258.199219 198.394531 258.105469 198.488281 258.105469 198.605469 C 258.105469 198.722656 258.199219 198.816406 258.316406 198.816406 C 258.433594 198.816406 258.527344 198.722656 258.527344 198.605469 Z M 258.527344 198.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.457031 199.484375 C 258.457031 199.367188 258.363281 199.273438 258.246094 199.273438 C 258.128906 199.273438 258.035156 199.367188 258.035156 199.484375 C 258.035156 199.601562 258.128906 199.695312 258.246094 199.695312 C 258.363281 199.695312 258.457031 199.601562 258.457031 199.484375 Z M 258.457031 199.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.140625 197.753906 C 258.140625 197.636719 258.046875 197.542969 257.929688 197.542969 C 257.8125 197.542969 257.71875 197.636719 257.71875 197.753906 C 257.71875 197.871094 257.8125 197.964844 257.929688 197.964844 C 258.046875 197.964844 258.140625 197.871094 258.140625 197.753906 Z M 258.140625 197.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.910156 200.941406 C 255.910156 200.824219 255.816406 200.730469 255.699219 200.730469 C 255.582031 200.730469 255.488281 200.824219 255.488281 200.941406 C 255.488281 201.058594 255.582031 201.152344 255.699219 201.152344 C 255.816406 201.152344 255.910156 201.058594 255.910156 200.941406 Z M 255.910156 200.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.953125 201.320312 C 256.953125 201.203125 256.859375 201.109375 256.742188 201.109375 C 256.625 201.109375 256.53125 201.203125 256.53125 201.320312 C 256.53125 201.4375 256.625 201.53125 256.742188 201.53125 C 256.859375 201.53125 256.953125 201.4375 256.953125 201.320312 Z M 256.953125 201.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.949219 204.183594 C 256.949219 204.066406 256.855469 203.972656 256.738281 203.972656 C 256.621094 203.972656 256.527344 204.066406 256.527344 204.183594 C 256.527344 204.300781 256.621094 204.394531 256.738281 204.394531 C 256.855469 204.394531 256.949219 204.300781 256.949219 204.183594 Z M 256.949219 204.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.652344 201.785156 C 259.652344 201.667969 259.558594 201.574219 259.441406 201.574219 C 259.324219 201.574219 259.230469 201.667969 259.230469 201.785156 C 259.230469 201.902344 259.324219 201.996094 259.441406 201.996094 C 259.558594 201.996094 259.652344 201.902344 259.652344 201.785156 Z M 259.652344 201.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.761719 202.527344 C 261.761719 202.410156 261.667969 202.316406 261.550781 202.316406 C 261.433594 202.316406 261.339844 202.410156 261.339844 202.527344 C 261.339844 202.644531 261.433594 202.738281 261.550781 202.738281 C 261.667969 202.738281 261.761719 202.644531 261.761719 202.527344 Z M 261.761719 202.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.039062 200.988281 C 261.039062 200.871094 260.945312 200.777344 260.828125 200.777344 C 260.710938 200.777344 260.617188 200.871094 260.617188 200.988281 C 260.617188 201.105469 260.710938 201.199219 260.828125 201.199219 C 260.945312 201.199219 261.039062 201.105469 261.039062 200.988281 Z M 261.039062 200.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.789062 204.921875 C 261.789062 204.804688 261.695312 204.710938 261.578125 204.710938 C 261.460938 204.710938 261.367188 204.804688 261.367188 204.921875 C 261.367188 205.039062 261.460938 205.132812 261.578125 205.132812 C 261.695312 205.132812 261.789062 205.039062 261.789062 204.921875 Z M 261.789062 204.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.746094 204.730469 C 260.746094 204.613281 260.652344 204.519531 260.535156 204.519531 C 260.417969 204.519531 260.324219 204.613281 260.324219 204.730469 C 260.324219 204.847656 260.417969 204.941406 260.535156 204.941406 C 260.652344 204.941406 260.746094 204.847656 260.746094 204.730469 Z M 260.746094 204.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.175781 206.277344 C 260.175781 206.160156 260.082031 206.066406 259.964844 206.066406 C 259.847656 206.066406 259.753906 206.160156 259.753906 206.277344 C 259.753906 206.394531 259.847656 206.488281 259.964844 206.488281 C 260.082031 206.488281 260.175781 206.394531 260.175781 206.277344 Z M 260.175781 206.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.902344 207.546875 C 260.902344 207.429688 260.808594 207.335938 260.691406 207.335938 C 260.574219 207.335938 260.480469 207.429688 260.480469 207.546875 C 260.480469 207.664062 260.574219 207.757812 260.691406 207.757812 C 260.808594 207.757812 260.902344 207.664062 260.902344 207.546875 Z M 260.902344 207.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.546875 209.070312 C 262.546875 208.953125 262.453125 208.859375 262.335938 208.859375 C 262.21875 208.859375 262.125 208.953125 262.125 209.070312 C 262.125 209.1875 262.21875 209.28125 262.335938 209.28125 C 262.453125 209.28125 262.546875 209.1875 262.546875 209.070312 Z M 262.546875 209.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.0625 212.03125 C 261.0625 211.914062 260.96875 211.820312 260.851562 211.820312 C 260.734375 211.820312 260.640625 211.914062 260.640625 212.03125 C 260.640625 212.148438 260.734375 212.242188 260.851562 212.242188 C 260.96875 212.242188 261.0625 212.148438 261.0625 212.03125 Z M 261.0625 212.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.382812 209.589844 C 258.382812 209.472656 258.289062 209.378906 258.171875 209.378906 C 258.054688 209.378906 257.960938 209.472656 257.960938 209.589844 C 257.960938 209.707031 258.054688 209.800781 258.171875 209.800781 C 258.289062 209.800781 258.382812 209.707031 258.382812 209.589844 Z M 258.382812 209.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.472656 203.429688 C 256.472656 203.3125 256.378906 203.21875 256.261719 203.21875 C 256.144531 203.21875 256.050781 203.3125 256.050781 203.429688 C 256.050781 203.546875 256.144531 203.640625 256.261719 203.640625 C 256.378906 203.640625 256.472656 203.546875 256.472656 203.429688 Z M 256.472656 203.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.542969 204.304688 C 254.542969 204.1875 254.449219 204.09375 254.332031 204.09375 C 254.214844 204.09375 254.121094 204.1875 254.121094 204.304688 C 254.121094 204.421875 254.214844 204.515625 254.332031 204.515625 C 254.449219 204.515625 254.542969 204.421875 254.542969 204.304688 Z M 254.542969 204.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.570312 201.964844 C 255.570312 201.847656 255.476562 201.753906 255.359375 201.753906 C 255.242188 201.753906 255.148438 201.847656 255.148438 201.964844 C 255.148438 202.082031 255.242188 202.175781 255.359375 202.175781 C 255.476562 202.175781 255.570312 202.082031 255.570312 201.964844 Z M 255.570312 201.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.117188 201.242188 C 258.117188 201.125 258.023438 201.03125 257.90625 201.03125 C 257.789062 201.03125 257.695312 201.125 257.695312 201.242188 C 257.695312 201.359375 257.789062 201.453125 257.90625 201.453125 C 258.023438 201.453125 258.117188 201.359375 258.117188 201.242188 Z M 258.117188 201.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.558594 205.644531 C 260.558594 205.527344 260.464844 205.433594 260.347656 205.433594 C 260.230469 205.433594 260.136719 205.527344 260.136719 205.644531 C 260.136719 205.761719 260.230469 205.855469 260.347656 205.855469 C 260.464844 205.855469 260.558594 205.761719 260.558594 205.644531 Z M 260.558594 205.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.632812 208.429688 C 261.632812 208.3125 261.539062 208.21875 261.421875 208.21875 C 261.304688 208.21875 261.210938 208.3125 261.210938 208.429688 C 261.210938 208.546875 261.304688 208.640625 261.421875 208.640625 C 261.539062 208.640625 261.632812 208.546875 261.632812 208.429688 Z M 261.632812 208.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.402344 212.417969 C 263.402344 212.300781 263.308594 212.207031 263.191406 212.207031 C 263.074219 212.207031 262.980469 212.300781 262.980469 212.417969 C 262.980469 212.535156 263.074219 212.628906 263.191406 212.628906 C 263.308594 212.628906 263.402344 212.535156 263.402344 212.417969 Z M 263.402344 212.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.957031 210.746094 C 263.957031 210.628906 263.863281 210.535156 263.746094 210.535156 C 263.628906 210.535156 263.535156 210.628906 263.535156 210.746094 C 263.535156 210.863281 263.628906 210.957031 263.746094 210.957031 C 263.863281 210.957031 263.957031 210.863281 263.957031 210.746094 Z M 263.957031 210.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.292969 206.628906 C 266.292969 206.511719 266.199219 206.417969 266.082031 206.417969 C 265.964844 206.417969 265.871094 206.511719 265.871094 206.628906 C 265.871094 206.746094 265.964844 206.839844 266.082031 206.839844 C 266.199219 206.839844 266.292969 206.746094 266.292969 206.628906 Z M 266.292969 206.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.058594 209.460938 C 267.058594 209.34375 266.964844 209.25 266.847656 209.25 C 266.730469 209.25 266.636719 209.34375 266.636719 209.460938 C 266.636719 209.578125 266.730469 209.671875 266.847656 209.671875 C 266.964844 209.671875 267.058594 209.578125 267.058594 209.460938 Z M 267.058594 209.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.792969 209.386719 C 264.792969 209.269531 264.699219 209.175781 264.582031 209.175781 C 264.464844 209.175781 264.371094 209.269531 264.371094 209.386719 C 264.371094 209.503906 264.464844 209.597656 264.582031 209.597656 C 264.699219 209.597656 264.792969 209.503906 264.792969 209.386719 Z M 264.792969 209.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.980469 211.132812 C 263.980469 211.015625 263.886719 210.921875 263.769531 210.921875 C 263.652344 210.921875 263.558594 211.015625 263.558594 211.132812 C 263.558594 211.25 263.652344 211.34375 263.769531 211.34375 C 263.886719 211.34375 263.980469 211.25 263.980469 211.132812 Z M 263.980469 211.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.410156 210.320312 C 260.410156 210.203125 260.316406 210.109375 260.199219 210.109375 C 260.082031 210.109375 259.988281 210.203125 259.988281 210.320312 C 259.988281 210.4375 260.082031 210.53125 260.199219 210.53125 C 260.316406 210.53125 260.410156 210.4375 260.410156 210.320312 Z M 260.410156 210.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.167969 206.765625 C 260.167969 206.648438 260.074219 206.554688 259.957031 206.554688 C 259.839844 206.554688 259.746094 206.648438 259.746094 206.765625 C 259.746094 206.882812 259.839844 206.976562 259.957031 206.976562 C 260.074219 206.976562 260.167969 206.882812 260.167969 206.765625 Z M 260.167969 206.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.410156 205.179688 C 256.410156 205.0625 256.316406 204.96875 256.199219 204.96875 C 256.082031 204.96875 255.988281 205.0625 255.988281 205.179688 C 255.988281 205.296875 256.082031 205.390625 256.199219 205.390625 C 256.316406 205.390625 256.410156 205.296875 256.410156 205.179688 Z M 256.410156 205.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.386719 210.683594 C 256.386719 210.566406 256.292969 210.472656 256.175781 210.472656 C 256.058594 210.472656 255.964844 210.566406 255.964844 210.683594 C 255.964844 210.800781 256.058594 210.894531 256.175781 210.894531 C 256.292969 210.894531 256.386719 210.800781 256.386719 210.683594 Z M 256.386719 210.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.804688 210.90625 C 257.804688 210.789062 257.710938 210.695312 257.59375 210.695312 C 257.476562 210.695312 257.382812 210.789062 257.382812 210.90625 C 257.382812 211.023438 257.476562 211.117188 257.59375 211.117188 C 257.710938 211.117188 257.804688 211.023438 257.804688 210.90625 Z M 257.804688 210.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.6875 213.082031 C 263.6875 212.964844 263.59375 212.871094 263.476562 212.871094 C 263.359375 212.871094 263.265625 212.964844 263.265625 213.082031 C 263.265625 213.199219 263.359375 213.292969 263.476562 213.292969 C 263.59375 213.292969 263.6875 213.199219 263.6875 213.082031 Z M 263.6875 213.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.945312 211.871094 C 262.945312 211.753906 262.851562 211.660156 262.734375 211.660156 C 262.617188 211.660156 262.523438 211.753906 262.523438 211.871094 C 262.523438 211.988281 262.617188 212.082031 262.734375 212.082031 C 262.851562 212.082031 262.945312 211.988281 262.945312 211.871094 Z M 262.945312 211.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.148438 211.160156 C 264.148438 211.042969 264.054688 210.949219 263.9375 210.949219 C 263.820312 210.949219 263.726562 211.042969 263.726562 211.160156 C 263.726562 211.277344 263.820312 211.371094 263.9375 211.371094 C 264.054688 211.371094 264.148438 211.277344 264.148438 211.160156 Z M 264.148438 211.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.179688 209.355469 C 263.179688 209.238281 263.085938 209.144531 262.96875 209.144531 C 262.851562 209.144531 262.757812 209.238281 262.757812 209.355469 C 262.757812 209.472656 262.851562 209.566406 262.96875 209.566406 C 263.085938 209.566406 263.179688 209.472656 263.179688 209.355469 Z M 263.179688 209.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.417969 215.046875 C 263.417969 214.929688 263.324219 214.835938 263.207031 214.835938 C 263.089844 214.835938 262.996094 214.929688 262.996094 215.046875 C 262.996094 215.164062 263.089844 215.257812 263.207031 215.257812 C 263.324219 215.257812 263.417969 215.164062 263.417969 215.046875 Z M 263.417969 215.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.679688 215.402344 C 261.679688 215.285156 261.585938 215.191406 261.46875 215.191406 C 261.351562 215.191406 261.257812 215.285156 261.257812 215.402344 C 261.257812 215.519531 261.351562 215.613281 261.46875 215.613281 C 261.585938 215.613281 261.679688 215.519531 261.679688 215.402344 Z M 261.679688 215.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.710938 214.589844 C 264.710938 214.472656 264.617188 214.378906 264.5 214.378906 C 264.382812 214.378906 264.289062 214.472656 264.289062 214.589844 C 264.289062 214.707031 264.382812 214.800781 264.5 214.800781 C 264.617188 214.800781 264.710938 214.707031 264.710938 214.589844 Z M 264.710938 214.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.058594 214.789062 C 261.058594 214.671875 260.964844 214.578125 260.847656 214.578125 C 260.730469 214.578125 260.636719 214.671875 260.636719 214.789062 C 260.636719 214.90625 260.730469 215 260.847656 215 C 260.964844 215 261.058594 214.90625 261.058594 214.789062 Z M 261.058594 214.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.382812 212.742188 C 263.382812 212.625 263.289062 212.53125 263.171875 212.53125 C 263.054688 212.53125 262.960938 212.625 262.960938 212.742188 C 262.960938 212.859375 263.054688 212.953125 263.171875 212.953125 C 263.289062 212.953125 263.382812 212.859375 263.382812 212.742188 Z M 263.382812 212.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.210938 212.808594 C 260.210938 212.691406 260.117188 212.597656 260 212.597656 C 259.882812 212.597656 259.789062 212.691406 259.789062 212.808594 C 259.789062 212.925781 259.882812 213.019531 260 213.019531 C 260.117188 213.019531 260.210938 212.925781 260.210938 212.808594 Z M 260.210938 212.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.402344 215.992188 C 259.402344 215.875 259.308594 215.78125 259.191406 215.78125 C 259.074219 215.78125 258.980469 215.875 258.980469 215.992188 C 258.980469 216.109375 259.074219 216.203125 259.191406 216.203125 C 259.308594 216.203125 259.402344 216.109375 259.402344 215.992188 Z M 259.402344 215.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.347656 212.289062 C 261.347656 212.171875 261.253906 212.078125 261.136719 212.078125 C 261.019531 212.078125 260.925781 212.171875 260.925781 212.289062 C 260.925781 212.40625 261.019531 212.5 261.136719 212.5 C 261.253906 212.5 261.347656 212.40625 261.347656 212.289062 Z M 261.347656 212.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.953125 212.097656 C 256.953125 211.980469 256.859375 211.886719 256.742188 211.886719 C 256.625 211.886719 256.53125 211.980469 256.53125 212.097656 C 256.53125 212.214844 256.625 212.308594 256.742188 212.308594 C 256.859375 212.308594 256.953125 212.214844 256.953125 212.097656 Z M 256.953125 212.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.433594 210.699219 C 258.433594 210.582031 258.339844 210.488281 258.222656 210.488281 C 258.105469 210.488281 258.011719 210.582031 258.011719 210.699219 C 258.011719 210.816406 258.105469 210.910156 258.222656 210.910156 C 258.339844 210.910156 258.433594 210.816406 258.433594 210.699219 Z M 258.433594 210.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.300781 208.917969 C 259.300781 208.800781 259.207031 208.707031 259.089844 208.707031 C 258.972656 208.707031 258.878906 208.800781 258.878906 208.917969 C 258.878906 209.035156 258.972656 209.128906 259.089844 209.128906 C 259.207031 209.128906 259.300781 209.035156 259.300781 208.917969 Z M 259.300781 208.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.378906 207.023438 C 260.378906 206.90625 260.285156 206.8125 260.167969 206.8125 C 260.050781 206.8125 259.957031 206.90625 259.957031 207.023438 C 259.957031 207.140625 260.050781 207.234375 260.167969 207.234375 C 260.285156 207.234375 260.378906 207.140625 260.378906 207.023438 Z M 260.378906 207.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.769531 209.582031 C 261.769531 209.464844 261.675781 209.371094 261.558594 209.371094 C 261.441406 209.371094 261.347656 209.464844 261.347656 209.582031 C 261.347656 209.699219 261.441406 209.792969 261.558594 209.792969 C 261.675781 209.792969 261.769531 209.699219 261.769531 209.582031 Z M 261.769531 209.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.980469 210.175781 C 265.980469 210.058594 265.886719 209.964844 265.769531 209.964844 C 265.652344 209.964844 265.558594 210.058594 265.558594 210.175781 C 265.558594 210.292969 265.652344 210.386719 265.769531 210.386719 C 265.886719 210.386719 265.980469 210.292969 265.980469 210.175781 Z M 265.980469 210.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.460938 210.265625 C 264.460938 210.148438 264.367188 210.054688 264.25 210.054688 C 264.132812 210.054688 264.039062 210.148438 264.039062 210.265625 C 264.039062 210.382812 264.132812 210.476562 264.25 210.476562 C 264.367188 210.476562 264.460938 210.382812 264.460938 210.265625 Z M 264.460938 210.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.207031 208.734375 C 267.207031 208.617188 267.113281 208.523438 266.996094 208.523438 C 266.878906 208.523438 266.785156 208.617188 266.785156 208.734375 C 266.785156 208.851562 266.878906 208.945312 266.996094 208.945312 C 267.113281 208.945312 267.207031 208.851562 267.207031 208.734375 Z M 267.207031 208.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.160156 207.195312 C 266.160156 207.078125 266.066406 206.984375 265.949219 206.984375 C 265.832031 206.984375 265.738281 207.078125 265.738281 207.195312 C 265.738281 207.3125 265.832031 207.40625 265.949219 207.40625 C 266.066406 207.40625 266.160156 207.3125 266.160156 207.195312 Z M 266.160156 207.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.1875 204.71875 C 268.1875 204.601562 268.09375 204.507812 267.976562 204.507812 C 267.859375 204.507812 267.765625 204.601562 267.765625 204.71875 C 267.765625 204.835938 267.859375 204.929688 267.976562 204.929688 C 268.09375 204.929688 268.1875 204.835938 268.1875 204.71875 Z M 268.1875 204.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.527344 204.230469 C 266.527344 204.113281 266.433594 204.019531 266.316406 204.019531 C 266.199219 204.019531 266.105469 204.113281 266.105469 204.230469 C 266.105469 204.347656 266.199219 204.441406 266.316406 204.441406 C 266.433594 204.441406 266.527344 204.347656 266.527344 204.230469 Z M 266.527344 204.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.726562 206.863281 C 266.726562 206.746094 266.632812 206.652344 266.515625 206.652344 C 266.398438 206.652344 266.304688 206.746094 266.304688 206.863281 C 266.304688 206.980469 266.398438 207.074219 266.515625 207.074219 C 266.632812 207.074219 266.726562 206.980469 266.726562 206.863281 Z M 266.726562 206.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.65625 204.292969 C 264.65625 204.175781 264.5625 204.082031 264.445312 204.082031 C 264.328125 204.082031 264.234375 204.175781 264.234375 204.292969 C 264.234375 204.410156 264.328125 204.503906 264.445312 204.503906 C 264.5625 204.503906 264.65625 204.410156 264.65625 204.292969 Z M 264.65625 204.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.574219 205.867188 C 261.574219 205.75 261.480469 205.65625 261.363281 205.65625 C 261.246094 205.65625 261.152344 205.75 261.152344 205.867188 C 261.152344 205.984375 261.246094 206.078125 261.363281 206.078125 C 261.480469 206.078125 261.574219 205.984375 261.574219 205.867188 Z M 261.574219 205.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.609375 207.128906 C 264.609375 207.011719 264.515625 206.917969 264.398438 206.917969 C 264.28125 206.917969 264.1875 207.011719 264.1875 207.128906 C 264.1875 207.246094 264.28125 207.339844 264.398438 207.339844 C 264.515625 207.339844 264.609375 207.246094 264.609375 207.128906 Z M 264.609375 207.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.320312 204.691406 C 263.320312 204.574219 263.226562 204.480469 263.109375 204.480469 C 262.992188 204.480469 262.898438 204.574219 262.898438 204.691406 C 262.898438 204.808594 262.992188 204.902344 263.109375 204.902344 C 263.226562 204.902344 263.320312 204.808594 263.320312 204.691406 Z M 263.320312 204.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.371094 202.171875 C 268.371094 202.054688 268.277344 201.960938 268.160156 201.960938 C 268.042969 201.960938 267.949219 202.054688 267.949219 202.171875 C 267.949219 202.289062 268.042969 202.382812 268.160156 202.382812 C 268.277344 202.382812 268.371094 202.289062 268.371094 202.171875 Z M 268.371094 202.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.316406 204.335938 C 266.316406 204.21875 266.222656 204.125 266.105469 204.125 C 265.988281 204.125 265.894531 204.21875 265.894531 204.335938 C 265.894531 204.453125 265.988281 204.546875 266.105469 204.546875 C 266.222656 204.546875 266.316406 204.453125 266.316406 204.335938 Z M 266.316406 204.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.824219 201.976562 C 268.824219 201.859375 268.730469 201.765625 268.613281 201.765625 C 268.496094 201.765625 268.402344 201.859375 268.402344 201.976562 C 268.402344 202.09375 268.496094 202.1875 268.613281 202.1875 C 268.730469 202.1875 268.824219 202.09375 268.824219 201.976562 Z M 268.824219 201.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.21875 204.34375 C 270.21875 204.226562 270.125 204.132812 270.007812 204.132812 C 269.890625 204.132812 269.796875 204.226562 269.796875 204.34375 C 269.796875 204.460938 269.890625 204.554688 270.007812 204.554688 C 270.125 204.554688 270.21875 204.460938 270.21875 204.34375 Z M 270.21875 204.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.632812 207.945312 C 272.632812 207.828125 272.539062 207.734375 272.421875 207.734375 C 272.304688 207.734375 272.210938 207.828125 272.210938 207.945312 C 272.210938 208.0625 272.304688 208.15625 272.421875 208.15625 C 272.539062 208.15625 272.632812 208.0625 272.632812 207.945312 Z M 272.632812 207.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.308594 206.5 C 273.308594 206.382812 273.214844 206.289062 273.097656 206.289062 C 272.980469 206.289062 272.886719 206.382812 272.886719 206.5 C 272.886719 206.617188 272.980469 206.710938 273.097656 206.710938 C 273.214844 206.710938 273.308594 206.617188 273.308594 206.5 Z M 273.308594 206.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.375 206.800781 C 267.375 206.683594 267.28125 206.589844 267.164062 206.589844 C 267.046875 206.589844 266.953125 206.683594 266.953125 206.800781 C 266.953125 206.917969 267.046875 207.011719 267.164062 207.011719 C 267.28125 207.011719 267.375 206.917969 267.375 206.800781 Z M 267.375 206.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.039062 213.324219 C 264.039062 213.207031 263.945312 213.113281 263.828125 213.113281 C 263.710938 213.113281 263.617188 213.207031 263.617188 213.324219 C 263.617188 213.441406 263.710938 213.535156 263.828125 213.535156 C 263.945312 213.535156 264.039062 213.441406 264.039062 213.324219 Z M 264.039062 213.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.695312 211.058594 C 266.695312 210.941406 266.601562 210.847656 266.484375 210.847656 C 266.367188 210.847656 266.273438 210.941406 266.273438 211.058594 C 266.273438 211.175781 266.367188 211.269531 266.484375 211.269531 C 266.601562 211.269531 266.695312 211.175781 266.695312 211.058594 Z M 266.695312 211.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.425781 214.007812 C 268.425781 213.890625 268.332031 213.796875 268.214844 213.796875 C 268.097656 213.796875 268.003906 213.890625 268.003906 214.007812 C 268.003906 214.125 268.097656 214.21875 268.214844 214.21875 C 268.332031 214.21875 268.425781 214.125 268.425781 214.007812 Z M 268.425781 214.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.371094 213.710938 C 269.371094 213.59375 269.277344 213.5 269.160156 213.5 C 269.042969 213.5 268.949219 213.59375 268.949219 213.710938 C 268.949219 213.828125 269.042969 213.921875 269.160156 213.921875 C 269.277344 213.921875 269.371094 213.828125 269.371094 213.710938 Z M 269.371094 213.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.085938 213.828125 C 272.085938 213.710938 271.992188 213.617188 271.875 213.617188 C 271.757812 213.617188 271.664062 213.710938 271.664062 213.828125 C 271.664062 213.945312 271.757812 214.039062 271.875 214.039062 C 271.992188 214.039062 272.085938 213.945312 272.085938 213.828125 Z M 272.085938 213.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.445312 212.050781 C 269.445312 211.933594 269.351562 211.839844 269.234375 211.839844 C 269.117188 211.839844 269.023438 211.933594 269.023438 212.050781 C 269.023438 212.167969 269.117188 212.261719 269.234375 212.261719 C 269.351562 212.261719 269.445312 212.167969 269.445312 212.050781 Z M 269.445312 212.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.710938 210.496094 C 266.710938 210.378906 266.617188 210.285156 266.5 210.285156 C 266.382812 210.285156 266.289062 210.378906 266.289062 210.496094 C 266.289062 210.613281 266.382812 210.707031 266.5 210.707031 C 266.617188 210.707031 266.710938 210.613281 266.710938 210.496094 Z M 266.710938 210.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.285156 212.03125 C 269.285156 211.914062 269.191406 211.820312 269.074219 211.820312 C 268.957031 211.820312 268.863281 211.914062 268.863281 212.03125 C 268.863281 212.148438 268.957031 212.242188 269.074219 212.242188 C 269.191406 212.242188 269.285156 212.148438 269.285156 212.03125 Z M 269.285156 212.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.308594 212.089844 C 268.308594 211.972656 268.214844 211.878906 268.097656 211.878906 C 267.980469 211.878906 267.886719 211.972656 267.886719 212.089844 C 267.886719 212.207031 267.980469 212.300781 268.097656 212.300781 C 268.214844 212.300781 268.308594 212.207031 268.308594 212.089844 Z M 268.308594 212.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.527344 209.050781 C 268.527344 208.933594 268.433594 208.839844 268.316406 208.839844 C 268.199219 208.839844 268.105469 208.933594 268.105469 209.050781 C 268.105469 209.167969 268.199219 209.261719 268.316406 209.261719 C 268.433594 209.261719 268.527344 209.167969 268.527344 209.050781 Z M 268.527344 209.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.328125 210.734375 C 267.328125 210.617188 267.234375 210.523438 267.117188 210.523438 C 267 210.523438 266.90625 210.617188 266.90625 210.734375 C 266.90625 210.851562 267 210.945312 267.117188 210.945312 C 267.234375 210.945312 267.328125 210.851562 267.328125 210.734375 Z M 267.328125 210.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.691406 210.582031 C 265.691406 210.464844 265.597656 210.371094 265.480469 210.371094 C 265.363281 210.371094 265.269531 210.464844 265.269531 210.582031 C 265.269531 210.699219 265.363281 210.792969 265.480469 210.792969 C 265.597656 210.792969 265.691406 210.699219 265.691406 210.582031 Z M 265.691406 210.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.621094 208.011719 C 266.621094 207.894531 266.527344 207.800781 266.410156 207.800781 C 266.292969 207.800781 266.199219 207.894531 266.199219 208.011719 C 266.199219 208.128906 266.292969 208.222656 266.410156 208.222656 C 266.527344 208.222656 266.621094 208.128906 266.621094 208.011719 Z M 266.621094 208.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.070312 209.105469 C 266.070312 208.988281 265.976562 208.894531 265.859375 208.894531 C 265.742188 208.894531 265.648438 208.988281 265.648438 209.105469 C 265.648438 209.222656 265.742188 209.316406 265.859375 209.316406 C 265.976562 209.316406 266.070312 209.222656 266.070312 209.105469 Z M 266.070312 209.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.230469 212.023438 C 266.230469 211.90625 266.136719 211.8125 266.019531 211.8125 C 265.902344 211.8125 265.808594 211.90625 265.808594 212.023438 C 265.808594 212.140625 265.902344 212.234375 266.019531 212.234375 C 266.136719 212.234375 266.230469 212.140625 266.230469 212.023438 Z M 266.230469 212.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.710938 210.679688 C 265.710938 210.5625 265.617188 210.46875 265.5 210.46875 C 265.382812 210.46875 265.289062 210.5625 265.289062 210.679688 C 265.289062 210.796875 265.382812 210.890625 265.5 210.890625 C 265.617188 210.890625 265.710938 210.796875 265.710938 210.679688 Z M 265.710938 210.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.109375 210.886719 C 266.109375 210.769531 266.015625 210.675781 265.898438 210.675781 C 265.78125 210.675781 265.6875 210.769531 265.6875 210.886719 C 265.6875 211.003906 265.78125 211.097656 265.898438 211.097656 C 266.015625 211.097656 266.109375 211.003906 266.109375 210.886719 Z M 266.109375 210.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.304688 210.804688 C 266.304688 210.6875 266.210938 210.59375 266.09375 210.59375 C 265.976562 210.59375 265.882812 210.6875 265.882812 210.804688 C 265.882812 210.921875 265.976562 211.015625 266.09375 211.015625 C 266.210938 211.015625 266.304688 210.921875 266.304688 210.804688 Z M 266.304688 210.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.742188 208.558594 C 266.742188 208.441406 266.648438 208.347656 266.53125 208.347656 C 266.414062 208.347656 266.320312 208.441406 266.320312 208.558594 C 266.320312 208.675781 266.414062 208.769531 266.53125 208.769531 C 266.648438 208.769531 266.742188 208.675781 266.742188 208.558594 Z M 266.742188 208.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.640625 215.003906 C 268.640625 214.886719 268.546875 214.792969 268.429688 214.792969 C 268.3125 214.792969 268.21875 214.886719 268.21875 215.003906 C 268.21875 215.121094 268.3125 215.214844 268.429688 215.214844 C 268.546875 215.214844 268.640625 215.121094 268.640625 215.003906 Z M 268.640625 215.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.226562 215.710938 C 272.226562 215.59375 272.132812 215.5 272.015625 215.5 C 271.898438 215.5 271.804688 215.59375 271.804688 215.710938 C 271.804688 215.828125 271.898438 215.921875 272.015625 215.921875 C 272.132812 215.921875 272.226562 215.828125 272.226562 215.710938 Z M 272.226562 215.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.894531 215.898438 C 273.894531 215.78125 273.800781 215.6875 273.683594 215.6875 C 273.566406 215.6875 273.472656 215.78125 273.472656 215.898438 C 273.472656 216.015625 273.566406 216.109375 273.683594 216.109375 C 273.800781 216.109375 273.894531 216.015625 273.894531 215.898438 Z M 273.894531 215.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.492188 216.535156 C 274.492188 216.417969 274.398438 216.324219 274.28125 216.324219 C 274.164062 216.324219 274.070312 216.417969 274.070312 216.535156 C 274.070312 216.652344 274.164062 216.746094 274.28125 216.746094 C 274.398438 216.746094 274.492188 216.652344 274.492188 216.535156 Z M 274.492188 216.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.191406 215.1875 C 273.191406 215.070312 273.097656 214.976562 272.980469 214.976562 C 272.863281 214.976562 272.769531 215.070312 272.769531 215.1875 C 272.769531 215.304688 272.863281 215.398438 272.980469 215.398438 C 273.097656 215.398438 273.191406 215.304688 273.191406 215.1875 Z M 273.191406 215.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.324219 212.339844 C 270.324219 212.222656 270.230469 212.128906 270.113281 212.128906 C 269.996094 212.128906 269.902344 212.222656 269.902344 212.339844 C 269.902344 212.457031 269.996094 212.550781 270.113281 212.550781 C 270.230469 212.550781 270.324219 212.457031 270.324219 212.339844 Z M 270.324219 212.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.363281 215.886719 C 269.363281 215.769531 269.269531 215.675781 269.152344 215.675781 C 269.035156 215.675781 268.941406 215.769531 268.941406 215.886719 C 268.941406 216.003906 269.035156 216.097656 269.152344 216.097656 C 269.269531 216.097656 269.363281 216.003906 269.363281 215.886719 Z M 269.363281 215.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.199219 213.214844 C 270.199219 213.097656 270.105469 213.003906 269.988281 213.003906 C 269.871094 213.003906 269.777344 213.097656 269.777344 213.214844 C 269.777344 213.332031 269.871094 213.425781 269.988281 213.425781 C 270.105469 213.425781 270.199219 213.332031 270.199219 213.214844 Z M 270.199219 213.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.894531 209.839844 C 268.894531 209.722656 268.800781 209.628906 268.683594 209.628906 C 268.566406 209.628906 268.472656 209.722656 268.472656 209.839844 C 268.472656 209.957031 268.566406 210.050781 268.683594 210.050781 C 268.800781 210.050781 268.894531 209.957031 268.894531 209.839844 Z M 268.894531 209.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.738281 211.691406 C 268.738281 211.574219 268.644531 211.480469 268.527344 211.480469 C 268.410156 211.480469 268.316406 211.574219 268.316406 211.691406 C 268.316406 211.808594 268.410156 211.902344 268.527344 211.902344 C 268.644531 211.902344 268.738281 211.808594 268.738281 211.691406 Z M 268.738281 211.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.433594 206.992188 C 269.433594 206.875 269.339844 206.78125 269.222656 206.78125 C 269.105469 206.78125 269.011719 206.875 269.011719 206.992188 C 269.011719 207.109375 269.105469 207.203125 269.222656 207.203125 C 269.339844 207.203125 269.433594 207.109375 269.433594 206.992188 Z M 269.433594 206.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.363281 206.019531 C 270.363281 205.902344 270.269531 205.808594 270.152344 205.808594 C 270.035156 205.808594 269.941406 205.902344 269.941406 206.019531 C 269.941406 206.136719 270.035156 206.230469 270.152344 206.230469 C 270.269531 206.230469 270.363281 206.136719 270.363281 206.019531 Z M 270.363281 206.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.441406 204.015625 C 272.441406 203.898438 272.347656 203.804688 272.230469 203.804688 C 272.113281 203.804688 272.019531 203.898438 272.019531 204.015625 C 272.019531 204.132812 272.113281 204.226562 272.230469 204.226562 C 272.347656 204.226562 272.441406 204.132812 272.441406 204.015625 Z M 272.441406 204.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.097656 207.683594 C 273.097656 207.566406 273.003906 207.472656 272.886719 207.472656 C 272.769531 207.472656 272.675781 207.566406 272.675781 207.683594 C 272.675781 207.800781 272.769531 207.894531 272.886719 207.894531 C 273.003906 207.894531 273.097656 207.800781 273.097656 207.683594 Z M 273.097656 207.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.144531 207.339844 C 277.144531 207.222656 277.050781 207.128906 276.933594 207.128906 C 276.816406 207.128906 276.722656 207.222656 276.722656 207.339844 C 276.722656 207.457031 276.816406 207.550781 276.933594 207.550781 C 277.050781 207.550781 277.144531 207.457031 277.144531 207.339844 Z M 277.144531 207.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.488281 208.148438 C 277.488281 208.03125 277.394531 207.9375 277.277344 207.9375 C 277.160156 207.9375 277.066406 208.03125 277.066406 208.148438 C 277.066406 208.265625 277.160156 208.359375 277.277344 208.359375 C 277.394531 208.359375 277.488281 208.265625 277.488281 208.148438 Z M 277.488281 208.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.300781 208.773438 C 278.300781 208.65625 278.207031 208.5625 278.089844 208.5625 C 277.972656 208.5625 277.878906 208.65625 277.878906 208.773438 C 277.878906 208.890625 277.972656 208.984375 278.089844 208.984375 C 278.207031 208.984375 278.300781 208.890625 278.300781 208.773438 Z M 278.300781 208.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.59375 208.890625 C 281.59375 208.773438 281.5 208.679688 281.382812 208.679688 C 281.265625 208.679688 281.171875 208.773438 281.171875 208.890625 C 281.171875 209.007812 281.265625 209.101562 281.382812 209.101562 C 281.5 209.101562 281.59375 209.007812 281.59375 208.890625 Z M 281.59375 208.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.128906 211.054688 C 275.128906 210.9375 275.035156 210.84375 274.917969 210.84375 C 274.800781 210.84375 274.707031 210.9375 274.707031 211.054688 C 274.707031 211.171875 274.800781 211.265625 274.917969 211.265625 C 275.035156 211.265625 275.128906 211.171875 275.128906 211.054688 Z M 275.128906 211.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.019531 210.582031 C 274.019531 210.464844 273.925781 210.371094 273.808594 210.371094 C 273.691406 210.371094 273.597656 210.464844 273.597656 210.582031 C 273.597656 210.699219 273.691406 210.792969 273.808594 210.792969 C 273.925781 210.792969 274.019531 210.699219 274.019531 210.582031 Z M 274.019531 210.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.4375 210.667969 C 275.4375 210.550781 275.34375 210.457031 275.226562 210.457031 C 275.109375 210.457031 275.015625 210.550781 275.015625 210.667969 C 275.015625 210.785156 275.109375 210.878906 275.226562 210.878906 C 275.34375 210.878906 275.4375 210.785156 275.4375 210.667969 Z M 275.4375 210.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.613281 207.964844 C 274.613281 207.847656 274.519531 207.753906 274.402344 207.753906 C 274.285156 207.753906 274.191406 207.847656 274.191406 207.964844 C 274.191406 208.082031 274.285156 208.175781 274.402344 208.175781 C 274.519531 208.175781 274.613281 208.082031 274.613281 207.964844 Z M 274.613281 207.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.964844 207.550781 C 276.964844 207.433594 276.871094 207.339844 276.753906 207.339844 C 276.636719 207.339844 276.542969 207.433594 276.542969 207.550781 C 276.542969 207.667969 276.636719 207.761719 276.753906 207.761719 C 276.871094 207.761719 276.964844 207.667969 276.964844 207.550781 Z M 276.964844 207.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.242188 207.753906 C 282.242188 207.636719 282.148438 207.542969 282.03125 207.542969 C 281.914062 207.542969 281.820312 207.636719 281.820312 207.753906 C 281.820312 207.871094 281.914062 207.964844 282.03125 207.964844 C 282.148438 207.964844 282.242188 207.871094 282.242188 207.753906 Z M 282.242188 207.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.871094 204.617188 C 280.871094 204.5 280.777344 204.40625 280.660156 204.40625 C 280.542969 204.40625 280.449219 204.5 280.449219 204.617188 C 280.449219 204.734375 280.542969 204.828125 280.660156 204.828125 C 280.777344 204.828125 280.871094 204.734375 280.871094 204.617188 Z M 280.871094 204.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.308594 204.460938 C 281.308594 204.34375 281.214844 204.25 281.097656 204.25 C 280.980469 204.25 280.886719 204.34375 280.886719 204.460938 C 280.886719 204.578125 280.980469 204.671875 281.097656 204.671875 C 281.214844 204.671875 281.308594 204.578125 281.308594 204.460938 Z M 281.308594 204.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.535156 204.515625 C 280.535156 204.398438 280.441406 204.304688 280.324219 204.304688 C 280.207031 204.304688 280.113281 204.398438 280.113281 204.515625 C 280.113281 204.632812 280.207031 204.726562 280.324219 204.726562 C 280.441406 204.726562 280.535156 204.632812 280.535156 204.515625 Z M 280.535156 204.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.714844 205.375 C 280.714844 205.257812 280.621094 205.164062 280.503906 205.164062 C 280.386719 205.164062 280.292969 205.257812 280.292969 205.375 C 280.292969 205.492188 280.386719 205.585938 280.503906 205.585938 C 280.621094 205.585938 280.714844 205.492188 280.714844 205.375 Z M 280.714844 205.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.359375 208.648438 C 282.359375 208.53125 282.265625 208.4375 282.148438 208.4375 C 282.03125 208.4375 281.9375 208.53125 281.9375 208.648438 C 281.9375 208.765625 282.03125 208.859375 282.148438 208.859375 C 282.265625 208.859375 282.359375 208.765625 282.359375 208.648438 Z M 282.359375 208.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.105469 207.671875 C 281.105469 207.554688 281.011719 207.460938 280.894531 207.460938 C 280.777344 207.460938 280.683594 207.554688 280.683594 207.671875 C 280.683594 207.789062 280.777344 207.882812 280.894531 207.882812 C 281.011719 207.882812 281.105469 207.789062 281.105469 207.671875 Z M 281.105469 207.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.011719 210.960938 C 282.011719 210.84375 281.917969 210.75 281.800781 210.75 C 281.683594 210.75 281.589844 210.84375 281.589844 210.960938 C 281.589844 211.078125 281.683594 211.171875 281.800781 211.171875 C 281.917969 211.171875 282.011719 211.078125 282.011719 210.960938 Z M 282.011719 210.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.484375 213.933594 C 281.484375 213.816406 281.390625 213.722656 281.273438 213.722656 C 281.15625 213.722656 281.0625 213.816406 281.0625 213.933594 C 281.0625 214.050781 281.15625 214.144531 281.273438 214.144531 C 281.390625 214.144531 281.484375 214.050781 281.484375 213.933594 Z M 281.484375 213.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.539062 215.707031 C 280.539062 215.589844 280.445312 215.496094 280.328125 215.496094 C 280.210938 215.496094 280.117188 215.589844 280.117188 215.707031 C 280.117188 215.824219 280.210938 215.917969 280.328125 215.917969 C 280.445312 215.917969 280.539062 215.824219 280.539062 215.707031 Z M 280.539062 215.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.734375 211.175781 C 283.734375 211.058594 283.640625 210.964844 283.523438 210.964844 C 283.40625 210.964844 283.3125 211.058594 283.3125 211.175781 C 283.3125 211.292969 283.40625 211.386719 283.523438 211.386719 C 283.640625 211.386719 283.734375 211.292969 283.734375 211.175781 Z M 283.734375 211.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.289062 213.90625 C 286.289062 213.789062 286.195312 213.695312 286.078125 213.695312 C 285.960938 213.695312 285.867188 213.789062 285.867188 213.90625 C 285.867188 214.023438 285.960938 214.117188 286.078125 214.117188 C 286.195312 214.117188 286.289062 214.023438 286.289062 213.90625 Z M 286.289062 213.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 288.417969 216.21875 C 288.417969 216.101562 288.324219 216.007812 288.207031 216.007812 C 288.089844 216.007812 287.996094 216.101562 287.996094 216.21875 C 287.996094 216.335938 288.089844 216.429688 288.207031 216.429688 C 288.324219 216.429688 288.417969 216.335938 288.417969 216.21875 Z M 288.417969 216.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.035156 218.683594 C 285.035156 218.566406 284.941406 218.472656 284.824219 218.472656 C 284.707031 218.472656 284.613281 218.566406 284.613281 218.683594 C 284.613281 218.800781 284.707031 218.894531 284.824219 218.894531 C 284.941406 218.894531 285.035156 218.800781 285.035156 218.683594 Z M 285.035156 218.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.082031 218.644531 C 284.082031 218.527344 283.988281 218.433594 283.871094 218.433594 C 283.753906 218.433594 283.660156 218.527344 283.660156 218.644531 C 283.660156 218.761719 283.753906 218.855469 283.871094 218.855469 C 283.988281 218.855469 284.082031 218.761719 284.082031 218.644531 Z M 284.082031 218.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.234375 216.453125 C 287.234375 216.335938 287.140625 216.242188 287.023438 216.242188 C 286.90625 216.242188 286.8125 216.335938 286.8125 216.453125 C 286.8125 216.570312 286.90625 216.664062 287.023438 216.664062 C 287.140625 216.664062 287.234375 216.570312 287.234375 216.453125 Z M 287.234375 216.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.238281 217.878906 C 284.238281 217.761719 284.144531 217.667969 284.027344 217.667969 C 283.910156 217.667969 283.816406 217.761719 283.816406 217.878906 C 283.816406 217.996094 283.910156 218.089844 284.027344 218.089844 C 284.144531 218.089844 284.238281 217.996094 284.238281 217.878906 Z M 284.238281 217.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.410156 215.984375 C 284.410156 215.867188 284.316406 215.773438 284.199219 215.773438 C 284.082031 215.773438 283.988281 215.867188 283.988281 215.984375 C 283.988281 216.101562 284.082031 216.195312 284.199219 216.195312 C 284.316406 216.195312 284.410156 216.101562 284.410156 215.984375 Z M 284.410156 215.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.496094 217.488281 C 289.496094 217.371094 289.402344 217.277344 289.285156 217.277344 C 289.167969 217.277344 289.074219 217.371094 289.074219 217.488281 C 289.074219 217.605469 289.167969 217.699219 289.285156 217.699219 C 289.402344 217.699219 289.496094 217.605469 289.496094 217.488281 Z M 289.496094 217.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.960938 220.613281 C 285.960938 220.496094 285.867188 220.402344 285.75 220.402344 C 285.632812 220.402344 285.539062 220.496094 285.539062 220.613281 C 285.539062 220.730469 285.632812 220.824219 285.75 220.824219 C 285.867188 220.824219 285.960938 220.730469 285.960938 220.613281 Z M 285.960938 220.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.476562 217.195312 C 285.476562 217.078125 285.382812 216.984375 285.265625 216.984375 C 285.148438 216.984375 285.054688 217.078125 285.054688 217.195312 C 285.054688 217.3125 285.148438 217.40625 285.265625 217.40625 C 285.382812 217.40625 285.476562 217.3125 285.476562 217.195312 Z M 285.476562 217.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.671875 217.324219 C 285.671875 217.207031 285.578125 217.113281 285.460938 217.113281 C 285.34375 217.113281 285.25 217.207031 285.25 217.324219 C 285.25 217.441406 285.34375 217.535156 285.460938 217.535156 C 285.578125 217.535156 285.671875 217.441406 285.671875 217.324219 Z M 285.671875 217.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.011719 215.878906 C 287.011719 215.761719 286.917969 215.667969 286.800781 215.667969 C 286.683594 215.667969 286.589844 215.761719 286.589844 215.878906 C 286.589844 215.996094 286.683594 216.089844 286.800781 216.089844 C 286.917969 216.089844 287.011719 215.996094 287.011719 215.878906 Z M 287.011719 215.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 290.417969 217.335938 C 290.417969 217.21875 290.324219 217.125 290.207031 217.125 C 290.089844 217.125 289.996094 217.21875 289.996094 217.335938 C 289.996094 217.453125 290.089844 217.546875 290.207031 217.546875 C 290.324219 217.546875 290.417969 217.453125 290.417969 217.335938 Z M 290.417969 217.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.917969 217.546875 C 292.917969 217.429688 292.824219 217.335938 292.707031 217.335938 C 292.589844 217.335938 292.496094 217.429688 292.496094 217.546875 C 292.496094 217.664062 292.589844 217.757812 292.707031 217.757812 C 292.824219 217.757812 292.917969 217.664062 292.917969 217.546875 Z M 292.917969 217.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 292.542969 213.226562 C 292.542969 213.109375 292.449219 213.015625 292.332031 213.015625 C 292.214844 213.015625 292.121094 213.109375 292.121094 213.226562 C 292.121094 213.34375 292.214844 213.4375 292.332031 213.4375 C 292.449219 213.4375 292.542969 213.34375 292.542969 213.226562 Z M 292.542969 213.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.6875 213.136719 C 289.6875 213.019531 289.59375 212.925781 289.476562 212.925781 C 289.359375 212.925781 289.265625 213.019531 289.265625 213.136719 C 289.265625 213.253906 289.359375 213.347656 289.476562 213.347656 C 289.59375 213.347656 289.6875 213.253906 289.6875 213.136719 Z M 289.6875 213.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.523438 210.539062 C 289.523438 210.421875 289.429688 210.328125 289.3125 210.328125 C 289.195312 210.328125 289.101562 210.421875 289.101562 210.539062 C 289.101562 210.65625 289.195312 210.75 289.3125 210.75 C 289.429688 210.75 289.523438 210.65625 289.523438 210.539062 Z M 289.523438 210.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.898438 215.789062 C 287.898438 215.671875 287.804688 215.578125 287.6875 215.578125 C 287.570312 215.578125 287.476562 215.671875 287.476562 215.789062 C 287.476562 215.90625 287.570312 216 287.6875 216 C 287.804688 216 287.898438 215.90625 287.898438 215.789062 Z M 287.898438 215.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.84375 212.390625 C 287.84375 212.273438 287.75 212.179688 287.632812 212.179688 C 287.515625 212.179688 287.421875 212.273438 287.421875 212.390625 C 287.421875 212.507812 287.515625 212.601562 287.632812 212.601562 C 287.75 212.601562 287.84375 212.507812 287.84375 212.390625 Z M 287.84375 212.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.179688 215.121094 C 287.179688 215.003906 287.085938 214.910156 286.96875 214.910156 C 286.851562 214.910156 286.757812 215.003906 286.757812 215.121094 C 286.757812 215.238281 286.851562 215.332031 286.96875 215.332031 C 287.085938 215.332031 287.179688 215.238281 287.179688 215.121094 Z M 287.179688 215.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.265625 215.320312 C 287.265625 215.203125 287.171875 215.109375 287.054688 215.109375 C 286.9375 215.109375 286.84375 215.203125 286.84375 215.320312 C 286.84375 215.4375 286.9375 215.53125 287.054688 215.53125 C 287.171875 215.53125 287.265625 215.4375 287.265625 215.320312 Z M 287.265625 215.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.085938 213.742188 C 284.085938 213.625 283.992188 213.53125 283.875 213.53125 C 283.757812 213.53125 283.664062 213.625 283.664062 213.742188 C 283.664062 213.859375 283.757812 213.953125 283.875 213.953125 C 283.992188 213.953125 284.085938 213.859375 284.085938 213.742188 Z M 284.085938 213.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.375 212.414062 C 285.375 212.296875 285.28125 212.203125 285.164062 212.203125 C 285.046875 212.203125 284.953125 212.296875 284.953125 212.414062 C 284.953125 212.53125 285.046875 212.625 285.164062 212.625 C 285.28125 212.625 285.375 212.53125 285.375 212.414062 Z M 285.375 212.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.496094 215.539062 C 281.496094 215.421875 281.402344 215.328125 281.285156 215.328125 C 281.167969 215.328125 281.074219 215.421875 281.074219 215.539062 C 281.074219 215.65625 281.167969 215.75 281.285156 215.75 C 281.402344 215.75 281.496094 215.65625 281.496094 215.539062 Z M 281.496094 215.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.769531 217.128906 C 282.769531 217.011719 282.675781 216.917969 282.558594 216.917969 C 282.441406 216.917969 282.347656 217.011719 282.347656 217.128906 C 282.347656 217.246094 282.441406 217.339844 282.558594 217.339844 C 282.675781 217.339844 282.769531 217.246094 282.769531 217.128906 Z M 282.769531 217.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 282.230469 217.554688 C 282.230469 217.4375 282.136719 217.34375 282.019531 217.34375 C 281.902344 217.34375 281.808594 217.4375 281.808594 217.554688 C 281.808594 217.671875 281.902344 217.765625 282.019531 217.765625 C 282.136719 217.765625 282.230469 217.671875 282.230469 217.554688 Z M 282.230469 217.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.144531 217.230469 C 283.144531 217.113281 283.050781 217.019531 282.933594 217.019531 C 282.816406 217.019531 282.722656 217.113281 282.722656 217.230469 C 282.722656 217.347656 282.816406 217.441406 282.933594 217.441406 C 283.050781 217.441406 283.144531 217.347656 283.144531 217.230469 Z M 283.144531 217.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.816406 216.496094 C 283.816406 216.378906 283.722656 216.285156 283.605469 216.285156 C 283.488281 216.285156 283.394531 216.378906 283.394531 216.496094 C 283.394531 216.613281 283.488281 216.707031 283.605469 216.707031 C 283.722656 216.707031 283.816406 216.613281 283.816406 216.496094 Z M 283.816406 216.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.597656 213.773438 C 287.597656 213.65625 287.503906 213.5625 287.386719 213.5625 C 287.269531 213.5625 287.175781 213.65625 287.175781 213.773438 C 287.175781 213.890625 287.269531 213.984375 287.386719 213.984375 C 287.503906 213.984375 287.597656 213.890625 287.597656 213.773438 Z M 287.597656 213.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.933594 215.8125 C 285.933594 215.695312 285.839844 215.601562 285.722656 215.601562 C 285.605469 215.601562 285.511719 215.695312 285.511719 215.8125 C 285.511719 215.929688 285.605469 216.023438 285.722656 216.023438 C 285.839844 216.023438 285.933594 215.929688 285.933594 215.8125 Z M 285.933594 215.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.667969 214.523438 C 284.667969 214.40625 284.574219 214.3125 284.457031 214.3125 C 284.339844 214.3125 284.246094 214.40625 284.246094 214.523438 C 284.246094 214.640625 284.339844 214.734375 284.457031 214.734375 C 284.574219 214.734375 284.667969 214.640625 284.667969 214.523438 Z M 284.667969 214.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 285.105469 211.160156 C 285.105469 211.042969 285.011719 210.949219 284.894531 210.949219 C 284.777344 210.949219 284.683594 211.042969 284.683594 211.160156 C 284.683594 211.277344 284.777344 211.371094 284.894531 211.371094 C 285.011719 211.371094 285.105469 211.277344 285.105469 211.160156 Z M 285.105469 211.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.039062 211.09375 C 287.039062 210.976562 286.945312 210.882812 286.828125 210.882812 C 286.710938 210.882812 286.617188 210.976562 286.617188 211.09375 C 286.617188 211.210938 286.710938 211.304688 286.828125 211.304688 C 286.945312 211.304688 287.039062 211.210938 287.039062 211.09375 Z M 287.039062 211.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 287.085938 210.464844 C 287.085938 210.347656 286.992188 210.253906 286.875 210.253906 C 286.757812 210.253906 286.664062 210.347656 286.664062 210.464844 C 286.664062 210.582031 286.757812 210.675781 286.875 210.675781 C 286.992188 210.675781 287.085938 210.582031 287.085938 210.464844 Z M 287.085938 210.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.511719 207.539062 C 286.511719 207.421875 286.417969 207.328125 286.300781 207.328125 C 286.183594 207.328125 286.089844 207.421875 286.089844 207.539062 C 286.089844 207.65625 286.183594 207.75 286.300781 207.75 C 286.417969 207.75 286.511719 207.65625 286.511719 207.539062 Z M 286.511719 207.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 286.496094 207.449219 C 286.496094 207.332031 286.402344 207.238281 286.285156 207.238281 C 286.167969 207.238281 286.074219 207.332031 286.074219 207.449219 C 286.074219 207.566406 286.167969 207.660156 286.285156 207.660156 C 286.402344 207.660156 286.496094 207.566406 286.496094 207.449219 Z M 286.496094 207.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 289.042969 208.71875 C 289.042969 208.601562 288.949219 208.507812 288.832031 208.507812 C 288.714844 208.507812 288.621094 208.601562 288.621094 208.71875 C 288.621094 208.835938 288.714844 208.929688 288.832031 208.929688 C 288.949219 208.929688 289.042969 208.835938 289.042969 208.71875 Z M 289.042969 208.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 284.644531 207.535156 C 284.644531 207.417969 284.550781 207.324219 284.433594 207.324219 C 284.316406 207.324219 284.222656 207.417969 284.222656 207.535156 C 284.222656 207.652344 284.316406 207.746094 284.433594 207.746094 C 284.550781 207.746094 284.644531 207.652344 284.644531 207.535156 Z M 284.644531 207.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.964844 207.183594 C 283.964844 207.066406 283.871094 206.972656 283.753906 206.972656 C 283.636719 206.972656 283.542969 207.066406 283.542969 207.183594 C 283.542969 207.300781 283.636719 207.394531 283.753906 207.394531 C 283.871094 207.394531 283.964844 207.300781 283.964844 207.183594 Z M 283.964844 207.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 283.019531 209.617188 C 283.019531 209.5 282.925781 209.40625 282.808594 209.40625 C 282.691406 209.40625 282.597656 209.5 282.597656 209.617188 C 282.597656 209.734375 282.691406 209.828125 282.808594 209.828125 C 282.925781 209.828125 283.019531 209.734375 283.019531 209.617188 Z M 283.019531 209.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.164062 209.113281 C 281.164062 208.996094 281.070312 208.902344 280.953125 208.902344 C 280.835938 208.902344 280.742188 208.996094 280.742188 209.113281 C 280.742188 209.230469 280.835938 209.324219 280.953125 209.324219 C 281.070312 209.324219 281.164062 209.230469 281.164062 209.113281 Z M 281.164062 209.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.375 210.523438 C 280.375 210.40625 280.28125 210.3125 280.164062 210.3125 C 280.046875 210.3125 279.953125 210.40625 279.953125 210.523438 C 279.953125 210.640625 280.046875 210.734375 280.164062 210.734375 C 280.28125 210.734375 280.375 210.640625 280.375 210.523438 Z M 280.375 210.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.945312 207.722656 C 278.945312 207.605469 278.851562 207.511719 278.734375 207.511719 C 278.617188 207.511719 278.523438 207.605469 278.523438 207.722656 C 278.523438 207.839844 278.617188 207.933594 278.734375 207.933594 C 278.851562 207.933594 278.945312 207.839844 278.945312 207.722656 Z M 278.945312 207.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.730469 203.785156 C 280.730469 203.667969 280.636719 203.574219 280.519531 203.574219 C 280.402344 203.574219 280.308594 203.667969 280.308594 203.785156 C 280.308594 203.902344 280.402344 203.996094 280.519531 203.996094 C 280.636719 203.996094 280.730469 203.902344 280.730469 203.785156 Z M 280.730469 203.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 281.503906 203.222656 C 281.503906 203.105469 281.410156 203.011719 281.292969 203.011719 C 281.175781 203.011719 281.082031 203.105469 281.082031 203.222656 C 281.082031 203.339844 281.175781 203.433594 281.292969 203.433594 C 281.410156 203.433594 281.503906 203.339844 281.503906 203.222656 Z M 281.503906 203.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.621094 202.300781 C 278.621094 202.183594 278.527344 202.089844 278.410156 202.089844 C 278.292969 202.089844 278.199219 202.183594 278.199219 202.300781 C 278.199219 202.417969 278.292969 202.511719 278.410156 202.511719 C 278.527344 202.511719 278.621094 202.417969 278.621094 202.300781 Z M 278.621094 202.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.277344 200.875 C 280.277344 200.757812 280.183594 200.664062 280.066406 200.664062 C 279.949219 200.664062 279.855469 200.757812 279.855469 200.875 C 279.855469 200.992188 279.949219 201.085938 280.066406 201.085938 C 280.183594 201.085938 280.277344 200.992188 280.277344 200.875 Z M 280.277344 200.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.78125 197.558594 C 279.78125 197.441406 279.6875 197.347656 279.570312 197.347656 C 279.453125 197.347656 279.359375 197.441406 279.359375 197.558594 C 279.359375 197.675781 279.453125 197.769531 279.570312 197.769531 C 279.6875 197.769531 279.78125 197.675781 279.78125 197.558594 Z M 279.78125 197.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.683594 202.03125 C 277.683594 201.914062 277.589844 201.820312 277.472656 201.820312 C 277.355469 201.820312 277.261719 201.914062 277.261719 202.03125 C 277.261719 202.148438 277.355469 202.242188 277.472656 202.242188 C 277.589844 202.242188 277.683594 202.148438 277.683594 202.03125 Z M 277.683594 202.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.96875 205.359375 C 278.96875 205.242188 278.875 205.148438 278.757812 205.148438 C 278.640625 205.148438 278.546875 205.242188 278.546875 205.359375 C 278.546875 205.476562 278.640625 205.570312 278.757812 205.570312 C 278.875 205.570312 278.96875 205.476562 278.96875 205.359375 Z M 278.96875 205.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.191406 204.792969 C 277.191406 204.675781 277.097656 204.582031 276.980469 204.582031 C 276.863281 204.582031 276.769531 204.675781 276.769531 204.792969 C 276.769531 204.910156 276.863281 205.003906 276.980469 205.003906 C 277.097656 205.003906 277.191406 204.910156 277.191406 204.792969 Z M 277.191406 204.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.734375 207.234375 C 273.734375 207.117188 273.640625 207.023438 273.523438 207.023438 C 273.40625 207.023438 273.3125 207.117188 273.3125 207.234375 C 273.3125 207.351562 273.40625 207.445312 273.523438 207.445312 C 273.640625 207.445312 273.734375 207.351562 273.734375 207.234375 Z M 273.734375 207.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.261719 206.738281 C 275.261719 206.621094 275.167969 206.527344 275.050781 206.527344 C 274.933594 206.527344 274.839844 206.621094 274.839844 206.738281 C 274.839844 206.855469 274.933594 206.949219 275.050781 206.949219 C 275.167969 206.949219 275.261719 206.855469 275.261719 206.738281 Z M 275.261719 206.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.039062 208.679688 C 271.039062 208.5625 270.945312 208.46875 270.828125 208.46875 C 270.710938 208.46875 270.617188 208.5625 270.617188 208.679688 C 270.617188 208.796875 270.710938 208.890625 270.828125 208.890625 C 270.945312 208.890625 271.039062 208.796875 271.039062 208.679688 Z M 271.039062 208.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.046875 210.957031 C 271.046875 210.839844 270.953125 210.746094 270.835938 210.746094 C 270.71875 210.746094 270.625 210.839844 270.625 210.957031 C 270.625 211.074219 270.71875 211.167969 270.835938 211.167969 C 270.953125 211.167969 271.046875 211.074219 271.046875 210.957031 Z M 271.046875 210.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.21875 209.519531 C 272.21875 209.402344 272.125 209.308594 272.007812 209.308594 C 271.890625 209.308594 271.796875 209.402344 271.796875 209.519531 C 271.796875 209.636719 271.890625 209.730469 272.007812 209.730469 C 272.125 209.730469 272.21875 209.636719 272.21875 209.519531 Z M 272.21875 209.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.183594 209.984375 C 273.183594 209.867188 273.089844 209.773438 272.972656 209.773438 C 272.855469 209.773438 272.761719 209.867188 272.761719 209.984375 C 272.761719 210.101562 272.855469 210.195312 272.972656 210.195312 C 273.089844 210.195312 273.183594 210.101562 273.183594 209.984375 Z M 273.183594 209.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.257812 211.582031 C 276.257812 211.464844 276.164062 211.371094 276.046875 211.371094 C 275.929688 211.371094 275.835938 211.464844 275.835938 211.582031 C 275.835938 211.699219 275.929688 211.792969 276.046875 211.792969 C 276.164062 211.792969 276.257812 211.699219 276.257812 211.582031 Z M 276.257812 211.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.191406 213.523438 C 273.191406 213.40625 273.097656 213.3125 272.980469 213.3125 C 272.863281 213.3125 272.769531 213.40625 272.769531 213.523438 C 272.769531 213.640625 272.863281 213.734375 272.980469 213.734375 C 273.097656 213.734375 273.191406 213.640625 273.191406 213.523438 Z M 273.191406 213.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.402344 216.1875 C 271.402344 216.070312 271.308594 215.976562 271.191406 215.976562 C 271.074219 215.976562 270.980469 216.070312 270.980469 216.1875 C 270.980469 216.304688 271.074219 216.398438 271.191406 216.398438 C 271.308594 216.398438 271.402344 216.304688 271.402344 216.1875 Z M 271.402344 216.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.785156 216.054688 C 270.785156 215.9375 270.691406 215.84375 270.574219 215.84375 C 270.457031 215.84375 270.363281 215.9375 270.363281 216.054688 C 270.363281 216.171875 270.457031 216.265625 270.574219 216.265625 C 270.691406 216.265625 270.785156 216.171875 270.785156 216.054688 Z M 270.785156 216.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.917969 217.792969 C 271.917969 217.675781 271.824219 217.582031 271.707031 217.582031 C 271.589844 217.582031 271.496094 217.675781 271.496094 217.792969 C 271.496094 217.910156 271.589844 218.003906 271.707031 218.003906 C 271.824219 218.003906 271.917969 217.910156 271.917969 217.792969 Z M 271.917969 217.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.378906 216.472656 C 273.378906 216.355469 273.285156 216.261719 273.167969 216.261719 C 273.050781 216.261719 272.957031 216.355469 272.957031 216.472656 C 272.957031 216.589844 273.050781 216.683594 273.167969 216.683594 C 273.285156 216.683594 273.378906 216.589844 273.378906 216.472656 Z M 273.378906 216.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.808594 224.136719 C 270.808594 224.019531 270.714844 223.925781 270.597656 223.925781 C 270.480469 223.925781 270.386719 224.019531 270.386719 224.136719 C 270.386719 224.253906 270.480469 224.347656 270.597656 224.347656 C 270.714844 224.347656 270.808594 224.253906 270.808594 224.136719 Z M 270.808594 224.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.402344 226.183594 C 271.402344 226.066406 271.308594 225.972656 271.191406 225.972656 C 271.074219 225.972656 270.980469 226.066406 270.980469 226.183594 C 270.980469 226.300781 271.074219 226.394531 271.191406 226.394531 C 271.308594 226.394531 271.402344 226.300781 271.402344 226.183594 Z M 271.402344 226.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.132812 225.964844 C 271.132812 225.847656 271.039062 225.753906 270.921875 225.753906 C 270.804688 225.753906 270.710938 225.847656 270.710938 225.964844 C 270.710938 226.082031 270.804688 226.175781 270.921875 226.175781 C 271.039062 226.175781 271.132812 226.082031 271.132812 225.964844 Z M 271.132812 225.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.332031 225.191406 C 270.332031 225.074219 270.238281 224.980469 270.121094 224.980469 C 270.003906 224.980469 269.910156 225.074219 269.910156 225.191406 C 269.910156 225.308594 270.003906 225.402344 270.121094 225.402344 C 270.238281 225.402344 270.332031 225.308594 270.332031 225.191406 Z M 270.332031 225.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.53125 223.859375 C 274.53125 223.742188 274.4375 223.648438 274.320312 223.648438 C 274.203125 223.648438 274.109375 223.742188 274.109375 223.859375 C 274.109375 223.976562 274.203125 224.070312 274.320312 224.070312 C 274.4375 224.070312 274.53125 223.976562 274.53125 223.859375 Z M 274.53125 223.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.019531 221.976562 C 273.019531 221.859375 272.925781 221.765625 272.808594 221.765625 C 272.691406 221.765625 272.597656 221.859375 272.597656 221.976562 C 272.597656 222.09375 272.691406 222.1875 272.808594 222.1875 C 272.925781 222.1875 273.019531 222.09375 273.019531 221.976562 Z M 273.019531 221.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.566406 225.335938 C 274.566406 225.21875 274.472656 225.125 274.355469 225.125 C 274.238281 225.125 274.144531 225.21875 274.144531 225.335938 C 274.144531 225.453125 274.238281 225.546875 274.355469 225.546875 C 274.472656 225.546875 274.566406 225.453125 274.566406 225.335938 Z M 274.566406 225.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.738281 226.191406 C 275.738281 226.074219 275.644531 225.980469 275.527344 225.980469 C 275.410156 225.980469 275.316406 226.074219 275.316406 226.191406 C 275.316406 226.308594 275.410156 226.402344 275.527344 226.402344 C 275.644531 226.402344 275.738281 226.308594 275.738281 226.191406 Z M 275.738281 226.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.707031 225.058594 C 273.707031 224.941406 273.613281 224.847656 273.496094 224.847656 C 273.378906 224.847656 273.285156 224.941406 273.285156 225.058594 C 273.285156 225.175781 273.378906 225.269531 273.496094 225.269531 C 273.613281 225.269531 273.707031 225.175781 273.707031 225.058594 Z M 273.707031 225.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.421875 221.761719 C 275.421875 221.644531 275.328125 221.550781 275.210938 221.550781 C 275.09375 221.550781 275 221.644531 275 221.761719 C 275 221.878906 275.09375 221.972656 275.210938 221.972656 C 275.328125 221.972656 275.421875 221.878906 275.421875 221.761719 Z M 275.421875 221.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.09375 223.480469 C 272.09375 223.363281 272 223.269531 271.882812 223.269531 C 271.765625 223.269531 271.671875 223.363281 271.671875 223.480469 C 271.671875 223.597656 271.765625 223.691406 271.882812 223.691406 C 272 223.691406 272.09375 223.597656 272.09375 223.480469 Z M 272.09375 223.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.617188 221.761719 C 268.617188 221.644531 268.523438 221.550781 268.40625 221.550781 C 268.289062 221.550781 268.195312 221.644531 268.195312 221.761719 C 268.195312 221.878906 268.289062 221.972656 268.40625 221.972656 C 268.523438 221.972656 268.617188 221.878906 268.617188 221.761719 Z M 268.617188 221.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.277344 222.191406 C 266.277344 222.074219 266.183594 221.980469 266.066406 221.980469 C 265.949219 221.980469 265.855469 222.074219 265.855469 222.191406 C 265.855469 222.308594 265.949219 222.402344 266.066406 222.402344 C 266.183594 222.402344 266.277344 222.308594 266.277344 222.191406 Z M 266.277344 222.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.621094 222.683594 C 265.621094 222.566406 265.527344 222.472656 265.410156 222.472656 C 265.292969 222.472656 265.199219 222.566406 265.199219 222.683594 C 265.199219 222.800781 265.292969 222.894531 265.410156 222.894531 C 265.527344 222.894531 265.621094 222.800781 265.621094 222.683594 Z M 265.621094 222.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.835938 219.503906 C 265.835938 219.386719 265.742188 219.292969 265.625 219.292969 C 265.507812 219.292969 265.414062 219.386719 265.414062 219.503906 C 265.414062 219.621094 265.507812 219.714844 265.625 219.714844 C 265.742188 219.714844 265.835938 219.621094 265.835938 219.503906 Z M 265.835938 219.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.722656 222.550781 C 264.722656 222.433594 264.628906 222.339844 264.511719 222.339844 C 264.394531 222.339844 264.300781 222.433594 264.300781 222.550781 C 264.300781 222.667969 264.394531 222.761719 264.511719 222.761719 C 264.628906 222.761719 264.722656 222.667969 264.722656 222.550781 Z M 264.722656 222.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.332031 224.132812 C 264.332031 224.015625 264.238281 223.921875 264.121094 223.921875 C 264.003906 223.921875 263.910156 224.015625 263.910156 224.132812 C 263.910156 224.25 264.003906 224.34375 264.121094 224.34375 C 264.238281 224.34375 264.332031 224.25 264.332031 224.132812 Z M 264.332031 224.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.726562 221.636719 C 264.726562 221.519531 264.632812 221.425781 264.515625 221.425781 C 264.398438 221.425781 264.304688 221.519531 264.304688 221.636719 C 264.304688 221.753906 264.398438 221.847656 264.515625 221.847656 C 264.632812 221.847656 264.726562 221.753906 264.726562 221.636719 Z M 264.726562 221.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.640625 220.359375 C 261.640625 220.242188 261.546875 220.148438 261.429688 220.148438 C 261.3125 220.148438 261.21875 220.242188 261.21875 220.359375 C 261.21875 220.476562 261.3125 220.570312 261.429688 220.570312 C 261.546875 220.570312 261.640625 220.476562 261.640625 220.359375 Z M 261.640625 220.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.355469 219.820312 C 261.355469 219.703125 261.261719 219.609375 261.144531 219.609375 C 261.027344 219.609375 260.933594 219.703125 260.933594 219.820312 C 260.933594 219.9375 261.027344 220.03125 261.144531 220.03125 C 261.261719 220.03125 261.355469 219.9375 261.355469 219.820312 Z M 261.355469 219.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.953125 218.542969 C 262.953125 218.425781 262.859375 218.332031 262.742188 218.332031 C 262.625 218.332031 262.53125 218.425781 262.53125 218.542969 C 262.53125 218.660156 262.625 218.753906 262.742188 218.753906 C 262.859375 218.753906 262.953125 218.660156 262.953125 218.542969 Z M 262.953125 218.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.507812 218.546875 C 262.507812 218.429688 262.414062 218.335938 262.296875 218.335938 C 262.179688 218.335938 262.085938 218.429688 262.085938 218.546875 C 262.085938 218.664062 262.179688 218.757812 262.296875 218.757812 C 262.414062 218.757812 262.507812 218.664062 262.507812 218.546875 Z M 262.507812 218.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.328125 216.320312 C 262.328125 216.203125 262.234375 216.109375 262.117188 216.109375 C 262 216.109375 261.90625 216.203125 261.90625 216.320312 C 261.90625 216.4375 262 216.53125 262.117188 216.53125 C 262.234375 216.53125 262.328125 216.4375 262.328125 216.320312 Z M 262.328125 216.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.730469 215.972656 C 260.730469 215.855469 260.636719 215.761719 260.519531 215.761719 C 260.402344 215.761719 260.308594 215.855469 260.308594 215.972656 C 260.308594 216.089844 260.402344 216.183594 260.519531 216.183594 C 260.636719 216.183594 260.730469 216.089844 260.730469 215.972656 Z M 260.730469 215.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.070312 213.597656 C 263.070312 213.480469 262.976562 213.386719 262.859375 213.386719 C 262.742188 213.386719 262.648438 213.480469 262.648438 213.597656 C 262.648438 213.714844 262.742188 213.808594 262.859375 213.808594 C 262.976562 213.808594 263.070312 213.714844 263.070312 213.597656 Z M 263.070312 213.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.839844 216.65625 C 265.839844 216.539062 265.746094 216.445312 265.628906 216.445312 C 265.511719 216.445312 265.417969 216.539062 265.417969 216.65625 C 265.417969 216.773438 265.511719 216.867188 265.628906 216.867188 C 265.746094 216.867188 265.839844 216.773438 265.839844 216.65625 Z M 265.839844 216.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.945312 214.863281 C 266.945312 214.746094 266.851562 214.652344 266.734375 214.652344 C 266.617188 214.652344 266.523438 214.746094 266.523438 214.863281 C 266.523438 214.980469 266.617188 215.074219 266.734375 215.074219 C 266.851562 215.074219 266.945312 214.980469 266.945312 214.863281 Z M 266.945312 214.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.566406 211.386719 C 264.566406 211.269531 264.472656 211.175781 264.355469 211.175781 C 264.238281 211.175781 264.144531 211.269531 264.144531 211.386719 C 264.144531 211.503906 264.238281 211.597656 264.355469 211.597656 C 264.472656 211.597656 264.566406 211.503906 264.566406 211.386719 Z M 264.566406 211.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.269531 213.175781 C 263.269531 213.058594 263.175781 212.964844 263.058594 212.964844 C 262.941406 212.964844 262.847656 213.058594 262.847656 213.175781 C 262.847656 213.292969 262.941406 213.386719 263.058594 213.386719 C 263.175781 213.386719 263.269531 213.292969 263.269531 213.175781 Z M 263.269531 213.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.800781 214.261719 C 265.800781 214.144531 265.707031 214.050781 265.589844 214.050781 C 265.472656 214.050781 265.378906 214.144531 265.378906 214.261719 C 265.378906 214.378906 265.472656 214.472656 265.589844 214.472656 C 265.707031 214.472656 265.800781 214.378906 265.800781 214.261719 Z M 265.800781 214.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.226562 210.417969 C 264.226562 210.300781 264.132812 210.207031 264.015625 210.207031 C 263.898438 210.207031 263.804688 210.300781 263.804688 210.417969 C 263.804688 210.535156 263.898438 210.628906 264.015625 210.628906 C 264.132812 210.628906 264.226562 210.535156 264.226562 210.417969 Z M 264.226562 210.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.433594 211.425781 C 264.433594 211.308594 264.339844 211.214844 264.222656 211.214844 C 264.105469 211.214844 264.011719 211.308594 264.011719 211.425781 C 264.011719 211.542969 264.105469 211.636719 264.222656 211.636719 C 264.339844 211.636719 264.433594 211.542969 264.433594 211.425781 Z M 264.433594 211.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.105469 210.910156 C 263.105469 210.792969 263.011719 210.699219 262.894531 210.699219 C 262.777344 210.699219 262.683594 210.792969 262.683594 210.910156 C 262.683594 211.027344 262.777344 211.121094 262.894531 211.121094 C 263.011719 211.121094 263.105469 211.027344 263.105469 210.910156 Z M 263.105469 210.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.910156 211.71875 C 263.910156 211.601562 263.816406 211.507812 263.699219 211.507812 C 263.582031 211.507812 263.488281 211.601562 263.488281 211.71875 C 263.488281 211.835938 263.582031 211.929688 263.699219 211.929688 C 263.816406 211.929688 263.910156 211.835938 263.910156 211.71875 Z M 263.910156 211.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.195312 214.128906 C 266.195312 214.011719 266.101562 213.917969 265.984375 213.917969 C 265.867188 213.917969 265.773438 214.011719 265.773438 214.128906 C 265.773438 214.246094 265.867188 214.339844 265.984375 214.339844 C 266.101562 214.339844 266.195312 214.246094 266.195312 214.128906 Z M 266.195312 214.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.042969 215.976562 C 267.042969 215.859375 266.949219 215.765625 266.832031 215.765625 C 266.714844 215.765625 266.621094 215.859375 266.621094 215.976562 C 266.621094 216.09375 266.714844 216.1875 266.832031 216.1875 C 266.949219 216.1875 267.042969 216.09375 267.042969 215.976562 Z M 267.042969 215.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.410156 211.230469 C 263.410156 211.113281 263.316406 211.019531 263.199219 211.019531 C 263.082031 211.019531 262.988281 211.113281 262.988281 211.230469 C 262.988281 211.347656 263.082031 211.441406 263.199219 211.441406 C 263.316406 211.441406 263.410156 211.347656 263.410156 211.230469 Z M 263.410156 211.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.132812 210.351562 C 262.132812 210.234375 262.039062 210.140625 261.921875 210.140625 C 261.804688 210.140625 261.710938 210.234375 261.710938 210.351562 C 261.710938 210.46875 261.804688 210.5625 261.921875 210.5625 C 262.039062 210.5625 262.132812 210.46875 262.132812 210.351562 Z M 262.132812 210.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.101562 207.574219 C 259.101562 207.457031 259.007812 207.363281 258.890625 207.363281 C 258.773438 207.363281 258.679688 207.457031 258.679688 207.574219 C 258.679688 207.691406 258.773438 207.785156 258.890625 207.785156 C 259.007812 207.785156 259.101562 207.691406 259.101562 207.574219 Z M 259.101562 207.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.75 207.226562 C 259.75 207.109375 259.65625 207.015625 259.539062 207.015625 C 259.421875 207.015625 259.328125 207.109375 259.328125 207.226562 C 259.328125 207.34375 259.421875 207.4375 259.539062 207.4375 C 259.65625 207.4375 259.75 207.34375 259.75 207.226562 Z M 259.75 207.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.234375 209.832031 C 257.234375 209.714844 257.140625 209.621094 257.023438 209.621094 C 256.90625 209.621094 256.8125 209.714844 256.8125 209.832031 C 256.8125 209.949219 256.90625 210.042969 257.023438 210.042969 C 257.140625 210.042969 257.234375 209.949219 257.234375 209.832031 Z M 257.234375 209.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.867188 210.234375 C 257.867188 210.117188 257.773438 210.023438 257.65625 210.023438 C 257.539062 210.023438 257.445312 210.117188 257.445312 210.234375 C 257.445312 210.351562 257.539062 210.445312 257.65625 210.445312 C 257.773438 210.445312 257.867188 210.351562 257.867188 210.234375 Z M 257.867188 210.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.09375 208.371094 C 258.09375 208.253906 258 208.160156 257.882812 208.160156 C 257.765625 208.160156 257.671875 208.253906 257.671875 208.371094 C 257.671875 208.488281 257.765625 208.582031 257.882812 208.582031 C 258 208.582031 258.09375 208.488281 258.09375 208.371094 Z M 258.09375 208.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.378906 207.082031 C 259.378906 206.964844 259.285156 206.871094 259.167969 206.871094 C 259.050781 206.871094 258.957031 206.964844 258.957031 207.082031 C 258.957031 207.199219 259.050781 207.292969 259.167969 207.292969 C 259.285156 207.292969 259.378906 207.199219 259.378906 207.082031 Z M 259.378906 207.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.085938 202.238281 C 258.085938 202.121094 257.992188 202.027344 257.875 202.027344 C 257.757812 202.027344 257.664062 202.121094 257.664062 202.238281 C 257.664062 202.355469 257.757812 202.449219 257.875 202.449219 C 257.992188 202.449219 258.085938 202.355469 258.085938 202.238281 Z M 258.085938 202.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.53125 199.140625 C 256.53125 199.023438 256.4375 198.929688 256.320312 198.929688 C 256.203125 198.929688 256.109375 199.023438 256.109375 199.140625 C 256.109375 199.257812 256.203125 199.351562 256.320312 199.351562 C 256.4375 199.351562 256.53125 199.257812 256.53125 199.140625 Z M 256.53125 199.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.855469 201.695312 C 255.855469 201.578125 255.761719 201.484375 255.644531 201.484375 C 255.527344 201.484375 255.433594 201.578125 255.433594 201.695312 C 255.433594 201.8125 255.527344 201.90625 255.644531 201.90625 C 255.761719 201.90625 255.855469 201.8125 255.855469 201.695312 Z M 255.855469 201.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.183594 203.128906 C 253.183594 203.011719 253.089844 202.917969 252.972656 202.917969 C 252.855469 202.917969 252.761719 203.011719 252.761719 203.128906 C 252.761719 203.246094 252.855469 203.339844 252.972656 203.339844 C 253.089844 203.339844 253.183594 203.246094 253.183594 203.128906 Z M 253.183594 203.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.203125 201.863281 C 252.203125 201.746094 252.109375 201.652344 251.992188 201.652344 C 251.875 201.652344 251.78125 201.746094 251.78125 201.863281 C 251.78125 201.980469 251.875 202.074219 251.992188 202.074219 C 252.109375 202.074219 252.203125 201.980469 252.203125 201.863281 Z M 252.203125 201.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.320312 203.582031 C 253.320312 203.464844 253.226562 203.371094 253.109375 203.371094 C 252.992188 203.371094 252.898438 203.464844 252.898438 203.582031 C 252.898438 203.699219 252.992188 203.792969 253.109375 203.792969 C 253.226562 203.792969 253.320312 203.699219 253.320312 203.582031 Z M 253.320312 203.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.589844 204.082031 C 253.589844 203.964844 253.496094 203.871094 253.378906 203.871094 C 253.261719 203.871094 253.167969 203.964844 253.167969 204.082031 C 253.167969 204.199219 253.261719 204.292969 253.378906 204.292969 C 253.496094 204.292969 253.589844 204.199219 253.589844 204.082031 Z M 253.589844 204.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.972656 206.644531 C 256.972656 206.527344 256.878906 206.433594 256.761719 206.433594 C 256.644531 206.433594 256.550781 206.527344 256.550781 206.644531 C 256.550781 206.761719 256.644531 206.855469 256.761719 206.855469 C 256.878906 206.855469 256.972656 206.761719 256.972656 206.644531 Z M 256.972656 206.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.335938 206.96875 C 256.335938 206.851562 256.242188 206.757812 256.125 206.757812 C 256.007812 206.757812 255.914062 206.851562 255.914062 206.96875 C 255.914062 207.085938 256.007812 207.179688 256.125 207.179688 C 256.242188 207.179688 256.335938 207.085938 256.335938 206.96875 Z M 256.335938 206.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.007812 204.980469 C 256.007812 204.863281 255.914062 204.769531 255.796875 204.769531 C 255.679688 204.769531 255.585938 204.863281 255.585938 204.980469 C 255.585938 205.097656 255.679688 205.191406 255.796875 205.191406 C 255.914062 205.191406 256.007812 205.097656 256.007812 204.980469 Z M 256.007812 204.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.371094 202.40625 C 255.371094 202.289062 255.277344 202.195312 255.160156 202.195312 C 255.042969 202.195312 254.949219 202.289062 254.949219 202.40625 C 254.949219 202.523438 255.042969 202.617188 255.160156 202.617188 C 255.277344 202.617188 255.371094 202.523438 255.371094 202.40625 Z M 255.371094 202.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.730469 201.046875 C 253.730469 200.929688 253.636719 200.835938 253.519531 200.835938 C 253.402344 200.835938 253.308594 200.929688 253.308594 201.046875 C 253.308594 201.164062 253.402344 201.257812 253.519531 201.257812 C 253.636719 201.257812 253.730469 201.164062 253.730469 201.046875 Z M 253.730469 201.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.984375 203.707031 C 253.984375 203.589844 253.890625 203.496094 253.773438 203.496094 C 253.65625 203.496094 253.5625 203.589844 253.5625 203.707031 C 253.5625 203.824219 253.65625 203.917969 253.773438 203.917969 C 253.890625 203.917969 253.984375 203.824219 253.984375 203.707031 Z M 253.984375 203.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.332031 201.691406 C 255.332031 201.574219 255.238281 201.480469 255.121094 201.480469 C 255.003906 201.480469 254.910156 201.574219 254.910156 201.691406 C 254.910156 201.808594 255.003906 201.902344 255.121094 201.902344 C 255.238281 201.902344 255.332031 201.808594 255.332031 201.691406 Z M 255.332031 201.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.800781 202.675781 C 256.800781 202.558594 256.707031 202.464844 256.589844 202.464844 C 256.472656 202.464844 256.378906 202.558594 256.378906 202.675781 C 256.378906 202.792969 256.472656 202.886719 256.589844 202.886719 C 256.707031 202.886719 256.800781 202.792969 256.800781 202.675781 Z M 256.800781 202.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.425781 202.890625 C 256.425781 202.773438 256.332031 202.679688 256.214844 202.679688 C 256.097656 202.679688 256.003906 202.773438 256.003906 202.890625 C 256.003906 203.007812 256.097656 203.101562 256.214844 203.101562 C 256.332031 203.101562 256.425781 203.007812 256.425781 202.890625 Z M 256.425781 202.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.359375 203.910156 C 253.359375 203.792969 253.265625 203.699219 253.148438 203.699219 C 253.03125 203.699219 252.9375 203.792969 252.9375 203.910156 C 252.9375 204.027344 253.03125 204.121094 253.148438 204.121094 C 253.265625 204.121094 253.359375 204.027344 253.359375 203.910156 Z M 253.359375 203.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.023438 202.136719 C 254.023438 202.019531 253.929688 201.925781 253.8125 201.925781 C 253.695312 201.925781 253.601562 202.019531 253.601562 202.136719 C 253.601562 202.253906 253.695312 202.347656 253.8125 202.347656 C 253.929688 202.347656 254.023438 202.253906 254.023438 202.136719 Z M 254.023438 202.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.339844 202.414062 C 254.339844 202.296875 254.246094 202.203125 254.128906 202.203125 C 254.011719 202.203125 253.917969 202.296875 253.917969 202.414062 C 253.917969 202.53125 254.011719 202.625 254.128906 202.625 C 254.246094 202.625 254.339844 202.53125 254.339844 202.414062 Z M 254.339844 202.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.671875 203.449219 C 253.671875 203.332031 253.578125 203.238281 253.460938 203.238281 C 253.34375 203.238281 253.25 203.332031 253.25 203.449219 C 253.25 203.566406 253.34375 203.660156 253.460938 203.660156 C 253.578125 203.660156 253.671875 203.566406 253.671875 203.449219 Z M 253.671875 203.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.257812 204.964844 C 254.257812 204.847656 254.164062 204.753906 254.046875 204.753906 C 253.929688 204.753906 253.835938 204.847656 253.835938 204.964844 C 253.835938 205.082031 253.929688 205.175781 254.046875 205.175781 C 254.164062 205.175781 254.257812 205.082031 254.257812 204.964844 Z M 254.257812 204.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.152344 208.019531 C 253.152344 207.902344 253.058594 207.808594 252.941406 207.808594 C 252.824219 207.808594 252.730469 207.902344 252.730469 208.019531 C 252.730469 208.136719 252.824219 208.230469 252.941406 208.230469 C 253.058594 208.230469 253.152344 208.136719 253.152344 208.019531 Z M 253.152344 208.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.019531 206.285156 C 256.019531 206.167969 255.925781 206.074219 255.808594 206.074219 C 255.691406 206.074219 255.597656 206.167969 255.597656 206.285156 C 255.597656 206.402344 255.691406 206.496094 255.808594 206.496094 C 255.925781 206.496094 256.019531 206.402344 256.019531 206.285156 Z M 256.019531 206.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.621094 210.226562 C 255.621094 210.109375 255.527344 210.015625 255.410156 210.015625 C 255.292969 210.015625 255.199219 210.109375 255.199219 210.226562 C 255.199219 210.34375 255.292969 210.4375 255.410156 210.4375 C 255.527344 210.4375 255.621094 210.34375 255.621094 210.226562 Z M 255.621094 210.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.859375 209.898438 C 254.859375 209.78125 254.765625 209.6875 254.648438 209.6875 C 254.53125 209.6875 254.4375 209.78125 254.4375 209.898438 C 254.4375 210.015625 254.53125 210.109375 254.648438 210.109375 C 254.765625 210.109375 254.859375 210.015625 254.859375 209.898438 Z M 254.859375 209.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.757812 209.042969 C 252.757812 208.925781 252.664062 208.832031 252.546875 208.832031 C 252.429688 208.832031 252.335938 208.925781 252.335938 209.042969 C 252.335938 209.160156 252.429688 209.253906 252.546875 209.253906 C 252.664062 209.253906 252.757812 209.160156 252.757812 209.042969 Z M 252.757812 209.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.789062 209.941406 C 255.789062 209.824219 255.695312 209.730469 255.578125 209.730469 C 255.460938 209.730469 255.367188 209.824219 255.367188 209.941406 C 255.367188 210.058594 255.460938 210.152344 255.578125 210.152344 C 255.695312 210.152344 255.789062 210.058594 255.789062 209.941406 Z M 255.789062 209.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.511719 212.816406 C 256.511719 212.699219 256.417969 212.605469 256.300781 212.605469 C 256.183594 212.605469 256.089844 212.699219 256.089844 212.816406 C 256.089844 212.933594 256.183594 213.027344 256.300781 213.027344 C 256.417969 213.027344 256.511719 212.933594 256.511719 212.816406 Z M 256.511719 212.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.976562 213.015625 C 256.976562 212.898438 256.882812 212.804688 256.765625 212.804688 C 256.648438 212.804688 256.554688 212.898438 256.554688 213.015625 C 256.554688 213.132812 256.648438 213.226562 256.765625 213.226562 C 256.882812 213.226562 256.976562 213.132812 256.976562 213.015625 Z M 256.976562 213.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.34375 211.308594 C 256.34375 211.191406 256.25 211.097656 256.132812 211.097656 C 256.015625 211.097656 255.921875 211.191406 255.921875 211.308594 C 255.921875 211.425781 256.015625 211.519531 256.132812 211.519531 C 256.25 211.519531 256.34375 211.425781 256.34375 211.308594 Z M 256.34375 211.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.90625 211.511719 C 250.90625 211.394531 250.8125 211.300781 250.695312 211.300781 C 250.578125 211.300781 250.484375 211.394531 250.484375 211.511719 C 250.484375 211.628906 250.578125 211.722656 250.695312 211.722656 C 250.8125 211.722656 250.90625 211.628906 250.90625 211.511719 Z M 250.90625 211.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.550781 210.445312 C 249.550781 210.328125 249.457031 210.234375 249.339844 210.234375 C 249.222656 210.234375 249.128906 210.328125 249.128906 210.445312 C 249.128906 210.5625 249.222656 210.65625 249.339844 210.65625 C 249.457031 210.65625 249.550781 210.5625 249.550781 210.445312 Z M 249.550781 210.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.675781 208.808594 C 248.675781 208.691406 248.582031 208.597656 248.464844 208.597656 C 248.347656 208.597656 248.253906 208.691406 248.253906 208.808594 C 248.253906 208.925781 248.347656 209.019531 248.464844 209.019531 C 248.582031 209.019531 248.675781 208.925781 248.675781 208.808594 Z M 248.675781 208.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.441406 208.78125 C 247.441406 208.664062 247.347656 208.570312 247.230469 208.570312 C 247.113281 208.570312 247.019531 208.664062 247.019531 208.78125 C 247.019531 208.898438 247.113281 208.992188 247.230469 208.992188 C 247.347656 208.992188 247.441406 208.898438 247.441406 208.78125 Z M 247.441406 208.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.691406 210.320312 C 248.691406 210.203125 248.597656 210.109375 248.480469 210.109375 C 248.363281 210.109375 248.269531 210.203125 248.269531 210.320312 C 248.269531 210.4375 248.363281 210.53125 248.480469 210.53125 C 248.597656 210.53125 248.691406 210.4375 248.691406 210.320312 Z M 248.691406 210.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.324219 210.746094 C 245.324219 210.628906 245.230469 210.535156 245.113281 210.535156 C 244.996094 210.535156 244.902344 210.628906 244.902344 210.746094 C 244.902344 210.863281 244.996094 210.957031 245.113281 210.957031 C 245.230469 210.957031 245.324219 210.863281 245.324219 210.746094 Z M 245.324219 210.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.4375 212.75 C 247.4375 212.632812 247.34375 212.539062 247.226562 212.539062 C 247.109375 212.539062 247.015625 212.632812 247.015625 212.75 C 247.015625 212.867188 247.109375 212.960938 247.226562 212.960938 C 247.34375 212.960938 247.4375 212.867188 247.4375 212.75 Z M 247.4375 212.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.695312 212.632812 C 246.695312 212.515625 246.601562 212.421875 246.484375 212.421875 C 246.367188 212.421875 246.273438 212.515625 246.273438 212.632812 C 246.273438 212.75 246.367188 212.84375 246.484375 212.84375 C 246.601562 212.84375 246.695312 212.75 246.695312 212.632812 Z M 246.695312 212.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.371094 211.660156 C 247.371094 211.542969 247.277344 211.449219 247.160156 211.449219 C 247.042969 211.449219 246.949219 211.542969 246.949219 211.660156 C 246.949219 211.777344 247.042969 211.871094 247.160156 211.871094 C 247.277344 211.871094 247.371094 211.777344 247.371094 211.660156 Z M 247.371094 211.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.847656 212.394531 C 247.847656 212.277344 247.753906 212.183594 247.636719 212.183594 C 247.519531 212.183594 247.425781 212.277344 247.425781 212.394531 C 247.425781 212.511719 247.519531 212.605469 247.636719 212.605469 C 247.753906 212.605469 247.847656 212.511719 247.847656 212.394531 Z M 247.847656 212.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.410156 209.019531 C 249.410156 208.902344 249.316406 208.808594 249.199219 208.808594 C 249.082031 208.808594 248.988281 208.902344 248.988281 209.019531 C 248.988281 209.136719 249.082031 209.230469 249.199219 209.230469 C 249.316406 209.230469 249.410156 209.136719 249.410156 209.019531 Z M 249.410156 209.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.628906 211.46875 C 251.628906 211.351562 251.535156 211.257812 251.417969 211.257812 C 251.300781 211.257812 251.207031 211.351562 251.207031 211.46875 C 251.207031 211.585938 251.300781 211.679688 251.417969 211.679688 C 251.535156 211.679688 251.628906 211.585938 251.628906 211.46875 Z M 251.628906 211.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.839844 211.808594 C 253.839844 211.691406 253.746094 211.597656 253.628906 211.597656 C 253.511719 211.597656 253.417969 211.691406 253.417969 211.808594 C 253.417969 211.925781 253.511719 212.019531 253.628906 212.019531 C 253.746094 212.019531 253.839844 211.925781 253.839844 211.808594 Z M 253.839844 211.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.449219 213.785156 C 256.449219 213.667969 256.355469 213.574219 256.238281 213.574219 C 256.121094 213.574219 256.027344 213.667969 256.027344 213.785156 C 256.027344 213.902344 256.121094 213.996094 256.238281 213.996094 C 256.355469 213.996094 256.449219 213.902344 256.449219 213.785156 Z M 256.449219 213.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.480469 212.007812 C 252.480469 211.890625 252.386719 211.796875 252.269531 211.796875 C 252.152344 211.796875 252.058594 211.890625 252.058594 212.007812 C 252.058594 212.125 252.152344 212.21875 252.269531 212.21875 C 252.386719 212.21875 252.480469 212.125 252.480469 212.007812 Z M 252.480469 212.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.035156 214.140625 C 252.035156 214.023438 251.941406 213.929688 251.824219 213.929688 C 251.707031 213.929688 251.613281 214.023438 251.613281 214.140625 C 251.613281 214.257812 251.707031 214.351562 251.824219 214.351562 C 251.941406 214.351562 252.035156 214.257812 252.035156 214.140625 Z M 252.035156 214.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.753906 214.476562 C 250.753906 214.359375 250.660156 214.265625 250.542969 214.265625 C 250.425781 214.265625 250.332031 214.359375 250.332031 214.476562 C 250.332031 214.59375 250.425781 214.6875 250.542969 214.6875 C 250.660156 214.6875 250.753906 214.59375 250.753906 214.476562 Z M 250.753906 214.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.867188 215.84375 C 251.867188 215.726562 251.773438 215.632812 251.65625 215.632812 C 251.539062 215.632812 251.445312 215.726562 251.445312 215.84375 C 251.445312 215.960938 251.539062 216.054688 251.65625 216.054688 C 251.773438 216.054688 251.867188 215.960938 251.867188 215.84375 Z M 251.867188 215.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.171875 215.765625 C 251.171875 215.648438 251.078125 215.554688 250.960938 215.554688 C 250.84375 215.554688 250.75 215.648438 250.75 215.765625 C 250.75 215.882812 250.84375 215.976562 250.960938 215.976562 C 251.078125 215.976562 251.171875 215.882812 251.171875 215.765625 Z M 251.171875 215.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.890625 214.265625 C 252.890625 214.148438 252.796875 214.054688 252.679688 214.054688 C 252.5625 214.054688 252.46875 214.148438 252.46875 214.265625 C 252.46875 214.382812 252.5625 214.476562 252.679688 214.476562 C 252.796875 214.476562 252.890625 214.382812 252.890625 214.265625 Z M 252.890625 214.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.671875 213.925781 C 253.671875 213.808594 253.578125 213.714844 253.460938 213.714844 C 253.34375 213.714844 253.25 213.808594 253.25 213.925781 C 253.25 214.042969 253.34375 214.136719 253.460938 214.136719 C 253.578125 214.136719 253.671875 214.042969 253.671875 213.925781 Z M 253.671875 213.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.554688 216.402344 C 252.554688 216.285156 252.460938 216.191406 252.34375 216.191406 C 252.226562 216.191406 252.132812 216.285156 252.132812 216.402344 C 252.132812 216.519531 252.226562 216.613281 252.34375 216.613281 C 252.460938 216.613281 252.554688 216.519531 252.554688 216.402344 Z M 252.554688 216.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.101562 215.367188 C 253.101562 215.25 253.007812 215.15625 252.890625 215.15625 C 252.773438 215.15625 252.679688 215.25 252.679688 215.367188 C 252.679688 215.484375 252.773438 215.578125 252.890625 215.578125 C 253.007812 215.578125 253.101562 215.484375 253.101562 215.367188 Z M 253.101562 215.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.085938 211.914062 C 252.085938 211.796875 251.992188 211.703125 251.875 211.703125 C 251.757812 211.703125 251.664062 211.796875 251.664062 211.914062 C 251.664062 212.03125 251.757812 212.125 251.875 212.125 C 251.992188 212.125 252.085938 212.03125 252.085938 211.914062 Z M 252.085938 211.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.398438 214.945312 C 246.398438 214.828125 246.304688 214.734375 246.1875 214.734375 C 246.070312 214.734375 245.976562 214.828125 245.976562 214.945312 C 245.976562 215.0625 246.070312 215.15625 246.1875 215.15625 C 246.304688 215.15625 246.398438 215.0625 246.398438 214.945312 Z M 246.398438 214.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.671875 213.921875 C 245.671875 213.804688 245.578125 213.710938 245.460938 213.710938 C 245.34375 213.710938 245.25 213.804688 245.25 213.921875 C 245.25 214.039062 245.34375 214.132812 245.460938 214.132812 C 245.578125 214.132812 245.671875 214.039062 245.671875 213.921875 Z M 245.671875 213.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.917969 209.953125 C 246.917969 209.835938 246.824219 209.742188 246.707031 209.742188 C 246.589844 209.742188 246.496094 209.835938 246.496094 209.953125 C 246.496094 210.070312 246.589844 210.164062 246.707031 210.164062 C 246.824219 210.164062 246.917969 210.070312 246.917969 209.953125 Z M 246.917969 209.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.925781 209.527344 C 249.925781 209.410156 249.832031 209.316406 249.714844 209.316406 C 249.597656 209.316406 249.503906 209.410156 249.503906 209.527344 C 249.503906 209.644531 249.597656 209.738281 249.714844 209.738281 C 249.832031 209.738281 249.925781 209.644531 249.925781 209.527344 Z M 249.925781 209.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.363281 209.714844 C 249.363281 209.597656 249.269531 209.503906 249.152344 209.503906 C 249.035156 209.503906 248.941406 209.597656 248.941406 209.714844 C 248.941406 209.832031 249.035156 209.925781 249.152344 209.925781 C 249.269531 209.925781 249.363281 209.832031 249.363281 209.714844 Z M 249.363281 209.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.027344 209.914062 C 250.027344 209.796875 249.933594 209.703125 249.816406 209.703125 C 249.699219 209.703125 249.605469 209.796875 249.605469 209.914062 C 249.605469 210.03125 249.699219 210.125 249.816406 210.125 C 249.933594 210.125 250.027344 210.03125 250.027344 209.914062 Z M 250.027344 209.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.417969 210.65625 C 248.417969 210.539062 248.324219 210.445312 248.207031 210.445312 C 248.089844 210.445312 247.996094 210.539062 247.996094 210.65625 C 247.996094 210.773438 248.089844 210.867188 248.207031 210.867188 C 248.324219 210.867188 248.417969 210.773438 248.417969 210.65625 Z M 248.417969 210.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 247.617188 214.308594 C 247.617188 214.191406 247.523438 214.097656 247.40625 214.097656 C 247.289062 214.097656 247.195312 214.191406 247.195312 214.308594 C 247.195312 214.425781 247.289062 214.519531 247.40625 214.519531 C 247.523438 214.519531 247.617188 214.425781 247.617188 214.308594 Z M 247.617188 214.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.117188 214.777344 C 245.117188 214.660156 245.023438 214.566406 244.90625 214.566406 C 244.789062 214.566406 244.695312 214.660156 244.695312 214.777344 C 244.695312 214.894531 244.789062 214.988281 244.90625 214.988281 C 245.023438 214.988281 245.117188 214.894531 245.117188 214.777344 Z M 245.117188 214.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.558594 207.464844 C 248.558594 207.347656 248.464844 207.253906 248.347656 207.253906 C 248.230469 207.253906 248.136719 207.347656 248.136719 207.464844 C 248.136719 207.582031 248.230469 207.675781 248.347656 207.675781 C 248.464844 207.675781 248.558594 207.582031 248.558594 207.464844 Z M 248.558594 207.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.011719 208.417969 C 245.011719 208.300781 244.917969 208.207031 244.800781 208.207031 C 244.683594 208.207031 244.589844 208.300781 244.589844 208.417969 C 244.589844 208.535156 244.683594 208.628906 244.800781 208.628906 C 244.917969 208.628906 245.011719 208.535156 245.011719 208.417969 Z M 245.011719 208.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 248.066406 205.765625 C 248.066406 205.648438 247.972656 205.554688 247.855469 205.554688 C 247.738281 205.554688 247.644531 205.648438 247.644531 205.765625 C 247.644531 205.882812 247.738281 205.976562 247.855469 205.976562 C 247.972656 205.976562 248.066406 205.882812 248.066406 205.765625 Z M 248.066406 205.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.21875 207.480469 C 250.21875 207.363281 250.125 207.269531 250.007812 207.269531 C 249.890625 207.269531 249.796875 207.363281 249.796875 207.480469 C 249.796875 207.597656 249.890625 207.691406 250.007812 207.691406 C 250.125 207.691406 250.21875 207.597656 250.21875 207.480469 Z M 250.21875 207.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.886719 210.546875 C 250.886719 210.429688 250.792969 210.335938 250.675781 210.335938 C 250.558594 210.335938 250.464844 210.429688 250.464844 210.546875 C 250.464844 210.664062 250.558594 210.757812 250.675781 210.757812 C 250.792969 210.757812 250.886719 210.664062 250.886719 210.546875 Z M 250.886719 210.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.660156 209.617188 C 253.660156 209.5 253.566406 209.40625 253.449219 209.40625 C 253.332031 209.40625 253.238281 209.5 253.238281 209.617188 C 253.238281 209.734375 253.332031 209.828125 253.449219 209.828125 C 253.566406 209.828125 253.660156 209.734375 253.660156 209.617188 Z M 253.660156 209.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.152344 213.898438 C 256.152344 213.78125 256.058594 213.6875 255.941406 213.6875 C 255.824219 213.6875 255.730469 213.78125 255.730469 213.898438 C 255.730469 214.015625 255.824219 214.109375 255.941406 214.109375 C 256.058594 214.109375 256.152344 214.015625 256.152344 213.898438 Z M 256.152344 213.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 253.769531 213.46875 C 253.769531 213.351562 253.675781 213.257812 253.558594 213.257812 C 253.441406 213.257812 253.347656 213.351562 253.347656 213.46875 C 253.347656 213.585938 253.441406 213.679688 253.558594 213.679688 C 253.675781 213.679688 253.769531 213.585938 253.769531 213.46875 Z M 253.769531 213.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.007812 216.1875 C 252.007812 216.070312 251.914062 215.976562 251.796875 215.976562 C 251.679688 215.976562 251.585938 216.070312 251.585938 216.1875 C 251.585938 216.304688 251.679688 216.398438 251.796875 216.398438 C 251.914062 216.398438 252.007812 216.304688 252.007812 216.1875 Z M 252.007812 216.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.925781 213.15625 C 249.925781 213.039062 249.832031 212.945312 249.714844 212.945312 C 249.597656 212.945312 249.503906 213.039062 249.503906 213.15625 C 249.503906 213.273438 249.597656 213.367188 249.714844 213.367188 C 249.832031 213.367188 249.925781 213.273438 249.925781 213.15625 Z M 249.925781 213.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254 211.414062 C 254 211.296875 253.90625 211.203125 253.789062 211.203125 C 253.671875 211.203125 253.578125 211.296875 253.578125 211.414062 C 253.578125 211.53125 253.671875 211.625 253.789062 211.625 C 253.90625 211.625 254 211.53125 254 211.414062 Z M 254 211.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.339844 211.921875 C 252.339844 211.804688 252.246094 211.710938 252.128906 211.710938 C 252.011719 211.710938 251.917969 211.804688 251.917969 211.921875 C 251.917969 212.039062 252.011719 212.132812 252.128906 212.132812 C 252.246094 212.132812 252.339844 212.039062 252.339844 211.921875 Z M 252.339844 211.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.175781 209.402344 C 255.175781 209.285156 255.082031 209.191406 254.964844 209.191406 C 254.847656 209.191406 254.753906 209.285156 254.753906 209.402344 C 254.753906 209.519531 254.847656 209.613281 254.964844 209.613281 C 255.082031 209.613281 255.175781 209.519531 255.175781 209.402344 Z M 255.175781 209.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.078125 209.269531 C 255.078125 209.152344 254.984375 209.058594 254.867188 209.058594 C 254.75 209.058594 254.65625 209.152344 254.65625 209.269531 C 254.65625 209.386719 254.75 209.480469 254.867188 209.480469 C 254.984375 209.480469 255.078125 209.386719 255.078125 209.269531 Z M 255.078125 209.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.53125 208.015625 C 254.53125 207.898438 254.4375 207.804688 254.320312 207.804688 C 254.203125 207.804688 254.109375 207.898438 254.109375 208.015625 C 254.109375 208.132812 254.203125 208.226562 254.320312 208.226562 C 254.4375 208.226562 254.53125 208.132812 254.53125 208.015625 Z M 254.53125 208.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.226562 208.847656 C 255.226562 208.730469 255.132812 208.636719 255.015625 208.636719 C 254.898438 208.636719 254.804688 208.730469 254.804688 208.847656 C 254.804688 208.964844 254.898438 209.058594 255.015625 209.058594 C 255.132812 209.058594 255.226562 208.964844 255.226562 208.847656 Z M 255.226562 208.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.207031 207.726562 C 258.207031 207.609375 258.113281 207.515625 257.996094 207.515625 C 257.878906 207.515625 257.785156 207.609375 257.785156 207.726562 C 257.785156 207.84375 257.878906 207.9375 257.996094 207.9375 C 258.113281 207.9375 258.207031 207.84375 258.207031 207.726562 Z M 258.207031 207.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.160156 203.390625 C 260.160156 203.273438 260.066406 203.179688 259.949219 203.179688 C 259.832031 203.179688 259.738281 203.273438 259.738281 203.390625 C 259.738281 203.507812 259.832031 203.601562 259.949219 203.601562 C 260.066406 203.601562 260.160156 203.507812 260.160156 203.390625 Z M 260.160156 203.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.640625 201.691406 C 261.640625 201.574219 261.546875 201.480469 261.429688 201.480469 C 261.3125 201.480469 261.21875 201.574219 261.21875 201.691406 C 261.21875 201.808594 261.3125 201.902344 261.429688 201.902344 C 261.546875 201.902344 261.640625 201.808594 261.640625 201.691406 Z M 261.640625 201.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.691406 198.886719 C 262.691406 198.769531 262.597656 198.675781 262.480469 198.675781 C 262.363281 198.675781 262.269531 198.769531 262.269531 198.886719 C 262.269531 199.003906 262.363281 199.097656 262.480469 199.097656 C 262.597656 199.097656 262.691406 199.003906 262.691406 198.886719 Z M 262.691406 198.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.34375 196.902344 C 264.34375 196.785156 264.25 196.691406 264.132812 196.691406 C 264.015625 196.691406 263.921875 196.785156 263.921875 196.902344 C 263.921875 197.019531 264.015625 197.113281 264.132812 197.113281 C 264.25 197.113281 264.34375 197.019531 264.34375 196.902344 Z M 264.34375 196.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.484375 196.996094 C 263.484375 196.878906 263.390625 196.785156 263.273438 196.785156 C 263.15625 196.785156 263.0625 196.878906 263.0625 196.996094 C 263.0625 197.113281 263.15625 197.207031 263.273438 197.207031 C 263.390625 197.207031 263.484375 197.113281 263.484375 196.996094 Z M 263.484375 196.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.605469 194.816406 C 263.605469 194.699219 263.511719 194.605469 263.394531 194.605469 C 263.277344 194.605469 263.183594 194.699219 263.183594 194.816406 C 263.183594 194.933594 263.277344 195.027344 263.394531 195.027344 C 263.511719 195.027344 263.605469 194.933594 263.605469 194.816406 Z M 263.605469 194.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.0625 194.753906 C 261.0625 194.636719 260.96875 194.542969 260.851562 194.542969 C 260.734375 194.542969 260.640625 194.636719 260.640625 194.753906 C 260.640625 194.871094 260.734375 194.964844 260.851562 194.964844 C 260.96875 194.964844 261.0625 194.871094 261.0625 194.753906 Z M 261.0625 194.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.050781 196.472656 C 260.050781 196.355469 259.957031 196.261719 259.839844 196.261719 C 259.722656 196.261719 259.628906 196.355469 259.628906 196.472656 C 259.628906 196.589844 259.722656 196.683594 259.839844 196.683594 C 259.957031 196.683594 260.050781 196.589844 260.050781 196.472656 Z M 260.050781 196.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.019531 197.207031 C 259.019531 197.089844 258.925781 196.996094 258.808594 196.996094 C 258.691406 196.996094 258.597656 197.089844 258.597656 197.207031 C 258.597656 197.324219 258.691406 197.417969 258.808594 197.417969 C 258.925781 197.417969 259.019531 197.324219 259.019531 197.207031 Z M 259.019531 197.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.507812 195.90625 C 255.507812 195.789062 255.414062 195.695312 255.296875 195.695312 C 255.179688 195.695312 255.085938 195.789062 255.085938 195.90625 C 255.085938 196.023438 255.179688 196.117188 255.296875 196.117188 C 255.414062 196.117188 255.507812 196.023438 255.507812 195.90625 Z M 255.507812 195.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.515625 198.566406 C 256.515625 198.449219 256.421875 198.355469 256.304688 198.355469 C 256.1875 198.355469 256.09375 198.449219 256.09375 198.566406 C 256.09375 198.683594 256.1875 198.777344 256.304688 198.777344 C 256.421875 198.777344 256.515625 198.683594 256.515625 198.566406 Z M 256.515625 198.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.640625 200.117188 C 255.640625 200 255.546875 199.90625 255.429688 199.90625 C 255.3125 199.90625 255.21875 200 255.21875 200.117188 C 255.21875 200.234375 255.3125 200.328125 255.429688 200.328125 C 255.546875 200.328125 255.640625 200.234375 255.640625 200.117188 Z M 255.640625 200.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.964844 204.097656 C 257.964844 203.980469 257.871094 203.886719 257.753906 203.886719 C 257.636719 203.886719 257.542969 203.980469 257.542969 204.097656 C 257.542969 204.214844 257.636719 204.308594 257.753906 204.308594 C 257.871094 204.308594 257.964844 204.214844 257.964844 204.097656 Z M 257.964844 204.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.148438 202.890625 C 258.148438 202.773438 258.054688 202.679688 257.9375 202.679688 C 257.820312 202.679688 257.726562 202.773438 257.726562 202.890625 C 257.726562 203.007812 257.820312 203.101562 257.9375 203.101562 C 258.054688 203.101562 258.148438 203.007812 258.148438 202.890625 Z M 258.148438 202.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.875 203.339844 C 258.875 203.222656 258.78125 203.128906 258.664062 203.128906 C 258.546875 203.128906 258.453125 203.222656 258.453125 203.339844 C 258.453125 203.457031 258.546875 203.550781 258.664062 203.550781 C 258.78125 203.550781 258.875 203.457031 258.875 203.339844 Z M 258.875 203.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.8125 205.988281 C 258.8125 205.871094 258.71875 205.777344 258.601562 205.777344 C 258.484375 205.777344 258.390625 205.871094 258.390625 205.988281 C 258.390625 206.105469 258.484375 206.199219 258.601562 206.199219 C 258.71875 206.199219 258.8125 206.105469 258.8125 205.988281 Z M 258.8125 205.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.515625 204.71875 C 259.515625 204.601562 259.421875 204.507812 259.304688 204.507812 C 259.1875 204.507812 259.09375 204.601562 259.09375 204.71875 C 259.09375 204.835938 259.1875 204.929688 259.304688 204.929688 C 259.421875 204.929688 259.515625 204.835938 259.515625 204.71875 Z M 259.515625 204.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.289062 203.617188 C 258.289062 203.5 258.195312 203.40625 258.078125 203.40625 C 257.960938 203.40625 257.867188 203.5 257.867188 203.617188 C 257.867188 203.734375 257.960938 203.828125 258.078125 203.828125 C 258.195312 203.828125 258.289062 203.734375 258.289062 203.617188 Z M 258.289062 203.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.375 202.714844 C 259.375 202.597656 259.28125 202.503906 259.164062 202.503906 C 259.046875 202.503906 258.953125 202.597656 258.953125 202.714844 C 258.953125 202.832031 259.046875 202.925781 259.164062 202.925781 C 259.28125 202.925781 259.375 202.832031 259.375 202.714844 Z M 259.375 202.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.402344 204.980469 C 260.402344 204.863281 260.308594 204.769531 260.191406 204.769531 C 260.074219 204.769531 259.980469 204.863281 259.980469 204.980469 C 259.980469 205.097656 260.074219 205.191406 260.191406 205.191406 C 260.308594 205.191406 260.402344 205.097656 260.402344 204.980469 Z M 260.402344 204.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.128906 207.601562 C 263.128906 207.484375 263.035156 207.390625 262.917969 207.390625 C 262.800781 207.390625 262.707031 207.484375 262.707031 207.601562 C 262.707031 207.71875 262.800781 207.8125 262.917969 207.8125 C 263.035156 207.8125 263.128906 207.71875 263.128906 207.601562 Z M 263.128906 207.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.917969 208.371094 C 263.917969 208.253906 263.824219 208.160156 263.707031 208.160156 C 263.589844 208.160156 263.496094 208.253906 263.496094 208.371094 C 263.496094 208.488281 263.589844 208.582031 263.707031 208.582031 C 263.824219 208.582031 263.917969 208.488281 263.917969 208.371094 Z M 263.917969 208.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.191406 206.578125 C 263.191406 206.460938 263.097656 206.367188 262.980469 206.367188 C 262.863281 206.367188 262.769531 206.460938 262.769531 206.578125 C 262.769531 206.695312 262.863281 206.789062 262.980469 206.789062 C 263.097656 206.789062 263.191406 206.695312 263.191406 206.578125 Z M 263.191406 206.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.105469 208.417969 C 262.105469 208.300781 262.011719 208.207031 261.894531 208.207031 C 261.777344 208.207031 261.683594 208.300781 261.683594 208.417969 C 261.683594 208.535156 261.777344 208.628906 261.894531 208.628906 C 262.011719 208.628906 262.105469 208.535156 262.105469 208.417969 Z M 262.105469 208.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.417969 209.8125 C 263.417969 209.695312 263.324219 209.601562 263.207031 209.601562 C 263.089844 209.601562 262.996094 209.695312 262.996094 209.8125 C 262.996094 209.929688 263.089844 210.023438 263.207031 210.023438 C 263.324219 210.023438 263.417969 209.929688 263.417969 209.8125 Z M 263.417969 209.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.398438 206.664062 C 261.398438 206.546875 261.304688 206.453125 261.1875 206.453125 C 261.070312 206.453125 260.976562 206.546875 260.976562 206.664062 C 260.976562 206.78125 261.070312 206.875 261.1875 206.875 C 261.304688 206.875 261.398438 206.78125 261.398438 206.664062 Z M 261.398438 206.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.570312 210.027344 C 263.570312 209.910156 263.476562 209.816406 263.359375 209.816406 C 263.242188 209.816406 263.148438 209.910156 263.148438 210.027344 C 263.148438 210.144531 263.242188 210.238281 263.359375 210.238281 C 263.476562 210.238281 263.570312 210.144531 263.570312 210.027344 Z M 263.570312 210.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.503906 208.257812 C 264.503906 208.140625 264.410156 208.046875 264.292969 208.046875 C 264.175781 208.046875 264.082031 208.140625 264.082031 208.257812 C 264.082031 208.375 264.175781 208.46875 264.292969 208.46875 C 264.410156 208.46875 264.503906 208.375 264.503906 208.257812 Z M 264.503906 208.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.125 207.429688 C 262.125 207.3125 262.03125 207.21875 261.914062 207.21875 C 261.796875 207.21875 261.703125 207.3125 261.703125 207.429688 C 261.703125 207.546875 261.796875 207.640625 261.914062 207.640625 C 262.03125 207.640625 262.125 207.546875 262.125 207.429688 Z M 262.125 207.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.605469 209.609375 C 264.605469 209.492188 264.511719 209.398438 264.394531 209.398438 C 264.277344 209.398438 264.183594 209.492188 264.183594 209.609375 C 264.183594 209.726562 264.277344 209.820312 264.394531 209.820312 C 264.511719 209.820312 264.605469 209.726562 264.605469 209.609375 Z M 264.605469 209.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.160156 206.164062 C 267.160156 206.046875 267.066406 205.953125 266.949219 205.953125 C 266.832031 205.953125 266.738281 206.046875 266.738281 206.164062 C 266.738281 206.28125 266.832031 206.375 266.949219 206.375 C 267.066406 206.375 267.160156 206.28125 267.160156 206.164062 Z M 267.160156 206.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.140625 208.167969 C 268.140625 208.050781 268.046875 207.957031 267.929688 207.957031 C 267.8125 207.957031 267.71875 208.050781 267.71875 208.167969 C 267.71875 208.285156 267.8125 208.378906 267.929688 208.378906 C 268.046875 208.378906 268.140625 208.285156 268.140625 208.167969 Z M 268.140625 208.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.769531 204.53125 C 268.769531 204.414062 268.675781 204.320312 268.558594 204.320312 C 268.441406 204.320312 268.347656 204.414062 268.347656 204.53125 C 268.347656 204.648438 268.441406 204.742188 268.558594 204.742188 C 268.675781 204.742188 268.769531 204.648438 268.769531 204.53125 Z M 268.769531 204.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.453125 202.527344 C 268.453125 202.410156 268.359375 202.316406 268.242188 202.316406 C 268.125 202.316406 268.03125 202.410156 268.03125 202.527344 C 268.03125 202.644531 268.125 202.738281 268.242188 202.738281 C 268.359375 202.738281 268.453125 202.644531 268.453125 202.527344 Z M 268.453125 202.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.234375 202.15625 C 268.234375 202.039062 268.140625 201.945312 268.023438 201.945312 C 267.90625 201.945312 267.8125 202.039062 267.8125 202.15625 C 267.8125 202.273438 267.90625 202.367188 268.023438 202.367188 C 268.140625 202.367188 268.234375 202.273438 268.234375 202.15625 Z M 268.234375 202.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.746094 202.179688 C 266.746094 202.0625 266.652344 201.96875 266.535156 201.96875 C 266.417969 201.96875 266.324219 202.0625 266.324219 202.179688 C 266.324219 202.296875 266.417969 202.390625 266.535156 202.390625 C 266.652344 202.390625 266.746094 202.296875 266.746094 202.179688 Z M 266.746094 202.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.410156 201.820312 C 267.410156 201.703125 267.316406 201.609375 267.199219 201.609375 C 267.082031 201.609375 266.988281 201.703125 266.988281 201.820312 C 266.988281 201.9375 267.082031 202.03125 267.199219 202.03125 C 267.316406 202.03125 267.410156 201.9375 267.410156 201.820312 Z M 267.410156 201.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.210938 201.75 C 267.210938 201.632812 267.117188 201.539062 267 201.539062 C 266.882812 201.539062 266.789062 201.632812 266.789062 201.75 C 266.789062 201.867188 266.882812 201.960938 267 201.960938 C 267.117188 201.960938 267.210938 201.867188 267.210938 201.75 Z M 267.210938 201.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.300781 198.910156 C 270.300781 198.792969 270.207031 198.699219 270.089844 198.699219 C 269.972656 198.699219 269.878906 198.792969 269.878906 198.910156 C 269.878906 199.027344 269.972656 199.121094 270.089844 199.121094 C 270.207031 199.121094 270.300781 199.027344 270.300781 198.910156 Z M 270.300781 198.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.929688 198.160156 C 270.929688 198.042969 270.835938 197.949219 270.71875 197.949219 C 270.601562 197.949219 270.507812 198.042969 270.507812 198.160156 C 270.507812 198.277344 270.601562 198.371094 270.71875 198.371094 C 270.835938 198.371094 270.929688 198.277344 270.929688 198.160156 Z M 270.929688 198.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.453125 202.613281 C 271.453125 202.496094 271.359375 202.402344 271.242188 202.402344 C 271.125 202.402344 271.03125 202.496094 271.03125 202.613281 C 271.03125 202.730469 271.125 202.824219 271.242188 202.824219 C 271.359375 202.824219 271.453125 202.730469 271.453125 202.613281 Z M 271.453125 202.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.882812 201.980469 C 268.882812 201.863281 268.789062 201.769531 268.671875 201.769531 C 268.554688 201.769531 268.460938 201.863281 268.460938 201.980469 C 268.460938 202.097656 268.554688 202.191406 268.671875 202.191406 C 268.789062 202.191406 268.882812 202.097656 268.882812 201.980469 Z M 268.882812 201.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.636719 203.792969 C 268.636719 203.675781 268.542969 203.582031 268.425781 203.582031 C 268.308594 203.582031 268.214844 203.675781 268.214844 203.792969 C 268.214844 203.910156 268.308594 204.003906 268.425781 204.003906 C 268.542969 204.003906 268.636719 203.910156 268.636719 203.792969 Z M 268.636719 203.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.59375 207.960938 C 265.59375 207.84375 265.5 207.75 265.382812 207.75 C 265.265625 207.75 265.171875 207.84375 265.171875 207.960938 C 265.171875 208.078125 265.265625 208.171875 265.382812 208.171875 C 265.5 208.171875 265.59375 208.078125 265.59375 207.960938 Z M 265.59375 207.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.042969 206.933594 C 265.042969 206.816406 264.949219 206.722656 264.832031 206.722656 C 264.714844 206.722656 264.621094 206.816406 264.621094 206.933594 C 264.621094 207.050781 264.714844 207.144531 264.832031 207.144531 C 264.949219 207.144531 265.042969 207.050781 265.042969 206.933594 Z M 265.042969 206.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.132812 206.339844 C 266.132812 206.222656 266.039062 206.128906 265.921875 206.128906 C 265.804688 206.128906 265.710938 206.222656 265.710938 206.339844 C 265.710938 206.457031 265.804688 206.550781 265.921875 206.550781 C 266.039062 206.550781 266.132812 206.457031 266.132812 206.339844 Z M 266.132812 206.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.375 205.230469 C 264.375 205.113281 264.28125 205.019531 264.164062 205.019531 C 264.046875 205.019531 263.953125 205.113281 263.953125 205.230469 C 263.953125 205.347656 264.046875 205.441406 264.164062 205.441406 C 264.28125 205.441406 264.375 205.347656 264.375 205.230469 Z M 264.375 205.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.570312 205.566406 C 264.570312 205.449219 264.476562 205.355469 264.359375 205.355469 C 264.242188 205.355469 264.148438 205.449219 264.148438 205.566406 C 264.148438 205.683594 264.242188 205.777344 264.359375 205.777344 C 264.476562 205.777344 264.570312 205.683594 264.570312 205.566406 Z M 264.570312 205.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.210938 203.589844 C 260.210938 203.472656 260.117188 203.378906 260 203.378906 C 259.882812 203.378906 259.789062 203.472656 259.789062 203.589844 C 259.789062 203.707031 259.882812 203.800781 260 203.800781 C 260.117188 203.800781 260.210938 203.707031 260.210938 203.589844 Z M 260.210938 203.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.214844 206.148438 C 261.214844 206.03125 261.121094 205.9375 261.003906 205.9375 C 260.886719 205.9375 260.792969 206.03125 260.792969 206.148438 C 260.792969 206.265625 260.886719 206.359375 261.003906 206.359375 C 261.121094 206.359375 261.214844 206.265625 261.214844 206.148438 Z M 261.214844 206.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.503906 208.738281 C 260.503906 208.621094 260.410156 208.527344 260.292969 208.527344 C 260.175781 208.527344 260.082031 208.621094 260.082031 208.738281 C 260.082031 208.855469 260.175781 208.949219 260.292969 208.949219 C 260.410156 208.949219 260.503906 208.855469 260.503906 208.738281 Z M 260.503906 208.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.1875 204.363281 C 259.1875 204.246094 259.09375 204.152344 258.976562 204.152344 C 258.859375 204.152344 258.765625 204.246094 258.765625 204.363281 C 258.765625 204.480469 258.859375 204.574219 258.976562 204.574219 C 259.09375 204.574219 259.1875 204.480469 259.1875 204.363281 Z M 259.1875 204.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.164062 202.378906 C 257.164062 202.261719 257.070312 202.167969 256.953125 202.167969 C 256.835938 202.167969 256.742188 202.261719 256.742188 202.378906 C 256.742188 202.496094 256.835938 202.589844 256.953125 202.589844 C 257.070312 202.589844 257.164062 202.496094 257.164062 202.378906 Z M 257.164062 202.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.289062 203.609375 C 262.289062 203.492188 262.195312 203.398438 262.078125 203.398438 C 261.960938 203.398438 261.867188 203.492188 261.867188 203.609375 C 261.867188 203.726562 261.960938 203.820312 262.078125 203.820312 C 262.195312 203.820312 262.289062 203.726562 262.289062 203.609375 Z M 262.289062 203.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.742188 204.328125 C 262.742188 204.210938 262.648438 204.117188 262.53125 204.117188 C 262.414062 204.117188 262.320312 204.210938 262.320312 204.328125 C 262.320312 204.445312 262.414062 204.539062 262.53125 204.539062 C 262.648438 204.539062 262.742188 204.445312 262.742188 204.328125 Z M 262.742188 204.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.292969 205.847656 C 264.292969 205.730469 264.199219 205.636719 264.082031 205.636719 C 263.964844 205.636719 263.871094 205.730469 263.871094 205.847656 C 263.871094 205.964844 263.964844 206.058594 264.082031 206.058594 C 264.199219 206.058594 264.292969 205.964844 264.292969 205.847656 Z M 264.292969 205.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.925781 204.195312 C 261.925781 204.078125 261.832031 203.984375 261.714844 203.984375 C 261.597656 203.984375 261.503906 204.078125 261.503906 204.195312 C 261.503906 204.3125 261.597656 204.40625 261.714844 204.40625 C 261.832031 204.40625 261.925781 204.3125 261.925781 204.195312 Z M 261.925781 204.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.824219 205.367188 C 258.824219 205.25 258.730469 205.15625 258.613281 205.15625 C 258.496094 205.15625 258.402344 205.25 258.402344 205.367188 C 258.402344 205.484375 258.496094 205.578125 258.613281 205.578125 C 258.730469 205.578125 258.824219 205.484375 258.824219 205.367188 Z M 258.824219 205.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.308594 202.28125 C 261.308594 202.164062 261.214844 202.070312 261.097656 202.070312 C 260.980469 202.070312 260.886719 202.164062 260.886719 202.28125 C 260.886719 202.398438 260.980469 202.492188 261.097656 202.492188 C 261.214844 202.492188 261.308594 202.398438 261.308594 202.28125 Z M 261.308594 202.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.800781 197.742188 C 265.800781 197.625 265.707031 197.53125 265.589844 197.53125 C 265.472656 197.53125 265.378906 197.625 265.378906 197.742188 C 265.378906 197.859375 265.472656 197.953125 265.589844 197.953125 C 265.707031 197.953125 265.800781 197.859375 265.800781 197.742188 Z M 265.800781 197.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.789062 200.820312 C 263.789062 200.703125 263.695312 200.609375 263.578125 200.609375 C 263.460938 200.609375 263.367188 200.703125 263.367188 200.820312 C 263.367188 200.9375 263.460938 201.03125 263.578125 201.03125 C 263.695312 201.03125 263.789062 200.9375 263.789062 200.820312 Z M 263.789062 200.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.375 198.585938 C 263.375 198.46875 263.28125 198.375 263.164062 198.375 C 263.046875 198.375 262.953125 198.46875 262.953125 198.585938 C 262.953125 198.703125 263.046875 198.796875 263.164062 198.796875 C 263.28125 198.796875 263.375 198.703125 263.375 198.585938 Z M 263.375 198.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.667969 196.15625 C 260.667969 196.039062 260.574219 195.945312 260.457031 195.945312 C 260.339844 195.945312 260.246094 196.039062 260.246094 196.15625 C 260.246094 196.273438 260.339844 196.367188 260.457031 196.367188 C 260.574219 196.367188 260.667969 196.273438 260.667969 196.15625 Z M 260.667969 196.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.867188 195.433594 C 259.867188 195.316406 259.773438 195.222656 259.65625 195.222656 C 259.539062 195.222656 259.445312 195.316406 259.445312 195.433594 C 259.445312 195.550781 259.539062 195.644531 259.65625 195.644531 C 259.773438 195.644531 259.867188 195.550781 259.867188 195.433594 Z M 259.867188 195.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.875 197.753906 C 256.875 197.636719 256.78125 197.542969 256.664062 197.542969 C 256.546875 197.542969 256.453125 197.636719 256.453125 197.753906 C 256.453125 197.871094 256.546875 197.964844 256.664062 197.964844 C 256.78125 197.964844 256.875 197.871094 256.875 197.753906 Z M 256.875 197.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.613281 199.917969 C 258.613281 199.800781 258.519531 199.707031 258.402344 199.707031 C 258.285156 199.707031 258.191406 199.800781 258.191406 199.917969 C 258.191406 200.035156 258.285156 200.128906 258.402344 200.128906 C 258.519531 200.128906 258.613281 200.035156 258.613281 199.917969 Z M 258.613281 199.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.074219 203.933594 C 257.074219 203.816406 256.980469 203.722656 256.863281 203.722656 C 256.746094 203.722656 256.652344 203.816406 256.652344 203.933594 C 256.652344 204.050781 256.746094 204.144531 256.863281 204.144531 C 256.980469 204.144531 257.074219 204.050781 257.074219 203.933594 Z M 257.074219 203.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.703125 203.117188 C 254.703125 203 254.609375 202.90625 254.492188 202.90625 C 254.375 202.90625 254.28125 203 254.28125 203.117188 C 254.28125 203.234375 254.375 203.328125 254.492188 203.328125 C 254.609375 203.328125 254.703125 203.234375 254.703125 203.117188 Z M 254.703125 203.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.246094 203.171875 C 255.246094 203.054688 255.152344 202.960938 255.035156 202.960938 C 254.917969 202.960938 254.824219 203.054688 254.824219 203.171875 C 254.824219 203.289062 254.917969 203.382812 255.035156 203.382812 C 255.152344 203.382812 255.246094 203.289062 255.246094 203.171875 Z M 255.246094 203.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.304688 203.480469 C 257.304688 203.363281 257.210938 203.269531 257.09375 203.269531 C 256.976562 203.269531 256.882812 203.363281 256.882812 203.480469 C 256.882812 203.597656 256.976562 203.691406 257.09375 203.691406 C 257.210938 203.691406 257.304688 203.597656 257.304688 203.480469 Z M 257.304688 203.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.308594 203.203125 C 259.308594 203.085938 259.214844 202.992188 259.097656 202.992188 C 258.980469 202.992188 258.886719 203.085938 258.886719 203.203125 C 258.886719 203.320312 258.980469 203.414062 259.097656 203.414062 C 259.214844 203.414062 259.308594 203.320312 259.308594 203.203125 Z M 259.308594 203.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.097656 206.054688 C 255.097656 205.9375 255.003906 205.84375 254.886719 205.84375 C 254.769531 205.84375 254.675781 205.9375 254.675781 206.054688 C 254.675781 206.171875 254.769531 206.265625 254.886719 206.265625 C 255.003906 206.265625 255.097656 206.171875 255.097656 206.054688 Z M 255.097656 206.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.765625 206.707031 C 256.765625 206.589844 256.671875 206.496094 256.554688 206.496094 C 256.4375 206.496094 256.34375 206.589844 256.34375 206.707031 C 256.34375 206.824219 256.4375 206.917969 256.554688 206.917969 C 256.671875 206.917969 256.765625 206.824219 256.765625 206.707031 Z M 256.765625 206.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.832031 205.804688 C 255.832031 205.6875 255.738281 205.59375 255.621094 205.59375 C 255.503906 205.59375 255.410156 205.6875 255.410156 205.804688 C 255.410156 205.921875 255.503906 206.015625 255.621094 206.015625 C 255.738281 206.015625 255.832031 205.921875 255.832031 205.804688 Z M 255.832031 205.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.042969 205.128906 C 258.042969 205.011719 257.949219 204.917969 257.832031 204.917969 C 257.714844 204.917969 257.621094 205.011719 257.621094 205.128906 C 257.621094 205.246094 257.714844 205.339844 257.832031 205.339844 C 257.949219 205.339844 258.042969 205.246094 258.042969 205.128906 Z M 258.042969 205.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.449219 209.160156 C 256.449219 209.042969 256.355469 208.949219 256.238281 208.949219 C 256.121094 208.949219 256.027344 209.042969 256.027344 209.160156 C 256.027344 209.277344 256.121094 209.371094 256.238281 209.371094 C 256.355469 209.371094 256.449219 209.277344 256.449219 209.160156 Z M 256.449219 209.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.910156 204.128906 C 256.910156 204.011719 256.816406 203.917969 256.699219 203.917969 C 256.582031 203.917969 256.488281 204.011719 256.488281 204.128906 C 256.488281 204.246094 256.582031 204.339844 256.699219 204.339844 C 256.816406 204.339844 256.910156 204.246094 256.910156 204.128906 Z M 256.910156 204.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.960938 204.351562 C 255.960938 204.234375 255.867188 204.140625 255.75 204.140625 C 255.632812 204.140625 255.539062 204.234375 255.539062 204.351562 C 255.539062 204.46875 255.632812 204.5625 255.75 204.5625 C 255.867188 204.5625 255.960938 204.46875 255.960938 204.351562 Z M 255.960938 204.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.359375 207.378906 C 259.359375 207.261719 259.265625 207.167969 259.148438 207.167969 C 259.03125 207.167969 258.9375 207.261719 258.9375 207.378906 C 258.9375 207.496094 259.03125 207.589844 259.148438 207.589844 C 259.265625 207.589844 259.359375 207.496094 259.359375 207.378906 Z M 259.359375 207.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.707031 206.464844 C 259.707031 206.347656 259.613281 206.253906 259.496094 206.253906 C 259.378906 206.253906 259.285156 206.347656 259.285156 206.464844 C 259.285156 206.582031 259.378906 206.675781 259.496094 206.675781 C 259.613281 206.675781 259.707031 206.582031 259.707031 206.464844 Z M 259.707031 206.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.746094 205.238281 C 254.746094 205.121094 254.652344 205.027344 254.535156 205.027344 C 254.417969 205.027344 254.324219 205.121094 254.324219 205.238281 C 254.324219 205.355469 254.417969 205.449219 254.535156 205.449219 C 254.652344 205.449219 254.746094 205.355469 254.746094 205.238281 Z M 254.746094 205.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.832031 203.601562 C 254.832031 203.484375 254.738281 203.390625 254.621094 203.390625 C 254.503906 203.390625 254.410156 203.484375 254.410156 203.601562 C 254.410156 203.71875 254.503906 203.8125 254.621094 203.8125 C 254.738281 203.8125 254.832031 203.71875 254.832031 203.601562 Z M 254.832031 203.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.816406 206.792969 C 254.816406 206.675781 254.722656 206.582031 254.605469 206.582031 C 254.488281 206.582031 254.394531 206.675781 254.394531 206.792969 C 254.394531 206.910156 254.488281 207.003906 254.605469 207.003906 C 254.722656 207.003906 254.816406 206.910156 254.816406 206.792969 Z M 254.816406 206.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.109375 205.875 C 251.109375 205.757812 251.015625 205.664062 250.898438 205.664062 C 250.78125 205.664062 250.6875 205.757812 250.6875 205.875 C 250.6875 205.992188 250.78125 206.085938 250.898438 206.085938 C 251.015625 206.085938 251.109375 205.992188 251.109375 205.875 Z M 251.109375 205.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 254.984375 206.492188 C 254.984375 206.375 254.890625 206.28125 254.773438 206.28125 C 254.65625 206.28125 254.5625 206.375 254.5625 206.492188 C 254.5625 206.609375 254.65625 206.703125 254.773438 206.703125 C 254.890625 206.703125 254.984375 206.609375 254.984375 206.492188 Z M 254.984375 206.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.421875 204.90625 C 256.421875 204.789062 256.328125 204.695312 256.210938 204.695312 C 256.09375 204.695312 256 204.789062 256 204.90625 C 256 205.023438 256.09375 205.117188 256.210938 205.117188 C 256.328125 205.117188 256.421875 205.023438 256.421875 204.90625 Z M 256.421875 204.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.074219 205.265625 C 255.074219 205.148438 254.980469 205.054688 254.863281 205.054688 C 254.746094 205.054688 254.652344 205.148438 254.652344 205.265625 C 254.652344 205.382812 254.746094 205.476562 254.863281 205.476562 C 254.980469 205.476562 255.074219 205.382812 255.074219 205.265625 Z M 255.074219 205.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.902344 206 C 255.902344 205.882812 255.808594 205.789062 255.691406 205.789062 C 255.574219 205.789062 255.480469 205.882812 255.480469 206 C 255.480469 206.117188 255.574219 206.210938 255.691406 206.210938 C 255.808594 206.210938 255.902344 206.117188 255.902344 206 Z M 255.902344 206 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.222656 206.195312 C 256.222656 206.078125 256.128906 205.984375 256.011719 205.984375 C 255.894531 205.984375 255.800781 206.078125 255.800781 206.195312 C 255.800781 206.3125 255.894531 206.40625 256.011719 206.40625 C 256.128906 206.40625 256.222656 206.3125 256.222656 206.195312 Z M 256.222656 206.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.082031 210.65625 C 256.082031 210.539062 255.988281 210.445312 255.871094 210.445312 C 255.753906 210.445312 255.660156 210.539062 255.660156 210.65625 C 255.660156 210.773438 255.753906 210.867188 255.871094 210.867188 C 255.988281 210.867188 256.082031 210.773438 256.082031 210.65625 Z M 256.082031 210.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.011719 209.300781 C 256.011719 209.183594 255.917969 209.089844 255.800781 209.089844 C 255.683594 209.089844 255.589844 209.183594 255.589844 209.300781 C 255.589844 209.417969 255.683594 209.511719 255.800781 209.511719 C 255.917969 209.511719 256.011719 209.417969 256.011719 209.300781 Z M 256.011719 209.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.773438 207.863281 C 255.773438 207.746094 255.679688 207.652344 255.5625 207.652344 C 255.445312 207.652344 255.351562 207.746094 255.351562 207.863281 C 255.351562 207.980469 255.445312 208.074219 255.5625 208.074219 C 255.679688 208.074219 255.773438 207.980469 255.773438 207.863281 Z M 255.773438 207.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.632812 209.464844 C 257.632812 209.347656 257.539062 209.253906 257.421875 209.253906 C 257.304688 209.253906 257.210938 209.347656 257.210938 209.464844 C 257.210938 209.582031 257.304688 209.675781 257.421875 209.675781 C 257.539062 209.675781 257.632812 209.582031 257.632812 209.464844 Z M 257.632812 209.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.355469 205.972656 C 259.355469 205.855469 259.261719 205.761719 259.144531 205.761719 C 259.027344 205.761719 258.933594 205.855469 258.933594 205.972656 C 258.933594 206.089844 259.027344 206.183594 259.144531 206.183594 C 259.261719 206.183594 259.355469 206.089844 259.355469 205.972656 Z M 259.355469 205.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.785156 204.085938 C 257.785156 203.96875 257.691406 203.875 257.574219 203.875 C 257.457031 203.875 257.363281 203.96875 257.363281 204.085938 C 257.363281 204.203125 257.457031 204.296875 257.574219 204.296875 C 257.691406 204.296875 257.785156 204.203125 257.785156 204.085938 Z M 257.785156 204.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.636719 203.558594 C 257.636719 203.441406 257.542969 203.347656 257.425781 203.347656 C 257.308594 203.347656 257.214844 203.441406 257.214844 203.558594 C 257.214844 203.675781 257.308594 203.769531 257.425781 203.769531 C 257.542969 203.769531 257.636719 203.675781 257.636719 203.558594 Z M 257.636719 203.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.792969 202.121094 C 256.792969 202.003906 256.699219 201.910156 256.582031 201.910156 C 256.464844 201.910156 256.371094 202.003906 256.371094 202.121094 C 256.371094 202.238281 256.464844 202.332031 256.582031 202.332031 C 256.699219 202.332031 256.792969 202.238281 256.792969 202.121094 Z M 256.792969 202.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.863281 202.609375 C 259.863281 202.492188 259.769531 202.398438 259.652344 202.398438 C 259.535156 202.398438 259.441406 202.492188 259.441406 202.609375 C 259.441406 202.726562 259.535156 202.820312 259.652344 202.820312 C 259.769531 202.820312 259.863281 202.726562 259.863281 202.609375 Z M 259.863281 202.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.121094 207.105469 C 260.121094 206.988281 260.027344 206.894531 259.910156 206.894531 C 259.792969 206.894531 259.699219 206.988281 259.699219 207.105469 C 259.699219 207.222656 259.792969 207.316406 259.910156 207.316406 C 260.027344 207.316406 260.121094 207.222656 260.121094 207.105469 Z M 260.121094 207.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.703125 205.835938 C 261.703125 205.71875 261.609375 205.625 261.492188 205.625 C 261.375 205.625 261.28125 205.71875 261.28125 205.835938 C 261.28125 205.953125 261.375 206.046875 261.492188 206.046875 C 261.609375 206.046875 261.703125 205.953125 261.703125 205.835938 Z M 261.703125 205.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264 202.914062 C 264 202.796875 263.90625 202.703125 263.789062 202.703125 C 263.671875 202.703125 263.578125 202.796875 263.578125 202.914062 C 263.578125 203.03125 263.671875 203.125 263.789062 203.125 C 263.90625 203.125 264 203.03125 264 202.914062 Z M 264 202.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.402344 205.683594 C 261.402344 205.566406 261.308594 205.472656 261.191406 205.472656 C 261.074219 205.472656 260.980469 205.566406 260.980469 205.683594 C 260.980469 205.800781 261.074219 205.894531 261.191406 205.894531 C 261.308594 205.894531 261.402344 205.800781 261.402344 205.683594 Z M 261.402344 205.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.230469 207.546875 C 264.230469 207.429688 264.136719 207.335938 264.019531 207.335938 C 263.902344 207.335938 263.808594 207.429688 263.808594 207.546875 C 263.808594 207.664062 263.902344 207.757812 264.019531 207.757812 C 264.136719 207.757812 264.230469 207.664062 264.230469 207.546875 Z M 264.230469 207.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.019531 205.101562 C 264.019531 204.984375 263.925781 204.890625 263.808594 204.890625 C 263.691406 204.890625 263.597656 204.984375 263.597656 205.101562 C 263.597656 205.21875 263.691406 205.3125 263.808594 205.3125 C 263.925781 205.3125 264.019531 205.21875 264.019531 205.101562 Z M 264.019531 205.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.09375 202.96875 C 261.09375 202.851562 261 202.757812 260.882812 202.757812 C 260.765625 202.757812 260.671875 202.851562 260.671875 202.96875 C 260.671875 203.085938 260.765625 203.179688 260.882812 203.179688 C 261 203.179688 261.09375 203.085938 261.09375 202.96875 Z M 261.09375 202.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.253906 205.332031 C 260.253906 205.214844 260.160156 205.121094 260.042969 205.121094 C 259.925781 205.121094 259.832031 205.214844 259.832031 205.332031 C 259.832031 205.449219 259.925781 205.542969 260.042969 205.542969 C 260.160156 205.542969 260.253906 205.449219 260.253906 205.332031 Z M 260.253906 205.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.355469 206.480469 C 261.355469 206.363281 261.261719 206.269531 261.144531 206.269531 C 261.027344 206.269531 260.933594 206.363281 260.933594 206.480469 C 260.933594 206.597656 261.027344 206.691406 261.144531 206.691406 C 261.261719 206.691406 261.355469 206.597656 261.355469 206.480469 Z M 261.355469 206.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.566406 203.542969 C 263.566406 203.425781 263.472656 203.332031 263.355469 203.332031 C 263.238281 203.332031 263.144531 203.425781 263.144531 203.542969 C 263.144531 203.660156 263.238281 203.753906 263.355469 203.753906 C 263.472656 203.753906 263.566406 203.660156 263.566406 203.542969 Z M 263.566406 203.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.78125 205.121094 C 262.78125 205.003906 262.6875 204.910156 262.570312 204.910156 C 262.453125 204.910156 262.359375 205.003906 262.359375 205.121094 C 262.359375 205.238281 262.453125 205.332031 262.570312 205.332031 C 262.6875 205.332031 262.78125 205.238281 262.78125 205.121094 Z M 262.78125 205.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.8125 199.773438 C 263.8125 199.65625 263.71875 199.5625 263.601562 199.5625 C 263.484375 199.5625 263.390625 199.65625 263.390625 199.773438 C 263.390625 199.890625 263.484375 199.984375 263.601562 199.984375 C 263.71875 199.984375 263.8125 199.890625 263.8125 199.773438 Z M 263.8125 199.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.863281 199.589844 C 264.863281 199.472656 264.769531 199.378906 264.652344 199.378906 C 264.535156 199.378906 264.441406 199.472656 264.441406 199.589844 C 264.441406 199.707031 264.535156 199.800781 264.652344 199.800781 C 264.769531 199.800781 264.863281 199.707031 264.863281 199.589844 Z M 264.863281 199.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.800781 196.957031 C 264.800781 196.839844 264.707031 196.746094 264.589844 196.746094 C 264.472656 196.746094 264.378906 196.839844 264.378906 196.957031 C 264.378906 197.074219 264.472656 197.167969 264.589844 197.167969 C 264.707031 197.167969 264.800781 197.074219 264.800781 196.957031 Z M 264.800781 196.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265 194.679688 C 265 194.5625 264.90625 194.46875 264.789062 194.46875 C 264.671875 194.46875 264.578125 194.5625 264.578125 194.679688 C 264.578125 194.796875 264.671875 194.890625 264.789062 194.890625 C 264.90625 194.890625 265 194.796875 265 194.679688 Z M 265 194.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.453125 192.519531 C 261.453125 192.402344 261.359375 192.308594 261.242188 192.308594 C 261.125 192.308594 261.03125 192.402344 261.03125 192.519531 C 261.03125 192.636719 261.125 192.730469 261.242188 192.730469 C 261.359375 192.730469 261.453125 192.636719 261.453125 192.519531 Z M 261.453125 192.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.070312 191.683594 C 260.070312 191.566406 259.976562 191.472656 259.859375 191.472656 C 259.742188 191.472656 259.648438 191.566406 259.648438 191.683594 C 259.648438 191.800781 259.742188 191.894531 259.859375 191.894531 C 259.976562 191.894531 260.070312 191.800781 260.070312 191.683594 Z M 260.070312 191.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.480469 191.6875 C 262.480469 191.570312 262.386719 191.476562 262.269531 191.476562 C 262.152344 191.476562 262.058594 191.570312 262.058594 191.6875 C 262.058594 191.804688 262.152344 191.898438 262.269531 191.898438 C 262.386719 191.898438 262.480469 191.804688 262.480469 191.6875 Z M 262.480469 191.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.066406 188.992188 C 267.066406 188.875 266.972656 188.78125 266.855469 188.78125 C 266.738281 188.78125 266.644531 188.875 266.644531 188.992188 C 266.644531 189.109375 266.738281 189.203125 266.855469 189.203125 C 266.972656 189.203125 267.066406 189.109375 267.066406 188.992188 Z M 267.066406 188.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.511719 192.476562 C 263.511719 192.359375 263.417969 192.265625 263.300781 192.265625 C 263.183594 192.265625 263.089844 192.359375 263.089844 192.476562 C 263.089844 192.59375 263.183594 192.6875 263.300781 192.6875 C 263.417969 192.6875 263.511719 192.59375 263.511719 192.476562 Z M 263.511719 192.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.136719 191.59375 C 261.136719 191.476562 261.042969 191.382812 260.925781 191.382812 C 260.808594 191.382812 260.714844 191.476562 260.714844 191.59375 C 260.714844 191.710938 260.808594 191.804688 260.925781 191.804688 C 261.042969 191.804688 261.136719 191.710938 261.136719 191.59375 Z M 261.136719 191.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.984375 189.476562 C 263.984375 189.359375 263.890625 189.265625 263.773438 189.265625 C 263.65625 189.265625 263.5625 189.359375 263.5625 189.476562 C 263.5625 189.59375 263.65625 189.6875 263.773438 189.6875 C 263.890625 189.6875 263.984375 189.59375 263.984375 189.476562 Z M 263.984375 189.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.335938 189.175781 C 263.335938 189.058594 263.242188 188.964844 263.125 188.964844 C 263.007812 188.964844 262.914062 189.058594 262.914062 189.175781 C 262.914062 189.292969 263.007812 189.386719 263.125 189.386719 C 263.242188 189.386719 263.335938 189.292969 263.335938 189.175781 Z M 263.335938 189.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.058594 190.183594 C 267.058594 190.066406 266.964844 189.972656 266.847656 189.972656 C 266.730469 189.972656 266.636719 190.066406 266.636719 190.183594 C 266.636719 190.300781 266.730469 190.394531 266.847656 190.394531 C 266.964844 190.394531 267.058594 190.300781 267.058594 190.183594 Z M 267.058594 190.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.496094 192.132812 C 266.496094 192.015625 266.402344 191.921875 266.285156 191.921875 C 266.167969 191.921875 266.074219 192.015625 266.074219 192.132812 C 266.074219 192.25 266.167969 192.34375 266.285156 192.34375 C 266.402344 192.34375 266.496094 192.25 266.496094 192.132812 Z M 266.496094 192.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.785156 189.273438 C 263.785156 189.15625 263.691406 189.0625 263.574219 189.0625 C 263.457031 189.0625 263.363281 189.15625 263.363281 189.273438 C 263.363281 189.390625 263.457031 189.484375 263.574219 189.484375 C 263.691406 189.484375 263.785156 189.390625 263.785156 189.273438 Z M 263.785156 189.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.828125 190.132812 C 261.828125 190.015625 261.734375 189.921875 261.617188 189.921875 C 261.5 189.921875 261.40625 190.015625 261.40625 190.132812 C 261.40625 190.25 261.5 190.34375 261.617188 190.34375 C 261.734375 190.34375 261.828125 190.25 261.828125 190.132812 Z M 261.828125 190.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.597656 190.949219 C 262.597656 190.832031 262.503906 190.738281 262.386719 190.738281 C 262.269531 190.738281 262.175781 190.832031 262.175781 190.949219 C 262.175781 191.066406 262.269531 191.160156 262.386719 191.160156 C 262.503906 191.160156 262.597656 191.066406 262.597656 190.949219 Z M 262.597656 190.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.289062 190.785156 C 263.289062 190.667969 263.195312 190.574219 263.078125 190.574219 C 262.960938 190.574219 262.867188 190.667969 262.867188 190.785156 C 262.867188 190.902344 262.960938 190.996094 263.078125 190.996094 C 263.195312 190.996094 263.289062 190.902344 263.289062 190.785156 Z M 263.289062 190.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.566406 190.15625 C 263.566406 190.039062 263.472656 189.945312 263.355469 189.945312 C 263.238281 189.945312 263.144531 190.039062 263.144531 190.15625 C 263.144531 190.273438 263.238281 190.367188 263.355469 190.367188 C 263.472656 190.367188 263.566406 190.273438 263.566406 190.15625 Z M 263.566406 190.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.304688 194.660156 C 262.304688 194.542969 262.210938 194.449219 262.09375 194.449219 C 261.976562 194.449219 261.882812 194.542969 261.882812 194.660156 C 261.882812 194.777344 261.976562 194.871094 262.09375 194.871094 C 262.210938 194.871094 262.304688 194.777344 262.304688 194.660156 Z M 262.304688 194.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.5 194.492188 C 263.5 194.375 263.40625 194.28125 263.289062 194.28125 C 263.171875 194.28125 263.078125 194.375 263.078125 194.492188 C 263.078125 194.609375 263.171875 194.703125 263.289062 194.703125 C 263.40625 194.703125 263.5 194.609375 263.5 194.492188 Z M 263.5 194.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.644531 197.621094 C 263.644531 197.503906 263.550781 197.410156 263.433594 197.410156 C 263.316406 197.410156 263.222656 197.503906 263.222656 197.621094 C 263.222656 197.738281 263.316406 197.832031 263.433594 197.832031 C 263.550781 197.832031 263.644531 197.738281 263.644531 197.621094 Z M 263.644531 197.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.253906 196.402344 C 267.253906 196.285156 267.160156 196.191406 267.042969 196.191406 C 266.925781 196.191406 266.832031 196.285156 266.832031 196.402344 C 266.832031 196.519531 266.925781 196.613281 267.042969 196.613281 C 267.160156 196.613281 267.253906 196.519531 267.253906 196.402344 Z M 267.253906 196.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.855469 194.3125 C 267.855469 194.195312 267.761719 194.101562 267.644531 194.101562 C 267.527344 194.101562 267.433594 194.195312 267.433594 194.3125 C 267.433594 194.429688 267.527344 194.523438 267.644531 194.523438 C 267.761719 194.523438 267.855469 194.429688 267.855469 194.3125 Z M 267.855469 194.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.460938 193.222656 C 269.460938 193.105469 269.367188 193.011719 269.25 193.011719 C 269.132812 193.011719 269.039062 193.105469 269.039062 193.222656 C 269.039062 193.339844 269.132812 193.433594 269.25 193.433594 C 269.367188 193.433594 269.460938 193.339844 269.460938 193.222656 Z M 269.460938 193.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.386719 192.785156 C 273.386719 192.667969 273.292969 192.574219 273.175781 192.574219 C 273.058594 192.574219 272.964844 192.667969 272.964844 192.785156 C 272.964844 192.902344 273.058594 192.996094 273.175781 192.996094 C 273.292969 192.996094 273.386719 192.902344 273.386719 192.785156 Z M 273.386719 192.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.578125 191.734375 C 273.578125 191.617188 273.484375 191.523438 273.367188 191.523438 C 273.25 191.523438 273.15625 191.617188 273.15625 191.734375 C 273.15625 191.851562 273.25 191.945312 273.367188 191.945312 C 273.484375 191.945312 273.578125 191.851562 273.578125 191.734375 Z M 273.578125 191.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.941406 193.085938 C 275.941406 192.96875 275.847656 192.875 275.730469 192.875 C 275.613281 192.875 275.519531 192.96875 275.519531 193.085938 C 275.519531 193.203125 275.613281 193.296875 275.730469 193.296875 C 275.847656 193.296875 275.941406 193.203125 275.941406 193.085938 Z M 275.941406 193.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.414062 194.128906 C 279.414062 194.011719 279.320312 193.917969 279.203125 193.917969 C 279.085938 193.917969 278.992188 194.011719 278.992188 194.128906 C 278.992188 194.246094 279.085938 194.339844 279.203125 194.339844 C 279.320312 194.339844 279.414062 194.246094 279.414062 194.128906 Z M 279.414062 194.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 279.136719 194.132812 C 279.136719 194.015625 279.042969 193.921875 278.925781 193.921875 C 278.808594 193.921875 278.714844 194.015625 278.714844 194.132812 C 278.714844 194.25 278.808594 194.34375 278.925781 194.34375 C 279.042969 194.34375 279.136719 194.25 279.136719 194.132812 Z M 279.136719 194.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.785156 192.558594 C 276.785156 192.441406 276.691406 192.347656 276.574219 192.347656 C 276.457031 192.347656 276.363281 192.441406 276.363281 192.558594 C 276.363281 192.675781 276.457031 192.769531 276.574219 192.769531 C 276.691406 192.769531 276.785156 192.675781 276.785156 192.558594 Z M 276.785156 192.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.195312 189.890625 C 275.195312 189.773438 275.101562 189.679688 274.984375 189.679688 C 274.867188 189.679688 274.773438 189.773438 274.773438 189.890625 C 274.773438 190.007812 274.867188 190.101562 274.984375 190.101562 C 275.101562 190.101562 275.195312 190.007812 275.195312 189.890625 Z M 275.195312 189.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.972656 191.753906 C 276.972656 191.636719 276.878906 191.542969 276.761719 191.542969 C 276.644531 191.542969 276.550781 191.636719 276.550781 191.753906 C 276.550781 191.871094 276.644531 191.964844 276.761719 191.964844 C 276.878906 191.964844 276.972656 191.871094 276.972656 191.753906 Z M 276.972656 191.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.394531 191.96875 C 275.394531 191.851562 275.300781 191.757812 275.183594 191.757812 C 275.066406 191.757812 274.972656 191.851562 274.972656 191.96875 C 274.972656 192.085938 275.066406 192.179688 275.183594 192.179688 C 275.300781 192.179688 275.394531 192.085938 275.394531 191.96875 Z M 275.394531 191.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.390625 194.128906 C 276.390625 194.011719 276.296875 193.917969 276.179688 193.917969 C 276.0625 193.917969 275.96875 194.011719 275.96875 194.128906 C 275.96875 194.246094 276.0625 194.339844 276.179688 194.339844 C 276.296875 194.339844 276.390625 194.246094 276.390625 194.128906 Z M 276.390625 194.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 278.089844 194.378906 C 278.089844 194.261719 277.996094 194.167969 277.878906 194.167969 C 277.761719 194.167969 277.667969 194.261719 277.667969 194.378906 C 277.667969 194.496094 277.761719 194.589844 277.878906 194.589844 C 277.996094 194.589844 278.089844 194.496094 278.089844 194.378906 Z M 278.089844 194.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.027344 198.578125 C 277.027344 198.460938 276.933594 198.367188 276.816406 198.367188 C 276.699219 198.367188 276.605469 198.460938 276.605469 198.578125 C 276.605469 198.695312 276.699219 198.789062 276.816406 198.789062 C 276.933594 198.789062 277.027344 198.695312 277.027344 198.578125 Z M 277.027344 198.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 280.65625 196.503906 C 280.65625 196.386719 280.5625 196.292969 280.445312 196.292969 C 280.328125 196.292969 280.234375 196.386719 280.234375 196.503906 C 280.234375 196.621094 280.328125 196.714844 280.445312 196.714844 C 280.5625 196.714844 280.65625 196.621094 280.65625 196.503906 Z M 280.65625 196.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.867188 195.925781 C 277.867188 195.808594 277.773438 195.714844 277.65625 195.714844 C 277.539062 195.714844 277.445312 195.808594 277.445312 195.925781 C 277.445312 196.042969 277.539062 196.136719 277.65625 196.136719 C 277.773438 196.136719 277.867188 196.042969 277.867188 195.925781 Z M 277.867188 195.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.710938 199.234375 C 273.710938 199.117188 273.617188 199.023438 273.5 199.023438 C 273.382812 199.023438 273.289062 199.117188 273.289062 199.234375 C 273.289062 199.351562 273.382812 199.445312 273.5 199.445312 C 273.617188 199.445312 273.710938 199.351562 273.710938 199.234375 Z M 273.710938 199.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.386719 197.796875 C 275.386719 197.679688 275.292969 197.585938 275.175781 197.585938 C 275.058594 197.585938 274.964844 197.679688 274.964844 197.796875 C 274.964844 197.914062 275.058594 198.007812 275.175781 198.007812 C 275.292969 198.007812 275.386719 197.914062 275.386719 197.796875 Z M 275.386719 197.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.511719 201.203125 C 274.511719 201.085938 274.417969 200.992188 274.300781 200.992188 C 274.183594 200.992188 274.089844 201.085938 274.089844 201.203125 C 274.089844 201.320312 274.183594 201.414062 274.300781 201.414062 C 274.417969 201.414062 274.511719 201.320312 274.511719 201.203125 Z M 274.511719 201.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.238281 200.140625 C 276.238281 200.023438 276.144531 199.929688 276.027344 199.929688 C 275.910156 199.929688 275.816406 200.023438 275.816406 200.140625 C 275.816406 200.257812 275.910156 200.351562 276.027344 200.351562 C 276.144531 200.351562 276.238281 200.257812 276.238281 200.140625 Z M 276.238281 200.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.070312 198.960938 C 275.070312 198.84375 274.976562 198.75 274.859375 198.75 C 274.742188 198.75 274.648438 198.84375 274.648438 198.960938 C 274.648438 199.078125 274.742188 199.171875 274.859375 199.171875 C 274.976562 199.171875 275.070312 199.078125 275.070312 198.960938 Z M 275.070312 198.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.308594 201.117188 C 273.308594 201 273.214844 200.90625 273.097656 200.90625 C 272.980469 200.90625 272.886719 201 272.886719 201.117188 C 272.886719 201.234375 272.980469 201.328125 273.097656 201.328125 C 273.214844 201.328125 273.308594 201.234375 273.308594 201.117188 Z M 273.308594 201.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.746094 201.308594 C 271.746094 201.191406 271.652344 201.097656 271.535156 201.097656 C 271.417969 201.097656 271.324219 201.191406 271.324219 201.308594 C 271.324219 201.425781 271.417969 201.519531 271.535156 201.519531 C 271.652344 201.519531 271.746094 201.425781 271.746094 201.308594 Z M 271.746094 201.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.976562 203.460938 C 271.976562 203.34375 271.882812 203.25 271.765625 203.25 C 271.648438 203.25 271.554688 203.34375 271.554688 203.460938 C 271.554688 203.578125 271.648438 203.671875 271.765625 203.671875 C 271.882812 203.671875 271.976562 203.578125 271.976562 203.460938 Z M 271.976562 203.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.96875 200.589844 C 274.96875 200.472656 274.875 200.378906 274.757812 200.378906 C 274.640625 200.378906 274.546875 200.472656 274.546875 200.589844 C 274.546875 200.707031 274.640625 200.800781 274.757812 200.800781 C 274.875 200.800781 274.96875 200.707031 274.96875 200.589844 Z M 274.96875 200.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.546875 200.875 C 275.546875 200.757812 275.453125 200.664062 275.335938 200.664062 C 275.21875 200.664062 275.125 200.757812 275.125 200.875 C 275.125 200.992188 275.21875 201.085938 275.335938 201.085938 C 275.453125 201.085938 275.546875 200.992188 275.546875 200.875 Z M 275.546875 200.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.519531 199.710938 C 275.519531 199.59375 275.425781 199.5 275.308594 199.5 C 275.191406 199.5 275.097656 199.59375 275.097656 199.710938 C 275.097656 199.828125 275.191406 199.921875 275.308594 199.921875 C 275.425781 199.921875 275.519531 199.828125 275.519531 199.710938 Z M 275.519531 199.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.078125 198.964844 C 274.078125 198.847656 273.984375 198.753906 273.867188 198.753906 C 273.75 198.753906 273.65625 198.847656 273.65625 198.964844 C 273.65625 199.082031 273.75 199.175781 273.867188 199.175781 C 273.984375 199.175781 274.078125 199.082031 274.078125 198.964844 Z M 274.078125 198.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.046875 203.445312 C 272.046875 203.328125 271.953125 203.234375 271.835938 203.234375 C 271.71875 203.234375 271.625 203.328125 271.625 203.445312 C 271.625 203.5625 271.71875 203.65625 271.835938 203.65625 C 271.953125 203.65625 272.046875 203.5625 272.046875 203.445312 Z M 272.046875 203.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.664062 200.847656 C 272.664062 200.730469 272.570312 200.636719 272.453125 200.636719 C 272.335938 200.636719 272.242188 200.730469 272.242188 200.847656 C 272.242188 200.964844 272.335938 201.058594 272.453125 201.058594 C 272.570312 201.058594 272.664062 200.964844 272.664062 200.847656 Z M 272.664062 200.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.867188 199.703125 C 274.867188 199.585938 274.773438 199.492188 274.65625 199.492188 C 274.539062 199.492188 274.445312 199.585938 274.445312 199.703125 C 274.445312 199.820312 274.539062 199.914062 274.65625 199.914062 C 274.773438 199.914062 274.867188 199.820312 274.867188 199.703125 Z M 274.867188 199.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 277.003906 197.335938 C 277.003906 197.21875 276.910156 197.125 276.792969 197.125 C 276.675781 197.125 276.582031 197.21875 276.582031 197.335938 C 276.582031 197.453125 276.675781 197.546875 276.792969 197.546875 C 276.910156 197.546875 277.003906 197.453125 277.003906 197.335938 Z M 277.003906 197.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 276.320312 200.460938 C 276.320312 200.34375 276.226562 200.25 276.109375 200.25 C 275.992188 200.25 275.898438 200.34375 275.898438 200.460938 C 275.898438 200.578125 275.992188 200.671875 276.109375 200.671875 C 276.226562 200.671875 276.320312 200.578125 276.320312 200.460938 Z M 276.320312 200.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.753906 201.402344 C 275.753906 201.285156 275.660156 201.191406 275.542969 201.191406 C 275.425781 201.191406 275.332031 201.285156 275.332031 201.402344 C 275.332031 201.519531 275.425781 201.613281 275.542969 201.613281 C 275.660156 201.613281 275.753906 201.519531 275.753906 201.402344 Z M 275.753906 201.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.117188 201.085938 C 274.117188 200.96875 274.023438 200.875 273.90625 200.875 C 273.789062 200.875 273.695312 200.96875 273.695312 201.085938 C 273.695312 201.203125 273.789062 201.296875 273.90625 201.296875 C 274.023438 201.296875 274.117188 201.203125 274.117188 201.085938 Z M 274.117188 201.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.773438 202.128906 C 274.773438 202.011719 274.679688 201.917969 274.5625 201.917969 C 274.445312 201.917969 274.351562 202.011719 274.351562 202.128906 C 274.351562 202.246094 274.445312 202.339844 274.5625 202.339844 C 274.679688 202.339844 274.773438 202.246094 274.773438 202.128906 Z M 274.773438 202.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.132812 203.054688 C 275.132812 202.9375 275.039062 202.84375 274.921875 202.84375 C 274.804688 202.84375 274.710938 202.9375 274.710938 203.054688 C 274.710938 203.171875 274.804688 203.265625 274.921875 203.265625 C 275.039062 203.265625 275.132812 203.171875 275.132812 203.054688 Z M 275.132812 203.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.960938 201.984375 C 272.960938 201.867188 272.867188 201.773438 272.75 201.773438 C 272.632812 201.773438 272.539062 201.867188 272.539062 201.984375 C 272.539062 202.101562 272.632812 202.195312 272.75 202.195312 C 272.867188 202.195312 272.960938 202.101562 272.960938 201.984375 Z M 272.960938 201.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.226562 203.183594 C 272.226562 203.066406 272.132812 202.972656 272.015625 202.972656 C 271.898438 202.972656 271.804688 203.066406 271.804688 203.183594 C 271.804688 203.300781 271.898438 203.394531 272.015625 203.394531 C 272.132812 203.394531 272.226562 203.300781 272.226562 203.183594 Z M 272.226562 203.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.84375 204.699219 C 271.84375 204.582031 271.75 204.488281 271.632812 204.488281 C 271.515625 204.488281 271.421875 204.582031 271.421875 204.699219 C 271.421875 204.816406 271.515625 204.910156 271.632812 204.910156 C 271.75 204.910156 271.84375 204.816406 271.84375 204.699219 Z M 271.84375 204.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.945312 204.160156 C 270.945312 204.042969 270.851562 203.949219 270.734375 203.949219 C 270.617188 203.949219 270.523438 204.042969 270.523438 204.160156 C 270.523438 204.277344 270.617188 204.371094 270.734375 204.371094 C 270.851562 204.371094 270.945312 204.277344 270.945312 204.160156 Z M 270.945312 204.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 275.648438 200.574219 C 275.648438 200.457031 275.554688 200.363281 275.4375 200.363281 C 275.320312 200.363281 275.226562 200.457031 275.226562 200.574219 C 275.226562 200.691406 275.320312 200.785156 275.4375 200.785156 C 275.554688 200.785156 275.648438 200.691406 275.648438 200.574219 Z M 275.648438 200.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.5625 202.222656 C 273.5625 202.105469 273.46875 202.011719 273.351562 202.011719 C 273.234375 202.011719 273.140625 202.105469 273.140625 202.222656 C 273.140625 202.339844 273.234375 202.433594 273.351562 202.433594 C 273.46875 202.433594 273.5625 202.339844 273.5625 202.222656 Z M 273.5625 202.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.695312 204.03125 C 270.695312 203.914062 270.601562 203.820312 270.484375 203.820312 C 270.367188 203.820312 270.273438 203.914062 270.273438 204.03125 C 270.273438 204.148438 270.367188 204.242188 270.484375 204.242188 C 270.601562 204.242188 270.695312 204.148438 270.695312 204.03125 Z M 270.695312 204.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.3125 205.648438 C 270.3125 205.53125 270.21875 205.4375 270.101562 205.4375 C 269.984375 205.4375 269.890625 205.53125 269.890625 205.648438 C 269.890625 205.765625 269.984375 205.859375 270.101562 205.859375 C 270.21875 205.859375 270.3125 205.765625 270.3125 205.648438 Z M 270.3125 205.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.140625 206.40625 C 272.140625 206.289062 272.046875 206.195312 271.929688 206.195312 C 271.8125 206.195312 271.71875 206.289062 271.71875 206.40625 C 271.71875 206.523438 271.8125 206.617188 271.929688 206.617188 C 272.046875 206.617188 272.140625 206.523438 272.140625 206.40625 Z M 272.140625 206.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.386719 209.097656 C 272.386719 208.980469 272.292969 208.886719 272.175781 208.886719 C 272.058594 208.886719 271.964844 208.980469 271.964844 209.097656 C 271.964844 209.214844 272.058594 209.308594 272.175781 209.308594 C 272.292969 209.308594 272.386719 209.214844 272.386719 209.097656 Z M 272.386719 209.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.828125 209.074219 C 270.828125 208.957031 270.734375 208.863281 270.617188 208.863281 C 270.5 208.863281 270.40625 208.957031 270.40625 209.074219 C 270.40625 209.191406 270.5 209.285156 270.617188 209.285156 C 270.734375 209.285156 270.828125 209.191406 270.828125 209.074219 Z M 270.828125 209.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.394531 208.710938 C 271.394531 208.59375 271.300781 208.5 271.183594 208.5 C 271.066406 208.5 270.972656 208.59375 270.972656 208.710938 C 270.972656 208.828125 271.066406 208.921875 271.183594 208.921875 C 271.300781 208.921875 271.394531 208.828125 271.394531 208.710938 Z M 271.394531 208.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.601562 207.332031 C 271.601562 207.214844 271.507812 207.121094 271.390625 207.121094 C 271.273438 207.121094 271.179688 207.214844 271.179688 207.332031 C 271.179688 207.449219 271.273438 207.542969 271.390625 207.542969 C 271.507812 207.542969 271.601562 207.449219 271.601562 207.332031 Z M 271.601562 207.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.625 207.976562 C 268.625 207.859375 268.53125 207.765625 268.414062 207.765625 C 268.296875 207.765625 268.203125 207.859375 268.203125 207.976562 C 268.203125 208.09375 268.296875 208.1875 268.414062 208.1875 C 268.53125 208.1875 268.625 208.09375 268.625 207.976562 Z M 268.625 207.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.671875 208.25 C 267.671875 208.132812 267.578125 208.039062 267.460938 208.039062 C 267.34375 208.039062 267.25 208.132812 267.25 208.25 C 267.25 208.367188 267.34375 208.460938 267.460938 208.460938 C 267.578125 208.460938 267.671875 208.367188 267.671875 208.25 Z M 267.671875 208.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.308594 206.199219 C 269.308594 206.082031 269.214844 205.988281 269.097656 205.988281 C 268.980469 205.988281 268.886719 206.082031 268.886719 206.199219 C 268.886719 206.316406 268.980469 206.410156 269.097656 206.410156 C 269.214844 206.410156 269.308594 206.316406 269.308594 206.199219 Z M 269.308594 206.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.890625 206.988281 C 265.890625 206.871094 265.796875 206.777344 265.679688 206.777344 C 265.5625 206.777344 265.46875 206.871094 265.46875 206.988281 C 265.46875 207.105469 265.5625 207.199219 265.679688 207.199219 C 265.796875 207.199219 265.890625 207.105469 265.890625 206.988281 Z M 265.890625 206.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 271.972656 207.449219 C 271.972656 207.332031 271.878906 207.238281 271.761719 207.238281 C 271.644531 207.238281 271.550781 207.332031 271.550781 207.449219 C 271.550781 207.566406 271.644531 207.660156 271.761719 207.660156 C 271.878906 207.660156 271.972656 207.566406 271.972656 207.449219 Z M 271.972656 207.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.917969 205.449219 C 270.917969 205.332031 270.824219 205.238281 270.707031 205.238281 C 270.589844 205.238281 270.496094 205.332031 270.496094 205.449219 C 270.496094 205.566406 270.589844 205.660156 270.707031 205.660156 C 270.824219 205.660156 270.917969 205.566406 270.917969 205.449219 Z M 270.917969 205.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 273.894531 207.917969 C 273.894531 207.800781 273.800781 207.707031 273.683594 207.707031 C 273.566406 207.707031 273.472656 207.800781 273.472656 207.917969 C 273.472656 208.035156 273.566406 208.128906 273.683594 208.128906 C 273.800781 208.128906 273.894531 208.035156 273.894531 207.917969 Z M 273.894531 207.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 274.878906 210.398438 C 274.878906 210.28125 274.785156 210.1875 274.667969 210.1875 C 274.550781 210.1875 274.457031 210.28125 274.457031 210.398438 C 274.457031 210.515625 274.550781 210.609375 274.667969 210.609375 C 274.785156 210.609375 274.878906 210.515625 274.878906 210.398438 Z M 274.878906 210.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.832031 208.5 C 272.832031 208.382812 272.738281 208.289062 272.621094 208.289062 C 272.503906 208.289062 272.410156 208.382812 272.410156 208.5 C 272.410156 208.617188 272.503906 208.710938 272.621094 208.710938 C 272.738281 208.710938 272.832031 208.617188 272.832031 208.5 Z M 272.832031 208.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.761719 205.953125 C 270.761719 205.835938 270.667969 205.742188 270.550781 205.742188 C 270.433594 205.742188 270.339844 205.835938 270.339844 205.953125 C 270.339844 206.070312 270.433594 206.164062 270.550781 206.164062 C 270.667969 206.164062 270.761719 206.070312 270.761719 205.953125 Z M 270.761719 205.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 268.824219 203.691406 C 268.824219 203.574219 268.730469 203.480469 268.613281 203.480469 C 268.496094 203.480469 268.402344 203.574219 268.402344 203.691406 C 268.402344 203.808594 268.496094 203.902344 268.613281 203.902344 C 268.730469 203.902344 268.824219 203.808594 268.824219 203.691406 Z M 268.824219 203.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 266.953125 203.136719 C 266.953125 203.019531 266.859375 202.925781 266.742188 202.925781 C 266.625 202.925781 266.53125 203.019531 266.53125 203.136719 C 266.53125 203.253906 266.625 203.347656 266.742188 203.347656 C 266.859375 203.347656 266.953125 203.253906 266.953125 203.136719 Z M 266.953125 203.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.992188 201.332031 C 265.992188 201.214844 265.898438 201.121094 265.78125 201.121094 C 265.664062 201.121094 265.570312 201.214844 265.570312 201.332031 C 265.570312 201.449219 265.664062 201.542969 265.78125 201.542969 C 265.898438 201.542969 265.992188 201.449219 265.992188 201.332031 Z M 265.992188 201.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.738281 200.425781 C 264.738281 200.308594 264.644531 200.214844 264.527344 200.214844 C 264.410156 200.214844 264.316406 200.308594 264.316406 200.425781 C 264.316406 200.542969 264.410156 200.636719 264.527344 200.636719 C 264.644531 200.636719 264.738281 200.542969 264.738281 200.425781 Z M 264.738281 200.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.890625 202.550781 C 270.890625 202.433594 270.796875 202.339844 270.679688 202.339844 C 270.5625 202.339844 270.46875 202.433594 270.46875 202.550781 C 270.46875 202.667969 270.5625 202.761719 270.679688 202.761719 C 270.796875 202.761719 270.890625 202.667969 270.890625 202.550781 Z M 270.890625 202.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.875 202.085938 C 272.875 201.96875 272.78125 201.875 272.664062 201.875 C 272.546875 201.875 272.453125 201.96875 272.453125 202.085938 C 272.453125 202.203125 272.546875 202.296875 272.664062 202.296875 C 272.78125 202.296875 272.875 202.203125 272.875 202.085938 Z M 272.875 202.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 272.152344 202.242188 C 272.152344 202.125 272.058594 202.03125 271.941406 202.03125 C 271.824219 202.03125 271.730469 202.125 271.730469 202.242188 C 271.730469 202.359375 271.824219 202.453125 271.941406 202.453125 C 272.058594 202.453125 272.152344 202.359375 272.152344 202.242188 Z M 272.152344 202.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 270.144531 203.054688 C 270.144531 202.9375 270.050781 202.84375 269.933594 202.84375 C 269.816406 202.84375 269.722656 202.9375 269.722656 203.054688 C 269.722656 203.171875 269.816406 203.265625 269.933594 203.265625 C 270.050781 203.265625 270.144531 203.171875 270.144531 203.054688 Z M 270.144531 203.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.34375 202.203125 C 269.34375 202.085938 269.25 201.992188 269.132812 201.992188 C 269.015625 201.992188 268.921875 202.085938 268.921875 202.203125 C 268.921875 202.320312 269.015625 202.414062 269.132812 202.414062 C 269.25 202.414062 269.34375 202.320312 269.34375 202.203125 Z M 269.34375 202.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 269.253906 200.144531 C 269.253906 200.027344 269.160156 199.933594 269.042969 199.933594 C 268.925781 199.933594 268.832031 200.027344 268.832031 200.144531 C 268.832031 200.261719 268.925781 200.355469 269.042969 200.355469 C 269.160156 200.355469 269.253906 200.261719 269.253906 200.144531 Z M 269.253906 200.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 267.089844 201.519531 C 267.089844 201.402344 266.996094 201.308594 266.878906 201.308594 C 266.761719 201.308594 266.667969 201.402344 266.667969 201.519531 C 266.667969 201.636719 266.761719 201.730469 266.878906 201.730469 C 266.996094 201.730469 267.089844 201.636719 267.089844 201.519531 Z M 267.089844 201.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 262.269531 201.023438 C 262.269531 200.90625 262.175781 200.8125 262.058594 200.8125 C 261.941406 200.8125 261.847656 200.90625 261.847656 201.023438 C 261.847656 201.140625 261.941406 201.234375 262.058594 201.234375 C 262.175781 201.234375 262.269531 201.140625 262.269531 201.023438 Z M 262.269531 201.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 264.445312 200.328125 C 264.445312 200.210938 264.351562 200.117188 264.234375 200.117188 C 264.117188 200.117188 264.023438 200.210938 264.023438 200.328125 C 264.023438 200.445312 264.117188 200.539062 264.234375 200.539062 C 264.351562 200.539062 264.445312 200.445312 264.445312 200.328125 Z M 264.445312 200.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.265625 198.351562 C 265.265625 198.234375 265.171875 198.140625 265.054688 198.140625 C 264.9375 198.140625 264.84375 198.234375 264.84375 198.351562 C 264.84375 198.46875 264.9375 198.5625 265.054688 198.5625 C 265.171875 198.5625 265.265625 198.46875 265.265625 198.351562 Z M 265.265625 198.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 263.289062 199.402344 C 263.289062 199.285156 263.195312 199.191406 263.078125 199.191406 C 262.960938 199.191406 262.867188 199.285156 262.867188 199.402344 C 262.867188 199.519531 262.960938 199.613281 263.078125 199.613281 C 263.195312 199.613281 263.289062 199.519531 263.289062 199.402344 Z M 263.289062 199.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 265.117188 199.4375 C 265.117188 199.320312 265.023438 199.226562 264.90625 199.226562 C 264.789062 199.226562 264.695312 199.320312 264.695312 199.4375 C 264.695312 199.554688 264.789062 199.648438 264.90625 199.648438 C 265.023438 199.648438 265.117188 199.554688 265.117188 199.4375 Z M 265.117188 199.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.285156 198.105469 C 259.285156 197.988281 259.191406 197.894531 259.074219 197.894531 C 258.957031 197.894531 258.863281 197.988281 258.863281 198.105469 C 258.863281 198.222656 258.957031 198.316406 259.074219 198.316406 C 259.191406 198.316406 259.285156 198.222656 259.285156 198.105469 Z M 259.285156 198.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.78125 202.613281 C 256.78125 202.496094 256.6875 202.402344 256.570312 202.402344 C 256.453125 202.402344 256.359375 202.496094 256.359375 202.613281 C 256.359375 202.730469 256.453125 202.824219 256.570312 202.824219 C 256.6875 202.824219 256.78125 202.730469 256.78125 202.613281 Z M 256.78125 202.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 259.058594 204.292969 C 259.058594 204.175781 258.964844 204.082031 258.847656 204.082031 C 258.730469 204.082031 258.636719 204.175781 258.636719 204.292969 C 258.636719 204.410156 258.730469 204.503906 258.847656 204.503906 C 258.964844 204.503906 259.058594 204.410156 259.058594 204.292969 Z M 259.058594 204.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.777344 202.699219 C 261.777344 202.582031 261.683594 202.488281 261.566406 202.488281 C 261.449219 202.488281 261.355469 202.582031 261.355469 202.699219 C 261.355469 202.816406 261.449219 202.910156 261.566406 202.910156 C 261.683594 202.910156 261.777344 202.816406 261.777344 202.699219 Z M 261.777344 202.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 261.644531 198.769531 C 261.644531 198.652344 261.550781 198.558594 261.433594 198.558594 C 261.316406 198.558594 261.222656 198.652344 261.222656 198.769531 C 261.222656 198.886719 261.316406 198.980469 261.433594 198.980469 C 261.550781 198.980469 261.644531 198.886719 261.644531 198.769531 Z M 261.644531 198.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.816406 198.484375 C 260.816406 198.367188 260.722656 198.273438 260.605469 198.273438 C 260.488281 198.273438 260.394531 198.367188 260.394531 198.484375 C 260.394531 198.601562 260.488281 198.695312 260.605469 198.695312 C 260.722656 198.695312 260.816406 198.601562 260.816406 198.484375 Z M 260.816406 198.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 258.238281 199.484375 C 258.238281 199.367188 258.144531 199.273438 258.027344 199.273438 C 257.910156 199.273438 257.816406 199.367188 257.816406 199.484375 C 257.816406 199.601562 257.910156 199.695312 258.027344 199.695312 C 258.144531 199.695312 258.238281 199.601562 258.238281 199.484375 Z M 258.238281 199.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 257.949219 196.949219 C 257.949219 196.832031 257.855469 196.738281 257.738281 196.738281 C 257.621094 196.738281 257.527344 196.832031 257.527344 196.949219 C 257.527344 197.066406 257.621094 197.160156 257.738281 197.160156 C 257.855469 197.160156 257.949219 197.066406 257.949219 196.949219 Z M 257.949219 196.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 260.253906 193.6875 C 260.253906 193.570312 260.160156 193.476562 260.042969 193.476562 C 259.925781 193.476562 259.832031 193.570312 259.832031 193.6875 C 259.832031 193.804688 259.925781 193.898438 260.042969 193.898438 C 260.160156 193.898438 260.253906 193.804688 260.253906 193.6875 Z M 260.253906 193.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 256.035156 189.339844 C 256.035156 189.222656 255.941406 189.128906 255.824219 189.128906 C 255.707031 189.128906 255.613281 189.222656 255.613281 189.339844 C 255.613281 189.457031 255.707031 189.550781 255.824219 189.550781 C 255.941406 189.550781 256.035156 189.457031 256.035156 189.339844 Z M 256.035156 189.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 255.644531 185.023438 C 255.644531 184.90625 255.550781 184.8125 255.433594 184.8125 C 255.316406 184.8125 255.222656 184.90625 255.222656 185.023438 C 255.222656 185.140625 255.316406 185.234375 255.433594 185.234375 C 255.550781 185.234375 255.644531 185.140625 255.644531 185.023438 Z M 255.644531 185.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.003906 180.226562 C 252.003906 180.109375 251.910156 180.015625 251.792969 180.015625 C 251.675781 180.015625 251.582031 180.109375 251.582031 180.226562 C 251.582031 180.34375 251.675781 180.4375 251.792969 180.4375 C 251.910156 180.4375 252.003906 180.34375 252.003906 180.226562 Z M 252.003906 180.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 251.414062 178.871094 C 251.414062 178.753906 251.320312 178.660156 251.203125 178.660156 C 251.085938 178.660156 250.992188 178.753906 250.992188 178.871094 C 250.992188 178.988281 251.085938 179.082031 251.203125 179.082031 C 251.320312 179.082031 251.414062 178.988281 251.414062 178.871094 Z M 251.414062 178.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 252.671875 180.191406 C 252.671875 180.074219 252.578125 179.980469 252.460938 179.980469 C 252.34375 179.980469 252.25 180.074219 252.25 180.191406 C 252.25 180.308594 252.34375 180.402344 252.460938 180.402344 C 252.578125 180.402344 252.671875 180.308594 252.671875 180.191406 Z M 252.671875 180.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 250.691406 178.207031 C 250.691406 178.089844 250.597656 177.996094 250.480469 177.996094 C 250.363281 177.996094 250.269531 178.089844 250.269531 178.207031 C 250.269531 178.324219 250.363281 178.417969 250.480469 178.417969 C 250.597656 178.417969 250.691406 178.324219 250.691406 178.207031 Z M 250.691406 178.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 249.128906 177.753906 C 249.128906 177.636719 249.035156 177.542969 248.917969 177.542969 C 248.800781 177.542969 248.707031 177.636719 248.707031 177.753906 C 248.707031 177.871094 248.800781 177.964844 248.917969 177.964844 C 249.035156 177.964844 249.128906 177.871094 249.128906 177.753906 Z M 249.128906 177.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.589844 177.792969 C 246.589844 177.675781 246.496094 177.582031 246.378906 177.582031 C 246.261719 177.582031 246.167969 177.675781 246.167969 177.792969 C 246.167969 177.910156 246.261719 178.003906 246.378906 178.003906 C 246.496094 178.003906 246.589844 177.910156 246.589844 177.792969 Z M 246.589844 177.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 242.964844 180.398438 C 242.964844 180.28125 242.871094 180.1875 242.753906 180.1875 C 242.636719 180.1875 242.542969 180.28125 242.542969 180.398438 C 242.542969 180.515625 242.636719 180.609375 242.753906 180.609375 C 242.871094 180.609375 242.964844 180.515625 242.964844 180.398438 Z M 242.964844 180.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.0625 181.933594 C 243.0625 181.816406 242.96875 181.722656 242.851562 181.722656 C 242.734375 181.722656 242.640625 181.816406 242.640625 181.933594 C 242.640625 182.050781 242.734375 182.144531 242.851562 182.144531 C 242.96875 182.144531 243.0625 182.050781 243.0625 181.933594 Z M 243.0625 181.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.605469 182.660156 C 244.605469 182.542969 244.511719 182.449219 244.394531 182.449219 C 244.277344 182.449219 244.183594 182.542969 244.183594 182.660156 C 244.183594 182.777344 244.277344 182.871094 244.394531 182.871094 C 244.511719 182.871094 244.605469 182.777344 244.605469 182.660156 Z M 244.605469 182.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 245.292969 181.980469 C 245.292969 181.863281 245.199219 181.769531 245.082031 181.769531 C 244.964844 181.769531 244.871094 181.863281 244.871094 181.980469 C 244.871094 182.097656 244.964844 182.191406 245.082031 182.191406 C 245.199219 182.191406 245.292969 182.097656 245.292969 181.980469 Z M 245.292969 181.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.03125 177.785156 C 244.03125 177.667969 243.9375 177.574219 243.820312 177.574219 C 243.703125 177.574219 243.609375 177.667969 243.609375 177.785156 C 243.609375 177.902344 243.703125 177.996094 243.820312 177.996094 C 243.9375 177.996094 244.03125 177.902344 244.03125 177.785156 Z M 244.03125 177.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.425781 176.539062 C 244.425781 176.421875 244.332031 176.328125 244.214844 176.328125 C 244.097656 176.328125 244.003906 176.421875 244.003906 176.539062 C 244.003906 176.65625 244.097656 176.75 244.214844 176.75 C 244.332031 176.75 244.425781 176.65625 244.425781 176.539062 Z M 244.425781 176.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.21875 176.546875 C 244.21875 176.429688 244.125 176.335938 244.007812 176.335938 C 243.890625 176.335938 243.796875 176.429688 243.796875 176.546875 C 243.796875 176.664062 243.890625 176.757812 244.007812 176.757812 C 244.125 176.757812 244.21875 176.664062 244.21875 176.546875 Z M 244.21875 176.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 243.75 171.40625 C 243.75 171.289062 243.65625 171.195312 243.539062 171.195312 C 243.421875 171.195312 243.328125 171.289062 243.328125 171.40625 C 243.328125 171.523438 243.421875 171.617188 243.539062 171.617188 C 243.65625 171.617188 243.75 171.523438 243.75 171.40625 Z M 243.75 171.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.761719 170.898438 C 241.761719 170.78125 241.667969 170.6875 241.550781 170.6875 C 241.433594 170.6875 241.339844 170.78125 241.339844 170.898438 C 241.339844 171.015625 241.433594 171.109375 241.550781 171.109375 C 241.667969 171.109375 241.761719 171.015625 241.761719 170.898438 Z M 241.761719 170.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.796875 174.082031 C 241.796875 173.964844 241.703125 173.871094 241.585938 173.871094 C 241.46875 173.871094 241.375 173.964844 241.375 174.082031 C 241.375 174.199219 241.46875 174.292969 241.585938 174.292969 C 241.703125 174.292969 241.796875 174.199219 241.796875 174.082031 Z M 241.796875 174.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.613281 173.667969 C 240.613281 173.550781 240.519531 173.457031 240.402344 173.457031 C 240.285156 173.457031 240.191406 173.550781 240.191406 173.667969 C 240.191406 173.785156 240.285156 173.878906 240.402344 173.878906 C 240.519531 173.878906 240.613281 173.785156 240.613281 173.667969 Z M 240.613281 173.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.859375 174.394531 C 237.859375 174.277344 237.765625 174.183594 237.648438 174.183594 C 237.53125 174.183594 237.4375 174.277344 237.4375 174.394531 C 237.4375 174.511719 237.53125 174.605469 237.648438 174.605469 C 237.765625 174.605469 237.859375 174.511719 237.859375 174.394531 Z M 237.859375 174.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.722656 174.007812 C 241.722656 173.890625 241.628906 173.796875 241.511719 173.796875 C 241.394531 173.796875 241.300781 173.890625 241.300781 174.007812 C 241.300781 174.125 241.394531 174.21875 241.511719 174.21875 C 241.628906 174.21875 241.722656 174.125 241.722656 174.007812 Z M 241.722656 174.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.964844 172.539062 C 239.964844 172.421875 239.871094 172.328125 239.753906 172.328125 C 239.636719 172.328125 239.542969 172.421875 239.542969 172.539062 C 239.542969 172.65625 239.636719 172.75 239.753906 172.75 C 239.871094 172.75 239.964844 172.65625 239.964844 172.539062 Z M 239.964844 172.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.242188 174.714844 C 241.242188 174.597656 241.148438 174.503906 241.03125 174.503906 C 240.914062 174.503906 240.820312 174.597656 240.820312 174.714844 C 240.820312 174.832031 240.914062 174.925781 241.03125 174.925781 C 241.148438 174.925781 241.242188 174.832031 241.242188 174.714844 Z M 241.242188 174.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.839844 173.832031 C 240.839844 173.714844 240.746094 173.621094 240.628906 173.621094 C 240.511719 173.621094 240.417969 173.714844 240.417969 173.832031 C 240.417969 173.949219 240.511719 174.042969 240.628906 174.042969 C 240.746094 174.042969 240.839844 173.949219 240.839844 173.832031 Z M 240.839844 173.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 235.292969 178.5 C 235.292969 178.382812 235.199219 178.289062 235.082031 178.289062 C 234.964844 178.289062 234.871094 178.382812 234.871094 178.5 C 234.871094 178.617188 234.964844 178.710938 235.082031 178.710938 C 235.199219 178.710938 235.292969 178.617188 235.292969 178.5 Z M 235.292969 178.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.984375 175.90625 C 231.984375 175.789062 231.890625 175.695312 231.773438 175.695312 C 231.65625 175.695312 231.5625 175.789062 231.5625 175.90625 C 231.5625 176.023438 231.65625 176.117188 231.773438 176.117188 C 231.890625 176.117188 231.984375 176.023438 231.984375 175.90625 Z M 231.984375 175.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 231.644531 174.929688 C 231.644531 174.8125 231.550781 174.71875 231.433594 174.71875 C 231.316406 174.71875 231.222656 174.8125 231.222656 174.929688 C 231.222656 175.046875 231.316406 175.140625 231.433594 175.140625 C 231.550781 175.140625 231.644531 175.046875 231.644531 174.929688 Z M 231.644531 174.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.828125 173.984375 C 230.828125 173.867188 230.734375 173.773438 230.617188 173.773438 C 230.5 173.773438 230.40625 173.867188 230.40625 173.984375 C 230.40625 174.101562 230.5 174.195312 230.617188 174.195312 C 230.734375 174.195312 230.828125 174.101562 230.828125 173.984375 Z M 230.828125 173.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.507812 176.214844 C 234.507812 176.097656 234.414062 176.003906 234.296875 176.003906 C 234.179688 176.003906 234.085938 176.097656 234.085938 176.214844 C 234.085938 176.332031 234.179688 176.425781 234.296875 176.425781 C 234.414062 176.425781 234.507812 176.332031 234.507812 176.214844 Z M 234.507812 176.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.78125 173.875 C 234.78125 173.757812 234.6875 173.664062 234.570312 173.664062 C 234.453125 173.664062 234.359375 173.757812 234.359375 173.875 C 234.359375 173.992188 234.453125 174.085938 234.570312 174.085938 C 234.6875 174.085938 234.78125 173.992188 234.78125 173.875 Z M 234.78125 173.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.867188 172.355469 C 237.867188 172.238281 237.773438 172.144531 237.65625 172.144531 C 237.539062 172.144531 237.445312 172.238281 237.445312 172.355469 C 237.445312 172.472656 237.539062 172.566406 237.65625 172.566406 C 237.773438 172.566406 237.867188 172.472656 237.867188 172.355469 Z M 237.867188 172.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.523438 170.632812 C 239.523438 170.515625 239.429688 170.421875 239.3125 170.421875 C 239.195312 170.421875 239.101562 170.515625 239.101562 170.632812 C 239.101562 170.75 239.195312 170.84375 239.3125 170.84375 C 239.429688 170.84375 239.523438 170.75 239.523438 170.632812 Z M 239.523438 170.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.261719 169.296875 C 237.261719 169.179688 237.167969 169.085938 237.050781 169.085938 C 236.933594 169.085938 236.839844 169.179688 236.839844 169.296875 C 236.839844 169.414062 236.933594 169.507812 237.050781 169.507812 C 237.167969 169.507812 237.261719 169.414062 237.261719 169.296875 Z M 237.261719 169.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 234.828125 167.683594 C 234.828125 167.566406 234.734375 167.472656 234.617188 167.472656 C 234.5 167.472656 234.40625 167.566406 234.40625 167.683594 C 234.40625 167.800781 234.5 167.894531 234.617188 167.894531 C 234.734375 167.894531 234.828125 167.800781 234.828125 167.683594 Z M 234.828125 167.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.558594 166.390625 C 236.558594 166.273438 236.464844 166.179688 236.347656 166.179688 C 236.230469 166.179688 236.136719 166.273438 236.136719 166.390625 C 236.136719 166.507812 236.230469 166.601562 236.347656 166.601562 C 236.464844 166.601562 236.558594 166.507812 236.558594 166.390625 Z M 236.558594 166.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.285156 163.535156 C 239.285156 163.417969 239.191406 163.324219 239.074219 163.324219 C 238.957031 163.324219 238.863281 163.417969 238.863281 163.535156 C 238.863281 163.652344 238.957031 163.746094 239.074219 163.746094 C 239.191406 163.746094 239.285156 163.652344 239.285156 163.535156 Z M 239.285156 163.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.324219 163.398438 C 238.324219 163.28125 238.230469 163.1875 238.113281 163.1875 C 237.996094 163.1875 237.902344 163.28125 237.902344 163.398438 C 237.902344 163.515625 237.996094 163.609375 238.113281 163.609375 C 238.230469 163.609375 238.324219 163.515625 238.324219 163.398438 Z M 238.324219 163.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.78125 161.070312 C 240.78125 160.953125 240.6875 160.859375 240.570312 160.859375 C 240.453125 160.859375 240.359375 160.953125 240.359375 161.070312 C 240.359375 161.1875 240.453125 161.28125 240.570312 161.28125 C 240.6875 161.28125 240.78125 161.1875 240.78125 161.070312 Z M 240.78125 161.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.980469 164.800781 C 241.980469 164.683594 241.886719 164.589844 241.769531 164.589844 C 241.652344 164.589844 241.558594 164.683594 241.558594 164.800781 C 241.558594 164.917969 241.652344 165.011719 241.769531 165.011719 C 241.886719 165.011719 241.980469 164.917969 241.980469 164.800781 Z M 241.980469 164.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.996094 163.539062 C 240.996094 163.421875 240.902344 163.328125 240.785156 163.328125 C 240.667969 163.328125 240.574219 163.421875 240.574219 163.539062 C 240.574219 163.65625 240.667969 163.75 240.785156 163.75 C 240.902344 163.75 240.996094 163.65625 240.996094 163.539062 Z M 240.996094 163.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 244.402344 167.652344 C 244.402344 167.535156 244.308594 167.441406 244.191406 167.441406 C 244.074219 167.441406 243.980469 167.535156 243.980469 167.652344 C 243.980469 167.769531 244.074219 167.863281 244.191406 167.863281 C 244.308594 167.863281 244.402344 167.769531 244.402344 167.652344 Z M 244.402344 167.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.539062 167.054688 C 246.539062 166.9375 246.445312 166.84375 246.328125 166.84375 C 246.210938 166.84375 246.117188 166.9375 246.117188 167.054688 C 246.117188 167.171875 246.210938 167.265625 246.328125 167.265625 C 246.445312 167.265625 246.539062 167.171875 246.539062 167.054688 Z M 246.539062 167.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 246.359375 169.515625 C 246.359375 169.398438 246.265625 169.304688 246.148438 169.304688 C 246.03125 169.304688 245.9375 169.398438 245.9375 169.515625 C 245.9375 169.632812 246.03125 169.726562 246.148438 169.726562 C 246.265625 169.726562 246.359375 169.632812 246.359375 169.515625 Z M 246.359375 169.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 241.535156 168.234375 C 241.535156 168.117188 241.441406 168.023438 241.324219 168.023438 C 241.207031 168.023438 241.113281 168.117188 241.113281 168.234375 C 241.113281 168.351562 241.207031 168.445312 241.324219 168.445312 C 241.441406 168.445312 241.535156 168.351562 241.535156 168.234375 Z M 241.535156 168.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 240.320312 167.742188 C 240.320312 167.625 240.226562 167.53125 240.109375 167.53125 C 239.992188 167.53125 239.898438 167.625 239.898438 167.742188 C 239.898438 167.859375 239.992188 167.953125 240.109375 167.953125 C 240.226562 167.953125 240.320312 167.859375 240.320312 167.742188 Z M 240.320312 167.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.761719 169.089844 C 238.761719 168.972656 238.667969 168.878906 238.550781 168.878906 C 238.433594 168.878906 238.339844 168.972656 238.339844 169.089844 C 238.339844 169.207031 238.433594 169.300781 238.550781 169.300781 C 238.667969 169.300781 238.761719 169.207031 238.761719 169.089844 Z M 238.761719 169.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 238.964844 168.589844 C 238.964844 168.472656 238.871094 168.378906 238.753906 168.378906 C 238.636719 168.378906 238.542969 168.472656 238.542969 168.589844 C 238.542969 168.707031 238.636719 168.800781 238.753906 168.800781 C 238.871094 168.800781 238.964844 168.707031 238.964844 168.589844 Z M 238.964844 168.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 239.65625 167.347656 C 239.65625 167.230469 239.5625 167.136719 239.445312 167.136719 C 239.328125 167.136719 239.234375 167.230469 239.234375 167.347656 C 239.234375 167.464844 239.328125 167.558594 239.445312 167.558594 C 239.5625 167.558594 239.65625 167.464844 239.65625 167.347656 Z M 239.65625 167.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 236.9375 171.15625 C 236.9375 171.039062 236.84375 170.945312 236.726562 170.945312 C 236.609375 170.945312 236.515625 171.039062 236.515625 171.15625 C 236.515625 171.273438 236.609375 171.367188 236.726562 171.367188 C 236.84375 171.367188 236.9375 171.273438 236.9375 171.15625 Z M 236.9375 171.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 237.089844 168.449219 C 237.089844 168.332031 236.996094 168.238281 236.878906 168.238281 C 236.761719 168.238281 236.667969 168.332031 236.667969 168.449219 C 236.667969 168.566406 236.761719 168.660156 236.878906 168.660156 C 236.996094 168.660156 237.089844 168.566406 237.089844 168.449219 Z M 237.089844 168.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 230.492188 166.777344 C 230.492188 166.660156 230.398438 166.566406 230.28125 166.566406 C 230.164062 166.566406 230.070312 166.660156 230.070312 166.777344 C 230.070312 166.894531 230.164062 166.988281 230.28125 166.988281 C 230.398438 166.988281 230.492188 166.894531 230.492188 166.777344 Z M 230.492188 166.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.460938 165.894531 C 225.460938 165.777344 225.367188 165.683594 225.25 165.683594 C 225.132812 165.683594 225.039062 165.777344 225.039062 165.894531 C 225.039062 166.011719 225.132812 166.105469 225.25 166.105469 C 225.367188 166.105469 225.460938 166.011719 225.460938 165.894531 Z M 225.460938 165.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.242188 166.535156 C 225.242188 166.417969 225.148438 166.324219 225.03125 166.324219 C 224.914062 166.324219 224.820312 166.417969 224.820312 166.535156 C 224.820312 166.652344 224.914062 166.746094 225.03125 166.746094 C 225.148438 166.746094 225.242188 166.652344 225.242188 166.535156 Z M 225.242188 166.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.535156 164.945312 C 224.535156 164.828125 224.441406 164.734375 224.324219 164.734375 C 224.207031 164.734375 224.113281 164.828125 224.113281 164.945312 C 224.113281 165.0625 224.207031 165.15625 224.324219 165.15625 C 224.441406 165.15625 224.535156 165.0625 224.535156 164.945312 Z M 224.535156 164.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 222.238281 165.304688 C 222.238281 165.1875 222.144531 165.09375 222.027344 165.09375 C 221.910156 165.09375 221.816406 165.1875 221.816406 165.304688 C 221.816406 165.421875 221.910156 165.515625 222.027344 165.515625 C 222.144531 165.515625 222.238281 165.421875 222.238281 165.304688 Z M 222.238281 165.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 222.039062 161.148438 C 222.039062 161.03125 221.945312 160.9375 221.828125 160.9375 C 221.710938 160.9375 221.617188 161.03125 221.617188 161.148438 C 221.617188 161.265625 221.710938 161.359375 221.828125 161.359375 C 221.945312 161.359375 222.039062 161.265625 222.039062 161.148438 Z M 222.039062 161.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.503906 160.136719 C 224.503906 160.019531 224.410156 159.925781 224.292969 159.925781 C 224.175781 159.925781 224.082031 160.019531 224.082031 160.136719 C 224.082031 160.253906 224.175781 160.347656 224.292969 160.347656 C 224.410156 160.347656 224.503906 160.253906 224.503906 160.136719 Z M 224.503906 160.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.179688 159.945312 C 224.179688 159.828125 224.085938 159.734375 223.96875 159.734375 C 223.851562 159.734375 223.757812 159.828125 223.757812 159.945312 C 223.757812 160.0625 223.851562 160.15625 223.96875 160.15625 C 224.085938 160.15625 224.179688 160.0625 224.179688 159.945312 Z M 224.179688 159.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.789062 160.332031 C 226.789062 160.214844 226.695312 160.121094 226.578125 160.121094 C 226.460938 160.121094 226.367188 160.214844 226.367188 160.332031 C 226.367188 160.449219 226.460938 160.542969 226.578125 160.542969 C 226.695312 160.542969 226.789062 160.449219 226.789062 160.332031 Z M 226.789062 160.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.347656 161.574219 C 226.347656 161.457031 226.253906 161.363281 226.136719 161.363281 C 226.019531 161.363281 225.925781 161.457031 225.925781 161.574219 C 225.925781 161.691406 226.019531 161.785156 226.136719 161.785156 C 226.253906 161.785156 226.347656 161.691406 226.347656 161.574219 Z M 226.347656 161.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.570312 160.640625 C 227.570312 160.523438 227.476562 160.429688 227.359375 160.429688 C 227.242188 160.429688 227.148438 160.523438 227.148438 160.640625 C 227.148438 160.757812 227.242188 160.851562 227.359375 160.851562 C 227.476562 160.851562 227.570312 160.757812 227.570312 160.640625 Z M 227.570312 160.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 223.695312 161.738281 C 223.695312 161.621094 223.601562 161.527344 223.484375 161.527344 C 223.367188 161.527344 223.273438 161.621094 223.273438 161.738281 C 223.273438 161.855469 223.367188 161.949219 223.484375 161.949219 C 223.601562 161.949219 223.695312 161.855469 223.695312 161.738281 Z M 223.695312 161.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.148438 162.042969 C 224.148438 161.925781 224.054688 161.832031 223.9375 161.832031 C 223.820312 161.832031 223.726562 161.925781 223.726562 162.042969 C 223.726562 162.160156 223.820312 162.253906 223.9375 162.253906 C 224.054688 162.253906 224.148438 162.160156 224.148438 162.042969 Z M 224.148438 162.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.960938 160.460938 C 224.960938 160.34375 224.867188 160.25 224.75 160.25 C 224.632812 160.25 224.539062 160.34375 224.539062 160.460938 C 224.539062 160.578125 224.632812 160.671875 224.75 160.671875 C 224.867188 160.671875 224.960938 160.578125 224.960938 160.460938 Z M 224.960938 160.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.292969 161.90625 C 226.292969 161.789062 226.199219 161.695312 226.082031 161.695312 C 225.964844 161.695312 225.871094 161.789062 225.871094 161.90625 C 225.871094 162.023438 225.964844 162.117188 226.082031 162.117188 C 226.199219 162.117188 226.292969 162.023438 226.292969 161.90625 Z M 226.292969 161.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.144531 162.316406 C 224.144531 162.199219 224.050781 162.105469 223.933594 162.105469 C 223.816406 162.105469 223.722656 162.199219 223.722656 162.316406 C 223.722656 162.433594 223.816406 162.527344 223.933594 162.527344 C 224.050781 162.527344 224.144531 162.433594 224.144531 162.316406 Z M 224.144531 162.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 225.660156 159.859375 C 225.660156 159.742188 225.566406 159.648438 225.449219 159.648438 C 225.332031 159.648438 225.238281 159.742188 225.238281 159.859375 C 225.238281 159.976562 225.332031 160.070312 225.449219 160.070312 C 225.566406 160.070312 225.660156 159.976562 225.660156 159.859375 Z M 225.660156 159.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 222.789062 157.566406 C 222.789062 157.449219 222.695312 157.355469 222.578125 157.355469 C 222.460938 157.355469 222.367188 157.449219 222.367188 157.566406 C 222.367188 157.683594 222.460938 157.777344 222.578125 157.777344 C 222.695312 157.777344 222.789062 157.683594 222.789062 157.566406 Z M 222.789062 157.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.746094 157.582031 C 217.746094 157.464844 217.652344 157.371094 217.535156 157.371094 C 217.417969 157.371094 217.324219 157.464844 217.324219 157.582031 C 217.324219 157.699219 217.417969 157.792969 217.535156 157.792969 C 217.652344 157.792969 217.746094 157.699219 217.746094 157.582031 Z M 217.746094 157.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.371094 154.816406 C 218.371094 154.699219 218.277344 154.605469 218.160156 154.605469 C 218.042969 154.605469 217.949219 154.699219 217.949219 154.816406 C 217.949219 154.933594 218.042969 155.027344 218.160156 155.027344 C 218.277344 155.027344 218.371094 154.933594 218.371094 154.816406 Z M 218.371094 154.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.164062 154.8125 C 214.164062 154.695312 214.070312 154.601562 213.953125 154.601562 C 213.835938 154.601562 213.742188 154.695312 213.742188 154.8125 C 213.742188 154.929688 213.835938 155.023438 213.953125 155.023438 C 214.070312 155.023438 214.164062 154.929688 214.164062 154.8125 Z M 214.164062 154.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.859375 152.484375 C 212.859375 152.367188 212.765625 152.273438 212.648438 152.273438 C 212.53125 152.273438 212.4375 152.367188 212.4375 152.484375 C 212.4375 152.601562 212.53125 152.695312 212.648438 152.695312 C 212.765625 152.695312 212.859375 152.601562 212.859375 152.484375 Z M 212.859375 152.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.085938 149.027344 C 211.085938 148.910156 210.992188 148.816406 210.875 148.816406 C 210.757812 148.816406 210.664062 148.910156 210.664062 149.027344 C 210.664062 149.144531 210.757812 149.238281 210.875 149.238281 C 210.992188 149.238281 211.085938 149.144531 211.085938 149.027344 Z M 211.085938 149.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.226562 150.625 C 210.226562 150.507812 210.132812 150.414062 210.015625 150.414062 C 209.898438 150.414062 209.804688 150.507812 209.804688 150.625 C 209.804688 150.742188 209.898438 150.835938 210.015625 150.835938 C 210.132812 150.835938 210.226562 150.742188 210.226562 150.625 Z M 210.226562 150.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.65625 152.699219 C 209.65625 152.582031 209.5625 152.488281 209.445312 152.488281 C 209.328125 152.488281 209.234375 152.582031 209.234375 152.699219 C 209.234375 152.816406 209.328125 152.910156 209.445312 152.910156 C 209.5625 152.910156 209.65625 152.816406 209.65625 152.699219 Z M 209.65625 152.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.972656 151.457031 C 214.972656 151.339844 214.878906 151.246094 214.761719 151.246094 C 214.644531 151.246094 214.550781 151.339844 214.550781 151.457031 C 214.550781 151.574219 214.644531 151.667969 214.761719 151.667969 C 214.878906 151.667969 214.972656 151.574219 214.972656 151.457031 Z M 214.972656 151.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.925781 150.210938 C 213.925781 150.09375 213.832031 150 213.714844 150 C 213.597656 150 213.503906 150.09375 213.503906 150.210938 C 213.503906 150.328125 213.597656 150.421875 213.714844 150.421875 C 213.832031 150.421875 213.925781 150.328125 213.925781 150.210938 Z M 213.925781 150.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.785156 150.753906 C 213.785156 150.636719 213.691406 150.542969 213.574219 150.542969 C 213.457031 150.542969 213.363281 150.636719 213.363281 150.753906 C 213.363281 150.871094 213.457031 150.964844 213.574219 150.964844 C 213.691406 150.964844 213.785156 150.871094 213.785156 150.753906 Z M 213.785156 150.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.464844 151.261719 C 215.464844 151.144531 215.371094 151.050781 215.253906 151.050781 C 215.136719 151.050781 215.042969 151.144531 215.042969 151.261719 C 215.042969 151.378906 215.136719 151.472656 215.253906 151.472656 C 215.371094 151.472656 215.464844 151.378906 215.464844 151.261719 Z M 215.464844 151.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.585938 150.4375 C 221.585938 150.320312 221.492188 150.226562 221.375 150.226562 C 221.257812 150.226562 221.164062 150.320312 221.164062 150.4375 C 221.164062 150.554688 221.257812 150.648438 221.375 150.648438 C 221.492188 150.648438 221.585938 150.554688 221.585938 150.4375 Z M 221.585938 150.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 220.714844 146.910156 C 220.714844 146.792969 220.621094 146.699219 220.503906 146.699219 C 220.386719 146.699219 220.292969 146.792969 220.292969 146.910156 C 220.292969 147.027344 220.386719 147.121094 220.503906 147.121094 C 220.621094 147.121094 220.714844 147.027344 220.714844 146.910156 Z M 220.714844 146.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 222.683594 149.683594 C 222.683594 149.566406 222.589844 149.472656 222.472656 149.472656 C 222.355469 149.472656 222.261719 149.566406 222.261719 149.683594 C 222.261719 149.800781 222.355469 149.894531 222.472656 149.894531 C 222.589844 149.894531 222.683594 149.800781 222.683594 149.683594 Z M 222.683594 149.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 226.746094 145.679688 C 226.746094 145.5625 226.652344 145.46875 226.535156 145.46875 C 226.417969 145.46875 226.324219 145.5625 226.324219 145.679688 C 226.324219 145.796875 226.417969 145.890625 226.535156 145.890625 C 226.652344 145.890625 226.746094 145.796875 226.746094 145.679688 Z M 226.746094 145.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 227.140625 143.019531 C 227.140625 142.902344 227.046875 142.808594 226.929688 142.808594 C 226.8125 142.808594 226.71875 142.902344 226.71875 143.019531 C 226.71875 143.136719 226.8125 143.230469 226.929688 143.230469 C 227.046875 143.230469 227.140625 143.136719 227.140625 143.019531 Z M 227.140625 143.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 224.484375 142.988281 C 224.484375 142.871094 224.390625 142.777344 224.273438 142.777344 C 224.15625 142.777344 224.0625 142.871094 224.0625 142.988281 C 224.0625 143.105469 224.15625 143.199219 224.273438 143.199219 C 224.390625 143.199219 224.484375 143.105469 224.484375 142.988281 Z M 224.484375 142.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 221.675781 142.519531 C 221.675781 142.402344 221.582031 142.308594 221.464844 142.308594 C 221.347656 142.308594 221.253906 142.402344 221.253906 142.519531 C 221.253906 142.636719 221.347656 142.730469 221.464844 142.730469 C 221.582031 142.730469 221.675781 142.636719 221.675781 142.519531 Z M 221.675781 142.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.890625 141.203125 C 215.890625 141.085938 215.796875 140.992188 215.679688 140.992188 C 215.5625 140.992188 215.46875 141.085938 215.46875 141.203125 C 215.46875 141.320312 215.5625 141.414062 215.679688 141.414062 C 215.796875 141.414062 215.890625 141.320312 215.890625 141.203125 Z M 215.890625 141.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.238281 141.484375 C 217.238281 141.367188 217.144531 141.273438 217.027344 141.273438 C 216.910156 141.273438 216.816406 141.367188 216.816406 141.484375 C 216.816406 141.601562 216.910156 141.695312 217.027344 141.695312 C 217.144531 141.695312 217.238281 141.601562 217.238281 141.484375 Z M 217.238281 141.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.214844 139.292969 C 216.214844 139.175781 216.121094 139.082031 216.003906 139.082031 C 215.886719 139.082031 215.792969 139.175781 215.792969 139.292969 C 215.792969 139.410156 215.886719 139.503906 216.003906 139.503906 C 216.121094 139.503906 216.214844 139.410156 216.214844 139.292969 Z M 216.214844 139.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.914062 139.667969 C 216.914062 139.550781 216.820312 139.457031 216.703125 139.457031 C 216.585938 139.457031 216.492188 139.550781 216.492188 139.667969 C 216.492188 139.785156 216.585938 139.878906 216.703125 139.878906 C 216.820312 139.878906 216.914062 139.785156 216.914062 139.667969 Z M 216.914062 139.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.78125 139.578125 C 212.78125 139.460938 212.6875 139.367188 212.570312 139.367188 C 212.453125 139.367188 212.359375 139.460938 212.359375 139.578125 C 212.359375 139.695312 212.453125 139.789062 212.570312 139.789062 C 212.6875 139.789062 212.78125 139.695312 212.78125 139.578125 Z M 212.78125 139.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.105469 137.109375 C 215.105469 136.992188 215.011719 136.898438 214.894531 136.898438 C 214.777344 136.898438 214.683594 136.992188 214.683594 137.109375 C 214.683594 137.226562 214.777344 137.320312 214.894531 137.320312 C 215.011719 137.320312 215.105469 137.226562 215.105469 137.109375 Z M 215.105469 137.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.707031 136.75 C 213.707031 136.632812 213.613281 136.539062 213.496094 136.539062 C 213.378906 136.539062 213.285156 136.632812 213.285156 136.75 C 213.285156 136.867188 213.378906 136.960938 213.496094 136.960938 C 213.613281 136.960938 213.707031 136.867188 213.707031 136.75 Z M 213.707031 136.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.183594 137.105469 C 213.183594 136.988281 213.089844 136.894531 212.972656 136.894531 C 212.855469 136.894531 212.761719 136.988281 212.761719 137.105469 C 212.761719 137.222656 212.855469 137.316406 212.972656 137.316406 C 213.089844 137.316406 213.183594 137.222656 213.183594 137.105469 Z M 213.183594 137.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.921875 137.347656 C 212.921875 137.230469 212.828125 137.136719 212.710938 137.136719 C 212.59375 137.136719 212.5 137.230469 212.5 137.347656 C 212.5 137.464844 212.59375 137.558594 212.710938 137.558594 C 212.828125 137.558594 212.921875 137.464844 212.921875 137.347656 Z M 212.921875 137.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.613281 140.121094 C 209.613281 140.003906 209.519531 139.910156 209.402344 139.910156 C 209.285156 139.910156 209.191406 140.003906 209.191406 140.121094 C 209.191406 140.238281 209.285156 140.332031 209.402344 140.332031 C 209.519531 140.332031 209.613281 140.238281 209.613281 140.121094 Z M 209.613281 140.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.925781 141.394531 C 208.925781 141.277344 208.832031 141.183594 208.714844 141.183594 C 208.597656 141.183594 208.503906 141.277344 208.503906 141.394531 C 208.503906 141.511719 208.597656 141.605469 208.714844 141.605469 C 208.832031 141.605469 208.925781 141.511719 208.925781 141.394531 Z M 208.925781 141.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.164062 142.125 C 205.164062 142.007812 205.070312 141.914062 204.953125 141.914062 C 204.835938 141.914062 204.742188 142.007812 204.742188 142.125 C 204.742188 142.242188 204.835938 142.335938 204.953125 142.335938 C 205.070312 142.335938 205.164062 142.242188 205.164062 142.125 Z M 205.164062 142.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.515625 141.175781 C 206.515625 141.058594 206.421875 140.964844 206.304688 140.964844 C 206.1875 140.964844 206.09375 141.058594 206.09375 141.175781 C 206.09375 141.292969 206.1875 141.386719 206.304688 141.386719 C 206.421875 141.386719 206.515625 141.292969 206.515625 141.175781 Z M 206.515625 141.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.480469 143.472656 C 206.480469 143.355469 206.386719 143.261719 206.269531 143.261719 C 206.152344 143.261719 206.058594 143.355469 206.058594 143.472656 C 206.058594 143.589844 206.152344 143.683594 206.269531 143.683594 C 206.386719 143.683594 206.480469 143.589844 206.480469 143.472656 Z M 206.480469 143.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.25 142.113281 C 207.25 141.996094 207.15625 141.902344 207.039062 141.902344 C 206.921875 141.902344 206.828125 141.996094 206.828125 142.113281 C 206.828125 142.230469 206.921875 142.324219 207.039062 142.324219 C 207.15625 142.324219 207.25 142.230469 207.25 142.113281 Z M 207.25 142.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.464844 143.570312 C 208.464844 143.453125 208.371094 143.359375 208.253906 143.359375 C 208.136719 143.359375 208.042969 143.453125 208.042969 143.570312 C 208.042969 143.6875 208.136719 143.78125 208.253906 143.78125 C 208.371094 143.78125 208.464844 143.6875 208.464844 143.570312 Z M 208.464844 143.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.449219 143.179688 C 203.449219 143.0625 203.355469 142.96875 203.238281 142.96875 C 203.121094 142.96875 203.027344 143.0625 203.027344 143.179688 C 203.027344 143.296875 203.121094 143.390625 203.238281 143.390625 C 203.355469 143.390625 203.449219 143.296875 203.449219 143.179688 Z M 203.449219 143.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.910156 144.066406 C 204.910156 143.949219 204.816406 143.855469 204.699219 143.855469 C 204.582031 143.855469 204.488281 143.949219 204.488281 144.066406 C 204.488281 144.183594 204.582031 144.277344 204.699219 144.277344 C 204.816406 144.277344 204.910156 144.183594 204.910156 144.066406 Z M 204.910156 144.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.332031 142.964844 C 205.332031 142.847656 205.238281 142.753906 205.121094 142.753906 C 205.003906 142.753906 204.910156 142.847656 204.910156 142.964844 C 204.910156 143.082031 205.003906 143.175781 205.121094 143.175781 C 205.238281 143.175781 205.332031 143.082031 205.332031 142.964844 Z M 205.332031 142.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.023438 140.828125 C 205.023438 140.710938 204.929688 140.617188 204.8125 140.617188 C 204.695312 140.617188 204.601562 140.710938 204.601562 140.828125 C 204.601562 140.945312 204.695312 141.039062 204.8125 141.039062 C 204.929688 141.039062 205.023438 140.945312 205.023438 140.828125 Z M 205.023438 140.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.871094 143.878906 C 202.871094 143.761719 202.777344 143.667969 202.660156 143.667969 C 202.542969 143.667969 202.449219 143.761719 202.449219 143.878906 C 202.449219 143.996094 202.542969 144.089844 202.660156 144.089844 C 202.777344 144.089844 202.871094 143.996094 202.871094 143.878906 Z M 202.871094 143.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.855469 145.382812 C 204.855469 145.265625 204.761719 145.171875 204.644531 145.171875 C 204.527344 145.171875 204.433594 145.265625 204.433594 145.382812 C 204.433594 145.5 204.527344 145.59375 204.644531 145.59375 C 204.761719 145.59375 204.855469 145.5 204.855469 145.382812 Z M 204.855469 145.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.675781 142.414062 C 203.675781 142.296875 203.582031 142.203125 203.464844 142.203125 C 203.347656 142.203125 203.253906 142.296875 203.253906 142.414062 C 203.253906 142.53125 203.347656 142.625 203.464844 142.625 C 203.582031 142.625 203.675781 142.53125 203.675781 142.414062 Z M 203.675781 142.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.207031 143.957031 C 206.207031 143.839844 206.113281 143.746094 205.996094 143.746094 C 205.878906 143.746094 205.785156 143.839844 205.785156 143.957031 C 205.785156 144.074219 205.878906 144.167969 205.996094 144.167969 C 206.113281 144.167969 206.207031 144.074219 206.207031 143.957031 Z M 206.207031 143.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.855469 143.648438 C 208.855469 143.53125 208.761719 143.4375 208.644531 143.4375 C 208.527344 143.4375 208.433594 143.53125 208.433594 143.648438 C 208.433594 143.765625 208.527344 143.859375 208.644531 143.859375 C 208.761719 143.859375 208.855469 143.765625 208.855469 143.648438 Z M 208.855469 143.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.171875 143.375 C 209.171875 143.257812 209.078125 143.164062 208.960938 143.164062 C 208.84375 143.164062 208.75 143.257812 208.75 143.375 C 208.75 143.492188 208.84375 143.585938 208.960938 143.585938 C 209.078125 143.585938 209.171875 143.492188 209.171875 143.375 Z M 209.171875 143.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.855469 144.019531 C 208.855469 143.902344 208.761719 143.808594 208.644531 143.808594 C 208.527344 143.808594 208.433594 143.902344 208.433594 144.019531 C 208.433594 144.136719 208.527344 144.230469 208.644531 144.230469 C 208.761719 144.230469 208.855469 144.136719 208.855469 144.019531 Z M 208.855469 144.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.9375 141.210938 C 209.9375 141.09375 209.84375 141 209.726562 141 C 209.609375 141 209.515625 141.09375 209.515625 141.210938 C 209.515625 141.328125 209.609375 141.421875 209.726562 141.421875 C 209.84375 141.421875 209.9375 141.328125 209.9375 141.210938 Z M 209.9375 141.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.605469 138.863281 C 207.605469 138.746094 207.511719 138.652344 207.394531 138.652344 C 207.277344 138.652344 207.183594 138.746094 207.183594 138.863281 C 207.183594 138.980469 207.277344 139.074219 207.394531 139.074219 C 207.511719 139.074219 207.605469 138.980469 207.605469 138.863281 Z M 207.605469 138.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.496094 140.746094 C 210.496094 140.628906 210.402344 140.535156 210.285156 140.535156 C 210.167969 140.535156 210.074219 140.628906 210.074219 140.746094 C 210.074219 140.863281 210.167969 140.957031 210.285156 140.957031 C 210.402344 140.957031 210.496094 140.863281 210.496094 140.746094 Z M 210.496094 140.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.304688 136.207031 C 213.304688 136.089844 213.210938 135.996094 213.09375 135.996094 C 212.976562 135.996094 212.882812 136.089844 212.882812 136.207031 C 212.882812 136.324219 212.976562 136.417969 213.09375 136.417969 C 213.210938 136.417969 213.304688 136.324219 213.304688 136.207031 Z M 213.304688 136.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.734375 134.992188 C 213.734375 134.875 213.640625 134.78125 213.523438 134.78125 C 213.40625 134.78125 213.3125 134.875 213.3125 134.992188 C 213.3125 135.109375 213.40625 135.203125 213.523438 135.203125 C 213.640625 135.203125 213.734375 135.109375 213.734375 134.992188 Z M 213.734375 134.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.808594 135.003906 C 212.808594 134.886719 212.714844 134.792969 212.597656 134.792969 C 212.480469 134.792969 212.386719 134.886719 212.386719 135.003906 C 212.386719 135.121094 212.480469 135.214844 212.597656 135.214844 C 212.714844 135.214844 212.808594 135.121094 212.808594 135.003906 Z M 212.808594 135.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.269531 136.496094 C 212.269531 136.378906 212.175781 136.285156 212.058594 136.285156 C 211.941406 136.285156 211.847656 136.378906 211.847656 136.496094 C 211.847656 136.613281 211.941406 136.707031 212.058594 136.707031 C 212.175781 136.707031 212.269531 136.613281 212.269531 136.496094 Z M 212.269531 136.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.652344 140.382812 C 209.652344 140.265625 209.558594 140.171875 209.441406 140.171875 C 209.324219 140.171875 209.230469 140.265625 209.230469 140.382812 C 209.230469 140.5 209.324219 140.59375 209.441406 140.59375 C 209.558594 140.59375 209.652344 140.5 209.652344 140.382812 Z M 209.652344 140.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.136719 141.621094 C 208.136719 141.503906 208.042969 141.410156 207.925781 141.410156 C 207.808594 141.410156 207.714844 141.503906 207.714844 141.621094 C 207.714844 141.738281 207.808594 141.832031 207.925781 141.832031 C 208.042969 141.832031 208.136719 141.738281 208.136719 141.621094 Z M 208.136719 141.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.308594 140.089844 C 207.308594 139.972656 207.214844 139.878906 207.097656 139.878906 C 206.980469 139.878906 206.886719 139.972656 206.886719 140.089844 C 206.886719 140.207031 206.980469 140.300781 207.097656 140.300781 C 207.214844 140.300781 207.308594 140.207031 207.308594 140.089844 Z M 207.308594 140.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.285156 141.421875 C 212.285156 141.304688 212.191406 141.210938 212.074219 141.210938 C 211.957031 141.210938 211.863281 141.304688 211.863281 141.421875 C 211.863281 141.539062 211.957031 141.632812 212.074219 141.632812 C 212.191406 141.632812 212.285156 141.539062 212.285156 141.421875 Z M 212.285156 141.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.609375 142.570312 C 213.609375 142.453125 213.515625 142.359375 213.398438 142.359375 C 213.28125 142.359375 213.1875 142.453125 213.1875 142.570312 C 213.1875 142.6875 213.28125 142.78125 213.398438 142.78125 C 213.515625 142.78125 213.609375 142.6875 213.609375 142.570312 Z M 213.609375 142.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.554688 138.574219 C 212.554688 138.457031 212.460938 138.363281 212.34375 138.363281 C 212.226562 138.363281 212.132812 138.457031 212.132812 138.574219 C 212.132812 138.691406 212.226562 138.785156 212.34375 138.785156 C 212.460938 138.785156 212.554688 138.691406 212.554688 138.574219 Z M 212.554688 138.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.867188 135.808594 C 212.867188 135.691406 212.773438 135.597656 212.65625 135.597656 C 212.539062 135.597656 212.445312 135.691406 212.445312 135.808594 C 212.445312 135.925781 212.539062 136.019531 212.65625 136.019531 C 212.773438 136.019531 212.867188 135.925781 212.867188 135.808594 Z M 212.867188 135.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.890625 131.765625 C 213.890625 131.648438 213.796875 131.554688 213.679688 131.554688 C 213.5625 131.554688 213.46875 131.648438 213.46875 131.765625 C 213.46875 131.882812 213.5625 131.976562 213.679688 131.976562 C 213.796875 131.976562 213.890625 131.882812 213.890625 131.765625 Z M 213.890625 131.765625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.144531 131.613281 C 214.144531 131.496094 214.050781 131.402344 213.933594 131.402344 C 213.816406 131.402344 213.722656 131.496094 213.722656 131.613281 C 213.722656 131.730469 213.816406 131.824219 213.933594 131.824219 C 214.050781 131.824219 214.144531 131.730469 214.144531 131.613281 Z M 214.144531 131.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.636719 129.117188 C 216.636719 129 216.542969 128.90625 216.425781 128.90625 C 216.308594 128.90625 216.214844 129 216.214844 129.117188 C 216.214844 129.234375 216.308594 129.328125 216.425781 129.328125 C 216.542969 129.328125 216.636719 129.234375 216.636719 129.117188 Z M 216.636719 129.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.980469 128.925781 C 219.980469 128.808594 219.886719 128.714844 219.769531 128.714844 C 219.652344 128.714844 219.558594 128.808594 219.558594 128.925781 C 219.558594 129.042969 219.652344 129.136719 219.769531 129.136719 C 219.886719 129.136719 219.980469 129.042969 219.980469 128.925781 Z M 219.980469 128.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 220.386719 132.40625 C 220.386719 132.289062 220.292969 132.195312 220.175781 132.195312 C 220.058594 132.195312 219.964844 132.289062 219.964844 132.40625 C 219.964844 132.523438 220.058594 132.617188 220.175781 132.617188 C 220.292969 132.617188 220.386719 132.523438 220.386719 132.40625 Z M 220.386719 132.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.226562 134.402344 C 217.226562 134.285156 217.132812 134.191406 217.015625 134.191406 C 216.898438 134.191406 216.804688 134.285156 216.804688 134.402344 C 216.804688 134.519531 216.898438 134.613281 217.015625 134.613281 C 217.132812 134.613281 217.226562 134.519531 217.226562 134.402344 Z M 217.226562 134.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.941406 136.472656 C 215.941406 136.355469 215.847656 136.261719 215.730469 136.261719 C 215.613281 136.261719 215.519531 136.355469 215.519531 136.472656 C 215.519531 136.589844 215.613281 136.683594 215.730469 136.683594 C 215.847656 136.683594 215.941406 136.589844 215.941406 136.472656 Z M 215.941406 136.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.703125 136.882812 C 215.703125 136.765625 215.609375 136.671875 215.492188 136.671875 C 215.375 136.671875 215.28125 136.765625 215.28125 136.882812 C 215.28125 137 215.375 137.09375 215.492188 137.09375 C 215.609375 137.09375 215.703125 137 215.703125 136.882812 Z M 215.703125 136.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.042969 132.621094 C 216.042969 132.503906 215.949219 132.410156 215.832031 132.410156 C 215.714844 132.410156 215.621094 132.503906 215.621094 132.621094 C 215.621094 132.738281 215.714844 132.832031 215.832031 132.832031 C 215.949219 132.832031 216.042969 132.738281 216.042969 132.621094 Z M 216.042969 132.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.628906 130.335938 C 216.628906 130.21875 216.535156 130.125 216.417969 130.125 C 216.300781 130.125 216.207031 130.21875 216.207031 130.335938 C 216.207031 130.453125 216.300781 130.546875 216.417969 130.546875 C 216.535156 130.546875 216.628906 130.453125 216.628906 130.335938 Z M 216.628906 130.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.90625 129.121094 C 216.90625 129.003906 216.8125 128.910156 216.695312 128.910156 C 216.578125 128.910156 216.484375 129.003906 216.484375 129.121094 C 216.484375 129.238281 216.578125 129.332031 216.695312 129.332031 C 216.8125 129.332031 216.90625 129.238281 216.90625 129.121094 Z M 216.90625 129.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.820312 129.679688 C 215.820312 129.5625 215.726562 129.46875 215.609375 129.46875 C 215.492188 129.46875 215.398438 129.5625 215.398438 129.679688 C 215.398438 129.796875 215.492188 129.890625 215.609375 129.890625 C 215.726562 129.890625 215.820312 129.796875 215.820312 129.679688 Z M 215.820312 129.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.675781 130.800781 C 212.675781 130.683594 212.582031 130.589844 212.464844 130.589844 C 212.347656 130.589844 212.253906 130.683594 212.253906 130.800781 C 212.253906 130.917969 212.347656 131.011719 212.464844 131.011719 C 212.582031 131.011719 212.675781 130.917969 212.675781 130.800781 Z M 212.675781 130.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.667969 132.453125 C 211.667969 132.335938 211.574219 132.242188 211.457031 132.242188 C 211.339844 132.242188 211.246094 132.335938 211.246094 132.453125 C 211.246094 132.570312 211.339844 132.664062 211.457031 132.664062 C 211.574219 132.664062 211.667969 132.570312 211.667969 132.453125 Z M 211.667969 132.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.191406 134.535156 C 216.191406 134.417969 216.097656 134.324219 215.980469 134.324219 C 215.863281 134.324219 215.769531 134.417969 215.769531 134.535156 C 215.769531 134.652344 215.863281 134.746094 215.980469 134.746094 C 216.097656 134.746094 216.191406 134.652344 216.191406 134.535156 Z M 216.191406 134.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.085938 136.105469 C 218.085938 135.988281 217.992188 135.894531 217.875 135.894531 C 217.757812 135.894531 217.664062 135.988281 217.664062 136.105469 C 217.664062 136.222656 217.757812 136.316406 217.875 136.316406 C 217.992188 136.316406 218.085938 136.222656 218.085938 136.105469 Z M 218.085938 136.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.386719 136.355469 C 218.386719 136.238281 218.292969 136.144531 218.175781 136.144531 C 218.058594 136.144531 217.964844 136.238281 217.964844 136.355469 C 217.964844 136.472656 218.058594 136.566406 218.175781 136.566406 C 218.292969 136.566406 218.386719 136.472656 218.386719 136.355469 Z M 218.386719 136.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.746094 137.859375 C 215.746094 137.742188 215.652344 137.648438 215.535156 137.648438 C 215.417969 137.648438 215.324219 137.742188 215.324219 137.859375 C 215.324219 137.976562 215.417969 138.070312 215.535156 138.070312 C 215.652344 138.070312 215.746094 137.976562 215.746094 137.859375 Z M 215.746094 137.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.527344 139.136719 C 214.527344 139.019531 214.433594 138.925781 214.316406 138.925781 C 214.199219 138.925781 214.105469 139.019531 214.105469 139.136719 C 214.105469 139.253906 214.199219 139.347656 214.316406 139.347656 C 214.433594 139.347656 214.527344 139.253906 214.527344 139.136719 Z M 214.527344 139.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.585938 138.28125 C 219.585938 138.164062 219.492188 138.070312 219.375 138.070312 C 219.257812 138.070312 219.164062 138.164062 219.164062 138.28125 C 219.164062 138.398438 219.257812 138.492188 219.375 138.492188 C 219.492188 138.492188 219.585938 138.398438 219.585938 138.28125 Z M 219.585938 138.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.753906 139.847656 C 215.753906 139.730469 215.660156 139.636719 215.542969 139.636719 C 215.425781 139.636719 215.332031 139.730469 215.332031 139.847656 C 215.332031 139.964844 215.425781 140.058594 215.542969 140.058594 C 215.660156 140.058594 215.753906 139.964844 215.753906 139.847656 Z M 215.753906 139.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.105469 141.132812 C 215.105469 141.015625 215.011719 140.921875 214.894531 140.921875 C 214.777344 140.921875 214.683594 141.015625 214.683594 141.132812 C 214.683594 141.25 214.777344 141.34375 214.894531 141.34375 C 215.011719 141.34375 215.105469 141.25 215.105469 141.132812 Z M 215.105469 141.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.042969 141.015625 C 216.042969 140.898438 215.949219 140.804688 215.832031 140.804688 C 215.714844 140.804688 215.621094 140.898438 215.621094 141.015625 C 215.621094 141.132812 215.714844 141.226562 215.832031 141.226562 C 215.949219 141.226562 216.042969 141.132812 216.042969 141.015625 Z M 216.042969 141.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 216.300781 142.644531 C 216.300781 142.527344 216.207031 142.433594 216.089844 142.433594 C 215.972656 142.433594 215.878906 142.527344 215.878906 142.644531 C 215.878906 142.761719 215.972656 142.855469 216.089844 142.855469 C 216.207031 142.855469 216.300781 142.761719 216.300781 142.644531 Z M 216.300781 142.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.765625 141.425781 C 215.765625 141.308594 215.671875 141.214844 215.554688 141.214844 C 215.4375 141.214844 215.34375 141.308594 215.34375 141.425781 C 215.34375 141.542969 215.4375 141.636719 215.554688 141.636719 C 215.671875 141.636719 215.765625 141.542969 215.765625 141.425781 Z M 215.765625 141.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.863281 138.828125 C 209.863281 138.710938 209.769531 138.617188 209.652344 138.617188 C 209.535156 138.617188 209.441406 138.710938 209.441406 138.828125 C 209.441406 138.945312 209.535156 139.039062 209.652344 139.039062 C 209.769531 139.039062 209.863281 138.945312 209.863281 138.828125 Z M 209.863281 138.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.636719 137.113281 C 212.636719 136.996094 212.542969 136.902344 212.425781 136.902344 C 212.308594 136.902344 212.214844 136.996094 212.214844 137.113281 C 212.214844 137.230469 212.308594 137.324219 212.425781 137.324219 C 212.542969 137.324219 212.636719 137.230469 212.636719 137.113281 Z M 212.636719 137.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.707031 137.550781 C 206.707031 137.433594 206.613281 137.339844 206.496094 137.339844 C 206.378906 137.339844 206.285156 137.433594 206.285156 137.550781 C 206.285156 137.667969 206.378906 137.761719 206.496094 137.761719 C 206.613281 137.761719 206.707031 137.667969 206.707031 137.550781 Z M 206.707031 137.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.167969 139.714844 C 204.167969 139.597656 204.074219 139.503906 203.957031 139.503906 C 203.839844 139.503906 203.746094 139.597656 203.746094 139.714844 C 203.746094 139.832031 203.839844 139.925781 203.957031 139.925781 C 204.074219 139.925781 204.167969 139.832031 204.167969 139.714844 Z M 204.167969 139.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.023438 143.902344 C 207.023438 143.785156 206.929688 143.691406 206.8125 143.691406 C 206.695312 143.691406 206.601562 143.785156 206.601562 143.902344 C 206.601562 144.019531 206.695312 144.113281 206.8125 144.113281 C 206.929688 144.113281 207.023438 144.019531 207.023438 143.902344 Z M 207.023438 143.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.9375 143.109375 C 208.9375 142.992188 208.84375 142.898438 208.726562 142.898438 C 208.609375 142.898438 208.515625 142.992188 208.515625 143.109375 C 208.515625 143.226562 208.609375 143.320312 208.726562 143.320312 C 208.84375 143.320312 208.9375 143.226562 208.9375 143.109375 Z M 208.9375 143.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.195312 144.109375 C 208.195312 143.992188 208.101562 143.898438 207.984375 143.898438 C 207.867188 143.898438 207.773438 143.992188 207.773438 144.109375 C 207.773438 144.226562 207.867188 144.320312 207.984375 144.320312 C 208.101562 144.320312 208.195312 144.226562 208.195312 144.109375 Z M 208.195312 144.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.617188 142.953125 C 204.617188 142.835938 204.523438 142.742188 204.40625 142.742188 C 204.289062 142.742188 204.195312 142.835938 204.195312 142.953125 C 204.195312 143.070312 204.289062 143.164062 204.40625 143.164062 C 204.523438 143.164062 204.617188 143.070312 204.617188 142.953125 Z M 204.617188 142.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.6875 142.921875 C 210.6875 142.804688 210.59375 142.710938 210.476562 142.710938 C 210.359375 142.710938 210.265625 142.804688 210.265625 142.921875 C 210.265625 143.039062 210.359375 143.132812 210.476562 143.132812 C 210.59375 143.132812 210.6875 143.039062 210.6875 142.921875 Z M 210.6875 142.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.738281 142.820312 C 209.738281 142.703125 209.644531 142.609375 209.527344 142.609375 C 209.410156 142.609375 209.316406 142.703125 209.316406 142.820312 C 209.316406 142.9375 209.410156 143.03125 209.527344 143.03125 C 209.644531 143.03125 209.738281 142.9375 209.738281 142.820312 Z M 209.738281 142.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.632812 139.414062 C 213.632812 139.296875 213.539062 139.203125 213.421875 139.203125 C 213.304688 139.203125 213.210938 139.296875 213.210938 139.414062 C 213.210938 139.53125 213.304688 139.625 213.421875 139.625 C 213.539062 139.625 213.632812 139.53125 213.632812 139.414062 Z M 213.632812 139.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.730469 140.902344 C 214.730469 140.785156 214.636719 140.691406 214.519531 140.691406 C 214.402344 140.691406 214.308594 140.785156 214.308594 140.902344 C 214.308594 141.019531 214.402344 141.113281 214.519531 141.113281 C 214.636719 141.113281 214.730469 141.019531 214.730469 140.902344 Z M 214.730469 140.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 214.363281 142.417969 C 214.363281 142.300781 214.269531 142.207031 214.152344 142.207031 C 214.035156 142.207031 213.941406 142.300781 213.941406 142.417969 C 213.941406 142.535156 214.035156 142.628906 214.152344 142.628906 C 214.269531 142.628906 214.363281 142.535156 214.363281 142.417969 Z M 214.363281 142.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.179688 141.265625 C 210.179688 141.148438 210.085938 141.054688 209.96875 141.054688 C 209.851562 141.054688 209.757812 141.148438 209.757812 141.265625 C 209.757812 141.382812 209.851562 141.476562 209.96875 141.476562 C 210.085938 141.476562 210.179688 141.382812 210.179688 141.265625 Z M 210.179688 141.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.113281 141.191406 C 212.113281 141.074219 212.019531 140.980469 211.902344 140.980469 C 211.785156 140.980469 211.691406 141.074219 211.691406 141.191406 C 211.691406 141.308594 211.785156 141.402344 211.902344 141.402344 C 212.019531 141.402344 212.113281 141.308594 212.113281 141.191406 Z M 212.113281 141.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.394531 140.113281 C 209.394531 139.996094 209.300781 139.902344 209.183594 139.902344 C 209.066406 139.902344 208.972656 139.996094 208.972656 140.113281 C 208.972656 140.230469 209.066406 140.324219 209.183594 140.324219 C 209.300781 140.324219 209.394531 140.230469 209.394531 140.113281 Z M 209.394531 140.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.695312 136.832031 C 207.695312 136.714844 207.601562 136.621094 207.484375 136.621094 C 207.367188 136.621094 207.273438 136.714844 207.273438 136.832031 C 207.273438 136.949219 207.367188 137.042969 207.484375 137.042969 C 207.601562 137.042969 207.695312 136.949219 207.695312 136.832031 Z M 207.695312 136.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.667969 138.476562 C 208.667969 138.359375 208.574219 138.265625 208.457031 138.265625 C 208.339844 138.265625 208.246094 138.359375 208.246094 138.476562 C 208.246094 138.59375 208.339844 138.6875 208.457031 138.6875 C 208.574219 138.6875 208.667969 138.59375 208.667969 138.476562 Z M 208.667969 138.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.660156 140.035156 C 208.660156 139.917969 208.566406 139.824219 208.449219 139.824219 C 208.332031 139.824219 208.238281 139.917969 208.238281 140.035156 C 208.238281 140.152344 208.332031 140.246094 208.449219 140.246094 C 208.566406 140.246094 208.660156 140.152344 208.660156 140.035156 Z M 208.660156 140.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.316406 139.742188 C 204.316406 139.625 204.222656 139.53125 204.105469 139.53125 C 203.988281 139.53125 203.894531 139.625 203.894531 139.742188 C 203.894531 139.859375 203.988281 139.953125 204.105469 139.953125 C 204.222656 139.953125 204.316406 139.859375 204.316406 139.742188 Z M 204.316406 139.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.808594 140.480469 C 198.808594 140.363281 198.714844 140.269531 198.597656 140.269531 C 198.480469 140.269531 198.386719 140.363281 198.386719 140.480469 C 198.386719 140.597656 198.480469 140.691406 198.597656 140.691406 C 198.714844 140.691406 198.808594 140.597656 198.808594 140.480469 Z M 198.808594 140.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.589844 139.4375 C 193.589844 139.320312 193.496094 139.226562 193.378906 139.226562 C 193.261719 139.226562 193.167969 139.320312 193.167969 139.4375 C 193.167969 139.554688 193.261719 139.648438 193.378906 139.648438 C 193.496094 139.648438 193.589844 139.554688 193.589844 139.4375 Z M 193.589844 139.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.3125 142.273438 C 191.3125 142.15625 191.21875 142.0625 191.101562 142.0625 C 190.984375 142.0625 190.890625 142.15625 190.890625 142.273438 C 190.890625 142.390625 190.984375 142.484375 191.101562 142.484375 C 191.21875 142.484375 191.3125 142.390625 191.3125 142.273438 Z M 191.3125 142.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.234375 140.667969 C 191.234375 140.550781 191.140625 140.457031 191.023438 140.457031 C 190.90625 140.457031 190.8125 140.550781 190.8125 140.667969 C 190.8125 140.785156 190.90625 140.878906 191.023438 140.878906 C 191.140625 140.878906 191.234375 140.785156 191.234375 140.667969 Z M 191.234375 140.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.183594 142.339844 C 187.183594 142.222656 187.089844 142.128906 186.972656 142.128906 C 186.855469 142.128906 186.761719 142.222656 186.761719 142.339844 C 186.761719 142.457031 186.855469 142.550781 186.972656 142.550781 C 187.089844 142.550781 187.183594 142.457031 187.183594 142.339844 Z M 187.183594 142.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.949219 141.324219 C 186.949219 141.207031 186.855469 141.113281 186.738281 141.113281 C 186.621094 141.113281 186.527344 141.207031 186.527344 141.324219 C 186.527344 141.441406 186.621094 141.535156 186.738281 141.535156 C 186.855469 141.535156 186.949219 141.441406 186.949219 141.324219 Z M 186.949219 141.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.015625 142.558594 C 184.015625 142.441406 183.921875 142.347656 183.804688 142.347656 C 183.6875 142.347656 183.59375 142.441406 183.59375 142.558594 C 183.59375 142.675781 183.6875 142.769531 183.804688 142.769531 C 183.921875 142.769531 184.015625 142.675781 184.015625 142.558594 Z M 184.015625 142.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 184.820312 140.839844 C 184.820312 140.722656 184.726562 140.628906 184.609375 140.628906 C 184.492188 140.628906 184.398438 140.722656 184.398438 140.839844 C 184.398438 140.957031 184.492188 141.050781 184.609375 141.050781 C 184.726562 141.050781 184.820312 140.957031 184.820312 140.839844 Z M 184.820312 140.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.632812 138.78125 C 183.632812 138.664062 183.539062 138.570312 183.421875 138.570312 C 183.304688 138.570312 183.210938 138.664062 183.210938 138.78125 C 183.210938 138.898438 183.304688 138.992188 183.421875 138.992188 C 183.539062 138.992188 183.632812 138.898438 183.632812 138.78125 Z M 183.632812 138.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.402344 138.449219 C 182.402344 138.332031 182.308594 138.238281 182.191406 138.238281 C 182.074219 138.238281 181.980469 138.332031 181.980469 138.449219 C 181.980469 138.566406 182.074219 138.660156 182.191406 138.660156 C 182.308594 138.660156 182.402344 138.566406 182.402344 138.449219 Z M 182.402344 138.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.269531 139.617188 C 181.269531 139.5 181.175781 139.40625 181.058594 139.40625 C 180.941406 139.40625 180.847656 139.5 180.847656 139.617188 C 180.847656 139.734375 180.941406 139.828125 181.058594 139.828125 C 181.175781 139.828125 181.269531 139.734375 181.269531 139.617188 Z M 181.269531 139.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 180.441406 139.207031 C 180.441406 139.089844 180.347656 138.996094 180.230469 138.996094 C 180.113281 138.996094 180.019531 139.089844 180.019531 139.207031 C 180.019531 139.324219 180.113281 139.417969 180.230469 139.417969 C 180.347656 139.417969 180.441406 139.324219 180.441406 139.207031 Z M 180.441406 139.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 176.875 134.441406 C 176.875 134.324219 176.78125 134.230469 176.664062 134.230469 C 176.546875 134.230469 176.453125 134.324219 176.453125 134.441406 C 176.453125 134.558594 176.546875 134.652344 176.664062 134.652344 C 176.78125 134.652344 176.875 134.558594 176.875 134.441406 Z M 176.875 134.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.738281 136.832031 C 175.738281 136.714844 175.644531 136.621094 175.527344 136.621094 C 175.410156 136.621094 175.316406 136.714844 175.316406 136.832031 C 175.316406 136.949219 175.410156 137.042969 175.527344 137.042969 C 175.644531 137.042969 175.738281 136.949219 175.738281 136.832031 Z M 175.738281 136.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 178.5625 136.371094 C 178.5625 136.253906 178.46875 136.160156 178.351562 136.160156 C 178.234375 136.160156 178.140625 136.253906 178.140625 136.371094 C 178.140625 136.488281 178.234375 136.582031 178.351562 136.582031 C 178.46875 136.582031 178.5625 136.488281 178.5625 136.371094 Z M 178.5625 136.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 176.042969 132.953125 C 176.042969 132.835938 175.949219 132.742188 175.832031 132.742188 C 175.714844 132.742188 175.621094 132.835938 175.621094 132.953125 C 175.621094 133.070312 175.714844 133.164062 175.832031 133.164062 C 175.949219 133.164062 176.042969 133.070312 176.042969 132.953125 Z M 176.042969 132.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 176.097656 131.175781 C 176.097656 131.058594 176.003906 130.964844 175.886719 130.964844 C 175.769531 130.964844 175.675781 131.058594 175.675781 131.175781 C 175.675781 131.292969 175.769531 131.386719 175.886719 131.386719 C 176.003906 131.386719 176.097656 131.292969 176.097656 131.175781 Z M 176.097656 131.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.117188 133.621094 C 175.117188 133.503906 175.023438 133.410156 174.90625 133.410156 C 174.789062 133.410156 174.695312 133.503906 174.695312 133.621094 C 174.695312 133.738281 174.789062 133.832031 174.90625 133.832031 C 175.023438 133.832031 175.117188 133.738281 175.117188 133.621094 Z M 175.117188 133.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 178.007812 130.886719 C 178.007812 130.769531 177.914062 130.675781 177.796875 130.675781 C 177.679688 130.675781 177.585938 130.769531 177.585938 130.886719 C 177.585938 131.003906 177.679688 131.097656 177.796875 131.097656 C 177.914062 131.097656 178.007812 131.003906 178.007812 130.886719 Z M 178.007812 130.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 176.679688 127.503906 C 176.679688 127.386719 176.585938 127.292969 176.46875 127.292969 C 176.351562 127.292969 176.257812 127.386719 176.257812 127.503906 C 176.257812 127.621094 176.351562 127.714844 176.46875 127.714844 C 176.585938 127.714844 176.679688 127.621094 176.679688 127.503906 Z M 176.679688 127.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.910156 127.382812 C 175.910156 127.265625 175.816406 127.171875 175.699219 127.171875 C 175.582031 127.171875 175.488281 127.265625 175.488281 127.382812 C 175.488281 127.5 175.582031 127.59375 175.699219 127.59375 C 175.816406 127.59375 175.910156 127.5 175.910156 127.382812 Z M 175.910156 127.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 174.023438 127.863281 C 174.023438 127.746094 173.929688 127.652344 173.8125 127.652344 C 173.695312 127.652344 173.601562 127.746094 173.601562 127.863281 C 173.601562 127.980469 173.695312 128.074219 173.8125 128.074219 C 173.929688 128.074219 174.023438 127.980469 174.023438 127.863281 Z M 174.023438 127.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 173.007812 129.90625 C 173.007812 129.789062 172.914062 129.695312 172.796875 129.695312 C 172.679688 129.695312 172.585938 129.789062 172.585938 129.90625 C 172.585938 130.023438 172.679688 130.117188 172.796875 130.117188 C 172.914062 130.117188 173.007812 130.023438 173.007812 129.90625 Z M 173.007812 129.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.121094 130.238281 C 175.121094 130.121094 175.027344 130.027344 174.910156 130.027344 C 174.792969 130.027344 174.699219 130.121094 174.699219 130.238281 C 174.699219 130.355469 174.792969 130.449219 174.910156 130.449219 C 175.027344 130.449219 175.121094 130.355469 175.121094 130.238281 Z M 175.121094 130.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 173.195312 133.253906 C 173.195312 133.136719 173.101562 133.042969 172.984375 133.042969 C 172.867188 133.042969 172.773438 133.136719 172.773438 133.253906 C 172.773438 133.371094 172.867188 133.464844 172.984375 133.464844 C 173.101562 133.464844 173.195312 133.371094 173.195312 133.253906 Z M 173.195312 133.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 174.273438 132.296875 C 174.273438 132.179688 174.179688 132.085938 174.0625 132.085938 C 173.945312 132.085938 173.851562 132.179688 173.851562 132.296875 C 173.851562 132.414062 173.945312 132.507812 174.0625 132.507812 C 174.179688 132.507812 174.273438 132.414062 174.273438 132.296875 Z M 174.273438 132.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 172.726562 131.796875 C 172.726562 131.679688 172.632812 131.585938 172.515625 131.585938 C 172.398438 131.585938 172.304688 131.679688 172.304688 131.796875 C 172.304688 131.914062 172.398438 132.007812 172.515625 132.007812 C 172.632812 132.007812 172.726562 131.914062 172.726562 131.796875 Z M 172.726562 131.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 174.070312 130.707031 C 174.070312 130.589844 173.976562 130.496094 173.859375 130.496094 C 173.742188 130.496094 173.648438 130.589844 173.648438 130.707031 C 173.648438 130.824219 173.742188 130.917969 173.859375 130.917969 C 173.976562 130.917969 174.070312 130.824219 174.070312 130.707031 Z M 174.070312 130.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.566406 133.636719 C 175.566406 133.519531 175.472656 133.425781 175.355469 133.425781 C 175.238281 133.425781 175.144531 133.519531 175.144531 133.636719 C 175.144531 133.753906 175.238281 133.847656 175.355469 133.847656 C 175.472656 133.847656 175.566406 133.753906 175.566406 133.636719 Z M 175.566406 133.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.914062 133.152344 C 175.914062 133.035156 175.820312 132.941406 175.703125 132.941406 C 175.585938 132.941406 175.492188 133.035156 175.492188 133.152344 C 175.492188 133.269531 175.585938 133.363281 175.703125 133.363281 C 175.820312 133.363281 175.914062 133.269531 175.914062 133.152344 Z M 175.914062 133.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 177.222656 133.429688 C 177.222656 133.3125 177.128906 133.21875 177.011719 133.21875 C 176.894531 133.21875 176.800781 133.3125 176.800781 133.429688 C 176.800781 133.546875 176.894531 133.640625 177.011719 133.640625 C 177.128906 133.640625 177.222656 133.546875 177.222656 133.429688 Z M 177.222656 133.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 179.894531 136.148438 C 179.894531 136.03125 179.800781 135.9375 179.683594 135.9375 C 179.566406 135.9375 179.472656 136.03125 179.472656 136.148438 C 179.472656 136.265625 179.566406 136.359375 179.683594 136.359375 C 179.800781 136.359375 179.894531 136.265625 179.894531 136.148438 Z M 179.894531 136.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 180.550781 139.054688 C 180.550781 138.9375 180.457031 138.84375 180.339844 138.84375 C 180.222656 138.84375 180.128906 138.9375 180.128906 139.054688 C 180.128906 139.171875 180.222656 139.265625 180.339844 139.265625 C 180.457031 139.265625 180.550781 139.171875 180.550781 139.054688 Z M 180.550781 139.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.300781 140.871094 C 181.300781 140.753906 181.207031 140.660156 181.089844 140.660156 C 180.972656 140.660156 180.878906 140.753906 180.878906 140.871094 C 180.878906 140.988281 180.972656 141.082031 181.089844 141.082031 C 181.207031 141.082031 181.300781 140.988281 181.300781 140.871094 Z M 181.300781 140.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 179.496094 142.378906 C 179.496094 142.261719 179.402344 142.167969 179.285156 142.167969 C 179.167969 142.167969 179.074219 142.261719 179.074219 142.378906 C 179.074219 142.496094 179.167969 142.589844 179.285156 142.589844 C 179.402344 142.589844 179.496094 142.496094 179.496094 142.378906 Z M 179.496094 142.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.335938 141.347656 C 181.335938 141.230469 181.242188 141.136719 181.125 141.136719 C 181.007812 141.136719 180.914062 141.230469 180.914062 141.347656 C 180.914062 141.464844 181.007812 141.558594 181.125 141.558594 C 181.242188 141.558594 181.335938 141.464844 181.335938 141.347656 Z M 181.335938 141.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 178.3125 140.1875 C 178.3125 140.070312 178.21875 139.976562 178.101562 139.976562 C 177.984375 139.976562 177.890625 140.070312 177.890625 140.1875 C 177.890625 140.304688 177.984375 140.398438 178.101562 140.398438 C 178.21875 140.398438 178.3125 140.304688 178.3125 140.1875 Z M 178.3125 140.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 177.007812 138.355469 C 177.007812 138.238281 176.914062 138.144531 176.796875 138.144531 C 176.679688 138.144531 176.585938 138.238281 176.585938 138.355469 C 176.585938 138.472656 176.679688 138.566406 176.796875 138.566406 C 176.914062 138.566406 177.007812 138.472656 177.007812 138.355469 Z M 177.007812 138.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 179.398438 134.71875 C 179.398438 134.601562 179.304688 134.507812 179.1875 134.507812 C 179.070312 134.507812 178.976562 134.601562 178.976562 134.71875 C 178.976562 134.835938 179.070312 134.929688 179.1875 134.929688 C 179.304688 134.929688 179.398438 134.835938 179.398438 134.71875 Z M 179.398438 134.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.402344 132.769531 C 175.402344 132.652344 175.308594 132.558594 175.191406 132.558594 C 175.074219 132.558594 174.980469 132.652344 174.980469 132.769531 C 174.980469 132.886719 175.074219 132.980469 175.191406 132.980469 C 175.308594 132.980469 175.402344 132.886719 175.402344 132.769531 Z M 175.402344 132.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 171.515625 131.828125 C 171.515625 131.710938 171.421875 131.617188 171.304688 131.617188 C 171.1875 131.617188 171.09375 131.710938 171.09375 131.828125 C 171.09375 131.945312 171.1875 132.039062 171.304688 132.039062 C 171.421875 132.039062 171.515625 131.945312 171.515625 131.828125 Z M 171.515625 131.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 170.976562 131.515625 C 170.976562 131.398438 170.882812 131.304688 170.765625 131.304688 C 170.648438 131.304688 170.554688 131.398438 170.554688 131.515625 C 170.554688 131.632812 170.648438 131.726562 170.765625 131.726562 C 170.882812 131.726562 170.976562 131.632812 170.976562 131.515625 Z M 170.976562 131.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 173.976562 132.570312 C 173.976562 132.453125 173.882812 132.359375 173.765625 132.359375 C 173.648438 132.359375 173.554688 132.453125 173.554688 132.570312 C 173.554688 132.6875 173.648438 132.78125 173.765625 132.78125 C 173.882812 132.78125 173.976562 132.6875 173.976562 132.570312 Z M 173.976562 132.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 173.5 134.457031 C 173.5 134.339844 173.40625 134.246094 173.289062 134.246094 C 173.171875 134.246094 173.078125 134.339844 173.078125 134.457031 C 173.078125 134.574219 173.171875 134.667969 173.289062 134.667969 C 173.40625 134.667969 173.5 134.574219 173.5 134.457031 Z M 173.5 134.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.46875 134.832031 C 175.46875 134.714844 175.375 134.621094 175.257812 134.621094 C 175.140625 134.621094 175.046875 134.714844 175.046875 134.832031 C 175.046875 134.949219 175.140625 135.042969 175.257812 135.042969 C 175.375 135.042969 175.46875 134.949219 175.46875 134.832031 Z M 175.46875 134.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 177.023438 137.023438 C 177.023438 136.90625 176.929688 136.8125 176.8125 136.8125 C 176.695312 136.8125 176.601562 136.90625 176.601562 137.023438 C 176.601562 137.140625 176.695312 137.234375 176.8125 137.234375 C 176.929688 137.234375 177.023438 137.140625 177.023438 137.023438 Z M 177.023438 137.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.90625 136.789062 C 175.90625 136.671875 175.8125 136.578125 175.695312 136.578125 C 175.578125 136.578125 175.484375 136.671875 175.484375 136.789062 C 175.484375 136.90625 175.578125 137 175.695312 137 C 175.8125 137 175.90625 136.90625 175.90625 136.789062 Z M 175.90625 136.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.339844 134.925781 C 175.339844 134.808594 175.246094 134.714844 175.128906 134.714844 C 175.011719 134.714844 174.917969 134.808594 174.917969 134.925781 C 174.917969 135.042969 175.011719 135.136719 175.128906 135.136719 C 175.246094 135.136719 175.339844 135.042969 175.339844 134.925781 Z M 175.339844 134.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 174.851562 134.898438 C 174.851562 134.78125 174.757812 134.6875 174.640625 134.6875 C 174.523438 134.6875 174.429688 134.78125 174.429688 134.898438 C 174.429688 135.015625 174.523438 135.109375 174.640625 135.109375 C 174.757812 135.109375 174.851562 135.015625 174.851562 134.898438 Z M 174.851562 134.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.496094 135.027344 C 175.496094 134.910156 175.402344 134.816406 175.285156 134.816406 C 175.167969 134.816406 175.074219 134.910156 175.074219 135.027344 C 175.074219 135.144531 175.167969 135.238281 175.285156 135.238281 C 175.402344 135.238281 175.496094 135.144531 175.496094 135.027344 Z M 175.496094 135.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.605469 136.664062 C 175.605469 136.546875 175.511719 136.453125 175.394531 136.453125 C 175.277344 136.453125 175.183594 136.546875 175.183594 136.664062 C 175.183594 136.78125 175.277344 136.875 175.394531 136.875 C 175.511719 136.875 175.605469 136.78125 175.605469 136.664062 Z M 175.605469 136.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 177.347656 137.964844 C 177.347656 137.847656 177.253906 137.753906 177.136719 137.753906 C 177.019531 137.753906 176.925781 137.847656 176.925781 137.964844 C 176.925781 138.082031 177.019531 138.175781 177.136719 138.175781 C 177.253906 138.175781 177.347656 138.082031 177.347656 137.964844 Z M 177.347656 137.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 180.691406 137.738281 C 180.691406 137.621094 180.597656 137.527344 180.480469 137.527344 C 180.363281 137.527344 180.269531 137.621094 180.269531 137.738281 C 180.269531 137.855469 180.363281 137.949219 180.480469 137.949219 C 180.597656 137.949219 180.691406 137.855469 180.691406 137.738281 Z M 180.691406 137.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.742188 136.546875 C 183.742188 136.429688 183.648438 136.335938 183.53125 136.335938 C 183.414062 136.335938 183.320312 136.429688 183.320312 136.546875 C 183.320312 136.664062 183.414062 136.757812 183.53125 136.757812 C 183.648438 136.757812 183.742188 136.664062 183.742188 136.546875 Z M 183.742188 136.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.820312 136.9375 C 181.820312 136.820312 181.726562 136.726562 181.609375 136.726562 C 181.492188 136.726562 181.398438 136.820312 181.398438 136.9375 C 181.398438 137.054688 181.492188 137.148438 181.609375 137.148438 C 181.726562 137.148438 181.820312 137.054688 181.820312 136.9375 Z M 181.820312 136.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 176.867188 140 C 176.867188 139.882812 176.773438 139.789062 176.65625 139.789062 C 176.539062 139.789062 176.445312 139.882812 176.445312 140 C 176.445312 140.117188 176.539062 140.210938 176.65625 140.210938 C 176.773438 140.210938 176.867188 140.117188 176.867188 140 Z M 176.867188 140 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.636719 139.867188 C 175.636719 139.75 175.542969 139.65625 175.425781 139.65625 C 175.308594 139.65625 175.214844 139.75 175.214844 139.867188 C 175.214844 139.984375 175.308594 140.078125 175.425781 140.078125 C 175.542969 140.078125 175.636719 139.984375 175.636719 139.867188 Z M 175.636719 139.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 177.382812 140.792969 C 177.382812 140.675781 177.289062 140.582031 177.171875 140.582031 C 177.054688 140.582031 176.960938 140.675781 176.960938 140.792969 C 176.960938 140.910156 177.054688 141.003906 177.171875 141.003906 C 177.289062 141.003906 177.382812 140.910156 177.382812 140.792969 Z M 177.382812 140.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 172.578125 141.25 C 172.578125 141.132812 172.484375 141.039062 172.367188 141.039062 C 172.25 141.039062 172.15625 141.132812 172.15625 141.25 C 172.15625 141.367188 172.25 141.460938 172.367188 141.460938 C 172.484375 141.460938 172.578125 141.367188 172.578125 141.25 Z M 172.578125 141.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 174.960938 136.949219 C 174.960938 136.832031 174.867188 136.738281 174.75 136.738281 C 174.632812 136.738281 174.539062 136.832031 174.539062 136.949219 C 174.539062 137.066406 174.632812 137.160156 174.75 137.160156 C 174.867188 137.160156 174.960938 137.066406 174.960938 136.949219 Z M 174.960938 136.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 177.628906 136.464844 C 177.628906 136.347656 177.535156 136.253906 177.417969 136.253906 C 177.300781 136.253906 177.207031 136.347656 177.207031 136.464844 C 177.207031 136.582031 177.300781 136.675781 177.417969 136.675781 C 177.535156 136.675781 177.628906 136.582031 177.628906 136.464844 Z M 177.628906 136.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 178.070312 136.289062 C 178.070312 136.171875 177.976562 136.078125 177.859375 136.078125 C 177.742188 136.078125 177.648438 136.171875 177.648438 136.289062 C 177.648438 136.40625 177.742188 136.5 177.859375 136.5 C 177.976562 136.5 178.070312 136.40625 178.070312 136.289062 Z M 178.070312 136.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.578125 134.660156 C 175.578125 134.542969 175.484375 134.449219 175.367188 134.449219 C 175.25 134.449219 175.15625 134.542969 175.15625 134.660156 C 175.15625 134.777344 175.25 134.871094 175.367188 134.871094 C 175.484375 134.871094 175.578125 134.777344 175.578125 134.660156 Z M 175.578125 134.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 178.21875 134.503906 C 178.21875 134.386719 178.125 134.292969 178.007812 134.292969 C 177.890625 134.292969 177.796875 134.386719 177.796875 134.503906 C 177.796875 134.621094 177.890625 134.714844 178.007812 134.714844 C 178.125 134.714844 178.21875 134.621094 178.21875 134.503906 Z M 178.21875 134.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 179.296875 131.164062 C 179.296875 131.046875 179.203125 130.953125 179.085938 130.953125 C 178.96875 130.953125 178.875 131.046875 178.875 131.164062 C 178.875 131.28125 178.96875 131.375 179.085938 131.375 C 179.203125 131.375 179.296875 131.28125 179.296875 131.164062 Z M 179.296875 131.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 180.777344 130.832031 C 180.777344 130.714844 180.683594 130.621094 180.566406 130.621094 C 180.449219 130.621094 180.355469 130.714844 180.355469 130.832031 C 180.355469 130.949219 180.449219 131.042969 180.566406 131.042969 C 180.683594 131.042969 180.777344 130.949219 180.777344 130.832031 Z M 180.777344 130.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.390625 130.34375 C 181.390625 130.226562 181.296875 130.132812 181.179688 130.132812 C 181.0625 130.132812 180.96875 130.226562 180.96875 130.34375 C 180.96875 130.460938 181.0625 130.554688 181.179688 130.554688 C 181.296875 130.554688 181.390625 130.460938 181.390625 130.34375 Z M 181.390625 130.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.097656 134.292969 C 182.097656 134.175781 182.003906 134.082031 181.886719 134.082031 C 181.769531 134.082031 181.675781 134.175781 181.675781 134.292969 C 181.675781 134.410156 181.769531 134.503906 181.886719 134.503906 C 182.003906 134.503906 182.097656 134.410156 182.097656 134.292969 Z M 182.097656 134.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 179.574219 130.332031 C 179.574219 130.214844 179.480469 130.121094 179.363281 130.121094 C 179.246094 130.121094 179.152344 130.214844 179.152344 130.332031 C 179.152344 130.449219 179.246094 130.542969 179.363281 130.542969 C 179.480469 130.542969 179.574219 130.449219 179.574219 130.332031 Z M 179.574219 130.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 179.890625 131.558594 C 179.890625 131.441406 179.796875 131.347656 179.679688 131.347656 C 179.5625 131.347656 179.46875 131.441406 179.46875 131.558594 C 179.46875 131.675781 179.5625 131.769531 179.679688 131.769531 C 179.796875 131.769531 179.890625 131.675781 179.890625 131.558594 Z M 179.890625 131.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 177.363281 128.773438 C 177.363281 128.65625 177.269531 128.5625 177.152344 128.5625 C 177.035156 128.5625 176.941406 128.65625 176.941406 128.773438 C 176.941406 128.890625 177.035156 128.984375 177.152344 128.984375 C 177.269531 128.984375 177.363281 128.890625 177.363281 128.773438 Z M 177.363281 128.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 177.285156 128.792969 C 177.285156 128.675781 177.191406 128.582031 177.074219 128.582031 C 176.957031 128.582031 176.863281 128.675781 176.863281 128.792969 C 176.863281 128.910156 176.957031 129.003906 177.074219 129.003906 C 177.191406 129.003906 177.285156 128.910156 177.285156 128.792969 Z M 177.285156 128.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 173.808594 126.433594 C 173.808594 126.316406 173.714844 126.222656 173.597656 126.222656 C 173.480469 126.222656 173.386719 126.316406 173.386719 126.433594 C 173.386719 126.550781 173.480469 126.644531 173.597656 126.644531 C 173.714844 126.644531 173.808594 126.550781 173.808594 126.433594 Z M 173.808594 126.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 173.742188 127.121094 C 173.742188 127.003906 173.648438 126.910156 173.53125 126.910156 C 173.414062 126.910156 173.320312 127.003906 173.320312 127.121094 C 173.320312 127.238281 173.414062 127.332031 173.53125 127.332031 C 173.648438 127.332031 173.742188 127.238281 173.742188 127.121094 Z M 173.742188 127.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 174.777344 125.027344 C 174.777344 124.910156 174.683594 124.816406 174.566406 124.816406 C 174.449219 124.816406 174.355469 124.910156 174.355469 125.027344 C 174.355469 125.144531 174.449219 125.238281 174.566406 125.238281 C 174.683594 125.238281 174.777344 125.144531 174.777344 125.027344 Z M 174.777344 125.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 177.121094 123.699219 C 177.121094 123.582031 177.027344 123.488281 176.910156 123.488281 C 176.792969 123.488281 176.699219 123.582031 176.699219 123.699219 C 176.699219 123.816406 176.792969 123.910156 176.910156 123.910156 C 177.027344 123.910156 177.121094 123.816406 177.121094 123.699219 Z M 177.121094 123.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 174.222656 121.699219 C 174.222656 121.582031 174.128906 121.488281 174.011719 121.488281 C 173.894531 121.488281 173.800781 121.582031 173.800781 121.699219 C 173.800781 121.816406 173.894531 121.910156 174.011719 121.910156 C 174.128906 121.910156 174.222656 121.816406 174.222656 121.699219 Z M 174.222656 121.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.945312 118.382812 C 175.945312 118.265625 175.851562 118.171875 175.734375 118.171875 C 175.617188 118.171875 175.523438 118.265625 175.523438 118.382812 C 175.523438 118.5 175.617188 118.59375 175.734375 118.59375 C 175.851562 118.59375 175.945312 118.5 175.945312 118.382812 Z M 175.945312 118.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 176.460938 119.707031 C 176.460938 119.589844 176.367188 119.496094 176.25 119.496094 C 176.132812 119.496094 176.039062 119.589844 176.039062 119.707031 C 176.039062 119.824219 176.132812 119.917969 176.25 119.917969 C 176.367188 119.917969 176.460938 119.824219 176.460938 119.707031 Z M 176.460938 119.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 174.296875 119.453125 C 174.296875 119.335938 174.203125 119.242188 174.085938 119.242188 C 173.96875 119.242188 173.875 119.335938 173.875 119.453125 C 173.875 119.570312 173.96875 119.664062 174.085938 119.664062 C 174.203125 119.664062 174.296875 119.570312 174.296875 119.453125 Z M 174.296875 119.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 173.636719 122.316406 C 173.636719 122.199219 173.542969 122.105469 173.425781 122.105469 C 173.308594 122.105469 173.214844 122.199219 173.214844 122.316406 C 173.214844 122.433594 173.308594 122.527344 173.425781 122.527344 C 173.542969 122.527344 173.636719 122.433594 173.636719 122.316406 Z M 173.636719 122.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 172.671875 124.558594 C 172.671875 124.441406 172.578125 124.347656 172.460938 124.347656 C 172.34375 124.347656 172.25 124.441406 172.25 124.558594 C 172.25 124.675781 172.34375 124.769531 172.460938 124.769531 C 172.578125 124.769531 172.671875 124.675781 172.671875 124.558594 Z M 172.671875 124.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 170.085938 124.910156 C 170.085938 124.792969 169.992188 124.699219 169.875 124.699219 C 169.757812 124.699219 169.664062 124.792969 169.664062 124.910156 C 169.664062 125.027344 169.757812 125.121094 169.875 125.121094 C 169.992188 125.121094 170.085938 125.027344 170.085938 124.910156 Z M 170.085938 124.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 170.410156 122.328125 C 170.410156 122.210938 170.316406 122.117188 170.199219 122.117188 C 170.082031 122.117188 169.988281 122.210938 169.988281 122.328125 C 169.988281 122.445312 170.082031 122.539062 170.199219 122.539062 C 170.316406 122.539062 170.410156 122.445312 170.410156 122.328125 Z M 170.410156 122.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 169.132812 122.09375 C 169.132812 121.976562 169.039062 121.882812 168.921875 121.882812 C 168.804688 121.882812 168.710938 121.976562 168.710938 122.09375 C 168.710938 122.210938 168.804688 122.304688 168.921875 122.304688 C 169.039062 122.304688 169.132812 122.210938 169.132812 122.09375 Z M 169.132812 122.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 170.257812 122.246094 C 170.257812 122.128906 170.164062 122.035156 170.046875 122.035156 C 169.929688 122.035156 169.835938 122.128906 169.835938 122.246094 C 169.835938 122.363281 169.929688 122.457031 170.046875 122.457031 C 170.164062 122.457031 170.257812 122.363281 170.257812 122.246094 Z M 170.257812 122.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 170.675781 122.023438 C 170.675781 121.90625 170.582031 121.8125 170.464844 121.8125 C 170.347656 121.8125 170.253906 121.90625 170.253906 122.023438 C 170.253906 122.140625 170.347656 122.234375 170.464844 122.234375 C 170.582031 122.234375 170.675781 122.140625 170.675781 122.023438 Z M 170.675781 122.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 170.988281 123.335938 C 170.988281 123.21875 170.894531 123.125 170.777344 123.125 C 170.660156 123.125 170.566406 123.21875 170.566406 123.335938 C 170.566406 123.453125 170.660156 123.546875 170.777344 123.546875 C 170.894531 123.546875 170.988281 123.453125 170.988281 123.335938 Z M 170.988281 123.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 169.574219 124.949219 C 169.574219 124.832031 169.480469 124.738281 169.363281 124.738281 C 169.246094 124.738281 169.152344 124.832031 169.152344 124.949219 C 169.152344 125.066406 169.246094 125.160156 169.363281 125.160156 C 169.480469 125.160156 169.574219 125.066406 169.574219 124.949219 Z M 169.574219 124.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 169.679688 129.539062 C 169.679688 129.421875 169.585938 129.328125 169.46875 129.328125 C 169.351562 129.328125 169.257812 129.421875 169.257812 129.539062 C 169.257812 129.65625 169.351562 129.75 169.46875 129.75 C 169.585938 129.75 169.679688 129.65625 169.679688 129.539062 Z M 169.679688 129.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 169.277344 128.714844 C 169.277344 128.597656 169.183594 128.503906 169.066406 128.503906 C 168.949219 128.503906 168.855469 128.597656 168.855469 128.714844 C 168.855469 128.832031 168.949219 128.925781 169.066406 128.925781 C 169.183594 128.925781 169.277344 128.832031 169.277344 128.714844 Z M 169.277344 128.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 164.5625 124.609375 C 164.5625 124.492188 164.46875 124.398438 164.351562 124.398438 C 164.234375 124.398438 164.140625 124.492188 164.140625 124.609375 C 164.140625 124.726562 164.234375 124.820312 164.351562 124.820312 C 164.46875 124.820312 164.5625 124.726562 164.5625 124.609375 Z M 164.5625 124.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 161.691406 126.734375 C 161.691406 126.617188 161.597656 126.523438 161.480469 126.523438 C 161.363281 126.523438 161.269531 126.617188 161.269531 126.734375 C 161.269531 126.851562 161.363281 126.945312 161.480469 126.945312 C 161.597656 126.945312 161.691406 126.851562 161.691406 126.734375 Z M 161.691406 126.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 160.433594 125.554688 C 160.433594 125.4375 160.339844 125.34375 160.222656 125.34375 C 160.105469 125.34375 160.011719 125.4375 160.011719 125.554688 C 160.011719 125.671875 160.105469 125.765625 160.222656 125.765625 C 160.339844 125.765625 160.433594 125.671875 160.433594 125.554688 Z M 160.433594 125.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 160.351562 126.996094 C 160.351562 126.878906 160.257812 126.785156 160.140625 126.785156 C 160.023438 126.785156 159.929688 126.878906 159.929688 126.996094 C 159.929688 127.113281 160.023438 127.207031 160.140625 127.207031 C 160.257812 127.207031 160.351562 127.113281 160.351562 126.996094 Z M 160.351562 126.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 160.175781 124.507812 C 160.175781 124.390625 160.082031 124.296875 159.964844 124.296875 C 159.847656 124.296875 159.753906 124.390625 159.753906 124.507812 C 159.753906 124.625 159.847656 124.71875 159.964844 124.71875 C 160.082031 124.71875 160.175781 124.625 160.175781 124.507812 Z M 160.175781 124.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 164.234375 126.535156 C 164.234375 126.417969 164.140625 126.324219 164.023438 126.324219 C 163.90625 126.324219 163.8125 126.417969 163.8125 126.535156 C 163.8125 126.652344 163.90625 126.746094 164.023438 126.746094 C 164.140625 126.746094 164.234375 126.652344 164.234375 126.535156 Z M 164.234375 126.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 166.183594 126.679688 C 166.183594 126.5625 166.089844 126.46875 165.972656 126.46875 C 165.855469 126.46875 165.761719 126.5625 165.761719 126.679688 C 165.761719 126.796875 165.855469 126.890625 165.972656 126.890625 C 166.089844 126.890625 166.183594 126.796875 166.183594 126.679688 Z M 166.183594 126.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 169.019531 124.359375 C 169.019531 124.242188 168.925781 124.148438 168.808594 124.148438 C 168.691406 124.148438 168.597656 124.242188 168.597656 124.359375 C 168.597656 124.476562 168.691406 124.570312 168.808594 124.570312 C 168.925781 124.570312 169.019531 124.476562 169.019531 124.359375 Z M 169.019531 124.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 169.699219 125.25 C 169.699219 125.132812 169.605469 125.039062 169.488281 125.039062 C 169.371094 125.039062 169.277344 125.132812 169.277344 125.25 C 169.277344 125.367188 169.371094 125.460938 169.488281 125.460938 C 169.605469 125.460938 169.699219 125.367188 169.699219 125.25 Z M 169.699219 125.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 170.84375 125.699219 C 170.84375 125.582031 170.75 125.488281 170.632812 125.488281 C 170.515625 125.488281 170.421875 125.582031 170.421875 125.699219 C 170.421875 125.816406 170.515625 125.910156 170.632812 125.910156 C 170.75 125.910156 170.84375 125.816406 170.84375 125.699219 Z M 170.84375 125.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.636719 123.683594 C 175.636719 123.566406 175.542969 123.472656 175.425781 123.472656 C 175.308594 123.472656 175.214844 123.566406 175.214844 123.683594 C 175.214844 123.800781 175.308594 123.894531 175.425781 123.894531 C 175.542969 123.894531 175.636719 123.800781 175.636719 123.683594 Z M 175.636719 123.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 174.9375 125.917969 C 174.9375 125.800781 174.84375 125.707031 174.726562 125.707031 C 174.609375 125.707031 174.515625 125.800781 174.515625 125.917969 C 174.515625 126.035156 174.609375 126.128906 174.726562 126.128906 C 174.84375 126.128906 174.9375 126.035156 174.9375 125.917969 Z M 174.9375 125.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 171.203125 123.675781 C 171.203125 123.558594 171.109375 123.464844 170.992188 123.464844 C 170.875 123.464844 170.78125 123.558594 170.78125 123.675781 C 170.78125 123.792969 170.875 123.886719 170.992188 123.886719 C 171.109375 123.886719 171.203125 123.792969 171.203125 123.675781 Z M 171.203125 123.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 173.816406 124.539062 C 173.816406 124.421875 173.722656 124.328125 173.605469 124.328125 C 173.488281 124.328125 173.394531 124.421875 173.394531 124.539062 C 173.394531 124.65625 173.488281 124.75 173.605469 124.75 C 173.722656 124.75 173.816406 124.65625 173.816406 124.539062 Z M 173.816406 124.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.738281 126.175781 C 175.738281 126.058594 175.644531 125.964844 175.527344 125.964844 C 175.410156 125.964844 175.316406 126.058594 175.316406 126.175781 C 175.316406 126.292969 175.410156 126.386719 175.527344 126.386719 C 175.644531 126.386719 175.738281 126.292969 175.738281 126.175781 Z M 175.738281 126.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.3125 124.980469 C 175.3125 124.863281 175.21875 124.769531 175.101562 124.769531 C 174.984375 124.769531 174.890625 124.863281 174.890625 124.980469 C 174.890625 125.097656 174.984375 125.191406 175.101562 125.191406 C 175.21875 125.191406 175.3125 125.097656 175.3125 124.980469 Z M 175.3125 124.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 173.074219 123.992188 C 173.074219 123.875 172.980469 123.78125 172.863281 123.78125 C 172.746094 123.78125 172.652344 123.875 172.652344 123.992188 C 172.652344 124.109375 172.746094 124.203125 172.863281 124.203125 C 172.980469 124.203125 173.074219 124.109375 173.074219 123.992188 Z M 173.074219 123.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 172.730469 125.625 C 172.730469 125.507812 172.636719 125.414062 172.519531 125.414062 C 172.402344 125.414062 172.308594 125.507812 172.308594 125.625 C 172.308594 125.742188 172.402344 125.835938 172.519531 125.835938 C 172.636719 125.835938 172.730469 125.742188 172.730469 125.625 Z M 172.730469 125.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 173.738281 123.605469 C 173.738281 123.488281 173.644531 123.394531 173.527344 123.394531 C 173.410156 123.394531 173.316406 123.488281 173.316406 123.605469 C 173.316406 123.722656 173.410156 123.816406 173.527344 123.816406 C 173.644531 123.816406 173.738281 123.722656 173.738281 123.605469 Z M 173.738281 123.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 172.644531 121.382812 C 172.644531 121.265625 172.550781 121.171875 172.433594 121.171875 C 172.316406 121.171875 172.222656 121.265625 172.222656 121.382812 C 172.222656 121.5 172.316406 121.59375 172.433594 121.59375 C 172.550781 121.59375 172.644531 121.5 172.644531 121.382812 Z M 172.644531 121.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 176.066406 121.894531 C 176.066406 121.777344 175.972656 121.683594 175.855469 121.683594 C 175.738281 121.683594 175.644531 121.777344 175.644531 121.894531 C 175.644531 122.011719 175.738281 122.105469 175.855469 122.105469 C 175.972656 122.105469 176.066406 122.011719 176.066406 121.894531 Z M 176.066406 121.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 176.535156 126.191406 C 176.535156 126.074219 176.441406 125.980469 176.324219 125.980469 C 176.207031 125.980469 176.113281 126.074219 176.113281 126.191406 C 176.113281 126.308594 176.207031 126.402344 176.324219 126.402344 C 176.441406 126.402344 176.535156 126.308594 176.535156 126.191406 Z M 176.535156 126.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 170.484375 124.808594 C 170.484375 124.691406 170.390625 124.597656 170.273438 124.597656 C 170.15625 124.597656 170.0625 124.691406 170.0625 124.808594 C 170.0625 124.925781 170.15625 125.019531 170.273438 125.019531 C 170.390625 125.019531 170.484375 124.925781 170.484375 124.808594 Z M 170.484375 124.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 174.242188 125.929688 C 174.242188 125.8125 174.148438 125.71875 174.03125 125.71875 C 173.914062 125.71875 173.820312 125.8125 173.820312 125.929688 C 173.820312 126.046875 173.914062 126.140625 174.03125 126.140625 C 174.148438 126.140625 174.242188 126.046875 174.242188 125.929688 Z M 174.242188 125.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 173.589844 126.34375 C 173.589844 126.226562 173.496094 126.132812 173.378906 126.132812 C 173.261719 126.132812 173.167969 126.226562 173.167969 126.34375 C 173.167969 126.460938 173.261719 126.554688 173.378906 126.554688 C 173.496094 126.554688 173.589844 126.460938 173.589844 126.34375 Z M 173.589844 126.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 172.324219 128.15625 C 172.324219 128.039062 172.230469 127.945312 172.113281 127.945312 C 171.996094 127.945312 171.902344 128.039062 171.902344 128.15625 C 171.902344 128.273438 171.996094 128.367188 172.113281 128.367188 C 172.230469 128.367188 172.324219 128.273438 172.324219 128.15625 Z M 172.324219 128.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 171.699219 128.675781 C 171.699219 128.558594 171.605469 128.464844 171.488281 128.464844 C 171.371094 128.464844 171.277344 128.558594 171.277344 128.675781 C 171.277344 128.792969 171.371094 128.886719 171.488281 128.886719 C 171.605469 128.886719 171.699219 128.792969 171.699219 128.675781 Z M 171.699219 128.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 171.414062 125.941406 C 171.414062 125.824219 171.320312 125.730469 171.203125 125.730469 C 171.085938 125.730469 170.992188 125.824219 170.992188 125.941406 C 170.992188 126.058594 171.085938 126.152344 171.203125 126.152344 C 171.320312 126.152344 171.414062 126.058594 171.414062 125.941406 Z M 171.414062 125.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 170.84375 120.554688 C 170.84375 120.4375 170.75 120.34375 170.632812 120.34375 C 170.515625 120.34375 170.421875 120.4375 170.421875 120.554688 C 170.421875 120.671875 170.515625 120.765625 170.632812 120.765625 C 170.75 120.765625 170.84375 120.671875 170.84375 120.554688 Z M 170.84375 120.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 170.101562 121.25 C 170.101562 121.132812 170.007812 121.039062 169.890625 121.039062 C 169.773438 121.039062 169.679688 121.132812 169.679688 121.25 C 169.679688 121.367188 169.773438 121.460938 169.890625 121.460938 C 170.007812 121.460938 170.101562 121.367188 170.101562 121.25 Z M 170.101562 121.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 169.628906 122.972656 C 169.628906 122.855469 169.535156 122.761719 169.417969 122.761719 C 169.300781 122.761719 169.207031 122.855469 169.207031 122.972656 C 169.207031 123.089844 169.300781 123.183594 169.417969 123.183594 C 169.535156 123.183594 169.628906 123.089844 169.628906 122.972656 Z M 169.628906 122.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 167.476562 124.867188 C 167.476562 124.75 167.382812 124.65625 167.265625 124.65625 C 167.148438 124.65625 167.054688 124.75 167.054688 124.867188 C 167.054688 124.984375 167.148438 125.078125 167.265625 125.078125 C 167.382812 125.078125 167.476562 124.984375 167.476562 124.867188 Z M 167.476562 124.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 164.019531 126.9375 C 164.019531 126.820312 163.925781 126.726562 163.808594 126.726562 C 163.691406 126.726562 163.597656 126.820312 163.597656 126.9375 C 163.597656 127.054688 163.691406 127.148438 163.808594 127.148438 C 163.925781 127.148438 164.019531 127.054688 164.019531 126.9375 Z M 164.019531 126.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 163.382812 123.445312 C 163.382812 123.328125 163.289062 123.234375 163.171875 123.234375 C 163.054688 123.234375 162.960938 123.328125 162.960938 123.445312 C 162.960938 123.5625 163.054688 123.65625 163.171875 123.65625 C 163.289062 123.65625 163.382812 123.5625 163.382812 123.445312 Z M 163.382812 123.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 162.273438 125.171875 C 162.273438 125.054688 162.179688 124.960938 162.0625 124.960938 C 161.945312 124.960938 161.851562 125.054688 161.851562 125.171875 C 161.851562 125.289062 161.945312 125.382812 162.0625 125.382812 C 162.179688 125.382812 162.273438 125.289062 162.273438 125.171875 Z M 162.273438 125.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 161.058594 129.191406 C 161.058594 129.074219 160.964844 128.980469 160.847656 128.980469 C 160.730469 128.980469 160.636719 129.074219 160.636719 129.191406 C 160.636719 129.308594 160.730469 129.402344 160.847656 129.402344 C 160.964844 129.402344 161.058594 129.308594 161.058594 129.191406 Z M 161.058594 129.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 157.832031 129.109375 C 157.832031 128.992188 157.738281 128.898438 157.621094 128.898438 C 157.503906 128.898438 157.410156 128.992188 157.410156 129.109375 C 157.410156 129.226562 157.503906 129.320312 157.621094 129.320312 C 157.738281 129.320312 157.832031 129.226562 157.832031 129.109375 Z M 157.832031 129.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 162.484375 129.964844 C 162.484375 129.847656 162.390625 129.753906 162.273438 129.753906 C 162.15625 129.753906 162.0625 129.847656 162.0625 129.964844 C 162.0625 130.082031 162.15625 130.175781 162.273438 130.175781 C 162.390625 130.175781 162.484375 130.082031 162.484375 129.964844 Z M 162.484375 129.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 165.019531 129.148438 C 165.019531 129.03125 164.925781 128.9375 164.808594 128.9375 C 164.691406 128.9375 164.597656 129.03125 164.597656 129.148438 C 164.597656 129.265625 164.691406 129.359375 164.808594 129.359375 C 164.925781 129.359375 165.019531 129.265625 165.019531 129.148438 Z M 165.019531 129.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 164.238281 131.976562 C 164.238281 131.859375 164.144531 131.765625 164.027344 131.765625 C 163.910156 131.765625 163.816406 131.859375 163.816406 131.976562 C 163.816406 132.09375 163.910156 132.1875 164.027344 132.1875 C 164.144531 132.1875 164.238281 132.09375 164.238281 131.976562 Z M 164.238281 131.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 160.078125 133.859375 C 160.078125 133.742188 159.984375 133.648438 159.867188 133.648438 C 159.75 133.648438 159.65625 133.742188 159.65625 133.859375 C 159.65625 133.976562 159.75 134.070312 159.867188 134.070312 C 159.984375 134.070312 160.078125 133.976562 160.078125 133.859375 Z M 160.078125 133.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 159.820312 132.363281 C 159.820312 132.246094 159.726562 132.152344 159.609375 132.152344 C 159.492188 132.152344 159.398438 132.246094 159.398438 132.363281 C 159.398438 132.480469 159.492188 132.574219 159.609375 132.574219 C 159.726562 132.574219 159.820312 132.480469 159.820312 132.363281 Z M 159.820312 132.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 157.042969 132.019531 C 157.042969 131.902344 156.949219 131.808594 156.832031 131.808594 C 156.714844 131.808594 156.621094 131.902344 156.621094 132.019531 C 156.621094 132.136719 156.714844 132.230469 156.832031 132.230469 C 156.949219 132.230469 157.042969 132.136719 157.042969 132.019531 Z M 157.042969 132.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 156.898438 134.058594 C 156.898438 133.941406 156.804688 133.847656 156.6875 133.847656 C 156.570312 133.847656 156.476562 133.941406 156.476562 134.058594 C 156.476562 134.175781 156.570312 134.269531 156.6875 134.269531 C 156.804688 134.269531 156.898438 134.175781 156.898438 134.058594 Z M 156.898438 134.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 155.351562 135.136719 C 155.351562 135.019531 155.257812 134.925781 155.140625 134.925781 C 155.023438 134.925781 154.929688 135.019531 154.929688 135.136719 C 154.929688 135.253906 155.023438 135.347656 155.140625 135.347656 C 155.257812 135.347656 155.351562 135.253906 155.351562 135.136719 Z M 155.351562 135.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 159.417969 135.5625 C 159.417969 135.445312 159.324219 135.351562 159.207031 135.351562 C 159.089844 135.351562 158.996094 135.445312 158.996094 135.5625 C 158.996094 135.679688 159.089844 135.773438 159.207031 135.773438 C 159.324219 135.773438 159.417969 135.679688 159.417969 135.5625 Z M 159.417969 135.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 160.566406 136.015625 C 160.566406 135.898438 160.472656 135.804688 160.355469 135.804688 C 160.238281 135.804688 160.144531 135.898438 160.144531 136.015625 C 160.144531 136.132812 160.238281 136.226562 160.355469 136.226562 C 160.472656 136.226562 160.566406 136.132812 160.566406 136.015625 Z M 160.566406 136.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 162.296875 136.191406 C 162.296875 136.074219 162.203125 135.980469 162.085938 135.980469 C 161.96875 135.980469 161.875 136.074219 161.875 136.191406 C 161.875 136.308594 161.96875 136.402344 162.085938 136.402344 C 162.203125 136.402344 162.296875 136.308594 162.296875 136.191406 Z M 162.296875 136.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 161.363281 135.71875 C 161.363281 135.601562 161.269531 135.507812 161.152344 135.507812 C 161.035156 135.507812 160.941406 135.601562 160.941406 135.71875 C 160.941406 135.835938 161.035156 135.929688 161.152344 135.929688 C 161.269531 135.929688 161.363281 135.835938 161.363281 135.71875 Z M 161.363281 135.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 156.84375 136.003906 C 156.84375 135.886719 156.75 135.792969 156.632812 135.792969 C 156.515625 135.792969 156.421875 135.886719 156.421875 136.003906 C 156.421875 136.121094 156.515625 136.214844 156.632812 136.214844 C 156.75 136.214844 156.84375 136.121094 156.84375 136.003906 Z M 156.84375 136.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 156.777344 134.667969 C 156.777344 134.550781 156.683594 134.457031 156.566406 134.457031 C 156.449219 134.457031 156.355469 134.550781 156.355469 134.667969 C 156.355469 134.785156 156.449219 134.878906 156.566406 134.878906 C 156.683594 134.878906 156.777344 134.785156 156.777344 134.667969 Z M 156.777344 134.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 157.445312 133.625 C 157.445312 133.507812 157.351562 133.414062 157.234375 133.414062 C 157.117188 133.414062 157.023438 133.507812 157.023438 133.625 C 157.023438 133.742188 157.117188 133.835938 157.234375 133.835938 C 157.351562 133.835938 157.445312 133.742188 157.445312 133.625 Z M 157.445312 133.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 157.335938 134.878906 C 157.335938 134.761719 157.242188 134.667969 157.125 134.667969 C 157.007812 134.667969 156.914062 134.761719 156.914062 134.878906 C 156.914062 134.996094 157.007812 135.089844 157.125 135.089844 C 157.242188 135.089844 157.335938 134.996094 157.335938 134.878906 Z M 157.335938 134.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 160.210938 132.75 C 160.210938 132.632812 160.117188 132.539062 160 132.539062 C 159.882812 132.539062 159.789062 132.632812 159.789062 132.75 C 159.789062 132.867188 159.882812 132.960938 160 132.960938 C 160.117188 132.960938 160.210938 132.867188 160.210938 132.75 Z M 160.210938 132.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 159.550781 132.605469 C 159.550781 132.488281 159.457031 132.394531 159.339844 132.394531 C 159.222656 132.394531 159.128906 132.488281 159.128906 132.605469 C 159.128906 132.722656 159.222656 132.816406 159.339844 132.816406 C 159.457031 132.816406 159.550781 132.722656 159.550781 132.605469 Z M 159.550781 132.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 160.929688 130.632812 C 160.929688 130.515625 160.835938 130.421875 160.71875 130.421875 C 160.601562 130.421875 160.507812 130.515625 160.507812 130.632812 C 160.507812 130.75 160.601562 130.84375 160.71875 130.84375 C 160.835938 130.84375 160.929688 130.75 160.929688 130.632812 Z M 160.929688 130.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 160.695312 134.757812 C 160.695312 134.640625 160.601562 134.546875 160.484375 134.546875 C 160.367188 134.546875 160.273438 134.640625 160.273438 134.757812 C 160.273438 134.875 160.367188 134.96875 160.484375 134.96875 C 160.601562 134.96875 160.695312 134.875 160.695312 134.757812 Z M 160.695312 134.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 160.082031 132.964844 C 160.082031 132.847656 159.988281 132.753906 159.871094 132.753906 C 159.753906 132.753906 159.660156 132.847656 159.660156 132.964844 C 159.660156 133.082031 159.753906 133.175781 159.871094 133.175781 C 159.988281 133.175781 160.082031 133.082031 160.082031 132.964844 Z M 160.082031 132.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 160.183594 134.921875 C 160.183594 134.804688 160.089844 134.710938 159.972656 134.710938 C 159.855469 134.710938 159.761719 134.804688 159.761719 134.921875 C 159.761719 135.039062 159.855469 135.132812 159.972656 135.132812 C 160.089844 135.132812 160.183594 135.039062 160.183594 134.921875 Z M 160.183594 134.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 161.269531 136.804688 C 161.269531 136.6875 161.175781 136.59375 161.058594 136.59375 C 160.941406 136.59375 160.847656 136.6875 160.847656 136.804688 C 160.847656 136.921875 160.941406 137.015625 161.058594 137.015625 C 161.175781 137.015625 161.269531 136.921875 161.269531 136.804688 Z M 161.269531 136.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 159.902344 138.246094 C 159.902344 138.128906 159.808594 138.035156 159.691406 138.035156 C 159.574219 138.035156 159.480469 138.128906 159.480469 138.246094 C 159.480469 138.363281 159.574219 138.457031 159.691406 138.457031 C 159.808594 138.457031 159.902344 138.363281 159.902344 138.246094 Z M 159.902344 138.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 161.503906 137.402344 C 161.503906 137.285156 161.410156 137.191406 161.292969 137.191406 C 161.175781 137.191406 161.082031 137.285156 161.082031 137.402344 C 161.082031 137.519531 161.175781 137.613281 161.292969 137.613281 C 161.410156 137.613281 161.503906 137.519531 161.503906 137.402344 Z M 161.503906 137.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 164.457031 140.1875 C 164.457031 140.070312 164.363281 139.976562 164.246094 139.976562 C 164.128906 139.976562 164.035156 140.070312 164.035156 140.1875 C 164.035156 140.304688 164.128906 140.398438 164.246094 140.398438 C 164.363281 140.398438 164.457031 140.304688 164.457031 140.1875 Z M 164.457031 140.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 166.035156 143.398438 C 166.035156 143.28125 165.941406 143.1875 165.824219 143.1875 C 165.707031 143.1875 165.613281 143.28125 165.613281 143.398438 C 165.613281 143.515625 165.707031 143.609375 165.824219 143.609375 C 165.941406 143.609375 166.035156 143.515625 166.035156 143.398438 Z M 166.035156 143.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 162.84375 146.367188 C 162.84375 146.25 162.75 146.15625 162.632812 146.15625 C 162.515625 146.15625 162.421875 146.25 162.421875 146.367188 C 162.421875 146.484375 162.515625 146.578125 162.632812 146.578125 C 162.75 146.578125 162.84375 146.484375 162.84375 146.367188 Z M 162.84375 146.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 163.535156 146.003906 C 163.535156 145.886719 163.441406 145.792969 163.324219 145.792969 C 163.207031 145.792969 163.113281 145.886719 163.113281 146.003906 C 163.113281 146.121094 163.207031 146.214844 163.324219 146.214844 C 163.441406 146.214844 163.535156 146.121094 163.535156 146.003906 Z M 163.535156 146.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 167.03125 142.867188 C 167.03125 142.75 166.9375 142.65625 166.820312 142.65625 C 166.703125 142.65625 166.609375 142.75 166.609375 142.867188 C 166.609375 142.984375 166.703125 143.078125 166.820312 143.078125 C 166.9375 143.078125 167.03125 142.984375 167.03125 142.867188 Z M 167.03125 142.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 168.25 141.910156 C 168.25 141.792969 168.15625 141.699219 168.039062 141.699219 C 167.921875 141.699219 167.828125 141.792969 167.828125 141.910156 C 167.828125 142.027344 167.921875 142.121094 168.039062 142.121094 C 168.15625 142.121094 168.25 142.027344 168.25 141.910156 Z M 168.25 141.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 168.636719 141.613281 C 168.636719 141.496094 168.542969 141.402344 168.425781 141.402344 C 168.308594 141.402344 168.214844 141.496094 168.214844 141.613281 C 168.214844 141.730469 168.308594 141.824219 168.425781 141.824219 C 168.542969 141.824219 168.636719 141.730469 168.636719 141.613281 Z M 168.636719 141.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 169.992188 140.714844 C 169.992188 140.597656 169.898438 140.503906 169.78125 140.503906 C 169.664062 140.503906 169.570312 140.597656 169.570312 140.714844 C 169.570312 140.832031 169.664062 140.925781 169.78125 140.925781 C 169.898438 140.925781 169.992188 140.832031 169.992188 140.714844 Z M 169.992188 140.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 169.394531 136.71875 C 169.394531 136.601562 169.300781 136.507812 169.183594 136.507812 C 169.066406 136.507812 168.972656 136.601562 168.972656 136.71875 C 168.972656 136.835938 169.066406 136.929688 169.183594 136.929688 C 169.300781 136.929688 169.394531 136.835938 169.394531 136.71875 Z M 169.394531 136.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 168.832031 138.347656 C 168.832031 138.230469 168.738281 138.136719 168.621094 138.136719 C 168.503906 138.136719 168.410156 138.230469 168.410156 138.347656 C 168.410156 138.464844 168.503906 138.558594 168.621094 138.558594 C 168.738281 138.558594 168.832031 138.464844 168.832031 138.347656 Z M 168.832031 138.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 170.988281 141.035156 C 170.988281 140.917969 170.894531 140.824219 170.777344 140.824219 C 170.660156 140.824219 170.566406 140.917969 170.566406 141.035156 C 170.566406 141.152344 170.660156 141.246094 170.777344 141.246094 C 170.894531 141.246094 170.988281 141.152344 170.988281 141.035156 Z M 170.988281 141.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 171.320312 140.371094 C 171.320312 140.253906 171.226562 140.160156 171.109375 140.160156 C 170.992188 140.160156 170.898438 140.253906 170.898438 140.371094 C 170.898438 140.488281 170.992188 140.582031 171.109375 140.582031 C 171.226562 140.582031 171.320312 140.488281 171.320312 140.371094 Z M 171.320312 140.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 174.714844 141.199219 C 174.714844 141.082031 174.621094 140.988281 174.503906 140.988281 C 174.386719 140.988281 174.292969 141.082031 174.292969 141.199219 C 174.292969 141.316406 174.386719 141.410156 174.503906 141.410156 C 174.621094 141.410156 174.714844 141.316406 174.714844 141.199219 Z M 174.714844 141.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 176.289062 138.867188 C 176.289062 138.75 176.195312 138.65625 176.078125 138.65625 C 175.960938 138.65625 175.867188 138.75 175.867188 138.867188 C 175.867188 138.984375 175.960938 139.078125 176.078125 139.078125 C 176.195312 139.078125 176.289062 138.984375 176.289062 138.867188 Z M 176.289062 138.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 177.046875 135.105469 C 177.046875 134.988281 176.953125 134.894531 176.835938 134.894531 C 176.71875 134.894531 176.625 134.988281 176.625 135.105469 C 176.625 135.222656 176.71875 135.316406 176.835938 135.316406 C 176.953125 135.316406 177.046875 135.222656 177.046875 135.105469 Z M 177.046875 135.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 176.625 134.046875 C 176.625 133.929688 176.53125 133.835938 176.414062 133.835938 C 176.296875 133.835938 176.203125 133.929688 176.203125 134.046875 C 176.203125 134.164062 176.296875 134.257812 176.414062 134.257812 C 176.53125 134.257812 176.625 134.164062 176.625 134.046875 Z M 176.625 134.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 179.742188 133.117188 C 179.742188 133 179.648438 132.90625 179.53125 132.90625 C 179.414062 132.90625 179.320312 133 179.320312 133.117188 C 179.320312 133.234375 179.414062 133.328125 179.53125 133.328125 C 179.648438 133.328125 179.742188 133.234375 179.742188 133.117188 Z M 179.742188 133.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.355469 135.488281 C 182.355469 135.371094 182.261719 135.277344 182.144531 135.277344 C 182.027344 135.277344 181.933594 135.371094 181.933594 135.488281 C 181.933594 135.605469 182.027344 135.699219 182.144531 135.699219 C 182.261719 135.699219 182.355469 135.605469 182.355469 135.488281 Z M 182.355469 135.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.617188 136.609375 C 182.617188 136.492188 182.523438 136.398438 182.40625 136.398438 C 182.289062 136.398438 182.195312 136.492188 182.195312 136.609375 C 182.195312 136.726562 182.289062 136.820312 182.40625 136.820312 C 182.523438 136.820312 182.617188 136.726562 182.617188 136.609375 Z M 182.617188 136.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.511719 139.15625 C 183.511719 139.039062 183.417969 138.945312 183.300781 138.945312 C 183.183594 138.945312 183.089844 139.039062 183.089844 139.15625 C 183.089844 139.273438 183.183594 139.367188 183.300781 139.367188 C 183.417969 139.367188 183.511719 139.273438 183.511719 139.15625 Z M 183.511719 139.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.152344 139.628906 C 183.152344 139.511719 183.058594 139.417969 182.941406 139.417969 C 182.824219 139.417969 182.730469 139.511719 182.730469 139.628906 C 182.730469 139.746094 182.824219 139.839844 182.941406 139.839844 C 183.058594 139.839844 183.152344 139.746094 183.152344 139.628906 Z M 183.152344 139.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.632812 139.984375 C 181.632812 139.867188 181.539062 139.773438 181.421875 139.773438 C 181.304688 139.773438 181.210938 139.867188 181.210938 139.984375 C 181.210938 140.101562 181.304688 140.195312 181.421875 140.195312 C 181.539062 140.195312 181.632812 140.101562 181.632812 139.984375 Z M 181.632812 139.984375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.335938 138.207031 C 182.335938 138.089844 182.242188 137.996094 182.125 137.996094 C 182.007812 137.996094 181.914062 138.089844 181.914062 138.207031 C 181.914062 138.324219 182.007812 138.417969 182.125 138.417969 C 182.242188 138.417969 182.335938 138.324219 182.335938 138.207031 Z M 182.335938 138.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 180.828125 138.535156 C 180.828125 138.417969 180.734375 138.324219 180.617188 138.324219 C 180.5 138.324219 180.40625 138.417969 180.40625 138.535156 C 180.40625 138.652344 180.5 138.746094 180.617188 138.746094 C 180.734375 138.746094 180.828125 138.652344 180.828125 138.535156 Z M 180.828125 138.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.710938 137.585938 C 181.710938 137.46875 181.617188 137.375 181.5 137.375 C 181.382812 137.375 181.289062 137.46875 181.289062 137.585938 C 181.289062 137.703125 181.382812 137.796875 181.5 137.796875 C 181.617188 137.796875 181.710938 137.703125 181.710938 137.585938 Z M 181.710938 137.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.296875 134.285156 C 183.296875 134.167969 183.203125 134.074219 183.085938 134.074219 C 182.96875 134.074219 182.875 134.167969 182.875 134.285156 C 182.875 134.402344 182.96875 134.496094 183.085938 134.496094 C 183.203125 134.496094 183.296875 134.402344 183.296875 134.285156 Z M 183.296875 134.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.527344 134.660156 C 183.527344 134.542969 183.433594 134.449219 183.316406 134.449219 C 183.199219 134.449219 183.105469 134.542969 183.105469 134.660156 C 183.105469 134.777344 183.199219 134.871094 183.316406 134.871094 C 183.433594 134.871094 183.527344 134.777344 183.527344 134.660156 Z M 183.527344 134.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.625 133.359375 C 187.625 133.242188 187.53125 133.148438 187.414062 133.148438 C 187.296875 133.148438 187.203125 133.242188 187.203125 133.359375 C 187.203125 133.476562 187.296875 133.570312 187.414062 133.570312 C 187.53125 133.570312 187.625 133.476562 187.625 133.359375 Z M 187.625 133.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.699219 130.769531 C 185.699219 130.652344 185.605469 130.558594 185.488281 130.558594 C 185.371094 130.558594 185.277344 130.652344 185.277344 130.769531 C 185.277344 130.886719 185.371094 130.980469 185.488281 130.980469 C 185.605469 130.980469 185.699219 130.886719 185.699219 130.769531 Z M 185.699219 130.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.691406 132.703125 C 187.691406 132.585938 187.597656 132.492188 187.480469 132.492188 C 187.363281 132.492188 187.269531 132.585938 187.269531 132.703125 C 187.269531 132.820312 187.363281 132.914062 187.480469 132.914062 C 187.597656 132.914062 187.691406 132.820312 187.691406 132.703125 Z M 187.691406 132.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.144531 130.882812 C 189.144531 130.765625 189.050781 130.671875 188.933594 130.671875 C 188.816406 130.671875 188.722656 130.765625 188.722656 130.882812 C 188.722656 131 188.816406 131.09375 188.933594 131.09375 C 189.050781 131.09375 189.144531 131 189.144531 130.882812 Z M 189.144531 130.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.394531 130.738281 C 191.394531 130.621094 191.300781 130.527344 191.183594 130.527344 C 191.066406 130.527344 190.972656 130.621094 190.972656 130.738281 C 190.972656 130.855469 191.066406 130.949219 191.183594 130.949219 C 191.300781 130.949219 191.394531 130.855469 191.394531 130.738281 Z M 191.394531 130.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.90625 130.75 C 192.90625 130.632812 192.8125 130.539062 192.695312 130.539062 C 192.578125 130.539062 192.484375 130.632812 192.484375 130.75 C 192.484375 130.867188 192.578125 130.960938 192.695312 130.960938 C 192.8125 130.960938 192.90625 130.867188 192.90625 130.75 Z M 192.90625 130.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.453125 129.136719 C 193.453125 129.019531 193.359375 128.925781 193.242188 128.925781 C 193.125 128.925781 193.03125 129.019531 193.03125 129.136719 C 193.03125 129.253906 193.125 129.347656 193.242188 129.347656 C 193.359375 129.347656 193.453125 129.253906 193.453125 129.136719 Z M 193.453125 129.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.582031 131.046875 C 191.582031 130.929688 191.488281 130.835938 191.371094 130.835938 C 191.253906 130.835938 191.160156 130.929688 191.160156 131.046875 C 191.160156 131.164062 191.253906 131.257812 191.371094 131.257812 C 191.488281 131.257812 191.582031 131.164062 191.582031 131.046875 Z M 191.582031 131.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 193.640625 128.660156 C 193.640625 128.542969 193.546875 128.449219 193.429688 128.449219 C 193.3125 128.449219 193.21875 128.542969 193.21875 128.660156 C 193.21875 128.777344 193.3125 128.871094 193.429688 128.871094 C 193.546875 128.871094 193.640625 128.777344 193.640625 128.660156 Z M 193.640625 128.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.167969 126.914062 C 194.167969 126.796875 194.074219 126.703125 193.957031 126.703125 C 193.839844 126.703125 193.746094 126.796875 193.746094 126.914062 C 193.746094 127.03125 193.839844 127.125 193.957031 127.125 C 194.074219 127.125 194.167969 127.03125 194.167969 126.914062 Z M 194.167969 126.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.269531 127.914062 C 191.269531 127.796875 191.175781 127.703125 191.058594 127.703125 C 190.941406 127.703125 190.847656 127.796875 190.847656 127.914062 C 190.847656 128.03125 190.941406 128.125 191.058594 128.125 C 191.175781 128.125 191.269531 128.03125 191.269531 127.914062 Z M 191.269531 127.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.199219 126.886719 C 187.199219 126.769531 187.105469 126.675781 186.988281 126.675781 C 186.871094 126.675781 186.777344 126.769531 186.777344 126.886719 C 186.777344 127.003906 186.871094 127.097656 186.988281 127.097656 C 187.105469 127.097656 187.199219 127.003906 187.199219 126.886719 Z M 187.199219 126.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.792969 130.757812 C 186.792969 130.640625 186.699219 130.546875 186.582031 130.546875 C 186.464844 130.546875 186.371094 130.640625 186.371094 130.757812 C 186.371094 130.875 186.464844 130.96875 186.582031 130.96875 C 186.699219 130.96875 186.792969 130.875 186.792969 130.757812 Z M 186.792969 130.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.460938 131.644531 C 186.460938 131.527344 186.367188 131.433594 186.25 131.433594 C 186.132812 131.433594 186.039062 131.527344 186.039062 131.644531 C 186.039062 131.761719 186.132812 131.855469 186.25 131.855469 C 186.367188 131.855469 186.460938 131.761719 186.460938 131.644531 Z M 186.460938 131.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.253906 131.789062 C 185.253906 131.671875 185.160156 131.578125 185.042969 131.578125 C 184.925781 131.578125 184.832031 131.671875 184.832031 131.789062 C 184.832031 131.90625 184.925781 132 185.042969 132 C 185.160156 132 185.253906 131.90625 185.253906 131.789062 Z M 185.253906 131.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.476562 135.085938 C 188.476562 134.96875 188.382812 134.875 188.265625 134.875 C 188.148438 134.875 188.054688 134.96875 188.054688 135.085938 C 188.054688 135.203125 188.148438 135.296875 188.265625 135.296875 C 188.382812 135.296875 188.476562 135.203125 188.476562 135.085938 Z M 188.476562 135.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.671875 140.441406 C 188.671875 140.324219 188.578125 140.230469 188.460938 140.230469 C 188.34375 140.230469 188.25 140.324219 188.25 140.441406 C 188.25 140.558594 188.34375 140.652344 188.460938 140.652344 C 188.578125 140.652344 188.671875 140.558594 188.671875 140.441406 Z M 188.671875 140.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.078125 141.414062 C 190.078125 141.296875 189.984375 141.203125 189.867188 141.203125 C 189.75 141.203125 189.65625 141.296875 189.65625 141.414062 C 189.65625 141.53125 189.75 141.625 189.867188 141.625 C 189.984375 141.625 190.078125 141.53125 190.078125 141.414062 Z M 190.078125 141.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.875 140.023438 C 192.875 139.90625 192.78125 139.8125 192.664062 139.8125 C 192.546875 139.8125 192.453125 139.90625 192.453125 140.023438 C 192.453125 140.140625 192.546875 140.234375 192.664062 140.234375 C 192.78125 140.234375 192.875 140.140625 192.875 140.023438 Z M 192.875 140.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.277344 139.148438 C 195.277344 139.03125 195.183594 138.9375 195.066406 138.9375 C 194.949219 138.9375 194.855469 139.03125 194.855469 139.148438 C 194.855469 139.265625 194.949219 139.359375 195.066406 139.359375 C 195.183594 139.359375 195.277344 139.265625 195.277344 139.148438 Z M 195.277344 139.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.789062 138.628906 C 192.789062 138.511719 192.695312 138.417969 192.578125 138.417969 C 192.460938 138.417969 192.367188 138.511719 192.367188 138.628906 C 192.367188 138.746094 192.460938 138.839844 192.578125 138.839844 C 192.695312 138.839844 192.789062 138.746094 192.789062 138.628906 Z M 192.789062 138.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.269531 136.046875 C 188.269531 135.929688 188.175781 135.835938 188.058594 135.835938 C 187.941406 135.835938 187.847656 135.929688 187.847656 136.046875 C 187.847656 136.164062 187.941406 136.257812 188.058594 136.257812 C 188.175781 136.257812 188.269531 136.164062 188.269531 136.046875 Z M 188.269531 136.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.410156 133.207031 C 189.410156 133.089844 189.316406 132.996094 189.199219 132.996094 C 189.082031 132.996094 188.988281 133.089844 188.988281 133.207031 C 188.988281 133.324219 189.082031 133.417969 189.199219 133.417969 C 189.316406 133.417969 189.410156 133.324219 189.410156 133.207031 Z M 189.410156 133.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.023438 135.777344 C 189.023438 135.660156 188.929688 135.566406 188.8125 135.566406 C 188.695312 135.566406 188.601562 135.660156 188.601562 135.777344 C 188.601562 135.894531 188.695312 135.988281 188.8125 135.988281 C 188.929688 135.988281 189.023438 135.894531 189.023438 135.777344 Z M 189.023438 135.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.425781 137.269531 C 188.425781 137.152344 188.332031 137.058594 188.214844 137.058594 C 188.097656 137.058594 188.003906 137.152344 188.003906 137.269531 C 188.003906 137.386719 188.097656 137.480469 188.214844 137.480469 C 188.332031 137.480469 188.425781 137.386719 188.425781 137.269531 Z M 188.425781 137.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.5 134.847656 C 187.5 134.730469 187.40625 134.636719 187.289062 134.636719 C 187.171875 134.636719 187.078125 134.730469 187.078125 134.847656 C 187.078125 134.964844 187.171875 135.058594 187.289062 135.058594 C 187.40625 135.058594 187.5 134.964844 187.5 134.847656 Z M 187.5 134.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.601562 135.335938 C 188.601562 135.21875 188.507812 135.125 188.390625 135.125 C 188.273438 135.125 188.179688 135.21875 188.179688 135.335938 C 188.179688 135.453125 188.273438 135.546875 188.390625 135.546875 C 188.507812 135.546875 188.601562 135.453125 188.601562 135.335938 Z M 188.601562 135.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.9375 133.855469 C 190.9375 133.738281 190.84375 133.644531 190.726562 133.644531 C 190.609375 133.644531 190.515625 133.738281 190.515625 133.855469 C 190.515625 133.972656 190.609375 134.066406 190.726562 134.066406 C 190.84375 134.066406 190.9375 133.972656 190.9375 133.855469 Z M 190.9375 133.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.222656 134.542969 C 190.222656 134.425781 190.128906 134.332031 190.011719 134.332031 C 189.894531 134.332031 189.800781 134.425781 189.800781 134.542969 C 189.800781 134.660156 189.894531 134.753906 190.011719 134.753906 C 190.128906 134.753906 190.222656 134.660156 190.222656 134.542969 Z M 190.222656 134.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.476562 134.453125 C 190.476562 134.335938 190.382812 134.242188 190.265625 134.242188 C 190.148438 134.242188 190.054688 134.335938 190.054688 134.453125 C 190.054688 134.570312 190.148438 134.664062 190.265625 134.664062 C 190.382812 134.664062 190.476562 134.570312 190.476562 134.453125 Z M 190.476562 134.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.699219 133.222656 C 190.699219 133.105469 190.605469 133.011719 190.488281 133.011719 C 190.371094 133.011719 190.277344 133.105469 190.277344 133.222656 C 190.277344 133.339844 190.371094 133.433594 190.488281 133.433594 C 190.605469 133.433594 190.699219 133.339844 190.699219 133.222656 Z M 190.699219 133.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.496094 131.894531 C 194.496094 131.777344 194.402344 131.683594 194.285156 131.683594 C 194.167969 131.683594 194.074219 131.777344 194.074219 131.894531 C 194.074219 132.011719 194.167969 132.105469 194.285156 132.105469 C 194.402344 132.105469 194.496094 132.011719 194.496094 131.894531 Z M 194.496094 131.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.289062 134.207031 C 194.289062 134.089844 194.195312 133.996094 194.078125 133.996094 C 193.960938 133.996094 193.867188 134.089844 193.867188 134.207031 C 193.867188 134.324219 193.960938 134.417969 194.078125 134.417969 C 194.195312 134.417969 194.289062 134.324219 194.289062 134.207031 Z M 194.289062 134.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.414062 133.609375 C 194.414062 133.492188 194.320312 133.398438 194.203125 133.398438 C 194.085938 133.398438 193.992188 133.492188 193.992188 133.609375 C 193.992188 133.726562 194.085938 133.820312 194.203125 133.820312 C 194.320312 133.820312 194.414062 133.726562 194.414062 133.609375 Z M 194.414062 133.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.339844 134.195312 C 195.339844 134.078125 195.246094 133.984375 195.128906 133.984375 C 195.011719 133.984375 194.917969 134.078125 194.917969 134.195312 C 194.917969 134.3125 195.011719 134.40625 195.128906 134.40625 C 195.246094 134.40625 195.339844 134.3125 195.339844 134.195312 Z M 195.339844 134.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.019531 133.0625 C 199.019531 132.945312 198.925781 132.851562 198.808594 132.851562 C 198.691406 132.851562 198.597656 132.945312 198.597656 133.0625 C 198.597656 133.179688 198.691406 133.273438 198.808594 133.273438 C 198.925781 133.273438 199.019531 133.179688 199.019531 133.0625 Z M 199.019531 133.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.558594 132.335938 C 197.558594 132.21875 197.464844 132.125 197.347656 132.125 C 197.230469 132.125 197.136719 132.21875 197.136719 132.335938 C 197.136719 132.453125 197.230469 132.546875 197.347656 132.546875 C 197.464844 132.546875 197.558594 132.453125 197.558594 132.335938 Z M 197.558594 132.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.542969 131.894531 C 198.542969 131.777344 198.449219 131.683594 198.332031 131.683594 C 198.214844 131.683594 198.121094 131.777344 198.121094 131.894531 C 198.121094 132.011719 198.214844 132.105469 198.332031 132.105469 C 198.449219 132.105469 198.542969 132.011719 198.542969 131.894531 Z M 198.542969 131.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.953125 131.878906 C 201.953125 131.761719 201.859375 131.667969 201.742188 131.667969 C 201.625 131.667969 201.53125 131.761719 201.53125 131.878906 C 201.53125 131.996094 201.625 132.089844 201.742188 132.089844 C 201.859375 132.089844 201.953125 131.996094 201.953125 131.878906 Z M 201.953125 131.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.375 129.445312 C 201.375 129.328125 201.28125 129.234375 201.164062 129.234375 C 201.046875 129.234375 200.953125 129.328125 200.953125 129.445312 C 200.953125 129.5625 201.046875 129.65625 201.164062 129.65625 C 201.28125 129.65625 201.375 129.5625 201.375 129.445312 Z M 201.375 129.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.589844 131.039062 C 201.589844 130.921875 201.496094 130.828125 201.378906 130.828125 C 201.261719 130.828125 201.167969 130.921875 201.167969 131.039062 C 201.167969 131.15625 201.261719 131.25 201.378906 131.25 C 201.496094 131.25 201.589844 131.15625 201.589844 131.039062 Z M 201.589844 131.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.605469 130.714844 C 202.605469 130.597656 202.511719 130.503906 202.394531 130.503906 C 202.277344 130.503906 202.183594 130.597656 202.183594 130.714844 C 202.183594 130.832031 202.277344 130.925781 202.394531 130.925781 C 202.511719 130.925781 202.605469 130.832031 202.605469 130.714844 Z M 202.605469 130.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.96875 133.101562 C 203.96875 132.984375 203.875 132.890625 203.757812 132.890625 C 203.640625 132.890625 203.546875 132.984375 203.546875 133.101562 C 203.546875 133.21875 203.640625 133.3125 203.757812 133.3125 C 203.875 133.3125 203.96875 133.21875 203.96875 133.101562 Z M 203.96875 133.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.5 126.335938 C 204.5 126.21875 204.40625 126.125 204.289062 126.125 C 204.171875 126.125 204.078125 126.21875 204.078125 126.335938 C 204.078125 126.453125 204.171875 126.546875 204.289062 126.546875 C 204.40625 126.546875 204.5 126.453125 204.5 126.335938 Z M 204.5 126.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.253906 126.457031 C 204.253906 126.339844 204.160156 126.246094 204.042969 126.246094 C 203.925781 126.246094 203.832031 126.339844 203.832031 126.457031 C 203.832031 126.574219 203.925781 126.667969 204.042969 126.667969 C 204.160156 126.667969 204.253906 126.574219 204.253906 126.457031 Z M 204.253906 126.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.03125 129.757812 C 205.03125 129.640625 204.9375 129.546875 204.820312 129.546875 C 204.703125 129.546875 204.609375 129.640625 204.609375 129.757812 C 204.609375 129.875 204.703125 129.96875 204.820312 129.96875 C 204.9375 129.96875 205.03125 129.875 205.03125 129.757812 Z M 205.03125 129.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.699219 129.621094 C 203.699219 129.503906 203.605469 129.410156 203.488281 129.410156 C 203.371094 129.410156 203.277344 129.503906 203.277344 129.621094 C 203.277344 129.738281 203.371094 129.832031 203.488281 129.832031 C 203.605469 129.832031 203.699219 129.738281 203.699219 129.621094 Z M 203.699219 129.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.414062 129.074219 C 204.414062 128.957031 204.320312 128.863281 204.203125 128.863281 C 204.085938 128.863281 203.992188 128.957031 203.992188 129.074219 C 203.992188 129.191406 204.085938 129.285156 204.203125 129.285156 C 204.320312 129.285156 204.414062 129.191406 204.414062 129.074219 Z M 204.414062 129.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.292969 128.515625 C 203.292969 128.398438 203.199219 128.304688 203.082031 128.304688 C 202.964844 128.304688 202.871094 128.398438 202.871094 128.515625 C 202.871094 128.632812 202.964844 128.726562 203.082031 128.726562 C 203.199219 128.726562 203.292969 128.632812 203.292969 128.515625 Z M 203.292969 128.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.261719 131.667969 C 202.261719 131.550781 202.167969 131.457031 202.050781 131.457031 C 201.933594 131.457031 201.839844 131.550781 201.839844 131.667969 C 201.839844 131.785156 201.933594 131.878906 202.050781 131.878906 C 202.167969 131.878906 202.261719 131.785156 202.261719 131.667969 Z M 202.261719 131.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.984375 131.816406 C 202.984375 131.699219 202.890625 131.605469 202.773438 131.605469 C 202.65625 131.605469 202.5625 131.699219 202.5625 131.816406 C 202.5625 131.933594 202.65625 132.027344 202.773438 132.027344 C 202.890625 132.027344 202.984375 131.933594 202.984375 131.816406 Z M 202.984375 131.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.785156 134.554688 C 203.785156 134.4375 203.691406 134.34375 203.574219 134.34375 C 203.457031 134.34375 203.363281 134.4375 203.363281 134.554688 C 203.363281 134.671875 203.457031 134.765625 203.574219 134.765625 C 203.691406 134.765625 203.785156 134.671875 203.785156 134.554688 Z M 203.785156 134.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.1875 131.785156 C 204.1875 131.667969 204.09375 131.574219 203.976562 131.574219 C 203.859375 131.574219 203.765625 131.667969 203.765625 131.785156 C 203.765625 131.902344 203.859375 131.996094 203.976562 131.996094 C 204.09375 131.996094 204.1875 131.902344 204.1875 131.785156 Z M 204.1875 131.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.105469 133.445312 C 199.105469 133.328125 199.011719 133.234375 198.894531 133.234375 C 198.777344 133.234375 198.683594 133.328125 198.683594 133.445312 C 198.683594 133.5625 198.777344 133.65625 198.894531 133.65625 C 199.011719 133.65625 199.105469 133.5625 199.105469 133.445312 Z M 199.105469 133.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.976562 130.78125 C 194.976562 130.664062 194.882812 130.570312 194.765625 130.570312 C 194.648438 130.570312 194.554688 130.664062 194.554688 130.78125 C 194.554688 130.898438 194.648438 130.992188 194.765625 130.992188 C 194.882812 130.992188 194.976562 130.898438 194.976562 130.78125 Z M 194.976562 130.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.808594 129.019531 C 194.808594 128.902344 194.714844 128.808594 194.597656 128.808594 C 194.480469 128.808594 194.386719 128.902344 194.386719 129.019531 C 194.386719 129.136719 194.480469 129.230469 194.597656 129.230469 C 194.714844 129.230469 194.808594 129.136719 194.808594 129.019531 Z M 194.808594 129.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.691406 133.3125 C 195.691406 133.195312 195.597656 133.101562 195.480469 133.101562 C 195.363281 133.101562 195.269531 133.195312 195.269531 133.3125 C 195.269531 133.429688 195.363281 133.523438 195.480469 133.523438 C 195.597656 133.523438 195.691406 133.429688 195.691406 133.3125 Z M 195.691406 133.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.613281 131.742188 C 196.613281 131.625 196.519531 131.53125 196.402344 131.53125 C 196.285156 131.53125 196.191406 131.625 196.191406 131.742188 C 196.191406 131.859375 196.285156 131.953125 196.402344 131.953125 C 196.519531 131.953125 196.613281 131.859375 196.613281 131.742188 Z M 196.613281 131.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.265625 135.601562 C 196.265625 135.484375 196.171875 135.390625 196.054688 135.390625 C 195.9375 135.390625 195.84375 135.484375 195.84375 135.601562 C 195.84375 135.71875 195.9375 135.8125 196.054688 135.8125 C 196.171875 135.8125 196.265625 135.71875 196.265625 135.601562 Z M 196.265625 135.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.707031 132.390625 C 198.707031 132.273438 198.613281 132.179688 198.496094 132.179688 C 198.378906 132.179688 198.285156 132.273438 198.285156 132.390625 C 198.285156 132.507812 198.378906 132.601562 198.496094 132.601562 C 198.613281 132.601562 198.707031 132.507812 198.707031 132.390625 Z M 198.707031 132.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.539062 132.671875 C 198.539062 132.554688 198.445312 132.460938 198.328125 132.460938 C 198.210938 132.460938 198.117188 132.554688 198.117188 132.671875 C 198.117188 132.789062 198.210938 132.882812 198.328125 132.882812 C 198.445312 132.882812 198.539062 132.789062 198.539062 132.671875 Z M 198.539062 132.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.058594 131.796875 C 196.058594 131.679688 195.964844 131.585938 195.847656 131.585938 C 195.730469 131.585938 195.636719 131.679688 195.636719 131.796875 C 195.636719 131.914062 195.730469 132.007812 195.847656 132.007812 C 195.964844 132.007812 196.058594 131.914062 196.058594 131.796875 Z M 196.058594 131.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.761719 132.273438 C 199.761719 132.15625 199.667969 132.0625 199.550781 132.0625 C 199.433594 132.0625 199.339844 132.15625 199.339844 132.273438 C 199.339844 132.390625 199.433594 132.484375 199.550781 132.484375 C 199.667969 132.484375 199.761719 132.390625 199.761719 132.273438 Z M 199.761719 132.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.183594 130.511719 C 202.183594 130.394531 202.089844 130.300781 201.972656 130.300781 C 201.855469 130.300781 201.761719 130.394531 201.761719 130.511719 C 201.761719 130.628906 201.855469 130.722656 201.972656 130.722656 C 202.089844 130.722656 202.183594 130.628906 202.183594 130.511719 Z M 202.183594 130.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.898438 129.246094 C 203.898438 129.128906 203.804688 129.035156 203.6875 129.035156 C 203.570312 129.035156 203.476562 129.128906 203.476562 129.246094 C 203.476562 129.363281 203.570312 129.457031 203.6875 129.457031 C 203.804688 129.457031 203.898438 129.363281 203.898438 129.246094 Z M 203.898438 129.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.101562 131.757812 C 205.101562 131.640625 205.007812 131.546875 204.890625 131.546875 C 204.773438 131.546875 204.679688 131.640625 204.679688 131.757812 C 204.679688 131.875 204.773438 131.96875 204.890625 131.96875 C 205.007812 131.96875 205.101562 131.875 205.101562 131.757812 Z M 205.101562 131.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.613281 136.175781 C 201.613281 136.058594 201.519531 135.964844 201.402344 135.964844 C 201.285156 135.964844 201.191406 136.058594 201.191406 136.175781 C 201.191406 136.292969 201.285156 136.386719 201.402344 136.386719 C 201.519531 136.386719 201.613281 136.292969 201.613281 136.175781 Z M 201.613281 136.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.503906 135.359375 C 201.503906 135.242188 201.410156 135.148438 201.292969 135.148438 C 201.175781 135.148438 201.082031 135.242188 201.082031 135.359375 C 201.082031 135.476562 201.175781 135.570312 201.292969 135.570312 C 201.410156 135.570312 201.503906 135.476562 201.503906 135.359375 Z M 201.503906 135.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.34375 132.757812 C 201.34375 132.640625 201.25 132.546875 201.132812 132.546875 C 201.015625 132.546875 200.921875 132.640625 200.921875 132.757812 C 200.921875 132.875 201.015625 132.96875 201.132812 132.96875 C 201.25 132.96875 201.34375 132.875 201.34375 132.757812 Z M 201.34375 132.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.519531 133.441406 C 203.519531 133.324219 203.425781 133.230469 203.308594 133.230469 C 203.191406 133.230469 203.097656 133.324219 203.097656 133.441406 C 203.097656 133.558594 203.191406 133.652344 203.308594 133.652344 C 203.425781 133.652344 203.519531 133.558594 203.519531 133.441406 Z M 203.519531 133.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.394531 132.496094 C 203.394531 132.378906 203.300781 132.285156 203.183594 132.285156 C 203.066406 132.285156 202.972656 132.378906 202.972656 132.496094 C 202.972656 132.613281 203.066406 132.707031 203.183594 132.707031 C 203.300781 132.707031 203.394531 132.613281 203.394531 132.496094 Z M 203.394531 132.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.925781 133.996094 C 206.925781 133.878906 206.832031 133.785156 206.714844 133.785156 C 206.597656 133.785156 206.503906 133.878906 206.503906 133.996094 C 206.503906 134.113281 206.597656 134.207031 206.714844 134.207031 C 206.832031 134.207031 206.925781 134.113281 206.925781 133.996094 Z M 206.925781 133.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.554688 135.253906 C 204.554688 135.136719 204.460938 135.042969 204.34375 135.042969 C 204.226562 135.042969 204.132812 135.136719 204.132812 135.253906 C 204.132812 135.371094 204.226562 135.464844 204.34375 135.464844 C 204.460938 135.464844 204.554688 135.371094 204.554688 135.253906 Z M 204.554688 135.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.617188 132.539062 C 205.617188 132.421875 205.523438 132.328125 205.40625 132.328125 C 205.289062 132.328125 205.195312 132.421875 205.195312 132.539062 C 205.195312 132.65625 205.289062 132.75 205.40625 132.75 C 205.523438 132.75 205.617188 132.65625 205.617188 132.539062 Z M 205.617188 132.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.730469 137.339844 C 207.730469 137.222656 207.636719 137.128906 207.519531 137.128906 C 207.402344 137.128906 207.308594 137.222656 207.308594 137.339844 C 207.308594 137.457031 207.402344 137.550781 207.519531 137.550781 C 207.636719 137.550781 207.730469 137.457031 207.730469 137.339844 Z M 207.730469 137.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.3125 138.324219 C 207.3125 138.207031 207.21875 138.113281 207.101562 138.113281 C 206.984375 138.113281 206.890625 138.207031 206.890625 138.324219 C 206.890625 138.441406 206.984375 138.535156 207.101562 138.535156 C 207.21875 138.535156 207.3125 138.441406 207.3125 138.324219 Z M 207.3125 138.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.347656 137.824219 C 206.347656 137.707031 206.253906 137.613281 206.136719 137.613281 C 206.019531 137.613281 205.925781 137.707031 205.925781 137.824219 C 205.925781 137.941406 206.019531 138.035156 206.136719 138.035156 C 206.253906 138.035156 206.347656 137.941406 206.347656 137.824219 Z M 206.347656 137.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.425781 135.339844 C 209.425781 135.222656 209.332031 135.128906 209.214844 135.128906 C 209.097656 135.128906 209.003906 135.222656 209.003906 135.339844 C 209.003906 135.457031 209.097656 135.550781 209.214844 135.550781 C 209.332031 135.550781 209.425781 135.457031 209.425781 135.339844 Z M 209.425781 135.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.867188 137.507812 C 207.867188 137.390625 207.773438 137.296875 207.65625 137.296875 C 207.539062 137.296875 207.445312 137.390625 207.445312 137.507812 C 207.445312 137.625 207.539062 137.71875 207.65625 137.71875 C 207.773438 137.71875 207.867188 137.625 207.867188 137.507812 Z M 207.867188 137.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.433594 137.238281 C 205.433594 137.121094 205.339844 137.027344 205.222656 137.027344 C 205.105469 137.027344 205.011719 137.121094 205.011719 137.238281 C 205.011719 137.355469 205.105469 137.449219 205.222656 137.449219 C 205.339844 137.449219 205.433594 137.355469 205.433594 137.238281 Z M 205.433594 137.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.917969 138.179688 C 204.917969 138.0625 204.824219 137.96875 204.707031 137.96875 C 204.589844 137.96875 204.496094 138.0625 204.496094 138.179688 C 204.496094 138.296875 204.589844 138.390625 204.707031 138.390625 C 204.824219 138.390625 204.917969 138.296875 204.917969 138.179688 Z M 204.917969 138.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.246094 134.804688 C 208.246094 134.6875 208.152344 134.59375 208.035156 134.59375 C 207.917969 134.59375 207.824219 134.6875 207.824219 134.804688 C 207.824219 134.921875 207.917969 135.015625 208.035156 135.015625 C 208.152344 135.015625 208.246094 134.921875 208.246094 134.804688 Z M 208.246094 134.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 212.101562 133.84375 C 212.101562 133.726562 212.007812 133.632812 211.890625 133.632812 C 211.773438 133.632812 211.679688 133.726562 211.679688 133.84375 C 211.679688 133.960938 211.773438 134.054688 211.890625 134.054688 C 212.007812 134.054688 212.101562 133.960938 212.101562 133.84375 Z M 212.101562 133.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.003906 133.25 C 215.003906 133.132812 214.910156 133.039062 214.792969 133.039062 C 214.675781 133.039062 214.582031 133.132812 214.582031 133.25 C 214.582031 133.367188 214.675781 133.460938 214.792969 133.460938 C 214.910156 133.460938 215.003906 133.367188 215.003906 133.25 Z M 215.003906 133.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.441406 128.828125 C 219.441406 128.710938 219.347656 128.617188 219.230469 128.617188 C 219.113281 128.617188 219.019531 128.710938 219.019531 128.828125 C 219.019531 128.945312 219.113281 129.039062 219.230469 129.039062 C 219.347656 129.039062 219.441406 128.945312 219.441406 128.828125 Z M 219.441406 128.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 219.855469 127.523438 C 219.855469 127.40625 219.761719 127.3125 219.644531 127.3125 C 219.527344 127.3125 219.433594 127.40625 219.433594 127.523438 C 219.433594 127.640625 219.527344 127.734375 219.644531 127.734375 C 219.761719 127.734375 219.855469 127.640625 219.855469 127.523438 Z M 219.855469 127.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 217.640625 126.035156 C 217.640625 125.917969 217.546875 125.824219 217.429688 125.824219 C 217.3125 125.824219 217.21875 125.917969 217.21875 126.035156 C 217.21875 126.152344 217.3125 126.246094 217.429688 126.246094 C 217.546875 126.246094 217.640625 126.152344 217.640625 126.035156 Z M 217.640625 126.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.230469 127.515625 C 218.230469 127.398438 218.136719 127.304688 218.019531 127.304688 C 217.902344 127.304688 217.808594 127.398438 217.808594 127.515625 C 217.808594 127.632812 217.902344 127.726562 218.019531 127.726562 C 218.136719 127.726562 218.230469 127.632812 218.230469 127.515625 Z M 218.230469 127.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 218.496094 129.300781 C 218.496094 129.183594 218.402344 129.089844 218.285156 129.089844 C 218.167969 129.089844 218.074219 129.183594 218.074219 129.300781 C 218.074219 129.417969 218.167969 129.511719 218.285156 129.511719 C 218.402344 129.511719 218.496094 129.417969 218.496094 129.300781 Z M 218.496094 129.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 215.925781 130.054688 C 215.925781 129.9375 215.832031 129.84375 215.714844 129.84375 C 215.597656 129.84375 215.503906 129.9375 215.503906 130.054688 C 215.503906 130.171875 215.597656 130.265625 215.714844 130.265625 C 215.832031 130.265625 215.925781 130.171875 215.925781 130.054688 Z M 215.925781 130.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 213.824219 129.074219 C 213.824219 128.957031 213.730469 128.863281 213.613281 128.863281 C 213.496094 128.863281 213.402344 128.957031 213.402344 129.074219 C 213.402344 129.191406 213.496094 129.285156 213.613281 129.285156 C 213.730469 129.285156 213.824219 129.191406 213.824219 129.074219 Z M 213.824219 129.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 210.152344 131.253906 C 210.152344 131.136719 210.058594 131.042969 209.941406 131.042969 C 209.824219 131.042969 209.730469 131.136719 209.730469 131.253906 C 209.730469 131.371094 209.824219 131.464844 209.941406 131.464844 C 210.058594 131.464844 210.152344 131.371094 210.152344 131.253906 Z M 210.152344 131.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.617188 130.085938 C 208.617188 129.96875 208.523438 129.875 208.40625 129.875 C 208.289062 129.875 208.195312 129.96875 208.195312 130.085938 C 208.195312 130.203125 208.289062 130.296875 208.40625 130.296875 C 208.523438 130.296875 208.617188 130.203125 208.617188 130.085938 Z M 208.617188 130.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.5 128.285156 C 207.5 128.167969 207.40625 128.074219 207.289062 128.074219 C 207.171875 128.074219 207.078125 128.167969 207.078125 128.285156 C 207.078125 128.402344 207.171875 128.496094 207.289062 128.496094 C 207.40625 128.496094 207.5 128.402344 207.5 128.285156 Z M 207.5 128.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.832031 129.582031 C 205.832031 129.464844 205.738281 129.371094 205.621094 129.371094 C 205.503906 129.371094 205.410156 129.464844 205.410156 129.582031 C 205.410156 129.699219 205.503906 129.792969 205.621094 129.792969 C 205.738281 129.792969 205.832031 129.699219 205.832031 129.582031 Z M 205.832031 129.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.542969 129.242188 C 209.542969 129.125 209.449219 129.03125 209.332031 129.03125 C 209.214844 129.03125 209.121094 129.125 209.121094 129.242188 C 209.121094 129.359375 209.214844 129.453125 209.332031 129.453125 C 209.449219 129.453125 209.542969 129.359375 209.542969 129.242188 Z M 209.542969 129.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.089844 126.808594 C 208.089844 126.691406 207.996094 126.597656 207.878906 126.597656 C 207.761719 126.597656 207.667969 126.691406 207.667969 126.808594 C 207.667969 126.925781 207.761719 127.019531 207.878906 127.019531 C 207.996094 127.019531 208.089844 126.925781 208.089844 126.808594 Z M 208.089844 126.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.246094 126.722656 C 209.246094 126.605469 209.152344 126.511719 209.035156 126.511719 C 208.917969 126.511719 208.824219 126.605469 208.824219 126.722656 C 208.824219 126.839844 208.917969 126.933594 209.035156 126.933594 C 209.152344 126.933594 209.246094 126.839844 209.246094 126.722656 Z M 209.246094 126.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.667969 127.703125 C 204.667969 127.585938 204.574219 127.492188 204.457031 127.492188 C 204.339844 127.492188 204.246094 127.585938 204.246094 127.703125 C 204.246094 127.820312 204.339844 127.914062 204.457031 127.914062 C 204.574219 127.914062 204.667969 127.820312 204.667969 127.703125 Z M 204.667969 127.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.296875 129.847656 C 203.296875 129.730469 203.203125 129.636719 203.085938 129.636719 C 202.96875 129.636719 202.875 129.730469 202.875 129.847656 C 202.875 129.964844 202.96875 130.058594 203.085938 130.058594 C 203.203125 130.058594 203.296875 129.964844 203.296875 129.847656 Z M 203.296875 129.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.078125 132.546875 C 201.078125 132.429688 200.984375 132.335938 200.867188 132.335938 C 200.75 132.335938 200.65625 132.429688 200.65625 132.546875 C 200.65625 132.664062 200.75 132.757812 200.867188 132.757812 C 200.984375 132.757812 201.078125 132.664062 201.078125 132.546875 Z M 201.078125 132.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.578125 132.546875 C 199.578125 132.429688 199.484375 132.335938 199.367188 132.335938 C 199.25 132.335938 199.15625 132.429688 199.15625 132.546875 C 199.15625 132.664062 199.25 132.757812 199.367188 132.757812 C 199.484375 132.757812 199.578125 132.664062 199.578125 132.546875 Z M 199.578125 132.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.480469 132.503906 C 202.480469 132.386719 202.386719 132.292969 202.269531 132.292969 C 202.152344 132.292969 202.058594 132.386719 202.058594 132.503906 C 202.058594 132.621094 202.152344 132.714844 202.269531 132.714844 C 202.386719 132.714844 202.480469 132.621094 202.480469 132.503906 Z M 202.480469 132.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.070312 133.320312 C 204.070312 133.203125 203.976562 133.109375 203.859375 133.109375 C 203.742188 133.109375 203.648438 133.203125 203.648438 133.320312 C 203.648438 133.4375 203.742188 133.53125 203.859375 133.53125 C 203.976562 133.53125 204.070312 133.4375 204.070312 133.320312 Z M 204.070312 133.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.710938 129.90625 C 206.710938 129.789062 206.617188 129.695312 206.5 129.695312 C 206.382812 129.695312 206.289062 129.789062 206.289062 129.90625 C 206.289062 130.023438 206.382812 130.117188 206.5 130.117188 C 206.617188 130.117188 206.710938 130.023438 206.710938 129.90625 Z M 206.710938 129.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.246094 132.507812 C 205.246094 132.390625 205.152344 132.296875 205.035156 132.296875 C 204.917969 132.296875 204.824219 132.390625 204.824219 132.507812 C 204.824219 132.625 204.917969 132.71875 205.035156 132.71875 C 205.152344 132.71875 205.246094 132.625 205.246094 132.507812 Z M 205.246094 132.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.636719 128.625 C 203.636719 128.507812 203.542969 128.414062 203.425781 128.414062 C 203.308594 128.414062 203.214844 128.507812 203.214844 128.625 C 203.214844 128.742188 203.308594 128.835938 203.425781 128.835938 C 203.542969 128.835938 203.636719 128.742188 203.636719 128.625 Z M 203.636719 128.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.535156 131.039062 C 204.535156 130.921875 204.441406 130.828125 204.324219 130.828125 C 204.207031 130.828125 204.113281 130.921875 204.113281 131.039062 C 204.113281 131.15625 204.207031 131.25 204.324219 131.25 C 204.441406 131.25 204.535156 131.15625 204.535156 131.039062 Z M 204.535156 131.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.160156 130.78125 C 203.160156 130.664062 203.066406 130.570312 202.949219 130.570312 C 202.832031 130.570312 202.738281 130.664062 202.738281 130.78125 C 202.738281 130.898438 202.832031 130.992188 202.949219 130.992188 C 203.066406 130.992188 203.160156 130.898438 203.160156 130.78125 Z M 203.160156 130.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.191406 131.039062 C 208.191406 130.921875 208.097656 130.828125 207.980469 130.828125 C 207.863281 130.828125 207.769531 130.921875 207.769531 131.039062 C 207.769531 131.15625 207.863281 131.25 207.980469 131.25 C 208.097656 131.25 208.191406 131.15625 208.191406 131.039062 Z M 208.191406 131.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.433594 128.097656 C 208.433594 127.980469 208.339844 127.886719 208.222656 127.886719 C 208.105469 127.886719 208.011719 127.980469 208.011719 128.097656 C 208.011719 128.214844 208.105469 128.308594 208.222656 128.308594 C 208.339844 128.308594 208.433594 128.214844 208.433594 128.097656 Z M 208.433594 128.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 204.855469 126.597656 C 204.855469 126.480469 204.761719 126.386719 204.644531 126.386719 C 204.527344 126.386719 204.433594 126.480469 204.433594 126.597656 C 204.433594 126.714844 204.527344 126.808594 204.644531 126.808594 C 204.761719 126.808594 204.855469 126.714844 204.855469 126.597656 Z M 204.855469 126.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.613281 125.523438 C 209.613281 125.40625 209.519531 125.3125 209.402344 125.3125 C 209.285156 125.3125 209.191406 125.40625 209.191406 125.523438 C 209.191406 125.640625 209.285156 125.734375 209.402344 125.734375 C 209.519531 125.734375 209.613281 125.640625 209.613281 125.523438 Z M 209.613281 125.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 211.378906 124.839844 C 211.378906 124.722656 211.285156 124.628906 211.167969 124.628906 C 211.050781 124.628906 210.957031 124.722656 210.957031 124.839844 C 210.957031 124.957031 211.050781 125.050781 211.167969 125.050781 C 211.285156 125.050781 211.378906 124.957031 211.378906 124.839844 Z M 211.378906 124.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.582031 121.574219 C 209.582031 121.457031 209.488281 121.363281 209.371094 121.363281 C 209.253906 121.363281 209.160156 121.457031 209.160156 121.574219 C 209.160156 121.691406 209.253906 121.785156 209.371094 121.785156 C 209.488281 121.785156 209.582031 121.691406 209.582031 121.574219 Z M 209.582031 121.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.902344 118.722656 C 208.902344 118.605469 208.808594 118.511719 208.691406 118.511719 C 208.574219 118.511719 208.480469 118.605469 208.480469 118.722656 C 208.480469 118.839844 208.574219 118.933594 208.691406 118.933594 C 208.808594 118.933594 208.902344 118.839844 208.902344 118.722656 Z M 208.902344 118.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.871094 119.441406 C 205.871094 119.324219 205.777344 119.230469 205.660156 119.230469 C 205.542969 119.230469 205.449219 119.324219 205.449219 119.441406 C 205.449219 119.558594 205.542969 119.652344 205.660156 119.652344 C 205.777344 119.652344 205.871094 119.558594 205.871094 119.441406 Z M 205.871094 119.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.519531 118.417969 C 206.519531 118.300781 206.425781 118.207031 206.308594 118.207031 C 206.191406 118.207031 206.097656 118.300781 206.097656 118.417969 C 206.097656 118.535156 206.191406 118.628906 206.308594 118.628906 C 206.425781 118.628906 206.519531 118.535156 206.519531 118.417969 Z M 206.519531 118.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.273438 116.179688 C 201.273438 116.0625 201.179688 115.96875 201.0625 115.96875 C 200.945312 115.96875 200.851562 116.0625 200.851562 116.179688 C 200.851562 116.296875 200.945312 116.390625 201.0625 116.390625 C 201.179688 116.390625 201.273438 116.296875 201.273438 116.179688 Z M 201.273438 116.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.707031 113.496094 C 198.707031 113.378906 198.613281 113.285156 198.496094 113.285156 C 198.378906 113.285156 198.285156 113.378906 198.285156 113.496094 C 198.285156 113.613281 198.378906 113.707031 198.496094 113.707031 C 198.613281 113.707031 198.707031 113.613281 198.707031 113.496094 Z M 198.707031 113.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.941406 113.453125 C 199.941406 113.335938 199.847656 113.242188 199.730469 113.242188 C 199.613281 113.242188 199.519531 113.335938 199.519531 113.453125 C 199.519531 113.570312 199.613281 113.664062 199.730469 113.664062 C 199.847656 113.664062 199.941406 113.570312 199.941406 113.453125 Z M 199.941406 113.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.847656 111.515625 C 197.847656 111.398438 197.753906 111.304688 197.636719 111.304688 C 197.519531 111.304688 197.425781 111.398438 197.425781 111.515625 C 197.425781 111.632812 197.519531 111.726562 197.636719 111.726562 C 197.753906 111.726562 197.847656 111.632812 197.847656 111.515625 Z M 197.847656 111.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.308594 109.679688 C 197.308594 109.5625 197.214844 109.46875 197.097656 109.46875 C 196.980469 109.46875 196.886719 109.5625 196.886719 109.679688 C 196.886719 109.796875 196.980469 109.890625 197.097656 109.890625 C 197.214844 109.890625 197.308594 109.796875 197.308594 109.679688 Z M 197.308594 109.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.953125 107.964844 C 198.953125 107.847656 198.859375 107.753906 198.742188 107.753906 C 198.625 107.753906 198.53125 107.847656 198.53125 107.964844 C 198.53125 108.082031 198.625 108.175781 198.742188 108.175781 C 198.859375 108.175781 198.953125 108.082031 198.953125 107.964844 Z M 198.953125 107.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.1875 107.46875 C 199.1875 107.351562 199.09375 107.257812 198.976562 107.257812 C 198.859375 107.257812 198.765625 107.351562 198.765625 107.46875 C 198.765625 107.585938 198.859375 107.679688 198.976562 107.679688 C 199.09375 107.679688 199.1875 107.585938 199.1875 107.46875 Z M 199.1875 107.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.703125 107.816406 C 197.703125 107.699219 197.609375 107.605469 197.492188 107.605469 C 197.375 107.605469 197.28125 107.699219 197.28125 107.816406 C 197.28125 107.933594 197.375 108.027344 197.492188 108.027344 C 197.609375 108.027344 197.703125 107.933594 197.703125 107.816406 Z M 197.703125 107.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.195312 102.933594 C 200.195312 102.816406 200.101562 102.722656 199.984375 102.722656 C 199.867188 102.722656 199.773438 102.816406 199.773438 102.933594 C 199.773438 103.050781 199.867188 103.144531 199.984375 103.144531 C 200.101562 103.144531 200.195312 103.050781 200.195312 102.933594 Z M 200.195312 102.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.59375 102.59375 C 196.59375 102.476562 196.5 102.382812 196.382812 102.382812 C 196.265625 102.382812 196.171875 102.476562 196.171875 102.59375 C 196.171875 102.710938 196.265625 102.804688 196.382812 102.804688 C 196.5 102.804688 196.59375 102.710938 196.59375 102.59375 Z M 196.59375 102.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.929688 105.332031 C 196.929688 105.214844 196.835938 105.121094 196.71875 105.121094 C 196.601562 105.121094 196.507812 105.214844 196.507812 105.332031 C 196.507812 105.449219 196.601562 105.542969 196.71875 105.542969 C 196.835938 105.542969 196.929688 105.449219 196.929688 105.332031 Z M 196.929688 105.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.273438 101.792969 C 196.273438 101.675781 196.179688 101.582031 196.0625 101.582031 C 195.945312 101.582031 195.851562 101.675781 195.851562 101.792969 C 195.851562 101.910156 195.945312 102.003906 196.0625 102.003906 C 196.179688 102.003906 196.273438 101.910156 196.273438 101.792969 Z M 196.273438 101.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.464844 100.386719 C 195.464844 100.269531 195.371094 100.175781 195.253906 100.175781 C 195.136719 100.175781 195.042969 100.269531 195.042969 100.386719 C 195.042969 100.503906 195.136719 100.597656 195.253906 100.597656 C 195.371094 100.597656 195.464844 100.503906 195.464844 100.386719 Z M 195.464844 100.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.847656 101.328125 C 194.847656 101.210938 194.753906 101.117188 194.636719 101.117188 C 194.519531 101.117188 194.425781 101.210938 194.425781 101.328125 C 194.425781 101.445312 194.519531 101.539062 194.636719 101.539062 C 194.753906 101.539062 194.847656 101.445312 194.847656 101.328125 Z M 194.847656 101.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.914062 100.246094 C 197.914062 100.128906 197.820312 100.035156 197.703125 100.035156 C 197.585938 100.035156 197.492188 100.128906 197.492188 100.246094 C 197.492188 100.363281 197.585938 100.457031 197.703125 100.457031 C 197.820312 100.457031 197.914062 100.363281 197.914062 100.246094 Z M 197.914062 100.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.453125 100.476562 C 198.453125 100.359375 198.359375 100.265625 198.242188 100.265625 C 198.125 100.265625 198.03125 100.359375 198.03125 100.476562 C 198.03125 100.59375 198.125 100.6875 198.242188 100.6875 C 198.359375 100.6875 198.453125 100.59375 198.453125 100.476562 Z M 198.453125 100.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.242188 98.121094 C 198.242188 98.003906 198.148438 97.910156 198.03125 97.910156 C 197.914062 97.910156 197.820312 98.003906 197.820312 98.121094 C 197.820312 98.238281 197.914062 98.332031 198.03125 98.332031 C 198.148438 98.332031 198.242188 98.238281 198.242188 98.121094 Z M 198.242188 98.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.976562 97.90625 C 197.976562 97.789062 197.882812 97.695312 197.765625 97.695312 C 197.648438 97.695312 197.554688 97.789062 197.554688 97.90625 C 197.554688 98.023438 197.648438 98.117188 197.765625 98.117188 C 197.882812 98.117188 197.976562 98.023438 197.976562 97.90625 Z M 197.976562 97.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.242188 99.351562 C 196.242188 99.234375 196.148438 99.140625 196.03125 99.140625 C 195.914062 99.140625 195.820312 99.234375 195.820312 99.351562 C 195.820312 99.46875 195.914062 99.5625 196.03125 99.5625 C 196.148438 99.5625 196.242188 99.46875 196.242188 99.351562 Z M 196.242188 99.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.25 96.988281 C 201.25 96.871094 201.15625 96.777344 201.039062 96.777344 C 200.921875 96.777344 200.828125 96.871094 200.828125 96.988281 C 200.828125 97.105469 200.921875 97.199219 201.039062 97.199219 C 201.15625 97.199219 201.25 97.105469 201.25 96.988281 Z M 201.25 96.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.308594 95.757812 C 195.308594 95.640625 195.214844 95.546875 195.097656 95.546875 C 194.980469 95.546875 194.886719 95.640625 194.886719 95.757812 C 194.886719 95.875 194.980469 95.96875 195.097656 95.96875 C 195.214844 95.96875 195.308594 95.875 195.308594 95.757812 Z M 195.308594 95.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.925781 95.636719 C 195.925781 95.519531 195.832031 95.425781 195.714844 95.425781 C 195.597656 95.425781 195.503906 95.519531 195.503906 95.636719 C 195.503906 95.753906 195.597656 95.847656 195.714844 95.847656 C 195.832031 95.847656 195.925781 95.753906 195.925781 95.636719 Z M 195.925781 95.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.730469 92.683594 C 198.730469 92.566406 198.636719 92.472656 198.519531 92.472656 C 198.402344 92.472656 198.308594 92.566406 198.308594 92.683594 C 198.308594 92.800781 198.402344 92.894531 198.519531 92.894531 C 198.636719 92.894531 198.730469 92.800781 198.730469 92.683594 Z M 198.730469 92.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.476562 92.589844 C 196.476562 92.472656 196.382812 92.378906 196.265625 92.378906 C 196.148438 92.378906 196.054688 92.472656 196.054688 92.589844 C 196.054688 92.707031 196.148438 92.800781 196.265625 92.800781 C 196.382812 92.800781 196.476562 92.707031 196.476562 92.589844 Z M 196.476562 92.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.167969 93.074219 C 194.167969 92.957031 194.074219 92.863281 193.957031 92.863281 C 193.839844 92.863281 193.746094 92.957031 193.746094 93.074219 C 193.746094 93.191406 193.839844 93.285156 193.957031 93.285156 C 194.074219 93.285156 194.167969 93.191406 194.167969 93.074219 Z M 194.167969 93.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.46875 92.402344 C 200.46875 92.285156 200.375 92.191406 200.257812 92.191406 C 200.140625 92.191406 200.046875 92.285156 200.046875 92.402344 C 200.046875 92.519531 200.140625 92.613281 200.257812 92.613281 C 200.375 92.613281 200.46875 92.519531 200.46875 92.402344 Z M 200.46875 92.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.53125 86.339844 C 197.53125 86.222656 197.4375 86.128906 197.320312 86.128906 C 197.203125 86.128906 197.109375 86.222656 197.109375 86.339844 C 197.109375 86.457031 197.203125 86.550781 197.320312 86.550781 C 197.4375 86.550781 197.53125 86.457031 197.53125 86.339844 Z M 197.53125 86.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.890625 86.929688 C 199.890625 86.8125 199.796875 86.71875 199.679688 86.71875 C 199.5625 86.71875 199.46875 86.8125 199.46875 86.929688 C 199.46875 87.046875 199.5625 87.140625 199.679688 87.140625 C 199.796875 87.140625 199.890625 87.046875 199.890625 86.929688 Z M 199.890625 86.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.539062 87.527344 C 201.539062 87.410156 201.445312 87.316406 201.328125 87.316406 C 201.210938 87.316406 201.117188 87.410156 201.117188 87.527344 C 201.117188 87.644531 201.210938 87.738281 201.328125 87.738281 C 201.445312 87.738281 201.539062 87.644531 201.539062 87.527344 Z M 201.539062 87.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.890625 89.914062 C 201.890625 89.796875 201.796875 89.703125 201.679688 89.703125 C 201.5625 89.703125 201.46875 89.796875 201.46875 89.914062 C 201.46875 90.03125 201.5625 90.125 201.679688 90.125 C 201.796875 90.125 201.890625 90.03125 201.890625 89.914062 Z M 201.890625 89.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.824219 89.117188 C 203.824219 89 203.730469 88.90625 203.613281 88.90625 C 203.496094 88.90625 203.402344 89 203.402344 89.117188 C 203.402344 89.234375 203.496094 89.328125 203.613281 89.328125 C 203.730469 89.328125 203.824219 89.234375 203.824219 89.117188 Z M 203.824219 89.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.613281 88.300781 C 206.613281 88.183594 206.519531 88.089844 206.402344 88.089844 C 206.285156 88.089844 206.191406 88.183594 206.191406 88.300781 C 206.191406 88.417969 206.285156 88.511719 206.402344 88.511719 C 206.519531 88.511719 206.613281 88.417969 206.613281 88.300781 Z M 206.613281 88.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.71875 89.175781 C 205.71875 89.058594 205.625 88.964844 205.507812 88.964844 C 205.390625 88.964844 205.296875 89.058594 205.296875 89.175781 C 205.296875 89.292969 205.390625 89.386719 205.507812 89.386719 C 205.625 89.386719 205.71875 89.292969 205.71875 89.175781 Z M 205.71875 89.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 208.300781 89.335938 C 208.300781 89.21875 208.207031 89.125 208.089844 89.125 C 207.972656 89.125 207.878906 89.21875 207.878906 89.335938 C 207.878906 89.453125 207.972656 89.546875 208.089844 89.546875 C 208.207031 89.546875 208.300781 89.453125 208.300781 89.335938 Z M 208.300781 89.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.027344 87.046875 C 205.027344 86.929688 204.933594 86.835938 204.816406 86.835938 C 204.699219 86.835938 204.605469 86.929688 204.605469 87.046875 C 204.605469 87.164062 204.699219 87.257812 204.816406 87.257812 C 204.933594 87.257812 205.027344 87.164062 205.027344 87.046875 Z M 205.027344 87.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.480469 82.527344 C 205.480469 82.410156 205.386719 82.316406 205.269531 82.316406 C 205.152344 82.316406 205.058594 82.410156 205.058594 82.527344 C 205.058594 82.644531 205.152344 82.738281 205.269531 82.738281 C 205.386719 82.738281 205.480469 82.644531 205.480469 82.527344 Z M 205.480469 82.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 205.808594 83.527344 C 205.808594 83.410156 205.714844 83.316406 205.597656 83.316406 C 205.480469 83.316406 205.386719 83.410156 205.386719 83.527344 C 205.386719 83.644531 205.480469 83.738281 205.597656 83.738281 C 205.714844 83.738281 205.808594 83.644531 205.808594 83.527344 Z M 205.808594 83.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 206.105469 84.0625 C 206.105469 83.945312 206.011719 83.851562 205.894531 83.851562 C 205.777344 83.851562 205.683594 83.945312 205.683594 84.0625 C 205.683594 84.179688 205.777344 84.273438 205.894531 84.273438 C 206.011719 84.273438 206.105469 84.179688 206.105469 84.0625 Z M 206.105469 84.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.230469 84.761719 C 203.230469 84.644531 203.136719 84.550781 203.019531 84.550781 C 202.902344 84.550781 202.808594 84.644531 202.808594 84.761719 C 202.808594 84.878906 202.902344 84.972656 203.019531 84.972656 C 203.136719 84.972656 203.230469 84.878906 203.230469 84.761719 Z M 203.230469 84.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 209.359375 84.894531 C 209.359375 84.777344 209.265625 84.683594 209.148438 84.683594 C 209.03125 84.683594 208.9375 84.777344 208.9375 84.894531 C 208.9375 85.011719 209.03125 85.105469 209.148438 85.105469 C 209.265625 85.105469 209.359375 85.011719 209.359375 84.894531 Z M 209.359375 84.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.265625 85.023438 C 207.265625 84.90625 207.171875 84.8125 207.054688 84.8125 C 206.9375 84.8125 206.84375 84.90625 206.84375 85.023438 C 206.84375 85.140625 206.9375 85.234375 207.054688 85.234375 C 207.171875 85.234375 207.265625 85.140625 207.265625 85.023438 Z M 207.265625 85.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 207.679688 82.160156 C 207.679688 82.042969 207.585938 81.949219 207.46875 81.949219 C 207.351562 81.949219 207.257812 82.042969 207.257812 82.160156 C 207.257812 82.277344 207.351562 82.371094 207.46875 82.371094 C 207.585938 82.371094 207.679688 82.277344 207.679688 82.160156 Z M 207.679688 82.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.84375 81.328125 C 203.84375 81.210938 203.75 81.117188 203.632812 81.117188 C 203.515625 81.117188 203.421875 81.210938 203.421875 81.328125 C 203.421875 81.445312 203.515625 81.539062 203.632812 81.539062 C 203.75 81.539062 203.84375 81.445312 203.84375 81.328125 Z M 203.84375 81.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 200.082031 80.6875 C 200.082031 80.570312 199.988281 80.476562 199.871094 80.476562 C 199.753906 80.476562 199.660156 80.570312 199.660156 80.6875 C 199.660156 80.804688 199.753906 80.898438 199.871094 80.898438 C 199.988281 80.898438 200.082031 80.804688 200.082031 80.6875 Z M 200.082031 80.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.070312 81.167969 C 202.070312 81.050781 201.976562 80.957031 201.859375 80.957031 C 201.742188 80.957031 201.648438 81.050781 201.648438 81.167969 C 201.648438 81.285156 201.742188 81.378906 201.859375 81.378906 C 201.976562 81.378906 202.070312 81.285156 202.070312 81.167969 Z M 202.070312 81.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.527344 78.667969 C 202.527344 78.550781 202.433594 78.457031 202.316406 78.457031 C 202.199219 78.457031 202.105469 78.550781 202.105469 78.667969 C 202.105469 78.785156 202.199219 78.878906 202.316406 78.878906 C 202.433594 78.878906 202.527344 78.785156 202.527344 78.667969 Z M 202.527344 78.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.417969 77.066406 C 201.417969 76.949219 201.324219 76.855469 201.207031 76.855469 C 201.089844 76.855469 200.996094 76.949219 200.996094 77.066406 C 200.996094 77.183594 201.089844 77.277344 201.207031 77.277344 C 201.324219 77.277344 201.417969 77.183594 201.417969 77.066406 Z M 201.417969 77.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.691406 76.207031 C 201.691406 76.089844 201.597656 75.996094 201.480469 75.996094 C 201.363281 75.996094 201.269531 76.089844 201.269531 76.207031 C 201.269531 76.324219 201.363281 76.417969 201.480469 76.417969 C 201.597656 76.417969 201.691406 76.324219 201.691406 76.207031 Z M 201.691406 76.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.390625 77 C 199.390625 76.882812 199.296875 76.789062 199.179688 76.789062 C 199.0625 76.789062 198.96875 76.882812 198.96875 77 C 198.96875 77.117188 199.0625 77.210938 199.179688 77.210938 C 199.296875 77.210938 199.390625 77.117188 199.390625 77 Z M 199.390625 77 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.570312 77.0625 C 196.570312 76.945312 196.476562 76.851562 196.359375 76.851562 C 196.242188 76.851562 196.148438 76.945312 196.148438 77.0625 C 196.148438 77.179688 196.242188 77.273438 196.359375 77.273438 C 196.476562 77.273438 196.570312 77.179688 196.570312 77.0625 Z M 196.570312 77.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.039062 76.078125 C 194.039062 75.960938 193.945312 75.867188 193.828125 75.867188 C 193.710938 75.867188 193.617188 75.960938 193.617188 76.078125 C 193.617188 76.195312 193.710938 76.289062 193.828125 76.289062 C 193.945312 76.289062 194.039062 76.195312 194.039062 76.078125 Z M 194.039062 76.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.789062 75.941406 C 190.789062 75.824219 190.695312 75.730469 190.578125 75.730469 C 190.460938 75.730469 190.367188 75.824219 190.367188 75.941406 C 190.367188 76.058594 190.460938 76.152344 190.578125 76.152344 C 190.695312 76.152344 190.789062 76.058594 190.789062 75.941406 Z M 190.789062 75.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.496094 76.210938 C 190.496094 76.09375 190.402344 76 190.285156 76 C 190.167969 76 190.074219 76.09375 190.074219 76.210938 C 190.074219 76.328125 190.167969 76.421875 190.285156 76.421875 C 190.402344 76.421875 190.496094 76.328125 190.496094 76.210938 Z M 190.496094 76.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 189.777344 78.726562 C 189.777344 78.609375 189.683594 78.515625 189.566406 78.515625 C 189.449219 78.515625 189.355469 78.609375 189.355469 78.726562 C 189.355469 78.84375 189.449219 78.9375 189.566406 78.9375 C 189.683594 78.9375 189.777344 78.84375 189.777344 78.726562 Z M 189.777344 78.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.382812 82.285156 C 190.382812 82.167969 190.289062 82.074219 190.171875 82.074219 C 190.054688 82.074219 189.960938 82.167969 189.960938 82.285156 C 189.960938 82.402344 190.054688 82.496094 190.171875 82.496094 C 190.289062 82.496094 190.382812 82.402344 190.382812 82.285156 Z M 190.382812 82.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 194.203125 81.386719 C 194.203125 81.269531 194.109375 81.175781 193.992188 81.175781 C 193.875 81.175781 193.78125 81.269531 193.78125 81.386719 C 193.78125 81.503906 193.875 81.597656 193.992188 81.597656 C 194.109375 81.597656 194.203125 81.503906 194.203125 81.386719 Z M 194.203125 81.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.417969 80.625 C 197.417969 80.507812 197.324219 80.414062 197.207031 80.414062 C 197.089844 80.414062 196.996094 80.507812 196.996094 80.625 C 196.996094 80.742188 197.089844 80.835938 197.207031 80.835938 C 197.324219 80.835938 197.417969 80.742188 197.417969 80.625 Z M 197.417969 80.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.746094 82.136719 C 198.746094 82.019531 198.652344 81.925781 198.535156 81.925781 C 198.417969 81.925781 198.324219 82.019531 198.324219 82.136719 C 198.324219 82.253906 198.417969 82.347656 198.535156 82.347656 C 198.652344 82.347656 198.746094 82.253906 198.746094 82.136719 Z M 198.746094 82.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.144531 80.324219 C 199.144531 80.207031 199.050781 80.113281 198.933594 80.113281 C 198.816406 80.113281 198.722656 80.207031 198.722656 80.324219 C 198.722656 80.441406 198.816406 80.535156 198.933594 80.535156 C 199.050781 80.535156 199.144531 80.441406 199.144531 80.324219 Z M 199.144531 80.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 202.164062 79.929688 C 202.164062 79.8125 202.070312 79.71875 201.953125 79.71875 C 201.835938 79.71875 201.742188 79.8125 201.742188 79.929688 C 201.742188 80.046875 201.835938 80.140625 201.953125 80.140625 C 202.070312 80.140625 202.164062 80.046875 202.164062 79.929688 Z M 202.164062 79.929688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.519531 81.40625 C 203.519531 81.289062 203.425781 81.195312 203.308594 81.195312 C 203.191406 81.195312 203.097656 81.289062 203.097656 81.40625 C 203.097656 81.523438 203.191406 81.617188 203.308594 81.617188 C 203.425781 81.617188 203.519531 81.523438 203.519531 81.40625 Z M 203.519531 81.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 201.535156 80.59375 C 201.535156 80.476562 201.441406 80.382812 201.324219 80.382812 C 201.207031 80.382812 201.113281 80.476562 201.113281 80.59375 C 201.113281 80.710938 201.207031 80.804688 201.324219 80.804688 C 201.441406 80.804688 201.535156 80.710938 201.535156 80.59375 Z M 201.535156 80.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 203.003906 81.375 C 203.003906 81.257812 202.910156 81.164062 202.792969 81.164062 C 202.675781 81.164062 202.582031 81.257812 202.582031 81.375 C 202.582031 81.492188 202.675781 81.585938 202.792969 81.585938 C 202.910156 81.585938 203.003906 81.492188 203.003906 81.375 Z M 203.003906 81.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.976562 83.617188 C 198.976562 83.5 198.882812 83.40625 198.765625 83.40625 C 198.648438 83.40625 198.554688 83.5 198.554688 83.617188 C 198.554688 83.734375 198.648438 83.828125 198.765625 83.828125 C 198.882812 83.828125 198.976562 83.734375 198.976562 83.617188 Z M 198.976562 83.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.363281 81.316406 C 197.363281 81.199219 197.269531 81.105469 197.152344 81.105469 C 197.035156 81.105469 196.941406 81.199219 196.941406 81.316406 C 196.941406 81.433594 197.035156 81.527344 197.152344 81.527344 C 197.269531 81.527344 197.363281 81.433594 197.363281 81.316406 Z M 197.363281 81.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 197.875 84.265625 C 197.875 84.148438 197.78125 84.054688 197.664062 84.054688 C 197.546875 84.054688 197.453125 84.148438 197.453125 84.265625 C 197.453125 84.382812 197.546875 84.476562 197.664062 84.476562 C 197.78125 84.476562 197.875 84.382812 197.875 84.265625 Z M 197.875 84.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.792969 86.40625 C 198.792969 86.289062 198.699219 86.195312 198.582031 86.195312 C 198.464844 86.195312 198.371094 86.289062 198.371094 86.40625 C 198.371094 86.523438 198.464844 86.617188 198.582031 86.617188 C 198.699219 86.617188 198.792969 86.523438 198.792969 86.40625 Z M 198.792969 86.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 199.160156 82.445312 C 199.160156 82.328125 199.066406 82.234375 198.949219 82.234375 C 198.832031 82.234375 198.738281 82.328125 198.738281 82.445312 C 198.738281 82.5625 198.832031 82.65625 198.949219 82.65625 C 199.066406 82.65625 199.160156 82.5625 199.160156 82.445312 Z M 199.160156 82.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.054688 82.039062 C 198.054688 81.921875 197.960938 81.828125 197.84375 81.828125 C 197.726562 81.828125 197.632812 81.921875 197.632812 82.039062 C 197.632812 82.15625 197.726562 82.25 197.84375 82.25 C 197.960938 82.25 198.054688 82.15625 198.054688 82.039062 Z M 198.054688 82.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 196.496094 85.847656 C 196.496094 85.730469 196.402344 85.636719 196.285156 85.636719 C 196.167969 85.636719 196.074219 85.730469 196.074219 85.847656 C 196.074219 85.964844 196.167969 86.058594 196.285156 86.058594 C 196.402344 86.058594 196.496094 85.964844 196.496094 85.847656 Z M 196.496094 85.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 198.585938 83.898438 C 198.585938 83.78125 198.492188 83.6875 198.375 83.6875 C 198.257812 83.6875 198.164062 83.78125 198.164062 83.898438 C 198.164062 84.015625 198.257812 84.109375 198.375 84.109375 C 198.492188 84.109375 198.585938 84.015625 198.585938 83.898438 Z M 198.585938 83.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 195.636719 82.472656 C 195.636719 82.355469 195.542969 82.261719 195.425781 82.261719 C 195.308594 82.261719 195.214844 82.355469 195.214844 82.472656 C 195.214844 82.589844 195.308594 82.683594 195.425781 82.683594 C 195.542969 82.683594 195.636719 82.589844 195.636719 82.472656 Z M 195.636719 82.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 192.476562 81.921875 C 192.476562 81.804688 192.382812 81.710938 192.265625 81.710938 C 192.148438 81.710938 192.054688 81.804688 192.054688 81.921875 C 192.054688 82.039062 192.148438 82.132812 192.265625 82.132812 C 192.382812 82.132812 192.476562 82.039062 192.476562 81.921875 Z M 192.476562 81.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 190.957031 81.066406 C 190.957031 80.949219 190.863281 80.855469 190.746094 80.855469 C 190.628906 80.855469 190.535156 80.949219 190.535156 81.066406 C 190.535156 81.183594 190.628906 81.277344 190.746094 81.277344 C 190.863281 81.277344 190.957031 81.183594 190.957031 81.066406 Z M 190.957031 81.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.015625 78 C 191.015625 77.882812 190.921875 77.789062 190.804688 77.789062 C 190.6875 77.789062 190.59375 77.882812 190.59375 78 C 190.59375 78.117188 190.6875 78.210938 190.804688 78.210938 C 190.921875 78.210938 191.015625 78.117188 191.015625 78 Z M 191.015625 78 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 191.210938 81.0625 C 191.210938 80.945312 191.117188 80.851562 191 80.851562 C 190.882812 80.851562 190.789062 80.945312 190.789062 81.0625 C 190.789062 81.179688 190.882812 81.273438 191 81.273438 C 191.117188 81.273438 191.210938 81.179688 191.210938 81.0625 Z M 191.210938 81.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 187.394531 80.15625 C 187.394531 80.039062 187.300781 79.945312 187.183594 79.945312 C 187.066406 79.945312 186.972656 80.039062 186.972656 80.15625 C 186.972656 80.273438 187.066406 80.367188 187.183594 80.367188 C 187.300781 80.367188 187.394531 80.273438 187.394531 80.15625 Z M 187.394531 80.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 188.234375 83.597656 C 188.234375 83.480469 188.140625 83.386719 188.023438 83.386719 C 187.90625 83.386719 187.8125 83.480469 187.8125 83.597656 C 187.8125 83.714844 187.90625 83.808594 188.023438 83.808594 C 188.140625 83.808594 188.234375 83.714844 188.234375 83.597656 Z M 188.234375 83.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 186.019531 82.71875 C 186.019531 82.601562 185.925781 82.507812 185.808594 82.507812 C 185.691406 82.507812 185.597656 82.601562 185.597656 82.71875 C 185.597656 82.835938 185.691406 82.929688 185.808594 82.929688 C 185.925781 82.929688 186.019531 82.835938 186.019531 82.71875 Z M 186.019531 82.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 185.097656 83.917969 C 185.097656 83.800781 185.003906 83.707031 184.886719 83.707031 C 184.769531 83.707031 184.675781 83.800781 184.675781 83.917969 C 184.675781 84.035156 184.769531 84.128906 184.886719 84.128906 C 185.003906 84.128906 185.097656 84.035156 185.097656 83.917969 Z M 185.097656 83.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.476562 82.058594 C 182.476562 81.941406 182.382812 81.847656 182.265625 81.847656 C 182.148438 81.847656 182.054688 81.941406 182.054688 82.058594 C 182.054688 82.175781 182.148438 82.269531 182.265625 82.269531 C 182.382812 82.269531 182.476562 82.175781 182.476562 82.058594 Z M 182.476562 82.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 181.410156 81.777344 C 181.410156 81.660156 181.316406 81.566406 181.199219 81.566406 C 181.082031 81.566406 180.988281 81.660156 180.988281 81.777344 C 180.988281 81.894531 181.082031 81.988281 181.199219 81.988281 C 181.316406 81.988281 181.410156 81.894531 181.410156 81.777344 Z M 181.410156 81.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 180.03125 83.058594 C 180.03125 82.941406 179.9375 82.847656 179.820312 82.847656 C 179.703125 82.847656 179.609375 82.941406 179.609375 83.058594 C 179.609375 83.175781 179.703125 83.269531 179.820312 83.269531 C 179.9375 83.269531 180.03125 83.175781 180.03125 83.058594 Z M 180.03125 83.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 178.636719 86.09375 C 178.636719 85.976562 178.542969 85.882812 178.425781 85.882812 C 178.308594 85.882812 178.214844 85.976562 178.214844 86.09375 C 178.214844 86.210938 178.308594 86.304688 178.425781 86.304688 C 178.542969 86.304688 178.636719 86.210938 178.636719 86.09375 Z M 178.636719 86.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 177.582031 82.546875 C 177.582031 82.429688 177.488281 82.335938 177.371094 82.335938 C 177.253906 82.335938 177.160156 82.429688 177.160156 82.546875 C 177.160156 82.664062 177.253906 82.757812 177.371094 82.757812 C 177.488281 82.757812 177.582031 82.664062 177.582031 82.546875 Z M 177.582031 82.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 177.484375 84.300781 C 177.484375 84.183594 177.390625 84.089844 177.273438 84.089844 C 177.15625 84.089844 177.0625 84.183594 177.0625 84.300781 C 177.0625 84.417969 177.15625 84.511719 177.273438 84.511719 C 177.390625 84.511719 177.484375 84.417969 177.484375 84.300781 Z M 177.484375 84.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 177.679688 82.417969 C 177.679688 82.300781 177.585938 82.207031 177.46875 82.207031 C 177.351562 82.207031 177.257812 82.300781 177.257812 82.417969 C 177.257812 82.535156 177.351562 82.628906 177.46875 82.628906 C 177.585938 82.628906 177.679688 82.535156 177.679688 82.417969 Z M 177.679688 82.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 176.289062 77.621094 C 176.289062 77.503906 176.195312 77.410156 176.078125 77.410156 C 175.960938 77.410156 175.867188 77.503906 175.867188 77.621094 C 175.867188 77.738281 175.960938 77.832031 176.078125 77.832031 C 176.195312 77.832031 176.289062 77.738281 176.289062 77.621094 Z M 176.289062 77.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 176.390625 80.730469 C 176.390625 80.613281 176.296875 80.519531 176.179688 80.519531 C 176.0625 80.519531 175.96875 80.613281 175.96875 80.730469 C 175.96875 80.847656 176.0625 80.941406 176.179688 80.941406 C 176.296875 80.941406 176.390625 80.847656 176.390625 80.730469 Z M 176.390625 80.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.308594 85.015625 C 175.308594 84.898438 175.214844 84.804688 175.097656 84.804688 C 174.980469 84.804688 174.886719 84.898438 174.886719 85.015625 C 174.886719 85.132812 174.980469 85.226562 175.097656 85.226562 C 175.214844 85.226562 175.308594 85.132812 175.308594 85.015625 Z M 175.308594 85.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.300781 86.269531 C 175.300781 86.152344 175.207031 86.058594 175.089844 86.058594 C 174.972656 86.058594 174.878906 86.152344 174.878906 86.269531 C 174.878906 86.386719 174.972656 86.480469 175.089844 86.480469 C 175.207031 86.480469 175.300781 86.386719 175.300781 86.269531 Z M 175.300781 86.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 169.710938 84.71875 C 169.710938 84.601562 169.617188 84.507812 169.5 84.507812 C 169.382812 84.507812 169.289062 84.601562 169.289062 84.71875 C 169.289062 84.835938 169.382812 84.929688 169.5 84.929688 C 169.617188 84.929688 169.710938 84.835938 169.710938 84.71875 Z M 169.710938 84.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 171 84.828125 C 171 84.710938 170.90625 84.617188 170.789062 84.617188 C 170.671875 84.617188 170.578125 84.710938 170.578125 84.828125 C 170.578125 84.945312 170.671875 85.039062 170.789062 85.039062 C 170.90625 85.039062 171 84.945312 171 84.828125 Z M 171 84.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 169.4375 84.34375 C 169.4375 84.226562 169.34375 84.132812 169.226562 84.132812 C 169.109375 84.132812 169.015625 84.226562 169.015625 84.34375 C 169.015625 84.460938 169.109375 84.554688 169.226562 84.554688 C 169.34375 84.554688 169.4375 84.460938 169.4375 84.34375 Z M 169.4375 84.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 169.277344 84.25 C 169.277344 84.132812 169.183594 84.039062 169.066406 84.039062 C 168.949219 84.039062 168.855469 84.132812 168.855469 84.25 C 168.855469 84.367188 168.949219 84.460938 169.066406 84.460938 C 169.183594 84.460938 169.277344 84.367188 169.277344 84.25 Z M 169.277344 84.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 170.445312 85.792969 C 170.445312 85.675781 170.351562 85.582031 170.234375 85.582031 C 170.117188 85.582031 170.023438 85.675781 170.023438 85.792969 C 170.023438 85.910156 170.117188 86.003906 170.234375 86.003906 C 170.351562 86.003906 170.445312 85.910156 170.445312 85.792969 Z M 170.445312 85.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 167.386719 84.902344 C 167.386719 84.785156 167.292969 84.691406 167.175781 84.691406 C 167.058594 84.691406 166.964844 84.785156 166.964844 84.902344 C 166.964844 85.019531 167.058594 85.113281 167.175781 85.113281 C 167.292969 85.113281 167.386719 85.019531 167.386719 84.902344 Z M 167.386719 84.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 167.023438 87.632812 C 167.023438 87.515625 166.929688 87.421875 166.8125 87.421875 C 166.695312 87.421875 166.601562 87.515625 166.601562 87.632812 C 166.601562 87.75 166.695312 87.84375 166.8125 87.84375 C 166.929688 87.84375 167.023438 87.75 167.023438 87.632812 Z M 167.023438 87.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 167.628906 85.351562 C 167.628906 85.234375 167.535156 85.140625 167.417969 85.140625 C 167.300781 85.140625 167.207031 85.234375 167.207031 85.351562 C 167.207031 85.46875 167.300781 85.5625 167.417969 85.5625 C 167.535156 85.5625 167.628906 85.46875 167.628906 85.351562 Z M 167.628906 85.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 168.601562 83.332031 C 168.601562 83.214844 168.507812 83.121094 168.390625 83.121094 C 168.273438 83.121094 168.179688 83.214844 168.179688 83.332031 C 168.179688 83.449219 168.273438 83.542969 168.390625 83.542969 C 168.507812 83.542969 168.601562 83.449219 168.601562 83.332031 Z M 168.601562 83.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 168.355469 84.402344 C 168.355469 84.285156 168.261719 84.191406 168.144531 84.191406 C 168.027344 84.191406 167.933594 84.285156 167.933594 84.402344 C 167.933594 84.519531 168.027344 84.613281 168.144531 84.613281 C 168.261719 84.613281 168.355469 84.519531 168.355469 84.402344 Z M 168.355469 84.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 171.007812 81.917969 C 171.007812 81.800781 170.914062 81.707031 170.796875 81.707031 C 170.679688 81.707031 170.585938 81.800781 170.585938 81.917969 C 170.585938 82.035156 170.679688 82.128906 170.796875 82.128906 C 170.914062 82.128906 171.007812 82.035156 171.007812 81.917969 Z M 171.007812 81.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 172.8125 80.417969 C 172.8125 80.300781 172.71875 80.207031 172.601562 80.207031 C 172.484375 80.207031 172.390625 80.300781 172.390625 80.417969 C 172.390625 80.535156 172.484375 80.628906 172.601562 80.628906 C 172.71875 80.628906 172.8125 80.535156 172.8125 80.417969 Z M 172.8125 80.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 169.957031 81.742188 C 169.957031 81.625 169.863281 81.53125 169.746094 81.53125 C 169.628906 81.53125 169.535156 81.625 169.535156 81.742188 C 169.535156 81.859375 169.628906 81.953125 169.746094 81.953125 C 169.863281 81.953125 169.957031 81.859375 169.957031 81.742188 Z M 169.957031 81.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 169.222656 79.554688 C 169.222656 79.4375 169.128906 79.34375 169.011719 79.34375 C 168.894531 79.34375 168.800781 79.4375 168.800781 79.554688 C 168.800781 79.671875 168.894531 79.765625 169.011719 79.765625 C 169.128906 79.765625 169.222656 79.671875 169.222656 79.554688 Z M 169.222656 79.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 170.019531 81.433594 C 170.019531 81.316406 169.925781 81.222656 169.808594 81.222656 C 169.691406 81.222656 169.597656 81.316406 169.597656 81.433594 C 169.597656 81.550781 169.691406 81.644531 169.808594 81.644531 C 169.925781 81.644531 170.019531 81.550781 170.019531 81.433594 Z M 170.019531 81.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 174.3125 84.320312 C 174.3125 84.203125 174.21875 84.109375 174.101562 84.109375 C 173.984375 84.109375 173.890625 84.203125 173.890625 84.320312 C 173.890625 84.4375 173.984375 84.53125 174.101562 84.53125 C 174.21875 84.53125 174.3125 84.4375 174.3125 84.320312 Z M 174.3125 84.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.003906 84.921875 C 175.003906 84.804688 174.910156 84.710938 174.792969 84.710938 C 174.675781 84.710938 174.582031 84.804688 174.582031 84.921875 C 174.582031 85.039062 174.675781 85.132812 174.792969 85.132812 C 174.910156 85.132812 175.003906 85.039062 175.003906 84.921875 Z M 175.003906 84.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 174.292969 82.671875 C 174.292969 82.554688 174.199219 82.460938 174.082031 82.460938 C 173.964844 82.460938 173.871094 82.554688 173.871094 82.671875 C 173.871094 82.789062 173.964844 82.882812 174.082031 82.882812 C 174.199219 82.882812 174.292969 82.789062 174.292969 82.671875 Z M 174.292969 82.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 171.613281 82.539062 C 171.613281 82.421875 171.519531 82.328125 171.402344 82.328125 C 171.285156 82.328125 171.191406 82.421875 171.191406 82.539062 C 171.191406 82.65625 171.285156 82.75 171.402344 82.75 C 171.519531 82.75 171.613281 82.65625 171.613281 82.539062 Z M 171.613281 82.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 171.851562 78.117188 C 171.851562 78 171.757812 77.90625 171.640625 77.90625 C 171.523438 77.90625 171.429688 78 171.429688 78.117188 C 171.429688 78.234375 171.523438 78.328125 171.640625 78.328125 C 171.757812 78.328125 171.851562 78.234375 171.851562 78.117188 Z M 171.851562 78.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 172.164062 77.199219 C 172.164062 77.082031 172.070312 76.988281 171.953125 76.988281 C 171.835938 76.988281 171.742188 77.082031 171.742188 77.199219 C 171.742188 77.316406 171.835938 77.410156 171.953125 77.410156 C 172.070312 77.410156 172.164062 77.316406 172.164062 77.199219 Z M 172.164062 77.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 169.277344 74.128906 C 169.277344 74.011719 169.183594 73.917969 169.066406 73.917969 C 168.949219 73.917969 168.855469 74.011719 168.855469 74.128906 C 168.855469 74.246094 168.949219 74.339844 169.066406 74.339844 C 169.183594 74.339844 169.277344 74.246094 169.277344 74.128906 Z M 169.277344 74.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 169.660156 73.863281 C 169.660156 73.746094 169.566406 73.652344 169.449219 73.652344 C 169.332031 73.652344 169.238281 73.746094 169.238281 73.863281 C 169.238281 73.980469 169.332031 74.074219 169.449219 74.074219 C 169.566406 74.074219 169.660156 73.980469 169.660156 73.863281 Z M 169.660156 73.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 167.890625 73.667969 C 167.890625 73.550781 167.796875 73.457031 167.679688 73.457031 C 167.5625 73.457031 167.46875 73.550781 167.46875 73.667969 C 167.46875 73.785156 167.5625 73.878906 167.679688 73.878906 C 167.796875 73.878906 167.890625 73.785156 167.890625 73.667969 Z M 167.890625 73.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 171.007812 74.277344 C 171.007812 74.160156 170.914062 74.066406 170.796875 74.066406 C 170.679688 74.066406 170.585938 74.160156 170.585938 74.277344 C 170.585938 74.394531 170.679688 74.488281 170.796875 74.488281 C 170.914062 74.488281 171.007812 74.394531 171.007812 74.277344 Z M 171.007812 74.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 172.269531 69.074219 C 172.269531 68.957031 172.175781 68.863281 172.058594 68.863281 C 171.941406 68.863281 171.847656 68.957031 171.847656 69.074219 C 171.847656 69.191406 171.941406 69.285156 172.058594 69.285156 C 172.175781 69.285156 172.269531 69.191406 172.269531 69.074219 Z M 172.269531 69.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.753906 69.9375 C 175.753906 69.820312 175.660156 69.726562 175.542969 69.726562 C 175.425781 69.726562 175.332031 69.820312 175.332031 69.9375 C 175.332031 70.054688 175.425781 70.148438 175.542969 70.148438 C 175.660156 70.148438 175.753906 70.054688 175.753906 69.9375 Z M 175.753906 69.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 177.160156 63.738281 C 177.160156 63.621094 177.066406 63.527344 176.949219 63.527344 C 176.832031 63.527344 176.738281 63.621094 176.738281 63.738281 C 176.738281 63.855469 176.832031 63.949219 176.949219 63.949219 C 177.066406 63.949219 177.160156 63.855469 177.160156 63.738281 Z M 177.160156 63.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 178.148438 64.316406 C 178.148438 64.199219 178.054688 64.105469 177.9375 64.105469 C 177.820312 64.105469 177.726562 64.199219 177.726562 64.316406 C 177.726562 64.433594 177.820312 64.527344 177.9375 64.527344 C 178.054688 64.527344 178.148438 64.433594 178.148438 64.316406 Z M 178.148438 64.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.003906 65.113281 C 182.003906 64.996094 181.910156 64.902344 181.792969 64.902344 C 181.675781 64.902344 181.582031 64.996094 181.582031 65.113281 C 181.582031 65.230469 181.675781 65.324219 181.792969 65.324219 C 181.910156 65.324219 182.003906 65.230469 182.003906 65.113281 Z M 182.003906 65.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 183.546875 65.40625 C 183.546875 65.289062 183.453125 65.195312 183.335938 65.195312 C 183.21875 65.195312 183.125 65.289062 183.125 65.40625 C 183.125 65.523438 183.21875 65.617188 183.335938 65.617188 C 183.453125 65.617188 183.546875 65.523438 183.546875 65.40625 Z M 183.546875 65.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 182.644531 61.644531 C 182.644531 61.527344 182.550781 61.433594 182.433594 61.433594 C 182.316406 61.433594 182.222656 61.527344 182.222656 61.644531 C 182.222656 61.761719 182.316406 61.855469 182.433594 61.855469 C 182.550781 61.855469 182.644531 61.761719 182.644531 61.644531 Z M 182.644531 61.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 179.417969 61.53125 C 179.417969 61.414062 179.324219 61.320312 179.207031 61.320312 C 179.089844 61.320312 178.996094 61.414062 178.996094 61.53125 C 178.996094 61.648438 179.089844 61.742188 179.207031 61.742188 C 179.324219 61.742188 179.417969 61.648438 179.417969 61.53125 Z M 179.417969 61.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 179.398438 57.570312 C 179.398438 57.453125 179.304688 57.359375 179.1875 57.359375 C 179.070312 57.359375 178.976562 57.453125 178.976562 57.570312 C 178.976562 57.6875 179.070312 57.78125 179.1875 57.78125 C 179.304688 57.78125 179.398438 57.6875 179.398438 57.570312 Z M 179.398438 57.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 177.925781 55.207031 C 177.925781 55.089844 177.832031 54.996094 177.714844 54.996094 C 177.597656 54.996094 177.503906 55.089844 177.503906 55.207031 C 177.503906 55.324219 177.597656 55.417969 177.714844 55.417969 C 177.832031 55.417969 177.925781 55.324219 177.925781 55.207031 Z M 177.925781 55.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 178.304688 54.046875 C 178.304688 53.929688 178.210938 53.835938 178.09375 53.835938 C 177.976562 53.835938 177.882812 53.929688 177.882812 54.046875 C 177.882812 54.164062 177.976562 54.257812 178.09375 54.257812 C 178.210938 54.257812 178.304688 54.164062 178.304688 54.046875 Z M 178.304688 54.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 176.523438 53.328125 C 176.523438 53.210938 176.429688 53.117188 176.3125 53.117188 C 176.195312 53.117188 176.101562 53.210938 176.101562 53.328125 C 176.101562 53.445312 176.195312 53.539062 176.3125 53.539062 C 176.429688 53.539062 176.523438 53.445312 176.523438 53.328125 Z M 176.523438 53.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 174.699219 57.117188 C 174.699219 57 174.605469 56.90625 174.488281 56.90625 C 174.371094 56.90625 174.277344 57 174.277344 57.117188 C 174.277344 57.234375 174.371094 57.328125 174.488281 57.328125 C 174.605469 57.328125 174.699219 57.234375 174.699219 57.117188 Z M 174.699219 57.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 173.691406 59.058594 C 173.691406 58.941406 173.597656 58.847656 173.480469 58.847656 C 173.363281 58.847656 173.269531 58.941406 173.269531 59.058594 C 173.269531 59.175781 173.363281 59.269531 173.480469 59.269531 C 173.597656 59.269531 173.691406 59.175781 173.691406 59.058594 Z M 173.691406 59.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 170.894531 60.265625 C 170.894531 60.148438 170.800781 60.054688 170.683594 60.054688 C 170.566406 60.054688 170.472656 60.148438 170.472656 60.265625 C 170.472656 60.382812 170.566406 60.476562 170.683594 60.476562 C 170.800781 60.476562 170.894531 60.382812 170.894531 60.265625 Z M 170.894531 60.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 166.492188 59.894531 C 166.492188 59.777344 166.398438 59.683594 166.28125 59.683594 C 166.164062 59.683594 166.070312 59.777344 166.070312 59.894531 C 166.070312 60.011719 166.164062 60.105469 166.28125 60.105469 C 166.398438 60.105469 166.492188 60.011719 166.492188 59.894531 Z M 166.492188 59.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 167.675781 63.457031 C 167.675781 63.339844 167.582031 63.246094 167.464844 63.246094 C 167.347656 63.246094 167.253906 63.339844 167.253906 63.457031 C 167.253906 63.574219 167.347656 63.667969 167.464844 63.667969 C 167.582031 63.667969 167.675781 63.574219 167.675781 63.457031 Z M 167.675781 63.457031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 172.386719 59.414062 C 172.386719 59.296875 172.292969 59.203125 172.175781 59.203125 C 172.058594 59.203125 171.964844 59.296875 171.964844 59.414062 C 171.964844 59.53125 172.058594 59.625 172.175781 59.625 C 172.292969 59.625 172.386719 59.53125 172.386719 59.414062 Z M 172.386719 59.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 172.421875 60.617188 C 172.421875 60.5 172.328125 60.40625 172.210938 60.40625 C 172.09375 60.40625 172 60.5 172 60.617188 C 172 60.734375 172.09375 60.828125 172.210938 60.828125 C 172.328125 60.828125 172.421875 60.734375 172.421875 60.617188 Z M 172.421875 60.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 173.773438 56.578125 C 173.773438 56.460938 173.679688 56.367188 173.5625 56.367188 C 173.445312 56.367188 173.351562 56.460938 173.351562 56.578125 C 173.351562 56.695312 173.445312 56.789062 173.5625 56.789062 C 173.679688 56.789062 173.773438 56.695312 173.773438 56.578125 Z M 173.773438 56.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 177.25 56.976562 C 177.25 56.859375 177.15625 56.765625 177.039062 56.765625 C 176.921875 56.765625 176.828125 56.859375 176.828125 56.976562 C 176.828125 57.09375 176.921875 57.1875 177.039062 57.1875 C 177.15625 57.1875 177.25 57.09375 177.25 56.976562 Z M 177.25 56.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 177.234375 55.714844 C 177.234375 55.597656 177.140625 55.503906 177.023438 55.503906 C 176.90625 55.503906 176.8125 55.597656 176.8125 55.714844 C 176.8125 55.832031 176.90625 55.925781 177.023438 55.925781 C 177.140625 55.925781 177.234375 55.832031 177.234375 55.714844 Z M 177.234375 55.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 175.835938 53.140625 C 175.835938 53.023438 175.742188 52.929688 175.625 52.929688 C 175.507812 52.929688 175.414062 53.023438 175.414062 53.140625 C 175.414062 53.257812 175.507812 53.351562 175.625 53.351562 C 175.742188 53.351562 175.835938 53.257812 175.835938 53.140625 Z M 175.835938 53.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 171.207031 52.839844 C 171.207031 52.722656 171.113281 52.628906 170.996094 52.628906 C 170.878906 52.628906 170.785156 52.722656 170.785156 52.839844 C 170.785156 52.957031 170.878906 53.050781 170.996094 53.050781 C 171.113281 53.050781 171.207031 52.957031 171.207031 52.839844 Z M 171.207031 52.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 169.800781 52.554688 C 169.800781 52.4375 169.707031 52.34375 169.589844 52.34375 C 169.472656 52.34375 169.378906 52.4375 169.378906 52.554688 C 169.378906 52.671875 169.472656 52.765625 169.589844 52.765625 C 169.707031 52.765625 169.800781 52.671875 169.800781 52.554688 Z M 169.800781 52.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 170.066406 54.523438 C 170.066406 54.40625 169.972656 54.3125 169.855469 54.3125 C 169.738281 54.3125 169.644531 54.40625 169.644531 54.523438 C 169.644531 54.640625 169.738281 54.734375 169.855469 54.734375 C 169.972656 54.734375 170.066406 54.640625 170.066406 54.523438 Z M 170.066406 54.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 171.503906 52.910156 C 171.503906 52.792969 171.410156 52.699219 171.292969 52.699219 C 171.175781 52.699219 171.082031 52.792969 171.082031 52.910156 C 171.082031 53.027344 171.175781 53.121094 171.292969 53.121094 C 171.410156 53.121094 171.503906 53.027344 171.503906 52.910156 Z M 171.503906 52.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 173.027344 56.097656 C 173.027344 55.980469 172.933594 55.886719 172.816406 55.886719 C 172.699219 55.886719 172.605469 55.980469 172.605469 56.097656 C 172.605469 56.214844 172.699219 56.308594 172.816406 56.308594 C 172.933594 56.308594 173.027344 56.214844 173.027344 56.097656 Z M 173.027344 56.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 171.167969 56.121094 C 171.167969 56.003906 171.074219 55.910156 170.957031 55.910156 C 170.839844 55.910156 170.746094 56.003906 170.746094 56.121094 C 170.746094 56.238281 170.839844 56.332031 170.957031 56.332031 C 171.074219 56.332031 171.167969 56.238281 171.167969 56.121094 Z M 171.167969 56.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 166.359375 54.792969 C 166.359375 54.675781 166.265625 54.582031 166.148438 54.582031 C 166.03125 54.582031 165.9375 54.675781 165.9375 54.792969 C 165.9375 54.910156 166.03125 55.003906 166.148438 55.003906 C 166.265625 55.003906 166.359375 54.910156 166.359375 54.792969 Z M 166.359375 54.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 166.917969 58.546875 C 166.917969 58.429688 166.824219 58.335938 166.707031 58.335938 C 166.589844 58.335938 166.496094 58.429688 166.496094 58.546875 C 166.496094 58.664062 166.589844 58.757812 166.707031 58.757812 C 166.824219 58.757812 166.917969 58.664062 166.917969 58.546875 Z M 166.917969 58.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 165.894531 62.445312 C 165.894531 62.328125 165.800781 62.234375 165.683594 62.234375 C 165.566406 62.234375 165.472656 62.328125 165.472656 62.445312 C 165.472656 62.5625 165.566406 62.65625 165.683594 62.65625 C 165.800781 62.65625 165.894531 62.5625 165.894531 62.445312 Z M 165.894531 62.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 167.515625 63.40625 C 167.515625 63.289062 167.421875 63.195312 167.304688 63.195312 C 167.1875 63.195312 167.09375 63.289062 167.09375 63.40625 C 167.09375 63.523438 167.1875 63.617188 167.304688 63.617188 C 167.421875 63.617188 167.515625 63.523438 167.515625 63.40625 Z M 167.515625 63.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 167.628906 63.367188 C 167.628906 63.25 167.535156 63.15625 167.417969 63.15625 C 167.300781 63.15625 167.207031 63.25 167.207031 63.367188 C 167.207031 63.484375 167.300781 63.578125 167.417969 63.578125 C 167.535156 63.578125 167.628906 63.484375 167.628906 63.367188 Z M 167.628906 63.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 166.308594 62.359375 C 166.308594 62.242188 166.214844 62.148438 166.097656 62.148438 C 165.980469 62.148438 165.886719 62.242188 165.886719 62.359375 C 165.886719 62.476562 165.980469 62.570312 166.097656 62.570312 C 166.214844 62.570312 166.308594 62.476562 166.308594 62.359375 Z M 166.308594 62.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 165.800781 60.207031 C 165.800781 60.089844 165.707031 59.996094 165.589844 59.996094 C 165.472656 59.996094 165.378906 60.089844 165.378906 60.207031 C 165.378906 60.324219 165.472656 60.417969 165.589844 60.417969 C 165.707031 60.417969 165.800781 60.324219 165.800781 60.207031 Z M 165.800781 60.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 164.132812 62.160156 C 164.132812 62.042969 164.039062 61.949219 163.921875 61.949219 C 163.804688 61.949219 163.710938 62.042969 163.710938 62.160156 C 163.710938 62.277344 163.804688 62.371094 163.921875 62.371094 C 164.039062 62.371094 164.132812 62.277344 164.132812 62.160156 Z M 164.132812 62.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 160.53125 65.359375 C 160.53125 65.242188 160.4375 65.148438 160.320312 65.148438 C 160.203125 65.148438 160.109375 65.242188 160.109375 65.359375 C 160.109375 65.476562 160.203125 65.570312 160.320312 65.570312 C 160.4375 65.570312 160.53125 65.476562 160.53125 65.359375 Z M 160.53125 65.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 157.933594 65.375 C 157.933594 65.257812 157.839844 65.164062 157.722656 65.164062 C 157.605469 65.164062 157.511719 65.257812 157.511719 65.375 C 157.511719 65.492188 157.605469 65.585938 157.722656 65.585938 C 157.839844 65.585938 157.933594 65.492188 157.933594 65.375 Z M 157.933594 65.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 158.792969 63.710938 C 158.792969 63.59375 158.699219 63.5 158.582031 63.5 C 158.464844 63.5 158.371094 63.59375 158.371094 63.710938 C 158.371094 63.828125 158.464844 63.921875 158.582031 63.921875 C 158.699219 63.921875 158.792969 63.828125 158.792969 63.710938 Z M 158.792969 63.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 160.222656 64.875 C 160.222656 64.757812 160.128906 64.664062 160.011719 64.664062 C 159.894531 64.664062 159.800781 64.757812 159.800781 64.875 C 159.800781 64.992188 159.894531 65.085938 160.011719 65.085938 C 160.128906 65.085938 160.222656 64.992188 160.222656 64.875 Z M 160.222656 64.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 159.15625 61.691406 C 159.15625 61.574219 159.0625 61.480469 158.945312 61.480469 C 158.828125 61.480469 158.734375 61.574219 158.734375 61.691406 C 158.734375 61.808594 158.828125 61.902344 158.945312 61.902344 C 159.0625 61.902344 159.15625 61.808594 159.15625 61.691406 Z M 159.15625 61.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 157.375 59.203125 C 157.375 59.085938 157.28125 58.992188 157.164062 58.992188 C 157.046875 58.992188 156.953125 59.085938 156.953125 59.203125 C 156.953125 59.320312 157.046875 59.414062 157.164062 59.414062 C 157.28125 59.414062 157.375 59.320312 157.375 59.203125 Z M 157.375 59.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 158.578125 64.003906 C 158.578125 63.886719 158.484375 63.792969 158.367188 63.792969 C 158.25 63.792969 158.15625 63.886719 158.15625 64.003906 C 158.15625 64.121094 158.25 64.214844 158.367188 64.214844 C 158.484375 64.214844 158.578125 64.121094 158.578125 64.003906 Z M 158.578125 64.003906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 160.378906 62.472656 C 160.378906 62.355469 160.285156 62.261719 160.167969 62.261719 C 160.050781 62.261719 159.957031 62.355469 159.957031 62.472656 C 159.957031 62.589844 160.050781 62.683594 160.167969 62.683594 C 160.285156 62.683594 160.378906 62.589844 160.378906 62.472656 Z M 160.378906 62.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 161.910156 60.449219 C 161.910156 60.332031 161.816406 60.238281 161.699219 60.238281 C 161.582031 60.238281 161.488281 60.332031 161.488281 60.449219 C 161.488281 60.566406 161.582031 60.660156 161.699219 60.660156 C 161.816406 60.660156 161.910156 60.566406 161.910156 60.449219 Z M 161.910156 60.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 164.101562 60.757812 C 164.101562 60.640625 164.007812 60.546875 163.890625 60.546875 C 163.773438 60.546875 163.679688 60.640625 163.679688 60.757812 C 163.679688 60.875 163.773438 60.96875 163.890625 60.96875 C 164.007812 60.96875 164.101562 60.875 164.101562 60.757812 Z M 164.101562 60.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 164.957031 59.621094 C 164.957031 59.503906 164.863281 59.410156 164.746094 59.410156 C 164.628906 59.410156 164.535156 59.503906 164.535156 59.621094 C 164.535156 59.738281 164.628906 59.832031 164.746094 59.832031 C 164.863281 59.832031 164.957031 59.738281 164.957031 59.621094 Z M 164.957031 59.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 164.714844 57.816406 C 164.714844 57.699219 164.621094 57.605469 164.503906 57.605469 C 164.386719 57.605469 164.292969 57.699219 164.292969 57.816406 C 164.292969 57.933594 164.386719 58.027344 164.503906 58.027344 C 164.621094 58.027344 164.714844 57.933594 164.714844 57.816406 Z M 164.714844 57.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 162.179688 54.097656 C 162.179688 53.980469 162.085938 53.886719 161.96875 53.886719 C 161.851562 53.886719 161.757812 53.980469 161.757812 54.097656 C 161.757812 54.214844 161.851562 54.308594 161.96875 54.308594 C 162.085938 54.308594 162.179688 54.214844 162.179688 54.097656 Z M 162.179688 54.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 163.375 54.5 C 163.375 54.382812 163.28125 54.289062 163.164062 54.289062 C 163.046875 54.289062 162.953125 54.382812 162.953125 54.5 C 162.953125 54.617188 163.046875 54.710938 163.164062 54.710938 C 163.28125 54.710938 163.375 54.617188 163.375 54.5 Z M 163.375 54.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 164.316406 54.414062 C 164.316406 54.296875 164.222656 54.203125 164.105469 54.203125 C 163.988281 54.203125 163.894531 54.296875 163.894531 54.414062 C 163.894531 54.53125 163.988281 54.625 164.105469 54.625 C 164.222656 54.625 164.316406 54.53125 164.316406 54.414062 Z M 164.316406 54.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 160.507812 56.171875 C 160.507812 56.054688 160.414062 55.960938 160.296875 55.960938 C 160.179688 55.960938 160.085938 56.054688 160.085938 56.171875 C 160.085938 56.289062 160.179688 56.382812 160.296875 56.382812 C 160.414062 56.382812 160.507812 56.289062 160.507812 56.171875 Z M 160.507812 56.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 160.582031 55.472656 C 160.582031 55.355469 160.488281 55.261719 160.371094 55.261719 C 160.253906 55.261719 160.160156 55.355469 160.160156 55.472656 C 160.160156 55.589844 160.253906 55.683594 160.371094 55.683594 C 160.488281 55.683594 160.582031 55.589844 160.582031 55.472656 Z M 160.582031 55.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 161.800781 56.6875 C 161.800781 56.570312 161.707031 56.476562 161.589844 56.476562 C 161.472656 56.476562 161.378906 56.570312 161.378906 56.6875 C 161.378906 56.804688 161.472656 56.898438 161.589844 56.898438 C 161.707031 56.898438 161.800781 56.804688 161.800781 56.6875 Z M 161.800781 56.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 162.34375 54.625 C 162.34375 54.507812 162.25 54.414062 162.132812 54.414062 C 162.015625 54.414062 161.921875 54.507812 161.921875 54.625 C 161.921875 54.742188 162.015625 54.835938 162.132812 54.835938 C 162.25 54.835938 162.34375 54.742188 162.34375 54.625 Z M 162.34375 54.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 159.910156 57.902344 C 159.910156 57.785156 159.816406 57.691406 159.699219 57.691406 C 159.582031 57.691406 159.488281 57.785156 159.488281 57.902344 C 159.488281 58.019531 159.582031 58.113281 159.699219 58.113281 C 159.816406 58.113281 159.910156 58.019531 159.910156 57.902344 Z M 159.910156 57.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 162.421875 61.632812 C 162.421875 61.515625 162.328125 61.421875 162.210938 61.421875 C 162.09375 61.421875 162 61.515625 162 61.632812 C 162 61.75 162.09375 61.84375 162.210938 61.84375 C 162.328125 61.84375 162.421875 61.75 162.421875 61.632812 Z M 162.421875 61.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 163.484375 60.0625 C 163.484375 59.945312 163.390625 59.851562 163.273438 59.851562 C 163.15625 59.851562 163.0625 59.945312 163.0625 60.0625 C 163.0625 60.179688 163.15625 60.273438 163.273438 60.273438 C 163.390625 60.273438 163.484375 60.179688 163.484375 60.0625 Z M 163.484375 60.0625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 165.5625 56.164062 C 165.5625 56.046875 165.46875 55.953125 165.351562 55.953125 C 165.234375 55.953125 165.140625 56.046875 165.140625 56.164062 C 165.140625 56.28125 165.234375 56.375 165.351562 56.375 C 165.46875 56.375 165.5625 56.28125 165.5625 56.164062 Z M 165.5625 56.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 163.796875 53.347656 C 163.796875 53.230469 163.703125 53.136719 163.585938 53.136719 C 163.46875 53.136719 163.375 53.230469 163.375 53.347656 C 163.375 53.464844 163.46875 53.558594 163.585938 53.558594 C 163.703125 53.558594 163.796875 53.464844 163.796875 53.347656 Z M 163.796875 53.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 163.359375 53.171875 C 163.359375 53.054688 163.265625 52.960938 163.148438 52.960938 C 163.03125 52.960938 162.9375 53.054688 162.9375 53.171875 C 162.9375 53.289062 163.03125 53.382812 163.148438 53.382812 C 163.265625 53.382812 163.359375 53.289062 163.359375 53.171875 Z M 163.359375 53.171875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 165.738281 50.316406 C 165.738281 50.199219 165.644531 50.105469 165.527344 50.105469 C 165.410156 50.105469 165.316406 50.199219 165.316406 50.316406 C 165.316406 50.433594 165.410156 50.527344 165.527344 50.527344 C 165.644531 50.527344 165.738281 50.433594 165.738281 50.316406 Z M 165.738281 50.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 168.261719 51.585938 C 168.261719 51.46875 168.167969 51.375 168.050781 51.375 C 167.933594 51.375 167.839844 51.46875 167.839844 51.585938 C 167.839844 51.703125 167.933594 51.796875 168.050781 51.796875 C 168.167969 51.796875 168.261719 51.703125 168.261719 51.585938 Z M 168.261719 51.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 170.605469 53.117188 C 170.605469 53 170.511719 52.90625 170.394531 52.90625 C 170.277344 52.90625 170.183594 53 170.183594 53.117188 C 170.183594 53.234375 170.277344 53.328125 170.394531 53.328125 C 170.511719 53.328125 170.605469 53.234375 170.605469 53.117188 Z M 170.605469 53.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 170.851562 51.578125 C 170.851562 51.460938 170.757812 51.367188 170.640625 51.367188 C 170.523438 51.367188 170.429688 51.460938 170.429688 51.578125 C 170.429688 51.695312 170.523438 51.789062 170.640625 51.789062 C 170.757812 51.789062 170.851562 51.695312 170.851562 51.578125 Z M 170.851562 51.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 168.019531 50.925781 C 168.019531 50.808594 167.925781 50.714844 167.808594 50.714844 C 167.691406 50.714844 167.597656 50.808594 167.597656 50.925781 C 167.597656 51.042969 167.691406 51.136719 167.808594 51.136719 C 167.925781 51.136719 168.019531 51.042969 168.019531 50.925781 Z M 168.019531 50.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 167.246094 50.996094 C 167.246094 50.878906 167.152344 50.785156 167.035156 50.785156 C 166.917969 50.785156 166.824219 50.878906 166.824219 50.996094 C 166.824219 51.113281 166.917969 51.207031 167.035156 51.207031 C 167.152344 51.207031 167.246094 51.113281 167.246094 50.996094 Z M 167.246094 50.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 169.046875 53.558594 C 169.046875 53.441406 168.953125 53.347656 168.835938 53.347656 C 168.71875 53.347656 168.625 53.441406 168.625 53.558594 C 168.625 53.675781 168.71875 53.769531 168.835938 53.769531 C 168.953125 53.769531 169.046875 53.675781 169.046875 53.558594 Z M 169.046875 53.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 172.15625 53.414062 C 172.15625 53.296875 172.0625 53.203125 171.945312 53.203125 C 171.828125 53.203125 171.734375 53.296875 171.734375 53.414062 C 171.734375 53.53125 171.828125 53.625 171.945312 53.625 C 172.0625 53.625 172.15625 53.53125 172.15625 53.414062 Z M 172.15625 53.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 172.042969 53.226562 C 172.042969 53.109375 171.949219 53.015625 171.832031 53.015625 C 171.714844 53.015625 171.621094 53.109375 171.621094 53.226562 C 171.621094 53.34375 171.714844 53.4375 171.832031 53.4375 C 171.949219 53.4375 172.042969 53.34375 172.042969 53.226562 Z M 172.042969 53.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 168.746094 52.136719 C 168.746094 52.019531 168.652344 51.925781 168.535156 51.925781 C 168.417969 51.925781 168.324219 52.019531 168.324219 52.136719 C 168.324219 52.253906 168.417969 52.347656 168.535156 52.347656 C 168.652344 52.347656 168.746094 52.253906 168.746094 52.136719 Z M 168.746094 52.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 168.015625 49.878906 C 168.015625 49.761719 167.921875 49.667969 167.804688 49.667969 C 167.6875 49.667969 167.59375 49.761719 167.59375 49.878906 C 167.59375 49.996094 167.6875 50.089844 167.804688 50.089844 C 167.921875 50.089844 168.015625 49.996094 168.015625 49.878906 Z M 168.015625 49.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 168.269531 50.90625 C 168.269531 50.789062 168.175781 50.695312 168.058594 50.695312 C 167.941406 50.695312 167.847656 50.789062 167.847656 50.90625 C 167.847656 51.023438 167.941406 51.117188 168.058594 51.117188 C 168.175781 51.117188 168.269531 51.023438 168.269531 50.90625 Z M 168.269531 50.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 163.429688 50.660156 C 163.429688 50.542969 163.335938 50.449219 163.21875 50.449219 C 163.101562 50.449219 163.007812 50.542969 163.007812 50.660156 C 163.007812 50.777344 163.101562 50.871094 163.21875 50.871094 C 163.335938 50.871094 163.429688 50.777344 163.429688 50.660156 Z M 163.429688 50.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 160.878906 49.40625 C 160.878906 49.289062 160.785156 49.195312 160.667969 49.195312 C 160.550781 49.195312 160.457031 49.289062 160.457031 49.40625 C 160.457031 49.523438 160.550781 49.617188 160.667969 49.617188 C 160.785156 49.617188 160.878906 49.523438 160.878906 49.40625 Z M 160.878906 49.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 159.859375 51.523438 C 159.859375 51.40625 159.765625 51.3125 159.648438 51.3125 C 159.53125 51.3125 159.4375 51.40625 159.4375 51.523438 C 159.4375 51.640625 159.53125 51.734375 159.648438 51.734375 C 159.765625 51.734375 159.859375 51.640625 159.859375 51.523438 Z M 159.859375 51.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 159.160156 52.15625 C 159.160156 52.039062 159.066406 51.945312 158.949219 51.945312 C 158.832031 51.945312 158.738281 52.039062 158.738281 52.15625 C 158.738281 52.273438 158.832031 52.367188 158.949219 52.367188 C 159.066406 52.367188 159.160156 52.273438 159.160156 52.15625 Z M 159.160156 52.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 158.703125 49.867188 C 158.703125 49.75 158.609375 49.65625 158.492188 49.65625 C 158.375 49.65625 158.28125 49.75 158.28125 49.867188 C 158.28125 49.984375 158.375 50.078125 158.492188 50.078125 C 158.609375 50.078125 158.703125 49.984375 158.703125 49.867188 Z M 158.703125 49.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 155.652344 48.121094 C 155.652344 48.003906 155.558594 47.910156 155.441406 47.910156 C 155.324219 47.910156 155.230469 48.003906 155.230469 48.121094 C 155.230469 48.238281 155.324219 48.332031 155.441406 48.332031 C 155.558594 48.332031 155.652344 48.238281 155.652344 48.121094 Z M 155.652344 48.121094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 153.386719 46.503906 C 153.386719 46.386719 153.292969 46.292969 153.175781 46.292969 C 153.058594 46.292969 152.964844 46.386719 152.964844 46.503906 C 152.964844 46.621094 153.058594 46.714844 153.175781 46.714844 C 153.292969 46.714844 153.386719 46.621094 153.386719 46.503906 Z M 153.386719 46.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 152.675781 47.316406 C 152.675781 47.199219 152.582031 47.105469 152.464844 47.105469 C 152.347656 47.105469 152.253906 47.199219 152.253906 47.316406 C 152.253906 47.433594 152.347656 47.527344 152.464844 47.527344 C 152.582031 47.527344 152.675781 47.433594 152.675781 47.316406 Z M 152.675781 47.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 150.136719 46.636719 C 150.136719 46.519531 150.042969 46.425781 149.925781 46.425781 C 149.808594 46.425781 149.714844 46.519531 149.714844 46.636719 C 149.714844 46.753906 149.808594 46.847656 149.925781 46.847656 C 150.042969 46.847656 150.136719 46.753906 150.136719 46.636719 Z M 150.136719 46.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 146.230469 47.738281 C 146.230469 47.621094 146.136719 47.527344 146.019531 47.527344 C 145.902344 47.527344 145.808594 47.621094 145.808594 47.738281 C 145.808594 47.855469 145.902344 47.949219 146.019531 47.949219 C 146.136719 47.949219 146.230469 47.855469 146.230469 47.738281 Z M 146.230469 47.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 148.804688 40.472656 C 148.804688 40.355469 148.710938 40.261719 148.59375 40.261719 C 148.476562 40.261719 148.382812 40.355469 148.382812 40.472656 C 148.382812 40.589844 148.476562 40.683594 148.59375 40.683594 C 148.710938 40.683594 148.804688 40.589844 148.804688 40.472656 Z M 148.804688 40.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 145.328125 43.601562 C 145.328125 43.484375 145.234375 43.390625 145.117188 43.390625 C 145 43.390625 144.90625 43.484375 144.90625 43.601562 C 144.90625 43.71875 145 43.8125 145.117188 43.8125 C 145.234375 43.8125 145.328125 43.71875 145.328125 43.601562 Z M 145.328125 43.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 145.660156 44.871094 C 145.660156 44.753906 145.566406 44.660156 145.449219 44.660156 C 145.332031 44.660156 145.238281 44.753906 145.238281 44.871094 C 145.238281 44.988281 145.332031 45.082031 145.449219 45.082031 C 145.566406 45.082031 145.660156 44.988281 145.660156 44.871094 Z M 145.660156 44.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 145.242188 45.671875 C 145.242188 45.554688 145.148438 45.460938 145.03125 45.460938 C 144.914062 45.460938 144.820312 45.554688 144.820312 45.671875 C 144.820312 45.789062 144.914062 45.882812 145.03125 45.882812 C 145.148438 45.882812 145.242188 45.789062 145.242188 45.671875 Z M 145.242188 45.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 148.824219 43.617188 C 148.824219 43.5 148.730469 43.40625 148.613281 43.40625 C 148.496094 43.40625 148.402344 43.5 148.402344 43.617188 C 148.402344 43.734375 148.496094 43.828125 148.613281 43.828125 C 148.730469 43.828125 148.824219 43.734375 148.824219 43.617188 Z M 148.824219 43.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 150.957031 43.78125 C 150.957031 43.664062 150.863281 43.570312 150.746094 43.570312 C 150.628906 43.570312 150.535156 43.664062 150.535156 43.78125 C 150.535156 43.898438 150.628906 43.992188 150.746094 43.992188 C 150.863281 43.992188 150.957031 43.898438 150.957031 43.78125 Z M 150.957031 43.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 153.558594 45.027344 C 153.558594 44.910156 153.464844 44.816406 153.347656 44.816406 C 153.230469 44.816406 153.136719 44.910156 153.136719 45.027344 C 153.136719 45.144531 153.230469 45.238281 153.347656 45.238281 C 153.464844 45.238281 153.558594 45.144531 153.558594 45.027344 Z M 153.558594 45.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 152.507812 45.277344 C 152.507812 45.160156 152.414062 45.066406 152.296875 45.066406 C 152.179688 45.066406 152.085938 45.160156 152.085938 45.277344 C 152.085938 45.394531 152.179688 45.488281 152.296875 45.488281 C 152.414062 45.488281 152.507812 45.394531 152.507812 45.277344 Z M 152.507812 45.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 152.390625 46.832031 C 152.390625 46.714844 152.296875 46.621094 152.179688 46.621094 C 152.0625 46.621094 151.96875 46.714844 151.96875 46.832031 C 151.96875 46.949219 152.0625 47.042969 152.179688 47.042969 C 152.296875 47.042969 152.390625 46.949219 152.390625 46.832031 Z M 152.390625 46.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 152.152344 48.152344 C 152.152344 48.035156 152.058594 47.941406 151.941406 47.941406 C 151.824219 47.941406 151.730469 48.035156 151.730469 48.152344 C 151.730469 48.269531 151.824219 48.363281 151.941406 48.363281 C 152.058594 48.363281 152.152344 48.269531 152.152344 48.152344 Z M 152.152344 48.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 150.875 47.425781 C 150.875 47.308594 150.78125 47.214844 150.664062 47.214844 C 150.546875 47.214844 150.453125 47.308594 150.453125 47.425781 C 150.453125 47.542969 150.546875 47.636719 150.664062 47.636719 C 150.78125 47.636719 150.875 47.542969 150.875 47.425781 Z M 150.875 47.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 151.269531 47.488281 C 151.269531 47.371094 151.175781 47.277344 151.058594 47.277344 C 150.941406 47.277344 150.847656 47.371094 150.847656 47.488281 C 150.847656 47.605469 150.941406 47.699219 151.058594 47.699219 C 151.175781 47.699219 151.269531 47.605469 151.269531 47.488281 Z M 151.269531 47.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 149.082031 52.476562 C 149.082031 52.359375 148.988281 52.265625 148.871094 52.265625 C 148.753906 52.265625 148.660156 52.359375 148.660156 52.476562 C 148.660156 52.59375 148.753906 52.6875 148.871094 52.6875 C 148.988281 52.6875 149.082031 52.59375 149.082031 52.476562 Z M 149.082031 52.476562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 148.71875 53.773438 C 148.71875 53.65625 148.625 53.5625 148.507812 53.5625 C 148.390625 53.5625 148.296875 53.65625 148.296875 53.773438 C 148.296875 53.890625 148.390625 53.984375 148.507812 53.984375 C 148.625 53.984375 148.71875 53.890625 148.71875 53.773438 Z M 148.71875 53.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 151.085938 54.378906 C 151.085938 54.261719 150.992188 54.167969 150.875 54.167969 C 150.757812 54.167969 150.664062 54.261719 150.664062 54.378906 C 150.664062 54.496094 150.757812 54.589844 150.875 54.589844 C 150.992188 54.589844 151.085938 54.496094 151.085938 54.378906 Z M 151.085938 54.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 149.996094 58.769531 C 149.996094 58.652344 149.902344 58.558594 149.785156 58.558594 C 149.667969 58.558594 149.574219 58.652344 149.574219 58.769531 C 149.574219 58.886719 149.667969 58.980469 149.785156 58.980469 C 149.902344 58.980469 149.996094 58.886719 149.996094 58.769531 Z M 149.996094 58.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 149.792969 58.242188 C 149.792969 58.125 149.699219 58.03125 149.582031 58.03125 C 149.464844 58.03125 149.371094 58.125 149.371094 58.242188 C 149.371094 58.359375 149.464844 58.453125 149.582031 58.453125 C 149.699219 58.453125 149.792969 58.359375 149.792969 58.242188 Z M 149.792969 58.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 151.417969 59.832031 C 151.417969 59.714844 151.324219 59.621094 151.207031 59.621094 C 151.089844 59.621094 150.996094 59.714844 150.996094 59.832031 C 150.996094 59.949219 151.089844 60.042969 151.207031 60.042969 C 151.324219 60.042969 151.417969 59.949219 151.417969 59.832031 Z M 151.417969 59.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 153.496094 58.316406 C 153.496094 58.199219 153.402344 58.105469 153.285156 58.105469 C 153.167969 58.105469 153.074219 58.199219 153.074219 58.316406 C 153.074219 58.433594 153.167969 58.527344 153.285156 58.527344 C 153.402344 58.527344 153.496094 58.433594 153.496094 58.316406 Z M 153.496094 58.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 152.394531 60.980469 C 152.394531 60.863281 152.300781 60.769531 152.183594 60.769531 C 152.066406 60.769531 151.972656 60.863281 151.972656 60.980469 C 151.972656 61.097656 152.066406 61.191406 152.183594 61.191406 C 152.300781 61.191406 152.394531 61.097656 152.394531 60.980469 Z M 152.394531 60.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 156.917969 59.726562 C 156.917969 59.609375 156.824219 59.515625 156.707031 59.515625 C 156.589844 59.515625 156.496094 59.609375 156.496094 59.726562 C 156.496094 59.84375 156.589844 59.9375 156.707031 59.9375 C 156.824219 59.9375 156.917969 59.84375 156.917969 59.726562 Z M 156.917969 59.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 155.53125 58.074219 C 155.53125 57.957031 155.4375 57.863281 155.320312 57.863281 C 155.203125 57.863281 155.109375 57.957031 155.109375 58.074219 C 155.109375 58.191406 155.203125 58.285156 155.320312 58.285156 C 155.4375 58.285156 155.53125 58.191406 155.53125 58.074219 Z M 155.53125 58.074219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 155.523438 60.222656 C 155.523438 60.105469 155.429688 60.011719 155.3125 60.011719 C 155.195312 60.011719 155.101562 60.105469 155.101562 60.222656 C 155.101562 60.339844 155.195312 60.433594 155.3125 60.433594 C 155.429688 60.433594 155.523438 60.339844 155.523438 60.222656 Z M 155.523438 60.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 153.117188 62.355469 C 153.117188 62.238281 153.023438 62.144531 152.90625 62.144531 C 152.789062 62.144531 152.695312 62.238281 152.695312 62.355469 C 152.695312 62.472656 152.789062 62.566406 152.90625 62.566406 C 153.023438 62.566406 153.117188 62.472656 153.117188 62.355469 Z M 153.117188 62.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 148.464844 61.160156 C 148.464844 61.042969 148.371094 60.949219 148.253906 60.949219 C 148.136719 60.949219 148.042969 61.042969 148.042969 61.160156 C 148.042969 61.277344 148.136719 61.371094 148.253906 61.371094 C 148.371094 61.371094 148.464844 61.277344 148.464844 61.160156 Z M 148.464844 61.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 151.988281 62.875 C 151.988281 62.757812 151.894531 62.664062 151.777344 62.664062 C 151.660156 62.664062 151.566406 62.757812 151.566406 62.875 C 151.566406 62.992188 151.660156 63.085938 151.777344 63.085938 C 151.894531 63.085938 151.988281 62.992188 151.988281 62.875 Z M 151.988281 62.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 153.828125 63.742188 C 153.828125 63.625 153.734375 63.53125 153.617188 63.53125 C 153.5 63.53125 153.40625 63.625 153.40625 63.742188 C 153.40625 63.859375 153.5 63.953125 153.617188 63.953125 C 153.734375 63.953125 153.828125 63.859375 153.828125 63.742188 Z M 153.828125 63.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 155.625 60.566406 C 155.625 60.449219 155.53125 60.355469 155.414062 60.355469 C 155.296875 60.355469 155.203125 60.449219 155.203125 60.566406 C 155.203125 60.683594 155.296875 60.777344 155.414062 60.777344 C 155.53125 60.777344 155.625 60.683594 155.625 60.566406 Z M 155.625 60.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 152.875 60.542969 C 152.875 60.425781 152.78125 60.332031 152.664062 60.332031 C 152.546875 60.332031 152.453125 60.425781 152.453125 60.542969 C 152.453125 60.660156 152.546875 60.753906 152.664062 60.753906 C 152.78125 60.753906 152.875 60.660156 152.875 60.542969 Z M 152.875 60.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 154.308594 60.160156 C 154.308594 60.042969 154.214844 59.949219 154.097656 59.949219 C 153.980469 59.949219 153.886719 60.042969 153.886719 60.160156 C 153.886719 60.277344 153.980469 60.371094 154.097656 60.371094 C 154.214844 60.371094 154.308594 60.277344 154.308594 60.160156 Z M 154.308594 60.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 151.789062 66.933594 C 151.789062 66.816406 151.695312 66.722656 151.578125 66.722656 C 151.460938 66.722656 151.367188 66.816406 151.367188 66.933594 C 151.367188 67.050781 151.460938 67.144531 151.578125 67.144531 C 151.695312 67.144531 151.789062 67.050781 151.789062 66.933594 Z M 151.789062 66.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 152.714844 62.507812 C 152.714844 62.390625 152.621094 62.296875 152.503906 62.296875 C 152.386719 62.296875 152.292969 62.390625 152.292969 62.507812 C 152.292969 62.625 152.386719 62.71875 152.503906 62.71875 C 152.621094 62.71875 152.714844 62.625 152.714844 62.507812 Z M 152.714844 62.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 149.699219 60.40625 C 149.699219 60.289062 149.605469 60.195312 149.488281 60.195312 C 149.371094 60.195312 149.277344 60.289062 149.277344 60.40625 C 149.277344 60.523438 149.371094 60.617188 149.488281 60.617188 C 149.605469 60.617188 149.699219 60.523438 149.699219 60.40625 Z M 149.699219 60.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 146.875 55.535156 C 146.875 55.417969 146.78125 55.324219 146.664062 55.324219 C 146.546875 55.324219 146.453125 55.417969 146.453125 55.535156 C 146.453125 55.652344 146.546875 55.746094 146.664062 55.746094 C 146.78125 55.746094 146.875 55.652344 146.875 55.535156 Z M 146.875 55.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 148.925781 61.605469 C 148.925781 61.488281 148.832031 61.394531 148.714844 61.394531 C 148.597656 61.394531 148.503906 61.488281 148.503906 61.605469 C 148.503906 61.722656 148.597656 61.816406 148.714844 61.816406 C 148.832031 61.816406 148.925781 61.722656 148.925781 61.605469 Z M 148.925781 61.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 149.4375 61.230469 C 149.4375 61.113281 149.34375 61.019531 149.226562 61.019531 C 149.109375 61.019531 149.015625 61.113281 149.015625 61.230469 C 149.015625 61.347656 149.109375 61.441406 149.226562 61.441406 C 149.34375 61.441406 149.4375 61.347656 149.4375 61.230469 Z M 149.4375 61.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 149.464844 59.359375 C 149.464844 59.242188 149.371094 59.148438 149.253906 59.148438 C 149.136719 59.148438 149.042969 59.242188 149.042969 59.359375 C 149.042969 59.476562 149.136719 59.570312 149.253906 59.570312 C 149.371094 59.570312 149.464844 59.476562 149.464844 59.359375 Z M 149.464844 59.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 148 58.28125 C 148 58.164062 147.90625 58.070312 147.789062 58.070312 C 147.671875 58.070312 147.578125 58.164062 147.578125 58.28125 C 147.578125 58.398438 147.671875 58.492188 147.789062 58.492188 C 147.90625 58.492188 148 58.398438 148 58.28125 Z M 148 58.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 144.746094 56.382812 C 144.746094 56.265625 144.652344 56.171875 144.535156 56.171875 C 144.417969 56.171875 144.324219 56.265625 144.324219 56.382812 C 144.324219 56.5 144.417969 56.59375 144.535156 56.59375 C 144.652344 56.59375 144.746094 56.5 144.746094 56.382812 Z M 144.746094 56.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 144.535156 58.492188 C 144.535156 58.375 144.441406 58.28125 144.324219 58.28125 C 144.207031 58.28125 144.113281 58.375 144.113281 58.492188 C 144.113281 58.609375 144.207031 58.703125 144.324219 58.703125 C 144.441406 58.703125 144.535156 58.609375 144.535156 58.492188 Z M 144.535156 58.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 142.785156 58.546875 C 142.785156 58.429688 142.691406 58.335938 142.574219 58.335938 C 142.457031 58.335938 142.363281 58.429688 142.363281 58.546875 C 142.363281 58.664062 142.457031 58.757812 142.574219 58.757812 C 142.691406 58.757812 142.785156 58.664062 142.785156 58.546875 Z M 142.785156 58.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 141.71875 59.085938 C 141.71875 58.96875 141.625 58.875 141.507812 58.875 C 141.390625 58.875 141.296875 58.96875 141.296875 59.085938 C 141.296875 59.203125 141.390625 59.296875 141.507812 59.296875 C 141.625 59.296875 141.71875 59.203125 141.71875 59.085938 Z M 141.71875 59.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 140.601562 61.292969 C 140.601562 61.175781 140.507812 61.082031 140.390625 61.082031 C 140.273438 61.082031 140.179688 61.175781 140.179688 61.292969 C 140.179688 61.410156 140.273438 61.503906 140.390625 61.503906 C 140.507812 61.503906 140.601562 61.410156 140.601562 61.292969 Z M 140.601562 61.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 140.625 61.699219 C 140.625 61.582031 140.53125 61.488281 140.414062 61.488281 C 140.296875 61.488281 140.203125 61.582031 140.203125 61.699219 C 140.203125 61.816406 140.296875 61.910156 140.414062 61.910156 C 140.53125 61.910156 140.625 61.816406 140.625 61.699219 Z M 140.625 61.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 139.699219 63.421875 C 139.699219 63.304688 139.605469 63.210938 139.488281 63.210938 C 139.371094 63.210938 139.277344 63.304688 139.277344 63.421875 C 139.277344 63.539062 139.371094 63.632812 139.488281 63.632812 C 139.605469 63.632812 139.699219 63.539062 139.699219 63.421875 Z M 139.699219 63.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 138.964844 66.875 C 138.964844 66.757812 138.871094 66.664062 138.753906 66.664062 C 138.636719 66.664062 138.542969 66.757812 138.542969 66.875 C 138.542969 66.992188 138.636719 67.085938 138.753906 67.085938 C 138.871094 67.085938 138.964844 66.992188 138.964844 66.875 Z M 138.964844 66.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 136.523438 67.207031 C 136.523438 67.089844 136.429688 66.996094 136.3125 66.996094 C 136.195312 66.996094 136.101562 67.089844 136.101562 67.207031 C 136.101562 67.324219 136.195312 67.417969 136.3125 67.417969 C 136.429688 67.417969 136.523438 67.324219 136.523438 67.207031 Z M 136.523438 67.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 136.46875 67.054688 C 136.46875 66.9375 136.375 66.84375 136.257812 66.84375 C 136.140625 66.84375 136.046875 66.9375 136.046875 67.054688 C 136.046875 67.171875 136.140625 67.265625 136.257812 67.265625 C 136.375 67.265625 136.46875 67.171875 136.46875 67.054688 Z M 136.46875 67.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 134.628906 69.242188 C 134.628906 69.125 134.535156 69.03125 134.417969 69.03125 C 134.300781 69.03125 134.207031 69.125 134.207031 69.242188 C 134.207031 69.359375 134.300781 69.453125 134.417969 69.453125 C 134.535156 69.453125 134.628906 69.359375 134.628906 69.242188 Z M 134.628906 69.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 138.375 67.089844 C 138.375 66.972656 138.28125 66.878906 138.164062 66.878906 C 138.046875 66.878906 137.953125 66.972656 137.953125 67.089844 C 137.953125 67.207031 138.046875 67.300781 138.164062 67.300781 C 138.28125 67.300781 138.375 67.207031 138.375 67.089844 Z M 138.375 67.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.113281 63.953125 C 135.113281 63.835938 135.019531 63.742188 134.902344 63.742188 C 134.785156 63.742188 134.691406 63.835938 134.691406 63.953125 C 134.691406 64.070312 134.785156 64.164062 134.902344 64.164062 C 135.019531 64.164062 135.113281 64.070312 135.113281 63.953125 Z M 135.113281 63.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 134.097656 60.664062 C 134.097656 60.546875 134.003906 60.453125 133.886719 60.453125 C 133.769531 60.453125 133.675781 60.546875 133.675781 60.664062 C 133.675781 60.78125 133.769531 60.875 133.886719 60.875 C 134.003906 60.875 134.097656 60.78125 134.097656 60.664062 Z M 134.097656 60.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.328125 54.289062 C 133.328125 54.171875 133.234375 54.078125 133.117188 54.078125 C 133 54.078125 132.90625 54.171875 132.90625 54.289062 C 132.90625 54.40625 133 54.5 133.117188 54.5 C 133.234375 54.5 133.328125 54.40625 133.328125 54.289062 Z M 133.328125 54.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.554688 53.8125 C 133.554688 53.695312 133.460938 53.601562 133.34375 53.601562 C 133.226562 53.601562 133.132812 53.695312 133.132812 53.8125 C 133.132812 53.929688 133.226562 54.023438 133.34375 54.023438 C 133.460938 54.023438 133.554688 53.929688 133.554688 53.8125 Z M 133.554688 53.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 131.4375 56.378906 C 131.4375 56.261719 131.34375 56.167969 131.226562 56.167969 C 131.109375 56.167969 131.015625 56.261719 131.015625 56.378906 C 131.015625 56.496094 131.109375 56.589844 131.226562 56.589844 C 131.34375 56.589844 131.4375 56.496094 131.4375 56.378906 Z M 131.4375 56.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 134.140625 55.734375 C 134.140625 55.617188 134.046875 55.523438 133.929688 55.523438 C 133.8125 55.523438 133.71875 55.617188 133.71875 55.734375 C 133.71875 55.851562 133.8125 55.945312 133.929688 55.945312 C 134.046875 55.945312 134.140625 55.851562 134.140625 55.734375 Z M 134.140625 55.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.988281 57.300781 C 132.988281 57.183594 132.894531 57.089844 132.777344 57.089844 C 132.660156 57.089844 132.566406 57.183594 132.566406 57.300781 C 132.566406 57.417969 132.660156 57.511719 132.777344 57.511719 C 132.894531 57.511719 132.988281 57.417969 132.988281 57.300781 Z M 132.988281 57.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.242188 58.867188 C 132.242188 58.75 132.148438 58.65625 132.03125 58.65625 C 131.914062 58.65625 131.820312 58.75 131.820312 58.867188 C 131.820312 58.984375 131.914062 59.078125 132.03125 59.078125 C 132.148438 59.078125 132.242188 58.984375 132.242188 58.867188 Z M 132.242188 58.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 127.96875 56.738281 C 127.96875 56.621094 127.875 56.527344 127.757812 56.527344 C 127.640625 56.527344 127.546875 56.621094 127.546875 56.738281 C 127.546875 56.855469 127.640625 56.949219 127.757812 56.949219 C 127.875 56.949219 127.96875 56.855469 127.96875 56.738281 Z M 127.96875 56.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 129.636719 56.933594 C 129.636719 56.816406 129.542969 56.722656 129.425781 56.722656 C 129.308594 56.722656 129.214844 56.816406 129.214844 56.933594 C 129.214844 57.050781 129.308594 57.144531 129.425781 57.144531 C 129.542969 57.144531 129.636719 57.050781 129.636719 56.933594 Z M 129.636719 56.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 129.535156 56.785156 C 129.535156 56.667969 129.441406 56.574219 129.324219 56.574219 C 129.207031 56.574219 129.113281 56.667969 129.113281 56.785156 C 129.113281 56.902344 129.207031 56.996094 129.324219 56.996094 C 129.441406 56.996094 129.535156 56.902344 129.535156 56.785156 Z M 129.535156 56.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.589844 55.175781 C 130.589844 55.058594 130.496094 54.964844 130.378906 54.964844 C 130.261719 54.964844 130.167969 55.058594 130.167969 55.175781 C 130.167969 55.292969 130.261719 55.386719 130.378906 55.386719 C 130.496094 55.386719 130.589844 55.292969 130.589844 55.175781 Z M 130.589844 55.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.101562 51.945312 C 133.101562 51.828125 133.007812 51.734375 132.890625 51.734375 C 132.773438 51.734375 132.679688 51.828125 132.679688 51.945312 C 132.679688 52.0625 132.773438 52.15625 132.890625 52.15625 C 133.007812 52.15625 133.101562 52.0625 133.101562 51.945312 Z M 133.101562 51.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.703125 51.007812 C 133.703125 50.890625 133.609375 50.796875 133.492188 50.796875 C 133.375 50.796875 133.28125 50.890625 133.28125 51.007812 C 133.28125 51.125 133.375 51.21875 133.492188 51.21875 C 133.609375 51.21875 133.703125 51.125 133.703125 51.007812 Z M 133.703125 51.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.871094 49.03125 C 132.871094 48.914062 132.777344 48.820312 132.660156 48.820312 C 132.542969 48.820312 132.449219 48.914062 132.449219 49.03125 C 132.449219 49.148438 132.542969 49.242188 132.660156 49.242188 C 132.777344 49.242188 132.871094 49.148438 132.871094 49.03125 Z M 132.871094 49.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.722656 47.972656 C 135.722656 47.855469 135.628906 47.761719 135.511719 47.761719 C 135.394531 47.761719 135.300781 47.855469 135.300781 47.972656 C 135.300781 48.089844 135.394531 48.183594 135.511719 48.183594 C 135.628906 48.183594 135.722656 48.089844 135.722656 47.972656 Z M 135.722656 47.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 138.046875 46.230469 C 138.046875 46.113281 137.953125 46.019531 137.835938 46.019531 C 137.71875 46.019531 137.625 46.113281 137.625 46.230469 C 137.625 46.347656 137.71875 46.441406 137.835938 46.441406 C 137.953125 46.441406 138.046875 46.347656 138.046875 46.230469 Z M 138.046875 46.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 137.8125 45.359375 C 137.8125 45.242188 137.71875 45.148438 137.601562 45.148438 C 137.484375 45.148438 137.390625 45.242188 137.390625 45.359375 C 137.390625 45.476562 137.484375 45.570312 137.601562 45.570312 C 137.71875 45.570312 137.8125 45.476562 137.8125 45.359375 Z M 137.8125 45.359375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 142.058594 47.167969 C 142.058594 47.050781 141.964844 46.957031 141.847656 46.957031 C 141.730469 46.957031 141.636719 47.050781 141.636719 47.167969 C 141.636719 47.285156 141.730469 47.378906 141.847656 47.378906 C 141.964844 47.378906 142.058594 47.285156 142.058594 47.167969 Z M 142.058594 47.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 139.269531 47.082031 C 139.269531 46.964844 139.175781 46.871094 139.058594 46.871094 C 138.941406 46.871094 138.847656 46.964844 138.847656 47.082031 C 138.847656 47.199219 138.941406 47.292969 139.058594 47.292969 C 139.175781 47.292969 139.269531 47.199219 139.269531 47.082031 Z M 139.269531 47.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 140.886719 43.828125 C 140.886719 43.710938 140.792969 43.617188 140.675781 43.617188 C 140.558594 43.617188 140.464844 43.710938 140.464844 43.828125 C 140.464844 43.945312 140.558594 44.039062 140.675781 44.039062 C 140.792969 44.039062 140.886719 43.945312 140.886719 43.828125 Z M 140.886719 43.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 144.339844 48.117188 C 144.339844 48 144.246094 47.90625 144.128906 47.90625 C 144.011719 47.90625 143.917969 48 143.917969 48.117188 C 143.917969 48.234375 144.011719 48.328125 144.128906 48.328125 C 144.246094 48.328125 144.339844 48.234375 144.339844 48.117188 Z M 144.339844 48.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 146.148438 49.859375 C 146.148438 49.742188 146.054688 49.648438 145.9375 49.648438 C 145.820312 49.648438 145.726562 49.742188 145.726562 49.859375 C 145.726562 49.976562 145.820312 50.070312 145.9375 50.070312 C 146.054688 50.070312 146.148438 49.976562 146.148438 49.859375 Z M 146.148438 49.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 143.308594 50.570312 C 143.308594 50.453125 143.214844 50.359375 143.097656 50.359375 C 142.980469 50.359375 142.886719 50.453125 142.886719 50.570312 C 142.886719 50.6875 142.980469 50.78125 143.097656 50.78125 C 143.214844 50.78125 143.308594 50.6875 143.308594 50.570312 Z M 143.308594 50.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 147.207031 50.253906 C 147.207031 50.136719 147.113281 50.042969 146.996094 50.042969 C 146.878906 50.042969 146.785156 50.136719 146.785156 50.253906 C 146.785156 50.371094 146.878906 50.464844 146.996094 50.464844 C 147.113281 50.464844 147.207031 50.371094 147.207031 50.253906 Z M 147.207031 50.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 150.578125 48.640625 C 150.578125 48.523438 150.484375 48.429688 150.367188 48.429688 C 150.25 48.429688 150.15625 48.523438 150.15625 48.640625 C 150.15625 48.757812 150.25 48.851562 150.367188 48.851562 C 150.484375 48.851562 150.578125 48.757812 150.578125 48.640625 Z M 150.578125 48.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 151.132812 50.011719 C 151.132812 49.894531 151.039062 49.800781 150.921875 49.800781 C 150.804688 49.800781 150.710938 49.894531 150.710938 50.011719 C 150.710938 50.128906 150.804688 50.222656 150.921875 50.222656 C 151.039062 50.222656 151.132812 50.128906 151.132812 50.011719 Z M 151.132812 50.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 149.585938 46.527344 C 149.585938 46.410156 149.492188 46.316406 149.375 46.316406 C 149.257812 46.316406 149.164062 46.410156 149.164062 46.527344 C 149.164062 46.644531 149.257812 46.738281 149.375 46.738281 C 149.492188 46.738281 149.585938 46.644531 149.585938 46.527344 Z M 149.585938 46.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 148.539062 50.160156 C 148.539062 50.042969 148.445312 49.949219 148.328125 49.949219 C 148.210938 49.949219 148.117188 50.042969 148.117188 50.160156 C 148.117188 50.277344 148.210938 50.371094 148.328125 50.371094 C 148.445312 50.371094 148.539062 50.277344 148.539062 50.160156 Z M 148.539062 50.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 149.0625 49.894531 C 149.0625 49.777344 148.96875 49.683594 148.851562 49.683594 C 148.734375 49.683594 148.640625 49.777344 148.640625 49.894531 C 148.640625 50.011719 148.734375 50.105469 148.851562 50.105469 C 148.96875 50.105469 149.0625 50.011719 149.0625 49.894531 Z M 149.0625 49.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 147.625 52.363281 C 147.625 52.246094 147.53125 52.152344 147.414062 52.152344 C 147.296875 52.152344 147.203125 52.246094 147.203125 52.363281 C 147.203125 52.480469 147.296875 52.574219 147.414062 52.574219 C 147.53125 52.574219 147.625 52.480469 147.625 52.363281 Z M 147.625 52.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 149.417969 55.597656 C 149.417969 55.480469 149.324219 55.386719 149.207031 55.386719 C 149.089844 55.386719 148.996094 55.480469 148.996094 55.597656 C 148.996094 55.714844 149.089844 55.808594 149.207031 55.808594 C 149.324219 55.808594 149.417969 55.714844 149.417969 55.597656 Z M 149.417969 55.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 146.324219 54.394531 C 146.324219 54.277344 146.230469 54.183594 146.113281 54.183594 C 145.996094 54.183594 145.902344 54.277344 145.902344 54.394531 C 145.902344 54.511719 145.996094 54.605469 146.113281 54.605469 C 146.230469 54.605469 146.324219 54.511719 146.324219 54.394531 Z M 146.324219 54.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 144.945312 54.578125 C 144.945312 54.460938 144.851562 54.367188 144.734375 54.367188 C 144.617188 54.367188 144.523438 54.460938 144.523438 54.578125 C 144.523438 54.695312 144.617188 54.789062 144.734375 54.789062 C 144.851562 54.789062 144.945312 54.695312 144.945312 54.578125 Z M 144.945312 54.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 143.394531 55.605469 C 143.394531 55.488281 143.300781 55.394531 143.183594 55.394531 C 143.066406 55.394531 142.972656 55.488281 142.972656 55.605469 C 142.972656 55.722656 143.066406 55.816406 143.183594 55.816406 C 143.300781 55.816406 143.394531 55.722656 143.394531 55.605469 Z M 143.394531 55.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 141.410156 58.109375 C 141.410156 57.992188 141.316406 57.898438 141.199219 57.898438 C 141.082031 57.898438 140.988281 57.992188 140.988281 58.109375 C 140.988281 58.226562 141.082031 58.320312 141.199219 58.320312 C 141.316406 58.320312 141.410156 58.226562 141.410156 58.109375 Z M 141.410156 58.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 142.867188 54.507812 C 142.867188 54.390625 142.773438 54.296875 142.65625 54.296875 C 142.539062 54.296875 142.445312 54.390625 142.445312 54.507812 C 142.445312 54.625 142.539062 54.71875 142.65625 54.71875 C 142.773438 54.71875 142.867188 54.625 142.867188 54.507812 Z M 142.867188 54.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 141.296875 52.351562 C 141.296875 52.234375 141.203125 52.140625 141.085938 52.140625 C 140.96875 52.140625 140.875 52.234375 140.875 52.351562 C 140.875 52.46875 140.96875 52.5625 141.085938 52.5625 C 141.203125 52.5625 141.296875 52.46875 141.296875 52.351562 Z M 141.296875 52.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 145.042969 54.203125 C 145.042969 54.085938 144.949219 53.992188 144.832031 53.992188 C 144.714844 53.992188 144.621094 54.085938 144.621094 54.203125 C 144.621094 54.320312 144.714844 54.414062 144.832031 54.414062 C 144.949219 54.414062 145.042969 54.320312 145.042969 54.203125 Z M 145.042969 54.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 141.628906 54.289062 C 141.628906 54.171875 141.535156 54.078125 141.417969 54.078125 C 141.300781 54.078125 141.207031 54.171875 141.207031 54.289062 C 141.207031 54.40625 141.300781 54.5 141.417969 54.5 C 141.535156 54.5 141.628906 54.40625 141.628906 54.289062 Z M 141.628906 54.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 141.339844 54.316406 C 141.339844 54.199219 141.246094 54.105469 141.128906 54.105469 C 141.011719 54.105469 140.917969 54.199219 140.917969 54.316406 C 140.917969 54.433594 141.011719 54.527344 141.128906 54.527344 C 141.246094 54.527344 141.339844 54.433594 141.339844 54.316406 Z M 141.339844 54.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 142.949219 57.058594 C 142.949219 56.941406 142.855469 56.847656 142.738281 56.847656 C 142.621094 56.847656 142.527344 56.941406 142.527344 57.058594 C 142.527344 57.175781 142.621094 57.269531 142.738281 57.269531 C 142.855469 57.269531 142.949219 57.175781 142.949219 57.058594 Z M 142.949219 57.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 143.8125 58.917969 C 143.8125 58.800781 143.71875 58.707031 143.601562 58.707031 C 143.484375 58.707031 143.390625 58.800781 143.390625 58.917969 C 143.390625 59.035156 143.484375 59.128906 143.601562 59.128906 C 143.71875 59.128906 143.8125 59.035156 143.8125 58.917969 Z M 143.8125 58.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 138.484375 59.328125 C 138.484375 59.210938 138.390625 59.117188 138.273438 59.117188 C 138.15625 59.117188 138.0625 59.210938 138.0625 59.328125 C 138.0625 59.445312 138.15625 59.539062 138.273438 59.539062 C 138.390625 59.539062 138.484375 59.445312 138.484375 59.328125 Z M 138.484375 59.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 138.683594 57.605469 C 138.683594 57.488281 138.589844 57.394531 138.472656 57.394531 C 138.355469 57.394531 138.261719 57.488281 138.261719 57.605469 C 138.261719 57.722656 138.355469 57.816406 138.472656 57.816406 C 138.589844 57.816406 138.683594 57.722656 138.683594 57.605469 Z M 138.683594 57.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 138.570312 59.871094 C 138.570312 59.753906 138.476562 59.660156 138.359375 59.660156 C 138.242188 59.660156 138.148438 59.753906 138.148438 59.871094 C 138.148438 59.988281 138.242188 60.082031 138.359375 60.082031 C 138.476562 60.082031 138.570312 59.988281 138.570312 59.871094 Z M 138.570312 59.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 138.472656 60.773438 C 138.472656 60.65625 138.378906 60.5625 138.261719 60.5625 C 138.144531 60.5625 138.050781 60.65625 138.050781 60.773438 C 138.050781 60.890625 138.144531 60.984375 138.261719 60.984375 C 138.378906 60.984375 138.472656 60.890625 138.472656 60.773438 Z M 138.472656 60.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 137.914062 63.542969 C 137.914062 63.425781 137.820312 63.332031 137.703125 63.332031 C 137.585938 63.332031 137.492188 63.425781 137.492188 63.542969 C 137.492188 63.660156 137.585938 63.753906 137.703125 63.753906 C 137.820312 63.753906 137.914062 63.660156 137.914062 63.542969 Z M 137.914062 63.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 138.78125 64.5 C 138.78125 64.382812 138.6875 64.289062 138.570312 64.289062 C 138.453125 64.289062 138.359375 64.382812 138.359375 64.5 C 138.359375 64.617188 138.453125 64.710938 138.570312 64.710938 C 138.6875 64.710938 138.78125 64.617188 138.78125 64.5 Z M 138.78125 64.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 140.140625 69.207031 C 140.140625 69.089844 140.046875 68.996094 139.929688 68.996094 C 139.8125 68.996094 139.71875 69.089844 139.71875 69.207031 C 139.71875 69.324219 139.8125 69.417969 139.929688 69.417969 C 140.046875 69.417969 140.140625 69.324219 140.140625 69.207031 Z M 140.140625 69.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.703125 70.085938 C 135.703125 69.96875 135.609375 69.875 135.492188 69.875 C 135.375 69.875 135.28125 69.96875 135.28125 70.085938 C 135.28125 70.203125 135.375 70.296875 135.492188 70.296875 C 135.609375 70.296875 135.703125 70.203125 135.703125 70.085938 Z M 135.703125 70.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.632812 72.109375 C 133.632812 71.992188 133.539062 71.898438 133.421875 71.898438 C 133.304688 71.898438 133.210938 71.992188 133.210938 72.109375 C 133.210938 72.226562 133.304688 72.320312 133.421875 72.320312 C 133.539062 72.320312 133.632812 72.226562 133.632812 72.109375 Z M 133.632812 72.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 138.441406 72.96875 C 138.441406 72.851562 138.347656 72.757812 138.230469 72.757812 C 138.113281 72.757812 138.019531 72.851562 138.019531 72.96875 C 138.019531 73.085938 138.113281 73.179688 138.230469 73.179688 C 138.347656 73.179688 138.441406 73.085938 138.441406 72.96875 Z M 138.441406 72.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.089844 80.148438 C 135.089844 80.03125 134.996094 79.9375 134.878906 79.9375 C 134.761719 79.9375 134.667969 80.03125 134.667969 80.148438 C 134.667969 80.265625 134.761719 80.359375 134.878906 80.359375 C 134.996094 80.359375 135.089844 80.265625 135.089844 80.148438 Z M 135.089844 80.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.386719 81.9375 C 135.386719 81.820312 135.292969 81.726562 135.175781 81.726562 C 135.058594 81.726562 134.964844 81.820312 134.964844 81.9375 C 134.964844 82.054688 135.058594 82.148438 135.175781 82.148438 C 135.292969 82.148438 135.386719 82.054688 135.386719 81.9375 Z M 135.386719 81.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 134.660156 83.398438 C 134.660156 83.28125 134.566406 83.1875 134.449219 83.1875 C 134.332031 83.1875 134.238281 83.28125 134.238281 83.398438 C 134.238281 83.515625 134.332031 83.609375 134.449219 83.609375 C 134.566406 83.609375 134.660156 83.515625 134.660156 83.398438 Z M 134.660156 83.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.132812 83.464844 C 135.132812 83.347656 135.039062 83.253906 134.921875 83.253906 C 134.804688 83.253906 134.710938 83.347656 134.710938 83.464844 C 134.710938 83.582031 134.804688 83.675781 134.921875 83.675781 C 135.039062 83.675781 135.132812 83.582031 135.132812 83.464844 Z M 135.132812 83.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.148438 88.386719 C 133.148438 88.269531 133.054688 88.175781 132.9375 88.175781 C 132.820312 88.175781 132.726562 88.269531 132.726562 88.386719 C 132.726562 88.503906 132.820312 88.597656 132.9375 88.597656 C 133.054688 88.597656 133.148438 88.503906 133.148438 88.386719 Z M 133.148438 88.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.628906 87.371094 C 130.628906 87.253906 130.535156 87.160156 130.417969 87.160156 C 130.300781 87.160156 130.207031 87.253906 130.207031 87.371094 C 130.207031 87.488281 130.300781 87.582031 130.417969 87.582031 C 130.535156 87.582031 130.628906 87.488281 130.628906 87.371094 Z M 130.628906 87.371094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.542969 90.980469 C 128.542969 90.863281 128.449219 90.769531 128.332031 90.769531 C 128.214844 90.769531 128.121094 90.863281 128.121094 90.980469 C 128.121094 91.097656 128.214844 91.191406 128.332031 91.191406 C 128.449219 91.191406 128.542969 91.097656 128.542969 90.980469 Z M 128.542969 90.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 127.484375 88.832031 C 127.484375 88.714844 127.390625 88.621094 127.273438 88.621094 C 127.15625 88.621094 127.0625 88.714844 127.0625 88.832031 C 127.0625 88.949219 127.15625 89.042969 127.273438 89.042969 C 127.390625 89.042969 127.484375 88.949219 127.484375 88.832031 Z M 127.484375 88.832031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 129.640625 92.230469 C 129.640625 92.113281 129.546875 92.019531 129.429688 92.019531 C 129.3125 92.019531 129.21875 92.113281 129.21875 92.230469 C 129.21875 92.347656 129.3125 92.441406 129.429688 92.441406 C 129.546875 92.441406 129.640625 92.347656 129.640625 92.230469 Z M 129.640625 92.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.527344 87.914062 C 130.527344 87.796875 130.433594 87.703125 130.316406 87.703125 C 130.199219 87.703125 130.105469 87.796875 130.105469 87.914062 C 130.105469 88.03125 130.199219 88.125 130.316406 88.125 C 130.433594 88.125 130.527344 88.03125 130.527344 87.914062 Z M 130.527344 87.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.445312 88.382812 C 128.445312 88.265625 128.351562 88.171875 128.234375 88.171875 C 128.117188 88.171875 128.023438 88.265625 128.023438 88.382812 C 128.023438 88.5 128.117188 88.59375 128.234375 88.59375 C 128.351562 88.59375 128.445312 88.5 128.445312 88.382812 Z M 128.445312 88.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.390625 91.230469 C 132.390625 91.113281 132.296875 91.019531 132.179688 91.019531 C 132.0625 91.019531 131.96875 91.113281 131.96875 91.230469 C 131.96875 91.347656 132.0625 91.441406 132.179688 91.441406 C 132.296875 91.441406 132.390625 91.347656 132.390625 91.230469 Z M 132.390625 91.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.546875 90.109375 C 130.546875 89.992188 130.453125 89.898438 130.335938 89.898438 C 130.21875 89.898438 130.125 89.992188 130.125 90.109375 C 130.125 90.226562 130.21875 90.320312 130.335938 90.320312 C 130.453125 90.320312 130.546875 90.226562 130.546875 90.109375 Z M 130.546875 90.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 129.46875 88.941406 C 129.46875 88.824219 129.375 88.730469 129.257812 88.730469 C 129.140625 88.730469 129.046875 88.824219 129.046875 88.941406 C 129.046875 89.058594 129.140625 89.152344 129.257812 89.152344 C 129.375 89.152344 129.46875 89.058594 129.46875 88.941406 Z M 129.46875 88.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 127.027344 89.082031 C 127.027344 88.964844 126.933594 88.871094 126.816406 88.871094 C 126.699219 88.871094 126.605469 88.964844 126.605469 89.082031 C 126.605469 89.199219 126.699219 89.292969 126.816406 89.292969 C 126.933594 89.292969 127.027344 89.199219 127.027344 89.082031 Z M 127.027344 89.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 131.164062 88.671875 C 131.164062 88.554688 131.070312 88.460938 130.953125 88.460938 C 130.835938 88.460938 130.742188 88.554688 130.742188 88.671875 C 130.742188 88.789062 130.835938 88.882812 130.953125 88.882812 C 131.070312 88.882812 131.164062 88.789062 131.164062 88.671875 Z M 131.164062 88.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.003906 89.644531 C 132.003906 89.527344 131.910156 89.433594 131.792969 89.433594 C 131.675781 89.433594 131.582031 89.527344 131.582031 89.644531 C 131.582031 89.761719 131.675781 89.855469 131.792969 89.855469 C 131.910156 89.855469 132.003906 89.761719 132.003906 89.644531 Z M 132.003906 89.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 131.042969 94.703125 C 131.042969 94.585938 130.949219 94.492188 130.832031 94.492188 C 130.714844 94.492188 130.621094 94.585938 130.621094 94.703125 C 130.621094 94.820312 130.714844 94.914062 130.832031 94.914062 C 130.949219 94.914062 131.042969 94.820312 131.042969 94.703125 Z M 131.042969 94.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.039062 92.355469 C 128.039062 92.238281 127.945312 92.144531 127.828125 92.144531 C 127.710938 92.144531 127.617188 92.238281 127.617188 92.355469 C 127.617188 92.472656 127.710938 92.566406 127.828125 92.566406 C 127.945312 92.566406 128.039062 92.472656 128.039062 92.355469 Z M 128.039062 92.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.824219 92.265625 C 125.824219 92.148438 125.730469 92.054688 125.613281 92.054688 C 125.496094 92.054688 125.402344 92.148438 125.402344 92.265625 C 125.402344 92.382812 125.496094 92.476562 125.613281 92.476562 C 125.730469 92.476562 125.824219 92.382812 125.824219 92.265625 Z M 125.824219 92.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 127.488281 91.183594 C 127.488281 91.066406 127.394531 90.972656 127.277344 90.972656 C 127.160156 90.972656 127.066406 91.066406 127.066406 91.183594 C 127.066406 91.300781 127.160156 91.394531 127.277344 91.394531 C 127.394531 91.394531 127.488281 91.300781 127.488281 91.183594 Z M 127.488281 91.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.832031 92.089844 C 125.832031 91.972656 125.738281 91.878906 125.621094 91.878906 C 125.503906 91.878906 125.410156 91.972656 125.410156 92.089844 C 125.410156 92.207031 125.503906 92.300781 125.621094 92.300781 C 125.738281 92.300781 125.832031 92.207031 125.832031 92.089844 Z M 125.832031 92.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.128906 90.6875 C 125.128906 90.570312 125.035156 90.476562 124.917969 90.476562 C 124.800781 90.476562 124.707031 90.570312 124.707031 90.6875 C 124.707031 90.804688 124.800781 90.898438 124.917969 90.898438 C 125.035156 90.898438 125.128906 90.804688 125.128906 90.6875 Z M 125.128906 90.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 123.078125 89.320312 C 123.078125 89.203125 122.984375 89.109375 122.867188 89.109375 C 122.75 89.109375 122.65625 89.203125 122.65625 89.320312 C 122.65625 89.4375 122.75 89.53125 122.867188 89.53125 C 122.984375 89.53125 123.078125 89.4375 123.078125 89.320312 Z M 123.078125 89.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.289062 88.042969 C 122.289062 87.925781 122.195312 87.832031 122.078125 87.832031 C 121.960938 87.832031 121.867188 87.925781 121.867188 88.042969 C 121.867188 88.160156 121.960938 88.253906 122.078125 88.253906 C 122.195312 88.253906 122.289062 88.160156 122.289062 88.042969 Z M 122.289062 88.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 121.117188 89.285156 C 121.117188 89.167969 121.023438 89.074219 120.90625 89.074219 C 120.789062 89.074219 120.695312 89.167969 120.695312 89.285156 C 120.695312 89.402344 120.789062 89.496094 120.90625 89.496094 C 121.023438 89.496094 121.117188 89.402344 121.117188 89.285156 Z M 121.117188 89.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 118.90625 88.59375 C 118.90625 88.476562 118.8125 88.382812 118.695312 88.382812 C 118.578125 88.382812 118.484375 88.476562 118.484375 88.59375 C 118.484375 88.710938 118.578125 88.804688 118.695312 88.804688 C 118.8125 88.804688 118.90625 88.710938 118.90625 88.59375 Z M 118.90625 88.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.742188 87.136719 C 122.742188 87.019531 122.648438 86.925781 122.53125 86.925781 C 122.414062 86.925781 122.320312 87.019531 122.320312 87.136719 C 122.320312 87.253906 122.414062 87.347656 122.53125 87.347656 C 122.648438 87.347656 122.742188 87.253906 122.742188 87.136719 Z M 122.742188 87.136719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 121.152344 86.546875 C 121.152344 86.429688 121.058594 86.335938 120.941406 86.335938 C 120.824219 86.335938 120.730469 86.429688 120.730469 86.546875 C 120.730469 86.664062 120.824219 86.757812 120.941406 86.757812 C 121.058594 86.757812 121.152344 86.664062 121.152344 86.546875 Z M 121.152344 86.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 120.558594 82.414062 C 120.558594 82.296875 120.464844 82.203125 120.347656 82.203125 C 120.230469 82.203125 120.136719 82.296875 120.136719 82.414062 C 120.136719 82.53125 120.230469 82.625 120.347656 82.625 C 120.464844 82.625 120.558594 82.53125 120.558594 82.414062 Z M 120.558594 82.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.230469 84.921875 C 122.230469 84.804688 122.136719 84.710938 122.019531 84.710938 C 121.902344 84.710938 121.808594 84.804688 121.808594 84.921875 C 121.808594 85.039062 121.902344 85.132812 122.019531 85.132812 C 122.136719 85.132812 122.230469 85.039062 122.230469 84.921875 Z M 122.230469 84.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 124.234375 81.808594 C 124.234375 81.691406 124.140625 81.597656 124.023438 81.597656 C 123.90625 81.597656 123.8125 81.691406 123.8125 81.808594 C 123.8125 81.925781 123.90625 82.019531 124.023438 82.019531 C 124.140625 82.019531 124.234375 81.925781 124.234375 81.808594 Z M 124.234375 81.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.839844 82.269531 C 125.839844 82.152344 125.746094 82.058594 125.628906 82.058594 C 125.511719 82.058594 125.417969 82.152344 125.417969 82.269531 C 125.417969 82.386719 125.511719 82.480469 125.628906 82.480469 C 125.746094 82.480469 125.839844 82.386719 125.839844 82.269531 Z M 125.839844 82.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 127.660156 83.679688 C 127.660156 83.5625 127.566406 83.46875 127.449219 83.46875 C 127.332031 83.46875 127.238281 83.5625 127.238281 83.679688 C 127.238281 83.796875 127.332031 83.890625 127.449219 83.890625 C 127.566406 83.890625 127.660156 83.796875 127.660156 83.679688 Z M 127.660156 83.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.859375 88.820312 C 133.859375 88.703125 133.765625 88.609375 133.648438 88.609375 C 133.53125 88.609375 133.4375 88.703125 133.4375 88.820312 C 133.4375 88.9375 133.53125 89.03125 133.648438 89.03125 C 133.765625 89.03125 133.859375 88.9375 133.859375 88.820312 Z M 133.859375 88.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.652344 87.363281 C 132.652344 87.246094 132.558594 87.152344 132.441406 87.152344 C 132.324219 87.152344 132.230469 87.246094 132.230469 87.363281 C 132.230469 87.480469 132.324219 87.574219 132.441406 87.574219 C 132.558594 87.574219 132.652344 87.480469 132.652344 87.363281 Z M 132.652344 87.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.175781 84.089844 C 133.175781 83.972656 133.082031 83.878906 132.964844 83.878906 C 132.847656 83.878906 132.753906 83.972656 132.753906 84.089844 C 132.753906 84.207031 132.847656 84.300781 132.964844 84.300781 C 133.082031 84.300781 133.175781 84.207031 133.175781 84.089844 Z M 133.175781 84.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.605469 83.648438 C 132.605469 83.53125 132.511719 83.4375 132.394531 83.4375 C 132.277344 83.4375 132.183594 83.53125 132.183594 83.648438 C 132.183594 83.765625 132.277344 83.859375 132.394531 83.859375 C 132.511719 83.859375 132.605469 83.765625 132.605469 83.648438 Z M 132.605469 83.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.082031 80.394531 C 132.082031 80.277344 131.988281 80.183594 131.871094 80.183594 C 131.753906 80.183594 131.660156 80.277344 131.660156 80.394531 C 131.660156 80.511719 131.753906 80.605469 131.871094 80.605469 C 131.988281 80.605469 132.082031 80.511719 132.082031 80.394531 Z M 132.082031 80.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.683594 81.84375 C 133.683594 81.726562 133.589844 81.632812 133.472656 81.632812 C 133.355469 81.632812 133.261719 81.726562 133.261719 81.84375 C 133.261719 81.960938 133.355469 82.054688 133.472656 82.054688 C 133.589844 82.054688 133.683594 81.960938 133.683594 81.84375 Z M 133.683594 81.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.757812 82.214844 C 128.757812 82.097656 128.664062 82.003906 128.546875 82.003906 C 128.429688 82.003906 128.335938 82.097656 128.335938 82.214844 C 128.335938 82.332031 128.429688 82.425781 128.546875 82.425781 C 128.664062 82.425781 128.757812 82.332031 128.757812 82.214844 Z M 128.757812 82.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.285156 82.445312 C 128.285156 82.328125 128.191406 82.234375 128.074219 82.234375 C 127.957031 82.234375 127.863281 82.328125 127.863281 82.445312 C 127.863281 82.5625 127.957031 82.65625 128.074219 82.65625 C 128.191406 82.65625 128.285156 82.5625 128.285156 82.445312 Z M 128.285156 82.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.160156 81.015625 C 125.160156 80.898438 125.066406 80.804688 124.949219 80.804688 C 124.832031 80.804688 124.738281 80.898438 124.738281 81.015625 C 124.738281 81.132812 124.832031 81.226562 124.949219 81.226562 C 125.066406 81.226562 125.160156 81.132812 125.160156 81.015625 Z M 125.160156 81.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.140625 80.800781 C 126.140625 80.683594 126.046875 80.589844 125.929688 80.589844 C 125.8125 80.589844 125.71875 80.683594 125.71875 80.800781 C 125.71875 80.917969 125.8125 81.011719 125.929688 81.011719 C 126.046875 81.011719 126.140625 80.917969 126.140625 80.800781 Z M 126.140625 80.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 127.652344 81.871094 C 127.652344 81.753906 127.558594 81.660156 127.441406 81.660156 C 127.324219 81.660156 127.230469 81.753906 127.230469 81.871094 C 127.230469 81.988281 127.324219 82.082031 127.441406 82.082031 C 127.558594 82.082031 127.652344 81.988281 127.652344 81.871094 Z M 127.652344 81.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.351562 84.496094 C 128.351562 84.378906 128.257812 84.285156 128.140625 84.285156 C 128.023438 84.285156 127.929688 84.378906 127.929688 84.496094 C 127.929688 84.613281 128.023438 84.707031 128.140625 84.707031 C 128.257812 84.707031 128.351562 84.613281 128.351562 84.496094 Z M 128.351562 84.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 123.636719 83.25 C 123.636719 83.132812 123.542969 83.039062 123.425781 83.039062 C 123.308594 83.039062 123.214844 83.132812 123.214844 83.25 C 123.214844 83.367188 123.308594 83.460938 123.425781 83.460938 C 123.542969 83.460938 123.636719 83.367188 123.636719 83.25 Z M 123.636719 83.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.605469 84.097656 C 126.605469 83.980469 126.511719 83.886719 126.394531 83.886719 C 126.277344 83.886719 126.183594 83.980469 126.183594 84.097656 C 126.183594 84.214844 126.277344 84.308594 126.394531 84.308594 C 126.511719 84.308594 126.605469 84.214844 126.605469 84.097656 Z M 126.605469 84.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.035156 87.632812 C 125.035156 87.515625 124.941406 87.421875 124.824219 87.421875 C 124.707031 87.421875 124.613281 87.515625 124.613281 87.632812 C 124.613281 87.75 124.707031 87.84375 124.824219 87.84375 C 124.941406 87.84375 125.035156 87.75 125.035156 87.632812 Z M 125.035156 87.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.972656 92.558594 C 126.972656 92.441406 126.878906 92.347656 126.761719 92.347656 C 126.644531 92.347656 126.550781 92.441406 126.550781 92.558594 C 126.550781 92.675781 126.644531 92.769531 126.761719 92.769531 C 126.878906 92.769531 126.972656 92.675781 126.972656 92.558594 Z M 126.972656 92.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.484375 90.316406 C 128.484375 90.199219 128.390625 90.105469 128.273438 90.105469 C 128.15625 90.105469 128.0625 90.199219 128.0625 90.316406 C 128.0625 90.433594 128.15625 90.527344 128.273438 90.527344 C 128.390625 90.527344 128.484375 90.433594 128.484375 90.316406 Z M 128.484375 90.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 131.425781 91.769531 C 131.425781 91.652344 131.332031 91.558594 131.214844 91.558594 C 131.097656 91.558594 131.003906 91.652344 131.003906 91.769531 C 131.003906 91.886719 131.097656 91.980469 131.214844 91.980469 C 131.332031 91.980469 131.425781 91.886719 131.425781 91.769531 Z M 131.425781 91.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 131.050781 90.855469 C 131.050781 90.738281 130.957031 90.644531 130.839844 90.644531 C 130.722656 90.644531 130.628906 90.738281 130.628906 90.855469 C 130.628906 90.972656 130.722656 91.066406 130.839844 91.066406 C 130.957031 91.066406 131.050781 90.972656 131.050781 90.855469 Z M 131.050781 90.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.90625 91.085938 C 130.90625 90.96875 130.8125 90.875 130.695312 90.875 C 130.578125 90.875 130.484375 90.96875 130.484375 91.085938 C 130.484375 91.203125 130.578125 91.296875 130.695312 91.296875 C 130.8125 91.296875 130.90625 91.203125 130.90625 91.085938 Z M 130.90625 91.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.34375 91.914062 C 130.34375 91.796875 130.25 91.703125 130.132812 91.703125 C 130.015625 91.703125 129.921875 91.796875 129.921875 91.914062 C 129.921875 92.03125 130.015625 92.125 130.132812 92.125 C 130.25 92.125 130.34375 92.03125 130.34375 91.914062 Z M 130.34375 91.914062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.425781 93.238281 C 130.425781 93.121094 130.332031 93.027344 130.214844 93.027344 C 130.097656 93.027344 130.003906 93.121094 130.003906 93.238281 C 130.003906 93.355469 130.097656 93.449219 130.214844 93.449219 C 130.332031 93.449219 130.425781 93.355469 130.425781 93.238281 Z M 130.425781 93.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.484375 90.847656 C 132.484375 90.730469 132.390625 90.636719 132.273438 90.636719 C 132.15625 90.636719 132.0625 90.730469 132.0625 90.847656 C 132.0625 90.964844 132.15625 91.058594 132.273438 91.058594 C 132.390625 91.058594 132.484375 90.964844 132.484375 90.847656 Z M 132.484375 90.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 131.402344 90.042969 C 131.402344 89.925781 131.308594 89.832031 131.191406 89.832031 C 131.074219 89.832031 130.980469 89.925781 130.980469 90.042969 C 130.980469 90.160156 131.074219 90.253906 131.191406 90.253906 C 131.308594 90.253906 131.402344 90.160156 131.402344 90.042969 Z M 131.402344 90.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 131.582031 89.066406 C 131.582031 88.949219 131.488281 88.855469 131.371094 88.855469 C 131.253906 88.855469 131.160156 88.949219 131.160156 89.066406 C 131.160156 89.183594 131.253906 89.277344 131.371094 89.277344 C 131.488281 89.277344 131.582031 89.183594 131.582031 89.066406 Z M 131.582031 89.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.898438 85.535156 C 133.898438 85.417969 133.804688 85.324219 133.6875 85.324219 C 133.570312 85.324219 133.476562 85.417969 133.476562 85.535156 C 133.476562 85.652344 133.570312 85.746094 133.6875 85.746094 C 133.804688 85.746094 133.898438 85.652344 133.898438 85.535156 Z M 133.898438 85.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 138.59375 84.191406 C 138.59375 84.074219 138.5 83.980469 138.382812 83.980469 C 138.265625 83.980469 138.171875 84.074219 138.171875 84.191406 C 138.171875 84.308594 138.265625 84.402344 138.382812 84.402344 C 138.5 84.402344 138.59375 84.308594 138.59375 84.191406 Z M 138.59375 84.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 137.605469 83.90625 C 137.605469 83.789062 137.511719 83.695312 137.394531 83.695312 C 137.277344 83.695312 137.183594 83.789062 137.183594 83.90625 C 137.183594 84.023438 137.277344 84.117188 137.394531 84.117188 C 137.511719 84.117188 137.605469 84.023438 137.605469 83.90625 Z M 137.605469 83.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 136.390625 81.953125 C 136.390625 81.835938 136.296875 81.742188 136.179688 81.742188 C 136.0625 81.742188 135.96875 81.835938 135.96875 81.953125 C 135.96875 82.070312 136.0625 82.164062 136.179688 82.164062 C 136.296875 82.164062 136.390625 82.070312 136.390625 81.953125 Z M 136.390625 81.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 137.050781 83.785156 C 137.050781 83.667969 136.957031 83.574219 136.839844 83.574219 C 136.722656 83.574219 136.628906 83.667969 136.628906 83.785156 C 136.628906 83.902344 136.722656 83.996094 136.839844 83.996094 C 136.957031 83.996094 137.050781 83.902344 137.050781 83.785156 Z M 137.050781 83.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 138.554688 80.890625 C 138.554688 80.773438 138.460938 80.679688 138.34375 80.679688 C 138.226562 80.679688 138.132812 80.773438 138.132812 80.890625 C 138.132812 81.007812 138.226562 81.101562 138.34375 81.101562 C 138.460938 81.101562 138.554688 81.007812 138.554688 80.890625 Z M 138.554688 80.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 134.933594 79.246094 C 134.933594 79.128906 134.839844 79.035156 134.722656 79.035156 C 134.605469 79.035156 134.511719 79.128906 134.511719 79.246094 C 134.511719 79.363281 134.605469 79.457031 134.722656 79.457031 C 134.839844 79.457031 134.933594 79.363281 134.933594 79.246094 Z M 134.933594 79.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 138.863281 81.238281 C 138.863281 81.121094 138.769531 81.027344 138.652344 81.027344 C 138.535156 81.027344 138.441406 81.121094 138.441406 81.238281 C 138.441406 81.355469 138.535156 81.449219 138.652344 81.449219 C 138.769531 81.449219 138.863281 81.355469 138.863281 81.238281 Z M 138.863281 81.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.804688 82.578125 C 135.804688 82.460938 135.710938 82.367188 135.59375 82.367188 C 135.476562 82.367188 135.382812 82.460938 135.382812 82.578125 C 135.382812 82.695312 135.476562 82.789062 135.59375 82.789062 C 135.710938 82.789062 135.804688 82.695312 135.804688 82.578125 Z M 135.804688 82.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 136.144531 76.640625 C 136.144531 76.523438 136.050781 76.429688 135.933594 76.429688 C 135.816406 76.429688 135.722656 76.523438 135.722656 76.640625 C 135.722656 76.757812 135.816406 76.851562 135.933594 76.851562 C 136.050781 76.851562 136.144531 76.757812 136.144531 76.640625 Z M 136.144531 76.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.960938 76.65625 C 133.960938 76.539062 133.867188 76.445312 133.75 76.445312 C 133.632812 76.445312 133.539062 76.539062 133.539062 76.65625 C 133.539062 76.773438 133.632812 76.867188 133.75 76.867188 C 133.867188 76.867188 133.960938 76.773438 133.960938 76.65625 Z M 133.960938 76.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 136.359375 71.230469 C 136.359375 71.113281 136.265625 71.019531 136.148438 71.019531 C 136.03125 71.019531 135.9375 71.113281 135.9375 71.230469 C 135.9375 71.347656 136.03125 71.441406 136.148438 71.441406 C 136.265625 71.441406 136.359375 71.347656 136.359375 71.230469 Z M 136.359375 71.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.640625 69.449219 C 135.640625 69.332031 135.546875 69.238281 135.429688 69.238281 C 135.3125 69.238281 135.21875 69.332031 135.21875 69.449219 C 135.21875 69.566406 135.3125 69.660156 135.429688 69.660156 C 135.546875 69.660156 135.640625 69.566406 135.640625 69.449219 Z M 135.640625 69.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.445312 75.347656 C 135.445312 75.230469 135.351562 75.136719 135.234375 75.136719 C 135.117188 75.136719 135.023438 75.230469 135.023438 75.347656 C 135.023438 75.464844 135.117188 75.558594 135.234375 75.558594 C 135.351562 75.558594 135.445312 75.464844 135.445312 75.347656 Z M 135.445312 75.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 134.816406 73.964844 C 134.816406 73.847656 134.722656 73.753906 134.605469 73.753906 C 134.488281 73.753906 134.394531 73.847656 134.394531 73.964844 C 134.394531 74.082031 134.488281 74.175781 134.605469 74.175781 C 134.722656 74.175781 134.816406 74.082031 134.816406 73.964844 Z M 134.816406 73.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.019531 74.035156 C 135.019531 73.917969 134.925781 73.824219 134.808594 73.824219 C 134.691406 73.824219 134.597656 73.917969 134.597656 74.035156 C 134.597656 74.152344 134.691406 74.246094 134.808594 74.246094 C 134.925781 74.246094 135.019531 74.152344 135.019531 74.035156 Z M 135.019531 74.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 136.796875 72.527344 C 136.796875 72.410156 136.703125 72.316406 136.585938 72.316406 C 136.46875 72.316406 136.375 72.410156 136.375 72.527344 C 136.375 72.644531 136.46875 72.738281 136.585938 72.738281 C 136.703125 72.738281 136.796875 72.644531 136.796875 72.527344 Z M 136.796875 72.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 141.09375 70.296875 C 141.09375 70.179688 141 70.085938 140.882812 70.085938 C 140.765625 70.085938 140.671875 70.179688 140.671875 70.296875 C 140.671875 70.414062 140.765625 70.507812 140.882812 70.507812 C 141 70.507812 141.09375 70.414062 141.09375 70.296875 Z M 141.09375 70.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 142.433594 70.460938 C 142.433594 70.34375 142.339844 70.25 142.222656 70.25 C 142.105469 70.25 142.011719 70.34375 142.011719 70.460938 C 142.011719 70.578125 142.105469 70.671875 142.222656 70.671875 C 142.339844 70.671875 142.433594 70.578125 142.433594 70.460938 Z M 142.433594 70.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 140.859375 72.800781 C 140.859375 72.683594 140.765625 72.589844 140.648438 72.589844 C 140.53125 72.589844 140.4375 72.683594 140.4375 72.800781 C 140.4375 72.917969 140.53125 73.011719 140.648438 73.011719 C 140.765625 73.011719 140.859375 72.917969 140.859375 72.800781 Z M 140.859375 72.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 145.617188 73.285156 C 145.617188 73.167969 145.523438 73.074219 145.40625 73.074219 C 145.289062 73.074219 145.195312 73.167969 145.195312 73.285156 C 145.195312 73.402344 145.289062 73.496094 145.40625 73.496094 C 145.523438 73.496094 145.617188 73.402344 145.617188 73.285156 Z M 145.617188 73.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 144.320312 72.808594 C 144.320312 72.691406 144.226562 72.597656 144.109375 72.597656 C 143.992188 72.597656 143.898438 72.691406 143.898438 72.808594 C 143.898438 72.925781 143.992188 73.019531 144.109375 73.019531 C 144.226562 73.019531 144.320312 72.925781 144.320312 72.808594 Z M 144.320312 72.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 146.703125 73.484375 C 146.703125 73.367188 146.609375 73.273438 146.492188 73.273438 C 146.375 73.273438 146.28125 73.367188 146.28125 73.484375 C 146.28125 73.601562 146.375 73.695312 146.492188 73.695312 C 146.609375 73.695312 146.703125 73.601562 146.703125 73.484375 Z M 146.703125 73.484375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 142.964844 74.09375 C 142.964844 73.976562 142.871094 73.882812 142.753906 73.882812 C 142.636719 73.882812 142.542969 73.976562 142.542969 74.09375 C 142.542969 74.210938 142.636719 74.304688 142.753906 74.304688 C 142.871094 74.304688 142.964844 74.210938 142.964844 74.09375 Z M 142.964844 74.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 142.132812 73.894531 C 142.132812 73.777344 142.039062 73.683594 141.921875 73.683594 C 141.804688 73.683594 141.710938 73.777344 141.710938 73.894531 C 141.710938 74.011719 141.804688 74.105469 141.921875 74.105469 C 142.039062 74.105469 142.132812 74.011719 142.132812 73.894531 Z M 142.132812 73.894531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 139.625 73.320312 C 139.625 73.203125 139.53125 73.109375 139.414062 73.109375 C 139.296875 73.109375 139.203125 73.203125 139.203125 73.320312 C 139.203125 73.4375 139.296875 73.53125 139.414062 73.53125 C 139.53125 73.53125 139.625 73.4375 139.625 73.320312 Z M 139.625 73.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 139.789062 72.292969 C 139.789062 72.175781 139.695312 72.082031 139.578125 72.082031 C 139.460938 72.082031 139.367188 72.175781 139.367188 72.292969 C 139.367188 72.410156 139.460938 72.503906 139.578125 72.503906 C 139.695312 72.503906 139.789062 72.410156 139.789062 72.292969 Z M 139.789062 72.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 139.207031 69.703125 C 139.207031 69.585938 139.113281 69.492188 138.996094 69.492188 C 138.878906 69.492188 138.785156 69.585938 138.785156 69.703125 C 138.785156 69.820312 138.878906 69.914062 138.996094 69.914062 C 139.113281 69.914062 139.207031 69.820312 139.207031 69.703125 Z M 139.207031 69.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 137.777344 67.421875 C 137.777344 67.304688 137.683594 67.210938 137.566406 67.210938 C 137.449219 67.210938 137.355469 67.304688 137.355469 67.421875 C 137.355469 67.539062 137.449219 67.632812 137.566406 67.632812 C 137.683594 67.632812 137.777344 67.539062 137.777344 67.421875 Z M 137.777344 67.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 138.296875 69.179688 C 138.296875 69.0625 138.203125 68.96875 138.085938 68.96875 C 137.96875 68.96875 137.875 69.0625 137.875 69.179688 C 137.875 69.296875 137.96875 69.390625 138.085938 69.390625 C 138.203125 69.390625 138.296875 69.296875 138.296875 69.179688 Z M 138.296875 69.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 139.527344 70.347656 C 139.527344 70.230469 139.433594 70.136719 139.316406 70.136719 C 139.199219 70.136719 139.105469 70.230469 139.105469 70.347656 C 139.105469 70.464844 139.199219 70.558594 139.316406 70.558594 C 139.433594 70.558594 139.527344 70.464844 139.527344 70.347656 Z M 139.527344 70.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 134.105469 70.1875 C 134.105469 70.070312 134.011719 69.976562 133.894531 69.976562 C 133.777344 69.976562 133.683594 70.070312 133.683594 70.1875 C 133.683594 70.304688 133.777344 70.398438 133.894531 70.398438 C 134.011719 70.398438 134.105469 70.304688 134.105469 70.1875 Z M 134.105469 70.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.734375 68.339844 C 133.734375 68.222656 133.640625 68.128906 133.523438 68.128906 C 133.40625 68.128906 133.3125 68.222656 133.3125 68.339844 C 133.3125 68.457031 133.40625 68.550781 133.523438 68.550781 C 133.640625 68.550781 133.734375 68.457031 133.734375 68.339844 Z M 133.734375 68.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 134.199219 69.109375 C 134.199219 68.992188 134.105469 68.898438 133.988281 68.898438 C 133.871094 68.898438 133.777344 68.992188 133.777344 69.109375 C 133.777344 69.226562 133.871094 69.320312 133.988281 69.320312 C 134.105469 69.320312 134.199219 69.226562 134.199219 69.109375 Z M 134.199219 69.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.875 70.328125 C 132.875 70.210938 132.78125 70.117188 132.664062 70.117188 C 132.546875 70.117188 132.453125 70.210938 132.453125 70.328125 C 132.453125 70.445312 132.546875 70.539062 132.664062 70.539062 C 132.78125 70.539062 132.875 70.445312 132.875 70.328125 Z M 132.875 70.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 131.386719 65.222656 C 131.386719 65.105469 131.292969 65.011719 131.175781 65.011719 C 131.058594 65.011719 130.964844 65.105469 130.964844 65.222656 C 130.964844 65.339844 131.058594 65.433594 131.175781 65.433594 C 131.292969 65.433594 131.386719 65.339844 131.386719 65.222656 Z M 131.386719 65.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.277344 65.75 C 125.277344 65.632812 125.183594 65.539062 125.066406 65.539062 C 124.949219 65.539062 124.855469 65.632812 124.855469 65.75 C 124.855469 65.867188 124.949219 65.960938 125.066406 65.960938 C 125.183594 65.960938 125.277344 65.867188 125.277344 65.75 Z M 125.277344 65.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.035156 65.066406 C 125.035156 64.949219 124.941406 64.855469 124.824219 64.855469 C 124.707031 64.855469 124.613281 64.949219 124.613281 65.066406 C 124.613281 65.183594 124.707031 65.277344 124.824219 65.277344 C 124.941406 65.277344 125.035156 65.183594 125.035156 65.066406 Z M 125.035156 65.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 123 68.804688 C 123 68.6875 122.90625 68.59375 122.789062 68.59375 C 122.671875 68.59375 122.578125 68.6875 122.578125 68.804688 C 122.578125 68.921875 122.671875 69.015625 122.789062 69.015625 C 122.90625 69.015625 123 68.921875 123 68.804688 Z M 123 68.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 127.449219 73.046875 C 127.449219 72.929688 127.355469 72.835938 127.238281 72.835938 C 127.121094 72.835938 127.027344 72.929688 127.027344 73.046875 C 127.027344 73.164062 127.121094 73.257812 127.238281 73.257812 C 127.355469 73.257812 127.449219 73.164062 127.449219 73.046875 Z M 127.449219 73.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 131.804688 75.132812 C 131.804688 75.015625 131.710938 74.921875 131.59375 74.921875 C 131.476562 74.921875 131.382812 75.015625 131.382812 75.132812 C 131.382812 75.25 131.476562 75.34375 131.59375 75.34375 C 131.710938 75.34375 131.804688 75.25 131.804688 75.132812 Z M 131.804688 75.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.964844 74.480469 C 130.964844 74.363281 130.871094 74.269531 130.753906 74.269531 C 130.636719 74.269531 130.542969 74.363281 130.542969 74.480469 C 130.542969 74.597656 130.636719 74.691406 130.753906 74.691406 C 130.871094 74.691406 130.964844 74.597656 130.964844 74.480469 Z M 130.964844 74.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.253906 73.101562 C 132.253906 72.984375 132.160156 72.890625 132.042969 72.890625 C 131.925781 72.890625 131.832031 72.984375 131.832031 73.101562 C 131.832031 73.21875 131.925781 73.3125 132.042969 73.3125 C 132.160156 73.3125 132.253906 73.21875 132.253906 73.101562 Z M 132.253906 73.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.902344 75.308594 C 132.902344 75.191406 132.808594 75.097656 132.691406 75.097656 C 132.574219 75.097656 132.480469 75.191406 132.480469 75.308594 C 132.480469 75.425781 132.574219 75.519531 132.691406 75.519531 C 132.808594 75.519531 132.902344 75.425781 132.902344 75.308594 Z M 132.902344 75.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 136.117188 75.011719 C 136.117188 74.894531 136.023438 74.800781 135.90625 74.800781 C 135.789062 74.800781 135.695312 74.894531 135.695312 75.011719 C 135.695312 75.128906 135.789062 75.222656 135.90625 75.222656 C 136.023438 75.222656 136.117188 75.128906 136.117188 75.011719 Z M 136.117188 75.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 134.886719 75.886719 C 134.886719 75.769531 134.792969 75.675781 134.675781 75.675781 C 134.558594 75.675781 134.464844 75.769531 134.464844 75.886719 C 134.464844 76.003906 134.558594 76.097656 134.675781 76.097656 C 134.792969 76.097656 134.886719 76.003906 134.886719 75.886719 Z M 134.886719 75.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.273438 76.609375 C 133.273438 76.492188 133.179688 76.398438 133.0625 76.398438 C 132.945312 76.398438 132.851562 76.492188 132.851562 76.609375 C 132.851562 76.726562 132.945312 76.820312 133.0625 76.820312 C 133.179688 76.820312 133.273438 76.726562 133.273438 76.609375 Z M 133.273438 76.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.378906 81.222656 C 132.378906 81.105469 132.285156 81.011719 132.167969 81.011719 C 132.050781 81.011719 131.957031 81.105469 131.957031 81.222656 C 131.957031 81.339844 132.050781 81.433594 132.167969 81.433594 C 132.285156 81.433594 132.378906 81.339844 132.378906 81.222656 Z M 132.378906 81.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 134.824219 79.910156 C 134.824219 79.792969 134.730469 79.699219 134.613281 79.699219 C 134.496094 79.699219 134.402344 79.792969 134.402344 79.910156 C 134.402344 80.027344 134.496094 80.121094 134.613281 80.121094 C 134.730469 80.121094 134.824219 80.027344 134.824219 79.910156 Z M 134.824219 79.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.566406 77.441406 C 135.566406 77.324219 135.472656 77.230469 135.355469 77.230469 C 135.238281 77.230469 135.144531 77.324219 135.144531 77.441406 C 135.144531 77.558594 135.238281 77.652344 135.355469 77.652344 C 135.472656 77.652344 135.566406 77.558594 135.566406 77.441406 Z M 135.566406 77.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 137.960938 77.980469 C 137.960938 77.863281 137.867188 77.769531 137.75 77.769531 C 137.632812 77.769531 137.539062 77.863281 137.539062 77.980469 C 137.539062 78.097656 137.632812 78.191406 137.75 78.191406 C 137.867188 78.191406 137.960938 78.097656 137.960938 77.980469 Z M 137.960938 77.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.753906 78.542969 C 135.753906 78.425781 135.660156 78.332031 135.542969 78.332031 C 135.425781 78.332031 135.332031 78.425781 135.332031 78.542969 C 135.332031 78.660156 135.425781 78.753906 135.542969 78.753906 C 135.660156 78.753906 135.753906 78.660156 135.753906 78.542969 Z M 135.753906 78.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.28125 77.652344 C 132.28125 77.535156 132.1875 77.441406 132.070312 77.441406 C 131.953125 77.441406 131.859375 77.535156 131.859375 77.652344 C 131.859375 77.769531 131.953125 77.863281 132.070312 77.863281 C 132.1875 77.863281 132.28125 77.769531 132.28125 77.652344 Z M 132.28125 77.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.257812 71.589844 C 130.257812 71.472656 130.164062 71.378906 130.046875 71.378906 C 129.929688 71.378906 129.835938 71.472656 129.835938 71.589844 C 129.835938 71.707031 129.929688 71.800781 130.046875 71.800781 C 130.164062 71.800781 130.257812 71.707031 130.257812 71.589844 Z M 130.257812 71.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 129.464844 72.691406 C 129.464844 72.574219 129.371094 72.480469 129.253906 72.480469 C 129.136719 72.480469 129.042969 72.574219 129.042969 72.691406 C 129.042969 72.808594 129.136719 72.902344 129.253906 72.902344 C 129.371094 72.902344 129.464844 72.808594 129.464844 72.691406 Z M 129.464844 72.691406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.046875 71.921875 C 130.046875 71.804688 129.953125 71.710938 129.835938 71.710938 C 129.71875 71.710938 129.625 71.804688 129.625 71.921875 C 129.625 72.039062 129.71875 72.132812 129.835938 72.132812 C 129.953125 72.132812 130.046875 72.039062 130.046875 71.921875 Z M 130.046875 71.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.84375 70.675781 C 128.84375 70.558594 128.75 70.464844 128.632812 70.464844 C 128.515625 70.464844 128.421875 70.558594 128.421875 70.675781 C 128.421875 70.792969 128.515625 70.886719 128.632812 70.886719 C 128.75 70.886719 128.84375 70.792969 128.84375 70.675781 Z M 128.84375 70.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 129.792969 71.070312 C 129.792969 70.953125 129.699219 70.859375 129.582031 70.859375 C 129.464844 70.859375 129.371094 70.953125 129.371094 71.070312 C 129.371094 71.1875 129.464844 71.28125 129.582031 71.28125 C 129.699219 71.28125 129.792969 71.1875 129.792969 71.070312 Z M 129.792969 71.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.886719 70.132812 C 133.886719 70.015625 133.792969 69.921875 133.675781 69.921875 C 133.558594 69.921875 133.464844 70.015625 133.464844 70.132812 C 133.464844 70.25 133.558594 70.34375 133.675781 70.34375 C 133.792969 70.34375 133.886719 70.25 133.886719 70.132812 Z M 133.886719 70.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 134.507812 69.152344 C 134.507812 69.035156 134.414062 68.941406 134.296875 68.941406 C 134.179688 68.941406 134.085938 69.035156 134.085938 69.152344 C 134.085938 69.269531 134.179688 69.363281 134.296875 69.363281 C 134.414062 69.363281 134.507812 69.269531 134.507812 69.152344 Z M 134.507812 69.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.976562 72.5625 C 133.976562 72.445312 133.882812 72.351562 133.765625 72.351562 C 133.648438 72.351562 133.554688 72.445312 133.554688 72.5625 C 133.554688 72.679688 133.648438 72.773438 133.765625 72.773438 C 133.882812 72.773438 133.976562 72.679688 133.976562 72.5625 Z M 133.976562 72.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.617188 71.996094 C 132.617188 71.878906 132.523438 71.785156 132.40625 71.785156 C 132.289062 71.785156 132.195312 71.878906 132.195312 71.996094 C 132.195312 72.113281 132.289062 72.207031 132.40625 72.207031 C 132.523438 72.207031 132.617188 72.113281 132.617188 71.996094 Z M 132.617188 71.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.050781 71.503906 C 130.050781 71.386719 129.957031 71.292969 129.839844 71.292969 C 129.722656 71.292969 129.628906 71.386719 129.628906 71.503906 C 129.628906 71.621094 129.722656 71.714844 129.839844 71.714844 C 129.957031 71.714844 130.050781 71.621094 130.050781 71.503906 Z M 130.050781 71.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 129.570312 74.335938 C 129.570312 74.21875 129.476562 74.125 129.359375 74.125 C 129.242188 74.125 129.148438 74.21875 129.148438 74.335938 C 129.148438 74.453125 129.242188 74.546875 129.359375 74.546875 C 129.476562 74.546875 129.570312 74.453125 129.570312 74.335938 Z M 129.570312 74.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.375 73.054688 C 128.375 72.9375 128.28125 72.84375 128.164062 72.84375 C 128.046875 72.84375 127.953125 72.9375 127.953125 73.054688 C 127.953125 73.171875 128.046875 73.265625 128.164062 73.265625 C 128.28125 73.265625 128.375 73.171875 128.375 73.054688 Z M 128.375 73.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 129.785156 68.496094 C 129.785156 68.378906 129.691406 68.285156 129.574219 68.285156 C 129.457031 68.285156 129.363281 68.378906 129.363281 68.496094 C 129.363281 68.613281 129.457031 68.707031 129.574219 68.707031 C 129.691406 68.707031 129.785156 68.613281 129.785156 68.496094 Z M 129.785156 68.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.699219 70.050781 C 126.699219 69.933594 126.605469 69.839844 126.488281 69.839844 C 126.371094 69.839844 126.277344 69.933594 126.277344 70.050781 C 126.277344 70.167969 126.371094 70.261719 126.488281 70.261719 C 126.605469 70.261719 126.699219 70.167969 126.699219 70.050781 Z M 126.699219 70.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.71875 71.917969 C 122.71875 71.800781 122.625 71.707031 122.507812 71.707031 C 122.390625 71.707031 122.296875 71.800781 122.296875 71.917969 C 122.296875 72.035156 122.390625 72.128906 122.507812 72.128906 C 122.625 72.128906 122.71875 72.035156 122.71875 71.917969 Z M 122.71875 71.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 124.429688 69.078125 C 124.429688 68.960938 124.335938 68.867188 124.21875 68.867188 C 124.101562 68.867188 124.007812 68.960938 124.007812 69.078125 C 124.007812 69.195312 124.101562 69.289062 124.21875 69.289062 C 124.335938 69.289062 124.429688 69.195312 124.429688 69.078125 Z M 124.429688 69.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.445312 70.851562 C 122.445312 70.734375 122.351562 70.640625 122.234375 70.640625 C 122.117188 70.640625 122.023438 70.734375 122.023438 70.851562 C 122.023438 70.96875 122.117188 71.0625 122.234375 71.0625 C 122.351562 71.0625 122.445312 70.96875 122.445312 70.851562 Z M 122.445312 70.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.050781 70.789062 C 125.050781 70.671875 124.957031 70.578125 124.839844 70.578125 C 124.722656 70.578125 124.628906 70.671875 124.628906 70.789062 C 124.628906 70.90625 124.722656 71 124.839844 71 C 124.957031 71 125.050781 70.90625 125.050781 70.789062 Z M 125.050781 70.789062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 129.902344 70.5 C 129.902344 70.382812 129.808594 70.289062 129.691406 70.289062 C 129.574219 70.289062 129.480469 70.382812 129.480469 70.5 C 129.480469 70.617188 129.574219 70.710938 129.691406 70.710938 C 129.808594 70.710938 129.902344 70.617188 129.902344 70.5 Z M 129.902344 70.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.351562 69.726562 C 132.351562 69.609375 132.257812 69.515625 132.140625 69.515625 C 132.023438 69.515625 131.929688 69.609375 131.929688 69.726562 C 131.929688 69.84375 132.023438 69.9375 132.140625 69.9375 C 132.257812 69.9375 132.351562 69.84375 132.351562 69.726562 Z M 132.351562 69.726562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.914062 68.25 C 133.914062 68.132812 133.820312 68.039062 133.703125 68.039062 C 133.585938 68.039062 133.492188 68.132812 133.492188 68.25 C 133.492188 68.367188 133.585938 68.460938 133.703125 68.460938 C 133.820312 68.460938 133.914062 68.367188 133.914062 68.25 Z M 133.914062 68.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 129.523438 69.089844 C 129.523438 68.972656 129.429688 68.878906 129.3125 68.878906 C 129.195312 68.878906 129.101562 68.972656 129.101562 69.089844 C 129.101562 69.207031 129.195312 69.300781 129.3125 69.300781 C 129.429688 69.300781 129.523438 69.207031 129.523438 69.089844 Z M 129.523438 69.089844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 127.234375 72.429688 C 127.234375 72.3125 127.140625 72.21875 127.023438 72.21875 C 126.90625 72.21875 126.8125 72.3125 126.8125 72.429688 C 126.8125 72.546875 126.90625 72.640625 127.023438 72.640625 C 127.140625 72.640625 127.234375 72.546875 127.234375 72.429688 Z M 127.234375 72.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.460938 70.902344 C 130.460938 70.785156 130.367188 70.691406 130.25 70.691406 C 130.132812 70.691406 130.039062 70.785156 130.039062 70.902344 C 130.039062 71.019531 130.132812 71.113281 130.25 71.113281 C 130.367188 71.113281 130.460938 71.019531 130.460938 70.902344 Z M 130.460938 70.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.746094 73.4375 C 128.746094 73.320312 128.652344 73.226562 128.535156 73.226562 C 128.417969 73.226562 128.324219 73.320312 128.324219 73.4375 C 128.324219 73.554688 128.417969 73.648438 128.535156 73.648438 C 128.652344 73.648438 128.746094 73.554688 128.746094 73.4375 Z M 128.746094 73.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.917969 72.742188 C 128.917969 72.625 128.824219 72.53125 128.707031 72.53125 C 128.589844 72.53125 128.496094 72.625 128.496094 72.742188 C 128.496094 72.859375 128.589844 72.953125 128.707031 72.953125 C 128.824219 72.953125 128.917969 72.859375 128.917969 72.742188 Z M 128.917969 72.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.488281 71.761719 C 128.488281 71.644531 128.394531 71.550781 128.277344 71.550781 C 128.160156 71.550781 128.066406 71.644531 128.066406 71.761719 C 128.066406 71.878906 128.160156 71.972656 128.277344 71.972656 C 128.394531 71.972656 128.488281 71.878906 128.488281 71.761719 Z M 128.488281 71.761719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 129.21875 71.03125 C 129.21875 70.914062 129.125 70.820312 129.007812 70.820312 C 128.890625 70.820312 128.796875 70.914062 128.796875 71.03125 C 128.796875 71.148438 128.890625 71.242188 129.007812 71.242188 C 129.125 71.242188 129.21875 71.148438 129.21875 71.03125 Z M 129.21875 71.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 131.25 71.382812 C 131.25 71.265625 131.15625 71.171875 131.039062 71.171875 C 130.921875 71.171875 130.828125 71.265625 130.828125 71.382812 C 130.828125 71.5 130.921875 71.59375 131.039062 71.59375 C 131.15625 71.59375 131.25 71.5 131.25 71.382812 Z M 131.25 71.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 131.09375 74.554688 C 131.09375 74.4375 131 74.34375 130.882812 74.34375 C 130.765625 74.34375 130.671875 74.4375 130.671875 74.554688 C 130.671875 74.671875 130.765625 74.765625 130.882812 74.765625 C 131 74.765625 131.09375 74.671875 131.09375 74.554688 Z M 131.09375 74.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 131.25 75.710938 C 131.25 75.59375 131.15625 75.5 131.039062 75.5 C 130.921875 75.5 130.828125 75.59375 130.828125 75.710938 C 130.828125 75.828125 130.921875 75.921875 131.039062 75.921875 C 131.15625 75.921875 131.25 75.828125 131.25 75.710938 Z M 131.25 75.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 131.914062 75.964844 C 131.914062 75.847656 131.820312 75.753906 131.703125 75.753906 C 131.585938 75.753906 131.492188 75.847656 131.492188 75.964844 C 131.492188 76.082031 131.585938 76.175781 131.703125 76.175781 C 131.820312 76.175781 131.914062 76.082031 131.914062 75.964844 Z M 131.914062 75.964844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.605469 79.027344 C 133.605469 78.910156 133.511719 78.816406 133.394531 78.816406 C 133.277344 78.816406 133.183594 78.910156 133.183594 79.027344 C 133.183594 79.144531 133.277344 79.238281 133.394531 79.238281 C 133.511719 79.238281 133.605469 79.144531 133.605469 79.027344 Z M 133.605469 79.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 134.210938 79.589844 C 134.210938 79.472656 134.117188 79.378906 134 79.378906 C 133.882812 79.378906 133.789062 79.472656 133.789062 79.589844 C 133.789062 79.707031 133.882812 79.800781 134 79.800781 C 134.117188 79.800781 134.210938 79.707031 134.210938 79.589844 Z M 134.210938 79.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.324219 81.195312 C 133.324219 81.078125 133.230469 80.984375 133.113281 80.984375 C 132.996094 80.984375 132.902344 81.078125 132.902344 81.195312 C 132.902344 81.3125 132.996094 81.40625 133.113281 81.40625 C 133.230469 81.40625 133.324219 81.3125 133.324219 81.195312 Z M 133.324219 81.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.546875 80.273438 C 135.546875 80.15625 135.453125 80.0625 135.335938 80.0625 C 135.21875 80.0625 135.125 80.15625 135.125 80.273438 C 135.125 80.390625 135.21875 80.484375 135.335938 80.484375 C 135.453125 80.484375 135.546875 80.390625 135.546875 80.273438 Z M 135.546875 80.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.519531 77.953125 C 135.519531 77.835938 135.425781 77.742188 135.308594 77.742188 C 135.191406 77.742188 135.097656 77.835938 135.097656 77.953125 C 135.097656 78.070312 135.191406 78.164062 135.308594 78.164062 C 135.425781 78.164062 135.519531 78.070312 135.519531 77.953125 Z M 135.519531 77.953125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 134.949219 76.324219 C 134.949219 76.207031 134.855469 76.113281 134.738281 76.113281 C 134.621094 76.113281 134.527344 76.207031 134.527344 76.324219 C 134.527344 76.441406 134.621094 76.535156 134.738281 76.535156 C 134.855469 76.535156 134.949219 76.441406 134.949219 76.324219 Z M 134.949219 76.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 137.007812 76.632812 C 137.007812 76.515625 136.914062 76.421875 136.796875 76.421875 C 136.679688 76.421875 136.585938 76.515625 136.585938 76.632812 C 136.585938 76.75 136.679688 76.84375 136.796875 76.84375 C 136.914062 76.84375 137.007812 76.75 137.007812 76.632812 Z M 137.007812 76.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 136.632812 77.597656 C 136.632812 77.480469 136.539062 77.386719 136.421875 77.386719 C 136.304688 77.386719 136.210938 77.480469 136.210938 77.597656 C 136.210938 77.714844 136.304688 77.808594 136.421875 77.808594 C 136.539062 77.808594 136.632812 77.714844 136.632812 77.597656 Z M 136.632812 77.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 137.542969 78.367188 C 137.542969 78.25 137.449219 78.15625 137.332031 78.15625 C 137.214844 78.15625 137.121094 78.25 137.121094 78.367188 C 137.121094 78.484375 137.214844 78.578125 137.332031 78.578125 C 137.449219 78.578125 137.542969 78.484375 137.542969 78.367188 Z M 137.542969 78.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 134.804688 81.011719 C 134.804688 80.894531 134.710938 80.800781 134.59375 80.800781 C 134.476562 80.800781 134.382812 80.894531 134.382812 81.011719 C 134.382812 81.128906 134.476562 81.222656 134.59375 81.222656 C 134.710938 81.222656 134.804688 81.128906 134.804688 81.011719 Z M 134.804688 81.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 134.371094 77.3125 C 134.371094 77.195312 134.277344 77.101562 134.160156 77.101562 C 134.042969 77.101562 133.949219 77.195312 133.949219 77.3125 C 133.949219 77.429688 134.042969 77.523438 134.160156 77.523438 C 134.277344 77.523438 134.371094 77.429688 134.371094 77.3125 Z M 134.371094 77.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.160156 76.609375 C 135.160156 76.492188 135.066406 76.398438 134.949219 76.398438 C 134.832031 76.398438 134.738281 76.492188 134.738281 76.609375 C 134.738281 76.726562 134.832031 76.820312 134.949219 76.820312 C 135.066406 76.820312 135.160156 76.726562 135.160156 76.609375 Z M 135.160156 76.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 138.210938 74.816406 C 138.210938 74.699219 138.117188 74.605469 138 74.605469 C 137.882812 74.605469 137.789062 74.699219 137.789062 74.816406 C 137.789062 74.933594 137.882812 75.027344 138 75.027344 C 138.117188 75.027344 138.210938 74.933594 138.210938 74.816406 Z M 138.210938 74.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 140.585938 71.8125 C 140.585938 71.695312 140.492188 71.601562 140.375 71.601562 C 140.257812 71.601562 140.164062 71.695312 140.164062 71.8125 C 140.164062 71.929688 140.257812 72.023438 140.375 72.023438 C 140.492188 72.023438 140.585938 71.929688 140.585938 71.8125 Z M 140.585938 71.8125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 142.628906 70.722656 C 142.628906 70.605469 142.535156 70.511719 142.417969 70.511719 C 142.300781 70.511719 142.207031 70.605469 142.207031 70.722656 C 142.207031 70.839844 142.300781 70.933594 142.417969 70.933594 C 142.535156 70.933594 142.628906 70.839844 142.628906 70.722656 Z M 142.628906 70.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 141.578125 69.140625 C 141.578125 69.023438 141.484375 68.929688 141.367188 68.929688 C 141.25 68.929688 141.15625 69.023438 141.15625 69.140625 C 141.15625 69.257812 141.25 69.351562 141.367188 69.351562 C 141.484375 69.351562 141.578125 69.257812 141.578125 69.140625 Z M 141.578125 69.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 138.300781 70.796875 C 138.300781 70.679688 138.207031 70.585938 138.089844 70.585938 C 137.972656 70.585938 137.878906 70.679688 137.878906 70.796875 C 137.878906 70.914062 137.972656 71.007812 138.089844 71.007812 C 138.207031 71.007812 138.300781 70.914062 138.300781 70.796875 Z M 138.300781 70.796875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.84375 68.507812 C 133.84375 68.390625 133.75 68.296875 133.632812 68.296875 C 133.515625 68.296875 133.421875 68.390625 133.421875 68.507812 C 133.421875 68.625 133.515625 68.71875 133.632812 68.71875 C 133.75 68.71875 133.84375 68.625 133.84375 68.507812 Z M 133.84375 68.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.980469 72.609375 C 133.980469 72.492188 133.886719 72.398438 133.769531 72.398438 C 133.652344 72.398438 133.558594 72.492188 133.558594 72.609375 C 133.558594 72.726562 133.652344 72.820312 133.769531 72.820312 C 133.886719 72.820312 133.980469 72.726562 133.980469 72.609375 Z M 133.980469 72.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.863281 74.421875 C 133.863281 74.304688 133.769531 74.210938 133.652344 74.210938 C 133.535156 74.210938 133.441406 74.304688 133.441406 74.421875 C 133.441406 74.539062 133.535156 74.632812 133.652344 74.632812 C 133.769531 74.632812 133.863281 74.539062 133.863281 74.421875 Z M 133.863281 74.421875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.574219 73.972656 C 133.574219 73.855469 133.480469 73.761719 133.363281 73.761719 C 133.246094 73.761719 133.152344 73.855469 133.152344 73.972656 C 133.152344 74.089844 133.246094 74.183594 133.363281 74.183594 C 133.480469 74.183594 133.574219 74.089844 133.574219 73.972656 Z M 133.574219 73.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.304688 73.992188 C 133.304688 73.875 133.210938 73.78125 133.09375 73.78125 C 132.976562 73.78125 132.882812 73.875 132.882812 73.992188 C 132.882812 74.109375 132.976562 74.203125 133.09375 74.203125 C 133.210938 74.203125 133.304688 74.109375 133.304688 73.992188 Z M 133.304688 73.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.84375 75.808594 C 135.84375 75.691406 135.75 75.597656 135.632812 75.597656 C 135.515625 75.597656 135.421875 75.691406 135.421875 75.808594 C 135.421875 75.925781 135.515625 76.019531 135.632812 76.019531 C 135.75 76.019531 135.84375 75.925781 135.84375 75.808594 Z M 135.84375 75.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 136.175781 77.410156 C 136.175781 77.292969 136.082031 77.199219 135.964844 77.199219 C 135.847656 77.199219 135.753906 77.292969 135.753906 77.410156 C 135.753906 77.527344 135.847656 77.621094 135.964844 77.621094 C 136.082031 77.621094 136.175781 77.527344 136.175781 77.410156 Z M 136.175781 77.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.15625 77.019531 C 135.15625 76.902344 135.0625 76.808594 134.945312 76.808594 C 134.828125 76.808594 134.734375 76.902344 134.734375 77.019531 C 134.734375 77.136719 134.828125 77.230469 134.945312 77.230469 C 135.0625 77.230469 135.15625 77.136719 135.15625 77.019531 Z M 135.15625 77.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 140.414062 76.273438 C 140.414062 76.15625 140.320312 76.0625 140.203125 76.0625 C 140.085938 76.0625 139.992188 76.15625 139.992188 76.273438 C 139.992188 76.390625 140.085938 76.484375 140.203125 76.484375 C 140.320312 76.484375 140.414062 76.390625 140.414062 76.273438 Z M 140.414062 76.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 139.894531 72.625 C 139.894531 72.507812 139.800781 72.414062 139.683594 72.414062 C 139.566406 72.414062 139.472656 72.507812 139.472656 72.625 C 139.472656 72.742188 139.566406 72.835938 139.683594 72.835938 C 139.800781 72.835938 139.894531 72.742188 139.894531 72.625 Z M 139.894531 72.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 138.617188 69.585938 C 138.617188 69.46875 138.523438 69.375 138.40625 69.375 C 138.289062 69.375 138.195312 69.46875 138.195312 69.585938 C 138.195312 69.703125 138.289062 69.796875 138.40625 69.796875 C 138.523438 69.796875 138.617188 69.703125 138.617188 69.585938 Z M 138.617188 69.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.03125 68.464844 C 135.03125 68.347656 134.9375 68.253906 134.820312 68.253906 C 134.703125 68.253906 134.609375 68.347656 134.609375 68.464844 C 134.609375 68.582031 134.703125 68.675781 134.820312 68.675781 C 134.9375 68.675781 135.03125 68.582031 135.03125 68.464844 Z M 135.03125 68.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 136.082031 67.1875 C 136.082031 67.070312 135.988281 66.976562 135.871094 66.976562 C 135.753906 66.976562 135.660156 67.070312 135.660156 67.1875 C 135.660156 67.304688 135.753906 67.398438 135.871094 67.398438 C 135.988281 67.398438 136.082031 67.304688 136.082031 67.1875 Z M 136.082031 67.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 138.164062 62.414062 C 138.164062 62.296875 138.070312 62.203125 137.953125 62.203125 C 137.835938 62.203125 137.742188 62.296875 137.742188 62.414062 C 137.742188 62.53125 137.835938 62.625 137.953125 62.625 C 138.070312 62.625 138.164062 62.53125 138.164062 62.414062 Z M 138.164062 62.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 136.132812 63.402344 C 136.132812 63.285156 136.039062 63.191406 135.921875 63.191406 C 135.804688 63.191406 135.710938 63.285156 135.710938 63.402344 C 135.710938 63.519531 135.804688 63.613281 135.921875 63.613281 C 136.039062 63.613281 136.132812 63.519531 136.132812 63.402344 Z M 136.132812 63.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 136.976562 61.242188 C 136.976562 61.125 136.882812 61.03125 136.765625 61.03125 C 136.648438 61.03125 136.554688 61.125 136.554688 61.242188 C 136.554688 61.359375 136.648438 61.453125 136.765625 61.453125 C 136.882812 61.453125 136.976562 61.359375 136.976562 61.242188 Z M 136.976562 61.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 137.234375 62.511719 C 137.234375 62.394531 137.140625 62.300781 137.023438 62.300781 C 136.90625 62.300781 136.8125 62.394531 136.8125 62.511719 C 136.8125 62.628906 136.90625 62.722656 137.023438 62.722656 C 137.140625 62.722656 137.234375 62.628906 137.234375 62.511719 Z M 137.234375 62.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.625 60.46875 C 135.625 60.351562 135.53125 60.257812 135.414062 60.257812 C 135.296875 60.257812 135.203125 60.351562 135.203125 60.46875 C 135.203125 60.585938 135.296875 60.679688 135.414062 60.679688 C 135.53125 60.679688 135.625 60.585938 135.625 60.46875 Z M 135.625 60.46875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.578125 57.957031 C 135.578125 57.839844 135.484375 57.746094 135.367188 57.746094 C 135.25 57.746094 135.15625 57.839844 135.15625 57.957031 C 135.15625 58.074219 135.25 58.167969 135.367188 58.167969 C 135.484375 58.167969 135.578125 58.074219 135.578125 57.957031 Z M 135.578125 57.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 137.429688 54.496094 C 137.429688 54.378906 137.335938 54.285156 137.21875 54.285156 C 137.101562 54.285156 137.007812 54.378906 137.007812 54.496094 C 137.007812 54.613281 137.101562 54.707031 137.21875 54.707031 C 137.335938 54.707031 137.429688 54.613281 137.429688 54.496094 Z M 137.429688 54.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 137.53125 54.554688 C 137.53125 54.4375 137.4375 54.34375 137.320312 54.34375 C 137.203125 54.34375 137.109375 54.4375 137.109375 54.554688 C 137.109375 54.671875 137.203125 54.765625 137.320312 54.765625 C 137.4375 54.765625 137.53125 54.671875 137.53125 54.554688 Z M 137.53125 54.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 136.820312 54.050781 C 136.820312 53.933594 136.726562 53.839844 136.609375 53.839844 C 136.492188 53.839844 136.398438 53.933594 136.398438 54.050781 C 136.398438 54.167969 136.492188 54.261719 136.609375 54.261719 C 136.726562 54.261719 136.820312 54.167969 136.820312 54.050781 Z M 136.820312 54.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.535156 53.019531 C 133.535156 52.902344 133.441406 52.808594 133.324219 52.808594 C 133.207031 52.808594 133.113281 52.902344 133.113281 53.019531 C 133.113281 53.136719 133.207031 53.230469 133.324219 53.230469 C 133.441406 53.230469 133.535156 53.136719 133.535156 53.019531 Z M 133.535156 53.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.863281 52.53125 C 132.863281 52.414062 132.769531 52.320312 132.652344 52.320312 C 132.535156 52.320312 132.441406 52.414062 132.441406 52.53125 C 132.441406 52.648438 132.535156 52.742188 132.652344 52.742188 C 132.769531 52.742188 132.863281 52.648438 132.863281 52.53125 Z M 132.863281 52.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.238281 56.082031 C 130.238281 55.964844 130.144531 55.871094 130.027344 55.871094 C 129.910156 55.871094 129.816406 55.964844 129.816406 56.082031 C 129.816406 56.199219 129.910156 56.292969 130.027344 56.292969 C 130.144531 56.292969 130.238281 56.199219 130.238281 56.082031 Z M 130.238281 56.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.421875 51.972656 C 128.421875 51.855469 128.328125 51.761719 128.210938 51.761719 C 128.09375 51.761719 128 51.855469 128 51.972656 C 128 52.089844 128.09375 52.183594 128.210938 52.183594 C 128.328125 52.183594 128.421875 52.089844 128.421875 51.972656 Z M 128.421875 51.972656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.394531 51.097656 C 126.394531 50.980469 126.300781 50.886719 126.183594 50.886719 C 126.066406 50.886719 125.972656 50.980469 125.972656 51.097656 C 125.972656 51.214844 126.066406 51.308594 126.183594 51.308594 C 126.300781 51.308594 126.394531 51.214844 126.394531 51.097656 Z M 126.394531 51.097656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.375 48.652344 C 128.375 48.535156 128.28125 48.441406 128.164062 48.441406 C 128.046875 48.441406 127.953125 48.535156 127.953125 48.652344 C 127.953125 48.769531 128.046875 48.863281 128.164062 48.863281 C 128.28125 48.863281 128.375 48.769531 128.375 48.652344 Z M 128.375 48.652344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.507812 46.878906 C 128.507812 46.761719 128.414062 46.667969 128.296875 46.667969 C 128.179688 46.667969 128.085938 46.761719 128.085938 46.878906 C 128.085938 46.996094 128.179688 47.089844 128.296875 47.089844 C 128.414062 47.089844 128.507812 46.996094 128.507812 46.878906 Z M 128.507812 46.878906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.339844 45.933594 C 128.339844 45.816406 128.246094 45.722656 128.128906 45.722656 C 128.011719 45.722656 127.917969 45.816406 127.917969 45.933594 C 127.917969 46.050781 128.011719 46.144531 128.128906 46.144531 C 128.246094 46.144531 128.339844 46.050781 128.339844 45.933594 Z M 128.339844 45.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.378906 48.039062 C 130.378906 47.921875 130.285156 47.828125 130.167969 47.828125 C 130.050781 47.828125 129.957031 47.921875 129.957031 48.039062 C 129.957031 48.15625 130.050781 48.25 130.167969 48.25 C 130.285156 48.25 130.378906 48.15625 130.378906 48.039062 Z M 130.378906 48.039062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 131.625 48.703125 C 131.625 48.585938 131.53125 48.492188 131.414062 48.492188 C 131.296875 48.492188 131.203125 48.585938 131.203125 48.703125 C 131.203125 48.820312 131.296875 48.914062 131.414062 48.914062 C 131.53125 48.914062 131.625 48.820312 131.625 48.703125 Z M 131.625 48.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.773438 48.542969 C 132.773438 48.425781 132.679688 48.332031 132.5625 48.332031 C 132.445312 48.332031 132.351562 48.425781 132.351562 48.542969 C 132.351562 48.660156 132.445312 48.753906 132.5625 48.753906 C 132.679688 48.753906 132.773438 48.660156 132.773438 48.542969 Z M 132.773438 48.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 134.910156 51.289062 C 134.910156 51.171875 134.816406 51.078125 134.699219 51.078125 C 134.582031 51.078125 134.488281 51.171875 134.488281 51.289062 C 134.488281 51.40625 134.582031 51.5 134.699219 51.5 C 134.816406 51.5 134.910156 51.40625 134.910156 51.289062 Z M 134.910156 51.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.5625 50.773438 C 133.5625 50.65625 133.46875 50.5625 133.351562 50.5625 C 133.234375 50.5625 133.140625 50.65625 133.140625 50.773438 C 133.140625 50.890625 133.234375 50.984375 133.351562 50.984375 C 133.46875 50.984375 133.5625 50.890625 133.5625 50.773438 Z M 133.5625 50.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 136.324219 52.730469 C 136.324219 52.613281 136.230469 52.519531 136.113281 52.519531 C 135.996094 52.519531 135.902344 52.613281 135.902344 52.730469 C 135.902344 52.847656 135.996094 52.941406 136.113281 52.941406 C 136.230469 52.941406 136.324219 52.847656 136.324219 52.730469 Z M 136.324219 52.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 136.492188 53.414062 C 136.492188 53.296875 136.398438 53.203125 136.28125 53.203125 C 136.164062 53.203125 136.070312 53.296875 136.070312 53.414062 C 136.070312 53.53125 136.164062 53.625 136.28125 53.625 C 136.398438 53.625 136.492188 53.53125 136.492188 53.414062 Z M 136.492188 53.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.117188 52.3125 C 133.117188 52.195312 133.023438 52.101562 132.90625 52.101562 C 132.789062 52.101562 132.695312 52.195312 132.695312 52.3125 C 132.695312 52.429688 132.789062 52.523438 132.90625 52.523438 C 133.023438 52.523438 133.117188 52.429688 133.117188 52.3125 Z M 133.117188 52.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.464844 54.464844 C 132.464844 54.347656 132.371094 54.253906 132.253906 54.253906 C 132.136719 54.253906 132.042969 54.347656 132.042969 54.464844 C 132.042969 54.582031 132.136719 54.675781 132.253906 54.675781 C 132.371094 54.675781 132.464844 54.582031 132.464844 54.464844 Z M 132.464844 54.464844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 127.953125 54.949219 C 127.953125 54.832031 127.859375 54.738281 127.742188 54.738281 C 127.625 54.738281 127.53125 54.832031 127.53125 54.949219 C 127.53125 55.066406 127.625 55.160156 127.742188 55.160156 C 127.859375 55.160156 127.953125 55.066406 127.953125 54.949219 Z M 127.953125 54.949219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 124.03125 55.917969 C 124.03125 55.800781 123.9375 55.707031 123.820312 55.707031 C 123.703125 55.707031 123.609375 55.800781 123.609375 55.917969 C 123.609375 56.035156 123.703125 56.128906 123.820312 56.128906 C 123.9375 56.128906 124.03125 56.035156 124.03125 55.917969 Z M 124.03125 55.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.878906 57.023438 C 122.878906 56.90625 122.785156 56.8125 122.667969 56.8125 C 122.550781 56.8125 122.457031 56.90625 122.457031 57.023438 C 122.457031 57.140625 122.550781 57.234375 122.667969 57.234375 C 122.785156 57.234375 122.878906 57.140625 122.878906 57.023438 Z M 122.878906 57.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 123.789062 54.714844 C 123.789062 54.597656 123.695312 54.503906 123.578125 54.503906 C 123.460938 54.503906 123.367188 54.597656 123.367188 54.714844 C 123.367188 54.832031 123.460938 54.925781 123.578125 54.925781 C 123.695312 54.925781 123.789062 54.832031 123.789062 54.714844 Z M 123.789062 54.714844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 123.964844 53.179688 C 123.964844 53.0625 123.871094 52.96875 123.753906 52.96875 C 123.636719 52.96875 123.542969 53.0625 123.542969 53.179688 C 123.542969 53.296875 123.636719 53.390625 123.753906 53.390625 C 123.871094 53.390625 123.964844 53.296875 123.964844 53.179688 Z M 123.964844 53.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.917969 55.496094 C 122.917969 55.378906 122.824219 55.285156 122.707031 55.285156 C 122.589844 55.285156 122.496094 55.378906 122.496094 55.496094 C 122.496094 55.613281 122.589844 55.707031 122.707031 55.707031 C 122.824219 55.707031 122.917969 55.613281 122.917969 55.496094 Z M 122.917969 55.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 121.917969 54.777344 C 121.917969 54.660156 121.824219 54.566406 121.707031 54.566406 C 121.589844 54.566406 121.496094 54.660156 121.496094 54.777344 C 121.496094 54.894531 121.589844 54.988281 121.707031 54.988281 C 121.824219 54.988281 121.917969 54.894531 121.917969 54.777344 Z M 121.917969 54.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 121.851562 54.449219 C 121.851562 54.332031 121.757812 54.238281 121.640625 54.238281 C 121.523438 54.238281 121.429688 54.332031 121.429688 54.449219 C 121.429688 54.566406 121.523438 54.660156 121.640625 54.660156 C 121.757812 54.660156 121.851562 54.566406 121.851562 54.449219 Z M 121.851562 54.449219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.65625 54.855469 C 122.65625 54.738281 122.5625 54.644531 122.445312 54.644531 C 122.328125 54.644531 122.234375 54.738281 122.234375 54.855469 C 122.234375 54.972656 122.328125 55.066406 122.445312 55.066406 C 122.5625 55.066406 122.65625 54.972656 122.65625 54.855469 Z M 122.65625 54.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.976562 51.066406 C 122.976562 50.949219 122.882812 50.855469 122.765625 50.855469 C 122.648438 50.855469 122.554688 50.949219 122.554688 51.066406 C 122.554688 51.183594 122.648438 51.277344 122.765625 51.277344 C 122.882812 51.277344 122.976562 51.183594 122.976562 51.066406 Z M 122.976562 51.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.871094 52.203125 C 122.871094 52.085938 122.777344 51.992188 122.660156 51.992188 C 122.542969 51.992188 122.449219 52.085938 122.449219 52.203125 C 122.449219 52.320312 122.542969 52.414062 122.660156 52.414062 C 122.777344 52.414062 122.871094 52.320312 122.871094 52.203125 Z M 122.871094 52.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 120.527344 50.410156 C 120.527344 50.292969 120.433594 50.199219 120.316406 50.199219 C 120.199219 50.199219 120.105469 50.292969 120.105469 50.410156 C 120.105469 50.527344 120.199219 50.621094 120.316406 50.621094 C 120.433594 50.621094 120.527344 50.527344 120.527344 50.410156 Z M 120.527344 50.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.109375 50.402344 C 122.109375 50.285156 122.015625 50.191406 121.898438 50.191406 C 121.78125 50.191406 121.6875 50.285156 121.6875 50.402344 C 121.6875 50.519531 121.78125 50.613281 121.898438 50.613281 C 122.015625 50.613281 122.109375 50.519531 122.109375 50.402344 Z M 122.109375 50.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.003906 49.308594 C 122.003906 49.191406 121.910156 49.097656 121.792969 49.097656 C 121.675781 49.097656 121.582031 49.191406 121.582031 49.308594 C 121.582031 49.425781 121.675781 49.519531 121.792969 49.519531 C 121.910156 49.519531 122.003906 49.425781 122.003906 49.308594 Z M 122.003906 49.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.527344 49.554688 C 122.527344 49.4375 122.433594 49.34375 122.316406 49.34375 C 122.199219 49.34375 122.105469 49.4375 122.105469 49.554688 C 122.105469 49.671875 122.199219 49.765625 122.316406 49.765625 C 122.433594 49.765625 122.527344 49.671875 122.527344 49.554688 Z M 122.527344 49.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 123.375 45.386719 C 123.375 45.269531 123.28125 45.175781 123.164062 45.175781 C 123.046875 45.175781 122.953125 45.269531 122.953125 45.386719 C 122.953125 45.503906 123.046875 45.597656 123.164062 45.597656 C 123.28125 45.597656 123.375 45.503906 123.375 45.386719 Z M 123.375 45.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 127.492188 45.03125 C 127.492188 44.914062 127.398438 44.820312 127.28125 44.820312 C 127.164062 44.820312 127.070312 44.914062 127.070312 45.03125 C 127.070312 45.148438 127.164062 45.242188 127.28125 45.242188 C 127.398438 45.242188 127.492188 45.148438 127.492188 45.03125 Z M 127.492188 45.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.222656 45.453125 C 130.222656 45.335938 130.128906 45.242188 130.011719 45.242188 C 129.894531 45.242188 129.800781 45.335938 129.800781 45.453125 C 129.800781 45.570312 129.894531 45.664062 130.011719 45.664062 C 130.128906 45.664062 130.222656 45.570312 130.222656 45.453125 Z M 130.222656 45.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 127.8125 47.644531 C 127.8125 47.527344 127.71875 47.433594 127.601562 47.433594 C 127.484375 47.433594 127.390625 47.527344 127.390625 47.644531 C 127.390625 47.761719 127.484375 47.855469 127.601562 47.855469 C 127.71875 47.855469 127.8125 47.761719 127.8125 47.644531 Z M 127.8125 47.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.945312 46.222656 C 132.945312 46.105469 132.851562 46.011719 132.734375 46.011719 C 132.617188 46.011719 132.523438 46.105469 132.523438 46.222656 C 132.523438 46.339844 132.617188 46.433594 132.734375 46.433594 C 132.851562 46.433594 132.945312 46.339844 132.945312 46.222656 Z M 132.945312 46.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.007812 43.242188 C 133.007812 43.125 132.914062 43.03125 132.796875 43.03125 C 132.679688 43.03125 132.585938 43.125 132.585938 43.242188 C 132.585938 43.359375 132.679688 43.453125 132.796875 43.453125 C 132.914062 43.453125 133.007812 43.359375 133.007812 43.242188 Z M 133.007812 43.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.476562 45.6875 C 130.476562 45.570312 130.382812 45.476562 130.265625 45.476562 C 130.148438 45.476562 130.054688 45.570312 130.054688 45.6875 C 130.054688 45.804688 130.148438 45.898438 130.265625 45.898438 C 130.382812 45.898438 130.476562 45.804688 130.476562 45.6875 Z M 130.476562 45.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 131.476562 43.847656 C 131.476562 43.730469 131.382812 43.636719 131.265625 43.636719 C 131.148438 43.636719 131.054688 43.730469 131.054688 43.847656 C 131.054688 43.964844 131.148438 44.058594 131.265625 44.058594 C 131.382812 44.058594 131.476562 43.964844 131.476562 43.847656 Z M 131.476562 43.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 129.070312 44.734375 C 129.070312 44.617188 128.976562 44.523438 128.859375 44.523438 C 128.742188 44.523438 128.648438 44.617188 128.648438 44.734375 C 128.648438 44.851562 128.742188 44.945312 128.859375 44.945312 C 128.976562 44.945312 129.070312 44.851562 129.070312 44.734375 Z M 129.070312 44.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.464844 44.730469 C 126.464844 44.613281 126.371094 44.519531 126.253906 44.519531 C 126.136719 44.519531 126.042969 44.613281 126.042969 44.730469 C 126.042969 44.847656 126.136719 44.941406 126.253906 44.941406 C 126.371094 44.941406 126.464844 44.847656 126.464844 44.730469 Z M 126.464844 44.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.792969 43.160156 C 125.792969 43.042969 125.699219 42.949219 125.582031 42.949219 C 125.464844 42.949219 125.371094 43.042969 125.371094 43.160156 C 125.371094 43.277344 125.464844 43.371094 125.582031 43.371094 C 125.699219 43.371094 125.792969 43.277344 125.792969 43.160156 Z M 125.792969 43.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 123.308594 40.445312 C 123.308594 40.328125 123.214844 40.234375 123.097656 40.234375 C 122.980469 40.234375 122.886719 40.328125 122.886719 40.445312 C 122.886719 40.5625 122.980469 40.65625 123.097656 40.65625 C 123.214844 40.65625 123.308594 40.5625 123.308594 40.445312 Z M 123.308594 40.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 123.152344 41.941406 C 123.152344 41.824219 123.058594 41.730469 122.941406 41.730469 C 122.824219 41.730469 122.730469 41.824219 122.730469 41.941406 C 122.730469 42.058594 122.824219 42.152344 122.941406 42.152344 C 123.058594 42.152344 123.152344 42.058594 123.152344 41.941406 Z M 123.152344 41.941406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.558594 43.152344 C 125.558594 43.035156 125.464844 42.941406 125.347656 42.941406 C 125.230469 42.941406 125.136719 43.035156 125.136719 43.152344 C 125.136719 43.269531 125.230469 43.363281 125.347656 43.363281 C 125.464844 43.363281 125.558594 43.269531 125.558594 43.152344 Z M 125.558594 43.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.558594 40.757812 C 122.558594 40.640625 122.464844 40.546875 122.347656 40.546875 C 122.230469 40.546875 122.136719 40.640625 122.136719 40.757812 C 122.136719 40.875 122.230469 40.96875 122.347656 40.96875 C 122.464844 40.96875 122.558594 40.875 122.558594 40.757812 Z M 122.558594 40.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 121.859375 41.140625 C 121.859375 41.023438 121.765625 40.929688 121.648438 40.929688 C 121.53125 40.929688 121.4375 41.023438 121.4375 41.140625 C 121.4375 41.257812 121.53125 41.351562 121.648438 41.351562 C 121.765625 41.351562 121.859375 41.257812 121.859375 41.140625 Z M 121.859375 41.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.179688 39.710938 C 126.179688 39.59375 126.085938 39.5 125.96875 39.5 C 125.851562 39.5 125.757812 39.59375 125.757812 39.710938 C 125.757812 39.828125 125.851562 39.921875 125.96875 39.921875 C 126.085938 39.921875 126.179688 39.828125 126.179688 39.710938 Z M 126.179688 39.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 123.253906 39.152344 C 123.253906 39.035156 123.160156 38.941406 123.042969 38.941406 C 122.925781 38.941406 122.832031 39.035156 122.832031 39.152344 C 122.832031 39.269531 122.925781 39.363281 123.042969 39.363281 C 123.160156 39.363281 123.253906 39.269531 123.253906 39.152344 Z M 123.253906 39.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 121.230469 39.570312 C 121.230469 39.453125 121.136719 39.359375 121.019531 39.359375 C 120.902344 39.359375 120.808594 39.453125 120.808594 39.570312 C 120.808594 39.6875 120.902344 39.78125 121.019531 39.78125 C 121.136719 39.78125 121.230469 39.6875 121.230469 39.570312 Z M 121.230469 39.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 121.839844 38.375 C 121.839844 38.257812 121.746094 38.164062 121.628906 38.164062 C 121.511719 38.164062 121.417969 38.257812 121.417969 38.375 C 121.417969 38.492188 121.511719 38.585938 121.628906 38.585938 C 121.746094 38.585938 121.839844 38.492188 121.839844 38.375 Z M 121.839844 38.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.121094 36.238281 C 122.121094 36.121094 122.027344 36.027344 121.910156 36.027344 C 121.792969 36.027344 121.699219 36.121094 121.699219 36.238281 C 121.699219 36.355469 121.792969 36.449219 121.910156 36.449219 C 122.027344 36.449219 122.121094 36.355469 122.121094 36.238281 Z M 122.121094 36.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 120.769531 35.308594 C 120.769531 35.191406 120.675781 35.097656 120.558594 35.097656 C 120.441406 35.097656 120.347656 35.191406 120.347656 35.308594 C 120.347656 35.425781 120.441406 35.519531 120.558594 35.519531 C 120.675781 35.519531 120.769531 35.425781 120.769531 35.308594 Z M 120.769531 35.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 120.691406 35.5 C 120.691406 35.382812 120.597656 35.289062 120.480469 35.289062 C 120.363281 35.289062 120.269531 35.382812 120.269531 35.5 C 120.269531 35.617188 120.363281 35.710938 120.480469 35.710938 C 120.597656 35.710938 120.691406 35.617188 120.691406 35.5 Z M 120.691406 35.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 120.621094 38.59375 C 120.621094 38.476562 120.527344 38.382812 120.410156 38.382812 C 120.292969 38.382812 120.199219 38.476562 120.199219 38.59375 C 120.199219 38.710938 120.292969 38.804688 120.410156 38.804688 C 120.527344 38.804688 120.621094 38.710938 120.621094 38.59375 Z M 120.621094 38.59375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 120.960938 39.199219 C 120.960938 39.082031 120.867188 38.988281 120.75 38.988281 C 120.632812 38.988281 120.539062 39.082031 120.539062 39.199219 C 120.539062 39.316406 120.632812 39.410156 120.75 39.410156 C 120.867188 39.410156 120.960938 39.316406 120.960938 39.199219 Z M 120.960938 39.199219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 121.5 38.480469 C 121.5 38.363281 121.40625 38.269531 121.289062 38.269531 C 121.171875 38.269531 121.078125 38.363281 121.078125 38.480469 C 121.078125 38.597656 121.171875 38.691406 121.289062 38.691406 C 121.40625 38.691406 121.5 38.597656 121.5 38.480469 Z M 121.5 38.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 120.835938 39.742188 C 120.835938 39.625 120.742188 39.53125 120.625 39.53125 C 120.507812 39.53125 120.414062 39.625 120.414062 39.742188 C 120.414062 39.859375 120.507812 39.953125 120.625 39.953125 C 120.742188 39.953125 120.835938 39.859375 120.835938 39.742188 Z M 120.835938 39.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 121.234375 38.835938 C 121.234375 38.71875 121.140625 38.625 121.023438 38.625 C 120.90625 38.625 120.8125 38.71875 120.8125 38.835938 C 120.8125 38.953125 120.90625 39.046875 121.023438 39.046875 C 121.140625 39.046875 121.234375 38.953125 121.234375 38.835938 Z M 121.234375 38.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 121.566406 32.980469 C 121.566406 32.863281 121.472656 32.769531 121.355469 32.769531 C 121.238281 32.769531 121.144531 32.863281 121.144531 32.980469 C 121.144531 33.097656 121.238281 33.191406 121.355469 33.191406 C 121.472656 33.191406 121.566406 33.097656 121.566406 32.980469 Z M 121.566406 32.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.625 35.304688 C 122.625 35.1875 122.53125 35.09375 122.414062 35.09375 C 122.296875 35.09375 122.203125 35.1875 122.203125 35.304688 C 122.203125 35.421875 122.296875 35.515625 122.414062 35.515625 C 122.53125 35.515625 122.625 35.421875 122.625 35.304688 Z M 122.625 35.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 120.316406 37.269531 C 120.316406 37.152344 120.222656 37.058594 120.105469 37.058594 C 119.988281 37.058594 119.894531 37.152344 119.894531 37.269531 C 119.894531 37.386719 119.988281 37.480469 120.105469 37.480469 C 120.222656 37.480469 120.316406 37.386719 120.316406 37.269531 Z M 120.316406 37.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 120.445312 39.175781 C 120.445312 39.058594 120.351562 38.964844 120.234375 38.964844 C 120.117188 38.964844 120.023438 39.058594 120.023438 39.175781 C 120.023438 39.292969 120.117188 39.386719 120.234375 39.386719 C 120.351562 39.386719 120.445312 39.292969 120.445312 39.175781 Z M 120.445312 39.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 119.234375 40.144531 C 119.234375 40.027344 119.140625 39.933594 119.023438 39.933594 C 118.90625 39.933594 118.8125 40.027344 118.8125 40.144531 C 118.8125 40.261719 118.90625 40.355469 119.023438 40.355469 C 119.140625 40.355469 119.234375 40.261719 119.234375 40.144531 Z M 119.234375 40.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 124.695312 41.40625 C 124.695312 41.289062 124.601562 41.195312 124.484375 41.195312 C 124.367188 41.195312 124.273438 41.289062 124.273438 41.40625 C 124.273438 41.523438 124.367188 41.617188 124.484375 41.617188 C 124.601562 41.617188 124.695312 41.523438 124.695312 41.40625 Z M 124.695312 41.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.183594 40.375 C 122.183594 40.257812 122.089844 40.164062 121.972656 40.164062 C 121.855469 40.164062 121.761719 40.257812 121.761719 40.375 C 121.761719 40.492188 121.855469 40.585938 121.972656 40.585938 C 122.089844 40.585938 122.183594 40.492188 122.183594 40.375 Z M 122.183594 40.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.144531 39.5625 C 122.144531 39.445312 122.050781 39.351562 121.933594 39.351562 C 121.816406 39.351562 121.722656 39.445312 121.722656 39.5625 C 121.722656 39.679688 121.816406 39.773438 121.933594 39.773438 C 122.050781 39.773438 122.144531 39.679688 122.144531 39.5625 Z M 122.144531 39.5625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 123.71875 35.863281 C 123.71875 35.746094 123.625 35.652344 123.507812 35.652344 C 123.390625 35.652344 123.296875 35.746094 123.296875 35.863281 C 123.296875 35.980469 123.390625 36.074219 123.507812 36.074219 C 123.625 36.074219 123.71875 35.980469 123.71875 35.863281 Z M 123.71875 35.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.867188 36.621094 C 126.867188 36.503906 126.773438 36.410156 126.65625 36.410156 C 126.539062 36.410156 126.445312 36.503906 126.445312 36.621094 C 126.445312 36.738281 126.539062 36.832031 126.65625 36.832031 C 126.773438 36.832031 126.867188 36.738281 126.867188 36.621094 Z M 126.867188 36.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.425781 36.957031 C 126.425781 36.839844 126.332031 36.746094 126.214844 36.746094 C 126.097656 36.746094 126.003906 36.839844 126.003906 36.957031 C 126.003906 37.074219 126.097656 37.167969 126.214844 37.167969 C 126.332031 37.167969 126.425781 37.074219 126.425781 36.957031 Z M 126.425781 36.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.167969 35.679688 C 130.167969 35.5625 130.074219 35.46875 129.957031 35.46875 C 129.839844 35.46875 129.746094 35.5625 129.746094 35.679688 C 129.746094 35.796875 129.839844 35.890625 129.957031 35.890625 C 130.074219 35.890625 130.167969 35.796875 130.167969 35.679688 Z M 130.167969 35.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.574219 33.96875 C 133.574219 33.851562 133.480469 33.757812 133.363281 33.757812 C 133.246094 33.757812 133.152344 33.851562 133.152344 33.96875 C 133.152344 34.085938 133.246094 34.179688 133.363281 34.179688 C 133.480469 34.179688 133.574219 34.085938 133.574219 33.96875 Z M 133.574219 33.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.15625 33.875 C 133.15625 33.757812 133.0625 33.664062 132.945312 33.664062 C 132.828125 33.664062 132.734375 33.757812 132.734375 33.875 C 132.734375 33.992188 132.828125 34.085938 132.945312 34.085938 C 133.0625 34.085938 133.15625 33.992188 133.15625 33.875 Z M 133.15625 33.875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.527344 36.636719 C 135.527344 36.519531 135.433594 36.425781 135.316406 36.425781 C 135.199219 36.425781 135.105469 36.519531 135.105469 36.636719 C 135.105469 36.753906 135.199219 36.847656 135.316406 36.847656 C 135.433594 36.847656 135.527344 36.753906 135.527344 36.636719 Z M 135.527344 36.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.714844 34.410156 C 132.714844 34.292969 132.621094 34.199219 132.503906 34.199219 C 132.386719 34.199219 132.292969 34.292969 132.292969 34.410156 C 132.292969 34.527344 132.386719 34.621094 132.503906 34.621094 C 132.621094 34.621094 132.714844 34.527344 132.714844 34.410156 Z M 132.714844 34.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.464844 33.210938 C 130.464844 33.09375 130.371094 33 130.253906 33 C 130.136719 33 130.042969 33.09375 130.042969 33.210938 C 130.042969 33.328125 130.136719 33.421875 130.253906 33.421875 C 130.371094 33.421875 130.464844 33.328125 130.464844 33.210938 Z M 130.464844 33.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.289062 32.496094 C 132.289062 32.378906 132.195312 32.285156 132.078125 32.285156 C 131.960938 32.285156 131.867188 32.378906 131.867188 32.496094 C 131.867188 32.613281 131.960938 32.707031 132.078125 32.707031 C 132.195312 32.707031 132.289062 32.613281 132.289062 32.496094 Z M 132.289062 32.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.914062 31.160156 C 133.914062 31.042969 133.820312 30.949219 133.703125 30.949219 C 133.585938 30.949219 133.492188 31.042969 133.492188 31.160156 C 133.492188 31.277344 133.585938 31.371094 133.703125 31.371094 C 133.820312 31.371094 133.914062 31.277344 133.914062 31.160156 Z M 133.914062 31.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.503906 25.4375 C 132.503906 25.320312 132.410156 25.226562 132.292969 25.226562 C 132.175781 25.226562 132.082031 25.320312 132.082031 25.4375 C 132.082031 25.554688 132.175781 25.648438 132.292969 25.648438 C 132.410156 25.648438 132.503906 25.554688 132.503906 25.4375 Z M 132.503906 25.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 134.984375 23.394531 C 134.984375 23.277344 134.890625 23.183594 134.773438 23.183594 C 134.65625 23.183594 134.5625 23.277344 134.5625 23.394531 C 134.5625 23.511719 134.65625 23.605469 134.773438 23.605469 C 134.890625 23.605469 134.984375 23.511719 134.984375 23.394531 Z M 134.984375 23.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 131.164062 24.21875 C 131.164062 24.101562 131.070312 24.007812 130.953125 24.007812 C 130.835938 24.007812 130.742188 24.101562 130.742188 24.21875 C 130.742188 24.335938 130.835938 24.429688 130.953125 24.429688 C 131.070312 24.429688 131.164062 24.335938 131.164062 24.21875 Z M 131.164062 24.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 134.320312 23.9375 C 134.320312 23.820312 134.226562 23.726562 134.109375 23.726562 C 133.992188 23.726562 133.898438 23.820312 133.898438 23.9375 C 133.898438 24.054688 133.992188 24.148438 134.109375 24.148438 C 134.226562 24.148438 134.320312 24.054688 134.320312 23.9375 Z M 134.320312 23.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 136.671875 24.75 C 136.671875 24.632812 136.578125 24.539062 136.460938 24.539062 C 136.34375 24.539062 136.25 24.632812 136.25 24.75 C 136.25 24.867188 136.34375 24.960938 136.460938 24.960938 C 136.578125 24.960938 136.671875 24.867188 136.671875 24.75 Z M 136.671875 24.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 137.769531 26.054688 C 137.769531 25.9375 137.675781 25.84375 137.558594 25.84375 C 137.441406 25.84375 137.347656 25.9375 137.347656 26.054688 C 137.347656 26.171875 137.441406 26.265625 137.558594 26.265625 C 137.675781 26.265625 137.769531 26.171875 137.769531 26.054688 Z M 137.769531 26.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 137.046875 24.859375 C 137.046875 24.742188 136.953125 24.648438 136.835938 24.648438 C 136.71875 24.648438 136.625 24.742188 136.625 24.859375 C 136.625 24.976562 136.71875 25.070312 136.835938 25.070312 C 136.953125 25.070312 137.046875 24.976562 137.046875 24.859375 Z M 137.046875 24.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 137.957031 23.574219 C 137.957031 23.457031 137.863281 23.363281 137.746094 23.363281 C 137.628906 23.363281 137.535156 23.457031 137.535156 23.574219 C 137.535156 23.691406 137.628906 23.785156 137.746094 23.785156 C 137.863281 23.785156 137.957031 23.691406 137.957031 23.574219 Z M 137.957031 23.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 138.125 24.273438 C 138.125 24.15625 138.03125 24.0625 137.914062 24.0625 C 137.796875 24.0625 137.703125 24.15625 137.703125 24.273438 C 137.703125 24.390625 137.796875 24.484375 137.914062 24.484375 C 138.03125 24.484375 138.125 24.390625 138.125 24.273438 Z M 138.125 24.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 139.046875 22.550781 C 139.046875 22.433594 138.953125 22.339844 138.835938 22.339844 C 138.71875 22.339844 138.625 22.433594 138.625 22.550781 C 138.625 22.667969 138.71875 22.761719 138.835938 22.761719 C 138.953125 22.761719 139.046875 22.667969 139.046875 22.550781 Z M 139.046875 22.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 136.382812 23.453125 C 136.382812 23.335938 136.289062 23.242188 136.171875 23.242188 C 136.054688 23.242188 135.960938 23.335938 135.960938 23.453125 C 135.960938 23.570312 136.054688 23.664062 136.171875 23.664062 C 136.289062 23.664062 136.382812 23.570312 136.382812 23.453125 Z M 136.382812 23.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.214844 27.046875 C 135.214844 26.929688 135.121094 26.835938 135.003906 26.835938 C 134.886719 26.835938 134.792969 26.929688 134.792969 27.046875 C 134.792969 27.164062 134.886719 27.257812 135.003906 27.257812 C 135.121094 27.257812 135.214844 27.164062 135.214844 27.046875 Z M 135.214844 27.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.988281 25.707031 C 133.988281 25.589844 133.894531 25.496094 133.777344 25.496094 C 133.660156 25.496094 133.566406 25.589844 133.566406 25.707031 C 133.566406 25.824219 133.660156 25.917969 133.777344 25.917969 C 133.894531 25.917969 133.988281 25.824219 133.988281 25.707031 Z M 133.988281 25.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.511719 24.621094 C 133.511719 24.503906 133.417969 24.410156 133.300781 24.410156 C 133.183594 24.410156 133.089844 24.503906 133.089844 24.621094 C 133.089844 24.738281 133.183594 24.832031 133.300781 24.832031 C 133.417969 24.832031 133.511719 24.738281 133.511719 24.621094 Z M 133.511719 24.621094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.683594 27.589844 C 132.683594 27.472656 132.589844 27.378906 132.472656 27.378906 C 132.355469 27.378906 132.261719 27.472656 132.261719 27.589844 C 132.261719 27.707031 132.355469 27.800781 132.472656 27.800781 C 132.589844 27.800781 132.683594 27.707031 132.683594 27.589844 Z M 132.683594 27.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.222656 28.777344 C 133.222656 28.660156 133.128906 28.566406 133.011719 28.566406 C 132.894531 28.566406 132.800781 28.660156 132.800781 28.777344 C 132.800781 28.894531 132.894531 28.988281 133.011719 28.988281 C 133.128906 28.988281 133.222656 28.894531 133.222656 28.777344 Z M 133.222656 28.777344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.949219 29.925781 C 130.949219 29.808594 130.855469 29.714844 130.738281 29.714844 C 130.621094 29.714844 130.527344 29.808594 130.527344 29.925781 C 130.527344 30.042969 130.621094 30.136719 130.738281 30.136719 C 130.855469 30.136719 130.949219 30.042969 130.949219 29.925781 Z M 130.949219 29.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.34375 29.773438 C 135.34375 29.65625 135.25 29.5625 135.132812 29.5625 C 135.015625 29.5625 134.921875 29.65625 134.921875 29.773438 C 134.921875 29.890625 135.015625 29.984375 135.132812 29.984375 C 135.25 29.984375 135.34375 29.890625 135.34375 29.773438 Z M 135.34375 29.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.65625 31.269531 C 135.65625 31.152344 135.5625 31.058594 135.445312 31.058594 C 135.328125 31.058594 135.234375 31.152344 135.234375 31.269531 C 135.234375 31.386719 135.328125 31.480469 135.445312 31.480469 C 135.5625 31.480469 135.65625 31.386719 135.65625 31.269531 Z M 135.65625 31.269531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.027344 31.441406 C 135.027344 31.324219 134.933594 31.230469 134.816406 31.230469 C 134.699219 31.230469 134.605469 31.324219 134.605469 31.441406 C 134.605469 31.558594 134.699219 31.652344 134.816406 31.652344 C 134.933594 31.652344 135.027344 31.558594 135.027344 31.441406 Z M 135.027344 31.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.804688 30.757812 C 133.804688 30.640625 133.710938 30.546875 133.59375 30.546875 C 133.476562 30.546875 133.382812 30.640625 133.382812 30.757812 C 133.382812 30.875 133.476562 30.96875 133.59375 30.96875 C 133.710938 30.96875 133.804688 30.875 133.804688 30.757812 Z M 133.804688 30.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.488281 31.265625 C 130.488281 31.148438 130.394531 31.054688 130.277344 31.054688 C 130.160156 31.054688 130.066406 31.148438 130.066406 31.265625 C 130.066406 31.382812 130.160156 31.476562 130.277344 31.476562 C 130.394531 31.476562 130.488281 31.382812 130.488281 31.265625 Z M 130.488281 31.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.019531 29.996094 C 128.019531 29.878906 127.925781 29.785156 127.808594 29.785156 C 127.691406 29.785156 127.597656 29.878906 127.597656 29.996094 C 127.597656 30.113281 127.691406 30.207031 127.808594 30.207031 C 127.925781 30.207031 128.019531 30.113281 128.019531 29.996094 Z M 128.019531 29.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.679688 32.804688 C 125.679688 32.6875 125.585938 32.59375 125.46875 32.59375 C 125.351562 32.59375 125.257812 32.6875 125.257812 32.804688 C 125.257812 32.921875 125.351562 33.015625 125.46875 33.015625 C 125.585938 33.015625 125.679688 32.921875 125.679688 32.804688 Z M 125.679688 32.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 127.308594 38.023438 C 127.308594 37.90625 127.214844 37.8125 127.097656 37.8125 C 126.980469 37.8125 126.886719 37.90625 126.886719 38.023438 C 126.886719 38.140625 126.980469 38.234375 127.097656 38.234375 C 127.214844 38.234375 127.308594 38.140625 127.308594 38.023438 Z M 127.308594 38.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 121.859375 36.824219 C 121.859375 36.707031 121.765625 36.613281 121.648438 36.613281 C 121.53125 36.613281 121.4375 36.707031 121.4375 36.824219 C 121.4375 36.941406 121.53125 37.035156 121.648438 37.035156 C 121.765625 37.035156 121.859375 36.941406 121.859375 36.824219 Z M 121.859375 36.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 118.335938 38.417969 C 118.335938 38.300781 118.242188 38.207031 118.125 38.207031 C 118.007812 38.207031 117.914062 38.300781 117.914062 38.417969 C 117.914062 38.535156 118.007812 38.628906 118.125 38.628906 C 118.242188 38.628906 118.335938 38.535156 118.335938 38.417969 Z M 118.335938 38.417969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 116.917969 37.554688 C 116.917969 37.4375 116.824219 37.34375 116.707031 37.34375 C 116.589844 37.34375 116.496094 37.4375 116.496094 37.554688 C 116.496094 37.671875 116.589844 37.765625 116.707031 37.765625 C 116.824219 37.765625 116.917969 37.671875 116.917969 37.554688 Z M 116.917969 37.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 118.65625 39.917969 C 118.65625 39.800781 118.5625 39.707031 118.445312 39.707031 C 118.328125 39.707031 118.234375 39.800781 118.234375 39.917969 C 118.234375 40.035156 118.328125 40.128906 118.445312 40.128906 C 118.5625 40.128906 118.65625 40.035156 118.65625 39.917969 Z M 118.65625 39.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 118.59375 38.625 C 118.59375 38.507812 118.5 38.414062 118.382812 38.414062 C 118.265625 38.414062 118.171875 38.507812 118.171875 38.625 C 118.171875 38.742188 118.265625 38.835938 118.382812 38.835938 C 118.5 38.835938 118.59375 38.742188 118.59375 38.625 Z M 118.59375 38.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 118.894531 40.566406 C 118.894531 40.449219 118.800781 40.355469 118.683594 40.355469 C 118.566406 40.355469 118.472656 40.449219 118.472656 40.566406 C 118.472656 40.683594 118.566406 40.777344 118.683594 40.777344 C 118.800781 40.777344 118.894531 40.683594 118.894531 40.566406 Z M 118.894531 40.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 118.5625 40.488281 C 118.5625 40.371094 118.46875 40.277344 118.351562 40.277344 C 118.234375 40.277344 118.140625 40.371094 118.140625 40.488281 C 118.140625 40.605469 118.234375 40.699219 118.351562 40.699219 C 118.46875 40.699219 118.5625 40.605469 118.5625 40.488281 Z M 118.5625 40.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 115.730469 39.90625 C 115.730469 39.789062 115.636719 39.695312 115.519531 39.695312 C 115.402344 39.695312 115.308594 39.789062 115.308594 39.90625 C 115.308594 40.023438 115.402344 40.117188 115.519531 40.117188 C 115.636719 40.117188 115.730469 40.023438 115.730469 39.90625 Z M 115.730469 39.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 117.558594 39.304688 C 117.558594 39.1875 117.464844 39.09375 117.347656 39.09375 C 117.230469 39.09375 117.136719 39.1875 117.136719 39.304688 C 117.136719 39.421875 117.230469 39.515625 117.347656 39.515625 C 117.464844 39.515625 117.558594 39.421875 117.558594 39.304688 Z M 117.558594 39.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 117.707031 41.179688 C 117.707031 41.0625 117.613281 40.96875 117.496094 40.96875 C 117.378906 40.96875 117.285156 41.0625 117.285156 41.179688 C 117.285156 41.296875 117.378906 41.390625 117.496094 41.390625 C 117.613281 41.390625 117.707031 41.296875 117.707031 41.179688 Z M 117.707031 41.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 121.117188 42.046875 C 121.117188 41.929688 121.023438 41.835938 120.90625 41.835938 C 120.789062 41.835938 120.695312 41.929688 120.695312 42.046875 C 120.695312 42.164062 120.789062 42.257812 120.90625 42.257812 C 121.023438 42.257812 121.117188 42.164062 121.117188 42.046875 Z M 121.117188 42.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 120.78125 46.722656 C 120.78125 46.605469 120.6875 46.511719 120.570312 46.511719 C 120.453125 46.511719 120.359375 46.605469 120.359375 46.722656 C 120.359375 46.839844 120.453125 46.933594 120.570312 46.933594 C 120.6875 46.933594 120.78125 46.839844 120.78125 46.722656 Z M 120.78125 46.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 120.605469 45.15625 C 120.605469 45.039062 120.511719 44.945312 120.394531 44.945312 C 120.277344 44.945312 120.183594 45.039062 120.183594 45.15625 C 120.183594 45.273438 120.277344 45.367188 120.394531 45.367188 C 120.511719 45.367188 120.605469 45.273438 120.605469 45.15625 Z M 120.605469 45.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 123.75 45.078125 C 123.75 44.960938 123.65625 44.867188 123.539062 44.867188 C 123.421875 44.867188 123.328125 44.960938 123.328125 45.078125 C 123.328125 45.195312 123.421875 45.289062 123.539062 45.289062 C 123.65625 45.289062 123.75 45.195312 123.75 45.078125 Z M 123.75 45.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.585938 44.257812 C 122.585938 44.140625 122.492188 44.046875 122.375 44.046875 C 122.257812 44.046875 122.164062 44.140625 122.164062 44.257812 C 122.164062 44.375 122.257812 44.46875 122.375 44.46875 C 122.492188 44.46875 122.585938 44.375 122.585938 44.257812 Z M 122.585938 44.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 123.632812 44.582031 C 123.632812 44.464844 123.539062 44.371094 123.421875 44.371094 C 123.304688 44.371094 123.210938 44.464844 123.210938 44.582031 C 123.210938 44.699219 123.304688 44.792969 123.421875 44.792969 C 123.539062 44.792969 123.632812 44.699219 123.632812 44.582031 Z M 123.632812 44.582031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.601562 44.859375 C 122.601562 44.742188 122.507812 44.648438 122.390625 44.648438 C 122.273438 44.648438 122.179688 44.742188 122.179688 44.859375 C 122.179688 44.976562 122.273438 45.070312 122.390625 45.070312 C 122.507812 45.070312 122.601562 44.976562 122.601562 44.859375 Z M 122.601562 44.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.269531 41.238281 C 122.269531 41.121094 122.175781 41.027344 122.058594 41.027344 C 121.941406 41.027344 121.847656 41.121094 121.847656 41.238281 C 121.847656 41.355469 121.941406 41.449219 122.058594 41.449219 C 122.175781 41.449219 122.269531 41.355469 122.269531 41.238281 Z M 122.269531 41.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.117188 39.203125 C 126.117188 39.085938 126.023438 38.992188 125.90625 38.992188 C 125.789062 38.992188 125.695312 39.085938 125.695312 39.203125 C 125.695312 39.320312 125.789062 39.414062 125.90625 39.414062 C 126.023438 39.414062 126.117188 39.320312 126.117188 39.203125 Z M 126.117188 39.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 127.964844 39.265625 C 127.964844 39.148438 127.871094 39.054688 127.753906 39.054688 C 127.636719 39.054688 127.542969 39.148438 127.542969 39.265625 C 127.542969 39.382812 127.636719 39.476562 127.753906 39.476562 C 127.871094 39.476562 127.964844 39.382812 127.964844 39.265625 Z M 127.964844 39.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.609375 34.960938 C 125.609375 34.84375 125.515625 34.75 125.398438 34.75 C 125.28125 34.75 125.1875 34.84375 125.1875 34.960938 C 125.1875 35.078125 125.28125 35.171875 125.398438 35.171875 C 125.515625 35.171875 125.609375 35.078125 125.609375 34.960938 Z M 125.609375 34.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.316406 30.996094 C 126.316406 30.878906 126.222656 30.785156 126.105469 30.785156 C 125.988281 30.785156 125.894531 30.878906 125.894531 30.996094 C 125.894531 31.113281 125.988281 31.207031 126.105469 31.207031 C 126.222656 31.207031 126.316406 31.113281 126.316406 30.996094 Z M 126.316406 30.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.433594 28.683594 C 126.433594 28.566406 126.339844 28.472656 126.222656 28.472656 C 126.105469 28.472656 126.011719 28.566406 126.011719 28.683594 C 126.011719 28.800781 126.105469 28.894531 126.222656 28.894531 C 126.339844 28.894531 126.433594 28.800781 126.433594 28.683594 Z M 126.433594 28.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 127.566406 31.472656 C 127.566406 31.355469 127.472656 31.261719 127.355469 31.261719 C 127.238281 31.261719 127.144531 31.355469 127.144531 31.472656 C 127.144531 31.589844 127.238281 31.683594 127.355469 31.683594 C 127.472656 31.683594 127.566406 31.589844 127.566406 31.472656 Z M 127.566406 31.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 127.152344 32.164062 C 127.152344 32.046875 127.058594 31.953125 126.941406 31.953125 C 126.824219 31.953125 126.730469 32.046875 126.730469 32.164062 C 126.730469 32.28125 126.824219 32.375 126.941406 32.375 C 127.058594 32.375 127.152344 32.28125 127.152344 32.164062 Z M 127.152344 32.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.347656 32.515625 C 126.347656 32.398438 126.253906 32.304688 126.136719 32.304688 C 126.019531 32.304688 125.925781 32.398438 125.925781 32.515625 C 125.925781 32.632812 126.019531 32.726562 126.136719 32.726562 C 126.253906 32.726562 126.347656 32.632812 126.347656 32.515625 Z M 126.347656 32.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.757812 35.859375 C 126.757812 35.742188 126.664062 35.648438 126.546875 35.648438 C 126.429688 35.648438 126.335938 35.742188 126.335938 35.859375 C 126.335938 35.976562 126.429688 36.070312 126.546875 36.070312 C 126.664062 36.070312 126.757812 35.976562 126.757812 35.859375 Z M 126.757812 35.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.457031 31.054688 C 126.457031 30.9375 126.363281 30.84375 126.246094 30.84375 C 126.128906 30.84375 126.035156 30.9375 126.035156 31.054688 C 126.035156 31.171875 126.128906 31.265625 126.246094 31.265625 C 126.363281 31.265625 126.457031 31.171875 126.457031 31.054688 Z M 126.457031 31.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.164062 31.738281 C 130.164062 31.621094 130.070312 31.527344 129.953125 31.527344 C 129.835938 31.527344 129.742188 31.621094 129.742188 31.738281 C 129.742188 31.855469 129.835938 31.949219 129.953125 31.949219 C 130.070312 31.949219 130.164062 31.855469 130.164062 31.738281 Z M 130.164062 31.738281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 124.980469 29.667969 C 124.980469 29.550781 124.886719 29.457031 124.769531 29.457031 C 124.652344 29.457031 124.558594 29.550781 124.558594 29.667969 C 124.558594 29.785156 124.652344 29.878906 124.769531 29.878906 C 124.886719 29.878906 124.980469 29.785156 124.980469 29.667969 Z M 124.980469 29.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.796875 27.65625 C 122.796875 27.539062 122.703125 27.445312 122.585938 27.445312 C 122.46875 27.445312 122.375 27.539062 122.375 27.65625 C 122.375 27.773438 122.46875 27.867188 122.585938 27.867188 C 122.703125 27.867188 122.796875 27.773438 122.796875 27.65625 Z M 122.796875 27.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 123.945312 28.140625 C 123.945312 28.023438 123.851562 27.929688 123.734375 27.929688 C 123.617188 27.929688 123.523438 28.023438 123.523438 28.140625 C 123.523438 28.257812 123.617188 28.351562 123.734375 28.351562 C 123.851562 28.351562 123.945312 28.257812 123.945312 28.140625 Z M 123.945312 28.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 123.773438 26.617188 C 123.773438 26.5 123.679688 26.40625 123.5625 26.40625 C 123.445312 26.40625 123.351562 26.5 123.351562 26.617188 C 123.351562 26.734375 123.445312 26.828125 123.5625 26.828125 C 123.679688 26.828125 123.773438 26.734375 123.773438 26.617188 Z M 123.773438 26.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 120.363281 25.75 C 120.363281 25.632812 120.269531 25.539062 120.152344 25.539062 C 120.035156 25.539062 119.941406 25.632812 119.941406 25.75 C 119.941406 25.867188 120.035156 25.960938 120.152344 25.960938 C 120.269531 25.960938 120.363281 25.867188 120.363281 25.75 Z M 120.363281 25.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 119.363281 26.558594 C 119.363281 26.441406 119.269531 26.347656 119.152344 26.347656 C 119.035156 26.347656 118.941406 26.441406 118.941406 26.558594 C 118.941406 26.675781 119.035156 26.769531 119.152344 26.769531 C 119.269531 26.769531 119.363281 26.675781 119.363281 26.558594 Z M 119.363281 26.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 119.75 23.355469 C 119.75 23.238281 119.65625 23.144531 119.539062 23.144531 C 119.421875 23.144531 119.328125 23.238281 119.328125 23.355469 C 119.328125 23.472656 119.421875 23.566406 119.539062 23.566406 C 119.65625 23.566406 119.75 23.472656 119.75 23.355469 Z M 119.75 23.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.65625 21.886719 C 122.65625 21.769531 122.5625 21.675781 122.445312 21.675781 C 122.328125 21.675781 122.234375 21.769531 122.234375 21.886719 C 122.234375 22.003906 122.328125 22.097656 122.445312 22.097656 C 122.5625 22.097656 122.65625 22.003906 122.65625 21.886719 Z M 122.65625 21.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.449219 19.054688 C 125.449219 18.9375 125.355469 18.84375 125.238281 18.84375 C 125.121094 18.84375 125.027344 18.9375 125.027344 19.054688 C 125.027344 19.171875 125.121094 19.265625 125.238281 19.265625 C 125.355469 19.265625 125.449219 19.171875 125.449219 19.054688 Z M 125.449219 19.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 121.023438 15.585938 C 121.023438 15.46875 120.929688 15.375 120.8125 15.375 C 120.695312 15.375 120.601562 15.46875 120.601562 15.585938 C 120.601562 15.703125 120.695312 15.796875 120.8125 15.796875 C 120.929688 15.796875 121.023438 15.703125 121.023438 15.585938 Z M 121.023438 15.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 121.140625 16.511719 C 121.140625 16.394531 121.046875 16.300781 120.929688 16.300781 C 120.8125 16.300781 120.71875 16.394531 120.71875 16.511719 C 120.71875 16.628906 120.8125 16.722656 120.929688 16.722656 C 121.046875 16.722656 121.140625 16.628906 121.140625 16.511719 Z M 121.140625 16.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 121.46875 14.640625 C 121.46875 14.523438 121.375 14.429688 121.257812 14.429688 C 121.140625 14.429688 121.046875 14.523438 121.046875 14.640625 C 121.046875 14.757812 121.140625 14.851562 121.257812 14.851562 C 121.375 14.851562 121.46875 14.757812 121.46875 14.640625 Z M 121.46875 14.640625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.730469 9.570312 C 122.730469 9.453125 122.636719 9.359375 122.519531 9.359375 C 122.402344 9.359375 122.308594 9.453125 122.308594 9.570312 C 122.308594 9.6875 122.402344 9.78125 122.519531 9.78125 C 122.636719 9.78125 122.730469 9.6875 122.730469 9.570312 Z M 122.730469 9.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.824219 6.804688 C 122.824219 6.6875 122.730469 6.59375 122.613281 6.59375 C 122.496094 6.59375 122.402344 6.6875 122.402344 6.804688 C 122.402344 6.921875 122.496094 7.015625 122.613281 7.015625 C 122.730469 7.015625 122.824219 6.921875 122.824219 6.804688 Z M 122.824219 6.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 118.351562 10.660156 C 118.351562 10.542969 118.257812 10.449219 118.140625 10.449219 C 118.023438 10.449219 117.929688 10.542969 117.929688 10.660156 C 117.929688 10.777344 118.023438 10.871094 118.140625 10.871094 C 118.257812 10.871094 118.351562 10.777344 118.351562 10.660156 Z M 118.351562 10.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 120.941406 9.257812 C 120.941406 9.140625 120.847656 9.046875 120.730469 9.046875 C 120.613281 9.046875 120.519531 9.140625 120.519531 9.257812 C 120.519531 9.375 120.613281 9.46875 120.730469 9.46875 C 120.847656 9.46875 120.941406 9.375 120.941406 9.257812 Z M 120.941406 9.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 120.808594 7.289062 C 120.808594 7.171875 120.714844 7.078125 120.597656 7.078125 C 120.480469 7.078125 120.386719 7.171875 120.386719 7.289062 C 120.386719 7.40625 120.480469 7.5 120.597656 7.5 C 120.714844 7.5 120.808594 7.40625 120.808594 7.289062 Z M 120.808594 7.289062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 123.554688 10.574219 C 123.554688 10.457031 123.460938 10.363281 123.34375 10.363281 C 123.226562 10.363281 123.132812 10.457031 123.132812 10.574219 C 123.132812 10.691406 123.226562 10.785156 123.34375 10.785156 C 123.460938 10.785156 123.554688 10.691406 123.554688 10.574219 Z M 123.554688 10.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.253906 11.355469 C 125.253906 11.238281 125.160156 11.144531 125.042969 11.144531 C 124.925781 11.144531 124.832031 11.238281 124.832031 11.355469 C 124.832031 11.472656 124.925781 11.566406 125.042969 11.566406 C 125.160156 11.566406 125.253906 11.472656 125.253906 11.355469 Z M 125.253906 11.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 124.691406 13.03125 C 124.691406 12.914062 124.597656 12.820312 124.480469 12.820312 C 124.363281 12.820312 124.269531 12.914062 124.269531 13.03125 C 124.269531 13.148438 124.363281 13.242188 124.480469 13.242188 C 124.597656 13.242188 124.691406 13.148438 124.691406 13.03125 Z M 124.691406 13.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.898438 13.75 C 125.898438 13.632812 125.804688 13.539062 125.6875 13.539062 C 125.570312 13.539062 125.476562 13.632812 125.476562 13.75 C 125.476562 13.867188 125.570312 13.960938 125.6875 13.960938 C 125.804688 13.960938 125.898438 13.867188 125.898438 13.75 Z M 125.898438 13.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.625 13.472656 C 126.625 13.355469 126.53125 13.261719 126.414062 13.261719 C 126.296875 13.261719 126.203125 13.355469 126.203125 13.472656 C 126.203125 13.589844 126.296875 13.683594 126.414062 13.683594 C 126.53125 13.683594 126.625 13.589844 126.625 13.472656 Z M 126.625 13.472656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 127.273438 14.980469 C 127.273438 14.863281 127.179688 14.769531 127.0625 14.769531 C 126.945312 14.769531 126.851562 14.863281 126.851562 14.980469 C 126.851562 15.097656 126.945312 15.191406 127.0625 15.191406 C 127.179688 15.191406 127.273438 15.097656 127.273438 14.980469 Z M 127.273438 14.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.25 13.375 C 128.25 13.257812 128.15625 13.164062 128.039062 13.164062 C 127.921875 13.164062 127.828125 13.257812 127.828125 13.375 C 127.828125 13.492188 127.921875 13.585938 128.039062 13.585938 C 128.15625 13.585938 128.25 13.492188 128.25 13.375 Z M 128.25 13.375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.832031 9.566406 C 125.832031 9.449219 125.738281 9.355469 125.621094 9.355469 C 125.503906 9.355469 125.410156 9.449219 125.410156 9.566406 C 125.410156 9.683594 125.503906 9.777344 125.621094 9.777344 C 125.738281 9.777344 125.832031 9.683594 125.832031 9.566406 Z M 125.832031 9.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.347656 15.28125 C 125.347656 15.164062 125.253906 15.070312 125.136719 15.070312 C 125.019531 15.070312 124.925781 15.164062 124.925781 15.28125 C 124.925781 15.398438 125.019531 15.492188 125.136719 15.492188 C 125.253906 15.492188 125.347656 15.398438 125.347656 15.28125 Z M 125.347656 15.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.835938 15.230469 C 122.835938 15.113281 122.742188 15.019531 122.625 15.019531 C 122.507812 15.019531 122.414062 15.113281 122.414062 15.230469 C 122.414062 15.347656 122.507812 15.441406 122.625 15.441406 C 122.742188 15.441406 122.835938 15.347656 122.835938 15.230469 Z M 122.835938 15.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.105469 16.1875 C 125.105469 16.070312 125.011719 15.976562 124.894531 15.976562 C 124.777344 15.976562 124.683594 16.070312 124.683594 16.1875 C 124.683594 16.304688 124.777344 16.398438 124.894531 16.398438 C 125.011719 16.398438 125.105469 16.304688 125.105469 16.1875 Z M 125.105469 16.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.726562 20.214844 C 125.726562 20.097656 125.632812 20.003906 125.515625 20.003906 C 125.398438 20.003906 125.304688 20.097656 125.304688 20.214844 C 125.304688 20.332031 125.398438 20.425781 125.515625 20.425781 C 125.632812 20.425781 125.726562 20.332031 125.726562 20.214844 Z M 125.726562 20.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 123.898438 19.214844 C 123.898438 19.097656 123.804688 19.003906 123.6875 19.003906 C 123.570312 19.003906 123.476562 19.097656 123.476562 19.214844 C 123.476562 19.332031 123.570312 19.425781 123.6875 19.425781 C 123.804688 19.425781 123.898438 19.332031 123.898438 19.214844 Z M 123.898438 19.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 124.816406 20.792969 C 124.816406 20.675781 124.722656 20.582031 124.605469 20.582031 C 124.488281 20.582031 124.394531 20.675781 124.394531 20.792969 C 124.394531 20.910156 124.488281 21.003906 124.605469 21.003906 C 124.722656 21.003906 124.816406 20.910156 124.816406 20.792969 Z M 124.816406 20.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 123.566406 18.507812 C 123.566406 18.390625 123.472656 18.296875 123.355469 18.296875 C 123.238281 18.296875 123.144531 18.390625 123.144531 18.507812 C 123.144531 18.625 123.238281 18.71875 123.355469 18.71875 C 123.472656 18.71875 123.566406 18.625 123.566406 18.507812 Z M 123.566406 18.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.8125 19.453125 C 126.8125 19.335938 126.71875 19.242188 126.601562 19.242188 C 126.484375 19.242188 126.390625 19.335938 126.390625 19.453125 C 126.390625 19.570312 126.484375 19.664062 126.601562 19.664062 C 126.71875 19.664062 126.8125 19.570312 126.8125 19.453125 Z M 126.8125 19.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 127.570312 17.035156 C 127.570312 16.917969 127.476562 16.824219 127.359375 16.824219 C 127.242188 16.824219 127.148438 16.917969 127.148438 17.035156 C 127.148438 17.152344 127.242188 17.246094 127.359375 17.246094 C 127.476562 17.246094 127.570312 17.152344 127.570312 17.035156 Z M 127.570312 17.035156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.402344 11.53125 C 126.402344 11.414062 126.308594 11.320312 126.191406 11.320312 C 126.074219 11.320312 125.980469 11.414062 125.980469 11.53125 C 125.980469 11.648438 126.074219 11.742188 126.191406 11.742188 C 126.308594 11.742188 126.402344 11.648438 126.402344 11.53125 Z M 126.402344 11.53125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.246094 10.214844 C 126.246094 10.097656 126.152344 10.003906 126.035156 10.003906 C 125.917969 10.003906 125.824219 10.097656 125.824219 10.214844 C 125.824219 10.332031 125.917969 10.425781 126.035156 10.425781 C 126.152344 10.425781 126.246094 10.332031 126.246094 10.214844 Z M 126.246094 10.214844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 123.757812 8.757812 C 123.757812 8.640625 123.664062 8.546875 123.546875 8.546875 C 123.429688 8.546875 123.335938 8.640625 123.335938 8.757812 C 123.335938 8.875 123.429688 8.96875 123.546875 8.96875 C 123.664062 8.96875 123.757812 8.875 123.757812 8.757812 Z M 123.757812 8.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 119.066406 8.347656 C 119.066406 8.230469 118.972656 8.136719 118.855469 8.136719 C 118.738281 8.136719 118.644531 8.230469 118.644531 8.347656 C 118.644531 8.464844 118.738281 8.558594 118.855469 8.558594 C 118.972656 8.558594 119.066406 8.464844 119.066406 8.347656 Z M 119.066406 8.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 116.917969 4.996094 C 116.917969 4.878906 116.824219 4.785156 116.707031 4.785156 C 116.589844 4.785156 116.496094 4.878906 116.496094 4.996094 C 116.496094 5.113281 116.589844 5.207031 116.707031 5.207031 C 116.824219 5.207031 116.917969 5.113281 116.917969 4.996094 Z M 116.917969 4.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 118.699219 3.066406 C 118.699219 2.949219 118.605469 2.855469 118.488281 2.855469 C 118.371094 2.855469 118.277344 2.949219 118.277344 3.066406 C 118.277344 3.183594 118.371094 3.277344 118.488281 3.277344 C 118.605469 3.277344 118.699219 3.183594 118.699219 3.066406 Z M 118.699219 3.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 120.613281 8.4375 C 120.613281 8.320312 120.519531 8.226562 120.402344 8.226562 C 120.285156 8.226562 120.191406 8.320312 120.191406 8.4375 C 120.191406 8.554688 120.285156 8.648438 120.402344 8.648438 C 120.519531 8.648438 120.613281 8.554688 120.613281 8.4375 Z M 120.613281 8.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.136719 9.855469 C 122.136719 9.738281 122.042969 9.644531 121.925781 9.644531 C 121.808594 9.644531 121.714844 9.738281 121.714844 9.855469 C 121.714844 9.972656 121.808594 10.066406 121.925781 10.066406 C 122.042969 10.066406 122.136719 9.972656 122.136719 9.855469 Z M 122.136719 9.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 119.34375 10.320312 C 119.34375 10.203125 119.25 10.109375 119.132812 10.109375 C 119.015625 10.109375 118.921875 10.203125 118.921875 10.320312 C 118.921875 10.4375 119.015625 10.53125 119.132812 10.53125 C 119.25 10.53125 119.34375 10.4375 119.34375 10.320312 Z M 119.34375 10.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 120.839844 8.9375 C 120.839844 8.820312 120.746094 8.726562 120.628906 8.726562 C 120.511719 8.726562 120.417969 8.820312 120.417969 8.9375 C 120.417969 9.054688 120.511719 9.148438 120.628906 9.148438 C 120.746094 9.148438 120.839844 9.054688 120.839844 8.9375 Z M 120.839844 8.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 119.296875 6.769531 C 119.296875 6.652344 119.203125 6.558594 119.085938 6.558594 C 118.96875 6.558594 118.875 6.652344 118.875 6.769531 C 118.875 6.886719 118.96875 6.980469 119.085938 6.980469 C 119.203125 6.980469 119.296875 6.886719 119.296875 6.769531 Z M 119.296875 6.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 117.464844 5.378906 C 117.464844 5.261719 117.371094 5.167969 117.253906 5.167969 C 117.136719 5.167969 117.042969 5.261719 117.042969 5.378906 C 117.042969 5.496094 117.136719 5.589844 117.253906 5.589844 C 117.371094 5.589844 117.464844 5.496094 117.464844 5.378906 Z M 117.464844 5.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 117.953125 7.890625 C 117.953125 7.773438 117.859375 7.679688 117.742188 7.679688 C 117.625 7.679688 117.53125 7.773438 117.53125 7.890625 C 117.53125 8.007812 117.625 8.101562 117.742188 8.101562 C 117.859375 8.101562 117.953125 8.007812 117.953125 7.890625 Z M 117.953125 7.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 116.621094 7.160156 C 116.621094 7.042969 116.527344 6.949219 116.410156 6.949219 C 116.292969 6.949219 116.199219 7.042969 116.199219 7.160156 C 116.199219 7.277344 116.292969 7.371094 116.410156 7.371094 C 116.527344 7.371094 116.621094 7.277344 116.621094 7.160156 Z M 116.621094 7.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 116.199219 7.613281 C 116.199219 7.496094 116.105469 7.402344 115.988281 7.402344 C 115.871094 7.402344 115.777344 7.496094 115.777344 7.613281 C 115.777344 7.730469 115.871094 7.824219 115.988281 7.824219 C 116.105469 7.824219 116.199219 7.730469 116.199219 7.613281 Z M 116.199219 7.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 117.792969 9.175781 C 117.792969 9.058594 117.699219 8.964844 117.582031 8.964844 C 117.464844 8.964844 117.371094 9.058594 117.371094 9.175781 C 117.371094 9.292969 117.464844 9.386719 117.582031 9.386719 C 117.699219 9.386719 117.792969 9.292969 117.792969 9.175781 Z M 117.792969 9.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 121.410156 6.144531 C 121.410156 6.027344 121.316406 5.933594 121.199219 5.933594 C 121.082031 5.933594 120.988281 6.027344 120.988281 6.144531 C 120.988281 6.261719 121.082031 6.355469 121.199219 6.355469 C 121.316406 6.355469 121.410156 6.261719 121.410156 6.144531 Z M 121.410156 6.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 121.605469 3.25 C 121.605469 3.132812 121.511719 3.039062 121.394531 3.039062 C 121.277344 3.039062 121.183594 3.132812 121.183594 3.25 C 121.183594 3.367188 121.277344 3.460938 121.394531 3.460938 C 121.511719 3.460938 121.605469 3.367188 121.605469 3.25 Z M 121.605469 3.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.300781 3.140625 C 122.300781 3.023438 122.207031 2.929688 122.089844 2.929688 C 121.972656 2.929688 121.878906 3.023438 121.878906 3.140625 C 121.878906 3.257812 121.972656 3.351562 122.089844 3.351562 C 122.207031 3.351562 122.300781 3.257812 122.300781 3.140625 Z M 122.300781 3.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.464844 2.414062 C 122.464844 2.296875 122.371094 2.203125 122.253906 2.203125 C 122.136719 2.203125 122.042969 2.296875 122.042969 2.414062 C 122.042969 2.53125 122.136719 2.625 122.253906 2.625 C 122.371094 2.625 122.464844 2.53125 122.464844 2.414062 Z M 122.464844 2.414062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 124.199219 3.664062 C 124.199219 3.546875 124.105469 3.453125 123.988281 3.453125 C 123.871094 3.453125 123.777344 3.546875 123.777344 3.664062 C 123.777344 3.78125 123.871094 3.875 123.988281 3.875 C 124.105469 3.875 124.199219 3.78125 124.199219 3.664062 Z M 124.199219 3.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.136719 4.71875 C 122.136719 4.601562 122.042969 4.507812 121.925781 4.507812 C 121.808594 4.507812 121.714844 4.601562 121.714844 4.71875 C 121.714844 4.835938 121.808594 4.929688 121.925781 4.929688 C 122.042969 4.929688 122.136719 4.835938 122.136719 4.71875 Z M 122.136719 4.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.363281 2.851562 C 122.363281 2.734375 122.269531 2.640625 122.152344 2.640625 C 122.035156 2.640625 121.941406 2.734375 121.941406 2.851562 C 121.941406 2.96875 122.035156 3.0625 122.152344 3.0625 C 122.269531 3.0625 122.363281 2.96875 122.363281 2.851562 Z M 122.363281 2.851562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 121.796875 5.148438 C 121.796875 5.03125 121.703125 4.9375 121.585938 4.9375 C 121.46875 4.9375 121.375 5.03125 121.375 5.148438 C 121.375 5.265625 121.46875 5.359375 121.585938 5.359375 C 121.703125 5.359375 121.796875 5.265625 121.796875 5.148438 Z M 121.796875 5.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 120.925781 5.050781 C 120.925781 4.933594 120.832031 4.839844 120.714844 4.839844 C 120.597656 4.839844 120.503906 4.933594 120.503906 5.050781 C 120.503906 5.167969 120.597656 5.261719 120.714844 5.261719 C 120.832031 5.261719 120.925781 5.167969 120.925781 5.050781 Z M 120.925781 5.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.5625 1.386719 C 122.5625 1.269531 122.46875 1.175781 122.351562 1.175781 C 122.234375 1.175781 122.140625 1.269531 122.140625 1.386719 C 122.140625 1.503906 122.234375 1.597656 122.351562 1.597656 C 122.46875 1.597656 122.5625 1.503906 122.5625 1.386719 Z M 122.5625 1.386719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 124.3125 3.195312 C 124.3125 3.078125 124.21875 2.984375 124.101562 2.984375 C 123.984375 2.984375 123.890625 3.078125 123.890625 3.195312 C 123.890625 3.3125 123.984375 3.40625 124.101562 3.40625 C 124.21875 3.40625 124.3125 3.3125 124.3125 3.195312 Z M 124.3125 3.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 123.621094 3.011719 C 123.621094 2.894531 123.527344 2.800781 123.410156 2.800781 C 123.292969 2.800781 123.199219 2.894531 123.199219 3.011719 C 123.199219 3.128906 123.292969 3.222656 123.410156 3.222656 C 123.527344 3.222656 123.621094 3.128906 123.621094 3.011719 Z M 123.621094 3.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.707031 0.210938 C 126.707031 0.09375 126.613281 0 126.496094 0 C 126.378906 0 126.285156 0.09375 126.285156 0.210938 C 126.285156 0.328125 126.378906 0.421875 126.496094 0.421875 C 126.613281 0.421875 126.707031 0.328125 126.707031 0.210938 Z M 126.707031 0.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.585938 3.730469 C 126.585938 3.613281 126.492188 3.519531 126.375 3.519531 C 126.257812 3.519531 126.164062 3.613281 126.164062 3.730469 C 126.164062 3.847656 126.257812 3.941406 126.375 3.941406 C 126.492188 3.941406 126.585938 3.847656 126.585938 3.730469 Z M 126.585938 3.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.679688 3.800781 C 125.679688 3.683594 125.585938 3.589844 125.46875 3.589844 C 125.351562 3.589844 125.257812 3.683594 125.257812 3.800781 C 125.257812 3.917969 125.351562 4.011719 125.46875 4.011719 C 125.585938 4.011719 125.679688 3.917969 125.679688 3.800781 Z M 125.679688 3.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 124.980469 6.890625 C 124.980469 6.773438 124.886719 6.679688 124.769531 6.679688 C 124.652344 6.679688 124.558594 6.773438 124.558594 6.890625 C 124.558594 7.007812 124.652344 7.101562 124.769531 7.101562 C 124.886719 7.101562 124.980469 7.007812 124.980469 6.890625 Z M 124.980469 6.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.230469 7.210938 C 125.230469 7.09375 125.136719 7 125.019531 7 C 124.902344 7 124.808594 7.09375 124.808594 7.210938 C 124.808594 7.328125 124.902344 7.421875 125.019531 7.421875 C 125.136719 7.421875 125.230469 7.328125 125.230469 7.210938 Z M 125.230469 7.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 124.257812 8.335938 C 124.257812 8.21875 124.164062 8.125 124.046875 8.125 C 123.929688 8.125 123.835938 8.21875 123.835938 8.335938 C 123.835938 8.453125 123.929688 8.546875 124.046875 8.546875 C 124.164062 8.546875 124.257812 8.453125 124.257812 8.335938 Z M 124.257812 8.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.417969 10.273438 C 126.417969 10.15625 126.324219 10.0625 126.207031 10.0625 C 126.089844 10.0625 125.996094 10.15625 125.996094 10.273438 C 125.996094 10.390625 126.089844 10.484375 126.207031 10.484375 C 126.324219 10.484375 126.417969 10.390625 126.417969 10.273438 Z M 126.417969 10.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.871094 14.183594 C 125.871094 14.066406 125.777344 13.972656 125.660156 13.972656 C 125.542969 13.972656 125.449219 14.066406 125.449219 14.183594 C 125.449219 14.300781 125.542969 14.394531 125.660156 14.394531 C 125.777344 14.394531 125.871094 14.300781 125.871094 14.183594 Z M 125.871094 14.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 127.28125 15.707031 C 127.28125 15.589844 127.1875 15.496094 127.070312 15.496094 C 126.953125 15.496094 126.859375 15.589844 126.859375 15.707031 C 126.859375 15.824219 126.953125 15.917969 127.070312 15.917969 C 127.1875 15.917969 127.28125 15.824219 127.28125 15.707031 Z M 127.28125 15.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 131.109375 17.34375 C 131.109375 17.226562 131.015625 17.132812 130.898438 17.132812 C 130.78125 17.132812 130.6875 17.226562 130.6875 17.34375 C 130.6875 17.460938 130.78125 17.554688 130.898438 17.554688 C 131.015625 17.554688 131.109375 17.460938 131.109375 17.34375 Z M 131.109375 17.34375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.75 16.679688 C 130.75 16.5625 130.65625 16.46875 130.539062 16.46875 C 130.421875 16.46875 130.328125 16.5625 130.328125 16.679688 C 130.328125 16.796875 130.421875 16.890625 130.539062 16.890625 C 130.65625 16.890625 130.75 16.796875 130.75 16.679688 Z M 130.75 16.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 134.394531 18.65625 C 134.394531 18.539062 134.300781 18.445312 134.183594 18.445312 C 134.066406 18.445312 133.972656 18.539062 133.972656 18.65625 C 133.972656 18.773438 134.066406 18.867188 134.183594 18.867188 C 134.300781 18.867188 134.394531 18.773438 134.394531 18.65625 Z M 134.394531 18.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.714844 21.570312 C 132.714844 21.453125 132.621094 21.359375 132.503906 21.359375 C 132.386719 21.359375 132.292969 21.453125 132.292969 21.570312 C 132.292969 21.6875 132.386719 21.78125 132.503906 21.78125 C 132.621094 21.78125 132.714844 21.6875 132.714844 21.570312 Z M 132.714844 21.570312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.824219 25.410156 C 130.824219 25.292969 130.730469 25.199219 130.613281 25.199219 C 130.496094 25.199219 130.402344 25.292969 130.402344 25.410156 C 130.402344 25.527344 130.496094 25.621094 130.613281 25.621094 C 130.730469 25.621094 130.824219 25.527344 130.824219 25.410156 Z M 130.824219 25.410156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 131.175781 27.625 C 131.175781 27.507812 131.082031 27.414062 130.964844 27.414062 C 130.847656 27.414062 130.753906 27.507812 130.753906 27.625 C 130.753906 27.742188 130.847656 27.835938 130.964844 27.835938 C 131.082031 27.835938 131.175781 27.742188 131.175781 27.625 Z M 131.175781 27.625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.839844 25.367188 C 130.839844 25.25 130.746094 25.15625 130.628906 25.15625 C 130.511719 25.15625 130.417969 25.25 130.417969 25.367188 C 130.417969 25.484375 130.511719 25.578125 130.628906 25.578125 C 130.746094 25.578125 130.839844 25.484375 130.839844 25.367188 Z M 130.839844 25.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 131.808594 26.535156 C 131.808594 26.417969 131.714844 26.324219 131.597656 26.324219 C 131.480469 26.324219 131.386719 26.417969 131.386719 26.535156 C 131.386719 26.652344 131.480469 26.746094 131.597656 26.746094 C 131.714844 26.746094 131.808594 26.652344 131.808594 26.535156 Z M 131.808594 26.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.460938 23.992188 C 130.460938 23.875 130.367188 23.78125 130.25 23.78125 C 130.132812 23.78125 130.039062 23.875 130.039062 23.992188 C 130.039062 24.109375 130.132812 24.203125 130.25 24.203125 C 130.367188 24.203125 130.460938 24.109375 130.460938 23.992188 Z M 130.460938 23.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 130.292969 24.578125 C 130.292969 24.460938 130.199219 24.367188 130.082031 24.367188 C 129.964844 24.367188 129.871094 24.460938 129.871094 24.578125 C 129.871094 24.695312 129.964844 24.789062 130.082031 24.789062 C 130.199219 24.789062 130.292969 24.695312 130.292969 24.578125 Z M 130.292969 24.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 127.394531 23.617188 C 127.394531 23.5 127.300781 23.40625 127.183594 23.40625 C 127.066406 23.40625 126.972656 23.5 126.972656 23.617188 C 126.972656 23.734375 127.066406 23.828125 127.183594 23.828125 C 127.300781 23.828125 127.394531 23.734375 127.394531 23.617188 Z M 127.394531 23.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.757812 24.21875 C 126.757812 24.101562 126.664062 24.007812 126.546875 24.007812 C 126.429688 24.007812 126.335938 24.101562 126.335938 24.21875 C 126.335938 24.335938 126.429688 24.429688 126.546875 24.429688 C 126.664062 24.429688 126.757812 24.335938 126.757812 24.21875 Z M 126.757812 24.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 129.730469 25.339844 C 129.730469 25.222656 129.636719 25.128906 129.519531 25.128906 C 129.402344 25.128906 129.308594 25.222656 129.308594 25.339844 C 129.308594 25.457031 129.402344 25.550781 129.519531 25.550781 C 129.636719 25.550781 129.730469 25.457031 129.730469 25.339844 Z M 129.730469 25.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.8125 24.425781 C 126.8125 24.308594 126.71875 24.214844 126.601562 24.214844 C 126.484375 24.214844 126.390625 24.308594 126.390625 24.425781 C 126.390625 24.542969 126.484375 24.636719 126.601562 24.636719 C 126.71875 24.636719 126.8125 24.542969 126.8125 24.425781 Z M 126.8125 24.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.019531 23.734375 C 128.019531 23.617188 127.925781 23.523438 127.808594 23.523438 C 127.691406 23.523438 127.597656 23.617188 127.597656 23.734375 C 127.597656 23.851562 127.691406 23.945312 127.808594 23.945312 C 127.925781 23.945312 128.019531 23.851562 128.019531 23.734375 Z M 128.019531 23.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.78125 22.550781 C 126.78125 22.433594 126.6875 22.339844 126.570312 22.339844 C 126.453125 22.339844 126.359375 22.433594 126.359375 22.550781 C 126.359375 22.667969 126.453125 22.761719 126.570312 22.761719 C 126.6875 22.761719 126.78125 22.667969 126.78125 22.550781 Z M 126.78125 22.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.789062 26.339844 C 128.789062 26.222656 128.695312 26.128906 128.578125 26.128906 C 128.460938 26.128906 128.367188 26.222656 128.367188 26.339844 C 128.367188 26.457031 128.460938 26.550781 128.578125 26.550781 C 128.695312 26.550781 128.789062 26.457031 128.789062 26.339844 Z M 128.789062 26.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 129.816406 25.109375 C 129.816406 24.992188 129.722656 24.898438 129.605469 24.898438 C 129.488281 24.898438 129.394531 24.992188 129.394531 25.109375 C 129.394531 25.226562 129.488281 25.320312 129.605469 25.320312 C 129.722656 25.320312 129.816406 25.226562 129.816406 25.109375 Z M 129.816406 25.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 129.5625 24.09375 C 129.5625 23.976562 129.46875 23.882812 129.351562 23.882812 C 129.234375 23.882812 129.140625 23.976562 129.140625 24.09375 C 129.140625 24.210938 129.234375 24.304688 129.351562 24.304688 C 129.46875 24.304688 129.5625 24.210938 129.5625 24.09375 Z M 129.5625 24.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.28125 23.445312 C 128.28125 23.328125 128.1875 23.234375 128.070312 23.234375 C 127.953125 23.234375 127.859375 23.328125 127.859375 23.445312 C 127.859375 23.5625 127.953125 23.65625 128.070312 23.65625 C 128.1875 23.65625 128.28125 23.5625 128.28125 23.445312 Z M 128.28125 23.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.921875 23.800781 C 128.921875 23.683594 128.828125 23.589844 128.710938 23.589844 C 128.59375 23.589844 128.5 23.683594 128.5 23.800781 C 128.5 23.917969 128.59375 24.011719 128.710938 24.011719 C 128.828125 24.011719 128.921875 23.917969 128.921875 23.800781 Z M 128.921875 23.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 129.78125 22.992188 C 129.78125 22.875 129.6875 22.78125 129.570312 22.78125 C 129.453125 22.78125 129.359375 22.875 129.359375 22.992188 C 129.359375 23.109375 129.453125 23.203125 129.570312 23.203125 C 129.6875 23.203125 129.78125 23.109375 129.78125 22.992188 Z M 129.78125 22.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 131.648438 23.535156 C 131.648438 23.417969 131.554688 23.324219 131.4375 23.324219 C 131.320312 23.324219 131.226562 23.417969 131.226562 23.535156 C 131.226562 23.652344 131.320312 23.746094 131.4375 23.746094 C 131.554688 23.746094 131.648438 23.652344 131.648438 23.535156 Z M 131.648438 23.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 131.148438 17.800781 C 131.148438 17.683594 131.054688 17.589844 130.9375 17.589844 C 130.820312 17.589844 130.726562 17.683594 130.726562 17.800781 C 130.726562 17.917969 130.820312 18.011719 130.9375 18.011719 C 131.054688 18.011719 131.148438 17.917969 131.148438 17.800781 Z M 131.148438 17.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 133.0625 18.425781 C 133.0625 18.308594 132.96875 18.214844 132.851562 18.214844 C 132.734375 18.214844 132.640625 18.308594 132.640625 18.425781 C 132.640625 18.542969 132.734375 18.636719 132.851562 18.636719 C 132.96875 18.636719 133.0625 18.542969 133.0625 18.425781 Z M 133.0625 18.425781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 131.503906 18.523438 C 131.503906 18.40625 131.410156 18.3125 131.292969 18.3125 C 131.175781 18.3125 131.082031 18.40625 131.082031 18.523438 C 131.082031 18.640625 131.175781 18.734375 131.292969 18.734375 C 131.410156 18.734375 131.503906 18.640625 131.503906 18.523438 Z M 131.503906 18.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 134.289062 16.113281 C 134.289062 15.996094 134.195312 15.902344 134.078125 15.902344 C 133.960938 15.902344 133.867188 15.996094 133.867188 16.113281 C 133.867188 16.230469 133.960938 16.324219 134.078125 16.324219 C 134.195312 16.324219 134.289062 16.230469 134.289062 16.113281 Z M 134.289062 16.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.832031 16.261719 C 135.832031 16.144531 135.738281 16.050781 135.621094 16.050781 C 135.503906 16.050781 135.410156 16.144531 135.410156 16.261719 C 135.410156 16.378906 135.503906 16.472656 135.621094 16.472656 C 135.738281 16.472656 135.832031 16.378906 135.832031 16.261719 Z M 135.832031 16.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 134.507812 17.058594 C 134.507812 16.941406 134.414062 16.847656 134.296875 16.847656 C 134.179688 16.847656 134.085938 16.941406 134.085938 17.058594 C 134.085938 17.175781 134.179688 17.269531 134.296875 17.269531 C 134.414062 17.269531 134.507812 17.175781 134.507812 17.058594 Z M 134.507812 17.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 135.660156 17.785156 C 135.660156 17.667969 135.566406 17.574219 135.449219 17.574219 C 135.332031 17.574219 135.238281 17.667969 135.238281 17.785156 C 135.238281 17.902344 135.332031 17.996094 135.449219 17.996094 C 135.566406 17.996094 135.660156 17.902344 135.660156 17.785156 Z M 135.660156 17.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 132.292969 17.601562 C 132.292969 17.484375 132.199219 17.390625 132.082031 17.390625 C 131.964844 17.390625 131.871094 17.484375 131.871094 17.601562 C 131.871094 17.71875 131.964844 17.8125 132.082031 17.8125 C 132.199219 17.8125 132.292969 17.71875 132.292969 17.601562 Z M 132.292969 17.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.742188 15.167969 C 128.742188 15.050781 128.648438 14.957031 128.53125 14.957031 C 128.414062 14.957031 128.320312 15.050781 128.320312 15.167969 C 128.320312 15.285156 128.414062 15.378906 128.53125 15.378906 C 128.648438 15.378906 128.742188 15.285156 128.742188 15.167969 Z M 128.742188 15.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 127.222656 15.488281 C 127.222656 15.371094 127.128906 15.277344 127.011719 15.277344 C 126.894531 15.277344 126.800781 15.371094 126.800781 15.488281 C 126.800781 15.605469 126.894531 15.699219 127.011719 15.699219 C 127.128906 15.699219 127.222656 15.605469 127.222656 15.488281 Z M 127.222656 15.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 129.460938 15.308594 C 129.460938 15.191406 129.367188 15.097656 129.25 15.097656 C 129.132812 15.097656 129.039062 15.191406 129.039062 15.308594 C 129.039062 15.425781 129.132812 15.519531 129.25 15.519531 C 129.367188 15.519531 129.460938 15.425781 129.460938 15.308594 Z M 129.460938 15.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.335938 13.125 C 126.335938 13.007812 126.242188 12.914062 126.125 12.914062 C 126.007812 12.914062 125.914062 13.007812 125.914062 13.125 C 125.914062 13.242188 126.007812 13.335938 126.125 13.335938 C 126.242188 13.335938 126.335938 13.242188 126.335938 13.125 Z M 126.335938 13.125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.457031 12.734375 C 126.457031 12.617188 126.363281 12.523438 126.246094 12.523438 C 126.128906 12.523438 126.035156 12.617188 126.035156 12.734375 C 126.035156 12.851562 126.128906 12.945312 126.246094 12.945312 C 126.363281 12.945312 126.457031 12.851562 126.457031 12.734375 Z M 126.457031 12.734375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.628906 11.144531 C 125.628906 11.027344 125.535156 10.933594 125.417969 10.933594 C 125.300781 10.933594 125.207031 11.027344 125.207031 11.144531 C 125.207031 11.261719 125.300781 11.355469 125.417969 11.355469 C 125.535156 11.355469 125.628906 11.261719 125.628906 11.144531 Z M 125.628906 11.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.359375 10.132812 C 126.359375 10.015625 126.265625 9.921875 126.148438 9.921875 C 126.03125 9.921875 125.9375 10.015625 125.9375 10.132812 C 125.9375 10.25 126.03125 10.34375 126.148438 10.34375 C 126.265625 10.34375 126.359375 10.25 126.359375 10.132812 Z M 126.359375 10.132812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 124.699219 6.101562 C 124.699219 5.984375 124.605469 5.890625 124.488281 5.890625 C 124.371094 5.890625 124.277344 5.984375 124.277344 6.101562 C 124.277344 6.21875 124.371094 6.3125 124.488281 6.3125 C 124.605469 6.3125 124.699219 6.21875 124.699219 6.101562 Z M 124.699219 6.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.566406 5.988281 C 126.566406 5.871094 126.472656 5.777344 126.355469 5.777344 C 126.238281 5.777344 126.144531 5.871094 126.144531 5.988281 C 126.144531 6.105469 126.238281 6.199219 126.355469 6.199219 C 126.472656 6.199219 126.566406 6.105469 126.566406 5.988281 Z M 126.566406 5.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.804688 7.226562 C 128.804688 7.109375 128.710938 7.015625 128.59375 7.015625 C 128.476562 7.015625 128.382812 7.109375 128.382812 7.226562 C 128.382812 7.34375 128.476562 7.4375 128.59375 7.4375 C 128.710938 7.4375 128.804688 7.34375 128.804688 7.226562 Z M 128.804688 7.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.730469 2.335938 C 126.730469 2.21875 126.636719 2.125 126.519531 2.125 C 126.402344 2.125 126.308594 2.21875 126.308594 2.335938 C 126.308594 2.453125 126.402344 2.546875 126.519531 2.546875 C 126.636719 2.546875 126.730469 2.453125 126.730469 2.335938 Z M 126.730469 2.335938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.285156 5.933594 C 128.285156 5.816406 128.191406 5.722656 128.074219 5.722656 C 127.957031 5.722656 127.863281 5.816406 127.863281 5.933594 C 127.863281 6.050781 127.957031 6.144531 128.074219 6.144531 C 128.191406 6.144531 128.285156 6.050781 128.285156 5.933594 Z M 128.285156 5.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 129.375 5.917969 C 129.375 5.800781 129.28125 5.707031 129.164062 5.707031 C 129.046875 5.707031 128.953125 5.800781 128.953125 5.917969 C 128.953125 6.035156 129.046875 6.128906 129.164062 6.128906 C 129.28125 6.128906 129.375 6.035156 129.375 5.917969 Z M 129.375 5.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 128.566406 3.882812 C 128.566406 3.765625 128.472656 3.671875 128.355469 3.671875 C 128.238281 3.671875 128.144531 3.765625 128.144531 3.882812 C 128.144531 4 128.238281 4.09375 128.355469 4.09375 C 128.472656 4.09375 128.566406 4 128.566406 3.882812 Z M 128.566406 3.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.714844 2.957031 C 126.714844 2.839844 126.621094 2.746094 126.503906 2.746094 C 126.386719 2.746094 126.292969 2.839844 126.292969 2.957031 C 126.292969 3.074219 126.386719 3.167969 126.503906 3.167969 C 126.621094 3.167969 126.714844 3.074219 126.714844 2.957031 Z M 126.714844 2.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 123.65625 0.917969 C 123.65625 0.800781 123.5625 0.707031 123.445312 0.707031 C 123.328125 0.707031 123.234375 0.800781 123.234375 0.917969 C 123.234375 1.035156 123.328125 1.128906 123.445312 1.128906 C 123.5625 1.128906 123.65625 1.035156 123.65625 0.917969 Z M 123.65625 0.917969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 121.628906 5.09375 C 121.628906 4.976562 121.535156 4.882812 121.417969 4.882812 C 121.300781 4.882812 121.207031 4.976562 121.207031 5.09375 C 121.207031 5.210938 121.300781 5.304688 121.417969 5.304688 C 121.535156 5.304688 121.628906 5.210938 121.628906 5.09375 Z M 121.628906 5.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 121.199219 6.496094 C 121.199219 6.378906 121.105469 6.285156 120.988281 6.285156 C 120.871094 6.285156 120.777344 6.378906 120.777344 6.496094 C 120.777344 6.613281 120.871094 6.707031 120.988281 6.707031 C 121.105469 6.707031 121.199219 6.613281 121.199219 6.496094 Z M 121.199219 6.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 120.167969 5.011719 C 120.167969 4.894531 120.074219 4.800781 119.957031 4.800781 C 119.839844 4.800781 119.746094 4.894531 119.746094 5.011719 C 119.746094 5.128906 119.839844 5.222656 119.957031 5.222656 C 120.074219 5.222656 120.167969 5.128906 120.167969 5.011719 Z M 120.167969 5.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 120.4375 4.445312 C 120.4375 4.328125 120.34375 4.234375 120.226562 4.234375 C 120.109375 4.234375 120.015625 4.328125 120.015625 4.445312 C 120.015625 4.5625 120.109375 4.65625 120.226562 4.65625 C 120.34375 4.65625 120.4375 4.5625 120.4375 4.445312 Z M 120.4375 4.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 118.503906 4.6875 C 118.503906 4.570312 118.410156 4.476562 118.292969 4.476562 C 118.175781 4.476562 118.082031 4.570312 118.082031 4.6875 C 118.082031 4.804688 118.175781 4.898438 118.292969 4.898438 C 118.410156 4.898438 118.503906 4.804688 118.503906 4.6875 Z M 118.503906 4.6875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 121.066406 7.4375 C 121.066406 7.320312 120.972656 7.226562 120.855469 7.226562 C 120.738281 7.226562 120.644531 7.320312 120.644531 7.4375 C 120.644531 7.554688 120.738281 7.648438 120.855469 7.648438 C 120.972656 7.648438 121.066406 7.554688 121.066406 7.4375 Z M 121.066406 7.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 125.414062 10.183594 C 125.414062 10.066406 125.320312 9.972656 125.203125 9.972656 C 125.085938 9.972656 124.992188 10.066406 124.992188 10.183594 C 124.992188 10.300781 125.085938 10.394531 125.203125 10.394531 C 125.320312 10.394531 125.414062 10.300781 125.414062 10.183594 Z M 125.414062 10.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 126.90625 9.644531 C 126.90625 9.527344 126.8125 9.433594 126.695312 9.433594 C 126.578125 9.433594 126.484375 9.527344 126.484375 9.644531 C 126.484375 9.761719 126.578125 9.855469 126.695312 9.855469 C 126.8125 9.855469 126.90625 9.761719 126.90625 9.644531 Z M 126.90625 9.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.488281 10.332031 C 122.488281 10.214844 122.394531 10.121094 122.277344 10.121094 C 122.160156 10.121094 122.066406 10.214844 122.066406 10.332031 C 122.066406 10.449219 122.160156 10.542969 122.277344 10.542969 C 122.394531 10.542969 122.488281 10.449219 122.488281 10.332031 Z M 122.488281 10.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 124.6875 9.285156 C 124.6875 9.167969 124.59375 9.074219 124.476562 9.074219 C 124.359375 9.074219 124.265625 9.167969 124.265625 9.285156 C 124.265625 9.402344 124.359375 9.496094 124.476562 9.496094 C 124.59375 9.496094 124.6875 9.402344 124.6875 9.285156 Z M 124.6875 9.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 122.207031 7.921875 C 122.207031 7.804688 122.113281 7.710938 121.996094 7.710938 C 121.878906 7.710938 121.785156 7.804688 121.785156 7.921875 C 121.785156 8.039062 121.878906 8.132812 121.996094 8.132812 C 122.113281 8.132812 122.207031 8.039062 122.207031 7.921875 Z M 122.207031 7.921875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 118.597656 9.40625 C 118.597656 9.289062 118.503906 9.195312 118.386719 9.195312 C 118.269531 9.195312 118.175781 9.289062 118.175781 9.40625 C 118.175781 9.523438 118.269531 9.617188 118.386719 9.617188 C 118.503906 9.617188 118.597656 9.523438 118.597656 9.40625 Z M 118.597656 9.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 117.507812 13.589844 C 117.507812 13.472656 117.414062 13.378906 117.296875 13.378906 C 117.179688 13.378906 117.085938 13.472656 117.085938 13.589844 C 117.085938 13.707031 117.179688 13.800781 117.296875 13.800781 C 117.414062 13.800781 117.507812 13.707031 117.507812 13.589844 Z M 117.507812 13.589844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 113.984375 15.101562 C 113.984375 14.984375 113.890625 14.890625 113.773438 14.890625 C 113.65625 14.890625 113.5625 14.984375 113.5625 15.101562 C 113.5625 15.21875 113.65625 15.3125 113.773438 15.3125 C 113.890625 15.3125 113.984375 15.21875 113.984375 15.101562 Z M 113.984375 15.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 113.304688 13.925781 C 113.304688 13.808594 113.210938 13.714844 113.09375 13.714844 C 112.976562 13.714844 112.882812 13.808594 112.882812 13.925781 C 112.882812 14.042969 112.976562 14.136719 113.09375 14.136719 C 113.210938 14.136719 113.304688 14.042969 113.304688 13.925781 Z M 113.304688 13.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 112.414062 13.347656 C 112.414062 13.230469 112.320312 13.136719 112.203125 13.136719 C 112.085938 13.136719 111.992188 13.230469 111.992188 13.347656 C 111.992188 13.464844 112.085938 13.558594 112.203125 13.558594 C 112.320312 13.558594 112.414062 13.464844 112.414062 13.347656 Z M 112.414062 13.347656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 108.550781 16.230469 C 108.550781 16.113281 108.457031 16.019531 108.339844 16.019531 C 108.222656 16.019531 108.128906 16.113281 108.128906 16.230469 C 108.128906 16.347656 108.222656 16.441406 108.339844 16.441406 C 108.457031 16.441406 108.550781 16.347656 108.550781 16.230469 Z M 108.550781 16.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 109.09375 16.105469 C 109.09375 15.988281 109 15.894531 108.882812 15.894531 C 108.765625 15.894531 108.671875 15.988281 108.671875 16.105469 C 108.671875 16.222656 108.765625 16.316406 108.882812 16.316406 C 109 16.316406 109.09375 16.222656 109.09375 16.105469 Z M 109.09375 16.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 107.375 17.109375 C 107.375 16.992188 107.28125 16.898438 107.164062 16.898438 C 107.046875 16.898438 106.953125 16.992188 106.953125 17.109375 C 106.953125 17.226562 107.046875 17.320312 107.164062 17.320312 C 107.28125 17.320312 107.375 17.226562 107.375 17.109375 Z M 107.375 17.109375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 105.40625 18.757812 C 105.40625 18.640625 105.3125 18.546875 105.195312 18.546875 C 105.078125 18.546875 104.984375 18.640625 104.984375 18.757812 C 104.984375 18.875 105.078125 18.96875 105.195312 18.96875 C 105.3125 18.96875 105.40625 18.875 105.40625 18.757812 Z M 105.40625 18.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 103.292969 15.757812 C 103.292969 15.640625 103.199219 15.546875 103.082031 15.546875 C 102.964844 15.546875 102.871094 15.640625 102.871094 15.757812 C 102.871094 15.875 102.964844 15.96875 103.082031 15.96875 C 103.199219 15.96875 103.292969 15.875 103.292969 15.757812 Z M 103.292969 15.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.277344 18.328125 C 100.277344 18.210938 100.183594 18.117188 100.066406 18.117188 C 99.949219 18.117188 99.855469 18.210938 99.855469 18.328125 C 99.855469 18.445312 99.949219 18.539062 100.066406 18.539062 C 100.183594 18.539062 100.277344 18.445312 100.277344 18.328125 Z M 100.277344 18.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.160156 21.785156 C 99.160156 21.667969 99.066406 21.574219 98.949219 21.574219 C 98.832031 21.574219 98.738281 21.667969 98.738281 21.785156 C 98.738281 21.902344 98.832031 21.996094 98.949219 21.996094 C 99.066406 21.996094 99.160156 21.902344 99.160156 21.785156 Z M 99.160156 21.785156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.007812 22.066406 C 100.007812 21.949219 99.914062 21.855469 99.796875 21.855469 C 99.679688 21.855469 99.585938 21.949219 99.585938 22.066406 C 99.585938 22.183594 99.679688 22.277344 99.796875 22.277344 C 99.914062 22.277344 100.007812 22.183594 100.007812 22.066406 Z M 100.007812 22.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.308594 26.902344 C 100.308594 26.785156 100.214844 26.691406 100.097656 26.691406 C 99.980469 26.691406 99.886719 26.785156 99.886719 26.902344 C 99.886719 27.019531 99.980469 27.113281 100.097656 27.113281 C 100.214844 27.113281 100.308594 27.019531 100.308594 26.902344 Z M 100.308594 26.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 103.289062 21.804688 C 103.289062 21.6875 103.195312 21.59375 103.078125 21.59375 C 102.960938 21.59375 102.867188 21.6875 102.867188 21.804688 C 102.867188 21.921875 102.960938 22.015625 103.078125 22.015625 C 103.195312 22.015625 103.289062 21.921875 103.289062 21.804688 Z M 103.289062 21.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.238281 25.433594 C 100.238281 25.316406 100.144531 25.222656 100.027344 25.222656 C 99.910156 25.222656 99.816406 25.316406 99.816406 25.433594 C 99.816406 25.550781 99.910156 25.644531 100.027344 25.644531 C 100.144531 25.644531 100.238281 25.550781 100.238281 25.433594 Z M 100.238281 25.433594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.632812 26.617188 C 100.632812 26.5 100.539062 26.40625 100.421875 26.40625 C 100.304688 26.40625 100.210938 26.5 100.210938 26.617188 C 100.210938 26.734375 100.304688 26.828125 100.421875 26.828125 C 100.539062 26.828125 100.632812 26.734375 100.632812 26.617188 Z M 100.632812 26.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 102.089844 23.5 C 102.089844 23.382812 101.996094 23.289062 101.878906 23.289062 C 101.761719 23.289062 101.667969 23.382812 101.667969 23.5 C 101.667969 23.617188 101.761719 23.710938 101.878906 23.710938 C 101.996094 23.710938 102.089844 23.617188 102.089844 23.5 Z M 102.089844 23.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 101.222656 23.128906 C 101.222656 23.011719 101.128906 22.917969 101.011719 22.917969 C 100.894531 22.917969 100.800781 23.011719 100.800781 23.128906 C 100.800781 23.246094 100.894531 23.339844 101.011719 23.339844 C 101.128906 23.339844 101.222656 23.246094 101.222656 23.128906 Z M 101.222656 23.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 102.171875 25.351562 C 102.171875 25.234375 102.078125 25.140625 101.960938 25.140625 C 101.84375 25.140625 101.75 25.234375 101.75 25.351562 C 101.75 25.46875 101.84375 25.5625 101.960938 25.5625 C 102.078125 25.5625 102.171875 25.46875 102.171875 25.351562 Z M 102.171875 25.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 102.222656 26.550781 C 102.222656 26.433594 102.128906 26.339844 102.011719 26.339844 C 101.894531 26.339844 101.800781 26.433594 101.800781 26.550781 C 101.800781 26.667969 101.894531 26.761719 102.011719 26.761719 C 102.128906 26.761719 102.222656 26.667969 102.222656 26.550781 Z M 102.222656 26.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.660156 23.597656 C 99.660156 23.480469 99.566406 23.386719 99.449219 23.386719 C 99.332031 23.386719 99.238281 23.480469 99.238281 23.597656 C 99.238281 23.714844 99.332031 23.808594 99.449219 23.808594 C 99.566406 23.808594 99.660156 23.714844 99.660156 23.597656 Z M 99.660156 23.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 97.75 24.25 C 97.75 24.132812 97.65625 24.039062 97.539062 24.039062 C 97.421875 24.039062 97.328125 24.132812 97.328125 24.25 C 97.328125 24.367188 97.421875 24.460938 97.539062 24.460938 C 97.65625 24.460938 97.75 24.367188 97.75 24.25 Z M 97.75 24.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.789062 22.378906 C 99.789062 22.261719 99.695312 22.167969 99.578125 22.167969 C 99.460938 22.167969 99.367188 22.261719 99.367188 22.378906 C 99.367188 22.496094 99.460938 22.589844 99.578125 22.589844 C 99.695312 22.589844 99.789062 22.496094 99.789062 22.378906 Z M 99.789062 22.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.054688 21.363281 C 100.054688 21.246094 99.960938 21.152344 99.84375 21.152344 C 99.726562 21.152344 99.632812 21.246094 99.632812 21.363281 C 99.632812 21.480469 99.726562 21.574219 99.84375 21.574219 C 99.960938 21.574219 100.054688 21.480469 100.054688 21.363281 Z M 100.054688 21.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.761719 22.519531 C 100.761719 22.402344 100.667969 22.308594 100.550781 22.308594 C 100.433594 22.308594 100.339844 22.402344 100.339844 22.519531 C 100.339844 22.636719 100.433594 22.730469 100.550781 22.730469 C 100.667969 22.730469 100.761719 22.636719 100.761719 22.519531 Z M 100.761719 22.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.585938 23.515625 C 99.585938 23.398438 99.492188 23.304688 99.375 23.304688 C 99.257812 23.304688 99.164062 23.398438 99.164062 23.515625 C 99.164062 23.632812 99.257812 23.726562 99.375 23.726562 C 99.492188 23.726562 99.585938 23.632812 99.585938 23.515625 Z M 99.585938 23.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 102.621094 23.585938 C 102.621094 23.46875 102.527344 23.375 102.410156 23.375 C 102.292969 23.375 102.199219 23.46875 102.199219 23.585938 C 102.199219 23.703125 102.292969 23.796875 102.410156 23.796875 C 102.527344 23.796875 102.621094 23.703125 102.621094 23.585938 Z M 102.621094 23.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 105.929688 22.046875 C 105.929688 21.929688 105.835938 21.835938 105.71875 21.835938 C 105.601562 21.835938 105.507812 21.929688 105.507812 22.046875 C 105.507812 22.164062 105.601562 22.257812 105.71875 22.257812 C 105.835938 22.257812 105.929688 22.164062 105.929688 22.046875 Z M 105.929688 22.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 107.605469 23.296875 C 107.605469 23.179688 107.511719 23.085938 107.394531 23.085938 C 107.277344 23.085938 107.183594 23.179688 107.183594 23.296875 C 107.183594 23.414062 107.277344 23.507812 107.394531 23.507812 C 107.511719 23.507812 107.605469 23.414062 107.605469 23.296875 Z M 107.605469 23.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 107.664062 18.75 C 107.664062 18.632812 107.570312 18.539062 107.453125 18.539062 C 107.335938 18.539062 107.242188 18.632812 107.242188 18.75 C 107.242188 18.867188 107.335938 18.960938 107.453125 18.960938 C 107.570312 18.960938 107.664062 18.867188 107.664062 18.75 Z M 107.664062 18.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 107.214844 22.828125 C 107.214844 22.710938 107.121094 22.617188 107.003906 22.617188 C 106.886719 22.617188 106.792969 22.710938 106.792969 22.828125 C 106.792969 22.945312 106.886719 23.039062 107.003906 23.039062 C 107.121094 23.039062 107.214844 22.945312 107.214844 22.828125 Z M 107.214844 22.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 108.714844 26.042969 C 108.714844 25.925781 108.621094 25.832031 108.503906 25.832031 C 108.386719 25.832031 108.292969 25.925781 108.292969 26.042969 C 108.292969 26.160156 108.386719 26.253906 108.503906 26.253906 C 108.621094 26.253906 108.714844 26.160156 108.714844 26.042969 Z M 108.714844 26.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 107.117188 21.992188 C 107.117188 21.875 107.023438 21.78125 106.90625 21.78125 C 106.789062 21.78125 106.695312 21.875 106.695312 21.992188 C 106.695312 22.109375 106.789062 22.203125 106.90625 22.203125 C 107.023438 22.203125 107.117188 22.109375 107.117188 21.992188 Z M 107.117188 21.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 103.070312 23.550781 C 103.070312 23.433594 102.976562 23.339844 102.859375 23.339844 C 102.742188 23.339844 102.648438 23.433594 102.648438 23.550781 C 102.648438 23.667969 102.742188 23.761719 102.859375 23.761719 C 102.976562 23.761719 103.070312 23.667969 103.070312 23.550781 Z M 103.070312 23.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.4375 20.144531 C 100.4375 20.027344 100.34375 19.933594 100.226562 19.933594 C 100.109375 19.933594 100.015625 20.027344 100.015625 20.144531 C 100.015625 20.261719 100.109375 20.355469 100.226562 20.355469 C 100.34375 20.355469 100.4375 20.261719 100.4375 20.144531 Z M 100.4375 20.144531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.398438 21.566406 C 100.398438 21.449219 100.304688 21.355469 100.1875 21.355469 C 100.070312 21.355469 99.976562 21.449219 99.976562 21.566406 C 99.976562 21.683594 100.070312 21.777344 100.1875 21.777344 C 100.304688 21.777344 100.398438 21.683594 100.398438 21.566406 Z M 100.398438 21.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.476562 21.304688 C 99.476562 21.1875 99.382812 21.09375 99.265625 21.09375 C 99.148438 21.09375 99.054688 21.1875 99.054688 21.304688 C 99.054688 21.421875 99.148438 21.515625 99.265625 21.515625 C 99.382812 21.515625 99.476562 21.421875 99.476562 21.304688 Z M 99.476562 21.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 101.179688 21.382812 C 101.179688 21.265625 101.085938 21.171875 100.96875 21.171875 C 100.851562 21.171875 100.757812 21.265625 100.757812 21.382812 C 100.757812 21.5 100.851562 21.59375 100.96875 21.59375 C 101.085938 21.59375 101.179688 21.5 101.179688 21.382812 Z M 101.179688 21.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 98.902344 20.398438 C 98.902344 20.28125 98.808594 20.1875 98.691406 20.1875 C 98.574219 20.1875 98.480469 20.28125 98.480469 20.398438 C 98.480469 20.515625 98.574219 20.609375 98.691406 20.609375 C 98.808594 20.609375 98.902344 20.515625 98.902344 20.398438 Z M 98.902344 20.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 98.984375 18.191406 C 98.984375 18.074219 98.890625 17.980469 98.773438 17.980469 C 98.65625 17.980469 98.5625 18.074219 98.5625 18.191406 C 98.5625 18.308594 98.65625 18.402344 98.773438 18.402344 C 98.890625 18.402344 98.984375 18.308594 98.984375 18.191406 Z M 98.984375 18.191406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 96.476562 18.027344 C 96.476562 17.910156 96.382812 17.816406 96.265625 17.816406 C 96.148438 17.816406 96.054688 17.910156 96.054688 18.027344 C 96.054688 18.144531 96.148438 18.238281 96.265625 18.238281 C 96.382812 18.238281 96.476562 18.144531 96.476562 18.027344 Z M 96.476562 18.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 97.21875 16.988281 C 97.21875 16.871094 97.125 16.777344 97.007812 16.777344 C 96.890625 16.777344 96.796875 16.871094 96.796875 16.988281 C 96.796875 17.105469 96.890625 17.199219 97.007812 17.199219 C 97.125 17.199219 97.21875 17.105469 97.21875 16.988281 Z M 97.21875 16.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 98.945312 22.660156 C 98.945312 22.542969 98.851562 22.449219 98.734375 22.449219 C 98.617188 22.449219 98.523438 22.542969 98.523438 22.660156 C 98.523438 22.777344 98.617188 22.871094 98.734375 22.871094 C 98.851562 22.871094 98.945312 22.777344 98.945312 22.660156 Z M 98.945312 22.660156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 97.609375 26.363281 C 97.609375 26.246094 97.515625 26.152344 97.398438 26.152344 C 97.28125 26.152344 97.1875 26.246094 97.1875 26.363281 C 97.1875 26.480469 97.28125 26.574219 97.398438 26.574219 C 97.515625 26.574219 97.609375 26.480469 97.609375 26.363281 Z M 97.609375 26.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 97.675781 25.980469 C 97.675781 25.863281 97.582031 25.769531 97.464844 25.769531 C 97.347656 25.769531 97.253906 25.863281 97.253906 25.980469 C 97.253906 26.097656 97.347656 26.191406 97.464844 26.191406 C 97.582031 26.191406 97.675781 26.097656 97.675781 25.980469 Z M 97.675781 25.980469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 97.59375 24.671875 C 97.59375 24.554688 97.5 24.460938 97.382812 24.460938 C 97.265625 24.460938 97.171875 24.554688 97.171875 24.671875 C 97.171875 24.789062 97.265625 24.882812 97.382812 24.882812 C 97.5 24.882812 97.59375 24.789062 97.59375 24.671875 Z M 97.59375 24.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.628906 27.304688 C 99.628906 27.1875 99.535156 27.09375 99.417969 27.09375 C 99.300781 27.09375 99.207031 27.1875 99.207031 27.304688 C 99.207031 27.421875 99.300781 27.515625 99.417969 27.515625 C 99.535156 27.515625 99.628906 27.421875 99.628906 27.304688 Z M 99.628906 27.304688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 100.136719 26.183594 C 100.136719 26.066406 100.042969 25.972656 99.925781 25.972656 C 99.808594 25.972656 99.714844 26.066406 99.714844 26.183594 C 99.714844 26.300781 99.808594 26.394531 99.925781 26.394531 C 100.042969 26.394531 100.136719 26.300781 100.136719 26.183594 Z M 100.136719 26.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 99.90625 25.945312 C 99.90625 25.828125 99.8125 25.734375 99.695312 25.734375 C 99.578125 25.734375 99.484375 25.828125 99.484375 25.945312 C 99.484375 26.0625 99.578125 26.15625 99.695312 26.15625 C 99.8125 26.15625 99.90625 26.0625 99.90625 25.945312 Z M 99.90625 25.945312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.269531 20.316406 C 94.269531 20.199219 94.175781 20.105469 94.058594 20.105469 C 93.941406 20.105469 93.847656 20.199219 93.847656 20.316406 C 93.847656 20.433594 93.941406 20.527344 94.058594 20.527344 C 94.175781 20.527344 94.269531 20.433594 94.269531 20.316406 Z M 94.269531 20.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.777344 24.105469 C 90.777344 23.988281 90.683594 23.894531 90.566406 23.894531 C 90.449219 23.894531 90.355469 23.988281 90.355469 24.105469 C 90.355469 24.222656 90.449219 24.316406 90.566406 24.316406 C 90.683594 24.316406 90.777344 24.222656 90.777344 24.105469 Z M 90.777344 24.105469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.222656 26.699219 C 88.222656 26.582031 88.128906 26.488281 88.011719 26.488281 C 87.894531 26.488281 87.800781 26.582031 87.800781 26.699219 C 87.800781 26.816406 87.894531 26.910156 88.011719 26.910156 C 88.128906 26.910156 88.222656 26.816406 88.222656 26.699219 Z M 88.222656 26.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.804688 25.835938 C 90.804688 25.71875 90.710938 25.625 90.59375 25.625 C 90.476562 25.625 90.382812 25.71875 90.382812 25.835938 C 90.382812 25.953125 90.476562 26.046875 90.59375 26.046875 C 90.710938 26.046875 90.804688 25.953125 90.804688 25.835938 Z M 90.804688 25.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.789062 26.226562 C 90.789062 26.109375 90.695312 26.015625 90.578125 26.015625 C 90.460938 26.015625 90.367188 26.109375 90.367188 26.226562 C 90.367188 26.34375 90.460938 26.4375 90.578125 26.4375 C 90.695312 26.4375 90.789062 26.34375 90.789062 26.226562 Z M 90.789062 26.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 94.820312 26.902344 C 94.820312 26.785156 94.726562 26.691406 94.609375 26.691406 C 94.492188 26.691406 94.398438 26.785156 94.398438 26.902344 C 94.398438 27.019531 94.492188 27.113281 94.609375 27.113281 C 94.726562 27.113281 94.820312 27.019531 94.820312 26.902344 Z M 94.820312 26.902344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 93.628906 28.867188 C 93.628906 28.75 93.535156 28.65625 93.417969 28.65625 C 93.300781 28.65625 93.207031 28.75 93.207031 28.867188 C 93.207031 28.984375 93.300781 29.078125 93.417969 29.078125 C 93.535156 29.078125 93.628906 28.984375 93.628906 28.867188 Z M 93.628906 28.867188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.089844 26.898438 C 90.089844 26.78125 89.996094 26.6875 89.878906 26.6875 C 89.761719 26.6875 89.667969 26.78125 89.667969 26.898438 C 89.667969 27.015625 89.761719 27.109375 89.878906 27.109375 C 89.996094 27.109375 90.089844 27.015625 90.089844 26.898438 Z M 90.089844 26.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.765625 27.078125 C 84.765625 26.960938 84.671875 26.867188 84.554688 26.867188 C 84.4375 26.867188 84.34375 26.960938 84.34375 27.078125 C 84.34375 27.195312 84.4375 27.289062 84.554688 27.289062 C 84.671875 27.289062 84.765625 27.195312 84.765625 27.078125 Z M 84.765625 27.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.636719 33.179688 C 84.636719 33.0625 84.542969 32.96875 84.425781 32.96875 C 84.308594 32.96875 84.214844 33.0625 84.214844 33.179688 C 84.214844 33.296875 84.308594 33.390625 84.425781 33.390625 C 84.542969 33.390625 84.636719 33.296875 84.636719 33.179688 Z M 84.636719 33.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.445312 30.492188 C 86.445312 30.375 86.351562 30.28125 86.234375 30.28125 C 86.117188 30.28125 86.023438 30.375 86.023438 30.492188 C 86.023438 30.609375 86.117188 30.703125 86.234375 30.703125 C 86.351562 30.703125 86.445312 30.609375 86.445312 30.492188 Z M 86.445312 30.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.882812 29.800781 C 86.882812 29.683594 86.789062 29.589844 86.671875 29.589844 C 86.554688 29.589844 86.460938 29.683594 86.460938 29.800781 C 86.460938 29.917969 86.554688 30.011719 86.671875 30.011719 C 86.789062 30.011719 86.882812 29.917969 86.882812 29.800781 Z M 86.882812 29.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.105469 27.816406 C 86.105469 27.699219 86.011719 27.605469 85.894531 27.605469 C 85.777344 27.605469 85.683594 27.699219 85.683594 27.816406 C 85.683594 27.933594 85.777344 28.027344 85.894531 28.027344 C 86.011719 28.027344 86.105469 27.933594 86.105469 27.816406 Z M 86.105469 27.816406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 85.039062 28.628906 C 85.039062 28.511719 84.945312 28.417969 84.828125 28.417969 C 84.710938 28.417969 84.617188 28.511719 84.617188 28.628906 C 84.617188 28.746094 84.710938 28.839844 84.828125 28.839844 C 84.945312 28.839844 85.039062 28.746094 85.039062 28.628906 Z M 85.039062 28.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 89.65625 26.273438 C 89.65625 26.15625 89.5625 26.0625 89.445312 26.0625 C 89.328125 26.0625 89.234375 26.15625 89.234375 26.273438 C 89.234375 26.390625 89.328125 26.484375 89.445312 26.484375 C 89.5625 26.484375 89.65625 26.390625 89.65625 26.273438 Z M 89.65625 26.273438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.550781 24.164062 C 90.550781 24.046875 90.457031 23.953125 90.339844 23.953125 C 90.222656 23.953125 90.128906 24.046875 90.128906 24.164062 C 90.128906 24.28125 90.222656 24.375 90.339844 24.375 C 90.457031 24.375 90.550781 24.28125 90.550781 24.164062 Z M 90.550781 24.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.546875 24.9375 C 88.546875 24.820312 88.453125 24.726562 88.335938 24.726562 C 88.21875 24.726562 88.125 24.820312 88.125 24.9375 C 88.125 25.054688 88.21875 25.148438 88.335938 25.148438 C 88.453125 25.148438 88.546875 25.054688 88.546875 24.9375 Z M 88.546875 24.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.75 25.082031 C 87.75 24.964844 87.65625 24.871094 87.539062 24.871094 C 87.421875 24.871094 87.328125 24.964844 87.328125 25.082031 C 87.328125 25.199219 87.421875 25.292969 87.539062 25.292969 C 87.65625 25.292969 87.75 25.199219 87.75 25.082031 Z M 87.75 25.082031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 88.902344 25.203125 C 88.902344 25.085938 88.808594 24.992188 88.691406 24.992188 C 88.574219 24.992188 88.480469 25.085938 88.480469 25.203125 C 88.480469 25.320312 88.574219 25.414062 88.691406 25.414062 C 88.808594 25.414062 88.902344 25.320312 88.902344 25.203125 Z M 88.902344 25.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 90.960938 30.355469 C 90.960938 30.238281 90.867188 30.144531 90.75 30.144531 C 90.632812 30.144531 90.539062 30.238281 90.539062 30.355469 C 90.539062 30.472656 90.632812 30.566406 90.75 30.566406 C 90.867188 30.566406 90.960938 30.472656 90.960938 30.355469 Z M 90.960938 30.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.972656 28.628906 C 84.972656 28.511719 84.878906 28.417969 84.761719 28.417969 C 84.644531 28.417969 84.550781 28.511719 84.550781 28.628906 C 84.550781 28.746094 84.644531 28.839844 84.761719 28.839844 C 84.878906 28.839844 84.972656 28.746094 84.972656 28.628906 Z M 84.972656 28.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.746094 28.117188 C 84.746094 28 84.652344 27.90625 84.535156 27.90625 C 84.417969 27.90625 84.324219 28 84.324219 28.117188 C 84.324219 28.234375 84.417969 28.328125 84.535156 28.328125 C 84.652344 28.328125 84.746094 28.234375 84.746094 28.117188 Z M 84.746094 28.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.054688 29.675781 C 84.054688 29.558594 83.960938 29.464844 83.84375 29.464844 C 83.726562 29.464844 83.632812 29.558594 83.632812 29.675781 C 83.632812 29.792969 83.726562 29.886719 83.84375 29.886719 C 83.960938 29.886719 84.054688 29.792969 84.054688 29.675781 Z M 84.054688 29.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.109375 26.046875 C 82.109375 25.929688 82.015625 25.835938 81.898438 25.835938 C 81.78125 25.835938 81.6875 25.929688 81.6875 26.046875 C 81.6875 26.164062 81.78125 26.257812 81.898438 26.257812 C 82.015625 26.257812 82.109375 26.164062 82.109375 26.046875 Z M 82.109375 26.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.550781 24.882812 C 84.550781 24.765625 84.457031 24.671875 84.339844 24.671875 C 84.222656 24.671875 84.128906 24.765625 84.128906 24.882812 C 84.128906 25 84.222656 25.09375 84.339844 25.09375 C 84.457031 25.09375 84.550781 25 84.550781 24.882812 Z M 84.550781 24.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.316406 23.753906 C 86.316406 23.636719 86.222656 23.542969 86.105469 23.542969 C 85.988281 23.542969 85.894531 23.636719 85.894531 23.753906 C 85.894531 23.871094 85.988281 23.964844 86.105469 23.964844 C 86.222656 23.964844 86.316406 23.871094 86.316406 23.753906 Z M 86.316406 23.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.332031 23.71875 C 86.332031 23.601562 86.238281 23.507812 86.121094 23.507812 C 86.003906 23.507812 85.910156 23.601562 85.910156 23.71875 C 85.910156 23.835938 86.003906 23.929688 86.121094 23.929688 C 86.238281 23.929688 86.332031 23.835938 86.332031 23.71875 Z M 86.332031 23.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.867188 21.363281 C 82.867188 21.246094 82.773438 21.152344 82.65625 21.152344 C 82.539062 21.152344 82.445312 21.246094 82.445312 21.363281 C 82.445312 21.480469 82.539062 21.574219 82.65625 21.574219 C 82.773438 21.574219 82.867188 21.480469 82.867188 21.363281 Z M 82.867188 21.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 82.660156 23.03125 C 82.660156 22.914062 82.566406 22.820312 82.449219 22.820312 C 82.332031 22.820312 82.238281 22.914062 82.238281 23.03125 C 82.238281 23.148438 82.332031 23.242188 82.449219 23.242188 C 82.566406 23.242188 82.660156 23.148438 82.660156 23.03125 Z M 82.660156 23.03125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.339844 21.527344 C 83.339844 21.410156 83.246094 21.316406 83.128906 21.316406 C 83.011719 21.316406 82.917969 21.410156 82.917969 21.527344 C 82.917969 21.644531 83.011719 21.738281 83.128906 21.738281 C 83.246094 21.738281 83.339844 21.644531 83.339844 21.527344 Z M 83.339844 21.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.824219 19.679688 C 83.824219 19.5625 83.730469 19.46875 83.613281 19.46875 C 83.496094 19.46875 83.402344 19.5625 83.402344 19.679688 C 83.402344 19.796875 83.496094 19.890625 83.613281 19.890625 C 83.730469 19.890625 83.824219 19.796875 83.824219 19.679688 Z M 83.824219 19.679688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.527344 17.363281 C 86.527344 17.246094 86.433594 17.152344 86.316406 17.152344 C 86.199219 17.152344 86.105469 17.246094 86.105469 17.363281 C 86.105469 17.480469 86.199219 17.574219 86.316406 17.574219 C 86.433594 17.574219 86.527344 17.480469 86.527344 17.363281 Z M 86.527344 17.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 86.535156 18.179688 C 86.535156 18.0625 86.441406 17.96875 86.324219 17.96875 C 86.207031 17.96875 86.113281 18.0625 86.113281 18.179688 C 86.113281 18.296875 86.207031 18.390625 86.324219 18.390625 C 86.441406 18.390625 86.535156 18.296875 86.535156 18.179688 Z M 86.535156 18.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.488281 14.566406 C 87.488281 14.449219 87.394531 14.355469 87.277344 14.355469 C 87.160156 14.355469 87.066406 14.449219 87.066406 14.566406 C 87.066406 14.683594 87.160156 14.777344 87.277344 14.777344 C 87.394531 14.777344 87.488281 14.683594 87.488281 14.566406 Z M 87.488281 14.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 87.761719 16.828125 C 87.761719 16.710938 87.667969 16.617188 87.550781 16.617188 C 87.433594 16.617188 87.339844 16.710938 87.339844 16.828125 C 87.339844 16.945312 87.433594 17.039062 87.550781 17.039062 C 87.667969 17.039062 87.761719 16.945312 87.761719 16.828125 Z M 87.761719 16.828125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.996094 15.671875 C 83.996094 15.554688 83.902344 15.460938 83.785156 15.460938 C 83.667969 15.460938 83.574219 15.554688 83.574219 15.671875 C 83.574219 15.789062 83.667969 15.882812 83.785156 15.882812 C 83.902344 15.882812 83.996094 15.789062 83.996094 15.671875 Z M 83.996094 15.671875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.183594 12.28125 C 84.183594 12.164062 84.089844 12.070312 83.972656 12.070312 C 83.855469 12.070312 83.761719 12.164062 83.761719 12.28125 C 83.761719 12.398438 83.855469 12.492188 83.972656 12.492188 C 84.089844 12.492188 84.183594 12.398438 84.183594 12.28125 Z M 84.183594 12.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 84.378906 14.203125 C 84.378906 14.085938 84.285156 13.992188 84.167969 13.992188 C 84.050781 13.992188 83.957031 14.085938 83.957031 14.203125 C 83.957031 14.320312 84.050781 14.414062 84.167969 14.414062 C 84.285156 14.414062 84.378906 14.320312 84.378906 14.203125 Z M 84.378906 14.203125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 83.808594 14.507812 C 83.808594 14.390625 83.714844 14.296875 83.597656 14.296875 C 83.480469 14.296875 83.386719 14.390625 83.386719 14.507812 C 83.386719 14.625 83.480469 14.71875 83.597656 14.71875 C 83.714844 14.71875 83.808594 14.625 83.808594 14.507812 Z M 83.808594 14.507812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80 13.957031 C 80 13.839844 79.90625 13.746094 79.789062 13.746094 C 79.671875 13.746094 79.578125 13.839844 79.578125 13.957031 C 79.578125 14.074219 79.671875 14.167969 79.789062 14.167969 C 79.90625 14.167969 80 14.074219 80 13.957031 Z M 80 13.957031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 79.238281 15.332031 C 79.238281 15.214844 79.144531 15.121094 79.027344 15.121094 C 78.910156 15.121094 78.816406 15.214844 78.816406 15.332031 C 78.816406 15.449219 78.910156 15.542969 79.027344 15.542969 C 79.144531 15.542969 79.238281 15.449219 79.238281 15.332031 Z M 79.238281 15.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.863281 17.523438 C 78.863281 17.40625 78.769531 17.3125 78.652344 17.3125 C 78.535156 17.3125 78.441406 17.40625 78.441406 17.523438 C 78.441406 17.640625 78.535156 17.734375 78.652344 17.734375 C 78.769531 17.734375 78.863281 17.640625 78.863281 17.523438 Z M 78.863281 17.523438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.792969 16.265625 C 76.792969 16.148438 76.699219 16.054688 76.582031 16.054688 C 76.464844 16.054688 76.371094 16.148438 76.371094 16.265625 C 76.371094 16.382812 76.464844 16.476562 76.582031 16.476562 C 76.699219 16.476562 76.792969 16.382812 76.792969 16.265625 Z M 76.792969 16.265625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.945312 14.246094 C 73.945312 14.128906 73.851562 14.035156 73.734375 14.035156 C 73.617188 14.035156 73.523438 14.128906 73.523438 14.246094 C 73.523438 14.363281 73.617188 14.457031 73.734375 14.457031 C 73.851562 14.457031 73.945312 14.363281 73.945312 14.246094 Z M 73.945312 14.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.832031 14.683594 C 76.832031 14.566406 76.738281 14.472656 76.621094 14.472656 C 76.503906 14.472656 76.410156 14.566406 76.410156 14.683594 C 76.410156 14.800781 76.503906 14.894531 76.621094 14.894531 C 76.738281 14.894531 76.832031 14.800781 76.832031 14.683594 Z M 76.832031 14.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 80.109375 15.515625 C 80.109375 15.398438 80.015625 15.304688 79.898438 15.304688 C 79.78125 15.304688 79.6875 15.398438 79.6875 15.515625 C 79.6875 15.632812 79.78125 15.726562 79.898438 15.726562 C 80.015625 15.726562 80.109375 15.632812 80.109375 15.515625 Z M 80.109375 15.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.820312 16.4375 C 77.820312 16.320312 77.726562 16.226562 77.609375 16.226562 C 77.492188 16.226562 77.398438 16.320312 77.398438 16.4375 C 77.398438 16.554688 77.492188 16.648438 77.609375 16.648438 C 77.726562 16.648438 77.820312 16.554688 77.820312 16.4375 Z M 77.820312 16.4375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.441406 12.71875 C 77.441406 12.601562 77.347656 12.507812 77.230469 12.507812 C 77.113281 12.507812 77.019531 12.601562 77.019531 12.71875 C 77.019531 12.835938 77.113281 12.929688 77.230469 12.929688 C 77.347656 12.929688 77.441406 12.835938 77.441406 12.71875 Z M 77.441406 12.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.394531 11.675781 C 75.394531 11.558594 75.300781 11.464844 75.183594 11.464844 C 75.066406 11.464844 74.972656 11.558594 74.972656 11.675781 C 74.972656 11.792969 75.066406 11.886719 75.183594 11.886719 C 75.300781 11.886719 75.394531 11.792969 75.394531 11.675781 Z M 75.394531 11.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.746094 14.75 C 78.746094 14.632812 78.652344 14.539062 78.535156 14.539062 C 78.417969 14.539062 78.324219 14.632812 78.324219 14.75 C 78.324219 14.867188 78.417969 14.960938 78.535156 14.960938 C 78.652344 14.960938 78.746094 14.867188 78.746094 14.75 Z M 78.746094 14.75 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 78.332031 13.042969 C 78.332031 12.925781 78.238281 12.832031 78.121094 12.832031 C 78.003906 12.832031 77.910156 12.925781 77.910156 13.042969 C 77.910156 13.160156 78.003906 13.253906 78.121094 13.253906 C 78.238281 13.253906 78.332031 13.160156 78.332031 13.042969 Z M 78.332031 13.042969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 77.183594 13.140625 C 77.183594 13.023438 77.089844 12.929688 76.972656 12.929688 C 76.855469 12.929688 76.761719 13.023438 76.761719 13.140625 C 76.761719 13.257812 76.855469 13.351562 76.972656 13.351562 C 77.089844 13.351562 77.183594 13.257812 77.183594 13.140625 Z M 77.183594 13.140625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.980469 15.390625 C 76.980469 15.273438 76.886719 15.179688 76.769531 15.179688 C 76.652344 15.179688 76.558594 15.273438 76.558594 15.390625 C 76.558594 15.507812 76.652344 15.601562 76.769531 15.601562 C 76.886719 15.601562 76.980469 15.507812 76.980469 15.390625 Z M 76.980469 15.390625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.480469 17.277344 C 71.480469 17.160156 71.386719 17.066406 71.269531 17.066406 C 71.152344 17.066406 71.058594 17.160156 71.058594 17.277344 C 71.058594 17.394531 71.152344 17.488281 71.269531 17.488281 C 71.386719 17.488281 71.480469 17.394531 71.480469 17.277344 Z M 71.480469 17.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.121094 16.363281 C 70.121094 16.246094 70.027344 16.152344 69.910156 16.152344 C 69.792969 16.152344 69.699219 16.246094 69.699219 16.363281 C 69.699219 16.480469 69.792969 16.574219 69.910156 16.574219 C 70.027344 16.574219 70.121094 16.480469 70.121094 16.363281 Z M 70.121094 16.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 71.394531 16.824219 C 71.394531 16.707031 71.300781 16.613281 71.183594 16.613281 C 71.066406 16.613281 70.972656 16.707031 70.972656 16.824219 C 70.972656 16.941406 71.066406 17.035156 71.183594 17.035156 C 71.300781 17.035156 71.394531 16.941406 71.394531 16.824219 Z M 71.394531 16.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.613281 15.542969 C 72.613281 15.425781 72.519531 15.332031 72.402344 15.332031 C 72.285156 15.332031 72.191406 15.425781 72.191406 15.542969 C 72.191406 15.660156 72.285156 15.753906 72.402344 15.753906 C 72.519531 15.753906 72.613281 15.660156 72.613281 15.542969 Z M 72.613281 15.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.132812 16.558594 C 74.132812 16.441406 74.039062 16.347656 73.921875 16.347656 C 73.804688 16.347656 73.710938 16.441406 73.710938 16.558594 C 73.710938 16.675781 73.804688 16.769531 73.921875 16.769531 C 74.039062 16.769531 74.132812 16.675781 74.132812 16.558594 Z M 74.132812 16.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.050781 17.277344 C 74.050781 17.160156 73.957031 17.066406 73.839844 17.066406 C 73.722656 17.066406 73.628906 17.160156 73.628906 17.277344 C 73.628906 17.394531 73.722656 17.488281 73.839844 17.488281 C 73.957031 17.488281 74.050781 17.394531 74.050781 17.277344 Z M 74.050781 17.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 75.550781 14.257812 C 75.550781 14.140625 75.457031 14.046875 75.339844 14.046875 C 75.222656 14.046875 75.128906 14.140625 75.128906 14.257812 C 75.128906 14.375 75.222656 14.46875 75.339844 14.46875 C 75.457031 14.46875 75.550781 14.375 75.550781 14.257812 Z M 75.550781 14.257812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.878906 13.542969 C 73.878906 13.425781 73.785156 13.332031 73.667969 13.332031 C 73.550781 13.332031 73.457031 13.425781 73.457031 13.542969 C 73.457031 13.660156 73.550781 13.753906 73.667969 13.753906 C 73.785156 13.753906 73.878906 13.660156 73.878906 13.542969 Z M 73.878906 13.542969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.949219 11.328125 C 74.949219 11.210938 74.855469 11.117188 74.738281 11.117188 C 74.621094 11.117188 74.527344 11.210938 74.527344 11.328125 C 74.527344 11.445312 74.621094 11.539062 74.738281 11.539062 C 74.855469 11.539062 74.949219 11.445312 74.949219 11.328125 Z M 74.949219 11.328125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.105469 15.054688 C 72.105469 14.9375 72.011719 14.84375 71.894531 14.84375 C 71.777344 14.84375 71.683594 14.9375 71.683594 15.054688 C 71.683594 15.171875 71.777344 15.265625 71.894531 15.265625 C 72.011719 15.265625 72.105469 15.171875 72.105469 15.054688 Z M 72.105469 15.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 72.5625 16.308594 C 72.5625 16.191406 72.46875 16.097656 72.351562 16.097656 C 72.234375 16.097656 72.140625 16.191406 72.140625 16.308594 C 72.140625 16.425781 72.234375 16.519531 72.351562 16.519531 C 72.46875 16.519531 72.5625 16.425781 72.5625 16.308594 Z M 72.5625 16.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 73.054688 16.976562 C 73.054688 16.859375 72.960938 16.765625 72.84375 16.765625 C 72.726562 16.765625 72.632812 16.859375 72.632812 16.976562 C 72.632812 17.09375 72.726562 17.1875 72.84375 17.1875 C 72.960938 17.1875 73.054688 17.09375 73.054688 16.976562 Z M 73.054688 16.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.996094 16.707031 C 70.996094 16.589844 70.902344 16.496094 70.785156 16.496094 C 70.667969 16.496094 70.574219 16.589844 70.574219 16.707031 C 70.574219 16.824219 70.667969 16.917969 70.785156 16.917969 C 70.902344 16.917969 70.996094 16.824219 70.996094 16.707031 Z M 70.996094 16.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 76.960938 17.578125 C 76.960938 17.460938 76.867188 17.367188 76.75 17.367188 C 76.632812 17.367188 76.539062 17.460938 76.539062 17.578125 C 76.539062 17.695312 76.632812 17.789062 76.75 17.789062 C 76.867188 17.789062 76.960938 17.695312 76.960938 17.578125 Z M 76.960938 17.578125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 74.546875 18.1875 C 74.546875 18.070312 74.453125 17.976562 74.335938 17.976562 C 74.21875 17.976562 74.125 18.070312 74.125 18.1875 C 74.125 18.304688 74.21875 18.398438 74.335938 18.398438 C 74.453125 18.398438 74.546875 18.304688 74.546875 18.1875 Z M 74.546875 18.1875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 70.984375 16.65625 C 70.984375 16.539062 70.890625 16.445312 70.773438 16.445312 C 70.65625 16.445312 70.5625 16.539062 70.5625 16.65625 C 70.5625 16.773438 70.65625 16.867188 70.773438 16.867188 C 70.890625 16.867188 70.984375 16.773438 70.984375 16.65625 Z M 70.984375 16.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 69.195312 16.308594 C 69.195312 16.191406 69.101562 16.097656 68.984375 16.097656 C 68.867188 16.097656 68.773438 16.191406 68.773438 16.308594 C 68.773438 16.425781 68.867188 16.519531 68.984375 16.519531 C 69.101562 16.519531 69.195312 16.425781 69.195312 16.308594 Z M 69.195312 16.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.300781 15.480469 C 66.300781 15.363281 66.207031 15.269531 66.089844 15.269531 C 65.972656 15.269531 65.878906 15.363281 65.878906 15.480469 C 65.878906 15.597656 65.972656 15.691406 66.089844 15.691406 C 66.207031 15.691406 66.300781 15.597656 66.300781 15.480469 Z M 66.300781 15.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 66.671875 14.566406 C 66.671875 14.449219 66.578125 14.355469 66.460938 14.355469 C 66.34375 14.355469 66.25 14.449219 66.25 14.566406 C 66.25 14.683594 66.34375 14.777344 66.460938 14.777344 C 66.578125 14.777344 66.671875 14.683594 66.671875 14.566406 Z M 66.671875 14.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.296875 16.027344 C 65.296875 15.910156 65.203125 15.816406 65.085938 15.816406 C 64.96875 15.816406 64.875 15.910156 64.875 16.027344 C 64.875 16.144531 64.96875 16.238281 65.085938 16.238281 C 65.203125 16.238281 65.296875 16.144531 65.296875 16.027344 Z M 65.296875 16.027344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 65.890625 15.859375 C 65.890625 15.742188 65.796875 15.648438 65.679688 15.648438 C 65.5625 15.648438 65.46875 15.742188 65.46875 15.859375 C 65.46875 15.976562 65.5625 16.070312 65.679688 16.070312 C 65.796875 16.070312 65.890625 15.976562 65.890625 15.859375 Z M 65.890625 15.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 64.175781 13.890625 C 64.175781 13.773438 64.082031 13.679688 63.964844 13.679688 C 63.847656 13.679688 63.753906 13.773438 63.753906 13.890625 C 63.753906 14.007812 63.847656 14.101562 63.964844 14.101562 C 64.082031 14.101562 64.175781 14.007812 64.175781 13.890625 Z M 64.175781 13.890625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 61.601562 16.070312 C 61.601562 15.953125 61.507812 15.859375 61.390625 15.859375 C 61.273438 15.859375 61.179688 15.953125 61.179688 16.070312 C 61.179688 16.1875 61.273438 16.28125 61.390625 16.28125 C 61.507812 16.28125 61.601562 16.1875 61.601562 16.070312 Z M 61.601562 16.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.394531 13.613281 C 55.394531 13.496094 55.300781 13.402344 55.183594 13.402344 C 55.066406 13.402344 54.972656 13.496094 54.972656 13.613281 C 54.972656 13.730469 55.066406 13.824219 55.183594 13.824219 C 55.300781 13.824219 55.394531 13.730469 55.394531 13.613281 Z M 55.394531 13.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.0625 13.636719 C 55.0625 13.519531 54.96875 13.425781 54.851562 13.425781 C 54.734375 13.425781 54.640625 13.519531 54.640625 13.636719 C 54.640625 13.753906 54.734375 13.847656 54.851562 13.847656 C 54.96875 13.847656 55.0625 13.753906 55.0625 13.636719 Z M 55.0625 13.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.046875 17.675781 C 55.046875 17.558594 54.953125 17.464844 54.835938 17.464844 C 54.71875 17.464844 54.625 17.558594 54.625 17.675781 C 54.625 17.792969 54.71875 17.886719 54.835938 17.886719 C 54.953125 17.886719 55.046875 17.792969 55.046875 17.675781 Z M 55.046875 17.675781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.917969 16.40625 C 54.917969 16.289062 54.824219 16.195312 54.707031 16.195312 C 54.589844 16.195312 54.496094 16.289062 54.496094 16.40625 C 54.496094 16.523438 54.589844 16.617188 54.707031 16.617188 C 54.824219 16.617188 54.917969 16.523438 54.917969 16.40625 Z M 54.917969 16.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.53125 14.601562 C 55.53125 14.484375 55.4375 14.390625 55.320312 14.390625 C 55.203125 14.390625 55.109375 14.484375 55.109375 14.601562 C 55.109375 14.71875 55.203125 14.8125 55.320312 14.8125 C 55.4375 14.8125 55.53125 14.71875 55.53125 14.601562 Z M 55.53125 14.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.160156 15.238281 C 54.160156 15.121094 54.066406 15.027344 53.949219 15.027344 C 53.832031 15.027344 53.738281 15.121094 53.738281 15.238281 C 53.738281 15.355469 53.832031 15.449219 53.949219 15.449219 C 54.066406 15.449219 54.160156 15.355469 54.160156 15.238281 Z M 54.160156 15.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.164062 14.628906 C 57.164062 14.511719 57.070312 14.417969 56.953125 14.417969 C 56.835938 14.417969 56.742188 14.511719 56.742188 14.628906 C 56.742188 14.746094 56.835938 14.839844 56.953125 14.839844 C 57.070312 14.839844 57.164062 14.746094 57.164062 14.628906 Z M 57.164062 14.628906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.519531 14.527344 C 52.519531 14.410156 52.425781 14.316406 52.308594 14.316406 C 52.191406 14.316406 52.097656 14.410156 52.097656 14.527344 C 52.097656 14.644531 52.191406 14.738281 52.308594 14.738281 C 52.425781 14.738281 52.519531 14.644531 52.519531 14.527344 Z M 52.519531 14.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.671875 13.835938 C 54.671875 13.71875 54.578125 13.625 54.460938 13.625 C 54.34375 13.625 54.25 13.71875 54.25 13.835938 C 54.25 13.953125 54.34375 14.046875 54.460938 14.046875 C 54.578125 14.046875 54.671875 13.953125 54.671875 13.835938 Z M 54.671875 13.835938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.035156 17.605469 C 52.035156 17.488281 51.941406 17.394531 51.824219 17.394531 C 51.707031 17.394531 51.613281 17.488281 51.613281 17.605469 C 51.613281 17.722656 51.707031 17.816406 51.824219 17.816406 C 51.941406 17.816406 52.035156 17.722656 52.035156 17.605469 Z M 52.035156 17.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.910156 16.398438 C 48.910156 16.28125 48.816406 16.1875 48.699219 16.1875 C 48.582031 16.1875 48.488281 16.28125 48.488281 16.398438 C 48.488281 16.515625 48.582031 16.609375 48.699219 16.609375 C 48.816406 16.609375 48.910156 16.515625 48.910156 16.398438 Z M 48.910156 16.398438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.992188 18.28125 C 47.992188 18.164062 47.898438 18.070312 47.78125 18.070312 C 47.664062 18.070312 47.570312 18.164062 47.570312 18.28125 C 47.570312 18.398438 47.664062 18.492188 47.78125 18.492188 C 47.898438 18.492188 47.992188 18.398438 47.992188 18.28125 Z M 47.992188 18.28125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.71875 14.40625 C 48.71875 14.289062 48.625 14.195312 48.507812 14.195312 C 48.390625 14.195312 48.296875 14.289062 48.296875 14.40625 C 48.296875 14.523438 48.390625 14.617188 48.507812 14.617188 C 48.625 14.617188 48.71875 14.523438 48.71875 14.40625 Z M 48.71875 14.40625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.773438 12 C 51.773438 11.882812 51.679688 11.789062 51.5625 11.789062 C 51.445312 11.789062 51.351562 11.882812 51.351562 12 C 51.351562 12.117188 51.445312 12.210938 51.5625 12.210938 C 51.679688 12.210938 51.773438 12.117188 51.773438 12 Z M 51.773438 12 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.070312 8.355469 C 53.070312 8.238281 52.976562 8.144531 52.859375 8.144531 C 52.742188 8.144531 52.648438 8.238281 52.648438 8.355469 C 52.648438 8.472656 52.742188 8.566406 52.859375 8.566406 C 52.976562 8.566406 53.070312 8.472656 53.070312 8.355469 Z M 53.070312 8.355469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.746094 4.976562 C 54.746094 4.859375 54.652344 4.765625 54.535156 4.765625 C 54.417969 4.765625 54.324219 4.859375 54.324219 4.976562 C 54.324219 5.09375 54.417969 5.1875 54.535156 5.1875 C 54.652344 5.1875 54.746094 5.09375 54.746094 4.976562 Z M 54.746094 4.976562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 55.699219 5.546875 C 55.699219 5.429688 55.605469 5.335938 55.488281 5.335938 C 55.371094 5.335938 55.277344 5.429688 55.277344 5.546875 C 55.277344 5.664062 55.371094 5.757812 55.488281 5.757812 C 55.605469 5.757812 55.699219 5.664062 55.699219 5.546875 Z M 55.699219 5.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.257812 7.480469 C 54.257812 7.363281 54.164062 7.269531 54.046875 7.269531 C 53.929688 7.269531 53.835938 7.363281 53.835938 7.480469 C 53.835938 7.597656 53.929688 7.691406 54.046875 7.691406 C 54.164062 7.691406 54.257812 7.597656 54.257812 7.480469 Z M 54.257812 7.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.765625 7.285156 C 54.765625 7.167969 54.671875 7.074219 54.554688 7.074219 C 54.4375 7.074219 54.34375 7.167969 54.34375 7.285156 C 54.34375 7.402344 54.4375 7.496094 54.554688 7.496094 C 54.671875 7.496094 54.765625 7.402344 54.765625 7.285156 Z M 54.765625 7.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.730469 10.871094 C 54.730469 10.753906 54.636719 10.660156 54.519531 10.660156 C 54.402344 10.660156 54.308594 10.753906 54.308594 10.871094 C 54.308594 10.988281 54.402344 11.082031 54.519531 11.082031 C 54.636719 11.082031 54.730469 10.988281 54.730469 10.871094 Z M 54.730469 10.871094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.585938 10.910156 C 50.585938 10.792969 50.492188 10.699219 50.375 10.699219 C 50.257812 10.699219 50.164062 10.792969 50.164062 10.910156 C 50.164062 11.027344 50.257812 11.121094 50.375 11.121094 C 50.492188 11.121094 50.585938 11.027344 50.585938 10.910156 Z M 50.585938 10.910156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.761719 11.996094 C 53.761719 11.878906 53.667969 11.785156 53.550781 11.785156 C 53.433594 11.785156 53.339844 11.878906 53.339844 11.996094 C 53.339844 12.113281 53.433594 12.207031 53.550781 12.207031 C 53.667969 12.207031 53.761719 12.113281 53.761719 11.996094 Z M 53.761719 11.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.460938 12.585938 C 56.460938 12.46875 56.367188 12.375 56.25 12.375 C 56.132812 12.375 56.039062 12.46875 56.039062 12.585938 C 56.039062 12.703125 56.132812 12.796875 56.25 12.796875 C 56.367188 12.796875 56.460938 12.703125 56.460938 12.585938 Z M 56.460938 12.585938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 57.574219 15.300781 C 57.574219 15.183594 57.480469 15.089844 57.363281 15.089844 C 57.246094 15.089844 57.152344 15.183594 57.152344 15.300781 C 57.152344 15.417969 57.246094 15.511719 57.363281 15.511719 C 57.480469 15.511719 57.574219 15.417969 57.574219 15.300781 Z M 57.574219 15.300781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.910156 13.296875 C 56.910156 13.179688 56.816406 13.085938 56.699219 13.085938 C 56.582031 13.085938 56.488281 13.179688 56.488281 13.296875 C 56.488281 13.414062 56.582031 13.507812 56.699219 13.507812 C 56.816406 13.507812 56.910156 13.414062 56.910156 13.296875 Z M 56.910156 13.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.046875 11.550781 C 56.046875 11.433594 55.953125 11.339844 55.835938 11.339844 C 55.71875 11.339844 55.625 11.433594 55.625 11.550781 C 55.625 11.667969 55.71875 11.761719 55.835938 11.761719 C 55.953125 11.761719 56.046875 11.667969 56.046875 11.550781 Z M 56.046875 11.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.132812 11.96875 C 53.132812 11.851562 53.039062 11.757812 52.921875 11.757812 C 52.804688 11.757812 52.710938 11.851562 52.710938 11.96875 C 52.710938 12.085938 52.804688 12.179688 52.921875 12.179688 C 53.039062 12.179688 53.132812 12.085938 53.132812 11.96875 Z M 53.132812 11.96875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.976562 8.160156 C 49.976562 8.042969 49.882812 7.949219 49.765625 7.949219 C 49.648438 7.949219 49.554688 8.042969 49.554688 8.160156 C 49.554688 8.277344 49.648438 8.371094 49.765625 8.371094 C 49.882812 8.371094 49.976562 8.277344 49.976562 8.160156 Z M 49.976562 8.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.839844 5.808594 C 49.839844 5.691406 49.746094 5.597656 49.628906 5.597656 C 49.511719 5.597656 49.417969 5.691406 49.417969 5.808594 C 49.417969 5.925781 49.511719 6.019531 49.628906 6.019531 C 49.746094 6.019531 49.839844 5.925781 49.839844 5.808594 Z M 49.839844 5.808594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 51.4375 7.65625 C 51.4375 7.539062 51.34375 7.445312 51.226562 7.445312 C 51.109375 7.445312 51.015625 7.539062 51.015625 7.65625 C 51.015625 7.773438 51.109375 7.867188 51.226562 7.867188 C 51.34375 7.867188 51.4375 7.773438 51.4375 7.65625 Z M 51.4375 7.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.054688 11.367188 C 52.054688 11.25 51.960938 11.15625 51.84375 11.15625 C 51.726562 11.15625 51.632812 11.25 51.632812 11.367188 C 51.632812 11.484375 51.726562 11.578125 51.84375 11.578125 C 51.960938 11.578125 52.054688 11.484375 52.054688 11.367188 Z M 52.054688 11.367188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 54.273438 10.402344 C 54.273438 10.285156 54.179688 10.191406 54.0625 10.191406 C 53.945312 10.191406 53.851562 10.285156 53.851562 10.402344 C 53.851562 10.519531 53.945312 10.613281 54.0625 10.613281 C 54.179688 10.613281 54.273438 10.519531 54.273438 10.402344 Z M 54.273438 10.402344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 56.65625 11.226562 C 56.65625 11.109375 56.5625 11.015625 56.445312 11.015625 C 56.328125 11.015625 56.234375 11.109375 56.234375 11.226562 C 56.234375 11.34375 56.328125 11.4375 56.445312 11.4375 C 56.5625 11.4375 56.65625 11.34375 56.65625 11.226562 Z M 56.65625 11.226562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.753906 11.839844 C 52.753906 11.722656 52.660156 11.628906 52.542969 11.628906 C 52.425781 11.628906 52.332031 11.722656 52.332031 11.839844 C 52.332031 11.957031 52.425781 12.050781 52.542969 12.050781 C 52.660156 12.050781 52.753906 11.957031 52.753906 11.839844 Z M 52.753906 11.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 50.175781 13.648438 C 50.175781 13.53125 50.082031 13.4375 49.964844 13.4375 C 49.847656 13.4375 49.753906 13.53125 49.753906 13.648438 C 49.753906 13.765625 49.847656 13.859375 49.964844 13.859375 C 50.082031 13.859375 50.175781 13.765625 50.175781 13.648438 Z M 50.175781 13.648438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.089844 14.488281 C 49.089844 14.371094 48.996094 14.277344 48.878906 14.277344 C 48.761719 14.277344 48.667969 14.371094 48.667969 14.488281 C 48.667969 14.605469 48.761719 14.699219 48.878906 14.699219 C 48.996094 14.699219 49.089844 14.605469 49.089844 14.488281 Z M 49.089844 14.488281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.824219 13.84375 C 46.824219 13.726562 46.730469 13.632812 46.613281 13.632812 C 46.496094 13.632812 46.402344 13.726562 46.402344 13.84375 C 46.402344 13.960938 46.496094 14.054688 46.613281 14.054688 C 46.730469 14.054688 46.824219 13.960938 46.824219 13.84375 Z M 46.824219 13.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.558594 12.574219 C 46.558594 12.457031 46.464844 12.363281 46.347656 12.363281 C 46.230469 12.363281 46.136719 12.457031 46.136719 12.574219 C 46.136719 12.691406 46.230469 12.785156 46.347656 12.785156 C 46.464844 12.785156 46.558594 12.691406 46.558594 12.574219 Z M 46.558594 12.574219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.074219 12.441406 C 47.074219 12.324219 46.980469 12.230469 46.863281 12.230469 C 46.746094 12.230469 46.652344 12.324219 46.652344 12.441406 C 46.652344 12.558594 46.746094 12.652344 46.863281 12.652344 C 46.980469 12.652344 47.074219 12.558594 47.074219 12.441406 Z M 47.074219 12.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.203125 15.351562 C 47.203125 15.234375 47.109375 15.140625 46.992188 15.140625 C 46.875 15.140625 46.78125 15.234375 46.78125 15.351562 C 46.78125 15.46875 46.875 15.5625 46.992188 15.5625 C 47.109375 15.5625 47.203125 15.46875 47.203125 15.351562 Z M 47.203125 15.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 49.488281 14.617188 C 49.488281 14.5 49.394531 14.40625 49.277344 14.40625 C 49.160156 14.40625 49.066406 14.5 49.066406 14.617188 C 49.066406 14.734375 49.160156 14.828125 49.277344 14.828125 C 49.394531 14.828125 49.488281 14.734375 49.488281 14.617188 Z M 49.488281 14.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 52.082031 17.65625 C 52.082031 17.539062 51.988281 17.445312 51.871094 17.445312 C 51.753906 17.445312 51.660156 17.539062 51.660156 17.65625 C 51.660156 17.773438 51.753906 17.867188 51.871094 17.867188 C 51.988281 17.867188 52.082031 17.773438 52.082031 17.65625 Z M 52.082031 17.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 53.3125 18.535156 C 53.3125 18.417969 53.21875 18.324219 53.101562 18.324219 C 52.984375 18.324219 52.890625 18.417969 52.890625 18.535156 C 52.890625 18.652344 52.984375 18.746094 53.101562 18.746094 C 53.21875 18.746094 53.3125 18.652344 53.3125 18.535156 Z M 53.3125 18.535156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.339844 18.164062 C 47.339844 18.046875 47.246094 17.953125 47.128906 17.953125 C 47.011719 17.953125 46.917969 18.046875 46.917969 18.164062 C 46.917969 18.28125 47.011719 18.375 47.128906 18.375 C 47.246094 18.375 47.339844 18.28125 47.339844 18.164062 Z M 47.339844 18.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.882812 19.046875 C 46.882812 18.929688 46.789062 18.835938 46.671875 18.835938 C 46.554688 18.835938 46.460938 18.929688 46.460938 19.046875 C 46.460938 19.164062 46.554688 19.257812 46.671875 19.257812 C 46.789062 19.257812 46.882812 19.164062 46.882812 19.046875 Z M 46.882812 19.046875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.40625 19.855469 C 48.40625 19.738281 48.3125 19.644531 48.195312 19.644531 C 48.078125 19.644531 47.984375 19.738281 47.984375 19.855469 C 47.984375 19.972656 48.078125 20.066406 48.195312 20.066406 C 48.3125 20.066406 48.40625 19.972656 48.40625 19.855469 Z M 48.40625 19.855469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.3125 22.847656 C 48.3125 22.730469 48.21875 22.636719 48.101562 22.636719 C 47.984375 22.636719 47.890625 22.730469 47.890625 22.847656 C 47.890625 22.964844 47.984375 23.058594 48.101562 23.058594 C 48.21875 23.058594 48.3125 22.964844 48.3125 22.847656 Z M 48.3125 22.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.554688 23.113281 C 48.554688 22.996094 48.460938 22.902344 48.34375 22.902344 C 48.226562 22.902344 48.132812 22.996094 48.132812 23.113281 C 48.132812 23.230469 48.226562 23.324219 48.34375 23.324219 C 48.460938 23.324219 48.554688 23.230469 48.554688 23.113281 Z M 48.554688 23.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.429688 23.15625 C 44.429688 23.039062 44.335938 22.945312 44.21875 22.945312 C 44.101562 22.945312 44.007812 23.039062 44.007812 23.15625 C 44.007812 23.273438 44.101562 23.367188 44.21875 23.367188 C 44.335938 23.367188 44.429688 23.273438 44.429688 23.15625 Z M 44.429688 23.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.5625 21.285156 C 43.5625 21.167969 43.46875 21.074219 43.351562 21.074219 C 43.234375 21.074219 43.140625 21.167969 43.140625 21.285156 C 43.140625 21.402344 43.234375 21.496094 43.351562 21.496094 C 43.46875 21.496094 43.5625 21.402344 43.5625 21.285156 Z M 43.5625 21.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.085938 23.09375 C 43.085938 22.976562 42.992188 22.882812 42.875 22.882812 C 42.757812 22.882812 42.664062 22.976562 42.664062 23.09375 C 42.664062 23.210938 42.757812 23.304688 42.875 23.304688 C 42.992188 23.304688 43.085938 23.210938 43.085938 23.09375 Z M 43.085938 23.09375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.800781 24.332031 C 40.800781 24.214844 40.707031 24.121094 40.589844 24.121094 C 40.472656 24.121094 40.378906 24.214844 40.378906 24.332031 C 40.378906 24.449219 40.472656 24.542969 40.589844 24.542969 C 40.707031 24.542969 40.800781 24.449219 40.800781 24.332031 Z M 40.800781 24.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.871094 29.753906 C 39.871094 29.636719 39.777344 29.542969 39.660156 29.542969 C 39.542969 29.542969 39.449219 29.636719 39.449219 29.753906 C 39.449219 29.871094 39.542969 29.964844 39.660156 29.964844 C 39.777344 29.964844 39.871094 29.871094 39.871094 29.753906 Z M 39.871094 29.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.796875 32.886719 C 37.796875 32.769531 37.703125 32.675781 37.585938 32.675781 C 37.46875 32.675781 37.375 32.769531 37.375 32.886719 C 37.375 33.003906 37.46875 33.097656 37.585938 33.097656 C 37.703125 33.097656 37.796875 33.003906 37.796875 32.886719 Z M 37.796875 32.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.449219 33.707031 C 34.449219 33.589844 34.355469 33.496094 34.238281 33.496094 C 34.121094 33.496094 34.027344 33.589844 34.027344 33.707031 C 34.027344 33.824219 34.121094 33.917969 34.238281 33.917969 C 34.355469 33.917969 34.449219 33.824219 34.449219 33.707031 Z M 34.449219 33.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.996094 37.070312 C 32.996094 36.953125 32.902344 36.859375 32.785156 36.859375 C 32.667969 36.859375 32.574219 36.953125 32.574219 37.070312 C 32.574219 37.1875 32.667969 37.28125 32.785156 37.28125 C 32.902344 37.28125 32.996094 37.1875 32.996094 37.070312 Z M 32.996094 37.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.253906 35.925781 C 33.253906 35.808594 33.160156 35.714844 33.042969 35.714844 C 32.925781 35.714844 32.832031 35.808594 32.832031 35.925781 C 32.832031 36.042969 32.925781 36.136719 33.042969 36.136719 C 33.160156 36.136719 33.253906 36.042969 33.253906 35.925781 Z M 33.253906 35.925781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 33.449219 35.699219 C 33.449219 35.582031 33.355469 35.488281 33.238281 35.488281 C 33.121094 35.488281 33.027344 35.582031 33.027344 35.699219 C 33.027344 35.816406 33.121094 35.910156 33.238281 35.910156 C 33.355469 35.910156 33.449219 35.816406 33.449219 35.699219 Z M 33.449219 35.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.660156 35.179688 C 32.660156 35.0625 32.566406 34.96875 32.449219 34.96875 C 32.332031 34.96875 32.238281 35.0625 32.238281 35.179688 C 32.238281 35.296875 32.332031 35.390625 32.449219 35.390625 C 32.566406 35.390625 32.660156 35.296875 32.660156 35.179688 Z M 32.660156 35.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.566406 35.316406 C 29.566406 35.199219 29.472656 35.105469 29.355469 35.105469 C 29.238281 35.105469 29.144531 35.199219 29.144531 35.316406 C 29.144531 35.433594 29.238281 35.527344 29.355469 35.527344 C 29.472656 35.527344 29.566406 35.433594 29.566406 35.316406 Z M 29.566406 35.316406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.820312 35.539062 C 26.820312 35.421875 26.726562 35.328125 26.609375 35.328125 C 26.492188 35.328125 26.398438 35.421875 26.398438 35.539062 C 26.398438 35.65625 26.492188 35.75 26.609375 35.75 C 26.726562 35.75 26.820312 35.65625 26.820312 35.539062 Z M 26.820312 35.539062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.5 35.363281 C 25.5 35.246094 25.40625 35.152344 25.289062 35.152344 C 25.171875 35.152344 25.078125 35.246094 25.078125 35.363281 C 25.078125 35.480469 25.171875 35.574219 25.289062 35.574219 C 25.40625 35.574219 25.5 35.480469 25.5 35.363281 Z M 25.5 35.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.796875 37.746094 C 23.796875 37.628906 23.703125 37.535156 23.585938 37.535156 C 23.46875 37.535156 23.375 37.628906 23.375 37.746094 C 23.375 37.863281 23.46875 37.957031 23.585938 37.957031 C 23.703125 37.957031 23.796875 37.863281 23.796875 37.746094 Z M 23.796875 37.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.445312 37.683594 C 27.445312 37.566406 27.351562 37.472656 27.234375 37.472656 C 27.117188 37.472656 27.023438 37.566406 27.023438 37.683594 C 27.023438 37.800781 27.117188 37.894531 27.234375 37.894531 C 27.351562 37.894531 27.445312 37.800781 27.445312 37.683594 Z M 27.445312 37.683594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.757812 40.453125 C 29.757812 40.335938 29.664062 40.242188 29.546875 40.242188 C 29.429688 40.242188 29.335938 40.335938 29.335938 40.453125 C 29.335938 40.570312 29.429688 40.664062 29.546875 40.664062 C 29.664062 40.664062 29.757812 40.570312 29.757812 40.453125 Z M 29.757812 40.453125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.609375 44.3125 C 30.609375 44.195312 30.515625 44.101562 30.398438 44.101562 C 30.28125 44.101562 30.1875 44.195312 30.1875 44.3125 C 30.1875 44.429688 30.28125 44.523438 30.398438 44.523438 C 30.515625 44.523438 30.609375 44.429688 30.609375 44.3125 Z M 30.609375 44.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.71875 44.160156 C 32.71875 44.042969 32.625 43.949219 32.507812 43.949219 C 32.390625 43.949219 32.296875 44.042969 32.296875 44.160156 C 32.296875 44.277344 32.390625 44.371094 32.507812 44.371094 C 32.625 44.371094 32.71875 44.277344 32.71875 44.160156 Z M 32.71875 44.160156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.976562 42.15625 C 30.976562 42.039062 30.882812 41.945312 30.765625 41.945312 C 30.648438 41.945312 30.554688 42.039062 30.554688 42.15625 C 30.554688 42.273438 30.648438 42.367188 30.765625 42.367188 C 30.882812 42.367188 30.976562 42.273438 30.976562 42.15625 Z M 30.976562 42.15625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.859375 44.636719 C 32.859375 44.519531 32.765625 44.425781 32.648438 44.425781 C 32.53125 44.425781 32.4375 44.519531 32.4375 44.636719 C 32.4375 44.753906 32.53125 44.847656 32.648438 44.847656 C 32.765625 44.847656 32.859375 44.753906 32.859375 44.636719 Z M 32.859375 44.636719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.019531 45.183594 C 30.019531 45.066406 29.925781 44.972656 29.808594 44.972656 C 29.691406 44.972656 29.597656 45.066406 29.597656 45.183594 C 29.597656 45.300781 29.691406 45.394531 29.808594 45.394531 C 29.925781 45.394531 30.019531 45.300781 30.019531 45.183594 Z M 30.019531 45.183594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 27.773438 47.175781 C 27.773438 47.058594 27.679688 46.964844 27.5625 46.964844 C 27.445312 46.964844 27.351562 47.058594 27.351562 47.175781 C 27.351562 47.292969 27.445312 47.386719 27.5625 47.386719 C 27.679688 47.386719 27.773438 47.292969 27.773438 47.175781 Z M 27.773438 47.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.050781 45.21875 C 28.050781 45.101562 27.957031 45.007812 27.839844 45.007812 C 27.722656 45.007812 27.628906 45.101562 27.628906 45.21875 C 27.628906 45.335938 27.722656 45.429688 27.839844 45.429688 C 27.957031 45.429688 28.050781 45.335938 28.050781 45.21875 Z M 28.050781 45.21875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.636719 46.167969 C 25.636719 46.050781 25.542969 45.957031 25.425781 45.957031 C 25.308594 45.957031 25.214844 46.050781 25.214844 46.167969 C 25.214844 46.285156 25.308594 46.378906 25.425781 46.378906 C 25.542969 46.378906 25.636719 46.285156 25.636719 46.167969 Z M 25.636719 46.167969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 21.515625 43.480469 C 21.515625 43.363281 21.421875 43.269531 21.304688 43.269531 C 21.1875 43.269531 21.09375 43.363281 21.09375 43.480469 C 21.09375 43.597656 21.1875 43.691406 21.304688 43.691406 C 21.421875 43.691406 21.515625 43.597656 21.515625 43.480469 Z M 21.515625 43.480469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.832031 43.515625 C 23.832031 43.398438 23.738281 43.304688 23.621094 43.304688 C 23.503906 43.304688 23.410156 43.398438 23.410156 43.515625 C 23.410156 43.632812 23.503906 43.726562 23.621094 43.726562 C 23.738281 43.726562 23.832031 43.632812 23.832031 43.515625 Z M 23.832031 43.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 23.039062 47.960938 C 23.039062 47.84375 22.945312 47.75 22.828125 47.75 C 22.710938 47.75 22.617188 47.84375 22.617188 47.960938 C 22.617188 48.078125 22.710938 48.171875 22.828125 48.171875 C 22.945312 48.171875 23.039062 48.078125 23.039062 47.960938 Z M 23.039062 47.960938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.046875 45.84375 C 20.046875 45.726562 19.953125 45.632812 19.835938 45.632812 C 19.71875 45.632812 19.625 45.726562 19.625 45.84375 C 19.625 45.960938 19.71875 46.054688 19.835938 46.054688 C 19.953125 46.054688 20.046875 45.960938 20.046875 45.84375 Z M 20.046875 45.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.953125 45.847656 C 22.953125 45.730469 22.859375 45.636719 22.742188 45.636719 C 22.625 45.636719 22.53125 45.730469 22.53125 45.847656 C 22.53125 45.964844 22.625 46.058594 22.742188 46.058594 C 22.859375 46.058594 22.953125 45.964844 22.953125 45.847656 Z M 22.953125 45.847656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 21.710938 47.363281 C 21.710938 47.246094 21.617188 47.152344 21.5 47.152344 C 21.382812 47.152344 21.289062 47.246094 21.289062 47.363281 C 21.289062 47.480469 21.382812 47.574219 21.5 47.574219 C 21.617188 47.574219 21.710938 47.480469 21.710938 47.363281 Z M 21.710938 47.363281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.746094 43.175781 C 19.746094 43.058594 19.652344 42.964844 19.535156 42.964844 C 19.417969 42.964844 19.324219 43.058594 19.324219 43.175781 C 19.324219 43.292969 19.417969 43.386719 19.535156 43.386719 C 19.652344 43.386719 19.746094 43.292969 19.746094 43.175781 Z M 19.746094 43.175781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 21.015625 40.566406 C 21.015625 40.449219 20.921875 40.355469 20.804688 40.355469 C 20.6875 40.355469 20.59375 40.449219 20.59375 40.566406 C 20.59375 40.683594 20.6875 40.777344 20.804688 40.777344 C 20.921875 40.777344 21.015625 40.683594 21.015625 40.566406 Z M 21.015625 40.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.003906 37.71875 C 19.003906 37.601562 18.910156 37.507812 18.792969 37.507812 C 18.675781 37.507812 18.582031 37.601562 18.582031 37.71875 C 18.582031 37.835938 18.675781 37.929688 18.792969 37.929688 C 18.910156 37.929688 19.003906 37.835938 19.003906 37.71875 Z M 19.003906 37.71875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 17.058594 36.613281 C 17.058594 36.496094 16.964844 36.402344 16.847656 36.402344 C 16.730469 36.402344 16.636719 36.496094 16.636719 36.613281 C 16.636719 36.730469 16.730469 36.824219 16.847656 36.824219 C 16.964844 36.824219 17.058594 36.730469 17.058594 36.613281 Z M 17.058594 36.613281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 17.375 38.722656 C 17.375 38.605469 17.28125 38.511719 17.164062 38.511719 C 17.046875 38.511719 16.953125 38.605469 16.953125 38.722656 C 16.953125 38.839844 17.046875 38.933594 17.164062 38.933594 C 17.28125 38.933594 17.375 38.839844 17.375 38.722656 Z M 17.375 38.722656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 13.847656 41.800781 C 13.847656 41.683594 13.753906 41.589844 13.636719 41.589844 C 13.519531 41.589844 13.425781 41.683594 13.425781 41.800781 C 13.425781 41.917969 13.519531 42.011719 13.636719 42.011719 C 13.753906 42.011719 13.847656 41.917969 13.847656 41.800781 Z M 13.847656 41.800781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 13.046875 38.378906 C 13.046875 38.261719 12.953125 38.167969 12.835938 38.167969 C 12.71875 38.167969 12.625 38.261719 12.625 38.378906 C 12.625 38.496094 12.71875 38.589844 12.835938 38.589844 C 12.953125 38.589844 13.046875 38.496094 13.046875 38.378906 Z M 13.046875 38.378906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 10.394531 35.753906 C 10.394531 35.636719 10.300781 35.542969 10.183594 35.542969 C 10.066406 35.542969 9.972656 35.636719 9.972656 35.753906 C 9.972656 35.871094 10.066406 35.964844 10.183594 35.964844 C 10.300781 35.964844 10.394531 35.871094 10.394531 35.753906 Z M 10.394531 35.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 10.039062 34.839844 C 10.039062 34.722656 9.945312 34.628906 9.828125 34.628906 C 9.710938 34.628906 9.617188 34.722656 9.617188 34.839844 C 9.617188 34.957031 9.710938 35.050781 9.828125 35.050781 C 9.945312 35.050781 10.039062 34.957031 10.039062 34.839844 Z M 10.039062 34.839844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 7.457031 39.066406 C 7.457031 38.949219 7.363281 38.855469 7.246094 38.855469 C 7.128906 38.855469 7.035156 38.949219 7.035156 39.066406 C 7.035156 39.183594 7.128906 39.277344 7.246094 39.277344 C 7.363281 39.277344 7.457031 39.183594 7.457031 39.066406 Z M 7.457031 39.066406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 5.171875 43.558594 C 5.171875 43.441406 5.078125 43.347656 4.960938 43.347656 C 4.84375 43.347656 4.75 43.441406 4.75 43.558594 C 4.75 43.675781 4.84375 43.769531 4.960938 43.769531 C 5.078125 43.769531 5.171875 43.675781 5.171875 43.558594 Z M 5.171875 43.558594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 4.988281 44.054688 C 4.988281 43.9375 4.894531 43.84375 4.777344 43.84375 C 4.660156 43.84375 4.566406 43.9375 4.566406 44.054688 C 4.566406 44.171875 4.660156 44.265625 4.777344 44.265625 C 4.894531 44.265625 4.988281 44.171875 4.988281 44.054688 Z M 4.988281 44.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 9.972656 44.332031 C 9.972656 44.214844 9.878906 44.121094 9.761719 44.121094 C 9.644531 44.121094 9.550781 44.214844 9.550781 44.332031 C 9.550781 44.449219 9.644531 44.542969 9.761719 44.542969 C 9.878906 44.542969 9.972656 44.449219 9.972656 44.332031 Z M 9.972656 44.332031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 10.191406 43.117188 C 10.191406 43 10.097656 42.90625 9.980469 42.90625 C 9.863281 42.90625 9.769531 43 9.769531 43.117188 C 9.769531 43.234375 9.863281 43.328125 9.980469 43.328125 C 10.097656 43.328125 10.191406 43.234375 10.191406 43.117188 Z M 10.191406 43.117188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 8.558594 45.058594 C 8.558594 44.941406 8.464844 44.847656 8.347656 44.847656 C 8.230469 44.847656 8.136719 44.941406 8.136719 45.058594 C 8.136719 45.175781 8.230469 45.269531 8.347656 45.269531 C 8.464844 45.269531 8.558594 45.175781 8.558594 45.058594 Z M 8.558594 45.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 5.238281 45.351562 C 5.238281 45.234375 5.144531 45.140625 5.027344 45.140625 C 4.910156 45.140625 4.816406 45.234375 4.816406 45.351562 C 4.816406 45.46875 4.910156 45.5625 5.027344 45.5625 C 5.144531 45.5625 5.238281 45.46875 5.238281 45.351562 Z M 5.238281 45.351562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 6.214844 47.710938 C 6.214844 47.59375 6.121094 47.5 6.003906 47.5 C 5.886719 47.5 5.792969 47.59375 5.792969 47.710938 C 5.792969 47.828125 5.886719 47.921875 6.003906 47.921875 C 6.121094 47.921875 6.214844 47.828125 6.214844 47.710938 Z M 6.214844 47.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 5.910156 49.65625 C 5.910156 49.539062 5.816406 49.445312 5.699219 49.445312 C 5.582031 49.445312 5.488281 49.539062 5.488281 49.65625 C 5.488281 49.773438 5.582031 49.867188 5.699219 49.867188 C 5.816406 49.867188 5.910156 49.773438 5.910156 49.65625 Z M 5.910156 49.65625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 5.742188 51.566406 C 5.742188 51.449219 5.648438 51.355469 5.53125 51.355469 C 5.414062 51.355469 5.320312 51.449219 5.320312 51.566406 C 5.320312 51.683594 5.414062 51.777344 5.53125 51.777344 C 5.648438 51.777344 5.742188 51.683594 5.742188 51.566406 Z M 5.742188 51.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 5.074219 55.238281 C 5.074219 55.121094 4.980469 55.027344 4.863281 55.027344 C 4.746094 55.027344 4.652344 55.121094 4.652344 55.238281 C 4.652344 55.355469 4.746094 55.449219 4.863281 55.449219 C 4.980469 55.449219 5.074219 55.355469 5.074219 55.238281 Z M 5.074219 55.238281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 6.625 52.152344 C 6.625 52.035156 6.53125 51.941406 6.414062 51.941406 C 6.296875 51.941406 6.203125 52.035156 6.203125 52.152344 C 6.203125 52.269531 6.296875 52.363281 6.414062 52.363281 C 6.53125 52.363281 6.625 52.269531 6.625 52.152344 Z M 6.625 52.152344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 7.113281 47.859375 C 7.113281 47.742188 7.019531 47.648438 6.902344 47.648438 C 6.785156 47.648438 6.691406 47.742188 6.691406 47.859375 C 6.691406 47.976562 6.785156 48.070312 6.902344 48.070312 C 7.019531 48.070312 7.113281 47.976562 7.113281 47.859375 Z M 7.113281 47.859375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 6.851562 49.050781 C 6.851562 48.933594 6.757812 48.839844 6.640625 48.839844 C 6.523438 48.839844 6.429688 48.933594 6.429688 49.050781 C 6.429688 49.167969 6.523438 49.261719 6.640625 49.261719 C 6.757812 49.261719 6.851562 49.167969 6.851562 49.050781 Z M 6.851562 49.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 8.058594 48.730469 C 8.058594 48.613281 7.964844 48.519531 7.847656 48.519531 C 7.730469 48.519531 7.636719 48.613281 7.636719 48.730469 C 7.636719 48.847656 7.730469 48.941406 7.847656 48.941406 C 7.964844 48.941406 8.058594 48.847656 8.058594 48.730469 Z M 8.058594 48.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 7.003906 49.207031 C 7.003906 49.089844 6.910156 48.996094 6.792969 48.996094 C 6.675781 48.996094 6.582031 49.089844 6.582031 49.207031 C 6.582031 49.324219 6.675781 49.417969 6.792969 49.417969 C 6.910156 49.417969 7.003906 49.324219 7.003906 49.207031 Z M 7.003906 49.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 4.15625 50.546875 C 4.15625 50.429688 4.0625 50.335938 3.945312 50.335938 C 3.828125 50.335938 3.734375 50.429688 3.734375 50.546875 C 3.734375 50.664062 3.828125 50.757812 3.945312 50.757812 C 4.0625 50.757812 4.15625 50.664062 4.15625 50.546875 Z M 4.15625 50.546875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 6.039062 51.753906 C 6.039062 51.636719 5.945312 51.542969 5.828125 51.542969 C 5.710938 51.542969 5.617188 51.636719 5.617188 51.753906 C 5.617188 51.871094 5.710938 51.964844 5.828125 51.964844 C 5.945312 51.964844 6.039062 51.871094 6.039062 51.753906 Z M 6.039062 51.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 7.292969 52.429688 C 7.292969 52.3125 7.199219 52.21875 7.082031 52.21875 C 6.964844 52.21875 6.871094 52.3125 6.871094 52.429688 C 6.871094 52.546875 6.964844 52.640625 7.082031 52.640625 C 7.199219 52.640625 7.292969 52.546875 7.292969 52.429688 Z M 7.292969 52.429688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 7.246094 55.070312 C 7.246094 54.953125 7.152344 54.859375 7.035156 54.859375 C 6.917969 54.859375 6.824219 54.953125 6.824219 55.070312 C 6.824219 55.1875 6.917969 55.28125 7.035156 55.28125 C 7.152344 55.28125 7.246094 55.1875 7.246094 55.070312 Z M 7.246094 55.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 1.6875 57.882812 C 1.6875 57.765625 1.59375 57.671875 1.476562 57.671875 C 1.359375 57.671875 1.265625 57.765625 1.265625 57.882812 C 1.265625 58 1.359375 58.09375 1.476562 58.09375 C 1.59375 58.09375 1.6875 58 1.6875 57.882812 Z M 1.6875 57.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 0.417969 57.550781 C 0.417969 57.433594 0.324219 57.339844 0.207031 57.339844 C 0.0898438 57.339844 -0.00390625 57.433594 -0.00390625 57.550781 C -0.00390625 57.667969 0.0898438 57.761719 0.207031 57.761719 C 0.324219 57.761719 0.417969 57.667969 0.417969 57.550781 Z M 0.417969 57.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 3.464844 60.511719 C 3.464844 60.394531 3.371094 60.300781 3.253906 60.300781 C 3.136719 60.300781 3.042969 60.394531 3.042969 60.511719 C 3.042969 60.628906 3.136719 60.722656 3.253906 60.722656 C 3.371094 60.722656 3.464844 60.628906 3.464844 60.511719 Z M 3.464844 60.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 2.574219 62.285156 C 2.574219 62.167969 2.480469 62.074219 2.363281 62.074219 C 2.246094 62.074219 2.152344 62.167969 2.152344 62.285156 C 2.152344 62.402344 2.246094 62.496094 2.363281 62.496094 C 2.480469 62.496094 2.574219 62.402344 2.574219 62.285156 Z M 2.574219 62.285156 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 3 64.605469 C 3 64.488281 2.90625 64.394531 2.789062 64.394531 C 2.671875 64.394531 2.578125 64.488281 2.578125 64.605469 C 2.578125 64.722656 2.671875 64.816406 2.789062 64.816406 C 2.90625 64.816406 3 64.722656 3 64.605469 Z M 3 64.605469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 5.195312 67.632812 C 5.195312 67.515625 5.101562 67.421875 4.984375 67.421875 C 4.867188 67.421875 4.773438 67.515625 4.773438 67.632812 C 4.773438 67.75 4.867188 67.84375 4.984375 67.84375 C 5.101562 67.84375 5.195312 67.75 5.195312 67.632812 Z M 5.195312 67.632812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 3.265625 68.773438 C 3.265625 68.65625 3.171875 68.5625 3.054688 68.5625 C 2.9375 68.5625 2.84375 68.65625 2.84375 68.773438 C 2.84375 68.890625 2.9375 68.984375 3.054688 68.984375 C 3.171875 68.984375 3.265625 68.890625 3.265625 68.773438 Z M 3.265625 68.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 2.886719 65.667969 C 2.886719 65.550781 2.792969 65.457031 2.675781 65.457031 C 2.558594 65.457031 2.464844 65.550781 2.464844 65.667969 C 2.464844 65.785156 2.558594 65.878906 2.675781 65.878906 C 2.792969 65.878906 2.886719 65.785156 2.886719 65.667969 Z M 2.886719 65.667969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 2.753906 61.792969 C 2.753906 61.675781 2.660156 61.582031 2.542969 61.582031 C 2.425781 61.582031 2.332031 61.675781 2.332031 61.792969 C 2.332031 61.910156 2.425781 62.003906 2.542969 62.003906 C 2.660156 62.003906 2.753906 61.910156 2.753906 61.792969 Z M 2.753906 61.792969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 2.445312 58.496094 C 2.445312 58.378906 2.351562 58.285156 2.234375 58.285156 C 2.117188 58.285156 2.023438 58.378906 2.023438 58.496094 C 2.023438 58.613281 2.117188 58.707031 2.234375 58.707031 C 2.351562 58.707031 2.445312 58.613281 2.445312 58.496094 Z M 2.445312 58.496094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 2.738281 55.710938 C 2.738281 55.59375 2.644531 55.5 2.527344 55.5 C 2.410156 55.5 2.316406 55.59375 2.316406 55.710938 C 2.316406 55.828125 2.410156 55.921875 2.527344 55.921875 C 2.644531 55.921875 2.738281 55.828125 2.738281 55.710938 Z M 2.738281 55.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 1.777344 57.757812 C 1.777344 57.640625 1.683594 57.546875 1.566406 57.546875 C 1.449219 57.546875 1.355469 57.640625 1.355469 57.757812 C 1.355469 57.875 1.449219 57.96875 1.566406 57.96875 C 1.683594 57.96875 1.777344 57.875 1.777344 57.757812 Z M 1.777344 57.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 1.890625 56.023438 C 1.890625 55.90625 1.796875 55.8125 1.679688 55.8125 C 1.5625 55.8125 1.46875 55.90625 1.46875 56.023438 C 1.46875 56.140625 1.5625 56.234375 1.679688 56.234375 C 1.796875 56.234375 1.890625 56.140625 1.890625 56.023438 Z M 1.890625 56.023438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 3.171875 54.996094 C 3.171875 54.878906 3.078125 54.785156 2.960938 54.785156 C 2.84375 54.785156 2.75 54.878906 2.75 54.996094 C 2.75 55.113281 2.84375 55.207031 2.960938 55.207031 C 3.078125 55.207031 3.171875 55.113281 3.171875 54.996094 Z M 3.171875 54.996094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 5.46875 55.113281 C 5.46875 54.996094 5.375 54.902344 5.257812 54.902344 C 5.140625 54.902344 5.046875 54.996094 5.046875 55.113281 C 5.046875 55.230469 5.140625 55.324219 5.257812 55.324219 C 5.375 55.324219 5.46875 55.230469 5.46875 55.113281 Z M 5.46875 55.113281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 3.957031 54.308594 C 3.957031 54.191406 3.863281 54.097656 3.746094 54.097656 C 3.628906 54.097656 3.535156 54.191406 3.535156 54.308594 C 3.535156 54.425781 3.628906 54.519531 3.746094 54.519531 C 3.863281 54.519531 3.957031 54.425781 3.957031 54.308594 Z M 3.957031 54.308594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 6.71875 53.070312 C 6.71875 52.953125 6.625 52.859375 6.507812 52.859375 C 6.390625 52.859375 6.296875 52.953125 6.296875 53.070312 C 6.296875 53.1875 6.390625 53.28125 6.507812 53.28125 C 6.625 53.28125 6.71875 53.1875 6.71875 53.070312 Z M 6.71875 53.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 8.867188 50.058594 C 8.867188 49.941406 8.773438 49.847656 8.65625 49.847656 C 8.539062 49.847656 8.445312 49.941406 8.445312 50.058594 C 8.445312 50.175781 8.539062 50.269531 8.65625 50.269531 C 8.773438 50.269531 8.867188 50.175781 8.867188 50.058594 Z M 8.867188 50.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 7.617188 47.394531 C 7.617188 47.277344 7.523438 47.183594 7.40625 47.183594 C 7.289062 47.183594 7.195312 47.277344 7.195312 47.394531 C 7.195312 47.511719 7.289062 47.605469 7.40625 47.605469 C 7.523438 47.605469 7.617188 47.511719 7.617188 47.394531 Z M 7.617188 47.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 9.605469 46.863281 C 9.605469 46.746094 9.511719 46.652344 9.394531 46.652344 C 9.277344 46.652344 9.183594 46.746094 9.183594 46.863281 C 9.183594 46.980469 9.277344 47.074219 9.394531 47.074219 C 9.511719 47.074219 9.605469 46.980469 9.605469 46.863281 Z M 9.605469 46.863281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 9.871094 48.988281 C 9.871094 48.871094 9.777344 48.777344 9.660156 48.777344 C 9.542969 48.777344 9.449219 48.871094 9.449219 48.988281 C 9.449219 49.105469 9.542969 49.199219 9.660156 49.199219 C 9.777344 49.199219 9.871094 49.105469 9.871094 48.988281 Z M 9.871094 48.988281 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 8.726562 48.277344 C 8.726562 48.160156 8.632812 48.066406 8.515625 48.066406 C 8.398438 48.066406 8.304688 48.160156 8.304688 48.277344 C 8.304688 48.394531 8.398438 48.488281 8.515625 48.488281 C 8.632812 48.488281 8.726562 48.394531 8.726562 48.277344 Z M 8.726562 48.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 9.035156 50.277344 C 9.035156 50.160156 8.941406 50.066406 8.824219 50.066406 C 8.707031 50.066406 8.613281 50.160156 8.613281 50.277344 C 8.613281 50.394531 8.707031 50.488281 8.824219 50.488281 C 8.941406 50.488281 9.035156 50.394531 9.035156 50.277344 Z M 9.035156 50.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 8.65625 53.707031 C 8.65625 53.589844 8.5625 53.496094 8.445312 53.496094 C 8.328125 53.496094 8.234375 53.589844 8.234375 53.707031 C 8.234375 53.824219 8.328125 53.917969 8.445312 53.917969 C 8.5625 53.917969 8.65625 53.824219 8.65625 53.707031 Z M 8.65625 53.707031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 9.949219 52.058594 C 9.949219 51.941406 9.855469 51.847656 9.738281 51.847656 C 9.621094 51.847656 9.527344 51.941406 9.527344 52.058594 C 9.527344 52.175781 9.621094 52.269531 9.738281 52.269531 C 9.855469 52.269531 9.949219 52.175781 9.949219 52.058594 Z M 9.949219 52.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 8.496094 51.804688 C 8.496094 51.6875 8.402344 51.59375 8.285156 51.59375 C 8.167969 51.59375 8.074219 51.6875 8.074219 51.804688 C 8.074219 51.921875 8.167969 52.015625 8.285156 52.015625 C 8.402344 52.015625 8.496094 51.921875 8.496094 51.804688 Z M 8.496094 51.804688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 9.636719 52.382812 C 9.636719 52.265625 9.542969 52.171875 9.425781 52.171875 C 9.308594 52.171875 9.214844 52.265625 9.214844 52.382812 C 9.214844 52.5 9.308594 52.59375 9.425781 52.59375 C 9.542969 52.59375 9.636719 52.5 9.636719 52.382812 Z M 9.636719 52.382812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 14.796875 51.527344 C 14.796875 51.410156 14.703125 51.316406 14.585938 51.316406 C 14.46875 51.316406 14.375 51.410156 14.375 51.527344 C 14.375 51.644531 14.46875 51.738281 14.585938 51.738281 C 14.703125 51.738281 14.796875 51.644531 14.796875 51.527344 Z M 14.796875 51.527344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 14.207031 48.773438 C 14.207031 48.65625 14.113281 48.5625 13.996094 48.5625 C 13.878906 48.5625 13.785156 48.65625 13.785156 48.773438 C 13.785156 48.890625 13.878906 48.984375 13.996094 48.984375 C 14.113281 48.984375 14.207031 48.890625 14.207031 48.773438 Z M 14.207031 48.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 16.023438 54.007812 C 16.023438 53.890625 15.929688 53.796875 15.8125 53.796875 C 15.695312 53.796875 15.601562 53.890625 15.601562 54.007812 C 15.601562 54.125 15.695312 54.21875 15.8125 54.21875 C 15.929688 54.21875 16.023438 54.125 16.023438 54.007812 Z M 16.023438 54.007812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 15.324219 54.324219 C 15.324219 54.207031 15.230469 54.113281 15.113281 54.113281 C 14.996094 54.113281 14.902344 54.207031 14.902344 54.324219 C 14.902344 54.441406 14.996094 54.535156 15.113281 54.535156 C 15.230469 54.535156 15.324219 54.441406 15.324219 54.324219 Z M 15.324219 54.324219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 14.769531 55.617188 C 14.769531 55.5 14.675781 55.40625 14.558594 55.40625 C 14.441406 55.40625 14.347656 55.5 14.347656 55.617188 C 14.347656 55.734375 14.441406 55.828125 14.558594 55.828125 C 14.675781 55.828125 14.769531 55.734375 14.769531 55.617188 Z M 14.769531 55.617188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 14.671875 55.757812 C 14.671875 55.640625 14.578125 55.546875 14.460938 55.546875 C 14.34375 55.546875 14.25 55.640625 14.25 55.757812 C 14.25 55.875 14.34375 55.96875 14.460938 55.96875 C 14.578125 55.96875 14.671875 55.875 14.671875 55.757812 Z M 14.671875 55.757812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 11.328125 58.609375 C 11.328125 58.492188 11.234375 58.398438 11.117188 58.398438 C 11 58.398438 10.90625 58.492188 10.90625 58.609375 C 10.90625 58.726562 11 58.820312 11.117188 58.820312 C 11.234375 58.820312 11.328125 58.726562 11.328125 58.609375 Z M 11.328125 58.609375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 8.945312 59.90625 C 8.945312 59.789062 8.851562 59.695312 8.734375 59.695312 C 8.617188 59.695312 8.523438 59.789062 8.523438 59.90625 C 8.523438 60.023438 8.617188 60.117188 8.734375 60.117188 C 8.851562 60.117188 8.945312 60.023438 8.945312 59.90625 Z M 8.945312 59.90625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 9.15625 55.511719 C 9.15625 55.394531 9.0625 55.300781 8.945312 55.300781 C 8.828125 55.300781 8.734375 55.394531 8.734375 55.511719 C 8.734375 55.628906 8.828125 55.722656 8.945312 55.722656 C 9.0625 55.722656 9.15625 55.628906 9.15625 55.511719 Z M 9.15625 55.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 8.589844 54.164062 C 8.589844 54.046875 8.496094 53.953125 8.378906 53.953125 C 8.261719 53.953125 8.167969 54.046875 8.167969 54.164062 C 8.167969 54.28125 8.261719 54.375 8.378906 54.375 C 8.496094 54.375 8.589844 54.28125 8.589844 54.164062 Z M 8.589844 54.164062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 9.617188 54.882812 C 9.617188 54.765625 9.523438 54.671875 9.40625 54.671875 C 9.289062 54.671875 9.195312 54.765625 9.195312 54.882812 C 9.195312 55 9.289062 55.09375 9.40625 55.09375 C 9.523438 55.09375 9.617188 55 9.617188 54.882812 Z M 9.617188 54.882812 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 12.9375 58.050781 C 12.9375 57.933594 12.84375 57.839844 12.726562 57.839844 C 12.609375 57.839844 12.515625 57.933594 12.515625 58.050781 C 12.515625 58.167969 12.609375 58.261719 12.726562 58.261719 C 12.84375 58.261719 12.9375 58.167969 12.9375 58.050781 Z M 12.9375 58.050781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 14.535156 57.054688 C 14.535156 56.9375 14.441406 56.84375 14.324219 56.84375 C 14.207031 56.84375 14.113281 56.9375 14.113281 57.054688 C 14.113281 57.171875 14.207031 57.265625 14.324219 57.265625 C 14.441406 57.265625 14.535156 57.171875 14.535156 57.054688 Z M 14.535156 57.054688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 19.027344 58.339844 C 19.027344 58.222656 18.933594 58.128906 18.816406 58.128906 C 18.699219 58.128906 18.605469 58.222656 18.605469 58.339844 C 18.605469 58.457031 18.699219 58.550781 18.816406 58.550781 C 18.933594 58.550781 19.027344 58.457031 19.027344 58.339844 Z M 19.027344 58.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 20.183594 57.699219 C 20.183594 57.582031 20.089844 57.488281 19.972656 57.488281 C 19.855469 57.488281 19.761719 57.582031 19.761719 57.699219 C 19.761719 57.816406 19.855469 57.910156 19.972656 57.910156 C 20.089844 57.910156 20.183594 57.816406 20.183594 57.699219 Z M 20.183594 57.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 21.09375 57.070312 C 21.09375 56.953125 21 56.859375 20.882812 56.859375 C 20.765625 56.859375 20.671875 56.953125 20.671875 57.070312 C 20.671875 57.1875 20.765625 57.28125 20.882812 57.28125 C 21 57.28125 21.09375 57.1875 21.09375 57.070312 Z M 21.09375 57.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.132812 59.933594 C 22.132812 59.816406 22.039062 59.722656 21.921875 59.722656 C 21.804688 59.722656 21.710938 59.816406 21.710938 59.933594 C 21.710938 60.050781 21.804688 60.144531 21.921875 60.144531 C 22.039062 60.144531 22.132812 60.050781 22.132812 59.933594 Z M 22.132812 59.933594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.324219 60.753906 C 26.324219 60.636719 26.230469 60.542969 26.113281 60.542969 C 25.996094 60.542969 25.902344 60.636719 25.902344 60.753906 C 25.902344 60.871094 25.996094 60.964844 26.113281 60.964844 C 26.230469 60.964844 26.324219 60.871094 26.324219 60.753906 Z M 26.324219 60.753906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 22.578125 60.703125 C 22.578125 60.585938 22.484375 60.492188 22.367188 60.492188 C 22.25 60.492188 22.15625 60.585938 22.15625 60.703125 C 22.15625 60.820312 22.25 60.914062 22.367188 60.914062 C 22.484375 60.914062 22.578125 60.820312 22.578125 60.703125 Z M 22.578125 60.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 24.105469 58.078125 C 24.105469 57.960938 24.011719 57.867188 23.894531 57.867188 C 23.777344 57.867188 23.683594 57.960938 23.683594 58.078125 C 23.683594 58.195312 23.777344 58.289062 23.894531 58.289062 C 24.011719 58.289062 24.105469 58.195312 24.105469 58.078125 Z M 24.105469 58.078125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 25.863281 59.9375 C 25.863281 59.820312 25.769531 59.726562 25.652344 59.726562 C 25.535156 59.726562 25.441406 59.820312 25.441406 59.9375 C 25.441406 60.054688 25.535156 60.148438 25.652344 60.148438 C 25.769531 60.148438 25.863281 60.054688 25.863281 59.9375 Z M 25.863281 59.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 28.089844 57.550781 C 28.089844 57.433594 27.996094 57.339844 27.878906 57.339844 C 27.761719 57.339844 27.667969 57.433594 27.667969 57.550781 C 27.667969 57.667969 27.761719 57.761719 27.878906 57.761719 C 27.996094 57.761719 28.089844 57.667969 28.089844 57.550781 Z M 28.089844 57.550781 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.605469 60.699219 C 26.605469 60.582031 26.511719 60.488281 26.394531 60.488281 C 26.277344 60.488281 26.183594 60.582031 26.183594 60.699219 C 26.183594 60.816406 26.277344 60.910156 26.394531 60.910156 C 26.511719 60.910156 26.605469 60.816406 26.605469 60.699219 Z M 26.605469 60.699219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 26.964844 59.441406 C 26.964844 59.324219 26.871094 59.230469 26.753906 59.230469 C 26.636719 59.230469 26.542969 59.324219 26.542969 59.441406 C 26.542969 59.558594 26.636719 59.652344 26.753906 59.652344 C 26.871094 59.652344 26.964844 59.558594 26.964844 59.441406 Z M 26.964844 59.441406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 29.640625 57.703125 C 29.640625 57.585938 29.546875 57.492188 29.429688 57.492188 C 29.3125 57.492188 29.21875 57.585938 29.21875 57.703125 C 29.21875 57.820312 29.3125 57.914062 29.429688 57.914062 C 29.546875 57.914062 29.640625 57.820312 29.640625 57.703125 Z M 29.640625 57.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.535156 58.601562 C 34.535156 58.484375 34.441406 58.390625 34.324219 58.390625 C 34.207031 58.390625 34.113281 58.484375 34.113281 58.601562 C 34.113281 58.71875 34.207031 58.8125 34.324219 58.8125 C 34.441406 58.8125 34.535156 58.71875 34.535156 58.601562 Z M 34.535156 58.601562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.640625 55.058594 C 31.640625 54.941406 31.546875 54.847656 31.429688 54.847656 C 31.3125 54.847656 31.21875 54.941406 31.21875 55.058594 C 31.21875 55.175781 31.3125 55.269531 31.429688 55.269531 C 31.546875 55.269531 31.640625 55.175781 31.640625 55.058594 Z M 31.640625 55.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.71875 56.230469 C 31.71875 56.113281 31.625 56.019531 31.507812 56.019531 C 31.390625 56.019531 31.296875 56.113281 31.296875 56.230469 C 31.296875 56.347656 31.390625 56.441406 31.507812 56.441406 C 31.625 56.441406 31.71875 56.347656 31.71875 56.230469 Z M 31.71875 56.230469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.921875 54.492188 C 30.921875 54.375 30.828125 54.28125 30.710938 54.28125 C 30.59375 54.28125 30.5 54.375 30.5 54.492188 C 30.5 54.609375 30.59375 54.703125 30.710938 54.703125 C 30.828125 54.703125 30.921875 54.609375 30.921875 54.492188 Z M 30.921875 54.492188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 30.765625 50.394531 C 30.765625 50.277344 30.671875 50.183594 30.554688 50.183594 C 30.4375 50.183594 30.34375 50.277344 30.34375 50.394531 C 30.34375 50.511719 30.4375 50.605469 30.554688 50.605469 C 30.671875 50.605469 30.765625 50.511719 30.765625 50.394531 Z M 30.765625 50.394531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 32.859375 48.101562 C 32.859375 47.984375 32.765625 47.890625 32.648438 47.890625 C 32.53125 47.890625 32.4375 47.984375 32.4375 48.101562 C 32.4375 48.21875 32.53125 48.3125 32.648438 48.3125 C 32.765625 48.3125 32.859375 48.21875 32.859375 48.101562 Z M 32.859375 48.101562 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 34.421875 51.261719 C 34.421875 51.144531 34.328125 51.050781 34.210938 51.050781 C 34.09375 51.050781 34 51.144531 34 51.261719 C 34 51.378906 34.09375 51.472656 34.210938 51.472656 C 34.328125 51.472656 34.421875 51.378906 34.421875 51.261719 Z M 34.421875 51.261719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.144531 50.597656 C 36.144531 50.480469 36.050781 50.386719 35.933594 50.386719 C 35.816406 50.386719 35.722656 50.480469 35.722656 50.597656 C 35.722656 50.714844 35.816406 50.808594 35.933594 50.808594 C 36.050781 50.808594 36.144531 50.714844 36.144531 50.597656 Z M 36.144531 50.597656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 31.589844 52.730469 C 31.589844 52.613281 31.496094 52.519531 31.378906 52.519531 C 31.261719 52.519531 31.167969 52.613281 31.167969 52.730469 C 31.167969 52.847656 31.261719 52.941406 31.378906 52.941406 C 31.496094 52.941406 31.589844 52.847656 31.589844 52.730469 Z M 31.589844 52.730469 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.769531 51.195312 C 36.769531 51.078125 36.675781 50.984375 36.558594 50.984375 C 36.441406 50.984375 36.347656 51.078125 36.347656 51.195312 C 36.347656 51.3125 36.441406 51.40625 36.558594 51.40625 C 36.675781 51.40625 36.769531 51.3125 36.769531 51.195312 Z M 36.769531 51.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.777344 51.292969 C 37.777344 51.175781 37.683594 51.082031 37.566406 51.082031 C 37.449219 51.082031 37.355469 51.175781 37.355469 51.292969 C 37.355469 51.410156 37.449219 51.503906 37.566406 51.503906 C 37.683594 51.503906 37.777344 51.410156 37.777344 51.292969 Z M 37.777344 51.292969 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.890625 54.011719 C 40.890625 53.894531 40.796875 53.800781 40.679688 53.800781 C 40.5625 53.800781 40.46875 53.894531 40.46875 54.011719 C 40.46875 54.128906 40.5625 54.222656 40.679688 54.222656 C 40.796875 54.222656 40.890625 54.128906 40.890625 54.011719 Z M 40.890625 54.011719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.097656 51.742188 C 44.097656 51.625 44.003906 51.53125 43.886719 51.53125 C 43.769531 51.53125 43.675781 51.625 43.675781 51.742188 C 43.675781 51.859375 43.769531 51.953125 43.886719 51.953125 C 44.003906 51.953125 44.097656 51.859375 44.097656 51.742188 Z M 44.097656 51.742188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.042969 50.769531 C 42.042969 50.652344 41.949219 50.558594 41.832031 50.558594 C 41.714844 50.558594 41.621094 50.652344 41.621094 50.769531 C 41.621094 50.886719 41.714844 50.980469 41.832031 50.980469 C 41.949219 50.980469 42.042969 50.886719 42.042969 50.769531 Z M 42.042969 50.769531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.332031 52.695312 C 44.332031 52.578125 44.238281 52.484375 44.121094 52.484375 C 44.003906 52.484375 43.910156 52.578125 43.910156 52.695312 C 43.910156 52.8125 44.003906 52.90625 44.121094 52.90625 C 44.238281 52.90625 44.332031 52.8125 44.332031 52.695312 Z M 44.332031 52.695312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 41.949219 54.460938 C 41.949219 54.34375 41.855469 54.25 41.738281 54.25 C 41.621094 54.25 41.527344 54.34375 41.527344 54.460938 C 41.527344 54.578125 41.621094 54.671875 41.738281 54.671875 C 41.855469 54.671875 41.949219 54.578125 41.949219 54.460938 Z M 41.949219 54.460938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.394531 55.242188 C 46.394531 55.125 46.300781 55.03125 46.183594 55.03125 C 46.066406 55.03125 45.972656 55.125 45.972656 55.242188 C 45.972656 55.359375 46.066406 55.453125 46.183594 55.453125 C 46.300781 55.453125 46.394531 55.359375 46.394531 55.242188 Z M 46.394531 55.242188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.703125 55.519531 C 44.703125 55.402344 44.609375 55.308594 44.492188 55.308594 C 44.375 55.308594 44.28125 55.402344 44.28125 55.519531 C 44.28125 55.636719 44.375 55.730469 44.492188 55.730469 C 44.609375 55.730469 44.703125 55.636719 44.703125 55.519531 Z M 44.703125 55.519531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.394531 56.554688 C 46.394531 56.4375 46.300781 56.34375 46.183594 56.34375 C 46.066406 56.34375 45.972656 56.4375 45.972656 56.554688 C 45.972656 56.671875 46.066406 56.765625 46.183594 56.765625 C 46.300781 56.765625 46.394531 56.671875 46.394531 56.554688 Z M 46.394531 56.554688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.125 56.085938 C 46.125 55.96875 46.03125 55.875 45.914062 55.875 C 45.796875 55.875 45.703125 55.96875 45.703125 56.085938 C 45.703125 56.203125 45.796875 56.296875 45.914062 56.296875 C 46.03125 56.296875 46.125 56.203125 46.125 56.085938 Z M 46.125 56.085938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.570312 51.820312 C 44.570312 51.703125 44.476562 51.609375 44.359375 51.609375 C 44.242188 51.609375 44.148438 51.703125 44.148438 51.820312 C 44.148438 51.9375 44.242188 52.03125 44.359375 52.03125 C 44.476562 52.03125 44.570312 51.9375 44.570312 51.820312 Z M 44.570312 51.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 47.71875 49.992188 C 47.71875 49.875 47.625 49.78125 47.507812 49.78125 C 47.390625 49.78125 47.296875 49.875 47.296875 49.992188 C 47.296875 50.109375 47.390625 50.203125 47.507812 50.203125 C 47.625 50.203125 47.71875 50.109375 47.71875 49.992188 Z M 47.71875 49.992188 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.476562 51.566406 C 45.476562 51.449219 45.382812 51.355469 45.265625 51.355469 C 45.148438 51.355469 45.054688 51.449219 45.054688 51.566406 C 45.054688 51.683594 45.148438 51.777344 45.265625 51.777344 C 45.382812 51.777344 45.476562 51.683594 45.476562 51.566406 Z M 45.476562 51.566406 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.355469 54.234375 C 46.355469 54.117188 46.261719 54.023438 46.144531 54.023438 C 46.027344 54.023438 45.933594 54.117188 45.933594 54.234375 C 45.933594 54.351562 46.027344 54.445312 46.144531 54.445312 C 46.261719 54.445312 46.355469 54.351562 46.355469 54.234375 Z M 46.355469 54.234375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 46.621094 51.179688 C 46.621094 51.0625 46.527344 50.96875 46.410156 50.96875 C 46.292969 50.96875 46.199219 51.0625 46.199219 51.179688 C 46.199219 51.296875 46.292969 51.390625 46.410156 51.390625 C 46.527344 51.390625 46.621094 51.296875 46.621094 51.179688 Z M 46.621094 51.179688 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.640625 50.296875 C 44.640625 50.179688 44.546875 50.085938 44.429688 50.085938 C 44.3125 50.085938 44.21875 50.179688 44.21875 50.296875 C 44.21875 50.414062 44.3125 50.507812 44.429688 50.507812 C 44.546875 50.507812 44.640625 50.414062 44.640625 50.296875 Z M 44.640625 50.296875 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.039062 53.148438 C 44.039062 53.03125 43.945312 52.9375 43.828125 52.9375 C 43.710938 52.9375 43.617188 53.03125 43.617188 53.148438 C 43.617188 53.265625 43.710938 53.359375 43.828125 53.359375 C 43.945312 53.359375 44.039062 53.265625 44.039062 53.148438 Z M 44.039062 53.148438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.65625 51.820312 C 43.65625 51.703125 43.5625 51.609375 43.445312 51.609375 C 43.328125 51.609375 43.234375 51.703125 43.234375 51.820312 C 43.234375 51.9375 43.328125 52.03125 43.445312 52.03125 C 43.5625 52.03125 43.65625 51.9375 43.65625 51.820312 Z M 43.65625 51.820312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.152344 51.207031 C 44.152344 51.089844 44.058594 50.996094 43.941406 50.996094 C 43.824219 50.996094 43.730469 51.089844 43.730469 51.207031 C 43.730469 51.324219 43.824219 51.417969 43.941406 51.417969 C 44.058594 51.417969 44.152344 51.324219 44.152344 51.207031 Z M 44.152344 51.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 44.378906 50.644531 C 44.378906 50.527344 44.285156 50.433594 44.167969 50.433594 C 44.050781 50.433594 43.957031 50.527344 43.957031 50.644531 C 43.957031 50.761719 44.050781 50.855469 44.167969 50.855469 C 44.285156 50.855469 44.378906 50.761719 44.378906 50.644531 Z M 44.378906 50.644531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.996094 53.339844 C 45.996094 53.222656 45.902344 53.128906 45.785156 53.128906 C 45.667969 53.128906 45.574219 53.222656 45.574219 53.339844 C 45.574219 53.457031 45.667969 53.550781 45.785156 53.550781 C 45.902344 53.550781 45.996094 53.457031 45.996094 53.339844 Z M 45.996094 53.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 48.578125 53.773438 C 48.578125 53.65625 48.484375 53.5625 48.367188 53.5625 C 48.25 53.5625 48.15625 53.65625 48.15625 53.773438 C 48.15625 53.890625 48.25 53.984375 48.367188 53.984375 C 48.484375 53.984375 48.578125 53.890625 48.578125 53.773438 Z M 48.578125 53.773438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 45.671875 55.886719 C 45.671875 55.769531 45.578125 55.675781 45.460938 55.675781 C 45.34375 55.675781 45.25 55.769531 45.25 55.886719 C 45.25 56.003906 45.34375 56.097656 45.460938 56.097656 C 45.578125 56.097656 45.671875 56.003906 45.671875 55.886719 Z M 45.671875 55.886719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 43.820312 56.9375 C 43.820312 56.820312 43.726562 56.726562 43.609375 56.726562 C 43.492188 56.726562 43.398438 56.820312 43.398438 56.9375 C 43.398438 57.054688 43.492188 57.148438 43.609375 57.148438 C 43.726562 57.148438 43.820312 57.054688 43.820312 56.9375 Z M 43.820312 56.9375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.707031 55.253906 C 42.707031 55.136719 42.613281 55.042969 42.496094 55.042969 C 42.378906 55.042969 42.285156 55.136719 42.285156 55.253906 C 42.285156 55.371094 42.378906 55.464844 42.496094 55.464844 C 42.613281 55.464844 42.707031 55.371094 42.707031 55.253906 Z M 42.707031 55.253906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.070312 53.058594 C 40.070312 52.941406 39.976562 52.847656 39.859375 52.847656 C 39.742188 52.847656 39.648438 52.941406 39.648438 53.058594 C 39.648438 53.175781 39.742188 53.269531 39.859375 53.269531 C 39.976562 53.269531 40.070312 53.175781 40.070312 53.058594 Z M 40.070312 53.058594 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.851562 53.207031 C 39.851562 53.089844 39.757812 52.996094 39.640625 52.996094 C 39.523438 52.996094 39.429688 53.089844 39.429688 53.207031 C 39.429688 53.324219 39.523438 53.417969 39.640625 53.417969 C 39.757812 53.417969 39.851562 53.324219 39.851562 53.207031 Z M 39.851562 53.207031 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.953125 53.445312 C 38.953125 53.328125 38.859375 53.234375 38.742188 53.234375 C 38.625 53.234375 38.53125 53.328125 38.53125 53.445312 C 38.53125 53.5625 38.625 53.65625 38.742188 53.65625 C 38.859375 53.65625 38.953125 53.5625 38.953125 53.445312 Z M 38.953125 53.445312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.164062 53.320312 C 35.164062 53.203125 35.070312 53.109375 34.953125 53.109375 C 34.835938 53.109375 34.742188 53.203125 34.742188 53.320312 C 34.742188 53.4375 34.835938 53.53125 34.953125 53.53125 C 35.070312 53.53125 35.164062 53.4375 35.164062 53.320312 Z M 35.164062 53.320312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.625 54.710938 C 37.625 54.59375 37.53125 54.5 37.414062 54.5 C 37.296875 54.5 37.203125 54.59375 37.203125 54.710938 C 37.203125 54.828125 37.296875 54.921875 37.414062 54.921875 C 37.53125 54.921875 37.625 54.828125 37.625 54.710938 Z M 37.625 54.710938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.34375 55.5 C 36.34375 55.382812 36.25 55.289062 36.132812 55.289062 C 36.015625 55.289062 35.921875 55.382812 35.921875 55.5 C 35.921875 55.617188 36.015625 55.710938 36.132812 55.710938 C 36.25 55.710938 36.34375 55.617188 36.34375 55.5 Z M 36.34375 55.5 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.835938 54.277344 C 38.835938 54.160156 38.742188 54.066406 38.625 54.066406 C 38.507812 54.066406 38.414062 54.160156 38.414062 54.277344 C 38.414062 54.394531 38.507812 54.488281 38.625 54.488281 C 38.742188 54.488281 38.835938 54.394531 38.835938 54.277344 Z M 38.835938 54.277344 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.605469 53.898438 C 37.605469 53.78125 37.511719 53.6875 37.394531 53.6875 C 37.277344 53.6875 37.183594 53.78125 37.183594 53.898438 C 37.183594 54.015625 37.277344 54.109375 37.394531 54.109375 C 37.511719 54.109375 37.605469 54.015625 37.605469 53.898438 Z M 37.605469 53.898438 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.234375 54.84375 C 39.234375 54.726562 39.140625 54.632812 39.023438 54.632812 C 38.90625 54.632812 38.8125 54.726562 38.8125 54.84375 C 38.8125 54.960938 38.90625 55.054688 39.023438 55.054688 C 39.140625 55.054688 39.234375 54.960938 39.234375 54.84375 Z M 39.234375 54.84375 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.148438 54.824219 C 40.148438 54.707031 40.054688 54.613281 39.9375 54.613281 C 39.820312 54.613281 39.726562 54.707031 39.726562 54.824219 C 39.726562 54.941406 39.820312 55.035156 39.9375 55.035156 C 40.054688 55.035156 40.148438 54.941406 40.148438 54.824219 Z M 40.148438 54.824219 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 42.332031 55.746094 C 42.332031 55.628906 42.238281 55.535156 42.121094 55.535156 C 42.003906 55.535156 41.910156 55.628906 41.910156 55.746094 C 41.910156 55.863281 42.003906 55.957031 42.121094 55.957031 C 42.238281 55.957031 42.332031 55.863281 42.332031 55.746094 Z M 42.332031 55.746094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.894531 54.3125 C 39.894531 54.195312 39.800781 54.101562 39.683594 54.101562 C 39.566406 54.101562 39.472656 54.195312 39.472656 54.3125 C 39.472656 54.429688 39.566406 54.523438 39.683594 54.523438 C 39.800781 54.523438 39.894531 54.429688 39.894531 54.3125 Z M 39.894531 54.3125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.609375 51.070312 C 40.609375 50.953125 40.515625 50.859375 40.398438 50.859375 C 40.28125 50.859375 40.1875 50.953125 40.1875 51.070312 C 40.1875 51.1875 40.28125 51.28125 40.398438 51.28125 C 40.515625 51.28125 40.609375 51.1875 40.609375 51.070312 Z M 40.609375 51.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.445312 49.511719 C 39.445312 49.394531 39.351562 49.300781 39.234375 49.300781 C 39.117188 49.300781 39.023438 49.394531 39.023438 49.511719 C 39.023438 49.628906 39.117188 49.722656 39.234375 49.722656 C 39.351562 49.722656 39.445312 49.628906 39.445312 49.511719 Z M 39.445312 49.511719 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.910156 46.339844 C 39.910156 46.222656 39.816406 46.128906 39.699219 46.128906 C 39.582031 46.128906 39.488281 46.222656 39.488281 46.339844 C 39.488281 46.457031 39.582031 46.550781 39.699219 46.550781 C 39.816406 46.550781 39.910156 46.457031 39.910156 46.339844 Z M 39.910156 46.339844 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.511719 45.78125 C 40.511719 45.664062 40.417969 45.570312 40.300781 45.570312 C 40.183594 45.570312 40.089844 45.664062 40.089844 45.78125 C 40.089844 45.898438 40.183594 45.992188 40.300781 45.992188 C 40.417969 45.992188 40.511719 45.898438 40.511719 45.78125 Z M 40.511719 45.78125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.910156 44.25 C 39.910156 44.132812 39.816406 44.039062 39.699219 44.039062 C 39.582031 44.039062 39.488281 44.132812 39.488281 44.25 C 39.488281 44.367188 39.582031 44.460938 39.699219 44.460938 C 39.816406 44.460938 39.910156 44.367188 39.910156 44.25 Z M 39.910156 44.25 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.613281 40.503906 C 38.613281 40.386719 38.519531 40.292969 38.402344 40.292969 C 38.285156 40.292969 38.191406 40.386719 38.191406 40.503906 C 38.191406 40.621094 38.285156 40.714844 38.402344 40.714844 C 38.519531 40.714844 38.613281 40.621094 38.613281 40.503906 Z M 38.613281 40.503906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 40.820312 41.195312 C 40.820312 41.078125 40.726562 40.984375 40.609375 40.984375 C 40.492188 40.984375 40.398438 41.078125 40.398438 41.195312 C 40.398438 41.3125 40.492188 41.40625 40.609375 41.40625 C 40.726562 41.40625 40.820312 41.3125 40.820312 41.195312 Z M 40.820312 41.195312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.980469 42.019531 C 37.980469 41.902344 37.886719 41.808594 37.769531 41.808594 C 37.652344 41.808594 37.558594 41.902344 37.558594 42.019531 C 37.558594 42.136719 37.652344 42.230469 37.769531 42.230469 C 37.886719 42.230469 37.980469 42.136719 37.980469 42.019531 Z M 37.980469 42.019531 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.699219 43.210938 C 35.699219 43.09375 35.605469 43 35.488281 43 C 35.371094 43 35.277344 43.09375 35.277344 43.210938 C 35.277344 43.328125 35.371094 43.421875 35.488281 43.421875 C 35.605469 43.421875 35.699219 43.328125 35.699219 43.210938 Z M 35.699219 43.210938 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.902344 39.222656 C 36.902344 39.105469 36.808594 39.011719 36.691406 39.011719 C 36.574219 39.011719 36.480469 39.105469 36.480469 39.222656 C 36.480469 39.339844 36.574219 39.433594 36.691406 39.433594 C 36.808594 39.433594 36.902344 39.339844 36.902344 39.222656 Z M 36.902344 39.222656 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.683594 35.703125 C 37.683594 35.585938 37.589844 35.492188 37.472656 35.492188 C 37.355469 35.492188 37.261719 35.585938 37.261719 35.703125 C 37.261719 35.820312 37.355469 35.914062 37.472656 35.914062 C 37.589844 35.914062 37.683594 35.820312 37.683594 35.703125 Z M 37.683594 35.703125 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 39.738281 36.664062 C 39.738281 36.546875 39.644531 36.453125 39.527344 36.453125 C 39.410156 36.453125 39.316406 36.546875 39.316406 36.664062 C 39.316406 36.78125 39.410156 36.875 39.527344 36.875 C 39.644531 36.875 39.738281 36.78125 39.738281 36.664062 Z M 39.738281 36.664062 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.226562 38.015625 C 38.226562 37.898438 38.132812 37.804688 38.015625 37.804688 C 37.898438 37.804688 37.804688 37.898438 37.804688 38.015625 C 37.804688 38.132812 37.898438 38.226562 38.015625 38.226562 C 38.132812 38.226562 38.226562 38.132812 38.226562 38.015625 Z M 38.226562 38.015625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.027344 37.128906 C 37.027344 37.011719 36.933594 36.917969 36.816406 36.917969 C 36.699219 36.917969 36.605469 37.011719 36.605469 37.128906 C 36.605469 37.246094 36.699219 37.339844 36.816406 37.339844 C 36.933594 37.339844 37.027344 37.246094 37.027344 37.128906 Z M 37.027344 37.128906 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 36.703125 35.070312 C 36.703125 34.953125 36.609375 34.859375 36.492188 34.859375 C 36.375 34.859375 36.28125 34.953125 36.28125 35.070312 C 36.28125 35.1875 36.375 35.28125 36.492188 35.28125 C 36.609375 35.28125 36.703125 35.1875 36.703125 35.070312 Z M 36.703125 35.070312 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 35.25 35.515625 C 35.25 35.398438 35.15625 35.304688 35.039062 35.304688 C 34.921875 35.304688 34.828125 35.398438 34.828125 35.515625 C 34.828125 35.632812 34.921875 35.726562 35.039062 35.726562 C 35.15625 35.726562 35.25 35.632812 35.25 35.515625 Z M 35.25 35.515625 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 38.769531 37.246094 C 38.769531 37.128906 38.675781 37.035156 38.558594 37.035156 C 38.441406 37.035156 38.347656 37.128906 38.347656 37.246094 C 38.347656 37.363281 38.441406 37.457031 38.558594 37.457031 C 38.675781 37.457031 38.769531 37.363281 38.769531 37.246094 Z M 38.769531 37.246094 \"></path>\n<path style=\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;\" d=\"M 37.023438 33.886719 C 37.023438 33.769531 36.929688 33.675781 36.8125 33.675781 C 36.695312 33.675781 36.601562 33.769531 36.601562 33.886719 C 36.601562 34.003906 36.695312 34.097656 36.8125 34.097656 C 36.929688 34.097656 37.023438 34.003906 37.023438 33.886719 Z M 37.023438 33.886719 \"></path>\n</g>\n</svg>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n</body>\n\n\n\n\n\n\n\n</html>\n"
  },
  {
    "path": "docs/docs/notebooks/Functional_PPLs.html",
    "content": "<!DOCTYPE html>\n<html>\n<head><meta charset=\"utf-8\" />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n<title>Functional_PPLs</title><script src=\"https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js\"></script>\n\n\n\n\n<style type=\"text/css\">\n    pre { line-height: 125%; }\ntd.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\nspan.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\ntd.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\nspan.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.highlight .hll { background-color: var(--jp-cell-editor-active-background) }\n.highlight { background: var(--jp-cell-editor-background); color: var(--jp-mirror-editor-variable-color) }\n.highlight .c { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment */\n.highlight .err { color: var(--jp-mirror-editor-error-color) } /* Error */\n.highlight .k { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword */\n.highlight .o { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator */\n.highlight .p { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation */\n.highlight .ch { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Hashbang */\n.highlight .cm { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Multiline */\n.highlight .cp { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Preproc */\n.highlight .cpf { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.PreprocFile */\n.highlight .c1 { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Single */\n.highlight .cs { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Special */\n.highlight .kc { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Constant */\n.highlight .kd { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Declaration */\n.highlight .kn { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Namespace */\n.highlight .kp { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Pseudo */\n.highlight .kr { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Reserved */\n.highlight .kt { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Type */\n.highlight .m { color: var(--jp-mirror-editor-number-color) } /* Literal.Number */\n.highlight .s { color: var(--jp-mirror-editor-string-color) } /* Literal.String */\n.highlight .ow { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator.Word */\n.highlight .w { color: var(--jp-mirror-editor-variable-color) } /* Text.Whitespace */\n.highlight .mb { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Bin */\n.highlight .mf { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Float */\n.highlight .mh { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Hex */\n.highlight .mi { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer */\n.highlight .mo { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Oct */\n.highlight .sa { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Affix */\n.highlight .sb { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Backtick */\n.highlight .sc { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Char */\n.highlight .dl { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Delimiter */\n.highlight .sd { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Doc */\n.highlight .s2 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Double */\n.highlight .se { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Escape */\n.highlight .sh { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Heredoc */\n.highlight .si { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Interpol */\n.highlight .sx { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Other */\n.highlight .sr { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Regex */\n.highlight .s1 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Single */\n.highlight .ss { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Symbol */\n.highlight .il { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer.Long */\n  </style>\n\n\n\n<style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\n * Mozilla scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n[data-jp-theme-scrollbars='true'] {\n  scrollbar-color: rgb(var(--jp-scrollbar-thumb-color))\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar. These selectors\n * will match lower in the tree, and so will override the above */\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n  scrollbar-width: thin;\n}\n\n/*\n * Webkit scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-corner {\n  background: var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-thumb {\n  background: rgb(var(--jp-scrollbar-thumb-color));\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-right: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-bottom: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar */\n\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-corner,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-corner {\n  background-color: transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-thumb,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid transparent;\n  border-right: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid transparent;\n  border-bottom: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny::-webkit-scrollbar,\n.jp-scrollbar-tiny::-webkit-scrollbar-corner {\n  background-color: transparent;\n  height: 4px;\n  width: 4px;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:horizontal {\n  border-left: 0px solid transparent;\n  border-right: 0px solid transparent;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:vertical {\n  border-top: 0px solid transparent;\n  border-bottom: 0px solid transparent;\n}\n\n/*\n * Phosphor\n */\n\n.lm-ScrollBar[data-orientation='horizontal'] {\n  min-height: 16px;\n  max-height: 16px;\n  min-width: 45px;\n  border-top: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] {\n  min-width: 16px;\n  max-width: 16px;\n  min-height: 45px;\n  border-left: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar-button {\n  background-color: #f0f0f0;\n  background-position: center center;\n  min-height: 15px;\n  max-height: 15px;\n  min-width: 15px;\n  max-width: 15px;\n}\n\n.lm-ScrollBar-button:hover {\n  background-color: #dadada;\n}\n\n.lm-ScrollBar-button.lm-mod-active {\n  background-color: #cdcdcd;\n}\n\n.lm-ScrollBar-track {\n  background: #f0f0f0;\n}\n\n.lm-ScrollBar-thumb {\n  background: #cdcdcd;\n}\n\n.lm-ScrollBar-thumb:hover {\n  background: #bababa;\n}\n\n.lm-ScrollBar-thumb.lm-mod-active {\n  background: #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal'] .lm-ScrollBar-thumb {\n  height: 100%;\n  min-width: 15px;\n  border-left: 1px solid #a0a0a0;\n  border-right: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] .lm-ScrollBar-thumb {\n  width: 100%;\n  min-height: 15px;\n  border-top: 1px solid #a0a0a0;\n  border-bottom: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-left);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-right);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-up);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-down);\n  background-size: 17px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Widget, /* </DEPRECATED> */\n.lm-Widget {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  cursor: default;\n}\n\n\n/* <DEPRECATED> */ .p-Widget.p-mod-hidden, /* </DEPRECATED> */\n.lm-Widget.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-CommandPalette, /* </DEPRECATED> */\n.lm-CommandPalette {\n  display: flex;\n  flex-direction: column;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-search, /* </DEPRECATED> */\n.lm-CommandPalette-search {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-content, /* </DEPRECATED> */\n.lm-CommandPalette-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  min-height: 0;\n  overflow: auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-header, /* </DEPRECATED> */\n.lm-CommandPalette-header {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-item, /* </DEPRECATED> */\n.lm-CommandPalette-item {\n  display: flex;\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemIcon, /* </DEPRECATED> */\n.lm-CommandPalette-itemIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemContent, /* </DEPRECATED> */\n.lm-CommandPalette-itemContent {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemShortcut, /* </DEPRECATED> */\n.lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemLabel, /* </DEPRECATED> */\n.lm-CommandPalette-itemLabel {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.lm-close-icon {\n\tborder:1px solid transparent;\n  background-color: transparent;\n  position: absolute;\n\tz-index:1;\n\tright:3%;\n\ttop: 0;\n\tbottom: 0;\n\tmargin: auto;\n\tpadding: 7px 0;\n\tdisplay: none;\n\tvertical-align: middle;\n  outline: 0;\n  cursor: pointer;\n}\n.lm-close-icon:after {\n\tcontent: \"X\";\n\tdisplay: block;\n\twidth: 15px;\n\theight: 15px;\n\ttext-align: center;\n\tcolor:#000;\n\tfont-weight: normal;\n\tfont-size: 12px;\n\tcursor: pointer;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-DockPanel, /* </DEPRECATED> */\n.lm-DockPanel {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-widget, /* </DEPRECATED> */\n.lm-DockPanel-widget {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-tabBar, /* </DEPRECATED> */\n.lm-DockPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle, /* </DEPRECATED> */\n.lm-DockPanel-handle {\n  z-index: 2;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle:after, /* </DEPRECATED> */\n.lm-DockPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal'] {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical'] {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal']:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical']:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay, /* </DEPRECATED> */\n.lm-DockPanel-overlay {\n  z-index: 3;\n  box-sizing: border-box;\n  pointer-events: none;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-overlay.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Menu, /* </DEPRECATED> */\n.lm-Menu {\n  z-index: 10000;\n  position: absolute;\n  white-space: nowrap;\n  overflow-x: hidden;\n  overflow-y: auto;\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-content, /* </DEPRECATED> */\n.lm-Menu-content {\n  margin: 0;\n  padding: 0;\n  display: table;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-item, /* </DEPRECATED> */\n.lm-Menu-item {\n  display: table-row;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-item.p-mod-hidden,\n.p-Menu-item.p-mod-collapsed,\n/* </DEPRECATED> */\n.lm-Menu-item.lm-mod-hidden,\n.lm-Menu-item.lm-mod-collapsed {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-itemIcon,\n.p-Menu-itemSubmenuIcon,\n/* </DEPRECATED> */\n.lm-Menu-itemIcon,\n.lm-Menu-itemSubmenuIcon {\n  display: table-cell;\n  text-align: center;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemLabel, /* </DEPRECATED> */\n.lm-Menu-itemLabel {\n  display: table-cell;\n  text-align: left;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemShortcut, /* </DEPRECATED> */\n.lm-Menu-itemShortcut {\n  display: table-cell;\n  text-align: right;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-MenuBar, /* </DEPRECATED> */\n.lm-MenuBar {\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-MenuBar-content, /* </DEPRECATED> */\n.lm-MenuBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex-direction: row;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p--MenuBar-item, /* </DEPRECATED> */\n.lm-MenuBar-item {\n  box-sizing: border-box;\n}\n\n\n/* <DEPRECATED> */\n.p-MenuBar-itemIcon,\n.p-MenuBar-itemLabel,\n/* </DEPRECATED> */\n.lm-MenuBar-itemIcon,\n.lm-MenuBar-itemLabel {\n  display: inline-block;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-ScrollBar, /* </DEPRECATED> */\n.lm-ScrollBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='horizontal'] {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='vertical'] {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-button, /* </DEPRECATED> */\n.lm-ScrollBar-button {\n  box-sizing: border-box;\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-track, /* </DEPRECATED> */\n.lm-ScrollBar-track {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  flex: 1 1 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-thumb, /* </DEPRECATED> */\n.lm-ScrollBar-thumb {\n  box-sizing: border-box;\n  position: absolute;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-SplitPanel-child, /* </DEPRECATED> */\n.lm-SplitPanel-child {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle, /* </DEPRECATED> */\n.lm-SplitPanel-handle {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-SplitPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle:after, /* </DEPRECATED> */\n.lm-SplitPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabBar, /* </DEPRECATED> */\n.lm-TabBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='horizontal'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] {\n  flex-direction: row;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='vertical'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] {\n  flex-direction: column;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-content, /* </DEPRECATED> */\n.lm-TabBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex: 1 1 auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='horizontal'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] > .lm-TabBar-content {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='vertical'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] > .lm-TabBar-content {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar-tab {\n  display: flex;\n  flex-direction: row;\n  box-sizing: border-box;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar-tabIcon,\n.p-TabBar-tabCloseIcon,\n/* </DEPRECATED> */\n.lm-TabBar-tabIcon,\n.lm-TabBar-tabCloseIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tabLabel, /* </DEPRECATED> */\n.lm-TabBar-tabLabel {\n  flex: 1 1 auto;\n  overflow: hidden;\n  white-space: nowrap;\n}\n\n\n.lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab.p-mod-hidden, /* </DEPRECATED> */\n.lm-TabBar-tab.lm-mod-hidden {\n  display: none !important;\n}\n\n\n.lm-TabBar-addButton.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar.p-mod-dragging .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab {\n  position: relative;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='horizontal'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='horizontal'] .lm-TabBar-tab {\n  left: 0;\n  transition: left 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='vertical'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='vertical'] .lm-TabBar-tab {\n  top: 0;\n  transition: top 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging .p-TabBar-tab.p-mod-dragging,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab.lm-mod-dragging {\n  transition: none;\n}\n\n.lm-TabBar-tabLabel .lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n  background: inherit;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabPanel-tabBar, /* </DEPRECATED> */\n.lm-TabPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-TabPanel-stackedPanel, /* </DEPRECATED> */\n.lm-TabPanel-stackedPanel {\n  z-index: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n@charset \"UTF-8\";\nhtml{\n  -webkit-box-sizing:border-box;\n          box-sizing:border-box; }\n\n*,\n*::before,\n*::after{\n  -webkit-box-sizing:inherit;\n          box-sizing:inherit; }\n\nbody{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none;\n  color:#182026;\n  font-family:-apple-system, \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Open Sans\", \"Helvetica Neue\", \"Icons16\", sans-serif; }\n\np{\n  margin-bottom:10px;\n  margin-top:0; }\n\nsmall{\n  font-size:12px; }\n\nstrong{\n  font-weight:600; }\n\n::-moz-selection{\n  background:rgba(125, 188, 255, 0.6); }\n\n::selection{\n  background:rgba(125, 188, 255, 0.6); }\n.bp3-heading{\n  color:#182026;\n  font-weight:600;\n  margin:0 0 10px;\n  padding:0; }\n  .bp3-dark .bp3-heading{\n    color:#f5f8fa; }\n\nh1.bp3-heading, .bp3-running-text h1{\n  font-size:36px;\n  line-height:40px; }\n\nh2.bp3-heading, .bp3-running-text h2{\n  font-size:28px;\n  line-height:32px; }\n\nh3.bp3-heading, .bp3-running-text h3{\n  font-size:22px;\n  line-height:25px; }\n\nh4.bp3-heading, .bp3-running-text h4{\n  font-size:18px;\n  line-height:21px; }\n\nh5.bp3-heading, .bp3-running-text h5{\n  font-size:16px;\n  line-height:19px; }\n\nh6.bp3-heading, .bp3-running-text h6{\n  font-size:14px;\n  line-height:16px; }\n.bp3-ui-text{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none; }\n\n.bp3-monospace-text{\n  font-family:monospace;\n  text-transform:none; }\n\n.bp3-text-muted{\n  color:#5c7080; }\n  .bp3-dark .bp3-text-muted{\n    color:#a7b6c2; }\n\n.bp3-text-disabled{\n  color:rgba(92, 112, 128, 0.6); }\n  .bp3-dark .bp3-text-disabled{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-text-overflow-ellipsis{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal; }\n.bp3-running-text{\n  font-size:14px;\n  line-height:1.5; }\n  .bp3-running-text h1{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h1{\n      color:#f5f8fa; }\n  .bp3-running-text h2{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h2{\n      color:#f5f8fa; }\n  .bp3-running-text h3{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h3{\n      color:#f5f8fa; }\n  .bp3-running-text h4{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h4{\n      color:#f5f8fa; }\n  .bp3-running-text h5{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h5{\n      color:#f5f8fa; }\n  .bp3-running-text h6{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h6{\n      color:#f5f8fa; }\n  .bp3-running-text hr{\n    border:none;\n    border-bottom:1px solid rgba(16, 22, 26, 0.15);\n    margin:20px 0; }\n    .bp3-dark .bp3-running-text hr{\n      border-color:rgba(255, 255, 255, 0.15); }\n  .bp3-running-text p{\n    margin:0 0 10px;\n    padding:0; }\n\n.bp3-text-large{\n  font-size:16px; }\n\n.bp3-text-small{\n  font-size:12px; }\na{\n  color:#106ba3;\n  text-decoration:none; }\n  a:hover{\n    color:#106ba3;\n    cursor:pointer;\n    text-decoration:underline; }\n  a .bp3-icon, a .bp3-icon-standard, a .bp3-icon-large{\n    color:inherit; }\n  a code,\n  .bp3-dark a code{\n    color:inherit; }\n  .bp3-dark a,\n  .bp3-dark a:hover{\n    color:#48aff0; }\n    .bp3-dark a .bp3-icon, .bp3-dark a .bp3-icon-standard, .bp3-dark a .bp3-icon-large,\n    .bp3-dark a:hover .bp3-icon,\n    .bp3-dark a:hover .bp3-icon-standard,\n    .bp3-dark a:hover .bp3-icon-large{\n      color:inherit; }\n.bp3-running-text code, .bp3-code{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  font-size:smaller;\n  padding:2px 5px; }\n  .bp3-dark .bp3-running-text code, .bp3-running-text .bp3-dark code, .bp3-dark .bp3-code{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n  .bp3-running-text a > code, a > .bp3-code{\n    color:#137cbd; }\n    .bp3-dark .bp3-running-text a > code, .bp3-running-text .bp3-dark a > code, .bp3-dark a > .bp3-code{\n      color:inherit; }\n\n.bp3-running-text pre, .bp3-code-block{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n  color:#182026;\n  display:block;\n  font-size:13px;\n  line-height:1.4;\n  margin:10px 0;\n  padding:13px 15px 12px;\n  word-break:break-all;\n  word-wrap:break-word; }\n  .bp3-dark .bp3-running-text pre, .bp3-running-text .bp3-dark pre, .bp3-dark .bp3-code-block{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n  .bp3-running-text pre > code, .bp3-code-block > code{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit;\n    font-size:inherit;\n    padding:0; }\n\n.bp3-running-text kbd, .bp3-key{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-family:inherit;\n  font-size:12px;\n  height:24px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  line-height:24px;\n  min-width:24px;\n  padding:3px 6px;\n  vertical-align:middle; }\n  .bp3-running-text kbd .bp3-icon, .bp3-key .bp3-icon, .bp3-running-text kbd .bp3-icon-standard, .bp3-key .bp3-icon-standard, .bp3-running-text kbd .bp3-icon-large, .bp3-key .bp3-icon-large{\n    margin-right:5px; }\n  .bp3-dark .bp3-running-text kbd, .bp3-running-text .bp3-dark kbd, .bp3-dark .bp3-key{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n.bp3-running-text blockquote, .bp3-blockquote{\n  border-left:solid 4px rgba(167, 182, 194, 0.5);\n  margin:0 0 10px;\n  padding:0 20px; }\n  .bp3-dark .bp3-running-text blockquote, .bp3-running-text .bp3-dark blockquote, .bp3-dark .bp3-blockquote{\n    border-color:rgba(115, 134, 148, 0.5); }\n.bp3-running-text ul,\n.bp3-running-text ol, .bp3-list{\n  margin:10px 0;\n  padding-left:30px; }\n  .bp3-running-text ul li:not(:last-child), .bp3-running-text ol li:not(:last-child), .bp3-list li:not(:last-child){\n    margin-bottom:5px; }\n  .bp3-running-text ul ol, .bp3-running-text ol ol, .bp3-list ol,\n  .bp3-running-text ul ul,\n  .bp3-running-text ol ul,\n  .bp3-list ul{\n    margin-top:5px; }\n\n.bp3-list-unstyled{\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-list-unstyled li{\n    padding:0; }\n.bp3-rtl{\n  text-align:right; }\n\n.bp3-dark{\n  color:#f5f8fa; }\n\n:focus{\n  outline:rgba(19, 124, 189, 0.6) auto 2px;\n  outline-offset:2px;\n  -moz-outline-radius:6px; }\n\n.bp3-focus-disabled :focus{\n  outline:none !important; }\n  .bp3-focus-disabled :focus ~ .bp3-control-indicator{\n    outline:none !important; }\n\n.bp3-alert{\n  max-width:400px;\n  padding:20px; }\n\n.bp3-alert-body{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-alert-body .bp3-icon{\n    font-size:40px;\n    margin-right:20px;\n    margin-top:0; }\n\n.bp3-alert-contents{\n  word-break:break-word; }\n\n.bp3-alert-footer{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:reverse;\n      -ms-flex-direction:row-reverse;\n          flex-direction:row-reverse;\n  margin-top:10px; }\n  .bp3-alert-footer .bp3-button{\n    margin-left:10px; }\n.bp3-breadcrumbs{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  cursor:default;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:wrap;\n      flex-wrap:wrap;\n  height:30px;\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-breadcrumbs > li{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n    .bp3-breadcrumbs > li::after{\n      background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z' fill='%235C7080'/%3e%3c/svg%3e\");\n      content:\"\";\n      display:block;\n      height:16px;\n      margin:0 5px;\n      width:16px; }\n    .bp3-breadcrumbs > li:last-of-type::after{\n      display:none; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumb-current,\n.bp3-breadcrumbs-collapsed{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-size:16px; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumbs-collapsed{\n  color:#5c7080; }\n\n.bp3-breadcrumb:hover{\n  text-decoration:none; }\n\n.bp3-breadcrumb.bp3-disabled{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-breadcrumb .bp3-icon{\n  margin-right:5px; }\n\n.bp3-breadcrumb-current{\n  color:inherit;\n  font-weight:600; }\n  .bp3-breadcrumb-current .bp3-input{\n    font-size:inherit;\n    font-weight:inherit;\n    vertical-align:baseline; }\n\n.bp3-breadcrumbs-collapsed{\n  background:#ced9e0;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  margin-right:2px;\n  padding:1px 5px;\n  vertical-align:text-bottom; }\n  .bp3-breadcrumbs-collapsed::before{\n    background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cg fill='%235C7080'%3e%3ccircle cx='2' cy='8.03' r='2'/%3e%3ccircle cx='14' cy='8.03' r='2'/%3e%3ccircle cx='8' cy='8.03' r='2'/%3e%3c/g%3e%3c/svg%3e\") center no-repeat;\n    content:\"\";\n    display:block;\n    height:16px;\n    width:16px; }\n  .bp3-breadcrumbs-collapsed:hover{\n    background:#bfccd6;\n    color:#182026;\n    text-decoration:none; }\n\n.bp3-dark .bp3-breadcrumb,\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumbs > li::after{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumb.bp3-disabled{\n  color:rgba(167, 182, 194, 0.6); }\n\n.bp3-dark .bp3-breadcrumb-current{\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-breadcrumbs-collapsed:hover{\n    background:rgba(16, 22, 26, 0.6);\n    color:#f5f8fa; }\n.bp3-button{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  min-height:30px;\n  min-width:30px; }\n  .bp3-button > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-button > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-button::before,\n  .bp3-button > *{\n    margin-right:7px; }\n  .bp3-button:empty::before,\n  .bp3-button > :last-child{\n    margin-right:0; }\n  .bp3-button:empty{\n    padding:0 !important; }\n  .bp3-button:disabled, .bp3-button.bp3-disabled{\n    cursor:not-allowed; }\n  .bp3-button.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button.bp3-align-right,\n  .bp3-align-right .bp3-button{\n    text-align:right; }\n  .bp3-button.bp3-align-left,\n  .bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026; }\n    .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active:hover, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-button.bp3-intent-primary{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover, .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover{\n      background-color:#106ba3;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      background-color:#0e5a8a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:disabled, .bp3-button.bp3-intent-primary.bp3-disabled{\n      background-color:rgba(19, 124, 189, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-success{\n    background-color:#0f9960;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover, .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover{\n      background-color:#0d8050;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      background-color:#0a6640;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:disabled, .bp3-button.bp3-intent-success.bp3-disabled{\n      background-color:rgba(15, 153, 96, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-warning{\n    background-color:#d9822b;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover, .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover{\n      background-color:#bf7326;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      background-color:#a66321;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:disabled, .bp3-button.bp3-intent-warning.bp3-disabled{\n      background-color:rgba(217, 130, 43, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-danger{\n    background-color:#db3737;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover, .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover{\n      background-color:#c23030;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      background-color:#a82a2a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:disabled, .bp3-button.bp3-intent-danger.bp3-disabled{\n      background-color:rgba(219, 55, 55, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n    stroke:#ffffff; }\n  .bp3-button.bp3-large,\n  .bp3-large .bp3-button{\n    min-height:40px;\n    min-width:40px;\n    font-size:16px;\n    padding:5px 15px; }\n    .bp3-button.bp3-large::before,\n    .bp3-button.bp3-large > *,\n    .bp3-large .bp3-button::before,\n    .bp3-large .bp3-button > *{\n      margin-right:10px; }\n    .bp3-button.bp3-large:empty::before,\n    .bp3-button.bp3-large > :last-child,\n    .bp3-large .bp3-button:empty::before,\n    .bp3-large .bp3-button > :last-child{\n      margin-right:0; }\n  .bp3-button.bp3-small,\n  .bp3-small .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-button.bp3-loading{\n    position:relative; }\n    .bp3-button.bp3-loading[class*=\"bp3-icon-\"]::before{\n      visibility:hidden; }\n    .bp3-button.bp3-loading .bp3-button-spinner{\n      margin:0;\n      position:absolute; }\n    .bp3-button.bp3-loading > :not(.bp3-button-spinner){\n      visibility:hidden; }\n  .bp3-button[class*=\"bp3-icon-\"]::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    color:#5c7080; }\n  .bp3-button .bp3-icon, .bp3-button .bp3-icon-standard, .bp3-button .bp3-icon-large{\n    color:#5c7080; }\n    .bp3-button .bp3-icon.bp3-align-right, .bp3-button .bp3-icon-standard.bp3-align-right, .bp3-button .bp3-icon-large.bp3-align-right{\n      margin-left:7px; }\n  .bp3-button .bp3-icon:first-child:last-child,\n  .bp3-button .bp3-spinner + .bp3-icon:last-child{\n    margin:0 -7px; }\n  .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"])[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n      color:#a7b6c2; }\n  .bp3-dark .bp3-button[class*=\"bp3-intent-\"]{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:hover{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.3); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n      stroke:#8a9ba8; }\n  .bp3-button:disabled::before,\n  .bp3-button:disabled .bp3-icon, .bp3-button:disabled .bp3-icon-standard, .bp3-button:disabled .bp3-icon-large, .bp3-button.bp3-disabled::before,\n  .bp3-button.bp3-disabled .bp3-icon, .bp3-button.bp3-disabled .bp3-icon-standard, .bp3-button.bp3-disabled .bp3-icon-large, .bp3-button[class*=\"bp3-intent-\"]::before,\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-icon, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-standard, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-large{\n    color:inherit !important; }\n  .bp3-button.bp3-minimal{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button.bp3-minimal:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-minimal:active, .bp3-button.bp3-minimal.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-minimal:disabled, .bp3-button.bp3-minimal:disabled:hover, .bp3-button.bp3-minimal.bp3-disabled, .bp3-button.bp3-minimal.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-minimal{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-minimal:hover, .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-minimal:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-minimal:disabled, .bp3-dark .bp3-button.bp3-minimal:disabled:hover, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover, .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover, .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover, .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover, .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button.bp3-outlined{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    border:1px solid rgba(24, 32, 38, 0.2);\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box; }\n    .bp3-button.bp3-outlined:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-outlined:active, .bp3-button.bp3-outlined.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-outlined:hover, .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-outlined:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover, .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover, .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover, .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover, .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      border-color:rgba(92, 112, 128, 0.1); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      border-color:rgba(255, 255, 255, 0.4); }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        border-color:rgba(255, 255, 255, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      border-color:rgba(16, 107, 163, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        border-color:rgba(16, 107, 163, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        border-color:rgba(72, 175, 240, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          border-color:rgba(72, 175, 240, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      border-color:rgba(13, 128, 80, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        border-color:rgba(13, 128, 80, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        border-color:rgba(61, 204, 145, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          border-color:rgba(61, 204, 145, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      border-color:rgba(191, 115, 38, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        border-color:rgba(191, 115, 38, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        border-color:rgba(255, 179, 102, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          border-color:rgba(255, 179, 102, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      border-color:rgba(194, 48, 48, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        border-color:rgba(194, 48, 48, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        border-color:rgba(255, 115, 115, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          border-color:rgba(255, 115, 115, 0.2); }\n\na.bp3-button{\n  text-align:center;\n  text-decoration:none;\n  -webkit-transition:none;\n  transition:none; }\n  a.bp3-button, a.bp3-button:hover, a.bp3-button:active{\n    color:#182026; }\n  a.bp3-button.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6); }\n\n.bp3-button-text{\n  -webkit-box-flex:0;\n      -ms-flex:0 1 auto;\n          flex:0 1 auto; }\n\n.bp3-button.bp3-align-left .bp3-button-text, .bp3-button.bp3-align-right .bp3-button-text,\n.bp3-button-group.bp3-align-left .bp3-button-text,\n.bp3-button-group.bp3-align-right .bp3-button-text{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto; }\n.bp3-button-group{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex; }\n  .bp3-button-group .bp3-button{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    position:relative;\n    z-index:4; }\n    .bp3-button-group .bp3-button:focus{\n      z-index:5; }\n    .bp3-button-group .bp3-button:hover{\n      z-index:6; }\n    .bp3-button-group .bp3-button:active, .bp3-button-group .bp3-button.bp3-active{\n      z-index:7; }\n    .bp3-button-group .bp3-button:disabled, .bp3-button-group .bp3-button.bp3-disabled{\n      z-index:3; }\n    .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]{\n      z-index:9; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:focus{\n        z-index:10; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:hover{\n        z-index:11; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n        z-index:12; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n        z-index:8; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:first-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:first-child){\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    border-bottom-right-radius:0;\n    border-top-right-radius:0;\n    margin-right:-1px; }\n  .bp3-button-group.bp3-minimal .bp3-button{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button-group.bp3-minimal .bp3-button{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button-group .bp3-popover-wrapper,\n  .bp3-button-group .bp3-popover-target{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button-group .bp3-button.bp3-fill,\n  .bp3-button-group.bp3-fill .bp3-button:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-vertical{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column;\n    vertical-align:top; }\n    .bp3-button-group.bp3-vertical.bp3-fill{\n      height:100%;\n      width:unset; }\n    .bp3-button-group.bp3-vertical .bp3-button{\n      margin-right:0 !important;\n      width:100%; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:first-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:first-child{\n      border-radius:3px 3px 0 0; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:last-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:last-child{\n      border-radius:0 0 3px 3px; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:not(:last-child){\n      margin-bottom:-1px; }\n  .bp3-button-group.bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    margin-right:1px; }\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-button:not(:last-child){\n    margin-bottom:1px; }\n.bp3-callout{\n  font-size:14px;\n  line-height:1.5;\n  background-color:rgba(138, 155, 168, 0.15);\n  border-radius:3px;\n  padding:10px 12px 9px;\n  position:relative;\n  width:100%; }\n  .bp3-callout[class*=\"bp3-icon-\"]{\n    padding-left:40px; }\n    .bp3-callout[class*=\"bp3-icon-\"]::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout.bp3-callout-icon{\n    padding-left:40px; }\n    .bp3-callout.bp3-callout-icon > .bp3-icon:first-child{\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout .bp3-heading{\n    line-height:20px;\n    margin-bottom:5px;\n    margin-top:0; }\n    .bp3-callout .bp3-heading:last-child{\n      margin-bottom:0; }\n  .bp3-dark .bp3-callout{\n    background-color:rgba(138, 155, 168, 0.2); }\n    .bp3-dark .bp3-callout[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n  .bp3-callout.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15); }\n    .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-primary .bp3-heading{\n      color:#106ba3; }\n    .bp3-dark .bp3-callout.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-primary .bp3-heading{\n        color:#48aff0; }\n  .bp3-callout.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15); }\n    .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-success .bp3-heading{\n      color:#0d8050; }\n    .bp3-dark .bp3-callout.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-success .bp3-heading{\n        color:#3dcc91; }\n  .bp3-callout.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15); }\n    .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-warning .bp3-heading{\n      color:#bf7326; }\n    .bp3-dark .bp3-callout.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-warning .bp3-heading{\n        color:#ffb366; }\n  .bp3-callout.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15); }\n    .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-danger .bp3-heading{\n      color:#c23030; }\n    .bp3-dark .bp3-callout.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-danger .bp3-heading{\n        color:#ff7373; }\n  .bp3-running-text .bp3-callout{\n    margin:20px 0; }\n.bp3-card{\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n  padding:20px;\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-card.bp3-dark,\n  .bp3-dark .bp3-card{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-0{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n  .bp3-elevation-0.bp3-dark,\n  .bp3-dark .bp3-elevation-0{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-1{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-1.bp3-dark,\n  .bp3-dark .bp3-elevation-1{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-2{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-2.bp3-dark,\n  .bp3-dark .bp3-elevation-2{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-3{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-3.bp3-dark,\n  .bp3-dark .bp3-elevation-3{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-4{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-4.bp3-dark,\n  .bp3-dark .bp3-elevation-4{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:hover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  cursor:pointer; }\n  .bp3-card.bp3-interactive:hover.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:hover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:active{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  opacity:0.9;\n  -webkit-transition-duration:0;\n          transition-duration:0; }\n  .bp3-card.bp3-interactive:active.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:active{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-collapse{\n  height:0;\n  overflow-y:hidden;\n  -webkit-transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-collapse .bp3-collapse-body{\n    -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-collapse .bp3-collapse-body[aria-hidden=\"true\"]{\n      display:none; }\n\n.bp3-context-menu .bp3-popover-target{\n  display:block; }\n\n.bp3-context-menu-popover-target{\n  position:fixed; }\n\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-dialog-container{\n  opacity:1;\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  min-height:100%;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  width:100%; }\n  .bp3-dialog-container.bp3-overlay-enter > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5); }\n  .bp3-dialog-container.bp3-overlay-enter-active > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear-active > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-dialog-container.bp3-overlay-exit > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-dialog-container.bp3-overlay-exit-active > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n\n.bp3-dialog{\n  background:#ebf1f5;\n  border-radius:6px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:30px 0;\n  padding-bottom:20px;\n  pointer-events:all;\n  -webkit-user-select:text;\n     -moz-user-select:text;\n      -ms-user-select:text;\n          user-select:text;\n  width:500px; }\n  .bp3-dialog:focus{\n    outline:0; }\n  .bp3-dialog.bp3-dark,\n  .bp3-dark .bp3-dialog{\n    background:#293742;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-dialog-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:6px 6px 0 0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding-left:20px;\n  padding-right:5px;\n  z-index:30; }\n  .bp3-dialog-header .bp3-icon-large,\n  .bp3-dialog-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-dialog-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-dialog-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-dialog-header{\n    background:#30404d;\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-dialog-header .bp3-icon-large,\n    .bp3-dark .bp3-dialog-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-dialog-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  margin:20px; }\n\n.bp3-dialog-footer{\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  margin:0 20px; }\n\n.bp3-dialog-footer-actions{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:end;\n      -ms-flex-pack:end;\n          justify-content:flex-end; }\n  .bp3-dialog-footer-actions .bp3-button{\n    margin-left:10px; }\n.bp3-multistep-dialog-panels{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n\n.bp3-multistep-dialog-left-panel{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column; }\n  .bp3-dark .bp3-multistep-dialog-left-panel{\n    background:#202b33; }\n\n.bp3-multistep-dialog-right-panel{\n  background-color:#f5f8fa;\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  border-radius:0 0 6px 0;\n  -webkit-box-flex:3;\n      -ms-flex:3;\n          flex:3;\n  min-width:0; }\n  .bp3-dark .bp3-multistep-dialog-right-panel{\n    background-color:#293742;\n    border-left:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-multistep-dialog-footer{\n  background-color:#ffffff;\n  border-radius:0 0 6px 0;\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  padding:10px; }\n  .bp3-dark .bp3-multistep-dialog-footer{\n    background:#30404d;\n    border-top:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-dialog-step-container{\n  background-color:#f5f8fa;\n  border-bottom:1px solid rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-dialog-step-container{\n    background:#293742;\n    border-bottom:1px solid rgba(16, 22, 26, 0.4); }\n  .bp3-dialog-step-container.bp3-dialog-step-viewed{\n    background-color:#ffffff; }\n    .bp3-dark .bp3-dialog-step-container.bp3-dialog-step-viewed{\n      background:#30404d; }\n\n.bp3-dialog-step{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#f5f8fa;\n  border-radius:6px;\n  cursor:not-allowed;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:4px;\n  padding:6px 14px; }\n  .bp3-dark .bp3-dialog-step{\n    background:#293742; }\n  .bp3-dialog-step-viewed .bp3-dialog-step{\n    background-color:#ffffff;\n    cursor:pointer; }\n    .bp3-dark .bp3-dialog-step-viewed .bp3-dialog-step{\n      background:#30404d; }\n  .bp3-dialog-step:hover{\n    background-color:#f5f8fa; }\n    .bp3-dark .bp3-dialog-step:hover{\n      background:#293742; }\n\n.bp3-dialog-step-icon{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:rgba(92, 112, 128, 0.6);\n  border-radius:50%;\n  color:#ffffff;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:25px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  width:25px; }\n  .bp3-dark .bp3-dialog-step-icon{\n    background-color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#2b95d6; }\n  .bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#8a9ba8; }\n\n.bp3-dialog-step-title{\n  color:rgba(92, 112, 128, 0.6);\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  padding-left:10px; }\n  .bp3-dark .bp3-dialog-step-title{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-title{\n    color:#2b95d6; }\n  .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n    color:#182026; }\n    .bp3-dark .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n      color:#f5f8fa; }\n.bp3-drawer{\n  background:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0;\n  padding:0; }\n  .bp3-drawer:focus{\n    outline:0; }\n  .bp3-drawer.bp3-position-top{\n    height:50%;\n    left:0;\n    right:0;\n    top:0; }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter, .bp3-drawer.bp3-position-top.bp3-overlay-appear{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter-active, .bp3-drawer.bp3-position-top.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit-active{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-bottom{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter-active, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-left{\n    bottom:0;\n    left:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter, .bp3-drawer.bp3-position-left.bp3-overlay-appear{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter-active, .bp3-drawer.bp3-position-left.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit-active{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-right{\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter, .bp3-drawer.bp3-position-right.bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter-active, .bp3-drawer.bp3-position-right.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right):not(.bp3-vertical){\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right).bp3-vertical{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-dark,\n  .bp3-dark .bp3-drawer{\n    background:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-drawer-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border-radius:0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding:5px;\n  padding-left:20px;\n  position:relative; }\n  .bp3-drawer-header .bp3-icon-large,\n  .bp3-drawer-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-drawer-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-drawer-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-drawer-header{\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-drawer-header .bp3-icon-large,\n    .bp3-dark .bp3-drawer-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-drawer-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  overflow:auto; }\n\n.bp3-drawer-footer{\n  -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  padding:10px 20px;\n  position:relative; }\n  .bp3-dark .bp3-drawer-footer{\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4); }\n.bp3-editable-text{\n  cursor:text;\n  display:inline-block;\n  max-width:100%;\n  position:relative;\n  vertical-align:top;\n  white-space:nowrap; }\n  .bp3-editable-text::before{\n    bottom:-3px;\n    left:-3px;\n    position:absolute;\n    right:-3px;\n    top:-3px;\n    border-radius:3px;\n    content:\"\";\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#137cbd; }\n  .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4); }\n  .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#0f9960; }\n  .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4); }\n  .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#d9822b; }\n  .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4); }\n  .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#db3737; }\n  .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4); }\n  .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-dark .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#48aff0; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4);\n            box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#3dcc91; }\n  .bp3-dark .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4);\n            box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#ffb366; }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#ff7373; }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-editable-text-input,\n.bp3-editable-text-content{\n  color:inherit;\n  display:inherit;\n  font:inherit;\n  letter-spacing:inherit;\n  max-width:inherit;\n  min-width:inherit;\n  position:relative;\n  resize:none;\n  text-transform:inherit;\n  vertical-align:top; }\n\n.bp3-editable-text-input{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0;\n  white-space:pre-wrap;\n  width:100%; }\n  .bp3-editable-text-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:focus{\n    outline:none; }\n  .bp3-editable-text-input::-ms-clear{\n    display:none; }\n\n.bp3-editable-text-content{\n  overflow:hidden;\n  padding-right:2px;\n  text-overflow:ellipsis;\n  white-space:pre; }\n  .bp3-editable-text-editing > .bp3-editable-text-content{\n    left:0;\n    position:absolute;\n    visibility:hidden; }\n  .bp3-editable-text-placeholder > .bp3-editable-text-content{\n    color:rgba(92, 112, 128, 0.6); }\n    .bp3-dark .bp3-editable-text-placeholder > .bp3-editable-text-content{\n      color:rgba(167, 182, 194, 0.6); }\n\n.bp3-editable-text.bp3-multiline{\n  display:block; }\n  .bp3-editable-text.bp3-multiline .bp3-editable-text-content{\n    overflow:auto;\n    white-space:pre-wrap;\n    word-wrap:break-word; }\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-control-group{\n  -webkit-transform:translateZ(0);\n          transform:translateZ(0);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:stretch;\n      -ms-flex-align:stretch;\n          align-items:stretch; }\n  .bp3-control-group > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select,\n  .bp3-control-group .bp3-input,\n  .bp3-control-group .bp3-select{\n    position:relative; }\n  .bp3-control-group .bp3-input{\n    border-radius:inherit;\n    z-index:2; }\n    .bp3-control-group .bp3-input:focus{\n      border-radius:3px;\n      z-index:14; }\n    .bp3-control-group .bp3-input[class*=\"bp3-intent\"]{\n      z-index:13; }\n      .bp3-control-group .bp3-input[class*=\"bp3-intent\"]:focus{\n        z-index:15; }\n    .bp3-control-group .bp3-input[readonly], .bp3-control-group .bp3-input:disabled, .bp3-control-group .bp3-input.bp3-disabled{\n      z-index:1; }\n  .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input{\n    z-index:13; }\n    .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input:focus{\n      z-index:15; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select select,\n  .bp3-control-group .bp3-select select{\n    -webkit-transform:translateZ(0);\n            transform:translateZ(0);\n    border-radius:inherit;\n    z-index:4; }\n    .bp3-control-group .bp3-button:focus,\n    .bp3-control-group .bp3-html-select select:focus,\n    .bp3-control-group .bp3-select select:focus{\n      z-index:5; }\n    .bp3-control-group .bp3-button:hover,\n    .bp3-control-group .bp3-html-select select:hover,\n    .bp3-control-group .bp3-select select:hover{\n      z-index:6; }\n    .bp3-control-group .bp3-button:active,\n    .bp3-control-group .bp3-html-select select:active,\n    .bp3-control-group .bp3-select select:active{\n      z-index:7; }\n    .bp3-control-group .bp3-button[readonly], .bp3-control-group .bp3-button:disabled, .bp3-control-group .bp3-button.bp3-disabled,\n    .bp3-control-group .bp3-html-select select[readonly],\n    .bp3-control-group .bp3-html-select select:disabled,\n    .bp3-control-group .bp3-html-select select.bp3-disabled,\n    .bp3-control-group .bp3-select select[readonly],\n    .bp3-control-group .bp3-select select:disabled,\n    .bp3-control-group .bp3-select select.bp3-disabled{\n      z-index:3; }\n    .bp3-control-group .bp3-button[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]{\n      z-index:9; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:focus{\n        z-index:10; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:hover{\n        z-index:11; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:active{\n        z-index:12; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"][readonly], .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:disabled, .bp3-control-group .bp3-button[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"].bp3-disabled{\n        z-index:8; }\n  .bp3-control-group .bp3-input-group > .bp3-icon,\n  .bp3-control-group .bp3-input-group > .bp3-button,\n  .bp3-control-group .bp3-input-group > .bp3-input-left-container,\n  .bp3-control-group .bp3-input-group > .bp3-input-action{\n    z-index:16; }\n  .bp3-control-group .bp3-select::after,\n  .bp3-control-group .bp3-html-select::after,\n  .bp3-control-group .bp3-select > .bp3-icon,\n  .bp3-control-group .bp3-html-select > .bp3-icon{\n    z-index:17; }\n  .bp3-control-group .bp3-select:focus-within{\n    z-index:5; }\n  .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:-1px; }\n  .bp3-control-group:not(.bp3-vertical) > .bp3-divider:not(:first-child){\n    margin-left:6px; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:0; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > .bp3-button + .bp3-button{\n    margin-left:1px; }\n  .bp3-control-group .bp3-popover-wrapper,\n  .bp3-control-group .bp3-popover-target{\n    border-radius:inherit; }\n  .bp3-control-group > :first-child{\n    border-radius:3px 0 0 3px; }\n  .bp3-control-group > :last-child{\n    border-radius:0 3px 3px 0;\n    margin-right:0; }\n  .bp3-control-group > :only-child{\n    border-radius:3px;\n    margin-right:0; }\n  .bp3-control-group .bp3-input-group .bp3-button{\n    border-radius:3px; }\n  .bp3-control-group .bp3-numeric-input:not(:first-child) .bp3-input-group{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-control-group.bp3-fill{\n    width:100%; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-fill > *:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-vertical{\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-control-group.bp3-vertical > *{\n      margin-top:-1px; }\n    .bp3-control-group.bp3-vertical > :first-child{\n      border-radius:3px 3px 0 0;\n      margin-top:0; }\n    .bp3-control-group.bp3-vertical > :last-child{\n      border-radius:0 0 3px 3px; }\n.bp3-control{\n  cursor:pointer;\n  display:block;\n  margin-bottom:10px;\n  position:relative;\n  text-transform:none; }\n  .bp3-control input:checked ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control input:checked ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control:not(.bp3-align-right){\n    padding-left:26px; }\n    .bp3-control:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-26px; }\n  .bp3-control.bp3-align-right{\n    padding-right:26px; }\n    .bp3-control.bp3-align-right .bp3-control-indicator{\n      margin-right:-26px; }\n  .bp3-control.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-control.bp3-inline{\n    display:inline-block;\n    margin-right:20px; }\n  .bp3-control input{\n    left:0;\n    opacity:0;\n    position:absolute;\n    top:0;\n    z-index:-1; }\n  .bp3-control .bp3-control-indicator{\n    background-clip:padding-box;\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    border:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    cursor:pointer;\n    display:inline-block;\n    font-size:16px;\n    height:1em;\n    margin-right:10px;\n    margin-top:-3px;\n    position:relative;\n    -webkit-user-select:none;\n       -moz-user-select:none;\n        -ms-user-select:none;\n            user-select:none;\n    vertical-align:middle;\n    width:1em; }\n    .bp3-control .bp3-control-indicator::before{\n      content:\"\";\n      display:block;\n      height:1em;\n      width:1em; }\n  .bp3-control:hover .bp3-control-indicator{\n    background-color:#ebf1f5; }\n  .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n    background:#d8e1e8;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    cursor:not-allowed; }\n  .bp3-control input:focus ~ .bp3-control-indicator{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:2px;\n    -moz-outline-radius:6px; }\n  .bp3-control.bp3-align-right .bp3-control-indicator{\n    float:right;\n    margin-left:10px;\n    margin-top:1px; }\n  .bp3-control.bp3-large{\n    font-size:16px; }\n    .bp3-control.bp3-large:not(.bp3-align-right){\n      padding-left:30px; }\n      .bp3-control.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n        margin-left:-30px; }\n    .bp3-control.bp3-large.bp3-align-right{\n      padding-right:30px; }\n      .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n        margin-right:-30px; }\n    .bp3-control.bp3-large .bp3-control-indicator{\n      font-size:20px; }\n    .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-top:0; }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control.bp3-checkbox .bp3-control-indicator{\n    border-radius:3px; }\n  .bp3-control.bp3-checkbox input:checked ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0012 5z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-radio .bp3-control-indicator{\n    border-radius:50%; }\n  .bp3-control.bp3-radio input:checked ~ .bp3-control-indicator::before{\n    background-image:radial-gradient(#ffffff, #ffffff 28%, transparent 32%); }\n  .bp3-control.bp3-radio input:checked:disabled ~ .bp3-control-indicator::before{\n    opacity:0.5; }\n  .bp3-control.bp3-radio input:focus ~ .bp3-control-indicator{\n    -moz-outline-radius:16px; }\n  .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(167, 182, 194, 0.5); }\n  .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(115, 134, 148, 0.5); }\n  .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(92, 112, 128, 0.5); }\n  .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5); }\n    .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5); }\n    .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch:not(.bp3-align-right){\n    padding-left:38px; }\n    .bp3-control.bp3-switch:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-38px; }\n  .bp3-control.bp3-switch.bp3-align-right{\n    padding-right:38px; }\n    .bp3-control.bp3-switch.bp3-align-right .bp3-control-indicator{\n      margin-right:-38px; }\n  .bp3-control.bp3-switch .bp3-control-indicator{\n    border:none;\n    border-radius:1.75em;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important;\n    min-width:1.75em;\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:auto; }\n    .bp3-control.bp3-switch .bp3-control-indicator::before{\n      background:#ffffff;\n      border-radius:50%;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n      height:calc(1em - 4px);\n      left:0;\n      margin:2px;\n      position:absolute;\n      -webkit-transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      width:calc(1em - 4px); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    left:calc(100% - 1em); }\n  .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right){\n    padding-left:45px; }\n    .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-45px; }\n  .bp3-control.bp3-switch.bp3-large.bp3-align-right{\n    padding-right:45px; }\n    .bp3-control.bp3-switch.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-right:-45px; }\n  .bp3-dark .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.7); }\n  .bp3-dark .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.9); }\n  .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(57, 75, 89, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-dark .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch .bp3-control-indicator::before{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-control.bp3-switch .bp3-switch-inner-text{\n    font-size:0.7em;\n    text-align:center; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:first-child{\n    line-height:0;\n    margin-left:0.5em;\n    margin-right:1.2em;\n    visibility:hidden; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:last-child{\n    line-height:1em;\n    margin-left:1.2em;\n    margin-right:0.5em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:first-child{\n    line-height:1em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:last-child{\n    line-height:0;\n    visibility:hidden; }\n  .bp3-dark .bp3-control{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-control.bp3-disabled{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-control .bp3-control-indicator{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-control:hover .bp3-control-indicator{\n      background-color:#30404d; }\n    .bp3-dark .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n      background:#202b33;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-control input:disabled ~ .bp3-control-indicator{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      cursor:not-allowed; }\n    .bp3-dark .bp3-control.bp3-checkbox input:disabled:checked ~ .bp3-control-indicator, .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-file-input{\n  cursor:pointer;\n  display:inline-block;\n  height:30px;\n  position:relative; }\n  .bp3-file-input input{\n    margin:0;\n    min-width:200px;\n    opacity:0; }\n    .bp3-file-input input:disabled + .bp3-file-upload-input,\n    .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n      background:rgba(206, 217, 224, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      resize:none; }\n      .bp3-file-input input:disabled + .bp3-file-upload-input::after,\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n        background-color:rgba(206, 217, 224, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(92, 112, 128, 0.6);\n        cursor:not-allowed;\n        outline:none; }\n        .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active:hover,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active:hover{\n          background:rgba(206, 217, 224, 0.7); }\n      .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input, .bp3-dark\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n        background:rgba(57, 75, 89, 0.5);\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after, .bp3-dark\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n          background-color:rgba(57, 75, 89, 0.5);\n          background-image:none;\n          -webkit-box-shadow:none;\n                  box-shadow:none;\n          color:rgba(167, 182, 194, 0.6); }\n          .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-dark\n          .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active{\n            background:rgba(57, 75, 89, 0.7); }\n  .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#182026; }\n  .bp3-dark .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#f5f8fa; }\n  .bp3-file-input.bp3-fill{\n    width:100%; }\n  .bp3-file-input.bp3-large,\n  .bp3-large .bp3-file-input{\n    height:40px; }\n  .bp3-file-input .bp3-file-upload-input-custom-text::after{\n    content:attr(bp3-button-text); }\n\n.bp3-file-upload-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle;\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:rgba(92, 112, 128, 0.6);\n  left:0;\n  padding-right:80px;\n  position:absolute;\n  right:0;\n  top:0;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-file-upload-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:focus, .bp3-file-upload-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-file-upload-input[type=\"search\"], .bp3-file-upload-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-file-upload-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-file-upload-input:disabled, .bp3-file-upload-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-file-upload-input::after{\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026;\n    min-height:24px;\n    min-width:24px;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    border-radius:3px;\n    content:\"Browse\";\n    line-height:24px;\n    margin:3px;\n    position:absolute;\n    right:0;\n    text-align:center;\n    top:0;\n    width:70px; }\n    .bp3-file-upload-input::after:hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-file-upload-input::after:active, .bp3-file-upload-input::after.bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-file-upload-input::after:disabled, .bp3-file-upload-input::after.bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-file-upload-input::after:disabled.bp3-active, .bp3-file-upload-input::after:disabled.bp3-active:hover, .bp3-file-upload-input::after.bp3-disabled.bp3-active, .bp3-file-upload-input::after.bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-file-upload-input:hover::after{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-file-upload-input:active::after{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-large .bp3-file-upload-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px;\n    padding-right:95px; }\n    .bp3-large .bp3-file-upload-input[type=\"search\"], .bp3-large .bp3-file-upload-input.bp3-round{\n      padding:0 15px; }\n    .bp3-large .bp3-file-upload-input::after{\n      min-height:30px;\n      min-width:30px;\n      line-height:30px;\n      margin:5px;\n      width:85px; }\n  .bp3-dark .bp3-file-upload-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:disabled, .bp3-dark .bp3-file-upload-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::after{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n      color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover, .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover{\n        background-color:#30404d;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        background-color:#202b33;\n        background-image:none;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n      .bp3-dark .bp3-file-upload-input::after:disabled, .bp3-dark .bp3-file-upload-input::after.bp3-disabled{\n        background-color:rgba(57, 75, 89, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-upload-input::after:disabled.bp3-active, .bp3-dark .bp3-file-upload-input::after.bp3-disabled.bp3-active{\n          background:rgba(57, 75, 89, 0.7); }\n      .bp3-dark .bp3-file-upload-input::after .bp3-button-spinner .bp3-spinner-head{\n        background:rgba(16, 22, 26, 0.5);\n        stroke:#8a9ba8; }\n    .bp3-dark .bp3-file-upload-input:hover::after{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:active::after{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n.bp3-file-upload-input::after{\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n.bp3-form-group{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0 0 15px; }\n  .bp3-form-group label.bp3-label{\n    margin-bottom:5px; }\n  .bp3-form-group .bp3-control{\n    margin-top:7px; }\n  .bp3-form-group .bp3-form-helper-text{\n    color:#5c7080;\n    font-size:12px;\n    margin-top:5px; }\n  .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#106ba3; }\n  .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#0d8050; }\n  .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#bf7326; }\n  .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#c23030; }\n  .bp3-form-group.bp3-inline{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row; }\n    .bp3-form-group.bp3-inline.bp3-large label.bp3-label{\n      line-height:40px;\n      margin:0 10px 0 0; }\n    .bp3-form-group.bp3-inline label.bp3-label{\n      line-height:30px;\n      margin:0 10px 0 0; }\n  .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-dark .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#48aff0; }\n  .bp3-dark .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#3dcc91; }\n  .bp3-dark .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#ffb366; }\n  .bp3-dark .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#ff7373; }\n  .bp3-dark .bp3-form-group .bp3-form-helper-text{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(167, 182, 194, 0.6) !important; }\n.bp3-input-group{\n  display:block;\n  position:relative; }\n  .bp3-input-group .bp3-input{\n    position:relative;\n    width:100%; }\n    .bp3-input-group .bp3-input:not(:first-child){\n      padding-left:30px; }\n    .bp3-input-group .bp3-input:not(:last-child){\n      padding-right:30px; }\n  .bp3-input-group .bp3-input-action,\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-button,\n  .bp3-input-group > .bp3-icon{\n    position:absolute;\n    top:0; }\n    .bp3-input-group .bp3-input-action:first-child,\n    .bp3-input-group > .bp3-input-left-container:first-child,\n    .bp3-input-group > .bp3-button:first-child,\n    .bp3-input-group > .bp3-icon:first-child{\n      left:0; }\n    .bp3-input-group .bp3-input-action:last-child,\n    .bp3-input-group > .bp3-input-left-container:last-child,\n    .bp3-input-group > .bp3-button:last-child,\n    .bp3-input-group > .bp3-icon:last-child{\n      right:0; }\n  .bp3-input-group .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    margin:3px;\n    padding:0 7px; }\n    .bp3-input-group .bp3-button:empty{\n      padding:0; }\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-icon{\n    z-index:1; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon{\n    color:#5c7080; }\n    .bp3-input-group > .bp3-input-left-container > .bp3-icon:empty,\n    .bp3-input-group > .bp3-icon:empty{\n      font-family:\"Icons16\", sans-serif;\n      font-size:16px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon,\n  .bp3-input-group .bp3-input-action > .bp3-spinner{\n    margin:7px; }\n  .bp3-input-group .bp3-tag{\n    margin:5px; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus),\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n    color:#5c7080; }\n    .bp3-dark .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus), .bp3-dark\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n      color:#a7b6c2; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large{\n      color:#5c7080; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled,\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled{\n    color:rgba(92, 112, 128, 0.6) !important; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-large{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-input-group.bp3-disabled{\n    cursor:not-allowed; }\n    .bp3-input-group.bp3-disabled .bp3-icon{\n      color:rgba(92, 112, 128, 0.6); }\n  .bp3-input-group.bp3-large .bp3-button{\n    min-height:30px;\n    min-width:30px;\n    margin:5px; }\n  .bp3-input-group.bp3-large > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-large > .bp3-icon,\n  .bp3-input-group.bp3-large .bp3-input-action > .bp3-spinner{\n    margin:12px; }\n  .bp3-input-group.bp3-large .bp3-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input-group.bp3-large .bp3-input[type=\"search\"], .bp3-input-group.bp3-large .bp3-input.bp3-round{\n      padding:0 15px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:first-child){\n      padding-left:40px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:last-child){\n      padding-right:40px; }\n  .bp3-input-group.bp3-small .bp3-button{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small .bp3-tag{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-small > .bp3-icon,\n  .bp3-input-group.bp3-small .bp3-input-action > .bp3-spinner{\n    margin:4px; }\n  .bp3-input-group.bp3-small .bp3-input{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input-group.bp3-small .bp3-input[type=\"search\"], .bp3-input-group.bp3-small .bp3-input.bp3-round{\n      padding:0 12px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:first-child){\n      padding-left:24px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:last-child){\n      padding-right:24px; }\n  .bp3-input-group.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-input-group.bp3-round .bp3-button,\n  .bp3-input-group.bp3-round .bp3-input,\n  .bp3-input-group.bp3-round .bp3-tag{\n    border-radius:30px; }\n  .bp3-dark .bp3-input-group .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-input-group.bp3-disabled .bp3-icon{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-input-group.bp3-intent-primary .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input-group.bp3-intent-primary .bp3-input:disabled, .bp3-input-group.bp3-intent-primary .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-primary > .bp3-icon{\n    color:#106ba3; }\n    .bp3-dark .bp3-input-group.bp3-intent-primary > .bp3-icon{\n      color:#48aff0; }\n  .bp3-input-group.bp3-intent-success .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input-group.bp3-intent-success .bp3-input:disabled, .bp3-input-group.bp3-intent-success .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-success > .bp3-icon{\n    color:#0d8050; }\n    .bp3-dark .bp3-input-group.bp3-intent-success > .bp3-icon{\n      color:#3dcc91; }\n  .bp3-input-group.bp3-intent-warning .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input-group.bp3-intent-warning .bp3-input:disabled, .bp3-input-group.bp3-intent-warning .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-warning > .bp3-icon{\n    color:#bf7326; }\n    .bp3-dark .bp3-input-group.bp3-intent-warning > .bp3-icon{\n      color:#ffb366; }\n  .bp3-input-group.bp3-intent-danger .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input-group.bp3-intent-danger .bp3-input:disabled, .bp3-input-group.bp3-intent-danger .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-danger > .bp3-icon{\n    color:#c23030; }\n    .bp3-dark .bp3-input-group.bp3-intent-danger > .bp3-icon{\n      color:#ff7373; }\n.bp3-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle; }\n  .bp3-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:focus, .bp3-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-input[type=\"search\"], .bp3-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-input:disabled, .bp3-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-input.bp3-large{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input.bp3-large[type=\"search\"], .bp3-input.bp3-large.bp3-round{\n      padding:0 15px; }\n  .bp3-input.bp3-small{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input.bp3-small[type=\"search\"], .bp3-input.bp3-small.bp3-round{\n      padding:0 12px; }\n  .bp3-input.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-dark .bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input:disabled, .bp3-dark .bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-input.bp3-intent-primary{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input.bp3-intent-primary:disabled, .bp3-input.bp3-intent-primary.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary:focus{\n        -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n                box-shadow:inset 0 0 0 1px #137cbd; }\n      .bp3-dark .bp3-input.bp3-intent-primary:disabled, .bp3-dark .bp3-input.bp3-intent-primary.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-success{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input.bp3-intent-success:disabled, .bp3-input.bp3-intent-success.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success:focus{\n        -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n                box-shadow:inset 0 0 0 1px #0f9960; }\n      .bp3-dark .bp3-input.bp3-intent-success:disabled, .bp3-dark .bp3-input.bp3-intent-success.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-warning{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input.bp3-intent-warning:disabled, .bp3-input.bp3-intent-warning.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning:focus{\n        -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n                box-shadow:inset 0 0 0 1px #d9822b; }\n      .bp3-dark .bp3-input.bp3-intent-warning:disabled, .bp3-dark .bp3-input.bp3-intent-warning.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-danger{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input.bp3-intent-danger:disabled, .bp3-input.bp3-intent-danger.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger:focus{\n        -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #db3737;\n                box-shadow:inset 0 0 0 1px #db3737; }\n      .bp3-dark .bp3-input.bp3-intent-danger:disabled, .bp3-dark .bp3-input.bp3-intent-danger.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input::-ms-clear{\n    display:none; }\ntextarea.bp3-input{\n  max-width:100%;\n  padding:10px; }\n  textarea.bp3-input, textarea.bp3-input.bp3-large, textarea.bp3-input.bp3-small{\n    height:auto;\n    line-height:inherit; }\n  textarea.bp3-input.bp3-small{\n    padding:8px; }\n  .bp3-dark textarea.bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark textarea.bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input:disabled, .bp3-dark textarea.bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\nlabel.bp3-label{\n  display:block;\n  margin-bottom:15px;\n  margin-top:0; }\n  label.bp3-label .bp3-html-select,\n  label.bp3-label .bp3-input,\n  label.bp3-label .bp3-select,\n  label.bp3-label .bp3-slider,\n  label.bp3-label .bp3-popover-wrapper{\n    display:block;\n    margin-top:5px;\n    text-transform:none; }\n  label.bp3-label .bp3-button-group{\n    margin-top:5px; }\n  label.bp3-label .bp3-select select,\n  label.bp3-label .bp3-html-select select{\n    font-weight:400;\n    vertical-align:top;\n    width:100%; }\n  label.bp3-label.bp3-disabled,\n  label.bp3-label.bp3-disabled .bp3-text-muted{\n    color:rgba(92, 112, 128, 0.6); }\n  label.bp3-label.bp3-inline{\n    line-height:30px; }\n    label.bp3-label.bp3-inline .bp3-html-select,\n    label.bp3-label.bp3-inline .bp3-input,\n    label.bp3-label.bp3-inline .bp3-input-group,\n    label.bp3-label.bp3-inline .bp3-select,\n    label.bp3-label.bp3-inline .bp3-popover-wrapper{\n      display:inline-block;\n      margin:0 0 0 5px;\n      vertical-align:top; }\n    label.bp3-label.bp3-inline .bp3-button-group{\n      margin:0 0 0 5px; }\n    label.bp3-label.bp3-inline .bp3-input-group .bp3-input{\n      margin-left:0; }\n    label.bp3-label.bp3-inline.bp3-large{\n      line-height:40px; }\n  label.bp3-label:not(.bp3-inline) .bp3-popover-target{\n    display:block; }\n  .bp3-dark label.bp3-label{\n    color:#f5f8fa; }\n    .bp3-dark label.bp3-label.bp3-disabled,\n    .bp3-dark label.bp3-label.bp3-disabled .bp3-text-muted{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 14px;\n          flex:1 1 14px;\n  min-height:0;\n  padding:0;\n  width:30px; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:first-child{\n    border-radius:0 3px 0 0; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:last-child{\n    border-radius:0 0 3px 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:first-child{\n  border-radius:3px 0 0 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:last-child{\n  border-radius:0 0 0 3px; }\n\n.bp3-numeric-input.bp3-large .bp3-button-group.bp3-vertical > .bp3-button{\n  width:40px; }\n\nform{\n  display:block; }\n.bp3-html-select select,\n.bp3-select select{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  -moz-appearance:none;\n  -webkit-appearance:none;\n  border-radius:3px;\n  height:30px;\n  padding:0 25px 0 10px;\n  width:100%; }\n  .bp3-html-select select > *, .bp3-select select > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-html-select select > .bp3-fill, .bp3-select select > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-html-select select::before,\n  .bp3-select select::before, .bp3-html-select select > *, .bp3-select select > *{\n    margin-right:7px; }\n  .bp3-html-select select:empty::before,\n  .bp3-select select:empty::before,\n  .bp3-html-select select > :last-child,\n  .bp3-select select > :last-child{\n    margin-right:0; }\n  .bp3-html-select select:hover,\n  .bp3-select select:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-html-select select:active,\n  .bp3-select select:active, .bp3-html-select select.bp3-active,\n  .bp3-select select.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-html-select select:disabled,\n  .bp3-select select:disabled, .bp3-html-select select.bp3-disabled,\n  .bp3-select select.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-html-select select:disabled.bp3-active,\n    .bp3-select select:disabled.bp3-active, .bp3-html-select select:disabled.bp3-active:hover,\n    .bp3-select select:disabled.bp3-active:hover, .bp3-html-select select.bp3-disabled.bp3-active,\n    .bp3-select select.bp3-disabled.bp3-active, .bp3-html-select select.bp3-disabled.bp3-active:hover,\n    .bp3-select select.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n\n.bp3-html-select.bp3-minimal select,\n.bp3-select.bp3-minimal select{\n  background:none;\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  .bp3-html-select.bp3-minimal select:hover,\n  .bp3-select.bp3-minimal select:hover{\n    background:rgba(167, 182, 194, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026;\n    text-decoration:none; }\n  .bp3-html-select.bp3-minimal select:active,\n  .bp3-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal select.bp3-active,\n  .bp3-select.bp3-minimal select.bp3-active{\n    background:rgba(115, 134, 148, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026; }\n  .bp3-html-select.bp3-minimal select:disabled,\n  .bp3-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal select:disabled:hover,\n  .bp3-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal select.bp3-disabled,\n  .bp3-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal select.bp3-disabled:hover,\n  .bp3-select.bp3-minimal select.bp3-disabled:hover{\n    background:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n    .bp3-html-select.bp3-minimal select:disabled.bp3-active,\n    .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active{\n      background:rgba(115, 134, 148, 0.3); }\n  .bp3-dark .bp3-html-select.bp3-minimal select, .bp3-html-select.bp3-minimal .bp3-dark select,\n  .bp3-dark .bp3-select.bp3-minimal select, .bp3-select.bp3-minimal .bp3-dark select{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover, .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover{\n      background:rgba(138, 155, 168, 0.15); }\n    .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:rgba(138, 155, 168, 0.3);\n      color:#f5f8fa; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal .bp3-dark select:disabled,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled, .bp3-select.bp3-minimal .bp3-dark select:disabled, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled:hover, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover{\n      background:none;\n      color:rgba(167, 182, 194, 0.6);\n      cursor:not-allowed; }\n      .bp3-dark .bp3-html-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active{\n        background:rgba(138, 155, 168, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-primary,\n  .bp3-select.bp3-minimal select.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover{\n      background:rgba(19, 124, 189, 0.15);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:rgba(19, 124, 189, 0.3);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled{\n      background:none;\n      color:rgba(16, 107, 163, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active{\n        background:rgba(19, 124, 189, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n      stroke:#106ba3; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary{\n      color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.2);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(72, 175, 240, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-success,\n  .bp3-select.bp3-minimal select.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover{\n      background:rgba(15, 153, 96, 0.15);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:rgba(15, 153, 96, 0.3);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled{\n      background:none;\n      color:rgba(13, 128, 80, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active{\n        background:rgba(15, 153, 96, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n      stroke:#0d8050; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success{\n      color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.2);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(61, 204, 145, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-warning,\n  .bp3-select.bp3-minimal select.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover{\n      background:rgba(217, 130, 43, 0.15);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:rgba(217, 130, 43, 0.3);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled{\n      background:none;\n      color:rgba(191, 115, 38, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active{\n        background:rgba(217, 130, 43, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n      stroke:#bf7326; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning{\n      color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.2);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(255, 179, 102, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-danger,\n  .bp3-select.bp3-minimal select.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover{\n      background:rgba(219, 55, 55, 0.15);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:rgba(219, 55, 55, 0.3);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled{\n      background:none;\n      color:rgba(194, 48, 48, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active{\n        background:rgba(219, 55, 55, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n      stroke:#c23030; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger{\n      color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.2);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(255, 115, 115, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n\n.bp3-html-select.bp3-large select,\n.bp3-select.bp3-large select{\n  font-size:16px;\n  height:40px;\n  padding-right:35px; }\n\n.bp3-dark .bp3-html-select select, .bp3-dark .bp3-select select{\n  background-color:#394b59;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n  color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover, .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    background-color:#202b33;\n    background-image:none;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-html-select select:disabled, .bp3-dark .bp3-select select:disabled, .bp3-dark .bp3-html-select select.bp3-disabled, .bp3-dark .bp3-select select.bp3-disabled{\n    background-color:rgba(57, 75, 89, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-html-select select:disabled.bp3-active, .bp3-dark .bp3-select select:disabled.bp3-active, .bp3-dark .bp3-html-select select.bp3-disabled.bp3-active, .bp3-dark .bp3-select select.bp3-disabled.bp3-active{\n      background:rgba(57, 75, 89, 0.7); }\n  .bp3-dark .bp3-html-select select .bp3-button-spinner .bp3-spinner-head, .bp3-dark .bp3-select select .bp3-button-spinner .bp3-spinner-head{\n    background:rgba(16, 22, 26, 0.5);\n    stroke:#8a9ba8; }\n\n.bp3-html-select select:disabled,\n.bp3-select select:disabled{\n  background-color:rgba(206, 217, 224, 0.5);\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-html-select .bp3-icon,\n.bp3-select .bp3-icon, .bp3-select::after{\n  color:#5c7080;\n  pointer-events:none;\n  position:absolute;\n  right:7px;\n  top:7px; }\n  .bp3-html-select .bp3-disabled.bp3-icon,\n  .bp3-select .bp3-disabled.bp3-icon, .bp3-disabled.bp3-select::after{\n    color:rgba(92, 112, 128, 0.6); }\n.bp3-html-select,\n.bp3-select{\n  display:inline-block;\n  letter-spacing:normal;\n  position:relative;\n  vertical-align:middle; }\n  .bp3-html-select select::-ms-expand,\n  .bp3-select select::-ms-expand{\n    display:none; }\n  .bp3-html-select .bp3-icon,\n  .bp3-select .bp3-icon{\n    color:#5c7080; }\n    .bp3-html-select .bp3-icon:hover,\n    .bp3-select .bp3-icon:hover{\n      color:#182026; }\n    .bp3-dark .bp3-html-select .bp3-icon, .bp3-dark\n    .bp3-select .bp3-icon{\n      color:#a7b6c2; }\n      .bp3-dark .bp3-html-select .bp3-icon:hover, .bp3-dark\n      .bp3-select .bp3-icon:hover{\n        color:#f5f8fa; }\n  .bp3-html-select.bp3-large::after,\n  .bp3-html-select.bp3-large .bp3-icon,\n  .bp3-select.bp3-large::after,\n  .bp3-select.bp3-large .bp3-icon{\n    right:12px;\n    top:12px; }\n  .bp3-html-select.bp3-fill,\n  .bp3-html-select.bp3-fill select,\n  .bp3-select.bp3-fill,\n  .bp3-select.bp3-fill select{\n    width:100%; }\n  .bp3-dark .bp3-html-select option, .bp3-dark\n  .bp3-select option{\n    background-color:#30404d;\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select option:disabled, .bp3-dark\n  .bp3-select option:disabled{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-html-select::after, .bp3-dark\n  .bp3-select::after{\n    color:#a7b6c2; }\n\n.bp3-select::after{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  content:\"\"; }\n.bp3-running-text table, table.bp3-html-table{\n  border-spacing:0;\n  font-size:14px; }\n  .bp3-running-text table th, table.bp3-html-table th,\n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    padding:11px;\n    text-align:left;\n    vertical-align:top; }\n  .bp3-running-text table th, table.bp3-html-table th{\n    color:#182026;\n    font-weight:600; }\n  \n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    color:#182026; }\n  .bp3-running-text table tbody tr:first-child th, table.bp3-html-table tbody tr:first-child th,\n  .bp3-running-text table tbody tr:first-child td,\n  table.bp3-html-table tbody tr:first-child td,\n  .bp3-running-text table tfoot tr:first-child th,\n  table.bp3-html-table tfoot tr:first-child th,\n  .bp3-running-text table tfoot tr:first-child td,\n  table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-running-text table th, .bp3-running-text .bp3-dark table th, .bp3-dark table.bp3-html-table th{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table td, .bp3-running-text .bp3-dark table td, .bp3-dark table.bp3-html-table td{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table tbody tr:first-child th, .bp3-running-text .bp3-dark table tbody tr:first-child th, .bp3-dark table.bp3-html-table tbody tr:first-child th,\n  .bp3-dark .bp3-running-text table tbody tr:first-child td,\n  .bp3-running-text .bp3-dark table tbody tr:first-child td,\n  .bp3-dark table.bp3-html-table tbody tr:first-child td,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child th,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child th,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child th,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child td,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child td,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-condensed th,\ntable.bp3-html-table.bp3-html-table-condensed td, table.bp3-html-table.bp3-small th,\ntable.bp3-html-table.bp3-small td{\n  padding-bottom:6px;\n  padding-top:6px; }\n\ntable.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n  background:rgba(191, 204, 214, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n  -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered tbody tr td,\ntable.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n  -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n  table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n    -webkit-box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-interactive tbody tr:hover td{\n  background-color:rgba(191, 204, 214, 0.3);\n  cursor:pointer; }\n\ntable.bp3-html-table.bp3-interactive tbody tr:active td{\n  background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-dark table.bp3-html-table{ }\n  .bp3-dark table.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n    background:rgba(92, 112, 128, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td,\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n      -webkit-box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15);\n              box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:first-child{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:hover td{\n    background-color:rgba(92, 112, 128, 0.3);\n    cursor:pointer; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:active td{\n    background-color:rgba(92, 112, 128, 0.4); }\n\n.bp3-key-combo{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center; }\n  .bp3-key-combo > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-key-combo > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-key-combo::before,\n  .bp3-key-combo > *{\n    margin-right:5px; }\n  .bp3-key-combo:empty::before,\n  .bp3-key-combo > :last-child{\n    margin-right:0; }\n\n.bp3-hotkey-dialog{\n  padding-bottom:0;\n  top:40px; }\n  .bp3-hotkey-dialog .bp3-dialog-body{\n    margin:0;\n    padding:0; }\n  .bp3-hotkey-dialog .bp3-hotkey-label{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1; }\n\n.bp3-hotkey-column{\n  margin:auto;\n  max-height:80vh;\n  overflow-y:auto;\n  padding:30px; }\n  .bp3-hotkey-column .bp3-heading{\n    margin-bottom:20px; }\n    .bp3-hotkey-column .bp3-heading:not(:first-child){\n      margin-top:40px; }\n\n.bp3-hotkey{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:justify;\n      -ms-flex-pack:justify;\n          justify-content:space-between;\n  margin-left:0;\n  margin-right:0; }\n  .bp3-hotkey:not(:last-child){\n    margin-bottom:10px; }\n.bp3-icon{\n  display:inline-block;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  vertical-align:text-bottom; }\n  .bp3-icon:not(:empty)::before{\n    content:\"\" !important;\n    content:unset !important; }\n  .bp3-icon > svg{\n    display:block; }\n    .bp3-icon > svg:not([fill]){\n      fill:currentColor; }\n\n.bp3-icon.bp3-intent-primary, .bp3-icon-standard.bp3-intent-primary, .bp3-icon-large.bp3-intent-primary{\n  color:#106ba3; }\n  .bp3-dark .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-icon-large.bp3-intent-primary{\n    color:#48aff0; }\n\n.bp3-icon.bp3-intent-success, .bp3-icon-standard.bp3-intent-success, .bp3-icon-large.bp3-intent-success{\n  color:#0d8050; }\n  .bp3-dark .bp3-icon.bp3-intent-success, .bp3-dark .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-icon-large.bp3-intent-success{\n    color:#3dcc91; }\n\n.bp3-icon.bp3-intent-warning, .bp3-icon-standard.bp3-intent-warning, .bp3-icon-large.bp3-intent-warning{\n  color:#bf7326; }\n  .bp3-dark .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-icon-large.bp3-intent-warning{\n    color:#ffb366; }\n\n.bp3-icon.bp3-intent-danger, .bp3-icon-standard.bp3-intent-danger, .bp3-icon-large.bp3-intent-danger{\n  color:#c23030; }\n  .bp3-dark .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-icon-large.bp3-intent-danger{\n    color:#ff7373; }\n\nspan.bp3-icon-standard{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon-large{\n  font-family:\"Icons20\", sans-serif;\n  font-size:20px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon:empty{\n  font-family:\"Icons20\";\n  font-size:inherit;\n  font-style:normal;\n  font-weight:400;\n  line-height:1; }\n  span.bp3-icon:empty::before{\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased; }\n\n.bp3-icon-add::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-artifact::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-folder::before{\n  content:\"\"; }\n\n.bp3-icon-airplane::before{\n  content:\"\"; }\n\n.bp3-icon-align-center::before{\n  content:\"\"; }\n\n.bp3-icon-align-justify::before{\n  content:\"\"; }\n\n.bp3-icon-align-left::before{\n  content:\"\"; }\n\n.bp3-icon-align-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-horizontal-center::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-left::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-top::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-vertical-center::before{\n  content:\"\"; }\n\n.bp3-icon-annotation::before{\n  content:\"\"; }\n\n.bp3-icon-application::before{\n  content:\"\"; }\n\n.bp3-icon-applications::before{\n  content:\"\"; }\n\n.bp3-icon-archive::before{\n  content:\"\"; }\n\n.bp3-icon-arrow-bottom-left::before{\n  content:\"↙\"; }\n\n.bp3-icon-arrow-bottom-right::before{\n  content:\"↘\"; }\n\n.bp3-icon-arrow-down::before{\n  content:\"↓\"; }\n\n.bp3-icon-arrow-left::before{\n  content:\"←\"; }\n\n.bp3-icon-arrow-right::before{\n  content:\"→\"; }\n\n.bp3-icon-arrow-top-left::before{\n  content:\"↖\"; }\n\n.bp3-icon-arrow-top-right::before{\n  content:\"↗\"; }\n\n.bp3-icon-arrow-up::before{\n  content:\"↑\"; }\n\n.bp3-icon-arrows-horizontal::before{\n  content:\"↔\"; }\n\n.bp3-icon-arrows-vertical::before{\n  content:\"↕\"; }\n\n.bp3-icon-asterisk::before{\n  content:\"*\"; }\n\n.bp3-icon-automatic-updates::before{\n  content:\"\"; }\n\n.bp3-icon-badge::before{\n  content:\"\"; }\n\n.bp3-icon-ban-circle::before{\n  content:\"\"; }\n\n.bp3-icon-bank-account::before{\n  content:\"\"; }\n\n.bp3-icon-barcode::before{\n  content:\"\"; }\n\n.bp3-icon-blank::before{\n  content:\"\"; }\n\n.bp3-icon-blocked-person::before{\n  content:\"\"; }\n\n.bp3-icon-bold::before{\n  content:\"\"; }\n\n.bp3-icon-book::before{\n  content:\"\"; }\n\n.bp3-icon-bookmark::before{\n  content:\"\"; }\n\n.bp3-icon-box::before{\n  content:\"\"; }\n\n.bp3-icon-briefcase::before{\n  content:\"\"; }\n\n.bp3-icon-bring-data::before{\n  content:\"\"; }\n\n.bp3-icon-build::before{\n  content:\"\"; }\n\n.bp3-icon-calculator::before{\n  content:\"\"; }\n\n.bp3-icon-calendar::before{\n  content:\"\"; }\n\n.bp3-icon-camera::before{\n  content:\"\"; }\n\n.bp3-icon-caret-down::before{\n  content:\"⌄\"; }\n\n.bp3-icon-caret-left::before{\n  content:\"〈\"; }\n\n.bp3-icon-caret-right::before{\n  content:\"〉\"; }\n\n.bp3-icon-caret-up::before{\n  content:\"⌃\"; }\n\n.bp3-icon-cell-tower::before{\n  content:\"\"; }\n\n.bp3-icon-changes::before{\n  content:\"\"; }\n\n.bp3-icon-chart::before{\n  content:\"\"; }\n\n.bp3-icon-chat::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-backward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-forward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-circle::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-down::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-left::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-right::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-up::before{\n  content:\"\"; }\n\n.bp3-icon-citation::before{\n  content:\"\"; }\n\n.bp3-icon-clean::before{\n  content:\"\"; }\n\n.bp3-icon-clipboard::before{\n  content:\"\"; }\n\n.bp3-icon-cloud::before{\n  content:\"☁\"; }\n\n.bp3-icon-cloud-download::before{\n  content:\"\"; }\n\n.bp3-icon-cloud-upload::before{\n  content:\"\"; }\n\n.bp3-icon-code::before{\n  content:\"\"; }\n\n.bp3-icon-code-block::before{\n  content:\"\"; }\n\n.bp3-icon-cog::before{\n  content:\"\"; }\n\n.bp3-icon-collapse-all::before{\n  content:\"\"; }\n\n.bp3-icon-column-layout::before{\n  content:\"\"; }\n\n.bp3-icon-comment::before{\n  content:\"\"; }\n\n.bp3-icon-comparison::before{\n  content:\"\"; }\n\n.bp3-icon-compass::before{\n  content:\"\"; }\n\n.bp3-icon-compressed::before{\n  content:\"\"; }\n\n.bp3-icon-confirm::before{\n  content:\"\"; }\n\n.bp3-icon-console::before{\n  content:\"\"; }\n\n.bp3-icon-contrast::before{\n  content:\"\"; }\n\n.bp3-icon-control::before{\n  content:\"\"; }\n\n.bp3-icon-credit-card::before{\n  content:\"\"; }\n\n.bp3-icon-cross::before{\n  content:\"✗\"; }\n\n.bp3-icon-crown::before{\n  content:\"\"; }\n\n.bp3-icon-cube::before{\n  content:\"\"; }\n\n.bp3-icon-cube-add::before{\n  content:\"\"; }\n\n.bp3-icon-cube-remove::before{\n  content:\"\"; }\n\n.bp3-icon-curved-range-chart::before{\n  content:\"\"; }\n\n.bp3-icon-cut::before{\n  content:\"\"; }\n\n.bp3-icon-dashboard::before{\n  content:\"\"; }\n\n.bp3-icon-data-lineage::before{\n  content:\"\"; }\n\n.bp3-icon-database::before{\n  content:\"\"; }\n\n.bp3-icon-delete::before{\n  content:\"\"; }\n\n.bp3-icon-delta::before{\n  content:\"Δ\"; }\n\n.bp3-icon-derive-column::before{\n  content:\"\"; }\n\n.bp3-icon-desktop::before{\n  content:\"\"; }\n\n.bp3-icon-diagnosis::before{\n  content:\"\"; }\n\n.bp3-icon-diagram-tree::before{\n  content:\"\"; }\n\n.bp3-icon-direction-left::before{\n  content:\"\"; }\n\n.bp3-icon-direction-right::before{\n  content:\"\"; }\n\n.bp3-icon-disable::before{\n  content:\"\"; }\n\n.bp3-icon-document::before{\n  content:\"\"; }\n\n.bp3-icon-document-open::before{\n  content:\"\"; }\n\n.bp3-icon-document-share::before{\n  content:\"\"; }\n\n.bp3-icon-dollar::before{\n  content:\"$\"; }\n\n.bp3-icon-dot::before{\n  content:\"•\"; }\n\n.bp3-icon-double-caret-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-double-caret-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-doughnut-chart::before{\n  content:\"\"; }\n\n.bp3-icon-download::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-draw::before{\n  content:\"\"; }\n\n.bp3-icon-drive-time::before{\n  content:\"\"; }\n\n.bp3-icon-duplicate::before{\n  content:\"\"; }\n\n.bp3-icon-edit::before{\n  content:\"✎\"; }\n\n.bp3-icon-eject::before{\n  content:\"⏏\"; }\n\n.bp3-icon-endorsed::before{\n  content:\"\"; }\n\n.bp3-icon-envelope::before{\n  content:\"✉\"; }\n\n.bp3-icon-equals::before{\n  content:\"\"; }\n\n.bp3-icon-eraser::before{\n  content:\"\"; }\n\n.bp3-icon-error::before{\n  content:\"\"; }\n\n.bp3-icon-euro::before{\n  content:\"€\"; }\n\n.bp3-icon-exchange::before{\n  content:\"\"; }\n\n.bp3-icon-exclude-row::before{\n  content:\"\"; }\n\n.bp3-icon-expand-all::before{\n  content:\"\"; }\n\n.bp3-icon-export::before{\n  content:\"\"; }\n\n.bp3-icon-eye-off::before{\n  content:\"\"; }\n\n.bp3-icon-eye-on::before{\n  content:\"\"; }\n\n.bp3-icon-eye-open::before{\n  content:\"\"; }\n\n.bp3-icon-fast-backward::before{\n  content:\"\"; }\n\n.bp3-icon-fast-forward::before{\n  content:\"\"; }\n\n.bp3-icon-feed::before{\n  content:\"\"; }\n\n.bp3-icon-feed-subscribed::before{\n  content:\"\"; }\n\n.bp3-icon-film::before{\n  content:\"\"; }\n\n.bp3-icon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-filter-keep::before{\n  content:\"\"; }\n\n.bp3-icon-filter-list::before{\n  content:\"\"; }\n\n.bp3-icon-filter-open::before{\n  content:\"\"; }\n\n.bp3-icon-filter-remove::before{\n  content:\"\"; }\n\n.bp3-icon-flag::before{\n  content:\"⚑\"; }\n\n.bp3-icon-flame::before{\n  content:\"\"; }\n\n.bp3-icon-flash::before{\n  content:\"\"; }\n\n.bp3-icon-floppy-disk::before{\n  content:\"\"; }\n\n.bp3-icon-flow-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flow-end::before{\n  content:\"\"; }\n\n.bp3-icon-flow-linear::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flows::before{\n  content:\"\"; }\n\n.bp3-icon-folder-close::before{\n  content:\"\"; }\n\n.bp3-icon-folder-new::before{\n  content:\"\"; }\n\n.bp3-icon-folder-open::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared-open::before{\n  content:\"\"; }\n\n.bp3-icon-follower::before{\n  content:\"\"; }\n\n.bp3-icon-following::before{\n  content:\"\"; }\n\n.bp3-icon-font::before{\n  content:\"\"; }\n\n.bp3-icon-fork::before{\n  content:\"\"; }\n\n.bp3-icon-form::before{\n  content:\"\"; }\n\n.bp3-icon-full-circle::before{\n  content:\"\"; }\n\n.bp3-icon-full-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-fullscreen::before{\n  content:\"\"; }\n\n.bp3-icon-function::before{\n  content:\"\"; }\n\n.bp3-icon-gantt-chart::before{\n  content:\"\"; }\n\n.bp3-icon-geolocation::before{\n  content:\"\"; }\n\n.bp3-icon-geosearch::before{\n  content:\"\"; }\n\n.bp3-icon-git-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-commit::before{\n  content:\"\"; }\n\n.bp3-icon-git-merge::before{\n  content:\"\"; }\n\n.bp3-icon-git-new-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-pull::before{\n  content:\"\"; }\n\n.bp3-icon-git-push::before{\n  content:\"\"; }\n\n.bp3-icon-git-repo::before{\n  content:\"\"; }\n\n.bp3-icon-glass::before{\n  content:\"\"; }\n\n.bp3-icon-globe::before{\n  content:\"\"; }\n\n.bp3-icon-globe-network::before{\n  content:\"\"; }\n\n.bp3-icon-graph::before{\n  content:\"\"; }\n\n.bp3-icon-graph-remove::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-grid::before{\n  content:\"\"; }\n\n.bp3-icon-grid-view::before{\n  content:\"\"; }\n\n.bp3-icon-group-objects::before{\n  content:\"\"; }\n\n.bp3-icon-grouped-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-hand::before{\n  content:\"\"; }\n\n.bp3-icon-hand-down::before{\n  content:\"\"; }\n\n.bp3-icon-hand-left::before{\n  content:\"\"; }\n\n.bp3-icon-hand-right::before{\n  content:\"\"; }\n\n.bp3-icon-hand-up::before{\n  content:\"\"; }\n\n.bp3-icon-header::before{\n  content:\"\"; }\n\n.bp3-icon-header-one::before{\n  content:\"\"; }\n\n.bp3-icon-header-two::before{\n  content:\"\"; }\n\n.bp3-icon-headset::before{\n  content:\"\"; }\n\n.bp3-icon-heart::before{\n  content:\"♥\"; }\n\n.bp3-icon-heart-broken::before{\n  content:\"\"; }\n\n.bp3-icon-heat-grid::before{\n  content:\"\"; }\n\n.bp3-icon-heatmap::before{\n  content:\"\"; }\n\n.bp3-icon-help::before{\n  content:\"?\"; }\n\n.bp3-icon-helper-management::before{\n  content:\"\"; }\n\n.bp3-icon-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-history::before{\n  content:\"\"; }\n\n.bp3-icon-home::before{\n  content:\"⌂\"; }\n\n.bp3-icon-horizontal-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-id-number::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-left::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-right::before{\n  content:\"\"; }\n\n.bp3-icon-import::before{\n  content:\"\"; }\n\n.bp3-icon-inbox::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-geo::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-search::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-update::before{\n  content:\"\"; }\n\n.bp3-icon-info-sign::before{\n  content:\"ℹ\"; }\n\n.bp3-icon-inheritance::before{\n  content:\"\"; }\n\n.bp3-icon-inner-join::before{\n  content:\"\"; }\n\n.bp3-icon-insert::before{\n  content:\"\"; }\n\n.bp3-icon-intersection::before{\n  content:\"\"; }\n\n.bp3-icon-ip-address::before{\n  content:\"\"; }\n\n.bp3-icon-issue::before{\n  content:\"\"; }\n\n.bp3-icon-issue-closed::before{\n  content:\"\"; }\n\n.bp3-icon-issue-new::before{\n  content:\"\"; }\n\n.bp3-icon-italic::before{\n  content:\"\"; }\n\n.bp3-icon-join-table::before{\n  content:\"\"; }\n\n.bp3-icon-key::before{\n  content:\"\"; }\n\n.bp3-icon-key-backspace::before{\n  content:\"\"; }\n\n.bp3-icon-key-command::before{\n  content:\"\"; }\n\n.bp3-icon-key-control::before{\n  content:\"\"; }\n\n.bp3-icon-key-delete::before{\n  content:\"\"; }\n\n.bp3-icon-key-enter::before{\n  content:\"\"; }\n\n.bp3-icon-key-escape::before{\n  content:\"\"; }\n\n.bp3-icon-key-option::before{\n  content:\"\"; }\n\n.bp3-icon-key-shift::before{\n  content:\"\"; }\n\n.bp3-icon-key-tab::before{\n  content:\"\"; }\n\n.bp3-icon-known-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-lab-test::before{\n  content:\"\"; }\n\n.bp3-icon-label::before{\n  content:\"\"; }\n\n.bp3-icon-layer::before{\n  content:\"\"; }\n\n.bp3-icon-layers::before{\n  content:\"\"; }\n\n.bp3-icon-layout::before{\n  content:\"\"; }\n\n.bp3-icon-layout-auto::before{\n  content:\"\"; }\n\n.bp3-icon-layout-balloon::before{\n  content:\"\"; }\n\n.bp3-icon-layout-circle::before{\n  content:\"\"; }\n\n.bp3-icon-layout-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-group-by::before{\n  content:\"\"; }\n\n.bp3-icon-layout-hierarchy::before{\n  content:\"\"; }\n\n.bp3-icon-layout-linear::before{\n  content:\"\"; }\n\n.bp3-icon-layout-skew-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-sorted-clusters::before{\n  content:\"\"; }\n\n.bp3-icon-learning::before{\n  content:\"\"; }\n\n.bp3-icon-left-join::before{\n  content:\"\"; }\n\n.bp3-icon-less-than::before{\n  content:\"\"; }\n\n.bp3-icon-less-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-lifesaver::before{\n  content:\"\"; }\n\n.bp3-icon-lightbulb::before{\n  content:\"\"; }\n\n.bp3-icon-link::before{\n  content:\"\"; }\n\n.bp3-icon-list::before{\n  content:\"☰\"; }\n\n.bp3-icon-list-columns::before{\n  content:\"\"; }\n\n.bp3-icon-list-detail-view::before{\n  content:\"\"; }\n\n.bp3-icon-locate::before{\n  content:\"\"; }\n\n.bp3-icon-lock::before{\n  content:\"\"; }\n\n.bp3-icon-log-in::before{\n  content:\"\"; }\n\n.bp3-icon-log-out::before{\n  content:\"\"; }\n\n.bp3-icon-manual::before{\n  content:\"\"; }\n\n.bp3-icon-manually-entered-data::before{\n  content:\"\"; }\n\n.bp3-icon-map::before{\n  content:\"\"; }\n\n.bp3-icon-map-create::before{\n  content:\"\"; }\n\n.bp3-icon-map-marker::before{\n  content:\"\"; }\n\n.bp3-icon-maximize::before{\n  content:\"\"; }\n\n.bp3-icon-media::before{\n  content:\"\"; }\n\n.bp3-icon-menu::before{\n  content:\"\"; }\n\n.bp3-icon-menu-closed::before{\n  content:\"\"; }\n\n.bp3-icon-menu-open::before{\n  content:\"\"; }\n\n.bp3-icon-merge-columns::before{\n  content:\"\"; }\n\n.bp3-icon-merge-links::before{\n  content:\"\"; }\n\n.bp3-icon-minimize::before{\n  content:\"\"; }\n\n.bp3-icon-minus::before{\n  content:\"−\"; }\n\n.bp3-icon-mobile-phone::before{\n  content:\"\"; }\n\n.bp3-icon-mobile-video::before{\n  content:\"\"; }\n\n.bp3-icon-moon::before{\n  content:\"\"; }\n\n.bp3-icon-more::before{\n  content:\"\"; }\n\n.bp3-icon-mountain::before{\n  content:\"\"; }\n\n.bp3-icon-move::before{\n  content:\"\"; }\n\n.bp3-icon-mugshot::before{\n  content:\"\"; }\n\n.bp3-icon-multi-select::before{\n  content:\"\"; }\n\n.bp3-icon-music::before{\n  content:\"\"; }\n\n.bp3-icon-new-drawing::before{\n  content:\"\"; }\n\n.bp3-icon-new-grid-item::before{\n  content:\"\"; }\n\n.bp3-icon-new-layer::before{\n  content:\"\"; }\n\n.bp3-icon-new-layers::before{\n  content:\"\"; }\n\n.bp3-icon-new-link::before{\n  content:\"\"; }\n\n.bp3-icon-new-object::before{\n  content:\"\"; }\n\n.bp3-icon-new-person::before{\n  content:\"\"; }\n\n.bp3-icon-new-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-new-text-box::before{\n  content:\"\"; }\n\n.bp3-icon-ninja::before{\n  content:\"\"; }\n\n.bp3-icon-not-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-notifications::before{\n  content:\"\"; }\n\n.bp3-icon-notifications-updated::before{\n  content:\"\"; }\n\n.bp3-icon-numbered-list::before{\n  content:\"\"; }\n\n.bp3-icon-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-office::before{\n  content:\"\"; }\n\n.bp3-icon-offline::before{\n  content:\"\"; }\n\n.bp3-icon-oil-field::before{\n  content:\"\"; }\n\n.bp3-icon-one-column::before{\n  content:\"\"; }\n\n.bp3-icon-outdated::before{\n  content:\"\"; }\n\n.bp3-icon-page-layout::before{\n  content:\"\"; }\n\n.bp3-icon-panel-stats::before{\n  content:\"\"; }\n\n.bp3-icon-panel-table::before{\n  content:\"\"; }\n\n.bp3-icon-paperclip::before{\n  content:\"\"; }\n\n.bp3-icon-paragraph::before{\n  content:\"\"; }\n\n.bp3-icon-path::before{\n  content:\"\"; }\n\n.bp3-icon-path-search::before{\n  content:\"\"; }\n\n.bp3-icon-pause::before{\n  content:\"\"; }\n\n.bp3-icon-people::before{\n  content:\"\"; }\n\n.bp3-icon-percentage::before{\n  content:\"\"; }\n\n.bp3-icon-person::before{\n  content:\"\"; }\n\n.bp3-icon-phone::before{\n  content:\"☎\"; }\n\n.bp3-icon-pie-chart::before{\n  content:\"\"; }\n\n.bp3-icon-pin::before{\n  content:\"\"; }\n\n.bp3-icon-pivot::before{\n  content:\"\"; }\n\n.bp3-icon-pivot-table::before{\n  content:\"\"; }\n\n.bp3-icon-play::before{\n  content:\"\"; }\n\n.bp3-icon-plus::before{\n  content:\"+\"; }\n\n.bp3-icon-polygon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-power::before{\n  content:\"\"; }\n\n.bp3-icon-predictive-analysis::before{\n  content:\"\"; }\n\n.bp3-icon-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-presentation::before{\n  content:\"\"; }\n\n.bp3-icon-print::before{\n  content:\"⎙\"; }\n\n.bp3-icon-projects::before{\n  content:\"\"; }\n\n.bp3-icon-properties::before{\n  content:\"\"; }\n\n.bp3-icon-property::before{\n  content:\"\"; }\n\n.bp3-icon-publish-function::before{\n  content:\"\"; }\n\n.bp3-icon-pulse::before{\n  content:\"\"; }\n\n.bp3-icon-random::before{\n  content:\"\"; }\n\n.bp3-icon-record::before{\n  content:\"\"; }\n\n.bp3-icon-redo::before{\n  content:\"\"; }\n\n.bp3-icon-refresh::before{\n  content:\"\"; }\n\n.bp3-icon-regression-chart::before{\n  content:\"\"; }\n\n.bp3-icon-remove::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-repeat::before{\n  content:\"\"; }\n\n.bp3-icon-reset::before{\n  content:\"\"; }\n\n.bp3-icon-resolve::before{\n  content:\"\"; }\n\n.bp3-icon-rig::before{\n  content:\"\"; }\n\n.bp3-icon-right-join::before{\n  content:\"\"; }\n\n.bp3-icon-ring::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-document::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-page::before{\n  content:\"\"; }\n\n.bp3-icon-satellite::before{\n  content:\"\"; }\n\n.bp3-icon-saved::before{\n  content:\"\"; }\n\n.bp3-icon-scatter-plot::before{\n  content:\"\"; }\n\n.bp3-icon-search::before{\n  content:\"\"; }\n\n.bp3-icon-search-around::before{\n  content:\"\"; }\n\n.bp3-icon-search-template::before{\n  content:\"\"; }\n\n.bp3-icon-search-text::before{\n  content:\"\"; }\n\n.bp3-icon-segmented-control::before{\n  content:\"\"; }\n\n.bp3-icon-select::before{\n  content:\"\"; }\n\n.bp3-icon-selection::before{\n  content:\"⦿\"; }\n\n.bp3-icon-send-to::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-graph::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-map::before{\n  content:\"\"; }\n\n.bp3-icon-series-add::before{\n  content:\"\"; }\n\n.bp3-icon-series-configuration::before{\n  content:\"\"; }\n\n.bp3-icon-series-derived::before{\n  content:\"\"; }\n\n.bp3-icon-series-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-series-search::before{\n  content:\"\"; }\n\n.bp3-icon-settings::before{\n  content:\"\"; }\n\n.bp3-icon-share::before{\n  content:\"\"; }\n\n.bp3-icon-shield::before{\n  content:\"\"; }\n\n.bp3-icon-shop::before{\n  content:\"\"; }\n\n.bp3-icon-shopping-cart::before{\n  content:\"\"; }\n\n.bp3-icon-signal-search::before{\n  content:\"\"; }\n\n.bp3-icon-sim-card::before{\n  content:\"\"; }\n\n.bp3-icon-slash::before{\n  content:\"\"; }\n\n.bp3-icon-small-cross::before{\n  content:\"\"; }\n\n.bp3-icon-small-minus::before{\n  content:\"\"; }\n\n.bp3-icon-small-plus::before{\n  content:\"\"; }\n\n.bp3-icon-small-tick::before{\n  content:\"\"; }\n\n.bp3-icon-snowflake::before{\n  content:\"\"; }\n\n.bp3-icon-social-media::before{\n  content:\"\"; }\n\n.bp3-icon-sort::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-asc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-split-columns::before{\n  content:\"\"; }\n\n.bp3-icon-square::before{\n  content:\"\"; }\n\n.bp3-icon-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-star::before{\n  content:\"★\"; }\n\n.bp3-icon-star-empty::before{\n  content:\"☆\"; }\n\n.bp3-icon-step-backward::before{\n  content:\"\"; }\n\n.bp3-icon-step-chart::before{\n  content:\"\"; }\n\n.bp3-icon-step-forward::before{\n  content:\"\"; }\n\n.bp3-icon-stop::before{\n  content:\"\"; }\n\n.bp3-icon-stopwatch::before{\n  content:\"\"; }\n\n.bp3-icon-strikethrough::before{\n  content:\"\"; }\n\n.bp3-icon-style::before{\n  content:\"\"; }\n\n.bp3-icon-swap-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-swap-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-circle::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-cross::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-diamond::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-square::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-down::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-up::before{\n  content:\"\"; }\n\n.bp3-icon-tag::before{\n  content:\"\"; }\n\n.bp3-icon-take-action::before{\n  content:\"\"; }\n\n.bp3-icon-taxi::before{\n  content:\"\"; }\n\n.bp3-icon-text-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-th::before{\n  content:\"\"; }\n\n.bp3-icon-th-derived::before{\n  content:\"\"; }\n\n.bp3-icon-th-disconnect::before{\n  content:\"\"; }\n\n.bp3-icon-th-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-th-list::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-down::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-up::before{\n  content:\"\"; }\n\n.bp3-icon-tick::before{\n  content:\"✓\"; }\n\n.bp3-icon-tick-circle::before{\n  content:\"\"; }\n\n.bp3-icon-time::before{\n  content:\"⏲\"; }\n\n.bp3-icon-timeline-area-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-events::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-line-chart::before{\n  content:\"\"; }\n\n.bp3-icon-tint::before{\n  content:\"\"; }\n\n.bp3-icon-torch::before{\n  content:\"\"; }\n\n.bp3-icon-tractor::before{\n  content:\"\"; }\n\n.bp3-icon-train::before{\n  content:\"\"; }\n\n.bp3-icon-translate::before{\n  content:\"\"; }\n\n.bp3-icon-trash::before{\n  content:\"\"; }\n\n.bp3-icon-tree::before{\n  content:\"\"; }\n\n.bp3-icon-trending-down::before{\n  content:\"\"; }\n\n.bp3-icon-trending-up::before{\n  content:\"\"; }\n\n.bp3-icon-truck::before{\n  content:\"\"; }\n\n.bp3-icon-two-columns::before{\n  content:\"\"; }\n\n.bp3-icon-unarchive::before{\n  content:\"\"; }\n\n.bp3-icon-underline::before{\n  content:\"⎁\"; }\n\n.bp3-icon-undo::before{\n  content:\"⎌\"; }\n\n.bp3-icon-ungroup-objects::before{\n  content:\"\"; }\n\n.bp3-icon-unknown-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-unlock::before{\n  content:\"\"; }\n\n.bp3-icon-unpin::before{\n  content:\"\"; }\n\n.bp3-icon-unresolve::before{\n  content:\"\"; }\n\n.bp3-icon-updated::before{\n  content:\"\"; }\n\n.bp3-icon-upload::before{\n  content:\"\"; }\n\n.bp3-icon-user::before{\n  content:\"\"; }\n\n.bp3-icon-variable::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-video::before{\n  content:\"\"; }\n\n.bp3-icon-volume-down::before{\n  content:\"\"; }\n\n.bp3-icon-volume-off::before{\n  content:\"\"; }\n\n.bp3-icon-volume-up::before{\n  content:\"\"; }\n\n.bp3-icon-walk::before{\n  content:\"\"; }\n\n.bp3-icon-warning-sign::before{\n  content:\"\"; }\n\n.bp3-icon-waterfall-chart::before{\n  content:\"\"; }\n\n.bp3-icon-widget::before{\n  content:\"\"; }\n\n.bp3-icon-widget-button::before{\n  content:\"\"; }\n\n.bp3-icon-widget-footer::before{\n  content:\"\"; }\n\n.bp3-icon-widget-header::before{\n  content:\"\"; }\n\n.bp3-icon-wrench::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-in::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-out::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-to-fit::before{\n  content:\"\"; }\n.bp3-submenu > .bp3-popover-wrapper{\n  display:block; }\n\n.bp3-submenu .bp3-popover-target{\n  display:block; }\n  .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{ }\n\n.bp3-submenu.bp3-popover{\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0 5px; }\n  .bp3-submenu.bp3-popover > .bp3-popover-content{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-submenu.bp3-popover, .bp3-submenu.bp3-popover.bp3-dark{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-dark .bp3-submenu.bp3-popover > .bp3-popover-content, .bp3-submenu.bp3-popover.bp3-dark > .bp3-popover-content{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n.bp3-menu{\n  background:#ffffff;\n  border-radius:3px;\n  color:#182026;\n  list-style:none;\n  margin:0;\n  min-width:180px;\n  padding:5px;\n  text-align:left; }\n\n.bp3-menu-divider{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px; }\n  .bp3-dark .bp3-menu-divider{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-menu-item{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  border-radius:2px;\n  color:inherit;\n  line-height:20px;\n  padding:5px 7px;\n  text-decoration:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-menu-item > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-menu-item > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > *{\n    margin-right:7px; }\n  .bp3-menu-item:empty::before,\n  .bp3-menu-item > :last-child{\n    margin-right:0; }\n  .bp3-menu-item > .bp3-fill{\n    word-break:break-word; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    background-color:rgba(167, 182, 194, 0.3);\n    cursor:pointer;\n    text-decoration:none; }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-dark .bp3-menu-item{\n    color:inherit; }\n    .bp3-dark .bp3-menu-item:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n      background-color:rgba(138, 155, 168, 0.15);\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-disabled{\n      background-color:inherit;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-menu-item.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-primary::before, .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary:active, .bp3-menu-item.bp3-intent-primary:active::before, .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-success::before, .bp3-menu-item.bp3-intent-success::after,\n    .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-menu-item.bp3-intent-success:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success:active, .bp3-menu-item.bp3-intent-success:active::before, .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-warning::before, .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning:active, .bp3-menu-item.bp3-intent-warning:active::before, .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-danger::before, .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger:active, .bp3-menu-item.bp3-intent-danger:active::before, .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    margin-right:7px; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > .bp3-icon{\n    color:#5c7080;\n    margin-top:2px; }\n  .bp3-menu-item .bp3-menu-item-label{\n    color:#5c7080; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    color:inherit; }\n  .bp3-menu-item.bp3-active, .bp3-menu-item:active{\n    background-color:rgba(115, 134, 148, 0.3); }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit !important;\n    color:rgba(92, 112, 128, 0.6) !important;\n    cursor:not-allowed !important;\n    outline:none !important; }\n    .bp3-menu-item.bp3-disabled::before,\n    .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-large .bp3-menu-item{\n    font-size:16px;\n    line-height:22px;\n    padding:9px 7px; }\n    .bp3-large .bp3-menu-item .bp3-icon{\n      margin-top:3px; }\n    .bp3-large .bp3-menu-item::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      margin-right:10px;\n      margin-top:1px; }\n\nbutton.bp3-menu-item{\n  background:none;\n  border:none;\n  text-align:left;\n  width:100%; }\n.bp3-menu-header{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px;\n  cursor:default;\n  padding-left:2px; }\n  .bp3-dark .bp3-menu-header{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n  .bp3-menu-header:first-of-type{\n    border-top:none; }\n  .bp3-menu-header > h6{\n    color:#182026;\n    font-weight:600;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    line-height:17px;\n    margin:0;\n    padding:10px 7px 0 1px; }\n    .bp3-dark .bp3-menu-header > h6{\n      color:#f5f8fa; }\n  .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n  .bp3-large .bp3-menu-header > h6{\n    font-size:18px;\n    padding-bottom:5px;\n    padding-top:15px; }\n  .bp3-large .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n\n.bp3-dark .bp3-menu{\n  background:#30404d;\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-menu-item{ }\n  .bp3-dark .bp3-menu-item.bp3-intent-primary{\n    color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary::before, .bp3-dark .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary:active, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-success{\n    color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success::before, .bp3-dark .bp3-menu-item.bp3-intent-success::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success:active, .bp3-dark .bp3-menu-item.bp3-intent-success:active::before, .bp3-dark .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-warning{\n    color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning::before, .bp3-dark .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning:active, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-danger{\n    color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger::before, .bp3-dark .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger:active, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item::before,\n  .bp3-dark .bp3-menu-item > .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item .bp3-menu-item-label{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item.bp3-active, .bp3-dark .bp3-menu-item:active{\n    background-color:rgba(138, 155, 168, 0.3); }\n  .bp3-dark .bp3-menu-item.bp3-disabled{\n    color:rgba(167, 182, 194, 0.6) !important; }\n    .bp3-dark .bp3-menu-item.bp3-disabled::before,\n    .bp3-dark .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-dark .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(167, 182, 194, 0.6) !important; }\n\n.bp3-dark .bp3-menu-divider,\n.bp3-dark .bp3-menu-header{\n  border-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-dark .bp3-menu-header > h6{\n  color:#f5f8fa; }\n\n.bp3-label .bp3-menu{\n  margin-top:5px; }\n.bp3-navbar{\n  background-color:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  height:50px;\n  padding:0 15px;\n  position:relative;\n  width:100%;\n  z-index:10; }\n  .bp3-navbar.bp3-dark,\n  .bp3-dark .bp3-navbar{\n    background-color:#394b59; }\n  .bp3-navbar.bp3-dark{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-navbar{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-navbar.bp3-fixed-top{\n    left:0;\n    position:fixed;\n    right:0;\n    top:0; }\n\n.bp3-navbar-heading{\n  font-size:16px;\n  margin-right:15px; }\n\n.bp3-navbar-group{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:50px; }\n  .bp3-navbar-group.bp3-align-left{\n    float:left; }\n  .bp3-navbar-group.bp3-align-right{\n    float:right; }\n\n.bp3-navbar-divider{\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  height:20px;\n  margin:0 10px; }\n  .bp3-dark .bp3-navbar-divider{\n    border-left-color:rgba(255, 255, 255, 0.15); }\n.bp3-non-ideal-state{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  height:100%;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  text-align:center;\n  width:100%; }\n  .bp3-non-ideal-state > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-non-ideal-state > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-non-ideal-state::before,\n  .bp3-non-ideal-state > *{\n    margin-bottom:20px; }\n  .bp3-non-ideal-state:empty::before,\n  .bp3-non-ideal-state > :last-child{\n    margin-bottom:0; }\n  .bp3-non-ideal-state > *{\n    max-width:400px; }\n\n.bp3-non-ideal-state-visual{\n  color:rgba(92, 112, 128, 0.6);\n  font-size:60px; }\n  .bp3-dark .bp3-non-ideal-state-visual{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-overflow-list{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:nowrap;\n      flex-wrap:nowrap;\n  min-width:0; }\n\n.bp3-overflow-list-spacer{\n  -ms-flex-negative:1;\n      flex-shrink:1;\n  width:1px; }\n\nbody.bp3-overlay-open{\n  overflow:hidden; }\n\n.bp3-overlay{\n  bottom:0;\n  left:0;\n  position:static;\n  right:0;\n  top:0;\n  z-index:20; }\n  .bp3-overlay:not(.bp3-overlay-open){\n    pointer-events:none; }\n  .bp3-overlay.bp3-overlay-container{\n    overflow:hidden;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-scroll-container{\n    overflow:auto;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-scroll-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-inline{\n    display:inline;\n    overflow:visible; }\n\n.bp3-overlay-content{\n  position:fixed;\n  z-index:20; }\n  .bp3-overlay-inline .bp3-overlay-content,\n  .bp3-overlay-scroll-container .bp3-overlay-content{\n    position:absolute; }\n\n.bp3-overlay-backdrop{\n  bottom:0;\n  left:0;\n  position:fixed;\n  right:0;\n  top:0;\n  opacity:1;\n  background-color:rgba(16, 22, 26, 0.7);\n  overflow:auto;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  z-index:20; }\n  .bp3-overlay-backdrop.bp3-overlay-enter, .bp3-overlay-backdrop.bp3-overlay-appear{\n    opacity:0; }\n  .bp3-overlay-backdrop.bp3-overlay-enter-active, .bp3-overlay-backdrop.bp3-overlay-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop.bp3-overlay-exit{\n    opacity:1; }\n  .bp3-overlay-backdrop.bp3-overlay-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop:focus{\n    outline:none; }\n  .bp3-overlay-inline .bp3-overlay-backdrop{\n    position:absolute; }\n.bp3-panel-stack{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-view{\n    background-color:#30404d; }\n  .bp3-panel-stack-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter, .bp3-panel-stack-push .bp3-panel-stack-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter-active, .bp3-panel-stack-push .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter, .bp3-panel-stack-pop .bp3-panel-stack-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter-active, .bp3-panel-stack-pop .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-panel-stack2{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack2-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack2-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack2-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack2-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack2-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack2-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-view{\n    background-color:#30404d; }\n  .bp3-panel-stack2-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter, .bp3-panel-stack2-push .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter-active, .bp3-panel-stack2-push .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter, .bp3-panel-stack2-pop .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter-active, .bp3-panel-stack2-pop .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-popover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  border-radius:3px;\n  display:inline-block;\n  z-index:20; }\n  .bp3-popover .bp3-popover-arrow{\n    height:30px;\n    position:absolute;\n    width:30px; }\n    .bp3-popover .bp3-popover-arrow::before{\n      height:20px;\n      margin:5px;\n      width:20px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover{\n    margin-bottom:17px;\n    margin-top:-17px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n      bottom:-11px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover{\n    margin-left:17px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n      left:-11px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover{\n    margin-top:17px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n      top:-11px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover{\n    margin-left:-17px;\n    margin-right:17px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n      right:-11px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-popover > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-popover > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n    top:-0.3934px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n    right:-0.3934px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n    left:-0.3934px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n    bottom:-0.3934px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-popover .bp3-popover-content{\n    background:#ffffff;\n    color:inherit; }\n  .bp3-popover .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-popover .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-popover .bp3-popover-arrow-fill{\n    fill:#ffffff; }\n  .bp3-popover-enter > .bp3-popover, .bp3-popover-appear > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3); }\n  .bp3-popover-enter-active > .bp3-popover, .bp3-popover-appear-active > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover-exit > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover .bp3-popover-content{\n    border-radius:3px;\n    position:relative; }\n  .bp3-popover.bp3-popover-content-sizing .bp3-popover-content{\n    max-width:350px;\n    padding:20px; }\n  .bp3-popover-target + .bp3-overlay .bp3-popover.bp3-popover-content-sizing{\n    width:350px; }\n  .bp3-popover.bp3-minimal{\n    margin:0 !important; }\n    .bp3-popover.bp3-minimal .bp3-popover-arrow{\n      display:none; }\n    .bp3-popover.bp3-minimal.bp3-popover{\n      -webkit-transform:scale(1);\n              transform:scale(1); }\n      .bp3-popover-enter > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-enter-active > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n      .bp3-popover-exit > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-exit-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover.bp3-dark,\n  .bp3-dark .bp3-popover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-popover .bp3-popover-content{\n      background:#30404d;\n      color:inherit; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-popover .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-fill{\n      fill:#30404d; }\n\n.bp3-popover-arrow::before{\n  border-radius:2px;\n  content:\"\";\n  display:block;\n  position:absolute;\n  -webkit-transform:rotate(45deg);\n          transform:rotate(45deg); }\n\n.bp3-tether-pinned .bp3-popover-arrow{\n  display:none; }\n\n.bp3-popover-backdrop{\n  background:rgba(255, 255, 255, 0); }\n\n.bp3-transition-container{\n  opacity:1;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  z-index:20; }\n  .bp3-transition-container.bp3-popover-enter, .bp3-transition-container.bp3-popover-appear{\n    opacity:0; }\n  .bp3-transition-container.bp3-popover-enter-active, .bp3-transition-container.bp3-popover-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container.bp3-popover-exit{\n    opacity:1; }\n  .bp3-transition-container.bp3-popover-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container:focus{\n    outline:none; }\n  .bp3-transition-container.bp3-popover-leave .bp3-popover-content{\n    pointer-events:none; }\n  .bp3-transition-container[data-x-out-of-boundaries]{\n    display:none; }\n\nspan.bp3-popover-target{\n  display:inline-block; }\n\n.bp3-popover-wrapper.bp3-fill{\n  width:100%; }\n\n.bp3-portal{\n  left:0;\n  position:absolute;\n  right:0;\n  top:0; }\n@-webkit-keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n@keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n\n.bp3-progress-bar{\n  background:rgba(92, 112, 128, 0.2);\n  border-radius:40px;\n  display:block;\n  height:8px;\n  overflow:hidden;\n  position:relative;\n  width:100%; }\n  .bp3-progress-bar .bp3-progress-meter{\n    background:linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%);\n    background-color:rgba(92, 112, 128, 0.8);\n    background-size:30px 30px;\n    border-radius:40px;\n    height:100%;\n    position:absolute;\n    -webkit-transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:100%; }\n  .bp3-progress-bar:not(.bp3-no-animation):not(.bp3-no-stripes) .bp3-progress-meter{\n    animation:linear-progress-bar-stripes 300ms linear infinite reverse; }\n  .bp3-progress-bar.bp3-no-stripes .bp3-progress-meter{\n    background-image:none; }\n\n.bp3-dark .bp3-progress-bar{\n  background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-progress-bar .bp3-progress-meter{\n    background-color:#8a9ba8; }\n\n.bp3-progress-bar.bp3-intent-primary .bp3-progress-meter{\n  background-color:#137cbd; }\n\n.bp3-progress-bar.bp3-intent-success .bp3-progress-meter{\n  background-color:#0f9960; }\n\n.bp3-progress-bar.bp3-intent-warning .bp3-progress-meter{\n  background-color:#d9822b; }\n\n.bp3-progress-bar.bp3-intent-danger .bp3-progress-meter{\n  background-color:#db3737; }\n@-webkit-keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n@keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n.bp3-skeleton{\n  -webkit-animation:1000ms linear infinite alternate skeleton-glow;\n          animation:1000ms linear infinite alternate skeleton-glow;\n  background:rgba(206, 217, 224, 0.2);\n  background-clip:padding-box !important;\n  border-color:rgba(206, 217, 224, 0.2) !important;\n  border-radius:2px;\n  -webkit-box-shadow:none !important;\n          box-shadow:none !important;\n  color:transparent !important;\n  cursor:default;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-skeleton::before, .bp3-skeleton::after,\n  .bp3-skeleton *{\n    visibility:hidden !important; }\n.bp3-slider{\n  height:40px;\n  min-width:150px;\n  width:100%;\n  cursor:default;\n  outline:none;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-slider:hover{\n    cursor:pointer; }\n  .bp3-slider:active{\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-slider.bp3-disabled{\n    cursor:not-allowed;\n    opacity:0.5; }\n  .bp3-slider.bp3-slider-unlabeled{\n    height:16px; }\n\n.bp3-slider-track,\n.bp3-slider-progress{\n  height:6px;\n  left:0;\n  right:0;\n  top:5px;\n  position:absolute; }\n\n.bp3-slider-track{\n  border-radius:3px;\n  overflow:hidden; }\n\n.bp3-slider-progress{\n  background:rgba(92, 112, 128, 0.2); }\n  .bp3-dark .bp3-slider-progress{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-slider-progress.bp3-intent-primary{\n    background-color:#137cbd; }\n  .bp3-slider-progress.bp3-intent-success{\n    background-color:#0f9960; }\n  .bp3-slider-progress.bp3-intent-warning{\n    background-color:#d9822b; }\n  .bp3-slider-progress.bp3-intent-danger{\n    background-color:#db3737; }\n\n.bp3-slider-handle{\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n  cursor:pointer;\n  height:16px;\n  left:0;\n  position:absolute;\n  top:0;\n  width:16px; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-slider-handle:active, .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-slider-handle:disabled, .bp3-slider-handle.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-slider-handle:disabled.bp3-active, .bp3-slider-handle:disabled.bp3-active:hover, .bp3-slider-handle.bp3-disabled.bp3-active, .bp3-slider-handle.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n  .bp3-slider-handle:focus{\n    z-index:1; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n    cursor:-webkit-grab;\n    cursor:grab;\n    z-index:2; }\n  .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-disabled .bp3-slider-handle{\n    background:#bfccd6;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    pointer-events:none; }\n  .bp3-dark .bp3-slider-handle{\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover, .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-slider-handle:disabled, .bp3-dark .bp3-slider-handle.bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-slider-handle:disabled.bp3-active, .bp3-dark .bp3-slider-handle.bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-slider-handle .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-slider-handle, .bp3-dark .bp3-slider-handle:hover{\n      background-color:#394b59; }\n    .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#293742; }\n  .bp3-dark .bp3-disabled .bp3-slider-handle{\n    background:#5c7080;\n    border-color:#5c7080;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-slider-handle .bp3-slider-label{\n    background:#394b59;\n    border-radius:3px;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n    color:#f5f8fa;\n    margin-left:8px; }\n    .bp3-dark .bp3-slider-handle .bp3-slider-label{\n      background:#e1e8ed;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n      color:#394b59; }\n    .bp3-disabled .bp3-slider-handle .bp3-slider-label{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-slider-handle.bp3-start, .bp3-slider-handle.bp3-end{\n    width:8px; }\n  .bp3-slider-handle.bp3-start{\n    border-bottom-right-radius:0;\n    border-top-right-radius:0; }\n  .bp3-slider-handle.bp3-end{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0;\n    margin-left:8px; }\n    .bp3-slider-handle.bp3-end .bp3-slider-label{\n      margin-left:0; }\n\n.bp3-slider-label{\n  -webkit-transform:translate(-50%, 20px);\n          transform:translate(-50%, 20px);\n  display:inline-block;\n  font-size:12px;\n  line-height:1;\n  padding:2px 5px;\n  position:absolute;\n  vertical-align:top; }\n\n.bp3-slider.bp3-vertical{\n  height:150px;\n  min-width:40px;\n  width:40px; }\n  .bp3-slider.bp3-vertical .bp3-slider-track,\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    bottom:0;\n    height:auto;\n    left:5px;\n    top:0;\n    width:6px; }\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    top:auto; }\n  .bp3-slider.bp3-vertical .bp3-slider-label{\n    -webkit-transform:translate(20px, 50%);\n            transform:translate(20px, 50%); }\n  .bp3-slider.bp3-vertical .bp3-slider-handle{\n    top:auto; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle .bp3-slider-label{\n      margin-left:0;\n      margin-top:-8px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end, .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      height:8px;\n      margin-left:0;\n      width:16px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      border-bottom-right-radius:3px;\n      border-top-left-radius:0; }\n      .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start .bp3-slider-label{\n        -webkit-transform:translate(20px);\n                transform:translate(20px); }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end{\n      border-bottom-left-radius:0;\n      border-bottom-right-radius:0;\n      border-top-left-radius:3px;\n      margin-bottom:8px; }\n\n@-webkit-keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n@keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n.bp3-spinner{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  overflow:visible;\n  vertical-align:middle; }\n  .bp3-spinner svg{\n    display:block; }\n  .bp3-spinner path{\n    fill-opacity:0; }\n  .bp3-spinner .bp3-spinner-head{\n    stroke:rgba(92, 112, 128, 0.8);\n    stroke-linecap:round;\n    -webkit-transform-origin:center;\n            transform-origin:center;\n    -webkit-transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-spinner .bp3-spinner-track{\n    stroke:rgba(92, 112, 128, 0.2); }\n\n.bp3-spinner-animation{\n  -webkit-animation:pt-spinner-animation 500ms linear infinite;\n          animation:pt-spinner-animation 500ms linear infinite; }\n  .bp3-no-spin > .bp3-spinner-animation{\n    -webkit-animation:none;\n            animation:none; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-head{\n  stroke:#8a9ba8; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-track{\n  stroke:rgba(16, 22, 26, 0.5); }\n\n.bp3-spinner.bp3-intent-primary .bp3-spinner-head{\n  stroke:#137cbd; }\n\n.bp3-spinner.bp3-intent-success .bp3-spinner-head{\n  stroke:#0f9960; }\n\n.bp3-spinner.bp3-intent-warning .bp3-spinner-head{\n  stroke:#d9822b; }\n\n.bp3-spinner.bp3-intent-danger .bp3-spinner-head{\n  stroke:#db3737; }\n.bp3-tabs.bp3-vertical{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-list{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab{\n      border-radius:3px;\n      padding:0 10px;\n      width:100%; }\n      .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab[aria-selected=\"true\"]{\n        background-color:rgba(19, 124, 189, 0.2);\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n      background-color:rgba(19, 124, 189, 0.2);\n      border-radius:3px;\n      bottom:0;\n      height:auto;\n      left:0;\n      right:0;\n      top:0; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-panel{\n    margin-top:0;\n    padding-left:20px; }\n\n.bp3-tab-list{\n  -webkit-box-align:end;\n      -ms-flex-align:end;\n          align-items:flex-end;\n  border:none;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  list-style:none;\n  margin:0;\n  padding:0;\n  position:relative; }\n  .bp3-tab-list > *:not(:last-child){\n    margin-right:20px; }\n\n.bp3-tab{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:#182026;\n  cursor:pointer;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  font-size:14px;\n  line-height:30px;\n  max-width:100%;\n  position:relative;\n  vertical-align:top; }\n  .bp3-tab a{\n    color:inherit;\n    display:block;\n    text-decoration:none; }\n  .bp3-tab-indicator-wrapper ~ .bp3-tab{\n    background-color:transparent !important;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important; }\n  .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-tab[aria-selected=\"true\"]{\n    border-radius:0;\n    -webkit-box-shadow:inset 0 -3px 0 #106ba3;\n            box-shadow:inset 0 -3px 0 #106ba3; }\n  .bp3-tab[aria-selected=\"true\"], .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#106ba3; }\n  .bp3-tab:focus{\n    -moz-outline-radius:0; }\n  .bp3-large > .bp3-tab{\n    font-size:16px;\n    line-height:40px; }\n\n.bp3-tab-panel{\n  margin-top:20px; }\n  .bp3-tab-panel[aria-hidden=\"true\"]{\n    display:none; }\n\n.bp3-tab-indicator-wrapper{\n  left:0;\n  pointer-events:none;\n  position:absolute;\n  top:0;\n  -webkit-transform:translateX(0), translateY(0);\n          transform:translateX(0), translateY(0);\n  -webkit-transition:height, width, -webkit-transform;\n  transition:height, width, -webkit-transform;\n  transition:height, transform, width;\n  transition:height, transform, width, -webkit-transform;\n  -webkit-transition-duration:200ms;\n          transition-duration:200ms;\n  -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n          transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n    background-color:#106ba3;\n    bottom:0;\n    height:3px;\n    left:0;\n    position:absolute;\n    right:0; }\n  .bp3-tab-indicator-wrapper.bp3-no-animation{\n    -webkit-transition:none;\n    transition:none; }\n\n.bp3-dark .bp3-tab{\n  color:#f5f8fa; }\n  .bp3-dark .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"]{\n    -webkit-box-shadow:inset 0 -3px 0 #48aff0;\n            box-shadow:inset 0 -3px 0 #48aff0; }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"], .bp3-dark .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#48aff0; }\n\n.bp3-dark .bp3-tab-indicator{\n  background-color:#48aff0; }\n\n.bp3-flex-expander{\n  -webkit-box-flex:1;\n      -ms-flex:1 1;\n          flex:1 1; }\n.bp3-tag{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#5c7080;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:#f5f8fa;\n  font-size:12px;\n  line-height:16px;\n  max-width:100%;\n  min-height:20px;\n  min-width:20px;\n  padding:2px 6px;\n  position:relative; }\n  .bp3-tag.bp3-interactive{\n    cursor:pointer; }\n    .bp3-tag.bp3-interactive:hover{\n      background-color:rgba(92, 112, 128, 0.85); }\n    .bp3-tag.bp3-interactive.bp3-active, .bp3-tag.bp3-interactive:active{\n      background-color:rgba(92, 112, 128, 0.7); }\n  .bp3-tag > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag::before,\n  .bp3-tag > *{\n    margin-right:4px; }\n  .bp3-tag:empty::before,\n  .bp3-tag > :last-child{\n    margin-right:0; }\n  .bp3-tag:focus{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:0;\n    -moz-outline-radius:6px; }\n  .bp3-tag.bp3-round{\n    border-radius:30px;\n    padding-left:8px;\n    padding-right:8px; }\n  .bp3-dark .bp3-tag{\n    background-color:#bfccd6;\n    color:#182026; }\n    .bp3-dark .bp3-tag.bp3-interactive{\n      cursor:pointer; }\n      .bp3-dark .bp3-tag.bp3-interactive:hover{\n        background-color:rgba(191, 204, 214, 0.85); }\n      .bp3-dark .bp3-tag.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-interactive:active{\n        background-color:rgba(191, 204, 214, 0.7); }\n    .bp3-dark .bp3-tag > .bp3-icon, .bp3-dark .bp3-tag .bp3-icon-standard, .bp3-dark .bp3-tag .bp3-icon-large{\n      fill:currentColor; }\n  .bp3-tag > .bp3-icon, .bp3-tag .bp3-icon-standard, .bp3-tag .bp3-icon-large{\n    fill:#ffffff; }\n  .bp3-tag.bp3-large,\n  .bp3-large .bp3-tag{\n    font-size:14px;\n    line-height:20px;\n    min-height:30px;\n    min-width:30px;\n    padding:5px 10px; }\n    .bp3-tag.bp3-large::before,\n    .bp3-tag.bp3-large > *,\n    .bp3-large .bp3-tag::before,\n    .bp3-large .bp3-tag > *{\n      margin-right:7px; }\n    .bp3-tag.bp3-large:empty::before,\n    .bp3-tag.bp3-large > :last-child,\n    .bp3-large .bp3-tag:empty::before,\n    .bp3-large .bp3-tag > :last-child{\n      margin-right:0; }\n    .bp3-tag.bp3-large.bp3-round,\n    .bp3-large .bp3-tag.bp3-round{\n      padding-left:12px;\n      padding-right:12px; }\n  .bp3-tag.bp3-intent-primary{\n    background:#137cbd;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.85); }\n      .bp3-tag.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.7); }\n  .bp3-tag.bp3-intent-success{\n    background:#0f9960;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.85); }\n      .bp3-tag.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.7); }\n  .bp3-tag.bp3-intent-warning{\n    background:#d9822b;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.85); }\n      .bp3-tag.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.7); }\n  .bp3-tag.bp3-intent-danger{\n    background:#db3737;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.85); }\n      .bp3-tag.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.7); }\n  .bp3-tag.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-tag.bp3-minimal > .bp3-icon, .bp3-tag.bp3-minimal .bp3-icon-standard, .bp3-tag.bp3-minimal .bp3-icon-large{\n    fill:#5c7080; }\n  .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n    background-color:rgba(138, 155, 168, 0.2);\n    color:#182026; }\n    .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n        background-color:rgba(92, 112, 128, 0.3); }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n        background-color:rgba(92, 112, 128, 0.4); }\n    .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n      color:#f5f8fa; }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n          background-color:rgba(191, 204, 214, 0.3); }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n          background-color:rgba(191, 204, 214, 0.4); }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) > .bp3-icon, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n        fill:#a7b6c2; }\n  .bp3-tag.bp3-minimal.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15);\n    color:#106ba3; }\n    .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-primary > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-large{\n      fill:#137cbd; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25);\n      color:#48aff0; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n          background-color:rgba(19, 124, 189, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n          background-color:rgba(19, 124, 189, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15);\n    color:#0d8050; }\n    .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-success > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-large{\n      fill:#0f9960; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25);\n      color:#3dcc91; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n          background-color:rgba(15, 153, 96, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n          background-color:rgba(15, 153, 96, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15);\n    color:#bf7326; }\n    .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-warning > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-large{\n      fill:#d9822b; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25);\n      color:#ffb366; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n          background-color:rgba(217, 130, 43, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n          background-color:rgba(217, 130, 43, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15);\n    color:#c23030; }\n    .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-danger > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-large{\n      fill:#db3737; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25);\n      color:#ff7373; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n          background-color:rgba(219, 55, 55, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n          background-color:rgba(219, 55, 55, 0.45); }\n\n.bp3-tag-remove{\n  background:none;\n  border:none;\n  color:inherit;\n  cursor:pointer;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin-bottom:-2px;\n  margin-right:-6px !important;\n  margin-top:-2px;\n  opacity:0.5;\n  padding:2px;\n  padding-left:0; }\n  .bp3-tag-remove:hover{\n    background:none;\n    opacity:0.8;\n    text-decoration:none; }\n  .bp3-tag-remove:active{\n    opacity:1; }\n  .bp3-tag-remove:empty::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    content:\"\"; }\n  .bp3-large .bp3-tag-remove{\n    margin-right:-10px !important;\n    padding:0 5px 0 0; }\n    .bp3-large .bp3-tag-remove:empty::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1; }\n.bp3-tag-input{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  cursor:text;\n  height:auto;\n  line-height:inherit;\n  min-height:30px;\n  padding-left:5px;\n  padding-right:0; }\n  .bp3-tag-input > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag-input > .bp3-tag-input-values{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag-input .bp3-tag-input-icon{\n    color:#5c7080;\n    margin-left:2px;\n    margin-right:7px;\n    margin-top:7px; }\n  .bp3-tag-input .bp3-tag-input-values{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row;\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    -ms-flex-item-align:stretch;\n        align-self:stretch;\n    -ms-flex-wrap:wrap;\n        flex-wrap:wrap;\n    margin-right:7px;\n    margin-top:5px;\n    min-width:0; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      -webkit-box-flex:0;\n          -ms-flex-positive:0;\n              flex-grow:0;\n      -ms-flex-negative:0;\n          flex-shrink:0; }\n    .bp3-tag-input .bp3-tag-input-values > .bp3-fill{\n      -webkit-box-flex:1;\n          -ms-flex-positive:1;\n              flex-grow:1;\n      -ms-flex-negative:1;\n          flex-shrink:1; }\n    .bp3-tag-input .bp3-tag-input-values::before,\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-right:5px; }\n    .bp3-tag-input .bp3-tag-input-values:empty::before,\n    .bp3-tag-input .bp3-tag-input-values > :last-child{\n      margin-right:0; }\n    .bp3-tag-input .bp3-tag-input-values:first-child .bp3-input-ghost:first-child{\n      padding-left:5px; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-bottom:5px; }\n  .bp3-tag-input .bp3-tag{\n    overflow-wrap:break-word; }\n    .bp3-tag-input .bp3-tag.bp3-active{\n      outline:rgba(19, 124, 189, 0.6) auto 2px;\n      outline-offset:0;\n      -moz-outline-radius:6px; }\n  .bp3-tag-input .bp3-input-ghost{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:20px;\n    width:80px; }\n    .bp3-tag-input .bp3-input-ghost:disabled, .bp3-tag-input .bp3-input-ghost.bp3-disabled{\n      cursor:not-allowed; }\n  .bp3-tag-input .bp3-button,\n  .bp3-tag-input .bp3-spinner{\n    margin:3px;\n    margin-left:0; }\n  .bp3-tag-input .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-tag-input.bp3-large{\n    height:auto;\n    min-height:40px; }\n    .bp3-tag-input.bp3-large::before,\n    .bp3-tag-input.bp3-large > *{\n      margin-right:10px; }\n    .bp3-tag-input.bp3-large:empty::before,\n    .bp3-tag-input.bp3-large > :last-child{\n      margin-right:0; }\n    .bp3-tag-input.bp3-large .bp3-tag-input-icon{\n      margin-left:5px;\n      margin-top:10px; }\n    .bp3-tag-input.bp3-large .bp3-input-ghost{\n      line-height:30px; }\n    .bp3-tag-input.bp3-large .bp3-button{\n      min-height:30px;\n      min-width:30px;\n      padding:5px 10px;\n      margin:5px;\n      margin-left:0; }\n    .bp3-tag-input.bp3-large .bp3-spinner{\n      margin:8px;\n      margin-left:0; }\n  .bp3-tag-input.bp3-active{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-tag-input .bp3-tag-input-icon, .bp3-tag-input.bp3-dark .bp3-tag-input-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-tag-input .bp3-input-ghost, .bp3-tag-input.bp3-dark .bp3-input-ghost{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-webkit-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-moz-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost:-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tag-input.bp3-active, .bp3-tag-input.bp3-dark.bp3-active{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-primary, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-success, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-warning, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-danger, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-input-ghost{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0; }\n  .bp3-input-ghost::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:focus{\n    outline:none !important; }\n.bp3-toast{\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:20px 0 0;\n  max-width:500px;\n  min-width:300px;\n  pointer-events:all;\n  position:relative !important; }\n  .bp3-toast.bp3-toast-enter, .bp3-toast.bp3-toast-appear{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active, .bp3-toast.bp3-toast-appear-active{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-enter ~ .bp3-toast, .bp3-toast.bp3-toast-appear ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active ~ .bp3-toast, .bp3-toast.bp3-toast-appear-active ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-exit{\n    opacity:1;\n    -webkit-filter:blur(0);\n            filter:blur(0); }\n  .bp3-toast.bp3-toast-exit-active{\n    opacity:0;\n    -webkit-filter:blur(10px);\n            filter:blur(10px);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:opacity, filter;\n    transition-property:opacity, filter, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast.bp3-toast-exit ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0); }\n  .bp3-toast.bp3-toast-exit-active ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px);\n    -webkit-transition-delay:50ms;\n            transition-delay:50ms;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast .bp3-button-group{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    padding:5px;\n    padding-left:0; }\n  .bp3-toast > .bp3-icon{\n    color:#5c7080;\n    margin:12px;\n    margin-right:0; }\n  .bp3-toast.bp3-dark,\n  .bp3-dark .bp3-toast{\n    background-color:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-toast.bp3-dark > .bp3-icon,\n    .bp3-dark .bp3-toast > .bp3-icon{\n      color:#a7b6c2; }\n  .bp3-toast[class*=\"bp3-intent-\"] a{\n    color:rgba(255, 255, 255, 0.7); }\n    .bp3-toast[class*=\"bp3-intent-\"] a:hover{\n      color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] > .bp3-icon{\n    color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::before,\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button .bp3-icon, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    color:rgba(255, 255, 255, 0.7) !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:focus{\n    outline-color:rgba(255, 255, 255, 0.5); }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:hover{\n    background-color:rgba(255, 255, 255, 0.15) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    background-color:rgba(255, 255, 255, 0.3) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::after{\n    background:rgba(255, 255, 255, 0.3) !important; }\n  .bp3-toast.bp3-intent-primary{\n    background-color:#137cbd;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-success{\n    background-color:#0f9960;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-warning{\n    background-color:#d9822b;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-danger{\n    background-color:#db3737;\n    color:#ffffff; }\n\n.bp3-toast-message{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  padding:11px;\n  word-break:break-word; }\n\n.bp3-toast-container{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box !important;\n  display:-ms-flexbox !important;\n  display:flex !important;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  left:0;\n  overflow:hidden;\n  padding:0 20px 20px;\n  pointer-events:none;\n  right:0;\n  z-index:40; }\n  .bp3-toast-container.bp3-toast-container-in-portal{\n    position:fixed; }\n  .bp3-toast-container.bp3-toast-container-inline{\n    position:absolute; }\n  .bp3-toast-container.bp3-toast-container-top{\n    top:0; }\n  .bp3-toast-container.bp3-toast-container-bottom{\n    bottom:0;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:reverse;\n        -ms-flex-direction:column-reverse;\n            flex-direction:column-reverse;\n    top:auto; }\n  .bp3-toast-container.bp3-toast-container-left{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start; }\n  .bp3-toast-container.bp3-toast-container-right{\n    -webkit-box-align:end;\n        -ms-flex-align:end;\n            align-items:flex-end; }\n\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active) ~ .bp3-toast, .bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active) ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-exit-active ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-leave-active ~ .bp3-toast{\n  -webkit-transform:translateY(60px);\n          transform:translateY(60px); }\n.bp3-tooltip{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1); }\n  .bp3-tooltip .bp3-popover-arrow{\n    height:22px;\n    position:absolute;\n    width:22px; }\n    .bp3-tooltip .bp3-popover-arrow::before{\n      height:14px;\n      margin:4px;\n      width:14px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip{\n    margin-bottom:11px;\n    margin-top:-11px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n      bottom:-8px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip{\n    margin-left:11px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n      left:-8px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip{\n    margin-top:11px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n      top:-8px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip{\n    margin-left:-11px;\n    margin-right:11px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n      right:-8px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-tooltip > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-tooltip > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n    top:-0.22183px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n    right:-0.22183px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n    left:-0.22183px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n    bottom:-0.22183px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-tooltip .bp3-popover-content{\n    background:#394b59;\n    color:#f5f8fa; }\n  .bp3-tooltip .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-tooltip .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-tooltip .bp3-popover-arrow-fill{\n    fill:#394b59; }\n  .bp3-popover-enter > .bp3-tooltip, .bp3-popover-appear > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8); }\n  .bp3-popover-enter-active > .bp3-tooltip, .bp3-popover-appear-active > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover-exit > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tooltip .bp3-popover-content{\n    padding:10px 12px; }\n  .bp3-tooltip.bp3-dark,\n  .bp3-dark .bp3-tooltip{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-tooltip .bp3-popover-content{\n      background:#e1e8ed;\n      color:#394b59; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-fill{\n      fill:#e1e8ed; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-content{\n    background:#137cbd;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-arrow-fill{\n    fill:#137cbd; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-content{\n    background:#0f9960;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-arrow-fill{\n    fill:#0f9960; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-content{\n    background:#d9822b;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-arrow-fill{\n    fill:#d9822b; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-content{\n    background:#db3737;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-arrow-fill{\n    fill:#db3737; }\n\n.bp3-tooltip-indicator{\n  border-bottom:dotted 1px;\n  cursor:help; }\n.bp3-tree .bp3-icon, .bp3-tree .bp3-icon-standard, .bp3-tree .bp3-icon-large{\n  color:#5c7080; }\n  .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-tree .bp3-icon.bp3-intent-success, .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-tree-node-list{\n  list-style:none;\n  margin:0;\n  padding-left:0; }\n\n.bp3-tree-root{\n  background-color:transparent;\n  cursor:default;\n  padding-left:0;\n  position:relative; }\n\n.bp3-tree-node-content-0{\n  padding-left:0px; }\n\n.bp3-tree-node-content-1{\n  padding-left:23px; }\n\n.bp3-tree-node-content-2{\n  padding-left:46px; }\n\n.bp3-tree-node-content-3{\n  padding-left:69px; }\n\n.bp3-tree-node-content-4{\n  padding-left:92px; }\n\n.bp3-tree-node-content-5{\n  padding-left:115px; }\n\n.bp3-tree-node-content-6{\n  padding-left:138px; }\n\n.bp3-tree-node-content-7{\n  padding-left:161px; }\n\n.bp3-tree-node-content-8{\n  padding-left:184px; }\n\n.bp3-tree-node-content-9{\n  padding-left:207px; }\n\n.bp3-tree-node-content-10{\n  padding-left:230px; }\n\n.bp3-tree-node-content-11{\n  padding-left:253px; }\n\n.bp3-tree-node-content-12{\n  padding-left:276px; }\n\n.bp3-tree-node-content-13{\n  padding-left:299px; }\n\n.bp3-tree-node-content-14{\n  padding-left:322px; }\n\n.bp3-tree-node-content-15{\n  padding-left:345px; }\n\n.bp3-tree-node-content-16{\n  padding-left:368px; }\n\n.bp3-tree-node-content-17{\n  padding-left:391px; }\n\n.bp3-tree-node-content-18{\n  padding-left:414px; }\n\n.bp3-tree-node-content-19{\n  padding-left:437px; }\n\n.bp3-tree-node-content-20{\n  padding-left:460px; }\n\n.bp3-tree-node-content{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:30px;\n  padding-right:5px;\n  width:100%; }\n  .bp3-tree-node-content:hover{\n    background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-tree-node-caret,\n.bp3-tree-node-caret-none{\n  min-width:30px; }\n\n.bp3-tree-node-caret{\n  color:#5c7080;\n  cursor:pointer;\n  padding:7px;\n  -webkit-transform:rotate(0deg);\n          transform:rotate(0deg);\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tree-node-caret:hover{\n    color:#182026; }\n  .bp3-dark .bp3-tree-node-caret{\n    color:#a7b6c2; }\n    .bp3-dark .bp3-tree-node-caret:hover{\n      color:#f5f8fa; }\n  .bp3-tree-node-caret.bp3-tree-node-caret-open{\n    -webkit-transform:rotate(90deg);\n            transform:rotate(90deg); }\n  .bp3-tree-node-caret.bp3-icon-standard::before{\n    content:\"\"; }\n\n.bp3-tree-node-icon{\n  margin-right:7px;\n  position:relative; }\n\n.bp3-tree-node-label{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-label span{\n    display:inline; }\n\n.bp3-tree-node-secondary-label{\n  padding:0 5px;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-secondary-label .bp3-popover-wrapper,\n  .bp3-tree-node-secondary-label .bp3-popover-target{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-content{\n  background-color:inherit;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-caret,\n.bp3-tree-node.bp3-disabled .bp3-tree-node-icon{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content,\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-standard, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-large{\n    color:#ffffff; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret::before{\n    color:rgba(255, 255, 255, 0.7); }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret:hover::before{\n    color:#ffffff; }\n\n.bp3-dark .bp3-tree-node-content:hover{\n  background-color:rgba(92, 112, 128, 0.3); }\n\n.bp3-dark .bp3-tree .bp3-icon, .bp3-dark .bp3-tree .bp3-icon-standard, .bp3-dark .bp3-tree .bp3-icon-large{\n  color:#a7b6c2; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-dark .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n.bp3-omnibar{\n  -webkit-filter:blur(0);\n          filter:blur(0);\n  opacity:1;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  left:calc(50% - 250px);\n  top:20vh;\n  width:500px;\n  z-index:21; }\n  .bp3-omnibar.bp3-overlay-enter, .bp3-omnibar.bp3-overlay-appear{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2; }\n  .bp3-omnibar.bp3-overlay-enter-active, .bp3-omnibar.bp3-overlay-appear-active{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar.bp3-overlay-exit{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1; }\n  .bp3-omnibar.bp3-overlay-exit-active{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar .bp3-input{\n    background-color:transparent;\n    border-radius:0; }\n    .bp3-omnibar .bp3-input, .bp3-omnibar .bp3-input:focus{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-omnibar .bp3-menu{\n    background-color:transparent;\n    border-radius:0;\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n    max-height:calc(60vh - 40px);\n    overflow:auto; }\n    .bp3-omnibar .bp3-menu:empty{\n      display:none; }\n  .bp3-dark .bp3-omnibar, .bp3-omnibar.bp3-dark{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-omnibar-overlay .bp3-overlay-backdrop{\n  background-color:rgba(16, 22, 26, 0.2); }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n\n.bp3-multi-select{\n  min-width:150px; }\n\n.bp3-multi-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto; }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* This file was auto-generated by ensureUiComponents() in @jupyterlab/buildutils */\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n/* Icons urls */\n\n:root {\n  --jp-icon-add: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDEzaC02djZoLTJ2LTZINXYtMmg2VjVoMnY2aDZ2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-bug: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0yMCA4aC0yLjgxYy0uNDUtLjc4LTEuMDctMS40NS0xLjgyLTEuOTZMMTcgNC40MSAxNS41OSAzbC0yLjE3IDIuMTdDMTIuOTYgNS4wNiAxMi40OSA1IDEyIDVjLS40OSAwLS45Ni4wNi0xLjQxLjE3TDguNDEgMyA3IDQuNDFsMS42MiAxLjYzQzcuODggNi41NSA3LjI2IDcuMjIgNi44MSA4SDR2MmgyLjA5Yy0uMDUuMzMtLjA5LjY2LS4wOSAxdjFINHYyaDJ2MWMwIC4zNC4wNC42Ny4wOSAxSDR2MmgyLjgxYzEuMDQgMS43OSAyLjk3IDMgNS4xOSAzczQuMTUtMS4yMSA1LjE5LTNIMjB2LTJoLTIuMDljLjA1LS4zMy4wOS0uNjYuMDktMXYtMWgydi0yaC0ydi0xYzAtLjM0LS4wNC0uNjctLjA5LTFIMjBWOHptLTYgOGgtNHYtMmg0djJ6bTAtNGgtNHYtMmg0djJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-build: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE0LjkgMTcuNDVDMTYuMjUgMTcuNDUgMTcuMzUgMTYuMzUgMTcuMzUgMTVDMTcuMzUgMTMuNjUgMTYuMjUgMTIuNTUgMTQuOSAxMi41NUMxMy41NCAxMi41NSAxMi40NSAxMy42NSAxMi40NSAxNUMxMi40NSAxNi4zNSAxMy41NCAxNy40NSAxNC45IDE3LjQ1Wk0yMC4xIDE1LjY4TDIxLjU4IDE2Ljg0QzIxLjcxIDE2Ljk1IDIxLjc1IDE3LjEzIDIxLjY2IDE3LjI5TDIwLjI2IDE5LjcxQzIwLjE3IDE5Ljg2IDIwIDE5LjkyIDE5LjgzIDE5Ljg2TDE4LjA5IDE5LjE2QzE3LjczIDE5LjQ0IDE3LjMzIDE5LjY3IDE2LjkxIDE5Ljg1TDE2LjY0IDIxLjdDMTYuNjIgMjEuODcgMTYuNDcgMjIgMTYuMyAyMkgxMy41QzEzLjMyIDIyIDEzLjE4IDIxLjg3IDEzLjE1IDIxLjdMMTIuODkgMTkuODVDMTIuNDYgMTkuNjcgMTIuMDcgMTkuNDQgMTEuNzEgMTkuMTZMOS45NjAwMiAxOS44NkM5LjgxMDAyIDE5LjkyIDkuNjIwMDIgMTkuODYgOS41NDAwMiAxOS43MUw4LjE0MDAyIDE3LjI5QzguMDUwMDIgMTcuMTMgOC4wOTAwMiAxNi45NSA4LjIyMDAyIDE2Ljg0TDkuNzAwMDIgMTUuNjhMOS42NTAwMSAxNUw5LjcwMDAyIDE0LjMxTDguMjIwMDIgMTMuMTZDOC4wOTAwMiAxMy4wNSA4LjA1MDAyIDEyLjg2IDguMTQwMDIgMTIuNzFMOS41NDAwMiAxMC4yOUM5LjYyMDAyIDEwLjEzIDkuODEwMDIgMTAuMDcgOS45NjAwMiAxMC4xM0wxMS43MSAxMC44NEMxMi4wNyAxMC41NiAxMi40NiAxMC4zMiAxMi44OSAxMC4xNUwxMy4xNSA4LjI4OTk4QzEzLjE4IDguMTI5OTggMTMuMzIgNy45OTk5OCAxMy41IDcuOTk5OThIMTYuM0MxNi40NyA3Ljk5OTk4IDE2LjYyIDguMTI5OTggMTYuNjQgOC4yODk5OEwxNi45MSAxMC4xNUMxNy4zMyAxMC4zMiAxNy43MyAxMC41NiAxOC4wOSAxMC44NEwxOS44MyAxMC4xM0MyMCAxMC4wNyAyMC4xNyAxMC4xMyAyMC4yNiAxMC4yOUwyMS42NiAxMi43MUMyMS43NSAxMi44NiAyMS43MSAxMy4wNSAyMS41OCAxMy4xNkwyMC4xIDE0LjMxTDIwLjE1IDE1TDIwLjEgMTUuNjhaIi8+CiAgICA8cGF0aCBkPSJNNy4zMjk2NiA3LjQ0NDU0QzguMDgzMSA3LjAwOTU0IDguMzM5MzIgNi4wNTMzMiA3LjkwNDMyIDUuMjk5ODhDNy40NjkzMiA0LjU0NjQzIDYuNTA4MSA0LjI4MTU2IDUuNzU0NjYgNC43MTY1NkM1LjM5MTc2IDQuOTI2MDggNS4xMjY5NSA1LjI3MTE4IDUuMDE4NDkgNS42NzU5NEM0LjkxMDA0IDYuMDgwNzEgNC45NjY4MiA2LjUxMTk4IDUuMTc2MzQgNi44NzQ4OEM1LjYxMTM0IDcuNjI4MzIgNi41NzYyMiA3Ljg3OTU0IDcuMzI5NjYgNy40NDQ1NFpNOS42NTcxOCA0Ljc5NTkzTDEwLjg2NzIgNC45NTE3OUMxMC45NjI4IDQuOTc3NDEgMTEuMDQwMiA1LjA3MTMzIDExLjAzODIgNS4xODc5M0wxMS4wMzg4IDYuOTg4OTNDMTEuMDQ1NSA3LjEwMDU0IDEwLjk2MTYgNy4xOTUxOCAxMC44NTUgNy4yMTA1NEw5LjY2MDAxIDcuMzgwODNMOS4yMzkxNSA4LjEzMTg4TDkuNjY5NjEgOS4yNTc0NUM5LjcwNzI5IDkuMzYyNzEgOS42NjkzNCA5LjQ3Njk5IDkuNTc0MDggOS41MzE5OUw4LjAxNTIzIDEwLjQzMkM3LjkxMTMxIDEwLjQ5MiA3Ljc5MzM3IDEwLjQ2NzcgNy43MjEwNSAxMC4zODI0TDYuOTg3NDggOS40MzE4OEw2LjEwOTMxIDkuNDMwODNMNS4zNDcwNCAxMC4zOTA1QzUuMjg5MDkgMTAuNDcwMiA1LjE3MzgzIDEwLjQ5MDUgNS4wNzE4NyAxMC40MzM5TDMuNTEyNDUgOS41MzI5M0MzLjQxMDQ5IDkuNDc2MzMgMy4zNzY0NyA5LjM1NzQxIDMuNDEwNzUgOS4yNTY3OUwzLjg2MzQ3IDguMTQwOTNMMy42MTc0OSA3Ljc3NDg4TDMuNDIzNDcgNy4zNzg4M0wyLjIzMDc1IDcuMjEyOTdDMi4xMjY0NyA3LjE5MjM1IDIuMDQwNDkgNy4xMDM0MiAyLjA0MjQ1IDYuOTg2ODJMMi4wNDE4NyA1LjE4NTgyQzIuMDQzODMgNS4wNjkyMiAyLjExOTA5IDQuOTc5NTggMi4yMTcwNCA0Ljk2OTIyTDMuNDIwNjUgNC43OTM5M0wzLjg2NzQ5IDQuMDI3ODhMMy40MTEwNSAyLjkxNzMxQzMuMzczMzcgMi44MTIwNCAzLjQxMTMxIDIuNjk3NzYgMy41MTUyMyAyLjYzNzc2TDUuMDc0MDggMS43Mzc3NkM1LjE2OTM0IDEuNjgyNzYgNS4yODcyOSAxLjcwNzA0IDUuMzU5NjEgMS43OTIzMUw2LjExOTE1IDIuNzI3ODhMNi45ODAwMSAyLjczODkzTDcuNzI0OTYgMS43ODkyMkM3Ljc5MTU2IDEuNzA0NTggNy45MTU0OCAxLjY3OTIyIDguMDA4NzkgMS43NDA4Mkw5LjU2ODIxIDIuNjQxODJDOS42NzAxNyAyLjY5ODQyIDkuNzEyODUgMi44MTIzNCA5LjY4NzIzIDIuOTA3OTdMOS4yMTcxOCA0LjAzMzgzTDkuNDYzMTYgNC4zOTk4OEw5LjY1NzE4IDQuNzk1OTNaIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iOS45LDEzLjYgMy42LDcuNCA0LjQsNi42IDkuOSwxMi4yIDE1LjQsNi43IDE2LjEsNy40ICIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNS45TDksOS43bDMuOC0zLjhsMS4yLDEuMmwtNC45LDVsLTQuOS01TDUuMiw1Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNy41TDksMTEuMmwzLjgtMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-left: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik0xMC44LDEyLjhMNy4xLDlsMy44LTMuOGwwLDcuNkgxMC44eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-right: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik03LjIsNS4yTDEwLjksOWwtMy44LDMuOFY1LjJINy4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-up-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iMTUuNCwxMy4zIDkuOSw3LjcgNC40LDEzLjIgMy42LDEyLjUgOS45LDYuMyAxNi4xLDEyLjYgIi8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-up: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik01LjIsMTAuNUw5LDYuOGwzLjgsMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-case-sensitive: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgogIDxnIGNsYXNzPSJqcC1pY29uLWFjY2VudDIiIGZpbGw9IiNGRkYiPgogICAgPHBhdGggZD0iTTcuNiw4aDAuOWwzLjUsOGgtMS4xTDEwLDE0SDZsLTAuOSwySDRMNy42LDh6IE04LDkuMUw2LjQsMTNoMy4yTDgsOS4xeiIvPgogICAgPHBhdGggZD0iTTE2LjYsOS44Yy0wLjIsMC4xLTAuNCwwLjEtMC43LDAuMWMtMC4yLDAtMC40LTAuMS0wLjYtMC4yYy0wLjEtMC4xLTAuMi0wLjQtMC4yLTAuNyBjLTAuMywwLjMtMC42LDAuNS0wLjksMC43Yy0wLjMsMC4xLTAuNywwLjItMS4xLDAuMmMtMC4zLDAtMC41LDAtMC43LTAuMWMtMC4yLTAuMS0wLjQtMC4yLTAuNi0wLjNjLTAuMi0wLjEtMC4zLTAuMy0wLjQtMC41IGMtMC4xLTAuMi0wLjEtMC40LTAuMS0wLjdjMC0wLjMsMC4xLTAuNiwwLjItMC44YzAuMS0wLjIsMC4zLTAuNCwwLjQtMC41QzEyLDcsMTIuMiw2LjksMTIuNSw2LjhjMC4yLTAuMSwwLjUtMC4xLDAuNy0wLjIgYzAuMy0wLjEsMC41LTAuMSwwLjctMC4xYzAuMiwwLDAuNC0wLjEsMC42LTAuMWMwLjIsMCwwLjMtMC4xLDAuNC0wLjJjMC4xLTAuMSwwLjItMC4yLDAuMi0wLjRjMC0xLTEuMS0xLTEuMy0xIGMtMC40LDAtMS40LDAtMS40LDEuMmgtMC45YzAtMC40LDAuMS0wLjcsMC4yLTFjMC4xLTAuMiwwLjMtMC40LDAuNS0wLjZjMC4yLTAuMiwwLjUtMC4zLDAuOC0wLjNDMTMuMyw0LDEzLjYsNCwxMy45LDQgYzAuMywwLDAuNSwwLDAuOCwwLjFjMC4zLDAsMC41LDAuMSwwLjcsMC4yYzAuMiwwLjEsMC40LDAuMywwLjUsMC41QzE2LDUsMTYsNS4yLDE2LDUuNnYyLjljMCwwLjIsMCwwLjQsMCwwLjUgYzAsMC4xLDAuMSwwLjIsMC4zLDAuMmMwLjEsMCwwLjIsMCwwLjMsMFY5Ljh6IE0xNS4yLDYuOWMtMS4yLDAuNi0zLjEsMC4yLTMuMSwxLjRjMCwxLjQsMy4xLDEsMy4xLTAuNVY2Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-check: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik05IDE2LjE3TDQuODMgMTJsLTEuNDIgMS40MUw5IDE5IDIxIDdsLTEuNDEtMS40MXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-circle-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDJDNi40NyAyIDIgNi40NyAyIDEyczQuNDcgMTAgMTAgMTAgMTAtNC40NyAxMC0xMFMxNy41MyAyIDEyIDJ6bTAgMThjLTQuNDEgMC04LTMuNTktOC04czMuNTktOCA4LTggOCAzLjU5IDggOC0zLjU5IDgtOCA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-circle: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjgiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-clear: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8bWFzayBpZD0iZG9udXRIb2xlIj4KICAgIDxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0id2hpdGUiIC8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSI4IiBmaWxsPSJibGFjayIvPgogIDwvbWFzaz4KCiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxyZWN0IGhlaWdodD0iMTgiIHdpZHRoPSIyIiB4PSIxMSIgeT0iMyIgdHJhbnNmb3JtPSJyb3RhdGUoMzE1LCAxMiwgMTIpIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIgbWFzaz0idXJsKCNkb251dEhvbGUpIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-close: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1ub25lIGpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIGpwLWljb24zLWhvdmVyIiBmaWxsPSJub25lIj4KICAgIDxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjExIi8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIGpwLWljb24tYWNjZW50Mi1ob3ZlciIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMTkgNi40MUwxNy41OSA1IDEyIDEwLjU5IDYuNDEgNSA1IDYuNDEgMTAuNTkgMTIgNSAxNy41OSA2LjQxIDE5IDEyIDEzLjQxIDE3LjU5IDE5IDE5IDE3LjU5IDEzLjQxIDEyeiIvPgogIDwvZz4KCiAgPGcgY2xhc3M9ImpwLWljb24tbm9uZSBqcC1pY29uLWJ1c3kiIGZpbGw9Im5vbmUiPgogICAgPGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-code: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTExLjQgMTguNkw2LjggMTRMMTEuNCA5LjRMMTAgOEw0IDE0TDEwIDIwTDExLjQgMTguNlpNMTYuNiAxOC42TDIxLjIgMTRMMTYuNiA5LjRMMTggOEwyNCAxNEwxOCAyMEwxNi42IDE4LjZWMTguNloiLz4KCTwvZz4KPC9zdmc+Cg==);\n  --jp-icon-console: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwMCAyMDAiPgogIDxnIGNsYXNzPSJqcC1pY29uLWJyYW5kMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMjg4RDEiPgogICAgPHBhdGggZD0iTTIwIDE5LjhoMTYwdjE1OS45SDIweiIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNmZmYiPgogICAgPHBhdGggZD0iTTEwNSAxMjcuM2g0MHYxMi44aC00MHpNNTEuMSA3N0w3NCA5OS45bC0yMy4zIDIzLjMgMTAuNSAxMC41IDIzLjMtMjMuM0w5NSA5OS45IDg0LjUgODkuNCA2MS42IDY2LjV6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-copy: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTExLjksMUgzLjJDMi40LDEsMS43LDEuNywxLjcsMi41djEwLjJoMS41VjIuNWg4LjdWMXogTTE0LjEsMy45aC04Yy0wLjgsMC0xLjUsMC43LTEuNSwxLjV2MTAuMmMwLDAuOCwwLjcsMS41LDEuNSwxLjVoOCBjMC44LDAsMS41LTAuNywxLjUtMS41VjUuNEMxNS41LDQuNiwxNC45LDMuOSwxNC4xLDMuOXogTTE0LjEsMTUuNWgtOFY1LjRoOFYxNS41eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-copyright: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDI0IDI0IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCI+CiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0xMS44OCw5LjE0YzEuMjgsMC4wNiwxLjYxLDEuMTUsMS42MywxLjY2aDEuNzljLTAuMDgtMS45OC0xLjQ5LTMuMTktMy40NS0zLjE5QzkuNjQsNy42MSw4LDksOCwxMi4xNCBjMCwxLjk0LDAuOTMsNC4yNCwzLjg0LDQuMjRjMi4yMiwwLDMuNDEtMS42NSwzLjQ0LTIuOTVoLTEuNzljLTAuMDMsMC41OS0wLjQ1LDEuMzgtMS42MywxLjQ0QzEwLjU1LDE0LjgzLDEwLDEzLjgxLDEwLDEyLjE0IEMxMCw5LjI1LDExLjI4LDkuMTYsMTEuODgsOS4xNHogTTEyLDJDNi40OCwyLDIsNi40OCwyLDEyczQuNDgsMTAsMTAsMTBzMTAtNC40OCwxMC0xMFMxNy41MiwyLDEyLDJ6IE0xMiwyMGMtNC40MSwwLTgtMy41OS04LTggczMuNTktOCw4LThzOCwzLjU5LDgsOFMxNi40MSwyMCwxMiwyMHoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-cut: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkuNjQgNy42NGMuMjMtLjUuMzYtMS4wNS4zNi0xLjY0IDAtMi4yMS0xLjc5LTQtNC00UzIgMy43OSAyIDZzMS43OSA0IDQgNGMuNTkgMCAxLjE0LS4xMyAxLjY0LS4zNkwxMCAxMmwtMi4zNiAyLjM2QzcuMTQgMTQuMTMgNi41OSAxNCA2IDE0Yy0yLjIxIDAtNCAxLjc5LTQgNHMxLjc5IDQgNCA0IDQtMS43OSA0LTRjMC0uNTktLjEzLTEuMTQtLjM2LTEuNjRMMTIgMTRsNyA3aDN2LTFMOS42NCA3LjY0ek02IDhjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTAgMTJjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTYtNy41Yy0uMjggMC0uNS0uMjItLjUtLjVzLjIyLS41LjUtLjUuNS4yMi41LjUtLjIyLjUtLjUuNXpNMTkgM2wtNiA2IDIgMiA3LTdWM3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-download: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDloLTRWM0g5djZINWw3IDcgNy03ek01IDE4djJoMTR2LTJINXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-edit: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMgMTcuMjVWMjFoMy43NUwxNy44MSA5Ljk0bC0zLjc1LTMuNzVMMyAxNy4yNXpNMjAuNzEgNy4wNGMuMzktLjM5LjM5LTEuMDIgMC0xLjQxbC0yLjM0LTIuMzRjLS4zOS0uMzktMS4wMi0uMzktMS40MSAwbC0xLjgzIDEuODMgMy43NSAzLjc1IDEuODMtMS44M3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-ellipses: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iNSIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxOSIgY3k9IjEyIiByPSIyIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-extension: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwLjUgMTFIMTlWN2MwLTEuMS0uOS0yLTItMmgtNFYzLjVDMTMgMi4xMiAxMS44OCAxIDEwLjUgMVM4IDIuMTIgOCAzLjVWNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAydjMuOEgzLjVjMS40OSAwIDIuNyAxLjIxIDIuNyAyLjdzLTEuMjEgMi43LTIuNyAyLjdIMlYyMGMwIDEuMS45IDIgMiAyaDMuOHYtMS41YzAtMS40OSAxLjIxLTIuNyAyLjctMi43IDEuNDkgMCAyLjcgMS4yMSAyLjcgMi43VjIySDE3YzEuMSAwIDItLjkgMi0ydi00aDEuNWMxLjM4IDAgMi41LTEuMTIgMi41LTIuNVMyMS44OCAxMSAyMC41IDExeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-fast-forward: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTQgMThsOC41LTZMNCA2djEyem05LTEydjEybDguNS02TDEzIDZ6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-file-upload: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkgMTZoNnYtNmg0bC03LTctNyA3aDR6bS00IDJoMTR2Mkg1eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-file: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuMyA4LjJsLTUuNS01LjVjLS4zLS4zLS43LS41LTEuMi0uNUgzLjljLS44LjEtMS42LjktMS42IDEuOHYxNC4xYzAgLjkuNyAxLjYgMS42IDEuNmgxNC4yYy45IDAgMS42LS43IDEuNi0xLjZWOS40Yy4xLS41LS4xLS45LS40LTEuMnptLTUuOC0zLjNsMy40IDMuNmgtMy40VjQuOXptMy45IDEyLjdINC43Yy0uMSAwLS4yIDAtLjItLjJWNC43YzAtLjIuMS0uMy4yLS4zaDcuMnY0LjRzMCAuOC4zIDEuMWMuMy4zIDEuMS4zIDEuMS4zaDQuM3Y3LjJzLS4xLjItLjIuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-filter-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEwIDE4aDR2LTJoLTR2MnpNMyA2djJoMThWNkgzem0zIDdoMTJ2LTJINnYyeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY4YzAtMS4xLS45LTItMi0yaC04bC0yLTJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-html5: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMDAiIGQ9Ik0xMDguNCAwaDIzdjIyLjhoMjEuMlYwaDIzdjY5aC0yM1Y0NmgtMjF2MjNoLTIzLjJNMjA2IDIzaC0yMC4zVjBoNjMuN3YyM0gyMjl2NDZoLTIzbTUzLjUtNjloMjQuMWwxNC44IDI0LjNMMzEzLjIgMGgyNC4xdjY5aC0yM1YzNC44bC0xNi4xIDI0LjgtMTYuMS0yNC44VjY5aC0yMi42bTg5LjItNjloMjN2NDYuMmgzMi42VjY5aC01NS42Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI2U0NGQyNiIgZD0iTTEwNy42IDQ3MWwtMzMtMzcwLjRoMzYyLjhsLTMzIDM3MC4yTDI1NS43IDUxMiIvPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNmMTY1MjkiIGQ9Ik0yNTYgNDgwLjVWMTMxaDE0OC4zTDM3NiA0NDciLz4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNlYmViZWIiIGQ9Ik0xNDIgMTc2LjNoMTE0djQ1LjRoLTY0LjJsNC4yIDQ2LjVoNjB2NDUuM0gxNTQuNG0yIDIyLjhIMjAybDMuMiAzNi4zIDUwLjggMTMuNnY0Ny40bC05My4yLTI2Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIiBmaWxsPSIjZmZmIiBkPSJNMzY5LjYgMTc2LjNIMjU1Ljh2NDUuNGgxMDkuNm0tNC4xIDQ2LjVIMjU1Ljh2NDUuNGg1NmwtNS4zIDU5LTUwLjcgMTMuNnY0Ny4ybDkzLTI1LjgiLz4KPC9zdmc+Cg==);\n  --jp-icon-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1icmFuZDQganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNGRkYiIGQ9Ik0yLjIgMi4yaDE3LjV2MTcuNUgyLjJ6Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzNGNTFCNSIgZD0iTTIuMiAyLjJ2MTcuNWgxNy41bC4xLTE3LjVIMi4yem0xMi4xIDIuMmMxLjIgMCAyLjIgMSAyLjIgMi4ycy0xIDIuMi0yLjIgMi4yLTIuMi0xLTIuMi0yLjIgMS0yLjIgMi4yLTIuMnpNNC40IDE3LjZsMy4zLTguOCAzLjMgNi42IDIuMi0zLjIgNC40IDUuNEg0LjR6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-inspector: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY2YzAtMS4xLS45LTItMi0yem0tNSAxNEg0di00aDExdjR6bTAtNUg0VjloMTF2NHptNSA1aC00VjloNHY5eiIvPgo8L3N2Zz4K);\n  --jp-icon-json: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNGOUE4MjUiPgogICAgPHBhdGggZD0iTTIwLjIgMTEuOGMtMS42IDAtMS43LjUtMS43IDEgMCAuNC4xLjkuMSAxLjMuMS41LjEuOS4xIDEuMyAwIDEuNy0xLjQgMi4zLTMuNSAyLjNoLS45di0xLjloLjVjMS4xIDAgMS40IDAgMS40LS44IDAtLjMgMC0uNi0uMS0xIDAtLjQtLjEtLjgtLjEtMS4yIDAtMS4zIDAtMS44IDEuMy0yLTEuMy0uMi0xLjMtLjctMS4zLTIgMC0uNC4xLS44LjEtMS4yLjEtLjQuMS0uNy4xLTEgMC0uOC0uNC0uNy0xLjQtLjhoLS41VjQuMWguOWMyLjIgMCAzLjUuNyAzLjUgMi4zIDAgLjQtLjEuOS0uMSAxLjMtLjEuNS0uMS45LS4xIDEuMyAwIC41LjIgMSAxLjcgMXYxLjh6TTEuOCAxMC4xYzEuNiAwIDEuNy0uNSAxLjctMSAwLS40LS4xLS45LS4xLTEuMy0uMS0uNS0uMS0uOS0uMS0xLjMgMC0xLjYgMS40LTIuMyAzLjUtMi4zaC45djEuOWgtLjVjLTEgMC0xLjQgMC0xLjQuOCAwIC4zIDAgLjYuMSAxIDAgLjIuMS42LjEgMSAwIDEuMyAwIDEuOC0xLjMgMkM2IDExLjIgNiAxMS43IDYgMTNjMCAuNC0uMS44LS4xIDEuMi0uMS4zLS4xLjctLjEgMSAwIC44LjMuOCAxLjQuOGguNXYxLjloLS45Yy0yLjEgMC0zLjUtLjYtMy41LTIuMyAwLS40LjEtLjkuMS0xLjMuMS0uNS4xLS45LjEtMS4zIDAtLjUtLjItMS0xLjctMXYtMS45eiIvPgogICAgPGNpcmNsZSBjeD0iMTEiIGN5PSIxMy44IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY3g9IjExIiBjeT0iOC4yIiByPSIyLjEiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-julia: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDMyNSAzMDAiPgogIDxnIGNsYXNzPSJqcC1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjY2IzYzMzIj4KICAgIDxwYXRoIGQ9Ik0gMTUwLjg5ODQzOCAyMjUgQyAxNTAuODk4NDM4IDI2Ni40MjE4NzUgMTE3LjMyMDMxMiAzMDAgNzUuODk4NDM4IDMwMCBDIDM0LjQ3NjU2MiAzMDAgMC44OTg0MzggMjY2LjQyMTg3NSAwLjg5ODQzOCAyMjUgQyAwLjg5ODQzOCAxODMuNTc4MTI1IDM0LjQ3NjU2MiAxNTAgNzUuODk4NDM4IDE1MCBDIDExNy4zMjAzMTIgMTUwIDE1MC44OTg0MzggMTgzLjU3ODEyNSAxNTAuODk4NDM4IDIyNSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzM4OTgyNiI+CiAgICA8cGF0aCBkPSJNIDIzNy41IDc1IEMgMjM3LjUgMTE2LjQyMTg3NSAyMDMuOTIxODc1IDE1MCAxNjIuNSAxNTAgQyAxMjEuMDc4MTI1IDE1MCA4Ny41IDExNi40MjE4NzUgODcuNSA3NSBDIDg3LjUgMzMuNTc4MTI1IDEyMS4wNzgxMjUgMCAxNjIuNSAwIEMgMjAzLjkyMTg3NSAwIDIzNy41IDMzLjU3ODEyNSAyMzcuNSA3NSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzk1NThiMiI+CiAgICA8cGF0aCBkPSJNIDMyNC4xMDE1NjIgMjI1IEMgMzI0LjEwMTU2MiAyNjYuNDIxODc1IDI5MC41MjM0MzggMzAwIDI0OS4xMDE1NjIgMzAwIEMgMjA3LjY3OTY4OCAzMDAgMTc0LjEwMTU2MiAyNjYuNDIxODc1IDE3NC4xMDE1NjIgMjI1IEMgMTc0LjEwMTU2MiAxODMuNTc4MTI1IDIwNy42Nzk2ODggMTUwIDI0OS4xMDE1NjIgMTUwIEMgMjkwLjUyMzQzOCAxNTAgMzI0LjEwMTU2MiAxODMuNTc4MTI1IDMyNC4xMDE1NjIgMjI1Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-jupyter-favicon: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUyIiBoZWlnaHQ9IjE2NSIgdmlld0JveD0iMCAwIDE1MiAxNjUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA3ODk0NywgMTEwLjU4MjkyNykiIGQ9Ik03NS45NDIyODQyLDI5LjU4MDQ1NjEgQzQzLjMwMjM5NDcsMjkuNTgwNDU2MSAxNC43OTY3ODMyLDE3LjY1MzQ2MzQgMCwwIEM1LjUxMDgzMjExLDE1Ljg0MDY4MjkgMTUuNzgxNTM4OSwyOS41NjY3NzMyIDI5LjM5MDQ5NDcsMzkuMjc4NDE3MSBDNDIuOTk5Nyw0OC45ODk4NTM3IDU5LjI3MzcsNTQuMjA2NzgwNSA3NS45NjA1Nzg5LDU0LjIwNjc4MDUgQzkyLjY0NzQ1NzksNTQuMjA2NzgwNSAxMDguOTIxNDU4LDQ4Ljk4OTg1MzcgMTIyLjUzMDY2MywzOS4yNzg0MTcxIEMxMzYuMTM5NDUzLDI5LjU2Njc3MzIgMTQ2LjQxMDI4NCwxNS44NDA2ODI5IDE1MS45MjExNTgsMCBDMTM3LjA4Nzg2OCwxNy42NTM0NjM0IDEwOC41ODI1ODksMjkuNTgwNDU2MSA3NS45NDIyODQyLDI5LjU4MDQ1NjEgTDc1Ljk0MjI4NDIsMjkuNTgwNDU2MSBaIiAvPgogICAgPHBhdGggdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMzczNjgsIDAuNzA0ODc4KSIgZD0iTTc1Ljk3ODQ1NzksMjQuNjI2NDA3MyBDMTA4LjYxODc2MywyNC42MjY0MDczIDEzNy4xMjQ0NTgsMzYuNTUzNDQxNSAxNTEuOTIxMTU4LDU0LjIwNjc4MDUgQzE0Ni40MTAyODQsMzguMzY2MjIyIDEzNi4xMzk0NTMsMjQuNjQwMTMxNyAxMjIuNTMwNjYzLDE0LjkyODQ4NzggQzEwOC45MjE0NTgsNS4yMTY4NDM5IDkyLjY0NzQ1NzksMCA3NS45NjA1Nzg5LDAgQzU5LjI3MzcsMCA0Mi45OTk3LDUuMjE2ODQzOSAyOS4zOTA0OTQ3LDE0LjkyODQ4NzggQzE1Ljc4MTUzODksMjQuNjQwMTMxNyA1LjUxMDgzMjExLDM4LjM2NjIyMiAwLDU0LjIwNjc4MDUgQzE0LjgzMzA4MTYsMzYuNTg5OTI5MyA0My4zMzg1Njg0LDI0LjYyNjQwNzMgNzUuOTc4NDU3OSwyNC42MjY0MDczIEw3NS45Nzg0NTc5LDI0LjYyNjQwNzMgWiIgLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-jupyter: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzkiIGhlaWdodD0iNTEiIHZpZXdCb3g9IjAgMCAzOSA1MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTYzOCAtMjI4MSkiPgogICAgPGcgY2xhc3M9ImpwLWljb24td2FybjAiIGZpbGw9IiNGMzc3MjYiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5Ljc0IDIzMTEuOTgpIiBkPSJNIDE4LjI2NDYgNy4xMzQxMUMgMTAuNDE0NSA3LjEzNDExIDMuNTU4NzIgNC4yNTc2IDAgMEMgMS4zMjUzOSAzLjgyMDQgMy43OTU1NiA3LjEzMDgxIDcuMDY4NiA5LjQ3MzAzQyAxMC4zNDE3IDExLjgxNTIgMTQuMjU1NyAxMy4wNzM0IDE4LjI2OSAxMy4wNzM0QyAyMi4yODIzIDEzLjA3MzQgMjYuMTk2MyAxMS44MTUyIDI5LjQ2OTQgOS40NzMwM0MgMzIuNzQyNCA3LjEzMDgxIDM1LjIxMjYgMy44MjA0IDM2LjUzOCAwQyAzMi45NzA1IDQuMjU3NiAyNi4xMTQ4IDcuMTM0MTEgMTguMjY0NiA3LjEzNDExWiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5LjczIDIyODUuNDgpIiBkPSJNIDE4LjI3MzMgNS45MzkzMUMgMjYuMTIzNSA1LjkzOTMxIDMyLjk3OTMgOC44MTU4MyAzNi41MzggMTMuMDczNEMgMzUuMjEyNiA5LjI1MzAzIDMyLjc0MjQgNS45NDI2MiAyOS40Njk0IDMuNjAwNEMgMjYuMTk2MyAxLjI1ODE4IDIyLjI4MjMgMCAxOC4yNjkgMEMgMTQuMjU1NyAwIDEwLjM0MTcgMS4yNTgxOCA3LjA2ODYgMy42MDA0QyAzLjc5NTU2IDUuOTQyNjIgMS4zMjUzOSA5LjI1MzAzIDAgMTMuMDczNEMgMy41Njc0NSA4LjgyNDYzIDEwLjQyMzIgNS45MzkzMSAxOC4yNzMzIDUuOTM5MzFaIi8+CiAgICA8L2c+CiAgICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjY5LjMgMjI4MS4zMSkiIGQ9Ik0gNS44OTM1MyAyLjg0NEMgNS45MTg4OSAzLjQzMTY1IDUuNzcwODUgNC4wMTM2NyA1LjQ2ODE1IDQuNTE2NDVDIDUuMTY1NDUgNS4wMTkyMiA0LjcyMTY4IDUuNDIwMTUgNC4xOTI5OSA1LjY2ODUxQyAzLjY2NDMgNS45MTY4OCAzLjA3NDQ0IDYuMDAxNTEgMi40OTgwNSA1LjkxMTcxQyAxLjkyMTY2IDUuODIxOSAxLjM4NDYzIDUuNTYxNyAwLjk1NDg5OCA1LjE2NDAxQyAwLjUyNTE3IDQuNzY2MzMgMC4yMjIwNTYgNC4yNDkwMyAwLjA4MzkwMzcgMy42Nzc1N0MgLTAuMDU0MjQ4MyAzLjEwNjExIC0wLjAyMTIzIDIuNTA2MTcgMC4xNzg3ODEgMS45NTM2NEMgMC4zNzg3OTMgMS40MDExIDAuNzM2ODA5IDAuOTIwODE3IDEuMjA3NTQgMC41NzM1MzhDIDEuNjc4MjYgMC4yMjYyNTkgMi4yNDA1NSAwLjAyNzU5MTkgMi44MjMyNiAwLjAwMjY3MjI5QyAzLjYwMzg5IC0wLjAzMDcxMTUgNC4zNjU3MyAwLjI0OTc4OSA0Ljk0MTQyIDAuNzgyNTUxQyA1LjUxNzExIDEuMzE1MzEgNS44NTk1NiAyLjA1Njc2IDUuODkzNTMgMi44NDRaIi8+CiAgICAgIDxwYXRoIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE2MzkuOCAyMzIzLjgxKSIgZD0iTSA3LjQyNzg5IDMuNTgzMzhDIDcuNDYwMDggNC4zMjQzIDcuMjczNTUgNS4wNTgxOSA2Ljg5MTkzIDUuNjkyMTNDIDYuNTEwMzEgNi4zMjYwNyA1Ljk1MDc1IDYuODMxNTYgNS4yODQxMSA3LjE0NDZDIDQuNjE3NDcgNy40NTc2MyAzLjg3MzcxIDcuNTY0MTQgMy4xNDcwMiA3LjQ1MDYzQyAyLjQyMDMyIDcuMzM3MTIgMS43NDMzNiA3LjAwODcgMS4yMDE4NCA2LjUwNjk1QyAwLjY2MDMyOCA2LjAwNTIgMC4yNzg2MSA1LjM1MjY4IDAuMTA1MDE3IDQuNjMyMDJDIC0wLjA2ODU3NTcgMy45MTEzNSAtMC4wMjYyMzYxIDMuMTU0OTQgMC4yMjY2NzUgMi40NTg1NkMgMC40Nzk1ODcgMS43NjIxNyAwLjkzMTY5NyAxLjE1NzEzIDEuNTI1NzYgMC43MjAwMzNDIDIuMTE5ODMgMC4yODI5MzUgMi44MjkxNCAwLjAzMzQzOTUgMy41NjM4OSAwLjAwMzEzMzQ0QyA0LjU0NjY3IC0wLjAzNzQwMzMgNS41MDUyOSAwLjMxNjcwNiA2LjIyOTYxIDAuOTg3ODM1QyA2Ljk1MzkzIDEuNjU4OTYgNy4zODQ4NCAyLjU5MjM1IDcuNDI3ODkgMy41ODMzOEwgNy40Mjc4OSAzLjU4MzM4WiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM4LjM2IDIyODYuMDYpIiBkPSJNIDIuMjc0NzEgNC4zOTYyOUMgMS44NDM2MyA0LjQxNTA4IDEuNDE2NzEgNC4zMDQ0NSAxLjA0Nzk5IDQuMDc4NDNDIDAuNjc5MjY4IDMuODUyNCAwLjM4NTMyOCAzLjUyMTE0IDAuMjAzMzcxIDMuMTI2NTZDIDAuMDIxNDEzNiAyLjczMTk4IC0wLjA0MDM3OTggMi4yOTE4MyAwLjAyNTgxMTYgMS44NjE4MUMgMC4wOTIwMDMxIDEuNDMxOCAwLjI4MzIwNCAxLjAzMTI2IDAuNTc1MjEzIDAuNzEwODgzQyAwLjg2NzIyMiAwLjM5MDUxIDEuMjQ2OTEgMC4xNjQ3MDggMS42NjYyMiAwLjA2MjA1OTJDIDIuMDg1NTMgLTAuMDQwNTg5NyAyLjUyNTYxIC0wLjAxNTQ3MTQgMi45MzA3NiAwLjEzNDIzNUMgMy4zMzU5MSAwLjI4Mzk0MSAzLjY4NzkyIDAuNTUxNTA1IDMuOTQyMjIgMC45MDMwNkMgNC4xOTY1MiAxLjI1NDYyIDQuMzQxNjkgMS42NzQzNiA0LjM1OTM1IDIuMTA5MTZDIDQuMzgyOTkgMi42OTEwNyA0LjE3Njc4IDMuMjU4NjkgMy43ODU5NyAzLjY4NzQ2QyAzLjM5NTE2IDQuMTE2MjQgMi44NTE2NiA0LjM3MTE2IDIuMjc0NzEgNC4zOTYyOUwgMi4yNzQ3MSA0LjM5NjI5WiIvPgogICAgPC9nPgogIDwvZz4+Cjwvc3ZnPgo=);\n  --jp-icon-jupyterlab-wordmark: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIHZpZXdCb3g9IjAgMCAxODYwLjggNDc1Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0RTRFNEUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ4MC4xMzY0MDEsIDY0LjI3MTQ5MykiPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMDAwMDAsIDU4Ljg3NTU2NikiPgogICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA4NzYwMywgMC4xNDAyOTQpIj4KICAgICAgICA8cGF0aCBkPSJNLTQyNi45LDE2OS44YzAsNDguNy0zLjcsNjQuNy0xMy42LDc2LjRjLTEwLjgsMTAtMjUsMTUuNS0zOS43LDE1LjVsMy43LDI5IGMyMi44LDAuMyw0NC44LTcuOSw2MS45LTIzLjFjMTcuOC0xOC41LDI0LTQ0LjEsMjQtODMuM1YwSC00Mjd2MTcwLjFMLTQyNi45LDE2OS44TC00MjYuOSwxNjkuOHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTU1LjA0NTI5NiwgNTYuODM3MTA0KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuNTYyNDUzLCAxLjc5OTg0MikiPgogICAgICAgIDxwYXRoIGQ9Ik0tMzEyLDE0OGMwLDIxLDAsMzkuNSwxLjcsNTUuNGgtMzEuOGwtMi4xLTMzLjNoLTAuOGMtNi43LDExLjYtMTYuNCwyMS4zLTI4LDI3LjkgYy0xMS42LDYuNi0yNC44LDEwLTM4LjIsOS44Yy0zMS40LDAtNjktMTcuNy02OS04OVYwaDM2LjR2MTEyLjdjMCwzOC43LDExLjYsNjQuNyw0NC42LDY0LjdjMTAuMy0wLjIsMjAuNC0zLjUsMjguOS05LjQgYzguNS01LjksMTUuMS0xNC4zLDE4LjktMjMuOWMyLjItNi4xLDMuMy0xMi41LDMuMy0xOC45VjAuMmgzNi40VjE0OEgtMzEyTC0zMTIsMTQ4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzOTAuMDEzMzIyLCA1My40Nzk2MzgpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS43MDY0NTgsIDAuMjMxNDI1KSI+CiAgICAgICAgPHBhdGggZD0iTS00NzguNiw3MS40YzAtMjYtMC44LTQ3LTEuNy02Ni43aDMyLjdsMS43LDM0LjhoMC44YzcuMS0xMi41LDE3LjUtMjIuOCwzMC4xLTI5LjcgYzEyLjUtNywyNi43LTEwLjMsNDEtOS44YzQ4LjMsMCw4NC43LDQxLjcsODQuNywxMDMuM2MwLDczLjEtNDMuNywxMDkuMi05MSwxMDkuMmMtMTIuMSwwLjUtMjQuMi0yLjItMzUtNy44IGMtMTAuOC01LjYtMTkuOS0xMy45LTI2LjYtMjQuMmgtMC44VjI5MWgtMzZ2LTIyMEwtNDc4LjYsNzEuNEwtNDc4LjYsNzEuNHogTS00NDIuNiwxMjUuNmMwLjEsNS4xLDAuNiwxMC4xLDEuNywxNS4xIGMzLDEyLjMsOS45LDIzLjMsMTkuOCwzMS4xYzkuOSw3LjgsMjIuMSwxMi4xLDM0LjcsMTIuMWMzOC41LDAsNjAuNy0zMS45LDYwLjctNzguNWMwLTQwLjctMjEuMS03NS42LTU5LjUtNzUuNiBjLTEyLjksMC40LTI1LjMsNS4xLTM1LjMsMTMuNGMtOS45LDguMy0xNi45LDE5LjctMTkuNiwzMi40Yy0xLjUsNC45LTIuMywxMC0yLjUsMTUuMVYxMjUuNkwtNDQyLjYsMTI1LjZMLTQ0Mi42LDEyNS42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MDYuNzQwNzI2LCA1Ni44MzcxMDQpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC43NTEyMjYsIDEuOTg5Mjk5KSI+CiAgICAgICAgPHBhdGggZD0iTS00NDAuOCwwbDQzLjcsMTIwLjFjNC41LDEzLjQsOS41LDI5LjQsMTIuOCw0MS43aDAuOGMzLjctMTIuMiw3LjktMjcuNywxMi44LTQyLjQgbDM5LjctMTE5LjJoMzguNUwtMzQ2LjksMTQ1Yy0yNiw2OS43LTQzLjcsMTA1LjQtNjguNiwxMjcuMmMtMTIuNSwxMS43LTI3LjksMjAtNDQuNiwyMy45bC05LjEtMzEuMSBjMTEuNy0zLjksMjIuNS0xMC4xLDMxLjgtMTguMWMxMy4yLTExLjEsMjMuNy0yNS4yLDMwLjYtNDEuMmMxLjUtMi44LDIuNS01LjcsMi45LTguOGMtMC4zLTMuMy0xLjItNi42LTIuNS05LjdMLTQ4MC4yLDAuMSBoMzkuN0wtNDQwLjgsMEwtNDQwLjgsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODIyLjc0ODEwNCwgMC4wMDAwMDApIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS40NjQwNTAsIDAuMzc4OTE0KSI+CiAgICAgICAgPHBhdGggZD0iTS00MTMuNywwdjU4LjNoNTJ2MjguMmgtNTJWMTk2YzAsMjUsNywzOS41LDI3LjMsMzkuNWM3LjEsMC4xLDE0LjItMC43LDIxLjEtMi41IGwxLjcsMjcuN2MtMTAuMywzLjctMjEuMyw1LjQtMzIuMiw1Yy03LjMsMC40LTE0LjYtMC43LTIxLjMtMy40Yy02LjgtMi43LTEyLjktNi44LTE3LjktMTIuMWMtMTAuMy0xMC45LTE0LjEtMjktMTQuMS01Mi45IFY4Ni41aC0zMVY1OC4zaDMxVjkuNkwtNDEzLjcsMEwtNDEzLjcsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOTc0LjQzMzI4NiwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuOTkwMDM0LCAwLjYxMDMzOSkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDQ1LjgsMTEzYzAuOCw1MCwzMi4yLDcwLjYsNjguNiw3MC42YzE5LDAuNiwzNy45LTMsNTUuMy0xMC41bDYuMiwyNi40IGMtMjAuOSw4LjktNDMuNSwxMy4xLTY2LjIsMTIuNmMtNjEuNSwwLTk4LjMtNDEuMi05OC4zLTEwMi41Qy00ODAuMiw0OC4yLTQ0NC43LDAtMzg2LjUsMGM2NS4yLDAsODIuNyw1OC4zLDgyLjcsOTUuNyBjLTAuMSw1LjgtMC41LDExLjUtMS4yLDE3LjJoLTE0MC42SC00NDUuOEwtNDQ1LjgsMTEzeiBNLTMzOS4yLDg2LjZjMC40LTIzLjUtOS41LTYwLjEtNTAuNC02MC4xIGMtMzYuOCwwLTUyLjgsMzQuNC01NS43LDYwLjFILTMzOS4yTC0zMzkuMiw4Ni42TC0zMzkuMiw4Ni42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjAxLjk2MTA1OCwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuMTc5NjQwLCAwLjcwNTA2OCkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDc4LjYsNjhjMC0yMy45LTAuNC00NC41LTEuNy02My40aDMxLjhsMS4yLDM5LjloMS43YzkuMS0yNy4zLDMxLTQ0LjUsNTUuMy00NC41IGMzLjUtMC4xLDcsMC40LDEwLjMsMS4ydjM0LjhjLTQuMS0wLjktOC4yLTEuMy0xMi40LTEuMmMtMjUuNiwwLTQzLjcsMTkuNy00OC43LDQ3LjRjLTEsNS43LTEuNiwxMS41LTEuNywxNy4ydjEwOC4zaC0zNlY2OCBMLTQ3OC42LDY4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCBkPSJNMTM1Mi4zLDMyNi4yaDM3VjI4aC0zN1YzMjYuMnogTTE2MDQuOCwzMjYuMmMtMi41LTEzLjktMy40LTMxLjEtMy40LTQ4Ljd2LTc2IGMwLTQwLjctMTUuMS04My4xLTc3LjMtODMuMWMtMjUuNiwwLTUwLDcuMS02Ni44LDE4LjFsOC40LDI0LjRjMTQuMy05LjIsMzQtMTUuMSw1My0xNS4xYzQxLjYsMCw0Ni4yLDMwLjIsNDYuMiw0N3Y0LjIgYy03OC42LTAuNC0xMjIuMywyNi41LTEyMi4zLDc1LjZjMCwyOS40LDIxLDU4LjQsNjIuMiw1OC40YzI5LDAsNTAuOS0xNC4zLDYyLjItMzAuMmgxLjNsMi45LDI1LjZIMTYwNC44eiBNMTU2NS43LDI1Ny43IGMwLDMuOC0wLjgsOC0yLjEsMTEuOGMtNS45LDE3LjItMjIuNywzNC00OS4yLDM0Yy0xOC45LDAtMzQuOS0xMS4zLTM0LjktMzUuM2MwLTM5LjUsNDUuOC00Ni42LDg2LjItNDUuOFYyNTcuN3ogTTE2OTguNSwzMjYuMiBsMS43LTMzLjZoMS4zYzE1LjEsMjYuOSwzOC43LDM4LjIsNjguMSwzOC4yYzQ1LjQsMCw5MS4yLTM2LjEsOTEuMi0xMDguOGMwLjQtNjEuNy0zNS4zLTEwMy43LTg1LjctMTAzLjcgYy0zMi44LDAtNTYuMywxNC43LTY5LjMsMzcuNGgtMC44VjI4aC0zNi42djI0NS43YzAsMTguMS0wLjgsMzguNi0xLjcsNTIuNUgxNjk4LjV6IE0xNzA0LjgsMjA4LjJjMC01LjksMS4zLTEwLjksMi4xLTE1LjEgYzcuNi0yOC4xLDMxLjEtNDUuNCw1Ni4zLTQ1LjRjMzkuNSwwLDYwLjUsMzQuOSw2MC41LDc1LjZjMCw0Ni42LTIzLjEsNzguMS02MS44LDc4LjFjLTI2LjksMC00OC4zLTE3LjYtNTUuNS00My4zIGMtMC44LTQuMi0xLjctOC44LTEuNy0xMy40VjIwOC4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgZmlsbD0iIzYxNjE2MSIgZD0iTTE1IDlIOXY2aDZWOXptLTIgNGgtMnYtMmgydjJ6bTgtMlY5aC0yVjdjMC0xLjEtLjktMi0yLTJoLTJWM2gtMnYyaC0yVjNIOXYySDdjLTEuMSAwLTIgLjktMiAydjJIM3YyaDJ2MkgzdjJoMnYyYzAgMS4xLjkgMiAyIDJoMnYyaDJ2LTJoMnYyaDJ2LTJoMmMxLjEgMCAyLS45IDItMnYtMmgydi0yaC0ydi0yaDJ6bS00IDZIN1Y3aDEwdjEweiIvPgo8L3N2Zz4K);\n  --jp-icon-keyboard: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMTdjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY3YzAtMS4xLS45LTItMi0yem0tOSAzaDJ2MmgtMlY4em0wIDNoMnYyaC0ydi0yek04IDhoMnYySDhWOHptMCAzaDJ2Mkg4di0yem0tMSAySDV2LTJoMnYyem0wLTNINVY4aDJ2MnptOSA3SDh2LTJoOHYyem0wLTRoLTJ2LTJoMnYyem0wLTNoLTJWOGgydjJ6bTMgM2gtMnYtMmgydjJ6bTAtM2gtMlY4aDJ2MnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-launcher: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkgMTlINVY1aDdWM0g1YTIgMiAwIDAwLTIgMnYxNGEyIDIgMCAwMDIgMmgxNGMxLjEgMCAyLS45IDItMnYtN2gtMnY3ek0xNCAzdjJoMy41OWwtOS44MyA5LjgzIDEuNDEgMS40MUwxOSA2LjQxVjEwaDJWM2gtN3oiLz4KPC9zdmc+Cg==);\n  --jp-icon-line-form: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGZpbGw9IndoaXRlIiBkPSJNNS44OCA0LjEyTDEzLjc2IDEybC03Ljg4IDcuODhMOCAyMmwxMC0xMEw4IDJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-link: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMuOSAxMmMwLTEuNzEgMS4zOS0zLjEgMy4xLTMuMWg0VjdIN2MtMi43NiAwLTUgMi4yNC01IDVzMi4yNCA1IDUgNWg0di0xLjlIN2MtMS43MSAwLTMuMS0xLjM5LTMuMS0zLjF6TTggMTNoOHYtMkg4djJ6bTktNmgtNHYxLjloNGMxLjcxIDAgMy4xIDEuMzkgMy4xIDMuMXMtMS4zOSAzLjEtMy4xIDMuMWgtNFYxN2g0YzIuNzYgMCA1LTIuMjQgNS01cy0yLjI0LTUtNS01eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiM2MTYxNjEiIGQ9Ik0xOSA1djE0SDVWNWgxNG0xLjEtMkgzLjljLS41IDAtLjkuNC0uOS45djE2LjJjMCAuNC40LjkuOS45aDE2LjJjLjQgMCAuOS0uNS45LS45VjMuOWMwLS41LS41LS45LS45LS45ek0xMSA3aDZ2MmgtNlY3em0wIDRoNnYyaC02di0yem0wIDRoNnYyaC02ek03IDdoMnYySDd6bTAgNGgydjJIN3ptMCA0aDJ2Mkg3eiIvPgo8L3N2Zz4=);\n  --jp-icon-listings-info: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MC45NzggNTAuOTc4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MC45NzggNTAuOTc4OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+Cgk8Zz4KCQk8cGF0aCBzdHlsZT0iZmlsbDojMDEwMDAyOyIgZD0iTTQzLjUyLDcuNDU4QzM4LjcxMSwyLjY0OCwzMi4zMDcsMCwyNS40ODksMEMxOC42NywwLDEyLjI2NiwyLjY0OCw3LjQ1OCw3LjQ1OAoJCQljLTkuOTQzLDkuOTQxLTkuOTQzLDI2LjExOSwwLDM2LjA2MmM0LjgwOSw0LjgwOSwxMS4yMTIsNy40NTYsMTguMDMxLDcuNDU4YzAsMCwwLjAwMSwwLDAuMDAyLDAKCQkJYzYuODE2LDAsMTMuMjIxLTIuNjQ4LDE4LjAyOS03LjQ1OGM0LjgwOS00LjgwOSw3LjQ1Ny0xMS4yMTIsNy40NTctMTguMDNDNTAuOTc3LDE4LjY3LDQ4LjMyOCwxMi4yNjYsNDMuNTIsNy40NTh6CgkJCSBNNDIuMTA2LDQyLjEwNWMtNC40MzIsNC40MzEtMTAuMzMyLDYuODcyLTE2LjYxNSw2Ljg3MmgtMC4wMDJjLTYuMjg1LTAuMDAxLTEyLjE4Ny0yLjQ0MS0xNi42MTctNi44NzIKCQkJYy05LjE2Mi05LjE2My05LjE2Mi0yNC4wNzEsMC0zMy4yMzNDMTMuMzAzLDQuNDQsMTkuMjA0LDIsMjUuNDg5LDJjNi4yODQsMCwxMi4xODYsMi40NCwxNi42MTcsNi44NzIKCQkJYzQuNDMxLDQuNDMxLDYuODcxLDEwLjMzMiw2Ljg3MSwxNi42MTdDNDguOTc3LDMxLjc3Miw0Ni41MzYsMzcuNjc1LDQyLjEwNiw0Mi4xMDV6Ii8+CgkJPHBhdGggc3R5bGU9ImZpbGw6IzAxMDAwMjsiIGQ9Ik0yMy41NzgsMzIuMjE4Yy0wLjAyMy0xLjczNCwwLjE0My0zLjA1OSwwLjQ5Ni0zLjk3MmMwLjM1My0wLjkxMywxLjExLTEuOTk3LDIuMjcyLTMuMjUzCgkJCWMwLjQ2OC0wLjUzNiwwLjkyMy0xLjA2MiwxLjM2Ny0xLjU3NWMwLjYyNi0wLjc1MywxLjEwNC0xLjQ3OCwxLjQzNi0yLjE3NWMwLjMzMS0wLjcwNywwLjQ5NS0xLjU0MSwwLjQ5NS0yLjUKCQkJYzAtMS4wOTYtMC4yNi0yLjA4OC0wLjc3OS0yLjk3OWMtMC41NjUtMC44NzktMS41MDEtMS4zMzYtMi44MDYtMS4zNjljLTEuODAyLDAuMDU3LTIuOTg1LDAuNjY3LTMuNTUsMS44MzIKCQkJYy0wLjMwMSwwLjUzNS0wLjUwMywxLjE0MS0wLjYwNywxLjgxNGMtMC4xMzksMC43MDctMC4yMDcsMS40MzItMC4yMDcsMi4xNzRoLTIuOTM3Yy0wLjA5MS0yLjIwOCwwLjQwNy00LjExNCwxLjQ5My01LjcxOQoJCQljMS4wNjItMS42NCwyLjg1NS0yLjQ4MSw1LjM3OC0yLjUyN2MyLjE2LDAuMDIzLDMuODc0LDAuNjA4LDUuMTQxLDEuNzU4YzEuMjc4LDEuMTYsMS45MjksMi43NjQsMS45NSw0LjgxMQoJCQljMCwxLjE0Mi0wLjEzNywyLjExMS0wLjQxLDIuOTExYy0wLjMwOSwwLjg0NS0wLjczMSwxLjU5My0xLjI2OCwyLjI0M2MtMC40OTIsMC42NS0xLjA2OCwxLjMxOC0xLjczLDIuMDAyCgkJCWMtMC42NSwwLjY5Ny0xLjMxMywxLjQ3OS0xLjk4NywyLjM0NmMtMC4yMzksMC4zNzctMC40MjksMC43NzctMC41NjUsMS4xOTljLTAuMTYsMC45NTktMC4yMTcsMS45NTEtMC4xNzEsMi45NzkKCQkJQzI2LjU4OSwzMi4yMTgsMjMuNTc4LDMyLjIxOCwyMy41NzgsMzIuMjE4eiBNMjMuNTc4LDM4LjIydi0zLjQ4NGgzLjA3NnYzLjQ4NEgyMy41Nzh6Ii8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-markdown: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjN0IxRkEyIiBkPSJNNSAxNC45aDEybC02LjEgNnptOS40LTYuOGMwLTEuMy0uMS0yLjktLjEtNC41LS40IDEuNC0uOSAyLjktMS4zIDQuM2wtMS4zIDQuM2gtMkw4LjUgNy45Yy0uNC0xLjMtLjctMi45LTEtNC4zLS4xIDEuNi0uMSAzLjItLjIgNC42TDcgMTIuNEg0LjhsLjctMTFoMy4zTDEwIDVjLjQgMS4yLjcgMi43IDEgMy45LjMtMS4yLjctMi42IDEtMy45bDEuMi0zLjdoMy4zbC42IDExaC0yLjRsLS4zLTQuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-new-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwIDZoLThsLTItMkg0Yy0xLjExIDAtMS45OS44OS0xLjk5IDJMMiAxOGMwIDEuMTEuODkgMiAyIDJoMTZjMS4xMSAwIDItLjg5IDItMlY4YzAtMS4xMS0uODktMi0yLTJ6bS0xIDhoLTN2M2gtMnYtM2gtM3YtMmgzVjloMnYzaDN2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-not-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI1IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMTkgMTcuMTg0NCAyLjk2OTY4IDE0LjMwMzIgMS44NjA5NCAxMS40NDA5WiIvPgogICAgPHBhdGggY2xhc3M9ImpwLWljb24yIiBzdHJva2U9IiMzMzMzMzMiIHN0cm9rZS13aWR0aD0iMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOS4zMTU5MiA5LjMyMDMxKSIgZD0iTTcuMzY4NDIgMEwwIDcuMzY0NzkiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDkuMzE1OTIgMTYuNjgzNikgc2NhbGUoMSAtMSkiIGQ9Ik03LjM2ODQyIDBMMCA3LjM2NDc5Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-notebook: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNFRjZDMDAiPgogICAgPHBhdGggZD0iTTE4LjcgMy4zdjE1LjRIMy4zVjMuM2gxNS40bTEuNS0xLjVIMS44djE4LjNoMTguM2wuMS0xOC4zeiIvPgogICAgPHBhdGggZD0iTTE2LjUgMTYuNWwtNS40LTQuMy01LjYgNC4zdi0xMWgxMXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-numbering: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTQgMTlINlYxOS41SDVWMjAuNUg2VjIxSDRWMjJIN1YxOEg0VjE5Wk01IDEwSDZWNkg0VjdINVYxMFpNNCAxM0g1LjhMNCAxNS4xVjE2SDdWMTVINS4yTDcgMTIuOVYxMkg0VjEzWk05IDdWOUgyM1Y3SDlaTTkgMjFIMjNWMTlIOVYyMVpNOSAxNUgyM1YxM0g5VjE1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-offline-bolt: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDIuMDJjLTUuNTEgMC05Ljk4IDQuNDctOS45OCA5Ljk4czQuNDcgOS45OCA5Ljk4IDkuOTggOS45OC00LjQ3IDkuOTgtOS45OFMxNy41MSAyLjAyIDEyIDIuMDJ6TTExLjQ4IDIwdi02LjI2SDhMMTMgNHY2LjI2aDMuMzVMMTEuNDggMjB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-palette: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE4IDEzVjIwSDRWNkg5LjAyQzkuMDcgNS4yOSA5LjI0IDQuNjIgOS41IDRINEMyLjkgNCAyIDQuOSAyIDZWMjBDMiAyMS4xIDIuOSAyMiA0IDIySDE4QzE5LjEgMjIgMjAgMjEuMSAyMCAyMFYxNUwxOCAxM1pNMTkuMyA4Ljg5QzE5Ljc0IDguMTkgMjAgNy4zOCAyMCA2LjVDMjAgNC4wMSAxNy45OSAyIDE1LjUgMkMxMy4wMSAyIDExIDQuMDEgMTEgNi41QzExIDguOTkgMTMuMDEgMTEgMTUuNDkgMTFDMTYuMzcgMTEgMTcuMTkgMTAuNzQgMTcuODggMTAuM0wyMSAxMy40MkwyMi40MiAxMkwxOS4zIDguODlaTTE1LjUgOUMxNC4xMiA5IDEzIDcuODggMTMgNi41QzEzIDUuMTIgMTQuMTIgNCAxNS41IDRDMTYuODggNCAxOCA1LjEyIDE4IDYuNUMxOCA3Ljg4IDE2Ljg4IDkgMTUuNSA5WiIvPgogICAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDZIOS4wMTg5NEM5LjAwNjM5IDYuMTY1MDIgOSA2LjMzMTc2IDkgNi41QzkgOC44MTU3NyAxMC4yMTEgMTAuODQ4NyAxMi4wMzQzIDEySDlWMTRIMTZWMTIuOTgxMUMxNi41NzAzIDEyLjkzNzcgMTcuMTIgMTIuODIwNyAxNy42Mzk2IDEyLjYzOTZMMTggMTNWMjBINFY2Wk04IDhINlYxMEg4VjhaTTYgMTJIOFYxNEg2VjEyWk04IDE2SDZWMThIOFYxNlpNOSAxNkgxNlYxOEg5VjE2WiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-paste: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE5IDJoLTQuMThDMTQuNC44NCAxMy4zIDAgMTIgMGMtMS4zIDAtMi40Ljg0LTIuODIgMkg1Yy0xLjEgMC0yIC45LTIgMnYxNmMwIDEuMS45IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjRjMC0xLjEtLjktMi0yLTJ6bS03IDBjLjU1IDAgMSAuNDUgMSAxcy0uNDUgMS0xIDEtMS0uNDUtMS0xIC40NS0xIDEtMXptNyAxOEg1VjRoMnYzaDEwVjRoMnYxNnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-pdf: url(data:image/svg+xml;base64,PHN2ZwogICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMiAyMiIgd2lkdGg9IjE2Ij4KICAgIDxwYXRoIHRyYW5zZm9ybT0icm90YXRlKDQ1KSIgY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI0ZGMkEyQSIKICAgICAgIGQ9Im0gMjIuMzQ0MzY5LC0zLjAxNjM2NDIgaCA1LjYzODYwNCB2IDEuNTc5MjQzMyBoIC0zLjU0OTIyNyB2IDEuNTA4NjkyOTkgaCAzLjMzNzU3NiBWIDEuNjUwODE1NCBoIC0zLjMzNzU3NiB2IDMuNDM1MjYxMyBoIC0yLjA4OTM3NyB6IG0gLTcuMTM2NDQ0LDEuNTc5MjQzMyB2IDQuOTQzOTU0MyBoIDAuNzQ4OTIgcSAxLjI4MDc2MSwwIDEuOTUzNzAzLC0wLjYzNDk1MzUgMC42NzgzNjksLTAuNjM0OTUzNSAwLjY3ODM2OSwtMS44NDUxNjQxIDAsLTEuMjA0NzgzNTUgLTAuNjcyOTQyLC0xLjgzNDMxMDExIC0wLjY3Mjk0MiwtMC42Mjk1MjY1OSAtMS45NTkxMywtMC42Mjk1MjY1OSB6IG0gLTIuMDg5Mzc3LC0xLjU3OTI0MzMgaCAyLjIwMzM0MyBxIDEuODQ1MTY0LDAgMi43NDYwMzksMC4yNjU5MjA3IDAuOTA2MzAxLDAuMjYwNDkzNyAxLjU1MjEwOCwwLjg5MDAyMDMgMC41Njk4MywwLjU0ODEyMjMgMC44NDY2MDUsMS4yNjQ0ODAwNiAwLjI3Njc3NCwwLjcxNjM1NzgxIDAuMjc2Nzc0LDEuNjIyNjU4OTQgMCwwLjkxNzE1NTEgLTAuMjc2Nzc0LDEuNjM4OTM5OSAtMC4yNzY3NzUsMC43MTYzNTc4IC0wLjg0NjYwNSwxLjI2NDQ4IC0wLjY1MTIzNCwwLjYyOTUyNjYgLTEuNTYyOTYyLDAuODk1NDQ3MyAtMC45MTE3MjgsMC4yNjA0OTM3IC0yLjczNTE4NSwwLjI2MDQ5MzcgaCAtMi4yMDMzNDMgeiBtIC04LjE0NTg1NjUsMCBoIDMuNDY3ODIzIHEgMS41NDY2ODE2LDAgMi4zNzE1Nzg1LDAuNjg5MjIzIDAuODMwMzI0LDAuNjgzNzk2MSAwLjgzMDMyNCwxLjk1MzcwMzE0IDAsMS4yNzUzMzM5NyAtMC44MzAzMjQsMS45NjQ1NTcwNiBRIDkuOTg3MTk2MSwyLjI3NDkxNSA4LjQ0MDUxNDUsMi4yNzQ5MTUgSCA3LjA2MjA2ODQgViA1LjA4NjA3NjcgSCA0Ljk3MjY5MTUgWiBtIDIuMDg5Mzc2OSwxLjUxNDExOTkgdiAyLjI2MzAzOTQzIGggMS4xNTU5NDEgcSAwLjYwNzgxODgsMCAwLjkzODg2MjksLTAuMjkzMDU1NDcgMC4zMzEwNDQxLC0wLjI5ODQ4MjQxIDAuMzMxMDQ0MSwtMC44NDExNzc3MiAwLC0wLjU0MjY5NTMxIC0wLjMzMTA0NDEsLTAuODM1NzUwNzQgLTAuMzMxMDQ0MSwtMC4yOTMwNTU1IC0wLjkzODg2MjksLTAuMjkzMDU1NSB6IgovPgo8L3N2Zz4K);\n  --jp-icon-python: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMEQ0N0ExIj4KICAgIDxwYXRoIGQ9Ik0xMS4xIDYuOVY1LjhINi45YzAtLjUgMC0xLjMuMi0xLjYuNC0uNy44LTEuMSAxLjctMS40IDEuNy0uMyAyLjUtLjMgMy45LS4xIDEgLjEgMS45LjkgMS45IDEuOXY0LjJjMCAuNS0uOSAxLjYtMiAxLjZIOC44Yy0xLjUgMC0yLjQgMS40LTIuNCAyLjh2Mi4ySDQuN0MzLjUgMTUuMSAzIDE0IDMgMTMuMVY5Yy0uMS0xIC42LTIgMS44LTIgMS41LS4xIDYuMy0uMSA2LjMtLjF6Ii8+CiAgICA8cGF0aCBkPSJNMTAuOSAxNS4xdjEuMWg0LjJjMCAuNSAwIDEuMy0uMiAxLjYtLjQuNy0uOCAxLjEtMS43IDEuNC0xLjcuMy0yLjUuMy0zLjkuMS0xLS4xLTEuOS0uOS0xLjktMS45di00LjJjMC0uNS45LTEuNiAyLTEuNmgzLjhjMS41IDAgMi40LTEuNCAyLjQtMi44VjYuNmgxLjdDMTguNSA2LjkgMTkgOCAxOSA4LjlWMTNjMCAxLS43IDIuMS0xLjkgMi4xaC02LjJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-r-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjE5NkYzIiBkPSJNNC40IDIuNWMxLjItLjEgMi45LS4zIDQuOS0uMyAyLjUgMCA0LjEuNCA1LjIgMS4zIDEgLjcgMS41IDEuOSAxLjUgMy41IDAgMi0xLjQgMy41LTIuOSA0LjEgMS4yLjQgMS43IDEuNiAyLjIgMyAuNiAxLjkgMSAzLjkgMS4zIDQuNmgtMy44Yy0uMy0uNC0uOC0xLjctMS4yLTMuN3MtMS4yLTIuNi0yLjYtMi42aC0uOXY2LjRINC40VjIuNXptMy43IDYuOWgxLjRjMS45IDAgMi45LS45IDIuOS0yLjNzLTEtMi4zLTIuOC0yLjNjLS43IDAtMS4zIDAtMS42LjJ2NC41aC4xdi0uMXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-react: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMTUwIDE1MCA1NDEuOSAyOTUuMyI+CiAgPGcgY2xhc3M9ImpwLWljb24tYnJhbmQyIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzYxREFGQiI+CiAgICA8cGF0aCBkPSJNNjY2LjMgMjk2LjVjMC0zMi41LTQwLjctNjMuMy0xMDMuMS04Mi40IDE0LjQtNjMuNiA4LTExNC4yLTIwLjItMTMwLjQtNi41LTMuOC0xNC4xLTUuNi0yMi40LTUuNnYyMi4zYzQuNiAwIDguMy45IDExLjQgMi42IDEzLjYgNy44IDE5LjUgMzcuNSAxNC45IDc1LjctMS4xIDkuNC0yLjkgMTkuMy01LjEgMjkuNC0xOS42LTQuOC00MS04LjUtNjMuNS0xMC45LTEzLjUtMTguNS0yNy41LTM1LjMtNDEuNi01MCAzMi42LTMwLjMgNjMuMi00Ni45IDg0LTQ2LjlWNzhjLTI3LjUgMC02My41IDE5LjYtOTkuOSA1My42LTM2LjQtMzMuOC03Mi40LTUzLjItOTkuOS01My4ydjIyLjNjMjAuNyAwIDUxLjQgMTYuNSA4NCA0Ni42LTE0IDE0LjctMjggMzEuNC00MS4zIDQ5LjktMjIuNiAyLjQtNDQgNi4xLTYzLjYgMTEtMi4zLTEwLTQtMTkuNy01LjItMjktNC43LTM4LjIgMS4xLTY3LjkgMTQuNi03NS44IDMtMS44IDYuOS0yLjYgMTEuNS0yLjZWNzguNWMtOC40IDAtMTYgMS44LTIyLjYgNS42LTI4LjEgMTYuMi0zNC40IDY2LjctMTkuOSAxMzAuMS02Mi4yIDE5LjItMTAyLjcgNDkuOS0xMDIuNyA4Mi4zIDAgMzIuNSA0MC43IDYzLjMgMTAzLjEgODIuNC0xNC40IDYzLjYtOCAxMTQuMiAyMC4yIDEzMC40IDYuNSAzLjggMTQuMSA1LjYgMjIuNSA1LjYgMjcuNSAwIDYzLjUtMTkuNiA5OS45LTUzLjYgMzYuNCAzMy44IDcyLjQgNTMuMiA5OS45IDUzLjIgOC40IDAgMTYtMS44IDIyLjYtNS42IDI4LjEtMTYuMiAzNC40LTY2LjcgMTkuOS0xMzAuMSA2Mi0xOS4xIDEwMi41LTQ5LjkgMTAyLjUtODIuM3ptLTEzMC4yLTY2LjdjLTMuNyAxMi45LTguMyAyNi4yLTEzLjUgMzkuNS00LjEtOC04LjQtMTYtMTMuMS0yNC00LjYtOC05LjUtMTUuOC0xNC40LTIzLjQgMTQuMiAyLjEgMjcuOSA0LjcgNDEgNy45em0tNDUuOCAxMDYuNWMtNy44IDEzLjUtMTUuOCAyNi4zLTI0LjEgMzguMi0xNC45IDEuMy0zMCAyLTQ1LjIgMi0xNS4xIDAtMzAuMi0uNy00NS0xLjktOC4zLTExLjktMTYuNC0yNC42LTI0LjItMzgtNy42LTEzLjEtMTQuNS0yNi40LTIwLjgtMzkuOCA2LjItMTMuNCAxMy4yLTI2LjggMjAuNy0zOS45IDcuOC0xMy41IDE1LjgtMjYuMyAyNC4xLTM4LjIgMTQuOS0xLjMgMzAtMiA0NS4yLTIgMTUuMSAwIDMwLjIuNyA0NSAxLjkgOC4zIDExLjkgMTYuNCAyNC42IDI0LjIgMzggNy42IDEzLjEgMTQuNSAyNi40IDIwLjggMzkuOC02LjMgMTMuNC0xMy4yIDI2LjgtMjAuNyAzOS45em0zMi4zLTEzYzUuNCAxMy40IDEwIDI2LjggMTMuOCAzOS44LTEzLjEgMy4yLTI2LjkgNS45LTQxLjIgOCA0LjktNy43IDkuOC0xNS42IDE0LjQtMjMuNyA0LjYtOCA4LjktMTYuMSAxMy0yNC4xek00MjEuMiA0MzBjLTkuMy05LjYtMTguNi0yMC4zLTI3LjgtMzIgOSAuNCAxOC4yLjcgMjcuNS43IDkuNCAwIDE4LjctLjIgMjcuOC0uNy05IDExLjctMTguMyAyMi40LTI3LjUgMzJ6bS03NC40LTU4LjljLTE0LjItMi4xLTI3LjktNC43LTQxLTcuOSAzLjctMTIuOSA4LjMtMjYuMiAxMy41LTM5LjUgNC4xIDggOC40IDE2IDEzLjEgMjQgNC43IDggOS41IDE1LjggMTQuNCAyMy40ek00MjAuNyAxNjNjOS4zIDkuNiAxOC42IDIwLjMgMjcuOCAzMi05LS40LTE4LjItLjctMjcuNS0uNy05LjQgMC0xOC43LjItMjcuOC43IDktMTEuNyAxOC4zLTIyLjQgMjcuNS0zMnptLTc0IDU4LjljLTQuOSA3LjctOS44IDE1LjYtMTQuNCAyMy43LTQuNiA4LTguOSAxNi0xMyAyNC01LjQtMTMuNC0xMC0yNi44LTEzLjgtMzkuOCAxMy4xLTMuMSAyNi45LTUuOCA0MS4yLTcuOXptLTkwLjUgMTI1LjJjLTM1LjQtMTUuMS01OC4zLTM0LjktNTguMy01MC42IDAtMTUuNyAyMi45LTM1LjYgNTguMy01MC42IDguNi0zLjcgMTgtNyAyNy43LTEwLjEgNS43IDE5LjYgMTMuMiA0MCAyMi41IDYwLjktOS4yIDIwLjgtMTYuNiA0MS4xLTIyLjIgNjAuNi05LjktMy4xLTE5LjMtNi41LTI4LTEwLjJ6TTMxMCA0OTBjLTEzLjYtNy44LTE5LjUtMzcuNS0xNC45LTc1LjcgMS4xLTkuNCAyLjktMTkuMyA1LjEtMjkuNCAxOS42IDQuOCA0MSA4LjUgNjMuNSAxMC45IDEzLjUgMTguNSAyNy41IDM1LjMgNDEuNiA1MC0zMi42IDMwLjMtNjMuMiA0Ni45LTg0IDQ2LjktNC41LS4xLTguMy0xLTExLjMtMi43em0yMzcuMi03Ni4yYzQuNyAzOC4yLTEuMSA2Ny45LTE0LjYgNzUuOC0zIDEuOC02LjkgMi42LTExLjUgMi42LTIwLjcgMC01MS40LTE2LjUtODQtNDYuNiAxNC0xNC43IDI4LTMxLjQgNDEuMy00OS45IDIyLjYtMi40IDQ0LTYuMSA2My42LTExIDIuMyAxMC4xIDQuMSAxOS44IDUuMiAyOS4xem0zOC41LTY2LjdjLTguNiAzLjctMTggNy0yNy43IDEwLjEtNS43LTE5LjYtMTMuMi00MC0yMi41LTYwLjkgOS4yLTIwLjggMTYuNi00MS4xIDIyLjItNjAuNiA5LjkgMy4xIDE5LjMgNi41IDI4LjEgMTAuMiAzNS40IDE1LjEgNTguMyAzNC45IDU4LjMgNTAuNi0uMSAxNS43LTIzIDM1LjYtNTguNCA1MC42ek0zMjAuOCA3OC40eiIvPgogICAgPGNpcmNsZSBjeD0iNDIwLjkiIGN5PSIyOTYuNSIgcj0iNDUuNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-redo: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTE4LjQgMTAuNkMxNi41NSA4Ljk5IDE0LjE1IDggMTEuNSA4Yy00LjY1IDAtOC41OCAzLjAzLTkuOTYgNy4yMkwzLjkgMTZjMS4wNS0zLjE5IDQuMDUtNS41IDcuNi01LjUgMS45NSAwIDMuNzMuNzIgNS4xMiAxLjg4TDEzIDE2aDlWN2wtMy42IDMuNnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-refresh: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTkgMTMuNWMtMi40OSAwLTQuNS0yLjAxLTQuNS00LjVTNi41MSA0LjUgOSA0LjVjMS4yNCAwIDIuMzYuNTIgMy4xNyAxLjMzTDEwIDhoNVYzbC0xLjc2IDEuNzZDMTIuMTUgMy42OCAxMC42NiAzIDkgMyA1LjY5IDMgMy4wMSA1LjY5IDMuMDEgOVM1LjY5IDE1IDkgMTVjMi45NyAwIDUuNDMtMi4xNiA1LjktNWgtMS41MmMtLjQ2IDItMi4yNCAzLjUtNC4zOCAzLjV6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-regex: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi1hY2NlbnQyIiBmaWxsPSIjRkZGIj4KICAgIDxjaXJjbGUgY2xhc3M9InN0MiIgY3g9IjUuNSIgY3k9IjE0LjUiIHI9IjEuNSIvPgogICAgPHJlY3QgeD0iMTIiIHk9IjQiIGNsYXNzPSJzdDIiIHdpZHRoPSIxIiBoZWlnaHQ9IjgiLz4KICAgIDxyZWN0IHg9IjguNSIgeT0iNy41IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjg2NiAtMC41IDAuNSAwLjg2NiAtMi4zMjU1IDcuMzIxOSkiIGNsYXNzPSJzdDIiIHdpZHRoPSI4IiBoZWlnaHQ9IjEiLz4KICAgIDxyZWN0IHg9IjEyIiB5PSI0IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjUgLTAuODY2IDAuODY2IDAuNSAtMC42Nzc5IDE0LjgyNTIpIiBjbGFzcz0ic3QyIiB3aWR0aD0iMSIgaGVpZ2h0PSI4Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-run: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTggNXYxNGwxMS03eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-running: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptOTYgMzI4YzAgOC44LTcuMiAxNi0xNiAxNkgxNzZjLTguOCAwLTE2LTcuMi0xNi0xNlYxNzZjMC04LjggNy4yLTE2IDE2LTE2aDE2MGM4LjggMCAxNiA3LjIgMTYgMTZ2MTYweiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-save: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE3IDNINWMtMS4xMSAwLTIgLjktMiAydjE0YzAgMS4xLjg5IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjdsLTQtNHptLTUgMTZjLTEuNjYgMC0zLTEuMzQtMy0zczEuMzQtMyAzLTMgMyAxLjM0IDMgMy0xLjM0IDMtMyAzem0zLTEwSDVWNWgxMHY0eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-search: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjEsMTAuOWgtMC43bC0wLjItMC4yYzAuOC0wLjksMS4zLTIuMiwxLjMtMy41YzAtMy0yLjQtNS40LTUuNC01LjRTMS44LDQuMiwxLjgsNy4xczIuNCw1LjQsNS40LDUuNCBjMS4zLDAsMi41LTAuNSwzLjUtMS4zbDAuMiwwLjJ2MC43bDQuMSw0LjFsMS4yLTEuMkwxMi4xLDEwLjl6IE03LjEsMTAuOWMtMi4xLDAtMy43LTEuNy0zLjctMy43czEuNy0zLjcsMy43LTMuN3MzLjcsMS43LDMuNywzLjcgUzkuMiwxMC45LDcuMSwxMC45eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-settings: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuNDMgMTIuOThjLjA0LS4zMi4wNy0uNjQuMDctLjk4cy0uMDMtLjY2LS4wNy0uOThsMi4xMS0xLjY1Yy4xOS0uMTUuMjQtLjQyLjEyLS42NGwtMi0zLjQ2Yy0uMTItLjIyLS4zOS0uMy0uNjEtLjIybC0yLjQ5IDFjLS41Mi0uNC0xLjA4LS43My0xLjY5LS45OGwtLjM4LTIuNjVBLjQ4OC40ODggMCAwMDE0IDJoLTRjLS4yNSAwLS40Ni4xOC0uNDkuNDJsLS4zOCAyLjY1Yy0uNjEuMjUtMS4xNy41OS0xLjY5Ljk4bC0yLjQ5LTFjLS4yMy0uMDktLjQ5IDAtLjYxLjIybC0yIDMuNDZjLS4xMy4yMi0uMDcuNDkuMTIuNjRsMi4xMSAxLjY1Yy0uMDQuMzItLjA3LjY1LS4wNy45OHMuMDMuNjYuMDcuOThsLTIuMTEgMS42NWMtLjE5LjE1LS4yNC40Mi0uMTIuNjRsMiAzLjQ2Yy4xMi4yMi4zOS4zLjYxLjIybDIuNDktMWMuNTIuNCAxLjA4LjczIDEuNjkuOThsLjM4IDIuNjVjLjAzLjI0LjI0LjQyLjQ5LjQyaDRjLjI1IDAgLjQ2LS4xOC40OS0uNDJsLjM4LTIuNjVjLjYxLS4yNSAxLjE3LS41OSAxLjY5LS45OGwyLjQ5IDFjLjIzLjA5LjQ5IDAgLjYxLS4yMmwyLTMuNDZjLjEyLS4yMi4wNy0uNDktLjEyLS42NGwtMi4xMS0xLjY1ek0xMiAxNS41Yy0xLjkzIDAtMy41LTEuNTctMy41LTMuNXMxLjU3LTMuNSAzLjUtMy41IDMuNSAxLjU3IDMuNSAzLjUtMS41NyAzLjUtMy41IDMuNXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-spreadsheet: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNENBRjUwIiBkPSJNMi4yIDIuMnYxNy42aDE3LjZWMi4ySDIuMnptMTUuNCA3LjdoLTUuNVY0LjRoNS41djUuNXpNOS45IDQuNHY1LjVINC40VjQuNGg1LjV6bS01LjUgNy43aDUuNXY1LjVINC40di01LjV6bTcuNyA1LjV2LTUuNWg1LjV2NS41aC01LjV6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-stop: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik02IDZoMTJ2MTJINnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tab: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIxIDNIM2MtMS4xIDAtMiAuOS0yIDJ2MTRjMCAxLjEuOSAyIDIgMmgxOGMxLjEgMCAyLS45IDItMlY1YzAtMS4xLS45LTItMi0yem0wIDE2SDNWNWgxMHY0aDh2MTB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-table-rows: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMSw4SDNWNGgxOFY4eiBNMjEsMTBIM3Y0aDE4VjEweiBNMjEsMTZIM3Y0aDE4VjE2eiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-tag: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCA0MyAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTI4LjgzMzIgMTIuMzM0TDMyLjk5OTggMTYuNTAwN0wzNy4xNjY1IDEyLjMzNEgyOC44MzMyWiIvPgoJCTxwYXRoIGQ9Ik0xNi4yMDk1IDIxLjYxMDRDMTUuNjg3MyAyMi4xMjk5IDE0Ljg0NDMgMjIuMTI5OSAxNC4zMjQ4IDIxLjYxMDRMNi45ODI5IDE0LjcyNDVDNi41NzI0IDE0LjMzOTQgNi4wODMxMyAxMy42MDk4IDYuMDQ3ODYgMTMuMDQ4MkM1Ljk1MzQ3IDExLjUyODggNi4wMjAwMiA4LjYxOTQ0IDYuMDY2MjEgNy4wNzY5NUM2LjA4MjgxIDYuNTE0NzcgNi41NTU0OCA2LjA0MzQ3IDcuMTE4MDQgNi4wMzA1NUM5LjA4ODYzIDUuOTg0NzMgMTMuMjYzOCA1LjkzNTc5IDEzLjY1MTggNi4zMjQyNUwyMS43MzY5IDEzLjYzOUMyMi4yNTYgMTQuMTU4NSAyMS43ODUxIDE1LjQ3MjQgMjEuMjYyIDE1Ljk5NDZMMTYuMjA5NSAyMS42MTA0Wk05Ljc3NTg1IDguMjY1QzkuMzM1NTEgNy44MjU2NiA4LjYyMzUxIDcuODI1NjYgOC4xODI4IDguMjY1QzcuNzQzNDYgOC43MDU3MSA3Ljc0MzQ2IDkuNDE3MzMgOC4xODI4IDkuODU2NjdDOC42MjM4MiAxMC4yOTY0IDkuMzM1ODIgMTAuMjk2NCA5Ljc3NTg1IDkuODU2NjdDMTAuMjE1NiA5LjQxNzMzIDEwLjIxNTYgOC43MDUzMyA5Ljc3NTg1IDguMjY1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-terminal: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiA+CiAgICA8cmVjdCBjbGFzcz0ianAtaWNvbjIganAtaWNvbi1zZWxlY3RhYmxlIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMikiIGZpbGw9IiMzMzMzMzMiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uLWFjY2VudDIganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGQ9Ik01LjA1NjY0IDguNzYxNzJDNS4wNTY2NCA4LjU5NzY2IDUuMDMxMjUgOC40NTMxMiA0Ljk4MDQ3IDguMzI4MTJDNC45MzM1OSA4LjE5OTIyIDQuODU1NDcgOC4wODIwMyA0Ljc0NjA5IDcuOTc2NTZDNC42NDA2MiA3Ljg3MTA5IDQuNSA3Ljc3NTM5IDQuMzI0MjIgNy42ODk0NUM0LjE1MjM0IDcuNTk5NjEgMy45NDMzNiA3LjUxMTcyIDMuNjk3MjcgNy40MjU3OEMzLjMwMjczIDcuMjg1MTYgMi45NDMzNiA3LjEzNjcyIDIuNjE5MTQgNi45ODA0N0MyLjI5NDkyIDYuODI0MjIgMi4wMTc1OCA2LjY0MjU4IDEuNzg3MTEgNi40MzU1NUMxLjU2MDU1IDYuMjI4NTIgMS4zODQ3NyA1Ljk4ODI4IDEuMjU5NzcgNS43MTQ4NEMxLjEzNDc3IDUuNDM3NSAxLjA3MjI3IDUuMTA5MzggMS4wNzIyNyA0LjczMDQ3QzEuMDcyMjcgNC4zOTg0NCAxLjEyODkxIDQuMDk1NyAxLjI0MjE5IDMuODIyMjdDMS4zNTU0NyAzLjU0NDkyIDEuNTE1NjIgMy4zMDQ2OSAxLjcyMjY2IDMuMTAxNTZDMS45Mjk2OSAyLjg5ODQ0IDIuMTc5NjkgMi43MzQzNyAyLjQ3MjY2IDIuNjA5MzhDMi43NjU2MiAyLjQ4NDM4IDMuMDkxOCAyLjQwNDMgMy40NTExNyAyLjM2OTE0VjEuMTA5MzhINC4zODg2N1YyLjM4MDg2QzQuNzQwMjMgMi40Mjc3MyA1LjA1NjY0IDIuNTIzNDQgNS4zMzc4OSAyLjY2Nzk3QzUuNjE5MTQgMi44MTI1IDUuODU3NDIgMy4wMDE5NSA2LjA1MjczIDMuMjM2MzNDNi4yNTE5NSAzLjQ2NjggNi40MDQzIDMuNzQwMjMgNi41MDk3NyA0LjA1NjY0QzYuNjE5MTQgNC4zNjkxNCA2LjY3MzgzIDQuNzIwNyA2LjY3MzgzIDUuMTExMzNINS4wNDQ5MkM1LjA0NDkyIDQuNjM4NjcgNC45Mzc1IDQuMjgxMjUgNC43MjI2NiA0LjAzOTA2QzQuNTA3ODEgMy43OTI5NyA0LjIxNjggMy42Njk5MiAzLjg0OTYxIDMuNjY5OTJDMy42NTAzOSAzLjY2OTkyIDMuNDc2NTYgMy42OTcyNyAzLjMyODEyIDMuNzUxOTVDMy4xODM1OSAzLjgwMjczIDMuMDY0NDUgMy44NzY5NSAyLjk3MDcgMy45NzQ2MUMyLjg3Njk1IDQuMDY4MzYgMi44MDY2NCA0LjE3OTY5IDIuNzU5NzcgNC4zMDg1OUMyLjcxNjggNC40Mzc1IDIuNjk1MzEgNC41NzgxMiAyLjY5NTMxIDQuNzMwNDdDMi42OTUzMSA0Ljg4MjgxIDIuNzE2OCA1LjAxOTUzIDIuNzU5NzcgNS4xNDA2MkMyLjgwNjY0IDUuMjU3ODEgMi44ODI4MSA1LjM2NzE5IDIuOTg4MjggNS40Njg3NUMzLjA5NzY2IDUuNTcwMzEgMy4yNDAyMyA1LjY2Nzk3IDMuNDE2MDIgNS43NjE3MkMzLjU5MTggNS44NTE1NiAzLjgxMDU1IDUuOTQzMzYgNC4wNzIyNyA2LjAzNzExQzQuNDY2OCA2LjE4NTU1IDQuODI0MjIgNi4zMzk4NCA1LjE0NDUzIDYuNUM1LjQ2NDg0IDYuNjU2MjUgNS43MzgyOCA2LjgzOTg0IDUuOTY0ODQgNy4wNTA3OEM2LjE5NTMxIDcuMjU3ODEgNi4zNzEwOSA3LjUgNi40OTIxOSA3Ljc3NzM0QzYuNjE3MTkgOC4wNTA3OCA2LjY3OTY5IDguMzc1IDYuNjc5NjkgOC43NUM2LjY3OTY5IDkuMDkzNzUgNi42MjMwNSA5LjQwNDMgNi41MDk3NyA5LjY4MTY0QzYuMzk2NDggOS45NTUwOCA2LjIzNDM4IDEwLjE5MTQgNi4wMjM0NCAxMC4zOTA2QzUuODEyNSAxMC41ODk4IDUuNTU4NTkgMTAuNzUgNS4yNjE3MiAxMC44NzExQzQuOTY0ODQgMTAuOTg4MyA0LjYzMjgxIDExLjA2NDUgNC4yNjU2MiAxMS4wOTk2VjEyLjI0OEgzLjMzMzk4VjExLjA5OTZDMy4wMDE5NSAxMS4wNjg0IDIuNjc5NjkgMTAuOTk2MSAyLjM2NzE5IDEwLjg4MjhDMi4wNTQ2OSAxMC43NjU2IDEuNzc3MzQgMTAuNTk3NyAxLjUzNTE2IDEwLjM3ODlDMS4yOTY4OCAxMC4xNjAyIDEuMTA1NDcgOS44ODQ3NyAwLjk2MDkzOCA5LjU1MjczQzAuODE2NDA2IDkuMjE2OCAwLjc0NDE0MSA4LjgxNDQ1IDAuNzQ0MTQxIDguMzQ1N0gyLjM3ODkxQzIuMzc4OTEgOC42MjY5NSAyLjQxOTkyIDguODYzMjggMi41MDE5NSA5LjA1NDY5QzIuNTgzOTggOS4yNDIxOSAyLjY4OTQ1IDkuMzkyNTggMi44MTgzNiA5LjUwNTg2QzIuOTUxMTcgOS42MTUyMyAzLjEwMTU2IDkuNjkzMzYgMy4yNjk1MyA5Ljc0MDIzQzMuNDM3NSA5Ljc4NzExIDMuNjA5MzggOS44MTA1NSAzLjc4NTE2IDkuODEwNTVDNC4yMDMxMiA5LjgxMDU1IDQuNTE5NTMgOS43MTI4OSA0LjczNDM4IDkuNTE3NThDNC45NDkyMiA5LjMyMjI3IDUuMDU2NjQgOS4wNzAzMSA1LjA1NjY0IDguNzYxNzJaTTEzLjQxOCAxMi4yNzE1SDguMDc0MjJWMTFIMTMuNDE4VjEyLjI3MTVaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzLjk1MjY0IDYpIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);\n  --jp-icon-text-editor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTUgMTVIM3YyaDEydi0yem0wLThIM3YyaDEyVjd6TTMgMTNoMTh2LTJIM3Yyem0wIDhoMTh2LTJIM3Yyek0zIDN2MmgxOFYzSDN6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-toc: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik03LDVIMjFWN0g3VjVNNywxM1YxMUgyMVYxM0g3TTQsNC41QTEuNSwxLjUgMCAwLDEgNS41LDZBMS41LDEuNSAwIDAsMSA0LDcuNUExLjUsMS41IDAgMCwxIDIuNSw2QTEuNSwxLjUgMCAwLDEgNCw0LjVNNCwxMC41QTEuNSwxLjUgMCAwLDEgNS41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMy41QTEuNSwxLjUgMCAwLDEgMi41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMC41TTcsMTlWMTdIMjFWMTlIN000LDE2LjVBMS41LDEuNSAwIDAsMSA1LjUsMThBMS41LDEuNSAwIDAsMSA0LDE5LjVBMS41LDEuNSAwIDAsMSAyLjUsMThBMS41LDEuNSAwIDAsMSA0LDE2LjVaIiAvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tree-view: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMiAxMVYzaC03djNIOVYzSDJ2OGg3VjhoMnYxMGg0djNoN3YtOGgtN3YzaC0yVjhoMnYzeiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMiAxNy4xODQ0IDIuOTY5NjggMTQuMzAzMiAxLjg2MDk0IDExLjQ0MDlaIi8+CiAgICA8cGF0aCBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiMzMzMzMzMiIHN0cm9rZT0iIzMzMzMzMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA5Ljg2NzE5KSIgZD0iTTIuODYwMTUgNC44NjUzNUwwLjcyNjU0OSAyLjk5OTU5TDAgMy42MzA0NUwyLjg2MDE1IDYuMTMxNTdMOCAwLjYzMDg3Mkw3LjI3ODU3IDBMMi44NjAxNSA0Ljg2NTM1WiIvPgo8L3N2Zz4K);\n  --jp-icon-undo: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjUgOGMtMi42NSAwLTUuMDUuOTktNi45IDIuNkwyIDd2OWg5bC0zLjYyLTMuNjJjMS4zOS0xLjE2IDMuMTYtMS44OCA1LjEyLTEuODggMy41NCAwIDYuNTUgMi4zMSA3LjYgNS41bDIuMzctLjc4QzIxLjA4IDExLjAzIDE3LjE1IDggMTIuNSA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-vega: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbjEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjEyMTIxIj4KICAgIDxwYXRoIGQ9Ik0xMC42IDUuNGwyLjItMy4ySDIuMnY3LjNsNC02LjZ6Ii8+CiAgICA8cGF0aCBkPSJNMTUuOCAyLjJsLTQuNCA2LjZMNyA2LjNsLTQuOCA4djUuNWgxNy42VjIuMmgtNHptLTcgMTUuNEg1LjV2LTQuNGgzLjN2NC40em00LjQgMEg5LjhWOS44aDMuNHY3Ljh6bTQuNCAwaC0zLjRWNi41aDMuNHYxMS4xeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-yaml: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1jb250cmFzdDIganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjRDgxQjYwIj4KICAgIDxwYXRoIGQ9Ik03LjIgMTguNnYtNS40TDMgNS42aDMuM2wxLjQgMy4xYy4zLjkuNiAxLjYgMSAyLjUuMy0uOC42LTEuNiAxLTIuNWwxLjQtMy4xaDMuNGwtNC40IDcuNnY1LjVsLTIuOS0uMXoiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxNi41IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxMSIgcj0iMi4xIi8+CiAgPC9nPgo8L3N2Zz4K);\n}\n\n/* Icon CSS class declarations */\n\n.jp-AddIcon {\n  background-image: var(--jp-icon-add);\n}\n.jp-BugIcon {\n  background-image: var(--jp-icon-bug);\n}\n.jp-BuildIcon {\n  background-image: var(--jp-icon-build);\n}\n.jp-CaretDownEmptyIcon {\n  background-image: var(--jp-icon-caret-down-empty);\n}\n.jp-CaretDownEmptyThinIcon {\n  background-image: var(--jp-icon-caret-down-empty-thin);\n}\n.jp-CaretDownIcon {\n  background-image: var(--jp-icon-caret-down);\n}\n.jp-CaretLeftIcon {\n  background-image: var(--jp-icon-caret-left);\n}\n.jp-CaretRightIcon {\n  background-image: var(--jp-icon-caret-right);\n}\n.jp-CaretUpEmptyThinIcon {\n  background-image: var(--jp-icon-caret-up-empty-thin);\n}\n.jp-CaretUpIcon {\n  background-image: var(--jp-icon-caret-up);\n}\n.jp-CaseSensitiveIcon {\n  background-image: var(--jp-icon-case-sensitive);\n}\n.jp-CheckIcon {\n  background-image: var(--jp-icon-check);\n}\n.jp-CircleEmptyIcon {\n  background-image: var(--jp-icon-circle-empty);\n}\n.jp-CircleIcon {\n  background-image: var(--jp-icon-circle);\n}\n.jp-ClearIcon {\n  background-image: var(--jp-icon-clear);\n}\n.jp-CloseIcon {\n  background-image: var(--jp-icon-close);\n}\n.jp-CodeIcon {\n  background-image: var(--jp-icon-code);\n}\n.jp-ConsoleIcon {\n  background-image: var(--jp-icon-console);\n}\n.jp-CopyIcon {\n  background-image: var(--jp-icon-copy);\n}\n.jp-CopyrightIcon {\n  background-image: var(--jp-icon-copyright);\n}\n.jp-CutIcon {\n  background-image: var(--jp-icon-cut);\n}\n.jp-DownloadIcon {\n  background-image: var(--jp-icon-download);\n}\n.jp-EditIcon {\n  background-image: var(--jp-icon-edit);\n}\n.jp-EllipsesIcon {\n  background-image: var(--jp-icon-ellipses);\n}\n.jp-ExtensionIcon {\n  background-image: var(--jp-icon-extension);\n}\n.jp-FastForwardIcon {\n  background-image: var(--jp-icon-fast-forward);\n}\n.jp-FileIcon {\n  background-image: var(--jp-icon-file);\n}\n.jp-FileUploadIcon {\n  background-image: var(--jp-icon-file-upload);\n}\n.jp-FilterListIcon {\n  background-image: var(--jp-icon-filter-list);\n}\n.jp-FolderIcon {\n  background-image: var(--jp-icon-folder);\n}\n.jp-Html5Icon {\n  background-image: var(--jp-icon-html5);\n}\n.jp-ImageIcon {\n  background-image: var(--jp-icon-image);\n}\n.jp-InspectorIcon {\n  background-image: var(--jp-icon-inspector);\n}\n.jp-JsonIcon {\n  background-image: var(--jp-icon-json);\n}\n.jp-JuliaIcon {\n  background-image: var(--jp-icon-julia);\n}\n.jp-JupyterFaviconIcon {\n  background-image: var(--jp-icon-jupyter-favicon);\n}\n.jp-JupyterIcon {\n  background-image: var(--jp-icon-jupyter);\n}\n.jp-JupyterlabWordmarkIcon {\n  background-image: var(--jp-icon-jupyterlab-wordmark);\n}\n.jp-KernelIcon {\n  background-image: var(--jp-icon-kernel);\n}\n.jp-KeyboardIcon {\n  background-image: var(--jp-icon-keyboard);\n}\n.jp-LauncherIcon {\n  background-image: var(--jp-icon-launcher);\n}\n.jp-LineFormIcon {\n  background-image: var(--jp-icon-line-form);\n}\n.jp-LinkIcon {\n  background-image: var(--jp-icon-link);\n}\n.jp-ListIcon {\n  background-image: var(--jp-icon-list);\n}\n.jp-ListingsInfoIcon {\n  background-image: var(--jp-icon-listings-info);\n}\n.jp-MarkdownIcon {\n  background-image: var(--jp-icon-markdown);\n}\n.jp-NewFolderIcon {\n  background-image: var(--jp-icon-new-folder);\n}\n.jp-NotTrustedIcon {\n  background-image: var(--jp-icon-not-trusted);\n}\n.jp-NotebookIcon {\n  background-image: var(--jp-icon-notebook);\n}\n.jp-NumberingIcon {\n  background-image: var(--jp-icon-numbering);\n}\n.jp-OfflineBoltIcon {\n  background-image: var(--jp-icon-offline-bolt);\n}\n.jp-PaletteIcon {\n  background-image: var(--jp-icon-palette);\n}\n.jp-PasteIcon {\n  background-image: var(--jp-icon-paste);\n}\n.jp-PdfIcon {\n  background-image: var(--jp-icon-pdf);\n}\n.jp-PythonIcon {\n  background-image: var(--jp-icon-python);\n}\n.jp-RKernelIcon {\n  background-image: var(--jp-icon-r-kernel);\n}\n.jp-ReactIcon {\n  background-image: var(--jp-icon-react);\n}\n.jp-RedoIcon {\n  background-image: var(--jp-icon-redo);\n}\n.jp-RefreshIcon {\n  background-image: var(--jp-icon-refresh);\n}\n.jp-RegexIcon {\n  background-image: var(--jp-icon-regex);\n}\n.jp-RunIcon {\n  background-image: var(--jp-icon-run);\n}\n.jp-RunningIcon {\n  background-image: var(--jp-icon-running);\n}\n.jp-SaveIcon {\n  background-image: var(--jp-icon-save);\n}\n.jp-SearchIcon {\n  background-image: var(--jp-icon-search);\n}\n.jp-SettingsIcon {\n  background-image: var(--jp-icon-settings);\n}\n.jp-SpreadsheetIcon {\n  background-image: var(--jp-icon-spreadsheet);\n}\n.jp-StopIcon {\n  background-image: var(--jp-icon-stop);\n}\n.jp-TabIcon {\n  background-image: var(--jp-icon-tab);\n}\n.jp-TableRowsIcon {\n  background-image: var(--jp-icon-table-rows);\n}\n.jp-TagIcon {\n  background-image: var(--jp-icon-tag);\n}\n.jp-TerminalIcon {\n  background-image: var(--jp-icon-terminal);\n}\n.jp-TextEditorIcon {\n  background-image: var(--jp-icon-text-editor);\n}\n.jp-TocIcon {\n  background-image: var(--jp-icon-toc);\n}\n.jp-TreeViewIcon {\n  background-image: var(--jp-icon-tree-view);\n}\n.jp-TrustedIcon {\n  background-image: var(--jp-icon-trusted);\n}\n.jp-UndoIcon {\n  background-image: var(--jp-icon-undo);\n}\n.jp-VegaIcon {\n  background-image: var(--jp-icon-vega);\n}\n.jp-YamlIcon {\n  background-image: var(--jp-icon-yaml);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n.jp-Icon,\n.jp-MaterialIcon {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-cover {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: cover;\n}\n\n/**\n * (DEPRECATED) Support for specific CSS icon sizes\n */\n\n.jp-Icon-16 {\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-18 {\n  background-size: 18px;\n  min-width: 18px;\n  min-height: 18px;\n}\n\n.jp-Icon-20 {\n  background-size: 20px;\n  min-width: 20px;\n  min-height: 20px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for icons as inline SVG HTMLElements\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n/* recolor the accent elements of an icon */\n.jp-icon-accent0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-accent1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-accent2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-accent3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-accent4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-accent0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-accent1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-accent2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-accent3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-accent4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n/* set the color of an icon to transparent */\n.jp-icon-none[fill] {\n  fill: none;\n}\n\n.jp-icon-none[stroke] {\n  stroke: none;\n}\n/* brand icon colors. Same for light and dark */\n.jp-icon-brand0[fill] {\n  fill: var(--jp-brand-color0);\n}\n.jp-icon-brand1[fill] {\n  fill: var(--jp-brand-color1);\n}\n.jp-icon-brand2[fill] {\n  fill: var(--jp-brand-color2);\n}\n.jp-icon-brand3[fill] {\n  fill: var(--jp-brand-color3);\n}\n.jp-icon-brand4[fill] {\n  fill: var(--jp-brand-color4);\n}\n\n.jp-icon-brand0[stroke] {\n  stroke: var(--jp-brand-color0);\n}\n.jp-icon-brand1[stroke] {\n  stroke: var(--jp-brand-color1);\n}\n.jp-icon-brand2[stroke] {\n  stroke: var(--jp-brand-color2);\n}\n.jp-icon-brand3[stroke] {\n  stroke: var(--jp-brand-color3);\n}\n.jp-icon-brand4[stroke] {\n  stroke: var(--jp-brand-color4);\n}\n/* warn icon colors. Same for light and dark */\n.jp-icon-warn0[fill] {\n  fill: var(--jp-warn-color0);\n}\n.jp-icon-warn1[fill] {\n  fill: var(--jp-warn-color1);\n}\n.jp-icon-warn2[fill] {\n  fill: var(--jp-warn-color2);\n}\n.jp-icon-warn3[fill] {\n  fill: var(--jp-warn-color3);\n}\n\n.jp-icon-warn0[stroke] {\n  stroke: var(--jp-warn-color0);\n}\n.jp-icon-warn1[stroke] {\n  stroke: var(--jp-warn-color1);\n}\n.jp-icon-warn2[stroke] {\n  stroke: var(--jp-warn-color2);\n}\n.jp-icon-warn3[stroke] {\n  stroke: var(--jp-warn-color3);\n}\n/* icon colors that contrast well with each other and most backgrounds */\n.jp-icon-contrast0[fill] {\n  fill: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[fill] {\n  fill: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[fill] {\n  fill: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[fill] {\n  fill: var(--jp-icon-contrast-color3);\n}\n\n.jp-icon-contrast0[stroke] {\n  stroke: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[stroke] {\n  stroke: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[stroke] {\n  stroke: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[stroke] {\n  stroke: var(--jp-icon-contrast-color3);\n}\n\n/* CSS for icons in selected items in the settings editor */\n#setting-editor .jp-PluginList .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n#setting-editor\n  .jp-PluginList\n  .jp-mod-selected\n  .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected filebrowser listing items */\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected tabs in the sidebar tab manager */\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable-inverse[fill] {\n  fill: #fff;\n}\n\n/**\n * TODO: come up with non css-hack solution for showing the busy icon on top\n *  of the close icon\n * CSS for complex behavior of close icon of tabs in the sidebar tab manager\n */\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty.jp-mod-active\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: #fff;\n}\n\n/**\n* TODO: come up with non css-hack solution for showing the busy icon on top\n*  of the close icon\n* CSS for complex behavior of close icon of tabs in the main area tabbar\n*/\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n/* CSS for icons in status bar */\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n/* special handling for splash icon CSS. While the theme CSS reloads during\n   splash, the splash icon can loose theming. To prevent that, we set a\n   default for its color variable */\n:root {\n  --jp-warn-color0: var(--md-orange-700);\n}\n\n/* not sure what to do with this one, used in filebrowser listing */\n.jp-DragIcon {\n  margin-right: 4px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for alt colors for icons as inline SVG HTMLElements\n */\n\n/* alt recolor the primary elements of an icon */\n.jp-icon-alt .jp-icon0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-alt .jp-icon0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* alt recolor the accent elements of an icon */\n.jp-icon-alt .jp-icon-accent0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-alt .jp-icon-accent0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-icon-hoverShow:not(:hover) svg {\n  display: none !important;\n}\n\n/**\n * Support for hover colors for icons as inline SVG HTMLElements\n */\n\n/**\n * regular colors\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon-hover :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/* recolor the accent elements of an icon */\n.jp-icon-hover :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* set the color of an icon to transparent */\n.jp-icon-hover :hover .jp-icon-none-hover[fill] {\n  fill: none;\n}\n\n.jp-icon-hover :hover .jp-icon-none-hover[stroke] {\n  stroke: none;\n}\n\n/**\n * inverse colors\n */\n\n/* inverse recolor the primary elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* inverse recolor the accent elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-switch {\n  display: flex;\n  align-items: center;\n  padding-left: 4px;\n  padding-right: 4px;\n  font-size: var(--jp-ui-font-size1);\n  background-color: transparent;\n  color: var(--jp-ui-font-color1);\n  border: none;\n  height: 20px;\n}\n\n.jp-switch:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-switch-label {\n  margin-right: 5px;\n}\n\n.jp-switch-track {\n  cursor: pointer;\n  background-color: var(--jp-border-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 34px;\n  height: 16px;\n  width: 35px;\n  position: relative;\n}\n\n.jp-switch-track::before {\n  content: '';\n  position: absolute;\n  height: 10px;\n  width: 10px;\n  margin: 3px;\n  left: 0px;\n  background-color: var(--jp-ui-inverse-font-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 50%;\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track {\n  background-color: var(--jp-warn-color0);\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track::before {\n  /* track width (35) - margins (3 + 3) - thumb width (10) */\n  left: 19px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* Sibling imports */\n\n/* Override Blueprint's _reset.scss styles */\nhtml {\n  box-sizing: unset;\n}\n\n*,\n*::before,\n*::after {\n  box-sizing: unset;\n}\n\nbody {\n  color: unset;\n  font-family: var(--jp-ui-font-family);\n}\n\np {\n  margin-top: unset;\n  margin-bottom: unset;\n}\n\nsmall {\n  font-size: unset;\n}\n\nstrong {\n  font-weight: unset;\n}\n\n/* Override Blueprint's _typography.scss styles */\na {\n  text-decoration: unset;\n  color: unset;\n}\na:hover {\n  text-decoration: unset;\n  color: unset;\n}\n\n/* Override Blueprint's _accessibility.scss styles */\n:focus {\n  outline: unset;\n  outline-offset: unset;\n  -moz-outline-radius: unset;\n}\n\n/* Styles for ui-components */\n.jp-Button {\n  border-radius: var(--jp-border-radius);\n  padding: 0px 12px;\n  font-size: var(--jp-ui-font-size1);\n}\n\n/* Use our own theme for hover styles */\nbutton.jp-Button.bp3-button.bp3-minimal:hover {\n  background-color: var(--jp-layout-color2);\n}\n.jp-Button.minimal {\n  color: unset !important;\n}\n\n.jp-Button.jp-ToolbarButtonComponent {\n  text-transform: none;\n}\n\n.jp-InputGroup input {\n  box-sizing: border-box;\n  border-radius: 0;\n  background-color: transparent;\n  color: var(--jp-ui-font-color0);\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.jp-InputGroup input:focus {\n  box-shadow: inset 0 0 0 var(--jp-border-width)\n      var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-InputGroup input::placeholder,\ninput::placeholder {\n  color: var(--jp-ui-font-color3);\n}\n\n.jp-BPIcon {\n  display: inline-block;\n  vertical-align: middle;\n  margin: auto;\n}\n\n/* Stop blueprint futzing with our icon fills */\n.bp3-icon.jp-BPIcon > svg:not([fill]) {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n.jp-InputGroupAction {\n  padding: 6px;\n}\n\n.jp-HTMLSelect.jp-DefaultStyle select {\n  background-color: initial;\n  border: none;\n  border-radius: 0;\n  box-shadow: none;\n  color: var(--jp-ui-font-color0);\n  display: block;\n  font-size: var(--jp-ui-font-size1);\n  height: 24px;\n  line-height: 14px;\n  padding: 0 25px 0 10px;\n  text-align: left;\n  -moz-appearance: none;\n  -webkit-appearance: none;\n}\n\n/* Use our own theme for hover and option styles */\n.jp-HTMLSelect.jp-DefaultStyle select:hover,\n.jp-HTMLSelect.jp-DefaultStyle select > option {\n  background-color: var(--jp-layout-color2);\n  color: var(--jp-ui-font-color0);\n}\nselect {\n  box-sizing: border-box;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapse {\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  border-top: 1px solid var(--jp-border-color2);\n  border-bottom: 1px solid var(--jp-border-color2);\n}\n\n.jp-Collapse-header {\n  padding: 1px 12px;\n  color: var(--jp-ui-font-color1);\n  background-color: var(--jp-layout-color1);\n  font-size: var(--jp-ui-font-size2);\n}\n\n.jp-Collapse-header:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-Collapse-contents {\n  padding: 0px 12px 0px 12px;\n  background-color: var(--jp-layout-color1);\n  color: var(--jp-ui-font-color1);\n  overflow: auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-commandpalette-search-height: 28px;\n}\n\n/*-----------------------------------------------------------------------------\n| Overall styles\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette {\n  padding-bottom: 0px;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Modal variant\n|----------------------------------------------------------------------------*/\n\n.jp-ModalCommandPalette {\n  position: absolute;\n  z-index: 10000;\n  top: 38px;\n  left: 30%;\n  margin: 0;\n  padding: 4px;\n  width: 40%;\n  box-shadow: var(--jp-elevation-z4);\n  border-radius: 4px;\n  background: var(--jp-layout-color0);\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette {\n  max-height: 40vh;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-close-icon::after {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-header {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-item {\n  margin-left: 4px;\n  margin-right: 4px;\n}\n\n.jp-ModalCommandPalette\n  .lm-CommandPalette\n  .lm-CommandPalette-item.lm-mod-disabled {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Search\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-search {\n  padding: 4px;\n  background-color: var(--jp-layout-color1);\n  z-index: 2;\n}\n\n.lm-CommandPalette-wrapper {\n  overflow: overlay;\n  padding: 0px 9px;\n  background-color: var(--jp-input-active-background);\n  height: 30px;\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.lm-CommandPalette.lm-mod-focused .lm-CommandPalette-wrapper {\n  box-shadow: inset 0 0 0 1px var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-SearchIconGroup {\n  color: white;\n  background-color: var(--jp-brand-color1);\n  position: absolute;\n  top: 4px;\n  right: 4px;\n  padding: 5px 5px 1px 5px;\n}\n\n.jp-SearchIconGroup svg {\n  height: 20px;\n  width: 20px;\n}\n\n.jp-SearchIconGroup .jp-icon3[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-input {\n  background: transparent;\n  width: calc(100% - 18px);\n  float: left;\n  border: none;\n  outline: none;\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  line-height: var(--jp-private-commandpalette-search-height);\n}\n\n.lm-CommandPalette-input::-webkit-input-placeholder,\n.lm-CommandPalette-input::-moz-placeholder,\n.lm-CommandPalette-input:-ms-input-placeholder {\n  color: var(--jp-ui-font-color2);\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Results\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-header:first-child {\n  margin-top: 0px;\n}\n\n.lm-CommandPalette-header {\n  border-bottom: solid var(--jp-border-width) var(--jp-border-color2);\n  color: var(--jp-ui-font-color1);\n  cursor: pointer;\n  display: flex;\n  font-size: var(--jp-ui-font-size0);\n  font-weight: 600;\n  letter-spacing: 1px;\n  margin-top: 8px;\n  padding: 8px 0 8px 12px;\n  text-transform: uppercase;\n}\n\n.lm-CommandPalette-header.lm-mod-active {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-header > mark {\n  background-color: transparent;\n  font-weight: bold;\n  color: var(--jp-ui-font-color1);\n}\n\n.lm-CommandPalette-item {\n  padding: 4px 12px 4px 4px;\n  color: var(--jp-ui-font-color1);\n  font-size: var(--jp-ui-font-size1);\n  font-weight: 400;\n  display: flex;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item.lm-mod-active {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .jp-icon-selectable[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active:hover:not(.lm-mod-disabled) {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item:hover:not(.lm-mod-active):not(.lm-mod-disabled) {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-itemContent {\n  overflow: hidden;\n}\n\n.lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled mark {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemIcon {\n  margin: 0 4px 0 0;\n  position: relative;\n  width: 16px;\n  top: 2px;\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled .lm-CommandPalette-itemIcon {\n  opacity: 0.6;\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-itemCaption {\n  display: none;\n}\n\n.lm-CommandPalette-content {\n  background-color: var(--jp-layout-color1);\n}\n\n.lm-CommandPalette-content:empty:after {\n  content: 'No results';\n  margin: auto;\n  margin-top: 20px;\n  width: 100px;\n  display: block;\n  font-size: var(--jp-ui-font-size2);\n  font-family: var(--jp-ui-font-family);\n  font-weight: lighter;\n}\n\n.lm-CommandPalette-emptyMessage {\n  text-align: center;\n  margin-top: 24px;\n  line-height: 1.32;\n  padding: 0px 8px;\n  color: var(--jp-content-font-color3);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Dialog {\n  position: absolute;\n  z-index: 10000;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  top: 0px;\n  left: 0px;\n  margin: 0;\n  padding: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-dialog-background);\n}\n\n.jp-Dialog-content {\n  display: flex;\n  flex-direction: column;\n  margin-left: auto;\n  margin-right: auto;\n  background: var(--jp-layout-color1);\n  padding: 24px;\n  padding-bottom: 12px;\n  min-width: 300px;\n  min-height: 150px;\n  max-width: 1000px;\n  max-height: 500px;\n  box-sizing: border-box;\n  box-shadow: var(--jp-elevation-z20);\n  word-wrap: break-word;\n  border-radius: var(--jp-border-radius);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color1);\n  resize: both;\n}\n\n.jp-Dialog-button {\n  overflow: visible;\n}\n\nbutton.jp-Dialog-button:focus {\n  outline: 1px solid var(--jp-brand-color1);\n  outline-offset: 4px;\n  -moz-outline-radius: 0px;\n}\n\nbutton.jp-Dialog-button:focus::-moz-focus-inner {\n  border: 0;\n}\n\nbutton.jp-Dialog-close-button {\n  padding: 0;\n  height: 100%;\n  min-width: unset;\n  min-height: unset;\n}\n\n.jp-Dialog-header {\n  display: flex;\n  justify-content: space-between;\n  flex: 0 0 auto;\n  padding-bottom: 12px;\n  font-size: var(--jp-ui-font-size3);\n  font-weight: 400;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-body {\n  display: flex;\n  flex-direction: column;\n  flex: 1 1 auto;\n  font-size: var(--jp-ui-font-size1);\n  background: var(--jp-layout-color1);\n  overflow: auto;\n}\n\n.jp-Dialog-footer {\n  display: flex;\n  flex-direction: row;\n  justify-content: flex-end;\n  flex: 0 0 auto;\n  margin-left: -12px;\n  margin-right: -12px;\n  padding: 12px;\n}\n\n.jp-Dialog-title {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.jp-Dialog-body > .jp-select-wrapper {\n  width: 100%;\n}\n\n.jp-Dialog-body > button {\n  padding: 0px 16px;\n}\n\n.jp-Dialog-body > label {\n  line-height: 1.4;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-button.jp-mod-styled:not(:last-child) {\n  margin-right: 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-HoverBox {\n  position: fixed;\n}\n\n.jp-HoverBox.jp-mod-outofview {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-IFrame {\n  width: 100%;\n  height: 100%;\n}\n\n.jp-IFrame > iframe {\n  border: none;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-IFrame {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-IFrame:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n.jp-Input-Boolean-Dialog {\n  flex-direction: row-reverse;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-Input-Boolean-Dialog > label {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MainAreaWidget > :focus {\n  outline: none;\n}\n\n/**\n * google-material-color v1.2.6\n * https://github.com/danlevan/google-material-color\n */\n:root {\n  --md-red-50: #ffebee;\n  --md-red-100: #ffcdd2;\n  --md-red-200: #ef9a9a;\n  --md-red-300: #e57373;\n  --md-red-400: #ef5350;\n  --md-red-500: #f44336;\n  --md-red-600: #e53935;\n  --md-red-700: #d32f2f;\n  --md-red-800: #c62828;\n  --md-red-900: #b71c1c;\n  --md-red-A100: #ff8a80;\n  --md-red-A200: #ff5252;\n  --md-red-A400: #ff1744;\n  --md-red-A700: #d50000;\n\n  --md-pink-50: #fce4ec;\n  --md-pink-100: #f8bbd0;\n  --md-pink-200: #f48fb1;\n  --md-pink-300: #f06292;\n  --md-pink-400: #ec407a;\n  --md-pink-500: #e91e63;\n  --md-pink-600: #d81b60;\n  --md-pink-700: #c2185b;\n  --md-pink-800: #ad1457;\n  --md-pink-900: #880e4f;\n  --md-pink-A100: #ff80ab;\n  --md-pink-A200: #ff4081;\n  --md-pink-A400: #f50057;\n  --md-pink-A700: #c51162;\n\n  --md-purple-50: #f3e5f5;\n  --md-purple-100: #e1bee7;\n  --md-purple-200: #ce93d8;\n  --md-purple-300: #ba68c8;\n  --md-purple-400: #ab47bc;\n  --md-purple-500: #9c27b0;\n  --md-purple-600: #8e24aa;\n  --md-purple-700: #7b1fa2;\n  --md-purple-800: #6a1b9a;\n  --md-purple-900: #4a148c;\n  --md-purple-A100: #ea80fc;\n  --md-purple-A200: #e040fb;\n  --md-purple-A400: #d500f9;\n  --md-purple-A700: #aa00ff;\n\n  --md-deep-purple-50: #ede7f6;\n  --md-deep-purple-100: #d1c4e9;\n  --md-deep-purple-200: #b39ddb;\n  --md-deep-purple-300: #9575cd;\n  --md-deep-purple-400: #7e57c2;\n  --md-deep-purple-500: #673ab7;\n  --md-deep-purple-600: #5e35b1;\n  --md-deep-purple-700: #512da8;\n  --md-deep-purple-800: #4527a0;\n  --md-deep-purple-900: #311b92;\n  --md-deep-purple-A100: #b388ff;\n  --md-deep-purple-A200: #7c4dff;\n  --md-deep-purple-A400: #651fff;\n  --md-deep-purple-A700: #6200ea;\n\n  --md-indigo-50: #e8eaf6;\n  --md-indigo-100: #c5cae9;\n  --md-indigo-200: #9fa8da;\n  --md-indigo-300: #7986cb;\n  --md-indigo-400: #5c6bc0;\n  --md-indigo-500: #3f51b5;\n  --md-indigo-600: #3949ab;\n  --md-indigo-700: #303f9f;\n  --md-indigo-800: #283593;\n  --md-indigo-900: #1a237e;\n  --md-indigo-A100: #8c9eff;\n  --md-indigo-A200: #536dfe;\n  --md-indigo-A400: #3d5afe;\n  --md-indigo-A700: #304ffe;\n\n  --md-blue-50: #e3f2fd;\n  --md-blue-100: #bbdefb;\n  --md-blue-200: #90caf9;\n  --md-blue-300: #64b5f6;\n  --md-blue-400: #42a5f5;\n  --md-blue-500: #2196f3;\n  --md-blue-600: #1e88e5;\n  --md-blue-700: #1976d2;\n  --md-blue-800: #1565c0;\n  --md-blue-900: #0d47a1;\n  --md-blue-A100: #82b1ff;\n  --md-blue-A200: #448aff;\n  --md-blue-A400: #2979ff;\n  --md-blue-A700: #2962ff;\n\n  --md-light-blue-50: #e1f5fe;\n  --md-light-blue-100: #b3e5fc;\n  --md-light-blue-200: #81d4fa;\n  --md-light-blue-300: #4fc3f7;\n  --md-light-blue-400: #29b6f6;\n  --md-light-blue-500: #03a9f4;\n  --md-light-blue-600: #039be5;\n  --md-light-blue-700: #0288d1;\n  --md-light-blue-800: #0277bd;\n  --md-light-blue-900: #01579b;\n  --md-light-blue-A100: #80d8ff;\n  --md-light-blue-A200: #40c4ff;\n  --md-light-blue-A400: #00b0ff;\n  --md-light-blue-A700: #0091ea;\n\n  --md-cyan-50: #e0f7fa;\n  --md-cyan-100: #b2ebf2;\n  --md-cyan-200: #80deea;\n  --md-cyan-300: #4dd0e1;\n  --md-cyan-400: #26c6da;\n  --md-cyan-500: #00bcd4;\n  --md-cyan-600: #00acc1;\n  --md-cyan-700: #0097a7;\n  --md-cyan-800: #00838f;\n  --md-cyan-900: #006064;\n  --md-cyan-A100: #84ffff;\n  --md-cyan-A200: #18ffff;\n  --md-cyan-A400: #00e5ff;\n  --md-cyan-A700: #00b8d4;\n\n  --md-teal-50: #e0f2f1;\n  --md-teal-100: #b2dfdb;\n  --md-teal-200: #80cbc4;\n  --md-teal-300: #4db6ac;\n  --md-teal-400: #26a69a;\n  --md-teal-500: #009688;\n  --md-teal-600: #00897b;\n  --md-teal-700: #00796b;\n  --md-teal-800: #00695c;\n  --md-teal-900: #004d40;\n  --md-teal-A100: #a7ffeb;\n  --md-teal-A200: #64ffda;\n  --md-teal-A400: #1de9b6;\n  --md-teal-A700: #00bfa5;\n\n  --md-green-50: #e8f5e9;\n  --md-green-100: #c8e6c9;\n  --md-green-200: #a5d6a7;\n  --md-green-300: #81c784;\n  --md-green-400: #66bb6a;\n  --md-green-500: #4caf50;\n  --md-green-600: #43a047;\n  --md-green-700: #388e3c;\n  --md-green-800: #2e7d32;\n  --md-green-900: #1b5e20;\n  --md-green-A100: #b9f6ca;\n  --md-green-A200: #69f0ae;\n  --md-green-A400: #00e676;\n  --md-green-A700: #00c853;\n\n  --md-light-green-50: #f1f8e9;\n  --md-light-green-100: #dcedc8;\n  --md-light-green-200: #c5e1a5;\n  --md-light-green-300: #aed581;\n  --md-light-green-400: #9ccc65;\n  --md-light-green-500: #8bc34a;\n  --md-light-green-600: #7cb342;\n  --md-light-green-700: #689f38;\n  --md-light-green-800: #558b2f;\n  --md-light-green-900: #33691e;\n  --md-light-green-A100: #ccff90;\n  --md-light-green-A200: #b2ff59;\n  --md-light-green-A400: #76ff03;\n  --md-light-green-A700: #64dd17;\n\n  --md-lime-50: #f9fbe7;\n  --md-lime-100: #f0f4c3;\n  --md-lime-200: #e6ee9c;\n  --md-lime-300: #dce775;\n  --md-lime-400: #d4e157;\n  --md-lime-500: #cddc39;\n  --md-lime-600: #c0ca33;\n  --md-lime-700: #afb42b;\n  --md-lime-800: #9e9d24;\n  --md-lime-900: #827717;\n  --md-lime-A100: #f4ff81;\n  --md-lime-A200: #eeff41;\n  --md-lime-A400: #c6ff00;\n  --md-lime-A700: #aeea00;\n\n  --md-yellow-50: #fffde7;\n  --md-yellow-100: #fff9c4;\n  --md-yellow-200: #fff59d;\n  --md-yellow-300: #fff176;\n  --md-yellow-400: #ffee58;\n  --md-yellow-500: #ffeb3b;\n  --md-yellow-600: #fdd835;\n  --md-yellow-700: #fbc02d;\n  --md-yellow-800: #f9a825;\n  --md-yellow-900: #f57f17;\n  --md-yellow-A100: #ffff8d;\n  --md-yellow-A200: #ffff00;\n  --md-yellow-A400: #ffea00;\n  --md-yellow-A700: #ffd600;\n\n  --md-amber-50: #fff8e1;\n  --md-amber-100: #ffecb3;\n  --md-amber-200: #ffe082;\n  --md-amber-300: #ffd54f;\n  --md-amber-400: #ffca28;\n  --md-amber-500: #ffc107;\n  --md-amber-600: #ffb300;\n  --md-amber-700: #ffa000;\n  --md-amber-800: #ff8f00;\n  --md-amber-900: #ff6f00;\n  --md-amber-A100: #ffe57f;\n  --md-amber-A200: #ffd740;\n  --md-amber-A400: #ffc400;\n  --md-amber-A700: #ffab00;\n\n  --md-orange-50: #fff3e0;\n  --md-orange-100: #ffe0b2;\n  --md-orange-200: #ffcc80;\n  --md-orange-300: #ffb74d;\n  --md-orange-400: #ffa726;\n  --md-orange-500: #ff9800;\n  --md-orange-600: #fb8c00;\n  --md-orange-700: #f57c00;\n  --md-orange-800: #ef6c00;\n  --md-orange-900: #e65100;\n  --md-orange-A100: #ffd180;\n  --md-orange-A200: #ffab40;\n  --md-orange-A400: #ff9100;\n  --md-orange-A700: #ff6d00;\n\n  --md-deep-orange-50: #fbe9e7;\n  --md-deep-orange-100: #ffccbc;\n  --md-deep-orange-200: #ffab91;\n  --md-deep-orange-300: #ff8a65;\n  --md-deep-orange-400: #ff7043;\n  --md-deep-orange-500: #ff5722;\n  --md-deep-orange-600: #f4511e;\n  --md-deep-orange-700: #e64a19;\n  --md-deep-orange-800: #d84315;\n  --md-deep-orange-900: #bf360c;\n  --md-deep-orange-A100: #ff9e80;\n  --md-deep-orange-A200: #ff6e40;\n  --md-deep-orange-A400: #ff3d00;\n  --md-deep-orange-A700: #dd2c00;\n\n  --md-brown-50: #efebe9;\n  --md-brown-100: #d7ccc8;\n  --md-brown-200: #bcaaa4;\n  --md-brown-300: #a1887f;\n  --md-brown-400: #8d6e63;\n  --md-brown-500: #795548;\n  --md-brown-600: #6d4c41;\n  --md-brown-700: #5d4037;\n  --md-brown-800: #4e342e;\n  --md-brown-900: #3e2723;\n\n  --md-grey-50: #fafafa;\n  --md-grey-100: #f5f5f5;\n  --md-grey-200: #eeeeee;\n  --md-grey-300: #e0e0e0;\n  --md-grey-400: #bdbdbd;\n  --md-grey-500: #9e9e9e;\n  --md-grey-600: #757575;\n  --md-grey-700: #616161;\n  --md-grey-800: #424242;\n  --md-grey-900: #212121;\n\n  --md-blue-grey-50: #eceff1;\n  --md-blue-grey-100: #cfd8dc;\n  --md-blue-grey-200: #b0bec5;\n  --md-blue-grey-300: #90a4ae;\n  --md-blue-grey-400: #78909c;\n  --md-blue-grey-500: #607d8b;\n  --md-blue-grey-600: #546e7a;\n  --md-blue-grey-700: #455a64;\n  --md-blue-grey-800: #37474f;\n  --md-blue-grey-900: #263238;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Spinner {\n  position: absolute;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  z-index: 10;\n  left: 0;\n  top: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-layout-color0);\n  outline: none;\n}\n\n.jp-SpinnerContent {\n  font-size: 10px;\n  margin: 50px auto;\n  text-indent: -9999em;\n  width: 3em;\n  height: 3em;\n  border-radius: 50%;\n  background: var(--jp-brand-color3);\n  background: linear-gradient(\n    to right,\n    #f37626 10%,\n    rgba(255, 255, 255, 0) 42%\n  );\n  position: relative;\n  animation: load3 1s infinite linear, fadeIn 1s;\n}\n\n.jp-SpinnerContent:before {\n  width: 50%;\n  height: 50%;\n  background: #f37626;\n  border-radius: 100% 0 0 0;\n  position: absolute;\n  top: 0;\n  left: 0;\n  content: '';\n}\n\n.jp-SpinnerContent:after {\n  background: var(--jp-layout-color0);\n  width: 75%;\n  height: 75%;\n  border-radius: 50%;\n  content: '';\n  margin: auto;\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n}\n\n@keyframes fadeIn {\n  0% {\n    opacity: 0;\n  }\n  100% {\n    opacity: 1;\n  }\n}\n\n@keyframes load3 {\n  0% {\n    transform: rotate(0deg);\n  }\n  100% {\n    transform: rotate(360deg);\n  }\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\nbutton.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: none;\n  box-sizing: border-box;\n  text-align: center;\n  line-height: 32px;\n  height: 32px;\n  padding: 0px 12px;\n  letter-spacing: 0.8px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput.jp-mod-styled {\n  background: var(--jp-input-background);\n  height: 28px;\n  box-sizing: border-box;\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n  padding-left: 7px;\n  padding-right: 7px;\n  font-size: var(--jp-ui-font-size2);\n  color: var(--jp-ui-font-color0);\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput[type='checkbox'].jp-mod-styled {\n  appearance: checkbox;\n  -webkit-appearance: checkbox;\n  -moz-appearance: checkbox;\n  height: auto;\n}\n\ninput.jp-mod-styled:focus {\n  border: var(--jp-border-width) solid var(--md-blue-500);\n  box-shadow: inset 0 0 4px var(--md-blue-300);\n}\n\n.jp-FileDialog-Checkbox {\n  margin-top: 35px;\n  display: flex;\n  flex-direction: row;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-FileDialog-Checkbox > label {\n  flex: 1 1 auto;\n}\n\n.jp-select-wrapper {\n  display: flex;\n  position: relative;\n  flex-direction: column;\n  padding: 1px;\n  background-color: var(--jp-layout-color1);\n  height: 28px;\n  box-sizing: border-box;\n  margin-bottom: 12px;\n}\n\n.jp-select-wrapper.jp-mod-focused select.jp-mod-styled {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-input-active-background);\n}\n\nselect.jp-mod-styled:hover {\n  background-color: var(--jp-layout-color1);\n  cursor: pointer;\n  color: var(--jp-ui-font-color0);\n  background-color: var(--jp-input-hover-background);\n  box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.5);\n}\n\nselect.jp-mod-styled {\n  flex: 1 1 auto;\n  height: 32px;\n  width: 100%;\n  font-size: var(--jp-ui-font-size2);\n  background: var(--jp-input-background);\n  color: var(--jp-ui-font-color0);\n  padding: 0 25px 0 8px;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-toolbar-height: calc(\n    28px + var(--jp-border-width)\n  ); /* leave 28px for content */\n}\n\n.jp-Toolbar {\n  color: var(--jp-ui-font-color1);\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  border-bottom: var(--jp-border-width) solid var(--jp-toolbar-border-color);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  background: var(--jp-toolbar-background);\n  min-height: var(--jp-toolbar-micro-height);\n  padding: 2px;\n  z-index: 1;\n  overflow-x: auto;\n}\n\n/* Toolbar items */\n\n.jp-Toolbar > .jp-Toolbar-item.jp-Toolbar-spacer {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\n.jp-Toolbar-item.jp-Toolbar-kernelStatus {\n  display: inline-block;\n  width: 32px;\n  background-repeat: no-repeat;\n  background-position: center;\n  background-size: 16px;\n}\n\n.jp-Toolbar > .jp-Toolbar-item {\n  flex: 0 0 auto;\n  display: flex;\n  padding-left: 1px;\n  padding-right: 1px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: var(--jp-private-toolbar-height);\n  height: 100%;\n}\n\n/* Toolbar buttons */\n\n/* This is the div we use to wrap the react component into a Widget */\ndiv.jp-ToolbarButton {\n  color: transparent;\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px;\n  margin: 0px;\n}\n\nbutton.jp-ToolbarButtonComponent {\n  background: var(--jp-layout-color1);\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px 6px;\n  margin: 0px;\n  height: 24px;\n  border-radius: var(--jp-border-radius);\n  display: flex;\n  align-items: center;\n  text-align: center;\n  font-size: 14px;\n  min-width: unset;\n  min-height: unset;\n}\n\nbutton.jp-ToolbarButtonComponent:disabled {\n  opacity: 0.4;\n}\n\nbutton.jp-ToolbarButtonComponent span {\n  padding: 0px;\n  flex: 0 0 auto;\n}\n\nbutton.jp-ToolbarButtonComponent .jp-ToolbarButtonComponent-label {\n  font-size: var(--jp-ui-font-size1);\n  line-height: 100%;\n  padding-left: 2px;\n  color: var(--jp-ui-font-color1);\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar.jp-Toolbar-micro {\n  padding: 0;\n  min-height: 0;\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar {\n  border: none;\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ body.p-mod-override-cursor *, /* </DEPRECATED> */\nbody.lm-mod-override-cursor * {\n  cursor: inherit !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-JSONEditor {\n  display: flex;\n  flex-direction: column;\n  width: 100%;\n}\n\n.jp-JSONEditor-host {\n  flex: 1 1 auto;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  background: var(--jp-layout-color0);\n  min-height: 50px;\n  padding: 1px;\n}\n\n.jp-JSONEditor.jp-mod-error .jp-JSONEditor-host {\n  border-color: red;\n  outline-color: red;\n}\n\n.jp-JSONEditor-header {\n  display: flex;\n  flex: 1 0 auto;\n  padding: 0 0 0 12px;\n}\n\n.jp-JSONEditor-header label {\n  flex: 0 0 auto;\n}\n\n.jp-JSONEditor-commitButton {\n  height: 16px;\n  width: 16px;\n  background-size: 18px;\n  background-repeat: no-repeat;\n  background-position: center;\n}\n\n.jp-JSONEditor-host.jp-mod-focused {\n  background-color: var(--jp-input-active-background);\n  border: 1px solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n.jp-Editor.jp-mod-dropTarget {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n/* BASICS */\n\n.CodeMirror {\n  /* Set height, width, borders, and global font properties here */\n  font-family: monospace;\n  height: 300px;\n  color: black;\n  direction: ltr;\n}\n\n/* PADDING */\n\n.CodeMirror-lines {\n  padding: 4px 0; /* Vertical padding around content */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  padding: 0 4px; /* Horizontal padding of content */\n}\n\n.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  background-color: white; /* The little square between H and V scrollbars */\n}\n\n/* GUTTER */\n\n.CodeMirror-gutters {\n  border-right: 1px solid #ddd;\n  background-color: #f7f7f7;\n  white-space: nowrap;\n}\n.CodeMirror-linenumbers {}\n.CodeMirror-linenumber {\n  padding: 0 3px 0 5px;\n  min-width: 20px;\n  text-align: right;\n  color: #999;\n  white-space: nowrap;\n}\n\n.CodeMirror-guttermarker { color: black; }\n.CodeMirror-guttermarker-subtle { color: #999; }\n\n/* CURSOR */\n\n.CodeMirror-cursor {\n  border-left: 1px solid black;\n  border-right: none;\n  width: 0;\n}\n/* Shown when moving in bi-directional text */\n.CodeMirror div.CodeMirror-secondarycursor {\n  border-left: 1px solid silver;\n}\n.cm-fat-cursor .CodeMirror-cursor {\n  width: auto;\n  border: 0 !important;\n  background: #7e7;\n}\n.cm-fat-cursor div.CodeMirror-cursors {\n  z-index: 1;\n}\n.cm-fat-cursor-mark {\n  background-color: rgba(20, 255, 20, 0.5);\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n}\n.cm-animate-fat-cursor {\n  width: auto;\n  border: 0;\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n  background-color: #7e7;\n}\n@-moz-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@-webkit-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n\n/* Can style cursor different in overwrite (non-insert) mode */\n.CodeMirror-overwrite .CodeMirror-cursor {}\n\n.cm-tab { display: inline-block; text-decoration: inherit; }\n\n.CodeMirror-rulers {\n  position: absolute;\n  left: 0; right: 0; top: -50px; bottom: 0;\n  overflow: hidden;\n}\n.CodeMirror-ruler {\n  border-left: 1px solid #ccc;\n  top: 0; bottom: 0;\n  position: absolute;\n}\n\n/* DEFAULT THEME */\n\n.cm-s-default .cm-header {color: blue;}\n.cm-s-default .cm-quote {color: #090;}\n.cm-negative {color: #d44;}\n.cm-positive {color: #292;}\n.cm-header, .cm-strong {font-weight: bold;}\n.cm-em {font-style: italic;}\n.cm-link {text-decoration: underline;}\n.cm-strikethrough {text-decoration: line-through;}\n\n.cm-s-default .cm-keyword {color: #708;}\n.cm-s-default .cm-atom {color: #219;}\n.cm-s-default .cm-number {color: #164;}\n.cm-s-default .cm-def {color: #00f;}\n.cm-s-default .cm-variable,\n.cm-s-default .cm-punctuation,\n.cm-s-default .cm-property,\n.cm-s-default .cm-operator {}\n.cm-s-default .cm-variable-2 {color: #05a;}\n.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}\n.cm-s-default .cm-comment {color: #a50;}\n.cm-s-default .cm-string {color: #a11;}\n.cm-s-default .cm-string-2 {color: #f50;}\n.cm-s-default .cm-meta {color: #555;}\n.cm-s-default .cm-qualifier {color: #555;}\n.cm-s-default .cm-builtin {color: #30a;}\n.cm-s-default .cm-bracket {color: #997;}\n.cm-s-default .cm-tag {color: #170;}\n.cm-s-default .cm-attribute {color: #00c;}\n.cm-s-default .cm-hr {color: #999;}\n.cm-s-default .cm-link {color: #00c;}\n\n.cm-s-default .cm-error {color: #f00;}\n.cm-invalidchar {color: #f00;}\n\n.CodeMirror-composing { border-bottom: 2px solid; }\n\n/* Default styles for common addons */\n\ndiv.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}\ndiv.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}\n.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }\n.CodeMirror-activeline-background {background: #e8f2ff;}\n\n/* STOP */\n\n/* The rest of this file contains styles related to the mechanics of\n   the editor. You probably shouldn't touch them. */\n\n.CodeMirror {\n  position: relative;\n  overflow: hidden;\n  background: white;\n}\n\n.CodeMirror-scroll {\n  overflow: scroll !important; /* Things will break if this is overridden */\n  /* 50px is the magic margin used to hide the element's real scrollbars */\n  /* See overflow: hidden in .CodeMirror */\n  margin-bottom: -50px; margin-right: -50px;\n  padding-bottom: 50px;\n  height: 100%;\n  outline: none; /* Prevent dragging from highlighting the element */\n  position: relative;\n}\n.CodeMirror-sizer {\n  position: relative;\n  border-right: 50px solid transparent;\n}\n\n/* The fake, visible scrollbars. Used to force redraw during scrolling\n   before actual scrolling happens, thus preventing shaking and\n   flickering artifacts. */\n.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  position: absolute;\n  z-index: 6;\n  display: none;\n  outline: none;\n}\n.CodeMirror-vscrollbar {\n  right: 0; top: 0;\n  overflow-x: hidden;\n  overflow-y: scroll;\n}\n.CodeMirror-hscrollbar {\n  bottom: 0; left: 0;\n  overflow-y: hidden;\n  overflow-x: scroll;\n}\n.CodeMirror-scrollbar-filler {\n  right: 0; bottom: 0;\n}\n.CodeMirror-gutter-filler {\n  left: 0; bottom: 0;\n}\n\n.CodeMirror-gutters {\n  position: absolute; left: 0; top: 0;\n  min-height: 100%;\n  z-index: 3;\n}\n.CodeMirror-gutter {\n  white-space: normal;\n  height: 100%;\n  display: inline-block;\n  vertical-align: top;\n  margin-bottom: -50px;\n}\n.CodeMirror-gutter-wrapper {\n  position: absolute;\n  z-index: 4;\n  background: none !important;\n  border: none !important;\n}\n.CodeMirror-gutter-background {\n  position: absolute;\n  top: 0; bottom: 0;\n  z-index: 4;\n}\n.CodeMirror-gutter-elt {\n  position: absolute;\n  cursor: default;\n  z-index: 4;\n}\n.CodeMirror-gutter-wrapper ::selection { background-color: transparent }\n.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }\n\n.CodeMirror-lines {\n  cursor: text;\n  min-height: 1px; /* prevents collapsing before first draw */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  /* Reset some styles that the rest of the page might have set */\n  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;\n  border-width: 0;\n  background: transparent;\n  font-family: inherit;\n  font-size: inherit;\n  margin: 0;\n  white-space: pre;\n  word-wrap: normal;\n  line-height: inherit;\n  color: inherit;\n  z-index: 2;\n  position: relative;\n  overflow: visible;\n  -webkit-tap-highlight-color: transparent;\n  -webkit-font-variant-ligatures: contextual;\n  font-variant-ligatures: contextual;\n}\n.CodeMirror-wrap pre.CodeMirror-line,\n.CodeMirror-wrap pre.CodeMirror-line-like {\n  word-wrap: break-word;\n  white-space: pre-wrap;\n  word-break: normal;\n}\n\n.CodeMirror-linebackground {\n  position: absolute;\n  left: 0; right: 0; top: 0; bottom: 0;\n  z-index: 0;\n}\n\n.CodeMirror-linewidget {\n  position: relative;\n  z-index: 2;\n  padding: 0.1px; /* Force widget margins to stay inside of the container */\n}\n\n.CodeMirror-widget {}\n\n.CodeMirror-rtl pre { direction: rtl; }\n\n.CodeMirror-code {\n  outline: none;\n}\n\n/* Force content-box sizing for the elements where we expect it */\n.CodeMirror-scroll,\n.CodeMirror-sizer,\n.CodeMirror-gutter,\n.CodeMirror-gutters,\n.CodeMirror-linenumber {\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n}\n\n.CodeMirror-measure {\n  position: absolute;\n  width: 100%;\n  height: 0;\n  overflow: hidden;\n  visibility: hidden;\n}\n\n.CodeMirror-cursor {\n  position: absolute;\n  pointer-events: none;\n}\n.CodeMirror-measure pre { position: static; }\n\ndiv.CodeMirror-cursors {\n  visibility: hidden;\n  position: relative;\n  z-index: 3;\n}\ndiv.CodeMirror-dragcursors {\n  visibility: visible;\n}\n\n.CodeMirror-focused div.CodeMirror-cursors {\n  visibility: visible;\n}\n\n.CodeMirror-selected { background: #d9d9d9; }\n.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }\n.CodeMirror-crosshair { cursor: crosshair; }\n.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }\n.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }\n\n.cm-searching {\n  background-color: #ffa;\n  background-color: rgba(255, 255, 0, .4);\n}\n\n/* Used to force a border model for a node */\n.cm-force-border { padding-right: .1px; }\n\n@media print {\n  /* Hide the cursor when printing */\n  .CodeMirror div.CodeMirror-cursors {\n    visibility: hidden;\n  }\n}\n\n/* See issue #2901 */\n.cm-tab-wrap-hack:after { content: ''; }\n\n/* Help users use markselection to safely style text background */\nspan.CodeMirror-selectedtext { background: none; }\n\n.CodeMirror-dialog {\n  position: absolute;\n  left: 0; right: 0;\n  background: inherit;\n  z-index: 15;\n  padding: .1em .8em;\n  overflow: hidden;\n  color: inherit;\n}\n\n.CodeMirror-dialog-top {\n  border-bottom: 1px solid #eee;\n  top: 0;\n}\n\n.CodeMirror-dialog-bottom {\n  border-top: 1px solid #eee;\n  bottom: 0;\n}\n\n.CodeMirror-dialog input {\n  border: none;\n  outline: none;\n  background: transparent;\n  width: 20em;\n  color: inherit;\n  font-family: monospace;\n}\n\n.CodeMirror-dialog button {\n  font-size: 70%;\n}\n\n.CodeMirror-foldmarker {\n  color: blue;\n  text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;\n  font-family: arial;\n  line-height: .3;\n  cursor: pointer;\n}\n.CodeMirror-foldgutter {\n  width: .7em;\n}\n.CodeMirror-foldgutter-open,\n.CodeMirror-foldgutter-folded {\n  cursor: pointer;\n}\n.CodeMirror-foldgutter-open:after {\n  content: \"\\25BE\";\n}\n.CodeMirror-foldgutter-folded:after {\n  content: \"\\25B8\";\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.CodeMirror {\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  border: 0;\n  border-radius: 0;\n  height: auto;\n  /* Changed to auto to autogrow */\n}\n\n.CodeMirror pre {\n  padding: 0 var(--jp-code-padding);\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-dialog {\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* This causes https://github.com/jupyter/jupyterlab/issues/522 */\n/* May not cause it not because we changed it! */\n.CodeMirror-lines {\n  padding: var(--jp-code-padding) 0;\n}\n\n.CodeMirror-linenumber {\n  padding: 0 8px;\n}\n\n.jp-CodeMirrorEditor {\n  cursor: text;\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n\n/* When zoomed out 67% and 33% on a screen of 1440 width x 900 height */\n@media screen and (min-width: 2138px) and (max-width: 4319px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width1) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n/* When zoomed out less than 33% */\n@media screen and (min-width: 4320px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width2) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n.CodeMirror.jp-mod-readOnly .CodeMirror-cursor {\n  display: none;\n}\n\n.CodeMirror-gutters {\n  border-right: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-layout-color0);\n}\n\n.jp-CollaboratorCursor {\n  border-left: 5px solid transparent;\n  border-right: 5px solid transparent;\n  border-top: none;\n  border-bottom: 3px solid;\n  background-clip: content-box;\n  margin-left: -5px;\n  margin-right: -5px;\n}\n\n.CodeMirror-selectedtext.cm-searching {\n  background-color: var(--jp-search-selected-match-background-color) !important;\n  color: var(--jp-search-selected-match-color) !important;\n}\n\n.cm-searching {\n  background-color: var(\n    --jp-search-unselected-match-background-color\n  ) !important;\n  color: var(--jp-search-unselected-match-color) !important;\n}\n\n.CodeMirror-focused .CodeMirror-selected {\n  background-color: var(--jp-editor-selected-focused-background);\n}\n\n.CodeMirror-selected {\n  background-color: var(--jp-editor-selected-background);\n}\n\n.jp-CollaboratorCursor-hover {\n  position: absolute;\n  z-index: 1;\n  transform: translateX(-50%);\n  color: white;\n  border-radius: 3px;\n  padding-left: 4px;\n  padding-right: 4px;\n  padding-top: 1px;\n  padding-bottom: 1px;\n  text-align: center;\n  font-size: var(--jp-ui-font-size1);\n  white-space: nowrap;\n}\n\n.jp-CodeMirror-ruler {\n  border-left: 1px dashed var(--jp-border-color2);\n}\n\n/**\n * Here is our jupyter theme for CodeMirror syntax highlighting\n * This is used in our marked.js syntax highlighting and CodeMirror itself\n * The string \"jupyter\" is set in ../codemirror/widget.DEFAULT_CODEMIRROR_THEME\n * This came from the classic notebook, which came form highlight.js/GitHub\n */\n\n/**\n * CodeMirror themes are handling the background/color in this way. This works\n * fine for CodeMirror editors outside the notebook, but the notebook styles\n * these things differently.\n */\n.CodeMirror.cm-s-jupyter {\n  background: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* In the notebook, we want this styling to be handled by its container */\n.jp-CodeConsole .CodeMirror.cm-s-jupyter,\n.jp-Notebook .CodeMirror.cm-s-jupyter {\n  background: transparent;\n}\n\n.cm-s-jupyter .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n.cm-s-jupyter span.cm-keyword {\n  color: var(--jp-mirror-editor-keyword-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-atom {\n  color: var(--jp-mirror-editor-atom-color);\n}\n.cm-s-jupyter span.cm-number {\n  color: var(--jp-mirror-editor-number-color);\n}\n.cm-s-jupyter span.cm-def {\n  color: var(--jp-mirror-editor-def-color);\n}\n.cm-s-jupyter span.cm-variable {\n  color: var(--jp-mirror-editor-variable-color);\n}\n.cm-s-jupyter span.cm-variable-2 {\n  color: var(--jp-mirror-editor-variable-2-color);\n}\n.cm-s-jupyter span.cm-variable-3 {\n  color: var(--jp-mirror-editor-variable-3-color);\n}\n.cm-s-jupyter span.cm-punctuation {\n  color: var(--jp-mirror-editor-punctuation-color);\n}\n.cm-s-jupyter span.cm-property {\n  color: var(--jp-mirror-editor-property-color);\n}\n.cm-s-jupyter span.cm-operator {\n  color: var(--jp-mirror-editor-operator-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-comment {\n  color: var(--jp-mirror-editor-comment-color);\n  font-style: italic;\n}\n.cm-s-jupyter span.cm-string {\n  color: var(--jp-mirror-editor-string-color);\n}\n.cm-s-jupyter span.cm-string-2 {\n  color: var(--jp-mirror-editor-string-2-color);\n}\n.cm-s-jupyter span.cm-meta {\n  color: var(--jp-mirror-editor-meta-color);\n}\n.cm-s-jupyter span.cm-qualifier {\n  color: var(--jp-mirror-editor-qualifier-color);\n}\n.cm-s-jupyter span.cm-builtin {\n  color: var(--jp-mirror-editor-builtin-color);\n}\n.cm-s-jupyter span.cm-bracket {\n  color: var(--jp-mirror-editor-bracket-color);\n}\n.cm-s-jupyter span.cm-tag {\n  color: var(--jp-mirror-editor-tag-color);\n}\n.cm-s-jupyter span.cm-attribute {\n  color: var(--jp-mirror-editor-attribute-color);\n}\n.cm-s-jupyter span.cm-header {\n  color: var(--jp-mirror-editor-header-color);\n}\n.cm-s-jupyter span.cm-quote {\n  color: var(--jp-mirror-editor-quote-color);\n}\n.cm-s-jupyter span.cm-link {\n  color: var(--jp-mirror-editor-link-color);\n}\n.cm-s-jupyter span.cm-error {\n  color: var(--jp-mirror-editor-error-color);\n}\n.cm-s-jupyter span.cm-hr {\n  color: #999;\n}\n\n.cm-s-jupyter span.cm-tab {\n  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);\n  background-position: right;\n  background-repeat: no-repeat;\n}\n\n.cm-s-jupyter .CodeMirror-activeline-background,\n.cm-s-jupyter .CodeMirror-gutter {\n  background-color: var(--jp-layout-color2);\n}\n\n/* Styles for shared cursors (remote cursor locations and selected ranges) */\n.jp-CodeMirrorEditor .remote-caret {\n  position: relative;\n  border-left: 2px solid black;\n  margin-left: -1px;\n  margin-right: -1px;\n  box-sizing: border-box;\n}\n\n.jp-CodeMirrorEditor .remote-caret > div {\n  white-space: nowrap;\n  position: absolute;\n  top: -1.15em;\n  padding-bottom: 0.05em;\n  left: -2px;\n  font-size: 0.95em;\n  background-color: rgb(250, 129, 0);\n  font-family: var(--jp-ui-font-family);\n  font-weight: bold;\n  line-height: normal;\n  user-select: none;\n  color: white;\n  padding-left: 2px;\n  padding-right: 2px;\n  z-index: 3;\n  transition: opacity 0.3s ease-in-out;\n}\n\n.jp-CodeMirrorEditor .remote-caret.hide-name > div {\n  transition-delay: 0.7s;\n  opacity: 0;\n}\n\n.jp-CodeMirrorEditor .remote-caret:hover > div {\n  opacity: 1;\n  transition-delay: 0s;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| RenderedText\n|----------------------------------------------------------------------------*/\n\n:root {\n  /* This is the padding value to fill the gaps between lines containing spans with background color. */\n  --jp-private-code-span-padding: calc(\n    (var(--jp-code-line-height) - 1) * var(--jp-code-font-size) / 2\n  );\n}\n\n.jp-RenderedText {\n  text-align: left;\n  padding-left: var(--jp-code-padding);\n  line-height: var(--jp-code-line-height);\n  font-family: var(--jp-code-font-family);\n}\n\n.jp-RenderedText pre,\n.jp-RenderedJavaScript pre,\n.jp-RenderedHTMLCommon pre {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-code-font-size);\n  border: none;\n  margin: 0px;\n  padding: 0px;\n}\n\n.jp-RenderedText pre a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* console foregrounds and backgrounds */\n.jp-RenderedText pre .ansi-black-fg {\n  color: #3e424d;\n}\n.jp-RenderedText pre .ansi-red-fg {\n  color: #e75c58;\n}\n.jp-RenderedText pre .ansi-green-fg {\n  color: #00a250;\n}\n.jp-RenderedText pre .ansi-yellow-fg {\n  color: #ddb62b;\n}\n.jp-RenderedText pre .ansi-blue-fg {\n  color: #208ffb;\n}\n.jp-RenderedText pre .ansi-magenta-fg {\n  color: #d160c4;\n}\n.jp-RenderedText pre .ansi-cyan-fg {\n  color: #60c6c8;\n}\n.jp-RenderedText pre .ansi-white-fg {\n  color: #c5c1b4;\n}\n\n.jp-RenderedText pre .ansi-black-bg {\n  background-color: #3e424d;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-bg {\n  background-color: #e75c58;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-bg {\n  background-color: #00a250;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-bg {\n  background-color: #ddb62b;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-bg {\n  background-color: #208ffb;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-bg {\n  background-color: #d160c4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-bg {\n  background-color: #60c6c8;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-bg {\n  background-color: #c5c1b4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-black-intense-fg {\n  color: #282c36;\n}\n.jp-RenderedText pre .ansi-red-intense-fg {\n  color: #b22b31;\n}\n.jp-RenderedText pre .ansi-green-intense-fg {\n  color: #007427;\n}\n.jp-RenderedText pre .ansi-yellow-intense-fg {\n  color: #b27d12;\n}\n.jp-RenderedText pre .ansi-blue-intense-fg {\n  color: #0065ca;\n}\n.jp-RenderedText pre .ansi-magenta-intense-fg {\n  color: #a03196;\n}\n.jp-RenderedText pre .ansi-cyan-intense-fg {\n  color: #258f8f;\n}\n.jp-RenderedText pre .ansi-white-intense-fg {\n  color: #a1a6b2;\n}\n\n.jp-RenderedText pre .ansi-black-intense-bg {\n  background-color: #282c36;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-intense-bg {\n  background-color: #b22b31;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-intense-bg {\n  background-color: #007427;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-intense-bg {\n  background-color: #b27d12;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-intense-bg {\n  background-color: #0065ca;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-intense-bg {\n  background-color: #a03196;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-intense-bg {\n  background-color: #258f8f;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-intense-bg {\n  background-color: #a1a6b2;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-default-inverse-fg {\n  color: var(--jp-ui-inverse-font-color0);\n}\n.jp-RenderedText pre .ansi-default-inverse-bg {\n  background-color: var(--jp-inverse-layout-color0);\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-bold {\n  font-weight: bold;\n}\n.jp-RenderedText pre .ansi-underline {\n  text-decoration: underline;\n}\n\n.jp-RenderedText[data-mime-type='application/vnd.jupyter.stderr'] {\n  background: var(--jp-rendermime-error-background);\n  padding-top: var(--jp-code-padding);\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedLatex\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedLatex {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n}\n\n/* Left-justify outputs.*/\n.jp-OutputArea-output.jp-RenderedLatex {\n  padding: var(--jp-code-padding);\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedHTML\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedHTMLCommon {\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-content-font-family);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n  /* Give a bit more R padding on Markdown text to keep line lengths reasonable */\n  padding-right: 20px;\n}\n\n.jp-RenderedHTMLCommon em {\n  font-style: italic;\n}\n\n.jp-RenderedHTMLCommon strong {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon u {\n  text-decoration: underline;\n}\n\n.jp-RenderedHTMLCommon a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* Headings */\n\n.jp-RenderedHTMLCommon h1,\n.jp-RenderedHTMLCommon h2,\n.jp-RenderedHTMLCommon h3,\n.jp-RenderedHTMLCommon h4,\n.jp-RenderedHTMLCommon h5,\n.jp-RenderedHTMLCommon h6 {\n  line-height: var(--jp-content-heading-line-height);\n  font-weight: var(--jp-content-heading-font-weight);\n  font-style: normal;\n  margin: var(--jp-content-heading-margin-top) 0\n    var(--jp-content-heading-margin-bottom) 0;\n}\n\n.jp-RenderedHTMLCommon h1:first-child,\n.jp-RenderedHTMLCommon h2:first-child,\n.jp-RenderedHTMLCommon h3:first-child,\n.jp-RenderedHTMLCommon h4:first-child,\n.jp-RenderedHTMLCommon h5:first-child,\n.jp-RenderedHTMLCommon h6:first-child {\n  margin-top: calc(0.5 * var(--jp-content-heading-margin-top));\n}\n\n.jp-RenderedHTMLCommon h1:last-child,\n.jp-RenderedHTMLCommon h2:last-child,\n.jp-RenderedHTMLCommon h3:last-child,\n.jp-RenderedHTMLCommon h4:last-child,\n.jp-RenderedHTMLCommon h5:last-child,\n.jp-RenderedHTMLCommon h6:last-child {\n  margin-bottom: calc(0.5 * var(--jp-content-heading-margin-bottom));\n}\n\n.jp-RenderedHTMLCommon h1 {\n  font-size: var(--jp-content-font-size5);\n}\n\n.jp-RenderedHTMLCommon h2 {\n  font-size: var(--jp-content-font-size4);\n}\n\n.jp-RenderedHTMLCommon h3 {\n  font-size: var(--jp-content-font-size3);\n}\n\n.jp-RenderedHTMLCommon h4 {\n  font-size: var(--jp-content-font-size2);\n}\n\n.jp-RenderedHTMLCommon h5 {\n  font-size: var(--jp-content-font-size1);\n}\n\n.jp-RenderedHTMLCommon h6 {\n  font-size: var(--jp-content-font-size0);\n}\n\n/* Lists */\n\n.jp-RenderedHTMLCommon ul:not(.list-inline),\n.jp-RenderedHTMLCommon ol:not(.list-inline) {\n  padding-left: 2em;\n}\n\n.jp-RenderedHTMLCommon ul {\n  list-style: disc;\n}\n\n.jp-RenderedHTMLCommon ul ul {\n  list-style: square;\n}\n\n.jp-RenderedHTMLCommon ul ul ul {\n  list-style: circle;\n}\n\n.jp-RenderedHTMLCommon ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol ol {\n  list-style: upper-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol {\n  list-style: lower-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol {\n  list-style: lower-roman;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol,\n.jp-RenderedHTMLCommon ul {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon ul ul,\n.jp-RenderedHTMLCommon ul ol,\n.jp-RenderedHTMLCommon ol ul,\n.jp-RenderedHTMLCommon ol ol {\n  margin-bottom: 0em;\n}\n\n.jp-RenderedHTMLCommon hr {\n  color: var(--jp-border-color2);\n  background-color: var(--jp-border-color1);\n  margin-top: 1em;\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon > pre {\n  margin: 1.5em 2em;\n}\n\n.jp-RenderedHTMLCommon pre,\n.jp-RenderedHTMLCommon code {\n  border: 0;\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  line-height: var(--jp-code-line-height);\n  padding: 0;\n  white-space: pre-wrap;\n}\n\n.jp-RenderedHTMLCommon :not(pre) > code {\n  background-color: var(--jp-layout-color2);\n  padding: 1px 5px;\n}\n\n/* Tables */\n\n.jp-RenderedHTMLCommon table {\n  border-collapse: collapse;\n  border-spacing: 0;\n  border: none;\n  color: var(--jp-ui-font-color1);\n  font-size: 12px;\n  table-layout: fixed;\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.jp-RenderedHTMLCommon thead {\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  vertical-align: bottom;\n}\n\n.jp-RenderedHTMLCommon td,\n.jp-RenderedHTMLCommon th,\n.jp-RenderedHTMLCommon tr {\n  vertical-align: middle;\n  padding: 0.5em 0.5em;\n  line-height: normal;\n  white-space: normal;\n  max-width: none;\n  border: none;\n}\n\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon td,\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon th {\n  max-width: none;\n}\n\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon td,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon th,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon tr {\n  text-align: right;\n}\n\n.jp-RenderedHTMLCommon th {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(odd) {\n  background: var(--jp-layout-color0);\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(even) {\n  background: var(--jp-rendermime-table-row-background);\n}\n\n.jp-RenderedHTMLCommon tbody tr:hover {\n  background: var(--jp-rendermime-table-row-hover-background);\n}\n\n.jp-RenderedHTMLCommon table {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon p {\n  text-align: left;\n  margin: 0px;\n}\n\n.jp-RenderedHTMLCommon p {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon img {\n  -moz-force-broken-image-icon: 1;\n}\n\n/* Restrict to direct children as other images could be nested in other content. */\n.jp-RenderedHTMLCommon > img {\n  display: block;\n  margin-left: 0;\n  margin-right: 0;\n  margin-bottom: 1em;\n}\n\n/* Change color behind transparent images if they need it... */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-light-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-dark-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n/* ...or leave it untouched if they don't */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-dark-background {\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-light-background {\n}\n\n.jp-RenderedHTMLCommon img,\n.jp-RenderedImage img,\n.jp-RenderedHTMLCommon svg,\n.jp-RenderedSVG svg {\n  max-width: 100%;\n  height: auto;\n}\n\n.jp-RenderedHTMLCommon img.jp-mod-unconfined,\n.jp-RenderedImage img.jp-mod-unconfined,\n.jp-RenderedHTMLCommon svg.jp-mod-unconfined,\n.jp-RenderedSVG svg.jp-mod-unconfined {\n  max-width: none;\n}\n\n.jp-RenderedHTMLCommon .alert {\n  padding: var(--jp-notebook-padding);\n  border: var(--jp-border-width) solid transparent;\n  border-radius: var(--jp-border-radius);\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon .alert-info {\n  color: var(--jp-info-color0);\n  background-color: var(--jp-info-color3);\n  border-color: var(--jp-info-color2);\n}\n.jp-RenderedHTMLCommon .alert-info hr {\n  border-color: var(--jp-info-color3);\n}\n.jp-RenderedHTMLCommon .alert-info > p:last-child,\n.jp-RenderedHTMLCommon .alert-info > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-warning {\n  color: var(--jp-warn-color0);\n  background-color: var(--jp-warn-color3);\n  border-color: var(--jp-warn-color2);\n}\n.jp-RenderedHTMLCommon .alert-warning hr {\n  border-color: var(--jp-warn-color3);\n}\n.jp-RenderedHTMLCommon .alert-warning > p:last-child,\n.jp-RenderedHTMLCommon .alert-warning > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-success {\n  color: var(--jp-success-color0);\n  background-color: var(--jp-success-color3);\n  border-color: var(--jp-success-color2);\n}\n.jp-RenderedHTMLCommon .alert-success hr {\n  border-color: var(--jp-success-color3);\n}\n.jp-RenderedHTMLCommon .alert-success > p:last-child,\n.jp-RenderedHTMLCommon .alert-success > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-danger {\n  color: var(--jp-error-color0);\n  background-color: var(--jp-error-color3);\n  border-color: var(--jp-error-color2);\n}\n.jp-RenderedHTMLCommon .alert-danger hr {\n  border-color: var(--jp-error-color3);\n}\n.jp-RenderedHTMLCommon .alert-danger > p:last-child,\n.jp-RenderedHTMLCommon .alert-danger > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon blockquote {\n  margin: 1em 2em;\n  padding: 0 1em;\n  border-left: 5px solid var(--jp-border-color2);\n}\n\na.jp-InternalAnchorLink {\n  visibility: hidden;\n  margin-left: 8px;\n  color: var(--md-blue-800);\n}\n\nh1:hover .jp-InternalAnchorLink,\nh2:hover .jp-InternalAnchorLink,\nh3:hover .jp-InternalAnchorLink,\nh4:hover .jp-InternalAnchorLink,\nh5:hover .jp-InternalAnchorLink,\nh6:hover .jp-InternalAnchorLink {\n  visibility: visible;\n}\n\n.jp-RenderedHTMLCommon kbd {\n  background-color: var(--jp-rendermime-table-row-background);\n  border: 1px solid var(--jp-border-color0);\n  border-bottom-color: var(--jp-border-color2);\n  border-radius: 3px;\n  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n  display: inline-block;\n  font-size: 0.8em;\n  line-height: 1em;\n  padding: 0.2em 0.5em;\n}\n\n/* Most direct children of .jp-RenderedHTMLCommon have a margin-bottom of 1.0.\n * At the bottom of cells this is a bit too much as there is also spacing\n * between cells. Going all the way to 0 gets too tight between markdown and\n * code cells.\n */\n.jp-RenderedHTMLCommon > *:last-child {\n  margin-bottom: 0.5em;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MimeDocument {\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-filebrowser-button-height: 28px;\n  --jp-private-filebrowser-button-width: 48px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser {\n  display: flex;\n  flex-direction: column;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  border-bottom: none;\n  height: auto;\n  margin: var(--jp-toolbar-header-margin);\n  box-shadow: none;\n}\n\n.jp-BreadCrumbs {\n  flex: 0 0 auto;\n  margin: 8px 12px 8px 12px;\n}\n\n.jp-BreadCrumbs-item {\n  margin: 0px 2px;\n  padding: 0px 2px;\n  border-radius: var(--jp-border-radius);\n  cursor: pointer;\n}\n\n.jp-BreadCrumbs-item:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-BreadCrumbs-item:first-child {\n  margin-left: 0px;\n}\n\n.jp-BreadCrumbs-item.jp-mod-dropTarget {\n  background-color: var(--jp-brand-color2);\n  opacity: 0.7;\n}\n\n/*-----------------------------------------------------------------------------\n| Buttons\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  padding: 0px;\n  margin: 8px 12px 0px 12px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  justify-content: flex-start;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-Toolbar-item {\n  flex: 0 0 auto;\n  padding-left: 0px;\n  padding-right: 2px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-ToolbarButtonComponent {\n  width: 40px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent {\n  width: 72px;\n  background: var(--jp-brand-color1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent:focus-visible {\n  background-color: var(--jp-brand-color0);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent\n  .jp-icon3 {\n  fill: white;\n}\n\n/*-----------------------------------------------------------------------------\n| Other styles\n|----------------------------------------------------------------------------*/\n\n.jp-FileDialog.jp-mod-conflict input {\n  color: var(--jp-error-color1);\n}\n\n.jp-FileDialog .jp-new-name-title {\n  margin-top: 12px;\n}\n\n.jp-LastModified-hidden {\n  display: none;\n}\n\n.jp-FileBrowser-filterBox {\n  padding: 0px;\n  flex: 0 0 auto;\n  margin: 8px 12px 0px 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| DirListing\n|----------------------------------------------------------------------------*/\n\n.jp-DirListing {\n  flex: 1 1 auto;\n  display: flex;\n  flex-direction: column;\n  outline: 0;\n}\n\n.jp-DirListing:focus-visible {\n  border: 1px solid var(--jp-brand-color1);\n}\n\n.jp-DirListing-header {\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n  border-top: var(--jp-border-width) solid var(--jp-border-color2);\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  z-index: 2;\n}\n\n.jp-DirListing-headerItem {\n  padding: 4px 12px 2px 12px;\n  font-weight: 500;\n}\n\n.jp-DirListing-headerItem:hover {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-headerItem.jp-id-name {\n  flex: 1 0 84px;\n}\n\n.jp-DirListing-headerItem.jp-id-modified {\n  flex: 0 0 112px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n}\n\n.jp-id-narrow {\n  display: none;\n  flex: 0 0 5px;\n  padding: 4px 4px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n  color: var(--jp-border-color2);\n}\n\n.jp-DirListing-narrow .jp-id-narrow {\n  display: block;\n}\n\n.jp-DirListing-narrow .jp-id-modified,\n.jp-DirListing-narrow .jp-DirListing-itemModified {\n  display: none;\n}\n\n.jp-DirListing-headerItem.jp-mod-selected {\n  font-weight: 600;\n}\n\n/* increase specificity to override bundled default */\n.jp-DirListing-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-DirListing-content mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.jp-DirListing-content .jp-DirListing-item.jp-mod-selected mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n/* Style the directory listing content when a user drops a file to upload */\n.jp-DirListing.jp-mod-native-drop .jp-DirListing-content {\n  outline: 5px dashed rgba(128, 128, 128, 0.5);\n  outline-offset: -10px;\n  cursor: copy;\n}\n\n.jp-DirListing-item {\n  display: flex;\n  flex-direction: row;\n  padding: 4px 12px;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n.jp-DirListing-item[data-is-dot] {\n  opacity: 75%;\n}\n\n.jp-DirListing-item.jp-mod-selected {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.jp-DirListing-item.jp-mod-dropTarget {\n  background: var(--jp-brand-color3);\n}\n\n.jp-DirListing-item:hover:not(.jp-mod-selected) {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-itemIcon {\n  flex: 0 0 20px;\n  margin-right: 4px;\n}\n\n.jp-DirListing-itemText {\n  flex: 1 0 64px;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  user-select: none;\n}\n\n.jp-DirListing-itemModified {\n  flex: 0 0 125px;\n  text-align: right;\n}\n\n.jp-DirListing-editor {\n  flex: 1 0 64px;\n  outline: none;\n  border: none;\n}\n\n.jp-DirListing-item.jp-mod-running .jp-DirListing-itemIcon:before {\n  color: var(--jp-success-color1);\n  content: '\\25CF';\n  font-size: 8px;\n  position: absolute;\n  left: -8px;\n}\n\n.jp-DirListing-item.jp-mod-running.jp-mod-selected\n  .jp-DirListing-itemIcon:before {\n  color: var(--jp-ui-inverse-font-color1);\n}\n\n.jp-DirListing-item.lm-mod-drag-image,\n.jp-DirListing-item.jp-mod-selected.lm-mod-drag-image {\n  font-size: var(--jp-ui-font-size1);\n  padding-left: 4px;\n  margin-left: 4px;\n  width: 160px;\n  background-color: var(--jp-ui-inverse-font-color2);\n  box-shadow: var(--jp-elevation-z2);\n  border-radius: 0px;\n  color: var(--jp-ui-font-color1);\n  transform: translateX(-40%) translateY(-58%);\n}\n\n.jp-DirListing-deadSpace {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-Document {\n  min-width: 120px;\n  min-height: 120px;\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n}\n\n/*-----------------------------------------------------------------------------\n| Main OutputArea\n| OutputArea has a list of Outputs\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea {\n  overflow-y: auto;\n}\n\n.jp-OutputArea-child {\n  display: flex;\n  flex-direction: row;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child {\n  flex-direction: column;\n}\n\n.jp-OutputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-outprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n.jp-OutputArea-output {\n  height: auto;\n  overflow: auto;\n  user-select: text;\n  -moz-user-select: text;\n  -webkit-user-select: text;\n  -ms-user-select: text;\n}\n\n.jp-OutputArea-child .jp-OutputArea-output {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  margin-left: var(--jp-notebook-padding);\n}\n\n/**\n * Isolated output.\n */\n.jp-OutputArea-output.jp-mod-isolated {\n  width: 100%;\n  display: block;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n/* pre */\n\n.jp-OutputArea-output pre {\n  border: none;\n  margin: 0px;\n  padding: 0px;\n  overflow-x: auto;\n  overflow-y: auto;\n  word-break: break-all;\n  word-wrap: break-word;\n  white-space: pre-wrap;\n}\n\n/* tables */\n\n.jp-OutputArea-output.jp-RenderedHTMLCommon table {\n  margin-left: 0;\n  margin-right: 0;\n}\n\n/* description lists */\n\n.jp-OutputArea-output dl,\n.jp-OutputArea-output dt,\n.jp-OutputArea-output dd {\n  display: block;\n}\n\n.jp-OutputArea-output dl {\n  width: 100%;\n  overflow: hidden;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dt {\n  font-weight: bold;\n  float: left;\n  width: 20%;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dd {\n  float: left;\n  width: 80%;\n  padding: 0;\n  margin: 0;\n}\n\n/* Hide the gutter in case of\n *  - nested output areas (e.g. in the case of output widgets)\n *  - mirrored output areas\n */\n.jp-OutputArea .jp-OutputArea .jp-OutputArea-prompt {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| executeResult is added to any Output-result for the display of the object\n| returned by a cell\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  margin-left: 0px;\n  flex: 1 1 auto;\n}\n\n/* Text output with the Out[] prompt needs a top padding to match the\n * alignment of the Out[] prompt itself.\n */\n.jp-OutputArea-executeResult .jp-RenderedText.jp-OutputArea-output {\n  padding-top: var(--jp-code-padding);\n  border-top: var(--jp-border-width) solid transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| The Stdin output\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-stdin {\n  line-height: var(--jp-code-line-height);\n  padding-top: var(--jp-code-padding);\n  display: flex;\n}\n\n.jp-Stdin-prompt {\n  color: var(--jp-content-font-color0);\n  padding-right: var(--jp-code-padding);\n  vertical-align: baseline;\n  flex: 0 0 auto;\n}\n\n.jp-Stdin-input {\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  color: inherit;\n  background-color: inherit;\n  width: 42%;\n  min-width: 200px;\n  /* make sure input baseline aligns with prompt */\n  vertical-align: baseline;\n  /* padding + margin = 0.5em between prompt and cursor */\n  padding: 0em 0.25em;\n  margin: 0em 0.25em;\n  flex: 0 0 70%;\n}\n\n.jp-Stdin-input:focus {\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Output Area View\n|----------------------------------------------------------------------------*/\n\n.jp-LinkedOutputView .jp-OutputArea {\n  height: 100%;\n  display: block;\n}\n\n.jp-LinkedOutputView .jp-OutputArea-output:only-child {\n  height: 100%;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapser {\n  flex: 0 0 var(--jp-cell-collapser-width);\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n  border-radius: var(--jp-border-radius);\n  opacity: 1;\n}\n\n.jp-Collapser-child {\n  display: block;\n  width: 100%;\n  box-sizing: border-box;\n  /* height: 100% doesn't work because the height of its parent is computed from content */\n  position: absolute;\n  top: 0px;\n  bottom: 0px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Header/Footer\n|----------------------------------------------------------------------------*/\n\n/* Hidden by zero height by default */\n.jp-CellHeader,\n.jp-CellFooter {\n  height: 0px;\n  width: 100%;\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Input\n|----------------------------------------------------------------------------*/\n\n/* All input areas */\n.jp-InputArea {\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n}\n\nbody[data-format='mobile'] .jp-InputArea {\n  flex-direction: column;\n}\n\n.jp-InputArea-editor {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  /* This is the non-active, default styling */\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  border-radius: 0px;\n  background: var(--jp-cell-editor-background);\n}\n\nbody[data-format='mobile'] .jp-InputArea-editor {\n  margin-left: var(--jp-notebook-padding);\n}\n\n.jp-InputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-inprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  opacity: var(--jp-cell-prompt-opacity);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-InputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Placeholder {\n  display: flex;\n  flex-direction: row;\n  flex: 1 1 auto;\n}\n\n.jp-Placeholder-prompt {\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content {\n  flex: 1 1 auto;\n  border: none;\n  background: transparent;\n  height: 20px;\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon {\n  width: 32px;\n  height: 16px;\n  border: 1px solid transparent;\n  border-radius: var(--jp-border-radius);\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon:hover {\n  border: 1px solid var(--jp-border-color1);\n  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);\n  background-color: var(--jp-layout-color0);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-cell-scrolling-output-offset: 5px;\n}\n\n/*-----------------------------------------------------------------------------\n| Cell\n|----------------------------------------------------------------------------*/\n\n.jp-Cell {\n  padding: var(--jp-cell-padding);\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Common input/output\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-inputWrapper,\n.jp-Cell-outputWrapper {\n  display: flex;\n  flex-direction: row;\n  padding: 0px;\n  margin: 0px;\n  /* Added to reveal the box-shadow on the input and output collapsers. */\n  overflow: visible;\n}\n\n/* Only input/output areas inside cells */\n.jp-Cell-inputArea,\n.jp-Cell-outputArea {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Collapser\n|----------------------------------------------------------------------------*/\n\n/* Make the output collapser disappear when there is not output, but do so\n * in a manner that leaves it in the layout and preserves its width.\n */\n.jp-Cell.jp-mod-noOutputs .jp-Cell-outputCollapser {\n  border: none !important;\n  background: transparent !important;\n}\n\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputCollapser {\n  min-height: var(--jp-cell-collapser-min-height);\n}\n\n/*-----------------------------------------------------------------------------\n| Output\n|----------------------------------------------------------------------------*/\n\n/* Put a space between input and output when there IS output */\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputWrapper {\n  margin-top: 5px;\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-Cell-outputArea {\n  overflow-y: auto;\n  max-height: 200px;\n  box-shadow: inset 0 0 6px 2px rgba(0, 0, 0, 0.3);\n  margin-left: var(--jp-private-cell-scrolling-output-offset);\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  flex: 0 0\n    calc(\n      var(--jp-cell-prompt-width) -\n        var(--jp-private-cell-scrolling-output-offset)\n    );\n}\n\n/*-----------------------------------------------------------------------------\n| CodeCell\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| MarkdownCell\n|----------------------------------------------------------------------------*/\n\n.jp-MarkdownOutput {\n  flex: 1 1 auto;\n  margin-top: 0;\n  margin-bottom: 0;\n  padding-left: var(--jp-code-padding);\n}\n\n.jp-MarkdownOutput.jp-RenderedHTMLCommon {\n  overflow: auto;\n}\n\n.jp-showHiddenCellsButton {\n  margin-left: calc(var(--jp-cell-prompt-width) + 2 * var(--jp-code-padding));\n  margin-top: var(--jp-code-padding);\n  border: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-border-color3) !important;\n  color: var(--jp-content-font-color0) !important;\n}\n\n.jp-showHiddenCellsButton:hover {\n  background-color: var(--jp-border-color2) !important;\n}\n\n.jp-collapseHeadingButton {\n  display: none;\n}\n\n.jp-MarkdownCell:hover .jp-collapseHeadingButton {\n  display: flex;\n  min-height: var(--jp-cell-collapser-min-height);\n  position: absolute;\n  right: 0;\n  top: 0;\n  bottom: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n\n/*-----------------------------------------------------------------------------\n| Styles\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel-toolbar {\n  padding: 2px;\n}\n\n.jp-Toolbar-item.jp-Notebook-toolbarCellType .jp-select-wrapper.jp-mod-focused {\n  border: none;\n  box-shadow: none;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown select {\n  height: 24px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: 14px;\n  border-radius: 0;\n  display: block;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown span {\n  top: 5px !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-notebook-dragImage-width: 304px;\n  --jp-private-notebook-dragImage-height: 36px;\n  --jp-private-notebook-selected-color: var(--md-blue-400);\n  --jp-private-notebook-active-color: var(--md-green-400);\n}\n\n/*-----------------------------------------------------------------------------\n| Imports\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Notebook\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel {\n  display: block;\n  height: 100%;\n}\n\n.jp-NotebookPanel.jp-Document {\n  min-width: 240px;\n  min-height: 120px;\n}\n\n.jp-Notebook {\n  padding: var(--jp-notebook-padding);\n  outline: none;\n  overflow: auto;\n  background: var(--jp-layout-color0);\n}\n\n.jp-Notebook.jp-mod-scrollPastEnd::after {\n  display: block;\n  content: '';\n  min-height: var(--jp-notebook-scroll-padding);\n}\n\n.jp-MainAreaWidget-ContainStrict .jp-Notebook * {\n  contain: strict;\n}\n\n.jp-Notebook-render * {\n  contain: none !important;\n}\n\n.jp-Notebook .jp-Cell {\n  overflow: visible;\n}\n\n.jp-Notebook .jp-Cell .jp-InputPrompt {\n  cursor: move;\n  float: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook state related styling\n|\n| The notebook and cells each have states, here are the possibilities:\n|\n| - Notebook\n|   - Command\n|   - Edit\n| - Cell\n|   - None\n|   - Active (only one can be active)\n|   - Selected (the cells actions are applied to)\n|   - Multiselected (when multiple selected, the cursor)\n|   - No outputs\n|----------------------------------------------------------------------------*/\n\n/* Command or edit modes */\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-InputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-OutputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n/* cell is active */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser {\n  background: var(--jp-brand-color1);\n}\n\n/* cell is dirty */\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt {\n  color: var(--jp-warn-color1);\n}\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt:before {\n  color: var(--jp-warn-color1);\n  content: '•';\n}\n\n.jp-Notebook .jp-Cell.jp-mod-active.jp-mod-dirty .jp-Collapser {\n  background: var(--jp-warn-color1);\n}\n\n/* collapser is hovered */\n.jp-Notebook .jp-Cell .jp-Collapser:hover {\n  box-shadow: var(--jp-elevation-z2);\n  background: var(--jp-brand-color1);\n  opacity: var(--jp-cell-collapser-not-active-hover-opacity);\n}\n\n/* cell is active and collapser is hovered */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser:hover {\n  background: var(--jp-brand-color0);\n  opacity: 1;\n}\n\n/* Command mode */\n\n.jp-Notebook.jp-mod-commandMode .jp-Cell.jp-mod-selected {\n  background: var(--jp-notebook-multiselected-color);\n}\n\n.jp-Notebook.jp-mod-commandMode\n  .jp-Cell.jp-mod-active.jp-mod-selected:not(.jp-mod-multiSelected) {\n  background: transparent;\n}\n\n/* Edit mode */\n\n.jp-Notebook.jp-mod-editMode .jp-Cell.jp-mod-active .jp-InputArea-editor {\n  border: var(--jp-border-width) solid var(--jp-cell-editor-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-cell-editor-active-background);\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook drag and drop\n|----------------------------------------------------------------------------*/\n\n.jp-Notebook-cell.jp-mod-dropSource {\n  opacity: 0.5;\n}\n\n.jp-Notebook-cell.jp-mod-dropTarget,\n.jp-Notebook.jp-mod-commandMode\n  .jp-Notebook-cell.jp-mod-active.jp-mod-selected.jp-mod-dropTarget {\n  border-top-color: var(--jp-private-notebook-selected-color);\n  border-top-style: solid;\n  border-top-width: 2px;\n}\n\n.jp-dragImage {\n  display: block;\n  flex-direction: row;\n  width: var(--jp-private-notebook-dragImage-width);\n  height: var(--jp-private-notebook-dragImage-height);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background);\n  overflow: visible;\n}\n\n.jp-dragImage-singlePrompt {\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n.jp-dragImage .jp-dragImage-content {\n  flex: 1 1 auto;\n  z-index: 2;\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  line-height: var(--jp-code-line-height);\n  padding: var(--jp-code-padding);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background-color);\n  color: var(--jp-content-font-color3);\n  text-align: left;\n  margin: 4px 4px 4px 0px;\n}\n\n.jp-dragImage .jp-dragImage-prompt {\n  flex: 0 0 auto;\n  min-width: 36px;\n  color: var(--jp-cell-inprompt-font-color);\n  padding: var(--jp-code-padding);\n  padding-left: 12px;\n  font-family: var(--jp-cell-prompt-font-family);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: 1.9;\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n}\n\n.jp-dragImage-multipleBack {\n  z-index: -1;\n  position: absolute;\n  height: 32px;\n  width: 300px;\n  top: 8px;\n  left: 8px;\n  background: var(--jp-layout-color2);\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n/*-----------------------------------------------------------------------------\n| Cell toolbar\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookTools {\n  display: block;\n  min-width: var(--jp-sidebar-min-width);\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n    * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  overflow: auto;\n}\n\n.jp-NotebookTools-tool {\n  padding: 0px 12px 0 12px;\n}\n\n.jp-ActiveCellTool {\n  padding: 12px;\n  background-color: var(--jp-layout-color1);\n  border-top: none !important;\n}\n\n.jp-ActiveCellTool .jp-InputArea-prompt {\n  flex: 0 0 auto;\n  padding-left: 0px;\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor {\n  flex: 1 1 auto;\n  background: var(--jp-cell-editor-background);\n  border-color: var(--jp-cell-editor-border-color);\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor .CodeMirror {\n  background: transparent;\n}\n\n.jp-MetadataEditorTool {\n  flex-direction: column;\n  padding: 12px 0px 12px 0px;\n}\n\n.jp-RankedPanel > :not(:first-child) {\n  margin-top: 12px;\n}\n\n.jp-KeySelector select.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n}\n\n.jp-KeySelector label,\n.jp-MetadataEditorTool label {\n  line-height: 1.4;\n}\n\n.jp-NotebookTools .jp-select-wrapper {\n  margin-top: 4px;\n  margin-bottom: 0px;\n}\n\n.jp-NotebookTools .jp-Collapse {\n  margin-top: 16px;\n}\n\n/*-----------------------------------------------------------------------------\n| Presentation Mode (.jp-mod-presentationMode)\n|----------------------------------------------------------------------------*/\n\n.jp-mod-presentationMode .jp-Notebook {\n  --jp-content-font-size1: var(--jp-content-presentation-font-size1);\n  --jp-code-font-size: var(--jp-code-presentation-font-size);\n}\n\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-InputPrompt,\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-OutputPrompt {\n  flex: 0 0 110px;\n}\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-Placeholder {\n  padding-left: 55px;\n}\n\n.jp-Cell-Placeholder-wrapper {\n  background: #fff;\n  border: 1px solid;\n  border-color: #e5e6e9 #dfe0e4 #d0d1d5;\n  border-radius: 4px;\n  -webkit-border-radius: 4px;\n  margin: 10px 15px;\n}\n\n.jp-Cell-Placeholder-wrapper-inner {\n  padding: 15px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body {\n  background-repeat: repeat;\n  background-size: 50% auto;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  background: #f6f7f8;\n  background-image: -webkit-linear-gradient(\n    left,\n    #f6f7f8 0%,\n    #edeef1 20%,\n    #f6f7f8 40%,\n    #f6f7f8 100%\n  );\n  background-repeat: no-repeat;\n  background-size: 800px 104px;\n  height: 104px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  position: absolute;\n  right: 15px;\n  left: 15px;\n  top: 15px;\n}\n\ndiv.jp-Cell-Placeholder-h1 {\n  top: 20px;\n  height: 20px;\n  left: 15px;\n  width: 150px;\n}\n\ndiv.jp-Cell-Placeholder-h2 {\n  left: 15px;\n  top: 50px;\n  height: 10px;\n  width: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-1,\ndiv.jp-Cell-Placeholder-content-2,\ndiv.jp-Cell-Placeholder-content-3 {\n  left: 15px;\n  right: 15px;\n  height: 10px;\n}\n\ndiv.jp-Cell-Placeholder-content-1 {\n  top: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-2 {\n  top: 120px;\n}\n\ndiv.jp-Cell-Placeholder-content-3 {\n  top: 140px;\n}\n\n</style>\n\n    <style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\nThe following CSS variables define the main, public API for styling JupyterLab.\nThese variables should be used by all plugins wherever possible. In other\nwords, plugins should not define custom colors, sizes, etc unless absolutely\nnecessary. This enables users to change the visual theme of JupyterLab\nby changing these variables.\n\nMany variables appear in an ordered sequence (0,1,2,3). These sequences\nare designed to work well together, so for example, `--jp-border-color1` should\nbe used with `--jp-layout-color1`. The numbers have the following meanings:\n\n* 0: super-primary, reserved for special emphasis\n* 1: primary, most important under normal situations\n* 2: secondary, next most important under normal situations\n* 3: tertiary, next most important under normal situations\n\nThroughout JupyterLab, we are mostly following principles from Google's\nMaterial Design when selecting colors. We are not, however, following\nall of MD as it is not optimized for dense, information rich UIs.\n*/\n\n:root {\n  /* Elevation\n   *\n   * We style box-shadows using Material Design's idea of elevation. These particular numbers are taken from here:\n   *\n   * https://github.com/material-components/material-components-web\n   * https://material-components-web.appspot.com/elevation.html\n   */\n\n  --jp-shadow-base-lightness: 0;\n  --jp-shadow-umbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.2\n  );\n  --jp-shadow-penumbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.14\n  );\n  --jp-shadow-ambient-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.12\n  );\n  --jp-elevation-z0: none;\n  --jp-elevation-z1: 0px 2px 1px -1px var(--jp-shadow-umbra-color),\n    0px 1px 1px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 3px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z2: 0px 3px 1px -2px var(--jp-shadow-umbra-color),\n    0px 2px 2px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 5px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z4: 0px 2px 4px -1px var(--jp-shadow-umbra-color),\n    0px 4px 5px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 10px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z6: 0px 3px 5px -1px var(--jp-shadow-umbra-color),\n    0px 6px 10px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 18px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z8: 0px 5px 5px -3px var(--jp-shadow-umbra-color),\n    0px 8px 10px 1px var(--jp-shadow-penumbra-color),\n    0px 3px 14px 2px var(--jp-shadow-ambient-color);\n  --jp-elevation-z12: 0px 7px 8px -4px var(--jp-shadow-umbra-color),\n    0px 12px 17px 2px var(--jp-shadow-penumbra-color),\n    0px 5px 22px 4px var(--jp-shadow-ambient-color);\n  --jp-elevation-z16: 0px 8px 10px -5px var(--jp-shadow-umbra-color),\n    0px 16px 24px 2px var(--jp-shadow-penumbra-color),\n    0px 6px 30px 5px var(--jp-shadow-ambient-color);\n  --jp-elevation-z20: 0px 10px 13px -6px var(--jp-shadow-umbra-color),\n    0px 20px 31px 3px var(--jp-shadow-penumbra-color),\n    0px 8px 38px 7px var(--jp-shadow-ambient-color);\n  --jp-elevation-z24: 0px 11px 15px -7px var(--jp-shadow-umbra-color),\n    0px 24px 38px 3px var(--jp-shadow-penumbra-color),\n    0px 9px 46px 8px var(--jp-shadow-ambient-color);\n\n  /* Borders\n   *\n   * The following variables, specify the visual styling of borders in JupyterLab.\n   */\n\n  --jp-border-width: 1px;\n  --jp-border-color0: var(--md-grey-400);\n  --jp-border-color1: var(--md-grey-400);\n  --jp-border-color2: var(--md-grey-300);\n  --jp-border-color3: var(--md-grey-200);\n  --jp-border-radius: 2px;\n\n  /* UI Fonts\n   *\n   * The UI font CSS variables are used for the typography all of the JupyterLab\n   * user interface elements that are not directly user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-ui-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-ui-font-scale-factor: 1.2;\n  --jp-ui-font-size0: 0.83333em;\n  --jp-ui-font-size1: 13px; /* Base font size */\n  --jp-ui-font-size2: 1.2em;\n  --jp-ui-font-size3: 1.44em;\n\n  --jp-ui-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica,\n    Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';\n\n  /*\n   * Use these font colors against the corresponding main layout colors.\n   * In a light theme, these go from dark to light.\n   */\n\n  /* Defaults use Material Design specification */\n  --jp-ui-font-color0: rgba(0, 0, 0, 1);\n  --jp-ui-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-ui-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-ui-font-color3: rgba(0, 0, 0, 0.38);\n\n  /*\n   * Use these against the brand/accent/warn/error colors.\n   * These will typically go from light to darker, in both a dark and light theme.\n   */\n\n  --jp-ui-inverse-font-color0: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color1: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color2: rgba(255, 255, 255, 0.7);\n  --jp-ui-inverse-font-color3: rgba(255, 255, 255, 0.5);\n\n  /* Content Fonts\n   *\n   * Content font variables are used for typography of user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-content-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-content-line-height: 1.6;\n  --jp-content-font-scale-factor: 1.2;\n  --jp-content-font-size0: 0.83333em;\n  --jp-content-font-size1: 14px; /* Base font size */\n  --jp-content-font-size2: 1.2em;\n  --jp-content-font-size3: 1.44em;\n  --jp-content-font-size4: 1.728em;\n  --jp-content-font-size5: 2.0736em;\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-content-presentation-font-size1: 17px;\n\n  --jp-content-heading-line-height: 1;\n  --jp-content-heading-margin-top: 1.2em;\n  --jp-content-heading-margin-bottom: 0.8em;\n  --jp-content-heading-font-weight: 500;\n\n  /* Defaults use Material Design specification */\n  --jp-content-font-color0: rgba(0, 0, 0, 1);\n  --jp-content-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-content-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-content-font-color3: rgba(0, 0, 0, 0.38);\n\n  --jp-content-link-color: var(--md-blue-700);\n\n  --jp-content-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',\n    Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',\n    'Segoe UI Symbol';\n\n  /*\n   * Code Fonts\n   *\n   * Code font variables are used for typography of code and other monospaces content.\n   */\n\n  --jp-code-font-size: 13px;\n  --jp-code-line-height: 1.3077; /* 17px for 13px base */\n  --jp-code-padding: 5px; /* 5px for 13px base, codemirror highlighting needs integer px value */\n  --jp-code-font-family-default: Menlo, Consolas, 'DejaVu Sans Mono', monospace;\n  --jp-code-font-family: var(--jp-code-font-family-default);\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-code-presentation-font-size: 16px;\n\n  /* may need to tweak cursor width if you change font size */\n  --jp-code-cursor-width0: 1.4px;\n  --jp-code-cursor-width1: 2px;\n  --jp-code-cursor-width2: 4px;\n\n  /* Layout\n   *\n   * The following are the main layout colors use in JupyterLab. In a light\n   * theme these would go from light to dark.\n   */\n\n  --jp-layout-color0: white;\n  --jp-layout-color1: white;\n  --jp-layout-color2: var(--md-grey-200);\n  --jp-layout-color3: var(--md-grey-400);\n  --jp-layout-color4: var(--md-grey-600);\n\n  /* Inverse Layout\n   *\n   * The following are the inverse layout colors use in JupyterLab. In a light\n   * theme these would go from dark to light.\n   */\n\n  --jp-inverse-layout-color0: #111111;\n  --jp-inverse-layout-color1: var(--md-grey-900);\n  --jp-inverse-layout-color2: var(--md-grey-800);\n  --jp-inverse-layout-color3: var(--md-grey-700);\n  --jp-inverse-layout-color4: var(--md-grey-600);\n\n  /* Brand/accent */\n\n  --jp-brand-color0: var(--md-blue-900);\n  --jp-brand-color1: var(--md-blue-700);\n  --jp-brand-color2: var(--md-blue-300);\n  --jp-brand-color3: var(--md-blue-100);\n  --jp-brand-color4: var(--md-blue-50);\n\n  --jp-accent-color0: var(--md-green-900);\n  --jp-accent-color1: var(--md-green-700);\n  --jp-accent-color2: var(--md-green-300);\n  --jp-accent-color3: var(--md-green-100);\n\n  /* State colors (warn, error, success, info) */\n\n  --jp-warn-color0: var(--md-orange-900);\n  --jp-warn-color1: var(--md-orange-700);\n  --jp-warn-color2: var(--md-orange-300);\n  --jp-warn-color3: var(--md-orange-100);\n\n  --jp-error-color0: var(--md-red-900);\n  --jp-error-color1: var(--md-red-700);\n  --jp-error-color2: var(--md-red-300);\n  --jp-error-color3: var(--md-red-100);\n\n  --jp-success-color0: var(--md-green-900);\n  --jp-success-color1: var(--md-green-700);\n  --jp-success-color2: var(--md-green-300);\n  --jp-success-color3: var(--md-green-100);\n\n  --jp-info-color0: var(--md-cyan-900);\n  --jp-info-color1: var(--md-cyan-700);\n  --jp-info-color2: var(--md-cyan-300);\n  --jp-info-color3: var(--md-cyan-100);\n\n  /* Cell specific styles */\n\n  --jp-cell-padding: 5px;\n\n  --jp-cell-collapser-width: 8px;\n  --jp-cell-collapser-min-height: 20px;\n  --jp-cell-collapser-not-active-hover-opacity: 0.6;\n\n  --jp-cell-editor-background: var(--md-grey-100);\n  --jp-cell-editor-border-color: var(--md-grey-300);\n  --jp-cell-editor-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-cell-editor-active-background: var(--jp-layout-color0);\n  --jp-cell-editor-active-border-color: var(--jp-brand-color1);\n\n  --jp-cell-prompt-width: 64px;\n  --jp-cell-prompt-font-family: var(--jp-code-font-family-default);\n  --jp-cell-prompt-letter-spacing: 0px;\n  --jp-cell-prompt-opacity: 1;\n  --jp-cell-prompt-not-active-opacity: 0.5;\n  --jp-cell-prompt-not-active-font-color: var(--md-grey-700);\n  /* A custom blend of MD grey and blue 600\n   * See https://meyerweb.com/eric/tools/color-blend/#546E7A:1E88E5:5:hex */\n  --jp-cell-inprompt-font-color: #307fc1;\n  /* A custom blend of MD grey and orange 600\n   * https://meyerweb.com/eric/tools/color-blend/#546E7A:F4511E:5:hex */\n  --jp-cell-outprompt-font-color: #bf5b3d;\n\n  /* Notebook specific styles */\n\n  --jp-notebook-padding: 10px;\n  --jp-notebook-select-background: var(--jp-layout-color1);\n  --jp-notebook-multiselected-color: var(--md-blue-50);\n\n  /* The scroll padding is calculated to fill enough space at the bottom of the\n  notebook to show one single-line cell (with appropriate padding) at the top\n  when the notebook is scrolled all the way to the bottom. We also subtract one\n  pixel so that no scrollbar appears if we have just one single-line cell in the\n  notebook. This padding is to enable a 'scroll past end' feature in a notebook.\n  */\n  --jp-notebook-scroll-padding: calc(\n    100% - var(--jp-code-font-size) * var(--jp-code-line-height) -\n      var(--jp-code-padding) - var(--jp-cell-padding) - 1px\n  );\n\n  /* Rendermime styles */\n\n  --jp-rendermime-error-background: #fdd;\n  --jp-rendermime-table-row-background: var(--md-grey-100);\n  --jp-rendermime-table-row-hover-background: var(--md-light-blue-50);\n\n  /* Dialog specific styles */\n\n  --jp-dialog-background: rgba(0, 0, 0, 0.25);\n\n  /* Console specific styles */\n\n  --jp-console-padding: 10px;\n\n  /* Toolbar specific styles */\n\n  --jp-toolbar-border-color: var(--jp-border-color1);\n  --jp-toolbar-micro-height: 8px;\n  --jp-toolbar-background: var(--jp-layout-color1);\n  --jp-toolbar-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.24);\n  --jp-toolbar-header-margin: 4px 4px 0px 4px;\n  --jp-toolbar-active-background: var(--md-grey-300);\n\n  /* Statusbar specific styles */\n\n  --jp-statusbar-height: 24px;\n\n  /* Input field styles */\n\n  --jp-input-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-input-active-background: var(--jp-layout-color1);\n  --jp-input-hover-background: var(--jp-layout-color1);\n  --jp-input-background: var(--md-grey-100);\n  --jp-input-border-color: var(--jp-border-color1);\n  --jp-input-active-border-color: var(--jp-brand-color1);\n  --jp-input-active-box-shadow-color: rgba(19, 124, 189, 0.3);\n\n  /* General editor styles */\n\n  --jp-editor-selected-background: #d9d9d9;\n  --jp-editor-selected-focused-background: #d7d4f0;\n  --jp-editor-cursor-color: var(--jp-ui-font-color0);\n\n  /* Code mirror specific styles */\n\n  --jp-mirror-editor-keyword-color: #008000;\n  --jp-mirror-editor-atom-color: #88f;\n  --jp-mirror-editor-number-color: #080;\n  --jp-mirror-editor-def-color: #00f;\n  --jp-mirror-editor-variable-color: var(--md-grey-900);\n  --jp-mirror-editor-variable-2-color: #05a;\n  --jp-mirror-editor-variable-3-color: #085;\n  --jp-mirror-editor-punctuation-color: #05a;\n  --jp-mirror-editor-property-color: #05a;\n  --jp-mirror-editor-operator-color: #aa22ff;\n  --jp-mirror-editor-comment-color: #408080;\n  --jp-mirror-editor-string-color: #ba2121;\n  --jp-mirror-editor-string-2-color: #708;\n  --jp-mirror-editor-meta-color: #aa22ff;\n  --jp-mirror-editor-qualifier-color: #555;\n  --jp-mirror-editor-builtin-color: #008000;\n  --jp-mirror-editor-bracket-color: #997;\n  --jp-mirror-editor-tag-color: #170;\n  --jp-mirror-editor-attribute-color: #00c;\n  --jp-mirror-editor-header-color: blue;\n  --jp-mirror-editor-quote-color: #090;\n  --jp-mirror-editor-link-color: #00c;\n  --jp-mirror-editor-error-color: #f00;\n  --jp-mirror-editor-hr-color: #999;\n\n  /* Vega extension styles */\n\n  --jp-vega-background: white;\n\n  /* Sidebar-related styles */\n\n  --jp-sidebar-min-width: 250px;\n\n  /* Search-related styles */\n\n  --jp-search-toggle-off-opacity: 0.5;\n  --jp-search-toggle-hover-opacity: 0.8;\n  --jp-search-toggle-on-opacity: 1;\n  --jp-search-selected-match-background-color: rgb(245, 200, 0);\n  --jp-search-selected-match-color: black;\n  --jp-search-unselected-match-background-color: var(\n    --jp-inverse-layout-color0\n  );\n  --jp-search-unselected-match-color: var(--jp-ui-inverse-font-color0);\n\n  /* Icon colors that work well with light or dark backgrounds */\n  --jp-icon-contrast-color0: var(--md-purple-600);\n  --jp-icon-contrast-color1: var(--md-green-600);\n  --jp-icon-contrast-color2: var(--md-pink-600);\n  --jp-icon-contrast-color3: var(--md-blue-600);\n}\n</style>\n\n<style type=\"text/css\">\n/* Force rendering true colors when outputing to pdf */\n* {\n  -webkit-print-color-adjust: exact;\n}\n\n/* Misc */\na.anchor-link {\n  display: none;\n}\n\n.highlight  {\n  margin: 0.4em;\n}\n\n/* Input area styling */\n.jp-InputArea {\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  overflow: hidden;\n}\n\n.CodeMirror pre {\n  margin: 0;\n  padding: 0;\n}\n\n/* Using table instead of flexbox so that we can use break-inside property */\n/* CSS rules under this comment should not be required anymore after we move to the JupyterLab 4.0 CSS */\n\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  min-width: calc(\n    var(--jp-cell-prompt-width) - var(--jp-private-cell-scrolling-output-offset)\n  );\n}\n\n.jp-OutputArea-child {\n  display: table;\n  width: 100%;\n}\n\n.jp-OutputPrompt {\n  display: table-cell;\n  vertical-align: top;\n  min-width: var(--jp-cell-prompt-width);\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  display: table-row;\n}\n\n.jp-OutputArea-output {\n  display: table-cell;\n  width: 100%;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  display: table-row;\n}\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  width: 100%;\n}\n\n/* Hiding the collapser by default */\n.jp-Collapser {\n  display: none;\n}\n\n@media print {\n  .jp-Cell-inputWrapper,\n  .jp-Cell-outputWrapper {\n    display: block;\n  }\n\n  .jp-OutputArea-child {\n    break-inside: avoid-page;\n  }\n}\n</style>\n\n<!-- Load mathjax -->\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/latest.js?config=TeX-AMS_CHTML-full,Safe\"> </script>\n    <!-- MathJax configuration -->\n    <script type=\"text/x-mathjax-config\">\n    init_mathjax = function() {\n        if (window.MathJax) {\n        // MathJax loaded\n            MathJax.Hub.Config({\n                TeX: {\n                    equationNumbers: {\n                    autoNumber: \"AMS\",\n                    useLabelIds: true\n                    }\n                },\n                tex2jax: {\n                    inlineMath: [ ['$','$'], [\"\\\\(\",\"\\\\)\"] ],\n                    displayMath: [ ['$$','$$'], [\"\\\\[\",\"\\\\]\"] ],\n                    processEscapes: true,\n                    processEnvironments: true\n                },\n                displayAlign: 'center',\n                CommonHTML: {\n                    linebreaks: {\n                    automatic: true\n                    }\n                }\n            });\n\n            MathJax.Hub.Queue([\"Typeset\", MathJax.Hub]);\n        }\n    }\n    init_mathjax();\n    </script>\n    <!-- End of mathjax configuration --></head>\n<body class=\"jp-Notebook\" data-jp-theme-light=\"true\" data-jp-theme-name=\"JupyterLab Light\">\n\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"My-background\">My background<a class=\"anchor-link\" href=\"#My-background\">&#182;</a></h1><ul>\n<li>PhD in computational linguistics, machine learning, Bayesian models</li>\n<li>currently doing a fellowship on a probabilistic programming library called Monad-Bayes, written in Haskell</li>\n</ul>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[1]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kt\">:</span><span class=\"n\">l</span><span class=\"w\"> </span><span class=\"kt\">Plotting</span><span class=\"o\">.</span><span class=\"n\">hs</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Probabilistic-programming-+-functional-programming\">Probabilistic programming + functional programming<a class=\"anchor-link\" href=\"#Probabilistic-programming-+-functional-programming\">&#182;</a></h1>\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[45]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kt\">:</span><span class=\"n\">opt</span><span class=\"w\"> </span><span class=\"n\">no</span><span class=\"o\">-</span><span class=\"n\">lint</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h2 id=\"Functional-programming-in-Haskell\">Functional programming in Haskell<a class=\"anchor-link\" href=\"#Functional-programming-in-Haskell\">&#182;</a></h2><ul>\n<li>purity: all functions are mathematical functions (no hidden side effects, no global state)</li>\n<li>static types: reason about the behavior of your program by looking at its type</li>\n<li>lazy evaluation</li>\n<li>compositionality: meaning of whole program should be a function of the meaning of the parts</li>\n</ul>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[3]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- all Haskell programs are mathematical expressions</span><span class=\"w\"></span>\n<span class=\"kt\">True</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>True</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[4]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- all expressions are statically typed</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">t</span><span class=\"w\"> </span><span class=\"kt\">True</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedHTMLCommon jp-RenderedHTML jp-OutputArea-output \" data-mime-type=\"text/html\">\n<style>/* Styles used for the Hoogle display in the pager */\n.hoogle-doc {\ndisplay: block;\npadding-bottom: 1.3em;\npadding-left: 0.4em;\n}\n.hoogle-code {\ndisplay: block;\nfont-family: monospace;\nwhite-space: pre;\n}\n.hoogle-text {\ndisplay: block;\n}\n.hoogle-name {\ncolor: green;\nfont-weight: bold;\n}\n.hoogle-head {\nfont-weight: bold;\n}\n.hoogle-sub {\ndisplay: block;\nmargin-left: 0.4em;\n}\n.hoogle-package {\nfont-weight: bold;\nfont-style: italic;\n}\n.hoogle-module {\nfont-weight: bold;\n}\n.hoogle-class {\nfont-weight: bold;\n}\n.get-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\ndisplay: block;\nwhite-space: pre-wrap;\n}\n.show-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\nmargin-left: 1em;\n}\n.mono {\nfont-family: monospace;\ndisplay: block;\n}\n.err-msg {\ncolor: red;\nfont-style: italic;\nfont-family: monospace;\nwhite-space: pre;\ndisplay: block;\n}\n#unshowable {\ncolor: red;\nfont-weight: bold;\n}\n.err-msg.in.collapse {\npadding-top: 0.7em;\n}\n.highlight-code {\nwhite-space: pre;\nfont-family: monospace;\n}\n.suggestion-warning { \nfont-weight: bold;\ncolor: rgb(200, 130, 0);\n}\n.suggestion-error { \nfont-weight: bold;\ncolor: red;\n}\n.suggestion-name {\nfont-weight: bold;\n}\n</style><span class='get-type'>True :: Bool</span>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[5]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kt\">:</span><span class=\"n\">t</span><span class=\"w\"> </span><span class=\"kt\">False</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedHTMLCommon jp-RenderedHTML jp-OutputArea-output \" data-mime-type=\"text/html\">\n<style>/* Styles used for the Hoogle display in the pager */\n.hoogle-doc {\ndisplay: block;\npadding-bottom: 1.3em;\npadding-left: 0.4em;\n}\n.hoogle-code {\ndisplay: block;\nfont-family: monospace;\nwhite-space: pre;\n}\n.hoogle-text {\ndisplay: block;\n}\n.hoogle-name {\ncolor: green;\nfont-weight: bold;\n}\n.hoogle-head {\nfont-weight: bold;\n}\n.hoogle-sub {\ndisplay: block;\nmargin-left: 0.4em;\n}\n.hoogle-package {\nfont-weight: bold;\nfont-style: italic;\n}\n.hoogle-module {\nfont-weight: bold;\n}\n.hoogle-class {\nfont-weight: bold;\n}\n.get-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\ndisplay: block;\nwhite-space: pre-wrap;\n}\n.show-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\nmargin-left: 1em;\n}\n.mono {\nfont-family: monospace;\ndisplay: block;\n}\n.err-msg {\ncolor: red;\nfont-style: italic;\nfont-family: monospace;\nwhite-space: pre;\ndisplay: block;\n}\n#unshowable {\ncolor: red;\nfont-weight: bold;\n}\n.err-msg.in.collapse {\npadding-top: 0.7em;\n}\n.highlight-code {\nwhite-space: pre;\nfont-family: monospace;\n}\n.suggestion-warning { \nfont-weight: bold;\ncolor: rgb(200, 130, 0);\n}\n.suggestion-error { \nfont-weight: bold;\ncolor: red;\n}\n.suggestion-name {\nfont-weight: bold;\n}\n</style><span class='get-type'>False :: Bool</span>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[6]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- functions have types. functions are pure</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">t</span><span class=\"w\"> </span><span class=\"n\">not</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedHTMLCommon jp-RenderedHTML jp-OutputArea-output \" data-mime-type=\"text/html\">\n<style>/* Styles used for the Hoogle display in the pager */\n.hoogle-doc {\ndisplay: block;\npadding-bottom: 1.3em;\npadding-left: 0.4em;\n}\n.hoogle-code {\ndisplay: block;\nfont-family: monospace;\nwhite-space: pre;\n}\n.hoogle-text {\ndisplay: block;\n}\n.hoogle-name {\ncolor: green;\nfont-weight: bold;\n}\n.hoogle-head {\nfont-weight: bold;\n}\n.hoogle-sub {\ndisplay: block;\nmargin-left: 0.4em;\n}\n.hoogle-package {\nfont-weight: bold;\nfont-style: italic;\n}\n.hoogle-module {\nfont-weight: bold;\n}\n.hoogle-class {\nfont-weight: bold;\n}\n.get-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\ndisplay: block;\nwhite-space: pre-wrap;\n}\n.show-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\nmargin-left: 1em;\n}\n.mono {\nfont-family: monospace;\ndisplay: block;\n}\n.err-msg {\ncolor: red;\nfont-style: italic;\nfont-family: monospace;\nwhite-space: pre;\ndisplay: block;\n}\n#unshowable {\ncolor: red;\nfont-weight: bold;\n}\n.err-msg.in.collapse {\npadding-top: 0.7em;\n}\n.highlight-code {\nwhite-space: pre;\nfont-family: monospace;\n}\n.suggestion-warning { \nfont-weight: bold;\ncolor: rgb(200, 130, 0);\n}\n.suggestion-error { \nfont-weight: bold;\ncolor: red;\n}\n.suggestion-name {\nfont-weight: bold;\n}\n</style><span class='get-type'>not :: Bool -> Bool</span>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[7]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- function application</span><span class=\"w\"></span>\n<span class=\"nf\">not</span><span class=\"w\"> </span><span class=\"kt\">True</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">t</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">not</span><span class=\"w\"> </span><span class=\"kt\">True</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>False</pre>\n</div>\n\n</div>\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedHTMLCommon jp-RenderedHTML jp-OutputArea-output \" data-mime-type=\"text/html\">\n<style>/* Styles used for the Hoogle display in the pager */\n.hoogle-doc {\ndisplay: block;\npadding-bottom: 1.3em;\npadding-left: 0.4em;\n}\n.hoogle-code {\ndisplay: block;\nfont-family: monospace;\nwhite-space: pre;\n}\n.hoogle-text {\ndisplay: block;\n}\n.hoogle-name {\ncolor: green;\nfont-weight: bold;\n}\n.hoogle-head {\nfont-weight: bold;\n}\n.hoogle-sub {\ndisplay: block;\nmargin-left: 0.4em;\n}\n.hoogle-package {\nfont-weight: bold;\nfont-style: italic;\n}\n.hoogle-module {\nfont-weight: bold;\n}\n.hoogle-class {\nfont-weight: bold;\n}\n.get-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\ndisplay: block;\nwhite-space: pre-wrap;\n}\n.show-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\nmargin-left: 1em;\n}\n.mono {\nfont-family: monospace;\ndisplay: block;\n}\n.err-msg {\ncolor: red;\nfont-style: italic;\nfont-family: monospace;\nwhite-space: pre;\ndisplay: block;\n}\n#unshowable {\ncolor: red;\nfont-weight: bold;\n}\n.err-msg.in.collapse {\npadding-top: 0.7em;\n}\n.highlight-code {\nwhite-space: pre;\nfont-family: monospace;\n}\n.suggestion-warning { \nfont-weight: bold;\ncolor: rgb(200, 130, 0);\n}\n.suggestion-error { \nfont-weight: bold;\ncolor: red;\n}\n.suggestion-name {\nfont-weight: bold;\n}\n</style><span class='get-type'>(not True) :: Bool</span>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[8]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">seven</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">7</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Int</span><span class=\"w\"> </span>\n\n<span class=\"nf\">not</span><span class=\"w\"> </span><span class=\"n\">seven</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output\" data-mime-type=\"application/vnd.jupyter.stderr\">\n<pre>\n&lt;interactive&gt;:1:5: error:\n    • Couldn&#39;t match expected type ‘Bool’ with actual type ‘Int’\n    • In the first argument of ‘not’, namely ‘seven’\n      In the expression: not seven\n      In an equation for ‘it’: it = not seven</pre>\n</div>\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[9]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- types can take types as arguments</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">t</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">True</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">False</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">True</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">t</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"n\">seven</span><span class=\"p\">]</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedHTMLCommon jp-RenderedHTML jp-OutputArea-output \" data-mime-type=\"text/html\">\n<style>/* Styles used for the Hoogle display in the pager */\n.hoogle-doc {\ndisplay: block;\npadding-bottom: 1.3em;\npadding-left: 0.4em;\n}\n.hoogle-code {\ndisplay: block;\nfont-family: monospace;\nwhite-space: pre;\n}\n.hoogle-text {\ndisplay: block;\n}\n.hoogle-name {\ncolor: green;\nfont-weight: bold;\n}\n.hoogle-head {\nfont-weight: bold;\n}\n.hoogle-sub {\ndisplay: block;\nmargin-left: 0.4em;\n}\n.hoogle-package {\nfont-weight: bold;\nfont-style: italic;\n}\n.hoogle-module {\nfont-weight: bold;\n}\n.hoogle-class {\nfont-weight: bold;\n}\n.get-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\ndisplay: block;\nwhite-space: pre-wrap;\n}\n.show-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\nmargin-left: 1em;\n}\n.mono {\nfont-family: monospace;\ndisplay: block;\n}\n.err-msg {\ncolor: red;\nfont-style: italic;\nfont-family: monospace;\nwhite-space: pre;\ndisplay: block;\n}\n#unshowable {\ncolor: red;\nfont-weight: bold;\n}\n.err-msg.in.collapse {\npadding-top: 0.7em;\n}\n.highlight-code {\nwhite-space: pre;\nfont-family: monospace;\n}\n.suggestion-warning { \nfont-weight: bold;\ncolor: rgb(200, 130, 0);\n}\n.suggestion-error { \nfont-weight: bold;\ncolor: red;\n}\n.suggestion-name {\nfont-weight: bold;\n}\n</style><span class='get-type'>[True, False, True] :: [Bool]</span>\n</div>\n\n</div>\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedHTMLCommon jp-RenderedHTML jp-OutputArea-output \" data-mime-type=\"text/html\">\n<style>/* Styles used for the Hoogle display in the pager */\n.hoogle-doc {\ndisplay: block;\npadding-bottom: 1.3em;\npadding-left: 0.4em;\n}\n.hoogle-code {\ndisplay: block;\nfont-family: monospace;\nwhite-space: pre;\n}\n.hoogle-text {\ndisplay: block;\n}\n.hoogle-name {\ncolor: green;\nfont-weight: bold;\n}\n.hoogle-head {\nfont-weight: bold;\n}\n.hoogle-sub {\ndisplay: block;\nmargin-left: 0.4em;\n}\n.hoogle-package {\nfont-weight: bold;\nfont-style: italic;\n}\n.hoogle-module {\nfont-weight: bold;\n}\n.hoogle-class {\nfont-weight: bold;\n}\n.get-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\ndisplay: block;\nwhite-space: pre-wrap;\n}\n.show-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\nmargin-left: 1em;\n}\n.mono {\nfont-family: monospace;\ndisplay: block;\n}\n.err-msg {\ncolor: red;\nfont-style: italic;\nfont-family: monospace;\nwhite-space: pre;\ndisplay: block;\n}\n#unshowable {\ncolor: red;\nfont-weight: bold;\n}\n.err-msg.in.collapse {\npadding-top: 0.7em;\n}\n.highlight-code {\nwhite-space: pre;\nfont-family: monospace;\n}\n.suggestion-warning { \nfont-weight: bold;\ncolor: rgb(200, 130, 0);\n}\n.suggestion-error { \nfont-weight: bold;\ncolor: red;\n}\n.suggestion-name {\nfont-weight: bold;\n}\n</style><span class='get-type'>[seven] :: [Int]</span>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[10]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- universal quantification</span><span class=\"w\"></span>\n<span class=\"nf\">id</span><span class=\"w\"> </span><span class=\"kt\">True</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">t</span><span class=\"w\"> </span><span class=\"n\">id</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>True</pre>\n</div>\n\n</div>\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedHTMLCommon jp-RenderedHTML jp-OutputArea-output \" data-mime-type=\"text/html\">\n<style>/* Styles used for the Hoogle display in the pager */\n.hoogle-doc {\ndisplay: block;\npadding-bottom: 1.3em;\npadding-left: 0.4em;\n}\n.hoogle-code {\ndisplay: block;\nfont-family: monospace;\nwhite-space: pre;\n}\n.hoogle-text {\ndisplay: block;\n}\n.hoogle-name {\ncolor: green;\nfont-weight: bold;\n}\n.hoogle-head {\nfont-weight: bold;\n}\n.hoogle-sub {\ndisplay: block;\nmargin-left: 0.4em;\n}\n.hoogle-package {\nfont-weight: bold;\nfont-style: italic;\n}\n.hoogle-module {\nfont-weight: bold;\n}\n.hoogle-class {\nfont-weight: bold;\n}\n.get-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\ndisplay: block;\nwhite-space: pre-wrap;\n}\n.show-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\nmargin-left: 1em;\n}\n.mono {\nfont-family: monospace;\ndisplay: block;\n}\n.err-msg {\ncolor: red;\nfont-style: italic;\nfont-family: monospace;\nwhite-space: pre;\ndisplay: block;\n}\n#unshowable {\ncolor: red;\nfont-weight: bold;\n}\n.err-msg.in.collapse {\npadding-top: 0.7em;\n}\n.highlight-code {\nwhite-space: pre;\nfont-family: monospace;\n}\n.suggestion-warning { \nfont-weight: bold;\ncolor: rgb(200, 130, 0);\n}\n.suggestion-error { \nfont-weight: bold;\ncolor: red;\n}\n.suggestion-name {\nfont-weight: bold;\n}\n</style><span class='get-type'>id :: forall {a}. a -> a</span>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[11]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- map applies a function to each element in a list</span><span class=\"w\"></span>\n<span class=\"nf\">map</span><span class=\"w\"> </span><span class=\"n\">not</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">True</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">False</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">t</span><span class=\"w\"> </span><span class=\"n\">map</span><span class=\"w\"> </span><span class=\"n\">not</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">True</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">False</span><span class=\"p\">]</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[False,True]</pre>\n</div>\n\n</div>\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedHTMLCommon jp-RenderedHTML jp-OutputArea-output \" data-mime-type=\"text/html\">\n<style>/* Styles used for the Hoogle display in the pager */\n.hoogle-doc {\ndisplay: block;\npadding-bottom: 1.3em;\npadding-left: 0.4em;\n}\n.hoogle-code {\ndisplay: block;\nfont-family: monospace;\nwhite-space: pre;\n}\n.hoogle-text {\ndisplay: block;\n}\n.hoogle-name {\ncolor: green;\nfont-weight: bold;\n}\n.hoogle-head {\nfont-weight: bold;\n}\n.hoogle-sub {\ndisplay: block;\nmargin-left: 0.4em;\n}\n.hoogle-package {\nfont-weight: bold;\nfont-style: italic;\n}\n.hoogle-module {\nfont-weight: bold;\n}\n.hoogle-class {\nfont-weight: bold;\n}\n.get-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\ndisplay: block;\nwhite-space: pre-wrap;\n}\n.show-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\nmargin-left: 1em;\n}\n.mono {\nfont-family: monospace;\ndisplay: block;\n}\n.err-msg {\ncolor: red;\nfont-style: italic;\nfont-family: monospace;\nwhite-space: pre;\ndisplay: block;\n}\n#unshowable {\ncolor: red;\nfont-weight: bold;\n}\n.err-msg.in.collapse {\npadding-top: 0.7em;\n}\n.highlight-code {\nwhite-space: pre;\nfont-family: monospace;\n}\n.suggestion-warning { \nfont-weight: bold;\ncolor: rgb(200, 130, 0);\n}\n.suggestion-error { \nfont-weight: bold;\ncolor: red;\n}\n.suggestion-name {\nfont-weight: bold;\n}\n</style><span class='get-type'>map not [True, False] :: [Bool]</span>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[12]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- map takes a function as its argument</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">t</span><span class=\"w\"> </span><span class=\"n\">map</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedHTMLCommon jp-RenderedHTML jp-OutputArea-output \" data-mime-type=\"text/html\">\n<style>/* Styles used for the Hoogle display in the pager */\n.hoogle-doc {\ndisplay: block;\npadding-bottom: 1.3em;\npadding-left: 0.4em;\n}\n.hoogle-code {\ndisplay: block;\nfont-family: monospace;\nwhite-space: pre;\n}\n.hoogle-text {\ndisplay: block;\n}\n.hoogle-name {\ncolor: green;\nfont-weight: bold;\n}\n.hoogle-head {\nfont-weight: bold;\n}\n.hoogle-sub {\ndisplay: block;\nmargin-left: 0.4em;\n}\n.hoogle-package {\nfont-weight: bold;\nfont-style: italic;\n}\n.hoogle-module {\nfont-weight: bold;\n}\n.hoogle-class {\nfont-weight: bold;\n}\n.get-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\ndisplay: block;\nwhite-space: pre-wrap;\n}\n.show-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\nmargin-left: 1em;\n}\n.mono {\nfont-family: monospace;\ndisplay: block;\n}\n.err-msg {\ncolor: red;\nfont-style: italic;\nfont-family: monospace;\nwhite-space: pre;\ndisplay: block;\n}\n#unshowable {\ncolor: red;\nfont-weight: bold;\n}\n.err-msg.in.collapse {\npadding-top: 0.7em;\n}\n.highlight-code {\nwhite-space: pre;\nfont-family: monospace;\n}\n.suggestion-warning { \nfont-weight: bold;\ncolor: rgb(200, 130, 0);\n}\n.suggestion-error { \nfont-weight: bold;\ncolor: red;\n}\n.suggestion-name {\nfont-weight: bold;\n}\n</style><span class='get-type'>map :: forall {a} {b}. (a -> b) -> [a] -> [b]</span>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[13]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- things can be defined recursively</span><span class=\"w\"></span>\n<span class=\"c1\">-- Haskell is lazy</span><span class=\"w\"></span>\n<span class=\"nf\">h</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Int</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">h</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"> </span><span class=\"kt\">:</span><span class=\"w\"> </span><span class=\"n\">h</span><span class=\"w\"></span>\n\n<span class=\"nf\">take</span><span class=\"w\"> </span><span class=\"mi\">10</span><span class=\"w\"> </span><span class=\"n\">h</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[1,1,1,1,1,1,1,1,1,1]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[14]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- here&#39;s an example using map</span><span class=\"w\"></span>\n<span class=\"nf\">g</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Int</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">g</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"> </span><span class=\"kt\">:</span><span class=\"w\"> </span><span class=\"n\">map</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">+</span><span class=\"mi\">1</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">g</span><span class=\"w\"></span>\n\n\n<span class=\"nf\">take</span><span class=\"w\"> </span><span class=\"mi\">10</span><span class=\"w\"> </span><span class=\"n\">g</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[1,2,3,4,5,6,7,8,9,10]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[15]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- functions compose</span><span class=\"w\"></span>\n<span class=\"nf\">not</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">not</span><span class=\"w\"> </span><span class=\"kt\">True</span><span class=\"p\">)</span><span class=\"w\"> </span>\n<span class=\"p\">(</span><span class=\"n\">not</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">not</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"kt\">True</span><span class=\"w\"></span>\n<span class=\"p\">((</span><span class=\"o\">&gt;</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">+</span><span class=\"mi\">1</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>True</pre>\n</div>\n\n</div>\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>True</pre>\n</div>\n\n</div>\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>True</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[16]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Diagrams.Prelude</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">D</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Diagrams.Prelude</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V2</span><span class=\"p\">(</span><span class=\"o\">..</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">#</span><span class=\"p\">))</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Diagrams.Backend.Cairo</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">C</span><span class=\"w\"></span>\n\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">FlexibleContexts</span><span class=\"w\"></span>\n\n\n<span class=\"nf\">boxDiagram</span><span class=\"w\"> </span><span class=\"n\">t</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\">   </span><span class=\"kt\">D</span><span class=\"o\">.</span><span class=\"n\">hsep</span><span class=\"w\"> </span><span class=\"mf\">0.1</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"w\"></span>\n<span class=\"w\">      </span><span class=\"kt\">D</span><span class=\"o\">.</span><span class=\"n\">circle</span><span class=\"w\"> </span><span class=\"mf\">0.001</span><span class=\"w\"> </span><span class=\"o\">#</span><span class=\"w\"> </span><span class=\"kt\">D</span><span class=\"o\">.</span><span class=\"n\">named</span><span class=\"w\"> </span><span class=\"s\">&quot;in&quot;</span><span class=\"p\">,</span><span class=\"w\"></span>\n<span class=\"w\">      </span><span class=\"p\">(</span><span class=\"kt\">D</span><span class=\"o\">.</span><span class=\"n\">text</span><span class=\"w\"> </span><span class=\"n\">t</span><span class=\"w\">  </span><span class=\"o\">#</span><span class=\"w\"> </span><span class=\"kt\">D</span><span class=\"o\">.</span><span class=\"n\">scale</span><span class=\"w\"> </span><span class=\"mf\">0.02</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"kt\">D</span><span class=\"o\">.</span><span class=\"n\">rect</span><span class=\"w\"> </span><span class=\"mf\">0.25</span><span class=\"w\"> </span><span class=\"mf\">0.25</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">#</span><span class=\"w\"> </span><span class=\"kt\">D</span><span class=\"o\">.</span><span class=\"n\">named</span><span class=\"w\"> </span><span class=\"s\">&quot;box&quot;</span><span class=\"p\">,</span><span class=\"w\"></span>\n<span class=\"w\">      </span><span class=\"kt\">D</span><span class=\"o\">.</span><span class=\"n\">circle</span><span class=\"w\"> </span><span class=\"mf\">0.001</span><span class=\"w\"> </span><span class=\"o\">#</span><span class=\"w\"> </span><span class=\"kt\">D</span><span class=\"o\">.</span><span class=\"n\">named</span><span class=\"w\"> </span><span class=\"s\">&quot;out&quot;</span><span class=\"p\">]</span><span class=\"w\"> </span>\n<span class=\"w\">      </span><span class=\"o\">#</span><span class=\"w\"> </span><span class=\"kt\">D</span><span class=\"o\">.</span><span class=\"n\">connectOutside</span><span class=\"w\"> </span><span class=\"s\">&quot;out&quot;</span><span class=\"w\"> </span><span class=\"s\">&quot;box&quot;</span><span class=\"w\"> </span><span class=\"o\">#</span><span class=\"w\"> </span><span class=\"kt\">D</span><span class=\"o\">.</span><span class=\"n\">connectOutside</span><span class=\"w\"> </span><span class=\"s\">&quot;box&quot;</span><span class=\"w\"> </span><span class=\"s\">&quot;in&quot;</span><span class=\"w\"></span>\n\n<span class=\"w\">    </span>\n<span class=\"nf\">diagram</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">D</span><span class=\"o\">.</span><span class=\"n\">hsep</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"n\">boxDiagram</span><span class=\"w\"> </span><span class=\"s\">&quot;</span><span class=\"se\">\\t</span><span class=\"s\">not::</span><span class=\"se\">\\n</span><span class=\"s\">Bool -&gt; Bool&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">boxDiagram</span><span class=\"w\"> </span><span class=\"s\">&quot;</span><span class=\"se\">\\t</span><span class=\"s\">not::</span><span class=\"se\">\\n</span><span class=\"s\">Bool -&gt; Bool&quot;</span><span class=\"p\">]</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedSVG jp-OutputArea-output \" data-mime-type=\"image/svg+xml\">\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"482.061953pt\" height=\"132.726309pt\" viewBox=\"0 0 482.061953 132.726309\" version=\"1.1\">\n<defs>\n<g>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082205.94671s0-0\">\n<path style=\"stroke:none;\" d=\"M 0.226562 0 L 0.226562 -9.367188 L 9.890625 -9.367188 L 9.890625 0 Z M 8.621094 -1.273438 L 8.621094 -8.09375 L 1.5 -8.09375 L 1.5 -1.273438 Z M 8.621094 -1.273438 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082205.94671s0-1\">\n<path style=\"stroke:none;\" d=\"M 0.253906 -0.195312 C 0.582031 -0.234375 0.8125 -0.316406 0.945312 -0.4375 C 1.074219 -0.5625 1.140625 -0.835938 1.140625 -1.257812 L 1.140625 -4.761719 C 1.140625 -5.058594 1.113281 -5.265625 1.058594 -5.382812 C 0.96875 -5.558594 0.789062 -5.648438 0.519531 -5.648438 C 0.476562 -5.648438 0.433594 -5.644531 0.390625 -5.640625 C 0.347656 -5.636719 0.292969 -5.628906 0.226562 -5.621094 L 0.226562 -5.863281 C 0.417969 -5.917969 0.863281 -6.058594 1.570312 -6.289062 L 2.21875 -6.503906 C 2.25 -6.503906 2.269531 -6.492188 2.277344 -6.46875 C 2.285156 -6.445312 2.289062 -6.414062 2.289062 -6.375 L 2.289062 -5.355469 C 2.710938 -5.753906 3.042969 -6.023438 3.285156 -6.171875 C 3.644531 -6.398438 4.015625 -6.511719 4.402344 -6.511719 C 4.714844 -6.511719 5.003906 -6.421875 5.261719 -6.242188 C 5.757812 -5.890625 6.007812 -5.265625 6.007812 -4.367188 L 6.007812 -1.140625 C 6.007812 -0.808594 6.074219 -0.570312 6.207031 -0.421875 C 6.339844 -0.273438 6.5625 -0.199219 6.878906 -0.195312 L 6.878906 0 L 3.925781 0 L 3.925781 -0.195312 C 4.261719 -0.238281 4.496094 -0.332031 4.632812 -0.472656 C 4.765625 -0.613281 4.832031 -0.917969 4.832031 -1.390625 L 4.832031 -4.339844 C 4.832031 -4.738281 4.757812 -5.066406 4.609375 -5.324219 C 4.460938 -5.585938 4.191406 -5.714844 3.792969 -5.714844 C 3.523438 -5.714844 3.246094 -5.625 2.964844 -5.441406 C 2.808594 -5.335938 2.605469 -5.160156 2.355469 -4.914062 L 2.355469 -1.042969 C 2.355469 -0.710938 2.429688 -0.488281 2.578125 -0.375 C 2.726562 -0.261719 2.957031 -0.203125 3.277344 -0.195312 L 3.277344 0 L 0.253906 0 Z M 0.253906 -0.195312 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082205.94671s0-2\">\n<path style=\"stroke:none;\" d=\"M 0.359375 -3.207031 C 0.359375 -4.125 0.652344 -4.898438 1.234375 -5.535156 C 1.816406 -6.167969 2.566406 -6.484375 3.484375 -6.484375 C 4.394531 -6.484375 5.152344 -6.183594 5.75 -5.585938 C 6.351562 -4.984375 6.648438 -4.1875 6.648438 -3.195312 C 6.648438 -2.277344 6.359375 -1.480469 5.777344 -0.800781 C 5.199219 -0.125 4.445312 0.214844 3.523438 0.214844 C 2.640625 0.214844 1.890625 -0.109375 1.277344 -0.761719 C 0.664062 -1.410156 0.359375 -2.226562 0.359375 -3.207031 Z M 3.289062 -6.070312 C 2.925781 -6.070312 2.609375 -5.949219 2.34375 -5.710938 C 1.882812 -5.289062 1.652344 -4.566406 1.652344 -3.539062 C 1.652344 -2.71875 1.835938 -1.953125 2.207031 -1.246094 C 2.578125 -0.535156 3.09375 -0.179688 3.753906 -0.179688 C 4.269531 -0.179688 4.667969 -0.417969 4.945312 -0.890625 C 5.222656 -1.367188 5.363281 -1.988281 5.363281 -2.757812 C 5.363281 -3.554688 5.1875 -4.304688 4.832031 -5.011719 C 4.476562 -5.714844 3.964844 -6.070312 3.289062 -6.070312 Z M 3.289062 -6.070312 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082205.94671s0-3\">\n<path style=\"stroke:none;\" d=\"M 3.601562 -6.375 L 3.601562 -5.875 L 2.191406 -5.875 L 2.175781 -1.894531 C 2.175781 -1.542969 2.207031 -1.277344 2.265625 -1.097656 C 2.378906 -0.78125 2.59375 -0.621094 2.917969 -0.621094 C 3.082031 -0.621094 3.226562 -0.660156 3.347656 -0.738281 C 3.46875 -0.816406 3.609375 -0.941406 3.765625 -1.113281 L 3.945312 -0.960938 L 3.792969 -0.753906 C 3.554688 -0.429688 3.300781 -0.203125 3.035156 -0.0703125 C 2.765625 0.0625 2.507812 0.132812 2.261719 0.132812 C 1.71875 0.132812 1.347656 -0.109375 1.15625 -0.59375 C 1.050781 -0.855469 0.996094 -1.222656 0.996094 -1.6875 L 0.996094 -5.875 L 0.242188 -5.875 C 0.21875 -5.890625 0.203125 -5.902344 0.191406 -5.917969 C 0.179688 -5.929688 0.171875 -5.949219 0.171875 -5.972656 C 0.171875 -6.019531 0.183594 -6.054688 0.203125 -6.078125 C 0.222656 -6.105469 0.289062 -6.164062 0.402344 -6.253906 C 0.71875 -6.519531 0.949219 -6.730469 1.089844 -6.894531 C 1.230469 -7.058594 1.558594 -7.492188 2.082031 -8.191406 C 2.140625 -8.191406 2.175781 -8.1875 2.1875 -8.175781 C 2.199219 -8.167969 2.203125 -8.132812 2.203125 -8.074219 L 2.203125 -6.375 Z M 3.601562 -6.375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082205.94671s0-4\">\n<path style=\"stroke:none;\" d=\"M 2.683594 -5.742188 C 2.683594 -5.511719 2.601562 -5.324219 2.445312 -5.179688 C 2.285156 -5.035156 2.105469 -4.964844 1.902344 -4.964844 C 1.679688 -4.964844 1.496094 -5.042969 1.355469 -5.199219 C 1.210938 -5.355469 1.140625 -5.535156 1.140625 -5.738281 C 1.140625 -5.949219 1.214844 -6.128906 1.363281 -6.28125 C 1.507812 -6.429688 1.6875 -6.503906 1.902344 -6.503906 C 2.105469 -6.503906 2.285156 -6.433594 2.445312 -6.285156 C 2.601562 -6.140625 2.683594 -5.960938 2.683594 -5.742188 Z M 1.878906 0.117188 C 1.6875 0.117188 1.515625 0.0429688 1.363281 -0.109375 C 1.214844 -0.261719 1.140625 -0.445312 1.140625 -0.664062 C 1.140625 -0.871094 1.214844 -1.050781 1.363281 -1.207031 C 1.507812 -1.359375 1.691406 -1.4375 1.90625 -1.4375 C 2.125 -1.4375 2.3125 -1.363281 2.472656 -1.214844 C 2.636719 -1.0625 2.714844 -0.882812 2.714844 -0.671875 C 2.714844 -0.46875 2.640625 -0.285156 2.488281 -0.125 C 2.335938 0.0351562 2.132812 0.117188 1.878906 0.117188 Z M 1.878906 0.117188 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082205.94671s0-5\">\n<path style=\"stroke:none;\" d=\"M 4.210938 -0.511719 C 4.933594 -0.511719 5.539062 -0.652344 6.027344 -0.933594 C 6.515625 -1.214844 6.761719 -1.753906 6.761719 -2.550781 C 6.761719 -3.34375 6.472656 -3.882812 5.902344 -4.175781 C 5.332031 -4.464844 4.605469 -4.609375 3.71875 -4.609375 C 3.503906 -4.609375 3.363281 -4.609375 3.308594 -4.609375 C 3.25 -4.609375 3.160156 -4.613281 3.042969 -4.617188 L 3.042969 -1.09375 C 3.042969 -0.847656 3.109375 -0.691406 3.25 -0.617188 C 3.386719 -0.546875 3.707031 -0.511719 4.210938 -0.511719 Z M 0.242188 -0.253906 C 0.8125 -0.289062 1.183594 -0.375 1.351562 -0.523438 C 1.519531 -0.667969 1.605469 -1.003906 1.605469 -1.535156 L 1.605469 -7.832031 C 1.605469 -8.351562 1.519531 -8.6875 1.351562 -8.835938 C 1.183594 -8.988281 0.8125 -9.074219 0.242188 -9.101562 L 0.242188 -9.367188 L 4.210938 -9.367188 C 5.34375 -9.367188 6.242188 -9.183594 6.910156 -8.820312 C 7.574219 -8.457031 7.90625 -7.828125 7.90625 -6.941406 C 7.90625 -6.273438 7.675781 -5.765625 7.210938 -5.417969 C 6.949219 -5.21875 6.554688 -5.058594 6.027344 -4.929688 C 6.675781 -4.773438 7.234375 -4.511719 7.691406 -4.144531 C 8.152344 -3.777344 8.382812 -3.265625 8.382812 -2.605469 C 8.382812 -1.5 7.871094 -0.738281 6.851562 -0.324219 C 6.3125 -0.109375 5.648438 0 4.859375 0 L 0.242188 0 Z M 4.390625 -5.175781 C 4.863281 -5.1875 5.257812 -5.261719 5.570312 -5.40625 C 6.171875 -5.683594 6.46875 -6.175781 6.46875 -6.890625 C 6.46875 -7.734375 6.125 -8.304688 5.433594 -8.597656 C 5.050781 -8.757812 4.46875 -8.839844 3.691406 -8.839844 C 3.394531 -8.839844 3.214844 -8.816406 3.144531 -8.765625 C 3.074219 -8.714844 3.042969 -8.574219 3.042969 -8.351562 L 3.042969 -5.15625 Z M 4.390625 -5.175781 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082205.94671s0-6\">\n<path style=\"stroke:none;\" d=\"M 0.289062 -0.195312 C 0.71875 -0.234375 1.007812 -0.320312 1.160156 -0.453125 C 1.3125 -0.585938 1.390625 -0.839844 1.390625 -1.222656 L 1.390625 -7.976562 C 1.390625 -8.28125 1.363281 -8.492188 1.3125 -8.605469 C 1.222656 -8.800781 1.035156 -8.894531 0.753906 -8.894531 C 0.6875 -8.894531 0.617188 -8.890625 0.542969 -8.875 C 0.464844 -8.863281 0.371094 -8.839844 0.253906 -8.8125 L 0.253906 -9.042969 C 0.878906 -9.207031 1.625 -9.429688 2.503906 -9.703125 C 2.535156 -9.703125 2.554688 -9.691406 2.5625 -9.664062 C 2.570312 -9.636719 2.570312 -9.574219 2.570312 -9.484375 L 2.570312 -1.195312 C 2.570312 -0.792969 2.640625 -0.535156 2.777344 -0.417969 C 2.917969 -0.300781 3.203125 -0.226562 3.636719 -0.195312 L 3.636719 0 L 0.289062 0 Z M 0.289062 -0.195312 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082205.94671s0-7\">\n<g>\n</g>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082205.94671s0-8\">\n<path style=\"stroke:none;\" d=\"M 0.554688 -3.636719 L 4.03125 -3.636719 L 4.03125 -2.75 L 0.554688 -2.75 Z M 0.554688 -3.636719 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082205.94671s0-9\">\n<path style=\"stroke:none;\" d=\"M 0.125 -6.222656 L 0.125 -7.273438 L 7.832031 -3.765625 L 7.832031 -3.386719 L 0.125 0.117188 L 0.125 -0.933594 L 5.980469 -3.585938 Z M 0.125 -6.222656 \"/>\n</symbol>\n</g>\n</defs>\n<g id=\"surface15\">\n<path style=\"fill:none;stroke-width:1.011789;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 482.0625 66.363281 C 482.0625 66.070312 481.824219 65.832031 481.53125 65.832031 C 481.238281 65.832031 481 66.070312 481 66.363281 C 481 66.65625 481.238281 66.894531 481.53125 66.894531 C 481.824219 66.894531 482.0625 66.65625 482.0625 66.363281 Z M 482.0625 66.363281 \"/>\n<path style=\"fill:none;stroke-width:1.011789;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 427.910156 132.726562 L 427.910156 0 L 295.183594 0 L 295.183594 132.726562 Z M 427.910156 132.726562 \"/>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-1\" x=\"356.046465\" y=\"62.824092\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-2\" x=\"363.046465\" y=\"62.824092\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-3\" x=\"370.046465\" y=\"62.824092\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-4\" x=\"374.046465\" y=\"62.824092\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-4\" x=\"378.046465\" y=\"62.824092\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-5\" x=\"324.046465\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-2\" x=\"333.046465\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-2\" x=\"340.046465\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-6\" x=\"347.046465\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-7\" x=\"351.046465\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-8\" x=\"355.046465\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-9\" x=\"360.046465\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-7\" x=\"368.046465\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-5\" x=\"372.046465\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-2\" x=\"381.046465\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-2\" x=\"388.046465\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-6\" x=\"395.046465\" y=\"76.980342\"/>\n</g>\n<path style=\"fill:none;stroke-width:1.011789;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.09375 66.363281 C 242.09375 66.070312 241.855469 65.832031 241.5625 65.832031 C 241.269531 65.832031 241.03125 66.070312 241.03125 66.363281 C 241.03125 66.65625 241.269531 66.894531 241.5625 66.894531 C 241.855469 66.894531 242.09375 66.65625 242.09375 66.363281 Z M 242.09375 66.363281 \"/>\n<path style=\"fill:none;stroke-width:1.011789;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 481 66.363281 L 436.761719 66.363281 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 427.910156 66.363281 L 438.265625 69.726562 L 436.496094 66.363281 L 438.265625 63 Z M 427.910156 66.363281 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 436.496094 66.363281 L 436.761719 66.363281 L 436.761719 66.871094 L 436.496094 66.363281 L 436.761719 66.363281 L 436.761719 65.855469 Z M 436.496094 66.363281 \"/>\n<path style=\"fill:none;stroke-width:1.011789;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 295.183594 66.363281 L 250.945312 66.363281 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 242.09375 66.363281 L 252.449219 69.726562 L 250.679688 66.363281 L 252.449219 63 Z M 242.09375 66.363281 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 250.679688 66.363281 L 250.945312 66.363281 L 250.945312 66.871094 L 250.679688 66.363281 L 250.945312 66.363281 L 250.945312 65.855469 Z M 250.679688 66.363281 \"/>\n<path style=\"fill:none;stroke-width:1.011789;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.03125 66.363281 C 241.03125 66.070312 240.792969 65.832031 240.5 65.832031 C 240.207031 65.832031 239.96875 66.070312 239.96875 66.363281 C 239.96875 66.65625 240.207031 66.894531 240.5 66.894531 C 240.792969 66.894531 241.03125 66.65625 241.03125 66.363281 Z M 241.03125 66.363281 \"/>\n<path style=\"fill:none;stroke-width:1.011789;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.878906 132.726562 L 186.878906 0 L 54.152344 0 L 54.152344 132.726562 Z M 186.878906 132.726562 \"/>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-1\" x=\"115.015488\" y=\"62.824092\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-2\" x=\"122.015488\" y=\"62.824092\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-3\" x=\"129.015488\" y=\"62.824092\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-4\" x=\"133.015488\" y=\"62.824092\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-4\" x=\"137.015488\" y=\"62.824092\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-5\" x=\"83.015488\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-2\" x=\"92.015488\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-2\" x=\"99.015488\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-6\" x=\"106.015488\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-7\" x=\"110.015488\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-8\" x=\"114.015488\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-9\" x=\"119.015488\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-7\" x=\"127.015488\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-5\" x=\"131.015488\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-2\" x=\"140.015488\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-2\" x=\"147.015488\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082205.94671s0-6\" x=\"154.015488\" y=\"76.980342\"/>\n</g>\n<path style=\"fill:none;stroke-width:1.011789;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 1.0625 66.363281 C 1.0625 66.070312 0.824219 65.832031 0.53125 65.832031 C 0.238281 65.832031 0 66.070312 0 66.363281 C 0 66.65625 0.238281 66.894531 0.53125 66.894531 C 0.824219 66.894531 1.0625 66.65625 1.0625 66.363281 Z M 1.0625 66.363281 \"/>\n<path style=\"fill:none;stroke-width:1.011789;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.96875 66.363281 L 195.730469 66.363281 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 186.878906 66.363281 L 197.234375 69.726562 L 195.464844 66.363281 L 197.234375 63 Z M 186.878906 66.363281 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 195.464844 66.363281 L 195.730469 66.363281 L 195.730469 66.871094 L 195.464844 66.363281 L 195.730469 66.363281 L 195.730469 65.855469 Z M 195.464844 66.363281 \"/>\n<path style=\"fill:none;stroke-width:1.011789;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 54.152344 66.363281 L 9.914062 66.363281 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 1.0625 66.363281 L 11.417969 69.726562 L 9.648438 66.363281 L 11.417969 63 Z M 1.0625 66.363281 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 9.648438 66.363281 L 9.914062 66.363281 L 9.914062 66.871094 L 9.648438 66.363281 L 9.914062 66.363281 L 9.914062 65.855469 Z M 9.648438 66.363281 \"/>\n</g>\n</svg>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[17]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">diagram</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">D</span><span class=\"o\">.</span><span class=\"n\">hsep</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"n\">boxDiagram</span><span class=\"w\"> </span><span class=\"s\">&quot;</span><span class=\"se\">\\t</span><span class=\"s\">(&gt;0)::</span><span class=\"se\">\\n</span><span class=\"s\">Int -&gt; Bool&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">boxDiagram</span><span class=\"w\"> </span><span class=\"s\">&quot;</span><span class=\"se\">\\t</span><span class=\"s\">(+1)::</span><span class=\"se\">\\n</span><span class=\"s\">Int -&gt; Int&quot;</span><span class=\"p\">]</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedSVG jp-OutputArea-output \" data-mime-type=\"image/svg+xml\">\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"482.061953pt\" height=\"132.726309pt\" viewBox=\"0 0 482.061953 132.726309\" version=\"1.1\">\n<defs>\n<g>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082206.265475s0-0\">\n<path style=\"stroke:none;\" d=\"M 0.226562 0 L 0.226562 -9.367188 L 9.890625 -9.367188 L 9.890625 0 Z M 8.621094 -1.273438 L 8.621094 -8.09375 L 1.5 -8.09375 L 1.5 -1.273438 Z M 8.621094 -1.273438 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082206.265475s0-1\">\n<path style=\"stroke:none;\" d=\"M 0.648438 -3.554688 C 0.648438 -5.15625 1.128906 -6.5625 2.085938 -7.777344 C 2.675781 -8.519531 3.375 -9.113281 4.175781 -9.566406 L 4.304688 -9.339844 C 3.5625 -8.75 3.035156 -8.175781 2.714844 -7.617188 C 2.160156 -6.644531 1.878906 -5.351562 1.878906 -3.734375 C 1.878906 -2.535156 1.984375 -1.546875 2.199219 -0.765625 C 2.570312 0.597656 3.273438 1.617188 4.304688 2.292969 L 4.125 2.523438 C 3.558594 2.25 2.945312 1.71875 2.289062 0.925781 C 1.195312 -0.386719 0.648438 -1.878906 0.648438 -3.554688 Z M 0.648438 -3.554688 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082206.265475s0-2\">\n<path style=\"stroke:none;\" d=\"M 3.519531 -7.152344 L 4.484375 -7.152344 L 4.484375 -4.058594 L 7.570312 -4.058594 L 7.570312 -3.089844 L 4.484375 -3.089844 L 4.484375 0 L 3.519531 0 L 3.519531 -3.089844 L 0.421875 -3.089844 L 0.421875 -4.058594 L 3.519531 -4.058594 Z M 3.519531 -7.152344 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082206.265475s0-3\">\n<path style=\"stroke:none;\" d=\"M 4.1875 -9.496094 C 4.207031 -9.472656 4.21875 -9.457031 4.21875 -9.445312 C 4.222656 -9.433594 4.222656 -9.40625 4.222656 -9.367188 L 4.222656 -1.042969 C 4.222656 -0.6875 4.316406 -0.464844 4.507812 -0.367188 C 4.695312 -0.269531 5.046875 -0.210938 5.5625 -0.195312 L 5.5625 0 L 1.664062 0 L 1.664062 -0.207031 C 2.222656 -0.234375 2.585938 -0.3125 2.757812 -0.433594 C 2.929688 -0.558594 3.015625 -0.828125 3.015625 -1.246094 L 3.015625 -7.644531 C 3.015625 -7.867188 2.984375 -8.035156 2.929688 -8.148438 C 2.875 -8.265625 2.753906 -8.324219 2.570312 -8.324219 C 2.453125 -8.324219 2.296875 -8.289062 2.105469 -8.222656 C 1.914062 -8.15625 1.734375 -8.085938 1.570312 -8.011719 L 1.570312 -8.203125 L 4.105469 -9.496094 Z M 4.1875 -9.496094 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082206.265475s0-4\">\n<path style=\"stroke:none;\" d=\"M 4.03125 -3.484375 C 4.03125 -2.796875 3.941406 -2.148438 3.761719 -1.535156 C 3.582031 -0.921875 3.316406 -0.34375 2.972656 0.199219 C 2.609375 0.78125 2.121094 1.324219 1.515625 1.824219 C 1.113281 2.15625 0.777344 2.390625 0.503906 2.523438 L 0.375 2.292969 C 1.082031 1.753906 1.601562 1.203125 1.929688 0.644531 C 2.507812 -0.351562 2.800781 -1.667969 2.800781 -3.304688 C 2.800781 -4.625 2.664062 -5.707031 2.398438 -6.546875 C 2.023438 -7.730469 1.351562 -8.660156 0.375 -9.339844 L 0.554688 -9.566406 C 1.28125 -9.160156 1.957031 -8.546875 2.585938 -7.726562 C 3.546875 -6.464844 4.03125 -5.050781 4.03125 -3.484375 Z M 4.03125 -3.484375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082206.265475s0-5\">\n<path style=\"stroke:none;\" d=\"M 2.683594 -5.742188 C 2.683594 -5.511719 2.601562 -5.324219 2.445312 -5.179688 C 2.285156 -5.035156 2.105469 -4.964844 1.902344 -4.964844 C 1.679688 -4.964844 1.496094 -5.042969 1.355469 -5.199219 C 1.210938 -5.355469 1.140625 -5.535156 1.140625 -5.738281 C 1.140625 -5.949219 1.214844 -6.128906 1.363281 -6.28125 C 1.507812 -6.429688 1.6875 -6.503906 1.902344 -6.503906 C 2.105469 -6.503906 2.285156 -6.433594 2.445312 -6.285156 C 2.601562 -6.140625 2.683594 -5.960938 2.683594 -5.742188 Z M 1.878906 0.117188 C 1.6875 0.117188 1.515625 0.0429688 1.363281 -0.109375 C 1.214844 -0.261719 1.140625 -0.445312 1.140625 -0.664062 C 1.140625 -0.871094 1.214844 -1.050781 1.363281 -1.207031 C 1.507812 -1.359375 1.691406 -1.4375 1.90625 -1.4375 C 2.125 -1.4375 2.3125 -1.363281 2.472656 -1.214844 C 2.636719 -1.0625 2.714844 -0.882812 2.714844 -0.671875 C 2.714844 -0.46875 2.640625 -0.285156 2.488281 -0.125 C 2.335938 0.0351562 2.132812 0.117188 1.878906 0.117188 Z M 1.878906 0.117188 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082206.265475s0-6\">\n<path style=\"stroke:none;\" d=\"M 0.226562 -0.253906 C 0.804688 -0.296875 1.175781 -0.382812 1.347656 -0.515625 C 1.519531 -0.648438 1.605469 -0.984375 1.605469 -1.535156 L 1.605469 -7.832031 C 1.605469 -8.351562 1.519531 -8.6875 1.347656 -8.835938 C 1.175781 -8.988281 0.804688 -9.074219 0.226562 -9.101562 L 0.226562 -9.367188 L 4.417969 -9.367188 L 4.417969 -9.101562 C 3.839844 -9.074219 3.46875 -8.988281 3.296875 -8.835938 C 3.125 -8.6875 3.042969 -8.351562 3.042969 -7.832031 L 3.042969 -1.535156 C 3.042969 -0.988281 3.125 -0.644531 3.296875 -0.515625 C 3.46875 -0.382812 3.839844 -0.296875 4.417969 -0.253906 L 4.417969 0 L 0.226562 0 Z M 0.226562 -0.253906 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082206.265475s0-7\">\n<path style=\"stroke:none;\" d=\"M 0.253906 -0.195312 C 0.582031 -0.234375 0.8125 -0.316406 0.945312 -0.4375 C 1.074219 -0.5625 1.140625 -0.835938 1.140625 -1.257812 L 1.140625 -4.761719 C 1.140625 -5.058594 1.113281 -5.265625 1.058594 -5.382812 C 0.96875 -5.558594 0.789062 -5.648438 0.519531 -5.648438 C 0.476562 -5.648438 0.433594 -5.644531 0.390625 -5.640625 C 0.347656 -5.636719 0.292969 -5.628906 0.226562 -5.621094 L 0.226562 -5.863281 C 0.417969 -5.917969 0.863281 -6.058594 1.570312 -6.289062 L 2.21875 -6.503906 C 2.25 -6.503906 2.269531 -6.492188 2.277344 -6.46875 C 2.285156 -6.445312 2.289062 -6.414062 2.289062 -6.375 L 2.289062 -5.355469 C 2.710938 -5.753906 3.042969 -6.023438 3.285156 -6.171875 C 3.644531 -6.398438 4.015625 -6.511719 4.402344 -6.511719 C 4.714844 -6.511719 5.003906 -6.421875 5.261719 -6.242188 C 5.757812 -5.890625 6.007812 -5.265625 6.007812 -4.367188 L 6.007812 -1.140625 C 6.007812 -0.808594 6.074219 -0.570312 6.207031 -0.421875 C 6.339844 -0.273438 6.5625 -0.199219 6.878906 -0.195312 L 6.878906 0 L 3.925781 0 L 3.925781 -0.195312 C 4.261719 -0.238281 4.496094 -0.332031 4.632812 -0.472656 C 4.765625 -0.613281 4.832031 -0.917969 4.832031 -1.390625 L 4.832031 -4.339844 C 4.832031 -4.738281 4.757812 -5.066406 4.609375 -5.324219 C 4.460938 -5.585938 4.191406 -5.714844 3.792969 -5.714844 C 3.523438 -5.714844 3.246094 -5.625 2.964844 -5.441406 C 2.808594 -5.335938 2.605469 -5.160156 2.355469 -4.914062 L 2.355469 -1.042969 C 2.355469 -0.710938 2.429688 -0.488281 2.578125 -0.375 C 2.726562 -0.261719 2.957031 -0.203125 3.277344 -0.195312 L 3.277344 0 L 0.253906 0 Z M 0.253906 -0.195312 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082206.265475s0-8\">\n<path style=\"stroke:none;\" d=\"M 3.601562 -6.375 L 3.601562 -5.875 L 2.191406 -5.875 L 2.175781 -1.894531 C 2.175781 -1.542969 2.207031 -1.277344 2.265625 -1.097656 C 2.378906 -0.78125 2.59375 -0.621094 2.917969 -0.621094 C 3.082031 -0.621094 3.226562 -0.660156 3.347656 -0.738281 C 3.46875 -0.816406 3.609375 -0.941406 3.765625 -1.113281 L 3.945312 -0.960938 L 3.792969 -0.753906 C 3.554688 -0.429688 3.300781 -0.203125 3.035156 -0.0703125 C 2.765625 0.0625 2.507812 0.132812 2.261719 0.132812 C 1.71875 0.132812 1.347656 -0.109375 1.15625 -0.59375 C 1.050781 -0.855469 0.996094 -1.222656 0.996094 -1.6875 L 0.996094 -5.875 L 0.242188 -5.875 C 0.21875 -5.890625 0.203125 -5.902344 0.191406 -5.917969 C 0.179688 -5.929688 0.171875 -5.949219 0.171875 -5.972656 C 0.171875 -6.019531 0.183594 -6.054688 0.203125 -6.078125 C 0.222656 -6.105469 0.289062 -6.164062 0.402344 -6.253906 C 0.71875 -6.519531 0.949219 -6.730469 1.089844 -6.894531 C 1.230469 -7.058594 1.558594 -7.492188 2.082031 -8.191406 C 2.140625 -8.191406 2.175781 -8.1875 2.1875 -8.175781 C 2.199219 -8.167969 2.203125 -8.132812 2.203125 -8.074219 L 2.203125 -6.375 Z M 3.601562 -6.375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082206.265475s0-9\">\n<g>\n</g>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082206.265475s0-10\">\n<path style=\"stroke:none;\" d=\"M 0.554688 -3.636719 L 4.03125 -3.636719 L 4.03125 -2.75 L 0.554688 -2.75 Z M 0.554688 -3.636719 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082206.265475s0-11\">\n<path style=\"stroke:none;\" d=\"M 0.125 -6.222656 L 0.125 -7.273438 L 7.832031 -3.765625 L 7.832031 -3.386719 L 0.125 0.117188 L 0.125 -0.933594 L 5.980469 -3.585938 Z M 0.125 -6.222656 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082206.265475s0-12\">\n<path style=\"stroke:none;\" d=\"M 3.386719 -0.253906 C 4.0625 -0.253906 4.53125 -0.625 4.785156 -1.367188 C 5.039062 -2.109375 5.164062 -3.183594 5.164062 -4.589844 C 5.164062 -5.710938 5.085938 -6.601562 4.933594 -7.273438 C 4.648438 -8.515625 4.113281 -9.136719 3.332031 -9.136719 C 2.546875 -9.136719 2.011719 -8.496094 1.722656 -7.214844 C 1.570312 -6.535156 1.492188 -5.636719 1.492188 -4.519531 C 1.492188 -3.472656 1.570312 -2.636719 1.726562 -2.011719 C 2.023438 -0.839844 2.574219 -0.253906 3.386719 -0.253906 Z M 3.367188 -9.511719 C 4.425781 -9.511719 5.25 -8.957031 5.832031 -7.84375 C 6.296875 -6.945312 6.53125 -5.914062 6.53125 -4.75 C 6.53125 -3.832031 6.390625 -2.96875 6.101562 -2.15625 C 5.5625 -0.632812 4.632812 0.132812 3.304688 0.132812 C 2.394531 0.132812 1.648438 -0.28125 1.066406 -1.105469 C 0.4375 -1.984375 0.125 -3.183594 0.125 -4.695312 C 0.125 -5.882812 0.335938 -6.90625 0.753906 -7.761719 C 1.320312 -8.929688 2.191406 -9.511719 3.367188 -9.511719 Z M 3.367188 -9.511719 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082206.265475s0-13\">\n<path style=\"stroke:none;\" d=\"M 4.210938 -0.511719 C 4.933594 -0.511719 5.539062 -0.652344 6.027344 -0.933594 C 6.515625 -1.214844 6.761719 -1.753906 6.761719 -2.550781 C 6.761719 -3.34375 6.472656 -3.882812 5.902344 -4.175781 C 5.332031 -4.464844 4.605469 -4.609375 3.71875 -4.609375 C 3.503906 -4.609375 3.363281 -4.609375 3.308594 -4.609375 C 3.25 -4.609375 3.160156 -4.613281 3.042969 -4.617188 L 3.042969 -1.09375 C 3.042969 -0.847656 3.109375 -0.691406 3.25 -0.617188 C 3.386719 -0.546875 3.707031 -0.511719 4.210938 -0.511719 Z M 0.242188 -0.253906 C 0.8125 -0.289062 1.183594 -0.375 1.351562 -0.523438 C 1.519531 -0.667969 1.605469 -1.003906 1.605469 -1.535156 L 1.605469 -7.832031 C 1.605469 -8.351562 1.519531 -8.6875 1.351562 -8.835938 C 1.183594 -8.988281 0.8125 -9.074219 0.242188 -9.101562 L 0.242188 -9.367188 L 4.210938 -9.367188 C 5.34375 -9.367188 6.242188 -9.183594 6.910156 -8.820312 C 7.574219 -8.457031 7.90625 -7.828125 7.90625 -6.941406 C 7.90625 -6.273438 7.675781 -5.765625 7.210938 -5.417969 C 6.949219 -5.21875 6.554688 -5.058594 6.027344 -4.929688 C 6.675781 -4.773438 7.234375 -4.511719 7.691406 -4.144531 C 8.152344 -3.777344 8.382812 -3.265625 8.382812 -2.605469 C 8.382812 -1.5 7.871094 -0.738281 6.851562 -0.324219 C 6.3125 -0.109375 5.648438 0 4.859375 0 L 0.242188 0 Z M 4.390625 -5.175781 C 4.863281 -5.1875 5.257812 -5.261719 5.570312 -5.40625 C 6.171875 -5.683594 6.46875 -6.175781 6.46875 -6.890625 C 6.46875 -7.734375 6.125 -8.304688 5.433594 -8.597656 C 5.050781 -8.757812 4.46875 -8.839844 3.691406 -8.839844 C 3.394531 -8.839844 3.214844 -8.816406 3.144531 -8.765625 C 3.074219 -8.714844 3.042969 -8.574219 3.042969 -8.351562 L 3.042969 -5.15625 Z M 4.390625 -5.175781 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082206.265475s0-14\">\n<path style=\"stroke:none;\" d=\"M 0.359375 -3.207031 C 0.359375 -4.125 0.652344 -4.898438 1.234375 -5.535156 C 1.816406 -6.167969 2.566406 -6.484375 3.484375 -6.484375 C 4.394531 -6.484375 5.152344 -6.183594 5.75 -5.585938 C 6.351562 -4.984375 6.648438 -4.1875 6.648438 -3.195312 C 6.648438 -2.277344 6.359375 -1.480469 5.777344 -0.800781 C 5.199219 -0.125 4.445312 0.214844 3.523438 0.214844 C 2.640625 0.214844 1.890625 -0.109375 1.277344 -0.761719 C 0.664062 -1.410156 0.359375 -2.226562 0.359375 -3.207031 Z M 3.289062 -6.070312 C 2.925781 -6.070312 2.609375 -5.949219 2.34375 -5.710938 C 1.882812 -5.289062 1.652344 -4.566406 1.652344 -3.539062 C 1.652344 -2.71875 1.835938 -1.953125 2.207031 -1.246094 C 2.578125 -0.535156 3.09375 -0.179688 3.753906 -0.179688 C 4.269531 -0.179688 4.667969 -0.417969 4.945312 -0.890625 C 5.222656 -1.367188 5.363281 -1.988281 5.363281 -2.757812 C 5.363281 -3.554688 5.1875 -4.304688 4.832031 -5.011719 C 4.476562 -5.714844 3.964844 -6.070312 3.289062 -6.070312 Z M 3.289062 -6.070312 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082206.265475s0-15\">\n<path style=\"stroke:none;\" d=\"M 0.289062 -0.195312 C 0.71875 -0.234375 1.007812 -0.320312 1.160156 -0.453125 C 1.3125 -0.585938 1.390625 -0.839844 1.390625 -1.222656 L 1.390625 -7.976562 C 1.390625 -8.28125 1.363281 -8.492188 1.3125 -8.605469 C 1.222656 -8.800781 1.035156 -8.894531 0.753906 -8.894531 C 0.6875 -8.894531 0.617188 -8.890625 0.542969 -8.875 C 0.464844 -8.863281 0.371094 -8.839844 0.253906 -8.8125 L 0.253906 -9.042969 C 0.878906 -9.207031 1.625 -9.429688 2.503906 -9.703125 C 2.535156 -9.703125 2.554688 -9.691406 2.5625 -9.664062 C 2.570312 -9.636719 2.570312 -9.574219 2.570312 -9.484375 L 2.570312 -1.195312 C 2.570312 -0.792969 2.640625 -0.535156 2.777344 -0.417969 C 2.917969 -0.300781 3.203125 -0.226562 3.636719 -0.195312 L 3.636719 0 L 0.289062 0 Z M 0.289062 -0.195312 \"/>\n</symbol>\n</g>\n</defs>\n<g id=\"surface33\">\n<path style=\"fill:none;stroke-width:1.011789;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 482.0625 66.363281 C 482.0625 66.070312 481.824219 65.832031 481.53125 65.832031 C 481.238281 65.832031 481 66.070312 481 66.363281 C 481 66.65625 481.238281 66.894531 481.53125 66.894531 C 481.824219 66.894531 482.0625 66.65625 482.0625 66.363281 Z M 482.0625 66.363281 \"/>\n<path style=\"fill:none;stroke-width:1.011789;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 427.910156 132.726562 L 427.910156 0 L 295.183594 0 L 295.183594 132.726562 Z M 427.910156 132.726562 \"/>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-1\" x=\"361.046465\" y=\"62.824092\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-2\" x=\"366.046465\" y=\"62.824092\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-3\" x=\"374.046465\" y=\"62.824092\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-4\" x=\"381.046465\" y=\"62.824092\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-5\" x=\"386.046465\" y=\"62.824092\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-5\" x=\"390.046465\" y=\"62.824092\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-6\" x=\"329.046465\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-7\" x=\"334.046465\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-8\" x=\"341.046465\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-9\" x=\"345.046465\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-10\" x=\"349.046465\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-11\" x=\"354.046465\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-9\" x=\"362.046465\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-6\" x=\"366.046465\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-7\" x=\"371.046465\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-8\" x=\"378.046465\" y=\"76.980342\"/>\n</g>\n<path style=\"fill:none;stroke-width:1.011789;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.09375 66.363281 C 242.09375 66.070312 241.855469 65.832031 241.5625 65.832031 C 241.269531 65.832031 241.03125 66.070312 241.03125 66.363281 C 241.03125 66.65625 241.269531 66.894531 241.5625 66.894531 C 241.855469 66.894531 242.09375 66.65625 242.09375 66.363281 Z M 242.09375 66.363281 \"/>\n<path style=\"fill:none;stroke-width:1.011789;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 481 66.363281 L 436.761719 66.363281 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 427.910156 66.363281 L 438.265625 69.726562 L 436.496094 66.363281 L 438.265625 63 Z M 427.910156 66.363281 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 436.496094 66.363281 L 436.761719 66.363281 L 436.761719 66.871094 L 436.496094 66.363281 L 436.761719 66.363281 L 436.761719 65.855469 Z M 436.496094 66.363281 \"/>\n<path style=\"fill:none;stroke-width:1.011789;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 295.183594 66.363281 L 250.945312 66.363281 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 242.09375 66.363281 L 252.449219 69.726562 L 250.679688 66.363281 L 252.449219 63 Z M 242.09375 66.363281 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 250.679688 66.363281 L 250.945312 66.363281 L 250.945312 66.871094 L 250.679688 66.363281 L 250.945312 66.363281 L 250.945312 65.855469 Z M 250.679688 66.363281 \"/>\n<path style=\"fill:none;stroke-width:1.011789;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.03125 66.363281 C 241.03125 66.070312 240.792969 65.832031 240.5 65.832031 C 240.207031 65.832031 239.96875 66.070312 239.96875 66.363281 C 239.96875 66.65625 240.207031 66.894531 240.5 66.894531 C 240.792969 66.894531 241.03125 66.65625 241.03125 66.363281 Z M 241.03125 66.363281 \"/>\n<path style=\"fill:none;stroke-width:1.011789;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.878906 132.726562 L 186.878906 0 L 54.152344 0 L 54.152344 132.726562 Z M 186.878906 132.726562 \"/>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-1\" x=\"120.015488\" y=\"62.824092\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-11\" x=\"125.015488\" y=\"62.824092\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-12\" x=\"133.015488\" y=\"62.824092\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-4\" x=\"140.015488\" y=\"62.824092\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-5\" x=\"145.015488\" y=\"62.824092\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-5\" x=\"149.015488\" y=\"62.824092\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-6\" x=\"88.015488\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-7\" x=\"93.015488\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-8\" x=\"100.015488\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-9\" x=\"104.015488\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-10\" x=\"108.015488\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-11\" x=\"113.015488\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-9\" x=\"121.015488\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-13\" x=\"125.015488\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-14\" x=\"134.015488\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-14\" x=\"141.015488\" y=\"76.980342\"/>\n  <use xlink:href=\"#glyph-2022-06-2082206.265475s0-15\" x=\"148.015488\" y=\"76.980342\"/>\n</g>\n<path style=\"fill:none;stroke-width:1.011789;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 1.0625 66.363281 C 1.0625 66.070312 0.824219 65.832031 0.53125 65.832031 C 0.238281 65.832031 0 66.070312 0 66.363281 C 0 66.65625 0.238281 66.894531 0.53125 66.894531 C 0.824219 66.894531 1.0625 66.65625 1.0625 66.363281 Z M 1.0625 66.363281 \"/>\n<path style=\"fill:none;stroke-width:1.011789;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.96875 66.363281 L 195.730469 66.363281 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 186.878906 66.363281 L 197.234375 69.726562 L 195.464844 66.363281 L 197.234375 63 Z M 186.878906 66.363281 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 195.464844 66.363281 L 195.730469 66.363281 L 195.730469 66.871094 L 195.464844 66.363281 L 195.730469 66.363281 L 195.730469 65.855469 Z M 195.464844 66.363281 \"/>\n<path style=\"fill:none;stroke-width:1.011789;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 54.152344 66.363281 L 9.914062 66.363281 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 1.0625 66.363281 L 11.417969 69.726562 L 9.648438 66.363281 L 11.417969 63 Z M 1.0625 66.363281 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 9.648438 66.363281 L 9.914062 66.363281 L 9.914062 66.871094 L 9.648438 66.363281 L 9.914062 66.363281 L 9.914062 65.855469 Z M 9.648438 66.363281 \"/>\n</g>\n</svg>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[18]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kt\">:</span><span class=\"n\">t</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">.</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedHTMLCommon jp-RenderedHTML jp-OutputArea-output \" data-mime-type=\"text/html\">\n<style>/* Styles used for the Hoogle display in the pager */\n.hoogle-doc {\ndisplay: block;\npadding-bottom: 1.3em;\npadding-left: 0.4em;\n}\n.hoogle-code {\ndisplay: block;\nfont-family: monospace;\nwhite-space: pre;\n}\n.hoogle-text {\ndisplay: block;\n}\n.hoogle-name {\ncolor: green;\nfont-weight: bold;\n}\n.hoogle-head {\nfont-weight: bold;\n}\n.hoogle-sub {\ndisplay: block;\nmargin-left: 0.4em;\n}\n.hoogle-package {\nfont-weight: bold;\nfont-style: italic;\n}\n.hoogle-module {\nfont-weight: bold;\n}\n.hoogle-class {\nfont-weight: bold;\n}\n.get-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\ndisplay: block;\nwhite-space: pre-wrap;\n}\n.show-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\nmargin-left: 1em;\n}\n.mono {\nfont-family: monospace;\ndisplay: block;\n}\n.err-msg {\ncolor: red;\nfont-style: italic;\nfont-family: monospace;\nwhite-space: pre;\ndisplay: block;\n}\n#unshowable {\ncolor: red;\nfont-weight: bold;\n}\n.err-msg.in.collapse {\npadding-top: 0.7em;\n}\n.highlight-code {\nwhite-space: pre;\nfont-family: monospace;\n}\n.suggestion-warning { \nfont-weight: bold;\ncolor: rgb(200, 130, 0);\n}\n.suggestion-error { \nfont-weight: bold;\ncolor: red;\n}\n.suggestion-name {\nfont-weight: bold;\n}\n</style><span class='get-type'>(.) :: forall {b} {c} {a}. (b -> c) -> (a -> b) -> a -> c</span>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[19]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- here&#39;s an example </span><span class=\"w\"></span>\n\n<span class=\"nf\">isEven</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Int</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kt\">Bool</span><span class=\"w\"></span>\n<span class=\"nf\">isEven</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"p\">`</span><span class=\"n\">mod</span><span class=\"p\">`</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"w\"> </span><span class=\"o\">==</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"></span>\n\n<span class=\"c1\">-- given any list (infinite or otherwise), drop all the odd numbers</span><span class=\"w\"></span>\n<span class=\"nf\">evens</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Int</span><span class=\"p\">]</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Int</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">evens</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">filter</span><span class=\"w\"> </span><span class=\"n\">isEven</span><span class=\"w\"> </span>\n\n<span class=\"nf\">tenEvens</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Int</span><span class=\"p\">]</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Int</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">tenEvens</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">take</span><span class=\"w\"> </span><span class=\"mi\">10</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">evens</span><span class=\"w\"></span>\n\n<span class=\"nf\">tenEvens</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"mi\">1</span><span class=\"o\">..</span><span class=\"p\">]</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[2,4,6,8,10,12,14,16,18,20]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[20]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">sumOfEvens</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">foldr1</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">+</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">take</span><span class=\"w\"> </span><span class=\"mi\">10</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">filter</span><span class=\"w\"> </span><span class=\"n\">isEven</span><span class=\"w\"></span>\n\n<span class=\"nf\">sumOfEvens</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"mi\">1</span><span class=\"o\">..</span><span class=\"p\">]</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>110</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[21]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">diagram</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">D</span><span class=\"o\">.</span><span class=\"n\">hsep</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">boxDiagram</span><span class=\"w\"> </span><span class=\"s\">&quot;(foldr1 (+))::</span><span class=\"se\">\\n</span><span class=\"s\">[Int] -&gt; Int&quot;</span><span class=\"p\">,</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">boxDiagram</span><span class=\"w\"> </span><span class=\"s\">&quot;(take 10)::</span><span class=\"se\">\\n</span><span class=\"s\">[Int] -&gt; [Int]&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"n\">boxDiagram</span><span class=\"w\"> </span><span class=\"s\">&quot;(filter isEven)::</span><span class=\"se\">\\n</span><span class=\"s\">[Int] -&gt; [Int]&quot;</span><span class=\"p\">]</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedSVG jp-OutputArea-output \" data-mime-type=\"image/svg+xml\">\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"491.784054pt\" height=\"90.268732pt\" viewBox=\"0 0 491.784054 90.268732\" version=\"1.1\">\n<defs>\n<g>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-0\">\n<path style=\"stroke:none;\" d=\"M 0.15625 0 L 0.15625 -6.371094 L 6.726562 -6.371094 L 6.726562 0 Z M 5.863281 -0.863281 L 5.863281 -5.503906 L 1.019531 -5.503906 L 1.019531 -0.863281 Z M 5.863281 -0.863281 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-1\">\n<path style=\"stroke:none;\" d=\"M 0.441406 -2.417969 C 0.441406 -3.507812 0.769531 -4.464844 1.417969 -5.289062 C 1.820312 -5.792969 2.292969 -6.199219 2.839844 -6.507812 L 2.929688 -6.351562 C 2.425781 -5.949219 2.0625 -5.558594 1.847656 -5.179688 C 1.46875 -4.519531 1.277344 -3.640625 1.277344 -2.539062 C 1.277344 -1.722656 1.351562 -1.050781 1.496094 -0.523438 C 1.75 0.40625 2.226562 1.101562 2.929688 1.5625 L 2.804688 1.714844 C 2.421875 1.53125 2.003906 1.167969 1.554688 0.628906 C 0.8125 -0.261719 0.441406 -1.277344 0.441406 -2.417969 Z M 0.441406 -2.417969 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-2\">\n<path style=\"stroke:none;\" d=\"M 0.308594 -0.132812 C 0.554688 -0.140625 0.726562 -0.1875 0.824219 -0.273438 C 0.921875 -0.359375 0.96875 -0.566406 0.96875 -0.898438 L 0.96875 -4.011719 L 0.296875 -4.011719 L 0.296875 -4.296875 L 0.96875 -4.296875 C 0.976562 -4.976562 1.152344 -5.519531 1.496094 -5.925781 C 1.84375 -6.332031 2.371094 -6.535156 3.074219 -6.535156 C 3.375 -6.535156 3.652344 -6.464844 3.902344 -6.328125 C 4.152344 -6.191406 4.277344 -6.027344 4.277344 -5.839844 C 4.277344 -5.742188 4.246094 -5.65625 4.175781 -5.585938 C 4.109375 -5.515625 4.023438 -5.480469 3.921875 -5.480469 C 3.777344 -5.480469 3.609375 -5.617188 3.417969 -5.882812 C 3.226562 -6.152344 3.019531 -6.285156 2.792969 -6.285156 C 2.5625 -6.285156 2.382812 -6.246094 2.25 -6.171875 C 2.121094 -6.09375 1.996094 -5.949219 1.886719 -5.738281 C 1.824219 -5.582031 1.78125 -5.417969 1.761719 -5.25 C 1.742188 -5.078125 1.734375 -4.761719 1.734375 -4.296875 L 3.109375 -4.296875 C 3.222656 -4.296875 3.355469 -4.300781 3.5 -4.304688 C 3.644531 -4.3125 3.769531 -4.320312 3.867188 -4.335938 C 3.898438 -4.339844 3.972656 -4.351562 4.09375 -4.375 C 4.214844 -4.402344 4.289062 -4.414062 4.316406 -4.414062 C 4.332031 -4.414062 4.347656 -4.40625 4.363281 -4.394531 C 4.378906 -4.382812 4.386719 -4.359375 4.386719 -4.324219 C 4.386719 -4.296875 4.378906 -4.207031 4.367188 -4.050781 L 4.363281 -3.855469 C 4.359375 -3.785156 4.355469 -3.71875 4.355469 -3.652344 C 4.355469 -3.585938 4.351562 -3.519531 4.351562 -3.449219 L 4.351562 -0.933594 C 4.351562 -0.605469 4.398438 -0.398438 4.492188 -0.308594 C 4.585938 -0.222656 4.757812 -0.164062 5.011719 -0.132812 L 5.011719 0 L 2.894531 0 L 2.894531 -0.140625 C 3.195312 -0.167969 3.382812 -0.226562 3.457031 -0.308594 C 3.527344 -0.394531 3.5625 -0.601562 3.5625 -0.933594 L 3.5625 -3.472656 C 3.5625 -3.695312 3.53125 -3.835938 3.46875 -3.894531 C 3.402344 -3.953125 3.261719 -3.988281 3.042969 -3.996094 C 2.886719 -4 2.773438 -4.003906 2.699219 -4.003906 C 2.476562 -4.007812 2.15625 -4.011719 1.734375 -4.011719 L 1.734375 -0.847656 C 1.734375 -0.5625 1.800781 -0.367188 1.9375 -0.261719 C 2.023438 -0.195312 2.183594 -0.152344 2.425781 -0.132812 L 2.425781 0 L 0.308594 0 Z M 0.308594 -0.132812 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-3\">\n<path style=\"stroke:none;\" d=\"M 0.199219 -0.132812 C 0.488281 -0.160156 0.6875 -0.21875 0.789062 -0.308594 C 0.894531 -0.398438 0.945312 -0.570312 0.945312 -0.832031 L 0.945312 -5.425781 C 0.945312 -5.632812 0.925781 -5.773438 0.894531 -5.851562 C 0.832031 -5.984375 0.703125 -6.050781 0.511719 -6.050781 C 0.46875 -6.050781 0.421875 -6.046875 0.367188 -6.035156 C 0.316406 -6.027344 0.253906 -6.011719 0.175781 -5.992188 L 0.175781 -6.148438 C 0.597656 -6.261719 1.105469 -6.414062 1.703125 -6.601562 C 1.722656 -6.601562 1.738281 -6.589844 1.742188 -6.570312 C 1.746094 -6.554688 1.75 -6.511719 1.75 -6.449219 L 1.75 -0.8125 C 1.75 -0.539062 1.796875 -0.363281 1.890625 -0.285156 C 1.984375 -0.203125 2.179688 -0.152344 2.472656 -0.132812 L 2.472656 0 L 0.199219 0 Z M 0.199219 -0.132812 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-4\">\n<path style=\"stroke:none;\" d=\"M 2.449219 -4.335938 L 2.449219 -3.996094 L 1.492188 -3.996094 L 1.480469 -1.289062 C 1.480469 -1.050781 1.5 -0.871094 1.542969 -0.746094 C 1.617188 -0.53125 1.765625 -0.421875 1.984375 -0.421875 C 2.097656 -0.421875 2.195312 -0.449219 2.277344 -0.503906 C 2.359375 -0.554688 2.457031 -0.640625 2.5625 -0.757812 L 2.683594 -0.652344 L 2.582031 -0.511719 C 2.417969 -0.292969 2.246094 -0.136719 2.0625 -0.046875 C 1.882812 0.0429688 1.707031 0.0898438 1.539062 0.0898438 C 1.167969 0.0898438 0.917969 -0.0742188 0.785156 -0.40625 C 0.714844 -0.582031 0.675781 -0.832031 0.675781 -1.148438 L 0.675781 -3.996094 L 0.164062 -3.996094 C 0.148438 -4.003906 0.136719 -4.015625 0.128906 -4.023438 C 0.121094 -4.035156 0.117188 -4.046875 0.117188 -4.0625 C 0.117188 -4.09375 0.125 -4.117188 0.140625 -4.132812 C 0.152344 -4.152344 0.199219 -4.191406 0.273438 -4.253906 C 0.488281 -4.433594 0.644531 -4.578125 0.742188 -4.6875 C 0.835938 -4.800781 1.0625 -5.09375 1.414062 -5.570312 C 1.457031 -5.570312 1.480469 -5.566406 1.488281 -5.5625 C 1.496094 -5.554688 1.5 -5.53125 1.5 -5.492188 L 1.5 -4.335938 Z M 2.449219 -4.335938 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-5\">\n<path style=\"stroke:none;\" d=\"M 2.203125 -4.410156 C 2.644531 -4.410156 3.035156 -4.257812 3.367188 -3.953125 C 3.699219 -3.644531 3.863281 -3.210938 3.863281 -2.652344 L 0.878906 -2.652344 C 0.910156 -1.925781 1.074219 -1.394531 1.371094 -1.0625 C 1.671875 -0.730469 2.023438 -0.5625 2.429688 -0.5625 C 2.757812 -0.5625 3.035156 -0.648438 3.261719 -0.824219 C 3.488281 -0.996094 3.695312 -1.238281 3.886719 -1.554688 L 4.050781 -1.5 C 3.921875 -1.101562 3.683594 -0.734375 3.332031 -0.394531 C 2.980469 -0.0546875 2.546875 0.113281 2.035156 0.113281 C 1.445312 0.113281 0.992188 -0.109375 0.667969 -0.554688 C 0.347656 -1 0.1875 -1.511719 0.1875 -2.09375 C 0.1875 -2.722656 0.375 -3.265625 0.746094 -3.722656 C 1.121094 -4.179688 1.605469 -4.410156 2.203125 -4.410156 Z M 1.933594 -4.066406 C 1.574219 -4.066406 1.300781 -3.910156 1.113281 -3.589844 C 1.011719 -3.421875 0.941406 -3.210938 0.898438 -2.953125 L 2.882812 -2.953125 C 2.847656 -3.265625 2.789062 -3.5 2.703125 -3.652344 C 2.550781 -3.929688 2.292969 -4.066406 1.933594 -4.066406 Z M 1.933594 -4.066406 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-6\">\n<path style=\"stroke:none;\" d=\"M 0.0429688 -0.15625 C 0.332031 -0.179688 0.523438 -0.230469 0.617188 -0.308594 C 0.710938 -0.386719 0.757812 -0.546875 0.757812 -0.800781 L 0.757812 -2.917969 C 0.757812 -3.230469 0.726562 -3.453125 0.667969 -3.585938 C 0.609375 -3.71875 0.507812 -3.785156 0.351562 -3.785156 C 0.320312 -3.785156 0.28125 -3.78125 0.226562 -3.773438 C 0.175781 -3.765625 0.121094 -3.753906 0.0664062 -3.742188 L 0.0664062 -3.898438 C 0.246094 -3.960938 0.429688 -4.023438 0.617188 -4.089844 C 0.804688 -4.15625 0.933594 -4.203125 1.007812 -4.230469 C 1.164062 -4.289062 1.324219 -4.359375 1.492188 -4.433594 C 1.511719 -4.433594 1.527344 -4.425781 1.53125 -4.410156 C 1.535156 -4.394531 1.539062 -4.359375 1.539062 -4.3125 L 1.539062 -3.539062 C 1.738281 -3.820312 1.929688 -4.035156 2.117188 -4.195312 C 2.304688 -4.351562 2.496094 -4.429688 2.699219 -4.429688 C 2.859375 -4.429688 2.988281 -4.378906 3.089844 -4.285156 C 3.1875 -4.191406 3.238281 -4.070312 3.238281 -3.925781 C 3.238281 -3.796875 3.199219 -3.6875 3.125 -3.601562 C 3.046875 -3.511719 2.949219 -3.46875 2.835938 -3.46875 C 2.714844 -3.46875 2.597656 -3.523438 2.476562 -3.632812 C 2.355469 -3.742188 2.257812 -3.796875 2.191406 -3.796875 C 2.082031 -3.796875 1.945312 -3.710938 1.785156 -3.53125 C 1.625 -3.355469 1.546875 -3.171875 1.546875 -2.984375 L 1.546875 -0.863281 C 1.546875 -0.59375 1.609375 -0.410156 1.734375 -0.304688 C 1.859375 -0.199219 2.070312 -0.148438 2.359375 -0.15625 L 2.359375 0 L 0.0429688 0 Z M 0.0429688 -0.15625 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-7\">\n<g>\n</g>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-8\">\n<path style=\"stroke:none;\" d=\"M 0.789062 -6.070312 C 0.789062 -6.203125 0.835938 -6.320312 0.929688 -6.417969 C 1.023438 -6.515625 1.140625 -6.5625 1.277344 -6.5625 C 1.414062 -6.5625 1.527344 -6.515625 1.625 -6.417969 C 1.71875 -6.324219 1.769531 -6.207031 1.769531 -6.070312 C 1.769531 -5.933594 1.71875 -5.820312 1.625 -5.722656 C 1.527344 -5.628906 1.414062 -5.582031 1.277344 -5.582031 C 1.140625 -5.582031 1.023438 -5.628906 0.929688 -5.722656 C 0.835938 -5.820312 0.789062 -5.933594 0.789062 -6.070312 Z M 0.1875 -0.132812 C 0.523438 -0.164062 0.734375 -0.21875 0.824219 -0.304688 C 0.910156 -0.386719 0.953125 -0.609375 0.953125 -0.976562 L 0.953125 -3.21875 C 0.953125 -3.421875 0.941406 -3.566406 0.910156 -3.644531 C 0.863281 -3.773438 0.765625 -3.835938 0.617188 -3.835938 C 0.582031 -3.835938 0.546875 -3.832031 0.515625 -3.828125 C 0.480469 -3.820312 0.386719 -3.796875 0.230469 -3.75 L 0.230469 -3.898438 L 0.433594 -3.964844 C 0.980469 -4.140625 1.363281 -4.277344 1.578125 -4.367188 C 1.667969 -4.40625 1.722656 -4.421875 1.75 -4.421875 C 1.753906 -4.402344 1.757812 -4.378906 1.757812 -4.351562 L 1.757812 -0.976562 C 1.757812 -0.621094 1.800781 -0.394531 1.886719 -0.304688 C 1.972656 -0.214844 2.167969 -0.15625 2.472656 -0.132812 L 2.472656 0 L 0.1875 0 Z M 0.1875 -0.132812 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-9\">\n<path style=\"stroke:none;\" d=\"M 0.5 -1.480469 L 0.652344 -1.480469 C 0.726562 -1.125 0.824219 -0.847656 0.945312 -0.65625 C 1.164062 -0.304688 1.484375 -0.132812 1.910156 -0.132812 C 2.144531 -0.132812 2.328125 -0.195312 2.464844 -0.328125 C 2.601562 -0.457031 2.671875 -0.625 2.671875 -0.832031 C 2.671875 -0.964844 2.632812 -1.089844 2.550781 -1.214844 C 2.472656 -1.335938 2.335938 -1.453125 2.140625 -1.570312 L 1.613281 -1.871094 C 1.226562 -2.078125 0.945312 -2.285156 0.761719 -2.496094 C 0.578125 -2.707031 0.488281 -2.953125 0.488281 -3.238281 C 0.488281 -3.589844 0.613281 -3.878906 0.863281 -4.105469 C 1.113281 -4.332031 1.429688 -4.441406 1.808594 -4.441406 C 1.976562 -4.441406 2.160156 -4.410156 2.359375 -4.347656 C 2.558594 -4.285156 2.667969 -4.253906 2.695312 -4.253906 C 2.75 -4.253906 2.789062 -4.261719 2.816406 -4.277344 C 2.839844 -4.292969 2.863281 -4.320312 2.882812 -4.351562 L 2.996094 -4.351562 L 3.027344 -3.042969 L 2.882812 -3.042969 C 2.820312 -3.347656 2.734375 -3.582031 2.628906 -3.75 C 2.433594 -4.0625 2.152344 -4.222656 1.785156 -4.222656 C 1.566406 -4.222656 1.394531 -4.152344 1.269531 -4.019531 C 1.144531 -3.882812 1.082031 -3.726562 1.082031 -3.542969 C 1.082031 -3.253906 1.296875 -3 1.730469 -2.773438 L 2.351562 -2.441406 C 3.019531 -2.078125 3.351562 -1.652344 3.351562 -1.171875 C 3.351562 -0.800781 3.214844 -0.5 2.9375 -0.261719 C 2.660156 -0.0273438 2.296875 0.0898438 1.847656 0.0898438 C 1.660156 0.0898438 1.445312 0.0585938 1.207031 -0.00390625 C 0.96875 -0.0664062 0.828125 -0.0976562 0.785156 -0.0976562 C 0.746094 -0.0976562 0.714844 -0.0859375 0.6875 -0.0585938 C 0.660156 -0.03125 0.636719 0 0.621094 0.0390625 L 0.5 0.0390625 Z M 0.5 -1.480469 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-10\">\n<path style=\"stroke:none;\" d=\"M 0.109375 -0.175781 C 0.460938 -0.210938 0.691406 -0.273438 0.796875 -0.363281 C 0.902344 -0.453125 0.953125 -0.679688 0.953125 -1.042969 L 0.953125 -5.328125 C 0.953125 -5.667969 0.902344 -5.890625 0.800781 -5.996094 C 0.695312 -6.101562 0.464844 -6.167969 0.109375 -6.191406 L 0.109375 -6.371094 L 5.222656 -6.371094 L 5.257812 -4.988281 L 5.011719 -4.988281 C 4.929688 -5.414062 4.808594 -5.691406 4.644531 -5.816406 C 4.480469 -5.941406 4.117188 -6.003906 3.554688 -6.003906 L 2.246094 -6.003906 C 2.105469 -6.003906 2.019531 -5.980469 1.984375 -5.933594 C 1.953125 -5.890625 1.9375 -5.804688 1.9375 -5.679688 L 1.9375 -3.53125 L 3.417969 -3.53125 C 3.828125 -3.53125 4.089844 -3.589844 4.203125 -3.714844 C 4.316406 -3.835938 4.40625 -4.082031 4.476562 -4.457031 L 4.699219 -4.457031 L 4.699219 -2.226562 L 4.476562 -2.226562 C 4.402344 -2.601562 4.3125 -2.847656 4.199219 -2.96875 C 4.085938 -3.089844 3.824219 -3.148438 3.417969 -3.148438 L 1.9375 -3.148438 L 1.9375 -0.765625 C 1.9375 -0.574219 1.996094 -0.460938 2.117188 -0.429688 C 2.238281 -0.394531 2.601562 -0.375 3.203125 -0.375 C 3.855469 -0.375 4.335938 -0.449219 4.644531 -0.589844 C 4.953125 -0.734375 5.234375 -1.078125 5.480469 -1.625 L 5.75 -1.625 L 5.3125 0 L 0.109375 0 Z M 0.109375 -0.175781 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-11\">\n<path style=\"stroke:none;\" d=\"M 2.070312 -4.367188 L 2.070312 -4.222656 C 1.90625 -4.203125 1.789062 -4.179688 1.722656 -4.144531 C 1.65625 -4.113281 1.621094 -4.046875 1.621094 -3.941406 C 1.621094 -3.890625 1.628906 -3.839844 1.644531 -3.796875 C 1.65625 -3.75 1.679688 -3.683594 1.714844 -3.597656 L 2.695312 -1.164062 L 3.539062 -3.320312 C 3.582031 -3.421875 3.617188 -3.53125 3.65625 -3.644531 C 3.691406 -3.757812 3.710938 -3.84375 3.710938 -3.902344 C 3.710938 -4.023438 3.652344 -4.113281 3.535156 -4.164062 C 3.464844 -4.191406 3.371094 -4.210938 3.253906 -4.222656 L 3.253906 -4.367188 L 4.589844 -4.367188 L 4.589844 -4.222656 C 4.433594 -4.210938 4.324219 -4.15625 4.257812 -4.070312 C 4.191406 -3.980469 4.089844 -3.773438 3.964844 -3.449219 L 2.605469 -0.0664062 C 2.578125 -0.0078125 2.558594 0.0351562 2.542969 0.0546875 C 2.527344 0.078125 2.503906 0.0898438 2.476562 0.0898438 C 2.445312 0.0898438 2.417969 0.0703125 2.398438 0.0351562 C 2.375 0 2.351562 -0.046875 2.328125 -0.0976562 L 0.886719 -3.539062 C 0.773438 -3.820312 0.648438 -4.007812 0.515625 -4.109375 C 0.4375 -4.164062 0.324219 -4.203125 0.175781 -4.222656 L 0.175781 -4.367188 Z M 2.070312 -4.367188 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-12\">\n<path style=\"stroke:none;\" d=\"M 0.175781 -0.132812 C 0.398438 -0.160156 0.550781 -0.214844 0.640625 -0.296875 C 0.730469 -0.382812 0.777344 -0.566406 0.777344 -0.855469 L 0.777344 -3.238281 C 0.777344 -3.4375 0.757812 -3.582031 0.71875 -3.664062 C 0.660156 -3.78125 0.539062 -3.839844 0.351562 -3.839844 C 0.324219 -3.839844 0.296875 -3.839844 0.265625 -3.835938 C 0.234375 -3.832031 0.199219 -3.828125 0.15625 -3.820312 L 0.15625 -3.988281 C 0.285156 -4.023438 0.585938 -4.121094 1.066406 -4.277344 L 1.507812 -4.421875 C 1.53125 -4.421875 1.542969 -4.414062 1.550781 -4.398438 C 1.554688 -4.382812 1.554688 -4.363281 1.554688 -4.335938 L 1.554688 -3.644531 C 1.84375 -3.914062 2.070312 -4.097656 2.234375 -4.199219 C 2.476562 -4.351562 2.730469 -4.429688 2.996094 -4.429688 C 3.207031 -4.429688 3.402344 -4.367188 3.578125 -4.246094 C 3.917969 -4.007812 4.085938 -3.582031 4.085938 -2.972656 L 4.085938 -0.777344 C 4.085938 -0.550781 4.128906 -0.386719 4.222656 -0.285156 C 4.3125 -0.1875 4.464844 -0.136719 4.675781 -0.132812 L 4.675781 0 L 2.671875 0 L 2.671875 -0.132812 C 2.898438 -0.164062 3.058594 -0.226562 3.148438 -0.320312 C 3.238281 -0.417969 3.285156 -0.625 3.285156 -0.945312 L 3.285156 -2.953125 C 3.285156 -3.222656 3.234375 -3.445312 3.136719 -3.621094 C 3.035156 -3.800781 2.851562 -3.886719 2.582031 -3.886719 C 2.394531 -3.886719 2.207031 -3.824219 2.015625 -3.699219 C 1.910156 -3.628906 1.773438 -3.507812 1.601562 -3.34375 L 1.601562 -0.710938 C 1.601562 -0.484375 1.652344 -0.332031 1.753906 -0.257812 C 1.855469 -0.179688 2.011719 -0.136719 2.226562 -0.132812 L 2.226562 0 L 0.175781 0 Z M 0.175781 -0.132812 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-13\">\n<path style=\"stroke:none;\" d=\"M 2.742188 -2.371094 C 2.742188 -1.902344 2.679688 -1.460938 2.558594 -1.042969 C 2.4375 -0.625 2.257812 -0.234375 2.023438 0.136719 C 1.773438 0.53125 1.441406 0.898438 1.03125 1.242188 C 0.757812 1.46875 0.527344 1.625 0.34375 1.714844 L 0.253906 1.5625 C 0.738281 1.195312 1.089844 0.820312 1.3125 0.4375 C 1.707031 -0.238281 1.902344 -1.132812 1.902344 -2.246094 C 1.902344 -3.144531 1.8125 -3.882812 1.632812 -4.453125 C 1.378906 -5.257812 0.917969 -5.890625 0.253906 -6.351562 L 0.375 -6.507812 C 0.871094 -6.230469 1.332031 -5.8125 1.757812 -5.257812 C 2.414062 -4.398438 2.742188 -3.433594 2.742188 -2.371094 Z M 2.742188 -2.371094 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-14\">\n<path style=\"stroke:none;\" d=\"M 1.824219 -3.90625 C 1.824219 -3.75 1.769531 -3.621094 1.660156 -3.523438 C 1.554688 -3.425781 1.429688 -3.375 1.292969 -3.375 C 1.140625 -3.375 1.019531 -3.429688 0.921875 -3.535156 C 0.824219 -3.640625 0.777344 -3.765625 0.777344 -3.902344 C 0.777344 -4.046875 0.824219 -4.167969 0.925781 -4.269531 C 1.027344 -4.371094 1.148438 -4.421875 1.292969 -4.421875 C 1.429688 -4.421875 1.554688 -4.375 1.660156 -4.277344 C 1.769531 -4.175781 1.824219 -4.054688 1.824219 -3.90625 Z M 1.277344 0.078125 C 1.148438 0.078125 1.03125 0.0273438 0.929688 -0.0742188 C 0.828125 -0.179688 0.777344 -0.304688 0.777344 -0.453125 C 0.777344 -0.59375 0.824219 -0.714844 0.925781 -0.820312 C 1.027344 -0.925781 1.148438 -0.976562 1.296875 -0.976562 C 1.445312 -0.976562 1.574219 -0.925781 1.683594 -0.824219 C 1.792969 -0.722656 1.847656 -0.601562 1.847656 -0.457031 C 1.847656 -0.320312 1.796875 -0.195312 1.691406 -0.0859375 C 1.589844 0.0234375 1.449219 0.078125 1.277344 0.078125 Z M 1.277344 0.078125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-15\">\n<path style=\"stroke:none;\" d=\"M 0.847656 -6.371094 L 2.871094 -6.371094 L 2.871094 -6.140625 L 2.015625 -6.140625 C 1.828125 -6.140625 1.703125 -6.082031 1.636719 -5.960938 C 1.597656 -5.898438 1.578125 -5.8125 1.578125 -5.703125 L 1.578125 0.769531 C 1.578125 0.914062 1.601562 1.023438 1.640625 1.089844 C 1.710938 1.210938 1.847656 1.273438 2.050781 1.273438 L 2.871094 1.273438 L 2.871094 1.519531 L 0.847656 1.519531 Z M 0.847656 -6.371094 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-16\">\n<path style=\"stroke:none;\" d=\"M 0.15625 -0.175781 C 0.546875 -0.203125 0.800781 -0.261719 0.917969 -0.351562 C 1.03125 -0.441406 1.089844 -0.671875 1.089844 -1.042969 L 1.089844 -5.328125 C 1.089844 -5.679688 1.03125 -5.910156 0.917969 -6.011719 C 0.800781 -6.113281 0.546875 -6.171875 0.15625 -6.191406 L 0.15625 -6.371094 L 3.003906 -6.371094 L 3.003906 -6.191406 C 2.613281 -6.171875 2.359375 -6.113281 2.242188 -6.011719 C 2.125 -5.910156 2.070312 -5.679688 2.070312 -5.328125 L 2.070312 -1.042969 C 2.070312 -0.671875 2.125 -0.441406 2.242188 -0.351562 C 2.359375 -0.261719 2.613281 -0.203125 3.003906 -0.175781 L 3.003906 0 L 0.15625 0 Z M 0.15625 -0.175781 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-17\">\n<path style=\"stroke:none;\" d=\"M 2.351562 1.519531 L 0.320312 1.519531 L 0.320312 1.285156 L 1.179688 1.285156 C 1.363281 1.285156 1.492188 1.226562 1.5625 1.109375 C 1.597656 1.046875 1.613281 0.960938 1.613281 0.851562 L 1.613281 -5.628906 C 1.613281 -5.78125 1.582031 -5.902344 1.519531 -5.992188 C 1.460938 -6.082031 1.335938 -6.125 1.148438 -6.125 L 0.320312 -6.125 L 0.320312 -6.371094 L 2.351562 -6.371094 Z M 2.351562 1.519531 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-18\">\n<path style=\"stroke:none;\" d=\"M 0.375 -2.472656 L 2.742188 -2.472656 L 2.742188 -1.871094 L 0.375 -1.871094 Z M 0.375 -2.472656 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-19\">\n<path style=\"stroke:none;\" d=\"M 0.0859375 -4.230469 L 0.0859375 -4.945312 L 5.328125 -2.5625 L 5.328125 -2.304688 L 0.0859375 0.078125 L 0.0859375 -0.632812 L 4.066406 -2.441406 Z M 0.0859375 -4.230469 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-20\">\n<path style=\"stroke:none;\" d=\"M 2.757812 -2.605469 C 2.398438 -2.484375 2.101562 -2.355469 1.867188 -2.210938 C 1.414062 -1.929688 1.1875 -1.613281 1.1875 -1.261719 C 1.1875 -0.976562 1.285156 -0.765625 1.472656 -0.628906 C 1.59375 -0.542969 1.730469 -0.5 1.878906 -0.5 C 2.085938 -0.5 2.285156 -0.554688 2.476562 -0.671875 C 2.664062 -0.789062 2.757812 -0.933594 2.757812 -1.113281 Z M 0.351562 -0.933594 C 0.351562 -1.390625 0.578125 -1.769531 1.035156 -2.074219 C 1.324219 -2.261719 1.898438 -2.515625 2.757812 -2.839844 L 2.757812 -3.238281 C 2.757812 -3.558594 2.726562 -3.78125 2.664062 -3.90625 C 2.558594 -4.117188 2.339844 -4.222656 2.003906 -4.222656 C 1.84375 -4.222656 1.691406 -4.179688 1.546875 -4.097656 C 1.402344 -4.015625 1.332031 -3.898438 1.332031 -3.75 C 1.332031 -3.714844 1.339844 -3.652344 1.355469 -3.5625 C 1.371094 -3.472656 1.378906 -3.414062 1.378906 -3.390625 C 1.378906 -3.214844 1.320312 -3.089844 1.203125 -3.023438 C 1.136719 -2.980469 1.058594 -2.960938 0.96875 -2.960938 C 0.828125 -2.960938 0.71875 -3.007812 0.644531 -3.101562 C 0.570312 -3.191406 0.53125 -3.296875 0.53125 -3.410156 C 0.53125 -3.628906 0.667969 -3.855469 0.9375 -4.097656 C 1.207031 -4.335938 1.605469 -4.457031 2.128906 -4.457031 C 2.738281 -4.457031 3.148438 -4.257812 3.367188 -3.863281 C 3.480469 -3.648438 3.539062 -3.332031 3.539062 -2.917969 L 3.539062 -1.035156 C 3.539062 -0.851562 3.550781 -0.726562 3.578125 -0.65625 C 3.617188 -0.535156 3.703125 -0.476562 3.832031 -0.476562 C 3.902344 -0.476562 3.964844 -0.484375 4.011719 -0.507812 C 4.058594 -0.53125 4.136719 -0.582031 4.253906 -0.667969 L 4.253906 -0.421875 C 4.152344 -0.300781 4.046875 -0.199219 3.929688 -0.121094 C 3.753906 -0.00390625 3.574219 0.0546875 3.394531 0.0546875 C 3.179688 0.0546875 3.027344 -0.0117188 2.929688 -0.152344 C 2.835938 -0.289062 2.78125 -0.453125 2.773438 -0.644531 C 2.535156 -0.4375 2.332031 -0.285156 2.164062 -0.183594 C 1.878906 -0.015625 1.605469 0.0703125 1.347656 0.0703125 C 1.078125 0.0703125 0.847656 -0.0234375 0.648438 -0.214844 C 0.453125 -0.402344 0.351562 -0.644531 0.351562 -0.933594 Z M 0.351562 -0.933594 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-21\">\n<path style=\"stroke:none;\" d=\"M 0.0195312 -0.132812 C 0.320312 -0.152344 0.519531 -0.203125 0.613281 -0.28125 C 0.710938 -0.359375 0.757812 -0.53125 0.757812 -0.789062 L 0.757812 -5.5 C 0.757812 -5.722656 0.71875 -5.863281 0.644531 -5.921875 C 0.570312 -5.984375 0.460938 -6.011719 0.320312 -6.011719 C 0.261719 -6.011719 0.207031 -6.011719 0.164062 -6.007812 C 0.121094 -6.003906 0.0703125 -6 0.0195312 -5.992188 L 0.0195312 -6.125 L 0.441406 -6.238281 C 0.765625 -6.324219 1.039062 -6.402344 1.265625 -6.476562 C 1.402344 -6.523438 1.484375 -6.546875 1.503906 -6.546875 C 1.523438 -6.546875 1.535156 -6.542969 1.539062 -6.535156 C 1.542969 -6.527344 1.546875 -6.511719 1.546875 -6.484375 L 1.546875 -2.527344 L 2.847656 -3.675781 C 2.941406 -3.761719 3.007812 -3.828125 3.039062 -3.878906 C 3.070312 -3.929688 3.089844 -3.972656 3.089844 -4.011719 C 3.089844 -4.082031 3.054688 -4.128906 2.984375 -4.144531 C 2.914062 -4.164062 2.785156 -4.179688 2.605469 -4.1875 L 2.605469 -4.320312 L 4.566406 -4.320312 L 4.566406 -4.1875 C 4.214844 -4.167969 3.933594 -4.097656 3.71875 -3.980469 C 3.503906 -3.863281 3.097656 -3.527344 2.492188 -2.972656 L 2.214844 -2.71875 L 3.082031 -1.589844 C 3.527344 -1.011719 3.863281 -0.628906 4.089844 -0.441406 C 4.316406 -0.25 4.554688 -0.144531 4.808594 -0.121094 L 4.808594 0 L 2.71875 0 L 2.71875 -0.132812 L 2.882812 -0.140625 C 2.933594 -0.144531 2.984375 -0.15625 3.027344 -0.175781 C 3.070312 -0.195312 3.09375 -0.222656 3.09375 -0.269531 C 3.09375 -0.304688 3.085938 -0.335938 3.070312 -0.363281 C 3.054688 -0.394531 3.03125 -0.429688 3.003906 -0.464844 L 1.546875 -2.382812 L 1.546875 -0.644531 C 1.546875 -0.429688 1.625 -0.285156 1.785156 -0.210938 C 1.878906 -0.167969 2.042969 -0.144531 2.269531 -0.140625 L 2.269531 0 L 0.0195312 0 Z M 0.0195312 -0.132812 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-22\">\n<path style=\"stroke:none;\" d=\"M 2.847656 -6.460938 C 2.859375 -6.445312 2.867188 -6.433594 2.871094 -6.425781 C 2.871094 -6.417969 2.871094 -6.398438 2.871094 -6.371094 L 2.871094 -0.710938 C 2.871094 -0.46875 2.9375 -0.316406 3.066406 -0.25 C 3.195312 -0.183594 3.433594 -0.144531 3.785156 -0.132812 L 3.785156 0 L 1.132812 0 L 1.132812 -0.140625 C 1.511719 -0.160156 1.761719 -0.210938 1.875 -0.296875 C 1.992188 -0.382812 2.050781 -0.5625 2.050781 -0.847656 L 2.050781 -5.199219 C 2.050781 -5.351562 2.03125 -5.464844 1.992188 -5.542969 C 1.957031 -5.621094 1.875 -5.660156 1.75 -5.660156 C 1.667969 -5.660156 1.5625 -5.636719 1.429688 -5.59375 C 1.300781 -5.546875 1.179688 -5.5 1.066406 -5.449219 L 1.066406 -5.582031 L 2.792969 -6.460938 Z M 2.847656 -6.460938 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-23\">\n<path style=\"stroke:none;\" d=\"M 2.304688 -0.175781 C 2.765625 -0.175781 3.082031 -0.425781 3.253906 -0.929688 C 3.425781 -1.433594 3.511719 -2.164062 3.511719 -3.121094 C 3.511719 -3.882812 3.460938 -4.492188 3.355469 -4.945312 C 3.160156 -5.792969 2.796875 -6.214844 2.265625 -6.214844 C 1.734375 -6.214844 1.367188 -5.777344 1.171875 -4.90625 C 1.066406 -4.445312 1.015625 -3.832031 1.015625 -3.074219 C 1.015625 -2.363281 1.070312 -1.792969 1.175781 -1.367188 C 1.375 -0.570312 1.753906 -0.175781 2.304688 -0.175781 Z M 2.289062 -6.46875 C 3.011719 -6.46875 3.570312 -6.089844 3.96875 -5.335938 C 4.285156 -4.726562 4.441406 -4.023438 4.441406 -3.230469 C 4.441406 -2.605469 4.34375 -2.019531 4.152344 -1.464844 C 3.785156 -0.429688 3.148438 0.0898438 2.246094 0.0898438 C 1.628906 0.0898438 1.121094 -0.191406 0.722656 -0.753906 C 0.296875 -1.351562 0.0859375 -2.164062 0.0859375 -3.191406 C 0.0859375 -4 0.226562 -4.695312 0.511719 -5.28125 C 0.898438 -6.074219 1.492188 -6.46875 2.289062 -6.46875 Z M 2.289062 -6.46875 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-24\">\n<path style=\"stroke:none;\" d=\"M 0.1875 -0.132812 C 0.519531 -0.148438 0.738281 -0.210938 0.84375 -0.316406 C 0.949219 -0.425781 1 -0.652344 1 -1 L 1 -4.019531 L 0.199219 -4.019531 L 0.199219 -4.335938 L 1 -4.335938 C 1 -4.832031 1.070312 -5.246094 1.203125 -5.589844 C 1.460938 -6.246094 1.933594 -6.570312 2.617188 -6.570312 C 2.894531 -6.570312 3.140625 -6.515625 3.359375 -6.40625 C 3.578125 -6.296875 3.6875 -6.152344 3.6875 -5.964844 C 3.6875 -5.863281 3.648438 -5.769531 3.574219 -5.6875 C 3.5 -5.605469 3.40625 -5.566406 3.300781 -5.566406 C 3.210938 -5.566406 3.132812 -5.59375 3.066406 -5.648438 C 3 -5.703125 2.921875 -5.800781 2.832031 -5.9375 L 2.75 -6.058594 C 2.707031 -6.125 2.65625 -6.179688 2.59375 -6.226562 C 2.535156 -6.273438 2.453125 -6.292969 2.347656 -6.292969 C 2.109375 -6.292969 1.945312 -6.175781 1.863281 -5.941406 C 1.816406 -5.816406 1.792969 -5.652344 1.792969 -5.449219 L 1.792969 -4.335938 L 2.972656 -4.335938 L 2.972656 -4.019531 L 1.800781 -4.019531 L 1.800781 -1 C 1.800781 -0.648438 1.847656 -0.421875 1.945312 -0.320312 C 2.039062 -0.222656 2.289062 -0.160156 2.695312 -0.132812 L 2.695312 0 L 0.1875 0 Z M 0.1875 -0.132812 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-25\">\n<path style=\"stroke:none;\" d=\"M 0.246094 -2.179688 C 0.246094 -2.804688 0.441406 -3.332031 0.839844 -3.761719 C 1.234375 -4.195312 1.746094 -4.410156 2.371094 -4.410156 C 2.992188 -4.410156 3.503906 -4.207031 3.910156 -3.796875 C 4.320312 -3.390625 4.523438 -2.847656 4.523438 -2.171875 C 4.523438 -1.546875 4.324219 -1.007812 3.929688 -0.546875 C 3.535156 -0.0859375 3.023438 0.144531 2.398438 0.144531 C 1.796875 0.144531 1.285156 -0.0742188 0.871094 -0.515625 C 0.453125 -0.957031 0.246094 -1.515625 0.246094 -2.179688 Z M 2.238281 -4.128906 C 1.992188 -4.128906 1.777344 -4.046875 1.59375 -3.882812 C 1.28125 -3.597656 1.125 -3.105469 1.125 -2.40625 C 1.125 -1.847656 1.25 -1.328125 1.503906 -0.847656 C 1.753906 -0.363281 2.105469 -0.121094 2.550781 -0.121094 C 2.902344 -0.121094 3.175781 -0.285156 3.363281 -0.605469 C 3.554688 -0.929688 3.648438 -1.351562 3.648438 -1.875 C 3.648438 -2.417969 3.527344 -2.929688 3.285156 -3.410156 C 3.042969 -3.886719 2.695312 -4.128906 2.238281 -4.128906 Z M 2.238281 -4.128906 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-26\">\n<path style=\"stroke:none;\" d=\"M 2.28125 -4.441406 C 2.507812 -4.441406 2.71875 -4.390625 2.910156 -4.292969 C 3.035156 -4.226562 3.15625 -4.136719 3.273438 -4.019531 L 3.273438 -5.515625 C 3.273438 -5.707031 3.25 -5.835938 3.207031 -5.910156 C 3.164062 -5.980469 3.066406 -6.015625 2.90625 -6.015625 C 2.867188 -6.015625 2.835938 -6.015625 2.804688 -6.011719 C 2.777344 -6.007812 2.714844 -6.003906 2.617188 -5.992188 L 2.617188 -6.148438 L 3.003906 -6.246094 C 3.144531 -6.285156 3.285156 -6.324219 3.425781 -6.367188 C 3.566406 -6.40625 3.691406 -6.445312 3.796875 -6.484375 C 3.847656 -6.5 3.933594 -6.527344 4.046875 -6.570312 L 4.074219 -6.5625 L 4.066406 -6.070312 C 4.0625 -5.890625 4.058594 -5.707031 4.058594 -5.515625 C 4.054688 -5.328125 4.050781 -5.140625 4.050781 -4.953125 L 4.042969 -1.113281 C 4.042969 -0.910156 4.066406 -0.769531 4.117188 -0.6875 C 4.167969 -0.605469 4.300781 -0.5625 4.519531 -0.5625 C 4.554688 -0.5625 4.585938 -0.566406 4.621094 -0.566406 C 4.65625 -0.566406 4.691406 -0.570312 4.726562 -0.578125 L 4.726562 -0.421875 C 4.707031 -0.417969 4.480469 -0.339844 4.042969 -0.1875 L 3.304688 0.0898438 L 3.273438 0.046875 L 3.273438 -0.53125 C 3.097656 -0.339844 2.945312 -0.203125 2.816406 -0.121094 C 2.585938 0.0195312 2.324219 0.0898438 2.023438 0.0898438 C 1.488281 0.0898438 1.058594 -0.117188 0.726562 -0.527344 C 0.394531 -0.941406 0.230469 -1.417969 0.230469 -1.960938 C 0.230469 -2.640625 0.429688 -3.222656 0.824219 -3.710938 C 1.222656 -4.199219 1.707031 -4.441406 2.28125 -4.441406 Z M 2.453125 -0.417969 C 2.699219 -0.417969 2.894531 -0.492188 3.046875 -0.632812 C 3.195312 -0.777344 3.273438 -0.914062 3.273438 -1.042969 L 3.273438 -3.058594 C 3.273438 -3.46875 3.164062 -3.753906 2.945312 -3.921875 C 2.726562 -4.089844 2.515625 -4.175781 2.308594 -4.175781 C 1.914062 -4.175781 1.605469 -4 1.386719 -3.652344 C 1.167969 -3.300781 1.058594 -2.871094 1.058594 -2.359375 C 1.058594 -1.855469 1.175781 -1.40625 1.40625 -1.011719 C 1.640625 -0.617188 1.988281 -0.417969 2.453125 -0.417969 Z M 2.453125 -0.417969 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph-2022-06-2082207.331243s0-27\">\n<path style=\"stroke:none;\" d=\"M 2.394531 -4.867188 L 3.050781 -4.867188 L 3.050781 -2.757812 L 5.148438 -2.757812 L 5.148438 -2.101562 L 3.050781 -2.101562 L 3.050781 0 L 2.394531 0 L 2.394531 -2.101562 L 0.285156 -2.101562 L 0.285156 -2.757812 L 2.394531 -2.757812 Z M 2.394531 -4.867188 \"/>\n</symbol>\n</g>\n</defs>\n<g id=\"surface73\">\n<path style=\"fill:none;stroke-width:0.842783;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 491.785156 45.132812 C 491.785156 44.933594 491.625 44.773438 491.425781 44.773438 C 491.226562 44.773438 491.066406 44.933594 491.066406 45.132812 C 491.066406 45.332031 491.226562 45.492188 491.425781 45.492188 C 491.625 45.492188 491.785156 45.332031 491.785156 45.132812 Z M 491.785156 45.132812 \"/>\n<path style=\"fill:none;stroke-width:0.842783;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 454.953125 90.269531 L 454.953125 0 L 364.683594 0 L 364.683594 90.269531 Z M 454.953125 90.269531 \"/>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-1\" x=\"380.320045\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-2\" x=\"383.320045\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-3\" x=\"388.320045\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-4\" x=\"391.320045\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-5\" x=\"394.320045\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-6\" x=\"398.320045\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-7\" x=\"401.320045\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-8\" x=\"403.320045\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-9\" x=\"406.320045\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-10\" x=\"410.320045\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-11\" x=\"416.320045\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-5\" x=\"421.320045\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-12\" x=\"425.320045\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-13\" x=\"430.320045\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-14\" x=\"433.320045\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-14\" x=\"436.320045\" y=\"42.72714\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-15\" x=\"380.320045\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-16\" x=\"383.320045\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-12\" x=\"386.320045\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-4\" x=\"391.320045\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-17\" x=\"394.320045\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-7\" x=\"397.320045\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-18\" x=\"399.320045\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-19\" x=\"402.320045\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-7\" x=\"407.320045\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-15\" x=\"409.320045\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-16\" x=\"412.320045\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-12\" x=\"415.320045\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-4\" x=\"420.320045\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-17\" x=\"423.320045\" y=\"52.355069\"/>\n</g>\n<path style=\"fill:none;stroke-width:0.842783;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 328.578125 45.132812 C 328.578125 44.933594 328.417969 44.773438 328.21875 44.773438 C 328.019531 44.773438 327.859375 44.933594 327.859375 45.132812 C 327.859375 45.332031 328.019531 45.492188 328.21875 45.492188 C 328.417969 45.492188 328.578125 45.332031 328.578125 45.132812 Z M 328.578125 45.132812 \"/>\n<path style=\"fill:none;stroke-width:0.842783;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 491.0625 45.132812 L 462.328125 45.132812 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 454.953125 45.132812 L 463.578125 47.9375 L 462.105469 45.132812 L 463.578125 42.328125 Z M 454.953125 45.132812 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 462.105469 45.132812 L 462.328125 45.132812 L 462.328125 45.554688 L 462.105469 45.132812 L 462.328125 45.132812 L 462.328125 44.710938 Z M 462.105469 45.132812 \"/>\n<path style=\"fill:none;stroke-width:0.842783;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 364.6875 45.132812 L 335.953125 45.132812 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 328.578125 45.132812 L 337.203125 47.9375 L 335.730469 45.132812 L 337.203125 42.328125 Z M 328.578125 45.132812 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 335.730469 45.132812 L 335.953125 45.132812 L 335.953125 45.554688 L 335.730469 45.132812 L 335.953125 45.132812 L 335.953125 44.710938 Z M 335.730469 45.132812 \"/>\n<path style=\"fill:none;stroke-width:0.842783;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 327.855469 45.132812 C 327.855469 44.933594 327.695312 44.773438 327.496094 44.773438 C 327.296875 44.773438 327.136719 44.933594 327.136719 45.132812 C 327.136719 45.332031 327.296875 45.492188 327.496094 45.492188 C 327.695312 45.492188 327.855469 45.332031 327.855469 45.132812 Z M 327.855469 45.132812 \"/>\n<path style=\"fill:none;stroke-width:0.842783;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 291.027344 90.269531 L 291.027344 0 L 200.757812 0 L 200.757812 90.269531 Z M 291.027344 90.269531 \"/>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-1\" x=\"222.892027\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-4\" x=\"225.892027\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-20\" x=\"228.892027\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-21\" x=\"232.892027\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-5\" x=\"237.892027\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-7\" x=\"241.892027\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-22\" x=\"243.892027\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-23\" x=\"248.892027\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-13\" x=\"253.892027\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-14\" x=\"256.892027\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-14\" x=\"259.892027\" y=\"42.72714\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-15\" x=\"222.892027\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-16\" x=\"225.892027\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-12\" x=\"228.892027\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-4\" x=\"233.892027\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-17\" x=\"236.892027\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-7\" x=\"239.892027\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-18\" x=\"241.892027\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-19\" x=\"244.892027\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-7\" x=\"249.892027\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-15\" x=\"251.892027\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-16\" x=\"254.892027\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-12\" x=\"257.892027\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-4\" x=\"262.892027\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-17\" x=\"265.892027\" y=\"52.355069\"/>\n</g>\n<path style=\"fill:none;stroke-width:0.842783;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.648438 45.132812 C 164.648438 44.933594 164.488281 44.773438 164.289062 44.773438 C 164.089844 44.773438 163.929688 44.933594 163.929688 45.132812 C 163.929688 45.332031 164.089844 45.492188 164.289062 45.492188 C 164.488281 45.492188 164.648438 45.332031 164.648438 45.132812 Z M 164.648438 45.132812 \"/>\n<path style=\"fill:none;stroke-width:0.842783;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 327.132812 45.132812 L 298.398438 45.132812 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 291.027344 45.132812 L 299.652344 47.9375 L 298.179688 45.132812 L 299.652344 42.328125 Z M 291.027344 45.132812 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 298.179688 45.132812 L 298.402344 45.132812 L 298.402344 45.554688 L 298.179688 45.132812 L 298.402344 45.132812 L 298.402344 44.710938 Z M 298.179688 45.132812 \"/>\n<path style=\"fill:none;stroke-width:0.842783;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.757812 45.132812 L 172.023438 45.132812 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 164.648438 45.132812 L 173.273438 47.9375 L 171.800781 45.132812 L 173.273438 42.328125 Z M 164.648438 45.132812 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 171.804688 45.132812 L 172.027344 45.132812 L 172.027344 45.554688 L 171.804688 45.132812 L 172.027344 45.132812 L 172.027344 44.710938 Z M 171.804688 45.132812 \"/>\n<path style=\"fill:none;stroke-width:0.842783;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.929688 45.132812 C 163.929688 44.933594 163.769531 44.773438 163.570312 44.773438 C 163.371094 44.773438 163.210938 44.933594 163.210938 45.132812 C 163.210938 45.332031 163.371094 45.492188 163.570312 45.492188 C 163.769531 45.492188 163.929688 45.332031 163.929688 45.132812 Z M 163.929688 45.132812 \"/>\n<path style=\"fill:none;stroke-width:0.842783;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.097656 90.269531 L 127.097656 0 L 36.828125 0 L 36.828125 90.269531 Z M 127.097656 90.269531 \"/>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-1\" x=\"57.464009\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-24\" x=\"60.464009\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-25\" x=\"63.464009\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-3\" x=\"68.464009\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-26\" x=\"71.464009\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-6\" x=\"76.464009\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-22\" x=\"79.464009\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-7\" x=\"84.464009\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-1\" x=\"86.464009\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-27\" x=\"89.464009\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-13\" x=\"94.464009\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-13\" x=\"97.464009\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-14\" x=\"100.464009\" y=\"42.72714\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-14\" x=\"103.464009\" y=\"42.72714\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-15\" x=\"57.464009\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-16\" x=\"60.464009\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-12\" x=\"63.464009\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-4\" x=\"68.464009\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-17\" x=\"71.464009\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-7\" x=\"74.464009\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-18\" x=\"76.464009\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-19\" x=\"79.464009\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-7\" x=\"84.464009\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-16\" x=\"86.464009\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-12\" x=\"89.464009\" y=\"52.355069\"/>\n  <use xlink:href=\"#glyph-2022-06-2082207.331243s0-4\" x=\"94.464009\" y=\"52.355069\"/>\n</g>\n<path style=\"fill:none;stroke-width:0.842783;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0.722656 45.132812 C 0.722656 44.933594 0.5625 44.773438 0.363281 44.773438 C 0.164062 44.773438 0.00390625 44.933594 0.00390625 45.132812 C 0.00390625 45.332031 0.164062 45.492188 0.363281 45.492188 C 0.5625 45.492188 0.722656 45.332031 0.722656 45.132812 Z M 0.722656 45.132812 \"/>\n<path style=\"fill:none;stroke-width:0.842783;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.207031 45.132812 L 134.472656 45.132812 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 127.097656 45.132812 L 135.722656 47.9375 L 134.25 45.132812 L 135.722656 42.328125 Z M 127.097656 45.132812 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 134.25 45.132812 L 134.472656 45.132812 L 134.472656 45.554688 L 134.25 45.132812 L 134.472656 45.132812 L 134.472656 44.710938 Z M 134.25 45.132812 \"/>\n<path style=\"fill:none;stroke-width:0.842783;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.828125 45.132812 L 8.09375 45.132812 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 0.722656 45.132812 L 9.347656 47.9375 L 7.875 45.132812 L 9.347656 42.328125 Z M 0.722656 45.132812 \"/>\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 7.875 45.132812 L 8.097656 45.132812 L 8.097656 45.554688 L 7.875 45.132812 L 8.097656 45.132812 L 8.097656 44.710938 Z M 7.875 45.132812 \"/>\n</g>\n</svg>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h2 id=\"Probability-in-a-functional-language\">Probability in a functional language<a class=\"anchor-link\" href=\"#Probability-in-a-functional-language\">&#182;</a></h2>\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[2]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">ImportQualifiedPost</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">FlexibleContexts</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">BlockArguments</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">TupleSections</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">FlexibleContexts</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">OverloadedStrings</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">LambdaCase</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">RankNTypes</span><span class=\"w\"></span>\n<span class=\"cm\">{-# LANGUAGE NoMonomorphismRestriction #-}</span><span class=\"w\"></span>\n<span class=\"cm\">{-# LANGUAGE FlexibleContexts          #-}</span><span class=\"w\"></span>\n<span class=\"cm\">{-# LANGUAGE TypeFamilies              #-}</span><span class=\"w\"></span>\n\n\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Arrow</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">first</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Text</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">pack</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Data.Text</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">T</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Numeric.Log</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Loops</span><span class=\"w\"></span>\n\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Class</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Enumerator</span><span class=\"w\"> </span><span class=\"k\">hiding</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">expectation</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Weighted</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Sampler</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Integrator</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Population</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Density.Free</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Traced.Static</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Inference.SMC</span><span class=\"w\"></span>\n\n\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Diagrams.Prelude</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">D</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Diagrams.Prelude</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V2</span><span class=\"p\">(</span><span class=\"o\">..</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">#</span><span class=\"p\">))</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Diagrams.Backend.Cairo</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">C</span><span class=\"w\"></span>\n\n\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Pipes.Prelude</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">P</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Pipes</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">P</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Pipes</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Producer</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">&gt;-&gt;</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"kt\">MonadTrans</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">lift</span><span class=\"p\">))</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Applicative</span><span class=\"w\"></span>\n\n\n<span class=\"kr\">type</span><span class=\"w\"> </span><span class=\"kt\">Distribution</span><span class=\"w\"> </span><span class=\"n\">a</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">forall</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"n\">a</span><span class=\"w\"></span>\n<span class=\"kr\">type</span><span class=\"w\"> </span><span class=\"kt\">Measure</span><span class=\"w\"> </span><span class=\"n\">a</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">forall</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"kt\">MonadMeasure</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"n\">a</span><span class=\"w\"></span>\n<span class=\"kr\">type</span><span class=\"w\"> </span><span class=\"kt\">Real</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"w\"></span>\n\n<span class=\"kr\">type</span><span class=\"w\"> </span><span class=\"kt\">Diagram</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">D</span><span class=\"o\">.</span><span class=\"kt\">Diagram</span><span class=\"w\"> </span><span class=\"kt\">C</span><span class=\"o\">.</span><span class=\"kt\">B</span><span class=\"w\"></span>\n<span class=\"nf\">displayDiagram</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">diagram</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h2 id=\"An-example-of-a-distribution\">An example of a distribution<a class=\"anchor-link\" href=\"#An-example-of-a-distribution\">&#182;</a></h2>\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[23]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- here is a new function bernoulli, along with a new type Distribution</span><span class=\"w\"></span>\n<span class=\"c1\">-- both are from probabilistic programming library monad-bayes </span><span class=\"w\"></span>\n<span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Distribution</span><span class=\"w\"> </span><span class=\"kt\">Bool</span><span class=\"w\"></span>\n<span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">bernoulli</span><span class=\"w\"> </span><span class=\"mf\">0.7</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[20]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- we can sample from the model using the sampleIO function from monad-bayes</span><span class=\"w\"></span>\n<span class=\"nf\">sampleIO</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">t</span><span class=\"w\"> </span><span class=\"n\">sampleIO</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>False</pre>\n</div>\n\n</div>\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedHTMLCommon jp-RenderedHTML jp-OutputArea-output \" data-mime-type=\"text/html\">\n<style>/* Styles used for the Hoogle display in the pager */\n.hoogle-doc {\ndisplay: block;\npadding-bottom: 1.3em;\npadding-left: 0.4em;\n}\n.hoogle-code {\ndisplay: block;\nfont-family: monospace;\nwhite-space: pre;\n}\n.hoogle-text {\ndisplay: block;\n}\n.hoogle-name {\ncolor: green;\nfont-weight: bold;\n}\n.hoogle-head {\nfont-weight: bold;\n}\n.hoogle-sub {\ndisplay: block;\nmargin-left: 0.4em;\n}\n.hoogle-package {\nfont-weight: bold;\nfont-style: italic;\n}\n.hoogle-module {\nfont-weight: bold;\n}\n.hoogle-class {\nfont-weight: bold;\n}\n.get-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\ndisplay: block;\nwhite-space: pre-wrap;\n}\n.show-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\nmargin-left: 1em;\n}\n.mono {\nfont-family: monospace;\ndisplay: block;\n}\n.err-msg {\ncolor: red;\nfont-style: italic;\nfont-family: monospace;\nwhite-space: pre;\ndisplay: block;\n}\n#unshowable {\ncolor: red;\nfont-weight: bold;\n}\n.err-msg.in.collapse {\npadding-top: 0.7em;\n}\n.highlight-code {\nwhite-space: pre;\nfont-family: monospace;\n}\n.suggestion-warning { \nfont-weight: bold;\ncolor: rgb(200, 130, 0);\n}\n.suggestion-error { \nfont-weight: bold;\ncolor: red;\n}\n.suggestion-name {\nfont-weight: bold;\n}\n</style><span class='get-type'>sampleIO model :: IO Bool</span>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[21]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- we can explore all possible outcomes</span><span class=\"w\"></span>\n<span class=\"nf\">enumerate</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[(True,0.7),(False,0.30000000000000004)]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[22]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- and plot it of course</span><span class=\"w\"></span>\n<span class=\"nf\">plotVega</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">first</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">show</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">enumerate</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"p\">))</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedHTMLCommon jp-RenderedHTML jp-OutputArea-output \" data-mime-type=\"text/html\">\n<style>/* Styles used for the Hoogle display in the pager */\n.hoogle-doc {\ndisplay: block;\npadding-bottom: 1.3em;\npadding-left: 0.4em;\n}\n.hoogle-code {\ndisplay: block;\nfont-family: monospace;\nwhite-space: pre;\n}\n.hoogle-text {\ndisplay: block;\n}\n.hoogle-name {\ncolor: green;\nfont-weight: bold;\n}\n.hoogle-head {\nfont-weight: bold;\n}\n.hoogle-sub {\ndisplay: block;\nmargin-left: 0.4em;\n}\n.hoogle-package {\nfont-weight: bold;\nfont-style: italic;\n}\n.hoogle-module {\nfont-weight: bold;\n}\n.hoogle-class {\nfont-weight: bold;\n}\n.get-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\ndisplay: block;\nwhite-space: pre-wrap;\n}\n.show-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\nmargin-left: 1em;\n}\n.mono {\nfont-family: monospace;\ndisplay: block;\n}\n.err-msg {\ncolor: red;\nfont-style: italic;\nfont-family: monospace;\nwhite-space: pre;\ndisplay: block;\n}\n#unshowable {\ncolor: red;\nfont-weight: bold;\n}\n.err-msg.in.collapse {\npadding-top: 0.7em;\n}\n.highlight-code {\nwhite-space: pre;\nfont-family: monospace;\n}\n.suggestion-warning { \nfont-weight: bold;\ncolor: rgb(200, 130, 0);\n}\n.suggestion-error { \nfont-weight: bold;\ncolor: red;\n}\n.suggestion-name {\nfont-weight: bold;\n}\n</style><div class=\"suggestion-name\" style=\"clear:both;\">Redundant bracket</div><div class=\"suggestion-row\" style=\"float: left;\"><div class=\"suggestion-warning\">Found:</div><div class=\"highlight-code\" id=\"haskell\">first (pack . show) <$> (enumerate model)</div></div><div class=\"suggestion-row\" style=\"float: left;\"><div class=\"suggestion-warning\">Why Not:</div><div class=\"highlight-code\" id=\"haskell\">first (pack . show) <$> enumerate model</div></div>\n</div>\n\n</div>\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[23]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- we can map a function over a distribution (using a variant called fmap)</span><span class=\"w\"></span>\n<span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Distribution</span><span class=\"w\"> </span><span class=\"kt\">Bool</span><span class=\"w\"></span>\n<span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"n\">not</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">bernoulli</span><span class=\"w\"> </span><span class=\"mf\">0.7</span><span class=\"p\">)</span><span class=\"w\"></span>\n\n<span class=\"nf\">plotVega</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">first</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">show</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">enumerate</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"p\">))</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedHTMLCommon jp-RenderedHTML jp-OutputArea-output \" data-mime-type=\"text/html\">\n<style>/* Styles used for the Hoogle display in the pager */\n.hoogle-doc {\ndisplay: block;\npadding-bottom: 1.3em;\npadding-left: 0.4em;\n}\n.hoogle-code {\ndisplay: block;\nfont-family: monospace;\nwhite-space: pre;\n}\n.hoogle-text {\ndisplay: block;\n}\n.hoogle-name {\ncolor: green;\nfont-weight: bold;\n}\n.hoogle-head {\nfont-weight: bold;\n}\n.hoogle-sub {\ndisplay: block;\nmargin-left: 0.4em;\n}\n.hoogle-package {\nfont-weight: bold;\nfont-style: italic;\n}\n.hoogle-module {\nfont-weight: bold;\n}\n.hoogle-class {\nfont-weight: bold;\n}\n.get-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\ndisplay: block;\nwhite-space: pre-wrap;\n}\n.show-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\nmargin-left: 1em;\n}\n.mono {\nfont-family: monospace;\ndisplay: block;\n}\n.err-msg {\ncolor: red;\nfont-style: italic;\nfont-family: monospace;\nwhite-space: pre;\ndisplay: block;\n}\n#unshowable {\ncolor: red;\nfont-weight: bold;\n}\n.err-msg.in.collapse {\npadding-top: 0.7em;\n}\n.highlight-code {\nwhite-space: pre;\nfont-family: monospace;\n}\n.suggestion-warning { \nfont-weight: bold;\ncolor: rgb(200, 130, 0);\n}\n.suggestion-error { \nfont-weight: bold;\ncolor: red;\n}\n.suggestion-name {\nfont-weight: bold;\n}\n</style><div class=\"suggestion-name\" style=\"clear:both;\">Redundant bracket</div><div class=\"suggestion-row\" style=\"float: left;\"><div class=\"suggestion-warning\">Found:</div><div class=\"highlight-code\" id=\"haskell\">first (pack . show) <$> (enumerate model)</div></div><div class=\"suggestion-row\" style=\"float: left;\"><div class=\"suggestion-warning\">Why Not:</div><div class=\"highlight-code\" id=\"haskell\">first (pack . show) <$> enumerate model</div></div>\n</div>\n\n</div>\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[24]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- mapping has non-trivial effects on the distribution if the function is not injective</span><span class=\"w\"></span>\n<span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Distribution</span><span class=\"w\"> </span><span class=\"kt\">Bool</span><span class=\"w\"></span>\n<span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">const</span><span class=\"w\"> </span><span class=\"kt\">True</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">bernoulli</span><span class=\"w\"> </span><span class=\"mf\">0.7</span><span class=\"p\">)</span><span class=\"w\"></span>\n\n<span class=\"nf\">plotVega</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">first</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">show</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">enumerate</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"p\">))</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedHTMLCommon jp-RenderedHTML jp-OutputArea-output \" data-mime-type=\"text/html\">\n<style>/* Styles used for the Hoogle display in the pager */\n.hoogle-doc {\ndisplay: block;\npadding-bottom: 1.3em;\npadding-left: 0.4em;\n}\n.hoogle-code {\ndisplay: block;\nfont-family: monospace;\nwhite-space: pre;\n}\n.hoogle-text {\ndisplay: block;\n}\n.hoogle-name {\ncolor: green;\nfont-weight: bold;\n}\n.hoogle-head {\nfont-weight: bold;\n}\n.hoogle-sub {\ndisplay: block;\nmargin-left: 0.4em;\n}\n.hoogle-package {\nfont-weight: bold;\nfont-style: italic;\n}\n.hoogle-module {\nfont-weight: bold;\n}\n.hoogle-class {\nfont-weight: bold;\n}\n.get-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\ndisplay: block;\nwhite-space: pre-wrap;\n}\n.show-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\nmargin-left: 1em;\n}\n.mono {\nfont-family: monospace;\ndisplay: block;\n}\n.err-msg {\ncolor: red;\nfont-style: italic;\nfont-family: monospace;\nwhite-space: pre;\ndisplay: block;\n}\n#unshowable {\ncolor: red;\nfont-weight: bold;\n}\n.err-msg.in.collapse {\npadding-top: 0.7em;\n}\n.highlight-code {\nwhite-space: pre;\nfont-family: monospace;\n}\n.suggestion-warning { \nfont-weight: bold;\ncolor: rgb(200, 130, 0);\n}\n.suggestion-error { \nfont-weight: bold;\ncolor: red;\n}\n.suggestion-name {\nfont-weight: bold;\n}\n</style><div class=\"suggestion-name\" style=\"clear:both;\">Redundant bracket</div><div class=\"suggestion-row\" style=\"float: left;\"><div class=\"suggestion-warning\">Found:</div><div class=\"highlight-code\" id=\"haskell\">first (pack . show) <$> (enumerate model)</div></div><div class=\"suggestion-row\" style=\"float: left;\"><div class=\"suggestion-warning\">Why Not:</div><div class=\"highlight-code\" id=\"haskell\">first (pack . show) <$> enumerate model</div></div>\n</div>\n\n</div>\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[25]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- in fact, we can construct many distributions as functions of the uniform distribution</span><span class=\"w\"></span>\n<span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Distribution</span><span class=\"w\"> </span><span class=\"kt\">Bool</span><span class=\"w\"></span>\n<span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">&lt;</span><span class=\"w\"> </span><span class=\"mf\">0.7</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">random</span><span class=\"w\"></span>\n\n<span class=\"nf\">sampleIO</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>True</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[26]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Distribution</span><span class=\"w\"> </span><span class=\"kt\">Real</span><span class=\"w\"></span>\n<span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[27]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">sampleIO</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>0.575028314963377</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[28]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">expectation</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>2.3140142600862594e-18</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[29]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">plotVega</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">histogram</span><span class=\"w\"> </span><span class=\"mi\">1000</span><span class=\"w\"> </span><span class=\"mf\">0.01</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[30]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">sampleIO</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">runWith</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"mf\">0.2</span><span class=\"p\">]</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>(-0.8416212335729143,[0.2])</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[31]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">sampleIO</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">prior</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">mh</span><span class=\"w\"> </span><span class=\"mi\">10</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedHTMLCommon jp-RenderedHTML jp-OutputArea-output \" data-mime-type=\"text/html\">\n<style>/* Styles used for the Hoogle display in the pager */\n.hoogle-doc {\ndisplay: block;\npadding-bottom: 1.3em;\npadding-left: 0.4em;\n}\n.hoogle-code {\ndisplay: block;\nfont-family: monospace;\nwhite-space: pre;\n}\n.hoogle-text {\ndisplay: block;\n}\n.hoogle-name {\ncolor: green;\nfont-weight: bold;\n}\n.hoogle-head {\nfont-weight: bold;\n}\n.hoogle-sub {\ndisplay: block;\nmargin-left: 0.4em;\n}\n.hoogle-package {\nfont-weight: bold;\nfont-style: italic;\n}\n.hoogle-module {\nfont-weight: bold;\n}\n.hoogle-class {\nfont-weight: bold;\n}\n.get-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\ndisplay: block;\nwhite-space: pre-wrap;\n}\n.show-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\nmargin-left: 1em;\n}\n.mono {\nfont-family: monospace;\ndisplay: block;\n}\n.err-msg {\ncolor: red;\nfont-style: italic;\nfont-family: monospace;\nwhite-space: pre;\ndisplay: block;\n}\n#unshowable {\ncolor: red;\nfont-weight: bold;\n}\n.err-msg.in.collapse {\npadding-top: 0.7em;\n}\n.highlight-code {\nwhite-space: pre;\nfont-family: monospace;\n}\n.suggestion-warning { \nfont-weight: bold;\ncolor: rgb(200, 130, 0);\n}\n.suggestion-error { \nfont-weight: bold;\ncolor: red;\n}\n.suggestion-name {\nfont-weight: bold;\n}\n</style><div class=\"suggestion-name\" style=\"clear:both;\">Redundant $</div><div class=\"suggestion-row\" style=\"float: left;\"><div class=\"suggestion-warning\">Found:</div><div class=\"highlight-code\" id=\"haskell\">mh 10 $ model</div></div><div class=\"suggestion-row\" style=\"float: left;\"><div class=\"suggestion-warning\">Why Not:</div><div class=\"highlight-code\" id=\"haskell\">mh 10 model</div></div>\n</div>\n\n</div>\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[-2.0085940235888478,-6.697695689073753e-2,4.840119410529751e-2,0.29846792719513393,3.702378712275772e-2,-0.6387938012141859,-0.6357890332968017,-1.5040017530000065,0.7706396345502186,0.37887755061806694,0.5113217567538375]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[32]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- we can hand the result of one distribution to a Markov kernel, and thus construct more complex distributions</span><span class=\"w\"></span>\n<span class=\"c1\">-- distributions as programs, hence: probabilistic programming</span><span class=\"w\"></span>\n<span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Distribution</span><span class=\"w\"> </span><span class=\"kt\">Real</span><span class=\"w\"></span>\n<span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">c</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">bernoulli</span><span class=\"w\"> </span><span class=\"mf\">0.2</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"kr\">if</span><span class=\"w\"> </span><span class=\"n\">c</span><span class=\"w\"> </span><span class=\"kr\">then</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">10</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"> </span><span class=\"kr\">else</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">-</span><span class=\"mi\">5</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"mi\">5</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>View this as an abstract description of a distribution. It is composed from simpler distributions, and can itself be a piece in larger distributions.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[33]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">sampleIO</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>-5.9899054414630175</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[34]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">expectation</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>-1.999999999999914</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[35]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">plotVega</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">histogram</span><span class=\"w\"> </span><span class=\"mi\">250</span><span class=\"w\"> </span><span class=\"mf\">0.2</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[42]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- distributions need not be normalized</span><span class=\"w\"></span>\n<span class=\"nf\">model2</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Measure</span><span class=\"w\"> </span><span class=\"kt\">Real</span><span class=\"w\"></span>\n<span class=\"nf\">model2</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">c</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">bernoulli</span><span class=\"w\"> </span><span class=\"mf\">0.2</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"kr\">if</span><span class=\"w\"> </span><span class=\"n\">c</span><span class=\"w\"> </span><span class=\"kr\">then</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">10</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"> </span><span class=\"kr\">else</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">-</span><span class=\"mi\">5</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"mi\">5</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">condition</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"o\">&gt;</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"></span>\n\n<span class=\"nf\">plotVega</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">histogram</span><span class=\"w\"> </span><span class=\"mi\">250</span><span class=\"w\"> </span><span class=\"mf\">0.2</span><span class=\"w\"> </span><span class=\"n\">model2</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[37]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- in fact, we can add arbitrary factors to the &quot;graph&quot;</span><span class=\"w\"></span>\n<span class=\"nf\">model3</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Measure</span><span class=\"w\"> </span><span class=\"kt\">Real</span><span class=\"w\"></span>\n<span class=\"nf\">model3</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n\n<span class=\"w\">    </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"mi\">10</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">factor</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">Exp</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">cos</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"></span>\n\n<span class=\"nf\">plotVega</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">histogram</span><span class=\"w\"> </span><span class=\"mi\">800</span><span class=\"w\"> </span><span class=\"mf\">0.1</span><span class=\"w\"> </span><span class=\"n\">model3</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Making-use-of-laziness\">Making use of laziness<a class=\"anchor-link\" href=\"#Making-use-of-laziness\">&#182;</a></h1><p>We can use laziness to specify distributions over infinite lists (and other infinite structures) which we subsequently marginalize to finite distributions, but only as a final step.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[43]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Sampler.Lazy</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">L</span><span class=\"w\"></span>\n\n<span class=\"c1\">-- all the elements of the support are infinite lists. Yikes!</span><span class=\"w\"></span>\n<span class=\"nf\">infiniteListDistribution</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Distribution</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Real</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">infiniteListDistribution</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">random</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"kt\">:</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">infiniteListDistribution</span><span class=\"w\"></span>\n\n<span class=\"c1\">-- x is an infinite list, drawn at random!</span><span class=\"w\"></span>\n<span class=\"nf\">infiniteList</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"kt\">L</span><span class=\"o\">.</span><span class=\"n\">sample</span><span class=\"w\"> </span><span class=\"n\">infiniteListDistribution</span><span class=\"w\"></span>\n<span class=\"c1\">-- take the first four elements</span><span class=\"w\"></span>\n<span class=\"nf\">take</span><span class=\"w\"> </span><span class=\"mi\">4</span><span class=\"w\"> </span><span class=\"n\">infiniteList</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[0.45183909465222627,0.8074186434579311,0.730350161885299,6.352777832006962e-2]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[39]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- or use fmap to directly obtain a distribution over finite lists </span><span class=\"w\"></span>\n<span class=\"nf\">finiteListDistribution</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Distribution</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Real</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">finiteListDistribution</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">take</span><span class=\"w\"> </span><span class=\"mi\">4</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">infiniteListDistribution</span><span class=\"w\"></span>\n\n<span class=\"kt\">L</span><span class=\"o\">.</span><span class=\"n\">sample</span><span class=\"w\"> </span><span class=\"n\">finiteListDistribution</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[0.9182056070270405,4.200877821885529e-2,0.9633448686258755,0.6540031820992496]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[46]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">interestingInfiniteListDistribution</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">i1</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">infiniteListDistribution</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">i2</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">infiniteListDistribution</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">zipWith</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">+</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">i1</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">tail</span><span class=\"w\"> </span><span class=\"n\">i2</span><span class=\"p\">))</span><span class=\"w\"></span>\n\n\n<span class=\"kt\">L</span><span class=\"o\">.</span><span class=\"n\">sample</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">take</span><span class=\"w\"> </span><span class=\"mi\">4</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">interestingInfiniteListDistribution</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[1.4690753397188483,1.2841891533542422,0.48988832547910144,0.8318796414908216]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[41]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- kernel :: MonadDistribution m =&gt; V2 Real -&gt; Distribution (V2 Real)</span><span class=\"w\"></span>\n<span class=\"nf\">kernel</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V2</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">newX</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"mf\">0.01</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">newY</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"mf\">0.01</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V2</span><span class=\"w\"> </span><span class=\"n\">newX</span><span class=\"w\"> </span><span class=\"n\">newY</span><span class=\"p\">)</span><span class=\"w\"></span>\n\n<span class=\"nf\">randomWalk</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Distribution</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">V2</span><span class=\"w\"> </span><span class=\"kt\">Real</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">randomWalk</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">unfoldrM</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Just</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"n\">x</span><span class=\"p\">)))</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">kernel</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"></span>\n\n\n<span class=\"nf\">x</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"kt\">L</span><span class=\"o\">.</span><span class=\"n\">sample</span><span class=\"w\"> </span><span class=\"n\">randomWalk</span><span class=\"w\"></span>\n\n<span class=\"nf\">take</span><span class=\"w\"> </span><span class=\"mi\">4</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[V2 (-2.8460842765943954e-3) (-1.5754468441311727e-2),V2 9.91502562264479e-3 (-2.6894296308489257e-2),V2 1.6882001536142836e-2 (-2.4855887415329417e-2),V2 5.0496205366172674e-3 (-1.5198674955383825e-2)]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Manipulating-randomWalk\">Manipulating <code>randomWalk</code><a class=\"anchor-link\" href=\"#Manipulating-randomWalk\">&#182;</a></h1><p>Given any function on lists of 2D vectors, we can use that function to transform <code>randomWalk</code>. As a neat example, let's introduce the type <code>Diagram</code> of diagrams, which are renderable and composable images:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[50]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">circ</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">D</span><span class=\"o\">.</span><span class=\"n\">circle</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"> </span><span class=\"o\">#</span><span class=\"w\"> </span><span class=\"kt\">D</span><span class=\"o\">.</span><span class=\"n\">frame</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Diagram</span><span class=\"w\"> </span>\n<span class=\"nf\">displayDiagram</span><span class=\"w\"> </span><span class=\"n\">circ</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedSVG jp-OutputArea-output \" data-mime-type=\"image/svg+xml\">\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"353.553391pt\" height=\"353.553391pt\" viewBox=\"0 0 353.553391 353.553391\" version=\"1.1\">\n<g id=\"surface8\">\n<path style=\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.164062 176.777344 C 265.164062 127.960938 225.589844 88.390625 176.777344 88.390625 C 127.960938 88.390625 88.390625 127.964844 88.390625 176.777344 C 88.390625 225.59375 127.964844 265.164062 176.777344 265.164062 C 225.59375 265.164062 265.164062 225.589844 265.164062 176.777344 Z M 265.164062 176.777344 \"/>\n</g>\n</svg>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[52]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">diagram</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">circ</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">circ</span><span class=\"w\"> </span><span class=\"o\">#</span><span class=\"w\"> </span><span class=\"kt\">D</span><span class=\"o\">.</span><span class=\"n\">translateX</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedSVG jp-OutputArea-output \" data-mime-type=\"image/svg+xml\">\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"390.434405pt\" height=\"312.347524pt\" viewBox=\"0 0 390.434405 312.347524\" version=\"1.1\">\n<g id=\"surface14\">\n<path style=\"fill:none;stroke-width:1.396861;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 312.347656 156.171875 C 312.347656 113.046875 277.386719 78.085938 234.261719 78.085938 C 191.136719 78.085938 156.175781 113.046875 156.175781 156.171875 C 156.175781 199.296875 191.136719 234.257812 234.261719 234.257812 C 277.386719 234.257812 312.347656 199.296875 312.347656 156.171875 Z M 312.347656 156.171875 \"/>\n<path style=\"fill:none;stroke-width:1.396861;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.261719 156.171875 C 234.261719 113.046875 199.300781 78.085938 156.175781 78.085938 C 113.050781 78.085938 78.089844 113.046875 78.089844 156.171875 C 78.089844 199.296875 113.050781 234.257812 156.175781 234.257812 C 199.300781 234.257812 234.261719 199.296875 234.261719 156.171875 Z M 234.261719 156.171875 \"/>\n</g>\n</svg>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"A-distribution-over-diagrams\">A distribution over diagrams<a class=\"anchor-link\" href=\"#A-distribution-over-diagrams\">&#182;</a></h1>\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[59]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">simpleDiagramDistribution</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Distribution</span><span class=\"w\"> </span><span class=\"kt\">Diagram</span><span class=\"w\"></span>\n<span class=\"nf\">simpleDiagramDistribution</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">uniformD</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">D</span><span class=\"o\">.</span><span class=\"n\">circle</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">D</span><span class=\"o\">.</span><span class=\"n\">rect</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">]</span><span class=\"w\"></span>\n\n<span class=\"nf\">x</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIO</span><span class=\"w\"> </span><span class=\"n\">simpleDiagramDistribution</span><span class=\"w\"></span>\n<span class=\"nf\">displayDiagram</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedSVG jp-OutputArea-output \" data-mime-type=\"image/svg+xml\">\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"353.553391pt\" height=\"353.553391pt\" viewBox=\"0 0 353.553391 353.553391\" version=\"1.1\">\n<g id=\"surface56\">\n<path style=\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 353.554688 353.554688 L 353.554688 0 L 0 0 L 0 353.554688 Z M 353.554688 353.554688 \"/>\n</g>\n</svg>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Transforming-randomWalk-into-a-distribution-over-diagrams\">Transforming <code>randomWalk</code> into a distribution over diagrams<a class=\"anchor-link\" href=\"#Transforming-randomWalk-into-a-distribution-over-diagrams\">&#182;</a></h1><p>We can now create a more interesting distribution over diagrams, by transforming <code>randomWalk</code></p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[19]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">convertPointToDiagram</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">V2</span><span class=\"w\"> </span><span class=\"kt\">Real</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kt\">Diagram</span><span class=\"w\"></span>\n<span class=\"nf\">convertPointToDiagram</span><span class=\"w\"> </span><span class=\"n\">point</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">D</span><span class=\"o\">.</span><span class=\"n\">circle</span><span class=\"w\"> </span><span class=\"mf\">0.001</span><span class=\"w\"> </span><span class=\"o\">#</span><span class=\"w\"> </span><span class=\"kt\">D</span><span class=\"o\">.</span><span class=\"n\">translate</span><span class=\"w\"> </span><span class=\"n\">point</span><span class=\"w\"></span>\n\n<span class=\"nf\">convertListofNPointsToDiagram</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Int</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">V2</span><span class=\"w\"> </span><span class=\"kt\">Real</span><span class=\"p\">]</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kt\">Diagram</span><span class=\"w\"></span>\n<span class=\"nf\">convertListofNPointsToDiagram</span><span class=\"w\"> </span><span class=\"n\">n</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">mconcat</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">take</span><span class=\"w\"> </span><span class=\"n\">n</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"n\">convertPointToDiagram</span><span class=\"w\"></span>\n\n<span class=\"nf\">diagramList</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Distribution</span><span class=\"w\"> </span><span class=\"kt\">Diagram</span><span class=\"w\"></span>\n<span class=\"nf\">diagramList</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">convertListofNPointsToDiagram</span><span class=\"w\"> </span><span class=\"mi\">10000</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">randomWalk</span><span class=\"w\"></span>\n\n<span class=\"nf\">d</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"kt\">L</span><span class=\"o\">.</span><span class=\"n\">sample</span><span class=\"w\"> </span><span class=\"n\">diagramList</span><span class=\"w\"></span>\n<span class=\"nf\">displayDiagram</span><span class=\"w\"> </span><span class=\"n\">d</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedSVG jp-OutputArea-output \" data-mime-type=\"image/svg+xml\">\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"311.205782pt\" height=\"391.345067pt\" viewBox=\"0 0 311.205782 391.345067\" version=\"1.1\">\n<g id=\"surface20\">\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.804688 31.351562 C 259.804688 31.234375 259.710938 31.140625 259.59375 31.140625 C 259.476562 31.140625 259.382812 31.234375 259.382812 31.351562 C 259.382812 31.46875 259.476562 31.5625 259.59375 31.5625 C 259.710938 31.5625 259.804688 31.46875 259.804688 31.351562 Z M 259.804688 31.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.304688 31.035156 C 261.304688 30.917969 261.210938 30.824219 261.09375 30.824219 C 260.976562 30.824219 260.882812 30.917969 260.882812 31.035156 C 260.882812 31.152344 260.976562 31.246094 261.09375 31.246094 C 261.210938 31.246094 261.304688 31.152344 261.304688 31.035156 Z M 261.304688 31.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.71875 33.960938 C 257.71875 33.84375 257.625 33.75 257.507812 33.75 C 257.390625 33.75 257.296875 33.84375 257.296875 33.960938 C 257.296875 34.078125 257.390625 34.171875 257.507812 34.171875 C 257.625 34.171875 257.71875 34.078125 257.71875 33.960938 Z M 257.71875 33.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.734375 33.109375 C 260.734375 32.992188 260.640625 32.898438 260.523438 32.898438 C 260.40625 32.898438 260.3125 32.992188 260.3125 33.109375 C 260.3125 33.226562 260.40625 33.320312 260.523438 33.320312 C 260.640625 33.320312 260.734375 33.226562 260.734375 33.109375 Z M 260.734375 33.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.828125 35.324219 C 258.828125 35.207031 258.734375 35.113281 258.617188 35.113281 C 258.5 35.113281 258.40625 35.207031 258.40625 35.324219 C 258.40625 35.441406 258.5 35.535156 258.617188 35.535156 C 258.734375 35.535156 258.828125 35.441406 258.828125 35.324219 Z M 258.828125 35.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.28125 34.945312 C 257.28125 34.828125 257.1875 34.734375 257.070312 34.734375 C 256.953125 34.734375 256.859375 34.828125 256.859375 34.945312 C 256.859375 35.0625 256.953125 35.15625 257.070312 35.15625 C 257.1875 35.15625 257.28125 35.0625 257.28125 34.945312 Z M 257.28125 34.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.214844 37.378906 C 257.214844 37.261719 257.121094 37.167969 257.003906 37.167969 C 256.886719 37.167969 256.792969 37.261719 256.792969 37.378906 C 256.792969 37.496094 256.886719 37.589844 257.003906 37.589844 C 257.121094 37.589844 257.214844 37.496094 257.214844 37.378906 Z M 257.214844 37.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.03125 36.394531 C 261.03125 36.277344 260.9375 36.183594 260.820312 36.183594 C 260.703125 36.183594 260.609375 36.277344 260.609375 36.394531 C 260.609375 36.511719 260.703125 36.605469 260.820312 36.605469 C 260.9375 36.605469 261.03125 36.511719 261.03125 36.394531 Z M 261.03125 36.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.382812 38.996094 C 262.382812 38.878906 262.289062 38.785156 262.171875 38.785156 C 262.054688 38.785156 261.960938 38.878906 261.960938 38.996094 C 261.960938 39.113281 262.054688 39.207031 262.171875 39.207031 C 262.289062 39.207031 262.382812 39.113281 262.382812 38.996094 Z M 262.382812 38.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.019531 39.085938 C 263.019531 38.96875 262.925781 38.875 262.808594 38.875 C 262.691406 38.875 262.597656 38.96875 262.597656 39.085938 C 262.597656 39.203125 262.691406 39.296875 262.808594 39.296875 C 262.925781 39.296875 263.019531 39.203125 263.019531 39.085938 Z M 263.019531 39.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.085938 36.898438 C 263.085938 36.78125 262.992188 36.6875 262.875 36.6875 C 262.757812 36.6875 262.664062 36.78125 262.664062 36.898438 C 262.664062 37.015625 262.757812 37.109375 262.875 37.109375 C 262.992188 37.109375 263.085938 37.015625 263.085938 36.898438 Z M 263.085938 36.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.578125 34.585938 C 264.578125 34.46875 264.484375 34.375 264.367188 34.375 C 264.25 34.375 264.15625 34.46875 264.15625 34.585938 C 264.15625 34.703125 264.25 34.796875 264.367188 34.796875 C 264.484375 34.796875 264.578125 34.703125 264.578125 34.585938 Z M 264.578125 34.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.492188 36.09375 C 263.492188 35.976562 263.398438 35.882812 263.28125 35.882812 C 263.164062 35.882812 263.070312 35.976562 263.070312 36.09375 C 263.070312 36.210938 263.164062 36.304688 263.28125 36.304688 C 263.398438 36.304688 263.492188 36.210938 263.492188 36.09375 Z M 263.492188 36.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.753906 38.867188 C 264.753906 38.75 264.660156 38.65625 264.542969 38.65625 C 264.425781 38.65625 264.332031 38.75 264.332031 38.867188 C 264.332031 38.984375 264.425781 39.078125 264.542969 39.078125 C 264.660156 39.078125 264.753906 38.984375 264.753906 38.867188 Z M 264.753906 38.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.675781 38.625 C 265.675781 38.507812 265.582031 38.414062 265.464844 38.414062 C 265.347656 38.414062 265.253906 38.507812 265.253906 38.625 C 265.253906 38.742188 265.347656 38.835938 265.464844 38.835938 C 265.582031 38.835938 265.675781 38.742188 265.675781 38.625 Z M 265.675781 38.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.675781 35.371094 C 266.675781 35.253906 266.582031 35.160156 266.464844 35.160156 C 266.347656 35.160156 266.253906 35.253906 266.253906 35.371094 C 266.253906 35.488281 266.347656 35.582031 266.464844 35.582031 C 266.582031 35.582031 266.675781 35.488281 266.675781 35.371094 Z M 266.675781 35.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.339844 36.207031 C 266.339844 36.089844 266.246094 35.996094 266.128906 35.996094 C 266.011719 35.996094 265.917969 36.089844 265.917969 36.207031 C 265.917969 36.324219 266.011719 36.417969 266.128906 36.417969 C 266.246094 36.417969 266.339844 36.324219 266.339844 36.207031 Z M 266.339844 36.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.992188 36.378906 C 265.992188 36.261719 265.898438 36.167969 265.78125 36.167969 C 265.664062 36.167969 265.570312 36.261719 265.570312 36.378906 C 265.570312 36.496094 265.664062 36.589844 265.78125 36.589844 C 265.898438 36.589844 265.992188 36.496094 265.992188 36.378906 Z M 265.992188 36.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.535156 33.476562 C 262.535156 33.359375 262.441406 33.265625 262.324219 33.265625 C 262.207031 33.265625 262.113281 33.359375 262.113281 33.476562 C 262.113281 33.59375 262.207031 33.6875 262.324219 33.6875 C 262.441406 33.6875 262.535156 33.59375 262.535156 33.476562 Z M 262.535156 33.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.957031 31.664062 C 258.957031 31.546875 258.863281 31.453125 258.746094 31.453125 C 258.628906 31.453125 258.535156 31.546875 258.535156 31.664062 C 258.535156 31.78125 258.628906 31.875 258.746094 31.875 C 258.863281 31.875 258.957031 31.78125 258.957031 31.664062 Z M 258.957031 31.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.082031 28.664062 C 260.082031 28.546875 259.988281 28.453125 259.871094 28.453125 C 259.753906 28.453125 259.660156 28.546875 259.660156 28.664062 C 259.660156 28.78125 259.753906 28.875 259.871094 28.875 C 259.988281 28.875 260.082031 28.78125 260.082031 28.664062 Z M 260.082031 28.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.96875 30.589844 C 259.96875 30.472656 259.875 30.378906 259.757812 30.378906 C 259.640625 30.378906 259.546875 30.472656 259.546875 30.589844 C 259.546875 30.707031 259.640625 30.800781 259.757812 30.800781 C 259.875 30.800781 259.96875 30.707031 259.96875 30.589844 Z M 259.96875 30.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.40625 33.964844 C 260.40625 33.847656 260.3125 33.753906 260.195312 33.753906 C 260.078125 33.753906 259.984375 33.847656 259.984375 33.964844 C 259.984375 34.082031 260.078125 34.175781 260.195312 34.175781 C 260.3125 34.175781 260.40625 34.082031 260.40625 33.964844 Z M 260.40625 33.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.324219 31.433594 C 260.324219 31.316406 260.230469 31.222656 260.113281 31.222656 C 259.996094 31.222656 259.902344 31.316406 259.902344 31.433594 C 259.902344 31.550781 259.996094 31.644531 260.113281 31.644531 C 260.230469 31.644531 260.324219 31.550781 260.324219 31.433594 Z M 260.324219 31.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.460938 33.121094 C 258.460938 33.003906 258.367188 32.910156 258.25 32.910156 C 258.132812 32.910156 258.039062 33.003906 258.039062 33.121094 C 258.039062 33.238281 258.132812 33.332031 258.25 33.332031 C 258.367188 33.332031 258.460938 33.238281 258.460938 33.121094 Z M 258.460938 33.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.226562 32.597656 C 260.226562 32.480469 260.132812 32.386719 260.015625 32.386719 C 259.898438 32.386719 259.804688 32.480469 259.804688 32.597656 C 259.804688 32.714844 259.898438 32.808594 260.015625 32.808594 C 260.132812 32.808594 260.226562 32.714844 260.226562 32.597656 Z M 260.226562 32.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.582031 31.382812 C 262.582031 31.265625 262.488281 31.171875 262.371094 31.171875 C 262.253906 31.171875 262.160156 31.265625 262.160156 31.382812 C 262.160156 31.5 262.253906 31.59375 262.371094 31.59375 C 262.488281 31.59375 262.582031 31.5 262.582031 31.382812 Z M 262.582031 31.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.460938 31.476562 C 260.460938 31.359375 260.367188 31.265625 260.25 31.265625 C 260.132812 31.265625 260.039062 31.359375 260.039062 31.476562 C 260.039062 31.59375 260.132812 31.6875 260.25 31.6875 C 260.367188 31.6875 260.460938 31.59375 260.460938 31.476562 Z M 260.460938 31.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.632812 32.160156 C 261.632812 32.042969 261.539062 31.949219 261.421875 31.949219 C 261.304688 31.949219 261.210938 32.042969 261.210938 32.160156 C 261.210938 32.277344 261.304688 32.371094 261.421875 32.371094 C 261.539062 32.371094 261.632812 32.277344 261.632812 32.160156 Z M 261.632812 32.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.816406 30.652344 C 259.816406 30.535156 259.722656 30.441406 259.605469 30.441406 C 259.488281 30.441406 259.394531 30.535156 259.394531 30.652344 C 259.394531 30.769531 259.488281 30.863281 259.605469 30.863281 C 259.722656 30.863281 259.816406 30.769531 259.816406 30.652344 Z M 259.816406 30.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.164062 31.378906 C 260.164062 31.261719 260.070312 31.167969 259.953125 31.167969 C 259.835938 31.167969 259.742188 31.261719 259.742188 31.378906 C 259.742188 31.496094 259.835938 31.589844 259.953125 31.589844 C 260.070312 31.589844 260.164062 31.496094 260.164062 31.378906 Z M 260.164062 31.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.328125 30.5625 C 261.328125 30.445312 261.234375 30.351562 261.117188 30.351562 C 261 30.351562 260.90625 30.445312 260.90625 30.5625 C 260.90625 30.679688 261 30.773438 261.117188 30.773438 C 261.234375 30.773438 261.328125 30.679688 261.328125 30.5625 Z M 261.328125 30.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.523438 30.054688 C 258.523438 29.9375 258.429688 29.84375 258.3125 29.84375 C 258.195312 29.84375 258.101562 29.9375 258.101562 30.054688 C 258.101562 30.171875 258.195312 30.265625 258.3125 30.265625 C 258.429688 30.265625 258.523438 30.171875 258.523438 30.054688 Z M 258.523438 30.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.441406 30.371094 C 262.441406 30.253906 262.347656 30.160156 262.230469 30.160156 C 262.113281 30.160156 262.019531 30.253906 262.019531 30.371094 C 262.019531 30.488281 262.113281 30.582031 262.230469 30.582031 C 262.347656 30.582031 262.441406 30.488281 262.441406 30.371094 Z M 262.441406 30.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.3125 30.722656 C 262.3125 30.605469 262.21875 30.511719 262.101562 30.511719 C 261.984375 30.511719 261.890625 30.605469 261.890625 30.722656 C 261.890625 30.839844 261.984375 30.933594 262.101562 30.933594 C 262.21875 30.933594 262.3125 30.839844 262.3125 30.722656 Z M 262.3125 30.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.71875 29.605469 C 260.71875 29.488281 260.625 29.394531 260.507812 29.394531 C 260.390625 29.394531 260.296875 29.488281 260.296875 29.605469 C 260.296875 29.722656 260.390625 29.816406 260.507812 29.816406 C 260.625 29.816406 260.71875 29.722656 260.71875 29.605469 Z M 260.71875 29.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.429688 29.234375 C 256.429688 29.117188 256.335938 29.023438 256.21875 29.023438 C 256.101562 29.023438 256.007812 29.117188 256.007812 29.234375 C 256.007812 29.351562 256.101562 29.445312 256.21875 29.445312 C 256.335938 29.445312 256.429688 29.351562 256.429688 29.234375 Z M 256.429688 29.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.558594 27.222656 C 257.558594 27.105469 257.464844 27.011719 257.347656 27.011719 C 257.230469 27.011719 257.136719 27.105469 257.136719 27.222656 C 257.136719 27.339844 257.230469 27.433594 257.347656 27.433594 C 257.464844 27.433594 257.558594 27.339844 257.558594 27.222656 Z M 257.558594 27.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.621094 26.265625 C 256.621094 26.148438 256.527344 26.054688 256.410156 26.054688 C 256.292969 26.054688 256.199219 26.148438 256.199219 26.265625 C 256.199219 26.382812 256.292969 26.476562 256.410156 26.476562 C 256.527344 26.476562 256.621094 26.382812 256.621094 26.265625 Z M 256.621094 26.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.730469 26 C 257.730469 25.882812 257.636719 25.789062 257.519531 25.789062 C 257.402344 25.789062 257.308594 25.882812 257.308594 26 C 257.308594 26.117188 257.402344 26.210938 257.519531 26.210938 C 257.636719 26.210938 257.730469 26.117188 257.730469 26 Z M 257.730469 26 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.089844 25.566406 C 255.089844 25.449219 254.996094 25.355469 254.878906 25.355469 C 254.761719 25.355469 254.667969 25.449219 254.667969 25.566406 C 254.667969 25.683594 254.761719 25.777344 254.878906 25.777344 C 254.996094 25.777344 255.089844 25.683594 255.089844 25.566406 Z M 255.089844 25.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.707031 25.527344 C 254.707031 25.410156 254.613281 25.316406 254.496094 25.316406 C 254.378906 25.316406 254.285156 25.410156 254.285156 25.527344 C 254.285156 25.644531 254.378906 25.738281 254.496094 25.738281 C 254.613281 25.738281 254.707031 25.644531 254.707031 25.527344 Z M 254.707031 25.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.03125 25.390625 C 255.03125 25.273438 254.9375 25.179688 254.820312 25.179688 C 254.703125 25.179688 254.609375 25.273438 254.609375 25.390625 C 254.609375 25.507812 254.703125 25.601562 254.820312 25.601562 C 254.9375 25.601562 255.03125 25.507812 255.03125 25.390625 Z M 255.03125 25.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.851562 27.566406 C 252.851562 27.449219 252.757812 27.355469 252.640625 27.355469 C 252.523438 27.355469 252.429688 27.449219 252.429688 27.566406 C 252.429688 27.683594 252.523438 27.777344 252.640625 27.777344 C 252.757812 27.777344 252.851562 27.683594 252.851562 27.566406 Z M 252.851562 27.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.058594 27.363281 C 250.058594 27.246094 249.964844 27.152344 249.847656 27.152344 C 249.730469 27.152344 249.636719 27.246094 249.636719 27.363281 C 249.636719 27.480469 249.730469 27.574219 249.847656 27.574219 C 249.964844 27.574219 250.058594 27.480469 250.058594 27.363281 Z M 250.058594 27.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.605469 21.570312 C 251.605469 21.453125 251.511719 21.359375 251.394531 21.359375 C 251.277344 21.359375 251.183594 21.453125 251.183594 21.570312 C 251.183594 21.6875 251.277344 21.78125 251.394531 21.78125 C 251.511719 21.78125 251.605469 21.6875 251.605469 21.570312 Z M 251.605469 21.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.613281 19.648438 C 251.613281 19.53125 251.519531 19.4375 251.402344 19.4375 C 251.285156 19.4375 251.191406 19.53125 251.191406 19.648438 C 251.191406 19.765625 251.285156 19.859375 251.402344 19.859375 C 251.519531 19.859375 251.613281 19.765625 251.613281 19.648438 Z M 251.613281 19.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.441406 20.945312 C 250.441406 20.828125 250.347656 20.734375 250.230469 20.734375 C 250.113281 20.734375 250.019531 20.828125 250.019531 20.945312 C 250.019531 21.0625 250.113281 21.15625 250.230469 21.15625 C 250.347656 21.15625 250.441406 21.0625 250.441406 20.945312 Z M 250.441406 20.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.289062 21.496094 C 251.289062 21.378906 251.195312 21.285156 251.078125 21.285156 C 250.960938 21.285156 250.867188 21.378906 250.867188 21.496094 C 250.867188 21.613281 250.960938 21.707031 251.078125 21.707031 C 251.195312 21.707031 251.289062 21.613281 251.289062 21.496094 Z M 251.289062 21.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.117188 20.097656 C 252.117188 19.980469 252.023438 19.886719 251.90625 19.886719 C 251.789062 19.886719 251.695312 19.980469 251.695312 20.097656 C 251.695312 20.214844 251.789062 20.308594 251.90625 20.308594 C 252.023438 20.308594 252.117188 20.214844 252.117188 20.097656 Z M 252.117188 20.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.480469 20.617188 C 252.480469 20.5 252.386719 20.40625 252.269531 20.40625 C 252.152344 20.40625 252.058594 20.5 252.058594 20.617188 C 252.058594 20.734375 252.152344 20.828125 252.269531 20.828125 C 252.386719 20.828125 252.480469 20.734375 252.480469 20.617188 Z M 252.480469 20.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.675781 20.585938 C 249.675781 20.46875 249.582031 20.375 249.464844 20.375 C 249.347656 20.375 249.253906 20.46875 249.253906 20.585938 C 249.253906 20.703125 249.347656 20.796875 249.464844 20.796875 C 249.582031 20.796875 249.675781 20.703125 249.675781 20.585938 Z M 249.675781 20.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.003906 19.351562 C 252.003906 19.234375 251.910156 19.140625 251.792969 19.140625 C 251.675781 19.140625 251.582031 19.234375 251.582031 19.351562 C 251.582031 19.46875 251.675781 19.5625 251.792969 19.5625 C 251.910156 19.5625 252.003906 19.46875 252.003906 19.351562 Z M 252.003906 19.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.144531 20.84375 C 249.144531 20.726562 249.050781 20.632812 248.933594 20.632812 C 248.816406 20.632812 248.722656 20.726562 248.722656 20.84375 C 248.722656 20.960938 248.816406 21.054688 248.933594 21.054688 C 249.050781 21.054688 249.144531 20.960938 249.144531 20.84375 Z M 249.144531 20.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.933594 19.960938 C 249.933594 19.84375 249.839844 19.75 249.722656 19.75 C 249.605469 19.75 249.511719 19.84375 249.511719 19.960938 C 249.511719 20.078125 249.605469 20.171875 249.722656 20.171875 C 249.839844 20.171875 249.933594 20.078125 249.933594 19.960938 Z M 249.933594 19.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.242188 22.757812 C 252.242188 22.640625 252.148438 22.546875 252.03125 22.546875 C 251.914062 22.546875 251.820312 22.640625 251.820312 22.757812 C 251.820312 22.875 251.914062 22.96875 252.03125 22.96875 C 252.148438 22.96875 252.242188 22.875 252.242188 22.757812 Z M 252.242188 22.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.359375 25.671875 C 252.359375 25.554688 252.265625 25.460938 252.148438 25.460938 C 252.03125 25.460938 251.9375 25.554688 251.9375 25.671875 C 251.9375 25.789062 252.03125 25.882812 252.148438 25.882812 C 252.265625 25.882812 252.359375 25.789062 252.359375 25.671875 Z M 252.359375 25.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.566406 25.828125 C 253.566406 25.710938 253.472656 25.617188 253.355469 25.617188 C 253.238281 25.617188 253.144531 25.710938 253.144531 25.828125 C 253.144531 25.945312 253.238281 26.039062 253.355469 26.039062 C 253.472656 26.039062 253.566406 25.945312 253.566406 25.828125 Z M 253.566406 25.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.863281 26.25 C 249.863281 26.132812 249.769531 26.039062 249.652344 26.039062 C 249.535156 26.039062 249.441406 26.132812 249.441406 26.25 C 249.441406 26.367188 249.535156 26.460938 249.652344 26.460938 C 249.769531 26.460938 249.863281 26.367188 249.863281 26.25 Z M 249.863281 26.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.449219 29.636719 C 246.449219 29.519531 246.355469 29.425781 246.238281 29.425781 C 246.121094 29.425781 246.027344 29.519531 246.027344 29.636719 C 246.027344 29.753906 246.121094 29.847656 246.238281 29.847656 C 246.355469 29.847656 246.449219 29.753906 246.449219 29.636719 Z M 246.449219 29.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.625 27.203125 C 248.625 27.085938 248.53125 26.992188 248.414062 26.992188 C 248.296875 26.992188 248.203125 27.085938 248.203125 27.203125 C 248.203125 27.320312 248.296875 27.414062 248.414062 27.414062 C 248.53125 27.414062 248.625 27.320312 248.625 27.203125 Z M 248.625 27.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.324219 28.25 C 249.324219 28.132812 249.230469 28.039062 249.113281 28.039062 C 248.996094 28.039062 248.902344 28.132812 248.902344 28.25 C 248.902344 28.367188 248.996094 28.460938 249.113281 28.460938 C 249.230469 28.460938 249.324219 28.367188 249.324219 28.25 Z M 249.324219 28.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.535156 28.148438 C 246.535156 28.03125 246.441406 27.9375 246.324219 27.9375 C 246.207031 27.9375 246.113281 28.03125 246.113281 28.148438 C 246.113281 28.265625 246.207031 28.359375 246.324219 28.359375 C 246.441406 28.359375 246.535156 28.265625 246.535156 28.148438 Z M 246.535156 28.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.3125 30.082031 C 247.3125 29.964844 247.21875 29.871094 247.101562 29.871094 C 246.984375 29.871094 246.890625 29.964844 246.890625 30.082031 C 246.890625 30.199219 246.984375 30.292969 247.101562 30.292969 C 247.21875 30.292969 247.3125 30.199219 247.3125 30.082031 Z M 247.3125 30.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.089844 31.632812 C 245.089844 31.515625 244.996094 31.421875 244.878906 31.421875 C 244.761719 31.421875 244.667969 31.515625 244.667969 31.632812 C 244.667969 31.75 244.761719 31.84375 244.878906 31.84375 C 244.996094 31.84375 245.089844 31.75 245.089844 31.632812 Z M 245.089844 31.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.121094 32.167969 C 244.121094 32.050781 244.027344 31.957031 243.910156 31.957031 C 243.792969 31.957031 243.699219 32.050781 243.699219 32.167969 C 243.699219 32.285156 243.792969 32.378906 243.910156 32.378906 C 244.027344 32.378906 244.121094 32.285156 244.121094 32.167969 Z M 244.121094 32.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.746094 28.105469 C 242.746094 27.988281 242.652344 27.894531 242.535156 27.894531 C 242.417969 27.894531 242.324219 27.988281 242.324219 28.105469 C 242.324219 28.222656 242.417969 28.316406 242.535156 28.316406 C 242.652344 28.316406 242.746094 28.222656 242.746094 28.105469 Z M 242.746094 28.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.6875 29.316406 C 242.6875 29.199219 242.59375 29.105469 242.476562 29.105469 C 242.359375 29.105469 242.265625 29.199219 242.265625 29.316406 C 242.265625 29.433594 242.359375 29.527344 242.476562 29.527344 C 242.59375 29.527344 242.6875 29.433594 242.6875 29.316406 Z M 242.6875 29.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.011719 27.667969 C 242.011719 27.550781 241.917969 27.457031 241.800781 27.457031 C 241.683594 27.457031 241.589844 27.550781 241.589844 27.667969 C 241.589844 27.785156 241.683594 27.878906 241.800781 27.878906 C 241.917969 27.878906 242.011719 27.785156 242.011719 27.667969 Z M 242.011719 27.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.910156 30.695312 C 241.910156 30.578125 241.816406 30.484375 241.699219 30.484375 C 241.582031 30.484375 241.488281 30.578125 241.488281 30.695312 C 241.488281 30.8125 241.582031 30.90625 241.699219 30.90625 C 241.816406 30.90625 241.910156 30.8125 241.910156 30.695312 Z M 241.910156 30.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.8125 31.3125 C 241.8125 31.195312 241.71875 31.101562 241.601562 31.101562 C 241.484375 31.101562 241.390625 31.195312 241.390625 31.3125 C 241.390625 31.429688 241.484375 31.523438 241.601562 31.523438 C 241.71875 31.523438 241.8125 31.429688 241.8125 31.3125 Z M 241.8125 31.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.855469 33.0625 C 240.855469 32.945312 240.761719 32.851562 240.644531 32.851562 C 240.527344 32.851562 240.433594 32.945312 240.433594 33.0625 C 240.433594 33.179688 240.527344 33.273438 240.644531 33.273438 C 240.761719 33.273438 240.855469 33.179688 240.855469 33.0625 Z M 240.855469 33.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.722656 30.820312 C 238.722656 30.703125 238.628906 30.609375 238.511719 30.609375 C 238.394531 30.609375 238.300781 30.703125 238.300781 30.820312 C 238.300781 30.9375 238.394531 31.03125 238.511719 31.03125 C 238.628906 31.03125 238.722656 30.9375 238.722656 30.820312 Z M 238.722656 30.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.679688 32.660156 C 239.679688 32.542969 239.585938 32.449219 239.46875 32.449219 C 239.351562 32.449219 239.257812 32.542969 239.257812 32.660156 C 239.257812 32.777344 239.351562 32.871094 239.46875 32.871094 C 239.585938 32.871094 239.679688 32.777344 239.679688 32.660156 Z M 239.679688 32.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.488281 31.8125 C 240.488281 31.695312 240.394531 31.601562 240.277344 31.601562 C 240.160156 31.601562 240.066406 31.695312 240.066406 31.8125 C 240.066406 31.929688 240.160156 32.023438 240.277344 32.023438 C 240.394531 32.023438 240.488281 31.929688 240.488281 31.8125 Z M 240.488281 31.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.207031 31.597656 C 240.207031 31.480469 240.113281 31.386719 239.996094 31.386719 C 239.878906 31.386719 239.785156 31.480469 239.785156 31.597656 C 239.785156 31.714844 239.878906 31.808594 239.996094 31.808594 C 240.113281 31.808594 240.207031 31.714844 240.207031 31.597656 Z M 240.207031 31.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.519531 32.714844 C 235.519531 32.597656 235.425781 32.503906 235.308594 32.503906 C 235.191406 32.503906 235.097656 32.597656 235.097656 32.714844 C 235.097656 32.832031 235.191406 32.925781 235.308594 32.925781 C 235.425781 32.925781 235.519531 32.832031 235.519531 32.714844 Z M 235.519531 32.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.257812 29.695312 C 239.257812 29.578125 239.164062 29.484375 239.046875 29.484375 C 238.929688 29.484375 238.835938 29.578125 238.835938 29.695312 C 238.835938 29.8125 238.929688 29.90625 239.046875 29.90625 C 239.164062 29.90625 239.257812 29.8125 239.257812 29.695312 Z M 239.257812 29.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.71875 29.34375 C 237.71875 29.226562 237.625 29.132812 237.507812 29.132812 C 237.390625 29.132812 237.296875 29.226562 237.296875 29.34375 C 237.296875 29.460938 237.390625 29.554688 237.507812 29.554688 C 237.625 29.554688 237.71875 29.460938 237.71875 29.34375 Z M 237.71875 29.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.820312 28.964844 C 238.820312 28.847656 238.726562 28.753906 238.609375 28.753906 C 238.492188 28.753906 238.398438 28.847656 238.398438 28.964844 C 238.398438 29.082031 238.492188 29.175781 238.609375 29.175781 C 238.726562 29.175781 238.820312 29.082031 238.820312 28.964844 Z M 238.820312 28.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.433594 30.125 C 241.433594 30.007812 241.339844 29.914062 241.222656 29.914062 C 241.105469 29.914062 241.011719 30.007812 241.011719 30.125 C 241.011719 30.242188 241.105469 30.335938 241.222656 30.335938 C 241.339844 30.335938 241.433594 30.242188 241.433594 30.125 Z M 241.433594 30.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.964844 29.789062 C 242.964844 29.671875 242.871094 29.578125 242.753906 29.578125 C 242.636719 29.578125 242.542969 29.671875 242.542969 29.789062 C 242.542969 29.90625 242.636719 30 242.753906 30 C 242.871094 30 242.964844 29.90625 242.964844 29.789062 Z M 242.964844 29.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.863281 30.121094 C 241.863281 30.003906 241.769531 29.910156 241.652344 29.910156 C 241.535156 29.910156 241.441406 30.003906 241.441406 30.121094 C 241.441406 30.238281 241.535156 30.332031 241.652344 30.332031 C 241.769531 30.332031 241.863281 30.238281 241.863281 30.121094 Z M 241.863281 30.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.792969 34.171875 C 242.792969 34.054688 242.699219 33.960938 242.582031 33.960938 C 242.464844 33.960938 242.371094 34.054688 242.371094 34.171875 C 242.371094 34.289062 242.464844 34.382812 242.582031 34.382812 C 242.699219 34.382812 242.792969 34.289062 242.792969 34.171875 Z M 242.792969 34.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.445312 33.375 C 243.445312 33.257812 243.351562 33.164062 243.234375 33.164062 C 243.117188 33.164062 243.023438 33.257812 243.023438 33.375 C 243.023438 33.492188 243.117188 33.585938 243.234375 33.585938 C 243.351562 33.585938 243.445312 33.492188 243.445312 33.375 Z M 243.445312 33.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.148438 32.917969 C 243.148438 32.800781 243.054688 32.707031 242.9375 32.707031 C 242.820312 32.707031 242.726562 32.800781 242.726562 32.917969 C 242.726562 33.035156 242.820312 33.128906 242.9375 33.128906 C 243.054688 33.128906 243.148438 33.035156 243.148438 32.917969 Z M 243.148438 32.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.433594 32.3125 C 240.433594 32.195312 240.339844 32.101562 240.222656 32.101562 C 240.105469 32.101562 240.011719 32.195312 240.011719 32.3125 C 240.011719 32.429688 240.105469 32.523438 240.222656 32.523438 C 240.339844 32.523438 240.433594 32.429688 240.433594 32.3125 Z M 240.433594 32.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.125 34.050781 C 237.125 33.933594 237.03125 33.839844 236.914062 33.839844 C 236.796875 33.839844 236.703125 33.933594 236.703125 34.050781 C 236.703125 34.167969 236.796875 34.261719 236.914062 34.261719 C 237.03125 34.261719 237.125 34.167969 237.125 34.050781 Z M 237.125 34.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.765625 34.71875 C 235.765625 34.601562 235.671875 34.507812 235.554688 34.507812 C 235.4375 34.507812 235.34375 34.601562 235.34375 34.71875 C 235.34375 34.835938 235.4375 34.929688 235.554688 34.929688 C 235.671875 34.929688 235.765625 34.835938 235.765625 34.71875 Z M 235.765625 34.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.167969 34.558594 C 236.167969 34.441406 236.074219 34.347656 235.957031 34.347656 C 235.839844 34.347656 235.746094 34.441406 235.746094 34.558594 C 235.746094 34.675781 235.839844 34.769531 235.957031 34.769531 C 236.074219 34.769531 236.167969 34.675781 236.167969 34.558594 Z M 236.167969 34.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.28125 37.933594 C 235.28125 37.816406 235.1875 37.722656 235.070312 37.722656 C 234.953125 37.722656 234.859375 37.816406 234.859375 37.933594 C 234.859375 38.050781 234.953125 38.144531 235.070312 38.144531 C 235.1875 38.144531 235.28125 38.050781 235.28125 37.933594 Z M 235.28125 37.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.125 37.515625 C 232.125 37.398438 232.03125 37.304688 231.914062 37.304688 C 231.796875 37.304688 231.703125 37.398438 231.703125 37.515625 C 231.703125 37.632812 231.796875 37.726562 231.914062 37.726562 C 232.03125 37.726562 232.125 37.632812 232.125 37.515625 Z M 232.125 37.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.070312 37.976562 C 231.070312 37.859375 230.976562 37.765625 230.859375 37.765625 C 230.742188 37.765625 230.648438 37.859375 230.648438 37.976562 C 230.648438 38.09375 230.742188 38.1875 230.859375 38.1875 C 230.976562 38.1875 231.070312 38.09375 231.070312 37.976562 Z M 231.070312 37.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.695312 38.539062 C 229.695312 38.421875 229.601562 38.328125 229.484375 38.328125 C 229.367188 38.328125 229.273438 38.421875 229.273438 38.539062 C 229.273438 38.65625 229.367188 38.75 229.484375 38.75 C 229.601562 38.75 229.695312 38.65625 229.695312 38.539062 Z M 229.695312 38.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.625 42.164062 C 229.625 42.046875 229.53125 41.953125 229.414062 41.953125 C 229.296875 41.953125 229.203125 42.046875 229.203125 42.164062 C 229.203125 42.28125 229.296875 42.375 229.414062 42.375 C 229.53125 42.375 229.625 42.28125 229.625 42.164062 Z M 229.625 42.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.699219 41.796875 C 227.699219 41.679688 227.605469 41.585938 227.488281 41.585938 C 227.371094 41.585938 227.277344 41.679688 227.277344 41.796875 C 227.277344 41.914062 227.371094 42.007812 227.488281 42.007812 C 227.605469 42.007812 227.699219 41.914062 227.699219 41.796875 Z M 227.699219 41.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.410156 44.011719 C 226.410156 43.894531 226.316406 43.800781 226.199219 43.800781 C 226.082031 43.800781 225.988281 43.894531 225.988281 44.011719 C 225.988281 44.128906 226.082031 44.222656 226.199219 44.222656 C 226.316406 44.222656 226.410156 44.128906 226.410156 44.011719 Z M 226.410156 44.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.058594 43.441406 C 226.058594 43.324219 225.964844 43.230469 225.847656 43.230469 C 225.730469 43.230469 225.636719 43.324219 225.636719 43.441406 C 225.636719 43.558594 225.730469 43.652344 225.847656 43.652344 C 225.964844 43.652344 226.058594 43.558594 226.058594 43.441406 Z M 226.058594 43.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.089844 44.734375 C 226.089844 44.617188 225.996094 44.523438 225.878906 44.523438 C 225.761719 44.523438 225.667969 44.617188 225.667969 44.734375 C 225.667969 44.851562 225.761719 44.945312 225.878906 44.945312 C 225.996094 44.945312 226.089844 44.851562 226.089844 44.734375 Z M 226.089844 44.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.699219 42.910156 C 228.699219 42.792969 228.605469 42.699219 228.488281 42.699219 C 228.371094 42.699219 228.277344 42.792969 228.277344 42.910156 C 228.277344 43.027344 228.371094 43.121094 228.488281 43.121094 C 228.605469 43.121094 228.699219 43.027344 228.699219 42.910156 Z M 228.699219 42.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.605469 40.613281 C 227.605469 40.496094 227.511719 40.402344 227.394531 40.402344 C 227.277344 40.402344 227.183594 40.496094 227.183594 40.613281 C 227.183594 40.730469 227.277344 40.824219 227.394531 40.824219 C 227.511719 40.824219 227.605469 40.730469 227.605469 40.613281 Z M 227.605469 40.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.292969 40.03125 C 226.292969 39.914062 226.199219 39.820312 226.082031 39.820312 C 225.964844 39.820312 225.871094 39.914062 225.871094 40.03125 C 225.871094 40.148438 225.964844 40.242188 226.082031 40.242188 C 226.199219 40.242188 226.292969 40.148438 226.292969 40.03125 Z M 226.292969 40.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.070312 43.34375 C 228.070312 43.226562 227.976562 43.132812 227.859375 43.132812 C 227.742188 43.132812 227.648438 43.226562 227.648438 43.34375 C 227.648438 43.460938 227.742188 43.554688 227.859375 43.554688 C 227.976562 43.554688 228.070312 43.460938 228.070312 43.34375 Z M 228.070312 43.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.335938 44.945312 C 227.335938 44.828125 227.242188 44.734375 227.125 44.734375 C 227.007812 44.734375 226.914062 44.828125 226.914062 44.945312 C 226.914062 45.0625 227.007812 45.15625 227.125 45.15625 C 227.242188 45.15625 227.335938 45.0625 227.335938 44.945312 Z M 227.335938 44.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.765625 45.53125 C 228.765625 45.414062 228.671875 45.320312 228.554688 45.320312 C 228.4375 45.320312 228.34375 45.414062 228.34375 45.53125 C 228.34375 45.648438 228.4375 45.742188 228.554688 45.742188 C 228.671875 45.742188 228.765625 45.648438 228.765625 45.53125 Z M 228.765625 45.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.988281 45.335938 C 224.988281 45.21875 224.894531 45.125 224.777344 45.125 C 224.660156 45.125 224.566406 45.21875 224.566406 45.335938 C 224.566406 45.453125 224.660156 45.546875 224.777344 45.546875 C 224.894531 45.546875 224.988281 45.453125 224.988281 45.335938 Z M 224.988281 45.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.195312 46.648438 C 225.195312 46.53125 225.101562 46.4375 224.984375 46.4375 C 224.867188 46.4375 224.773438 46.53125 224.773438 46.648438 C 224.773438 46.765625 224.867188 46.859375 224.984375 46.859375 C 225.101562 46.859375 225.195312 46.765625 225.195312 46.648438 Z M 225.195312 46.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.988281 46.144531 C 224.988281 46.027344 224.894531 45.933594 224.777344 45.933594 C 224.660156 45.933594 224.566406 46.027344 224.566406 46.144531 C 224.566406 46.261719 224.660156 46.355469 224.777344 46.355469 C 224.894531 46.355469 224.988281 46.261719 224.988281 46.144531 Z M 224.988281 46.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.460938 45.398438 C 222.460938 45.28125 222.367188 45.1875 222.25 45.1875 C 222.132812 45.1875 222.039062 45.28125 222.039062 45.398438 C 222.039062 45.515625 222.132812 45.609375 222.25 45.609375 C 222.367188 45.609375 222.460938 45.515625 222.460938 45.398438 Z M 222.460938 45.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.972656 45.214844 C 223.972656 45.097656 223.878906 45.003906 223.761719 45.003906 C 223.644531 45.003906 223.550781 45.097656 223.550781 45.214844 C 223.550781 45.332031 223.644531 45.425781 223.761719 45.425781 C 223.878906 45.425781 223.972656 45.332031 223.972656 45.214844 Z M 223.972656 45.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.394531 47.496094 C 225.394531 47.378906 225.300781 47.285156 225.183594 47.285156 C 225.066406 47.285156 224.972656 47.378906 224.972656 47.496094 C 224.972656 47.613281 225.066406 47.707031 225.183594 47.707031 C 225.300781 47.707031 225.394531 47.613281 225.394531 47.496094 Z M 225.394531 47.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.640625 46.722656 C 224.640625 46.605469 224.546875 46.511719 224.429688 46.511719 C 224.3125 46.511719 224.21875 46.605469 224.21875 46.722656 C 224.21875 46.839844 224.3125 46.933594 224.429688 46.933594 C 224.546875 46.933594 224.640625 46.839844 224.640625 46.722656 Z M 224.640625 46.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.019531 46.105469 C 225.019531 45.988281 224.925781 45.894531 224.808594 45.894531 C 224.691406 45.894531 224.597656 45.988281 224.597656 46.105469 C 224.597656 46.222656 224.691406 46.316406 224.808594 46.316406 C 224.925781 46.316406 225.019531 46.222656 225.019531 46.105469 Z M 225.019531 46.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.398438 45.039062 C 225.398438 44.921875 225.304688 44.828125 225.1875 44.828125 C 225.070312 44.828125 224.976562 44.921875 224.976562 45.039062 C 224.976562 45.15625 225.070312 45.25 225.1875 45.25 C 225.304688 45.25 225.398438 45.15625 225.398438 45.039062 Z M 225.398438 45.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.222656 44.515625 C 226.222656 44.398438 226.128906 44.304688 226.011719 44.304688 C 225.894531 44.304688 225.800781 44.398438 225.800781 44.515625 C 225.800781 44.632812 225.894531 44.726562 226.011719 44.726562 C 226.128906 44.726562 226.222656 44.632812 226.222656 44.515625 Z M 226.222656 44.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.644531 41.382812 C 230.644531 41.265625 230.550781 41.171875 230.433594 41.171875 C 230.316406 41.171875 230.222656 41.265625 230.222656 41.382812 C 230.222656 41.5 230.316406 41.59375 230.433594 41.59375 C 230.550781 41.59375 230.644531 41.5 230.644531 41.382812 Z M 230.644531 41.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.925781 39.484375 C 233.925781 39.367188 233.832031 39.273438 233.714844 39.273438 C 233.597656 39.273438 233.503906 39.367188 233.503906 39.484375 C 233.503906 39.601562 233.597656 39.695312 233.714844 39.695312 C 233.832031 39.695312 233.925781 39.601562 233.925781 39.484375 Z M 233.925781 39.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.5 40.386719 C 232.5 40.269531 232.40625 40.175781 232.289062 40.175781 C 232.171875 40.175781 232.078125 40.269531 232.078125 40.386719 C 232.078125 40.503906 232.171875 40.597656 232.289062 40.597656 C 232.40625 40.597656 232.5 40.503906 232.5 40.386719 Z M 232.5 40.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.972656 44.792969 C 232.972656 44.675781 232.878906 44.582031 232.761719 44.582031 C 232.644531 44.582031 232.550781 44.675781 232.550781 44.792969 C 232.550781 44.910156 232.644531 45.003906 232.761719 45.003906 C 232.878906 45.003906 232.972656 44.910156 232.972656 44.792969 Z M 232.972656 44.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.289062 46.085938 C 234.289062 45.96875 234.195312 45.875 234.078125 45.875 C 233.960938 45.875 233.867188 45.96875 233.867188 46.085938 C 233.867188 46.203125 233.960938 46.296875 234.078125 46.296875 C 234.195312 46.296875 234.289062 46.203125 234.289062 46.085938 Z M 234.289062 46.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.195312 49.582031 C 236.195312 49.464844 236.101562 49.371094 235.984375 49.371094 C 235.867188 49.371094 235.773438 49.464844 235.773438 49.582031 C 235.773438 49.699219 235.867188 49.792969 235.984375 49.792969 C 236.101562 49.792969 236.195312 49.699219 236.195312 49.582031 Z M 236.195312 49.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.269531 47.582031 C 237.269531 47.464844 237.175781 47.371094 237.058594 47.371094 C 236.941406 47.371094 236.847656 47.464844 236.847656 47.582031 C 236.847656 47.699219 236.941406 47.792969 237.058594 47.792969 C 237.175781 47.792969 237.269531 47.699219 237.269531 47.582031 Z M 237.269531 47.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.246094 49.074219 C 235.246094 48.957031 235.152344 48.863281 235.035156 48.863281 C 234.917969 48.863281 234.824219 48.957031 234.824219 49.074219 C 234.824219 49.191406 234.917969 49.285156 235.035156 49.285156 C 235.152344 49.285156 235.246094 49.191406 235.246094 49.074219 Z M 235.246094 49.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.339844 53.589844 C 236.339844 53.472656 236.246094 53.378906 236.128906 53.378906 C 236.011719 53.378906 235.917969 53.472656 235.917969 53.589844 C 235.917969 53.707031 236.011719 53.800781 236.128906 53.800781 C 236.246094 53.800781 236.339844 53.707031 236.339844 53.589844 Z M 236.339844 53.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.023438 52.664062 C 232.023438 52.546875 231.929688 52.453125 231.8125 52.453125 C 231.695312 52.453125 231.601562 52.546875 231.601562 52.664062 C 231.601562 52.78125 231.695312 52.875 231.8125 52.875 C 231.929688 52.875 232.023438 52.78125 232.023438 52.664062 Z M 232.023438 52.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.972656 49.289062 C 232.972656 49.171875 232.878906 49.078125 232.761719 49.078125 C 232.644531 49.078125 232.550781 49.171875 232.550781 49.289062 C 232.550781 49.40625 232.644531 49.5 232.761719 49.5 C 232.878906 49.5 232.972656 49.40625 232.972656 49.289062 Z M 232.972656 49.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.140625 48.621094 C 233.140625 48.503906 233.046875 48.410156 232.929688 48.410156 C 232.8125 48.410156 232.71875 48.503906 232.71875 48.621094 C 232.71875 48.738281 232.8125 48.832031 232.929688 48.832031 C 233.046875 48.832031 233.140625 48.738281 233.140625 48.621094 Z M 233.140625 48.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.226562 47.402344 C 232.226562 47.285156 232.132812 47.191406 232.015625 47.191406 C 231.898438 47.191406 231.804688 47.285156 231.804688 47.402344 C 231.804688 47.519531 231.898438 47.613281 232.015625 47.613281 C 232.132812 47.613281 232.226562 47.519531 232.226562 47.402344 Z M 232.226562 47.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.324219 49.796875 C 228.324219 49.679688 228.230469 49.585938 228.113281 49.585938 C 227.996094 49.585938 227.902344 49.679688 227.902344 49.796875 C 227.902344 49.914062 227.996094 50.007812 228.113281 50.007812 C 228.230469 50.007812 228.324219 49.914062 228.324219 49.796875 Z M 228.324219 49.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.78125 49.386719 C 227.78125 49.269531 227.6875 49.175781 227.570312 49.175781 C 227.453125 49.175781 227.359375 49.269531 227.359375 49.386719 C 227.359375 49.503906 227.453125 49.597656 227.570312 49.597656 C 227.6875 49.597656 227.78125 49.503906 227.78125 49.386719 Z M 227.78125 49.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.609375 49.605469 C 228.609375 49.488281 228.515625 49.394531 228.398438 49.394531 C 228.28125 49.394531 228.1875 49.488281 228.1875 49.605469 C 228.1875 49.722656 228.28125 49.816406 228.398438 49.816406 C 228.515625 49.816406 228.609375 49.722656 228.609375 49.605469 Z M 228.609375 49.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.726562 49.179688 C 227.726562 49.0625 227.632812 48.96875 227.515625 48.96875 C 227.398438 48.96875 227.304688 49.0625 227.304688 49.179688 C 227.304688 49.296875 227.398438 49.390625 227.515625 49.390625 C 227.632812 49.390625 227.726562 49.296875 227.726562 49.179688 Z M 227.726562 49.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.265625 53.871094 C 230.265625 53.753906 230.171875 53.660156 230.054688 53.660156 C 229.9375 53.660156 229.84375 53.753906 229.84375 53.871094 C 229.84375 53.988281 229.9375 54.082031 230.054688 54.082031 C 230.171875 54.082031 230.265625 53.988281 230.265625 53.871094 Z M 230.265625 53.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.378906 52.757812 C 230.378906 52.640625 230.285156 52.546875 230.167969 52.546875 C 230.050781 52.546875 229.957031 52.640625 229.957031 52.757812 C 229.957031 52.875 230.050781 52.96875 230.167969 52.96875 C 230.285156 52.96875 230.378906 52.875 230.378906 52.757812 Z M 230.378906 52.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.265625 52.414062 C 228.265625 52.296875 228.171875 52.203125 228.054688 52.203125 C 227.9375 52.203125 227.84375 52.296875 227.84375 52.414062 C 227.84375 52.53125 227.9375 52.625 228.054688 52.625 C 228.171875 52.625 228.265625 52.53125 228.265625 52.414062 Z M 228.265625 52.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.117188 49.757812 C 230.117188 49.640625 230.023438 49.546875 229.90625 49.546875 C 229.789062 49.546875 229.695312 49.640625 229.695312 49.757812 C 229.695312 49.875 229.789062 49.96875 229.90625 49.96875 C 230.023438 49.96875 230.117188 49.875 230.117188 49.757812 Z M 230.117188 49.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.171875 44.71875 C 231.171875 44.601562 231.078125 44.507812 230.960938 44.507812 C 230.84375 44.507812 230.75 44.601562 230.75 44.71875 C 230.75 44.835938 230.84375 44.929688 230.960938 44.929688 C 231.078125 44.929688 231.171875 44.835938 231.171875 44.71875 Z M 231.171875 44.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.195312 45.492188 C 230.195312 45.375 230.101562 45.28125 229.984375 45.28125 C 229.867188 45.28125 229.773438 45.375 229.773438 45.492188 C 229.773438 45.609375 229.867188 45.703125 229.984375 45.703125 C 230.101562 45.703125 230.195312 45.609375 230.195312 45.492188 Z M 230.195312 45.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.386719 44.4375 C 228.386719 44.320312 228.292969 44.226562 228.175781 44.226562 C 228.058594 44.226562 227.964844 44.320312 227.964844 44.4375 C 227.964844 44.554688 228.058594 44.648438 228.175781 44.648438 C 228.292969 44.648438 228.386719 44.554688 228.386719 44.4375 Z M 228.386719 44.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.769531 40.457031 C 226.769531 40.339844 226.675781 40.246094 226.558594 40.246094 C 226.441406 40.246094 226.347656 40.339844 226.347656 40.457031 C 226.347656 40.574219 226.441406 40.667969 226.558594 40.667969 C 226.675781 40.667969 226.769531 40.574219 226.769531 40.457031 Z M 226.769531 40.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.597656 37.328125 C 225.597656 37.210938 225.503906 37.117188 225.386719 37.117188 C 225.269531 37.117188 225.175781 37.210938 225.175781 37.328125 C 225.175781 37.445312 225.269531 37.539062 225.386719 37.539062 C 225.503906 37.539062 225.597656 37.445312 225.597656 37.328125 Z M 225.597656 37.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.804688 39.9375 C 227.804688 39.820312 227.710938 39.726562 227.59375 39.726562 C 227.476562 39.726562 227.382812 39.820312 227.382812 39.9375 C 227.382812 40.054688 227.476562 40.148438 227.59375 40.148438 C 227.710938 40.148438 227.804688 40.054688 227.804688 39.9375 Z M 227.804688 39.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.863281 39.027344 C 224.863281 38.910156 224.769531 38.816406 224.652344 38.816406 C 224.535156 38.816406 224.441406 38.910156 224.441406 39.027344 C 224.441406 39.144531 224.535156 39.238281 224.652344 39.238281 C 224.769531 39.238281 224.863281 39.144531 224.863281 39.027344 Z M 224.863281 39.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.886719 36.617188 C 221.886719 36.5 221.792969 36.40625 221.675781 36.40625 C 221.558594 36.40625 221.464844 36.5 221.464844 36.617188 C 221.464844 36.734375 221.558594 36.828125 221.675781 36.828125 C 221.792969 36.828125 221.886719 36.734375 221.886719 36.617188 Z M 221.886719 36.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.996094 36.53125 C 220.996094 36.414062 220.902344 36.320312 220.785156 36.320312 C 220.667969 36.320312 220.574219 36.414062 220.574219 36.53125 C 220.574219 36.648438 220.667969 36.742188 220.785156 36.742188 C 220.902344 36.742188 220.996094 36.648438 220.996094 36.53125 Z M 220.996094 36.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.046875 31.496094 C 224.046875 31.378906 223.953125 31.285156 223.835938 31.285156 C 223.71875 31.285156 223.625 31.378906 223.625 31.496094 C 223.625 31.613281 223.71875 31.707031 223.835938 31.707031 C 223.953125 31.707031 224.046875 31.613281 224.046875 31.496094 Z M 224.046875 31.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.441406 31.640625 C 223.441406 31.523438 223.347656 31.429688 223.230469 31.429688 C 223.113281 31.429688 223.019531 31.523438 223.019531 31.640625 C 223.019531 31.757812 223.113281 31.851562 223.230469 31.851562 C 223.347656 31.851562 223.441406 31.757812 223.441406 31.640625 Z M 223.441406 31.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.6875 35.632812 C 225.6875 35.515625 225.59375 35.421875 225.476562 35.421875 C 225.359375 35.421875 225.265625 35.515625 225.265625 35.632812 C 225.265625 35.75 225.359375 35.84375 225.476562 35.84375 C 225.59375 35.84375 225.6875 35.75 225.6875 35.632812 Z M 225.6875 35.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.871094 32.414062 C 223.871094 32.296875 223.777344 32.203125 223.660156 32.203125 C 223.542969 32.203125 223.449219 32.296875 223.449219 32.414062 C 223.449219 32.53125 223.542969 32.625 223.660156 32.625 C 223.777344 32.625 223.871094 32.53125 223.871094 32.414062 Z M 223.871094 32.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.292969 31.746094 C 222.292969 31.628906 222.199219 31.535156 222.082031 31.535156 C 221.964844 31.535156 221.871094 31.628906 221.871094 31.746094 C 221.871094 31.863281 221.964844 31.957031 222.082031 31.957031 C 222.199219 31.957031 222.292969 31.863281 222.292969 31.746094 Z M 222.292969 31.746094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.5625 32.71875 C 223.5625 32.601562 223.46875 32.507812 223.351562 32.507812 C 223.234375 32.507812 223.140625 32.601562 223.140625 32.71875 C 223.140625 32.835938 223.234375 32.929688 223.351562 32.929688 C 223.46875 32.929688 223.5625 32.835938 223.5625 32.71875 Z M 223.5625 32.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.550781 30.089844 C 227.550781 29.972656 227.457031 29.878906 227.339844 29.878906 C 227.222656 29.878906 227.128906 29.972656 227.128906 30.089844 C 227.128906 30.207031 227.222656 30.300781 227.339844 30.300781 C 227.457031 30.300781 227.550781 30.207031 227.550781 30.089844 Z M 227.550781 30.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.953125 28.894531 C 227.953125 28.777344 227.859375 28.683594 227.742188 28.683594 C 227.625 28.683594 227.53125 28.777344 227.53125 28.894531 C 227.53125 29.011719 227.625 29.105469 227.742188 29.105469 C 227.859375 29.105469 227.953125 29.011719 227.953125 28.894531 Z M 227.953125 28.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.648438 29.441406 C 231.648438 29.324219 231.554688 29.230469 231.4375 29.230469 C 231.320312 29.230469 231.226562 29.324219 231.226562 29.441406 C 231.226562 29.558594 231.320312 29.652344 231.4375 29.652344 C 231.554688 29.652344 231.648438 29.558594 231.648438 29.441406 Z M 231.648438 29.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.511719 28.867188 C 233.511719 28.75 233.417969 28.65625 233.300781 28.65625 C 233.183594 28.65625 233.089844 28.75 233.089844 28.867188 C 233.089844 28.984375 233.183594 29.078125 233.300781 29.078125 C 233.417969 29.078125 233.511719 28.984375 233.511719 28.867188 Z M 233.511719 28.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.105469 31.050781 C 233.105469 30.933594 233.011719 30.839844 232.894531 30.839844 C 232.777344 30.839844 232.683594 30.933594 232.683594 31.050781 C 232.683594 31.167969 232.777344 31.261719 232.894531 31.261719 C 233.011719 31.261719 233.105469 31.167969 233.105469 31.050781 Z M 233.105469 31.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.609375 29.257812 C 232.609375 29.140625 232.515625 29.046875 232.398438 29.046875 C 232.28125 29.046875 232.1875 29.140625 232.1875 29.257812 C 232.1875 29.375 232.28125 29.46875 232.398438 29.46875 C 232.515625 29.46875 232.609375 29.375 232.609375 29.257812 Z M 232.609375 29.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.132812 25.609375 C 233.132812 25.492188 233.039062 25.398438 232.921875 25.398438 C 232.804688 25.398438 232.710938 25.492188 232.710938 25.609375 C 232.710938 25.726562 232.804688 25.820312 232.921875 25.820312 C 233.039062 25.820312 233.132812 25.726562 233.132812 25.609375 Z M 233.132812 25.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.027344 26.019531 C 235.027344 25.902344 234.933594 25.808594 234.816406 25.808594 C 234.699219 25.808594 234.605469 25.902344 234.605469 26.019531 C 234.605469 26.136719 234.699219 26.230469 234.816406 26.230469 C 234.933594 26.230469 235.027344 26.136719 235.027344 26.019531 Z M 235.027344 26.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.265625 22.824219 C 232.265625 22.707031 232.171875 22.613281 232.054688 22.613281 C 231.9375 22.613281 231.84375 22.707031 231.84375 22.824219 C 231.84375 22.941406 231.9375 23.035156 232.054688 23.035156 C 232.171875 23.035156 232.265625 22.941406 232.265625 22.824219 Z M 232.265625 22.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.71875 24.960938 C 230.71875 24.84375 230.625 24.75 230.507812 24.75 C 230.390625 24.75 230.296875 24.84375 230.296875 24.960938 C 230.296875 25.078125 230.390625 25.171875 230.507812 25.171875 C 230.625 25.171875 230.71875 25.078125 230.71875 24.960938 Z M 230.71875 24.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.660156 26.421875 C 230.660156 26.304688 230.566406 26.210938 230.449219 26.210938 C 230.332031 26.210938 230.238281 26.304688 230.238281 26.421875 C 230.238281 26.539062 230.332031 26.632812 230.449219 26.632812 C 230.566406 26.632812 230.660156 26.539062 230.660156 26.421875 Z M 230.660156 26.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.140625 25.582031 C 229.140625 25.464844 229.046875 25.371094 228.929688 25.371094 C 228.8125 25.371094 228.71875 25.464844 228.71875 25.582031 C 228.71875 25.699219 228.8125 25.792969 228.929688 25.792969 C 229.046875 25.792969 229.140625 25.699219 229.140625 25.582031 Z M 229.140625 25.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.078125 26.847656 C 229.078125 26.730469 228.984375 26.636719 228.867188 26.636719 C 228.75 26.636719 228.65625 26.730469 228.65625 26.847656 C 228.65625 26.964844 228.75 27.058594 228.867188 27.058594 C 228.984375 27.058594 229.078125 26.964844 229.078125 26.847656 Z M 229.078125 26.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.242188 27.875 C 228.242188 27.757812 228.148438 27.664062 228.03125 27.664062 C 227.914062 27.664062 227.820312 27.757812 227.820312 27.875 C 227.820312 27.992188 227.914062 28.085938 228.03125 28.085938 C 228.148438 28.085938 228.242188 27.992188 228.242188 27.875 Z M 228.242188 27.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.652344 30.5 C 230.652344 30.382812 230.558594 30.289062 230.441406 30.289062 C 230.324219 30.289062 230.230469 30.382812 230.230469 30.5 C 230.230469 30.617188 230.324219 30.710938 230.441406 30.710938 C 230.558594 30.710938 230.652344 30.617188 230.652344 30.5 Z M 230.652344 30.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.34375 29.816406 C 230.34375 29.699219 230.25 29.605469 230.132812 29.605469 C 230.015625 29.605469 229.921875 29.699219 229.921875 29.816406 C 229.921875 29.933594 230.015625 30.027344 230.132812 30.027344 C 230.25 30.027344 230.34375 29.933594 230.34375 29.816406 Z M 230.34375 29.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.429688 31.765625 C 231.429688 31.648438 231.335938 31.554688 231.21875 31.554688 C 231.101562 31.554688 231.007812 31.648438 231.007812 31.765625 C 231.007812 31.882812 231.101562 31.976562 231.21875 31.976562 C 231.335938 31.976562 231.429688 31.882812 231.429688 31.765625 Z M 231.429688 31.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.351562 32.871094 C 233.351562 32.753906 233.257812 32.660156 233.140625 32.660156 C 233.023438 32.660156 232.929688 32.753906 232.929688 32.871094 C 232.929688 32.988281 233.023438 33.082031 233.140625 33.082031 C 233.257812 33.082031 233.351562 32.988281 233.351562 32.871094 Z M 233.351562 32.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.824219 32.070312 C 228.824219 31.953125 228.730469 31.859375 228.613281 31.859375 C 228.496094 31.859375 228.402344 31.953125 228.402344 32.070312 C 228.402344 32.1875 228.496094 32.28125 228.613281 32.28125 C 228.730469 32.28125 228.824219 32.1875 228.824219 32.070312 Z M 228.824219 32.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.378906 34.390625 C 231.378906 34.273438 231.285156 34.179688 231.167969 34.179688 C 231.050781 34.179688 230.957031 34.273438 230.957031 34.390625 C 230.957031 34.507812 231.050781 34.601562 231.167969 34.601562 C 231.285156 34.601562 231.378906 34.507812 231.378906 34.390625 Z M 231.378906 34.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.671875 33.464844 C 235.671875 33.347656 235.578125 33.253906 235.460938 33.253906 C 235.34375 33.253906 235.25 33.347656 235.25 33.464844 C 235.25 33.582031 235.34375 33.675781 235.460938 33.675781 C 235.578125 33.675781 235.671875 33.582031 235.671875 33.464844 Z M 235.671875 33.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.785156 32.691406 C 233.785156 32.574219 233.691406 32.480469 233.574219 32.480469 C 233.457031 32.480469 233.363281 32.574219 233.363281 32.691406 C 233.363281 32.808594 233.457031 32.902344 233.574219 32.902344 C 233.691406 32.902344 233.785156 32.808594 233.785156 32.691406 Z M 233.785156 32.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.542969 30.667969 C 230.542969 30.550781 230.449219 30.457031 230.332031 30.457031 C 230.214844 30.457031 230.121094 30.550781 230.121094 30.667969 C 230.121094 30.785156 230.214844 30.878906 230.332031 30.878906 C 230.449219 30.878906 230.542969 30.785156 230.542969 30.667969 Z M 230.542969 30.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.777344 29.070312 C 229.777344 28.953125 229.683594 28.859375 229.566406 28.859375 C 229.449219 28.859375 229.355469 28.953125 229.355469 29.070312 C 229.355469 29.1875 229.449219 29.28125 229.566406 29.28125 C 229.683594 29.28125 229.777344 29.1875 229.777344 29.070312 Z M 229.777344 29.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.539062 26.917969 C 230.539062 26.800781 230.445312 26.707031 230.328125 26.707031 C 230.210938 26.707031 230.117188 26.800781 230.117188 26.917969 C 230.117188 27.035156 230.210938 27.128906 230.328125 27.128906 C 230.445312 27.128906 230.539062 27.035156 230.539062 26.917969 Z M 230.539062 26.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.773438 27.976562 C 229.773438 27.859375 229.679688 27.765625 229.5625 27.765625 C 229.445312 27.765625 229.351562 27.859375 229.351562 27.976562 C 229.351562 28.09375 229.445312 28.1875 229.5625 28.1875 C 229.679688 28.1875 229.773438 28.09375 229.773438 27.976562 Z M 229.773438 27.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.71875 31.683594 C 231.71875 31.566406 231.625 31.472656 231.507812 31.472656 C 231.390625 31.472656 231.296875 31.566406 231.296875 31.683594 C 231.296875 31.800781 231.390625 31.894531 231.507812 31.894531 C 231.625 31.894531 231.71875 31.800781 231.71875 31.683594 Z M 231.71875 31.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.359375 33.320312 C 230.359375 33.203125 230.265625 33.109375 230.148438 33.109375 C 230.03125 33.109375 229.9375 33.203125 229.9375 33.320312 C 229.9375 33.4375 230.03125 33.53125 230.148438 33.53125 C 230.265625 33.53125 230.359375 33.4375 230.359375 33.320312 Z M 230.359375 33.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.128906 32.859375 C 229.128906 32.742188 229.035156 32.648438 228.917969 32.648438 C 228.800781 32.648438 228.707031 32.742188 228.707031 32.859375 C 228.707031 32.976562 228.800781 33.070312 228.917969 33.070312 C 229.035156 33.070312 229.128906 32.976562 229.128906 32.859375 Z M 229.128906 32.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.359375 34.378906 C 232.359375 34.261719 232.265625 34.167969 232.148438 34.167969 C 232.03125 34.167969 231.9375 34.261719 231.9375 34.378906 C 231.9375 34.496094 232.03125 34.589844 232.148438 34.589844 C 232.265625 34.589844 232.359375 34.496094 232.359375 34.378906 Z M 232.359375 34.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.082031 35.140625 C 235.082031 35.023438 234.988281 34.929688 234.871094 34.929688 C 234.753906 34.929688 234.660156 35.023438 234.660156 35.140625 C 234.660156 35.257812 234.753906 35.351562 234.871094 35.351562 C 234.988281 35.351562 235.082031 35.257812 235.082031 35.140625 Z M 235.082031 35.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.257812 35.847656 C 235.257812 35.730469 235.164062 35.636719 235.046875 35.636719 C 234.929688 35.636719 234.835938 35.730469 234.835938 35.847656 C 234.835938 35.964844 234.929688 36.058594 235.046875 36.058594 C 235.164062 36.058594 235.257812 35.964844 235.257812 35.847656 Z M 235.257812 35.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.242188 35.15625 C 233.242188 35.039062 233.148438 34.945312 233.03125 34.945312 C 232.914062 34.945312 232.820312 35.039062 232.820312 35.15625 C 232.820312 35.273438 232.914062 35.367188 233.03125 35.367188 C 233.148438 35.367188 233.242188 35.273438 233.242188 35.15625 Z M 233.242188 35.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.394531 37.1875 C 232.394531 37.070312 232.300781 36.976562 232.183594 36.976562 C 232.066406 36.976562 231.972656 37.070312 231.972656 37.1875 C 231.972656 37.304688 232.066406 37.398438 232.183594 37.398438 C 232.300781 37.398438 232.394531 37.304688 232.394531 37.1875 Z M 232.394531 37.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.113281 37.316406 C 234.113281 37.199219 234.019531 37.105469 233.902344 37.105469 C 233.785156 37.105469 233.691406 37.199219 233.691406 37.316406 C 233.691406 37.433594 233.785156 37.527344 233.902344 37.527344 C 234.019531 37.527344 234.113281 37.433594 234.113281 37.316406 Z M 234.113281 37.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.324219 40.636719 C 235.324219 40.519531 235.230469 40.425781 235.113281 40.425781 C 234.996094 40.425781 234.902344 40.519531 234.902344 40.636719 C 234.902344 40.753906 234.996094 40.847656 235.113281 40.847656 C 235.230469 40.847656 235.324219 40.753906 235.324219 40.636719 Z M 235.324219 40.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.742188 41.132812 C 236.742188 41.015625 236.648438 40.921875 236.53125 40.921875 C 236.414062 40.921875 236.320312 41.015625 236.320312 41.132812 C 236.320312 41.25 236.414062 41.34375 236.53125 41.34375 C 236.648438 41.34375 236.742188 41.25 236.742188 41.132812 Z M 236.742188 41.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.414062 40.175781 C 235.414062 40.058594 235.320312 39.964844 235.203125 39.964844 C 235.085938 39.964844 234.992188 40.058594 234.992188 40.175781 C 234.992188 40.292969 235.085938 40.386719 235.203125 40.386719 C 235.320312 40.386719 235.414062 40.292969 235.414062 40.175781 Z M 235.414062 40.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.929688 38.425781 C 234.929688 38.308594 234.835938 38.214844 234.71875 38.214844 C 234.601562 38.214844 234.507812 38.308594 234.507812 38.425781 C 234.507812 38.542969 234.601562 38.636719 234.71875 38.636719 C 234.835938 38.636719 234.929688 38.542969 234.929688 38.425781 Z M 234.929688 38.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.09375 34.152344 C 235.09375 34.035156 235 33.941406 234.882812 33.941406 C 234.765625 33.941406 234.671875 34.035156 234.671875 34.152344 C 234.671875 34.269531 234.765625 34.363281 234.882812 34.363281 C 235 34.363281 235.09375 34.269531 235.09375 34.152344 Z M 235.09375 34.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.46875 38.878906 C 237.46875 38.761719 237.375 38.667969 237.257812 38.667969 C 237.140625 38.667969 237.046875 38.761719 237.046875 38.878906 C 237.046875 38.996094 237.140625 39.089844 237.257812 39.089844 C 237.375 39.089844 237.46875 38.996094 237.46875 38.878906 Z M 237.46875 38.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.851562 39.78125 C 234.851562 39.664062 234.757812 39.570312 234.640625 39.570312 C 234.523438 39.570312 234.429688 39.664062 234.429688 39.78125 C 234.429688 39.898438 234.523438 39.992188 234.640625 39.992188 C 234.757812 39.992188 234.851562 39.898438 234.851562 39.78125 Z M 234.851562 39.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.566406 38.796875 C 238.566406 38.679688 238.472656 38.585938 238.355469 38.585938 C 238.238281 38.585938 238.144531 38.679688 238.144531 38.796875 C 238.144531 38.914062 238.238281 39.007812 238.355469 39.007812 C 238.472656 39.007812 238.566406 38.914062 238.566406 38.796875 Z M 238.566406 38.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.296875 37.160156 C 236.296875 37.042969 236.203125 36.949219 236.085938 36.949219 C 235.96875 36.949219 235.875 37.042969 235.875 37.160156 C 235.875 37.277344 235.96875 37.371094 236.085938 37.371094 C 236.203125 37.371094 236.296875 37.277344 236.296875 37.160156 Z M 236.296875 37.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.332031 38.003906 C 238.332031 37.886719 238.238281 37.792969 238.121094 37.792969 C 238.003906 37.792969 237.910156 37.886719 237.910156 38.003906 C 237.910156 38.121094 238.003906 38.214844 238.121094 38.214844 C 238.238281 38.214844 238.332031 38.121094 238.332031 38.003906 Z M 238.332031 38.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.96875 35.980469 C 234.96875 35.863281 234.875 35.769531 234.757812 35.769531 C 234.640625 35.769531 234.546875 35.863281 234.546875 35.980469 C 234.546875 36.097656 234.640625 36.191406 234.757812 36.191406 C 234.875 36.191406 234.96875 36.097656 234.96875 35.980469 Z M 234.96875 35.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.367188 36.398438 C 238.367188 36.28125 238.273438 36.1875 238.15625 36.1875 C 238.039062 36.1875 237.945312 36.28125 237.945312 36.398438 C 237.945312 36.515625 238.039062 36.609375 238.15625 36.609375 C 238.273438 36.609375 238.367188 36.515625 238.367188 36.398438 Z M 238.367188 36.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.867188 35.703125 C 240.867188 35.585938 240.773438 35.492188 240.65625 35.492188 C 240.539062 35.492188 240.445312 35.585938 240.445312 35.703125 C 240.445312 35.820312 240.539062 35.914062 240.65625 35.914062 C 240.773438 35.914062 240.867188 35.820312 240.867188 35.703125 Z M 240.867188 35.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.878906 34.15625 C 235.878906 34.039062 235.785156 33.945312 235.667969 33.945312 C 235.550781 33.945312 235.457031 34.039062 235.457031 34.15625 C 235.457031 34.273438 235.550781 34.367188 235.667969 34.367188 C 235.785156 34.367188 235.878906 34.273438 235.878906 34.15625 Z M 235.878906 34.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.992188 34.507812 C 234.992188 34.390625 234.898438 34.296875 234.78125 34.296875 C 234.664062 34.296875 234.570312 34.390625 234.570312 34.507812 C 234.570312 34.625 234.664062 34.71875 234.78125 34.71875 C 234.898438 34.71875 234.992188 34.625 234.992188 34.507812 Z M 234.992188 34.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.546875 31.539062 C 235.546875 31.421875 235.453125 31.328125 235.335938 31.328125 C 235.21875 31.328125 235.125 31.421875 235.125 31.539062 C 235.125 31.65625 235.21875 31.75 235.335938 31.75 C 235.453125 31.75 235.546875 31.65625 235.546875 31.539062 Z M 235.546875 31.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.675781 33.167969 C 236.675781 33.050781 236.582031 32.957031 236.464844 32.957031 C 236.347656 32.957031 236.253906 33.050781 236.253906 33.167969 C 236.253906 33.285156 236.347656 33.378906 236.464844 33.378906 C 236.582031 33.378906 236.675781 33.285156 236.675781 33.167969 Z M 236.675781 33.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.976562 30.058594 C 236.976562 29.941406 236.882812 29.847656 236.765625 29.847656 C 236.648438 29.847656 236.554688 29.941406 236.554688 30.058594 C 236.554688 30.175781 236.648438 30.269531 236.765625 30.269531 C 236.882812 30.269531 236.976562 30.175781 236.976562 30.058594 Z M 236.976562 30.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.511719 31.050781 C 237.511719 30.933594 237.417969 30.839844 237.300781 30.839844 C 237.183594 30.839844 237.089844 30.933594 237.089844 31.050781 C 237.089844 31.167969 237.183594 31.261719 237.300781 31.261719 C 237.417969 31.261719 237.511719 31.167969 237.511719 31.050781 Z M 237.511719 31.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.058594 30.714844 C 238.058594 30.597656 237.964844 30.503906 237.847656 30.503906 C 237.730469 30.503906 237.636719 30.597656 237.636719 30.714844 C 237.636719 30.832031 237.730469 30.925781 237.847656 30.925781 C 237.964844 30.925781 238.058594 30.832031 238.058594 30.714844 Z M 238.058594 30.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.046875 29.539062 C 238.046875 29.421875 237.953125 29.328125 237.835938 29.328125 C 237.71875 29.328125 237.625 29.421875 237.625 29.539062 C 237.625 29.65625 237.71875 29.75 237.835938 29.75 C 237.953125 29.75 238.046875 29.65625 238.046875 29.539062 Z M 238.046875 29.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.089844 29.414062 C 240.089844 29.296875 239.996094 29.203125 239.878906 29.203125 C 239.761719 29.203125 239.667969 29.296875 239.667969 29.414062 C 239.667969 29.53125 239.761719 29.625 239.878906 29.625 C 239.996094 29.625 240.089844 29.53125 240.089844 29.414062 Z M 240.089844 29.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.679688 29.929688 C 241.679688 29.8125 241.585938 29.71875 241.46875 29.71875 C 241.351562 29.71875 241.257812 29.8125 241.257812 29.929688 C 241.257812 30.046875 241.351562 30.140625 241.46875 30.140625 C 241.585938 30.140625 241.679688 30.046875 241.679688 29.929688 Z M 241.679688 29.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.253906 30.367188 C 240.253906 30.25 240.160156 30.15625 240.042969 30.15625 C 239.925781 30.15625 239.832031 30.25 239.832031 30.367188 C 239.832031 30.484375 239.925781 30.578125 240.042969 30.578125 C 240.160156 30.578125 240.253906 30.484375 240.253906 30.367188 Z M 240.253906 30.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.300781 29.308594 C 245.300781 29.191406 245.207031 29.097656 245.089844 29.097656 C 244.972656 29.097656 244.878906 29.191406 244.878906 29.308594 C 244.878906 29.425781 244.972656 29.519531 245.089844 29.519531 C 245.207031 29.519531 245.300781 29.425781 245.300781 29.308594 Z M 245.300781 29.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.601562 32.296875 C 245.601562 32.179688 245.507812 32.085938 245.390625 32.085938 C 245.273438 32.085938 245.179688 32.179688 245.179688 32.296875 C 245.179688 32.414062 245.273438 32.507812 245.390625 32.507812 C 245.507812 32.507812 245.601562 32.414062 245.601562 32.296875 Z M 245.601562 32.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.089844 32.363281 C 246.089844 32.246094 245.996094 32.152344 245.878906 32.152344 C 245.761719 32.152344 245.667969 32.246094 245.667969 32.363281 C 245.667969 32.480469 245.761719 32.574219 245.878906 32.574219 C 245.996094 32.574219 246.089844 32.480469 246.089844 32.363281 Z M 246.089844 32.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.023438 32.113281 C 244.023438 31.996094 243.929688 31.902344 243.8125 31.902344 C 243.695312 31.902344 243.601562 31.996094 243.601562 32.113281 C 243.601562 32.230469 243.695312 32.324219 243.8125 32.324219 C 243.929688 32.324219 244.023438 32.230469 244.023438 32.113281 Z M 244.023438 32.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.292969 33.488281 C 245.292969 33.371094 245.199219 33.277344 245.082031 33.277344 C 244.964844 33.277344 244.871094 33.371094 244.871094 33.488281 C 244.871094 33.605469 244.964844 33.699219 245.082031 33.699219 C 245.199219 33.699219 245.292969 33.605469 245.292969 33.488281 Z M 245.292969 33.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.679688 29.601562 C 244.679688 29.484375 244.585938 29.390625 244.46875 29.390625 C 244.351562 29.390625 244.257812 29.484375 244.257812 29.601562 C 244.257812 29.71875 244.351562 29.8125 244.46875 29.8125 C 244.585938 29.8125 244.679688 29.71875 244.679688 29.601562 Z M 244.679688 29.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.824219 30.011719 C 242.824219 29.894531 242.730469 29.800781 242.613281 29.800781 C 242.496094 29.800781 242.402344 29.894531 242.402344 30.011719 C 242.402344 30.128906 242.496094 30.222656 242.613281 30.222656 C 242.730469 30.222656 242.824219 30.128906 242.824219 30.011719 Z M 242.824219 30.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.519531 30.589844 C 240.519531 30.472656 240.425781 30.378906 240.308594 30.378906 C 240.191406 30.378906 240.097656 30.472656 240.097656 30.589844 C 240.097656 30.707031 240.191406 30.800781 240.308594 30.800781 C 240.425781 30.800781 240.519531 30.707031 240.519531 30.589844 Z M 240.519531 30.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.714844 33.230469 C 242.714844 33.113281 242.621094 33.019531 242.503906 33.019531 C 242.386719 33.019531 242.292969 33.113281 242.292969 33.230469 C 242.292969 33.347656 242.386719 33.441406 242.503906 33.441406 C 242.621094 33.441406 242.714844 33.347656 242.714844 33.230469 Z M 242.714844 33.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.890625 32.996094 C 245.890625 32.878906 245.796875 32.785156 245.679688 32.785156 C 245.5625 32.785156 245.46875 32.878906 245.46875 32.996094 C 245.46875 33.113281 245.5625 33.207031 245.679688 33.207031 C 245.796875 33.207031 245.890625 33.113281 245.890625 32.996094 Z M 245.890625 32.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.152344 37.066406 C 246.152344 36.949219 246.058594 36.855469 245.941406 36.855469 C 245.824219 36.855469 245.730469 36.949219 245.730469 37.066406 C 245.730469 37.183594 245.824219 37.277344 245.941406 37.277344 C 246.058594 37.277344 246.152344 37.183594 246.152344 37.066406 Z M 246.152344 37.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.597656 35.671875 C 245.597656 35.554688 245.503906 35.460938 245.386719 35.460938 C 245.269531 35.460938 245.175781 35.554688 245.175781 35.671875 C 245.175781 35.789062 245.269531 35.882812 245.386719 35.882812 C 245.503906 35.882812 245.597656 35.789062 245.597656 35.671875 Z M 245.597656 35.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.023438 33.433594 C 248.023438 33.316406 247.929688 33.222656 247.8125 33.222656 C 247.695312 33.222656 247.601562 33.316406 247.601562 33.433594 C 247.601562 33.550781 247.695312 33.644531 247.8125 33.644531 C 247.929688 33.644531 248.023438 33.550781 248.023438 33.433594 Z M 248.023438 33.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.511719 34.191406 C 246.511719 34.074219 246.417969 33.980469 246.300781 33.980469 C 246.183594 33.980469 246.089844 34.074219 246.089844 34.191406 C 246.089844 34.308594 246.183594 34.402344 246.300781 34.402344 C 246.417969 34.402344 246.511719 34.308594 246.511719 34.191406 Z M 246.511719 34.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.425781 32.757812 C 245.425781 32.640625 245.332031 32.546875 245.214844 32.546875 C 245.097656 32.546875 245.003906 32.640625 245.003906 32.757812 C 245.003906 32.875 245.097656 32.96875 245.214844 32.96875 C 245.332031 32.96875 245.425781 32.875 245.425781 32.757812 Z M 245.425781 32.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.121094 29.546875 C 246.121094 29.429688 246.027344 29.335938 245.910156 29.335938 C 245.792969 29.335938 245.699219 29.429688 245.699219 29.546875 C 245.699219 29.664062 245.792969 29.757812 245.910156 29.757812 C 246.027344 29.757812 246.121094 29.664062 246.121094 29.546875 Z M 246.121094 29.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.132812 28.871094 C 245.132812 28.753906 245.039062 28.660156 244.921875 28.660156 C 244.804688 28.660156 244.710938 28.753906 244.710938 28.871094 C 244.710938 28.988281 244.804688 29.082031 244.921875 29.082031 C 245.039062 29.082031 245.132812 28.988281 245.132812 28.871094 Z M 245.132812 28.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.992188 27.78125 C 242.992188 27.664062 242.898438 27.570312 242.78125 27.570312 C 242.664062 27.570312 242.570312 27.664062 242.570312 27.78125 C 242.570312 27.898438 242.664062 27.992188 242.78125 27.992188 C 242.898438 27.992188 242.992188 27.898438 242.992188 27.78125 Z M 242.992188 27.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.367188 27.988281 C 243.367188 27.871094 243.273438 27.777344 243.15625 27.777344 C 243.039062 27.777344 242.945312 27.871094 242.945312 27.988281 C 242.945312 28.105469 243.039062 28.199219 243.15625 28.199219 C 243.273438 28.199219 243.367188 28.105469 243.367188 27.988281 Z M 243.367188 27.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.136719 27.453125 C 242.136719 27.335938 242.042969 27.242188 241.925781 27.242188 C 241.808594 27.242188 241.714844 27.335938 241.714844 27.453125 C 241.714844 27.570312 241.808594 27.664062 241.925781 27.664062 C 242.042969 27.664062 242.136719 27.570312 242.136719 27.453125 Z M 242.136719 27.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.101562 27.023438 C 242.101562 26.90625 242.007812 26.8125 241.890625 26.8125 C 241.773438 26.8125 241.679688 26.90625 241.679688 27.023438 C 241.679688 27.140625 241.773438 27.234375 241.890625 27.234375 C 242.007812 27.234375 242.101562 27.140625 242.101562 27.023438 Z M 242.101562 27.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.324219 26.839844 C 240.324219 26.722656 240.230469 26.628906 240.113281 26.628906 C 239.996094 26.628906 239.902344 26.722656 239.902344 26.839844 C 239.902344 26.957031 239.996094 27.050781 240.113281 27.050781 C 240.230469 27.050781 240.324219 26.957031 240.324219 26.839844 Z M 240.324219 26.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.363281 28 C 243.363281 27.882812 243.269531 27.789062 243.152344 27.789062 C 243.035156 27.789062 242.941406 27.882812 242.941406 28 C 242.941406 28.117188 243.035156 28.210938 243.152344 28.210938 C 243.269531 28.210938 243.363281 28.117188 243.363281 28 Z M 243.363281 28 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.515625 26.734375 C 243.515625 26.617188 243.421875 26.523438 243.304688 26.523438 C 243.1875 26.523438 243.09375 26.617188 243.09375 26.734375 C 243.09375 26.851562 243.1875 26.945312 243.304688 26.945312 C 243.421875 26.945312 243.515625 26.851562 243.515625 26.734375 Z M 243.515625 26.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.164062 27.042969 C 243.164062 26.925781 243.070312 26.832031 242.953125 26.832031 C 242.835938 26.832031 242.742188 26.925781 242.742188 27.042969 C 242.742188 27.160156 242.835938 27.253906 242.953125 27.253906 C 243.070312 27.253906 243.164062 27.160156 243.164062 27.042969 Z M 243.164062 27.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.699219 22.742188 C 244.699219 22.625 244.605469 22.53125 244.488281 22.53125 C 244.371094 22.53125 244.277344 22.625 244.277344 22.742188 C 244.277344 22.859375 244.371094 22.953125 244.488281 22.953125 C 244.605469 22.953125 244.699219 22.859375 244.699219 22.742188 Z M 244.699219 22.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.765625 22.207031 C 241.765625 22.089844 241.671875 21.996094 241.554688 21.996094 C 241.4375 21.996094 241.34375 22.089844 241.34375 22.207031 C 241.34375 22.324219 241.4375 22.417969 241.554688 22.417969 C 241.671875 22.417969 241.765625 22.324219 241.765625 22.207031 Z M 241.765625 22.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.980469 20.730469 C 238.980469 20.613281 238.886719 20.519531 238.769531 20.519531 C 238.652344 20.519531 238.558594 20.613281 238.558594 20.730469 C 238.558594 20.847656 238.652344 20.941406 238.769531 20.941406 C 238.886719 20.941406 238.980469 20.847656 238.980469 20.730469 Z M 238.980469 20.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.605469 20.339844 C 239.605469 20.222656 239.511719 20.128906 239.394531 20.128906 C 239.277344 20.128906 239.183594 20.222656 239.183594 20.339844 C 239.183594 20.457031 239.277344 20.550781 239.394531 20.550781 C 239.511719 20.550781 239.605469 20.457031 239.605469 20.339844 Z M 239.605469 20.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.324219 19.648438 C 240.324219 19.53125 240.230469 19.4375 240.113281 19.4375 C 239.996094 19.4375 239.902344 19.53125 239.902344 19.648438 C 239.902344 19.765625 239.996094 19.859375 240.113281 19.859375 C 240.230469 19.859375 240.324219 19.765625 240.324219 19.648438 Z M 240.324219 19.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.542969 17.566406 C 241.542969 17.449219 241.449219 17.355469 241.332031 17.355469 C 241.214844 17.355469 241.121094 17.449219 241.121094 17.566406 C 241.121094 17.683594 241.214844 17.777344 241.332031 17.777344 C 241.449219 17.777344 241.542969 17.683594 241.542969 17.566406 Z M 241.542969 17.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.648438 18.398438 C 241.648438 18.28125 241.554688 18.1875 241.4375 18.1875 C 241.320312 18.1875 241.226562 18.28125 241.226562 18.398438 C 241.226562 18.515625 241.320312 18.609375 241.4375 18.609375 C 241.554688 18.609375 241.648438 18.515625 241.648438 18.398438 Z M 241.648438 18.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.125 17.75 C 241.125 17.632812 241.03125 17.539062 240.914062 17.539062 C 240.796875 17.539062 240.703125 17.632812 240.703125 17.75 C 240.703125 17.867188 240.796875 17.960938 240.914062 17.960938 C 241.03125 17.960938 241.125 17.867188 241.125 17.75 Z M 241.125 17.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.953125 17.746094 C 242.953125 17.628906 242.859375 17.535156 242.742188 17.535156 C 242.625 17.535156 242.53125 17.628906 242.53125 17.746094 C 242.53125 17.863281 242.625 17.957031 242.742188 17.957031 C 242.859375 17.957031 242.953125 17.863281 242.953125 17.746094 Z M 242.953125 17.746094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.308594 18.523438 C 242.308594 18.40625 242.214844 18.3125 242.097656 18.3125 C 241.980469 18.3125 241.886719 18.40625 241.886719 18.523438 C 241.886719 18.640625 241.980469 18.734375 242.097656 18.734375 C 242.214844 18.734375 242.308594 18.640625 242.308594 18.523438 Z M 242.308594 18.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.765625 15.660156 C 239.765625 15.542969 239.671875 15.449219 239.554688 15.449219 C 239.4375 15.449219 239.34375 15.542969 239.34375 15.660156 C 239.34375 15.777344 239.4375 15.871094 239.554688 15.871094 C 239.671875 15.871094 239.765625 15.777344 239.765625 15.660156 Z M 239.765625 15.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.714844 15.019531 C 240.714844 14.902344 240.621094 14.808594 240.503906 14.808594 C 240.386719 14.808594 240.292969 14.902344 240.292969 15.019531 C 240.292969 15.136719 240.386719 15.230469 240.503906 15.230469 C 240.621094 15.230469 240.714844 15.136719 240.714844 15.019531 Z M 240.714844 15.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.71875 12.332031 C 244.71875 12.214844 244.625 12.121094 244.507812 12.121094 C 244.390625 12.121094 244.296875 12.214844 244.296875 12.332031 C 244.296875 12.449219 244.390625 12.542969 244.507812 12.542969 C 244.625 12.542969 244.71875 12.449219 244.71875 12.332031 Z M 244.71875 12.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.601562 9.328125 C 243.601562 9.210938 243.507812 9.117188 243.390625 9.117188 C 243.273438 9.117188 243.179688 9.210938 243.179688 9.328125 C 243.179688 9.445312 243.273438 9.539062 243.390625 9.539062 C 243.507812 9.539062 243.601562 9.445312 243.601562 9.328125 Z M 243.601562 9.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.109375 14.554688 C 244.109375 14.4375 244.015625 14.34375 243.898438 14.34375 C 243.78125 14.34375 243.6875 14.4375 243.6875 14.554688 C 243.6875 14.671875 243.78125 14.765625 243.898438 14.765625 C 244.015625 14.765625 244.109375 14.671875 244.109375 14.554688 Z M 244.109375 14.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.777344 14.753906 C 242.777344 14.636719 242.683594 14.542969 242.566406 14.542969 C 242.449219 14.542969 242.355469 14.636719 242.355469 14.753906 C 242.355469 14.871094 242.449219 14.964844 242.566406 14.964844 C 242.683594 14.964844 242.777344 14.871094 242.777344 14.753906 Z M 242.777344 14.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.730469 14.773438 C 240.730469 14.65625 240.636719 14.5625 240.519531 14.5625 C 240.402344 14.5625 240.308594 14.65625 240.308594 14.773438 C 240.308594 14.890625 240.402344 14.984375 240.519531 14.984375 C 240.636719 14.984375 240.730469 14.890625 240.730469 14.773438 Z M 240.730469 14.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.273438 15.835938 C 240.273438 15.71875 240.179688 15.625 240.0625 15.625 C 239.945312 15.625 239.851562 15.71875 239.851562 15.835938 C 239.851562 15.953125 239.945312 16.046875 240.0625 16.046875 C 240.179688 16.046875 240.273438 15.953125 240.273438 15.835938 Z M 240.273438 15.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.203125 13.84375 C 240.203125 13.726562 240.109375 13.632812 239.992188 13.632812 C 239.875 13.632812 239.78125 13.726562 239.78125 13.84375 C 239.78125 13.960938 239.875 14.054688 239.992188 14.054688 C 240.109375 14.054688 240.203125 13.960938 240.203125 13.84375 Z M 240.203125 13.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.949219 12.183594 C 240.949219 12.066406 240.855469 11.972656 240.738281 11.972656 C 240.621094 11.972656 240.527344 12.066406 240.527344 12.183594 C 240.527344 12.300781 240.621094 12.394531 240.738281 12.394531 C 240.855469 12.394531 240.949219 12.300781 240.949219 12.183594 Z M 240.949219 12.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.382812 13.003906 C 242.382812 12.886719 242.289062 12.792969 242.171875 12.792969 C 242.054688 12.792969 241.960938 12.886719 241.960938 13.003906 C 241.960938 13.121094 242.054688 13.214844 242.171875 13.214844 C 242.289062 13.214844 242.382812 13.121094 242.382812 13.003906 Z M 242.382812 13.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.390625 11.03125 C 242.390625 10.914062 242.296875 10.820312 242.179688 10.820312 C 242.0625 10.820312 241.96875 10.914062 241.96875 11.03125 C 241.96875 11.148438 242.0625 11.242188 242.179688 11.242188 C 242.296875 11.242188 242.390625 11.148438 242.390625 11.03125 Z M 242.390625 11.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.925781 4.457031 C 237.925781 4.339844 237.832031 4.246094 237.714844 4.246094 C 237.597656 4.246094 237.503906 4.339844 237.503906 4.457031 C 237.503906 4.574219 237.597656 4.667969 237.714844 4.667969 C 237.832031 4.667969 237.925781 4.574219 237.925781 4.457031 Z M 237.925781 4.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.480469 5.507812 C 242.480469 5.390625 242.386719 5.296875 242.269531 5.296875 C 242.152344 5.296875 242.058594 5.390625 242.058594 5.507812 C 242.058594 5.625 242.152344 5.71875 242.269531 5.71875 C 242.386719 5.71875 242.480469 5.625 242.480469 5.507812 Z M 242.480469 5.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.3125 7.039062 C 240.3125 6.921875 240.21875 6.828125 240.101562 6.828125 C 239.984375 6.828125 239.890625 6.921875 239.890625 7.039062 C 239.890625 7.15625 239.984375 7.25 240.101562 7.25 C 240.21875 7.25 240.3125 7.15625 240.3125 7.039062 Z M 240.3125 7.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.3125 9.34375 C 241.3125 9.226562 241.21875 9.132812 241.101562 9.132812 C 240.984375 9.132812 240.890625 9.226562 240.890625 9.34375 C 240.890625 9.460938 240.984375 9.554688 241.101562 9.554688 C 241.21875 9.554688 241.3125 9.460938 241.3125 9.34375 Z M 241.3125 9.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.429688 11.273438 C 240.429688 11.15625 240.335938 11.0625 240.21875 11.0625 C 240.101562 11.0625 240.007812 11.15625 240.007812 11.273438 C 240.007812 11.390625 240.101562 11.484375 240.21875 11.484375 C 240.335938 11.484375 240.429688 11.390625 240.429688 11.273438 Z M 240.429688 11.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.476562 11.253906 C 240.476562 11.136719 240.382812 11.042969 240.265625 11.042969 C 240.148438 11.042969 240.054688 11.136719 240.054688 11.253906 C 240.054688 11.371094 240.148438 11.464844 240.265625 11.464844 C 240.382812 11.464844 240.476562 11.371094 240.476562 11.253906 Z M 240.476562 11.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.667969 9.234375 C 245.667969 9.117188 245.574219 9.023438 245.457031 9.023438 C 245.339844 9.023438 245.246094 9.117188 245.246094 9.234375 C 245.246094 9.351562 245.339844 9.445312 245.457031 9.445312 C 245.574219 9.445312 245.667969 9.351562 245.667969 9.234375 Z M 245.667969 9.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.589844 11.101562 C 243.589844 10.984375 243.496094 10.890625 243.378906 10.890625 C 243.261719 10.890625 243.167969 10.984375 243.167969 11.101562 C 243.167969 11.21875 243.261719 11.3125 243.378906 11.3125 C 243.496094 11.3125 243.589844 11.21875 243.589844 11.101562 Z M 243.589844 11.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.902344 8.269531 C 244.902344 8.152344 244.808594 8.058594 244.691406 8.058594 C 244.574219 8.058594 244.480469 8.152344 244.480469 8.269531 C 244.480469 8.386719 244.574219 8.480469 244.691406 8.480469 C 244.808594 8.480469 244.902344 8.386719 244.902344 8.269531 Z M 244.902344 8.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.363281 7.09375 C 245.363281 6.976562 245.269531 6.882812 245.152344 6.882812 C 245.035156 6.882812 244.941406 6.976562 244.941406 7.09375 C 244.941406 7.210938 245.035156 7.304688 245.152344 7.304688 C 245.269531 7.304688 245.363281 7.210938 245.363281 7.09375 Z M 245.363281 7.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.425781 8.53125 C 246.425781 8.414062 246.332031 8.320312 246.214844 8.320312 C 246.097656 8.320312 246.003906 8.414062 246.003906 8.53125 C 246.003906 8.648438 246.097656 8.742188 246.214844 8.742188 C 246.332031 8.742188 246.425781 8.648438 246.425781 8.53125 Z M 246.425781 8.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.84375 12.082031 C 242.84375 11.964844 242.75 11.871094 242.632812 11.871094 C 242.515625 11.871094 242.421875 11.964844 242.421875 12.082031 C 242.421875 12.199219 242.515625 12.292969 242.632812 12.292969 C 242.75 12.292969 242.84375 12.199219 242.84375 12.082031 Z M 242.84375 12.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.554688 13.199219 C 239.554688 13.082031 239.460938 12.988281 239.34375 12.988281 C 239.226562 12.988281 239.132812 13.082031 239.132812 13.199219 C 239.132812 13.316406 239.226562 13.410156 239.34375 13.410156 C 239.460938 13.410156 239.554688 13.316406 239.554688 13.199219 Z M 239.554688 13.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.183594 13.742188 C 235.183594 13.625 235.089844 13.53125 234.972656 13.53125 C 234.855469 13.53125 234.761719 13.625 234.761719 13.742188 C 234.761719 13.859375 234.855469 13.953125 234.972656 13.953125 C 235.089844 13.953125 235.183594 13.859375 235.183594 13.742188 Z M 235.183594 13.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.101562 15.34375 C 236.101562 15.226562 236.007812 15.132812 235.890625 15.132812 C 235.773438 15.132812 235.679688 15.226562 235.679688 15.34375 C 235.679688 15.460938 235.773438 15.554688 235.890625 15.554688 C 236.007812 15.554688 236.101562 15.460938 236.101562 15.34375 Z M 236.101562 15.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.289062 14.621094 C 234.289062 14.503906 234.195312 14.410156 234.078125 14.410156 C 233.960938 14.410156 233.867188 14.503906 233.867188 14.621094 C 233.867188 14.738281 233.960938 14.832031 234.078125 14.832031 C 234.195312 14.832031 234.289062 14.738281 234.289062 14.621094 Z M 234.289062 14.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.550781 15.3125 C 233.550781 15.195312 233.457031 15.101562 233.339844 15.101562 C 233.222656 15.101562 233.128906 15.195312 233.128906 15.3125 C 233.128906 15.429688 233.222656 15.523438 233.339844 15.523438 C 233.457031 15.523438 233.550781 15.429688 233.550781 15.3125 Z M 233.550781 15.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.445312 15.5625 C 233.445312 15.445312 233.351562 15.351562 233.234375 15.351562 C 233.117188 15.351562 233.023438 15.445312 233.023438 15.5625 C 233.023438 15.679688 233.117188 15.773438 233.234375 15.773438 C 233.351562 15.773438 233.445312 15.679688 233.445312 15.5625 Z M 233.445312 15.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.785156 15.230469 C 234.785156 15.113281 234.691406 15.019531 234.574219 15.019531 C 234.457031 15.019531 234.363281 15.113281 234.363281 15.230469 C 234.363281 15.347656 234.457031 15.441406 234.574219 15.441406 C 234.691406 15.441406 234.785156 15.347656 234.785156 15.230469 Z M 234.785156 15.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.359375 11.3125 C 232.359375 11.195312 232.265625 11.101562 232.148438 11.101562 C 232.03125 11.101562 231.9375 11.195312 231.9375 11.3125 C 231.9375 11.429688 232.03125 11.523438 232.148438 11.523438 C 232.265625 11.523438 232.359375 11.429688 232.359375 11.3125 Z M 232.359375 11.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.8125 13.015625 C 234.8125 12.898438 234.71875 12.804688 234.601562 12.804688 C 234.484375 12.804688 234.390625 12.898438 234.390625 13.015625 C 234.390625 13.132812 234.484375 13.226562 234.601562 13.226562 C 234.71875 13.226562 234.8125 13.132812 234.8125 13.015625 Z M 234.8125 13.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.035156 13.902344 C 237.035156 13.785156 236.941406 13.691406 236.824219 13.691406 C 236.707031 13.691406 236.613281 13.785156 236.613281 13.902344 C 236.613281 14.019531 236.707031 14.113281 236.824219 14.113281 C 236.941406 14.113281 237.035156 14.019531 237.035156 13.902344 Z M 237.035156 13.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.777344 12.722656 C 238.777344 12.605469 238.683594 12.511719 238.566406 12.511719 C 238.449219 12.511719 238.355469 12.605469 238.355469 12.722656 C 238.355469 12.839844 238.449219 12.933594 238.566406 12.933594 C 238.683594 12.933594 238.777344 12.839844 238.777344 12.722656 Z M 238.777344 12.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.433594 14.878906 C 238.433594 14.761719 238.339844 14.667969 238.222656 14.667969 C 238.105469 14.667969 238.011719 14.761719 238.011719 14.878906 C 238.011719 14.996094 238.105469 15.089844 238.222656 15.089844 C 238.339844 15.089844 238.433594 14.996094 238.433594 14.878906 Z M 238.433594 14.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.3125 17.214844 C 235.3125 17.097656 235.21875 17.003906 235.101562 17.003906 C 234.984375 17.003906 234.890625 17.097656 234.890625 17.214844 C 234.890625 17.332031 234.984375 17.425781 235.101562 17.425781 C 235.21875 17.425781 235.3125 17.332031 235.3125 17.214844 Z M 235.3125 17.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.9375 20.527344 C 239.9375 20.410156 239.84375 20.316406 239.726562 20.316406 C 239.609375 20.316406 239.515625 20.410156 239.515625 20.527344 C 239.515625 20.644531 239.609375 20.738281 239.726562 20.738281 C 239.84375 20.738281 239.9375 20.644531 239.9375 20.527344 Z M 239.9375 20.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.050781 22.984375 C 241.050781 22.867188 240.957031 22.773438 240.839844 22.773438 C 240.722656 22.773438 240.628906 22.867188 240.628906 22.984375 C 240.628906 23.101562 240.722656 23.195312 240.839844 23.195312 C 240.957031 23.195312 241.050781 23.101562 241.050781 22.984375 Z M 241.050781 22.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.460938 24.691406 C 239.460938 24.574219 239.367188 24.480469 239.25 24.480469 C 239.132812 24.480469 239.039062 24.574219 239.039062 24.691406 C 239.039062 24.808594 239.132812 24.902344 239.25 24.902344 C 239.367188 24.902344 239.460938 24.808594 239.460938 24.691406 Z M 239.460938 24.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.25 24.6875 C 241.25 24.570312 241.15625 24.476562 241.039062 24.476562 C 240.921875 24.476562 240.828125 24.570312 240.828125 24.6875 C 240.828125 24.804688 240.921875 24.898438 241.039062 24.898438 C 241.15625 24.898438 241.25 24.804688 241.25 24.6875 Z M 241.25 24.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.992188 26.113281 C 240.992188 25.996094 240.898438 25.902344 240.78125 25.902344 C 240.664062 25.902344 240.570312 25.996094 240.570312 26.113281 C 240.570312 26.230469 240.664062 26.324219 240.78125 26.324219 C 240.898438 26.324219 240.992188 26.230469 240.992188 26.113281 Z M 240.992188 26.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.75 27.867188 C 238.75 27.75 238.65625 27.65625 238.539062 27.65625 C 238.421875 27.65625 238.328125 27.75 238.328125 27.867188 C 238.328125 27.984375 238.421875 28.078125 238.539062 28.078125 C 238.65625 28.078125 238.75 27.984375 238.75 27.867188 Z M 238.75 27.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.890625 26.203125 C 235.890625 26.085938 235.796875 25.992188 235.679688 25.992188 C 235.5625 25.992188 235.46875 26.085938 235.46875 26.203125 C 235.46875 26.320312 235.5625 26.414062 235.679688 26.414062 C 235.796875 26.414062 235.890625 26.320312 235.890625 26.203125 Z M 235.890625 26.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.71875 23.179688 C 233.71875 23.0625 233.625 22.96875 233.507812 22.96875 C 233.390625 22.96875 233.296875 23.0625 233.296875 23.179688 C 233.296875 23.296875 233.390625 23.390625 233.507812 23.390625 C 233.625 23.390625 233.71875 23.296875 233.71875 23.179688 Z M 233.71875 23.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.25 25.867188 C 237.25 25.75 237.15625 25.65625 237.039062 25.65625 C 236.921875 25.65625 236.828125 25.75 236.828125 25.867188 C 236.828125 25.984375 236.921875 26.078125 237.039062 26.078125 C 237.15625 26.078125 237.25 25.984375 237.25 25.867188 Z M 237.25 25.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.859375 23.550781 C 234.859375 23.433594 234.765625 23.339844 234.648438 23.339844 C 234.53125 23.339844 234.4375 23.433594 234.4375 23.550781 C 234.4375 23.667969 234.53125 23.761719 234.648438 23.761719 C 234.765625 23.761719 234.859375 23.667969 234.859375 23.550781 Z M 234.859375 23.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.09375 22.75 C 234.09375 22.632812 234 22.539062 233.882812 22.539062 C 233.765625 22.539062 233.671875 22.632812 233.671875 22.75 C 233.671875 22.867188 233.765625 22.960938 233.882812 22.960938 C 234 22.960938 234.09375 22.867188 234.09375 22.75 Z M 234.09375 22.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.605469 26.140625 C 232.605469 26.023438 232.511719 25.929688 232.394531 25.929688 C 232.277344 25.929688 232.183594 26.023438 232.183594 26.140625 C 232.183594 26.257812 232.277344 26.351562 232.394531 26.351562 C 232.511719 26.351562 232.605469 26.257812 232.605469 26.140625 Z M 232.605469 26.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.105469 25.828125 C 235.105469 25.710938 235.011719 25.617188 234.894531 25.617188 C 234.777344 25.617188 234.683594 25.710938 234.683594 25.828125 C 234.683594 25.945312 234.777344 26.039062 234.894531 26.039062 C 235.011719 26.039062 235.105469 25.945312 235.105469 25.828125 Z M 235.105469 25.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.253906 22.089844 C 237.253906 21.972656 237.160156 21.878906 237.042969 21.878906 C 236.925781 21.878906 236.832031 21.972656 236.832031 22.089844 C 236.832031 22.207031 236.925781 22.300781 237.042969 22.300781 C 237.160156 22.300781 237.253906 22.207031 237.253906 22.089844 Z M 237.253906 22.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.042969 25.75 C 239.042969 25.632812 238.949219 25.539062 238.832031 25.539062 C 238.714844 25.539062 238.621094 25.632812 238.621094 25.75 C 238.621094 25.867188 238.714844 25.960938 238.832031 25.960938 C 238.949219 25.960938 239.042969 25.867188 239.042969 25.75 Z M 239.042969 25.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.464844 25.789062 C 237.464844 25.671875 237.371094 25.578125 237.253906 25.578125 C 237.136719 25.578125 237.042969 25.671875 237.042969 25.789062 C 237.042969 25.90625 237.136719 26 237.253906 26 C 237.371094 26 237.464844 25.90625 237.464844 25.789062 Z M 237.464844 25.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.351562 26.058594 C 238.351562 25.941406 238.257812 25.847656 238.140625 25.847656 C 238.023438 25.847656 237.929688 25.941406 237.929688 26.058594 C 237.929688 26.175781 238.023438 26.269531 238.140625 26.269531 C 238.257812 26.269531 238.351562 26.175781 238.351562 26.058594 Z M 238.351562 26.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.492188 27.542969 C 238.492188 27.425781 238.398438 27.332031 238.28125 27.332031 C 238.164062 27.332031 238.070312 27.425781 238.070312 27.542969 C 238.070312 27.660156 238.164062 27.753906 238.28125 27.753906 C 238.398438 27.753906 238.492188 27.660156 238.492188 27.542969 Z M 238.492188 27.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.316406 26.726562 C 238.316406 26.609375 238.222656 26.515625 238.105469 26.515625 C 237.988281 26.515625 237.894531 26.609375 237.894531 26.726562 C 237.894531 26.84375 237.988281 26.9375 238.105469 26.9375 C 238.222656 26.9375 238.316406 26.84375 238.316406 26.726562 Z M 238.316406 26.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.300781 28.71875 C 236.300781 28.601562 236.207031 28.507812 236.089844 28.507812 C 235.972656 28.507812 235.878906 28.601562 235.878906 28.71875 C 235.878906 28.835938 235.972656 28.929688 236.089844 28.929688 C 236.207031 28.929688 236.300781 28.835938 236.300781 28.71875 Z M 236.300781 28.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.648438 25.699219 C 239.648438 25.582031 239.554688 25.488281 239.4375 25.488281 C 239.320312 25.488281 239.226562 25.582031 239.226562 25.699219 C 239.226562 25.816406 239.320312 25.910156 239.4375 25.910156 C 239.554688 25.910156 239.648438 25.816406 239.648438 25.699219 Z M 239.648438 25.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.597656 26.886719 C 238.597656 26.769531 238.503906 26.675781 238.386719 26.675781 C 238.269531 26.675781 238.175781 26.769531 238.175781 26.886719 C 238.175781 27.003906 238.269531 27.097656 238.386719 27.097656 C 238.503906 27.097656 238.597656 27.003906 238.597656 26.886719 Z M 238.597656 26.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.089844 27.246094 C 239.089844 27.128906 238.996094 27.035156 238.878906 27.035156 C 238.761719 27.035156 238.667969 27.128906 238.667969 27.246094 C 238.667969 27.363281 238.761719 27.457031 238.878906 27.457031 C 238.996094 27.457031 239.089844 27.363281 239.089844 27.246094 Z M 239.089844 27.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.898438 26.601562 C 240.898438 26.484375 240.804688 26.390625 240.6875 26.390625 C 240.570312 26.390625 240.476562 26.484375 240.476562 26.601562 C 240.476562 26.71875 240.570312 26.8125 240.6875 26.8125 C 240.804688 26.8125 240.898438 26.71875 240.898438 26.601562 Z M 240.898438 26.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.128906 27.023438 C 241.128906 26.90625 241.035156 26.8125 240.917969 26.8125 C 240.800781 26.8125 240.707031 26.90625 240.707031 27.023438 C 240.707031 27.140625 240.800781 27.234375 240.917969 27.234375 C 241.035156 27.234375 241.128906 27.140625 241.128906 27.023438 Z M 241.128906 27.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.179688 26.46875 C 241.179688 26.351562 241.085938 26.257812 240.96875 26.257812 C 240.851562 26.257812 240.757812 26.351562 240.757812 26.46875 C 240.757812 26.585938 240.851562 26.679688 240.96875 26.679688 C 241.085938 26.679688 241.179688 26.585938 241.179688 26.46875 Z M 241.179688 26.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.929688 29.414062 C 239.929688 29.296875 239.835938 29.203125 239.71875 29.203125 C 239.601562 29.203125 239.507812 29.296875 239.507812 29.414062 C 239.507812 29.53125 239.601562 29.625 239.71875 29.625 C 239.835938 29.625 239.929688 29.53125 239.929688 29.414062 Z M 239.929688 29.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.277344 28.089844 C 243.277344 27.972656 243.183594 27.878906 243.066406 27.878906 C 242.949219 27.878906 242.855469 27.972656 242.855469 28.089844 C 242.855469 28.207031 242.949219 28.300781 243.066406 28.300781 C 243.183594 28.300781 243.277344 28.207031 243.277344 28.089844 Z M 243.277344 28.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.03125 29.625 C 241.03125 29.507812 240.9375 29.414062 240.820312 29.414062 C 240.703125 29.414062 240.609375 29.507812 240.609375 29.625 C 240.609375 29.742188 240.703125 29.835938 240.820312 29.835938 C 240.9375 29.835938 241.03125 29.742188 241.03125 29.625 Z M 241.03125 29.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.871094 31.253906 C 238.871094 31.136719 238.777344 31.042969 238.660156 31.042969 C 238.542969 31.042969 238.449219 31.136719 238.449219 31.253906 C 238.449219 31.371094 238.542969 31.464844 238.660156 31.464844 C 238.777344 31.464844 238.871094 31.371094 238.871094 31.253906 Z M 238.871094 31.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.144531 30.554688 C 241.144531 30.4375 241.050781 30.34375 240.933594 30.34375 C 240.816406 30.34375 240.722656 30.4375 240.722656 30.554688 C 240.722656 30.671875 240.816406 30.765625 240.933594 30.765625 C 241.050781 30.765625 241.144531 30.671875 241.144531 30.554688 Z M 241.144531 30.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.445312 30.980469 C 239.445312 30.863281 239.351562 30.769531 239.234375 30.769531 C 239.117188 30.769531 239.023438 30.863281 239.023438 30.980469 C 239.023438 31.097656 239.117188 31.191406 239.234375 31.191406 C 239.351562 31.191406 239.445312 31.097656 239.445312 30.980469 Z M 239.445312 30.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.015625 30.949219 C 240.015625 30.832031 239.921875 30.738281 239.804688 30.738281 C 239.6875 30.738281 239.59375 30.832031 239.59375 30.949219 C 239.59375 31.066406 239.6875 31.160156 239.804688 31.160156 C 239.921875 31.160156 240.015625 31.066406 240.015625 30.949219 Z M 240.015625 30.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.160156 34.316406 C 240.160156 34.199219 240.066406 34.105469 239.949219 34.105469 C 239.832031 34.105469 239.738281 34.199219 239.738281 34.316406 C 239.738281 34.433594 239.832031 34.527344 239.949219 34.527344 C 240.066406 34.527344 240.160156 34.433594 240.160156 34.316406 Z M 240.160156 34.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.554688 37.414062 C 242.554688 37.296875 242.460938 37.203125 242.34375 37.203125 C 242.226562 37.203125 242.132812 37.296875 242.132812 37.414062 C 242.132812 37.53125 242.226562 37.625 242.34375 37.625 C 242.460938 37.625 242.554688 37.53125 242.554688 37.414062 Z M 242.554688 37.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.273438 35.679688 C 239.273438 35.5625 239.179688 35.46875 239.0625 35.46875 C 238.945312 35.46875 238.851562 35.5625 238.851562 35.679688 C 238.851562 35.796875 238.945312 35.890625 239.0625 35.890625 C 239.179688 35.890625 239.273438 35.796875 239.273438 35.679688 Z M 239.273438 35.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.992188 35.671875 C 238.992188 35.554688 238.898438 35.460938 238.78125 35.460938 C 238.664062 35.460938 238.570312 35.554688 238.570312 35.671875 C 238.570312 35.789062 238.664062 35.882812 238.78125 35.882812 C 238.898438 35.882812 238.992188 35.789062 238.992188 35.671875 Z M 238.992188 35.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.25 35.8125 C 241.25 35.695312 241.15625 35.601562 241.039062 35.601562 C 240.921875 35.601562 240.828125 35.695312 240.828125 35.8125 C 240.828125 35.929688 240.921875 36.023438 241.039062 36.023438 C 241.15625 36.023438 241.25 35.929688 241.25 35.8125 Z M 241.25 35.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.960938 35.425781 C 244.960938 35.308594 244.867188 35.214844 244.75 35.214844 C 244.632812 35.214844 244.539062 35.308594 244.539062 35.425781 C 244.539062 35.542969 244.632812 35.636719 244.75 35.636719 C 244.867188 35.636719 244.960938 35.542969 244.960938 35.425781 Z M 244.960938 35.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.246094 37.453125 C 244.246094 37.335938 244.152344 37.242188 244.035156 37.242188 C 243.917969 37.242188 243.824219 37.335938 243.824219 37.453125 C 243.824219 37.570312 243.917969 37.664062 244.035156 37.664062 C 244.152344 37.664062 244.246094 37.570312 244.246094 37.453125 Z M 244.246094 37.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.851562 34.257812 C 244.851562 34.140625 244.757812 34.046875 244.640625 34.046875 C 244.523438 34.046875 244.429688 34.140625 244.429688 34.257812 C 244.429688 34.375 244.523438 34.46875 244.640625 34.46875 C 244.757812 34.46875 244.851562 34.375 244.851562 34.257812 Z M 244.851562 34.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.746094 33.039062 C 244.746094 32.921875 244.652344 32.828125 244.535156 32.828125 C 244.417969 32.828125 244.324219 32.921875 244.324219 33.039062 C 244.324219 33.15625 244.417969 33.25 244.535156 33.25 C 244.652344 33.25 244.746094 33.15625 244.746094 33.039062 Z M 244.746094 33.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.101562 32.511719 C 243.101562 32.394531 243.007812 32.300781 242.890625 32.300781 C 242.773438 32.300781 242.679688 32.394531 242.679688 32.511719 C 242.679688 32.628906 242.773438 32.722656 242.890625 32.722656 C 243.007812 32.722656 243.101562 32.628906 243.101562 32.511719 Z M 243.101562 32.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.320312 29.878906 C 245.320312 29.761719 245.226562 29.667969 245.109375 29.667969 C 244.992188 29.667969 244.898438 29.761719 244.898438 29.878906 C 244.898438 29.996094 244.992188 30.089844 245.109375 30.089844 C 245.226562 30.089844 245.320312 29.996094 245.320312 29.878906 Z M 245.320312 29.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.667969 29.316406 C 245.667969 29.199219 245.574219 29.105469 245.457031 29.105469 C 245.339844 29.105469 245.246094 29.199219 245.246094 29.316406 C 245.246094 29.433594 245.339844 29.527344 245.457031 29.527344 C 245.574219 29.527344 245.667969 29.433594 245.667969 29.316406 Z M 245.667969 29.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.867188 29.144531 C 247.867188 29.027344 247.773438 28.933594 247.65625 28.933594 C 247.539062 28.933594 247.445312 29.027344 247.445312 29.144531 C 247.445312 29.261719 247.539062 29.355469 247.65625 29.355469 C 247.773438 29.355469 247.867188 29.261719 247.867188 29.144531 Z M 247.867188 29.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.347656 26.285156 C 251.347656 26.167969 251.253906 26.074219 251.136719 26.074219 C 251.019531 26.074219 250.925781 26.167969 250.925781 26.285156 C 250.925781 26.402344 251.019531 26.496094 251.136719 26.496094 C 251.253906 26.496094 251.347656 26.402344 251.347656 26.285156 Z M 251.347656 26.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.621094 25.902344 C 250.621094 25.785156 250.527344 25.691406 250.410156 25.691406 C 250.292969 25.691406 250.199219 25.785156 250.199219 25.902344 C 250.199219 26.019531 250.292969 26.113281 250.410156 26.113281 C 250.527344 26.113281 250.621094 26.019531 250.621094 25.902344 Z M 250.621094 25.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.726562 25.921875 C 253.726562 25.804688 253.632812 25.710938 253.515625 25.710938 C 253.398438 25.710938 253.304688 25.804688 253.304688 25.921875 C 253.304688 26.039062 253.398438 26.132812 253.515625 26.132812 C 253.632812 26.132812 253.726562 26.039062 253.726562 25.921875 Z M 253.726562 25.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.078125 25.46875 C 250.078125 25.351562 249.984375 25.257812 249.867188 25.257812 C 249.75 25.257812 249.65625 25.351562 249.65625 25.46875 C 249.65625 25.585938 249.75 25.679688 249.867188 25.679688 C 249.984375 25.679688 250.078125 25.585938 250.078125 25.46875 Z M 250.078125 25.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.730469 21.96875 C 249.730469 21.851562 249.636719 21.757812 249.519531 21.757812 C 249.402344 21.757812 249.308594 21.851562 249.308594 21.96875 C 249.308594 22.085938 249.402344 22.179688 249.519531 22.179688 C 249.636719 22.179688 249.730469 22.085938 249.730469 21.96875 Z M 249.730469 21.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.257812 24.648438 C 252.257812 24.53125 252.164062 24.4375 252.046875 24.4375 C 251.929688 24.4375 251.835938 24.53125 251.835938 24.648438 C 251.835938 24.765625 251.929688 24.859375 252.046875 24.859375 C 252.164062 24.859375 252.257812 24.765625 252.257812 24.648438 Z M 252.257812 24.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.230469 22.753906 C 252.230469 22.636719 252.136719 22.542969 252.019531 22.542969 C 251.902344 22.542969 251.808594 22.636719 251.808594 22.753906 C 251.808594 22.871094 251.902344 22.964844 252.019531 22.964844 C 252.136719 22.964844 252.230469 22.871094 252.230469 22.753906 Z M 252.230469 22.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.074219 19.601562 C 252.074219 19.484375 251.980469 19.390625 251.863281 19.390625 C 251.746094 19.390625 251.652344 19.484375 251.652344 19.601562 C 251.652344 19.71875 251.746094 19.8125 251.863281 19.8125 C 251.980469 19.8125 252.074219 19.71875 252.074219 19.601562 Z M 252.074219 19.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.648438 21.449219 C 257.648438 21.332031 257.554688 21.238281 257.4375 21.238281 C 257.320312 21.238281 257.226562 21.332031 257.226562 21.449219 C 257.226562 21.566406 257.320312 21.660156 257.4375 21.660156 C 257.554688 21.660156 257.648438 21.566406 257.648438 21.449219 Z M 257.648438 21.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.84375 22.90625 C 259.84375 22.789062 259.75 22.695312 259.632812 22.695312 C 259.515625 22.695312 259.421875 22.789062 259.421875 22.90625 C 259.421875 23.023438 259.515625 23.117188 259.632812 23.117188 C 259.75 23.117188 259.84375 23.023438 259.84375 22.90625 Z M 259.84375 22.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.847656 20.960938 C 263.847656 20.84375 263.753906 20.75 263.636719 20.75 C 263.519531 20.75 263.425781 20.84375 263.425781 20.960938 C 263.425781 21.078125 263.519531 21.171875 263.636719 21.171875 C 263.753906 21.171875 263.847656 21.078125 263.847656 20.960938 Z M 263.847656 20.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.648438 22.40625 C 264.648438 22.289062 264.554688 22.195312 264.4375 22.195312 C 264.320312 22.195312 264.226562 22.289062 264.226562 22.40625 C 264.226562 22.523438 264.320312 22.617188 264.4375 22.617188 C 264.554688 22.617188 264.648438 22.523438 264.648438 22.40625 Z M 264.648438 22.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.085938 23.660156 C 268.085938 23.542969 267.992188 23.449219 267.875 23.449219 C 267.757812 23.449219 267.664062 23.542969 267.664062 23.660156 C 267.664062 23.777344 267.757812 23.871094 267.875 23.871094 C 267.992188 23.871094 268.085938 23.777344 268.085938 23.660156 Z M 268.085938 23.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.765625 21.84375 C 266.765625 21.726562 266.671875 21.632812 266.554688 21.632812 C 266.4375 21.632812 266.34375 21.726562 266.34375 21.84375 C 266.34375 21.960938 266.4375 22.054688 266.554688 22.054688 C 266.671875 22.054688 266.765625 21.960938 266.765625 21.84375 Z M 266.765625 21.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 267.363281 19.277344 C 267.363281 19.160156 267.269531 19.066406 267.152344 19.066406 C 267.035156 19.066406 266.941406 19.160156 266.941406 19.277344 C 266.941406 19.394531 267.035156 19.488281 267.152344 19.488281 C 267.269531 19.488281 267.363281 19.394531 267.363281 19.277344 Z M 267.363281 19.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 267.359375 16.875 C 267.359375 16.757812 267.265625 16.664062 267.148438 16.664062 C 267.03125 16.664062 266.9375 16.757812 266.9375 16.875 C 266.9375 16.992188 267.03125 17.085938 267.148438 17.085938 C 267.265625 17.085938 267.359375 16.992188 267.359375 16.875 Z M 267.359375 16.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.089844 16.273438 C 263.089844 16.15625 262.996094 16.0625 262.878906 16.0625 C 262.761719 16.0625 262.667969 16.15625 262.667969 16.273438 C 262.667969 16.390625 262.761719 16.484375 262.878906 16.484375 C 262.996094 16.484375 263.089844 16.390625 263.089844 16.273438 Z M 263.089844 16.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.285156 15.671875 C 264.285156 15.554688 264.191406 15.460938 264.074219 15.460938 C 263.957031 15.460938 263.863281 15.554688 263.863281 15.671875 C 263.863281 15.789062 263.957031 15.882812 264.074219 15.882812 C 264.191406 15.882812 264.285156 15.789062 264.285156 15.671875 Z M 264.285156 15.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.707031 8.628906 C 264.707031 8.511719 264.613281 8.417969 264.496094 8.417969 C 264.378906 8.417969 264.285156 8.511719 264.285156 8.628906 C 264.285156 8.746094 264.378906 8.839844 264.496094 8.839844 C 264.613281 8.839844 264.707031 8.746094 264.707031 8.628906 Z M 264.707031 8.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.03125 9.332031 C 265.03125 9.214844 264.9375 9.121094 264.820312 9.121094 C 264.703125 9.121094 264.609375 9.214844 264.609375 9.332031 C 264.609375 9.449219 264.703125 9.542969 264.820312 9.542969 C 264.9375 9.542969 265.03125 9.449219 265.03125 9.332031 Z M 265.03125 9.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.636719 9.925781 C 265.636719 9.808594 265.542969 9.714844 265.425781 9.714844 C 265.308594 9.714844 265.214844 9.808594 265.214844 9.925781 C 265.214844 10.042969 265.308594 10.136719 265.425781 10.136719 C 265.542969 10.136719 265.636719 10.042969 265.636719 9.925781 Z M 265.636719 9.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.371094 10.234375 C 265.371094 10.117188 265.277344 10.023438 265.160156 10.023438 C 265.042969 10.023438 264.949219 10.117188 264.949219 10.234375 C 264.949219 10.351562 265.042969 10.445312 265.160156 10.445312 C 265.277344 10.445312 265.371094 10.351562 265.371094 10.234375 Z M 265.371094 10.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.632812 10.917969 C 262.632812 10.800781 262.539062 10.707031 262.421875 10.707031 C 262.304688 10.707031 262.210938 10.800781 262.210938 10.917969 C 262.210938 11.035156 262.304688 11.128906 262.421875 11.128906 C 262.539062 11.128906 262.632812 11.035156 262.632812 10.917969 Z M 262.632812 10.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.753906 11.722656 C 262.753906 11.605469 262.660156 11.511719 262.542969 11.511719 C 262.425781 11.511719 262.332031 11.605469 262.332031 11.722656 C 262.332031 11.839844 262.425781 11.933594 262.542969 11.933594 C 262.660156 11.933594 262.753906 11.839844 262.753906 11.722656 Z M 262.753906 11.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.46875 14.125 C 262.46875 14.007812 262.375 13.914062 262.257812 13.914062 C 262.140625 13.914062 262.046875 14.007812 262.046875 14.125 C 262.046875 14.242188 262.140625 14.335938 262.257812 14.335938 C 262.375 14.335938 262.46875 14.242188 262.46875 14.125 Z M 262.46875 14.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.089844 13.023438 C 259.089844 12.90625 258.996094 12.8125 258.878906 12.8125 C 258.761719 12.8125 258.667969 12.90625 258.667969 13.023438 C 258.667969 13.140625 258.761719 13.234375 258.878906 13.234375 C 258.996094 13.234375 259.089844 13.140625 259.089844 13.023438 Z M 259.089844 13.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.257812 11.214844 C 257.257812 11.097656 257.164062 11.003906 257.046875 11.003906 C 256.929688 11.003906 256.835938 11.097656 256.835938 11.214844 C 256.835938 11.332031 256.929688 11.425781 257.046875 11.425781 C 257.164062 11.425781 257.257812 11.332031 257.257812 11.214844 Z M 257.257812 11.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.660156 14.328125 C 255.660156 14.210938 255.566406 14.117188 255.449219 14.117188 C 255.332031 14.117188 255.238281 14.210938 255.238281 14.328125 C 255.238281 14.445312 255.332031 14.539062 255.449219 14.539062 C 255.566406 14.539062 255.660156 14.445312 255.660156 14.328125 Z M 255.660156 14.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.183594 17.828125 C 254.183594 17.710938 254.089844 17.617188 253.972656 17.617188 C 253.855469 17.617188 253.761719 17.710938 253.761719 17.828125 C 253.761719 17.945312 253.855469 18.039062 253.972656 18.039062 C 254.089844 18.039062 254.183594 17.945312 254.183594 17.828125 Z M 254.183594 17.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.480469 15.675781 C 250.480469 15.558594 250.386719 15.464844 250.269531 15.464844 C 250.152344 15.464844 250.058594 15.558594 250.058594 15.675781 C 250.058594 15.792969 250.152344 15.886719 250.269531 15.886719 C 250.386719 15.886719 250.480469 15.792969 250.480469 15.675781 Z M 250.480469 15.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.734375 13.425781 C 250.734375 13.308594 250.640625 13.214844 250.523438 13.214844 C 250.40625 13.214844 250.3125 13.308594 250.3125 13.425781 C 250.3125 13.542969 250.40625 13.636719 250.523438 13.636719 C 250.640625 13.636719 250.734375 13.542969 250.734375 13.425781 Z M 250.734375 13.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.003906 15.195312 C 247.003906 15.078125 246.910156 14.984375 246.792969 14.984375 C 246.675781 14.984375 246.582031 15.078125 246.582031 15.195312 C 246.582031 15.3125 246.675781 15.40625 246.792969 15.40625 C 246.910156 15.40625 247.003906 15.3125 247.003906 15.195312 Z M 247.003906 15.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.09375 16.296875 C 247.09375 16.179688 247 16.085938 246.882812 16.085938 C 246.765625 16.085938 246.671875 16.179688 246.671875 16.296875 C 246.671875 16.414062 246.765625 16.507812 246.882812 16.507812 C 247 16.507812 247.09375 16.414062 247.09375 16.296875 Z M 247.09375 16.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.914062 17.066406 C 245.914062 16.949219 245.820312 16.855469 245.703125 16.855469 C 245.585938 16.855469 245.492188 16.949219 245.492188 17.066406 C 245.492188 17.183594 245.585938 17.277344 245.703125 17.277344 C 245.820312 17.277344 245.914062 17.183594 245.914062 17.066406 Z M 245.914062 17.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.382812 15.253906 C 245.382812 15.136719 245.289062 15.042969 245.171875 15.042969 C 245.054688 15.042969 244.960938 15.136719 244.960938 15.253906 C 244.960938 15.371094 245.054688 15.464844 245.171875 15.464844 C 245.289062 15.464844 245.382812 15.371094 245.382812 15.253906 Z M 245.382812 15.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.339844 17.359375 C 244.339844 17.242188 244.246094 17.148438 244.128906 17.148438 C 244.011719 17.148438 243.917969 17.242188 243.917969 17.359375 C 243.917969 17.476562 244.011719 17.570312 244.128906 17.570312 C 244.246094 17.570312 244.339844 17.476562 244.339844 17.359375 Z M 244.339844 17.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.628906 15.761719 C 243.628906 15.644531 243.535156 15.550781 243.417969 15.550781 C 243.300781 15.550781 243.207031 15.644531 243.207031 15.761719 C 243.207031 15.878906 243.300781 15.972656 243.417969 15.972656 C 243.535156 15.972656 243.628906 15.878906 243.628906 15.761719 Z M 243.628906 15.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.589844 14.582031 C 244.589844 14.464844 244.496094 14.371094 244.378906 14.371094 C 244.261719 14.371094 244.167969 14.464844 244.167969 14.582031 C 244.167969 14.699219 244.261719 14.792969 244.378906 14.792969 C 244.496094 14.792969 244.589844 14.699219 244.589844 14.582031 Z M 244.589844 14.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.929688 17.554688 C 244.929688 17.4375 244.835938 17.34375 244.71875 17.34375 C 244.601562 17.34375 244.507812 17.4375 244.507812 17.554688 C 244.507812 17.671875 244.601562 17.765625 244.71875 17.765625 C 244.835938 17.765625 244.929688 17.671875 244.929688 17.554688 Z M 244.929688 17.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.03125 18.679688 C 246.03125 18.5625 245.9375 18.46875 245.820312 18.46875 C 245.703125 18.46875 245.609375 18.5625 245.609375 18.679688 C 245.609375 18.796875 245.703125 18.890625 245.820312 18.890625 C 245.9375 18.890625 246.03125 18.796875 246.03125 18.679688 Z M 246.03125 18.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.460938 17.082031 C 245.460938 16.964844 245.367188 16.871094 245.25 16.871094 C 245.132812 16.871094 245.039062 16.964844 245.039062 17.082031 C 245.039062 17.199219 245.132812 17.292969 245.25 17.292969 C 245.367188 17.292969 245.460938 17.199219 245.460938 17.082031 Z M 245.460938 17.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.828125 16.695312 C 245.828125 16.578125 245.734375 16.484375 245.617188 16.484375 C 245.5 16.484375 245.40625 16.578125 245.40625 16.695312 C 245.40625 16.8125 245.5 16.90625 245.617188 16.90625 C 245.734375 16.90625 245.828125 16.8125 245.828125 16.695312 Z M 245.828125 16.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.464844 9.78125 C 248.464844 9.664062 248.371094 9.570312 248.253906 9.570312 C 248.136719 9.570312 248.042969 9.664062 248.042969 9.78125 C 248.042969 9.898438 248.136719 9.992188 248.253906 9.992188 C 248.371094 9.992188 248.464844 9.898438 248.464844 9.78125 Z M 248.464844 9.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.164062 9.9375 C 247.164062 9.820312 247.070312 9.726562 246.953125 9.726562 C 246.835938 9.726562 246.742188 9.820312 246.742188 9.9375 C 246.742188 10.054688 246.835938 10.148438 246.953125 10.148438 C 247.070312 10.148438 247.164062 10.054688 247.164062 9.9375 Z M 247.164062 9.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.050781 10.242188 C 246.050781 10.125 245.957031 10.03125 245.839844 10.03125 C 245.722656 10.03125 245.628906 10.125 245.628906 10.242188 C 245.628906 10.359375 245.722656 10.453125 245.839844 10.453125 C 245.957031 10.453125 246.050781 10.359375 246.050781 10.242188 Z M 246.050781 10.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.03125 10.511719 C 246.03125 10.394531 245.9375 10.300781 245.820312 10.300781 C 245.703125 10.300781 245.609375 10.394531 245.609375 10.511719 C 245.609375 10.628906 245.703125 10.722656 245.820312 10.722656 C 245.9375 10.722656 246.03125 10.628906 246.03125 10.511719 Z M 246.03125 10.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.386719 11.210938 C 244.386719 11.09375 244.292969 11 244.175781 11 C 244.058594 11 243.964844 11.09375 243.964844 11.210938 C 243.964844 11.328125 244.058594 11.421875 244.175781 11.421875 C 244.292969 11.421875 244.386719 11.328125 244.386719 11.210938 Z M 244.386719 11.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.25 10.355469 C 245.25 10.238281 245.15625 10.144531 245.039062 10.144531 C 244.921875 10.144531 244.828125 10.238281 244.828125 10.355469 C 244.828125 10.472656 244.921875 10.566406 245.039062 10.566406 C 245.15625 10.566406 245.25 10.472656 245.25 10.355469 Z M 245.25 10.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.359375 12.945312 C 244.359375 12.828125 244.265625 12.734375 244.148438 12.734375 C 244.03125 12.734375 243.9375 12.828125 243.9375 12.945312 C 243.9375 13.0625 244.03125 13.15625 244.148438 13.15625 C 244.265625 13.15625 244.359375 13.0625 244.359375 12.945312 Z M 244.359375 12.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.628906 12.363281 C 246.628906 12.246094 246.535156 12.152344 246.417969 12.152344 C 246.300781 12.152344 246.207031 12.246094 246.207031 12.363281 C 246.207031 12.480469 246.300781 12.574219 246.417969 12.574219 C 246.535156 12.574219 246.628906 12.480469 246.628906 12.363281 Z M 246.628906 12.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.105469 7.644531 C 246.105469 7.527344 246.011719 7.433594 245.894531 7.433594 C 245.777344 7.433594 245.683594 7.527344 245.683594 7.644531 C 245.683594 7.761719 245.777344 7.855469 245.894531 7.855469 C 246.011719 7.855469 246.105469 7.761719 246.105469 7.644531 Z M 246.105469 7.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.164062 6.457031 C 241.164062 6.339844 241.070312 6.246094 240.953125 6.246094 C 240.835938 6.246094 240.742188 6.339844 240.742188 6.457031 C 240.742188 6.574219 240.835938 6.667969 240.953125 6.667969 C 241.070312 6.667969 241.164062 6.574219 241.164062 6.457031 Z M 241.164062 6.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.054688 4.210938 C 239.054688 4.09375 238.960938 4 238.84375 4 C 238.726562 4 238.632812 4.09375 238.632812 4.210938 C 238.632812 4.328125 238.726562 4.421875 238.84375 4.421875 C 238.960938 4.421875 239.054688 4.328125 239.054688 4.210938 Z M 239.054688 4.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.925781 1.160156 C 235.925781 1.042969 235.832031 0.949219 235.714844 0.949219 C 235.597656 0.949219 235.503906 1.042969 235.503906 1.160156 C 235.503906 1.277344 235.597656 1.371094 235.714844 1.371094 C 235.832031 1.371094 235.925781 1.277344 235.925781 1.160156 Z M 235.925781 1.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.34375 0.210938 C 235.34375 0.09375 235.25 0 235.132812 0 C 235.015625 0 234.921875 0.09375 234.921875 0.210938 C 234.921875 0.328125 235.015625 0.421875 235.132812 0.421875 C 235.25 0.421875 235.34375 0.328125 235.34375 0.210938 Z M 235.34375 0.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.585938 5.226562 C 234.585938 5.109375 234.492188 5.015625 234.375 5.015625 C 234.257812 5.015625 234.164062 5.109375 234.164062 5.226562 C 234.164062 5.34375 234.257812 5.4375 234.375 5.4375 C 234.492188 5.4375 234.585938 5.34375 234.585938 5.226562 Z M 234.585938 5.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.496094 4.265625 C 234.496094 4.148438 234.402344 4.054688 234.285156 4.054688 C 234.167969 4.054688 234.074219 4.148438 234.074219 4.265625 C 234.074219 4.382812 234.167969 4.476562 234.285156 4.476562 C 234.402344 4.476562 234.496094 4.382812 234.496094 4.265625 Z M 234.496094 4.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.417969 6.003906 C 233.417969 5.886719 233.324219 5.792969 233.207031 5.792969 C 233.089844 5.792969 232.996094 5.886719 232.996094 6.003906 C 232.996094 6.121094 233.089844 6.214844 233.207031 6.214844 C 233.324219 6.214844 233.417969 6.121094 233.417969 6.003906 Z M 233.417969 6.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.839844 7.359375 C 231.839844 7.242188 231.746094 7.148438 231.628906 7.148438 C 231.511719 7.148438 231.417969 7.242188 231.417969 7.359375 C 231.417969 7.476562 231.511719 7.570312 231.628906 7.570312 C 231.746094 7.570312 231.839844 7.476562 231.839844 7.359375 Z M 231.839844 7.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.832031 7.527344 C 233.832031 7.410156 233.738281 7.316406 233.621094 7.316406 C 233.503906 7.316406 233.410156 7.410156 233.410156 7.527344 C 233.410156 7.644531 233.503906 7.738281 233.621094 7.738281 C 233.738281 7.738281 233.832031 7.644531 233.832031 7.527344 Z M 233.832031 7.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.144531 9.226562 C 233.144531 9.109375 233.050781 9.015625 232.933594 9.015625 C 232.816406 9.015625 232.722656 9.109375 232.722656 9.226562 C 232.722656 9.34375 232.816406 9.4375 232.933594 9.4375 C 233.050781 9.4375 233.144531 9.34375 233.144531 9.226562 Z M 233.144531 9.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.546875 11.851562 C 234.546875 11.734375 234.453125 11.640625 234.335938 11.640625 C 234.21875 11.640625 234.125 11.734375 234.125 11.851562 C 234.125 11.96875 234.21875 12.0625 234.335938 12.0625 C 234.453125 12.0625 234.546875 11.96875 234.546875 11.851562 Z M 234.546875 11.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.203125 10.226562 C 235.203125 10.109375 235.109375 10.015625 234.992188 10.015625 C 234.875 10.015625 234.78125 10.109375 234.78125 10.226562 C 234.78125 10.34375 234.875 10.4375 234.992188 10.4375 C 235.109375 10.4375 235.203125 10.34375 235.203125 10.226562 Z M 235.203125 10.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.8125 9.503906 C 237.8125 9.386719 237.71875 9.292969 237.601562 9.292969 C 237.484375 9.292969 237.390625 9.386719 237.390625 9.503906 C 237.390625 9.621094 237.484375 9.714844 237.601562 9.714844 C 237.71875 9.714844 237.8125 9.621094 237.8125 9.503906 Z M 237.8125 9.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.628906 10.648438 C 239.628906 10.53125 239.535156 10.4375 239.417969 10.4375 C 239.300781 10.4375 239.207031 10.53125 239.207031 10.648438 C 239.207031 10.765625 239.300781 10.859375 239.417969 10.859375 C 239.535156 10.859375 239.628906 10.765625 239.628906 10.648438 Z M 239.628906 10.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.359375 11.996094 C 243.359375 11.878906 243.265625 11.785156 243.148438 11.785156 C 243.03125 11.785156 242.9375 11.878906 242.9375 11.996094 C 242.9375 12.113281 243.03125 12.207031 243.148438 12.207031 C 243.265625 12.207031 243.359375 12.113281 243.359375 11.996094 Z M 243.359375 11.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.085938 13.765625 C 244.085938 13.648438 243.992188 13.554688 243.875 13.554688 C 243.757812 13.554688 243.664062 13.648438 243.664062 13.765625 C 243.664062 13.882812 243.757812 13.976562 243.875 13.976562 C 243.992188 13.976562 244.085938 13.882812 244.085938 13.765625 Z M 244.085938 13.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.402344 11.484375 C 245.402344 11.367188 245.308594 11.273438 245.191406 11.273438 C 245.074219 11.273438 244.980469 11.367188 244.980469 11.484375 C 244.980469 11.601562 245.074219 11.695312 245.191406 11.695312 C 245.308594 11.695312 245.402344 11.601562 245.402344 11.484375 Z M 245.402344 11.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.792969 14.027344 C 243.792969 13.910156 243.699219 13.816406 243.582031 13.816406 C 243.464844 13.816406 243.371094 13.910156 243.371094 14.027344 C 243.371094 14.144531 243.464844 14.238281 243.582031 14.238281 C 243.699219 14.238281 243.792969 14.144531 243.792969 14.027344 Z M 243.792969 14.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.398438 16.320312 C 246.398438 16.203125 246.304688 16.109375 246.1875 16.109375 C 246.070312 16.109375 245.976562 16.203125 245.976562 16.320312 C 245.976562 16.4375 246.070312 16.53125 246.1875 16.53125 C 246.304688 16.53125 246.398438 16.4375 246.398438 16.320312 Z M 246.398438 16.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.207031 21.535156 C 246.207031 21.417969 246.113281 21.324219 245.996094 21.324219 C 245.878906 21.324219 245.785156 21.417969 245.785156 21.535156 C 245.785156 21.652344 245.878906 21.746094 245.996094 21.746094 C 246.113281 21.746094 246.207031 21.652344 246.207031 21.535156 Z M 246.207031 21.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.769531 23.824219 C 244.769531 23.707031 244.675781 23.613281 244.558594 23.613281 C 244.441406 23.613281 244.347656 23.707031 244.347656 23.824219 C 244.347656 23.941406 244.441406 24.035156 244.558594 24.035156 C 244.675781 24.035156 244.769531 23.941406 244.769531 23.824219 Z M 244.769531 23.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.042969 25.027344 C 245.042969 24.910156 244.949219 24.816406 244.832031 24.816406 C 244.714844 24.816406 244.621094 24.910156 244.621094 25.027344 C 244.621094 25.144531 244.714844 25.238281 244.832031 25.238281 C 244.949219 25.238281 245.042969 25.144531 245.042969 25.027344 Z M 245.042969 25.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.617188 25.429688 C 245.617188 25.3125 245.523438 25.21875 245.40625 25.21875 C 245.289062 25.21875 245.195312 25.3125 245.195312 25.429688 C 245.195312 25.546875 245.289062 25.640625 245.40625 25.640625 C 245.523438 25.640625 245.617188 25.546875 245.617188 25.429688 Z M 245.617188 25.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.070312 26.988281 C 245.070312 26.871094 244.976562 26.777344 244.859375 26.777344 C 244.742188 26.777344 244.648438 26.871094 244.648438 26.988281 C 244.648438 27.105469 244.742188 27.199219 244.859375 27.199219 C 244.976562 27.199219 245.070312 27.105469 245.070312 26.988281 Z M 245.070312 26.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.066406 24.433594 C 244.066406 24.316406 243.972656 24.222656 243.855469 24.222656 C 243.738281 24.222656 243.644531 24.316406 243.644531 24.433594 C 243.644531 24.550781 243.738281 24.644531 243.855469 24.644531 C 243.972656 24.644531 244.066406 24.550781 244.066406 24.433594 Z M 244.066406 24.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.617188 25.238281 C 241.617188 25.121094 241.523438 25.027344 241.40625 25.027344 C 241.289062 25.027344 241.195312 25.121094 241.195312 25.238281 C 241.195312 25.355469 241.289062 25.449219 241.40625 25.449219 C 241.523438 25.449219 241.617188 25.355469 241.617188 25.238281 Z M 241.617188 25.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.152344 27.429688 C 241.152344 27.3125 241.058594 27.21875 240.941406 27.21875 C 240.824219 27.21875 240.730469 27.3125 240.730469 27.429688 C 240.730469 27.546875 240.824219 27.640625 240.941406 27.640625 C 241.058594 27.640625 241.152344 27.546875 241.152344 27.429688 Z M 241.152344 27.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.808594 29.664062 C 243.808594 29.546875 243.714844 29.453125 243.597656 29.453125 C 243.480469 29.453125 243.386719 29.546875 243.386719 29.664062 C 243.386719 29.78125 243.480469 29.875 243.597656 29.875 C 243.714844 29.875 243.808594 29.78125 243.808594 29.664062 Z M 243.808594 29.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.378906 30.65625 C 243.378906 30.539062 243.285156 30.445312 243.167969 30.445312 C 243.050781 30.445312 242.957031 30.539062 242.957031 30.65625 C 242.957031 30.773438 243.050781 30.867188 243.167969 30.867188 C 243.285156 30.867188 243.378906 30.773438 243.378906 30.65625 Z M 243.378906 30.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.753906 30.394531 C 238.753906 30.277344 238.660156 30.183594 238.542969 30.183594 C 238.425781 30.183594 238.332031 30.277344 238.332031 30.394531 C 238.332031 30.511719 238.425781 30.605469 238.542969 30.605469 C 238.660156 30.605469 238.753906 30.511719 238.753906 30.394531 Z M 238.753906 30.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.242188 33.636719 C 238.242188 33.519531 238.148438 33.425781 238.03125 33.425781 C 237.914062 33.425781 237.820312 33.519531 237.820312 33.636719 C 237.820312 33.753906 237.914062 33.847656 238.03125 33.847656 C 238.148438 33.847656 238.242188 33.753906 238.242188 33.636719 Z M 238.242188 33.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.578125 31.40625 C 241.578125 31.289062 241.484375 31.195312 241.367188 31.195312 C 241.25 31.195312 241.15625 31.289062 241.15625 31.40625 C 241.15625 31.523438 241.25 31.617188 241.367188 31.617188 C 241.484375 31.617188 241.578125 31.523438 241.578125 31.40625 Z M 241.578125 31.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.167969 31.710938 C 244.167969 31.59375 244.074219 31.5 243.957031 31.5 C 243.839844 31.5 243.746094 31.59375 243.746094 31.710938 C 243.746094 31.828125 243.839844 31.921875 243.957031 31.921875 C 244.074219 31.921875 244.167969 31.828125 244.167969 31.710938 Z M 244.167969 31.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.355469 28.105469 C 244.355469 27.988281 244.261719 27.894531 244.144531 27.894531 C 244.027344 27.894531 243.933594 27.988281 243.933594 28.105469 C 243.933594 28.222656 244.027344 28.316406 244.144531 28.316406 C 244.261719 28.316406 244.355469 28.222656 244.355469 28.105469 Z M 244.355469 28.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.230469 26.949219 C 247.230469 26.832031 247.136719 26.738281 247.019531 26.738281 C 246.902344 26.738281 246.808594 26.832031 246.808594 26.949219 C 246.808594 27.066406 246.902344 27.160156 247.019531 27.160156 C 247.136719 27.160156 247.230469 27.066406 247.230469 26.949219 Z M 247.230469 26.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.570312 29.304688 C 248.570312 29.1875 248.476562 29.09375 248.359375 29.09375 C 248.242188 29.09375 248.148438 29.1875 248.148438 29.304688 C 248.148438 29.421875 248.242188 29.515625 248.359375 29.515625 C 248.476562 29.515625 248.570312 29.421875 248.570312 29.304688 Z M 248.570312 29.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.15625 29.804688 C 244.15625 29.6875 244.0625 29.59375 243.945312 29.59375 C 243.828125 29.59375 243.734375 29.6875 243.734375 29.804688 C 243.734375 29.921875 243.828125 30.015625 243.945312 30.015625 C 244.0625 30.015625 244.15625 29.921875 244.15625 29.804688 Z M 244.15625 29.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.757812 27.246094 C 242.757812 27.128906 242.664062 27.035156 242.546875 27.035156 C 242.429688 27.035156 242.335938 27.128906 242.335938 27.246094 C 242.335938 27.363281 242.429688 27.457031 242.546875 27.457031 C 242.664062 27.457031 242.757812 27.363281 242.757812 27.246094 Z M 242.757812 27.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.84375 27.324219 C 246.84375 27.207031 246.75 27.113281 246.632812 27.113281 C 246.515625 27.113281 246.421875 27.207031 246.421875 27.324219 C 246.421875 27.441406 246.515625 27.535156 246.632812 27.535156 C 246.75 27.535156 246.84375 27.441406 246.84375 27.324219 Z M 246.84375 27.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.308594 28.777344 C 249.308594 28.660156 249.214844 28.566406 249.097656 28.566406 C 248.980469 28.566406 248.886719 28.660156 248.886719 28.777344 C 248.886719 28.894531 248.980469 28.988281 249.097656 28.988281 C 249.214844 28.988281 249.308594 28.894531 249.308594 28.777344 Z M 249.308594 28.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.953125 30.128906 C 247.953125 30.011719 247.859375 29.917969 247.742188 29.917969 C 247.625 29.917969 247.53125 30.011719 247.53125 30.128906 C 247.53125 30.246094 247.625 30.339844 247.742188 30.339844 C 247.859375 30.339844 247.953125 30.246094 247.953125 30.128906 Z M 247.953125 30.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.707031 27.765625 C 245.707031 27.648438 245.613281 27.554688 245.496094 27.554688 C 245.378906 27.554688 245.285156 27.648438 245.285156 27.765625 C 245.285156 27.882812 245.378906 27.976562 245.496094 27.976562 C 245.613281 27.976562 245.707031 27.882812 245.707031 27.765625 Z M 245.707031 27.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.261719 26.488281 C 247.261719 26.371094 247.167969 26.277344 247.050781 26.277344 C 246.933594 26.277344 246.839844 26.371094 246.839844 26.488281 C 246.839844 26.605469 246.933594 26.699219 247.050781 26.699219 C 247.167969 26.699219 247.261719 26.605469 247.261719 26.488281 Z M 247.261719 26.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.027344 30.546875 C 247.027344 30.429688 246.933594 30.335938 246.816406 30.335938 C 246.699219 30.335938 246.605469 30.429688 246.605469 30.546875 C 246.605469 30.664062 246.699219 30.757812 246.816406 30.757812 C 246.933594 30.757812 247.027344 30.664062 247.027344 30.546875 Z M 247.027344 30.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.414062 29.460938 C 246.414062 29.34375 246.320312 29.25 246.203125 29.25 C 246.085938 29.25 245.992188 29.34375 245.992188 29.460938 C 245.992188 29.578125 246.085938 29.671875 246.203125 29.671875 C 246.320312 29.671875 246.414062 29.578125 246.414062 29.460938 Z M 246.414062 29.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.773438 27.195312 C 248.773438 27.078125 248.679688 26.984375 248.5625 26.984375 C 248.445312 26.984375 248.351562 27.078125 248.351562 27.195312 C 248.351562 27.3125 248.445312 27.40625 248.5625 27.40625 C 248.679688 27.40625 248.773438 27.3125 248.773438 27.195312 Z M 248.773438 27.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.722656 32.25 C 250.722656 32.132812 250.628906 32.039062 250.511719 32.039062 C 250.394531 32.039062 250.300781 32.132812 250.300781 32.25 C 250.300781 32.367188 250.394531 32.460938 250.511719 32.460938 C 250.628906 32.460938 250.722656 32.367188 250.722656 32.25 Z M 250.722656 32.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.585938 35.1875 C 250.585938 35.070312 250.492188 34.976562 250.375 34.976562 C 250.257812 34.976562 250.164062 35.070312 250.164062 35.1875 C 250.164062 35.304688 250.257812 35.398438 250.375 35.398438 C 250.492188 35.398438 250.585938 35.304688 250.585938 35.1875 Z M 250.585938 35.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.304688 29.761719 C 251.304688 29.644531 251.210938 29.550781 251.09375 29.550781 C 250.976562 29.550781 250.882812 29.644531 250.882812 29.761719 C 250.882812 29.878906 250.976562 29.972656 251.09375 29.972656 C 251.210938 29.972656 251.304688 29.878906 251.304688 29.761719 Z M 251.304688 29.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.691406 28.363281 C 251.691406 28.246094 251.597656 28.152344 251.480469 28.152344 C 251.363281 28.152344 251.269531 28.246094 251.269531 28.363281 C 251.269531 28.480469 251.363281 28.574219 251.480469 28.574219 C 251.597656 28.574219 251.691406 28.480469 251.691406 28.363281 Z M 251.691406 28.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.421875 31.125 C 248.421875 31.007812 248.328125 30.914062 248.210938 30.914062 C 248.09375 30.914062 248 31.007812 248 31.125 C 248 31.242188 248.09375 31.335938 248.210938 31.335938 C 248.328125 31.335938 248.421875 31.242188 248.421875 31.125 Z M 248.421875 31.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.601562 30.5 C 245.601562 30.382812 245.507812 30.289062 245.390625 30.289062 C 245.273438 30.289062 245.179688 30.382812 245.179688 30.5 C 245.179688 30.617188 245.273438 30.710938 245.390625 30.710938 C 245.507812 30.710938 245.601562 30.617188 245.601562 30.5 Z M 245.601562 30.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.476562 31.34375 C 244.476562 31.226562 244.382812 31.132812 244.265625 31.132812 C 244.148438 31.132812 244.054688 31.226562 244.054688 31.34375 C 244.054688 31.460938 244.148438 31.554688 244.265625 31.554688 C 244.382812 31.554688 244.476562 31.460938 244.476562 31.34375 Z M 244.476562 31.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.902344 30.238281 C 246.902344 30.121094 246.808594 30.027344 246.691406 30.027344 C 246.574219 30.027344 246.480469 30.121094 246.480469 30.238281 C 246.480469 30.355469 246.574219 30.449219 246.691406 30.449219 C 246.808594 30.449219 246.902344 30.355469 246.902344 30.238281 Z M 246.902344 30.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.4375 29.820312 C 243.4375 29.703125 243.34375 29.609375 243.226562 29.609375 C 243.109375 29.609375 243.015625 29.703125 243.015625 29.820312 C 243.015625 29.9375 243.109375 30.03125 243.226562 30.03125 C 243.34375 30.03125 243.4375 29.9375 243.4375 29.820312 Z M 243.4375 29.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.179688 29.375 C 244.179688 29.257812 244.085938 29.164062 243.96875 29.164062 C 243.851562 29.164062 243.757812 29.257812 243.757812 29.375 C 243.757812 29.492188 243.851562 29.585938 243.96875 29.585938 C 244.085938 29.585938 244.179688 29.492188 244.179688 29.375 Z M 244.179688 29.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.308594 27.117188 C 246.308594 27 246.214844 26.90625 246.097656 26.90625 C 245.980469 26.90625 245.886719 27 245.886719 27.117188 C 245.886719 27.234375 245.980469 27.328125 246.097656 27.328125 C 246.214844 27.328125 246.308594 27.234375 246.308594 27.117188 Z M 246.308594 27.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.414062 31.335938 C 245.414062 31.21875 245.320312 31.125 245.203125 31.125 C 245.085938 31.125 244.992188 31.21875 244.992188 31.335938 C 244.992188 31.453125 245.085938 31.546875 245.203125 31.546875 C 245.320312 31.546875 245.414062 31.453125 245.414062 31.335938 Z M 245.414062 31.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.089844 30.058594 C 243.089844 29.941406 242.996094 29.847656 242.878906 29.847656 C 242.761719 29.847656 242.667969 29.941406 242.667969 30.058594 C 242.667969 30.175781 242.761719 30.269531 242.878906 30.269531 C 242.996094 30.269531 243.089844 30.175781 243.089844 30.058594 Z M 243.089844 30.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.671875 32.25 C 234.671875 32.132812 234.578125 32.039062 234.460938 32.039062 C 234.34375 32.039062 234.25 32.132812 234.25 32.25 C 234.25 32.367188 234.34375 32.460938 234.460938 32.460938 C 234.578125 32.460938 234.671875 32.367188 234.671875 32.25 Z M 234.671875 32.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.890625 34.285156 C 237.890625 34.167969 237.796875 34.074219 237.679688 34.074219 C 237.5625 34.074219 237.46875 34.167969 237.46875 34.285156 C 237.46875 34.402344 237.5625 34.496094 237.679688 34.496094 C 237.796875 34.496094 237.890625 34.402344 237.890625 34.285156 Z M 237.890625 34.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.636719 33.167969 C 236.636719 33.050781 236.542969 32.957031 236.425781 32.957031 C 236.308594 32.957031 236.214844 33.050781 236.214844 33.167969 C 236.214844 33.285156 236.308594 33.378906 236.425781 33.378906 C 236.542969 33.378906 236.636719 33.285156 236.636719 33.167969 Z M 236.636719 33.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.757812 33.714844 C 236.757812 33.597656 236.664062 33.503906 236.546875 33.503906 C 236.429688 33.503906 236.335938 33.597656 236.335938 33.714844 C 236.335938 33.832031 236.429688 33.925781 236.546875 33.925781 C 236.664062 33.925781 236.757812 33.832031 236.757812 33.714844 Z M 236.757812 33.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.96875 31.894531 C 237.96875 31.777344 237.875 31.683594 237.757812 31.683594 C 237.640625 31.683594 237.546875 31.777344 237.546875 31.894531 C 237.546875 32.011719 237.640625 32.105469 237.757812 32.105469 C 237.875 32.105469 237.96875 32.011719 237.96875 31.894531 Z M 237.96875 31.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.15625 33.664062 C 240.15625 33.546875 240.0625 33.453125 239.945312 33.453125 C 239.828125 33.453125 239.734375 33.546875 239.734375 33.664062 C 239.734375 33.78125 239.828125 33.875 239.945312 33.875 C 240.0625 33.875 240.15625 33.78125 240.15625 33.664062 Z M 240.15625 33.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.542969 33.179688 C 238.542969 33.0625 238.449219 32.96875 238.332031 32.96875 C 238.214844 32.96875 238.121094 33.0625 238.121094 33.179688 C 238.121094 33.296875 238.214844 33.390625 238.332031 33.390625 C 238.449219 33.390625 238.542969 33.296875 238.542969 33.179688 Z M 238.542969 33.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.589844 35.914062 C 234.589844 35.796875 234.496094 35.703125 234.378906 35.703125 C 234.261719 35.703125 234.167969 35.796875 234.167969 35.914062 C 234.167969 36.03125 234.261719 36.125 234.378906 36.125 C 234.496094 36.125 234.589844 36.03125 234.589844 35.914062 Z M 234.589844 35.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.8125 35.042969 C 236.8125 34.925781 236.71875 34.832031 236.601562 34.832031 C 236.484375 34.832031 236.390625 34.925781 236.390625 35.042969 C 236.390625 35.160156 236.484375 35.253906 236.601562 35.253906 C 236.71875 35.253906 236.8125 35.160156 236.8125 35.042969 Z M 236.8125 35.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.46875 34.75 C 239.46875 34.632812 239.375 34.539062 239.257812 34.539062 C 239.140625 34.539062 239.046875 34.632812 239.046875 34.75 C 239.046875 34.867188 239.140625 34.960938 239.257812 34.960938 C 239.375 34.960938 239.46875 34.867188 239.46875 34.75 Z M 239.46875 34.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.203125 34.429688 C 240.203125 34.3125 240.109375 34.21875 239.992188 34.21875 C 239.875 34.21875 239.78125 34.3125 239.78125 34.429688 C 239.78125 34.546875 239.875 34.640625 239.992188 34.640625 C 240.109375 34.640625 240.203125 34.546875 240.203125 34.429688 Z M 240.203125 34.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.558594 33.949219 C 237.558594 33.832031 237.464844 33.738281 237.347656 33.738281 C 237.230469 33.738281 237.136719 33.832031 237.136719 33.949219 C 237.136719 34.066406 237.230469 34.160156 237.347656 34.160156 C 237.464844 34.160156 237.558594 34.066406 237.558594 33.949219 Z M 237.558594 33.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.429688 32.890625 C 236.429688 32.773438 236.335938 32.679688 236.21875 32.679688 C 236.101562 32.679688 236.007812 32.773438 236.007812 32.890625 C 236.007812 33.007812 236.101562 33.101562 236.21875 33.101562 C 236.335938 33.101562 236.429688 33.007812 236.429688 32.890625 Z M 236.429688 32.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.613281 32.460938 C 235.613281 32.34375 235.519531 32.25 235.402344 32.25 C 235.285156 32.25 235.191406 32.34375 235.191406 32.460938 C 235.191406 32.578125 235.285156 32.671875 235.402344 32.671875 C 235.519531 32.671875 235.613281 32.578125 235.613281 32.460938 Z M 235.613281 32.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.976562 30.378906 C 235.976562 30.261719 235.882812 30.167969 235.765625 30.167969 C 235.648438 30.167969 235.554688 30.261719 235.554688 30.378906 C 235.554688 30.496094 235.648438 30.589844 235.765625 30.589844 C 235.882812 30.589844 235.976562 30.496094 235.976562 30.378906 Z M 235.976562 30.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.808594 31.15625 C 237.808594 31.039062 237.714844 30.945312 237.597656 30.945312 C 237.480469 30.945312 237.386719 31.039062 237.386719 31.15625 C 237.386719 31.273438 237.480469 31.367188 237.597656 31.367188 C 237.714844 31.367188 237.808594 31.273438 237.808594 31.15625 Z M 237.808594 31.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.5625 30.433594 C 236.5625 30.316406 236.46875 30.222656 236.351562 30.222656 C 236.234375 30.222656 236.140625 30.316406 236.140625 30.433594 C 236.140625 30.550781 236.234375 30.644531 236.351562 30.644531 C 236.46875 30.644531 236.5625 30.550781 236.5625 30.433594 Z M 236.5625 30.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.191406 27.484375 C 233.191406 27.367188 233.097656 27.273438 232.980469 27.273438 C 232.863281 27.273438 232.769531 27.367188 232.769531 27.484375 C 232.769531 27.601562 232.863281 27.695312 232.980469 27.695312 C 233.097656 27.695312 233.191406 27.601562 233.191406 27.484375 Z M 233.191406 27.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.535156 26.527344 C 231.535156 26.410156 231.441406 26.316406 231.324219 26.316406 C 231.207031 26.316406 231.113281 26.410156 231.113281 26.527344 C 231.113281 26.644531 231.207031 26.738281 231.324219 26.738281 C 231.441406 26.738281 231.535156 26.644531 231.535156 26.527344 Z M 231.535156 26.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.738281 23.527344 C 232.738281 23.410156 232.644531 23.316406 232.527344 23.316406 C 232.410156 23.316406 232.316406 23.410156 232.316406 23.527344 C 232.316406 23.644531 232.410156 23.738281 232.527344 23.738281 C 232.644531 23.738281 232.738281 23.644531 232.738281 23.527344 Z M 232.738281 23.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.742188 23.160156 C 230.742188 23.042969 230.648438 22.949219 230.53125 22.949219 C 230.414062 22.949219 230.320312 23.042969 230.320312 23.160156 C 230.320312 23.277344 230.414062 23.371094 230.53125 23.371094 C 230.648438 23.371094 230.742188 23.277344 230.742188 23.160156 Z M 230.742188 23.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.820312 22.890625 C 232.820312 22.773438 232.726562 22.679688 232.609375 22.679688 C 232.492188 22.679688 232.398438 22.773438 232.398438 22.890625 C 232.398438 23.007812 232.492188 23.101562 232.609375 23.101562 C 232.726562 23.101562 232.820312 23.007812 232.820312 22.890625 Z M 232.820312 22.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.167969 22.914062 C 233.167969 22.796875 233.074219 22.703125 232.957031 22.703125 C 232.839844 22.703125 232.746094 22.796875 232.746094 22.914062 C 232.746094 23.03125 232.839844 23.125 232.957031 23.125 C 233.074219 23.125 233.167969 23.03125 233.167969 22.914062 Z M 233.167969 22.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.675781 22.515625 C 231.675781 22.398438 231.582031 22.304688 231.464844 22.304688 C 231.347656 22.304688 231.253906 22.398438 231.253906 22.515625 C 231.253906 22.632812 231.347656 22.726562 231.464844 22.726562 C 231.582031 22.726562 231.675781 22.632812 231.675781 22.515625 Z M 231.675781 22.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.246094 24.726562 C 232.246094 24.609375 232.152344 24.515625 232.035156 24.515625 C 231.917969 24.515625 231.824219 24.609375 231.824219 24.726562 C 231.824219 24.84375 231.917969 24.9375 232.035156 24.9375 C 232.152344 24.9375 232.246094 24.84375 232.246094 24.726562 Z M 232.246094 24.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.472656 23.453125 C 230.472656 23.335938 230.378906 23.242188 230.261719 23.242188 C 230.144531 23.242188 230.050781 23.335938 230.050781 23.453125 C 230.050781 23.570312 230.144531 23.664062 230.261719 23.664062 C 230.378906 23.664062 230.472656 23.570312 230.472656 23.453125 Z M 230.472656 23.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.84375 25.9375 C 224.84375 25.820312 224.75 25.726562 224.632812 25.726562 C 224.515625 25.726562 224.421875 25.820312 224.421875 25.9375 C 224.421875 26.054688 224.515625 26.148438 224.632812 26.148438 C 224.75 26.148438 224.84375 26.054688 224.84375 25.9375 Z M 224.84375 25.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.976562 26.796875 C 225.976562 26.679688 225.882812 26.585938 225.765625 26.585938 C 225.648438 26.585938 225.554688 26.679688 225.554688 26.796875 C 225.554688 26.914062 225.648438 27.007812 225.765625 27.007812 C 225.882812 27.007812 225.976562 26.914062 225.976562 26.796875 Z M 225.976562 26.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.832031 28.789062 C 224.832031 28.671875 224.738281 28.578125 224.621094 28.578125 C 224.503906 28.578125 224.410156 28.671875 224.410156 28.789062 C 224.410156 28.90625 224.503906 29 224.621094 29 C 224.738281 29 224.832031 28.90625 224.832031 28.789062 Z M 224.832031 28.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.90625 31.976562 C 223.90625 31.859375 223.8125 31.765625 223.695312 31.765625 C 223.578125 31.765625 223.484375 31.859375 223.484375 31.976562 C 223.484375 32.09375 223.578125 32.1875 223.695312 32.1875 C 223.8125 32.1875 223.90625 32.09375 223.90625 31.976562 Z M 223.90625 31.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.542969 31.265625 C 223.542969 31.148438 223.449219 31.054688 223.332031 31.054688 C 223.214844 31.054688 223.121094 31.148438 223.121094 31.265625 C 223.121094 31.382812 223.214844 31.476562 223.332031 31.476562 C 223.449219 31.476562 223.542969 31.382812 223.542969 31.265625 Z M 223.542969 31.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.726562 34.242188 C 223.726562 34.125 223.632812 34.03125 223.515625 34.03125 C 223.398438 34.03125 223.304688 34.125 223.304688 34.242188 C 223.304688 34.359375 223.398438 34.453125 223.515625 34.453125 C 223.632812 34.453125 223.726562 34.359375 223.726562 34.242188 Z M 223.726562 34.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.023438 36.027344 C 223.023438 35.910156 222.929688 35.816406 222.8125 35.816406 C 222.695312 35.816406 222.601562 35.910156 222.601562 36.027344 C 222.601562 36.144531 222.695312 36.238281 222.8125 36.238281 C 222.929688 36.238281 223.023438 36.144531 223.023438 36.027344 Z M 223.023438 36.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.730469 38.492188 C 226.730469 38.375 226.636719 38.28125 226.519531 38.28125 C 226.402344 38.28125 226.308594 38.375 226.308594 38.492188 C 226.308594 38.609375 226.402344 38.703125 226.519531 38.703125 C 226.636719 38.703125 226.730469 38.609375 226.730469 38.492188 Z M 226.730469 38.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.535156 37.683594 C 228.535156 37.566406 228.441406 37.472656 228.324219 37.472656 C 228.207031 37.472656 228.113281 37.566406 228.113281 37.683594 C 228.113281 37.800781 228.207031 37.894531 228.324219 37.894531 C 228.441406 37.894531 228.535156 37.800781 228.535156 37.683594 Z M 228.535156 37.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.980469 42.3125 C 226.980469 42.195312 226.886719 42.101562 226.769531 42.101562 C 226.652344 42.101562 226.558594 42.195312 226.558594 42.3125 C 226.558594 42.429688 226.652344 42.523438 226.769531 42.523438 C 226.886719 42.523438 226.980469 42.429688 226.980469 42.3125 Z M 226.980469 42.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.875 44.015625 C 227.875 43.898438 227.78125 43.804688 227.664062 43.804688 C 227.546875 43.804688 227.453125 43.898438 227.453125 44.015625 C 227.453125 44.132812 227.546875 44.226562 227.664062 44.226562 C 227.78125 44.226562 227.875 44.132812 227.875 44.015625 Z M 227.875 44.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.207031 44.179688 C 228.207031 44.0625 228.113281 43.96875 227.996094 43.96875 C 227.878906 43.96875 227.785156 44.0625 227.785156 44.179688 C 227.785156 44.296875 227.878906 44.390625 227.996094 44.390625 C 228.113281 44.390625 228.207031 44.296875 228.207031 44.179688 Z M 228.207031 44.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.585938 44.578125 C 227.585938 44.460938 227.492188 44.367188 227.375 44.367188 C 227.257812 44.367188 227.164062 44.460938 227.164062 44.578125 C 227.164062 44.695312 227.257812 44.789062 227.375 44.789062 C 227.492188 44.789062 227.585938 44.695312 227.585938 44.578125 Z M 227.585938 44.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.203125 48.195312 C 226.203125 48.078125 226.109375 47.984375 225.992188 47.984375 C 225.875 47.984375 225.78125 48.078125 225.78125 48.195312 C 225.78125 48.3125 225.875 48.40625 225.992188 48.40625 C 226.109375 48.40625 226.203125 48.3125 226.203125 48.195312 Z M 226.203125 48.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.675781 48.125 C 226.675781 48.007812 226.582031 47.914062 226.464844 47.914062 C 226.347656 47.914062 226.253906 48.007812 226.253906 48.125 C 226.253906 48.242188 226.347656 48.335938 226.464844 48.335938 C 226.582031 48.335938 226.675781 48.242188 226.675781 48.125 Z M 226.675781 48.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.125 48.34375 C 232.125 48.226562 232.03125 48.132812 231.914062 48.132812 C 231.796875 48.132812 231.703125 48.226562 231.703125 48.34375 C 231.703125 48.460938 231.796875 48.554688 231.914062 48.554688 C 232.03125 48.554688 232.125 48.460938 232.125 48.34375 Z M 232.125 48.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.839844 46.867188 C 233.839844 46.75 233.746094 46.65625 233.628906 46.65625 C 233.511719 46.65625 233.417969 46.75 233.417969 46.867188 C 233.417969 46.984375 233.511719 47.078125 233.628906 47.078125 C 233.746094 47.078125 233.839844 46.984375 233.839844 46.867188 Z M 233.839844 46.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.070312 48.238281 C 232.070312 48.121094 231.976562 48.027344 231.859375 48.027344 C 231.742188 48.027344 231.648438 48.121094 231.648438 48.238281 C 231.648438 48.355469 231.742188 48.449219 231.859375 48.449219 C 231.976562 48.449219 232.070312 48.355469 232.070312 48.238281 Z M 232.070312 48.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.363281 45.710938 C 230.363281 45.59375 230.269531 45.5 230.152344 45.5 C 230.035156 45.5 229.941406 45.59375 229.941406 45.710938 C 229.941406 45.828125 230.035156 45.921875 230.152344 45.921875 C 230.269531 45.921875 230.363281 45.828125 230.363281 45.710938 Z M 230.363281 45.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.191406 44.1875 C 227.191406 44.070312 227.097656 43.976562 226.980469 43.976562 C 226.863281 43.976562 226.769531 44.070312 226.769531 44.1875 C 226.769531 44.304688 226.863281 44.398438 226.980469 44.398438 C 227.097656 44.398438 227.191406 44.304688 227.191406 44.1875 Z M 227.191406 44.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.226562 43.511719 C 224.226562 43.394531 224.132812 43.300781 224.015625 43.300781 C 223.898438 43.300781 223.804688 43.394531 223.804688 43.511719 C 223.804688 43.628906 223.898438 43.722656 224.015625 43.722656 C 224.132812 43.722656 224.226562 43.628906 224.226562 43.511719 Z M 224.226562 43.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.90625 42.59375 C 223.90625 42.476562 223.8125 42.382812 223.695312 42.382812 C 223.578125 42.382812 223.484375 42.476562 223.484375 42.59375 C 223.484375 42.710938 223.578125 42.804688 223.695312 42.804688 C 223.8125 42.804688 223.90625 42.710938 223.90625 42.59375 Z M 223.90625 42.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.519531 37.410156 C 223.519531 37.292969 223.425781 37.199219 223.308594 37.199219 C 223.191406 37.199219 223.097656 37.292969 223.097656 37.410156 C 223.097656 37.527344 223.191406 37.621094 223.308594 37.621094 C 223.425781 37.621094 223.519531 37.527344 223.519531 37.410156 Z M 223.519531 37.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.355469 40.984375 C 223.355469 40.867188 223.261719 40.773438 223.144531 40.773438 C 223.027344 40.773438 222.933594 40.867188 222.933594 40.984375 C 222.933594 41.101562 223.027344 41.195312 223.144531 41.195312 C 223.261719 41.195312 223.355469 41.101562 223.355469 40.984375 Z M 223.355469 40.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.742188 40.535156 C 224.742188 40.417969 224.648438 40.324219 224.53125 40.324219 C 224.414062 40.324219 224.320312 40.417969 224.320312 40.535156 C 224.320312 40.652344 224.414062 40.746094 224.53125 40.746094 C 224.648438 40.746094 224.742188 40.652344 224.742188 40.535156 Z M 224.742188 40.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.101562 44.613281 C 222.101562 44.496094 222.007812 44.402344 221.890625 44.402344 C 221.773438 44.402344 221.679688 44.496094 221.679688 44.613281 C 221.679688 44.730469 221.773438 44.824219 221.890625 44.824219 C 222.007812 44.824219 222.101562 44.730469 222.101562 44.613281 Z M 222.101562 44.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.746094 42.386719 C 222.746094 42.269531 222.652344 42.175781 222.535156 42.175781 C 222.417969 42.175781 222.324219 42.269531 222.324219 42.386719 C 222.324219 42.503906 222.417969 42.597656 222.535156 42.597656 C 222.652344 42.597656 222.746094 42.503906 222.746094 42.386719 Z M 222.746094 42.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.625 45.023438 C 220.625 44.90625 220.53125 44.8125 220.414062 44.8125 C 220.296875 44.8125 220.203125 44.90625 220.203125 45.023438 C 220.203125 45.140625 220.296875 45.234375 220.414062 45.234375 C 220.53125 45.234375 220.625 45.140625 220.625 45.023438 Z M 220.625 45.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.859375 45.535156 C 218.859375 45.417969 218.765625 45.324219 218.648438 45.324219 C 218.53125 45.324219 218.4375 45.417969 218.4375 45.535156 C 218.4375 45.652344 218.53125 45.746094 218.648438 45.746094 C 218.765625 45.746094 218.859375 45.652344 218.859375 45.535156 Z M 218.859375 45.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.277344 45.863281 C 220.277344 45.746094 220.183594 45.652344 220.066406 45.652344 C 219.949219 45.652344 219.855469 45.746094 219.855469 45.863281 C 219.855469 45.980469 219.949219 46.074219 220.066406 46.074219 C 220.183594 46.074219 220.277344 45.980469 220.277344 45.863281 Z M 220.277344 45.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.019531 47.566406 C 221.019531 47.449219 220.925781 47.355469 220.808594 47.355469 C 220.691406 47.355469 220.597656 47.449219 220.597656 47.566406 C 220.597656 47.683594 220.691406 47.777344 220.808594 47.777344 C 220.925781 47.777344 221.019531 47.683594 221.019531 47.566406 Z M 221.019531 47.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.019531 48.636719 C 219.019531 48.519531 218.925781 48.425781 218.808594 48.425781 C 218.691406 48.425781 218.597656 48.519531 218.597656 48.636719 C 218.597656 48.753906 218.691406 48.847656 218.808594 48.847656 C 218.925781 48.847656 219.019531 48.753906 219.019531 48.636719 Z M 219.019531 48.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.335938 46.3125 C 218.335938 46.195312 218.242188 46.101562 218.125 46.101562 C 218.007812 46.101562 217.914062 46.195312 217.914062 46.3125 C 217.914062 46.429688 218.007812 46.523438 218.125 46.523438 C 218.242188 46.523438 218.335938 46.429688 218.335938 46.3125 Z M 218.335938 46.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.519531 47.207031 C 220.519531 47.089844 220.425781 46.996094 220.308594 46.996094 C 220.191406 46.996094 220.097656 47.089844 220.097656 47.207031 C 220.097656 47.324219 220.191406 47.417969 220.308594 47.417969 C 220.425781 47.417969 220.519531 47.324219 220.519531 47.207031 Z M 220.519531 47.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.65625 43.234375 C 221.65625 43.117188 221.5625 43.023438 221.445312 43.023438 C 221.328125 43.023438 221.234375 43.117188 221.234375 43.234375 C 221.234375 43.351562 221.328125 43.445312 221.445312 43.445312 C 221.5625 43.445312 221.65625 43.351562 221.65625 43.234375 Z M 221.65625 43.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.390625 42.21875 C 223.390625 42.101562 223.296875 42.007812 223.179688 42.007812 C 223.0625 42.007812 222.96875 42.101562 222.96875 42.21875 C 222.96875 42.335938 223.0625 42.429688 223.179688 42.429688 C 223.296875 42.429688 223.390625 42.335938 223.390625 42.21875 Z M 223.390625 42.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.992188 42.96875 C 220.992188 42.851562 220.898438 42.757812 220.78125 42.757812 C 220.664062 42.757812 220.570312 42.851562 220.570312 42.96875 C 220.570312 43.085938 220.664062 43.179688 220.78125 43.179688 C 220.898438 43.179688 220.992188 43.085938 220.992188 42.96875 Z M 220.992188 42.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.46875 42.585938 C 225.46875 42.46875 225.375 42.375 225.257812 42.375 C 225.140625 42.375 225.046875 42.46875 225.046875 42.585938 C 225.046875 42.703125 225.140625 42.796875 225.257812 42.796875 C 225.375 42.796875 225.46875 42.703125 225.46875 42.585938 Z M 225.46875 42.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227 40.980469 C 227 40.863281 226.90625 40.769531 226.789062 40.769531 C 226.671875 40.769531 226.578125 40.863281 226.578125 40.980469 C 226.578125 41.097656 226.671875 41.191406 226.789062 41.191406 C 226.90625 41.191406 227 41.097656 227 40.980469 Z M 227 40.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.578125 42.015625 C 225.578125 41.898438 225.484375 41.804688 225.367188 41.804688 C 225.25 41.804688 225.15625 41.898438 225.15625 42.015625 C 225.15625 42.132812 225.25 42.226562 225.367188 42.226562 C 225.484375 42.226562 225.578125 42.132812 225.578125 42.015625 Z M 225.578125 42.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.835938 41.296875 C 229.835938 41.179688 229.742188 41.085938 229.625 41.085938 C 229.507812 41.085938 229.414062 41.179688 229.414062 41.296875 C 229.414062 41.414062 229.507812 41.507812 229.625 41.507812 C 229.742188 41.507812 229.835938 41.414062 229.835938 41.296875 Z M 229.835938 41.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.984375 40.992188 C 226.984375 40.875 226.890625 40.78125 226.773438 40.78125 C 226.65625 40.78125 226.5625 40.875 226.5625 40.992188 C 226.5625 41.109375 226.65625 41.203125 226.773438 41.203125 C 226.890625 41.203125 226.984375 41.109375 226.984375 40.992188 Z M 226.984375 40.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.839844 40.195312 C 223.839844 40.078125 223.746094 39.984375 223.628906 39.984375 C 223.511719 39.984375 223.417969 40.078125 223.417969 40.195312 C 223.417969 40.3125 223.511719 40.40625 223.628906 40.40625 C 223.746094 40.40625 223.839844 40.3125 223.839844 40.195312 Z M 223.839844 40.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.277344 40.832031 C 221.277344 40.714844 221.183594 40.621094 221.066406 40.621094 C 220.949219 40.621094 220.855469 40.714844 220.855469 40.832031 C 220.855469 40.949219 220.949219 41.042969 221.066406 41.042969 C 221.183594 41.042969 221.277344 40.949219 221.277344 40.832031 Z M 221.277344 40.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.367188 38.292969 C 223.367188 38.175781 223.273438 38.082031 223.15625 38.082031 C 223.039062 38.082031 222.945312 38.175781 222.945312 38.292969 C 222.945312 38.410156 223.039062 38.503906 223.15625 38.503906 C 223.273438 38.503906 223.367188 38.410156 223.367188 38.292969 Z M 223.367188 38.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.824219 37.03125 C 223.824219 36.914062 223.730469 36.820312 223.613281 36.820312 C 223.496094 36.820312 223.402344 36.914062 223.402344 37.03125 C 223.402344 37.148438 223.496094 37.242188 223.613281 37.242188 C 223.730469 37.242188 223.824219 37.148438 223.824219 37.03125 Z M 223.824219 37.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.417969 41.300781 C 222.417969 41.183594 222.324219 41.089844 222.207031 41.089844 C 222.089844 41.089844 221.996094 41.183594 221.996094 41.300781 C 221.996094 41.417969 222.089844 41.511719 222.207031 41.511719 C 222.324219 41.511719 222.417969 41.417969 222.417969 41.300781 Z M 222.417969 41.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.214844 37.335938 C 222.214844 37.21875 222.121094 37.125 222.003906 37.125 C 221.886719 37.125 221.792969 37.21875 221.792969 37.335938 C 221.792969 37.453125 221.886719 37.546875 222.003906 37.546875 C 222.121094 37.546875 222.214844 37.453125 222.214844 37.335938 Z M 222.214844 37.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.519531 34.601562 C 222.519531 34.484375 222.425781 34.390625 222.308594 34.390625 C 222.191406 34.390625 222.097656 34.484375 222.097656 34.601562 C 222.097656 34.71875 222.191406 34.8125 222.308594 34.8125 C 222.425781 34.8125 222.519531 34.71875 222.519531 34.601562 Z M 222.519531 34.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.144531 33.945312 C 226.144531 33.828125 226.050781 33.734375 225.933594 33.734375 C 225.816406 33.734375 225.722656 33.828125 225.722656 33.945312 C 225.722656 34.0625 225.816406 34.15625 225.933594 34.15625 C 226.050781 34.15625 226.144531 34.0625 226.144531 33.945312 Z M 226.144531 33.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.667969 34.035156 C 226.667969 33.917969 226.574219 33.824219 226.457031 33.824219 C 226.339844 33.824219 226.246094 33.917969 226.246094 34.035156 C 226.246094 34.152344 226.339844 34.246094 226.457031 34.246094 C 226.574219 34.246094 226.667969 34.152344 226.667969 34.035156 Z M 226.667969 34.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.875 36.296875 C 227.875 36.179688 227.78125 36.085938 227.664062 36.085938 C 227.546875 36.085938 227.453125 36.179688 227.453125 36.296875 C 227.453125 36.414062 227.546875 36.507812 227.664062 36.507812 C 227.78125 36.507812 227.875 36.414062 227.875 36.296875 Z M 227.875 36.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.832031 39.410156 C 226.832031 39.292969 226.738281 39.199219 226.621094 39.199219 C 226.503906 39.199219 226.410156 39.292969 226.410156 39.410156 C 226.410156 39.527344 226.503906 39.621094 226.621094 39.621094 C 226.738281 39.621094 226.832031 39.527344 226.832031 39.410156 Z M 226.832031 39.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.660156 42.285156 C 224.660156 42.167969 224.566406 42.074219 224.449219 42.074219 C 224.332031 42.074219 224.238281 42.167969 224.238281 42.285156 C 224.238281 42.402344 224.332031 42.496094 224.449219 42.496094 C 224.566406 42.496094 224.660156 42.402344 224.660156 42.285156 Z M 224.660156 42.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.914062 42.394531 C 224.914062 42.277344 224.820312 42.183594 224.703125 42.183594 C 224.585938 42.183594 224.492188 42.277344 224.492188 42.394531 C 224.492188 42.511719 224.585938 42.605469 224.703125 42.605469 C 224.820312 42.605469 224.914062 42.511719 224.914062 42.394531 Z M 224.914062 42.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.878906 43.300781 C 226.878906 43.183594 226.785156 43.089844 226.667969 43.089844 C 226.550781 43.089844 226.457031 43.183594 226.457031 43.300781 C 226.457031 43.417969 226.550781 43.511719 226.667969 43.511719 C 226.785156 43.511719 226.878906 43.417969 226.878906 43.300781 Z M 226.878906 43.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.996094 46.195312 C 222.996094 46.078125 222.902344 45.984375 222.785156 45.984375 C 222.667969 45.984375 222.574219 46.078125 222.574219 46.195312 C 222.574219 46.3125 222.667969 46.40625 222.785156 46.40625 C 222.902344 46.40625 222.996094 46.3125 222.996094 46.195312 Z M 222.996094 46.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.421875 45.542969 C 223.421875 45.425781 223.328125 45.332031 223.210938 45.332031 C 223.09375 45.332031 223 45.425781 223 45.542969 C 223 45.660156 223.09375 45.753906 223.210938 45.753906 C 223.328125 45.753906 223.421875 45.660156 223.421875 45.542969 Z M 223.421875 45.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.941406 43.363281 C 223.941406 43.246094 223.847656 43.152344 223.730469 43.152344 C 223.613281 43.152344 223.519531 43.246094 223.519531 43.363281 C 223.519531 43.480469 223.613281 43.574219 223.730469 43.574219 C 223.847656 43.574219 223.941406 43.480469 223.941406 43.363281 Z M 223.941406 43.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.871094 44.757812 C 221.871094 44.640625 221.777344 44.546875 221.660156 44.546875 C 221.542969 44.546875 221.449219 44.640625 221.449219 44.757812 C 221.449219 44.875 221.542969 44.96875 221.660156 44.96875 C 221.777344 44.96875 221.871094 44.875 221.871094 44.757812 Z M 221.871094 44.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.480469 45.300781 C 222.480469 45.183594 222.386719 45.089844 222.269531 45.089844 C 222.152344 45.089844 222.058594 45.183594 222.058594 45.300781 C 222.058594 45.417969 222.152344 45.511719 222.269531 45.511719 C 222.386719 45.511719 222.480469 45.417969 222.480469 45.300781 Z M 222.480469 45.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.019531 46.292969 C 220.019531 46.175781 219.925781 46.082031 219.808594 46.082031 C 219.691406 46.082031 219.597656 46.175781 219.597656 46.292969 C 219.597656 46.410156 219.691406 46.503906 219.808594 46.503906 C 219.925781 46.503906 220.019531 46.410156 220.019531 46.292969 Z M 220.019531 46.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.382812 44.632812 C 217.382812 44.515625 217.289062 44.421875 217.171875 44.421875 C 217.054688 44.421875 216.960938 44.515625 216.960938 44.632812 C 216.960938 44.75 217.054688 44.84375 217.171875 44.84375 C 217.289062 44.84375 217.382812 44.75 217.382812 44.632812 Z M 217.382812 44.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.351562 41.816406 C 217.351562 41.699219 217.257812 41.605469 217.140625 41.605469 C 217.023438 41.605469 216.929688 41.699219 216.929688 41.816406 C 216.929688 41.933594 217.023438 42.027344 217.140625 42.027344 C 217.257812 42.027344 217.351562 41.933594 217.351562 41.816406 Z M 217.351562 41.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.027344 40.078125 C 217.027344 39.960938 216.933594 39.867188 216.816406 39.867188 C 216.699219 39.867188 216.605469 39.960938 216.605469 40.078125 C 216.605469 40.195312 216.699219 40.289062 216.816406 40.289062 C 216.933594 40.289062 217.027344 40.195312 217.027344 40.078125 Z M 217.027344 40.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.042969 41.085938 C 218.042969 40.96875 217.949219 40.875 217.832031 40.875 C 217.714844 40.875 217.621094 40.96875 217.621094 41.085938 C 217.621094 41.203125 217.714844 41.296875 217.832031 41.296875 C 217.949219 41.296875 218.042969 41.203125 218.042969 41.085938 Z M 218.042969 41.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.660156 45.40625 C 217.660156 45.289062 217.566406 45.195312 217.449219 45.195312 C 217.332031 45.195312 217.238281 45.289062 217.238281 45.40625 C 217.238281 45.523438 217.332031 45.617188 217.449219 45.617188 C 217.566406 45.617188 217.660156 45.523438 217.660156 45.40625 Z M 217.660156 45.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.507812 45.492188 C 218.507812 45.375 218.414062 45.28125 218.296875 45.28125 C 218.179688 45.28125 218.085938 45.375 218.085938 45.492188 C 218.085938 45.609375 218.179688 45.703125 218.296875 45.703125 C 218.414062 45.703125 218.507812 45.609375 218.507812 45.492188 Z M 218.507812 45.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.753906 44.667969 C 219.753906 44.550781 219.660156 44.457031 219.542969 44.457031 C 219.425781 44.457031 219.332031 44.550781 219.332031 44.667969 C 219.332031 44.785156 219.425781 44.878906 219.542969 44.878906 C 219.660156 44.878906 219.753906 44.785156 219.753906 44.667969 Z M 219.753906 44.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.546875 45.867188 C 221.546875 45.75 221.453125 45.65625 221.335938 45.65625 C 221.21875 45.65625 221.125 45.75 221.125 45.867188 C 221.125 45.984375 221.21875 46.078125 221.335938 46.078125 C 221.453125 46.078125 221.546875 45.984375 221.546875 45.867188 Z M 221.546875 45.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.15625 47.640625 C 222.15625 47.523438 222.0625 47.429688 221.945312 47.429688 C 221.828125 47.429688 221.734375 47.523438 221.734375 47.640625 C 221.734375 47.757812 221.828125 47.851562 221.945312 47.851562 C 222.0625 47.851562 222.15625 47.757812 222.15625 47.640625 Z M 222.15625 47.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.21875 41.472656 C 221.21875 41.355469 221.125 41.261719 221.007812 41.261719 C 220.890625 41.261719 220.796875 41.355469 220.796875 41.472656 C 220.796875 41.589844 220.890625 41.683594 221.007812 41.683594 C 221.125 41.683594 221.21875 41.589844 221.21875 41.472656 Z M 221.21875 41.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.492188 46.175781 C 220.492188 46.058594 220.398438 45.964844 220.28125 45.964844 C 220.164062 45.964844 220.070312 46.058594 220.070312 46.175781 C 220.070312 46.292969 220.164062 46.386719 220.28125 46.386719 C 220.398438 46.386719 220.492188 46.292969 220.492188 46.175781 Z M 220.492188 46.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.410156 45.367188 C 219.410156 45.25 219.316406 45.15625 219.199219 45.15625 C 219.082031 45.15625 218.988281 45.25 218.988281 45.367188 C 218.988281 45.484375 219.082031 45.578125 219.199219 45.578125 C 219.316406 45.578125 219.410156 45.484375 219.410156 45.367188 Z M 219.410156 45.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.195312 47.554688 C 218.195312 47.4375 218.101562 47.34375 217.984375 47.34375 C 217.867188 47.34375 217.773438 47.4375 217.773438 47.554688 C 217.773438 47.671875 217.867188 47.765625 217.984375 47.765625 C 218.101562 47.765625 218.195312 47.671875 218.195312 47.554688 Z M 218.195312 47.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.949219 47.15625 C 213.949219 47.039062 213.855469 46.945312 213.738281 46.945312 C 213.621094 46.945312 213.527344 47.039062 213.527344 47.15625 C 213.527344 47.273438 213.621094 47.367188 213.738281 47.367188 C 213.855469 47.367188 213.949219 47.273438 213.949219 47.15625 Z M 213.949219 47.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.507812 43.769531 C 217.507812 43.652344 217.414062 43.558594 217.296875 43.558594 C 217.179688 43.558594 217.085938 43.652344 217.085938 43.769531 C 217.085938 43.886719 217.179688 43.980469 217.296875 43.980469 C 217.414062 43.980469 217.507812 43.886719 217.507812 43.769531 Z M 217.507812 43.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.265625 43.5625 C 215.265625 43.445312 215.171875 43.351562 215.054688 43.351562 C 214.9375 43.351562 214.84375 43.445312 214.84375 43.5625 C 214.84375 43.679688 214.9375 43.773438 215.054688 43.773438 C 215.171875 43.773438 215.265625 43.679688 215.265625 43.5625 Z M 215.265625 43.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.527344 44.570312 C 212.527344 44.453125 212.433594 44.359375 212.316406 44.359375 C 212.199219 44.359375 212.105469 44.453125 212.105469 44.570312 C 212.105469 44.6875 212.199219 44.78125 212.316406 44.78125 C 212.433594 44.78125 212.527344 44.6875 212.527344 44.570312 Z M 212.527344 44.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.292969 45.558594 C 210.292969 45.441406 210.199219 45.347656 210.082031 45.347656 C 209.964844 45.347656 209.871094 45.441406 209.871094 45.558594 C 209.871094 45.675781 209.964844 45.769531 210.082031 45.769531 C 210.199219 45.769531 210.292969 45.675781 210.292969 45.558594 Z M 210.292969 45.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.058594 43.546875 C 208.058594 43.429688 207.964844 43.335938 207.847656 43.335938 C 207.730469 43.335938 207.636719 43.429688 207.636719 43.546875 C 207.636719 43.664062 207.730469 43.757812 207.847656 43.757812 C 207.964844 43.757812 208.058594 43.664062 208.058594 43.546875 Z M 208.058594 43.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.671875 47.445312 C 205.671875 47.328125 205.578125 47.234375 205.460938 47.234375 C 205.34375 47.234375 205.25 47.328125 205.25 47.445312 C 205.25 47.5625 205.34375 47.65625 205.460938 47.65625 C 205.578125 47.65625 205.671875 47.5625 205.671875 47.445312 Z M 205.671875 47.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.886719 49.558594 C 205.886719 49.441406 205.792969 49.347656 205.675781 49.347656 C 205.558594 49.347656 205.464844 49.441406 205.464844 49.558594 C 205.464844 49.675781 205.558594 49.769531 205.675781 49.769531 C 205.792969 49.769531 205.886719 49.675781 205.886719 49.558594 Z M 205.886719 49.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.066406 46.40625 C 207.066406 46.289062 206.972656 46.195312 206.855469 46.195312 C 206.738281 46.195312 206.644531 46.289062 206.644531 46.40625 C 206.644531 46.523438 206.738281 46.617188 206.855469 46.617188 C 206.972656 46.617188 207.066406 46.523438 207.066406 46.40625 Z M 207.066406 46.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.0625 45.820312 C 208.0625 45.703125 207.96875 45.609375 207.851562 45.609375 C 207.734375 45.609375 207.640625 45.703125 207.640625 45.820312 C 207.640625 45.9375 207.734375 46.03125 207.851562 46.03125 C 207.96875 46.03125 208.0625 45.9375 208.0625 45.820312 Z M 208.0625 45.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.78125 48.324219 C 207.78125 48.207031 207.6875 48.113281 207.570312 48.113281 C 207.453125 48.113281 207.359375 48.207031 207.359375 48.324219 C 207.359375 48.441406 207.453125 48.535156 207.570312 48.535156 C 207.6875 48.535156 207.78125 48.441406 207.78125 48.324219 Z M 207.78125 48.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.273438 45.683594 C 206.273438 45.566406 206.179688 45.472656 206.0625 45.472656 C 205.945312 45.472656 205.851562 45.566406 205.851562 45.683594 C 205.851562 45.800781 205.945312 45.894531 206.0625 45.894531 C 206.179688 45.894531 206.273438 45.800781 206.273438 45.683594 Z M 206.273438 45.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.496094 45.089844 C 211.496094 44.972656 211.402344 44.878906 211.285156 44.878906 C 211.167969 44.878906 211.074219 44.972656 211.074219 45.089844 C 211.074219 45.207031 211.167969 45.300781 211.285156 45.300781 C 211.402344 45.300781 211.496094 45.207031 211.496094 45.089844 Z M 211.496094 45.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.429688 51.332031 C 213.429688 51.214844 213.335938 51.121094 213.21875 51.121094 C 213.101562 51.121094 213.007812 51.214844 213.007812 51.332031 C 213.007812 51.449219 213.101562 51.542969 213.21875 51.542969 C 213.335938 51.542969 213.429688 51.449219 213.429688 51.332031 Z M 213.429688 51.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.183594 48.511719 C 212.183594 48.394531 212.089844 48.300781 211.972656 48.300781 C 211.855469 48.300781 211.761719 48.394531 211.761719 48.511719 C 211.761719 48.628906 211.855469 48.722656 211.972656 48.722656 C 212.089844 48.722656 212.183594 48.628906 212.183594 48.511719 Z M 212.183594 48.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213 46.476562 C 213 46.359375 212.90625 46.265625 212.789062 46.265625 C 212.671875 46.265625 212.578125 46.359375 212.578125 46.476562 C 212.578125 46.59375 212.671875 46.6875 212.789062 46.6875 C 212.90625 46.6875 213 46.59375 213 46.476562 Z M 213 46.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.488281 48.785156 C 211.488281 48.667969 211.394531 48.574219 211.277344 48.574219 C 211.160156 48.574219 211.066406 48.667969 211.066406 48.785156 C 211.066406 48.902344 211.160156 48.996094 211.277344 48.996094 C 211.394531 48.996094 211.488281 48.902344 211.488281 48.785156 Z M 211.488281 48.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.027344 47.347656 C 214.027344 47.230469 213.933594 47.136719 213.816406 47.136719 C 213.699219 47.136719 213.605469 47.230469 213.605469 47.347656 C 213.605469 47.464844 213.699219 47.558594 213.816406 47.558594 C 213.933594 47.558594 214.027344 47.464844 214.027344 47.347656 Z M 214.027344 47.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.523438 48.167969 C 218.523438 48.050781 218.429688 47.957031 218.3125 47.957031 C 218.195312 47.957031 218.101562 48.050781 218.101562 48.167969 C 218.101562 48.285156 218.195312 48.378906 218.3125 48.378906 C 218.429688 48.378906 218.523438 48.285156 218.523438 48.167969 Z M 218.523438 48.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.371094 49.734375 C 219.371094 49.617188 219.277344 49.523438 219.160156 49.523438 C 219.042969 49.523438 218.949219 49.617188 218.949219 49.734375 C 218.949219 49.851562 219.042969 49.945312 219.160156 49.945312 C 219.277344 49.945312 219.371094 49.851562 219.371094 49.734375 Z M 219.371094 49.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.625 51.003906 C 217.625 50.886719 217.53125 50.792969 217.414062 50.792969 C 217.296875 50.792969 217.203125 50.886719 217.203125 51.003906 C 217.203125 51.121094 217.296875 51.214844 217.414062 51.214844 C 217.53125 51.214844 217.625 51.121094 217.625 51.003906 Z M 217.625 51.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.054688 54.480469 C 219.054688 54.363281 218.960938 54.269531 218.84375 54.269531 C 218.726562 54.269531 218.632812 54.363281 218.632812 54.480469 C 218.632812 54.597656 218.726562 54.691406 218.84375 54.691406 C 218.960938 54.691406 219.054688 54.597656 219.054688 54.480469 Z M 219.054688 54.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.613281 54.257812 C 221.613281 54.140625 221.519531 54.046875 221.402344 54.046875 C 221.285156 54.046875 221.191406 54.140625 221.191406 54.257812 C 221.191406 54.375 221.285156 54.46875 221.402344 54.46875 C 221.519531 54.46875 221.613281 54.375 221.613281 54.257812 Z M 221.613281 54.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.011719 54.648438 C 224.011719 54.53125 223.917969 54.4375 223.800781 54.4375 C 223.683594 54.4375 223.589844 54.53125 223.589844 54.648438 C 223.589844 54.765625 223.683594 54.859375 223.800781 54.859375 C 223.917969 54.859375 224.011719 54.765625 224.011719 54.648438 Z M 224.011719 54.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.925781 56.59375 C 217.925781 56.476562 217.832031 56.382812 217.714844 56.382812 C 217.597656 56.382812 217.503906 56.476562 217.503906 56.59375 C 217.503906 56.710938 217.597656 56.804688 217.714844 56.804688 C 217.832031 56.804688 217.925781 56.710938 217.925781 56.59375 Z M 217.925781 56.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.976562 54.984375 C 215.976562 54.867188 215.882812 54.773438 215.765625 54.773438 C 215.648438 54.773438 215.554688 54.867188 215.554688 54.984375 C 215.554688 55.101562 215.648438 55.195312 215.765625 55.195312 C 215.882812 55.195312 215.976562 55.101562 215.976562 54.984375 Z M 215.976562 54.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.546875 58.140625 C 214.546875 58.023438 214.453125 57.929688 214.335938 57.929688 C 214.21875 57.929688 214.125 58.023438 214.125 58.140625 C 214.125 58.257812 214.21875 58.351562 214.335938 58.351562 C 214.453125 58.351562 214.546875 58.257812 214.546875 58.140625 Z M 214.546875 58.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.34375 59.914062 C 211.34375 59.796875 211.25 59.703125 211.132812 59.703125 C 211.015625 59.703125 210.921875 59.796875 210.921875 59.914062 C 210.921875 60.03125 211.015625 60.125 211.132812 60.125 C 211.25 60.125 211.34375 60.03125 211.34375 59.914062 Z M 211.34375 59.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.8125 60.21875 C 212.8125 60.101562 212.71875 60.007812 212.601562 60.007812 C 212.484375 60.007812 212.390625 60.101562 212.390625 60.21875 C 212.390625 60.335938 212.484375 60.429688 212.601562 60.429688 C 212.71875 60.429688 212.8125 60.335938 212.8125 60.21875 Z M 212.8125 60.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.242188 60.046875 C 210.242188 59.929688 210.148438 59.835938 210.03125 59.835938 C 209.914062 59.835938 209.820312 59.929688 209.820312 60.046875 C 209.820312 60.164062 209.914062 60.257812 210.03125 60.257812 C 210.148438 60.257812 210.242188 60.164062 210.242188 60.046875 Z M 210.242188 60.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.316406 56.953125 C 211.316406 56.835938 211.222656 56.742188 211.105469 56.742188 C 210.988281 56.742188 210.894531 56.835938 210.894531 56.953125 C 210.894531 57.070312 210.988281 57.164062 211.105469 57.164062 C 211.222656 57.164062 211.316406 57.070312 211.316406 56.953125 Z M 211.316406 56.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.128906 58.371094 C 211.128906 58.253906 211.035156 58.160156 210.917969 58.160156 C 210.800781 58.160156 210.707031 58.253906 210.707031 58.371094 C 210.707031 58.488281 210.800781 58.582031 210.917969 58.582031 C 211.035156 58.582031 211.128906 58.488281 211.128906 58.371094 Z M 211.128906 58.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.738281 57.054688 C 211.738281 56.9375 211.644531 56.84375 211.527344 56.84375 C 211.410156 56.84375 211.316406 56.9375 211.316406 57.054688 C 211.316406 57.171875 211.410156 57.265625 211.527344 57.265625 C 211.644531 57.265625 211.738281 57.171875 211.738281 57.054688 Z M 211.738281 57.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.484375 57.367188 C 208.484375 57.25 208.390625 57.15625 208.273438 57.15625 C 208.15625 57.15625 208.0625 57.25 208.0625 57.367188 C 208.0625 57.484375 208.15625 57.578125 208.273438 57.578125 C 208.390625 57.578125 208.484375 57.484375 208.484375 57.367188 Z M 208.484375 57.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.777344 57.648438 C 210.777344 57.53125 210.683594 57.4375 210.566406 57.4375 C 210.449219 57.4375 210.355469 57.53125 210.355469 57.648438 C 210.355469 57.765625 210.449219 57.859375 210.566406 57.859375 C 210.683594 57.859375 210.777344 57.765625 210.777344 57.648438 Z M 210.777344 57.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.636719 55.984375 C 209.636719 55.867188 209.542969 55.773438 209.425781 55.773438 C 209.308594 55.773438 209.214844 55.867188 209.214844 55.984375 C 209.214844 56.101562 209.308594 56.195312 209.425781 56.195312 C 209.542969 56.195312 209.636719 56.101562 209.636719 55.984375 Z M 209.636719 55.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.03125 56.183594 C 206.03125 56.066406 205.9375 55.972656 205.820312 55.972656 C 205.703125 55.972656 205.609375 56.066406 205.609375 56.183594 C 205.609375 56.300781 205.703125 56.394531 205.820312 56.394531 C 205.9375 56.394531 206.03125 56.300781 206.03125 56.183594 Z M 206.03125 56.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.765625 55.40625 C 206.765625 55.289062 206.671875 55.195312 206.554688 55.195312 C 206.4375 55.195312 206.34375 55.289062 206.34375 55.40625 C 206.34375 55.523438 206.4375 55.617188 206.554688 55.617188 C 206.671875 55.617188 206.765625 55.523438 206.765625 55.40625 Z M 206.765625 55.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.011719 53.503906 C 205.011719 53.386719 204.917969 53.292969 204.800781 53.292969 C 204.683594 53.292969 204.589844 53.386719 204.589844 53.503906 C 204.589844 53.621094 204.683594 53.714844 204.800781 53.714844 C 204.917969 53.714844 205.011719 53.621094 205.011719 53.503906 Z M 205.011719 53.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.863281 53.734375 C 208.863281 53.617188 208.769531 53.523438 208.652344 53.523438 C 208.535156 53.523438 208.441406 53.617188 208.441406 53.734375 C 208.441406 53.851562 208.535156 53.945312 208.652344 53.945312 C 208.769531 53.945312 208.863281 53.851562 208.863281 53.734375 Z M 208.863281 53.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.628906 54.566406 C 210.628906 54.449219 210.535156 54.355469 210.417969 54.355469 C 210.300781 54.355469 210.207031 54.449219 210.207031 54.566406 C 210.207031 54.683594 210.300781 54.777344 210.417969 54.777344 C 210.535156 54.777344 210.628906 54.683594 210.628906 54.566406 Z M 210.628906 54.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.484375 52.25 C 209.484375 52.132812 209.390625 52.039062 209.273438 52.039062 C 209.15625 52.039062 209.0625 52.132812 209.0625 52.25 C 209.0625 52.367188 209.15625 52.460938 209.273438 52.460938 C 209.390625 52.460938 209.484375 52.367188 209.484375 52.25 Z M 209.484375 52.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.683594 50.128906 C 208.683594 50.011719 208.589844 49.917969 208.472656 49.917969 C 208.355469 49.917969 208.261719 50.011719 208.261719 50.128906 C 208.261719 50.246094 208.355469 50.339844 208.472656 50.339844 C 208.589844 50.339844 208.683594 50.246094 208.683594 50.128906 Z M 208.683594 50.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.105469 52.585938 C 207.105469 52.46875 207.011719 52.375 206.894531 52.375 C 206.777344 52.375 206.683594 52.46875 206.683594 52.585938 C 206.683594 52.703125 206.777344 52.796875 206.894531 52.796875 C 207.011719 52.796875 207.105469 52.703125 207.105469 52.585938 Z M 207.105469 52.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.429688 54.023438 C 208.429688 53.90625 208.335938 53.8125 208.21875 53.8125 C 208.101562 53.8125 208.007812 53.90625 208.007812 54.023438 C 208.007812 54.140625 208.101562 54.234375 208.21875 54.234375 C 208.335938 54.234375 208.429688 54.140625 208.429688 54.023438 Z M 208.429688 54.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.367188 52.839844 C 207.367188 52.722656 207.273438 52.628906 207.15625 52.628906 C 207.039062 52.628906 206.945312 52.722656 206.945312 52.839844 C 206.945312 52.957031 207.039062 53.050781 207.15625 53.050781 C 207.273438 53.050781 207.367188 52.957031 207.367188 52.839844 Z M 207.367188 52.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.675781 53.039062 C 210.675781 52.921875 210.582031 52.828125 210.464844 52.828125 C 210.347656 52.828125 210.253906 52.921875 210.253906 53.039062 C 210.253906 53.15625 210.347656 53.25 210.464844 53.25 C 210.582031 53.25 210.675781 53.15625 210.675781 53.039062 Z M 210.675781 53.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.253906 53.230469 C 208.253906 53.113281 208.160156 53.019531 208.042969 53.019531 C 207.925781 53.019531 207.832031 53.113281 207.832031 53.230469 C 207.832031 53.347656 207.925781 53.441406 208.042969 53.441406 C 208.160156 53.441406 208.253906 53.347656 208.253906 53.230469 Z M 208.253906 53.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.175781 54.011719 C 203.175781 53.894531 203.082031 53.800781 202.964844 53.800781 C 202.847656 53.800781 202.753906 53.894531 202.753906 54.011719 C 202.753906 54.128906 202.847656 54.222656 202.964844 54.222656 C 203.082031 54.222656 203.175781 54.128906 203.175781 54.011719 Z M 203.175781 54.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.289062 55.066406 C 204.289062 54.949219 204.195312 54.855469 204.078125 54.855469 C 203.960938 54.855469 203.867188 54.949219 203.867188 55.066406 C 203.867188 55.183594 203.960938 55.277344 204.078125 55.277344 C 204.195312 55.277344 204.289062 55.183594 204.289062 55.066406 Z M 204.289062 55.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.503906 51.675781 C 203.503906 51.558594 203.410156 51.464844 203.292969 51.464844 C 203.175781 51.464844 203.082031 51.558594 203.082031 51.675781 C 203.082031 51.792969 203.175781 51.886719 203.292969 51.886719 C 203.410156 51.886719 203.503906 51.792969 203.503906 51.675781 Z M 203.503906 51.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.753906 53.84375 C 202.753906 53.726562 202.660156 53.632812 202.542969 53.632812 C 202.425781 53.632812 202.332031 53.726562 202.332031 53.84375 C 202.332031 53.960938 202.425781 54.054688 202.542969 54.054688 C 202.660156 54.054688 202.753906 53.960938 202.753906 53.84375 Z M 202.753906 53.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.292969 57.523438 C 202.292969 57.40625 202.199219 57.3125 202.082031 57.3125 C 201.964844 57.3125 201.871094 57.40625 201.871094 57.523438 C 201.871094 57.640625 201.964844 57.734375 202.082031 57.734375 C 202.199219 57.734375 202.292969 57.640625 202.292969 57.523438 Z M 202.292969 57.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.796875 58.816406 C 202.796875 58.699219 202.703125 58.605469 202.585938 58.605469 C 202.46875 58.605469 202.375 58.699219 202.375 58.816406 C 202.375 58.933594 202.46875 59.027344 202.585938 59.027344 C 202.703125 59.027344 202.796875 58.933594 202.796875 58.816406 Z M 202.796875 58.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.453125 56.707031 C 197.453125 56.589844 197.359375 56.496094 197.242188 56.496094 C 197.125 56.496094 197.03125 56.589844 197.03125 56.707031 C 197.03125 56.824219 197.125 56.917969 197.242188 56.917969 C 197.359375 56.917969 197.453125 56.824219 197.453125 56.707031 Z M 197.453125 56.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.773438 56.402344 C 200.773438 56.285156 200.679688 56.191406 200.5625 56.191406 C 200.445312 56.191406 200.351562 56.285156 200.351562 56.402344 C 200.351562 56.519531 200.445312 56.613281 200.5625 56.613281 C 200.679688 56.613281 200.773438 56.519531 200.773438 56.402344 Z M 200.773438 56.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.417969 56.238281 C 197.417969 56.121094 197.324219 56.027344 197.207031 56.027344 C 197.089844 56.027344 196.996094 56.121094 196.996094 56.238281 C 196.996094 56.355469 197.089844 56.449219 197.207031 56.449219 C 197.324219 56.449219 197.417969 56.355469 197.417969 56.238281 Z M 197.417969 56.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.382812 55.691406 C 196.382812 55.574219 196.289062 55.480469 196.171875 55.480469 C 196.054688 55.480469 195.960938 55.574219 195.960938 55.691406 C 195.960938 55.808594 196.054688 55.902344 196.171875 55.902344 C 196.289062 55.902344 196.382812 55.808594 196.382812 55.691406 Z M 196.382812 55.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.175781 55.65625 C 195.175781 55.539062 195.082031 55.445312 194.964844 55.445312 C 194.847656 55.445312 194.753906 55.539062 194.753906 55.65625 C 194.753906 55.773438 194.847656 55.867188 194.964844 55.867188 C 195.082031 55.867188 195.175781 55.773438 195.175781 55.65625 Z M 195.175781 55.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.097656 54.242188 C 192.097656 54.125 192.003906 54.03125 191.886719 54.03125 C 191.769531 54.03125 191.675781 54.125 191.675781 54.242188 C 191.675781 54.359375 191.769531 54.453125 191.886719 54.453125 C 192.003906 54.453125 192.097656 54.359375 192.097656 54.242188 Z M 192.097656 54.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.832031 59.347656 C 188.832031 59.230469 188.738281 59.136719 188.621094 59.136719 C 188.503906 59.136719 188.410156 59.230469 188.410156 59.347656 C 188.410156 59.464844 188.503906 59.558594 188.621094 59.558594 C 188.738281 59.558594 188.832031 59.464844 188.832031 59.347656 Z M 188.832031 59.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.332031 60.394531 C 191.332031 60.277344 191.238281 60.183594 191.121094 60.183594 C 191.003906 60.183594 190.910156 60.277344 190.910156 60.394531 C 190.910156 60.511719 191.003906 60.605469 191.121094 60.605469 C 191.238281 60.605469 191.332031 60.511719 191.332031 60.394531 Z M 191.332031 60.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.925781 60.507812 C 192.925781 60.390625 192.832031 60.296875 192.714844 60.296875 C 192.597656 60.296875 192.503906 60.390625 192.503906 60.507812 C 192.503906 60.625 192.597656 60.71875 192.714844 60.71875 C 192.832031 60.71875 192.925781 60.625 192.925781 60.507812 Z M 192.925781 60.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.773438 58.128906 C 191.773438 58.011719 191.679688 57.917969 191.5625 57.917969 C 191.445312 57.917969 191.351562 58.011719 191.351562 58.128906 C 191.351562 58.246094 191.445312 58.339844 191.5625 58.339844 C 191.679688 58.339844 191.773438 58.246094 191.773438 58.128906 Z M 191.773438 58.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.296875 60.28125 C 190.296875 60.164062 190.203125 60.070312 190.085938 60.070312 C 189.96875 60.070312 189.875 60.164062 189.875 60.28125 C 189.875 60.398438 189.96875 60.492188 190.085938 60.492188 C 190.203125 60.492188 190.296875 60.398438 190.296875 60.28125 Z M 190.296875 60.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.859375 59.988281 C 190.859375 59.871094 190.765625 59.777344 190.648438 59.777344 C 190.53125 59.777344 190.4375 59.871094 190.4375 59.988281 C 190.4375 60.105469 190.53125 60.199219 190.648438 60.199219 C 190.765625 60.199219 190.859375 60.105469 190.859375 59.988281 Z M 190.859375 59.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.34375 62.863281 C 196.34375 62.746094 196.25 62.652344 196.132812 62.652344 C 196.015625 62.652344 195.921875 62.746094 195.921875 62.863281 C 195.921875 62.980469 196.015625 63.074219 196.132812 63.074219 C 196.25 63.074219 196.34375 62.980469 196.34375 62.863281 Z M 196.34375 62.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.609375 64.464844 C 195.609375 64.347656 195.515625 64.253906 195.398438 64.253906 C 195.28125 64.253906 195.1875 64.347656 195.1875 64.464844 C 195.1875 64.582031 195.28125 64.675781 195.398438 64.675781 C 195.515625 64.675781 195.609375 64.582031 195.609375 64.464844 Z M 195.609375 64.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.382812 62.625 C 197.382812 62.507812 197.289062 62.414062 197.171875 62.414062 C 197.054688 62.414062 196.960938 62.507812 196.960938 62.625 C 196.960938 62.742188 197.054688 62.835938 197.171875 62.835938 C 197.289062 62.835938 197.382812 62.742188 197.382812 62.625 Z M 197.382812 62.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.757812 65.898438 C 199.757812 65.78125 199.664062 65.6875 199.546875 65.6875 C 199.429688 65.6875 199.335938 65.78125 199.335938 65.898438 C 199.335938 66.015625 199.429688 66.109375 199.546875 66.109375 C 199.664062 66.109375 199.757812 66.015625 199.757812 65.898438 Z M 199.757812 65.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.945312 64.875 C 201.945312 64.757812 201.851562 64.664062 201.734375 64.664062 C 201.617188 64.664062 201.523438 64.757812 201.523438 64.875 C 201.523438 64.992188 201.617188 65.085938 201.734375 65.085938 C 201.851562 65.085938 201.945312 64.992188 201.945312 64.875 Z M 201.945312 64.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.449219 64.5625 C 202.449219 64.445312 202.355469 64.351562 202.238281 64.351562 C 202.121094 64.351562 202.027344 64.445312 202.027344 64.5625 C 202.027344 64.679688 202.121094 64.773438 202.238281 64.773438 C 202.355469 64.773438 202.449219 64.679688 202.449219 64.5625 Z M 202.449219 64.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.808594 66.226562 C 201.808594 66.109375 201.714844 66.015625 201.597656 66.015625 C 201.480469 66.015625 201.386719 66.109375 201.386719 66.226562 C 201.386719 66.34375 201.480469 66.4375 201.597656 66.4375 C 201.714844 66.4375 201.808594 66.34375 201.808594 66.226562 Z M 201.808594 66.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.378906 64.515625 C 201.378906 64.398438 201.285156 64.304688 201.167969 64.304688 C 201.050781 64.304688 200.957031 64.398438 200.957031 64.515625 C 200.957031 64.632812 201.050781 64.726562 201.167969 64.726562 C 201.285156 64.726562 201.378906 64.632812 201.378906 64.515625 Z M 201.378906 64.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.628906 65.292969 C 203.628906 65.175781 203.535156 65.082031 203.417969 65.082031 C 203.300781 65.082031 203.207031 65.175781 203.207031 65.292969 C 203.207031 65.410156 203.300781 65.503906 203.417969 65.503906 C 203.535156 65.503906 203.628906 65.410156 203.628906 65.292969 Z M 203.628906 65.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.550781 66.386719 C 200.550781 66.269531 200.457031 66.175781 200.339844 66.175781 C 200.222656 66.175781 200.128906 66.269531 200.128906 66.386719 C 200.128906 66.503906 200.222656 66.597656 200.339844 66.597656 C 200.457031 66.597656 200.550781 66.503906 200.550781 66.386719 Z M 200.550781 66.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.519531 69.605469 C 199.519531 69.488281 199.425781 69.394531 199.308594 69.394531 C 199.191406 69.394531 199.097656 69.488281 199.097656 69.605469 C 199.097656 69.722656 199.191406 69.816406 199.308594 69.816406 C 199.425781 69.816406 199.519531 69.722656 199.519531 69.605469 Z M 199.519531 69.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.90625 71.007812 C 201.90625 70.890625 201.8125 70.796875 201.695312 70.796875 C 201.578125 70.796875 201.484375 70.890625 201.484375 71.007812 C 201.484375 71.125 201.578125 71.21875 201.695312 71.21875 C 201.8125 71.21875 201.90625 71.125 201.90625 71.007812 Z M 201.90625 71.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.675781 68.34375 C 202.675781 68.226562 202.582031 68.132812 202.464844 68.132812 C 202.347656 68.132812 202.253906 68.226562 202.253906 68.34375 C 202.253906 68.460938 202.347656 68.554688 202.464844 68.554688 C 202.582031 68.554688 202.675781 68.460938 202.675781 68.34375 Z M 202.675781 68.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.257812 66.601562 C 205.257812 66.484375 205.164062 66.390625 205.046875 66.390625 C 204.929688 66.390625 204.835938 66.484375 204.835938 66.601562 C 204.835938 66.71875 204.929688 66.8125 205.046875 66.8125 C 205.164062 66.8125 205.257812 66.71875 205.257812 66.601562 Z M 205.257812 66.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.023438 70.394531 C 205.023438 70.277344 204.929688 70.183594 204.8125 70.183594 C 204.695312 70.183594 204.601562 70.277344 204.601562 70.394531 C 204.601562 70.511719 204.695312 70.605469 204.8125 70.605469 C 204.929688 70.605469 205.023438 70.511719 205.023438 70.394531 Z M 205.023438 70.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.050781 73.316406 C 203.050781 73.199219 202.957031 73.105469 202.839844 73.105469 C 202.722656 73.105469 202.628906 73.199219 202.628906 73.316406 C 202.628906 73.433594 202.722656 73.527344 202.839844 73.527344 C 202.957031 73.527344 203.050781 73.433594 203.050781 73.316406 Z M 203.050781 73.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.734375 72.445312 C 201.734375 72.328125 201.640625 72.234375 201.523438 72.234375 C 201.40625 72.234375 201.3125 72.328125 201.3125 72.445312 C 201.3125 72.5625 201.40625 72.65625 201.523438 72.65625 C 201.640625 72.65625 201.734375 72.5625 201.734375 72.445312 Z M 201.734375 72.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.078125 71.269531 C 201.078125 71.152344 200.984375 71.058594 200.867188 71.058594 C 200.75 71.058594 200.65625 71.152344 200.65625 71.269531 C 200.65625 71.386719 200.75 71.480469 200.867188 71.480469 C 200.984375 71.480469 201.078125 71.386719 201.078125 71.269531 Z M 201.078125 71.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.878906 73.558594 C 200.878906 73.441406 200.785156 73.347656 200.667969 73.347656 C 200.550781 73.347656 200.457031 73.441406 200.457031 73.558594 C 200.457031 73.675781 200.550781 73.769531 200.667969 73.769531 C 200.785156 73.769531 200.878906 73.675781 200.878906 73.558594 Z M 200.878906 73.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.625 76.109375 C 199.625 75.992188 199.53125 75.898438 199.414062 75.898438 C 199.296875 75.898438 199.203125 75.992188 199.203125 76.109375 C 199.203125 76.226562 199.296875 76.320312 199.414062 76.320312 C 199.53125 76.320312 199.625 76.226562 199.625 76.109375 Z M 199.625 76.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.976562 77.40625 C 199.976562 77.289062 199.882812 77.195312 199.765625 77.195312 C 199.648438 77.195312 199.554688 77.289062 199.554688 77.40625 C 199.554688 77.523438 199.648438 77.617188 199.765625 77.617188 C 199.882812 77.617188 199.976562 77.523438 199.976562 77.40625 Z M 199.976562 77.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.773438 78.351562 C 199.773438 78.234375 199.679688 78.140625 199.5625 78.140625 C 199.445312 78.140625 199.351562 78.234375 199.351562 78.351562 C 199.351562 78.46875 199.445312 78.5625 199.5625 78.5625 C 199.679688 78.5625 199.773438 78.46875 199.773438 78.351562 Z M 199.773438 78.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.597656 76.652344 C 198.597656 76.535156 198.503906 76.441406 198.386719 76.441406 C 198.269531 76.441406 198.175781 76.535156 198.175781 76.652344 C 198.175781 76.769531 198.269531 76.863281 198.386719 76.863281 C 198.503906 76.863281 198.597656 76.769531 198.597656 76.652344 Z M 198.597656 76.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.785156 76.859375 C 194.785156 76.742188 194.691406 76.648438 194.574219 76.648438 C 194.457031 76.648438 194.363281 76.742188 194.363281 76.859375 C 194.363281 76.976562 194.457031 77.070312 194.574219 77.070312 C 194.691406 77.070312 194.785156 76.976562 194.785156 76.859375 Z M 194.785156 76.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.738281 78.378906 C 196.738281 78.261719 196.644531 78.167969 196.527344 78.167969 C 196.410156 78.167969 196.316406 78.261719 196.316406 78.378906 C 196.316406 78.496094 196.410156 78.589844 196.527344 78.589844 C 196.644531 78.589844 196.738281 78.496094 196.738281 78.378906 Z M 196.738281 78.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.804688 81.5 C 197.804688 81.382812 197.710938 81.289062 197.59375 81.289062 C 197.476562 81.289062 197.382812 81.382812 197.382812 81.5 C 197.382812 81.617188 197.476562 81.710938 197.59375 81.710938 C 197.710938 81.710938 197.804688 81.617188 197.804688 81.5 Z M 197.804688 81.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.671875 83.425781 C 195.671875 83.308594 195.578125 83.214844 195.460938 83.214844 C 195.34375 83.214844 195.25 83.308594 195.25 83.425781 C 195.25 83.542969 195.34375 83.636719 195.460938 83.636719 C 195.578125 83.636719 195.671875 83.542969 195.671875 83.425781 Z M 195.671875 83.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.171875 86.953125 C 194.171875 86.835938 194.078125 86.742188 193.960938 86.742188 C 193.84375 86.742188 193.75 86.835938 193.75 86.953125 C 193.75 87.070312 193.84375 87.164062 193.960938 87.164062 C 194.078125 87.164062 194.171875 87.070312 194.171875 86.953125 Z M 194.171875 86.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.511719 86.96875 C 194.511719 86.851562 194.417969 86.757812 194.300781 86.757812 C 194.183594 86.757812 194.089844 86.851562 194.089844 86.96875 C 194.089844 87.085938 194.183594 87.179688 194.300781 87.179688 C 194.417969 87.179688 194.511719 87.085938 194.511719 86.96875 Z M 194.511719 86.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.289062 88.78125 C 196.289062 88.664062 196.195312 88.570312 196.078125 88.570312 C 195.960938 88.570312 195.867188 88.664062 195.867188 88.78125 C 195.867188 88.898438 195.960938 88.992188 196.078125 88.992188 C 196.195312 88.992188 196.289062 88.898438 196.289062 88.78125 Z M 196.289062 88.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.992188 90.054688 C 200.992188 89.9375 200.898438 89.84375 200.78125 89.84375 C 200.664062 89.84375 200.570312 89.9375 200.570312 90.054688 C 200.570312 90.171875 200.664062 90.265625 200.78125 90.265625 C 200.898438 90.265625 200.992188 90.171875 200.992188 90.054688 Z M 200.992188 90.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.488281 90.625 C 203.488281 90.507812 203.394531 90.414062 203.277344 90.414062 C 203.160156 90.414062 203.066406 90.507812 203.066406 90.625 C 203.066406 90.742188 203.160156 90.835938 203.277344 90.835938 C 203.394531 90.835938 203.488281 90.742188 203.488281 90.625 Z M 203.488281 90.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.039062 93.132812 C 202.039062 93.015625 201.945312 92.921875 201.828125 92.921875 C 201.710938 92.921875 201.617188 93.015625 201.617188 93.132812 C 201.617188 93.25 201.710938 93.34375 201.828125 93.34375 C 201.945312 93.34375 202.039062 93.25 202.039062 93.132812 Z M 202.039062 93.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.082031 91.730469 C 199.082031 91.613281 198.988281 91.519531 198.871094 91.519531 C 198.753906 91.519531 198.660156 91.613281 198.660156 91.730469 C 198.660156 91.847656 198.753906 91.941406 198.871094 91.941406 C 198.988281 91.941406 199.082031 91.847656 199.082031 91.730469 Z M 199.082031 91.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.59375 92.417969 C 200.59375 92.300781 200.5 92.207031 200.382812 92.207031 C 200.265625 92.207031 200.171875 92.300781 200.171875 92.417969 C 200.171875 92.535156 200.265625 92.628906 200.382812 92.628906 C 200.5 92.628906 200.59375 92.535156 200.59375 92.417969 Z M 200.59375 92.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.726562 92.261719 C 203.726562 92.144531 203.632812 92.050781 203.515625 92.050781 C 203.398438 92.050781 203.304688 92.144531 203.304688 92.261719 C 203.304688 92.378906 203.398438 92.472656 203.515625 92.472656 C 203.632812 92.472656 203.726562 92.378906 203.726562 92.261719 Z M 203.726562 92.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.246094 88.460938 C 206.246094 88.34375 206.152344 88.25 206.035156 88.25 C 205.917969 88.25 205.824219 88.34375 205.824219 88.460938 C 205.824219 88.578125 205.917969 88.671875 206.035156 88.671875 C 206.152344 88.671875 206.246094 88.578125 206.246094 88.460938 Z M 206.246094 88.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.984375 89.371094 C 208.984375 89.253906 208.890625 89.160156 208.773438 89.160156 C 208.65625 89.160156 208.5625 89.253906 208.5625 89.371094 C 208.5625 89.488281 208.65625 89.582031 208.773438 89.582031 C 208.890625 89.582031 208.984375 89.488281 208.984375 89.371094 Z M 208.984375 89.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.703125 89.511719 C 210.703125 89.394531 210.609375 89.300781 210.492188 89.300781 C 210.375 89.300781 210.28125 89.394531 210.28125 89.511719 C 210.28125 89.628906 210.375 89.722656 210.492188 89.722656 C 210.609375 89.722656 210.703125 89.628906 210.703125 89.511719 Z M 210.703125 89.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.222656 88.152344 C 211.222656 88.035156 211.128906 87.941406 211.011719 87.941406 C 210.894531 87.941406 210.800781 88.035156 210.800781 88.152344 C 210.800781 88.269531 210.894531 88.363281 211.011719 88.363281 C 211.128906 88.363281 211.222656 88.269531 211.222656 88.152344 Z M 211.222656 88.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211 87.832031 C 211 87.714844 210.90625 87.621094 210.789062 87.621094 C 210.671875 87.621094 210.578125 87.714844 210.578125 87.832031 C 210.578125 87.949219 210.671875 88.042969 210.789062 88.042969 C 210.90625 88.042969 211 87.949219 211 87.832031 Z M 211 87.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.40625 88.902344 C 216.40625 88.785156 216.3125 88.691406 216.195312 88.691406 C 216.078125 88.691406 215.984375 88.785156 215.984375 88.902344 C 215.984375 89.019531 216.078125 89.113281 216.195312 89.113281 C 216.3125 89.113281 216.40625 89.019531 216.40625 88.902344 Z M 216.40625 88.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.175781 91.378906 C 218.175781 91.261719 218.082031 91.167969 217.964844 91.167969 C 217.847656 91.167969 217.753906 91.261719 217.753906 91.378906 C 217.753906 91.496094 217.847656 91.589844 217.964844 91.589844 C 218.082031 91.589844 218.175781 91.496094 218.175781 91.378906 Z M 218.175781 91.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.785156 90.417969 C 218.785156 90.300781 218.691406 90.207031 218.574219 90.207031 C 218.457031 90.207031 218.363281 90.300781 218.363281 90.417969 C 218.363281 90.535156 218.457031 90.628906 218.574219 90.628906 C 218.691406 90.628906 218.785156 90.535156 218.785156 90.417969 Z M 218.785156 90.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.660156 91.175781 C 217.660156 91.058594 217.566406 90.964844 217.449219 90.964844 C 217.332031 90.964844 217.238281 91.058594 217.238281 91.175781 C 217.238281 91.292969 217.332031 91.386719 217.449219 91.386719 C 217.566406 91.386719 217.660156 91.292969 217.660156 91.175781 Z M 217.660156 91.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.640625 88.355469 C 218.640625 88.238281 218.546875 88.144531 218.429688 88.144531 C 218.3125 88.144531 218.21875 88.238281 218.21875 88.355469 C 218.21875 88.472656 218.3125 88.566406 218.429688 88.566406 C 218.546875 88.566406 218.640625 88.472656 218.640625 88.355469 Z M 218.640625 88.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.695312 91.769531 C 219.695312 91.652344 219.601562 91.558594 219.484375 91.558594 C 219.367188 91.558594 219.273438 91.652344 219.273438 91.769531 C 219.273438 91.886719 219.367188 91.980469 219.484375 91.980469 C 219.601562 91.980469 219.695312 91.886719 219.695312 91.769531 Z M 219.695312 91.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.96875 89.347656 C 220.96875 89.230469 220.875 89.136719 220.757812 89.136719 C 220.640625 89.136719 220.546875 89.230469 220.546875 89.347656 C 220.546875 89.464844 220.640625 89.558594 220.757812 89.558594 C 220.875 89.558594 220.96875 89.464844 220.96875 89.347656 Z M 220.96875 89.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.765625 87.023438 C 220.765625 86.90625 220.671875 86.8125 220.554688 86.8125 C 220.4375 86.8125 220.34375 86.90625 220.34375 87.023438 C 220.34375 87.140625 220.4375 87.234375 220.554688 87.234375 C 220.671875 87.234375 220.765625 87.140625 220.765625 87.023438 Z M 220.765625 87.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.46875 86.996094 C 221.46875 86.878906 221.375 86.785156 221.257812 86.785156 C 221.140625 86.785156 221.046875 86.878906 221.046875 86.996094 C 221.046875 87.113281 221.140625 87.207031 221.257812 87.207031 C 221.375 87.207031 221.46875 87.113281 221.46875 86.996094 Z M 221.46875 86.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.863281 90.054688 C 219.863281 89.9375 219.769531 89.84375 219.652344 89.84375 C 219.535156 89.84375 219.441406 89.9375 219.441406 90.054688 C 219.441406 90.171875 219.535156 90.265625 219.652344 90.265625 C 219.769531 90.265625 219.863281 90.171875 219.863281 90.054688 Z M 219.863281 90.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.390625 91.722656 C 219.390625 91.605469 219.296875 91.511719 219.179688 91.511719 C 219.0625 91.511719 218.96875 91.605469 218.96875 91.722656 C 218.96875 91.839844 219.0625 91.933594 219.179688 91.933594 C 219.296875 91.933594 219.390625 91.839844 219.390625 91.722656 Z M 219.390625 91.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.527344 93.890625 C 219.527344 93.773438 219.433594 93.679688 219.316406 93.679688 C 219.199219 93.679688 219.105469 93.773438 219.105469 93.890625 C 219.105469 94.007812 219.199219 94.101562 219.316406 94.101562 C 219.433594 94.101562 219.527344 94.007812 219.527344 93.890625 Z M 219.527344 93.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.519531 92.765625 C 216.519531 92.648438 216.425781 92.554688 216.308594 92.554688 C 216.191406 92.554688 216.097656 92.648438 216.097656 92.765625 C 216.097656 92.882812 216.191406 92.976562 216.308594 92.976562 C 216.425781 92.976562 216.519531 92.882812 216.519531 92.765625 Z M 216.519531 92.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.300781 92.832031 C 217.300781 92.714844 217.207031 92.621094 217.089844 92.621094 C 216.972656 92.621094 216.878906 92.714844 216.878906 92.832031 C 216.878906 92.949219 216.972656 93.042969 217.089844 93.042969 C 217.207031 93.042969 217.300781 92.949219 217.300781 92.832031 Z M 217.300781 92.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.347656 93.070312 C 217.347656 92.953125 217.253906 92.859375 217.136719 92.859375 C 217.019531 92.859375 216.925781 92.953125 216.925781 93.070312 C 216.925781 93.1875 217.019531 93.28125 217.136719 93.28125 C 217.253906 93.28125 217.347656 93.1875 217.347656 93.070312 Z M 217.347656 93.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.476562 89.558594 C 216.476562 89.441406 216.382812 89.347656 216.265625 89.347656 C 216.148438 89.347656 216.054688 89.441406 216.054688 89.558594 C 216.054688 89.675781 216.148438 89.769531 216.265625 89.769531 C 216.382812 89.769531 216.476562 89.675781 216.476562 89.558594 Z M 216.476562 89.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.316406 88.804688 C 215.316406 88.6875 215.222656 88.59375 215.105469 88.59375 C 214.988281 88.59375 214.894531 88.6875 214.894531 88.804688 C 214.894531 88.921875 214.988281 89.015625 215.105469 89.015625 C 215.222656 89.015625 215.316406 88.921875 215.316406 88.804688 Z M 215.316406 88.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.976562 88.480469 C 215.976562 88.363281 215.882812 88.269531 215.765625 88.269531 C 215.648438 88.269531 215.554688 88.363281 215.554688 88.480469 C 215.554688 88.597656 215.648438 88.691406 215.765625 88.691406 C 215.882812 88.691406 215.976562 88.597656 215.976562 88.480469 Z M 215.976562 88.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.804688 93.292969 C 214.804688 93.175781 214.710938 93.082031 214.59375 93.082031 C 214.476562 93.082031 214.382812 93.175781 214.382812 93.292969 C 214.382812 93.410156 214.476562 93.503906 214.59375 93.503906 C 214.710938 93.503906 214.804688 93.410156 214.804688 93.292969 Z M 214.804688 93.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.46875 94.335938 C 216.46875 94.21875 216.375 94.125 216.257812 94.125 C 216.140625 94.125 216.046875 94.21875 216.046875 94.335938 C 216.046875 94.453125 216.140625 94.546875 216.257812 94.546875 C 216.375 94.546875 216.46875 94.453125 216.46875 94.335938 Z M 216.46875 94.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.160156 91.613281 C 215.160156 91.496094 215.066406 91.402344 214.949219 91.402344 C 214.832031 91.402344 214.738281 91.496094 214.738281 91.613281 C 214.738281 91.730469 214.832031 91.824219 214.949219 91.824219 C 215.066406 91.824219 215.160156 91.730469 215.160156 91.613281 Z M 215.160156 91.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.84375 91.847656 C 217.84375 91.730469 217.75 91.636719 217.632812 91.636719 C 217.515625 91.636719 217.421875 91.730469 217.421875 91.847656 C 217.421875 91.964844 217.515625 92.058594 217.632812 92.058594 C 217.75 92.058594 217.84375 91.964844 217.84375 91.847656 Z M 217.84375 91.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.183594 91.546875 C 218.183594 91.429688 218.089844 91.335938 217.972656 91.335938 C 217.855469 91.335938 217.761719 91.429688 217.761719 91.546875 C 217.761719 91.664062 217.855469 91.757812 217.972656 91.757812 C 218.089844 91.757812 218.183594 91.664062 218.183594 91.546875 Z M 218.183594 91.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.5625 92.007812 C 219.5625 91.890625 219.46875 91.796875 219.351562 91.796875 C 219.234375 91.796875 219.140625 91.890625 219.140625 92.007812 C 219.140625 92.125 219.234375 92.21875 219.351562 92.21875 C 219.46875 92.21875 219.5625 92.125 219.5625 92.007812 Z M 219.5625 92.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.082031 92.171875 C 217.082031 92.054688 216.988281 91.960938 216.871094 91.960938 C 216.753906 91.960938 216.660156 92.054688 216.660156 92.171875 C 216.660156 92.289062 216.753906 92.382812 216.871094 92.382812 C 216.988281 92.382812 217.082031 92.289062 217.082031 92.171875 Z M 217.082031 92.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.019531 95.722656 C 218.019531 95.605469 217.925781 95.511719 217.808594 95.511719 C 217.691406 95.511719 217.597656 95.605469 217.597656 95.722656 C 217.597656 95.839844 217.691406 95.933594 217.808594 95.933594 C 217.925781 95.933594 218.019531 95.839844 218.019531 95.722656 Z M 218.019531 95.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.214844 95.980469 C 215.214844 95.863281 215.121094 95.769531 215.003906 95.769531 C 214.886719 95.769531 214.792969 95.863281 214.792969 95.980469 C 214.792969 96.097656 214.886719 96.191406 215.003906 96.191406 C 215.121094 96.191406 215.214844 96.097656 215.214844 95.980469 Z M 215.214844 95.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.347656 96.148438 C 213.347656 96.03125 213.253906 95.9375 213.136719 95.9375 C 213.019531 95.9375 212.925781 96.03125 212.925781 96.148438 C 212.925781 96.265625 213.019531 96.359375 213.136719 96.359375 C 213.253906 96.359375 213.347656 96.265625 213.347656 96.148438 Z M 213.347656 96.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.90625 97.324219 C 214.90625 97.207031 214.8125 97.113281 214.695312 97.113281 C 214.578125 97.113281 214.484375 97.207031 214.484375 97.324219 C 214.484375 97.441406 214.578125 97.535156 214.695312 97.535156 C 214.8125 97.535156 214.90625 97.441406 214.90625 97.324219 Z M 214.90625 97.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.375 96.351562 C 214.375 96.234375 214.28125 96.140625 214.164062 96.140625 C 214.046875 96.140625 213.953125 96.234375 213.953125 96.351562 C 213.953125 96.46875 214.046875 96.5625 214.164062 96.5625 C 214.28125 96.5625 214.375 96.46875 214.375 96.351562 Z M 214.375 96.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.601562 94.753906 C 216.601562 94.636719 216.507812 94.542969 216.390625 94.542969 C 216.273438 94.542969 216.179688 94.636719 216.179688 94.753906 C 216.179688 94.871094 216.273438 94.964844 216.390625 94.964844 C 216.507812 94.964844 216.601562 94.871094 216.601562 94.753906 Z M 216.601562 94.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.792969 96.128906 C 216.792969 96.011719 216.699219 95.917969 216.582031 95.917969 C 216.464844 95.917969 216.371094 96.011719 216.371094 96.128906 C 216.371094 96.246094 216.464844 96.339844 216.582031 96.339844 C 216.699219 96.339844 216.792969 96.246094 216.792969 96.128906 Z M 216.792969 96.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.359375 94.84375 C 214.359375 94.726562 214.265625 94.632812 214.148438 94.632812 C 214.03125 94.632812 213.9375 94.726562 213.9375 94.84375 C 213.9375 94.960938 214.03125 95.054688 214.148438 95.054688 C 214.265625 95.054688 214.359375 94.960938 214.359375 94.84375 Z M 214.359375 94.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.546875 92.703125 C 215.546875 92.585938 215.453125 92.492188 215.335938 92.492188 C 215.21875 92.492188 215.125 92.585938 215.125 92.703125 C 215.125 92.820312 215.21875 92.914062 215.335938 92.914062 C 215.453125 92.914062 215.546875 92.820312 215.546875 92.703125 Z M 215.546875 92.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.839844 87.117188 C 217.839844 87 217.746094 86.90625 217.628906 86.90625 C 217.511719 86.90625 217.417969 87 217.417969 87.117188 C 217.417969 87.234375 217.511719 87.328125 217.628906 87.328125 C 217.746094 87.328125 217.839844 87.234375 217.839844 87.117188 Z M 217.839844 87.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.011719 83.058594 C 219.011719 82.941406 218.917969 82.847656 218.800781 82.847656 C 218.683594 82.847656 218.589844 82.941406 218.589844 83.058594 C 218.589844 83.175781 218.683594 83.269531 218.800781 83.269531 C 218.917969 83.269531 219.011719 83.175781 219.011719 83.058594 Z M 219.011719 83.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.878906 80.316406 C 219.878906 80.199219 219.785156 80.105469 219.667969 80.105469 C 219.550781 80.105469 219.457031 80.199219 219.457031 80.316406 C 219.457031 80.433594 219.550781 80.527344 219.667969 80.527344 C 219.785156 80.527344 219.878906 80.433594 219.878906 80.316406 Z M 219.878906 80.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.039062 80.847656 C 220.039062 80.730469 219.945312 80.636719 219.828125 80.636719 C 219.710938 80.636719 219.617188 80.730469 219.617188 80.847656 C 219.617188 80.964844 219.710938 81.058594 219.828125 81.058594 C 219.945312 81.058594 220.039062 80.964844 220.039062 80.847656 Z M 220.039062 80.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.300781 81.257812 C 220.300781 81.140625 220.207031 81.046875 220.089844 81.046875 C 219.972656 81.046875 219.878906 81.140625 219.878906 81.257812 C 219.878906 81.375 219.972656 81.46875 220.089844 81.46875 C 220.207031 81.46875 220.300781 81.375 220.300781 81.257812 Z M 220.300781 81.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.457031 80.980469 C 220.457031 80.863281 220.363281 80.769531 220.246094 80.769531 C 220.128906 80.769531 220.035156 80.863281 220.035156 80.980469 C 220.035156 81.097656 220.128906 81.191406 220.246094 81.191406 C 220.363281 81.191406 220.457031 81.097656 220.457031 80.980469 Z M 220.457031 80.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.949219 84.839844 C 219.949219 84.722656 219.855469 84.628906 219.738281 84.628906 C 219.621094 84.628906 219.527344 84.722656 219.527344 84.839844 C 219.527344 84.957031 219.621094 85.050781 219.738281 85.050781 C 219.855469 85.050781 219.949219 84.957031 219.949219 84.839844 Z M 219.949219 84.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.390625 85.445312 C 219.390625 85.328125 219.296875 85.234375 219.179688 85.234375 C 219.0625 85.234375 218.96875 85.328125 218.96875 85.445312 C 218.96875 85.5625 219.0625 85.65625 219.179688 85.65625 C 219.296875 85.65625 219.390625 85.5625 219.390625 85.445312 Z M 219.390625 85.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.945312 84.300781 C 216.945312 84.183594 216.851562 84.089844 216.734375 84.089844 C 216.617188 84.089844 216.523438 84.183594 216.523438 84.300781 C 216.523438 84.417969 216.617188 84.511719 216.734375 84.511719 C 216.851562 84.511719 216.945312 84.417969 216.945312 84.300781 Z M 216.945312 84.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.796875 81.347656 C 218.796875 81.230469 218.703125 81.136719 218.585938 81.136719 C 218.46875 81.136719 218.375 81.230469 218.375 81.347656 C 218.375 81.464844 218.46875 81.558594 218.585938 81.558594 C 218.703125 81.558594 218.796875 81.464844 218.796875 81.347656 Z M 218.796875 81.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.523438 81.863281 C 219.523438 81.746094 219.429688 81.652344 219.3125 81.652344 C 219.195312 81.652344 219.101562 81.746094 219.101562 81.863281 C 219.101562 81.980469 219.195312 82.074219 219.3125 82.074219 C 219.429688 82.074219 219.523438 81.980469 219.523438 81.863281 Z M 219.523438 81.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.40625 84.5625 C 222.40625 84.445312 222.3125 84.351562 222.195312 84.351562 C 222.078125 84.351562 221.984375 84.445312 221.984375 84.5625 C 221.984375 84.679688 222.078125 84.773438 222.195312 84.773438 C 222.3125 84.773438 222.40625 84.679688 222.40625 84.5625 Z M 222.40625 84.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.597656 84.414062 C 221.597656 84.296875 221.503906 84.203125 221.386719 84.203125 C 221.269531 84.203125 221.175781 84.296875 221.175781 84.414062 C 221.175781 84.53125 221.269531 84.625 221.386719 84.625 C 221.503906 84.625 221.597656 84.53125 221.597656 84.414062 Z M 221.597656 84.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.28125 80.597656 C 220.28125 80.480469 220.1875 80.386719 220.070312 80.386719 C 219.953125 80.386719 219.859375 80.480469 219.859375 80.597656 C 219.859375 80.714844 219.953125 80.808594 220.070312 80.808594 C 220.1875 80.808594 220.28125 80.714844 220.28125 80.597656 Z M 220.28125 80.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.40625 82.691406 C 222.40625 82.574219 222.3125 82.480469 222.195312 82.480469 C 222.078125 82.480469 221.984375 82.574219 221.984375 82.691406 C 221.984375 82.808594 222.078125 82.902344 222.195312 82.902344 C 222.3125 82.902344 222.40625 82.808594 222.40625 82.691406 Z M 222.40625 82.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.675781 81.453125 C 218.675781 81.335938 218.582031 81.242188 218.464844 81.242188 C 218.347656 81.242188 218.253906 81.335938 218.253906 81.453125 C 218.253906 81.570312 218.347656 81.664062 218.464844 81.664062 C 218.582031 81.664062 218.675781 81.570312 218.675781 81.453125 Z M 218.675781 81.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.71875 76.703125 C 220.71875 76.585938 220.625 76.492188 220.507812 76.492188 C 220.390625 76.492188 220.296875 76.585938 220.296875 76.703125 C 220.296875 76.820312 220.390625 76.914062 220.507812 76.914062 C 220.625 76.914062 220.71875 76.820312 220.71875 76.703125 Z M 220.71875 76.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.371094 80.167969 C 221.371094 80.050781 221.277344 79.957031 221.160156 79.957031 C 221.042969 79.957031 220.949219 80.050781 220.949219 80.167969 C 220.949219 80.285156 221.042969 80.378906 221.160156 80.378906 C 221.277344 80.378906 221.371094 80.285156 221.371094 80.167969 Z M 221.371094 80.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.824219 77.195312 C 222.824219 77.078125 222.730469 76.984375 222.613281 76.984375 C 222.496094 76.984375 222.402344 77.078125 222.402344 77.195312 C 222.402344 77.3125 222.496094 77.40625 222.613281 77.40625 C 222.730469 77.40625 222.824219 77.3125 222.824219 77.195312 Z M 222.824219 77.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.121094 78.488281 C 226.121094 78.371094 226.027344 78.277344 225.910156 78.277344 C 225.792969 78.277344 225.699219 78.371094 225.699219 78.488281 C 225.699219 78.605469 225.792969 78.699219 225.910156 78.699219 C 226.027344 78.699219 226.121094 78.605469 226.121094 78.488281 Z M 226.121094 78.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.234375 75.289062 C 225.234375 75.171875 225.140625 75.078125 225.023438 75.078125 C 224.90625 75.078125 224.8125 75.171875 224.8125 75.289062 C 224.8125 75.40625 224.90625 75.5 225.023438 75.5 C 225.140625 75.5 225.234375 75.40625 225.234375 75.289062 Z M 225.234375 75.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.996094 76.558594 C 224.996094 76.441406 224.902344 76.347656 224.785156 76.347656 C 224.667969 76.347656 224.574219 76.441406 224.574219 76.558594 C 224.574219 76.675781 224.667969 76.769531 224.785156 76.769531 C 224.902344 76.769531 224.996094 76.675781 224.996094 76.558594 Z M 224.996094 76.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.683594 74.800781 C 223.683594 74.683594 223.589844 74.589844 223.472656 74.589844 C 223.355469 74.589844 223.261719 74.683594 223.261719 74.800781 C 223.261719 74.917969 223.355469 75.011719 223.472656 75.011719 C 223.589844 75.011719 223.683594 74.917969 223.683594 74.800781 Z M 223.683594 74.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.644531 76.816406 C 224.644531 76.699219 224.550781 76.605469 224.433594 76.605469 C 224.316406 76.605469 224.222656 76.699219 224.222656 76.816406 C 224.222656 76.933594 224.316406 77.027344 224.433594 77.027344 C 224.550781 77.027344 224.644531 76.933594 224.644531 76.816406 Z M 224.644531 76.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.25 74.441406 C 223.25 74.324219 223.15625 74.230469 223.039062 74.230469 C 222.921875 74.230469 222.828125 74.324219 222.828125 74.441406 C 222.828125 74.558594 222.921875 74.652344 223.039062 74.652344 C 223.15625 74.652344 223.25 74.558594 223.25 74.441406 Z M 223.25 74.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.867188 73.523438 C 221.867188 73.40625 221.773438 73.3125 221.65625 73.3125 C 221.539062 73.3125 221.445312 73.40625 221.445312 73.523438 C 221.445312 73.640625 221.539062 73.734375 221.65625 73.734375 C 221.773438 73.734375 221.867188 73.640625 221.867188 73.523438 Z M 221.867188 73.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.496094 71.375 C 222.496094 71.257812 222.402344 71.164062 222.285156 71.164062 C 222.167969 71.164062 222.074219 71.257812 222.074219 71.375 C 222.074219 71.492188 222.167969 71.585938 222.285156 71.585938 C 222.402344 71.585938 222.496094 71.492188 222.496094 71.375 Z M 222.496094 71.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.65625 71.097656 C 224.65625 70.980469 224.5625 70.886719 224.445312 70.886719 C 224.328125 70.886719 224.234375 70.980469 224.234375 71.097656 C 224.234375 71.214844 224.328125 71.308594 224.445312 71.308594 C 224.5625 71.308594 224.65625 71.214844 224.65625 71.097656 Z M 224.65625 71.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.050781 66.9375 C 225.050781 66.820312 224.957031 66.726562 224.839844 66.726562 C 224.722656 66.726562 224.628906 66.820312 224.628906 66.9375 C 224.628906 67.054688 224.722656 67.148438 224.839844 67.148438 C 224.957031 67.148438 225.050781 67.054688 225.050781 66.9375 Z M 225.050781 66.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.820312 64.753906 C 230.820312 64.636719 230.726562 64.542969 230.609375 64.542969 C 230.492188 64.542969 230.398438 64.636719 230.398438 64.753906 C 230.398438 64.871094 230.492188 64.964844 230.609375 64.964844 C 230.726562 64.964844 230.820312 64.871094 230.820312 64.753906 Z M 230.820312 64.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.101562 64.3125 C 231.101562 64.195312 231.007812 64.101562 230.890625 64.101562 C 230.773438 64.101562 230.679688 64.195312 230.679688 64.3125 C 230.679688 64.429688 230.773438 64.523438 230.890625 64.523438 C 231.007812 64.523438 231.101562 64.429688 231.101562 64.3125 Z M 231.101562 64.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.273438 63.777344 C 231.273438 63.660156 231.179688 63.566406 231.0625 63.566406 C 230.945312 63.566406 230.851562 63.660156 230.851562 63.777344 C 230.851562 63.894531 230.945312 63.988281 231.0625 63.988281 C 231.179688 63.988281 231.273438 63.894531 231.273438 63.777344 Z M 231.273438 63.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.0625 59.234375 C 235.0625 59.117188 234.96875 59.023438 234.851562 59.023438 C 234.734375 59.023438 234.640625 59.117188 234.640625 59.234375 C 234.640625 59.351562 234.734375 59.445312 234.851562 59.445312 C 234.96875 59.445312 235.0625 59.351562 235.0625 59.234375 Z M 235.0625 59.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.917969 55.261719 C 232.917969 55.144531 232.824219 55.050781 232.707031 55.050781 C 232.589844 55.050781 232.496094 55.144531 232.496094 55.261719 C 232.496094 55.378906 232.589844 55.472656 232.707031 55.472656 C 232.824219 55.472656 232.917969 55.378906 232.917969 55.261719 Z M 232.917969 55.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.425781 55.34375 C 235.425781 55.226562 235.332031 55.132812 235.214844 55.132812 C 235.097656 55.132812 235.003906 55.226562 235.003906 55.34375 C 235.003906 55.460938 235.097656 55.554688 235.214844 55.554688 C 235.332031 55.554688 235.425781 55.460938 235.425781 55.34375 Z M 235.425781 55.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.914062 53 C 235.914062 52.882812 235.820312 52.789062 235.703125 52.789062 C 235.585938 52.789062 235.492188 52.882812 235.492188 53 C 235.492188 53.117188 235.585938 53.210938 235.703125 53.210938 C 235.820312 53.210938 235.914062 53.117188 235.914062 53 Z M 235.914062 53 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.53125 56.25 C 236.53125 56.132812 236.4375 56.039062 236.320312 56.039062 C 236.203125 56.039062 236.109375 56.132812 236.109375 56.25 C 236.109375 56.367188 236.203125 56.460938 236.320312 56.460938 C 236.4375 56.460938 236.53125 56.367188 236.53125 56.25 Z M 236.53125 56.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.457031 54.84375 C 237.457031 54.726562 237.363281 54.632812 237.246094 54.632812 C 237.128906 54.632812 237.035156 54.726562 237.035156 54.84375 C 237.035156 54.960938 237.128906 55.054688 237.246094 55.054688 C 237.363281 55.054688 237.457031 54.960938 237.457031 54.84375 Z M 237.457031 54.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.691406 61.5625 C 236.691406 61.445312 236.597656 61.351562 236.480469 61.351562 C 236.363281 61.351562 236.269531 61.445312 236.269531 61.5625 C 236.269531 61.679688 236.363281 61.773438 236.480469 61.773438 C 236.597656 61.773438 236.691406 61.679688 236.691406 61.5625 Z M 236.691406 61.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.226562 59.050781 C 235.226562 58.933594 235.132812 58.839844 235.015625 58.839844 C 234.898438 58.839844 234.804688 58.933594 234.804688 59.050781 C 234.804688 59.167969 234.898438 59.261719 235.015625 59.261719 C 235.132812 59.261719 235.226562 59.167969 235.226562 59.050781 Z M 235.226562 59.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.230469 57.125 C 239.230469 57.007812 239.136719 56.914062 239.019531 56.914062 C 238.902344 56.914062 238.808594 57.007812 238.808594 57.125 C 238.808594 57.242188 238.902344 57.335938 239.019531 57.335938 C 239.136719 57.335938 239.230469 57.242188 239.230469 57.125 Z M 239.230469 57.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.25 56.984375 C 240.25 56.867188 240.15625 56.773438 240.039062 56.773438 C 239.921875 56.773438 239.828125 56.867188 239.828125 56.984375 C 239.828125 57.101562 239.921875 57.195312 240.039062 57.195312 C 240.15625 57.195312 240.25 57.101562 240.25 56.984375 Z M 240.25 56.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.832031 55.980469 C 241.832031 55.863281 241.738281 55.769531 241.621094 55.769531 C 241.503906 55.769531 241.410156 55.863281 241.410156 55.980469 C 241.410156 56.097656 241.503906 56.191406 241.621094 56.191406 C 241.738281 56.191406 241.832031 56.097656 241.832031 55.980469 Z M 241.832031 55.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.023438 55.511719 C 240.023438 55.394531 239.929688 55.300781 239.8125 55.300781 C 239.695312 55.300781 239.601562 55.394531 239.601562 55.511719 C 239.601562 55.628906 239.695312 55.722656 239.8125 55.722656 C 239.929688 55.722656 240.023438 55.628906 240.023438 55.511719 Z M 240.023438 55.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.148438 60.3125 C 241.148438 60.195312 241.054688 60.101562 240.9375 60.101562 C 240.820312 60.101562 240.726562 60.195312 240.726562 60.3125 C 240.726562 60.429688 240.820312 60.523438 240.9375 60.523438 C 241.054688 60.523438 241.148438 60.429688 241.148438 60.3125 Z M 241.148438 60.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.964844 57.53125 C 242.964844 57.414062 242.871094 57.320312 242.753906 57.320312 C 242.636719 57.320312 242.542969 57.414062 242.542969 57.53125 C 242.542969 57.648438 242.636719 57.742188 242.753906 57.742188 C 242.871094 57.742188 242.964844 57.648438 242.964844 57.53125 Z M 242.964844 57.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.390625 59.105469 C 242.390625 58.988281 242.296875 58.894531 242.179688 58.894531 C 242.0625 58.894531 241.96875 58.988281 241.96875 59.105469 C 241.96875 59.222656 242.0625 59.316406 242.179688 59.316406 C 242.296875 59.316406 242.390625 59.222656 242.390625 59.105469 Z M 242.390625 59.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.777344 57.234375 C 244.777344 57.117188 244.683594 57.023438 244.566406 57.023438 C 244.449219 57.023438 244.355469 57.117188 244.355469 57.234375 C 244.355469 57.351562 244.449219 57.445312 244.566406 57.445312 C 244.683594 57.445312 244.777344 57.351562 244.777344 57.234375 Z M 244.777344 57.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.867188 53.867188 C 246.867188 53.75 246.773438 53.65625 246.65625 53.65625 C 246.539062 53.65625 246.445312 53.75 246.445312 53.867188 C 246.445312 53.984375 246.539062 54.078125 246.65625 54.078125 C 246.773438 54.078125 246.867188 53.984375 246.867188 53.867188 Z M 246.867188 53.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.324219 55.710938 C 245.324219 55.59375 245.230469 55.5 245.113281 55.5 C 244.996094 55.5 244.902344 55.59375 244.902344 55.710938 C 244.902344 55.828125 244.996094 55.921875 245.113281 55.921875 C 245.230469 55.921875 245.324219 55.828125 245.324219 55.710938 Z M 245.324219 55.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.480469 51.65625 C 245.480469 51.539062 245.386719 51.445312 245.269531 51.445312 C 245.152344 51.445312 245.058594 51.539062 245.058594 51.65625 C 245.058594 51.773438 245.152344 51.867188 245.269531 51.867188 C 245.386719 51.867188 245.480469 51.773438 245.480469 51.65625 Z M 245.480469 51.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.375 51.21875 C 242.375 51.101562 242.28125 51.007812 242.164062 51.007812 C 242.046875 51.007812 241.953125 51.101562 241.953125 51.21875 C 241.953125 51.335938 242.046875 51.429688 242.164062 51.429688 C 242.28125 51.429688 242.375 51.335938 242.375 51.21875 Z M 242.375 51.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.859375 48.59375 C 245.859375 48.476562 245.765625 48.382812 245.648438 48.382812 C 245.53125 48.382812 245.4375 48.476562 245.4375 48.59375 C 245.4375 48.710938 245.53125 48.804688 245.648438 48.804688 C 245.765625 48.804688 245.859375 48.710938 245.859375 48.59375 Z M 245.859375 48.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.421875 53.050781 C 241.421875 52.933594 241.328125 52.839844 241.210938 52.839844 C 241.09375 52.839844 241 52.933594 241 53.050781 C 241 53.167969 241.09375 53.261719 241.210938 53.261719 C 241.328125 53.261719 241.421875 53.167969 241.421875 53.050781 Z M 241.421875 53.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.84375 52.566406 C 238.84375 52.449219 238.75 52.355469 238.632812 52.355469 C 238.515625 52.355469 238.421875 52.449219 238.421875 52.566406 C 238.421875 52.683594 238.515625 52.777344 238.632812 52.777344 C 238.75 52.777344 238.84375 52.683594 238.84375 52.566406 Z M 238.84375 52.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.019531 50.703125 C 239.019531 50.585938 238.925781 50.492188 238.808594 50.492188 C 238.691406 50.492188 238.597656 50.585938 238.597656 50.703125 C 238.597656 50.820312 238.691406 50.914062 238.808594 50.914062 C 238.925781 50.914062 239.019531 50.820312 239.019531 50.703125 Z M 239.019531 50.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.683594 49.460938 C 233.683594 49.34375 233.589844 49.25 233.472656 49.25 C 233.355469 49.25 233.261719 49.34375 233.261719 49.460938 C 233.261719 49.578125 233.355469 49.671875 233.472656 49.671875 C 233.589844 49.671875 233.683594 49.578125 233.683594 49.460938 Z M 233.683594 49.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.695312 49.230469 C 230.695312 49.113281 230.601562 49.019531 230.484375 49.019531 C 230.367188 49.019531 230.273438 49.113281 230.273438 49.230469 C 230.273438 49.347656 230.367188 49.441406 230.484375 49.441406 C 230.601562 49.441406 230.695312 49.347656 230.695312 49.230469 Z M 230.695312 49.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.335938 50.542969 C 228.335938 50.425781 228.242188 50.332031 228.125 50.332031 C 228.007812 50.332031 227.914062 50.425781 227.914062 50.542969 C 227.914062 50.660156 228.007812 50.753906 228.125 50.753906 C 228.242188 50.753906 228.335938 50.660156 228.335938 50.542969 Z M 228.335938 50.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.203125 49.472656 C 224.203125 49.355469 224.109375 49.261719 223.992188 49.261719 C 223.875 49.261719 223.78125 49.355469 223.78125 49.472656 C 223.78125 49.589844 223.875 49.683594 223.992188 49.683594 C 224.109375 49.683594 224.203125 49.589844 224.203125 49.472656 Z M 224.203125 49.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.847656 49.945312 C 225.847656 49.828125 225.753906 49.734375 225.636719 49.734375 C 225.519531 49.734375 225.425781 49.828125 225.425781 49.945312 C 225.425781 50.0625 225.519531 50.15625 225.636719 50.15625 C 225.753906 50.15625 225.847656 50.0625 225.847656 49.945312 Z M 225.847656 49.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.921875 45.304688 C 224.921875 45.1875 224.828125 45.09375 224.710938 45.09375 C 224.59375 45.09375 224.5 45.1875 224.5 45.304688 C 224.5 45.421875 224.59375 45.515625 224.710938 45.515625 C 224.828125 45.515625 224.921875 45.421875 224.921875 45.304688 Z M 224.921875 45.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.734375 44.808594 C 224.734375 44.691406 224.640625 44.597656 224.523438 44.597656 C 224.40625 44.597656 224.3125 44.691406 224.3125 44.808594 C 224.3125 44.925781 224.40625 45.019531 224.523438 45.019531 C 224.640625 45.019531 224.734375 44.925781 224.734375 44.808594 Z M 224.734375 44.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.152344 46.839844 C 229.152344 46.722656 229.058594 46.628906 228.941406 46.628906 C 228.824219 46.628906 228.730469 46.722656 228.730469 46.839844 C 228.730469 46.957031 228.824219 47.050781 228.941406 47.050781 C 229.058594 47.050781 229.152344 46.957031 229.152344 46.839844 Z M 229.152344 46.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.917969 48.582031 C 229.917969 48.464844 229.824219 48.371094 229.707031 48.371094 C 229.589844 48.371094 229.496094 48.464844 229.496094 48.582031 C 229.496094 48.699219 229.589844 48.792969 229.707031 48.792969 C 229.824219 48.792969 229.917969 48.699219 229.917969 48.582031 Z M 229.917969 48.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.054688 50.03125 C 226.054688 49.914062 225.960938 49.820312 225.84375 49.820312 C 225.726562 49.820312 225.632812 49.914062 225.632812 50.03125 C 225.632812 50.148438 225.726562 50.242188 225.84375 50.242188 C 225.960938 50.242188 226.054688 50.148438 226.054688 50.03125 Z M 226.054688 50.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.597656 51.609375 C 226.597656 51.492188 226.503906 51.398438 226.386719 51.398438 C 226.269531 51.398438 226.175781 51.492188 226.175781 51.609375 C 226.175781 51.726562 226.269531 51.820312 226.386719 51.820312 C 226.503906 51.820312 226.597656 51.726562 226.597656 51.609375 Z M 226.597656 51.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.109375 51.253906 C 224.109375 51.136719 224.015625 51.042969 223.898438 51.042969 C 223.78125 51.042969 223.6875 51.136719 223.6875 51.253906 C 223.6875 51.371094 223.78125 51.464844 223.898438 51.464844 C 224.015625 51.464844 224.109375 51.371094 224.109375 51.253906 Z M 224.109375 51.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.339844 51.28125 C 221.339844 51.164062 221.246094 51.070312 221.128906 51.070312 C 221.011719 51.070312 220.917969 51.164062 220.917969 51.28125 C 220.917969 51.398438 221.011719 51.492188 221.128906 51.492188 C 221.246094 51.492188 221.339844 51.398438 221.339844 51.28125 Z M 221.339844 51.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.839844 52.679688 C 221.839844 52.5625 221.746094 52.46875 221.628906 52.46875 C 221.511719 52.46875 221.417969 52.5625 221.417969 52.679688 C 221.417969 52.796875 221.511719 52.890625 221.628906 52.890625 C 221.746094 52.890625 221.839844 52.796875 221.839844 52.679688 Z M 221.839844 52.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.203125 56.734375 C 225.203125 56.617188 225.109375 56.523438 224.992188 56.523438 C 224.875 56.523438 224.78125 56.617188 224.78125 56.734375 C 224.78125 56.851562 224.875 56.945312 224.992188 56.945312 C 225.109375 56.945312 225.203125 56.851562 225.203125 56.734375 Z M 225.203125 56.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.9375 55.789062 C 227.9375 55.671875 227.84375 55.578125 227.726562 55.578125 C 227.609375 55.578125 227.515625 55.671875 227.515625 55.789062 C 227.515625 55.90625 227.609375 56 227.726562 56 C 227.84375 56 227.9375 55.90625 227.9375 55.789062 Z M 227.9375 55.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.738281 58.621094 C 227.738281 58.503906 227.644531 58.410156 227.527344 58.410156 C 227.410156 58.410156 227.316406 58.503906 227.316406 58.621094 C 227.316406 58.738281 227.410156 58.832031 227.527344 58.832031 C 227.644531 58.832031 227.738281 58.738281 227.738281 58.621094 Z M 227.738281 58.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.015625 53.988281 C 228.015625 53.871094 227.921875 53.777344 227.804688 53.777344 C 227.6875 53.777344 227.59375 53.871094 227.59375 53.988281 C 227.59375 54.105469 227.6875 54.199219 227.804688 54.199219 C 227.921875 54.199219 228.015625 54.105469 228.015625 53.988281 Z M 228.015625 53.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.535156 55.015625 C 226.535156 54.898438 226.441406 54.804688 226.324219 54.804688 C 226.207031 54.804688 226.113281 54.898438 226.113281 55.015625 C 226.113281 55.132812 226.207031 55.226562 226.324219 55.226562 C 226.441406 55.226562 226.535156 55.132812 226.535156 55.015625 Z M 226.535156 55.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.394531 54.847656 C 227.394531 54.730469 227.300781 54.636719 227.183594 54.636719 C 227.066406 54.636719 226.972656 54.730469 226.972656 54.847656 C 226.972656 54.964844 227.066406 55.058594 227.183594 55.058594 C 227.300781 55.058594 227.394531 54.964844 227.394531 54.847656 Z M 227.394531 54.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.484375 54.160156 C 228.484375 54.042969 228.390625 53.949219 228.273438 53.949219 C 228.15625 53.949219 228.0625 54.042969 228.0625 54.160156 C 228.0625 54.277344 228.15625 54.371094 228.273438 54.371094 C 228.390625 54.371094 228.484375 54.277344 228.484375 54.160156 Z M 228.484375 54.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.78125 53.207031 C 225.78125 53.089844 225.6875 52.996094 225.570312 52.996094 C 225.453125 52.996094 225.359375 53.089844 225.359375 53.207031 C 225.359375 53.324219 225.453125 53.417969 225.570312 53.417969 C 225.6875 53.417969 225.78125 53.324219 225.78125 53.207031 Z M 225.78125 53.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.273438 54.191406 C 225.273438 54.074219 225.179688 53.980469 225.0625 53.980469 C 224.945312 53.980469 224.851562 54.074219 224.851562 54.191406 C 224.851562 54.308594 224.945312 54.402344 225.0625 54.402344 C 225.179688 54.402344 225.273438 54.308594 225.273438 54.191406 Z M 225.273438 54.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.902344 58.25 C 223.902344 58.132812 223.808594 58.039062 223.691406 58.039062 C 223.574219 58.039062 223.480469 58.132812 223.480469 58.25 C 223.480469 58.367188 223.574219 58.460938 223.691406 58.460938 C 223.808594 58.460938 223.902344 58.367188 223.902344 58.25 Z M 223.902344 58.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.1875 58.605469 C 219.1875 58.488281 219.09375 58.394531 218.976562 58.394531 C 218.859375 58.394531 218.765625 58.488281 218.765625 58.605469 C 218.765625 58.722656 218.859375 58.816406 218.976562 58.816406 C 219.09375 58.816406 219.1875 58.722656 219.1875 58.605469 Z M 219.1875 58.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.78125 60.617188 C 216.78125 60.5 216.6875 60.40625 216.570312 60.40625 C 216.453125 60.40625 216.359375 60.5 216.359375 60.617188 C 216.359375 60.734375 216.453125 60.828125 216.570312 60.828125 C 216.6875 60.828125 216.78125 60.734375 216.78125 60.617188 Z M 216.78125 60.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.042969 60.355469 C 216.042969 60.238281 215.949219 60.144531 215.832031 60.144531 C 215.714844 60.144531 215.621094 60.238281 215.621094 60.355469 C 215.621094 60.472656 215.714844 60.566406 215.832031 60.566406 C 215.949219 60.566406 216.042969 60.472656 216.042969 60.355469 Z M 216.042969 60.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.605469 61 C 217.605469 60.882812 217.511719 60.789062 217.394531 60.789062 C 217.277344 60.789062 217.183594 60.882812 217.183594 61 C 217.183594 61.117188 217.277344 61.210938 217.394531 61.210938 C 217.511719 61.210938 217.605469 61.117188 217.605469 61 Z M 217.605469 61 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.453125 63.484375 C 217.453125 63.367188 217.359375 63.273438 217.242188 63.273438 C 217.125 63.273438 217.03125 63.367188 217.03125 63.484375 C 217.03125 63.601562 217.125 63.695312 217.242188 63.695312 C 217.359375 63.695312 217.453125 63.601562 217.453125 63.484375 Z M 217.453125 63.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.640625 65.148438 C 216.640625 65.03125 216.546875 64.9375 216.429688 64.9375 C 216.3125 64.9375 216.21875 65.03125 216.21875 65.148438 C 216.21875 65.265625 216.3125 65.359375 216.429688 65.359375 C 216.546875 65.359375 216.640625 65.265625 216.640625 65.148438 Z M 216.640625 65.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.242188 66.019531 C 212.242188 65.902344 212.148438 65.808594 212.03125 65.808594 C 211.914062 65.808594 211.820312 65.902344 211.820312 66.019531 C 211.820312 66.136719 211.914062 66.230469 212.03125 66.230469 C 212.148438 66.230469 212.242188 66.136719 212.242188 66.019531 Z M 212.242188 66.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.992188 67.097656 C 212.992188 66.980469 212.898438 66.886719 212.78125 66.886719 C 212.664062 66.886719 212.570312 66.980469 212.570312 67.097656 C 212.570312 67.214844 212.664062 67.308594 212.78125 67.308594 C 212.898438 67.308594 212.992188 67.214844 212.992188 67.097656 Z M 212.992188 67.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.480469 67.695312 C 214.480469 67.578125 214.386719 67.484375 214.269531 67.484375 C 214.152344 67.484375 214.058594 67.578125 214.058594 67.695312 C 214.058594 67.8125 214.152344 67.90625 214.269531 67.90625 C 214.386719 67.90625 214.480469 67.8125 214.480469 67.695312 Z M 214.480469 67.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.339844 69.894531 C 216.339844 69.777344 216.246094 69.683594 216.128906 69.683594 C 216.011719 69.683594 215.917969 69.777344 215.917969 69.894531 C 215.917969 70.011719 216.011719 70.105469 216.128906 70.105469 C 216.246094 70.105469 216.339844 70.011719 216.339844 69.894531 Z M 216.339844 69.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.429688 72.269531 C 217.429688 72.152344 217.335938 72.058594 217.21875 72.058594 C 217.101562 72.058594 217.007812 72.152344 217.007812 72.269531 C 217.007812 72.386719 217.101562 72.480469 217.21875 72.480469 C 217.335938 72.480469 217.429688 72.386719 217.429688 72.269531 Z M 217.429688 72.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.851562 70.824219 C 220.851562 70.707031 220.757812 70.613281 220.640625 70.613281 C 220.523438 70.613281 220.429688 70.707031 220.429688 70.824219 C 220.429688 70.941406 220.523438 71.035156 220.640625 71.035156 C 220.757812 71.035156 220.851562 70.941406 220.851562 70.824219 Z M 220.851562 70.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.15625 73.617188 C 225.15625 73.5 225.0625 73.40625 224.945312 73.40625 C 224.828125 73.40625 224.734375 73.5 224.734375 73.617188 C 224.734375 73.734375 224.828125 73.828125 224.945312 73.828125 C 225.0625 73.828125 225.15625 73.734375 225.15625 73.617188 Z M 225.15625 73.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.335938 68.808594 C 225.335938 68.691406 225.242188 68.597656 225.125 68.597656 C 225.007812 68.597656 224.914062 68.691406 224.914062 68.808594 C 224.914062 68.925781 225.007812 69.019531 225.125 69.019531 C 225.242188 69.019531 225.335938 68.925781 225.335938 68.808594 Z M 225.335938 68.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.351562 67.828125 C 223.351562 67.710938 223.257812 67.617188 223.140625 67.617188 C 223.023438 67.617188 222.929688 67.710938 222.929688 67.828125 C 222.929688 67.945312 223.023438 68.039062 223.140625 68.039062 C 223.257812 68.039062 223.351562 67.945312 223.351562 67.828125 Z M 223.351562 67.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.53125 66.378906 C 221.53125 66.261719 221.4375 66.167969 221.320312 66.167969 C 221.203125 66.167969 221.109375 66.261719 221.109375 66.378906 C 221.109375 66.496094 221.203125 66.589844 221.320312 66.589844 C 221.4375 66.589844 221.53125 66.496094 221.53125 66.378906 Z M 221.53125 66.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.03125 67.175781 C 218.03125 67.058594 217.9375 66.964844 217.820312 66.964844 C 217.703125 66.964844 217.609375 67.058594 217.609375 67.175781 C 217.609375 67.292969 217.703125 67.386719 217.820312 67.386719 C 217.9375 67.386719 218.03125 67.292969 218.03125 67.175781 Z M 218.03125 67.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.601562 66.898438 C 220.601562 66.78125 220.507812 66.6875 220.390625 66.6875 C 220.273438 66.6875 220.179688 66.78125 220.179688 66.898438 C 220.179688 67.015625 220.273438 67.109375 220.390625 67.109375 C 220.507812 67.109375 220.601562 67.015625 220.601562 66.898438 Z M 220.601562 66.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.964844 64.769531 C 216.964844 64.652344 216.871094 64.558594 216.753906 64.558594 C 216.636719 64.558594 216.542969 64.652344 216.542969 64.769531 C 216.542969 64.886719 216.636719 64.980469 216.753906 64.980469 C 216.871094 64.980469 216.964844 64.886719 216.964844 64.769531 Z M 216.964844 64.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.832031 63.800781 C 217.832031 63.683594 217.738281 63.589844 217.621094 63.589844 C 217.503906 63.589844 217.410156 63.683594 217.410156 63.800781 C 217.410156 63.917969 217.503906 64.011719 217.621094 64.011719 C 217.738281 64.011719 217.832031 63.917969 217.832031 63.800781 Z M 217.832031 63.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.332031 64.527344 C 219.332031 64.410156 219.238281 64.316406 219.121094 64.316406 C 219.003906 64.316406 218.910156 64.410156 218.910156 64.527344 C 218.910156 64.644531 219.003906 64.738281 219.121094 64.738281 C 219.238281 64.738281 219.332031 64.644531 219.332031 64.527344 Z M 219.332031 64.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.3125 61.070312 C 221.3125 60.953125 221.21875 60.859375 221.101562 60.859375 C 220.984375 60.859375 220.890625 60.953125 220.890625 61.070312 C 220.890625 61.1875 220.984375 61.28125 221.101562 61.28125 C 221.21875 61.28125 221.3125 61.1875 221.3125 61.070312 Z M 221.3125 61.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.992188 57.171875 C 221.992188 57.054688 221.898438 56.960938 221.78125 56.960938 C 221.664062 56.960938 221.570312 57.054688 221.570312 57.171875 C 221.570312 57.289062 221.664062 57.382812 221.78125 57.382812 C 221.898438 57.382812 221.992188 57.289062 221.992188 57.171875 Z M 221.992188 57.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.097656 55.773438 C 219.097656 55.65625 219.003906 55.5625 218.886719 55.5625 C 218.769531 55.5625 218.675781 55.65625 218.675781 55.773438 C 218.675781 55.890625 218.769531 55.984375 218.886719 55.984375 C 219.003906 55.984375 219.097656 55.890625 219.097656 55.773438 Z M 219.097656 55.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.140625 54.710938 C 219.140625 54.59375 219.046875 54.5 218.929688 54.5 C 218.8125 54.5 218.71875 54.59375 218.71875 54.710938 C 218.71875 54.828125 218.8125 54.921875 218.929688 54.921875 C 219.046875 54.921875 219.140625 54.828125 219.140625 54.710938 Z M 219.140625 54.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.851562 53.296875 C 220.851562 53.179688 220.757812 53.085938 220.640625 53.085938 C 220.523438 53.085938 220.429688 53.179688 220.429688 53.296875 C 220.429688 53.414062 220.523438 53.507812 220.640625 53.507812 C 220.757812 53.507812 220.851562 53.414062 220.851562 53.296875 Z M 220.851562 53.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.660156 53.664062 C 217.660156 53.546875 217.566406 53.453125 217.449219 53.453125 C 217.332031 53.453125 217.238281 53.546875 217.238281 53.664062 C 217.238281 53.78125 217.332031 53.875 217.449219 53.875 C 217.566406 53.875 217.660156 53.78125 217.660156 53.664062 Z M 217.660156 53.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.546875 53.820312 C 219.546875 53.703125 219.453125 53.609375 219.335938 53.609375 C 219.21875 53.609375 219.125 53.703125 219.125 53.820312 C 219.125 53.9375 219.21875 54.03125 219.335938 54.03125 C 219.453125 54.03125 219.546875 53.9375 219.546875 53.820312 Z M 219.546875 53.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220 51.855469 C 220 51.738281 219.90625 51.644531 219.789062 51.644531 C 219.671875 51.644531 219.578125 51.738281 219.578125 51.855469 C 219.578125 51.972656 219.671875 52.066406 219.789062 52.066406 C 219.90625 52.066406 220 51.972656 220 51.855469 Z M 220 51.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.894531 48.847656 C 220.894531 48.730469 220.800781 48.636719 220.683594 48.636719 C 220.566406 48.636719 220.472656 48.730469 220.472656 48.847656 C 220.472656 48.964844 220.566406 49.058594 220.683594 49.058594 C 220.800781 49.058594 220.894531 48.964844 220.894531 48.847656 Z M 220.894531 48.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.382812 49.1875 C 217.382812 49.070312 217.289062 48.976562 217.171875 48.976562 C 217.054688 48.976562 216.960938 49.070312 216.960938 49.1875 C 216.960938 49.304688 217.054688 49.398438 217.171875 49.398438 C 217.289062 49.398438 217.382812 49.304688 217.382812 49.1875 Z M 217.382812 49.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.273438 45.691406 C 216.273438 45.574219 216.179688 45.480469 216.0625 45.480469 C 215.945312 45.480469 215.851562 45.574219 215.851562 45.691406 C 215.851562 45.808594 215.945312 45.902344 216.0625 45.902344 C 216.179688 45.902344 216.273438 45.808594 216.273438 45.691406 Z M 216.273438 45.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.445312 46.34375 C 219.445312 46.226562 219.351562 46.132812 219.234375 46.132812 C 219.117188 46.132812 219.023438 46.226562 219.023438 46.34375 C 219.023438 46.460938 219.117188 46.554688 219.234375 46.554688 C 219.351562 46.554688 219.445312 46.460938 219.445312 46.34375 Z M 219.445312 46.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.644531 52.007812 C 219.644531 51.890625 219.550781 51.796875 219.433594 51.796875 C 219.316406 51.796875 219.222656 51.890625 219.222656 52.007812 C 219.222656 52.125 219.316406 52.21875 219.433594 52.21875 C 219.550781 52.21875 219.644531 52.125 219.644531 52.007812 Z M 219.644531 52.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.132812 52.023438 C 224.132812 51.90625 224.039062 51.8125 223.921875 51.8125 C 223.804688 51.8125 223.710938 51.90625 223.710938 52.023438 C 223.710938 52.140625 223.804688 52.234375 223.921875 52.234375 C 224.039062 52.234375 224.132812 52.140625 224.132812 52.023438 Z M 224.132812 52.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.09375 51.789062 C 229.09375 51.671875 229 51.578125 228.882812 51.578125 C 228.765625 51.578125 228.671875 51.671875 228.671875 51.789062 C 228.671875 51.90625 228.765625 52 228.882812 52 C 229 52 229.09375 51.90625 229.09375 51.789062 Z M 229.09375 51.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.730469 52.042969 C 232.730469 51.925781 232.636719 51.832031 232.519531 51.832031 C 232.402344 51.832031 232.308594 51.925781 232.308594 52.042969 C 232.308594 52.160156 232.402344 52.253906 232.519531 52.253906 C 232.636719 52.253906 232.730469 52.160156 232.730469 52.042969 Z M 232.730469 52.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.851562 48.792969 C 234.851562 48.675781 234.757812 48.582031 234.640625 48.582031 C 234.523438 48.582031 234.429688 48.675781 234.429688 48.792969 C 234.429688 48.910156 234.523438 49.003906 234.640625 49.003906 C 234.757812 49.003906 234.851562 48.910156 234.851562 48.792969 Z M 234.851562 48.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.714844 50.207031 C 232.714844 50.089844 232.621094 49.996094 232.503906 49.996094 C 232.386719 49.996094 232.292969 50.089844 232.292969 50.207031 C 232.292969 50.324219 232.386719 50.417969 232.503906 50.417969 C 232.621094 50.417969 232.714844 50.324219 232.714844 50.207031 Z M 232.714844 50.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.257812 47.855469 C 231.257812 47.738281 231.164062 47.644531 231.046875 47.644531 C 230.929688 47.644531 230.835938 47.738281 230.835938 47.855469 C 230.835938 47.972656 230.929688 48.066406 231.046875 48.066406 C 231.164062 48.066406 231.257812 47.972656 231.257812 47.855469 Z M 231.257812 47.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.234375 46.472656 C 231.234375 46.355469 231.140625 46.261719 231.023438 46.261719 C 230.90625 46.261719 230.8125 46.355469 230.8125 46.472656 C 230.8125 46.589844 230.90625 46.683594 231.023438 46.683594 C 231.140625 46.683594 231.234375 46.589844 231.234375 46.472656 Z M 231.234375 46.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.410156 43.570312 C 229.410156 43.453125 229.316406 43.359375 229.199219 43.359375 C 229.082031 43.359375 228.988281 43.453125 228.988281 43.570312 C 228.988281 43.6875 229.082031 43.78125 229.199219 43.78125 C 229.316406 43.78125 229.410156 43.6875 229.410156 43.570312 Z M 229.410156 43.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.28125 46.089844 C 227.28125 45.972656 227.1875 45.878906 227.070312 45.878906 C 226.953125 45.878906 226.859375 45.972656 226.859375 46.089844 C 226.859375 46.207031 226.953125 46.300781 227.070312 46.300781 C 227.1875 46.300781 227.28125 46.207031 227.28125 46.089844 Z M 227.28125 46.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.816406 47.242188 C 228.816406 47.125 228.722656 47.03125 228.605469 47.03125 C 228.488281 47.03125 228.394531 47.125 228.394531 47.242188 C 228.394531 47.359375 228.488281 47.453125 228.605469 47.453125 C 228.722656 47.453125 228.816406 47.359375 228.816406 47.242188 Z M 228.816406 47.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.253906 47.441406 C 228.253906 47.324219 228.160156 47.230469 228.042969 47.230469 C 227.925781 47.230469 227.832031 47.324219 227.832031 47.441406 C 227.832031 47.558594 227.925781 47.652344 228.042969 47.652344 C 228.160156 47.652344 228.253906 47.558594 228.253906 47.441406 Z M 228.253906 47.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.277344 48.144531 C 230.277344 48.027344 230.183594 47.933594 230.066406 47.933594 C 229.949219 47.933594 229.855469 48.027344 229.855469 48.144531 C 229.855469 48.261719 229.949219 48.355469 230.066406 48.355469 C 230.183594 48.355469 230.277344 48.261719 230.277344 48.144531 Z M 230.277344 48.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.898438 51.21875 C 230.898438 51.101562 230.804688 51.007812 230.6875 51.007812 C 230.570312 51.007812 230.476562 51.101562 230.476562 51.21875 C 230.476562 51.335938 230.570312 51.429688 230.6875 51.429688 C 230.804688 51.429688 230.898438 51.335938 230.898438 51.21875 Z M 230.898438 51.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.21875 52.871094 C 232.21875 52.753906 232.125 52.660156 232.007812 52.660156 C 231.890625 52.660156 231.796875 52.753906 231.796875 52.871094 C 231.796875 52.988281 231.890625 53.082031 232.007812 53.082031 C 232.125 53.082031 232.21875 52.988281 232.21875 52.871094 Z M 232.21875 52.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.722656 53.195312 C 233.722656 53.078125 233.628906 52.984375 233.511719 52.984375 C 233.394531 52.984375 233.300781 53.078125 233.300781 53.195312 C 233.300781 53.3125 233.394531 53.40625 233.511719 53.40625 C 233.628906 53.40625 233.722656 53.3125 233.722656 53.195312 Z M 233.722656 53.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.183594 51.835938 C 235.183594 51.71875 235.089844 51.625 234.972656 51.625 C 234.855469 51.625 234.761719 51.71875 234.761719 51.835938 C 234.761719 51.953125 234.855469 52.046875 234.972656 52.046875 C 235.089844 52.046875 235.183594 51.953125 235.183594 51.835938 Z M 235.183594 51.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.960938 50.230469 C 235.960938 50.113281 235.867188 50.019531 235.75 50.019531 C 235.632812 50.019531 235.539062 50.113281 235.539062 50.230469 C 235.539062 50.347656 235.632812 50.441406 235.75 50.441406 C 235.867188 50.441406 235.960938 50.347656 235.960938 50.230469 Z M 235.960938 50.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.578125 52.351562 C 239.578125 52.234375 239.484375 52.140625 239.367188 52.140625 C 239.25 52.140625 239.15625 52.234375 239.15625 52.351562 C 239.15625 52.46875 239.25 52.5625 239.367188 52.5625 C 239.484375 52.5625 239.578125 52.46875 239.578125 52.351562 Z M 239.578125 52.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.378906 52.570312 C 237.378906 52.453125 237.285156 52.359375 237.167969 52.359375 C 237.050781 52.359375 236.957031 52.453125 236.957031 52.570312 C 236.957031 52.6875 237.050781 52.78125 237.167969 52.78125 C 237.285156 52.78125 237.378906 52.6875 237.378906 52.570312 Z M 237.378906 52.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.753906 52.191406 C 236.753906 52.074219 236.660156 51.980469 236.542969 51.980469 C 236.425781 51.980469 236.332031 52.074219 236.332031 52.191406 C 236.332031 52.308594 236.425781 52.402344 236.542969 52.402344 C 236.660156 52.402344 236.753906 52.308594 236.753906 52.191406 Z M 236.753906 52.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.035156 52.695312 C 235.035156 52.578125 234.941406 52.484375 234.824219 52.484375 C 234.707031 52.484375 234.613281 52.578125 234.613281 52.695312 C 234.613281 52.8125 234.707031 52.90625 234.824219 52.90625 C 234.941406 52.90625 235.035156 52.8125 235.035156 52.695312 Z M 235.035156 52.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.441406 53.300781 C 235.441406 53.183594 235.347656 53.089844 235.230469 53.089844 C 235.113281 53.089844 235.019531 53.183594 235.019531 53.300781 C 235.019531 53.417969 235.113281 53.511719 235.230469 53.511719 C 235.347656 53.511719 235.441406 53.417969 235.441406 53.300781 Z M 235.441406 53.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.066406 56.804688 C 237.066406 56.6875 236.972656 56.59375 236.855469 56.59375 C 236.738281 56.59375 236.644531 56.6875 236.644531 56.804688 C 236.644531 56.921875 236.738281 57.015625 236.855469 57.015625 C 236.972656 57.015625 237.066406 56.921875 237.066406 56.804688 Z M 237.066406 56.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.953125 60.167969 C 237.953125 60.050781 237.859375 59.957031 237.742188 59.957031 C 237.625 59.957031 237.53125 60.050781 237.53125 60.167969 C 237.53125 60.285156 237.625 60.378906 237.742188 60.378906 C 237.859375 60.378906 237.953125 60.285156 237.953125 60.167969 Z M 237.953125 60.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.917969 62.035156 C 238.917969 61.917969 238.824219 61.824219 238.707031 61.824219 C 238.589844 61.824219 238.496094 61.917969 238.496094 62.035156 C 238.496094 62.152344 238.589844 62.246094 238.707031 62.246094 C 238.824219 62.246094 238.917969 62.152344 238.917969 62.035156 Z M 238.917969 62.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.695312 63.730469 C 242.695312 63.613281 242.601562 63.519531 242.484375 63.519531 C 242.367188 63.519531 242.273438 63.613281 242.273438 63.730469 C 242.273438 63.847656 242.367188 63.941406 242.484375 63.941406 C 242.601562 63.941406 242.695312 63.847656 242.695312 63.730469 Z M 242.695312 63.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.136719 67.0625 C 244.136719 66.945312 244.042969 66.851562 243.925781 66.851562 C 243.808594 66.851562 243.714844 66.945312 243.714844 67.0625 C 243.714844 67.179688 243.808594 67.273438 243.925781 67.273438 C 244.042969 67.273438 244.136719 67.179688 244.136719 67.0625 Z M 244.136719 67.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.371094 66.125 C 242.371094 66.007812 242.277344 65.914062 242.160156 65.914062 C 242.042969 65.914062 241.949219 66.007812 241.949219 66.125 C 241.949219 66.242188 242.042969 66.335938 242.160156 66.335938 C 242.277344 66.335938 242.371094 66.242188 242.371094 66.125 Z M 242.371094 66.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.390625 65.238281 C 240.390625 65.121094 240.296875 65.027344 240.179688 65.027344 C 240.0625 65.027344 239.96875 65.121094 239.96875 65.238281 C 239.96875 65.355469 240.0625 65.449219 240.179688 65.449219 C 240.296875 65.449219 240.390625 65.355469 240.390625 65.238281 Z M 240.390625 65.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.125 63.675781 C 241.125 63.558594 241.03125 63.464844 240.914062 63.464844 C 240.796875 63.464844 240.703125 63.558594 240.703125 63.675781 C 240.703125 63.792969 240.796875 63.886719 240.914062 63.886719 C 241.03125 63.886719 241.125 63.792969 241.125 63.675781 Z M 241.125 63.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.816406 62.085938 C 238.816406 61.96875 238.722656 61.875 238.605469 61.875 C 238.488281 61.875 238.394531 61.96875 238.394531 62.085938 C 238.394531 62.203125 238.488281 62.296875 238.605469 62.296875 C 238.722656 62.296875 238.816406 62.203125 238.816406 62.085938 Z M 238.816406 62.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.601562 61.742188 C 238.601562 61.625 238.507812 61.53125 238.390625 61.53125 C 238.273438 61.53125 238.179688 61.625 238.179688 61.742188 C 238.179688 61.859375 238.273438 61.953125 238.390625 61.953125 C 238.507812 61.953125 238.601562 61.859375 238.601562 61.742188 Z M 238.601562 61.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.476562 61.050781 C 233.476562 60.933594 233.382812 60.839844 233.265625 60.839844 C 233.148438 60.839844 233.054688 60.933594 233.054688 61.050781 C 233.054688 61.167969 233.148438 61.261719 233.265625 61.261719 C 233.382812 61.261719 233.476562 61.167969 233.476562 61.050781 Z M 233.476562 61.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.917969 61.964844 C 232.917969 61.847656 232.824219 61.753906 232.707031 61.753906 C 232.589844 61.753906 232.496094 61.847656 232.496094 61.964844 C 232.496094 62.082031 232.589844 62.175781 232.707031 62.175781 C 232.824219 62.175781 232.917969 62.082031 232.917969 61.964844 Z M 232.917969 61.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.53125 64.808594 C 234.53125 64.691406 234.4375 64.597656 234.320312 64.597656 C 234.203125 64.597656 234.109375 64.691406 234.109375 64.808594 C 234.109375 64.925781 234.203125 65.019531 234.320312 65.019531 C 234.4375 65.019531 234.53125 64.925781 234.53125 64.808594 Z M 234.53125 64.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.5625 65.199219 C 236.5625 65.082031 236.46875 64.988281 236.351562 64.988281 C 236.234375 64.988281 236.140625 65.082031 236.140625 65.199219 C 236.140625 65.316406 236.234375 65.410156 236.351562 65.410156 C 236.46875 65.410156 236.5625 65.316406 236.5625 65.199219 Z M 236.5625 65.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.652344 64.507812 C 236.652344 64.390625 236.558594 64.296875 236.441406 64.296875 C 236.324219 64.296875 236.230469 64.390625 236.230469 64.507812 C 236.230469 64.625 236.324219 64.71875 236.441406 64.71875 C 236.558594 64.71875 236.652344 64.625 236.652344 64.507812 Z M 236.652344 64.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.269531 64.429688 C 240.269531 64.3125 240.175781 64.21875 240.058594 64.21875 C 239.941406 64.21875 239.847656 64.3125 239.847656 64.429688 C 239.847656 64.546875 239.941406 64.640625 240.058594 64.640625 C 240.175781 64.640625 240.269531 64.546875 240.269531 64.429688 Z M 240.269531 64.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.355469 64.570312 C 239.355469 64.453125 239.261719 64.359375 239.144531 64.359375 C 239.027344 64.359375 238.933594 64.453125 238.933594 64.570312 C 238.933594 64.6875 239.027344 64.78125 239.144531 64.78125 C 239.261719 64.78125 239.355469 64.6875 239.355469 64.570312 Z M 239.355469 64.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.433594 64.816406 C 239.433594 64.699219 239.339844 64.605469 239.222656 64.605469 C 239.105469 64.605469 239.011719 64.699219 239.011719 64.816406 C 239.011719 64.933594 239.105469 65.027344 239.222656 65.027344 C 239.339844 65.027344 239.433594 64.933594 239.433594 64.816406 Z M 239.433594 64.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.78125 65.125 C 239.78125 65.007812 239.6875 64.914062 239.570312 64.914062 C 239.453125 64.914062 239.359375 65.007812 239.359375 65.125 C 239.359375 65.242188 239.453125 65.335938 239.570312 65.335938 C 239.6875 65.335938 239.78125 65.242188 239.78125 65.125 Z M 239.78125 65.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.484375 65.316406 C 240.484375 65.199219 240.390625 65.105469 240.273438 65.105469 C 240.15625 65.105469 240.0625 65.199219 240.0625 65.316406 C 240.0625 65.433594 240.15625 65.527344 240.273438 65.527344 C 240.390625 65.527344 240.484375 65.433594 240.484375 65.316406 Z M 240.484375 65.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.132812 65.628906 C 239.132812 65.511719 239.039062 65.417969 238.921875 65.417969 C 238.804688 65.417969 238.710938 65.511719 238.710938 65.628906 C 238.710938 65.746094 238.804688 65.839844 238.921875 65.839844 C 239.039062 65.839844 239.132812 65.746094 239.132812 65.628906 Z M 239.132812 65.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.898438 63.644531 C 238.898438 63.527344 238.804688 63.433594 238.6875 63.433594 C 238.570312 63.433594 238.476562 63.527344 238.476562 63.644531 C 238.476562 63.761719 238.570312 63.855469 238.6875 63.855469 C 238.804688 63.855469 238.898438 63.761719 238.898438 63.644531 Z M 238.898438 63.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.742188 65.355469 C 240.742188 65.238281 240.648438 65.144531 240.53125 65.144531 C 240.414062 65.144531 240.320312 65.238281 240.320312 65.355469 C 240.320312 65.472656 240.414062 65.566406 240.53125 65.566406 C 240.648438 65.566406 240.742188 65.472656 240.742188 65.355469 Z M 240.742188 65.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.015625 65.75 C 244.015625 65.632812 243.921875 65.539062 243.804688 65.539062 C 243.6875 65.539062 243.59375 65.632812 243.59375 65.75 C 243.59375 65.867188 243.6875 65.960938 243.804688 65.960938 C 243.921875 65.960938 244.015625 65.867188 244.015625 65.75 Z M 244.015625 65.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.359375 68.617188 C 242.359375 68.5 242.265625 68.40625 242.148438 68.40625 C 242.03125 68.40625 241.9375 68.5 241.9375 68.617188 C 241.9375 68.734375 242.03125 68.828125 242.148438 68.828125 C 242.265625 68.828125 242.359375 68.734375 242.359375 68.617188 Z M 242.359375 68.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.054688 67.402344 C 243.054688 67.285156 242.960938 67.191406 242.84375 67.191406 C 242.726562 67.191406 242.632812 67.285156 242.632812 67.402344 C 242.632812 67.519531 242.726562 67.613281 242.84375 67.613281 C 242.960938 67.613281 243.054688 67.519531 243.054688 67.402344 Z M 243.054688 67.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.085938 69.109375 C 242.085938 68.992188 241.992188 68.898438 241.875 68.898438 C 241.757812 68.898438 241.664062 68.992188 241.664062 69.109375 C 241.664062 69.226562 241.757812 69.320312 241.875 69.320312 C 241.992188 69.320312 242.085938 69.226562 242.085938 69.109375 Z M 242.085938 69.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.839844 66.820312 C 243.839844 66.703125 243.746094 66.609375 243.628906 66.609375 C 243.511719 66.609375 243.417969 66.703125 243.417969 66.820312 C 243.417969 66.9375 243.511719 67.03125 243.628906 67.03125 C 243.746094 67.03125 243.839844 66.9375 243.839844 66.820312 Z M 243.839844 66.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.203125 68.234375 C 246.203125 68.117188 246.109375 68.023438 245.992188 68.023438 C 245.875 68.023438 245.78125 68.117188 245.78125 68.234375 C 245.78125 68.351562 245.875 68.445312 245.992188 68.445312 C 246.109375 68.445312 246.203125 68.351562 246.203125 68.234375 Z M 246.203125 68.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.210938 69.113281 C 242.210938 68.996094 242.117188 68.902344 242 68.902344 C 241.882812 68.902344 241.789062 68.996094 241.789062 69.113281 C 241.789062 69.230469 241.882812 69.324219 242 69.324219 C 242.117188 69.324219 242.210938 69.230469 242.210938 69.113281 Z M 242.210938 69.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.441406 69.414062 C 243.441406 69.296875 243.347656 69.203125 243.230469 69.203125 C 243.113281 69.203125 243.019531 69.296875 243.019531 69.414062 C 243.019531 69.53125 243.113281 69.625 243.230469 69.625 C 243.347656 69.625 243.441406 69.53125 243.441406 69.414062 Z M 243.441406 69.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.8125 68.390625 C 241.8125 68.273438 241.71875 68.179688 241.601562 68.179688 C 241.484375 68.179688 241.390625 68.273438 241.390625 68.390625 C 241.390625 68.507812 241.484375 68.601562 241.601562 68.601562 C 241.71875 68.601562 241.8125 68.507812 241.8125 68.390625 Z M 241.8125 68.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.4375 67.839844 C 243.4375 67.722656 243.34375 67.628906 243.226562 67.628906 C 243.109375 67.628906 243.015625 67.722656 243.015625 67.839844 C 243.015625 67.957031 243.109375 68.050781 243.226562 68.050781 C 243.34375 68.050781 243.4375 67.957031 243.4375 67.839844 Z M 243.4375 67.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.269531 69.34375 C 248.269531 69.226562 248.175781 69.132812 248.058594 69.132812 C 247.941406 69.132812 247.847656 69.226562 247.847656 69.34375 C 247.847656 69.460938 247.941406 69.554688 248.058594 69.554688 C 248.175781 69.554688 248.269531 69.460938 248.269531 69.34375 Z M 248.269531 69.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.792969 68.882812 C 248.792969 68.765625 248.699219 68.671875 248.582031 68.671875 C 248.464844 68.671875 248.371094 68.765625 248.371094 68.882812 C 248.371094 69 248.464844 69.09375 248.582031 69.09375 C 248.699219 69.09375 248.792969 69 248.792969 68.882812 Z M 248.792969 68.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.351562 66.195312 C 244.351562 66.078125 244.257812 65.984375 244.140625 65.984375 C 244.023438 65.984375 243.929688 66.078125 243.929688 66.195312 C 243.929688 66.3125 244.023438 66.40625 244.140625 66.40625 C 244.257812 66.40625 244.351562 66.3125 244.351562 66.195312 Z M 244.351562 66.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.683594 67.4375 C 242.683594 67.320312 242.589844 67.226562 242.472656 67.226562 C 242.355469 67.226562 242.261719 67.320312 242.261719 67.4375 C 242.261719 67.554688 242.355469 67.648438 242.472656 67.648438 C 242.589844 67.648438 242.683594 67.554688 242.683594 67.4375 Z M 242.683594 67.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.367188 68.484375 C 243.367188 68.367188 243.273438 68.273438 243.15625 68.273438 C 243.039062 68.273438 242.945312 68.367188 242.945312 68.484375 C 242.945312 68.601562 243.039062 68.695312 243.15625 68.695312 C 243.273438 68.695312 243.367188 68.601562 243.367188 68.484375 Z M 243.367188 68.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.886719 69.742188 C 241.886719 69.625 241.792969 69.53125 241.675781 69.53125 C 241.558594 69.53125 241.464844 69.625 241.464844 69.742188 C 241.464844 69.859375 241.558594 69.953125 241.675781 69.953125 C 241.792969 69.953125 241.886719 69.859375 241.886719 69.742188 Z M 241.886719 69.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.757812 74.019531 C 239.757812 73.902344 239.664062 73.808594 239.546875 73.808594 C 239.429688 73.808594 239.335938 73.902344 239.335938 74.019531 C 239.335938 74.136719 239.429688 74.230469 239.546875 74.230469 C 239.664062 74.230469 239.757812 74.136719 239.757812 74.019531 Z M 239.757812 74.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.683594 73.015625 C 238.683594 72.898438 238.589844 72.804688 238.472656 72.804688 C 238.355469 72.804688 238.261719 72.898438 238.261719 73.015625 C 238.261719 73.132812 238.355469 73.226562 238.472656 73.226562 C 238.589844 73.226562 238.683594 73.132812 238.683594 73.015625 Z M 238.683594 73.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.859375 71.671875 C 239.859375 71.554688 239.765625 71.460938 239.648438 71.460938 C 239.53125 71.460938 239.4375 71.554688 239.4375 71.671875 C 239.4375 71.789062 239.53125 71.882812 239.648438 71.882812 C 239.765625 71.882812 239.859375 71.789062 239.859375 71.671875 Z M 239.859375 71.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.566406 71.972656 C 239.566406 71.855469 239.472656 71.761719 239.355469 71.761719 C 239.238281 71.761719 239.144531 71.855469 239.144531 71.972656 C 239.144531 72.089844 239.238281 72.183594 239.355469 72.183594 C 239.472656 72.183594 239.566406 72.089844 239.566406 71.972656 Z M 239.566406 71.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.179688 70.191406 C 242.179688 70.074219 242.085938 69.980469 241.96875 69.980469 C 241.851562 69.980469 241.757812 70.074219 241.757812 70.191406 C 241.757812 70.308594 241.851562 70.402344 241.96875 70.402344 C 242.085938 70.402344 242.179688 70.308594 242.179688 70.191406 Z M 242.179688 70.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.691406 69.476562 C 242.691406 69.359375 242.597656 69.265625 242.480469 69.265625 C 242.363281 69.265625 242.269531 69.359375 242.269531 69.476562 C 242.269531 69.59375 242.363281 69.6875 242.480469 69.6875 C 242.597656 69.6875 242.691406 69.59375 242.691406 69.476562 Z M 242.691406 69.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.933594 73.703125 C 241.933594 73.585938 241.839844 73.492188 241.722656 73.492188 C 241.605469 73.492188 241.511719 73.585938 241.511719 73.703125 C 241.511719 73.820312 241.605469 73.914062 241.722656 73.914062 C 241.839844 73.914062 241.933594 73.820312 241.933594 73.703125 Z M 241.933594 73.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.890625 72.515625 C 241.890625 72.398438 241.796875 72.304688 241.679688 72.304688 C 241.5625 72.304688 241.46875 72.398438 241.46875 72.515625 C 241.46875 72.632812 241.5625 72.726562 241.679688 72.726562 C 241.796875 72.726562 241.890625 72.632812 241.890625 72.515625 Z M 241.890625 72.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.179688 74.554688 C 239.179688 74.4375 239.085938 74.34375 238.96875 74.34375 C 238.851562 74.34375 238.757812 74.4375 238.757812 74.554688 C 238.757812 74.671875 238.851562 74.765625 238.96875 74.765625 C 239.085938 74.765625 239.179688 74.671875 239.179688 74.554688 Z M 239.179688 74.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.515625 75.703125 C 240.515625 75.585938 240.421875 75.492188 240.304688 75.492188 C 240.1875 75.492188 240.09375 75.585938 240.09375 75.703125 C 240.09375 75.820312 240.1875 75.914062 240.304688 75.914062 C 240.421875 75.914062 240.515625 75.820312 240.515625 75.703125 Z M 240.515625 75.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.15625 71.453125 C 243.15625 71.335938 243.0625 71.242188 242.945312 71.242188 C 242.828125 71.242188 242.734375 71.335938 242.734375 71.453125 C 242.734375 71.570312 242.828125 71.664062 242.945312 71.664062 C 243.0625 71.664062 243.15625 71.570312 243.15625 71.453125 Z M 243.15625 71.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.320312 71.976562 C 244.320312 71.859375 244.226562 71.765625 244.109375 71.765625 C 243.992188 71.765625 243.898438 71.859375 243.898438 71.976562 C 243.898438 72.09375 243.992188 72.1875 244.109375 72.1875 C 244.226562 72.1875 244.320312 72.09375 244.320312 71.976562 Z M 244.320312 71.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.054688 67.121094 C 247.054688 67.003906 246.960938 66.910156 246.84375 66.910156 C 246.726562 66.910156 246.632812 67.003906 246.632812 67.121094 C 246.632812 67.238281 246.726562 67.332031 246.84375 67.332031 C 246.960938 67.332031 247.054688 67.238281 247.054688 67.121094 Z M 247.054688 67.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.902344 69.035156 C 247.902344 68.917969 247.808594 68.824219 247.691406 68.824219 C 247.574219 68.824219 247.480469 68.917969 247.480469 69.035156 C 247.480469 69.152344 247.574219 69.246094 247.691406 69.246094 C 247.808594 69.246094 247.902344 69.152344 247.902344 69.035156 Z M 247.902344 69.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.539062 70.519531 C 248.539062 70.402344 248.445312 70.308594 248.328125 70.308594 C 248.210938 70.308594 248.117188 70.402344 248.117188 70.519531 C 248.117188 70.636719 248.210938 70.730469 248.328125 70.730469 C 248.445312 70.730469 248.539062 70.636719 248.539062 70.519531 Z M 248.539062 70.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.339844 68.855469 C 252.339844 68.738281 252.246094 68.644531 252.128906 68.644531 C 252.011719 68.644531 251.917969 68.738281 251.917969 68.855469 C 251.917969 68.972656 252.011719 69.066406 252.128906 69.066406 C 252.246094 69.066406 252.339844 68.972656 252.339844 68.855469 Z M 252.339844 68.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.277344 70.261719 C 254.277344 70.144531 254.183594 70.050781 254.066406 70.050781 C 253.949219 70.050781 253.855469 70.144531 253.855469 70.261719 C 253.855469 70.378906 253.949219 70.472656 254.066406 70.472656 C 254.183594 70.472656 254.277344 70.378906 254.277344 70.261719 Z M 254.277344 70.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.214844 70.945312 C 252.214844 70.828125 252.121094 70.734375 252.003906 70.734375 C 251.886719 70.734375 251.792969 70.828125 251.792969 70.945312 C 251.792969 71.0625 251.886719 71.15625 252.003906 71.15625 C 252.121094 71.15625 252.214844 71.0625 252.214844 70.945312 Z M 252.214844 70.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.175781 68.140625 C 251.175781 68.023438 251.082031 67.929688 250.964844 67.929688 C 250.847656 67.929688 250.753906 68.023438 250.753906 68.140625 C 250.753906 68.257812 250.847656 68.351562 250.964844 68.351562 C 251.082031 68.351562 251.175781 68.257812 251.175781 68.140625 Z M 251.175781 68.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.460938 68.117188 C 249.460938 68 249.367188 67.90625 249.25 67.90625 C 249.132812 67.90625 249.039062 68 249.039062 68.117188 C 249.039062 68.234375 249.132812 68.328125 249.25 68.328125 C 249.367188 68.328125 249.460938 68.234375 249.460938 68.117188 Z M 249.460938 68.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.605469 71.757812 C 250.605469 71.640625 250.511719 71.546875 250.394531 71.546875 C 250.277344 71.546875 250.183594 71.640625 250.183594 71.757812 C 250.183594 71.875 250.277344 71.96875 250.394531 71.96875 C 250.511719 71.96875 250.605469 71.875 250.605469 71.757812 Z M 250.605469 71.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.023438 74.878906 C 252.023438 74.761719 251.929688 74.667969 251.8125 74.667969 C 251.695312 74.667969 251.601562 74.761719 251.601562 74.878906 C 251.601562 74.996094 251.695312 75.089844 251.8125 75.089844 C 251.929688 75.089844 252.023438 74.996094 252.023438 74.878906 Z M 252.023438 74.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.304688 73.449219 C 248.304688 73.332031 248.210938 73.238281 248.09375 73.238281 C 247.976562 73.238281 247.882812 73.332031 247.882812 73.449219 C 247.882812 73.566406 247.976562 73.660156 248.09375 73.660156 C 248.210938 73.660156 248.304688 73.566406 248.304688 73.449219 Z M 248.304688 73.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.167969 70.152344 C 246.167969 70.035156 246.074219 69.941406 245.957031 69.941406 C 245.839844 69.941406 245.746094 70.035156 245.746094 70.152344 C 245.746094 70.269531 245.839844 70.363281 245.957031 70.363281 C 246.074219 70.363281 246.167969 70.269531 246.167969 70.152344 Z M 246.167969 70.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.464844 68.214844 C 245.464844 68.097656 245.371094 68.003906 245.253906 68.003906 C 245.136719 68.003906 245.042969 68.097656 245.042969 68.214844 C 245.042969 68.332031 245.136719 68.425781 245.253906 68.425781 C 245.371094 68.425781 245.464844 68.332031 245.464844 68.214844 Z M 245.464844 68.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.0625 68.4375 C 246.0625 68.320312 245.96875 68.226562 245.851562 68.226562 C 245.734375 68.226562 245.640625 68.320312 245.640625 68.4375 C 245.640625 68.554688 245.734375 68.648438 245.851562 68.648438 C 245.96875 68.648438 246.0625 68.554688 246.0625 68.4375 Z M 246.0625 68.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.265625 66.648438 C 245.265625 66.53125 245.171875 66.4375 245.054688 66.4375 C 244.9375 66.4375 244.84375 66.53125 244.84375 66.648438 C 244.84375 66.765625 244.9375 66.859375 245.054688 66.859375 C 245.171875 66.859375 245.265625 66.765625 245.265625 66.648438 Z M 245.265625 66.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.582031 66.953125 C 242.582031 66.835938 242.488281 66.742188 242.371094 66.742188 C 242.253906 66.742188 242.160156 66.835938 242.160156 66.953125 C 242.160156 67.070312 242.253906 67.164062 242.371094 67.164062 C 242.488281 67.164062 242.582031 67.070312 242.582031 66.953125 Z M 242.582031 66.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.628906 69.902344 C 244.628906 69.785156 244.535156 69.691406 244.417969 69.691406 C 244.300781 69.691406 244.207031 69.785156 244.207031 69.902344 C 244.207031 70.019531 244.300781 70.113281 244.417969 70.113281 C 244.535156 70.113281 244.628906 70.019531 244.628906 69.902344 Z M 244.628906 69.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.945312 70.234375 C 240.945312 70.117188 240.851562 70.023438 240.734375 70.023438 C 240.617188 70.023438 240.523438 70.117188 240.523438 70.234375 C 240.523438 70.351562 240.617188 70.445312 240.734375 70.445312 C 240.851562 70.445312 240.945312 70.351562 240.945312 70.234375 Z M 240.945312 70.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.625 68.390625 C 238.625 68.273438 238.53125 68.179688 238.414062 68.179688 C 238.296875 68.179688 238.203125 68.273438 238.203125 68.390625 C 238.203125 68.507812 238.296875 68.601562 238.414062 68.601562 C 238.53125 68.601562 238.625 68.507812 238.625 68.390625 Z M 238.625 68.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.371094 66.339844 C 236.371094 66.222656 236.277344 66.128906 236.160156 66.128906 C 236.042969 66.128906 235.949219 66.222656 235.949219 66.339844 C 235.949219 66.457031 236.042969 66.550781 236.160156 66.550781 C 236.277344 66.550781 236.371094 66.457031 236.371094 66.339844 Z M 236.371094 66.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.007812 67.75 C 234.007812 67.632812 233.914062 67.539062 233.796875 67.539062 C 233.679688 67.539062 233.585938 67.632812 233.585938 67.75 C 233.585938 67.867188 233.679688 67.960938 233.796875 67.960938 C 233.914062 67.960938 234.007812 67.867188 234.007812 67.75 Z M 234.007812 67.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.457031 66.796875 C 235.457031 66.679688 235.363281 66.585938 235.246094 66.585938 C 235.128906 66.585938 235.035156 66.679688 235.035156 66.796875 C 235.035156 66.914062 235.128906 67.007812 235.246094 67.007812 C 235.363281 67.007812 235.457031 66.914062 235.457031 66.796875 Z M 235.457031 66.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.109375 67.039062 C 236.109375 66.921875 236.015625 66.828125 235.898438 66.828125 C 235.78125 66.828125 235.6875 66.921875 235.6875 67.039062 C 235.6875 67.15625 235.78125 67.25 235.898438 67.25 C 236.015625 67.25 236.109375 67.15625 236.109375 67.039062 Z M 236.109375 67.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.183594 67.878906 C 235.183594 67.761719 235.089844 67.667969 234.972656 67.667969 C 234.855469 67.667969 234.761719 67.761719 234.761719 67.878906 C 234.761719 67.996094 234.855469 68.089844 234.972656 68.089844 C 235.089844 68.089844 235.183594 67.996094 235.183594 67.878906 Z M 235.183594 67.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.675781 65.242188 C 237.675781 65.125 237.582031 65.03125 237.464844 65.03125 C 237.347656 65.03125 237.253906 65.125 237.253906 65.242188 C 237.253906 65.359375 237.347656 65.453125 237.464844 65.453125 C 237.582031 65.453125 237.675781 65.359375 237.675781 65.242188 Z M 237.675781 65.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.507812 65.539062 C 233.507812 65.421875 233.414062 65.328125 233.296875 65.328125 C 233.179688 65.328125 233.085938 65.421875 233.085938 65.539062 C 233.085938 65.65625 233.179688 65.75 233.296875 65.75 C 233.414062 65.75 233.507812 65.65625 233.507812 65.539062 Z M 233.507812 65.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.191406 66.765625 C 230.191406 66.648438 230.097656 66.554688 229.980469 66.554688 C 229.863281 66.554688 229.769531 66.648438 229.769531 66.765625 C 229.769531 66.882812 229.863281 66.976562 229.980469 66.976562 C 230.097656 66.976562 230.191406 66.882812 230.191406 66.765625 Z M 230.191406 66.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.59375 65.742188 C 227.59375 65.625 227.5 65.53125 227.382812 65.53125 C 227.265625 65.53125 227.171875 65.625 227.171875 65.742188 C 227.171875 65.859375 227.265625 65.953125 227.382812 65.953125 C 227.5 65.953125 227.59375 65.859375 227.59375 65.742188 Z M 227.59375 65.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.273438 62.519531 C 230.273438 62.402344 230.179688 62.308594 230.0625 62.308594 C 229.945312 62.308594 229.851562 62.402344 229.851562 62.519531 C 229.851562 62.636719 229.945312 62.730469 230.0625 62.730469 C 230.179688 62.730469 230.273438 62.636719 230.273438 62.519531 Z M 230.273438 62.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.121094 62.261719 C 233.121094 62.144531 233.027344 62.050781 232.910156 62.050781 C 232.792969 62.050781 232.699219 62.144531 232.699219 62.261719 C 232.699219 62.378906 232.792969 62.472656 232.910156 62.472656 C 233.027344 62.472656 233.121094 62.378906 233.121094 62.261719 Z M 233.121094 62.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.339844 59.824219 C 234.339844 59.707031 234.246094 59.613281 234.128906 59.613281 C 234.011719 59.613281 233.917969 59.707031 233.917969 59.824219 C 233.917969 59.941406 234.011719 60.035156 234.128906 60.035156 C 234.246094 60.035156 234.339844 59.941406 234.339844 59.824219 Z M 234.339844 59.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.585938 60.839844 C 238.585938 60.722656 238.492188 60.628906 238.375 60.628906 C 238.257812 60.628906 238.164062 60.722656 238.164062 60.839844 C 238.164062 60.957031 238.257812 61.050781 238.375 61.050781 C 238.492188 61.050781 238.585938 60.957031 238.585938 60.839844 Z M 238.585938 60.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.246094 60.566406 C 242.246094 60.449219 242.152344 60.355469 242.035156 60.355469 C 241.917969 60.355469 241.824219 60.449219 241.824219 60.566406 C 241.824219 60.683594 241.917969 60.777344 242.035156 60.777344 C 242.152344 60.777344 242.246094 60.683594 242.246094 60.566406 Z M 242.246094 60.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.121094 63.285156 C 245.121094 63.167969 245.027344 63.074219 244.910156 63.074219 C 244.792969 63.074219 244.699219 63.167969 244.699219 63.285156 C 244.699219 63.402344 244.792969 63.496094 244.910156 63.496094 C 245.027344 63.496094 245.121094 63.402344 245.121094 63.285156 Z M 245.121094 63.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.269531 61.882812 C 246.269531 61.765625 246.175781 61.671875 246.058594 61.671875 C 245.941406 61.671875 245.847656 61.765625 245.847656 61.882812 C 245.847656 62 245.941406 62.09375 246.058594 62.09375 C 246.175781 62.09375 246.269531 62 246.269531 61.882812 Z M 246.269531 61.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.527344 60.320312 C 249.527344 60.203125 249.433594 60.109375 249.316406 60.109375 C 249.199219 60.109375 249.105469 60.203125 249.105469 60.320312 C 249.105469 60.4375 249.199219 60.53125 249.316406 60.53125 C 249.433594 60.53125 249.527344 60.4375 249.527344 60.320312 Z M 249.527344 60.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.402344 58.433594 C 254.402344 58.316406 254.308594 58.222656 254.191406 58.222656 C 254.074219 58.222656 253.980469 58.316406 253.980469 58.433594 C 253.980469 58.550781 254.074219 58.644531 254.191406 58.644531 C 254.308594 58.644531 254.402344 58.550781 254.402344 58.433594 Z M 254.402344 58.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.957031 58.285156 C 256.957031 58.167969 256.863281 58.074219 256.746094 58.074219 C 256.628906 58.074219 256.535156 58.167969 256.535156 58.285156 C 256.535156 58.402344 256.628906 58.496094 256.746094 58.496094 C 256.863281 58.496094 256.957031 58.402344 256.957031 58.285156 Z M 256.957031 58.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.84375 56.90625 C 259.84375 56.789062 259.75 56.695312 259.632812 56.695312 C 259.515625 56.695312 259.421875 56.789062 259.421875 56.90625 C 259.421875 57.023438 259.515625 57.117188 259.632812 57.117188 C 259.75 57.117188 259.84375 57.023438 259.84375 56.90625 Z M 259.84375 56.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259 54.71875 C 259 54.601562 258.90625 54.507812 258.789062 54.507812 C 258.671875 54.507812 258.578125 54.601562 258.578125 54.71875 C 258.578125 54.835938 258.671875 54.929688 258.789062 54.929688 C 258.90625 54.929688 259 54.835938 259 54.71875 Z M 259 54.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.75 57.167969 C 258.75 57.050781 258.65625 56.957031 258.539062 56.957031 C 258.421875 56.957031 258.328125 57.050781 258.328125 57.167969 C 258.328125 57.285156 258.421875 57.378906 258.539062 57.378906 C 258.65625 57.378906 258.75 57.285156 258.75 57.167969 Z M 258.75 57.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.640625 57.707031 C 257.640625 57.589844 257.546875 57.496094 257.429688 57.496094 C 257.3125 57.496094 257.21875 57.589844 257.21875 57.707031 C 257.21875 57.824219 257.3125 57.917969 257.429688 57.917969 C 257.546875 57.917969 257.640625 57.824219 257.640625 57.707031 Z M 257.640625 57.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.441406 57.066406 C 258.441406 56.949219 258.347656 56.855469 258.230469 56.855469 C 258.113281 56.855469 258.019531 56.949219 258.019531 57.066406 C 258.019531 57.183594 258.113281 57.277344 258.230469 57.277344 C 258.347656 57.277344 258.441406 57.183594 258.441406 57.066406 Z M 258.441406 57.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.761719 56.636719 C 257.761719 56.519531 257.667969 56.425781 257.550781 56.425781 C 257.433594 56.425781 257.339844 56.519531 257.339844 56.636719 C 257.339844 56.753906 257.433594 56.847656 257.550781 56.847656 C 257.667969 56.847656 257.761719 56.753906 257.761719 56.636719 Z M 257.761719 56.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.535156 58.300781 C 260.535156 58.183594 260.441406 58.089844 260.324219 58.089844 C 260.207031 58.089844 260.113281 58.183594 260.113281 58.300781 C 260.113281 58.417969 260.207031 58.511719 260.324219 58.511719 C 260.441406 58.511719 260.535156 58.417969 260.535156 58.300781 Z M 260.535156 58.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.253906 60.339844 C 262.253906 60.222656 262.160156 60.128906 262.042969 60.128906 C 261.925781 60.128906 261.832031 60.222656 261.832031 60.339844 C 261.832031 60.457031 261.925781 60.550781 262.042969 60.550781 C 262.160156 60.550781 262.253906 60.457031 262.253906 60.339844 Z M 262.253906 60.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.652344 59.679688 C 262.652344 59.5625 262.558594 59.46875 262.441406 59.46875 C 262.324219 59.46875 262.230469 59.5625 262.230469 59.679688 C 262.230469 59.796875 262.324219 59.890625 262.441406 59.890625 C 262.558594 59.890625 262.652344 59.796875 262.652344 59.679688 Z M 262.652344 59.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.589844 57.222656 C 261.589844 57.105469 261.496094 57.011719 261.378906 57.011719 C 261.261719 57.011719 261.167969 57.105469 261.167969 57.222656 C 261.167969 57.339844 261.261719 57.433594 261.378906 57.433594 C 261.496094 57.433594 261.589844 57.339844 261.589844 57.222656 Z M 261.589844 57.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.652344 57.535156 C 260.652344 57.417969 260.558594 57.324219 260.441406 57.324219 C 260.324219 57.324219 260.230469 57.417969 260.230469 57.535156 C 260.230469 57.652344 260.324219 57.746094 260.441406 57.746094 C 260.558594 57.746094 260.652344 57.652344 260.652344 57.535156 Z M 260.652344 57.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.636719 61.359375 C 260.636719 61.242188 260.542969 61.148438 260.425781 61.148438 C 260.308594 61.148438 260.214844 61.242188 260.214844 61.359375 C 260.214844 61.476562 260.308594 61.570312 260.425781 61.570312 C 260.542969 61.570312 260.636719 61.476562 260.636719 61.359375 Z M 260.636719 61.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.875 62.0625 C 255.875 61.945312 255.78125 61.851562 255.664062 61.851562 C 255.546875 61.851562 255.453125 61.945312 255.453125 62.0625 C 255.453125 62.179688 255.546875 62.273438 255.664062 62.273438 C 255.78125 62.273438 255.875 62.179688 255.875 62.0625 Z M 255.875 62.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.851562 60.335938 C 253.851562 60.21875 253.757812 60.125 253.640625 60.125 C 253.523438 60.125 253.429688 60.21875 253.429688 60.335938 C 253.429688 60.453125 253.523438 60.546875 253.640625 60.546875 C 253.757812 60.546875 253.851562 60.453125 253.851562 60.335938 Z M 253.851562 60.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.757812 57.683594 C 255.757812 57.566406 255.664062 57.472656 255.546875 57.472656 C 255.429688 57.472656 255.335938 57.566406 255.335938 57.683594 C 255.335938 57.800781 255.429688 57.894531 255.546875 57.894531 C 255.664062 57.894531 255.757812 57.800781 255.757812 57.683594 Z M 255.757812 57.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.894531 55.347656 C 259.894531 55.230469 259.800781 55.136719 259.683594 55.136719 C 259.566406 55.136719 259.472656 55.230469 259.472656 55.347656 C 259.472656 55.464844 259.566406 55.558594 259.683594 55.558594 C 259.800781 55.558594 259.894531 55.464844 259.894531 55.347656 Z M 259.894531 55.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.902344 56.386719 C 257.902344 56.269531 257.808594 56.175781 257.691406 56.175781 C 257.574219 56.175781 257.480469 56.269531 257.480469 56.386719 C 257.480469 56.503906 257.574219 56.597656 257.691406 56.597656 C 257.808594 56.597656 257.902344 56.503906 257.902344 56.386719 Z M 257.902344 56.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.441406 55.550781 C 257.441406 55.433594 257.347656 55.339844 257.230469 55.339844 C 257.113281 55.339844 257.019531 55.433594 257.019531 55.550781 C 257.019531 55.667969 257.113281 55.761719 257.230469 55.761719 C 257.347656 55.761719 257.441406 55.667969 257.441406 55.550781 Z M 257.441406 55.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.859375 57.824219 C 261.859375 57.707031 261.765625 57.613281 261.648438 57.613281 C 261.53125 57.613281 261.4375 57.707031 261.4375 57.824219 C 261.4375 57.941406 261.53125 58.035156 261.648438 58.035156 C 261.765625 58.035156 261.859375 57.941406 261.859375 57.824219 Z M 261.859375 57.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.210938 55.410156 C 265.210938 55.292969 265.117188 55.199219 265 55.199219 C 264.882812 55.199219 264.789062 55.292969 264.789062 55.410156 C 264.789062 55.527344 264.882812 55.621094 265 55.621094 C 265.117188 55.621094 265.210938 55.527344 265.210938 55.410156 Z M 265.210938 55.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.554688 55.570312 C 265.554688 55.453125 265.460938 55.359375 265.34375 55.359375 C 265.226562 55.359375 265.132812 55.453125 265.132812 55.570312 C 265.132812 55.6875 265.226562 55.78125 265.34375 55.78125 C 265.460938 55.78125 265.554688 55.6875 265.554688 55.570312 Z M 265.554688 55.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.9375 53.945312 C 262.9375 53.828125 262.84375 53.734375 262.726562 53.734375 C 262.609375 53.734375 262.515625 53.828125 262.515625 53.945312 C 262.515625 54.0625 262.609375 54.15625 262.726562 54.15625 C 262.84375 54.15625 262.9375 54.0625 262.9375 53.945312 Z M 262.9375 53.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.539062 51.429688 C 264.539062 51.3125 264.445312 51.21875 264.328125 51.21875 C 264.210938 51.21875 264.117188 51.3125 264.117188 51.429688 C 264.117188 51.546875 264.210938 51.640625 264.328125 51.640625 C 264.445312 51.640625 264.539062 51.546875 264.539062 51.429688 Z M 264.539062 51.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.09375 48.460938 C 266.09375 48.34375 266 48.25 265.882812 48.25 C 265.765625 48.25 265.671875 48.34375 265.671875 48.460938 C 265.671875 48.578125 265.765625 48.671875 265.882812 48.671875 C 266 48.671875 266.09375 48.578125 266.09375 48.460938 Z M 266.09375 48.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.355469 47.191406 C 265.355469 47.074219 265.261719 46.980469 265.144531 46.980469 C 265.027344 46.980469 264.933594 47.074219 264.933594 47.191406 C 264.933594 47.308594 265.027344 47.402344 265.144531 47.402344 C 265.261719 47.402344 265.355469 47.308594 265.355469 47.191406 Z M 265.355469 47.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.863281 44.980469 C 264.863281 44.863281 264.769531 44.769531 264.652344 44.769531 C 264.535156 44.769531 264.441406 44.863281 264.441406 44.980469 C 264.441406 45.097656 264.535156 45.191406 264.652344 45.191406 C 264.769531 45.191406 264.863281 45.097656 264.863281 44.980469 Z M 264.863281 44.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.945312 43.585938 C 262.945312 43.46875 262.851562 43.375 262.734375 43.375 C 262.617188 43.375 262.523438 43.46875 262.523438 43.585938 C 262.523438 43.703125 262.617188 43.796875 262.734375 43.796875 C 262.851562 43.796875 262.945312 43.703125 262.945312 43.585938 Z M 262.945312 43.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.21875 43.003906 C 263.21875 42.886719 263.125 42.792969 263.007812 42.792969 C 262.890625 42.792969 262.796875 42.886719 262.796875 43.003906 C 262.796875 43.121094 262.890625 43.214844 263.007812 43.214844 C 263.125 43.214844 263.21875 43.121094 263.21875 43.003906 Z M 263.21875 43.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.3125 42.386719 C 264.3125 42.269531 264.21875 42.175781 264.101562 42.175781 C 263.984375 42.175781 263.890625 42.269531 263.890625 42.386719 C 263.890625 42.503906 263.984375 42.597656 264.101562 42.597656 C 264.21875 42.597656 264.3125 42.503906 264.3125 42.386719 Z M 264.3125 42.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.070312 39.347656 C 263.070312 39.230469 262.976562 39.136719 262.859375 39.136719 C 262.742188 39.136719 262.648438 39.230469 262.648438 39.347656 C 262.648438 39.464844 262.742188 39.558594 262.859375 39.558594 C 262.976562 39.558594 263.070312 39.464844 263.070312 39.347656 Z M 263.070312 39.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.992188 39.253906 C 259.992188 39.136719 259.898438 39.042969 259.78125 39.042969 C 259.664062 39.042969 259.570312 39.136719 259.570312 39.253906 C 259.570312 39.371094 259.664062 39.464844 259.78125 39.464844 C 259.898438 39.464844 259.992188 39.371094 259.992188 39.253906 Z M 259.992188 39.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.640625 38.695312 C 258.640625 38.578125 258.546875 38.484375 258.429688 38.484375 C 258.3125 38.484375 258.21875 38.578125 258.21875 38.695312 C 258.21875 38.8125 258.3125 38.90625 258.429688 38.90625 C 258.546875 38.90625 258.640625 38.8125 258.640625 38.695312 Z M 258.640625 38.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.820312 36.332031 C 260.820312 36.214844 260.726562 36.121094 260.609375 36.121094 C 260.492188 36.121094 260.398438 36.214844 260.398438 36.332031 C 260.398438 36.449219 260.492188 36.542969 260.609375 36.542969 C 260.726562 36.542969 260.820312 36.449219 260.820312 36.332031 Z M 260.820312 36.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.09375 38.015625 C 259.09375 37.898438 259 37.804688 258.882812 37.804688 C 258.765625 37.804688 258.671875 37.898438 258.671875 38.015625 C 258.671875 38.132812 258.765625 38.226562 258.882812 38.226562 C 259 38.226562 259.09375 38.132812 259.09375 38.015625 Z M 259.09375 38.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.015625 39.683594 C 258.015625 39.566406 257.921875 39.472656 257.804688 39.472656 C 257.6875 39.472656 257.59375 39.566406 257.59375 39.683594 C 257.59375 39.800781 257.6875 39.894531 257.804688 39.894531 C 257.921875 39.894531 258.015625 39.800781 258.015625 39.683594 Z M 258.015625 39.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.472656 38.28125 C 257.472656 38.164062 257.378906 38.070312 257.261719 38.070312 C 257.144531 38.070312 257.050781 38.164062 257.050781 38.28125 C 257.050781 38.398438 257.144531 38.492188 257.261719 38.492188 C 257.378906 38.492188 257.472656 38.398438 257.472656 38.28125 Z M 257.472656 38.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.890625 39.453125 C 255.890625 39.335938 255.796875 39.242188 255.679688 39.242188 C 255.5625 39.242188 255.46875 39.335938 255.46875 39.453125 C 255.46875 39.570312 255.5625 39.664062 255.679688 39.664062 C 255.796875 39.664062 255.890625 39.570312 255.890625 39.453125 Z M 255.890625 39.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.328125 41.917969 C 257.328125 41.800781 257.234375 41.707031 257.117188 41.707031 C 257 41.707031 256.90625 41.800781 256.90625 41.917969 C 256.90625 42.035156 257 42.128906 257.117188 42.128906 C 257.234375 42.128906 257.328125 42.035156 257.328125 41.917969 Z M 257.328125 41.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.609375 37.796875 C 257.609375 37.679688 257.515625 37.585938 257.398438 37.585938 C 257.28125 37.585938 257.1875 37.679688 257.1875 37.796875 C 257.1875 37.914062 257.28125 38.007812 257.398438 38.007812 C 257.515625 38.007812 257.609375 37.914062 257.609375 37.796875 Z M 257.609375 37.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.230469 38.488281 C 255.230469 38.371094 255.136719 38.277344 255.019531 38.277344 C 254.902344 38.277344 254.808594 38.371094 254.808594 38.488281 C 254.808594 38.605469 254.902344 38.699219 255.019531 38.699219 C 255.136719 38.699219 255.230469 38.605469 255.230469 38.488281 Z M 255.230469 38.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.453125 41.527344 C 252.453125 41.410156 252.359375 41.316406 252.242188 41.316406 C 252.125 41.316406 252.03125 41.410156 252.03125 41.527344 C 252.03125 41.644531 252.125 41.738281 252.242188 41.738281 C 252.359375 41.738281 252.453125 41.644531 252.453125 41.527344 Z M 252.453125 41.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.574219 41.210938 C 251.574219 41.09375 251.480469 41 251.363281 41 C 251.246094 41 251.152344 41.09375 251.152344 41.210938 C 251.152344 41.328125 251.246094 41.421875 251.363281 41.421875 C 251.480469 41.421875 251.574219 41.328125 251.574219 41.210938 Z M 251.574219 41.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.371094 42.570312 C 253.371094 42.453125 253.277344 42.359375 253.160156 42.359375 C 253.042969 42.359375 252.949219 42.453125 252.949219 42.570312 C 252.949219 42.6875 253.042969 42.78125 253.160156 42.78125 C 253.277344 42.78125 253.371094 42.6875 253.371094 42.570312 Z M 253.371094 42.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.652344 39.707031 C 254.652344 39.589844 254.558594 39.496094 254.441406 39.496094 C 254.324219 39.496094 254.230469 39.589844 254.230469 39.707031 C 254.230469 39.824219 254.324219 39.917969 254.441406 39.917969 C 254.558594 39.917969 254.652344 39.824219 254.652344 39.707031 Z M 254.652344 39.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.019531 35.101562 C 259.019531 34.984375 258.925781 34.890625 258.808594 34.890625 C 258.691406 34.890625 258.597656 34.984375 258.597656 35.101562 C 258.597656 35.21875 258.691406 35.3125 258.808594 35.3125 C 258.925781 35.3125 259.019531 35.21875 259.019531 35.101562 Z M 259.019531 35.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.042969 35.074219 C 260.042969 34.957031 259.949219 34.863281 259.832031 34.863281 C 259.714844 34.863281 259.621094 34.957031 259.621094 35.074219 C 259.621094 35.191406 259.714844 35.285156 259.832031 35.285156 C 259.949219 35.285156 260.042969 35.191406 260.042969 35.074219 Z M 260.042969 35.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.242188 33.898438 C 260.242188 33.78125 260.148438 33.6875 260.03125 33.6875 C 259.914062 33.6875 259.820312 33.78125 259.820312 33.898438 C 259.820312 34.015625 259.914062 34.109375 260.03125 34.109375 C 260.148438 34.109375 260.242188 34.015625 260.242188 33.898438 Z M 260.242188 33.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.664062 32.203125 C 258.664062 32.085938 258.570312 31.992188 258.453125 31.992188 C 258.335938 31.992188 258.242188 32.085938 258.242188 32.203125 C 258.242188 32.320312 258.335938 32.414062 258.453125 32.414062 C 258.570312 32.414062 258.664062 32.320312 258.664062 32.203125 Z M 258.664062 32.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.28125 34.253906 C 261.28125 34.136719 261.1875 34.042969 261.070312 34.042969 C 260.953125 34.042969 260.859375 34.136719 260.859375 34.253906 C 260.859375 34.371094 260.953125 34.464844 261.070312 34.464844 C 261.1875 34.464844 261.28125 34.371094 261.28125 34.253906 Z M 261.28125 34.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.058594 33.101562 C 265.058594 32.984375 264.964844 32.890625 264.847656 32.890625 C 264.730469 32.890625 264.636719 32.984375 264.636719 33.101562 C 264.636719 33.21875 264.730469 33.3125 264.847656 33.3125 C 264.964844 33.3125 265.058594 33.21875 265.058594 33.101562 Z M 265.058594 33.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.398438 33.246094 C 265.398438 33.128906 265.304688 33.035156 265.1875 33.035156 C 265.070312 33.035156 264.976562 33.128906 264.976562 33.246094 C 264.976562 33.363281 265.070312 33.457031 265.1875 33.457031 C 265.304688 33.457031 265.398438 33.363281 265.398438 33.246094 Z M 265.398438 33.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.363281 27.527344 C 266.363281 27.410156 266.269531 27.316406 266.152344 27.316406 C 266.035156 27.316406 265.941406 27.410156 265.941406 27.527344 C 265.941406 27.644531 266.035156 27.738281 266.152344 27.738281 C 266.269531 27.738281 266.363281 27.644531 266.363281 27.527344 Z M 266.363281 27.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.804688 25.546875 C 265.804688 25.429688 265.710938 25.335938 265.59375 25.335938 C 265.476562 25.335938 265.382812 25.429688 265.382812 25.546875 C 265.382812 25.664062 265.476562 25.757812 265.59375 25.757812 C 265.710938 25.757812 265.804688 25.664062 265.804688 25.546875 Z M 265.804688 25.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.007812 24.386719 C 264.007812 24.269531 263.914062 24.175781 263.796875 24.175781 C 263.679688 24.175781 263.585938 24.269531 263.585938 24.386719 C 263.585938 24.503906 263.679688 24.597656 263.796875 24.597656 C 263.914062 24.597656 264.007812 24.503906 264.007812 24.386719 Z M 264.007812 24.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.105469 25.828125 C 265.105469 25.710938 265.011719 25.617188 264.894531 25.617188 C 264.777344 25.617188 264.683594 25.710938 264.683594 25.828125 C 264.683594 25.945312 264.777344 26.039062 264.894531 26.039062 C 265.011719 26.039062 265.105469 25.945312 265.105469 25.828125 Z M 265.105469 25.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.726562 28.519531 C 264.726562 28.402344 264.632812 28.308594 264.515625 28.308594 C 264.398438 28.308594 264.304688 28.402344 264.304688 28.519531 C 264.304688 28.636719 264.398438 28.730469 264.515625 28.730469 C 264.632812 28.730469 264.726562 28.636719 264.726562 28.519531 Z M 264.726562 28.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.65625 29.519531 C 263.65625 29.402344 263.5625 29.308594 263.445312 29.308594 C 263.328125 29.308594 263.234375 29.402344 263.234375 29.519531 C 263.234375 29.636719 263.328125 29.730469 263.445312 29.730469 C 263.5625 29.730469 263.65625 29.636719 263.65625 29.519531 Z M 263.65625 29.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 267.488281 29.433594 C 267.488281 29.316406 267.394531 29.222656 267.277344 29.222656 C 267.160156 29.222656 267.066406 29.316406 267.066406 29.433594 C 267.066406 29.550781 267.160156 29.644531 267.277344 29.644531 C 267.394531 29.644531 267.488281 29.550781 267.488281 29.433594 Z M 267.488281 29.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.691406 27.851562 C 268.691406 27.734375 268.597656 27.640625 268.480469 27.640625 C 268.363281 27.640625 268.269531 27.734375 268.269531 27.851562 C 268.269531 27.96875 268.363281 28.0625 268.480469 28.0625 C 268.597656 28.0625 268.691406 27.96875 268.691406 27.851562 Z M 268.691406 27.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.179688 26.695312 C 264.179688 26.578125 264.085938 26.484375 263.96875 26.484375 C 263.851562 26.484375 263.757812 26.578125 263.757812 26.695312 C 263.757812 26.8125 263.851562 26.90625 263.96875 26.90625 C 264.085938 26.90625 264.179688 26.8125 264.179688 26.695312 Z M 264.179688 26.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.59375 27.84375 C 260.59375 27.726562 260.5 27.632812 260.382812 27.632812 C 260.265625 27.632812 260.171875 27.726562 260.171875 27.84375 C 260.171875 27.960938 260.265625 28.054688 260.382812 28.054688 C 260.5 28.054688 260.59375 27.960938 260.59375 27.84375 Z M 260.59375 27.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.753906 32.261719 C 264.753906 32.144531 264.660156 32.050781 264.542969 32.050781 C 264.425781 32.050781 264.332031 32.144531 264.332031 32.261719 C 264.332031 32.378906 264.425781 32.472656 264.542969 32.472656 C 264.660156 32.472656 264.753906 32.378906 264.753906 32.261719 Z M 264.753906 32.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.128906 35.105469 C 263.128906 34.988281 263.035156 34.894531 262.917969 34.894531 C 262.800781 34.894531 262.707031 34.988281 262.707031 35.105469 C 262.707031 35.222656 262.800781 35.316406 262.917969 35.316406 C 263.035156 35.316406 263.128906 35.222656 263.128906 35.105469 Z M 263.128906 35.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.738281 37.921875 C 263.738281 37.804688 263.644531 37.710938 263.527344 37.710938 C 263.410156 37.710938 263.316406 37.804688 263.316406 37.921875 C 263.316406 38.039062 263.410156 38.132812 263.527344 38.132812 C 263.644531 38.132812 263.738281 38.039062 263.738281 37.921875 Z M 263.738281 37.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.679688 39.09375 C 262.679688 38.976562 262.585938 38.882812 262.46875 38.882812 C 262.351562 38.882812 262.257812 38.976562 262.257812 39.09375 C 262.257812 39.210938 262.351562 39.304688 262.46875 39.304688 C 262.585938 39.304688 262.679688 39.210938 262.679688 39.09375 Z M 262.679688 39.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.78125 41.359375 C 264.78125 41.242188 264.6875 41.148438 264.570312 41.148438 C 264.453125 41.148438 264.359375 41.242188 264.359375 41.359375 C 264.359375 41.476562 264.453125 41.570312 264.570312 41.570312 C 264.6875 41.570312 264.78125 41.476562 264.78125 41.359375 Z M 264.78125 41.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.144531 42.785156 C 266.144531 42.667969 266.050781 42.574219 265.933594 42.574219 C 265.816406 42.574219 265.722656 42.667969 265.722656 42.785156 C 265.722656 42.902344 265.816406 42.996094 265.933594 42.996094 C 266.050781 42.996094 266.144531 42.902344 266.144531 42.785156 Z M 266.144531 42.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 267.84375 42.476562 C 267.84375 42.359375 267.75 42.265625 267.632812 42.265625 C 267.515625 42.265625 267.421875 42.359375 267.421875 42.476562 C 267.421875 42.59375 267.515625 42.6875 267.632812 42.6875 C 267.75 42.6875 267.84375 42.59375 267.84375 42.476562 Z M 267.84375 42.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.535156 44.796875 C 268.535156 44.679688 268.441406 44.585938 268.324219 44.585938 C 268.207031 44.585938 268.113281 44.679688 268.113281 44.796875 C 268.113281 44.914062 268.207031 45.007812 268.324219 45.007812 C 268.441406 45.007812 268.535156 44.914062 268.535156 44.796875 Z M 268.535156 44.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 269.054688 42.890625 C 269.054688 42.773438 268.960938 42.679688 268.84375 42.679688 C 268.726562 42.679688 268.632812 42.773438 268.632812 42.890625 C 268.632812 43.007812 268.726562 43.101562 268.84375 43.101562 C 268.960938 43.101562 269.054688 43.007812 269.054688 42.890625 Z M 269.054688 42.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 269.769531 40.652344 C 269.769531 40.535156 269.675781 40.441406 269.558594 40.441406 C 269.441406 40.441406 269.347656 40.535156 269.347656 40.652344 C 269.347656 40.769531 269.441406 40.863281 269.558594 40.863281 C 269.675781 40.863281 269.769531 40.769531 269.769531 40.652344 Z M 269.769531 40.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.941406 41.65625 C 266.941406 41.539062 266.847656 41.445312 266.730469 41.445312 C 266.613281 41.445312 266.519531 41.539062 266.519531 41.65625 C 266.519531 41.773438 266.613281 41.867188 266.730469 41.867188 C 266.847656 41.867188 266.941406 41.773438 266.941406 41.65625 Z M 266.941406 41.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.183594 37.546875 C 266.183594 37.429688 266.089844 37.335938 265.972656 37.335938 C 265.855469 37.335938 265.761719 37.429688 265.761719 37.546875 C 265.761719 37.664062 265.855469 37.757812 265.972656 37.757812 C 266.089844 37.757812 266.183594 37.664062 266.183594 37.546875 Z M 266.183594 37.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.332031 34.898438 C 266.332031 34.78125 266.238281 34.6875 266.121094 34.6875 C 266.003906 34.6875 265.910156 34.78125 265.910156 34.898438 C 265.910156 35.015625 266.003906 35.109375 266.121094 35.109375 C 266.238281 35.109375 266.332031 35.015625 266.332031 34.898438 Z M 266.332031 34.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.8125 34.171875 C 268.8125 34.054688 268.71875 33.960938 268.601562 33.960938 C 268.484375 33.960938 268.390625 34.054688 268.390625 34.171875 C 268.390625 34.289062 268.484375 34.382812 268.601562 34.382812 C 268.71875 34.382812 268.8125 34.289062 268.8125 34.171875 Z M 268.8125 34.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.882812 34.976562 C 264.882812 34.859375 264.789062 34.765625 264.671875 34.765625 C 264.554688 34.765625 264.460938 34.859375 264.460938 34.976562 C 264.460938 35.09375 264.554688 35.1875 264.671875 35.1875 C 264.789062 35.1875 264.882812 35.09375 264.882812 34.976562 Z M 264.882812 34.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.328125 34.476562 C 265.328125 34.359375 265.234375 34.265625 265.117188 34.265625 C 265 34.265625 264.90625 34.359375 264.90625 34.476562 C 264.90625 34.59375 265 34.6875 265.117188 34.6875 C 265.234375 34.6875 265.328125 34.59375 265.328125 34.476562 Z M 265.328125 34.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.886719 35.859375 C 263.886719 35.742188 263.792969 35.648438 263.675781 35.648438 C 263.558594 35.648438 263.464844 35.742188 263.464844 35.859375 C 263.464844 35.976562 263.558594 36.070312 263.675781 36.070312 C 263.792969 36.070312 263.886719 35.976562 263.886719 35.859375 Z M 263.886719 35.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.757812 36.785156 C 263.757812 36.667969 263.664062 36.574219 263.546875 36.574219 C 263.429688 36.574219 263.335938 36.667969 263.335938 36.785156 C 263.335938 36.902344 263.429688 36.996094 263.546875 36.996094 C 263.664062 36.996094 263.757812 36.902344 263.757812 36.785156 Z M 263.757812 36.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.101562 36.625 C 263.101562 36.507812 263.007812 36.414062 262.890625 36.414062 C 262.773438 36.414062 262.679688 36.507812 262.679688 36.625 C 262.679688 36.742188 262.773438 36.835938 262.890625 36.835938 C 263.007812 36.835938 263.101562 36.742188 263.101562 36.625 Z M 263.101562 36.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.300781 38.976562 C 261.300781 38.859375 261.207031 38.765625 261.089844 38.765625 C 260.972656 38.765625 260.878906 38.859375 260.878906 38.976562 C 260.878906 39.09375 260.972656 39.1875 261.089844 39.1875 C 261.207031 39.1875 261.300781 39.09375 261.300781 38.976562 Z M 261.300781 38.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.761719 37.296875 C 259.761719 37.179688 259.667969 37.085938 259.550781 37.085938 C 259.433594 37.085938 259.339844 37.179688 259.339844 37.296875 C 259.339844 37.414062 259.433594 37.507812 259.550781 37.507812 C 259.667969 37.507812 259.761719 37.414062 259.761719 37.296875 Z M 259.761719 37.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.53125 34.554688 C 262.53125 34.4375 262.4375 34.34375 262.320312 34.34375 C 262.203125 34.34375 262.109375 34.4375 262.109375 34.554688 C 262.109375 34.671875 262.203125 34.765625 262.320312 34.765625 C 262.4375 34.765625 262.53125 34.671875 262.53125 34.554688 Z M 262.53125 34.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.683594 37.300781 C 262.683594 37.183594 262.589844 37.089844 262.472656 37.089844 C 262.355469 37.089844 262.261719 37.183594 262.261719 37.300781 C 262.261719 37.417969 262.355469 37.511719 262.472656 37.511719 C 262.589844 37.511719 262.683594 37.417969 262.683594 37.300781 Z M 262.683594 37.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.089844 36.589844 C 263.089844 36.472656 262.996094 36.378906 262.878906 36.378906 C 262.761719 36.378906 262.667969 36.472656 262.667969 36.589844 C 262.667969 36.707031 262.761719 36.800781 262.878906 36.800781 C 262.996094 36.800781 263.089844 36.707031 263.089844 36.589844 Z M 263.089844 36.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.808594 38.199219 C 261.808594 38.082031 261.714844 37.988281 261.597656 37.988281 C 261.480469 37.988281 261.386719 38.082031 261.386719 38.199219 C 261.386719 38.316406 261.480469 38.410156 261.597656 38.410156 C 261.714844 38.410156 261.808594 38.316406 261.808594 38.199219 Z M 261.808594 38.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.992188 38.460938 C 261.992188 38.34375 261.898438 38.25 261.78125 38.25 C 261.664062 38.25 261.570312 38.34375 261.570312 38.460938 C 261.570312 38.578125 261.664062 38.671875 261.78125 38.671875 C 261.898438 38.671875 261.992188 38.578125 261.992188 38.460938 Z M 261.992188 38.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.003906 40.445312 C 262.003906 40.328125 261.910156 40.234375 261.792969 40.234375 C 261.675781 40.234375 261.582031 40.328125 261.582031 40.445312 C 261.582031 40.5625 261.675781 40.65625 261.792969 40.65625 C 261.910156 40.65625 262.003906 40.5625 262.003906 40.445312 Z M 262.003906 40.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.4375 39.890625 C 264.4375 39.773438 264.34375 39.679688 264.226562 39.679688 C 264.109375 39.679688 264.015625 39.773438 264.015625 39.890625 C 264.015625 40.007812 264.109375 40.101562 264.226562 40.101562 C 264.34375 40.101562 264.4375 40.007812 264.4375 39.890625 Z M 264.4375 39.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.035156 42.113281 C 261.035156 41.996094 260.941406 41.902344 260.824219 41.902344 C 260.707031 41.902344 260.613281 41.996094 260.613281 42.113281 C 260.613281 42.230469 260.707031 42.324219 260.824219 42.324219 C 260.941406 42.324219 261.035156 42.230469 261.035156 42.113281 Z M 261.035156 42.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.050781 40.042969 C 262.050781 39.925781 261.957031 39.832031 261.839844 39.832031 C 261.722656 39.832031 261.628906 39.925781 261.628906 40.042969 C 261.628906 40.160156 261.722656 40.253906 261.839844 40.253906 C 261.957031 40.253906 262.050781 40.160156 262.050781 40.042969 Z M 262.050781 40.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.832031 43.636719 C 260.832031 43.519531 260.738281 43.425781 260.621094 43.425781 C 260.503906 43.425781 260.410156 43.519531 260.410156 43.636719 C 260.410156 43.753906 260.503906 43.847656 260.621094 43.847656 C 260.738281 43.847656 260.832031 43.753906 260.832031 43.636719 Z M 260.832031 43.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.542969 41.21875 C 256.542969 41.101562 256.449219 41.007812 256.332031 41.007812 C 256.214844 41.007812 256.121094 41.101562 256.121094 41.21875 C 256.121094 41.335938 256.214844 41.429688 256.332031 41.429688 C 256.449219 41.429688 256.542969 41.335938 256.542969 41.21875 Z M 256.542969 41.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.996094 42.53125 C 255.996094 42.414062 255.902344 42.320312 255.785156 42.320312 C 255.667969 42.320312 255.574219 42.414062 255.574219 42.53125 C 255.574219 42.648438 255.667969 42.742188 255.785156 42.742188 C 255.902344 42.742188 255.996094 42.648438 255.996094 42.53125 Z M 255.996094 42.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.507812 43.757812 C 255.507812 43.640625 255.414062 43.546875 255.296875 43.546875 C 255.179688 43.546875 255.085938 43.640625 255.085938 43.757812 C 255.085938 43.875 255.179688 43.96875 255.296875 43.96875 C 255.414062 43.96875 255.507812 43.875 255.507812 43.757812 Z M 255.507812 43.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.785156 41.289062 C 257.785156 41.171875 257.691406 41.078125 257.574219 41.078125 C 257.457031 41.078125 257.363281 41.171875 257.363281 41.289062 C 257.363281 41.40625 257.457031 41.5 257.574219 41.5 C 257.691406 41.5 257.785156 41.40625 257.785156 41.289062 Z M 257.785156 41.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.664062 41.773438 C 256.664062 41.65625 256.570312 41.5625 256.453125 41.5625 C 256.335938 41.5625 256.242188 41.65625 256.242188 41.773438 C 256.242188 41.890625 256.335938 41.984375 256.453125 41.984375 C 256.570312 41.984375 256.664062 41.890625 256.664062 41.773438 Z M 256.664062 41.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.902344 43.789062 C 258.902344 43.671875 258.808594 43.578125 258.691406 43.578125 C 258.574219 43.578125 258.480469 43.671875 258.480469 43.789062 C 258.480469 43.90625 258.574219 44 258.691406 44 C 258.808594 44 258.902344 43.90625 258.902344 43.789062 Z M 258.902344 43.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.925781 40.222656 C 255.925781 40.105469 255.832031 40.011719 255.714844 40.011719 C 255.597656 40.011719 255.503906 40.105469 255.503906 40.222656 C 255.503906 40.339844 255.597656 40.433594 255.714844 40.433594 C 255.832031 40.433594 255.925781 40.339844 255.925781 40.222656 Z M 255.925781 40.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.847656 38.402344 C 254.847656 38.285156 254.753906 38.191406 254.636719 38.191406 C 254.519531 38.191406 254.425781 38.285156 254.425781 38.402344 C 254.425781 38.519531 254.519531 38.613281 254.636719 38.613281 C 254.753906 38.613281 254.847656 38.519531 254.847656 38.402344 Z M 254.847656 38.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.832031 37.832031 C 251.832031 37.714844 251.738281 37.621094 251.621094 37.621094 C 251.503906 37.621094 251.410156 37.714844 251.410156 37.832031 C 251.410156 37.949219 251.503906 38.042969 251.621094 38.042969 C 251.738281 38.042969 251.832031 37.949219 251.832031 37.832031 Z M 251.832031 37.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.375 36.964844 C 254.375 36.847656 254.28125 36.753906 254.164062 36.753906 C 254.046875 36.753906 253.953125 36.847656 253.953125 36.964844 C 253.953125 37.082031 254.046875 37.175781 254.164062 37.175781 C 254.28125 37.175781 254.375 37.082031 254.375 36.964844 Z M 254.375 36.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.152344 32.074219 C 250.152344 31.957031 250.058594 31.863281 249.941406 31.863281 C 249.824219 31.863281 249.730469 31.957031 249.730469 32.074219 C 249.730469 32.191406 249.824219 32.285156 249.941406 32.285156 C 250.058594 32.285156 250.152344 32.191406 250.152344 32.074219 Z M 250.152344 32.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.992188 26.6875 C 246.992188 26.570312 246.898438 26.476562 246.78125 26.476562 C 246.664062 26.476562 246.570312 26.570312 246.570312 26.6875 C 246.570312 26.804688 246.664062 26.898438 246.78125 26.898438 C 246.898438 26.898438 246.992188 26.804688 246.992188 26.6875 Z M 246.992188 26.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.191406 24.738281 C 249.191406 24.621094 249.097656 24.527344 248.980469 24.527344 C 248.863281 24.527344 248.769531 24.621094 248.769531 24.738281 C 248.769531 24.855469 248.863281 24.949219 248.980469 24.949219 C 249.097656 24.949219 249.191406 24.855469 249.191406 24.738281 Z M 249.191406 24.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.554688 23.433594 C 250.554688 23.316406 250.460938 23.222656 250.34375 23.222656 C 250.226562 23.222656 250.132812 23.316406 250.132812 23.433594 C 250.132812 23.550781 250.226562 23.644531 250.34375 23.644531 C 250.460938 23.644531 250.554688 23.550781 250.554688 23.433594 Z M 250.554688 23.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.753906 25.1875 C 249.753906 25.070312 249.660156 24.976562 249.542969 24.976562 C 249.425781 24.976562 249.332031 25.070312 249.332031 25.1875 C 249.332031 25.304688 249.425781 25.398438 249.542969 25.398438 C 249.660156 25.398438 249.753906 25.304688 249.753906 25.1875 Z M 249.753906 25.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.722656 22 C 248.722656 21.882812 248.628906 21.789062 248.511719 21.789062 C 248.394531 21.789062 248.300781 21.882812 248.300781 22 C 248.300781 22.117188 248.394531 22.210938 248.511719 22.210938 C 248.628906 22.210938 248.722656 22.117188 248.722656 22 Z M 248.722656 22 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.777344 23.265625 C 251.777344 23.148438 251.683594 23.054688 251.566406 23.054688 C 251.449219 23.054688 251.355469 23.148438 251.355469 23.265625 C 251.355469 23.382812 251.449219 23.476562 251.566406 23.476562 C 251.683594 23.476562 251.777344 23.382812 251.777344 23.265625 Z M 251.777344 23.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.234375 20.378906 C 248.234375 20.261719 248.140625 20.167969 248.023438 20.167969 C 247.90625 20.167969 247.8125 20.261719 247.8125 20.378906 C 247.8125 20.496094 247.90625 20.589844 248.023438 20.589844 C 248.140625 20.589844 248.234375 20.496094 248.234375 20.378906 Z M 248.234375 20.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.71875 20.207031 C 250.71875 20.089844 250.625 19.996094 250.507812 19.996094 C 250.390625 19.996094 250.296875 20.089844 250.296875 20.207031 C 250.296875 20.324219 250.390625 20.417969 250.507812 20.417969 C 250.625 20.417969 250.71875 20.324219 250.71875 20.207031 Z M 250.71875 20.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.292969 18.765625 C 251.292969 18.648438 251.199219 18.554688 251.082031 18.554688 C 250.964844 18.554688 250.871094 18.648438 250.871094 18.765625 C 250.871094 18.882812 250.964844 18.976562 251.082031 18.976562 C 251.199219 18.976562 251.292969 18.882812 251.292969 18.765625 Z M 251.292969 18.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.351562 14.027344 C 251.351562 13.910156 251.257812 13.816406 251.140625 13.816406 C 251.023438 13.816406 250.929688 13.910156 250.929688 14.027344 C 250.929688 14.144531 251.023438 14.238281 251.140625 14.238281 C 251.257812 14.238281 251.351562 14.144531 251.351562 14.027344 Z M 251.351562 14.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.769531 12.625 C 255.769531 12.507812 255.675781 12.414062 255.558594 12.414062 C 255.441406 12.414062 255.347656 12.507812 255.347656 12.625 C 255.347656 12.742188 255.441406 12.835938 255.558594 12.835938 C 255.675781 12.835938 255.769531 12.742188 255.769531 12.625 Z M 255.769531 12.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.3125 9.109375 C 256.3125 8.992188 256.21875 8.898438 256.101562 8.898438 C 255.984375 8.898438 255.890625 8.992188 255.890625 9.109375 C 255.890625 9.226562 255.984375 9.320312 256.101562 9.320312 C 256.21875 9.320312 256.3125 9.226562 256.3125 9.109375 Z M 256.3125 9.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.273438 11.230469 C 257.273438 11.113281 257.179688 11.019531 257.0625 11.019531 C 256.945312 11.019531 256.851562 11.113281 256.851562 11.230469 C 256.851562 11.347656 256.945312 11.441406 257.0625 11.441406 C 257.179688 11.441406 257.273438 11.347656 257.273438 11.230469 Z M 257.273438 11.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.160156 12.953125 C 258.160156 12.835938 258.066406 12.742188 257.949219 12.742188 C 257.832031 12.742188 257.738281 12.835938 257.738281 12.953125 C 257.738281 13.070312 257.832031 13.164062 257.949219 13.164062 C 258.066406 13.164062 258.160156 13.070312 258.160156 12.953125 Z M 258.160156 12.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.074219 15.1875 C 256.074219 15.070312 255.980469 14.976562 255.863281 14.976562 C 255.746094 14.976562 255.652344 15.070312 255.652344 15.1875 C 255.652344 15.304688 255.746094 15.398438 255.863281 15.398438 C 255.980469 15.398438 256.074219 15.304688 256.074219 15.1875 Z M 256.074219 15.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.457031 12.707031 C 255.457031 12.589844 255.363281 12.496094 255.246094 12.496094 C 255.128906 12.496094 255.035156 12.589844 255.035156 12.707031 C 255.035156 12.824219 255.128906 12.917969 255.246094 12.917969 C 255.363281 12.917969 255.457031 12.824219 255.457031 12.707031 Z M 255.457031 12.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.089844 9.03125 C 253.089844 8.914062 252.996094 8.820312 252.878906 8.820312 C 252.761719 8.820312 252.667969 8.914062 252.667969 9.03125 C 252.667969 9.148438 252.761719 9.242188 252.878906 9.242188 C 252.996094 9.242188 253.089844 9.148438 253.089844 9.03125 Z M 253.089844 9.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.542969 6.671875 C 255.542969 6.554688 255.449219 6.460938 255.332031 6.460938 C 255.214844 6.460938 255.121094 6.554688 255.121094 6.671875 C 255.121094 6.789062 255.214844 6.882812 255.332031 6.882812 C 255.449219 6.882812 255.542969 6.789062 255.542969 6.671875 Z M 255.542969 6.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.941406 2.773438 C 257.941406 2.65625 257.847656 2.5625 257.730469 2.5625 C 257.613281 2.5625 257.519531 2.65625 257.519531 2.773438 C 257.519531 2.890625 257.613281 2.984375 257.730469 2.984375 C 257.847656 2.984375 257.941406 2.890625 257.941406 2.773438 Z M 257.941406 2.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.941406 9.605469 C 253.941406 9.488281 253.847656 9.394531 253.730469 9.394531 C 253.613281 9.394531 253.519531 9.488281 253.519531 9.605469 C 253.519531 9.722656 253.613281 9.816406 253.730469 9.816406 C 253.847656 9.816406 253.941406 9.722656 253.941406 9.605469 Z M 253.941406 9.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.933594 11.304688 C 255.933594 11.1875 255.839844 11.09375 255.722656 11.09375 C 255.605469 11.09375 255.511719 11.1875 255.511719 11.304688 C 255.511719 11.421875 255.605469 11.515625 255.722656 11.515625 C 255.839844 11.515625 255.933594 11.421875 255.933594 11.304688 Z M 255.933594 11.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.058594 10.875 C 258.058594 10.757812 257.964844 10.664062 257.847656 10.664062 C 257.730469 10.664062 257.636719 10.757812 257.636719 10.875 C 257.636719 10.992188 257.730469 11.085938 257.847656 11.085938 C 257.964844 11.085938 258.058594 10.992188 258.058594 10.875 Z M 258.058594 10.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.359375 8.070312 C 256.359375 7.953125 256.265625 7.859375 256.148438 7.859375 C 256.03125 7.859375 255.9375 7.953125 255.9375 8.070312 C 255.9375 8.1875 256.03125 8.28125 256.148438 8.28125 C 256.265625 8.28125 256.359375 8.1875 256.359375 8.070312 Z M 256.359375 8.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.890625 9.835938 C 256.890625 9.71875 256.796875 9.625 256.679688 9.625 C 256.5625 9.625 256.46875 9.71875 256.46875 9.835938 C 256.46875 9.953125 256.5625 10.046875 256.679688 10.046875 C 256.796875 10.046875 256.890625 9.953125 256.890625 9.835938 Z M 256.890625 9.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.621094 9.226562 C 254.621094 9.109375 254.527344 9.015625 254.410156 9.015625 C 254.292969 9.015625 254.199219 9.109375 254.199219 9.226562 C 254.199219 9.34375 254.292969 9.4375 254.410156 9.4375 C 254.527344 9.4375 254.621094 9.34375 254.621094 9.226562 Z M 254.621094 9.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.671875 10.84375 C 253.671875 10.726562 253.578125 10.632812 253.460938 10.632812 C 253.34375 10.632812 253.25 10.726562 253.25 10.84375 C 253.25 10.960938 253.34375 11.054688 253.460938 11.054688 C 253.578125 11.054688 253.671875 10.960938 253.671875 10.84375 Z M 253.671875 10.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.476562 12.820312 C 255.476562 12.703125 255.382812 12.609375 255.265625 12.609375 C 255.148438 12.609375 255.054688 12.703125 255.054688 12.820312 C 255.054688 12.9375 255.148438 13.03125 255.265625 13.03125 C 255.382812 13.03125 255.476562 12.9375 255.476562 12.820312 Z M 255.476562 12.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.71875 13.097656 C 254.71875 12.980469 254.625 12.886719 254.507812 12.886719 C 254.390625 12.886719 254.296875 12.980469 254.296875 13.097656 C 254.296875 13.214844 254.390625 13.308594 254.507812 13.308594 C 254.625 13.308594 254.71875 13.214844 254.71875 13.097656 Z M 254.71875 13.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.234375 11.726562 C 253.234375 11.609375 253.140625 11.515625 253.023438 11.515625 C 252.90625 11.515625 252.8125 11.609375 252.8125 11.726562 C 252.8125 11.84375 252.90625 11.9375 253.023438 11.9375 C 253.140625 11.9375 253.234375 11.84375 253.234375 11.726562 Z M 253.234375 11.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.429688 12.230469 C 250.429688 12.113281 250.335938 12.019531 250.21875 12.019531 C 250.101562 12.019531 250.007812 12.113281 250.007812 12.230469 C 250.007812 12.347656 250.101562 12.441406 250.21875 12.441406 C 250.335938 12.441406 250.429688 12.347656 250.429688 12.230469 Z M 250.429688 12.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.675781 17.277344 C 251.675781 17.160156 251.582031 17.066406 251.464844 17.066406 C 251.347656 17.066406 251.253906 17.160156 251.253906 17.277344 C 251.253906 17.394531 251.347656 17.488281 251.464844 17.488281 C 251.582031 17.488281 251.675781 17.394531 251.675781 17.277344 Z M 251.675781 17.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.550781 17.796875 C 251.550781 17.679688 251.457031 17.585938 251.339844 17.585938 C 251.222656 17.585938 251.128906 17.679688 251.128906 17.796875 C 251.128906 17.914062 251.222656 18.007812 251.339844 18.007812 C 251.457031 18.007812 251.550781 17.914062 251.550781 17.796875 Z M 251.550781 17.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.507812 17.003906 C 255.507812 16.886719 255.414062 16.792969 255.296875 16.792969 C 255.179688 16.792969 255.085938 16.886719 255.085938 17.003906 C 255.085938 17.121094 255.179688 17.214844 255.296875 17.214844 C 255.414062 17.214844 255.507812 17.121094 255.507812 17.003906 Z M 255.507812 17.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.980469 15.984375 C 255.980469 15.867188 255.886719 15.773438 255.769531 15.773438 C 255.652344 15.773438 255.558594 15.867188 255.558594 15.984375 C 255.558594 16.101562 255.652344 16.195312 255.769531 16.195312 C 255.886719 16.195312 255.980469 16.101562 255.980469 15.984375 Z M 255.980469 15.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.667969 13.386719 C 253.667969 13.269531 253.574219 13.175781 253.457031 13.175781 C 253.339844 13.175781 253.246094 13.269531 253.246094 13.386719 C 253.246094 13.503906 253.339844 13.597656 253.457031 13.597656 C 253.574219 13.597656 253.667969 13.503906 253.667969 13.386719 Z M 253.667969 13.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.792969 13.273438 C 252.792969 13.15625 252.699219 13.0625 252.582031 13.0625 C 252.464844 13.0625 252.371094 13.15625 252.371094 13.273438 C 252.371094 13.390625 252.464844 13.484375 252.582031 13.484375 C 252.699219 13.484375 252.792969 13.390625 252.792969 13.273438 Z M 252.792969 13.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.992188 15.609375 C 255.992188 15.492188 255.898438 15.398438 255.78125 15.398438 C 255.664062 15.398438 255.570312 15.492188 255.570312 15.609375 C 255.570312 15.726562 255.664062 15.820312 255.78125 15.820312 C 255.898438 15.820312 255.992188 15.726562 255.992188 15.609375 Z M 255.992188 15.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.765625 14.28125 C 257.765625 14.164062 257.671875 14.070312 257.554688 14.070312 C 257.4375 14.070312 257.34375 14.164062 257.34375 14.28125 C 257.34375 14.398438 257.4375 14.492188 257.554688 14.492188 C 257.671875 14.492188 257.765625 14.398438 257.765625 14.28125 Z M 257.765625 14.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.125 17.269531 C 256.125 17.152344 256.03125 17.058594 255.914062 17.058594 C 255.796875 17.058594 255.703125 17.152344 255.703125 17.269531 C 255.703125 17.386719 255.796875 17.480469 255.914062 17.480469 C 256.03125 17.480469 256.125 17.386719 256.125 17.269531 Z M 256.125 17.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.652344 13.953125 C 257.652344 13.835938 257.558594 13.742188 257.441406 13.742188 C 257.324219 13.742188 257.230469 13.835938 257.230469 13.953125 C 257.230469 14.070312 257.324219 14.164062 257.441406 14.164062 C 257.558594 14.164062 257.652344 14.070312 257.652344 13.953125 Z M 257.652344 13.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.417969 15.582031 C 258.417969 15.464844 258.324219 15.371094 258.207031 15.371094 C 258.089844 15.371094 257.996094 15.464844 257.996094 15.582031 C 257.996094 15.699219 258.089844 15.792969 258.207031 15.792969 C 258.324219 15.792969 258.417969 15.699219 258.417969 15.582031 Z M 258.417969 15.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.109375 13.546875 C 259.109375 13.429688 259.015625 13.335938 258.898438 13.335938 C 258.78125 13.335938 258.6875 13.429688 258.6875 13.546875 C 258.6875 13.664062 258.78125 13.757812 258.898438 13.757812 C 259.015625 13.757812 259.109375 13.664062 259.109375 13.546875 Z M 259.109375 13.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.859375 11.113281 C 260.859375 10.996094 260.765625 10.902344 260.648438 10.902344 C 260.53125 10.902344 260.4375 10.996094 260.4375 11.113281 C 260.4375 11.230469 260.53125 11.324219 260.648438 11.324219 C 260.765625 11.324219 260.859375 11.230469 260.859375 11.113281 Z M 260.859375 11.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.519531 8.652344 C 261.519531 8.535156 261.425781 8.441406 261.308594 8.441406 C 261.191406 8.441406 261.097656 8.535156 261.097656 8.652344 C 261.097656 8.769531 261.191406 8.863281 261.308594 8.863281 C 261.425781 8.863281 261.519531 8.769531 261.519531 8.652344 Z M 261.519531 8.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.125 10.175781 C 262.125 10.058594 262.03125 9.964844 261.914062 9.964844 C 261.796875 9.964844 261.703125 10.058594 261.703125 10.175781 C 261.703125 10.292969 261.796875 10.386719 261.914062 10.386719 C 262.03125 10.386719 262.125 10.292969 262.125 10.175781 Z M 262.125 10.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.105469 11.160156 C 262.105469 11.042969 262.011719 10.949219 261.894531 10.949219 C 261.777344 10.949219 261.683594 11.042969 261.683594 11.160156 C 261.683594 11.277344 261.777344 11.371094 261.894531 11.371094 C 262.011719 11.371094 262.105469 11.277344 262.105469 11.160156 Z M 262.105469 11.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.957031 13.972656 C 261.957031 13.855469 261.863281 13.761719 261.746094 13.761719 C 261.628906 13.761719 261.535156 13.855469 261.535156 13.972656 C 261.535156 14.089844 261.628906 14.183594 261.746094 14.183594 C 261.863281 14.183594 261.957031 14.089844 261.957031 13.972656 Z M 261.957031 13.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.402344 13.636719 C 259.402344 13.519531 259.308594 13.425781 259.191406 13.425781 C 259.074219 13.425781 258.980469 13.519531 258.980469 13.636719 C 258.980469 13.753906 259.074219 13.847656 259.191406 13.847656 C 259.308594 13.847656 259.402344 13.753906 259.402344 13.636719 Z M 259.402344 13.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.230469 16.066406 C 260.230469 15.949219 260.136719 15.855469 260.019531 15.855469 C 259.902344 15.855469 259.808594 15.949219 259.808594 16.066406 C 259.808594 16.183594 259.902344 16.277344 260.019531 16.277344 C 260.136719 16.277344 260.230469 16.183594 260.230469 16.066406 Z M 260.230469 16.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.453125 14.410156 C 262.453125 14.292969 262.359375 14.199219 262.242188 14.199219 C 262.125 14.199219 262.03125 14.292969 262.03125 14.410156 C 262.03125 14.527344 262.125 14.621094 262.242188 14.621094 C 262.359375 14.621094 262.453125 14.527344 262.453125 14.410156 Z M 262.453125 14.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.316406 14.332031 C 259.316406 14.214844 259.222656 14.121094 259.105469 14.121094 C 258.988281 14.121094 258.894531 14.214844 258.894531 14.332031 C 258.894531 14.449219 258.988281 14.542969 259.105469 14.542969 C 259.222656 14.542969 259.316406 14.449219 259.316406 14.332031 Z M 259.316406 14.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.296875 15.191406 C 258.296875 15.074219 258.203125 14.980469 258.085938 14.980469 C 257.96875 14.980469 257.875 15.074219 257.875 15.191406 C 257.875 15.308594 257.96875 15.402344 258.085938 15.402344 C 258.203125 15.402344 258.296875 15.308594 258.296875 15.191406 Z M 258.296875 15.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.582031 11.382812 C 256.582031 11.265625 256.488281 11.171875 256.371094 11.171875 C 256.253906 11.171875 256.160156 11.265625 256.160156 11.382812 C 256.160156 11.5 256.253906 11.59375 256.371094 11.59375 C 256.488281 11.59375 256.582031 11.5 256.582031 11.382812 Z M 256.582031 11.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.90625 14.527344 C 255.90625 14.410156 255.8125 14.316406 255.695312 14.316406 C 255.578125 14.316406 255.484375 14.410156 255.484375 14.527344 C 255.484375 14.644531 255.578125 14.738281 255.695312 14.738281 C 255.8125 14.738281 255.90625 14.644531 255.90625 14.527344 Z M 255.90625 14.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.964844 10.824219 C 255.964844 10.707031 255.871094 10.613281 255.753906 10.613281 C 255.636719 10.613281 255.542969 10.707031 255.542969 10.824219 C 255.542969 10.941406 255.636719 11.035156 255.753906 11.035156 C 255.871094 11.035156 255.964844 10.941406 255.964844 10.824219 Z M 255.964844 10.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.167969 11.0625 C 253.167969 10.945312 253.074219 10.851562 252.957031 10.851562 C 252.839844 10.851562 252.746094 10.945312 252.746094 11.0625 C 252.746094 11.179688 252.839844 11.273438 252.957031 11.273438 C 253.074219 11.273438 253.167969 11.179688 253.167969 11.0625 Z M 253.167969 11.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.464844 12.066406 C 248.464844 11.949219 248.371094 11.855469 248.253906 11.855469 C 248.136719 11.855469 248.042969 11.949219 248.042969 12.066406 C 248.042969 12.183594 248.136719 12.277344 248.253906 12.277344 C 248.371094 12.277344 248.464844 12.183594 248.464844 12.066406 Z M 248.464844 12.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.621094 14.804688 C 248.621094 14.6875 248.527344 14.59375 248.410156 14.59375 C 248.292969 14.59375 248.199219 14.6875 248.199219 14.804688 C 248.199219 14.921875 248.292969 15.015625 248.410156 15.015625 C 248.527344 15.015625 248.621094 14.921875 248.621094 14.804688 Z M 248.621094 14.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.304688 15.496094 C 250.304688 15.378906 250.210938 15.285156 250.09375 15.285156 C 249.976562 15.285156 249.882812 15.378906 249.882812 15.496094 C 249.882812 15.613281 249.976562 15.707031 250.09375 15.707031 C 250.210938 15.707031 250.304688 15.613281 250.304688 15.496094 Z M 250.304688 15.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.835938 13.875 C 247.835938 13.757812 247.742188 13.664062 247.625 13.664062 C 247.507812 13.664062 247.414062 13.757812 247.414062 13.875 C 247.414062 13.992188 247.507812 14.085938 247.625 14.085938 C 247.742188 14.085938 247.835938 13.992188 247.835938 13.875 Z M 247.835938 13.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.609375 10.890625 C 251.609375 10.773438 251.515625 10.679688 251.398438 10.679688 C 251.28125 10.679688 251.1875 10.773438 251.1875 10.890625 C 251.1875 11.007812 251.28125 11.101562 251.398438 11.101562 C 251.515625 11.101562 251.609375 11.007812 251.609375 10.890625 Z M 251.609375 10.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.265625 14.6875 C 249.265625 14.570312 249.171875 14.476562 249.054688 14.476562 C 248.9375 14.476562 248.84375 14.570312 248.84375 14.6875 C 248.84375 14.804688 248.9375 14.898438 249.054688 14.898438 C 249.171875 14.898438 249.265625 14.804688 249.265625 14.6875 Z M 249.265625 14.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.203125 18.546875 C 249.203125 18.429688 249.109375 18.335938 248.992188 18.335938 C 248.875 18.335938 248.78125 18.429688 248.78125 18.546875 C 248.78125 18.664062 248.875 18.757812 248.992188 18.757812 C 249.109375 18.757812 249.203125 18.664062 249.203125 18.546875 Z M 249.203125 18.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.695312 20.621094 C 249.695312 20.503906 249.601562 20.410156 249.484375 20.410156 C 249.367188 20.410156 249.273438 20.503906 249.273438 20.621094 C 249.273438 20.738281 249.367188 20.832031 249.484375 20.832031 C 249.601562 20.832031 249.695312 20.738281 249.695312 20.621094 Z M 249.695312 20.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.820312 23.214844 C 248.820312 23.097656 248.726562 23.003906 248.609375 23.003906 C 248.492188 23.003906 248.398438 23.097656 248.398438 23.214844 C 248.398438 23.332031 248.492188 23.425781 248.609375 23.425781 C 248.726562 23.425781 248.820312 23.332031 248.820312 23.214844 Z M 248.820312 23.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.761719 21.261719 C 249.761719 21.144531 249.667969 21.050781 249.550781 21.050781 C 249.433594 21.050781 249.339844 21.144531 249.339844 21.261719 C 249.339844 21.378906 249.433594 21.472656 249.550781 21.472656 C 249.667969 21.472656 249.761719 21.378906 249.761719 21.261719 Z M 249.761719 21.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.308594 22.542969 C 252.308594 22.425781 252.214844 22.332031 252.097656 22.332031 C 251.980469 22.332031 251.886719 22.425781 251.886719 22.542969 C 251.886719 22.660156 251.980469 22.753906 252.097656 22.753906 C 252.214844 22.753906 252.308594 22.660156 252.308594 22.542969 Z M 252.308594 22.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.679688 25.304688 C 251.679688 25.1875 251.585938 25.09375 251.46875 25.09375 C 251.351562 25.09375 251.257812 25.1875 251.257812 25.304688 C 251.257812 25.421875 251.351562 25.515625 251.46875 25.515625 C 251.585938 25.515625 251.679688 25.421875 251.679688 25.304688 Z M 251.679688 25.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.960938 25.941406 C 251.960938 25.824219 251.867188 25.730469 251.75 25.730469 C 251.632812 25.730469 251.539062 25.824219 251.539062 25.941406 C 251.539062 26.058594 251.632812 26.152344 251.75 26.152344 C 251.867188 26.152344 251.960938 26.058594 251.960938 25.941406 Z M 251.960938 25.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.761719 20.917969 C 248.761719 20.800781 248.667969 20.707031 248.550781 20.707031 C 248.433594 20.707031 248.339844 20.800781 248.339844 20.917969 C 248.339844 21.035156 248.433594 21.128906 248.550781 21.128906 C 248.667969 21.128906 248.761719 21.035156 248.761719 20.917969 Z M 248.761719 20.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.222656 21.386719 C 246.222656 21.269531 246.128906 21.175781 246.011719 21.175781 C 245.894531 21.175781 245.800781 21.269531 245.800781 21.386719 C 245.800781 21.503906 245.894531 21.597656 246.011719 21.597656 C 246.128906 21.597656 246.222656 21.503906 246.222656 21.386719 Z M 246.222656 21.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.097656 19.609375 C 248.097656 19.492188 248.003906 19.398438 247.886719 19.398438 C 247.769531 19.398438 247.675781 19.492188 247.675781 19.609375 C 247.675781 19.726562 247.769531 19.820312 247.886719 19.820312 C 248.003906 19.820312 248.097656 19.726562 248.097656 19.609375 Z M 248.097656 19.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.699219 16.695312 C 250.699219 16.578125 250.605469 16.484375 250.488281 16.484375 C 250.371094 16.484375 250.277344 16.578125 250.277344 16.695312 C 250.277344 16.8125 250.371094 16.90625 250.488281 16.90625 C 250.605469 16.90625 250.699219 16.8125 250.699219 16.695312 Z M 250.699219 16.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.453125 17.269531 C 251.453125 17.152344 251.359375 17.058594 251.242188 17.058594 C 251.125 17.058594 251.03125 17.152344 251.03125 17.269531 C 251.03125 17.386719 251.125 17.480469 251.242188 17.480469 C 251.359375 17.480469 251.453125 17.386719 251.453125 17.269531 Z M 251.453125 17.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.246094 16.46875 C 251.246094 16.351562 251.152344 16.257812 251.035156 16.257812 C 250.917969 16.257812 250.824219 16.351562 250.824219 16.46875 C 250.824219 16.585938 250.917969 16.679688 251.035156 16.679688 C 251.152344 16.679688 251.246094 16.585938 251.246094 16.46875 Z M 251.246094 16.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.878906 17.367188 C 249.878906 17.25 249.785156 17.15625 249.667969 17.15625 C 249.550781 17.15625 249.457031 17.25 249.457031 17.367188 C 249.457031 17.484375 249.550781 17.578125 249.667969 17.578125 C 249.785156 17.578125 249.878906 17.484375 249.878906 17.367188 Z M 249.878906 17.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.382812 17.722656 C 248.382812 17.605469 248.289062 17.511719 248.171875 17.511719 C 248.054688 17.511719 247.960938 17.605469 247.960938 17.722656 C 247.960938 17.839844 248.054688 17.933594 248.171875 17.933594 C 248.289062 17.933594 248.382812 17.839844 248.382812 17.722656 Z M 248.382812 17.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.953125 20.777344 C 247.953125 20.660156 247.859375 20.566406 247.742188 20.566406 C 247.625 20.566406 247.53125 20.660156 247.53125 20.777344 C 247.53125 20.894531 247.625 20.988281 247.742188 20.988281 C 247.859375 20.988281 247.953125 20.894531 247.953125 20.777344 Z M 247.953125 20.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.503906 19.648438 C 253.503906 19.53125 253.410156 19.4375 253.292969 19.4375 C 253.175781 19.4375 253.082031 19.53125 253.082031 19.648438 C 253.082031 19.765625 253.175781 19.859375 253.292969 19.859375 C 253.410156 19.859375 253.503906 19.765625 253.503906 19.648438 Z M 253.503906 19.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.515625 18.65625 C 254.515625 18.539062 254.421875 18.445312 254.304688 18.445312 C 254.1875 18.445312 254.09375 18.539062 254.09375 18.65625 C 254.09375 18.773438 254.1875 18.867188 254.304688 18.867188 C 254.421875 18.867188 254.515625 18.773438 254.515625 18.65625 Z M 254.515625 18.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.96875 16.082031 C 254.96875 15.964844 254.875 15.871094 254.757812 15.871094 C 254.640625 15.871094 254.546875 15.964844 254.546875 16.082031 C 254.546875 16.199219 254.640625 16.292969 254.757812 16.292969 C 254.875 16.292969 254.96875 16.199219 254.96875 16.082031 Z M 254.96875 16.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.328125 16.234375 C 252.328125 16.117188 252.234375 16.023438 252.117188 16.023438 C 252 16.023438 251.90625 16.117188 251.90625 16.234375 C 251.90625 16.351562 252 16.445312 252.117188 16.445312 C 252.234375 16.445312 252.328125 16.351562 252.328125 16.234375 Z M 252.328125 16.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.019531 16.359375 C 252.019531 16.242188 251.925781 16.148438 251.808594 16.148438 C 251.691406 16.148438 251.597656 16.242188 251.597656 16.359375 C 251.597656 16.476562 251.691406 16.570312 251.808594 16.570312 C 251.925781 16.570312 252.019531 16.476562 252.019531 16.359375 Z M 252.019531 16.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.683594 17.925781 C 252.683594 17.808594 252.589844 17.714844 252.472656 17.714844 C 252.355469 17.714844 252.261719 17.808594 252.261719 17.925781 C 252.261719 18.042969 252.355469 18.136719 252.472656 18.136719 C 252.589844 18.136719 252.683594 18.042969 252.683594 17.925781 Z M 252.683594 17.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.601562 20.835938 C 254.601562 20.71875 254.507812 20.625 254.390625 20.625 C 254.273438 20.625 254.179688 20.71875 254.179688 20.835938 C 254.179688 20.953125 254.273438 21.046875 254.390625 21.046875 C 254.507812 21.046875 254.601562 20.953125 254.601562 20.835938 Z M 254.601562 20.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.820312 18.140625 C 256.820312 18.023438 256.726562 17.929688 256.609375 17.929688 C 256.492188 17.929688 256.398438 18.023438 256.398438 18.140625 C 256.398438 18.257812 256.492188 18.351562 256.609375 18.351562 C 256.726562 18.351562 256.820312 18.257812 256.820312 18.140625 Z M 256.820312 18.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.53125 16.933594 C 259.53125 16.816406 259.4375 16.722656 259.320312 16.722656 C 259.203125 16.722656 259.109375 16.816406 259.109375 16.933594 C 259.109375 17.050781 259.203125 17.144531 259.320312 17.144531 C 259.4375 17.144531 259.53125 17.050781 259.53125 16.933594 Z M 259.53125 16.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.828125 17.914062 C 256.828125 17.796875 256.734375 17.703125 256.617188 17.703125 C 256.5 17.703125 256.40625 17.796875 256.40625 17.914062 C 256.40625 18.03125 256.5 18.125 256.617188 18.125 C 256.734375 18.125 256.828125 18.03125 256.828125 17.914062 Z M 256.828125 17.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.128906 19.152344 C 255.128906 19.035156 255.035156 18.941406 254.917969 18.941406 C 254.800781 18.941406 254.707031 19.035156 254.707031 19.152344 C 254.707031 19.269531 254.800781 19.363281 254.917969 19.363281 C 255.035156 19.363281 255.128906 19.269531 255.128906 19.152344 Z M 255.128906 19.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.140625 16.894531 C 255.140625 16.777344 255.046875 16.683594 254.929688 16.683594 C 254.8125 16.683594 254.71875 16.777344 254.71875 16.894531 C 254.71875 17.011719 254.8125 17.105469 254.929688 17.105469 C 255.046875 17.105469 255.140625 17.011719 255.140625 16.894531 Z M 255.140625 16.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.210938 18.609375 C 260.210938 18.492188 260.117188 18.398438 260 18.398438 C 259.882812 18.398438 259.789062 18.492188 259.789062 18.609375 C 259.789062 18.726562 259.882812 18.820312 260 18.820312 C 260.117188 18.820312 260.210938 18.726562 260.210938 18.609375 Z M 260.210938 18.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.457031 20.417969 C 257.457031 20.300781 257.363281 20.207031 257.246094 20.207031 C 257.128906 20.207031 257.035156 20.300781 257.035156 20.417969 C 257.035156 20.535156 257.128906 20.628906 257.246094 20.628906 C 257.363281 20.628906 257.457031 20.535156 257.457031 20.417969 Z M 257.457031 20.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.890625 21.847656 C 253.890625 21.730469 253.796875 21.636719 253.679688 21.636719 C 253.5625 21.636719 253.46875 21.730469 253.46875 21.847656 C 253.46875 21.964844 253.5625 22.058594 253.679688 22.058594 C 253.796875 22.058594 253.890625 21.964844 253.890625 21.847656 Z M 253.890625 21.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.390625 25.925781 C 252.390625 25.808594 252.296875 25.714844 252.179688 25.714844 C 252.0625 25.714844 251.96875 25.808594 251.96875 25.925781 C 251.96875 26.042969 252.0625 26.136719 252.179688 26.136719 C 252.296875 26.136719 252.390625 26.042969 252.390625 25.925781 Z M 252.390625 25.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.027344 25.417969 C 249.027344 25.300781 248.933594 25.207031 248.816406 25.207031 C 248.699219 25.207031 248.605469 25.300781 248.605469 25.417969 C 248.605469 25.535156 248.699219 25.628906 248.816406 25.628906 C 248.933594 25.628906 249.027344 25.535156 249.027344 25.417969 Z M 249.027344 25.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.300781 21.980469 C 253.300781 21.863281 253.207031 21.769531 253.089844 21.769531 C 252.972656 21.769531 252.878906 21.863281 252.878906 21.980469 C 252.878906 22.097656 252.972656 22.191406 253.089844 22.191406 C 253.207031 22.191406 253.300781 22.097656 253.300781 21.980469 Z M 253.300781 21.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.664062 19.167969 C 252.664062 19.050781 252.570312 18.957031 252.453125 18.957031 C 252.335938 18.957031 252.242188 19.050781 252.242188 19.167969 C 252.242188 19.285156 252.335938 19.378906 252.453125 19.378906 C 252.570312 19.378906 252.664062 19.285156 252.664062 19.167969 Z M 252.664062 19.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.582031 21.570312 C 255.582031 21.453125 255.488281 21.359375 255.371094 21.359375 C 255.253906 21.359375 255.160156 21.453125 255.160156 21.570312 C 255.160156 21.6875 255.253906 21.78125 255.371094 21.78125 C 255.488281 21.78125 255.582031 21.6875 255.582031 21.570312 Z M 255.582031 21.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.722656 19.722656 C 254.722656 19.605469 254.628906 19.511719 254.511719 19.511719 C 254.394531 19.511719 254.300781 19.605469 254.300781 19.722656 C 254.300781 19.839844 254.394531 19.933594 254.511719 19.933594 C 254.628906 19.933594 254.722656 19.839844 254.722656 19.722656 Z M 254.722656 19.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.160156 23.035156 C 253.160156 22.917969 253.066406 22.824219 252.949219 22.824219 C 252.832031 22.824219 252.738281 22.917969 252.738281 23.035156 C 252.738281 23.152344 252.832031 23.246094 252.949219 23.246094 C 253.066406 23.246094 253.160156 23.152344 253.160156 23.035156 Z M 253.160156 23.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.796875 26.347656 C 250.796875 26.230469 250.703125 26.136719 250.585938 26.136719 C 250.46875 26.136719 250.375 26.230469 250.375 26.347656 C 250.375 26.464844 250.46875 26.558594 250.585938 26.558594 C 250.703125 26.558594 250.796875 26.464844 250.796875 26.347656 Z M 250.796875 26.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.015625 27.644531 C 252.015625 27.527344 251.921875 27.433594 251.804688 27.433594 C 251.6875 27.433594 251.59375 27.527344 251.59375 27.644531 C 251.59375 27.761719 251.6875 27.855469 251.804688 27.855469 C 251.921875 27.855469 252.015625 27.761719 252.015625 27.644531 Z M 252.015625 27.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.230469 24.550781 C 254.230469 24.433594 254.136719 24.339844 254.019531 24.339844 C 253.902344 24.339844 253.808594 24.433594 253.808594 24.550781 C 253.808594 24.667969 253.902344 24.761719 254.019531 24.761719 C 254.136719 24.761719 254.230469 24.667969 254.230469 24.550781 Z M 254.230469 24.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.34375 23.082031 C 255.34375 22.964844 255.25 22.871094 255.132812 22.871094 C 255.015625 22.871094 254.921875 22.964844 254.921875 23.082031 C 254.921875 23.199219 255.015625 23.292969 255.132812 23.292969 C 255.25 23.292969 255.34375 23.199219 255.34375 23.082031 Z M 255.34375 23.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.769531 24.5 C 254.769531 24.382812 254.675781 24.289062 254.558594 24.289062 C 254.441406 24.289062 254.347656 24.382812 254.347656 24.5 C 254.347656 24.617188 254.441406 24.710938 254.558594 24.710938 C 254.675781 24.710938 254.769531 24.617188 254.769531 24.5 Z M 254.769531 24.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.800781 23.191406 C 251.800781 23.074219 251.707031 22.980469 251.589844 22.980469 C 251.472656 22.980469 251.378906 23.074219 251.378906 23.191406 C 251.378906 23.308594 251.472656 23.402344 251.589844 23.402344 C 251.707031 23.402344 251.800781 23.308594 251.800781 23.191406 Z M 251.800781 23.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.101562 23.949219 C 250.101562 23.832031 250.007812 23.738281 249.890625 23.738281 C 249.773438 23.738281 249.679688 23.832031 249.679688 23.949219 C 249.679688 24.066406 249.773438 24.160156 249.890625 24.160156 C 250.007812 24.160156 250.101562 24.066406 250.101562 23.949219 Z M 250.101562 23.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.828125 22.996094 C 245.828125 22.878906 245.734375 22.785156 245.617188 22.785156 C 245.5 22.785156 245.40625 22.878906 245.40625 22.996094 C 245.40625 23.113281 245.5 23.207031 245.617188 23.207031 C 245.734375 23.207031 245.828125 23.113281 245.828125 22.996094 Z M 245.828125 22.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.222656 23.261719 C 244.222656 23.144531 244.128906 23.050781 244.011719 23.050781 C 243.894531 23.050781 243.800781 23.144531 243.800781 23.261719 C 243.800781 23.378906 243.894531 23.472656 244.011719 23.472656 C 244.128906 23.472656 244.222656 23.378906 244.222656 23.261719 Z M 244.222656 23.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.617188 21.316406 C 245.617188 21.199219 245.523438 21.105469 245.40625 21.105469 C 245.289062 21.105469 245.195312 21.199219 245.195312 21.316406 C 245.195312 21.433594 245.289062 21.527344 245.40625 21.527344 C 245.523438 21.527344 245.617188 21.433594 245.617188 21.316406 Z M 245.617188 21.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.652344 21.636719 C 244.652344 21.519531 244.558594 21.425781 244.441406 21.425781 C 244.324219 21.425781 244.230469 21.519531 244.230469 21.636719 C 244.230469 21.753906 244.324219 21.847656 244.441406 21.847656 C 244.558594 21.847656 244.652344 21.753906 244.652344 21.636719 Z M 244.652344 21.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.222656 18.570312 C 241.222656 18.453125 241.128906 18.359375 241.011719 18.359375 C 240.894531 18.359375 240.800781 18.453125 240.800781 18.570312 C 240.800781 18.6875 240.894531 18.78125 241.011719 18.78125 C 241.128906 18.78125 241.222656 18.6875 241.222656 18.570312 Z M 241.222656 18.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.554688 16.4375 C 240.554688 16.320312 240.460938 16.226562 240.34375 16.226562 C 240.226562 16.226562 240.132812 16.320312 240.132812 16.4375 C 240.132812 16.554688 240.226562 16.648438 240.34375 16.648438 C 240.460938 16.648438 240.554688 16.554688 240.554688 16.4375 Z M 240.554688 16.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.835938 13.1875 C 242.835938 13.070312 242.742188 12.976562 242.625 12.976562 C 242.507812 12.976562 242.414062 13.070312 242.414062 13.1875 C 242.414062 13.304688 242.507812 13.398438 242.625 13.398438 C 242.742188 13.398438 242.835938 13.304688 242.835938 13.1875 Z M 242.835938 13.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.175781 13.984375 C 240.175781 13.867188 240.082031 13.773438 239.964844 13.773438 C 239.847656 13.773438 239.753906 13.867188 239.753906 13.984375 C 239.753906 14.101562 239.847656 14.195312 239.964844 14.195312 C 240.082031 14.195312 240.175781 14.101562 240.175781 13.984375 Z M 240.175781 13.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.332031 10.523438 C 241.332031 10.40625 241.238281 10.3125 241.121094 10.3125 C 241.003906 10.3125 240.910156 10.40625 240.910156 10.523438 C 240.910156 10.640625 241.003906 10.734375 241.121094 10.734375 C 241.238281 10.734375 241.332031 10.640625 241.332031 10.523438 Z M 241.332031 10.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.375 9.570312 C 243.375 9.453125 243.28125 9.359375 243.164062 9.359375 C 243.046875 9.359375 242.953125 9.453125 242.953125 9.570312 C 242.953125 9.6875 243.046875 9.78125 243.164062 9.78125 C 243.28125 9.78125 243.375 9.6875 243.375 9.570312 Z M 243.375 9.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.691406 7.757812 C 238.691406 7.640625 238.597656 7.546875 238.480469 7.546875 C 238.363281 7.546875 238.269531 7.640625 238.269531 7.757812 C 238.269531 7.875 238.363281 7.96875 238.480469 7.96875 C 238.597656 7.96875 238.691406 7.875 238.691406 7.757812 Z M 238.691406 7.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.332031 8.21875 C 241.332031 8.101562 241.238281 8.007812 241.121094 8.007812 C 241.003906 8.007812 240.910156 8.101562 240.910156 8.21875 C 240.910156 8.335938 241.003906 8.429688 241.121094 8.429688 C 241.238281 8.429688 241.332031 8.335938 241.332031 8.21875 Z M 241.332031 8.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.8125 8.699219 C 240.8125 8.582031 240.71875 8.488281 240.601562 8.488281 C 240.484375 8.488281 240.390625 8.582031 240.390625 8.699219 C 240.390625 8.816406 240.484375 8.910156 240.601562 8.910156 C 240.71875 8.910156 240.8125 8.816406 240.8125 8.699219 Z M 240.8125 8.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.335938 11.246094 C 241.335938 11.128906 241.242188 11.035156 241.125 11.035156 C 241.007812 11.035156 240.914062 11.128906 240.914062 11.246094 C 240.914062 11.363281 241.007812 11.457031 241.125 11.457031 C 241.242188 11.457031 241.335938 11.363281 241.335938 11.246094 Z M 241.335938 11.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.144531 13.019531 C 242.144531 12.902344 242.050781 12.808594 241.933594 12.808594 C 241.816406 12.808594 241.722656 12.902344 241.722656 13.019531 C 241.722656 13.136719 241.816406 13.230469 241.933594 13.230469 C 242.050781 13.230469 242.144531 13.136719 242.144531 13.019531 Z M 242.144531 13.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.222656 10.210938 C 237.222656 10.09375 237.128906 10 237.011719 10 C 236.894531 10 236.800781 10.09375 236.800781 10.210938 C 236.800781 10.328125 236.894531 10.421875 237.011719 10.421875 C 237.128906 10.421875 237.222656 10.328125 237.222656 10.210938 Z M 237.222656 10.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.539062 9.527344 C 233.539062 9.410156 233.445312 9.316406 233.328125 9.316406 C 233.210938 9.316406 233.117188 9.410156 233.117188 9.527344 C 233.117188 9.644531 233.210938 9.738281 233.328125 9.738281 C 233.445312 9.738281 233.539062 9.644531 233.539062 9.527344 Z M 233.539062 9.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.410156 9.148438 C 235.410156 9.03125 235.316406 8.9375 235.199219 8.9375 C 235.082031 8.9375 234.988281 9.03125 234.988281 9.148438 C 234.988281 9.265625 235.082031 9.359375 235.199219 9.359375 C 235.316406 9.359375 235.410156 9.265625 235.410156 9.148438 Z M 235.410156 9.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.871094 6.238281 C 232.871094 6.121094 232.777344 6.027344 232.660156 6.027344 C 232.542969 6.027344 232.449219 6.121094 232.449219 6.238281 C 232.449219 6.355469 232.542969 6.449219 232.660156 6.449219 C 232.777344 6.449219 232.871094 6.355469 232.871094 6.238281 Z M 232.871094 6.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.273438 9.613281 C 232.273438 9.496094 232.179688 9.402344 232.0625 9.402344 C 231.945312 9.402344 231.851562 9.496094 231.851562 9.613281 C 231.851562 9.730469 231.945312 9.824219 232.0625 9.824219 C 232.179688 9.824219 232.273438 9.730469 232.273438 9.613281 Z M 232.273438 9.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.601562 10.726562 C 233.601562 10.609375 233.507812 10.515625 233.390625 10.515625 C 233.273438 10.515625 233.179688 10.609375 233.179688 10.726562 C 233.179688 10.84375 233.273438 10.9375 233.390625 10.9375 C 233.507812 10.9375 233.601562 10.84375 233.601562 10.726562 Z M 233.601562 10.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.292969 12.546875 C 236.292969 12.429688 236.199219 12.335938 236.082031 12.335938 C 235.964844 12.335938 235.871094 12.429688 235.871094 12.546875 C 235.871094 12.664062 235.964844 12.757812 236.082031 12.757812 C 236.199219 12.757812 236.292969 12.664062 236.292969 12.546875 Z M 236.292969 12.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.558594 11.824219 C 233.558594 11.707031 233.464844 11.613281 233.347656 11.613281 C 233.230469 11.613281 233.136719 11.707031 233.136719 11.824219 C 233.136719 11.941406 233.230469 12.035156 233.347656 12.035156 C 233.464844 12.035156 233.558594 11.941406 233.558594 11.824219 Z M 233.558594 11.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.53125 12.769531 C 236.53125 12.652344 236.4375 12.558594 236.320312 12.558594 C 236.203125 12.558594 236.109375 12.652344 236.109375 12.769531 C 236.109375 12.886719 236.203125 12.980469 236.320312 12.980469 C 236.4375 12.980469 236.53125 12.886719 236.53125 12.769531 Z M 236.53125 12.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.773438 13.214844 C 238.773438 13.097656 238.679688 13.003906 238.5625 13.003906 C 238.445312 13.003906 238.351562 13.097656 238.351562 13.214844 C 238.351562 13.332031 238.445312 13.425781 238.5625 13.425781 C 238.679688 13.425781 238.773438 13.332031 238.773438 13.214844 Z M 238.773438 13.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.183594 12.59375 C 240.183594 12.476562 240.089844 12.382812 239.972656 12.382812 C 239.855469 12.382812 239.761719 12.476562 239.761719 12.59375 C 239.761719 12.710938 239.855469 12.804688 239.972656 12.804688 C 240.089844 12.804688 240.183594 12.710938 240.183594 12.59375 Z M 240.183594 12.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.457031 15.613281 C 240.457031 15.496094 240.363281 15.402344 240.246094 15.402344 C 240.128906 15.402344 240.035156 15.496094 240.035156 15.613281 C 240.035156 15.730469 240.128906 15.824219 240.246094 15.824219 C 240.363281 15.824219 240.457031 15.730469 240.457031 15.613281 Z M 240.457031 15.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.640625 18.414062 C 241.640625 18.296875 241.546875 18.203125 241.429688 18.203125 C 241.3125 18.203125 241.21875 18.296875 241.21875 18.414062 C 241.21875 18.53125 241.3125 18.625 241.429688 18.625 C 241.546875 18.625 241.640625 18.53125 241.640625 18.414062 Z M 241.640625 18.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.796875 17.820312 C 238.796875 17.703125 238.703125 17.609375 238.585938 17.609375 C 238.46875 17.609375 238.375 17.703125 238.375 17.820312 C 238.375 17.9375 238.46875 18.03125 238.585938 18.03125 C 238.703125 18.03125 238.796875 17.9375 238.796875 17.820312 Z M 238.796875 17.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.660156 21.878906 C 240.660156 21.761719 240.566406 21.667969 240.449219 21.667969 C 240.332031 21.667969 240.238281 21.761719 240.238281 21.878906 C 240.238281 21.996094 240.332031 22.089844 240.449219 22.089844 C 240.566406 22.089844 240.660156 21.996094 240.660156 21.878906 Z M 240.660156 21.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.941406 20.386719 C 242.941406 20.269531 242.847656 20.175781 242.730469 20.175781 C 242.613281 20.175781 242.519531 20.269531 242.519531 20.386719 C 242.519531 20.503906 242.613281 20.597656 242.730469 20.597656 C 242.847656 20.597656 242.941406 20.503906 242.941406 20.386719 Z M 242.941406 20.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.03125 19.148438 C 243.03125 19.03125 242.9375 18.9375 242.820312 18.9375 C 242.703125 18.9375 242.609375 19.03125 242.609375 19.148438 C 242.609375 19.265625 242.703125 19.359375 242.820312 19.359375 C 242.9375 19.359375 243.03125 19.265625 243.03125 19.148438 Z M 243.03125 19.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.175781 18.628906 C 242.175781 18.511719 242.082031 18.417969 241.964844 18.417969 C 241.847656 18.417969 241.753906 18.511719 241.753906 18.628906 C 241.753906 18.746094 241.847656 18.839844 241.964844 18.839844 C 242.082031 18.839844 242.175781 18.746094 242.175781 18.628906 Z M 242.175781 18.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.90625 17.5625 C 243.90625 17.445312 243.8125 17.351562 243.695312 17.351562 C 243.578125 17.351562 243.484375 17.445312 243.484375 17.5625 C 243.484375 17.679688 243.578125 17.773438 243.695312 17.773438 C 243.8125 17.773438 243.90625 17.679688 243.90625 17.5625 Z M 243.90625 17.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.53125 21.039062 C 243.53125 20.921875 243.4375 20.828125 243.320312 20.828125 C 243.203125 20.828125 243.109375 20.921875 243.109375 21.039062 C 243.109375 21.15625 243.203125 21.25 243.320312 21.25 C 243.4375 21.25 243.53125 21.15625 243.53125 21.039062 Z M 243.53125 21.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.3125 24.082031 C 245.3125 23.964844 245.21875 23.871094 245.101562 23.871094 C 244.984375 23.871094 244.890625 23.964844 244.890625 24.082031 C 244.890625 24.199219 244.984375 24.292969 245.101562 24.292969 C 245.21875 24.292969 245.3125 24.199219 245.3125 24.082031 Z M 245.3125 24.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.273438 27.609375 C 243.273438 27.492188 243.179688 27.398438 243.0625 27.398438 C 242.945312 27.398438 242.851562 27.492188 242.851562 27.609375 C 242.851562 27.726562 242.945312 27.820312 243.0625 27.820312 C 243.179688 27.820312 243.273438 27.726562 243.273438 27.609375 Z M 243.273438 27.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.867188 29.851562 C 244.867188 29.734375 244.773438 29.640625 244.65625 29.640625 C 244.539062 29.640625 244.445312 29.734375 244.445312 29.851562 C 244.445312 29.96875 244.539062 30.0625 244.65625 30.0625 C 244.773438 30.0625 244.867188 29.96875 244.867188 29.851562 Z M 244.867188 29.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.46875 29.433594 C 242.46875 29.316406 242.375 29.222656 242.257812 29.222656 C 242.140625 29.222656 242.046875 29.316406 242.046875 29.433594 C 242.046875 29.550781 242.140625 29.644531 242.257812 29.644531 C 242.375 29.644531 242.46875 29.550781 242.46875 29.433594 Z M 242.46875 29.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.925781 34.011719 C 240.925781 33.894531 240.832031 33.800781 240.714844 33.800781 C 240.597656 33.800781 240.503906 33.894531 240.503906 34.011719 C 240.503906 34.128906 240.597656 34.222656 240.714844 34.222656 C 240.832031 34.222656 240.925781 34.128906 240.925781 34.011719 Z M 240.925781 34.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.257812 34.167969 C 240.257812 34.050781 240.164062 33.957031 240.046875 33.957031 C 239.929688 33.957031 239.835938 34.050781 239.835938 34.167969 C 239.835938 34.285156 239.929688 34.378906 240.046875 34.378906 C 240.164062 34.378906 240.257812 34.285156 240.257812 34.167969 Z M 240.257812 34.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.617188 35.574219 C 238.617188 35.457031 238.523438 35.363281 238.40625 35.363281 C 238.289062 35.363281 238.195312 35.457031 238.195312 35.574219 C 238.195312 35.691406 238.289062 35.785156 238.40625 35.785156 C 238.523438 35.785156 238.617188 35.691406 238.617188 35.574219 Z M 238.617188 35.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.660156 34.425781 C 241.660156 34.308594 241.566406 34.214844 241.449219 34.214844 C 241.332031 34.214844 241.238281 34.308594 241.238281 34.425781 C 241.238281 34.542969 241.332031 34.636719 241.449219 34.636719 C 241.566406 34.636719 241.660156 34.542969 241.660156 34.425781 Z M 241.660156 34.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.027344 32.203125 C 242.027344 32.085938 241.933594 31.992188 241.816406 31.992188 C 241.699219 31.992188 241.605469 32.085938 241.605469 32.203125 C 241.605469 32.320312 241.699219 32.414062 241.816406 32.414062 C 241.933594 32.414062 242.027344 32.320312 242.027344 32.203125 Z M 242.027344 32.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.554688 34.796875 C 241.554688 34.679688 241.460938 34.585938 241.34375 34.585938 C 241.226562 34.585938 241.132812 34.679688 241.132812 34.796875 C 241.132812 34.914062 241.226562 35.007812 241.34375 35.007812 C 241.460938 35.007812 241.554688 34.914062 241.554688 34.796875 Z M 241.554688 34.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.148438 34.84375 C 241.148438 34.726562 241.054688 34.632812 240.9375 34.632812 C 240.820312 34.632812 240.726562 34.726562 240.726562 34.84375 C 240.726562 34.960938 240.820312 35.054688 240.9375 35.054688 C 241.054688 35.054688 241.148438 34.960938 241.148438 34.84375 Z M 241.148438 34.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.003906 34.425781 C 241.003906 34.308594 240.910156 34.214844 240.792969 34.214844 C 240.675781 34.214844 240.582031 34.308594 240.582031 34.425781 C 240.582031 34.542969 240.675781 34.636719 240.792969 34.636719 C 240.910156 34.636719 241.003906 34.542969 241.003906 34.425781 Z M 241.003906 34.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.683594 34.609375 C 236.683594 34.492188 236.589844 34.398438 236.472656 34.398438 C 236.355469 34.398438 236.261719 34.492188 236.261719 34.609375 C 236.261719 34.726562 236.355469 34.820312 236.472656 34.820312 C 236.589844 34.820312 236.683594 34.726562 236.683594 34.609375 Z M 236.683594 34.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.710938 35.507812 C 234.710938 35.390625 234.617188 35.296875 234.5 35.296875 C 234.382812 35.296875 234.289062 35.390625 234.289062 35.507812 C 234.289062 35.625 234.382812 35.71875 234.5 35.71875 C 234.617188 35.71875 234.710938 35.625 234.710938 35.507812 Z M 234.710938 35.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.703125 30.578125 C 237.703125 30.460938 237.609375 30.367188 237.492188 30.367188 C 237.375 30.367188 237.28125 30.460938 237.28125 30.578125 C 237.28125 30.695312 237.375 30.789062 237.492188 30.789062 C 237.609375 30.789062 237.703125 30.695312 237.703125 30.578125 Z M 237.703125 30.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.660156 26.875 C 236.660156 26.757812 236.566406 26.664062 236.449219 26.664062 C 236.332031 26.664062 236.238281 26.757812 236.238281 26.875 C 236.238281 26.992188 236.332031 27.085938 236.449219 27.085938 C 236.566406 27.085938 236.660156 26.992188 236.660156 26.875 Z M 236.660156 26.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.113281 31.191406 C 236.113281 31.074219 236.019531 30.980469 235.902344 30.980469 C 235.785156 30.980469 235.691406 31.074219 235.691406 31.191406 C 235.691406 31.308594 235.785156 31.402344 235.902344 31.402344 C 236.019531 31.402344 236.113281 31.308594 236.113281 31.191406 Z M 236.113281 31.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.535156 31.863281 C 236.535156 31.746094 236.441406 31.652344 236.324219 31.652344 C 236.207031 31.652344 236.113281 31.746094 236.113281 31.863281 C 236.113281 31.980469 236.207031 32.074219 236.324219 32.074219 C 236.441406 32.074219 236.535156 31.980469 236.535156 31.863281 Z M 236.535156 31.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.117188 32.554688 C 235.117188 32.4375 235.023438 32.34375 234.90625 32.34375 C 234.789062 32.34375 234.695312 32.4375 234.695312 32.554688 C 234.695312 32.671875 234.789062 32.765625 234.90625 32.765625 C 235.023438 32.765625 235.117188 32.671875 235.117188 32.554688 Z M 235.117188 32.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.066406 36.0625 C 236.066406 35.945312 235.972656 35.851562 235.855469 35.851562 C 235.738281 35.851562 235.644531 35.945312 235.644531 36.0625 C 235.644531 36.179688 235.738281 36.273438 235.855469 36.273438 C 235.972656 36.273438 236.066406 36.179688 236.066406 36.0625 Z M 236.066406 36.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.257812 37.847656 C 234.257812 37.730469 234.164062 37.636719 234.046875 37.636719 C 233.929688 37.636719 233.835938 37.730469 233.835938 37.847656 C 233.835938 37.964844 233.929688 38.058594 234.046875 38.058594 C 234.164062 38.058594 234.257812 37.964844 234.257812 37.847656 Z M 234.257812 37.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.847656 38.753906 C 232.847656 38.636719 232.753906 38.542969 232.636719 38.542969 C 232.519531 38.542969 232.425781 38.636719 232.425781 38.753906 C 232.425781 38.871094 232.519531 38.964844 232.636719 38.964844 C 232.753906 38.964844 232.847656 38.871094 232.847656 38.753906 Z M 232.847656 38.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.273438 35.011719 C 233.273438 34.894531 233.179688 34.800781 233.0625 34.800781 C 232.945312 34.800781 232.851562 34.894531 232.851562 35.011719 C 232.851562 35.128906 232.945312 35.222656 233.0625 35.222656 C 233.179688 35.222656 233.273438 35.128906 233.273438 35.011719 Z M 233.273438 35.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.652344 32.445312 C 230.652344 32.328125 230.558594 32.234375 230.441406 32.234375 C 230.324219 32.234375 230.230469 32.328125 230.230469 32.445312 C 230.230469 32.5625 230.324219 32.65625 230.441406 32.65625 C 230.558594 32.65625 230.652344 32.5625 230.652344 32.445312 Z M 230.652344 32.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.027344 30.117188 C 231.027344 30 230.933594 29.90625 230.816406 29.90625 C 230.699219 29.90625 230.605469 30 230.605469 30.117188 C 230.605469 30.234375 230.699219 30.328125 230.816406 30.328125 C 230.933594 30.328125 231.027344 30.234375 231.027344 30.117188 Z M 231.027344 30.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.246094 32.011719 C 230.246094 31.894531 230.152344 31.800781 230.035156 31.800781 C 229.917969 31.800781 229.824219 31.894531 229.824219 32.011719 C 229.824219 32.128906 229.917969 32.222656 230.035156 32.222656 C 230.152344 32.222656 230.246094 32.128906 230.246094 32.011719 Z M 230.246094 32.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.453125 33.871094 C 230.453125 33.753906 230.359375 33.660156 230.242188 33.660156 C 230.125 33.660156 230.03125 33.753906 230.03125 33.871094 C 230.03125 33.988281 230.125 34.082031 230.242188 34.082031 C 230.359375 34.082031 230.453125 33.988281 230.453125 33.871094 Z M 230.453125 33.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.777344 33.671875 C 230.777344 33.554688 230.683594 33.460938 230.566406 33.460938 C 230.449219 33.460938 230.355469 33.554688 230.355469 33.671875 C 230.355469 33.789062 230.449219 33.882812 230.566406 33.882812 C 230.683594 33.882812 230.777344 33.789062 230.777344 33.671875 Z M 230.777344 33.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.78125 30.605469 C 228.78125 30.488281 228.6875 30.394531 228.570312 30.394531 C 228.453125 30.394531 228.359375 30.488281 228.359375 30.605469 C 228.359375 30.722656 228.453125 30.816406 228.570312 30.816406 C 228.6875 30.816406 228.78125 30.722656 228.78125 30.605469 Z M 228.78125 30.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.453125 31.75 C 228.453125 31.632812 228.359375 31.539062 228.242188 31.539062 C 228.125 31.539062 228.03125 31.632812 228.03125 31.75 C 228.03125 31.867188 228.125 31.960938 228.242188 31.960938 C 228.359375 31.960938 228.453125 31.867188 228.453125 31.75 Z M 228.453125 31.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.613281 32.746094 C 228.613281 32.628906 228.519531 32.535156 228.402344 32.535156 C 228.285156 32.535156 228.191406 32.628906 228.191406 32.746094 C 228.191406 32.863281 228.285156 32.957031 228.402344 32.957031 C 228.519531 32.957031 228.613281 32.863281 228.613281 32.746094 Z M 228.613281 32.746094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.984375 29.464844 C 223.984375 29.347656 223.890625 29.253906 223.773438 29.253906 C 223.65625 29.253906 223.5625 29.347656 223.5625 29.464844 C 223.5625 29.582031 223.65625 29.675781 223.773438 29.675781 C 223.890625 29.675781 223.984375 29.582031 223.984375 29.464844 Z M 223.984375 29.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.058594 31.453125 C 227.058594 31.335938 226.964844 31.242188 226.847656 31.242188 C 226.730469 31.242188 226.636719 31.335938 226.636719 31.453125 C 226.636719 31.570312 226.730469 31.664062 226.847656 31.664062 C 226.964844 31.664062 227.058594 31.570312 227.058594 31.453125 Z M 227.058594 31.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.265625 30.683594 C 227.265625 30.566406 227.171875 30.472656 227.054688 30.472656 C 226.9375 30.472656 226.84375 30.566406 226.84375 30.683594 C 226.84375 30.800781 226.9375 30.894531 227.054688 30.894531 C 227.171875 30.894531 227.265625 30.800781 227.265625 30.683594 Z M 227.265625 30.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.035156 27.234375 C 226.035156 27.117188 225.941406 27.023438 225.824219 27.023438 C 225.707031 27.023438 225.613281 27.117188 225.613281 27.234375 C 225.613281 27.351562 225.707031 27.445312 225.824219 27.445312 C 225.941406 27.445312 226.035156 27.351562 226.035156 27.234375 Z M 226.035156 27.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.273438 23.304688 C 230.273438 23.1875 230.179688 23.09375 230.0625 23.09375 C 229.945312 23.09375 229.851562 23.1875 229.851562 23.304688 C 229.851562 23.421875 229.945312 23.515625 230.0625 23.515625 C 230.179688 23.515625 230.273438 23.421875 230.273438 23.304688 Z M 230.273438 23.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.867188 21.976562 C 230.867188 21.859375 230.773438 21.765625 230.65625 21.765625 C 230.539062 21.765625 230.445312 21.859375 230.445312 21.976562 C 230.445312 22.09375 230.539062 22.1875 230.65625 22.1875 C 230.773438 22.1875 230.867188 22.09375 230.867188 21.976562 Z M 230.867188 21.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.113281 20.171875 C 234.113281 20.054688 234.019531 19.960938 233.902344 19.960938 C 233.785156 19.960938 233.691406 20.054688 233.691406 20.171875 C 233.691406 20.289062 233.785156 20.382812 233.902344 20.382812 C 234.019531 20.382812 234.113281 20.289062 234.113281 20.171875 Z M 234.113281 20.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.671875 19.296875 C 236.671875 19.179688 236.578125 19.085938 236.460938 19.085938 C 236.34375 19.085938 236.25 19.179688 236.25 19.296875 C 236.25 19.414062 236.34375 19.507812 236.460938 19.507812 C 236.578125 19.507812 236.671875 19.414062 236.671875 19.296875 Z M 236.671875 19.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.027344 20.152344 C 239.027344 20.035156 238.933594 19.941406 238.816406 19.941406 C 238.699219 19.941406 238.605469 20.035156 238.605469 20.152344 C 238.605469 20.269531 238.699219 20.363281 238.816406 20.363281 C 238.933594 20.363281 239.027344 20.269531 239.027344 20.152344 Z M 239.027344 20.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.15625 22.949219 C 242.15625 22.832031 242.0625 22.738281 241.945312 22.738281 C 241.828125 22.738281 241.734375 22.832031 241.734375 22.949219 C 241.734375 23.066406 241.828125 23.160156 241.945312 23.160156 C 242.0625 23.160156 242.15625 23.066406 242.15625 22.949219 Z M 242.15625 22.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.5625 22.28125 C 247.5625 22.164062 247.46875 22.070312 247.351562 22.070312 C 247.234375 22.070312 247.140625 22.164062 247.140625 22.28125 C 247.140625 22.398438 247.234375 22.492188 247.351562 22.492188 C 247.46875 22.492188 247.5625 22.398438 247.5625 22.28125 Z M 247.5625 22.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.179688 22.492188 C 246.179688 22.375 246.085938 22.28125 245.96875 22.28125 C 245.851562 22.28125 245.757812 22.375 245.757812 22.492188 C 245.757812 22.609375 245.851562 22.703125 245.96875 22.703125 C 246.085938 22.703125 246.179688 22.609375 246.179688 22.492188 Z M 246.179688 22.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.539062 23.375 C 246.539062 23.257812 246.445312 23.164062 246.328125 23.164062 C 246.210938 23.164062 246.117188 23.257812 246.117188 23.375 C 246.117188 23.492188 246.210938 23.585938 246.328125 23.585938 C 246.445312 23.585938 246.539062 23.492188 246.539062 23.375 Z M 246.539062 23.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.230469 25.863281 C 249.230469 25.746094 249.136719 25.652344 249.019531 25.652344 C 248.902344 25.652344 248.808594 25.746094 248.808594 25.863281 C 248.808594 25.980469 248.902344 26.074219 249.019531 26.074219 C 249.136719 26.074219 249.230469 25.980469 249.230469 25.863281 Z M 249.230469 25.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.773438 30.394531 C 246.773438 30.277344 246.679688 30.183594 246.5625 30.183594 C 246.445312 30.183594 246.351562 30.277344 246.351562 30.394531 C 246.351562 30.511719 246.445312 30.605469 246.5625 30.605469 C 246.679688 30.605469 246.773438 30.511719 246.773438 30.394531 Z M 246.773438 30.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.453125 28.46875 C 249.453125 28.351562 249.359375 28.257812 249.242188 28.257812 C 249.125 28.257812 249.03125 28.351562 249.03125 28.46875 C 249.03125 28.585938 249.125 28.679688 249.242188 28.679688 C 249.359375 28.679688 249.453125 28.585938 249.453125 28.46875 Z M 249.453125 28.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.351562 26.367188 C 253.351562 26.25 253.257812 26.15625 253.140625 26.15625 C 253.023438 26.15625 252.929688 26.25 252.929688 26.367188 C 252.929688 26.484375 253.023438 26.578125 253.140625 26.578125 C 253.257812 26.578125 253.351562 26.484375 253.351562 26.367188 Z M 253.351562 26.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.996094 28.542969 C 255.996094 28.425781 255.902344 28.332031 255.785156 28.332031 C 255.667969 28.332031 255.574219 28.425781 255.574219 28.542969 C 255.574219 28.660156 255.667969 28.753906 255.785156 28.753906 C 255.902344 28.753906 255.996094 28.660156 255.996094 28.542969 Z M 255.996094 28.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.019531 29.933594 C 252.019531 29.816406 251.925781 29.722656 251.808594 29.722656 C 251.691406 29.722656 251.597656 29.816406 251.597656 29.933594 C 251.597656 30.050781 251.691406 30.144531 251.808594 30.144531 C 251.925781 30.144531 252.019531 30.050781 252.019531 29.933594 Z M 252.019531 29.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.140625 29.542969 C 257.140625 29.425781 257.046875 29.332031 256.929688 29.332031 C 256.8125 29.332031 256.71875 29.425781 256.71875 29.542969 C 256.71875 29.660156 256.8125 29.753906 256.929688 29.753906 C 257.046875 29.753906 257.140625 29.660156 257.140625 29.542969 Z M 257.140625 29.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.4375 33.371094 C 256.4375 33.253906 256.34375 33.160156 256.226562 33.160156 C 256.109375 33.160156 256.015625 33.253906 256.015625 33.371094 C 256.015625 33.488281 256.109375 33.582031 256.226562 33.582031 C 256.34375 33.582031 256.4375 33.488281 256.4375 33.371094 Z M 256.4375 33.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.75 32.796875 C 256.75 32.679688 256.65625 32.585938 256.539062 32.585938 C 256.421875 32.585938 256.328125 32.679688 256.328125 32.796875 C 256.328125 32.914062 256.421875 33.007812 256.539062 33.007812 C 256.65625 33.007812 256.75 32.914062 256.75 32.796875 Z M 256.75 32.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.5 32.5625 C 255.5 32.445312 255.40625 32.351562 255.289062 32.351562 C 255.171875 32.351562 255.078125 32.445312 255.078125 32.5625 C 255.078125 32.679688 255.171875 32.773438 255.289062 32.773438 C 255.40625 32.773438 255.5 32.679688 255.5 32.5625 Z M 255.5 32.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.636719 30.296875 C 256.636719 30.179688 256.542969 30.085938 256.425781 30.085938 C 256.308594 30.085938 256.214844 30.179688 256.214844 30.296875 C 256.214844 30.414062 256.308594 30.507812 256.425781 30.507812 C 256.542969 30.507812 256.636719 30.414062 256.636719 30.296875 Z M 256.636719 30.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.585938 30.289062 C 256.585938 30.171875 256.492188 30.078125 256.375 30.078125 C 256.257812 30.078125 256.164062 30.171875 256.164062 30.289062 C 256.164062 30.40625 256.257812 30.5 256.375 30.5 C 256.492188 30.5 256.585938 30.40625 256.585938 30.289062 Z M 256.585938 30.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.648438 34.375 C 258.648438 34.257812 258.554688 34.164062 258.4375 34.164062 C 258.320312 34.164062 258.226562 34.257812 258.226562 34.375 C 258.226562 34.492188 258.320312 34.585938 258.4375 34.585938 C 258.554688 34.585938 258.648438 34.492188 258.648438 34.375 Z M 258.648438 34.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.792969 33.929688 C 258.792969 33.8125 258.699219 33.71875 258.582031 33.71875 C 258.464844 33.71875 258.371094 33.8125 258.371094 33.929688 C 258.371094 34.046875 258.464844 34.140625 258.582031 34.140625 C 258.699219 34.140625 258.792969 34.046875 258.792969 33.929688 Z M 258.792969 33.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.6875 34.777344 C 255.6875 34.660156 255.59375 34.566406 255.476562 34.566406 C 255.359375 34.566406 255.265625 34.660156 255.265625 34.777344 C 255.265625 34.894531 255.359375 34.988281 255.476562 34.988281 C 255.59375 34.988281 255.6875 34.894531 255.6875 34.777344 Z M 255.6875 34.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.671875 35.890625 C 255.671875 35.773438 255.578125 35.679688 255.460938 35.679688 C 255.34375 35.679688 255.25 35.773438 255.25 35.890625 C 255.25 36.007812 255.34375 36.101562 255.460938 36.101562 C 255.578125 36.101562 255.671875 36.007812 255.671875 35.890625 Z M 255.671875 35.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.816406 37.292969 C 256.816406 37.175781 256.722656 37.082031 256.605469 37.082031 C 256.488281 37.082031 256.394531 37.175781 256.394531 37.292969 C 256.394531 37.410156 256.488281 37.503906 256.605469 37.503906 C 256.722656 37.503906 256.816406 37.410156 256.816406 37.292969 Z M 256.816406 37.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.0625 39.484375 C 258.0625 39.367188 257.96875 39.273438 257.851562 39.273438 C 257.734375 39.273438 257.640625 39.367188 257.640625 39.484375 C 257.640625 39.601562 257.734375 39.695312 257.851562 39.695312 C 257.96875 39.695312 258.0625 39.601562 258.0625 39.484375 Z M 258.0625 39.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.207031 35.785156 C 262.207031 35.667969 262.113281 35.574219 261.996094 35.574219 C 261.878906 35.574219 261.785156 35.667969 261.785156 35.785156 C 261.785156 35.902344 261.878906 35.996094 261.996094 35.996094 C 262.113281 35.996094 262.207031 35.902344 262.207031 35.785156 Z M 262.207031 35.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.65625 38.015625 C 258.65625 37.898438 258.5625 37.804688 258.445312 37.804688 C 258.328125 37.804688 258.234375 37.898438 258.234375 38.015625 C 258.234375 38.132812 258.328125 38.226562 258.445312 38.226562 C 258.5625 38.226562 258.65625 38.132812 258.65625 38.015625 Z M 258.65625 38.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.066406 36.460938 C 263.066406 36.34375 262.972656 36.25 262.855469 36.25 C 262.738281 36.25 262.644531 36.34375 262.644531 36.460938 C 262.644531 36.578125 262.738281 36.671875 262.855469 36.671875 C 262.972656 36.671875 263.066406 36.578125 263.066406 36.460938 Z M 263.066406 36.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.992188 32.109375 C 262.992188 31.992188 262.898438 31.898438 262.78125 31.898438 C 262.664062 31.898438 262.570312 31.992188 262.570312 32.109375 C 262.570312 32.226562 262.664062 32.320312 262.78125 32.320312 C 262.898438 32.320312 262.992188 32.226562 262.992188 32.109375 Z M 262.992188 32.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.542969 30.285156 C 265.542969 30.167969 265.449219 30.074219 265.332031 30.074219 C 265.214844 30.074219 265.121094 30.167969 265.121094 30.285156 C 265.121094 30.402344 265.214844 30.496094 265.332031 30.496094 C 265.449219 30.496094 265.542969 30.402344 265.542969 30.285156 Z M 265.542969 30.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.410156 31.054688 C 262.410156 30.9375 262.316406 30.84375 262.199219 30.84375 C 262.082031 30.84375 261.988281 30.9375 261.988281 31.054688 C 261.988281 31.171875 262.082031 31.265625 262.199219 31.265625 C 262.316406 31.265625 262.410156 31.171875 262.410156 31.054688 Z M 262.410156 31.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.683594 26.890625 C 260.683594 26.773438 260.589844 26.679688 260.472656 26.679688 C 260.355469 26.679688 260.261719 26.773438 260.261719 26.890625 C 260.261719 27.007812 260.355469 27.101562 260.472656 27.101562 C 260.589844 27.101562 260.683594 27.007812 260.683594 26.890625 Z M 260.683594 26.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.28125 24.007812 C 258.28125 23.890625 258.1875 23.796875 258.070312 23.796875 C 257.953125 23.796875 257.859375 23.890625 257.859375 24.007812 C 257.859375 24.125 257.953125 24.21875 258.070312 24.21875 C 258.1875 24.21875 258.28125 24.125 258.28125 24.007812 Z M 258.28125 24.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.003906 24.839844 C 256.003906 24.722656 255.910156 24.628906 255.792969 24.628906 C 255.675781 24.628906 255.582031 24.722656 255.582031 24.839844 C 255.582031 24.957031 255.675781 25.050781 255.792969 25.050781 C 255.910156 25.050781 256.003906 24.957031 256.003906 24.839844 Z M 256.003906 24.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.09375 24.53125 C 257.09375 24.414062 257 24.320312 256.882812 24.320312 C 256.765625 24.320312 256.671875 24.414062 256.671875 24.53125 C 256.671875 24.648438 256.765625 24.742188 256.882812 24.742188 C 257 24.742188 257.09375 24.648438 257.09375 24.53125 Z M 257.09375 24.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.117188 22.351562 C 258.117188 22.234375 258.023438 22.140625 257.90625 22.140625 C 257.789062 22.140625 257.695312 22.234375 257.695312 22.351562 C 257.695312 22.46875 257.789062 22.5625 257.90625 22.5625 C 258.023438 22.5625 258.117188 22.46875 258.117188 22.351562 Z M 258.117188 22.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.175781 17.859375 C 257.175781 17.742188 257.082031 17.648438 256.964844 17.648438 C 256.847656 17.648438 256.753906 17.742188 256.753906 17.859375 C 256.753906 17.976562 256.847656 18.070312 256.964844 18.070312 C 257.082031 18.070312 257.175781 17.976562 257.175781 17.859375 Z M 257.175781 17.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.332031 20.546875 C 260.332031 20.429688 260.238281 20.335938 260.121094 20.335938 C 260.003906 20.335938 259.910156 20.429688 259.910156 20.546875 C 259.910156 20.664062 260.003906 20.757812 260.121094 20.757812 C 260.238281 20.757812 260.332031 20.664062 260.332031 20.546875 Z M 260.332031 20.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.570312 20.546875 C 263.570312 20.429688 263.476562 20.335938 263.359375 20.335938 C 263.242188 20.335938 263.148438 20.429688 263.148438 20.546875 C 263.148438 20.664062 263.242188 20.757812 263.359375 20.757812 C 263.476562 20.757812 263.570312 20.664062 263.570312 20.546875 Z M 263.570312 20.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.386719 18.269531 C 261.386719 18.152344 261.292969 18.058594 261.175781 18.058594 C 261.058594 18.058594 260.964844 18.152344 260.964844 18.269531 C 260.964844 18.386719 261.058594 18.480469 261.175781 18.480469 C 261.292969 18.480469 261.386719 18.386719 261.386719 18.269531 Z M 261.386719 18.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.902344 17.835938 C 258.902344 17.71875 258.808594 17.625 258.691406 17.625 C 258.574219 17.625 258.480469 17.71875 258.480469 17.835938 C 258.480469 17.953125 258.574219 18.046875 258.691406 18.046875 C 258.808594 18.046875 258.902344 17.953125 258.902344 17.835938 Z M 258.902344 17.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.375 18.589844 C 255.375 18.472656 255.28125 18.378906 255.164062 18.378906 C 255.046875 18.378906 254.953125 18.472656 254.953125 18.589844 C 254.953125 18.707031 255.046875 18.800781 255.164062 18.800781 C 255.28125 18.800781 255.375 18.707031 255.375 18.589844 Z M 255.375 18.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.296875 19.132812 C 258.296875 19.015625 258.203125 18.921875 258.085938 18.921875 C 257.96875 18.921875 257.875 19.015625 257.875 19.132812 C 257.875 19.25 257.96875 19.34375 258.085938 19.34375 C 258.203125 19.34375 258.296875 19.25 258.296875 19.132812 Z M 258.296875 19.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.203125 18.089844 C 258.203125 17.972656 258.109375 17.878906 257.992188 17.878906 C 257.875 17.878906 257.78125 17.972656 257.78125 18.089844 C 257.78125 18.207031 257.875 18.300781 257.992188 18.300781 C 258.109375 18.300781 258.203125 18.207031 258.203125 18.089844 Z M 258.203125 18.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.796875 18.074219 C 259.796875 17.957031 259.703125 17.863281 259.585938 17.863281 C 259.46875 17.863281 259.375 17.957031 259.375 18.074219 C 259.375 18.191406 259.46875 18.285156 259.585938 18.285156 C 259.703125 18.285156 259.796875 18.191406 259.796875 18.074219 Z M 259.796875 18.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.945312 16.425781 C 259.945312 16.308594 259.851562 16.214844 259.734375 16.214844 C 259.617188 16.214844 259.523438 16.308594 259.523438 16.425781 C 259.523438 16.542969 259.617188 16.636719 259.734375 16.636719 C 259.851562 16.636719 259.945312 16.542969 259.945312 16.425781 Z M 259.945312 16.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.761719 15.164062 C 262.761719 15.046875 262.667969 14.953125 262.550781 14.953125 C 262.433594 14.953125 262.339844 15.046875 262.339844 15.164062 C 262.339844 15.28125 262.433594 15.375 262.550781 15.375 C 262.667969 15.375 262.761719 15.28125 262.761719 15.164062 Z M 262.761719 15.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.621094 17.730469 C 260.621094 17.613281 260.527344 17.519531 260.410156 17.519531 C 260.292969 17.519531 260.199219 17.613281 260.199219 17.730469 C 260.199219 17.847656 260.292969 17.941406 260.410156 17.941406 C 260.527344 17.941406 260.621094 17.847656 260.621094 17.730469 Z M 260.621094 17.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.949219 20.105469 C 262.949219 19.988281 262.855469 19.894531 262.738281 19.894531 C 262.621094 19.894531 262.527344 19.988281 262.527344 20.105469 C 262.527344 20.222656 262.621094 20.316406 262.738281 20.316406 C 262.855469 20.316406 262.949219 20.222656 262.949219 20.105469 Z M 262.949219 20.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.109375 19.613281 C 264.109375 19.496094 264.015625 19.402344 263.898438 19.402344 C 263.78125 19.402344 263.6875 19.496094 263.6875 19.613281 C 263.6875 19.730469 263.78125 19.824219 263.898438 19.824219 C 264.015625 19.824219 264.109375 19.730469 264.109375 19.613281 Z M 264.109375 19.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.898438 18.65625 C 264.898438 18.539062 264.804688 18.445312 264.6875 18.445312 C 264.570312 18.445312 264.476562 18.539062 264.476562 18.65625 C 264.476562 18.773438 264.570312 18.867188 264.6875 18.867188 C 264.804688 18.867188 264.898438 18.773438 264.898438 18.65625 Z M 264.898438 18.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.425781 18.132812 C 265.425781 18.015625 265.332031 17.921875 265.214844 17.921875 C 265.097656 17.921875 265.003906 18.015625 265.003906 18.132812 C 265.003906 18.25 265.097656 18.34375 265.214844 18.34375 C 265.332031 18.34375 265.425781 18.25 265.425781 18.132812 Z M 265.425781 18.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.882812 20.15625 C 263.882812 20.039062 263.789062 19.945312 263.671875 19.945312 C 263.554688 19.945312 263.460938 20.039062 263.460938 20.15625 C 263.460938 20.273438 263.554688 20.367188 263.671875 20.367188 C 263.789062 20.367188 263.882812 20.273438 263.882812 20.15625 Z M 263.882812 20.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.433594 15.511719 C 265.433594 15.394531 265.339844 15.300781 265.222656 15.300781 C 265.105469 15.300781 265.011719 15.394531 265.011719 15.511719 C 265.011719 15.628906 265.105469 15.722656 265.222656 15.722656 C 265.339844 15.722656 265.433594 15.628906 265.433594 15.511719 Z M 265.433594 15.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.746094 16.773438 C 264.746094 16.65625 264.652344 16.5625 264.535156 16.5625 C 264.417969 16.5625 264.324219 16.65625 264.324219 16.773438 C 264.324219 16.890625 264.417969 16.984375 264.535156 16.984375 C 264.652344 16.984375 264.746094 16.890625 264.746094 16.773438 Z M 264.746094 16.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.996094 17.464844 C 265.996094 17.347656 265.902344 17.253906 265.785156 17.253906 C 265.667969 17.253906 265.574219 17.347656 265.574219 17.464844 C 265.574219 17.582031 265.667969 17.675781 265.785156 17.675781 C 265.902344 17.675781 265.996094 17.582031 265.996094 17.464844 Z M 265.996094 17.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.589844 19.722656 C 262.589844 19.605469 262.496094 19.511719 262.378906 19.511719 C 262.261719 19.511719 262.167969 19.605469 262.167969 19.722656 C 262.167969 19.839844 262.261719 19.933594 262.378906 19.933594 C 262.496094 19.933594 262.589844 19.839844 262.589844 19.722656 Z M 262.589844 19.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.9375 17.980469 C 263.9375 17.863281 263.84375 17.769531 263.726562 17.769531 C 263.609375 17.769531 263.515625 17.863281 263.515625 17.980469 C 263.515625 18.097656 263.609375 18.191406 263.726562 18.191406 C 263.84375 18.191406 263.9375 18.097656 263.9375 17.980469 Z M 263.9375 17.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.894531 19.773438 C 261.894531 19.65625 261.800781 19.5625 261.683594 19.5625 C 261.566406 19.5625 261.472656 19.65625 261.472656 19.773438 C 261.472656 19.890625 261.566406 19.984375 261.683594 19.984375 C 261.800781 19.984375 261.894531 19.890625 261.894531 19.773438 Z M 261.894531 19.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.199219 19.203125 C 260.199219 19.085938 260.105469 18.992188 259.988281 18.992188 C 259.871094 18.992188 259.777344 19.085938 259.777344 19.203125 C 259.777344 19.320312 259.871094 19.414062 259.988281 19.414062 C 260.105469 19.414062 260.199219 19.320312 260.199219 19.203125 Z M 260.199219 19.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.039062 20.902344 C 261.039062 20.785156 260.945312 20.691406 260.828125 20.691406 C 260.710938 20.691406 260.617188 20.785156 260.617188 20.902344 C 260.617188 21.019531 260.710938 21.113281 260.828125 21.113281 C 260.945312 21.113281 261.039062 21.019531 261.039062 20.902344 Z M 261.039062 20.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.921875 20.71875 C 262.921875 20.601562 262.828125 20.507812 262.710938 20.507812 C 262.59375 20.507812 262.5 20.601562 262.5 20.71875 C 262.5 20.835938 262.59375 20.929688 262.710938 20.929688 C 262.828125 20.929688 262.921875 20.835938 262.921875 20.71875 Z M 262.921875 20.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.085938 20.992188 C 260.085938 20.875 259.992188 20.78125 259.875 20.78125 C 259.757812 20.78125 259.664062 20.875 259.664062 20.992188 C 259.664062 21.109375 259.757812 21.203125 259.875 21.203125 C 259.992188 21.203125 260.085938 21.109375 260.085938 20.992188 Z M 260.085938 20.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.40625 18.613281 C 256.40625 18.496094 256.3125 18.402344 256.195312 18.402344 C 256.078125 18.402344 255.984375 18.496094 255.984375 18.613281 C 255.984375 18.730469 256.078125 18.824219 256.195312 18.824219 C 256.3125 18.824219 256.40625 18.730469 256.40625 18.613281 Z M 256.40625 18.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.046875 18.328125 C 259.046875 18.210938 258.953125 18.117188 258.835938 18.117188 C 258.71875 18.117188 258.625 18.210938 258.625 18.328125 C 258.625 18.445312 258.71875 18.539062 258.835938 18.539062 C 258.953125 18.539062 259.046875 18.445312 259.046875 18.328125 Z M 259.046875 18.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.050781 21.890625 C 258.050781 21.773438 257.957031 21.679688 257.839844 21.679688 C 257.722656 21.679688 257.628906 21.773438 257.628906 21.890625 C 257.628906 22.007812 257.722656 22.101562 257.839844 22.101562 C 257.957031 22.101562 258.050781 22.007812 258.050781 21.890625 Z M 258.050781 21.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.898438 23.972656 C 256.898438 23.855469 256.804688 23.761719 256.6875 23.761719 C 256.570312 23.761719 256.476562 23.855469 256.476562 23.972656 C 256.476562 24.089844 256.570312 24.183594 256.6875 24.183594 C 256.804688 24.183594 256.898438 24.089844 256.898438 23.972656 Z M 256.898438 23.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.554688 25.289062 C 260.554688 25.171875 260.460938 25.078125 260.34375 25.078125 C 260.226562 25.078125 260.132812 25.171875 260.132812 25.289062 C 260.132812 25.40625 260.226562 25.5 260.34375 25.5 C 260.460938 25.5 260.554688 25.40625 260.554688 25.289062 Z M 260.554688 25.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.691406 25.664062 C 258.691406 25.546875 258.597656 25.453125 258.480469 25.453125 C 258.363281 25.453125 258.269531 25.546875 258.269531 25.664062 C 258.269531 25.78125 258.363281 25.875 258.480469 25.875 C 258.597656 25.875 258.691406 25.78125 258.691406 25.664062 Z M 258.691406 25.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.542969 24.039062 C 257.542969 23.921875 257.449219 23.828125 257.332031 23.828125 C 257.214844 23.828125 257.121094 23.921875 257.121094 24.039062 C 257.121094 24.15625 257.214844 24.25 257.332031 24.25 C 257.449219 24.25 257.542969 24.15625 257.542969 24.039062 Z M 257.542969 24.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.640625 25.261719 C 255.640625 25.144531 255.546875 25.050781 255.429688 25.050781 C 255.3125 25.050781 255.21875 25.144531 255.21875 25.261719 C 255.21875 25.378906 255.3125 25.472656 255.429688 25.472656 C 255.546875 25.472656 255.640625 25.378906 255.640625 25.261719 Z M 255.640625 25.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.542969 23.425781 C 252.542969 23.308594 252.449219 23.214844 252.332031 23.214844 C 252.214844 23.214844 252.121094 23.308594 252.121094 23.425781 C 252.121094 23.542969 252.214844 23.636719 252.332031 23.636719 C 252.449219 23.636719 252.542969 23.542969 252.542969 23.425781 Z M 252.542969 23.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.699219 24.949219 C 252.699219 24.832031 252.605469 24.738281 252.488281 24.738281 C 252.371094 24.738281 252.277344 24.832031 252.277344 24.949219 C 252.277344 25.066406 252.371094 25.160156 252.488281 25.160156 C 252.605469 25.160156 252.699219 25.066406 252.699219 24.949219 Z M 252.699219 24.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.214844 23.527344 C 253.214844 23.410156 253.121094 23.316406 253.003906 23.316406 C 252.886719 23.316406 252.792969 23.410156 252.792969 23.527344 C 252.792969 23.644531 252.886719 23.738281 253.003906 23.738281 C 253.121094 23.738281 253.214844 23.644531 253.214844 23.527344 Z M 253.214844 23.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.152344 27.359375 C 255.152344 27.242188 255.058594 27.148438 254.941406 27.148438 C 254.824219 27.148438 254.730469 27.242188 254.730469 27.359375 C 254.730469 27.476562 254.824219 27.570312 254.941406 27.570312 C 255.058594 27.570312 255.152344 27.476562 255.152344 27.359375 Z M 255.152344 27.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.03125 29.304688 C 255.03125 29.1875 254.9375 29.09375 254.820312 29.09375 C 254.703125 29.09375 254.609375 29.1875 254.609375 29.304688 C 254.609375 29.421875 254.703125 29.515625 254.820312 29.515625 C 254.9375 29.515625 255.03125 29.421875 255.03125 29.304688 Z M 255.03125 29.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.179688 26.320312 C 260.179688 26.203125 260.085938 26.109375 259.96875 26.109375 C 259.851562 26.109375 259.757812 26.203125 259.757812 26.320312 C 259.757812 26.4375 259.851562 26.53125 259.96875 26.53125 C 260.085938 26.53125 260.179688 26.4375 260.179688 26.320312 Z M 260.179688 26.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.0625 29.46875 C 264.0625 29.351562 263.96875 29.257812 263.851562 29.257812 C 263.734375 29.257812 263.640625 29.351562 263.640625 29.46875 C 263.640625 29.585938 263.734375 29.679688 263.851562 29.679688 C 263.96875 29.679688 264.0625 29.585938 264.0625 29.46875 Z M 264.0625 29.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.042969 31.519531 C 265.042969 31.402344 264.949219 31.308594 264.832031 31.308594 C 264.714844 31.308594 264.621094 31.402344 264.621094 31.519531 C 264.621094 31.636719 264.714844 31.730469 264.832031 31.730469 C 264.949219 31.730469 265.042969 31.636719 265.042969 31.519531 Z M 265.042969 31.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.273438 34.835938 C 262.273438 34.71875 262.179688 34.625 262.0625 34.625 C 261.945312 34.625 261.851562 34.71875 261.851562 34.835938 C 261.851562 34.953125 261.945312 35.046875 262.0625 35.046875 C 262.179688 35.046875 262.273438 34.953125 262.273438 34.835938 Z M 262.273438 34.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.382812 33.503906 C 265.382812 33.386719 265.289062 33.292969 265.171875 33.292969 C 265.054688 33.292969 264.960938 33.386719 264.960938 33.503906 C 264.960938 33.621094 265.054688 33.714844 265.171875 33.714844 C 265.289062 33.714844 265.382812 33.621094 265.382812 33.503906 Z M 265.382812 33.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.578125 32.1875 C 263.578125 32.070312 263.484375 31.976562 263.367188 31.976562 C 263.25 31.976562 263.15625 32.070312 263.15625 32.1875 C 263.15625 32.304688 263.25 32.398438 263.367188 32.398438 C 263.484375 32.398438 263.578125 32.304688 263.578125 32.1875 Z M 263.578125 32.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.660156 33.703125 C 266.660156 33.585938 266.566406 33.492188 266.449219 33.492188 C 266.332031 33.492188 266.238281 33.585938 266.238281 33.703125 C 266.238281 33.820312 266.332031 33.914062 266.449219 33.914062 C 266.566406 33.914062 266.660156 33.820312 266.660156 33.703125 Z M 266.660156 33.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.039062 34.972656 C 266.039062 34.855469 265.945312 34.761719 265.828125 34.761719 C 265.710938 34.761719 265.617188 34.855469 265.617188 34.972656 C 265.617188 35.089844 265.710938 35.183594 265.828125 35.183594 C 265.945312 35.183594 266.039062 35.089844 266.039062 34.972656 Z M 266.039062 34.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.25 35.339844 C 261.25 35.222656 261.15625 35.128906 261.039062 35.128906 C 260.921875 35.128906 260.828125 35.222656 260.828125 35.339844 C 260.828125 35.457031 260.921875 35.550781 261.039062 35.550781 C 261.15625 35.550781 261.25 35.457031 261.25 35.339844 Z M 261.25 35.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.613281 35.734375 C 261.613281 35.617188 261.519531 35.523438 261.402344 35.523438 C 261.285156 35.523438 261.191406 35.617188 261.191406 35.734375 C 261.191406 35.851562 261.285156 35.945312 261.402344 35.945312 C 261.519531 35.945312 261.613281 35.851562 261.613281 35.734375 Z M 261.613281 35.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.292969 34.777344 C 261.292969 34.660156 261.199219 34.566406 261.082031 34.566406 C 260.964844 34.566406 260.871094 34.660156 260.871094 34.777344 C 260.871094 34.894531 260.964844 34.988281 261.082031 34.988281 C 261.199219 34.988281 261.292969 34.894531 261.292969 34.777344 Z M 261.292969 34.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.722656 38.339844 C 263.722656 38.222656 263.628906 38.128906 263.511719 38.128906 C 263.394531 38.128906 263.300781 38.222656 263.300781 38.339844 C 263.300781 38.457031 263.394531 38.550781 263.511719 38.550781 C 263.628906 38.550781 263.722656 38.457031 263.722656 38.339844 Z M 263.722656 38.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.382812 40.386719 C 265.382812 40.269531 265.289062 40.175781 265.171875 40.175781 C 265.054688 40.175781 264.960938 40.269531 264.960938 40.386719 C 264.960938 40.503906 265.054688 40.597656 265.171875 40.597656 C 265.289062 40.597656 265.382812 40.503906 265.382812 40.386719 Z M 265.382812 40.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.652344 44.066406 C 264.652344 43.949219 264.558594 43.855469 264.441406 43.855469 C 264.324219 43.855469 264.230469 43.949219 264.230469 44.066406 C 264.230469 44.183594 264.324219 44.277344 264.441406 44.277344 C 264.558594 44.277344 264.652344 44.183594 264.652344 44.066406 Z M 264.652344 44.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.445312 44.070312 C 261.445312 43.953125 261.351562 43.859375 261.234375 43.859375 C 261.117188 43.859375 261.023438 43.953125 261.023438 44.070312 C 261.023438 44.1875 261.117188 44.28125 261.234375 44.28125 C 261.351562 44.28125 261.445312 44.1875 261.445312 44.070312 Z M 261.445312 44.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.042969 46.117188 C 264.042969 46 263.949219 45.90625 263.832031 45.90625 C 263.714844 45.90625 263.621094 46 263.621094 46.117188 C 263.621094 46.234375 263.714844 46.328125 263.832031 46.328125 C 263.949219 46.328125 264.042969 46.234375 264.042969 46.117188 Z M 264.042969 46.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.246094 47.457031 C 266.246094 47.339844 266.152344 47.246094 266.035156 47.246094 C 265.917969 47.246094 265.824219 47.339844 265.824219 47.457031 C 265.824219 47.574219 265.917969 47.667969 266.035156 47.667969 C 266.152344 47.667969 266.246094 47.574219 266.246094 47.457031 Z M 266.246094 47.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.632812 45.019531 C 264.632812 44.902344 264.539062 44.808594 264.421875 44.808594 C 264.304688 44.808594 264.210938 44.902344 264.210938 45.019531 C 264.210938 45.136719 264.304688 45.230469 264.421875 45.230469 C 264.539062 45.230469 264.632812 45.136719 264.632812 45.019531 Z M 264.632812 45.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.535156 45.828125 C 262.535156 45.710938 262.441406 45.617188 262.324219 45.617188 C 262.207031 45.617188 262.113281 45.710938 262.113281 45.828125 C 262.113281 45.945312 262.207031 46.039062 262.324219 46.039062 C 262.441406 46.039062 262.535156 45.945312 262.535156 45.828125 Z M 262.535156 45.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.378906 47.449219 C 261.378906 47.332031 261.285156 47.238281 261.167969 47.238281 C 261.050781 47.238281 260.957031 47.332031 260.957031 47.449219 C 260.957031 47.566406 261.050781 47.660156 261.167969 47.660156 C 261.285156 47.660156 261.378906 47.566406 261.378906 47.449219 Z M 261.378906 47.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.492188 49.863281 C 257.492188 49.746094 257.398438 49.652344 257.28125 49.652344 C 257.164062 49.652344 257.070312 49.746094 257.070312 49.863281 C 257.070312 49.980469 257.164062 50.074219 257.28125 50.074219 C 257.398438 50.074219 257.492188 49.980469 257.492188 49.863281 Z M 257.492188 49.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.761719 53.378906 C 260.761719 53.261719 260.667969 53.167969 260.550781 53.167969 C 260.433594 53.167969 260.339844 53.261719 260.339844 53.378906 C 260.339844 53.496094 260.433594 53.589844 260.550781 53.589844 C 260.667969 53.589844 260.761719 53.496094 260.761719 53.378906 Z M 260.761719 53.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.582031 54.195312 C 260.582031 54.078125 260.488281 53.984375 260.371094 53.984375 C 260.253906 53.984375 260.160156 54.078125 260.160156 54.195312 C 260.160156 54.3125 260.253906 54.40625 260.371094 54.40625 C 260.488281 54.40625 260.582031 54.3125 260.582031 54.195312 Z M 260.582031 54.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.296875 59.066406 C 261.296875 58.949219 261.203125 58.855469 261.085938 58.855469 C 260.96875 58.855469 260.875 58.949219 260.875 59.066406 C 260.875 59.183594 260.96875 59.277344 261.085938 59.277344 C 261.203125 59.277344 261.296875 59.183594 261.296875 59.066406 Z M 261.296875 59.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.105469 62.050781 C 260.105469 61.933594 260.011719 61.839844 259.894531 61.839844 C 259.777344 61.839844 259.683594 61.933594 259.683594 62.050781 C 259.683594 62.167969 259.777344 62.261719 259.894531 62.261719 C 260.011719 62.261719 260.105469 62.167969 260.105469 62.050781 Z M 260.105469 62.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.9375 62.125 C 257.9375 62.007812 257.84375 61.914062 257.726562 61.914062 C 257.609375 61.914062 257.515625 62.007812 257.515625 62.125 C 257.515625 62.242188 257.609375 62.335938 257.726562 62.335938 C 257.84375 62.335938 257.9375 62.242188 257.9375 62.125 Z M 257.9375 62.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.359375 63.800781 C 259.359375 63.683594 259.265625 63.589844 259.148438 63.589844 C 259.03125 63.589844 258.9375 63.683594 258.9375 63.800781 C 258.9375 63.917969 259.03125 64.011719 259.148438 64.011719 C 259.265625 64.011719 259.359375 63.917969 259.359375 63.800781 Z M 259.359375 63.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.132812 60.945312 C 259.132812 60.828125 259.039062 60.734375 258.921875 60.734375 C 258.804688 60.734375 258.710938 60.828125 258.710938 60.945312 C 258.710938 61.0625 258.804688 61.15625 258.921875 61.15625 C 259.039062 61.15625 259.132812 61.0625 259.132812 60.945312 Z M 259.132812 60.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.222656 55.894531 C 256.222656 55.777344 256.128906 55.683594 256.011719 55.683594 C 255.894531 55.683594 255.800781 55.777344 255.800781 55.894531 C 255.800781 56.011719 255.894531 56.105469 256.011719 56.105469 C 256.128906 56.105469 256.222656 56.011719 256.222656 55.894531 Z M 256.222656 55.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.082031 55.230469 C 254.082031 55.113281 253.988281 55.019531 253.871094 55.019531 C 253.753906 55.019531 253.660156 55.113281 253.660156 55.230469 C 253.660156 55.347656 253.753906 55.441406 253.871094 55.441406 C 253.988281 55.441406 254.082031 55.347656 254.082031 55.230469 Z M 254.082031 55.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.757812 56.390625 C 248.757812 56.273438 248.664062 56.179688 248.546875 56.179688 C 248.429688 56.179688 248.335938 56.273438 248.335938 56.390625 C 248.335938 56.507812 248.429688 56.601562 248.546875 56.601562 C 248.664062 56.601562 248.757812 56.507812 248.757812 56.390625 Z M 248.757812 56.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.804688 54.617188 C 246.804688 54.5 246.710938 54.40625 246.59375 54.40625 C 246.476562 54.40625 246.382812 54.5 246.382812 54.617188 C 246.382812 54.734375 246.476562 54.828125 246.59375 54.828125 C 246.710938 54.828125 246.804688 54.734375 246.804688 54.617188 Z M 246.804688 54.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.496094 54.359375 C 246.496094 54.242188 246.402344 54.148438 246.285156 54.148438 C 246.167969 54.148438 246.074219 54.242188 246.074219 54.359375 C 246.074219 54.476562 246.167969 54.570312 246.285156 54.570312 C 246.402344 54.570312 246.496094 54.476562 246.496094 54.359375 Z M 246.496094 54.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.683594 54.390625 C 246.683594 54.273438 246.589844 54.179688 246.472656 54.179688 C 246.355469 54.179688 246.261719 54.273438 246.261719 54.390625 C 246.261719 54.507812 246.355469 54.601562 246.472656 54.601562 C 246.589844 54.601562 246.683594 54.507812 246.683594 54.390625 Z M 246.683594 54.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.058594 58.574219 C 247.058594 58.457031 246.964844 58.363281 246.847656 58.363281 C 246.730469 58.363281 246.636719 58.457031 246.636719 58.574219 C 246.636719 58.691406 246.730469 58.785156 246.847656 58.785156 C 246.964844 58.785156 247.058594 58.691406 247.058594 58.574219 Z M 247.058594 58.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.089844 58.65625 C 246.089844 58.539062 245.996094 58.445312 245.878906 58.445312 C 245.761719 58.445312 245.667969 58.539062 245.667969 58.65625 C 245.667969 58.773438 245.761719 58.867188 245.878906 58.867188 C 245.996094 58.867188 246.089844 58.773438 246.089844 58.65625 Z M 246.089844 58.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.792969 59.125 C 244.792969 59.007812 244.699219 58.914062 244.582031 58.914062 C 244.464844 58.914062 244.371094 59.007812 244.371094 59.125 C 244.371094 59.242188 244.464844 59.335938 244.582031 59.335938 C 244.699219 59.335938 244.792969 59.242188 244.792969 59.125 Z M 244.792969 59.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.515625 59.316406 C 247.515625 59.199219 247.421875 59.105469 247.304688 59.105469 C 247.1875 59.105469 247.09375 59.199219 247.09375 59.316406 C 247.09375 59.433594 247.1875 59.527344 247.304688 59.527344 C 247.421875 59.527344 247.515625 59.433594 247.515625 59.316406 Z M 247.515625 59.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.265625 61.972656 C 245.265625 61.855469 245.171875 61.761719 245.054688 61.761719 C 244.9375 61.761719 244.84375 61.855469 244.84375 61.972656 C 244.84375 62.089844 244.9375 62.183594 245.054688 62.183594 C 245.171875 62.183594 245.265625 62.089844 245.265625 61.972656 Z M 245.265625 61.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248 63.421875 C 248 63.304688 247.90625 63.210938 247.789062 63.210938 C 247.671875 63.210938 247.578125 63.304688 247.578125 63.421875 C 247.578125 63.539062 247.671875 63.632812 247.789062 63.632812 C 247.90625 63.632812 248 63.539062 248 63.421875 Z M 248 63.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.714844 62.960938 C 248.714844 62.84375 248.621094 62.75 248.503906 62.75 C 248.386719 62.75 248.292969 62.84375 248.292969 62.960938 C 248.292969 63.078125 248.386719 63.171875 248.503906 63.171875 C 248.621094 63.171875 248.714844 63.078125 248.714844 62.960938 Z M 248.714844 62.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.769531 65.214844 C 251.769531 65.097656 251.675781 65.003906 251.558594 65.003906 C 251.441406 65.003906 251.347656 65.097656 251.347656 65.214844 C 251.347656 65.332031 251.441406 65.425781 251.558594 65.425781 C 251.675781 65.425781 251.769531 65.332031 251.769531 65.214844 Z M 251.769531 65.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.191406 63.585938 C 251.191406 63.46875 251.097656 63.375 250.980469 63.375 C 250.863281 63.375 250.769531 63.46875 250.769531 63.585938 C 250.769531 63.703125 250.863281 63.796875 250.980469 63.796875 C 251.097656 63.796875 251.191406 63.703125 251.191406 63.585938 Z M 251.191406 63.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.730469 66.792969 C 249.730469 66.675781 249.636719 66.582031 249.519531 66.582031 C 249.402344 66.582031 249.308594 66.675781 249.308594 66.792969 C 249.308594 66.910156 249.402344 67.003906 249.519531 67.003906 C 249.636719 67.003906 249.730469 66.910156 249.730469 66.792969 Z M 249.730469 66.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.078125 69.246094 C 251.078125 69.128906 250.984375 69.035156 250.867188 69.035156 C 250.75 69.035156 250.65625 69.128906 250.65625 69.246094 C 250.65625 69.363281 250.75 69.457031 250.867188 69.457031 C 250.984375 69.457031 251.078125 69.363281 251.078125 69.246094 Z M 251.078125 69.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.671875 67.375 C 249.671875 67.257812 249.578125 67.164062 249.460938 67.164062 C 249.34375 67.164062 249.25 67.257812 249.25 67.375 C 249.25 67.492188 249.34375 67.585938 249.460938 67.585938 C 249.578125 67.585938 249.671875 67.492188 249.671875 67.375 Z M 249.671875 67.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.367188 69.105469 C 252.367188 68.988281 252.273438 68.894531 252.15625 68.894531 C 252.039062 68.894531 251.945312 68.988281 251.945312 69.105469 C 251.945312 69.222656 252.039062 69.316406 252.15625 69.316406 C 252.273438 69.316406 252.367188 69.222656 252.367188 69.105469 Z M 252.367188 69.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.648438 69.867188 C 251.648438 69.75 251.554688 69.65625 251.4375 69.65625 C 251.320312 69.65625 251.226562 69.75 251.226562 69.867188 C 251.226562 69.984375 251.320312 70.078125 251.4375 70.078125 C 251.554688 70.078125 251.648438 69.984375 251.648438 69.867188 Z M 251.648438 69.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.035156 72.152344 C 253.035156 72.035156 252.941406 71.941406 252.824219 71.941406 C 252.707031 71.941406 252.613281 72.035156 252.613281 72.152344 C 252.613281 72.269531 252.707031 72.363281 252.824219 72.363281 C 252.941406 72.363281 253.035156 72.269531 253.035156 72.152344 Z M 253.035156 72.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.789062 71.671875 C 254.789062 71.554688 254.695312 71.460938 254.578125 71.460938 C 254.460938 71.460938 254.367188 71.554688 254.367188 71.671875 C 254.367188 71.789062 254.460938 71.882812 254.578125 71.882812 C 254.695312 71.882812 254.789062 71.789062 254.789062 71.671875 Z M 254.789062 71.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.277344 71.046875 C 257.277344 70.929688 257.183594 70.835938 257.066406 70.835938 C 256.949219 70.835938 256.855469 70.929688 256.855469 71.046875 C 256.855469 71.164062 256.949219 71.257812 257.066406 71.257812 C 257.183594 71.257812 257.277344 71.164062 257.277344 71.046875 Z M 257.277344 71.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.71875 73.003906 C 259.71875 72.886719 259.625 72.792969 259.507812 72.792969 C 259.390625 72.792969 259.296875 72.886719 259.296875 73.003906 C 259.296875 73.121094 259.390625 73.214844 259.507812 73.214844 C 259.625 73.214844 259.71875 73.121094 259.71875 73.003906 Z M 259.71875 73.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.582031 75.515625 C 263.582031 75.398438 263.488281 75.304688 263.371094 75.304688 C 263.253906 75.304688 263.160156 75.398438 263.160156 75.515625 C 263.160156 75.632812 263.253906 75.726562 263.371094 75.726562 C 263.488281 75.726562 263.582031 75.632812 263.582031 75.515625 Z M 263.582031 75.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.175781 73.296875 C 263.175781 73.179688 263.082031 73.085938 262.964844 73.085938 C 262.847656 73.085938 262.753906 73.179688 262.753906 73.296875 C 262.753906 73.414062 262.847656 73.507812 262.964844 73.507812 C 263.082031 73.507812 263.175781 73.414062 263.175781 73.296875 Z M 263.175781 73.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.835938 72.746094 C 263.835938 72.628906 263.742188 72.535156 263.625 72.535156 C 263.507812 72.535156 263.414062 72.628906 263.414062 72.746094 C 263.414062 72.863281 263.507812 72.957031 263.625 72.957031 C 263.742188 72.957031 263.835938 72.863281 263.835938 72.746094 Z M 263.835938 72.746094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.675781 74.753906 C 261.675781 74.636719 261.582031 74.542969 261.464844 74.542969 C 261.347656 74.542969 261.253906 74.636719 261.253906 74.753906 C 261.253906 74.871094 261.347656 74.964844 261.464844 74.964844 C 261.582031 74.964844 261.675781 74.871094 261.675781 74.753906 Z M 261.675781 74.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.765625 74.351562 C 260.765625 74.234375 260.671875 74.140625 260.554688 74.140625 C 260.4375 74.140625 260.34375 74.234375 260.34375 74.351562 C 260.34375 74.46875 260.4375 74.5625 260.554688 74.5625 C 260.671875 74.5625 260.765625 74.46875 260.765625 74.351562 Z M 260.765625 74.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.632812 77.566406 C 257.632812 77.449219 257.539062 77.355469 257.421875 77.355469 C 257.304688 77.355469 257.210938 77.449219 257.210938 77.566406 C 257.210938 77.683594 257.304688 77.777344 257.421875 77.777344 C 257.539062 77.777344 257.632812 77.683594 257.632812 77.566406 Z M 257.632812 77.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.609375 79.40625 C 260.609375 79.289062 260.515625 79.195312 260.398438 79.195312 C 260.28125 79.195312 260.1875 79.289062 260.1875 79.40625 C 260.1875 79.523438 260.28125 79.617188 260.398438 79.617188 C 260.515625 79.617188 260.609375 79.523438 260.609375 79.40625 Z M 260.609375 79.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.214844 81.476562 C 263.214844 81.359375 263.121094 81.265625 263.003906 81.265625 C 262.886719 81.265625 262.792969 81.359375 262.792969 81.476562 C 262.792969 81.59375 262.886719 81.6875 263.003906 81.6875 C 263.121094 81.6875 263.214844 81.59375 263.214844 81.476562 Z M 263.214844 81.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.445312 83.292969 C 265.445312 83.175781 265.351562 83.082031 265.234375 83.082031 C 265.117188 83.082031 265.023438 83.175781 265.023438 83.292969 C 265.023438 83.410156 265.117188 83.503906 265.234375 83.503906 C 265.351562 83.503906 265.445312 83.410156 265.445312 83.292969 Z M 265.445312 83.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 269.199219 84.164062 C 269.199219 84.046875 269.105469 83.953125 268.988281 83.953125 C 268.871094 83.953125 268.777344 84.046875 268.777344 84.164062 C 268.777344 84.28125 268.871094 84.375 268.988281 84.375 C 269.105469 84.375 269.199219 84.28125 269.199219 84.164062 Z M 269.199219 84.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.292969 85.960938 C 268.292969 85.84375 268.199219 85.75 268.082031 85.75 C 267.964844 85.75 267.871094 85.84375 267.871094 85.960938 C 267.871094 86.078125 267.964844 86.171875 268.082031 86.171875 C 268.199219 86.171875 268.292969 86.078125 268.292969 85.960938 Z M 268.292969 85.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 269.421875 90.625 C 269.421875 90.507812 269.328125 90.414062 269.210938 90.414062 C 269.09375 90.414062 269 90.507812 269 90.625 C 269 90.742188 269.09375 90.835938 269.210938 90.835938 C 269.328125 90.835938 269.421875 90.742188 269.421875 90.625 Z M 269.421875 90.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 272.917969 94.675781 C 272.917969 94.558594 272.824219 94.464844 272.707031 94.464844 C 272.589844 94.464844 272.496094 94.558594 272.496094 94.675781 C 272.496094 94.792969 272.589844 94.886719 272.707031 94.886719 C 272.824219 94.886719 272.917969 94.792969 272.917969 94.675781 Z M 272.917969 94.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.132812 92.753906 C 277.132812 92.636719 277.039062 92.542969 276.921875 92.542969 C 276.804688 92.542969 276.710938 92.636719 276.710938 92.753906 C 276.710938 92.871094 276.804688 92.964844 276.921875 92.964844 C 277.039062 92.964844 277.132812 92.871094 277.132812 92.753906 Z M 277.132812 92.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.503906 93.199219 C 273.503906 93.082031 273.410156 92.988281 273.292969 92.988281 C 273.175781 92.988281 273.082031 93.082031 273.082031 93.199219 C 273.082031 93.316406 273.175781 93.410156 273.292969 93.410156 C 273.410156 93.410156 273.503906 93.316406 273.503906 93.199219 Z M 273.503906 93.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 272.890625 90.84375 C 272.890625 90.726562 272.796875 90.632812 272.679688 90.632812 C 272.5625 90.632812 272.46875 90.726562 272.46875 90.84375 C 272.46875 90.960938 272.5625 91.054688 272.679688 91.054688 C 272.796875 91.054688 272.890625 90.960938 272.890625 90.84375 Z M 272.890625 90.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.84375 90.132812 C 277.84375 90.015625 277.75 89.921875 277.632812 89.921875 C 277.515625 89.921875 277.421875 90.015625 277.421875 90.132812 C 277.421875 90.25 277.515625 90.34375 277.632812 90.34375 C 277.75 90.34375 277.84375 90.25 277.84375 90.132812 Z M 277.84375 90.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.980469 86.441406 C 275.980469 86.324219 275.886719 86.230469 275.769531 86.230469 C 275.652344 86.230469 275.558594 86.324219 275.558594 86.441406 C 275.558594 86.558594 275.652344 86.652344 275.769531 86.652344 C 275.886719 86.652344 275.980469 86.558594 275.980469 86.441406 Z M 275.980469 86.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.039062 87.96875 C 275.039062 87.851562 274.945312 87.757812 274.828125 87.757812 C 274.710938 87.757812 274.617188 87.851562 274.617188 87.96875 C 274.617188 88.085938 274.710938 88.179688 274.828125 88.179688 C 274.945312 88.179688 275.039062 88.085938 275.039062 87.96875 Z M 275.039062 87.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 278.726562 85.121094 C 278.726562 85.003906 278.632812 84.910156 278.515625 84.910156 C 278.398438 84.910156 278.304688 85.003906 278.304688 85.121094 C 278.304688 85.238281 278.398438 85.332031 278.515625 85.332031 C 278.632812 85.332031 278.726562 85.238281 278.726562 85.121094 Z M 278.726562 85.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 278.566406 82.402344 C 278.566406 82.285156 278.472656 82.191406 278.355469 82.191406 C 278.238281 82.191406 278.144531 82.285156 278.144531 82.402344 C 278.144531 82.519531 278.238281 82.613281 278.355469 82.613281 C 278.472656 82.613281 278.566406 82.519531 278.566406 82.402344 Z M 278.566406 82.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.078125 79.882812 C 276.078125 79.765625 275.984375 79.671875 275.867188 79.671875 C 275.75 79.671875 275.65625 79.765625 275.65625 79.882812 C 275.65625 80 275.75 80.09375 275.867188 80.09375 C 275.984375 80.09375 276.078125 80 276.078125 79.882812 Z M 276.078125 79.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 278.914062 77.710938 C 278.914062 77.59375 278.820312 77.5 278.703125 77.5 C 278.585938 77.5 278.492188 77.59375 278.492188 77.710938 C 278.492188 77.828125 278.585938 77.921875 278.703125 77.921875 C 278.820312 77.921875 278.914062 77.828125 278.914062 77.710938 Z M 278.914062 77.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 284.105469 80.394531 C 284.105469 80.277344 284.011719 80.183594 283.894531 80.183594 C 283.777344 80.183594 283.683594 80.277344 283.683594 80.394531 C 283.683594 80.511719 283.777344 80.605469 283.894531 80.605469 C 284.011719 80.605469 284.105469 80.511719 284.105469 80.394531 Z M 284.105469 80.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 284.082031 79.574219 C 284.082031 79.457031 283.988281 79.363281 283.871094 79.363281 C 283.753906 79.363281 283.660156 79.457031 283.660156 79.574219 C 283.660156 79.691406 283.753906 79.785156 283.871094 79.785156 C 283.988281 79.785156 284.082031 79.691406 284.082031 79.574219 Z M 284.082031 79.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 284.382812 78.125 C 284.382812 78.007812 284.289062 77.914062 284.171875 77.914062 C 284.054688 77.914062 283.960938 78.007812 283.960938 78.125 C 283.960938 78.242188 284.054688 78.335938 284.171875 78.335938 C 284.289062 78.335938 284.382812 78.242188 284.382812 78.125 Z M 284.382812 78.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 284.355469 76.246094 C 284.355469 76.128906 284.261719 76.035156 284.144531 76.035156 C 284.027344 76.035156 283.933594 76.128906 283.933594 76.246094 C 283.933594 76.363281 284.027344 76.457031 284.144531 76.457031 C 284.261719 76.457031 284.355469 76.363281 284.355469 76.246094 Z M 284.355469 76.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 284.652344 78.207031 C 284.652344 78.089844 284.558594 77.996094 284.441406 77.996094 C 284.324219 77.996094 284.230469 78.089844 284.230469 78.207031 C 284.230469 78.324219 284.324219 78.417969 284.441406 78.417969 C 284.558594 78.417969 284.652344 78.324219 284.652344 78.207031 Z M 284.652344 78.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 280.496094 75.375 C 280.496094 75.257812 280.402344 75.164062 280.285156 75.164062 C 280.167969 75.164062 280.074219 75.257812 280.074219 75.375 C 280.074219 75.492188 280.167969 75.585938 280.285156 75.585938 C 280.402344 75.585938 280.496094 75.492188 280.496094 75.375 Z M 280.496094 75.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 279.808594 76.632812 C 279.808594 76.515625 279.714844 76.421875 279.597656 76.421875 C 279.480469 76.421875 279.386719 76.515625 279.386719 76.632812 C 279.386719 76.75 279.480469 76.84375 279.597656 76.84375 C 279.714844 76.84375 279.808594 76.75 279.808594 76.632812 Z M 279.808594 76.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 278.46875 73.734375 C 278.46875 73.617188 278.375 73.523438 278.257812 73.523438 C 278.140625 73.523438 278.046875 73.617188 278.046875 73.734375 C 278.046875 73.851562 278.140625 73.945312 278.257812 73.945312 C 278.375 73.945312 278.46875 73.851562 278.46875 73.734375 Z M 278.46875 73.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.886719 77.871094 C 276.886719 77.753906 276.792969 77.660156 276.675781 77.660156 C 276.558594 77.660156 276.464844 77.753906 276.464844 77.871094 C 276.464844 77.988281 276.558594 78.082031 276.675781 78.082031 C 276.792969 78.082031 276.886719 77.988281 276.886719 77.871094 Z M 276.886719 77.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.347656 76.875 C 277.347656 76.757812 277.253906 76.664062 277.136719 76.664062 C 277.019531 76.664062 276.925781 76.757812 276.925781 76.875 C 276.925781 76.992188 277.019531 77.085938 277.136719 77.085938 C 277.253906 77.085938 277.347656 76.992188 277.347656 76.875 Z M 277.347656 76.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.207031 75.433594 C 277.207031 75.316406 277.113281 75.222656 276.996094 75.222656 C 276.878906 75.222656 276.785156 75.316406 276.785156 75.433594 C 276.785156 75.550781 276.878906 75.644531 276.996094 75.644531 C 277.113281 75.644531 277.207031 75.550781 277.207031 75.433594 Z M 277.207031 75.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.070312 74.441406 C 277.070312 74.324219 276.976562 74.230469 276.859375 74.230469 C 276.742188 74.230469 276.648438 74.324219 276.648438 74.441406 C 276.648438 74.558594 276.742188 74.652344 276.859375 74.652344 C 276.976562 74.652344 277.070312 74.558594 277.070312 74.441406 Z M 277.070312 74.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.472656 76.238281 C 276.472656 76.121094 276.378906 76.027344 276.261719 76.027344 C 276.144531 76.027344 276.050781 76.121094 276.050781 76.238281 C 276.050781 76.355469 276.144531 76.449219 276.261719 76.449219 C 276.378906 76.449219 276.472656 76.355469 276.472656 76.238281 Z M 276.472656 76.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.292969 73.175781 C 276.292969 73.058594 276.199219 72.964844 276.082031 72.964844 C 275.964844 72.964844 275.871094 73.058594 275.871094 73.175781 C 275.871094 73.292969 275.964844 73.386719 276.082031 73.386719 C 276.199219 73.386719 276.292969 73.292969 276.292969 73.175781 Z M 276.292969 73.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.167969 72.121094 C 273.167969 72.003906 273.074219 71.910156 272.957031 71.910156 C 272.839844 71.910156 272.746094 72.003906 272.746094 72.121094 C 272.746094 72.238281 272.839844 72.332031 272.957031 72.332031 C 273.074219 72.332031 273.167969 72.238281 273.167969 72.121094 Z M 273.167969 72.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 272.808594 70.988281 C 272.808594 70.871094 272.714844 70.777344 272.597656 70.777344 C 272.480469 70.777344 272.386719 70.871094 272.386719 70.988281 C 272.386719 71.105469 272.480469 71.199219 272.597656 71.199219 C 272.714844 71.199219 272.808594 71.105469 272.808594 70.988281 Z M 272.808594 70.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.15625 72.472656 C 277.15625 72.355469 277.0625 72.261719 276.945312 72.261719 C 276.828125 72.261719 276.734375 72.355469 276.734375 72.472656 C 276.734375 72.589844 276.828125 72.683594 276.945312 72.683594 C 277.0625 72.683594 277.15625 72.589844 277.15625 72.472656 Z M 277.15625 72.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.875 71.953125 C 274.875 71.835938 274.78125 71.742188 274.664062 71.742188 C 274.546875 71.742188 274.453125 71.835938 274.453125 71.953125 C 274.453125 72.070312 274.546875 72.164062 274.664062 72.164062 C 274.78125 72.164062 274.875 72.070312 274.875 71.953125 Z M 274.875 71.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.636719 71.589844 C 275.636719 71.472656 275.542969 71.378906 275.425781 71.378906 C 275.308594 71.378906 275.214844 71.472656 275.214844 71.589844 C 275.214844 71.707031 275.308594 71.800781 275.425781 71.800781 C 275.542969 71.800781 275.636719 71.707031 275.636719 71.589844 Z M 275.636719 71.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.769531 72.253906 C 275.769531 72.136719 275.675781 72.042969 275.558594 72.042969 C 275.441406 72.042969 275.347656 72.136719 275.347656 72.253906 C 275.347656 72.371094 275.441406 72.464844 275.558594 72.464844 C 275.675781 72.464844 275.769531 72.371094 275.769531 72.253906 Z M 275.769531 72.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.273438 71.777344 C 273.273438 71.660156 273.179688 71.566406 273.0625 71.566406 C 272.945312 71.566406 272.851562 71.660156 272.851562 71.777344 C 272.851562 71.894531 272.945312 71.988281 273.0625 71.988281 C 273.179688 71.988281 273.273438 71.894531 273.273438 71.777344 Z M 273.273438 71.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 279.875 71.113281 C 279.875 70.996094 279.78125 70.902344 279.664062 70.902344 C 279.546875 70.902344 279.453125 70.996094 279.453125 71.113281 C 279.453125 71.230469 279.546875 71.324219 279.664062 71.324219 C 279.78125 71.324219 279.875 71.230469 279.875 71.113281 Z M 279.875 71.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 280.804688 70.3125 C 280.804688 70.195312 280.710938 70.101562 280.59375 70.101562 C 280.476562 70.101562 280.382812 70.195312 280.382812 70.3125 C 280.382812 70.429688 280.476562 70.523438 280.59375 70.523438 C 280.710938 70.523438 280.804688 70.429688 280.804688 70.3125 Z M 280.804688 70.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 283.324219 70.574219 C 283.324219 70.457031 283.230469 70.363281 283.113281 70.363281 C 282.996094 70.363281 282.902344 70.457031 282.902344 70.574219 C 282.902344 70.691406 282.996094 70.785156 283.113281 70.785156 C 283.230469 70.785156 283.324219 70.691406 283.324219 70.574219 Z M 283.324219 70.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 282.988281 68.128906 C 282.988281 68.011719 282.894531 67.917969 282.777344 67.917969 C 282.660156 67.917969 282.566406 68.011719 282.566406 68.128906 C 282.566406 68.246094 282.660156 68.339844 282.777344 68.339844 C 282.894531 68.339844 282.988281 68.246094 282.988281 68.128906 Z M 282.988281 68.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 284.015625 68.945312 C 284.015625 68.828125 283.921875 68.734375 283.804688 68.734375 C 283.6875 68.734375 283.59375 68.828125 283.59375 68.945312 C 283.59375 69.0625 283.6875 69.15625 283.804688 69.15625 C 283.921875 69.15625 284.015625 69.0625 284.015625 68.945312 Z M 284.015625 68.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 282.277344 69.023438 C 282.277344 68.90625 282.183594 68.8125 282.066406 68.8125 C 281.949219 68.8125 281.855469 68.90625 281.855469 69.023438 C 281.855469 69.140625 281.949219 69.234375 282.066406 69.234375 C 282.183594 69.234375 282.277344 69.140625 282.277344 69.023438 Z M 282.277344 69.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 284.492188 67.929688 C 284.492188 67.8125 284.398438 67.71875 284.28125 67.71875 C 284.164062 67.71875 284.070312 67.8125 284.070312 67.929688 C 284.070312 68.046875 284.164062 68.140625 284.28125 68.140625 C 284.398438 68.140625 284.492188 68.046875 284.492188 67.929688 Z M 284.492188 67.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 283.550781 70.210938 C 283.550781 70.09375 283.457031 70 283.339844 70 C 283.222656 70 283.128906 70.09375 283.128906 70.210938 C 283.128906 70.328125 283.222656 70.421875 283.339844 70.421875 C 283.457031 70.421875 283.550781 70.328125 283.550781 70.210938 Z M 283.550781 70.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 282.667969 69.929688 C 282.667969 69.8125 282.574219 69.71875 282.457031 69.71875 C 282.339844 69.71875 282.246094 69.8125 282.246094 69.929688 C 282.246094 70.046875 282.339844 70.140625 282.457031 70.140625 C 282.574219 70.140625 282.667969 70.046875 282.667969 69.929688 Z M 282.667969 69.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 283.789062 75.09375 C 283.789062 74.976562 283.695312 74.882812 283.578125 74.882812 C 283.460938 74.882812 283.367188 74.976562 283.367188 75.09375 C 283.367188 75.210938 283.460938 75.304688 283.578125 75.304688 C 283.695312 75.304688 283.789062 75.210938 283.789062 75.09375 Z M 283.789062 75.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 285.371094 74.394531 C 285.371094 74.277344 285.277344 74.183594 285.160156 74.183594 C 285.042969 74.183594 284.949219 74.277344 284.949219 74.394531 C 284.949219 74.511719 285.042969 74.605469 285.160156 74.605469 C 285.277344 74.605469 285.371094 74.511719 285.371094 74.394531 Z M 285.371094 74.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 285.933594 76.675781 C 285.933594 76.558594 285.839844 76.464844 285.722656 76.464844 C 285.605469 76.464844 285.511719 76.558594 285.511719 76.675781 C 285.511719 76.792969 285.605469 76.886719 285.722656 76.886719 C 285.839844 76.886719 285.933594 76.792969 285.933594 76.675781 Z M 285.933594 76.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 285.726562 76.042969 C 285.726562 75.925781 285.632812 75.832031 285.515625 75.832031 C 285.398438 75.832031 285.304688 75.925781 285.304688 76.042969 C 285.304688 76.160156 285.398438 76.253906 285.515625 76.253906 C 285.632812 76.253906 285.726562 76.160156 285.726562 76.042969 Z M 285.726562 76.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 287.890625 76.605469 C 287.890625 76.488281 287.796875 76.394531 287.679688 76.394531 C 287.5625 76.394531 287.46875 76.488281 287.46875 76.605469 C 287.46875 76.722656 287.5625 76.816406 287.679688 76.816406 C 287.796875 76.816406 287.890625 76.722656 287.890625 76.605469 Z M 287.890625 76.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 287.378906 75.398438 C 287.378906 75.28125 287.285156 75.1875 287.167969 75.1875 C 287.050781 75.1875 286.957031 75.28125 286.957031 75.398438 C 286.957031 75.515625 287.050781 75.609375 287.167969 75.609375 C 287.285156 75.609375 287.378906 75.515625 287.378906 75.398438 Z M 287.378906 75.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 291.277344 74.679688 C 291.277344 74.5625 291.183594 74.46875 291.066406 74.46875 C 290.949219 74.46875 290.855469 74.5625 290.855469 74.679688 C 290.855469 74.796875 290.949219 74.890625 291.066406 74.890625 C 291.183594 74.890625 291.277344 74.796875 291.277344 74.679688 Z M 291.277344 74.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 293.496094 73.738281 C 293.496094 73.621094 293.402344 73.527344 293.285156 73.527344 C 293.167969 73.527344 293.074219 73.621094 293.074219 73.738281 C 293.074219 73.855469 293.167969 73.949219 293.285156 73.949219 C 293.402344 73.949219 293.496094 73.855469 293.496094 73.738281 Z M 293.496094 73.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 293.933594 73.058594 C 293.933594 72.941406 293.839844 72.847656 293.722656 72.847656 C 293.605469 72.847656 293.511719 72.941406 293.511719 73.058594 C 293.511719 73.175781 293.605469 73.269531 293.722656 73.269531 C 293.839844 73.269531 293.933594 73.175781 293.933594 73.058594 Z M 293.933594 73.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 298.960938 74.199219 C 298.960938 74.082031 298.867188 73.988281 298.75 73.988281 C 298.632812 73.988281 298.539062 74.082031 298.539062 74.199219 C 298.539062 74.316406 298.632812 74.410156 298.75 74.410156 C 298.867188 74.410156 298.960938 74.316406 298.960938 74.199219 Z M 298.960938 74.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 302.878906 74.558594 C 302.878906 74.441406 302.785156 74.347656 302.667969 74.347656 C 302.550781 74.347656 302.457031 74.441406 302.457031 74.558594 C 302.457031 74.675781 302.550781 74.769531 302.667969 74.769531 C 302.785156 74.769531 302.878906 74.675781 302.878906 74.558594 Z M 302.878906 74.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 300.5625 75.277344 C 300.5625 75.160156 300.46875 75.066406 300.351562 75.066406 C 300.234375 75.066406 300.140625 75.160156 300.140625 75.277344 C 300.140625 75.394531 300.234375 75.488281 300.351562 75.488281 C 300.46875 75.488281 300.5625 75.394531 300.5625 75.277344 Z M 300.5625 75.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 296.3125 78.316406 C 296.3125 78.199219 296.21875 78.105469 296.101562 78.105469 C 295.984375 78.105469 295.890625 78.199219 295.890625 78.316406 C 295.890625 78.433594 295.984375 78.527344 296.101562 78.527344 C 296.21875 78.527344 296.3125 78.433594 296.3125 78.316406 Z M 296.3125 78.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 297.328125 79.15625 C 297.328125 79.039062 297.234375 78.945312 297.117188 78.945312 C 297 78.945312 296.90625 79.039062 296.90625 79.15625 C 296.90625 79.273438 297 79.367188 297.117188 79.367188 C 297.234375 79.367188 297.328125 79.273438 297.328125 79.15625 Z M 297.328125 79.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 300.066406 75.109375 C 300.066406 74.992188 299.972656 74.898438 299.855469 74.898438 C 299.738281 74.898438 299.644531 74.992188 299.644531 75.109375 C 299.644531 75.226562 299.738281 75.320312 299.855469 75.320312 C 299.972656 75.320312 300.066406 75.226562 300.066406 75.109375 Z M 300.066406 75.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 297.929688 71.925781 C 297.929688 71.808594 297.835938 71.714844 297.71875 71.714844 C 297.601562 71.714844 297.507812 71.808594 297.507812 71.925781 C 297.507812 72.042969 297.601562 72.136719 297.71875 72.136719 C 297.835938 72.136719 297.929688 72.042969 297.929688 71.925781 Z M 297.929688 71.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 297.097656 74.082031 C 297.097656 73.964844 297.003906 73.871094 296.886719 73.871094 C 296.769531 73.871094 296.675781 73.964844 296.675781 74.082031 C 296.675781 74.199219 296.769531 74.292969 296.886719 74.292969 C 297.003906 74.292969 297.097656 74.199219 297.097656 74.082031 Z M 297.097656 74.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 297.085938 72.675781 C 297.085938 72.558594 296.992188 72.464844 296.875 72.464844 C 296.757812 72.464844 296.664062 72.558594 296.664062 72.675781 C 296.664062 72.792969 296.757812 72.886719 296.875 72.886719 C 296.992188 72.886719 297.085938 72.792969 297.085938 72.675781 Z M 297.085938 72.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 299.417969 75.433594 C 299.417969 75.316406 299.324219 75.222656 299.207031 75.222656 C 299.089844 75.222656 298.996094 75.316406 298.996094 75.433594 C 298.996094 75.550781 299.089844 75.644531 299.207031 75.644531 C 299.324219 75.644531 299.417969 75.550781 299.417969 75.433594 Z M 299.417969 75.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 300.402344 75.375 C 300.402344 75.257812 300.308594 75.164062 300.191406 75.164062 C 300.074219 75.164062 299.980469 75.257812 299.980469 75.375 C 299.980469 75.492188 300.074219 75.585938 300.191406 75.585938 C 300.308594 75.585938 300.402344 75.492188 300.402344 75.375 Z M 300.402344 75.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 296.765625 76.597656 C 296.765625 76.480469 296.671875 76.386719 296.554688 76.386719 C 296.4375 76.386719 296.34375 76.480469 296.34375 76.597656 C 296.34375 76.714844 296.4375 76.808594 296.554688 76.808594 C 296.671875 76.808594 296.765625 76.714844 296.765625 76.597656 Z M 296.765625 76.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 297.886719 79.714844 C 297.886719 79.597656 297.792969 79.503906 297.675781 79.503906 C 297.558594 79.503906 297.464844 79.597656 297.464844 79.714844 C 297.464844 79.832031 297.558594 79.925781 297.675781 79.925781 C 297.792969 79.925781 297.886719 79.832031 297.886719 79.714844 Z M 297.886719 79.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 298.011719 78.992188 C 298.011719 78.875 297.917969 78.78125 297.800781 78.78125 C 297.683594 78.78125 297.589844 78.875 297.589844 78.992188 C 297.589844 79.109375 297.683594 79.203125 297.800781 79.203125 C 297.917969 79.203125 298.011719 79.109375 298.011719 78.992188 Z M 298.011719 78.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 297.46875 81.632812 C 297.46875 81.515625 297.375 81.421875 297.257812 81.421875 C 297.140625 81.421875 297.046875 81.515625 297.046875 81.632812 C 297.046875 81.75 297.140625 81.84375 297.257812 81.84375 C 297.375 81.84375 297.46875 81.75 297.46875 81.632812 Z M 297.46875 81.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 298.089844 80.496094 C 298.089844 80.378906 297.996094 80.285156 297.878906 80.285156 C 297.761719 80.285156 297.667969 80.378906 297.667969 80.496094 C 297.667969 80.613281 297.761719 80.707031 297.878906 80.707031 C 297.996094 80.707031 298.089844 80.613281 298.089844 80.496094 Z M 298.089844 80.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 297.195312 79.476562 C 297.195312 79.359375 297.101562 79.265625 296.984375 79.265625 C 296.867188 79.265625 296.773438 79.359375 296.773438 79.476562 C 296.773438 79.59375 296.867188 79.6875 296.984375 79.6875 C 297.101562 79.6875 297.195312 79.59375 297.195312 79.476562 Z M 297.195312 79.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 296.980469 81.484375 C 296.980469 81.367188 296.886719 81.273438 296.769531 81.273438 C 296.652344 81.273438 296.558594 81.367188 296.558594 81.484375 C 296.558594 81.601562 296.652344 81.695312 296.769531 81.695312 C 296.886719 81.695312 296.980469 81.601562 296.980469 81.484375 Z M 296.980469 81.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 296.808594 82.195312 C 296.808594 82.078125 296.714844 81.984375 296.597656 81.984375 C 296.480469 81.984375 296.386719 82.078125 296.386719 82.195312 C 296.386719 82.3125 296.480469 82.40625 296.597656 82.40625 C 296.714844 82.40625 296.808594 82.3125 296.808594 82.195312 Z M 296.808594 82.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 299.988281 79.625 C 299.988281 79.507812 299.894531 79.414062 299.777344 79.414062 C 299.660156 79.414062 299.566406 79.507812 299.566406 79.625 C 299.566406 79.742188 299.660156 79.835938 299.777344 79.835938 C 299.894531 79.835938 299.988281 79.742188 299.988281 79.625 Z M 299.988281 79.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 300.300781 79.238281 C 300.300781 79.121094 300.207031 79.027344 300.089844 79.027344 C 299.972656 79.027344 299.878906 79.121094 299.878906 79.238281 C 299.878906 79.355469 299.972656 79.449219 300.089844 79.449219 C 300.207031 79.449219 300.300781 79.355469 300.300781 79.238281 Z M 300.300781 79.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 300.453125 84.519531 C 300.453125 84.402344 300.359375 84.308594 300.242188 84.308594 C 300.125 84.308594 300.03125 84.402344 300.03125 84.519531 C 300.03125 84.636719 300.125 84.730469 300.242188 84.730469 C 300.359375 84.730469 300.453125 84.636719 300.453125 84.519531 Z M 300.453125 84.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 300.03125 79.910156 C 300.03125 79.792969 299.9375 79.699219 299.820312 79.699219 C 299.703125 79.699219 299.609375 79.792969 299.609375 79.910156 C 299.609375 80.027344 299.703125 80.121094 299.820312 80.121094 C 299.9375 80.121094 300.03125 80.027344 300.03125 79.910156 Z M 300.03125 79.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 299.796875 77.679688 C 299.796875 77.5625 299.703125 77.46875 299.585938 77.46875 C 299.46875 77.46875 299.375 77.5625 299.375 77.679688 C 299.375 77.796875 299.46875 77.890625 299.585938 77.890625 C 299.703125 77.890625 299.796875 77.796875 299.796875 77.679688 Z M 299.796875 77.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 303.773438 73.789062 C 303.773438 73.671875 303.679688 73.578125 303.5625 73.578125 C 303.445312 73.578125 303.351562 73.671875 303.351562 73.789062 C 303.351562 73.90625 303.445312 74 303.5625 74 C 303.679688 74 303.773438 73.90625 303.773438 73.789062 Z M 303.773438 73.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 301.984375 73.277344 C 301.984375 73.160156 301.890625 73.066406 301.773438 73.066406 C 301.65625 73.066406 301.5625 73.160156 301.5625 73.277344 C 301.5625 73.394531 301.65625 73.488281 301.773438 73.488281 C 301.890625 73.488281 301.984375 73.394531 301.984375 73.277344 Z M 301.984375 73.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 302.589844 74.617188 C 302.589844 74.5 302.496094 74.40625 302.378906 74.40625 C 302.261719 74.40625 302.167969 74.5 302.167969 74.617188 C 302.167969 74.734375 302.261719 74.828125 302.378906 74.828125 C 302.496094 74.828125 302.589844 74.734375 302.589844 74.617188 Z M 302.589844 74.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 303.492188 76.585938 C 303.492188 76.46875 303.398438 76.375 303.28125 76.375 C 303.164062 76.375 303.070312 76.46875 303.070312 76.585938 C 303.070312 76.703125 303.164062 76.796875 303.28125 76.796875 C 303.398438 76.796875 303.492188 76.703125 303.492188 76.585938 Z M 303.492188 76.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 301.589844 76.117188 C 301.589844 76 301.496094 75.90625 301.378906 75.90625 C 301.261719 75.90625 301.167969 76 301.167969 76.117188 C 301.167969 76.234375 301.261719 76.328125 301.378906 76.328125 C 301.496094 76.328125 301.589844 76.234375 301.589844 76.117188 Z M 301.589844 76.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 299.261719 77.207031 C 299.261719 77.089844 299.167969 76.996094 299.050781 76.996094 C 298.933594 76.996094 298.839844 77.089844 298.839844 77.207031 C 298.839844 77.324219 298.933594 77.417969 299.050781 77.417969 C 299.167969 77.417969 299.261719 77.324219 299.261719 77.207031 Z M 299.261719 77.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 297.429688 78.023438 C 297.429688 77.90625 297.335938 77.8125 297.21875 77.8125 C 297.101562 77.8125 297.007812 77.90625 297.007812 78.023438 C 297.007812 78.140625 297.101562 78.234375 297.21875 78.234375 C 297.335938 78.234375 297.429688 78.140625 297.429688 78.023438 Z M 297.429688 78.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 299.828125 75.625 C 299.828125 75.507812 299.734375 75.414062 299.617188 75.414062 C 299.5 75.414062 299.40625 75.507812 299.40625 75.625 C 299.40625 75.742188 299.5 75.835938 299.617188 75.835938 C 299.734375 75.835938 299.828125 75.742188 299.828125 75.625 Z M 299.828125 75.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 300.84375 74.179688 C 300.84375 74.0625 300.75 73.96875 300.632812 73.96875 C 300.515625 73.96875 300.421875 74.0625 300.421875 74.179688 C 300.421875 74.296875 300.515625 74.390625 300.632812 74.390625 C 300.75 74.390625 300.84375 74.296875 300.84375 74.179688 Z M 300.84375 74.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 301.292969 76.628906 C 301.292969 76.511719 301.199219 76.417969 301.082031 76.417969 C 300.964844 76.417969 300.871094 76.511719 300.871094 76.628906 C 300.871094 76.746094 300.964844 76.839844 301.082031 76.839844 C 301.199219 76.839844 301.292969 76.746094 301.292969 76.628906 Z M 301.292969 76.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 299.980469 74.632812 C 299.980469 74.515625 299.886719 74.421875 299.769531 74.421875 C 299.652344 74.421875 299.558594 74.515625 299.558594 74.632812 C 299.558594 74.75 299.652344 74.84375 299.769531 74.84375 C 299.886719 74.84375 299.980469 74.75 299.980469 74.632812 Z M 299.980469 74.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 298.523438 73.191406 C 298.523438 73.074219 298.429688 72.980469 298.3125 72.980469 C 298.195312 72.980469 298.101562 73.074219 298.101562 73.191406 C 298.101562 73.308594 298.195312 73.402344 298.3125 73.402344 C 298.429688 73.402344 298.523438 73.308594 298.523438 73.191406 Z M 298.523438 73.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 297.304688 72.125 C 297.304688 72.007812 297.210938 71.914062 297.09375 71.914062 C 296.976562 71.914062 296.882812 72.007812 296.882812 72.125 C 296.882812 72.242188 296.976562 72.335938 297.09375 72.335938 C 297.210938 72.335938 297.304688 72.242188 297.304688 72.125 Z M 297.304688 72.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 297.378906 71.277344 C 297.378906 71.160156 297.285156 71.066406 297.167969 71.066406 C 297.050781 71.066406 296.957031 71.160156 296.957031 71.277344 C 296.957031 71.394531 297.050781 71.488281 297.167969 71.488281 C 297.285156 71.488281 297.378906 71.394531 297.378906 71.277344 Z M 297.378906 71.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 299.128906 76.210938 C 299.128906 76.09375 299.035156 76 298.917969 76 C 298.800781 76 298.707031 76.09375 298.707031 76.210938 C 298.707031 76.328125 298.800781 76.421875 298.917969 76.421875 C 299.035156 76.421875 299.128906 76.328125 299.128906 76.210938 Z M 299.128906 76.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 300.789062 74.429688 C 300.789062 74.3125 300.695312 74.21875 300.578125 74.21875 C 300.460938 74.21875 300.367188 74.3125 300.367188 74.429688 C 300.367188 74.546875 300.460938 74.640625 300.578125 74.640625 C 300.695312 74.640625 300.789062 74.546875 300.789062 74.429688 Z M 300.789062 74.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 306.140625 75.960938 C 306.140625 75.84375 306.046875 75.75 305.929688 75.75 C 305.8125 75.75 305.71875 75.84375 305.71875 75.960938 C 305.71875 76.078125 305.8125 76.171875 305.929688 76.171875 C 306.046875 76.171875 306.140625 76.078125 306.140625 75.960938 Z M 306.140625 75.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 306.5 79.484375 C 306.5 79.367188 306.40625 79.273438 306.289062 79.273438 C 306.171875 79.273438 306.078125 79.367188 306.078125 79.484375 C 306.078125 79.601562 306.171875 79.695312 306.289062 79.695312 C 306.40625 79.695312 306.5 79.601562 306.5 79.484375 Z M 306.5 79.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 307.175781 77.011719 C 307.175781 76.894531 307.082031 76.800781 306.964844 76.800781 C 306.847656 76.800781 306.753906 76.894531 306.753906 77.011719 C 306.753906 77.128906 306.847656 77.222656 306.964844 77.222656 C 307.082031 77.222656 307.175781 77.128906 307.175781 77.011719 Z M 307.175781 77.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 308.933594 77.839844 C 308.933594 77.722656 308.839844 77.628906 308.722656 77.628906 C 308.605469 77.628906 308.511719 77.722656 308.511719 77.839844 C 308.511719 77.957031 308.605469 78.050781 308.722656 78.050781 C 308.839844 78.050781 308.933594 77.957031 308.933594 77.839844 Z M 308.933594 77.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 306.492188 74.6875 C 306.492188 74.570312 306.398438 74.476562 306.28125 74.476562 C 306.164062 74.476562 306.070312 74.570312 306.070312 74.6875 C 306.070312 74.804688 306.164062 74.898438 306.28125 74.898438 C 306.398438 74.898438 306.492188 74.804688 306.492188 74.6875 Z M 306.492188 74.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 305.964844 75.503906 C 305.964844 75.386719 305.871094 75.292969 305.753906 75.292969 C 305.636719 75.292969 305.542969 75.386719 305.542969 75.503906 C 305.542969 75.621094 305.636719 75.714844 305.753906 75.714844 C 305.871094 75.714844 305.964844 75.621094 305.964844 75.503906 Z M 305.964844 75.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 304.640625 74.730469 C 304.640625 74.613281 304.546875 74.519531 304.429688 74.519531 C 304.3125 74.519531 304.21875 74.613281 304.21875 74.730469 C 304.21875 74.847656 304.3125 74.941406 304.429688 74.941406 C 304.546875 74.941406 304.640625 74.847656 304.640625 74.730469 Z M 304.640625 74.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 299.113281 73.378906 C 299.113281 73.261719 299.019531 73.167969 298.902344 73.167969 C 298.785156 73.167969 298.691406 73.261719 298.691406 73.378906 C 298.691406 73.496094 298.785156 73.589844 298.902344 73.589844 C 299.019531 73.589844 299.113281 73.496094 299.113281 73.378906 Z M 299.113281 73.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 297.148438 73.328125 C 297.148438 73.210938 297.054688 73.117188 296.9375 73.117188 C 296.820312 73.117188 296.726562 73.210938 296.726562 73.328125 C 296.726562 73.445312 296.820312 73.539062 296.9375 73.539062 C 297.054688 73.539062 297.148438 73.445312 297.148438 73.328125 Z M 297.148438 73.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 293.722656 72.070312 C 293.722656 71.953125 293.628906 71.859375 293.511719 71.859375 C 293.394531 71.859375 293.300781 71.953125 293.300781 72.070312 C 293.300781 72.1875 293.394531 72.28125 293.511719 72.28125 C 293.628906 72.28125 293.722656 72.1875 293.722656 72.070312 Z M 293.722656 72.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 295.246094 72.773438 C 295.246094 72.65625 295.152344 72.5625 295.035156 72.5625 C 294.917969 72.5625 294.824219 72.65625 294.824219 72.773438 C 294.824219 72.890625 294.917969 72.984375 295.035156 72.984375 C 295.152344 72.984375 295.246094 72.890625 295.246094 72.773438 Z M 295.246094 72.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 295.472656 70.941406 C 295.472656 70.824219 295.378906 70.730469 295.261719 70.730469 C 295.144531 70.730469 295.050781 70.824219 295.050781 70.941406 C 295.050781 71.058594 295.144531 71.152344 295.261719 71.152344 C 295.378906 71.152344 295.472656 71.058594 295.472656 70.941406 Z M 295.472656 70.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 295.234375 71.519531 C 295.234375 71.402344 295.140625 71.308594 295.023438 71.308594 C 294.90625 71.308594 294.8125 71.402344 294.8125 71.519531 C 294.8125 71.636719 294.90625 71.730469 295.023438 71.730469 C 295.140625 71.730469 295.234375 71.636719 295.234375 71.519531 Z M 295.234375 71.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 294.023438 70.023438 C 294.023438 69.90625 293.929688 69.8125 293.8125 69.8125 C 293.695312 69.8125 293.601562 69.90625 293.601562 70.023438 C 293.601562 70.140625 293.695312 70.234375 293.8125 70.234375 C 293.929688 70.234375 294.023438 70.140625 294.023438 70.023438 Z M 294.023438 70.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 293.425781 70.355469 C 293.425781 70.238281 293.332031 70.144531 293.214844 70.144531 C 293.097656 70.144531 293.003906 70.238281 293.003906 70.355469 C 293.003906 70.472656 293.097656 70.566406 293.214844 70.566406 C 293.332031 70.566406 293.425781 70.472656 293.425781 70.355469 Z M 293.425781 70.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 295.8125 71.78125 C 295.8125 71.664062 295.71875 71.570312 295.601562 71.570312 C 295.484375 71.570312 295.390625 71.664062 295.390625 71.78125 C 295.390625 71.898438 295.484375 71.992188 295.601562 71.992188 C 295.71875 71.992188 295.8125 71.898438 295.8125 71.78125 Z M 295.8125 71.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 292.207031 73.9375 C 292.207031 73.820312 292.113281 73.726562 291.996094 73.726562 C 291.878906 73.726562 291.785156 73.820312 291.785156 73.9375 C 291.785156 74.054688 291.878906 74.148438 291.996094 74.148438 C 292.113281 74.148438 292.207031 74.054688 292.207031 73.9375 Z M 292.207031 73.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 297.46875 73.898438 C 297.46875 73.78125 297.375 73.6875 297.257812 73.6875 C 297.140625 73.6875 297.046875 73.78125 297.046875 73.898438 C 297.046875 74.015625 297.140625 74.109375 297.257812 74.109375 C 297.375 74.109375 297.46875 74.015625 297.46875 73.898438 Z M 297.46875 73.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 297.464844 74.109375 C 297.464844 73.992188 297.371094 73.898438 297.253906 73.898438 C 297.136719 73.898438 297.042969 73.992188 297.042969 74.109375 C 297.042969 74.226562 297.136719 74.320312 297.253906 74.320312 C 297.371094 74.320312 297.464844 74.226562 297.464844 74.109375 Z M 297.464844 74.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 297.628906 71.976562 C 297.628906 71.859375 297.535156 71.765625 297.417969 71.765625 C 297.300781 71.765625 297.207031 71.859375 297.207031 71.976562 C 297.207031 72.09375 297.300781 72.1875 297.417969 72.1875 C 297.535156 72.1875 297.628906 72.09375 297.628906 71.976562 Z M 297.628906 71.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 296.511719 72.285156 C 296.511719 72.167969 296.417969 72.074219 296.300781 72.074219 C 296.183594 72.074219 296.089844 72.167969 296.089844 72.285156 C 296.089844 72.402344 296.183594 72.496094 296.300781 72.496094 C 296.417969 72.496094 296.511719 72.402344 296.511719 72.285156 Z M 296.511719 72.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 299.359375 72.523438 C 299.359375 72.40625 299.265625 72.3125 299.148438 72.3125 C 299.03125 72.3125 298.9375 72.40625 298.9375 72.523438 C 298.9375 72.640625 299.03125 72.734375 299.148438 72.734375 C 299.265625 72.734375 299.359375 72.640625 299.359375 72.523438 Z M 299.359375 72.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 297.660156 69.984375 C 297.660156 69.867188 297.566406 69.773438 297.449219 69.773438 C 297.332031 69.773438 297.238281 69.867188 297.238281 69.984375 C 297.238281 70.101562 297.332031 70.195312 297.449219 70.195312 C 297.566406 70.195312 297.660156 70.101562 297.660156 69.984375 Z M 297.660156 69.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 296.769531 68.792969 C 296.769531 68.675781 296.675781 68.582031 296.558594 68.582031 C 296.441406 68.582031 296.347656 68.675781 296.347656 68.792969 C 296.347656 68.910156 296.441406 69.003906 296.558594 69.003906 C 296.675781 69.003906 296.769531 68.910156 296.769531 68.792969 Z M 296.769531 68.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 298.371094 68.808594 C 298.371094 68.691406 298.277344 68.597656 298.160156 68.597656 C 298.042969 68.597656 297.949219 68.691406 297.949219 68.808594 C 297.949219 68.925781 298.042969 69.019531 298.160156 69.019531 C 298.277344 69.019531 298.371094 68.925781 298.371094 68.808594 Z M 298.371094 68.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 302.898438 70.613281 C 302.898438 70.496094 302.804688 70.402344 302.6875 70.402344 C 302.570312 70.402344 302.476562 70.496094 302.476562 70.613281 C 302.476562 70.730469 302.570312 70.824219 302.6875 70.824219 C 302.804688 70.824219 302.898438 70.730469 302.898438 70.613281 Z M 302.898438 70.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 302.152344 68.957031 C 302.152344 68.839844 302.058594 68.746094 301.941406 68.746094 C 301.824219 68.746094 301.730469 68.839844 301.730469 68.957031 C 301.730469 69.074219 301.824219 69.167969 301.941406 69.167969 C 302.058594 69.167969 302.152344 69.074219 302.152344 68.957031 Z M 302.152344 68.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 304.703125 66.128906 C 304.703125 66.011719 304.609375 65.917969 304.492188 65.917969 C 304.375 65.917969 304.28125 66.011719 304.28125 66.128906 C 304.28125 66.246094 304.375 66.339844 304.492188 66.339844 C 304.609375 66.339844 304.703125 66.246094 304.703125 66.128906 Z M 304.703125 66.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 304.382812 66.921875 C 304.382812 66.804688 304.289062 66.710938 304.171875 66.710938 C 304.054688 66.710938 303.960938 66.804688 303.960938 66.921875 C 303.960938 67.039062 304.054688 67.132812 304.171875 67.132812 C 304.289062 67.132812 304.382812 67.039062 304.382812 66.921875 Z M 304.382812 66.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 304.46875 60.882812 C 304.46875 60.765625 304.375 60.671875 304.257812 60.671875 C 304.140625 60.671875 304.046875 60.765625 304.046875 60.882812 C 304.046875 61 304.140625 61.09375 304.257812 61.09375 C 304.375 61.09375 304.46875 61 304.46875 60.882812 Z M 304.46875 60.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 309.023438 60.507812 C 309.023438 60.390625 308.929688 60.296875 308.8125 60.296875 C 308.695312 60.296875 308.601562 60.390625 308.601562 60.507812 C 308.601562 60.625 308.695312 60.71875 308.8125 60.71875 C 308.929688 60.71875 309.023438 60.625 309.023438 60.507812 Z M 309.023438 60.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 307.800781 60.375 C 307.800781 60.257812 307.707031 60.164062 307.589844 60.164062 C 307.472656 60.164062 307.378906 60.257812 307.378906 60.375 C 307.378906 60.492188 307.472656 60.585938 307.589844 60.585938 C 307.707031 60.585938 307.800781 60.492188 307.800781 60.375 Z M 307.800781 60.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 308.222656 62.980469 C 308.222656 62.863281 308.128906 62.769531 308.011719 62.769531 C 307.894531 62.769531 307.800781 62.863281 307.800781 62.980469 C 307.800781 63.097656 307.894531 63.191406 308.011719 63.191406 C 308.128906 63.191406 308.222656 63.097656 308.222656 62.980469 Z M 308.222656 62.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 309.246094 68.359375 C 309.246094 68.242188 309.152344 68.148438 309.035156 68.148438 C 308.917969 68.148438 308.824219 68.242188 308.824219 68.359375 C 308.824219 68.476562 308.917969 68.570312 309.035156 68.570312 C 309.152344 68.570312 309.246094 68.476562 309.246094 68.359375 Z M 309.246094 68.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 307.316406 71.710938 C 307.316406 71.59375 307.222656 71.5 307.105469 71.5 C 306.988281 71.5 306.894531 71.59375 306.894531 71.710938 C 306.894531 71.828125 306.988281 71.921875 307.105469 71.921875 C 307.222656 71.921875 307.316406 71.828125 307.316406 71.710938 Z M 307.316406 71.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 302.679688 69.613281 C 302.679688 69.496094 302.585938 69.402344 302.46875 69.402344 C 302.351562 69.402344 302.257812 69.496094 302.257812 69.613281 C 302.257812 69.730469 302.351562 69.824219 302.46875 69.824219 C 302.585938 69.824219 302.679688 69.730469 302.679688 69.613281 Z M 302.679688 69.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 308.964844 68.875 C 308.964844 68.757812 308.871094 68.664062 308.753906 68.664062 C 308.636719 68.664062 308.542969 68.757812 308.542969 68.875 C 308.542969 68.992188 308.636719 69.085938 308.753906 69.085938 C 308.871094 69.085938 308.964844 68.992188 308.964844 68.875 Z M 308.964844 68.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 307.019531 69.136719 C 307.019531 69.019531 306.925781 68.925781 306.808594 68.925781 C 306.691406 68.925781 306.597656 69.019531 306.597656 69.136719 C 306.597656 69.253906 306.691406 69.347656 306.808594 69.347656 C 306.925781 69.347656 307.019531 69.253906 307.019531 69.136719 Z M 307.019531 69.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 305.121094 72.734375 C 305.121094 72.617188 305.027344 72.523438 304.910156 72.523438 C 304.792969 72.523438 304.699219 72.617188 304.699219 72.734375 C 304.699219 72.851562 304.792969 72.945312 304.910156 72.945312 C 305.027344 72.945312 305.121094 72.851562 305.121094 72.734375 Z M 305.121094 72.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 305.550781 72.527344 C 305.550781 72.410156 305.457031 72.316406 305.339844 72.316406 C 305.222656 72.316406 305.128906 72.410156 305.128906 72.527344 C 305.128906 72.644531 305.222656 72.738281 305.339844 72.738281 C 305.457031 72.738281 305.550781 72.644531 305.550781 72.527344 Z M 305.550781 72.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 304.199219 72.804688 C 304.199219 72.6875 304.105469 72.59375 303.988281 72.59375 C 303.871094 72.59375 303.777344 72.6875 303.777344 72.804688 C 303.777344 72.921875 303.871094 73.015625 303.988281 73.015625 C 304.105469 73.015625 304.199219 72.921875 304.199219 72.804688 Z M 304.199219 72.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 304.039062 71.355469 C 304.039062 71.238281 303.945312 71.144531 303.828125 71.144531 C 303.710938 71.144531 303.617188 71.238281 303.617188 71.355469 C 303.617188 71.472656 303.710938 71.566406 303.828125 71.566406 C 303.945312 71.566406 304.039062 71.472656 304.039062 71.355469 Z M 304.039062 71.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 306.414062 67.433594 C 306.414062 67.316406 306.320312 67.222656 306.203125 67.222656 C 306.085938 67.222656 305.992188 67.316406 305.992188 67.433594 C 305.992188 67.550781 306.085938 67.644531 306.203125 67.644531 C 306.320312 67.644531 306.414062 67.550781 306.414062 67.433594 Z M 306.414062 67.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 307.484375 69.226562 C 307.484375 69.109375 307.390625 69.015625 307.273438 69.015625 C 307.15625 69.015625 307.0625 69.109375 307.0625 69.226562 C 307.0625 69.34375 307.15625 69.4375 307.273438 69.4375 C 307.390625 69.4375 307.484375 69.34375 307.484375 69.226562 Z M 307.484375 69.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 311.207031 70.722656 C 311.207031 70.605469 311.113281 70.511719 310.996094 70.511719 C 310.878906 70.511719 310.785156 70.605469 310.785156 70.722656 C 310.785156 70.839844 310.878906 70.933594 310.996094 70.933594 C 311.113281 70.933594 311.207031 70.839844 311.207031 70.722656 Z M 311.207031 70.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 311.0625 72.238281 C 311.0625 72.121094 310.96875 72.027344 310.851562 72.027344 C 310.734375 72.027344 310.640625 72.121094 310.640625 72.238281 C 310.640625 72.355469 310.734375 72.449219 310.851562 72.449219 C 310.96875 72.449219 311.0625 72.355469 311.0625 72.238281 Z M 311.0625 72.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 306.132812 71.53125 C 306.132812 71.414062 306.039062 71.320312 305.921875 71.320312 C 305.804688 71.320312 305.710938 71.414062 305.710938 71.53125 C 305.710938 71.648438 305.804688 71.742188 305.921875 71.742188 C 306.039062 71.742188 306.132812 71.648438 306.132812 71.53125 Z M 306.132812 71.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 308.652344 69.378906 C 308.652344 69.261719 308.558594 69.167969 308.441406 69.167969 C 308.324219 69.167969 308.230469 69.261719 308.230469 69.378906 C 308.230469 69.496094 308.324219 69.589844 308.441406 69.589844 C 308.558594 69.589844 308.652344 69.496094 308.652344 69.378906 Z M 308.652344 69.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 304.121094 69.855469 C 304.121094 69.738281 304.027344 69.644531 303.910156 69.644531 C 303.792969 69.644531 303.699219 69.738281 303.699219 69.855469 C 303.699219 69.972656 303.792969 70.066406 303.910156 70.066406 C 304.027344 70.066406 304.121094 69.972656 304.121094 69.855469 Z M 304.121094 69.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 304.117188 69.886719 C 304.117188 69.769531 304.023438 69.675781 303.90625 69.675781 C 303.789062 69.675781 303.695312 69.769531 303.695312 69.886719 C 303.695312 70.003906 303.789062 70.097656 303.90625 70.097656 C 304.023438 70.097656 304.117188 70.003906 304.117188 69.886719 Z M 304.117188 69.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 301.816406 70.234375 C 301.816406 70.117188 301.722656 70.023438 301.605469 70.023438 C 301.488281 70.023438 301.394531 70.117188 301.394531 70.234375 C 301.394531 70.351562 301.488281 70.445312 301.605469 70.445312 C 301.722656 70.445312 301.816406 70.351562 301.816406 70.234375 Z M 301.816406 70.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 304.878906 68.488281 C 304.878906 68.371094 304.785156 68.277344 304.667969 68.277344 C 304.550781 68.277344 304.457031 68.371094 304.457031 68.488281 C 304.457031 68.605469 304.550781 68.699219 304.667969 68.699219 C 304.785156 68.699219 304.878906 68.605469 304.878906 68.488281 Z M 304.878906 68.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 301.984375 66.65625 C 301.984375 66.539062 301.890625 66.445312 301.773438 66.445312 C 301.65625 66.445312 301.5625 66.539062 301.5625 66.65625 C 301.5625 66.773438 301.65625 66.867188 301.773438 66.867188 C 301.890625 66.867188 301.984375 66.773438 301.984375 66.65625 Z M 301.984375 66.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 299.574219 65.570312 C 299.574219 65.453125 299.480469 65.359375 299.363281 65.359375 C 299.246094 65.359375 299.152344 65.453125 299.152344 65.570312 C 299.152344 65.6875 299.246094 65.78125 299.363281 65.78125 C 299.480469 65.78125 299.574219 65.6875 299.574219 65.570312 Z M 299.574219 65.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 301.074219 64.84375 C 301.074219 64.726562 300.980469 64.632812 300.863281 64.632812 C 300.746094 64.632812 300.652344 64.726562 300.652344 64.84375 C 300.652344 64.960938 300.746094 65.054688 300.863281 65.054688 C 300.980469 65.054688 301.074219 64.960938 301.074219 64.84375 Z M 301.074219 64.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 300.289062 61.53125 C 300.289062 61.414062 300.195312 61.320312 300.078125 61.320312 C 299.960938 61.320312 299.867188 61.414062 299.867188 61.53125 C 299.867188 61.648438 299.960938 61.742188 300.078125 61.742188 C 300.195312 61.742188 300.289062 61.648438 300.289062 61.53125 Z M 300.289062 61.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 298.152344 60.679688 C 298.152344 60.5625 298.058594 60.46875 297.941406 60.46875 C 297.824219 60.46875 297.730469 60.5625 297.730469 60.679688 C 297.730469 60.796875 297.824219 60.890625 297.941406 60.890625 C 298.058594 60.890625 298.152344 60.796875 298.152344 60.679688 Z M 298.152344 60.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 298.101562 60.984375 C 298.101562 60.867188 298.007812 60.773438 297.890625 60.773438 C 297.773438 60.773438 297.679688 60.867188 297.679688 60.984375 C 297.679688 61.101562 297.773438 61.195312 297.890625 61.195312 C 298.007812 61.195312 298.101562 61.101562 298.101562 60.984375 Z M 298.101562 60.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 295.425781 62.507812 C 295.425781 62.390625 295.332031 62.296875 295.214844 62.296875 C 295.097656 62.296875 295.003906 62.390625 295.003906 62.507812 C 295.003906 62.625 295.097656 62.71875 295.214844 62.71875 C 295.332031 62.71875 295.425781 62.625 295.425781 62.507812 Z M 295.425781 62.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 291.722656 64.058594 C 291.722656 63.941406 291.628906 63.847656 291.511719 63.847656 C 291.394531 63.847656 291.300781 63.941406 291.300781 64.058594 C 291.300781 64.175781 291.394531 64.269531 291.511719 64.269531 C 291.628906 64.269531 291.722656 64.175781 291.722656 64.058594 Z M 291.722656 64.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 293.40625 64.296875 C 293.40625 64.179688 293.3125 64.085938 293.195312 64.085938 C 293.078125 64.085938 292.984375 64.179688 292.984375 64.296875 C 292.984375 64.414062 293.078125 64.507812 293.195312 64.507812 C 293.3125 64.507812 293.40625 64.414062 293.40625 64.296875 Z M 293.40625 64.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 293.207031 63.914062 C 293.207031 63.796875 293.113281 63.703125 292.996094 63.703125 C 292.878906 63.703125 292.785156 63.796875 292.785156 63.914062 C 292.785156 64.03125 292.878906 64.125 292.996094 64.125 C 293.113281 64.125 293.207031 64.03125 293.207031 63.914062 Z M 293.207031 63.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 289.777344 60.960938 C 289.777344 60.84375 289.683594 60.75 289.566406 60.75 C 289.449219 60.75 289.355469 60.84375 289.355469 60.960938 C 289.355469 61.078125 289.449219 61.171875 289.566406 61.171875 C 289.683594 61.171875 289.777344 61.078125 289.777344 60.960938 Z M 289.777344 60.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 292.78125 58.875 C 292.78125 58.757812 292.6875 58.664062 292.570312 58.664062 C 292.453125 58.664062 292.359375 58.757812 292.359375 58.875 C 292.359375 58.992188 292.453125 59.085938 292.570312 59.085938 C 292.6875 59.085938 292.78125 58.992188 292.78125 58.875 Z M 292.78125 58.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 293.375 63.566406 C 293.375 63.449219 293.28125 63.355469 293.164062 63.355469 C 293.046875 63.355469 292.953125 63.449219 292.953125 63.566406 C 292.953125 63.683594 293.046875 63.777344 293.164062 63.777344 C 293.28125 63.777344 293.375 63.683594 293.375 63.566406 Z M 293.375 63.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 292.796875 62.441406 C 292.796875 62.324219 292.703125 62.230469 292.585938 62.230469 C 292.46875 62.230469 292.375 62.324219 292.375 62.441406 C 292.375 62.558594 292.46875 62.652344 292.585938 62.652344 C 292.703125 62.652344 292.796875 62.558594 292.796875 62.441406 Z M 292.796875 62.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 290.066406 64.375 C 290.066406 64.257812 289.972656 64.164062 289.855469 64.164062 C 289.738281 64.164062 289.644531 64.257812 289.644531 64.375 C 289.644531 64.492188 289.738281 64.585938 289.855469 64.585938 C 289.972656 64.585938 290.066406 64.492188 290.066406 64.375 Z M 290.066406 64.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 289.898438 66.589844 C 289.898438 66.472656 289.804688 66.378906 289.6875 66.378906 C 289.570312 66.378906 289.476562 66.472656 289.476562 66.589844 C 289.476562 66.707031 289.570312 66.800781 289.6875 66.800781 C 289.804688 66.800781 289.898438 66.707031 289.898438 66.589844 Z M 289.898438 66.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 288.742188 68 C 288.742188 67.882812 288.648438 67.789062 288.53125 67.789062 C 288.414062 67.789062 288.320312 67.882812 288.320312 68 C 288.320312 68.117188 288.414062 68.210938 288.53125 68.210938 C 288.648438 68.210938 288.742188 68.117188 288.742188 68 Z M 288.742188 68 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 285.367188 70.066406 C 285.367188 69.949219 285.273438 69.855469 285.15625 69.855469 C 285.039062 69.855469 284.945312 69.949219 284.945312 70.066406 C 284.945312 70.183594 285.039062 70.277344 285.15625 70.277344 C 285.273438 70.277344 285.367188 70.183594 285.367188 70.066406 Z M 285.367188 70.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 286.960938 69.933594 C 286.960938 69.816406 286.867188 69.722656 286.75 69.722656 C 286.632812 69.722656 286.539062 69.816406 286.539062 69.933594 C 286.539062 70.050781 286.632812 70.144531 286.75 70.144531 C 286.867188 70.144531 286.960938 70.050781 286.960938 69.933594 Z M 286.960938 69.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 285.75 71.488281 C 285.75 71.371094 285.65625 71.277344 285.539062 71.277344 C 285.421875 71.277344 285.328125 71.371094 285.328125 71.488281 C 285.328125 71.605469 285.421875 71.699219 285.539062 71.699219 C 285.65625 71.699219 285.75 71.605469 285.75 71.488281 Z M 285.75 71.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 279.984375 68.488281 C 279.984375 68.371094 279.890625 68.277344 279.773438 68.277344 C 279.65625 68.277344 279.5625 68.371094 279.5625 68.488281 C 279.5625 68.605469 279.65625 68.699219 279.773438 68.699219 C 279.890625 68.699219 279.984375 68.605469 279.984375 68.488281 Z M 279.984375 68.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 281.429688 69.894531 C 281.429688 69.777344 281.335938 69.683594 281.21875 69.683594 C 281.101562 69.683594 281.007812 69.777344 281.007812 69.894531 C 281.007812 70.011719 281.101562 70.105469 281.21875 70.105469 C 281.335938 70.105469 281.429688 70.011719 281.429688 69.894531 Z M 281.429688 69.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 282.648438 69.605469 C 282.648438 69.488281 282.554688 69.394531 282.4375 69.394531 C 282.320312 69.394531 282.226562 69.488281 282.226562 69.605469 C 282.226562 69.722656 282.320312 69.816406 282.4375 69.816406 C 282.554688 69.816406 282.648438 69.722656 282.648438 69.605469 Z M 282.648438 69.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 282.953125 69.152344 C 282.953125 69.035156 282.859375 68.941406 282.742188 68.941406 C 282.625 68.941406 282.53125 69.035156 282.53125 69.152344 C 282.53125 69.269531 282.625 69.363281 282.742188 69.363281 C 282.859375 69.363281 282.953125 69.269531 282.953125 69.152344 Z M 282.953125 69.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 283.042969 71.277344 C 283.042969 71.160156 282.949219 71.066406 282.832031 71.066406 C 282.714844 71.066406 282.621094 71.160156 282.621094 71.277344 C 282.621094 71.394531 282.714844 71.488281 282.832031 71.488281 C 282.949219 71.488281 283.042969 71.394531 283.042969 71.277344 Z M 283.042969 71.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 283.023438 70.167969 C 283.023438 70.050781 282.929688 69.957031 282.8125 69.957031 C 282.695312 69.957031 282.601562 70.050781 282.601562 70.167969 C 282.601562 70.285156 282.695312 70.378906 282.8125 70.378906 C 282.929688 70.378906 283.023438 70.285156 283.023438 70.167969 Z M 283.023438 70.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 279.558594 70.789062 C 279.558594 70.671875 279.464844 70.578125 279.347656 70.578125 C 279.230469 70.578125 279.136719 70.671875 279.136719 70.789062 C 279.136719 70.90625 279.230469 71 279.347656 71 C 279.464844 71 279.558594 70.90625 279.558594 70.789062 Z M 279.558594 70.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 282.164062 73.285156 C 282.164062 73.167969 282.070312 73.074219 281.953125 73.074219 C 281.835938 73.074219 281.742188 73.167969 281.742188 73.285156 C 281.742188 73.402344 281.835938 73.496094 281.953125 73.496094 C 282.070312 73.496094 282.164062 73.402344 282.164062 73.285156 Z M 282.164062 73.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 282.125 74.4375 C 282.125 74.320312 282.03125 74.226562 281.914062 74.226562 C 281.796875 74.226562 281.703125 74.320312 281.703125 74.4375 C 281.703125 74.554688 281.796875 74.648438 281.914062 74.648438 C 282.03125 74.648438 282.125 74.554688 282.125 74.4375 Z M 282.125 74.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 282.703125 79.226562 C 282.703125 79.109375 282.609375 79.015625 282.492188 79.015625 C 282.375 79.015625 282.28125 79.109375 282.28125 79.226562 C 282.28125 79.34375 282.375 79.4375 282.492188 79.4375 C 282.609375 79.4375 282.703125 79.34375 282.703125 79.226562 Z M 282.703125 79.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 282.167969 79.347656 C 282.167969 79.230469 282.074219 79.136719 281.957031 79.136719 C 281.839844 79.136719 281.746094 79.230469 281.746094 79.347656 C 281.746094 79.464844 281.839844 79.558594 281.957031 79.558594 C 282.074219 79.558594 282.167969 79.464844 282.167969 79.347656 Z M 282.167969 79.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 281.121094 75.960938 C 281.121094 75.84375 281.027344 75.75 280.910156 75.75 C 280.792969 75.75 280.699219 75.84375 280.699219 75.960938 C 280.699219 76.078125 280.792969 76.171875 280.910156 76.171875 C 281.027344 76.171875 281.121094 76.078125 281.121094 75.960938 Z M 281.121094 75.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 285.074219 74.511719 C 285.074219 74.394531 284.980469 74.300781 284.863281 74.300781 C 284.746094 74.300781 284.652344 74.394531 284.652344 74.511719 C 284.652344 74.628906 284.746094 74.722656 284.863281 74.722656 C 284.980469 74.722656 285.074219 74.628906 285.074219 74.511719 Z M 285.074219 74.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 283.753906 74.75 C 283.753906 74.632812 283.660156 74.539062 283.542969 74.539062 C 283.425781 74.539062 283.332031 74.632812 283.332031 74.75 C 283.332031 74.867188 283.425781 74.960938 283.542969 74.960938 C 283.660156 74.960938 283.753906 74.867188 283.753906 74.75 Z M 283.753906 74.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 281.886719 73.636719 C 281.886719 73.519531 281.792969 73.425781 281.675781 73.425781 C 281.558594 73.425781 281.464844 73.519531 281.464844 73.636719 C 281.464844 73.753906 281.558594 73.847656 281.675781 73.847656 C 281.792969 73.847656 281.886719 73.753906 281.886719 73.636719 Z M 281.886719 73.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 284.011719 71.957031 C 284.011719 71.839844 283.917969 71.746094 283.800781 71.746094 C 283.683594 71.746094 283.589844 71.839844 283.589844 71.957031 C 283.589844 72.074219 283.683594 72.167969 283.800781 72.167969 C 283.917969 72.167969 284.011719 72.074219 284.011719 71.957031 Z M 284.011719 71.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 283.300781 70.472656 C 283.300781 70.355469 283.207031 70.261719 283.089844 70.261719 C 282.972656 70.261719 282.878906 70.355469 282.878906 70.472656 C 282.878906 70.589844 282.972656 70.683594 283.089844 70.683594 C 283.207031 70.683594 283.300781 70.589844 283.300781 70.472656 Z M 283.300781 70.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 282.980469 73.433594 C 282.980469 73.316406 282.886719 73.222656 282.769531 73.222656 C 282.652344 73.222656 282.558594 73.316406 282.558594 73.433594 C 282.558594 73.550781 282.652344 73.644531 282.769531 73.644531 C 282.886719 73.644531 282.980469 73.550781 282.980469 73.433594 Z M 282.980469 73.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 282.214844 74.277344 C 282.214844 74.160156 282.121094 74.066406 282.003906 74.066406 C 281.886719 74.066406 281.792969 74.160156 281.792969 74.277344 C 281.792969 74.394531 281.886719 74.488281 282.003906 74.488281 C 282.121094 74.488281 282.214844 74.394531 282.214844 74.277344 Z M 282.214844 74.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 281.746094 70.675781 C 281.746094 70.558594 281.652344 70.464844 281.535156 70.464844 C 281.417969 70.464844 281.324219 70.558594 281.324219 70.675781 C 281.324219 70.792969 281.417969 70.886719 281.535156 70.886719 C 281.652344 70.886719 281.746094 70.792969 281.746094 70.675781 Z M 281.746094 70.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 283.796875 70.980469 C 283.796875 70.863281 283.703125 70.769531 283.585938 70.769531 C 283.46875 70.769531 283.375 70.863281 283.375 70.980469 C 283.375 71.097656 283.46875 71.191406 283.585938 71.191406 C 283.703125 71.191406 283.796875 71.097656 283.796875 70.980469 Z M 283.796875 70.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 282.097656 68.550781 C 282.097656 68.433594 282.003906 68.339844 281.886719 68.339844 C 281.769531 68.339844 281.675781 68.433594 281.675781 68.550781 C 281.675781 68.667969 281.769531 68.761719 281.886719 68.761719 C 282.003906 68.761719 282.097656 68.667969 282.097656 68.550781 Z M 282.097656 68.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 283.804688 67.394531 C 283.804688 67.277344 283.710938 67.183594 283.59375 67.183594 C 283.476562 67.183594 283.382812 67.277344 283.382812 67.394531 C 283.382812 67.511719 283.476562 67.605469 283.59375 67.605469 C 283.710938 67.605469 283.804688 67.511719 283.804688 67.394531 Z M 283.804688 67.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 286.921875 67.316406 C 286.921875 67.199219 286.828125 67.105469 286.710938 67.105469 C 286.59375 67.105469 286.5 67.199219 286.5 67.316406 C 286.5 67.433594 286.59375 67.527344 286.710938 67.527344 C 286.828125 67.527344 286.921875 67.433594 286.921875 67.316406 Z M 286.921875 67.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 283.09375 68.507812 C 283.09375 68.390625 283 68.296875 282.882812 68.296875 C 282.765625 68.296875 282.671875 68.390625 282.671875 68.507812 C 282.671875 68.625 282.765625 68.71875 282.882812 68.71875 C 283 68.71875 283.09375 68.625 283.09375 68.507812 Z M 283.09375 68.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 283.511719 69.816406 C 283.511719 69.699219 283.417969 69.605469 283.300781 69.605469 C 283.183594 69.605469 283.089844 69.699219 283.089844 69.816406 C 283.089844 69.933594 283.183594 70.027344 283.300781 70.027344 C 283.417969 70.027344 283.511719 69.933594 283.511719 69.816406 Z M 283.511719 69.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 281.285156 68.707031 C 281.285156 68.589844 281.191406 68.496094 281.074219 68.496094 C 280.957031 68.496094 280.863281 68.589844 280.863281 68.707031 C 280.863281 68.824219 280.957031 68.917969 281.074219 68.917969 C 281.191406 68.917969 281.285156 68.824219 281.285156 68.707031 Z M 281.285156 68.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 279.578125 71.882812 C 279.578125 71.765625 279.484375 71.671875 279.367188 71.671875 C 279.25 71.671875 279.15625 71.765625 279.15625 71.882812 C 279.15625 72 279.25 72.09375 279.367188 72.09375 C 279.484375 72.09375 279.578125 72 279.578125 71.882812 Z M 279.578125 71.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 279.640625 74.5 C 279.640625 74.382812 279.546875 74.289062 279.429688 74.289062 C 279.3125 74.289062 279.21875 74.382812 279.21875 74.5 C 279.21875 74.617188 279.3125 74.710938 279.429688 74.710938 C 279.546875 74.710938 279.640625 74.617188 279.640625 74.5 Z M 279.640625 74.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 279.710938 74.988281 C 279.710938 74.871094 279.617188 74.777344 279.5 74.777344 C 279.382812 74.777344 279.289062 74.871094 279.289062 74.988281 C 279.289062 75.105469 279.382812 75.199219 279.5 75.199219 C 279.617188 75.199219 279.710938 75.105469 279.710938 74.988281 Z M 279.710938 74.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 278.480469 69.894531 C 278.480469 69.777344 278.386719 69.683594 278.269531 69.683594 C 278.152344 69.683594 278.058594 69.777344 278.058594 69.894531 C 278.058594 70.011719 278.152344 70.105469 278.269531 70.105469 C 278.386719 70.105469 278.480469 70.011719 278.480469 69.894531 Z M 278.480469 69.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 279.832031 69.960938 C 279.832031 69.84375 279.738281 69.75 279.621094 69.75 C 279.503906 69.75 279.410156 69.84375 279.410156 69.960938 C 279.410156 70.078125 279.503906 70.171875 279.621094 70.171875 C 279.738281 70.171875 279.832031 70.078125 279.832031 69.960938 Z M 279.832031 69.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.28125 70.945312 C 277.28125 70.828125 277.1875 70.734375 277.070312 70.734375 C 276.953125 70.734375 276.859375 70.828125 276.859375 70.945312 C 276.859375 71.0625 276.953125 71.15625 277.070312 71.15625 C 277.1875 71.15625 277.28125 71.0625 277.28125 70.945312 Z M 277.28125 70.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 272.371094 71.886719 C 272.371094 71.769531 272.277344 71.675781 272.160156 71.675781 C 272.042969 71.675781 271.949219 71.769531 271.949219 71.886719 C 271.949219 72.003906 272.042969 72.097656 272.160156 72.097656 C 272.277344 72.097656 272.371094 72.003906 272.371094 71.886719 Z M 272.371094 71.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 270.773438 73.300781 C 270.773438 73.183594 270.679688 73.089844 270.5625 73.089844 C 270.445312 73.089844 270.351562 73.183594 270.351562 73.300781 C 270.351562 73.417969 270.445312 73.511719 270.5625 73.511719 C 270.679688 73.511719 270.773438 73.417969 270.773438 73.300781 Z M 270.773438 73.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.492188 73.042969 C 273.492188 72.925781 273.398438 72.832031 273.28125 72.832031 C 273.164062 72.832031 273.070312 72.925781 273.070312 73.042969 C 273.070312 73.160156 273.164062 73.253906 273.28125 73.253906 C 273.398438 73.253906 273.492188 73.160156 273.492188 73.042969 Z M 273.492188 73.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 271.839844 73.421875 C 271.839844 73.304688 271.746094 73.210938 271.628906 73.210938 C 271.511719 73.210938 271.417969 73.304688 271.417969 73.421875 C 271.417969 73.539062 271.511719 73.632812 271.628906 73.632812 C 271.746094 73.632812 271.839844 73.539062 271.839844 73.421875 Z M 271.839844 73.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 271.789062 75.34375 C 271.789062 75.226562 271.695312 75.132812 271.578125 75.132812 C 271.460938 75.132812 271.367188 75.226562 271.367188 75.34375 C 271.367188 75.460938 271.460938 75.554688 271.578125 75.554688 C 271.695312 75.554688 271.789062 75.460938 271.789062 75.34375 Z M 271.789062 75.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 271.082031 74.90625 C 271.082031 74.789062 270.988281 74.695312 270.871094 74.695312 C 270.753906 74.695312 270.660156 74.789062 270.660156 74.90625 C 270.660156 75.023438 270.753906 75.117188 270.871094 75.117188 C 270.988281 75.117188 271.082031 75.023438 271.082031 74.90625 Z M 271.082031 74.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 271.539062 75.09375 C 271.539062 74.976562 271.445312 74.882812 271.328125 74.882812 C 271.210938 74.882812 271.117188 74.976562 271.117188 75.09375 C 271.117188 75.210938 271.210938 75.304688 271.328125 75.304688 C 271.445312 75.304688 271.539062 75.210938 271.539062 75.09375 Z M 271.539062 75.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.1875 75.726562 C 273.1875 75.609375 273.09375 75.515625 272.976562 75.515625 C 272.859375 75.515625 272.765625 75.609375 272.765625 75.726562 C 272.765625 75.84375 272.859375 75.9375 272.976562 75.9375 C 273.09375 75.9375 273.1875 75.84375 273.1875 75.726562 Z M 273.1875 75.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.757812 74.109375 C 273.757812 73.992188 273.664062 73.898438 273.546875 73.898438 C 273.429688 73.898438 273.335938 73.992188 273.335938 74.109375 C 273.335938 74.226562 273.429688 74.320312 273.546875 74.320312 C 273.664062 74.320312 273.757812 74.226562 273.757812 74.109375 Z M 273.757812 74.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.015625 72.210938 C 273.015625 72.09375 272.921875 72 272.804688 72 C 272.6875 72 272.59375 72.09375 272.59375 72.210938 C 272.59375 72.328125 272.6875 72.421875 272.804688 72.421875 C 272.921875 72.421875 273.015625 72.328125 273.015625 72.210938 Z M 273.015625 72.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 271.097656 69.9375 C 271.097656 69.820312 271.003906 69.726562 270.886719 69.726562 C 270.769531 69.726562 270.675781 69.820312 270.675781 69.9375 C 270.675781 70.054688 270.769531 70.148438 270.886719 70.148438 C 271.003906 70.148438 271.097656 70.054688 271.097656 69.9375 Z M 271.097656 69.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273 71.554688 C 273 71.4375 272.90625 71.34375 272.789062 71.34375 C 272.671875 71.34375 272.578125 71.4375 272.578125 71.554688 C 272.578125 71.671875 272.671875 71.765625 272.789062 71.765625 C 272.90625 71.765625 273 71.671875 273 71.554688 Z M 273 71.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 269.808594 67.050781 C 269.808594 66.933594 269.714844 66.839844 269.597656 66.839844 C 269.480469 66.839844 269.386719 66.933594 269.386719 67.050781 C 269.386719 67.167969 269.480469 67.261719 269.597656 67.261719 C 269.714844 67.261719 269.808594 67.167969 269.808594 67.050781 Z M 269.808594 67.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 270.800781 65.945312 C 270.800781 65.828125 270.707031 65.734375 270.589844 65.734375 C 270.472656 65.734375 270.378906 65.828125 270.378906 65.945312 C 270.378906 66.0625 270.472656 66.15625 270.589844 66.15625 C 270.707031 66.15625 270.800781 66.0625 270.800781 65.945312 Z M 270.800781 65.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 272.0625 66.371094 C 272.0625 66.253906 271.96875 66.160156 271.851562 66.160156 C 271.734375 66.160156 271.640625 66.253906 271.640625 66.371094 C 271.640625 66.488281 271.734375 66.582031 271.851562 66.582031 C 271.96875 66.582031 272.0625 66.488281 272.0625 66.371094 Z M 272.0625 66.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 269.863281 64.894531 C 269.863281 64.777344 269.769531 64.683594 269.652344 64.683594 C 269.535156 64.683594 269.441406 64.777344 269.441406 64.894531 C 269.441406 65.011719 269.535156 65.105469 269.652344 65.105469 C 269.769531 65.105469 269.863281 65.011719 269.863281 64.894531 Z M 269.863281 64.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.265625 66.710938 C 268.265625 66.59375 268.171875 66.5 268.054688 66.5 C 267.9375 66.5 267.84375 66.59375 267.84375 66.710938 C 267.84375 66.828125 267.9375 66.921875 268.054688 66.921875 C 268.171875 66.921875 268.265625 66.828125 268.265625 66.710938 Z M 268.265625 66.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 267.265625 65.511719 C 267.265625 65.394531 267.171875 65.300781 267.054688 65.300781 C 266.9375 65.300781 266.84375 65.394531 266.84375 65.511719 C 266.84375 65.628906 266.9375 65.722656 267.054688 65.722656 C 267.171875 65.722656 267.265625 65.628906 267.265625 65.511719 Z M 267.265625 65.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.609375 64.855469 C 268.609375 64.738281 268.515625 64.644531 268.398438 64.644531 C 268.28125 64.644531 268.1875 64.738281 268.1875 64.855469 C 268.1875 64.972656 268.28125 65.066406 268.398438 65.066406 C 268.515625 65.066406 268.609375 64.972656 268.609375 64.855469 Z M 268.609375 64.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 270.382812 63.140625 C 270.382812 63.023438 270.289062 62.929688 270.171875 62.929688 C 270.054688 62.929688 269.960938 63.023438 269.960938 63.140625 C 269.960938 63.257812 270.054688 63.351562 270.171875 63.351562 C 270.289062 63.351562 270.382812 63.257812 270.382812 63.140625 Z M 270.382812 63.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 269.894531 62.988281 C 269.894531 62.871094 269.800781 62.777344 269.683594 62.777344 C 269.566406 62.777344 269.472656 62.871094 269.472656 62.988281 C 269.472656 63.105469 269.566406 63.199219 269.683594 63.199219 C 269.800781 63.199219 269.894531 63.105469 269.894531 62.988281 Z M 269.894531 62.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 269.453125 60.8125 C 269.453125 60.695312 269.359375 60.601562 269.242188 60.601562 C 269.125 60.601562 269.03125 60.695312 269.03125 60.8125 C 269.03125 60.929688 269.125 61.023438 269.242188 61.023438 C 269.359375 61.023438 269.453125 60.929688 269.453125 60.8125 Z M 269.453125 60.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 269.035156 60.789062 C 269.035156 60.671875 268.941406 60.578125 268.824219 60.578125 C 268.707031 60.578125 268.613281 60.671875 268.613281 60.789062 C 268.613281 60.90625 268.707031 61 268.824219 61 C 268.941406 61 269.035156 60.90625 269.035156 60.789062 Z M 269.035156 60.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 271.738281 62.609375 C 271.738281 62.492188 271.644531 62.398438 271.527344 62.398438 C 271.410156 62.398438 271.316406 62.492188 271.316406 62.609375 C 271.316406 62.726562 271.410156 62.820312 271.527344 62.820312 C 271.644531 62.820312 271.738281 62.726562 271.738281 62.609375 Z M 271.738281 62.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.484375 64.164062 C 273.484375 64.046875 273.390625 63.953125 273.273438 63.953125 C 273.15625 63.953125 273.0625 64.046875 273.0625 64.164062 C 273.0625 64.28125 273.15625 64.375 273.273438 64.375 C 273.390625 64.375 273.484375 64.28125 273.484375 64.164062 Z M 273.484375 64.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 271.613281 65.671875 C 271.613281 65.554688 271.519531 65.460938 271.402344 65.460938 C 271.285156 65.460938 271.191406 65.554688 271.191406 65.671875 C 271.191406 65.789062 271.285156 65.882812 271.402344 65.882812 C 271.519531 65.882812 271.613281 65.789062 271.613281 65.671875 Z M 271.613281 65.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 270.132812 63.511719 C 270.132812 63.394531 270.039062 63.300781 269.921875 63.300781 C 269.804688 63.300781 269.710938 63.394531 269.710938 63.511719 C 269.710938 63.628906 269.804688 63.722656 269.921875 63.722656 C 270.039062 63.722656 270.132812 63.628906 270.132812 63.511719 Z M 270.132812 63.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.039062 67.535156 C 266.039062 67.417969 265.945312 67.324219 265.828125 67.324219 C 265.710938 67.324219 265.617188 67.417969 265.617188 67.535156 C 265.617188 67.652344 265.710938 67.746094 265.828125 67.746094 C 265.945312 67.746094 266.039062 67.652344 266.039062 67.535156 Z M 266.039062 67.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.945312 66.707031 C 263.945312 66.589844 263.851562 66.496094 263.734375 66.496094 C 263.617188 66.496094 263.523438 66.589844 263.523438 66.707031 C 263.523438 66.824219 263.617188 66.917969 263.734375 66.917969 C 263.851562 66.917969 263.945312 66.824219 263.945312 66.707031 Z M 263.945312 66.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.914062 64.019531 C 264.914062 63.902344 264.820312 63.808594 264.703125 63.808594 C 264.585938 63.808594 264.492188 63.902344 264.492188 64.019531 C 264.492188 64.136719 264.585938 64.230469 264.703125 64.230469 C 264.820312 64.230469 264.914062 64.136719 264.914062 64.019531 Z M 264.914062 64.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.652344 64.144531 C 265.652344 64.027344 265.558594 63.933594 265.441406 63.933594 C 265.324219 63.933594 265.230469 64.027344 265.230469 64.144531 C 265.230469 64.261719 265.324219 64.355469 265.441406 64.355469 C 265.558594 64.355469 265.652344 64.261719 265.652344 64.144531 Z M 265.652344 64.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.445312 65.671875 C 265.445312 65.554688 265.351562 65.460938 265.234375 65.460938 C 265.117188 65.460938 265.023438 65.554688 265.023438 65.671875 C 265.023438 65.789062 265.117188 65.882812 265.234375 65.882812 C 265.351562 65.882812 265.445312 65.789062 265.445312 65.671875 Z M 265.445312 65.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.988281 64.550781 C 268.988281 64.433594 268.894531 64.339844 268.777344 64.339844 C 268.660156 64.339844 268.566406 64.433594 268.566406 64.550781 C 268.566406 64.667969 268.660156 64.761719 268.777344 64.761719 C 268.894531 64.761719 268.988281 64.667969 268.988281 64.550781 Z M 268.988281 64.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 270.609375 64.886719 C 270.609375 64.769531 270.515625 64.675781 270.398438 64.675781 C 270.28125 64.675781 270.1875 64.769531 270.1875 64.886719 C 270.1875 65.003906 270.28125 65.097656 270.398438 65.097656 C 270.515625 65.097656 270.609375 65.003906 270.609375 64.886719 Z M 270.609375 64.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 270.304688 64.085938 C 270.304688 63.96875 270.210938 63.875 270.09375 63.875 C 269.976562 63.875 269.882812 63.96875 269.882812 64.085938 C 269.882812 64.203125 269.976562 64.296875 270.09375 64.296875 C 270.210938 64.296875 270.304688 64.203125 270.304688 64.085938 Z M 270.304688 64.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 271.691406 66.160156 C 271.691406 66.042969 271.597656 65.949219 271.480469 65.949219 C 271.363281 65.949219 271.269531 66.042969 271.269531 66.160156 C 271.269531 66.277344 271.363281 66.371094 271.480469 66.371094 C 271.597656 66.371094 271.691406 66.277344 271.691406 66.160156 Z M 271.691406 66.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.371094 61.359375 C 273.371094 61.242188 273.277344 61.148438 273.160156 61.148438 C 273.042969 61.148438 272.949219 61.242188 272.949219 61.359375 C 272.949219 61.476562 273.042969 61.570312 273.160156 61.570312 C 273.277344 61.570312 273.371094 61.476562 273.371094 61.359375 Z M 273.371094 61.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.121094 63.703125 C 276.121094 63.585938 276.027344 63.492188 275.910156 63.492188 C 275.792969 63.492188 275.699219 63.585938 275.699219 63.703125 C 275.699219 63.820312 275.792969 63.914062 275.910156 63.914062 C 276.027344 63.914062 276.121094 63.820312 276.121094 63.703125 Z M 276.121094 63.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.777344 62.066406 C 276.777344 61.949219 276.683594 61.855469 276.566406 61.855469 C 276.449219 61.855469 276.355469 61.949219 276.355469 62.066406 C 276.355469 62.183594 276.449219 62.277344 276.566406 62.277344 C 276.683594 62.277344 276.777344 62.183594 276.777344 62.066406 Z M 276.777344 62.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.957031 63.136719 C 273.957031 63.019531 273.863281 62.925781 273.746094 62.925781 C 273.628906 62.925781 273.535156 63.019531 273.535156 63.136719 C 273.535156 63.253906 273.628906 63.347656 273.746094 63.347656 C 273.863281 63.347656 273.957031 63.253906 273.957031 63.136719 Z M 273.957031 63.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.914062 64.507812 C 274.914062 64.390625 274.820312 64.296875 274.703125 64.296875 C 274.585938 64.296875 274.492188 64.390625 274.492188 64.507812 C 274.492188 64.625 274.585938 64.71875 274.703125 64.71875 C 274.820312 64.71875 274.914062 64.625 274.914062 64.507812 Z M 274.914062 64.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.402344 62.371094 C 275.402344 62.253906 275.308594 62.160156 275.191406 62.160156 C 275.074219 62.160156 274.980469 62.253906 274.980469 62.371094 C 274.980469 62.488281 275.074219 62.582031 275.191406 62.582031 C 275.308594 62.582031 275.402344 62.488281 275.402344 62.371094 Z M 275.402344 62.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.550781 64.339844 C 274.550781 64.222656 274.457031 64.128906 274.339844 64.128906 C 274.222656 64.128906 274.128906 64.222656 274.128906 64.339844 C 274.128906 64.457031 274.222656 64.550781 274.339844 64.550781 C 274.457031 64.550781 274.550781 64.457031 274.550781 64.339844 Z M 274.550781 64.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.21875 61.40625 C 275.21875 61.289062 275.125 61.195312 275.007812 61.195312 C 274.890625 61.195312 274.796875 61.289062 274.796875 61.40625 C 274.796875 61.523438 274.890625 61.617188 275.007812 61.617188 C 275.125 61.617188 275.21875 61.523438 275.21875 61.40625 Z M 275.21875 61.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.132812 55.222656 C 273.132812 55.105469 273.039062 55.011719 272.921875 55.011719 C 272.804688 55.011719 272.710938 55.105469 272.710938 55.222656 C 272.710938 55.339844 272.804688 55.433594 272.921875 55.433594 C 273.039062 55.433594 273.132812 55.339844 273.132812 55.222656 Z M 273.132812 55.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 272.410156 56.886719 C 272.410156 56.769531 272.316406 56.675781 272.199219 56.675781 C 272.082031 56.675781 271.988281 56.769531 271.988281 56.886719 C 271.988281 57.003906 272.082031 57.097656 272.199219 57.097656 C 272.316406 57.097656 272.410156 57.003906 272.410156 56.886719 Z M 272.410156 56.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.082031 59.179688 C 274.082031 59.0625 273.988281 58.96875 273.871094 58.96875 C 273.753906 58.96875 273.660156 59.0625 273.660156 59.179688 C 273.660156 59.296875 273.753906 59.390625 273.871094 59.390625 C 273.988281 59.390625 274.082031 59.296875 274.082031 59.179688 Z M 274.082031 59.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 272.039062 60.703125 C 272.039062 60.585938 271.945312 60.492188 271.828125 60.492188 C 271.710938 60.492188 271.617188 60.585938 271.617188 60.703125 C 271.617188 60.820312 271.710938 60.914062 271.828125 60.914062 C 271.945312 60.914062 272.039062 60.820312 272.039062 60.703125 Z M 272.039062 60.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.273438 60.839844 C 273.273438 60.722656 273.179688 60.628906 273.0625 60.628906 C 272.945312 60.628906 272.851562 60.722656 272.851562 60.839844 C 272.851562 60.957031 272.945312 61.050781 273.0625 61.050781 C 273.179688 61.050781 273.273438 60.957031 273.273438 60.839844 Z M 273.273438 60.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.269531 59.3125 C 275.269531 59.195312 275.175781 59.101562 275.058594 59.101562 C 274.941406 59.101562 274.847656 59.195312 274.847656 59.3125 C 274.847656 59.429688 274.941406 59.523438 275.058594 59.523438 C 275.175781 59.523438 275.269531 59.429688 275.269531 59.3125 Z M 275.269531 59.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.277344 61.195312 C 276.277344 61.078125 276.183594 60.984375 276.066406 60.984375 C 275.949219 60.984375 275.855469 61.078125 275.855469 61.195312 C 275.855469 61.3125 275.949219 61.40625 276.066406 61.40625 C 276.183594 61.40625 276.277344 61.3125 276.277344 61.195312 Z M 276.277344 61.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.632812 62.339844 C 275.632812 62.222656 275.539062 62.128906 275.421875 62.128906 C 275.304688 62.128906 275.210938 62.222656 275.210938 62.339844 C 275.210938 62.457031 275.304688 62.550781 275.421875 62.550781 C 275.539062 62.550781 275.632812 62.457031 275.632812 62.339844 Z M 275.632812 62.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.867188 60 C 274.867188 59.882812 274.773438 59.789062 274.65625 59.789062 C 274.539062 59.789062 274.445312 59.882812 274.445312 60 C 274.445312 60.117188 274.539062 60.210938 274.65625 60.210938 C 274.773438 60.210938 274.867188 60.117188 274.867188 60 Z M 274.867188 60 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.246094 63.269531 C 274.246094 63.152344 274.152344 63.058594 274.035156 63.058594 C 273.917969 63.058594 273.824219 63.152344 273.824219 63.269531 C 273.824219 63.386719 273.917969 63.480469 274.035156 63.480469 C 274.152344 63.480469 274.246094 63.386719 274.246094 63.269531 Z M 274.246094 63.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.164062 62.398438 C 274.164062 62.28125 274.070312 62.1875 273.953125 62.1875 C 273.835938 62.1875 273.742188 62.28125 273.742188 62.398438 C 273.742188 62.515625 273.835938 62.609375 273.953125 62.609375 C 274.070312 62.609375 274.164062 62.515625 274.164062 62.398438 Z M 274.164062 62.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.78125 61.21875 C 275.78125 61.101562 275.6875 61.007812 275.570312 61.007812 C 275.453125 61.007812 275.359375 61.101562 275.359375 61.21875 C 275.359375 61.335938 275.453125 61.429688 275.570312 61.429688 C 275.6875 61.429688 275.78125 61.335938 275.78125 61.21875 Z M 275.78125 61.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.503906 62.355469 C 273.503906 62.238281 273.410156 62.144531 273.292969 62.144531 C 273.175781 62.144531 273.082031 62.238281 273.082031 62.355469 C 273.082031 62.472656 273.175781 62.566406 273.292969 62.566406 C 273.410156 62.566406 273.503906 62.472656 273.503906 62.355469 Z M 273.503906 62.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 271.4375 64.179688 C 271.4375 64.0625 271.34375 63.96875 271.226562 63.96875 C 271.109375 63.96875 271.015625 64.0625 271.015625 64.179688 C 271.015625 64.296875 271.109375 64.390625 271.226562 64.390625 C 271.34375 64.390625 271.4375 64.296875 271.4375 64.179688 Z M 271.4375 64.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.609375 65.496094 C 275.609375 65.378906 275.515625 65.285156 275.398438 65.285156 C 275.28125 65.285156 275.1875 65.378906 275.1875 65.496094 C 275.1875 65.613281 275.28125 65.707031 275.398438 65.707031 C 275.515625 65.707031 275.609375 65.613281 275.609375 65.496094 Z M 275.609375 65.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.980469 68.179688 C 276.980469 68.0625 276.886719 67.96875 276.769531 67.96875 C 276.652344 67.96875 276.558594 68.0625 276.558594 68.179688 C 276.558594 68.296875 276.652344 68.390625 276.769531 68.390625 C 276.886719 68.390625 276.980469 68.296875 276.980469 68.179688 Z M 276.980469 68.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.398438 67.925781 C 277.398438 67.808594 277.304688 67.714844 277.1875 67.714844 C 277.070312 67.714844 276.976562 67.808594 276.976562 67.925781 C 276.976562 68.042969 277.070312 68.136719 277.1875 68.136719 C 277.304688 68.136719 277.398438 68.042969 277.398438 67.925781 Z M 277.398438 67.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 278.433594 70.203125 C 278.433594 70.085938 278.339844 69.992188 278.222656 69.992188 C 278.105469 69.992188 278.011719 70.085938 278.011719 70.203125 C 278.011719 70.320312 278.105469 70.414062 278.222656 70.414062 C 278.339844 70.414062 278.433594 70.320312 278.433594 70.203125 Z M 278.433594 70.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 280.023438 68.984375 C 280.023438 68.867188 279.929688 68.773438 279.8125 68.773438 C 279.695312 68.773438 279.601562 68.867188 279.601562 68.984375 C 279.601562 69.101562 279.695312 69.195312 279.8125 69.195312 C 279.929688 69.195312 280.023438 69.101562 280.023438 68.984375 Z M 280.023438 68.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.820312 70.351562 C 277.820312 70.234375 277.726562 70.140625 277.609375 70.140625 C 277.492188 70.140625 277.398438 70.234375 277.398438 70.351562 C 277.398438 70.46875 277.492188 70.5625 277.609375 70.5625 C 277.726562 70.5625 277.820312 70.46875 277.820312 70.351562 Z M 277.820312 70.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 280.542969 71.351562 C 280.542969 71.234375 280.449219 71.140625 280.332031 71.140625 C 280.214844 71.140625 280.121094 71.234375 280.121094 71.351562 C 280.121094 71.46875 280.214844 71.5625 280.332031 71.5625 C 280.449219 71.5625 280.542969 71.46875 280.542969 71.351562 Z M 280.542969 71.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 278.300781 71.378906 C 278.300781 71.261719 278.207031 71.167969 278.089844 71.167969 C 277.972656 71.167969 277.878906 71.261719 277.878906 71.378906 C 277.878906 71.496094 277.972656 71.589844 278.089844 71.589844 C 278.207031 71.589844 278.300781 71.496094 278.300781 71.378906 Z M 278.300781 71.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.769531 75.03125 C 276.769531 74.914062 276.675781 74.820312 276.558594 74.820312 C 276.441406 74.820312 276.347656 74.914062 276.347656 75.03125 C 276.347656 75.148438 276.441406 75.242188 276.558594 75.242188 C 276.675781 75.242188 276.769531 75.148438 276.769531 75.03125 Z M 276.769531 75.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.09375 72.011719 C 275.09375 71.894531 275 71.800781 274.882812 71.800781 C 274.765625 71.800781 274.671875 71.894531 274.671875 72.011719 C 274.671875 72.128906 274.765625 72.222656 274.882812 72.222656 C 275 72.222656 275.09375 72.128906 275.09375 72.011719 Z M 275.09375 72.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.960938 68.074219 C 276.960938 67.957031 276.867188 67.863281 276.75 67.863281 C 276.632812 67.863281 276.539062 67.957031 276.539062 68.074219 C 276.539062 68.191406 276.632812 68.285156 276.75 68.285156 C 276.867188 68.285156 276.960938 68.191406 276.960938 68.074219 Z M 276.960938 68.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.65625 63.851562 C 273.65625 63.734375 273.5625 63.640625 273.445312 63.640625 C 273.328125 63.640625 273.234375 63.734375 273.234375 63.851562 C 273.234375 63.96875 273.328125 64.0625 273.445312 64.0625 C 273.5625 64.0625 273.65625 63.96875 273.65625 63.851562 Z M 273.65625 63.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.859375 65 C 274.859375 64.882812 274.765625 64.789062 274.648438 64.789062 C 274.53125 64.789062 274.4375 64.882812 274.4375 65 C 274.4375 65.117188 274.53125 65.210938 274.648438 65.210938 C 274.765625 65.210938 274.859375 65.117188 274.859375 65 Z M 274.859375 65 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.886719 64.136719 C 274.886719 64.019531 274.792969 63.925781 274.675781 63.925781 C 274.558594 63.925781 274.464844 64.019531 274.464844 64.136719 C 274.464844 64.253906 274.558594 64.347656 274.675781 64.347656 C 274.792969 64.347656 274.886719 64.253906 274.886719 64.136719 Z M 274.886719 64.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.445312 65.324219 C 276.445312 65.207031 276.351562 65.113281 276.234375 65.113281 C 276.117188 65.113281 276.023438 65.207031 276.023438 65.324219 C 276.023438 65.441406 276.117188 65.535156 276.234375 65.535156 C 276.351562 65.535156 276.445312 65.441406 276.445312 65.324219 Z M 276.445312 65.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.035156 67.101562 C 275.035156 66.984375 274.941406 66.890625 274.824219 66.890625 C 274.707031 66.890625 274.613281 66.984375 274.613281 67.101562 C 274.613281 67.21875 274.707031 67.3125 274.824219 67.3125 C 274.941406 67.3125 275.035156 67.21875 275.035156 67.101562 Z M 275.035156 67.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.230469 67.460938 C 277.230469 67.34375 277.136719 67.25 277.019531 67.25 C 276.902344 67.25 276.808594 67.34375 276.808594 67.460938 C 276.808594 67.578125 276.902344 67.671875 277.019531 67.671875 C 277.136719 67.671875 277.230469 67.578125 277.230469 67.460938 Z M 277.230469 67.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 278.441406 67.691406 C 278.441406 67.574219 278.347656 67.480469 278.230469 67.480469 C 278.113281 67.480469 278.019531 67.574219 278.019531 67.691406 C 278.019531 67.808594 278.113281 67.902344 278.230469 67.902344 C 278.347656 67.902344 278.441406 67.808594 278.441406 67.691406 Z M 278.441406 67.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 280.292969 71.007812 C 280.292969 70.890625 280.199219 70.796875 280.082031 70.796875 C 279.964844 70.796875 279.871094 70.890625 279.871094 71.007812 C 279.871094 71.125 279.964844 71.21875 280.082031 71.21875 C 280.199219 71.21875 280.292969 71.125 280.292969 71.007812 Z M 280.292969 71.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.195312 72.984375 C 276.195312 72.867188 276.101562 72.773438 275.984375 72.773438 C 275.867188 72.773438 275.773438 72.867188 275.773438 72.984375 C 275.773438 73.101562 275.867188 73.195312 275.984375 73.195312 C 276.101562 73.195312 276.195312 73.101562 276.195312 72.984375 Z M 276.195312 72.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.601562 72.554688 C 275.601562 72.4375 275.507812 72.34375 275.390625 72.34375 C 275.273438 72.34375 275.179688 72.4375 275.179688 72.554688 C 275.179688 72.671875 275.273438 72.765625 275.390625 72.765625 C 275.507812 72.765625 275.601562 72.671875 275.601562 72.554688 Z M 275.601562 72.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.464844 70.328125 C 277.464844 70.210938 277.371094 70.117188 277.253906 70.117188 C 277.136719 70.117188 277.042969 70.210938 277.042969 70.328125 C 277.042969 70.445312 277.136719 70.539062 277.253906 70.539062 C 277.371094 70.539062 277.464844 70.445312 277.464844 70.328125 Z M 277.464844 70.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.367188 69.992188 C 274.367188 69.875 274.273438 69.78125 274.15625 69.78125 C 274.039062 69.78125 273.945312 69.875 273.945312 69.992188 C 273.945312 70.109375 274.039062 70.203125 274.15625 70.203125 C 274.273438 70.203125 274.367188 70.109375 274.367188 69.992188 Z M 274.367188 69.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.253906 72.261719 C 273.253906 72.144531 273.160156 72.050781 273.042969 72.050781 C 272.925781 72.050781 272.832031 72.144531 272.832031 72.261719 C 272.832031 72.378906 272.925781 72.472656 273.042969 72.472656 C 273.160156 72.472656 273.253906 72.378906 273.253906 72.261719 Z M 273.253906 72.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 269.605469 77.660156 C 269.605469 77.542969 269.511719 77.449219 269.394531 77.449219 C 269.277344 77.449219 269.183594 77.542969 269.183594 77.660156 C 269.183594 77.777344 269.277344 77.871094 269.394531 77.871094 C 269.511719 77.871094 269.605469 77.777344 269.605469 77.660156 Z M 269.605469 77.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 269.722656 76.292969 C 269.722656 76.175781 269.628906 76.082031 269.511719 76.082031 C 269.394531 76.082031 269.300781 76.175781 269.300781 76.292969 C 269.300781 76.410156 269.394531 76.503906 269.511719 76.503906 C 269.628906 76.503906 269.722656 76.410156 269.722656 76.292969 Z M 269.722656 76.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 270.886719 75.601562 C 270.886719 75.484375 270.792969 75.390625 270.675781 75.390625 C 270.558594 75.390625 270.464844 75.484375 270.464844 75.601562 C 270.464844 75.71875 270.558594 75.8125 270.675781 75.8125 C 270.792969 75.8125 270.886719 75.71875 270.886719 75.601562 Z M 270.886719 75.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.46875 72.757812 C 268.46875 72.640625 268.375 72.546875 268.257812 72.546875 C 268.140625 72.546875 268.046875 72.640625 268.046875 72.757812 C 268.046875 72.875 268.140625 72.96875 268.257812 72.96875 C 268.375 72.96875 268.46875 72.875 268.46875 72.757812 Z M 268.46875 72.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 270.402344 69.332031 C 270.402344 69.214844 270.308594 69.121094 270.191406 69.121094 C 270.074219 69.121094 269.980469 69.214844 269.980469 69.332031 C 269.980469 69.449219 270.074219 69.542969 270.191406 69.542969 C 270.308594 69.542969 270.402344 69.449219 270.402344 69.332031 Z M 270.402344 69.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 269.296875 67.726562 C 269.296875 67.609375 269.203125 67.515625 269.085938 67.515625 C 268.96875 67.515625 268.875 67.609375 268.875 67.726562 C 268.875 67.84375 268.96875 67.9375 269.085938 67.9375 C 269.203125 67.9375 269.296875 67.84375 269.296875 67.726562 Z M 269.296875 67.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 270.28125 67.664062 C 270.28125 67.546875 270.1875 67.453125 270.070312 67.453125 C 269.953125 67.453125 269.859375 67.546875 269.859375 67.664062 C 269.859375 67.78125 269.953125 67.875 270.070312 67.875 C 270.1875 67.875 270.28125 67.78125 270.28125 67.664062 Z M 270.28125 67.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 269.746094 71.492188 C 269.746094 71.375 269.652344 71.28125 269.535156 71.28125 C 269.417969 71.28125 269.324219 71.375 269.324219 71.492188 C 269.324219 71.609375 269.417969 71.703125 269.535156 71.703125 C 269.652344 71.703125 269.746094 71.609375 269.746094 71.492188 Z M 269.746094 71.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 270.667969 70.824219 C 270.667969 70.707031 270.574219 70.613281 270.457031 70.613281 C 270.339844 70.613281 270.246094 70.707031 270.246094 70.824219 C 270.246094 70.941406 270.339844 71.035156 270.457031 71.035156 C 270.574219 71.035156 270.667969 70.941406 270.667969 70.824219 Z M 270.667969 70.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 271.820312 66.125 C 271.820312 66.007812 271.726562 65.914062 271.609375 65.914062 C 271.492188 65.914062 271.398438 66.007812 271.398438 66.125 C 271.398438 66.242188 271.492188 66.335938 271.609375 66.335938 C 271.726562 66.335938 271.820312 66.242188 271.820312 66.125 Z M 271.820312 66.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.363281 66.023438 C 273.363281 65.90625 273.269531 65.8125 273.152344 65.8125 C 273.035156 65.8125 272.941406 65.90625 272.941406 66.023438 C 272.941406 66.140625 273.035156 66.234375 273.152344 66.234375 C 273.269531 66.234375 273.363281 66.140625 273.363281 66.023438 Z M 273.363281 66.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 272.921875 64.148438 C 272.921875 64.03125 272.828125 63.9375 272.710938 63.9375 C 272.59375 63.9375 272.5 64.03125 272.5 64.148438 C 272.5 64.265625 272.59375 64.359375 272.710938 64.359375 C 272.828125 64.359375 272.921875 64.265625 272.921875 64.148438 Z M 272.921875 64.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 272.589844 61.824219 C 272.589844 61.707031 272.496094 61.613281 272.378906 61.613281 C 272.261719 61.613281 272.167969 61.707031 272.167969 61.824219 C 272.167969 61.941406 272.261719 62.035156 272.378906 62.035156 C 272.496094 62.035156 272.589844 61.941406 272.589844 61.824219 Z M 272.589844 61.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.007812 61.71875 C 275.007812 61.601562 274.914062 61.507812 274.796875 61.507812 C 274.679688 61.507812 274.585938 61.601562 274.585938 61.71875 C 274.585938 61.835938 274.679688 61.929688 274.796875 61.929688 C 274.914062 61.929688 275.007812 61.835938 275.007812 61.71875 Z M 275.007812 61.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.71875 60.683594 C 275.71875 60.566406 275.625 60.472656 275.507812 60.472656 C 275.390625 60.472656 275.296875 60.566406 275.296875 60.683594 C 275.296875 60.800781 275.390625 60.894531 275.507812 60.894531 C 275.625 60.894531 275.71875 60.800781 275.71875 60.683594 Z M 275.71875 60.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.953125 60.472656 C 274.953125 60.355469 274.859375 60.261719 274.742188 60.261719 C 274.625 60.261719 274.53125 60.355469 274.53125 60.472656 C 274.53125 60.589844 274.625 60.683594 274.742188 60.683594 C 274.859375 60.683594 274.953125 60.589844 274.953125 60.472656 Z M 274.953125 60.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.558594 62.4375 C 273.558594 62.320312 273.464844 62.226562 273.347656 62.226562 C 273.230469 62.226562 273.136719 62.320312 273.136719 62.4375 C 273.136719 62.554688 273.230469 62.648438 273.347656 62.648438 C 273.464844 62.648438 273.558594 62.554688 273.558594 62.4375 Z M 273.558594 62.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 272.324219 61.308594 C 272.324219 61.191406 272.230469 61.097656 272.113281 61.097656 C 271.996094 61.097656 271.902344 61.191406 271.902344 61.308594 C 271.902344 61.425781 271.996094 61.519531 272.113281 61.519531 C 272.230469 61.519531 272.324219 61.425781 272.324219 61.308594 Z M 272.324219 61.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.21875 61.019531 C 276.21875 60.902344 276.125 60.808594 276.007812 60.808594 C 275.890625 60.808594 275.796875 60.902344 275.796875 61.019531 C 275.796875 61.136719 275.890625 61.230469 276.007812 61.230469 C 276.125 61.230469 276.21875 61.136719 276.21875 61.019531 Z M 276.21875 61.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.246094 64.726562 C 274.246094 64.609375 274.152344 64.515625 274.035156 64.515625 C 273.917969 64.515625 273.824219 64.609375 273.824219 64.726562 C 273.824219 64.84375 273.917969 64.9375 274.035156 64.9375 C 274.152344 64.9375 274.246094 64.84375 274.246094 64.726562 Z M 274.246094 64.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.375 64.199219 C 273.375 64.082031 273.28125 63.988281 273.164062 63.988281 C 273.046875 63.988281 272.953125 64.082031 272.953125 64.199219 C 272.953125 64.316406 273.046875 64.410156 273.164062 64.410156 C 273.28125 64.410156 273.375 64.316406 273.375 64.199219 Z M 273.375 64.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 270.625 66.769531 C 270.625 66.652344 270.53125 66.558594 270.414062 66.558594 C 270.296875 66.558594 270.203125 66.652344 270.203125 66.769531 C 270.203125 66.886719 270.296875 66.980469 270.414062 66.980469 C 270.53125 66.980469 270.625 66.886719 270.625 66.769531 Z M 270.625 66.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 272.136719 67.613281 C 272.136719 67.496094 272.042969 67.402344 271.925781 67.402344 C 271.808594 67.402344 271.714844 67.496094 271.714844 67.613281 C 271.714844 67.730469 271.808594 67.824219 271.925781 67.824219 C 272.042969 67.824219 272.136719 67.730469 272.136719 67.613281 Z M 272.136719 67.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.113281 65.222656 C 274.113281 65.105469 274.019531 65.011719 273.902344 65.011719 C 273.785156 65.011719 273.691406 65.105469 273.691406 65.222656 C 273.691406 65.339844 273.785156 65.433594 273.902344 65.433594 C 274.019531 65.433594 274.113281 65.339844 274.113281 65.222656 Z M 274.113281 65.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.484375 67.558594 C 276.484375 67.441406 276.390625 67.347656 276.273438 67.347656 C 276.15625 67.347656 276.0625 67.441406 276.0625 67.558594 C 276.0625 67.675781 276.15625 67.769531 276.273438 67.769531 C 276.390625 67.769531 276.484375 67.675781 276.484375 67.558594 Z M 276.484375 67.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.292969 66.210938 C 277.292969 66.09375 277.199219 66 277.082031 66 C 276.964844 66 276.871094 66.09375 276.871094 66.210938 C 276.871094 66.328125 276.964844 66.421875 277.082031 66.421875 C 277.199219 66.421875 277.292969 66.328125 277.292969 66.210938 Z M 277.292969 66.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.375 66.644531 C 276.375 66.527344 276.28125 66.433594 276.164062 66.433594 C 276.046875 66.433594 275.953125 66.527344 275.953125 66.644531 C 275.953125 66.761719 276.046875 66.855469 276.164062 66.855469 C 276.28125 66.855469 276.375 66.761719 276.375 66.644531 Z M 276.375 66.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.351562 69.574219 C 277.351562 69.457031 277.257812 69.363281 277.140625 69.363281 C 277.023438 69.363281 276.929688 69.457031 276.929688 69.574219 C 276.929688 69.691406 277.023438 69.785156 277.140625 69.785156 C 277.257812 69.785156 277.351562 69.691406 277.351562 69.574219 Z M 277.351562 69.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.765625 70.316406 C 275.765625 70.199219 275.671875 70.105469 275.554688 70.105469 C 275.4375 70.105469 275.34375 70.199219 275.34375 70.316406 C 275.34375 70.433594 275.4375 70.527344 275.554688 70.527344 C 275.671875 70.527344 275.765625 70.433594 275.765625 70.316406 Z M 275.765625 70.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.84375 68.0625 C 277.84375 67.945312 277.75 67.851562 277.632812 67.851562 C 277.515625 67.851562 277.421875 67.945312 277.421875 68.0625 C 277.421875 68.179688 277.515625 68.273438 277.632812 68.273438 C 277.75 68.273438 277.84375 68.179688 277.84375 68.0625 Z M 277.84375 68.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 278.671875 70.132812 C 278.671875 70.015625 278.578125 69.921875 278.460938 69.921875 C 278.34375 69.921875 278.25 70.015625 278.25 70.132812 C 278.25 70.25 278.34375 70.34375 278.460938 70.34375 C 278.578125 70.34375 278.671875 70.25 278.671875 70.132812 Z M 278.671875 70.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 280.140625 66.078125 C 280.140625 65.960938 280.046875 65.867188 279.929688 65.867188 C 279.8125 65.867188 279.71875 65.960938 279.71875 66.078125 C 279.71875 66.195312 279.8125 66.289062 279.929688 66.289062 C 280.046875 66.289062 280.140625 66.195312 280.140625 66.078125 Z M 280.140625 66.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 281.101562 64.105469 C 281.101562 63.988281 281.007812 63.894531 280.890625 63.894531 C 280.773438 63.894531 280.679688 63.988281 280.679688 64.105469 C 280.679688 64.222656 280.773438 64.316406 280.890625 64.316406 C 281.007812 64.316406 281.101562 64.222656 281.101562 64.105469 Z M 281.101562 64.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 281.597656 66.035156 C 281.597656 65.917969 281.503906 65.824219 281.386719 65.824219 C 281.269531 65.824219 281.175781 65.917969 281.175781 66.035156 C 281.175781 66.152344 281.269531 66.246094 281.386719 66.246094 C 281.503906 66.246094 281.597656 66.152344 281.597656 66.035156 Z M 281.597656 66.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 281.09375 66.199219 C 281.09375 66.082031 281 65.988281 280.882812 65.988281 C 280.765625 65.988281 280.671875 66.082031 280.671875 66.199219 C 280.671875 66.316406 280.765625 66.410156 280.882812 66.410156 C 281 66.410156 281.09375 66.316406 281.09375 66.199219 Z M 281.09375 66.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 282.082031 66.679688 C 282.082031 66.5625 281.988281 66.46875 281.871094 66.46875 C 281.753906 66.46875 281.660156 66.5625 281.660156 66.679688 C 281.660156 66.796875 281.753906 66.890625 281.871094 66.890625 C 281.988281 66.890625 282.082031 66.796875 282.082031 66.679688 Z M 282.082031 66.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 278.929688 66.257812 C 278.929688 66.140625 278.835938 66.046875 278.71875 66.046875 C 278.601562 66.046875 278.507812 66.140625 278.507812 66.257812 C 278.507812 66.375 278.601562 66.46875 278.71875 66.46875 C 278.835938 66.46875 278.929688 66.375 278.929688 66.257812 Z M 278.929688 66.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 280.441406 64.453125 C 280.441406 64.335938 280.347656 64.242188 280.230469 64.242188 C 280.113281 64.242188 280.019531 64.335938 280.019531 64.453125 C 280.019531 64.570312 280.113281 64.664062 280.230469 64.664062 C 280.347656 64.664062 280.441406 64.570312 280.441406 64.453125 Z M 280.441406 64.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 279.480469 63.34375 C 279.480469 63.226562 279.386719 63.132812 279.269531 63.132812 C 279.152344 63.132812 279.058594 63.226562 279.058594 63.34375 C 279.058594 63.460938 279.152344 63.554688 279.269531 63.554688 C 279.386719 63.554688 279.480469 63.460938 279.480469 63.34375 Z M 279.480469 63.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 281.847656 64.859375 C 281.847656 64.742188 281.753906 64.648438 281.636719 64.648438 C 281.519531 64.648438 281.425781 64.742188 281.425781 64.859375 C 281.425781 64.976562 281.519531 65.070312 281.636719 65.070312 C 281.753906 65.070312 281.847656 64.976562 281.847656 64.859375 Z M 281.847656 64.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 283.355469 65.113281 C 283.355469 64.996094 283.261719 64.902344 283.144531 64.902344 C 283.027344 64.902344 282.933594 64.996094 282.933594 65.113281 C 282.933594 65.230469 283.027344 65.324219 283.144531 65.324219 C 283.261719 65.324219 283.355469 65.230469 283.355469 65.113281 Z M 283.355469 65.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 286.394531 68.136719 C 286.394531 68.019531 286.300781 67.925781 286.183594 67.925781 C 286.066406 67.925781 285.972656 68.019531 285.972656 68.136719 C 285.972656 68.253906 286.066406 68.347656 286.183594 68.347656 C 286.300781 68.347656 286.394531 68.253906 286.394531 68.136719 Z M 286.394531 68.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 287.183594 68.171875 C 287.183594 68.054688 287.089844 67.960938 286.972656 67.960938 C 286.855469 67.960938 286.761719 68.054688 286.761719 68.171875 C 286.761719 68.289062 286.855469 68.382812 286.972656 68.382812 C 287.089844 68.382812 287.183594 68.289062 287.183594 68.171875 Z M 287.183594 68.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 287.390625 71.621094 C 287.390625 71.503906 287.296875 71.410156 287.179688 71.410156 C 287.0625 71.410156 286.96875 71.503906 286.96875 71.621094 C 286.96875 71.738281 287.0625 71.832031 287.179688 71.832031 C 287.296875 71.832031 287.390625 71.738281 287.390625 71.621094 Z M 287.390625 71.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 286.511719 69.136719 C 286.511719 69.019531 286.417969 68.925781 286.300781 68.925781 C 286.183594 68.925781 286.089844 69.019531 286.089844 69.136719 C 286.089844 69.253906 286.183594 69.347656 286.300781 69.347656 C 286.417969 69.347656 286.511719 69.253906 286.511719 69.136719 Z M 286.511719 69.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 284.902344 71.65625 C 284.902344 71.539062 284.808594 71.445312 284.691406 71.445312 C 284.574219 71.445312 284.480469 71.539062 284.480469 71.65625 C 284.480469 71.773438 284.574219 71.867188 284.691406 71.867188 C 284.808594 71.867188 284.902344 71.773438 284.902344 71.65625 Z M 284.902344 71.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 286.980469 72.582031 C 286.980469 72.464844 286.886719 72.371094 286.769531 72.371094 C 286.652344 72.371094 286.558594 72.464844 286.558594 72.582031 C 286.558594 72.699219 286.652344 72.792969 286.769531 72.792969 C 286.886719 72.792969 286.980469 72.699219 286.980469 72.582031 Z M 286.980469 72.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 284.527344 73.691406 C 284.527344 73.574219 284.433594 73.480469 284.316406 73.480469 C 284.199219 73.480469 284.105469 73.574219 284.105469 73.691406 C 284.105469 73.808594 284.199219 73.902344 284.316406 73.902344 C 284.433594 73.902344 284.527344 73.808594 284.527344 73.691406 Z M 284.527344 73.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 285.972656 75.695312 C 285.972656 75.578125 285.878906 75.484375 285.761719 75.484375 C 285.644531 75.484375 285.550781 75.578125 285.550781 75.695312 C 285.550781 75.8125 285.644531 75.90625 285.761719 75.90625 C 285.878906 75.90625 285.972656 75.8125 285.972656 75.695312 Z M 285.972656 75.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 285.121094 73.96875 C 285.121094 73.851562 285.027344 73.757812 284.910156 73.757812 C 284.792969 73.757812 284.699219 73.851562 284.699219 73.96875 C 284.699219 74.085938 284.792969 74.179688 284.910156 74.179688 C 285.027344 74.179688 285.121094 74.085938 285.121094 73.96875 Z M 285.121094 73.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 287.410156 70.851562 C 287.410156 70.734375 287.316406 70.640625 287.199219 70.640625 C 287.082031 70.640625 286.988281 70.734375 286.988281 70.851562 C 286.988281 70.96875 287.082031 71.0625 287.199219 71.0625 C 287.316406 71.0625 287.410156 70.96875 287.410156 70.851562 Z M 287.410156 70.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 285.730469 68.429688 C 285.730469 68.3125 285.636719 68.21875 285.519531 68.21875 C 285.402344 68.21875 285.308594 68.3125 285.308594 68.429688 C 285.308594 68.546875 285.402344 68.640625 285.519531 68.640625 C 285.636719 68.640625 285.730469 68.546875 285.730469 68.429688 Z M 285.730469 68.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 285.066406 68.898438 C 285.066406 68.78125 284.972656 68.6875 284.855469 68.6875 C 284.738281 68.6875 284.644531 68.78125 284.644531 68.898438 C 284.644531 69.015625 284.738281 69.109375 284.855469 69.109375 C 284.972656 69.109375 285.066406 69.015625 285.066406 68.898438 Z M 285.066406 68.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 287.652344 69.535156 C 287.652344 69.417969 287.558594 69.324219 287.441406 69.324219 C 287.324219 69.324219 287.230469 69.417969 287.230469 69.535156 C 287.230469 69.652344 287.324219 69.746094 287.441406 69.746094 C 287.558594 69.746094 287.652344 69.652344 287.652344 69.535156 Z M 287.652344 69.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 286.707031 70.90625 C 286.707031 70.789062 286.613281 70.695312 286.496094 70.695312 C 286.378906 70.695312 286.285156 70.789062 286.285156 70.90625 C 286.285156 71.023438 286.378906 71.117188 286.496094 71.117188 C 286.613281 71.117188 286.707031 71.023438 286.707031 70.90625 Z M 286.707031 70.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 288.570312 70.4375 C 288.570312 70.320312 288.476562 70.226562 288.359375 70.226562 C 288.242188 70.226562 288.148438 70.320312 288.148438 70.4375 C 288.148438 70.554688 288.242188 70.648438 288.359375 70.648438 C 288.476562 70.648438 288.570312 70.554688 288.570312 70.4375 Z M 288.570312 70.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 290.546875 70.546875 C 290.546875 70.429688 290.453125 70.335938 290.335938 70.335938 C 290.21875 70.335938 290.125 70.429688 290.125 70.546875 C 290.125 70.664062 290.21875 70.757812 290.335938 70.757812 C 290.453125 70.757812 290.546875 70.664062 290.546875 70.546875 Z M 290.546875 70.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 288.964844 70.839844 C 288.964844 70.722656 288.871094 70.628906 288.753906 70.628906 C 288.636719 70.628906 288.542969 70.722656 288.542969 70.839844 C 288.542969 70.957031 288.636719 71.050781 288.753906 71.050781 C 288.871094 71.050781 288.964844 70.957031 288.964844 70.839844 Z M 288.964844 70.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 285.167969 73.078125 C 285.167969 72.960938 285.074219 72.867188 284.957031 72.867188 C 284.839844 72.867188 284.746094 72.960938 284.746094 73.078125 C 284.746094 73.195312 284.839844 73.289062 284.957031 73.289062 C 285.074219 73.289062 285.167969 73.195312 285.167969 73.078125 Z M 285.167969 73.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 286.527344 72.28125 C 286.527344 72.164062 286.433594 72.070312 286.316406 72.070312 C 286.199219 72.070312 286.105469 72.164062 286.105469 72.28125 C 286.105469 72.398438 286.199219 72.492188 286.316406 72.492188 C 286.433594 72.492188 286.527344 72.398438 286.527344 72.28125 Z M 286.527344 72.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 287.429688 71.210938 C 287.429688 71.09375 287.335938 71 287.21875 71 C 287.101562 71 287.007812 71.09375 287.007812 71.210938 C 287.007812 71.328125 287.101562 71.421875 287.21875 71.421875 C 287.335938 71.421875 287.429688 71.328125 287.429688 71.210938 Z M 287.429688 71.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 289.933594 72.390625 C 289.933594 72.273438 289.839844 72.179688 289.722656 72.179688 C 289.605469 72.179688 289.511719 72.273438 289.511719 72.390625 C 289.511719 72.507812 289.605469 72.601562 289.722656 72.601562 C 289.839844 72.601562 289.933594 72.507812 289.933594 72.390625 Z M 289.933594 72.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 290.457031 70.457031 C 290.457031 70.339844 290.363281 70.246094 290.246094 70.246094 C 290.128906 70.246094 290.035156 70.339844 290.035156 70.457031 C 290.035156 70.574219 290.128906 70.667969 290.246094 70.667969 C 290.363281 70.667969 290.457031 70.574219 290.457031 70.457031 Z M 290.457031 70.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 291.320312 73.277344 C 291.320312 73.160156 291.226562 73.066406 291.109375 73.066406 C 290.992188 73.066406 290.898438 73.160156 290.898438 73.277344 C 290.898438 73.394531 290.992188 73.488281 291.109375 73.488281 C 291.226562 73.488281 291.320312 73.394531 291.320312 73.277344 Z M 291.320312 73.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 289.140625 71.660156 C 289.140625 71.542969 289.046875 71.449219 288.929688 71.449219 C 288.8125 71.449219 288.71875 71.542969 288.71875 71.660156 C 288.71875 71.777344 288.8125 71.871094 288.929688 71.871094 C 289.046875 71.871094 289.140625 71.777344 289.140625 71.660156 Z M 289.140625 71.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 285.433594 70.855469 C 285.433594 70.738281 285.339844 70.644531 285.222656 70.644531 C 285.105469 70.644531 285.011719 70.738281 285.011719 70.855469 C 285.011719 70.972656 285.105469 71.066406 285.222656 71.066406 C 285.339844 71.066406 285.433594 70.972656 285.433594 70.855469 Z M 285.433594 70.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 284.992188 71.089844 C 284.992188 70.972656 284.898438 70.878906 284.78125 70.878906 C 284.664062 70.878906 284.570312 70.972656 284.570312 71.089844 C 284.570312 71.207031 284.664062 71.300781 284.78125 71.300781 C 284.898438 71.300781 284.992188 71.207031 284.992188 71.089844 Z M 284.992188 71.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 287.566406 68.867188 C 287.566406 68.75 287.472656 68.65625 287.355469 68.65625 C 287.238281 68.65625 287.144531 68.75 287.144531 68.867188 C 287.144531 68.984375 287.238281 69.078125 287.355469 69.078125 C 287.472656 69.078125 287.566406 68.984375 287.566406 68.867188 Z M 287.566406 68.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 284.988281 68.15625 C 284.988281 68.039062 284.894531 67.945312 284.777344 67.945312 C 284.660156 67.945312 284.566406 68.039062 284.566406 68.15625 C 284.566406 68.273438 284.660156 68.367188 284.777344 68.367188 C 284.894531 68.367188 284.988281 68.273438 284.988281 68.15625 Z M 284.988281 68.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 288.269531 65.800781 C 288.269531 65.683594 288.175781 65.589844 288.058594 65.589844 C 287.941406 65.589844 287.847656 65.683594 287.847656 65.800781 C 287.847656 65.917969 287.941406 66.011719 288.058594 66.011719 C 288.175781 66.011719 288.269531 65.917969 288.269531 65.800781 Z M 288.269531 65.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 288.511719 67.582031 C 288.511719 67.464844 288.417969 67.371094 288.300781 67.371094 C 288.183594 67.371094 288.089844 67.464844 288.089844 67.582031 C 288.089844 67.699219 288.183594 67.792969 288.300781 67.792969 C 288.417969 67.792969 288.511719 67.699219 288.511719 67.582031 Z M 288.511719 67.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 288.171875 69.964844 C 288.171875 69.847656 288.078125 69.753906 287.960938 69.753906 C 287.84375 69.753906 287.75 69.847656 287.75 69.964844 C 287.75 70.082031 287.84375 70.175781 287.960938 70.175781 C 288.078125 70.175781 288.171875 70.082031 288.171875 69.964844 Z M 288.171875 69.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 287.484375 68.984375 C 287.484375 68.867188 287.390625 68.773438 287.273438 68.773438 C 287.15625 68.773438 287.0625 68.867188 287.0625 68.984375 C 287.0625 69.101562 287.15625 69.195312 287.273438 69.195312 C 287.390625 69.195312 287.484375 69.101562 287.484375 68.984375 Z M 287.484375 68.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 286.996094 68.179688 C 286.996094 68.0625 286.902344 67.96875 286.785156 67.96875 C 286.667969 67.96875 286.574219 68.0625 286.574219 68.179688 C 286.574219 68.296875 286.667969 68.390625 286.785156 68.390625 C 286.902344 68.390625 286.996094 68.296875 286.996094 68.179688 Z M 286.996094 68.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 286.210938 69.300781 C 286.210938 69.183594 286.117188 69.089844 286 69.089844 C 285.882812 69.089844 285.789062 69.183594 285.789062 69.300781 C 285.789062 69.417969 285.882812 69.511719 286 69.511719 C 286.117188 69.511719 286.210938 69.417969 286.210938 69.300781 Z M 286.210938 69.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 286.007812 72.457031 C 286.007812 72.339844 285.914062 72.246094 285.796875 72.246094 C 285.679688 72.246094 285.585938 72.339844 285.585938 72.457031 C 285.585938 72.574219 285.679688 72.667969 285.796875 72.667969 C 285.914062 72.667969 286.007812 72.574219 286.007812 72.457031 Z M 286.007812 72.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 286.917969 71.761719 C 286.917969 71.644531 286.824219 71.550781 286.707031 71.550781 C 286.589844 71.550781 286.496094 71.644531 286.496094 71.761719 C 286.496094 71.878906 286.589844 71.972656 286.707031 71.972656 C 286.824219 71.972656 286.917969 71.878906 286.917969 71.761719 Z M 286.917969 71.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 286.078125 70.664062 C 286.078125 70.546875 285.984375 70.453125 285.867188 70.453125 C 285.75 70.453125 285.65625 70.546875 285.65625 70.664062 C 285.65625 70.78125 285.75 70.875 285.867188 70.875 C 285.984375 70.875 286.078125 70.78125 286.078125 70.664062 Z M 286.078125 70.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 286.253906 71.164062 C 286.253906 71.046875 286.160156 70.953125 286.042969 70.953125 C 285.925781 70.953125 285.832031 71.046875 285.832031 71.164062 C 285.832031 71.28125 285.925781 71.375 286.042969 71.375 C 286.160156 71.375 286.253906 71.28125 286.253906 71.164062 Z M 286.253906 71.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 284.492188 72.503906 C 284.492188 72.386719 284.398438 72.292969 284.28125 72.292969 C 284.164062 72.292969 284.070312 72.386719 284.070312 72.503906 C 284.070312 72.621094 284.164062 72.714844 284.28125 72.714844 C 284.398438 72.714844 284.492188 72.621094 284.492188 72.503906 Z M 284.492188 72.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 285.113281 72.960938 C 285.113281 72.84375 285.019531 72.75 284.902344 72.75 C 284.785156 72.75 284.691406 72.84375 284.691406 72.960938 C 284.691406 73.078125 284.785156 73.171875 284.902344 73.171875 C 285.019531 73.171875 285.113281 73.078125 285.113281 72.960938 Z M 285.113281 72.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 285.679688 74.007812 C 285.679688 73.890625 285.585938 73.796875 285.46875 73.796875 C 285.351562 73.796875 285.257812 73.890625 285.257812 74.007812 C 285.257812 74.125 285.351562 74.21875 285.46875 74.21875 C 285.585938 74.21875 285.679688 74.125 285.679688 74.007812 Z M 285.679688 74.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 284.289062 71.921875 C 284.289062 71.804688 284.195312 71.710938 284.078125 71.710938 C 283.960938 71.710938 283.867188 71.804688 283.867188 71.921875 C 283.867188 72.039062 283.960938 72.132812 284.078125 72.132812 C 284.195312 72.132812 284.289062 72.039062 284.289062 71.921875 Z M 284.289062 71.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 283.210938 69.378906 C 283.210938 69.261719 283.117188 69.167969 283 69.167969 C 282.882812 69.167969 282.789062 69.261719 282.789062 69.378906 C 282.789062 69.496094 282.882812 69.589844 283 69.589844 C 283.117188 69.589844 283.210938 69.496094 283.210938 69.378906 Z M 283.210938 69.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 283.28125 68.085938 C 283.28125 67.96875 283.1875 67.875 283.070312 67.875 C 282.953125 67.875 282.859375 67.96875 282.859375 68.085938 C 282.859375 68.203125 282.953125 68.296875 283.070312 68.296875 C 283.1875 68.296875 283.28125 68.203125 283.28125 68.085938 Z M 283.28125 68.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 284.558594 69.316406 C 284.558594 69.199219 284.464844 69.105469 284.347656 69.105469 C 284.230469 69.105469 284.136719 69.199219 284.136719 69.316406 C 284.136719 69.433594 284.230469 69.527344 284.347656 69.527344 C 284.464844 69.527344 284.558594 69.433594 284.558594 69.316406 Z M 284.558594 69.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 281.679688 69.417969 C 281.679688 69.300781 281.585938 69.207031 281.46875 69.207031 C 281.351562 69.207031 281.257812 69.300781 281.257812 69.417969 C 281.257812 69.535156 281.351562 69.628906 281.46875 69.628906 C 281.585938 69.628906 281.679688 69.535156 281.679688 69.417969 Z M 281.679688 69.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 281.757812 71.785156 C 281.757812 71.667969 281.664062 71.574219 281.546875 71.574219 C 281.429688 71.574219 281.335938 71.667969 281.335938 71.785156 C 281.335938 71.902344 281.429688 71.996094 281.546875 71.996094 C 281.664062 71.996094 281.757812 71.902344 281.757812 71.785156 Z M 281.757812 71.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 281.371094 74.386719 C 281.371094 74.269531 281.277344 74.175781 281.160156 74.175781 C 281.042969 74.175781 280.949219 74.269531 280.949219 74.386719 C 280.949219 74.503906 281.042969 74.597656 281.160156 74.597656 C 281.277344 74.597656 281.371094 74.503906 281.371094 74.386719 Z M 281.371094 74.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 278.15625 75.859375 C 278.15625 75.742188 278.0625 75.648438 277.945312 75.648438 C 277.828125 75.648438 277.734375 75.742188 277.734375 75.859375 C 277.734375 75.976562 277.828125 76.070312 277.945312 76.070312 C 278.0625 76.070312 278.15625 75.976562 278.15625 75.859375 Z M 278.15625 75.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.648438 81.820312 C 277.648438 81.703125 277.554688 81.609375 277.4375 81.609375 C 277.320312 81.609375 277.226562 81.703125 277.226562 81.820312 C 277.226562 81.9375 277.320312 82.03125 277.4375 82.03125 C 277.554688 82.03125 277.648438 81.9375 277.648438 81.820312 Z M 277.648438 81.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.558594 80.351562 C 275.558594 80.234375 275.464844 80.140625 275.347656 80.140625 C 275.230469 80.140625 275.136719 80.234375 275.136719 80.351562 C 275.136719 80.46875 275.230469 80.5625 275.347656 80.5625 C 275.464844 80.5625 275.558594 80.46875 275.558594 80.351562 Z M 275.558594 80.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.800781 82.027344 C 277.800781 81.910156 277.707031 81.816406 277.589844 81.816406 C 277.472656 81.816406 277.378906 81.910156 277.378906 82.027344 C 277.378906 82.144531 277.472656 82.238281 277.589844 82.238281 C 277.707031 82.238281 277.800781 82.144531 277.800781 82.027344 Z M 277.800781 82.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 272.996094 85.042969 C 272.996094 84.925781 272.902344 84.832031 272.785156 84.832031 C 272.667969 84.832031 272.574219 84.925781 272.574219 85.042969 C 272.574219 85.160156 272.667969 85.253906 272.785156 85.253906 C 272.902344 85.253906 272.996094 85.160156 272.996094 85.042969 Z M 272.996094 85.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 272.359375 84.558594 C 272.359375 84.441406 272.265625 84.347656 272.148438 84.347656 C 272.03125 84.347656 271.9375 84.441406 271.9375 84.558594 C 271.9375 84.675781 272.03125 84.769531 272.148438 84.769531 C 272.265625 84.769531 272.359375 84.675781 272.359375 84.558594 Z M 272.359375 84.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 272.644531 86.792969 C 272.644531 86.675781 272.550781 86.582031 272.433594 86.582031 C 272.316406 86.582031 272.222656 86.675781 272.222656 86.792969 C 272.222656 86.910156 272.316406 87.003906 272.433594 87.003906 C 272.550781 87.003906 272.644531 86.910156 272.644531 86.792969 Z M 272.644531 86.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.976562 87.367188 C 276.976562 87.25 276.882812 87.15625 276.765625 87.15625 C 276.648438 87.15625 276.554688 87.25 276.554688 87.367188 C 276.554688 87.484375 276.648438 87.578125 276.765625 87.578125 C 276.882812 87.578125 276.976562 87.484375 276.976562 87.367188 Z M 276.976562 87.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.5625 87.273438 C 275.5625 87.15625 275.46875 87.0625 275.351562 87.0625 C 275.234375 87.0625 275.140625 87.15625 275.140625 87.273438 C 275.140625 87.390625 275.234375 87.484375 275.351562 87.484375 C 275.46875 87.484375 275.5625 87.390625 275.5625 87.273438 Z M 275.5625 87.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.078125 88.558594 C 273.078125 88.441406 272.984375 88.347656 272.867188 88.347656 C 272.75 88.347656 272.65625 88.441406 272.65625 88.558594 C 272.65625 88.675781 272.75 88.769531 272.867188 88.769531 C 272.984375 88.769531 273.078125 88.675781 273.078125 88.558594 Z M 273.078125 88.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.320312 91.855469 C 273.320312 91.738281 273.226562 91.644531 273.109375 91.644531 C 272.992188 91.644531 272.898438 91.738281 272.898438 91.855469 C 272.898438 91.972656 272.992188 92.066406 273.109375 92.066406 C 273.226562 92.066406 273.320312 91.972656 273.320312 91.855469 Z M 273.320312 91.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.441406 82.859375 C 276.441406 82.742188 276.347656 82.648438 276.230469 82.648438 C 276.113281 82.648438 276.019531 82.742188 276.019531 82.859375 C 276.019531 82.976562 276.113281 83.070312 276.230469 83.070312 C 276.347656 83.070312 276.441406 82.976562 276.441406 82.859375 Z M 276.441406 82.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.382812 83.597656 C 276.382812 83.480469 276.289062 83.386719 276.171875 83.386719 C 276.054688 83.386719 275.960938 83.480469 275.960938 83.597656 C 275.960938 83.714844 276.054688 83.808594 276.171875 83.808594 C 276.289062 83.808594 276.382812 83.714844 276.382812 83.597656 Z M 276.382812 83.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.742188 84.390625 C 276.742188 84.273438 276.648438 84.179688 276.53125 84.179688 C 276.414062 84.179688 276.320312 84.273438 276.320312 84.390625 C 276.320312 84.507812 276.414062 84.601562 276.53125 84.601562 C 276.648438 84.601562 276.742188 84.507812 276.742188 84.390625 Z M 276.742188 84.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.167969 82.238281 C 277.167969 82.121094 277.074219 82.027344 276.957031 82.027344 C 276.839844 82.027344 276.746094 82.121094 276.746094 82.238281 C 276.746094 82.355469 276.839844 82.449219 276.957031 82.449219 C 277.074219 82.449219 277.167969 82.355469 277.167969 82.238281 Z M 277.167969 82.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.476562 78.398438 C 276.476562 78.28125 276.382812 78.1875 276.265625 78.1875 C 276.148438 78.1875 276.054688 78.28125 276.054688 78.398438 C 276.054688 78.515625 276.148438 78.609375 276.265625 78.609375 C 276.382812 78.609375 276.476562 78.515625 276.476562 78.398438 Z M 276.476562 78.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.132812 77.25 C 275.132812 77.132812 275.039062 77.039062 274.921875 77.039062 C 274.804688 77.039062 274.710938 77.132812 274.710938 77.25 C 274.710938 77.367188 274.804688 77.460938 274.921875 77.460938 C 275.039062 77.460938 275.132812 77.367188 275.132812 77.25 Z M 275.132812 77.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.480469 81.003906 C 276.480469 80.886719 276.386719 80.792969 276.269531 80.792969 C 276.152344 80.792969 276.058594 80.886719 276.058594 81.003906 C 276.058594 81.121094 276.152344 81.214844 276.269531 81.214844 C 276.386719 81.214844 276.480469 81.121094 276.480469 81.003906 Z M 276.480469 81.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.0625 77.179688 C 276.0625 77.0625 275.96875 76.96875 275.851562 76.96875 C 275.734375 76.96875 275.640625 77.0625 275.640625 77.179688 C 275.640625 77.296875 275.734375 77.390625 275.851562 77.390625 C 275.96875 77.390625 276.0625 77.296875 276.0625 77.179688 Z M 276.0625 77.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.710938 77.152344 C 274.710938 77.035156 274.617188 76.941406 274.5 76.941406 C 274.382812 76.941406 274.289062 77.035156 274.289062 77.152344 C 274.289062 77.269531 274.382812 77.363281 274.5 77.363281 C 274.617188 77.363281 274.710938 77.269531 274.710938 77.152344 Z M 274.710938 77.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.304688 74.585938 C 275.304688 74.46875 275.210938 74.375 275.09375 74.375 C 274.976562 74.375 274.882812 74.46875 274.882812 74.585938 C 274.882812 74.703125 274.976562 74.796875 275.09375 74.796875 C 275.210938 74.796875 275.304688 74.703125 275.304688 74.585938 Z M 275.304688 74.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.910156 75.835938 C 273.910156 75.71875 273.816406 75.625 273.699219 75.625 C 273.582031 75.625 273.488281 75.71875 273.488281 75.835938 C 273.488281 75.953125 273.582031 76.046875 273.699219 76.046875 C 273.816406 76.046875 273.910156 75.953125 273.910156 75.835938 Z M 273.910156 75.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 271.039062 78.371094 C 271.039062 78.253906 270.945312 78.160156 270.828125 78.160156 C 270.710938 78.160156 270.617188 78.253906 270.617188 78.371094 C 270.617188 78.488281 270.710938 78.582031 270.828125 78.582031 C 270.945312 78.582031 271.039062 78.488281 271.039062 78.371094 Z M 271.039062 78.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 271.292969 79.324219 C 271.292969 79.207031 271.199219 79.113281 271.082031 79.113281 C 270.964844 79.113281 270.871094 79.207031 270.871094 79.324219 C 270.871094 79.441406 270.964844 79.535156 271.082031 79.535156 C 271.199219 79.535156 271.292969 79.441406 271.292969 79.324219 Z M 271.292969 79.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 271.96875 80.917969 C 271.96875 80.800781 271.875 80.707031 271.757812 80.707031 C 271.640625 80.707031 271.546875 80.800781 271.546875 80.917969 C 271.546875 81.035156 271.640625 81.128906 271.757812 81.128906 C 271.875 81.128906 271.96875 81.035156 271.96875 80.917969 Z M 271.96875 80.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.644531 81.574219 C 266.644531 81.457031 266.550781 81.363281 266.433594 81.363281 C 266.316406 81.363281 266.222656 81.457031 266.222656 81.574219 C 266.222656 81.691406 266.316406 81.785156 266.433594 81.785156 C 266.550781 81.785156 266.644531 81.691406 266.644531 81.574219 Z M 266.644531 81.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.714844 84.765625 C 263.714844 84.648438 263.621094 84.554688 263.503906 84.554688 C 263.386719 84.554688 263.292969 84.648438 263.292969 84.765625 C 263.292969 84.882812 263.386719 84.976562 263.503906 84.976562 C 263.621094 84.976562 263.714844 84.882812 263.714844 84.765625 Z M 263.714844 84.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.039062 85.921875 C 262.039062 85.804688 261.945312 85.710938 261.828125 85.710938 C 261.710938 85.710938 261.617188 85.804688 261.617188 85.921875 C 261.617188 86.039062 261.710938 86.132812 261.828125 86.132812 C 261.945312 86.132812 262.039062 86.039062 262.039062 85.921875 Z M 262.039062 85.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.492188 87.933594 C 264.492188 87.816406 264.398438 87.722656 264.28125 87.722656 C 264.164062 87.722656 264.070312 87.816406 264.070312 87.933594 C 264.070312 88.050781 264.164062 88.144531 264.28125 88.144531 C 264.398438 88.144531 264.492188 88.050781 264.492188 87.933594 Z M 264.492188 87.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.386719 89.839844 C 263.386719 89.722656 263.292969 89.628906 263.175781 89.628906 C 263.058594 89.628906 262.964844 89.722656 262.964844 89.839844 C 262.964844 89.957031 263.058594 90.050781 263.175781 90.050781 C 263.292969 90.050781 263.386719 89.957031 263.386719 89.839844 Z M 263.386719 89.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.945312 88.882812 C 265.945312 88.765625 265.851562 88.671875 265.734375 88.671875 C 265.617188 88.671875 265.523438 88.765625 265.523438 88.882812 C 265.523438 89 265.617188 89.09375 265.734375 89.09375 C 265.851562 89.09375 265.945312 89 265.945312 88.882812 Z M 265.945312 88.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.003906 89.261719 C 268.003906 89.144531 267.910156 89.050781 267.792969 89.050781 C 267.675781 89.050781 267.582031 89.144531 267.582031 89.261719 C 267.582031 89.378906 267.675781 89.472656 267.792969 89.472656 C 267.910156 89.472656 268.003906 89.378906 268.003906 89.261719 Z M 268.003906 89.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 267.410156 89.804688 C 267.410156 89.6875 267.316406 89.59375 267.199219 89.59375 C 267.082031 89.59375 266.988281 89.6875 266.988281 89.804688 C 266.988281 89.921875 267.082031 90.015625 267.199219 90.015625 C 267.316406 90.015625 267.410156 89.921875 267.410156 89.804688 Z M 267.410156 89.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.398438 86.785156 C 266.398438 86.667969 266.304688 86.574219 266.1875 86.574219 C 266.070312 86.574219 265.976562 86.667969 265.976562 86.785156 C 265.976562 86.902344 266.070312 86.996094 266.1875 86.996094 C 266.304688 86.996094 266.398438 86.902344 266.398438 86.785156 Z M 266.398438 86.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.242188 83.898438 C 266.242188 83.78125 266.148438 83.6875 266.03125 83.6875 C 265.914062 83.6875 265.820312 83.78125 265.820312 83.898438 C 265.820312 84.015625 265.914062 84.109375 266.03125 84.109375 C 266.148438 84.109375 266.242188 84.015625 266.242188 83.898438 Z M 266.242188 83.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.074219 85.011719 C 268.074219 84.894531 267.980469 84.800781 267.863281 84.800781 C 267.746094 84.800781 267.652344 84.894531 267.652344 85.011719 C 267.652344 85.128906 267.746094 85.222656 267.863281 85.222656 C 267.980469 85.222656 268.074219 85.128906 268.074219 85.011719 Z M 268.074219 85.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 269.660156 88.035156 C 269.660156 87.917969 269.566406 87.824219 269.449219 87.824219 C 269.332031 87.824219 269.238281 87.917969 269.238281 88.035156 C 269.238281 88.152344 269.332031 88.246094 269.449219 88.246094 C 269.566406 88.246094 269.660156 88.152344 269.660156 88.035156 Z M 269.660156 88.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 269.890625 87.207031 C 269.890625 87.089844 269.796875 86.996094 269.679688 86.996094 C 269.5625 86.996094 269.46875 87.089844 269.46875 87.207031 C 269.46875 87.324219 269.5625 87.417969 269.679688 87.417969 C 269.796875 87.417969 269.890625 87.324219 269.890625 87.207031 Z M 269.890625 87.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 267.984375 85.65625 C 267.984375 85.539062 267.890625 85.445312 267.773438 85.445312 C 267.65625 85.445312 267.5625 85.539062 267.5625 85.65625 C 267.5625 85.773438 267.65625 85.867188 267.773438 85.867188 C 267.890625 85.867188 267.984375 85.773438 267.984375 85.65625 Z M 267.984375 85.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.582031 84.980469 C 268.582031 84.863281 268.488281 84.769531 268.371094 84.769531 C 268.253906 84.769531 268.160156 84.863281 268.160156 84.980469 C 268.160156 85.097656 268.253906 85.191406 268.371094 85.191406 C 268.488281 85.191406 268.582031 85.097656 268.582031 84.980469 Z M 268.582031 84.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 269.832031 84.460938 C 269.832031 84.34375 269.738281 84.25 269.621094 84.25 C 269.503906 84.25 269.410156 84.34375 269.410156 84.460938 C 269.410156 84.578125 269.503906 84.671875 269.621094 84.671875 C 269.738281 84.671875 269.832031 84.578125 269.832031 84.460938 Z M 269.832031 84.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 270.238281 80.503906 C 270.238281 80.386719 270.144531 80.292969 270.027344 80.292969 C 269.910156 80.292969 269.816406 80.386719 269.816406 80.503906 C 269.816406 80.621094 269.910156 80.714844 270.027344 80.714844 C 270.144531 80.714844 270.238281 80.621094 270.238281 80.503906 Z M 270.238281 80.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 270.984375 81.238281 C 270.984375 81.121094 270.890625 81.027344 270.773438 81.027344 C 270.65625 81.027344 270.5625 81.121094 270.5625 81.238281 C 270.5625 81.355469 270.65625 81.449219 270.773438 81.449219 C 270.890625 81.449219 270.984375 81.355469 270.984375 81.238281 Z M 270.984375 81.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.867188 83.074219 C 266.867188 82.957031 266.773438 82.863281 266.65625 82.863281 C 266.539062 82.863281 266.445312 82.957031 266.445312 83.074219 C 266.445312 83.191406 266.539062 83.285156 266.65625 83.285156 C 266.773438 83.285156 266.867188 83.191406 266.867188 83.074219 Z M 266.867188 83.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.210938 83.429688 C 265.210938 83.3125 265.117188 83.21875 265 83.21875 C 264.882812 83.21875 264.789062 83.3125 264.789062 83.429688 C 264.789062 83.546875 264.882812 83.640625 265 83.640625 C 265.117188 83.640625 265.210938 83.546875 265.210938 83.429688 Z M 265.210938 83.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.230469 83.898438 C 266.230469 83.78125 266.136719 83.6875 266.019531 83.6875 C 265.902344 83.6875 265.808594 83.78125 265.808594 83.898438 C 265.808594 84.015625 265.902344 84.109375 266.019531 84.109375 C 266.136719 84.109375 266.230469 84.015625 266.230469 83.898438 Z M 266.230469 83.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.570312 86.433594 C 266.570312 86.316406 266.476562 86.222656 266.359375 86.222656 C 266.242188 86.222656 266.148438 86.316406 266.148438 86.433594 C 266.148438 86.550781 266.242188 86.644531 266.359375 86.644531 C 266.476562 86.644531 266.570312 86.550781 266.570312 86.433594 Z M 266.570312 86.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.601562 85.96875 C 266.601562 85.851562 266.507812 85.757812 266.390625 85.757812 C 266.273438 85.757812 266.179688 85.851562 266.179688 85.96875 C 266.179688 86.085938 266.273438 86.179688 266.390625 86.179688 C 266.507812 86.179688 266.601562 86.085938 266.601562 85.96875 Z M 266.601562 85.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.714844 84.804688 C 263.714844 84.6875 263.621094 84.59375 263.503906 84.59375 C 263.386719 84.59375 263.292969 84.6875 263.292969 84.804688 C 263.292969 84.921875 263.386719 85.015625 263.503906 85.015625 C 263.621094 85.015625 263.714844 84.921875 263.714844 84.804688 Z M 263.714844 84.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 267.601562 82.207031 C 267.601562 82.089844 267.507812 81.996094 267.390625 81.996094 C 267.273438 81.996094 267.179688 82.089844 267.179688 82.207031 C 267.179688 82.324219 267.273438 82.417969 267.390625 82.417969 C 267.507812 82.417969 267.601562 82.324219 267.601562 82.207031 Z M 267.601562 82.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.75 84.902344 C 264.75 84.785156 264.65625 84.691406 264.539062 84.691406 C 264.421875 84.691406 264.328125 84.785156 264.328125 84.902344 C 264.328125 85.019531 264.421875 85.113281 264.539062 85.113281 C 264.65625 85.113281 264.75 85.019531 264.75 84.902344 Z M 264.75 84.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.414062 87.40625 C 266.414062 87.289062 266.320312 87.195312 266.203125 87.195312 C 266.085938 87.195312 265.992188 87.289062 265.992188 87.40625 C 265.992188 87.523438 266.085938 87.617188 266.203125 87.617188 C 266.320312 87.617188 266.414062 87.523438 266.414062 87.40625 Z M 266.414062 87.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.816406 86.488281 C 265.816406 86.371094 265.722656 86.277344 265.605469 86.277344 C 265.488281 86.277344 265.394531 86.371094 265.394531 86.488281 C 265.394531 86.605469 265.488281 86.699219 265.605469 86.699219 C 265.722656 86.699219 265.816406 86.605469 265.816406 86.488281 Z M 265.816406 86.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.765625 86.074219 C 263.765625 85.957031 263.671875 85.863281 263.554688 85.863281 C 263.4375 85.863281 263.34375 85.957031 263.34375 86.074219 C 263.34375 86.191406 263.4375 86.285156 263.554688 86.285156 C 263.671875 86.285156 263.765625 86.191406 263.765625 86.074219 Z M 263.765625 86.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.050781 84.78125 C 264.050781 84.664062 263.957031 84.570312 263.839844 84.570312 C 263.722656 84.570312 263.628906 84.664062 263.628906 84.78125 C 263.628906 84.898438 263.722656 84.992188 263.839844 84.992188 C 263.957031 84.992188 264.050781 84.898438 264.050781 84.78125 Z M 264.050781 84.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.773438 84.84375 C 262.773438 84.726562 262.679688 84.632812 262.5625 84.632812 C 262.445312 84.632812 262.351562 84.726562 262.351562 84.84375 C 262.351562 84.960938 262.445312 85.054688 262.5625 85.054688 C 262.679688 85.054688 262.773438 84.960938 262.773438 84.84375 Z M 262.773438 84.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.804688 85.253906 C 265.804688 85.136719 265.710938 85.042969 265.59375 85.042969 C 265.476562 85.042969 265.382812 85.136719 265.382812 85.253906 C 265.382812 85.371094 265.476562 85.464844 265.59375 85.464844 C 265.710938 85.464844 265.804688 85.371094 265.804688 85.253906 Z M 265.804688 85.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.054688 83.429688 C 266.054688 83.3125 265.960938 83.21875 265.84375 83.21875 C 265.726562 83.21875 265.632812 83.3125 265.632812 83.429688 C 265.632812 83.546875 265.726562 83.640625 265.84375 83.640625 C 265.960938 83.640625 266.054688 83.546875 266.054688 83.429688 Z M 266.054688 83.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 267.539062 81.972656 C 267.539062 81.855469 267.445312 81.761719 267.328125 81.761719 C 267.210938 81.761719 267.117188 81.855469 267.117188 81.972656 C 267.117188 82.089844 267.210938 82.183594 267.328125 82.183594 C 267.445312 82.183594 267.539062 82.089844 267.539062 81.972656 Z M 267.539062 81.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 267.886719 82.105469 C 267.886719 81.988281 267.792969 81.894531 267.675781 81.894531 C 267.558594 81.894531 267.464844 81.988281 267.464844 82.105469 C 267.464844 82.222656 267.558594 82.316406 267.675781 82.316406 C 267.792969 82.316406 267.886719 82.222656 267.886719 82.105469 Z M 267.886719 82.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.824219 81.617188 C 266.824219 81.5 266.730469 81.40625 266.613281 81.40625 C 266.496094 81.40625 266.402344 81.5 266.402344 81.617188 C 266.402344 81.734375 266.496094 81.828125 266.613281 81.828125 C 266.730469 81.828125 266.824219 81.734375 266.824219 81.617188 Z M 266.824219 81.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.980469 79.308594 C 265.980469 79.191406 265.886719 79.097656 265.769531 79.097656 C 265.652344 79.097656 265.558594 79.191406 265.558594 79.308594 C 265.558594 79.425781 265.652344 79.519531 265.769531 79.519531 C 265.886719 79.519531 265.980469 79.425781 265.980469 79.308594 Z M 265.980469 79.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 267.980469 77.214844 C 267.980469 77.097656 267.886719 77.003906 267.769531 77.003906 C 267.652344 77.003906 267.558594 77.097656 267.558594 77.214844 C 267.558594 77.332031 267.652344 77.425781 267.769531 77.425781 C 267.886719 77.425781 267.980469 77.332031 267.980469 77.214844 Z M 267.980469 77.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.699219 75.863281 C 268.699219 75.746094 268.605469 75.652344 268.488281 75.652344 C 268.371094 75.652344 268.277344 75.746094 268.277344 75.863281 C 268.277344 75.980469 268.371094 76.074219 268.488281 76.074219 C 268.605469 76.074219 268.699219 75.980469 268.699219 75.863281 Z M 268.699219 75.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 272.046875 81.878906 C 272.046875 81.761719 271.953125 81.667969 271.835938 81.667969 C 271.71875 81.667969 271.625 81.761719 271.625 81.878906 C 271.625 81.996094 271.71875 82.089844 271.835938 82.089844 C 271.953125 82.089844 272.046875 81.996094 272.046875 81.878906 Z M 272.046875 81.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.613281 83.269531 C 276.613281 83.152344 276.519531 83.058594 276.402344 83.058594 C 276.285156 83.058594 276.191406 83.152344 276.191406 83.269531 C 276.191406 83.386719 276.285156 83.480469 276.402344 83.480469 C 276.519531 83.480469 276.613281 83.386719 276.613281 83.269531 Z M 276.613281 83.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 278.507812 84.71875 C 278.507812 84.601562 278.414062 84.507812 278.296875 84.507812 C 278.179688 84.507812 278.085938 84.601562 278.085938 84.71875 C 278.085938 84.835938 278.179688 84.929688 278.296875 84.929688 C 278.414062 84.929688 278.507812 84.835938 278.507812 84.71875 Z M 278.507812 84.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 278.429688 85.65625 C 278.429688 85.539062 278.335938 85.445312 278.21875 85.445312 C 278.101562 85.445312 278.007812 85.539062 278.007812 85.65625 C 278.007812 85.773438 278.101562 85.867188 278.21875 85.867188 C 278.335938 85.867188 278.429688 85.773438 278.429688 85.65625 Z M 278.429688 85.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.664062 83.863281 C 276.664062 83.746094 276.570312 83.652344 276.453125 83.652344 C 276.335938 83.652344 276.242188 83.746094 276.242188 83.863281 C 276.242188 83.980469 276.335938 84.074219 276.453125 84.074219 C 276.570312 84.074219 276.664062 83.980469 276.664062 83.863281 Z M 276.664062 83.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.070312 86.550781 C 273.070312 86.433594 272.976562 86.339844 272.859375 86.339844 C 272.742188 86.339844 272.648438 86.433594 272.648438 86.550781 C 272.648438 86.667969 272.742188 86.761719 272.859375 86.761719 C 272.976562 86.761719 273.070312 86.667969 273.070312 86.550781 Z M 273.070312 86.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.300781 89.535156 C 275.300781 89.417969 275.207031 89.324219 275.089844 89.324219 C 274.972656 89.324219 274.878906 89.417969 274.878906 89.535156 C 274.878906 89.652344 274.972656 89.746094 275.089844 89.746094 C 275.207031 89.746094 275.300781 89.652344 275.300781 89.535156 Z M 275.300781 89.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.695312 92.996094 C 273.695312 92.878906 273.601562 92.785156 273.484375 92.785156 C 273.367188 92.785156 273.273438 92.878906 273.273438 92.996094 C 273.273438 93.113281 273.367188 93.207031 273.484375 93.207031 C 273.601562 93.207031 273.695312 93.113281 273.695312 92.996094 Z M 273.695312 92.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 272.855469 92.605469 C 272.855469 92.488281 272.761719 92.394531 272.644531 92.394531 C 272.527344 92.394531 272.433594 92.488281 272.433594 92.605469 C 272.433594 92.722656 272.527344 92.816406 272.644531 92.816406 C 272.761719 92.816406 272.855469 92.722656 272.855469 92.605469 Z M 272.855469 92.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.683594 95.894531 C 275.683594 95.777344 275.589844 95.683594 275.472656 95.683594 C 275.355469 95.683594 275.261719 95.777344 275.261719 95.894531 C 275.261719 96.011719 275.355469 96.105469 275.472656 96.105469 C 275.589844 96.105469 275.683594 96.011719 275.683594 95.894531 Z M 275.683594 95.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.066406 92.949219 C 276.066406 92.832031 275.972656 92.738281 275.855469 92.738281 C 275.738281 92.738281 275.644531 92.832031 275.644531 92.949219 C 275.644531 93.066406 275.738281 93.160156 275.855469 93.160156 C 275.972656 93.160156 276.066406 93.066406 276.066406 92.949219 Z M 276.066406 92.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.445312 91.101562 C 277.445312 90.984375 277.351562 90.890625 277.234375 90.890625 C 277.117188 90.890625 277.023438 90.984375 277.023438 91.101562 C 277.023438 91.21875 277.117188 91.3125 277.234375 91.3125 C 277.351562 91.3125 277.445312 91.21875 277.445312 91.101562 Z M 277.445312 91.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.832031 92.777344 C 274.832031 92.660156 274.738281 92.566406 274.621094 92.566406 C 274.503906 92.566406 274.410156 92.660156 274.410156 92.777344 C 274.410156 92.894531 274.503906 92.988281 274.621094 92.988281 C 274.738281 92.988281 274.832031 92.894531 274.832031 92.777344 Z M 274.832031 92.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.820312 93.71875 C 274.820312 93.601562 274.726562 93.507812 274.609375 93.507812 C 274.492188 93.507812 274.398438 93.601562 274.398438 93.71875 C 274.398438 93.835938 274.492188 93.929688 274.609375 93.929688 C 274.726562 93.929688 274.820312 93.835938 274.820312 93.71875 Z M 274.820312 93.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.867188 93.324219 C 276.867188 93.207031 276.773438 93.113281 276.65625 93.113281 C 276.539062 93.113281 276.445312 93.207031 276.445312 93.324219 C 276.445312 93.441406 276.539062 93.535156 276.65625 93.535156 C 276.773438 93.535156 276.867188 93.441406 276.867188 93.324219 Z M 276.867188 93.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 279.386719 91.816406 C 279.386719 91.699219 279.292969 91.605469 279.175781 91.605469 C 279.058594 91.605469 278.964844 91.699219 278.964844 91.816406 C 278.964844 91.933594 279.058594 92.027344 279.175781 92.027344 C 279.292969 92.027344 279.386719 91.933594 279.386719 91.816406 Z M 279.386719 91.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 280.070312 92.046875 C 280.070312 91.929688 279.976562 91.835938 279.859375 91.835938 C 279.742188 91.835938 279.648438 91.929688 279.648438 92.046875 C 279.648438 92.164062 279.742188 92.257812 279.859375 92.257812 C 279.976562 92.257812 280.070312 92.164062 280.070312 92.046875 Z M 280.070312 92.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.847656 92.058594 C 277.847656 91.941406 277.753906 91.847656 277.636719 91.847656 C 277.519531 91.847656 277.425781 91.941406 277.425781 92.058594 C 277.425781 92.175781 277.519531 92.269531 277.636719 92.269531 C 277.753906 92.269531 277.847656 92.175781 277.847656 92.058594 Z M 277.847656 92.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 281.191406 93.152344 C 281.191406 93.035156 281.097656 92.941406 280.980469 92.941406 C 280.863281 92.941406 280.769531 93.035156 280.769531 93.152344 C 280.769531 93.269531 280.863281 93.363281 280.980469 93.363281 C 281.097656 93.363281 281.191406 93.269531 281.191406 93.152344 Z M 281.191406 93.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 284.296875 96.582031 C 284.296875 96.464844 284.203125 96.371094 284.085938 96.371094 C 283.96875 96.371094 283.875 96.464844 283.875 96.582031 C 283.875 96.699219 283.96875 96.792969 284.085938 96.792969 C 284.203125 96.792969 284.296875 96.699219 284.296875 96.582031 Z M 284.296875 96.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 282.734375 93.457031 C 282.734375 93.339844 282.640625 93.246094 282.523438 93.246094 C 282.40625 93.246094 282.3125 93.339844 282.3125 93.457031 C 282.3125 93.574219 282.40625 93.667969 282.523438 93.667969 C 282.640625 93.667969 282.734375 93.574219 282.734375 93.457031 Z M 282.734375 93.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 283.09375 96.222656 C 283.09375 96.105469 283 96.011719 282.882812 96.011719 C 282.765625 96.011719 282.671875 96.105469 282.671875 96.222656 C 282.671875 96.339844 282.765625 96.433594 282.882812 96.433594 C 283 96.433594 283.09375 96.339844 283.09375 96.222656 Z M 283.09375 96.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 283.296875 97.191406 C 283.296875 97.074219 283.203125 96.980469 283.085938 96.980469 C 282.96875 96.980469 282.875 97.074219 282.875 97.191406 C 282.875 97.308594 282.96875 97.402344 283.085938 97.402344 C 283.203125 97.402344 283.296875 97.308594 283.296875 97.191406 Z M 283.296875 97.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 283.230469 99.46875 C 283.230469 99.351562 283.136719 99.257812 283.019531 99.257812 C 282.902344 99.257812 282.808594 99.351562 282.808594 99.46875 C 282.808594 99.585938 282.902344 99.679688 283.019531 99.679688 C 283.136719 99.679688 283.230469 99.585938 283.230469 99.46875 Z M 283.230469 99.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 285.054688 101.089844 C 285.054688 100.972656 284.960938 100.878906 284.84375 100.878906 C 284.726562 100.878906 284.632812 100.972656 284.632812 101.089844 C 284.632812 101.207031 284.726562 101.300781 284.84375 101.300781 C 284.960938 101.300781 285.054688 101.207031 285.054688 101.089844 Z M 285.054688 101.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 279.222656 103.035156 C 279.222656 102.917969 279.128906 102.824219 279.011719 102.824219 C 278.894531 102.824219 278.800781 102.917969 278.800781 103.035156 C 278.800781 103.152344 278.894531 103.246094 279.011719 103.246094 C 279.128906 103.246094 279.222656 103.152344 279.222656 103.035156 Z M 279.222656 103.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 278.523438 104.300781 C 278.523438 104.183594 278.429688 104.089844 278.3125 104.089844 C 278.195312 104.089844 278.101562 104.183594 278.101562 104.300781 C 278.101562 104.417969 278.195312 104.511719 278.3125 104.511719 C 278.429688 104.511719 278.523438 104.417969 278.523438 104.300781 Z M 278.523438 104.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 280.125 104.675781 C 280.125 104.558594 280.03125 104.464844 279.914062 104.464844 C 279.796875 104.464844 279.703125 104.558594 279.703125 104.675781 C 279.703125 104.792969 279.796875 104.886719 279.914062 104.886719 C 280.03125 104.886719 280.125 104.792969 280.125 104.675781 Z M 280.125 104.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 281.804688 105.429688 C 281.804688 105.3125 281.710938 105.21875 281.59375 105.21875 C 281.476562 105.21875 281.382812 105.3125 281.382812 105.429688 C 281.382812 105.546875 281.476562 105.640625 281.59375 105.640625 C 281.710938 105.640625 281.804688 105.546875 281.804688 105.429688 Z M 281.804688 105.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 284.695312 109.816406 C 284.695312 109.699219 284.601562 109.605469 284.484375 109.605469 C 284.367188 109.605469 284.273438 109.699219 284.273438 109.816406 C 284.273438 109.933594 284.367188 110.027344 284.484375 110.027344 C 284.601562 110.027344 284.695312 109.933594 284.695312 109.816406 Z M 284.695312 109.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 285.421875 107.191406 C 285.421875 107.074219 285.328125 106.980469 285.210938 106.980469 C 285.09375 106.980469 285 107.074219 285 107.191406 C 285 107.308594 285.09375 107.402344 285.210938 107.402344 C 285.328125 107.402344 285.421875 107.308594 285.421875 107.191406 Z M 285.421875 107.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 288.65625 109.839844 C 288.65625 109.722656 288.5625 109.628906 288.445312 109.628906 C 288.328125 109.628906 288.234375 109.722656 288.234375 109.839844 C 288.234375 109.957031 288.328125 110.050781 288.445312 110.050781 C 288.5625 110.050781 288.65625 109.957031 288.65625 109.839844 Z M 288.65625 109.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 289.425781 109.738281 C 289.425781 109.621094 289.332031 109.527344 289.214844 109.527344 C 289.097656 109.527344 289.003906 109.621094 289.003906 109.738281 C 289.003906 109.855469 289.097656 109.949219 289.214844 109.949219 C 289.332031 109.949219 289.425781 109.855469 289.425781 109.738281 Z M 289.425781 109.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 288.78125 110.324219 C 288.78125 110.207031 288.6875 110.113281 288.570312 110.113281 C 288.453125 110.113281 288.359375 110.207031 288.359375 110.324219 C 288.359375 110.441406 288.453125 110.535156 288.570312 110.535156 C 288.6875 110.535156 288.78125 110.441406 288.78125 110.324219 Z M 288.78125 110.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 289.78125 112.679688 C 289.78125 112.5625 289.6875 112.46875 289.570312 112.46875 C 289.453125 112.46875 289.359375 112.5625 289.359375 112.679688 C 289.359375 112.796875 289.453125 112.890625 289.570312 112.890625 C 289.6875 112.890625 289.78125 112.796875 289.78125 112.679688 Z M 289.78125 112.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 286.667969 114.46875 C 286.667969 114.351562 286.574219 114.257812 286.457031 114.257812 C 286.339844 114.257812 286.246094 114.351562 286.246094 114.46875 C 286.246094 114.585938 286.339844 114.679688 286.457031 114.679688 C 286.574219 114.679688 286.667969 114.585938 286.667969 114.46875 Z M 286.667969 114.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 286.867188 116.277344 C 286.867188 116.160156 286.773438 116.066406 286.65625 116.066406 C 286.539062 116.066406 286.445312 116.160156 286.445312 116.277344 C 286.445312 116.394531 286.539062 116.488281 286.65625 116.488281 C 286.773438 116.488281 286.867188 116.394531 286.867188 116.277344 Z M 286.867188 116.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 292.515625 115.496094 C 292.515625 115.378906 292.421875 115.285156 292.304688 115.285156 C 292.1875 115.285156 292.09375 115.378906 292.09375 115.496094 C 292.09375 115.613281 292.1875 115.707031 292.304688 115.707031 C 292.421875 115.707031 292.515625 115.613281 292.515625 115.496094 Z M 292.515625 115.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 291.605469 116.863281 C 291.605469 116.746094 291.511719 116.652344 291.394531 116.652344 C 291.277344 116.652344 291.183594 116.746094 291.183594 116.863281 C 291.183594 116.980469 291.277344 117.074219 291.394531 117.074219 C 291.511719 117.074219 291.605469 116.980469 291.605469 116.863281 Z M 291.605469 116.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 293.046875 114.703125 C 293.046875 114.585938 292.953125 114.492188 292.835938 114.492188 C 292.71875 114.492188 292.625 114.585938 292.625 114.703125 C 292.625 114.820312 292.71875 114.914062 292.835938 114.914062 C 292.953125 114.914062 293.046875 114.820312 293.046875 114.703125 Z M 293.046875 114.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 292.335938 116.136719 C 292.335938 116.019531 292.242188 115.925781 292.125 115.925781 C 292.007812 115.925781 291.914062 116.019531 291.914062 116.136719 C 291.914062 116.253906 292.007812 116.347656 292.125 116.347656 C 292.242188 116.347656 292.335938 116.253906 292.335938 116.136719 Z M 292.335938 116.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 291.289062 117.117188 C 291.289062 117 291.195312 116.90625 291.078125 116.90625 C 290.960938 116.90625 290.867188 117 290.867188 117.117188 C 290.867188 117.234375 290.960938 117.328125 291.078125 117.328125 C 291.195312 117.328125 291.289062 117.234375 291.289062 117.117188 Z M 291.289062 117.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 291.101562 115.667969 C 291.101562 115.550781 291.007812 115.457031 290.890625 115.457031 C 290.773438 115.457031 290.679688 115.550781 290.679688 115.667969 C 290.679688 115.785156 290.773438 115.878906 290.890625 115.878906 C 291.007812 115.878906 291.101562 115.785156 291.101562 115.667969 Z M 291.101562 115.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 291.574219 112.964844 C 291.574219 112.847656 291.480469 112.753906 291.363281 112.753906 C 291.246094 112.753906 291.152344 112.847656 291.152344 112.964844 C 291.152344 113.082031 291.246094 113.175781 291.363281 113.175781 C 291.480469 113.175781 291.574219 113.082031 291.574219 112.964844 Z M 291.574219 112.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 292.570312 116.566406 C 292.570312 116.449219 292.476562 116.355469 292.359375 116.355469 C 292.242188 116.355469 292.148438 116.449219 292.148438 116.566406 C 292.148438 116.683594 292.242188 116.777344 292.359375 116.777344 C 292.476562 116.777344 292.570312 116.683594 292.570312 116.566406 Z M 292.570312 116.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 292.140625 118.988281 C 292.140625 118.871094 292.046875 118.777344 291.929688 118.777344 C 291.8125 118.777344 291.71875 118.871094 291.71875 118.988281 C 291.71875 119.105469 291.8125 119.199219 291.929688 119.199219 C 292.046875 119.199219 292.140625 119.105469 292.140625 118.988281 Z M 292.140625 118.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 289.148438 119.230469 C 289.148438 119.113281 289.054688 119.019531 288.9375 119.019531 C 288.820312 119.019531 288.726562 119.113281 288.726562 119.230469 C 288.726562 119.347656 288.820312 119.441406 288.9375 119.441406 C 289.054688 119.441406 289.148438 119.347656 289.148438 119.230469 Z M 289.148438 119.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 288.976562 119.007812 C 288.976562 118.890625 288.882812 118.796875 288.765625 118.796875 C 288.648438 118.796875 288.554688 118.890625 288.554688 119.007812 C 288.554688 119.125 288.648438 119.21875 288.765625 119.21875 C 288.882812 119.21875 288.976562 119.125 288.976562 119.007812 Z M 288.976562 119.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 291.042969 117.007812 C 291.042969 116.890625 290.949219 116.796875 290.832031 116.796875 C 290.714844 116.796875 290.621094 116.890625 290.621094 117.007812 C 290.621094 117.125 290.714844 117.21875 290.832031 117.21875 C 290.949219 117.21875 291.042969 117.125 291.042969 117.007812 Z M 291.042969 117.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 289.125 119.539062 C 289.125 119.421875 289.03125 119.328125 288.914062 119.328125 C 288.796875 119.328125 288.703125 119.421875 288.703125 119.539062 C 288.703125 119.65625 288.796875 119.75 288.914062 119.75 C 289.03125 119.75 289.125 119.65625 289.125 119.539062 Z M 289.125 119.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 291.367188 119.449219 C 291.367188 119.332031 291.273438 119.238281 291.15625 119.238281 C 291.039062 119.238281 290.945312 119.332031 290.945312 119.449219 C 290.945312 119.566406 291.039062 119.660156 291.15625 119.660156 C 291.273438 119.660156 291.367188 119.566406 291.367188 119.449219 Z M 291.367188 119.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 292.285156 117.753906 C 292.285156 117.636719 292.191406 117.542969 292.074219 117.542969 C 291.957031 117.542969 291.863281 117.636719 291.863281 117.753906 C 291.863281 117.871094 291.957031 117.964844 292.074219 117.964844 C 292.191406 117.964844 292.285156 117.871094 292.285156 117.753906 Z M 292.285156 117.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 294.386719 119.4375 C 294.386719 119.320312 294.292969 119.226562 294.175781 119.226562 C 294.058594 119.226562 293.964844 119.320312 293.964844 119.4375 C 293.964844 119.554688 294.058594 119.648438 294.175781 119.648438 C 294.292969 119.648438 294.386719 119.554688 294.386719 119.4375 Z M 294.386719 119.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 292.5 121.210938 C 292.5 121.09375 292.40625 121 292.289062 121 C 292.171875 121 292.078125 121.09375 292.078125 121.210938 C 292.078125 121.328125 292.171875 121.421875 292.289062 121.421875 C 292.40625 121.421875 292.5 121.328125 292.5 121.210938 Z M 292.5 121.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 296.265625 124.242188 C 296.265625 124.125 296.171875 124.03125 296.054688 124.03125 C 295.9375 124.03125 295.84375 124.125 295.84375 124.242188 C 295.84375 124.359375 295.9375 124.453125 296.054688 124.453125 C 296.171875 124.453125 296.265625 124.359375 296.265625 124.242188 Z M 296.265625 124.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 293.535156 122.171875 C 293.535156 122.054688 293.441406 121.960938 293.324219 121.960938 C 293.207031 121.960938 293.113281 122.054688 293.113281 122.171875 C 293.113281 122.289062 293.207031 122.382812 293.324219 122.382812 C 293.441406 122.382812 293.535156 122.289062 293.535156 122.171875 Z M 293.535156 122.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 295.691406 123.269531 C 295.691406 123.152344 295.597656 123.058594 295.480469 123.058594 C 295.363281 123.058594 295.269531 123.152344 295.269531 123.269531 C 295.269531 123.386719 295.363281 123.480469 295.480469 123.480469 C 295.597656 123.480469 295.691406 123.386719 295.691406 123.269531 Z M 295.691406 123.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 292.636719 120.972656 C 292.636719 120.855469 292.542969 120.761719 292.425781 120.761719 C 292.308594 120.761719 292.214844 120.855469 292.214844 120.972656 C 292.214844 121.089844 292.308594 121.183594 292.425781 121.183594 C 292.542969 121.183594 292.636719 121.089844 292.636719 120.972656 Z M 292.636719 120.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 290.40625 119.828125 C 290.40625 119.710938 290.3125 119.617188 290.195312 119.617188 C 290.078125 119.617188 289.984375 119.710938 289.984375 119.828125 C 289.984375 119.945312 290.078125 120.039062 290.195312 120.039062 C 290.3125 120.039062 290.40625 119.945312 290.40625 119.828125 Z M 290.40625 119.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 291.621094 121.347656 C 291.621094 121.230469 291.527344 121.136719 291.410156 121.136719 C 291.292969 121.136719 291.199219 121.230469 291.199219 121.347656 C 291.199219 121.464844 291.292969 121.558594 291.410156 121.558594 C 291.527344 121.558594 291.621094 121.464844 291.621094 121.347656 Z M 291.621094 121.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 292.96875 125.234375 C 292.96875 125.117188 292.875 125.023438 292.757812 125.023438 C 292.640625 125.023438 292.546875 125.117188 292.546875 125.234375 C 292.546875 125.351562 292.640625 125.445312 292.757812 125.445312 C 292.875 125.445312 292.96875 125.351562 292.96875 125.234375 Z M 292.96875 125.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 291.574219 123.519531 C 291.574219 123.402344 291.480469 123.308594 291.363281 123.308594 C 291.246094 123.308594 291.152344 123.402344 291.152344 123.519531 C 291.152344 123.636719 291.246094 123.730469 291.363281 123.730469 C 291.480469 123.730469 291.574219 123.636719 291.574219 123.519531 Z M 291.574219 123.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 287.71875 122.523438 C 287.71875 122.40625 287.625 122.3125 287.507812 122.3125 C 287.390625 122.3125 287.296875 122.40625 287.296875 122.523438 C 287.296875 122.640625 287.390625 122.734375 287.507812 122.734375 C 287.625 122.734375 287.71875 122.640625 287.71875 122.523438 Z M 287.71875 122.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 287.875 126.175781 C 287.875 126.058594 287.78125 125.964844 287.664062 125.964844 C 287.546875 125.964844 287.453125 126.058594 287.453125 126.175781 C 287.453125 126.292969 287.546875 126.386719 287.664062 126.386719 C 287.78125 126.386719 287.875 126.292969 287.875 126.175781 Z M 287.875 126.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 289.148438 126.402344 C 289.148438 126.285156 289.054688 126.191406 288.9375 126.191406 C 288.820312 126.191406 288.726562 126.285156 288.726562 126.402344 C 288.726562 126.519531 288.820312 126.613281 288.9375 126.613281 C 289.054688 126.613281 289.148438 126.519531 289.148438 126.402344 Z M 289.148438 126.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 288.605469 128.761719 C 288.605469 128.644531 288.511719 128.550781 288.394531 128.550781 C 288.277344 128.550781 288.183594 128.644531 288.183594 128.761719 C 288.183594 128.878906 288.277344 128.972656 288.394531 128.972656 C 288.511719 128.972656 288.605469 128.878906 288.605469 128.761719 Z M 288.605469 128.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 288.566406 126.765625 C 288.566406 126.648438 288.472656 126.554688 288.355469 126.554688 C 288.238281 126.554688 288.144531 126.648438 288.144531 126.765625 C 288.144531 126.882812 288.238281 126.976562 288.355469 126.976562 C 288.472656 126.976562 288.566406 126.882812 288.566406 126.765625 Z M 288.566406 126.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 291.761719 127.726562 C 291.761719 127.609375 291.667969 127.515625 291.550781 127.515625 C 291.433594 127.515625 291.339844 127.609375 291.339844 127.726562 C 291.339844 127.84375 291.433594 127.9375 291.550781 127.9375 C 291.667969 127.9375 291.761719 127.84375 291.761719 127.726562 Z M 291.761719 127.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 289.925781 124.664062 C 289.925781 124.546875 289.832031 124.453125 289.714844 124.453125 C 289.597656 124.453125 289.503906 124.546875 289.503906 124.664062 C 289.503906 124.78125 289.597656 124.875 289.714844 124.875 C 289.832031 124.875 289.925781 124.78125 289.925781 124.664062 Z M 289.925781 124.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 290.890625 126.285156 C 290.890625 126.167969 290.796875 126.074219 290.679688 126.074219 C 290.5625 126.074219 290.46875 126.167969 290.46875 126.285156 C 290.46875 126.402344 290.5625 126.496094 290.679688 126.496094 C 290.796875 126.496094 290.890625 126.402344 290.890625 126.285156 Z M 290.890625 126.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 289.746094 127.953125 C 289.746094 127.835938 289.652344 127.742188 289.535156 127.742188 C 289.417969 127.742188 289.324219 127.835938 289.324219 127.953125 C 289.324219 128.070312 289.417969 128.164062 289.535156 128.164062 C 289.652344 128.164062 289.746094 128.070312 289.746094 127.953125 Z M 289.746094 127.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 287.851562 132.691406 C 287.851562 132.574219 287.757812 132.480469 287.640625 132.480469 C 287.523438 132.480469 287.429688 132.574219 287.429688 132.691406 C 287.429688 132.808594 287.523438 132.902344 287.640625 132.902344 C 287.757812 132.902344 287.851562 132.808594 287.851562 132.691406 Z M 287.851562 132.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 287.746094 133.652344 C 287.746094 133.535156 287.652344 133.441406 287.535156 133.441406 C 287.417969 133.441406 287.324219 133.535156 287.324219 133.652344 C 287.324219 133.769531 287.417969 133.863281 287.535156 133.863281 C 287.652344 133.863281 287.746094 133.769531 287.746094 133.652344 Z M 287.746094 133.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 284.488281 134.949219 C 284.488281 134.832031 284.394531 134.738281 284.277344 134.738281 C 284.160156 134.738281 284.066406 134.832031 284.066406 134.949219 C 284.066406 135.066406 284.160156 135.160156 284.277344 135.160156 C 284.394531 135.160156 284.488281 135.066406 284.488281 134.949219 Z M 284.488281 134.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 282.011719 136.097656 C 282.011719 135.980469 281.917969 135.886719 281.800781 135.886719 C 281.683594 135.886719 281.589844 135.980469 281.589844 136.097656 C 281.589844 136.214844 281.683594 136.308594 281.800781 136.308594 C 281.917969 136.308594 282.011719 136.214844 282.011719 136.097656 Z M 282.011719 136.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.078125 135.527344 C 277.078125 135.410156 276.984375 135.316406 276.867188 135.316406 C 276.75 135.316406 276.65625 135.410156 276.65625 135.527344 C 276.65625 135.644531 276.75 135.738281 276.867188 135.738281 C 276.984375 135.738281 277.078125 135.644531 277.078125 135.527344 Z M 277.078125 135.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.105469 135.503906 C 276.105469 135.386719 276.011719 135.292969 275.894531 135.292969 C 275.777344 135.292969 275.683594 135.386719 275.683594 135.503906 C 275.683594 135.621094 275.777344 135.714844 275.894531 135.714844 C 276.011719 135.714844 276.105469 135.621094 276.105469 135.503906 Z M 276.105469 135.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 278.183594 139.074219 C 278.183594 138.957031 278.089844 138.863281 277.972656 138.863281 C 277.855469 138.863281 277.761719 138.957031 277.761719 139.074219 C 277.761719 139.191406 277.855469 139.285156 277.972656 139.285156 C 278.089844 139.285156 278.183594 139.191406 278.183594 139.074219 Z M 278.183594 139.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.363281 140.078125 C 276.363281 139.960938 276.269531 139.867188 276.152344 139.867188 C 276.035156 139.867188 275.941406 139.960938 275.941406 140.078125 C 275.941406 140.195312 276.035156 140.289062 276.152344 140.289062 C 276.269531 140.289062 276.363281 140.195312 276.363281 140.078125 Z M 276.363281 140.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 278.074219 140.5 C 278.074219 140.382812 277.980469 140.289062 277.863281 140.289062 C 277.746094 140.289062 277.652344 140.382812 277.652344 140.5 C 277.652344 140.617188 277.746094 140.710938 277.863281 140.710938 C 277.980469 140.710938 278.074219 140.617188 278.074219 140.5 Z M 278.074219 140.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 280.296875 141.921875 C 280.296875 141.804688 280.203125 141.710938 280.085938 141.710938 C 279.96875 141.710938 279.875 141.804688 279.875 141.921875 C 279.875 142.039062 279.96875 142.132812 280.085938 142.132812 C 280.203125 142.132812 280.296875 142.039062 280.296875 141.921875 Z M 280.296875 141.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.941406 143.644531 C 277.941406 143.527344 277.847656 143.433594 277.730469 143.433594 C 277.613281 143.433594 277.519531 143.527344 277.519531 143.644531 C 277.519531 143.761719 277.613281 143.855469 277.730469 143.855469 C 277.847656 143.855469 277.941406 143.761719 277.941406 143.644531 Z M 277.941406 143.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 284.101562 144.738281 C 284.101562 144.621094 284.007812 144.527344 283.890625 144.527344 C 283.773438 144.527344 283.679688 144.621094 283.679688 144.738281 C 283.679688 144.855469 283.773438 144.949219 283.890625 144.949219 C 284.007812 144.949219 284.101562 144.855469 284.101562 144.738281 Z M 284.101562 144.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 281.660156 141.632812 C 281.660156 141.515625 281.566406 141.421875 281.449219 141.421875 C 281.332031 141.421875 281.238281 141.515625 281.238281 141.632812 C 281.238281 141.75 281.332031 141.84375 281.449219 141.84375 C 281.566406 141.84375 281.660156 141.75 281.660156 141.632812 Z M 281.660156 141.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 280.238281 139.636719 C 280.238281 139.519531 280.144531 139.425781 280.027344 139.425781 C 279.910156 139.425781 279.816406 139.519531 279.816406 139.636719 C 279.816406 139.753906 279.910156 139.847656 280.027344 139.847656 C 280.144531 139.847656 280.238281 139.753906 280.238281 139.636719 Z M 280.238281 139.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 281.953125 139.761719 C 281.953125 139.644531 281.859375 139.550781 281.742188 139.550781 C 281.625 139.550781 281.53125 139.644531 281.53125 139.761719 C 281.53125 139.878906 281.625 139.972656 281.742188 139.972656 C 281.859375 139.972656 281.953125 139.878906 281.953125 139.761719 Z M 281.953125 139.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 278.316406 135.039062 C 278.316406 134.921875 278.222656 134.828125 278.105469 134.828125 C 277.988281 134.828125 277.894531 134.921875 277.894531 135.039062 C 277.894531 135.15625 277.988281 135.25 278.105469 135.25 C 278.222656 135.25 278.316406 135.15625 278.316406 135.039062 Z M 278.316406 135.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.972656 132.597656 C 277.972656 132.480469 277.878906 132.386719 277.761719 132.386719 C 277.644531 132.386719 277.550781 132.480469 277.550781 132.597656 C 277.550781 132.714844 277.644531 132.808594 277.761719 132.808594 C 277.878906 132.808594 277.972656 132.714844 277.972656 132.597656 Z M 277.972656 132.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 279.265625 129.839844 C 279.265625 129.722656 279.171875 129.628906 279.054688 129.628906 C 278.9375 129.628906 278.84375 129.722656 278.84375 129.839844 C 278.84375 129.957031 278.9375 130.050781 279.054688 130.050781 C 279.171875 130.050781 279.265625 129.957031 279.265625 129.839844 Z M 279.265625 129.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.835938 133.300781 C 277.835938 133.183594 277.742188 133.089844 277.625 133.089844 C 277.507812 133.089844 277.414062 133.183594 277.414062 133.300781 C 277.414062 133.417969 277.507812 133.511719 277.625 133.511719 C 277.742188 133.511719 277.835938 133.417969 277.835938 133.300781 Z M 277.835938 133.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 278.335938 134.40625 C 278.335938 134.289062 278.242188 134.195312 278.125 134.195312 C 278.007812 134.195312 277.914062 134.289062 277.914062 134.40625 C 277.914062 134.523438 278.007812 134.617188 278.125 134.617188 C 278.242188 134.617188 278.335938 134.523438 278.335938 134.40625 Z M 278.335938 134.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.945312 137.398438 C 275.945312 137.28125 275.851562 137.1875 275.734375 137.1875 C 275.617188 137.1875 275.523438 137.28125 275.523438 137.398438 C 275.523438 137.515625 275.617188 137.609375 275.734375 137.609375 C 275.851562 137.609375 275.945312 137.515625 275.945312 137.398438 Z M 275.945312 137.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.511719 136.035156 C 274.511719 135.917969 274.417969 135.824219 274.300781 135.824219 C 274.183594 135.824219 274.089844 135.917969 274.089844 136.035156 C 274.089844 136.152344 274.183594 136.246094 274.300781 136.246094 C 274.417969 136.246094 274.511719 136.152344 274.511719 136.035156 Z M 274.511719 136.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.75 136.683594 C 274.75 136.566406 274.65625 136.472656 274.539062 136.472656 C 274.421875 136.472656 274.328125 136.566406 274.328125 136.683594 C 274.328125 136.800781 274.421875 136.894531 274.539062 136.894531 C 274.65625 136.894531 274.75 136.800781 274.75 136.683594 Z M 274.75 136.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.902344 143.652344 C 273.902344 143.535156 273.808594 143.441406 273.691406 143.441406 C 273.574219 143.441406 273.480469 143.535156 273.480469 143.652344 C 273.480469 143.769531 273.574219 143.863281 273.691406 143.863281 C 273.808594 143.863281 273.902344 143.769531 273.902344 143.652344 Z M 273.902344 143.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.710938 146.054688 C 273.710938 145.9375 273.617188 145.84375 273.5 145.84375 C 273.382812 145.84375 273.289062 145.9375 273.289062 146.054688 C 273.289062 146.171875 273.382812 146.265625 273.5 146.265625 C 273.617188 146.265625 273.710938 146.171875 273.710938 146.054688 Z M 273.710938 146.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 272.621094 146.488281 C 272.621094 146.371094 272.527344 146.277344 272.410156 146.277344 C 272.292969 146.277344 272.199219 146.371094 272.199219 146.488281 C 272.199219 146.605469 272.292969 146.699219 272.410156 146.699219 C 272.527344 146.699219 272.621094 146.605469 272.621094 146.488281 Z M 272.621094 146.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 269.945312 148.855469 C 269.945312 148.738281 269.851562 148.644531 269.734375 148.644531 C 269.617188 148.644531 269.523438 148.738281 269.523438 148.855469 C 269.523438 148.972656 269.617188 149.066406 269.734375 149.066406 C 269.851562 149.066406 269.945312 148.972656 269.945312 148.855469 Z M 269.945312 148.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.097656 149.292969 C 268.097656 149.175781 268.003906 149.082031 267.886719 149.082031 C 267.769531 149.082031 267.675781 149.175781 267.675781 149.292969 C 267.675781 149.410156 267.769531 149.503906 267.886719 149.503906 C 268.003906 149.503906 268.097656 149.410156 268.097656 149.292969 Z M 268.097656 149.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.851562 149.539062 C 268.851562 149.421875 268.757812 149.328125 268.640625 149.328125 C 268.523438 149.328125 268.429688 149.421875 268.429688 149.539062 C 268.429688 149.65625 268.523438 149.75 268.640625 149.75 C 268.757812 149.75 268.851562 149.65625 268.851562 149.539062 Z M 268.851562 149.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 271.828125 152.3125 C 271.828125 152.195312 271.734375 152.101562 271.617188 152.101562 C 271.5 152.101562 271.40625 152.195312 271.40625 152.3125 C 271.40625 152.429688 271.5 152.523438 271.617188 152.523438 C 271.734375 152.523438 271.828125 152.429688 271.828125 152.3125 Z M 271.828125 152.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.207031 152.203125 C 273.207031 152.085938 273.113281 151.992188 272.996094 151.992188 C 272.878906 151.992188 272.785156 152.085938 272.785156 152.203125 C 272.785156 152.320312 272.878906 152.414062 272.996094 152.414062 C 273.113281 152.414062 273.207031 152.320312 273.207031 152.203125 Z M 273.207031 152.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.648438 153.523438 C 275.648438 153.40625 275.554688 153.3125 275.4375 153.3125 C 275.320312 153.3125 275.226562 153.40625 275.226562 153.523438 C 275.226562 153.640625 275.320312 153.734375 275.4375 153.734375 C 275.554688 153.734375 275.648438 153.640625 275.648438 153.523438 Z M 275.648438 153.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.023438 153.765625 C 273.023438 153.648438 272.929688 153.554688 272.8125 153.554688 C 272.695312 153.554688 272.601562 153.648438 272.601562 153.765625 C 272.601562 153.882812 272.695312 153.976562 272.8125 153.976562 C 272.929688 153.976562 273.023438 153.882812 273.023438 153.765625 Z M 273.023438 153.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.96875 156.433594 C 273.96875 156.316406 273.875 156.222656 273.757812 156.222656 C 273.640625 156.222656 273.546875 156.316406 273.546875 156.433594 C 273.546875 156.550781 273.640625 156.644531 273.757812 156.644531 C 273.875 156.644531 273.96875 156.550781 273.96875 156.433594 Z M 273.96875 156.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 276.757812 157.042969 C 276.757812 156.925781 276.664062 156.832031 276.546875 156.832031 C 276.429688 156.832031 276.335938 156.925781 276.335938 157.042969 C 276.335938 157.160156 276.429688 157.253906 276.546875 157.253906 C 276.664062 157.253906 276.757812 157.160156 276.757812 157.042969 Z M 276.757812 157.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.199219 156.023438 C 277.199219 155.90625 277.105469 155.8125 276.988281 155.8125 C 276.871094 155.8125 276.777344 155.90625 276.777344 156.023438 C 276.777344 156.140625 276.871094 156.234375 276.988281 156.234375 C 277.105469 156.234375 277.199219 156.140625 277.199219 156.023438 Z M 277.199219 156.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.773438 154.070312 C 277.773438 153.953125 277.679688 153.859375 277.5625 153.859375 C 277.445312 153.859375 277.351562 153.953125 277.351562 154.070312 C 277.351562 154.1875 277.445312 154.28125 277.5625 154.28125 C 277.679688 154.28125 277.773438 154.1875 277.773438 154.070312 Z M 277.773438 154.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.839844 152.617188 C 275.839844 152.5 275.746094 152.40625 275.628906 152.40625 C 275.511719 152.40625 275.417969 152.5 275.417969 152.617188 C 275.417969 152.734375 275.511719 152.828125 275.628906 152.828125 C 275.746094 152.828125 275.839844 152.734375 275.839844 152.617188 Z M 275.839844 152.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.046875 152.347656 C 275.046875 152.230469 274.953125 152.136719 274.835938 152.136719 C 274.71875 152.136719 274.625 152.230469 274.625 152.347656 C 274.625 152.464844 274.71875 152.558594 274.835938 152.558594 C 274.953125 152.558594 275.046875 152.464844 275.046875 152.347656 Z M 275.046875 152.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.515625 154.832031 C 274.515625 154.714844 274.421875 154.621094 274.304688 154.621094 C 274.1875 154.621094 274.09375 154.714844 274.09375 154.832031 C 274.09375 154.949219 274.1875 155.042969 274.304688 155.042969 C 274.421875 155.042969 274.515625 154.949219 274.515625 154.832031 Z M 274.515625 154.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.007812 157.359375 C 277.007812 157.242188 276.914062 157.148438 276.796875 157.148438 C 276.679688 157.148438 276.585938 157.242188 276.585938 157.359375 C 276.585938 157.476562 276.679688 157.570312 276.796875 157.570312 C 276.914062 157.570312 277.007812 157.476562 277.007812 157.359375 Z M 277.007812 157.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 271.296875 159.484375 C 271.296875 159.367188 271.203125 159.273438 271.085938 159.273438 C 270.96875 159.273438 270.875 159.367188 270.875 159.484375 C 270.875 159.601562 270.96875 159.695312 271.085938 159.695312 C 271.203125 159.695312 271.296875 159.601562 271.296875 159.484375 Z M 271.296875 159.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.351562 158.742188 C 273.351562 158.625 273.257812 158.53125 273.140625 158.53125 C 273.023438 158.53125 272.929688 158.625 272.929688 158.742188 C 272.929688 158.859375 273.023438 158.953125 273.140625 158.953125 C 273.257812 158.953125 273.351562 158.859375 273.351562 158.742188 Z M 273.351562 158.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 269.246094 161.214844 C 269.246094 161.097656 269.152344 161.003906 269.035156 161.003906 C 268.917969 161.003906 268.824219 161.097656 268.824219 161.214844 C 268.824219 161.332031 268.917969 161.425781 269.035156 161.425781 C 269.152344 161.425781 269.246094 161.332031 269.246094 161.214844 Z M 269.246094 161.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 271.976562 160.601562 C 271.976562 160.484375 271.882812 160.390625 271.765625 160.390625 C 271.648438 160.390625 271.554688 160.484375 271.554688 160.601562 C 271.554688 160.71875 271.648438 160.8125 271.765625 160.8125 C 271.882812 160.8125 271.976562 160.71875 271.976562 160.601562 Z M 271.976562 160.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 270.613281 164.28125 C 270.613281 164.164062 270.519531 164.070312 270.402344 164.070312 C 270.285156 164.070312 270.191406 164.164062 270.191406 164.28125 C 270.191406 164.398438 270.285156 164.492188 270.402344 164.492188 C 270.519531 164.492188 270.613281 164.398438 270.613281 164.28125 Z M 270.613281 164.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 270.976562 163.355469 C 270.976562 163.238281 270.882812 163.144531 270.765625 163.144531 C 270.648438 163.144531 270.554688 163.238281 270.554688 163.355469 C 270.554688 163.472656 270.648438 163.566406 270.765625 163.566406 C 270.882812 163.566406 270.976562 163.472656 270.976562 163.355469 Z M 270.976562 163.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 270.859375 162.980469 C 270.859375 162.863281 270.765625 162.769531 270.648438 162.769531 C 270.53125 162.769531 270.4375 162.863281 270.4375 162.980469 C 270.4375 163.097656 270.53125 163.191406 270.648438 163.191406 C 270.765625 163.191406 270.859375 163.097656 270.859375 162.980469 Z M 270.859375 162.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 267.855469 163.195312 C 267.855469 163.078125 267.761719 162.984375 267.644531 162.984375 C 267.527344 162.984375 267.433594 163.078125 267.433594 163.195312 C 267.433594 163.3125 267.527344 163.40625 267.644531 163.40625 C 267.761719 163.40625 267.855469 163.3125 267.855469 163.195312 Z M 267.855469 163.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.441406 162.640625 C 266.441406 162.523438 266.347656 162.429688 266.230469 162.429688 C 266.113281 162.429688 266.019531 162.523438 266.019531 162.640625 C 266.019531 162.757812 266.113281 162.851562 266.230469 162.851562 C 266.347656 162.851562 266.441406 162.757812 266.441406 162.640625 Z M 266.441406 162.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.988281 159.984375 C 264.988281 159.867188 264.894531 159.773438 264.777344 159.773438 C 264.660156 159.773438 264.566406 159.867188 264.566406 159.984375 C 264.566406 160.101562 264.660156 160.195312 264.777344 160.195312 C 264.894531 160.195312 264.988281 160.101562 264.988281 159.984375 Z M 264.988281 159.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.617188 159.222656 C 260.617188 159.105469 260.523438 159.011719 260.40625 159.011719 C 260.289062 159.011719 260.195312 159.105469 260.195312 159.222656 C 260.195312 159.339844 260.289062 159.433594 260.40625 159.433594 C 260.523438 159.433594 260.617188 159.339844 260.617188 159.222656 Z M 260.617188 159.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.15625 157.160156 C 258.15625 157.042969 258.0625 156.949219 257.945312 156.949219 C 257.828125 156.949219 257.734375 157.042969 257.734375 157.160156 C 257.734375 157.277344 257.828125 157.371094 257.945312 157.371094 C 258.0625 157.371094 258.15625 157.277344 258.15625 157.160156 Z M 258.15625 157.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.117188 155.414062 C 259.117188 155.296875 259.023438 155.203125 258.90625 155.203125 C 258.789062 155.203125 258.695312 155.296875 258.695312 155.414062 C 258.695312 155.53125 258.789062 155.625 258.90625 155.625 C 259.023438 155.625 259.117188 155.53125 259.117188 155.414062 Z M 259.117188 155.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.289062 154.558594 C 261.289062 154.441406 261.195312 154.347656 261.078125 154.347656 C 260.960938 154.347656 260.867188 154.441406 260.867188 154.558594 C 260.867188 154.675781 260.960938 154.769531 261.078125 154.769531 C 261.195312 154.769531 261.289062 154.675781 261.289062 154.558594 Z M 261.289062 154.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.550781 151.953125 C 262.550781 151.835938 262.457031 151.742188 262.339844 151.742188 C 262.222656 151.742188 262.128906 151.835938 262.128906 151.953125 C 262.128906 152.070312 262.222656 152.164062 262.339844 152.164062 C 262.457031 152.164062 262.550781 152.070312 262.550781 151.953125 Z M 262.550781 151.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.4375 149.9375 C 260.4375 149.820312 260.34375 149.726562 260.226562 149.726562 C 260.109375 149.726562 260.015625 149.820312 260.015625 149.9375 C 260.015625 150.054688 260.109375 150.148438 260.226562 150.148438 C 260.34375 150.148438 260.4375 150.054688 260.4375 149.9375 Z M 260.4375 149.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.261719 150.207031 C 260.261719 150.089844 260.167969 149.996094 260.050781 149.996094 C 259.933594 149.996094 259.839844 150.089844 259.839844 150.207031 C 259.839844 150.324219 259.933594 150.417969 260.050781 150.417969 C 260.167969 150.417969 260.261719 150.324219 260.261719 150.207031 Z M 260.261719 150.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.289062 153.519531 C 262.289062 153.402344 262.195312 153.308594 262.078125 153.308594 C 261.960938 153.308594 261.867188 153.402344 261.867188 153.519531 C 261.867188 153.636719 261.960938 153.730469 262.078125 153.730469 C 262.195312 153.730469 262.289062 153.636719 262.289062 153.519531 Z M 262.289062 153.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.738281 151.949219 C 260.738281 151.832031 260.644531 151.738281 260.527344 151.738281 C 260.410156 151.738281 260.316406 151.832031 260.316406 151.949219 C 260.316406 152.066406 260.410156 152.160156 260.527344 152.160156 C 260.644531 152.160156 260.738281 152.066406 260.738281 151.949219 Z M 260.738281 151.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.96875 150.574219 C 259.96875 150.457031 259.875 150.363281 259.757812 150.363281 C 259.640625 150.363281 259.546875 150.457031 259.546875 150.574219 C 259.546875 150.691406 259.640625 150.785156 259.757812 150.785156 C 259.875 150.785156 259.96875 150.691406 259.96875 150.574219 Z M 259.96875 150.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.859375 148.679688 C 259.859375 148.5625 259.765625 148.46875 259.648438 148.46875 C 259.53125 148.46875 259.4375 148.5625 259.4375 148.679688 C 259.4375 148.796875 259.53125 148.890625 259.648438 148.890625 C 259.765625 148.890625 259.859375 148.796875 259.859375 148.679688 Z M 259.859375 148.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.585938 146.304688 C 261.585938 146.1875 261.492188 146.09375 261.375 146.09375 C 261.257812 146.09375 261.164062 146.1875 261.164062 146.304688 C 261.164062 146.421875 261.257812 146.515625 261.375 146.515625 C 261.492188 146.515625 261.585938 146.421875 261.585938 146.304688 Z M 261.585938 146.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.175781 146.183594 C 262.175781 146.066406 262.082031 145.972656 261.964844 145.972656 C 261.847656 145.972656 261.753906 146.066406 261.753906 146.183594 C 261.753906 146.300781 261.847656 146.394531 261.964844 146.394531 C 262.082031 146.394531 262.175781 146.300781 262.175781 146.183594 Z M 262.175781 146.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.777344 144.113281 C 261.777344 143.996094 261.683594 143.902344 261.566406 143.902344 C 261.449219 143.902344 261.355469 143.996094 261.355469 144.113281 C 261.355469 144.230469 261.449219 144.324219 261.566406 144.324219 C 261.683594 144.324219 261.777344 144.230469 261.777344 144.113281 Z M 261.777344 144.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.171875 142.652344 C 255.171875 142.535156 255.078125 142.441406 254.960938 142.441406 C 254.84375 142.441406 254.75 142.535156 254.75 142.652344 C 254.75 142.769531 254.84375 142.863281 254.960938 142.863281 C 255.078125 142.863281 255.171875 142.769531 255.171875 142.652344 Z M 255.171875 142.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.28125 145.066406 C 255.28125 144.949219 255.1875 144.855469 255.070312 144.855469 C 254.953125 144.855469 254.859375 144.949219 254.859375 145.066406 C 254.859375 145.183594 254.953125 145.277344 255.070312 145.277344 C 255.1875 145.277344 255.28125 145.183594 255.28125 145.066406 Z M 255.28125 145.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.984375 143.371094 C 255.984375 143.253906 255.890625 143.160156 255.773438 143.160156 C 255.65625 143.160156 255.5625 143.253906 255.5625 143.371094 C 255.5625 143.488281 255.65625 143.582031 255.773438 143.582031 C 255.890625 143.582031 255.984375 143.488281 255.984375 143.371094 Z M 255.984375 143.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.515625 144.046875 C 256.515625 143.929688 256.421875 143.835938 256.304688 143.835938 C 256.1875 143.835938 256.09375 143.929688 256.09375 144.046875 C 256.09375 144.164062 256.1875 144.257812 256.304688 144.257812 C 256.421875 144.257812 256.515625 144.164062 256.515625 144.046875 Z M 256.515625 144.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.300781 144.441406 C 256.300781 144.324219 256.207031 144.230469 256.089844 144.230469 C 255.972656 144.230469 255.878906 144.324219 255.878906 144.441406 C 255.878906 144.558594 255.972656 144.652344 256.089844 144.652344 C 256.207031 144.652344 256.300781 144.558594 256.300781 144.441406 Z M 256.300781 144.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257 142.699219 C 257 142.582031 256.90625 142.488281 256.789062 142.488281 C 256.671875 142.488281 256.578125 142.582031 256.578125 142.699219 C 256.578125 142.816406 256.671875 142.910156 256.789062 142.910156 C 256.90625 142.910156 257 142.816406 257 142.699219 Z M 257 142.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.816406 145.34375 C 257.816406 145.226562 257.722656 145.132812 257.605469 145.132812 C 257.488281 145.132812 257.394531 145.226562 257.394531 145.34375 C 257.394531 145.460938 257.488281 145.554688 257.605469 145.554688 C 257.722656 145.554688 257.816406 145.460938 257.816406 145.34375 Z M 257.816406 145.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.632812 148.167969 C 257.632812 148.050781 257.539062 147.957031 257.421875 147.957031 C 257.304688 147.957031 257.210938 148.050781 257.210938 148.167969 C 257.210938 148.285156 257.304688 148.378906 257.421875 148.378906 C 257.539062 148.378906 257.632812 148.285156 257.632812 148.167969 Z M 257.632812 148.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.847656 145.609375 C 257.847656 145.492188 257.753906 145.398438 257.636719 145.398438 C 257.519531 145.398438 257.425781 145.492188 257.425781 145.609375 C 257.425781 145.726562 257.519531 145.820312 257.636719 145.820312 C 257.753906 145.820312 257.847656 145.726562 257.847656 145.609375 Z M 257.847656 145.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.53125 148.003906 C 259.53125 147.886719 259.4375 147.792969 259.320312 147.792969 C 259.203125 147.792969 259.109375 147.886719 259.109375 148.003906 C 259.109375 148.121094 259.203125 148.214844 259.320312 148.214844 C 259.4375 148.214844 259.53125 148.121094 259.53125 148.003906 Z M 259.53125 148.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.476562 149.007812 C 260.476562 148.890625 260.382812 148.796875 260.265625 148.796875 C 260.148438 148.796875 260.054688 148.890625 260.054688 149.007812 C 260.054688 149.125 260.148438 149.21875 260.265625 149.21875 C 260.382812 149.21875 260.476562 149.125 260.476562 149.007812 Z M 260.476562 149.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.371094 151.054688 C 258.371094 150.9375 258.277344 150.84375 258.160156 150.84375 C 258.042969 150.84375 257.949219 150.9375 257.949219 151.054688 C 257.949219 151.171875 258.042969 151.265625 258.160156 151.265625 C 258.277344 151.265625 258.371094 151.171875 258.371094 151.054688 Z M 258.371094 151.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.796875 146.988281 C 257.796875 146.871094 257.703125 146.777344 257.585938 146.777344 C 257.46875 146.777344 257.375 146.871094 257.375 146.988281 C 257.375 147.105469 257.46875 147.199219 257.585938 147.199219 C 257.703125 147.199219 257.796875 147.105469 257.796875 146.988281 Z M 257.796875 146.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.449219 143.414062 C 259.449219 143.296875 259.355469 143.203125 259.238281 143.203125 C 259.121094 143.203125 259.027344 143.296875 259.027344 143.414062 C 259.027344 143.53125 259.121094 143.625 259.238281 143.625 C 259.355469 143.625 259.449219 143.53125 259.449219 143.414062 Z M 259.449219 143.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.234375 143.507812 C 260.234375 143.390625 260.140625 143.296875 260.023438 143.296875 C 259.90625 143.296875 259.8125 143.390625 259.8125 143.507812 C 259.8125 143.625 259.90625 143.71875 260.023438 143.71875 C 260.140625 143.71875 260.234375 143.625 260.234375 143.507812 Z M 260.234375 143.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.761719 142.882812 C 262.761719 142.765625 262.667969 142.671875 262.550781 142.671875 C 262.433594 142.671875 262.339844 142.765625 262.339844 142.882812 C 262.339844 143 262.433594 143.09375 262.550781 143.09375 C 262.667969 143.09375 262.761719 143 262.761719 142.882812 Z M 262.761719 142.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.015625 142.636719 C 261.015625 142.519531 260.921875 142.425781 260.804688 142.425781 C 260.6875 142.425781 260.59375 142.519531 260.59375 142.636719 C 260.59375 142.753906 260.6875 142.847656 260.804688 142.847656 C 260.921875 142.847656 261.015625 142.753906 261.015625 142.636719 Z M 261.015625 142.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.675781 142.078125 C 257.675781 141.960938 257.582031 141.867188 257.464844 141.867188 C 257.347656 141.867188 257.253906 141.960938 257.253906 142.078125 C 257.253906 142.195312 257.347656 142.289062 257.464844 142.289062 C 257.582031 142.289062 257.675781 142.195312 257.675781 142.078125 Z M 257.675781 142.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.230469 140.472656 C 255.230469 140.355469 255.136719 140.261719 255.019531 140.261719 C 254.902344 140.261719 254.808594 140.355469 254.808594 140.472656 C 254.808594 140.589844 254.902344 140.683594 255.019531 140.683594 C 255.136719 140.683594 255.230469 140.589844 255.230469 140.472656 Z M 255.230469 140.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.628906 144.621094 C 253.628906 144.503906 253.535156 144.410156 253.417969 144.410156 C 253.300781 144.410156 253.207031 144.503906 253.207031 144.621094 C 253.207031 144.738281 253.300781 144.832031 253.417969 144.832031 C 253.535156 144.832031 253.628906 144.738281 253.628906 144.621094 Z M 253.628906 144.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.015625 141.777344 C 254.015625 141.660156 253.921875 141.566406 253.804688 141.566406 C 253.6875 141.566406 253.59375 141.660156 253.59375 141.777344 C 253.59375 141.894531 253.6875 141.988281 253.804688 141.988281 C 253.921875 141.988281 254.015625 141.894531 254.015625 141.777344 Z M 254.015625 141.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.867188 143.667969 C 256.867188 143.550781 256.773438 143.457031 256.65625 143.457031 C 256.539062 143.457031 256.445312 143.550781 256.445312 143.667969 C 256.445312 143.785156 256.539062 143.878906 256.65625 143.878906 C 256.773438 143.878906 256.867188 143.785156 256.867188 143.667969 Z M 256.867188 143.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.585938 141.175781 C 258.585938 141.058594 258.492188 140.964844 258.375 140.964844 C 258.257812 140.964844 258.164062 141.058594 258.164062 141.175781 C 258.164062 141.292969 258.257812 141.386719 258.375 141.386719 C 258.492188 141.386719 258.585938 141.292969 258.585938 141.175781 Z M 258.585938 141.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.683594 138.539062 C 260.683594 138.421875 260.589844 138.328125 260.472656 138.328125 C 260.355469 138.328125 260.261719 138.421875 260.261719 138.539062 C 260.261719 138.65625 260.355469 138.75 260.472656 138.75 C 260.589844 138.75 260.683594 138.65625 260.683594 138.539062 Z M 260.683594 138.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.066406 140.757812 C 260.066406 140.640625 259.972656 140.546875 259.855469 140.546875 C 259.738281 140.546875 259.644531 140.640625 259.644531 140.757812 C 259.644531 140.875 259.738281 140.96875 259.855469 140.96875 C 259.972656 140.96875 260.066406 140.875 260.066406 140.757812 Z M 260.066406 140.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.609375 142.921875 C 258.609375 142.804688 258.515625 142.710938 258.398438 142.710938 C 258.28125 142.710938 258.1875 142.804688 258.1875 142.921875 C 258.1875 143.039062 258.28125 143.132812 258.398438 143.132812 C 258.515625 143.132812 258.609375 143.039062 258.609375 142.921875 Z M 258.609375 142.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.089844 143.765625 C 260.089844 143.648438 259.996094 143.554688 259.878906 143.554688 C 259.761719 143.554688 259.667969 143.648438 259.667969 143.765625 C 259.667969 143.882812 259.761719 143.976562 259.878906 143.976562 C 259.996094 143.976562 260.089844 143.882812 260.089844 143.765625 Z M 260.089844 143.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.058594 144.609375 C 257.058594 144.492188 256.964844 144.398438 256.847656 144.398438 C 256.730469 144.398438 256.636719 144.492188 256.636719 144.609375 C 256.636719 144.726562 256.730469 144.820312 256.847656 144.820312 C 256.964844 144.820312 257.058594 144.726562 257.058594 144.609375 Z M 257.058594 144.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.890625 143.425781 C 256.890625 143.308594 256.796875 143.214844 256.679688 143.214844 C 256.5625 143.214844 256.46875 143.308594 256.46875 143.425781 C 256.46875 143.542969 256.5625 143.636719 256.679688 143.636719 C 256.796875 143.636719 256.890625 143.542969 256.890625 143.425781 Z M 256.890625 143.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.21875 145.074219 C 262.21875 144.957031 262.125 144.863281 262.007812 144.863281 C 261.890625 144.863281 261.796875 144.957031 261.796875 145.074219 C 261.796875 145.191406 261.890625 145.285156 262.007812 145.285156 C 262.125 145.285156 262.21875 145.191406 262.21875 145.074219 Z M 262.21875 145.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.402344 147.28125 C 264.402344 147.164062 264.308594 147.070312 264.191406 147.070312 C 264.074219 147.070312 263.980469 147.164062 263.980469 147.28125 C 263.980469 147.398438 264.074219 147.492188 264.191406 147.492188 C 264.308594 147.492188 264.402344 147.398438 264.402344 147.28125 Z M 264.402344 147.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.890625 148.167969 C 265.890625 148.050781 265.796875 147.957031 265.679688 147.957031 C 265.5625 147.957031 265.46875 148.050781 265.46875 148.167969 C 265.46875 148.285156 265.5625 148.378906 265.679688 148.378906 C 265.796875 148.378906 265.890625 148.285156 265.890625 148.167969 Z M 265.890625 148.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.1875 150.332031 C 268.1875 150.214844 268.09375 150.121094 267.976562 150.121094 C 267.859375 150.121094 267.765625 150.214844 267.765625 150.332031 C 267.765625 150.449219 267.859375 150.542969 267.976562 150.542969 C 268.09375 150.542969 268.1875 150.449219 268.1875 150.332031 Z M 268.1875 150.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.8125 149.515625 C 268.8125 149.398438 268.71875 149.304688 268.601562 149.304688 C 268.484375 149.304688 268.390625 149.398438 268.390625 149.515625 C 268.390625 149.632812 268.484375 149.726562 268.601562 149.726562 C 268.71875 149.726562 268.8125 149.632812 268.8125 149.515625 Z M 268.8125 149.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 269.335938 148.367188 C 269.335938 148.25 269.242188 148.15625 269.125 148.15625 C 269.007812 148.15625 268.914062 148.25 268.914062 148.367188 C 268.914062 148.484375 269.007812 148.578125 269.125 148.578125 C 269.242188 148.578125 269.335938 148.484375 269.335938 148.367188 Z M 269.335938 148.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 269.414062 151.328125 C 269.414062 151.210938 269.320312 151.117188 269.203125 151.117188 C 269.085938 151.117188 268.992188 151.210938 268.992188 151.328125 C 268.992188 151.445312 269.085938 151.539062 269.203125 151.539062 C 269.320312 151.539062 269.414062 151.445312 269.414062 151.328125 Z M 269.414062 151.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 267.726562 154.085938 C 267.726562 153.96875 267.632812 153.875 267.515625 153.875 C 267.398438 153.875 267.304688 153.96875 267.304688 154.085938 C 267.304688 154.203125 267.398438 154.296875 267.515625 154.296875 C 267.632812 154.296875 267.726562 154.203125 267.726562 154.085938 Z M 267.726562 154.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.125 152.457031 C 268.125 152.339844 268.03125 152.246094 267.914062 152.246094 C 267.796875 152.246094 267.703125 152.339844 267.703125 152.457031 C 267.703125 152.574219 267.796875 152.667969 267.914062 152.667969 C 268.03125 152.667969 268.125 152.574219 268.125 152.457031 Z M 268.125 152.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 267.070312 153.253906 C 267.070312 153.136719 266.976562 153.042969 266.859375 153.042969 C 266.742188 153.042969 266.648438 153.136719 266.648438 153.253906 C 266.648438 153.371094 266.742188 153.464844 266.859375 153.464844 C 266.976562 153.464844 267.070312 153.371094 267.070312 153.253906 Z M 267.070312 153.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 267.789062 151.660156 C 267.789062 151.542969 267.695312 151.449219 267.578125 151.449219 C 267.460938 151.449219 267.367188 151.542969 267.367188 151.660156 C 267.367188 151.777344 267.460938 151.871094 267.578125 151.871094 C 267.695312 151.871094 267.789062 151.777344 267.789062 151.660156 Z M 267.789062 151.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.011719 147.164062 C 268.011719 147.046875 267.917969 146.953125 267.800781 146.953125 C 267.683594 146.953125 267.589844 147.046875 267.589844 147.164062 C 267.589844 147.28125 267.683594 147.375 267.800781 147.375 C 267.917969 147.375 268.011719 147.28125 268.011719 147.164062 Z M 268.011719 147.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 271.070312 148.195312 C 271.070312 148.078125 270.976562 147.984375 270.859375 147.984375 C 270.742188 147.984375 270.648438 148.078125 270.648438 148.195312 C 270.648438 148.3125 270.742188 148.40625 270.859375 148.40625 C 270.976562 148.40625 271.070312 148.3125 271.070312 148.195312 Z M 271.070312 148.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 271.226562 153.042969 C 271.226562 152.925781 271.132812 152.832031 271.015625 152.832031 C 270.898438 152.832031 270.804688 152.925781 270.804688 153.042969 C 270.804688 153.160156 270.898438 153.253906 271.015625 153.253906 C 271.132812 153.253906 271.226562 153.160156 271.226562 153.042969 Z M 271.226562 153.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.84375 153.5 C 268.84375 153.382812 268.75 153.289062 268.632812 153.289062 C 268.515625 153.289062 268.421875 153.382812 268.421875 153.5 C 268.421875 153.617188 268.515625 153.710938 268.632812 153.710938 C 268.75 153.710938 268.84375 153.617188 268.84375 153.5 Z M 268.84375 153.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.871094 154.375 C 268.871094 154.257812 268.777344 154.164062 268.660156 154.164062 C 268.542969 154.164062 268.449219 154.257812 268.449219 154.375 C 268.449219 154.492188 268.542969 154.585938 268.660156 154.585938 C 268.777344 154.585938 268.871094 154.492188 268.871094 154.375 Z M 268.871094 154.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 271.648438 159.027344 C 271.648438 158.910156 271.554688 158.816406 271.4375 158.816406 C 271.320312 158.816406 271.226562 158.910156 271.226562 159.027344 C 271.226562 159.144531 271.320312 159.238281 271.4375 159.238281 C 271.554688 159.238281 271.648438 159.144531 271.648438 159.027344 Z M 271.648438 159.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 269.960938 158.953125 C 269.960938 158.835938 269.867188 158.742188 269.75 158.742188 C 269.632812 158.742188 269.539062 158.835938 269.539062 158.953125 C 269.539062 159.070312 269.632812 159.164062 269.75 159.164062 C 269.867188 159.164062 269.960938 159.070312 269.960938 158.953125 Z M 269.960938 158.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.734375 159.699219 C 268.734375 159.582031 268.640625 159.488281 268.523438 159.488281 C 268.40625 159.488281 268.3125 159.582031 268.3125 159.699219 C 268.3125 159.816406 268.40625 159.910156 268.523438 159.910156 C 268.640625 159.910156 268.734375 159.816406 268.734375 159.699219 Z M 268.734375 159.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.769531 157.554688 C 268.769531 157.4375 268.675781 157.34375 268.558594 157.34375 C 268.441406 157.34375 268.347656 157.4375 268.347656 157.554688 C 268.347656 157.671875 268.441406 157.765625 268.558594 157.765625 C 268.675781 157.765625 268.769531 157.671875 268.769531 157.554688 Z M 268.769531 157.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.679688 153.285156 C 265.679688 153.167969 265.585938 153.074219 265.46875 153.074219 C 265.351562 153.074219 265.257812 153.167969 265.257812 153.285156 C 265.257812 153.402344 265.351562 153.496094 265.46875 153.496094 C 265.585938 153.496094 265.679688 153.402344 265.679688 153.285156 Z M 265.679688 153.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 267.726562 153.367188 C 267.726562 153.25 267.632812 153.15625 267.515625 153.15625 C 267.398438 153.15625 267.304688 153.25 267.304688 153.367188 C 267.304688 153.484375 267.398438 153.578125 267.515625 153.578125 C 267.632812 153.578125 267.726562 153.484375 267.726562 153.367188 Z M 267.726562 153.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 267.011719 154.328125 C 267.011719 154.210938 266.917969 154.117188 266.800781 154.117188 C 266.683594 154.117188 266.589844 154.210938 266.589844 154.328125 C 266.589844 154.445312 266.683594 154.539062 266.800781 154.539062 C 266.917969 154.539062 267.011719 154.445312 267.011719 154.328125 Z M 267.011719 154.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 270.34375 154.738281 C 270.34375 154.621094 270.25 154.527344 270.132812 154.527344 C 270.015625 154.527344 269.921875 154.621094 269.921875 154.738281 C 269.921875 154.855469 270.015625 154.949219 270.132812 154.949219 C 270.25 154.949219 270.34375 154.855469 270.34375 154.738281 Z M 270.34375 154.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 271.308594 154.613281 C 271.308594 154.496094 271.214844 154.402344 271.097656 154.402344 C 270.980469 154.402344 270.886719 154.496094 270.886719 154.613281 C 270.886719 154.730469 270.980469 154.824219 271.097656 154.824219 C 271.214844 154.824219 271.308594 154.730469 271.308594 154.613281 Z M 271.308594 154.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 271.539062 156.851562 C 271.539062 156.734375 271.445312 156.640625 271.328125 156.640625 C 271.210938 156.640625 271.117188 156.734375 271.117188 156.851562 C 271.117188 156.96875 271.210938 157.0625 271.328125 157.0625 C 271.445312 157.0625 271.539062 156.96875 271.539062 156.851562 Z M 271.539062 156.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 272.90625 158.445312 C 272.90625 158.328125 272.8125 158.234375 272.695312 158.234375 C 272.578125 158.234375 272.484375 158.328125 272.484375 158.445312 C 272.484375 158.5625 272.578125 158.65625 272.695312 158.65625 C 272.8125 158.65625 272.90625 158.5625 272.90625 158.445312 Z M 272.90625 158.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.460938 156.238281 C 274.460938 156.121094 274.367188 156.027344 274.25 156.027344 C 274.132812 156.027344 274.039062 156.121094 274.039062 156.238281 C 274.039062 156.355469 274.132812 156.449219 274.25 156.449219 C 274.367188 156.449219 274.460938 156.355469 274.460938 156.238281 Z M 274.460938 156.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.90625 156.542969 C 273.90625 156.425781 273.8125 156.332031 273.695312 156.332031 C 273.578125 156.332031 273.484375 156.425781 273.484375 156.542969 C 273.484375 156.660156 273.578125 156.753906 273.695312 156.753906 C 273.8125 156.753906 273.90625 156.660156 273.90625 156.542969 Z M 273.90625 156.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 270.378906 154.648438 C 270.378906 154.53125 270.285156 154.4375 270.167969 154.4375 C 270.050781 154.4375 269.957031 154.53125 269.957031 154.648438 C 269.957031 154.765625 270.050781 154.859375 270.167969 154.859375 C 270.285156 154.859375 270.378906 154.765625 270.378906 154.648438 Z M 270.378906 154.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 267.402344 154 C 267.402344 153.882812 267.308594 153.789062 267.191406 153.789062 C 267.074219 153.789062 266.980469 153.882812 266.980469 154 C 266.980469 154.117188 267.074219 154.210938 267.191406 154.210938 C 267.308594 154.210938 267.402344 154.117188 267.402344 154 Z M 267.402344 154 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.5625 153.675781 C 264.5625 153.558594 264.46875 153.464844 264.351562 153.464844 C 264.234375 153.464844 264.140625 153.558594 264.140625 153.675781 C 264.140625 153.792969 264.234375 153.886719 264.351562 153.886719 C 264.46875 153.886719 264.5625 153.792969 264.5625 153.675781 Z M 264.5625 153.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.402344 154.761719 C 268.402344 154.644531 268.308594 154.550781 268.191406 154.550781 C 268.074219 154.550781 267.980469 154.644531 267.980469 154.761719 C 267.980469 154.878906 268.074219 154.972656 268.191406 154.972656 C 268.308594 154.972656 268.402344 154.878906 268.402344 154.761719 Z M 268.402344 154.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 271.980469 157.835938 C 271.980469 157.71875 271.886719 157.625 271.769531 157.625 C 271.652344 157.625 271.558594 157.71875 271.558594 157.835938 C 271.558594 157.953125 271.652344 158.046875 271.769531 158.046875 C 271.886719 158.046875 271.980469 157.953125 271.980469 157.835938 Z M 271.980469 157.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 270.675781 159.542969 C 270.675781 159.425781 270.582031 159.332031 270.464844 159.332031 C 270.347656 159.332031 270.253906 159.425781 270.253906 159.542969 C 270.253906 159.660156 270.347656 159.753906 270.464844 159.753906 C 270.582031 159.753906 270.675781 159.660156 270.675781 159.542969 Z M 270.675781 159.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 269.734375 160.507812 C 269.734375 160.390625 269.640625 160.296875 269.523438 160.296875 C 269.40625 160.296875 269.3125 160.390625 269.3125 160.507812 C 269.3125 160.625 269.40625 160.71875 269.523438 160.71875 C 269.640625 160.71875 269.734375 160.625 269.734375 160.507812 Z M 269.734375 160.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.71875 166.179688 C 268.71875 166.0625 268.625 165.96875 268.507812 165.96875 C 268.390625 165.96875 268.296875 166.0625 268.296875 166.179688 C 268.296875 166.296875 268.390625 166.390625 268.507812 166.390625 C 268.625 166.390625 268.71875 166.296875 268.71875 166.179688 Z M 268.71875 166.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 268.34375 167.414062 C 268.34375 167.296875 268.25 167.203125 268.132812 167.203125 C 268.015625 167.203125 267.921875 167.296875 267.921875 167.414062 C 267.921875 167.53125 268.015625 167.625 268.132812 167.625 C 268.25 167.625 268.34375 167.53125 268.34375 167.414062 Z M 268.34375 167.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 270.332031 170.039062 C 270.332031 169.921875 270.238281 169.828125 270.121094 169.828125 C 270.003906 169.828125 269.910156 169.921875 269.910156 170.039062 C 269.910156 170.15625 270.003906 170.25 270.121094 170.25 C 270.238281 170.25 270.332031 170.15625 270.332031 170.039062 Z M 270.332031 170.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274 171.042969 C 274 170.925781 273.90625 170.832031 273.789062 170.832031 C 273.671875 170.832031 273.578125 170.925781 273.578125 171.042969 C 273.578125 171.160156 273.671875 171.253906 273.789062 171.253906 C 273.90625 171.253906 274 171.160156 274 171.042969 Z M 274 171.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.34375 173.167969 C 274.34375 173.050781 274.25 172.957031 274.132812 172.957031 C 274.015625 172.957031 273.921875 173.050781 273.921875 173.167969 C 273.921875 173.285156 274.015625 173.378906 274.132812 173.378906 C 274.25 173.378906 274.34375 173.285156 274.34375 173.167969 Z M 274.34375 173.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.484375 169.367188 C 274.484375 169.25 274.390625 169.15625 274.273438 169.15625 C 274.15625 169.15625 274.0625 169.25 274.0625 169.367188 C 274.0625 169.484375 274.15625 169.578125 274.273438 169.578125 C 274.390625 169.578125 274.484375 169.484375 274.484375 169.367188 Z M 274.484375 169.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.898438 173.800781 C 273.898438 173.683594 273.804688 173.589844 273.6875 173.589844 C 273.570312 173.589844 273.476562 173.683594 273.476562 173.800781 C 273.476562 173.917969 273.570312 174.011719 273.6875 174.011719 C 273.804688 174.011719 273.898438 173.917969 273.898438 173.800781 Z M 273.898438 173.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 272.617188 170.445312 C 272.617188 170.328125 272.523438 170.234375 272.40625 170.234375 C 272.289062 170.234375 272.195312 170.328125 272.195312 170.445312 C 272.195312 170.5625 272.289062 170.65625 272.40625 170.65625 C 272.523438 170.65625 272.617188 170.5625 272.617188 170.445312 Z M 272.617188 170.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.734375 171.074219 C 274.734375 170.957031 274.640625 170.863281 274.523438 170.863281 C 274.40625 170.863281 274.3125 170.957031 274.3125 171.074219 C 274.3125 171.191406 274.40625 171.285156 274.523438 171.285156 C 274.640625 171.285156 274.734375 171.191406 274.734375 171.074219 Z M 274.734375 171.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 273.769531 169.753906 C 273.769531 169.636719 273.675781 169.542969 273.558594 169.542969 C 273.441406 169.542969 273.347656 169.636719 273.347656 169.753906 C 273.347656 169.871094 273.441406 169.964844 273.558594 169.964844 C 273.675781 169.964844 273.769531 169.871094 273.769531 169.753906 Z M 273.769531 169.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 278.21875 170.984375 C 278.21875 170.867188 278.125 170.773438 278.007812 170.773438 C 277.890625 170.773438 277.796875 170.867188 277.796875 170.984375 C 277.796875 171.101562 277.890625 171.195312 278.007812 171.195312 C 278.125 171.195312 278.21875 171.101562 278.21875 170.984375 Z M 278.21875 170.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.101562 169.503906 C 277.101562 169.386719 277.007812 169.292969 276.890625 169.292969 C 276.773438 169.292969 276.679688 169.386719 276.679688 169.503906 C 276.679688 169.621094 276.773438 169.714844 276.890625 169.714844 C 277.007812 169.714844 277.101562 169.621094 277.101562 169.503906 Z M 277.101562 169.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 278.375 173.015625 C 278.375 172.898438 278.28125 172.804688 278.164062 172.804688 C 278.046875 172.804688 277.953125 172.898438 277.953125 173.015625 C 277.953125 173.132812 278.046875 173.226562 278.164062 173.226562 C 278.28125 173.226562 278.375 173.132812 278.375 173.015625 Z M 278.375 173.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 275.800781 171.914062 C 275.800781 171.796875 275.707031 171.703125 275.589844 171.703125 C 275.472656 171.703125 275.378906 171.796875 275.378906 171.914062 C 275.378906 172.03125 275.472656 172.125 275.589844 172.125 C 275.707031 172.125 275.800781 172.03125 275.800781 171.914062 Z M 275.800781 171.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.261719 171.984375 C 274.261719 171.867188 274.167969 171.773438 274.050781 171.773438 C 273.933594 171.773438 273.839844 171.867188 273.839844 171.984375 C 273.839844 172.101562 273.933594 172.195312 274.050781 172.195312 C 274.167969 172.195312 274.261719 172.101562 274.261719 171.984375 Z M 274.261719 171.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 271.441406 178.328125 C 271.441406 178.210938 271.347656 178.117188 271.230469 178.117188 C 271.113281 178.117188 271.019531 178.210938 271.019531 178.328125 C 271.019531 178.445312 271.113281 178.539062 271.230469 178.539062 C 271.347656 178.539062 271.441406 178.445312 271.441406 178.328125 Z M 271.441406 178.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 270.777344 176.746094 C 270.777344 176.628906 270.683594 176.535156 270.566406 176.535156 C 270.449219 176.535156 270.355469 176.628906 270.355469 176.746094 C 270.355469 176.863281 270.449219 176.957031 270.566406 176.957031 C 270.683594 176.957031 270.777344 176.863281 270.777344 176.746094 Z M 270.777344 176.746094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 271.160156 180.925781 C 271.160156 180.808594 271.066406 180.714844 270.949219 180.714844 C 270.832031 180.714844 270.738281 180.808594 270.738281 180.925781 C 270.738281 181.042969 270.832031 181.136719 270.949219 181.136719 C 271.066406 181.136719 271.160156 181.042969 271.160156 180.925781 Z M 271.160156 180.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 270.414062 182.484375 C 270.414062 182.367188 270.320312 182.273438 270.203125 182.273438 C 270.085938 182.273438 269.992188 182.367188 269.992188 182.484375 C 269.992188 182.601562 270.085938 182.695312 270.203125 182.695312 C 270.320312 182.695312 270.414062 182.601562 270.414062 182.484375 Z M 270.414062 182.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 267.175781 179.101562 C 267.175781 178.984375 267.082031 178.890625 266.964844 178.890625 C 266.847656 178.890625 266.753906 178.984375 266.753906 179.101562 C 266.753906 179.21875 266.847656 179.3125 266.964844 179.3125 C 267.082031 179.3125 267.175781 179.21875 267.175781 179.101562 Z M 267.175781 179.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.296875 175.191406 C 265.296875 175.074219 265.203125 174.980469 265.085938 174.980469 C 264.96875 174.980469 264.875 175.074219 264.875 175.191406 C 264.875 175.308594 264.96875 175.402344 265.085938 175.402344 C 265.203125 175.402344 265.296875 175.308594 265.296875 175.191406 Z M 265.296875 175.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.589844 177.035156 C 264.589844 176.917969 264.496094 176.824219 264.378906 176.824219 C 264.261719 176.824219 264.167969 176.917969 264.167969 177.035156 C 264.167969 177.152344 264.261719 177.246094 264.378906 177.246094 C 264.496094 177.246094 264.589844 177.152344 264.589844 177.035156 Z M 264.589844 177.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.160156 177.894531 C 262.160156 177.777344 262.066406 177.683594 261.949219 177.683594 C 261.832031 177.683594 261.738281 177.777344 261.738281 177.894531 C 261.738281 178.011719 261.832031 178.105469 261.949219 178.105469 C 262.066406 178.105469 262.160156 178.011719 262.160156 177.894531 Z M 262.160156 177.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.925781 176.226562 C 261.925781 176.109375 261.832031 176.015625 261.714844 176.015625 C 261.597656 176.015625 261.503906 176.109375 261.503906 176.226562 C 261.503906 176.34375 261.597656 176.4375 261.714844 176.4375 C 261.832031 176.4375 261.925781 176.34375 261.925781 176.226562 Z M 261.925781 176.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.605469 173.5 C 264.605469 173.382812 264.511719 173.289062 264.394531 173.289062 C 264.277344 173.289062 264.183594 173.382812 264.183594 173.5 C 264.183594 173.617188 264.277344 173.710938 264.394531 173.710938 C 264.511719 173.710938 264.605469 173.617188 264.605469 173.5 Z M 264.605469 173.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.398438 174.578125 C 262.398438 174.460938 262.304688 174.367188 262.1875 174.367188 C 262.070312 174.367188 261.976562 174.460938 261.976562 174.578125 C 261.976562 174.695312 262.070312 174.789062 262.1875 174.789062 C 262.304688 174.789062 262.398438 174.695312 262.398438 174.578125 Z M 262.398438 174.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 264.417969 175.605469 C 264.417969 175.488281 264.324219 175.394531 264.207031 175.394531 C 264.089844 175.394531 263.996094 175.488281 263.996094 175.605469 C 263.996094 175.722656 264.089844 175.816406 264.207031 175.816406 C 264.324219 175.816406 264.417969 175.722656 264.417969 175.605469 Z M 264.417969 175.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.34375 174.753906 C 263.34375 174.636719 263.25 174.542969 263.132812 174.542969 C 263.015625 174.542969 262.921875 174.636719 262.921875 174.753906 C 262.921875 174.871094 263.015625 174.964844 263.132812 174.964844 C 263.25 174.964844 263.34375 174.871094 263.34375 174.753906 Z M 263.34375 174.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.273438 171.902344 C 259.273438 171.785156 259.179688 171.691406 259.0625 171.691406 C 258.945312 171.691406 258.851562 171.785156 258.851562 171.902344 C 258.851562 172.019531 258.945312 172.113281 259.0625 172.113281 C 259.179688 172.113281 259.273438 172.019531 259.273438 171.902344 Z M 259.273438 171.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.910156 174.824219 C 256.910156 174.707031 256.816406 174.613281 256.699219 174.613281 C 256.582031 174.613281 256.488281 174.707031 256.488281 174.824219 C 256.488281 174.941406 256.582031 175.035156 256.699219 175.035156 C 256.816406 175.035156 256.910156 174.941406 256.910156 174.824219 Z M 256.910156 174.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.984375 173.410156 C 256.984375 173.292969 256.890625 173.199219 256.773438 173.199219 C 256.65625 173.199219 256.5625 173.292969 256.5625 173.410156 C 256.5625 173.527344 256.65625 173.621094 256.773438 173.621094 C 256.890625 173.621094 256.984375 173.527344 256.984375 173.410156 Z M 256.984375 173.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.316406 175.769531 C 253.316406 175.652344 253.222656 175.558594 253.105469 175.558594 C 252.988281 175.558594 252.894531 175.652344 252.894531 175.769531 C 252.894531 175.886719 252.988281 175.980469 253.105469 175.980469 C 253.222656 175.980469 253.316406 175.886719 253.316406 175.769531 Z M 253.316406 175.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.898438 176.015625 C 248.898438 175.898438 248.804688 175.804688 248.6875 175.804688 C 248.570312 175.804688 248.476562 175.898438 248.476562 176.015625 C 248.476562 176.132812 248.570312 176.226562 248.6875 176.226562 C 248.804688 176.226562 248.898438 176.132812 248.898438 176.015625 Z M 248.898438 176.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.175781 173.972656 C 247.175781 173.855469 247.082031 173.761719 246.964844 173.761719 C 246.847656 173.761719 246.753906 173.855469 246.753906 173.972656 C 246.753906 174.089844 246.847656 174.183594 246.964844 174.183594 C 247.082031 174.183594 247.175781 174.089844 247.175781 173.972656 Z M 247.175781 173.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.75 172.988281 C 247.75 172.871094 247.65625 172.777344 247.539062 172.777344 C 247.421875 172.777344 247.328125 172.871094 247.328125 172.988281 C 247.328125 173.105469 247.421875 173.199219 247.539062 173.199219 C 247.65625 173.199219 247.75 173.105469 247.75 172.988281 Z M 247.75 172.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.550781 174.691406 C 246.550781 174.574219 246.457031 174.480469 246.339844 174.480469 C 246.222656 174.480469 246.128906 174.574219 246.128906 174.691406 C 246.128906 174.808594 246.222656 174.902344 246.339844 174.902344 C 246.457031 174.902344 246.550781 174.808594 246.550781 174.691406 Z M 246.550781 174.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.050781 173.652344 C 252.050781 173.535156 251.957031 173.441406 251.839844 173.441406 C 251.722656 173.441406 251.628906 173.535156 251.628906 173.652344 C 251.628906 173.769531 251.722656 173.863281 251.839844 173.863281 C 251.957031 173.863281 252.050781 173.769531 252.050781 173.652344 Z M 252.050781 173.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.890625 171.574219 C 251.890625 171.457031 251.796875 171.363281 251.679688 171.363281 C 251.5625 171.363281 251.46875 171.457031 251.46875 171.574219 C 251.46875 171.691406 251.5625 171.785156 251.679688 171.785156 C 251.796875 171.785156 251.890625 171.691406 251.890625 171.574219 Z M 251.890625 171.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.921875 171.503906 C 251.921875 171.386719 251.828125 171.292969 251.710938 171.292969 C 251.59375 171.292969 251.5 171.386719 251.5 171.503906 C 251.5 171.621094 251.59375 171.714844 251.710938 171.714844 C 251.828125 171.714844 251.921875 171.621094 251.921875 171.503906 Z M 251.921875 171.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.113281 170.605469 C 249.113281 170.488281 249.019531 170.394531 248.902344 170.394531 C 248.785156 170.394531 248.691406 170.488281 248.691406 170.605469 C 248.691406 170.722656 248.785156 170.816406 248.902344 170.816406 C 249.019531 170.816406 249.113281 170.722656 249.113281 170.605469 Z M 249.113281 170.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.664062 168.824219 C 248.664062 168.707031 248.570312 168.613281 248.453125 168.613281 C 248.335938 168.613281 248.242188 168.707031 248.242188 168.824219 C 248.242188 168.941406 248.335938 169.035156 248.453125 169.035156 C 248.570312 169.035156 248.664062 168.941406 248.664062 168.824219 Z M 248.664062 168.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.3125 170.402344 C 248.3125 170.285156 248.21875 170.191406 248.101562 170.191406 C 247.984375 170.191406 247.890625 170.285156 247.890625 170.402344 C 247.890625 170.519531 247.984375 170.613281 248.101562 170.613281 C 248.21875 170.613281 248.3125 170.519531 248.3125 170.402344 Z M 248.3125 170.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.421875 169.808594 C 248.421875 169.691406 248.328125 169.597656 248.210938 169.597656 C 248.09375 169.597656 248 169.691406 248 169.808594 C 248 169.925781 248.09375 170.019531 248.210938 170.019531 C 248.328125 170.019531 248.421875 169.925781 248.421875 169.808594 Z M 248.421875 169.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.714844 167.691406 C 248.714844 167.574219 248.621094 167.480469 248.503906 167.480469 C 248.386719 167.480469 248.292969 167.574219 248.292969 167.691406 C 248.292969 167.808594 248.386719 167.902344 248.503906 167.902344 C 248.621094 167.902344 248.714844 167.808594 248.714844 167.691406 Z M 248.714844 167.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.410156 165.449219 C 250.410156 165.332031 250.316406 165.238281 250.199219 165.238281 C 250.082031 165.238281 249.988281 165.332031 249.988281 165.449219 C 249.988281 165.566406 250.082031 165.660156 250.199219 165.660156 C 250.316406 165.660156 250.410156 165.566406 250.410156 165.449219 Z M 250.410156 165.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.367188 162.832031 C 254.367188 162.714844 254.273438 162.621094 254.15625 162.621094 C 254.039062 162.621094 253.945312 162.714844 253.945312 162.832031 C 253.945312 162.949219 254.039062 163.042969 254.15625 163.042969 C 254.273438 163.042969 254.367188 162.949219 254.367188 162.832031 Z M 254.367188 162.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.351562 164.328125 C 257.351562 164.210938 257.257812 164.117188 257.140625 164.117188 C 257.023438 164.117188 256.929688 164.210938 256.929688 164.328125 C 256.929688 164.445312 257.023438 164.539062 257.140625 164.539062 C 257.257812 164.539062 257.351562 164.445312 257.351562 164.328125 Z M 257.351562 164.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.378906 164.035156 C 257.378906 163.917969 257.285156 163.824219 257.167969 163.824219 C 257.050781 163.824219 256.957031 163.917969 256.957031 164.035156 C 256.957031 164.152344 257.050781 164.246094 257.167969 164.246094 C 257.285156 164.246094 257.378906 164.152344 257.378906 164.035156 Z M 257.378906 164.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.523438 163.449219 C 253.523438 163.332031 253.429688 163.238281 253.3125 163.238281 C 253.195312 163.238281 253.101562 163.332031 253.101562 163.449219 C 253.101562 163.566406 253.195312 163.660156 253.3125 163.660156 C 253.429688 163.660156 253.523438 163.566406 253.523438 163.449219 Z M 253.523438 163.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.210938 163.515625 C 256.210938 163.398438 256.117188 163.304688 256 163.304688 C 255.882812 163.304688 255.789062 163.398438 255.789062 163.515625 C 255.789062 163.632812 255.882812 163.726562 256 163.726562 C 256.117188 163.726562 256.210938 163.632812 256.210938 163.515625 Z M 256.210938 163.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.761719 166.253906 C 253.761719 166.136719 253.667969 166.042969 253.550781 166.042969 C 253.433594 166.042969 253.339844 166.136719 253.339844 166.253906 C 253.339844 166.371094 253.433594 166.464844 253.550781 166.464844 C 253.667969 166.464844 253.761719 166.371094 253.761719 166.253906 Z M 253.761719 166.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.28125 166.304688 C 249.28125 166.1875 249.1875 166.09375 249.070312 166.09375 C 248.953125 166.09375 248.859375 166.1875 248.859375 166.304688 C 248.859375 166.421875 248.953125 166.515625 249.070312 166.515625 C 249.1875 166.515625 249.28125 166.421875 249.28125 166.304688 Z M 249.28125 166.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.691406 165.84375 C 249.691406 165.726562 249.597656 165.632812 249.480469 165.632812 C 249.363281 165.632812 249.269531 165.726562 249.269531 165.84375 C 249.269531 165.960938 249.363281 166.054688 249.480469 166.054688 C 249.597656 166.054688 249.691406 165.960938 249.691406 165.84375 Z M 249.691406 165.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.035156 165.554688 C 250.035156 165.4375 249.941406 165.34375 249.824219 165.34375 C 249.707031 165.34375 249.613281 165.4375 249.613281 165.554688 C 249.613281 165.671875 249.707031 165.765625 249.824219 165.765625 C 249.941406 165.765625 250.035156 165.671875 250.035156 165.554688 Z M 250.035156 165.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.707031 167.425781 C 247.707031 167.308594 247.613281 167.214844 247.496094 167.214844 C 247.378906 167.214844 247.285156 167.308594 247.285156 167.425781 C 247.285156 167.542969 247.378906 167.636719 247.496094 167.636719 C 247.613281 167.636719 247.707031 167.542969 247.707031 167.425781 Z M 247.707031 167.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.257812 164.15625 C 244.257812 164.039062 244.164062 163.945312 244.046875 163.945312 C 243.929688 163.945312 243.835938 164.039062 243.835938 164.15625 C 243.835938 164.273438 243.929688 164.367188 244.046875 164.367188 C 244.164062 164.367188 244.257812 164.273438 244.257812 164.15625 Z M 244.257812 164.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.53125 165.707031 C 241.53125 165.589844 241.4375 165.496094 241.320312 165.496094 C 241.203125 165.496094 241.109375 165.589844 241.109375 165.707031 C 241.109375 165.824219 241.203125 165.917969 241.320312 165.917969 C 241.4375 165.917969 241.53125 165.824219 241.53125 165.707031 Z M 241.53125 165.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.277344 162.378906 C 241.277344 162.261719 241.183594 162.167969 241.066406 162.167969 C 240.949219 162.167969 240.855469 162.261719 240.855469 162.378906 C 240.855469 162.496094 240.949219 162.589844 241.066406 162.589844 C 241.183594 162.589844 241.277344 162.496094 241.277344 162.378906 Z M 241.277344 162.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.132812 163.089844 C 238.132812 162.972656 238.039062 162.878906 237.921875 162.878906 C 237.804688 162.878906 237.710938 162.972656 237.710938 163.089844 C 237.710938 163.207031 237.804688 163.300781 237.921875 163.300781 C 238.039062 163.300781 238.132812 163.207031 238.132812 163.089844 Z M 238.132812 163.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.753906 160.914062 C 239.753906 160.796875 239.660156 160.703125 239.542969 160.703125 C 239.425781 160.703125 239.332031 160.796875 239.332031 160.914062 C 239.332031 161.03125 239.425781 161.125 239.542969 161.125 C 239.660156 161.125 239.753906 161.03125 239.753906 160.914062 Z M 239.753906 160.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.28125 161.035156 C 242.28125 160.917969 242.1875 160.824219 242.070312 160.824219 C 241.953125 160.824219 241.859375 160.917969 241.859375 161.035156 C 241.859375 161.152344 241.953125 161.246094 242.070312 161.246094 C 242.1875 161.246094 242.28125 161.152344 242.28125 161.035156 Z M 242.28125 161.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.527344 161.453125 C 242.527344 161.335938 242.433594 161.242188 242.316406 161.242188 C 242.199219 161.242188 242.105469 161.335938 242.105469 161.453125 C 242.105469 161.570312 242.199219 161.664062 242.316406 161.664062 C 242.433594 161.664062 242.527344 161.570312 242.527344 161.453125 Z M 242.527344 161.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.066406 160.046875 C 243.066406 159.929688 242.972656 159.835938 242.855469 159.835938 C 242.738281 159.835938 242.644531 159.929688 242.644531 160.046875 C 242.644531 160.164062 242.738281 160.257812 242.855469 160.257812 C 242.972656 160.257812 243.066406 160.164062 243.066406 160.046875 Z M 243.066406 160.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.023438 160.886719 C 247.023438 160.769531 246.929688 160.675781 246.8125 160.675781 C 246.695312 160.675781 246.601562 160.769531 246.601562 160.886719 C 246.601562 161.003906 246.695312 161.097656 246.8125 161.097656 C 246.929688 161.097656 247.023438 161.003906 247.023438 160.886719 Z M 247.023438 160.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.035156 160.316406 C 244.035156 160.199219 243.941406 160.105469 243.824219 160.105469 C 243.707031 160.105469 243.613281 160.199219 243.613281 160.316406 C 243.613281 160.433594 243.707031 160.527344 243.824219 160.527344 C 243.941406 160.527344 244.035156 160.433594 244.035156 160.316406 Z M 244.035156 160.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.992188 163.085938 C 240.992188 162.96875 240.898438 162.875 240.78125 162.875 C 240.664062 162.875 240.570312 162.96875 240.570312 163.085938 C 240.570312 163.203125 240.664062 163.296875 240.78125 163.296875 C 240.898438 163.296875 240.992188 163.203125 240.992188 163.085938 Z M 240.992188 163.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.085938 165.425781 C 244.085938 165.308594 243.992188 165.214844 243.875 165.214844 C 243.757812 165.214844 243.664062 165.308594 243.664062 165.425781 C 243.664062 165.542969 243.757812 165.636719 243.875 165.636719 C 243.992188 165.636719 244.085938 165.542969 244.085938 165.425781 Z M 244.085938 165.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.664062 167.503906 C 241.664062 167.386719 241.570312 167.292969 241.453125 167.292969 C 241.335938 167.292969 241.242188 167.386719 241.242188 167.503906 C 241.242188 167.621094 241.335938 167.714844 241.453125 167.714844 C 241.570312 167.714844 241.664062 167.621094 241.664062 167.503906 Z M 241.664062 167.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.539062 167.488281 C 241.539062 167.371094 241.445312 167.277344 241.328125 167.277344 C 241.210938 167.277344 241.117188 167.371094 241.117188 167.488281 C 241.117188 167.605469 241.210938 167.699219 241.328125 167.699219 C 241.445312 167.699219 241.539062 167.605469 241.539062 167.488281 Z M 241.539062 167.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.464844 169.007812 C 244.464844 168.890625 244.371094 168.796875 244.253906 168.796875 C 244.136719 168.796875 244.042969 168.890625 244.042969 169.007812 C 244.042969 169.125 244.136719 169.21875 244.253906 169.21875 C 244.371094 169.21875 244.464844 169.125 244.464844 169.007812 Z M 244.464844 169.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.445312 171.269531 C 244.445312 171.152344 244.351562 171.058594 244.234375 171.058594 C 244.117188 171.058594 244.023438 171.152344 244.023438 171.269531 C 244.023438 171.386719 244.117188 171.480469 244.234375 171.480469 C 244.351562 171.480469 244.445312 171.386719 244.445312 171.269531 Z M 244.445312 171.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.902344 173.019531 C 245.902344 172.902344 245.808594 172.808594 245.691406 172.808594 C 245.574219 172.808594 245.480469 172.902344 245.480469 173.019531 C 245.480469 173.136719 245.574219 173.230469 245.691406 173.230469 C 245.808594 173.230469 245.902344 173.136719 245.902344 173.019531 Z M 245.902344 173.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.828125 171.730469 C 247.828125 171.613281 247.734375 171.519531 247.617188 171.519531 C 247.5 171.519531 247.40625 171.613281 247.40625 171.730469 C 247.40625 171.847656 247.5 171.941406 247.617188 171.941406 C 247.734375 171.941406 247.828125 171.847656 247.828125 171.730469 Z M 247.828125 171.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.574219 171.441406 C 251.574219 171.324219 251.480469 171.230469 251.363281 171.230469 C 251.246094 171.230469 251.152344 171.324219 251.152344 171.441406 C 251.152344 171.558594 251.246094 171.652344 251.363281 171.652344 C 251.480469 171.652344 251.574219 171.558594 251.574219 171.441406 Z M 251.574219 171.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.957031 169.976562 C 254.957031 169.859375 254.863281 169.765625 254.746094 169.765625 C 254.628906 169.765625 254.535156 169.859375 254.535156 169.976562 C 254.535156 170.09375 254.628906 170.1875 254.746094 170.1875 C 254.863281 170.1875 254.957031 170.09375 254.957031 169.976562 Z M 254.957031 169.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.335938 171.925781 C 252.335938 171.808594 252.242188 171.714844 252.125 171.714844 C 252.007812 171.714844 251.914062 171.808594 251.914062 171.925781 C 251.914062 172.042969 252.007812 172.136719 252.125 172.136719 C 252.242188 172.136719 252.335938 172.042969 252.335938 171.925781 Z M 252.335938 171.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.484375 166.4375 C 255.484375 166.320312 255.390625 166.226562 255.273438 166.226562 C 255.15625 166.226562 255.0625 166.320312 255.0625 166.4375 C 255.0625 166.554688 255.15625 166.648438 255.273438 166.648438 C 255.390625 166.648438 255.484375 166.554688 255.484375 166.4375 Z M 255.484375 166.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.519531 166.382812 C 255.519531 166.265625 255.425781 166.171875 255.308594 166.171875 C 255.191406 166.171875 255.097656 166.265625 255.097656 166.382812 C 255.097656 166.5 255.191406 166.59375 255.308594 166.59375 C 255.425781 166.59375 255.519531 166.5 255.519531 166.382812 Z M 255.519531 166.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.464844 165.738281 C 254.464844 165.621094 254.371094 165.527344 254.253906 165.527344 C 254.136719 165.527344 254.042969 165.621094 254.042969 165.738281 C 254.042969 165.855469 254.136719 165.949219 254.253906 165.949219 C 254.371094 165.949219 254.464844 165.855469 254.464844 165.738281 Z M 254.464844 165.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.285156 165.15625 C 254.285156 165.039062 254.191406 164.945312 254.074219 164.945312 C 253.957031 164.945312 253.863281 165.039062 253.863281 165.15625 C 253.863281 165.273438 253.957031 165.367188 254.074219 165.367188 C 254.191406 165.367188 254.285156 165.273438 254.285156 165.15625 Z M 254.285156 165.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.953125 166.8125 C 255.953125 166.695312 255.859375 166.601562 255.742188 166.601562 C 255.625 166.601562 255.53125 166.695312 255.53125 166.8125 C 255.53125 166.929688 255.625 167.023438 255.742188 167.023438 C 255.859375 167.023438 255.953125 166.929688 255.953125 166.8125 Z M 255.953125 166.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.082031 167.410156 C 258.082031 167.292969 257.988281 167.199219 257.871094 167.199219 C 257.753906 167.199219 257.660156 167.292969 257.660156 167.410156 C 257.660156 167.527344 257.753906 167.621094 257.871094 167.621094 C 257.988281 167.621094 258.082031 167.527344 258.082031 167.410156 Z M 258.082031 167.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.457031 170.613281 C 260.457031 170.496094 260.363281 170.402344 260.246094 170.402344 C 260.128906 170.402344 260.035156 170.496094 260.035156 170.613281 C 260.035156 170.730469 260.128906 170.824219 260.246094 170.824219 C 260.363281 170.824219 260.457031 170.730469 260.457031 170.613281 Z M 260.457031 170.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.277344 174.707031 C 258.277344 174.589844 258.183594 174.496094 258.066406 174.496094 C 257.949219 174.496094 257.855469 174.589844 257.855469 174.707031 C 257.855469 174.824219 257.949219 174.917969 258.066406 174.917969 C 258.183594 174.917969 258.277344 174.824219 258.277344 174.707031 Z M 258.277344 174.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.585938 176.171875 C 255.585938 176.054688 255.492188 175.960938 255.375 175.960938 C 255.257812 175.960938 255.164062 176.054688 255.164062 176.171875 C 255.164062 176.289062 255.257812 176.382812 255.375 176.382812 C 255.492188 176.382812 255.585938 176.289062 255.585938 176.171875 Z M 255.585938 176.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.097656 176.945312 C 258.097656 176.828125 258.003906 176.734375 257.886719 176.734375 C 257.769531 176.734375 257.675781 176.828125 257.675781 176.945312 C 257.675781 177.0625 257.769531 177.15625 257.886719 177.15625 C 258.003906 177.15625 258.097656 177.0625 258.097656 176.945312 Z M 258.097656 176.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.984375 175.933594 C 258.984375 175.816406 258.890625 175.722656 258.773438 175.722656 C 258.65625 175.722656 258.5625 175.816406 258.5625 175.933594 C 258.5625 176.050781 258.65625 176.144531 258.773438 176.144531 C 258.890625 176.144531 258.984375 176.050781 258.984375 175.933594 Z M 258.984375 175.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.394531 177.277344 C 256.394531 177.160156 256.300781 177.066406 256.183594 177.066406 C 256.066406 177.066406 255.972656 177.160156 255.972656 177.277344 C 255.972656 177.394531 256.066406 177.488281 256.183594 177.488281 C 256.300781 177.488281 256.394531 177.394531 256.394531 177.277344 Z M 256.394531 177.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.328125 178.4375 C 258.328125 178.320312 258.234375 178.226562 258.117188 178.226562 C 258 178.226562 257.90625 178.320312 257.90625 178.4375 C 257.90625 178.554688 258 178.648438 258.117188 178.648438 C 258.234375 178.648438 258.328125 178.554688 258.328125 178.4375 Z M 258.328125 178.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.730469 179.0625 C 256.730469 178.945312 256.636719 178.851562 256.519531 178.851562 C 256.402344 178.851562 256.308594 178.945312 256.308594 179.0625 C 256.308594 179.179688 256.402344 179.273438 256.519531 179.273438 C 256.636719 179.273438 256.730469 179.179688 256.730469 179.0625 Z M 256.730469 179.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.832031 179.734375 C 255.832031 179.617188 255.738281 179.523438 255.621094 179.523438 C 255.503906 179.523438 255.410156 179.617188 255.410156 179.734375 C 255.410156 179.851562 255.503906 179.945312 255.621094 179.945312 C 255.738281 179.945312 255.832031 179.851562 255.832031 179.734375 Z M 255.832031 179.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.765625 181.03125 C 250.765625 180.914062 250.671875 180.820312 250.554688 180.820312 C 250.4375 180.820312 250.34375 180.914062 250.34375 181.03125 C 250.34375 181.148438 250.4375 181.242188 250.554688 181.242188 C 250.671875 181.242188 250.765625 181.148438 250.765625 181.03125 Z M 250.765625 181.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.605469 182.796875 C 256.605469 182.679688 256.511719 182.585938 256.394531 182.585938 C 256.277344 182.585938 256.183594 182.679688 256.183594 182.796875 C 256.183594 182.914062 256.277344 183.007812 256.394531 183.007812 C 256.511719 183.007812 256.605469 182.914062 256.605469 182.796875 Z M 256.605469 182.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.625 180.949219 C 253.625 180.832031 253.53125 180.738281 253.414062 180.738281 C 253.296875 180.738281 253.203125 180.832031 253.203125 180.949219 C 253.203125 181.066406 253.296875 181.160156 253.414062 181.160156 C 253.53125 181.160156 253.625 181.066406 253.625 180.949219 Z M 253.625 180.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.628906 183.460938 C 253.628906 183.34375 253.535156 183.25 253.417969 183.25 C 253.300781 183.25 253.207031 183.34375 253.207031 183.460938 C 253.207031 183.578125 253.300781 183.671875 253.417969 183.671875 C 253.535156 183.671875 253.628906 183.578125 253.628906 183.460938 Z M 253.628906 183.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.152344 183.332031 C 255.152344 183.214844 255.058594 183.121094 254.941406 183.121094 C 254.824219 183.121094 254.730469 183.214844 254.730469 183.332031 C 254.730469 183.449219 254.824219 183.542969 254.941406 183.542969 C 255.058594 183.542969 255.152344 183.449219 255.152344 183.332031 Z M 255.152344 183.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.703125 180.320312 C 253.703125 180.203125 253.609375 180.109375 253.492188 180.109375 C 253.375 180.109375 253.28125 180.203125 253.28125 180.320312 C 253.28125 180.4375 253.375 180.53125 253.492188 180.53125 C 253.609375 180.53125 253.703125 180.4375 253.703125 180.320312 Z M 253.703125 180.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.972656 181.753906 C 254.972656 181.636719 254.878906 181.542969 254.761719 181.542969 C 254.644531 181.542969 254.550781 181.636719 254.550781 181.753906 C 254.550781 181.871094 254.644531 181.964844 254.761719 181.964844 C 254.878906 181.964844 254.972656 181.871094 254.972656 181.753906 Z M 254.972656 181.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.503906 180.109375 C 258.503906 179.992188 258.410156 179.898438 258.292969 179.898438 C 258.175781 179.898438 258.082031 179.992188 258.082031 180.109375 C 258.082031 180.226562 258.175781 180.320312 258.292969 180.320312 C 258.410156 180.320312 258.503906 180.226562 258.503906 180.109375 Z M 258.503906 180.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.164062 181.835938 C 261.164062 181.71875 261.070312 181.625 260.953125 181.625 C 260.835938 181.625 260.742188 181.71875 260.742188 181.835938 C 260.742188 181.953125 260.835938 182.046875 260.953125 182.046875 C 261.070312 182.046875 261.164062 181.953125 261.164062 181.835938 Z M 261.164062 181.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.691406 181.078125 C 260.691406 180.960938 260.597656 180.867188 260.480469 180.867188 C 260.363281 180.867188 260.269531 180.960938 260.269531 181.078125 C 260.269531 181.195312 260.363281 181.289062 260.480469 181.289062 C 260.597656 181.289062 260.691406 181.195312 260.691406 181.078125 Z M 260.691406 181.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.332031 180.726562 C 262.332031 180.609375 262.238281 180.515625 262.121094 180.515625 C 262.003906 180.515625 261.910156 180.609375 261.910156 180.726562 C 261.910156 180.84375 262.003906 180.9375 262.121094 180.9375 C 262.238281 180.9375 262.332031 180.84375 262.332031 180.726562 Z M 262.332031 180.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.585938 182.203125 C 257.585938 182.085938 257.492188 181.992188 257.375 181.992188 C 257.257812 181.992188 257.164062 182.085938 257.164062 182.203125 C 257.164062 182.320312 257.257812 182.414062 257.375 182.414062 C 257.492188 182.414062 257.585938 182.320312 257.585938 182.203125 Z M 257.585938 182.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.761719 183.472656 C 252.761719 183.355469 252.667969 183.261719 252.550781 183.261719 C 252.433594 183.261719 252.339844 183.355469 252.339844 183.472656 C 252.339844 183.589844 252.433594 183.683594 252.550781 183.683594 C 252.667969 183.683594 252.761719 183.589844 252.761719 183.472656 Z M 252.761719 183.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.855469 185.574219 C 249.855469 185.457031 249.761719 185.363281 249.644531 185.363281 C 249.527344 185.363281 249.433594 185.457031 249.433594 185.574219 C 249.433594 185.691406 249.527344 185.785156 249.644531 185.785156 C 249.761719 185.785156 249.855469 185.691406 249.855469 185.574219 Z M 249.855469 185.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.09375 189.480469 C 250.09375 189.363281 250 189.269531 249.882812 189.269531 C 249.765625 189.269531 249.671875 189.363281 249.671875 189.480469 C 249.671875 189.597656 249.765625 189.691406 249.882812 189.691406 C 250 189.691406 250.09375 189.597656 250.09375 189.480469 Z M 250.09375 189.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.882812 192.703125 C 247.882812 192.585938 247.789062 192.492188 247.671875 192.492188 C 247.554688 192.492188 247.460938 192.585938 247.460938 192.703125 C 247.460938 192.820312 247.554688 192.914062 247.671875 192.914062 C 247.789062 192.914062 247.882812 192.820312 247.882812 192.703125 Z M 247.882812 192.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.734375 193.496094 C 249.734375 193.378906 249.640625 193.285156 249.523438 193.285156 C 249.40625 193.285156 249.3125 193.378906 249.3125 193.496094 C 249.3125 193.613281 249.40625 193.707031 249.523438 193.707031 C 249.640625 193.707031 249.734375 193.613281 249.734375 193.496094 Z M 249.734375 193.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.863281 195.058594 C 251.863281 194.941406 251.769531 194.847656 251.652344 194.847656 C 251.535156 194.847656 251.441406 194.941406 251.441406 195.058594 C 251.441406 195.175781 251.535156 195.269531 251.652344 195.269531 C 251.769531 195.269531 251.863281 195.175781 251.863281 195.058594 Z M 251.863281 195.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.882812 192.160156 C 250.882812 192.042969 250.789062 191.949219 250.671875 191.949219 C 250.554688 191.949219 250.460938 192.042969 250.460938 192.160156 C 250.460938 192.277344 250.554688 192.371094 250.671875 192.371094 C 250.789062 192.371094 250.882812 192.277344 250.882812 192.160156 Z M 250.882812 192.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.75 191.269531 C 249.75 191.152344 249.65625 191.058594 249.539062 191.058594 C 249.421875 191.058594 249.328125 191.152344 249.328125 191.269531 C 249.328125 191.386719 249.421875 191.480469 249.539062 191.480469 C 249.65625 191.480469 249.75 191.386719 249.75 191.269531 Z M 249.75 191.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.425781 193.664062 C 251.425781 193.546875 251.332031 193.453125 251.214844 193.453125 C 251.097656 193.453125 251.003906 193.546875 251.003906 193.664062 C 251.003906 193.78125 251.097656 193.875 251.214844 193.875 C 251.332031 193.875 251.425781 193.78125 251.425781 193.664062 Z M 251.425781 193.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.527344 196.886719 C 251.527344 196.769531 251.433594 196.675781 251.316406 196.675781 C 251.199219 196.675781 251.105469 196.769531 251.105469 196.886719 C 251.105469 197.003906 251.199219 197.097656 251.316406 197.097656 C 251.433594 197.097656 251.527344 197.003906 251.527344 196.886719 Z M 251.527344 196.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.472656 199.820312 C 254.472656 199.703125 254.378906 199.609375 254.261719 199.609375 C 254.144531 199.609375 254.050781 199.703125 254.050781 199.820312 C 254.050781 199.9375 254.144531 200.03125 254.261719 200.03125 C 254.378906 200.03125 254.472656 199.9375 254.472656 199.820312 Z M 254.472656 199.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.574219 202.53125 C 255.574219 202.414062 255.480469 202.320312 255.363281 202.320312 C 255.246094 202.320312 255.152344 202.414062 255.152344 202.53125 C 255.152344 202.648438 255.246094 202.742188 255.363281 202.742188 C 255.480469 202.742188 255.574219 202.648438 255.574219 202.53125 Z M 255.574219 202.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.871094 202.742188 C 254.871094 202.625 254.777344 202.53125 254.660156 202.53125 C 254.542969 202.53125 254.449219 202.625 254.449219 202.742188 C 254.449219 202.859375 254.542969 202.953125 254.660156 202.953125 C 254.777344 202.953125 254.871094 202.859375 254.871094 202.742188 Z M 254.871094 202.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.535156 201.367188 C 255.535156 201.25 255.441406 201.15625 255.324219 201.15625 C 255.207031 201.15625 255.113281 201.25 255.113281 201.367188 C 255.113281 201.484375 255.207031 201.578125 255.324219 201.578125 C 255.441406 201.578125 255.535156 201.484375 255.535156 201.367188 Z M 255.535156 201.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.613281 202.8125 C 254.613281 202.695312 254.519531 202.601562 254.402344 202.601562 C 254.285156 202.601562 254.191406 202.695312 254.191406 202.8125 C 254.191406 202.929688 254.285156 203.023438 254.402344 203.023438 C 254.519531 203.023438 254.613281 202.929688 254.613281 202.8125 Z M 254.613281 202.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.050781 203.914062 C 255.050781 203.796875 254.957031 203.703125 254.839844 203.703125 C 254.722656 203.703125 254.628906 203.796875 254.628906 203.914062 C 254.628906 204.03125 254.722656 204.125 254.839844 204.125 C 254.957031 204.125 255.050781 204.03125 255.050781 203.914062 Z M 255.050781 203.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.148438 203.710938 C 251.148438 203.59375 251.054688 203.5 250.9375 203.5 C 250.820312 203.5 250.726562 203.59375 250.726562 203.710938 C 250.726562 203.828125 250.820312 203.921875 250.9375 203.921875 C 251.054688 203.921875 251.148438 203.828125 251.148438 203.710938 Z M 251.148438 203.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.828125 200.410156 C 250.828125 200.292969 250.734375 200.199219 250.617188 200.199219 C 250.5 200.199219 250.40625 200.292969 250.40625 200.410156 C 250.40625 200.527344 250.5 200.621094 250.617188 200.621094 C 250.734375 200.621094 250.828125 200.527344 250.828125 200.410156 Z M 250.828125 200.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.453125 199.023438 C 250.453125 198.90625 250.359375 198.8125 250.242188 198.8125 C 250.125 198.8125 250.03125 198.90625 250.03125 199.023438 C 250.03125 199.140625 250.125 199.234375 250.242188 199.234375 C 250.359375 199.234375 250.453125 199.140625 250.453125 199.023438 Z M 250.453125 199.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.519531 198.578125 C 252.519531 198.460938 252.425781 198.367188 252.308594 198.367188 C 252.191406 198.367188 252.097656 198.460938 252.097656 198.578125 C 252.097656 198.695312 252.191406 198.789062 252.308594 198.789062 C 252.425781 198.789062 252.519531 198.695312 252.519531 198.578125 Z M 252.519531 198.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.730469 199.96875 C 248.730469 199.851562 248.636719 199.757812 248.519531 199.757812 C 248.402344 199.757812 248.308594 199.851562 248.308594 199.96875 C 248.308594 200.085938 248.402344 200.179688 248.519531 200.179688 C 248.636719 200.179688 248.730469 200.085938 248.730469 199.96875 Z M 248.730469 199.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.484375 200.121094 C 249.484375 200.003906 249.390625 199.910156 249.273438 199.910156 C 249.15625 199.910156 249.0625 200.003906 249.0625 200.121094 C 249.0625 200.238281 249.15625 200.332031 249.273438 200.332031 C 249.390625 200.332031 249.484375 200.238281 249.484375 200.121094 Z M 249.484375 200.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.59375 197.367188 C 252.59375 197.25 252.5 197.15625 252.382812 197.15625 C 252.265625 197.15625 252.171875 197.25 252.171875 197.367188 C 252.171875 197.484375 252.265625 197.578125 252.382812 197.578125 C 252.5 197.578125 252.59375 197.484375 252.59375 197.367188 Z M 252.59375 197.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.734375 196.535156 C 251.734375 196.417969 251.640625 196.324219 251.523438 196.324219 C 251.40625 196.324219 251.3125 196.417969 251.3125 196.535156 C 251.3125 196.652344 251.40625 196.746094 251.523438 196.746094 C 251.640625 196.746094 251.734375 196.652344 251.734375 196.535156 Z M 251.734375 196.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.804688 194.355469 C 247.804688 194.238281 247.710938 194.144531 247.59375 194.144531 C 247.476562 194.144531 247.382812 194.238281 247.382812 194.355469 C 247.382812 194.472656 247.476562 194.566406 247.59375 194.566406 C 247.710938 194.566406 247.804688 194.472656 247.804688 194.355469 Z M 247.804688 194.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.476562 196.066406 C 247.476562 195.949219 247.382812 195.855469 247.265625 195.855469 C 247.148438 195.855469 247.054688 195.949219 247.054688 196.066406 C 247.054688 196.183594 247.148438 196.277344 247.265625 196.277344 C 247.382812 196.277344 247.476562 196.183594 247.476562 196.066406 Z M 247.476562 196.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.171875 197.175781 C 246.171875 197.058594 246.078125 196.964844 245.960938 196.964844 C 245.84375 196.964844 245.75 197.058594 245.75 197.175781 C 245.75 197.292969 245.84375 197.386719 245.960938 197.386719 C 246.078125 197.386719 246.171875 197.292969 246.171875 197.175781 Z M 246.171875 197.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.585938 195.035156 C 244.585938 194.917969 244.492188 194.824219 244.375 194.824219 C 244.257812 194.824219 244.164062 194.917969 244.164062 195.035156 C 244.164062 195.152344 244.257812 195.246094 244.375 195.246094 C 244.492188 195.246094 244.585938 195.152344 244.585938 195.035156 Z M 244.585938 195.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.667969 196.398438 C 245.667969 196.28125 245.574219 196.1875 245.457031 196.1875 C 245.339844 196.1875 245.246094 196.28125 245.246094 196.398438 C 245.246094 196.515625 245.339844 196.609375 245.457031 196.609375 C 245.574219 196.609375 245.667969 196.515625 245.667969 196.398438 Z M 245.667969 196.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.664062 199.027344 C 242.664062 198.910156 242.570312 198.816406 242.453125 198.816406 C 242.335938 198.816406 242.242188 198.910156 242.242188 199.027344 C 242.242188 199.144531 242.335938 199.238281 242.453125 199.238281 C 242.570312 199.238281 242.664062 199.144531 242.664062 199.027344 Z M 242.664062 199.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.636719 196.117188 C 240.636719 196 240.542969 195.90625 240.425781 195.90625 C 240.308594 195.90625 240.214844 196 240.214844 196.117188 C 240.214844 196.234375 240.308594 196.328125 240.425781 196.328125 C 240.542969 196.328125 240.636719 196.234375 240.636719 196.117188 Z M 240.636719 196.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.210938 195.078125 C 240.210938 194.960938 240.117188 194.867188 240 194.867188 C 239.882812 194.867188 239.789062 194.960938 239.789062 195.078125 C 239.789062 195.195312 239.882812 195.289062 240 195.289062 C 240.117188 195.289062 240.210938 195.195312 240.210938 195.078125 Z M 240.210938 195.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.714844 196.957031 C 239.714844 196.839844 239.621094 196.746094 239.503906 196.746094 C 239.386719 196.746094 239.292969 196.839844 239.292969 196.957031 C 239.292969 197.074219 239.386719 197.167969 239.503906 197.167969 C 239.621094 197.167969 239.714844 197.074219 239.714844 196.957031 Z M 239.714844 196.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.816406 193.609375 C 239.816406 193.492188 239.722656 193.398438 239.605469 193.398438 C 239.488281 193.398438 239.394531 193.492188 239.394531 193.609375 C 239.394531 193.726562 239.488281 193.820312 239.605469 193.820312 C 239.722656 193.820312 239.816406 193.726562 239.816406 193.609375 Z M 239.816406 193.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.757812 196.414062 C 235.757812 196.296875 235.664062 196.203125 235.546875 196.203125 C 235.429688 196.203125 235.335938 196.296875 235.335938 196.414062 C 235.335938 196.53125 235.429688 196.625 235.546875 196.625 C 235.664062 196.625 235.757812 196.53125 235.757812 196.414062 Z M 235.757812 196.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.253906 194.652344 C 234.253906 194.535156 234.160156 194.441406 234.042969 194.441406 C 233.925781 194.441406 233.832031 194.535156 233.832031 194.652344 C 233.832031 194.769531 233.925781 194.863281 234.042969 194.863281 C 234.160156 194.863281 234.253906 194.769531 234.253906 194.652344 Z M 234.253906 194.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.773438 196.261719 C 234.773438 196.144531 234.679688 196.050781 234.5625 196.050781 C 234.445312 196.050781 234.351562 196.144531 234.351562 196.261719 C 234.351562 196.378906 234.445312 196.472656 234.5625 196.472656 C 234.679688 196.472656 234.773438 196.378906 234.773438 196.261719 Z M 234.773438 196.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.820312 196.46875 C 233.820312 196.351562 233.726562 196.257812 233.609375 196.257812 C 233.492188 196.257812 233.398438 196.351562 233.398438 196.46875 C 233.398438 196.585938 233.492188 196.679688 233.609375 196.679688 C 233.726562 196.679688 233.820312 196.585938 233.820312 196.46875 Z M 233.820312 196.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.875 196.570312 C 232.875 196.453125 232.78125 196.359375 232.664062 196.359375 C 232.546875 196.359375 232.453125 196.453125 232.453125 196.570312 C 232.453125 196.6875 232.546875 196.78125 232.664062 196.78125 C 232.78125 196.78125 232.875 196.6875 232.875 196.570312 Z M 232.875 196.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.648438 193.996094 C 229.648438 193.878906 229.554688 193.785156 229.4375 193.785156 C 229.320312 193.785156 229.226562 193.878906 229.226562 193.996094 C 229.226562 194.113281 229.320312 194.207031 229.4375 194.207031 C 229.554688 194.207031 229.648438 194.113281 229.648438 193.996094 Z M 229.648438 193.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.765625 193.117188 C 230.765625 193 230.671875 192.90625 230.554688 192.90625 C 230.4375 192.90625 230.34375 193 230.34375 193.117188 C 230.34375 193.234375 230.4375 193.328125 230.554688 193.328125 C 230.671875 193.328125 230.765625 193.234375 230.765625 193.117188 Z M 230.765625 193.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.09375 193.558594 C 233.09375 193.441406 233 193.347656 232.882812 193.347656 C 232.765625 193.347656 232.671875 193.441406 232.671875 193.558594 C 232.671875 193.675781 232.765625 193.769531 232.882812 193.769531 C 233 193.769531 233.09375 193.675781 233.09375 193.558594 Z M 233.09375 193.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.8125 193.234375 C 235.8125 193.117188 235.71875 193.023438 235.601562 193.023438 C 235.484375 193.023438 235.390625 193.117188 235.390625 193.234375 C 235.390625 193.351562 235.484375 193.445312 235.601562 193.445312 C 235.71875 193.445312 235.8125 193.351562 235.8125 193.234375 Z M 235.8125 193.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.042969 190.871094 C 240.042969 190.753906 239.949219 190.660156 239.832031 190.660156 C 239.714844 190.660156 239.621094 190.753906 239.621094 190.871094 C 239.621094 190.988281 239.714844 191.082031 239.832031 191.082031 C 239.949219 191.082031 240.042969 190.988281 240.042969 190.871094 Z M 240.042969 190.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.097656 192.285156 C 242.097656 192.167969 242.003906 192.074219 241.886719 192.074219 C 241.769531 192.074219 241.675781 192.167969 241.675781 192.285156 C 241.675781 192.402344 241.769531 192.496094 241.886719 192.496094 C 242.003906 192.496094 242.097656 192.402344 242.097656 192.285156 Z M 242.097656 192.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.859375 194.75 C 243.859375 194.632812 243.765625 194.539062 243.648438 194.539062 C 243.53125 194.539062 243.4375 194.632812 243.4375 194.75 C 243.4375 194.867188 243.53125 194.960938 243.648438 194.960938 C 243.765625 194.960938 243.859375 194.867188 243.859375 194.75 Z M 243.859375 194.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.625 199.128906 C 244.625 199.011719 244.53125 198.917969 244.414062 198.917969 C 244.296875 198.917969 244.203125 199.011719 244.203125 199.128906 C 244.203125 199.246094 244.296875 199.339844 244.414062 199.339844 C 244.53125 199.339844 244.625 199.246094 244.625 199.128906 Z M 244.625 199.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.148438 199.757812 C 245.148438 199.640625 245.054688 199.546875 244.9375 199.546875 C 244.820312 199.546875 244.726562 199.640625 244.726562 199.757812 C 244.726562 199.875 244.820312 199.96875 244.9375 199.96875 C 245.054688 199.96875 245.148438 199.875 245.148438 199.757812 Z M 245.148438 199.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.832031 199.351562 C 245.832031 199.234375 245.738281 199.140625 245.621094 199.140625 C 245.503906 199.140625 245.410156 199.234375 245.410156 199.351562 C 245.410156 199.46875 245.503906 199.5625 245.621094 199.5625 C 245.738281 199.5625 245.832031 199.46875 245.832031 199.351562 Z M 245.832031 199.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.996094 202.261719 C 249.996094 202.144531 249.902344 202.050781 249.785156 202.050781 C 249.667969 202.050781 249.574219 202.144531 249.574219 202.261719 C 249.574219 202.378906 249.667969 202.472656 249.785156 202.472656 C 249.902344 202.472656 249.996094 202.378906 249.996094 202.261719 Z M 249.996094 202.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.089844 200.875 C 254.089844 200.757812 253.996094 200.664062 253.878906 200.664062 C 253.761719 200.664062 253.667969 200.757812 253.667969 200.875 C 253.667969 200.992188 253.761719 201.085938 253.878906 201.085938 C 253.996094 201.085938 254.089844 200.992188 254.089844 200.875 Z M 254.089844 200.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.8125 204.445312 C 251.8125 204.328125 251.71875 204.234375 251.601562 204.234375 C 251.484375 204.234375 251.390625 204.328125 251.390625 204.445312 C 251.390625 204.5625 251.484375 204.65625 251.601562 204.65625 C 251.71875 204.65625 251.8125 204.5625 251.8125 204.445312 Z M 251.8125 204.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.847656 202.65625 C 253.847656 202.539062 253.753906 202.445312 253.636719 202.445312 C 253.519531 202.445312 253.425781 202.539062 253.425781 202.65625 C 253.425781 202.773438 253.519531 202.867188 253.636719 202.867188 C 253.753906 202.867188 253.847656 202.773438 253.847656 202.65625 Z M 253.847656 202.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.863281 204.015625 C 250.863281 203.898438 250.769531 203.804688 250.652344 203.804688 C 250.535156 203.804688 250.441406 203.898438 250.441406 204.015625 C 250.441406 204.132812 250.535156 204.226562 250.652344 204.226562 C 250.769531 204.226562 250.863281 204.132812 250.863281 204.015625 Z M 250.863281 204.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.734375 205.859375 C 250.734375 205.742188 250.640625 205.648438 250.523438 205.648438 C 250.40625 205.648438 250.3125 205.742188 250.3125 205.859375 C 250.3125 205.976562 250.40625 206.070312 250.523438 206.070312 C 250.640625 206.070312 250.734375 205.976562 250.734375 205.859375 Z M 250.734375 205.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.160156 205.007812 C 254.160156 204.890625 254.066406 204.796875 253.949219 204.796875 C 253.832031 204.796875 253.738281 204.890625 253.738281 205.007812 C 253.738281 205.125 253.832031 205.21875 253.949219 205.21875 C 254.066406 205.21875 254.160156 205.125 254.160156 205.007812 Z M 254.160156 205.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.222656 209.828125 C 256.222656 209.710938 256.128906 209.617188 256.011719 209.617188 C 255.894531 209.617188 255.800781 209.710938 255.800781 209.828125 C 255.800781 209.945312 255.894531 210.039062 256.011719 210.039062 C 256.128906 210.039062 256.222656 209.945312 256.222656 209.828125 Z M 256.222656 209.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.3125 209.347656 C 257.3125 209.230469 257.21875 209.136719 257.101562 209.136719 C 256.984375 209.136719 256.890625 209.230469 256.890625 209.347656 C 256.890625 209.464844 256.984375 209.558594 257.101562 209.558594 C 257.21875 209.558594 257.3125 209.464844 257.3125 209.347656 Z M 257.3125 209.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.378906 211.023438 C 256.378906 210.90625 256.285156 210.8125 256.167969 210.8125 C 256.050781 210.8125 255.957031 210.90625 255.957031 211.023438 C 255.957031 211.140625 256.050781 211.234375 256.167969 211.234375 C 256.285156 211.234375 256.378906 211.140625 256.378906 211.023438 Z M 256.378906 211.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.042969 208.980469 C 258.042969 208.863281 257.949219 208.769531 257.832031 208.769531 C 257.714844 208.769531 257.621094 208.863281 257.621094 208.980469 C 257.621094 209.097656 257.714844 209.191406 257.832031 209.191406 C 257.949219 209.191406 258.042969 209.097656 258.042969 208.980469 Z M 258.042969 208.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.648438 207.320312 C 256.648438 207.203125 256.554688 207.109375 256.4375 207.109375 C 256.320312 207.109375 256.226562 207.203125 256.226562 207.320312 C 256.226562 207.4375 256.320312 207.53125 256.4375 207.53125 C 256.554688 207.53125 256.648438 207.4375 256.648438 207.320312 Z M 256.648438 207.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.054688 205.339844 C 253.054688 205.222656 252.960938 205.128906 252.84375 205.128906 C 252.726562 205.128906 252.632812 205.222656 252.632812 205.339844 C 252.632812 205.457031 252.726562 205.550781 252.84375 205.550781 C 252.960938 205.550781 253.054688 205.457031 253.054688 205.339844 Z M 253.054688 205.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.515625 200.757812 C 253.515625 200.640625 253.421875 200.546875 253.304688 200.546875 C 253.1875 200.546875 253.09375 200.640625 253.09375 200.757812 C 253.09375 200.875 253.1875 200.96875 253.304688 200.96875 C 253.421875 200.96875 253.515625 200.875 253.515625 200.757812 Z M 253.515625 200.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.648438 200.824219 C 253.648438 200.707031 253.554688 200.613281 253.4375 200.613281 C 253.320312 200.613281 253.226562 200.707031 253.226562 200.824219 C 253.226562 200.941406 253.320312 201.035156 253.4375 201.035156 C 253.554688 201.035156 253.648438 200.941406 253.648438 200.824219 Z M 253.648438 200.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.378906 202.234375 C 253.378906 202.117188 253.285156 202.023438 253.167969 202.023438 C 253.050781 202.023438 252.957031 202.117188 252.957031 202.234375 C 252.957031 202.351562 253.050781 202.445312 253.167969 202.445312 C 253.285156 202.445312 253.378906 202.351562 253.378906 202.234375 Z M 253.378906 202.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.253906 204.96875 C 257.253906 204.851562 257.160156 204.757812 257.042969 204.757812 C 256.925781 204.757812 256.832031 204.851562 256.832031 204.96875 C 256.832031 205.085938 256.925781 205.179688 257.042969 205.179688 C 257.160156 205.179688 257.253906 205.085938 257.253906 204.96875 Z M 257.253906 204.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.644531 203.847656 C 261.644531 203.730469 261.550781 203.636719 261.433594 203.636719 C 261.316406 203.636719 261.222656 203.730469 261.222656 203.847656 C 261.222656 203.964844 261.316406 204.058594 261.433594 204.058594 C 261.550781 204.058594 261.644531 203.964844 261.644531 203.847656 Z M 261.644531 203.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.773438 207.269531 C 260.773438 207.152344 260.679688 207.058594 260.5625 207.058594 C 260.445312 207.058594 260.351562 207.152344 260.351562 207.269531 C 260.351562 207.386719 260.445312 207.480469 260.5625 207.480469 C 260.679688 207.480469 260.773438 207.386719 260.773438 207.269531 Z M 260.773438 207.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.730469 207.21875 C 257.730469 207.101562 257.636719 207.007812 257.519531 207.007812 C 257.402344 207.007812 257.308594 207.101562 257.308594 207.21875 C 257.308594 207.335938 257.402344 207.429688 257.519531 207.429688 C 257.636719 207.429688 257.730469 207.335938 257.730469 207.21875 Z M 257.730469 207.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.367188 209.851562 C 255.367188 209.734375 255.273438 209.640625 255.15625 209.640625 C 255.039062 209.640625 254.945312 209.734375 254.945312 209.851562 C 254.945312 209.96875 255.039062 210.0625 255.15625 210.0625 C 255.273438 210.0625 255.367188 209.96875 255.367188 209.851562 Z M 255.367188 209.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.488281 209.808594 C 254.488281 209.691406 254.394531 209.597656 254.277344 209.597656 C 254.160156 209.597656 254.066406 209.691406 254.066406 209.808594 C 254.066406 209.925781 254.160156 210.019531 254.277344 210.019531 C 254.394531 210.019531 254.488281 209.925781 254.488281 209.808594 Z M 254.488281 209.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.597656 207.417969 C 252.597656 207.300781 252.503906 207.207031 252.386719 207.207031 C 252.269531 207.207031 252.175781 207.300781 252.175781 207.417969 C 252.175781 207.535156 252.269531 207.628906 252.386719 207.628906 C 252.503906 207.628906 252.597656 207.535156 252.597656 207.417969 Z M 252.597656 207.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.179688 206.519531 C 254.179688 206.402344 254.085938 206.308594 253.96875 206.308594 C 253.851562 206.308594 253.757812 206.402344 253.757812 206.519531 C 253.757812 206.636719 253.851562 206.730469 253.96875 206.730469 C 254.085938 206.730469 254.179688 206.636719 254.179688 206.519531 Z M 254.179688 206.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.753906 207.386719 C 255.753906 207.269531 255.660156 207.175781 255.542969 207.175781 C 255.425781 207.175781 255.332031 207.269531 255.332031 207.386719 C 255.332031 207.503906 255.425781 207.597656 255.542969 207.597656 C 255.660156 207.597656 255.753906 207.503906 255.753906 207.386719 Z M 255.753906 207.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.164062 204.890625 C 256.164062 204.773438 256.070312 204.679688 255.953125 204.679688 C 255.835938 204.679688 255.742188 204.773438 255.742188 204.890625 C 255.742188 205.007812 255.835938 205.101562 255.953125 205.101562 C 256.070312 205.101562 256.164062 205.007812 256.164062 204.890625 Z M 256.164062 204.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.03125 202.867188 C 259.03125 202.75 258.9375 202.65625 258.820312 202.65625 C 258.703125 202.65625 258.609375 202.75 258.609375 202.867188 C 258.609375 202.984375 258.703125 203.078125 258.820312 203.078125 C 258.9375 203.078125 259.03125 202.984375 259.03125 202.867188 Z M 259.03125 202.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.046875 198.742188 C 258.046875 198.625 257.953125 198.53125 257.835938 198.53125 C 257.71875 198.53125 257.625 198.625 257.625 198.742188 C 257.625 198.859375 257.71875 198.953125 257.835938 198.953125 C 257.953125 198.953125 258.046875 198.859375 258.046875 198.742188 Z M 258.046875 198.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.121094 202.25 C 260.121094 202.132812 260.027344 202.039062 259.910156 202.039062 C 259.792969 202.039062 259.699219 202.132812 259.699219 202.25 C 259.699219 202.367188 259.792969 202.460938 259.910156 202.460938 C 260.027344 202.460938 260.121094 202.367188 260.121094 202.25 Z M 260.121094 202.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.300781 198.113281 C 261.300781 197.996094 261.207031 197.902344 261.089844 197.902344 C 260.972656 197.902344 260.878906 197.996094 260.878906 198.113281 C 260.878906 198.230469 260.972656 198.324219 261.089844 198.324219 C 261.207031 198.324219 261.300781 198.230469 261.300781 198.113281 Z M 261.300781 198.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.078125 197.613281 C 261.078125 197.496094 260.984375 197.402344 260.867188 197.402344 C 260.75 197.402344 260.65625 197.496094 260.65625 197.613281 C 260.65625 197.730469 260.75 197.824219 260.867188 197.824219 C 260.984375 197.824219 261.078125 197.730469 261.078125 197.613281 Z M 261.078125 197.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.464844 196.738281 C 262.464844 196.621094 262.371094 196.527344 262.253906 196.527344 C 262.136719 196.527344 262.042969 196.621094 262.042969 196.738281 C 262.042969 196.855469 262.136719 196.949219 262.253906 196.949219 C 262.371094 196.949219 262.464844 196.855469 262.464844 196.738281 Z M 262.464844 196.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.882812 200.207031 C 259.882812 200.089844 259.789062 199.996094 259.671875 199.996094 C 259.554688 199.996094 259.460938 200.089844 259.460938 200.207031 C 259.460938 200.324219 259.554688 200.417969 259.671875 200.417969 C 259.789062 200.417969 259.882812 200.324219 259.882812 200.207031 Z M 259.882812 200.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.945312 202.421875 C 259.945312 202.304688 259.851562 202.210938 259.734375 202.210938 C 259.617188 202.210938 259.523438 202.304688 259.523438 202.421875 C 259.523438 202.539062 259.617188 202.632812 259.734375 202.632812 C 259.851562 202.632812 259.945312 202.539062 259.945312 202.421875 Z M 259.945312 202.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.226562 202.039062 C 256.226562 201.921875 256.132812 201.828125 256.015625 201.828125 C 255.898438 201.828125 255.804688 201.921875 255.804688 202.039062 C 255.804688 202.15625 255.898438 202.25 256.015625 202.25 C 256.132812 202.25 256.226562 202.15625 256.226562 202.039062 Z M 256.226562 202.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.460938 202.945312 C 255.460938 202.828125 255.367188 202.734375 255.25 202.734375 C 255.132812 202.734375 255.039062 202.828125 255.039062 202.945312 C 255.039062 203.0625 255.132812 203.15625 255.25 203.15625 C 255.367188 203.15625 255.460938 203.0625 255.460938 202.945312 Z M 255.460938 202.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.078125 201.925781 C 255.078125 201.808594 254.984375 201.714844 254.867188 201.714844 C 254.75 201.714844 254.65625 201.808594 254.65625 201.925781 C 254.65625 202.042969 254.75 202.136719 254.867188 202.136719 C 254.984375 202.136719 255.078125 202.042969 255.078125 201.925781 Z M 255.078125 201.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.601562 198.25 C 257.601562 198.132812 257.507812 198.039062 257.390625 198.039062 C 257.273438 198.039062 257.179688 198.132812 257.179688 198.25 C 257.179688 198.367188 257.273438 198.460938 257.390625 198.460938 C 257.507812 198.460938 257.601562 198.367188 257.601562 198.25 Z M 257.601562 198.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.371094 196.519531 C 258.371094 196.402344 258.277344 196.308594 258.160156 196.308594 C 258.042969 196.308594 257.949219 196.402344 257.949219 196.519531 C 257.949219 196.636719 258.042969 196.730469 258.160156 196.730469 C 258.277344 196.730469 258.371094 196.636719 258.371094 196.519531 Z M 258.371094 196.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.675781 193.496094 C 255.675781 193.378906 255.582031 193.285156 255.464844 193.285156 C 255.347656 193.285156 255.253906 193.378906 255.253906 193.496094 C 255.253906 193.613281 255.347656 193.707031 255.464844 193.707031 C 255.582031 193.707031 255.675781 193.613281 255.675781 193.496094 Z M 255.675781 193.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.003906 193.378906 C 254.003906 193.261719 253.910156 193.167969 253.792969 193.167969 C 253.675781 193.167969 253.582031 193.261719 253.582031 193.378906 C 253.582031 193.496094 253.675781 193.589844 253.792969 193.589844 C 253.910156 193.589844 254.003906 193.496094 254.003906 193.378906 Z M 254.003906 193.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.898438 192.917969 C 251.898438 192.800781 251.804688 192.707031 251.6875 192.707031 C 251.570312 192.707031 251.476562 192.800781 251.476562 192.917969 C 251.476562 193.035156 251.570312 193.128906 251.6875 193.128906 C 251.804688 193.128906 251.898438 193.035156 251.898438 192.917969 Z M 251.898438 192.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.1875 192.980469 C 250.1875 192.863281 250.09375 192.769531 249.976562 192.769531 C 249.859375 192.769531 249.765625 192.863281 249.765625 192.980469 C 249.765625 193.097656 249.859375 193.191406 249.976562 193.191406 C 250.09375 193.191406 250.1875 193.097656 250.1875 192.980469 Z M 250.1875 192.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.292969 193.25 C 251.292969 193.132812 251.199219 193.039062 251.082031 193.039062 C 250.964844 193.039062 250.871094 193.132812 250.871094 193.25 C 250.871094 193.367188 250.964844 193.460938 251.082031 193.460938 C 251.199219 193.460938 251.292969 193.367188 251.292969 193.25 Z M 251.292969 193.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.472656 192.652344 C 252.472656 192.535156 252.378906 192.441406 252.261719 192.441406 C 252.144531 192.441406 252.050781 192.535156 252.050781 192.652344 C 252.050781 192.769531 252.144531 192.863281 252.261719 192.863281 C 252.378906 192.863281 252.472656 192.769531 252.472656 192.652344 Z M 252.472656 192.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.792969 192.996094 C 249.792969 192.878906 249.699219 192.785156 249.582031 192.785156 C 249.464844 192.785156 249.371094 192.878906 249.371094 192.996094 C 249.371094 193.113281 249.464844 193.207031 249.582031 193.207031 C 249.699219 193.207031 249.792969 193.113281 249.792969 192.996094 Z M 249.792969 192.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.453125 193.449219 C 254.453125 193.332031 254.359375 193.238281 254.242188 193.238281 C 254.125 193.238281 254.03125 193.332031 254.03125 193.449219 C 254.03125 193.566406 254.125 193.660156 254.242188 193.660156 C 254.359375 193.660156 254.453125 193.566406 254.453125 193.449219 Z M 254.453125 193.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.4375 192.753906 C 259.4375 192.636719 259.34375 192.542969 259.226562 192.542969 C 259.109375 192.542969 259.015625 192.636719 259.015625 192.753906 C 259.015625 192.871094 259.109375 192.964844 259.226562 192.964844 C 259.34375 192.964844 259.4375 192.871094 259.4375 192.753906 Z M 259.4375 192.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.414062 191.648438 C 261.414062 191.53125 261.320312 191.4375 261.203125 191.4375 C 261.085938 191.4375 260.992188 191.53125 260.992188 191.648438 C 260.992188 191.765625 261.085938 191.859375 261.203125 191.859375 C 261.320312 191.859375 261.414062 191.765625 261.414062 191.648438 Z M 261.414062 191.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.636719 191.046875 C 256.636719 190.929688 256.542969 190.835938 256.425781 190.835938 C 256.308594 190.835938 256.214844 190.929688 256.214844 191.046875 C 256.214844 191.164062 256.308594 191.257812 256.425781 191.257812 C 256.542969 191.257812 256.636719 191.164062 256.636719 191.046875 Z M 256.636719 191.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.832031 191.496094 C 259.832031 191.378906 259.738281 191.285156 259.621094 191.285156 C 259.503906 191.285156 259.410156 191.378906 259.410156 191.496094 C 259.410156 191.613281 259.503906 191.707031 259.621094 191.707031 C 259.738281 191.707031 259.832031 191.613281 259.832031 191.496094 Z M 259.832031 191.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.875 193.109375 C 256.875 192.992188 256.78125 192.898438 256.664062 192.898438 C 256.546875 192.898438 256.453125 192.992188 256.453125 193.109375 C 256.453125 193.226562 256.546875 193.320312 256.664062 193.320312 C 256.78125 193.320312 256.875 193.226562 256.875 193.109375 Z M 256.875 193.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.070312 193.390625 C 256.070312 193.273438 255.976562 193.179688 255.859375 193.179688 C 255.742188 193.179688 255.648438 193.273438 255.648438 193.390625 C 255.648438 193.507812 255.742188 193.601562 255.859375 193.601562 C 255.976562 193.601562 256.070312 193.507812 256.070312 193.390625 Z M 256.070312 193.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.414062 196.734375 C 255.414062 196.617188 255.320312 196.523438 255.203125 196.523438 C 255.085938 196.523438 254.992188 196.617188 254.992188 196.734375 C 254.992188 196.851562 255.085938 196.945312 255.203125 196.945312 C 255.320312 196.945312 255.414062 196.851562 255.414062 196.734375 Z M 255.414062 196.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.539062 197.726562 C 253.539062 197.609375 253.445312 197.515625 253.328125 197.515625 C 253.210938 197.515625 253.117188 197.609375 253.117188 197.726562 C 253.117188 197.84375 253.210938 197.9375 253.328125 197.9375 C 253.445312 197.9375 253.539062 197.84375 253.539062 197.726562 Z M 253.539062 197.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.738281 194.304688 C 256.738281 194.1875 256.644531 194.09375 256.527344 194.09375 C 256.410156 194.09375 256.316406 194.1875 256.316406 194.304688 C 256.316406 194.421875 256.410156 194.515625 256.527344 194.515625 C 256.644531 194.515625 256.738281 194.421875 256.738281 194.304688 Z M 256.738281 194.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.601562 191.777344 C 255.601562 191.660156 255.507812 191.566406 255.390625 191.566406 C 255.273438 191.566406 255.179688 191.660156 255.179688 191.777344 C 255.179688 191.894531 255.273438 191.988281 255.390625 191.988281 C 255.507812 191.988281 255.601562 191.894531 255.601562 191.777344 Z M 255.601562 191.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.863281 185.671875 C 254.863281 185.554688 254.769531 185.460938 254.652344 185.460938 C 254.535156 185.460938 254.441406 185.554688 254.441406 185.671875 C 254.441406 185.789062 254.535156 185.882812 254.652344 185.882812 C 254.769531 185.882812 254.863281 185.789062 254.863281 185.671875 Z M 254.863281 185.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.53125 183.796875 C 257.53125 183.679688 257.4375 183.585938 257.320312 183.585938 C 257.203125 183.585938 257.109375 183.679688 257.109375 183.796875 C 257.109375 183.914062 257.203125 184.007812 257.320312 184.007812 C 257.4375 184.007812 257.53125 183.914062 257.53125 183.796875 Z M 257.53125 183.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.460938 183.792969 C 257.460938 183.675781 257.367188 183.582031 257.25 183.582031 C 257.132812 183.582031 257.039062 183.675781 257.039062 183.792969 C 257.039062 183.910156 257.132812 184.003906 257.25 184.003906 C 257.367188 184.003906 257.460938 183.910156 257.460938 183.792969 Z M 257.460938 183.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.109375 180.84375 C 257.109375 180.726562 257.015625 180.632812 256.898438 180.632812 C 256.78125 180.632812 256.6875 180.726562 256.6875 180.84375 C 256.6875 180.960938 256.78125 181.054688 256.898438 181.054688 C 257.015625 181.054688 257.109375 180.960938 257.109375 180.84375 Z M 257.109375 180.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.351562 182.664062 C 253.351562 182.546875 253.257812 182.453125 253.140625 182.453125 C 253.023438 182.453125 252.929688 182.546875 252.929688 182.664062 C 252.929688 182.78125 253.023438 182.875 253.140625 182.875 C 253.257812 182.875 253.351562 182.78125 253.351562 182.664062 Z M 253.351562 182.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.164062 178.945312 C 248.164062 178.828125 248.070312 178.734375 247.953125 178.734375 C 247.835938 178.734375 247.742188 178.828125 247.742188 178.945312 C 247.742188 179.0625 247.835938 179.15625 247.953125 179.15625 C 248.070312 179.15625 248.164062 179.0625 248.164062 178.945312 Z M 248.164062 178.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.394531 177.3125 C 245.394531 177.195312 245.300781 177.101562 245.183594 177.101562 C 245.066406 177.101562 244.972656 177.195312 244.972656 177.3125 C 244.972656 177.429688 245.066406 177.523438 245.183594 177.523438 C 245.300781 177.523438 245.394531 177.429688 245.394531 177.3125 Z M 245.394531 177.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.039062 175.867188 C 245.039062 175.75 244.945312 175.65625 244.828125 175.65625 C 244.710938 175.65625 244.617188 175.75 244.617188 175.867188 C 244.617188 175.984375 244.710938 176.078125 244.828125 176.078125 C 244.945312 176.078125 245.039062 175.984375 245.039062 175.867188 Z M 245.039062 175.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.324219 173.195312 C 244.324219 173.078125 244.230469 172.984375 244.113281 172.984375 C 243.996094 172.984375 243.902344 173.078125 243.902344 173.195312 C 243.902344 173.3125 243.996094 173.40625 244.113281 173.40625 C 244.230469 173.40625 244.324219 173.3125 244.324219 173.195312 Z M 244.324219 173.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.046875 170.15625 C 247.046875 170.039062 246.953125 169.945312 246.835938 169.945312 C 246.71875 169.945312 246.625 170.039062 246.625 170.15625 C 246.625 170.273438 246.71875 170.367188 246.835938 170.367188 C 246.953125 170.367188 247.046875 170.273438 247.046875 170.15625 Z M 247.046875 170.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.511719 171.40625 C 247.511719 171.289062 247.417969 171.195312 247.300781 171.195312 C 247.183594 171.195312 247.089844 171.289062 247.089844 171.40625 C 247.089844 171.523438 247.183594 171.617188 247.300781 171.617188 C 247.417969 171.617188 247.511719 171.523438 247.511719 171.40625 Z M 247.511719 171.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.546875 172.222656 C 248.546875 172.105469 248.453125 172.011719 248.335938 172.011719 C 248.21875 172.011719 248.125 172.105469 248.125 172.222656 C 248.125 172.339844 248.21875 172.433594 248.335938 172.433594 C 248.453125 172.433594 248.546875 172.339844 248.546875 172.222656 Z M 248.546875 172.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.582031 173.476562 C 252.582031 173.359375 252.488281 173.265625 252.371094 173.265625 C 252.253906 173.265625 252.160156 173.359375 252.160156 173.476562 C 252.160156 173.59375 252.253906 173.6875 252.371094 173.6875 C 252.488281 173.6875 252.582031 173.59375 252.582031 173.476562 Z M 252.582031 173.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.53125 173.132812 C 252.53125 173.015625 252.4375 172.921875 252.320312 172.921875 C 252.203125 172.921875 252.109375 173.015625 252.109375 173.132812 C 252.109375 173.25 252.203125 173.34375 252.320312 173.34375 C 252.4375 173.34375 252.53125 173.25 252.53125 173.132812 Z M 252.53125 173.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.503906 173.503906 C 250.503906 173.386719 250.410156 173.292969 250.292969 173.292969 C 250.175781 173.292969 250.082031 173.386719 250.082031 173.503906 C 250.082031 173.621094 250.175781 173.714844 250.292969 173.714844 C 250.410156 173.714844 250.503906 173.621094 250.503906 173.503906 Z M 250.503906 173.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.832031 170.105469 C 250.832031 169.988281 250.738281 169.894531 250.621094 169.894531 C 250.503906 169.894531 250.410156 169.988281 250.410156 170.105469 C 250.410156 170.222656 250.503906 170.316406 250.621094 170.316406 C 250.738281 170.316406 250.832031 170.222656 250.832031 170.105469 Z M 250.832031 170.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.726562 172.351562 C 249.726562 172.234375 249.632812 172.140625 249.515625 172.140625 C 249.398438 172.140625 249.304688 172.234375 249.304688 172.351562 C 249.304688 172.46875 249.398438 172.5625 249.515625 172.5625 C 249.632812 172.5625 249.726562 172.46875 249.726562 172.351562 Z M 249.726562 172.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.148438 170.144531 C 249.148438 170.027344 249.054688 169.933594 248.9375 169.933594 C 248.820312 169.933594 248.726562 170.027344 248.726562 170.144531 C 248.726562 170.261719 248.820312 170.355469 248.9375 170.355469 C 249.054688 170.355469 249.148438 170.261719 249.148438 170.144531 Z M 249.148438 170.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.339844 173.394531 C 246.339844 173.277344 246.246094 173.183594 246.128906 173.183594 C 246.011719 173.183594 245.917969 173.277344 245.917969 173.394531 C 245.917969 173.511719 246.011719 173.605469 246.128906 173.605469 C 246.246094 173.605469 246.339844 173.511719 246.339844 173.394531 Z M 246.339844 173.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.144531 174.265625 C 249.144531 174.148438 249.050781 174.054688 248.933594 174.054688 C 248.816406 174.054688 248.722656 174.148438 248.722656 174.265625 C 248.722656 174.382812 248.816406 174.476562 248.933594 174.476562 C 249.050781 174.476562 249.144531 174.382812 249.144531 174.265625 Z M 249.144531 174.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.886719 172.792969 C 250.886719 172.675781 250.792969 172.582031 250.675781 172.582031 C 250.558594 172.582031 250.464844 172.675781 250.464844 172.792969 C 250.464844 172.910156 250.558594 173.003906 250.675781 173.003906 C 250.792969 173.003906 250.886719 172.910156 250.886719 172.792969 Z M 250.886719 172.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.367188 172.375 C 251.367188 172.257812 251.273438 172.164062 251.15625 172.164062 C 251.039062 172.164062 250.945312 172.257812 250.945312 172.375 C 250.945312 172.492188 251.039062 172.585938 251.15625 172.585938 C 251.273438 172.585938 251.367188 172.492188 251.367188 172.375 Z M 251.367188 172.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.78125 171.59375 C 250.78125 171.476562 250.6875 171.382812 250.570312 171.382812 C 250.453125 171.382812 250.359375 171.476562 250.359375 171.59375 C 250.359375 171.710938 250.453125 171.804688 250.570312 171.804688 C 250.6875 171.804688 250.78125 171.710938 250.78125 171.59375 Z M 250.78125 171.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.246094 173.855469 C 249.246094 173.738281 249.152344 173.644531 249.035156 173.644531 C 248.917969 173.644531 248.824219 173.738281 248.824219 173.855469 C 248.824219 173.972656 248.917969 174.066406 249.035156 174.066406 C 249.152344 174.066406 249.246094 173.972656 249.246094 173.855469 Z M 249.246094 173.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.296875 173.441406 C 248.296875 173.324219 248.203125 173.230469 248.085938 173.230469 C 247.96875 173.230469 247.875 173.324219 247.875 173.441406 C 247.875 173.558594 247.96875 173.652344 248.085938 173.652344 C 248.203125 173.652344 248.296875 173.558594 248.296875 173.441406 Z M 248.296875 173.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.457031 173.773438 C 251.457031 173.65625 251.363281 173.5625 251.246094 173.5625 C 251.128906 173.5625 251.035156 173.65625 251.035156 173.773438 C 251.035156 173.890625 251.128906 173.984375 251.246094 173.984375 C 251.363281 173.984375 251.457031 173.890625 251.457031 173.773438 Z M 251.457031 173.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.84375 173.636719 C 251.84375 173.519531 251.75 173.425781 251.632812 173.425781 C 251.515625 173.425781 251.421875 173.519531 251.421875 173.636719 C 251.421875 173.753906 251.515625 173.847656 251.632812 173.847656 C 251.75 173.847656 251.84375 173.753906 251.84375 173.636719 Z M 251.84375 173.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.894531 175.363281 C 252.894531 175.246094 252.800781 175.152344 252.683594 175.152344 C 252.566406 175.152344 252.472656 175.246094 252.472656 175.363281 C 252.472656 175.480469 252.566406 175.574219 252.683594 175.574219 C 252.800781 175.574219 252.894531 175.480469 252.894531 175.363281 Z M 252.894531 175.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.445312 175.160156 C 254.445312 175.042969 254.351562 174.949219 254.234375 174.949219 C 254.117188 174.949219 254.023438 175.042969 254.023438 175.160156 C 254.023438 175.277344 254.117188 175.371094 254.234375 175.371094 C 254.351562 175.371094 254.445312 175.277344 254.445312 175.160156 Z M 254.445312 175.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.433594 172.664062 C 251.433594 172.546875 251.339844 172.453125 251.222656 172.453125 C 251.105469 172.453125 251.011719 172.546875 251.011719 172.664062 C 251.011719 172.78125 251.105469 172.875 251.222656 172.875 C 251.339844 172.875 251.433594 172.78125 251.433594 172.664062 Z M 251.433594 172.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.53125 174.136719 C 255.53125 174.019531 255.4375 173.925781 255.320312 173.925781 C 255.203125 173.925781 255.109375 174.019531 255.109375 174.136719 C 255.109375 174.253906 255.203125 174.347656 255.320312 174.347656 C 255.4375 174.347656 255.53125 174.253906 255.53125 174.136719 Z M 255.53125 174.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.347656 175.636719 C 254.347656 175.519531 254.253906 175.425781 254.136719 175.425781 C 254.019531 175.425781 253.925781 175.519531 253.925781 175.636719 C 253.925781 175.753906 254.019531 175.847656 254.136719 175.847656 C 254.253906 175.847656 254.347656 175.753906 254.347656 175.636719 Z M 254.347656 175.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.847656 175.050781 C 255.847656 174.933594 255.753906 174.839844 255.636719 174.839844 C 255.519531 174.839844 255.425781 174.933594 255.425781 175.050781 C 255.425781 175.167969 255.519531 175.261719 255.636719 175.261719 C 255.753906 175.261719 255.847656 175.167969 255.847656 175.050781 Z M 255.847656 175.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.125 173.246094 C 258.125 173.128906 258.03125 173.035156 257.914062 173.035156 C 257.796875 173.035156 257.703125 173.128906 257.703125 173.246094 C 257.703125 173.363281 257.796875 173.457031 257.914062 173.457031 C 258.03125 173.457031 258.125 173.363281 258.125 173.246094 Z M 258.125 173.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.71875 170.191406 C 258.71875 170.074219 258.625 169.980469 258.507812 169.980469 C 258.390625 169.980469 258.296875 170.074219 258.296875 170.191406 C 258.296875 170.308594 258.390625 170.402344 258.507812 170.402344 C 258.625 170.402344 258.71875 170.308594 258.71875 170.191406 Z M 258.71875 170.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.054688 171.71875 C 261.054688 171.601562 260.960938 171.507812 260.84375 171.507812 C 260.726562 171.507812 260.632812 171.601562 260.632812 171.71875 C 260.632812 171.835938 260.726562 171.929688 260.84375 171.929688 C 260.960938 171.929688 261.054688 171.835938 261.054688 171.71875 Z M 261.054688 171.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 262.796875 169.390625 C 262.796875 169.273438 262.703125 169.179688 262.585938 169.179688 C 262.46875 169.179688 262.375 169.273438 262.375 169.390625 C 262.375 169.507812 262.46875 169.601562 262.585938 169.601562 C 262.703125 169.601562 262.796875 169.507812 262.796875 169.390625 Z M 262.796875 169.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.105469 170.410156 C 263.105469 170.292969 263.011719 170.199219 262.894531 170.199219 C 262.777344 170.199219 262.683594 170.292969 262.683594 170.410156 C 262.683594 170.527344 262.777344 170.621094 262.894531 170.621094 C 263.011719 170.621094 263.105469 170.527344 263.105469 170.410156 Z M 263.105469 170.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.121094 169.8125 C 263.121094 169.695312 263.027344 169.601562 262.910156 169.601562 C 262.792969 169.601562 262.699219 169.695312 262.699219 169.8125 C 262.699219 169.929688 262.792969 170.023438 262.910156 170.023438 C 263.027344 170.023438 263.121094 169.929688 263.121094 169.8125 Z M 263.121094 169.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 263.238281 168.585938 C 263.238281 168.46875 263.144531 168.375 263.027344 168.375 C 262.910156 168.375 262.816406 168.46875 262.816406 168.585938 C 262.816406 168.703125 262.910156 168.796875 263.027344 168.796875 C 263.144531 168.796875 263.238281 168.703125 263.238281 168.585938 Z M 263.238281 168.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.984375 168.449219 C 259.984375 168.332031 259.890625 168.238281 259.773438 168.238281 C 259.65625 168.238281 259.5625 168.332031 259.5625 168.449219 C 259.5625 168.566406 259.65625 168.660156 259.773438 168.660156 C 259.890625 168.660156 259.984375 168.566406 259.984375 168.449219 Z M 259.984375 168.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.507812 168.15625 C 258.507812 168.039062 258.414062 167.945312 258.296875 167.945312 C 258.179688 167.945312 258.085938 168.039062 258.085938 168.15625 C 258.085938 168.273438 258.179688 168.367188 258.296875 168.367188 C 258.414062 168.367188 258.507812 168.273438 258.507812 168.15625 Z M 258.507812 168.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.757812 167.703125 C 256.757812 167.585938 256.664062 167.492188 256.546875 167.492188 C 256.429688 167.492188 256.335938 167.585938 256.335938 167.703125 C 256.335938 167.820312 256.429688 167.914062 256.546875 167.914062 C 256.664062 167.914062 256.757812 167.820312 256.757812 167.703125 Z M 256.757812 167.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.25 165.867188 C 257.25 165.75 257.15625 165.65625 257.039062 165.65625 C 256.921875 165.65625 256.828125 165.75 256.828125 165.867188 C 256.828125 165.984375 256.921875 166.078125 257.039062 166.078125 C 257.15625 166.078125 257.25 165.984375 257.25 165.867188 Z M 257.25 165.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.144531 168.871094 C 252.144531 168.753906 252.050781 168.660156 251.933594 168.660156 C 251.816406 168.660156 251.722656 168.753906 251.722656 168.871094 C 251.722656 168.988281 251.816406 169.082031 251.933594 169.082031 C 252.050781 169.082031 252.144531 168.988281 252.144531 168.871094 Z M 252.144531 168.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.269531 171.351562 C 248.269531 171.234375 248.175781 171.140625 248.058594 171.140625 C 247.941406 171.140625 247.847656 171.234375 247.847656 171.351562 C 247.847656 171.46875 247.941406 171.5625 248.058594 171.5625 C 248.175781 171.5625 248.269531 171.46875 248.269531 171.351562 Z M 248.269531 171.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.042969 166.714844 C 247.042969 166.597656 246.949219 166.503906 246.832031 166.503906 C 246.714844 166.503906 246.621094 166.597656 246.621094 166.714844 C 246.621094 166.832031 246.714844 166.925781 246.832031 166.925781 C 246.949219 166.925781 247.042969 166.832031 247.042969 166.714844 Z M 247.042969 166.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.980469 170.992188 C 244.980469 170.875 244.886719 170.78125 244.769531 170.78125 C 244.652344 170.78125 244.558594 170.875 244.558594 170.992188 C 244.558594 171.109375 244.652344 171.203125 244.769531 171.203125 C 244.886719 171.203125 244.980469 171.109375 244.980469 170.992188 Z M 244.980469 170.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.136719 170.601562 C 247.136719 170.484375 247.042969 170.390625 246.925781 170.390625 C 246.808594 170.390625 246.714844 170.484375 246.714844 170.601562 C 246.714844 170.71875 246.808594 170.8125 246.925781 170.8125 C 247.042969 170.8125 247.136719 170.71875 247.136719 170.601562 Z M 247.136719 170.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.605469 173.207031 C 249.605469 173.089844 249.511719 172.996094 249.394531 172.996094 C 249.277344 172.996094 249.183594 173.089844 249.183594 173.207031 C 249.183594 173.324219 249.277344 173.417969 249.394531 173.417969 C 249.511719 173.417969 249.605469 173.324219 249.605469 173.207031 Z M 249.605469 173.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.042969 177.519531 C 253.042969 177.402344 252.949219 177.308594 252.832031 177.308594 C 252.714844 177.308594 252.621094 177.402344 252.621094 177.519531 C 252.621094 177.636719 252.714844 177.730469 252.832031 177.730469 C 252.949219 177.730469 253.042969 177.636719 253.042969 177.519531 Z M 253.042969 177.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.441406 178.597656 C 252.441406 178.480469 252.347656 178.386719 252.230469 178.386719 C 252.113281 178.386719 252.019531 178.480469 252.019531 178.597656 C 252.019531 178.714844 252.113281 178.808594 252.230469 178.808594 C 252.347656 178.808594 252.441406 178.714844 252.441406 178.597656 Z M 252.441406 178.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.46875 181.527344 C 252.46875 181.410156 252.375 181.316406 252.257812 181.316406 C 252.140625 181.316406 252.046875 181.410156 252.046875 181.527344 C 252.046875 181.644531 252.140625 181.738281 252.257812 181.738281 C 252.375 181.738281 252.46875 181.644531 252.46875 181.527344 Z M 252.46875 181.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.894531 182.9375 C 254.894531 182.820312 254.800781 182.726562 254.683594 182.726562 C 254.566406 182.726562 254.472656 182.820312 254.472656 182.9375 C 254.472656 183.054688 254.566406 183.148438 254.683594 183.148438 C 254.800781 183.148438 254.894531 183.054688 254.894531 182.9375 Z M 254.894531 182.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.042969 181.363281 C 259.042969 181.246094 258.949219 181.152344 258.832031 181.152344 C 258.714844 181.152344 258.621094 181.246094 258.621094 181.363281 C 258.621094 181.480469 258.714844 181.574219 258.832031 181.574219 C 258.949219 181.574219 259.042969 181.480469 259.042969 181.363281 Z M 259.042969 181.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.902344 182.984375 C 257.902344 182.867188 257.808594 182.773438 257.691406 182.773438 C 257.574219 182.773438 257.480469 182.867188 257.480469 182.984375 C 257.480469 183.101562 257.574219 183.195312 257.691406 183.195312 C 257.808594 183.195312 257.902344 183.101562 257.902344 182.984375 Z M 257.902344 182.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.125 182.875 C 259.125 182.757812 259.03125 182.664062 258.914062 182.664062 C 258.796875 182.664062 258.703125 182.757812 258.703125 182.875 C 258.703125 182.992188 258.796875 183.085938 258.914062 183.085938 C 259.03125 183.085938 259.125 182.992188 259.125 182.875 Z M 259.125 182.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.847656 183.585938 C 254.847656 183.46875 254.753906 183.375 254.636719 183.375 C 254.519531 183.375 254.425781 183.46875 254.425781 183.585938 C 254.425781 183.703125 254.519531 183.796875 254.636719 183.796875 C 254.753906 183.796875 254.847656 183.703125 254.847656 183.585938 Z M 254.847656 183.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.789062 184.023438 C 253.789062 183.90625 253.695312 183.8125 253.578125 183.8125 C 253.460938 183.8125 253.367188 183.90625 253.367188 184.023438 C 253.367188 184.140625 253.460938 184.234375 253.578125 184.234375 C 253.695312 184.234375 253.789062 184.140625 253.789062 184.023438 Z M 253.789062 184.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.097656 185.160156 C 254.097656 185.042969 254.003906 184.949219 253.886719 184.949219 C 253.769531 184.949219 253.675781 185.042969 253.675781 185.160156 C 253.675781 185.277344 253.769531 185.371094 253.886719 185.371094 C 254.003906 185.371094 254.097656 185.277344 254.097656 185.160156 Z M 254.097656 185.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.261719 181.445312 C 254.261719 181.328125 254.167969 181.234375 254.050781 181.234375 C 253.933594 181.234375 253.839844 181.328125 253.839844 181.445312 C 253.839844 181.5625 253.933594 181.65625 254.050781 181.65625 C 254.167969 181.65625 254.261719 181.5625 254.261719 181.445312 Z M 254.261719 181.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.0625 184.871094 C 254.0625 184.753906 253.96875 184.660156 253.851562 184.660156 C 253.734375 184.660156 253.640625 184.753906 253.640625 184.871094 C 253.640625 184.988281 253.734375 185.082031 253.851562 185.082031 C 253.96875 185.082031 254.0625 184.988281 254.0625 184.871094 Z M 254.0625 184.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.933594 182.300781 C 255.933594 182.183594 255.839844 182.089844 255.722656 182.089844 C 255.605469 182.089844 255.511719 182.183594 255.511719 182.300781 C 255.511719 182.417969 255.605469 182.511719 255.722656 182.511719 C 255.839844 182.511719 255.933594 182.417969 255.933594 182.300781 Z M 255.933594 182.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.167969 178.46875 C 253.167969 178.351562 253.074219 178.257812 252.957031 178.257812 C 252.839844 178.257812 252.746094 178.351562 252.746094 178.46875 C 252.746094 178.585938 252.839844 178.679688 252.957031 178.679688 C 253.074219 178.679688 253.167969 178.585938 253.167969 178.46875 Z M 253.167969 178.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.367188 177.3125 C 253.367188 177.195312 253.273438 177.101562 253.15625 177.101562 C 253.039062 177.101562 252.945312 177.195312 252.945312 177.3125 C 252.945312 177.429688 253.039062 177.523438 253.15625 177.523438 C 253.273438 177.523438 253.367188 177.429688 253.367188 177.3125 Z M 253.367188 177.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.792969 179.882812 C 248.792969 179.765625 248.699219 179.671875 248.582031 179.671875 C 248.464844 179.671875 248.371094 179.765625 248.371094 179.882812 C 248.371094 180 248.464844 180.09375 248.582031 180.09375 C 248.699219 180.09375 248.792969 180 248.792969 179.882812 Z M 248.792969 179.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.191406 178.445312 C 248.191406 178.328125 248.097656 178.234375 247.980469 178.234375 C 247.863281 178.234375 247.769531 178.328125 247.769531 178.445312 C 247.769531 178.5625 247.863281 178.65625 247.980469 178.65625 C 248.097656 178.65625 248.191406 178.5625 248.191406 178.445312 Z M 248.191406 178.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.773438 182.136719 C 247.773438 182.019531 247.679688 181.925781 247.5625 181.925781 C 247.445312 181.925781 247.351562 182.019531 247.351562 182.136719 C 247.351562 182.253906 247.445312 182.347656 247.5625 182.347656 C 247.679688 182.347656 247.773438 182.253906 247.773438 182.136719 Z M 247.773438 182.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.429688 179.371094 C 247.429688 179.253906 247.335938 179.160156 247.21875 179.160156 C 247.101562 179.160156 247.007812 179.253906 247.007812 179.371094 C 247.007812 179.488281 247.101562 179.582031 247.21875 179.582031 C 247.335938 179.582031 247.429688 179.488281 247.429688 179.371094 Z M 247.429688 179.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.554688 179.65625 C 250.554688 179.539062 250.460938 179.445312 250.34375 179.445312 C 250.226562 179.445312 250.132812 179.539062 250.132812 179.65625 C 250.132812 179.773438 250.226562 179.867188 250.34375 179.867188 C 250.460938 179.867188 250.554688 179.773438 250.554688 179.65625 Z M 250.554688 179.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.660156 182.070312 C 247.660156 181.953125 247.566406 181.859375 247.449219 181.859375 C 247.332031 181.859375 247.238281 181.953125 247.238281 182.070312 C 247.238281 182.1875 247.332031 182.28125 247.449219 182.28125 C 247.566406 182.28125 247.660156 182.1875 247.660156 182.070312 Z M 247.660156 182.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.003906 178.203125 C 245.003906 178.085938 244.910156 177.992188 244.792969 177.992188 C 244.675781 177.992188 244.582031 178.085938 244.582031 178.203125 C 244.582031 178.320312 244.675781 178.414062 244.792969 178.414062 C 244.910156 178.414062 245.003906 178.320312 245.003906 178.203125 Z M 245.003906 178.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.578125 173.714844 C 248.578125 173.597656 248.484375 173.503906 248.367188 173.503906 C 248.25 173.503906 248.15625 173.597656 248.15625 173.714844 C 248.15625 173.832031 248.25 173.925781 248.367188 173.925781 C 248.484375 173.925781 248.578125 173.832031 248.578125 173.714844 Z M 248.578125 173.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.960938 171.011719 C 247.960938 170.894531 247.867188 170.800781 247.75 170.800781 C 247.632812 170.800781 247.539062 170.894531 247.539062 171.011719 C 247.539062 171.128906 247.632812 171.222656 247.75 171.222656 C 247.867188 171.222656 247.960938 171.128906 247.960938 171.011719 Z M 247.960938 171.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.824219 171.082031 C 247.824219 170.964844 247.730469 170.871094 247.613281 170.871094 C 247.496094 170.871094 247.402344 170.964844 247.402344 171.082031 C 247.402344 171.199219 247.496094 171.292969 247.613281 171.292969 C 247.730469 171.292969 247.824219 171.199219 247.824219 171.082031 Z M 247.824219 171.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.257812 169.144531 C 248.257812 169.027344 248.164062 168.933594 248.046875 168.933594 C 247.929688 168.933594 247.835938 169.027344 247.835938 169.144531 C 247.835938 169.261719 247.929688 169.355469 248.046875 169.355469 C 248.164062 169.355469 248.257812 169.261719 248.257812 169.144531 Z M 248.257812 169.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.070312 169.792969 C 250.070312 169.675781 249.976562 169.582031 249.859375 169.582031 C 249.742188 169.582031 249.648438 169.675781 249.648438 169.792969 C 249.648438 169.910156 249.742188 170.003906 249.859375 170.003906 C 249.976562 170.003906 250.070312 169.910156 250.070312 169.792969 Z M 250.070312 169.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.3125 169.023438 C 246.3125 168.90625 246.21875 168.8125 246.101562 168.8125 C 245.984375 168.8125 245.890625 168.90625 245.890625 169.023438 C 245.890625 169.140625 245.984375 169.234375 246.101562 169.234375 C 246.21875 169.234375 246.3125 169.140625 246.3125 169.023438 Z M 246.3125 169.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.847656 171.980469 C 244.847656 171.863281 244.753906 171.769531 244.636719 171.769531 C 244.519531 171.769531 244.425781 171.863281 244.425781 171.980469 C 244.425781 172.097656 244.519531 172.191406 244.636719 172.191406 C 244.753906 172.191406 244.847656 172.097656 244.847656 171.980469 Z M 244.847656 171.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.183594 175.664062 C 245.183594 175.546875 245.089844 175.453125 244.972656 175.453125 C 244.855469 175.453125 244.761719 175.546875 244.761719 175.664062 C 244.761719 175.78125 244.855469 175.875 244.972656 175.875 C 245.089844 175.875 245.183594 175.78125 245.183594 175.664062 Z M 245.183594 175.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.480469 171.074219 C 247.480469 170.957031 247.386719 170.863281 247.269531 170.863281 C 247.152344 170.863281 247.058594 170.957031 247.058594 171.074219 C 247.058594 171.191406 247.152344 171.285156 247.269531 171.285156 C 247.386719 171.285156 247.480469 171.191406 247.480469 171.074219 Z M 247.480469 171.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.957031 171.414062 C 247.957031 171.296875 247.863281 171.203125 247.746094 171.203125 C 247.628906 171.203125 247.535156 171.296875 247.535156 171.414062 C 247.535156 171.53125 247.628906 171.625 247.746094 171.625 C 247.863281 171.625 247.957031 171.53125 247.957031 171.414062 Z M 247.957031 171.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.167969 168.667969 C 249.167969 168.550781 249.074219 168.457031 248.957031 168.457031 C 248.839844 168.457031 248.746094 168.550781 248.746094 168.667969 C 248.746094 168.785156 248.839844 168.878906 248.957031 168.878906 C 249.074219 168.878906 249.167969 168.785156 249.167969 168.667969 Z M 249.167969 168.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.59375 168.652344 C 243.59375 168.535156 243.5 168.441406 243.382812 168.441406 C 243.265625 168.441406 243.171875 168.535156 243.171875 168.652344 C 243.171875 168.769531 243.265625 168.863281 243.382812 168.863281 C 243.5 168.863281 243.59375 168.769531 243.59375 168.652344 Z M 243.59375 168.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.730469 167.390625 C 243.730469 167.273438 243.636719 167.179688 243.519531 167.179688 C 243.402344 167.179688 243.308594 167.273438 243.308594 167.390625 C 243.308594 167.507812 243.402344 167.601562 243.519531 167.601562 C 243.636719 167.601562 243.730469 167.507812 243.730469 167.390625 Z M 243.730469 167.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.515625 163.902344 C 245.515625 163.785156 245.421875 163.691406 245.304688 163.691406 C 245.1875 163.691406 245.09375 163.785156 245.09375 163.902344 C 245.09375 164.019531 245.1875 164.113281 245.304688 164.113281 C 245.421875 164.113281 245.515625 164.019531 245.515625 163.902344 Z M 245.515625 163.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.015625 164.269531 C 249.015625 164.152344 248.921875 164.058594 248.804688 164.058594 C 248.6875 164.058594 248.59375 164.152344 248.59375 164.269531 C 248.59375 164.386719 248.6875 164.480469 248.804688 164.480469 C 248.921875 164.480469 249.015625 164.386719 249.015625 164.269531 Z M 249.015625 164.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.933594 168.332031 C 246.933594 168.214844 246.839844 168.121094 246.722656 168.121094 C 246.605469 168.121094 246.511719 168.214844 246.511719 168.332031 C 246.511719 168.449219 246.605469 168.542969 246.722656 168.542969 C 246.839844 168.542969 246.933594 168.449219 246.933594 168.332031 Z M 246.933594 168.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.523438 167.816406 C 247.523438 167.699219 247.429688 167.605469 247.3125 167.605469 C 247.195312 167.605469 247.101562 167.699219 247.101562 167.816406 C 247.101562 167.933594 247.195312 168.027344 247.3125 168.027344 C 247.429688 168.027344 247.523438 167.933594 247.523438 167.816406 Z M 247.523438 167.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.835938 167.074219 C 245.835938 166.957031 245.742188 166.863281 245.625 166.863281 C 245.507812 166.863281 245.414062 166.957031 245.414062 167.074219 C 245.414062 167.191406 245.507812 167.285156 245.625 167.285156 C 245.742188 167.285156 245.835938 167.191406 245.835938 167.074219 Z M 245.835938 167.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.640625 164.816406 C 246.640625 164.699219 246.546875 164.605469 246.429688 164.605469 C 246.3125 164.605469 246.21875 164.699219 246.21875 164.816406 C 246.21875 164.933594 246.3125 165.027344 246.429688 165.027344 C 246.546875 165.027344 246.640625 164.933594 246.640625 164.816406 Z M 246.640625 164.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.597656 165.429688 C 245.597656 165.3125 245.503906 165.21875 245.386719 165.21875 C 245.269531 165.21875 245.175781 165.3125 245.175781 165.429688 C 245.175781 165.546875 245.269531 165.640625 245.386719 165.640625 C 245.503906 165.640625 245.597656 165.546875 245.597656 165.429688 Z M 245.597656 165.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.246094 162.28125 C 245.246094 162.164062 245.152344 162.070312 245.035156 162.070312 C 244.917969 162.070312 244.824219 162.164062 244.824219 162.28125 C 244.824219 162.398438 244.917969 162.492188 245.035156 162.492188 C 245.152344 162.492188 245.246094 162.398438 245.246094 162.28125 Z M 245.246094 162.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.695312 159.25 C 245.695312 159.132812 245.601562 159.039062 245.484375 159.039062 C 245.367188 159.039062 245.273438 159.132812 245.273438 159.25 C 245.273438 159.367188 245.367188 159.460938 245.484375 159.460938 C 245.601562 159.460938 245.695312 159.367188 245.695312 159.25 Z M 245.695312 159.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.738281 157.019531 C 246.738281 156.902344 246.644531 156.808594 246.527344 156.808594 C 246.410156 156.808594 246.316406 156.902344 246.316406 157.019531 C 246.316406 157.136719 246.410156 157.230469 246.527344 157.230469 C 246.644531 157.230469 246.738281 157.136719 246.738281 157.019531 Z M 246.738281 157.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.042969 157.597656 C 246.042969 157.480469 245.949219 157.386719 245.832031 157.386719 C 245.714844 157.386719 245.621094 157.480469 245.621094 157.597656 C 245.621094 157.714844 245.714844 157.808594 245.832031 157.808594 C 245.949219 157.808594 246.042969 157.714844 246.042969 157.597656 Z M 246.042969 157.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.476562 157.289062 C 245.476562 157.171875 245.382812 157.078125 245.265625 157.078125 C 245.148438 157.078125 245.054688 157.171875 245.054688 157.289062 C 245.054688 157.40625 245.148438 157.5 245.265625 157.5 C 245.382812 157.5 245.476562 157.40625 245.476562 157.289062 Z M 245.476562 157.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.296875 159.339844 C 246.296875 159.222656 246.203125 159.128906 246.085938 159.128906 C 245.96875 159.128906 245.875 159.222656 245.875 159.339844 C 245.875 159.457031 245.96875 159.550781 246.085938 159.550781 C 246.203125 159.550781 246.296875 159.457031 246.296875 159.339844 Z M 246.296875 159.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.371094 158.769531 C 247.371094 158.652344 247.277344 158.558594 247.160156 158.558594 C 247.042969 158.558594 246.949219 158.652344 246.949219 158.769531 C 246.949219 158.886719 247.042969 158.980469 247.160156 158.980469 C 247.277344 158.980469 247.371094 158.886719 247.371094 158.769531 Z M 247.371094 158.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.222656 158.429688 C 243.222656 158.3125 243.128906 158.21875 243.011719 158.21875 C 242.894531 158.21875 242.800781 158.3125 242.800781 158.429688 C 242.800781 158.546875 242.894531 158.640625 243.011719 158.640625 C 243.128906 158.640625 243.222656 158.546875 243.222656 158.429688 Z M 243.222656 158.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.199219 158.472656 C 247.199219 158.355469 247.105469 158.261719 246.988281 158.261719 C 246.871094 158.261719 246.777344 158.355469 246.777344 158.472656 C 246.777344 158.589844 246.871094 158.683594 246.988281 158.683594 C 247.105469 158.683594 247.199219 158.589844 247.199219 158.472656 Z M 247.199219 158.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.339844 160.117188 C 244.339844 160 244.246094 159.90625 244.128906 159.90625 C 244.011719 159.90625 243.917969 160 243.917969 160.117188 C 243.917969 160.234375 244.011719 160.328125 244.128906 160.328125 C 244.246094 160.328125 244.339844 160.234375 244.339844 160.117188 Z M 244.339844 160.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.417969 159.5625 C 242.417969 159.445312 242.324219 159.351562 242.207031 159.351562 C 242.089844 159.351562 241.996094 159.445312 241.996094 159.5625 C 241.996094 159.679688 242.089844 159.773438 242.207031 159.773438 C 242.324219 159.773438 242.417969 159.679688 242.417969 159.5625 Z M 242.417969 159.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.039062 158.574219 C 238.039062 158.457031 237.945312 158.363281 237.828125 158.363281 C 237.710938 158.363281 237.617188 158.457031 237.617188 158.574219 C 237.617188 158.691406 237.710938 158.785156 237.828125 158.785156 C 237.945312 158.785156 238.039062 158.691406 238.039062 158.574219 Z M 238.039062 158.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.480469 156.027344 C 239.480469 155.910156 239.386719 155.816406 239.269531 155.816406 C 239.152344 155.816406 239.058594 155.910156 239.058594 156.027344 C 239.058594 156.144531 239.152344 156.238281 239.269531 156.238281 C 239.386719 156.238281 239.480469 156.144531 239.480469 156.027344 Z M 239.480469 156.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.386719 158.140625 C 236.386719 158.023438 236.292969 157.929688 236.175781 157.929688 C 236.058594 157.929688 235.964844 158.023438 235.964844 158.140625 C 235.964844 158.257812 236.058594 158.351562 236.175781 158.351562 C 236.292969 158.351562 236.386719 158.257812 236.386719 158.140625 Z M 236.386719 158.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.164062 155.882812 C 233.164062 155.765625 233.070312 155.671875 232.953125 155.671875 C 232.835938 155.671875 232.742188 155.765625 232.742188 155.882812 C 232.742188 156 232.835938 156.09375 232.953125 156.09375 C 233.070312 156.09375 233.164062 156 233.164062 155.882812 Z M 233.164062 155.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.585938 155.863281 C 233.585938 155.746094 233.492188 155.652344 233.375 155.652344 C 233.257812 155.652344 233.164062 155.746094 233.164062 155.863281 C 233.164062 155.980469 233.257812 156.074219 233.375 156.074219 C 233.492188 156.074219 233.585938 155.980469 233.585938 155.863281 Z M 233.585938 155.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.246094 157.808594 C 234.246094 157.691406 234.152344 157.597656 234.035156 157.597656 C 233.917969 157.597656 233.824219 157.691406 233.824219 157.808594 C 233.824219 157.925781 233.917969 158.019531 234.035156 158.019531 C 234.152344 158.019531 234.246094 157.925781 234.246094 157.808594 Z M 234.246094 157.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.910156 157.230469 C 234.910156 157.113281 234.816406 157.019531 234.699219 157.019531 C 234.582031 157.019531 234.488281 157.113281 234.488281 157.230469 C 234.488281 157.347656 234.582031 157.441406 234.699219 157.441406 C 234.816406 157.441406 234.910156 157.347656 234.910156 157.230469 Z M 234.910156 157.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.484375 155.820312 C 237.484375 155.703125 237.390625 155.609375 237.273438 155.609375 C 237.15625 155.609375 237.0625 155.703125 237.0625 155.820312 C 237.0625 155.9375 237.15625 156.03125 237.273438 156.03125 C 237.390625 156.03125 237.484375 155.9375 237.484375 155.820312 Z M 237.484375 155.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.980469 155.589844 C 234.980469 155.472656 234.886719 155.378906 234.769531 155.378906 C 234.652344 155.378906 234.558594 155.472656 234.558594 155.589844 C 234.558594 155.707031 234.652344 155.800781 234.769531 155.800781 C 234.886719 155.800781 234.980469 155.707031 234.980469 155.589844 Z M 234.980469 155.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.238281 156.949219 C 234.238281 156.832031 234.144531 156.738281 234.027344 156.738281 C 233.910156 156.738281 233.816406 156.832031 233.816406 156.949219 C 233.816406 157.066406 233.910156 157.160156 234.027344 157.160156 C 234.144531 157.160156 234.238281 157.066406 234.238281 156.949219 Z M 234.238281 156.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.351562 158.304688 C 233.351562 158.1875 233.257812 158.09375 233.140625 158.09375 C 233.023438 158.09375 232.929688 158.1875 232.929688 158.304688 C 232.929688 158.421875 233.023438 158.515625 233.140625 158.515625 C 233.257812 158.515625 233.351562 158.421875 233.351562 158.304688 Z M 233.351562 158.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.941406 156.238281 C 233.941406 156.121094 233.847656 156.027344 233.730469 156.027344 C 233.613281 156.027344 233.519531 156.121094 233.519531 156.238281 C 233.519531 156.355469 233.613281 156.449219 233.730469 156.449219 C 233.847656 156.449219 233.941406 156.355469 233.941406 156.238281 Z M 233.941406 156.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.699219 159.90625 C 236.699219 159.789062 236.605469 159.695312 236.488281 159.695312 C 236.371094 159.695312 236.277344 159.789062 236.277344 159.90625 C 236.277344 160.023438 236.371094 160.117188 236.488281 160.117188 C 236.605469 160.117188 236.699219 160.023438 236.699219 159.90625 Z M 236.699219 159.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.722656 158.316406 C 237.722656 158.199219 237.628906 158.105469 237.511719 158.105469 C 237.394531 158.105469 237.300781 158.199219 237.300781 158.316406 C 237.300781 158.433594 237.394531 158.527344 237.511719 158.527344 C 237.628906 158.527344 237.722656 158.433594 237.722656 158.316406 Z M 237.722656 158.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.757812 155.996094 C 234.757812 155.878906 234.664062 155.785156 234.546875 155.785156 C 234.429688 155.785156 234.335938 155.878906 234.335938 155.996094 C 234.335938 156.113281 234.429688 156.207031 234.546875 156.207031 C 234.664062 156.207031 234.757812 156.113281 234.757812 155.996094 Z M 234.757812 155.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.089844 155.984375 C 236.089844 155.867188 235.996094 155.773438 235.878906 155.773438 C 235.761719 155.773438 235.667969 155.867188 235.667969 155.984375 C 235.667969 156.101562 235.761719 156.195312 235.878906 156.195312 C 235.996094 156.195312 236.089844 156.101562 236.089844 155.984375 Z M 236.089844 155.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.9375 152.363281 C 237.9375 152.246094 237.84375 152.152344 237.726562 152.152344 C 237.609375 152.152344 237.515625 152.246094 237.515625 152.363281 C 237.515625 152.480469 237.609375 152.574219 237.726562 152.574219 C 237.84375 152.574219 237.9375 152.480469 237.9375 152.363281 Z M 237.9375 152.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.054688 152.609375 C 237.054688 152.492188 236.960938 152.398438 236.84375 152.398438 C 236.726562 152.398438 236.632812 152.492188 236.632812 152.609375 C 236.632812 152.726562 236.726562 152.820312 236.84375 152.820312 C 236.960938 152.820312 237.054688 152.726562 237.054688 152.609375 Z M 237.054688 152.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.925781 156 C 233.925781 155.882812 233.832031 155.789062 233.714844 155.789062 C 233.597656 155.789062 233.503906 155.882812 233.503906 156 C 233.503906 156.117188 233.597656 156.210938 233.714844 156.210938 C 233.832031 156.210938 233.925781 156.117188 233.925781 156 Z M 233.925781 156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.875 157.109375 C 232.875 156.992188 232.78125 156.898438 232.664062 156.898438 C 232.546875 156.898438 232.453125 156.992188 232.453125 157.109375 C 232.453125 157.226562 232.546875 157.320312 232.664062 157.320312 C 232.78125 157.320312 232.875 157.226562 232.875 157.109375 Z M 232.875 157.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.585938 158.164062 C 233.585938 158.046875 233.492188 157.953125 233.375 157.953125 C 233.257812 157.953125 233.164062 158.046875 233.164062 158.164062 C 233.164062 158.28125 233.257812 158.375 233.375 158.375 C 233.492188 158.375 233.585938 158.28125 233.585938 158.164062 Z M 233.585938 158.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.386719 159.039062 C 232.386719 158.921875 232.292969 158.828125 232.175781 158.828125 C 232.058594 158.828125 231.964844 158.921875 231.964844 159.039062 C 231.964844 159.15625 232.058594 159.25 232.175781 159.25 C 232.292969 159.25 232.386719 159.15625 232.386719 159.039062 Z M 232.386719 159.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.390625 161.667969 C 233.390625 161.550781 233.296875 161.457031 233.179688 161.457031 C 233.0625 161.457031 232.96875 161.550781 232.96875 161.667969 C 232.96875 161.785156 233.0625 161.878906 233.179688 161.878906 C 233.296875 161.878906 233.390625 161.785156 233.390625 161.667969 Z M 233.390625 161.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.441406 161.324219 C 236.441406 161.207031 236.347656 161.113281 236.230469 161.113281 C 236.113281 161.113281 236.019531 161.207031 236.019531 161.324219 C 236.019531 161.441406 236.113281 161.535156 236.230469 161.535156 C 236.347656 161.535156 236.441406 161.441406 236.441406 161.324219 Z M 236.441406 161.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.964844 161.425781 C 234.964844 161.308594 234.871094 161.214844 234.753906 161.214844 C 234.636719 161.214844 234.542969 161.308594 234.542969 161.425781 C 234.542969 161.542969 234.636719 161.636719 234.753906 161.636719 C 234.871094 161.636719 234.964844 161.542969 234.964844 161.425781 Z M 234.964844 161.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.332031 162.042969 C 235.332031 161.925781 235.238281 161.832031 235.121094 161.832031 C 235.003906 161.832031 234.910156 161.925781 234.910156 162.042969 C 234.910156 162.160156 235.003906 162.253906 235.121094 162.253906 C 235.238281 162.253906 235.332031 162.160156 235.332031 162.042969 Z M 235.332031 162.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.824219 161.183594 C 233.824219 161.066406 233.730469 160.972656 233.613281 160.972656 C 233.496094 160.972656 233.402344 161.066406 233.402344 161.183594 C 233.402344 161.300781 233.496094 161.394531 233.613281 161.394531 C 233.730469 161.394531 233.824219 161.300781 233.824219 161.183594 Z M 233.824219 161.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.070312 160.164062 C 229.070312 160.046875 228.976562 159.953125 228.859375 159.953125 C 228.742188 159.953125 228.648438 160.046875 228.648438 160.164062 C 228.648438 160.28125 228.742188 160.375 228.859375 160.375 C 228.976562 160.375 229.070312 160.28125 229.070312 160.164062 Z M 229.070312 160.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.789062 159.210938 C 224.789062 159.09375 224.695312 159 224.578125 159 C 224.460938 159 224.367188 159.09375 224.367188 159.210938 C 224.367188 159.328125 224.460938 159.421875 224.578125 159.421875 C 224.695312 159.421875 224.789062 159.328125 224.789062 159.210938 Z M 224.789062 159.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.179688 158.804688 C 225.179688 158.6875 225.085938 158.59375 224.96875 158.59375 C 224.851562 158.59375 224.757812 158.6875 224.757812 158.804688 C 224.757812 158.921875 224.851562 159.015625 224.96875 159.015625 C 225.085938 159.015625 225.179688 158.921875 225.179688 158.804688 Z M 225.179688 158.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.261719 158.363281 C 227.261719 158.246094 227.167969 158.152344 227.050781 158.152344 C 226.933594 158.152344 226.839844 158.246094 226.839844 158.363281 C 226.839844 158.480469 226.933594 158.574219 227.050781 158.574219 C 227.167969 158.574219 227.261719 158.480469 227.261719 158.363281 Z M 227.261719 158.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.855469 157.570312 C 229.855469 157.453125 229.761719 157.359375 229.644531 157.359375 C 229.527344 157.359375 229.433594 157.453125 229.433594 157.570312 C 229.433594 157.6875 229.527344 157.78125 229.644531 157.78125 C 229.761719 157.78125 229.855469 157.6875 229.855469 157.570312 Z M 229.855469 157.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.933594 159.964844 C 231.933594 159.847656 231.839844 159.753906 231.722656 159.753906 C 231.605469 159.753906 231.511719 159.847656 231.511719 159.964844 C 231.511719 160.082031 231.605469 160.175781 231.722656 160.175781 C 231.839844 160.175781 231.933594 160.082031 231.933594 159.964844 Z M 231.933594 159.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.410156 157.820312 C 234.410156 157.703125 234.316406 157.609375 234.199219 157.609375 C 234.082031 157.609375 233.988281 157.703125 233.988281 157.820312 C 233.988281 157.9375 234.082031 158.03125 234.199219 158.03125 C 234.316406 158.03125 234.410156 157.9375 234.410156 157.820312 Z M 234.410156 157.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.003906 158.609375 C 233.003906 158.492188 232.910156 158.398438 232.792969 158.398438 C 232.675781 158.398438 232.582031 158.492188 232.582031 158.609375 C 232.582031 158.726562 232.675781 158.820312 232.792969 158.820312 C 232.910156 158.820312 233.003906 158.726562 233.003906 158.609375 Z M 233.003906 158.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.445312 155.898438 C 230.445312 155.78125 230.351562 155.6875 230.234375 155.6875 C 230.117188 155.6875 230.023438 155.78125 230.023438 155.898438 C 230.023438 156.015625 230.117188 156.109375 230.234375 156.109375 C 230.351562 156.109375 230.445312 156.015625 230.445312 155.898438 Z M 230.445312 155.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.289062 155.664062 C 229.289062 155.546875 229.195312 155.453125 229.078125 155.453125 C 228.960938 155.453125 228.867188 155.546875 228.867188 155.664062 C 228.867188 155.78125 228.960938 155.875 229.078125 155.875 C 229.195312 155.875 229.289062 155.78125 229.289062 155.664062 Z M 229.289062 155.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.671875 155.972656 C 228.671875 155.855469 228.578125 155.761719 228.460938 155.761719 C 228.34375 155.761719 228.25 155.855469 228.25 155.972656 C 228.25 156.089844 228.34375 156.183594 228.460938 156.183594 C 228.578125 156.183594 228.671875 156.089844 228.671875 155.972656 Z M 228.671875 155.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.839844 158.734375 C 231.839844 158.617188 231.746094 158.523438 231.628906 158.523438 C 231.511719 158.523438 231.417969 158.617188 231.417969 158.734375 C 231.417969 158.851562 231.511719 158.945312 231.628906 158.945312 C 231.746094 158.945312 231.839844 158.851562 231.839844 158.734375 Z M 231.839844 158.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.292969 157.632812 C 231.292969 157.515625 231.199219 157.421875 231.082031 157.421875 C 230.964844 157.421875 230.871094 157.515625 230.871094 157.632812 C 230.871094 157.75 230.964844 157.84375 231.082031 157.84375 C 231.199219 157.84375 231.292969 157.75 231.292969 157.632812 Z M 231.292969 157.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.890625 155.863281 C 229.890625 155.746094 229.796875 155.652344 229.679688 155.652344 C 229.5625 155.652344 229.46875 155.746094 229.46875 155.863281 C 229.46875 155.980469 229.5625 156.074219 229.679688 156.074219 C 229.796875 156.074219 229.890625 155.980469 229.890625 155.863281 Z M 229.890625 155.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.710938 157.164062 C 230.710938 157.046875 230.617188 156.953125 230.5 156.953125 C 230.382812 156.953125 230.289062 157.046875 230.289062 157.164062 C 230.289062 157.28125 230.382812 157.375 230.5 157.375 C 230.617188 157.375 230.710938 157.28125 230.710938 157.164062 Z M 230.710938 157.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.800781 155.621094 C 226.800781 155.503906 226.707031 155.410156 226.589844 155.410156 C 226.472656 155.410156 226.378906 155.503906 226.378906 155.621094 C 226.378906 155.738281 226.472656 155.832031 226.589844 155.832031 C 226.707031 155.832031 226.800781 155.738281 226.800781 155.621094 Z M 226.800781 155.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.839844 151.476562 C 225.839844 151.359375 225.746094 151.265625 225.628906 151.265625 C 225.511719 151.265625 225.417969 151.359375 225.417969 151.476562 C 225.417969 151.59375 225.511719 151.6875 225.628906 151.6875 C 225.746094 151.6875 225.839844 151.59375 225.839844 151.476562 Z M 225.839844 151.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.917969 153.769531 C 225.917969 153.652344 225.824219 153.558594 225.707031 153.558594 C 225.589844 153.558594 225.496094 153.652344 225.496094 153.769531 C 225.496094 153.886719 225.589844 153.980469 225.707031 153.980469 C 225.824219 153.980469 225.917969 153.886719 225.917969 153.769531 Z M 225.917969 153.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.847656 154.53125 C 227.847656 154.414062 227.753906 154.320312 227.636719 154.320312 C 227.519531 154.320312 227.425781 154.414062 227.425781 154.53125 C 227.425781 154.648438 227.519531 154.742188 227.636719 154.742188 C 227.753906 154.742188 227.847656 154.648438 227.847656 154.53125 Z M 227.847656 154.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.730469 156.484375 C 225.730469 156.367188 225.636719 156.273438 225.519531 156.273438 C 225.402344 156.273438 225.308594 156.367188 225.308594 156.484375 C 225.308594 156.601562 225.402344 156.695312 225.519531 156.695312 C 225.636719 156.695312 225.730469 156.601562 225.730469 156.484375 Z M 225.730469 156.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.863281 153.199219 C 222.863281 153.082031 222.769531 152.988281 222.652344 152.988281 C 222.535156 152.988281 222.441406 153.082031 222.441406 153.199219 C 222.441406 153.316406 222.535156 153.410156 222.652344 153.410156 C 222.769531 153.410156 222.863281 153.316406 222.863281 153.199219 Z M 222.863281 153.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.152344 156.980469 C 223.152344 156.863281 223.058594 156.769531 222.941406 156.769531 C 222.824219 156.769531 222.730469 156.863281 222.730469 156.980469 C 222.730469 157.097656 222.824219 157.191406 222.941406 157.191406 C 223.058594 157.191406 223.152344 157.097656 223.152344 156.980469 Z M 223.152344 156.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.152344 159.3125 C 220.152344 159.195312 220.058594 159.101562 219.941406 159.101562 C 219.824219 159.101562 219.730469 159.195312 219.730469 159.3125 C 219.730469 159.429688 219.824219 159.523438 219.941406 159.523438 C 220.058594 159.523438 220.152344 159.429688 220.152344 159.3125 Z M 220.152344 159.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.292969 157.886719 C 220.292969 157.769531 220.199219 157.675781 220.082031 157.675781 C 219.964844 157.675781 219.871094 157.769531 219.871094 157.886719 C 219.871094 158.003906 219.964844 158.097656 220.082031 158.097656 C 220.199219 158.097656 220.292969 158.003906 220.292969 157.886719 Z M 220.292969 157.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.839844 158.578125 C 220.839844 158.460938 220.746094 158.367188 220.628906 158.367188 C 220.511719 158.367188 220.417969 158.460938 220.417969 158.578125 C 220.417969 158.695312 220.511719 158.789062 220.628906 158.789062 C 220.746094 158.789062 220.839844 158.695312 220.839844 158.578125 Z M 220.839844 158.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.605469 165.109375 C 220.605469 164.992188 220.511719 164.898438 220.394531 164.898438 C 220.277344 164.898438 220.183594 164.992188 220.183594 165.109375 C 220.183594 165.226562 220.277344 165.320312 220.394531 165.320312 C 220.511719 165.320312 220.605469 165.226562 220.605469 165.109375 Z M 220.605469 165.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.503906 164.910156 C 218.503906 164.792969 218.410156 164.699219 218.292969 164.699219 C 218.175781 164.699219 218.082031 164.792969 218.082031 164.910156 C 218.082031 165.027344 218.175781 165.121094 218.292969 165.121094 C 218.410156 165.121094 218.503906 165.027344 218.503906 164.910156 Z M 218.503906 164.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.234375 167.808594 C 220.234375 167.691406 220.140625 167.597656 220.023438 167.597656 C 219.90625 167.597656 219.8125 167.691406 219.8125 167.808594 C 219.8125 167.925781 219.90625 168.019531 220.023438 168.019531 C 220.140625 168.019531 220.234375 167.925781 220.234375 167.808594 Z M 220.234375 167.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.667969 167.625 C 222.667969 167.507812 222.574219 167.414062 222.457031 167.414062 C 222.339844 167.414062 222.246094 167.507812 222.246094 167.625 C 222.246094 167.742188 222.339844 167.835938 222.457031 167.835938 C 222.574219 167.835938 222.667969 167.742188 222.667969 167.625 Z M 222.667969 167.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.929688 169.203125 C 220.929688 169.085938 220.835938 168.992188 220.71875 168.992188 C 220.601562 168.992188 220.507812 169.085938 220.507812 169.203125 C 220.507812 169.320312 220.601562 169.414062 220.71875 169.414062 C 220.835938 169.414062 220.929688 169.320312 220.929688 169.203125 Z M 220.929688 169.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.996094 169.113281 C 220.996094 168.996094 220.902344 168.902344 220.785156 168.902344 C 220.667969 168.902344 220.574219 168.996094 220.574219 169.113281 C 220.574219 169.230469 220.667969 169.324219 220.785156 169.324219 C 220.902344 169.324219 220.996094 169.230469 220.996094 169.113281 Z M 220.996094 169.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.652344 168.59375 C 221.652344 168.476562 221.558594 168.382812 221.441406 168.382812 C 221.324219 168.382812 221.230469 168.476562 221.230469 168.59375 C 221.230469 168.710938 221.324219 168.804688 221.441406 168.804688 C 221.558594 168.804688 221.652344 168.710938 221.652344 168.59375 Z M 221.652344 168.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.972656 167.957031 C 219.972656 167.839844 219.878906 167.746094 219.761719 167.746094 C 219.644531 167.746094 219.550781 167.839844 219.550781 167.957031 C 219.550781 168.074219 219.644531 168.167969 219.761719 168.167969 C 219.878906 168.167969 219.972656 168.074219 219.972656 167.957031 Z M 219.972656 167.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.058594 165.480469 C 221.058594 165.363281 220.964844 165.269531 220.847656 165.269531 C 220.730469 165.269531 220.636719 165.363281 220.636719 165.480469 C 220.636719 165.597656 220.730469 165.691406 220.847656 165.691406 C 220.964844 165.691406 221.058594 165.597656 221.058594 165.480469 Z M 221.058594 165.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.734375 163.324219 C 222.734375 163.207031 222.640625 163.113281 222.523438 163.113281 C 222.40625 163.113281 222.3125 163.207031 222.3125 163.324219 C 222.3125 163.441406 222.40625 163.535156 222.523438 163.535156 C 222.640625 163.535156 222.734375 163.441406 222.734375 163.324219 Z M 222.734375 163.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.703125 163.804688 C 223.703125 163.6875 223.609375 163.59375 223.492188 163.59375 C 223.375 163.59375 223.28125 163.6875 223.28125 163.804688 C 223.28125 163.921875 223.375 164.015625 223.492188 164.015625 C 223.609375 164.015625 223.703125 163.921875 223.703125 163.804688 Z M 223.703125 163.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.84375 159.433594 C 222.84375 159.316406 222.75 159.222656 222.632812 159.222656 C 222.515625 159.222656 222.421875 159.316406 222.421875 159.433594 C 222.421875 159.550781 222.515625 159.644531 222.632812 159.644531 C 222.75 159.644531 222.84375 159.550781 222.84375 159.433594 Z M 222.84375 159.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.316406 156.296875 C 222.316406 156.179688 222.222656 156.085938 222.105469 156.085938 C 221.988281 156.085938 221.894531 156.179688 221.894531 156.296875 C 221.894531 156.414062 221.988281 156.507812 222.105469 156.507812 C 222.222656 156.507812 222.316406 156.414062 222.316406 156.296875 Z M 222.316406 156.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.066406 153.554688 C 223.066406 153.4375 222.972656 153.34375 222.855469 153.34375 C 222.738281 153.34375 222.644531 153.4375 222.644531 153.554688 C 222.644531 153.671875 222.738281 153.765625 222.855469 153.765625 C 222.972656 153.765625 223.066406 153.671875 223.066406 153.554688 Z M 223.066406 153.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.6875 153.8125 C 221.6875 153.695312 221.59375 153.601562 221.476562 153.601562 C 221.359375 153.601562 221.265625 153.695312 221.265625 153.8125 C 221.265625 153.929688 221.359375 154.023438 221.476562 154.023438 C 221.59375 154.023438 221.6875 153.929688 221.6875 153.8125 Z M 221.6875 153.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.570312 152.117188 C 220.570312 152 220.476562 151.90625 220.359375 151.90625 C 220.242188 151.90625 220.148438 152 220.148438 152.117188 C 220.148438 152.234375 220.242188 152.328125 220.359375 152.328125 C 220.476562 152.328125 220.570312 152.234375 220.570312 152.117188 Z M 220.570312 152.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.101562 152.792969 C 221.101562 152.675781 221.007812 152.582031 220.890625 152.582031 C 220.773438 152.582031 220.679688 152.675781 220.679688 152.792969 C 220.679688 152.910156 220.773438 153.003906 220.890625 153.003906 C 221.007812 153.003906 221.101562 152.910156 221.101562 152.792969 Z M 221.101562 152.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.425781 152.601562 C 220.425781 152.484375 220.332031 152.390625 220.214844 152.390625 C 220.097656 152.390625 220.003906 152.484375 220.003906 152.601562 C 220.003906 152.71875 220.097656 152.8125 220.214844 152.8125 C 220.332031 152.8125 220.425781 152.71875 220.425781 152.601562 Z M 220.425781 152.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.398438 152.667969 C 220.398438 152.550781 220.304688 152.457031 220.1875 152.457031 C 220.070312 152.457031 219.976562 152.550781 219.976562 152.667969 C 219.976562 152.785156 220.070312 152.878906 220.1875 152.878906 C 220.304688 152.878906 220.398438 152.785156 220.398438 152.667969 Z M 220.398438 152.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.910156 156.824219 C 219.910156 156.707031 219.816406 156.613281 219.699219 156.613281 C 219.582031 156.613281 219.488281 156.707031 219.488281 156.824219 C 219.488281 156.941406 219.582031 157.035156 219.699219 157.035156 C 219.816406 157.035156 219.910156 156.941406 219.910156 156.824219 Z M 219.910156 156.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.851562 154.136719 C 222.851562 154.019531 222.757812 153.925781 222.640625 153.925781 C 222.523438 153.925781 222.429688 154.019531 222.429688 154.136719 C 222.429688 154.253906 222.523438 154.347656 222.640625 154.347656 C 222.757812 154.347656 222.851562 154.253906 222.851562 154.136719 Z M 222.851562 154.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.890625 153.253906 C 221.890625 153.136719 221.796875 153.042969 221.679688 153.042969 C 221.5625 153.042969 221.46875 153.136719 221.46875 153.253906 C 221.46875 153.371094 221.5625 153.464844 221.679688 153.464844 C 221.796875 153.464844 221.890625 153.371094 221.890625 153.253906 Z M 221.890625 153.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.191406 156.015625 C 224.191406 155.898438 224.097656 155.804688 223.980469 155.804688 C 223.863281 155.804688 223.769531 155.898438 223.769531 156.015625 C 223.769531 156.132812 223.863281 156.226562 223.980469 156.226562 C 224.097656 156.226562 224.191406 156.132812 224.191406 156.015625 Z M 224.191406 156.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.269531 156.597656 C 224.269531 156.480469 224.175781 156.386719 224.058594 156.386719 C 223.941406 156.386719 223.847656 156.480469 223.847656 156.597656 C 223.847656 156.714844 223.941406 156.808594 224.058594 156.808594 C 224.175781 156.808594 224.269531 156.714844 224.269531 156.597656 Z M 224.269531 156.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.089844 157.421875 C 224.089844 157.304688 223.996094 157.210938 223.878906 157.210938 C 223.761719 157.210938 223.667969 157.304688 223.667969 157.421875 C 223.667969 157.539062 223.761719 157.632812 223.878906 157.632812 C 223.996094 157.632812 224.089844 157.539062 224.089844 157.421875 Z M 224.089844 157.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.292969 153.605469 C 226.292969 153.488281 226.199219 153.394531 226.082031 153.394531 C 225.964844 153.394531 225.871094 153.488281 225.871094 153.605469 C 225.871094 153.722656 225.964844 153.816406 226.082031 153.816406 C 226.199219 153.816406 226.292969 153.722656 226.292969 153.605469 Z M 226.292969 153.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.195312 155.4375 C 226.195312 155.320312 226.101562 155.226562 225.984375 155.226562 C 225.867188 155.226562 225.773438 155.320312 225.773438 155.4375 C 225.773438 155.554688 225.867188 155.648438 225.984375 155.648438 C 226.101562 155.648438 226.195312 155.554688 226.195312 155.4375 Z M 226.195312 155.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.714844 155.800781 C 226.714844 155.683594 226.621094 155.589844 226.503906 155.589844 C 226.386719 155.589844 226.292969 155.683594 226.292969 155.800781 C 226.292969 155.917969 226.386719 156.011719 226.503906 156.011719 C 226.621094 156.011719 226.714844 155.917969 226.714844 155.800781 Z M 226.714844 155.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.8125 158.105469 C 226.8125 157.988281 226.71875 157.894531 226.601562 157.894531 C 226.484375 157.894531 226.390625 157.988281 226.390625 158.105469 C 226.390625 158.222656 226.484375 158.316406 226.601562 158.316406 C 226.71875 158.316406 226.8125 158.222656 226.8125 158.105469 Z M 226.8125 158.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.816406 158.175781 C 229.816406 158.058594 229.722656 157.964844 229.605469 157.964844 C 229.488281 157.964844 229.394531 158.058594 229.394531 158.175781 C 229.394531 158.292969 229.488281 158.386719 229.605469 158.386719 C 229.722656 158.386719 229.816406 158.292969 229.816406 158.175781 Z M 229.816406 158.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.324219 158.097656 C 233.324219 157.980469 233.230469 157.886719 233.113281 157.886719 C 232.996094 157.886719 232.902344 157.980469 232.902344 158.097656 C 232.902344 158.214844 232.996094 158.308594 233.113281 158.308594 C 233.230469 158.308594 233.324219 158.214844 233.324219 158.097656 Z M 233.324219 158.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.246094 157.414062 C 232.246094 157.296875 232.152344 157.203125 232.035156 157.203125 C 231.917969 157.203125 231.824219 157.296875 231.824219 157.414062 C 231.824219 157.53125 231.917969 157.625 232.035156 157.625 C 232.152344 157.625 232.246094 157.53125 232.246094 157.414062 Z M 232.246094 157.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.832031 155.988281 C 233.832031 155.871094 233.738281 155.777344 233.621094 155.777344 C 233.503906 155.777344 233.410156 155.871094 233.410156 155.988281 C 233.410156 156.105469 233.503906 156.199219 233.621094 156.199219 C 233.738281 156.199219 233.832031 156.105469 233.832031 155.988281 Z M 233.832031 155.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.777344 154.496094 C 233.777344 154.378906 233.683594 154.285156 233.566406 154.285156 C 233.449219 154.285156 233.355469 154.378906 233.355469 154.496094 C 233.355469 154.613281 233.449219 154.707031 233.566406 154.707031 C 233.683594 154.707031 233.777344 154.613281 233.777344 154.496094 Z M 233.777344 154.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.785156 157.132812 C 234.785156 157.015625 234.691406 156.921875 234.574219 156.921875 C 234.457031 156.921875 234.363281 157.015625 234.363281 157.132812 C 234.363281 157.25 234.457031 157.34375 234.574219 157.34375 C 234.691406 157.34375 234.785156 157.25 234.785156 157.132812 Z M 234.785156 157.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.402344 156.667969 C 234.402344 156.550781 234.308594 156.457031 234.191406 156.457031 C 234.074219 156.457031 233.980469 156.550781 233.980469 156.667969 C 233.980469 156.785156 234.074219 156.878906 234.191406 156.878906 C 234.308594 156.878906 234.402344 156.785156 234.402344 156.667969 Z M 234.402344 156.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.359375 155.195312 C 232.359375 155.078125 232.265625 154.984375 232.148438 154.984375 C 232.03125 154.984375 231.9375 155.078125 231.9375 155.195312 C 231.9375 155.3125 232.03125 155.40625 232.148438 155.40625 C 232.265625 155.40625 232.359375 155.3125 232.359375 155.195312 Z M 232.359375 155.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.054688 154.964844 C 234.054688 154.847656 233.960938 154.753906 233.84375 154.753906 C 233.726562 154.753906 233.632812 154.847656 233.632812 154.964844 C 233.632812 155.082031 233.726562 155.175781 233.84375 155.175781 C 233.960938 155.175781 234.054688 155.082031 234.054688 154.964844 Z M 234.054688 154.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.625 154.144531 C 230.625 154.027344 230.53125 153.933594 230.414062 153.933594 C 230.296875 153.933594 230.203125 154.027344 230.203125 154.144531 C 230.203125 154.261719 230.296875 154.355469 230.414062 154.355469 C 230.53125 154.355469 230.625 154.261719 230.625 154.144531 Z M 230.625 154.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.632812 155.550781 C 230.632812 155.433594 230.539062 155.339844 230.421875 155.339844 C 230.304688 155.339844 230.210938 155.433594 230.210938 155.550781 C 230.210938 155.667969 230.304688 155.761719 230.421875 155.761719 C 230.539062 155.761719 230.632812 155.667969 230.632812 155.550781 Z M 230.632812 155.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.925781 154.304688 C 232.925781 154.1875 232.832031 154.09375 232.714844 154.09375 C 232.597656 154.09375 232.503906 154.1875 232.503906 154.304688 C 232.503906 154.421875 232.597656 154.515625 232.714844 154.515625 C 232.832031 154.515625 232.925781 154.421875 232.925781 154.304688 Z M 232.925781 154.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.148438 153.488281 C 233.148438 153.371094 233.054688 153.277344 232.9375 153.277344 C 232.820312 153.277344 232.726562 153.371094 232.726562 153.488281 C 232.726562 153.605469 232.820312 153.699219 232.9375 153.699219 C 233.054688 153.699219 233.148438 153.605469 233.148438 153.488281 Z M 233.148438 153.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.214844 154.3125 C 232.214844 154.195312 232.121094 154.101562 232.003906 154.101562 C 231.886719 154.101562 231.792969 154.195312 231.792969 154.3125 C 231.792969 154.429688 231.886719 154.523438 232.003906 154.523438 C 232.121094 154.523438 232.214844 154.429688 232.214844 154.3125 Z M 232.214844 154.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.566406 153.601562 C 230.566406 153.484375 230.472656 153.390625 230.355469 153.390625 C 230.238281 153.390625 230.144531 153.484375 230.144531 153.601562 C 230.144531 153.71875 230.238281 153.8125 230.355469 153.8125 C 230.472656 153.8125 230.566406 153.71875 230.566406 153.601562 Z M 230.566406 153.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.730469 150.914062 C 229.730469 150.796875 229.636719 150.703125 229.519531 150.703125 C 229.402344 150.703125 229.308594 150.796875 229.308594 150.914062 C 229.308594 151.03125 229.402344 151.125 229.519531 151.125 C 229.636719 151.125 229.730469 151.03125 229.730469 150.914062 Z M 229.730469 150.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.128906 150.882812 C 234.128906 150.765625 234.035156 150.671875 233.917969 150.671875 C 233.800781 150.671875 233.707031 150.765625 233.707031 150.882812 C 233.707031 151 233.800781 151.09375 233.917969 151.09375 C 234.035156 151.09375 234.128906 151 234.128906 150.882812 Z M 234.128906 150.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.085938 152.28125 C 232.085938 152.164062 231.992188 152.070312 231.875 152.070312 C 231.757812 152.070312 231.664062 152.164062 231.664062 152.28125 C 231.664062 152.398438 231.757812 152.492188 231.875 152.492188 C 231.992188 152.492188 232.085938 152.398438 232.085938 152.28125 Z M 232.085938 152.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.917969 152.003906 C 229.917969 151.886719 229.824219 151.792969 229.707031 151.792969 C 229.589844 151.792969 229.496094 151.886719 229.496094 152.003906 C 229.496094 152.121094 229.589844 152.214844 229.707031 152.214844 C 229.824219 152.214844 229.917969 152.121094 229.917969 152.003906 Z M 229.917969 152.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.417969 150.421875 C 228.417969 150.304688 228.324219 150.210938 228.207031 150.210938 C 228.089844 150.210938 227.996094 150.304688 227.996094 150.421875 C 227.996094 150.539062 228.089844 150.632812 228.207031 150.632812 C 228.324219 150.632812 228.417969 150.539062 228.417969 150.421875 Z M 228.417969 150.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.179688 149.441406 C 227.179688 149.324219 227.085938 149.230469 226.96875 149.230469 C 226.851562 149.230469 226.757812 149.324219 226.757812 149.441406 C 226.757812 149.558594 226.851562 149.652344 226.96875 149.652344 C 227.085938 149.652344 227.179688 149.558594 227.179688 149.441406 Z M 227.179688 149.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.496094 150.421875 C 229.496094 150.304688 229.402344 150.210938 229.285156 150.210938 C 229.167969 150.210938 229.074219 150.304688 229.074219 150.421875 C 229.074219 150.539062 229.167969 150.632812 229.285156 150.632812 C 229.402344 150.632812 229.496094 150.539062 229.496094 150.421875 Z M 229.496094 150.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.761719 153.835938 C 227.761719 153.71875 227.667969 153.625 227.550781 153.625 C 227.433594 153.625 227.339844 153.71875 227.339844 153.835938 C 227.339844 153.953125 227.433594 154.046875 227.550781 154.046875 C 227.667969 154.046875 227.761719 153.953125 227.761719 153.835938 Z M 227.761719 153.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.949219 154.746094 C 225.949219 154.628906 225.855469 154.535156 225.738281 154.535156 C 225.621094 154.535156 225.527344 154.628906 225.527344 154.746094 C 225.527344 154.863281 225.621094 154.957031 225.738281 154.957031 C 225.855469 154.957031 225.949219 154.863281 225.949219 154.746094 Z M 225.949219 154.746094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.257812 155.929688 C 226.257812 155.8125 226.164062 155.71875 226.046875 155.71875 C 225.929688 155.71875 225.835938 155.8125 225.835938 155.929688 C 225.835938 156.046875 225.929688 156.140625 226.046875 156.140625 C 226.164062 156.140625 226.257812 156.046875 226.257812 155.929688 Z M 226.257812 155.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.554688 154.484375 C 227.554688 154.367188 227.460938 154.273438 227.34375 154.273438 C 227.226562 154.273438 227.132812 154.367188 227.132812 154.484375 C 227.132812 154.601562 227.226562 154.695312 227.34375 154.695312 C 227.460938 154.695312 227.554688 154.601562 227.554688 154.484375 Z M 227.554688 154.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.417969 153.382812 C 230.417969 153.265625 230.324219 153.171875 230.207031 153.171875 C 230.089844 153.171875 229.996094 153.265625 229.996094 153.382812 C 229.996094 153.5 230.089844 153.59375 230.207031 153.59375 C 230.324219 153.59375 230.417969 153.5 230.417969 153.382812 Z M 230.417969 153.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.25 152.433594 C 230.25 152.316406 230.15625 152.222656 230.039062 152.222656 C 229.921875 152.222656 229.828125 152.316406 229.828125 152.433594 C 229.828125 152.550781 229.921875 152.644531 230.039062 152.644531 C 230.15625 152.644531 230.25 152.550781 230.25 152.433594 Z M 230.25 152.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.878906 153.058594 C 231.878906 152.941406 231.785156 152.847656 231.667969 152.847656 C 231.550781 152.847656 231.457031 152.941406 231.457031 153.058594 C 231.457031 153.175781 231.550781 153.269531 231.667969 153.269531 C 231.785156 153.269531 231.878906 153.175781 231.878906 153.058594 Z M 231.878906 153.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.589844 151.902344 C 231.589844 151.785156 231.496094 151.691406 231.378906 151.691406 C 231.261719 151.691406 231.167969 151.785156 231.167969 151.902344 C 231.167969 152.019531 231.261719 152.113281 231.378906 152.113281 C 231.496094 152.113281 231.589844 152.019531 231.589844 151.902344 Z M 231.589844 151.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.039062 154.023438 C 233.039062 153.90625 232.945312 153.8125 232.828125 153.8125 C 232.710938 153.8125 232.617188 153.90625 232.617188 154.023438 C 232.617188 154.140625 232.710938 154.234375 232.828125 154.234375 C 232.945312 154.234375 233.039062 154.140625 233.039062 154.023438 Z M 233.039062 154.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.710938 155.65625 C 233.710938 155.539062 233.617188 155.445312 233.5 155.445312 C 233.382812 155.445312 233.289062 155.539062 233.289062 155.65625 C 233.289062 155.773438 233.382812 155.867188 233.5 155.867188 C 233.617188 155.867188 233.710938 155.773438 233.710938 155.65625 Z M 233.710938 155.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.398438 157.375 C 236.398438 157.257812 236.304688 157.164062 236.1875 157.164062 C 236.070312 157.164062 235.976562 157.257812 235.976562 157.375 C 235.976562 157.492188 236.070312 157.585938 236.1875 157.585938 C 236.304688 157.585938 236.398438 157.492188 236.398438 157.375 Z M 236.398438 157.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.671875 159.90625 C 235.671875 159.789062 235.578125 159.695312 235.460938 159.695312 C 235.34375 159.695312 235.25 159.789062 235.25 159.90625 C 235.25 160.023438 235.34375 160.117188 235.460938 160.117188 C 235.578125 160.117188 235.671875 160.023438 235.671875 159.90625 Z M 235.671875 159.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.710938 160.148438 C 233.710938 160.03125 233.617188 159.9375 233.5 159.9375 C 233.382812 159.9375 233.289062 160.03125 233.289062 160.148438 C 233.289062 160.265625 233.382812 160.359375 233.5 160.359375 C 233.617188 160.359375 233.710938 160.265625 233.710938 160.148438 Z M 233.710938 160.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.898438 164.257812 C 236.898438 164.140625 236.804688 164.046875 236.6875 164.046875 C 236.570312 164.046875 236.476562 164.140625 236.476562 164.257812 C 236.476562 164.375 236.570312 164.46875 236.6875 164.46875 C 236.804688 164.46875 236.898438 164.375 236.898438 164.257812 Z M 236.898438 164.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.230469 165.316406 C 236.230469 165.199219 236.136719 165.105469 236.019531 165.105469 C 235.902344 165.105469 235.808594 165.199219 235.808594 165.316406 C 235.808594 165.433594 235.902344 165.527344 236.019531 165.527344 C 236.136719 165.527344 236.230469 165.433594 236.230469 165.316406 Z M 236.230469 165.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.898438 165.285156 C 236.898438 165.167969 236.804688 165.074219 236.6875 165.074219 C 236.570312 165.074219 236.476562 165.167969 236.476562 165.285156 C 236.476562 165.402344 236.570312 165.496094 236.6875 165.496094 C 236.804688 165.496094 236.898438 165.402344 236.898438 165.285156 Z M 236.898438 165.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.824219 162.019531 C 235.824219 161.902344 235.730469 161.808594 235.613281 161.808594 C 235.496094 161.808594 235.402344 161.902344 235.402344 162.019531 C 235.402344 162.136719 235.496094 162.230469 235.613281 162.230469 C 235.730469 162.230469 235.824219 162.136719 235.824219 162.019531 Z M 235.824219 162.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.105469 162.347656 C 234.105469 162.230469 234.011719 162.136719 233.894531 162.136719 C 233.777344 162.136719 233.683594 162.230469 233.683594 162.347656 C 233.683594 162.464844 233.777344 162.558594 233.894531 162.558594 C 234.011719 162.558594 234.105469 162.464844 234.105469 162.347656 Z M 234.105469 162.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.757812 160.910156 C 233.757812 160.792969 233.664062 160.699219 233.546875 160.699219 C 233.429688 160.699219 233.335938 160.792969 233.335938 160.910156 C 233.335938 161.027344 233.429688 161.121094 233.546875 161.121094 C 233.664062 161.121094 233.757812 161.027344 233.757812 160.910156 Z M 233.757812 160.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.121094 157.742188 C 233.121094 157.625 233.027344 157.53125 232.910156 157.53125 C 232.792969 157.53125 232.699219 157.625 232.699219 157.742188 C 232.699219 157.859375 232.792969 157.953125 232.910156 157.953125 C 233.027344 157.953125 233.121094 157.859375 233.121094 157.742188 Z M 233.121094 157.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.65625 160.183594 C 230.65625 160.066406 230.5625 159.972656 230.445312 159.972656 C 230.328125 159.972656 230.234375 160.066406 230.234375 160.183594 C 230.234375 160.300781 230.328125 160.394531 230.445312 160.394531 C 230.5625 160.394531 230.65625 160.300781 230.65625 160.183594 Z M 230.65625 160.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.191406 159.019531 C 232.191406 158.902344 232.097656 158.808594 231.980469 158.808594 C 231.863281 158.808594 231.769531 158.902344 231.769531 159.019531 C 231.769531 159.136719 231.863281 159.230469 231.980469 159.230469 C 232.097656 159.230469 232.191406 159.136719 232.191406 159.019531 Z M 232.191406 159.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.429688 158.4375 C 232.429688 158.320312 232.335938 158.226562 232.21875 158.226562 C 232.101562 158.226562 232.007812 158.320312 232.007812 158.4375 C 232.007812 158.554688 232.101562 158.648438 232.21875 158.648438 C 232.335938 158.648438 232.429688 158.554688 232.429688 158.4375 Z M 232.429688 158.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.070312 154.21875 C 229.070312 154.101562 228.976562 154.007812 228.859375 154.007812 C 228.742188 154.007812 228.648438 154.101562 228.648438 154.21875 C 228.648438 154.335938 228.742188 154.429688 228.859375 154.429688 C 228.976562 154.429688 229.070312 154.335938 229.070312 154.21875 Z M 229.070312 154.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.851562 155.691406 C 226.851562 155.574219 226.757812 155.480469 226.640625 155.480469 C 226.523438 155.480469 226.429688 155.574219 226.429688 155.691406 C 226.429688 155.808594 226.523438 155.902344 226.640625 155.902344 C 226.757812 155.902344 226.851562 155.808594 226.851562 155.691406 Z M 226.851562 155.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.335938 155.601562 C 225.335938 155.484375 225.242188 155.390625 225.125 155.390625 C 225.007812 155.390625 224.914062 155.484375 224.914062 155.601562 C 224.914062 155.71875 225.007812 155.8125 225.125 155.8125 C 225.242188 155.8125 225.335938 155.71875 225.335938 155.601562 Z M 225.335938 155.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.480469 155.074219 C 220.480469 154.957031 220.386719 154.863281 220.269531 154.863281 C 220.152344 154.863281 220.058594 154.957031 220.058594 155.074219 C 220.058594 155.191406 220.152344 155.285156 220.269531 155.285156 C 220.386719 155.285156 220.480469 155.191406 220.480469 155.074219 Z M 220.480469 155.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.480469 155.023438 C 217.480469 154.90625 217.386719 154.8125 217.269531 154.8125 C 217.152344 154.8125 217.058594 154.90625 217.058594 155.023438 C 217.058594 155.140625 217.152344 155.234375 217.269531 155.234375 C 217.386719 155.234375 217.480469 155.140625 217.480469 155.023438 Z M 217.480469 155.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.605469 156.574219 C 219.605469 156.457031 219.511719 156.363281 219.394531 156.363281 C 219.277344 156.363281 219.183594 156.457031 219.183594 156.574219 C 219.183594 156.691406 219.277344 156.785156 219.394531 156.785156 C 219.511719 156.785156 219.605469 156.691406 219.605469 156.574219 Z M 219.605469 156.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.519531 156.828125 C 220.519531 156.710938 220.425781 156.617188 220.308594 156.617188 C 220.191406 156.617188 220.097656 156.710938 220.097656 156.828125 C 220.097656 156.945312 220.191406 157.039062 220.308594 157.039062 C 220.425781 157.039062 220.519531 156.945312 220.519531 156.828125 Z M 220.519531 156.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.425781 157.976562 C 219.425781 157.859375 219.332031 157.765625 219.214844 157.765625 C 219.097656 157.765625 219.003906 157.859375 219.003906 157.976562 C 219.003906 158.09375 219.097656 158.1875 219.214844 158.1875 C 219.332031 158.1875 219.425781 158.09375 219.425781 157.976562 Z M 219.425781 157.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.238281 157.019531 C 220.238281 156.902344 220.144531 156.808594 220.027344 156.808594 C 219.910156 156.808594 219.816406 156.902344 219.816406 157.019531 C 219.816406 157.136719 219.910156 157.230469 220.027344 157.230469 C 220.144531 157.230469 220.238281 157.136719 220.238281 157.019531 Z M 220.238281 157.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.648438 159.085938 C 216.648438 158.96875 216.554688 158.875 216.4375 158.875 C 216.320312 158.875 216.226562 158.96875 216.226562 159.085938 C 216.226562 159.203125 216.320312 159.296875 216.4375 159.296875 C 216.554688 159.296875 216.648438 159.203125 216.648438 159.085938 Z M 216.648438 159.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.496094 155.824219 C 216.496094 155.707031 216.402344 155.613281 216.285156 155.613281 C 216.167969 155.613281 216.074219 155.707031 216.074219 155.824219 C 216.074219 155.941406 216.167969 156.035156 216.285156 156.035156 C 216.402344 156.035156 216.496094 155.941406 216.496094 155.824219 Z M 216.496094 155.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.664062 159.171875 C 220.664062 159.054688 220.570312 158.960938 220.453125 158.960938 C 220.335938 158.960938 220.242188 159.054688 220.242188 159.171875 C 220.242188 159.289062 220.335938 159.382812 220.453125 159.382812 C 220.570312 159.382812 220.664062 159.289062 220.664062 159.171875 Z M 220.664062 159.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.796875 157.078125 C 217.796875 156.960938 217.703125 156.867188 217.585938 156.867188 C 217.46875 156.867188 217.375 156.960938 217.375 157.078125 C 217.375 157.195312 217.46875 157.289062 217.585938 157.289062 C 217.703125 157.289062 217.796875 157.195312 217.796875 157.078125 Z M 217.796875 157.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.246094 156.519531 C 218.246094 156.402344 218.152344 156.308594 218.035156 156.308594 C 217.917969 156.308594 217.824219 156.402344 217.824219 156.519531 C 217.824219 156.636719 217.917969 156.730469 218.035156 156.730469 C 218.152344 156.730469 218.246094 156.636719 218.246094 156.519531 Z M 218.246094 156.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.421875 158.5 C 216.421875 158.382812 216.328125 158.289062 216.210938 158.289062 C 216.09375 158.289062 216 158.382812 216 158.5 C 216 158.617188 216.09375 158.710938 216.210938 158.710938 C 216.328125 158.710938 216.421875 158.617188 216.421875 158.5 Z M 216.421875 158.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.695312 155.828125 C 216.695312 155.710938 216.601562 155.617188 216.484375 155.617188 C 216.367188 155.617188 216.273438 155.710938 216.273438 155.828125 C 216.273438 155.945312 216.367188 156.039062 216.484375 156.039062 C 216.601562 156.039062 216.695312 155.945312 216.695312 155.828125 Z M 216.695312 155.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.578125 154.925781 C 217.578125 154.808594 217.484375 154.714844 217.367188 154.714844 C 217.25 154.714844 217.15625 154.808594 217.15625 154.925781 C 217.15625 155.042969 217.25 155.136719 217.367188 155.136719 C 217.484375 155.136719 217.578125 155.042969 217.578125 154.925781 Z M 217.578125 154.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.386719 154.011719 C 221.386719 153.894531 221.292969 153.800781 221.175781 153.800781 C 221.058594 153.800781 220.964844 153.894531 220.964844 154.011719 C 220.964844 154.128906 221.058594 154.222656 221.175781 154.222656 C 221.292969 154.222656 221.386719 154.128906 221.386719 154.011719 Z M 221.386719 154.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.890625 150.488281 C 221.890625 150.371094 221.796875 150.277344 221.679688 150.277344 C 221.5625 150.277344 221.46875 150.371094 221.46875 150.488281 C 221.46875 150.605469 221.5625 150.699219 221.679688 150.699219 C 221.796875 150.699219 221.890625 150.605469 221.890625 150.488281 Z M 221.890625 150.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.417969 148.722656 C 220.417969 148.605469 220.324219 148.511719 220.207031 148.511719 C 220.089844 148.511719 219.996094 148.605469 219.996094 148.722656 C 219.996094 148.839844 220.089844 148.933594 220.207031 148.933594 C 220.324219 148.933594 220.417969 148.839844 220.417969 148.722656 Z M 220.417969 148.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.539062 149.445312 C 221.539062 149.328125 221.445312 149.234375 221.328125 149.234375 C 221.210938 149.234375 221.117188 149.328125 221.117188 149.445312 C 221.117188 149.5625 221.210938 149.65625 221.328125 149.65625 C 221.445312 149.65625 221.539062 149.5625 221.539062 149.445312 Z M 221.539062 149.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.203125 148.273438 C 219.203125 148.15625 219.109375 148.0625 218.992188 148.0625 C 218.875 148.0625 218.78125 148.15625 218.78125 148.273438 C 218.78125 148.390625 218.875 148.484375 218.992188 148.484375 C 219.109375 148.484375 219.203125 148.390625 219.203125 148.273438 Z M 219.203125 148.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.515625 149.285156 C 218.515625 149.167969 218.421875 149.074219 218.304688 149.074219 C 218.1875 149.074219 218.09375 149.167969 218.09375 149.285156 C 218.09375 149.402344 218.1875 149.496094 218.304688 149.496094 C 218.421875 149.496094 218.515625 149.402344 218.515625 149.285156 Z M 218.515625 149.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.554688 149.382812 C 218.554688 149.265625 218.460938 149.171875 218.34375 149.171875 C 218.226562 149.171875 218.132812 149.265625 218.132812 149.382812 C 218.132812 149.5 218.226562 149.59375 218.34375 149.59375 C 218.460938 149.59375 218.554688 149.5 218.554688 149.382812 Z M 218.554688 149.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.550781 149.554688 C 215.550781 149.4375 215.457031 149.34375 215.339844 149.34375 C 215.222656 149.34375 215.128906 149.4375 215.128906 149.554688 C 215.128906 149.671875 215.222656 149.765625 215.339844 149.765625 C 215.457031 149.765625 215.550781 149.671875 215.550781 149.554688 Z M 215.550781 149.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.644531 148.695312 C 217.644531 148.578125 217.550781 148.484375 217.433594 148.484375 C 217.316406 148.484375 217.222656 148.578125 217.222656 148.695312 C 217.222656 148.8125 217.316406 148.90625 217.433594 148.90625 C 217.550781 148.90625 217.644531 148.8125 217.644531 148.695312 Z M 217.644531 148.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.238281 147.257812 C 218.238281 147.140625 218.144531 147.046875 218.027344 147.046875 C 217.910156 147.046875 217.816406 147.140625 217.816406 147.257812 C 217.816406 147.375 217.910156 147.46875 218.027344 147.46875 C 218.144531 147.46875 218.238281 147.375 218.238281 147.257812 Z M 218.238281 147.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.503906 147.34375 C 221.503906 147.226562 221.410156 147.132812 221.292969 147.132812 C 221.175781 147.132812 221.082031 147.226562 221.082031 147.34375 C 221.082031 147.460938 221.175781 147.554688 221.292969 147.554688 C 221.410156 147.554688 221.503906 147.460938 221.503906 147.34375 Z M 221.503906 147.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.359375 147.210938 C 222.359375 147.09375 222.265625 147 222.148438 147 C 222.03125 147 221.9375 147.09375 221.9375 147.210938 C 221.9375 147.328125 222.03125 147.421875 222.148438 147.421875 C 222.265625 147.421875 222.359375 147.328125 222.359375 147.210938 Z M 222.359375 147.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.632812 149.15625 C 222.632812 149.039062 222.539062 148.945312 222.421875 148.945312 C 222.304688 148.945312 222.210938 149.039062 222.210938 149.15625 C 222.210938 149.273438 222.304688 149.367188 222.421875 149.367188 C 222.539062 149.367188 222.632812 149.273438 222.632812 149.15625 Z M 222.632812 149.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.777344 149.507812 C 223.777344 149.390625 223.683594 149.296875 223.566406 149.296875 C 223.449219 149.296875 223.355469 149.390625 223.355469 149.507812 C 223.355469 149.625 223.449219 149.71875 223.566406 149.71875 C 223.683594 149.71875 223.777344 149.625 223.777344 149.507812 Z M 223.777344 149.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.953125 153.457031 C 223.953125 153.339844 223.859375 153.246094 223.742188 153.246094 C 223.625 153.246094 223.53125 153.339844 223.53125 153.457031 C 223.53125 153.574219 223.625 153.667969 223.742188 153.667969 C 223.859375 153.667969 223.953125 153.574219 223.953125 153.457031 Z M 223.953125 153.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.246094 152.8125 C 223.246094 152.695312 223.152344 152.601562 223.035156 152.601562 C 222.917969 152.601562 222.824219 152.695312 222.824219 152.8125 C 222.824219 152.929688 222.917969 153.023438 223.035156 153.023438 C 223.152344 153.023438 223.246094 152.929688 223.246094 152.8125 Z M 223.246094 152.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.796875 150.066406 C 225.796875 149.949219 225.703125 149.855469 225.585938 149.855469 C 225.46875 149.855469 225.375 149.949219 225.375 150.066406 C 225.375 150.183594 225.46875 150.277344 225.585938 150.277344 C 225.703125 150.277344 225.796875 150.183594 225.796875 150.066406 Z M 225.796875 150.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.960938 144.519531 C 222.960938 144.402344 222.867188 144.308594 222.75 144.308594 C 222.632812 144.308594 222.539062 144.402344 222.539062 144.519531 C 222.539062 144.636719 222.632812 144.730469 222.75 144.730469 C 222.867188 144.730469 222.960938 144.636719 222.960938 144.519531 Z M 222.960938 144.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.199219 143.796875 C 220.199219 143.679688 220.105469 143.585938 219.988281 143.585938 C 219.871094 143.585938 219.777344 143.679688 219.777344 143.796875 C 219.777344 143.914062 219.871094 144.007812 219.988281 144.007812 C 220.105469 144.007812 220.199219 143.914062 220.199219 143.796875 Z M 220.199219 143.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.503906 142.84375 C 218.503906 142.726562 218.410156 142.632812 218.292969 142.632812 C 218.175781 142.632812 218.082031 142.726562 218.082031 142.84375 C 218.082031 142.960938 218.175781 143.054688 218.292969 143.054688 C 218.410156 143.054688 218.503906 142.960938 218.503906 142.84375 Z M 218.503906 142.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.117188 144.179688 C 222.117188 144.0625 222.023438 143.96875 221.90625 143.96875 C 221.789062 143.96875 221.695312 144.0625 221.695312 144.179688 C 221.695312 144.296875 221.789062 144.390625 221.90625 144.390625 C 222.023438 144.390625 222.117188 144.296875 222.117188 144.179688 Z M 222.117188 144.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.277344 146.957031 C 220.277344 146.839844 220.183594 146.746094 220.066406 146.746094 C 219.949219 146.746094 219.855469 146.839844 219.855469 146.957031 C 219.855469 147.074219 219.949219 147.167969 220.066406 147.167969 C 220.183594 147.167969 220.277344 147.074219 220.277344 146.957031 Z M 220.277344 146.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.507812 141.609375 C 220.507812 141.492188 220.414062 141.398438 220.296875 141.398438 C 220.179688 141.398438 220.085938 141.492188 220.085938 141.609375 C 220.085938 141.726562 220.179688 141.820312 220.296875 141.820312 C 220.414062 141.820312 220.507812 141.726562 220.507812 141.609375 Z M 220.507812 141.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.867188 143.496094 C 222.867188 143.378906 222.773438 143.285156 222.65625 143.285156 C 222.539062 143.285156 222.445312 143.378906 222.445312 143.496094 C 222.445312 143.613281 222.539062 143.707031 222.65625 143.707031 C 222.773438 143.707031 222.867188 143.613281 222.867188 143.496094 Z M 222.867188 143.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.453125 143.101562 C 223.453125 142.984375 223.359375 142.890625 223.242188 142.890625 C 223.125 142.890625 223.03125 142.984375 223.03125 143.101562 C 223.03125 143.21875 223.125 143.3125 223.242188 143.3125 C 223.359375 143.3125 223.453125 143.21875 223.453125 143.101562 Z M 223.453125 143.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.867188 140.351562 C 216.867188 140.234375 216.773438 140.140625 216.65625 140.140625 C 216.539062 140.140625 216.445312 140.234375 216.445312 140.351562 C 216.445312 140.46875 216.539062 140.5625 216.65625 140.5625 C 216.773438 140.5625 216.867188 140.46875 216.867188 140.351562 Z M 216.867188 140.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.230469 135.738281 C 214.230469 135.621094 214.136719 135.527344 214.019531 135.527344 C 213.902344 135.527344 213.808594 135.621094 213.808594 135.738281 C 213.808594 135.855469 213.902344 135.949219 214.019531 135.949219 C 214.136719 135.949219 214.230469 135.855469 214.230469 135.738281 Z M 214.230469 135.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.484375 137.117188 C 213.484375 137 213.390625 136.90625 213.273438 136.90625 C 213.15625 136.90625 213.0625 137 213.0625 137.117188 C 213.0625 137.234375 213.15625 137.328125 213.273438 137.328125 C 213.390625 137.328125 213.484375 137.234375 213.484375 137.117188 Z M 213.484375 137.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.511719 139.484375 C 213.511719 139.367188 213.417969 139.273438 213.300781 139.273438 C 213.183594 139.273438 213.089844 139.367188 213.089844 139.484375 C 213.089844 139.601562 213.183594 139.695312 213.300781 139.695312 C 213.417969 139.695312 213.511719 139.601562 213.511719 139.484375 Z M 213.511719 139.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.578125 137.859375 C 211.578125 137.742188 211.484375 137.648438 211.367188 137.648438 C 211.25 137.648438 211.15625 137.742188 211.15625 137.859375 C 211.15625 137.976562 211.25 138.070312 211.367188 138.070312 C 211.484375 138.070312 211.578125 137.976562 211.578125 137.859375 Z M 211.578125 137.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.777344 138.753906 C 213.777344 138.636719 213.683594 138.542969 213.566406 138.542969 C 213.449219 138.542969 213.355469 138.636719 213.355469 138.753906 C 213.355469 138.871094 213.449219 138.964844 213.566406 138.964844 C 213.683594 138.964844 213.777344 138.871094 213.777344 138.753906 Z M 213.777344 138.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.613281 138.84375 C 213.613281 138.726562 213.519531 138.632812 213.402344 138.632812 C 213.285156 138.632812 213.191406 138.726562 213.191406 138.84375 C 213.191406 138.960938 213.285156 139.054688 213.402344 139.054688 C 213.519531 139.054688 213.613281 138.960938 213.613281 138.84375 Z M 213.613281 138.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.617188 136.375 C 213.617188 136.257812 213.523438 136.164062 213.40625 136.164062 C 213.289062 136.164062 213.195312 136.257812 213.195312 136.375 C 213.195312 136.492188 213.289062 136.585938 213.40625 136.585938 C 213.523438 136.585938 213.617188 136.492188 213.617188 136.375 Z M 213.617188 136.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.757812 134.171875 C 213.757812 134.054688 213.664062 133.960938 213.546875 133.960938 C 213.429688 133.960938 213.335938 134.054688 213.335938 134.171875 C 213.335938 134.289062 213.429688 134.382812 213.546875 134.382812 C 213.664062 134.382812 213.757812 134.289062 213.757812 134.171875 Z M 213.757812 134.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.828125 134.738281 C 212.828125 134.621094 212.734375 134.527344 212.617188 134.527344 C 212.5 134.527344 212.40625 134.621094 212.40625 134.738281 C 212.40625 134.855469 212.5 134.949219 212.617188 134.949219 C 212.734375 134.949219 212.828125 134.855469 212.828125 134.738281 Z M 212.828125 134.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.667969 134.09375 C 211.667969 133.976562 211.574219 133.882812 211.457031 133.882812 C 211.339844 133.882812 211.246094 133.976562 211.246094 134.09375 C 211.246094 134.210938 211.339844 134.304688 211.457031 134.304688 C 211.574219 134.304688 211.667969 134.210938 211.667969 134.09375 Z M 211.667969 134.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.882812 136.445312 C 210.882812 136.328125 210.789062 136.234375 210.671875 136.234375 C 210.554688 136.234375 210.460938 136.328125 210.460938 136.445312 C 210.460938 136.5625 210.554688 136.65625 210.671875 136.65625 C 210.789062 136.65625 210.882812 136.5625 210.882812 136.445312 Z M 210.882812 136.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.628906 133.667969 C 208.628906 133.550781 208.535156 133.457031 208.417969 133.457031 C 208.300781 133.457031 208.207031 133.550781 208.207031 133.667969 C 208.207031 133.785156 208.300781 133.878906 208.417969 133.878906 C 208.535156 133.878906 208.628906 133.785156 208.628906 133.667969 Z M 208.628906 133.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.011719 133.894531 C 212.011719 133.777344 211.917969 133.683594 211.800781 133.683594 C 211.683594 133.683594 211.589844 133.777344 211.589844 133.894531 C 211.589844 134.011719 211.683594 134.105469 211.800781 134.105469 C 211.917969 134.105469 212.011719 134.011719 212.011719 133.894531 Z M 212.011719 133.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.933594 131.242188 C 213.933594 131.125 213.839844 131.03125 213.722656 131.03125 C 213.605469 131.03125 213.511719 131.125 213.511719 131.242188 C 213.511719 131.359375 213.605469 131.453125 213.722656 131.453125 C 213.839844 131.453125 213.933594 131.359375 213.933594 131.242188 Z M 213.933594 131.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.898438 131.195312 C 211.898438 131.078125 211.804688 130.984375 211.6875 130.984375 C 211.570312 130.984375 211.476562 131.078125 211.476562 131.195312 C 211.476562 131.3125 211.570312 131.40625 211.6875 131.40625 C 211.804688 131.40625 211.898438 131.3125 211.898438 131.195312 Z M 211.898438 131.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.957031 131.707031 C 212.957031 131.589844 212.863281 131.496094 212.746094 131.496094 C 212.628906 131.496094 212.535156 131.589844 212.535156 131.707031 C 212.535156 131.824219 212.628906 131.917969 212.746094 131.917969 C 212.863281 131.917969 212.957031 131.824219 212.957031 131.707031 Z M 212.957031 131.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.5 132.871094 C 214.5 132.753906 214.40625 132.660156 214.289062 132.660156 C 214.171875 132.660156 214.078125 132.753906 214.078125 132.871094 C 214.078125 132.988281 214.171875 133.082031 214.289062 133.082031 C 214.40625 133.082031 214.5 132.988281 214.5 132.871094 Z M 214.5 132.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.53125 133.113281 C 214.53125 132.996094 214.4375 132.902344 214.320312 132.902344 C 214.203125 132.902344 214.109375 132.996094 214.109375 133.113281 C 214.109375 133.230469 214.203125 133.324219 214.320312 133.324219 C 214.4375 133.324219 214.53125 133.230469 214.53125 133.113281 Z M 214.53125 133.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.210938 131.304688 C 217.210938 131.1875 217.117188 131.09375 217 131.09375 C 216.882812 131.09375 216.789062 131.1875 216.789062 131.304688 C 216.789062 131.421875 216.882812 131.515625 217 131.515625 C 217.117188 131.515625 217.210938 131.421875 217.210938 131.304688 Z M 217.210938 131.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.902344 135.644531 C 214.902344 135.527344 214.808594 135.433594 214.691406 135.433594 C 214.574219 135.433594 214.480469 135.527344 214.480469 135.644531 C 214.480469 135.761719 214.574219 135.855469 214.691406 135.855469 C 214.808594 135.855469 214.902344 135.761719 214.902344 135.644531 Z M 214.902344 135.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.449219 134.78125 C 216.449219 134.664062 216.355469 134.570312 216.238281 134.570312 C 216.121094 134.570312 216.027344 134.664062 216.027344 134.78125 C 216.027344 134.898438 216.121094 134.992188 216.238281 134.992188 C 216.355469 134.992188 216.449219 134.898438 216.449219 134.78125 Z M 216.449219 134.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.183594 137.160156 C 221.183594 137.042969 221.089844 136.949219 220.972656 136.949219 C 220.855469 136.949219 220.761719 137.042969 220.761719 137.160156 C 220.761719 137.277344 220.855469 137.371094 220.972656 137.371094 C 221.089844 137.371094 221.183594 137.277344 221.183594 137.160156 Z M 221.183594 137.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.144531 136.765625 C 224.144531 136.648438 224.050781 136.554688 223.933594 136.554688 C 223.816406 136.554688 223.722656 136.648438 223.722656 136.765625 C 223.722656 136.882812 223.816406 136.976562 223.933594 136.976562 C 224.050781 136.976562 224.144531 136.882812 224.144531 136.765625 Z M 224.144531 136.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.054688 135.304688 C 223.054688 135.1875 222.960938 135.09375 222.84375 135.09375 C 222.726562 135.09375 222.632812 135.1875 222.632812 135.304688 C 222.632812 135.421875 222.726562 135.515625 222.84375 135.515625 C 222.960938 135.515625 223.054688 135.421875 223.054688 135.304688 Z M 223.054688 135.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.480469 132.480469 C 222.480469 132.363281 222.386719 132.269531 222.269531 132.269531 C 222.152344 132.269531 222.058594 132.363281 222.058594 132.480469 C 222.058594 132.597656 222.152344 132.691406 222.269531 132.691406 C 222.386719 132.691406 222.480469 132.597656 222.480469 132.480469 Z M 222.480469 132.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.738281 135.304688 C 223.738281 135.1875 223.644531 135.09375 223.527344 135.09375 C 223.410156 135.09375 223.316406 135.1875 223.316406 135.304688 C 223.316406 135.421875 223.410156 135.515625 223.527344 135.515625 C 223.644531 135.515625 223.738281 135.421875 223.738281 135.304688 Z M 223.738281 135.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.214844 136.246094 C 226.214844 136.128906 226.121094 136.035156 226.003906 136.035156 C 225.886719 136.035156 225.792969 136.128906 225.792969 136.246094 C 225.792969 136.363281 225.886719 136.457031 226.003906 136.457031 C 226.121094 136.457031 226.214844 136.363281 226.214844 136.246094 Z M 226.214844 136.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.003906 138.5625 C 224.003906 138.445312 223.910156 138.351562 223.792969 138.351562 C 223.675781 138.351562 223.582031 138.445312 223.582031 138.5625 C 223.582031 138.679688 223.675781 138.773438 223.792969 138.773438 C 223.910156 138.773438 224.003906 138.679688 224.003906 138.5625 Z M 224.003906 138.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.664062 135.683594 C 226.664062 135.566406 226.570312 135.472656 226.453125 135.472656 C 226.335938 135.472656 226.242188 135.566406 226.242188 135.683594 C 226.242188 135.800781 226.335938 135.894531 226.453125 135.894531 C 226.570312 135.894531 226.664062 135.800781 226.664062 135.683594 Z M 226.664062 135.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.042969 135.101562 C 229.042969 134.984375 228.949219 134.890625 228.832031 134.890625 C 228.714844 134.890625 228.621094 134.984375 228.621094 135.101562 C 228.621094 135.21875 228.714844 135.3125 228.832031 135.3125 C 228.949219 135.3125 229.042969 135.21875 229.042969 135.101562 Z M 229.042969 135.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.238281 139.890625 C 226.238281 139.773438 226.144531 139.679688 226.027344 139.679688 C 225.910156 139.679688 225.816406 139.773438 225.816406 139.890625 C 225.816406 140.007812 225.910156 140.101562 226.027344 140.101562 C 226.144531 140.101562 226.238281 140.007812 226.238281 139.890625 Z M 226.238281 139.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.4375 141.15625 C 226.4375 141.039062 226.34375 140.945312 226.226562 140.945312 C 226.109375 140.945312 226.015625 141.039062 226.015625 141.15625 C 226.015625 141.273438 226.109375 141.367188 226.226562 141.367188 C 226.34375 141.367188 226.4375 141.273438 226.4375 141.15625 Z M 226.4375 141.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.132812 142.382812 C 225.132812 142.265625 225.039062 142.171875 224.921875 142.171875 C 224.804688 142.171875 224.710938 142.265625 224.710938 142.382812 C 224.710938 142.5 224.804688 142.59375 224.921875 142.59375 C 225.039062 142.59375 225.132812 142.5 225.132812 142.382812 Z M 225.132812 142.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.769531 138.863281 C 227.769531 138.746094 227.675781 138.652344 227.558594 138.652344 C 227.441406 138.652344 227.347656 138.746094 227.347656 138.863281 C 227.347656 138.980469 227.441406 139.074219 227.558594 139.074219 C 227.675781 139.074219 227.769531 138.980469 227.769531 138.863281 Z M 227.769531 138.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.164062 139.453125 C 227.164062 139.335938 227.070312 139.242188 226.953125 139.242188 C 226.835938 139.242188 226.742188 139.335938 226.742188 139.453125 C 226.742188 139.570312 226.835938 139.664062 226.953125 139.664062 C 227.070312 139.664062 227.164062 139.570312 227.164062 139.453125 Z M 227.164062 139.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.179688 133.601562 C 227.179688 133.484375 227.085938 133.390625 226.96875 133.390625 C 226.851562 133.390625 226.757812 133.484375 226.757812 133.601562 C 226.757812 133.71875 226.851562 133.8125 226.96875 133.8125 C 227.085938 133.8125 227.179688 133.71875 227.179688 133.601562 Z M 227.179688 133.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.324219 134.828125 C 225.324219 134.710938 225.230469 134.617188 225.113281 134.617188 C 224.996094 134.617188 224.902344 134.710938 224.902344 134.828125 C 224.902344 134.945312 224.996094 135.039062 225.113281 135.039062 C 225.230469 135.039062 225.324219 134.945312 225.324219 134.828125 Z M 225.324219 134.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.226562 133.929688 C 226.226562 133.8125 226.132812 133.71875 226.015625 133.71875 C 225.898438 133.71875 225.804688 133.8125 225.804688 133.929688 C 225.804688 134.046875 225.898438 134.140625 226.015625 134.140625 C 226.132812 134.140625 226.226562 134.046875 226.226562 133.929688 Z M 226.226562 133.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.042969 135.917969 C 226.042969 135.800781 225.949219 135.707031 225.832031 135.707031 C 225.714844 135.707031 225.621094 135.800781 225.621094 135.917969 C 225.621094 136.035156 225.714844 136.128906 225.832031 136.128906 C 225.949219 136.128906 226.042969 136.035156 226.042969 135.917969 Z M 226.042969 135.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.769531 138.023438 C 229.769531 137.90625 229.675781 137.8125 229.558594 137.8125 C 229.441406 137.8125 229.347656 137.90625 229.347656 138.023438 C 229.347656 138.140625 229.441406 138.234375 229.558594 138.234375 C 229.675781 138.234375 229.769531 138.140625 229.769531 138.023438 Z M 229.769531 138.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.566406 138.855469 C 228.566406 138.738281 228.472656 138.644531 228.355469 138.644531 C 228.238281 138.644531 228.144531 138.738281 228.144531 138.855469 C 228.144531 138.972656 228.238281 139.066406 228.355469 139.066406 C 228.472656 139.066406 228.566406 138.972656 228.566406 138.855469 Z M 228.566406 138.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.058594 139.039062 C 230.058594 138.921875 229.964844 138.828125 229.847656 138.828125 C 229.730469 138.828125 229.636719 138.921875 229.636719 139.039062 C 229.636719 139.15625 229.730469 139.25 229.847656 139.25 C 229.964844 139.25 230.058594 139.15625 230.058594 139.039062 Z M 230.058594 139.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.191406 138.578125 C 229.191406 138.460938 229.097656 138.367188 228.980469 138.367188 C 228.863281 138.367188 228.769531 138.460938 228.769531 138.578125 C 228.769531 138.695312 228.863281 138.789062 228.980469 138.789062 C 229.097656 138.789062 229.191406 138.695312 229.191406 138.578125 Z M 229.191406 138.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.734375 139.007812 C 228.734375 138.890625 228.640625 138.796875 228.523438 138.796875 C 228.40625 138.796875 228.3125 138.890625 228.3125 139.007812 C 228.3125 139.125 228.40625 139.21875 228.523438 139.21875 C 228.640625 139.21875 228.734375 139.125 228.734375 139.007812 Z M 228.734375 139.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.324219 138.621094 C 233.324219 138.503906 233.230469 138.410156 233.113281 138.410156 C 232.996094 138.410156 232.902344 138.503906 232.902344 138.621094 C 232.902344 138.738281 232.996094 138.832031 233.113281 138.832031 C 233.230469 138.832031 233.324219 138.738281 233.324219 138.621094 Z M 233.324219 138.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.097656 134.863281 C 231.097656 134.746094 231.003906 134.652344 230.886719 134.652344 C 230.769531 134.652344 230.675781 134.746094 230.675781 134.863281 C 230.675781 134.980469 230.769531 135.074219 230.886719 135.074219 C 231.003906 135.074219 231.097656 134.980469 231.097656 134.863281 Z M 231.097656 134.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.554688 130.652344 C 230.554688 130.535156 230.460938 130.441406 230.34375 130.441406 C 230.226562 130.441406 230.132812 130.535156 230.132812 130.652344 C 230.132812 130.769531 230.226562 130.863281 230.34375 130.863281 C 230.460938 130.863281 230.554688 130.769531 230.554688 130.652344 Z M 230.554688 130.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.066406 127.15625 C 227.066406 127.039062 226.972656 126.945312 226.855469 126.945312 C 226.738281 126.945312 226.644531 127.039062 226.644531 127.15625 C 226.644531 127.273438 226.738281 127.367188 226.855469 127.367188 C 226.972656 127.367188 227.066406 127.273438 227.066406 127.15625 Z M 227.066406 127.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.21875 126.65625 C 228.21875 126.539062 228.125 126.445312 228.007812 126.445312 C 227.890625 126.445312 227.796875 126.539062 227.796875 126.65625 C 227.796875 126.773438 227.890625 126.867188 228.007812 126.867188 C 228.125 126.867188 228.21875 126.773438 228.21875 126.65625 Z M 228.21875 126.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.621094 123.128906 C 227.621094 123.011719 227.527344 122.917969 227.410156 122.917969 C 227.292969 122.917969 227.199219 123.011719 227.199219 123.128906 C 227.199219 123.246094 227.292969 123.339844 227.410156 123.339844 C 227.527344 123.339844 227.621094 123.246094 227.621094 123.128906 Z M 227.621094 123.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.109375 120.957031 C 230.109375 120.839844 230.015625 120.746094 229.898438 120.746094 C 229.78125 120.746094 229.6875 120.839844 229.6875 120.957031 C 229.6875 121.074219 229.78125 121.167969 229.898438 121.167969 C 230.015625 121.167969 230.109375 121.074219 230.109375 120.957031 Z M 230.109375 120.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.070312 120.707031 C 228.070312 120.589844 227.976562 120.496094 227.859375 120.496094 C 227.742188 120.496094 227.648438 120.589844 227.648438 120.707031 C 227.648438 120.824219 227.742188 120.917969 227.859375 120.917969 C 227.976562 120.917969 228.070312 120.824219 228.070312 120.707031 Z M 228.070312 120.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.445312 121.582031 C 228.445312 121.464844 228.351562 121.371094 228.234375 121.371094 C 228.117188 121.371094 228.023438 121.464844 228.023438 121.582031 C 228.023438 121.699219 228.117188 121.792969 228.234375 121.792969 C 228.351562 121.792969 228.445312 121.699219 228.445312 121.582031 Z M 228.445312 121.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.640625 122.933594 C 229.640625 122.816406 229.546875 122.722656 229.429688 122.722656 C 229.3125 122.722656 229.21875 122.816406 229.21875 122.933594 C 229.21875 123.050781 229.3125 123.144531 229.429688 123.144531 C 229.546875 123.144531 229.640625 123.050781 229.640625 122.933594 Z M 229.640625 122.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.070312 119.929688 C 231.070312 119.8125 230.976562 119.71875 230.859375 119.71875 C 230.742188 119.71875 230.648438 119.8125 230.648438 119.929688 C 230.648438 120.046875 230.742188 120.140625 230.859375 120.140625 C 230.976562 120.140625 231.070312 120.046875 231.070312 119.929688 Z M 231.070312 119.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.679688 119.191406 C 233.679688 119.074219 233.585938 118.980469 233.46875 118.980469 C 233.351562 118.980469 233.257812 119.074219 233.257812 119.191406 C 233.257812 119.308594 233.351562 119.402344 233.46875 119.402344 C 233.585938 119.402344 233.679688 119.308594 233.679688 119.191406 Z M 233.679688 119.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.003906 120.171875 C 234.003906 120.054688 233.910156 119.960938 233.792969 119.960938 C 233.675781 119.960938 233.582031 120.054688 233.582031 120.171875 C 233.582031 120.289062 233.675781 120.382812 233.792969 120.382812 C 233.910156 120.382812 234.003906 120.289062 234.003906 120.171875 Z M 234.003906 120.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.5625 119.308594 C 233.5625 119.191406 233.46875 119.097656 233.351562 119.097656 C 233.234375 119.097656 233.140625 119.191406 233.140625 119.308594 C 233.140625 119.425781 233.234375 119.519531 233.351562 119.519531 C 233.46875 119.519531 233.5625 119.425781 233.5625 119.308594 Z M 233.5625 119.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.320312 121.722656 C 234.320312 121.605469 234.226562 121.511719 234.109375 121.511719 C 233.992188 121.511719 233.898438 121.605469 233.898438 121.722656 C 233.898438 121.839844 233.992188 121.933594 234.109375 121.933594 C 234.226562 121.933594 234.320312 121.839844 234.320312 121.722656 Z M 234.320312 121.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.773438 123.601562 C 233.773438 123.484375 233.679688 123.390625 233.5625 123.390625 C 233.445312 123.390625 233.351562 123.484375 233.351562 123.601562 C 233.351562 123.71875 233.445312 123.8125 233.5625 123.8125 C 233.679688 123.8125 233.773438 123.71875 233.773438 123.601562 Z M 233.773438 123.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.546875 122.800781 C 229.546875 122.683594 229.453125 122.589844 229.335938 122.589844 C 229.21875 122.589844 229.125 122.683594 229.125 122.800781 C 229.125 122.917969 229.21875 123.011719 229.335938 123.011719 C 229.453125 123.011719 229.546875 122.917969 229.546875 122.800781 Z M 229.546875 122.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.105469 124.289062 C 225.105469 124.171875 225.011719 124.078125 224.894531 124.078125 C 224.777344 124.078125 224.683594 124.171875 224.683594 124.289062 C 224.683594 124.40625 224.777344 124.5 224.894531 124.5 C 225.011719 124.5 225.105469 124.40625 225.105469 124.289062 Z M 225.105469 124.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.253906 127.191406 C 226.253906 127.074219 226.160156 126.980469 226.042969 126.980469 C 225.925781 126.980469 225.832031 127.074219 225.832031 127.191406 C 225.832031 127.308594 225.925781 127.402344 226.042969 127.402344 C 226.160156 127.402344 226.253906 127.308594 226.253906 127.191406 Z M 226.253906 127.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.15625 128.246094 C 228.15625 128.128906 228.0625 128.035156 227.945312 128.035156 C 227.828125 128.035156 227.734375 128.128906 227.734375 128.246094 C 227.734375 128.363281 227.828125 128.457031 227.945312 128.457031 C 228.0625 128.457031 228.15625 128.363281 228.15625 128.246094 Z M 228.15625 128.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.644531 129.238281 C 226.644531 129.121094 226.550781 129.027344 226.433594 129.027344 C 226.316406 129.027344 226.222656 129.121094 226.222656 129.238281 C 226.222656 129.355469 226.316406 129.449219 226.433594 129.449219 C 226.550781 129.449219 226.644531 129.355469 226.644531 129.238281 Z M 226.644531 129.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.980469 129.253906 C 223.980469 129.136719 223.886719 129.042969 223.769531 129.042969 C 223.652344 129.042969 223.558594 129.136719 223.558594 129.253906 C 223.558594 129.371094 223.652344 129.464844 223.769531 129.464844 C 223.886719 129.464844 223.980469 129.371094 223.980469 129.253906 Z M 223.980469 129.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.21875 127.101562 C 223.21875 126.984375 223.125 126.890625 223.007812 126.890625 C 222.890625 126.890625 222.796875 126.984375 222.796875 127.101562 C 222.796875 127.21875 222.890625 127.3125 223.007812 127.3125 C 223.125 127.3125 223.21875 127.21875 223.21875 127.101562 Z M 223.21875 127.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.351562 128.503906 C 223.351562 128.386719 223.257812 128.292969 223.140625 128.292969 C 223.023438 128.292969 222.929688 128.386719 222.929688 128.503906 C 222.929688 128.621094 223.023438 128.714844 223.140625 128.714844 C 223.257812 128.714844 223.351562 128.621094 223.351562 128.503906 Z M 223.351562 128.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.511719 127.914062 C 222.511719 127.796875 222.417969 127.703125 222.300781 127.703125 C 222.183594 127.703125 222.089844 127.796875 222.089844 127.914062 C 222.089844 128.03125 222.183594 128.125 222.300781 128.125 C 222.417969 128.125 222.511719 128.03125 222.511719 127.914062 Z M 222.511719 127.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.414062 131.136719 C 224.414062 131.019531 224.320312 130.925781 224.203125 130.925781 C 224.085938 130.925781 223.992188 131.019531 223.992188 131.136719 C 223.992188 131.253906 224.085938 131.347656 224.203125 131.347656 C 224.320312 131.347656 224.414062 131.253906 224.414062 131.136719 Z M 224.414062 131.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.164062 132.09375 C 225.164062 131.976562 225.070312 131.882812 224.953125 131.882812 C 224.835938 131.882812 224.742188 131.976562 224.742188 132.09375 C 224.742188 132.210938 224.835938 132.304688 224.953125 132.304688 C 225.070312 132.304688 225.164062 132.210938 225.164062 132.09375 Z M 225.164062 132.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.132812 136.226562 C 223.132812 136.109375 223.039062 136.015625 222.921875 136.015625 C 222.804688 136.015625 222.710938 136.109375 222.710938 136.226562 C 222.710938 136.34375 222.804688 136.4375 222.921875 136.4375 C 223.039062 136.4375 223.132812 136.34375 223.132812 136.226562 Z M 223.132812 136.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.769531 133.117188 C 222.769531 133 222.675781 132.90625 222.558594 132.90625 C 222.441406 132.90625 222.347656 133 222.347656 133.117188 C 222.347656 133.234375 222.441406 133.328125 222.558594 133.328125 C 222.675781 133.328125 222.769531 133.234375 222.769531 133.117188 Z M 222.769531 133.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.863281 133.1875 C 219.863281 133.070312 219.769531 132.976562 219.652344 132.976562 C 219.535156 132.976562 219.441406 133.070312 219.441406 133.1875 C 219.441406 133.304688 219.535156 133.398438 219.652344 133.398438 C 219.769531 133.398438 219.863281 133.304688 219.863281 133.1875 Z M 219.863281 133.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.429688 132.164062 C 217.429688 132.046875 217.335938 131.953125 217.21875 131.953125 C 217.101562 131.953125 217.007812 132.046875 217.007812 132.164062 C 217.007812 132.28125 217.101562 132.375 217.21875 132.375 C 217.335938 132.375 217.429688 132.28125 217.429688 132.164062 Z M 217.429688 132.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.324219 134.585938 C 217.324219 134.46875 217.230469 134.375 217.113281 134.375 C 216.996094 134.375 216.902344 134.46875 216.902344 134.585938 C 216.902344 134.703125 216.996094 134.796875 217.113281 134.796875 C 217.230469 134.796875 217.324219 134.703125 217.324219 134.585938 Z M 217.324219 134.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.347656 132.304688 C 216.347656 132.1875 216.253906 132.09375 216.136719 132.09375 C 216.019531 132.09375 215.925781 132.1875 215.925781 132.304688 C 215.925781 132.421875 216.019531 132.515625 216.136719 132.515625 C 216.253906 132.515625 216.347656 132.421875 216.347656 132.304688 Z M 216.347656 132.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.667969 134.632812 C 218.667969 134.515625 218.574219 134.421875 218.457031 134.421875 C 218.339844 134.421875 218.246094 134.515625 218.246094 134.632812 C 218.246094 134.75 218.339844 134.84375 218.457031 134.84375 C 218.574219 134.84375 218.667969 134.75 218.667969 134.632812 Z M 218.667969 134.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.0625 133.265625 C 220.0625 133.148438 219.96875 133.054688 219.851562 133.054688 C 219.734375 133.054688 219.640625 133.148438 219.640625 133.265625 C 219.640625 133.382812 219.734375 133.476562 219.851562 133.476562 C 219.96875 133.476562 220.0625 133.382812 220.0625 133.265625 Z M 220.0625 133.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.148438 133.109375 C 222.148438 132.992188 222.054688 132.898438 221.9375 132.898438 C 221.820312 132.898438 221.726562 132.992188 221.726562 133.109375 C 221.726562 133.226562 221.820312 133.320312 221.9375 133.320312 C 222.054688 133.320312 222.148438 133.226562 222.148438 133.109375 Z M 222.148438 133.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.554688 126.84375 C 218.554688 126.726562 218.460938 126.632812 218.34375 126.632812 C 218.226562 126.632812 218.132812 126.726562 218.132812 126.84375 C 218.132812 126.960938 218.226562 127.054688 218.34375 127.054688 C 218.460938 127.054688 218.554688 126.960938 218.554688 126.84375 Z M 218.554688 126.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.152344 129.132812 C 214.152344 129.015625 214.058594 128.921875 213.941406 128.921875 C 213.824219 128.921875 213.730469 129.015625 213.730469 129.132812 C 213.730469 129.25 213.824219 129.34375 213.941406 129.34375 C 214.058594 129.34375 214.152344 129.25 214.152344 129.132812 Z M 214.152344 129.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.324219 127.839844 C 215.324219 127.722656 215.230469 127.628906 215.113281 127.628906 C 214.996094 127.628906 214.902344 127.722656 214.902344 127.839844 C 214.902344 127.957031 214.996094 128.050781 215.113281 128.050781 C 215.230469 128.050781 215.324219 127.957031 215.324219 127.839844 Z M 215.324219 127.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.625 131.722656 C 216.625 131.605469 216.53125 131.511719 216.414062 131.511719 C 216.296875 131.511719 216.203125 131.605469 216.203125 131.722656 C 216.203125 131.839844 216.296875 131.933594 216.414062 131.933594 C 216.53125 131.933594 216.625 131.839844 216.625 131.722656 Z M 216.625 131.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.421875 132.214844 C 215.421875 132.097656 215.328125 132.003906 215.210938 132.003906 C 215.09375 132.003906 215 132.097656 215 132.214844 C 215 132.332031 215.09375 132.425781 215.210938 132.425781 C 215.328125 132.425781 215.421875 132.332031 215.421875 132.214844 Z M 215.421875 132.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.132812 135.425781 C 215.132812 135.308594 215.039062 135.214844 214.921875 135.214844 C 214.804688 135.214844 214.710938 135.308594 214.710938 135.425781 C 214.710938 135.542969 214.804688 135.636719 214.921875 135.636719 C 215.039062 135.636719 215.132812 135.542969 215.132812 135.425781 Z M 215.132812 135.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.03125 133.910156 C 214.03125 133.792969 213.9375 133.699219 213.820312 133.699219 C 213.703125 133.699219 213.609375 133.792969 213.609375 133.910156 C 213.609375 134.027344 213.703125 134.121094 213.820312 134.121094 C 213.9375 134.121094 214.03125 134.027344 214.03125 133.910156 Z M 214.03125 133.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.863281 133.621094 C 206.863281 133.503906 206.769531 133.410156 206.652344 133.410156 C 206.535156 133.410156 206.441406 133.503906 206.441406 133.621094 C 206.441406 133.738281 206.535156 133.832031 206.652344 133.832031 C 206.769531 133.832031 206.863281 133.738281 206.863281 133.621094 Z M 206.863281 133.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.417969 135.109375 C 206.417969 134.992188 206.324219 134.898438 206.207031 134.898438 C 206.089844 134.898438 205.996094 134.992188 205.996094 135.109375 C 205.996094 135.226562 206.089844 135.320312 206.207031 135.320312 C 206.324219 135.320312 206.417969 135.226562 206.417969 135.109375 Z M 206.417969 135.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.203125 136.265625 C 207.203125 136.148438 207.109375 136.054688 206.992188 136.054688 C 206.875 136.054688 206.78125 136.148438 206.78125 136.265625 C 206.78125 136.382812 206.875 136.476562 206.992188 136.476562 C 207.109375 136.476562 207.203125 136.382812 207.203125 136.265625 Z M 207.203125 136.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.558594 136.359375 C 208.558594 136.242188 208.464844 136.148438 208.347656 136.148438 C 208.230469 136.148438 208.136719 136.242188 208.136719 136.359375 C 208.136719 136.476562 208.230469 136.570312 208.347656 136.570312 C 208.464844 136.570312 208.558594 136.476562 208.558594 136.359375 Z M 208.558594 136.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.3125 131.007812 C 207.3125 130.890625 207.21875 130.796875 207.101562 130.796875 C 206.984375 130.796875 206.890625 130.890625 206.890625 131.007812 C 206.890625 131.125 206.984375 131.21875 207.101562 131.21875 C 207.21875 131.21875 207.3125 131.125 207.3125 131.007812 Z M 207.3125 131.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.992188 129.367188 C 205.992188 129.25 205.898438 129.15625 205.78125 129.15625 C 205.664062 129.15625 205.570312 129.25 205.570312 129.367188 C 205.570312 129.484375 205.664062 129.578125 205.78125 129.578125 C 205.898438 129.578125 205.992188 129.484375 205.992188 129.367188 Z M 205.992188 129.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.019531 125.523438 C 207.019531 125.40625 206.925781 125.3125 206.808594 125.3125 C 206.691406 125.3125 206.597656 125.40625 206.597656 125.523438 C 206.597656 125.640625 206.691406 125.734375 206.808594 125.734375 C 206.925781 125.734375 207.019531 125.640625 207.019531 125.523438 Z M 207.019531 125.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.117188 124.925781 C 208.117188 124.808594 208.023438 124.714844 207.90625 124.714844 C 207.789062 124.714844 207.695312 124.808594 207.695312 124.925781 C 207.695312 125.042969 207.789062 125.136719 207.90625 125.136719 C 208.023438 125.136719 208.117188 125.042969 208.117188 124.925781 Z M 208.117188 124.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.257812 123.246094 C 206.257812 123.128906 206.164062 123.035156 206.046875 123.035156 C 205.929688 123.035156 205.835938 123.128906 205.835938 123.246094 C 205.835938 123.363281 205.929688 123.457031 206.046875 123.457031 C 206.164062 123.457031 206.257812 123.363281 206.257812 123.246094 Z M 206.257812 123.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.589844 121.09375 C 206.589844 120.976562 206.496094 120.882812 206.378906 120.882812 C 206.261719 120.882812 206.167969 120.976562 206.167969 121.09375 C 206.167969 121.210938 206.261719 121.304688 206.378906 121.304688 C 206.496094 121.304688 206.589844 121.210938 206.589844 121.09375 Z M 206.589844 121.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.597656 120.265625 C 205.597656 120.148438 205.503906 120.054688 205.386719 120.054688 C 205.269531 120.054688 205.175781 120.148438 205.175781 120.265625 C 205.175781 120.382812 205.269531 120.476562 205.386719 120.476562 C 205.503906 120.476562 205.597656 120.382812 205.597656 120.265625 Z M 205.597656 120.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.699219 119.636719 C 203.699219 119.519531 203.605469 119.425781 203.488281 119.425781 C 203.371094 119.425781 203.277344 119.519531 203.277344 119.636719 C 203.277344 119.753906 203.371094 119.847656 203.488281 119.847656 C 203.605469 119.847656 203.699219 119.753906 203.699219 119.636719 Z M 203.699219 119.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.785156 121.097656 C 203.785156 120.980469 203.691406 120.886719 203.574219 120.886719 C 203.457031 120.886719 203.363281 120.980469 203.363281 121.097656 C 203.363281 121.214844 203.457031 121.308594 203.574219 121.308594 C 203.691406 121.308594 203.785156 121.214844 203.785156 121.097656 Z M 203.785156 121.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.632812 120.117188 C 203.632812 120 203.539062 119.90625 203.421875 119.90625 C 203.304688 119.90625 203.210938 120 203.210938 120.117188 C 203.210938 120.234375 203.304688 120.328125 203.421875 120.328125 C 203.539062 120.328125 203.632812 120.234375 203.632812 120.117188 Z M 203.632812 120.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.800781 121.171875 C 203.800781 121.054688 203.707031 120.960938 203.589844 120.960938 C 203.472656 120.960938 203.378906 121.054688 203.378906 121.171875 C 203.378906 121.289062 203.472656 121.382812 203.589844 121.382812 C 203.707031 121.382812 203.800781 121.289062 203.800781 121.171875 Z M 203.800781 121.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.722656 119.238281 C 205.722656 119.121094 205.628906 119.027344 205.511719 119.027344 C 205.394531 119.027344 205.300781 119.121094 205.300781 119.238281 C 205.300781 119.355469 205.394531 119.449219 205.511719 119.449219 C 205.628906 119.449219 205.722656 119.355469 205.722656 119.238281 Z M 205.722656 119.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.222656 117.414062 C 205.222656 117.296875 205.128906 117.203125 205.011719 117.203125 C 204.894531 117.203125 204.800781 117.296875 204.800781 117.414062 C 204.800781 117.53125 204.894531 117.625 205.011719 117.625 C 205.128906 117.625 205.222656 117.53125 205.222656 117.414062 Z M 205.222656 117.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.730469 116.742188 C 206.730469 116.625 206.636719 116.53125 206.519531 116.53125 C 206.402344 116.53125 206.308594 116.625 206.308594 116.742188 C 206.308594 116.859375 206.402344 116.953125 206.519531 116.953125 C 206.636719 116.953125 206.730469 116.859375 206.730469 116.742188 Z M 206.730469 116.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.472656 116.460938 C 207.472656 116.34375 207.378906 116.25 207.261719 116.25 C 207.144531 116.25 207.050781 116.34375 207.050781 116.460938 C 207.050781 116.578125 207.144531 116.671875 207.261719 116.671875 C 207.378906 116.671875 207.472656 116.578125 207.472656 116.460938 Z M 207.472656 116.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.445312 117.59375 C 207.445312 117.476562 207.351562 117.382812 207.234375 117.382812 C 207.117188 117.382812 207.023438 117.476562 207.023438 117.59375 C 207.023438 117.710938 207.117188 117.804688 207.234375 117.804688 C 207.351562 117.804688 207.445312 117.710938 207.445312 117.59375 Z M 207.445312 117.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.898438 116.757812 C 203.898438 116.640625 203.804688 116.546875 203.6875 116.546875 C 203.570312 116.546875 203.476562 116.640625 203.476562 116.757812 C 203.476562 116.875 203.570312 116.96875 203.6875 116.96875 C 203.804688 116.96875 203.898438 116.875 203.898438 116.757812 Z M 203.898438 116.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.113281 115.902344 C 204.113281 115.785156 204.019531 115.691406 203.902344 115.691406 C 203.785156 115.691406 203.691406 115.785156 203.691406 115.902344 C 203.691406 116.019531 203.785156 116.113281 203.902344 116.113281 C 204.019531 116.113281 204.113281 116.019531 204.113281 115.902344 Z M 204.113281 115.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.417969 115.058594 C 203.417969 114.941406 203.324219 114.847656 203.207031 114.847656 C 203.089844 114.847656 202.996094 114.941406 202.996094 115.058594 C 202.996094 115.175781 203.089844 115.269531 203.207031 115.269531 C 203.324219 115.269531 203.417969 115.175781 203.417969 115.058594 Z M 203.417969 115.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.03125 114.6875 C 203.03125 114.570312 202.9375 114.476562 202.820312 114.476562 C 202.703125 114.476562 202.609375 114.570312 202.609375 114.6875 C 202.609375 114.804688 202.703125 114.898438 202.820312 114.898438 C 202.9375 114.898438 203.03125 114.804688 203.03125 114.6875 Z M 203.03125 114.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.300781 114.941406 C 202.300781 114.824219 202.207031 114.730469 202.089844 114.730469 C 201.972656 114.730469 201.878906 114.824219 201.878906 114.941406 C 201.878906 115.058594 201.972656 115.152344 202.089844 115.152344 C 202.207031 115.152344 202.300781 115.058594 202.300781 114.941406 Z M 202.300781 114.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.136719 114.285156 C 207.136719 114.167969 207.042969 114.074219 206.925781 114.074219 C 206.808594 114.074219 206.714844 114.167969 206.714844 114.285156 C 206.714844 114.402344 206.808594 114.496094 206.925781 114.496094 C 207.042969 114.496094 207.136719 114.402344 207.136719 114.285156 Z M 207.136719 114.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.0625 112.269531 C 204.0625 112.152344 203.96875 112.058594 203.851562 112.058594 C 203.734375 112.058594 203.640625 112.152344 203.640625 112.269531 C 203.640625 112.386719 203.734375 112.480469 203.851562 112.480469 C 203.96875 112.480469 204.0625 112.386719 204.0625 112.269531 Z M 204.0625 112.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.457031 111.023438 C 204.457031 110.90625 204.363281 110.8125 204.246094 110.8125 C 204.128906 110.8125 204.035156 110.90625 204.035156 111.023438 C 204.035156 111.140625 204.128906 111.234375 204.246094 111.234375 C 204.363281 111.234375 204.457031 111.140625 204.457031 111.023438 Z M 204.457031 111.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.105469 110.714844 C 205.105469 110.597656 205.011719 110.503906 204.894531 110.503906 C 204.777344 110.503906 204.683594 110.597656 204.683594 110.714844 C 204.683594 110.832031 204.777344 110.925781 204.894531 110.925781 C 205.011719 110.925781 205.105469 110.832031 205.105469 110.714844 Z M 205.105469 110.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.75 107.730469 C 202.75 107.613281 202.65625 107.519531 202.539062 107.519531 C 202.421875 107.519531 202.328125 107.613281 202.328125 107.730469 C 202.328125 107.847656 202.421875 107.941406 202.539062 107.941406 C 202.65625 107.941406 202.75 107.847656 202.75 107.730469 Z M 202.75 107.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.964844 110.15625 C 201.964844 110.039062 201.871094 109.945312 201.753906 109.945312 C 201.636719 109.945312 201.542969 110.039062 201.542969 110.15625 C 201.542969 110.273438 201.636719 110.367188 201.753906 110.367188 C 201.871094 110.367188 201.964844 110.273438 201.964844 110.15625 Z M 201.964844 110.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.855469 114.113281 C 206.855469 113.996094 206.761719 113.902344 206.644531 113.902344 C 206.527344 113.902344 206.433594 113.996094 206.433594 114.113281 C 206.433594 114.230469 206.527344 114.324219 206.644531 114.324219 C 206.761719 114.324219 206.855469 114.230469 206.855469 114.113281 Z M 206.855469 114.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209 112.34375 C 209 112.226562 208.90625 112.132812 208.789062 112.132812 C 208.671875 112.132812 208.578125 112.226562 208.578125 112.34375 C 208.578125 112.460938 208.671875 112.554688 208.789062 112.554688 C 208.90625 112.554688 209 112.460938 209 112.34375 Z M 209 112.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.109375 110.175781 C 207.109375 110.058594 207.015625 109.964844 206.898438 109.964844 C 206.78125 109.964844 206.6875 110.058594 206.6875 110.175781 C 206.6875 110.292969 206.78125 110.386719 206.898438 110.386719 C 207.015625 110.386719 207.109375 110.292969 207.109375 110.175781 Z M 207.109375 110.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.226562 108.941406 C 204.226562 108.824219 204.132812 108.730469 204.015625 108.730469 C 203.898438 108.730469 203.804688 108.824219 203.804688 108.941406 C 203.804688 109.058594 203.898438 109.152344 204.015625 109.152344 C 204.132812 109.152344 204.226562 109.058594 204.226562 108.941406 Z M 204.226562 108.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.527344 110.695312 C 206.527344 110.578125 206.433594 110.484375 206.316406 110.484375 C 206.199219 110.484375 206.105469 110.578125 206.105469 110.695312 C 206.105469 110.8125 206.199219 110.90625 206.316406 110.90625 C 206.433594 110.90625 206.527344 110.8125 206.527344 110.695312 Z M 206.527344 110.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.800781 109.777344 C 207.800781 109.660156 207.707031 109.566406 207.589844 109.566406 C 207.472656 109.566406 207.378906 109.660156 207.378906 109.777344 C 207.378906 109.894531 207.472656 109.988281 207.589844 109.988281 C 207.707031 109.988281 207.800781 109.894531 207.800781 109.777344 Z M 207.800781 109.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.59375 106.648438 C 208.59375 106.53125 208.5 106.4375 208.382812 106.4375 C 208.265625 106.4375 208.171875 106.53125 208.171875 106.648438 C 208.171875 106.765625 208.265625 106.859375 208.382812 106.859375 C 208.5 106.859375 208.59375 106.765625 208.59375 106.648438 Z M 208.59375 106.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.753906 104.78125 C 208.753906 104.664062 208.660156 104.570312 208.542969 104.570312 C 208.425781 104.570312 208.332031 104.664062 208.332031 104.78125 C 208.332031 104.898438 208.425781 104.992188 208.542969 104.992188 C 208.660156 104.992188 208.753906 104.898438 208.753906 104.78125 Z M 208.753906 104.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.414062 102.675781 C 204.414062 102.558594 204.320312 102.464844 204.203125 102.464844 C 204.085938 102.464844 203.992188 102.558594 203.992188 102.675781 C 203.992188 102.792969 204.085938 102.886719 204.203125 102.886719 C 204.320312 102.886719 204.414062 102.792969 204.414062 102.675781 Z M 204.414062 102.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.113281 100.941406 C 205.113281 100.824219 205.019531 100.730469 204.902344 100.730469 C 204.785156 100.730469 204.691406 100.824219 204.691406 100.941406 C 204.691406 101.058594 204.785156 101.152344 204.902344 101.152344 C 205.019531 101.152344 205.113281 101.058594 205.113281 100.941406 Z M 205.113281 100.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.816406 98.113281 C 204.816406 97.996094 204.722656 97.902344 204.605469 97.902344 C 204.488281 97.902344 204.394531 97.996094 204.394531 98.113281 C 204.394531 98.230469 204.488281 98.324219 204.605469 98.324219 C 204.722656 98.324219 204.816406 98.230469 204.816406 98.113281 Z M 204.816406 98.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.140625 96.5625 C 206.140625 96.445312 206.046875 96.351562 205.929688 96.351562 C 205.8125 96.351562 205.71875 96.445312 205.71875 96.5625 C 205.71875 96.679688 205.8125 96.773438 205.929688 96.773438 C 206.046875 96.773438 206.140625 96.679688 206.140625 96.5625 Z M 206.140625 96.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.734375 97.273438 C 209.734375 97.15625 209.640625 97.0625 209.523438 97.0625 C 209.40625 97.0625 209.3125 97.15625 209.3125 97.273438 C 209.3125 97.390625 209.40625 97.484375 209.523438 97.484375 C 209.640625 97.484375 209.734375 97.390625 209.734375 97.273438 Z M 209.734375 97.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.195312 102.277344 C 210.195312 102.160156 210.101562 102.066406 209.984375 102.066406 C 209.867188 102.066406 209.773438 102.160156 209.773438 102.277344 C 209.773438 102.394531 209.867188 102.488281 209.984375 102.488281 C 210.101562 102.488281 210.195312 102.394531 210.195312 102.277344 Z M 210.195312 102.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.929688 102.015625 C 210.929688 101.898438 210.835938 101.804688 210.71875 101.804688 C 210.601562 101.804688 210.507812 101.898438 210.507812 102.015625 C 210.507812 102.132812 210.601562 102.226562 210.71875 102.226562 C 210.835938 102.226562 210.929688 102.132812 210.929688 102.015625 Z M 210.929688 102.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.652344 100.828125 C 212.652344 100.710938 212.558594 100.617188 212.441406 100.617188 C 212.324219 100.617188 212.230469 100.710938 212.230469 100.828125 C 212.230469 100.945312 212.324219 101.039062 212.441406 101.039062 C 212.558594 101.039062 212.652344 100.945312 212.652344 100.828125 Z M 212.652344 100.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.199219 102.003906 C 212.199219 101.886719 212.105469 101.792969 211.988281 101.792969 C 211.871094 101.792969 211.777344 101.886719 211.777344 102.003906 C 211.777344 102.121094 211.871094 102.214844 211.988281 102.214844 C 212.105469 102.214844 212.199219 102.121094 212.199219 102.003906 Z M 212.199219 102.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.117188 103.894531 C 214.117188 103.777344 214.023438 103.683594 213.90625 103.683594 C 213.789062 103.683594 213.695312 103.777344 213.695312 103.894531 C 213.695312 104.011719 213.789062 104.105469 213.90625 104.105469 C 214.023438 104.105469 214.117188 104.011719 214.117188 103.894531 Z M 214.117188 103.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.992188 102.066406 C 213.992188 101.949219 213.898438 101.855469 213.78125 101.855469 C 213.664062 101.855469 213.570312 101.949219 213.570312 102.066406 C 213.570312 102.183594 213.664062 102.277344 213.78125 102.277344 C 213.898438 102.277344 213.992188 102.183594 213.992188 102.066406 Z M 213.992188 102.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.492188 98.097656 C 210.492188 97.980469 210.398438 97.886719 210.28125 97.886719 C 210.164062 97.886719 210.070312 97.980469 210.070312 98.097656 C 210.070312 98.214844 210.164062 98.308594 210.28125 98.308594 C 210.398438 98.308594 210.492188 98.214844 210.492188 98.097656 Z M 210.492188 98.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.390625 99.5 C 210.390625 99.382812 210.296875 99.289062 210.179688 99.289062 C 210.0625 99.289062 209.96875 99.382812 209.96875 99.5 C 209.96875 99.617188 210.0625 99.710938 210.179688 99.710938 C 210.296875 99.710938 210.390625 99.617188 210.390625 99.5 Z M 210.390625 99.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.523438 104.921875 C 204.523438 104.804688 204.429688 104.710938 204.3125 104.710938 C 204.195312 104.710938 204.101562 104.804688 204.101562 104.921875 C 204.101562 105.039062 204.195312 105.132812 204.3125 105.132812 C 204.429688 105.132812 204.523438 105.039062 204.523438 104.921875 Z M 204.523438 104.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.121094 105.078125 C 202.121094 104.960938 202.027344 104.867188 201.910156 104.867188 C 201.792969 104.867188 201.699219 104.960938 201.699219 105.078125 C 201.699219 105.195312 201.792969 105.289062 201.910156 105.289062 C 202.027344 105.289062 202.121094 105.195312 202.121094 105.078125 Z M 202.121094 105.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.742188 105.472656 C 202.742188 105.355469 202.648438 105.261719 202.53125 105.261719 C 202.414062 105.261719 202.320312 105.355469 202.320312 105.472656 C 202.320312 105.589844 202.414062 105.683594 202.53125 105.683594 C 202.648438 105.683594 202.742188 105.589844 202.742188 105.472656 Z M 202.742188 105.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.105469 106.53125 C 207.105469 106.414062 207.011719 106.320312 206.894531 106.320312 C 206.777344 106.320312 206.683594 106.414062 206.683594 106.53125 C 206.683594 106.648438 206.777344 106.742188 206.894531 106.742188 C 207.011719 106.742188 207.105469 106.648438 207.105469 106.53125 Z M 207.105469 106.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.566406 103.023438 C 209.566406 102.90625 209.472656 102.8125 209.355469 102.8125 C 209.238281 102.8125 209.144531 102.90625 209.144531 103.023438 C 209.144531 103.140625 209.238281 103.234375 209.355469 103.234375 C 209.472656 103.234375 209.566406 103.140625 209.566406 103.023438 Z M 209.566406 103.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.726562 103.453125 C 209.726562 103.335938 209.632812 103.242188 209.515625 103.242188 C 209.398438 103.242188 209.304688 103.335938 209.304688 103.453125 C 209.304688 103.570312 209.398438 103.664062 209.515625 103.664062 C 209.632812 103.664062 209.726562 103.570312 209.726562 103.453125 Z M 209.726562 103.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.875 99.664062 C 210.875 99.546875 210.78125 99.453125 210.664062 99.453125 C 210.546875 99.453125 210.453125 99.546875 210.453125 99.664062 C 210.453125 99.78125 210.546875 99.875 210.664062 99.875 C 210.78125 99.875 210.875 99.78125 210.875 99.664062 Z M 210.875 99.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.03125 98.902344 C 213.03125 98.785156 212.9375 98.691406 212.820312 98.691406 C 212.703125 98.691406 212.609375 98.785156 212.609375 98.902344 C 212.609375 99.019531 212.703125 99.113281 212.820312 99.113281 C 212.9375 99.113281 213.03125 99.019531 213.03125 98.902344 Z M 213.03125 98.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.824219 97.75 C 214.824219 97.632812 214.730469 97.539062 214.613281 97.539062 C 214.496094 97.539062 214.402344 97.632812 214.402344 97.75 C 214.402344 97.867188 214.496094 97.960938 214.613281 97.960938 C 214.730469 97.960938 214.824219 97.867188 214.824219 97.75 Z M 214.824219 97.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.164062 97.816406 C 214.164062 97.699219 214.070312 97.605469 213.953125 97.605469 C 213.835938 97.605469 213.742188 97.699219 213.742188 97.816406 C 213.742188 97.933594 213.835938 98.027344 213.953125 98.027344 C 214.070312 98.027344 214.164062 97.933594 214.164062 97.816406 Z M 214.164062 97.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.464844 99.855469 C 214.464844 99.738281 214.371094 99.644531 214.253906 99.644531 C 214.136719 99.644531 214.042969 99.738281 214.042969 99.855469 C 214.042969 99.972656 214.136719 100.066406 214.253906 100.066406 C 214.371094 100.066406 214.464844 99.972656 214.464844 99.855469 Z M 214.464844 99.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.277344 101.398438 C 213.277344 101.28125 213.183594 101.1875 213.066406 101.1875 C 212.949219 101.1875 212.855469 101.28125 212.855469 101.398438 C 212.855469 101.515625 212.949219 101.609375 213.066406 101.609375 C 213.183594 101.609375 213.277344 101.515625 213.277344 101.398438 Z M 213.277344 101.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.789062 96.226562 C 214.789062 96.109375 214.695312 96.015625 214.578125 96.015625 C 214.460938 96.015625 214.367188 96.109375 214.367188 96.226562 C 214.367188 96.34375 214.460938 96.4375 214.578125 96.4375 C 214.695312 96.4375 214.789062 96.34375 214.789062 96.226562 Z M 214.789062 96.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.871094 96.535156 C 212.871094 96.417969 212.777344 96.324219 212.660156 96.324219 C 212.542969 96.324219 212.449219 96.417969 212.449219 96.535156 C 212.449219 96.652344 212.542969 96.746094 212.660156 96.746094 C 212.777344 96.746094 212.871094 96.652344 212.871094 96.535156 Z M 212.871094 96.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.515625 95.371094 C 211.515625 95.253906 211.421875 95.160156 211.304688 95.160156 C 211.1875 95.160156 211.09375 95.253906 211.09375 95.371094 C 211.09375 95.488281 211.1875 95.582031 211.304688 95.582031 C 211.421875 95.582031 211.515625 95.488281 211.515625 95.371094 Z M 211.515625 95.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.898438 96.855469 C 208.898438 96.738281 208.804688 96.644531 208.6875 96.644531 C 208.570312 96.644531 208.476562 96.738281 208.476562 96.855469 C 208.476562 96.972656 208.570312 97.066406 208.6875 97.066406 C 208.804688 97.066406 208.898438 96.972656 208.898438 96.855469 Z M 208.898438 96.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.011719 98.308594 C 206.011719 98.191406 205.917969 98.097656 205.800781 98.097656 C 205.683594 98.097656 205.589844 98.191406 205.589844 98.308594 C 205.589844 98.425781 205.683594 98.519531 205.800781 98.519531 C 205.917969 98.519531 206.011719 98.425781 206.011719 98.308594 Z M 206.011719 98.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.347656 98.152344 C 206.347656 98.035156 206.253906 97.941406 206.136719 97.941406 C 206.019531 97.941406 205.925781 98.035156 205.925781 98.152344 C 205.925781 98.269531 206.019531 98.363281 206.136719 98.363281 C 206.253906 98.363281 206.347656 98.269531 206.347656 98.152344 Z M 206.347656 98.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.222656 97.410156 C 209.222656 97.292969 209.128906 97.199219 209.011719 97.199219 C 208.894531 97.199219 208.800781 97.292969 208.800781 97.410156 C 208.800781 97.527344 208.894531 97.621094 209.011719 97.621094 C 209.128906 97.621094 209.222656 97.527344 209.222656 97.410156 Z M 209.222656 97.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.867188 100.253906 C 209.867188 100.136719 209.773438 100.042969 209.65625 100.042969 C 209.539062 100.042969 209.445312 100.136719 209.445312 100.253906 C 209.445312 100.371094 209.539062 100.464844 209.65625 100.464844 C 209.773438 100.464844 209.867188 100.371094 209.867188 100.253906 Z M 209.867188 100.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.1875 100.945312 C 211.1875 100.828125 211.09375 100.734375 210.976562 100.734375 C 210.859375 100.734375 210.765625 100.828125 210.765625 100.945312 C 210.765625 101.0625 210.859375 101.15625 210.976562 101.15625 C 211.09375 101.15625 211.1875 101.0625 211.1875 100.945312 Z M 211.1875 100.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.085938 105.261719 C 212.085938 105.144531 211.992188 105.050781 211.875 105.050781 C 211.757812 105.050781 211.664062 105.144531 211.664062 105.261719 C 211.664062 105.378906 211.757812 105.472656 211.875 105.472656 C 211.992188 105.472656 212.085938 105.378906 212.085938 105.261719 Z M 212.085938 105.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.101562 105.414062 C 211.101562 105.296875 211.007812 105.203125 210.890625 105.203125 C 210.773438 105.203125 210.679688 105.296875 210.679688 105.414062 C 210.679688 105.53125 210.773438 105.625 210.890625 105.625 C 211.007812 105.625 211.101562 105.53125 211.101562 105.414062 Z M 211.101562 105.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.65625 108.945312 C 210.65625 108.828125 210.5625 108.734375 210.445312 108.734375 C 210.328125 108.734375 210.234375 108.828125 210.234375 108.945312 C 210.234375 109.0625 210.328125 109.15625 210.445312 109.15625 C 210.5625 109.15625 210.65625 109.0625 210.65625 108.945312 Z M 210.65625 108.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.558594 111.160156 C 209.558594 111.042969 209.464844 110.949219 209.347656 110.949219 C 209.230469 110.949219 209.136719 111.042969 209.136719 111.160156 C 209.136719 111.277344 209.230469 111.371094 209.347656 111.371094 C 209.464844 111.371094 209.558594 111.277344 209.558594 111.160156 Z M 209.558594 111.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.261719 109.351562 C 206.261719 109.234375 206.167969 109.140625 206.050781 109.140625 C 205.933594 109.140625 205.839844 109.234375 205.839844 109.351562 C 205.839844 109.46875 205.933594 109.5625 206.050781 109.5625 C 206.167969 109.5625 206.261719 109.46875 206.261719 109.351562 Z M 206.261719 109.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.574219 109.796875 C 206.574219 109.679688 206.480469 109.585938 206.363281 109.585938 C 206.246094 109.585938 206.152344 109.679688 206.152344 109.796875 C 206.152344 109.914062 206.246094 110.007812 206.363281 110.007812 C 206.480469 110.007812 206.574219 109.914062 206.574219 109.796875 Z M 206.574219 109.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.566406 110.648438 C 205.566406 110.53125 205.472656 110.4375 205.355469 110.4375 C 205.238281 110.4375 205.144531 110.53125 205.144531 110.648438 C 205.144531 110.765625 205.238281 110.859375 205.355469 110.859375 C 205.472656 110.859375 205.566406 110.765625 205.566406 110.648438 Z M 205.566406 110.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.71875 111.050781 C 205.71875 110.933594 205.625 110.839844 205.507812 110.839844 C 205.390625 110.839844 205.296875 110.933594 205.296875 111.050781 C 205.296875 111.167969 205.390625 111.261719 205.507812 111.261719 C 205.625 111.261719 205.71875 111.167969 205.71875 111.050781 Z M 205.71875 111.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.707031 112.414062 C 202.707031 112.296875 202.613281 112.203125 202.496094 112.203125 C 202.378906 112.203125 202.285156 112.296875 202.285156 112.414062 C 202.285156 112.53125 202.378906 112.625 202.496094 112.625 C 202.613281 112.625 202.707031 112.53125 202.707031 112.414062 Z M 202.707031 112.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.398438 113.347656 C 200.398438 113.230469 200.304688 113.136719 200.1875 113.136719 C 200.070312 113.136719 199.976562 113.230469 199.976562 113.347656 C 199.976562 113.464844 200.070312 113.558594 200.1875 113.558594 C 200.304688 113.558594 200.398438 113.464844 200.398438 113.347656 Z M 200.398438 113.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.242188 115.820312 C 201.242188 115.703125 201.148438 115.609375 201.03125 115.609375 C 200.914062 115.609375 200.820312 115.703125 200.820312 115.820312 C 200.820312 115.9375 200.914062 116.03125 201.03125 116.03125 C 201.148438 116.03125 201.242188 115.9375 201.242188 115.820312 Z M 201.242188 115.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.457031 119.082031 C 202.457031 118.964844 202.363281 118.871094 202.246094 118.871094 C 202.128906 118.871094 202.035156 118.964844 202.035156 119.082031 C 202.035156 119.199219 202.128906 119.292969 202.246094 119.292969 C 202.363281 119.292969 202.457031 119.199219 202.457031 119.082031 Z M 202.457031 119.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.160156 120.769531 C 202.160156 120.652344 202.066406 120.558594 201.949219 120.558594 C 201.832031 120.558594 201.738281 120.652344 201.738281 120.769531 C 201.738281 120.886719 201.832031 120.980469 201.949219 120.980469 C 202.066406 120.980469 202.160156 120.886719 202.160156 120.769531 Z M 202.160156 120.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.796875 122.152344 C 198.796875 122.035156 198.703125 121.941406 198.585938 121.941406 C 198.46875 121.941406 198.375 122.035156 198.375 122.152344 C 198.375 122.269531 198.46875 122.363281 198.585938 122.363281 C 198.703125 122.363281 198.796875 122.269531 198.796875 122.152344 Z M 198.796875 122.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.957031 118.363281 C 200.957031 118.246094 200.863281 118.152344 200.746094 118.152344 C 200.628906 118.152344 200.535156 118.246094 200.535156 118.363281 C 200.535156 118.480469 200.628906 118.574219 200.746094 118.574219 C 200.863281 118.574219 200.957031 118.480469 200.957031 118.363281 Z M 200.957031 118.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.613281 120.964844 C 203.613281 120.847656 203.519531 120.753906 203.402344 120.753906 C 203.285156 120.753906 203.191406 120.847656 203.191406 120.964844 C 203.191406 121.082031 203.285156 121.175781 203.402344 121.175781 C 203.519531 121.175781 203.613281 121.082031 203.613281 120.964844 Z M 203.613281 120.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.324219 124.679688 C 204.324219 124.5625 204.230469 124.46875 204.113281 124.46875 C 203.996094 124.46875 203.902344 124.5625 203.902344 124.679688 C 203.902344 124.796875 203.996094 124.890625 204.113281 124.890625 C 204.230469 124.890625 204.324219 124.796875 204.324219 124.679688 Z M 204.324219 124.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.78125 124.945312 C 203.78125 124.828125 203.6875 124.734375 203.570312 124.734375 C 203.453125 124.734375 203.359375 124.828125 203.359375 124.945312 C 203.359375 125.0625 203.453125 125.15625 203.570312 125.15625 C 203.6875 125.15625 203.78125 125.0625 203.78125 124.945312 Z M 203.78125 124.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.632812 123.28125 C 202.632812 123.164062 202.539062 123.070312 202.421875 123.070312 C 202.304688 123.070312 202.210938 123.164062 202.210938 123.28125 C 202.210938 123.398438 202.304688 123.492188 202.421875 123.492188 C 202.539062 123.492188 202.632812 123.398438 202.632812 123.28125 Z M 202.632812 123.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.5625 120.402344 C 202.5625 120.285156 202.46875 120.191406 202.351562 120.191406 C 202.234375 120.191406 202.140625 120.285156 202.140625 120.402344 C 202.140625 120.519531 202.234375 120.613281 202.351562 120.613281 C 202.46875 120.613281 202.5625 120.519531 202.5625 120.402344 Z M 202.5625 120.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.335938 119.511719 C 202.335938 119.394531 202.242188 119.300781 202.125 119.300781 C 202.007812 119.300781 201.914062 119.394531 201.914062 119.511719 C 201.914062 119.628906 202.007812 119.722656 202.125 119.722656 C 202.242188 119.722656 202.335938 119.628906 202.335938 119.511719 Z M 202.335938 119.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.140625 118.515625 C 200.140625 118.398438 200.046875 118.304688 199.929688 118.304688 C 199.8125 118.304688 199.71875 118.398438 199.71875 118.515625 C 199.71875 118.632812 199.8125 118.726562 199.929688 118.726562 C 200.046875 118.726562 200.140625 118.632812 200.140625 118.515625 Z M 200.140625 118.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.214844 114.722656 C 199.214844 114.605469 199.121094 114.511719 199.003906 114.511719 C 198.886719 114.511719 198.792969 114.605469 198.792969 114.722656 C 198.792969 114.839844 198.886719 114.933594 199.003906 114.933594 C 199.121094 114.933594 199.214844 114.839844 199.214844 114.722656 Z M 199.214844 114.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.378906 111.699219 C 199.378906 111.582031 199.285156 111.488281 199.167969 111.488281 C 199.050781 111.488281 198.957031 111.582031 198.957031 111.699219 C 198.957031 111.816406 199.050781 111.910156 199.167969 111.910156 C 199.285156 111.910156 199.378906 111.816406 199.378906 111.699219 Z M 199.378906 111.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.484375 113.363281 C 199.484375 113.246094 199.390625 113.152344 199.273438 113.152344 C 199.15625 113.152344 199.0625 113.246094 199.0625 113.363281 C 199.0625 113.480469 199.15625 113.574219 199.273438 113.574219 C 199.390625 113.574219 199.484375 113.480469 199.484375 113.363281 Z M 199.484375 113.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.972656 113.464844 C 198.972656 113.347656 198.878906 113.253906 198.761719 113.253906 C 198.644531 113.253906 198.550781 113.347656 198.550781 113.464844 C 198.550781 113.582031 198.644531 113.675781 198.761719 113.675781 C 198.878906 113.675781 198.972656 113.582031 198.972656 113.464844 Z M 198.972656 113.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.609375 113.34375 C 200.609375 113.226562 200.515625 113.132812 200.398438 113.132812 C 200.28125 113.132812 200.1875 113.226562 200.1875 113.34375 C 200.1875 113.460938 200.28125 113.554688 200.398438 113.554688 C 200.515625 113.554688 200.609375 113.460938 200.609375 113.34375 Z M 200.609375 113.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.414062 116.28125 C 201.414062 116.164062 201.320312 116.070312 201.203125 116.070312 C 201.085938 116.070312 200.992188 116.164062 200.992188 116.28125 C 200.992188 116.398438 201.085938 116.492188 201.203125 116.492188 C 201.320312 116.492188 201.414062 116.398438 201.414062 116.28125 Z M 201.414062 116.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.089844 115.453125 C 200.089844 115.335938 199.996094 115.242188 199.878906 115.242188 C 199.761719 115.242188 199.667969 115.335938 199.667969 115.453125 C 199.667969 115.570312 199.761719 115.664062 199.878906 115.664062 C 199.996094 115.664062 200.089844 115.570312 200.089844 115.453125 Z M 200.089844 115.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.167969 115.085938 C 200.167969 114.96875 200.074219 114.875 199.957031 114.875 C 199.839844 114.875 199.746094 114.96875 199.746094 115.085938 C 199.746094 115.203125 199.839844 115.296875 199.957031 115.296875 C 200.074219 115.296875 200.167969 115.203125 200.167969 115.085938 Z M 200.167969 115.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.578125 117.203125 C 201.578125 117.085938 201.484375 116.992188 201.367188 116.992188 C 201.25 116.992188 201.15625 117.085938 201.15625 117.203125 C 201.15625 117.320312 201.25 117.414062 201.367188 117.414062 C 201.484375 117.414062 201.578125 117.320312 201.578125 117.203125 Z M 201.578125 117.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.257812 118.1875 C 202.257812 118.070312 202.164062 117.976562 202.046875 117.976562 C 201.929688 117.976562 201.835938 118.070312 201.835938 118.1875 C 201.835938 118.304688 201.929688 118.398438 202.046875 118.398438 C 202.164062 118.398438 202.257812 118.304688 202.257812 118.1875 Z M 202.257812 118.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.605469 117.605469 C 202.605469 117.488281 202.511719 117.394531 202.394531 117.394531 C 202.277344 117.394531 202.183594 117.488281 202.183594 117.605469 C 202.183594 117.722656 202.277344 117.816406 202.394531 117.816406 C 202.511719 117.816406 202.605469 117.722656 202.605469 117.605469 Z M 202.605469 117.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.03125 119.515625 C 204.03125 119.398438 203.9375 119.304688 203.820312 119.304688 C 203.703125 119.304688 203.609375 119.398438 203.609375 119.515625 C 203.609375 119.632812 203.703125 119.726562 203.820312 119.726562 C 203.9375 119.726562 204.03125 119.632812 204.03125 119.515625 Z M 204.03125 119.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.546875 121.160156 C 201.546875 121.042969 201.453125 120.949219 201.335938 120.949219 C 201.21875 120.949219 201.125 121.042969 201.125 121.160156 C 201.125 121.277344 201.21875 121.371094 201.335938 121.371094 C 201.453125 121.371094 201.546875 121.277344 201.546875 121.160156 Z M 201.546875 121.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.96875 121.621094 C 199.96875 121.503906 199.875 121.410156 199.757812 121.410156 C 199.640625 121.410156 199.546875 121.503906 199.546875 121.621094 C 199.546875 121.738281 199.640625 121.832031 199.757812 121.832031 C 199.875 121.832031 199.96875 121.738281 199.96875 121.621094 Z M 199.96875 121.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.8125 121.3125 C 199.8125 121.195312 199.71875 121.101562 199.601562 121.101562 C 199.484375 121.101562 199.390625 121.195312 199.390625 121.3125 C 199.390625 121.429688 199.484375 121.523438 199.601562 121.523438 C 199.71875 121.523438 199.8125 121.429688 199.8125 121.3125 Z M 199.8125 121.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.546875 121.320312 C 195.546875 121.203125 195.453125 121.109375 195.335938 121.109375 C 195.21875 121.109375 195.125 121.203125 195.125 121.320312 C 195.125 121.4375 195.21875 121.53125 195.335938 121.53125 C 195.453125 121.53125 195.546875 121.4375 195.546875 121.320312 Z M 195.546875 121.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.328125 123.636719 C 196.328125 123.519531 196.234375 123.425781 196.117188 123.425781 C 196 123.425781 195.90625 123.519531 195.90625 123.636719 C 195.90625 123.753906 196 123.847656 196.117188 123.847656 C 196.234375 123.847656 196.328125 123.753906 196.328125 123.636719 Z M 196.328125 123.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.378906 123.613281 C 198.378906 123.496094 198.285156 123.402344 198.167969 123.402344 C 198.050781 123.402344 197.957031 123.496094 197.957031 123.613281 C 197.957031 123.730469 198.050781 123.824219 198.167969 123.824219 C 198.285156 123.824219 198.378906 123.730469 198.378906 123.613281 Z M 198.378906 123.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.007812 122.179688 C 201.007812 122.0625 200.914062 121.96875 200.796875 121.96875 C 200.679688 121.96875 200.585938 122.0625 200.585938 122.179688 C 200.585938 122.296875 200.679688 122.390625 200.796875 122.390625 C 200.914062 122.390625 201.007812 122.296875 201.007812 122.179688 Z M 201.007812 122.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.960938 123.515625 C 202.960938 123.398438 202.867188 123.304688 202.75 123.304688 C 202.632812 123.304688 202.539062 123.398438 202.539062 123.515625 C 202.539062 123.632812 202.632812 123.726562 202.75 123.726562 C 202.867188 123.726562 202.960938 123.632812 202.960938 123.515625 Z M 202.960938 123.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.730469 121.199219 C 202.730469 121.082031 202.636719 120.988281 202.519531 120.988281 C 202.402344 120.988281 202.308594 121.082031 202.308594 121.199219 C 202.308594 121.316406 202.402344 121.410156 202.519531 121.410156 C 202.636719 121.410156 202.730469 121.316406 202.730469 121.199219 Z M 202.730469 121.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.40625 124.742188 C 203.40625 124.625 203.3125 124.53125 203.195312 124.53125 C 203.078125 124.53125 202.984375 124.625 202.984375 124.742188 C 202.984375 124.859375 203.078125 124.953125 203.195312 124.953125 C 203.3125 124.953125 203.40625 124.859375 203.40625 124.742188 Z M 203.40625 124.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.886719 122.785156 C 203.886719 122.667969 203.792969 122.574219 203.675781 122.574219 C 203.558594 122.574219 203.464844 122.667969 203.464844 122.785156 C 203.464844 122.902344 203.558594 122.996094 203.675781 122.996094 C 203.792969 122.996094 203.886719 122.902344 203.886719 122.785156 Z M 203.886719 122.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.09375 122.558594 C 204.09375 122.441406 204 122.347656 203.882812 122.347656 C 203.765625 122.347656 203.671875 122.441406 203.671875 122.558594 C 203.671875 122.675781 203.765625 122.769531 203.882812 122.769531 C 204 122.769531 204.09375 122.675781 204.09375 122.558594 Z M 204.09375 122.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.109375 119.304688 C 205.109375 119.1875 205.015625 119.09375 204.898438 119.09375 C 204.78125 119.09375 204.6875 119.1875 204.6875 119.304688 C 204.6875 119.421875 204.78125 119.515625 204.898438 119.515625 C 205.015625 119.515625 205.109375 119.421875 205.109375 119.304688 Z M 205.109375 119.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.03125 122.957031 C 209.03125 122.839844 208.9375 122.746094 208.820312 122.746094 C 208.703125 122.746094 208.609375 122.839844 208.609375 122.957031 C 208.609375 123.074219 208.703125 123.167969 208.820312 123.167969 C 208.9375 123.167969 209.03125 123.074219 209.03125 122.957031 Z M 209.03125 122.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.46875 122.039062 C 211.46875 121.921875 211.375 121.828125 211.257812 121.828125 C 211.140625 121.828125 211.046875 121.921875 211.046875 122.039062 C 211.046875 122.15625 211.140625 122.25 211.257812 122.25 C 211.375 122.25 211.46875 122.15625 211.46875 122.039062 Z M 211.46875 122.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.703125 121.195312 C 209.703125 121.078125 209.609375 120.984375 209.492188 120.984375 C 209.375 120.984375 209.28125 121.078125 209.28125 121.195312 C 209.28125 121.3125 209.375 121.40625 209.492188 121.40625 C 209.609375 121.40625 209.703125 121.3125 209.703125 121.195312 Z M 209.703125 121.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.972656 116.738281 C 211.972656 116.621094 211.878906 116.527344 211.761719 116.527344 C 211.644531 116.527344 211.550781 116.621094 211.550781 116.738281 C 211.550781 116.855469 211.644531 116.949219 211.761719 116.949219 C 211.878906 116.949219 211.972656 116.855469 211.972656 116.738281 Z M 211.972656 116.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.097656 115.648438 C 210.097656 115.53125 210.003906 115.4375 209.886719 115.4375 C 209.769531 115.4375 209.675781 115.53125 209.675781 115.648438 C 209.675781 115.765625 209.769531 115.859375 209.886719 115.859375 C 210.003906 115.859375 210.097656 115.765625 210.097656 115.648438 Z M 210.097656 115.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.9375 114.070312 C 210.9375 113.953125 210.84375 113.859375 210.726562 113.859375 C 210.609375 113.859375 210.515625 113.953125 210.515625 114.070312 C 210.515625 114.1875 210.609375 114.28125 210.726562 114.28125 C 210.84375 114.28125 210.9375 114.1875 210.9375 114.070312 Z M 210.9375 114.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.875 113.332031 C 212.875 113.214844 212.78125 113.121094 212.664062 113.121094 C 212.546875 113.121094 212.453125 113.214844 212.453125 113.332031 C 212.453125 113.449219 212.546875 113.542969 212.664062 113.542969 C 212.78125 113.542969 212.875 113.449219 212.875 113.332031 Z M 212.875 113.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.695312 114.375 C 213.695312 114.257812 213.601562 114.164062 213.484375 114.164062 C 213.367188 114.164062 213.273438 114.257812 213.273438 114.375 C 213.273438 114.492188 213.367188 114.585938 213.484375 114.585938 C 213.601562 114.585938 213.695312 114.492188 213.695312 114.375 Z M 213.695312 114.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.859375 114.476562 C 212.859375 114.359375 212.765625 114.265625 212.648438 114.265625 C 212.53125 114.265625 212.4375 114.359375 212.4375 114.476562 C 212.4375 114.59375 212.53125 114.6875 212.648438 114.6875 C 212.765625 114.6875 212.859375 114.59375 212.859375 114.476562 Z M 212.859375 114.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.203125 114.761719 C 213.203125 114.644531 213.109375 114.550781 212.992188 114.550781 C 212.875 114.550781 212.78125 114.644531 212.78125 114.761719 C 212.78125 114.878906 212.875 114.972656 212.992188 114.972656 C 213.109375 114.972656 213.203125 114.878906 213.203125 114.761719 Z M 213.203125 114.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.972656 113.691406 C 210.972656 113.574219 210.878906 113.480469 210.761719 113.480469 C 210.644531 113.480469 210.550781 113.574219 210.550781 113.691406 C 210.550781 113.808594 210.644531 113.902344 210.761719 113.902344 C 210.878906 113.902344 210.972656 113.808594 210.972656 113.691406 Z M 210.972656 113.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.296875 109.464844 C 213.296875 109.347656 213.203125 109.253906 213.085938 109.253906 C 212.96875 109.253906 212.875 109.347656 212.875 109.464844 C 212.875 109.582031 212.96875 109.675781 213.085938 109.675781 C 213.203125 109.675781 213.296875 109.582031 213.296875 109.464844 Z M 213.296875 109.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.484375 110.574219 C 214.484375 110.457031 214.390625 110.363281 214.273438 110.363281 C 214.15625 110.363281 214.0625 110.457031 214.0625 110.574219 C 214.0625 110.691406 214.15625 110.785156 214.273438 110.785156 C 214.390625 110.785156 214.484375 110.691406 214.484375 110.574219 Z M 214.484375 110.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.945312 110.488281 C 215.945312 110.371094 215.851562 110.277344 215.734375 110.277344 C 215.617188 110.277344 215.523438 110.371094 215.523438 110.488281 C 215.523438 110.605469 215.617188 110.699219 215.734375 110.699219 C 215.851562 110.699219 215.945312 110.605469 215.945312 110.488281 Z M 215.945312 110.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.167969 106.949219 C 215.167969 106.832031 215.074219 106.738281 214.957031 106.738281 C 214.839844 106.738281 214.746094 106.832031 214.746094 106.949219 C 214.746094 107.066406 214.839844 107.160156 214.957031 107.160156 C 215.074219 107.160156 215.167969 107.066406 215.167969 106.949219 Z M 215.167969 106.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.082031 108.21875 C 218.082031 108.101562 217.988281 108.007812 217.871094 108.007812 C 217.753906 108.007812 217.660156 108.101562 217.660156 108.21875 C 217.660156 108.335938 217.753906 108.429688 217.871094 108.429688 C 217.988281 108.429688 218.082031 108.335938 218.082031 108.21875 Z M 218.082031 108.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.113281 107.257812 C 216.113281 107.140625 216.019531 107.046875 215.902344 107.046875 C 215.785156 107.046875 215.691406 107.140625 215.691406 107.257812 C 215.691406 107.375 215.785156 107.46875 215.902344 107.46875 C 216.019531 107.46875 216.113281 107.375 216.113281 107.257812 Z M 216.113281 107.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.863281 105.847656 C 215.863281 105.730469 215.769531 105.636719 215.652344 105.636719 C 215.535156 105.636719 215.441406 105.730469 215.441406 105.847656 C 215.441406 105.964844 215.535156 106.058594 215.652344 106.058594 C 215.769531 106.058594 215.863281 105.964844 215.863281 105.847656 Z M 215.863281 105.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.074219 104.632812 C 216.074219 104.515625 215.980469 104.421875 215.863281 104.421875 C 215.746094 104.421875 215.652344 104.515625 215.652344 104.632812 C 215.652344 104.75 215.746094 104.84375 215.863281 104.84375 C 215.980469 104.84375 216.074219 104.75 216.074219 104.632812 Z M 216.074219 104.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.136719 107.917969 C 218.136719 107.800781 218.042969 107.707031 217.925781 107.707031 C 217.808594 107.707031 217.714844 107.800781 217.714844 107.917969 C 217.714844 108.035156 217.808594 108.128906 217.925781 108.128906 C 218.042969 108.128906 218.136719 108.035156 218.136719 107.917969 Z M 218.136719 107.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.550781 109.242188 C 214.550781 109.125 214.457031 109.03125 214.339844 109.03125 C 214.222656 109.03125 214.128906 109.125 214.128906 109.242188 C 214.128906 109.359375 214.222656 109.453125 214.339844 109.453125 C 214.457031 109.453125 214.550781 109.359375 214.550781 109.242188 Z M 214.550781 109.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.742188 110.660156 C 212.742188 110.542969 212.648438 110.449219 212.53125 110.449219 C 212.414062 110.449219 212.320312 110.542969 212.320312 110.660156 C 212.320312 110.777344 212.414062 110.871094 212.53125 110.871094 C 212.648438 110.871094 212.742188 110.777344 212.742188 110.660156 Z M 212.742188 110.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.832031 109.441406 C 214.832031 109.324219 214.738281 109.230469 214.621094 109.230469 C 214.503906 109.230469 214.410156 109.324219 214.410156 109.441406 C 214.410156 109.558594 214.503906 109.652344 214.621094 109.652344 C 214.738281 109.652344 214.832031 109.558594 214.832031 109.441406 Z M 214.832031 109.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.152344 110.042969 C 214.152344 109.925781 214.058594 109.832031 213.941406 109.832031 C 213.824219 109.832031 213.730469 109.925781 213.730469 110.042969 C 213.730469 110.160156 213.824219 110.253906 213.941406 110.253906 C 214.058594 110.253906 214.152344 110.160156 214.152344 110.042969 Z M 214.152344 110.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.382812 111.664062 C 214.382812 111.546875 214.289062 111.453125 214.171875 111.453125 C 214.054688 111.453125 213.960938 111.546875 213.960938 111.664062 C 213.960938 111.78125 214.054688 111.875 214.171875 111.875 C 214.289062 111.875 214.382812 111.78125 214.382812 111.664062 Z M 214.382812 111.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.382812 112.765625 C 214.382812 112.648438 214.289062 112.554688 214.171875 112.554688 C 214.054688 112.554688 213.960938 112.648438 213.960938 112.765625 C 213.960938 112.882812 214.054688 112.976562 214.171875 112.976562 C 214.289062 112.976562 214.382812 112.882812 214.382812 112.765625 Z M 214.382812 112.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.128906 115.351562 C 210.128906 115.234375 210.035156 115.140625 209.917969 115.140625 C 209.800781 115.140625 209.707031 115.234375 209.707031 115.351562 C 209.707031 115.46875 209.800781 115.5625 209.917969 115.5625 C 210.035156 115.5625 210.128906 115.46875 210.128906 115.351562 Z M 210.128906 115.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.539062 118.199219 C 207.539062 118.082031 207.445312 117.988281 207.328125 117.988281 C 207.210938 117.988281 207.117188 118.082031 207.117188 118.199219 C 207.117188 118.316406 207.210938 118.410156 207.328125 118.410156 C 207.445312 118.410156 207.539062 118.316406 207.539062 118.199219 Z M 207.539062 118.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.898438 116.539062 C 211.898438 116.421875 211.804688 116.328125 211.6875 116.328125 C 211.570312 116.328125 211.476562 116.421875 211.476562 116.539062 C 211.476562 116.65625 211.570312 116.75 211.6875 116.75 C 211.804688 116.75 211.898438 116.65625 211.898438 116.539062 Z M 211.898438 116.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.539062 120.835938 C 209.539062 120.71875 209.445312 120.625 209.328125 120.625 C 209.210938 120.625 209.117188 120.71875 209.117188 120.835938 C 209.117188 120.953125 209.210938 121.046875 209.328125 121.046875 C 209.445312 121.046875 209.539062 120.953125 209.539062 120.835938 Z M 209.539062 120.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.4375 115.945312 C 209.4375 115.828125 209.34375 115.734375 209.226562 115.734375 C 209.109375 115.734375 209.015625 115.828125 209.015625 115.945312 C 209.015625 116.0625 209.109375 116.15625 209.226562 116.15625 C 209.34375 116.15625 209.4375 116.0625 209.4375 115.945312 Z M 209.4375 115.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.179688 112.390625 C 211.179688 112.273438 211.085938 112.179688 210.96875 112.179688 C 210.851562 112.179688 210.757812 112.273438 210.757812 112.390625 C 210.757812 112.507812 210.851562 112.601562 210.96875 112.601562 C 211.085938 112.601562 211.179688 112.507812 211.179688 112.390625 Z M 211.179688 112.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.902344 113.234375 C 210.902344 113.117188 210.808594 113.023438 210.691406 113.023438 C 210.574219 113.023438 210.480469 113.117188 210.480469 113.234375 C 210.480469 113.351562 210.574219 113.445312 210.691406 113.445312 C 210.808594 113.445312 210.902344 113.351562 210.902344 113.234375 Z M 210.902344 113.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.253906 111.5625 C 212.253906 111.445312 212.160156 111.351562 212.042969 111.351562 C 211.925781 111.351562 211.832031 111.445312 211.832031 111.5625 C 211.832031 111.679688 211.925781 111.773438 212.042969 111.773438 C 212.160156 111.773438 212.253906 111.679688 212.253906 111.5625 Z M 212.253906 111.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.425781 111.113281 C 211.425781 110.996094 211.332031 110.902344 211.214844 110.902344 C 211.097656 110.902344 211.003906 110.996094 211.003906 111.113281 C 211.003906 111.230469 211.097656 111.324219 211.214844 111.324219 C 211.332031 111.324219 211.425781 111.230469 211.425781 111.113281 Z M 211.425781 111.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.972656 113.3125 C 209.972656 113.195312 209.878906 113.101562 209.761719 113.101562 C 209.644531 113.101562 209.550781 113.195312 209.550781 113.3125 C 209.550781 113.429688 209.644531 113.523438 209.761719 113.523438 C 209.878906 113.523438 209.972656 113.429688 209.972656 113.3125 Z M 209.972656 113.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.617188 115.175781 C 211.617188 115.058594 211.523438 114.964844 211.40625 114.964844 C 211.289062 114.964844 211.195312 115.058594 211.195312 115.175781 C 211.195312 115.292969 211.289062 115.386719 211.40625 115.386719 C 211.523438 115.386719 211.617188 115.292969 211.617188 115.175781 Z M 211.617188 115.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.746094 112.632812 C 210.746094 112.515625 210.652344 112.421875 210.535156 112.421875 C 210.417969 112.421875 210.324219 112.515625 210.324219 112.632812 C 210.324219 112.75 210.417969 112.84375 210.535156 112.84375 C 210.652344 112.84375 210.746094 112.75 210.746094 112.632812 Z M 210.746094 112.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.027344 109.484375 C 211.027344 109.367188 210.933594 109.273438 210.816406 109.273438 C 210.699219 109.273438 210.605469 109.367188 210.605469 109.484375 C 210.605469 109.601562 210.699219 109.695312 210.816406 109.695312 C 210.933594 109.695312 211.027344 109.601562 211.027344 109.484375 Z M 211.027344 109.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.492188 112.511719 C 215.492188 112.394531 215.398438 112.300781 215.28125 112.300781 C 215.164062 112.300781 215.070312 112.394531 215.070312 112.511719 C 215.070312 112.628906 215.164062 112.722656 215.28125 112.722656 C 215.398438 112.722656 215.492188 112.628906 215.492188 112.511719 Z M 215.492188 112.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.117188 111.796875 C 215.117188 111.679688 215.023438 111.585938 214.90625 111.585938 C 214.789062 111.585938 214.695312 111.679688 214.695312 111.796875 C 214.695312 111.914062 214.789062 112.007812 214.90625 112.007812 C 215.023438 112.007812 215.117188 111.914062 215.117188 111.796875 Z M 215.117188 111.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.414062 110.644531 C 215.414062 110.527344 215.320312 110.433594 215.203125 110.433594 C 215.085938 110.433594 214.992188 110.527344 214.992188 110.644531 C 214.992188 110.761719 215.085938 110.855469 215.203125 110.855469 C 215.320312 110.855469 215.414062 110.761719 215.414062 110.644531 Z M 215.414062 110.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.570312 113.722656 C 219.570312 113.605469 219.476562 113.511719 219.359375 113.511719 C 219.242188 113.511719 219.148438 113.605469 219.148438 113.722656 C 219.148438 113.839844 219.242188 113.933594 219.359375 113.933594 C 219.476562 113.933594 219.570312 113.839844 219.570312 113.722656 Z M 219.570312 113.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.785156 114.382812 C 220.785156 114.265625 220.691406 114.171875 220.574219 114.171875 C 220.457031 114.171875 220.363281 114.265625 220.363281 114.382812 C 220.363281 114.5 220.457031 114.59375 220.574219 114.59375 C 220.691406 114.59375 220.785156 114.5 220.785156 114.382812 Z M 220.785156 114.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.265625 114.585938 C 222.265625 114.46875 222.171875 114.375 222.054688 114.375 C 221.9375 114.375 221.84375 114.46875 221.84375 114.585938 C 221.84375 114.703125 221.9375 114.796875 222.054688 114.796875 C 222.171875 114.796875 222.265625 114.703125 222.265625 114.585938 Z M 222.265625 114.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.085938 113.980469 C 223.085938 113.863281 222.992188 113.769531 222.875 113.769531 C 222.757812 113.769531 222.664062 113.863281 222.664062 113.980469 C 222.664062 114.097656 222.757812 114.191406 222.875 114.191406 C 222.992188 114.191406 223.085938 114.097656 223.085938 113.980469 Z M 223.085938 113.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.15625 116.605469 C 218.15625 116.488281 218.0625 116.394531 217.945312 116.394531 C 217.828125 116.394531 217.734375 116.488281 217.734375 116.605469 C 217.734375 116.722656 217.828125 116.816406 217.945312 116.816406 C 218.0625 116.816406 218.15625 116.722656 218.15625 116.605469 Z M 218.15625 116.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.8125 116.113281 C 218.8125 115.996094 218.71875 115.902344 218.601562 115.902344 C 218.484375 115.902344 218.390625 115.996094 218.390625 116.113281 C 218.390625 116.230469 218.484375 116.324219 218.601562 116.324219 C 218.71875 116.324219 218.8125 116.230469 218.8125 116.113281 Z M 218.8125 116.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.148438 117.875 C 219.148438 117.757812 219.054688 117.664062 218.9375 117.664062 C 218.820312 117.664062 218.726562 117.757812 218.726562 117.875 C 218.726562 117.992188 218.820312 118.085938 218.9375 118.085938 C 219.054688 118.085938 219.148438 117.992188 219.148438 117.875 Z M 219.148438 117.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.859375 118.21875 C 220.859375 118.101562 220.765625 118.007812 220.648438 118.007812 C 220.53125 118.007812 220.4375 118.101562 220.4375 118.21875 C 220.4375 118.335938 220.53125 118.429688 220.648438 118.429688 C 220.765625 118.429688 220.859375 118.335938 220.859375 118.21875 Z M 220.859375 118.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.832031 119.199219 C 220.832031 119.082031 220.738281 118.988281 220.621094 118.988281 C 220.503906 118.988281 220.410156 119.082031 220.410156 119.199219 C 220.410156 119.316406 220.503906 119.410156 220.621094 119.410156 C 220.738281 119.410156 220.832031 119.316406 220.832031 119.199219 Z M 220.832031 119.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.386719 115.09375 C 220.386719 114.976562 220.292969 114.882812 220.175781 114.882812 C 220.058594 114.882812 219.964844 114.976562 219.964844 115.09375 C 219.964844 115.210938 220.058594 115.304688 220.175781 115.304688 C 220.292969 115.304688 220.386719 115.210938 220.386719 115.09375 Z M 220.386719 115.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.222656 115.328125 C 223.222656 115.210938 223.128906 115.117188 223.011719 115.117188 C 222.894531 115.117188 222.800781 115.210938 222.800781 115.328125 C 222.800781 115.445312 222.894531 115.539062 223.011719 115.539062 C 223.128906 115.539062 223.222656 115.445312 223.222656 115.328125 Z M 223.222656 115.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.90625 113.546875 C 219.90625 113.429688 219.8125 113.335938 219.695312 113.335938 C 219.578125 113.335938 219.484375 113.429688 219.484375 113.546875 C 219.484375 113.664062 219.578125 113.757812 219.695312 113.757812 C 219.8125 113.757812 219.90625 113.664062 219.90625 113.546875 Z M 219.90625 113.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.34375 116.0625 C 213.34375 115.945312 213.25 115.851562 213.132812 115.851562 C 213.015625 115.851562 212.921875 115.945312 212.921875 116.0625 C 212.921875 116.179688 213.015625 116.273438 213.132812 116.273438 C 213.25 116.273438 213.34375 116.179688 213.34375 116.0625 Z M 213.34375 116.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.464844 119.761719 C 211.464844 119.644531 211.371094 119.550781 211.253906 119.550781 C 211.136719 119.550781 211.042969 119.644531 211.042969 119.761719 C 211.042969 119.878906 211.136719 119.972656 211.253906 119.972656 C 211.371094 119.972656 211.464844 119.878906 211.464844 119.761719 Z M 211.464844 119.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.242188 120.371094 C 211.242188 120.253906 211.148438 120.160156 211.03125 120.160156 C 210.914062 120.160156 210.820312 120.253906 210.820312 120.371094 C 210.820312 120.488281 210.914062 120.582031 211.03125 120.582031 C 211.148438 120.582031 211.242188 120.488281 211.242188 120.371094 Z M 211.242188 120.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.480469 121.773438 C 212.480469 121.65625 212.386719 121.5625 212.269531 121.5625 C 212.152344 121.5625 212.058594 121.65625 212.058594 121.773438 C 212.058594 121.890625 212.152344 121.984375 212.269531 121.984375 C 212.386719 121.984375 212.480469 121.890625 212.480469 121.773438 Z M 212.480469 121.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.839844 121.480469 C 210.839844 121.363281 210.746094 121.269531 210.628906 121.269531 C 210.511719 121.269531 210.417969 121.363281 210.417969 121.480469 C 210.417969 121.597656 210.511719 121.691406 210.628906 121.691406 C 210.746094 121.691406 210.839844 121.597656 210.839844 121.480469 Z M 210.839844 121.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.410156 121.675781 C 209.410156 121.558594 209.316406 121.464844 209.199219 121.464844 C 209.082031 121.464844 208.988281 121.558594 208.988281 121.675781 C 208.988281 121.792969 209.082031 121.886719 209.199219 121.886719 C 209.316406 121.886719 209.410156 121.792969 209.410156 121.675781 Z M 209.410156 121.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.660156 119.8125 C 209.660156 119.695312 209.566406 119.601562 209.449219 119.601562 C 209.332031 119.601562 209.238281 119.695312 209.238281 119.8125 C 209.238281 119.929688 209.332031 120.023438 209.449219 120.023438 C 209.566406 120.023438 209.660156 119.929688 209.660156 119.8125 Z M 209.660156 119.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.054688 120.222656 C 208.054688 120.105469 207.960938 120.011719 207.84375 120.011719 C 207.726562 120.011719 207.632812 120.105469 207.632812 120.222656 C 207.632812 120.339844 207.726562 120.433594 207.84375 120.433594 C 207.960938 120.433594 208.054688 120.339844 208.054688 120.222656 Z M 208.054688 120.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.457031 119.511719 C 211.457031 119.394531 211.363281 119.300781 211.246094 119.300781 C 211.128906 119.300781 211.035156 119.394531 211.035156 119.511719 C 211.035156 119.628906 211.128906 119.722656 211.246094 119.722656 C 211.363281 119.722656 211.457031 119.628906 211.457031 119.511719 Z M 211.457031 119.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.820312 116.851562 C 211.820312 116.734375 211.726562 116.640625 211.609375 116.640625 C 211.492188 116.640625 211.398438 116.734375 211.398438 116.851562 C 211.398438 116.96875 211.492188 117.0625 211.609375 117.0625 C 211.726562 117.0625 211.820312 116.96875 211.820312 116.851562 Z M 211.820312 116.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.742188 119.566406 C 209.742188 119.449219 209.648438 119.355469 209.53125 119.355469 C 209.414062 119.355469 209.320312 119.449219 209.320312 119.566406 C 209.320312 119.683594 209.414062 119.777344 209.53125 119.777344 C 209.648438 119.777344 209.742188 119.683594 209.742188 119.566406 Z M 209.742188 119.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.871094 121.011719 C 212.871094 120.894531 212.777344 120.800781 212.660156 120.800781 C 212.542969 120.800781 212.449219 120.894531 212.449219 121.011719 C 212.449219 121.128906 212.542969 121.222656 212.660156 121.222656 C 212.777344 121.222656 212.871094 121.128906 212.871094 121.011719 Z M 212.871094 121.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.792969 118.820312 C 209.792969 118.703125 209.699219 118.609375 209.582031 118.609375 C 209.464844 118.609375 209.371094 118.703125 209.371094 118.820312 C 209.371094 118.9375 209.464844 119.03125 209.582031 119.03125 C 209.699219 119.03125 209.792969 118.9375 209.792969 118.820312 Z M 209.792969 118.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.355469 116.03125 C 211.355469 115.914062 211.261719 115.820312 211.144531 115.820312 C 211.027344 115.820312 210.933594 115.914062 210.933594 116.03125 C 210.933594 116.148438 211.027344 116.242188 211.144531 116.242188 C 211.261719 116.242188 211.355469 116.148438 211.355469 116.03125 Z M 211.355469 116.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.972656 116.21875 C 213.972656 116.101562 213.878906 116.007812 213.761719 116.007812 C 213.644531 116.007812 213.550781 116.101562 213.550781 116.21875 C 213.550781 116.335938 213.644531 116.429688 213.761719 116.429688 C 213.878906 116.429688 213.972656 116.335938 213.972656 116.21875 Z M 213.972656 116.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.328125 116.308594 C 214.328125 116.191406 214.234375 116.097656 214.117188 116.097656 C 214 116.097656 213.90625 116.191406 213.90625 116.308594 C 213.90625 116.425781 214 116.519531 214.117188 116.519531 C 214.234375 116.519531 214.328125 116.425781 214.328125 116.308594 Z M 214.328125 116.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.941406 116.15625 C 213.941406 116.039062 213.847656 115.945312 213.730469 115.945312 C 213.613281 115.945312 213.519531 116.039062 213.519531 116.15625 C 213.519531 116.273438 213.613281 116.367188 213.730469 116.367188 C 213.847656 116.367188 213.941406 116.273438 213.941406 116.15625 Z M 213.941406 116.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.804688 116.703125 C 212.804688 116.585938 212.710938 116.492188 212.59375 116.492188 C 212.476562 116.492188 212.382812 116.585938 212.382812 116.703125 C 212.382812 116.820312 212.476562 116.914062 212.59375 116.914062 C 212.710938 116.914062 212.804688 116.820312 212.804688 116.703125 Z M 212.804688 116.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.949219 117.324219 C 209.949219 117.207031 209.855469 117.113281 209.738281 117.113281 C 209.621094 117.113281 209.527344 117.207031 209.527344 117.324219 C 209.527344 117.441406 209.621094 117.535156 209.738281 117.535156 C 209.855469 117.535156 209.949219 117.441406 209.949219 117.324219 Z M 209.949219 117.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.589844 118.34375 C 204.589844 118.226562 204.496094 118.132812 204.378906 118.132812 C 204.261719 118.132812 204.167969 118.226562 204.167969 118.34375 C 204.167969 118.460938 204.261719 118.554688 204.378906 118.554688 C 204.496094 118.554688 204.589844 118.460938 204.589844 118.34375 Z M 204.589844 118.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.167969 119.777344 C 203.167969 119.660156 203.074219 119.566406 202.957031 119.566406 C 202.839844 119.566406 202.746094 119.660156 202.746094 119.777344 C 202.746094 119.894531 202.839844 119.988281 202.957031 119.988281 C 203.074219 119.988281 203.167969 119.894531 203.167969 119.777344 Z M 203.167969 119.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.417969 119.027344 C 203.417969 118.910156 203.324219 118.816406 203.207031 118.816406 C 203.089844 118.816406 202.996094 118.910156 202.996094 119.027344 C 202.996094 119.144531 203.089844 119.238281 203.207031 119.238281 C 203.324219 119.238281 203.417969 119.144531 203.417969 119.027344 Z M 203.417969 119.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.453125 117.539062 C 203.453125 117.421875 203.359375 117.328125 203.242188 117.328125 C 203.125 117.328125 203.03125 117.421875 203.03125 117.539062 C 203.03125 117.65625 203.125 117.75 203.242188 117.75 C 203.359375 117.75 203.453125 117.65625 203.453125 117.539062 Z M 203.453125 117.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.871094 117.785156 C 205.871094 117.667969 205.777344 117.574219 205.660156 117.574219 C 205.542969 117.574219 205.449219 117.667969 205.449219 117.785156 C 205.449219 117.902344 205.542969 117.996094 205.660156 117.996094 C 205.777344 117.996094 205.871094 117.902344 205.871094 117.785156 Z M 205.871094 117.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.570312 114.867188 C 206.570312 114.75 206.476562 114.65625 206.359375 114.65625 C 206.242188 114.65625 206.148438 114.75 206.148438 114.867188 C 206.148438 114.984375 206.242188 115.078125 206.359375 115.078125 C 206.476562 115.078125 206.570312 114.984375 206.570312 114.867188 Z M 206.570312 114.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.839844 113.863281 C 204.839844 113.746094 204.746094 113.652344 204.628906 113.652344 C 204.511719 113.652344 204.417969 113.746094 204.417969 113.863281 C 204.417969 113.980469 204.511719 114.074219 204.628906 114.074219 C 204.746094 114.074219 204.839844 113.980469 204.839844 113.863281 Z M 204.839844 113.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.375 111.890625 C 202.375 111.773438 202.28125 111.679688 202.164062 111.679688 C 202.046875 111.679688 201.953125 111.773438 201.953125 111.890625 C 201.953125 112.007812 202.046875 112.101562 202.164062 112.101562 C 202.28125 112.101562 202.375 112.007812 202.375 111.890625 Z M 202.375 111.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.285156 109.488281 C 202.285156 109.371094 202.191406 109.277344 202.074219 109.277344 C 201.957031 109.277344 201.863281 109.371094 201.863281 109.488281 C 201.863281 109.605469 201.957031 109.699219 202.074219 109.699219 C 202.191406 109.699219 202.285156 109.605469 202.285156 109.488281 Z M 202.285156 109.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.59375 109.464844 C 196.59375 109.347656 196.5 109.253906 196.382812 109.253906 C 196.265625 109.253906 196.171875 109.347656 196.171875 109.464844 C 196.171875 109.582031 196.265625 109.675781 196.382812 109.675781 C 196.5 109.675781 196.59375 109.582031 196.59375 109.464844 Z M 196.59375 109.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.566406 110.417969 C 196.566406 110.300781 196.472656 110.207031 196.355469 110.207031 C 196.238281 110.207031 196.144531 110.300781 196.144531 110.417969 C 196.144531 110.535156 196.238281 110.628906 196.355469 110.628906 C 196.472656 110.628906 196.566406 110.535156 196.566406 110.417969 Z M 196.566406 110.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.753906 110.914062 C 193.753906 110.796875 193.660156 110.703125 193.542969 110.703125 C 193.425781 110.703125 193.332031 110.796875 193.332031 110.914062 C 193.332031 111.03125 193.425781 111.125 193.542969 111.125 C 193.660156 111.125 193.753906 111.03125 193.753906 110.914062 Z M 193.753906 110.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.695312 110.273438 C 191.695312 110.15625 191.601562 110.0625 191.484375 110.0625 C 191.367188 110.0625 191.273438 110.15625 191.273438 110.273438 C 191.273438 110.390625 191.367188 110.484375 191.484375 110.484375 C 191.601562 110.484375 191.695312 110.390625 191.695312 110.273438 Z M 191.695312 110.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.957031 109.675781 C 191.957031 109.558594 191.863281 109.464844 191.746094 109.464844 C 191.628906 109.464844 191.535156 109.558594 191.535156 109.675781 C 191.535156 109.792969 191.628906 109.886719 191.746094 109.886719 C 191.863281 109.886719 191.957031 109.792969 191.957031 109.675781 Z M 191.957031 109.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.8125 107.832031 C 191.8125 107.714844 191.71875 107.621094 191.601562 107.621094 C 191.484375 107.621094 191.390625 107.714844 191.390625 107.832031 C 191.390625 107.949219 191.484375 108.042969 191.601562 108.042969 C 191.71875 108.042969 191.8125 107.949219 191.8125 107.832031 Z M 191.8125 107.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.035156 106.1875 C 193.035156 106.070312 192.941406 105.976562 192.824219 105.976562 C 192.707031 105.976562 192.613281 106.070312 192.613281 106.1875 C 192.613281 106.304688 192.707031 106.398438 192.824219 106.398438 C 192.941406 106.398438 193.035156 106.304688 193.035156 106.1875 Z M 193.035156 106.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.210938 106.523438 C 194.210938 106.40625 194.117188 106.3125 194 106.3125 C 193.882812 106.3125 193.789062 106.40625 193.789062 106.523438 C 193.789062 106.640625 193.882812 106.734375 194 106.734375 C 194.117188 106.734375 194.210938 106.640625 194.210938 106.523438 Z M 194.210938 106.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.296875 106.640625 C 194.296875 106.523438 194.203125 106.429688 194.085938 106.429688 C 193.96875 106.429688 193.875 106.523438 193.875 106.640625 C 193.875 106.757812 193.96875 106.851562 194.085938 106.851562 C 194.203125 106.851562 194.296875 106.757812 194.296875 106.640625 Z M 194.296875 106.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.800781 105.605469 C 192.800781 105.488281 192.707031 105.394531 192.589844 105.394531 C 192.472656 105.394531 192.378906 105.488281 192.378906 105.605469 C 192.378906 105.722656 192.472656 105.816406 192.589844 105.816406 C 192.707031 105.816406 192.800781 105.722656 192.800781 105.605469 Z M 192.800781 105.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.875 102.347656 C 189.875 102.230469 189.78125 102.136719 189.664062 102.136719 C 189.546875 102.136719 189.453125 102.230469 189.453125 102.347656 C 189.453125 102.464844 189.546875 102.558594 189.664062 102.558594 C 189.78125 102.558594 189.875 102.464844 189.875 102.347656 Z M 189.875 102.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.714844 101.234375 C 188.714844 101.117188 188.621094 101.023438 188.503906 101.023438 C 188.386719 101.023438 188.292969 101.117188 188.292969 101.234375 C 188.292969 101.351562 188.386719 101.445312 188.503906 101.445312 C 188.621094 101.445312 188.714844 101.351562 188.714844 101.234375 Z M 188.714844 101.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.582031 101.566406 C 188.582031 101.449219 188.488281 101.355469 188.371094 101.355469 C 188.253906 101.355469 188.160156 101.449219 188.160156 101.566406 C 188.160156 101.683594 188.253906 101.777344 188.371094 101.777344 C 188.488281 101.777344 188.582031 101.683594 188.582031 101.566406 Z M 188.582031 101.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.570312 104.234375 C 187.570312 104.117188 187.476562 104.023438 187.359375 104.023438 C 187.242188 104.023438 187.148438 104.117188 187.148438 104.234375 C 187.148438 104.351562 187.242188 104.445312 187.359375 104.445312 C 187.476562 104.445312 187.570312 104.351562 187.570312 104.234375 Z M 187.570312 104.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.078125 107.585938 C 187.078125 107.46875 186.984375 107.375 186.867188 107.375 C 186.75 107.375 186.65625 107.46875 186.65625 107.585938 C 186.65625 107.703125 186.75 107.796875 186.867188 107.796875 C 186.984375 107.796875 187.078125 107.703125 187.078125 107.585938 Z M 187.078125 107.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.222656 108.132812 C 187.222656 108.015625 187.128906 107.921875 187.011719 107.921875 C 186.894531 107.921875 186.800781 108.015625 186.800781 108.132812 C 186.800781 108.25 186.894531 108.34375 187.011719 108.34375 C 187.128906 108.34375 187.222656 108.25 187.222656 108.132812 Z M 187.222656 108.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.261719 105.851562 C 187.261719 105.734375 187.167969 105.640625 187.050781 105.640625 C 186.933594 105.640625 186.839844 105.734375 186.839844 105.851562 C 186.839844 105.96875 186.933594 106.0625 187.050781 106.0625 C 187.167969 106.0625 187.261719 105.96875 187.261719 105.851562 Z M 187.261719 105.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.738281 108.855469 C 184.738281 108.738281 184.644531 108.644531 184.527344 108.644531 C 184.410156 108.644531 184.316406 108.738281 184.316406 108.855469 C 184.316406 108.972656 184.410156 109.066406 184.527344 109.066406 C 184.644531 109.066406 184.738281 108.972656 184.738281 108.855469 Z M 184.738281 108.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.773438 105.230469 C 183.773438 105.113281 183.679688 105.019531 183.5625 105.019531 C 183.445312 105.019531 183.351562 105.113281 183.351562 105.230469 C 183.351562 105.347656 183.445312 105.441406 183.5625 105.441406 C 183.679688 105.441406 183.773438 105.347656 183.773438 105.230469 Z M 183.773438 105.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.542969 105.0625 C 184.542969 104.945312 184.449219 104.851562 184.332031 104.851562 C 184.214844 104.851562 184.121094 104.945312 184.121094 105.0625 C 184.121094 105.179688 184.214844 105.273438 184.332031 105.273438 C 184.449219 105.273438 184.542969 105.179688 184.542969 105.0625 Z M 184.542969 105.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.058594 106.789062 C 186.058594 106.671875 185.964844 106.578125 185.847656 106.578125 C 185.730469 106.578125 185.636719 106.671875 185.636719 106.789062 C 185.636719 106.90625 185.730469 107 185.847656 107 C 185.964844 107 186.058594 106.90625 186.058594 106.789062 Z M 186.058594 106.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.363281 105.90625 C 187.363281 105.789062 187.269531 105.695312 187.152344 105.695312 C 187.035156 105.695312 186.941406 105.789062 186.941406 105.90625 C 186.941406 106.023438 187.035156 106.117188 187.152344 106.117188 C 187.269531 106.117188 187.363281 106.023438 187.363281 105.90625 Z M 187.363281 105.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.121094 108.515625 C 185.121094 108.398438 185.027344 108.304688 184.910156 108.304688 C 184.792969 108.304688 184.699219 108.398438 184.699219 108.515625 C 184.699219 108.632812 184.792969 108.726562 184.910156 108.726562 C 185.027344 108.726562 185.121094 108.632812 185.121094 108.515625 Z M 185.121094 108.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.164062 109.695312 C 183.164062 109.578125 183.070312 109.484375 182.953125 109.484375 C 182.835938 109.484375 182.742188 109.578125 182.742188 109.695312 C 182.742188 109.8125 182.835938 109.90625 182.953125 109.90625 C 183.070312 109.90625 183.164062 109.8125 183.164062 109.695312 Z M 183.164062 109.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.203125 109.476562 C 186.203125 109.359375 186.109375 109.265625 185.992188 109.265625 C 185.875 109.265625 185.78125 109.359375 185.78125 109.476562 C 185.78125 109.59375 185.875 109.6875 185.992188 109.6875 C 186.109375 109.6875 186.203125 109.59375 186.203125 109.476562 Z M 186.203125 109.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.519531 106.207031 C 185.519531 106.089844 185.425781 105.996094 185.308594 105.996094 C 185.191406 105.996094 185.097656 106.089844 185.097656 106.207031 C 185.097656 106.324219 185.191406 106.417969 185.308594 106.417969 C 185.425781 106.417969 185.519531 106.324219 185.519531 106.207031 Z M 185.519531 106.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.714844 104.960938 C 186.714844 104.84375 186.621094 104.75 186.503906 104.75 C 186.386719 104.75 186.292969 104.84375 186.292969 104.960938 C 186.292969 105.078125 186.386719 105.171875 186.503906 105.171875 C 186.621094 105.171875 186.714844 105.078125 186.714844 104.960938 Z M 186.714844 104.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.441406 103.089844 C 186.441406 102.972656 186.347656 102.878906 186.230469 102.878906 C 186.113281 102.878906 186.019531 102.972656 186.019531 103.089844 C 186.019531 103.207031 186.113281 103.300781 186.230469 103.300781 C 186.347656 103.300781 186.441406 103.207031 186.441406 103.089844 Z M 186.441406 103.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.046875 101.109375 C 184.046875 100.992188 183.953125 100.898438 183.835938 100.898438 C 183.71875 100.898438 183.625 100.992188 183.625 101.109375 C 183.625 101.226562 183.71875 101.320312 183.835938 101.320312 C 183.953125 101.320312 184.046875 101.226562 184.046875 101.109375 Z M 184.046875 101.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.691406 105.625 C 187.691406 105.507812 187.597656 105.414062 187.480469 105.414062 C 187.363281 105.414062 187.269531 105.507812 187.269531 105.625 C 187.269531 105.742188 187.363281 105.835938 187.480469 105.835938 C 187.597656 105.835938 187.691406 105.742188 187.691406 105.625 Z M 187.691406 105.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.003906 103.585938 C 190.003906 103.46875 189.910156 103.375 189.792969 103.375 C 189.675781 103.375 189.582031 103.46875 189.582031 103.585938 C 189.582031 103.703125 189.675781 103.796875 189.792969 103.796875 C 189.910156 103.796875 190.003906 103.703125 190.003906 103.585938 Z M 190.003906 103.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.683594 105.769531 C 189.683594 105.652344 189.589844 105.558594 189.472656 105.558594 C 189.355469 105.558594 189.261719 105.652344 189.261719 105.769531 C 189.261719 105.886719 189.355469 105.980469 189.472656 105.980469 C 189.589844 105.980469 189.683594 105.886719 189.683594 105.769531 Z M 189.683594 105.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.148438 104.78125 C 191.148438 104.664062 191.054688 104.570312 190.9375 104.570312 C 190.820312 104.570312 190.726562 104.664062 190.726562 104.78125 C 190.726562 104.898438 190.820312 104.992188 190.9375 104.992188 C 191.054688 104.992188 191.148438 104.898438 191.148438 104.78125 Z M 191.148438 104.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.941406 104.890625 C 195.941406 104.773438 195.847656 104.679688 195.730469 104.679688 C 195.613281 104.679688 195.519531 104.773438 195.519531 104.890625 C 195.519531 105.007812 195.613281 105.101562 195.730469 105.101562 C 195.847656 105.101562 195.941406 105.007812 195.941406 104.890625 Z M 195.941406 104.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.398438 107.78125 C 192.398438 107.664062 192.304688 107.570312 192.1875 107.570312 C 192.070312 107.570312 191.976562 107.664062 191.976562 107.78125 C 191.976562 107.898438 192.070312 107.992188 192.1875 107.992188 C 192.304688 107.992188 192.398438 107.898438 192.398438 107.78125 Z M 192.398438 107.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.726562 108.027344 C 192.726562 107.910156 192.632812 107.816406 192.515625 107.816406 C 192.398438 107.816406 192.304688 107.910156 192.304688 108.027344 C 192.304688 108.144531 192.398438 108.238281 192.515625 108.238281 C 192.632812 108.238281 192.726562 108.144531 192.726562 108.027344 Z M 192.726562 108.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.84375 108.183594 C 193.84375 108.066406 193.75 107.972656 193.632812 107.972656 C 193.515625 107.972656 193.421875 108.066406 193.421875 108.183594 C 193.421875 108.300781 193.515625 108.394531 193.632812 108.394531 C 193.75 108.394531 193.84375 108.300781 193.84375 108.183594 Z M 193.84375 108.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.886719 107.703125 C 196.886719 107.585938 196.792969 107.492188 196.675781 107.492188 C 196.558594 107.492188 196.464844 107.585938 196.464844 107.703125 C 196.464844 107.820312 196.558594 107.914062 196.675781 107.914062 C 196.792969 107.914062 196.886719 107.820312 196.886719 107.703125 Z M 196.886719 107.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.976562 106.011719 C 199.976562 105.894531 199.882812 105.800781 199.765625 105.800781 C 199.648438 105.800781 199.554688 105.894531 199.554688 106.011719 C 199.554688 106.128906 199.648438 106.222656 199.765625 106.222656 C 199.882812 106.222656 199.976562 106.128906 199.976562 106.011719 Z M 199.976562 106.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.546875 105.917969 C 199.546875 105.800781 199.453125 105.707031 199.335938 105.707031 C 199.21875 105.707031 199.125 105.800781 199.125 105.917969 C 199.125 106.035156 199.21875 106.128906 199.335938 106.128906 C 199.453125 106.128906 199.546875 106.035156 199.546875 105.917969 Z M 199.546875 105.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.3125 105.257812 C 201.3125 105.140625 201.21875 105.046875 201.101562 105.046875 C 200.984375 105.046875 200.890625 105.140625 200.890625 105.257812 C 200.890625 105.375 200.984375 105.46875 201.101562 105.46875 C 201.21875 105.46875 201.3125 105.375 201.3125 105.257812 Z M 201.3125 105.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.957031 106.625 C 205.957031 106.507812 205.863281 106.414062 205.746094 106.414062 C 205.628906 106.414062 205.535156 106.507812 205.535156 106.625 C 205.535156 106.742188 205.628906 106.835938 205.746094 106.835938 C 205.863281 106.835938 205.957031 106.742188 205.957031 106.625 Z M 205.957031 106.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.886719 105.269531 C 207.886719 105.152344 207.792969 105.058594 207.675781 105.058594 C 207.558594 105.058594 207.464844 105.152344 207.464844 105.269531 C 207.464844 105.386719 207.558594 105.480469 207.675781 105.480469 C 207.792969 105.480469 207.886719 105.386719 207.886719 105.269531 Z M 207.886719 105.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.148438 102.71875 C 204.148438 102.601562 204.054688 102.507812 203.9375 102.507812 C 203.820312 102.507812 203.726562 102.601562 203.726562 102.71875 C 203.726562 102.835938 203.820312 102.929688 203.9375 102.929688 C 204.054688 102.929688 204.148438 102.835938 204.148438 102.71875 Z M 204.148438 102.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.925781 103.054688 C 204.925781 102.9375 204.832031 102.84375 204.714844 102.84375 C 204.597656 102.84375 204.503906 102.9375 204.503906 103.054688 C 204.503906 103.171875 204.597656 103.265625 204.714844 103.265625 C 204.832031 103.265625 204.925781 103.171875 204.925781 103.054688 Z M 204.925781 103.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.058594 101.535156 C 202.058594 101.417969 201.964844 101.324219 201.847656 101.324219 C 201.730469 101.324219 201.636719 101.417969 201.636719 101.535156 C 201.636719 101.652344 201.730469 101.746094 201.847656 101.746094 C 201.964844 101.746094 202.058594 101.652344 202.058594 101.535156 Z M 202.058594 101.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.363281 104.261719 C 198.363281 104.144531 198.269531 104.050781 198.152344 104.050781 C 198.035156 104.050781 197.941406 104.144531 197.941406 104.261719 C 197.941406 104.378906 198.035156 104.472656 198.152344 104.472656 C 198.269531 104.472656 198.363281 104.378906 198.363281 104.261719 Z M 198.363281 104.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.214844 104.328125 C 196.214844 104.210938 196.121094 104.117188 196.003906 104.117188 C 195.886719 104.117188 195.792969 104.210938 195.792969 104.328125 C 195.792969 104.445312 195.886719 104.539062 196.003906 104.539062 C 196.121094 104.539062 196.214844 104.445312 196.214844 104.328125 Z M 196.214844 104.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.042969 103.453125 C 199.042969 103.335938 198.949219 103.242188 198.832031 103.242188 C 198.714844 103.242188 198.621094 103.335938 198.621094 103.453125 C 198.621094 103.570312 198.714844 103.664062 198.832031 103.664062 C 198.949219 103.664062 199.042969 103.570312 199.042969 103.453125 Z M 199.042969 103.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.515625 102.539062 C 197.515625 102.421875 197.421875 102.328125 197.304688 102.328125 C 197.1875 102.328125 197.09375 102.421875 197.09375 102.539062 C 197.09375 102.65625 197.1875 102.75 197.304688 102.75 C 197.421875 102.75 197.515625 102.65625 197.515625 102.539062 Z M 197.515625 102.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.375 101.257812 C 197.375 101.140625 197.28125 101.046875 197.164062 101.046875 C 197.046875 101.046875 196.953125 101.140625 196.953125 101.257812 C 196.953125 101.375 197.046875 101.46875 197.164062 101.46875 C 197.28125 101.46875 197.375 101.375 197.375 101.257812 Z M 197.375 101.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.382812 100.578125 C 198.382812 100.460938 198.289062 100.367188 198.171875 100.367188 C 198.054688 100.367188 197.960938 100.460938 197.960938 100.578125 C 197.960938 100.695312 198.054688 100.789062 198.171875 100.789062 C 198.289062 100.789062 198.382812 100.695312 198.382812 100.578125 Z M 198.382812 100.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.820312 101.574219 C 194.820312 101.457031 194.726562 101.363281 194.609375 101.363281 C 194.492188 101.363281 194.398438 101.457031 194.398438 101.574219 C 194.398438 101.691406 194.492188 101.785156 194.609375 101.785156 C 194.726562 101.785156 194.820312 101.691406 194.820312 101.574219 Z M 194.820312 101.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.832031 102.867188 C 196.832031 102.75 196.738281 102.65625 196.621094 102.65625 C 196.503906 102.65625 196.410156 102.75 196.410156 102.867188 C 196.410156 102.984375 196.503906 103.078125 196.621094 103.078125 C 196.738281 103.078125 196.832031 102.984375 196.832031 102.867188 Z M 196.832031 102.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.683594 103.96875 C 195.683594 103.851562 195.589844 103.757812 195.472656 103.757812 C 195.355469 103.757812 195.261719 103.851562 195.261719 103.96875 C 195.261719 104.085938 195.355469 104.179688 195.472656 104.179688 C 195.589844 104.179688 195.683594 104.085938 195.683594 103.96875 Z M 195.683594 103.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.660156 105.550781 C 195.660156 105.433594 195.566406 105.339844 195.449219 105.339844 C 195.332031 105.339844 195.238281 105.433594 195.238281 105.550781 C 195.238281 105.667969 195.332031 105.761719 195.449219 105.761719 C 195.566406 105.761719 195.660156 105.667969 195.660156 105.550781 Z M 195.660156 105.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.863281 103.464844 C 194.863281 103.347656 194.769531 103.253906 194.652344 103.253906 C 194.535156 103.253906 194.441406 103.347656 194.441406 103.464844 C 194.441406 103.582031 194.535156 103.675781 194.652344 103.675781 C 194.769531 103.675781 194.863281 103.582031 194.863281 103.464844 Z M 194.863281 103.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.488281 97.800781 C 195.488281 97.683594 195.394531 97.589844 195.277344 97.589844 C 195.160156 97.589844 195.066406 97.683594 195.066406 97.800781 C 195.066406 97.917969 195.160156 98.011719 195.277344 98.011719 C 195.394531 98.011719 195.488281 97.917969 195.488281 97.800781 Z M 195.488281 97.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.527344 100.316406 C 196.527344 100.199219 196.433594 100.105469 196.316406 100.105469 C 196.199219 100.105469 196.105469 100.199219 196.105469 100.316406 C 196.105469 100.433594 196.199219 100.527344 196.316406 100.527344 C 196.433594 100.527344 196.527344 100.433594 196.527344 100.316406 Z M 196.527344 100.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.488281 100.535156 C 197.488281 100.417969 197.394531 100.324219 197.277344 100.324219 C 197.160156 100.324219 197.066406 100.417969 197.066406 100.535156 C 197.066406 100.652344 197.160156 100.746094 197.277344 100.746094 C 197.394531 100.746094 197.488281 100.652344 197.488281 100.535156 Z M 197.488281 100.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.398438 102.808594 C 198.398438 102.691406 198.304688 102.597656 198.1875 102.597656 C 198.070312 102.597656 197.976562 102.691406 197.976562 102.808594 C 197.976562 102.925781 198.070312 103.019531 198.1875 103.019531 C 198.304688 103.019531 198.398438 102.925781 198.398438 102.808594 Z M 198.398438 102.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.726562 100.929688 C 200.726562 100.8125 200.632812 100.71875 200.515625 100.71875 C 200.398438 100.71875 200.304688 100.8125 200.304688 100.929688 C 200.304688 101.046875 200.398438 101.140625 200.515625 101.140625 C 200.632812 101.140625 200.726562 101.046875 200.726562 100.929688 Z M 200.726562 100.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.632812 107.324219 C 201.632812 107.207031 201.539062 107.113281 201.421875 107.113281 C 201.304688 107.113281 201.210938 107.207031 201.210938 107.324219 C 201.210938 107.441406 201.304688 107.535156 201.421875 107.535156 C 201.539062 107.535156 201.632812 107.441406 201.632812 107.324219 Z M 201.632812 107.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.808594 106.671875 C 199.808594 106.554688 199.714844 106.460938 199.597656 106.460938 C 199.480469 106.460938 199.386719 106.554688 199.386719 106.671875 C 199.386719 106.789062 199.480469 106.882812 199.597656 106.882812 C 199.714844 106.882812 199.808594 106.789062 199.808594 106.671875 Z M 199.808594 106.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.019531 102.398438 C 200.019531 102.28125 199.925781 102.1875 199.808594 102.1875 C 199.691406 102.1875 199.597656 102.28125 199.597656 102.398438 C 199.597656 102.515625 199.691406 102.609375 199.808594 102.609375 C 199.925781 102.609375 200.019531 102.515625 200.019531 102.398438 Z M 200.019531 102.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.742188 101.351562 C 198.742188 101.234375 198.648438 101.140625 198.53125 101.140625 C 198.414062 101.140625 198.320312 101.234375 198.320312 101.351562 C 198.320312 101.46875 198.414062 101.5625 198.53125 101.5625 C 198.648438 101.5625 198.742188 101.46875 198.742188 101.351562 Z M 198.742188 101.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.4375 102.042969 C 199.4375 101.925781 199.34375 101.832031 199.226562 101.832031 C 199.109375 101.832031 199.015625 101.925781 199.015625 102.042969 C 199.015625 102.160156 199.109375 102.253906 199.226562 102.253906 C 199.34375 102.253906 199.4375 102.160156 199.4375 102.042969 Z M 199.4375 102.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.417969 101.945312 C 197.417969 101.828125 197.324219 101.734375 197.207031 101.734375 C 197.089844 101.734375 196.996094 101.828125 196.996094 101.945312 C 196.996094 102.0625 197.089844 102.15625 197.207031 102.15625 C 197.324219 102.15625 197.417969 102.0625 197.417969 101.945312 Z M 197.417969 101.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.890625 102.738281 C 197.890625 102.621094 197.796875 102.527344 197.679688 102.527344 C 197.5625 102.527344 197.46875 102.621094 197.46875 102.738281 C 197.46875 102.855469 197.5625 102.949219 197.679688 102.949219 C 197.796875 102.949219 197.890625 102.855469 197.890625 102.738281 Z M 197.890625 102.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.976562 102.695312 C 197.976562 102.578125 197.882812 102.484375 197.765625 102.484375 C 197.648438 102.484375 197.554688 102.578125 197.554688 102.695312 C 197.554688 102.8125 197.648438 102.90625 197.765625 102.90625 C 197.882812 102.90625 197.976562 102.8125 197.976562 102.695312 Z M 197.976562 102.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.792969 104.195312 C 199.792969 104.078125 199.699219 103.984375 199.582031 103.984375 C 199.464844 103.984375 199.371094 104.078125 199.371094 104.195312 C 199.371094 104.3125 199.464844 104.40625 199.582031 104.40625 C 199.699219 104.40625 199.792969 104.3125 199.792969 104.195312 Z M 199.792969 104.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.867188 101.039062 C 196.867188 100.921875 196.773438 100.828125 196.65625 100.828125 C 196.539062 100.828125 196.445312 100.921875 196.445312 101.039062 C 196.445312 101.15625 196.539062 101.25 196.65625 101.25 C 196.773438 101.25 196.867188 101.15625 196.867188 101.039062 Z M 196.867188 101.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.148438 97.394531 C 194.148438 97.277344 194.054688 97.183594 193.9375 97.183594 C 193.820312 97.183594 193.726562 97.277344 193.726562 97.394531 C 193.726562 97.511719 193.820312 97.605469 193.9375 97.605469 C 194.054688 97.605469 194.148438 97.511719 194.148438 97.394531 Z M 194.148438 97.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.929688 96.582031 C 192.929688 96.464844 192.835938 96.371094 192.71875 96.371094 C 192.601562 96.371094 192.507812 96.464844 192.507812 96.582031 C 192.507812 96.699219 192.601562 96.792969 192.71875 96.792969 C 192.835938 96.792969 192.929688 96.699219 192.929688 96.582031 Z M 192.929688 96.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.320312 97.273438 C 196.320312 97.15625 196.226562 97.0625 196.109375 97.0625 C 195.992188 97.0625 195.898438 97.15625 195.898438 97.273438 C 195.898438 97.390625 195.992188 97.484375 196.109375 97.484375 C 196.226562 97.484375 196.320312 97.390625 196.320312 97.273438 Z M 196.320312 97.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.710938 95.847656 C 199.710938 95.730469 199.617188 95.636719 199.5 95.636719 C 199.382812 95.636719 199.289062 95.730469 199.289062 95.847656 C 199.289062 95.964844 199.382812 96.058594 199.5 96.058594 C 199.617188 96.058594 199.710938 95.964844 199.710938 95.847656 Z M 199.710938 95.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.125 93.089844 C 201.125 92.972656 201.03125 92.878906 200.914062 92.878906 C 200.796875 92.878906 200.703125 92.972656 200.703125 93.089844 C 200.703125 93.207031 200.796875 93.300781 200.914062 93.300781 C 201.03125 93.300781 201.125 93.207031 201.125 93.089844 Z M 201.125 93.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.785156 90.238281 C 197.785156 90.121094 197.691406 90.027344 197.574219 90.027344 C 197.457031 90.027344 197.363281 90.121094 197.363281 90.238281 C 197.363281 90.355469 197.457031 90.449219 197.574219 90.449219 C 197.691406 90.449219 197.785156 90.355469 197.785156 90.238281 Z M 197.785156 90.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.824219 89.300781 C 199.824219 89.183594 199.730469 89.089844 199.613281 89.089844 C 199.496094 89.089844 199.402344 89.183594 199.402344 89.300781 C 199.402344 89.417969 199.496094 89.511719 199.613281 89.511719 C 199.730469 89.511719 199.824219 89.417969 199.824219 89.300781 Z M 199.824219 89.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.101562 85.492188 C 197.101562 85.375 197.007812 85.28125 196.890625 85.28125 C 196.773438 85.28125 196.679688 85.375 196.679688 85.492188 C 196.679688 85.609375 196.773438 85.703125 196.890625 85.703125 C 197.007812 85.703125 197.101562 85.609375 197.101562 85.492188 Z M 197.101562 85.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.9375 91.175781 C 194.9375 91.058594 194.84375 90.964844 194.726562 90.964844 C 194.609375 90.964844 194.515625 91.058594 194.515625 91.175781 C 194.515625 91.292969 194.609375 91.386719 194.726562 91.386719 C 194.84375 91.386719 194.9375 91.292969 194.9375 91.175781 Z M 194.9375 91.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.363281 93.484375 C 195.363281 93.367188 195.269531 93.273438 195.152344 93.273438 C 195.035156 93.273438 194.941406 93.367188 194.941406 93.484375 C 194.941406 93.601562 195.035156 93.695312 195.152344 93.695312 C 195.269531 93.695312 195.363281 93.601562 195.363281 93.484375 Z M 195.363281 93.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.957031 92.171875 C 195.957031 92.054688 195.863281 91.960938 195.746094 91.960938 C 195.628906 91.960938 195.535156 92.054688 195.535156 92.171875 C 195.535156 92.289062 195.628906 92.382812 195.746094 92.382812 C 195.863281 92.382812 195.957031 92.289062 195.957031 92.171875 Z M 195.957031 92.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.578125 90.476562 C 193.578125 90.359375 193.484375 90.265625 193.367188 90.265625 C 193.25 90.265625 193.15625 90.359375 193.15625 90.476562 C 193.15625 90.59375 193.25 90.6875 193.367188 90.6875 C 193.484375 90.6875 193.578125 90.59375 193.578125 90.476562 Z M 193.578125 90.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.527344 88.265625 C 191.527344 88.148438 191.433594 88.054688 191.316406 88.054688 C 191.199219 88.054688 191.105469 88.148438 191.105469 88.265625 C 191.105469 88.382812 191.199219 88.476562 191.316406 88.476562 C 191.433594 88.476562 191.527344 88.382812 191.527344 88.265625 Z M 191.527344 88.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.167969 85.957031 C 189.167969 85.839844 189.074219 85.746094 188.957031 85.746094 C 188.839844 85.746094 188.746094 85.839844 188.746094 85.957031 C 188.746094 86.074219 188.839844 86.167969 188.957031 86.167969 C 189.074219 86.167969 189.167969 86.074219 189.167969 85.957031 Z M 189.167969 85.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.871094 84.351562 C 190.871094 84.234375 190.777344 84.140625 190.660156 84.140625 C 190.542969 84.140625 190.449219 84.234375 190.449219 84.351562 C 190.449219 84.46875 190.542969 84.5625 190.660156 84.5625 C 190.777344 84.5625 190.871094 84.46875 190.871094 84.351562 Z M 190.871094 84.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.351562 86.523438 C 193.351562 86.40625 193.257812 86.3125 193.140625 86.3125 C 193.023438 86.3125 192.929688 86.40625 192.929688 86.523438 C 192.929688 86.640625 193.023438 86.734375 193.140625 86.734375 C 193.257812 86.734375 193.351562 86.640625 193.351562 86.523438 Z M 193.351562 86.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.507812 85.714844 C 194.507812 85.597656 194.414062 85.503906 194.296875 85.503906 C 194.179688 85.503906 194.085938 85.597656 194.085938 85.714844 C 194.085938 85.832031 194.179688 85.925781 194.296875 85.925781 C 194.414062 85.925781 194.507812 85.832031 194.507812 85.714844 Z M 194.507812 85.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.117188 87.847656 C 198.117188 87.730469 198.023438 87.636719 197.90625 87.636719 C 197.789062 87.636719 197.695312 87.730469 197.695312 87.847656 C 197.695312 87.964844 197.789062 88.058594 197.90625 88.058594 C 198.023438 88.058594 198.117188 87.964844 198.117188 87.847656 Z M 198.117188 87.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.707031 86.316406 C 196.707031 86.199219 196.613281 86.105469 196.496094 86.105469 C 196.378906 86.105469 196.285156 86.199219 196.285156 86.316406 C 196.285156 86.433594 196.378906 86.527344 196.496094 86.527344 C 196.613281 86.527344 196.707031 86.433594 196.707031 86.316406 Z M 196.707031 86.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.820312 83.941406 C 197.820312 83.824219 197.726562 83.730469 197.609375 83.730469 C 197.492188 83.730469 197.398438 83.824219 197.398438 83.941406 C 197.398438 84.058594 197.492188 84.152344 197.609375 84.152344 C 197.726562 84.152344 197.820312 84.058594 197.820312 83.941406 Z M 197.820312 83.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.1875 82.273438 C 197.1875 82.15625 197.09375 82.0625 196.976562 82.0625 C 196.859375 82.0625 196.765625 82.15625 196.765625 82.273438 C 196.765625 82.390625 196.859375 82.484375 196.976562 82.484375 C 197.09375 82.484375 197.1875 82.390625 197.1875 82.273438 Z M 197.1875 82.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.492188 79.324219 C 196.492188 79.207031 196.398438 79.113281 196.28125 79.113281 C 196.164062 79.113281 196.070312 79.207031 196.070312 79.324219 C 196.070312 79.441406 196.164062 79.535156 196.28125 79.535156 C 196.398438 79.535156 196.492188 79.441406 196.492188 79.324219 Z M 196.492188 79.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.207031 79.386719 C 197.207031 79.269531 197.113281 79.175781 196.996094 79.175781 C 196.878906 79.175781 196.785156 79.269531 196.785156 79.386719 C 196.785156 79.503906 196.878906 79.597656 196.996094 79.597656 C 197.113281 79.597656 197.207031 79.503906 197.207031 79.386719 Z M 197.207031 79.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.8125 78.269531 C 197.8125 78.152344 197.71875 78.058594 197.601562 78.058594 C 197.484375 78.058594 197.390625 78.152344 197.390625 78.269531 C 197.390625 78.386719 197.484375 78.480469 197.601562 78.480469 C 197.71875 78.480469 197.8125 78.386719 197.8125 78.269531 Z M 197.8125 78.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.773438 82.191406 C 199.773438 82.074219 199.679688 81.980469 199.5625 81.980469 C 199.445312 81.980469 199.351562 82.074219 199.351562 82.191406 C 199.351562 82.308594 199.445312 82.402344 199.5625 82.402344 C 199.679688 82.402344 199.773438 82.308594 199.773438 82.191406 Z M 199.773438 82.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.054688 81.425781 C 197.054688 81.308594 196.960938 81.214844 196.84375 81.214844 C 196.726562 81.214844 196.632812 81.308594 196.632812 81.425781 C 196.632812 81.542969 196.726562 81.636719 196.84375 81.636719 C 196.960938 81.636719 197.054688 81.542969 197.054688 81.425781 Z M 197.054688 81.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.660156 87.363281 C 196.660156 87.246094 196.566406 87.152344 196.449219 87.152344 C 196.332031 87.152344 196.238281 87.246094 196.238281 87.363281 C 196.238281 87.480469 196.332031 87.574219 196.449219 87.574219 C 196.566406 87.574219 196.660156 87.480469 196.660156 87.363281 Z M 196.660156 87.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.699219 90.339844 C 196.699219 90.222656 196.605469 90.128906 196.488281 90.128906 C 196.371094 90.128906 196.277344 90.222656 196.277344 90.339844 C 196.277344 90.457031 196.371094 90.550781 196.488281 90.550781 C 196.605469 90.550781 196.699219 90.457031 196.699219 90.339844 Z M 196.699219 90.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.804688 91.007812 C 198.804688 90.890625 198.710938 90.796875 198.59375 90.796875 C 198.476562 90.796875 198.382812 90.890625 198.382812 91.007812 C 198.382812 91.125 198.476562 91.21875 198.59375 91.21875 C 198.710938 91.21875 198.804688 91.125 198.804688 91.007812 Z M 198.804688 91.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.890625 90.09375 C 196.890625 89.976562 196.796875 89.882812 196.679688 89.882812 C 196.5625 89.882812 196.46875 89.976562 196.46875 90.09375 C 196.46875 90.210938 196.5625 90.304688 196.679688 90.304688 C 196.796875 90.304688 196.890625 90.210938 196.890625 90.09375 Z M 196.890625 90.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.992188 86.8125 C 197.992188 86.695312 197.898438 86.601562 197.78125 86.601562 C 197.664062 86.601562 197.570312 86.695312 197.570312 86.8125 C 197.570312 86.929688 197.664062 87.023438 197.78125 87.023438 C 197.898438 87.023438 197.992188 86.929688 197.992188 86.8125 Z M 197.992188 86.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.160156 88.628906 C 195.160156 88.511719 195.066406 88.417969 194.949219 88.417969 C 194.832031 88.417969 194.738281 88.511719 194.738281 88.628906 C 194.738281 88.746094 194.832031 88.839844 194.949219 88.839844 C 195.066406 88.839844 195.160156 88.746094 195.160156 88.628906 Z M 195.160156 88.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.347656 91.382812 C 193.347656 91.265625 193.253906 91.171875 193.136719 91.171875 C 193.019531 91.171875 192.925781 91.265625 192.925781 91.382812 C 192.925781 91.5 193.019531 91.59375 193.136719 91.59375 C 193.253906 91.59375 193.347656 91.5 193.347656 91.382812 Z M 193.347656 91.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.460938 91.089844 C 193.460938 90.972656 193.367188 90.878906 193.25 90.878906 C 193.132812 90.878906 193.039062 90.972656 193.039062 91.089844 C 193.039062 91.207031 193.132812 91.300781 193.25 91.300781 C 193.367188 91.300781 193.460938 91.207031 193.460938 91.089844 Z M 193.460938 91.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.289062 93.003906 C 195.289062 92.886719 195.195312 92.792969 195.078125 92.792969 C 194.960938 92.792969 194.867188 92.886719 194.867188 93.003906 C 194.867188 93.121094 194.960938 93.214844 195.078125 93.214844 C 195.195312 93.214844 195.289062 93.121094 195.289062 93.003906 Z M 195.289062 93.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.664062 93.96875 C 194.664062 93.851562 194.570312 93.757812 194.453125 93.757812 C 194.335938 93.757812 194.242188 93.851562 194.242188 93.96875 C 194.242188 94.085938 194.335938 94.179688 194.453125 94.179688 C 194.570312 94.179688 194.664062 94.085938 194.664062 93.96875 Z M 194.664062 93.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.234375 91.613281 C 195.234375 91.496094 195.140625 91.402344 195.023438 91.402344 C 194.90625 91.402344 194.8125 91.496094 194.8125 91.613281 C 194.8125 91.730469 194.90625 91.824219 195.023438 91.824219 C 195.140625 91.824219 195.234375 91.730469 195.234375 91.613281 Z M 195.234375 91.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.289062 90.953125 C 196.289062 90.835938 196.195312 90.742188 196.078125 90.742188 C 195.960938 90.742188 195.867188 90.835938 195.867188 90.953125 C 195.867188 91.070312 195.960938 91.164062 196.078125 91.164062 C 196.195312 91.164062 196.289062 91.070312 196.289062 90.953125 Z M 196.289062 90.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.933594 92.539062 C 196.933594 92.421875 196.839844 92.328125 196.722656 92.328125 C 196.605469 92.328125 196.511719 92.421875 196.511719 92.539062 C 196.511719 92.65625 196.605469 92.75 196.722656 92.75 C 196.839844 92.75 196.933594 92.65625 196.933594 92.539062 Z M 196.933594 92.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.351562 91.863281 C 194.351562 91.746094 194.257812 91.652344 194.140625 91.652344 C 194.023438 91.652344 193.929688 91.746094 193.929688 91.863281 C 193.929688 91.980469 194.023438 92.074219 194.140625 92.074219 C 194.257812 92.074219 194.351562 91.980469 194.351562 91.863281 Z M 194.351562 91.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.238281 90.996094 C 194.238281 90.878906 194.144531 90.785156 194.027344 90.785156 C 193.910156 90.785156 193.816406 90.878906 193.816406 90.996094 C 193.816406 91.113281 193.910156 91.207031 194.027344 91.207031 C 194.144531 91.207031 194.238281 91.113281 194.238281 90.996094 Z M 194.238281 90.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.523438 90.472656 C 191.523438 90.355469 191.429688 90.261719 191.3125 90.261719 C 191.195312 90.261719 191.101562 90.355469 191.101562 90.472656 C 191.101562 90.589844 191.195312 90.683594 191.3125 90.683594 C 191.429688 90.683594 191.523438 90.589844 191.523438 90.472656 Z M 191.523438 90.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.519531 94.015625 C 190.519531 93.898438 190.425781 93.804688 190.308594 93.804688 C 190.191406 93.804688 190.097656 93.898438 190.097656 94.015625 C 190.097656 94.132812 190.191406 94.226562 190.308594 94.226562 C 190.425781 94.226562 190.519531 94.132812 190.519531 94.015625 Z M 190.519531 94.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.234375 96.609375 C 192.234375 96.492188 192.140625 96.398438 192.023438 96.398438 C 191.90625 96.398438 191.8125 96.492188 191.8125 96.609375 C 191.8125 96.726562 191.90625 96.820312 192.023438 96.820312 C 192.140625 96.820312 192.234375 96.726562 192.234375 96.609375 Z M 192.234375 96.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.71875 96.96875 C 194.71875 96.851562 194.625 96.757812 194.507812 96.757812 C 194.390625 96.757812 194.296875 96.851562 194.296875 96.96875 C 194.296875 97.085938 194.390625 97.179688 194.507812 97.179688 C 194.625 97.179688 194.71875 97.085938 194.71875 96.96875 Z M 194.71875 96.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.917969 93.347656 C 195.917969 93.230469 195.824219 93.136719 195.707031 93.136719 C 195.589844 93.136719 195.496094 93.230469 195.496094 93.347656 C 195.496094 93.464844 195.589844 93.558594 195.707031 93.558594 C 195.824219 93.558594 195.917969 93.464844 195.917969 93.347656 Z M 195.917969 93.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.113281 96.863281 C 198.113281 96.746094 198.019531 96.652344 197.902344 96.652344 C 197.785156 96.652344 197.691406 96.746094 197.691406 96.863281 C 197.691406 96.980469 197.785156 97.074219 197.902344 97.074219 C 198.019531 97.074219 198.113281 96.980469 198.113281 96.863281 Z M 198.113281 96.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.832031 95.664062 C 197.832031 95.546875 197.738281 95.453125 197.621094 95.453125 C 197.503906 95.453125 197.410156 95.546875 197.410156 95.664062 C 197.410156 95.78125 197.503906 95.875 197.621094 95.875 C 197.738281 95.875 197.832031 95.78125 197.832031 95.664062 Z M 197.832031 95.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.71875 96.25 C 200.71875 96.132812 200.625 96.039062 200.507812 96.039062 C 200.390625 96.039062 200.296875 96.132812 200.296875 96.25 C 200.296875 96.367188 200.390625 96.460938 200.507812 96.460938 C 200.625 96.460938 200.71875 96.367188 200.71875 96.25 Z M 200.71875 96.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.164062 98.839844 C 199.164062 98.722656 199.070312 98.628906 198.953125 98.628906 C 198.835938 98.628906 198.742188 98.722656 198.742188 98.839844 C 198.742188 98.957031 198.835938 99.050781 198.953125 99.050781 C 199.070312 99.050781 199.164062 98.957031 199.164062 98.839844 Z M 199.164062 98.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.519531 100.796875 C 200.519531 100.679688 200.425781 100.585938 200.308594 100.585938 C 200.191406 100.585938 200.097656 100.679688 200.097656 100.796875 C 200.097656 100.914062 200.191406 101.007812 200.308594 101.007812 C 200.425781 101.007812 200.519531 100.914062 200.519531 100.796875 Z M 200.519531 100.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.941406 103.242188 C 202.941406 103.125 202.847656 103.03125 202.730469 103.03125 C 202.613281 103.03125 202.519531 103.125 202.519531 103.242188 C 202.519531 103.359375 202.613281 103.453125 202.730469 103.453125 C 202.847656 103.453125 202.941406 103.359375 202.941406 103.242188 Z M 202.941406 103.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.328125 104.355469 C 203.328125 104.238281 203.234375 104.144531 203.117188 104.144531 C 203 104.144531 202.90625 104.238281 202.90625 104.355469 C 202.90625 104.472656 203 104.566406 203.117188 104.566406 C 203.234375 104.566406 203.328125 104.472656 203.328125 104.355469 Z M 203.328125 104.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.6875 101.734375 C 202.6875 101.617188 202.59375 101.523438 202.476562 101.523438 C 202.359375 101.523438 202.265625 101.617188 202.265625 101.734375 C 202.265625 101.851562 202.359375 101.945312 202.476562 101.945312 C 202.59375 101.945312 202.6875 101.851562 202.6875 101.734375 Z M 202.6875 101.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.472656 99.570312 C 204.472656 99.453125 204.378906 99.359375 204.261719 99.359375 C 204.144531 99.359375 204.050781 99.453125 204.050781 99.570312 C 204.050781 99.6875 204.144531 99.78125 204.261719 99.78125 C 204.378906 99.78125 204.472656 99.6875 204.472656 99.570312 Z M 204.472656 99.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.347656 100.523438 C 204.347656 100.40625 204.253906 100.3125 204.136719 100.3125 C 204.019531 100.3125 203.925781 100.40625 203.925781 100.523438 C 203.925781 100.640625 204.019531 100.734375 204.136719 100.734375 C 204.253906 100.734375 204.347656 100.640625 204.347656 100.523438 Z M 204.347656 100.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.460938 99.398438 C 206.460938 99.28125 206.367188 99.1875 206.25 99.1875 C 206.132812 99.1875 206.039062 99.28125 206.039062 99.398438 C 206.039062 99.515625 206.132812 99.609375 206.25 99.609375 C 206.367188 99.609375 206.460938 99.515625 206.460938 99.398438 Z M 206.460938 99.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.96875 96.761719 C 206.96875 96.644531 206.875 96.550781 206.757812 96.550781 C 206.640625 96.550781 206.546875 96.644531 206.546875 96.761719 C 206.546875 96.878906 206.640625 96.972656 206.757812 96.972656 C 206.875 96.972656 206.96875 96.878906 206.96875 96.761719 Z M 206.96875 96.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.921875 95.285156 C 207.921875 95.167969 207.828125 95.074219 207.710938 95.074219 C 207.59375 95.074219 207.5 95.167969 207.5 95.285156 C 207.5 95.402344 207.59375 95.496094 207.710938 95.496094 C 207.828125 95.496094 207.921875 95.402344 207.921875 95.285156 Z M 207.921875 95.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.6875 98.703125 C 209.6875 98.585938 209.59375 98.492188 209.476562 98.492188 C 209.359375 98.492188 209.265625 98.585938 209.265625 98.703125 C 209.265625 98.820312 209.359375 98.914062 209.476562 98.914062 C 209.59375 98.914062 209.6875 98.820312 209.6875 98.703125 Z M 209.6875 98.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.105469 96.003906 C 208.105469 95.886719 208.011719 95.792969 207.894531 95.792969 C 207.777344 95.792969 207.683594 95.886719 207.683594 96.003906 C 207.683594 96.121094 207.777344 96.214844 207.894531 96.214844 C 208.011719 96.214844 208.105469 96.121094 208.105469 96.003906 Z M 208.105469 96.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.355469 94.476562 C 207.355469 94.359375 207.261719 94.265625 207.144531 94.265625 C 207.027344 94.265625 206.933594 94.359375 206.933594 94.476562 C 206.933594 94.59375 207.027344 94.6875 207.144531 94.6875 C 207.261719 94.6875 207.355469 94.59375 207.355469 94.476562 Z M 207.355469 94.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.300781 93.527344 C 204.300781 93.410156 204.207031 93.316406 204.089844 93.316406 C 203.972656 93.316406 203.878906 93.410156 203.878906 93.527344 C 203.878906 93.644531 203.972656 93.738281 204.089844 93.738281 C 204.207031 93.738281 204.300781 93.644531 204.300781 93.527344 Z M 204.300781 93.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.796875 91.324219 C 207.796875 91.207031 207.703125 91.113281 207.585938 91.113281 C 207.46875 91.113281 207.375 91.207031 207.375 91.324219 C 207.375 91.441406 207.46875 91.535156 207.585938 91.535156 C 207.703125 91.535156 207.796875 91.441406 207.796875 91.324219 Z M 207.796875 91.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.070312 93.09375 C 211.070312 92.976562 210.976562 92.882812 210.859375 92.882812 C 210.742188 92.882812 210.648438 92.976562 210.648438 93.09375 C 210.648438 93.210938 210.742188 93.304688 210.859375 93.304688 C 210.976562 93.304688 211.070312 93.210938 211.070312 93.09375 Z M 211.070312 93.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.300781 91.785156 C 209.300781 91.667969 209.207031 91.574219 209.089844 91.574219 C 208.972656 91.574219 208.878906 91.667969 208.878906 91.785156 C 208.878906 91.902344 208.972656 91.996094 209.089844 91.996094 C 209.207031 91.996094 209.300781 91.902344 209.300781 91.785156 Z M 209.300781 91.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.390625 92.757812 C 206.390625 92.640625 206.296875 92.546875 206.179688 92.546875 C 206.0625 92.546875 205.96875 92.640625 205.96875 92.757812 C 205.96875 92.875 206.0625 92.96875 206.179688 92.96875 C 206.296875 92.96875 206.390625 92.875 206.390625 92.757812 Z M 206.390625 92.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.03125 92.117188 C 205.03125 92 204.9375 91.90625 204.820312 91.90625 C 204.703125 91.90625 204.609375 92 204.609375 92.117188 C 204.609375 92.234375 204.703125 92.328125 204.820312 92.328125 C 204.9375 92.328125 205.03125 92.234375 205.03125 92.117188 Z M 205.03125 92.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.792969 92.871094 C 206.792969 92.753906 206.699219 92.660156 206.582031 92.660156 C 206.464844 92.660156 206.371094 92.753906 206.371094 92.871094 C 206.371094 92.988281 206.464844 93.082031 206.582031 93.082031 C 206.699219 93.082031 206.792969 92.988281 206.792969 92.871094 Z M 206.792969 92.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.339844 94.3125 C 208.339844 94.195312 208.246094 94.101562 208.128906 94.101562 C 208.011719 94.101562 207.917969 94.195312 207.917969 94.3125 C 207.917969 94.429688 208.011719 94.523438 208.128906 94.523438 C 208.246094 94.523438 208.339844 94.429688 208.339844 94.3125 Z M 208.339844 94.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.976562 92.964844 C 205.976562 92.847656 205.882812 92.753906 205.765625 92.753906 C 205.648438 92.753906 205.554688 92.847656 205.554688 92.964844 C 205.554688 93.082031 205.648438 93.175781 205.765625 93.175781 C 205.882812 93.175781 205.976562 93.082031 205.976562 92.964844 Z M 205.976562 92.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.320312 97.683594 C 204.320312 97.566406 204.226562 97.472656 204.109375 97.472656 C 203.992188 97.472656 203.898438 97.566406 203.898438 97.683594 C 203.898438 97.800781 203.992188 97.894531 204.109375 97.894531 C 204.226562 97.894531 204.320312 97.800781 204.320312 97.683594 Z M 204.320312 97.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.558594 95.976562 C 203.558594 95.859375 203.464844 95.765625 203.347656 95.765625 C 203.230469 95.765625 203.136719 95.859375 203.136719 95.976562 C 203.136719 96.09375 203.230469 96.1875 203.347656 96.1875 C 203.464844 96.1875 203.558594 96.09375 203.558594 95.976562 Z M 203.558594 95.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.808594 97.117188 C 204.808594 97 204.714844 96.90625 204.597656 96.90625 C 204.480469 96.90625 204.386719 97 204.386719 97.117188 C 204.386719 97.234375 204.480469 97.328125 204.597656 97.328125 C 204.714844 97.328125 204.808594 97.234375 204.808594 97.117188 Z M 204.808594 97.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.6875 95.578125 C 203.6875 95.460938 203.59375 95.367188 203.476562 95.367188 C 203.359375 95.367188 203.265625 95.460938 203.265625 95.578125 C 203.265625 95.695312 203.359375 95.789062 203.476562 95.789062 C 203.59375 95.789062 203.6875 95.695312 203.6875 95.578125 Z M 203.6875 95.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.140625 96.164062 C 202.140625 96.046875 202.046875 95.953125 201.929688 95.953125 C 201.8125 95.953125 201.71875 96.046875 201.71875 96.164062 C 201.71875 96.28125 201.8125 96.375 201.929688 96.375 C 202.046875 96.375 202.140625 96.28125 202.140625 96.164062 Z M 202.140625 96.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.164062 96.222656 C 203.164062 96.105469 203.070312 96.011719 202.953125 96.011719 C 202.835938 96.011719 202.742188 96.105469 202.742188 96.222656 C 202.742188 96.339844 202.835938 96.433594 202.953125 96.433594 C 203.070312 96.433594 203.164062 96.339844 203.164062 96.222656 Z M 203.164062 96.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.820312 97.863281 C 203.820312 97.746094 203.726562 97.652344 203.609375 97.652344 C 203.492188 97.652344 203.398438 97.746094 203.398438 97.863281 C 203.398438 97.980469 203.492188 98.074219 203.609375 98.074219 C 203.726562 98.074219 203.820312 97.980469 203.820312 97.863281 Z M 203.820312 97.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.507812 98.636719 C 203.507812 98.519531 203.414062 98.425781 203.296875 98.425781 C 203.179688 98.425781 203.085938 98.519531 203.085938 98.636719 C 203.085938 98.753906 203.179688 98.847656 203.296875 98.847656 C 203.414062 98.847656 203.507812 98.753906 203.507812 98.636719 Z M 203.507812 98.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.527344 100.695312 C 203.527344 100.578125 203.433594 100.484375 203.316406 100.484375 C 203.199219 100.484375 203.105469 100.578125 203.105469 100.695312 C 203.105469 100.8125 203.199219 100.90625 203.316406 100.90625 C 203.433594 100.90625 203.527344 100.8125 203.527344 100.695312 Z M 203.527344 100.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.949219 97.824219 C 205.949219 97.707031 205.855469 97.613281 205.738281 97.613281 C 205.621094 97.613281 205.527344 97.707031 205.527344 97.824219 C 205.527344 97.941406 205.621094 98.035156 205.738281 98.035156 C 205.855469 98.035156 205.949219 97.941406 205.949219 97.824219 Z M 205.949219 97.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.558594 95.300781 C 204.558594 95.183594 204.464844 95.089844 204.347656 95.089844 C 204.230469 95.089844 204.136719 95.183594 204.136719 95.300781 C 204.136719 95.417969 204.230469 95.511719 204.347656 95.511719 C 204.464844 95.511719 204.558594 95.417969 204.558594 95.300781 Z M 204.558594 95.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.457031 96.5625 C 204.457031 96.445312 204.363281 96.351562 204.246094 96.351562 C 204.128906 96.351562 204.035156 96.445312 204.035156 96.5625 C 204.035156 96.679688 204.128906 96.773438 204.246094 96.773438 C 204.363281 96.773438 204.457031 96.679688 204.457031 96.5625 Z M 204.457031 96.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.949219 97.367188 C 204.949219 97.25 204.855469 97.15625 204.738281 97.15625 C 204.621094 97.15625 204.527344 97.25 204.527344 97.367188 C 204.527344 97.484375 204.621094 97.578125 204.738281 97.578125 C 204.855469 97.578125 204.949219 97.484375 204.949219 97.367188 Z M 204.949219 97.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.285156 95.277344 C 204.285156 95.160156 204.191406 95.066406 204.074219 95.066406 C 203.957031 95.066406 203.863281 95.160156 203.863281 95.277344 C 203.863281 95.394531 203.957031 95.488281 204.074219 95.488281 C 204.191406 95.488281 204.285156 95.394531 204.285156 95.277344 Z M 204.285156 95.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.394531 94.992188 C 201.394531 94.875 201.300781 94.78125 201.183594 94.78125 C 201.066406 94.78125 200.972656 94.875 200.972656 94.992188 C 200.972656 95.109375 201.066406 95.203125 201.183594 95.203125 C 201.300781 95.203125 201.394531 95.109375 201.394531 94.992188 Z M 201.394531 94.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.699219 94.496094 C 204.699219 94.378906 204.605469 94.285156 204.488281 94.285156 C 204.371094 94.285156 204.277344 94.378906 204.277344 94.496094 C 204.277344 94.613281 204.371094 94.707031 204.488281 94.707031 C 204.605469 94.707031 204.699219 94.613281 204.699219 94.496094 Z M 204.699219 94.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.640625 95.210938 C 203.640625 95.09375 203.546875 95 203.429688 95 C 203.3125 95 203.21875 95.09375 203.21875 95.210938 C 203.21875 95.328125 203.3125 95.421875 203.429688 95.421875 C 203.546875 95.421875 203.640625 95.328125 203.640625 95.210938 Z M 203.640625 95.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.585938 96.058594 C 205.585938 95.941406 205.492188 95.847656 205.375 95.847656 C 205.257812 95.847656 205.164062 95.941406 205.164062 96.058594 C 205.164062 96.175781 205.257812 96.269531 205.375 96.269531 C 205.492188 96.269531 205.585938 96.175781 205.585938 96.058594 Z M 205.585938 96.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.335938 95.742188 C 208.335938 95.625 208.242188 95.53125 208.125 95.53125 C 208.007812 95.53125 207.914062 95.625 207.914062 95.742188 C 207.914062 95.859375 208.007812 95.953125 208.125 95.953125 C 208.242188 95.953125 208.335938 95.859375 208.335938 95.742188 Z M 208.335938 95.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.984375 99.441406 C 205.984375 99.324219 205.890625 99.230469 205.773438 99.230469 C 205.65625 99.230469 205.5625 99.324219 205.5625 99.441406 C 205.5625 99.558594 205.65625 99.652344 205.773438 99.652344 C 205.890625 99.652344 205.984375 99.558594 205.984375 99.441406 Z M 205.984375 99.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.695312 99.992188 C 207.695312 99.875 207.601562 99.78125 207.484375 99.78125 C 207.367188 99.78125 207.273438 99.875 207.273438 99.992188 C 207.273438 100.109375 207.367188 100.203125 207.484375 100.203125 C 207.601562 100.203125 207.695312 100.109375 207.695312 99.992188 Z M 207.695312 99.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.566406 101.652344 C 208.566406 101.535156 208.472656 101.441406 208.355469 101.441406 C 208.238281 101.441406 208.144531 101.535156 208.144531 101.652344 C 208.144531 101.769531 208.238281 101.863281 208.355469 101.863281 C 208.472656 101.863281 208.566406 101.769531 208.566406 101.652344 Z M 208.566406 101.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.128906 104.144531 C 207.128906 104.027344 207.035156 103.933594 206.917969 103.933594 C 206.800781 103.933594 206.707031 104.027344 206.707031 104.144531 C 206.707031 104.261719 206.800781 104.355469 206.917969 104.355469 C 207.035156 104.355469 207.128906 104.261719 207.128906 104.144531 Z M 207.128906 104.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.230469 105.335938 C 206.230469 105.21875 206.136719 105.125 206.019531 105.125 C 205.902344 105.125 205.808594 105.21875 205.808594 105.335938 C 205.808594 105.453125 205.902344 105.546875 206.019531 105.546875 C 206.136719 105.546875 206.230469 105.453125 206.230469 105.335938 Z M 206.230469 105.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.722656 107.285156 C 204.722656 107.167969 204.628906 107.074219 204.511719 107.074219 C 204.394531 107.074219 204.300781 107.167969 204.300781 107.285156 C 204.300781 107.402344 204.394531 107.496094 204.511719 107.496094 C 204.628906 107.496094 204.722656 107.402344 204.722656 107.285156 Z M 204.722656 107.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.566406 109.609375 C 205.566406 109.492188 205.472656 109.398438 205.355469 109.398438 C 205.238281 109.398438 205.144531 109.492188 205.144531 109.609375 C 205.144531 109.726562 205.238281 109.820312 205.355469 109.820312 C 205.472656 109.820312 205.566406 109.726562 205.566406 109.609375 Z M 205.566406 109.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.050781 110.617188 C 202.050781 110.5 201.957031 110.40625 201.839844 110.40625 C 201.722656 110.40625 201.628906 110.5 201.628906 110.617188 C 201.628906 110.734375 201.722656 110.828125 201.839844 110.828125 C 201.957031 110.828125 202.050781 110.734375 202.050781 110.617188 Z M 202.050781 110.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.742188 110.488281 C 201.742188 110.371094 201.648438 110.277344 201.53125 110.277344 C 201.414062 110.277344 201.320312 110.371094 201.320312 110.488281 C 201.320312 110.605469 201.414062 110.699219 201.53125 110.699219 C 201.648438 110.699219 201.742188 110.605469 201.742188 110.488281 Z M 201.742188 110.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.167969 109.601562 C 204.167969 109.484375 204.074219 109.390625 203.957031 109.390625 C 203.839844 109.390625 203.746094 109.484375 203.746094 109.601562 C 203.746094 109.71875 203.839844 109.8125 203.957031 109.8125 C 204.074219 109.8125 204.167969 109.71875 204.167969 109.601562 Z M 204.167969 109.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.183594 110.628906 C 206.183594 110.511719 206.089844 110.417969 205.972656 110.417969 C 205.855469 110.417969 205.761719 110.511719 205.761719 110.628906 C 205.761719 110.746094 205.855469 110.839844 205.972656 110.839844 C 206.089844 110.839844 206.183594 110.746094 206.183594 110.628906 Z M 206.183594 110.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.175781 111.816406 C 205.175781 111.699219 205.082031 111.605469 204.964844 111.605469 C 204.847656 111.605469 204.753906 111.699219 204.753906 111.816406 C 204.753906 111.933594 204.847656 112.027344 204.964844 112.027344 C 205.082031 112.027344 205.175781 111.933594 205.175781 111.816406 Z M 205.175781 111.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.480469 115.136719 C 202.480469 115.019531 202.386719 114.925781 202.269531 114.925781 C 202.152344 114.925781 202.058594 115.019531 202.058594 115.136719 C 202.058594 115.253906 202.152344 115.347656 202.269531 115.347656 C 202.386719 115.347656 202.480469 115.253906 202.480469 115.136719 Z M 202.480469 115.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.628906 118.972656 C 200.628906 118.855469 200.535156 118.761719 200.417969 118.761719 C 200.300781 118.761719 200.207031 118.855469 200.207031 118.972656 C 200.207031 119.089844 200.300781 119.183594 200.417969 119.183594 C 200.535156 119.183594 200.628906 119.089844 200.628906 118.972656 Z M 200.628906 118.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.78125 116.546875 C 203.78125 116.429688 203.6875 116.335938 203.570312 116.335938 C 203.453125 116.335938 203.359375 116.429688 203.359375 116.546875 C 203.359375 116.664062 203.453125 116.757812 203.570312 116.757812 C 203.6875 116.757812 203.78125 116.664062 203.78125 116.546875 Z M 203.78125 116.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.996094 114.492188 C 206.996094 114.375 206.902344 114.28125 206.785156 114.28125 C 206.667969 114.28125 206.574219 114.375 206.574219 114.492188 C 206.574219 114.609375 206.667969 114.703125 206.785156 114.703125 C 206.902344 114.703125 206.996094 114.609375 206.996094 114.492188 Z M 206.996094 114.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.550781 115.910156 C 207.550781 115.792969 207.457031 115.699219 207.339844 115.699219 C 207.222656 115.699219 207.128906 115.792969 207.128906 115.910156 C 207.128906 116.027344 207.222656 116.121094 207.339844 116.121094 C 207.457031 116.121094 207.550781 116.027344 207.550781 115.910156 Z M 207.550781 115.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.40625 114.980469 C 209.40625 114.863281 209.3125 114.769531 209.195312 114.769531 C 209.078125 114.769531 208.984375 114.863281 208.984375 114.980469 C 208.984375 115.097656 209.078125 115.191406 209.195312 115.191406 C 209.3125 115.191406 209.40625 115.097656 209.40625 114.980469 Z M 209.40625 114.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.738281 114.511719 C 211.738281 114.394531 211.644531 114.300781 211.527344 114.300781 C 211.410156 114.300781 211.316406 114.394531 211.316406 114.511719 C 211.316406 114.628906 211.410156 114.722656 211.527344 114.722656 C 211.644531 114.722656 211.738281 114.628906 211.738281 114.511719 Z M 211.738281 114.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.035156 114.300781 C 213.035156 114.183594 212.941406 114.089844 212.824219 114.089844 C 212.707031 114.089844 212.613281 114.183594 212.613281 114.300781 C 212.613281 114.417969 212.707031 114.511719 212.824219 114.511719 C 212.941406 114.511719 213.035156 114.417969 213.035156 114.300781 Z M 213.035156 114.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.5 113.257812 C 211.5 113.140625 211.40625 113.046875 211.289062 113.046875 C 211.171875 113.046875 211.078125 113.140625 211.078125 113.257812 C 211.078125 113.375 211.171875 113.46875 211.289062 113.46875 C 211.40625 113.46875 211.5 113.375 211.5 113.257812 Z M 211.5 113.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.53125 117.539062 C 212.53125 117.421875 212.4375 117.328125 212.320312 117.328125 C 212.203125 117.328125 212.109375 117.421875 212.109375 117.539062 C 212.109375 117.65625 212.203125 117.75 212.320312 117.75 C 212.4375 117.75 212.53125 117.65625 212.53125 117.539062 Z M 212.53125 117.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.753906 117.496094 C 213.753906 117.378906 213.660156 117.285156 213.542969 117.285156 C 213.425781 117.285156 213.332031 117.378906 213.332031 117.496094 C 213.332031 117.613281 213.425781 117.707031 213.542969 117.707031 C 213.660156 117.707031 213.753906 117.613281 213.753906 117.496094 Z M 213.753906 117.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.277344 118.1875 C 215.277344 118.070312 215.183594 117.976562 215.066406 117.976562 C 214.949219 117.976562 214.855469 118.070312 214.855469 118.1875 C 214.855469 118.304688 214.949219 118.398438 215.066406 118.398438 C 215.183594 118.398438 215.277344 118.304688 215.277344 118.1875 Z M 215.277344 118.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.460938 119.535156 C 217.460938 119.417969 217.367188 119.324219 217.25 119.324219 C 217.132812 119.324219 217.039062 119.417969 217.039062 119.535156 C 217.039062 119.652344 217.132812 119.746094 217.25 119.746094 C 217.367188 119.746094 217.460938 119.652344 217.460938 119.535156 Z M 217.460938 119.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.90625 121.199219 C 218.90625 121.082031 218.8125 120.988281 218.695312 120.988281 C 218.578125 120.988281 218.484375 121.082031 218.484375 121.199219 C 218.484375 121.316406 218.578125 121.410156 218.695312 121.410156 C 218.8125 121.410156 218.90625 121.316406 218.90625 121.199219 Z M 218.90625 121.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.011719 119.285156 C 218.011719 119.167969 217.917969 119.074219 217.800781 119.074219 C 217.683594 119.074219 217.589844 119.167969 217.589844 119.285156 C 217.589844 119.402344 217.683594 119.496094 217.800781 119.496094 C 217.917969 119.496094 218.011719 119.402344 218.011719 119.285156 Z M 218.011719 119.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.15625 114.40625 C 219.15625 114.289062 219.0625 114.195312 218.945312 114.195312 C 218.828125 114.195312 218.734375 114.289062 218.734375 114.40625 C 218.734375 114.523438 218.828125 114.617188 218.945312 114.617188 C 219.0625 114.617188 219.15625 114.523438 219.15625 114.40625 Z M 219.15625 114.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.914062 113.144531 C 218.914062 113.027344 218.820312 112.933594 218.703125 112.933594 C 218.585938 112.933594 218.492188 113.027344 218.492188 113.144531 C 218.492188 113.261719 218.585938 113.355469 218.703125 113.355469 C 218.820312 113.355469 218.914062 113.261719 218.914062 113.144531 Z M 218.914062 113.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.152344 111.78125 C 219.152344 111.664062 219.058594 111.570312 218.941406 111.570312 C 218.824219 111.570312 218.730469 111.664062 218.730469 111.78125 C 218.730469 111.898438 218.824219 111.992188 218.941406 111.992188 C 219.058594 111.992188 219.152344 111.898438 219.152344 111.78125 Z M 219.152344 111.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.160156 109.460938 C 224.160156 109.34375 224.066406 109.25 223.949219 109.25 C 223.832031 109.25 223.738281 109.34375 223.738281 109.460938 C 223.738281 109.578125 223.832031 109.671875 223.949219 109.671875 C 224.066406 109.671875 224.160156 109.578125 224.160156 109.460938 Z M 224.160156 109.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.550781 109.769531 C 225.550781 109.652344 225.457031 109.558594 225.339844 109.558594 C 225.222656 109.558594 225.128906 109.652344 225.128906 109.769531 C 225.128906 109.886719 225.222656 109.980469 225.339844 109.980469 C 225.457031 109.980469 225.550781 109.886719 225.550781 109.769531 Z M 225.550781 109.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.992188 109.238281 C 227.992188 109.121094 227.898438 109.027344 227.78125 109.027344 C 227.664062 109.027344 227.570312 109.121094 227.570312 109.238281 C 227.570312 109.355469 227.664062 109.449219 227.78125 109.449219 C 227.898438 109.449219 227.992188 109.355469 227.992188 109.238281 Z M 227.992188 109.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.496094 110.554688 C 226.496094 110.4375 226.402344 110.34375 226.285156 110.34375 C 226.167969 110.34375 226.074219 110.4375 226.074219 110.554688 C 226.074219 110.671875 226.167969 110.765625 226.285156 110.765625 C 226.402344 110.765625 226.496094 110.671875 226.496094 110.554688 Z M 226.496094 110.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.902344 108.457031 C 226.902344 108.339844 226.808594 108.246094 226.691406 108.246094 C 226.574219 108.246094 226.480469 108.339844 226.480469 108.457031 C 226.480469 108.574219 226.574219 108.667969 226.691406 108.667969 C 226.808594 108.667969 226.902344 108.574219 226.902344 108.457031 Z M 226.902344 108.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.175781 105.46875 C 230.175781 105.351562 230.082031 105.257812 229.964844 105.257812 C 229.847656 105.257812 229.753906 105.351562 229.753906 105.46875 C 229.753906 105.585938 229.847656 105.679688 229.964844 105.679688 C 230.082031 105.679688 230.175781 105.585938 230.175781 105.46875 Z M 230.175781 105.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.613281 103.285156 C 231.613281 103.167969 231.519531 103.074219 231.402344 103.074219 C 231.285156 103.074219 231.191406 103.167969 231.191406 103.285156 C 231.191406 103.402344 231.285156 103.496094 231.402344 103.496094 C 231.519531 103.496094 231.613281 103.402344 231.613281 103.285156 Z M 231.613281 103.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.519531 101.691406 C 231.519531 101.574219 231.425781 101.480469 231.308594 101.480469 C 231.191406 101.480469 231.097656 101.574219 231.097656 101.691406 C 231.097656 101.808594 231.191406 101.902344 231.308594 101.902344 C 231.425781 101.902344 231.519531 101.808594 231.519531 101.691406 Z M 231.519531 101.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.378906 103.582031 C 227.378906 103.464844 227.285156 103.371094 227.167969 103.371094 C 227.050781 103.371094 226.957031 103.464844 226.957031 103.582031 C 226.957031 103.699219 227.050781 103.792969 227.167969 103.792969 C 227.285156 103.792969 227.378906 103.699219 227.378906 103.582031 Z M 227.378906 103.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.417969 104.433594 C 226.417969 104.316406 226.324219 104.222656 226.207031 104.222656 C 226.089844 104.222656 225.996094 104.316406 225.996094 104.433594 C 225.996094 104.550781 226.089844 104.644531 226.207031 104.644531 C 226.324219 104.644531 226.417969 104.550781 226.417969 104.433594 Z M 226.417969 104.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.363281 104.433594 C 226.363281 104.316406 226.269531 104.222656 226.152344 104.222656 C 226.035156 104.222656 225.941406 104.316406 225.941406 104.433594 C 225.941406 104.550781 226.035156 104.644531 226.152344 104.644531 C 226.269531 104.644531 226.363281 104.550781 226.363281 104.433594 Z M 226.363281 104.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.617188 102.632812 C 225.617188 102.515625 225.523438 102.421875 225.40625 102.421875 C 225.289062 102.421875 225.195312 102.515625 225.195312 102.632812 C 225.195312 102.75 225.289062 102.84375 225.40625 102.84375 C 225.523438 102.84375 225.617188 102.75 225.617188 102.632812 Z M 225.617188 102.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.535156 103.59375 C 223.535156 103.476562 223.441406 103.382812 223.324219 103.382812 C 223.207031 103.382812 223.113281 103.476562 223.113281 103.59375 C 223.113281 103.710938 223.207031 103.804688 223.324219 103.804688 C 223.441406 103.804688 223.535156 103.710938 223.535156 103.59375 Z M 223.535156 103.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.511719 102.914062 C 223.511719 102.796875 223.417969 102.703125 223.300781 102.703125 C 223.183594 102.703125 223.089844 102.796875 223.089844 102.914062 C 223.089844 103.03125 223.183594 103.125 223.300781 103.125 C 223.417969 103.125 223.511719 103.03125 223.511719 102.914062 Z M 223.511719 102.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.054688 102.898438 C 222.054688 102.78125 221.960938 102.6875 221.84375 102.6875 C 221.726562 102.6875 221.632812 102.78125 221.632812 102.898438 C 221.632812 103.015625 221.726562 103.109375 221.84375 103.109375 C 221.960938 103.109375 222.054688 103.015625 222.054688 102.898438 Z M 222.054688 102.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.675781 102.433594 C 222.675781 102.316406 222.582031 102.222656 222.464844 102.222656 C 222.347656 102.222656 222.253906 102.316406 222.253906 102.433594 C 222.253906 102.550781 222.347656 102.644531 222.464844 102.644531 C 222.582031 102.644531 222.675781 102.550781 222.675781 102.433594 Z M 222.675781 102.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.65625 97.253906 C 224.65625 97.136719 224.5625 97.042969 224.445312 97.042969 C 224.328125 97.042969 224.234375 97.136719 224.234375 97.253906 C 224.234375 97.371094 224.328125 97.464844 224.445312 97.464844 C 224.5625 97.464844 224.65625 97.371094 224.65625 97.253906 Z M 224.65625 97.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.890625 98.605469 C 221.890625 98.488281 221.796875 98.394531 221.679688 98.394531 C 221.5625 98.394531 221.46875 98.488281 221.46875 98.605469 C 221.46875 98.722656 221.5625 98.816406 221.679688 98.816406 C 221.796875 98.816406 221.890625 98.722656 221.890625 98.605469 Z M 221.890625 98.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.941406 98.550781 C 220.941406 98.433594 220.847656 98.339844 220.730469 98.339844 C 220.613281 98.339844 220.519531 98.433594 220.519531 98.550781 C 220.519531 98.667969 220.613281 98.761719 220.730469 98.761719 C 220.847656 98.761719 220.941406 98.667969 220.941406 98.550781 Z M 220.941406 98.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.660156 98.632812 C 219.660156 98.515625 219.566406 98.421875 219.449219 98.421875 C 219.332031 98.421875 219.238281 98.515625 219.238281 98.632812 C 219.238281 98.75 219.332031 98.84375 219.449219 98.84375 C 219.566406 98.84375 219.660156 98.75 219.660156 98.632812 Z M 219.660156 98.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.777344 98.558594 C 220.777344 98.441406 220.683594 98.347656 220.566406 98.347656 C 220.449219 98.347656 220.355469 98.441406 220.355469 98.558594 C 220.355469 98.675781 220.449219 98.769531 220.566406 98.769531 C 220.683594 98.769531 220.777344 98.675781 220.777344 98.558594 Z M 220.777344 98.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.515625 101.28125 C 220.515625 101.164062 220.421875 101.070312 220.304688 101.070312 C 220.1875 101.070312 220.09375 101.164062 220.09375 101.28125 C 220.09375 101.398438 220.1875 101.492188 220.304688 101.492188 C 220.421875 101.492188 220.515625 101.398438 220.515625 101.28125 Z M 220.515625 101.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.480469 105.84375 C 216.480469 105.726562 216.386719 105.632812 216.269531 105.632812 C 216.152344 105.632812 216.058594 105.726562 216.058594 105.84375 C 216.058594 105.960938 216.152344 106.054688 216.269531 106.054688 C 216.386719 106.054688 216.480469 105.960938 216.480469 105.84375 Z M 216.480469 105.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.078125 104.992188 C 218.078125 104.875 217.984375 104.78125 217.867188 104.78125 C 217.75 104.78125 217.65625 104.875 217.65625 104.992188 C 217.65625 105.109375 217.75 105.203125 217.867188 105.203125 C 217.984375 105.203125 218.078125 105.109375 218.078125 104.992188 Z M 218.078125 104.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.449219 108.257812 C 219.449219 108.140625 219.355469 108.046875 219.238281 108.046875 C 219.121094 108.046875 219.027344 108.140625 219.027344 108.257812 C 219.027344 108.375 219.121094 108.46875 219.238281 108.46875 C 219.355469 108.46875 219.449219 108.375 219.449219 108.257812 Z M 219.449219 108.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.988281 108.84375 C 218.988281 108.726562 218.894531 108.632812 218.777344 108.632812 C 218.660156 108.632812 218.566406 108.726562 218.566406 108.84375 C 218.566406 108.960938 218.660156 109.054688 218.777344 109.054688 C 218.894531 109.054688 218.988281 108.960938 218.988281 108.84375 Z M 218.988281 108.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.164062 108.96875 C 223.164062 108.851562 223.070312 108.757812 222.953125 108.757812 C 222.835938 108.757812 222.742188 108.851562 222.742188 108.96875 C 222.742188 109.085938 222.835938 109.179688 222.953125 109.179688 C 223.070312 109.179688 223.164062 109.085938 223.164062 108.96875 Z M 223.164062 108.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.117188 106.847656 C 224.117188 106.730469 224.023438 106.636719 223.90625 106.636719 C 223.789062 106.636719 223.695312 106.730469 223.695312 106.847656 C 223.695312 106.964844 223.789062 107.058594 223.90625 107.058594 C 224.023438 107.058594 224.117188 106.964844 224.117188 106.847656 Z M 224.117188 106.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.632812 108.140625 C 224.632812 108.023438 224.539062 107.929688 224.421875 107.929688 C 224.304688 107.929688 224.210938 108.023438 224.210938 108.140625 C 224.210938 108.257812 224.304688 108.351562 224.421875 108.351562 C 224.539062 108.351562 224.632812 108.257812 224.632812 108.140625 Z M 224.632812 108.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.484375 107.984375 C 220.484375 107.867188 220.390625 107.773438 220.273438 107.773438 C 220.15625 107.773438 220.0625 107.867188 220.0625 107.984375 C 220.0625 108.101562 220.15625 108.195312 220.273438 108.195312 C 220.390625 108.195312 220.484375 108.101562 220.484375 107.984375 Z M 220.484375 107.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.277344 105.378906 C 222.277344 105.261719 222.183594 105.167969 222.066406 105.167969 C 221.949219 105.167969 221.855469 105.261719 221.855469 105.378906 C 221.855469 105.496094 221.949219 105.589844 222.066406 105.589844 C 222.183594 105.589844 222.277344 105.496094 222.277344 105.378906 Z M 222.277344 105.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.078125 102.921875 C 224.078125 102.804688 223.984375 102.710938 223.867188 102.710938 C 223.75 102.710938 223.65625 102.804688 223.65625 102.921875 C 223.65625 103.039062 223.75 103.132812 223.867188 103.132812 C 223.984375 103.132812 224.078125 103.039062 224.078125 102.921875 Z M 224.078125 102.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.339844 103.101562 C 224.339844 102.984375 224.246094 102.890625 224.128906 102.890625 C 224.011719 102.890625 223.917969 102.984375 223.917969 103.101562 C 223.917969 103.21875 224.011719 103.3125 224.128906 103.3125 C 224.246094 103.3125 224.339844 103.21875 224.339844 103.101562 Z M 224.339844 103.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.707031 104.253906 C 223.707031 104.136719 223.613281 104.042969 223.496094 104.042969 C 223.378906 104.042969 223.285156 104.136719 223.285156 104.253906 C 223.285156 104.371094 223.378906 104.464844 223.496094 104.464844 C 223.613281 104.464844 223.707031 104.371094 223.707031 104.253906 Z M 223.707031 104.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.320312 101.996094 C 222.320312 101.878906 222.226562 101.785156 222.109375 101.785156 C 221.992188 101.785156 221.898438 101.878906 221.898438 101.996094 C 221.898438 102.113281 221.992188 102.207031 222.109375 102.207031 C 222.226562 102.207031 222.320312 102.113281 222.320312 101.996094 Z M 222.320312 101.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.191406 99.023438 C 221.191406 98.90625 221.097656 98.8125 220.980469 98.8125 C 220.863281 98.8125 220.769531 98.90625 220.769531 99.023438 C 220.769531 99.140625 220.863281 99.234375 220.980469 99.234375 C 221.097656 99.234375 221.191406 99.140625 221.191406 99.023438 Z M 221.191406 99.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.726562 102.191406 C 223.726562 102.074219 223.632812 101.980469 223.515625 101.980469 C 223.398438 101.980469 223.304688 102.074219 223.304688 102.191406 C 223.304688 102.308594 223.398438 102.402344 223.515625 102.402344 C 223.632812 102.402344 223.726562 102.308594 223.726562 102.191406 Z M 223.726562 102.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.28125 101.726562 C 228.28125 101.609375 228.1875 101.515625 228.070312 101.515625 C 227.953125 101.515625 227.859375 101.609375 227.859375 101.726562 C 227.859375 101.84375 227.953125 101.9375 228.070312 101.9375 C 228.1875 101.9375 228.28125 101.84375 228.28125 101.726562 Z M 228.28125 101.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.542969 100.265625 C 227.542969 100.148438 227.449219 100.054688 227.332031 100.054688 C 227.214844 100.054688 227.121094 100.148438 227.121094 100.265625 C 227.121094 100.382812 227.214844 100.476562 227.332031 100.476562 C 227.449219 100.476562 227.542969 100.382812 227.542969 100.265625 Z M 227.542969 100.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.089844 101.160156 C 229.089844 101.042969 228.996094 100.949219 228.878906 100.949219 C 228.761719 100.949219 228.667969 101.042969 228.667969 101.160156 C 228.667969 101.277344 228.761719 101.371094 228.878906 101.371094 C 228.996094 101.371094 229.089844 101.277344 229.089844 101.160156 Z M 229.089844 101.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.394531 102.773438 C 228.394531 102.65625 228.300781 102.5625 228.183594 102.5625 C 228.066406 102.5625 227.972656 102.65625 227.972656 102.773438 C 227.972656 102.890625 228.066406 102.984375 228.183594 102.984375 C 228.300781 102.984375 228.394531 102.890625 228.394531 102.773438 Z M 228.394531 102.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.507812 102.691406 C 229.507812 102.574219 229.414062 102.480469 229.296875 102.480469 C 229.179688 102.480469 229.085938 102.574219 229.085938 102.691406 C 229.085938 102.808594 229.179688 102.902344 229.296875 102.902344 C 229.414062 102.902344 229.507812 102.808594 229.507812 102.691406 Z M 229.507812 102.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.796875 103.625 C 230.796875 103.507812 230.703125 103.414062 230.585938 103.414062 C 230.46875 103.414062 230.375 103.507812 230.375 103.625 C 230.375 103.742188 230.46875 103.835938 230.585938 103.835938 C 230.703125 103.835938 230.796875 103.742188 230.796875 103.625 Z M 230.796875 103.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.171875 104.585938 C 231.171875 104.46875 231.078125 104.375 230.960938 104.375 C 230.84375 104.375 230.75 104.46875 230.75 104.585938 C 230.75 104.703125 230.84375 104.796875 230.960938 104.796875 C 231.078125 104.796875 231.171875 104.703125 231.171875 104.585938 Z M 231.171875 104.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.492188 103.613281 C 231.492188 103.496094 231.398438 103.402344 231.28125 103.402344 C 231.164062 103.402344 231.070312 103.496094 231.070312 103.613281 C 231.070312 103.730469 231.164062 103.824219 231.28125 103.824219 C 231.398438 103.824219 231.492188 103.730469 231.492188 103.613281 Z M 231.492188 103.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.027344 107.597656 C 231.027344 107.480469 230.933594 107.386719 230.816406 107.386719 C 230.699219 107.386719 230.605469 107.480469 230.605469 107.597656 C 230.605469 107.714844 230.699219 107.808594 230.816406 107.808594 C 230.933594 107.808594 231.027344 107.714844 231.027344 107.597656 Z M 231.027344 107.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.945312 104.828125 C 230.945312 104.710938 230.851562 104.617188 230.734375 104.617188 C 230.617188 104.617188 230.523438 104.710938 230.523438 104.828125 C 230.523438 104.945312 230.617188 105.039062 230.734375 105.039062 C 230.851562 105.039062 230.945312 104.945312 230.945312 104.828125 Z M 230.945312 104.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.933594 104.933594 C 231.933594 104.816406 231.839844 104.722656 231.722656 104.722656 C 231.605469 104.722656 231.511719 104.816406 231.511719 104.933594 C 231.511719 105.050781 231.605469 105.144531 231.722656 105.144531 C 231.839844 105.144531 231.933594 105.050781 231.933594 104.933594 Z M 231.933594 104.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.917969 101.609375 C 234.917969 101.492188 234.824219 101.398438 234.707031 101.398438 C 234.589844 101.398438 234.496094 101.492188 234.496094 101.609375 C 234.496094 101.726562 234.589844 101.820312 234.707031 101.820312 C 234.824219 101.820312 234.917969 101.726562 234.917969 101.609375 Z M 234.917969 101.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.28125 101.03125 C 235.28125 100.914062 235.1875 100.820312 235.070312 100.820312 C 234.953125 100.820312 234.859375 100.914062 234.859375 101.03125 C 234.859375 101.148438 234.953125 101.242188 235.070312 101.242188 C 235.1875 101.242188 235.28125 101.148438 235.28125 101.03125 Z M 235.28125 101.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.929688 97.246094 C 238.929688 97.128906 238.835938 97.035156 238.71875 97.035156 C 238.601562 97.035156 238.507812 97.128906 238.507812 97.246094 C 238.507812 97.363281 238.601562 97.457031 238.71875 97.457031 C 238.835938 97.457031 238.929688 97.363281 238.929688 97.246094 Z M 238.929688 97.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.941406 95.925781 C 235.941406 95.808594 235.847656 95.714844 235.730469 95.714844 C 235.613281 95.714844 235.519531 95.808594 235.519531 95.925781 C 235.519531 96.042969 235.613281 96.136719 235.730469 96.136719 C 235.847656 96.136719 235.941406 96.042969 235.941406 95.925781 Z M 235.941406 95.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.351562 98.453125 C 238.351562 98.335938 238.257812 98.242188 238.140625 98.242188 C 238.023438 98.242188 237.929688 98.335938 237.929688 98.453125 C 237.929688 98.570312 238.023438 98.664062 238.140625 98.664062 C 238.257812 98.664062 238.351562 98.570312 238.351562 98.453125 Z M 238.351562 98.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.636719 100.898438 C 234.636719 100.78125 234.542969 100.6875 234.425781 100.6875 C 234.308594 100.6875 234.214844 100.78125 234.214844 100.898438 C 234.214844 101.015625 234.308594 101.109375 234.425781 101.109375 C 234.542969 101.109375 234.636719 101.015625 234.636719 100.898438 Z M 234.636719 100.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.710938 100.246094 C 235.710938 100.128906 235.617188 100.035156 235.5 100.035156 C 235.382812 100.035156 235.289062 100.128906 235.289062 100.246094 C 235.289062 100.363281 235.382812 100.457031 235.5 100.457031 C 235.617188 100.457031 235.710938 100.363281 235.710938 100.246094 Z M 235.710938 100.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.535156 96.679688 C 237.535156 96.5625 237.441406 96.46875 237.324219 96.46875 C 237.207031 96.46875 237.113281 96.5625 237.113281 96.679688 C 237.113281 96.796875 237.207031 96.890625 237.324219 96.890625 C 237.441406 96.890625 237.535156 96.796875 237.535156 96.679688 Z M 237.535156 96.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.683594 95.949219 C 239.683594 95.832031 239.589844 95.738281 239.472656 95.738281 C 239.355469 95.738281 239.261719 95.832031 239.261719 95.949219 C 239.261719 96.066406 239.355469 96.160156 239.472656 96.160156 C 239.589844 96.160156 239.683594 96.066406 239.683594 95.949219 Z M 239.683594 95.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.445312 99.539062 C 241.445312 99.421875 241.351562 99.328125 241.234375 99.328125 C 241.117188 99.328125 241.023438 99.421875 241.023438 99.539062 C 241.023438 99.65625 241.117188 99.75 241.234375 99.75 C 241.351562 99.75 241.445312 99.65625 241.445312 99.539062 Z M 241.445312 99.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.554688 99.074219 C 240.554688 98.957031 240.460938 98.863281 240.34375 98.863281 C 240.226562 98.863281 240.132812 98.957031 240.132812 99.074219 C 240.132812 99.191406 240.226562 99.285156 240.34375 99.285156 C 240.460938 99.285156 240.554688 99.191406 240.554688 99.074219 Z M 240.554688 99.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.464844 106.53125 C 242.464844 106.414062 242.371094 106.320312 242.253906 106.320312 C 242.136719 106.320312 242.042969 106.414062 242.042969 106.53125 C 242.042969 106.648438 242.136719 106.742188 242.253906 106.742188 C 242.371094 106.742188 242.464844 106.648438 242.464844 106.53125 Z M 242.464844 106.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.425781 108.542969 C 244.425781 108.425781 244.332031 108.332031 244.214844 108.332031 C 244.097656 108.332031 244.003906 108.425781 244.003906 108.542969 C 244.003906 108.660156 244.097656 108.753906 244.214844 108.753906 C 244.332031 108.753906 244.425781 108.660156 244.425781 108.542969 Z M 244.425781 108.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.699219 107.480469 C 243.699219 107.363281 243.605469 107.269531 243.488281 107.269531 C 243.371094 107.269531 243.277344 107.363281 243.277344 107.480469 C 243.277344 107.597656 243.371094 107.691406 243.488281 107.691406 C 243.605469 107.691406 243.699219 107.597656 243.699219 107.480469 Z M 243.699219 107.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.8125 110.648438 C 245.8125 110.53125 245.71875 110.4375 245.601562 110.4375 C 245.484375 110.4375 245.390625 110.53125 245.390625 110.648438 C 245.390625 110.765625 245.484375 110.859375 245.601562 110.859375 C 245.71875 110.859375 245.8125 110.765625 245.8125 110.648438 Z M 245.8125 110.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.9375 109.246094 C 245.9375 109.128906 245.84375 109.035156 245.726562 109.035156 C 245.609375 109.035156 245.515625 109.128906 245.515625 109.246094 C 245.515625 109.363281 245.609375 109.457031 245.726562 109.457031 C 245.84375 109.457031 245.9375 109.363281 245.9375 109.246094 Z M 245.9375 109.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.457031 109.101562 C 243.457031 108.984375 243.363281 108.890625 243.246094 108.890625 C 243.128906 108.890625 243.035156 108.984375 243.035156 109.101562 C 243.035156 109.21875 243.128906 109.3125 243.246094 109.3125 C 243.363281 109.3125 243.457031 109.21875 243.457031 109.101562 Z M 243.457031 109.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.09375 109.671875 C 240.09375 109.554688 240 109.460938 239.882812 109.460938 C 239.765625 109.460938 239.671875 109.554688 239.671875 109.671875 C 239.671875 109.789062 239.765625 109.882812 239.882812 109.882812 C 240 109.882812 240.09375 109.789062 240.09375 109.671875 Z M 240.09375 109.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.273438 109.34375 C 240.273438 109.226562 240.179688 109.132812 240.0625 109.132812 C 239.945312 109.132812 239.851562 109.226562 239.851562 109.34375 C 239.851562 109.460938 239.945312 109.554688 240.0625 109.554688 C 240.179688 109.554688 240.273438 109.460938 240.273438 109.34375 Z M 240.273438 109.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.9375 114.9375 C 244.9375 114.820312 244.84375 114.726562 244.726562 114.726562 C 244.609375 114.726562 244.515625 114.820312 244.515625 114.9375 C 244.515625 115.054688 244.609375 115.148438 244.726562 115.148438 C 244.84375 115.148438 244.9375 115.054688 244.9375 114.9375 Z M 244.9375 114.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.355469 111.746094 C 248.355469 111.628906 248.261719 111.535156 248.144531 111.535156 C 248.027344 111.535156 247.933594 111.628906 247.933594 111.746094 C 247.933594 111.863281 248.027344 111.957031 248.144531 111.957031 C 248.261719 111.957031 248.355469 111.863281 248.355469 111.746094 Z M 248.355469 111.746094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.902344 112.457031 C 246.902344 112.339844 246.808594 112.246094 246.691406 112.246094 C 246.574219 112.246094 246.480469 112.339844 246.480469 112.457031 C 246.480469 112.574219 246.574219 112.667969 246.691406 112.667969 C 246.808594 112.667969 246.902344 112.574219 246.902344 112.457031 Z M 246.902344 112.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.976562 114.0625 C 246.976562 113.945312 246.882812 113.851562 246.765625 113.851562 C 246.648438 113.851562 246.554688 113.945312 246.554688 114.0625 C 246.554688 114.179688 246.648438 114.273438 246.765625 114.273438 C 246.882812 114.273438 246.976562 114.179688 246.976562 114.0625 Z M 246.976562 114.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.574219 117.855469 C 249.574219 117.738281 249.480469 117.644531 249.363281 117.644531 C 249.246094 117.644531 249.152344 117.738281 249.152344 117.855469 C 249.152344 117.972656 249.246094 118.066406 249.363281 118.066406 C 249.480469 118.066406 249.574219 117.972656 249.574219 117.855469 Z M 249.574219 117.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.179688 118.5 C 248.179688 118.382812 248.085938 118.289062 247.96875 118.289062 C 247.851562 118.289062 247.757812 118.382812 247.757812 118.5 C 247.757812 118.617188 247.851562 118.710938 247.96875 118.710938 C 248.085938 118.710938 248.179688 118.617188 248.179688 118.5 Z M 248.179688 118.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.390625 117.570312 C 247.390625 117.453125 247.296875 117.359375 247.179688 117.359375 C 247.0625 117.359375 246.96875 117.453125 246.96875 117.570312 C 246.96875 117.6875 247.0625 117.78125 247.179688 117.78125 C 247.296875 117.78125 247.390625 117.6875 247.390625 117.570312 Z M 247.390625 117.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.078125 115.246094 C 248.078125 115.128906 247.984375 115.035156 247.867188 115.035156 C 247.75 115.035156 247.65625 115.128906 247.65625 115.246094 C 247.65625 115.363281 247.75 115.457031 247.867188 115.457031 C 247.984375 115.457031 248.078125 115.363281 248.078125 115.246094 Z M 248.078125 115.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.546875 111.960938 C 246.546875 111.84375 246.453125 111.75 246.335938 111.75 C 246.21875 111.75 246.125 111.84375 246.125 111.960938 C 246.125 112.078125 246.21875 112.171875 246.335938 112.171875 C 246.453125 112.171875 246.546875 112.078125 246.546875 111.960938 Z M 246.546875 111.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.832031 107.949219 C 245.832031 107.832031 245.738281 107.738281 245.621094 107.738281 C 245.503906 107.738281 245.410156 107.832031 245.410156 107.949219 C 245.410156 108.066406 245.503906 108.160156 245.621094 108.160156 C 245.738281 108.160156 245.832031 108.066406 245.832031 107.949219 Z M 245.832031 107.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.46875 105.175781 C 244.46875 105.058594 244.375 104.964844 244.257812 104.964844 C 244.140625 104.964844 244.046875 105.058594 244.046875 105.175781 C 244.046875 105.292969 244.140625 105.386719 244.257812 105.386719 C 244.375 105.386719 244.46875 105.292969 244.46875 105.175781 Z M 244.46875 105.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.414062 105.753906 C 241.414062 105.636719 241.320312 105.542969 241.203125 105.542969 C 241.085938 105.542969 240.992188 105.636719 240.992188 105.753906 C 240.992188 105.871094 241.085938 105.964844 241.203125 105.964844 C 241.320312 105.964844 241.414062 105.871094 241.414062 105.753906 Z M 241.414062 105.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.84375 103.953125 C 239.84375 103.835938 239.75 103.742188 239.632812 103.742188 C 239.515625 103.742188 239.421875 103.835938 239.421875 103.953125 C 239.421875 104.070312 239.515625 104.164062 239.632812 104.164062 C 239.75 104.164062 239.84375 104.070312 239.84375 103.953125 Z M 239.84375 103.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.421875 106.234375 C 239.421875 106.117188 239.328125 106.023438 239.210938 106.023438 C 239.09375 106.023438 239 106.117188 239 106.234375 C 239 106.351562 239.09375 106.445312 239.210938 106.445312 C 239.328125 106.445312 239.421875 106.351562 239.421875 106.234375 Z M 239.421875 106.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.574219 106.492188 C 237.574219 106.375 237.480469 106.28125 237.363281 106.28125 C 237.246094 106.28125 237.152344 106.375 237.152344 106.492188 C 237.152344 106.609375 237.246094 106.703125 237.363281 106.703125 C 237.480469 106.703125 237.574219 106.609375 237.574219 106.492188 Z M 237.574219 106.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.460938 107.390625 C 241.460938 107.273438 241.367188 107.179688 241.25 107.179688 C 241.132812 107.179688 241.039062 107.273438 241.039062 107.390625 C 241.039062 107.507812 241.132812 107.601562 241.25 107.601562 C 241.367188 107.601562 241.460938 107.507812 241.460938 107.390625 Z M 241.460938 107.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.074219 110.191406 C 239.074219 110.074219 238.980469 109.980469 238.863281 109.980469 C 238.746094 109.980469 238.652344 110.074219 238.652344 110.191406 C 238.652344 110.308594 238.746094 110.402344 238.863281 110.402344 C 238.980469 110.402344 239.074219 110.308594 239.074219 110.191406 Z M 239.074219 110.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.214844 108.675781 C 239.214844 108.558594 239.121094 108.464844 239.003906 108.464844 C 238.886719 108.464844 238.792969 108.558594 238.792969 108.675781 C 238.792969 108.792969 238.886719 108.886719 239.003906 108.886719 C 239.121094 108.886719 239.214844 108.792969 239.214844 108.675781 Z M 239.214844 108.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.839844 106.8125 C 239.839844 106.695312 239.746094 106.601562 239.628906 106.601562 C 239.511719 106.601562 239.417969 106.695312 239.417969 106.8125 C 239.417969 106.929688 239.511719 107.023438 239.628906 107.023438 C 239.746094 107.023438 239.839844 106.929688 239.839844 106.8125 Z M 239.839844 106.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.585938 105.085938 C 238.585938 104.96875 238.492188 104.875 238.375 104.875 C 238.257812 104.875 238.164062 104.96875 238.164062 105.085938 C 238.164062 105.203125 238.257812 105.296875 238.375 105.296875 C 238.492188 105.296875 238.585938 105.203125 238.585938 105.085938 Z M 238.585938 105.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.8125 104.242188 C 236.8125 104.125 236.71875 104.03125 236.601562 104.03125 C 236.484375 104.03125 236.390625 104.125 236.390625 104.242188 C 236.390625 104.359375 236.484375 104.453125 236.601562 104.453125 C 236.71875 104.453125 236.8125 104.359375 236.8125 104.242188 Z M 236.8125 104.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.808594 107.632812 C 236.808594 107.515625 236.714844 107.421875 236.597656 107.421875 C 236.480469 107.421875 236.386719 107.515625 236.386719 107.632812 C 236.386719 107.75 236.480469 107.84375 236.597656 107.84375 C 236.714844 107.84375 236.808594 107.75 236.808594 107.632812 Z M 236.808594 107.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.65625 112.21875 C 236.65625 112.101562 236.5625 112.007812 236.445312 112.007812 C 236.328125 112.007812 236.234375 112.101562 236.234375 112.21875 C 236.234375 112.335938 236.328125 112.429688 236.445312 112.429688 C 236.5625 112.429688 236.65625 112.335938 236.65625 112.21875 Z M 236.65625 112.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.898438 111.347656 C 237.898438 111.230469 237.804688 111.136719 237.6875 111.136719 C 237.570312 111.136719 237.476562 111.230469 237.476562 111.347656 C 237.476562 111.464844 237.570312 111.558594 237.6875 111.558594 C 237.804688 111.558594 237.898438 111.464844 237.898438 111.347656 Z M 237.898438 111.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.285156 110.359375 C 241.285156 110.242188 241.191406 110.148438 241.074219 110.148438 C 240.957031 110.148438 240.863281 110.242188 240.863281 110.359375 C 240.863281 110.476562 240.957031 110.570312 241.074219 110.570312 C 241.191406 110.570312 241.285156 110.476562 241.285156 110.359375 Z M 241.285156 110.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.78125 109.117188 C 242.78125 109 242.6875 108.90625 242.570312 108.90625 C 242.453125 108.90625 242.359375 109 242.359375 109.117188 C 242.359375 109.234375 242.453125 109.328125 242.570312 109.328125 C 242.6875 109.328125 242.78125 109.234375 242.78125 109.117188 Z M 242.78125 109.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.253906 106.007812 C 242.253906 105.890625 242.160156 105.796875 242.042969 105.796875 C 241.925781 105.796875 241.832031 105.890625 241.832031 106.007812 C 241.832031 106.125 241.925781 106.21875 242.042969 106.21875 C 242.160156 106.21875 242.253906 106.125 242.253906 106.007812 Z M 242.253906 106.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.265625 103.792969 C 243.265625 103.675781 243.171875 103.582031 243.054688 103.582031 C 242.9375 103.582031 242.84375 103.675781 242.84375 103.792969 C 242.84375 103.910156 242.9375 104.003906 243.054688 104.003906 C 243.171875 104.003906 243.265625 103.910156 243.265625 103.792969 Z M 243.265625 103.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.074219 103.980469 C 244.074219 103.863281 243.980469 103.769531 243.863281 103.769531 C 243.746094 103.769531 243.652344 103.863281 243.652344 103.980469 C 243.652344 104.097656 243.746094 104.191406 243.863281 104.191406 C 243.980469 104.191406 244.074219 104.097656 244.074219 103.980469 Z M 244.074219 103.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.007812 104.8125 C 242.007812 104.695312 241.914062 104.601562 241.796875 104.601562 C 241.679688 104.601562 241.585938 104.695312 241.585938 104.8125 C 241.585938 104.929688 241.679688 105.023438 241.796875 105.023438 C 241.914062 105.023438 242.007812 104.929688 242.007812 104.8125 Z M 242.007812 104.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.375 105.21875 C 242.375 105.101562 242.28125 105.007812 242.164062 105.007812 C 242.046875 105.007812 241.953125 105.101562 241.953125 105.21875 C 241.953125 105.335938 242.046875 105.429688 242.164062 105.429688 C 242.28125 105.429688 242.375 105.335938 242.375 105.21875 Z M 242.375 105.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.691406 103.550781 C 237.691406 103.433594 237.597656 103.339844 237.480469 103.339844 C 237.363281 103.339844 237.269531 103.433594 237.269531 103.550781 C 237.269531 103.667969 237.363281 103.761719 237.480469 103.761719 C 237.597656 103.761719 237.691406 103.667969 237.691406 103.550781 Z M 237.691406 103.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.828125 103.464844 C 236.828125 103.347656 236.734375 103.253906 236.617188 103.253906 C 236.5 103.253906 236.40625 103.347656 236.40625 103.464844 C 236.40625 103.582031 236.5 103.675781 236.617188 103.675781 C 236.734375 103.675781 236.828125 103.582031 236.828125 103.464844 Z M 236.828125 103.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.25 100.449219 C 235.25 100.332031 235.15625 100.238281 235.039062 100.238281 C 234.921875 100.238281 234.828125 100.332031 234.828125 100.449219 C 234.828125 100.566406 234.921875 100.660156 235.039062 100.660156 C 235.15625 100.660156 235.25 100.566406 235.25 100.449219 Z M 235.25 100.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.929688 101.199219 C 233.929688 101.082031 233.835938 100.988281 233.71875 100.988281 C 233.601562 100.988281 233.507812 101.082031 233.507812 101.199219 C 233.507812 101.316406 233.601562 101.410156 233.71875 101.410156 C 233.835938 101.410156 233.929688 101.316406 233.929688 101.199219 Z M 233.929688 101.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.492188 101.007812 C 233.492188 100.890625 233.398438 100.796875 233.28125 100.796875 C 233.164062 100.796875 233.070312 100.890625 233.070312 101.007812 C 233.070312 101.125 233.164062 101.21875 233.28125 101.21875 C 233.398438 101.21875 233.492188 101.125 233.492188 101.007812 Z M 233.492188 101.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.148438 102.585938 C 232.148438 102.46875 232.054688 102.375 231.9375 102.375 C 231.820312 102.375 231.726562 102.46875 231.726562 102.585938 C 231.726562 102.703125 231.820312 102.796875 231.9375 102.796875 C 232.054688 102.796875 232.148438 102.703125 232.148438 102.585938 Z M 232.148438 102.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.785156 101.65625 C 234.785156 101.539062 234.691406 101.445312 234.574219 101.445312 C 234.457031 101.445312 234.363281 101.539062 234.363281 101.65625 C 234.363281 101.773438 234.457031 101.867188 234.574219 101.867188 C 234.691406 101.867188 234.785156 101.773438 234.785156 101.65625 Z M 234.785156 101.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.636719 101.910156 C 239.636719 101.792969 239.542969 101.699219 239.425781 101.699219 C 239.308594 101.699219 239.214844 101.792969 239.214844 101.910156 C 239.214844 102.027344 239.308594 102.121094 239.425781 102.121094 C 239.542969 102.121094 239.636719 102.027344 239.636719 101.910156 Z M 239.636719 101.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.871094 99.96875 C 238.871094 99.851562 238.777344 99.757812 238.660156 99.757812 C 238.542969 99.757812 238.449219 99.851562 238.449219 99.96875 C 238.449219 100.085938 238.542969 100.179688 238.660156 100.179688 C 238.777344 100.179688 238.871094 100.085938 238.871094 99.96875 Z M 238.871094 99.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.355469 99.421875 C 234.355469 99.304688 234.261719 99.210938 234.144531 99.210938 C 234.027344 99.210938 233.933594 99.304688 233.933594 99.421875 C 233.933594 99.539062 234.027344 99.632812 234.144531 99.632812 C 234.261719 99.632812 234.355469 99.539062 234.355469 99.421875 Z M 234.355469 99.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.914062 99.648438 C 232.914062 99.53125 232.820312 99.4375 232.703125 99.4375 C 232.585938 99.4375 232.492188 99.53125 232.492188 99.648438 C 232.492188 99.765625 232.585938 99.859375 232.703125 99.859375 C 232.820312 99.859375 232.914062 99.765625 232.914062 99.648438 Z M 232.914062 99.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.753906 98.128906 C 232.753906 98.011719 232.660156 97.917969 232.542969 97.917969 C 232.425781 97.917969 232.332031 98.011719 232.332031 98.128906 C 232.332031 98.246094 232.425781 98.339844 232.542969 98.339844 C 232.660156 98.339844 232.753906 98.246094 232.753906 98.128906 Z M 232.753906 98.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.753906 102.464844 C 233.753906 102.347656 233.660156 102.253906 233.542969 102.253906 C 233.425781 102.253906 233.332031 102.347656 233.332031 102.464844 C 233.332031 102.582031 233.425781 102.675781 233.542969 102.675781 C 233.660156 102.675781 233.753906 102.582031 233.753906 102.464844 Z M 233.753906 102.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.089844 104.96875 C 235.089844 104.851562 234.996094 104.757812 234.878906 104.757812 C 234.761719 104.757812 234.667969 104.851562 234.667969 104.96875 C 234.667969 105.085938 234.761719 105.179688 234.878906 105.179688 C 234.996094 105.179688 235.089844 105.085938 235.089844 104.96875 Z M 235.089844 104.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.351562 103.671875 C 236.351562 103.554688 236.257812 103.460938 236.140625 103.460938 C 236.023438 103.460938 235.929688 103.554688 235.929688 103.671875 C 235.929688 103.789062 236.023438 103.882812 236.140625 103.882812 C 236.257812 103.882812 236.351562 103.789062 236.351562 103.671875 Z M 236.351562 103.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.765625 105.101562 C 234.765625 104.984375 234.671875 104.890625 234.554688 104.890625 C 234.4375 104.890625 234.34375 104.984375 234.34375 105.101562 C 234.34375 105.21875 234.4375 105.3125 234.554688 105.3125 C 234.671875 105.3125 234.765625 105.21875 234.765625 105.101562 Z M 234.765625 105.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.105469 109.015625 C 235.105469 108.898438 235.011719 108.804688 234.894531 108.804688 C 234.777344 108.804688 234.683594 108.898438 234.683594 109.015625 C 234.683594 109.132812 234.777344 109.226562 234.894531 109.226562 C 235.011719 109.226562 235.105469 109.132812 235.105469 109.015625 Z M 235.105469 109.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.183594 110 C 233.183594 109.882812 233.089844 109.789062 232.972656 109.789062 C 232.855469 109.789062 232.761719 109.882812 232.761719 110 C 232.761719 110.117188 232.855469 110.210938 232.972656 110.210938 C 233.089844 110.210938 233.183594 110.117188 233.183594 110 Z M 233.183594 110 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.492188 112.238281 C 231.492188 112.121094 231.398438 112.027344 231.28125 112.027344 C 231.164062 112.027344 231.070312 112.121094 231.070312 112.238281 C 231.070312 112.355469 231.164062 112.449219 231.28125 112.449219 C 231.398438 112.449219 231.492188 112.355469 231.492188 112.238281 Z M 231.492188 112.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.632812 109.695312 C 230.632812 109.578125 230.539062 109.484375 230.421875 109.484375 C 230.304688 109.484375 230.210938 109.578125 230.210938 109.695312 C 230.210938 109.8125 230.304688 109.90625 230.421875 109.90625 C 230.539062 109.90625 230.632812 109.8125 230.632812 109.695312 Z M 230.632812 109.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.355469 108.113281 C 231.355469 107.996094 231.261719 107.902344 231.144531 107.902344 C 231.027344 107.902344 230.933594 107.996094 230.933594 108.113281 C 230.933594 108.230469 231.027344 108.324219 231.144531 108.324219 C 231.261719 108.324219 231.355469 108.230469 231.355469 108.113281 Z M 231.355469 108.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.632812 110.886719 C 228.632812 110.769531 228.539062 110.675781 228.421875 110.675781 C 228.304688 110.675781 228.210938 110.769531 228.210938 110.886719 C 228.210938 111.003906 228.304688 111.097656 228.421875 111.097656 C 228.539062 111.097656 228.632812 111.003906 228.632812 110.886719 Z M 228.632812 110.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.019531 112.234375 C 231.019531 112.117188 230.925781 112.023438 230.808594 112.023438 C 230.691406 112.023438 230.597656 112.117188 230.597656 112.234375 C 230.597656 112.351562 230.691406 112.445312 230.808594 112.445312 C 230.925781 112.445312 231.019531 112.351562 231.019531 112.234375 Z M 231.019531 112.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.949219 113.433594 C 231.949219 113.316406 231.855469 113.222656 231.738281 113.222656 C 231.621094 113.222656 231.527344 113.316406 231.527344 113.433594 C 231.527344 113.550781 231.621094 113.644531 231.738281 113.644531 C 231.855469 113.644531 231.949219 113.550781 231.949219 113.433594 Z M 231.949219 113.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.945312 114.464844 C 228.945312 114.347656 228.851562 114.253906 228.734375 114.253906 C 228.617188 114.253906 228.523438 114.347656 228.523438 114.464844 C 228.523438 114.582031 228.617188 114.675781 228.734375 114.675781 C 228.851562 114.675781 228.945312 114.582031 228.945312 114.464844 Z M 228.945312 114.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.445312 117.632812 C 231.445312 117.515625 231.351562 117.421875 231.234375 117.421875 C 231.117188 117.421875 231.023438 117.515625 231.023438 117.632812 C 231.023438 117.75 231.117188 117.84375 231.234375 117.84375 C 231.351562 117.84375 231.445312 117.75 231.445312 117.632812 Z M 231.445312 117.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.15625 120.628906 C 236.15625 120.511719 236.0625 120.417969 235.945312 120.417969 C 235.828125 120.417969 235.734375 120.511719 235.734375 120.628906 C 235.734375 120.746094 235.828125 120.839844 235.945312 120.839844 C 236.0625 120.839844 236.15625 120.746094 236.15625 120.628906 Z M 236.15625 120.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.984375 123.3125 C 234.984375 123.195312 234.890625 123.101562 234.773438 123.101562 C 234.65625 123.101562 234.5625 123.195312 234.5625 123.3125 C 234.5625 123.429688 234.65625 123.523438 234.773438 123.523438 C 234.890625 123.523438 234.984375 123.429688 234.984375 123.3125 Z M 234.984375 123.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.441406 121.554688 C 238.441406 121.4375 238.347656 121.34375 238.230469 121.34375 C 238.113281 121.34375 238.019531 121.4375 238.019531 121.554688 C 238.019531 121.671875 238.113281 121.765625 238.230469 121.765625 C 238.347656 121.765625 238.441406 121.671875 238.441406 121.554688 Z M 238.441406 121.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.363281 121.582031 C 240.363281 121.464844 240.269531 121.371094 240.152344 121.371094 C 240.035156 121.371094 239.941406 121.464844 239.941406 121.582031 C 239.941406 121.699219 240.035156 121.792969 240.152344 121.792969 C 240.269531 121.792969 240.363281 121.699219 240.363281 121.582031 Z M 240.363281 121.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.792969 118.742188 C 243.792969 118.625 243.699219 118.53125 243.582031 118.53125 C 243.464844 118.53125 243.371094 118.625 243.371094 118.742188 C 243.371094 118.859375 243.464844 118.953125 243.582031 118.953125 C 243.699219 118.953125 243.792969 118.859375 243.792969 118.742188 Z M 243.792969 118.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.085938 120.855469 C 245.085938 120.738281 244.992188 120.644531 244.875 120.644531 C 244.757812 120.644531 244.664062 120.738281 244.664062 120.855469 C 244.664062 120.972656 244.757812 121.066406 244.875 121.066406 C 244.992188 121.066406 245.085938 120.972656 245.085938 120.855469 Z M 245.085938 120.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.246094 118.949219 C 245.246094 118.832031 245.152344 118.738281 245.035156 118.738281 C 244.917969 118.738281 244.824219 118.832031 244.824219 118.949219 C 244.824219 119.066406 244.917969 119.160156 245.035156 119.160156 C 245.152344 119.160156 245.246094 119.066406 245.246094 118.949219 Z M 245.246094 118.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.394531 117.714844 C 247.394531 117.597656 247.300781 117.503906 247.183594 117.503906 C 247.066406 117.503906 246.972656 117.597656 246.972656 117.714844 C 246.972656 117.832031 247.066406 117.925781 247.183594 117.925781 C 247.300781 117.925781 247.394531 117.832031 247.394531 117.714844 Z M 247.394531 117.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.664062 117.683594 C 243.664062 117.566406 243.570312 117.472656 243.453125 117.472656 C 243.335938 117.472656 243.242188 117.566406 243.242188 117.683594 C 243.242188 117.800781 243.335938 117.894531 243.453125 117.894531 C 243.570312 117.894531 243.664062 117.800781 243.664062 117.683594 Z M 243.664062 117.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.753906 115.074219 C 241.753906 114.957031 241.660156 114.863281 241.542969 114.863281 C 241.425781 114.863281 241.332031 114.957031 241.332031 115.074219 C 241.332031 115.191406 241.425781 115.285156 241.542969 115.285156 C 241.660156 115.285156 241.753906 115.191406 241.753906 115.074219 Z M 241.753906 115.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.066406 114.054688 C 245.066406 113.9375 244.972656 113.84375 244.855469 113.84375 C 244.738281 113.84375 244.644531 113.9375 244.644531 114.054688 C 244.644531 114.171875 244.738281 114.265625 244.855469 114.265625 C 244.972656 114.265625 245.066406 114.171875 245.066406 114.054688 Z M 245.066406 114.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.359375 116.082031 C 244.359375 115.964844 244.265625 115.871094 244.148438 115.871094 C 244.03125 115.871094 243.9375 115.964844 243.9375 116.082031 C 243.9375 116.199219 244.03125 116.292969 244.148438 116.292969 C 244.265625 116.292969 244.359375 116.199219 244.359375 116.082031 Z M 244.359375 116.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.570312 114.328125 C 246.570312 114.210938 246.476562 114.117188 246.359375 114.117188 C 246.242188 114.117188 246.148438 114.210938 246.148438 114.328125 C 246.148438 114.445312 246.242188 114.539062 246.359375 114.539062 C 246.476562 114.539062 246.570312 114.445312 246.570312 114.328125 Z M 246.570312 114.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.320312 114.722656 C 247.320312 114.605469 247.226562 114.511719 247.109375 114.511719 C 246.992188 114.511719 246.898438 114.605469 246.898438 114.722656 C 246.898438 114.839844 246.992188 114.933594 247.109375 114.933594 C 247.226562 114.933594 247.320312 114.839844 247.320312 114.722656 Z M 247.320312 114.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.578125 113.511719 C 245.578125 113.394531 245.484375 113.300781 245.367188 113.300781 C 245.25 113.300781 245.15625 113.394531 245.15625 113.511719 C 245.15625 113.628906 245.25 113.722656 245.367188 113.722656 C 245.484375 113.722656 245.578125 113.628906 245.578125 113.511719 Z M 245.578125 113.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.34375 115.085938 C 249.34375 114.96875 249.25 114.875 249.132812 114.875 C 249.015625 114.875 248.921875 114.96875 248.921875 115.085938 C 248.921875 115.203125 249.015625 115.296875 249.132812 115.296875 C 249.25 115.296875 249.34375 115.203125 249.34375 115.085938 Z M 249.34375 115.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.09375 115.40625 C 250.09375 115.289062 250 115.195312 249.882812 115.195312 C 249.765625 115.195312 249.671875 115.289062 249.671875 115.40625 C 249.671875 115.523438 249.765625 115.617188 249.882812 115.617188 C 250 115.617188 250.09375 115.523438 250.09375 115.40625 Z M 250.09375 115.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.652344 117.292969 C 250.652344 117.175781 250.558594 117.082031 250.441406 117.082031 C 250.324219 117.082031 250.230469 117.175781 250.230469 117.292969 C 250.230469 117.410156 250.324219 117.503906 250.441406 117.503906 C 250.558594 117.503906 250.652344 117.410156 250.652344 117.292969 Z M 250.652344 117.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.992188 118.351562 C 246.992188 118.234375 246.898438 118.140625 246.78125 118.140625 C 246.664062 118.140625 246.570312 118.234375 246.570312 118.351562 C 246.570312 118.46875 246.664062 118.5625 246.78125 118.5625 C 246.898438 118.5625 246.992188 118.46875 246.992188 118.351562 Z M 246.992188 118.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.03125 120.753906 C 245.03125 120.636719 244.9375 120.542969 244.820312 120.542969 C 244.703125 120.542969 244.609375 120.636719 244.609375 120.753906 C 244.609375 120.871094 244.703125 120.964844 244.820312 120.964844 C 244.9375 120.964844 245.03125 120.871094 245.03125 120.753906 Z M 245.03125 120.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.953125 116.894531 C 243.953125 116.777344 243.859375 116.683594 243.742188 116.683594 C 243.625 116.683594 243.53125 116.777344 243.53125 116.894531 C 243.53125 117.011719 243.625 117.105469 243.742188 117.105469 C 243.859375 117.105469 243.953125 117.011719 243.953125 116.894531 Z M 243.953125 116.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.066406 116.585938 C 244.066406 116.46875 243.972656 116.375 243.855469 116.375 C 243.738281 116.375 243.644531 116.46875 243.644531 116.585938 C 243.644531 116.703125 243.738281 116.796875 243.855469 116.796875 C 243.972656 116.796875 244.066406 116.703125 244.066406 116.585938 Z M 244.066406 116.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.648438 117.453125 C 241.648438 117.335938 241.554688 117.242188 241.4375 117.242188 C 241.320312 117.242188 241.226562 117.335938 241.226562 117.453125 C 241.226562 117.570312 241.320312 117.664062 241.4375 117.664062 C 241.554688 117.664062 241.648438 117.570312 241.648438 117.453125 Z M 241.648438 117.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.683594 117.824219 C 240.683594 117.707031 240.589844 117.613281 240.472656 117.613281 C 240.355469 117.613281 240.261719 117.707031 240.261719 117.824219 C 240.261719 117.941406 240.355469 118.035156 240.472656 118.035156 C 240.589844 118.035156 240.683594 117.941406 240.683594 117.824219 Z M 240.683594 117.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.84375 118.339844 C 238.84375 118.222656 238.75 118.128906 238.632812 118.128906 C 238.515625 118.128906 238.421875 118.222656 238.421875 118.339844 C 238.421875 118.457031 238.515625 118.550781 238.632812 118.550781 C 238.75 118.550781 238.84375 118.457031 238.84375 118.339844 Z M 238.84375 118.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.828125 119.933594 C 236.828125 119.816406 236.734375 119.722656 236.617188 119.722656 C 236.5 119.722656 236.40625 119.816406 236.40625 119.933594 C 236.40625 120.050781 236.5 120.144531 236.617188 120.144531 C 236.734375 120.144531 236.828125 120.050781 236.828125 119.933594 Z M 236.828125 119.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.269531 120.972656 C 237.269531 120.855469 237.175781 120.761719 237.058594 120.761719 C 236.941406 120.761719 236.847656 120.855469 236.847656 120.972656 C 236.847656 121.089844 236.941406 121.183594 237.058594 121.183594 C 237.175781 121.183594 237.269531 121.089844 237.269531 120.972656 Z M 237.269531 120.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.976562 124.550781 C 237.976562 124.433594 237.882812 124.339844 237.765625 124.339844 C 237.648438 124.339844 237.554688 124.433594 237.554688 124.550781 C 237.554688 124.667969 237.648438 124.761719 237.765625 124.761719 C 237.882812 124.761719 237.976562 124.667969 237.976562 124.550781 Z M 237.976562 124.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.898438 122.460938 C 238.898438 122.34375 238.804688 122.25 238.6875 122.25 C 238.570312 122.25 238.476562 122.34375 238.476562 122.460938 C 238.476562 122.578125 238.570312 122.671875 238.6875 122.671875 C 238.804688 122.671875 238.898438 122.578125 238.898438 122.460938 Z M 238.898438 122.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.316406 123.582031 C 243.316406 123.464844 243.222656 123.371094 243.105469 123.371094 C 242.988281 123.371094 242.894531 123.464844 242.894531 123.582031 C 242.894531 123.699219 242.988281 123.792969 243.105469 123.792969 C 243.222656 123.792969 243.316406 123.699219 243.316406 123.582031 Z M 243.316406 123.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.929688 125.039062 C 242.929688 124.921875 242.835938 124.828125 242.71875 124.828125 C 242.601562 124.828125 242.507812 124.921875 242.507812 125.039062 C 242.507812 125.15625 242.601562 125.25 242.71875 125.25 C 242.835938 125.25 242.929688 125.15625 242.929688 125.039062 Z M 242.929688 125.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.679688 124.191406 C 242.679688 124.074219 242.585938 123.980469 242.46875 123.980469 C 242.351562 123.980469 242.257812 124.074219 242.257812 124.191406 C 242.257812 124.308594 242.351562 124.402344 242.46875 124.402344 C 242.585938 124.402344 242.679688 124.308594 242.679688 124.191406 Z M 242.679688 124.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.589844 124.921875 C 245.589844 124.804688 245.496094 124.710938 245.378906 124.710938 C 245.261719 124.710938 245.167969 124.804688 245.167969 124.921875 C 245.167969 125.039062 245.261719 125.132812 245.378906 125.132812 C 245.496094 125.132812 245.589844 125.039062 245.589844 124.921875 Z M 245.589844 124.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.214844 122.851562 C 243.214844 122.734375 243.121094 122.640625 243.003906 122.640625 C 242.886719 122.640625 242.792969 122.734375 242.792969 122.851562 C 242.792969 122.96875 242.886719 123.0625 243.003906 123.0625 C 243.121094 123.0625 243.214844 122.96875 243.214844 122.851562 Z M 243.214844 122.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.28125 124.011719 C 243.28125 123.894531 243.1875 123.800781 243.070312 123.800781 C 242.953125 123.800781 242.859375 123.894531 242.859375 124.011719 C 242.859375 124.128906 242.953125 124.222656 243.070312 124.222656 C 243.1875 124.222656 243.28125 124.128906 243.28125 124.011719 Z M 243.28125 124.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.457031 123.914062 C 244.457031 123.796875 244.363281 123.703125 244.246094 123.703125 C 244.128906 123.703125 244.035156 123.796875 244.035156 123.914062 C 244.035156 124.03125 244.128906 124.125 244.246094 124.125 C 244.363281 124.125 244.457031 124.03125 244.457031 123.914062 Z M 244.457031 123.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.972656 125.390625 C 244.972656 125.273438 244.878906 125.179688 244.761719 125.179688 C 244.644531 125.179688 244.550781 125.273438 244.550781 125.390625 C 244.550781 125.507812 244.644531 125.601562 244.761719 125.601562 C 244.878906 125.601562 244.972656 125.507812 244.972656 125.390625 Z M 244.972656 125.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.824219 123.90625 C 246.824219 123.789062 246.730469 123.695312 246.613281 123.695312 C 246.496094 123.695312 246.402344 123.789062 246.402344 123.90625 C 246.402344 124.023438 246.496094 124.117188 246.613281 124.117188 C 246.730469 124.117188 246.824219 124.023438 246.824219 123.90625 Z M 246.824219 123.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.539062 127.289062 C 246.539062 127.171875 246.445312 127.078125 246.328125 127.078125 C 246.210938 127.078125 246.117188 127.171875 246.117188 127.289062 C 246.117188 127.40625 246.210938 127.5 246.328125 127.5 C 246.445312 127.5 246.539062 127.40625 246.539062 127.289062 Z M 246.539062 127.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.808594 122.921875 C 247.808594 122.804688 247.714844 122.710938 247.597656 122.710938 C 247.480469 122.710938 247.386719 122.804688 247.386719 122.921875 C 247.386719 123.039062 247.480469 123.132812 247.597656 123.132812 C 247.714844 123.132812 247.808594 123.039062 247.808594 122.921875 Z M 247.808594 122.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.949219 123.878906 C 246.949219 123.761719 246.855469 123.667969 246.738281 123.667969 C 246.621094 123.667969 246.527344 123.761719 246.527344 123.878906 C 246.527344 123.996094 246.621094 124.089844 246.738281 124.089844 C 246.855469 124.089844 246.949219 123.996094 246.949219 123.878906 Z M 246.949219 123.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.550781 125.75 C 247.550781 125.632812 247.457031 125.539062 247.339844 125.539062 C 247.222656 125.539062 247.128906 125.632812 247.128906 125.75 C 247.128906 125.867188 247.222656 125.960938 247.339844 125.960938 C 247.457031 125.960938 247.550781 125.867188 247.550781 125.75 Z M 247.550781 125.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.800781 128.363281 C 246.800781 128.246094 246.707031 128.152344 246.589844 128.152344 C 246.472656 128.152344 246.378906 128.246094 246.378906 128.363281 C 246.378906 128.480469 246.472656 128.574219 246.589844 128.574219 C 246.707031 128.574219 246.800781 128.480469 246.800781 128.363281 Z M 246.800781 128.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.34375 130.144531 C 246.34375 130.027344 246.25 129.933594 246.132812 129.933594 C 246.015625 129.933594 245.921875 130.027344 245.921875 130.144531 C 245.921875 130.261719 246.015625 130.355469 246.132812 130.355469 C 246.25 130.355469 246.34375 130.261719 246.34375 130.144531 Z M 246.34375 130.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.671875 130.933594 C 247.671875 130.816406 247.578125 130.722656 247.460938 130.722656 C 247.34375 130.722656 247.25 130.816406 247.25 130.933594 C 247.25 131.050781 247.34375 131.144531 247.460938 131.144531 C 247.578125 131.144531 247.671875 131.050781 247.671875 130.933594 Z M 247.671875 130.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.296875 132.773438 C 245.296875 132.65625 245.203125 132.5625 245.085938 132.5625 C 244.96875 132.5625 244.875 132.65625 244.875 132.773438 C 244.875 132.890625 244.96875 132.984375 245.085938 132.984375 C 245.203125 132.984375 245.296875 132.890625 245.296875 132.773438 Z M 245.296875 132.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.273438 132.863281 C 244.273438 132.746094 244.179688 132.652344 244.0625 132.652344 C 243.945312 132.652344 243.851562 132.746094 243.851562 132.863281 C 243.851562 132.980469 243.945312 133.074219 244.0625 133.074219 C 244.179688 133.074219 244.273438 132.980469 244.273438 132.863281 Z M 244.273438 132.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.3125 132.355469 C 242.3125 132.238281 242.21875 132.144531 242.101562 132.144531 C 241.984375 132.144531 241.890625 132.238281 241.890625 132.355469 C 241.890625 132.472656 241.984375 132.566406 242.101562 132.566406 C 242.21875 132.566406 242.3125 132.472656 242.3125 132.355469 Z M 242.3125 132.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.082031 134.648438 C 242.082031 134.53125 241.988281 134.4375 241.871094 134.4375 C 241.753906 134.4375 241.660156 134.53125 241.660156 134.648438 C 241.660156 134.765625 241.753906 134.859375 241.871094 134.859375 C 241.988281 134.859375 242.082031 134.765625 242.082031 134.648438 Z M 242.082031 134.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.792969 135.59375 C 239.792969 135.476562 239.699219 135.382812 239.582031 135.382812 C 239.464844 135.382812 239.371094 135.476562 239.371094 135.59375 C 239.371094 135.710938 239.464844 135.804688 239.582031 135.804688 C 239.699219 135.804688 239.792969 135.710938 239.792969 135.59375 Z M 239.792969 135.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.65625 133.964844 C 239.65625 133.847656 239.5625 133.753906 239.445312 133.753906 C 239.328125 133.753906 239.234375 133.847656 239.234375 133.964844 C 239.234375 134.082031 239.328125 134.175781 239.445312 134.175781 C 239.5625 134.175781 239.65625 134.082031 239.65625 133.964844 Z M 239.65625 133.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.835938 134.722656 C 236.835938 134.605469 236.742188 134.511719 236.625 134.511719 C 236.507812 134.511719 236.414062 134.605469 236.414062 134.722656 C 236.414062 134.839844 236.507812 134.933594 236.625 134.933594 C 236.742188 134.933594 236.835938 134.839844 236.835938 134.722656 Z M 236.835938 134.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.453125 134.695312 C 240.453125 134.578125 240.359375 134.484375 240.242188 134.484375 C 240.125 134.484375 240.03125 134.578125 240.03125 134.695312 C 240.03125 134.8125 240.125 134.90625 240.242188 134.90625 C 240.359375 134.90625 240.453125 134.8125 240.453125 134.695312 Z M 240.453125 134.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.28125 133.179688 C 246.28125 133.0625 246.1875 132.96875 246.070312 132.96875 C 245.953125 132.96875 245.859375 133.0625 245.859375 133.179688 C 245.859375 133.296875 245.953125 133.390625 246.070312 133.390625 C 246.1875 133.390625 246.28125 133.296875 246.28125 133.179688 Z M 246.28125 133.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.335938 135.007812 C 248.335938 134.890625 248.242188 134.796875 248.125 134.796875 C 248.007812 134.796875 247.914062 134.890625 247.914062 135.007812 C 247.914062 135.125 248.007812 135.21875 248.125 135.21875 C 248.242188 135.21875 248.335938 135.125 248.335938 135.007812 Z M 248.335938 135.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.511719 134.660156 C 246.511719 134.542969 246.417969 134.449219 246.300781 134.449219 C 246.183594 134.449219 246.089844 134.542969 246.089844 134.660156 C 246.089844 134.777344 246.183594 134.871094 246.300781 134.871094 C 246.417969 134.871094 246.511719 134.777344 246.511719 134.660156 Z M 246.511719 134.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.75 133.871094 C 249.75 133.753906 249.65625 133.660156 249.539062 133.660156 C 249.421875 133.660156 249.328125 133.753906 249.328125 133.871094 C 249.328125 133.988281 249.421875 134.082031 249.539062 134.082031 C 249.65625 134.082031 249.75 133.988281 249.75 133.871094 Z M 249.75 133.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.054688 132.066406 C 249.054688 131.949219 248.960938 131.855469 248.84375 131.855469 C 248.726562 131.855469 248.632812 131.949219 248.632812 132.066406 C 248.632812 132.183594 248.726562 132.277344 248.84375 132.277344 C 248.960938 132.277344 249.054688 132.183594 249.054688 132.066406 Z M 249.054688 132.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.386719 131.816406 C 248.386719 131.699219 248.292969 131.605469 248.175781 131.605469 C 248.058594 131.605469 247.964844 131.699219 247.964844 131.816406 C 247.964844 131.933594 248.058594 132.027344 248.175781 132.027344 C 248.292969 132.027344 248.386719 131.933594 248.386719 131.816406 Z M 248.386719 131.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.234375 131.1875 C 248.234375 131.070312 248.140625 130.976562 248.023438 130.976562 C 247.90625 130.976562 247.8125 131.070312 247.8125 131.1875 C 247.8125 131.304688 247.90625 131.398438 248.023438 131.398438 C 248.140625 131.398438 248.234375 131.304688 248.234375 131.1875 Z M 248.234375 131.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.933594 135.695312 C 248.933594 135.578125 248.839844 135.484375 248.722656 135.484375 C 248.605469 135.484375 248.511719 135.578125 248.511719 135.695312 C 248.511719 135.8125 248.605469 135.90625 248.722656 135.90625 C 248.839844 135.90625 248.933594 135.8125 248.933594 135.695312 Z M 248.933594 135.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.828125 134.878906 C 250.828125 134.761719 250.734375 134.667969 250.617188 134.667969 C 250.5 134.667969 250.40625 134.761719 250.40625 134.878906 C 250.40625 134.996094 250.5 135.089844 250.617188 135.089844 C 250.734375 135.089844 250.828125 134.996094 250.828125 134.878906 Z M 250.828125 134.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 253.53125 138.292969 C 253.53125 138.175781 253.4375 138.082031 253.320312 138.082031 C 253.203125 138.082031 253.109375 138.175781 253.109375 138.292969 C 253.109375 138.410156 253.203125 138.503906 253.320312 138.503906 C 253.4375 138.503906 253.53125 138.410156 253.53125 138.292969 Z M 253.53125 138.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.867188 137.394531 C 248.867188 137.277344 248.773438 137.183594 248.65625 137.183594 C 248.539062 137.183594 248.445312 137.277344 248.445312 137.394531 C 248.445312 137.511719 248.539062 137.605469 248.65625 137.605469 C 248.773438 137.605469 248.867188 137.511719 248.867188 137.394531 Z M 248.867188 137.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.3125 135.503906 C 246.3125 135.386719 246.21875 135.292969 246.101562 135.292969 C 245.984375 135.292969 245.890625 135.386719 245.890625 135.503906 C 245.890625 135.621094 245.984375 135.714844 246.101562 135.714844 C 246.21875 135.714844 246.3125 135.621094 246.3125 135.503906 Z M 246.3125 135.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.734375 137.351562 C 245.734375 137.234375 245.640625 137.140625 245.523438 137.140625 C 245.40625 137.140625 245.3125 137.234375 245.3125 137.351562 C 245.3125 137.46875 245.40625 137.5625 245.523438 137.5625 C 245.640625 137.5625 245.734375 137.46875 245.734375 137.351562 Z M 245.734375 137.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.171875 140.414062 C 246.171875 140.296875 246.078125 140.203125 245.960938 140.203125 C 245.84375 140.203125 245.75 140.296875 245.75 140.414062 C 245.75 140.53125 245.84375 140.625 245.960938 140.625 C 246.078125 140.625 246.171875 140.53125 246.171875 140.414062 Z M 246.171875 140.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.441406 140.179688 C 247.441406 140.0625 247.347656 139.96875 247.230469 139.96875 C 247.113281 139.96875 247.019531 140.0625 247.019531 140.179688 C 247.019531 140.296875 247.113281 140.390625 247.230469 140.390625 C 247.347656 140.390625 247.441406 140.296875 247.441406 140.179688 Z M 247.441406 140.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.308594 142.46875 C 247.308594 142.351562 247.214844 142.257812 247.097656 142.257812 C 246.980469 142.257812 246.886719 142.351562 246.886719 142.46875 C 246.886719 142.585938 246.980469 142.679688 247.097656 142.679688 C 247.214844 142.679688 247.308594 142.585938 247.308594 142.46875 Z M 247.308594 142.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.660156 146.214844 C 246.660156 146.097656 246.566406 146.003906 246.449219 146.003906 C 246.332031 146.003906 246.238281 146.097656 246.238281 146.214844 C 246.238281 146.332031 246.332031 146.425781 246.449219 146.425781 C 246.566406 146.425781 246.660156 146.332031 246.660156 146.214844 Z M 246.660156 146.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.492188 147.25 C 246.492188 147.132812 246.398438 147.039062 246.28125 147.039062 C 246.164062 147.039062 246.070312 147.132812 246.070312 147.25 C 246.070312 147.367188 246.164062 147.460938 246.28125 147.460938 C 246.398438 147.460938 246.492188 147.367188 246.492188 147.25 Z M 246.492188 147.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.746094 147.886719 C 244.746094 147.769531 244.652344 147.675781 244.535156 147.675781 C 244.417969 147.675781 244.324219 147.769531 244.324219 147.886719 C 244.324219 148.003906 244.417969 148.097656 244.535156 148.097656 C 244.652344 148.097656 244.746094 148.003906 244.746094 147.886719 Z M 244.746094 147.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.445312 148.265625 C 243.445312 148.148438 243.351562 148.054688 243.234375 148.054688 C 243.117188 148.054688 243.023438 148.148438 243.023438 148.265625 C 243.023438 148.382812 243.117188 148.476562 243.234375 148.476562 C 243.351562 148.476562 243.445312 148.382812 243.445312 148.265625 Z M 243.445312 148.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.460938 149.738281 C 240.460938 149.621094 240.367188 149.527344 240.25 149.527344 C 240.132812 149.527344 240.039062 149.621094 240.039062 149.738281 C 240.039062 149.855469 240.132812 149.949219 240.25 149.949219 C 240.367188 149.949219 240.460938 149.855469 240.460938 149.738281 Z M 240.460938 149.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.792969 151.796875 C 239.792969 151.679688 239.699219 151.585938 239.582031 151.585938 C 239.464844 151.585938 239.371094 151.679688 239.371094 151.796875 C 239.371094 151.914062 239.464844 152.007812 239.582031 152.007812 C 239.699219 152.007812 239.792969 151.914062 239.792969 151.796875 Z M 239.792969 151.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.367188 145.1875 C 241.367188 145.070312 241.273438 144.976562 241.15625 144.976562 C 241.039062 144.976562 240.945312 145.070312 240.945312 145.1875 C 240.945312 145.304688 241.039062 145.398438 241.15625 145.398438 C 241.273438 145.398438 241.367188 145.304688 241.367188 145.1875 Z M 241.367188 145.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.671875 148.328125 C 243.671875 148.210938 243.578125 148.117188 243.460938 148.117188 C 243.34375 148.117188 243.25 148.210938 243.25 148.328125 C 243.25 148.445312 243.34375 148.539062 243.460938 148.539062 C 243.578125 148.539062 243.671875 148.445312 243.671875 148.328125 Z M 243.671875 148.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.882812 148.097656 C 243.882812 147.980469 243.789062 147.886719 243.671875 147.886719 C 243.554688 147.886719 243.460938 147.980469 243.460938 148.097656 C 243.460938 148.214844 243.554688 148.308594 243.671875 148.308594 C 243.789062 148.308594 243.882812 148.214844 243.882812 148.097656 Z M 243.882812 148.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 242.140625 147.238281 C 242.140625 147.121094 242.046875 147.027344 241.929688 147.027344 C 241.8125 147.027344 241.71875 147.121094 241.71875 147.238281 C 241.71875 147.355469 241.8125 147.449219 241.929688 147.449219 C 242.046875 147.449219 242.140625 147.355469 242.140625 147.238281 Z M 242.140625 147.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.664062 145.484375 C 241.664062 145.367188 241.570312 145.273438 241.453125 145.273438 C 241.335938 145.273438 241.242188 145.367188 241.242188 145.484375 C 241.242188 145.601562 241.335938 145.695312 241.453125 145.695312 C 241.570312 145.695312 241.664062 145.601562 241.664062 145.484375 Z M 241.664062 145.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.140625 141.164062 C 240.140625 141.046875 240.046875 140.953125 239.929688 140.953125 C 239.8125 140.953125 239.71875 141.046875 239.71875 141.164062 C 239.71875 141.28125 239.8125 141.375 239.929688 141.375 C 240.046875 141.375 240.140625 141.28125 240.140625 141.164062 Z M 240.140625 141.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.742188 142.585938 C 238.742188 142.46875 238.648438 142.375 238.53125 142.375 C 238.414062 142.375 238.320312 142.46875 238.320312 142.585938 C 238.320312 142.703125 238.414062 142.796875 238.53125 142.796875 C 238.648438 142.796875 238.742188 142.703125 238.742188 142.585938 Z M 238.742188 142.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.042969 140.214844 C 239.042969 140.097656 238.949219 140.003906 238.832031 140.003906 C 238.714844 140.003906 238.621094 140.097656 238.621094 140.214844 C 238.621094 140.332031 238.714844 140.425781 238.832031 140.425781 C 238.949219 140.425781 239.042969 140.332031 239.042969 140.214844 Z M 239.042969 140.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.527344 138.234375 C 236.527344 138.117188 236.433594 138.023438 236.316406 138.023438 C 236.199219 138.023438 236.105469 138.117188 236.105469 138.234375 C 236.105469 138.351562 236.199219 138.445312 236.316406 138.445312 C 236.433594 138.445312 236.527344 138.351562 236.527344 138.234375 Z M 236.527344 138.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.824219 141.675781 C 235.824219 141.558594 235.730469 141.464844 235.613281 141.464844 C 235.496094 141.464844 235.402344 141.558594 235.402344 141.675781 C 235.402344 141.792969 235.496094 141.886719 235.613281 141.886719 C 235.730469 141.886719 235.824219 141.792969 235.824219 141.675781 Z M 235.824219 141.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.507812 139.503906 C 233.507812 139.386719 233.414062 139.292969 233.296875 139.292969 C 233.179688 139.292969 233.085938 139.386719 233.085938 139.503906 C 233.085938 139.621094 233.179688 139.714844 233.296875 139.714844 C 233.414062 139.714844 233.507812 139.621094 233.507812 139.503906 Z M 233.507812 139.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.566406 140.566406 C 232.566406 140.449219 232.472656 140.355469 232.355469 140.355469 C 232.238281 140.355469 232.144531 140.449219 232.144531 140.566406 C 232.144531 140.683594 232.238281 140.777344 232.355469 140.777344 C 232.472656 140.777344 232.566406 140.683594 232.566406 140.566406 Z M 232.566406 140.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.007812 141.804688 C 230.007812 141.6875 229.914062 141.59375 229.796875 141.59375 C 229.679688 141.59375 229.585938 141.6875 229.585938 141.804688 C 229.585938 141.921875 229.679688 142.015625 229.796875 142.015625 C 229.914062 142.015625 230.007812 141.921875 230.007812 141.804688 Z M 230.007812 141.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.050781 140.019531 C 229.050781 139.902344 228.957031 139.808594 228.839844 139.808594 C 228.722656 139.808594 228.628906 139.902344 228.628906 140.019531 C 228.628906 140.136719 228.722656 140.230469 228.839844 140.230469 C 228.957031 140.230469 229.050781 140.136719 229.050781 140.019531 Z M 229.050781 140.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.675781 143.449219 C 231.675781 143.332031 231.582031 143.238281 231.464844 143.238281 C 231.347656 143.238281 231.253906 143.332031 231.253906 143.449219 C 231.253906 143.566406 231.347656 143.660156 231.464844 143.660156 C 231.582031 143.660156 231.675781 143.566406 231.675781 143.449219 Z M 231.675781 143.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.128906 141.554688 C 229.128906 141.4375 229.035156 141.34375 228.917969 141.34375 C 228.800781 141.34375 228.707031 141.4375 228.707031 141.554688 C 228.707031 141.671875 228.800781 141.765625 228.917969 141.765625 C 229.035156 141.765625 229.128906 141.671875 229.128906 141.554688 Z M 229.128906 141.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.5 140.394531 C 226.5 140.277344 226.40625 140.183594 226.289062 140.183594 C 226.171875 140.183594 226.078125 140.277344 226.078125 140.394531 C 226.078125 140.511719 226.171875 140.605469 226.289062 140.605469 C 226.40625 140.605469 226.5 140.511719 226.5 140.394531 Z M 226.5 140.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.230469 141.871094 C 225.230469 141.753906 225.136719 141.660156 225.019531 141.660156 C 224.902344 141.660156 224.808594 141.753906 224.808594 141.871094 C 224.808594 141.988281 224.902344 142.082031 225.019531 142.082031 C 225.136719 142.082031 225.230469 141.988281 225.230469 141.871094 Z M 225.230469 141.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.132812 143.457031 C 228.132812 143.339844 228.039062 143.246094 227.921875 143.246094 C 227.804688 143.246094 227.710938 143.339844 227.710938 143.457031 C 227.710938 143.574219 227.804688 143.667969 227.921875 143.667969 C 228.039062 143.667969 228.132812 143.574219 228.132812 143.457031 Z M 228.132812 143.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.929688 141.714844 C 221.929688 141.597656 221.835938 141.503906 221.71875 141.503906 C 221.601562 141.503906 221.507812 141.597656 221.507812 141.714844 C 221.507812 141.832031 221.601562 141.925781 221.71875 141.925781 C 221.835938 141.925781 221.929688 141.832031 221.929688 141.714844 Z M 221.929688 141.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.070312 140.371094 C 223.070312 140.253906 222.976562 140.160156 222.859375 140.160156 C 222.742188 140.160156 222.648438 140.253906 222.648438 140.371094 C 222.648438 140.488281 222.742188 140.582031 222.859375 140.582031 C 222.976562 140.582031 223.070312 140.488281 223.070312 140.371094 Z M 223.070312 140.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.160156 139.671875 C 224.160156 139.554688 224.066406 139.460938 223.949219 139.460938 C 223.832031 139.460938 223.738281 139.554688 223.738281 139.671875 C 223.738281 139.789062 223.832031 139.882812 223.949219 139.882812 C 224.066406 139.882812 224.160156 139.789062 224.160156 139.671875 Z M 224.160156 139.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.1875 138.859375 C 223.1875 138.742188 223.09375 138.648438 222.976562 138.648438 C 222.859375 138.648438 222.765625 138.742188 222.765625 138.859375 C 222.765625 138.976562 222.859375 139.070312 222.976562 139.070312 C 223.09375 139.070312 223.1875 138.976562 223.1875 138.859375 Z M 223.1875 138.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.097656 139.691406 C 223.097656 139.574219 223.003906 139.480469 222.886719 139.480469 C 222.769531 139.480469 222.675781 139.574219 222.675781 139.691406 C 222.675781 139.808594 222.769531 139.902344 222.886719 139.902344 C 223.003906 139.902344 223.097656 139.808594 223.097656 139.691406 Z M 223.097656 139.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.636719 137.019531 C 220.636719 136.902344 220.542969 136.808594 220.425781 136.808594 C 220.308594 136.808594 220.214844 136.902344 220.214844 137.019531 C 220.214844 137.136719 220.308594 137.230469 220.425781 137.230469 C 220.542969 137.230469 220.636719 137.136719 220.636719 137.019531 Z M 220.636719 137.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.21875 138.167969 C 225.21875 138.050781 225.125 137.957031 225.007812 137.957031 C 224.890625 137.957031 224.796875 138.050781 224.796875 138.167969 C 224.796875 138.285156 224.890625 138.378906 225.007812 138.378906 C 225.125 138.378906 225.21875 138.285156 225.21875 138.167969 Z M 225.21875 138.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.933594 139.082031 C 226.933594 138.964844 226.839844 138.871094 226.722656 138.871094 C 226.605469 138.871094 226.511719 138.964844 226.511719 139.082031 C 226.511719 139.199219 226.605469 139.292969 226.722656 139.292969 C 226.839844 139.292969 226.933594 139.199219 226.933594 139.082031 Z M 226.933594 139.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.070312 142.234375 C 225.070312 142.117188 224.976562 142.023438 224.859375 142.023438 C 224.742188 142.023438 224.648438 142.117188 224.648438 142.234375 C 224.648438 142.351562 224.742188 142.445312 224.859375 142.445312 C 224.976562 142.445312 225.070312 142.351562 225.070312 142.234375 Z M 225.070312 142.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.707031 144.59375 C 224.707031 144.476562 224.613281 144.382812 224.496094 144.382812 C 224.378906 144.382812 224.285156 144.476562 224.285156 144.59375 C 224.285156 144.710938 224.378906 144.804688 224.496094 144.804688 C 224.613281 144.804688 224.707031 144.710938 224.707031 144.59375 Z M 224.707031 144.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.726562 140.320312 C 222.726562 140.203125 222.632812 140.109375 222.515625 140.109375 C 222.398438 140.109375 222.304688 140.203125 222.304688 140.320312 C 222.304688 140.4375 222.398438 140.53125 222.515625 140.53125 C 222.632812 140.53125 222.726562 140.4375 222.726562 140.320312 Z M 222.726562 140.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.363281 139.730469 C 225.363281 139.613281 225.269531 139.519531 225.152344 139.519531 C 225.035156 139.519531 224.941406 139.613281 224.941406 139.730469 C 224.941406 139.847656 225.035156 139.941406 225.152344 139.941406 C 225.269531 139.941406 225.363281 139.847656 225.363281 139.730469 Z M 225.363281 139.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.886719 139.03125 C 225.886719 138.914062 225.792969 138.820312 225.675781 138.820312 C 225.558594 138.820312 225.464844 138.914062 225.464844 139.03125 C 225.464844 139.148438 225.558594 139.242188 225.675781 139.242188 C 225.792969 139.242188 225.886719 139.148438 225.886719 139.03125 Z M 225.886719 139.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.453125 138.675781 C 227.453125 138.558594 227.359375 138.464844 227.242188 138.464844 C 227.125 138.464844 227.03125 138.558594 227.03125 138.675781 C 227.03125 138.792969 227.125 138.886719 227.242188 138.886719 C 227.359375 138.886719 227.453125 138.792969 227.453125 138.675781 Z M 227.453125 138.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.9375 136.695312 C 228.9375 136.578125 228.84375 136.484375 228.726562 136.484375 C 228.609375 136.484375 228.515625 136.578125 228.515625 136.695312 C 228.515625 136.8125 228.609375 136.90625 228.726562 136.90625 C 228.84375 136.90625 228.9375 136.8125 228.9375 136.695312 Z M 228.9375 136.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.285156 133.375 C 228.285156 133.257812 228.191406 133.164062 228.074219 133.164062 C 227.957031 133.164062 227.863281 133.257812 227.863281 133.375 C 227.863281 133.492188 227.957031 133.585938 228.074219 133.585938 C 228.191406 133.585938 228.285156 133.492188 228.285156 133.375 Z M 228.285156 133.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.167969 134.636719 C 230.167969 134.519531 230.074219 134.425781 229.957031 134.425781 C 229.839844 134.425781 229.746094 134.519531 229.746094 134.636719 C 229.746094 134.753906 229.839844 134.847656 229.957031 134.847656 C 230.074219 134.847656 230.167969 134.753906 230.167969 134.636719 Z M 230.167969 134.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.566406 135.035156 C 230.566406 134.917969 230.472656 134.824219 230.355469 134.824219 C 230.238281 134.824219 230.144531 134.917969 230.144531 135.035156 C 230.144531 135.152344 230.238281 135.246094 230.355469 135.246094 C 230.472656 135.246094 230.566406 135.152344 230.566406 135.035156 Z M 230.566406 135.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.167969 134.925781 C 229.167969 134.808594 229.074219 134.714844 228.957031 134.714844 C 228.839844 134.714844 228.746094 134.808594 228.746094 134.925781 C 228.746094 135.042969 228.839844 135.136719 228.957031 135.136719 C 229.074219 135.136719 229.167969 135.042969 229.167969 134.925781 Z M 229.167969 134.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.078125 135.722656 C 231.078125 135.605469 230.984375 135.511719 230.867188 135.511719 C 230.75 135.511719 230.65625 135.605469 230.65625 135.722656 C 230.65625 135.839844 230.75 135.933594 230.867188 135.933594 C 230.984375 135.933594 231.078125 135.839844 231.078125 135.722656 Z M 231.078125 135.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.90625 136.984375 C 229.90625 136.867188 229.8125 136.773438 229.695312 136.773438 C 229.578125 136.773438 229.484375 136.867188 229.484375 136.984375 C 229.484375 137.101562 229.578125 137.195312 229.695312 137.195312 C 229.8125 137.195312 229.90625 137.101562 229.90625 136.984375 Z M 229.90625 136.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.433594 140.902344 C 231.433594 140.785156 231.339844 140.691406 231.222656 140.691406 C 231.105469 140.691406 231.011719 140.785156 231.011719 140.902344 C 231.011719 141.019531 231.105469 141.113281 231.222656 141.113281 C 231.339844 141.113281 231.433594 141.019531 231.433594 140.902344 Z M 231.433594 140.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.472656 141.605469 C 231.472656 141.488281 231.378906 141.394531 231.261719 141.394531 C 231.144531 141.394531 231.050781 141.488281 231.050781 141.605469 C 231.050781 141.722656 231.144531 141.816406 231.261719 141.816406 C 231.378906 141.816406 231.472656 141.722656 231.472656 141.605469 Z M 231.472656 141.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.371094 141.070312 C 229.371094 140.953125 229.277344 140.859375 229.160156 140.859375 C 229.042969 140.859375 228.949219 140.953125 228.949219 141.070312 C 228.949219 141.1875 229.042969 141.28125 229.160156 141.28125 C 229.277344 141.28125 229.371094 141.1875 229.371094 141.070312 Z M 229.371094 141.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.109375 141.402344 C 226.109375 141.285156 226.015625 141.191406 225.898438 141.191406 C 225.78125 141.191406 225.6875 141.285156 225.6875 141.402344 C 225.6875 141.519531 225.78125 141.613281 225.898438 141.613281 C 226.015625 141.613281 226.109375 141.519531 226.109375 141.402344 Z M 226.109375 141.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.097656 144.539062 C 228.097656 144.421875 228.003906 144.328125 227.886719 144.328125 C 227.769531 144.328125 227.675781 144.421875 227.675781 144.539062 C 227.675781 144.65625 227.769531 144.75 227.886719 144.75 C 228.003906 144.75 228.097656 144.65625 228.097656 144.539062 Z M 228.097656 144.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.261719 145.128906 C 226.261719 145.011719 226.167969 144.917969 226.050781 144.917969 C 225.933594 144.917969 225.839844 145.011719 225.839844 145.128906 C 225.839844 145.246094 225.933594 145.339844 226.050781 145.339844 C 226.167969 145.339844 226.261719 145.246094 226.261719 145.128906 Z M 226.261719 145.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.398438 143.671875 C 227.398438 143.554688 227.304688 143.460938 227.1875 143.460938 C 227.070312 143.460938 226.976562 143.554688 226.976562 143.671875 C 226.976562 143.789062 227.070312 143.882812 227.1875 143.882812 C 227.304688 143.882812 227.398438 143.789062 227.398438 143.671875 Z M 227.398438 143.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.449219 143.570312 C 230.449219 143.453125 230.355469 143.359375 230.238281 143.359375 C 230.121094 143.359375 230.027344 143.453125 230.027344 143.570312 C 230.027344 143.6875 230.121094 143.78125 230.238281 143.78125 C 230.355469 143.78125 230.449219 143.6875 230.449219 143.570312 Z M 230.449219 143.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.230469 140.367188 C 231.230469 140.25 231.136719 140.15625 231.019531 140.15625 C 230.902344 140.15625 230.808594 140.25 230.808594 140.367188 C 230.808594 140.484375 230.902344 140.578125 231.019531 140.578125 C 231.136719 140.578125 231.230469 140.484375 231.230469 140.367188 Z M 231.230469 140.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.203125 143.191406 C 234.203125 143.074219 234.109375 142.980469 233.992188 142.980469 C 233.875 142.980469 233.78125 143.074219 233.78125 143.191406 C 233.78125 143.308594 233.875 143.402344 233.992188 143.402344 C 234.109375 143.402344 234.203125 143.308594 234.203125 143.191406 Z M 234.203125 143.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.378906 143.519531 C 231.378906 143.402344 231.285156 143.308594 231.167969 143.308594 C 231.050781 143.308594 230.957031 143.402344 230.957031 143.519531 C 230.957031 143.636719 231.050781 143.730469 231.167969 143.730469 C 231.285156 143.730469 231.378906 143.636719 231.378906 143.519531 Z M 231.378906 143.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.148438 139.597656 C 233.148438 139.480469 233.054688 139.386719 232.9375 139.386719 C 232.820312 139.386719 232.726562 139.480469 232.726562 139.597656 C 232.726562 139.714844 232.820312 139.808594 232.9375 139.808594 C 233.054688 139.808594 233.148438 139.714844 233.148438 139.597656 Z M 233.148438 139.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.574219 136.191406 C 233.574219 136.074219 233.480469 135.980469 233.363281 135.980469 C 233.246094 135.980469 233.152344 136.074219 233.152344 136.191406 C 233.152344 136.308594 233.246094 136.402344 233.363281 136.402344 C 233.480469 136.402344 233.574219 136.308594 233.574219 136.191406 Z M 233.574219 136.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.097656 134.621094 C 232.097656 134.503906 232.003906 134.410156 231.886719 134.410156 C 231.769531 134.410156 231.675781 134.503906 231.675781 134.621094 C 231.675781 134.738281 231.769531 134.832031 231.886719 134.832031 C 232.003906 134.832031 232.097656 134.738281 232.097656 134.621094 Z M 232.097656 134.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.332031 137.5625 C 229.332031 137.445312 229.238281 137.351562 229.121094 137.351562 C 229.003906 137.351562 228.910156 137.445312 228.910156 137.5625 C 228.910156 137.679688 229.003906 137.773438 229.121094 137.773438 C 229.238281 137.773438 229.332031 137.679688 229.332031 137.5625 Z M 229.332031 137.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.03125 139.007812 C 231.03125 138.890625 230.9375 138.796875 230.820312 138.796875 C 230.703125 138.796875 230.609375 138.890625 230.609375 139.007812 C 230.609375 139.125 230.703125 139.21875 230.820312 139.21875 C 230.9375 139.21875 231.03125 139.125 231.03125 139.007812 Z M 231.03125 139.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.917969 140.804688 C 230.917969 140.6875 230.824219 140.59375 230.707031 140.59375 C 230.589844 140.59375 230.496094 140.6875 230.496094 140.804688 C 230.496094 140.921875 230.589844 141.015625 230.707031 141.015625 C 230.824219 141.015625 230.917969 140.921875 230.917969 140.804688 Z M 230.917969 140.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.160156 144.105469 C 231.160156 143.988281 231.066406 143.894531 230.949219 143.894531 C 230.832031 143.894531 230.738281 143.988281 230.738281 144.105469 C 230.738281 144.222656 230.832031 144.316406 230.949219 144.316406 C 231.066406 144.316406 231.160156 144.222656 231.160156 144.105469 Z M 231.160156 144.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.285156 143 C 234.285156 142.882812 234.191406 142.789062 234.074219 142.789062 C 233.957031 142.789062 233.863281 142.882812 233.863281 143 C 233.863281 143.117188 233.957031 143.210938 234.074219 143.210938 C 234.191406 143.210938 234.285156 143.117188 234.285156 143 Z M 234.285156 143 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.121094 146.421875 C 230.121094 146.304688 230.027344 146.210938 229.910156 146.210938 C 229.792969 146.210938 229.699219 146.304688 229.699219 146.421875 C 229.699219 146.539062 229.792969 146.632812 229.910156 146.632812 C 230.027344 146.632812 230.121094 146.539062 230.121094 146.421875 Z M 230.121094 146.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.351562 147.078125 C 228.351562 146.960938 228.257812 146.867188 228.140625 146.867188 C 228.023438 146.867188 227.929688 146.960938 227.929688 147.078125 C 227.929688 147.195312 228.023438 147.289062 228.140625 147.289062 C 228.257812 147.289062 228.351562 147.195312 228.351562 147.078125 Z M 228.351562 147.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.457031 145.835938 C 228.457031 145.71875 228.363281 145.625 228.246094 145.625 C 228.128906 145.625 228.035156 145.71875 228.035156 145.835938 C 228.035156 145.953125 228.128906 146.046875 228.246094 146.046875 C 228.363281 146.046875 228.457031 145.953125 228.457031 145.835938 Z M 228.457031 145.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.070312 148.070312 C 232.070312 147.953125 231.976562 147.859375 231.859375 147.859375 C 231.742188 147.859375 231.648438 147.953125 231.648438 148.070312 C 231.648438 148.1875 231.742188 148.28125 231.859375 148.28125 C 231.976562 148.28125 232.070312 148.1875 232.070312 148.070312 Z M 232.070312 148.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.046875 145.246094 C 234.046875 145.128906 233.953125 145.035156 233.835938 145.035156 C 233.71875 145.035156 233.625 145.128906 233.625 145.246094 C 233.625 145.363281 233.71875 145.457031 233.835938 145.457031 C 233.953125 145.457031 234.046875 145.363281 234.046875 145.246094 Z M 234.046875 145.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.492188 144.816406 C 233.492188 144.699219 233.398438 144.605469 233.28125 144.605469 C 233.164062 144.605469 233.070312 144.699219 233.070312 144.816406 C 233.070312 144.933594 233.164062 145.027344 233.28125 145.027344 C 233.398438 145.027344 233.492188 144.933594 233.492188 144.816406 Z M 233.492188 144.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.796875 146.832031 C 232.796875 146.714844 232.703125 146.621094 232.585938 146.621094 C 232.46875 146.621094 232.375 146.714844 232.375 146.832031 C 232.375 146.949219 232.46875 147.042969 232.585938 147.042969 C 232.703125 147.042969 232.796875 146.949219 232.796875 146.832031 Z M 232.796875 146.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.578125 146.96875 C 232.578125 146.851562 232.484375 146.757812 232.367188 146.757812 C 232.25 146.757812 232.15625 146.851562 232.15625 146.96875 C 232.15625 147.085938 232.25 147.179688 232.367188 147.179688 C 232.484375 147.179688 232.578125 147.085938 232.578125 146.96875 Z M 232.578125 146.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.078125 149.992188 C 232.078125 149.875 231.984375 149.78125 231.867188 149.78125 C 231.75 149.78125 231.65625 149.875 231.65625 149.992188 C 231.65625 150.109375 231.75 150.203125 231.867188 150.203125 C 231.984375 150.203125 232.078125 150.109375 232.078125 149.992188 Z M 232.078125 149.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.113281 148.753906 C 231.113281 148.636719 231.019531 148.542969 230.902344 148.542969 C 230.785156 148.542969 230.691406 148.636719 230.691406 148.753906 C 230.691406 148.871094 230.785156 148.964844 230.902344 148.964844 C 231.019531 148.964844 231.113281 148.871094 231.113281 148.753906 Z M 231.113281 148.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.171875 149.175781 C 233.171875 149.058594 233.078125 148.964844 232.960938 148.964844 C 232.84375 148.964844 232.75 149.058594 232.75 149.175781 C 232.75 149.292969 232.84375 149.386719 232.960938 149.386719 C 233.078125 149.386719 233.171875 149.292969 233.171875 149.175781 Z M 233.171875 149.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.816406 145.699219 C 229.816406 145.582031 229.722656 145.488281 229.605469 145.488281 C 229.488281 145.488281 229.394531 145.582031 229.394531 145.699219 C 229.394531 145.816406 229.488281 145.910156 229.605469 145.910156 C 229.722656 145.910156 229.816406 145.816406 229.816406 145.699219 Z M 229.816406 145.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.070312 150.578125 C 230.070312 150.460938 229.976562 150.367188 229.859375 150.367188 C 229.742188 150.367188 229.648438 150.460938 229.648438 150.578125 C 229.648438 150.695312 229.742188 150.789062 229.859375 150.789062 C 229.976562 150.789062 230.070312 150.695312 230.070312 150.578125 Z M 230.070312 150.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.558594 152.941406 C 230.558594 152.824219 230.464844 152.730469 230.347656 152.730469 C 230.230469 152.730469 230.136719 152.824219 230.136719 152.941406 C 230.136719 153.058594 230.230469 153.152344 230.347656 153.152344 C 230.464844 153.152344 230.558594 153.058594 230.558594 152.941406 Z M 230.558594 152.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.523438 153.488281 C 232.523438 153.371094 232.429688 153.277344 232.3125 153.277344 C 232.195312 153.277344 232.101562 153.371094 232.101562 153.488281 C 232.101562 153.605469 232.195312 153.699219 232.3125 153.699219 C 232.429688 153.699219 232.523438 153.605469 232.523438 153.488281 Z M 232.523438 153.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.496094 150.828125 C 234.496094 150.710938 234.402344 150.617188 234.285156 150.617188 C 234.167969 150.617188 234.074219 150.710938 234.074219 150.828125 C 234.074219 150.945312 234.167969 151.039062 234.285156 151.039062 C 234.402344 151.039062 234.496094 150.945312 234.496094 150.828125 Z M 234.496094 150.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.953125 149.855469 C 235.953125 149.738281 235.859375 149.644531 235.742188 149.644531 C 235.625 149.644531 235.53125 149.738281 235.53125 149.855469 C 235.53125 149.972656 235.625 150.066406 235.742188 150.066406 C 235.859375 150.066406 235.953125 149.972656 235.953125 149.855469 Z M 235.953125 149.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.296875 151.8125 C 234.296875 151.695312 234.203125 151.601562 234.085938 151.601562 C 233.96875 151.601562 233.875 151.695312 233.875 151.8125 C 233.875 151.929688 233.96875 152.023438 234.085938 152.023438 C 234.203125 152.023438 234.296875 151.929688 234.296875 151.8125 Z M 234.296875 151.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.078125 153.929688 C 237.078125 153.8125 236.984375 153.71875 236.867188 153.71875 C 236.75 153.71875 236.65625 153.8125 236.65625 153.929688 C 236.65625 154.046875 236.75 154.140625 236.867188 154.140625 C 236.984375 154.140625 237.078125 154.046875 237.078125 153.929688 Z M 237.078125 153.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.75 154.359375 C 234.75 154.242188 234.65625 154.148438 234.539062 154.148438 C 234.421875 154.148438 234.328125 154.242188 234.328125 154.359375 C 234.328125 154.476562 234.421875 154.570312 234.539062 154.570312 C 234.65625 154.570312 234.75 154.476562 234.75 154.359375 Z M 234.75 154.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.324219 156.875 C 239.324219 156.757812 239.230469 156.664062 239.113281 156.664062 C 238.996094 156.664062 238.902344 156.757812 238.902344 156.875 C 238.902344 156.992188 238.996094 157.085938 239.113281 157.085938 C 239.230469 157.085938 239.324219 156.992188 239.324219 156.875 Z M 239.324219 156.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.609375 154.785156 C 239.609375 154.667969 239.515625 154.574219 239.398438 154.574219 C 239.28125 154.574219 239.1875 154.667969 239.1875 154.785156 C 239.1875 154.902344 239.28125 154.996094 239.398438 154.996094 C 239.515625 154.996094 239.609375 154.902344 239.609375 154.785156 Z M 239.609375 154.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.601562 154.09375 C 241.601562 153.976562 241.507812 153.882812 241.390625 153.882812 C 241.273438 153.882812 241.179688 153.976562 241.179688 154.09375 C 241.179688 154.210938 241.273438 154.304688 241.390625 154.304688 C 241.507812 154.304688 241.601562 154.210938 241.601562 154.09375 Z M 241.601562 154.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.226562 154.046875 C 239.226562 153.929688 239.132812 153.835938 239.015625 153.835938 C 238.898438 153.835938 238.804688 153.929688 238.804688 154.046875 C 238.804688 154.164062 238.898438 154.257812 239.015625 154.257812 C 239.132812 154.257812 239.226562 154.164062 239.226562 154.046875 Z M 239.226562 154.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.183594 154.320312 C 239.183594 154.203125 239.089844 154.109375 238.972656 154.109375 C 238.855469 154.109375 238.761719 154.203125 238.761719 154.320312 C 238.761719 154.4375 238.855469 154.53125 238.972656 154.53125 C 239.089844 154.53125 239.183594 154.4375 239.183594 154.320312 Z M 239.183594 154.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.132812 154.273438 C 240.132812 154.15625 240.039062 154.0625 239.921875 154.0625 C 239.804688 154.0625 239.710938 154.15625 239.710938 154.273438 C 239.710938 154.390625 239.804688 154.484375 239.921875 154.484375 C 240.039062 154.484375 240.132812 154.390625 240.132812 154.273438 Z M 240.132812 154.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.453125 152.136719 C 240.453125 152.019531 240.359375 151.925781 240.242188 151.925781 C 240.125 151.925781 240.03125 152.019531 240.03125 152.136719 C 240.03125 152.253906 240.125 152.347656 240.242188 152.347656 C 240.359375 152.347656 240.453125 152.253906 240.453125 152.136719 Z M 240.453125 152.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.40625 149.886719 C 237.40625 149.769531 237.3125 149.675781 237.195312 149.675781 C 237.078125 149.675781 236.984375 149.769531 236.984375 149.886719 C 236.984375 150.003906 237.078125 150.097656 237.195312 150.097656 C 237.3125 150.097656 237.40625 150.003906 237.40625 149.886719 Z M 237.40625 149.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.765625 150.628906 C 237.765625 150.511719 237.671875 150.417969 237.554688 150.417969 C 237.4375 150.417969 237.34375 150.511719 237.34375 150.628906 C 237.34375 150.746094 237.4375 150.839844 237.554688 150.839844 C 237.671875 150.839844 237.765625 150.746094 237.765625 150.628906 Z M 237.765625 150.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.585938 153.464844 C 235.585938 153.347656 235.492188 153.253906 235.375 153.253906 C 235.257812 153.253906 235.164062 153.347656 235.164062 153.464844 C 235.164062 153.582031 235.257812 153.675781 235.375 153.675781 C 235.492188 153.675781 235.585938 153.582031 235.585938 153.464844 Z M 235.585938 153.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.046875 150.179688 C 237.046875 150.0625 236.953125 149.96875 236.835938 149.96875 C 236.71875 149.96875 236.625 150.0625 236.625 150.179688 C 236.625 150.296875 236.71875 150.390625 236.835938 150.390625 C 236.953125 150.390625 237.046875 150.296875 237.046875 150.179688 Z M 237.046875 150.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.28125 151.492188 C 236.28125 151.375 236.1875 151.28125 236.070312 151.28125 C 235.953125 151.28125 235.859375 151.375 235.859375 151.492188 C 235.859375 151.609375 235.953125 151.703125 236.070312 151.703125 C 236.1875 151.703125 236.28125 151.609375 236.28125 151.492188 Z M 236.28125 151.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.683594 152.660156 C 235.683594 152.542969 235.589844 152.449219 235.472656 152.449219 C 235.355469 152.449219 235.261719 152.542969 235.261719 152.660156 C 235.261719 152.777344 235.355469 152.871094 235.472656 152.871094 C 235.589844 152.871094 235.683594 152.777344 235.683594 152.660156 Z M 235.683594 152.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.582031 154.660156 C 235.582031 154.542969 235.488281 154.449219 235.371094 154.449219 C 235.253906 154.449219 235.160156 154.542969 235.160156 154.660156 C 235.160156 154.777344 235.253906 154.871094 235.371094 154.871094 C 235.488281 154.871094 235.582031 154.777344 235.582031 154.660156 Z M 235.582031 154.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.070312 154.109375 C 236.070312 153.992188 235.976562 153.898438 235.859375 153.898438 C 235.742188 153.898438 235.648438 153.992188 235.648438 154.109375 C 235.648438 154.226562 235.742188 154.320312 235.859375 154.320312 C 235.976562 154.320312 236.070312 154.226562 236.070312 154.109375 Z M 236.070312 154.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.789062 156.796875 C 234.789062 156.679688 234.695312 156.585938 234.578125 156.585938 C 234.460938 156.585938 234.367188 156.679688 234.367188 156.796875 C 234.367188 156.914062 234.460938 157.007812 234.578125 157.007812 C 234.695312 157.007812 234.789062 156.914062 234.789062 156.796875 Z M 234.789062 156.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.859375 158.9375 C 234.859375 158.820312 234.765625 158.726562 234.648438 158.726562 C 234.53125 158.726562 234.4375 158.820312 234.4375 158.9375 C 234.4375 159.054688 234.53125 159.148438 234.648438 159.148438 C 234.765625 159.148438 234.859375 159.054688 234.859375 158.9375 Z M 234.859375 158.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.15625 161.660156 C 238.15625 161.542969 238.0625 161.449219 237.945312 161.449219 C 237.828125 161.449219 237.734375 161.542969 237.734375 161.660156 C 237.734375 161.777344 237.828125 161.871094 237.945312 161.871094 C 238.0625 161.871094 238.15625 161.777344 238.15625 161.660156 Z M 238.15625 161.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.882812 162.253906 C 236.882812 162.136719 236.789062 162.042969 236.671875 162.042969 C 236.554688 162.042969 236.460938 162.136719 236.460938 162.253906 C 236.460938 162.371094 236.554688 162.464844 236.671875 162.464844 C 236.789062 162.464844 236.882812 162.371094 236.882812 162.253906 Z M 236.882812 162.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.796875 162.613281 C 236.796875 162.496094 236.703125 162.402344 236.585938 162.402344 C 236.46875 162.402344 236.375 162.496094 236.375 162.613281 C 236.375 162.730469 236.46875 162.824219 236.585938 162.824219 C 236.703125 162.824219 236.796875 162.730469 236.796875 162.613281 Z M 236.796875 162.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.78125 167.308594 C 237.78125 167.191406 237.6875 167.097656 237.570312 167.097656 C 237.453125 167.097656 237.359375 167.191406 237.359375 167.308594 C 237.359375 167.425781 237.453125 167.519531 237.570312 167.519531 C 237.6875 167.519531 237.78125 167.425781 237.78125 167.308594 Z M 237.78125 167.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.582031 165.691406 C 240.582031 165.574219 240.488281 165.480469 240.371094 165.480469 C 240.253906 165.480469 240.160156 165.574219 240.160156 165.691406 C 240.160156 165.808594 240.253906 165.902344 240.371094 165.902344 C 240.488281 165.902344 240.582031 165.808594 240.582031 165.691406 Z M 240.582031 165.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.289062 166.210938 C 239.289062 166.09375 239.195312 166 239.078125 166 C 238.960938 166 238.867188 166.09375 238.867188 166.210938 C 238.867188 166.328125 238.960938 166.421875 239.078125 166.421875 C 239.195312 166.421875 239.289062 166.328125 239.289062 166.210938 Z M 239.289062 166.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.574219 168.621094 C 237.574219 168.503906 237.480469 168.410156 237.363281 168.410156 C 237.246094 168.410156 237.152344 168.503906 237.152344 168.621094 C 237.152344 168.738281 237.246094 168.832031 237.363281 168.832031 C 237.480469 168.832031 237.574219 168.738281 237.574219 168.621094 Z M 237.574219 168.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.539062 167.429688 C 237.539062 167.3125 237.445312 167.21875 237.328125 167.21875 C 237.210938 167.21875 237.117188 167.3125 237.117188 167.429688 C 237.117188 167.546875 237.210938 167.640625 237.328125 167.640625 C 237.445312 167.640625 237.539062 167.546875 237.539062 167.429688 Z M 237.539062 167.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.714844 168.828125 C 237.714844 168.710938 237.621094 168.617188 237.503906 168.617188 C 237.386719 168.617188 237.292969 168.710938 237.292969 168.828125 C 237.292969 168.945312 237.386719 169.039062 237.503906 169.039062 C 237.621094 169.039062 237.714844 168.945312 237.714844 168.828125 Z M 237.714844 168.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.710938 165.601562 C 241.710938 165.484375 241.617188 165.390625 241.5 165.390625 C 241.382812 165.390625 241.289062 165.484375 241.289062 165.601562 C 241.289062 165.71875 241.382812 165.8125 241.5 165.8125 C 241.617188 165.8125 241.710938 165.71875 241.710938 165.601562 Z M 241.710938 165.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.910156 164.429688 C 239.910156 164.3125 239.816406 164.21875 239.699219 164.21875 C 239.582031 164.21875 239.488281 164.3125 239.488281 164.429688 C 239.488281 164.546875 239.582031 164.640625 239.699219 164.640625 C 239.816406 164.640625 239.910156 164.546875 239.910156 164.429688 Z M 239.910156 164.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.613281 163.777344 C 239.613281 163.660156 239.519531 163.566406 239.402344 163.566406 C 239.285156 163.566406 239.191406 163.660156 239.191406 163.777344 C 239.191406 163.894531 239.285156 163.988281 239.402344 163.988281 C 239.519531 163.988281 239.613281 163.894531 239.613281 163.777344 Z M 239.613281 163.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.339844 163.25 C 245.339844 163.132812 245.246094 163.039062 245.128906 163.039062 C 245.011719 163.039062 244.917969 163.132812 244.917969 163.25 C 244.917969 163.367188 245.011719 163.460938 245.128906 163.460938 C 245.246094 163.460938 245.339844 163.367188 245.339844 163.25 Z M 245.339844 163.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.3125 163.386719 C 248.3125 163.269531 248.21875 163.175781 248.101562 163.175781 C 247.984375 163.175781 247.890625 163.269531 247.890625 163.386719 C 247.890625 163.503906 247.984375 163.597656 248.101562 163.597656 C 248.21875 163.597656 248.3125 163.503906 248.3125 163.386719 Z M 248.3125 163.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.117188 165.859375 C 249.117188 165.742188 249.023438 165.648438 248.90625 165.648438 C 248.789062 165.648438 248.695312 165.742188 248.695312 165.859375 C 248.695312 165.976562 248.789062 166.070312 248.90625 166.070312 C 249.023438 166.070312 249.117188 165.976562 249.117188 165.859375 Z M 249.117188 165.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.863281 164.773438 C 248.863281 164.65625 248.769531 164.5625 248.652344 164.5625 C 248.535156 164.5625 248.441406 164.65625 248.441406 164.773438 C 248.441406 164.890625 248.535156 164.984375 248.652344 164.984375 C 248.769531 164.984375 248.863281 164.890625 248.863281 164.773438 Z M 248.863281 164.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.683594 167.539062 C 248.683594 167.421875 248.589844 167.328125 248.472656 167.328125 C 248.355469 167.328125 248.261719 167.421875 248.261719 167.539062 C 248.261719 167.65625 248.355469 167.75 248.472656 167.75 C 248.589844 167.75 248.683594 167.65625 248.683594 167.539062 Z M 248.683594 167.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.941406 163.285156 C 249.941406 163.167969 249.847656 163.074219 249.730469 163.074219 C 249.613281 163.074219 249.519531 163.167969 249.519531 163.285156 C 249.519531 163.402344 249.613281 163.496094 249.730469 163.496094 C 249.847656 163.496094 249.941406 163.402344 249.941406 163.285156 Z M 249.941406 163.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.878906 161.996094 C 248.878906 161.878906 248.785156 161.785156 248.667969 161.785156 C 248.550781 161.785156 248.457031 161.878906 248.457031 161.996094 C 248.457031 162.113281 248.550781 162.207031 248.667969 162.207031 C 248.785156 162.207031 248.878906 162.113281 248.878906 161.996094 Z M 248.878906 161.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.46875 165.132812 C 250.46875 165.015625 250.375 164.921875 250.257812 164.921875 C 250.140625 164.921875 250.046875 165.015625 250.046875 165.132812 C 250.046875 165.25 250.140625 165.34375 250.257812 165.34375 C 250.375 165.34375 250.46875 165.25 250.46875 165.132812 Z M 250.46875 165.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.238281 161.710938 C 255.238281 161.59375 255.144531 161.5 255.027344 161.5 C 254.910156 161.5 254.816406 161.59375 254.816406 161.710938 C 254.816406 161.828125 254.910156 161.921875 255.027344 161.921875 C 255.144531 161.921875 255.238281 161.828125 255.238281 161.710938 Z M 255.238281 161.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.898438 164.90625 C 255.898438 164.789062 255.804688 164.695312 255.6875 164.695312 C 255.570312 164.695312 255.476562 164.789062 255.476562 164.90625 C 255.476562 165.023438 255.570312 165.117188 255.6875 165.117188 C 255.804688 165.117188 255.898438 165.023438 255.898438 164.90625 Z M 255.898438 164.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.953125 163.390625 C 254.953125 163.273438 254.859375 163.179688 254.742188 163.179688 C 254.625 163.179688 254.53125 163.273438 254.53125 163.390625 C 254.53125 163.507812 254.625 163.601562 254.742188 163.601562 C 254.859375 163.601562 254.953125 163.507812 254.953125 163.390625 Z M 254.953125 163.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.21875 165.726562 C 250.21875 165.609375 250.125 165.515625 250.007812 165.515625 C 249.890625 165.515625 249.796875 165.609375 249.796875 165.726562 C 249.796875 165.84375 249.890625 165.9375 250.007812 165.9375 C 250.125 165.9375 250.21875 165.84375 250.21875 165.726562 Z M 250.21875 165.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.417969 165.988281 C 248.417969 165.871094 248.324219 165.777344 248.207031 165.777344 C 248.089844 165.777344 247.996094 165.871094 247.996094 165.988281 C 247.996094 166.105469 248.089844 166.199219 248.207031 166.199219 C 248.324219 166.199219 248.417969 166.105469 248.417969 165.988281 Z M 248.417969 165.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.308594 166.230469 C 248.308594 166.113281 248.214844 166.019531 248.097656 166.019531 C 247.980469 166.019531 247.886719 166.113281 247.886719 166.230469 C 247.886719 166.347656 247.980469 166.441406 248.097656 166.441406 C 248.214844 166.441406 248.308594 166.347656 248.308594 166.230469 Z M 248.308594 166.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.851562 169.53125 C 251.851562 169.414062 251.757812 169.320312 251.640625 169.320312 C 251.523438 169.320312 251.429688 169.414062 251.429688 169.53125 C 251.429688 169.648438 251.523438 169.742188 251.640625 169.742188 C 251.757812 169.742188 251.851562 169.648438 251.851562 169.53125 Z M 251.851562 169.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.484375 167.988281 C 251.484375 167.871094 251.390625 167.777344 251.273438 167.777344 C 251.15625 167.777344 251.0625 167.871094 251.0625 167.988281 C 251.0625 168.105469 251.15625 168.199219 251.273438 168.199219 C 251.390625 168.199219 251.484375 168.105469 251.484375 167.988281 Z M 251.484375 167.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.121094 167.121094 C 252.121094 167.003906 252.027344 166.910156 251.910156 166.910156 C 251.792969 166.910156 251.699219 167.003906 251.699219 167.121094 C 251.699219 167.238281 251.792969 167.332031 251.910156 167.332031 C 252.027344 167.332031 252.121094 167.238281 252.121094 167.121094 Z M 252.121094 167.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.410156 167.097656 C 251.410156 166.980469 251.316406 166.886719 251.199219 166.886719 C 251.082031 166.886719 250.988281 166.980469 250.988281 167.097656 C 250.988281 167.214844 251.082031 167.308594 251.199219 167.308594 C 251.316406 167.308594 251.410156 167.214844 251.410156 167.097656 Z M 251.410156 167.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.746094 167.769531 C 251.746094 167.652344 251.652344 167.558594 251.535156 167.558594 C 251.417969 167.558594 251.324219 167.652344 251.324219 167.769531 C 251.324219 167.886719 251.417969 167.980469 251.535156 167.980469 C 251.652344 167.980469 251.746094 167.886719 251.746094 167.769531 Z M 251.746094 167.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.953125 167.949219 C 249.953125 167.832031 249.859375 167.738281 249.742188 167.738281 C 249.625 167.738281 249.53125 167.832031 249.53125 167.949219 C 249.53125 168.066406 249.625 168.160156 249.742188 168.160156 C 249.859375 168.160156 249.953125 168.066406 249.953125 167.949219 Z M 249.953125 167.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.953125 166.261719 C 250.953125 166.144531 250.859375 166.050781 250.742188 166.050781 C 250.625 166.050781 250.53125 166.144531 250.53125 166.261719 C 250.53125 166.378906 250.625 166.472656 250.742188 166.472656 C 250.859375 166.472656 250.953125 166.378906 250.953125 166.261719 Z M 250.953125 166.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.34375 168.140625 C 249.34375 168.023438 249.25 167.929688 249.132812 167.929688 C 249.015625 167.929688 248.921875 168.023438 248.921875 168.140625 C 248.921875 168.257812 249.015625 168.351562 249.132812 168.351562 C 249.25 168.351562 249.34375 168.257812 249.34375 168.140625 Z M 249.34375 168.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.324219 164.378906 C 251.324219 164.261719 251.230469 164.167969 251.113281 164.167969 C 250.996094 164.167969 250.902344 164.261719 250.902344 164.378906 C 250.902344 164.496094 250.996094 164.589844 251.113281 164.589844 C 251.230469 164.589844 251.324219 164.496094 251.324219 164.378906 Z M 251.324219 164.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.847656 165.417969 C 251.847656 165.300781 251.753906 165.207031 251.636719 165.207031 C 251.519531 165.207031 251.425781 165.300781 251.425781 165.417969 C 251.425781 165.535156 251.519531 165.628906 251.636719 165.628906 C 251.753906 165.628906 251.847656 165.535156 251.847656 165.417969 Z M 251.847656 165.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 250.109375 164.597656 C 250.109375 164.480469 250.015625 164.386719 249.898438 164.386719 C 249.78125 164.386719 249.6875 164.480469 249.6875 164.597656 C 249.6875 164.714844 249.78125 164.808594 249.898438 164.808594 C 250.015625 164.808594 250.109375 164.714844 250.109375 164.597656 Z M 250.109375 164.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.824219 162.382812 C 249.824219 162.265625 249.730469 162.171875 249.613281 162.171875 C 249.496094 162.171875 249.402344 162.265625 249.402344 162.382812 C 249.402344 162.5 249.496094 162.59375 249.613281 162.59375 C 249.730469 162.59375 249.824219 162.5 249.824219 162.382812 Z M 249.824219 162.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.601562 161.929688 C 248.601562 161.8125 248.507812 161.71875 248.390625 161.71875 C 248.273438 161.71875 248.179688 161.8125 248.179688 161.929688 C 248.179688 162.046875 248.273438 162.140625 248.390625 162.140625 C 248.507812 162.140625 248.601562 162.046875 248.601562 161.929688 Z M 248.601562 161.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.074219 162.570312 C 249.074219 162.453125 248.980469 162.359375 248.863281 162.359375 C 248.746094 162.359375 248.652344 162.453125 248.652344 162.570312 C 248.652344 162.6875 248.746094 162.78125 248.863281 162.78125 C 248.980469 162.78125 249.074219 162.6875 249.074219 162.570312 Z M 249.074219 162.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 247.082031 166.402344 C 247.082031 166.285156 246.988281 166.191406 246.871094 166.191406 C 246.753906 166.191406 246.660156 166.285156 246.660156 166.402344 C 246.660156 166.519531 246.753906 166.613281 246.871094 166.613281 C 246.988281 166.613281 247.082031 166.519531 247.082031 166.402344 Z M 247.082031 166.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.226562 169.734375 C 251.226562 169.617188 251.132812 169.523438 251.015625 169.523438 C 250.898438 169.523438 250.804688 169.617188 250.804688 169.734375 C 250.804688 169.851562 250.898438 169.945312 251.015625 169.945312 C 251.132812 169.945312 251.226562 169.851562 251.226562 169.734375 Z M 251.226562 169.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.300781 169.214844 C 249.300781 169.097656 249.207031 169.003906 249.089844 169.003906 C 248.972656 169.003906 248.878906 169.097656 248.878906 169.214844 C 248.878906 169.332031 248.972656 169.425781 249.089844 169.425781 C 249.207031 169.425781 249.300781 169.332031 249.300781 169.214844 Z M 249.300781 169.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.332031 173.429688 C 249.332031 173.3125 249.238281 173.21875 249.121094 173.21875 C 249.003906 173.21875 248.910156 173.3125 248.910156 173.429688 C 248.910156 173.546875 249.003906 173.640625 249.121094 173.640625 C 249.238281 173.640625 249.332031 173.546875 249.332031 173.429688 Z M 249.332031 173.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.855469 174.855469 C 249.855469 174.738281 249.761719 174.644531 249.644531 174.644531 C 249.527344 174.644531 249.433594 174.738281 249.433594 174.855469 C 249.433594 174.972656 249.527344 175.066406 249.644531 175.066406 C 249.761719 175.066406 249.855469 174.972656 249.855469 174.855469 Z M 249.855469 174.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.816406 173.277344 C 248.816406 173.160156 248.722656 173.066406 248.605469 173.066406 C 248.488281 173.066406 248.394531 173.160156 248.394531 173.277344 C 248.394531 173.394531 248.488281 173.488281 248.605469 173.488281 C 248.722656 173.488281 248.816406 173.394531 248.816406 173.277344 Z M 248.816406 173.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.785156 167.40625 C 251.785156 167.289062 251.691406 167.195312 251.574219 167.195312 C 251.457031 167.195312 251.363281 167.289062 251.363281 167.40625 C 251.363281 167.523438 251.457031 167.617188 251.574219 167.617188 C 251.691406 167.617188 251.785156 167.523438 251.785156 167.40625 Z M 251.785156 167.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.117188 164.078125 C 255.117188 163.960938 255.023438 163.867188 254.90625 163.867188 C 254.789062 163.867188 254.695312 163.960938 254.695312 164.078125 C 254.695312 164.195312 254.789062 164.289062 254.90625 164.289062 C 255.023438 164.289062 255.117188 164.195312 255.117188 164.078125 Z M 255.117188 164.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.167969 161.238281 C 256.167969 161.121094 256.074219 161.027344 255.957031 161.027344 C 255.839844 161.027344 255.746094 161.121094 255.746094 161.238281 C 255.746094 161.355469 255.839844 161.449219 255.957031 161.449219 C 256.074219 161.449219 256.167969 161.355469 256.167969 161.238281 Z M 256.167969 161.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.476562 161.988281 C 257.476562 161.871094 257.382812 161.777344 257.265625 161.777344 C 257.148438 161.777344 257.054688 161.871094 257.054688 161.988281 C 257.054688 162.105469 257.148438 162.199219 257.265625 162.199219 C 257.382812 162.199219 257.476562 162.105469 257.476562 161.988281 Z M 257.476562 161.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.800781 162.484375 C 255.800781 162.367188 255.707031 162.273438 255.589844 162.273438 C 255.472656 162.273438 255.378906 162.367188 255.378906 162.484375 C 255.378906 162.601562 255.472656 162.695312 255.589844 162.695312 C 255.707031 162.695312 255.800781 162.601562 255.800781 162.484375 Z M 255.800781 162.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.09375 161.105469 C 255.09375 160.988281 255 160.894531 254.882812 160.894531 C 254.765625 160.894531 254.671875 160.988281 254.671875 161.105469 C 254.671875 161.222656 254.765625 161.316406 254.882812 161.316406 C 255 161.316406 255.09375 161.222656 255.09375 161.105469 Z M 255.09375 161.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.820312 161.949219 C 254.820312 161.832031 254.726562 161.738281 254.609375 161.738281 C 254.492188 161.738281 254.398438 161.832031 254.398438 161.949219 C 254.398438 162.066406 254.492188 162.160156 254.609375 162.160156 C 254.726562 162.160156 254.820312 162.066406 254.820312 161.949219 Z M 254.820312 161.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.824219 163.085938 C 256.824219 162.96875 256.730469 162.875 256.613281 162.875 C 256.496094 162.875 256.402344 162.96875 256.402344 163.085938 C 256.402344 163.203125 256.496094 163.296875 256.613281 163.296875 C 256.730469 163.296875 256.824219 163.203125 256.824219 163.085938 Z M 256.824219 163.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.53125 160.644531 C 256.53125 160.527344 256.4375 160.433594 256.320312 160.433594 C 256.203125 160.433594 256.109375 160.527344 256.109375 160.644531 C 256.109375 160.761719 256.203125 160.855469 256.320312 160.855469 C 256.4375 160.855469 256.53125 160.761719 256.53125 160.644531 Z M 256.53125 160.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.230469 157.53125 C 258.230469 157.414062 258.136719 157.320312 258.019531 157.320312 C 257.902344 157.320312 257.808594 157.414062 257.808594 157.53125 C 257.808594 157.648438 257.902344 157.742188 258.019531 157.742188 C 258.136719 157.742188 258.230469 157.648438 258.230469 157.53125 Z M 258.230469 157.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.570312 155.800781 C 260.570312 155.683594 260.476562 155.589844 260.359375 155.589844 C 260.242188 155.589844 260.148438 155.683594 260.148438 155.800781 C 260.148438 155.917969 260.242188 156.011719 260.359375 156.011719 C 260.476562 156.011719 260.570312 155.917969 260.570312 155.800781 Z M 260.570312 155.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.070312 156.570312 C 260.070312 156.453125 259.976562 156.359375 259.859375 156.359375 C 259.742188 156.359375 259.648438 156.453125 259.648438 156.570312 C 259.648438 156.6875 259.742188 156.78125 259.859375 156.78125 C 259.976562 156.78125 260.070312 156.6875 260.070312 156.570312 Z M 260.070312 156.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 258.300781 157.769531 C 258.300781 157.652344 258.207031 157.558594 258.089844 157.558594 C 257.972656 157.558594 257.878906 157.652344 257.878906 157.769531 C 257.878906 157.886719 257.972656 157.980469 258.089844 157.980469 C 258.207031 157.980469 258.300781 157.886719 258.300781 157.769531 Z M 258.300781 157.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.945312 158.523438 C 256.945312 158.40625 256.851562 158.3125 256.734375 158.3125 C 256.617188 158.3125 256.523438 158.40625 256.523438 158.523438 C 256.523438 158.640625 256.617188 158.734375 256.734375 158.734375 C 256.851562 158.734375 256.945312 158.640625 256.945312 158.523438 Z M 256.945312 158.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.269531 159.960938 C 256.269531 159.84375 256.175781 159.75 256.058594 159.75 C 255.941406 159.75 255.847656 159.84375 255.847656 159.960938 C 255.847656 160.078125 255.941406 160.171875 256.058594 160.171875 C 256.175781 160.171875 256.269531 160.078125 256.269531 159.960938 Z M 256.269531 159.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.371094 159.285156 C 256.371094 159.167969 256.277344 159.074219 256.160156 159.074219 C 256.042969 159.074219 255.949219 159.167969 255.949219 159.285156 C 255.949219 159.402344 256.042969 159.496094 256.160156 159.496094 C 256.277344 159.496094 256.371094 159.402344 256.371094 159.285156 Z M 256.371094 159.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.71875 156.640625 C 259.71875 156.523438 259.625 156.429688 259.507812 156.429688 C 259.390625 156.429688 259.296875 156.523438 259.296875 156.640625 C 259.296875 156.757812 259.390625 156.851562 259.507812 156.851562 C 259.625 156.851562 259.71875 156.757812 259.71875 156.640625 Z M 259.71875 156.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.851562 155.164062 C 260.851562 155.046875 260.757812 154.953125 260.640625 154.953125 C 260.523438 154.953125 260.429688 155.046875 260.429688 155.164062 C 260.429688 155.28125 260.523438 155.375 260.640625 155.375 C 260.757812 155.375 260.851562 155.28125 260.851562 155.164062 Z M 260.851562 155.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.585938 155.28125 C 257.585938 155.164062 257.492188 155.070312 257.375 155.070312 C 257.257812 155.070312 257.164062 155.164062 257.164062 155.28125 C 257.164062 155.398438 257.257812 155.492188 257.375 155.492188 C 257.492188 155.492188 257.585938 155.398438 257.585938 155.28125 Z M 257.585938 155.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.402344 158.839844 C 261.402344 158.722656 261.308594 158.628906 261.191406 158.628906 C 261.074219 158.628906 260.980469 158.722656 260.980469 158.839844 C 260.980469 158.957031 261.074219 159.050781 261.191406 159.050781 C 261.308594 159.050781 261.402344 158.957031 261.402344 158.839844 Z M 261.402344 158.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.488281 160.476562 C 255.488281 160.359375 255.394531 160.265625 255.277344 160.265625 C 255.160156 160.265625 255.066406 160.359375 255.066406 160.476562 C 255.066406 160.59375 255.160156 160.6875 255.277344 160.6875 C 255.394531 160.6875 255.488281 160.59375 255.488281 160.476562 Z M 255.488281 160.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 257.261719 157.546875 C 257.261719 157.429688 257.167969 157.335938 257.050781 157.335938 C 256.933594 157.335938 256.839844 157.429688 256.839844 157.546875 C 256.839844 157.664062 256.933594 157.757812 257.050781 157.757812 C 257.167969 157.757812 257.261719 157.664062 257.261719 157.546875 Z M 257.261719 157.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 256.328125 157.296875 C 256.328125 157.179688 256.234375 157.085938 256.117188 157.085938 C 256 157.085938 255.90625 157.179688 255.90625 157.296875 C 255.90625 157.414062 256 157.507812 256.117188 157.507812 C 256.234375 157.507812 256.328125 157.414062 256.328125 157.296875 Z M 256.328125 157.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.242188 157.804688 C 252.242188 157.6875 252.148438 157.59375 252.03125 157.59375 C 251.914062 157.59375 251.820312 157.6875 251.820312 157.804688 C 251.820312 157.921875 251.914062 158.015625 252.03125 158.015625 C 252.148438 158.015625 252.242188 157.921875 252.242188 157.804688 Z M 252.242188 157.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.695312 158.59375 C 249.695312 158.476562 249.601562 158.382812 249.484375 158.382812 C 249.367188 158.382812 249.273438 158.476562 249.273438 158.59375 C 249.273438 158.710938 249.367188 158.804688 249.484375 158.804688 C 249.601562 158.804688 249.695312 158.710938 249.695312 158.59375 Z M 249.695312 158.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.585938 161.042969 C 251.585938 160.925781 251.492188 160.832031 251.375 160.832031 C 251.257812 160.832031 251.164062 160.925781 251.164062 161.042969 C 251.164062 161.160156 251.257812 161.253906 251.375 161.253906 C 251.492188 161.253906 251.585938 161.160156 251.585938 161.042969 Z M 251.585938 161.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.105469 162.710938 C 249.105469 162.59375 249.011719 162.5 248.894531 162.5 C 248.777344 162.5 248.683594 162.59375 248.683594 162.710938 C 248.683594 162.828125 248.777344 162.921875 248.894531 162.921875 C 249.011719 162.921875 249.105469 162.828125 249.105469 162.710938 Z M 249.105469 162.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.160156 162.734375 C 255.160156 162.617188 255.066406 162.523438 254.949219 162.523438 C 254.832031 162.523438 254.738281 162.617188 254.738281 162.734375 C 254.738281 162.851562 254.832031 162.945312 254.949219 162.945312 C 255.066406 162.945312 255.160156 162.851562 255.160156 162.734375 Z M 255.160156 162.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.992188 161.589844 C 251.992188 161.472656 251.898438 161.378906 251.78125 161.378906 C 251.664062 161.378906 251.570312 161.472656 251.570312 161.589844 C 251.570312 161.707031 251.664062 161.800781 251.78125 161.800781 C 251.898438 161.800781 251.992188 161.707031 251.992188 161.589844 Z M 251.992188 161.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.746094 157.222656 C 248.746094 157.105469 248.652344 157.011719 248.535156 157.011719 C 248.417969 157.011719 248.324219 157.105469 248.324219 157.222656 C 248.324219 157.339844 248.417969 157.433594 248.535156 157.433594 C 248.652344 157.433594 248.746094 157.339844 248.746094 157.222656 Z M 248.746094 157.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.605469 158.265625 C 245.605469 158.148438 245.511719 158.054688 245.394531 158.054688 C 245.277344 158.054688 245.183594 158.148438 245.183594 158.265625 C 245.183594 158.382812 245.277344 158.476562 245.394531 158.476562 C 245.511719 158.476562 245.605469 158.382812 245.605469 158.265625 Z M 245.605469 158.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.101562 163.078125 C 245.101562 162.960938 245.007812 162.867188 244.890625 162.867188 C 244.773438 162.867188 244.679688 162.960938 244.679688 163.078125 C 244.679688 163.195312 244.773438 163.289062 244.890625 163.289062 C 245.007812 163.289062 245.101562 163.195312 245.101562 163.078125 Z M 245.101562 163.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.101562 165.066406 C 244.101562 164.949219 244.007812 164.855469 243.890625 164.855469 C 243.773438 164.855469 243.679688 164.949219 243.679688 165.066406 C 243.679688 165.183594 243.773438 165.277344 243.890625 165.277344 C 244.007812 165.277344 244.101562 165.183594 244.101562 165.066406 Z M 244.101562 165.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.503906 164.746094 C 241.503906 164.628906 241.410156 164.535156 241.292969 164.535156 C 241.175781 164.535156 241.082031 164.628906 241.082031 164.746094 C 241.082031 164.863281 241.175781 164.957031 241.292969 164.957031 C 241.410156 164.957031 241.503906 164.863281 241.503906 164.746094 Z M 241.503906 164.746094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 239.953125 165.511719 C 239.953125 165.394531 239.859375 165.300781 239.742188 165.300781 C 239.625 165.300781 239.53125 165.394531 239.53125 165.511719 C 239.53125 165.628906 239.625 165.722656 239.742188 165.722656 C 239.859375 165.722656 239.953125 165.628906 239.953125 165.511719 Z M 239.953125 165.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.828125 164.828125 C 237.828125 164.710938 237.734375 164.617188 237.617188 164.617188 C 237.5 164.617188 237.40625 164.710938 237.40625 164.828125 C 237.40625 164.945312 237.5 165.039062 237.617188 165.039062 C 237.734375 165.039062 237.828125 164.945312 237.828125 164.828125 Z M 237.828125 164.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.496094 164.464844 C 240.496094 164.347656 240.402344 164.253906 240.285156 164.253906 C 240.167969 164.253906 240.074219 164.347656 240.074219 164.464844 C 240.074219 164.582031 240.167969 164.675781 240.285156 164.675781 C 240.402344 164.675781 240.496094 164.582031 240.496094 164.464844 Z M 240.496094 164.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 240.179688 164.324219 C 240.179688 164.207031 240.085938 164.113281 239.96875 164.113281 C 239.851562 164.113281 239.757812 164.207031 239.757812 164.324219 C 239.757812 164.441406 239.851562 164.535156 239.96875 164.535156 C 240.085938 164.535156 240.179688 164.441406 240.179688 164.324219 Z M 240.179688 164.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.6875 163.867188 C 234.6875 163.75 234.59375 163.65625 234.476562 163.65625 C 234.359375 163.65625 234.265625 163.75 234.265625 163.867188 C 234.265625 163.984375 234.359375 164.078125 234.476562 164.078125 C 234.59375 164.078125 234.6875 163.984375 234.6875 163.867188 Z M 234.6875 163.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.152344 164.378906 C 235.152344 164.261719 235.058594 164.167969 234.941406 164.167969 C 234.824219 164.167969 234.730469 164.261719 234.730469 164.378906 C 234.730469 164.496094 234.824219 164.589844 234.941406 164.589844 C 235.058594 164.589844 235.152344 164.496094 235.152344 164.378906 Z M 235.152344 164.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.984375 169.457031 C 235.984375 169.339844 235.890625 169.246094 235.773438 169.246094 C 235.65625 169.246094 235.5625 169.339844 235.5625 169.457031 C 235.5625 169.574219 235.65625 169.667969 235.773438 169.667969 C 235.890625 169.667969 235.984375 169.574219 235.984375 169.457031 Z M 235.984375 169.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.980469 164.496094 C 236.980469 164.378906 236.886719 164.285156 236.769531 164.285156 C 236.652344 164.285156 236.558594 164.378906 236.558594 164.496094 C 236.558594 164.613281 236.652344 164.707031 236.769531 164.707031 C 236.886719 164.707031 236.980469 164.613281 236.980469 164.496094 Z M 236.980469 164.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.214844 165.660156 C 234.214844 165.542969 234.121094 165.449219 234.003906 165.449219 C 233.886719 165.449219 233.792969 165.542969 233.792969 165.660156 C 233.792969 165.777344 233.886719 165.871094 234.003906 165.871094 C 234.121094 165.871094 234.214844 165.777344 234.214844 165.660156 Z M 234.214844 165.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.507812 162.875 C 234.507812 162.757812 234.414062 162.664062 234.296875 162.664062 C 234.179688 162.664062 234.085938 162.757812 234.085938 162.875 C 234.085938 162.992188 234.179688 163.085938 234.296875 163.085938 C 234.414062 163.085938 234.507812 162.992188 234.507812 162.875 Z M 234.507812 162.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.789062 162.75 C 234.789062 162.632812 234.695312 162.539062 234.578125 162.539062 C 234.460938 162.539062 234.367188 162.632812 234.367188 162.75 C 234.367188 162.867188 234.460938 162.960938 234.578125 162.960938 C 234.695312 162.960938 234.789062 162.867188 234.789062 162.75 Z M 234.789062 162.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.117188 164.914062 C 235.117188 164.796875 235.023438 164.703125 234.90625 164.703125 C 234.789062 164.703125 234.695312 164.796875 234.695312 164.914062 C 234.695312 165.03125 234.789062 165.125 234.90625 165.125 C 235.023438 165.125 235.117188 165.03125 235.117188 164.914062 Z M 235.117188 164.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.746094 164.648438 C 232.746094 164.53125 232.652344 164.4375 232.535156 164.4375 C 232.417969 164.4375 232.324219 164.53125 232.324219 164.648438 C 232.324219 164.765625 232.417969 164.859375 232.535156 164.859375 C 232.652344 164.859375 232.746094 164.765625 232.746094 164.648438 Z M 232.746094 164.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.339844 166.695312 C 233.339844 166.578125 233.246094 166.484375 233.128906 166.484375 C 233.011719 166.484375 232.917969 166.578125 232.917969 166.695312 C 232.917969 166.8125 233.011719 166.90625 233.128906 166.90625 C 233.246094 166.90625 233.339844 166.8125 233.339844 166.695312 Z M 233.339844 166.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.777344 164.640625 C 229.777344 164.523438 229.683594 164.429688 229.566406 164.429688 C 229.449219 164.429688 229.355469 164.523438 229.355469 164.640625 C 229.355469 164.757812 229.449219 164.851562 229.566406 164.851562 C 229.683594 164.851562 229.777344 164.757812 229.777344 164.640625 Z M 229.777344 164.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.007812 165.363281 C 230.007812 165.246094 229.914062 165.152344 229.796875 165.152344 C 229.679688 165.152344 229.585938 165.246094 229.585938 165.363281 C 229.585938 165.480469 229.679688 165.574219 229.796875 165.574219 C 229.914062 165.574219 230.007812 165.480469 230.007812 165.363281 Z M 230.007812 165.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.046875 165.023438 C 232.046875 164.90625 231.953125 164.8125 231.835938 164.8125 C 231.71875 164.8125 231.625 164.90625 231.625 165.023438 C 231.625 165.140625 231.71875 165.234375 231.835938 165.234375 C 231.953125 165.234375 232.046875 165.140625 232.046875 165.023438 Z M 232.046875 165.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.976562 165.605469 C 228.976562 165.488281 228.882812 165.394531 228.765625 165.394531 C 228.648438 165.394531 228.554688 165.488281 228.554688 165.605469 C 228.554688 165.722656 228.648438 165.816406 228.765625 165.816406 C 228.882812 165.816406 228.976562 165.722656 228.976562 165.605469 Z M 228.976562 165.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.722656 160.65625 C 227.722656 160.539062 227.628906 160.445312 227.511719 160.445312 C 227.394531 160.445312 227.300781 160.539062 227.300781 160.65625 C 227.300781 160.773438 227.394531 160.867188 227.511719 160.867188 C 227.628906 160.867188 227.722656 160.773438 227.722656 160.65625 Z M 227.722656 160.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.699219 162.980469 C 228.699219 162.863281 228.605469 162.769531 228.488281 162.769531 C 228.371094 162.769531 228.277344 162.863281 228.277344 162.980469 C 228.277344 163.097656 228.371094 163.191406 228.488281 163.191406 C 228.605469 163.191406 228.699219 163.097656 228.699219 162.980469 Z M 228.699219 162.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.847656 164.730469 C 229.847656 164.613281 229.753906 164.519531 229.636719 164.519531 C 229.519531 164.519531 229.425781 164.613281 229.425781 164.730469 C 229.425781 164.847656 229.519531 164.941406 229.636719 164.941406 C 229.753906 164.941406 229.847656 164.847656 229.847656 164.730469 Z M 229.847656 164.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.308594 160.835938 C 232.308594 160.71875 232.214844 160.625 232.097656 160.625 C 231.980469 160.625 231.886719 160.71875 231.886719 160.835938 C 231.886719 160.953125 231.980469 161.046875 232.097656 161.046875 C 232.214844 161.046875 232.308594 160.953125 232.308594 160.835938 Z M 232.308594 160.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.992188 161.949219 C 232.992188 161.832031 232.898438 161.738281 232.78125 161.738281 C 232.664062 161.738281 232.570312 161.832031 232.570312 161.949219 C 232.570312 162.066406 232.664062 162.160156 232.78125 162.160156 C 232.898438 162.160156 232.992188 162.066406 232.992188 161.949219 Z M 232.992188 161.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.769531 162.703125 C 231.769531 162.585938 231.675781 162.492188 231.558594 162.492188 C 231.441406 162.492188 231.347656 162.585938 231.347656 162.703125 C 231.347656 162.820312 231.441406 162.914062 231.558594 162.914062 C 231.675781 162.914062 231.769531 162.820312 231.769531 162.703125 Z M 231.769531 162.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.878906 163.085938 C 234.878906 162.96875 234.785156 162.875 234.667969 162.875 C 234.550781 162.875 234.457031 162.96875 234.457031 163.085938 C 234.457031 163.203125 234.550781 163.296875 234.667969 163.296875 C 234.785156 163.296875 234.878906 163.203125 234.878906 163.085938 Z M 234.878906 163.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.996094 159.6875 C 237.996094 159.570312 237.902344 159.476562 237.785156 159.476562 C 237.667969 159.476562 237.574219 159.570312 237.574219 159.6875 C 237.574219 159.804688 237.667969 159.898438 237.785156 159.898438 C 237.902344 159.898438 237.996094 159.804688 237.996094 159.6875 Z M 237.996094 159.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.777344 158.523438 C 237.777344 158.40625 237.683594 158.3125 237.566406 158.3125 C 237.449219 158.3125 237.355469 158.40625 237.355469 158.523438 C 237.355469 158.640625 237.449219 158.734375 237.566406 158.734375 C 237.683594 158.734375 237.777344 158.640625 237.777344 158.523438 Z M 237.777344 158.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.078125 160.617188 C 231.078125 160.5 230.984375 160.40625 230.867188 160.40625 C 230.75 160.40625 230.65625 160.5 230.65625 160.617188 C 230.65625 160.734375 230.75 160.828125 230.867188 160.828125 C 230.984375 160.828125 231.078125 160.734375 231.078125 160.617188 Z M 231.078125 160.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.398438 160.730469 C 232.398438 160.613281 232.304688 160.519531 232.1875 160.519531 C 232.070312 160.519531 231.976562 160.613281 231.976562 160.730469 C 231.976562 160.847656 232.070312 160.941406 232.1875 160.941406 C 232.304688 160.941406 232.398438 160.847656 232.398438 160.730469 Z M 232.398438 160.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.738281 164.175781 C 229.738281 164.058594 229.644531 163.964844 229.527344 163.964844 C 229.410156 163.964844 229.316406 164.058594 229.316406 164.175781 C 229.316406 164.292969 229.410156 164.386719 229.527344 164.386719 C 229.644531 164.386719 229.738281 164.292969 229.738281 164.175781 Z M 229.738281 164.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.136719 162.515625 C 232.136719 162.398438 232.042969 162.304688 231.925781 162.304688 C 231.808594 162.304688 231.714844 162.398438 231.714844 162.515625 C 231.714844 162.632812 231.808594 162.726562 231.925781 162.726562 C 232.042969 162.726562 232.136719 162.632812 232.136719 162.515625 Z M 232.136719 162.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.097656 161.214844 C 229.097656 161.097656 229.003906 161.003906 228.886719 161.003906 C 228.769531 161.003906 228.675781 161.097656 228.675781 161.214844 C 228.675781 161.332031 228.769531 161.425781 228.886719 161.425781 C 229.003906 161.425781 229.097656 161.332031 229.097656 161.214844 Z M 229.097656 161.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.78125 159.214844 C 227.78125 159.097656 227.6875 159.003906 227.570312 159.003906 C 227.453125 159.003906 227.359375 159.097656 227.359375 159.214844 C 227.359375 159.332031 227.453125 159.425781 227.570312 159.425781 C 227.6875 159.425781 227.78125 159.332031 227.78125 159.214844 Z M 227.78125 159.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.34375 160.171875 C 228.34375 160.054688 228.25 159.960938 228.132812 159.960938 C 228.015625 159.960938 227.921875 160.054688 227.921875 160.171875 C 227.921875 160.289062 228.015625 160.382812 228.132812 160.382812 C 228.25 160.382812 228.34375 160.289062 228.34375 160.171875 Z M 228.34375 160.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.128906 159.878906 C 224.128906 159.761719 224.035156 159.667969 223.917969 159.667969 C 223.800781 159.667969 223.707031 159.761719 223.707031 159.878906 C 223.707031 159.996094 223.800781 160.089844 223.917969 160.089844 C 224.035156 160.089844 224.128906 159.996094 224.128906 159.878906 Z M 224.128906 159.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.90625 157.570312 C 221.90625 157.453125 221.8125 157.359375 221.695312 157.359375 C 221.578125 157.359375 221.484375 157.453125 221.484375 157.570312 C 221.484375 157.6875 221.578125 157.78125 221.695312 157.78125 C 221.8125 157.78125 221.90625 157.6875 221.90625 157.570312 Z M 221.90625 157.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.183594 158.757812 C 219.183594 158.640625 219.089844 158.546875 218.972656 158.546875 C 218.855469 158.546875 218.761719 158.640625 218.761719 158.757812 C 218.761719 158.875 218.855469 158.96875 218.972656 158.96875 C 219.089844 158.96875 219.183594 158.875 219.183594 158.757812 Z M 219.183594 158.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.703125 163.527344 C 219.703125 163.410156 219.609375 163.316406 219.492188 163.316406 C 219.375 163.316406 219.28125 163.410156 219.28125 163.527344 C 219.28125 163.644531 219.375 163.738281 219.492188 163.738281 C 219.609375 163.738281 219.703125 163.644531 219.703125 163.527344 Z M 219.703125 163.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.167969 159.527344 C 219.167969 159.410156 219.074219 159.316406 218.957031 159.316406 C 218.839844 159.316406 218.746094 159.410156 218.746094 159.527344 C 218.746094 159.644531 218.839844 159.738281 218.957031 159.738281 C 219.074219 159.738281 219.167969 159.644531 219.167969 159.527344 Z M 219.167969 159.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.667969 161.078125 C 220.667969 160.960938 220.574219 160.867188 220.457031 160.867188 C 220.339844 160.867188 220.246094 160.960938 220.246094 161.078125 C 220.246094 161.195312 220.339844 161.289062 220.457031 161.289062 C 220.574219 161.289062 220.667969 161.195312 220.667969 161.078125 Z M 220.667969 161.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.113281 161.683594 C 217.113281 161.566406 217.019531 161.472656 216.902344 161.472656 C 216.785156 161.472656 216.691406 161.566406 216.691406 161.683594 C 216.691406 161.800781 216.785156 161.894531 216.902344 161.894531 C 217.019531 161.894531 217.113281 161.800781 217.113281 161.683594 Z M 217.113281 161.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.152344 157.78125 C 216.152344 157.664062 216.058594 157.570312 215.941406 157.570312 C 215.824219 157.570312 215.730469 157.664062 215.730469 157.78125 C 215.730469 157.898438 215.824219 157.992188 215.941406 157.992188 C 216.058594 157.992188 216.152344 157.898438 216.152344 157.78125 Z M 216.152344 157.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.953125 156.742188 C 212.953125 156.625 212.859375 156.53125 212.742188 156.53125 C 212.625 156.53125 212.53125 156.625 212.53125 156.742188 C 212.53125 156.859375 212.625 156.953125 212.742188 156.953125 C 212.859375 156.953125 212.953125 156.859375 212.953125 156.742188 Z M 212.953125 156.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.421875 157.394531 C 211.421875 157.277344 211.328125 157.183594 211.210938 157.183594 C 211.09375 157.183594 211 157.277344 211 157.394531 C 211 157.511719 211.09375 157.605469 211.210938 157.605469 C 211.328125 157.605469 211.421875 157.511719 211.421875 157.394531 Z M 211.421875 157.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.890625 154.390625 C 214.890625 154.273438 214.796875 154.179688 214.679688 154.179688 C 214.5625 154.179688 214.46875 154.273438 214.46875 154.390625 C 214.46875 154.507812 214.5625 154.601562 214.679688 154.601562 C 214.796875 154.601562 214.890625 154.507812 214.890625 154.390625 Z M 214.890625 154.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.058594 156.601562 C 215.058594 156.484375 214.964844 156.390625 214.847656 156.390625 C 214.730469 156.390625 214.636719 156.484375 214.636719 156.601562 C 214.636719 156.71875 214.730469 156.8125 214.847656 156.8125 C 214.964844 156.8125 215.058594 156.71875 215.058594 156.601562 Z M 215.058594 156.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.757812 157.992188 C 211.757812 157.875 211.664062 157.78125 211.546875 157.78125 C 211.429688 157.78125 211.335938 157.875 211.335938 157.992188 C 211.335938 158.109375 211.429688 158.203125 211.546875 158.203125 C 211.664062 158.203125 211.757812 158.109375 211.757812 157.992188 Z M 211.757812 157.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.21875 161.632812 C 207.21875 161.515625 207.125 161.421875 207.007812 161.421875 C 206.890625 161.421875 206.796875 161.515625 206.796875 161.632812 C 206.796875 161.75 206.890625 161.84375 207.007812 161.84375 C 207.125 161.84375 207.21875 161.75 207.21875 161.632812 Z M 207.21875 161.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.195312 166.734375 C 209.195312 166.617188 209.101562 166.523438 208.984375 166.523438 C 208.867188 166.523438 208.773438 166.617188 208.773438 166.734375 C 208.773438 166.851562 208.867188 166.945312 208.984375 166.945312 C 209.101562 166.945312 209.195312 166.851562 209.195312 166.734375 Z M 209.195312 166.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.550781 165.074219 C 212.550781 164.957031 212.457031 164.863281 212.339844 164.863281 C 212.222656 164.863281 212.128906 164.957031 212.128906 165.074219 C 212.128906 165.191406 212.222656 165.285156 212.339844 165.285156 C 212.457031 165.285156 212.550781 165.191406 212.550781 165.074219 Z M 212.550781 165.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.117188 162.761719 C 213.117188 162.644531 213.023438 162.550781 212.90625 162.550781 C 212.789062 162.550781 212.695312 162.644531 212.695312 162.761719 C 212.695312 162.878906 212.789062 162.972656 212.90625 162.972656 C 213.023438 162.972656 213.117188 162.878906 213.117188 162.761719 Z M 213.117188 162.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.757812 162.789062 C 213.757812 162.671875 213.664062 162.578125 213.546875 162.578125 C 213.429688 162.578125 213.335938 162.671875 213.335938 162.789062 C 213.335938 162.90625 213.429688 163 213.546875 163 C 213.664062 163 213.757812 162.90625 213.757812 162.789062 Z M 213.757812 162.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.988281 162.722656 C 216.988281 162.605469 216.894531 162.511719 216.777344 162.511719 C 216.660156 162.511719 216.566406 162.605469 216.566406 162.722656 C 216.566406 162.839844 216.660156 162.933594 216.777344 162.933594 C 216.894531 162.933594 216.988281 162.839844 216.988281 162.722656 Z M 216.988281 162.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.519531 167.296875 C 216.519531 167.179688 216.425781 167.085938 216.308594 167.085938 C 216.191406 167.085938 216.097656 167.179688 216.097656 167.296875 C 216.097656 167.414062 216.191406 167.507812 216.308594 167.507812 C 216.425781 167.507812 216.519531 167.414062 216.519531 167.296875 Z M 216.519531 167.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.328125 167.785156 C 215.328125 167.667969 215.234375 167.574219 215.117188 167.574219 C 215 167.574219 214.90625 167.667969 214.90625 167.785156 C 214.90625 167.902344 215 167.996094 215.117188 167.996094 C 215.234375 167.996094 215.328125 167.902344 215.328125 167.785156 Z M 215.328125 167.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.09375 170.914062 C 214.09375 170.796875 214 170.703125 213.882812 170.703125 C 213.765625 170.703125 213.671875 170.796875 213.671875 170.914062 C 213.671875 171.03125 213.765625 171.125 213.882812 171.125 C 214 171.125 214.09375 171.03125 214.09375 170.914062 Z M 214.09375 170.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.050781 167.601562 C 216.050781 167.484375 215.957031 167.390625 215.839844 167.390625 C 215.722656 167.390625 215.628906 167.484375 215.628906 167.601562 C 215.628906 167.71875 215.722656 167.8125 215.839844 167.8125 C 215.957031 167.8125 216.050781 167.71875 216.050781 167.601562 Z M 216.050781 167.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.40625 167.480469 C 216.40625 167.363281 216.3125 167.269531 216.195312 167.269531 C 216.078125 167.269531 215.984375 167.363281 215.984375 167.480469 C 215.984375 167.597656 216.078125 167.691406 216.195312 167.691406 C 216.3125 167.691406 216.40625 167.597656 216.40625 167.480469 Z M 216.40625 167.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.179688 170.769531 C 213.179688 170.652344 213.085938 170.558594 212.96875 170.558594 C 212.851562 170.558594 212.757812 170.652344 212.757812 170.769531 C 212.757812 170.886719 212.851562 170.980469 212.96875 170.980469 C 213.085938 170.980469 213.179688 170.886719 213.179688 170.769531 Z M 213.179688 170.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.191406 170.289062 C 214.191406 170.171875 214.097656 170.078125 213.980469 170.078125 C 213.863281 170.078125 213.769531 170.171875 213.769531 170.289062 C 213.769531 170.40625 213.863281 170.5 213.980469 170.5 C 214.097656 170.5 214.191406 170.40625 214.191406 170.289062 Z M 214.191406 170.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.785156 170.472656 C 216.785156 170.355469 216.691406 170.261719 216.574219 170.261719 C 216.457031 170.261719 216.363281 170.355469 216.363281 170.472656 C 216.363281 170.589844 216.457031 170.683594 216.574219 170.683594 C 216.691406 170.683594 216.785156 170.589844 216.785156 170.472656 Z M 216.785156 170.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.640625 170.6875 C 217.640625 170.570312 217.546875 170.476562 217.429688 170.476562 C 217.3125 170.476562 217.21875 170.570312 217.21875 170.6875 C 217.21875 170.804688 217.3125 170.898438 217.429688 170.898438 C 217.546875 170.898438 217.640625 170.804688 217.640625 170.6875 Z M 217.640625 170.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.140625 168.074219 C 218.140625 167.957031 218.046875 167.863281 217.929688 167.863281 C 217.8125 167.863281 217.71875 167.957031 217.71875 168.074219 C 217.71875 168.191406 217.8125 168.285156 217.929688 168.285156 C 218.046875 168.285156 218.140625 168.191406 218.140625 168.074219 Z M 218.140625 168.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.847656 167.703125 C 220.847656 167.585938 220.753906 167.492188 220.636719 167.492188 C 220.519531 167.492188 220.425781 167.585938 220.425781 167.703125 C 220.425781 167.820312 220.519531 167.914062 220.636719 167.914062 C 220.753906 167.914062 220.847656 167.820312 220.847656 167.703125 Z M 220.847656 167.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.015625 169.085938 C 218.015625 168.96875 217.921875 168.875 217.804688 168.875 C 217.6875 168.875 217.59375 168.96875 217.59375 169.085938 C 217.59375 169.203125 217.6875 169.296875 217.804688 169.296875 C 217.921875 169.296875 218.015625 169.203125 218.015625 169.085938 Z M 218.015625 169.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.929688 170.128906 C 215.929688 170.011719 215.835938 169.917969 215.71875 169.917969 C 215.601562 169.917969 215.507812 170.011719 215.507812 170.128906 C 215.507812 170.246094 215.601562 170.339844 215.71875 170.339844 C 215.835938 170.339844 215.929688 170.246094 215.929688 170.128906 Z M 215.929688 170.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.21875 170.007812 C 218.21875 169.890625 218.125 169.796875 218.007812 169.796875 C 217.890625 169.796875 217.796875 169.890625 217.796875 170.007812 C 217.796875 170.125 217.890625 170.21875 218.007812 170.21875 C 218.125 170.21875 218.21875 170.125 218.21875 170.007812 Z M 218.21875 170.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.558594 171.753906 C 220.558594 171.636719 220.464844 171.542969 220.347656 171.542969 C 220.230469 171.542969 220.136719 171.636719 220.136719 171.753906 C 220.136719 171.871094 220.230469 171.964844 220.347656 171.964844 C 220.464844 171.964844 220.558594 171.871094 220.558594 171.753906 Z M 220.558594 171.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.851562 172.21875 C 220.851562 172.101562 220.757812 172.007812 220.640625 172.007812 C 220.523438 172.007812 220.429688 172.101562 220.429688 172.21875 C 220.429688 172.335938 220.523438 172.429688 220.640625 172.429688 C 220.757812 172.429688 220.851562 172.335938 220.851562 172.21875 Z M 220.851562 172.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.347656 173.027344 C 218.347656 172.910156 218.253906 172.816406 218.136719 172.816406 C 218.019531 172.816406 217.925781 172.910156 217.925781 173.027344 C 217.925781 173.144531 218.019531 173.238281 218.136719 173.238281 C 218.253906 173.238281 218.347656 173.144531 218.347656 173.027344 Z M 218.347656 173.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.640625 174.15625 C 220.640625 174.039062 220.546875 173.945312 220.429688 173.945312 C 220.3125 173.945312 220.21875 174.039062 220.21875 174.15625 C 220.21875 174.273438 220.3125 174.367188 220.429688 174.367188 C 220.546875 174.367188 220.640625 174.273438 220.640625 174.15625 Z M 220.640625 174.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.9375 172.609375 C 222.9375 172.492188 222.84375 172.398438 222.726562 172.398438 C 222.609375 172.398438 222.515625 172.492188 222.515625 172.609375 C 222.515625 172.726562 222.609375 172.820312 222.726562 172.820312 C 222.84375 172.820312 222.9375 172.726562 222.9375 172.609375 Z M 222.9375 172.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.742188 172.851562 C 222.742188 172.734375 222.648438 172.640625 222.53125 172.640625 C 222.414062 172.640625 222.320312 172.734375 222.320312 172.851562 C 222.320312 172.96875 222.414062 173.0625 222.53125 173.0625 C 222.648438 173.0625 222.742188 172.96875 222.742188 172.851562 Z M 222.742188 172.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.449219 174.890625 C 224.449219 174.773438 224.355469 174.679688 224.238281 174.679688 C 224.121094 174.679688 224.027344 174.773438 224.027344 174.890625 C 224.027344 175.007812 224.121094 175.101562 224.238281 175.101562 C 224.355469 175.101562 224.449219 175.007812 224.449219 174.890625 Z M 224.449219 174.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.828125 181.191406 C 222.828125 181.074219 222.734375 180.980469 222.617188 180.980469 C 222.5 180.980469 222.40625 181.074219 222.40625 181.191406 C 222.40625 181.308594 222.5 181.402344 222.617188 181.402344 C 222.734375 181.402344 222.828125 181.308594 222.828125 181.191406 Z M 222.828125 181.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.636719 183.398438 C 221.636719 183.28125 221.542969 183.1875 221.425781 183.1875 C 221.308594 183.1875 221.214844 183.28125 221.214844 183.398438 C 221.214844 183.515625 221.308594 183.609375 221.425781 183.609375 C 221.542969 183.609375 221.636719 183.515625 221.636719 183.398438 Z M 221.636719 183.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.515625 187.753906 C 225.515625 187.636719 225.421875 187.542969 225.304688 187.542969 C 225.1875 187.542969 225.09375 187.636719 225.09375 187.753906 C 225.09375 187.871094 225.1875 187.964844 225.304688 187.964844 C 225.421875 187.964844 225.515625 187.871094 225.515625 187.753906 Z M 225.515625 187.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.730469 187.367188 C 221.730469 187.25 221.636719 187.15625 221.519531 187.15625 C 221.402344 187.15625 221.308594 187.25 221.308594 187.367188 C 221.308594 187.484375 221.402344 187.578125 221.519531 187.578125 C 221.636719 187.578125 221.730469 187.484375 221.730469 187.367188 Z M 221.730469 187.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.566406 189.1875 C 221.566406 189.070312 221.472656 188.976562 221.355469 188.976562 C 221.238281 188.976562 221.144531 189.070312 221.144531 189.1875 C 221.144531 189.304688 221.238281 189.398438 221.355469 189.398438 C 221.472656 189.398438 221.566406 189.304688 221.566406 189.1875 Z M 221.566406 189.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.722656 188.476562 C 220.722656 188.359375 220.628906 188.265625 220.511719 188.265625 C 220.394531 188.265625 220.300781 188.359375 220.300781 188.476562 C 220.300781 188.59375 220.394531 188.6875 220.511719 188.6875 C 220.628906 188.6875 220.722656 188.59375 220.722656 188.476562 Z M 220.722656 188.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.332031 190.914062 C 222.332031 190.796875 222.238281 190.703125 222.121094 190.703125 C 222.003906 190.703125 221.910156 190.796875 221.910156 190.914062 C 221.910156 191.03125 222.003906 191.125 222.121094 191.125 C 222.238281 191.125 222.332031 191.03125 222.332031 190.914062 Z M 222.332031 190.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.796875 194.898438 C 218.796875 194.78125 218.703125 194.6875 218.585938 194.6875 C 218.46875 194.6875 218.375 194.78125 218.375 194.898438 C 218.375 195.015625 218.46875 195.109375 218.585938 195.109375 C 218.703125 195.109375 218.796875 195.015625 218.796875 194.898438 Z M 218.796875 194.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.601562 194.191406 C 222.601562 194.074219 222.507812 193.980469 222.390625 193.980469 C 222.273438 193.980469 222.179688 194.074219 222.179688 194.191406 C 222.179688 194.308594 222.273438 194.402344 222.390625 194.402344 C 222.507812 194.402344 222.601562 194.308594 222.601562 194.191406 Z M 222.601562 194.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.882812 195.832031 C 223.882812 195.714844 223.789062 195.621094 223.671875 195.621094 C 223.554688 195.621094 223.460938 195.714844 223.460938 195.832031 C 223.460938 195.949219 223.554688 196.042969 223.671875 196.042969 C 223.789062 196.042969 223.882812 195.949219 223.882812 195.832031 Z M 223.882812 195.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.769531 193.914062 C 225.769531 193.796875 225.675781 193.703125 225.558594 193.703125 C 225.441406 193.703125 225.347656 193.796875 225.347656 193.914062 C 225.347656 194.03125 225.441406 194.125 225.558594 194.125 C 225.675781 194.125 225.769531 194.03125 225.769531 193.914062 Z M 225.769531 193.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.972656 191.816406 C 226.972656 191.699219 226.878906 191.605469 226.761719 191.605469 C 226.644531 191.605469 226.550781 191.699219 226.550781 191.816406 C 226.550781 191.933594 226.644531 192.027344 226.761719 192.027344 C 226.878906 192.027344 226.972656 191.933594 226.972656 191.816406 Z M 226.972656 191.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.359375 192.820312 C 226.359375 192.703125 226.265625 192.609375 226.148438 192.609375 C 226.03125 192.609375 225.9375 192.703125 225.9375 192.820312 C 225.9375 192.9375 226.03125 193.03125 226.148438 193.03125 C 226.265625 193.03125 226.359375 192.9375 226.359375 192.820312 Z M 226.359375 192.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.539062 191.175781 C 223.539062 191.058594 223.445312 190.964844 223.328125 190.964844 C 223.210938 190.964844 223.117188 191.058594 223.117188 191.175781 C 223.117188 191.292969 223.210938 191.386719 223.328125 191.386719 C 223.445312 191.386719 223.539062 191.292969 223.539062 191.175781 Z M 223.539062 191.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.789062 194.59375 C 222.789062 194.476562 222.695312 194.382812 222.578125 194.382812 C 222.460938 194.382812 222.367188 194.476562 222.367188 194.59375 C 222.367188 194.710938 222.460938 194.804688 222.578125 194.804688 C 222.695312 194.804688 222.789062 194.710938 222.789062 194.59375 Z M 222.789062 194.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.164062 193.574219 C 223.164062 193.457031 223.070312 193.363281 222.953125 193.363281 C 222.835938 193.363281 222.742188 193.457031 222.742188 193.574219 C 222.742188 193.691406 222.835938 193.785156 222.953125 193.785156 C 223.070312 193.785156 223.164062 193.691406 223.164062 193.574219 Z M 223.164062 193.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.726562 197.28125 C 225.726562 197.164062 225.632812 197.070312 225.515625 197.070312 C 225.398438 197.070312 225.304688 197.164062 225.304688 197.28125 C 225.304688 197.398438 225.398438 197.492188 225.515625 197.492188 C 225.632812 197.492188 225.726562 197.398438 225.726562 197.28125 Z M 225.726562 197.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.777344 196.089844 C 224.777344 195.972656 224.683594 195.878906 224.566406 195.878906 C 224.449219 195.878906 224.355469 195.972656 224.355469 196.089844 C 224.355469 196.207031 224.449219 196.300781 224.566406 196.300781 C 224.683594 196.300781 224.777344 196.207031 224.777344 196.089844 Z M 224.777344 196.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224 198.59375 C 224 198.476562 223.90625 198.382812 223.789062 198.382812 C 223.671875 198.382812 223.578125 198.476562 223.578125 198.59375 C 223.578125 198.710938 223.671875 198.804688 223.789062 198.804688 C 223.90625 198.804688 224 198.710938 224 198.59375 Z M 224 198.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.6875 200.839844 C 221.6875 200.722656 221.59375 200.628906 221.476562 200.628906 C 221.359375 200.628906 221.265625 200.722656 221.265625 200.839844 C 221.265625 200.957031 221.359375 201.050781 221.476562 201.050781 C 221.59375 201.050781 221.6875 200.957031 221.6875 200.839844 Z M 221.6875 200.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.578125 201.15625 C 220.578125 201.039062 220.484375 200.945312 220.367188 200.945312 C 220.25 200.945312 220.15625 201.039062 220.15625 201.15625 C 220.15625 201.273438 220.25 201.367188 220.367188 201.367188 C 220.484375 201.367188 220.578125 201.273438 220.578125 201.15625 Z M 220.578125 201.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.042969 198.550781 C 217.042969 198.433594 216.949219 198.339844 216.832031 198.339844 C 216.714844 198.339844 216.621094 198.433594 216.621094 198.550781 C 216.621094 198.667969 216.714844 198.761719 216.832031 198.761719 C 216.949219 198.761719 217.042969 198.667969 217.042969 198.550781 Z M 217.042969 198.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.324219 197.230469 C 219.324219 197.113281 219.230469 197.019531 219.113281 197.019531 C 218.996094 197.019531 218.902344 197.113281 218.902344 197.230469 C 218.902344 197.347656 218.996094 197.441406 219.113281 197.441406 C 219.230469 197.441406 219.324219 197.347656 219.324219 197.230469 Z M 219.324219 197.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.308594 195.570312 C 217.308594 195.453125 217.214844 195.359375 217.097656 195.359375 C 216.980469 195.359375 216.886719 195.453125 216.886719 195.570312 C 216.886719 195.6875 216.980469 195.78125 217.097656 195.78125 C 217.214844 195.78125 217.308594 195.6875 217.308594 195.570312 Z M 217.308594 195.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.429688 196.867188 C 216.429688 196.75 216.335938 196.65625 216.21875 196.65625 C 216.101562 196.65625 216.007812 196.75 216.007812 196.867188 C 216.007812 196.984375 216.101562 197.078125 216.21875 197.078125 C 216.335938 197.078125 216.429688 196.984375 216.429688 196.867188 Z M 216.429688 196.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.671875 197.433594 C 216.671875 197.316406 216.578125 197.222656 216.460938 197.222656 C 216.34375 197.222656 216.25 197.316406 216.25 197.433594 C 216.25 197.550781 216.34375 197.644531 216.460938 197.644531 C 216.578125 197.644531 216.671875 197.550781 216.671875 197.433594 Z M 216.671875 197.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.503906 196.175781 C 218.503906 196.058594 218.410156 195.964844 218.292969 195.964844 C 218.175781 195.964844 218.082031 196.058594 218.082031 196.175781 C 218.082031 196.292969 218.175781 196.386719 218.292969 196.386719 C 218.410156 196.386719 218.503906 196.292969 218.503906 196.175781 Z M 218.503906 196.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.46875 198.226562 C 219.46875 198.109375 219.375 198.015625 219.257812 198.015625 C 219.140625 198.015625 219.046875 198.109375 219.046875 198.226562 C 219.046875 198.34375 219.140625 198.4375 219.257812 198.4375 C 219.375 198.4375 219.46875 198.34375 219.46875 198.226562 Z M 219.46875 198.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.828125 200.976562 C 216.828125 200.859375 216.734375 200.765625 216.617188 200.765625 C 216.5 200.765625 216.40625 200.859375 216.40625 200.976562 C 216.40625 201.09375 216.5 201.1875 216.617188 201.1875 C 216.734375 201.1875 216.828125 201.09375 216.828125 200.976562 Z M 216.828125 200.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.453125 201.011719 C 219.453125 200.894531 219.359375 200.800781 219.242188 200.800781 C 219.125 200.800781 219.03125 200.894531 219.03125 201.011719 C 219.03125 201.128906 219.125 201.222656 219.242188 201.222656 C 219.359375 201.222656 219.453125 201.128906 219.453125 201.011719 Z M 219.453125 201.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217 201.914062 C 217 201.796875 216.90625 201.703125 216.789062 201.703125 C 216.671875 201.703125 216.578125 201.796875 216.578125 201.914062 C 216.578125 202.03125 216.671875 202.125 216.789062 202.125 C 216.90625 202.125 217 202.03125 217 201.914062 Z M 217 201.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.574219 204.222656 C 218.574219 204.105469 218.480469 204.011719 218.363281 204.011719 C 218.246094 204.011719 218.152344 204.105469 218.152344 204.222656 C 218.152344 204.339844 218.246094 204.433594 218.363281 204.433594 C 218.480469 204.433594 218.574219 204.339844 218.574219 204.222656 Z M 218.574219 204.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.652344 202.132812 C 216.652344 202.015625 216.558594 201.921875 216.441406 201.921875 C 216.324219 201.921875 216.230469 202.015625 216.230469 202.132812 C 216.230469 202.25 216.324219 202.34375 216.441406 202.34375 C 216.558594 202.34375 216.652344 202.25 216.652344 202.132812 Z M 216.652344 202.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.476562 202.203125 C 214.476562 202.085938 214.382812 201.992188 214.265625 201.992188 C 214.148438 201.992188 214.054688 202.085938 214.054688 202.203125 C 214.054688 202.320312 214.148438 202.414062 214.265625 202.414062 C 214.382812 202.414062 214.476562 202.320312 214.476562 202.203125 Z M 214.476562 202.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.707031 201.847656 C 213.707031 201.730469 213.613281 201.636719 213.496094 201.636719 C 213.378906 201.636719 213.285156 201.730469 213.285156 201.847656 C 213.285156 201.964844 213.378906 202.058594 213.496094 202.058594 C 213.613281 202.058594 213.707031 201.964844 213.707031 201.847656 Z M 213.707031 201.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.867188 201.203125 C 209.867188 201.085938 209.773438 200.992188 209.65625 200.992188 C 209.539062 200.992188 209.445312 201.085938 209.445312 201.203125 C 209.445312 201.320312 209.539062 201.414062 209.65625 201.414062 C 209.773438 201.414062 209.867188 201.320312 209.867188 201.203125 Z M 209.867188 201.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207 198.027344 C 207 197.910156 206.90625 197.816406 206.789062 197.816406 C 206.671875 197.816406 206.578125 197.910156 206.578125 198.027344 C 206.578125 198.144531 206.671875 198.238281 206.789062 198.238281 C 206.90625 198.238281 207 198.144531 207 198.027344 Z M 207 198.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.636719 200.769531 C 206.636719 200.652344 206.542969 200.558594 206.425781 200.558594 C 206.308594 200.558594 206.214844 200.652344 206.214844 200.769531 C 206.214844 200.886719 206.308594 200.980469 206.425781 200.980469 C 206.542969 200.980469 206.636719 200.886719 206.636719 200.769531 Z M 206.636719 200.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.871094 201.152344 C 207.871094 201.035156 207.777344 200.941406 207.660156 200.941406 C 207.542969 200.941406 207.449219 201.035156 207.449219 201.152344 C 207.449219 201.269531 207.542969 201.363281 207.660156 201.363281 C 207.777344 201.363281 207.871094 201.269531 207.871094 201.152344 Z M 207.871094 201.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.050781 203.507812 C 209.050781 203.390625 208.957031 203.296875 208.839844 203.296875 C 208.722656 203.296875 208.628906 203.390625 208.628906 203.507812 C 208.628906 203.625 208.722656 203.71875 208.839844 203.71875 C 208.957031 203.71875 209.050781 203.625 209.050781 203.507812 Z M 209.050781 203.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.617188 203.316406 C 210.617188 203.199219 210.523438 203.105469 210.40625 203.105469 C 210.289062 203.105469 210.195312 203.199219 210.195312 203.316406 C 210.195312 203.433594 210.289062 203.527344 210.40625 203.527344 C 210.523438 203.527344 210.617188 203.433594 210.617188 203.316406 Z M 210.617188 203.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.785156 202.292969 C 209.785156 202.175781 209.691406 202.082031 209.574219 202.082031 C 209.457031 202.082031 209.363281 202.175781 209.363281 202.292969 C 209.363281 202.410156 209.457031 202.503906 209.574219 202.503906 C 209.691406 202.503906 209.785156 202.410156 209.785156 202.292969 Z M 209.785156 202.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.953125 200.441406 C 209.953125 200.324219 209.859375 200.230469 209.742188 200.230469 C 209.625 200.230469 209.53125 200.324219 209.53125 200.441406 C 209.53125 200.558594 209.625 200.652344 209.742188 200.652344 C 209.859375 200.652344 209.953125 200.558594 209.953125 200.441406 Z M 209.953125 200.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.683594 197.4375 C 211.683594 197.320312 211.589844 197.226562 211.472656 197.226562 C 211.355469 197.226562 211.261719 197.320312 211.261719 197.4375 C 211.261719 197.554688 211.355469 197.648438 211.472656 197.648438 C 211.589844 197.648438 211.683594 197.554688 211.683594 197.4375 Z M 211.683594 197.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.117188 194.695312 C 213.117188 194.578125 213.023438 194.484375 212.90625 194.484375 C 212.789062 194.484375 212.695312 194.578125 212.695312 194.695312 C 212.695312 194.8125 212.789062 194.90625 212.90625 194.90625 C 213.023438 194.90625 213.117188 194.8125 213.117188 194.695312 Z M 213.117188 194.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.902344 194.773438 C 216.902344 194.65625 216.808594 194.5625 216.691406 194.5625 C 216.574219 194.5625 216.480469 194.65625 216.480469 194.773438 C 216.480469 194.890625 216.574219 194.984375 216.691406 194.984375 C 216.808594 194.984375 216.902344 194.890625 216.902344 194.773438 Z M 216.902344 194.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.367188 194.054688 C 216.367188 193.9375 216.273438 193.84375 216.15625 193.84375 C 216.039062 193.84375 215.945312 193.9375 215.945312 194.054688 C 215.945312 194.171875 216.039062 194.265625 216.15625 194.265625 C 216.273438 194.265625 216.367188 194.171875 216.367188 194.054688 Z M 216.367188 194.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.523438 193.859375 C 214.523438 193.742188 214.429688 193.648438 214.3125 193.648438 C 214.195312 193.648438 214.101562 193.742188 214.101562 193.859375 C 214.101562 193.976562 214.195312 194.070312 214.3125 194.070312 C 214.429688 194.070312 214.523438 193.976562 214.523438 193.859375 Z M 214.523438 193.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.578125 191.890625 C 215.578125 191.773438 215.484375 191.679688 215.367188 191.679688 C 215.25 191.679688 215.15625 191.773438 215.15625 191.890625 C 215.15625 192.007812 215.25 192.101562 215.367188 192.101562 C 215.484375 192.101562 215.578125 192.007812 215.578125 191.890625 Z M 215.578125 191.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.273438 191.445312 C 216.273438 191.328125 216.179688 191.234375 216.0625 191.234375 C 215.945312 191.234375 215.851562 191.328125 215.851562 191.445312 C 215.851562 191.5625 215.945312 191.65625 216.0625 191.65625 C 216.179688 191.65625 216.273438 191.5625 216.273438 191.445312 Z M 216.273438 191.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.875 190.847656 C 214.875 190.730469 214.78125 190.636719 214.664062 190.636719 C 214.546875 190.636719 214.453125 190.730469 214.453125 190.847656 C 214.453125 190.964844 214.546875 191.058594 214.664062 191.058594 C 214.78125 191.058594 214.875 190.964844 214.875 190.847656 Z M 214.875 190.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.757812 193.539062 C 218.757812 193.421875 218.664062 193.328125 218.546875 193.328125 C 218.429688 193.328125 218.335938 193.421875 218.335938 193.539062 C 218.335938 193.65625 218.429688 193.75 218.546875 193.75 C 218.664062 193.75 218.757812 193.65625 218.757812 193.539062 Z M 218.757812 193.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.152344 193.0625 C 224.152344 192.945312 224.058594 192.851562 223.941406 192.851562 C 223.824219 192.851562 223.730469 192.945312 223.730469 193.0625 C 223.730469 193.179688 223.824219 193.273438 223.941406 193.273438 C 224.058594 193.273438 224.152344 193.179688 224.152344 193.0625 Z M 224.152344 193.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.125 194.074219 C 228.125 193.957031 228.03125 193.863281 227.914062 193.863281 C 227.796875 193.863281 227.703125 193.957031 227.703125 194.074219 C 227.703125 194.191406 227.796875 194.285156 227.914062 194.285156 C 228.03125 194.285156 228.125 194.191406 228.125 194.074219 Z M 228.125 194.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.996094 194.425781 C 227.996094 194.308594 227.902344 194.214844 227.785156 194.214844 C 227.667969 194.214844 227.574219 194.308594 227.574219 194.425781 C 227.574219 194.542969 227.667969 194.636719 227.785156 194.636719 C 227.902344 194.636719 227.996094 194.542969 227.996094 194.425781 Z M 227.996094 194.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.921875 196.234375 C 228.921875 196.117188 228.828125 196.023438 228.710938 196.023438 C 228.59375 196.023438 228.5 196.117188 228.5 196.234375 C 228.5 196.351562 228.59375 196.445312 228.710938 196.445312 C 228.828125 196.445312 228.921875 196.351562 228.921875 196.234375 Z M 228.921875 196.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.371094 195.773438 C 228.371094 195.65625 228.277344 195.5625 228.160156 195.5625 C 228.042969 195.5625 227.949219 195.65625 227.949219 195.773438 C 227.949219 195.890625 228.042969 195.984375 228.160156 195.984375 C 228.277344 195.984375 228.371094 195.890625 228.371094 195.773438 Z M 228.371094 195.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.386719 193.535156 C 224.386719 193.417969 224.292969 193.324219 224.175781 193.324219 C 224.058594 193.324219 223.964844 193.417969 223.964844 193.535156 C 223.964844 193.652344 224.058594 193.746094 224.175781 193.746094 C 224.292969 193.746094 224.386719 193.652344 224.386719 193.535156 Z M 224.386719 193.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.722656 192.195312 C 223.722656 192.078125 223.628906 191.984375 223.511719 191.984375 C 223.394531 191.984375 223.300781 192.078125 223.300781 192.195312 C 223.300781 192.3125 223.394531 192.40625 223.511719 192.40625 C 223.628906 192.40625 223.722656 192.3125 223.722656 192.195312 Z M 223.722656 192.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.496094 195.191406 C 224.496094 195.074219 224.402344 194.980469 224.285156 194.980469 C 224.167969 194.980469 224.074219 195.074219 224.074219 195.191406 C 224.074219 195.308594 224.167969 195.402344 224.285156 195.402344 C 224.402344 195.402344 224.496094 195.308594 224.496094 195.191406 Z M 224.496094 195.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.75 196.167969 C 221.75 196.050781 221.65625 195.957031 221.539062 195.957031 C 221.421875 195.957031 221.328125 196.050781 221.328125 196.167969 C 221.328125 196.285156 221.421875 196.378906 221.539062 196.378906 C 221.65625 196.378906 221.75 196.285156 221.75 196.167969 Z M 221.75 196.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.378906 197.484375 C 222.378906 197.367188 222.285156 197.273438 222.167969 197.273438 C 222.050781 197.273438 221.957031 197.367188 221.957031 197.484375 C 221.957031 197.601562 222.050781 197.695312 222.167969 197.695312 C 222.285156 197.695312 222.378906 197.601562 222.378906 197.484375 Z M 222.378906 197.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.839844 197.339844 C 223.839844 197.222656 223.746094 197.128906 223.628906 197.128906 C 223.511719 197.128906 223.417969 197.222656 223.417969 197.339844 C 223.417969 197.457031 223.511719 197.550781 223.628906 197.550781 C 223.746094 197.550781 223.839844 197.457031 223.839844 197.339844 Z M 223.839844 197.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.816406 197.128906 C 225.816406 197.011719 225.722656 196.917969 225.605469 196.917969 C 225.488281 196.917969 225.394531 197.011719 225.394531 197.128906 C 225.394531 197.246094 225.488281 197.339844 225.605469 197.339844 C 225.722656 197.339844 225.816406 197.246094 225.816406 197.128906 Z M 225.816406 197.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.878906 195.765625 C 229.878906 195.648438 229.785156 195.554688 229.667969 195.554688 C 229.550781 195.554688 229.457031 195.648438 229.457031 195.765625 C 229.457031 195.882812 229.550781 195.976562 229.667969 195.976562 C 229.785156 195.976562 229.878906 195.882812 229.878906 195.765625 Z M 229.878906 195.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.234375 195.757812 C 231.234375 195.640625 231.140625 195.546875 231.023438 195.546875 C 230.90625 195.546875 230.8125 195.640625 230.8125 195.757812 C 230.8125 195.875 230.90625 195.96875 231.023438 195.96875 C 231.140625 195.96875 231.234375 195.875 231.234375 195.757812 Z M 231.234375 195.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.28125 195.707031 C 228.28125 195.589844 228.1875 195.496094 228.070312 195.496094 C 227.953125 195.496094 227.859375 195.589844 227.859375 195.707031 C 227.859375 195.824219 227.953125 195.917969 228.070312 195.917969 C 228.1875 195.917969 228.28125 195.824219 228.28125 195.707031 Z M 228.28125 195.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.71875 197.40625 C 229.71875 197.289062 229.625 197.195312 229.507812 197.195312 C 229.390625 197.195312 229.296875 197.289062 229.296875 197.40625 C 229.296875 197.523438 229.390625 197.617188 229.507812 197.617188 C 229.625 197.617188 229.71875 197.523438 229.71875 197.40625 Z M 229.71875 197.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.574219 195.316406 C 230.574219 195.199219 230.480469 195.105469 230.363281 195.105469 C 230.246094 195.105469 230.152344 195.199219 230.152344 195.316406 C 230.152344 195.433594 230.246094 195.527344 230.363281 195.527344 C 230.480469 195.527344 230.574219 195.433594 230.574219 195.316406 Z M 230.574219 195.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.035156 196.316406 C 233.035156 196.199219 232.941406 196.105469 232.824219 196.105469 C 232.707031 196.105469 232.613281 196.199219 232.613281 196.316406 C 232.613281 196.433594 232.707031 196.527344 232.824219 196.527344 C 232.941406 196.527344 233.035156 196.433594 233.035156 196.316406 Z M 233.035156 196.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.53125 195.089844 C 234.53125 194.972656 234.4375 194.878906 234.320312 194.878906 C 234.203125 194.878906 234.109375 194.972656 234.109375 195.089844 C 234.109375 195.207031 234.203125 195.300781 234.320312 195.300781 C 234.4375 195.300781 234.53125 195.207031 234.53125 195.089844 Z M 234.53125 195.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.792969 194.566406 C 232.792969 194.449219 232.699219 194.355469 232.582031 194.355469 C 232.464844 194.355469 232.371094 194.449219 232.371094 194.566406 C 232.371094 194.683594 232.464844 194.777344 232.582031 194.777344 C 232.699219 194.777344 232.792969 194.683594 232.792969 194.566406 Z M 232.792969 194.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.515625 193.148438 C 231.515625 193.03125 231.421875 192.9375 231.304688 192.9375 C 231.1875 192.9375 231.09375 193.03125 231.09375 193.148438 C 231.09375 193.265625 231.1875 193.359375 231.304688 193.359375 C 231.421875 193.359375 231.515625 193.265625 231.515625 193.148438 Z M 231.515625 193.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.011719 191.367188 C 235.011719 191.25 234.917969 191.15625 234.800781 191.15625 C 234.683594 191.15625 234.589844 191.25 234.589844 191.367188 C 234.589844 191.484375 234.683594 191.578125 234.800781 191.578125 C 234.917969 191.578125 235.011719 191.484375 235.011719 191.367188 Z M 235.011719 191.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.472656 192.808594 C 235.472656 192.691406 235.378906 192.597656 235.261719 192.597656 C 235.144531 192.597656 235.050781 192.691406 235.050781 192.808594 C 235.050781 192.925781 235.144531 193.019531 235.261719 193.019531 C 235.378906 193.019531 235.472656 192.925781 235.472656 192.808594 Z M 235.472656 192.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 236.5625 191.988281 C 236.5625 191.871094 236.46875 191.777344 236.351562 191.777344 C 236.234375 191.777344 236.140625 191.871094 236.140625 191.988281 C 236.140625 192.105469 236.234375 192.199219 236.351562 192.199219 C 236.46875 192.199219 236.5625 192.105469 236.5625 191.988281 Z M 236.5625 191.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.296875 192.730469 C 237.296875 192.613281 237.203125 192.519531 237.085938 192.519531 C 236.96875 192.519531 236.875 192.613281 236.875 192.730469 C 236.875 192.847656 236.96875 192.941406 237.085938 192.941406 C 237.203125 192.941406 237.296875 192.847656 237.296875 192.730469 Z M 237.296875 192.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.257812 192.453125 C 233.257812 192.335938 233.164062 192.242188 233.046875 192.242188 C 232.929688 192.242188 232.835938 192.335938 232.835938 192.453125 C 232.835938 192.570312 232.929688 192.664062 233.046875 192.664062 C 233.164062 192.664062 233.257812 192.570312 233.257812 192.453125 Z M 233.257812 192.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.09375 194.695312 C 233.09375 194.578125 233 194.484375 232.882812 194.484375 C 232.765625 194.484375 232.671875 194.578125 232.671875 194.695312 C 232.671875 194.8125 232.765625 194.90625 232.882812 194.90625 C 233 194.90625 233.09375 194.8125 233.09375 194.695312 Z M 233.09375 194.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.191406 195.464844 C 232.191406 195.347656 232.097656 195.253906 231.980469 195.253906 C 231.863281 195.253906 231.769531 195.347656 231.769531 195.464844 C 231.769531 195.582031 231.863281 195.675781 231.980469 195.675781 C 232.097656 195.675781 232.191406 195.582031 232.191406 195.464844 Z M 232.191406 195.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.425781 197.082031 C 232.425781 196.964844 232.332031 196.871094 232.214844 196.871094 C 232.097656 196.871094 232.003906 196.964844 232.003906 197.082031 C 232.003906 197.199219 232.097656 197.292969 232.214844 197.292969 C 232.332031 197.292969 232.425781 197.199219 232.425781 197.082031 Z M 232.425781 197.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.101562 200.648438 C 233.101562 200.53125 233.007812 200.4375 232.890625 200.4375 C 232.773438 200.4375 232.679688 200.53125 232.679688 200.648438 C 232.679688 200.765625 232.773438 200.859375 232.890625 200.859375 C 233.007812 200.859375 233.101562 200.765625 233.101562 200.648438 Z M 233.101562 200.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.886719 200.871094 C 231.886719 200.753906 231.792969 200.660156 231.675781 200.660156 C 231.558594 200.660156 231.464844 200.753906 231.464844 200.871094 C 231.464844 200.988281 231.558594 201.082031 231.675781 201.082031 C 231.792969 201.082031 231.886719 200.988281 231.886719 200.871094 Z M 231.886719 200.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.367188 204.628906 C 235.367188 204.511719 235.273438 204.417969 235.15625 204.417969 C 235.039062 204.417969 234.945312 204.511719 234.945312 204.628906 C 234.945312 204.746094 235.039062 204.839844 235.15625 204.839844 C 235.273438 204.839844 235.367188 204.746094 235.367188 204.628906 Z M 235.367188 204.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.582031 203.695312 C 234.582031 203.578125 234.488281 203.484375 234.371094 203.484375 C 234.253906 203.484375 234.160156 203.578125 234.160156 203.695312 C 234.160156 203.8125 234.253906 203.90625 234.371094 203.90625 C 234.488281 203.90625 234.582031 203.8125 234.582031 203.695312 Z M 234.582031 203.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.019531 203.089844 C 233.019531 202.972656 232.925781 202.878906 232.808594 202.878906 C 232.691406 202.878906 232.597656 202.972656 232.597656 203.089844 C 232.597656 203.207031 232.691406 203.300781 232.808594 203.300781 C 232.925781 203.300781 233.019531 203.207031 233.019531 203.089844 Z M 233.019531 203.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.410156 204.859375 C 234.410156 204.742188 234.316406 204.648438 234.199219 204.648438 C 234.082031 204.648438 233.988281 204.742188 233.988281 204.859375 C 233.988281 204.976562 234.082031 205.070312 234.199219 205.070312 C 234.316406 205.070312 234.410156 204.976562 234.410156 204.859375 Z M 234.410156 204.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.417969 204.675781 C 235.417969 204.558594 235.324219 204.464844 235.207031 204.464844 C 235.089844 204.464844 234.996094 204.558594 234.996094 204.675781 C 234.996094 204.792969 235.089844 204.886719 235.207031 204.886719 C 235.324219 204.886719 235.417969 204.792969 235.417969 204.675781 Z M 235.417969 204.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 238.351562 208.964844 C 238.351562 208.847656 238.257812 208.753906 238.140625 208.753906 C 238.023438 208.753906 237.929688 208.847656 237.929688 208.964844 C 237.929688 209.082031 238.023438 209.175781 238.140625 209.175781 C 238.257812 209.175781 238.351562 209.082031 238.351562 208.964844 Z M 238.351562 208.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.914062 214.113281 C 235.914062 213.996094 235.820312 213.902344 235.703125 213.902344 C 235.585938 213.902344 235.492188 213.996094 235.492188 214.113281 C 235.492188 214.230469 235.585938 214.324219 235.703125 214.324219 C 235.820312 214.324219 235.914062 214.230469 235.914062 214.113281 Z M 235.914062 214.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.933594 217.378906 C 232.933594 217.261719 232.839844 217.167969 232.722656 217.167969 C 232.605469 217.167969 232.511719 217.261719 232.511719 217.378906 C 232.511719 217.496094 232.605469 217.589844 232.722656 217.589844 C 232.839844 217.589844 232.933594 217.496094 232.933594 217.378906 Z M 232.933594 217.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.132812 215.511719 C 234.132812 215.394531 234.039062 215.300781 233.921875 215.300781 C 233.804688 215.300781 233.710938 215.394531 233.710938 215.511719 C 233.710938 215.628906 233.804688 215.722656 233.921875 215.722656 C 234.039062 215.722656 234.132812 215.628906 234.132812 215.511719 Z M 234.132812 215.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.679688 212.03125 C 229.679688 211.914062 229.585938 211.820312 229.46875 211.820312 C 229.351562 211.820312 229.257812 211.914062 229.257812 212.03125 C 229.257812 212.148438 229.351562 212.242188 229.46875 212.242188 C 229.585938 212.242188 229.679688 212.148438 229.679688 212.03125 Z M 229.679688 212.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.605469 214.242188 C 231.605469 214.125 231.511719 214.03125 231.394531 214.03125 C 231.277344 214.03125 231.183594 214.125 231.183594 214.242188 C 231.183594 214.359375 231.277344 214.453125 231.394531 214.453125 C 231.511719 214.453125 231.605469 214.359375 231.605469 214.242188 Z M 231.605469 214.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.921875 214.4375 C 230.921875 214.320312 230.828125 214.226562 230.710938 214.226562 C 230.59375 214.226562 230.5 214.320312 230.5 214.4375 C 230.5 214.554688 230.59375 214.648438 230.710938 214.648438 C 230.828125 214.648438 230.921875 214.554688 230.921875 214.4375 Z M 230.921875 214.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.589844 213.046875 C 231.589844 212.929688 231.496094 212.835938 231.378906 212.835938 C 231.261719 212.835938 231.167969 212.929688 231.167969 213.046875 C 231.167969 213.164062 231.261719 213.257812 231.378906 213.257812 C 231.496094 213.257812 231.589844 213.164062 231.589844 213.046875 Z M 231.589844 213.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.488281 215.136719 C 230.488281 215.019531 230.394531 214.925781 230.277344 214.925781 C 230.160156 214.925781 230.066406 215.019531 230.066406 215.136719 C 230.066406 215.253906 230.160156 215.347656 230.277344 215.347656 C 230.394531 215.347656 230.488281 215.253906 230.488281 215.136719 Z M 230.488281 215.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.757812 213.382812 C 227.757812 213.265625 227.664062 213.171875 227.546875 213.171875 C 227.429688 213.171875 227.335938 213.265625 227.335938 213.382812 C 227.335938 213.5 227.429688 213.59375 227.546875 213.59375 C 227.664062 213.59375 227.757812 213.5 227.757812 213.382812 Z M 227.757812 213.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.816406 213.035156 C 232.816406 212.917969 232.722656 212.824219 232.605469 212.824219 C 232.488281 212.824219 232.394531 212.917969 232.394531 213.035156 C 232.394531 213.152344 232.488281 213.246094 232.605469 213.246094 C 232.722656 213.246094 232.816406 213.152344 232.816406 213.035156 Z M 232.816406 213.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.398438 214.351562 C 232.398438 214.234375 232.304688 214.140625 232.1875 214.140625 C 232.070312 214.140625 231.976562 214.234375 231.976562 214.351562 C 231.976562 214.46875 232.070312 214.5625 232.1875 214.5625 C 232.304688 214.5625 232.398438 214.46875 232.398438 214.351562 Z M 232.398438 214.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.335938 213.011719 C 229.335938 212.894531 229.242188 212.800781 229.125 212.800781 C 229.007812 212.800781 228.914062 212.894531 228.914062 213.011719 C 228.914062 213.128906 229.007812 213.222656 229.125 213.222656 C 229.242188 213.222656 229.335938 213.128906 229.335938 213.011719 Z M 229.335938 213.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.949219 213.976562 C 228.949219 213.859375 228.855469 213.765625 228.738281 213.765625 C 228.621094 213.765625 228.527344 213.859375 228.527344 213.976562 C 228.527344 214.09375 228.621094 214.1875 228.738281 214.1875 C 228.855469 214.1875 228.949219 214.09375 228.949219 213.976562 Z M 228.949219 213.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.46875 213.515625 C 229.46875 213.398438 229.375 213.304688 229.257812 213.304688 C 229.140625 213.304688 229.046875 213.398438 229.046875 213.515625 C 229.046875 213.632812 229.140625 213.726562 229.257812 213.726562 C 229.375 213.726562 229.46875 213.632812 229.46875 213.515625 Z M 229.46875 213.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 228.777344 213 C 228.777344 212.882812 228.683594 212.789062 228.566406 212.789062 C 228.449219 212.789062 228.355469 212.882812 228.355469 213 C 228.355469 213.117188 228.449219 213.210938 228.566406 213.210938 C 228.683594 213.210938 228.777344 213.117188 228.777344 213 Z M 228.777344 213 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.554688 213.742188 C 224.554688 213.625 224.460938 213.53125 224.34375 213.53125 C 224.226562 213.53125 224.132812 213.625 224.132812 213.742188 C 224.132812 213.859375 224.226562 213.953125 224.34375 213.953125 C 224.460938 213.953125 224.554688 213.859375 224.554688 213.742188 Z M 224.554688 213.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.039062 214.101562 C 227.039062 213.984375 226.945312 213.890625 226.828125 213.890625 C 226.710938 213.890625 226.617188 213.984375 226.617188 214.101562 C 226.617188 214.21875 226.710938 214.3125 226.828125 214.3125 C 226.945312 214.3125 227.039062 214.21875 227.039062 214.101562 Z M 227.039062 214.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.394531 214.277344 C 229.394531 214.160156 229.300781 214.066406 229.183594 214.066406 C 229.066406 214.066406 228.972656 214.160156 228.972656 214.277344 C 228.972656 214.394531 229.066406 214.488281 229.183594 214.488281 C 229.300781 214.488281 229.394531 214.394531 229.394531 214.277344 Z M 229.394531 214.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.914062 215.921875 C 230.914062 215.804688 230.820312 215.710938 230.703125 215.710938 C 230.585938 215.710938 230.492188 215.804688 230.492188 215.921875 C 230.492188 216.039062 230.585938 216.132812 230.703125 216.132812 C 230.820312 216.132812 230.914062 216.039062 230.914062 215.921875 Z M 230.914062 215.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.65625 215.933594 C 232.65625 215.816406 232.5625 215.722656 232.445312 215.722656 C 232.328125 215.722656 232.234375 215.816406 232.234375 215.933594 C 232.234375 216.050781 232.328125 216.144531 232.445312 216.144531 C 232.5625 216.144531 232.65625 216.050781 232.65625 215.933594 Z M 232.65625 215.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 233.074219 217.261719 C 233.074219 217.144531 232.980469 217.050781 232.863281 217.050781 C 232.746094 217.050781 232.652344 217.144531 232.652344 217.261719 C 232.652344 217.378906 232.746094 217.472656 232.863281 217.472656 C 232.980469 217.472656 233.074219 217.378906 233.074219 217.261719 Z M 233.074219 217.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.894531 214.972656 C 231.894531 214.855469 231.800781 214.761719 231.683594 214.761719 C 231.566406 214.761719 231.472656 214.855469 231.472656 214.972656 C 231.472656 215.089844 231.566406 215.183594 231.683594 215.183594 C 231.800781 215.183594 231.894531 215.089844 231.894531 214.972656 Z M 231.894531 214.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.632812 215.308594 C 231.632812 215.191406 231.539062 215.097656 231.421875 215.097656 C 231.304688 215.097656 231.210938 215.191406 231.210938 215.308594 C 231.210938 215.425781 231.304688 215.519531 231.421875 215.519531 C 231.539062 215.519531 231.632812 215.425781 231.632812 215.308594 Z M 231.632812 215.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.730469 219.953125 C 229.730469 219.835938 229.636719 219.742188 229.519531 219.742188 C 229.402344 219.742188 229.308594 219.835938 229.308594 219.953125 C 229.308594 220.070312 229.402344 220.164062 229.519531 220.164062 C 229.636719 220.164062 229.730469 220.070312 229.730469 219.953125 Z M 229.730469 219.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.476562 221.003906 C 227.476562 220.886719 227.382812 220.792969 227.265625 220.792969 C 227.148438 220.792969 227.054688 220.886719 227.054688 221.003906 C 227.054688 221.121094 227.148438 221.214844 227.265625 221.214844 C 227.382812 221.214844 227.476562 221.121094 227.476562 221.003906 Z M 227.476562 221.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.179688 219.828125 C 227.179688 219.710938 227.085938 219.617188 226.96875 219.617188 C 226.851562 219.617188 226.757812 219.710938 226.757812 219.828125 C 226.757812 219.945312 226.851562 220.039062 226.96875 220.039062 C 227.085938 220.039062 227.179688 219.945312 227.179688 219.828125 Z M 227.179688 219.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.007812 219.082031 C 226.007812 218.964844 225.914062 218.871094 225.796875 218.871094 C 225.679688 218.871094 225.585938 218.964844 225.585938 219.082031 C 225.585938 219.199219 225.679688 219.292969 225.796875 219.292969 C 225.914062 219.292969 226.007812 219.199219 226.007812 219.082031 Z M 226.007812 219.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.023438 219.699219 C 223.023438 219.582031 222.929688 219.488281 222.8125 219.488281 C 222.695312 219.488281 222.601562 219.582031 222.601562 219.699219 C 222.601562 219.816406 222.695312 219.910156 222.8125 219.910156 C 222.929688 219.910156 223.023438 219.816406 223.023438 219.699219 Z M 223.023438 219.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.6875 218.339844 C 220.6875 218.222656 220.59375 218.128906 220.476562 218.128906 C 220.359375 218.128906 220.265625 218.222656 220.265625 218.339844 C 220.265625 218.457031 220.359375 218.550781 220.476562 218.550781 C 220.59375 218.550781 220.6875 218.457031 220.6875 218.339844 Z M 220.6875 218.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.78125 219.5625 C 222.78125 219.445312 222.6875 219.351562 222.570312 219.351562 C 222.453125 219.351562 222.359375 219.445312 222.359375 219.5625 C 222.359375 219.679688 222.453125 219.773438 222.570312 219.773438 C 222.6875 219.773438 222.78125 219.679688 222.78125 219.5625 Z M 222.78125 219.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.507812 222.246094 C 223.507812 222.128906 223.414062 222.035156 223.296875 222.035156 C 223.179688 222.035156 223.085938 222.128906 223.085938 222.246094 C 223.085938 222.363281 223.179688 222.457031 223.296875 222.457031 C 223.414062 222.457031 223.507812 222.363281 223.507812 222.246094 Z M 223.507812 222.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.890625 220.820312 C 223.890625 220.703125 223.796875 220.609375 223.679688 220.609375 C 223.5625 220.609375 223.46875 220.703125 223.46875 220.820312 C 223.46875 220.9375 223.5625 221.03125 223.679688 221.03125 C 223.796875 221.03125 223.890625 220.9375 223.890625 220.820312 Z M 223.890625 220.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.808594 220.136719 C 221.808594 220.019531 221.714844 219.925781 221.597656 219.925781 C 221.480469 219.925781 221.386719 220.019531 221.386719 220.136719 C 221.386719 220.253906 221.480469 220.347656 221.597656 220.347656 C 221.714844 220.347656 221.808594 220.253906 221.808594 220.136719 Z M 221.808594 220.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.90625 217.640625 C 222.90625 217.523438 222.8125 217.429688 222.695312 217.429688 C 222.578125 217.429688 222.484375 217.523438 222.484375 217.640625 C 222.484375 217.757812 222.578125 217.851562 222.695312 217.851562 C 222.8125 217.851562 222.90625 217.757812 222.90625 217.640625 Z M 222.90625 217.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.925781 216.75 C 223.925781 216.632812 223.832031 216.539062 223.714844 216.539062 C 223.597656 216.539062 223.503906 216.632812 223.503906 216.75 C 223.503906 216.867188 223.597656 216.960938 223.714844 216.960938 C 223.832031 216.960938 223.925781 216.867188 223.925781 216.75 Z M 223.925781 216.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.597656 213.851562 C 219.597656 213.734375 219.503906 213.640625 219.386719 213.640625 C 219.269531 213.640625 219.175781 213.734375 219.175781 213.851562 C 219.175781 213.96875 219.269531 214.0625 219.386719 214.0625 C 219.503906 214.0625 219.597656 213.96875 219.597656 213.851562 Z M 219.597656 213.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.523438 216.777344 C 224.523438 216.660156 224.429688 216.566406 224.3125 216.566406 C 224.195312 216.566406 224.101562 216.660156 224.101562 216.777344 C 224.101562 216.894531 224.195312 216.988281 224.3125 216.988281 C 224.429688 216.988281 224.523438 216.894531 224.523438 216.777344 Z M 224.523438 216.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.363281 216.699219 C 223.363281 216.582031 223.269531 216.488281 223.152344 216.488281 C 223.035156 216.488281 222.941406 216.582031 222.941406 216.699219 C 222.941406 216.816406 223.035156 216.910156 223.152344 216.910156 C 223.269531 216.910156 223.363281 216.816406 223.363281 216.699219 Z M 223.363281 216.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.441406 219.277344 C 219.441406 219.160156 219.347656 219.066406 219.230469 219.066406 C 219.113281 219.066406 219.019531 219.160156 219.019531 219.277344 C 219.019531 219.394531 219.113281 219.488281 219.230469 219.488281 C 219.347656 219.488281 219.441406 219.394531 219.441406 219.277344 Z M 219.441406 219.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.613281 218.359375 C 223.613281 218.242188 223.519531 218.148438 223.402344 218.148438 C 223.285156 218.148438 223.191406 218.242188 223.191406 218.359375 C 223.191406 218.476562 223.285156 218.570312 223.402344 218.570312 C 223.519531 218.570312 223.613281 218.476562 223.613281 218.359375 Z M 223.613281 218.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.289062 215.773438 C 224.289062 215.65625 224.195312 215.5625 224.078125 215.5625 C 223.960938 215.5625 223.867188 215.65625 223.867188 215.773438 C 223.867188 215.890625 223.960938 215.984375 224.078125 215.984375 C 224.195312 215.984375 224.289062 215.890625 224.289062 215.773438 Z M 224.289062 215.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.8125 216.796875 C 223.8125 216.679688 223.71875 216.585938 223.601562 216.585938 C 223.484375 216.585938 223.390625 216.679688 223.390625 216.796875 C 223.390625 216.914062 223.484375 217.007812 223.601562 217.007812 C 223.71875 217.007812 223.8125 216.914062 223.8125 216.796875 Z M 223.8125 216.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.609375 212.820312 C 223.609375 212.703125 223.515625 212.609375 223.398438 212.609375 C 223.28125 212.609375 223.1875 212.703125 223.1875 212.820312 C 223.1875 212.9375 223.28125 213.03125 223.398438 213.03125 C 223.515625 213.03125 223.609375 212.9375 223.609375 212.820312 Z M 223.609375 212.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.4375 212.449219 C 219.4375 212.332031 219.34375 212.238281 219.226562 212.238281 C 219.109375 212.238281 219.015625 212.332031 219.015625 212.449219 C 219.015625 212.566406 219.109375 212.660156 219.226562 212.660156 C 219.34375 212.660156 219.4375 212.566406 219.4375 212.449219 Z M 219.4375 212.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.128906 214.730469 C 217.128906 214.613281 217.035156 214.519531 216.917969 214.519531 C 216.800781 214.519531 216.707031 214.613281 216.707031 214.730469 C 216.707031 214.847656 216.800781 214.941406 216.917969 214.941406 C 217.035156 214.941406 217.128906 214.847656 217.128906 214.730469 Z M 217.128906 214.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.339844 210.265625 C 216.339844 210.148438 216.246094 210.054688 216.128906 210.054688 C 216.011719 210.054688 215.917969 210.148438 215.917969 210.265625 C 215.917969 210.382812 216.011719 210.476562 216.128906 210.476562 C 216.246094 210.476562 216.339844 210.382812 216.339844 210.265625 Z M 216.339844 210.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.601562 207.546875 C 214.601562 207.429688 214.507812 207.335938 214.390625 207.335938 C 214.273438 207.335938 214.179688 207.429688 214.179688 207.546875 C 214.179688 207.664062 214.273438 207.757812 214.390625 207.757812 C 214.507812 207.757812 214.601562 207.664062 214.601562 207.546875 Z M 214.601562 207.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.71875 205.863281 C 214.71875 205.746094 214.625 205.652344 214.507812 205.652344 C 214.390625 205.652344 214.296875 205.746094 214.296875 205.863281 C 214.296875 205.980469 214.390625 206.074219 214.507812 206.074219 C 214.625 206.074219 214.71875 205.980469 214.71875 205.863281 Z M 214.71875 205.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.707031 208.800781 C 215.707031 208.683594 215.613281 208.589844 215.496094 208.589844 C 215.378906 208.589844 215.285156 208.683594 215.285156 208.800781 C 215.285156 208.917969 215.378906 209.011719 215.496094 209.011719 C 215.613281 209.011719 215.707031 208.917969 215.707031 208.800781 Z M 215.707031 208.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.585938 210.128906 C 215.585938 210.011719 215.492188 209.917969 215.375 209.917969 C 215.257812 209.917969 215.164062 210.011719 215.164062 210.128906 C 215.164062 210.246094 215.257812 210.339844 215.375 210.339844 C 215.492188 210.339844 215.585938 210.246094 215.585938 210.128906 Z M 215.585938 210.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.203125 210.523438 C 213.203125 210.40625 213.109375 210.3125 212.992188 210.3125 C 212.875 210.3125 212.78125 210.40625 212.78125 210.523438 C 212.78125 210.640625 212.875 210.734375 212.992188 210.734375 C 213.109375 210.734375 213.203125 210.640625 213.203125 210.523438 Z M 213.203125 210.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.121094 210.320312 C 212.121094 210.203125 212.027344 210.109375 211.910156 210.109375 C 211.792969 210.109375 211.699219 210.203125 211.699219 210.320312 C 211.699219 210.4375 211.792969 210.53125 211.910156 210.53125 C 212.027344 210.53125 212.121094 210.4375 212.121094 210.320312 Z M 212.121094 210.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207 207.445312 C 207 207.328125 206.90625 207.234375 206.789062 207.234375 C 206.671875 207.234375 206.578125 207.328125 206.578125 207.445312 C 206.578125 207.5625 206.671875 207.65625 206.789062 207.65625 C 206.90625 207.65625 207 207.5625 207 207.445312 Z M 207 207.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.785156 207.652344 C 206.785156 207.535156 206.691406 207.441406 206.574219 207.441406 C 206.457031 207.441406 206.363281 207.535156 206.363281 207.652344 C 206.363281 207.769531 206.457031 207.863281 206.574219 207.863281 C 206.691406 207.863281 206.785156 207.769531 206.785156 207.652344 Z M 206.785156 207.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.003906 208.15625 C 210.003906 208.039062 209.910156 207.945312 209.792969 207.945312 C 209.675781 207.945312 209.582031 208.039062 209.582031 208.15625 C 209.582031 208.273438 209.675781 208.367188 209.792969 208.367188 C 209.910156 208.367188 210.003906 208.273438 210.003906 208.15625 Z M 210.003906 208.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.769531 206.699219 C 210.769531 206.582031 210.675781 206.488281 210.558594 206.488281 C 210.441406 206.488281 210.347656 206.582031 210.347656 206.699219 C 210.347656 206.816406 210.441406 206.910156 210.558594 206.910156 C 210.675781 206.910156 210.769531 206.816406 210.769531 206.699219 Z M 210.769531 206.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.0625 205.984375 C 212.0625 205.867188 211.96875 205.773438 211.851562 205.773438 C 211.734375 205.773438 211.640625 205.867188 211.640625 205.984375 C 211.640625 206.101562 211.734375 206.195312 211.851562 206.195312 C 211.96875 206.195312 212.0625 206.101562 212.0625 205.984375 Z M 212.0625 205.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.820312 203.691406 C 209.820312 203.574219 209.726562 203.480469 209.609375 203.480469 C 209.492188 203.480469 209.398438 203.574219 209.398438 203.691406 C 209.398438 203.808594 209.492188 203.902344 209.609375 203.902344 C 209.726562 203.902344 209.820312 203.808594 209.820312 203.691406 Z M 209.820312 203.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.085938 206.097656 C 207.085938 205.980469 206.992188 205.886719 206.875 205.886719 C 206.757812 205.886719 206.664062 205.980469 206.664062 206.097656 C 206.664062 206.214844 206.757812 206.308594 206.875 206.308594 C 206.992188 206.308594 207.085938 206.214844 207.085938 206.097656 Z M 207.085938 206.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.703125 208.894531 C 205.703125 208.777344 205.609375 208.683594 205.492188 208.683594 C 205.375 208.683594 205.28125 208.777344 205.28125 208.894531 C 205.28125 209.011719 205.375 209.105469 205.492188 209.105469 C 205.609375 209.105469 205.703125 209.011719 205.703125 208.894531 Z M 205.703125 208.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.59375 209.585938 C 203.59375 209.46875 203.5 209.375 203.382812 209.375 C 203.265625 209.375 203.171875 209.46875 203.171875 209.585938 C 203.171875 209.703125 203.265625 209.796875 203.382812 209.796875 C 203.5 209.796875 203.59375 209.703125 203.59375 209.585938 Z M 203.59375 209.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.511719 209.597656 C 203.511719 209.480469 203.417969 209.386719 203.300781 209.386719 C 203.183594 209.386719 203.089844 209.480469 203.089844 209.597656 C 203.089844 209.714844 203.183594 209.808594 203.300781 209.808594 C 203.417969 209.808594 203.511719 209.714844 203.511719 209.597656 Z M 203.511719 209.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.976562 207.207031 C 201.976562 207.089844 201.882812 206.996094 201.765625 206.996094 C 201.648438 206.996094 201.554688 207.089844 201.554688 207.207031 C 201.554688 207.324219 201.648438 207.417969 201.765625 207.417969 C 201.882812 207.417969 201.976562 207.324219 201.976562 207.207031 Z M 201.976562 207.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.929688 202.992188 C 205.929688 202.875 205.835938 202.78125 205.71875 202.78125 C 205.601562 202.78125 205.507812 202.875 205.507812 202.992188 C 205.507812 203.109375 205.601562 203.203125 205.71875 203.203125 C 205.835938 203.203125 205.929688 203.109375 205.929688 202.992188 Z M 205.929688 202.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.789062 204.117188 C 205.789062 204 205.695312 203.90625 205.578125 203.90625 C 205.460938 203.90625 205.367188 204 205.367188 204.117188 C 205.367188 204.234375 205.460938 204.328125 205.578125 204.328125 C 205.695312 204.328125 205.789062 204.234375 205.789062 204.117188 Z M 205.789062 204.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.285156 200.71875 C 205.285156 200.601562 205.191406 200.507812 205.074219 200.507812 C 204.957031 200.507812 204.863281 200.601562 204.863281 200.71875 C 204.863281 200.835938 204.957031 200.929688 205.074219 200.929688 C 205.191406 200.929688 205.285156 200.835938 205.285156 200.71875 Z M 205.285156 200.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.921875 200.675781 C 203.921875 200.558594 203.828125 200.464844 203.710938 200.464844 C 203.59375 200.464844 203.5 200.558594 203.5 200.675781 C 203.5 200.792969 203.59375 200.886719 203.710938 200.886719 C 203.828125 200.886719 203.921875 200.792969 203.921875 200.675781 Z M 203.921875 200.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.675781 198.210938 C 203.675781 198.09375 203.582031 198 203.464844 198 C 203.347656 198 203.253906 198.09375 203.253906 198.210938 C 203.253906 198.328125 203.347656 198.421875 203.464844 198.421875 C 203.582031 198.421875 203.675781 198.328125 203.675781 198.210938 Z M 203.675781 198.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.113281 195.121094 C 204.113281 195.003906 204.019531 194.910156 203.902344 194.910156 C 203.785156 194.910156 203.691406 195.003906 203.691406 195.121094 C 203.691406 195.238281 203.785156 195.332031 203.902344 195.332031 C 204.019531 195.332031 204.113281 195.238281 204.113281 195.121094 Z M 204.113281 195.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.632812 196.070312 C 202.632812 195.953125 202.539062 195.859375 202.421875 195.859375 C 202.304688 195.859375 202.210938 195.953125 202.210938 196.070312 C 202.210938 196.1875 202.304688 196.28125 202.421875 196.28125 C 202.539062 196.28125 202.632812 196.1875 202.632812 196.070312 Z M 202.632812 196.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.09375 193.214844 C 201.09375 193.097656 201 193.003906 200.882812 193.003906 C 200.765625 193.003906 200.671875 193.097656 200.671875 193.214844 C 200.671875 193.332031 200.765625 193.425781 200.882812 193.425781 C 201 193.425781 201.09375 193.332031 201.09375 193.214844 Z M 201.09375 193.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.1875 190.246094 C 202.1875 190.128906 202.09375 190.035156 201.976562 190.035156 C 201.859375 190.035156 201.765625 190.128906 201.765625 190.246094 C 201.765625 190.363281 201.859375 190.457031 201.976562 190.457031 C 202.09375 190.457031 202.1875 190.363281 202.1875 190.246094 Z M 202.1875 190.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.601562 187.710938 C 202.601562 187.59375 202.507812 187.5 202.390625 187.5 C 202.273438 187.5 202.179688 187.59375 202.179688 187.710938 C 202.179688 187.828125 202.273438 187.921875 202.390625 187.921875 C 202.507812 187.921875 202.601562 187.828125 202.601562 187.710938 Z M 202.601562 187.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.128906 188.847656 C 202.128906 188.730469 202.035156 188.636719 201.917969 188.636719 C 201.800781 188.636719 201.707031 188.730469 201.707031 188.847656 C 201.707031 188.964844 201.800781 189.058594 201.917969 189.058594 C 202.035156 189.058594 202.128906 188.964844 202.128906 188.847656 Z M 202.128906 188.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.136719 189.839844 C 202.136719 189.722656 202.042969 189.628906 201.925781 189.628906 C 201.808594 189.628906 201.714844 189.722656 201.714844 189.839844 C 201.714844 189.957031 201.808594 190.050781 201.925781 190.050781 C 202.042969 190.050781 202.136719 189.957031 202.136719 189.839844 Z M 202.136719 189.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.140625 191.390625 C 200.140625 191.273438 200.046875 191.179688 199.929688 191.179688 C 199.8125 191.179688 199.71875 191.273438 199.71875 191.390625 C 199.71875 191.507812 199.8125 191.601562 199.929688 191.601562 C 200.046875 191.601562 200.140625 191.507812 200.140625 191.390625 Z M 200.140625 191.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.953125 188.785156 C 198.953125 188.667969 198.859375 188.574219 198.742188 188.574219 C 198.625 188.574219 198.53125 188.667969 198.53125 188.785156 C 198.53125 188.902344 198.625 188.996094 198.742188 188.996094 C 198.859375 188.996094 198.953125 188.902344 198.953125 188.785156 Z M 198.953125 188.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.050781 186.1875 C 200.050781 186.070312 199.957031 185.976562 199.839844 185.976562 C 199.722656 185.976562 199.628906 186.070312 199.628906 186.1875 C 199.628906 186.304688 199.722656 186.398438 199.839844 186.398438 C 199.957031 186.398438 200.050781 186.304688 200.050781 186.1875 Z M 200.050781 186.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.769531 185.597656 C 202.769531 185.480469 202.675781 185.386719 202.558594 185.386719 C 202.441406 185.386719 202.347656 185.480469 202.347656 185.597656 C 202.347656 185.714844 202.441406 185.808594 202.558594 185.808594 C 202.675781 185.808594 202.769531 185.714844 202.769531 185.597656 Z M 202.769531 185.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.636719 187.515625 C 202.636719 187.398438 202.542969 187.304688 202.425781 187.304688 C 202.308594 187.304688 202.214844 187.398438 202.214844 187.515625 C 202.214844 187.632812 202.308594 187.726562 202.425781 187.726562 C 202.542969 187.726562 202.636719 187.632812 202.636719 187.515625 Z M 202.636719 187.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.601562 188.464844 C 206.601562 188.347656 206.507812 188.253906 206.390625 188.253906 C 206.273438 188.253906 206.179688 188.347656 206.179688 188.464844 C 206.179688 188.582031 206.273438 188.675781 206.390625 188.675781 C 206.507812 188.675781 206.601562 188.582031 206.601562 188.464844 Z M 206.601562 188.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.710938 188.4375 C 208.710938 188.320312 208.617188 188.226562 208.5 188.226562 C 208.382812 188.226562 208.289062 188.320312 208.289062 188.4375 C 208.289062 188.554688 208.382812 188.648438 208.5 188.648438 C 208.617188 188.648438 208.710938 188.554688 208.710938 188.4375 Z M 208.710938 188.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.179688 185.808594 C 207.179688 185.691406 207.085938 185.597656 206.96875 185.597656 C 206.851562 185.597656 206.757812 185.691406 206.757812 185.808594 C 206.757812 185.925781 206.851562 186.019531 206.96875 186.019531 C 207.085938 186.019531 207.179688 185.925781 207.179688 185.808594 Z M 207.179688 185.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.871094 187.367188 C 205.871094 187.25 205.777344 187.15625 205.660156 187.15625 C 205.542969 187.15625 205.449219 187.25 205.449219 187.367188 C 205.449219 187.484375 205.542969 187.578125 205.660156 187.578125 C 205.777344 187.578125 205.871094 187.484375 205.871094 187.367188 Z M 205.871094 187.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.109375 185.207031 C 204.109375 185.089844 204.015625 184.996094 203.898438 184.996094 C 203.78125 184.996094 203.6875 185.089844 203.6875 185.207031 C 203.6875 185.324219 203.78125 185.417969 203.898438 185.417969 C 204.015625 185.417969 204.109375 185.324219 204.109375 185.207031 Z M 204.109375 185.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.621094 182.34375 C 200.621094 182.226562 200.527344 182.132812 200.410156 182.132812 C 200.292969 182.132812 200.199219 182.226562 200.199219 182.34375 C 200.199219 182.460938 200.292969 182.554688 200.410156 182.554688 C 200.527344 182.554688 200.621094 182.460938 200.621094 182.34375 Z M 200.621094 182.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.40625 180.441406 C 203.40625 180.324219 203.3125 180.230469 203.195312 180.230469 C 203.078125 180.230469 202.984375 180.324219 202.984375 180.441406 C 202.984375 180.558594 203.078125 180.652344 203.195312 180.652344 C 203.3125 180.652344 203.40625 180.558594 203.40625 180.441406 Z M 203.40625 180.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.722656 178.808594 C 203.722656 178.691406 203.628906 178.597656 203.511719 178.597656 C 203.394531 178.597656 203.300781 178.691406 203.300781 178.808594 C 203.300781 178.925781 203.394531 179.019531 203.511719 179.019531 C 203.628906 179.019531 203.722656 178.925781 203.722656 178.808594 Z M 203.722656 178.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.453125 178.625 C 203.453125 178.507812 203.359375 178.414062 203.242188 178.414062 C 203.125 178.414062 203.03125 178.507812 203.03125 178.625 C 203.03125 178.742188 203.125 178.835938 203.242188 178.835938 C 203.359375 178.835938 203.453125 178.742188 203.453125 178.625 Z M 203.453125 178.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.257812 179.660156 C 199.257812 179.542969 199.164062 179.449219 199.046875 179.449219 C 198.929688 179.449219 198.835938 179.542969 198.835938 179.660156 C 198.835938 179.777344 198.929688 179.871094 199.046875 179.871094 C 199.164062 179.871094 199.257812 179.777344 199.257812 179.660156 Z M 199.257812 179.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.414062 179.933594 C 202.414062 179.816406 202.320312 179.722656 202.203125 179.722656 C 202.085938 179.722656 201.992188 179.816406 201.992188 179.933594 C 201.992188 180.050781 202.085938 180.144531 202.203125 180.144531 C 202.320312 180.144531 202.414062 180.050781 202.414062 179.933594 Z M 202.414062 179.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.023438 181.257812 C 204.023438 181.140625 203.929688 181.046875 203.8125 181.046875 C 203.695312 181.046875 203.601562 181.140625 203.601562 181.257812 C 203.601562 181.375 203.695312 181.46875 203.8125 181.46875 C 203.929688 181.46875 204.023438 181.375 204.023438 181.257812 Z M 204.023438 181.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.632812 181.1875 C 203.632812 181.070312 203.539062 180.976562 203.421875 180.976562 C 203.304688 180.976562 203.210938 181.070312 203.210938 181.1875 C 203.210938 181.304688 203.304688 181.398438 203.421875 181.398438 C 203.539062 181.398438 203.632812 181.304688 203.632812 181.1875 Z M 203.632812 181.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.902344 180.121094 C 200.902344 180.003906 200.808594 179.910156 200.691406 179.910156 C 200.574219 179.910156 200.480469 180.003906 200.480469 180.121094 C 200.480469 180.238281 200.574219 180.332031 200.691406 180.332031 C 200.808594 180.332031 200.902344 180.238281 200.902344 180.121094 Z M 200.902344 180.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.601562 179.082031 C 201.601562 178.964844 201.507812 178.871094 201.390625 178.871094 C 201.273438 178.871094 201.179688 178.964844 201.179688 179.082031 C 201.179688 179.199219 201.273438 179.292969 201.390625 179.292969 C 201.507812 179.292969 201.601562 179.199219 201.601562 179.082031 Z M 201.601562 179.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.390625 176.730469 C 203.390625 176.613281 203.296875 176.519531 203.179688 176.519531 C 203.0625 176.519531 202.96875 176.613281 202.96875 176.730469 C 202.96875 176.847656 203.0625 176.941406 203.179688 176.941406 C 203.296875 176.941406 203.390625 176.847656 203.390625 176.730469 Z M 203.390625 176.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.285156 176.53125 C 202.285156 176.414062 202.191406 176.320312 202.074219 176.320312 C 201.957031 176.320312 201.863281 176.414062 201.863281 176.53125 C 201.863281 176.648438 201.957031 176.742188 202.074219 176.742188 C 202.191406 176.742188 202.285156 176.648438 202.285156 176.53125 Z M 202.285156 176.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.109375 177.175781 C 202.109375 177.058594 202.015625 176.964844 201.898438 176.964844 C 201.78125 176.964844 201.6875 177.058594 201.6875 177.175781 C 201.6875 177.292969 201.78125 177.386719 201.898438 177.386719 C 202.015625 177.386719 202.109375 177.292969 202.109375 177.175781 Z M 202.109375 177.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.589844 175.617188 C 199.589844 175.5 199.496094 175.40625 199.378906 175.40625 C 199.261719 175.40625 199.167969 175.5 199.167969 175.617188 C 199.167969 175.734375 199.261719 175.828125 199.378906 175.828125 C 199.496094 175.828125 199.589844 175.734375 199.589844 175.617188 Z M 199.589844 175.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.878906 174.644531 C 196.878906 174.527344 196.785156 174.433594 196.667969 174.433594 C 196.550781 174.433594 196.457031 174.527344 196.457031 174.644531 C 196.457031 174.761719 196.550781 174.855469 196.667969 174.855469 C 196.785156 174.855469 196.878906 174.761719 196.878906 174.644531 Z M 196.878906 174.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.777344 173.359375 C 193.777344 173.242188 193.683594 173.148438 193.566406 173.148438 C 193.449219 173.148438 193.355469 173.242188 193.355469 173.359375 C 193.355469 173.476562 193.449219 173.570312 193.566406 173.570312 C 193.683594 173.570312 193.777344 173.476562 193.777344 173.359375 Z M 193.777344 173.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.058594 172.46875 C 195.058594 172.351562 194.964844 172.257812 194.847656 172.257812 C 194.730469 172.257812 194.636719 172.351562 194.636719 172.46875 C 194.636719 172.585938 194.730469 172.679688 194.847656 172.679688 C 194.964844 172.679688 195.058594 172.585938 195.058594 172.46875 Z M 195.058594 172.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.90625 177.003906 C 193.90625 176.886719 193.8125 176.792969 193.695312 176.792969 C 193.578125 176.792969 193.484375 176.886719 193.484375 177.003906 C 193.484375 177.121094 193.578125 177.214844 193.695312 177.214844 C 193.8125 177.214844 193.90625 177.121094 193.90625 177.003906 Z M 193.90625 177.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.351562 177.082031 C 191.351562 176.964844 191.257812 176.871094 191.140625 176.871094 C 191.023438 176.871094 190.929688 176.964844 190.929688 177.082031 C 190.929688 177.199219 191.023438 177.292969 191.140625 177.292969 C 191.257812 177.292969 191.351562 177.199219 191.351562 177.082031 Z M 191.351562 177.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.976562 177.628906 C 187.976562 177.511719 187.882812 177.417969 187.765625 177.417969 C 187.648438 177.417969 187.554688 177.511719 187.554688 177.628906 C 187.554688 177.746094 187.648438 177.839844 187.765625 177.839844 C 187.882812 177.839844 187.976562 177.746094 187.976562 177.628906 Z M 187.976562 177.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.113281 176.699219 C 188.113281 176.582031 188.019531 176.488281 187.902344 176.488281 C 187.785156 176.488281 187.691406 176.582031 187.691406 176.699219 C 187.691406 176.816406 187.785156 176.910156 187.902344 176.910156 C 188.019531 176.910156 188.113281 176.816406 188.113281 176.699219 Z M 188.113281 176.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.171875 177.96875 C 187.171875 177.851562 187.078125 177.757812 186.960938 177.757812 C 186.84375 177.757812 186.75 177.851562 186.75 177.96875 C 186.75 178.085938 186.84375 178.179688 186.960938 178.179688 C 187.078125 178.179688 187.171875 178.085938 187.171875 177.96875 Z M 187.171875 177.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.542969 179.546875 C 186.542969 179.429688 186.449219 179.335938 186.332031 179.335938 C 186.214844 179.335938 186.121094 179.429688 186.121094 179.546875 C 186.121094 179.664062 186.214844 179.757812 186.332031 179.757812 C 186.449219 179.757812 186.542969 179.664062 186.542969 179.546875 Z M 186.542969 179.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.210938 178.289062 C 188.210938 178.171875 188.117188 178.078125 188 178.078125 C 187.882812 178.078125 187.789062 178.171875 187.789062 178.289062 C 187.789062 178.40625 187.882812 178.5 188 178.5 C 188.117188 178.5 188.210938 178.40625 188.210938 178.289062 Z M 188.210938 178.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.515625 180.609375 C 189.515625 180.492188 189.421875 180.398438 189.304688 180.398438 C 189.1875 180.398438 189.09375 180.492188 189.09375 180.609375 C 189.09375 180.726562 189.1875 180.820312 189.304688 180.820312 C 189.421875 180.820312 189.515625 180.726562 189.515625 180.609375 Z M 189.515625 180.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.019531 176.953125 C 188.019531 176.835938 187.925781 176.742188 187.808594 176.742188 C 187.691406 176.742188 187.597656 176.835938 187.597656 176.953125 C 187.597656 177.070312 187.691406 177.164062 187.808594 177.164062 C 187.925781 177.164062 188.019531 177.070312 188.019531 176.953125 Z M 188.019531 176.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.136719 177.289062 C 185.136719 177.171875 185.042969 177.078125 184.925781 177.078125 C 184.808594 177.078125 184.714844 177.171875 184.714844 177.289062 C 184.714844 177.40625 184.808594 177.5 184.925781 177.5 C 185.042969 177.5 185.136719 177.40625 185.136719 177.289062 Z M 185.136719 177.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.242188 176.273438 C 189.242188 176.15625 189.148438 176.0625 189.03125 176.0625 C 188.914062 176.0625 188.820312 176.15625 188.820312 176.273438 C 188.820312 176.390625 188.914062 176.484375 189.03125 176.484375 C 189.148438 176.484375 189.242188 176.390625 189.242188 176.273438 Z M 189.242188 176.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.449219 176.824219 C 189.449219 176.707031 189.355469 176.613281 189.238281 176.613281 C 189.121094 176.613281 189.027344 176.707031 189.027344 176.824219 C 189.027344 176.941406 189.121094 177.035156 189.238281 177.035156 C 189.355469 177.035156 189.449219 176.941406 189.449219 176.824219 Z M 189.449219 176.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.992188 177.394531 C 188.992188 177.277344 188.898438 177.183594 188.78125 177.183594 C 188.664062 177.183594 188.570312 177.277344 188.570312 177.394531 C 188.570312 177.511719 188.664062 177.605469 188.78125 177.605469 C 188.898438 177.605469 188.992188 177.511719 188.992188 177.394531 Z M 188.992188 177.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.097656 179.261719 C 189.097656 179.144531 189.003906 179.050781 188.886719 179.050781 C 188.769531 179.050781 188.675781 179.144531 188.675781 179.261719 C 188.675781 179.378906 188.769531 179.472656 188.886719 179.472656 C 189.003906 179.472656 189.097656 179.378906 189.097656 179.261719 Z M 189.097656 179.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.058594 183.300781 C 190.058594 183.183594 189.964844 183.089844 189.847656 183.089844 C 189.730469 183.089844 189.636719 183.183594 189.636719 183.300781 C 189.636719 183.417969 189.730469 183.511719 189.847656 183.511719 C 189.964844 183.511719 190.058594 183.417969 190.058594 183.300781 Z M 190.058594 183.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.027344 183.238281 C 192.027344 183.121094 191.933594 183.027344 191.816406 183.027344 C 191.699219 183.027344 191.605469 183.121094 191.605469 183.238281 C 191.605469 183.355469 191.699219 183.449219 191.816406 183.449219 C 191.933594 183.449219 192.027344 183.355469 192.027344 183.238281 Z M 192.027344 183.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.65625 178.613281 C 196.65625 178.496094 196.5625 178.402344 196.445312 178.402344 C 196.328125 178.402344 196.234375 178.496094 196.234375 178.613281 C 196.234375 178.730469 196.328125 178.824219 196.445312 178.824219 C 196.5625 178.824219 196.65625 178.730469 196.65625 178.613281 Z M 196.65625 178.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.820312 177.765625 C 197.820312 177.648438 197.726562 177.554688 197.609375 177.554688 C 197.492188 177.554688 197.398438 177.648438 197.398438 177.765625 C 197.398438 177.882812 197.492188 177.976562 197.609375 177.976562 C 197.726562 177.976562 197.820312 177.882812 197.820312 177.765625 Z M 197.820312 177.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.085938 175.292969 C 198.085938 175.175781 197.992188 175.082031 197.875 175.082031 C 197.757812 175.082031 197.664062 175.175781 197.664062 175.292969 C 197.664062 175.410156 197.757812 175.503906 197.875 175.503906 C 197.992188 175.503906 198.085938 175.410156 198.085938 175.292969 Z M 198.085938 175.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.734375 172.492188 C 201.734375 172.375 201.640625 172.28125 201.523438 172.28125 C 201.40625 172.28125 201.3125 172.375 201.3125 172.492188 C 201.3125 172.609375 201.40625 172.703125 201.523438 172.703125 C 201.640625 172.703125 201.734375 172.609375 201.734375 172.492188 Z M 201.734375 172.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.042969 173.175781 C 204.042969 173.058594 203.949219 172.964844 203.832031 172.964844 C 203.714844 172.964844 203.621094 173.058594 203.621094 173.175781 C 203.621094 173.292969 203.714844 173.386719 203.832031 173.386719 C 203.949219 173.386719 204.042969 173.292969 204.042969 173.175781 Z M 204.042969 173.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.238281 175.035156 C 204.238281 174.917969 204.144531 174.824219 204.027344 174.824219 C 203.910156 174.824219 203.816406 174.917969 203.816406 175.035156 C 203.816406 175.152344 203.910156 175.246094 204.027344 175.246094 C 204.144531 175.246094 204.238281 175.152344 204.238281 175.035156 Z M 204.238281 175.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.222656 173.679688 C 204.222656 173.5625 204.128906 173.46875 204.011719 173.46875 C 203.894531 173.46875 203.800781 173.5625 203.800781 173.679688 C 203.800781 173.796875 203.894531 173.890625 204.011719 173.890625 C 204.128906 173.890625 204.222656 173.796875 204.222656 173.679688 Z M 204.222656 173.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.089844 175.199219 C 206.089844 175.082031 205.996094 174.988281 205.878906 174.988281 C 205.761719 174.988281 205.667969 175.082031 205.667969 175.199219 C 205.667969 175.316406 205.761719 175.410156 205.878906 175.410156 C 205.996094 175.410156 206.089844 175.316406 206.089844 175.199219 Z M 206.089844 175.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.953125 176.652344 C 202.953125 176.535156 202.859375 176.441406 202.742188 176.441406 C 202.625 176.441406 202.53125 176.535156 202.53125 176.652344 C 202.53125 176.769531 202.625 176.863281 202.742188 176.863281 C 202.859375 176.863281 202.953125 176.769531 202.953125 176.652344 Z M 202.953125 176.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.867188 176.46875 C 206.867188 176.351562 206.773438 176.257812 206.65625 176.257812 C 206.539062 176.257812 206.445312 176.351562 206.445312 176.46875 C 206.445312 176.585938 206.539062 176.679688 206.65625 176.679688 C 206.773438 176.679688 206.867188 176.585938 206.867188 176.46875 Z M 206.867188 176.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.410156 175.476562 C 208.410156 175.359375 208.316406 175.265625 208.199219 175.265625 C 208.082031 175.265625 207.988281 175.359375 207.988281 175.476562 C 207.988281 175.59375 208.082031 175.6875 208.199219 175.6875 C 208.316406 175.6875 208.410156 175.59375 208.410156 175.476562 Z M 208.410156 175.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.707031 178.871094 C 207.707031 178.753906 207.613281 178.660156 207.496094 178.660156 C 207.378906 178.660156 207.285156 178.753906 207.285156 178.871094 C 207.285156 178.988281 207.378906 179.082031 207.496094 179.082031 C 207.613281 179.082031 207.707031 178.988281 207.707031 178.871094 Z M 207.707031 178.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.011719 180.128906 C 209.011719 180.011719 208.917969 179.917969 208.800781 179.917969 C 208.683594 179.917969 208.589844 180.011719 208.589844 180.128906 C 208.589844 180.246094 208.683594 180.339844 208.800781 180.339844 C 208.917969 180.339844 209.011719 180.246094 209.011719 180.128906 Z M 209.011719 180.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.382812 176.867188 C 211.382812 176.75 211.289062 176.65625 211.171875 176.65625 C 211.054688 176.65625 210.960938 176.75 210.960938 176.867188 C 210.960938 176.984375 211.054688 177.078125 211.171875 177.078125 C 211.289062 177.078125 211.382812 176.984375 211.382812 176.867188 Z M 211.382812 176.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.132812 178.730469 C 211.132812 178.613281 211.039062 178.519531 210.921875 178.519531 C 210.804688 178.519531 210.710938 178.613281 210.710938 178.730469 C 210.710938 178.847656 210.804688 178.941406 210.921875 178.941406 C 211.039062 178.941406 211.132812 178.847656 211.132812 178.730469 Z M 211.132812 178.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.003906 179.304688 C 214.003906 179.1875 213.910156 179.09375 213.792969 179.09375 C 213.675781 179.09375 213.582031 179.1875 213.582031 179.304688 C 213.582031 179.421875 213.675781 179.515625 213.792969 179.515625 C 213.910156 179.515625 214.003906 179.421875 214.003906 179.304688 Z M 214.003906 179.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.203125 176.882812 C 213.203125 176.765625 213.109375 176.671875 212.992188 176.671875 C 212.875 176.671875 212.78125 176.765625 212.78125 176.882812 C 212.78125 177 212.875 177.09375 212.992188 177.09375 C 213.109375 177.09375 213.203125 177 213.203125 176.882812 Z M 213.203125 176.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.898438 177.421875 C 208.898438 177.304688 208.804688 177.210938 208.6875 177.210938 C 208.570312 177.210938 208.476562 177.304688 208.476562 177.421875 C 208.476562 177.539062 208.570312 177.632812 208.6875 177.632812 C 208.804688 177.632812 208.898438 177.539062 208.898438 177.421875 Z M 208.898438 177.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.289062 175.691406 C 208.289062 175.574219 208.195312 175.480469 208.078125 175.480469 C 207.960938 175.480469 207.867188 175.574219 207.867188 175.691406 C 207.867188 175.808594 207.960938 175.902344 208.078125 175.902344 C 208.195312 175.902344 208.289062 175.808594 208.289062 175.691406 Z M 208.289062 175.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.222656 176.058594 C 204.222656 175.941406 204.128906 175.847656 204.011719 175.847656 C 203.894531 175.847656 203.800781 175.941406 203.800781 176.058594 C 203.800781 176.175781 203.894531 176.269531 204.011719 176.269531 C 204.128906 176.269531 204.222656 176.175781 204.222656 176.058594 Z M 204.222656 176.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.128906 176.027344 C 205.128906 175.910156 205.035156 175.816406 204.917969 175.816406 C 204.800781 175.816406 204.707031 175.910156 204.707031 176.027344 C 204.707031 176.144531 204.800781 176.238281 204.917969 176.238281 C 205.035156 176.238281 205.128906 176.144531 205.128906 176.027344 Z M 205.128906 176.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.632812 174.042969 C 203.632812 173.925781 203.539062 173.832031 203.421875 173.832031 C 203.304688 173.832031 203.210938 173.925781 203.210938 174.042969 C 203.210938 174.160156 203.304688 174.253906 203.421875 174.253906 C 203.539062 174.253906 203.632812 174.160156 203.632812 174.042969 Z M 203.632812 174.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.203125 170.199219 C 202.203125 170.082031 202.109375 169.988281 201.992188 169.988281 C 201.875 169.988281 201.78125 170.082031 201.78125 170.199219 C 201.78125 170.316406 201.875 170.410156 201.992188 170.410156 C 202.109375 170.410156 202.203125 170.316406 202.203125 170.199219 Z M 202.203125 170.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.15625 171.34375 C 199.15625 171.226562 199.0625 171.132812 198.945312 171.132812 C 198.828125 171.132812 198.734375 171.226562 198.734375 171.34375 C 198.734375 171.460938 198.828125 171.554688 198.945312 171.554688 C 199.0625 171.554688 199.15625 171.460938 199.15625 171.34375 Z M 199.15625 171.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.542969 169.328125 C 195.542969 169.210938 195.449219 169.117188 195.332031 169.117188 C 195.214844 169.117188 195.121094 169.210938 195.121094 169.328125 C 195.121094 169.445312 195.214844 169.539062 195.332031 169.539062 C 195.449219 169.539062 195.542969 169.445312 195.542969 169.328125 Z M 195.542969 169.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.847656 169.113281 C 194.847656 168.996094 194.753906 168.902344 194.636719 168.902344 C 194.519531 168.902344 194.425781 168.996094 194.425781 169.113281 C 194.425781 169.230469 194.519531 169.324219 194.636719 169.324219 C 194.753906 169.324219 194.847656 169.230469 194.847656 169.113281 Z M 194.847656 169.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.574219 166.890625 C 196.574219 166.773438 196.480469 166.679688 196.363281 166.679688 C 196.246094 166.679688 196.152344 166.773438 196.152344 166.890625 C 196.152344 167.007812 196.246094 167.101562 196.363281 167.101562 C 196.480469 167.101562 196.574219 167.007812 196.574219 166.890625 Z M 196.574219 166.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.726562 167.054688 C 197.726562 166.9375 197.632812 166.84375 197.515625 166.84375 C 197.398438 166.84375 197.304688 166.9375 197.304688 167.054688 C 197.304688 167.171875 197.398438 167.265625 197.515625 167.265625 C 197.632812 167.265625 197.726562 167.171875 197.726562 167.054688 Z M 197.726562 167.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.179688 166.195312 C 196.179688 166.078125 196.085938 165.984375 195.96875 165.984375 C 195.851562 165.984375 195.757812 166.078125 195.757812 166.195312 C 195.757812 166.3125 195.851562 166.40625 195.96875 166.40625 C 196.085938 166.40625 196.179688 166.3125 196.179688 166.195312 Z M 196.179688 166.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.945312 167.835938 C 191.945312 167.71875 191.851562 167.625 191.734375 167.625 C 191.617188 167.625 191.523438 167.71875 191.523438 167.835938 C 191.523438 167.953125 191.617188 168.046875 191.734375 168.046875 C 191.851562 168.046875 191.945312 167.953125 191.945312 167.835938 Z M 191.945312 167.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.976562 166.730469 C 191.976562 166.613281 191.882812 166.519531 191.765625 166.519531 C 191.648438 166.519531 191.554688 166.613281 191.554688 166.730469 C 191.554688 166.847656 191.648438 166.941406 191.765625 166.941406 C 191.882812 166.941406 191.976562 166.847656 191.976562 166.730469 Z M 191.976562 166.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.289062 167.765625 C 193.289062 167.648438 193.195312 167.554688 193.078125 167.554688 C 192.960938 167.554688 192.867188 167.648438 192.867188 167.765625 C 192.867188 167.882812 192.960938 167.976562 193.078125 167.976562 C 193.195312 167.976562 193.289062 167.882812 193.289062 167.765625 Z M 193.289062 167.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.730469 167.765625 C 197.730469 167.648438 197.636719 167.554688 197.519531 167.554688 C 197.402344 167.554688 197.308594 167.648438 197.308594 167.765625 C 197.308594 167.882812 197.402344 167.976562 197.519531 167.976562 C 197.636719 167.976562 197.730469 167.882812 197.730469 167.765625 Z M 197.730469 167.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.1875 168.292969 C 198.1875 168.175781 198.09375 168.082031 197.976562 168.082031 C 197.859375 168.082031 197.765625 168.175781 197.765625 168.292969 C 197.765625 168.410156 197.859375 168.503906 197.976562 168.503906 C 198.09375 168.503906 198.1875 168.410156 198.1875 168.292969 Z M 198.1875 168.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.785156 167.863281 C 196.785156 167.746094 196.691406 167.652344 196.574219 167.652344 C 196.457031 167.652344 196.363281 167.746094 196.363281 167.863281 C 196.363281 167.980469 196.457031 168.074219 196.574219 168.074219 C 196.691406 168.074219 196.785156 167.980469 196.785156 167.863281 Z M 196.785156 167.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.058594 169.996094 C 200.058594 169.878906 199.964844 169.785156 199.847656 169.785156 C 199.730469 169.785156 199.636719 169.878906 199.636719 169.996094 C 199.636719 170.113281 199.730469 170.207031 199.847656 170.207031 C 199.964844 170.207031 200.058594 170.113281 200.058594 169.996094 Z M 200.058594 169.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.382812 172.382812 C 200.382812 172.265625 200.289062 172.171875 200.171875 172.171875 C 200.054688 172.171875 199.960938 172.265625 199.960938 172.382812 C 199.960938 172.5 200.054688 172.59375 200.171875 172.59375 C 200.289062 172.59375 200.382812 172.5 200.382812 172.382812 Z M 200.382812 172.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.292969 173.988281 C 200.292969 173.871094 200.199219 173.777344 200.082031 173.777344 C 199.964844 173.777344 199.871094 173.871094 199.871094 173.988281 C 199.871094 174.105469 199.964844 174.199219 200.082031 174.199219 C 200.199219 174.199219 200.292969 174.105469 200.292969 173.988281 Z M 200.292969 173.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.105469 177.457031 C 201.105469 177.339844 201.011719 177.246094 200.894531 177.246094 C 200.777344 177.246094 200.683594 177.339844 200.683594 177.457031 C 200.683594 177.574219 200.777344 177.667969 200.894531 177.667969 C 201.011719 177.667969 201.105469 177.574219 201.105469 177.457031 Z M 201.105469 177.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.699219 175.320312 C 202.699219 175.203125 202.605469 175.109375 202.488281 175.109375 C 202.371094 175.109375 202.277344 175.203125 202.277344 175.320312 C 202.277344 175.4375 202.371094 175.53125 202.488281 175.53125 C 202.605469 175.53125 202.699219 175.4375 202.699219 175.320312 Z M 202.699219 175.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.617188 177.960938 C 201.617188 177.84375 201.523438 177.75 201.40625 177.75 C 201.289062 177.75 201.195312 177.84375 201.195312 177.960938 C 201.195312 178.078125 201.289062 178.171875 201.40625 178.171875 C 201.523438 178.171875 201.617188 178.078125 201.617188 177.960938 Z M 201.617188 177.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.246094 177.804688 C 197.246094 177.6875 197.152344 177.59375 197.035156 177.59375 C 196.917969 177.59375 196.824219 177.6875 196.824219 177.804688 C 196.824219 177.921875 196.917969 178.015625 197.035156 178.015625 C 197.152344 178.015625 197.246094 177.921875 197.246094 177.804688 Z M 197.246094 177.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.390625 178.296875 C 198.390625 178.179688 198.296875 178.085938 198.179688 178.085938 C 198.0625 178.085938 197.96875 178.179688 197.96875 178.296875 C 197.96875 178.414062 198.0625 178.507812 198.179688 178.507812 C 198.296875 178.507812 198.390625 178.414062 198.390625 178.296875 Z M 198.390625 178.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.316406 177.117188 C 200.316406 177 200.222656 176.90625 200.105469 176.90625 C 199.988281 176.90625 199.894531 177 199.894531 177.117188 C 199.894531 177.234375 199.988281 177.328125 200.105469 177.328125 C 200.222656 177.328125 200.316406 177.234375 200.316406 177.117188 Z M 200.316406 177.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.972656 178.066406 C 197.972656 177.949219 197.878906 177.855469 197.761719 177.855469 C 197.644531 177.855469 197.550781 177.949219 197.550781 178.066406 C 197.550781 178.183594 197.644531 178.277344 197.761719 178.277344 C 197.878906 178.277344 197.972656 178.183594 197.972656 178.066406 Z M 197.972656 178.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.21875 176.148438 C 196.21875 176.03125 196.125 175.9375 196.007812 175.9375 C 195.890625 175.9375 195.796875 176.03125 195.796875 176.148438 C 195.796875 176.265625 195.890625 176.359375 196.007812 176.359375 C 196.125 176.359375 196.21875 176.265625 196.21875 176.148438 Z M 196.21875 176.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.570312 175.078125 C 195.570312 174.960938 195.476562 174.867188 195.359375 174.867188 C 195.242188 174.867188 195.148438 174.960938 195.148438 175.078125 C 195.148438 175.195312 195.242188 175.289062 195.359375 175.289062 C 195.476562 175.289062 195.570312 175.195312 195.570312 175.078125 Z M 195.570312 175.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.800781 176.464844 C 192.800781 176.347656 192.707031 176.253906 192.589844 176.253906 C 192.472656 176.253906 192.378906 176.347656 192.378906 176.464844 C 192.378906 176.582031 192.472656 176.675781 192.589844 176.675781 C 192.707031 176.675781 192.800781 176.582031 192.800781 176.464844 Z M 192.800781 176.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.5 174.871094 C 191.5 174.753906 191.40625 174.660156 191.289062 174.660156 C 191.171875 174.660156 191.078125 174.753906 191.078125 174.871094 C 191.078125 174.988281 191.171875 175.082031 191.289062 175.082031 C 191.40625 175.082031 191.5 174.988281 191.5 174.871094 Z M 191.5 174.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.234375 174.140625 C 189.234375 174.023438 189.140625 173.929688 189.023438 173.929688 C 188.90625 173.929688 188.8125 174.023438 188.8125 174.140625 C 188.8125 174.257812 188.90625 174.351562 189.023438 174.351562 C 189.140625 174.351562 189.234375 174.257812 189.234375 174.140625 Z M 189.234375 174.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.6875 173.105469 C 186.6875 172.988281 186.59375 172.894531 186.476562 172.894531 C 186.359375 172.894531 186.265625 172.988281 186.265625 173.105469 C 186.265625 173.222656 186.359375 173.316406 186.476562 173.316406 C 186.59375 173.316406 186.6875 173.222656 186.6875 173.105469 Z M 186.6875 173.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.910156 173.746094 C 185.910156 173.628906 185.816406 173.535156 185.699219 173.535156 C 185.582031 173.535156 185.488281 173.628906 185.488281 173.746094 C 185.488281 173.863281 185.582031 173.957031 185.699219 173.957031 C 185.816406 173.957031 185.910156 173.863281 185.910156 173.746094 Z M 185.910156 173.746094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.550781 174.269531 C 186.550781 174.152344 186.457031 174.058594 186.339844 174.058594 C 186.222656 174.058594 186.128906 174.152344 186.128906 174.269531 C 186.128906 174.386719 186.222656 174.480469 186.339844 174.480469 C 186.457031 174.480469 186.550781 174.386719 186.550781 174.269531 Z M 186.550781 174.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.390625 175.070312 C 185.390625 174.953125 185.296875 174.859375 185.179688 174.859375 C 185.0625 174.859375 184.96875 174.953125 184.96875 175.070312 C 184.96875 175.1875 185.0625 175.28125 185.179688 175.28125 C 185.296875 175.28125 185.390625 175.1875 185.390625 175.070312 Z M 185.390625 175.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.835938 173.347656 C 185.835938 173.230469 185.742188 173.136719 185.625 173.136719 C 185.507812 173.136719 185.414062 173.230469 185.414062 173.347656 C 185.414062 173.464844 185.507812 173.558594 185.625 173.558594 C 185.742188 173.558594 185.835938 173.464844 185.835938 173.347656 Z M 185.835938 173.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.019531 176.332031 C 184.019531 176.214844 183.925781 176.121094 183.808594 176.121094 C 183.691406 176.121094 183.597656 176.214844 183.597656 176.332031 C 183.597656 176.449219 183.691406 176.542969 183.808594 176.542969 C 183.925781 176.542969 184.019531 176.449219 184.019531 176.332031 Z M 184.019531 176.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.675781 176.824219 C 183.675781 176.707031 183.582031 176.613281 183.464844 176.613281 C 183.347656 176.613281 183.253906 176.707031 183.253906 176.824219 C 183.253906 176.941406 183.347656 177.035156 183.464844 177.035156 C 183.582031 177.035156 183.675781 176.941406 183.675781 176.824219 Z M 183.675781 176.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.449219 175.234375 C 183.449219 175.117188 183.355469 175.023438 183.238281 175.023438 C 183.121094 175.023438 183.027344 175.117188 183.027344 175.234375 C 183.027344 175.351562 183.121094 175.445312 183.238281 175.445312 C 183.355469 175.445312 183.449219 175.351562 183.449219 175.234375 Z M 183.449219 175.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.945312 173.796875 C 179.945312 173.679688 179.851562 173.585938 179.734375 173.585938 C 179.617188 173.585938 179.523438 173.679688 179.523438 173.796875 C 179.523438 173.914062 179.617188 174.007812 179.734375 174.007812 C 179.851562 174.007812 179.945312 173.914062 179.945312 173.796875 Z M 179.945312 173.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.867188 175.398438 C 178.867188 175.28125 178.773438 175.1875 178.65625 175.1875 C 178.539062 175.1875 178.445312 175.28125 178.445312 175.398438 C 178.445312 175.515625 178.539062 175.609375 178.65625 175.609375 C 178.773438 175.609375 178.867188 175.515625 178.867188 175.398438 Z M 178.867188 175.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.351562 176.058594 C 177.351562 175.941406 177.257812 175.847656 177.140625 175.847656 C 177.023438 175.847656 176.929688 175.941406 176.929688 176.058594 C 176.929688 176.175781 177.023438 176.269531 177.140625 176.269531 C 177.257812 176.269531 177.351562 176.175781 177.351562 176.058594 Z M 177.351562 176.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.535156 177.261719 C 177.535156 177.144531 177.441406 177.050781 177.324219 177.050781 C 177.207031 177.050781 177.113281 177.144531 177.113281 177.261719 C 177.113281 177.378906 177.207031 177.472656 177.324219 177.472656 C 177.441406 177.472656 177.535156 177.378906 177.535156 177.261719 Z M 177.535156 177.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.429688 177.25 C 177.429688 177.132812 177.335938 177.039062 177.21875 177.039062 C 177.101562 177.039062 177.007812 177.132812 177.007812 177.25 C 177.007812 177.367188 177.101562 177.460938 177.21875 177.460938 C 177.335938 177.460938 177.429688 177.367188 177.429688 177.25 Z M 177.429688 177.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.007812 179.605469 C 175.007812 179.488281 174.914062 179.394531 174.796875 179.394531 C 174.679688 179.394531 174.585938 179.488281 174.585938 179.605469 C 174.585938 179.722656 174.679688 179.816406 174.796875 179.816406 C 174.914062 179.816406 175.007812 179.722656 175.007812 179.605469 Z M 175.007812 179.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.609375 180.226562 C 176.609375 180.109375 176.515625 180.015625 176.398438 180.015625 C 176.28125 180.015625 176.1875 180.109375 176.1875 180.226562 C 176.1875 180.34375 176.28125 180.4375 176.398438 180.4375 C 176.515625 180.4375 176.609375 180.34375 176.609375 180.226562 Z M 176.609375 180.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.429688 177.816406 C 173.429688 177.699219 173.335938 177.605469 173.21875 177.605469 C 173.101562 177.605469 173.007812 177.699219 173.007812 177.816406 C 173.007812 177.933594 173.101562 178.027344 173.21875 178.027344 C 173.335938 178.027344 173.429688 177.933594 173.429688 177.816406 Z M 173.429688 177.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.207031 174.753906 C 168.207031 174.636719 168.113281 174.542969 167.996094 174.542969 C 167.878906 174.542969 167.785156 174.636719 167.785156 174.753906 C 167.785156 174.871094 167.878906 174.964844 167.996094 174.964844 C 168.113281 174.964844 168.207031 174.871094 168.207031 174.753906 Z M 168.207031 174.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.460938 175.914062 C 168.460938 175.796875 168.367188 175.703125 168.25 175.703125 C 168.132812 175.703125 168.039062 175.796875 168.039062 175.914062 C 168.039062 176.03125 168.132812 176.125 168.25 176.125 C 168.367188 176.125 168.460938 176.03125 168.460938 175.914062 Z M 168.460938 175.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.292969 175.355469 C 170.292969 175.238281 170.199219 175.144531 170.082031 175.144531 C 169.964844 175.144531 169.871094 175.238281 169.871094 175.355469 C 169.871094 175.472656 169.964844 175.566406 170.082031 175.566406 C 170.199219 175.566406 170.292969 175.472656 170.292969 175.355469 Z M 170.292969 175.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.855469 176.464844 C 170.855469 176.347656 170.761719 176.253906 170.644531 176.253906 C 170.527344 176.253906 170.433594 176.347656 170.433594 176.464844 C 170.433594 176.582031 170.527344 176.675781 170.644531 176.675781 C 170.761719 176.675781 170.855469 176.582031 170.855469 176.464844 Z M 170.855469 176.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.335938 179.554688 C 170.335938 179.4375 170.242188 179.34375 170.125 179.34375 C 170.007812 179.34375 169.914062 179.4375 169.914062 179.554688 C 169.914062 179.671875 170.007812 179.765625 170.125 179.765625 C 170.242188 179.765625 170.335938 179.671875 170.335938 179.554688 Z M 170.335938 179.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.195312 178.269531 C 167.195312 178.152344 167.101562 178.058594 166.984375 178.058594 C 166.867188 178.058594 166.773438 178.152344 166.773438 178.269531 C 166.773438 178.386719 166.867188 178.480469 166.984375 178.480469 C 167.101562 178.480469 167.195312 178.386719 167.195312 178.269531 Z M 167.195312 178.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.640625 180.792969 C 167.640625 180.675781 167.546875 180.582031 167.429688 180.582031 C 167.3125 180.582031 167.21875 180.675781 167.21875 180.792969 C 167.21875 180.910156 167.3125 181.003906 167.429688 181.003906 C 167.546875 181.003906 167.640625 180.910156 167.640625 180.792969 Z M 167.640625 180.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.8125 178.773438 C 169.8125 178.65625 169.71875 178.5625 169.601562 178.5625 C 169.484375 178.5625 169.390625 178.65625 169.390625 178.773438 C 169.390625 178.890625 169.484375 178.984375 169.601562 178.984375 C 169.71875 178.984375 169.8125 178.890625 169.8125 178.773438 Z M 169.8125 178.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.410156 177.527344 C 170.410156 177.410156 170.316406 177.316406 170.199219 177.316406 C 170.082031 177.316406 169.988281 177.410156 169.988281 177.527344 C 169.988281 177.644531 170.082031 177.738281 170.199219 177.738281 C 170.316406 177.738281 170.410156 177.644531 170.410156 177.527344 Z M 170.410156 177.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.125 177.234375 C 172.125 177.117188 172.03125 177.023438 171.914062 177.023438 C 171.796875 177.023438 171.703125 177.117188 171.703125 177.234375 C 171.703125 177.351562 171.796875 177.445312 171.914062 177.445312 C 172.03125 177.445312 172.125 177.351562 172.125 177.234375 Z M 172.125 177.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.242188 175.992188 C 173.242188 175.875 173.148438 175.78125 173.03125 175.78125 C 172.914062 175.78125 172.820312 175.875 172.820312 175.992188 C 172.820312 176.109375 172.914062 176.203125 173.03125 176.203125 C 173.148438 176.203125 173.242188 176.109375 173.242188 175.992188 Z M 173.242188 175.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.640625 172.953125 C 169.640625 172.835938 169.546875 172.742188 169.429688 172.742188 C 169.3125 172.742188 169.21875 172.835938 169.21875 172.953125 C 169.21875 173.070312 169.3125 173.164062 169.429688 173.164062 C 169.546875 173.164062 169.640625 173.070312 169.640625 172.953125 Z M 169.640625 172.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.945312 173.253906 C 167.945312 173.136719 167.851562 173.042969 167.734375 173.042969 C 167.617188 173.042969 167.523438 173.136719 167.523438 173.253906 C 167.523438 173.371094 167.617188 173.464844 167.734375 173.464844 C 167.851562 173.464844 167.945312 173.371094 167.945312 173.253906 Z M 167.945312 173.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.789062 175.515625 C 170.789062 175.398438 170.695312 175.304688 170.578125 175.304688 C 170.460938 175.304688 170.367188 175.398438 170.367188 175.515625 C 170.367188 175.632812 170.460938 175.726562 170.578125 175.726562 C 170.695312 175.726562 170.789062 175.632812 170.789062 175.515625 Z M 170.789062 175.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.296875 175.75 C 172.296875 175.632812 172.203125 175.539062 172.085938 175.539062 C 171.96875 175.539062 171.875 175.632812 171.875 175.75 C 171.875 175.867188 171.96875 175.960938 172.085938 175.960938 C 172.203125 175.960938 172.296875 175.867188 172.296875 175.75 Z M 172.296875 175.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.824219 176.105469 C 169.824219 175.988281 169.730469 175.894531 169.613281 175.894531 C 169.496094 175.894531 169.402344 175.988281 169.402344 176.105469 C 169.402344 176.222656 169.496094 176.316406 169.613281 176.316406 C 169.730469 176.316406 169.824219 176.222656 169.824219 176.105469 Z M 169.824219 176.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.542969 179.035156 C 171.542969 178.917969 171.449219 178.824219 171.332031 178.824219 C 171.214844 178.824219 171.121094 178.917969 171.121094 179.035156 C 171.121094 179.152344 171.214844 179.246094 171.332031 179.246094 C 171.449219 179.246094 171.542969 179.152344 171.542969 179.035156 Z M 171.542969 179.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.53125 182.363281 C 169.53125 182.246094 169.4375 182.152344 169.320312 182.152344 C 169.203125 182.152344 169.109375 182.246094 169.109375 182.363281 C 169.109375 182.480469 169.203125 182.574219 169.320312 182.574219 C 169.4375 182.574219 169.53125 182.480469 169.53125 182.363281 Z M 169.53125 182.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.617188 183.75 C 172.617188 183.632812 172.523438 183.539062 172.40625 183.539062 C 172.289062 183.539062 172.195312 183.632812 172.195312 183.75 C 172.195312 183.867188 172.289062 183.960938 172.40625 183.960938 C 172.523438 183.960938 172.617188 183.867188 172.617188 183.75 Z M 172.617188 183.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.007812 182.171875 C 173.007812 182.054688 172.914062 181.960938 172.796875 181.960938 C 172.679688 181.960938 172.585938 182.054688 172.585938 182.171875 C 172.585938 182.289062 172.679688 182.382812 172.796875 182.382812 C 172.914062 182.382812 173.007812 182.289062 173.007812 182.171875 Z M 173.007812 182.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.800781 184.914062 C 172.800781 184.796875 172.707031 184.703125 172.589844 184.703125 C 172.472656 184.703125 172.378906 184.796875 172.378906 184.914062 C 172.378906 185.03125 172.472656 185.125 172.589844 185.125 C 172.707031 185.125 172.800781 185.03125 172.800781 184.914062 Z M 172.800781 184.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.183594 187.046875 C 175.183594 186.929688 175.089844 186.835938 174.972656 186.835938 C 174.855469 186.835938 174.761719 186.929688 174.761719 187.046875 C 174.761719 187.164062 174.855469 187.257812 174.972656 187.257812 C 175.089844 187.257812 175.183594 187.164062 175.183594 187.046875 Z M 175.183594 187.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.453125 188.113281 C 171.453125 187.996094 171.359375 187.902344 171.242188 187.902344 C 171.125 187.902344 171.03125 187.996094 171.03125 188.113281 C 171.03125 188.230469 171.125 188.324219 171.242188 188.324219 C 171.359375 188.324219 171.453125 188.230469 171.453125 188.113281 Z M 171.453125 188.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.878906 187.738281 C 174.878906 187.621094 174.785156 187.527344 174.667969 187.527344 C 174.550781 187.527344 174.457031 187.621094 174.457031 187.738281 C 174.457031 187.855469 174.550781 187.949219 174.667969 187.949219 C 174.785156 187.949219 174.878906 187.855469 174.878906 187.738281 Z M 174.878906 187.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.257812 190.996094 C 177.257812 190.878906 177.164062 190.785156 177.046875 190.785156 C 176.929688 190.785156 176.835938 190.878906 176.835938 190.996094 C 176.835938 191.113281 176.929688 191.207031 177.046875 191.207031 C 177.164062 191.207031 177.257812 191.113281 177.257812 190.996094 Z M 177.257812 190.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.082031 185.789062 C 176.082031 185.671875 175.988281 185.578125 175.871094 185.578125 C 175.753906 185.578125 175.660156 185.671875 175.660156 185.789062 C 175.660156 185.90625 175.753906 186 175.871094 186 C 175.988281 186 176.082031 185.90625 176.082031 185.789062 Z M 176.082031 185.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.957031 183.625 C 175.957031 183.507812 175.863281 183.414062 175.746094 183.414062 C 175.628906 183.414062 175.535156 183.507812 175.535156 183.625 C 175.535156 183.742188 175.628906 183.835938 175.746094 183.835938 C 175.863281 183.835938 175.957031 183.742188 175.957031 183.625 Z M 175.957031 183.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.621094 184.167969 C 176.621094 184.050781 176.527344 183.957031 176.410156 183.957031 C 176.292969 183.957031 176.199219 184.050781 176.199219 184.167969 C 176.199219 184.285156 176.292969 184.378906 176.410156 184.378906 C 176.527344 184.378906 176.621094 184.285156 176.621094 184.167969 Z M 176.621094 184.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.585938 184.238281 C 174.585938 184.121094 174.492188 184.027344 174.375 184.027344 C 174.257812 184.027344 174.164062 184.121094 174.164062 184.238281 C 174.164062 184.355469 174.257812 184.449219 174.375 184.449219 C 174.492188 184.449219 174.585938 184.355469 174.585938 184.238281 Z M 174.585938 184.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.777344 182.761719 C 176.777344 182.644531 176.683594 182.550781 176.566406 182.550781 C 176.449219 182.550781 176.355469 182.644531 176.355469 182.761719 C 176.355469 182.878906 176.449219 182.972656 176.566406 182.972656 C 176.683594 182.972656 176.777344 182.878906 176.777344 182.761719 Z M 176.777344 182.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.417969 178.90625 C 175.417969 178.789062 175.324219 178.695312 175.207031 178.695312 C 175.089844 178.695312 174.996094 178.789062 174.996094 178.90625 C 174.996094 179.023438 175.089844 179.117188 175.207031 179.117188 C 175.324219 179.117188 175.417969 179.023438 175.417969 178.90625 Z M 175.417969 178.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.457031 178.992188 C 173.457031 178.875 173.363281 178.78125 173.246094 178.78125 C 173.128906 178.78125 173.035156 178.875 173.035156 178.992188 C 173.035156 179.109375 173.128906 179.203125 173.246094 179.203125 C 173.363281 179.203125 173.457031 179.109375 173.457031 178.992188 Z M 173.457031 178.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.691406 177.691406 C 177.691406 177.574219 177.597656 177.480469 177.480469 177.480469 C 177.363281 177.480469 177.269531 177.574219 177.269531 177.691406 C 177.269531 177.808594 177.363281 177.902344 177.480469 177.902344 C 177.597656 177.902344 177.691406 177.808594 177.691406 177.691406 Z M 177.691406 177.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.742188 176.027344 C 178.742188 175.910156 178.648438 175.816406 178.53125 175.816406 C 178.414062 175.816406 178.320312 175.910156 178.320312 176.027344 C 178.320312 176.144531 178.414062 176.238281 178.53125 176.238281 C 178.648438 176.238281 178.742188 176.144531 178.742188 176.027344 Z M 178.742188 176.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.140625 172.179688 C 179.140625 172.0625 179.046875 171.96875 178.929688 171.96875 C 178.8125 171.96875 178.71875 172.0625 178.71875 172.179688 C 178.71875 172.296875 178.8125 172.390625 178.929688 172.390625 C 179.046875 172.390625 179.140625 172.296875 179.140625 172.179688 Z M 179.140625 172.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.25 172.410156 C 179.25 172.292969 179.15625 172.199219 179.039062 172.199219 C 178.921875 172.199219 178.828125 172.292969 178.828125 172.410156 C 178.828125 172.527344 178.921875 172.621094 179.039062 172.621094 C 179.15625 172.621094 179.25 172.527344 179.25 172.410156 Z M 179.25 172.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.585938 171.058594 C 178.585938 170.941406 178.492188 170.847656 178.375 170.847656 C 178.257812 170.847656 178.164062 170.941406 178.164062 171.058594 C 178.164062 171.175781 178.257812 171.269531 178.375 171.269531 C 178.492188 171.269531 178.585938 171.175781 178.585938 171.058594 Z M 178.585938 171.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.605469 170.5 C 178.605469 170.382812 178.511719 170.289062 178.394531 170.289062 C 178.277344 170.289062 178.183594 170.382812 178.183594 170.5 C 178.183594 170.617188 178.277344 170.710938 178.394531 170.710938 C 178.511719 170.710938 178.605469 170.617188 178.605469 170.5 Z M 178.605469 170.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.9375 166.882812 C 176.9375 166.765625 176.84375 166.671875 176.726562 166.671875 C 176.609375 166.671875 176.515625 166.765625 176.515625 166.882812 C 176.515625 167 176.609375 167.09375 176.726562 167.09375 C 176.84375 167.09375 176.9375 167 176.9375 166.882812 Z M 176.9375 166.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.738281 166.3125 C 178.738281 166.195312 178.644531 166.101562 178.527344 166.101562 C 178.410156 166.101562 178.316406 166.195312 178.316406 166.3125 C 178.316406 166.429688 178.410156 166.523438 178.527344 166.523438 C 178.644531 166.523438 178.738281 166.429688 178.738281 166.3125 Z M 178.738281 166.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.886719 165.257812 C 175.886719 165.140625 175.792969 165.046875 175.675781 165.046875 C 175.558594 165.046875 175.464844 165.140625 175.464844 165.257812 C 175.464844 165.375 175.558594 165.46875 175.675781 165.46875 C 175.792969 165.46875 175.886719 165.375 175.886719 165.257812 Z M 175.886719 165.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.460938 168.203125 C 173.460938 168.085938 173.367188 167.992188 173.25 167.992188 C 173.132812 167.992188 173.039062 168.085938 173.039062 168.203125 C 173.039062 168.320312 173.132812 168.414062 173.25 168.414062 C 173.367188 168.414062 173.460938 168.320312 173.460938 168.203125 Z M 173.460938 168.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.863281 162.3125 C 172.863281 162.195312 172.769531 162.101562 172.652344 162.101562 C 172.535156 162.101562 172.441406 162.195312 172.441406 162.3125 C 172.441406 162.429688 172.535156 162.523438 172.652344 162.523438 C 172.769531 162.523438 172.863281 162.429688 172.863281 162.3125 Z M 172.863281 162.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.585938 162.074219 C 170.585938 161.957031 170.492188 161.863281 170.375 161.863281 C 170.257812 161.863281 170.164062 161.957031 170.164062 162.074219 C 170.164062 162.191406 170.257812 162.285156 170.375 162.285156 C 170.492188 162.285156 170.585938 162.191406 170.585938 162.074219 Z M 170.585938 162.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.84375 161.691406 C 167.84375 161.574219 167.75 161.480469 167.632812 161.480469 C 167.515625 161.480469 167.421875 161.574219 167.421875 161.691406 C 167.421875 161.808594 167.515625 161.902344 167.632812 161.902344 C 167.75 161.902344 167.84375 161.808594 167.84375 161.691406 Z M 167.84375 161.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.550781 162.136719 C 163.550781 162.019531 163.457031 161.925781 163.339844 161.925781 C 163.222656 161.925781 163.128906 162.019531 163.128906 162.136719 C 163.128906 162.253906 163.222656 162.347656 163.339844 162.347656 C 163.457031 162.347656 163.550781 162.253906 163.550781 162.136719 Z M 163.550781 162.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.128906 160.515625 C 165.128906 160.398438 165.035156 160.304688 164.917969 160.304688 C 164.800781 160.304688 164.707031 160.398438 164.707031 160.515625 C 164.707031 160.632812 164.800781 160.726562 164.917969 160.726562 C 165.035156 160.726562 165.128906 160.632812 165.128906 160.515625 Z M 165.128906 160.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.160156 159.933594 C 165.160156 159.816406 165.066406 159.722656 164.949219 159.722656 C 164.832031 159.722656 164.738281 159.816406 164.738281 159.933594 C 164.738281 160.050781 164.832031 160.144531 164.949219 160.144531 C 165.066406 160.144531 165.160156 160.050781 165.160156 159.933594 Z M 165.160156 159.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.496094 162.636719 C 164.496094 162.519531 164.402344 162.425781 164.285156 162.425781 C 164.167969 162.425781 164.074219 162.519531 164.074219 162.636719 C 164.074219 162.753906 164.167969 162.847656 164.285156 162.847656 C 164.402344 162.847656 164.496094 162.753906 164.496094 162.636719 Z M 164.496094 162.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.03125 163.136719 C 166.03125 163.019531 165.9375 162.925781 165.820312 162.925781 C 165.703125 162.925781 165.609375 163.019531 165.609375 163.136719 C 165.609375 163.253906 165.703125 163.347656 165.820312 163.347656 C 165.9375 163.347656 166.03125 163.253906 166.03125 163.136719 Z M 166.03125 163.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.753906 158.40625 C 167.753906 158.289062 167.660156 158.195312 167.542969 158.195312 C 167.425781 158.195312 167.332031 158.289062 167.332031 158.40625 C 167.332031 158.523438 167.425781 158.617188 167.542969 158.617188 C 167.660156 158.617188 167.753906 158.523438 167.753906 158.40625 Z M 167.753906 158.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.164062 154.925781 C 170.164062 154.808594 170.070312 154.714844 169.953125 154.714844 C 169.835938 154.714844 169.742188 154.808594 169.742188 154.925781 C 169.742188 155.042969 169.835938 155.136719 169.953125 155.136719 C 170.070312 155.136719 170.164062 155.042969 170.164062 154.925781 Z M 170.164062 154.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.621094 154.425781 C 169.621094 154.308594 169.527344 154.214844 169.410156 154.214844 C 169.292969 154.214844 169.199219 154.308594 169.199219 154.425781 C 169.199219 154.542969 169.292969 154.636719 169.410156 154.636719 C 169.527344 154.636719 169.621094 154.542969 169.621094 154.425781 Z M 169.621094 154.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.917969 154.933594 C 170.917969 154.816406 170.824219 154.722656 170.707031 154.722656 C 170.589844 154.722656 170.496094 154.816406 170.496094 154.933594 C 170.496094 155.050781 170.589844 155.144531 170.707031 155.144531 C 170.824219 155.144531 170.917969 155.050781 170.917969 154.933594 Z M 170.917969 154.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.378906 153.445312 C 173.378906 153.328125 173.285156 153.234375 173.167969 153.234375 C 173.050781 153.234375 172.957031 153.328125 172.957031 153.445312 C 172.957031 153.5625 173.050781 153.65625 173.167969 153.65625 C 173.285156 153.65625 173.378906 153.5625 173.378906 153.445312 Z M 173.378906 153.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.769531 150.171875 C 172.769531 150.054688 172.675781 149.960938 172.558594 149.960938 C 172.441406 149.960938 172.347656 150.054688 172.347656 150.171875 C 172.347656 150.289062 172.441406 150.382812 172.558594 150.382812 C 172.675781 150.382812 172.769531 150.289062 172.769531 150.171875 Z M 172.769531 150.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.007812 149.238281 C 173.007812 149.121094 172.914062 149.027344 172.796875 149.027344 C 172.679688 149.027344 172.585938 149.121094 172.585938 149.238281 C 172.585938 149.355469 172.679688 149.449219 172.796875 149.449219 C 172.914062 149.449219 173.007812 149.355469 173.007812 149.238281 Z M 173.007812 149.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.011719 151.722656 C 171.011719 151.605469 170.917969 151.511719 170.800781 151.511719 C 170.683594 151.511719 170.589844 151.605469 170.589844 151.722656 C 170.589844 151.839844 170.683594 151.933594 170.800781 151.933594 C 170.917969 151.933594 171.011719 151.839844 171.011719 151.722656 Z M 171.011719 151.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.441406 152.328125 C 167.441406 152.210938 167.347656 152.117188 167.230469 152.117188 C 167.113281 152.117188 167.019531 152.210938 167.019531 152.328125 C 167.019531 152.445312 167.113281 152.539062 167.230469 152.539062 C 167.347656 152.539062 167.441406 152.445312 167.441406 152.328125 Z M 167.441406 152.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.050781 153.042969 C 170.050781 152.925781 169.957031 152.832031 169.839844 152.832031 C 169.722656 152.832031 169.628906 152.925781 169.628906 153.042969 C 169.628906 153.160156 169.722656 153.253906 169.839844 153.253906 C 169.957031 153.253906 170.050781 153.160156 170.050781 153.042969 Z M 170.050781 153.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.996094 153.648438 C 169.996094 153.53125 169.902344 153.4375 169.785156 153.4375 C 169.667969 153.4375 169.574219 153.53125 169.574219 153.648438 C 169.574219 153.765625 169.667969 153.859375 169.785156 153.859375 C 169.902344 153.859375 169.996094 153.765625 169.996094 153.648438 Z M 169.996094 153.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.980469 153.257812 C 168.980469 153.140625 168.886719 153.046875 168.769531 153.046875 C 168.652344 153.046875 168.558594 153.140625 168.558594 153.257812 C 168.558594 153.375 168.652344 153.46875 168.769531 153.46875 C 168.886719 153.46875 168.980469 153.375 168.980469 153.257812 Z M 168.980469 153.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.644531 153.980469 C 167.644531 153.863281 167.550781 153.769531 167.433594 153.769531 C 167.316406 153.769531 167.222656 153.863281 167.222656 153.980469 C 167.222656 154.097656 167.316406 154.191406 167.433594 154.191406 C 167.550781 154.191406 167.644531 154.097656 167.644531 153.980469 Z M 167.644531 153.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.742188 155.585938 C 165.742188 155.46875 165.648438 155.375 165.53125 155.375 C 165.414062 155.375 165.320312 155.46875 165.320312 155.585938 C 165.320312 155.703125 165.414062 155.796875 165.53125 155.796875 C 165.648438 155.796875 165.742188 155.703125 165.742188 155.585938 Z M 165.742188 155.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.917969 155.296875 C 163.917969 155.179688 163.824219 155.085938 163.707031 155.085938 C 163.589844 155.085938 163.496094 155.179688 163.496094 155.296875 C 163.496094 155.414062 163.589844 155.507812 163.707031 155.507812 C 163.824219 155.507812 163.917969 155.414062 163.917969 155.296875 Z M 163.917969 155.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.1875 156.339844 C 161.1875 156.222656 161.09375 156.128906 160.976562 156.128906 C 160.859375 156.128906 160.765625 156.222656 160.765625 156.339844 C 160.765625 156.457031 160.859375 156.550781 160.976562 156.550781 C 161.09375 156.550781 161.1875 156.457031 161.1875 156.339844 Z M 161.1875 156.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.425781 157.316406 C 162.425781 157.199219 162.332031 157.105469 162.214844 157.105469 C 162.097656 157.105469 162.003906 157.199219 162.003906 157.316406 C 162.003906 157.433594 162.097656 157.527344 162.214844 157.527344 C 162.332031 157.527344 162.425781 157.433594 162.425781 157.316406 Z M 162.425781 157.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.277344 157.347656 C 164.277344 157.230469 164.183594 157.136719 164.066406 157.136719 C 163.949219 157.136719 163.855469 157.230469 163.855469 157.347656 C 163.855469 157.464844 163.949219 157.558594 164.066406 157.558594 C 164.183594 157.558594 164.277344 157.464844 164.277344 157.347656 Z M 164.277344 157.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.988281 157.070312 C 164.988281 156.953125 164.894531 156.859375 164.777344 156.859375 C 164.660156 156.859375 164.566406 156.953125 164.566406 157.070312 C 164.566406 157.1875 164.660156 157.28125 164.777344 157.28125 C 164.894531 157.28125 164.988281 157.1875 164.988281 157.070312 Z M 164.988281 157.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.792969 156 C 166.792969 155.882812 166.699219 155.789062 166.582031 155.789062 C 166.464844 155.789062 166.371094 155.882812 166.371094 156 C 166.371094 156.117188 166.464844 156.210938 166.582031 156.210938 C 166.699219 156.210938 166.792969 156.117188 166.792969 156 Z M 166.792969 156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.65625 156.117188 C 169.65625 156 169.5625 155.90625 169.445312 155.90625 C 169.328125 155.90625 169.234375 156 169.234375 156.117188 C 169.234375 156.234375 169.328125 156.328125 169.445312 156.328125 C 169.5625 156.328125 169.65625 156.234375 169.65625 156.117188 Z M 169.65625 156.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.695312 160.355469 C 170.695312 160.238281 170.601562 160.144531 170.484375 160.144531 C 170.367188 160.144531 170.273438 160.238281 170.273438 160.355469 C 170.273438 160.472656 170.367188 160.566406 170.484375 160.566406 C 170.601562 160.566406 170.695312 160.472656 170.695312 160.355469 Z M 170.695312 160.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.941406 158.007812 C 171.941406 157.890625 171.847656 157.796875 171.730469 157.796875 C 171.613281 157.796875 171.519531 157.890625 171.519531 158.007812 C 171.519531 158.125 171.613281 158.21875 171.730469 158.21875 C 171.847656 158.21875 171.941406 158.125 171.941406 158.007812 Z M 171.941406 158.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.574219 155.097656 C 168.574219 154.980469 168.480469 154.886719 168.363281 154.886719 C 168.246094 154.886719 168.152344 154.980469 168.152344 155.097656 C 168.152344 155.214844 168.246094 155.308594 168.363281 155.308594 C 168.480469 155.308594 168.574219 155.214844 168.574219 155.097656 Z M 168.574219 155.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.921875 155.152344 C 168.921875 155.035156 168.828125 154.941406 168.710938 154.941406 C 168.59375 154.941406 168.5 155.035156 168.5 155.152344 C 168.5 155.269531 168.59375 155.363281 168.710938 155.363281 C 168.828125 155.363281 168.921875 155.269531 168.921875 155.152344 Z M 168.921875 155.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.757812 156.453125 C 172.757812 156.335938 172.664062 156.242188 172.546875 156.242188 C 172.429688 156.242188 172.335938 156.335938 172.335938 156.453125 C 172.335938 156.570312 172.429688 156.664062 172.546875 156.664062 C 172.664062 156.664062 172.757812 156.570312 172.757812 156.453125 Z M 172.757812 156.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.828125 154.355469 C 174.828125 154.238281 174.734375 154.144531 174.617188 154.144531 C 174.5 154.144531 174.40625 154.238281 174.40625 154.355469 C 174.40625 154.472656 174.5 154.566406 174.617188 154.566406 C 174.734375 154.566406 174.828125 154.472656 174.828125 154.355469 Z M 174.828125 154.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.046875 152.203125 C 175.046875 152.085938 174.953125 151.992188 174.835938 151.992188 C 174.71875 151.992188 174.625 152.085938 174.625 152.203125 C 174.625 152.320312 174.71875 152.414062 174.835938 152.414062 C 174.953125 152.414062 175.046875 152.320312 175.046875 152.203125 Z M 175.046875 152.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.238281 151.929688 C 176.238281 151.8125 176.144531 151.71875 176.027344 151.71875 C 175.910156 151.71875 175.816406 151.8125 175.816406 151.929688 C 175.816406 152.046875 175.910156 152.140625 176.027344 152.140625 C 176.144531 152.140625 176.238281 152.046875 176.238281 151.929688 Z M 176.238281 151.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.933594 151.953125 C 174.933594 151.835938 174.839844 151.742188 174.722656 151.742188 C 174.605469 151.742188 174.511719 151.835938 174.511719 151.953125 C 174.511719 152.070312 174.605469 152.164062 174.722656 152.164062 C 174.839844 152.164062 174.933594 152.070312 174.933594 151.953125 Z M 174.933594 151.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.117188 151.203125 C 177.117188 151.085938 177.023438 150.992188 176.90625 150.992188 C 176.789062 150.992188 176.695312 151.085938 176.695312 151.203125 C 176.695312 151.320312 176.789062 151.414062 176.90625 151.414062 C 177.023438 151.414062 177.117188 151.320312 177.117188 151.203125 Z M 177.117188 151.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.207031 149.910156 C 177.207031 149.792969 177.113281 149.699219 176.996094 149.699219 C 176.878906 149.699219 176.785156 149.792969 176.785156 149.910156 C 176.785156 150.027344 176.878906 150.121094 176.996094 150.121094 C 177.113281 150.121094 177.207031 150.027344 177.207031 149.910156 Z M 177.207031 149.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.4375 152.390625 C 178.4375 152.273438 178.34375 152.179688 178.226562 152.179688 C 178.109375 152.179688 178.015625 152.273438 178.015625 152.390625 C 178.015625 152.507812 178.109375 152.601562 178.226562 152.601562 C 178.34375 152.601562 178.4375 152.507812 178.4375 152.390625 Z M 178.4375 152.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.921875 152.742188 C 175.921875 152.625 175.828125 152.53125 175.710938 152.53125 C 175.59375 152.53125 175.5 152.625 175.5 152.742188 C 175.5 152.859375 175.59375 152.953125 175.710938 152.953125 C 175.828125 152.953125 175.921875 152.859375 175.921875 152.742188 Z M 175.921875 152.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.296875 154.910156 C 176.296875 154.792969 176.203125 154.699219 176.085938 154.699219 C 175.96875 154.699219 175.875 154.792969 175.875 154.910156 C 175.875 155.027344 175.96875 155.121094 176.085938 155.121094 C 176.203125 155.121094 176.296875 155.027344 176.296875 154.910156 Z M 176.296875 154.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.785156 158.3125 C 174.785156 158.195312 174.691406 158.101562 174.574219 158.101562 C 174.457031 158.101562 174.363281 158.195312 174.363281 158.3125 C 174.363281 158.429688 174.457031 158.523438 174.574219 158.523438 C 174.691406 158.523438 174.785156 158.429688 174.785156 158.3125 Z M 174.785156 158.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.164062 154.238281 C 175.164062 154.121094 175.070312 154.027344 174.953125 154.027344 C 174.835938 154.027344 174.742188 154.121094 174.742188 154.238281 C 174.742188 154.355469 174.835938 154.449219 174.953125 154.449219 C 175.070312 154.449219 175.164062 154.355469 175.164062 154.238281 Z M 175.164062 154.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.863281 151.710938 C 173.863281 151.59375 173.769531 151.5 173.652344 151.5 C 173.535156 151.5 173.441406 151.59375 173.441406 151.710938 C 173.441406 151.828125 173.535156 151.921875 173.652344 151.921875 C 173.769531 151.921875 173.863281 151.828125 173.863281 151.710938 Z M 173.863281 151.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.082031 154.148438 C 176.082031 154.03125 175.988281 153.9375 175.871094 153.9375 C 175.753906 153.9375 175.660156 154.03125 175.660156 154.148438 C 175.660156 154.265625 175.753906 154.359375 175.871094 154.359375 C 175.988281 154.359375 176.082031 154.265625 176.082031 154.148438 Z M 176.082031 154.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.5 151.878906 C 179.5 151.761719 179.40625 151.667969 179.289062 151.667969 C 179.171875 151.667969 179.078125 151.761719 179.078125 151.878906 C 179.078125 151.996094 179.171875 152.089844 179.289062 152.089844 C 179.40625 152.089844 179.5 151.996094 179.5 151.878906 Z M 179.5 151.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.566406 150.535156 C 179.566406 150.417969 179.472656 150.324219 179.355469 150.324219 C 179.238281 150.324219 179.144531 150.417969 179.144531 150.535156 C 179.144531 150.652344 179.238281 150.746094 179.355469 150.746094 C 179.472656 150.746094 179.566406 150.652344 179.566406 150.535156 Z M 179.566406 150.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.546875 148.195312 C 178.546875 148.078125 178.453125 147.984375 178.335938 147.984375 C 178.21875 147.984375 178.125 148.078125 178.125 148.195312 C 178.125 148.3125 178.21875 148.40625 178.335938 148.40625 C 178.453125 148.40625 178.546875 148.3125 178.546875 148.195312 Z M 178.546875 148.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.023438 146.980469 C 177.023438 146.863281 176.929688 146.769531 176.8125 146.769531 C 176.695312 146.769531 176.601562 146.863281 176.601562 146.980469 C 176.601562 147.097656 176.695312 147.191406 176.8125 147.191406 C 176.929688 147.191406 177.023438 147.097656 177.023438 146.980469 Z M 177.023438 146.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.855469 145.394531 C 179.855469 145.277344 179.761719 145.183594 179.644531 145.183594 C 179.527344 145.183594 179.433594 145.277344 179.433594 145.394531 C 179.433594 145.511719 179.527344 145.605469 179.644531 145.605469 C 179.761719 145.605469 179.855469 145.511719 179.855469 145.394531 Z M 179.855469 145.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.191406 142.015625 C 177.191406 141.898438 177.097656 141.804688 176.980469 141.804688 C 176.863281 141.804688 176.769531 141.898438 176.769531 142.015625 C 176.769531 142.132812 176.863281 142.226562 176.980469 142.226562 C 177.097656 142.226562 177.191406 142.132812 177.191406 142.015625 Z M 177.191406 142.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.292969 147.222656 C 178.292969 147.105469 178.199219 147.011719 178.082031 147.011719 C 177.964844 147.011719 177.871094 147.105469 177.871094 147.222656 C 177.871094 147.339844 177.964844 147.433594 178.082031 147.433594 C 178.199219 147.433594 178.292969 147.339844 178.292969 147.222656 Z M 178.292969 147.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.925781 154.835938 C 178.925781 154.71875 178.832031 154.625 178.714844 154.625 C 178.597656 154.625 178.503906 154.71875 178.503906 154.835938 C 178.503906 154.953125 178.597656 155.046875 178.714844 155.046875 C 178.832031 155.046875 178.925781 154.953125 178.925781 154.835938 Z M 178.925781 154.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.558594 155.054688 C 175.558594 154.9375 175.464844 154.84375 175.347656 154.84375 C 175.230469 154.84375 175.136719 154.9375 175.136719 155.054688 C 175.136719 155.171875 175.230469 155.265625 175.347656 155.265625 C 175.464844 155.265625 175.558594 155.171875 175.558594 155.054688 Z M 175.558594 155.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.191406 159.460938 C 175.191406 159.34375 175.097656 159.25 174.980469 159.25 C 174.863281 159.25 174.769531 159.34375 174.769531 159.460938 C 174.769531 159.578125 174.863281 159.671875 174.980469 159.671875 C 175.097656 159.671875 175.191406 159.578125 175.191406 159.460938 Z M 175.191406 159.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.722656 162.007812 C 171.722656 161.890625 171.628906 161.796875 171.511719 161.796875 C 171.394531 161.796875 171.300781 161.890625 171.300781 162.007812 C 171.300781 162.125 171.394531 162.21875 171.511719 162.21875 C 171.628906 162.21875 171.722656 162.125 171.722656 162.007812 Z M 171.722656 162.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.882812 159.226562 C 171.882812 159.109375 171.789062 159.015625 171.671875 159.015625 C 171.554688 159.015625 171.460938 159.109375 171.460938 159.226562 C 171.460938 159.34375 171.554688 159.4375 171.671875 159.4375 C 171.789062 159.4375 171.882812 159.34375 171.882812 159.226562 Z M 171.882812 159.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.0625 157.210938 C 172.0625 157.09375 171.96875 157 171.851562 157 C 171.734375 157 171.640625 157.09375 171.640625 157.210938 C 171.640625 157.328125 171.734375 157.421875 171.851562 157.421875 C 171.96875 157.421875 172.0625 157.328125 172.0625 157.210938 Z M 172.0625 157.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.671875 157.46875 C 175.671875 157.351562 175.578125 157.257812 175.460938 157.257812 C 175.34375 157.257812 175.25 157.351562 175.25 157.46875 C 175.25 157.585938 175.34375 157.679688 175.460938 157.679688 C 175.578125 157.679688 175.671875 157.585938 175.671875 157.46875 Z M 175.671875 157.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.425781 157.574219 C 173.425781 157.457031 173.332031 157.363281 173.214844 157.363281 C 173.097656 157.363281 173.003906 157.457031 173.003906 157.574219 C 173.003906 157.691406 173.097656 157.785156 173.214844 157.785156 C 173.332031 157.785156 173.425781 157.691406 173.425781 157.574219 Z M 173.425781 157.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.875 156.324219 C 171.875 156.207031 171.78125 156.113281 171.664062 156.113281 C 171.546875 156.113281 171.453125 156.207031 171.453125 156.324219 C 171.453125 156.441406 171.546875 156.535156 171.664062 156.535156 C 171.78125 156.535156 171.875 156.441406 171.875 156.324219 Z M 171.875 156.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.414062 158.390625 C 173.414062 158.273438 173.320312 158.179688 173.203125 158.179688 C 173.085938 158.179688 172.992188 158.273438 172.992188 158.390625 C 172.992188 158.507812 173.085938 158.601562 173.203125 158.601562 C 173.320312 158.601562 173.414062 158.507812 173.414062 158.390625 Z M 173.414062 158.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.164062 155.058594 C 173.164062 154.941406 173.070312 154.847656 172.953125 154.847656 C 172.835938 154.847656 172.742188 154.941406 172.742188 155.058594 C 172.742188 155.175781 172.835938 155.269531 172.953125 155.269531 C 173.070312 155.269531 173.164062 155.175781 173.164062 155.058594 Z M 173.164062 155.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.613281 159.503906 C 174.613281 159.386719 174.519531 159.292969 174.402344 159.292969 C 174.285156 159.292969 174.191406 159.386719 174.191406 159.503906 C 174.191406 159.621094 174.285156 159.714844 174.402344 159.714844 C 174.519531 159.714844 174.613281 159.621094 174.613281 159.503906 Z M 174.613281 159.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.792969 159.835938 C 178.792969 159.71875 178.699219 159.625 178.582031 159.625 C 178.464844 159.625 178.371094 159.71875 178.371094 159.835938 C 178.371094 159.953125 178.464844 160.046875 178.582031 160.046875 C 178.699219 160.046875 178.792969 159.953125 178.792969 159.835938 Z M 178.792969 159.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.222656 160.46875 C 179.222656 160.351562 179.128906 160.257812 179.011719 160.257812 C 178.894531 160.257812 178.800781 160.351562 178.800781 160.46875 C 178.800781 160.585938 178.894531 160.679688 179.011719 160.679688 C 179.128906 160.679688 179.222656 160.585938 179.222656 160.46875 Z M 179.222656 160.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.199219 159.914062 C 175.199219 159.796875 175.105469 159.703125 174.988281 159.703125 C 174.871094 159.703125 174.777344 159.796875 174.777344 159.914062 C 174.777344 160.03125 174.871094 160.125 174.988281 160.125 C 175.105469 160.125 175.199219 160.03125 175.199219 159.914062 Z M 175.199219 159.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.5 157.144531 C 172.5 157.027344 172.40625 156.933594 172.289062 156.933594 C 172.171875 156.933594 172.078125 157.027344 172.078125 157.144531 C 172.078125 157.261719 172.171875 157.355469 172.289062 157.355469 C 172.40625 157.355469 172.5 157.261719 172.5 157.144531 Z M 172.5 157.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.148438 155.753906 C 169.148438 155.636719 169.054688 155.542969 168.9375 155.542969 C 168.820312 155.542969 168.726562 155.636719 168.726562 155.753906 C 168.726562 155.871094 168.820312 155.964844 168.9375 155.964844 C 169.054688 155.964844 169.148438 155.871094 169.148438 155.753906 Z M 169.148438 155.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.671875 156.898438 C 169.671875 156.78125 169.578125 156.6875 169.460938 156.6875 C 169.34375 156.6875 169.25 156.78125 169.25 156.898438 C 169.25 157.015625 169.34375 157.109375 169.460938 157.109375 C 169.578125 157.109375 169.671875 157.015625 169.671875 156.898438 Z M 169.671875 156.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.519531 155.363281 C 174.519531 155.246094 174.425781 155.152344 174.308594 155.152344 C 174.191406 155.152344 174.097656 155.246094 174.097656 155.363281 C 174.097656 155.480469 174.191406 155.574219 174.308594 155.574219 C 174.425781 155.574219 174.519531 155.480469 174.519531 155.363281 Z M 174.519531 155.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.265625 153.011719 C 173.265625 152.894531 173.171875 152.800781 173.054688 152.800781 C 172.9375 152.800781 172.84375 152.894531 172.84375 153.011719 C 172.84375 153.128906 172.9375 153.222656 173.054688 153.222656 C 173.171875 153.222656 173.265625 153.128906 173.265625 153.011719 Z M 173.265625 153.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.9375 152.398438 C 171.9375 152.28125 171.84375 152.1875 171.726562 152.1875 C 171.609375 152.1875 171.515625 152.28125 171.515625 152.398438 C 171.515625 152.515625 171.609375 152.609375 171.726562 152.609375 C 171.84375 152.609375 171.9375 152.515625 171.9375 152.398438 Z M 171.9375 152.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.054688 151.148438 C 173.054688 151.03125 172.960938 150.9375 172.84375 150.9375 C 172.726562 150.9375 172.632812 151.03125 172.632812 151.148438 C 172.632812 151.265625 172.726562 151.359375 172.84375 151.359375 C 172.960938 151.359375 173.054688 151.265625 173.054688 151.148438 Z M 173.054688 151.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.121094 150.386719 C 174.121094 150.269531 174.027344 150.175781 173.910156 150.175781 C 173.792969 150.175781 173.699219 150.269531 173.699219 150.386719 C 173.699219 150.503906 173.792969 150.597656 173.910156 150.597656 C 174.027344 150.597656 174.121094 150.503906 174.121094 150.386719 Z M 174.121094 150.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.929688 149.710938 C 173.929688 149.59375 173.835938 149.5 173.71875 149.5 C 173.601562 149.5 173.507812 149.59375 173.507812 149.710938 C 173.507812 149.828125 173.601562 149.921875 173.71875 149.921875 C 173.835938 149.921875 173.929688 149.828125 173.929688 149.710938 Z M 173.929688 149.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.964844 153.777344 C 175.964844 153.660156 175.871094 153.566406 175.753906 153.566406 C 175.636719 153.566406 175.542969 153.660156 175.542969 153.777344 C 175.542969 153.894531 175.636719 153.988281 175.753906 153.988281 C 175.871094 153.988281 175.964844 153.894531 175.964844 153.777344 Z M 175.964844 153.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.992188 154.78125 C 176.992188 154.664062 176.898438 154.570312 176.78125 154.570312 C 176.664062 154.570312 176.570312 154.664062 176.570312 154.78125 C 176.570312 154.898438 176.664062 154.992188 176.78125 154.992188 C 176.898438 154.992188 176.992188 154.898438 176.992188 154.78125 Z M 176.992188 154.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.304688 157.617188 C 176.304688 157.5 176.210938 157.40625 176.09375 157.40625 C 175.976562 157.40625 175.882812 157.5 175.882812 157.617188 C 175.882812 157.734375 175.976562 157.828125 176.09375 157.828125 C 176.210938 157.828125 176.304688 157.734375 176.304688 157.617188 Z M 176.304688 157.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.519531 158.585938 C 179.519531 158.46875 179.425781 158.375 179.308594 158.375 C 179.191406 158.375 179.097656 158.46875 179.097656 158.585938 C 179.097656 158.703125 179.191406 158.796875 179.308594 158.796875 C 179.425781 158.796875 179.519531 158.703125 179.519531 158.585938 Z M 179.519531 158.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.457031 154.375 C 177.457031 154.257812 177.363281 154.164062 177.246094 154.164062 C 177.128906 154.164062 177.035156 154.257812 177.035156 154.375 C 177.035156 154.492188 177.128906 154.585938 177.246094 154.585938 C 177.363281 154.585938 177.457031 154.492188 177.457031 154.375 Z M 177.457031 154.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.449219 151.75 C 176.449219 151.632812 176.355469 151.539062 176.238281 151.539062 C 176.121094 151.539062 176.027344 151.632812 176.027344 151.75 C 176.027344 151.867188 176.121094 151.960938 176.238281 151.960938 C 176.355469 151.960938 176.449219 151.867188 176.449219 151.75 Z M 176.449219 151.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.539062 152.40625 C 178.539062 152.289062 178.445312 152.195312 178.328125 152.195312 C 178.210938 152.195312 178.117188 152.289062 178.117188 152.40625 C 178.117188 152.523438 178.210938 152.617188 178.328125 152.617188 C 178.445312 152.617188 178.539062 152.523438 178.539062 152.40625 Z M 178.539062 152.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.5 154.285156 C 178.5 154.167969 178.40625 154.074219 178.289062 154.074219 C 178.171875 154.074219 178.078125 154.167969 178.078125 154.285156 C 178.078125 154.402344 178.171875 154.496094 178.289062 154.496094 C 178.40625 154.496094 178.5 154.402344 178.5 154.285156 Z M 178.5 154.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.636719 156.054688 C 182.636719 155.9375 182.542969 155.84375 182.425781 155.84375 C 182.308594 155.84375 182.214844 155.9375 182.214844 156.054688 C 182.214844 156.171875 182.308594 156.265625 182.425781 156.265625 C 182.542969 156.265625 182.636719 156.171875 182.636719 156.054688 Z M 182.636719 156.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.164062 153.234375 C 182.164062 153.117188 182.070312 153.023438 181.953125 153.023438 C 181.835938 153.023438 181.742188 153.117188 181.742188 153.234375 C 181.742188 153.351562 181.835938 153.445312 181.953125 153.445312 C 182.070312 153.445312 182.164062 153.351562 182.164062 153.234375 Z M 182.164062 153.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.632812 154.617188 C 181.632812 154.5 181.539062 154.40625 181.421875 154.40625 C 181.304688 154.40625 181.210938 154.5 181.210938 154.617188 C 181.210938 154.734375 181.304688 154.828125 181.421875 154.828125 C 181.539062 154.828125 181.632812 154.734375 181.632812 154.617188 Z M 181.632812 154.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.125 154.195312 C 185.125 154.078125 185.03125 153.984375 184.914062 153.984375 C 184.796875 153.984375 184.703125 154.078125 184.703125 154.195312 C 184.703125 154.3125 184.796875 154.40625 184.914062 154.40625 C 185.03125 154.40625 185.125 154.3125 185.125 154.195312 Z M 185.125 154.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.546875 155.472656 C 182.546875 155.355469 182.453125 155.261719 182.335938 155.261719 C 182.21875 155.261719 182.125 155.355469 182.125 155.472656 C 182.125 155.589844 182.21875 155.683594 182.335938 155.683594 C 182.453125 155.683594 182.546875 155.589844 182.546875 155.472656 Z M 182.546875 155.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.214844 158.820312 C 183.214844 158.703125 183.121094 158.609375 183.003906 158.609375 C 182.886719 158.609375 182.792969 158.703125 182.792969 158.820312 C 182.792969 158.9375 182.886719 159.03125 183.003906 159.03125 C 183.121094 159.03125 183.214844 158.9375 183.214844 158.820312 Z M 183.214844 158.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.4375 162.753906 C 181.4375 162.636719 181.34375 162.542969 181.226562 162.542969 C 181.109375 162.542969 181.015625 162.636719 181.015625 162.753906 C 181.015625 162.871094 181.109375 162.964844 181.226562 162.964844 C 181.34375 162.964844 181.4375 162.871094 181.4375 162.753906 Z M 181.4375 162.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.777344 161.128906 C 182.777344 161.011719 182.683594 160.917969 182.566406 160.917969 C 182.449219 160.917969 182.355469 161.011719 182.355469 161.128906 C 182.355469 161.246094 182.449219 161.339844 182.566406 161.339844 C 182.683594 161.339844 182.777344 161.246094 182.777344 161.128906 Z M 182.777344 161.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.65625 160.300781 C 182.65625 160.183594 182.5625 160.089844 182.445312 160.089844 C 182.328125 160.089844 182.234375 160.183594 182.234375 160.300781 C 182.234375 160.417969 182.328125 160.511719 182.445312 160.511719 C 182.5625 160.511719 182.65625 160.417969 182.65625 160.300781 Z M 182.65625 160.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.742188 158.101562 C 182.742188 157.984375 182.648438 157.890625 182.53125 157.890625 C 182.414062 157.890625 182.320312 157.984375 182.320312 158.101562 C 182.320312 158.21875 182.414062 158.3125 182.53125 158.3125 C 182.648438 158.3125 182.742188 158.21875 182.742188 158.101562 Z M 182.742188 158.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.324219 162.863281 C 186.324219 162.746094 186.230469 162.652344 186.113281 162.652344 C 185.996094 162.652344 185.902344 162.746094 185.902344 162.863281 C 185.902344 162.980469 185.996094 163.074219 186.113281 163.074219 C 186.230469 163.074219 186.324219 162.980469 186.324219 162.863281 Z M 186.324219 162.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.292969 160.417969 C 188.292969 160.300781 188.199219 160.207031 188.082031 160.207031 C 187.964844 160.207031 187.871094 160.300781 187.871094 160.417969 C 187.871094 160.535156 187.964844 160.628906 188.082031 160.628906 C 188.199219 160.628906 188.292969 160.535156 188.292969 160.417969 Z M 188.292969 160.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.96875 163.363281 C 181.96875 163.246094 181.875 163.152344 181.757812 163.152344 C 181.640625 163.152344 181.546875 163.246094 181.546875 163.363281 C 181.546875 163.480469 181.640625 163.574219 181.757812 163.574219 C 181.875 163.574219 181.96875 163.480469 181.96875 163.363281 Z M 181.96875 163.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.59375 166.742188 C 182.59375 166.625 182.5 166.53125 182.382812 166.53125 C 182.265625 166.53125 182.171875 166.625 182.171875 166.742188 C 182.171875 166.859375 182.265625 166.953125 182.382812 166.953125 C 182.5 166.953125 182.59375 166.859375 182.59375 166.742188 Z M 182.59375 166.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.695312 168.664062 C 178.695312 168.546875 178.601562 168.453125 178.484375 168.453125 C 178.367188 168.453125 178.273438 168.546875 178.273438 168.664062 C 178.273438 168.78125 178.367188 168.875 178.484375 168.875 C 178.601562 168.875 178.695312 168.78125 178.695312 168.664062 Z M 178.695312 168.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.257812 166.550781 C 179.257812 166.433594 179.164062 166.339844 179.046875 166.339844 C 178.929688 166.339844 178.835938 166.433594 178.835938 166.550781 C 178.835938 166.667969 178.929688 166.761719 179.046875 166.761719 C 179.164062 166.761719 179.257812 166.667969 179.257812 166.550781 Z M 179.257812 166.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.492188 171.617188 C 179.492188 171.5 179.398438 171.40625 179.28125 171.40625 C 179.164062 171.40625 179.070312 171.5 179.070312 171.617188 C 179.070312 171.734375 179.164062 171.828125 179.28125 171.828125 C 179.398438 171.828125 179.492188 171.734375 179.492188 171.617188 Z M 179.492188 171.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.691406 170.167969 C 179.691406 170.050781 179.597656 169.957031 179.480469 169.957031 C 179.363281 169.957031 179.269531 170.050781 179.269531 170.167969 C 179.269531 170.285156 179.363281 170.378906 179.480469 170.378906 C 179.597656 170.378906 179.691406 170.285156 179.691406 170.167969 Z M 179.691406 170.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.109375 170.785156 C 179.109375 170.667969 179.015625 170.574219 178.898438 170.574219 C 178.78125 170.574219 178.6875 170.667969 178.6875 170.785156 C 178.6875 170.902344 178.78125 170.996094 178.898438 170.996094 C 179.015625 170.996094 179.109375 170.902344 179.109375 170.785156 Z M 179.109375 170.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.171875 172.472656 C 181.171875 172.355469 181.078125 172.261719 180.960938 172.261719 C 180.84375 172.261719 180.75 172.355469 180.75 172.472656 C 180.75 172.589844 180.84375 172.683594 180.960938 172.683594 C 181.078125 172.683594 181.171875 172.589844 181.171875 172.472656 Z M 181.171875 172.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.640625 167.882812 C 181.640625 167.765625 181.546875 167.671875 181.429688 167.671875 C 181.3125 167.671875 181.21875 167.765625 181.21875 167.882812 C 181.21875 168 181.3125 168.09375 181.429688 168.09375 C 181.546875 168.09375 181.640625 168 181.640625 167.882812 Z M 181.640625 167.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.730469 168.378906 C 180.730469 168.261719 180.636719 168.167969 180.519531 168.167969 C 180.402344 168.167969 180.308594 168.261719 180.308594 168.378906 C 180.308594 168.496094 180.402344 168.589844 180.519531 168.589844 C 180.636719 168.589844 180.730469 168.496094 180.730469 168.378906 Z M 180.730469 168.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.972656 168.722656 C 180.972656 168.605469 180.878906 168.511719 180.761719 168.511719 C 180.644531 168.511719 180.550781 168.605469 180.550781 168.722656 C 180.550781 168.839844 180.644531 168.933594 180.761719 168.933594 C 180.878906 168.933594 180.972656 168.839844 180.972656 168.722656 Z M 180.972656 168.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.371094 166.707031 C 183.371094 166.589844 183.277344 166.496094 183.160156 166.496094 C 183.042969 166.496094 182.949219 166.589844 182.949219 166.707031 C 182.949219 166.824219 183.042969 166.917969 183.160156 166.917969 C 183.277344 166.917969 183.371094 166.824219 183.371094 166.707031 Z M 183.371094 166.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.058594 166.960938 C 183.058594 166.84375 182.964844 166.75 182.847656 166.75 C 182.730469 166.75 182.636719 166.84375 182.636719 166.960938 C 182.636719 167.078125 182.730469 167.171875 182.847656 167.171875 C 182.964844 167.171875 183.058594 167.078125 183.058594 166.960938 Z M 183.058594 166.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.773438 166.613281 C 177.773438 166.496094 177.679688 166.402344 177.5625 166.402344 C 177.445312 166.402344 177.351562 166.496094 177.351562 166.613281 C 177.351562 166.730469 177.445312 166.824219 177.5625 166.824219 C 177.679688 166.824219 177.773438 166.730469 177.773438 166.613281 Z M 177.773438 166.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.25 168.929688 C 179.25 168.8125 179.15625 168.71875 179.039062 168.71875 C 178.921875 168.71875 178.828125 168.8125 178.828125 168.929688 C 178.828125 169.046875 178.921875 169.140625 179.039062 169.140625 C 179.15625 169.140625 179.25 169.046875 179.25 168.929688 Z M 179.25 168.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.265625 170.976562 C 183.265625 170.859375 183.171875 170.765625 183.054688 170.765625 C 182.9375 170.765625 182.84375 170.859375 182.84375 170.976562 C 182.84375 171.09375 182.9375 171.1875 183.054688 171.1875 C 183.171875 171.1875 183.265625 171.09375 183.265625 170.976562 Z M 183.265625 170.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.789062 169.847656 C 178.789062 169.730469 178.695312 169.636719 178.578125 169.636719 C 178.460938 169.636719 178.367188 169.730469 178.367188 169.847656 C 178.367188 169.964844 178.460938 170.058594 178.578125 170.058594 C 178.695312 170.058594 178.789062 169.964844 178.789062 169.847656 Z M 178.789062 169.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.210938 167.769531 C 181.210938 167.652344 181.117188 167.558594 181 167.558594 C 180.882812 167.558594 180.789062 167.652344 180.789062 167.769531 C 180.789062 167.886719 180.882812 167.980469 181 167.980469 C 181.117188 167.980469 181.210938 167.886719 181.210938 167.769531 Z M 181.210938 167.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.425781 167.640625 C 180.425781 167.523438 180.332031 167.429688 180.214844 167.429688 C 180.097656 167.429688 180.003906 167.523438 180.003906 167.640625 C 180.003906 167.757812 180.097656 167.851562 180.214844 167.851562 C 180.332031 167.851562 180.425781 167.757812 180.425781 167.640625 Z M 180.425781 167.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.378906 169.632812 C 182.378906 169.515625 182.285156 169.421875 182.167969 169.421875 C 182.050781 169.421875 181.957031 169.515625 181.957031 169.632812 C 181.957031 169.75 182.050781 169.84375 182.167969 169.84375 C 182.285156 169.84375 182.378906 169.75 182.378906 169.632812 Z M 182.378906 169.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.402344 167.765625 C 181.402344 167.648438 181.308594 167.554688 181.191406 167.554688 C 181.074219 167.554688 180.980469 167.648438 180.980469 167.765625 C 180.980469 167.882812 181.074219 167.976562 181.191406 167.976562 C 181.308594 167.976562 181.402344 167.882812 181.402344 167.765625 Z M 181.402344 167.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.355469 168.972656 C 178.355469 168.855469 178.261719 168.761719 178.144531 168.761719 C 178.027344 168.761719 177.933594 168.855469 177.933594 168.972656 C 177.933594 169.089844 178.027344 169.183594 178.144531 169.183594 C 178.261719 169.183594 178.355469 169.089844 178.355469 168.972656 Z M 178.355469 168.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.492188 170.664062 C 174.492188 170.546875 174.398438 170.453125 174.28125 170.453125 C 174.164062 170.453125 174.070312 170.546875 174.070312 170.664062 C 174.070312 170.78125 174.164062 170.875 174.28125 170.875 C 174.398438 170.875 174.492188 170.78125 174.492188 170.664062 Z M 174.492188 170.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.179688 171.890625 C 172.179688 171.773438 172.085938 171.679688 171.96875 171.679688 C 171.851562 171.679688 171.757812 171.773438 171.757812 171.890625 C 171.757812 172.007812 171.851562 172.101562 171.96875 172.101562 C 172.085938 172.101562 172.179688 172.007812 172.179688 171.890625 Z M 172.179688 171.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.800781 174.8125 C 172.800781 174.695312 172.707031 174.601562 172.589844 174.601562 C 172.472656 174.601562 172.378906 174.695312 172.378906 174.8125 C 172.378906 174.929688 172.472656 175.023438 172.589844 175.023438 C 172.707031 175.023438 172.800781 174.929688 172.800781 174.8125 Z M 172.800781 174.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.226562 177.113281 C 172.226562 176.996094 172.132812 176.902344 172.015625 176.902344 C 171.898438 176.902344 171.804688 176.996094 171.804688 177.113281 C 171.804688 177.230469 171.898438 177.324219 172.015625 177.324219 C 172.132812 177.324219 172.226562 177.230469 172.226562 177.113281 Z M 172.226562 177.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.792969 178.992188 C 171.792969 178.875 171.699219 178.78125 171.582031 178.78125 C 171.464844 178.78125 171.371094 178.875 171.371094 178.992188 C 171.371094 179.109375 171.464844 179.203125 171.582031 179.203125 C 171.699219 179.203125 171.792969 179.109375 171.792969 178.992188 Z M 171.792969 178.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.332031 179.492188 C 173.332031 179.375 173.238281 179.28125 173.121094 179.28125 C 173.003906 179.28125 172.910156 179.375 172.910156 179.492188 C 172.910156 179.609375 173.003906 179.703125 173.121094 179.703125 C 173.238281 179.703125 173.332031 179.609375 173.332031 179.492188 Z M 173.332031 179.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.523438 179.757812 C 172.523438 179.640625 172.429688 179.546875 172.3125 179.546875 C 172.195312 179.546875 172.101562 179.640625 172.101562 179.757812 C 172.101562 179.875 172.195312 179.96875 172.3125 179.96875 C 172.429688 179.96875 172.523438 179.875 172.523438 179.757812 Z M 172.523438 179.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.542969 180.359375 C 170.542969 180.242188 170.449219 180.148438 170.332031 180.148438 C 170.214844 180.148438 170.121094 180.242188 170.121094 180.359375 C 170.121094 180.476562 170.214844 180.570312 170.332031 180.570312 C 170.449219 180.570312 170.542969 180.476562 170.542969 180.359375 Z M 170.542969 180.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.867188 178.183594 C 171.867188 178.066406 171.773438 177.972656 171.65625 177.972656 C 171.539062 177.972656 171.445312 178.066406 171.445312 178.183594 C 171.445312 178.300781 171.539062 178.394531 171.65625 178.394531 C 171.773438 178.394531 171.867188 178.300781 171.867188 178.183594 Z M 171.867188 178.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.722656 179.351562 C 172.722656 179.234375 172.628906 179.140625 172.511719 179.140625 C 172.394531 179.140625 172.300781 179.234375 172.300781 179.351562 C 172.300781 179.46875 172.394531 179.5625 172.511719 179.5625 C 172.628906 179.5625 172.722656 179.46875 172.722656 179.351562 Z M 172.722656 179.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.507812 180.492188 C 173.507812 180.375 173.414062 180.28125 173.296875 180.28125 C 173.179688 180.28125 173.085938 180.375 173.085938 180.492188 C 173.085938 180.609375 173.179688 180.703125 173.296875 180.703125 C 173.414062 180.703125 173.507812 180.609375 173.507812 180.492188 Z M 173.507812 180.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.820312 180.378906 C 170.820312 180.261719 170.726562 180.167969 170.609375 180.167969 C 170.492188 180.167969 170.398438 180.261719 170.398438 180.378906 C 170.398438 180.496094 170.492188 180.589844 170.609375 180.589844 C 170.726562 180.589844 170.820312 180.496094 170.820312 180.378906 Z M 170.820312 180.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.300781 179.601562 C 170.300781 179.484375 170.207031 179.390625 170.089844 179.390625 C 169.972656 179.390625 169.878906 179.484375 169.878906 179.601562 C 169.878906 179.71875 169.972656 179.8125 170.089844 179.8125 C 170.207031 179.8125 170.300781 179.71875 170.300781 179.601562 Z M 170.300781 179.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.257812 177.894531 C 171.257812 177.777344 171.164062 177.683594 171.046875 177.683594 C 170.929688 177.683594 170.835938 177.777344 170.835938 177.894531 C 170.835938 178.011719 170.929688 178.105469 171.046875 178.105469 C 171.164062 178.105469 171.257812 178.011719 171.257812 177.894531 Z M 171.257812 177.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.640625 179.527344 C 172.640625 179.410156 172.546875 179.316406 172.429688 179.316406 C 172.3125 179.316406 172.21875 179.410156 172.21875 179.527344 C 172.21875 179.644531 172.3125 179.738281 172.429688 179.738281 C 172.546875 179.738281 172.640625 179.644531 172.640625 179.527344 Z M 172.640625 179.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.925781 178.570312 C 169.925781 178.453125 169.832031 178.359375 169.714844 178.359375 C 169.597656 178.359375 169.503906 178.453125 169.503906 178.570312 C 169.503906 178.6875 169.597656 178.78125 169.714844 178.78125 C 169.832031 178.78125 169.925781 178.6875 169.925781 178.570312 Z M 169.925781 178.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.710938 176.335938 C 166.710938 176.21875 166.617188 176.125 166.5 176.125 C 166.382812 176.125 166.289062 176.21875 166.289062 176.335938 C 166.289062 176.453125 166.382812 176.546875 166.5 176.546875 C 166.617188 176.546875 166.710938 176.453125 166.710938 176.335938 Z M 166.710938 176.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.578125 176.414062 C 166.578125 176.296875 166.484375 176.203125 166.367188 176.203125 C 166.25 176.203125 166.15625 176.296875 166.15625 176.414062 C 166.15625 176.53125 166.25 176.625 166.367188 176.625 C 166.484375 176.625 166.578125 176.53125 166.578125 176.414062 Z M 166.578125 176.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.226562 180.089844 C 167.226562 179.972656 167.132812 179.878906 167.015625 179.878906 C 166.898438 179.878906 166.804688 179.972656 166.804688 180.089844 C 166.804688 180.207031 166.898438 180.300781 167.015625 180.300781 C 167.132812 180.300781 167.226562 180.207031 167.226562 180.089844 Z M 167.226562 180.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.335938 179.453125 C 166.335938 179.335938 166.242188 179.242188 166.125 179.242188 C 166.007812 179.242188 165.914062 179.335938 165.914062 179.453125 C 165.914062 179.570312 166.007812 179.664062 166.125 179.664062 C 166.242188 179.664062 166.335938 179.570312 166.335938 179.453125 Z M 166.335938 179.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.457031 178.5625 C 169.457031 178.445312 169.363281 178.351562 169.246094 178.351562 C 169.128906 178.351562 169.035156 178.445312 169.035156 178.5625 C 169.035156 178.679688 169.128906 178.773438 169.246094 178.773438 C 169.363281 178.773438 169.457031 178.679688 169.457031 178.5625 Z M 169.457031 178.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.121094 175.160156 C 172.121094 175.042969 172.027344 174.949219 171.910156 174.949219 C 171.792969 174.949219 171.699219 175.042969 171.699219 175.160156 C 171.699219 175.277344 171.792969 175.371094 171.910156 175.371094 C 172.027344 175.371094 172.121094 175.277344 172.121094 175.160156 Z M 172.121094 175.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.695312 172.414062 C 170.695312 172.296875 170.601562 172.203125 170.484375 172.203125 C 170.367188 172.203125 170.273438 172.296875 170.273438 172.414062 C 170.273438 172.53125 170.367188 172.625 170.484375 172.625 C 170.601562 172.625 170.695312 172.53125 170.695312 172.414062 Z M 170.695312 172.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.167969 170.675781 C 171.167969 170.558594 171.074219 170.464844 170.957031 170.464844 C 170.839844 170.464844 170.746094 170.558594 170.746094 170.675781 C 170.746094 170.792969 170.839844 170.886719 170.957031 170.886719 C 171.074219 170.886719 171.167969 170.792969 171.167969 170.675781 Z M 171.167969 170.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.324219 170.527344 C 172.324219 170.410156 172.230469 170.316406 172.113281 170.316406 C 171.996094 170.316406 171.902344 170.410156 171.902344 170.527344 C 171.902344 170.644531 171.996094 170.738281 172.113281 170.738281 C 172.230469 170.738281 172.324219 170.644531 172.324219 170.527344 Z M 172.324219 170.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.65625 168.074219 C 169.65625 167.957031 169.5625 167.863281 169.445312 167.863281 C 169.328125 167.863281 169.234375 167.957031 169.234375 168.074219 C 169.234375 168.191406 169.328125 168.285156 169.445312 168.285156 C 169.5625 168.285156 169.65625 168.191406 169.65625 168.074219 Z M 169.65625 168.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.046875 169.800781 C 167.046875 169.683594 166.953125 169.589844 166.835938 169.589844 C 166.71875 169.589844 166.625 169.683594 166.625 169.800781 C 166.625 169.917969 166.71875 170.011719 166.835938 170.011719 C 166.953125 170.011719 167.046875 169.917969 167.046875 169.800781 Z M 167.046875 169.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.667969 169.683594 C 165.667969 169.566406 165.574219 169.472656 165.457031 169.472656 C 165.339844 169.472656 165.246094 169.566406 165.246094 169.683594 C 165.246094 169.800781 165.339844 169.894531 165.457031 169.894531 C 165.574219 169.894531 165.667969 169.800781 165.667969 169.683594 Z M 165.667969 169.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.601562 167.015625 C 167.601562 166.898438 167.507812 166.804688 167.390625 166.804688 C 167.273438 166.804688 167.179688 166.898438 167.179688 167.015625 C 167.179688 167.132812 167.273438 167.226562 167.390625 167.226562 C 167.507812 167.226562 167.601562 167.132812 167.601562 167.015625 Z M 167.601562 167.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.027344 167.933594 C 169.027344 167.816406 168.933594 167.722656 168.816406 167.722656 C 168.699219 167.722656 168.605469 167.816406 168.605469 167.933594 C 168.605469 168.050781 168.699219 168.144531 168.816406 168.144531 C 168.933594 168.144531 169.027344 168.050781 169.027344 167.933594 Z M 169.027344 167.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.996094 168.042969 C 170.996094 167.925781 170.902344 167.832031 170.785156 167.832031 C 170.667969 167.832031 170.574219 167.925781 170.574219 168.042969 C 170.574219 168.160156 170.667969 168.253906 170.785156 168.253906 C 170.902344 168.253906 170.996094 168.160156 170.996094 168.042969 Z M 170.996094 168.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.574219 168.65625 C 172.574219 168.539062 172.480469 168.445312 172.363281 168.445312 C 172.246094 168.445312 172.152344 168.539062 172.152344 168.65625 C 172.152344 168.773438 172.246094 168.867188 172.363281 168.867188 C 172.480469 168.867188 172.574219 168.773438 172.574219 168.65625 Z M 172.574219 168.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.378906 167.210938 C 171.378906 167.09375 171.285156 167 171.167969 167 C 171.050781 167 170.957031 167.09375 170.957031 167.210938 C 170.957031 167.328125 171.050781 167.421875 171.167969 167.421875 C 171.285156 167.421875 171.378906 167.328125 171.378906 167.210938 Z M 171.378906 167.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.96875 166.433594 C 171.96875 166.316406 171.875 166.222656 171.757812 166.222656 C 171.640625 166.222656 171.546875 166.316406 171.546875 166.433594 C 171.546875 166.550781 171.640625 166.644531 171.757812 166.644531 C 171.875 166.644531 171.96875 166.550781 171.96875 166.433594 Z M 171.96875 166.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.269531 164.9375 C 170.269531 164.820312 170.175781 164.726562 170.058594 164.726562 C 169.941406 164.726562 169.847656 164.820312 169.847656 164.9375 C 169.847656 165.054688 169.941406 165.148438 170.058594 165.148438 C 170.175781 165.148438 170.269531 165.054688 170.269531 164.9375 Z M 170.269531 164.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.042969 168.324219 C 171.042969 168.207031 170.949219 168.113281 170.832031 168.113281 C 170.714844 168.113281 170.621094 168.207031 170.621094 168.324219 C 170.621094 168.441406 170.714844 168.535156 170.832031 168.535156 C 170.949219 168.535156 171.042969 168.441406 171.042969 168.324219 Z M 171.042969 168.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.230469 171.410156 C 170.230469 171.292969 170.136719 171.199219 170.019531 171.199219 C 169.902344 171.199219 169.808594 171.292969 169.808594 171.410156 C 169.808594 171.527344 169.902344 171.621094 170.019531 171.621094 C 170.136719 171.621094 170.230469 171.527344 170.230469 171.410156 Z M 170.230469 171.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.007812 169.730469 C 170.007812 169.613281 169.914062 169.519531 169.796875 169.519531 C 169.679688 169.519531 169.585938 169.613281 169.585938 169.730469 C 169.585938 169.847656 169.679688 169.941406 169.796875 169.941406 C 169.914062 169.941406 170.007812 169.847656 170.007812 169.730469 Z M 170.007812 169.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.722656 172.152344 C 171.722656 172.035156 171.628906 171.941406 171.511719 171.941406 C 171.394531 171.941406 171.300781 172.035156 171.300781 172.152344 C 171.300781 172.269531 171.394531 172.363281 171.511719 172.363281 C 171.628906 172.363281 171.722656 172.269531 171.722656 172.152344 Z M 171.722656 172.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.078125 169.328125 C 176.078125 169.210938 175.984375 169.117188 175.867188 169.117188 C 175.75 169.117188 175.65625 169.210938 175.65625 169.328125 C 175.65625 169.445312 175.75 169.539062 175.867188 169.539062 C 175.984375 169.539062 176.078125 169.445312 176.078125 169.328125 Z M 176.078125 169.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.515625 168.613281 C 177.515625 168.496094 177.421875 168.402344 177.304688 168.402344 C 177.1875 168.402344 177.09375 168.496094 177.09375 168.613281 C 177.09375 168.730469 177.1875 168.824219 177.304688 168.824219 C 177.421875 168.824219 177.515625 168.730469 177.515625 168.613281 Z M 177.515625 168.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.972656 169.699219 C 179.972656 169.582031 179.878906 169.488281 179.761719 169.488281 C 179.644531 169.488281 179.550781 169.582031 179.550781 169.699219 C 179.550781 169.816406 179.644531 169.910156 179.761719 169.910156 C 179.878906 169.910156 179.972656 169.816406 179.972656 169.699219 Z M 179.972656 169.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.007812 171.109375 C 177.007812 170.992188 176.914062 170.898438 176.796875 170.898438 C 176.679688 170.898438 176.585938 170.992188 176.585938 171.109375 C 176.585938 171.226562 176.679688 171.320312 176.796875 171.320312 C 176.914062 171.320312 177.007812 171.226562 177.007812 171.109375 Z M 177.007812 171.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.355469 167.933594 C 176.355469 167.816406 176.261719 167.722656 176.144531 167.722656 C 176.027344 167.722656 175.933594 167.816406 175.933594 167.933594 C 175.933594 168.050781 176.027344 168.144531 176.144531 168.144531 C 176.261719 168.144531 176.355469 168.050781 176.355469 167.933594 Z M 176.355469 167.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.351562 166.03125 C 173.351562 165.914062 173.257812 165.820312 173.140625 165.820312 C 173.023438 165.820312 172.929688 165.914062 172.929688 166.03125 C 172.929688 166.148438 173.023438 166.242188 173.140625 166.242188 C 173.257812 166.242188 173.351562 166.148438 173.351562 166.03125 Z M 173.351562 166.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.375 167.847656 C 172.375 167.730469 172.28125 167.636719 172.164062 167.636719 C 172.046875 167.636719 171.953125 167.730469 171.953125 167.847656 C 171.953125 167.964844 172.046875 168.058594 172.164062 168.058594 C 172.28125 168.058594 172.375 167.964844 172.375 167.847656 Z M 172.375 167.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.902344 167.558594 C 171.902344 167.441406 171.808594 167.347656 171.691406 167.347656 C 171.574219 167.347656 171.480469 167.441406 171.480469 167.558594 C 171.480469 167.675781 171.574219 167.769531 171.691406 167.769531 C 171.808594 167.769531 171.902344 167.675781 171.902344 167.558594 Z M 171.902344 167.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.359375 166.394531 C 170.359375 166.277344 170.265625 166.183594 170.148438 166.183594 C 170.03125 166.183594 169.9375 166.277344 169.9375 166.394531 C 169.9375 166.511719 170.03125 166.605469 170.148438 166.605469 C 170.265625 166.605469 170.359375 166.511719 170.359375 166.394531 Z M 170.359375 166.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.605469 165.84375 C 171.605469 165.726562 171.511719 165.632812 171.394531 165.632812 C 171.277344 165.632812 171.183594 165.726562 171.183594 165.84375 C 171.183594 165.960938 171.277344 166.054688 171.394531 166.054688 C 171.511719 166.054688 171.605469 165.960938 171.605469 165.84375 Z M 171.605469 165.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.082031 167.972656 C 170.082031 167.855469 169.988281 167.761719 169.871094 167.761719 C 169.753906 167.761719 169.660156 167.855469 169.660156 167.972656 C 169.660156 168.089844 169.753906 168.183594 169.871094 168.183594 C 169.988281 168.183594 170.082031 168.089844 170.082031 167.972656 Z M 170.082031 167.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.625 165.523438 C 166.625 165.40625 166.53125 165.3125 166.414062 165.3125 C 166.296875 165.3125 166.203125 165.40625 166.203125 165.523438 C 166.203125 165.640625 166.296875 165.734375 166.414062 165.734375 C 166.53125 165.734375 166.625 165.640625 166.625 165.523438 Z M 166.625 165.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.859375 165.949219 C 167.859375 165.832031 167.765625 165.738281 167.648438 165.738281 C 167.53125 165.738281 167.4375 165.832031 167.4375 165.949219 C 167.4375 166.066406 167.53125 166.160156 167.648438 166.160156 C 167.765625 166.160156 167.859375 166.066406 167.859375 165.949219 Z M 167.859375 165.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.972656 167.789062 C 166.972656 167.671875 166.878906 167.578125 166.761719 167.578125 C 166.644531 167.578125 166.550781 167.671875 166.550781 167.789062 C 166.550781 167.90625 166.644531 168 166.761719 168 C 166.878906 168 166.972656 167.90625 166.972656 167.789062 Z M 166.972656 167.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.679688 167.726562 C 168.679688 167.609375 168.585938 167.515625 168.46875 167.515625 C 168.351562 167.515625 168.257812 167.609375 168.257812 167.726562 C 168.257812 167.84375 168.351562 167.9375 168.46875 167.9375 C 168.585938 167.9375 168.679688 167.84375 168.679688 167.726562 Z M 168.679688 167.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.160156 168.640625 C 166.160156 168.523438 166.066406 168.429688 165.949219 168.429688 C 165.832031 168.429688 165.738281 168.523438 165.738281 168.640625 C 165.738281 168.757812 165.832031 168.851562 165.949219 168.851562 C 166.066406 168.851562 166.160156 168.757812 166.160156 168.640625 Z M 166.160156 168.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.710938 170.710938 C 166.710938 170.59375 166.617188 170.5 166.5 170.5 C 166.382812 170.5 166.289062 170.59375 166.289062 170.710938 C 166.289062 170.828125 166.382812 170.921875 166.5 170.921875 C 166.617188 170.921875 166.710938 170.828125 166.710938 170.710938 Z M 166.710938 170.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.523438 171.953125 C 170.523438 171.835938 170.429688 171.742188 170.3125 171.742188 C 170.195312 171.742188 170.101562 171.835938 170.101562 171.953125 C 170.101562 172.070312 170.195312 172.164062 170.3125 172.164062 C 170.429688 172.164062 170.523438 172.070312 170.523438 171.953125 Z M 170.523438 171.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.792969 170.34375 C 171.792969 170.226562 171.699219 170.132812 171.582031 170.132812 C 171.464844 170.132812 171.371094 170.226562 171.371094 170.34375 C 171.371094 170.460938 171.464844 170.554688 171.582031 170.554688 C 171.699219 170.554688 171.792969 170.460938 171.792969 170.34375 Z M 171.792969 170.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.21875 172.304688 C 171.21875 172.1875 171.125 172.09375 171.007812 172.09375 C 170.890625 172.09375 170.796875 172.1875 170.796875 172.304688 C 170.796875 172.421875 170.890625 172.515625 171.007812 172.515625 C 171.125 172.515625 171.21875 172.421875 171.21875 172.304688 Z M 171.21875 172.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.609375 174.074219 C 167.609375 173.957031 167.515625 173.863281 167.398438 173.863281 C 167.28125 173.863281 167.1875 173.957031 167.1875 174.074219 C 167.1875 174.191406 167.28125 174.285156 167.398438 174.285156 C 167.515625 174.285156 167.609375 174.191406 167.609375 174.074219 Z M 167.609375 174.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.367188 173.285156 C 166.367188 173.167969 166.273438 173.074219 166.15625 173.074219 C 166.039062 173.074219 165.945312 173.167969 165.945312 173.285156 C 165.945312 173.402344 166.039062 173.496094 166.15625 173.496094 C 166.273438 173.496094 166.367188 173.402344 166.367188 173.285156 Z M 166.367188 173.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.78125 171.496094 C 169.78125 171.378906 169.6875 171.285156 169.570312 171.285156 C 169.453125 171.285156 169.359375 171.378906 169.359375 171.496094 C 169.359375 171.613281 169.453125 171.707031 169.570312 171.707031 C 169.6875 171.707031 169.78125 171.613281 169.78125 171.496094 Z M 169.78125 171.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.234375 172.910156 C 170.234375 172.792969 170.140625 172.699219 170.023438 172.699219 C 169.90625 172.699219 169.8125 172.792969 169.8125 172.910156 C 169.8125 173.027344 169.90625 173.121094 170.023438 173.121094 C 170.140625 173.121094 170.234375 173.027344 170.234375 172.910156 Z M 170.234375 172.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.636719 171.582031 C 170.636719 171.464844 170.542969 171.371094 170.425781 171.371094 C 170.308594 171.371094 170.214844 171.464844 170.214844 171.582031 C 170.214844 171.699219 170.308594 171.792969 170.425781 171.792969 C 170.542969 171.792969 170.636719 171.699219 170.636719 171.582031 Z M 170.636719 171.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.25 173.425781 C 170.25 173.308594 170.15625 173.214844 170.039062 173.214844 C 169.921875 173.214844 169.828125 173.308594 169.828125 173.425781 C 169.828125 173.542969 169.921875 173.636719 170.039062 173.636719 C 170.15625 173.636719 170.25 173.542969 170.25 173.425781 Z M 170.25 173.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.691406 171.351562 C 169.691406 171.234375 169.597656 171.140625 169.480469 171.140625 C 169.363281 171.140625 169.269531 171.234375 169.269531 171.351562 C 169.269531 171.46875 169.363281 171.5625 169.480469 171.5625 C 169.597656 171.5625 169.691406 171.46875 169.691406 171.351562 Z M 169.691406 171.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.882812 171.210938 C 167.882812 171.09375 167.789062 171 167.671875 171 C 167.554688 171 167.460938 171.09375 167.460938 171.210938 C 167.460938 171.328125 167.554688 171.421875 167.671875 171.421875 C 167.789062 171.421875 167.882812 171.328125 167.882812 171.210938 Z M 167.882812 171.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.449219 174.519531 C 163.449219 174.402344 163.355469 174.308594 163.238281 174.308594 C 163.121094 174.308594 163.027344 174.402344 163.027344 174.519531 C 163.027344 174.636719 163.121094 174.730469 163.238281 174.730469 C 163.355469 174.730469 163.449219 174.636719 163.449219 174.519531 Z M 163.449219 174.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.914062 176.214844 C 162.914062 176.097656 162.820312 176.003906 162.703125 176.003906 C 162.585938 176.003906 162.492188 176.097656 162.492188 176.214844 C 162.492188 176.332031 162.585938 176.425781 162.703125 176.425781 C 162.820312 176.425781 162.914062 176.332031 162.914062 176.214844 Z M 162.914062 176.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.558594 175.785156 C 160.558594 175.667969 160.464844 175.574219 160.347656 175.574219 C 160.230469 175.574219 160.136719 175.667969 160.136719 175.785156 C 160.136719 175.902344 160.230469 175.996094 160.347656 175.996094 C 160.464844 175.996094 160.558594 175.902344 160.558594 175.785156 Z M 160.558594 175.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.347656 176.726562 C 163.347656 176.609375 163.253906 176.515625 163.136719 176.515625 C 163.019531 176.515625 162.925781 176.609375 162.925781 176.726562 C 162.925781 176.84375 163.019531 176.9375 163.136719 176.9375 C 163.253906 176.9375 163.347656 176.84375 163.347656 176.726562 Z M 163.347656 176.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.808594 177.363281 C 163.808594 177.246094 163.714844 177.152344 163.597656 177.152344 C 163.480469 177.152344 163.386719 177.246094 163.386719 177.363281 C 163.386719 177.480469 163.480469 177.574219 163.597656 177.574219 C 163.714844 177.574219 163.808594 177.480469 163.808594 177.363281 Z M 163.808594 177.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.003906 177.46875 C 165.003906 177.351562 164.910156 177.257812 164.792969 177.257812 C 164.675781 177.257812 164.582031 177.351562 164.582031 177.46875 C 164.582031 177.585938 164.675781 177.679688 164.792969 177.679688 C 164.910156 177.679688 165.003906 177.585938 165.003906 177.46875 Z M 165.003906 177.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.257812 176.53125 C 163.257812 176.414062 163.164062 176.320312 163.046875 176.320312 C 162.929688 176.320312 162.835938 176.414062 162.835938 176.53125 C 162.835938 176.648438 162.929688 176.742188 163.046875 176.742188 C 163.164062 176.742188 163.257812 176.648438 163.257812 176.53125 Z M 163.257812 176.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.863281 176.0625 C 161.863281 175.945312 161.769531 175.851562 161.652344 175.851562 C 161.535156 175.851562 161.441406 175.945312 161.441406 176.0625 C 161.441406 176.179688 161.535156 176.273438 161.652344 176.273438 C 161.769531 176.273438 161.863281 176.179688 161.863281 176.0625 Z M 161.863281 176.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.753906 179.679688 C 163.753906 179.5625 163.660156 179.46875 163.542969 179.46875 C 163.425781 179.46875 163.332031 179.5625 163.332031 179.679688 C 163.332031 179.796875 163.425781 179.890625 163.542969 179.890625 C 163.660156 179.890625 163.753906 179.796875 163.753906 179.679688 Z M 163.753906 179.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.449219 175.730469 C 162.449219 175.613281 162.355469 175.519531 162.238281 175.519531 C 162.121094 175.519531 162.027344 175.613281 162.027344 175.730469 C 162.027344 175.847656 162.121094 175.941406 162.238281 175.941406 C 162.355469 175.941406 162.449219 175.847656 162.449219 175.730469 Z M 162.449219 175.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.839844 174.417969 C 161.839844 174.300781 161.746094 174.207031 161.628906 174.207031 C 161.511719 174.207031 161.417969 174.300781 161.417969 174.417969 C 161.417969 174.535156 161.511719 174.628906 161.628906 174.628906 C 161.746094 174.628906 161.839844 174.535156 161.839844 174.417969 Z M 161.839844 174.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.078125 174.179688 C 158.078125 174.0625 157.984375 173.96875 157.867188 173.96875 C 157.75 173.96875 157.65625 174.0625 157.65625 174.179688 C 157.65625 174.296875 157.75 174.390625 157.867188 174.390625 C 157.984375 174.390625 158.078125 174.296875 158.078125 174.179688 Z M 158.078125 174.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.601562 174.210938 C 158.601562 174.09375 158.507812 174 158.390625 174 C 158.273438 174 158.179688 174.09375 158.179688 174.210938 C 158.179688 174.328125 158.273438 174.421875 158.390625 174.421875 C 158.507812 174.421875 158.601562 174.328125 158.601562 174.210938 Z M 158.601562 174.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.1875 173.757812 C 158.1875 173.640625 158.09375 173.546875 157.976562 173.546875 C 157.859375 173.546875 157.765625 173.640625 157.765625 173.757812 C 157.765625 173.875 157.859375 173.96875 157.976562 173.96875 C 158.09375 173.96875 158.1875 173.875 158.1875 173.757812 Z M 158.1875 173.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.09375 174.734375 C 157.09375 174.617188 157 174.523438 156.882812 174.523438 C 156.765625 174.523438 156.671875 174.617188 156.671875 174.734375 C 156.671875 174.851562 156.765625 174.945312 156.882812 174.945312 C 157 174.945312 157.09375 174.851562 157.09375 174.734375 Z M 157.09375 174.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.832031 174.792969 C 157.832031 174.675781 157.738281 174.582031 157.621094 174.582031 C 157.503906 174.582031 157.410156 174.675781 157.410156 174.792969 C 157.410156 174.910156 157.503906 175.003906 157.621094 175.003906 C 157.738281 175.003906 157.832031 174.910156 157.832031 174.792969 Z M 157.832031 174.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.007812 172.863281 C 159.007812 172.746094 158.914062 172.652344 158.796875 172.652344 C 158.679688 172.652344 158.585938 172.746094 158.585938 172.863281 C 158.585938 172.980469 158.679688 173.074219 158.796875 173.074219 C 158.914062 173.074219 159.007812 172.980469 159.007812 172.863281 Z M 159.007812 172.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.027344 167.800781 C 160.027344 167.683594 159.933594 167.589844 159.816406 167.589844 C 159.699219 167.589844 159.605469 167.683594 159.605469 167.800781 C 159.605469 167.917969 159.699219 168.011719 159.816406 168.011719 C 159.933594 168.011719 160.027344 167.917969 160.027344 167.800781 Z M 160.027344 167.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.183594 170.277344 C 158.183594 170.160156 158.089844 170.066406 157.972656 170.066406 C 157.855469 170.066406 157.761719 170.160156 157.761719 170.277344 C 157.761719 170.394531 157.855469 170.488281 157.972656 170.488281 C 158.089844 170.488281 158.183594 170.394531 158.183594 170.277344 Z M 158.183594 170.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.777344 167.785156 C 154.777344 167.667969 154.683594 167.574219 154.566406 167.574219 C 154.449219 167.574219 154.355469 167.667969 154.355469 167.785156 C 154.355469 167.902344 154.449219 167.996094 154.566406 167.996094 C 154.683594 167.996094 154.777344 167.902344 154.777344 167.785156 Z M 154.777344 167.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.5 167.148438 C 151.5 167.03125 151.40625 166.9375 151.289062 166.9375 C 151.171875 166.9375 151.078125 167.03125 151.078125 167.148438 C 151.078125 167.265625 151.171875 167.359375 151.289062 167.359375 C 151.40625 167.359375 151.5 167.265625 151.5 167.148438 Z M 151.5 167.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.03125 168.953125 C 150.03125 168.835938 149.9375 168.742188 149.820312 168.742188 C 149.703125 168.742188 149.609375 168.835938 149.609375 168.953125 C 149.609375 169.070312 149.703125 169.164062 149.820312 169.164062 C 149.9375 169.164062 150.03125 169.070312 150.03125 168.953125 Z M 150.03125 168.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.386719 168.203125 C 147.386719 168.085938 147.292969 167.992188 147.175781 167.992188 C 147.058594 167.992188 146.964844 168.085938 146.964844 168.203125 C 146.964844 168.320312 147.058594 168.414062 147.175781 168.414062 C 147.292969 168.414062 147.386719 168.320312 147.386719 168.203125 Z M 147.386719 168.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.84375 163.660156 C 148.84375 163.542969 148.75 163.449219 148.632812 163.449219 C 148.515625 163.449219 148.421875 163.542969 148.421875 163.660156 C 148.421875 163.777344 148.515625 163.871094 148.632812 163.871094 C 148.75 163.871094 148.84375 163.777344 148.84375 163.660156 Z M 148.84375 163.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.90625 163.003906 C 145.90625 162.886719 145.8125 162.792969 145.695312 162.792969 C 145.578125 162.792969 145.484375 162.886719 145.484375 163.003906 C 145.484375 163.121094 145.578125 163.214844 145.695312 163.214844 C 145.8125 163.214844 145.90625 163.121094 145.90625 163.003906 Z M 145.90625 163.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.609375 166.34375 C 144.609375 166.226562 144.515625 166.132812 144.398438 166.132812 C 144.28125 166.132812 144.1875 166.226562 144.1875 166.34375 C 144.1875 166.460938 144.28125 166.554688 144.398438 166.554688 C 144.515625 166.554688 144.609375 166.460938 144.609375 166.34375 Z M 144.609375 166.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.074219 169.230469 C 144.074219 169.113281 143.980469 169.019531 143.863281 169.019531 C 143.746094 169.019531 143.652344 169.113281 143.652344 169.230469 C 143.652344 169.347656 143.746094 169.441406 143.863281 169.441406 C 143.980469 169.441406 144.074219 169.347656 144.074219 169.230469 Z M 144.074219 169.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.160156 167.183594 C 141.160156 167.066406 141.066406 166.972656 140.949219 166.972656 C 140.832031 166.972656 140.738281 167.066406 140.738281 167.183594 C 140.738281 167.300781 140.832031 167.394531 140.949219 167.394531 C 141.066406 167.394531 141.160156 167.300781 141.160156 167.183594 Z M 141.160156 167.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.253906 166.4375 C 142.253906 166.320312 142.160156 166.226562 142.042969 166.226562 C 141.925781 166.226562 141.832031 166.320312 141.832031 166.4375 C 141.832031 166.554688 141.925781 166.648438 142.042969 166.648438 C 142.160156 166.648438 142.253906 166.554688 142.253906 166.4375 Z M 142.253906 166.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.578125 167.601562 C 142.578125 167.484375 142.484375 167.390625 142.367188 167.390625 C 142.25 167.390625 142.15625 167.484375 142.15625 167.601562 C 142.15625 167.71875 142.25 167.8125 142.367188 167.8125 C 142.484375 167.8125 142.578125 167.71875 142.578125 167.601562 Z M 142.578125 167.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.6875 167.222656 C 139.6875 167.105469 139.59375 167.011719 139.476562 167.011719 C 139.359375 167.011719 139.265625 167.105469 139.265625 167.222656 C 139.265625 167.339844 139.359375 167.433594 139.476562 167.433594 C 139.59375 167.433594 139.6875 167.339844 139.6875 167.222656 Z M 139.6875 167.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.527344 165.464844 C 139.527344 165.347656 139.433594 165.253906 139.316406 165.253906 C 139.199219 165.253906 139.105469 165.347656 139.105469 165.464844 C 139.105469 165.582031 139.199219 165.675781 139.316406 165.675781 C 139.433594 165.675781 139.527344 165.582031 139.527344 165.464844 Z M 139.527344 165.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.875 162.726562 C 138.875 162.609375 138.78125 162.515625 138.664062 162.515625 C 138.546875 162.515625 138.453125 162.609375 138.453125 162.726562 C 138.453125 162.84375 138.546875 162.9375 138.664062 162.9375 C 138.78125 162.9375 138.875 162.84375 138.875 162.726562 Z M 138.875 162.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.703125 163.007812 C 138.703125 162.890625 138.609375 162.796875 138.492188 162.796875 C 138.375 162.796875 138.28125 162.890625 138.28125 163.007812 C 138.28125 163.125 138.375 163.21875 138.492188 163.21875 C 138.609375 163.21875 138.703125 163.125 138.703125 163.007812 Z M 138.703125 163.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.117188 160.644531 C 140.117188 160.527344 140.023438 160.433594 139.90625 160.433594 C 139.789062 160.433594 139.695312 160.527344 139.695312 160.644531 C 139.695312 160.761719 139.789062 160.855469 139.90625 160.855469 C 140.023438 160.855469 140.117188 160.761719 140.117188 160.644531 Z M 140.117188 160.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.417969 161.3125 C 141.417969 161.195312 141.324219 161.101562 141.207031 161.101562 C 141.089844 161.101562 140.996094 161.195312 140.996094 161.3125 C 140.996094 161.429688 141.089844 161.523438 141.207031 161.523438 C 141.324219 161.523438 141.417969 161.429688 141.417969 161.3125 Z M 141.417969 161.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.542969 162.921875 C 139.542969 162.804688 139.449219 162.710938 139.332031 162.710938 C 139.214844 162.710938 139.121094 162.804688 139.121094 162.921875 C 139.121094 163.039062 139.214844 163.132812 139.332031 163.132812 C 139.449219 163.132812 139.542969 163.039062 139.542969 162.921875 Z M 139.542969 162.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.726562 162.566406 C 138.726562 162.449219 138.632812 162.355469 138.515625 162.355469 C 138.398438 162.355469 138.304688 162.449219 138.304688 162.566406 C 138.304688 162.683594 138.398438 162.777344 138.515625 162.777344 C 138.632812 162.777344 138.726562 162.683594 138.726562 162.566406 Z M 138.726562 162.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.484375 161.660156 C 140.484375 161.542969 140.390625 161.449219 140.273438 161.449219 C 140.15625 161.449219 140.0625 161.542969 140.0625 161.660156 C 140.0625 161.777344 140.15625 161.871094 140.273438 161.871094 C 140.390625 161.871094 140.484375 161.777344 140.484375 161.660156 Z M 140.484375 161.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.84375 160.371094 C 138.84375 160.253906 138.75 160.160156 138.632812 160.160156 C 138.515625 160.160156 138.421875 160.253906 138.421875 160.371094 C 138.421875 160.488281 138.515625 160.582031 138.632812 160.582031 C 138.75 160.582031 138.84375 160.488281 138.84375 160.371094 Z M 138.84375 160.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.550781 160.066406 C 140.550781 159.949219 140.457031 159.855469 140.339844 159.855469 C 140.222656 159.855469 140.128906 159.949219 140.128906 160.066406 C 140.128906 160.183594 140.222656 160.277344 140.339844 160.277344 C 140.457031 160.277344 140.550781 160.183594 140.550781 160.066406 Z M 140.550781 160.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.023438 163.40625 C 139.023438 163.289062 138.929688 163.195312 138.8125 163.195312 C 138.695312 163.195312 138.601562 163.289062 138.601562 163.40625 C 138.601562 163.523438 138.695312 163.617188 138.8125 163.617188 C 138.929688 163.617188 139.023438 163.523438 139.023438 163.40625 Z M 139.023438 163.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.855469 163.558594 C 141.855469 163.441406 141.761719 163.347656 141.644531 163.347656 C 141.527344 163.347656 141.433594 163.441406 141.433594 163.558594 C 141.433594 163.675781 141.527344 163.769531 141.644531 163.769531 C 141.761719 163.769531 141.855469 163.675781 141.855469 163.558594 Z M 141.855469 163.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.152344 164.226562 C 137.152344 164.109375 137.058594 164.015625 136.941406 164.015625 C 136.824219 164.015625 136.730469 164.109375 136.730469 164.226562 C 136.730469 164.34375 136.824219 164.4375 136.941406 164.4375 C 137.058594 164.4375 137.152344 164.34375 137.152344 164.226562 Z M 137.152344 164.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.464844 162.667969 C 139.464844 162.550781 139.371094 162.457031 139.253906 162.457031 C 139.136719 162.457031 139.042969 162.550781 139.042969 162.667969 C 139.042969 162.785156 139.136719 162.878906 139.253906 162.878906 C 139.371094 162.878906 139.464844 162.785156 139.464844 162.667969 Z M 139.464844 162.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.003906 159.847656 C 142.003906 159.730469 141.910156 159.636719 141.792969 159.636719 C 141.675781 159.636719 141.582031 159.730469 141.582031 159.847656 C 141.582031 159.964844 141.675781 160.058594 141.792969 160.058594 C 141.910156 160.058594 142.003906 159.964844 142.003906 159.847656 Z M 142.003906 159.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.648438 162.164062 C 141.648438 162.046875 141.554688 161.953125 141.4375 161.953125 C 141.320312 161.953125 141.226562 162.046875 141.226562 162.164062 C 141.226562 162.28125 141.320312 162.375 141.4375 162.375 C 141.554688 162.375 141.648438 162.28125 141.648438 162.164062 Z M 141.648438 162.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.835938 161.148438 C 140.835938 161.03125 140.742188 160.9375 140.625 160.9375 C 140.507812 160.9375 140.414062 161.03125 140.414062 161.148438 C 140.414062 161.265625 140.507812 161.359375 140.625 161.359375 C 140.742188 161.359375 140.835938 161.265625 140.835938 161.148438 Z M 140.835938 161.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.5625 161.40625 C 139.5625 161.289062 139.46875 161.195312 139.351562 161.195312 C 139.234375 161.195312 139.140625 161.289062 139.140625 161.40625 C 139.140625 161.523438 139.234375 161.617188 139.351562 161.617188 C 139.46875 161.617188 139.5625 161.523438 139.5625 161.40625 Z M 139.5625 161.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.855469 164.382812 C 139.855469 164.265625 139.761719 164.171875 139.644531 164.171875 C 139.527344 164.171875 139.433594 164.265625 139.433594 164.382812 C 139.433594 164.5 139.527344 164.59375 139.644531 164.59375 C 139.761719 164.59375 139.855469 164.5 139.855469 164.382812 Z M 139.855469 164.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.46875 162.222656 C 140.46875 162.105469 140.375 162.011719 140.257812 162.011719 C 140.140625 162.011719 140.046875 162.105469 140.046875 162.222656 C 140.046875 162.339844 140.140625 162.433594 140.257812 162.433594 C 140.375 162.433594 140.46875 162.339844 140.46875 162.222656 Z M 140.46875 162.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.507812 158.597656 C 141.507812 158.480469 141.414062 158.386719 141.296875 158.386719 C 141.179688 158.386719 141.085938 158.480469 141.085938 158.597656 C 141.085938 158.714844 141.179688 158.808594 141.296875 158.808594 C 141.414062 158.808594 141.507812 158.714844 141.507812 158.597656 Z M 141.507812 158.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.574219 161.402344 C 138.574219 161.285156 138.480469 161.191406 138.363281 161.191406 C 138.246094 161.191406 138.152344 161.285156 138.152344 161.402344 C 138.152344 161.519531 138.246094 161.613281 138.363281 161.613281 C 138.480469 161.613281 138.574219 161.519531 138.574219 161.402344 Z M 138.574219 161.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.15625 160.449219 C 138.15625 160.332031 138.0625 160.238281 137.945312 160.238281 C 137.828125 160.238281 137.734375 160.332031 137.734375 160.449219 C 137.734375 160.566406 137.828125 160.660156 137.945312 160.660156 C 138.0625 160.660156 138.15625 160.566406 138.15625 160.449219 Z M 138.15625 160.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.089844 156.992188 C 137.089844 156.875 136.996094 156.78125 136.878906 156.78125 C 136.761719 156.78125 136.667969 156.875 136.667969 156.992188 C 136.667969 157.109375 136.761719 157.203125 136.878906 157.203125 C 136.996094 157.203125 137.089844 157.109375 137.089844 156.992188 Z M 137.089844 156.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.964844 159.921875 C 135.964844 159.804688 135.871094 159.710938 135.753906 159.710938 C 135.636719 159.710938 135.542969 159.804688 135.542969 159.921875 C 135.542969 160.039062 135.636719 160.132812 135.753906 160.132812 C 135.871094 160.132812 135.964844 160.039062 135.964844 159.921875 Z M 135.964844 159.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.882812 160.132812 C 136.882812 160.015625 136.789062 159.921875 136.671875 159.921875 C 136.554688 159.921875 136.460938 160.015625 136.460938 160.132812 C 136.460938 160.25 136.554688 160.34375 136.671875 160.34375 C 136.789062 160.34375 136.882812 160.25 136.882812 160.132812 Z M 136.882812 160.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.550781 162.09375 C 138.550781 161.976562 138.457031 161.882812 138.339844 161.882812 C 138.222656 161.882812 138.128906 161.976562 138.128906 162.09375 C 138.128906 162.210938 138.222656 162.304688 138.339844 162.304688 C 138.457031 162.304688 138.550781 162.210938 138.550781 162.09375 Z M 138.550781 162.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.941406 161.476562 C 140.941406 161.359375 140.847656 161.265625 140.730469 161.265625 C 140.613281 161.265625 140.519531 161.359375 140.519531 161.476562 C 140.519531 161.59375 140.613281 161.6875 140.730469 161.6875 C 140.847656 161.6875 140.941406 161.59375 140.941406 161.476562 Z M 140.941406 161.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.109375 156.929688 C 139.109375 156.8125 139.015625 156.71875 138.898438 156.71875 C 138.78125 156.71875 138.6875 156.8125 138.6875 156.929688 C 138.6875 157.046875 138.78125 157.140625 138.898438 157.140625 C 139.015625 157.140625 139.109375 157.046875 139.109375 156.929688 Z M 139.109375 156.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.625 153.425781 C 138.625 153.308594 138.53125 153.214844 138.414062 153.214844 C 138.296875 153.214844 138.203125 153.308594 138.203125 153.425781 C 138.203125 153.542969 138.296875 153.636719 138.414062 153.636719 C 138.53125 153.636719 138.625 153.542969 138.625 153.425781 Z M 138.625 153.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.339844 152.425781 C 137.339844 152.308594 137.246094 152.214844 137.128906 152.214844 C 137.011719 152.214844 136.917969 152.308594 136.917969 152.425781 C 136.917969 152.542969 137.011719 152.636719 137.128906 152.636719 C 137.246094 152.636719 137.339844 152.542969 137.339844 152.425781 Z M 137.339844 152.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.105469 150.949219 C 140.105469 150.832031 140.011719 150.738281 139.894531 150.738281 C 139.777344 150.738281 139.683594 150.832031 139.683594 150.949219 C 139.683594 151.066406 139.777344 151.160156 139.894531 151.160156 C 140.011719 151.160156 140.105469 151.066406 140.105469 150.949219 Z M 140.105469 150.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.542969 148.941406 C 140.542969 148.824219 140.449219 148.730469 140.332031 148.730469 C 140.214844 148.730469 140.121094 148.824219 140.121094 148.941406 C 140.121094 149.058594 140.214844 149.152344 140.332031 149.152344 C 140.449219 149.152344 140.542969 149.058594 140.542969 148.941406 Z M 140.542969 148.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.515625 150.203125 C 139.515625 150.085938 139.421875 149.992188 139.304688 149.992188 C 139.1875 149.992188 139.09375 150.085938 139.09375 150.203125 C 139.09375 150.320312 139.1875 150.414062 139.304688 150.414062 C 139.421875 150.414062 139.515625 150.320312 139.515625 150.203125 Z M 139.515625 150.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.363281 152.542969 C 138.363281 152.425781 138.269531 152.332031 138.152344 152.332031 C 138.035156 152.332031 137.941406 152.425781 137.941406 152.542969 C 137.941406 152.660156 138.035156 152.753906 138.152344 152.753906 C 138.269531 152.753906 138.363281 152.660156 138.363281 152.542969 Z M 138.363281 152.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.355469 155.601562 C 138.355469 155.484375 138.261719 155.390625 138.144531 155.390625 C 138.027344 155.390625 137.933594 155.484375 137.933594 155.601562 C 137.933594 155.71875 138.027344 155.8125 138.144531 155.8125 C 138.261719 155.8125 138.355469 155.71875 138.355469 155.601562 Z M 138.355469 155.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.851562 156.558594 C 138.851562 156.441406 138.757812 156.347656 138.640625 156.347656 C 138.523438 156.347656 138.429688 156.441406 138.429688 156.558594 C 138.429688 156.675781 138.523438 156.769531 138.640625 156.769531 C 138.757812 156.769531 138.851562 156.675781 138.851562 156.558594 Z M 138.851562 156.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.152344 155.921875 C 139.152344 155.804688 139.058594 155.710938 138.941406 155.710938 C 138.824219 155.710938 138.730469 155.804688 138.730469 155.921875 C 138.730469 156.039062 138.824219 156.132812 138.941406 156.132812 C 139.058594 156.132812 139.152344 156.039062 139.152344 155.921875 Z M 139.152344 155.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.5 155.410156 C 142.5 155.292969 142.40625 155.199219 142.289062 155.199219 C 142.171875 155.199219 142.078125 155.292969 142.078125 155.410156 C 142.078125 155.527344 142.171875 155.621094 142.289062 155.621094 C 142.40625 155.621094 142.5 155.527344 142.5 155.410156 Z M 142.5 155.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.917969 156.363281 C 139.917969 156.246094 139.824219 156.152344 139.707031 156.152344 C 139.589844 156.152344 139.496094 156.246094 139.496094 156.363281 C 139.496094 156.480469 139.589844 156.574219 139.707031 156.574219 C 139.824219 156.574219 139.917969 156.480469 139.917969 156.363281 Z M 139.917969 156.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.175781 154.683594 C 141.175781 154.566406 141.082031 154.472656 140.964844 154.472656 C 140.847656 154.472656 140.753906 154.566406 140.753906 154.683594 C 140.753906 154.800781 140.847656 154.894531 140.964844 154.894531 C 141.082031 154.894531 141.175781 154.800781 141.175781 154.683594 Z M 141.175781 154.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.890625 154.785156 C 140.890625 154.667969 140.796875 154.574219 140.679688 154.574219 C 140.5625 154.574219 140.46875 154.667969 140.46875 154.785156 C 140.46875 154.902344 140.5625 154.996094 140.679688 154.996094 C 140.796875 154.996094 140.890625 154.902344 140.890625 154.785156 Z M 140.890625 154.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.683594 156.351562 C 141.683594 156.234375 141.589844 156.140625 141.472656 156.140625 C 141.355469 156.140625 141.261719 156.234375 141.261719 156.351562 C 141.261719 156.46875 141.355469 156.5625 141.472656 156.5625 C 141.589844 156.5625 141.683594 156.46875 141.683594 156.351562 Z M 141.683594 156.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.882812 155.414062 C 140.882812 155.296875 140.789062 155.203125 140.671875 155.203125 C 140.554688 155.203125 140.460938 155.296875 140.460938 155.414062 C 140.460938 155.53125 140.554688 155.625 140.671875 155.625 C 140.789062 155.625 140.882812 155.53125 140.882812 155.414062 Z M 140.882812 155.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.742188 156.792969 C 142.742188 156.675781 142.648438 156.582031 142.53125 156.582031 C 142.414062 156.582031 142.320312 156.675781 142.320312 156.792969 C 142.320312 156.910156 142.414062 157.003906 142.53125 157.003906 C 142.648438 157.003906 142.742188 156.910156 142.742188 156.792969 Z M 142.742188 156.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.425781 156.605469 C 137.425781 156.488281 137.332031 156.394531 137.214844 156.394531 C 137.097656 156.394531 137.003906 156.488281 137.003906 156.605469 C 137.003906 156.722656 137.097656 156.816406 137.214844 156.816406 C 137.332031 156.816406 137.425781 156.722656 137.425781 156.605469 Z M 137.425781 156.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.933594 155.433594 C 135.933594 155.316406 135.839844 155.222656 135.722656 155.222656 C 135.605469 155.222656 135.511719 155.316406 135.511719 155.433594 C 135.511719 155.550781 135.605469 155.644531 135.722656 155.644531 C 135.839844 155.644531 135.933594 155.550781 135.933594 155.433594 Z M 135.933594 155.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.453125 157.367188 C 137.453125 157.25 137.359375 157.15625 137.242188 157.15625 C 137.125 157.15625 137.03125 157.25 137.03125 157.367188 C 137.03125 157.484375 137.125 157.578125 137.242188 157.578125 C 137.359375 157.578125 137.453125 157.484375 137.453125 157.367188 Z M 137.453125 157.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.878906 154.671875 C 140.878906 154.554688 140.785156 154.460938 140.667969 154.460938 C 140.550781 154.460938 140.457031 154.554688 140.457031 154.671875 C 140.457031 154.789062 140.550781 154.882812 140.667969 154.882812 C 140.785156 154.882812 140.878906 154.789062 140.878906 154.671875 Z M 140.878906 154.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.175781 156.0625 C 142.175781 155.945312 142.082031 155.851562 141.964844 155.851562 C 141.847656 155.851562 141.753906 155.945312 141.753906 156.0625 C 141.753906 156.179688 141.847656 156.273438 141.964844 156.273438 C 142.082031 156.273438 142.175781 156.179688 142.175781 156.0625 Z M 142.175781 156.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.703125 155.710938 C 143.703125 155.59375 143.609375 155.5 143.492188 155.5 C 143.375 155.5 143.28125 155.59375 143.28125 155.710938 C 143.28125 155.828125 143.375 155.921875 143.492188 155.921875 C 143.609375 155.921875 143.703125 155.828125 143.703125 155.710938 Z M 143.703125 155.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.875 156.910156 C 139.875 156.792969 139.78125 156.699219 139.664062 156.699219 C 139.546875 156.699219 139.453125 156.792969 139.453125 156.910156 C 139.453125 157.027344 139.546875 157.121094 139.664062 157.121094 C 139.78125 157.121094 139.875 157.027344 139.875 156.910156 Z M 139.875 156.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.046875 160.230469 C 139.046875 160.113281 138.953125 160.019531 138.835938 160.019531 C 138.71875 160.019531 138.625 160.113281 138.625 160.230469 C 138.625 160.347656 138.71875 160.441406 138.835938 160.441406 C 138.953125 160.441406 139.046875 160.347656 139.046875 160.230469 Z M 139.046875 160.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.089844 160.585938 C 137.089844 160.46875 136.996094 160.375 136.878906 160.375 C 136.761719 160.375 136.667969 160.46875 136.667969 160.585938 C 136.667969 160.703125 136.761719 160.796875 136.878906 160.796875 C 136.996094 160.796875 137.089844 160.703125 137.089844 160.585938 Z M 137.089844 160.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.257812 159.714844 C 135.257812 159.597656 135.164062 159.503906 135.046875 159.503906 C 134.929688 159.503906 134.835938 159.597656 134.835938 159.714844 C 134.835938 159.832031 134.929688 159.925781 135.046875 159.925781 C 135.164062 159.925781 135.257812 159.832031 135.257812 159.714844 Z M 135.257812 159.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.101562 159.460938 C 136.101562 159.34375 136.007812 159.25 135.890625 159.25 C 135.773438 159.25 135.679688 159.34375 135.679688 159.460938 C 135.679688 159.578125 135.773438 159.671875 135.890625 159.671875 C 136.007812 159.671875 136.101562 159.578125 136.101562 159.460938 Z M 136.101562 159.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.066406 161.085938 C 136.066406 160.96875 135.972656 160.875 135.855469 160.875 C 135.738281 160.875 135.644531 160.96875 135.644531 161.085938 C 135.644531 161.203125 135.738281 161.296875 135.855469 161.296875 C 135.972656 161.296875 136.066406 161.203125 136.066406 161.085938 Z M 136.066406 161.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.230469 166.070312 C 135.230469 165.953125 135.136719 165.859375 135.019531 165.859375 C 134.902344 165.859375 134.808594 165.953125 134.808594 166.070312 C 134.808594 166.1875 134.902344 166.28125 135.019531 166.28125 C 135.136719 166.28125 135.230469 166.1875 135.230469 166.070312 Z M 135.230469 166.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.222656 164.21875 C 135.222656 164.101562 135.128906 164.007812 135.011719 164.007812 C 134.894531 164.007812 134.800781 164.101562 134.800781 164.21875 C 134.800781 164.335938 134.894531 164.429688 135.011719 164.429688 C 135.128906 164.429688 135.222656 164.335938 135.222656 164.21875 Z M 135.222656 164.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.472656 164.898438 C 137.472656 164.78125 137.378906 164.6875 137.261719 164.6875 C 137.144531 164.6875 137.050781 164.78125 137.050781 164.898438 C 137.050781 165.015625 137.144531 165.109375 137.261719 165.109375 C 137.378906 165.109375 137.472656 165.015625 137.472656 164.898438 Z M 137.472656 164.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.9375 164.058594 C 132.9375 163.941406 132.84375 163.847656 132.726562 163.847656 C 132.609375 163.847656 132.515625 163.941406 132.515625 164.058594 C 132.515625 164.175781 132.609375 164.269531 132.726562 164.269531 C 132.84375 164.269531 132.9375 164.175781 132.9375 164.058594 Z M 132.9375 164.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 134.492188 164.519531 C 134.492188 164.402344 134.398438 164.308594 134.28125 164.308594 C 134.164062 164.308594 134.070312 164.402344 134.070312 164.519531 C 134.070312 164.636719 134.164062 164.730469 134.28125 164.730469 C 134.398438 164.730469 134.492188 164.636719 134.492188 164.519531 Z M 134.492188 164.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.109375 166.472656 C 135.109375 166.355469 135.015625 166.261719 134.898438 166.261719 C 134.78125 166.261719 134.6875 166.355469 134.6875 166.472656 C 134.6875 166.589844 134.78125 166.683594 134.898438 166.683594 C 135.015625 166.683594 135.109375 166.589844 135.109375 166.472656 Z M 135.109375 166.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.078125 165.828125 C 132.078125 165.710938 131.984375 165.617188 131.867188 165.617188 C 131.75 165.617188 131.65625 165.710938 131.65625 165.828125 C 131.65625 165.945312 131.75 166.039062 131.867188 166.039062 C 131.984375 166.039062 132.078125 165.945312 132.078125 165.828125 Z M 132.078125 165.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.351562 168.328125 C 129.351562 168.210938 129.257812 168.117188 129.140625 168.117188 C 129.023438 168.117188 128.929688 168.210938 128.929688 168.328125 C 128.929688 168.445312 129.023438 168.539062 129.140625 168.539062 C 129.257812 168.539062 129.351562 168.445312 129.351562 168.328125 Z M 129.351562 168.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 131.753906 163.894531 C 131.753906 163.777344 131.660156 163.683594 131.542969 163.683594 C 131.425781 163.683594 131.332031 163.777344 131.332031 163.894531 C 131.332031 164.011719 131.425781 164.105469 131.542969 164.105469 C 131.660156 164.105469 131.753906 164.011719 131.753906 163.894531 Z M 131.753906 163.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 133.242188 164.722656 C 133.242188 164.605469 133.148438 164.511719 133.03125 164.511719 C 132.914062 164.511719 132.820312 164.605469 132.820312 164.722656 C 132.820312 164.839844 132.914062 164.933594 133.03125 164.933594 C 133.148438 164.933594 133.242188 164.839844 133.242188 164.722656 Z M 133.242188 164.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.578125 165.65625 C 135.578125 165.539062 135.484375 165.445312 135.367188 165.445312 C 135.25 165.445312 135.15625 165.539062 135.15625 165.65625 C 135.15625 165.773438 135.25 165.867188 135.367188 165.867188 C 135.484375 165.867188 135.578125 165.773438 135.578125 165.65625 Z M 135.578125 165.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 133.761719 165.484375 C 133.761719 165.367188 133.667969 165.273438 133.550781 165.273438 C 133.433594 165.273438 133.339844 165.367188 133.339844 165.484375 C 133.339844 165.601562 133.433594 165.695312 133.550781 165.695312 C 133.667969 165.695312 133.761719 165.601562 133.761719 165.484375 Z M 133.761719 165.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.0625 164.828125 C 136.0625 164.710938 135.96875 164.617188 135.851562 164.617188 C 135.734375 164.617188 135.640625 164.710938 135.640625 164.828125 C 135.640625 164.945312 135.734375 165.039062 135.851562 165.039062 C 135.96875 165.039062 136.0625 164.945312 136.0625 164.828125 Z M 136.0625 164.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.683594 164.429688 C 137.683594 164.3125 137.589844 164.21875 137.472656 164.21875 C 137.355469 164.21875 137.261719 164.3125 137.261719 164.429688 C 137.261719 164.546875 137.355469 164.640625 137.472656 164.640625 C 137.589844 164.640625 137.683594 164.546875 137.683594 164.429688 Z M 137.683594 164.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.320312 168.214844 C 140.320312 168.097656 140.226562 168.003906 140.109375 168.003906 C 139.992188 168.003906 139.898438 168.097656 139.898438 168.214844 C 139.898438 168.332031 139.992188 168.425781 140.109375 168.425781 C 140.226562 168.425781 140.320312 168.332031 140.320312 168.214844 Z M 140.320312 168.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.078125 170.683594 C 141.078125 170.566406 140.984375 170.472656 140.867188 170.472656 C 140.75 170.472656 140.65625 170.566406 140.65625 170.683594 C 140.65625 170.800781 140.75 170.894531 140.867188 170.894531 C 140.984375 170.894531 141.078125 170.800781 141.078125 170.683594 Z M 141.078125 170.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.210938 169.335938 C 141.210938 169.21875 141.117188 169.125 141 169.125 C 140.882812 169.125 140.789062 169.21875 140.789062 169.335938 C 140.789062 169.453125 140.882812 169.546875 141 169.546875 C 141.117188 169.546875 141.210938 169.453125 141.210938 169.335938 Z M 141.210938 169.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136 168.839844 C 136 168.722656 135.90625 168.628906 135.789062 168.628906 C 135.671875 168.628906 135.578125 168.722656 135.578125 168.839844 C 135.578125 168.957031 135.671875 169.050781 135.789062 169.050781 C 135.90625 169.050781 136 168.957031 136 168.839844 Z M 136 168.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 133.714844 171.015625 C 133.714844 170.898438 133.621094 170.804688 133.503906 170.804688 C 133.386719 170.804688 133.292969 170.898438 133.292969 171.015625 C 133.292969 171.132812 133.386719 171.226562 133.503906 171.226562 C 133.621094 171.226562 133.714844 171.132812 133.714844 171.015625 Z M 133.714844 171.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.300781 172.652344 C 129.300781 172.535156 129.207031 172.441406 129.089844 172.441406 C 128.972656 172.441406 128.878906 172.535156 128.878906 172.652344 C 128.878906 172.769531 128.972656 172.863281 129.089844 172.863281 C 129.207031 172.863281 129.300781 172.769531 129.300781 172.652344 Z M 129.300781 172.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.671875 170.34375 C 128.671875 170.226562 128.578125 170.132812 128.460938 170.132812 C 128.34375 170.132812 128.25 170.226562 128.25 170.34375 C 128.25 170.460938 128.34375 170.554688 128.460938 170.554688 C 128.578125 170.554688 128.671875 170.460938 128.671875 170.34375 Z M 128.671875 170.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.074219 169.820312 C 125.074219 169.703125 124.980469 169.609375 124.863281 169.609375 C 124.746094 169.609375 124.652344 169.703125 124.652344 169.820312 C 124.652344 169.9375 124.746094 170.03125 124.863281 170.03125 C 124.980469 170.03125 125.074219 169.9375 125.074219 169.820312 Z M 125.074219 169.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.351562 171.175781 C 128.351562 171.058594 128.257812 170.964844 128.140625 170.964844 C 128.023438 170.964844 127.929688 171.058594 127.929688 171.175781 C 127.929688 171.292969 128.023438 171.386719 128.140625 171.386719 C 128.257812 171.386719 128.351562 171.292969 128.351562 171.175781 Z M 128.351562 171.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126.109375 170.382812 C 126.109375 170.265625 126.015625 170.171875 125.898438 170.171875 C 125.78125 170.171875 125.6875 170.265625 125.6875 170.382812 C 125.6875 170.5 125.78125 170.59375 125.898438 170.59375 C 126.015625 170.59375 126.109375 170.5 126.109375 170.382812 Z M 126.109375 170.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.246094 169.941406 C 124.246094 169.824219 124.152344 169.730469 124.035156 169.730469 C 123.917969 169.730469 123.824219 169.824219 123.824219 169.941406 C 123.824219 170.058594 123.917969 170.152344 124.035156 170.152344 C 124.152344 170.152344 124.246094 170.058594 124.246094 169.941406 Z M 124.246094 169.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.535156 165.914062 C 123.535156 165.796875 123.441406 165.703125 123.324219 165.703125 C 123.207031 165.703125 123.113281 165.796875 123.113281 165.914062 C 123.113281 166.03125 123.207031 166.125 123.324219 166.125 C 123.441406 166.125 123.535156 166.03125 123.535156 165.914062 Z M 123.535156 165.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.140625 167.046875 C 123.140625 166.929688 123.046875 166.835938 122.929688 166.835938 C 122.8125 166.835938 122.71875 166.929688 122.71875 167.046875 C 122.71875 167.164062 122.8125 167.257812 122.929688 167.257812 C 123.046875 167.257812 123.140625 167.164062 123.140625 167.046875 Z M 123.140625 167.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.949219 167.359375 C 122.949219 167.242188 122.855469 167.148438 122.738281 167.148438 C 122.621094 167.148438 122.527344 167.242188 122.527344 167.359375 C 122.527344 167.476562 122.621094 167.570312 122.738281 167.570312 C 122.855469 167.570312 122.949219 167.476562 122.949219 167.359375 Z M 122.949219 167.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.675781 166.691406 C 124.675781 166.574219 124.582031 166.480469 124.464844 166.480469 C 124.347656 166.480469 124.253906 166.574219 124.253906 166.691406 C 124.253906 166.808594 124.347656 166.902344 124.464844 166.902344 C 124.582031 166.902344 124.675781 166.808594 124.675781 166.691406 Z M 124.675781 166.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.582031 166.285156 C 121.582031 166.167969 121.488281 166.074219 121.371094 166.074219 C 121.253906 166.074219 121.160156 166.167969 121.160156 166.285156 C 121.160156 166.402344 121.253906 166.496094 121.371094 166.496094 C 121.488281 166.496094 121.582031 166.402344 121.582031 166.285156 Z M 121.582031 166.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.34375 167.976562 C 122.34375 167.859375 122.25 167.765625 122.132812 167.765625 C 122.015625 167.765625 121.921875 167.859375 121.921875 167.976562 C 121.921875 168.09375 122.015625 168.1875 122.132812 168.1875 C 122.25 168.1875 122.34375 168.09375 122.34375 167.976562 Z M 122.34375 167.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.941406 170.65625 C 119.941406 170.539062 119.847656 170.445312 119.730469 170.445312 C 119.613281 170.445312 119.519531 170.539062 119.519531 170.65625 C 119.519531 170.773438 119.613281 170.867188 119.730469 170.867188 C 119.847656 170.867188 119.941406 170.773438 119.941406 170.65625 Z M 119.941406 170.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.121094 170.480469 C 118.121094 170.363281 118.027344 170.269531 117.910156 170.269531 C 117.792969 170.269531 117.699219 170.363281 117.699219 170.480469 C 117.699219 170.597656 117.792969 170.691406 117.910156 170.691406 C 118.027344 170.691406 118.121094 170.597656 118.121094 170.480469 Z M 118.121094 170.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.746094 172.292969 C 115.746094 172.175781 115.652344 172.082031 115.535156 172.082031 C 115.417969 172.082031 115.324219 172.175781 115.324219 172.292969 C 115.324219 172.410156 115.417969 172.503906 115.535156 172.503906 C 115.652344 172.503906 115.746094 172.410156 115.746094 172.292969 Z M 115.746094 172.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.167969 170.640625 C 119.167969 170.523438 119.074219 170.429688 118.957031 170.429688 C 118.839844 170.429688 118.746094 170.523438 118.746094 170.640625 C 118.746094 170.757812 118.839844 170.851562 118.957031 170.851562 C 119.074219 170.851562 119.167969 170.757812 119.167969 170.640625 Z M 119.167969 170.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.015625 167.867188 C 116.015625 167.75 115.921875 167.65625 115.804688 167.65625 C 115.6875 167.65625 115.59375 167.75 115.59375 167.867188 C 115.59375 167.984375 115.6875 168.078125 115.804688 168.078125 C 115.921875 168.078125 116.015625 167.984375 116.015625 167.867188 Z M 116.015625 167.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.640625 166.996094 C 119.640625 166.878906 119.546875 166.785156 119.429688 166.785156 C 119.3125 166.785156 119.21875 166.878906 119.21875 166.996094 C 119.21875 167.113281 119.3125 167.207031 119.429688 167.207031 C 119.546875 167.207031 119.640625 167.113281 119.640625 166.996094 Z M 119.640625 166.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.839844 168.140625 C 120.839844 168.023438 120.746094 167.929688 120.628906 167.929688 C 120.511719 167.929688 120.417969 168.023438 120.417969 168.140625 C 120.417969 168.257812 120.511719 168.351562 120.628906 168.351562 C 120.746094 168.351562 120.839844 168.257812 120.839844 168.140625 Z M 120.839844 168.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.886719 166.808594 C 121.886719 166.691406 121.792969 166.597656 121.675781 166.597656 C 121.558594 166.597656 121.464844 166.691406 121.464844 166.808594 C 121.464844 166.925781 121.558594 167.019531 121.675781 167.019531 C 121.792969 167.019531 121.886719 166.925781 121.886719 166.808594 Z M 121.886719 166.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.175781 171.5 C 122.175781 171.382812 122.082031 171.289062 121.964844 171.289062 C 121.847656 171.289062 121.753906 171.382812 121.753906 171.5 C 121.753906 171.617188 121.847656 171.710938 121.964844 171.710938 C 122.082031 171.710938 122.175781 171.617188 122.175781 171.5 Z M 122.175781 171.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.527344 172.023438 C 122.527344 171.90625 122.433594 171.8125 122.316406 171.8125 C 122.199219 171.8125 122.105469 171.90625 122.105469 172.023438 C 122.105469 172.140625 122.199219 172.234375 122.316406 172.234375 C 122.433594 172.234375 122.527344 172.140625 122.527344 172.023438 Z M 122.527344 172.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.085938 171.511719 C 124.085938 171.394531 123.992188 171.300781 123.875 171.300781 C 123.757812 171.300781 123.664062 171.394531 123.664062 171.511719 C 123.664062 171.628906 123.757812 171.722656 123.875 171.722656 C 123.992188 171.722656 124.085938 171.628906 124.085938 171.511719 Z M 124.085938 171.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.210938 175.773438 C 122.210938 175.65625 122.117188 175.5625 122 175.5625 C 121.882812 175.5625 121.789062 175.65625 121.789062 175.773438 C 121.789062 175.890625 121.882812 175.984375 122 175.984375 C 122.117188 175.984375 122.210938 175.890625 122.210938 175.773438 Z M 122.210938 175.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.226562 179.097656 C 119.226562 178.980469 119.132812 178.886719 119.015625 178.886719 C 118.898438 178.886719 118.804688 178.980469 118.804688 179.097656 C 118.804688 179.214844 118.898438 179.308594 119.015625 179.308594 C 119.132812 179.308594 119.226562 179.214844 119.226562 179.097656 Z M 119.226562 179.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.472656 177.703125 C 119.472656 177.585938 119.378906 177.492188 119.261719 177.492188 C 119.144531 177.492188 119.050781 177.585938 119.050781 177.703125 C 119.050781 177.820312 119.144531 177.914062 119.261719 177.914062 C 119.378906 177.914062 119.472656 177.820312 119.472656 177.703125 Z M 119.472656 177.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.914062 176.527344 C 119.914062 176.410156 119.820312 176.316406 119.703125 176.316406 C 119.585938 176.316406 119.492188 176.410156 119.492188 176.527344 C 119.492188 176.644531 119.585938 176.738281 119.703125 176.738281 C 119.820312 176.738281 119.914062 176.644531 119.914062 176.527344 Z M 119.914062 176.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.769531 176.875 C 121.769531 176.757812 121.675781 176.664062 121.558594 176.664062 C 121.441406 176.664062 121.347656 176.757812 121.347656 176.875 C 121.347656 176.992188 121.441406 177.085938 121.558594 177.085938 C 121.675781 177.085938 121.769531 176.992188 121.769531 176.875 Z M 121.769531 176.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126.492188 179.320312 C 126.492188 179.203125 126.398438 179.109375 126.28125 179.109375 C 126.164062 179.109375 126.070312 179.203125 126.070312 179.320312 C 126.070312 179.4375 126.164062 179.53125 126.28125 179.53125 C 126.398438 179.53125 126.492188 179.4375 126.492188 179.320312 Z M 126.492188 179.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.007812 179.515625 C 128.007812 179.398438 127.914062 179.304688 127.796875 179.304688 C 127.679688 179.304688 127.585938 179.398438 127.585938 179.515625 C 127.585938 179.632812 127.679688 179.726562 127.796875 179.726562 C 127.914062 179.726562 128.007812 179.632812 128.007812 179.515625 Z M 128.007812 179.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.503906 176.910156 C 129.503906 176.792969 129.410156 176.699219 129.292969 176.699219 C 129.175781 176.699219 129.082031 176.792969 129.082031 176.910156 C 129.082031 177.027344 129.175781 177.121094 129.292969 177.121094 C 129.410156 177.121094 129.503906 177.027344 129.503906 176.910156 Z M 129.503906 176.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.625 175.308594 C 129.625 175.191406 129.53125 175.097656 129.414062 175.097656 C 129.296875 175.097656 129.203125 175.191406 129.203125 175.308594 C 129.203125 175.425781 129.296875 175.519531 129.414062 175.519531 C 129.53125 175.519531 129.625 175.425781 129.625 175.308594 Z M 129.625 175.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.492188 176.984375 C 127.492188 176.867188 127.398438 176.773438 127.28125 176.773438 C 127.164062 176.773438 127.070312 176.867188 127.070312 176.984375 C 127.070312 177.101562 127.164062 177.195312 127.28125 177.195312 C 127.398438 177.195312 127.492188 177.101562 127.492188 176.984375 Z M 127.492188 176.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.925781 177.167969 C 128.925781 177.050781 128.832031 176.957031 128.714844 176.957031 C 128.597656 176.957031 128.503906 177.050781 128.503906 177.167969 C 128.503906 177.285156 128.597656 177.378906 128.714844 177.378906 C 128.832031 177.378906 128.925781 177.285156 128.925781 177.167969 Z M 128.925781 177.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.195312 179.320312 C 125.195312 179.203125 125.101562 179.109375 124.984375 179.109375 C 124.867188 179.109375 124.773438 179.203125 124.773438 179.320312 C 124.773438 179.4375 124.867188 179.53125 124.984375 179.53125 C 125.101562 179.53125 125.195312 179.4375 125.195312 179.320312 Z M 125.195312 179.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.882812 181.519531 C 125.882812 181.402344 125.789062 181.308594 125.671875 181.308594 C 125.554688 181.308594 125.460938 181.402344 125.460938 181.519531 C 125.460938 181.636719 125.554688 181.730469 125.671875 181.730469 C 125.789062 181.730469 125.882812 181.636719 125.882812 181.519531 Z M 125.882812 181.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.46875 178.640625 C 123.46875 178.523438 123.375 178.429688 123.257812 178.429688 C 123.140625 178.429688 123.046875 178.523438 123.046875 178.640625 C 123.046875 178.757812 123.140625 178.851562 123.257812 178.851562 C 123.375 178.851562 123.46875 178.757812 123.46875 178.640625 Z M 123.46875 178.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.191406 180.546875 C 123.191406 180.429688 123.097656 180.335938 122.980469 180.335938 C 122.863281 180.335938 122.769531 180.429688 122.769531 180.546875 C 122.769531 180.664062 122.863281 180.757812 122.980469 180.757812 C 123.097656 180.757812 123.191406 180.664062 123.191406 180.546875 Z M 123.191406 180.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.746094 179.785156 C 119.746094 179.667969 119.652344 179.574219 119.535156 179.574219 C 119.417969 179.574219 119.324219 179.667969 119.324219 179.785156 C 119.324219 179.902344 119.417969 179.996094 119.535156 179.996094 C 119.652344 179.996094 119.746094 179.902344 119.746094 179.785156 Z M 119.746094 179.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.390625 182.925781 C 122.390625 182.808594 122.296875 182.714844 122.179688 182.714844 C 122.0625 182.714844 121.96875 182.808594 121.96875 182.925781 C 121.96875 183.042969 122.0625 183.136719 122.179688 183.136719 C 122.296875 183.136719 122.390625 183.042969 122.390625 182.925781 Z M 122.390625 182.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.367188 185.003906 C 122.367188 184.886719 122.273438 184.792969 122.15625 184.792969 C 122.039062 184.792969 121.945312 184.886719 121.945312 185.003906 C 121.945312 185.121094 122.039062 185.214844 122.15625 185.214844 C 122.273438 185.214844 122.367188 185.121094 122.367188 185.003906 Z M 122.367188 185.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.804688 184.605469 C 123.804688 184.488281 123.710938 184.394531 123.59375 184.394531 C 123.476562 184.394531 123.382812 184.488281 123.382812 184.605469 C 123.382812 184.722656 123.476562 184.816406 123.59375 184.816406 C 123.710938 184.816406 123.804688 184.722656 123.804688 184.605469 Z M 123.804688 184.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.570312 184.207031 C 122.570312 184.089844 122.476562 183.996094 122.359375 183.996094 C 122.242188 183.996094 122.148438 184.089844 122.148438 184.207031 C 122.148438 184.324219 122.242188 184.417969 122.359375 184.417969 C 122.476562 184.417969 122.570312 184.324219 122.570312 184.207031 Z M 122.570312 184.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.570312 186.28125 C 125.570312 186.164062 125.476562 186.070312 125.359375 186.070312 C 125.242188 186.070312 125.148438 186.164062 125.148438 186.28125 C 125.148438 186.398438 125.242188 186.492188 125.359375 186.492188 C 125.476562 186.492188 125.570312 186.398438 125.570312 186.28125 Z M 125.570312 186.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.074219 187.03125 C 123.074219 186.914062 122.980469 186.820312 122.863281 186.820312 C 122.746094 186.820312 122.652344 186.914062 122.652344 187.03125 C 122.652344 187.148438 122.746094 187.242188 122.863281 187.242188 C 122.980469 187.242188 123.074219 187.148438 123.074219 187.03125 Z M 123.074219 187.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.304688 186.183594 C 125.304688 186.066406 125.210938 185.972656 125.09375 185.972656 C 124.976562 185.972656 124.882812 186.066406 124.882812 186.183594 C 124.882812 186.300781 124.976562 186.394531 125.09375 186.394531 C 125.210938 186.394531 125.304688 186.300781 125.304688 186.183594 Z M 125.304688 186.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.222656 187.894531 C 128.222656 187.777344 128.128906 187.683594 128.011719 187.683594 C 127.894531 187.683594 127.800781 187.777344 127.800781 187.894531 C 127.800781 188.011719 127.894531 188.105469 128.011719 188.105469 C 128.128906 188.105469 128.222656 188.011719 128.222656 187.894531 Z M 128.222656 187.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 130.140625 186.234375 C 130.140625 186.117188 130.046875 186.023438 129.929688 186.023438 C 129.8125 186.023438 129.71875 186.117188 129.71875 186.234375 C 129.71875 186.351562 129.8125 186.445312 129.929688 186.445312 C 130.046875 186.445312 130.140625 186.351562 130.140625 186.234375 Z M 130.140625 186.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 130.027344 185.734375 C 130.027344 185.617188 129.933594 185.523438 129.816406 185.523438 C 129.699219 185.523438 129.605469 185.617188 129.605469 185.734375 C 129.605469 185.851562 129.699219 185.945312 129.816406 185.945312 C 129.933594 185.945312 130.027344 185.851562 130.027344 185.734375 Z M 130.027344 185.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 130.636719 185.972656 C 130.636719 185.855469 130.542969 185.761719 130.425781 185.761719 C 130.308594 185.761719 130.214844 185.855469 130.214844 185.972656 C 130.214844 186.089844 130.308594 186.183594 130.425781 186.183594 C 130.542969 186.183594 130.636719 186.089844 130.636719 185.972656 Z M 130.636719 185.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 131.019531 188.433594 C 131.019531 188.316406 130.925781 188.222656 130.808594 188.222656 C 130.691406 188.222656 130.597656 188.316406 130.597656 188.433594 C 130.597656 188.550781 130.691406 188.644531 130.808594 188.644531 C 130.925781 188.644531 131.019531 188.550781 131.019531 188.433594 Z M 131.019531 188.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.644531 188.996094 C 132.644531 188.878906 132.550781 188.785156 132.433594 188.785156 C 132.316406 188.785156 132.222656 188.878906 132.222656 188.996094 C 132.222656 189.113281 132.316406 189.207031 132.433594 189.207031 C 132.550781 189.207031 132.644531 189.113281 132.644531 188.996094 Z M 132.644531 188.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 134.671875 186.617188 C 134.671875 186.5 134.578125 186.40625 134.460938 186.40625 C 134.34375 186.40625 134.25 186.5 134.25 186.617188 C 134.25 186.734375 134.34375 186.828125 134.460938 186.828125 C 134.578125 186.828125 134.671875 186.734375 134.671875 186.617188 Z M 134.671875 186.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 131.402344 189.050781 C 131.402344 188.933594 131.308594 188.839844 131.191406 188.839844 C 131.074219 188.839844 130.980469 188.933594 130.980469 189.050781 C 130.980469 189.167969 131.074219 189.261719 131.191406 189.261719 C 131.308594 189.261719 131.402344 189.167969 131.402344 189.050781 Z M 131.402344 189.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 130.101562 190.546875 C 130.101562 190.429688 130.007812 190.335938 129.890625 190.335938 C 129.773438 190.335938 129.679688 190.429688 129.679688 190.546875 C 129.679688 190.664062 129.773438 190.757812 129.890625 190.757812 C 130.007812 190.757812 130.101562 190.664062 130.101562 190.546875 Z M 130.101562 190.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 130.0625 192.3125 C 130.0625 192.195312 129.96875 192.101562 129.851562 192.101562 C 129.734375 192.101562 129.640625 192.195312 129.640625 192.3125 C 129.640625 192.429688 129.734375 192.523438 129.851562 192.523438 C 129.96875 192.523438 130.0625 192.429688 130.0625 192.3125 Z M 130.0625 192.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 131.164062 190.515625 C 131.164062 190.398438 131.070312 190.304688 130.953125 190.304688 C 130.835938 190.304688 130.742188 190.398438 130.742188 190.515625 C 130.742188 190.632812 130.835938 190.726562 130.953125 190.726562 C 131.070312 190.726562 131.164062 190.632812 131.164062 190.515625 Z M 131.164062 190.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.699219 187.988281 C 132.699219 187.871094 132.605469 187.777344 132.488281 187.777344 C 132.371094 187.777344 132.277344 187.871094 132.277344 187.988281 C 132.277344 188.105469 132.371094 188.199219 132.488281 188.199219 C 132.605469 188.199219 132.699219 188.105469 132.699219 187.988281 Z M 132.699219 187.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 134.542969 189.078125 C 134.542969 188.960938 134.449219 188.867188 134.332031 188.867188 C 134.214844 188.867188 134.121094 188.960938 134.121094 189.078125 C 134.121094 189.195312 134.214844 189.289062 134.332031 189.289062 C 134.449219 189.289062 134.542969 189.195312 134.542969 189.078125 Z M 134.542969 189.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 130.988281 189.832031 C 130.988281 189.714844 130.894531 189.621094 130.777344 189.621094 C 130.660156 189.621094 130.566406 189.714844 130.566406 189.832031 C 130.566406 189.949219 130.660156 190.042969 130.777344 190.042969 C 130.894531 190.042969 130.988281 189.949219 130.988281 189.832031 Z M 130.988281 189.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 134.335938 192.886719 C 134.335938 192.769531 134.242188 192.675781 134.125 192.675781 C 134.007812 192.675781 133.914062 192.769531 133.914062 192.886719 C 133.914062 193.003906 134.007812 193.097656 134.125 193.097656 C 134.242188 193.097656 134.335938 193.003906 134.335938 192.886719 Z M 134.335938 192.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.042969 194.824219 C 138.042969 194.707031 137.949219 194.613281 137.832031 194.613281 C 137.714844 194.613281 137.621094 194.707031 137.621094 194.824219 C 137.621094 194.941406 137.714844 195.035156 137.832031 195.035156 C 137.949219 195.035156 138.042969 194.941406 138.042969 194.824219 Z M 138.042969 194.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.28125 195.554688 C 137.28125 195.4375 137.1875 195.34375 137.070312 195.34375 C 136.953125 195.34375 136.859375 195.4375 136.859375 195.554688 C 136.859375 195.671875 136.953125 195.765625 137.070312 195.765625 C 137.1875 195.765625 137.28125 195.671875 137.28125 195.554688 Z M 137.28125 195.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.777344 195.980469 C 136.777344 195.863281 136.683594 195.769531 136.566406 195.769531 C 136.449219 195.769531 136.355469 195.863281 136.355469 195.980469 C 136.355469 196.097656 136.449219 196.191406 136.566406 196.191406 C 136.683594 196.191406 136.777344 196.097656 136.777344 195.980469 Z M 136.777344 195.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.015625 197.898438 C 137.015625 197.78125 136.921875 197.6875 136.804688 197.6875 C 136.6875 197.6875 136.59375 197.78125 136.59375 197.898438 C 136.59375 198.015625 136.6875 198.109375 136.804688 198.109375 C 136.921875 198.109375 137.015625 198.015625 137.015625 197.898438 Z M 137.015625 197.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.832031 199.039062 C 135.832031 198.921875 135.738281 198.828125 135.621094 198.828125 C 135.503906 198.828125 135.410156 198.921875 135.410156 199.039062 C 135.410156 199.15625 135.503906 199.25 135.621094 199.25 C 135.738281 199.25 135.832031 199.15625 135.832031 199.039062 Z M 135.832031 199.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 133.941406 197.179688 C 133.941406 197.0625 133.847656 196.96875 133.730469 196.96875 C 133.613281 196.96875 133.519531 197.0625 133.519531 197.179688 C 133.519531 197.296875 133.613281 197.390625 133.730469 197.390625 C 133.847656 197.390625 133.941406 197.296875 133.941406 197.179688 Z M 133.941406 197.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.851562 198.101562 C 132.851562 197.984375 132.757812 197.890625 132.640625 197.890625 C 132.523438 197.890625 132.429688 197.984375 132.429688 198.101562 C 132.429688 198.21875 132.523438 198.3125 132.640625 198.3125 C 132.757812 198.3125 132.851562 198.21875 132.851562 198.101562 Z M 132.851562 198.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.210938 196.230469 C 132.210938 196.113281 132.117188 196.019531 132 196.019531 C 131.882812 196.019531 131.789062 196.113281 131.789062 196.230469 C 131.789062 196.347656 131.882812 196.441406 132 196.441406 C 132.117188 196.441406 132.210938 196.347656 132.210938 196.230469 Z M 132.210938 196.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.640625 193.917969 C 132.640625 193.800781 132.546875 193.707031 132.429688 193.707031 C 132.3125 193.707031 132.21875 193.800781 132.21875 193.917969 C 132.21875 194.035156 132.3125 194.128906 132.429688 194.128906 C 132.546875 194.128906 132.640625 194.035156 132.640625 193.917969 Z M 132.640625 193.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 131.601562 192.980469 C 131.601562 192.863281 131.507812 192.769531 131.390625 192.769531 C 131.273438 192.769531 131.179688 192.863281 131.179688 192.980469 C 131.179688 193.097656 131.273438 193.191406 131.390625 193.191406 C 131.507812 193.191406 131.601562 193.097656 131.601562 192.980469 Z M 131.601562 192.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 130.511719 194.011719 C 130.511719 193.894531 130.417969 193.800781 130.300781 193.800781 C 130.183594 193.800781 130.089844 193.894531 130.089844 194.011719 C 130.089844 194.128906 130.183594 194.222656 130.300781 194.222656 C 130.417969 194.222656 130.511719 194.128906 130.511719 194.011719 Z M 130.511719 194.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.644531 193.578125 C 132.644531 193.460938 132.550781 193.367188 132.433594 193.367188 C 132.316406 193.367188 132.222656 193.460938 132.222656 193.578125 C 132.222656 193.695312 132.316406 193.789062 132.433594 193.789062 C 132.550781 193.789062 132.644531 193.695312 132.644531 193.578125 Z M 132.644531 193.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.074219 195.269531 C 129.074219 195.152344 128.980469 195.058594 128.863281 195.058594 C 128.746094 195.058594 128.652344 195.152344 128.652344 195.269531 C 128.652344 195.386719 128.746094 195.480469 128.863281 195.480469 C 128.980469 195.480469 129.074219 195.386719 129.074219 195.269531 Z M 129.074219 195.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.007812 197.75 C 127.007812 197.632812 126.914062 197.539062 126.796875 197.539062 C 126.679688 197.539062 126.585938 197.632812 126.585938 197.75 C 126.585938 197.867188 126.679688 197.960938 126.796875 197.960938 C 126.914062 197.960938 127.007812 197.867188 127.007812 197.75 Z M 127.007812 197.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.101562 196.347656 C 124.101562 196.230469 124.007812 196.136719 123.890625 196.136719 C 123.773438 196.136719 123.679688 196.230469 123.679688 196.347656 C 123.679688 196.464844 123.773438 196.558594 123.890625 196.558594 C 124.007812 196.558594 124.101562 196.464844 124.101562 196.347656 Z M 124.101562 196.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.015625 193.925781 C 124.015625 193.808594 123.921875 193.714844 123.804688 193.714844 C 123.6875 193.714844 123.59375 193.808594 123.59375 193.925781 C 123.59375 194.042969 123.6875 194.136719 123.804688 194.136719 C 123.921875 194.136719 124.015625 194.042969 124.015625 193.925781 Z M 124.015625 193.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.632812 194.808594 C 118.632812 194.691406 118.539062 194.597656 118.421875 194.597656 C 118.304688 194.597656 118.210938 194.691406 118.210938 194.808594 C 118.210938 194.925781 118.304688 195.019531 118.421875 195.019531 C 118.539062 195.019531 118.632812 194.925781 118.632812 194.808594 Z M 118.632812 194.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.023438 193.449219 C 119.023438 193.332031 118.929688 193.238281 118.8125 193.238281 C 118.695312 193.238281 118.601562 193.332031 118.601562 193.449219 C 118.601562 193.566406 118.695312 193.660156 118.8125 193.660156 C 118.929688 193.660156 119.023438 193.566406 119.023438 193.449219 Z M 119.023438 193.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.148438 195.132812 C 118.148438 195.015625 118.054688 194.921875 117.9375 194.921875 C 117.820312 194.921875 117.726562 195.015625 117.726562 195.132812 C 117.726562 195.25 117.820312 195.34375 117.9375 195.34375 C 118.054688 195.34375 118.148438 195.25 118.148438 195.132812 Z M 118.148438 195.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.089844 197.796875 C 119.089844 197.679688 118.996094 197.585938 118.878906 197.585938 C 118.761719 197.585938 118.667969 197.679688 118.667969 197.796875 C 118.667969 197.914062 118.761719 198.007812 118.878906 198.007812 C 118.996094 198.007812 119.089844 197.914062 119.089844 197.796875 Z M 119.089844 197.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.945312 195.992188 C 115.945312 195.875 115.851562 195.78125 115.734375 195.78125 C 115.617188 195.78125 115.523438 195.875 115.523438 195.992188 C 115.523438 196.109375 115.617188 196.203125 115.734375 196.203125 C 115.851562 196.203125 115.945312 196.109375 115.945312 195.992188 Z M 115.945312 195.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.046875 194.65625 C 116.046875 194.539062 115.953125 194.445312 115.835938 194.445312 C 115.71875 194.445312 115.625 194.539062 115.625 194.65625 C 115.625 194.773438 115.71875 194.867188 115.835938 194.867188 C 115.953125 194.867188 116.046875 194.773438 116.046875 194.65625 Z M 116.046875 194.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.390625 198.207031 C 115.390625 198.089844 115.296875 197.996094 115.179688 197.996094 C 115.0625 197.996094 114.96875 198.089844 114.96875 198.207031 C 114.96875 198.324219 115.0625 198.417969 115.179688 198.417969 C 115.296875 198.417969 115.390625 198.324219 115.390625 198.207031 Z M 115.390625 198.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.644531 199.414062 C 115.644531 199.296875 115.550781 199.203125 115.433594 199.203125 C 115.316406 199.203125 115.222656 199.296875 115.222656 199.414062 C 115.222656 199.53125 115.316406 199.625 115.433594 199.625 C 115.550781 199.625 115.644531 199.53125 115.644531 199.414062 Z M 115.644531 199.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.804688 195.015625 C 116.804688 194.898438 116.710938 194.804688 116.59375 194.804688 C 116.476562 194.804688 116.382812 194.898438 116.382812 195.015625 C 116.382812 195.132812 116.476562 195.226562 116.59375 195.226562 C 116.710938 195.226562 116.804688 195.132812 116.804688 195.015625 Z M 116.804688 195.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.949219 191.425781 C 120.949219 191.308594 120.855469 191.214844 120.738281 191.214844 C 120.621094 191.214844 120.527344 191.308594 120.527344 191.425781 C 120.527344 191.542969 120.621094 191.636719 120.738281 191.636719 C 120.855469 191.636719 120.949219 191.542969 120.949219 191.425781 Z M 120.949219 191.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.671875 186.027344 C 119.671875 185.910156 119.578125 185.816406 119.460938 185.816406 C 119.34375 185.816406 119.25 185.910156 119.25 186.027344 C 119.25 186.144531 119.34375 186.238281 119.460938 186.238281 C 119.578125 186.238281 119.671875 186.144531 119.671875 186.027344 Z M 119.671875 186.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.828125 182.847656 C 118.828125 182.730469 118.734375 182.636719 118.617188 182.636719 C 118.5 182.636719 118.40625 182.730469 118.40625 182.847656 C 118.40625 182.964844 118.5 183.058594 118.617188 183.058594 C 118.734375 183.058594 118.828125 182.964844 118.828125 182.847656 Z M 118.828125 182.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.203125 184.015625 C 122.203125 183.898438 122.109375 183.804688 121.992188 183.804688 C 121.875 183.804688 121.78125 183.898438 121.78125 184.015625 C 121.78125 184.132812 121.875 184.226562 121.992188 184.226562 C 122.109375 184.226562 122.203125 184.132812 122.203125 184.015625 Z M 122.203125 184.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.171875 183.914062 C 120.171875 183.796875 120.078125 183.703125 119.960938 183.703125 C 119.84375 183.703125 119.75 183.796875 119.75 183.914062 C 119.75 184.03125 119.84375 184.125 119.960938 184.125 C 120.078125 184.125 120.171875 184.03125 120.171875 183.914062 Z M 120.171875 183.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.863281 190.109375 C 123.863281 189.992188 123.769531 189.898438 123.652344 189.898438 C 123.535156 189.898438 123.441406 189.992188 123.441406 190.109375 C 123.441406 190.226562 123.535156 190.320312 123.652344 190.320312 C 123.769531 190.320312 123.863281 190.226562 123.863281 190.109375 Z M 123.863281 190.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.019531 191.097656 C 119.019531 190.980469 118.925781 190.886719 118.808594 190.886719 C 118.691406 190.886719 118.597656 190.980469 118.597656 191.097656 C 118.597656 191.214844 118.691406 191.308594 118.808594 191.308594 C 118.925781 191.308594 119.019531 191.214844 119.019531 191.097656 Z M 119.019531 191.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.867188 191.226562 C 117.867188 191.109375 117.773438 191.015625 117.65625 191.015625 C 117.539062 191.015625 117.445312 191.109375 117.445312 191.226562 C 117.445312 191.34375 117.539062 191.4375 117.65625 191.4375 C 117.773438 191.4375 117.867188 191.34375 117.867188 191.226562 Z M 117.867188 191.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.945312 190.945312 C 119.945312 190.828125 119.851562 190.734375 119.734375 190.734375 C 119.617188 190.734375 119.523438 190.828125 119.523438 190.945312 C 119.523438 191.0625 119.617188 191.15625 119.734375 191.15625 C 119.851562 191.15625 119.945312 191.0625 119.945312 190.945312 Z M 119.945312 190.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.417969 191.980469 C 118.417969 191.863281 118.324219 191.769531 118.207031 191.769531 C 118.089844 191.769531 117.996094 191.863281 117.996094 191.980469 C 117.996094 192.097656 118.089844 192.191406 118.207031 192.191406 C 118.324219 192.191406 118.417969 192.097656 118.417969 191.980469 Z M 118.417969 191.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.546875 193.390625 C 121.546875 193.273438 121.453125 193.179688 121.335938 193.179688 C 121.21875 193.179688 121.125 193.273438 121.125 193.390625 C 121.125 193.507812 121.21875 193.601562 121.335938 193.601562 C 121.453125 193.601562 121.546875 193.507812 121.546875 193.390625 Z M 121.546875 193.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.984375 189.605469 C 119.984375 189.488281 119.890625 189.394531 119.773438 189.394531 C 119.65625 189.394531 119.5625 189.488281 119.5625 189.605469 C 119.5625 189.722656 119.65625 189.816406 119.773438 189.816406 C 119.890625 189.816406 119.984375 189.722656 119.984375 189.605469 Z M 119.984375 189.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.835938 192.03125 C 117.835938 191.914062 117.742188 191.820312 117.625 191.820312 C 117.507812 191.820312 117.414062 191.914062 117.414062 192.03125 C 117.414062 192.148438 117.507812 192.242188 117.625 192.242188 C 117.742188 192.242188 117.835938 192.148438 117.835938 192.03125 Z M 117.835938 192.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.164062 191.1875 C 116.164062 191.070312 116.070312 190.976562 115.953125 190.976562 C 115.835938 190.976562 115.742188 191.070312 115.742188 191.1875 C 115.742188 191.304688 115.835938 191.398438 115.953125 191.398438 C 116.070312 191.398438 116.164062 191.304688 116.164062 191.1875 Z M 116.164062 191.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.910156 191.304688 C 114.910156 191.1875 114.816406 191.09375 114.699219 191.09375 C 114.582031 191.09375 114.488281 191.1875 114.488281 191.304688 C 114.488281 191.421875 114.582031 191.515625 114.699219 191.515625 C 114.816406 191.515625 114.910156 191.421875 114.910156 191.304688 Z M 114.910156 191.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.425781 189.980469 C 114.425781 189.863281 114.332031 189.769531 114.214844 189.769531 C 114.097656 189.769531 114.003906 189.863281 114.003906 189.980469 C 114.003906 190.097656 114.097656 190.191406 114.214844 190.191406 C 114.332031 190.191406 114.425781 190.097656 114.425781 189.980469 Z M 114.425781 189.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.089844 188.125 C 117.089844 188.007812 116.996094 187.914062 116.878906 187.914062 C 116.761719 187.914062 116.667969 188.007812 116.667969 188.125 C 116.667969 188.242188 116.761719 188.335938 116.878906 188.335938 C 116.996094 188.335938 117.089844 188.242188 117.089844 188.125 Z M 117.089844 188.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.96875 189.835938 C 114.96875 189.71875 114.875 189.625 114.757812 189.625 C 114.640625 189.625 114.546875 189.71875 114.546875 189.835938 C 114.546875 189.953125 114.640625 190.046875 114.757812 190.046875 C 114.875 190.046875 114.96875 189.953125 114.96875 189.835938 Z M 114.96875 189.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.546875 187.351562 C 114.546875 187.234375 114.453125 187.140625 114.335938 187.140625 C 114.21875 187.140625 114.125 187.234375 114.125 187.351562 C 114.125 187.46875 114.21875 187.5625 114.335938 187.5625 C 114.453125 187.5625 114.546875 187.46875 114.546875 187.351562 Z M 114.546875 187.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.921875 186.636719 C 112.921875 186.519531 112.828125 186.425781 112.710938 186.425781 C 112.59375 186.425781 112.5 186.519531 112.5 186.636719 C 112.5 186.753906 112.59375 186.847656 112.710938 186.847656 C 112.828125 186.847656 112.921875 186.753906 112.921875 186.636719 Z M 112.921875 186.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.984375 190.804688 C 114.984375 190.6875 114.890625 190.59375 114.773438 190.59375 C 114.65625 190.59375 114.5625 190.6875 114.5625 190.804688 C 114.5625 190.921875 114.65625 191.015625 114.773438 191.015625 C 114.890625 191.015625 114.984375 190.921875 114.984375 190.804688 Z M 114.984375 190.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.457031 190.183594 C 114.457031 190.066406 114.363281 189.972656 114.246094 189.972656 C 114.128906 189.972656 114.035156 190.066406 114.035156 190.183594 C 114.035156 190.300781 114.128906 190.394531 114.246094 190.394531 C 114.363281 190.394531 114.457031 190.300781 114.457031 190.183594 Z M 114.457031 190.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.914062 191.898438 C 115.914062 191.78125 115.820312 191.6875 115.703125 191.6875 C 115.585938 191.6875 115.492188 191.78125 115.492188 191.898438 C 115.492188 192.015625 115.585938 192.109375 115.703125 192.109375 C 115.820312 192.109375 115.914062 192.015625 115.914062 191.898438 Z M 115.914062 191.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.929688 189.789062 C 115.929688 189.671875 115.835938 189.578125 115.71875 189.578125 C 115.601562 189.578125 115.507812 189.671875 115.507812 189.789062 C 115.507812 189.90625 115.601562 190 115.71875 190 C 115.835938 190 115.929688 189.90625 115.929688 189.789062 Z M 115.929688 189.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.675781 188.707031 C 115.675781 188.589844 115.582031 188.496094 115.464844 188.496094 C 115.347656 188.496094 115.253906 188.589844 115.253906 188.707031 C 115.253906 188.824219 115.347656 188.917969 115.464844 188.917969 C 115.582031 188.917969 115.675781 188.824219 115.675781 188.707031 Z M 115.675781 188.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.449219 187.085938 C 113.449219 186.96875 113.355469 186.875 113.238281 186.875 C 113.121094 186.875 113.027344 186.96875 113.027344 187.085938 C 113.027344 187.203125 113.121094 187.296875 113.238281 187.296875 C 113.355469 187.296875 113.449219 187.203125 113.449219 187.085938 Z M 113.449219 187.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.742188 187.160156 C 115.742188 187.042969 115.648438 186.949219 115.53125 186.949219 C 115.414062 186.949219 115.320312 187.042969 115.320312 187.160156 C 115.320312 187.277344 115.414062 187.371094 115.53125 187.371094 C 115.648438 187.371094 115.742188 187.277344 115.742188 187.160156 Z M 115.742188 187.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.566406 188.542969 C 115.566406 188.425781 115.472656 188.332031 115.355469 188.332031 C 115.238281 188.332031 115.144531 188.425781 115.144531 188.542969 C 115.144531 188.660156 115.238281 188.753906 115.355469 188.753906 C 115.472656 188.753906 115.566406 188.660156 115.566406 188.542969 Z M 115.566406 188.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.578125 189.859375 C 116.578125 189.742188 116.484375 189.648438 116.367188 189.648438 C 116.25 189.648438 116.15625 189.742188 116.15625 189.859375 C 116.15625 189.976562 116.25 190.070312 116.367188 190.070312 C 116.484375 190.070312 116.578125 189.976562 116.578125 189.859375 Z M 116.578125 189.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.761719 188.179688 C 114.761719 188.0625 114.667969 187.96875 114.550781 187.96875 C 114.433594 187.96875 114.339844 188.0625 114.339844 188.179688 C 114.339844 188.296875 114.433594 188.390625 114.550781 188.390625 C 114.667969 188.390625 114.761719 188.296875 114.761719 188.179688 Z M 114.761719 188.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.507812 187.886719 C 118.507812 187.769531 118.414062 187.675781 118.296875 187.675781 C 118.179688 187.675781 118.085938 187.769531 118.085938 187.886719 C 118.085938 188.003906 118.179688 188.097656 118.296875 188.097656 C 118.414062 188.097656 118.507812 188.003906 118.507812 187.886719 Z M 118.507812 187.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.671875 188.859375 C 121.671875 188.742188 121.578125 188.648438 121.460938 188.648438 C 121.34375 188.648438 121.25 188.742188 121.25 188.859375 C 121.25 188.976562 121.34375 189.070312 121.460938 189.070312 C 121.578125 189.070312 121.671875 188.976562 121.671875 188.859375 Z M 121.671875 188.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.074219 189.15625 C 119.074219 189.039062 118.980469 188.945312 118.863281 188.945312 C 118.746094 188.945312 118.652344 189.039062 118.652344 189.15625 C 118.652344 189.273438 118.746094 189.367188 118.863281 189.367188 C 118.980469 189.367188 119.074219 189.273438 119.074219 189.15625 Z M 119.074219 189.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.636719 195.035156 C 118.636719 194.917969 118.542969 194.824219 118.425781 194.824219 C 118.308594 194.824219 118.214844 194.917969 118.214844 195.035156 C 118.214844 195.152344 118.308594 195.246094 118.425781 195.246094 C 118.542969 195.246094 118.636719 195.152344 118.636719 195.035156 Z M 118.636719 195.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.519531 196.105469 C 118.519531 195.988281 118.425781 195.894531 118.308594 195.894531 C 118.191406 195.894531 118.097656 195.988281 118.097656 196.105469 C 118.097656 196.222656 118.191406 196.316406 118.308594 196.316406 C 118.425781 196.316406 118.519531 196.222656 118.519531 196.105469 Z M 118.519531 196.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.015625 198.460938 C 119.015625 198.34375 118.921875 198.25 118.804688 198.25 C 118.6875 198.25 118.59375 198.34375 118.59375 198.460938 C 118.59375 198.578125 118.6875 198.671875 118.804688 198.671875 C 118.921875 198.671875 119.015625 198.578125 119.015625 198.460938 Z M 119.015625 198.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.738281 198.769531 C 118.738281 198.652344 118.644531 198.558594 118.527344 198.558594 C 118.410156 198.558594 118.316406 198.652344 118.316406 198.769531 C 118.316406 198.886719 118.410156 198.980469 118.527344 198.980469 C 118.644531 198.980469 118.738281 198.886719 118.738281 198.769531 Z M 118.738281 198.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.558594 200.230469 C 115.558594 200.113281 115.464844 200.019531 115.347656 200.019531 C 115.230469 200.019531 115.136719 200.113281 115.136719 200.230469 C 115.136719 200.347656 115.230469 200.441406 115.347656 200.441406 C 115.464844 200.441406 115.558594 200.347656 115.558594 200.230469 Z M 115.558594 200.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.546875 198.859375 C 116.546875 198.742188 116.453125 198.648438 116.335938 198.648438 C 116.21875 198.648438 116.125 198.742188 116.125 198.859375 C 116.125 198.976562 116.21875 199.070312 116.335938 199.070312 C 116.453125 199.070312 116.546875 198.976562 116.546875 198.859375 Z M 116.546875 198.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.421875 198.734375 C 112.421875 198.617188 112.328125 198.523438 112.210938 198.523438 C 112.09375 198.523438 112 198.617188 112 198.734375 C 112 198.851562 112.09375 198.945312 112.210938 198.945312 C 112.328125 198.945312 112.421875 198.851562 112.421875 198.734375 Z M 112.421875 198.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.40625 200.511719 C 108.40625 200.394531 108.3125 200.300781 108.195312 200.300781 C 108.078125 200.300781 107.984375 200.394531 107.984375 200.511719 C 107.984375 200.628906 108.078125 200.722656 108.195312 200.722656 C 108.3125 200.722656 108.40625 200.628906 108.40625 200.511719 Z M 108.40625 200.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.628906 202.109375 C 107.628906 201.992188 107.535156 201.898438 107.417969 201.898438 C 107.300781 201.898438 107.207031 201.992188 107.207031 202.109375 C 107.207031 202.226562 107.300781 202.320312 107.417969 202.320312 C 107.535156 202.320312 107.628906 202.226562 107.628906 202.109375 Z M 107.628906 202.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.601562 204.164062 C 104.601562 204.046875 104.507812 203.953125 104.390625 203.953125 C 104.273438 203.953125 104.179688 204.046875 104.179688 204.164062 C 104.179688 204.28125 104.273438 204.375 104.390625 204.375 C 104.507812 204.375 104.601562 204.28125 104.601562 204.164062 Z M 104.601562 204.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.402344 201.804688 C 105.402344 201.6875 105.308594 201.59375 105.191406 201.59375 C 105.074219 201.59375 104.980469 201.6875 104.980469 201.804688 C 104.980469 201.921875 105.074219 202.015625 105.191406 202.015625 C 105.308594 202.015625 105.402344 201.921875 105.402344 201.804688 Z M 105.402344 201.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.574219 201.480469 C 106.574219 201.363281 106.480469 201.269531 106.363281 201.269531 C 106.246094 201.269531 106.152344 201.363281 106.152344 201.480469 C 106.152344 201.597656 106.246094 201.691406 106.363281 201.691406 C 106.480469 201.691406 106.574219 201.597656 106.574219 201.480469 Z M 106.574219 201.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.199219 198.332031 C 108.199219 198.214844 108.105469 198.121094 107.988281 198.121094 C 107.871094 198.121094 107.777344 198.214844 107.777344 198.332031 C 107.777344 198.449219 107.871094 198.542969 107.988281 198.542969 C 108.105469 198.542969 108.199219 198.449219 108.199219 198.332031 Z M 108.199219 198.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.78125 194.003906 C 107.78125 193.886719 107.6875 193.792969 107.570312 193.792969 C 107.453125 193.792969 107.359375 193.886719 107.359375 194.003906 C 107.359375 194.121094 107.453125 194.214844 107.570312 194.214844 C 107.6875 194.214844 107.78125 194.121094 107.78125 194.003906 Z M 107.78125 194.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.203125 191.152344 C 103.203125 191.035156 103.109375 190.941406 102.992188 190.941406 C 102.875 190.941406 102.78125 191.035156 102.78125 191.152344 C 102.78125 191.269531 102.875 191.363281 102.992188 191.363281 C 103.109375 191.363281 103.203125 191.269531 103.203125 191.152344 Z M 103.203125 191.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.882812 192.910156 C 103.882812 192.792969 103.789062 192.699219 103.671875 192.699219 C 103.554688 192.699219 103.460938 192.792969 103.460938 192.910156 C 103.460938 193.027344 103.554688 193.121094 103.671875 193.121094 C 103.789062 193.121094 103.882812 193.027344 103.882812 192.910156 Z M 103.882812 192.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.792969 194.53125 C 100.792969 194.414062 100.699219 194.320312 100.582031 194.320312 C 100.464844 194.320312 100.371094 194.414062 100.371094 194.53125 C 100.371094 194.648438 100.464844 194.742188 100.582031 194.742188 C 100.699219 194.742188 100.792969 194.648438 100.792969 194.53125 Z M 100.792969 194.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.582031 197.109375 C 105.582031 196.992188 105.488281 196.898438 105.371094 196.898438 C 105.253906 196.898438 105.160156 196.992188 105.160156 197.109375 C 105.160156 197.226562 105.253906 197.320312 105.371094 197.320312 C 105.488281 197.320312 105.582031 197.226562 105.582031 197.109375 Z M 105.582031 197.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.75 198.980469 C 104.75 198.863281 104.65625 198.769531 104.539062 198.769531 C 104.421875 198.769531 104.328125 198.863281 104.328125 198.980469 C 104.328125 199.097656 104.421875 199.191406 104.539062 199.191406 C 104.65625 199.191406 104.75 199.097656 104.75 198.980469 Z M 104.75 198.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.484375 200.167969 C 103.484375 200.050781 103.390625 199.957031 103.273438 199.957031 C 103.15625 199.957031 103.0625 200.050781 103.0625 200.167969 C 103.0625 200.285156 103.15625 200.378906 103.273438 200.378906 C 103.390625 200.378906 103.484375 200.285156 103.484375 200.167969 Z M 103.484375 200.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.488281 198.367188 C 105.488281 198.25 105.394531 198.15625 105.277344 198.15625 C 105.160156 198.15625 105.066406 198.25 105.066406 198.367188 C 105.066406 198.484375 105.160156 198.578125 105.277344 198.578125 C 105.394531 198.578125 105.488281 198.484375 105.488281 198.367188 Z M 105.488281 198.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.625 199.363281 C 103.625 199.246094 103.53125 199.152344 103.414062 199.152344 C 103.296875 199.152344 103.203125 199.246094 103.203125 199.363281 C 103.203125 199.480469 103.296875 199.574219 103.414062 199.574219 C 103.53125 199.574219 103.625 199.480469 103.625 199.363281 Z M 103.625 199.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.128906 200.945312 C 105.128906 200.828125 105.035156 200.734375 104.917969 200.734375 C 104.800781 200.734375 104.707031 200.828125 104.707031 200.945312 C 104.707031 201.0625 104.800781 201.15625 104.917969 201.15625 C 105.035156 201.15625 105.128906 201.0625 105.128906 200.945312 Z M 105.128906 200.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 102.316406 198.113281 C 102.316406 197.996094 102.222656 197.902344 102.105469 197.902344 C 101.988281 197.902344 101.894531 197.996094 101.894531 198.113281 C 101.894531 198.230469 101.988281 198.324219 102.105469 198.324219 C 102.222656 198.324219 102.316406 198.230469 102.316406 198.113281 Z M 102.316406 198.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.75 198.792969 C 98.75 198.675781 98.65625 198.582031 98.539062 198.582031 C 98.421875 198.582031 98.328125 198.675781 98.328125 198.792969 C 98.328125 198.910156 98.421875 199.003906 98.539062 199.003906 C 98.65625 199.003906 98.75 198.910156 98.75 198.792969 Z M 98.75 198.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.308594 199.203125 C 100.308594 199.085938 100.214844 198.992188 100.097656 198.992188 C 99.980469 198.992188 99.886719 199.085938 99.886719 199.203125 C 99.886719 199.320312 99.980469 199.414062 100.097656 199.414062 C 100.214844 199.414062 100.308594 199.320312 100.308594 199.203125 Z M 100.308594 199.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.394531 201.84375 C 99.394531 201.726562 99.300781 201.632812 99.183594 201.632812 C 99.066406 201.632812 98.972656 201.726562 98.972656 201.84375 C 98.972656 201.960938 99.066406 202.054688 99.183594 202.054688 C 99.300781 202.054688 99.394531 201.960938 99.394531 201.84375 Z M 99.394531 201.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.839844 203.640625 C 97.839844 203.523438 97.746094 203.429688 97.628906 203.429688 C 97.511719 203.429688 97.417969 203.523438 97.417969 203.640625 C 97.417969 203.757812 97.511719 203.851562 97.628906 203.851562 C 97.746094 203.851562 97.839844 203.757812 97.839844 203.640625 Z M 97.839844 203.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.945312 202.722656 C 97.945312 202.605469 97.851562 202.511719 97.734375 202.511719 C 97.617188 202.511719 97.523438 202.605469 97.523438 202.722656 C 97.523438 202.839844 97.617188 202.933594 97.734375 202.933594 C 97.851562 202.933594 97.945312 202.839844 97.945312 202.722656 Z M 97.945312 202.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.015625 202.628906 C 99.015625 202.511719 98.921875 202.417969 98.804688 202.417969 C 98.6875 202.417969 98.59375 202.511719 98.59375 202.628906 C 98.59375 202.746094 98.6875 202.839844 98.804688 202.839844 C 98.921875 202.839844 99.015625 202.746094 99.015625 202.628906 Z M 99.015625 202.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.640625 205.164062 C 100.640625 205.046875 100.546875 204.953125 100.429688 204.953125 C 100.3125 204.953125 100.21875 205.046875 100.21875 205.164062 C 100.21875 205.28125 100.3125 205.375 100.429688 205.375 C 100.546875 205.375 100.640625 205.28125 100.640625 205.164062 Z M 100.640625 205.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.859375 201.535156 C 104.859375 201.417969 104.765625 201.324219 104.648438 201.324219 C 104.53125 201.324219 104.4375 201.417969 104.4375 201.535156 C 104.4375 201.652344 104.53125 201.746094 104.648438 201.746094 C 104.765625 201.746094 104.859375 201.652344 104.859375 201.535156 Z M 104.859375 201.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.949219 202.035156 C 108.949219 201.917969 108.855469 201.824219 108.738281 201.824219 C 108.621094 201.824219 108.527344 201.917969 108.527344 202.035156 C 108.527344 202.152344 108.621094 202.246094 108.738281 202.246094 C 108.855469 202.246094 108.949219 202.152344 108.949219 202.035156 Z M 108.949219 202.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.859375 204.648438 C 104.859375 204.53125 104.765625 204.4375 104.648438 204.4375 C 104.53125 204.4375 104.4375 204.53125 104.4375 204.648438 C 104.4375 204.765625 104.53125 204.859375 104.648438 204.859375 C 104.765625 204.859375 104.859375 204.765625 104.859375 204.648438 Z M 104.859375 204.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.164062 207.738281 C 106.164062 207.621094 106.070312 207.527344 105.953125 207.527344 C 105.835938 207.527344 105.742188 207.621094 105.742188 207.738281 C 105.742188 207.855469 105.835938 207.949219 105.953125 207.949219 C 106.070312 207.949219 106.164062 207.855469 106.164062 207.738281 Z M 106.164062 207.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.890625 209.257812 C 112.890625 209.140625 112.796875 209.046875 112.679688 209.046875 C 112.5625 209.046875 112.46875 209.140625 112.46875 209.257812 C 112.46875 209.375 112.5625 209.46875 112.679688 209.46875 C 112.796875 209.46875 112.890625 209.375 112.890625 209.257812 Z M 112.890625 209.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.804688 207.292969 C 115.804688 207.175781 115.710938 207.082031 115.59375 207.082031 C 115.476562 207.082031 115.382812 207.175781 115.382812 207.292969 C 115.382812 207.410156 115.476562 207.503906 115.59375 207.503906 C 115.710938 207.503906 115.804688 207.410156 115.804688 207.292969 Z M 115.804688 207.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.898438 205.6875 C 113.898438 205.570312 113.804688 205.476562 113.6875 205.476562 C 113.570312 205.476562 113.476562 205.570312 113.476562 205.6875 C 113.476562 205.804688 113.570312 205.898438 113.6875 205.898438 C 113.804688 205.898438 113.898438 205.804688 113.898438 205.6875 Z M 113.898438 205.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.644531 204.488281 C 110.644531 204.371094 110.550781 204.277344 110.433594 204.277344 C 110.316406 204.277344 110.222656 204.371094 110.222656 204.488281 C 110.222656 204.605469 110.316406 204.699219 110.433594 204.699219 C 110.550781 204.699219 110.644531 204.605469 110.644531 204.488281 Z M 110.644531 204.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.84375 206.035156 C 107.84375 205.917969 107.75 205.824219 107.632812 205.824219 C 107.515625 205.824219 107.421875 205.917969 107.421875 206.035156 C 107.421875 206.152344 107.515625 206.246094 107.632812 206.246094 C 107.75 206.246094 107.84375 206.152344 107.84375 206.035156 Z M 107.84375 206.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.152344 206.640625 C 109.152344 206.523438 109.058594 206.429688 108.941406 206.429688 C 108.824219 206.429688 108.730469 206.523438 108.730469 206.640625 C 108.730469 206.757812 108.824219 206.851562 108.941406 206.851562 C 109.058594 206.851562 109.152344 206.757812 109.152344 206.640625 Z M 109.152344 206.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.929688 207.582031 C 110.929688 207.464844 110.835938 207.371094 110.71875 207.371094 C 110.601562 207.371094 110.507812 207.464844 110.507812 207.582031 C 110.507812 207.699219 110.601562 207.792969 110.71875 207.792969 C 110.835938 207.792969 110.929688 207.699219 110.929688 207.582031 Z M 110.929688 207.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.273438 205.683594 C 109.273438 205.566406 109.179688 205.472656 109.0625 205.472656 C 108.945312 205.472656 108.851562 205.566406 108.851562 205.683594 C 108.851562 205.800781 108.945312 205.894531 109.0625 205.894531 C 109.179688 205.894531 109.273438 205.800781 109.273438 205.683594 Z M 109.273438 205.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.425781 206.976562 C 110.425781 206.859375 110.332031 206.765625 110.214844 206.765625 C 110.097656 206.765625 110.003906 206.859375 110.003906 206.976562 C 110.003906 207.09375 110.097656 207.1875 110.214844 207.1875 C 110.332031 207.1875 110.425781 207.09375 110.425781 206.976562 Z M 110.425781 206.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.863281 207.09375 C 110.863281 206.976562 110.769531 206.882812 110.652344 206.882812 C 110.535156 206.882812 110.441406 206.976562 110.441406 207.09375 C 110.441406 207.210938 110.535156 207.304688 110.652344 207.304688 C 110.769531 207.304688 110.863281 207.210938 110.863281 207.09375 Z M 110.863281 207.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.46875 209.496094 C 107.46875 209.378906 107.375 209.285156 107.257812 209.285156 C 107.140625 209.285156 107.046875 209.378906 107.046875 209.496094 C 107.046875 209.613281 107.140625 209.707031 107.257812 209.707031 C 107.375 209.707031 107.46875 209.613281 107.46875 209.496094 Z M 107.46875 209.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.933594 209.359375 C 107.933594 209.242188 107.839844 209.148438 107.722656 209.148438 C 107.605469 209.148438 107.511719 209.242188 107.511719 209.359375 C 107.511719 209.476562 107.605469 209.570312 107.722656 209.570312 C 107.839844 209.570312 107.933594 209.476562 107.933594 209.359375 Z M 107.933594 209.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.289062 208.914062 C 107.289062 208.796875 107.195312 208.703125 107.078125 208.703125 C 106.960938 208.703125 106.867188 208.796875 106.867188 208.914062 C 106.867188 209.03125 106.960938 209.125 107.078125 209.125 C 107.195312 209.125 107.289062 209.03125 107.289062 208.914062 Z M 107.289062 208.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.746094 209.808594 C 108.746094 209.691406 108.652344 209.597656 108.535156 209.597656 C 108.417969 209.597656 108.324219 209.691406 108.324219 209.808594 C 108.324219 209.925781 108.417969 210.019531 108.535156 210.019531 C 108.652344 210.019531 108.746094 209.925781 108.746094 209.808594 Z M 108.746094 209.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.1875 211.207031 C 104.1875 211.089844 104.09375 210.996094 103.976562 210.996094 C 103.859375 210.996094 103.765625 211.089844 103.765625 211.207031 C 103.765625 211.324219 103.859375 211.417969 103.976562 211.417969 C 104.09375 211.417969 104.1875 211.324219 104.1875 211.207031 Z M 104.1875 211.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.507812 207.917969 C 103.507812 207.800781 103.414062 207.707031 103.296875 207.707031 C 103.179688 207.707031 103.085938 207.800781 103.085938 207.917969 C 103.085938 208.035156 103.179688 208.128906 103.296875 208.128906 C 103.414062 208.128906 103.507812 208.035156 103.507812 207.917969 Z M 103.507812 207.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.988281 208.320312 C 105.988281 208.203125 105.894531 208.109375 105.777344 208.109375 C 105.660156 208.109375 105.566406 208.203125 105.566406 208.320312 C 105.566406 208.4375 105.660156 208.53125 105.777344 208.53125 C 105.894531 208.53125 105.988281 208.4375 105.988281 208.320312 Z M 105.988281 208.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.128906 207.472656 C 106.128906 207.355469 106.035156 207.261719 105.917969 207.261719 C 105.800781 207.261719 105.707031 207.355469 105.707031 207.472656 C 105.707031 207.589844 105.800781 207.683594 105.917969 207.683594 C 106.035156 207.683594 106.128906 207.589844 106.128906 207.472656 Z M 106.128906 207.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.226562 208.578125 C 106.226562 208.460938 106.132812 208.367188 106.015625 208.367188 C 105.898438 208.367188 105.804688 208.460938 105.804688 208.578125 C 105.804688 208.695312 105.898438 208.789062 106.015625 208.789062 C 106.132812 208.789062 106.226562 208.695312 106.226562 208.578125 Z M 106.226562 208.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.496094 208.503906 C 104.496094 208.386719 104.402344 208.292969 104.285156 208.292969 C 104.167969 208.292969 104.074219 208.386719 104.074219 208.503906 C 104.074219 208.621094 104.167969 208.714844 104.285156 208.714844 C 104.402344 208.714844 104.496094 208.621094 104.496094 208.503906 Z M 104.496094 208.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.496094 207.179688 C 105.496094 207.0625 105.402344 206.96875 105.285156 206.96875 C 105.167969 206.96875 105.074219 207.0625 105.074219 207.179688 C 105.074219 207.296875 105.167969 207.390625 105.285156 207.390625 C 105.402344 207.390625 105.496094 207.296875 105.496094 207.179688 Z M 105.496094 207.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.484375 208.171875 C 105.484375 208.054688 105.390625 207.960938 105.273438 207.960938 C 105.15625 207.960938 105.0625 208.054688 105.0625 208.171875 C 105.0625 208.289062 105.15625 208.382812 105.273438 208.382812 C 105.390625 208.382812 105.484375 208.289062 105.484375 208.171875 Z M 105.484375 208.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.371094 210.265625 C 103.371094 210.148438 103.277344 210.054688 103.160156 210.054688 C 103.042969 210.054688 102.949219 210.148438 102.949219 210.265625 C 102.949219 210.382812 103.042969 210.476562 103.160156 210.476562 C 103.277344 210.476562 103.371094 210.382812 103.371094 210.265625 Z M 103.371094 210.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 102.710938 207.347656 C 102.710938 207.230469 102.617188 207.136719 102.5 207.136719 C 102.382812 207.136719 102.289062 207.230469 102.289062 207.347656 C 102.289062 207.464844 102.382812 207.558594 102.5 207.558594 C 102.617188 207.558594 102.710938 207.464844 102.710938 207.347656 Z M 102.710938 207.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.125 206.957031 C 105.125 206.839844 105.03125 206.746094 104.914062 206.746094 C 104.796875 206.746094 104.703125 206.839844 104.703125 206.957031 C 104.703125 207.074219 104.796875 207.167969 104.914062 207.167969 C 105.03125 207.167969 105.125 207.074219 105.125 206.957031 Z M 105.125 206.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.003906 209.9375 C 106.003906 209.820312 105.910156 209.726562 105.792969 209.726562 C 105.675781 209.726562 105.582031 209.820312 105.582031 209.9375 C 105.582031 210.054688 105.675781 210.148438 105.792969 210.148438 C 105.910156 210.148438 106.003906 210.054688 106.003906 209.9375 Z M 106.003906 209.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.945312 208.410156 C 105.945312 208.292969 105.851562 208.199219 105.734375 208.199219 C 105.617188 208.199219 105.523438 208.292969 105.523438 208.410156 C 105.523438 208.527344 105.617188 208.621094 105.734375 208.621094 C 105.851562 208.621094 105.945312 208.527344 105.945312 208.410156 Z M 105.945312 208.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.042969 207.660156 C 107.042969 207.542969 106.949219 207.449219 106.832031 207.449219 C 106.714844 207.449219 106.621094 207.542969 106.621094 207.660156 C 106.621094 207.777344 106.714844 207.871094 106.832031 207.871094 C 106.949219 207.871094 107.042969 207.777344 107.042969 207.660156 Z M 107.042969 207.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.175781 205.730469 C 108.175781 205.613281 108.082031 205.519531 107.964844 205.519531 C 107.847656 205.519531 107.753906 205.613281 107.753906 205.730469 C 107.753906 205.847656 107.847656 205.941406 107.964844 205.941406 C 108.082031 205.941406 108.175781 205.847656 108.175781 205.730469 Z M 108.175781 205.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.457031 204.386719 C 106.457031 204.269531 106.363281 204.175781 106.246094 204.175781 C 106.128906 204.175781 106.035156 204.269531 106.035156 204.386719 C 106.035156 204.503906 106.128906 204.597656 106.246094 204.597656 C 106.363281 204.597656 106.457031 204.503906 106.457031 204.386719 Z M 106.457031 204.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 102.113281 203.402344 C 102.113281 203.285156 102.019531 203.191406 101.902344 203.191406 C 101.785156 203.191406 101.691406 203.285156 101.691406 203.402344 C 101.691406 203.519531 101.785156 203.613281 101.902344 203.613281 C 102.019531 203.613281 102.113281 203.519531 102.113281 203.402344 Z M 102.113281 203.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.011719 204.335938 C 101.011719 204.21875 100.917969 204.125 100.800781 204.125 C 100.683594 204.125 100.589844 204.21875 100.589844 204.335938 C 100.589844 204.453125 100.683594 204.546875 100.800781 204.546875 C 100.917969 204.546875 101.011719 204.453125 101.011719 204.335938 Z M 101.011719 204.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.636719 204.128906 C 100.636719 204.011719 100.542969 203.917969 100.425781 203.917969 C 100.308594 203.917969 100.214844 204.011719 100.214844 204.128906 C 100.214844 204.246094 100.308594 204.339844 100.425781 204.339844 C 100.542969 204.339844 100.636719 204.246094 100.636719 204.128906 Z M 100.636719 204.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.742188 200.9375 C 99.742188 200.820312 99.648438 200.726562 99.53125 200.726562 C 99.414062 200.726562 99.320312 200.820312 99.320312 200.9375 C 99.320312 201.054688 99.414062 201.148438 99.53125 201.148438 C 99.648438 201.148438 99.742188 201.054688 99.742188 200.9375 Z M 99.742188 200.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 102.847656 202.265625 C 102.847656 202.148438 102.753906 202.054688 102.636719 202.054688 C 102.519531 202.054688 102.425781 202.148438 102.425781 202.265625 C 102.425781 202.382812 102.519531 202.476562 102.636719 202.476562 C 102.753906 202.476562 102.847656 202.382812 102.847656 202.265625 Z M 102.847656 202.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.890625 201.390625 C 106.890625 201.273438 106.796875 201.179688 106.679688 201.179688 C 106.5625 201.179688 106.46875 201.273438 106.46875 201.390625 C 106.46875 201.507812 106.5625 201.601562 106.679688 201.601562 C 106.796875 201.601562 106.890625 201.507812 106.890625 201.390625 Z M 106.890625 201.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.863281 198.53125 C 106.863281 198.414062 106.769531 198.320312 106.652344 198.320312 C 106.535156 198.320312 106.441406 198.414062 106.441406 198.53125 C 106.441406 198.648438 106.535156 198.742188 106.652344 198.742188 C 106.769531 198.742188 106.863281 198.648438 106.863281 198.53125 Z M 106.863281 198.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.480469 196.875 C 104.480469 196.757812 104.386719 196.664062 104.269531 196.664062 C 104.152344 196.664062 104.058594 196.757812 104.058594 196.875 C 104.058594 196.992188 104.152344 197.085938 104.269531 197.085938 C 104.386719 197.085938 104.480469 196.992188 104.480469 196.875 Z M 104.480469 196.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.601562 196.976562 C 100.601562 196.859375 100.507812 196.765625 100.390625 196.765625 C 100.273438 196.765625 100.179688 196.859375 100.179688 196.976562 C 100.179688 197.09375 100.273438 197.1875 100.390625 197.1875 C 100.507812 197.1875 100.601562 197.09375 100.601562 196.976562 Z M 100.601562 196.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.417969 192.46875 C 104.417969 192.351562 104.324219 192.257812 104.207031 192.257812 C 104.089844 192.257812 103.996094 192.351562 103.996094 192.46875 C 103.996094 192.585938 104.089844 192.679688 104.207031 192.679688 C 104.324219 192.679688 104.417969 192.585938 104.417969 192.46875 Z M 104.417969 192.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.121094 193.003906 C 105.121094 192.886719 105.027344 192.792969 104.910156 192.792969 C 104.792969 192.792969 104.699219 192.886719 104.699219 193.003906 C 104.699219 193.121094 104.792969 193.214844 104.910156 193.214844 C 105.027344 193.214844 105.121094 193.121094 105.121094 193.003906 Z M 105.121094 193.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.710938 191.191406 C 104.710938 191.074219 104.617188 190.980469 104.5 190.980469 C 104.382812 190.980469 104.289062 191.074219 104.289062 191.191406 C 104.289062 191.308594 104.382812 191.402344 104.5 191.402344 C 104.617188 191.402344 104.710938 191.308594 104.710938 191.191406 Z M 104.710938 191.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.386719 192.511719 C 105.386719 192.394531 105.292969 192.300781 105.175781 192.300781 C 105.058594 192.300781 104.964844 192.394531 104.964844 192.511719 C 104.964844 192.628906 105.058594 192.722656 105.175781 192.722656 C 105.292969 192.722656 105.386719 192.628906 105.386719 192.511719 Z M 105.386719 192.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.179688 194.195312 C 106.179688 194.078125 106.085938 193.984375 105.96875 193.984375 C 105.851562 193.984375 105.757812 194.078125 105.757812 194.195312 C 105.757812 194.3125 105.851562 194.40625 105.96875 194.40625 C 106.085938 194.40625 106.179688 194.3125 106.179688 194.195312 Z M 106.179688 194.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.785156 195.007812 C 107.785156 194.890625 107.691406 194.796875 107.574219 194.796875 C 107.457031 194.796875 107.363281 194.890625 107.363281 195.007812 C 107.363281 195.125 107.457031 195.21875 107.574219 195.21875 C 107.691406 195.21875 107.785156 195.125 107.785156 195.007812 Z M 107.785156 195.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.992188 196.230469 C 108.992188 196.113281 108.898438 196.019531 108.78125 196.019531 C 108.664062 196.019531 108.570312 196.113281 108.570312 196.230469 C 108.570312 196.347656 108.664062 196.441406 108.78125 196.441406 C 108.898438 196.441406 108.992188 196.347656 108.992188 196.230469 Z M 108.992188 196.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.738281 197.019531 C 108.738281 196.902344 108.644531 196.808594 108.527344 196.808594 C 108.410156 196.808594 108.316406 196.902344 108.316406 197.019531 C 108.316406 197.136719 108.410156 197.230469 108.527344 197.230469 C 108.644531 197.230469 108.738281 197.136719 108.738281 197.019531 Z M 108.738281 197.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.695312 197.019531 C 108.695312 196.902344 108.601562 196.808594 108.484375 196.808594 C 108.367188 196.808594 108.273438 196.902344 108.273438 197.019531 C 108.273438 197.136719 108.367188 197.230469 108.484375 197.230469 C 108.601562 197.230469 108.695312 197.136719 108.695312 197.019531 Z M 108.695312 197.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.035156 196.5625 C 111.035156 196.445312 110.941406 196.351562 110.824219 196.351562 C 110.707031 196.351562 110.613281 196.445312 110.613281 196.5625 C 110.613281 196.679688 110.707031 196.773438 110.824219 196.773438 C 110.941406 196.773438 111.035156 196.679688 111.035156 196.5625 Z M 111.035156 196.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.421875 194.136719 C 113.421875 194.019531 113.328125 193.925781 113.210938 193.925781 C 113.09375 193.925781 113 194.019531 113 194.136719 C 113 194.253906 113.09375 194.347656 113.210938 194.347656 C 113.328125 194.347656 113.421875 194.253906 113.421875 194.136719 Z M 113.421875 194.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.976562 193.664062 C 109.976562 193.546875 109.882812 193.453125 109.765625 193.453125 C 109.648438 193.453125 109.554688 193.546875 109.554688 193.664062 C 109.554688 193.78125 109.648438 193.875 109.765625 193.875 C 109.882812 193.875 109.976562 193.78125 109.976562 193.664062 Z M 109.976562 193.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.039062 191.984375 C 108.039062 191.867188 107.945312 191.773438 107.828125 191.773438 C 107.710938 191.773438 107.617188 191.867188 107.617188 191.984375 C 107.617188 192.101562 107.710938 192.195312 107.828125 192.195312 C 107.945312 192.195312 108.039062 192.101562 108.039062 191.984375 Z M 108.039062 191.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.703125 191.125 C 103.703125 191.007812 103.609375 190.914062 103.492188 190.914062 C 103.375 190.914062 103.28125 191.007812 103.28125 191.125 C 103.28125 191.242188 103.375 191.335938 103.492188 191.335938 C 103.609375 191.335938 103.703125 191.242188 103.703125 191.125 Z M 103.703125 191.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.570312 192.660156 C 104.570312 192.542969 104.476562 192.449219 104.359375 192.449219 C 104.242188 192.449219 104.148438 192.542969 104.148438 192.660156 C 104.148438 192.777344 104.242188 192.871094 104.359375 192.871094 C 104.476562 192.871094 104.570312 192.777344 104.570312 192.660156 Z M 104.570312 192.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.707031 190.910156 C 104.707031 190.792969 104.613281 190.699219 104.496094 190.699219 C 104.378906 190.699219 104.285156 190.792969 104.285156 190.910156 C 104.285156 191.027344 104.378906 191.121094 104.496094 191.121094 C 104.613281 191.121094 104.707031 191.027344 104.707031 190.910156 Z M 104.707031 190.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.421875 192.527344 C 107.421875 192.410156 107.328125 192.316406 107.210938 192.316406 C 107.09375 192.316406 107 192.410156 107 192.527344 C 107 192.644531 107.09375 192.738281 107.210938 192.738281 C 107.328125 192.738281 107.421875 192.644531 107.421875 192.527344 Z M 107.421875 192.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.054688 192.449219 C 107.054688 192.332031 106.960938 192.238281 106.84375 192.238281 C 106.726562 192.238281 106.632812 192.332031 106.632812 192.449219 C 106.632812 192.566406 106.726562 192.660156 106.84375 192.660156 C 106.960938 192.660156 107.054688 192.566406 107.054688 192.449219 Z M 107.054688 192.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.308594 193.625 C 104.308594 193.507812 104.214844 193.414062 104.097656 193.414062 C 103.980469 193.414062 103.886719 193.507812 103.886719 193.625 C 103.886719 193.742188 103.980469 193.835938 104.097656 193.835938 C 104.214844 193.835938 104.308594 193.742188 104.308594 193.625 Z M 104.308594 193.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.375 194.4375 C 104.375 194.320312 104.28125 194.226562 104.164062 194.226562 C 104.046875 194.226562 103.953125 194.320312 103.953125 194.4375 C 103.953125 194.554688 104.046875 194.648438 104.164062 194.648438 C 104.28125 194.648438 104.375 194.554688 104.375 194.4375 Z M 104.375 194.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.496094 192.574219 C 103.496094 192.457031 103.402344 192.363281 103.285156 192.363281 C 103.167969 192.363281 103.074219 192.457031 103.074219 192.574219 C 103.074219 192.691406 103.167969 192.785156 103.285156 192.785156 C 103.402344 192.785156 103.496094 192.691406 103.496094 192.574219 Z M 103.496094 192.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 102.886719 193.71875 C 102.886719 193.601562 102.792969 193.507812 102.675781 193.507812 C 102.558594 193.507812 102.464844 193.601562 102.464844 193.71875 C 102.464844 193.835938 102.558594 193.929688 102.675781 193.929688 C 102.792969 193.929688 102.886719 193.835938 102.886719 193.71875 Z M 102.886719 193.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.003906 196.304688 C 103.003906 196.1875 102.910156 196.09375 102.792969 196.09375 C 102.675781 196.09375 102.582031 196.1875 102.582031 196.304688 C 102.582031 196.421875 102.675781 196.515625 102.792969 196.515625 C 102.910156 196.515625 103.003906 196.421875 103.003906 196.304688 Z M 103.003906 196.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.320312 194.859375 C 100.320312 194.742188 100.226562 194.648438 100.109375 194.648438 C 99.992188 194.648438 99.898438 194.742188 99.898438 194.859375 C 99.898438 194.976562 99.992188 195.070312 100.109375 195.070312 C 100.226562 195.070312 100.320312 194.976562 100.320312 194.859375 Z M 100.320312 194.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.121094 195.195312 C 101.121094 195.078125 101.027344 194.984375 100.910156 194.984375 C 100.792969 194.984375 100.699219 195.078125 100.699219 195.195312 C 100.699219 195.3125 100.792969 195.40625 100.910156 195.40625 C 101.027344 195.40625 101.121094 195.3125 101.121094 195.195312 Z M 101.121094 195.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.066406 193.121094 C 101.066406 193.003906 100.972656 192.910156 100.855469 192.910156 C 100.738281 192.910156 100.644531 193.003906 100.644531 193.121094 C 100.644531 193.238281 100.738281 193.332031 100.855469 193.332031 C 100.972656 193.332031 101.066406 193.238281 101.066406 193.121094 Z M 101.066406 193.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.457031 191.664062 C 101.457031 191.546875 101.363281 191.453125 101.246094 191.453125 C 101.128906 191.453125 101.035156 191.546875 101.035156 191.664062 C 101.035156 191.78125 101.128906 191.875 101.246094 191.875 C 101.363281 191.875 101.457031 191.78125 101.457031 191.664062 Z M 101.457031 191.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.992188 190.53125 C 98.992188 190.414062 98.898438 190.320312 98.78125 190.320312 C 98.664062 190.320312 98.570312 190.414062 98.570312 190.53125 C 98.570312 190.648438 98.664062 190.742188 98.78125 190.742188 C 98.898438 190.742188 98.992188 190.648438 98.992188 190.53125 Z M 98.992188 190.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.519531 189.984375 C 101.519531 189.867188 101.425781 189.773438 101.308594 189.773438 C 101.191406 189.773438 101.097656 189.867188 101.097656 189.984375 C 101.097656 190.101562 101.191406 190.195312 101.308594 190.195312 C 101.425781 190.195312 101.519531 190.101562 101.519531 189.984375 Z M 101.519531 189.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.734375 186.800781 C 100.734375 186.683594 100.640625 186.589844 100.523438 186.589844 C 100.40625 186.589844 100.3125 186.683594 100.3125 186.800781 C 100.3125 186.917969 100.40625 187.011719 100.523438 187.011719 C 100.640625 187.011719 100.734375 186.917969 100.734375 186.800781 Z M 100.734375 186.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.867188 187.097656 C 103.867188 186.980469 103.773438 186.886719 103.65625 186.886719 C 103.539062 186.886719 103.445312 186.980469 103.445312 187.097656 C 103.445312 187.214844 103.539062 187.308594 103.65625 187.308594 C 103.773438 187.308594 103.867188 187.214844 103.867188 187.097656 Z M 103.867188 187.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 102.859375 185.195312 C 102.859375 185.078125 102.765625 184.984375 102.648438 184.984375 C 102.53125 184.984375 102.4375 185.078125 102.4375 185.195312 C 102.4375 185.3125 102.53125 185.40625 102.648438 185.40625 C 102.765625 185.40625 102.859375 185.3125 102.859375 185.195312 Z M 102.859375 185.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.523438 185.667969 C 106.523438 185.550781 106.429688 185.457031 106.3125 185.457031 C 106.195312 185.457031 106.101562 185.550781 106.101562 185.667969 C 106.101562 185.785156 106.195312 185.878906 106.3125 185.878906 C 106.429688 185.878906 106.523438 185.785156 106.523438 185.667969 Z M 106.523438 185.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.796875 186.535156 C 105.796875 186.417969 105.703125 186.324219 105.585938 186.324219 C 105.46875 186.324219 105.375 186.417969 105.375 186.535156 C 105.375 186.652344 105.46875 186.746094 105.585938 186.746094 C 105.703125 186.746094 105.796875 186.652344 105.796875 186.535156 Z M 105.796875 186.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.027344 189.085938 C 104.027344 188.96875 103.933594 188.875 103.816406 188.875 C 103.699219 188.875 103.605469 188.96875 103.605469 189.085938 C 103.605469 189.203125 103.699219 189.296875 103.816406 189.296875 C 103.933594 189.296875 104.027344 189.203125 104.027344 189.085938 Z M 104.027344 189.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.605469 190.203125 C 100.605469 190.085938 100.511719 189.992188 100.394531 189.992188 C 100.277344 189.992188 100.183594 190.085938 100.183594 190.203125 C 100.183594 190.320312 100.277344 190.414062 100.394531 190.414062 C 100.511719 190.414062 100.605469 190.320312 100.605469 190.203125 Z M 100.605469 190.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.214844 189.464844 C 96.214844 189.347656 96.121094 189.253906 96.003906 189.253906 C 95.886719 189.253906 95.792969 189.347656 95.792969 189.464844 C 95.792969 189.582031 95.886719 189.675781 96.003906 189.675781 C 96.121094 189.675781 96.214844 189.582031 96.214844 189.464844 Z M 96.214844 189.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.878906 190.128906 C 97.878906 190.011719 97.785156 189.917969 97.667969 189.917969 C 97.550781 189.917969 97.457031 190.011719 97.457031 190.128906 C 97.457031 190.246094 97.550781 190.339844 97.667969 190.339844 C 97.785156 190.339844 97.878906 190.246094 97.878906 190.128906 Z M 97.878906 190.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.332031 189.683594 C 98.332031 189.566406 98.238281 189.472656 98.121094 189.472656 C 98.003906 189.472656 97.910156 189.566406 97.910156 189.683594 C 97.910156 189.800781 98.003906 189.894531 98.121094 189.894531 C 98.238281 189.894531 98.332031 189.800781 98.332031 189.683594 Z M 98.332031 189.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.140625 191.972656 C 96.140625 191.855469 96.046875 191.761719 95.929688 191.761719 C 95.8125 191.761719 95.71875 191.855469 95.71875 191.972656 C 95.71875 192.089844 95.8125 192.183594 95.929688 192.183594 C 96.046875 192.183594 96.140625 192.089844 96.140625 191.972656 Z M 96.140625 191.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.363281 192.324219 C 97.363281 192.207031 97.269531 192.113281 97.152344 192.113281 C 97.035156 192.113281 96.941406 192.207031 96.941406 192.324219 C 96.941406 192.441406 97.035156 192.535156 97.152344 192.535156 C 97.269531 192.535156 97.363281 192.441406 97.363281 192.324219 Z M 97.363281 192.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.539062 193.261719 C 97.539062 193.144531 97.445312 193.050781 97.328125 193.050781 C 97.210938 193.050781 97.117188 193.144531 97.117188 193.261719 C 97.117188 193.378906 97.210938 193.472656 97.328125 193.472656 C 97.445312 193.472656 97.539062 193.378906 97.539062 193.261719 Z M 97.539062 193.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.050781 195.65625 C 100.050781 195.539062 99.957031 195.445312 99.839844 195.445312 C 99.722656 195.445312 99.628906 195.539062 99.628906 195.65625 C 99.628906 195.773438 99.722656 195.867188 99.839844 195.867188 C 99.957031 195.867188 100.050781 195.773438 100.050781 195.65625 Z M 100.050781 195.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 102.726562 195.609375 C 102.726562 195.492188 102.632812 195.398438 102.515625 195.398438 C 102.398438 195.398438 102.304688 195.492188 102.304688 195.609375 C 102.304688 195.726562 102.398438 195.820312 102.515625 195.820312 C 102.632812 195.820312 102.726562 195.726562 102.726562 195.609375 Z M 102.726562 195.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.007812 192.230469 C 101.007812 192.113281 100.914062 192.019531 100.796875 192.019531 C 100.679688 192.019531 100.585938 192.113281 100.585938 192.230469 C 100.585938 192.347656 100.679688 192.441406 100.796875 192.441406 C 100.914062 192.441406 101.007812 192.347656 101.007812 192.230469 Z M 101.007812 192.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.308594 191.691406 C 101.308594 191.574219 101.214844 191.480469 101.097656 191.480469 C 100.980469 191.480469 100.886719 191.574219 100.886719 191.691406 C 100.886719 191.808594 100.980469 191.902344 101.097656 191.902344 C 101.214844 191.902344 101.308594 191.808594 101.308594 191.691406 Z M 101.308594 191.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.878906 194.085938 C 99.878906 193.96875 99.785156 193.875 99.667969 193.875 C 99.550781 193.875 99.457031 193.96875 99.457031 194.085938 C 99.457031 194.203125 99.550781 194.296875 99.667969 194.296875 C 99.785156 194.296875 99.878906 194.203125 99.878906 194.085938 Z M 99.878906 194.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.210938 196.109375 C 101.210938 195.992188 101.117188 195.898438 101 195.898438 C 100.882812 195.898438 100.789062 195.992188 100.789062 196.109375 C 100.789062 196.226562 100.882812 196.320312 101 196.320312 C 101.117188 196.320312 101.210938 196.226562 101.210938 196.109375 Z M 101.210938 196.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.660156 195.738281 C 99.660156 195.621094 99.566406 195.527344 99.449219 195.527344 C 99.332031 195.527344 99.238281 195.621094 99.238281 195.738281 C 99.238281 195.855469 99.332031 195.949219 99.449219 195.949219 C 99.566406 195.949219 99.660156 195.855469 99.660156 195.738281 Z M 99.660156 195.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.238281 195.511719 C 103.238281 195.394531 103.144531 195.300781 103.027344 195.300781 C 102.910156 195.300781 102.816406 195.394531 102.816406 195.511719 C 102.816406 195.628906 102.910156 195.722656 103.027344 195.722656 C 103.144531 195.722656 103.238281 195.628906 103.238281 195.511719 Z M 103.238281 195.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.480469 195.507812 C 103.480469 195.390625 103.386719 195.296875 103.269531 195.296875 C 103.152344 195.296875 103.058594 195.390625 103.058594 195.507812 C 103.058594 195.625 103.152344 195.71875 103.269531 195.71875 C 103.386719 195.71875 103.480469 195.625 103.480469 195.507812 Z M 103.480469 195.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.203125 197.71875 C 105.203125 197.601562 105.109375 197.507812 104.992188 197.507812 C 104.875 197.507812 104.78125 197.601562 104.78125 197.71875 C 104.78125 197.835938 104.875 197.929688 104.992188 197.929688 C 105.109375 197.929688 105.203125 197.835938 105.203125 197.71875 Z M 105.203125 197.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.601562 194.792969 C 107.601562 194.675781 107.507812 194.582031 107.390625 194.582031 C 107.273438 194.582031 107.179688 194.675781 107.179688 194.792969 C 107.179688 194.910156 107.273438 195.003906 107.390625 195.003906 C 107.507812 195.003906 107.601562 194.910156 107.601562 194.792969 Z M 107.601562 194.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.199219 196.617188 C 110.199219 196.5 110.105469 196.40625 109.988281 196.40625 C 109.871094 196.40625 109.777344 196.5 109.777344 196.617188 C 109.777344 196.734375 109.871094 196.828125 109.988281 196.828125 C 110.105469 196.828125 110.199219 196.734375 110.199219 196.617188 Z M 110.199219 196.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.957031 196.828125 C 112.957031 196.710938 112.863281 196.617188 112.746094 196.617188 C 112.628906 196.617188 112.535156 196.710938 112.535156 196.828125 C 112.535156 196.945312 112.628906 197.039062 112.746094 197.039062 C 112.863281 197.039062 112.957031 196.945312 112.957031 196.828125 Z M 112.957031 196.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.699219 196.589844 C 111.699219 196.472656 111.605469 196.378906 111.488281 196.378906 C 111.371094 196.378906 111.277344 196.472656 111.277344 196.589844 C 111.277344 196.707031 111.371094 196.800781 111.488281 196.800781 C 111.605469 196.800781 111.699219 196.707031 111.699219 196.589844 Z M 111.699219 196.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.746094 194.554688 C 112.746094 194.4375 112.652344 194.34375 112.535156 194.34375 C 112.417969 194.34375 112.324219 194.4375 112.324219 194.554688 C 112.324219 194.671875 112.417969 194.765625 112.535156 194.765625 C 112.652344 194.765625 112.746094 194.671875 112.746094 194.554688 Z M 112.746094 194.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.710938 195.765625 C 110.710938 195.648438 110.617188 195.554688 110.5 195.554688 C 110.382812 195.554688 110.289062 195.648438 110.289062 195.765625 C 110.289062 195.882812 110.382812 195.976562 110.5 195.976562 C 110.617188 195.976562 110.710938 195.882812 110.710938 195.765625 Z M 110.710938 195.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.449219 192.722656 C 112.449219 192.605469 112.355469 192.511719 112.238281 192.511719 C 112.121094 192.511719 112.027344 192.605469 112.027344 192.722656 C 112.027344 192.839844 112.121094 192.933594 112.238281 192.933594 C 112.355469 192.933594 112.449219 192.839844 112.449219 192.722656 Z M 112.449219 192.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.507812 197.042969 C 112.507812 196.925781 112.414062 196.832031 112.296875 196.832031 C 112.179688 196.832031 112.085938 196.925781 112.085938 197.042969 C 112.085938 197.160156 112.179688 197.253906 112.296875 197.253906 C 112.414062 197.253906 112.507812 197.160156 112.507812 197.042969 Z M 112.507812 197.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.078125 195.632812 C 114.078125 195.515625 113.984375 195.421875 113.867188 195.421875 C 113.75 195.421875 113.65625 195.515625 113.65625 195.632812 C 113.65625 195.75 113.75 195.84375 113.867188 195.84375 C 113.984375 195.84375 114.078125 195.75 114.078125 195.632812 Z M 114.078125 195.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.164062 196.042969 C 115.164062 195.925781 115.070312 195.832031 114.953125 195.832031 C 114.835938 195.832031 114.742188 195.925781 114.742188 196.042969 C 114.742188 196.160156 114.835938 196.253906 114.953125 196.253906 C 115.070312 196.253906 115.164062 196.160156 115.164062 196.042969 Z M 115.164062 196.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.195312 193.160156 C 114.195312 193.042969 114.101562 192.949219 113.984375 192.949219 C 113.867188 192.949219 113.773438 193.042969 113.773438 193.160156 C 113.773438 193.277344 113.867188 193.371094 113.984375 193.371094 C 114.101562 193.371094 114.195312 193.277344 114.195312 193.160156 Z M 114.195312 193.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.605469 192.269531 C 115.605469 192.152344 115.511719 192.058594 115.394531 192.058594 C 115.277344 192.058594 115.183594 192.152344 115.183594 192.269531 C 115.183594 192.386719 115.277344 192.480469 115.394531 192.480469 C 115.511719 192.480469 115.605469 192.386719 115.605469 192.269531 Z M 115.605469 192.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.421875 190.65625 C 115.421875 190.539062 115.328125 190.445312 115.210938 190.445312 C 115.09375 190.445312 115 190.539062 115 190.65625 C 115 190.773438 115.09375 190.867188 115.210938 190.867188 C 115.328125 190.867188 115.421875 190.773438 115.421875 190.65625 Z M 115.421875 190.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.960938 193.730469 C 117.960938 193.613281 117.867188 193.519531 117.75 193.519531 C 117.632812 193.519531 117.539062 193.613281 117.539062 193.730469 C 117.539062 193.847656 117.632812 193.941406 117.75 193.941406 C 117.867188 193.941406 117.960938 193.847656 117.960938 193.730469 Z M 117.960938 193.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.40625 192.363281 C 120.40625 192.246094 120.3125 192.152344 120.195312 192.152344 C 120.078125 192.152344 119.984375 192.246094 119.984375 192.363281 C 119.984375 192.480469 120.078125 192.574219 120.195312 192.574219 C 120.3125 192.574219 120.40625 192.480469 120.40625 192.363281 Z M 120.40625 192.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.738281 194.929688 C 122.738281 194.8125 122.644531 194.71875 122.527344 194.71875 C 122.410156 194.71875 122.316406 194.8125 122.316406 194.929688 C 122.316406 195.046875 122.410156 195.140625 122.527344 195.140625 C 122.644531 195.140625 122.738281 195.046875 122.738281 194.929688 Z M 122.738281 194.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.316406 192.226562 C 122.316406 192.109375 122.222656 192.015625 122.105469 192.015625 C 121.988281 192.015625 121.894531 192.109375 121.894531 192.226562 C 121.894531 192.34375 121.988281 192.4375 122.105469 192.4375 C 122.222656 192.4375 122.316406 192.34375 122.316406 192.226562 Z M 122.316406 192.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.699219 192.785156 C 122.699219 192.667969 122.605469 192.574219 122.488281 192.574219 C 122.371094 192.574219 122.277344 192.667969 122.277344 192.785156 C 122.277344 192.902344 122.371094 192.996094 122.488281 192.996094 C 122.605469 192.996094 122.699219 192.902344 122.699219 192.785156 Z M 122.699219 192.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.382812 189.859375 C 122.382812 189.742188 122.289062 189.648438 122.171875 189.648438 C 122.054688 189.648438 121.960938 189.742188 121.960938 189.859375 C 121.960938 189.976562 122.054688 190.070312 122.171875 190.070312 C 122.289062 190.070312 122.382812 189.976562 122.382812 189.859375 Z M 122.382812 189.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.710938 193.757812 C 127.710938 193.640625 127.617188 193.546875 127.5 193.546875 C 127.382812 193.546875 127.289062 193.640625 127.289062 193.757812 C 127.289062 193.875 127.382812 193.96875 127.5 193.96875 C 127.617188 193.96875 127.710938 193.875 127.710938 193.757812 Z M 127.710938 193.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 130.773438 192.445312 C 130.773438 192.328125 130.679688 192.234375 130.5625 192.234375 C 130.445312 192.234375 130.351562 192.328125 130.351562 192.445312 C 130.351562 192.5625 130.445312 192.65625 130.5625 192.65625 C 130.679688 192.65625 130.773438 192.5625 130.773438 192.445312 Z M 130.773438 192.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 131.660156 189.542969 C 131.660156 189.425781 131.566406 189.332031 131.449219 189.332031 C 131.332031 189.332031 131.238281 189.425781 131.238281 189.542969 C 131.238281 189.660156 131.332031 189.753906 131.449219 189.753906 C 131.566406 189.753906 131.660156 189.660156 131.660156 189.542969 Z M 131.660156 189.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 131.417969 189.847656 C 131.417969 189.730469 131.324219 189.636719 131.207031 189.636719 C 131.089844 189.636719 130.996094 189.730469 130.996094 189.847656 C 130.996094 189.964844 131.089844 190.058594 131.207031 190.058594 C 131.324219 190.058594 131.417969 189.964844 131.417969 189.847656 Z M 131.417969 189.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.492188 188.433594 C 135.492188 188.316406 135.398438 188.222656 135.28125 188.222656 C 135.164062 188.222656 135.070312 188.316406 135.070312 188.433594 C 135.070312 188.550781 135.164062 188.644531 135.28125 188.644531 C 135.398438 188.644531 135.492188 188.550781 135.492188 188.433594 Z M 135.492188 188.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 131.71875 186.316406 C 131.71875 186.199219 131.625 186.105469 131.507812 186.105469 C 131.390625 186.105469 131.296875 186.199219 131.296875 186.316406 C 131.296875 186.433594 131.390625 186.527344 131.507812 186.527344 C 131.625 186.527344 131.71875 186.433594 131.71875 186.316406 Z M 131.71875 186.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.617188 185.023438 C 136.617188 184.90625 136.523438 184.8125 136.40625 184.8125 C 136.289062 184.8125 136.195312 184.90625 136.195312 185.023438 C 136.195312 185.140625 136.289062 185.234375 136.40625 185.234375 C 136.523438 185.234375 136.617188 185.140625 136.617188 185.023438 Z M 136.617188 185.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.597656 185.945312 C 139.597656 185.828125 139.503906 185.734375 139.386719 185.734375 C 139.269531 185.734375 139.175781 185.828125 139.175781 185.945312 C 139.175781 186.0625 139.269531 186.15625 139.386719 186.15625 C 139.503906 186.15625 139.597656 186.0625 139.597656 185.945312 Z M 139.597656 185.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.238281 186.4375 C 140.238281 186.320312 140.144531 186.226562 140.027344 186.226562 C 139.910156 186.226562 139.816406 186.320312 139.816406 186.4375 C 139.816406 186.554688 139.910156 186.648438 140.027344 186.648438 C 140.144531 186.648438 140.238281 186.554688 140.238281 186.4375 Z M 140.238281 186.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.019531 187.359375 C 142.019531 187.242188 141.925781 187.148438 141.808594 187.148438 C 141.691406 187.148438 141.597656 187.242188 141.597656 187.359375 C 141.597656 187.476562 141.691406 187.570312 141.808594 187.570312 C 141.925781 187.570312 142.019531 187.476562 142.019531 187.359375 Z M 142.019531 187.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.757812 189.089844 C 141.757812 188.972656 141.664062 188.878906 141.546875 188.878906 C 141.429688 188.878906 141.335938 188.972656 141.335938 189.089844 C 141.335938 189.207031 141.429688 189.300781 141.546875 189.300781 C 141.664062 189.300781 141.757812 189.207031 141.757812 189.089844 Z M 141.757812 189.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.519531 190.046875 C 144.519531 189.929688 144.425781 189.835938 144.308594 189.835938 C 144.191406 189.835938 144.097656 189.929688 144.097656 190.046875 C 144.097656 190.164062 144.191406 190.257812 144.308594 190.257812 C 144.425781 190.257812 144.519531 190.164062 144.519531 190.046875 Z M 144.519531 190.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.9375 190.289062 C 146.9375 190.171875 146.84375 190.078125 146.726562 190.078125 C 146.609375 190.078125 146.515625 190.171875 146.515625 190.289062 C 146.515625 190.40625 146.609375 190.5 146.726562 190.5 C 146.84375 190.5 146.9375 190.40625 146.9375 190.289062 Z M 146.9375 190.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.363281 190.175781 C 149.363281 190.058594 149.269531 189.964844 149.152344 189.964844 C 149.035156 189.964844 148.941406 190.058594 148.941406 190.175781 C 148.941406 190.292969 149.035156 190.386719 149.152344 190.386719 C 149.269531 190.386719 149.363281 190.292969 149.363281 190.175781 Z M 149.363281 190.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.199219 189.601562 C 146.199219 189.484375 146.105469 189.390625 145.988281 189.390625 C 145.871094 189.390625 145.777344 189.484375 145.777344 189.601562 C 145.777344 189.71875 145.871094 189.8125 145.988281 189.8125 C 146.105469 189.8125 146.199219 189.71875 146.199219 189.601562 Z M 146.199219 189.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.117188 191.433594 C 144.117188 191.316406 144.023438 191.222656 143.90625 191.222656 C 143.789062 191.222656 143.695312 191.316406 143.695312 191.433594 C 143.695312 191.550781 143.789062 191.644531 143.90625 191.644531 C 144.023438 191.644531 144.117188 191.550781 144.117188 191.433594 Z M 144.117188 191.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.183594 193.539062 C 140.183594 193.421875 140.089844 193.328125 139.972656 193.328125 C 139.855469 193.328125 139.761719 193.421875 139.761719 193.539062 C 139.761719 193.65625 139.855469 193.75 139.972656 193.75 C 140.089844 193.75 140.183594 193.65625 140.183594 193.539062 Z M 140.183594 193.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.78125 194.707031 C 141.78125 194.589844 141.6875 194.496094 141.570312 194.496094 C 141.453125 194.496094 141.359375 194.589844 141.359375 194.707031 C 141.359375 194.824219 141.453125 194.917969 141.570312 194.917969 C 141.6875 194.917969 141.78125 194.824219 141.78125 194.707031 Z M 141.78125 194.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.253906 194.015625 C 137.253906 193.898438 137.160156 193.804688 137.042969 193.804688 C 136.925781 193.804688 136.832031 193.898438 136.832031 194.015625 C 136.832031 194.132812 136.925781 194.226562 137.042969 194.226562 C 137.160156 194.226562 137.253906 194.132812 137.253906 194.015625 Z M 137.253906 194.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.375 197.066406 C 138.375 196.949219 138.28125 196.855469 138.164062 196.855469 C 138.046875 196.855469 137.953125 196.949219 137.953125 197.066406 C 137.953125 197.183594 138.046875 197.277344 138.164062 197.277344 C 138.28125 197.277344 138.375 197.183594 138.375 197.066406 Z M 138.375 197.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.277344 195.816406 C 135.277344 195.699219 135.183594 195.605469 135.066406 195.605469 C 134.949219 195.605469 134.855469 195.699219 134.855469 195.816406 C 134.855469 195.933594 134.949219 196.027344 135.066406 196.027344 C 135.183594 196.027344 135.277344 195.933594 135.277344 195.816406 Z M 135.277344 195.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 133.335938 195.761719 C 133.335938 195.644531 133.242188 195.550781 133.125 195.550781 C 133.007812 195.550781 132.914062 195.644531 132.914062 195.761719 C 132.914062 195.878906 133.007812 195.972656 133.125 195.972656 C 133.242188 195.972656 133.335938 195.878906 133.335938 195.761719 Z M 133.335938 195.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 133.226562 193.652344 C 133.226562 193.535156 133.132812 193.441406 133.015625 193.441406 C 132.898438 193.441406 132.804688 193.535156 132.804688 193.652344 C 132.804688 193.769531 132.898438 193.863281 133.015625 193.863281 C 133.132812 193.863281 133.226562 193.769531 133.226562 193.652344 Z M 133.226562 193.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.503906 190.707031 C 132.503906 190.589844 132.410156 190.496094 132.292969 190.496094 C 132.175781 190.496094 132.082031 190.589844 132.082031 190.707031 C 132.082031 190.824219 132.175781 190.917969 132.292969 190.917969 C 132.410156 190.917969 132.503906 190.824219 132.503906 190.707031 Z M 132.503906 190.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 130.800781 189.15625 C 130.800781 189.039062 130.707031 188.945312 130.589844 188.945312 C 130.472656 188.945312 130.378906 189.039062 130.378906 189.15625 C 130.378906 189.273438 130.472656 189.367188 130.589844 189.367188 C 130.707031 189.367188 130.800781 189.273438 130.800781 189.15625 Z M 130.800781 189.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.144531 186.234375 C 129.144531 186.117188 129.050781 186.023438 128.933594 186.023438 C 128.816406 186.023438 128.722656 186.117188 128.722656 186.234375 C 128.722656 186.351562 128.816406 186.445312 128.933594 186.445312 C 129.050781 186.445312 129.144531 186.351562 129.144531 186.234375 Z M 129.144531 186.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 130.730469 188.390625 C 130.730469 188.273438 130.636719 188.179688 130.519531 188.179688 C 130.402344 188.179688 130.308594 188.273438 130.308594 188.390625 C 130.308594 188.507812 130.402344 188.601562 130.519531 188.601562 C 130.636719 188.601562 130.730469 188.507812 130.730469 188.390625 Z M 130.730469 188.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.355469 187.023438 C 129.355469 186.90625 129.261719 186.8125 129.144531 186.8125 C 129.027344 186.8125 128.933594 186.90625 128.933594 187.023438 C 128.933594 187.140625 129.027344 187.234375 129.144531 187.234375 C 129.261719 187.234375 129.355469 187.140625 129.355469 187.023438 Z M 129.355469 187.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.050781 184.546875 C 129.050781 184.429688 128.957031 184.335938 128.839844 184.335938 C 128.722656 184.335938 128.628906 184.429688 128.628906 184.546875 C 128.628906 184.664062 128.722656 184.757812 128.839844 184.757812 C 128.957031 184.757812 129.050781 184.664062 129.050781 184.546875 Z M 129.050781 184.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.285156 186.566406 C 128.285156 186.449219 128.191406 186.355469 128.074219 186.355469 C 127.957031 186.355469 127.863281 186.449219 127.863281 186.566406 C 127.863281 186.683594 127.957031 186.777344 128.074219 186.777344 C 128.191406 186.777344 128.285156 186.683594 128.285156 186.566406 Z M 128.285156 186.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126.742188 187.527344 C 126.742188 187.410156 126.648438 187.316406 126.53125 187.316406 C 126.414062 187.316406 126.320312 187.410156 126.320312 187.527344 C 126.320312 187.644531 126.414062 187.738281 126.53125 187.738281 C 126.648438 187.738281 126.742188 187.644531 126.742188 187.527344 Z M 126.742188 187.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.9375 188.089844 C 127.9375 187.972656 127.84375 187.878906 127.726562 187.878906 C 127.609375 187.878906 127.515625 187.972656 127.515625 188.089844 C 127.515625 188.207031 127.609375 188.300781 127.726562 188.300781 C 127.84375 188.300781 127.9375 188.207031 127.9375 188.089844 Z M 127.9375 188.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.394531 188.371094 C 125.394531 188.253906 125.300781 188.160156 125.183594 188.160156 C 125.066406 188.160156 124.972656 188.253906 124.972656 188.371094 C 124.972656 188.488281 125.066406 188.582031 125.183594 188.582031 C 125.300781 188.582031 125.394531 188.488281 125.394531 188.371094 Z M 125.394531 188.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.410156 186.417969 C 123.410156 186.300781 123.316406 186.207031 123.199219 186.207031 C 123.082031 186.207031 122.988281 186.300781 122.988281 186.417969 C 122.988281 186.535156 123.082031 186.628906 123.199219 186.628906 C 123.316406 186.628906 123.410156 186.535156 123.410156 186.417969 Z M 123.410156 186.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.542969 184.878906 C 122.542969 184.761719 122.449219 184.667969 122.332031 184.667969 C 122.214844 184.667969 122.121094 184.761719 122.121094 184.878906 C 122.121094 184.996094 122.214844 185.089844 122.332031 185.089844 C 122.449219 185.089844 122.542969 184.996094 122.542969 184.878906 Z M 122.542969 184.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.910156 185.449219 C 120.910156 185.332031 120.816406 185.238281 120.699219 185.238281 C 120.582031 185.238281 120.488281 185.332031 120.488281 185.449219 C 120.488281 185.566406 120.582031 185.660156 120.699219 185.660156 C 120.816406 185.660156 120.910156 185.566406 120.910156 185.449219 Z M 120.910156 185.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.9375 184.304688 C 121.9375 184.1875 121.84375 184.09375 121.726562 184.09375 C 121.609375 184.09375 121.515625 184.1875 121.515625 184.304688 C 121.515625 184.421875 121.609375 184.515625 121.726562 184.515625 C 121.84375 184.515625 121.9375 184.421875 121.9375 184.304688 Z M 121.9375 184.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.859375 190.800781 C 121.859375 190.683594 121.765625 190.589844 121.648438 190.589844 C 121.53125 190.589844 121.4375 190.683594 121.4375 190.800781 C 121.4375 190.917969 121.53125 191.011719 121.648438 191.011719 C 121.765625 191.011719 121.859375 190.917969 121.859375 190.800781 Z M 121.859375 190.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.21875 188.222656 C 125.21875 188.105469 125.125 188.011719 125.007812 188.011719 C 124.890625 188.011719 124.796875 188.105469 124.796875 188.222656 C 124.796875 188.339844 124.890625 188.433594 125.007812 188.433594 C 125.125 188.433594 125.21875 188.339844 125.21875 188.222656 Z M 125.21875 188.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.949219 190.640625 C 127.949219 190.523438 127.855469 190.429688 127.738281 190.429688 C 127.621094 190.429688 127.527344 190.523438 127.527344 190.640625 C 127.527344 190.757812 127.621094 190.851562 127.738281 190.851562 C 127.855469 190.851562 127.949219 190.757812 127.949219 190.640625 Z M 127.949219 190.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.3125 187.414062 C 127.3125 187.296875 127.21875 187.203125 127.101562 187.203125 C 126.984375 187.203125 126.890625 187.296875 126.890625 187.414062 C 126.890625 187.53125 126.984375 187.625 127.101562 187.625 C 127.21875 187.625 127.3125 187.53125 127.3125 187.414062 Z M 127.3125 187.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.683594 187.089844 C 124.683594 186.972656 124.589844 186.878906 124.472656 186.878906 C 124.355469 186.878906 124.261719 186.972656 124.261719 187.089844 C 124.261719 187.207031 124.355469 187.300781 124.472656 187.300781 C 124.589844 187.300781 124.683594 187.207031 124.683594 187.089844 Z M 124.683594 187.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.527344 186.910156 C 125.527344 186.792969 125.433594 186.699219 125.316406 186.699219 C 125.199219 186.699219 125.105469 186.792969 125.105469 186.910156 C 125.105469 187.027344 125.199219 187.121094 125.316406 187.121094 C 125.433594 187.121094 125.527344 187.027344 125.527344 186.910156 Z M 125.527344 186.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.84375 184.917969 C 127.84375 184.800781 127.75 184.707031 127.632812 184.707031 C 127.515625 184.707031 127.421875 184.800781 127.421875 184.917969 C 127.421875 185.035156 127.515625 185.128906 127.632812 185.128906 C 127.75 185.128906 127.84375 185.035156 127.84375 184.917969 Z M 127.84375 184.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 131.230469 187.371094 C 131.230469 187.253906 131.136719 187.160156 131.019531 187.160156 C 130.902344 187.160156 130.808594 187.253906 130.808594 187.371094 C 130.808594 187.488281 130.902344 187.582031 131.019531 187.582031 C 131.136719 187.582031 131.230469 187.488281 131.230469 187.371094 Z M 131.230469 187.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.113281 189.128906 C 132.113281 189.011719 132.019531 188.917969 131.902344 188.917969 C 131.785156 188.917969 131.691406 189.011719 131.691406 189.128906 C 131.691406 189.246094 131.785156 189.339844 131.902344 189.339844 C 132.019531 189.339844 132.113281 189.246094 132.113281 189.128906 Z M 132.113281 189.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 131.9375 188.136719 C 131.9375 188.019531 131.84375 187.925781 131.726562 187.925781 C 131.609375 187.925781 131.515625 188.019531 131.515625 188.136719 C 131.515625 188.253906 131.609375 188.347656 131.726562 188.347656 C 131.84375 188.347656 131.9375 188.253906 131.9375 188.136719 Z M 131.9375 188.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.960938 190.460938 C 128.960938 190.34375 128.867188 190.25 128.75 190.25 C 128.632812 190.25 128.539062 190.34375 128.539062 190.460938 C 128.539062 190.578125 128.632812 190.671875 128.75 190.671875 C 128.867188 190.671875 128.960938 190.578125 128.960938 190.460938 Z M 128.960938 190.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.191406 189.722656 C 129.191406 189.605469 129.097656 189.511719 128.980469 189.511719 C 128.863281 189.511719 128.769531 189.605469 128.769531 189.722656 C 128.769531 189.839844 128.863281 189.933594 128.980469 189.933594 C 129.097656 189.933594 129.191406 189.839844 129.191406 189.722656 Z M 129.191406 189.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.695312 190.292969 C 127.695312 190.175781 127.601562 190.082031 127.484375 190.082031 C 127.367188 190.082031 127.273438 190.175781 127.273438 190.292969 C 127.273438 190.410156 127.367188 190.503906 127.484375 190.503906 C 127.601562 190.503906 127.695312 190.410156 127.695312 190.292969 Z M 127.695312 190.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.996094 192.390625 C 125.996094 192.273438 125.902344 192.179688 125.785156 192.179688 C 125.667969 192.179688 125.574219 192.273438 125.574219 192.390625 C 125.574219 192.507812 125.667969 192.601562 125.785156 192.601562 C 125.902344 192.601562 125.996094 192.507812 125.996094 192.390625 Z M 125.996094 192.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.308594 193.855469 C 123.308594 193.738281 123.214844 193.644531 123.097656 193.644531 C 122.980469 193.644531 122.886719 193.738281 122.886719 193.855469 C 122.886719 193.972656 122.980469 194.066406 123.097656 194.066406 C 123.214844 194.066406 123.308594 193.972656 123.308594 193.855469 Z M 123.308594 193.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.980469 194.566406 C 120.980469 194.449219 120.886719 194.355469 120.769531 194.355469 C 120.652344 194.355469 120.558594 194.449219 120.558594 194.566406 C 120.558594 194.683594 120.652344 194.777344 120.769531 194.777344 C 120.886719 194.777344 120.980469 194.683594 120.980469 194.566406 Z M 120.980469 194.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.277344 191.9375 C 119.277344 191.820312 119.183594 191.726562 119.066406 191.726562 C 118.949219 191.726562 118.855469 191.820312 118.855469 191.9375 C 118.855469 192.054688 118.949219 192.148438 119.066406 192.148438 C 119.183594 192.148438 119.277344 192.054688 119.277344 191.9375 Z M 119.277344 191.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.375 191.074219 C 119.375 190.957031 119.28125 190.863281 119.164062 190.863281 C 119.046875 190.863281 118.953125 190.957031 118.953125 191.074219 C 118.953125 191.191406 119.046875 191.285156 119.164062 191.285156 C 119.28125 191.285156 119.375 191.191406 119.375 191.074219 Z M 119.375 191.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.515625 186.496094 C 117.515625 186.378906 117.421875 186.285156 117.304688 186.285156 C 117.1875 186.285156 117.09375 186.378906 117.09375 186.496094 C 117.09375 186.613281 117.1875 186.707031 117.304688 186.707031 C 117.421875 186.707031 117.515625 186.613281 117.515625 186.496094 Z M 117.515625 186.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.183594 185.703125 C 119.183594 185.585938 119.089844 185.492188 118.972656 185.492188 C 118.855469 185.492188 118.761719 185.585938 118.761719 185.703125 C 118.761719 185.820312 118.855469 185.914062 118.972656 185.914062 C 119.089844 185.914062 119.183594 185.820312 119.183594 185.703125 Z M 119.183594 185.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.914062 187.351562 C 118.914062 187.234375 118.820312 187.140625 118.703125 187.140625 C 118.585938 187.140625 118.492188 187.234375 118.492188 187.351562 C 118.492188 187.46875 118.585938 187.5625 118.703125 187.5625 C 118.820312 187.5625 118.914062 187.46875 118.914062 187.351562 Z M 118.914062 187.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.316406 189.726562 C 121.316406 189.609375 121.222656 189.515625 121.105469 189.515625 C 120.988281 189.515625 120.894531 189.609375 120.894531 189.726562 C 120.894531 189.84375 120.988281 189.9375 121.105469 189.9375 C 121.222656 189.9375 121.316406 189.84375 121.316406 189.726562 Z M 121.316406 189.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.464844 189.320312 C 122.464844 189.203125 122.371094 189.109375 122.253906 189.109375 C 122.136719 189.109375 122.042969 189.203125 122.042969 189.320312 C 122.042969 189.4375 122.136719 189.53125 122.253906 189.53125 C 122.371094 189.53125 122.464844 189.4375 122.464844 189.320312 Z M 122.464844 189.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.566406 193.566406 C 121.566406 193.449219 121.472656 193.355469 121.355469 193.355469 C 121.238281 193.355469 121.144531 193.449219 121.144531 193.566406 C 121.144531 193.683594 121.238281 193.777344 121.355469 193.777344 C 121.472656 193.777344 121.566406 193.683594 121.566406 193.566406 Z M 121.566406 193.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.867188 194.414062 C 118.867188 194.296875 118.773438 194.203125 118.65625 194.203125 C 118.539062 194.203125 118.445312 194.296875 118.445312 194.414062 C 118.445312 194.53125 118.539062 194.625 118.65625 194.625 C 118.773438 194.625 118.867188 194.53125 118.867188 194.414062 Z M 118.867188 194.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.238281 191.664062 C 115.238281 191.546875 115.144531 191.453125 115.027344 191.453125 C 114.910156 191.453125 114.816406 191.546875 114.816406 191.664062 C 114.816406 191.78125 114.910156 191.875 115.027344 191.875 C 115.144531 191.875 115.238281 191.78125 115.238281 191.664062 Z M 115.238281 191.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.5625 188.277344 C 115.5625 188.160156 115.46875 188.066406 115.351562 188.066406 C 115.234375 188.066406 115.140625 188.160156 115.140625 188.277344 C 115.140625 188.394531 115.234375 188.488281 115.351562 188.488281 C 115.46875 188.488281 115.5625 188.394531 115.5625 188.277344 Z M 115.5625 188.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.582031 189.207031 C 116.582031 189.089844 116.488281 188.996094 116.371094 188.996094 C 116.253906 188.996094 116.160156 189.089844 116.160156 189.207031 C 116.160156 189.324219 116.253906 189.417969 116.371094 189.417969 C 116.488281 189.417969 116.582031 189.324219 116.582031 189.207031 Z M 116.582031 189.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.207031 186.640625 C 116.207031 186.523438 116.113281 186.429688 115.996094 186.429688 C 115.878906 186.429688 115.785156 186.523438 115.785156 186.640625 C 115.785156 186.757812 115.878906 186.851562 115.996094 186.851562 C 116.113281 186.851562 116.207031 186.757812 116.207031 186.640625 Z M 116.207031 186.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.699219 185.484375 C 114.699219 185.367188 114.605469 185.273438 114.488281 185.273438 C 114.371094 185.273438 114.277344 185.367188 114.277344 185.484375 C 114.277344 185.601562 114.371094 185.695312 114.488281 185.695312 C 114.605469 185.695312 114.699219 185.601562 114.699219 185.484375 Z M 114.699219 185.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.144531 185.257812 C 114.144531 185.140625 114.050781 185.046875 113.933594 185.046875 C 113.816406 185.046875 113.722656 185.140625 113.722656 185.257812 C 113.722656 185.375 113.816406 185.46875 113.933594 185.46875 C 114.050781 185.46875 114.144531 185.375 114.144531 185.257812 Z M 114.144531 185.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.933594 185.183594 C 115.933594 185.066406 115.839844 184.972656 115.722656 184.972656 C 115.605469 184.972656 115.511719 185.066406 115.511719 185.183594 C 115.511719 185.300781 115.605469 185.394531 115.722656 185.394531 C 115.839844 185.394531 115.933594 185.300781 115.933594 185.183594 Z M 115.933594 185.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.15625 187.652344 C 115.15625 187.535156 115.0625 187.441406 114.945312 187.441406 C 114.828125 187.441406 114.734375 187.535156 114.734375 187.652344 C 114.734375 187.769531 114.828125 187.863281 114.945312 187.863281 C 115.0625 187.863281 115.15625 187.769531 115.15625 187.652344 Z M 115.15625 187.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.773438 189.84375 C 115.773438 189.726562 115.679688 189.632812 115.5625 189.632812 C 115.445312 189.632812 115.351562 189.726562 115.351562 189.84375 C 115.351562 189.960938 115.445312 190.054688 115.5625 190.054688 C 115.679688 190.054688 115.773438 189.960938 115.773438 189.84375 Z M 115.773438 189.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.859375 189.214844 C 119.859375 189.097656 119.765625 189.003906 119.648438 189.003906 C 119.53125 189.003906 119.4375 189.097656 119.4375 189.214844 C 119.4375 189.332031 119.53125 189.425781 119.648438 189.425781 C 119.765625 189.425781 119.859375 189.332031 119.859375 189.214844 Z M 119.859375 189.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.871094 186.332031 C 120.871094 186.214844 120.777344 186.121094 120.660156 186.121094 C 120.542969 186.121094 120.449219 186.214844 120.449219 186.332031 C 120.449219 186.449219 120.542969 186.542969 120.660156 186.542969 C 120.777344 186.542969 120.871094 186.449219 120.871094 186.332031 Z M 120.871094 186.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.316406 185.714844 C 121.316406 185.597656 121.222656 185.503906 121.105469 185.503906 C 120.988281 185.503906 120.894531 185.597656 120.894531 185.714844 C 120.894531 185.832031 120.988281 185.925781 121.105469 185.925781 C 121.222656 185.925781 121.316406 185.832031 121.316406 185.714844 Z M 121.316406 185.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.496094 186.148438 C 120.496094 186.03125 120.402344 185.9375 120.285156 185.9375 C 120.167969 185.9375 120.074219 186.03125 120.074219 186.148438 C 120.074219 186.265625 120.167969 186.359375 120.285156 186.359375 C 120.402344 186.359375 120.496094 186.265625 120.496094 186.148438 Z M 120.496094 186.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.644531 186.644531 C 118.644531 186.527344 118.550781 186.433594 118.433594 186.433594 C 118.316406 186.433594 118.222656 186.527344 118.222656 186.644531 C 118.222656 186.761719 118.316406 186.855469 118.433594 186.855469 C 118.550781 186.855469 118.644531 186.761719 118.644531 186.644531 Z M 118.644531 186.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.613281 184.351562 C 116.613281 184.234375 116.519531 184.140625 116.402344 184.140625 C 116.285156 184.140625 116.191406 184.234375 116.191406 184.351562 C 116.191406 184.46875 116.285156 184.5625 116.402344 184.5625 C 116.519531 184.5625 116.613281 184.46875 116.613281 184.351562 Z M 116.613281 184.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.457031 186.300781 C 114.457031 186.183594 114.363281 186.089844 114.246094 186.089844 C 114.128906 186.089844 114.035156 186.183594 114.035156 186.300781 C 114.035156 186.417969 114.128906 186.511719 114.246094 186.511719 C 114.363281 186.511719 114.457031 186.417969 114.457031 186.300781 Z M 114.457031 186.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.972656 188.523438 C 114.972656 188.40625 114.878906 188.3125 114.761719 188.3125 C 114.644531 188.3125 114.550781 188.40625 114.550781 188.523438 C 114.550781 188.640625 114.644531 188.734375 114.761719 188.734375 C 114.878906 188.734375 114.972656 188.640625 114.972656 188.523438 Z M 114.972656 188.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.46875 190.253906 C 116.46875 190.136719 116.375 190.042969 116.257812 190.042969 C 116.140625 190.042969 116.046875 190.136719 116.046875 190.253906 C 116.046875 190.371094 116.140625 190.464844 116.257812 190.464844 C 116.375 190.464844 116.46875 190.371094 116.46875 190.253906 Z M 116.46875 190.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.234375 190.402344 C 114.234375 190.285156 114.140625 190.191406 114.023438 190.191406 C 113.90625 190.191406 113.8125 190.285156 113.8125 190.402344 C 113.8125 190.519531 113.90625 190.613281 114.023438 190.613281 C 114.140625 190.613281 114.234375 190.519531 114.234375 190.402344 Z M 114.234375 190.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.8125 189.734375 C 112.8125 189.617188 112.71875 189.523438 112.601562 189.523438 C 112.484375 189.523438 112.390625 189.617188 112.390625 189.734375 C 112.390625 189.851562 112.484375 189.945312 112.601562 189.945312 C 112.71875 189.945312 112.8125 189.851562 112.8125 189.734375 Z M 112.8125 189.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.109375 189.480469 C 113.109375 189.363281 113.015625 189.269531 112.898438 189.269531 C 112.78125 189.269531 112.6875 189.363281 112.6875 189.480469 C 112.6875 189.597656 112.78125 189.691406 112.898438 189.691406 C 113.015625 189.691406 113.109375 189.597656 113.109375 189.480469 Z M 113.109375 189.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.058594 191.433594 C 112.058594 191.316406 111.964844 191.222656 111.847656 191.222656 C 111.730469 191.222656 111.636719 191.316406 111.636719 191.433594 C 111.636719 191.550781 111.730469 191.644531 111.847656 191.644531 C 111.964844 191.644531 112.058594 191.550781 112.058594 191.433594 Z M 112.058594 191.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.285156 193.714844 C 112.285156 193.597656 112.191406 193.503906 112.074219 193.503906 C 111.957031 193.503906 111.863281 193.597656 111.863281 193.714844 C 111.863281 193.832031 111.957031 193.925781 112.074219 193.925781 C 112.191406 193.925781 112.285156 193.832031 112.285156 193.714844 Z M 112.285156 193.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.582031 193.195312 C 115.582031 193.078125 115.488281 192.984375 115.371094 192.984375 C 115.253906 192.984375 115.160156 193.078125 115.160156 193.195312 C 115.160156 193.3125 115.253906 193.40625 115.371094 193.40625 C 115.488281 193.40625 115.582031 193.3125 115.582031 193.195312 Z M 115.582031 193.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.421875 197.960938 C 117.421875 197.84375 117.328125 197.75 117.210938 197.75 C 117.09375 197.75 117 197.84375 117 197.960938 C 117 198.078125 117.09375 198.171875 117.210938 198.171875 C 117.328125 198.171875 117.421875 198.078125 117.421875 197.960938 Z M 117.421875 197.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.597656 201.15625 C 115.597656 201.039062 115.503906 200.945312 115.386719 200.945312 C 115.269531 200.945312 115.175781 201.039062 115.175781 201.15625 C 115.175781 201.273438 115.269531 201.367188 115.386719 201.367188 C 115.503906 201.367188 115.597656 201.273438 115.597656 201.15625 Z M 115.597656 201.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.300781 201.976562 C 113.300781 201.859375 113.207031 201.765625 113.089844 201.765625 C 112.972656 201.765625 112.878906 201.859375 112.878906 201.976562 C 112.878906 202.09375 112.972656 202.1875 113.089844 202.1875 C 113.207031 202.1875 113.300781 202.09375 113.300781 201.976562 Z M 113.300781 201.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.710938 200.132812 C 110.710938 200.015625 110.617188 199.921875 110.5 199.921875 C 110.382812 199.921875 110.289062 200.015625 110.289062 200.132812 C 110.289062 200.25 110.382812 200.34375 110.5 200.34375 C 110.617188 200.34375 110.710938 200.25 110.710938 200.132812 Z M 110.710938 200.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.539062 200.613281 C 114.539062 200.496094 114.445312 200.402344 114.328125 200.402344 C 114.210938 200.402344 114.117188 200.496094 114.117188 200.613281 C 114.117188 200.730469 114.210938 200.824219 114.328125 200.824219 C 114.445312 200.824219 114.539062 200.730469 114.539062 200.613281 Z M 114.539062 200.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.046875 200.285156 C 112.046875 200.167969 111.953125 200.074219 111.835938 200.074219 C 111.71875 200.074219 111.625 200.167969 111.625 200.285156 C 111.625 200.402344 111.71875 200.496094 111.835938 200.496094 C 111.953125 200.496094 112.046875 200.402344 112.046875 200.285156 Z M 112.046875 200.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.007812 201.277344 C 111.007812 201.160156 110.914062 201.066406 110.796875 201.066406 C 110.679688 201.066406 110.585938 201.160156 110.585938 201.277344 C 110.585938 201.394531 110.679688 201.488281 110.796875 201.488281 C 110.914062 201.488281 111.007812 201.394531 111.007812 201.277344 Z M 111.007812 201.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.722656 199.519531 C 111.722656 199.402344 111.628906 199.308594 111.511719 199.308594 C 111.394531 199.308594 111.300781 199.402344 111.300781 199.519531 C 111.300781 199.636719 111.394531 199.730469 111.511719 199.730469 C 111.628906 199.730469 111.722656 199.636719 111.722656 199.519531 Z M 111.722656 199.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.917969 200.480469 C 106.917969 200.363281 106.824219 200.269531 106.707031 200.269531 C 106.589844 200.269531 106.496094 200.363281 106.496094 200.480469 C 106.496094 200.597656 106.589844 200.691406 106.707031 200.691406 C 106.824219 200.691406 106.917969 200.597656 106.917969 200.480469 Z M 106.917969 200.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.320312 201.046875 C 112.320312 200.929688 112.226562 200.835938 112.109375 200.835938 C 111.992188 200.835938 111.898438 200.929688 111.898438 201.046875 C 111.898438 201.164062 111.992188 201.257812 112.109375 201.257812 C 112.226562 201.257812 112.320312 201.164062 112.320312 201.046875 Z M 112.320312 201.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.871094 196.785156 C 112.871094 196.667969 112.777344 196.574219 112.660156 196.574219 C 112.542969 196.574219 112.449219 196.667969 112.449219 196.785156 C 112.449219 196.902344 112.542969 196.996094 112.660156 196.996094 C 112.777344 196.996094 112.871094 196.902344 112.871094 196.785156 Z M 112.871094 196.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.707031 198.429688 C 114.707031 198.3125 114.613281 198.21875 114.496094 198.21875 C 114.378906 198.21875 114.285156 198.3125 114.285156 198.429688 C 114.285156 198.546875 114.378906 198.640625 114.496094 198.640625 C 114.613281 198.640625 114.707031 198.546875 114.707031 198.429688 Z M 114.707031 198.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.769531 197.613281 C 117.769531 197.496094 117.675781 197.402344 117.558594 197.402344 C 117.441406 197.402344 117.347656 197.496094 117.347656 197.613281 C 117.347656 197.730469 117.441406 197.824219 117.558594 197.824219 C 117.675781 197.824219 117.769531 197.730469 117.769531 197.613281 Z M 117.769531 197.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.222656 197.398438 C 118.222656 197.28125 118.128906 197.1875 118.011719 197.1875 C 117.894531 197.1875 117.800781 197.28125 117.800781 197.398438 C 117.800781 197.515625 117.894531 197.609375 118.011719 197.609375 C 118.128906 197.609375 118.222656 197.515625 118.222656 197.398438 Z M 118.222656 197.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.285156 200.382812 C 116.285156 200.265625 116.191406 200.171875 116.074219 200.171875 C 115.957031 200.171875 115.863281 200.265625 115.863281 200.382812 C 115.863281 200.5 115.957031 200.59375 116.074219 200.59375 C 116.191406 200.59375 116.285156 200.5 116.285156 200.382812 Z M 116.285156 200.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.324219 200.660156 C 115.324219 200.542969 115.230469 200.449219 115.113281 200.449219 C 114.996094 200.449219 114.902344 200.542969 114.902344 200.660156 C 114.902344 200.777344 114.996094 200.871094 115.113281 200.871094 C 115.230469 200.871094 115.324219 200.777344 115.324219 200.660156 Z M 115.324219 200.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.199219 197.96875 C 118.199219 197.851562 118.105469 197.757812 117.988281 197.757812 C 117.871094 197.757812 117.777344 197.851562 117.777344 197.96875 C 117.777344 198.085938 117.871094 198.179688 117.988281 198.179688 C 118.105469 198.179688 118.199219 198.085938 118.199219 197.96875 Z M 118.199219 197.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.195312 196.289062 C 117.195312 196.171875 117.101562 196.078125 116.984375 196.078125 C 116.867188 196.078125 116.773438 196.171875 116.773438 196.289062 C 116.773438 196.40625 116.867188 196.5 116.984375 196.5 C 117.101562 196.5 117.195312 196.40625 117.195312 196.289062 Z M 117.195312 196.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.726562 196.351562 C 116.726562 196.234375 116.632812 196.140625 116.515625 196.140625 C 116.398438 196.140625 116.304688 196.234375 116.304688 196.351562 C 116.304688 196.46875 116.398438 196.5625 116.515625 196.5625 C 116.632812 196.5625 116.726562 196.46875 116.726562 196.351562 Z M 116.726562 196.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.957031 197.441406 C 113.957031 197.324219 113.863281 197.230469 113.746094 197.230469 C 113.628906 197.230469 113.535156 197.324219 113.535156 197.441406 C 113.535156 197.558594 113.628906 197.652344 113.746094 197.652344 C 113.863281 197.652344 113.957031 197.558594 113.957031 197.441406 Z M 113.957031 197.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.488281 199.6875 C 114.488281 199.570312 114.394531 199.476562 114.277344 199.476562 C 114.160156 199.476562 114.066406 199.570312 114.066406 199.6875 C 114.066406 199.804688 114.160156 199.898438 114.277344 199.898438 C 114.394531 199.898438 114.488281 199.804688 114.488281 199.6875 Z M 114.488281 199.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.558594 196.457031 C 115.558594 196.339844 115.464844 196.246094 115.347656 196.246094 C 115.230469 196.246094 115.136719 196.339844 115.136719 196.457031 C 115.136719 196.574219 115.230469 196.667969 115.347656 196.667969 C 115.464844 196.667969 115.558594 196.574219 115.558594 196.457031 Z M 115.558594 196.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.75 194.65625 C 115.75 194.539062 115.65625 194.445312 115.539062 194.445312 C 115.421875 194.445312 115.328125 194.539062 115.328125 194.65625 C 115.328125 194.773438 115.421875 194.867188 115.539062 194.867188 C 115.65625 194.867188 115.75 194.773438 115.75 194.65625 Z M 115.75 194.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.160156 190.378906 C 120.160156 190.261719 120.066406 190.167969 119.949219 190.167969 C 119.832031 190.167969 119.738281 190.261719 119.738281 190.378906 C 119.738281 190.496094 119.832031 190.589844 119.949219 190.589844 C 120.066406 190.589844 120.160156 190.496094 120.160156 190.378906 Z M 120.160156 190.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.410156 188.527344 C 120.410156 188.410156 120.316406 188.316406 120.199219 188.316406 C 120.082031 188.316406 119.988281 188.410156 119.988281 188.527344 C 119.988281 188.644531 120.082031 188.738281 120.199219 188.738281 C 120.316406 188.738281 120.410156 188.644531 120.410156 188.527344 Z M 120.410156 188.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.570312 191.320312 C 118.570312 191.203125 118.476562 191.109375 118.359375 191.109375 C 118.242188 191.109375 118.148438 191.203125 118.148438 191.320312 C 118.148438 191.4375 118.242188 191.53125 118.359375 191.53125 C 118.476562 191.53125 118.570312 191.4375 118.570312 191.320312 Z M 118.570312 191.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.402344 191.363281 C 121.402344 191.246094 121.308594 191.152344 121.191406 191.152344 C 121.074219 191.152344 120.980469 191.246094 120.980469 191.363281 C 120.980469 191.480469 121.074219 191.574219 121.191406 191.574219 C 121.308594 191.574219 121.402344 191.480469 121.402344 191.363281 Z M 121.402344 191.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.011719 189.355469 C 118.011719 189.238281 117.917969 189.144531 117.800781 189.144531 C 117.683594 189.144531 117.589844 189.238281 117.589844 189.355469 C 117.589844 189.472656 117.683594 189.566406 117.800781 189.566406 C 117.917969 189.566406 118.011719 189.472656 118.011719 189.355469 Z M 118.011719 189.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.027344 187.292969 C 121.027344 187.175781 120.933594 187.082031 120.816406 187.082031 C 120.699219 187.082031 120.605469 187.175781 120.605469 187.292969 C 120.605469 187.410156 120.699219 187.503906 120.816406 187.503906 C 120.933594 187.503906 121.027344 187.410156 121.027344 187.292969 Z M 121.027344 187.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.855469 189.890625 C 123.855469 189.773438 123.761719 189.679688 123.644531 189.679688 C 123.527344 189.679688 123.433594 189.773438 123.433594 189.890625 C 123.433594 190.007812 123.527344 190.101562 123.644531 190.101562 C 123.761719 190.101562 123.855469 190.007812 123.855469 189.890625 Z M 123.855469 189.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.421875 188.449219 C 121.421875 188.332031 121.328125 188.238281 121.210938 188.238281 C 121.09375 188.238281 121 188.332031 121 188.449219 C 121 188.566406 121.09375 188.660156 121.210938 188.660156 C 121.328125 188.660156 121.421875 188.566406 121.421875 188.449219 Z M 121.421875 188.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.679688 186.132812 C 123.679688 186.015625 123.585938 185.921875 123.46875 185.921875 C 123.351562 185.921875 123.257812 186.015625 123.257812 186.132812 C 123.257812 186.25 123.351562 186.34375 123.46875 186.34375 C 123.585938 186.34375 123.679688 186.25 123.679688 186.132812 Z M 123.679688 186.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.734375 187.585938 C 120.734375 187.46875 120.640625 187.375 120.523438 187.375 C 120.40625 187.375 120.3125 187.46875 120.3125 187.585938 C 120.3125 187.703125 120.40625 187.796875 120.523438 187.796875 C 120.640625 187.796875 120.734375 187.703125 120.734375 187.585938 Z M 120.734375 187.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.09375 187.1875 C 121.09375 187.070312 121 186.976562 120.882812 186.976562 C 120.765625 186.976562 120.671875 187.070312 120.671875 187.1875 C 120.671875 187.304688 120.765625 187.398438 120.882812 187.398438 C 121 187.398438 121.09375 187.304688 121.09375 187.1875 Z M 121.09375 187.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.320312 185.371094 C 120.320312 185.253906 120.226562 185.160156 120.109375 185.160156 C 119.992188 185.160156 119.898438 185.253906 119.898438 185.371094 C 119.898438 185.488281 119.992188 185.582031 120.109375 185.582031 C 120.226562 185.582031 120.320312 185.488281 120.320312 185.371094 Z M 120.320312 185.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.375 187.140625 C 121.375 187.023438 121.28125 186.929688 121.164062 186.929688 C 121.046875 186.929688 120.953125 187.023438 120.953125 187.140625 C 120.953125 187.257812 121.046875 187.351562 121.164062 187.351562 C 121.28125 187.351562 121.375 187.257812 121.375 187.140625 Z M 121.375 187.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.710938 186.925781 C 124.710938 186.808594 124.617188 186.714844 124.5 186.714844 C 124.382812 186.714844 124.289062 186.808594 124.289062 186.925781 C 124.289062 187.042969 124.382812 187.136719 124.5 187.136719 C 124.617188 187.136719 124.710938 187.042969 124.710938 186.925781 Z M 124.710938 186.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.960938 188.046875 C 122.960938 187.929688 122.867188 187.835938 122.75 187.835938 C 122.632812 187.835938 122.539062 187.929688 122.539062 188.046875 C 122.539062 188.164062 122.632812 188.257812 122.75 188.257812 C 122.867188 188.257812 122.960938 188.164062 122.960938 188.046875 Z M 122.960938 188.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.703125 186.898438 C 124.703125 186.78125 124.609375 186.6875 124.492188 186.6875 C 124.375 186.6875 124.28125 186.78125 124.28125 186.898438 C 124.28125 187.015625 124.375 187.109375 124.492188 187.109375 C 124.609375 187.109375 124.703125 187.015625 124.703125 186.898438 Z M 124.703125 186.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.335938 186.304688 C 124.335938 186.1875 124.242188 186.09375 124.125 186.09375 C 124.007812 186.09375 123.914062 186.1875 123.914062 186.304688 C 123.914062 186.421875 124.007812 186.515625 124.125 186.515625 C 124.242188 186.515625 124.335938 186.421875 124.335938 186.304688 Z M 124.335938 186.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.023438 188.007812 C 123.023438 187.890625 122.929688 187.796875 122.8125 187.796875 C 122.695312 187.796875 122.601562 187.890625 122.601562 188.007812 C 122.601562 188.125 122.695312 188.21875 122.8125 188.21875 C 122.929688 188.21875 123.023438 188.125 123.023438 188.007812 Z M 123.023438 188.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.21875 188.984375 C 120.21875 188.867188 120.125 188.773438 120.007812 188.773438 C 119.890625 188.773438 119.796875 188.867188 119.796875 188.984375 C 119.796875 189.101562 119.890625 189.195312 120.007812 189.195312 C 120.125 189.195312 120.21875 189.101562 120.21875 188.984375 Z M 120.21875 188.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.773438 189.582031 C 125.773438 189.464844 125.679688 189.371094 125.5625 189.371094 C 125.445312 189.371094 125.351562 189.464844 125.351562 189.582031 C 125.351562 189.699219 125.445312 189.792969 125.5625 189.792969 C 125.679688 189.792969 125.773438 189.699219 125.773438 189.582031 Z M 125.773438 189.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.148438 190.246094 C 125.148438 190.128906 125.054688 190.035156 124.9375 190.035156 C 124.820312 190.035156 124.726562 190.128906 124.726562 190.246094 C 124.726562 190.363281 124.820312 190.457031 124.9375 190.457031 C 125.054688 190.457031 125.148438 190.363281 125.148438 190.246094 Z M 125.148438 190.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.398438 192.628906 C 123.398438 192.511719 123.304688 192.417969 123.1875 192.417969 C 123.070312 192.417969 122.976562 192.511719 122.976562 192.628906 C 122.976562 192.746094 123.070312 192.839844 123.1875 192.839844 C 123.304688 192.839844 123.398438 192.746094 123.398438 192.628906 Z M 123.398438 192.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.761719 195.332031 C 120.761719 195.214844 120.667969 195.121094 120.550781 195.121094 C 120.433594 195.121094 120.339844 195.214844 120.339844 195.332031 C 120.339844 195.449219 120.433594 195.542969 120.550781 195.542969 C 120.667969 195.542969 120.761719 195.449219 120.761719 195.332031 Z M 120.761719 195.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126.382812 191.167969 C 126.382812 191.050781 126.289062 190.957031 126.171875 190.957031 C 126.054688 190.957031 125.960938 191.050781 125.960938 191.167969 C 125.960938 191.285156 126.054688 191.378906 126.171875 191.378906 C 126.289062 191.378906 126.382812 191.285156 126.382812 191.167969 Z M 126.382812 191.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.871094 191.890625 C 127.871094 191.773438 127.777344 191.679688 127.660156 191.679688 C 127.542969 191.679688 127.449219 191.773438 127.449219 191.890625 C 127.449219 192.007812 127.542969 192.101562 127.660156 192.101562 C 127.777344 192.101562 127.871094 192.007812 127.871094 191.890625 Z M 127.871094 191.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.804688 194.578125 C 128.804688 194.460938 128.710938 194.367188 128.59375 194.367188 C 128.476562 194.367188 128.382812 194.460938 128.382812 194.578125 C 128.382812 194.695312 128.476562 194.789062 128.59375 194.789062 C 128.710938 194.789062 128.804688 194.695312 128.804688 194.578125 Z M 128.804688 194.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126.421875 193.949219 C 126.421875 193.832031 126.328125 193.738281 126.210938 193.738281 C 126.09375 193.738281 126 193.832031 126 193.949219 C 126 194.066406 126.09375 194.160156 126.210938 194.160156 C 126.328125 194.160156 126.421875 194.066406 126.421875 193.949219 Z M 126.421875 193.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.828125 196.417969 C 123.828125 196.300781 123.734375 196.207031 123.617188 196.207031 C 123.5 196.207031 123.40625 196.300781 123.40625 196.417969 C 123.40625 196.535156 123.5 196.628906 123.617188 196.628906 C 123.734375 196.628906 123.828125 196.535156 123.828125 196.417969 Z M 123.828125 196.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.253906 199.132812 C 124.253906 199.015625 124.160156 198.921875 124.042969 198.921875 C 123.925781 198.921875 123.832031 199.015625 123.832031 199.132812 C 123.832031 199.25 123.925781 199.34375 124.042969 199.34375 C 124.160156 199.34375 124.253906 199.25 124.253906 199.132812 Z M 124.253906 199.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.703125 197.757812 C 122.703125 197.640625 122.609375 197.546875 122.492188 197.546875 C 122.375 197.546875 122.28125 197.640625 122.28125 197.757812 C 122.28125 197.875 122.375 197.96875 122.492188 197.96875 C 122.609375 197.96875 122.703125 197.875 122.703125 197.757812 Z M 122.703125 197.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.0625 200.179688 C 122.0625 200.0625 121.96875 199.96875 121.851562 199.96875 C 121.734375 199.96875 121.640625 200.0625 121.640625 200.179688 C 121.640625 200.296875 121.734375 200.390625 121.851562 200.390625 C 121.96875 200.390625 122.0625 200.296875 122.0625 200.179688 Z M 122.0625 200.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.402344 205.277344 C 121.402344 205.160156 121.308594 205.066406 121.191406 205.066406 C 121.074219 205.066406 120.980469 205.160156 120.980469 205.277344 C 120.980469 205.394531 121.074219 205.488281 121.191406 205.488281 C 121.308594 205.488281 121.402344 205.394531 121.402344 205.277344 Z M 121.402344 205.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.492188 207.738281 C 119.492188 207.621094 119.398438 207.527344 119.28125 207.527344 C 119.164062 207.527344 119.070312 207.621094 119.070312 207.738281 C 119.070312 207.855469 119.164062 207.949219 119.28125 207.949219 C 119.398438 207.949219 119.492188 207.855469 119.492188 207.738281 Z M 119.492188 207.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.902344 205.984375 C 120.902344 205.867188 120.808594 205.773438 120.691406 205.773438 C 120.574219 205.773438 120.480469 205.867188 120.480469 205.984375 C 120.480469 206.101562 120.574219 206.195312 120.691406 206.195312 C 120.808594 206.195312 120.902344 206.101562 120.902344 205.984375 Z M 120.902344 205.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.566406 205.550781 C 121.566406 205.433594 121.472656 205.339844 121.355469 205.339844 C 121.238281 205.339844 121.144531 205.433594 121.144531 205.550781 C 121.144531 205.667969 121.238281 205.761719 121.355469 205.761719 C 121.472656 205.761719 121.566406 205.667969 121.566406 205.550781 Z M 121.566406 205.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.46875 201.734375 C 124.46875 201.617188 124.375 201.523438 124.257812 201.523438 C 124.140625 201.523438 124.046875 201.617188 124.046875 201.734375 C 124.046875 201.851562 124.140625 201.945312 124.257812 201.945312 C 124.375 201.945312 124.46875 201.851562 124.46875 201.734375 Z M 124.46875 201.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.710938 200.097656 C 123.710938 199.980469 123.617188 199.886719 123.5 199.886719 C 123.382812 199.886719 123.289062 199.980469 123.289062 200.097656 C 123.289062 200.214844 123.382812 200.308594 123.5 200.308594 C 123.617188 200.308594 123.710938 200.214844 123.710938 200.097656 Z M 123.710938 200.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.800781 203.425781 C 123.800781 203.308594 123.707031 203.214844 123.589844 203.214844 C 123.472656 203.214844 123.378906 203.308594 123.378906 203.425781 C 123.378906 203.542969 123.472656 203.636719 123.589844 203.636719 C 123.707031 203.636719 123.800781 203.542969 123.800781 203.425781 Z M 123.800781 203.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.953125 203.824219 C 125.953125 203.707031 125.859375 203.613281 125.742188 203.613281 C 125.625 203.613281 125.53125 203.707031 125.53125 203.824219 C 125.53125 203.941406 125.625 204.035156 125.742188 204.035156 C 125.859375 204.035156 125.953125 203.941406 125.953125 203.824219 Z M 125.953125 203.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126.386719 206.984375 C 126.386719 206.867188 126.292969 206.773438 126.175781 206.773438 C 126.058594 206.773438 125.964844 206.867188 125.964844 206.984375 C 125.964844 207.101562 126.058594 207.195312 126.175781 207.195312 C 126.292969 207.195312 126.386719 207.101562 126.386719 206.984375 Z M 126.386719 206.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.46875 207.464844 C 124.46875 207.347656 124.375 207.253906 124.257812 207.253906 C 124.140625 207.253906 124.046875 207.347656 124.046875 207.464844 C 124.046875 207.582031 124.140625 207.675781 124.257812 207.675781 C 124.375 207.675781 124.46875 207.582031 124.46875 207.464844 Z M 124.46875 207.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.503906 207.914062 C 125.503906 207.796875 125.410156 207.703125 125.292969 207.703125 C 125.175781 207.703125 125.082031 207.796875 125.082031 207.914062 C 125.082031 208.03125 125.175781 208.125 125.292969 208.125 C 125.410156 208.125 125.503906 208.03125 125.503906 207.914062 Z M 125.503906 207.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.472656 208.730469 C 127.472656 208.613281 127.378906 208.519531 127.261719 208.519531 C 127.144531 208.519531 127.050781 208.613281 127.050781 208.730469 C 127.050781 208.847656 127.144531 208.941406 127.261719 208.941406 C 127.378906 208.941406 127.472656 208.847656 127.472656 208.730469 Z M 127.472656 208.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126 211.824219 C 126 211.707031 125.90625 211.613281 125.789062 211.613281 C 125.671875 211.613281 125.578125 211.707031 125.578125 211.824219 C 125.578125 211.941406 125.671875 212.035156 125.789062 212.035156 C 125.90625 212.035156 126 211.941406 126 211.824219 Z M 126 211.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.355469 208.402344 C 125.355469 208.285156 125.261719 208.191406 125.144531 208.191406 C 125.027344 208.191406 124.933594 208.285156 124.933594 208.402344 C 124.933594 208.519531 125.027344 208.613281 125.144531 208.613281 C 125.261719 208.613281 125.355469 208.519531 125.355469 208.402344 Z M 125.355469 208.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126.167969 207.589844 C 126.167969 207.472656 126.074219 207.378906 125.957031 207.378906 C 125.839844 207.378906 125.746094 207.472656 125.746094 207.589844 C 125.746094 207.707031 125.839844 207.800781 125.957031 207.800781 C 126.074219 207.800781 126.167969 207.707031 126.167969 207.589844 Z M 126.167969 207.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.253906 204.03125 C 124.253906 203.914062 124.160156 203.820312 124.042969 203.820312 C 123.925781 203.820312 123.832031 203.914062 123.832031 204.03125 C 123.832031 204.148438 123.925781 204.242188 124.042969 204.242188 C 124.160156 204.242188 124.253906 204.148438 124.253906 204.03125 Z M 124.253906 204.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.050781 204.621094 C 125.050781 204.503906 124.957031 204.410156 124.839844 204.410156 C 124.722656 204.410156 124.628906 204.503906 124.628906 204.621094 C 124.628906 204.738281 124.722656 204.832031 124.839844 204.832031 C 124.957031 204.832031 125.050781 204.738281 125.050781 204.621094 Z M 125.050781 204.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.925781 204.652344 C 123.925781 204.535156 123.832031 204.441406 123.714844 204.441406 C 123.597656 204.441406 123.503906 204.535156 123.503906 204.652344 C 123.503906 204.769531 123.597656 204.863281 123.714844 204.863281 C 123.832031 204.863281 123.925781 204.769531 123.925781 204.652344 Z M 123.925781 204.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.394531 203.914062 C 123.394531 203.796875 123.300781 203.703125 123.183594 203.703125 C 123.066406 203.703125 122.972656 203.796875 122.972656 203.914062 C 122.972656 204.03125 123.066406 204.125 123.183594 204.125 C 123.300781 204.125 123.394531 204.03125 123.394531 203.914062 Z M 123.394531 203.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.074219 202.9375 C 124.074219 202.820312 123.980469 202.726562 123.863281 202.726562 C 123.746094 202.726562 123.652344 202.820312 123.652344 202.9375 C 123.652344 203.054688 123.746094 203.148438 123.863281 203.148438 C 123.980469 203.148438 124.074219 203.054688 124.074219 202.9375 Z M 124.074219 202.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.03125 203.277344 C 120.03125 203.160156 119.9375 203.066406 119.820312 203.066406 C 119.703125 203.066406 119.609375 203.160156 119.609375 203.277344 C 119.609375 203.394531 119.703125 203.488281 119.820312 203.488281 C 119.9375 203.488281 120.03125 203.394531 120.03125 203.277344 Z M 120.03125 203.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.695312 205.734375 C 118.695312 205.617188 118.601562 205.523438 118.484375 205.523438 C 118.367188 205.523438 118.273438 205.617188 118.273438 205.734375 C 118.273438 205.851562 118.367188 205.945312 118.484375 205.945312 C 118.601562 205.945312 118.695312 205.851562 118.695312 205.734375 Z M 118.695312 205.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.003906 206.214844 C 121.003906 206.097656 120.910156 206.003906 120.792969 206.003906 C 120.675781 206.003906 120.582031 206.097656 120.582031 206.214844 C 120.582031 206.332031 120.675781 206.425781 120.792969 206.425781 C 120.910156 206.425781 121.003906 206.332031 121.003906 206.214844 Z M 121.003906 206.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.867188 207.03125 C 118.867188 206.914062 118.773438 206.820312 118.65625 206.820312 C 118.539062 206.820312 118.445312 206.914062 118.445312 207.03125 C 118.445312 207.148438 118.539062 207.242188 118.65625 207.242188 C 118.773438 207.242188 118.867188 207.148438 118.867188 207.03125 Z M 118.867188 207.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.058594 205.285156 C 123.058594 205.167969 122.964844 205.074219 122.847656 205.074219 C 122.730469 205.074219 122.636719 205.167969 122.636719 205.285156 C 122.636719 205.402344 122.730469 205.496094 122.847656 205.496094 C 122.964844 205.496094 123.058594 205.402344 123.058594 205.285156 Z M 123.058594 205.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.820312 203.117188 C 121.820312 203 121.726562 202.90625 121.609375 202.90625 C 121.492188 202.90625 121.398438 203 121.398438 203.117188 C 121.398438 203.234375 121.492188 203.328125 121.609375 203.328125 C 121.726562 203.328125 121.820312 203.234375 121.820312 203.117188 Z M 121.820312 203.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.277344 202.414062 C 123.277344 202.296875 123.183594 202.203125 123.066406 202.203125 C 122.949219 202.203125 122.855469 202.296875 122.855469 202.414062 C 122.855469 202.53125 122.949219 202.625 123.066406 202.625 C 123.183594 202.625 123.277344 202.53125 123.277344 202.414062 Z M 123.277344 202.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.570312 205.265625 C 122.570312 205.148438 122.476562 205.054688 122.359375 205.054688 C 122.242188 205.054688 122.148438 205.148438 122.148438 205.265625 C 122.148438 205.382812 122.242188 205.476562 122.359375 205.476562 C 122.476562 205.476562 122.570312 205.382812 122.570312 205.265625 Z M 122.570312 205.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.617188 206.964844 C 124.617188 206.847656 124.523438 206.753906 124.40625 206.753906 C 124.289062 206.753906 124.195312 206.847656 124.195312 206.964844 C 124.195312 207.082031 124.289062 207.175781 124.40625 207.175781 C 124.523438 207.175781 124.617188 207.082031 124.617188 206.964844 Z M 124.617188 206.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.609375 208.367188 C 121.609375 208.25 121.515625 208.15625 121.398438 208.15625 C 121.28125 208.15625 121.1875 208.25 121.1875 208.367188 C 121.1875 208.484375 121.28125 208.578125 121.398438 208.578125 C 121.515625 208.578125 121.609375 208.484375 121.609375 208.367188 Z M 121.609375 208.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.195312 208.457031 C 118.195312 208.339844 118.101562 208.246094 117.984375 208.246094 C 117.867188 208.246094 117.773438 208.339844 117.773438 208.457031 C 117.773438 208.574219 117.867188 208.667969 117.984375 208.667969 C 118.101562 208.667969 118.195312 208.574219 118.195312 208.457031 Z M 118.195312 208.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.199219 210.492188 C 122.199219 210.375 122.105469 210.28125 121.988281 210.28125 C 121.871094 210.28125 121.777344 210.375 121.777344 210.492188 C 121.777344 210.609375 121.871094 210.703125 121.988281 210.703125 C 122.105469 210.703125 122.199219 210.609375 122.199219 210.492188 Z M 122.199219 210.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.742188 210.464844 C 122.742188 210.347656 122.648438 210.253906 122.53125 210.253906 C 122.414062 210.253906 122.320312 210.347656 122.320312 210.464844 C 122.320312 210.582031 122.414062 210.675781 122.53125 210.675781 C 122.648438 210.675781 122.742188 210.582031 122.742188 210.464844 Z M 122.742188 210.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.5 216.644531 C 124.5 216.527344 124.40625 216.433594 124.289062 216.433594 C 124.171875 216.433594 124.078125 216.527344 124.078125 216.644531 C 124.078125 216.761719 124.171875 216.855469 124.289062 216.855469 C 124.40625 216.855469 124.5 216.761719 124.5 216.644531 Z M 124.5 216.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.085938 215.371094 C 124.085938 215.253906 123.992188 215.160156 123.875 215.160156 C 123.757812 215.160156 123.664062 215.253906 123.664062 215.371094 C 123.664062 215.488281 123.757812 215.582031 123.875 215.582031 C 123.992188 215.582031 124.085938 215.488281 124.085938 215.371094 Z M 124.085938 215.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.121094 217.152344 C 122.121094 217.035156 122.027344 216.941406 121.910156 216.941406 C 121.792969 216.941406 121.699219 217.035156 121.699219 217.152344 C 121.699219 217.269531 121.792969 217.363281 121.910156 217.363281 C 122.027344 217.363281 122.121094 217.269531 122.121094 217.152344 Z M 122.121094 217.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.3125 215.152344 C 123.3125 215.035156 123.21875 214.941406 123.101562 214.941406 C 122.984375 214.941406 122.890625 215.035156 122.890625 215.152344 C 122.890625 215.269531 122.984375 215.363281 123.101562 215.363281 C 123.21875 215.363281 123.3125 215.269531 123.3125 215.152344 Z M 123.3125 215.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.476562 216.265625 C 122.476562 216.148438 122.382812 216.054688 122.265625 216.054688 C 122.148438 216.054688 122.054688 216.148438 122.054688 216.265625 C 122.054688 216.382812 122.148438 216.476562 122.265625 216.476562 C 122.382812 216.476562 122.476562 216.382812 122.476562 216.265625 Z M 122.476562 216.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.988281 216.078125 C 121.988281 215.960938 121.894531 215.867188 121.777344 215.867188 C 121.660156 215.867188 121.566406 215.960938 121.566406 216.078125 C 121.566406 216.195312 121.660156 216.289062 121.777344 216.289062 C 121.894531 216.289062 121.988281 216.195312 121.988281 216.078125 Z M 121.988281 216.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.355469 213.207031 C 119.355469 213.089844 119.261719 212.996094 119.144531 212.996094 C 119.027344 212.996094 118.933594 213.089844 118.933594 213.207031 C 118.933594 213.324219 119.027344 213.417969 119.144531 213.417969 C 119.261719 213.417969 119.355469 213.324219 119.355469 213.207031 Z M 119.355469 213.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.476562 215.089844 C 116.476562 214.972656 116.382812 214.878906 116.265625 214.878906 C 116.148438 214.878906 116.054688 214.972656 116.054688 215.089844 C 116.054688 215.207031 116.148438 215.300781 116.265625 215.300781 C 116.382812 215.300781 116.476562 215.207031 116.476562 215.089844 Z M 116.476562 215.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.46875 216.285156 C 117.46875 216.167969 117.375 216.074219 117.257812 216.074219 C 117.140625 216.074219 117.046875 216.167969 117.046875 216.285156 C 117.046875 216.402344 117.140625 216.496094 117.257812 216.496094 C 117.375 216.496094 117.46875 216.402344 117.46875 216.285156 Z M 117.46875 216.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.511719 217.453125 C 117.511719 217.335938 117.417969 217.242188 117.300781 217.242188 C 117.183594 217.242188 117.089844 217.335938 117.089844 217.453125 C 117.089844 217.570312 117.183594 217.664062 117.300781 217.664062 C 117.417969 217.664062 117.511719 217.570312 117.511719 217.453125 Z M 117.511719 217.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.015625 218.378906 C 115.015625 218.261719 114.921875 218.167969 114.804688 218.167969 C 114.6875 218.167969 114.59375 218.261719 114.59375 218.378906 C 114.59375 218.496094 114.6875 218.589844 114.804688 218.589844 C 114.921875 218.589844 115.015625 218.496094 115.015625 218.378906 Z M 115.015625 218.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.460938 217.148438 C 119.460938 217.03125 119.367188 216.9375 119.25 216.9375 C 119.132812 216.9375 119.039062 217.03125 119.039062 217.148438 C 119.039062 217.265625 119.132812 217.359375 119.25 217.359375 C 119.367188 217.359375 119.460938 217.265625 119.460938 217.148438 Z M 119.460938 217.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.59375 218.742188 C 121.59375 218.625 121.5 218.53125 121.382812 218.53125 C 121.265625 218.53125 121.171875 218.625 121.171875 218.742188 C 121.171875 218.859375 121.265625 218.953125 121.382812 218.953125 C 121.5 218.953125 121.59375 218.859375 121.59375 218.742188 Z M 121.59375 218.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.046875 218.351562 C 121.046875 218.234375 120.953125 218.140625 120.835938 218.140625 C 120.71875 218.140625 120.625 218.234375 120.625 218.351562 C 120.625 218.46875 120.71875 218.5625 120.835938 218.5625 C 120.953125 218.5625 121.046875 218.46875 121.046875 218.351562 Z M 121.046875 218.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.003906 220.570312 C 124.003906 220.453125 123.910156 220.359375 123.792969 220.359375 C 123.675781 220.359375 123.582031 220.453125 123.582031 220.570312 C 123.582031 220.6875 123.675781 220.78125 123.792969 220.78125 C 123.910156 220.78125 124.003906 220.6875 124.003906 220.570312 Z M 124.003906 220.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.570312 222.261719 C 121.570312 222.144531 121.476562 222.050781 121.359375 222.050781 C 121.242188 222.050781 121.148438 222.144531 121.148438 222.261719 C 121.148438 222.378906 121.242188 222.472656 121.359375 222.472656 C 121.476562 222.472656 121.570312 222.378906 121.570312 222.261719 Z M 121.570312 222.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.296875 220.839844 C 124.296875 220.722656 124.203125 220.628906 124.085938 220.628906 C 123.96875 220.628906 123.875 220.722656 123.875 220.839844 C 123.875 220.957031 123.96875 221.050781 124.085938 221.050781 C 124.203125 221.050781 124.296875 220.957031 124.296875 220.839844 Z M 124.296875 220.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.5 218.390625 C 124.5 218.273438 124.40625 218.179688 124.289062 218.179688 C 124.171875 218.179688 124.078125 218.273438 124.078125 218.390625 C 124.078125 218.507812 124.171875 218.601562 124.289062 218.601562 C 124.40625 218.601562 124.5 218.507812 124.5 218.390625 Z M 124.5 218.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.296875 214.492188 C 125.296875 214.375 125.203125 214.28125 125.085938 214.28125 C 124.96875 214.28125 124.875 214.375 124.875 214.492188 C 124.875 214.609375 124.96875 214.703125 125.085938 214.703125 C 125.203125 214.703125 125.296875 214.609375 125.296875 214.492188 Z M 125.296875 214.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.363281 215.527344 C 122.363281 215.410156 122.269531 215.316406 122.152344 215.316406 C 122.035156 215.316406 121.941406 215.410156 121.941406 215.527344 C 121.941406 215.644531 122.035156 215.738281 122.152344 215.738281 C 122.269531 215.738281 122.363281 215.644531 122.363281 215.527344 Z M 122.363281 215.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.710938 215.214844 C 119.710938 215.097656 119.617188 215.003906 119.5 215.003906 C 119.382812 215.003906 119.289062 215.097656 119.289062 215.214844 C 119.289062 215.332031 119.382812 215.425781 119.5 215.425781 C 119.617188 215.425781 119.710938 215.332031 119.710938 215.214844 Z M 119.710938 215.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.507812 217.574219 C 117.507812 217.457031 117.414062 217.363281 117.296875 217.363281 C 117.179688 217.363281 117.085938 217.457031 117.085938 217.574219 C 117.085938 217.691406 117.179688 217.785156 117.296875 217.785156 C 117.414062 217.785156 117.507812 217.691406 117.507812 217.574219 Z M 117.507812 217.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.605469 218.847656 C 117.605469 218.730469 117.511719 218.636719 117.394531 218.636719 C 117.277344 218.636719 117.183594 218.730469 117.183594 218.847656 C 117.183594 218.964844 117.277344 219.058594 117.394531 219.058594 C 117.511719 219.058594 117.605469 218.964844 117.605469 218.847656 Z M 117.605469 218.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.875 221.613281 C 117.875 221.496094 117.78125 221.402344 117.664062 221.402344 C 117.546875 221.402344 117.453125 221.496094 117.453125 221.613281 C 117.453125 221.730469 117.546875 221.824219 117.664062 221.824219 C 117.78125 221.824219 117.875 221.730469 117.875 221.613281 Z M 117.875 221.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.789062 220.273438 C 120.789062 220.15625 120.695312 220.0625 120.578125 220.0625 C 120.460938 220.0625 120.367188 220.15625 120.367188 220.273438 C 120.367188 220.390625 120.460938 220.484375 120.578125 220.484375 C 120.695312 220.484375 120.789062 220.390625 120.789062 220.273438 Z M 120.789062 220.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.007812 223.730469 C 118.007812 223.613281 117.914062 223.519531 117.796875 223.519531 C 117.679688 223.519531 117.585938 223.613281 117.585938 223.730469 C 117.585938 223.847656 117.679688 223.941406 117.796875 223.941406 C 117.914062 223.941406 118.007812 223.847656 118.007812 223.730469 Z M 118.007812 223.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.582031 222.085938 C 120.582031 221.96875 120.488281 221.875 120.371094 221.875 C 120.253906 221.875 120.160156 221.96875 120.160156 222.085938 C 120.160156 222.203125 120.253906 222.296875 120.371094 222.296875 C 120.488281 222.296875 120.582031 222.203125 120.582031 222.085938 Z M 120.582031 222.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.757812 220.277344 C 120.757812 220.160156 120.664062 220.066406 120.546875 220.066406 C 120.429688 220.066406 120.335938 220.160156 120.335938 220.277344 C 120.335938 220.394531 120.429688 220.488281 120.546875 220.488281 C 120.664062 220.488281 120.757812 220.394531 120.757812 220.277344 Z M 120.757812 220.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.878906 222.882812 C 119.878906 222.765625 119.785156 222.671875 119.667969 222.671875 C 119.550781 222.671875 119.457031 222.765625 119.457031 222.882812 C 119.457031 223 119.550781 223.09375 119.667969 223.09375 C 119.785156 223.09375 119.878906 223 119.878906 222.882812 Z M 119.878906 222.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.628906 218.742188 C 120.628906 218.625 120.535156 218.53125 120.417969 218.53125 C 120.300781 218.53125 120.207031 218.625 120.207031 218.742188 C 120.207031 218.859375 120.300781 218.953125 120.417969 218.953125 C 120.535156 218.953125 120.628906 218.859375 120.628906 218.742188 Z M 120.628906 218.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.953125 220.601562 C 118.953125 220.484375 118.859375 220.390625 118.742188 220.390625 C 118.625 220.390625 118.53125 220.484375 118.53125 220.601562 C 118.53125 220.71875 118.625 220.8125 118.742188 220.8125 C 118.859375 220.8125 118.953125 220.71875 118.953125 220.601562 Z M 118.953125 220.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.058594 220.269531 C 119.058594 220.152344 118.964844 220.058594 118.847656 220.058594 C 118.730469 220.058594 118.636719 220.152344 118.636719 220.269531 C 118.636719 220.386719 118.730469 220.480469 118.847656 220.480469 C 118.964844 220.480469 119.058594 220.386719 119.058594 220.269531 Z M 119.058594 220.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.972656 221.40625 C 115.972656 221.289062 115.878906 221.195312 115.761719 221.195312 C 115.644531 221.195312 115.550781 221.289062 115.550781 221.40625 C 115.550781 221.523438 115.644531 221.617188 115.761719 221.617188 C 115.878906 221.617188 115.972656 221.523438 115.972656 221.40625 Z M 115.972656 221.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.484375 220.074219 C 115.484375 219.957031 115.390625 219.863281 115.273438 219.863281 C 115.15625 219.863281 115.0625 219.957031 115.0625 220.074219 C 115.0625 220.191406 115.15625 220.285156 115.273438 220.285156 C 115.390625 220.285156 115.484375 220.191406 115.484375 220.074219 Z M 115.484375 220.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.394531 220.496094 C 113.394531 220.378906 113.300781 220.285156 113.183594 220.285156 C 113.066406 220.285156 112.972656 220.378906 112.972656 220.496094 C 112.972656 220.613281 113.066406 220.707031 113.183594 220.707031 C 113.300781 220.707031 113.394531 220.613281 113.394531 220.496094 Z M 113.394531 220.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.519531 219.65625 C 117.519531 219.539062 117.425781 219.445312 117.308594 219.445312 C 117.191406 219.445312 117.097656 219.539062 117.097656 219.65625 C 117.097656 219.773438 117.191406 219.867188 117.308594 219.867188 C 117.425781 219.867188 117.519531 219.773438 117.519531 219.65625 Z M 117.519531 219.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.796875 218.507812 C 116.796875 218.390625 116.703125 218.296875 116.585938 218.296875 C 116.46875 218.296875 116.375 218.390625 116.375 218.507812 C 116.375 218.625 116.46875 218.71875 116.585938 218.71875 C 116.703125 218.71875 116.796875 218.625 116.796875 218.507812 Z M 116.796875 218.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.320312 214.914062 C 121.320312 214.796875 121.226562 214.703125 121.109375 214.703125 C 120.992188 214.703125 120.898438 214.796875 120.898438 214.914062 C 120.898438 215.03125 120.992188 215.125 121.109375 215.125 C 121.226562 215.125 121.320312 215.03125 121.320312 214.914062 Z M 121.320312 214.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.757812 216.820312 C 123.757812 216.703125 123.664062 216.609375 123.546875 216.609375 C 123.429688 216.609375 123.335938 216.703125 123.335938 216.820312 C 123.335938 216.9375 123.429688 217.03125 123.546875 217.03125 C 123.664062 217.03125 123.757812 216.9375 123.757812 216.820312 Z M 123.757812 216.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.46875 214.910156 C 123.46875 214.792969 123.375 214.699219 123.257812 214.699219 C 123.140625 214.699219 123.046875 214.792969 123.046875 214.910156 C 123.046875 215.027344 123.140625 215.121094 123.257812 215.121094 C 123.375 215.121094 123.46875 215.027344 123.46875 214.910156 Z M 123.46875 214.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.472656 213.222656 C 122.472656 213.105469 122.378906 213.011719 122.261719 213.011719 C 122.144531 213.011719 122.050781 213.105469 122.050781 213.222656 C 122.050781 213.339844 122.144531 213.433594 122.261719 213.433594 C 122.378906 213.433594 122.472656 213.339844 122.472656 213.222656 Z M 122.472656 213.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.714844 215.394531 C 121.714844 215.277344 121.621094 215.183594 121.503906 215.183594 C 121.386719 215.183594 121.292969 215.277344 121.292969 215.394531 C 121.292969 215.511719 121.386719 215.605469 121.503906 215.605469 C 121.621094 215.605469 121.714844 215.511719 121.714844 215.394531 Z M 121.714844 215.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.90625 216.980469 C 117.90625 216.863281 117.8125 216.769531 117.695312 216.769531 C 117.578125 216.769531 117.484375 216.863281 117.484375 216.980469 C 117.484375 217.097656 117.578125 217.191406 117.695312 217.191406 C 117.8125 217.191406 117.90625 217.097656 117.90625 216.980469 Z M 117.90625 216.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.695312 217.785156 C 120.695312 217.667969 120.601562 217.574219 120.484375 217.574219 C 120.367188 217.574219 120.273438 217.667969 120.273438 217.785156 C 120.273438 217.902344 120.367188 217.996094 120.484375 217.996094 C 120.601562 217.996094 120.695312 217.902344 120.695312 217.785156 Z M 120.695312 217.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.671875 215.457031 C 117.671875 215.339844 117.578125 215.246094 117.460938 215.246094 C 117.34375 215.246094 117.25 215.339844 117.25 215.457031 C 117.25 215.574219 117.34375 215.667969 117.460938 215.667969 C 117.578125 215.667969 117.671875 215.574219 117.671875 215.457031 Z M 117.671875 215.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.59375 217.601562 C 117.59375 217.484375 117.5 217.390625 117.382812 217.390625 C 117.265625 217.390625 117.171875 217.484375 117.171875 217.601562 C 117.171875 217.71875 117.265625 217.8125 117.382812 217.8125 C 117.5 217.8125 117.59375 217.71875 117.59375 217.601562 Z M 117.59375 217.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.417969 217.398438 C 117.417969 217.28125 117.324219 217.1875 117.207031 217.1875 C 117.089844 217.1875 116.996094 217.28125 116.996094 217.398438 C 116.996094 217.515625 117.089844 217.609375 117.207031 217.609375 C 117.324219 217.609375 117.417969 217.515625 117.417969 217.398438 Z M 117.417969 217.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.941406 215.355469 C 116.941406 215.238281 116.847656 215.144531 116.730469 215.144531 C 116.613281 215.144531 116.519531 215.238281 116.519531 215.355469 C 116.519531 215.472656 116.613281 215.566406 116.730469 215.566406 C 116.847656 215.566406 116.941406 215.472656 116.941406 215.355469 Z M 116.941406 215.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.636719 219.332031 C 114.636719 219.214844 114.542969 219.121094 114.425781 219.121094 C 114.308594 219.121094 114.214844 219.214844 114.214844 219.332031 C 114.214844 219.449219 114.308594 219.542969 114.425781 219.542969 C 114.542969 219.542969 114.636719 219.449219 114.636719 219.332031 Z M 114.636719 219.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.113281 218.078125 C 114.113281 217.960938 114.019531 217.867188 113.902344 217.867188 C 113.785156 217.867188 113.691406 217.960938 113.691406 218.078125 C 113.691406 218.195312 113.785156 218.289062 113.902344 218.289062 C 114.019531 218.289062 114.113281 218.195312 114.113281 218.078125 Z M 114.113281 218.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.921875 218.09375 C 116.921875 217.976562 116.828125 217.882812 116.710938 217.882812 C 116.59375 217.882812 116.5 217.976562 116.5 218.09375 C 116.5 218.210938 116.59375 218.304688 116.710938 218.304688 C 116.828125 218.304688 116.921875 218.210938 116.921875 218.09375 Z M 116.921875 218.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.773438 217.988281 C 116.773438 217.871094 116.679688 217.777344 116.5625 217.777344 C 116.445312 217.777344 116.351562 217.871094 116.351562 217.988281 C 116.351562 218.105469 116.445312 218.199219 116.5625 218.199219 C 116.679688 218.199219 116.773438 218.105469 116.773438 217.988281 Z M 116.773438 217.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.996094 216.8125 C 116.996094 216.695312 116.902344 216.601562 116.785156 216.601562 C 116.667969 216.601562 116.574219 216.695312 116.574219 216.8125 C 116.574219 216.929688 116.667969 217.023438 116.785156 217.023438 C 116.902344 217.023438 116.996094 216.929688 116.996094 216.8125 Z M 116.996094 216.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.8125 217.578125 C 119.8125 217.460938 119.71875 217.367188 119.601562 217.367188 C 119.484375 217.367188 119.390625 217.460938 119.390625 217.578125 C 119.390625 217.695312 119.484375 217.789062 119.601562 217.789062 C 119.71875 217.789062 119.8125 217.695312 119.8125 217.578125 Z M 119.8125 217.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.269531 217.570312 C 117.269531 217.453125 117.175781 217.359375 117.058594 217.359375 C 116.941406 217.359375 116.847656 217.453125 116.847656 217.570312 C 116.847656 217.6875 116.941406 217.78125 117.058594 217.78125 C 117.175781 217.78125 117.269531 217.6875 117.269531 217.570312 Z M 117.269531 217.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.90625 220.445312 C 116.90625 220.328125 116.8125 220.234375 116.695312 220.234375 C 116.578125 220.234375 116.484375 220.328125 116.484375 220.445312 C 116.484375 220.5625 116.578125 220.65625 116.695312 220.65625 C 116.8125 220.65625 116.90625 220.5625 116.90625 220.445312 Z M 116.90625 220.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.574219 221.191406 C 113.574219 221.074219 113.480469 220.980469 113.363281 220.980469 C 113.246094 220.980469 113.152344 221.074219 113.152344 221.191406 C 113.152344 221.308594 113.246094 221.402344 113.363281 221.402344 C 113.480469 221.402344 113.574219 221.308594 113.574219 221.191406 Z M 113.574219 221.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.5625 219.007812 C 112.5625 218.890625 112.46875 218.796875 112.351562 218.796875 C 112.234375 218.796875 112.140625 218.890625 112.140625 219.007812 C 112.140625 219.125 112.234375 219.21875 112.351562 219.21875 C 112.46875 219.21875 112.5625 219.125 112.5625 219.007812 Z M 112.5625 219.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.019531 219.171875 C 110.019531 219.054688 109.925781 218.960938 109.808594 218.960938 C 109.691406 218.960938 109.597656 219.054688 109.597656 219.171875 C 109.597656 219.289062 109.691406 219.382812 109.808594 219.382812 C 109.925781 219.382812 110.019531 219.289062 110.019531 219.171875 Z M 110.019531 219.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.839844 221.027344 C 109.839844 220.910156 109.746094 220.816406 109.628906 220.816406 C 109.511719 220.816406 109.417969 220.910156 109.417969 221.027344 C 109.417969 221.144531 109.511719 221.238281 109.628906 221.238281 C 109.746094 221.238281 109.839844 221.144531 109.839844 221.027344 Z M 109.839844 221.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.542969 219.339844 C 110.542969 219.222656 110.449219 219.128906 110.332031 219.128906 C 110.214844 219.128906 110.121094 219.222656 110.121094 219.339844 C 110.121094 219.457031 110.214844 219.550781 110.332031 219.550781 C 110.449219 219.550781 110.542969 219.457031 110.542969 219.339844 Z M 110.542969 219.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.839844 219.6875 C 109.839844 219.570312 109.746094 219.476562 109.628906 219.476562 C 109.511719 219.476562 109.417969 219.570312 109.417969 219.6875 C 109.417969 219.804688 109.511719 219.898438 109.628906 219.898438 C 109.746094 219.898438 109.839844 219.804688 109.839844 219.6875 Z M 109.839844 219.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.589844 216.6875 C 111.589844 216.570312 111.496094 216.476562 111.378906 216.476562 C 111.261719 216.476562 111.167969 216.570312 111.167969 216.6875 C 111.167969 216.804688 111.261719 216.898438 111.378906 216.898438 C 111.496094 216.898438 111.589844 216.804688 111.589844 216.6875 Z M 111.589844 216.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.445312 218.460938 C 111.445312 218.34375 111.351562 218.25 111.234375 218.25 C 111.117188 218.25 111.023438 218.34375 111.023438 218.460938 C 111.023438 218.578125 111.117188 218.671875 111.234375 218.671875 C 111.351562 218.671875 111.445312 218.578125 111.445312 218.460938 Z M 111.445312 218.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.988281 220.210938 C 115.988281 220.09375 115.894531 220 115.777344 220 C 115.660156 220 115.566406 220.09375 115.566406 220.210938 C 115.566406 220.328125 115.660156 220.421875 115.777344 220.421875 C 115.894531 220.421875 115.988281 220.328125 115.988281 220.210938 Z M 115.988281 220.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.617188 217.546875 C 116.617188 217.429688 116.523438 217.335938 116.40625 217.335938 C 116.289062 217.335938 116.195312 217.429688 116.195312 217.546875 C 116.195312 217.664062 116.289062 217.757812 116.40625 217.757812 C 116.523438 217.757812 116.617188 217.664062 116.617188 217.546875 Z M 116.617188 217.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.683594 218.070312 C 116.683594 217.953125 116.589844 217.859375 116.472656 217.859375 C 116.355469 217.859375 116.261719 217.953125 116.261719 218.070312 C 116.261719 218.1875 116.355469 218.28125 116.472656 218.28125 C 116.589844 218.28125 116.683594 218.1875 116.683594 218.070312 Z M 116.683594 218.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.8125 216.289062 C 117.8125 216.171875 117.71875 216.078125 117.601562 216.078125 C 117.484375 216.078125 117.390625 216.171875 117.390625 216.289062 C 117.390625 216.40625 117.484375 216.5 117.601562 216.5 C 117.71875 216.5 117.8125 216.40625 117.8125 216.289062 Z M 117.8125 216.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.023438 215.328125 C 116.023438 215.210938 115.929688 215.117188 115.8125 215.117188 C 115.695312 215.117188 115.601562 215.210938 115.601562 215.328125 C 115.601562 215.445312 115.695312 215.539062 115.8125 215.539062 C 115.929688 215.539062 116.023438 215.445312 116.023438 215.328125 Z M 116.023438 215.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.324219 215.859375 C 113.324219 215.742188 113.230469 215.648438 113.113281 215.648438 C 112.996094 215.648438 112.902344 215.742188 112.902344 215.859375 C 112.902344 215.976562 112.996094 216.070312 113.113281 216.070312 C 113.230469 216.070312 113.324219 215.976562 113.324219 215.859375 Z M 113.324219 215.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.082031 213.632812 C 115.082031 213.515625 114.988281 213.421875 114.871094 213.421875 C 114.753906 213.421875 114.660156 213.515625 114.660156 213.632812 C 114.660156 213.75 114.753906 213.84375 114.871094 213.84375 C 114.988281 213.84375 115.082031 213.75 115.082031 213.632812 Z M 115.082031 213.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.351562 210.335938 C 115.351562 210.21875 115.257812 210.125 115.140625 210.125 C 115.023438 210.125 114.929688 210.21875 114.929688 210.335938 C 114.929688 210.453125 115.023438 210.546875 115.140625 210.546875 C 115.257812 210.546875 115.351562 210.453125 115.351562 210.335938 Z M 115.351562 210.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.773438 215.449219 C 115.773438 215.332031 115.679688 215.238281 115.5625 215.238281 C 115.445312 215.238281 115.351562 215.332031 115.351562 215.449219 C 115.351562 215.566406 115.445312 215.660156 115.5625 215.660156 C 115.679688 215.660156 115.773438 215.566406 115.773438 215.449219 Z M 115.773438 215.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.367188 218.261719 C 114.367188 218.144531 114.273438 218.050781 114.15625 218.050781 C 114.039062 218.050781 113.945312 218.144531 113.945312 218.261719 C 113.945312 218.378906 114.039062 218.472656 114.15625 218.472656 C 114.273438 218.472656 114.367188 218.378906 114.367188 218.261719 Z M 114.367188 218.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.578125 219.773438 C 118.578125 219.65625 118.484375 219.5625 118.367188 219.5625 C 118.25 219.5625 118.15625 219.65625 118.15625 219.773438 C 118.15625 219.890625 118.25 219.984375 118.367188 219.984375 C 118.484375 219.984375 118.578125 219.890625 118.578125 219.773438 Z M 118.578125 219.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.492188 219.304688 C 116.492188 219.1875 116.398438 219.09375 116.28125 219.09375 C 116.164062 219.09375 116.070312 219.1875 116.070312 219.304688 C 116.070312 219.421875 116.164062 219.515625 116.28125 219.515625 C 116.398438 219.515625 116.492188 219.421875 116.492188 219.304688 Z M 116.492188 219.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.703125 219.695312 C 116.703125 219.578125 116.609375 219.484375 116.492188 219.484375 C 116.375 219.484375 116.28125 219.578125 116.28125 219.695312 C 116.28125 219.8125 116.375 219.90625 116.492188 219.90625 C 116.609375 219.90625 116.703125 219.8125 116.703125 219.695312 Z M 116.703125 219.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.667969 218.269531 C 116.667969 218.152344 116.574219 218.058594 116.457031 218.058594 C 116.339844 218.058594 116.246094 218.152344 116.246094 218.269531 C 116.246094 218.386719 116.339844 218.480469 116.457031 218.480469 C 116.574219 218.480469 116.667969 218.386719 116.667969 218.269531 Z M 116.667969 218.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.574219 216.128906 C 117.574219 216.011719 117.480469 215.917969 117.363281 215.917969 C 117.246094 215.917969 117.152344 216.011719 117.152344 216.128906 C 117.152344 216.246094 117.246094 216.339844 117.363281 216.339844 C 117.480469 216.339844 117.574219 216.246094 117.574219 216.128906 Z M 117.574219 216.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.449219 215.269531 C 118.449219 215.152344 118.355469 215.058594 118.238281 215.058594 C 118.121094 215.058594 118.027344 215.152344 118.027344 215.269531 C 118.027344 215.386719 118.121094 215.480469 118.238281 215.480469 C 118.355469 215.480469 118.449219 215.386719 118.449219 215.269531 Z M 118.449219 215.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.550781 214.933594 C 117.550781 214.816406 117.457031 214.722656 117.339844 214.722656 C 117.222656 214.722656 117.128906 214.816406 117.128906 214.933594 C 117.128906 215.050781 117.222656 215.144531 117.339844 215.144531 C 117.457031 215.144531 117.550781 215.050781 117.550781 214.933594 Z M 117.550781 214.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.050781 215.394531 C 113.050781 215.277344 112.957031 215.183594 112.839844 215.183594 C 112.722656 215.183594 112.628906 215.277344 112.628906 215.394531 C 112.628906 215.511719 112.722656 215.605469 112.839844 215.605469 C 112.957031 215.605469 113.050781 215.511719 113.050781 215.394531 Z M 113.050781 215.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.085938 214.503906 C 110.085938 214.386719 109.992188 214.292969 109.875 214.292969 C 109.757812 214.292969 109.664062 214.386719 109.664062 214.503906 C 109.664062 214.621094 109.757812 214.714844 109.875 214.714844 C 109.992188 214.714844 110.085938 214.621094 110.085938 214.503906 Z M 110.085938 214.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.773438 211.777344 C 110.773438 211.660156 110.679688 211.566406 110.5625 211.566406 C 110.445312 211.566406 110.351562 211.660156 110.351562 211.777344 C 110.351562 211.894531 110.445312 211.988281 110.5625 211.988281 C 110.679688 211.988281 110.773438 211.894531 110.773438 211.777344 Z M 110.773438 211.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.351562 213.644531 C 108.351562 213.527344 108.257812 213.433594 108.140625 213.433594 C 108.023438 213.433594 107.929688 213.527344 107.929688 213.644531 C 107.929688 213.761719 108.023438 213.855469 108.140625 213.855469 C 108.257812 213.855469 108.351562 213.761719 108.351562 213.644531 Z M 108.351562 213.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.140625 213.359375 C 108.140625 213.242188 108.046875 213.148438 107.929688 213.148438 C 107.8125 213.148438 107.71875 213.242188 107.71875 213.359375 C 107.71875 213.476562 107.8125 213.570312 107.929688 213.570312 C 108.046875 213.570312 108.140625 213.476562 108.140625 213.359375 Z M 108.140625 213.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.289062 212.035156 C 109.289062 211.917969 109.195312 211.824219 109.078125 211.824219 C 108.960938 211.824219 108.867188 211.917969 108.867188 212.035156 C 108.867188 212.152344 108.960938 212.246094 109.078125 212.246094 C 109.195312 212.246094 109.289062 212.152344 109.289062 212.035156 Z M 109.289062 212.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.28125 209.582031 C 109.28125 209.464844 109.1875 209.371094 109.070312 209.371094 C 108.953125 209.371094 108.859375 209.464844 108.859375 209.582031 C 108.859375 209.699219 108.953125 209.792969 109.070312 209.792969 C 109.1875 209.792969 109.28125 209.699219 109.28125 209.582031 Z M 109.28125 209.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.238281 209.605469 C 110.238281 209.488281 110.144531 209.394531 110.027344 209.394531 C 109.910156 209.394531 109.816406 209.488281 109.816406 209.605469 C 109.816406 209.722656 109.910156 209.816406 110.027344 209.816406 C 110.144531 209.816406 110.238281 209.722656 110.238281 209.605469 Z M 110.238281 209.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.503906 208.597656 C 107.503906 208.480469 107.410156 208.386719 107.292969 208.386719 C 107.175781 208.386719 107.082031 208.480469 107.082031 208.597656 C 107.082031 208.714844 107.175781 208.808594 107.292969 208.808594 C 107.410156 208.808594 107.503906 208.714844 107.503906 208.597656 Z M 107.503906 208.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.605469 208.132812 C 107.605469 208.015625 107.511719 207.921875 107.394531 207.921875 C 107.277344 207.921875 107.183594 208.015625 107.183594 208.132812 C 107.183594 208.25 107.277344 208.34375 107.394531 208.34375 C 107.511719 208.34375 107.605469 208.25 107.605469 208.132812 Z M 107.605469 208.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.503906 206.746094 C 107.503906 206.628906 107.410156 206.535156 107.292969 206.535156 C 107.175781 206.535156 107.082031 206.628906 107.082031 206.746094 C 107.082031 206.863281 107.175781 206.957031 107.292969 206.957031 C 107.410156 206.957031 107.503906 206.863281 107.503906 206.746094 Z M 107.503906 206.746094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.601562 209.191406 C 110.601562 209.074219 110.507812 208.980469 110.390625 208.980469 C 110.273438 208.980469 110.179688 209.074219 110.179688 209.191406 C 110.179688 209.308594 110.273438 209.402344 110.390625 209.402344 C 110.507812 209.402344 110.601562 209.308594 110.601562 209.191406 Z M 110.601562 209.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.375 206.304688 C 111.375 206.1875 111.28125 206.09375 111.164062 206.09375 C 111.046875 206.09375 110.953125 206.1875 110.953125 206.304688 C 110.953125 206.421875 111.046875 206.515625 111.164062 206.515625 C 111.28125 206.515625 111.375 206.421875 111.375 206.304688 Z M 111.375 206.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.34375 205.351562 C 114.34375 205.234375 114.25 205.140625 114.132812 205.140625 C 114.015625 205.140625 113.921875 205.234375 113.921875 205.351562 C 113.921875 205.46875 114.015625 205.5625 114.132812 205.5625 C 114.25 205.5625 114.34375 205.46875 114.34375 205.351562 Z M 114.34375 205.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.683594 208.472656 C 113.683594 208.355469 113.589844 208.261719 113.472656 208.261719 C 113.355469 208.261719 113.261719 208.355469 113.261719 208.472656 C 113.261719 208.589844 113.355469 208.683594 113.472656 208.683594 C 113.589844 208.683594 113.683594 208.589844 113.683594 208.472656 Z M 113.683594 208.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.519531 208.503906 C 115.519531 208.386719 115.425781 208.292969 115.308594 208.292969 C 115.191406 208.292969 115.097656 208.386719 115.097656 208.503906 C 115.097656 208.621094 115.191406 208.714844 115.308594 208.714844 C 115.425781 208.714844 115.519531 208.621094 115.519531 208.503906 Z M 115.519531 208.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.398438 206.8125 C 112.398438 206.695312 112.304688 206.601562 112.1875 206.601562 C 112.070312 206.601562 111.976562 206.695312 111.976562 206.8125 C 111.976562 206.929688 112.070312 207.023438 112.1875 207.023438 C 112.304688 207.023438 112.398438 206.929688 112.398438 206.8125 Z M 112.398438 206.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.113281 210.285156 C 112.113281 210.167969 112.019531 210.074219 111.902344 210.074219 C 111.785156 210.074219 111.691406 210.167969 111.691406 210.285156 C 111.691406 210.402344 111.785156 210.496094 111.902344 210.496094 C 112.019531 210.496094 112.113281 210.402344 112.113281 210.285156 Z M 112.113281 210.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.671875 208.667969 C 111.671875 208.550781 111.578125 208.457031 111.460938 208.457031 C 111.34375 208.457031 111.25 208.550781 111.25 208.667969 C 111.25 208.785156 111.34375 208.878906 111.460938 208.878906 C 111.578125 208.878906 111.671875 208.785156 111.671875 208.667969 Z M 111.671875 208.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.636719 208.277344 C 110.636719 208.160156 110.542969 208.066406 110.425781 208.066406 C 110.308594 208.066406 110.214844 208.160156 110.214844 208.277344 C 110.214844 208.394531 110.308594 208.488281 110.425781 208.488281 C 110.542969 208.488281 110.636719 208.394531 110.636719 208.277344 Z M 110.636719 208.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.714844 212.203125 C 109.714844 212.085938 109.621094 211.992188 109.503906 211.992188 C 109.386719 211.992188 109.292969 212.085938 109.292969 212.203125 C 109.292969 212.320312 109.386719 212.414062 109.503906 212.414062 C 109.621094 212.414062 109.714844 212.320312 109.714844 212.203125 Z M 109.714844 212.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.546875 209.886719 C 110.546875 209.769531 110.453125 209.675781 110.335938 209.675781 C 110.21875 209.675781 110.125 209.769531 110.125 209.886719 C 110.125 210.003906 110.21875 210.097656 110.335938 210.097656 C 110.453125 210.097656 110.546875 210.003906 110.546875 209.886719 Z M 110.546875 209.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.550781 207.566406 C 109.550781 207.449219 109.457031 207.355469 109.339844 207.355469 C 109.222656 207.355469 109.128906 207.449219 109.128906 207.566406 C 109.128906 207.683594 109.222656 207.777344 109.339844 207.777344 C 109.457031 207.777344 109.550781 207.683594 109.550781 207.566406 Z M 109.550781 207.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.230469 204.101562 C 114.230469 203.984375 114.136719 203.890625 114.019531 203.890625 C 113.902344 203.890625 113.808594 203.984375 113.808594 204.101562 C 113.808594 204.21875 113.902344 204.3125 114.019531 204.3125 C 114.136719 204.3125 114.230469 204.21875 114.230469 204.101562 Z M 114.230469 204.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.667969 206.800781 C 111.667969 206.683594 111.574219 206.589844 111.457031 206.589844 C 111.339844 206.589844 111.246094 206.683594 111.246094 206.800781 C 111.246094 206.917969 111.339844 207.011719 111.457031 207.011719 C 111.574219 207.011719 111.667969 206.917969 111.667969 206.800781 Z M 111.667969 206.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.183594 206.03125 C 113.183594 205.914062 113.089844 205.820312 112.972656 205.820312 C 112.855469 205.820312 112.761719 205.914062 112.761719 206.03125 C 112.761719 206.148438 112.855469 206.242188 112.972656 206.242188 C 113.089844 206.242188 113.183594 206.148438 113.183594 206.03125 Z M 113.183594 206.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.382812 202.300781 C 112.382812 202.183594 112.289062 202.089844 112.171875 202.089844 C 112.054688 202.089844 111.960938 202.183594 111.960938 202.300781 C 111.960938 202.417969 112.054688 202.511719 112.171875 202.511719 C 112.289062 202.511719 112.382812 202.417969 112.382812 202.300781 Z M 112.382812 202.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.394531 201.78125 C 113.394531 201.664062 113.300781 201.570312 113.183594 201.570312 C 113.066406 201.570312 112.972656 201.664062 112.972656 201.78125 C 112.972656 201.898438 113.066406 201.992188 113.183594 201.992188 C 113.300781 201.992188 113.394531 201.898438 113.394531 201.78125 Z M 113.394531 201.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.167969 201.546875 C 112.167969 201.429688 112.074219 201.335938 111.957031 201.335938 C 111.839844 201.335938 111.746094 201.429688 111.746094 201.546875 C 111.746094 201.664062 111.839844 201.757812 111.957031 201.757812 C 112.074219 201.757812 112.167969 201.664062 112.167969 201.546875 Z M 112.167969 201.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.703125 201.460938 C 109.703125 201.34375 109.609375 201.25 109.492188 201.25 C 109.375 201.25 109.28125 201.34375 109.28125 201.460938 C 109.28125 201.578125 109.375 201.671875 109.492188 201.671875 C 109.609375 201.671875 109.703125 201.578125 109.703125 201.460938 Z M 109.703125 201.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.828125 206.160156 C 108.828125 206.042969 108.734375 205.949219 108.617188 205.949219 C 108.5 205.949219 108.40625 206.042969 108.40625 206.160156 C 108.40625 206.277344 108.5 206.371094 108.617188 206.371094 C 108.734375 206.371094 108.828125 206.277344 108.828125 206.160156 Z M 108.828125 206.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.8125 208.183594 C 106.8125 208.066406 106.71875 207.972656 106.601562 207.972656 C 106.484375 207.972656 106.390625 208.066406 106.390625 208.183594 C 106.390625 208.300781 106.484375 208.394531 106.601562 208.394531 C 106.71875 208.394531 106.8125 208.300781 106.8125 208.183594 Z M 106.8125 208.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.308594 208.335938 C 104.308594 208.21875 104.214844 208.125 104.097656 208.125 C 103.980469 208.125 103.886719 208.21875 103.886719 208.335938 C 103.886719 208.453125 103.980469 208.546875 104.097656 208.546875 C 104.214844 208.546875 104.308594 208.453125 104.308594 208.335938 Z M 104.308594 208.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.03125 207.644531 C 99.03125 207.527344 98.9375 207.433594 98.820312 207.433594 C 98.703125 207.433594 98.609375 207.527344 98.609375 207.644531 C 98.609375 207.761719 98.703125 207.855469 98.820312 207.855469 C 98.9375 207.855469 99.03125 207.761719 99.03125 207.644531 Z M 99.03125 207.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.042969 209.546875 C 99.042969 209.429688 98.949219 209.335938 98.832031 209.335938 C 98.714844 209.335938 98.621094 209.429688 98.621094 209.546875 C 98.621094 209.664062 98.714844 209.757812 98.832031 209.757812 C 98.949219 209.757812 99.042969 209.664062 99.042969 209.546875 Z M 99.042969 209.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.097656 207.121094 C 96.097656 207.003906 96.003906 206.910156 95.886719 206.910156 C 95.769531 206.910156 95.675781 207.003906 95.675781 207.121094 C 95.675781 207.238281 95.769531 207.332031 95.886719 207.332031 C 96.003906 207.332031 96.097656 207.238281 96.097656 207.121094 Z M 96.097656 207.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.828125 207.320312 C 97.828125 207.203125 97.734375 207.109375 97.617188 207.109375 C 97.5 207.109375 97.40625 207.203125 97.40625 207.320312 C 97.40625 207.4375 97.5 207.53125 97.617188 207.53125 C 97.734375 207.53125 97.828125 207.4375 97.828125 207.320312 Z M 97.828125 207.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.015625 210.085938 C 99.015625 209.96875 98.921875 209.875 98.804688 209.875 C 98.6875 209.875 98.59375 209.96875 98.59375 210.085938 C 98.59375 210.203125 98.6875 210.296875 98.804688 210.296875 C 98.921875 210.296875 99.015625 210.203125 99.015625 210.085938 Z M 99.015625 210.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.113281 211.675781 C 101.113281 211.558594 101.019531 211.464844 100.902344 211.464844 C 100.785156 211.464844 100.691406 211.558594 100.691406 211.675781 C 100.691406 211.792969 100.785156 211.886719 100.902344 211.886719 C 101.019531 211.886719 101.113281 211.792969 101.113281 211.675781 Z M 101.113281 211.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.453125 214.375 C 100.453125 214.257812 100.359375 214.164062 100.242188 214.164062 C 100.125 214.164062 100.03125 214.257812 100.03125 214.375 C 100.03125 214.492188 100.125 214.585938 100.242188 214.585938 C 100.359375 214.585938 100.453125 214.492188 100.453125 214.375 Z M 100.453125 214.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.824219 218.003906 C 99.824219 217.886719 99.730469 217.792969 99.613281 217.792969 C 99.496094 217.792969 99.402344 217.886719 99.402344 218.003906 C 99.402344 218.121094 99.496094 218.214844 99.613281 218.214844 C 99.730469 218.214844 99.824219 218.121094 99.824219 218.003906 Z M 99.824219 218.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 102.359375 216.972656 C 102.359375 216.855469 102.265625 216.761719 102.148438 216.761719 C 102.03125 216.761719 101.9375 216.855469 101.9375 216.972656 C 101.9375 217.089844 102.03125 217.183594 102.148438 217.183594 C 102.265625 217.183594 102.359375 217.089844 102.359375 216.972656 Z M 102.359375 216.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.273438 217.328125 C 100.273438 217.210938 100.179688 217.117188 100.0625 217.117188 C 99.945312 217.117188 99.851562 217.210938 99.851562 217.328125 C 99.851562 217.445312 99.945312 217.539062 100.0625 217.539062 C 100.179688 217.539062 100.273438 217.445312 100.273438 217.328125 Z M 100.273438 217.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.539062 217.914062 C 98.539062 217.796875 98.445312 217.703125 98.328125 217.703125 C 98.210938 217.703125 98.117188 217.796875 98.117188 217.914062 C 98.117188 218.03125 98.210938 218.125 98.328125 218.125 C 98.445312 218.125 98.539062 218.03125 98.539062 217.914062 Z M 98.539062 217.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.695312 216.089844 C 101.695312 215.972656 101.601562 215.878906 101.484375 215.878906 C 101.367188 215.878906 101.273438 215.972656 101.273438 216.089844 C 101.273438 216.207031 101.367188 216.300781 101.484375 216.300781 C 101.601562 216.300781 101.695312 216.207031 101.695312 216.089844 Z M 101.695312 216.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.195312 218.785156 C 104.195312 218.667969 104.101562 218.574219 103.984375 218.574219 C 103.867188 218.574219 103.773438 218.667969 103.773438 218.785156 C 103.773438 218.902344 103.867188 218.996094 103.984375 218.996094 C 104.101562 218.996094 104.195312 218.902344 104.195312 218.785156 Z M 104.195312 218.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.859375 218.675781 C 104.859375 218.558594 104.765625 218.464844 104.648438 218.464844 C 104.53125 218.464844 104.4375 218.558594 104.4375 218.675781 C 104.4375 218.792969 104.53125 218.886719 104.648438 218.886719 C 104.765625 218.886719 104.859375 218.792969 104.859375 218.675781 Z M 104.859375 218.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.128906 219.601562 C 104.128906 219.484375 104.035156 219.390625 103.917969 219.390625 C 103.800781 219.390625 103.707031 219.484375 103.707031 219.601562 C 103.707031 219.71875 103.800781 219.8125 103.917969 219.8125 C 104.035156 219.8125 104.128906 219.71875 104.128906 219.601562 Z M 104.128906 219.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.921875 218.238281 C 105.921875 218.121094 105.828125 218.027344 105.710938 218.027344 C 105.59375 218.027344 105.5 218.121094 105.5 218.238281 C 105.5 218.355469 105.59375 218.449219 105.710938 218.449219 C 105.828125 218.449219 105.921875 218.355469 105.921875 218.238281 Z M 105.921875 218.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.621094 216.546875 C 103.621094 216.429688 103.527344 216.335938 103.410156 216.335938 C 103.292969 216.335938 103.199219 216.429688 103.199219 216.546875 C 103.199219 216.664062 103.292969 216.757812 103.410156 216.757812 C 103.527344 216.757812 103.621094 216.664062 103.621094 216.546875 Z M 103.621094 216.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.574219 214.511719 C 103.574219 214.394531 103.480469 214.300781 103.363281 214.300781 C 103.246094 214.300781 103.152344 214.394531 103.152344 214.511719 C 103.152344 214.628906 103.246094 214.722656 103.363281 214.722656 C 103.480469 214.722656 103.574219 214.628906 103.574219 214.511719 Z M 103.574219 214.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.441406 216.445312 C 105.441406 216.328125 105.347656 216.234375 105.230469 216.234375 C 105.113281 216.234375 105.019531 216.328125 105.019531 216.445312 C 105.019531 216.5625 105.113281 216.65625 105.230469 216.65625 C 105.347656 216.65625 105.441406 216.5625 105.441406 216.445312 Z M 105.441406 216.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.945312 215.710938 C 106.945312 215.59375 106.851562 215.5 106.734375 215.5 C 106.617188 215.5 106.523438 215.59375 106.523438 215.710938 C 106.523438 215.828125 106.617188 215.921875 106.734375 215.921875 C 106.851562 215.921875 106.945312 215.828125 106.945312 215.710938 Z M 106.945312 215.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.265625 214.984375 C 110.265625 214.867188 110.171875 214.773438 110.054688 214.773438 C 109.9375 214.773438 109.84375 214.867188 109.84375 214.984375 C 109.84375 215.101562 109.9375 215.195312 110.054688 215.195312 C 110.171875 215.195312 110.265625 215.101562 110.265625 214.984375 Z M 110.265625 214.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.675781 216.328125 C 109.675781 216.210938 109.582031 216.117188 109.464844 216.117188 C 109.347656 216.117188 109.253906 216.210938 109.253906 216.328125 C 109.253906 216.445312 109.347656 216.539062 109.464844 216.539062 C 109.582031 216.539062 109.675781 216.445312 109.675781 216.328125 Z M 109.675781 216.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.964844 216.011719 C 110.964844 215.894531 110.871094 215.800781 110.753906 215.800781 C 110.636719 215.800781 110.542969 215.894531 110.542969 216.011719 C 110.542969 216.128906 110.636719 216.222656 110.753906 216.222656 C 110.871094 216.222656 110.964844 216.128906 110.964844 216.011719 Z M 110.964844 216.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.246094 218.722656 C 108.246094 218.605469 108.152344 218.511719 108.035156 218.511719 C 107.917969 218.511719 107.824219 218.605469 107.824219 218.722656 C 107.824219 218.839844 107.917969 218.933594 108.035156 218.933594 C 108.152344 218.933594 108.246094 218.839844 108.246094 218.722656 Z M 108.246094 218.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.859375 214.371094 C 109.859375 214.253906 109.765625 214.160156 109.648438 214.160156 C 109.53125 214.160156 109.4375 214.253906 109.4375 214.371094 C 109.4375 214.488281 109.53125 214.582031 109.648438 214.582031 C 109.765625 214.582031 109.859375 214.488281 109.859375 214.371094 Z M 109.859375 214.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.636719 217.371094 C 110.636719 217.253906 110.542969 217.160156 110.425781 217.160156 C 110.308594 217.160156 110.214844 217.253906 110.214844 217.371094 C 110.214844 217.488281 110.308594 217.582031 110.425781 217.582031 C 110.542969 217.582031 110.636719 217.488281 110.636719 217.371094 Z M 110.636719 217.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.253906 219.722656 C 111.253906 219.605469 111.160156 219.511719 111.042969 219.511719 C 110.925781 219.511719 110.832031 219.605469 110.832031 219.722656 C 110.832031 219.839844 110.925781 219.933594 111.042969 219.933594 C 111.160156 219.933594 111.253906 219.839844 111.253906 219.722656 Z M 111.253906 219.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.472656 218.300781 C 109.472656 218.183594 109.378906 218.089844 109.261719 218.089844 C 109.144531 218.089844 109.050781 218.183594 109.050781 218.300781 C 109.050781 218.417969 109.144531 218.511719 109.261719 218.511719 C 109.378906 218.511719 109.472656 218.417969 109.472656 218.300781 Z M 109.472656 218.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.699219 220.105469 C 113.699219 219.988281 113.605469 219.894531 113.488281 219.894531 C 113.371094 219.894531 113.277344 219.988281 113.277344 220.105469 C 113.277344 220.222656 113.371094 220.316406 113.488281 220.316406 C 113.605469 220.316406 113.699219 220.222656 113.699219 220.105469 Z M 113.699219 220.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.597656 220.84375 C 114.597656 220.726562 114.503906 220.632812 114.386719 220.632812 C 114.269531 220.632812 114.175781 220.726562 114.175781 220.84375 C 114.175781 220.960938 114.269531 221.054688 114.386719 221.054688 C 114.503906 221.054688 114.597656 220.960938 114.597656 220.84375 Z M 114.597656 220.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.910156 218.242188 C 112.910156 218.125 112.816406 218.03125 112.699219 218.03125 C 112.582031 218.03125 112.488281 218.125 112.488281 218.242188 C 112.488281 218.359375 112.582031 218.453125 112.699219 218.453125 C 112.816406 218.453125 112.910156 218.359375 112.910156 218.242188 Z M 112.910156 218.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.671875 216.296875 C 112.671875 216.179688 112.578125 216.085938 112.460938 216.085938 C 112.34375 216.085938 112.25 216.179688 112.25 216.296875 C 112.25 216.414062 112.34375 216.507812 112.460938 216.507812 C 112.578125 216.507812 112.671875 216.414062 112.671875 216.296875 Z M 112.671875 216.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.3125 212.980469 C 114.3125 212.863281 114.21875 212.769531 114.101562 212.769531 C 113.984375 212.769531 113.890625 212.863281 113.890625 212.980469 C 113.890625 213.097656 113.984375 213.191406 114.101562 213.191406 C 114.21875 213.191406 114.3125 213.097656 114.3125 212.980469 Z M 114.3125 212.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.289062 211.433594 C 116.289062 211.316406 116.195312 211.222656 116.078125 211.222656 C 115.960938 211.222656 115.867188 211.316406 115.867188 211.433594 C 115.867188 211.550781 115.960938 211.644531 116.078125 211.644531 C 116.195312 211.644531 116.289062 211.550781 116.289062 211.433594 Z M 116.289062 211.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.992188 209.476562 C 120.992188 209.359375 120.898438 209.265625 120.78125 209.265625 C 120.664062 209.265625 120.570312 209.359375 120.570312 209.476562 C 120.570312 209.59375 120.664062 209.6875 120.78125 209.6875 C 120.898438 209.6875 120.992188 209.59375 120.992188 209.476562 Z M 120.992188 209.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.816406 210.179688 C 119.816406 210.0625 119.722656 209.96875 119.605469 209.96875 C 119.488281 209.96875 119.394531 210.0625 119.394531 210.179688 C 119.394531 210.296875 119.488281 210.390625 119.605469 210.390625 C 119.722656 210.390625 119.816406 210.296875 119.816406 210.179688 Z M 119.816406 210.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.273438 210.316406 C 118.273438 210.199219 118.179688 210.105469 118.0625 210.105469 C 117.945312 210.105469 117.851562 210.199219 117.851562 210.316406 C 117.851562 210.433594 117.945312 210.527344 118.0625 210.527344 C 118.179688 210.527344 118.273438 210.433594 118.273438 210.316406 Z M 118.273438 210.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.335938 211.707031 C 120.335938 211.589844 120.242188 211.496094 120.125 211.496094 C 120.007812 211.496094 119.914062 211.589844 119.914062 211.707031 C 119.914062 211.824219 120.007812 211.917969 120.125 211.917969 C 120.242188 211.917969 120.335938 211.824219 120.335938 211.707031 Z M 120.335938 211.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.574219 209.664062 C 125.574219 209.546875 125.480469 209.453125 125.363281 209.453125 C 125.246094 209.453125 125.152344 209.546875 125.152344 209.664062 C 125.152344 209.78125 125.246094 209.875 125.363281 209.875 C 125.480469 209.875 125.574219 209.78125 125.574219 209.664062 Z M 125.574219 209.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.8125 210.910156 C 124.8125 210.792969 124.71875 210.699219 124.601562 210.699219 C 124.484375 210.699219 124.390625 210.792969 124.390625 210.910156 C 124.390625 211.027344 124.484375 211.121094 124.601562 211.121094 C 124.71875 211.121094 124.8125 211.027344 124.8125 210.910156 Z M 124.8125 210.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.238281 212.707031 C 120.238281 212.589844 120.144531 212.496094 120.027344 212.496094 C 119.910156 212.496094 119.816406 212.589844 119.816406 212.707031 C 119.816406 212.824219 119.910156 212.917969 120.027344 212.917969 C 120.144531 212.917969 120.238281 212.824219 120.238281 212.707031 Z M 120.238281 212.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.46875 213.628906 C 118.46875 213.511719 118.375 213.417969 118.257812 213.417969 C 118.140625 213.417969 118.046875 213.511719 118.046875 213.628906 C 118.046875 213.746094 118.140625 213.839844 118.257812 213.839844 C 118.375 213.839844 118.46875 213.746094 118.46875 213.628906 Z M 118.46875 213.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.234375 214.695312 C 116.234375 214.578125 116.140625 214.484375 116.023438 214.484375 C 115.90625 214.484375 115.8125 214.578125 115.8125 214.695312 C 115.8125 214.8125 115.90625 214.90625 116.023438 214.90625 C 116.140625 214.90625 116.234375 214.8125 116.234375 214.695312 Z M 116.234375 214.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.929688 211.839844 C 117.929688 211.722656 117.835938 211.628906 117.71875 211.628906 C 117.601562 211.628906 117.507812 211.722656 117.507812 211.839844 C 117.507812 211.957031 117.601562 212.050781 117.71875 212.050781 C 117.835938 212.050781 117.929688 211.957031 117.929688 211.839844 Z M 117.929688 211.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.246094 213.527344 C 118.246094 213.410156 118.152344 213.316406 118.035156 213.316406 C 117.917969 213.316406 117.824219 213.410156 117.824219 213.527344 C 117.824219 213.644531 117.917969 213.738281 118.035156 213.738281 C 118.152344 213.738281 118.246094 213.644531 118.246094 213.527344 Z M 118.246094 213.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.183594 211.441406 C 119.183594 211.324219 119.089844 211.230469 118.972656 211.230469 C 118.855469 211.230469 118.761719 211.324219 118.761719 211.441406 C 118.761719 211.558594 118.855469 211.652344 118.972656 211.652344 C 119.089844 211.652344 119.183594 211.558594 119.183594 211.441406 Z M 119.183594 211.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.425781 210.273438 C 118.425781 210.15625 118.332031 210.0625 118.214844 210.0625 C 118.097656 210.0625 118.003906 210.15625 118.003906 210.273438 C 118.003906 210.390625 118.097656 210.484375 118.214844 210.484375 C 118.332031 210.484375 118.425781 210.390625 118.425781 210.273438 Z M 118.425781 210.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.003906 208.832031 C 116.003906 208.714844 115.910156 208.621094 115.792969 208.621094 C 115.675781 208.621094 115.582031 208.714844 115.582031 208.832031 C 115.582031 208.949219 115.675781 209.042969 115.792969 209.042969 C 115.910156 209.042969 116.003906 208.949219 116.003906 208.832031 Z M 116.003906 208.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.816406 207.53125 C 115.816406 207.414062 115.722656 207.320312 115.605469 207.320312 C 115.488281 207.320312 115.394531 207.414062 115.394531 207.53125 C 115.394531 207.648438 115.488281 207.742188 115.605469 207.742188 C 115.722656 207.742188 115.816406 207.648438 115.816406 207.53125 Z M 115.816406 207.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.785156 204.835938 C 116.785156 204.71875 116.691406 204.625 116.574219 204.625 C 116.457031 204.625 116.363281 204.71875 116.363281 204.835938 C 116.363281 204.953125 116.457031 205.046875 116.574219 205.046875 C 116.691406 205.046875 116.785156 204.953125 116.785156 204.835938 Z M 116.785156 204.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.9375 206.453125 C 118.9375 206.335938 118.84375 206.242188 118.726562 206.242188 C 118.609375 206.242188 118.515625 206.335938 118.515625 206.453125 C 118.515625 206.570312 118.609375 206.664062 118.726562 206.664062 C 118.84375 206.664062 118.9375 206.570312 118.9375 206.453125 Z M 118.9375 206.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.277344 205.464844 C 119.277344 205.347656 119.183594 205.253906 119.066406 205.253906 C 118.949219 205.253906 118.855469 205.347656 118.855469 205.464844 C 118.855469 205.582031 118.949219 205.675781 119.066406 205.675781 C 119.183594 205.675781 119.277344 205.582031 119.277344 205.464844 Z M 119.277344 205.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.703125 208.300781 C 117.703125 208.183594 117.609375 208.089844 117.492188 208.089844 C 117.375 208.089844 117.28125 208.183594 117.28125 208.300781 C 117.28125 208.417969 117.375 208.511719 117.492188 208.511719 C 117.609375 208.511719 117.703125 208.417969 117.703125 208.300781 Z M 117.703125 208.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.238281 203.066406 C 119.238281 202.949219 119.144531 202.855469 119.027344 202.855469 C 118.910156 202.855469 118.816406 202.949219 118.816406 203.066406 C 118.816406 203.183594 118.910156 203.277344 119.027344 203.277344 C 119.144531 203.277344 119.238281 203.183594 119.238281 203.066406 Z M 119.238281 203.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.5 201.105469 C 114.5 200.988281 114.40625 200.894531 114.289062 200.894531 C 114.171875 200.894531 114.078125 200.988281 114.078125 201.105469 C 114.078125 201.222656 114.171875 201.316406 114.289062 201.316406 C 114.40625 201.316406 114.5 201.222656 114.5 201.105469 Z M 114.5 201.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.214844 199.101562 C 111.214844 198.984375 111.121094 198.890625 111.003906 198.890625 C 110.886719 198.890625 110.792969 198.984375 110.792969 199.101562 C 110.792969 199.21875 110.886719 199.3125 111.003906 199.3125 C 111.121094 199.3125 111.214844 199.21875 111.214844 199.101562 Z M 111.214844 199.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.199219 198.144531 C 110.199219 198.027344 110.105469 197.933594 109.988281 197.933594 C 109.871094 197.933594 109.777344 198.027344 109.777344 198.144531 C 109.777344 198.261719 109.871094 198.355469 109.988281 198.355469 C 110.105469 198.355469 110.199219 198.261719 110.199219 198.144531 Z M 110.199219 198.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.042969 199.28125 C 108.042969 199.164062 107.949219 199.070312 107.832031 199.070312 C 107.714844 199.070312 107.621094 199.164062 107.621094 199.28125 C 107.621094 199.398438 107.714844 199.492188 107.832031 199.492188 C 107.949219 199.492188 108.042969 199.398438 108.042969 199.28125 Z M 108.042969 199.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.273438 198.828125 C 108.273438 198.710938 108.179688 198.617188 108.0625 198.617188 C 107.945312 198.617188 107.851562 198.710938 107.851562 198.828125 C 107.851562 198.945312 107.945312 199.039062 108.0625 199.039062 C 108.179688 199.039062 108.273438 198.945312 108.273438 198.828125 Z M 108.273438 198.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.175781 199.242188 C 111.175781 199.125 111.082031 199.03125 110.964844 199.03125 C 110.847656 199.03125 110.753906 199.125 110.753906 199.242188 C 110.753906 199.359375 110.847656 199.453125 110.964844 199.453125 C 111.082031 199.453125 111.175781 199.359375 111.175781 199.242188 Z M 111.175781 199.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.949219 197.667969 C 108.949219 197.550781 108.855469 197.457031 108.738281 197.457031 C 108.621094 197.457031 108.527344 197.550781 108.527344 197.667969 C 108.527344 197.785156 108.621094 197.878906 108.738281 197.878906 C 108.855469 197.878906 108.949219 197.785156 108.949219 197.667969 Z M 108.949219 197.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.667969 194.800781 C 109.667969 194.683594 109.574219 194.589844 109.457031 194.589844 C 109.339844 194.589844 109.246094 194.683594 109.246094 194.800781 C 109.246094 194.917969 109.339844 195.011719 109.457031 195.011719 C 109.574219 195.011719 109.667969 194.917969 109.667969 194.800781 Z M 109.667969 194.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.113281 197.726562 C 114.113281 197.609375 114.019531 197.515625 113.902344 197.515625 C 113.785156 197.515625 113.691406 197.609375 113.691406 197.726562 C 113.691406 197.84375 113.785156 197.9375 113.902344 197.9375 C 114.019531 197.9375 114.113281 197.84375 114.113281 197.726562 Z M 114.113281 197.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.730469 197.125 C 114.730469 197.007812 114.636719 196.914062 114.519531 196.914062 C 114.402344 196.914062 114.308594 197.007812 114.308594 197.125 C 114.308594 197.242188 114.402344 197.335938 114.519531 197.335938 C 114.636719 197.335938 114.730469 197.242188 114.730469 197.125 Z M 114.730469 197.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.285156 203.078125 C 115.285156 202.960938 115.191406 202.867188 115.074219 202.867188 C 114.957031 202.867188 114.863281 202.960938 114.863281 203.078125 C 114.863281 203.195312 114.957031 203.289062 115.074219 203.289062 C 115.191406 203.289062 115.285156 203.195312 115.285156 203.078125 Z M 115.285156 203.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.324219 200.976562 C 114.324219 200.859375 114.230469 200.765625 114.113281 200.765625 C 113.996094 200.765625 113.902344 200.859375 113.902344 200.976562 C 113.902344 201.09375 113.996094 201.1875 114.113281 201.1875 C 114.230469 201.1875 114.324219 201.09375 114.324219 200.976562 Z M 114.324219 200.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.054688 206.546875 C 115.054688 206.429688 114.960938 206.335938 114.84375 206.335938 C 114.726562 206.335938 114.632812 206.429688 114.632812 206.546875 C 114.632812 206.664062 114.726562 206.757812 114.84375 206.757812 C 114.960938 206.757812 115.054688 206.664062 115.054688 206.546875 Z M 115.054688 206.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.65625 204.742188 C 115.65625 204.625 115.5625 204.53125 115.445312 204.53125 C 115.328125 204.53125 115.234375 204.625 115.234375 204.742188 C 115.234375 204.859375 115.328125 204.953125 115.445312 204.953125 C 115.5625 204.953125 115.65625 204.859375 115.65625 204.742188 Z M 115.65625 204.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.28125 206.441406 C 117.28125 206.324219 117.1875 206.230469 117.070312 206.230469 C 116.953125 206.230469 116.859375 206.324219 116.859375 206.441406 C 116.859375 206.558594 116.953125 206.652344 117.070312 206.652344 C 117.1875 206.652344 117.28125 206.558594 117.28125 206.441406 Z M 117.28125 206.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.863281 209.214844 C 117.863281 209.097656 117.769531 209.003906 117.652344 209.003906 C 117.535156 209.003906 117.441406 209.097656 117.441406 209.214844 C 117.441406 209.332031 117.535156 209.425781 117.652344 209.425781 C 117.769531 209.425781 117.863281 209.332031 117.863281 209.214844 Z M 117.863281 209.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.929688 210.714844 C 119.929688 210.597656 119.835938 210.503906 119.71875 210.503906 C 119.601562 210.503906 119.507812 210.597656 119.507812 210.714844 C 119.507812 210.832031 119.601562 210.925781 119.71875 210.925781 C 119.835938 210.925781 119.929688 210.832031 119.929688 210.714844 Z M 119.929688 210.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.199219 211.4375 C 120.199219 211.320312 120.105469 211.226562 119.988281 211.226562 C 119.871094 211.226562 119.777344 211.320312 119.777344 211.4375 C 119.777344 211.554688 119.871094 211.648438 119.988281 211.648438 C 120.105469 211.648438 120.199219 211.554688 120.199219 211.4375 Z M 120.199219 211.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.832031 208.210938 C 118.832031 208.09375 118.738281 208 118.621094 208 C 118.503906 208 118.410156 208.09375 118.410156 208.210938 C 118.410156 208.328125 118.503906 208.421875 118.621094 208.421875 C 118.738281 208.421875 118.832031 208.328125 118.832031 208.210938 Z M 118.832031 208.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.054688 210.621094 C 116.054688 210.503906 115.960938 210.410156 115.84375 210.410156 C 115.726562 210.410156 115.632812 210.503906 115.632812 210.621094 C 115.632812 210.738281 115.726562 210.832031 115.84375 210.832031 C 115.960938 210.832031 116.054688 210.738281 116.054688 210.621094 Z M 116.054688 210.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.617188 208.347656 C 115.617188 208.230469 115.523438 208.136719 115.40625 208.136719 C 115.289062 208.136719 115.195312 208.230469 115.195312 208.347656 C 115.195312 208.464844 115.289062 208.558594 115.40625 208.558594 C 115.523438 208.558594 115.617188 208.464844 115.617188 208.347656 Z M 115.617188 208.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.71875 206.195312 C 114.71875 206.078125 114.625 205.984375 114.507812 205.984375 C 114.390625 205.984375 114.296875 206.078125 114.296875 206.195312 C 114.296875 206.3125 114.390625 206.40625 114.507812 206.40625 C 114.625 206.40625 114.71875 206.3125 114.71875 206.195312 Z M 114.71875 206.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.804688 204.234375 C 114.804688 204.117188 114.710938 204.023438 114.59375 204.023438 C 114.476562 204.023438 114.382812 204.117188 114.382812 204.234375 C 114.382812 204.351562 114.476562 204.445312 114.59375 204.445312 C 114.710938 204.445312 114.804688 204.351562 114.804688 204.234375 Z M 114.804688 204.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.558594 204.253906 C 113.558594 204.136719 113.464844 204.042969 113.347656 204.042969 C 113.230469 204.042969 113.136719 204.136719 113.136719 204.253906 C 113.136719 204.371094 113.230469 204.464844 113.347656 204.464844 C 113.464844 204.464844 113.558594 204.371094 113.558594 204.253906 Z M 113.558594 204.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.519531 203.824219 C 115.519531 203.707031 115.425781 203.613281 115.308594 203.613281 C 115.191406 203.613281 115.097656 203.707031 115.097656 203.824219 C 115.097656 203.941406 115.191406 204.035156 115.308594 204.035156 C 115.425781 204.035156 115.519531 203.941406 115.519531 203.824219 Z M 115.519531 203.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.484375 199.492188 C 116.484375 199.375 116.390625 199.28125 116.273438 199.28125 C 116.15625 199.28125 116.0625 199.375 116.0625 199.492188 C 116.0625 199.609375 116.15625 199.703125 116.273438 199.703125 C 116.390625 199.703125 116.484375 199.609375 116.484375 199.492188 Z M 116.484375 199.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.972656 198.359375 C 117.972656 198.242188 117.878906 198.148438 117.761719 198.148438 C 117.644531 198.148438 117.550781 198.242188 117.550781 198.359375 C 117.550781 198.476562 117.644531 198.570312 117.761719 198.570312 C 117.878906 198.570312 117.972656 198.476562 117.972656 198.359375 Z M 117.972656 198.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.628906 197.691406 C 118.628906 197.574219 118.535156 197.480469 118.417969 197.480469 C 118.300781 197.480469 118.207031 197.574219 118.207031 197.691406 C 118.207031 197.808594 118.300781 197.902344 118.417969 197.902344 C 118.535156 197.902344 118.628906 197.808594 118.628906 197.691406 Z M 118.628906 197.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.789062 197.289062 C 117.789062 197.171875 117.695312 197.078125 117.578125 197.078125 C 117.460938 197.078125 117.367188 197.171875 117.367188 197.289062 C 117.367188 197.40625 117.460938 197.5 117.578125 197.5 C 117.695312 197.5 117.789062 197.40625 117.789062 197.289062 Z M 117.789062 197.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.484375 196.90625 C 117.484375 196.789062 117.390625 196.695312 117.273438 196.695312 C 117.15625 196.695312 117.0625 196.789062 117.0625 196.90625 C 117.0625 197.023438 117.15625 197.117188 117.273438 197.117188 C 117.390625 197.117188 117.484375 197.023438 117.484375 196.90625 Z M 117.484375 196.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.320312 199.371094 C 115.320312 199.253906 115.226562 199.160156 115.109375 199.160156 C 114.992188 199.160156 114.898438 199.253906 114.898438 199.371094 C 114.898438 199.488281 114.992188 199.582031 115.109375 199.582031 C 115.226562 199.582031 115.320312 199.488281 115.320312 199.371094 Z M 115.320312 199.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.316406 200.542969 C 117.316406 200.425781 117.222656 200.332031 117.105469 200.332031 C 116.988281 200.332031 116.894531 200.425781 116.894531 200.542969 C 116.894531 200.660156 116.988281 200.753906 117.105469 200.753906 C 117.222656 200.753906 117.316406 200.660156 117.316406 200.542969 Z M 117.316406 200.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.375 201.394531 C 117.375 201.277344 117.28125 201.183594 117.164062 201.183594 C 117.046875 201.183594 116.953125 201.277344 116.953125 201.394531 C 116.953125 201.511719 117.046875 201.605469 117.164062 201.605469 C 117.28125 201.605469 117.375 201.511719 117.375 201.394531 Z M 117.375 201.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.0625 202.609375 C 118.0625 202.492188 117.96875 202.398438 117.851562 202.398438 C 117.734375 202.398438 117.640625 202.492188 117.640625 202.609375 C 117.640625 202.726562 117.734375 202.820312 117.851562 202.820312 C 117.96875 202.820312 118.0625 202.726562 118.0625 202.609375 Z M 118.0625 202.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.015625 201.386719 C 117.015625 201.269531 116.921875 201.175781 116.804688 201.175781 C 116.6875 201.175781 116.59375 201.269531 116.59375 201.386719 C 116.59375 201.503906 116.6875 201.597656 116.804688 201.597656 C 116.921875 201.597656 117.015625 201.503906 117.015625 201.386719 Z M 117.015625 201.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.828125 202.382812 C 123.828125 202.265625 123.734375 202.171875 123.617188 202.171875 C 123.5 202.171875 123.40625 202.265625 123.40625 202.382812 C 123.40625 202.5 123.5 202.59375 123.617188 202.59375 C 123.734375 202.59375 123.828125 202.5 123.828125 202.382812 Z M 123.828125 202.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.386719 201.761719 C 120.386719 201.644531 120.292969 201.550781 120.175781 201.550781 C 120.058594 201.550781 119.964844 201.644531 119.964844 201.761719 C 119.964844 201.878906 120.058594 201.972656 120.175781 201.972656 C 120.292969 201.972656 120.386719 201.878906 120.386719 201.761719 Z M 120.386719 201.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.652344 201.46875 C 121.652344 201.351562 121.558594 201.257812 121.441406 201.257812 C 121.324219 201.257812 121.230469 201.351562 121.230469 201.46875 C 121.230469 201.585938 121.324219 201.679688 121.441406 201.679688 C 121.558594 201.679688 121.652344 201.585938 121.652344 201.46875 Z M 121.652344 201.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.875 202.023438 C 120.875 201.90625 120.78125 201.8125 120.664062 201.8125 C 120.546875 201.8125 120.453125 201.90625 120.453125 202.023438 C 120.453125 202.140625 120.546875 202.234375 120.664062 202.234375 C 120.78125 202.234375 120.875 202.140625 120.875 202.023438 Z M 120.875 202.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.6875 202.980469 C 120.6875 202.863281 120.59375 202.769531 120.476562 202.769531 C 120.359375 202.769531 120.265625 202.863281 120.265625 202.980469 C 120.265625 203.097656 120.359375 203.191406 120.476562 203.191406 C 120.59375 203.191406 120.6875 203.097656 120.6875 202.980469 Z M 120.6875 202.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.808594 201.019531 C 122.808594 200.902344 122.714844 200.808594 122.597656 200.808594 C 122.480469 200.808594 122.386719 200.902344 122.386719 201.019531 C 122.386719 201.136719 122.480469 201.230469 122.597656 201.230469 C 122.714844 201.230469 122.808594 201.136719 122.808594 201.019531 Z M 122.808594 201.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.546875 200.9375 C 122.546875 200.820312 122.453125 200.726562 122.335938 200.726562 C 122.21875 200.726562 122.125 200.820312 122.125 200.9375 C 122.125 201.054688 122.21875 201.148438 122.335938 201.148438 C 122.453125 201.148438 122.546875 201.054688 122.546875 200.9375 Z M 122.546875 200.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.6875 202.40625 C 124.6875 202.289062 124.59375 202.195312 124.476562 202.195312 C 124.359375 202.195312 124.265625 202.289062 124.265625 202.40625 C 124.265625 202.523438 124.359375 202.617188 124.476562 202.617188 C 124.59375 202.617188 124.6875 202.523438 124.6875 202.40625 Z M 124.6875 202.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.402344 201.523438 C 123.402344 201.40625 123.308594 201.3125 123.191406 201.3125 C 123.074219 201.3125 122.980469 201.40625 122.980469 201.523438 C 122.980469 201.640625 123.074219 201.734375 123.191406 201.734375 C 123.308594 201.734375 123.402344 201.640625 123.402344 201.523438 Z M 123.402344 201.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.300781 203.761719 C 123.300781 203.644531 123.207031 203.550781 123.089844 203.550781 C 122.972656 203.550781 122.878906 203.644531 122.878906 203.761719 C 122.878906 203.878906 122.972656 203.972656 123.089844 203.972656 C 123.207031 203.972656 123.300781 203.878906 123.300781 203.761719 Z M 123.300781 203.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.746094 208.773438 C 125.746094 208.65625 125.652344 208.5625 125.535156 208.5625 C 125.417969 208.5625 125.324219 208.65625 125.324219 208.773438 C 125.324219 208.890625 125.417969 208.984375 125.535156 208.984375 C 125.652344 208.984375 125.746094 208.890625 125.746094 208.773438 Z M 125.746094 208.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.871094 210.75 C 124.871094 210.632812 124.777344 210.539062 124.660156 210.539062 C 124.542969 210.539062 124.449219 210.632812 124.449219 210.75 C 124.449219 210.867188 124.542969 210.960938 124.660156 210.960938 C 124.777344 210.960938 124.871094 210.867188 124.871094 210.75 Z M 124.871094 210.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.949219 213.34375 C 123.949219 213.226562 123.855469 213.132812 123.738281 213.132812 C 123.621094 213.132812 123.527344 213.226562 123.527344 213.34375 C 123.527344 213.460938 123.621094 213.554688 123.738281 213.554688 C 123.855469 213.554688 123.949219 213.460938 123.949219 213.34375 Z M 123.949219 213.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.730469 211.804688 C 124.730469 211.6875 124.636719 211.59375 124.519531 211.59375 C 124.402344 211.59375 124.308594 211.6875 124.308594 211.804688 C 124.308594 211.921875 124.402344 212.015625 124.519531 212.015625 C 124.636719 212.015625 124.730469 211.921875 124.730469 211.804688 Z M 124.730469 211.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.011719 214.984375 C 127.011719 214.867188 126.917969 214.773438 126.800781 214.773438 C 126.683594 214.773438 126.589844 214.867188 126.589844 214.984375 C 126.589844 215.101562 126.683594 215.195312 126.800781 215.195312 C 126.917969 215.195312 127.011719 215.101562 127.011719 214.984375 Z M 127.011719 214.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126.820312 214.507812 C 126.820312 214.390625 126.726562 214.296875 126.609375 214.296875 C 126.492188 214.296875 126.398438 214.390625 126.398438 214.507812 C 126.398438 214.625 126.492188 214.71875 126.609375 214.71875 C 126.726562 214.71875 126.820312 214.625 126.820312 214.507812 Z M 126.820312 214.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126.828125 212.757812 C 126.828125 212.640625 126.734375 212.546875 126.617188 212.546875 C 126.5 212.546875 126.40625 212.640625 126.40625 212.757812 C 126.40625 212.875 126.5 212.96875 126.617188 212.96875 C 126.734375 212.96875 126.828125 212.875 126.828125 212.757812 Z M 126.828125 212.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.609375 216.167969 C 127.609375 216.050781 127.515625 215.957031 127.398438 215.957031 C 127.28125 215.957031 127.1875 216.050781 127.1875 216.167969 C 127.1875 216.285156 127.28125 216.378906 127.398438 216.378906 C 127.515625 216.378906 127.609375 216.285156 127.609375 216.167969 Z M 127.609375 216.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.226562 216.96875 C 128.226562 216.851562 128.132812 216.757812 128.015625 216.757812 C 127.898438 216.757812 127.804688 216.851562 127.804688 216.96875 C 127.804688 217.085938 127.898438 217.179688 128.015625 217.179688 C 128.132812 217.179688 128.226562 217.085938 128.226562 216.96875 Z M 128.226562 216.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.589844 215.769531 C 132.589844 215.652344 132.496094 215.558594 132.378906 215.558594 C 132.261719 215.558594 132.167969 215.652344 132.167969 215.769531 C 132.167969 215.886719 132.261719 215.980469 132.378906 215.980469 C 132.496094 215.980469 132.589844 215.886719 132.589844 215.769531 Z M 132.589844 215.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 134.941406 213.953125 C 134.941406 213.835938 134.847656 213.742188 134.730469 213.742188 C 134.613281 213.742188 134.519531 213.835938 134.519531 213.953125 C 134.519531 214.070312 134.613281 214.164062 134.730469 214.164062 C 134.847656 214.164062 134.941406 214.070312 134.941406 213.953125 Z M 134.941406 213.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.148438 213.261719 C 137.148438 213.144531 137.054688 213.050781 136.9375 213.050781 C 136.820312 213.050781 136.726562 213.144531 136.726562 213.261719 C 136.726562 213.378906 136.820312 213.472656 136.9375 213.472656 C 137.054688 213.472656 137.148438 213.378906 137.148438 213.261719 Z M 137.148438 213.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.617188 214.046875 C 139.617188 213.929688 139.523438 213.835938 139.40625 213.835938 C 139.289062 213.835938 139.195312 213.929688 139.195312 214.046875 C 139.195312 214.164062 139.289062 214.257812 139.40625 214.257812 C 139.523438 214.257812 139.617188 214.164062 139.617188 214.046875 Z M 139.617188 214.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.613281 213.046875 C 139.613281 212.929688 139.519531 212.835938 139.402344 212.835938 C 139.285156 212.835938 139.191406 212.929688 139.191406 213.046875 C 139.191406 213.164062 139.285156 213.257812 139.402344 213.257812 C 139.519531 213.257812 139.613281 213.164062 139.613281 213.046875 Z M 139.613281 213.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.996094 215.300781 C 136.996094 215.183594 136.902344 215.089844 136.785156 215.089844 C 136.667969 215.089844 136.574219 215.183594 136.574219 215.300781 C 136.574219 215.417969 136.667969 215.511719 136.785156 215.511719 C 136.902344 215.511719 136.996094 215.417969 136.996094 215.300781 Z M 136.996094 215.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.613281 215.03125 C 137.613281 214.914062 137.519531 214.820312 137.402344 214.820312 C 137.285156 214.820312 137.191406 214.914062 137.191406 215.03125 C 137.191406 215.148438 137.285156 215.242188 137.402344 215.242188 C 137.519531 215.242188 137.613281 215.148438 137.613281 215.03125 Z M 137.613281 215.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.675781 216.910156 C 139.675781 216.792969 139.582031 216.699219 139.464844 216.699219 C 139.347656 216.699219 139.253906 216.792969 139.253906 216.910156 C 139.253906 217.027344 139.347656 217.121094 139.464844 217.121094 C 139.582031 217.121094 139.675781 217.027344 139.675781 216.910156 Z M 139.675781 216.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.699219 219.5 C 137.699219 219.382812 137.605469 219.289062 137.488281 219.289062 C 137.371094 219.289062 137.277344 219.382812 137.277344 219.5 C 137.277344 219.617188 137.371094 219.710938 137.488281 219.710938 C 137.605469 219.710938 137.699219 219.617188 137.699219 219.5 Z M 137.699219 219.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.308594 216.414062 C 140.308594 216.296875 140.214844 216.203125 140.097656 216.203125 C 139.980469 216.203125 139.886719 216.296875 139.886719 216.414062 C 139.886719 216.53125 139.980469 216.625 140.097656 216.625 C 140.214844 216.625 140.308594 216.53125 140.308594 216.414062 Z M 140.308594 216.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.480469 215.835938 C 139.480469 215.71875 139.386719 215.625 139.269531 215.625 C 139.152344 215.625 139.058594 215.71875 139.058594 215.835938 C 139.058594 215.953125 139.152344 216.046875 139.269531 216.046875 C 139.386719 216.046875 139.480469 215.953125 139.480469 215.835938 Z M 139.480469 215.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.507812 217.546875 C 139.507812 217.429688 139.414062 217.335938 139.296875 217.335938 C 139.179688 217.335938 139.085938 217.429688 139.085938 217.546875 C 139.085938 217.664062 139.179688 217.757812 139.296875 217.757812 C 139.414062 217.757812 139.507812 217.664062 139.507812 217.546875 Z M 139.507812 217.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.5625 215.40625 C 139.5625 215.289062 139.46875 215.195312 139.351562 215.195312 C 139.234375 215.195312 139.140625 215.289062 139.140625 215.40625 C 139.140625 215.523438 139.234375 215.617188 139.351562 215.617188 C 139.46875 215.617188 139.5625 215.523438 139.5625 215.40625 Z M 139.5625 215.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137 215.9375 C 137 215.820312 136.90625 215.726562 136.789062 215.726562 C 136.671875 215.726562 136.578125 215.820312 136.578125 215.9375 C 136.578125 216.054688 136.671875 216.148438 136.789062 216.148438 C 136.90625 216.148438 137 216.054688 137 215.9375 Z M 137 215.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.25 218.332031 C 139.25 218.214844 139.15625 218.121094 139.039062 218.121094 C 138.921875 218.121094 138.828125 218.214844 138.828125 218.332031 C 138.828125 218.449219 138.921875 218.542969 139.039062 218.542969 C 139.15625 218.542969 139.25 218.449219 139.25 218.332031 Z M 139.25 218.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.210938 219.664062 C 139.210938 219.546875 139.117188 219.453125 139 219.453125 C 138.882812 219.453125 138.789062 219.546875 138.789062 219.664062 C 138.789062 219.78125 138.882812 219.875 139 219.875 C 139.117188 219.875 139.210938 219.78125 139.210938 219.664062 Z M 139.210938 219.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.742188 221.363281 C 137.742188 221.246094 137.648438 221.152344 137.53125 221.152344 C 137.414062 221.152344 137.320312 221.246094 137.320312 221.363281 C 137.320312 221.480469 137.414062 221.574219 137.53125 221.574219 C 137.648438 221.574219 137.742188 221.480469 137.742188 221.363281 Z M 137.742188 221.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.636719 221.421875 C 139.636719 221.304688 139.542969 221.210938 139.425781 221.210938 C 139.308594 221.210938 139.214844 221.304688 139.214844 221.421875 C 139.214844 221.539062 139.308594 221.632812 139.425781 221.632812 C 139.542969 221.632812 139.636719 221.539062 139.636719 221.421875 Z M 139.636719 221.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.949219 220.957031 C 140.949219 220.839844 140.855469 220.746094 140.738281 220.746094 C 140.621094 220.746094 140.527344 220.839844 140.527344 220.957031 C 140.527344 221.074219 140.621094 221.167969 140.738281 221.167969 C 140.855469 221.167969 140.949219 221.074219 140.949219 220.957031 Z M 140.949219 220.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.023438 222.808594 C 141.023438 222.691406 140.929688 222.597656 140.8125 222.597656 C 140.695312 222.597656 140.601562 222.691406 140.601562 222.808594 C 140.601562 222.925781 140.695312 223.019531 140.8125 223.019531 C 140.929688 223.019531 141.023438 222.925781 141.023438 222.808594 Z M 141.023438 222.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.167969 220.894531 C 144.167969 220.777344 144.074219 220.683594 143.957031 220.683594 C 143.839844 220.683594 143.746094 220.777344 143.746094 220.894531 C 143.746094 221.011719 143.839844 221.105469 143.957031 221.105469 C 144.074219 221.105469 144.167969 221.011719 144.167969 220.894531 Z M 144.167969 220.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.746094 215.742188 C 145.746094 215.625 145.652344 215.53125 145.535156 215.53125 C 145.417969 215.53125 145.324219 215.625 145.324219 215.742188 C 145.324219 215.859375 145.417969 215.953125 145.535156 215.953125 C 145.652344 215.953125 145.746094 215.859375 145.746094 215.742188 Z M 145.746094 215.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.152344 214.808594 C 143.152344 214.691406 143.058594 214.597656 142.941406 214.597656 C 142.824219 214.597656 142.730469 214.691406 142.730469 214.808594 C 142.730469 214.925781 142.824219 215.019531 142.941406 215.019531 C 143.058594 215.019531 143.152344 214.925781 143.152344 214.808594 Z M 143.152344 214.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.351562 213.894531 C 142.351562 213.777344 142.257812 213.683594 142.140625 213.683594 C 142.023438 213.683594 141.929688 213.777344 141.929688 213.894531 C 141.929688 214.011719 142.023438 214.105469 142.140625 214.105469 C 142.257812 214.105469 142.351562 214.011719 142.351562 213.894531 Z M 142.351562 213.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.34375 215.136719 C 144.34375 215.019531 144.25 214.925781 144.132812 214.925781 C 144.015625 214.925781 143.921875 215.019531 143.921875 215.136719 C 143.921875 215.253906 144.015625 215.347656 144.132812 215.347656 C 144.25 215.347656 144.34375 215.253906 144.34375 215.136719 Z M 144.34375 215.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.515625 212.945312 C 142.515625 212.828125 142.421875 212.734375 142.304688 212.734375 C 142.1875 212.734375 142.09375 212.828125 142.09375 212.945312 C 142.09375 213.0625 142.1875 213.15625 142.304688 213.15625 C 142.421875 213.15625 142.515625 213.0625 142.515625 212.945312 Z M 142.515625 212.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148 214.296875 C 148 214.179688 147.90625 214.085938 147.789062 214.085938 C 147.671875 214.085938 147.578125 214.179688 147.578125 214.296875 C 147.578125 214.414062 147.671875 214.507812 147.789062 214.507812 C 147.90625 214.507812 148 214.414062 148 214.296875 Z M 148 214.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.765625 217.023438 C 147.765625 216.90625 147.671875 216.8125 147.554688 216.8125 C 147.4375 216.8125 147.34375 216.90625 147.34375 217.023438 C 147.34375 217.140625 147.4375 217.234375 147.554688 217.234375 C 147.671875 217.234375 147.765625 217.140625 147.765625 217.023438 Z M 147.765625 217.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.09375 216.996094 C 148.09375 216.878906 148 216.785156 147.882812 216.785156 C 147.765625 216.785156 147.671875 216.878906 147.671875 216.996094 C 147.671875 217.113281 147.765625 217.207031 147.882812 217.207031 C 148 217.207031 148.09375 217.113281 148.09375 216.996094 Z M 148.09375 216.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.699219 219.453125 C 153.699219 219.335938 153.605469 219.242188 153.488281 219.242188 C 153.371094 219.242188 153.277344 219.335938 153.277344 219.453125 C 153.277344 219.570312 153.371094 219.664062 153.488281 219.664062 C 153.605469 219.664062 153.699219 219.570312 153.699219 219.453125 Z M 153.699219 219.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.816406 218.644531 C 152.816406 218.527344 152.722656 218.433594 152.605469 218.433594 C 152.488281 218.433594 152.394531 218.527344 152.394531 218.644531 C 152.394531 218.761719 152.488281 218.855469 152.605469 218.855469 C 152.722656 218.855469 152.816406 218.761719 152.816406 218.644531 Z M 152.816406 218.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.308594 217.546875 C 153.308594 217.429688 153.214844 217.335938 153.097656 217.335938 C 152.980469 217.335938 152.886719 217.429688 152.886719 217.546875 C 152.886719 217.664062 152.980469 217.757812 153.097656 217.757812 C 153.214844 217.757812 153.308594 217.664062 153.308594 217.546875 Z M 153.308594 217.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.613281 220.6875 C 152.613281 220.570312 152.519531 220.476562 152.402344 220.476562 C 152.285156 220.476562 152.191406 220.570312 152.191406 220.6875 C 152.191406 220.804688 152.285156 220.898438 152.402344 220.898438 C 152.519531 220.898438 152.613281 220.804688 152.613281 220.6875 Z M 152.613281 220.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.769531 220.539062 C 154.769531 220.421875 154.675781 220.328125 154.558594 220.328125 C 154.441406 220.328125 154.347656 220.421875 154.347656 220.539062 C 154.347656 220.65625 154.441406 220.75 154.558594 220.75 C 154.675781 220.75 154.769531 220.65625 154.769531 220.539062 Z M 154.769531 220.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.585938 219.5625 C 155.585938 219.445312 155.492188 219.351562 155.375 219.351562 C 155.257812 219.351562 155.164062 219.445312 155.164062 219.5625 C 155.164062 219.679688 155.257812 219.773438 155.375 219.773438 C 155.492188 219.773438 155.585938 219.679688 155.585938 219.5625 Z M 155.585938 219.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.339844 220.585938 C 156.339844 220.46875 156.246094 220.375 156.128906 220.375 C 156.011719 220.375 155.917969 220.46875 155.917969 220.585938 C 155.917969 220.703125 156.011719 220.796875 156.128906 220.796875 C 156.246094 220.796875 156.339844 220.703125 156.339844 220.585938 Z M 156.339844 220.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.683594 222.511719 C 158.683594 222.394531 158.589844 222.300781 158.472656 222.300781 C 158.355469 222.300781 158.261719 222.394531 158.261719 222.511719 C 158.261719 222.628906 158.355469 222.722656 158.472656 222.722656 C 158.589844 222.722656 158.683594 222.628906 158.683594 222.511719 Z M 158.683594 222.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.859375 224.027344 C 157.859375 223.910156 157.765625 223.816406 157.648438 223.816406 C 157.53125 223.816406 157.4375 223.910156 157.4375 224.027344 C 157.4375 224.144531 157.53125 224.238281 157.648438 224.238281 C 157.765625 224.238281 157.859375 224.144531 157.859375 224.027344 Z M 157.859375 224.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.335938 224.503906 C 158.335938 224.386719 158.242188 224.292969 158.125 224.292969 C 158.007812 224.292969 157.914062 224.386719 157.914062 224.503906 C 157.914062 224.621094 158.007812 224.714844 158.125 224.714844 C 158.242188 224.714844 158.335938 224.621094 158.335938 224.503906 Z M 158.335938 224.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.265625 222.699219 C 155.265625 222.582031 155.171875 222.488281 155.054688 222.488281 C 154.9375 222.488281 154.84375 222.582031 154.84375 222.699219 C 154.84375 222.816406 154.9375 222.910156 155.054688 222.910156 C 155.171875 222.910156 155.265625 222.816406 155.265625 222.699219 Z M 155.265625 222.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.417969 221.863281 C 155.417969 221.746094 155.324219 221.652344 155.207031 221.652344 C 155.089844 221.652344 154.996094 221.746094 154.996094 221.863281 C 154.996094 221.980469 155.089844 222.074219 155.207031 222.074219 C 155.324219 222.074219 155.417969 221.980469 155.417969 221.863281 Z M 155.417969 221.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.507812 220.945312 C 155.507812 220.828125 155.414062 220.734375 155.296875 220.734375 C 155.179688 220.734375 155.085938 220.828125 155.085938 220.945312 C 155.085938 221.0625 155.179688 221.15625 155.296875 221.15625 C 155.414062 221.15625 155.507812 221.0625 155.507812 220.945312 Z M 155.507812 220.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.578125 226 C 156.578125 225.882812 156.484375 225.789062 156.367188 225.789062 C 156.25 225.789062 156.15625 225.882812 156.15625 226 C 156.15625 226.117188 156.25 226.210938 156.367188 226.210938 C 156.484375 226.210938 156.578125 226.117188 156.578125 226 Z M 156.578125 226 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.324219 224.109375 C 156.324219 223.992188 156.230469 223.898438 156.113281 223.898438 C 155.996094 223.898438 155.902344 223.992188 155.902344 224.109375 C 155.902344 224.226562 155.996094 224.320312 156.113281 224.320312 C 156.230469 224.320312 156.324219 224.226562 156.324219 224.109375 Z M 156.324219 224.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.066406 228.660156 C 158.066406 228.542969 157.972656 228.449219 157.855469 228.449219 C 157.738281 228.449219 157.644531 228.542969 157.644531 228.660156 C 157.644531 228.777344 157.738281 228.871094 157.855469 228.871094 C 157.972656 228.871094 158.066406 228.777344 158.066406 228.660156 Z M 158.066406 228.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.460938 230.515625 C 157.460938 230.398438 157.367188 230.304688 157.25 230.304688 C 157.132812 230.304688 157.039062 230.398438 157.039062 230.515625 C 157.039062 230.632812 157.132812 230.726562 157.25 230.726562 C 157.367188 230.726562 157.460938 230.632812 157.460938 230.515625 Z M 157.460938 230.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.191406 230.53125 C 153.191406 230.414062 153.097656 230.320312 152.980469 230.320312 C 152.863281 230.320312 152.769531 230.414062 152.769531 230.53125 C 152.769531 230.648438 152.863281 230.742188 152.980469 230.742188 C 153.097656 230.742188 153.191406 230.648438 153.191406 230.53125 Z M 153.191406 230.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.300781 232.664062 C 150.300781 232.546875 150.207031 232.453125 150.089844 232.453125 C 149.972656 232.453125 149.878906 232.546875 149.878906 232.664062 C 149.878906 232.78125 149.972656 232.875 150.089844 232.875 C 150.207031 232.875 150.300781 232.78125 150.300781 232.664062 Z M 150.300781 232.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.882812 232.917969 C 148.882812 232.800781 148.789062 232.707031 148.671875 232.707031 C 148.554688 232.707031 148.460938 232.800781 148.460938 232.917969 C 148.460938 233.035156 148.554688 233.128906 148.671875 233.128906 C 148.789062 233.128906 148.882812 233.035156 148.882812 232.917969 Z M 148.882812 232.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.382812 230.976562 C 147.382812 230.859375 147.289062 230.765625 147.171875 230.765625 C 147.054688 230.765625 146.960938 230.859375 146.960938 230.976562 C 146.960938 231.09375 147.054688 231.1875 147.171875 231.1875 C 147.289062 231.1875 147.382812 231.09375 147.382812 230.976562 Z M 147.382812 230.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.066406 231.6875 C 149.066406 231.570312 148.972656 231.476562 148.855469 231.476562 C 148.738281 231.476562 148.644531 231.570312 148.644531 231.6875 C 148.644531 231.804688 148.738281 231.898438 148.855469 231.898438 C 148.972656 231.898438 149.066406 231.804688 149.066406 231.6875 Z M 149.066406 231.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.867188 229.71875 C 151.867188 229.601562 151.773438 229.507812 151.65625 229.507812 C 151.539062 229.507812 151.445312 229.601562 151.445312 229.71875 C 151.445312 229.835938 151.539062 229.929688 151.65625 229.929688 C 151.773438 229.929688 151.867188 229.835938 151.867188 229.71875 Z M 151.867188 229.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.558594 230.488281 C 150.558594 230.371094 150.464844 230.277344 150.347656 230.277344 C 150.230469 230.277344 150.136719 230.371094 150.136719 230.488281 C 150.136719 230.605469 150.230469 230.699219 150.347656 230.699219 C 150.464844 230.699219 150.558594 230.605469 150.558594 230.488281 Z M 150.558594 230.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.324219 231.902344 C 151.324219 231.785156 151.230469 231.691406 151.113281 231.691406 C 150.996094 231.691406 150.902344 231.785156 150.902344 231.902344 C 150.902344 232.019531 150.996094 232.113281 151.113281 232.113281 C 151.230469 232.113281 151.324219 232.019531 151.324219 231.902344 Z M 151.324219 231.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.382812 230.324219 C 151.382812 230.207031 151.289062 230.113281 151.171875 230.113281 C 151.054688 230.113281 150.960938 230.207031 150.960938 230.324219 C 150.960938 230.441406 151.054688 230.535156 151.171875 230.535156 C 151.289062 230.535156 151.382812 230.441406 151.382812 230.324219 Z M 151.382812 230.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.136719 232.910156 C 150.136719 232.792969 150.042969 232.699219 149.925781 232.699219 C 149.808594 232.699219 149.714844 232.792969 149.714844 232.910156 C 149.714844 233.027344 149.808594 233.121094 149.925781 233.121094 C 150.042969 233.121094 150.136719 233.027344 150.136719 232.910156 Z M 150.136719 232.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.261719 230.660156 C 151.261719 230.542969 151.167969 230.449219 151.050781 230.449219 C 150.933594 230.449219 150.839844 230.542969 150.839844 230.660156 C 150.839844 230.777344 150.933594 230.871094 151.050781 230.871094 C 151.167969 230.871094 151.261719 230.777344 151.261719 230.660156 Z M 151.261719 230.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.289062 235.507812 C 151.289062 235.390625 151.195312 235.296875 151.078125 235.296875 C 150.960938 235.296875 150.867188 235.390625 150.867188 235.507812 C 150.867188 235.625 150.960938 235.71875 151.078125 235.71875 C 151.195312 235.71875 151.289062 235.625 151.289062 235.507812 Z M 151.289062 235.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.589844 233.921875 C 149.589844 233.804688 149.496094 233.710938 149.378906 233.710938 C 149.261719 233.710938 149.167969 233.804688 149.167969 233.921875 C 149.167969 234.039062 149.261719 234.132812 149.378906 234.132812 C 149.496094 234.132812 149.589844 234.039062 149.589844 233.921875 Z M 149.589844 233.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.417969 232.289062 C 150.417969 232.171875 150.324219 232.078125 150.207031 232.078125 C 150.089844 232.078125 149.996094 232.171875 149.996094 232.289062 C 149.996094 232.40625 150.089844 232.5 150.207031 232.5 C 150.324219 232.5 150.417969 232.40625 150.417969 232.289062 Z M 150.417969 232.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.007812 231.292969 C 153.007812 231.175781 152.914062 231.082031 152.796875 231.082031 C 152.679688 231.082031 152.585938 231.175781 152.585938 231.292969 C 152.585938 231.410156 152.679688 231.503906 152.796875 231.503906 C 152.914062 231.503906 153.007812 231.410156 153.007812 231.292969 Z M 153.007812 231.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.738281 232.890625 C 154.738281 232.773438 154.644531 232.679688 154.527344 232.679688 C 154.410156 232.679688 154.316406 232.773438 154.316406 232.890625 C 154.316406 233.007812 154.410156 233.101562 154.527344 233.101562 C 154.644531 233.101562 154.738281 233.007812 154.738281 232.890625 Z M 154.738281 232.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.5 231.695312 C 160.5 231.578125 160.40625 231.484375 160.289062 231.484375 C 160.171875 231.484375 160.078125 231.578125 160.078125 231.695312 C 160.078125 231.8125 160.171875 231.90625 160.289062 231.90625 C 160.40625 231.90625 160.5 231.8125 160.5 231.695312 Z M 160.5 231.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.210938 231.929688 C 157.210938 231.8125 157.117188 231.71875 157 231.71875 C 156.882812 231.71875 156.789062 231.8125 156.789062 231.929688 C 156.789062 232.046875 156.882812 232.140625 157 232.140625 C 157.117188 232.140625 157.210938 232.046875 157.210938 231.929688 Z M 157.210938 231.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.648438 233.253906 C 158.648438 233.136719 158.554688 233.042969 158.4375 233.042969 C 158.320312 233.042969 158.226562 233.136719 158.226562 233.253906 C 158.226562 233.371094 158.320312 233.464844 158.4375 233.464844 C 158.554688 233.464844 158.648438 233.371094 158.648438 233.253906 Z M 158.648438 233.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.070312 230.652344 C 160.070312 230.535156 159.976562 230.441406 159.859375 230.441406 C 159.742188 230.441406 159.648438 230.535156 159.648438 230.652344 C 159.648438 230.769531 159.742188 230.863281 159.859375 230.863281 C 159.976562 230.863281 160.070312 230.769531 160.070312 230.652344 Z M 160.070312 230.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.671875 231.367188 C 159.671875 231.25 159.578125 231.15625 159.460938 231.15625 C 159.34375 231.15625 159.25 231.25 159.25 231.367188 C 159.25 231.484375 159.34375 231.578125 159.460938 231.578125 C 159.578125 231.578125 159.671875 231.484375 159.671875 231.367188 Z M 159.671875 231.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.238281 232.191406 C 161.238281 232.074219 161.144531 231.980469 161.027344 231.980469 C 160.910156 231.980469 160.816406 232.074219 160.816406 232.191406 C 160.816406 232.308594 160.910156 232.402344 161.027344 232.402344 C 161.144531 232.402344 161.238281 232.308594 161.238281 232.191406 Z M 161.238281 232.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.257812 231.242188 C 161.257812 231.125 161.164062 231.03125 161.046875 231.03125 C 160.929688 231.03125 160.835938 231.125 160.835938 231.242188 C 160.835938 231.359375 160.929688 231.453125 161.046875 231.453125 C 161.164062 231.453125 161.257812 231.359375 161.257812 231.242188 Z M 161.257812 231.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.339844 229.367188 C 160.339844 229.25 160.246094 229.15625 160.128906 229.15625 C 160.011719 229.15625 159.917969 229.25 159.917969 229.367188 C 159.917969 229.484375 160.011719 229.578125 160.128906 229.578125 C 160.246094 229.578125 160.339844 229.484375 160.339844 229.367188 Z M 160.339844 229.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.933594 230.738281 C 163.933594 230.621094 163.839844 230.527344 163.722656 230.527344 C 163.605469 230.527344 163.511719 230.621094 163.511719 230.738281 C 163.511719 230.855469 163.605469 230.949219 163.722656 230.949219 C 163.839844 230.949219 163.933594 230.855469 163.933594 230.738281 Z M 163.933594 230.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.21875 232.617188 C 165.21875 232.5 165.125 232.40625 165.007812 232.40625 C 164.890625 232.40625 164.796875 232.5 164.796875 232.617188 C 164.796875 232.734375 164.890625 232.828125 165.007812 232.828125 C 165.125 232.828125 165.21875 232.734375 165.21875 232.617188 Z M 165.21875 232.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.011719 231.046875 C 162.011719 230.929688 161.917969 230.835938 161.800781 230.835938 C 161.683594 230.835938 161.589844 230.929688 161.589844 231.046875 C 161.589844 231.164062 161.683594 231.257812 161.800781 231.257812 C 161.917969 231.257812 162.011719 231.164062 162.011719 231.046875 Z M 162.011719 231.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.527344 229.933594 C 162.527344 229.816406 162.433594 229.722656 162.316406 229.722656 C 162.199219 229.722656 162.105469 229.816406 162.105469 229.933594 C 162.105469 230.050781 162.199219 230.144531 162.316406 230.144531 C 162.433594 230.144531 162.527344 230.050781 162.527344 229.933594 Z M 162.527344 229.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.285156 232.34375 C 165.285156 232.226562 165.191406 232.132812 165.074219 232.132812 C 164.957031 232.132812 164.863281 232.226562 164.863281 232.34375 C 164.863281 232.460938 164.957031 232.554688 165.074219 232.554688 C 165.191406 232.554688 165.285156 232.460938 165.285156 232.34375 Z M 165.285156 232.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.226562 231.613281 C 164.226562 231.496094 164.132812 231.402344 164.015625 231.402344 C 163.898438 231.402344 163.804688 231.496094 163.804688 231.613281 C 163.804688 231.730469 163.898438 231.824219 164.015625 231.824219 C 164.132812 231.824219 164.226562 231.730469 164.226562 231.613281 Z M 164.226562 231.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.660156 228.953125 C 161.660156 228.835938 161.566406 228.742188 161.449219 228.742188 C 161.332031 228.742188 161.238281 228.835938 161.238281 228.953125 C 161.238281 229.070312 161.332031 229.164062 161.449219 229.164062 C 161.566406 229.164062 161.660156 229.070312 161.660156 228.953125 Z M 161.660156 228.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.082031 226.226562 C 160.082031 226.109375 159.988281 226.015625 159.871094 226.015625 C 159.753906 226.015625 159.660156 226.109375 159.660156 226.226562 C 159.660156 226.34375 159.753906 226.4375 159.871094 226.4375 C 159.988281 226.4375 160.082031 226.34375 160.082031 226.226562 Z M 160.082031 226.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.980469 222.78125 C 161.980469 222.664062 161.886719 222.570312 161.769531 222.570312 C 161.652344 222.570312 161.558594 222.664062 161.558594 222.78125 C 161.558594 222.898438 161.652344 222.992188 161.769531 222.992188 C 161.886719 222.992188 161.980469 222.898438 161.980469 222.78125 Z M 161.980469 222.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.589844 224.9375 C 165.589844 224.820312 165.496094 224.726562 165.378906 224.726562 C 165.261719 224.726562 165.167969 224.820312 165.167969 224.9375 C 165.167969 225.054688 165.261719 225.148438 165.378906 225.148438 C 165.496094 225.148438 165.589844 225.054688 165.589844 224.9375 Z M 165.589844 224.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.039062 228.109375 C 167.039062 227.992188 166.945312 227.898438 166.828125 227.898438 C 166.710938 227.898438 166.617188 227.992188 166.617188 228.109375 C 166.617188 228.226562 166.710938 228.320312 166.828125 228.320312 C 166.945312 228.320312 167.039062 228.226562 167.039062 228.109375 Z M 167.039062 228.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.257812 224.816406 C 170.257812 224.699219 170.164062 224.605469 170.046875 224.605469 C 169.929688 224.605469 169.835938 224.699219 169.835938 224.816406 C 169.835938 224.933594 169.929688 225.027344 170.046875 225.027344 C 170.164062 225.027344 170.257812 224.933594 170.257812 224.816406 Z M 170.257812 224.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.644531 222.253906 C 173.644531 222.136719 173.550781 222.042969 173.433594 222.042969 C 173.316406 222.042969 173.222656 222.136719 173.222656 222.253906 C 173.222656 222.371094 173.316406 222.464844 173.433594 222.464844 C 173.550781 222.464844 173.644531 222.371094 173.644531 222.253906 Z M 173.644531 222.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.300781 221.992188 C 173.300781 221.875 173.207031 221.78125 173.089844 221.78125 C 172.972656 221.78125 172.878906 221.875 172.878906 221.992188 C 172.878906 222.109375 172.972656 222.203125 173.089844 222.203125 C 173.207031 222.203125 173.300781 222.109375 173.300781 221.992188 Z M 173.300781 221.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.722656 224.628906 C 177.722656 224.511719 177.628906 224.417969 177.511719 224.417969 C 177.394531 224.417969 177.300781 224.511719 177.300781 224.628906 C 177.300781 224.746094 177.394531 224.839844 177.511719 224.839844 C 177.628906 224.839844 177.722656 224.746094 177.722656 224.628906 Z M 177.722656 224.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.613281 227.53125 C 180.613281 227.414062 180.519531 227.320312 180.402344 227.320312 C 180.285156 227.320312 180.191406 227.414062 180.191406 227.53125 C 180.191406 227.648438 180.285156 227.742188 180.402344 227.742188 C 180.519531 227.742188 180.613281 227.648438 180.613281 227.53125 Z M 180.613281 227.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.847656 226.890625 C 180.847656 226.773438 180.753906 226.679688 180.636719 226.679688 C 180.519531 226.679688 180.425781 226.773438 180.425781 226.890625 C 180.425781 227.007812 180.519531 227.101562 180.636719 227.101562 C 180.753906 227.101562 180.847656 227.007812 180.847656 226.890625 Z M 180.847656 226.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.257812 227.105469 C 176.257812 226.988281 176.164062 226.894531 176.046875 226.894531 C 175.929688 226.894531 175.835938 226.988281 175.835938 227.105469 C 175.835938 227.222656 175.929688 227.316406 176.046875 227.316406 C 176.164062 227.316406 176.257812 227.222656 176.257812 227.105469 Z M 176.257812 227.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.523438 232.703125 C 173.523438 232.585938 173.429688 232.492188 173.3125 232.492188 C 173.195312 232.492188 173.101562 232.585938 173.101562 232.703125 C 173.101562 232.820312 173.195312 232.914062 173.3125 232.914062 C 173.429688 232.914062 173.523438 232.820312 173.523438 232.703125 Z M 173.523438 232.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.257812 233.894531 C 171.257812 233.777344 171.164062 233.683594 171.046875 233.683594 C 170.929688 233.683594 170.835938 233.777344 170.835938 233.894531 C 170.835938 234.011719 170.929688 234.105469 171.046875 234.105469 C 171.164062 234.105469 171.257812 234.011719 171.257812 233.894531 Z M 171.257812 233.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.402344 235.351562 C 174.402344 235.234375 174.308594 235.140625 174.191406 235.140625 C 174.074219 235.140625 173.980469 235.234375 173.980469 235.351562 C 173.980469 235.46875 174.074219 235.5625 174.191406 235.5625 C 174.308594 235.5625 174.402344 235.46875 174.402344 235.351562 Z M 174.402344 235.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.523438 231.574219 C 173.523438 231.457031 173.429688 231.363281 173.3125 231.363281 C 173.195312 231.363281 173.101562 231.457031 173.101562 231.574219 C 173.101562 231.691406 173.195312 231.785156 173.3125 231.785156 C 173.429688 231.785156 173.523438 231.691406 173.523438 231.574219 Z M 173.523438 231.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.011719 229.386719 C 175.011719 229.269531 174.917969 229.175781 174.800781 229.175781 C 174.683594 229.175781 174.589844 229.269531 174.589844 229.386719 C 174.589844 229.503906 174.683594 229.597656 174.800781 229.597656 C 174.917969 229.597656 175.011719 229.503906 175.011719 229.386719 Z M 175.011719 229.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.167969 230.558594 C 172.167969 230.441406 172.074219 230.347656 171.957031 230.347656 C 171.839844 230.347656 171.746094 230.441406 171.746094 230.558594 C 171.746094 230.675781 171.839844 230.769531 171.957031 230.769531 C 172.074219 230.769531 172.167969 230.675781 172.167969 230.558594 Z M 172.167969 230.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.324219 231.832031 C 172.324219 231.714844 172.230469 231.621094 172.113281 231.621094 C 171.996094 231.621094 171.902344 231.714844 171.902344 231.832031 C 171.902344 231.949219 171.996094 232.042969 172.113281 232.042969 C 172.230469 232.042969 172.324219 231.949219 172.324219 231.832031 Z M 172.324219 231.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.476562 232.460938 C 176.476562 232.34375 176.382812 232.25 176.265625 232.25 C 176.148438 232.25 176.054688 232.34375 176.054688 232.460938 C 176.054688 232.578125 176.148438 232.671875 176.265625 232.671875 C 176.382812 232.671875 176.476562 232.578125 176.476562 232.460938 Z M 176.476562 232.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.613281 233.5625 C 176.613281 233.445312 176.519531 233.351562 176.402344 233.351562 C 176.285156 233.351562 176.191406 233.445312 176.191406 233.5625 C 176.191406 233.679688 176.285156 233.773438 176.402344 233.773438 C 176.519531 233.773438 176.613281 233.679688 176.613281 233.5625 Z M 176.613281 233.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.148438 235.214844 C 176.148438 235.097656 176.054688 235.003906 175.9375 235.003906 C 175.820312 235.003906 175.726562 235.097656 175.726562 235.214844 C 175.726562 235.332031 175.820312 235.425781 175.9375 235.425781 C 176.054688 235.425781 176.148438 235.332031 176.148438 235.214844 Z M 176.148438 235.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.253906 233.507812 C 175.253906 233.390625 175.160156 233.296875 175.042969 233.296875 C 174.925781 233.296875 174.832031 233.390625 174.832031 233.507812 C 174.832031 233.625 174.925781 233.71875 175.042969 233.71875 C 175.160156 233.71875 175.253906 233.625 175.253906 233.507812 Z M 175.253906 233.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.695312 233.003906 C 175.695312 232.886719 175.601562 232.792969 175.484375 232.792969 C 175.367188 232.792969 175.273438 232.886719 175.273438 233.003906 C 175.273438 233.121094 175.367188 233.214844 175.484375 233.214844 C 175.601562 233.214844 175.695312 233.121094 175.695312 233.003906 Z M 175.695312 233.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.484375 231.398438 C 173.484375 231.28125 173.390625 231.1875 173.273438 231.1875 C 173.15625 231.1875 173.0625 231.28125 173.0625 231.398438 C 173.0625 231.515625 173.15625 231.609375 173.273438 231.609375 C 173.390625 231.609375 173.484375 231.515625 173.484375 231.398438 Z M 173.484375 231.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.933594 233.035156 C 169.933594 232.917969 169.839844 232.824219 169.722656 232.824219 C 169.605469 232.824219 169.511719 232.917969 169.511719 233.035156 C 169.511719 233.152344 169.605469 233.246094 169.722656 233.246094 C 169.839844 233.246094 169.933594 233.152344 169.933594 233.035156 Z M 169.933594 233.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.675781 231.375 C 169.675781 231.257812 169.582031 231.164062 169.464844 231.164062 C 169.347656 231.164062 169.253906 231.257812 169.253906 231.375 C 169.253906 231.492188 169.347656 231.585938 169.464844 231.585938 C 169.582031 231.585938 169.675781 231.492188 169.675781 231.375 Z M 169.675781 231.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.417969 230.636719 C 170.417969 230.519531 170.324219 230.425781 170.207031 230.425781 C 170.089844 230.425781 169.996094 230.519531 169.996094 230.636719 C 169.996094 230.753906 170.089844 230.847656 170.207031 230.847656 C 170.324219 230.847656 170.417969 230.753906 170.417969 230.636719 Z M 170.417969 230.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.800781 231.460938 C 164.800781 231.34375 164.707031 231.25 164.589844 231.25 C 164.472656 231.25 164.378906 231.34375 164.378906 231.460938 C 164.378906 231.578125 164.472656 231.671875 164.589844 231.671875 C 164.707031 231.671875 164.800781 231.578125 164.800781 231.460938 Z M 164.800781 231.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.164062 233.628906 C 168.164062 233.511719 168.070312 233.417969 167.953125 233.417969 C 167.835938 233.417969 167.742188 233.511719 167.742188 233.628906 C 167.742188 233.746094 167.835938 233.839844 167.953125 233.839844 C 168.070312 233.839844 168.164062 233.746094 168.164062 233.628906 Z M 168.164062 233.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.011719 236.582031 C 166.011719 236.464844 165.917969 236.371094 165.800781 236.371094 C 165.683594 236.371094 165.589844 236.464844 165.589844 236.582031 C 165.589844 236.699219 165.683594 236.792969 165.800781 236.792969 C 165.917969 236.792969 166.011719 236.699219 166.011719 236.582031 Z M 166.011719 236.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.078125 233.496094 C 165.078125 233.378906 164.984375 233.285156 164.867188 233.285156 C 164.75 233.285156 164.65625 233.378906 164.65625 233.496094 C 164.65625 233.613281 164.75 233.707031 164.867188 233.707031 C 164.984375 233.707031 165.078125 233.613281 165.078125 233.496094 Z M 165.078125 233.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.292969 233.898438 C 165.292969 233.78125 165.199219 233.6875 165.082031 233.6875 C 164.964844 233.6875 164.871094 233.78125 164.871094 233.898438 C 164.871094 234.015625 164.964844 234.109375 165.082031 234.109375 C 165.199219 234.109375 165.292969 234.015625 165.292969 233.898438 Z M 165.292969 233.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.707031 232.097656 C 166.707031 231.980469 166.613281 231.886719 166.496094 231.886719 C 166.378906 231.886719 166.285156 231.980469 166.285156 232.097656 C 166.285156 232.214844 166.378906 232.308594 166.496094 232.308594 C 166.613281 232.308594 166.707031 232.214844 166.707031 232.097656 Z M 166.707031 232.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.445312 232.289062 C 165.445312 232.171875 165.351562 232.078125 165.234375 232.078125 C 165.117188 232.078125 165.023438 232.171875 165.023438 232.289062 C 165.023438 232.40625 165.117188 232.5 165.234375 232.5 C 165.351562 232.5 165.445312 232.40625 165.445312 232.289062 Z M 165.445312 232.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.371094 234.417969 C 160.371094 234.300781 160.277344 234.207031 160.160156 234.207031 C 160.042969 234.207031 159.949219 234.300781 159.949219 234.417969 C 159.949219 234.535156 160.042969 234.628906 160.160156 234.628906 C 160.277344 234.628906 160.371094 234.535156 160.371094 234.417969 Z M 160.371094 234.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.382812 233.933594 C 159.382812 233.816406 159.289062 233.722656 159.171875 233.722656 C 159.054688 233.722656 158.960938 233.816406 158.960938 233.933594 C 158.960938 234.050781 159.054688 234.144531 159.171875 234.144531 C 159.289062 234.144531 159.382812 234.050781 159.382812 233.933594 Z M 159.382812 233.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.976562 232.246094 C 158.976562 232.128906 158.882812 232.035156 158.765625 232.035156 C 158.648438 232.035156 158.554688 232.128906 158.554688 232.246094 C 158.554688 232.363281 158.648438 232.457031 158.765625 232.457031 C 158.882812 232.457031 158.976562 232.363281 158.976562 232.246094 Z M 158.976562 232.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.292969 231.511719 C 159.292969 231.394531 159.199219 231.300781 159.082031 231.300781 C 158.964844 231.300781 158.871094 231.394531 158.871094 231.511719 C 158.871094 231.628906 158.964844 231.722656 159.082031 231.722656 C 159.199219 231.722656 159.292969 231.628906 159.292969 231.511719 Z M 159.292969 231.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.171875 230.742188 C 158.171875 230.625 158.078125 230.53125 157.960938 230.53125 C 157.84375 230.53125 157.75 230.625 157.75 230.742188 C 157.75 230.859375 157.84375 230.953125 157.960938 230.953125 C 158.078125 230.953125 158.171875 230.859375 158.171875 230.742188 Z M 158.171875 230.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.136719 229.515625 C 157.136719 229.398438 157.042969 229.304688 156.925781 229.304688 C 156.808594 229.304688 156.714844 229.398438 156.714844 229.515625 C 156.714844 229.632812 156.808594 229.726562 156.925781 229.726562 C 157.042969 229.726562 157.136719 229.632812 157.136719 229.515625 Z M 157.136719 229.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.296875 231.054688 C 157.296875 230.9375 157.203125 230.84375 157.085938 230.84375 C 156.96875 230.84375 156.875 230.9375 156.875 231.054688 C 156.875 231.171875 156.96875 231.265625 157.085938 231.265625 C 157.203125 231.265625 157.296875 231.171875 157.296875 231.054688 Z M 157.296875 231.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.40625 232.976562 C 155.40625 232.859375 155.3125 232.765625 155.195312 232.765625 C 155.078125 232.765625 154.984375 232.859375 154.984375 232.976562 C 154.984375 233.09375 155.078125 233.1875 155.195312 233.1875 C 155.3125 233.1875 155.40625 233.09375 155.40625 232.976562 Z M 155.40625 232.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.113281 236.023438 C 154.113281 235.90625 154.019531 235.8125 153.902344 235.8125 C 153.785156 235.8125 153.691406 235.90625 153.691406 236.023438 C 153.691406 236.140625 153.785156 236.234375 153.902344 236.234375 C 154.019531 236.234375 154.113281 236.140625 154.113281 236.023438 Z M 154.113281 236.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.699219 236.945312 C 153.699219 236.828125 153.605469 236.734375 153.488281 236.734375 C 153.371094 236.734375 153.277344 236.828125 153.277344 236.945312 C 153.277344 237.0625 153.371094 237.15625 153.488281 237.15625 C 153.605469 237.15625 153.699219 237.0625 153.699219 236.945312 Z M 153.699219 236.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.175781 238.5 C 153.175781 238.382812 153.082031 238.289062 152.964844 238.289062 C 152.847656 238.289062 152.753906 238.382812 152.753906 238.5 C 152.753906 238.617188 152.847656 238.710938 152.964844 238.710938 C 153.082031 238.710938 153.175781 238.617188 153.175781 238.5 Z M 153.175781 238.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.175781 241.292969 C 155.175781 241.175781 155.082031 241.082031 154.964844 241.082031 C 154.847656 241.082031 154.753906 241.175781 154.753906 241.292969 C 154.753906 241.410156 154.847656 241.503906 154.964844 241.503906 C 155.082031 241.503906 155.175781 241.410156 155.175781 241.292969 Z M 155.175781 241.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.984375 240.996094 C 157.984375 240.878906 157.890625 240.785156 157.773438 240.785156 C 157.65625 240.785156 157.5625 240.878906 157.5625 240.996094 C 157.5625 241.113281 157.65625 241.207031 157.773438 241.207031 C 157.890625 241.207031 157.984375 241.113281 157.984375 240.996094 Z M 157.984375 240.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.335938 239.378906 C 158.335938 239.261719 158.242188 239.167969 158.125 239.167969 C 158.007812 239.167969 157.914062 239.261719 157.914062 239.378906 C 157.914062 239.496094 158.007812 239.589844 158.125 239.589844 C 158.242188 239.589844 158.335938 239.496094 158.335938 239.378906 Z M 158.335938 239.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.183594 238.816406 C 159.183594 238.699219 159.089844 238.605469 158.972656 238.605469 C 158.855469 238.605469 158.761719 238.699219 158.761719 238.816406 C 158.761719 238.933594 158.855469 239.027344 158.972656 239.027344 C 159.089844 239.027344 159.183594 238.933594 159.183594 238.816406 Z M 159.183594 238.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.890625 236.46875 C 156.890625 236.351562 156.796875 236.257812 156.679688 236.257812 C 156.5625 236.257812 156.46875 236.351562 156.46875 236.46875 C 156.46875 236.585938 156.5625 236.679688 156.679688 236.679688 C 156.796875 236.679688 156.890625 236.585938 156.890625 236.46875 Z M 156.890625 236.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.464844 233.785156 C 158.464844 233.667969 158.371094 233.574219 158.253906 233.574219 C 158.136719 233.574219 158.042969 233.667969 158.042969 233.785156 C 158.042969 233.902344 158.136719 233.996094 158.253906 233.996094 C 158.371094 233.996094 158.464844 233.902344 158.464844 233.785156 Z M 158.464844 233.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.335938 231.421875 C 156.335938 231.304688 156.242188 231.210938 156.125 231.210938 C 156.007812 231.210938 155.914062 231.304688 155.914062 231.421875 C 155.914062 231.539062 156.007812 231.632812 156.125 231.632812 C 156.242188 231.632812 156.335938 231.539062 156.335938 231.421875 Z M 156.335938 231.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.226562 234.144531 C 153.226562 234.027344 153.132812 233.933594 153.015625 233.933594 C 152.898438 233.933594 152.804688 234.027344 152.804688 234.144531 C 152.804688 234.261719 152.898438 234.355469 153.015625 234.355469 C 153.132812 234.355469 153.226562 234.261719 153.226562 234.144531 Z M 153.226562 234.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.28125 229.894531 C 155.28125 229.777344 155.1875 229.683594 155.070312 229.683594 C 154.953125 229.683594 154.859375 229.777344 154.859375 229.894531 C 154.859375 230.011719 154.953125 230.105469 155.070312 230.105469 C 155.1875 230.105469 155.28125 230.011719 155.28125 229.894531 Z M 155.28125 229.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.421875 231.964844 C 156.421875 231.847656 156.328125 231.753906 156.210938 231.753906 C 156.09375 231.753906 156 231.847656 156 231.964844 C 156 232.082031 156.09375 232.175781 156.210938 232.175781 C 156.328125 232.175781 156.421875 232.082031 156.421875 231.964844 Z M 156.421875 231.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.199219 230.390625 C 149.199219 230.273438 149.105469 230.179688 148.988281 230.179688 C 148.871094 230.179688 148.777344 230.273438 148.777344 230.390625 C 148.777344 230.507812 148.871094 230.601562 148.988281 230.601562 C 149.105469 230.601562 149.199219 230.507812 149.199219 230.390625 Z M 149.199219 230.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.554688 228.453125 C 147.554688 228.335938 147.460938 228.242188 147.34375 228.242188 C 147.226562 228.242188 147.132812 228.335938 147.132812 228.453125 C 147.132812 228.570312 147.226562 228.664062 147.34375 228.664062 C 147.460938 228.664062 147.554688 228.570312 147.554688 228.453125 Z M 147.554688 228.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.457031 226.242188 C 145.457031 226.125 145.363281 226.03125 145.246094 226.03125 C 145.128906 226.03125 145.035156 226.125 145.035156 226.242188 C 145.035156 226.359375 145.128906 226.453125 145.246094 226.453125 C 145.363281 226.453125 145.457031 226.359375 145.457031 226.242188 Z M 145.457031 226.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.988281 226.488281 C 148.988281 226.371094 148.894531 226.277344 148.777344 226.277344 C 148.660156 226.277344 148.566406 226.371094 148.566406 226.488281 C 148.566406 226.605469 148.660156 226.699219 148.777344 226.699219 C 148.894531 226.699219 148.988281 226.605469 148.988281 226.488281 Z M 148.988281 226.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.046875 228.917969 C 150.046875 228.800781 149.953125 228.707031 149.835938 228.707031 C 149.71875 228.707031 149.625 228.800781 149.625 228.917969 C 149.625 229.035156 149.71875 229.128906 149.835938 229.128906 C 149.953125 229.128906 150.046875 229.035156 150.046875 228.917969 Z M 150.046875 228.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.644531 229.597656 C 144.644531 229.480469 144.550781 229.386719 144.433594 229.386719 C 144.316406 229.386719 144.222656 229.480469 144.222656 229.597656 C 144.222656 229.714844 144.316406 229.808594 144.433594 229.808594 C 144.550781 229.808594 144.644531 229.714844 144.644531 229.597656 Z M 144.644531 229.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.757812 230.070312 C 144.757812 229.953125 144.664062 229.859375 144.546875 229.859375 C 144.429688 229.859375 144.335938 229.953125 144.335938 230.070312 C 144.335938 230.1875 144.429688 230.28125 144.546875 230.28125 C 144.664062 230.28125 144.757812 230.1875 144.757812 230.070312 Z M 144.757812 230.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.734375 230.460938 C 141.734375 230.34375 141.640625 230.25 141.523438 230.25 C 141.40625 230.25 141.3125 230.34375 141.3125 230.460938 C 141.3125 230.578125 141.40625 230.671875 141.523438 230.671875 C 141.640625 230.671875 141.734375 230.578125 141.734375 230.460938 Z M 141.734375 230.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.761719 231.132812 C 144.761719 231.015625 144.667969 230.921875 144.550781 230.921875 C 144.433594 230.921875 144.339844 231.015625 144.339844 231.132812 C 144.339844 231.25 144.433594 231.34375 144.550781 231.34375 C 144.667969 231.34375 144.761719 231.25 144.761719 231.132812 Z M 144.761719 231.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.460938 230.808594 C 144.460938 230.691406 144.367188 230.597656 144.25 230.597656 C 144.132812 230.597656 144.039062 230.691406 144.039062 230.808594 C 144.039062 230.925781 144.132812 231.019531 144.25 231.019531 C 144.367188 231.019531 144.460938 230.925781 144.460938 230.808594 Z M 144.460938 230.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.027344 231.761719 C 141.027344 231.644531 140.933594 231.550781 140.816406 231.550781 C 140.699219 231.550781 140.605469 231.644531 140.605469 231.761719 C 140.605469 231.878906 140.699219 231.972656 140.816406 231.972656 C 140.933594 231.972656 141.027344 231.878906 141.027344 231.761719 Z M 141.027344 231.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140 234.941406 C 140 234.824219 139.90625 234.730469 139.789062 234.730469 C 139.671875 234.730469 139.578125 234.824219 139.578125 234.941406 C 139.578125 235.058594 139.671875 235.152344 139.789062 235.152344 C 139.90625 235.152344 140 235.058594 140 234.941406 Z M 140 234.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.019531 233.019531 C 140.019531 232.902344 139.925781 232.808594 139.808594 232.808594 C 139.691406 232.808594 139.597656 232.902344 139.597656 233.019531 C 139.597656 233.136719 139.691406 233.230469 139.808594 233.230469 C 139.925781 233.230469 140.019531 233.136719 140.019531 233.019531 Z M 140.019531 233.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.039062 232.074219 C 146.039062 231.957031 145.945312 231.863281 145.828125 231.863281 C 145.710938 231.863281 145.617188 231.957031 145.617188 232.074219 C 145.617188 232.191406 145.710938 232.285156 145.828125 232.285156 C 145.945312 232.285156 146.039062 232.191406 146.039062 232.074219 Z M 146.039062 232.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.542969 229.753906 C 144.542969 229.636719 144.449219 229.542969 144.332031 229.542969 C 144.214844 229.542969 144.121094 229.636719 144.121094 229.753906 C 144.121094 229.871094 144.214844 229.964844 144.332031 229.964844 C 144.449219 229.964844 144.542969 229.871094 144.542969 229.753906 Z M 144.542969 229.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.824219 231.957031 C 145.824219 231.839844 145.730469 231.746094 145.613281 231.746094 C 145.496094 231.746094 145.402344 231.839844 145.402344 231.957031 C 145.402344 232.074219 145.496094 232.167969 145.613281 232.167969 C 145.730469 232.167969 145.824219 232.074219 145.824219 231.957031 Z M 145.824219 231.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.011719 231.730469 C 146.011719 231.613281 145.917969 231.519531 145.800781 231.519531 C 145.683594 231.519531 145.589844 231.613281 145.589844 231.730469 C 145.589844 231.847656 145.683594 231.941406 145.800781 231.941406 C 145.917969 231.941406 146.011719 231.847656 146.011719 231.730469 Z M 146.011719 231.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.410156 233.210938 C 144.410156 233.09375 144.316406 233 144.199219 233 C 144.082031 233 143.988281 233.09375 143.988281 233.210938 C 143.988281 233.328125 144.082031 233.421875 144.199219 233.421875 C 144.316406 233.421875 144.410156 233.328125 144.410156 233.210938 Z M 144.410156 233.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.992188 231.511719 C 144.992188 231.394531 144.898438 231.300781 144.78125 231.300781 C 144.664062 231.300781 144.570312 231.394531 144.570312 231.511719 C 144.570312 231.628906 144.664062 231.722656 144.78125 231.722656 C 144.898438 231.722656 144.992188 231.628906 144.992188 231.511719 Z M 144.992188 231.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.835938 236.367188 C 141.835938 236.25 141.742188 236.15625 141.625 236.15625 C 141.507812 236.15625 141.414062 236.25 141.414062 236.367188 C 141.414062 236.484375 141.507812 236.578125 141.625 236.578125 C 141.742188 236.578125 141.835938 236.484375 141.835938 236.367188 Z M 141.835938 236.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.835938 235.488281 C 146.835938 235.371094 146.742188 235.277344 146.625 235.277344 C 146.507812 235.277344 146.414062 235.371094 146.414062 235.488281 C 146.414062 235.605469 146.507812 235.699219 146.625 235.699219 C 146.742188 235.699219 146.835938 235.605469 146.835938 235.488281 Z M 146.835938 235.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.601562 232.675781 C 149.601562 232.558594 149.507812 232.464844 149.390625 232.464844 C 149.273438 232.464844 149.179688 232.558594 149.179688 232.675781 C 149.179688 232.792969 149.273438 232.886719 149.390625 232.886719 C 149.507812 232.886719 149.601562 232.792969 149.601562 232.675781 Z M 149.601562 232.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.742188 233.460938 C 151.742188 233.34375 151.648438 233.25 151.53125 233.25 C 151.414062 233.25 151.320312 233.34375 151.320312 233.460938 C 151.320312 233.578125 151.414062 233.671875 151.53125 233.671875 C 151.648438 233.671875 151.742188 233.578125 151.742188 233.460938 Z M 151.742188 233.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.621094 235.917969 C 154.621094 235.800781 154.527344 235.707031 154.410156 235.707031 C 154.292969 235.707031 154.199219 235.800781 154.199219 235.917969 C 154.199219 236.035156 154.292969 236.128906 154.410156 236.128906 C 154.527344 236.128906 154.621094 236.035156 154.621094 235.917969 Z M 154.621094 235.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.367188 235.804688 C 155.367188 235.6875 155.273438 235.59375 155.15625 235.59375 C 155.039062 235.59375 154.945312 235.6875 154.945312 235.804688 C 154.945312 235.921875 155.039062 236.015625 155.15625 236.015625 C 155.273438 236.015625 155.367188 235.921875 155.367188 235.804688 Z M 155.367188 235.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.722656 236.972656 C 154.722656 236.855469 154.628906 236.761719 154.511719 236.761719 C 154.394531 236.761719 154.300781 236.855469 154.300781 236.972656 C 154.300781 237.089844 154.394531 237.183594 154.511719 237.183594 C 154.628906 237.183594 154.722656 237.089844 154.722656 236.972656 Z M 154.722656 236.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.019531 238.636719 C 154.019531 238.519531 153.925781 238.425781 153.808594 238.425781 C 153.691406 238.425781 153.597656 238.519531 153.597656 238.636719 C 153.597656 238.753906 153.691406 238.847656 153.808594 238.847656 C 153.925781 238.847656 154.019531 238.753906 154.019531 238.636719 Z M 154.019531 238.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.554688 241.011719 C 154.554688 240.894531 154.460938 240.800781 154.34375 240.800781 C 154.226562 240.800781 154.132812 240.894531 154.132812 241.011719 C 154.132812 241.128906 154.226562 241.222656 154.34375 241.222656 C 154.460938 241.222656 154.554688 241.128906 154.554688 241.011719 Z M 154.554688 241.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.261719 239.046875 C 157.261719 238.929688 157.167969 238.835938 157.050781 238.835938 C 156.933594 238.835938 156.839844 238.929688 156.839844 239.046875 C 156.839844 239.164062 156.933594 239.257812 157.050781 239.257812 C 157.167969 239.257812 157.261719 239.164062 157.261719 239.046875 Z M 157.261719 239.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.761719 239.878906 C 158.761719 239.761719 158.667969 239.667969 158.550781 239.667969 C 158.433594 239.667969 158.339844 239.761719 158.339844 239.878906 C 158.339844 239.996094 158.433594 240.089844 158.550781 240.089844 C 158.667969 240.089844 158.761719 239.996094 158.761719 239.878906 Z M 158.761719 239.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.695312 241.945312 C 157.695312 241.828125 157.601562 241.734375 157.484375 241.734375 C 157.367188 241.734375 157.273438 241.828125 157.273438 241.945312 C 157.273438 242.0625 157.367188 242.15625 157.484375 242.15625 C 157.601562 242.15625 157.695312 242.0625 157.695312 241.945312 Z M 157.695312 241.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.566406 242.765625 C 154.566406 242.648438 154.472656 242.554688 154.355469 242.554688 C 154.238281 242.554688 154.144531 242.648438 154.144531 242.765625 C 154.144531 242.882812 154.238281 242.976562 154.355469 242.976562 C 154.472656 242.976562 154.566406 242.882812 154.566406 242.765625 Z M 154.566406 242.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.515625 242.515625 C 153.515625 242.398438 153.421875 242.304688 153.304688 242.304688 C 153.1875 242.304688 153.09375 242.398438 153.09375 242.515625 C 153.09375 242.632812 153.1875 242.726562 153.304688 242.726562 C 153.421875 242.726562 153.515625 242.632812 153.515625 242.515625 Z M 153.515625 242.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.558594 238.101562 C 152.558594 237.984375 152.464844 237.890625 152.347656 237.890625 C 152.230469 237.890625 152.136719 237.984375 152.136719 238.101562 C 152.136719 238.21875 152.230469 238.3125 152.347656 238.3125 C 152.464844 238.3125 152.558594 238.21875 152.558594 238.101562 Z M 152.558594 238.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.953125 237.273438 C 148.953125 237.15625 148.859375 237.0625 148.742188 237.0625 C 148.625 237.0625 148.53125 237.15625 148.53125 237.273438 C 148.53125 237.390625 148.625 237.484375 148.742188 237.484375 C 148.859375 237.484375 148.953125 237.390625 148.953125 237.273438 Z M 148.953125 237.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.050781 237.433594 C 145.050781 237.316406 144.957031 237.222656 144.839844 237.222656 C 144.722656 237.222656 144.628906 237.316406 144.628906 237.433594 C 144.628906 237.550781 144.722656 237.644531 144.839844 237.644531 C 144.957031 237.644531 145.050781 237.550781 145.050781 237.433594 Z M 145.050781 237.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.925781 238.238281 C 146.925781 238.121094 146.832031 238.027344 146.714844 238.027344 C 146.597656 238.027344 146.503906 238.121094 146.503906 238.238281 C 146.503906 238.355469 146.597656 238.449219 146.714844 238.449219 C 146.832031 238.449219 146.925781 238.355469 146.925781 238.238281 Z M 146.925781 238.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.109375 236.652344 C 148.109375 236.535156 148.015625 236.441406 147.898438 236.441406 C 147.78125 236.441406 147.6875 236.535156 147.6875 236.652344 C 147.6875 236.769531 147.78125 236.863281 147.898438 236.863281 C 148.015625 236.863281 148.109375 236.769531 148.109375 236.652344 Z M 148.109375 236.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.75 241.136719 C 150.75 241.019531 150.65625 240.925781 150.539062 240.925781 C 150.421875 240.925781 150.328125 241.019531 150.328125 241.136719 C 150.328125 241.253906 150.421875 241.347656 150.539062 241.347656 C 150.65625 241.347656 150.75 241.253906 150.75 241.136719 Z M 150.75 241.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.972656 239.585938 C 150.972656 239.46875 150.878906 239.375 150.761719 239.375 C 150.644531 239.375 150.550781 239.46875 150.550781 239.585938 C 150.550781 239.703125 150.644531 239.796875 150.761719 239.796875 C 150.878906 239.796875 150.972656 239.703125 150.972656 239.585938 Z M 150.972656 239.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.617188 238.175781 C 151.617188 238.058594 151.523438 237.964844 151.40625 237.964844 C 151.289062 237.964844 151.195312 238.058594 151.195312 238.175781 C 151.195312 238.292969 151.289062 238.386719 151.40625 238.386719 C 151.523438 238.386719 151.617188 238.292969 151.617188 238.175781 Z M 151.617188 238.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.675781 237.707031 C 151.675781 237.589844 151.582031 237.496094 151.464844 237.496094 C 151.347656 237.496094 151.253906 237.589844 151.253906 237.707031 C 151.253906 237.824219 151.347656 237.917969 151.464844 237.917969 C 151.582031 237.917969 151.675781 237.824219 151.675781 237.707031 Z M 151.675781 237.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.539062 239.019531 C 150.539062 238.902344 150.445312 238.808594 150.328125 238.808594 C 150.210938 238.808594 150.117188 238.902344 150.117188 239.019531 C 150.117188 239.136719 150.210938 239.230469 150.328125 239.230469 C 150.445312 239.230469 150.539062 239.136719 150.539062 239.019531 Z M 150.539062 239.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.894531 237.128906 C 150.894531 237.011719 150.800781 236.917969 150.683594 236.917969 C 150.566406 236.917969 150.472656 237.011719 150.472656 237.128906 C 150.472656 237.246094 150.566406 237.339844 150.683594 237.339844 C 150.800781 237.339844 150.894531 237.246094 150.894531 237.128906 Z M 150.894531 237.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.441406 237.402344 C 151.441406 237.285156 151.347656 237.191406 151.230469 237.191406 C 151.113281 237.191406 151.019531 237.285156 151.019531 237.402344 C 151.019531 237.519531 151.113281 237.613281 151.230469 237.613281 C 151.347656 237.613281 151.441406 237.519531 151.441406 237.402344 Z M 151.441406 237.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.246094 239.332031 C 150.246094 239.214844 150.152344 239.121094 150.035156 239.121094 C 149.917969 239.121094 149.824219 239.214844 149.824219 239.332031 C 149.824219 239.449219 149.917969 239.542969 150.035156 239.542969 C 150.152344 239.542969 150.246094 239.449219 150.246094 239.332031 Z M 150.246094 239.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.773438 243.234375 C 149.773438 243.117188 149.679688 243.023438 149.5625 243.023438 C 149.445312 243.023438 149.351562 243.117188 149.351562 243.234375 C 149.351562 243.351562 149.445312 243.445312 149.5625 243.445312 C 149.679688 243.445312 149.773438 243.351562 149.773438 243.234375 Z M 149.773438 243.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.609375 239.335938 C 147.609375 239.21875 147.515625 239.125 147.398438 239.125 C 147.28125 239.125 147.1875 239.21875 147.1875 239.335938 C 147.1875 239.453125 147.28125 239.546875 147.398438 239.546875 C 147.515625 239.546875 147.609375 239.453125 147.609375 239.335938 Z M 147.609375 239.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.089844 238.105469 C 148.089844 237.988281 147.996094 237.894531 147.878906 237.894531 C 147.761719 237.894531 147.667969 237.988281 147.667969 238.105469 C 147.667969 238.222656 147.761719 238.316406 147.878906 238.316406 C 147.996094 238.316406 148.089844 238.222656 148.089844 238.105469 Z M 148.089844 238.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.734375 239.878906 C 146.734375 239.761719 146.640625 239.667969 146.523438 239.667969 C 146.40625 239.667969 146.3125 239.761719 146.3125 239.878906 C 146.3125 239.996094 146.40625 240.089844 146.523438 240.089844 C 146.640625 240.089844 146.734375 239.996094 146.734375 239.878906 Z M 146.734375 239.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.5625 242.253906 C 144.5625 242.136719 144.46875 242.042969 144.351562 242.042969 C 144.234375 242.042969 144.140625 242.136719 144.140625 242.253906 C 144.140625 242.371094 144.234375 242.464844 144.351562 242.464844 C 144.46875 242.464844 144.5625 242.371094 144.5625 242.253906 Z M 144.5625 242.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.039062 240.179688 C 147.039062 240.0625 146.945312 239.96875 146.828125 239.96875 C 146.710938 239.96875 146.617188 240.0625 146.617188 240.179688 C 146.617188 240.296875 146.710938 240.390625 146.828125 240.390625 C 146.945312 240.390625 147.039062 240.296875 147.039062 240.179688 Z M 147.039062 240.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.285156 234.199219 C 148.285156 234.082031 148.191406 233.988281 148.074219 233.988281 C 147.957031 233.988281 147.863281 234.082031 147.863281 234.199219 C 147.863281 234.316406 147.957031 234.410156 148.074219 234.410156 C 148.191406 234.410156 148.285156 234.316406 148.285156 234.199219 Z M 148.285156 234.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.855469 235.027344 C 148.855469 234.910156 148.761719 234.816406 148.644531 234.816406 C 148.527344 234.816406 148.433594 234.910156 148.433594 235.027344 C 148.433594 235.144531 148.527344 235.238281 148.644531 235.238281 C 148.761719 235.238281 148.855469 235.144531 148.855469 235.027344 Z M 148.855469 235.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.964844 233.441406 C 147.964844 233.324219 147.871094 233.230469 147.753906 233.230469 C 147.636719 233.230469 147.542969 233.324219 147.542969 233.441406 C 147.542969 233.558594 147.636719 233.652344 147.753906 233.652344 C 147.871094 233.652344 147.964844 233.558594 147.964844 233.441406 Z M 147.964844 233.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.933594 234.296875 C 144.933594 234.179688 144.839844 234.085938 144.722656 234.085938 C 144.605469 234.085938 144.511719 234.179688 144.511719 234.296875 C 144.511719 234.414062 144.605469 234.507812 144.722656 234.507812 C 144.839844 234.507812 144.933594 234.414062 144.933594 234.296875 Z M 144.933594 234.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.625 233.375 C 150.625 233.257812 150.53125 233.164062 150.414062 233.164062 C 150.296875 233.164062 150.203125 233.257812 150.203125 233.375 C 150.203125 233.492188 150.296875 233.585938 150.414062 233.585938 C 150.53125 233.585938 150.625 233.492188 150.625 233.375 Z M 150.625 233.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.378906 232.5 C 151.378906 232.382812 151.285156 232.289062 151.167969 232.289062 C 151.050781 232.289062 150.957031 232.382812 150.957031 232.5 C 150.957031 232.617188 151.050781 232.710938 151.167969 232.710938 C 151.285156 232.710938 151.378906 232.617188 151.378906 232.5 Z M 151.378906 232.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.457031 230.109375 C 150.457031 229.992188 150.363281 229.898438 150.246094 229.898438 C 150.128906 229.898438 150.035156 229.992188 150.035156 230.109375 C 150.035156 230.226562 150.128906 230.320312 150.246094 230.320312 C 150.363281 230.320312 150.457031 230.226562 150.457031 230.109375 Z M 150.457031 230.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.300781 228.832031 C 151.300781 228.714844 151.207031 228.621094 151.089844 228.621094 C 150.972656 228.621094 150.878906 228.714844 150.878906 228.832031 C 150.878906 228.949219 150.972656 229.042969 151.089844 229.042969 C 151.207031 229.042969 151.300781 228.949219 151.300781 228.832031 Z M 151.300781 228.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.6875 229.101562 C 152.6875 228.984375 152.59375 228.890625 152.476562 228.890625 C 152.359375 228.890625 152.265625 228.984375 152.265625 229.101562 C 152.265625 229.21875 152.359375 229.3125 152.476562 229.3125 C 152.59375 229.3125 152.6875 229.21875 152.6875 229.101562 Z M 152.6875 229.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.90625 230.398438 C 150.90625 230.28125 150.8125 230.1875 150.695312 230.1875 C 150.578125 230.1875 150.484375 230.28125 150.484375 230.398438 C 150.484375 230.515625 150.578125 230.609375 150.695312 230.609375 C 150.8125 230.609375 150.90625 230.515625 150.90625 230.398438 Z M 150.90625 230.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.546875 229.652344 C 148.546875 229.535156 148.453125 229.441406 148.335938 229.441406 C 148.21875 229.441406 148.125 229.535156 148.125 229.652344 C 148.125 229.769531 148.21875 229.863281 148.335938 229.863281 C 148.453125 229.863281 148.546875 229.769531 148.546875 229.652344 Z M 148.546875 229.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.074219 231.753906 C 153.074219 231.636719 152.980469 231.542969 152.863281 231.542969 C 152.746094 231.542969 152.652344 231.636719 152.652344 231.753906 C 152.652344 231.871094 152.746094 231.964844 152.863281 231.964844 C 152.980469 231.964844 153.074219 231.871094 153.074219 231.753906 Z M 153.074219 231.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.867188 229.28125 C 152.867188 229.164062 152.773438 229.070312 152.65625 229.070312 C 152.539062 229.070312 152.445312 229.164062 152.445312 229.28125 C 152.445312 229.398438 152.539062 229.492188 152.65625 229.492188 C 152.773438 229.492188 152.867188 229.398438 152.867188 229.28125 Z M 152.867188 229.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.589844 227.222656 C 154.589844 227.105469 154.496094 227.011719 154.378906 227.011719 C 154.261719 227.011719 154.167969 227.105469 154.167969 227.222656 C 154.167969 227.339844 154.261719 227.433594 154.378906 227.433594 C 154.496094 227.433594 154.589844 227.339844 154.589844 227.222656 Z M 154.589844 227.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.664062 227.199219 C 158.664062 227.082031 158.570312 226.988281 158.453125 226.988281 C 158.335938 226.988281 158.242188 227.082031 158.242188 227.199219 C 158.242188 227.316406 158.335938 227.410156 158.453125 227.410156 C 158.570312 227.410156 158.664062 227.316406 158.664062 227.199219 Z M 158.664062 227.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.640625 227.785156 C 156.640625 227.667969 156.546875 227.574219 156.429688 227.574219 C 156.3125 227.574219 156.21875 227.667969 156.21875 227.785156 C 156.21875 227.902344 156.3125 227.996094 156.429688 227.996094 C 156.546875 227.996094 156.640625 227.902344 156.640625 227.785156 Z M 156.640625 227.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.53125 231.300781 C 155.53125 231.183594 155.4375 231.089844 155.320312 231.089844 C 155.203125 231.089844 155.109375 231.183594 155.109375 231.300781 C 155.109375 231.417969 155.203125 231.511719 155.320312 231.511719 C 155.4375 231.511719 155.53125 231.417969 155.53125 231.300781 Z M 155.53125 231.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.972656 232.273438 C 156.972656 232.15625 156.878906 232.0625 156.761719 232.0625 C 156.644531 232.0625 156.550781 232.15625 156.550781 232.273438 C 156.550781 232.390625 156.644531 232.484375 156.761719 232.484375 C 156.878906 232.484375 156.972656 232.390625 156.972656 232.273438 Z M 156.972656 232.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.761719 229.089844 C 158.761719 228.972656 158.667969 228.878906 158.550781 228.878906 C 158.433594 228.878906 158.339844 228.972656 158.339844 229.089844 C 158.339844 229.207031 158.433594 229.300781 158.550781 229.300781 C 158.667969 229.300781 158.761719 229.207031 158.761719 229.089844 Z M 158.761719 229.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.796875 229.207031 C 159.796875 229.089844 159.703125 228.996094 159.585938 228.996094 C 159.46875 228.996094 159.375 229.089844 159.375 229.207031 C 159.375 229.324219 159.46875 229.417969 159.585938 229.417969 C 159.703125 229.417969 159.796875 229.324219 159.796875 229.207031 Z M 159.796875 229.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.132812 229.691406 C 159.132812 229.574219 159.039062 229.480469 158.921875 229.480469 C 158.804688 229.480469 158.710938 229.574219 158.710938 229.691406 C 158.710938 229.808594 158.804688 229.902344 158.921875 229.902344 C 159.039062 229.902344 159.132812 229.808594 159.132812 229.691406 Z M 159.132812 229.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.984375 229.785156 C 161.984375 229.667969 161.890625 229.574219 161.773438 229.574219 C 161.65625 229.574219 161.5625 229.667969 161.5625 229.785156 C 161.5625 229.902344 161.65625 229.996094 161.773438 229.996094 C 161.890625 229.996094 161.984375 229.902344 161.984375 229.785156 Z M 161.984375 229.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.945312 229.894531 C 158.945312 229.777344 158.851562 229.683594 158.734375 229.683594 C 158.617188 229.683594 158.523438 229.777344 158.523438 229.894531 C 158.523438 230.011719 158.617188 230.105469 158.734375 230.105469 C 158.851562 230.105469 158.945312 230.011719 158.945312 229.894531 Z M 158.945312 229.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.417969 225.960938 C 159.417969 225.84375 159.324219 225.75 159.207031 225.75 C 159.089844 225.75 158.996094 225.84375 158.996094 225.960938 C 158.996094 226.078125 159.089844 226.171875 159.207031 226.171875 C 159.324219 226.171875 159.417969 226.078125 159.417969 225.960938 Z M 159.417969 225.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.433594 225.085938 C 158.433594 224.96875 158.339844 224.875 158.222656 224.875 C 158.105469 224.875 158.011719 224.96875 158.011719 225.085938 C 158.011719 225.203125 158.105469 225.296875 158.222656 225.296875 C 158.339844 225.296875 158.433594 225.203125 158.433594 225.085938 Z M 158.433594 225.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.414062 225.589844 C 157.414062 225.472656 157.320312 225.378906 157.203125 225.378906 C 157.085938 225.378906 156.992188 225.472656 156.992188 225.589844 C 156.992188 225.707031 157.085938 225.800781 157.203125 225.800781 C 157.320312 225.800781 157.414062 225.707031 157.414062 225.589844 Z M 157.414062 225.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.101562 226.988281 C 155.101562 226.871094 155.007812 226.777344 154.890625 226.777344 C 154.773438 226.777344 154.679688 226.871094 154.679688 226.988281 C 154.679688 227.105469 154.773438 227.199219 154.890625 227.199219 C 155.007812 227.199219 155.101562 227.105469 155.101562 226.988281 Z M 155.101562 226.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.417969 226.398438 C 153.417969 226.28125 153.324219 226.1875 153.207031 226.1875 C 153.089844 226.1875 152.996094 226.28125 152.996094 226.398438 C 152.996094 226.515625 153.089844 226.609375 153.207031 226.609375 C 153.324219 226.609375 153.417969 226.515625 153.417969 226.398438 Z M 153.417969 226.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.484375 224.667969 C 159.484375 224.550781 159.390625 224.457031 159.273438 224.457031 C 159.15625 224.457031 159.0625 224.550781 159.0625 224.667969 C 159.0625 224.785156 159.15625 224.878906 159.273438 224.878906 C 159.390625 224.878906 159.484375 224.785156 159.484375 224.667969 Z M 159.484375 224.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.839844 228.265625 C 157.839844 228.148438 157.746094 228.054688 157.628906 228.054688 C 157.511719 228.054688 157.417969 228.148438 157.417969 228.265625 C 157.417969 228.382812 157.511719 228.476562 157.628906 228.476562 C 157.746094 228.476562 157.839844 228.382812 157.839844 228.265625 Z M 157.839844 228.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.285156 226.15625 C 159.285156 226.039062 159.191406 225.945312 159.074219 225.945312 C 158.957031 225.945312 158.863281 226.039062 158.863281 226.15625 C 158.863281 226.273438 158.957031 226.367188 159.074219 226.367188 C 159.191406 226.367188 159.285156 226.273438 159.285156 226.15625 Z M 159.285156 226.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.222656 228.195312 C 159.222656 228.078125 159.128906 227.984375 159.011719 227.984375 C 158.894531 227.984375 158.800781 228.078125 158.800781 228.195312 C 158.800781 228.3125 158.894531 228.40625 159.011719 228.40625 C 159.128906 228.40625 159.222656 228.3125 159.222656 228.195312 Z M 159.222656 228.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.476562 228.285156 C 162.476562 228.167969 162.382812 228.074219 162.265625 228.074219 C 162.148438 228.074219 162.054688 228.167969 162.054688 228.285156 C 162.054688 228.402344 162.148438 228.496094 162.265625 228.496094 C 162.382812 228.496094 162.476562 228.402344 162.476562 228.285156 Z M 162.476562 228.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.242188 228.332031 C 165.242188 228.214844 165.148438 228.121094 165.03125 228.121094 C 164.914062 228.121094 164.820312 228.214844 164.820312 228.332031 C 164.820312 228.449219 164.914062 228.542969 165.03125 228.542969 C 165.148438 228.542969 165.242188 228.449219 165.242188 228.332031 Z M 165.242188 228.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.527344 226.164062 C 165.527344 226.046875 165.433594 225.953125 165.316406 225.953125 C 165.199219 225.953125 165.105469 226.046875 165.105469 226.164062 C 165.105469 226.28125 165.199219 226.375 165.316406 226.375 C 165.433594 226.375 165.527344 226.28125 165.527344 226.164062 Z M 165.527344 226.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.480469 224.871094 C 165.480469 224.753906 165.386719 224.660156 165.269531 224.660156 C 165.152344 224.660156 165.058594 224.753906 165.058594 224.871094 C 165.058594 224.988281 165.152344 225.082031 165.269531 225.082031 C 165.386719 225.082031 165.480469 224.988281 165.480469 224.871094 Z M 165.480469 224.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.355469 226.230469 C 166.355469 226.113281 166.261719 226.019531 166.144531 226.019531 C 166.027344 226.019531 165.933594 226.113281 165.933594 226.230469 C 165.933594 226.347656 166.027344 226.441406 166.144531 226.441406 C 166.261719 226.441406 166.355469 226.347656 166.355469 226.230469 Z M 166.355469 226.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.695312 227.445312 C 169.695312 227.328125 169.601562 227.234375 169.484375 227.234375 C 169.367188 227.234375 169.273438 227.328125 169.273438 227.445312 C 169.273438 227.5625 169.367188 227.65625 169.484375 227.65625 C 169.601562 227.65625 169.695312 227.5625 169.695312 227.445312 Z M 169.695312 227.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.542969 227.164062 C 170.542969 227.046875 170.449219 226.953125 170.332031 226.953125 C 170.214844 226.953125 170.121094 227.046875 170.121094 227.164062 C 170.121094 227.28125 170.214844 227.375 170.332031 227.375 C 170.449219 227.375 170.542969 227.28125 170.542969 227.164062 Z M 170.542969 227.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.53125 226.050781 C 171.53125 225.933594 171.4375 225.839844 171.320312 225.839844 C 171.203125 225.839844 171.109375 225.933594 171.109375 226.050781 C 171.109375 226.167969 171.203125 226.261719 171.320312 226.261719 C 171.4375 226.261719 171.53125 226.167969 171.53125 226.050781 Z M 171.53125 226.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.046875 225.167969 C 169.046875 225.050781 168.953125 224.957031 168.835938 224.957031 C 168.71875 224.957031 168.625 225.050781 168.625 225.167969 C 168.625 225.285156 168.71875 225.378906 168.835938 225.378906 C 168.953125 225.378906 169.046875 225.285156 169.046875 225.167969 Z M 169.046875 225.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.828125 226.671875 C 170.828125 226.554688 170.734375 226.460938 170.617188 226.460938 C 170.5 226.460938 170.40625 226.554688 170.40625 226.671875 C 170.40625 226.789062 170.5 226.882812 170.617188 226.882812 C 170.734375 226.882812 170.828125 226.789062 170.828125 226.671875 Z M 170.828125 226.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.484375 225.800781 C 170.484375 225.683594 170.390625 225.589844 170.273438 225.589844 C 170.15625 225.589844 170.0625 225.683594 170.0625 225.800781 C 170.0625 225.917969 170.15625 226.011719 170.273438 226.011719 C 170.390625 226.011719 170.484375 225.917969 170.484375 225.800781 Z M 170.484375 225.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.425781 223.265625 C 170.425781 223.148438 170.332031 223.054688 170.214844 223.054688 C 170.097656 223.054688 170.003906 223.148438 170.003906 223.265625 C 170.003906 223.382812 170.097656 223.476562 170.214844 223.476562 C 170.332031 223.476562 170.425781 223.382812 170.425781 223.265625 Z M 170.425781 223.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.007812 220.585938 C 171.007812 220.46875 170.914062 220.375 170.796875 220.375 C 170.679688 220.375 170.585938 220.46875 170.585938 220.585938 C 170.585938 220.703125 170.679688 220.796875 170.796875 220.796875 C 170.914062 220.796875 171.007812 220.703125 171.007812 220.585938 Z M 171.007812 220.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.4375 221.679688 C 168.4375 221.5625 168.34375 221.46875 168.226562 221.46875 C 168.109375 221.46875 168.015625 221.5625 168.015625 221.679688 C 168.015625 221.796875 168.109375 221.890625 168.226562 221.890625 C 168.34375 221.890625 168.4375 221.796875 168.4375 221.679688 Z M 168.4375 221.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.390625 222.398438 C 172.390625 222.28125 172.296875 222.1875 172.179688 222.1875 C 172.0625 222.1875 171.96875 222.28125 171.96875 222.398438 C 171.96875 222.515625 172.0625 222.609375 172.179688 222.609375 C 172.296875 222.609375 172.390625 222.515625 172.390625 222.398438 Z M 172.390625 222.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.824219 222.980469 C 171.824219 222.863281 171.730469 222.769531 171.613281 222.769531 C 171.496094 222.769531 171.402344 222.863281 171.402344 222.980469 C 171.402344 223.097656 171.496094 223.191406 171.613281 223.191406 C 171.730469 223.191406 171.824219 223.097656 171.824219 222.980469 Z M 171.824219 222.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.824219 224.480469 C 171.824219 224.363281 171.730469 224.269531 171.613281 224.269531 C 171.496094 224.269531 171.402344 224.363281 171.402344 224.480469 C 171.402344 224.597656 171.496094 224.691406 171.613281 224.691406 C 171.730469 224.691406 171.824219 224.597656 171.824219 224.480469 Z M 171.824219 224.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.273438 226.117188 C 175.273438 226 175.179688 225.90625 175.0625 225.90625 C 174.945312 225.90625 174.851562 226 174.851562 226.117188 C 174.851562 226.234375 174.945312 226.328125 175.0625 226.328125 C 175.179688 226.328125 175.273438 226.234375 175.273438 226.117188 Z M 175.273438 226.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.742188 224.5 C 174.742188 224.382812 174.648438 224.289062 174.53125 224.289062 C 174.414062 224.289062 174.320312 224.382812 174.320312 224.5 C 174.320312 224.617188 174.414062 224.710938 174.53125 224.710938 C 174.648438 224.710938 174.742188 224.617188 174.742188 224.5 Z M 174.742188 224.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.796875 227.75 C 171.796875 227.632812 171.703125 227.539062 171.585938 227.539062 C 171.46875 227.539062 171.375 227.632812 171.375 227.75 C 171.375 227.867188 171.46875 227.960938 171.585938 227.960938 C 171.703125 227.960938 171.796875 227.867188 171.796875 227.75 Z M 171.796875 227.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.722656 228.714844 C 168.722656 228.597656 168.628906 228.503906 168.511719 228.503906 C 168.394531 228.503906 168.300781 228.597656 168.300781 228.714844 C 168.300781 228.832031 168.394531 228.925781 168.511719 228.925781 C 168.628906 228.925781 168.722656 228.832031 168.722656 228.714844 Z M 168.722656 228.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.226562 228.140625 C 169.226562 228.023438 169.132812 227.929688 169.015625 227.929688 C 168.898438 227.929688 168.804688 228.023438 168.804688 228.140625 C 168.804688 228.257812 168.898438 228.351562 169.015625 228.351562 C 169.132812 228.351562 169.226562 228.257812 169.226562 228.140625 Z M 169.226562 228.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.988281 228.226562 C 169.988281 228.109375 169.894531 228.015625 169.777344 228.015625 C 169.660156 228.015625 169.566406 228.109375 169.566406 228.226562 C 169.566406 228.34375 169.660156 228.4375 169.777344 228.4375 C 169.894531 228.4375 169.988281 228.34375 169.988281 228.226562 Z M 169.988281 228.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.886719 228.273438 C 170.886719 228.15625 170.792969 228.0625 170.675781 228.0625 C 170.558594 228.0625 170.464844 228.15625 170.464844 228.273438 C 170.464844 228.390625 170.558594 228.484375 170.675781 228.484375 C 170.792969 228.484375 170.886719 228.390625 170.886719 228.273438 Z M 170.886719 228.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.988281 230.589844 C 171.988281 230.472656 171.894531 230.378906 171.777344 230.378906 C 171.660156 230.378906 171.566406 230.472656 171.566406 230.589844 C 171.566406 230.707031 171.660156 230.800781 171.777344 230.800781 C 171.894531 230.800781 171.988281 230.707031 171.988281 230.589844 Z M 171.988281 230.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.15625 232.890625 C 169.15625 232.773438 169.0625 232.679688 168.945312 232.679688 C 168.828125 232.679688 168.734375 232.773438 168.734375 232.890625 C 168.734375 233.007812 168.828125 233.101562 168.945312 233.101562 C 169.0625 233.101562 169.15625 233.007812 169.15625 232.890625 Z M 169.15625 232.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.503906 235.410156 C 169.503906 235.292969 169.410156 235.199219 169.292969 235.199219 C 169.175781 235.199219 169.082031 235.292969 169.082031 235.410156 C 169.082031 235.527344 169.175781 235.621094 169.292969 235.621094 C 169.410156 235.621094 169.503906 235.527344 169.503906 235.410156 Z M 169.503906 235.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.179688 233.011719 C 169.179688 232.894531 169.085938 232.800781 168.96875 232.800781 C 168.851562 232.800781 168.757812 232.894531 168.757812 233.011719 C 168.757812 233.128906 168.851562 233.222656 168.96875 233.222656 C 169.085938 233.222656 169.179688 233.128906 169.179688 233.011719 Z M 169.179688 233.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.476562 235.800781 C 167.476562 235.683594 167.382812 235.589844 167.265625 235.589844 C 167.148438 235.589844 167.054688 235.683594 167.054688 235.800781 C 167.054688 235.917969 167.148438 236.011719 167.265625 236.011719 C 167.382812 236.011719 167.476562 235.917969 167.476562 235.800781 Z M 167.476562 235.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.089844 238.5 C 167.089844 238.382812 166.996094 238.289062 166.878906 238.289062 C 166.761719 238.289062 166.667969 238.382812 166.667969 238.5 C 166.667969 238.617188 166.761719 238.710938 166.878906 238.710938 C 166.996094 238.710938 167.089844 238.617188 167.089844 238.5 Z M 167.089844 238.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.625 239.839844 C 167.625 239.722656 167.53125 239.628906 167.414062 239.628906 C 167.296875 239.628906 167.203125 239.722656 167.203125 239.839844 C 167.203125 239.957031 167.296875 240.050781 167.414062 240.050781 C 167.53125 240.050781 167.625 239.957031 167.625 239.839844 Z M 167.625 239.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.484375 240.808594 C 166.484375 240.691406 166.390625 240.597656 166.273438 240.597656 C 166.15625 240.597656 166.0625 240.691406 166.0625 240.808594 C 166.0625 240.925781 166.15625 241.019531 166.273438 241.019531 C 166.390625 241.019531 166.484375 240.925781 166.484375 240.808594 Z M 166.484375 240.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.277344 237.527344 C 162.277344 237.410156 162.183594 237.316406 162.066406 237.316406 C 161.949219 237.316406 161.855469 237.410156 161.855469 237.527344 C 161.855469 237.644531 161.949219 237.738281 162.066406 237.738281 C 162.183594 237.738281 162.277344 237.644531 162.277344 237.527344 Z M 162.277344 237.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.199219 239.535156 C 164.199219 239.417969 164.105469 239.324219 163.988281 239.324219 C 163.871094 239.324219 163.777344 239.417969 163.777344 239.535156 C 163.777344 239.652344 163.871094 239.746094 163.988281 239.746094 C 164.105469 239.746094 164.199219 239.652344 164.199219 239.535156 Z M 164.199219 239.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.917969 240.878906 C 165.917969 240.761719 165.824219 240.667969 165.707031 240.667969 C 165.589844 240.667969 165.496094 240.761719 165.496094 240.878906 C 165.496094 240.996094 165.589844 241.089844 165.707031 241.089844 C 165.824219 241.089844 165.917969 240.996094 165.917969 240.878906 Z M 165.917969 240.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.226562 235.304688 C 165.226562 235.1875 165.132812 235.09375 165.015625 235.09375 C 164.898438 235.09375 164.804688 235.1875 164.804688 235.304688 C 164.804688 235.421875 164.898438 235.515625 165.015625 235.515625 C 165.132812 235.515625 165.226562 235.421875 165.226562 235.304688 Z M 165.226562 235.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.792969 233.699219 C 165.792969 233.582031 165.699219 233.488281 165.582031 233.488281 C 165.464844 233.488281 165.371094 233.582031 165.371094 233.699219 C 165.371094 233.816406 165.464844 233.910156 165.582031 233.910156 C 165.699219 233.910156 165.792969 233.816406 165.792969 233.699219 Z M 165.792969 233.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.84375 232.1875 C 165.84375 232.070312 165.75 231.976562 165.632812 231.976562 C 165.515625 231.976562 165.421875 232.070312 165.421875 232.1875 C 165.421875 232.304688 165.515625 232.398438 165.632812 232.398438 C 165.75 232.398438 165.84375 232.304688 165.84375 232.1875 Z M 165.84375 232.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.011719 237.382812 C 163.011719 237.265625 162.917969 237.171875 162.800781 237.171875 C 162.683594 237.171875 162.589844 237.265625 162.589844 237.382812 C 162.589844 237.5 162.683594 237.59375 162.800781 237.59375 C 162.917969 237.59375 163.011719 237.5 163.011719 237.382812 Z M 163.011719 237.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.175781 234.789062 C 162.175781 234.671875 162.082031 234.578125 161.964844 234.578125 C 161.847656 234.578125 161.753906 234.671875 161.753906 234.789062 C 161.753906 234.90625 161.847656 235 161.964844 235 C 162.082031 235 162.175781 234.90625 162.175781 234.789062 Z M 162.175781 234.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.789062 235.367188 C 162.789062 235.25 162.695312 235.15625 162.578125 235.15625 C 162.460938 235.15625 162.367188 235.25 162.367188 235.367188 C 162.367188 235.484375 162.460938 235.578125 162.578125 235.578125 C 162.695312 235.578125 162.789062 235.484375 162.789062 235.367188 Z M 162.789062 235.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.378906 235.285156 C 161.378906 235.167969 161.285156 235.074219 161.167969 235.074219 C 161.050781 235.074219 160.957031 235.167969 160.957031 235.285156 C 160.957031 235.402344 161.050781 235.496094 161.167969 235.496094 C 161.285156 235.496094 161.378906 235.402344 161.378906 235.285156 Z M 161.378906 235.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.027344 232.640625 C 163.027344 232.523438 162.933594 232.429688 162.816406 232.429688 C 162.699219 232.429688 162.605469 232.523438 162.605469 232.640625 C 162.605469 232.757812 162.699219 232.851562 162.816406 232.851562 C 162.933594 232.851562 163.027344 232.757812 163.027344 232.640625 Z M 163.027344 232.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.226562 230.25 C 161.226562 230.132812 161.132812 230.039062 161.015625 230.039062 C 160.898438 230.039062 160.804688 230.132812 160.804688 230.25 C 160.804688 230.367188 160.898438 230.460938 161.015625 230.460938 C 161.132812 230.460938 161.226562 230.367188 161.226562 230.25 Z M 161.226562 230.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.824219 230.417969 C 161.824219 230.300781 161.730469 230.207031 161.613281 230.207031 C 161.496094 230.207031 161.402344 230.300781 161.402344 230.417969 C 161.402344 230.535156 161.496094 230.628906 161.613281 230.628906 C 161.730469 230.628906 161.824219 230.535156 161.824219 230.417969 Z M 161.824219 230.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.761719 232.320312 C 160.761719 232.203125 160.667969 232.109375 160.550781 232.109375 C 160.433594 232.109375 160.339844 232.203125 160.339844 232.320312 C 160.339844 232.4375 160.433594 232.53125 160.550781 232.53125 C 160.667969 232.53125 160.761719 232.4375 160.761719 232.320312 Z M 160.761719 232.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.292969 232.363281 C 160.292969 232.246094 160.199219 232.152344 160.082031 232.152344 C 159.964844 232.152344 159.871094 232.246094 159.871094 232.363281 C 159.871094 232.480469 159.964844 232.574219 160.082031 232.574219 C 160.199219 232.574219 160.292969 232.480469 160.292969 232.363281 Z M 160.292969 232.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.527344 230.5625 C 159.527344 230.445312 159.433594 230.351562 159.316406 230.351562 C 159.199219 230.351562 159.105469 230.445312 159.105469 230.5625 C 159.105469 230.679688 159.199219 230.773438 159.316406 230.773438 C 159.433594 230.773438 159.527344 230.679688 159.527344 230.5625 Z M 159.527344 230.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.96875 229.414062 C 155.96875 229.296875 155.875 229.203125 155.757812 229.203125 C 155.640625 229.203125 155.546875 229.296875 155.546875 229.414062 C 155.546875 229.53125 155.640625 229.625 155.757812 229.625 C 155.875 229.625 155.96875 229.53125 155.96875 229.414062 Z M 155.96875 229.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.972656 229.949219 C 152.972656 229.832031 152.878906 229.738281 152.761719 229.738281 C 152.644531 229.738281 152.550781 229.832031 152.550781 229.949219 C 152.550781 230.066406 152.644531 230.160156 152.761719 230.160156 C 152.878906 230.160156 152.972656 230.066406 152.972656 229.949219 Z M 152.972656 229.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.265625 230.738281 C 153.265625 230.621094 153.171875 230.527344 153.054688 230.527344 C 152.9375 230.527344 152.84375 230.621094 152.84375 230.738281 C 152.84375 230.855469 152.9375 230.949219 153.054688 230.949219 C 153.171875 230.949219 153.265625 230.855469 153.265625 230.738281 Z M 153.265625 230.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.601562 227.207031 C 152.601562 227.089844 152.507812 226.996094 152.390625 226.996094 C 152.273438 226.996094 152.179688 227.089844 152.179688 227.207031 C 152.179688 227.324219 152.273438 227.417969 152.390625 227.417969 C 152.507812 227.417969 152.601562 227.324219 152.601562 227.207031 Z M 152.601562 227.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.339844 228.144531 C 151.339844 228.027344 151.246094 227.933594 151.128906 227.933594 C 151.011719 227.933594 150.917969 228.027344 150.917969 228.144531 C 150.917969 228.261719 151.011719 228.355469 151.128906 228.355469 C 151.246094 228.355469 151.339844 228.261719 151.339844 228.144531 Z M 151.339844 228.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.011719 226.707031 C 150.011719 226.589844 149.917969 226.496094 149.800781 226.496094 C 149.683594 226.496094 149.589844 226.589844 149.589844 226.707031 C 149.589844 226.824219 149.683594 226.917969 149.800781 226.917969 C 149.917969 226.917969 150.011719 226.824219 150.011719 226.707031 Z M 150.011719 226.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.265625 228.664062 C 144.265625 228.546875 144.171875 228.453125 144.054688 228.453125 C 143.9375 228.453125 143.84375 228.546875 143.84375 228.664062 C 143.84375 228.78125 143.9375 228.875 144.054688 228.875 C 144.171875 228.875 144.265625 228.78125 144.265625 228.664062 Z M 144.265625 228.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.042969 228.425781 C 142.042969 228.308594 141.949219 228.214844 141.832031 228.214844 C 141.714844 228.214844 141.621094 228.308594 141.621094 228.425781 C 141.621094 228.542969 141.714844 228.636719 141.832031 228.636719 C 141.949219 228.636719 142.042969 228.542969 142.042969 228.425781 Z M 142.042969 228.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.640625 227.710938 C 143.640625 227.59375 143.546875 227.5 143.429688 227.5 C 143.3125 227.5 143.21875 227.59375 143.21875 227.710938 C 143.21875 227.828125 143.3125 227.921875 143.429688 227.921875 C 143.546875 227.921875 143.640625 227.828125 143.640625 227.710938 Z M 143.640625 227.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.59375 229.628906 C 143.59375 229.511719 143.5 229.417969 143.382812 229.417969 C 143.265625 229.417969 143.171875 229.511719 143.171875 229.628906 C 143.171875 229.746094 143.265625 229.839844 143.382812 229.839844 C 143.5 229.839844 143.59375 229.746094 143.59375 229.628906 Z M 143.59375 229.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.5 234.058594 C 145.5 233.941406 145.40625 233.847656 145.289062 233.847656 C 145.171875 233.847656 145.078125 233.941406 145.078125 234.058594 C 145.078125 234.175781 145.171875 234.269531 145.289062 234.269531 C 145.40625 234.269531 145.5 234.175781 145.5 234.058594 Z M 145.5 234.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.917969 235.046875 C 143.917969 234.929688 143.824219 234.835938 143.707031 234.835938 C 143.589844 234.835938 143.496094 234.929688 143.496094 235.046875 C 143.496094 235.164062 143.589844 235.257812 143.707031 235.257812 C 143.824219 235.257812 143.917969 235.164062 143.917969 235.046875 Z M 143.917969 235.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.445312 234.417969 C 143.445312 234.300781 143.351562 234.207031 143.234375 234.207031 C 143.117188 234.207031 143.023438 234.300781 143.023438 234.417969 C 143.023438 234.535156 143.117188 234.628906 143.234375 234.628906 C 143.351562 234.628906 143.445312 234.535156 143.445312 234.417969 Z M 143.445312 234.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.0625 234.335938 C 143.0625 234.21875 142.96875 234.125 142.851562 234.125 C 142.734375 234.125 142.640625 234.21875 142.640625 234.335938 C 142.640625 234.453125 142.734375 234.546875 142.851562 234.546875 C 142.96875 234.546875 143.0625 234.453125 143.0625 234.335938 Z M 143.0625 234.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.859375 232.945312 C 145.859375 232.828125 145.765625 232.734375 145.648438 232.734375 C 145.53125 232.734375 145.4375 232.828125 145.4375 232.945312 C 145.4375 233.0625 145.53125 233.15625 145.648438 233.15625 C 145.765625 233.15625 145.859375 233.0625 145.859375 232.945312 Z M 145.859375 232.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.242188 237.15625 C 145.242188 237.039062 145.148438 236.945312 145.03125 236.945312 C 144.914062 236.945312 144.820312 237.039062 144.820312 237.15625 C 144.820312 237.273438 144.914062 237.367188 145.03125 237.367188 C 145.148438 237.367188 145.242188 237.273438 145.242188 237.15625 Z M 145.242188 237.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.304688 238.789062 C 144.304688 238.671875 144.210938 238.578125 144.09375 238.578125 C 143.976562 238.578125 143.882812 238.671875 143.882812 238.789062 C 143.882812 238.90625 143.976562 239 144.09375 239 C 144.210938 239 144.304688 238.90625 144.304688 238.789062 Z M 144.304688 238.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.117188 237.101562 C 143.117188 236.984375 143.023438 236.890625 142.90625 236.890625 C 142.789062 236.890625 142.695312 236.984375 142.695312 237.101562 C 142.695312 237.21875 142.789062 237.3125 142.90625 237.3125 C 143.023438 237.3125 143.117188 237.21875 143.117188 237.101562 Z M 143.117188 237.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.4375 233.738281 C 146.4375 233.621094 146.34375 233.527344 146.226562 233.527344 C 146.109375 233.527344 146.015625 233.621094 146.015625 233.738281 C 146.015625 233.855469 146.109375 233.949219 146.226562 233.949219 C 146.34375 233.949219 146.4375 233.855469 146.4375 233.738281 Z M 146.4375 233.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.914062 234.324219 C 149.914062 234.207031 149.820312 234.113281 149.703125 234.113281 C 149.585938 234.113281 149.492188 234.207031 149.492188 234.324219 C 149.492188 234.441406 149.585938 234.535156 149.703125 234.535156 C 149.820312 234.535156 149.914062 234.441406 149.914062 234.324219 Z M 149.914062 234.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.363281 233.859375 C 147.363281 233.742188 147.269531 233.648438 147.152344 233.648438 C 147.035156 233.648438 146.941406 233.742188 146.941406 233.859375 C 146.941406 233.976562 147.035156 234.070312 147.152344 234.070312 C 147.269531 234.070312 147.363281 233.976562 147.363281 233.859375 Z M 147.363281 233.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.605469 234.085938 C 144.605469 233.96875 144.511719 233.875 144.394531 233.875 C 144.277344 233.875 144.183594 233.96875 144.183594 234.085938 C 144.183594 234.203125 144.277344 234.296875 144.394531 234.296875 C 144.511719 234.296875 144.605469 234.203125 144.605469 234.085938 Z M 144.605469 234.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.273438 237.34375 C 143.273438 237.226562 143.179688 237.132812 143.0625 237.132812 C 142.945312 237.132812 142.851562 237.226562 142.851562 237.34375 C 142.851562 237.460938 142.945312 237.554688 143.0625 237.554688 C 143.179688 237.554688 143.273438 237.460938 143.273438 237.34375 Z M 143.273438 237.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.8125 240.609375 C 141.8125 240.492188 141.71875 240.398438 141.601562 240.398438 C 141.484375 240.398438 141.390625 240.492188 141.390625 240.609375 C 141.390625 240.726562 141.484375 240.820312 141.601562 240.820312 C 141.71875 240.820312 141.8125 240.726562 141.8125 240.609375 Z M 141.8125 240.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.046875 244.742188 C 146.046875 244.625 145.953125 244.53125 145.835938 244.53125 C 145.71875 244.53125 145.625 244.625 145.625 244.742188 C 145.625 244.859375 145.71875 244.953125 145.835938 244.953125 C 145.953125 244.953125 146.046875 244.859375 146.046875 244.742188 Z M 146.046875 244.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.175781 244.898438 C 144.175781 244.78125 144.082031 244.6875 143.964844 244.6875 C 143.847656 244.6875 143.753906 244.78125 143.753906 244.898438 C 143.753906 245.015625 143.847656 245.109375 143.964844 245.109375 C 144.082031 245.109375 144.175781 245.015625 144.175781 244.898438 Z M 144.175781 244.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.734375 244.414062 C 144.734375 244.296875 144.640625 244.203125 144.523438 244.203125 C 144.40625 244.203125 144.3125 244.296875 144.3125 244.414062 C 144.3125 244.53125 144.40625 244.625 144.523438 244.625 C 144.640625 244.625 144.734375 244.53125 144.734375 244.414062 Z M 144.734375 244.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.980469 245.363281 C 146.980469 245.246094 146.886719 245.152344 146.769531 245.152344 C 146.652344 245.152344 146.558594 245.246094 146.558594 245.363281 C 146.558594 245.480469 146.652344 245.574219 146.769531 245.574219 C 146.886719 245.574219 146.980469 245.480469 146.980469 245.363281 Z M 146.980469 245.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.71875 246.632812 C 147.71875 246.515625 147.625 246.421875 147.507812 246.421875 C 147.390625 246.421875 147.296875 246.515625 147.296875 246.632812 C 147.296875 246.75 147.390625 246.84375 147.507812 246.84375 C 147.625 246.84375 147.71875 246.75 147.71875 246.632812 Z M 147.71875 246.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.988281 242.117188 C 147.988281 242 147.894531 241.90625 147.777344 241.90625 C 147.660156 241.90625 147.566406 242 147.566406 242.117188 C 147.566406 242.234375 147.660156 242.328125 147.777344 242.328125 C 147.894531 242.328125 147.988281 242.234375 147.988281 242.117188 Z M 147.988281 242.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.195312 246.359375 C 145.195312 246.242188 145.101562 246.148438 144.984375 246.148438 C 144.867188 246.148438 144.773438 246.242188 144.773438 246.359375 C 144.773438 246.476562 144.867188 246.570312 144.984375 246.570312 C 145.101562 246.570312 145.195312 246.476562 145.195312 246.359375 Z M 145.195312 246.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.976562 243.878906 C 143.976562 243.761719 143.882812 243.667969 143.765625 243.667969 C 143.648438 243.667969 143.554688 243.761719 143.554688 243.878906 C 143.554688 243.996094 143.648438 244.089844 143.765625 244.089844 C 143.882812 244.089844 143.976562 243.996094 143.976562 243.878906 Z M 143.976562 243.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.605469 244.191406 C 144.605469 244.074219 144.511719 243.980469 144.394531 243.980469 C 144.277344 243.980469 144.183594 244.074219 144.183594 244.191406 C 144.183594 244.308594 144.277344 244.402344 144.394531 244.402344 C 144.511719 244.402344 144.605469 244.308594 144.605469 244.191406 Z M 144.605469 244.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.945312 246.792969 C 144.945312 246.675781 144.851562 246.582031 144.734375 246.582031 C 144.617188 246.582031 144.523438 246.675781 144.523438 246.792969 C 144.523438 246.910156 144.617188 247.003906 144.734375 247.003906 C 144.851562 247.003906 144.945312 246.910156 144.945312 246.792969 Z M 144.945312 246.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.699219 244.65625 C 141.699219 244.539062 141.605469 244.445312 141.488281 244.445312 C 141.371094 244.445312 141.277344 244.539062 141.277344 244.65625 C 141.277344 244.773438 141.371094 244.867188 141.488281 244.867188 C 141.605469 244.867188 141.699219 244.773438 141.699219 244.65625 Z M 141.699219 244.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.128906 244.941406 C 142.128906 244.824219 142.035156 244.730469 141.917969 244.730469 C 141.800781 244.730469 141.707031 244.824219 141.707031 244.941406 C 141.707031 245.058594 141.800781 245.152344 141.917969 245.152344 C 142.035156 245.152344 142.128906 245.058594 142.128906 244.941406 Z M 142.128906 244.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.664062 245.714844 C 145.664062 245.597656 145.570312 245.503906 145.453125 245.503906 C 145.335938 245.503906 145.242188 245.597656 145.242188 245.714844 C 145.242188 245.832031 145.335938 245.925781 145.453125 245.925781 C 145.570312 245.925781 145.664062 245.832031 145.664062 245.714844 Z M 145.664062 245.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.667969 243.050781 C 148.667969 242.933594 148.574219 242.839844 148.457031 242.839844 C 148.339844 242.839844 148.246094 242.933594 148.246094 243.050781 C 148.246094 243.167969 148.339844 243.261719 148.457031 243.261719 C 148.574219 243.261719 148.667969 243.167969 148.667969 243.050781 Z M 148.667969 243.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.929688 242.949219 C 141.929688 242.832031 141.835938 242.738281 141.71875 242.738281 C 141.601562 242.738281 141.507812 242.832031 141.507812 242.949219 C 141.507812 243.066406 141.601562 243.160156 141.71875 243.160156 C 141.835938 243.160156 141.929688 243.066406 141.929688 242.949219 Z M 141.929688 242.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.691406 240.617188 C 143.691406 240.5 143.597656 240.40625 143.480469 240.40625 C 143.363281 240.40625 143.269531 240.5 143.269531 240.617188 C 143.269531 240.734375 143.363281 240.828125 143.480469 240.828125 C 143.597656 240.828125 143.691406 240.734375 143.691406 240.617188 Z M 143.691406 240.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.808594 235.929688 C 144.808594 235.8125 144.714844 235.71875 144.597656 235.71875 C 144.480469 235.71875 144.386719 235.8125 144.386719 235.929688 C 144.386719 236.046875 144.480469 236.140625 144.597656 236.140625 C 144.714844 236.140625 144.808594 236.046875 144.808594 235.929688 Z M 144.808594 235.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.183594 237.292969 C 146.183594 237.175781 146.089844 237.082031 145.972656 237.082031 C 145.855469 237.082031 145.761719 237.175781 145.761719 237.292969 C 145.761719 237.410156 145.855469 237.503906 145.972656 237.503906 C 146.089844 237.503906 146.183594 237.410156 146.183594 237.292969 Z M 146.183594 237.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.441406 238.316406 C 148.441406 238.199219 148.347656 238.105469 148.230469 238.105469 C 148.113281 238.105469 148.019531 238.199219 148.019531 238.316406 C 148.019531 238.433594 148.113281 238.527344 148.230469 238.527344 C 148.347656 238.527344 148.441406 238.433594 148.441406 238.316406 Z M 148.441406 238.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.242188 237.828125 C 150.242188 237.710938 150.148438 237.617188 150.03125 237.617188 C 149.914062 237.617188 149.820312 237.710938 149.820312 237.828125 C 149.820312 237.945312 149.914062 238.039062 150.03125 238.039062 C 150.148438 238.039062 150.242188 237.945312 150.242188 237.828125 Z M 150.242188 237.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.722656 234.585938 C 150.722656 234.46875 150.628906 234.375 150.511719 234.375 C 150.394531 234.375 150.300781 234.46875 150.300781 234.585938 C 150.300781 234.703125 150.394531 234.796875 150.511719 234.796875 C 150.628906 234.796875 150.722656 234.703125 150.722656 234.585938 Z M 150.722656 234.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.027344 237.316406 C 153.027344 237.199219 152.933594 237.105469 152.816406 237.105469 C 152.699219 237.105469 152.605469 237.199219 152.605469 237.316406 C 152.605469 237.433594 152.699219 237.527344 152.816406 237.527344 C 152.933594 237.527344 153.027344 237.433594 153.027344 237.316406 Z M 153.027344 237.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.882812 239.40625 C 151.882812 239.289062 151.789062 239.195312 151.671875 239.195312 C 151.554688 239.195312 151.460938 239.289062 151.460938 239.40625 C 151.460938 239.523438 151.554688 239.617188 151.671875 239.617188 C 151.789062 239.617188 151.882812 239.523438 151.882812 239.40625 Z M 151.882812 239.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.253906 244.261719 C 155.253906 244.144531 155.160156 244.050781 155.042969 244.050781 C 154.925781 244.050781 154.832031 244.144531 154.832031 244.261719 C 154.832031 244.378906 154.925781 244.472656 155.042969 244.472656 C 155.160156 244.472656 155.253906 244.378906 155.253906 244.261719 Z M 155.253906 244.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.8125 246.152344 C 155.8125 246.035156 155.71875 245.941406 155.601562 245.941406 C 155.484375 245.941406 155.390625 246.035156 155.390625 246.152344 C 155.390625 246.269531 155.484375 246.363281 155.601562 246.363281 C 155.71875 246.363281 155.8125 246.269531 155.8125 246.152344 Z M 155.8125 246.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.851562 248.851562 C 158.851562 248.734375 158.757812 248.640625 158.640625 248.640625 C 158.523438 248.640625 158.429688 248.734375 158.429688 248.851562 C 158.429688 248.96875 158.523438 249.0625 158.640625 249.0625 C 158.757812 249.0625 158.851562 248.96875 158.851562 248.851562 Z M 158.851562 248.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.257812 243.539062 C 161.257812 243.421875 161.164062 243.328125 161.046875 243.328125 C 160.929688 243.328125 160.835938 243.421875 160.835938 243.539062 C 160.835938 243.65625 160.929688 243.75 161.046875 243.75 C 161.164062 243.75 161.257812 243.65625 161.257812 243.539062 Z M 161.257812 243.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.617188 242.363281 C 160.617188 242.246094 160.523438 242.152344 160.40625 242.152344 C 160.289062 242.152344 160.195312 242.246094 160.195312 242.363281 C 160.195312 242.480469 160.289062 242.574219 160.40625 242.574219 C 160.523438 242.574219 160.617188 242.480469 160.617188 242.363281 Z M 160.617188 242.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.734375 242.230469 C 158.734375 242.113281 158.640625 242.019531 158.523438 242.019531 C 158.40625 242.019531 158.3125 242.113281 158.3125 242.230469 C 158.3125 242.347656 158.40625 242.441406 158.523438 242.441406 C 158.640625 242.441406 158.734375 242.347656 158.734375 242.230469 Z M 158.734375 242.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.9375 240.289062 C 159.9375 240.171875 159.84375 240.078125 159.726562 240.078125 C 159.609375 240.078125 159.515625 240.171875 159.515625 240.289062 C 159.515625 240.40625 159.609375 240.5 159.726562 240.5 C 159.84375 240.5 159.9375 240.40625 159.9375 240.289062 Z M 159.9375 240.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.8125 241.0625 C 159.8125 240.945312 159.71875 240.851562 159.601562 240.851562 C 159.484375 240.851562 159.390625 240.945312 159.390625 241.0625 C 159.390625 241.179688 159.484375 241.273438 159.601562 241.273438 C 159.71875 241.273438 159.8125 241.179688 159.8125 241.0625 Z M 159.8125 241.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.484375 239.335938 C 162.484375 239.21875 162.390625 239.125 162.273438 239.125 C 162.15625 239.125 162.0625 239.21875 162.0625 239.335938 C 162.0625 239.453125 162.15625 239.546875 162.273438 239.546875 C 162.390625 239.546875 162.484375 239.453125 162.484375 239.335938 Z M 162.484375 239.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.625 240.230469 C 160.625 240.113281 160.53125 240.019531 160.414062 240.019531 C 160.296875 240.019531 160.203125 240.113281 160.203125 240.230469 C 160.203125 240.347656 160.296875 240.441406 160.414062 240.441406 C 160.53125 240.441406 160.625 240.347656 160.625 240.230469 Z M 160.625 240.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.824219 241.238281 C 163.824219 241.121094 163.730469 241.027344 163.613281 241.027344 C 163.496094 241.027344 163.402344 241.121094 163.402344 241.238281 C 163.402344 241.355469 163.496094 241.449219 163.613281 241.449219 C 163.730469 241.449219 163.824219 241.355469 163.824219 241.238281 Z M 163.824219 241.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.335938 245.160156 C 169.335938 245.042969 169.242188 244.949219 169.125 244.949219 C 169.007812 244.949219 168.914062 245.042969 168.914062 245.160156 C 168.914062 245.277344 169.007812 245.371094 169.125 245.371094 C 169.242188 245.371094 169.335938 245.277344 169.335938 245.160156 Z M 169.335938 245.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.941406 240.941406 C 172.941406 240.824219 172.847656 240.730469 172.730469 240.730469 C 172.613281 240.730469 172.519531 240.824219 172.519531 240.941406 C 172.519531 241.058594 172.613281 241.152344 172.730469 241.152344 C 172.847656 241.152344 172.941406 241.058594 172.941406 240.941406 Z M 172.941406 240.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.554688 239.933594 C 171.554688 239.816406 171.460938 239.722656 171.34375 239.722656 C 171.226562 239.722656 171.132812 239.816406 171.132812 239.933594 C 171.132812 240.050781 171.226562 240.144531 171.34375 240.144531 C 171.460938 240.144531 171.554688 240.050781 171.554688 239.933594 Z M 171.554688 239.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.90625 240.375 C 169.90625 240.257812 169.8125 240.164062 169.695312 240.164062 C 169.578125 240.164062 169.484375 240.257812 169.484375 240.375 C 169.484375 240.492188 169.578125 240.585938 169.695312 240.585938 C 169.8125 240.585938 169.90625 240.492188 169.90625 240.375 Z M 169.90625 240.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.183594 242.613281 C 172.183594 242.496094 172.089844 242.402344 171.972656 242.402344 C 171.855469 242.402344 171.761719 242.496094 171.761719 242.613281 C 171.761719 242.730469 171.855469 242.824219 171.972656 242.824219 C 172.089844 242.824219 172.183594 242.730469 172.183594 242.613281 Z M 172.183594 242.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.402344 243.019531 C 171.402344 242.902344 171.308594 242.808594 171.191406 242.808594 C 171.074219 242.808594 170.980469 242.902344 170.980469 243.019531 C 170.980469 243.136719 171.074219 243.230469 171.191406 243.230469 C 171.308594 243.230469 171.402344 243.136719 171.402344 243.019531 Z M 171.402344 243.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.824219 248.417969 C 172.824219 248.300781 172.730469 248.207031 172.613281 248.207031 C 172.496094 248.207031 172.402344 248.300781 172.402344 248.417969 C 172.402344 248.535156 172.496094 248.628906 172.613281 248.628906 C 172.730469 248.628906 172.824219 248.535156 172.824219 248.417969 Z M 172.824219 248.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.804688 249.234375 C 171.804688 249.117188 171.710938 249.023438 171.59375 249.023438 C 171.476562 249.023438 171.382812 249.117188 171.382812 249.234375 C 171.382812 249.351562 171.476562 249.445312 171.59375 249.445312 C 171.710938 249.445312 171.804688 249.351562 171.804688 249.234375 Z M 171.804688 249.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.996094 248.417969 C 170.996094 248.300781 170.902344 248.207031 170.785156 248.207031 C 170.667969 248.207031 170.574219 248.300781 170.574219 248.417969 C 170.574219 248.535156 170.667969 248.628906 170.785156 248.628906 C 170.902344 248.628906 170.996094 248.535156 170.996094 248.417969 Z M 170.996094 248.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.03125 245.238281 C 171.03125 245.121094 170.9375 245.027344 170.820312 245.027344 C 170.703125 245.027344 170.609375 245.121094 170.609375 245.238281 C 170.609375 245.355469 170.703125 245.449219 170.820312 245.449219 C 170.9375 245.449219 171.03125 245.355469 171.03125 245.238281 Z M 171.03125 245.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.59375 246.972656 C 169.59375 246.855469 169.5 246.761719 169.382812 246.761719 C 169.265625 246.761719 169.171875 246.855469 169.171875 246.972656 C 169.171875 247.089844 169.265625 247.183594 169.382812 247.183594 C 169.5 247.183594 169.59375 247.089844 169.59375 246.972656 Z M 169.59375 246.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.054688 245.054688 C 164.054688 244.9375 163.960938 244.84375 163.84375 244.84375 C 163.726562 244.84375 163.632812 244.9375 163.632812 245.054688 C 163.632812 245.171875 163.726562 245.265625 163.84375 245.265625 C 163.960938 245.265625 164.054688 245.171875 164.054688 245.054688 Z M 164.054688 245.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.597656 246.421875 C 166.597656 246.304688 166.503906 246.210938 166.386719 246.210938 C 166.269531 246.210938 166.175781 246.304688 166.175781 246.421875 C 166.175781 246.539062 166.269531 246.632812 166.386719 246.632812 C 166.503906 246.632812 166.597656 246.539062 166.597656 246.421875 Z M 166.597656 246.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.488281 249.660156 C 166.488281 249.542969 166.394531 249.449219 166.277344 249.449219 C 166.160156 249.449219 166.066406 249.542969 166.066406 249.660156 C 166.066406 249.777344 166.160156 249.871094 166.277344 249.871094 C 166.394531 249.871094 166.488281 249.777344 166.488281 249.660156 Z M 166.488281 249.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.722656 250.445312 C 167.722656 250.328125 167.628906 250.234375 167.511719 250.234375 C 167.394531 250.234375 167.300781 250.328125 167.300781 250.445312 C 167.300781 250.5625 167.394531 250.65625 167.511719 250.65625 C 167.628906 250.65625 167.722656 250.5625 167.722656 250.445312 Z M 167.722656 250.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.472656 251.746094 C 168.472656 251.628906 168.378906 251.535156 168.261719 251.535156 C 168.144531 251.535156 168.050781 251.628906 168.050781 251.746094 C 168.050781 251.863281 168.144531 251.957031 168.261719 251.957031 C 168.378906 251.957031 168.472656 251.863281 168.472656 251.746094 Z M 168.472656 251.746094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.65625 252.320312 C 170.65625 252.203125 170.5625 252.109375 170.445312 252.109375 C 170.328125 252.109375 170.234375 252.203125 170.234375 252.320312 C 170.234375 252.4375 170.328125 252.53125 170.445312 252.53125 C 170.5625 252.53125 170.65625 252.4375 170.65625 252.320312 Z M 170.65625 252.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.679688 257.308594 C 166.679688 257.191406 166.585938 257.097656 166.46875 257.097656 C 166.351562 257.097656 166.257812 257.191406 166.257812 257.308594 C 166.257812 257.425781 166.351562 257.519531 166.46875 257.519531 C 166.585938 257.519531 166.679688 257.425781 166.679688 257.308594 Z M 166.679688 257.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.804688 259.40625 C 163.804688 259.289062 163.710938 259.195312 163.59375 259.195312 C 163.476562 259.195312 163.382812 259.289062 163.382812 259.40625 C 163.382812 259.523438 163.476562 259.617188 163.59375 259.617188 C 163.710938 259.617188 163.804688 259.523438 163.804688 259.40625 Z M 163.804688 259.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.558594 260.148438 C 166.558594 260.03125 166.464844 259.9375 166.347656 259.9375 C 166.230469 259.9375 166.136719 260.03125 166.136719 260.148438 C 166.136719 260.265625 166.230469 260.359375 166.347656 260.359375 C 166.464844 260.359375 166.558594 260.265625 166.558594 260.148438 Z M 166.558594 260.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.652344 257.816406 C 165.652344 257.699219 165.558594 257.605469 165.441406 257.605469 C 165.324219 257.605469 165.230469 257.699219 165.230469 257.816406 C 165.230469 257.933594 165.324219 258.027344 165.441406 258.027344 C 165.558594 258.027344 165.652344 257.933594 165.652344 257.816406 Z M 165.652344 257.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166 257.074219 C 166 256.957031 165.90625 256.863281 165.789062 256.863281 C 165.671875 256.863281 165.578125 256.957031 165.578125 257.074219 C 165.578125 257.191406 165.671875 257.285156 165.789062 257.285156 C 165.90625 257.285156 166 257.191406 166 257.074219 Z M 166 257.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.558594 261.21875 C 168.558594 261.101562 168.464844 261.007812 168.347656 261.007812 C 168.230469 261.007812 168.136719 261.101562 168.136719 261.21875 C 168.136719 261.335938 168.230469 261.429688 168.347656 261.429688 C 168.464844 261.429688 168.558594 261.335938 168.558594 261.21875 Z M 168.558594 261.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.734375 260.632812 C 166.734375 260.515625 166.640625 260.421875 166.523438 260.421875 C 166.40625 260.421875 166.3125 260.515625 166.3125 260.632812 C 166.3125 260.75 166.40625 260.84375 166.523438 260.84375 C 166.640625 260.84375 166.734375 260.75 166.734375 260.632812 Z M 166.734375 260.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.640625 259.90625 C 166.640625 259.789062 166.546875 259.695312 166.429688 259.695312 C 166.3125 259.695312 166.21875 259.789062 166.21875 259.90625 C 166.21875 260.023438 166.3125 260.117188 166.429688 260.117188 C 166.546875 260.117188 166.640625 260.023438 166.640625 259.90625 Z M 166.640625 259.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.035156 257.453125 C 166.035156 257.335938 165.941406 257.242188 165.824219 257.242188 C 165.707031 257.242188 165.613281 257.335938 165.613281 257.453125 C 165.613281 257.570312 165.707031 257.664062 165.824219 257.664062 C 165.941406 257.664062 166.035156 257.570312 166.035156 257.453125 Z M 166.035156 257.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.246094 258.332031 C 163.246094 258.214844 163.152344 258.121094 163.035156 258.121094 C 162.917969 258.121094 162.824219 258.214844 162.824219 258.332031 C 162.824219 258.449219 162.917969 258.542969 163.035156 258.542969 C 163.152344 258.542969 163.246094 258.449219 163.246094 258.332031 Z M 163.246094 258.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.179688 259.625 C 161.179688 259.507812 161.085938 259.414062 160.96875 259.414062 C 160.851562 259.414062 160.757812 259.507812 160.757812 259.625 C 160.757812 259.742188 160.851562 259.835938 160.96875 259.835938 C 161.085938 259.835938 161.179688 259.742188 161.179688 259.625 Z M 161.179688 259.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.019531 259.21875 C 164.019531 259.101562 163.925781 259.007812 163.808594 259.007812 C 163.691406 259.007812 163.597656 259.101562 163.597656 259.21875 C 163.597656 259.335938 163.691406 259.429688 163.808594 259.429688 C 163.925781 259.429688 164.019531 259.335938 164.019531 259.21875 Z M 164.019531 259.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.945312 260.859375 C 165.945312 260.742188 165.851562 260.648438 165.734375 260.648438 C 165.617188 260.648438 165.523438 260.742188 165.523438 260.859375 C 165.523438 260.976562 165.617188 261.070312 165.734375 261.070312 C 165.851562 261.070312 165.945312 260.976562 165.945312 260.859375 Z M 165.945312 260.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.875 261.589844 C 162.875 261.472656 162.78125 261.378906 162.664062 261.378906 C 162.546875 261.378906 162.453125 261.472656 162.453125 261.589844 C 162.453125 261.707031 162.546875 261.800781 162.664062 261.800781 C 162.78125 261.800781 162.875 261.707031 162.875 261.589844 Z M 162.875 261.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.410156 261.648438 C 163.410156 261.53125 163.316406 261.4375 163.199219 261.4375 C 163.082031 261.4375 162.988281 261.53125 162.988281 261.648438 C 162.988281 261.765625 163.082031 261.859375 163.199219 261.859375 C 163.316406 261.859375 163.410156 261.765625 163.410156 261.648438 Z M 163.410156 261.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.652344 259.203125 C 168.652344 259.085938 168.558594 258.992188 168.441406 258.992188 C 168.324219 258.992188 168.230469 259.085938 168.230469 259.203125 C 168.230469 259.320312 168.324219 259.414062 168.441406 259.414062 C 168.558594 259.414062 168.652344 259.320312 168.652344 259.203125 Z M 168.652344 259.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.691406 262.214844 C 168.691406 262.097656 168.597656 262.003906 168.480469 262.003906 C 168.363281 262.003906 168.269531 262.097656 168.269531 262.214844 C 168.269531 262.332031 168.363281 262.425781 168.480469 262.425781 C 168.597656 262.425781 168.691406 262.332031 168.691406 262.214844 Z M 168.691406 262.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.621094 263.773438 C 166.621094 263.65625 166.527344 263.5625 166.410156 263.5625 C 166.292969 263.5625 166.199219 263.65625 166.199219 263.773438 C 166.199219 263.890625 166.292969 263.984375 166.410156 263.984375 C 166.527344 263.984375 166.621094 263.890625 166.621094 263.773438 Z M 166.621094 263.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.527344 265.589844 C 167.527344 265.472656 167.433594 265.378906 167.316406 265.378906 C 167.199219 265.378906 167.105469 265.472656 167.105469 265.589844 C 167.105469 265.707031 167.199219 265.800781 167.316406 265.800781 C 167.433594 265.800781 167.527344 265.707031 167.527344 265.589844 Z M 167.527344 265.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.769531 266.921875 C 166.769531 266.804688 166.675781 266.710938 166.558594 266.710938 C 166.441406 266.710938 166.347656 266.804688 166.347656 266.921875 C 166.347656 267.039062 166.441406 267.132812 166.558594 267.132812 C 166.675781 267.132812 166.769531 267.039062 166.769531 266.921875 Z M 166.769531 266.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.988281 265.914062 C 166.988281 265.796875 166.894531 265.703125 166.777344 265.703125 C 166.660156 265.703125 166.566406 265.796875 166.566406 265.914062 C 166.566406 266.03125 166.660156 266.125 166.777344 266.125 C 166.894531 266.125 166.988281 266.03125 166.988281 265.914062 Z M 166.988281 265.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.660156 267.03125 C 164.660156 266.914062 164.566406 266.820312 164.449219 266.820312 C 164.332031 266.820312 164.238281 266.914062 164.238281 267.03125 C 164.238281 267.148438 164.332031 267.242188 164.449219 267.242188 C 164.566406 267.242188 164.660156 267.148438 164.660156 267.03125 Z M 164.660156 267.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.46875 267.300781 C 163.46875 267.183594 163.375 267.089844 163.257812 267.089844 C 163.140625 267.089844 163.046875 267.183594 163.046875 267.300781 C 163.046875 267.417969 163.140625 267.511719 163.257812 267.511719 C 163.375 267.511719 163.46875 267.417969 163.46875 267.300781 Z M 163.46875 267.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.140625 266.828125 C 163.140625 266.710938 163.046875 266.617188 162.929688 266.617188 C 162.8125 266.617188 162.71875 266.710938 162.71875 266.828125 C 162.71875 266.945312 162.8125 267.039062 162.929688 267.039062 C 163.046875 267.039062 163.140625 266.945312 163.140625 266.828125 Z M 163.140625 266.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.011719 263.355469 C 164.011719 263.238281 163.917969 263.144531 163.800781 263.144531 C 163.683594 263.144531 163.589844 263.238281 163.589844 263.355469 C 163.589844 263.472656 163.683594 263.566406 163.800781 263.566406 C 163.917969 263.566406 164.011719 263.472656 164.011719 263.355469 Z M 164.011719 263.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.949219 264.015625 C 168.949219 263.898438 168.855469 263.804688 168.738281 263.804688 C 168.621094 263.804688 168.527344 263.898438 168.527344 264.015625 C 168.527344 264.132812 168.621094 264.226562 168.738281 264.226562 C 168.855469 264.226562 168.949219 264.132812 168.949219 264.015625 Z M 168.949219 264.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.738281 262.871094 C 170.738281 262.753906 170.644531 262.660156 170.527344 262.660156 C 170.410156 262.660156 170.316406 262.753906 170.316406 262.871094 C 170.316406 262.988281 170.410156 263.082031 170.527344 263.082031 C 170.644531 263.082031 170.738281 262.988281 170.738281 262.871094 Z M 170.738281 262.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.46875 263.195312 C 172.46875 263.078125 172.375 262.984375 172.257812 262.984375 C 172.140625 262.984375 172.046875 263.078125 172.046875 263.195312 C 172.046875 263.3125 172.140625 263.40625 172.257812 263.40625 C 172.375 263.40625 172.46875 263.3125 172.46875 263.195312 Z M 172.46875 263.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.9375 261.582031 C 174.9375 261.464844 174.84375 261.371094 174.726562 261.371094 C 174.609375 261.371094 174.515625 261.464844 174.515625 261.582031 C 174.515625 261.699219 174.609375 261.792969 174.726562 261.792969 C 174.84375 261.792969 174.9375 261.699219 174.9375 261.582031 Z M 174.9375 261.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.082031 261.757812 C 178.082031 261.640625 177.988281 261.546875 177.871094 261.546875 C 177.753906 261.546875 177.660156 261.640625 177.660156 261.757812 C 177.660156 261.875 177.753906 261.96875 177.871094 261.96875 C 177.988281 261.96875 178.082031 261.875 178.082031 261.757812 Z M 178.082031 261.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.945312 266.609375 C 175.945312 266.492188 175.851562 266.398438 175.734375 266.398438 C 175.617188 266.398438 175.523438 266.492188 175.523438 266.609375 C 175.523438 266.726562 175.617188 266.820312 175.734375 266.820312 C 175.851562 266.820312 175.945312 266.726562 175.945312 266.609375 Z M 175.945312 266.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.3125 268.847656 C 178.3125 268.730469 178.21875 268.636719 178.101562 268.636719 C 177.984375 268.636719 177.890625 268.730469 177.890625 268.847656 C 177.890625 268.964844 177.984375 269.058594 178.101562 269.058594 C 178.21875 269.058594 178.3125 268.964844 178.3125 268.847656 Z M 178.3125 268.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.804688 267.503906 C 173.804688 267.386719 173.710938 267.292969 173.59375 267.292969 C 173.476562 267.292969 173.382812 267.386719 173.382812 267.503906 C 173.382812 267.621094 173.476562 267.714844 173.59375 267.714844 C 173.710938 267.714844 173.804688 267.621094 173.804688 267.503906 Z M 173.804688 267.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.914062 265.269531 C 172.914062 265.152344 172.820312 265.058594 172.703125 265.058594 C 172.585938 265.058594 172.492188 265.152344 172.492188 265.269531 C 172.492188 265.386719 172.585938 265.480469 172.703125 265.480469 C 172.820312 265.480469 172.914062 265.386719 172.914062 265.269531 Z M 172.914062 265.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.726562 267.019531 C 176.726562 266.902344 176.632812 266.808594 176.515625 266.808594 C 176.398438 266.808594 176.304688 266.902344 176.304688 267.019531 C 176.304688 267.136719 176.398438 267.230469 176.515625 267.230469 C 176.632812 267.230469 176.726562 267.136719 176.726562 267.019531 Z M 176.726562 267.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.773438 265.785156 C 176.773438 265.667969 176.679688 265.574219 176.5625 265.574219 C 176.445312 265.574219 176.351562 265.667969 176.351562 265.785156 C 176.351562 265.902344 176.445312 265.996094 176.5625 265.996094 C 176.679688 265.996094 176.773438 265.902344 176.773438 265.785156 Z M 176.773438 265.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.214844 264.097656 C 175.214844 263.980469 175.121094 263.886719 175.003906 263.886719 C 174.886719 263.886719 174.792969 263.980469 174.792969 264.097656 C 174.792969 264.214844 174.886719 264.308594 175.003906 264.308594 C 175.121094 264.308594 175.214844 264.214844 175.214844 264.097656 Z M 175.214844 264.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.355469 266.335938 C 173.355469 266.21875 173.261719 266.125 173.144531 266.125 C 173.027344 266.125 172.933594 266.21875 172.933594 266.335938 C 172.933594 266.453125 173.027344 266.546875 173.144531 266.546875 C 173.261719 266.546875 173.355469 266.453125 173.355469 266.335938 Z M 173.355469 266.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.710938 265.292969 C 175.710938 265.175781 175.617188 265.082031 175.5 265.082031 C 175.382812 265.082031 175.289062 265.175781 175.289062 265.292969 C 175.289062 265.410156 175.382812 265.503906 175.5 265.503906 C 175.617188 265.503906 175.710938 265.410156 175.710938 265.292969 Z M 175.710938 265.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.136719 267.175781 C 176.136719 267.058594 176.042969 266.964844 175.925781 266.964844 C 175.808594 266.964844 175.714844 267.058594 175.714844 267.175781 C 175.714844 267.292969 175.808594 267.386719 175.925781 267.386719 C 176.042969 267.386719 176.136719 267.292969 176.136719 267.175781 Z M 176.136719 267.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.761719 267.449219 C 179.761719 267.332031 179.667969 267.238281 179.550781 267.238281 C 179.433594 267.238281 179.339844 267.332031 179.339844 267.449219 C 179.339844 267.566406 179.433594 267.660156 179.550781 267.660156 C 179.667969 267.660156 179.761719 267.566406 179.761719 267.449219 Z M 179.761719 267.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.550781 270.546875 C 179.550781 270.429688 179.457031 270.335938 179.339844 270.335938 C 179.222656 270.335938 179.128906 270.429688 179.128906 270.546875 C 179.128906 270.664062 179.222656 270.757812 179.339844 270.757812 C 179.457031 270.757812 179.550781 270.664062 179.550781 270.546875 Z M 179.550781 270.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.5625 270.132812 C 183.5625 270.015625 183.46875 269.921875 183.351562 269.921875 C 183.234375 269.921875 183.140625 270.015625 183.140625 270.132812 C 183.140625 270.25 183.234375 270.34375 183.351562 270.34375 C 183.46875 270.34375 183.5625 270.25 183.5625 270.132812 Z M 183.5625 270.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.9375 269.175781 C 180.9375 269.058594 180.84375 268.964844 180.726562 268.964844 C 180.609375 268.964844 180.515625 269.058594 180.515625 269.175781 C 180.515625 269.292969 180.609375 269.386719 180.726562 269.386719 C 180.84375 269.386719 180.9375 269.292969 180.9375 269.175781 Z M 180.9375 269.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.355469 271.851562 C 183.355469 271.734375 183.261719 271.640625 183.144531 271.640625 C 183.027344 271.640625 182.933594 271.734375 182.933594 271.851562 C 182.933594 271.96875 183.027344 272.0625 183.144531 272.0625 C 183.261719 272.0625 183.355469 271.96875 183.355469 271.851562 Z M 183.355469 271.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.957031 273.820312 C 182.957031 273.703125 182.863281 273.609375 182.746094 273.609375 C 182.628906 273.609375 182.535156 273.703125 182.535156 273.820312 C 182.535156 273.9375 182.628906 274.03125 182.746094 274.03125 C 182.863281 274.03125 182.957031 273.9375 182.957031 273.820312 Z M 182.957031 273.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.105469 273.210938 C 180.105469 273.09375 180.011719 273 179.894531 273 C 179.777344 273 179.683594 273.09375 179.683594 273.210938 C 179.683594 273.328125 179.777344 273.421875 179.894531 273.421875 C 180.011719 273.421875 180.105469 273.328125 180.105469 273.210938 Z M 180.105469 273.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.632812 275.601562 C 179.632812 275.484375 179.539062 275.390625 179.421875 275.390625 C 179.304688 275.390625 179.210938 275.484375 179.210938 275.601562 C 179.210938 275.71875 179.304688 275.8125 179.421875 275.8125 C 179.539062 275.8125 179.632812 275.71875 179.632812 275.601562 Z M 179.632812 275.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.644531 275.023438 C 181.644531 274.90625 181.550781 274.8125 181.433594 274.8125 C 181.316406 274.8125 181.222656 274.90625 181.222656 275.023438 C 181.222656 275.140625 181.316406 275.234375 181.433594 275.234375 C 181.550781 275.234375 181.644531 275.140625 181.644531 275.023438 Z M 181.644531 275.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.558594 271.800781 C 184.558594 271.683594 184.464844 271.589844 184.347656 271.589844 C 184.230469 271.589844 184.136719 271.683594 184.136719 271.800781 C 184.136719 271.917969 184.230469 272.011719 184.347656 272.011719 C 184.464844 272.011719 184.558594 271.917969 184.558594 271.800781 Z M 184.558594 271.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.09375 270.375 C 182.09375 270.257812 182 270.164062 181.882812 270.164062 C 181.765625 270.164062 181.671875 270.257812 181.671875 270.375 C 181.671875 270.492188 181.765625 270.585938 181.882812 270.585938 C 182 270.585938 182.09375 270.492188 182.09375 270.375 Z M 182.09375 270.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.925781 269.449219 C 181.925781 269.332031 181.832031 269.238281 181.714844 269.238281 C 181.597656 269.238281 181.503906 269.332031 181.503906 269.449219 C 181.503906 269.566406 181.597656 269.660156 181.714844 269.660156 C 181.832031 269.660156 181.925781 269.566406 181.925781 269.449219 Z M 181.925781 269.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.796875 268.019531 C 180.796875 267.902344 180.703125 267.808594 180.585938 267.808594 C 180.46875 267.808594 180.375 267.902344 180.375 268.019531 C 180.375 268.136719 180.46875 268.230469 180.585938 268.230469 C 180.703125 268.230469 180.796875 268.136719 180.796875 268.019531 Z M 180.796875 268.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.261719 267.503906 C 182.261719 267.386719 182.167969 267.292969 182.050781 267.292969 C 181.933594 267.292969 181.839844 267.386719 181.839844 267.503906 C 181.839844 267.621094 181.933594 267.714844 182.050781 267.714844 C 182.167969 267.714844 182.261719 267.621094 182.261719 267.503906 Z M 182.261719 267.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.128906 267.152344 C 181.128906 267.035156 181.035156 266.941406 180.917969 266.941406 C 180.800781 266.941406 180.707031 267.035156 180.707031 267.152344 C 180.707031 267.269531 180.800781 267.363281 180.917969 267.363281 C 181.035156 267.363281 181.128906 267.269531 181.128906 267.152344 Z M 181.128906 267.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.050781 263.375 C 182.050781 263.257812 181.957031 263.164062 181.839844 263.164062 C 181.722656 263.164062 181.628906 263.257812 181.628906 263.375 C 181.628906 263.492188 181.722656 263.585938 181.839844 263.585938 C 181.957031 263.585938 182.050781 263.492188 182.050781 263.375 Z M 182.050781 263.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.433594 265.410156 C 181.433594 265.292969 181.339844 265.199219 181.222656 265.199219 C 181.105469 265.199219 181.011719 265.292969 181.011719 265.410156 C 181.011719 265.527344 181.105469 265.621094 181.222656 265.621094 C 181.339844 265.621094 181.433594 265.527344 181.433594 265.410156 Z M 181.433594 265.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.234375 264.179688 C 179.234375 264.0625 179.140625 263.96875 179.023438 263.96875 C 178.90625 263.96875 178.8125 264.0625 178.8125 264.179688 C 178.8125 264.296875 178.90625 264.390625 179.023438 264.390625 C 179.140625 264.390625 179.234375 264.296875 179.234375 264.179688 Z M 179.234375 264.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.332031 260.460938 C 182.332031 260.34375 182.238281 260.25 182.121094 260.25 C 182.003906 260.25 181.910156 260.34375 181.910156 260.460938 C 181.910156 260.578125 182.003906 260.671875 182.121094 260.671875 C 182.238281 260.671875 182.332031 260.578125 182.332031 260.460938 Z M 182.332031 260.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.996094 260.136719 C 182.996094 260.019531 182.902344 259.925781 182.785156 259.925781 C 182.667969 259.925781 182.574219 260.019531 182.574219 260.136719 C 182.574219 260.253906 182.667969 260.347656 182.785156 260.347656 C 182.902344 260.347656 182.996094 260.253906 182.996094 260.136719 Z M 182.996094 260.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.429688 264.363281 C 185.429688 264.246094 185.335938 264.152344 185.21875 264.152344 C 185.101562 264.152344 185.007812 264.246094 185.007812 264.363281 C 185.007812 264.480469 185.101562 264.574219 185.21875 264.574219 C 185.335938 264.574219 185.429688 264.480469 185.429688 264.363281 Z M 185.429688 264.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.519531 264.078125 C 184.519531 263.960938 184.425781 263.867188 184.308594 263.867188 C 184.191406 263.867188 184.097656 263.960938 184.097656 264.078125 C 184.097656 264.195312 184.191406 264.289062 184.308594 264.289062 C 184.425781 264.289062 184.519531 264.195312 184.519531 264.078125 Z M 184.519531 264.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.046875 267.949219 C 185.046875 267.832031 184.953125 267.738281 184.835938 267.738281 C 184.71875 267.738281 184.625 267.832031 184.625 267.949219 C 184.625 268.066406 184.71875 268.160156 184.835938 268.160156 C 184.953125 268.160156 185.046875 268.066406 185.046875 267.949219 Z M 185.046875 267.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.734375 265.441406 C 184.734375 265.324219 184.640625 265.230469 184.523438 265.230469 C 184.40625 265.230469 184.3125 265.324219 184.3125 265.441406 C 184.3125 265.558594 184.40625 265.652344 184.523438 265.652344 C 184.640625 265.652344 184.734375 265.558594 184.734375 265.441406 Z M 184.734375 265.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.773438 265.449219 C 188.773438 265.332031 188.679688 265.238281 188.5625 265.238281 C 188.445312 265.238281 188.351562 265.332031 188.351562 265.449219 C 188.351562 265.566406 188.445312 265.660156 188.5625 265.660156 C 188.679688 265.660156 188.773438 265.566406 188.773438 265.449219 Z M 188.773438 265.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.566406 267.214844 C 187.566406 267.097656 187.472656 267.003906 187.355469 267.003906 C 187.238281 267.003906 187.144531 267.097656 187.144531 267.214844 C 187.144531 267.332031 187.238281 267.425781 187.355469 267.425781 C 187.472656 267.425781 187.566406 267.332031 187.566406 267.214844 Z M 187.566406 267.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.589844 268.460938 C 186.589844 268.34375 186.496094 268.25 186.378906 268.25 C 186.261719 268.25 186.167969 268.34375 186.167969 268.460938 C 186.167969 268.578125 186.261719 268.671875 186.378906 268.671875 C 186.496094 268.671875 186.589844 268.578125 186.589844 268.460938 Z M 186.589844 268.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.660156 267.203125 C 183.660156 267.085938 183.566406 266.992188 183.449219 266.992188 C 183.332031 266.992188 183.238281 267.085938 183.238281 267.203125 C 183.238281 267.320312 183.332031 267.414062 183.449219 267.414062 C 183.566406 267.414062 183.660156 267.320312 183.660156 267.203125 Z M 183.660156 267.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.472656 269.535156 C 186.472656 269.417969 186.378906 269.324219 186.261719 269.324219 C 186.144531 269.324219 186.050781 269.417969 186.050781 269.535156 C 186.050781 269.652344 186.144531 269.746094 186.261719 269.746094 C 186.378906 269.746094 186.472656 269.652344 186.472656 269.535156 Z M 186.472656 269.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.460938 269.761719 C 188.460938 269.644531 188.367188 269.550781 188.25 269.550781 C 188.132812 269.550781 188.039062 269.644531 188.039062 269.761719 C 188.039062 269.878906 188.132812 269.972656 188.25 269.972656 C 188.367188 269.972656 188.460938 269.878906 188.460938 269.761719 Z M 188.460938 269.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.265625 267.378906 C 187.265625 267.261719 187.171875 267.167969 187.054688 267.167969 C 186.9375 267.167969 186.84375 267.261719 186.84375 267.378906 C 186.84375 267.496094 186.9375 267.589844 187.054688 267.589844 C 187.171875 267.589844 187.265625 267.496094 187.265625 267.378906 Z M 187.265625 267.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.972656 268.347656 C 186.972656 268.230469 186.878906 268.136719 186.761719 268.136719 C 186.644531 268.136719 186.550781 268.230469 186.550781 268.347656 C 186.550781 268.464844 186.644531 268.558594 186.761719 268.558594 C 186.878906 268.558594 186.972656 268.464844 186.972656 268.347656 Z M 186.972656 268.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.574219 264.972656 C 187.574219 264.855469 187.480469 264.761719 187.363281 264.761719 C 187.246094 264.761719 187.152344 264.855469 187.152344 264.972656 C 187.152344 265.089844 187.246094 265.183594 187.363281 265.183594 C 187.480469 265.183594 187.574219 265.089844 187.574219 264.972656 Z M 187.574219 264.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.089844 266.390625 C 185.089844 266.273438 184.996094 266.179688 184.878906 266.179688 C 184.761719 266.179688 184.667969 266.273438 184.667969 266.390625 C 184.667969 266.507812 184.761719 266.601562 184.878906 266.601562 C 184.996094 266.601562 185.089844 266.507812 185.089844 266.390625 Z M 185.089844 266.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.625 266.859375 C 184.625 266.742188 184.53125 266.648438 184.414062 266.648438 C 184.296875 266.648438 184.203125 266.742188 184.203125 266.859375 C 184.203125 266.976562 184.296875 267.070312 184.414062 267.070312 C 184.53125 267.070312 184.625 266.976562 184.625 266.859375 Z M 184.625 266.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.011719 266.09375 C 181.011719 265.976562 180.917969 265.882812 180.800781 265.882812 C 180.683594 265.882812 180.589844 265.976562 180.589844 266.09375 C 180.589844 266.210938 180.683594 266.304688 180.800781 266.304688 C 180.917969 266.304688 181.011719 266.210938 181.011719 266.09375 Z M 181.011719 266.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.597656 269.132812 C 179.597656 269.015625 179.503906 268.921875 179.386719 268.921875 C 179.269531 268.921875 179.175781 269.015625 179.175781 269.132812 C 179.175781 269.25 179.269531 269.34375 179.386719 269.34375 C 179.503906 269.34375 179.597656 269.25 179.597656 269.132812 Z M 179.597656 269.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.050781 266.558594 C 178.050781 266.441406 177.957031 266.347656 177.839844 266.347656 C 177.722656 266.347656 177.628906 266.441406 177.628906 266.558594 C 177.628906 266.675781 177.722656 266.769531 177.839844 266.769531 C 177.957031 266.769531 178.050781 266.675781 178.050781 266.558594 Z M 178.050781 266.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.589844 270.695312 C 180.589844 270.578125 180.496094 270.484375 180.378906 270.484375 C 180.261719 270.484375 180.167969 270.578125 180.167969 270.695312 C 180.167969 270.8125 180.261719 270.90625 180.378906 270.90625 C 180.496094 270.90625 180.589844 270.8125 180.589844 270.695312 Z M 180.589844 270.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.316406 272.101562 C 179.316406 271.984375 179.222656 271.890625 179.105469 271.890625 C 178.988281 271.890625 178.894531 271.984375 178.894531 272.101562 C 178.894531 272.21875 178.988281 272.3125 179.105469 272.3125 C 179.222656 272.3125 179.316406 272.21875 179.316406 272.101562 Z M 179.316406 272.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.179688 269.855469 C 179.179688 269.738281 179.085938 269.644531 178.96875 269.644531 C 178.851562 269.644531 178.757812 269.738281 178.757812 269.855469 C 178.757812 269.972656 178.851562 270.066406 178.96875 270.066406 C 179.085938 270.066406 179.179688 269.972656 179.179688 269.855469 Z M 179.179688 269.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.886719 271.5 C 178.886719 271.382812 178.792969 271.289062 178.675781 271.289062 C 178.558594 271.289062 178.464844 271.382812 178.464844 271.5 C 178.464844 271.617188 178.558594 271.710938 178.675781 271.710938 C 178.792969 271.710938 178.886719 271.617188 178.886719 271.5 Z M 178.886719 271.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.882812 272.261719 C 174.882812 272.144531 174.789062 272.050781 174.671875 272.050781 C 174.554688 272.050781 174.460938 272.144531 174.460938 272.261719 C 174.460938 272.378906 174.554688 272.472656 174.671875 272.472656 C 174.789062 272.472656 174.882812 272.378906 174.882812 272.261719 Z M 174.882812 272.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.792969 275.394531 C 173.792969 275.277344 173.699219 275.183594 173.582031 275.183594 C 173.464844 275.183594 173.371094 275.277344 173.371094 275.394531 C 173.371094 275.511719 173.464844 275.605469 173.582031 275.605469 C 173.699219 275.605469 173.792969 275.511719 173.792969 275.394531 Z M 173.792969 275.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.136719 278.214844 C 174.136719 278.097656 174.042969 278.003906 173.925781 278.003906 C 173.808594 278.003906 173.714844 278.097656 173.714844 278.214844 C 173.714844 278.332031 173.808594 278.425781 173.925781 278.425781 C 174.042969 278.425781 174.136719 278.332031 174.136719 278.214844 Z M 174.136719 278.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.132812 278.015625 C 168.132812 277.898438 168.039062 277.804688 167.921875 277.804688 C 167.804688 277.804688 167.710938 277.898438 167.710938 278.015625 C 167.710938 278.132812 167.804688 278.226562 167.921875 278.226562 C 168.039062 278.226562 168.132812 278.132812 168.132812 278.015625 Z M 168.132812 278.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.398438 280.726562 C 168.398438 280.609375 168.304688 280.515625 168.1875 280.515625 C 168.070312 280.515625 167.976562 280.609375 167.976562 280.726562 C 167.976562 280.84375 168.070312 280.9375 168.1875 280.9375 C 168.304688 280.9375 168.398438 280.84375 168.398438 280.726562 Z M 168.398438 280.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.328125 279.679688 C 168.328125 279.5625 168.234375 279.46875 168.117188 279.46875 C 168 279.46875 167.90625 279.5625 167.90625 279.679688 C 167.90625 279.796875 168 279.890625 168.117188 279.890625 C 168.234375 279.890625 168.328125 279.796875 168.328125 279.679688 Z M 168.328125 279.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.820312 282.863281 C 167.820312 282.746094 167.726562 282.652344 167.609375 282.652344 C 167.492188 282.652344 167.398438 282.746094 167.398438 282.863281 C 167.398438 282.980469 167.492188 283.074219 167.609375 283.074219 C 167.726562 283.074219 167.820312 282.980469 167.820312 282.863281 Z M 167.820312 282.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.921875 278.960938 C 167.921875 278.84375 167.828125 278.75 167.710938 278.75 C 167.59375 278.75 167.5 278.84375 167.5 278.960938 C 167.5 279.078125 167.59375 279.171875 167.710938 279.171875 C 167.828125 279.171875 167.921875 279.078125 167.921875 278.960938 Z M 167.921875 278.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.171875 279.753906 C 169.171875 279.636719 169.078125 279.542969 168.960938 279.542969 C 168.84375 279.542969 168.75 279.636719 168.75 279.753906 C 168.75 279.871094 168.84375 279.964844 168.960938 279.964844 C 169.078125 279.964844 169.171875 279.871094 169.171875 279.753906 Z M 169.171875 279.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.925781 282.078125 C 167.925781 281.960938 167.832031 281.867188 167.714844 281.867188 C 167.597656 281.867188 167.503906 281.960938 167.503906 282.078125 C 167.503906 282.195312 167.597656 282.289062 167.714844 282.289062 C 167.832031 282.289062 167.925781 282.195312 167.925781 282.078125 Z M 167.925781 282.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.628906 279.183594 C 166.628906 279.066406 166.535156 278.972656 166.417969 278.972656 C 166.300781 278.972656 166.207031 279.066406 166.207031 279.183594 C 166.207031 279.300781 166.300781 279.394531 166.417969 279.394531 C 166.535156 279.394531 166.628906 279.300781 166.628906 279.183594 Z M 166.628906 279.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.578125 277.472656 C 164.578125 277.355469 164.484375 277.261719 164.367188 277.261719 C 164.25 277.261719 164.15625 277.355469 164.15625 277.472656 C 164.15625 277.589844 164.25 277.683594 164.367188 277.683594 C 164.484375 277.683594 164.578125 277.589844 164.578125 277.472656 Z M 164.578125 277.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.355469 278.597656 C 164.355469 278.480469 164.261719 278.386719 164.144531 278.386719 C 164.027344 278.386719 163.933594 278.480469 163.933594 278.597656 C 163.933594 278.714844 164.027344 278.808594 164.144531 278.808594 C 164.261719 278.808594 164.355469 278.714844 164.355469 278.597656 Z M 164.355469 278.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.882812 279.203125 C 168.882812 279.085938 168.789062 278.992188 168.671875 278.992188 C 168.554688 278.992188 168.460938 279.085938 168.460938 279.203125 C 168.460938 279.320312 168.554688 279.414062 168.671875 279.414062 C 168.789062 279.414062 168.882812 279.320312 168.882812 279.203125 Z M 168.882812 279.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.089844 279.003906 C 168.089844 278.886719 167.996094 278.792969 167.878906 278.792969 C 167.761719 278.792969 167.667969 278.886719 167.667969 279.003906 C 167.667969 279.121094 167.761719 279.214844 167.878906 279.214844 C 167.996094 279.214844 168.089844 279.121094 168.089844 279.003906 Z M 168.089844 279.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.546875 277.949219 C 167.546875 277.832031 167.453125 277.738281 167.335938 277.738281 C 167.21875 277.738281 167.125 277.832031 167.125 277.949219 C 167.125 278.066406 167.21875 278.160156 167.335938 278.160156 C 167.453125 278.160156 167.546875 278.066406 167.546875 277.949219 Z M 167.546875 277.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.867188 275.042969 C 165.867188 274.925781 165.773438 274.832031 165.65625 274.832031 C 165.539062 274.832031 165.445312 274.925781 165.445312 275.042969 C 165.445312 275.160156 165.539062 275.253906 165.65625 275.253906 C 165.773438 275.253906 165.867188 275.160156 165.867188 275.042969 Z M 165.867188 275.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.195312 277.589844 C 166.195312 277.472656 166.101562 277.378906 165.984375 277.378906 C 165.867188 277.378906 165.773438 277.472656 165.773438 277.589844 C 165.773438 277.707031 165.867188 277.800781 165.984375 277.800781 C 166.101562 277.800781 166.195312 277.707031 166.195312 277.589844 Z M 166.195312 277.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.914062 281.484375 C 164.914062 281.367188 164.820312 281.273438 164.703125 281.273438 C 164.585938 281.273438 164.492188 281.367188 164.492188 281.484375 C 164.492188 281.601562 164.585938 281.695312 164.703125 281.695312 C 164.820312 281.695312 164.914062 281.601562 164.914062 281.484375 Z M 164.914062 281.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.246094 283.757812 C 167.246094 283.640625 167.152344 283.546875 167.035156 283.546875 C 166.917969 283.546875 166.824219 283.640625 166.824219 283.757812 C 166.824219 283.875 166.917969 283.96875 167.035156 283.96875 C 167.152344 283.96875 167.246094 283.875 167.246094 283.757812 Z M 167.246094 283.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.394531 280.808594 C 167.394531 280.691406 167.300781 280.597656 167.183594 280.597656 C 167.066406 280.597656 166.972656 280.691406 166.972656 280.808594 C 166.972656 280.925781 167.066406 281.019531 167.183594 281.019531 C 167.300781 281.019531 167.394531 280.925781 167.394531 280.808594 Z M 167.394531 280.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.140625 277.617188 C 166.140625 277.5 166.046875 277.40625 165.929688 277.40625 C 165.8125 277.40625 165.71875 277.5 165.71875 277.617188 C 165.71875 277.734375 165.8125 277.828125 165.929688 277.828125 C 166.046875 277.828125 166.140625 277.734375 166.140625 277.617188 Z M 166.140625 277.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.125 278.636719 C 172.125 278.519531 172.03125 278.425781 171.914062 278.425781 C 171.796875 278.425781 171.703125 278.519531 171.703125 278.636719 C 171.703125 278.753906 171.796875 278.847656 171.914062 278.847656 C 172.03125 278.847656 172.125 278.753906 172.125 278.636719 Z M 172.125 278.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.816406 277.125 C 169.816406 277.007812 169.722656 276.914062 169.605469 276.914062 C 169.488281 276.914062 169.394531 277.007812 169.394531 277.125 C 169.394531 277.242188 169.488281 277.335938 169.605469 277.335938 C 169.722656 277.335938 169.816406 277.242188 169.816406 277.125 Z M 169.816406 277.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.367188 275.625 C 166.367188 275.507812 166.273438 275.414062 166.15625 275.414062 C 166.039062 275.414062 165.945312 275.507812 165.945312 275.625 C 165.945312 275.742188 166.039062 275.835938 166.15625 275.835938 C 166.273438 275.835938 166.367188 275.742188 166.367188 275.625 Z M 166.367188 275.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.65625 279.480469 C 167.65625 279.363281 167.5625 279.269531 167.445312 279.269531 C 167.328125 279.269531 167.234375 279.363281 167.234375 279.480469 C 167.234375 279.597656 167.328125 279.691406 167.445312 279.691406 C 167.5625 279.691406 167.65625 279.597656 167.65625 279.480469 Z M 167.65625 279.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.585938 277.941406 C 170.585938 277.824219 170.492188 277.730469 170.375 277.730469 C 170.257812 277.730469 170.164062 277.824219 170.164062 277.941406 C 170.164062 278.058594 170.257812 278.152344 170.375 278.152344 C 170.492188 278.152344 170.585938 278.058594 170.585938 277.941406 Z M 170.585938 277.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.222656 280.398438 C 170.222656 280.28125 170.128906 280.1875 170.011719 280.1875 C 169.894531 280.1875 169.800781 280.28125 169.800781 280.398438 C 169.800781 280.515625 169.894531 280.609375 170.011719 280.609375 C 170.128906 280.609375 170.222656 280.515625 170.222656 280.398438 Z M 170.222656 280.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.195312 278.824219 C 171.195312 278.707031 171.101562 278.613281 170.984375 278.613281 C 170.867188 278.613281 170.773438 278.707031 170.773438 278.824219 C 170.773438 278.941406 170.867188 279.035156 170.984375 279.035156 C 171.101562 279.035156 171.195312 278.941406 171.195312 278.824219 Z M 171.195312 278.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.992188 277.402344 C 172.992188 277.285156 172.898438 277.191406 172.78125 277.191406 C 172.664062 277.191406 172.570312 277.285156 172.570312 277.402344 C 172.570312 277.519531 172.664062 277.613281 172.78125 277.613281 C 172.898438 277.613281 172.992188 277.519531 172.992188 277.402344 Z M 172.992188 277.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.132812 277.585938 C 172.132812 277.46875 172.039062 277.375 171.921875 277.375 C 171.804688 277.375 171.710938 277.46875 171.710938 277.585938 C 171.710938 277.703125 171.804688 277.796875 171.921875 277.796875 C 172.039062 277.796875 172.132812 277.703125 172.132812 277.585938 Z M 172.132812 277.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.917969 274.835938 C 173.917969 274.71875 173.824219 274.625 173.707031 274.625 C 173.589844 274.625 173.496094 274.71875 173.496094 274.835938 C 173.496094 274.953125 173.589844 275.046875 173.707031 275.046875 C 173.824219 275.046875 173.917969 274.953125 173.917969 274.835938 Z M 173.917969 274.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.332031 273.027344 C 173.332031 272.910156 173.238281 272.816406 173.121094 272.816406 C 173.003906 272.816406 172.910156 272.910156 172.910156 273.027344 C 172.910156 273.144531 173.003906 273.238281 173.121094 273.238281 C 173.238281 273.238281 173.332031 273.144531 173.332031 273.027344 Z M 173.332031 273.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.054688 272.097656 C 172.054688 271.980469 171.960938 271.886719 171.84375 271.886719 C 171.726562 271.886719 171.632812 271.980469 171.632812 272.097656 C 171.632812 272.214844 171.726562 272.308594 171.84375 272.308594 C 171.960938 272.308594 172.054688 272.214844 172.054688 272.097656 Z M 172.054688 272.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.117188 271.777344 C 170.117188 271.660156 170.023438 271.566406 169.90625 271.566406 C 169.789062 271.566406 169.695312 271.660156 169.695312 271.777344 C 169.695312 271.894531 169.789062 271.988281 169.90625 271.988281 C 170.023438 271.988281 170.117188 271.894531 170.117188 271.777344 Z M 170.117188 271.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.917969 273.058594 C 170.917969 272.941406 170.824219 272.847656 170.707031 272.847656 C 170.589844 272.847656 170.496094 272.941406 170.496094 273.058594 C 170.496094 273.175781 170.589844 273.269531 170.707031 273.269531 C 170.824219 273.269531 170.917969 273.175781 170.917969 273.058594 Z M 170.917969 273.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.394531 272.933594 C 171.394531 272.816406 171.300781 272.722656 171.183594 272.722656 C 171.066406 272.722656 170.972656 272.816406 170.972656 272.933594 C 170.972656 273.050781 171.066406 273.144531 171.183594 273.144531 C 171.300781 273.144531 171.394531 273.050781 171.394531 272.933594 Z M 171.394531 272.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.125 277.671875 C 171.125 277.554688 171.03125 277.460938 170.914062 277.460938 C 170.796875 277.460938 170.703125 277.554688 170.703125 277.671875 C 170.703125 277.789062 170.796875 277.882812 170.914062 277.882812 C 171.03125 277.882812 171.125 277.789062 171.125 277.671875 Z M 171.125 277.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.265625 277.527344 C 173.265625 277.410156 173.171875 277.316406 173.054688 277.316406 C 172.9375 277.316406 172.84375 277.410156 172.84375 277.527344 C 172.84375 277.644531 172.9375 277.738281 173.054688 277.738281 C 173.171875 277.738281 173.265625 277.644531 173.265625 277.527344 Z M 173.265625 277.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.492188 276.570312 C 173.492188 276.453125 173.398438 276.359375 173.28125 276.359375 C 173.164062 276.359375 173.070312 276.453125 173.070312 276.570312 C 173.070312 276.6875 173.164062 276.78125 173.28125 276.78125 C 173.398438 276.78125 173.492188 276.6875 173.492188 276.570312 Z M 173.492188 276.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.382812 276.757812 C 169.382812 276.640625 169.289062 276.546875 169.171875 276.546875 C 169.054688 276.546875 168.960938 276.640625 168.960938 276.757812 C 168.960938 276.875 169.054688 276.96875 169.171875 276.96875 C 169.289062 276.96875 169.382812 276.875 169.382812 276.757812 Z M 169.382812 276.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.761719 274.054688 C 168.761719 273.9375 168.667969 273.84375 168.550781 273.84375 C 168.433594 273.84375 168.339844 273.9375 168.339844 274.054688 C 168.339844 274.171875 168.433594 274.265625 168.550781 274.265625 C 168.667969 274.265625 168.761719 274.171875 168.761719 274.054688 Z M 168.761719 274.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.003906 274.394531 C 170.003906 274.277344 169.910156 274.183594 169.792969 274.183594 C 169.675781 274.183594 169.582031 274.277344 169.582031 274.394531 C 169.582031 274.511719 169.675781 274.605469 169.792969 274.605469 C 169.910156 274.605469 170.003906 274.511719 170.003906 274.394531 Z M 170.003906 274.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.28125 271.632812 C 174.28125 271.515625 174.1875 271.421875 174.070312 271.421875 C 173.953125 271.421875 173.859375 271.515625 173.859375 271.632812 C 173.859375 271.75 173.953125 271.84375 174.070312 271.84375 C 174.1875 271.84375 174.28125 271.75 174.28125 271.632812 Z M 174.28125 271.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.585938 272.703125 C 171.585938 272.585938 171.492188 272.492188 171.375 272.492188 C 171.257812 272.492188 171.164062 272.585938 171.164062 272.703125 C 171.164062 272.820312 171.257812 272.914062 171.375 272.914062 C 171.492188 272.914062 171.585938 272.820312 171.585938 272.703125 Z M 171.585938 272.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.269531 271.582031 C 168.269531 271.464844 168.175781 271.371094 168.058594 271.371094 C 167.941406 271.371094 167.847656 271.464844 167.847656 271.582031 C 167.847656 271.699219 167.941406 271.792969 168.058594 271.792969 C 168.175781 271.792969 168.269531 271.699219 168.269531 271.582031 Z M 168.269531 271.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.800781 273.378906 C 166.800781 273.261719 166.707031 273.167969 166.589844 273.167969 C 166.472656 273.167969 166.378906 273.261719 166.378906 273.378906 C 166.378906 273.496094 166.472656 273.589844 166.589844 273.589844 C 166.707031 273.589844 166.800781 273.496094 166.800781 273.378906 Z M 166.800781 273.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.355469 266.804688 C 168.355469 266.6875 168.261719 266.59375 168.144531 266.59375 C 168.027344 266.59375 167.933594 266.6875 167.933594 266.804688 C 167.933594 266.921875 168.027344 267.015625 168.144531 267.015625 C 168.261719 267.015625 168.355469 266.921875 168.355469 266.804688 Z M 168.355469 266.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.035156 265.046875 C 168.035156 264.929688 167.941406 264.835938 167.824219 264.835938 C 167.707031 264.835938 167.613281 264.929688 167.613281 265.046875 C 167.613281 265.164062 167.707031 265.257812 167.824219 265.257812 C 167.941406 265.257812 168.035156 265.164062 168.035156 265.046875 Z M 168.035156 265.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.007812 263.976562 C 168.007812 263.859375 167.914062 263.765625 167.796875 263.765625 C 167.679688 263.765625 167.585938 263.859375 167.585938 263.976562 C 167.585938 264.09375 167.679688 264.1875 167.796875 264.1875 C 167.914062 264.1875 168.007812 264.09375 168.007812 263.976562 Z M 168.007812 263.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.882812 264.453125 C 164.882812 264.335938 164.789062 264.242188 164.671875 264.242188 C 164.554688 264.242188 164.460938 264.335938 164.460938 264.453125 C 164.460938 264.570312 164.554688 264.664062 164.671875 264.664062 C 164.789062 264.664062 164.882812 264.570312 164.882812 264.453125 Z M 164.882812 264.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.015625 267.679688 C 165.015625 267.5625 164.921875 267.46875 164.804688 267.46875 C 164.6875 267.46875 164.59375 267.5625 164.59375 267.679688 C 164.59375 267.796875 164.6875 267.890625 164.804688 267.890625 C 164.921875 267.890625 165.015625 267.796875 165.015625 267.679688 Z M 165.015625 267.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.160156 265.359375 C 164.160156 265.242188 164.066406 265.148438 163.949219 265.148438 C 163.832031 265.148438 163.738281 265.242188 163.738281 265.359375 C 163.738281 265.476562 163.832031 265.570312 163.949219 265.570312 C 164.066406 265.570312 164.160156 265.476562 164.160156 265.359375 Z M 164.160156 265.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.136719 261.441406 C 161.136719 261.324219 161.042969 261.230469 160.925781 261.230469 C 160.808594 261.230469 160.714844 261.324219 160.714844 261.441406 C 160.714844 261.558594 160.808594 261.652344 160.925781 261.652344 C 161.042969 261.652344 161.136719 261.558594 161.136719 261.441406 Z M 161.136719 261.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.429688 263.441406 C 162.429688 263.324219 162.335938 263.230469 162.21875 263.230469 C 162.101562 263.230469 162.007812 263.324219 162.007812 263.441406 C 162.007812 263.558594 162.101562 263.652344 162.21875 263.652344 C 162.335938 263.652344 162.429688 263.558594 162.429688 263.441406 Z M 162.429688 263.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.953125 259.527344 C 160.953125 259.410156 160.859375 259.316406 160.742188 259.316406 C 160.625 259.316406 160.53125 259.410156 160.53125 259.527344 C 160.53125 259.644531 160.625 259.738281 160.742188 259.738281 C 160.859375 259.738281 160.953125 259.644531 160.953125 259.527344 Z M 160.953125 259.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.128906 258.847656 C 163.128906 258.730469 163.035156 258.636719 162.917969 258.636719 C 162.800781 258.636719 162.707031 258.730469 162.707031 258.847656 C 162.707031 258.964844 162.800781 259.058594 162.917969 259.058594 C 163.035156 259.058594 163.128906 258.964844 163.128906 258.847656 Z M 163.128906 258.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.4375 258.953125 C 163.4375 258.835938 163.34375 258.742188 163.226562 258.742188 C 163.109375 258.742188 163.015625 258.835938 163.015625 258.953125 C 163.015625 259.070312 163.109375 259.164062 163.226562 259.164062 C 163.34375 259.164062 163.4375 259.070312 163.4375 258.953125 Z M 163.4375 258.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.355469 263.3125 C 160.355469 263.195312 160.261719 263.101562 160.144531 263.101562 C 160.027344 263.101562 159.933594 263.195312 159.933594 263.3125 C 159.933594 263.429688 160.027344 263.523438 160.144531 263.523438 C 160.261719 263.523438 160.355469 263.429688 160.355469 263.3125 Z M 160.355469 263.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.40625 258.476562 C 161.40625 258.359375 161.3125 258.265625 161.195312 258.265625 C 161.078125 258.265625 160.984375 258.359375 160.984375 258.476562 C 160.984375 258.59375 161.078125 258.6875 161.195312 258.6875 C 161.3125 258.6875 161.40625 258.59375 161.40625 258.476562 Z M 161.40625 258.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.46875 261.4375 C 163.46875 261.320312 163.375 261.226562 163.257812 261.226562 C 163.140625 261.226562 163.046875 261.320312 163.046875 261.4375 C 163.046875 261.554688 163.140625 261.648438 163.257812 261.648438 C 163.375 261.648438 163.46875 261.554688 163.46875 261.4375 Z M 163.46875 261.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.515625 257.210938 C 162.515625 257.09375 162.421875 257 162.304688 257 C 162.1875 257 162.09375 257.09375 162.09375 257.210938 C 162.09375 257.328125 162.1875 257.421875 162.304688 257.421875 C 162.421875 257.421875 162.515625 257.328125 162.515625 257.210938 Z M 162.515625 257.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.652344 260.515625 C 164.652344 260.398438 164.558594 260.304688 164.441406 260.304688 C 164.324219 260.304688 164.230469 260.398438 164.230469 260.515625 C 164.230469 260.632812 164.324219 260.726562 164.441406 260.726562 C 164.558594 260.726562 164.652344 260.632812 164.652344 260.515625 Z M 164.652344 260.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.179688 260.105469 C 165.179688 259.988281 165.085938 259.894531 164.96875 259.894531 C 164.851562 259.894531 164.757812 259.988281 164.757812 260.105469 C 164.757812 260.222656 164.851562 260.316406 164.96875 260.316406 C 165.085938 260.316406 165.179688 260.222656 165.179688 260.105469 Z M 165.179688 260.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.9375 258.449219 C 166.9375 258.332031 166.84375 258.238281 166.726562 258.238281 C 166.609375 258.238281 166.515625 258.332031 166.515625 258.449219 C 166.515625 258.566406 166.609375 258.660156 166.726562 258.660156 C 166.84375 258.660156 166.9375 258.566406 166.9375 258.449219 Z M 166.9375 258.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.414062 259.410156 C 167.414062 259.292969 167.320312 259.199219 167.203125 259.199219 C 167.085938 259.199219 166.992188 259.292969 166.992188 259.410156 C 166.992188 259.527344 167.085938 259.621094 167.203125 259.621094 C 167.320312 259.621094 167.414062 259.527344 167.414062 259.410156 Z M 167.414062 259.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.675781 258.539062 C 164.675781 258.421875 164.582031 258.328125 164.464844 258.328125 C 164.347656 258.328125 164.253906 258.421875 164.253906 258.539062 C 164.253906 258.65625 164.347656 258.75 164.464844 258.75 C 164.582031 258.75 164.675781 258.65625 164.675781 258.539062 Z M 164.675781 258.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.804688 259.296875 C 162.804688 259.179688 162.710938 259.085938 162.59375 259.085938 C 162.476562 259.085938 162.382812 259.179688 162.382812 259.296875 C 162.382812 259.414062 162.476562 259.507812 162.59375 259.507812 C 162.710938 259.507812 162.804688 259.414062 162.804688 259.296875 Z M 162.804688 259.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.105469 261.84375 C 163.105469 261.726562 163.011719 261.632812 162.894531 261.632812 C 162.777344 261.632812 162.683594 261.726562 162.683594 261.84375 C 162.683594 261.960938 162.777344 262.054688 162.894531 262.054688 C 163.011719 262.054688 163.105469 261.960938 163.105469 261.84375 Z M 163.105469 261.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.761719 264.046875 C 161.761719 263.929688 161.667969 263.835938 161.550781 263.835938 C 161.433594 263.835938 161.339844 263.929688 161.339844 264.046875 C 161.339844 264.164062 161.433594 264.257812 161.550781 264.257812 C 161.667969 264.257812 161.761719 264.164062 161.761719 264.046875 Z M 161.761719 264.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.058594 262.539062 C 160.058594 262.421875 159.964844 262.328125 159.847656 262.328125 C 159.730469 262.328125 159.636719 262.421875 159.636719 262.539062 C 159.636719 262.65625 159.730469 262.75 159.847656 262.75 C 159.964844 262.75 160.058594 262.65625 160.058594 262.539062 Z M 160.058594 262.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.492188 261.335938 C 165.492188 261.21875 165.398438 261.125 165.28125 261.125 C 165.164062 261.125 165.070312 261.21875 165.070312 261.335938 C 165.070312 261.453125 165.164062 261.546875 165.28125 261.546875 C 165.398438 261.546875 165.492188 261.453125 165.492188 261.335938 Z M 165.492188 261.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.238281 256.761719 C 165.238281 256.644531 165.144531 256.550781 165.027344 256.550781 C 164.910156 256.550781 164.816406 256.644531 164.816406 256.761719 C 164.816406 256.878906 164.910156 256.972656 165.027344 256.972656 C 165.144531 256.972656 165.238281 256.878906 165.238281 256.761719 Z M 165.238281 256.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.007812 256.054688 C 166.007812 255.9375 165.914062 255.84375 165.796875 255.84375 C 165.679688 255.84375 165.585938 255.9375 165.585938 256.054688 C 165.585938 256.171875 165.679688 256.265625 165.796875 256.265625 C 165.914062 256.265625 166.007812 256.171875 166.007812 256.054688 Z M 166.007812 256.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.128906 257.40625 C 170.128906 257.289062 170.035156 257.195312 169.917969 257.195312 C 169.800781 257.195312 169.707031 257.289062 169.707031 257.40625 C 169.707031 257.523438 169.800781 257.617188 169.917969 257.617188 C 170.035156 257.617188 170.128906 257.523438 170.128906 257.40625 Z M 170.128906 257.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.578125 257.703125 C 168.578125 257.585938 168.484375 257.492188 168.367188 257.492188 C 168.25 257.492188 168.15625 257.585938 168.15625 257.703125 C 168.15625 257.820312 168.25 257.914062 168.367188 257.914062 C 168.484375 257.914062 168.578125 257.820312 168.578125 257.703125 Z M 168.578125 257.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.25 256.664062 C 168.25 256.546875 168.15625 256.453125 168.039062 256.453125 C 167.921875 256.453125 167.828125 256.546875 167.828125 256.664062 C 167.828125 256.78125 167.921875 256.875 168.039062 256.875 C 168.15625 256.875 168.25 256.78125 168.25 256.664062 Z M 168.25 256.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.933594 257.957031 C 166.933594 257.839844 166.839844 257.746094 166.722656 257.746094 C 166.605469 257.746094 166.511719 257.839844 166.511719 257.957031 C 166.511719 258.074219 166.605469 258.167969 166.722656 258.167969 C 166.839844 258.167969 166.933594 258.074219 166.933594 257.957031 Z M 166.933594 257.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.746094 256.101562 C 169.746094 255.984375 169.652344 255.890625 169.535156 255.890625 C 169.417969 255.890625 169.324219 255.984375 169.324219 256.101562 C 169.324219 256.21875 169.417969 256.3125 169.535156 256.3125 C 169.652344 256.3125 169.746094 256.21875 169.746094 256.101562 Z M 169.746094 256.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.949219 257.859375 C 167.949219 257.742188 167.855469 257.648438 167.738281 257.648438 C 167.621094 257.648438 167.527344 257.742188 167.527344 257.859375 C 167.527344 257.976562 167.621094 258.070312 167.738281 258.070312 C 167.855469 258.070312 167.949219 257.976562 167.949219 257.859375 Z M 167.949219 257.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.351562 259.1875 C 163.351562 259.070312 163.257812 258.976562 163.140625 258.976562 C 163.023438 258.976562 162.929688 259.070312 162.929688 259.1875 C 162.929688 259.304688 163.023438 259.398438 163.140625 259.398438 C 163.257812 259.398438 163.351562 259.304688 163.351562 259.1875 Z M 163.351562 259.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.09375 258.347656 C 165.09375 258.230469 165 258.136719 164.882812 258.136719 C 164.765625 258.136719 164.671875 258.230469 164.671875 258.347656 C 164.671875 258.464844 164.765625 258.558594 164.882812 258.558594 C 165 258.558594 165.09375 258.464844 165.09375 258.347656 Z M 165.09375 258.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.707031 256.371094 C 164.707031 256.253906 164.613281 256.160156 164.496094 256.160156 C 164.378906 256.160156 164.285156 256.253906 164.285156 256.371094 C 164.285156 256.488281 164.378906 256.582031 164.496094 256.582031 C 164.613281 256.582031 164.707031 256.488281 164.707031 256.371094 Z M 164.707031 256.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.804688 255.941406 C 166.804688 255.824219 166.710938 255.730469 166.59375 255.730469 C 166.476562 255.730469 166.382812 255.824219 166.382812 255.941406 C 166.382812 256.058594 166.476562 256.152344 166.59375 256.152344 C 166.710938 256.152344 166.804688 256.058594 166.804688 255.941406 Z M 166.804688 255.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.800781 259.167969 C 165.800781 259.050781 165.707031 258.957031 165.589844 258.957031 C 165.472656 258.957031 165.378906 259.050781 165.378906 259.167969 C 165.378906 259.285156 165.472656 259.378906 165.589844 259.378906 C 165.707031 259.378906 165.800781 259.285156 165.800781 259.167969 Z M 165.800781 259.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.539062 260.054688 C 168.539062 259.9375 168.445312 259.84375 168.328125 259.84375 C 168.210938 259.84375 168.117188 259.9375 168.117188 260.054688 C 168.117188 260.171875 168.210938 260.265625 168.328125 260.265625 C 168.445312 260.265625 168.539062 260.171875 168.539062 260.054688 Z M 168.539062 260.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.785156 262.820312 C 168.785156 262.703125 168.691406 262.609375 168.574219 262.609375 C 168.457031 262.609375 168.363281 262.703125 168.363281 262.820312 C 168.363281 262.9375 168.457031 263.03125 168.574219 263.03125 C 168.691406 263.03125 168.785156 262.9375 168.785156 262.820312 Z M 168.785156 262.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.398438 261.925781 C 170.398438 261.808594 170.304688 261.714844 170.1875 261.714844 C 170.070312 261.714844 169.976562 261.808594 169.976562 261.925781 C 169.976562 262.042969 170.070312 262.136719 170.1875 262.136719 C 170.304688 262.136719 170.398438 262.042969 170.398438 261.925781 Z M 170.398438 261.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.75 263.246094 C 170.75 263.128906 170.65625 263.035156 170.539062 263.035156 C 170.421875 263.035156 170.328125 263.128906 170.328125 263.246094 C 170.328125 263.363281 170.421875 263.457031 170.539062 263.457031 C 170.65625 263.457031 170.75 263.363281 170.75 263.246094 Z M 170.75 263.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.851562 261.921875 C 174.851562 261.804688 174.757812 261.710938 174.640625 261.710938 C 174.523438 261.710938 174.429688 261.804688 174.429688 261.921875 C 174.429688 262.039062 174.523438 262.132812 174.640625 262.132812 C 174.757812 262.132812 174.851562 262.039062 174.851562 261.921875 Z M 174.851562 261.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.066406 261.679688 C 175.066406 261.5625 174.972656 261.46875 174.855469 261.46875 C 174.738281 261.46875 174.644531 261.5625 174.644531 261.679688 C 174.644531 261.796875 174.738281 261.890625 174.855469 261.890625 C 174.972656 261.890625 175.066406 261.796875 175.066406 261.679688 Z M 175.066406 261.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.386719 261.785156 C 176.386719 261.667969 176.292969 261.574219 176.175781 261.574219 C 176.058594 261.574219 175.964844 261.667969 175.964844 261.785156 C 175.964844 261.902344 176.058594 261.996094 176.175781 261.996094 C 176.292969 261.996094 176.386719 261.902344 176.386719 261.785156 Z M 176.386719 261.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.890625 261.316406 C 173.890625 261.199219 173.796875 261.105469 173.679688 261.105469 C 173.5625 261.105469 173.46875 261.199219 173.46875 261.316406 C 173.46875 261.433594 173.5625 261.527344 173.679688 261.527344 C 173.796875 261.527344 173.890625 261.433594 173.890625 261.316406 Z M 173.890625 261.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.609375 261.957031 C 174.609375 261.839844 174.515625 261.746094 174.398438 261.746094 C 174.28125 261.746094 174.1875 261.839844 174.1875 261.957031 C 174.1875 262.074219 174.28125 262.167969 174.398438 262.167969 C 174.515625 262.167969 174.609375 262.074219 174.609375 261.957031 Z M 174.609375 261.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.402344 262.933594 C 174.402344 262.816406 174.308594 262.722656 174.191406 262.722656 C 174.074219 262.722656 173.980469 262.816406 173.980469 262.933594 C 173.980469 263.050781 174.074219 263.144531 174.191406 263.144531 C 174.308594 263.144531 174.402344 263.050781 174.402344 262.933594 Z M 174.402344 262.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.691406 264.050781 C 176.691406 263.933594 176.597656 263.839844 176.480469 263.839844 C 176.363281 263.839844 176.269531 263.933594 176.269531 264.050781 C 176.269531 264.167969 176.363281 264.261719 176.480469 264.261719 C 176.597656 264.261719 176.691406 264.167969 176.691406 264.050781 Z M 176.691406 264.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.546875 263.898438 C 177.546875 263.78125 177.453125 263.6875 177.335938 263.6875 C 177.21875 263.6875 177.125 263.78125 177.125 263.898438 C 177.125 264.015625 177.21875 264.109375 177.335938 264.109375 C 177.453125 264.109375 177.546875 264.015625 177.546875 263.898438 Z M 177.546875 263.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.273438 264.230469 C 179.273438 264.113281 179.179688 264.019531 179.0625 264.019531 C 178.945312 264.019531 178.851562 264.113281 178.851562 264.230469 C 178.851562 264.347656 178.945312 264.441406 179.0625 264.441406 C 179.179688 264.441406 179.273438 264.347656 179.273438 264.230469 Z M 179.273438 264.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.648438 264.792969 C 180.648438 264.675781 180.554688 264.582031 180.4375 264.582031 C 180.320312 264.582031 180.226562 264.675781 180.226562 264.792969 C 180.226562 264.910156 180.320312 265.003906 180.4375 265.003906 C 180.554688 265.003906 180.648438 264.910156 180.648438 264.792969 Z M 180.648438 264.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.179688 267.90625 C 183.179688 267.789062 183.085938 267.695312 182.96875 267.695312 C 182.851562 267.695312 182.757812 267.789062 182.757812 267.90625 C 182.757812 268.023438 182.851562 268.117188 182.96875 268.117188 C 183.085938 268.117188 183.179688 268.023438 183.179688 267.90625 Z M 183.179688 267.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.214844 268.726562 C 186.214844 268.609375 186.121094 268.515625 186.003906 268.515625 C 185.886719 268.515625 185.792969 268.609375 185.792969 268.726562 C 185.792969 268.84375 185.886719 268.9375 186.003906 268.9375 C 186.121094 268.9375 186.214844 268.84375 186.214844 268.726562 Z M 186.214844 268.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.210938 266.769531 C 187.210938 266.652344 187.117188 266.558594 187 266.558594 C 186.882812 266.558594 186.789062 266.652344 186.789062 266.769531 C 186.789062 266.886719 186.882812 266.980469 187 266.980469 C 187.117188 266.980469 187.210938 266.886719 187.210938 266.769531 Z M 187.210938 266.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.257812 264.597656 C 184.257812 264.480469 184.164062 264.386719 184.046875 264.386719 C 183.929688 264.386719 183.835938 264.480469 183.835938 264.597656 C 183.835938 264.714844 183.929688 264.808594 184.046875 264.808594 C 184.164062 264.808594 184.257812 264.714844 184.257812 264.597656 Z M 184.257812 264.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.839844 263.070312 C 184.839844 262.953125 184.746094 262.859375 184.628906 262.859375 C 184.511719 262.859375 184.417969 262.953125 184.417969 263.070312 C 184.417969 263.1875 184.511719 263.28125 184.628906 263.28125 C 184.746094 263.28125 184.839844 263.1875 184.839844 263.070312 Z M 184.839844 263.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.003906 264.019531 C 184.003906 263.902344 183.910156 263.808594 183.792969 263.808594 C 183.675781 263.808594 183.582031 263.902344 183.582031 264.019531 C 183.582031 264.136719 183.675781 264.230469 183.792969 264.230469 C 183.910156 264.230469 184.003906 264.136719 184.003906 264.019531 Z M 184.003906 264.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.550781 263.832031 C 187.550781 263.714844 187.457031 263.621094 187.339844 263.621094 C 187.222656 263.621094 187.128906 263.714844 187.128906 263.832031 C 187.128906 263.949219 187.222656 264.042969 187.339844 264.042969 C 187.457031 264.042969 187.550781 263.949219 187.550781 263.832031 Z M 187.550781 263.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.144531 264.390625 C 192.144531 264.273438 192.050781 264.179688 191.933594 264.179688 C 191.816406 264.179688 191.722656 264.273438 191.722656 264.390625 C 191.722656 264.507812 191.816406 264.601562 191.933594 264.601562 C 192.050781 264.601562 192.144531 264.507812 192.144531 264.390625 Z M 192.144531 264.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.875 264.859375 C 194.875 264.742188 194.78125 264.648438 194.664062 264.648438 C 194.546875 264.648438 194.453125 264.742188 194.453125 264.859375 C 194.453125 264.976562 194.546875 265.070312 194.664062 265.070312 C 194.78125 265.070312 194.875 264.976562 194.875 264.859375 Z M 194.875 264.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.464844 267.207031 C 195.464844 267.089844 195.371094 266.996094 195.253906 266.996094 C 195.136719 266.996094 195.042969 267.089844 195.042969 267.207031 C 195.042969 267.324219 195.136719 267.417969 195.253906 267.417969 C 195.371094 267.417969 195.464844 267.324219 195.464844 267.207031 Z M 195.464844 267.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.304688 268.433594 C 195.304688 268.316406 195.210938 268.222656 195.09375 268.222656 C 194.976562 268.222656 194.882812 268.316406 194.882812 268.433594 C 194.882812 268.550781 194.976562 268.644531 195.09375 268.644531 C 195.210938 268.644531 195.304688 268.550781 195.304688 268.433594 Z M 195.304688 268.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.988281 270.328125 C 194.988281 270.210938 194.894531 270.117188 194.777344 270.117188 C 194.660156 270.117188 194.566406 270.210938 194.566406 270.328125 C 194.566406 270.445312 194.660156 270.539062 194.777344 270.539062 C 194.894531 270.539062 194.988281 270.445312 194.988281 270.328125 Z M 194.988281 270.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.394531 270.277344 C 195.394531 270.160156 195.300781 270.066406 195.183594 270.066406 C 195.066406 270.066406 194.972656 270.160156 194.972656 270.277344 C 194.972656 270.394531 195.066406 270.488281 195.183594 270.488281 C 195.300781 270.488281 195.394531 270.394531 195.394531 270.277344 Z M 195.394531 270.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.375 271.097656 C 197.375 270.980469 197.28125 270.886719 197.164062 270.886719 C 197.046875 270.886719 196.953125 270.980469 196.953125 271.097656 C 196.953125 271.214844 197.046875 271.308594 197.164062 271.308594 C 197.28125 271.308594 197.375 271.214844 197.375 271.097656 Z M 197.375 271.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.929688 271.65625 C 196.929688 271.539062 196.835938 271.445312 196.71875 271.445312 C 196.601562 271.445312 196.507812 271.539062 196.507812 271.65625 C 196.507812 271.773438 196.601562 271.867188 196.71875 271.867188 C 196.835938 271.867188 196.929688 271.773438 196.929688 271.65625 Z M 196.929688 271.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.464844 271.972656 C 197.464844 271.855469 197.371094 271.761719 197.253906 271.761719 C 197.136719 271.761719 197.042969 271.855469 197.042969 271.972656 C 197.042969 272.089844 197.136719 272.183594 197.253906 272.183594 C 197.371094 272.183594 197.464844 272.089844 197.464844 271.972656 Z M 197.464844 271.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.125 274.957031 C 197.125 274.839844 197.03125 274.746094 196.914062 274.746094 C 196.796875 274.746094 196.703125 274.839844 196.703125 274.957031 C 196.703125 275.074219 196.796875 275.167969 196.914062 275.167969 C 197.03125 275.167969 197.125 275.074219 197.125 274.957031 Z M 197.125 274.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.910156 274.214844 C 194.910156 274.097656 194.816406 274.003906 194.699219 274.003906 C 194.582031 274.003906 194.488281 274.097656 194.488281 274.214844 C 194.488281 274.332031 194.582031 274.425781 194.699219 274.425781 C 194.816406 274.425781 194.910156 274.332031 194.910156 274.214844 Z M 194.910156 274.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.515625 272.808594 C 195.515625 272.691406 195.421875 272.597656 195.304688 272.597656 C 195.1875 272.597656 195.09375 272.691406 195.09375 272.808594 C 195.09375 272.925781 195.1875 273.019531 195.304688 273.019531 C 195.421875 273.019531 195.515625 272.925781 195.515625 272.808594 Z M 195.515625 272.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.394531 271.097656 C 193.394531 270.980469 193.300781 270.886719 193.183594 270.886719 C 193.066406 270.886719 192.972656 270.980469 192.972656 271.097656 C 192.972656 271.214844 193.066406 271.308594 193.183594 271.308594 C 193.300781 271.308594 193.394531 271.214844 193.394531 271.097656 Z M 193.394531 271.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.917969 272.84375 C 193.917969 272.726562 193.824219 272.632812 193.707031 272.632812 C 193.589844 272.632812 193.496094 272.726562 193.496094 272.84375 C 193.496094 272.960938 193.589844 273.054688 193.707031 273.054688 C 193.824219 273.054688 193.917969 272.960938 193.917969 272.84375 Z M 193.917969 272.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.277344 272.398438 C 192.277344 272.28125 192.183594 272.1875 192.066406 272.1875 C 191.949219 272.1875 191.855469 272.28125 191.855469 272.398438 C 191.855469 272.515625 191.949219 272.609375 192.066406 272.609375 C 192.183594 272.609375 192.277344 272.515625 192.277344 272.398438 Z M 192.277344 272.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.023438 268.1875 C 193.023438 268.070312 192.929688 267.976562 192.8125 267.976562 C 192.695312 267.976562 192.601562 268.070312 192.601562 268.1875 C 192.601562 268.304688 192.695312 268.398438 192.8125 268.398438 C 192.929688 268.398438 193.023438 268.304688 193.023438 268.1875 Z M 193.023438 268.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.21875 268.371094 C 195.21875 268.253906 195.125 268.160156 195.007812 268.160156 C 194.890625 268.160156 194.796875 268.253906 194.796875 268.371094 C 194.796875 268.488281 194.890625 268.582031 195.007812 268.582031 C 195.125 268.582031 195.21875 268.488281 195.21875 268.371094 Z M 195.21875 268.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.113281 271.636719 C 195.113281 271.519531 195.019531 271.425781 194.902344 271.425781 C 194.785156 271.425781 194.691406 271.519531 194.691406 271.636719 C 194.691406 271.753906 194.785156 271.847656 194.902344 271.847656 C 195.019531 271.847656 195.113281 271.753906 195.113281 271.636719 Z M 195.113281 271.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.851562 272.132812 C 194.851562 272.015625 194.757812 271.921875 194.640625 271.921875 C 194.523438 271.921875 194.429688 272.015625 194.429688 272.132812 C 194.429688 272.25 194.523438 272.34375 194.640625 272.34375 C 194.757812 272.34375 194.851562 272.25 194.851562 272.132812 Z M 194.851562 272.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.402344 271.304688 C 195.402344 271.1875 195.308594 271.09375 195.191406 271.09375 C 195.074219 271.09375 194.980469 271.1875 194.980469 271.304688 C 194.980469 271.421875 195.074219 271.515625 195.191406 271.515625 C 195.308594 271.515625 195.402344 271.421875 195.402344 271.304688 Z M 195.402344 271.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.074219 270.46875 C 193.074219 270.351562 192.980469 270.257812 192.863281 270.257812 C 192.746094 270.257812 192.652344 270.351562 192.652344 270.46875 C 192.652344 270.585938 192.746094 270.679688 192.863281 270.679688 C 192.980469 270.679688 193.074219 270.585938 193.074219 270.46875 Z M 193.074219 270.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.554688 269.5625 C 194.554688 269.445312 194.460938 269.351562 194.34375 269.351562 C 194.226562 269.351562 194.132812 269.445312 194.132812 269.5625 C 194.132812 269.679688 194.226562 269.773438 194.34375 269.773438 C 194.460938 269.773438 194.554688 269.679688 194.554688 269.5625 Z M 194.554688 269.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.546875 270.53125 C 195.546875 270.414062 195.453125 270.320312 195.335938 270.320312 C 195.21875 270.320312 195.125 270.414062 195.125 270.53125 C 195.125 270.648438 195.21875 270.742188 195.335938 270.742188 C 195.453125 270.742188 195.546875 270.648438 195.546875 270.53125 Z M 195.546875 270.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.898438 273.511719 C 194.898438 273.394531 194.804688 273.300781 194.6875 273.300781 C 194.570312 273.300781 194.476562 273.394531 194.476562 273.511719 C 194.476562 273.628906 194.570312 273.722656 194.6875 273.722656 C 194.804688 273.722656 194.898438 273.628906 194.898438 273.511719 Z M 194.898438 273.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.234375 278.382812 C 193.234375 278.265625 193.140625 278.171875 193.023438 278.171875 C 192.90625 278.171875 192.8125 278.265625 192.8125 278.382812 C 192.8125 278.5 192.90625 278.59375 193.023438 278.59375 C 193.140625 278.59375 193.234375 278.5 193.234375 278.382812 Z M 193.234375 278.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.070312 275.417969 C 192.070312 275.300781 191.976562 275.207031 191.859375 275.207031 C 191.742188 275.207031 191.648438 275.300781 191.648438 275.417969 C 191.648438 275.535156 191.742188 275.628906 191.859375 275.628906 C 191.976562 275.628906 192.070312 275.535156 192.070312 275.417969 Z M 192.070312 275.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.90625 273.179688 C 194.90625 273.0625 194.8125 272.96875 194.695312 272.96875 C 194.578125 272.96875 194.484375 273.0625 194.484375 273.179688 C 194.484375 273.296875 194.578125 273.390625 194.695312 273.390625 C 194.8125 273.390625 194.90625 273.296875 194.90625 273.179688 Z M 194.90625 273.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.863281 273.195312 C 195.863281 273.078125 195.769531 272.984375 195.652344 272.984375 C 195.535156 272.984375 195.441406 273.078125 195.441406 273.195312 C 195.441406 273.3125 195.535156 273.40625 195.652344 273.40625 C 195.769531 273.40625 195.863281 273.3125 195.863281 273.195312 Z M 195.863281 273.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.769531 275.367188 C 196.769531 275.25 196.675781 275.15625 196.558594 275.15625 C 196.441406 275.15625 196.347656 275.25 196.347656 275.367188 C 196.347656 275.484375 196.441406 275.578125 196.558594 275.578125 C 196.675781 275.578125 196.769531 275.484375 196.769531 275.367188 Z M 196.769531 275.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.773438 271.382812 C 196.773438 271.265625 196.679688 271.171875 196.5625 271.171875 C 196.445312 271.171875 196.351562 271.265625 196.351562 271.382812 C 196.351562 271.5 196.445312 271.59375 196.5625 271.59375 C 196.679688 271.59375 196.773438 271.5 196.773438 271.382812 Z M 196.773438 271.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.769531 268.210938 C 194.769531 268.09375 194.675781 268 194.558594 268 C 194.441406 268 194.347656 268.09375 194.347656 268.210938 C 194.347656 268.328125 194.441406 268.421875 194.558594 268.421875 C 194.675781 268.421875 194.769531 268.328125 194.769531 268.210938 Z M 194.769531 268.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.375 267.976562 C 192.375 267.859375 192.28125 267.765625 192.164062 267.765625 C 192.046875 267.765625 191.953125 267.859375 191.953125 267.976562 C 191.953125 268.09375 192.046875 268.1875 192.164062 268.1875 C 192.28125 268.1875 192.375 268.09375 192.375 267.976562 Z M 192.375 267.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.609375 268.246094 C 193.609375 268.128906 193.515625 268.035156 193.398438 268.035156 C 193.28125 268.035156 193.1875 268.128906 193.1875 268.246094 C 193.1875 268.363281 193.28125 268.457031 193.398438 268.457031 C 193.515625 268.457031 193.609375 268.363281 193.609375 268.246094 Z M 193.609375 268.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.410156 270.070312 C 192.410156 269.953125 192.316406 269.859375 192.199219 269.859375 C 192.082031 269.859375 191.988281 269.953125 191.988281 270.070312 C 191.988281 270.1875 192.082031 270.28125 192.199219 270.28125 C 192.316406 270.28125 192.410156 270.1875 192.410156 270.070312 Z M 192.410156 270.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.128906 271.085938 C 191.128906 270.96875 191.035156 270.875 190.917969 270.875 C 190.800781 270.875 190.707031 270.96875 190.707031 271.085938 C 190.707031 271.203125 190.800781 271.296875 190.917969 271.296875 C 191.035156 271.296875 191.128906 271.203125 191.128906 271.085938 Z M 191.128906 271.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.871094 271.09375 C 192.871094 270.976562 192.777344 270.882812 192.660156 270.882812 C 192.542969 270.882812 192.449219 270.976562 192.449219 271.09375 C 192.449219 271.210938 192.542969 271.304688 192.660156 271.304688 C 192.777344 271.304688 192.871094 271.210938 192.871094 271.09375 Z M 192.871094 271.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.25 272.699219 C 189.25 272.582031 189.15625 272.488281 189.039062 272.488281 C 188.921875 272.488281 188.828125 272.582031 188.828125 272.699219 C 188.828125 272.816406 188.921875 272.910156 189.039062 272.910156 C 189.15625 272.910156 189.25 272.816406 189.25 272.699219 Z M 189.25 272.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.890625 272.410156 C 185.890625 272.292969 185.796875 272.199219 185.679688 272.199219 C 185.5625 272.199219 185.46875 272.292969 185.46875 272.410156 C 185.46875 272.527344 185.5625 272.621094 185.679688 272.621094 C 185.796875 272.621094 185.890625 272.527344 185.890625 272.410156 Z M 185.890625 272.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.171875 272.957031 C 185.171875 272.839844 185.078125 272.746094 184.960938 272.746094 C 184.84375 272.746094 184.75 272.839844 184.75 272.957031 C 184.75 273.074219 184.84375 273.167969 184.960938 273.167969 C 185.078125 273.167969 185.171875 273.074219 185.171875 272.957031 Z M 185.171875 272.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.464844 272.035156 C 185.464844 271.917969 185.371094 271.824219 185.253906 271.824219 C 185.136719 271.824219 185.042969 271.917969 185.042969 272.035156 C 185.042969 272.152344 185.136719 272.246094 185.253906 272.246094 C 185.371094 272.246094 185.464844 272.152344 185.464844 272.035156 Z M 185.464844 272.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.097656 269.144531 C 186.097656 269.027344 186.003906 268.933594 185.886719 268.933594 C 185.769531 268.933594 185.675781 269.027344 185.675781 269.144531 C 185.675781 269.261719 185.769531 269.355469 185.886719 269.355469 C 186.003906 269.355469 186.097656 269.261719 186.097656 269.144531 Z M 186.097656 269.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.058594 268.21875 C 185.058594 268.101562 184.964844 268.007812 184.847656 268.007812 C 184.730469 268.007812 184.636719 268.101562 184.636719 268.21875 C 184.636719 268.335938 184.730469 268.429688 184.847656 268.429688 C 184.964844 268.429688 185.058594 268.335938 185.058594 268.21875 Z M 185.058594 268.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.863281 268.980469 C 183.863281 268.863281 183.769531 268.769531 183.652344 268.769531 C 183.535156 268.769531 183.441406 268.863281 183.441406 268.980469 C 183.441406 269.097656 183.535156 269.191406 183.652344 269.191406 C 183.769531 269.191406 183.863281 269.097656 183.863281 268.980469 Z M 183.863281 268.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.058594 270.671875 C 186.058594 270.554688 185.964844 270.460938 185.847656 270.460938 C 185.730469 270.460938 185.636719 270.554688 185.636719 270.671875 C 185.636719 270.789062 185.730469 270.882812 185.847656 270.882812 C 185.964844 270.882812 186.058594 270.789062 186.058594 270.671875 Z M 186.058594 270.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.460938 269.847656 C 187.460938 269.730469 187.367188 269.636719 187.25 269.636719 C 187.132812 269.636719 187.039062 269.730469 187.039062 269.847656 C 187.039062 269.964844 187.132812 270.058594 187.25 270.058594 C 187.367188 270.058594 187.460938 269.964844 187.460938 269.847656 Z M 187.460938 269.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.027344 270.152344 C 188.027344 270.035156 187.933594 269.941406 187.816406 269.941406 C 187.699219 269.941406 187.605469 270.035156 187.605469 270.152344 C 187.605469 270.269531 187.699219 270.363281 187.816406 270.363281 C 187.933594 270.363281 188.027344 270.269531 188.027344 270.152344 Z M 188.027344 270.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.460938 272.109375 C 187.460938 271.992188 187.367188 271.898438 187.25 271.898438 C 187.132812 271.898438 187.039062 271.992188 187.039062 272.109375 C 187.039062 272.226562 187.132812 272.320312 187.25 272.320312 C 187.367188 272.320312 187.460938 272.226562 187.460938 272.109375 Z M 187.460938 272.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.839844 271.359375 C 190.839844 271.242188 190.746094 271.148438 190.628906 271.148438 C 190.511719 271.148438 190.417969 271.242188 190.417969 271.359375 C 190.417969 271.476562 190.511719 271.570312 190.628906 271.570312 C 190.746094 271.570312 190.839844 271.476562 190.839844 271.359375 Z M 190.839844 271.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.796875 270.394531 C 193.796875 270.277344 193.703125 270.183594 193.585938 270.183594 C 193.46875 270.183594 193.375 270.277344 193.375 270.394531 C 193.375 270.511719 193.46875 270.605469 193.585938 270.605469 C 193.703125 270.605469 193.796875 270.511719 193.796875 270.394531 Z M 193.796875 270.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.769531 271.292969 C 194.769531 271.175781 194.675781 271.082031 194.558594 271.082031 C 194.441406 271.082031 194.347656 271.175781 194.347656 271.292969 C 194.347656 271.410156 194.441406 271.503906 194.558594 271.503906 C 194.675781 271.503906 194.769531 271.410156 194.769531 271.292969 Z M 194.769531 271.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.566406 270.496094 C 196.566406 270.378906 196.472656 270.285156 196.355469 270.285156 C 196.238281 270.285156 196.144531 270.378906 196.144531 270.496094 C 196.144531 270.613281 196.238281 270.707031 196.355469 270.707031 C 196.472656 270.707031 196.566406 270.613281 196.566406 270.496094 Z M 196.566406 270.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.441406 270.804688 C 194.441406 270.6875 194.347656 270.59375 194.230469 270.59375 C 194.113281 270.59375 194.019531 270.6875 194.019531 270.804688 C 194.019531 270.921875 194.113281 271.015625 194.230469 271.015625 C 194.347656 271.015625 194.441406 270.921875 194.441406 270.804688 Z M 194.441406 270.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.394531 269.011719 C 195.394531 268.894531 195.300781 268.800781 195.183594 268.800781 C 195.066406 268.800781 194.972656 268.894531 194.972656 269.011719 C 194.972656 269.128906 195.066406 269.222656 195.183594 269.222656 C 195.300781 269.222656 195.394531 269.128906 195.394531 269.011719 Z M 195.394531 269.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.453125 267.636719 C 193.453125 267.519531 193.359375 267.425781 193.242188 267.425781 C 193.125 267.425781 193.03125 267.519531 193.03125 267.636719 C 193.03125 267.753906 193.125 267.847656 193.242188 267.847656 C 193.359375 267.847656 193.453125 267.753906 193.453125 267.636719 Z M 193.453125 267.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.882812 265.753906 C 192.882812 265.636719 192.789062 265.542969 192.671875 265.542969 C 192.554688 265.542969 192.460938 265.636719 192.460938 265.753906 C 192.460938 265.871094 192.554688 265.964844 192.671875 265.964844 C 192.789062 265.964844 192.882812 265.871094 192.882812 265.753906 Z M 192.882812 265.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.027344 268.9375 C 190.027344 268.820312 189.933594 268.726562 189.816406 268.726562 C 189.699219 268.726562 189.605469 268.820312 189.605469 268.9375 C 189.605469 269.054688 189.699219 269.148438 189.816406 269.148438 C 189.933594 269.148438 190.027344 269.054688 190.027344 268.9375 Z M 190.027344 268.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.082031 270.863281 C 189.082031 270.746094 188.988281 270.652344 188.871094 270.652344 C 188.753906 270.652344 188.660156 270.746094 188.660156 270.863281 C 188.660156 270.980469 188.753906 271.074219 188.871094 271.074219 C 188.988281 271.074219 189.082031 270.980469 189.082031 270.863281 Z M 189.082031 270.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.617188 271.234375 C 190.617188 271.117188 190.523438 271.023438 190.40625 271.023438 C 190.289062 271.023438 190.195312 271.117188 190.195312 271.234375 C 190.195312 271.351562 190.289062 271.445312 190.40625 271.445312 C 190.523438 271.445312 190.617188 271.351562 190.617188 271.234375 Z M 190.617188 271.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.652344 273.621094 C 194.652344 273.503906 194.558594 273.410156 194.441406 273.410156 C 194.324219 273.410156 194.230469 273.503906 194.230469 273.621094 C 194.230469 273.738281 194.324219 273.832031 194.441406 273.832031 C 194.558594 273.832031 194.652344 273.738281 194.652344 273.621094 Z M 194.652344 273.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.089844 270.851562 C 197.089844 270.734375 196.996094 270.640625 196.878906 270.640625 C 196.761719 270.640625 196.667969 270.734375 196.667969 270.851562 C 196.667969 270.96875 196.761719 271.0625 196.878906 271.0625 C 196.996094 271.0625 197.089844 270.96875 197.089844 270.851562 Z M 197.089844 270.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.027344 267.550781 C 195.027344 267.433594 194.933594 267.339844 194.816406 267.339844 C 194.699219 267.339844 194.605469 267.433594 194.605469 267.550781 C 194.605469 267.667969 194.699219 267.761719 194.816406 267.761719 C 194.933594 267.761719 195.027344 267.667969 195.027344 267.550781 Z M 195.027344 267.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.6875 263.429688 C 194.6875 263.3125 194.59375 263.21875 194.476562 263.21875 C 194.359375 263.21875 194.265625 263.3125 194.265625 263.429688 C 194.265625 263.546875 194.359375 263.640625 194.476562 263.640625 C 194.59375 263.640625 194.6875 263.546875 194.6875 263.429688 Z M 194.6875 263.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.15625 265.722656 C 196.15625 265.605469 196.0625 265.511719 195.945312 265.511719 C 195.828125 265.511719 195.734375 265.605469 195.734375 265.722656 C 195.734375 265.839844 195.828125 265.933594 195.945312 265.933594 C 196.0625 265.933594 196.15625 265.839844 196.15625 265.722656 Z M 196.15625 265.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.394531 265.488281 C 195.394531 265.371094 195.300781 265.277344 195.183594 265.277344 C 195.066406 265.277344 194.972656 265.371094 194.972656 265.488281 C 194.972656 265.605469 195.066406 265.699219 195.183594 265.699219 C 195.300781 265.699219 195.394531 265.605469 195.394531 265.488281 Z M 195.394531 265.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.410156 267.945312 C 194.410156 267.828125 194.316406 267.734375 194.199219 267.734375 C 194.082031 267.734375 193.988281 267.828125 193.988281 267.945312 C 193.988281 268.0625 194.082031 268.15625 194.199219 268.15625 C 194.316406 268.15625 194.410156 268.0625 194.410156 267.945312 Z M 194.410156 267.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.113281 267.652344 C 196.113281 267.535156 196.019531 267.441406 195.902344 267.441406 C 195.785156 267.441406 195.691406 267.535156 195.691406 267.652344 C 195.691406 267.769531 195.785156 267.863281 195.902344 267.863281 C 196.019531 267.863281 196.113281 267.769531 196.113281 267.652344 Z M 196.113281 267.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.988281 265.75 C 195.988281 265.632812 195.894531 265.539062 195.777344 265.539062 C 195.660156 265.539062 195.566406 265.632812 195.566406 265.75 C 195.566406 265.867188 195.660156 265.960938 195.777344 265.960938 C 195.894531 265.960938 195.988281 265.867188 195.988281 265.75 Z M 195.988281 265.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.171875 266.171875 C 197.171875 266.054688 197.078125 265.960938 196.960938 265.960938 C 196.84375 265.960938 196.75 266.054688 196.75 266.171875 C 196.75 266.289062 196.84375 266.382812 196.960938 266.382812 C 197.078125 266.382812 197.171875 266.289062 197.171875 266.171875 Z M 197.171875 266.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.5 263.789062 C 197.5 263.671875 197.40625 263.578125 197.289062 263.578125 C 197.171875 263.578125 197.078125 263.671875 197.078125 263.789062 C 197.078125 263.90625 197.171875 264 197.289062 264 C 197.40625 264 197.5 263.90625 197.5 263.789062 Z M 197.5 263.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.886719 262.347656 C 197.886719 262.230469 197.792969 262.136719 197.675781 262.136719 C 197.558594 262.136719 197.464844 262.230469 197.464844 262.347656 C 197.464844 262.464844 197.558594 262.558594 197.675781 262.558594 C 197.792969 262.558594 197.886719 262.464844 197.886719 262.347656 Z M 197.886719 262.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.925781 262.402344 C 196.925781 262.285156 196.832031 262.191406 196.714844 262.191406 C 196.597656 262.191406 196.503906 262.285156 196.503906 262.402344 C 196.503906 262.519531 196.597656 262.613281 196.714844 262.613281 C 196.832031 262.613281 196.925781 262.519531 196.925781 262.402344 Z M 196.925781 262.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.265625 266.027344 C 197.265625 265.910156 197.171875 265.816406 197.054688 265.816406 C 196.9375 265.816406 196.84375 265.910156 196.84375 266.027344 C 196.84375 266.144531 196.9375 266.238281 197.054688 266.238281 C 197.171875 266.238281 197.265625 266.144531 197.265625 266.027344 Z M 197.265625 266.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.921875 267.304688 C 196.921875 267.1875 196.828125 267.09375 196.710938 267.09375 C 196.59375 267.09375 196.5 267.1875 196.5 267.304688 C 196.5 267.421875 196.59375 267.515625 196.710938 267.515625 C 196.828125 267.515625 196.921875 267.421875 196.921875 267.304688 Z M 196.921875 267.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.625 268.363281 C 196.625 268.246094 196.53125 268.152344 196.414062 268.152344 C 196.296875 268.152344 196.203125 268.246094 196.203125 268.363281 C 196.203125 268.480469 196.296875 268.574219 196.414062 268.574219 C 196.53125 268.574219 196.625 268.480469 196.625 268.363281 Z M 196.625 268.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.378906 268.585938 C 200.378906 268.46875 200.285156 268.375 200.167969 268.375 C 200.050781 268.375 199.957031 268.46875 199.957031 268.585938 C 199.957031 268.703125 200.050781 268.796875 200.167969 268.796875 C 200.285156 268.796875 200.378906 268.703125 200.378906 268.585938 Z M 200.378906 268.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.398438 269.367188 C 203.398438 269.25 203.304688 269.15625 203.1875 269.15625 C 203.070312 269.15625 202.976562 269.25 202.976562 269.367188 C 202.976562 269.484375 203.070312 269.578125 203.1875 269.578125 C 203.304688 269.578125 203.398438 269.484375 203.398438 269.367188 Z M 203.398438 269.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.050781 268.339844 C 201.050781 268.222656 200.957031 268.128906 200.839844 268.128906 C 200.722656 268.128906 200.628906 268.222656 200.628906 268.339844 C 200.628906 268.457031 200.722656 268.550781 200.839844 268.550781 C 200.957031 268.550781 201.050781 268.457031 201.050781 268.339844 Z M 201.050781 268.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.203125 270.359375 C 201.203125 270.242188 201.109375 270.148438 200.992188 270.148438 C 200.875 270.148438 200.78125 270.242188 200.78125 270.359375 C 200.78125 270.476562 200.875 270.570312 200.992188 270.570312 C 201.109375 270.570312 201.203125 270.476562 201.203125 270.359375 Z M 201.203125 270.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.078125 267.402344 C 198.078125 267.285156 197.984375 267.191406 197.867188 267.191406 C 197.75 267.191406 197.65625 267.285156 197.65625 267.402344 C 197.65625 267.519531 197.75 267.613281 197.867188 267.613281 C 197.984375 267.613281 198.078125 267.519531 198.078125 267.402344 Z M 198.078125 267.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.246094 266.082031 C 199.246094 265.964844 199.152344 265.871094 199.035156 265.871094 C 198.917969 265.871094 198.824219 265.964844 198.824219 266.082031 C 198.824219 266.199219 198.917969 266.292969 199.035156 266.292969 C 199.152344 266.292969 199.246094 266.199219 199.246094 266.082031 Z M 199.246094 266.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.824219 267.53125 C 201.824219 267.414062 201.730469 267.320312 201.613281 267.320312 C 201.496094 267.320312 201.402344 267.414062 201.402344 267.53125 C 201.402344 267.648438 201.496094 267.742188 201.613281 267.742188 C 201.730469 267.742188 201.824219 267.648438 201.824219 267.53125 Z M 201.824219 267.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.625 271.910156 C 198.625 271.792969 198.53125 271.699219 198.414062 271.699219 C 198.296875 271.699219 198.203125 271.792969 198.203125 271.910156 C 198.203125 272.027344 198.296875 272.121094 198.414062 272.121094 C 198.53125 272.121094 198.625 272.027344 198.625 271.910156 Z M 198.625 271.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.667969 271.605469 C 197.667969 271.488281 197.574219 271.394531 197.457031 271.394531 C 197.339844 271.394531 197.246094 271.488281 197.246094 271.605469 C 197.246094 271.722656 197.339844 271.816406 197.457031 271.816406 C 197.574219 271.816406 197.667969 271.722656 197.667969 271.605469 Z M 197.667969 271.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.164062 268.664062 C 194.164062 268.546875 194.070312 268.453125 193.953125 268.453125 C 193.835938 268.453125 193.742188 268.546875 193.742188 268.664062 C 193.742188 268.78125 193.835938 268.875 193.953125 268.875 C 194.070312 268.875 194.164062 268.78125 194.164062 268.664062 Z M 194.164062 268.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.1875 268.089844 C 197.1875 267.972656 197.09375 267.878906 196.976562 267.878906 C 196.859375 267.878906 196.765625 267.972656 196.765625 268.089844 C 196.765625 268.207031 196.859375 268.300781 196.976562 268.300781 C 197.09375 268.300781 197.1875 268.207031 197.1875 268.089844 Z M 197.1875 268.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.148438 274.101562 C 193.148438 273.984375 193.054688 273.890625 192.9375 273.890625 C 192.820312 273.890625 192.726562 273.984375 192.726562 274.101562 C 192.726562 274.21875 192.820312 274.3125 192.9375 274.3125 C 193.054688 274.3125 193.148438 274.21875 193.148438 274.101562 Z M 193.148438 274.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.710938 275.808594 C 190.710938 275.691406 190.617188 275.597656 190.5 275.597656 C 190.382812 275.597656 190.289062 275.691406 190.289062 275.808594 C 190.289062 275.925781 190.382812 276.019531 190.5 276.019531 C 190.617188 276.019531 190.710938 275.925781 190.710938 275.808594 Z M 190.710938 275.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.980469 278.714844 C 189.980469 278.597656 189.886719 278.503906 189.769531 278.503906 C 189.652344 278.503906 189.558594 278.597656 189.558594 278.714844 C 189.558594 278.832031 189.652344 278.925781 189.769531 278.925781 C 189.886719 278.925781 189.980469 278.832031 189.980469 278.714844 Z M 189.980469 278.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.0625 280.300781 C 190.0625 280.183594 189.96875 280.089844 189.851562 280.089844 C 189.734375 280.089844 189.640625 280.183594 189.640625 280.300781 C 189.640625 280.417969 189.734375 280.511719 189.851562 280.511719 C 189.96875 280.511719 190.0625 280.417969 190.0625 280.300781 Z M 190.0625 280.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.574219 278.640625 C 185.574219 278.523438 185.480469 278.429688 185.363281 278.429688 C 185.246094 278.429688 185.152344 278.523438 185.152344 278.640625 C 185.152344 278.757812 185.246094 278.851562 185.363281 278.851562 C 185.480469 278.851562 185.574219 278.757812 185.574219 278.640625 Z M 185.574219 278.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.457031 278.441406 C 184.457031 278.324219 184.363281 278.230469 184.246094 278.230469 C 184.128906 278.230469 184.035156 278.324219 184.035156 278.441406 C 184.035156 278.558594 184.128906 278.652344 184.246094 278.652344 C 184.363281 278.652344 184.457031 278.558594 184.457031 278.441406 Z M 184.457031 278.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.183594 280.058594 C 184.183594 279.941406 184.089844 279.847656 183.972656 279.847656 C 183.855469 279.847656 183.761719 279.941406 183.761719 280.058594 C 183.761719 280.175781 183.855469 280.269531 183.972656 280.269531 C 184.089844 280.269531 184.183594 280.175781 184.183594 280.058594 Z M 184.183594 280.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.273438 279.25 C 181.273438 279.132812 181.179688 279.039062 181.0625 279.039062 C 180.945312 279.039062 180.851562 279.132812 180.851562 279.25 C 180.851562 279.367188 180.945312 279.460938 181.0625 279.460938 C 181.179688 279.460938 181.273438 279.367188 181.273438 279.25 Z M 181.273438 279.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.730469 277.894531 C 186.730469 277.777344 186.636719 277.683594 186.519531 277.683594 C 186.402344 277.683594 186.308594 277.777344 186.308594 277.894531 C 186.308594 278.011719 186.402344 278.105469 186.519531 278.105469 C 186.636719 278.105469 186.730469 278.011719 186.730469 277.894531 Z M 186.730469 277.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.960938 277.535156 C 184.960938 277.417969 184.867188 277.324219 184.75 277.324219 C 184.632812 277.324219 184.539062 277.417969 184.539062 277.535156 C 184.539062 277.652344 184.632812 277.746094 184.75 277.746094 C 184.867188 277.746094 184.960938 277.652344 184.960938 277.535156 Z M 184.960938 277.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.699219 277.597656 C 184.699219 277.480469 184.605469 277.386719 184.488281 277.386719 C 184.371094 277.386719 184.277344 277.480469 184.277344 277.597656 C 184.277344 277.714844 184.371094 277.808594 184.488281 277.808594 C 184.605469 277.808594 184.699219 277.714844 184.699219 277.597656 Z M 184.699219 277.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.597656 273.996094 C 182.597656 273.878906 182.503906 273.785156 182.386719 273.785156 C 182.269531 273.785156 182.175781 273.878906 182.175781 273.996094 C 182.175781 274.113281 182.269531 274.207031 182.386719 274.207031 C 182.503906 274.207031 182.597656 274.113281 182.597656 273.996094 Z M 182.597656 273.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.953125 271.4375 C 180.953125 271.320312 180.859375 271.226562 180.742188 271.226562 C 180.625 271.226562 180.53125 271.320312 180.53125 271.4375 C 180.53125 271.554688 180.625 271.648438 180.742188 271.648438 C 180.859375 271.648438 180.953125 271.554688 180.953125 271.4375 Z M 180.953125 271.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.183594 274.609375 C 182.183594 274.492188 182.089844 274.398438 181.972656 274.398438 C 181.855469 274.398438 181.761719 274.492188 181.761719 274.609375 C 181.761719 274.726562 181.855469 274.820312 181.972656 274.820312 C 182.089844 274.820312 182.183594 274.726562 182.183594 274.609375 Z M 182.183594 274.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.304688 274.59375 C 184.304688 274.476562 184.210938 274.382812 184.09375 274.382812 C 183.976562 274.382812 183.882812 274.476562 183.882812 274.59375 C 183.882812 274.710938 183.976562 274.804688 184.09375 274.804688 C 184.210938 274.804688 184.304688 274.710938 184.304688 274.59375 Z M 184.304688 274.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.140625 278.125 C 186.140625 278.007812 186.046875 277.914062 185.929688 277.914062 C 185.8125 277.914062 185.71875 278.007812 185.71875 278.125 C 185.71875 278.242188 185.8125 278.335938 185.929688 278.335938 C 186.046875 278.335938 186.140625 278.242188 186.140625 278.125 Z M 186.140625 278.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.332031 280.035156 C 184.332031 279.917969 184.238281 279.824219 184.121094 279.824219 C 184.003906 279.824219 183.910156 279.917969 183.910156 280.035156 C 183.910156 280.152344 184.003906 280.246094 184.121094 280.246094 C 184.238281 280.246094 184.332031 280.152344 184.332031 280.035156 Z M 184.332031 280.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.699219 281.375 C 185.699219 281.257812 185.605469 281.164062 185.488281 281.164062 C 185.371094 281.164062 185.277344 281.257812 185.277344 281.375 C 185.277344 281.492188 185.371094 281.585938 185.488281 281.585938 C 185.605469 281.585938 185.699219 281.492188 185.699219 281.375 Z M 185.699219 281.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.179688 280.164062 C 184.179688 280.046875 184.085938 279.953125 183.96875 279.953125 C 183.851562 279.953125 183.757812 280.046875 183.757812 280.164062 C 183.757812 280.28125 183.851562 280.375 183.96875 280.375 C 184.085938 280.375 184.179688 280.28125 184.179688 280.164062 Z M 184.179688 280.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.554688 284.945312 C 184.554688 284.828125 184.460938 284.734375 184.34375 284.734375 C 184.226562 284.734375 184.132812 284.828125 184.132812 284.945312 C 184.132812 285.0625 184.226562 285.15625 184.34375 285.15625 C 184.460938 285.15625 184.554688 285.0625 184.554688 284.945312 Z M 184.554688 284.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.621094 284.542969 C 182.621094 284.425781 182.527344 284.332031 182.410156 284.332031 C 182.292969 284.332031 182.199219 284.425781 182.199219 284.542969 C 182.199219 284.660156 182.292969 284.753906 182.410156 284.753906 C 182.527344 284.753906 182.621094 284.660156 182.621094 284.542969 Z M 182.621094 284.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.089844 288.160156 C 184.089844 288.042969 183.996094 287.949219 183.878906 287.949219 C 183.761719 287.949219 183.667969 288.042969 183.667969 288.160156 C 183.667969 288.277344 183.761719 288.371094 183.878906 288.371094 C 183.996094 288.371094 184.089844 288.277344 184.089844 288.160156 Z M 184.089844 288.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.515625 286.535156 C 183.515625 286.417969 183.421875 286.324219 183.304688 286.324219 C 183.1875 286.324219 183.09375 286.417969 183.09375 286.535156 C 183.09375 286.652344 183.1875 286.746094 183.304688 286.746094 C 183.421875 286.746094 183.515625 286.652344 183.515625 286.535156 Z M 183.515625 286.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.753906 282.871094 C 183.753906 282.753906 183.660156 282.660156 183.542969 282.660156 C 183.425781 282.660156 183.332031 282.753906 183.332031 282.871094 C 183.332031 282.988281 183.425781 283.082031 183.542969 283.082031 C 183.660156 283.082031 183.753906 282.988281 183.753906 282.871094 Z M 183.753906 282.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.859375 281.121094 C 183.859375 281.003906 183.765625 280.910156 183.648438 280.910156 C 183.53125 280.910156 183.4375 281.003906 183.4375 281.121094 C 183.4375 281.238281 183.53125 281.332031 183.648438 281.332031 C 183.765625 281.332031 183.859375 281.238281 183.859375 281.121094 Z M 183.859375 281.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.789062 281.355469 C 182.789062 281.238281 182.695312 281.144531 182.578125 281.144531 C 182.460938 281.144531 182.367188 281.238281 182.367188 281.355469 C 182.367188 281.472656 182.460938 281.566406 182.578125 281.566406 C 182.695312 281.566406 182.789062 281.472656 182.789062 281.355469 Z M 182.789062 281.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.691406 284.722656 C 178.691406 284.605469 178.597656 284.511719 178.480469 284.511719 C 178.363281 284.511719 178.269531 284.605469 178.269531 284.722656 C 178.269531 284.839844 178.363281 284.933594 178.480469 284.933594 C 178.597656 284.933594 178.691406 284.839844 178.691406 284.722656 Z M 178.691406 284.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.128906 285.75 C 179.128906 285.632812 179.035156 285.539062 178.917969 285.539062 C 178.800781 285.539062 178.707031 285.632812 178.707031 285.75 C 178.707031 285.867188 178.800781 285.960938 178.917969 285.960938 C 179.035156 285.960938 179.128906 285.867188 179.128906 285.75 Z M 179.128906 285.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.902344 285.15625 C 181.902344 285.039062 181.808594 284.945312 181.691406 284.945312 C 181.574219 284.945312 181.480469 285.039062 181.480469 285.15625 C 181.480469 285.273438 181.574219 285.367188 181.691406 285.367188 C 181.808594 285.367188 181.902344 285.273438 181.902344 285.15625 Z M 181.902344 285.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.390625 282.253906 C 182.390625 282.136719 182.296875 282.042969 182.179688 282.042969 C 182.0625 282.042969 181.96875 282.136719 181.96875 282.253906 C 181.96875 282.371094 182.0625 282.464844 182.179688 282.464844 C 182.296875 282.464844 182.390625 282.371094 182.390625 282.253906 Z M 182.390625 282.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.304688 281.902344 C 180.304688 281.785156 180.210938 281.691406 180.09375 281.691406 C 179.976562 281.691406 179.882812 281.785156 179.882812 281.902344 C 179.882812 282.019531 179.976562 282.113281 180.09375 282.113281 C 180.210938 282.113281 180.304688 282.019531 180.304688 281.902344 Z M 180.304688 281.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.320312 284.859375 C 180.320312 284.742188 180.226562 284.648438 180.109375 284.648438 C 179.992188 284.648438 179.898438 284.742188 179.898438 284.859375 C 179.898438 284.976562 179.992188 285.070312 180.109375 285.070312 C 180.226562 285.070312 180.320312 284.976562 180.320312 284.859375 Z M 180.320312 284.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.617188 287.6875 C 182.617188 287.570312 182.523438 287.476562 182.40625 287.476562 C 182.289062 287.476562 182.195312 287.570312 182.195312 287.6875 C 182.195312 287.804688 182.289062 287.898438 182.40625 287.898438 C 182.523438 287.898438 182.617188 287.804688 182.617188 287.6875 Z M 182.617188 287.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.683594 285.929688 C 182.683594 285.8125 182.589844 285.71875 182.472656 285.71875 C 182.355469 285.71875 182.261719 285.8125 182.261719 285.929688 C 182.261719 286.046875 182.355469 286.140625 182.472656 286.140625 C 182.589844 286.140625 182.683594 286.046875 182.683594 285.929688 Z M 182.683594 285.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.234375 286.074219 C 181.234375 285.957031 181.140625 285.863281 181.023438 285.863281 C 180.90625 285.863281 180.8125 285.957031 180.8125 286.074219 C 180.8125 286.191406 180.90625 286.285156 181.023438 286.285156 C 181.140625 286.285156 181.234375 286.191406 181.234375 286.074219 Z M 181.234375 286.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.722656 287.914062 C 178.722656 287.796875 178.628906 287.703125 178.511719 287.703125 C 178.394531 287.703125 178.300781 287.796875 178.300781 287.914062 C 178.300781 288.03125 178.394531 288.125 178.511719 288.125 C 178.628906 288.125 178.722656 288.03125 178.722656 287.914062 Z M 178.722656 287.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.199219 284.84375 C 179.199219 284.726562 179.105469 284.632812 178.988281 284.632812 C 178.871094 284.632812 178.777344 284.726562 178.777344 284.84375 C 178.777344 284.960938 178.871094 285.054688 178.988281 285.054688 C 179.105469 285.054688 179.199219 284.960938 179.199219 284.84375 Z M 179.199219 284.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.765625 285.628906 C 176.765625 285.511719 176.671875 285.417969 176.554688 285.417969 C 176.4375 285.417969 176.34375 285.511719 176.34375 285.628906 C 176.34375 285.746094 176.4375 285.839844 176.554688 285.839844 C 176.671875 285.839844 176.765625 285.746094 176.765625 285.628906 Z M 176.765625 285.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.667969 285.472656 C 177.667969 285.355469 177.574219 285.261719 177.457031 285.261719 C 177.339844 285.261719 177.246094 285.355469 177.246094 285.472656 C 177.246094 285.589844 177.339844 285.683594 177.457031 285.683594 C 177.574219 285.683594 177.667969 285.589844 177.667969 285.472656 Z M 177.667969 285.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.398438 283.621094 C 175.398438 283.503906 175.304688 283.410156 175.1875 283.410156 C 175.070312 283.410156 174.976562 283.503906 174.976562 283.621094 C 174.976562 283.738281 175.070312 283.832031 175.1875 283.832031 C 175.304688 283.832031 175.398438 283.738281 175.398438 283.621094 Z M 175.398438 283.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.621094 279.890625 C 175.621094 279.773438 175.527344 279.679688 175.410156 279.679688 C 175.292969 279.679688 175.199219 279.773438 175.199219 279.890625 C 175.199219 280.007812 175.292969 280.101562 175.410156 280.101562 C 175.527344 280.101562 175.621094 280.007812 175.621094 279.890625 Z M 175.621094 279.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.355469 278.8125 C 176.355469 278.695312 176.261719 278.601562 176.144531 278.601562 C 176.027344 278.601562 175.933594 278.695312 175.933594 278.8125 C 175.933594 278.929688 176.027344 279.023438 176.144531 279.023438 C 176.261719 279.023438 176.355469 278.929688 176.355469 278.8125 Z M 176.355469 278.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.070312 276.789062 C 176.070312 276.671875 175.976562 276.578125 175.859375 276.578125 C 175.742188 276.578125 175.648438 276.671875 175.648438 276.789062 C 175.648438 276.90625 175.742188 277 175.859375 277 C 175.976562 277 176.070312 276.90625 176.070312 276.789062 Z M 176.070312 276.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.542969 274.878906 C 174.542969 274.761719 174.449219 274.667969 174.332031 274.667969 C 174.214844 274.667969 174.121094 274.761719 174.121094 274.878906 C 174.121094 274.996094 174.214844 275.089844 174.332031 275.089844 C 174.449219 275.089844 174.542969 274.996094 174.542969 274.878906 Z M 174.542969 274.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.941406 273.042969 C 174.941406 272.925781 174.847656 272.832031 174.730469 272.832031 C 174.613281 272.832031 174.519531 272.925781 174.519531 273.042969 C 174.519531 273.160156 174.613281 273.253906 174.730469 273.253906 C 174.847656 273.253906 174.941406 273.160156 174.941406 273.042969 Z M 174.941406 273.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.808594 270.113281 C 177.808594 269.996094 177.714844 269.902344 177.597656 269.902344 C 177.480469 269.902344 177.386719 269.996094 177.386719 270.113281 C 177.386719 270.230469 177.480469 270.324219 177.597656 270.324219 C 177.714844 270.324219 177.808594 270.230469 177.808594 270.113281 Z M 177.808594 270.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.164062 272.679688 C 176.164062 272.5625 176.070312 272.46875 175.953125 272.46875 C 175.835938 272.46875 175.742188 272.5625 175.742188 272.679688 C 175.742188 272.796875 175.835938 272.890625 175.953125 272.890625 C 176.070312 272.890625 176.164062 272.796875 176.164062 272.679688 Z M 176.164062 272.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.167969 272.597656 C 176.167969 272.480469 176.074219 272.386719 175.957031 272.386719 C 175.839844 272.386719 175.746094 272.480469 175.746094 272.597656 C 175.746094 272.714844 175.839844 272.808594 175.957031 272.808594 C 176.074219 272.808594 176.167969 272.714844 176.167969 272.597656 Z M 176.167969 272.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.238281 273.339844 C 177.238281 273.222656 177.144531 273.128906 177.027344 273.128906 C 176.910156 273.128906 176.816406 273.222656 176.816406 273.339844 C 176.816406 273.457031 176.910156 273.550781 177.027344 273.550781 C 177.144531 273.550781 177.238281 273.457031 177.238281 273.339844 Z M 177.238281 273.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.285156 277.445312 C 180.285156 277.328125 180.191406 277.234375 180.074219 277.234375 C 179.957031 277.234375 179.863281 277.328125 179.863281 277.445312 C 179.863281 277.5625 179.957031 277.65625 180.074219 277.65625 C 180.191406 277.65625 180.285156 277.5625 180.285156 277.445312 Z M 180.285156 277.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.742188 277.488281 C 178.742188 277.371094 178.648438 277.277344 178.53125 277.277344 C 178.414062 277.277344 178.320312 277.371094 178.320312 277.488281 C 178.320312 277.605469 178.414062 277.699219 178.53125 277.699219 C 178.648438 277.699219 178.742188 277.605469 178.742188 277.488281 Z M 178.742188 277.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.445312 282.230469 C 176.445312 282.113281 176.351562 282.019531 176.234375 282.019531 C 176.117188 282.019531 176.023438 282.113281 176.023438 282.230469 C 176.023438 282.347656 176.117188 282.441406 176.234375 282.441406 C 176.351562 282.441406 176.445312 282.347656 176.445312 282.230469 Z M 176.445312 282.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.386719 281.738281 C 175.386719 281.621094 175.292969 281.527344 175.175781 281.527344 C 175.058594 281.527344 174.964844 281.621094 174.964844 281.738281 C 174.964844 281.855469 175.058594 281.949219 175.175781 281.949219 C 175.292969 281.949219 175.386719 281.855469 175.386719 281.738281 Z M 175.386719 281.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.660156 281.855469 C 176.660156 281.738281 176.566406 281.644531 176.449219 281.644531 C 176.332031 281.644531 176.238281 281.738281 176.238281 281.855469 C 176.238281 281.972656 176.332031 282.066406 176.449219 282.066406 C 176.566406 282.066406 176.660156 281.972656 176.660156 281.855469 Z M 176.660156 281.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.265625 280.808594 C 176.265625 280.691406 176.171875 280.597656 176.054688 280.597656 C 175.9375 280.597656 175.84375 280.691406 175.84375 280.808594 C 175.84375 280.925781 175.9375 281.019531 176.054688 281.019531 C 176.171875 281.019531 176.265625 280.925781 176.265625 280.808594 Z M 176.265625 280.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.570312 279.632812 C 175.570312 279.515625 175.476562 279.421875 175.359375 279.421875 C 175.242188 279.421875 175.148438 279.515625 175.148438 279.632812 C 175.148438 279.75 175.242188 279.84375 175.359375 279.84375 C 175.476562 279.84375 175.570312 279.75 175.570312 279.632812 Z M 175.570312 279.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.777344 280.230469 C 175.777344 280.113281 175.683594 280.019531 175.566406 280.019531 C 175.449219 280.019531 175.355469 280.113281 175.355469 280.230469 C 175.355469 280.347656 175.449219 280.441406 175.566406 280.441406 C 175.683594 280.441406 175.777344 280.347656 175.777344 280.230469 Z M 175.777344 280.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.40625 278.660156 C 176.40625 278.542969 176.3125 278.449219 176.195312 278.449219 C 176.078125 278.449219 175.984375 278.542969 175.984375 278.660156 C 175.984375 278.777344 176.078125 278.871094 176.195312 278.871094 C 176.3125 278.871094 176.40625 278.777344 176.40625 278.660156 Z M 176.40625 278.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.390625 281.199219 C 178.390625 281.082031 178.296875 280.988281 178.179688 280.988281 C 178.0625 280.988281 177.96875 281.082031 177.96875 281.199219 C 177.96875 281.316406 178.0625 281.410156 178.179688 281.410156 C 178.296875 281.410156 178.390625 281.316406 178.390625 281.199219 Z M 178.390625 281.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.957031 283.210938 C 176.957031 283.09375 176.863281 283 176.746094 283 C 176.628906 283 176.535156 283.09375 176.535156 283.210938 C 176.535156 283.328125 176.628906 283.421875 176.746094 283.421875 C 176.863281 283.421875 176.957031 283.328125 176.957031 283.210938 Z M 176.957031 283.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.824219 281.375 C 175.824219 281.257812 175.730469 281.164062 175.613281 281.164062 C 175.496094 281.164062 175.402344 281.257812 175.402344 281.375 C 175.402344 281.492188 175.496094 281.585938 175.613281 281.585938 C 175.730469 281.585938 175.824219 281.492188 175.824219 281.375 Z M 175.824219 281.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.054688 283.25 C 177.054688 283.132812 176.960938 283.039062 176.84375 283.039062 C 176.726562 283.039062 176.632812 283.132812 176.632812 283.25 C 176.632812 283.367188 176.726562 283.460938 176.84375 283.460938 C 176.960938 283.460938 177.054688 283.367188 177.054688 283.25 Z M 177.054688 283.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.308594 283.285156 C 177.308594 283.167969 177.214844 283.074219 177.097656 283.074219 C 176.980469 283.074219 176.886719 283.167969 176.886719 283.285156 C 176.886719 283.402344 176.980469 283.496094 177.097656 283.496094 C 177.214844 283.496094 177.308594 283.402344 177.308594 283.285156 Z M 177.308594 283.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.664062 282.496094 C 177.664062 282.378906 177.570312 282.285156 177.453125 282.285156 C 177.335938 282.285156 177.242188 282.378906 177.242188 282.496094 C 177.242188 282.613281 177.335938 282.707031 177.453125 282.707031 C 177.570312 282.707031 177.664062 282.613281 177.664062 282.496094 Z M 177.664062 282.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.617188 283.984375 C 175.617188 283.867188 175.523438 283.773438 175.40625 283.773438 C 175.289062 283.773438 175.195312 283.867188 175.195312 283.984375 C 175.195312 284.101562 175.289062 284.195312 175.40625 284.195312 C 175.523438 284.195312 175.617188 284.101562 175.617188 283.984375 Z M 175.617188 283.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.378906 283.226562 C 173.378906 283.109375 173.285156 283.015625 173.167969 283.015625 C 173.050781 283.015625 172.957031 283.109375 172.957031 283.226562 C 172.957031 283.34375 173.050781 283.4375 173.167969 283.4375 C 173.285156 283.4375 173.378906 283.34375 173.378906 283.226562 Z M 173.378906 283.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.5 286.058594 C 172.5 285.941406 172.40625 285.847656 172.289062 285.847656 C 172.171875 285.847656 172.078125 285.941406 172.078125 286.058594 C 172.078125 286.175781 172.171875 286.269531 172.289062 286.269531 C 172.40625 286.269531 172.5 286.175781 172.5 286.058594 Z M 172.5 286.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.742188 285.785156 C 168.742188 285.667969 168.648438 285.574219 168.53125 285.574219 C 168.414062 285.574219 168.320312 285.667969 168.320312 285.785156 C 168.320312 285.902344 168.414062 285.996094 168.53125 285.996094 C 168.648438 285.996094 168.742188 285.902344 168.742188 285.785156 Z M 168.742188 285.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.136719 285.984375 C 167.136719 285.867188 167.042969 285.773438 166.925781 285.773438 C 166.808594 285.773438 166.714844 285.867188 166.714844 285.984375 C 166.714844 286.101562 166.808594 286.195312 166.925781 286.195312 C 167.042969 286.195312 167.136719 286.101562 167.136719 285.984375 Z M 167.136719 285.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.316406 285.746094 C 167.316406 285.628906 167.222656 285.535156 167.105469 285.535156 C 166.988281 285.535156 166.894531 285.628906 166.894531 285.746094 C 166.894531 285.863281 166.988281 285.957031 167.105469 285.957031 C 167.222656 285.957031 167.316406 285.863281 167.316406 285.746094 Z M 167.316406 285.746094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.875 288.359375 C 167.875 288.242188 167.78125 288.148438 167.664062 288.148438 C 167.546875 288.148438 167.453125 288.242188 167.453125 288.359375 C 167.453125 288.476562 167.546875 288.570312 167.664062 288.570312 C 167.78125 288.570312 167.875 288.476562 167.875 288.359375 Z M 167.875 288.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.023438 288.953125 C 170.023438 288.835938 169.929688 288.742188 169.8125 288.742188 C 169.695312 288.742188 169.601562 288.835938 169.601562 288.953125 C 169.601562 289.070312 169.695312 289.164062 169.8125 289.164062 C 169.929688 289.164062 170.023438 289.070312 170.023438 288.953125 Z M 170.023438 288.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.453125 288.066406 C 172.453125 287.949219 172.359375 287.855469 172.242188 287.855469 C 172.125 287.855469 172.03125 287.949219 172.03125 288.066406 C 172.03125 288.183594 172.125 288.277344 172.242188 288.277344 C 172.359375 288.277344 172.453125 288.183594 172.453125 288.066406 Z M 172.453125 288.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.59375 286.71875 C 172.59375 286.601562 172.5 286.507812 172.382812 286.507812 C 172.265625 286.507812 172.171875 286.601562 172.171875 286.71875 C 172.171875 286.835938 172.265625 286.929688 172.382812 286.929688 C 172.5 286.929688 172.59375 286.835938 172.59375 286.71875 Z M 172.59375 286.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.121094 289.246094 C 176.121094 289.128906 176.027344 289.035156 175.910156 289.035156 C 175.792969 289.035156 175.699219 289.128906 175.699219 289.246094 C 175.699219 289.363281 175.792969 289.457031 175.910156 289.457031 C 176.027344 289.457031 176.121094 289.363281 176.121094 289.246094 Z M 176.121094 289.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.335938 289.683594 C 175.335938 289.566406 175.242188 289.472656 175.125 289.472656 C 175.007812 289.472656 174.914062 289.566406 174.914062 289.683594 C 174.914062 289.800781 175.007812 289.894531 175.125 289.894531 C 175.242188 289.894531 175.335938 289.800781 175.335938 289.683594 Z M 175.335938 289.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.003906 286.238281 C 173.003906 286.121094 172.910156 286.027344 172.792969 286.027344 C 172.675781 286.027344 172.582031 286.121094 172.582031 286.238281 C 172.582031 286.355469 172.675781 286.449219 172.792969 286.449219 C 172.910156 286.449219 173.003906 286.355469 173.003906 286.238281 Z M 173.003906 286.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.875 289.671875 C 177.875 289.554688 177.78125 289.460938 177.664062 289.460938 C 177.546875 289.460938 177.453125 289.554688 177.453125 289.671875 C 177.453125 289.789062 177.546875 289.882812 177.664062 289.882812 C 177.78125 289.882812 177.875 289.789062 177.875 289.671875 Z M 177.875 289.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.988281 290.484375 C 176.988281 290.367188 176.894531 290.273438 176.777344 290.273438 C 176.660156 290.273438 176.566406 290.367188 176.566406 290.484375 C 176.566406 290.601562 176.660156 290.695312 176.777344 290.695312 C 176.894531 290.695312 176.988281 290.601562 176.988281 290.484375 Z M 176.988281 290.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.042969 290.839844 C 178.042969 290.722656 177.949219 290.628906 177.832031 290.628906 C 177.714844 290.628906 177.621094 290.722656 177.621094 290.839844 C 177.621094 290.957031 177.714844 291.050781 177.832031 291.050781 C 177.949219 291.050781 178.042969 290.957031 178.042969 290.839844 Z M 178.042969 290.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.082031 291.1875 C 181.082031 291.070312 180.988281 290.976562 180.871094 290.976562 C 180.753906 290.976562 180.660156 291.070312 180.660156 291.1875 C 180.660156 291.304688 180.753906 291.398438 180.871094 291.398438 C 180.988281 291.398438 181.082031 291.304688 181.082031 291.1875 Z M 181.082031 291.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.746094 292.113281 C 179.746094 291.996094 179.652344 291.902344 179.535156 291.902344 C 179.417969 291.902344 179.324219 291.996094 179.324219 292.113281 C 179.324219 292.230469 179.417969 292.324219 179.535156 292.324219 C 179.652344 292.324219 179.746094 292.230469 179.746094 292.113281 Z M 179.746094 292.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181 284.679688 C 181 284.5625 180.90625 284.46875 180.789062 284.46875 C 180.671875 284.46875 180.578125 284.5625 180.578125 284.679688 C 180.578125 284.796875 180.671875 284.890625 180.789062 284.890625 C 180.90625 284.890625 181 284.796875 181 284.679688 Z M 181 284.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.75 288.171875 C 183.75 288.054688 183.65625 287.960938 183.539062 287.960938 C 183.421875 287.960938 183.328125 288.054688 183.328125 288.171875 C 183.328125 288.289062 183.421875 288.382812 183.539062 288.382812 C 183.65625 288.382812 183.75 288.289062 183.75 288.171875 Z M 183.75 288.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.667969 288.820312 C 180.667969 288.703125 180.574219 288.609375 180.457031 288.609375 C 180.339844 288.609375 180.246094 288.703125 180.246094 288.820312 C 180.246094 288.9375 180.339844 289.03125 180.457031 289.03125 C 180.574219 289.03125 180.667969 288.9375 180.667969 288.820312 Z M 180.667969 288.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.148438 287.863281 C 180.148438 287.746094 180.054688 287.652344 179.9375 287.652344 C 179.820312 287.652344 179.726562 287.746094 179.726562 287.863281 C 179.726562 287.980469 179.820312 288.074219 179.9375 288.074219 C 180.054688 288.074219 180.148438 287.980469 180.148438 287.863281 Z M 180.148438 287.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.703125 287.054688 C 180.703125 286.9375 180.609375 286.84375 180.492188 286.84375 C 180.375 286.84375 180.28125 286.9375 180.28125 287.054688 C 180.28125 287.171875 180.375 287.265625 180.492188 287.265625 C 180.609375 287.265625 180.703125 287.171875 180.703125 287.054688 Z M 180.703125 287.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.632812 288.085938 C 177.632812 287.96875 177.539062 287.875 177.421875 287.875 C 177.304688 287.875 177.210938 287.96875 177.210938 288.085938 C 177.210938 288.203125 177.304688 288.296875 177.421875 288.296875 C 177.539062 288.296875 177.632812 288.203125 177.632812 288.085938 Z M 177.632812 288.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.921875 290.054688 C 179.921875 289.9375 179.828125 289.84375 179.710938 289.84375 C 179.59375 289.84375 179.5 289.9375 179.5 290.054688 C 179.5 290.171875 179.59375 290.265625 179.710938 290.265625 C 179.828125 290.265625 179.921875 290.171875 179.921875 290.054688 Z M 179.921875 290.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.9375 289.324219 C 179.9375 289.207031 179.84375 289.113281 179.726562 289.113281 C 179.609375 289.113281 179.515625 289.207031 179.515625 289.324219 C 179.515625 289.441406 179.609375 289.535156 179.726562 289.535156 C 179.84375 289.535156 179.9375 289.441406 179.9375 289.324219 Z M 179.9375 289.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.9375 289.121094 C 180.9375 289.003906 180.84375 288.910156 180.726562 288.910156 C 180.609375 288.910156 180.515625 289.003906 180.515625 289.121094 C 180.515625 289.238281 180.609375 289.332031 180.726562 289.332031 C 180.84375 289.332031 180.9375 289.238281 180.9375 289.121094 Z M 180.9375 289.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.019531 292.433594 C 178.019531 292.316406 177.925781 292.222656 177.808594 292.222656 C 177.691406 292.222656 177.597656 292.316406 177.597656 292.433594 C 177.597656 292.550781 177.691406 292.644531 177.808594 292.644531 C 177.925781 292.644531 178.019531 292.550781 178.019531 292.433594 Z M 178.019531 292.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.496094 289.339844 C 179.496094 289.222656 179.402344 289.128906 179.285156 289.128906 C 179.167969 289.128906 179.074219 289.222656 179.074219 289.339844 C 179.074219 289.457031 179.167969 289.550781 179.285156 289.550781 C 179.402344 289.550781 179.496094 289.457031 179.496094 289.339844 Z M 179.496094 289.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.082031 290.023438 C 178.082031 289.90625 177.988281 289.8125 177.871094 289.8125 C 177.753906 289.8125 177.660156 289.90625 177.660156 290.023438 C 177.660156 290.140625 177.753906 290.234375 177.871094 290.234375 C 177.988281 290.234375 178.082031 290.140625 178.082031 290.023438 Z M 178.082031 290.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.160156 292.191406 C 177.160156 292.074219 177.066406 291.980469 176.949219 291.980469 C 176.832031 291.980469 176.738281 292.074219 176.738281 292.191406 C 176.738281 292.308594 176.832031 292.402344 176.949219 292.402344 C 177.066406 292.402344 177.160156 292.308594 177.160156 292.191406 Z M 177.160156 292.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.804688 293.746094 C 180.804688 293.628906 180.710938 293.535156 180.59375 293.535156 C 180.476562 293.535156 180.382812 293.628906 180.382812 293.746094 C 180.382812 293.863281 180.476562 293.957031 180.59375 293.957031 C 180.710938 293.957031 180.804688 293.863281 180.804688 293.746094 Z M 180.804688 293.746094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.640625 290.808594 C 179.640625 290.691406 179.546875 290.597656 179.429688 290.597656 C 179.3125 290.597656 179.21875 290.691406 179.21875 290.808594 C 179.21875 290.925781 179.3125 291.019531 179.429688 291.019531 C 179.546875 291.019531 179.640625 290.925781 179.640625 290.808594 Z M 179.640625 290.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.152344 293.679688 C 181.152344 293.5625 181.058594 293.46875 180.941406 293.46875 C 180.824219 293.46875 180.730469 293.5625 180.730469 293.679688 C 180.730469 293.796875 180.824219 293.890625 180.941406 293.890625 C 181.058594 293.890625 181.152344 293.796875 181.152344 293.679688 Z M 181.152344 293.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.152344 295.03125 C 176.152344 294.914062 176.058594 294.820312 175.941406 294.820312 C 175.824219 294.820312 175.730469 294.914062 175.730469 295.03125 C 175.730469 295.148438 175.824219 295.242188 175.941406 295.242188 C 176.058594 295.242188 176.152344 295.148438 176.152344 295.03125 Z M 176.152344 295.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.605469 293 C 173.605469 292.882812 173.511719 292.789062 173.394531 292.789062 C 173.277344 292.789062 173.183594 292.882812 173.183594 293 C 173.183594 293.117188 173.277344 293.210938 173.394531 293.210938 C 173.511719 293.210938 173.605469 293.117188 173.605469 293 Z M 173.605469 293 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.464844 288.53125 C 175.464844 288.414062 175.371094 288.320312 175.253906 288.320312 C 175.136719 288.320312 175.042969 288.414062 175.042969 288.53125 C 175.042969 288.648438 175.136719 288.742188 175.253906 288.742188 C 175.371094 288.742188 175.464844 288.648438 175.464844 288.53125 Z M 175.464844 288.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.519531 288.785156 C 179.519531 288.667969 179.425781 288.574219 179.308594 288.574219 C 179.191406 288.574219 179.097656 288.667969 179.097656 288.785156 C 179.097656 288.902344 179.191406 288.996094 179.308594 288.996094 C 179.425781 288.996094 179.519531 288.902344 179.519531 288.785156 Z M 179.519531 288.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.84375 286.984375 C 180.84375 286.867188 180.75 286.773438 180.632812 286.773438 C 180.515625 286.773438 180.421875 286.867188 180.421875 286.984375 C 180.421875 287.101562 180.515625 287.195312 180.632812 287.195312 C 180.75 287.195312 180.84375 287.101562 180.84375 286.984375 Z M 180.84375 286.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.761719 287.859375 C 182.761719 287.742188 182.667969 287.648438 182.550781 287.648438 C 182.433594 287.648438 182.339844 287.742188 182.339844 287.859375 C 182.339844 287.976562 182.433594 288.070312 182.550781 288.070312 C 182.667969 288.070312 182.761719 287.976562 182.761719 287.859375 Z M 182.761719 287.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.945312 292.269531 C 178.945312 292.152344 178.851562 292.058594 178.734375 292.058594 C 178.617188 292.058594 178.523438 292.152344 178.523438 292.269531 C 178.523438 292.386719 178.617188 292.480469 178.734375 292.480469 C 178.851562 292.480469 178.945312 292.386719 178.945312 292.269531 Z M 178.945312 292.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.171875 292.128906 C 181.171875 292.011719 181.078125 291.917969 180.960938 291.917969 C 180.84375 291.917969 180.75 292.011719 180.75 292.128906 C 180.75 292.246094 180.84375 292.339844 180.960938 292.339844 C 181.078125 292.339844 181.171875 292.246094 181.171875 292.128906 Z M 181.171875 292.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.8125 290.21875 C 182.8125 290.101562 182.71875 290.007812 182.601562 290.007812 C 182.484375 290.007812 182.390625 290.101562 182.390625 290.21875 C 182.390625 290.335938 182.484375 290.429688 182.601562 290.429688 C 182.71875 290.429688 182.8125 290.335938 182.8125 290.21875 Z M 182.8125 290.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.824219 288.753906 C 186.824219 288.636719 186.730469 288.542969 186.613281 288.542969 C 186.496094 288.542969 186.402344 288.636719 186.402344 288.753906 C 186.402344 288.871094 186.496094 288.964844 186.613281 288.964844 C 186.730469 288.964844 186.824219 288.871094 186.824219 288.753906 Z M 186.824219 288.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.90625 287.167969 C 186.90625 287.050781 186.8125 286.957031 186.695312 286.957031 C 186.578125 286.957031 186.484375 287.050781 186.484375 287.167969 C 186.484375 287.285156 186.578125 287.378906 186.695312 287.378906 C 186.8125 287.378906 186.90625 287.285156 186.90625 287.167969 Z M 186.90625 287.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.859375 283.863281 C 189.859375 283.746094 189.765625 283.652344 189.648438 283.652344 C 189.53125 283.652344 189.4375 283.746094 189.4375 283.863281 C 189.4375 283.980469 189.53125 284.074219 189.648438 284.074219 C 189.765625 284.074219 189.859375 283.980469 189.859375 283.863281 Z M 189.859375 283.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.046875 286.132812 C 188.046875 286.015625 187.953125 285.921875 187.835938 285.921875 C 187.71875 285.921875 187.625 286.015625 187.625 286.132812 C 187.625 286.25 187.71875 286.34375 187.835938 286.34375 C 187.953125 286.34375 188.046875 286.25 188.046875 286.132812 Z M 188.046875 286.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.050781 283.234375 C 189.050781 283.117188 188.957031 283.023438 188.839844 283.023438 C 188.722656 283.023438 188.628906 283.117188 188.628906 283.234375 C 188.628906 283.351562 188.722656 283.445312 188.839844 283.445312 C 188.957031 283.445312 189.050781 283.351562 189.050781 283.234375 Z M 189.050781 283.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.078125 285.21875 C 187.078125 285.101562 186.984375 285.007812 186.867188 285.007812 C 186.75 285.007812 186.65625 285.101562 186.65625 285.21875 C 186.65625 285.335938 186.75 285.429688 186.867188 285.429688 C 186.984375 285.429688 187.078125 285.335938 187.078125 285.21875 Z M 187.078125 285.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.394531 283.34375 C 186.394531 283.226562 186.300781 283.132812 186.183594 283.132812 C 186.066406 283.132812 185.972656 283.226562 185.972656 283.34375 C 185.972656 283.460938 186.066406 283.554688 186.183594 283.554688 C 186.300781 283.554688 186.394531 283.460938 186.394531 283.34375 Z M 186.394531 283.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.769531 281.640625 C 184.769531 281.523438 184.675781 281.429688 184.558594 281.429688 C 184.441406 281.429688 184.347656 281.523438 184.347656 281.640625 C 184.347656 281.757812 184.441406 281.851562 184.558594 281.851562 C 184.675781 281.851562 184.769531 281.757812 184.769531 281.640625 Z M 184.769531 281.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.332031 283.4375 C 186.332031 283.320312 186.238281 283.226562 186.121094 283.226562 C 186.003906 283.226562 185.910156 283.320312 185.910156 283.4375 C 185.910156 283.554688 186.003906 283.648438 186.121094 283.648438 C 186.238281 283.648438 186.332031 283.554688 186.332031 283.4375 Z M 186.332031 283.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.789062 284.816406 C 183.789062 284.699219 183.695312 284.605469 183.578125 284.605469 C 183.460938 284.605469 183.367188 284.699219 183.367188 284.816406 C 183.367188 284.933594 183.460938 285.027344 183.578125 285.027344 C 183.695312 285.027344 183.789062 284.933594 183.789062 284.816406 Z M 183.789062 284.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.789062 285.902344 C 183.789062 285.785156 183.695312 285.691406 183.578125 285.691406 C 183.460938 285.691406 183.367188 285.785156 183.367188 285.902344 C 183.367188 286.019531 183.460938 286.113281 183.578125 286.113281 C 183.695312 286.113281 183.789062 286.019531 183.789062 285.902344 Z M 183.789062 285.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.113281 282.332031 C 183.113281 282.214844 183.019531 282.121094 182.902344 282.121094 C 182.785156 282.121094 182.691406 282.214844 182.691406 282.332031 C 182.691406 282.449219 182.785156 282.542969 182.902344 282.542969 C 183.019531 282.542969 183.113281 282.449219 183.113281 282.332031 Z M 183.113281 282.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.667969 282.164062 C 181.667969 282.046875 181.574219 281.953125 181.457031 281.953125 C 181.339844 281.953125 181.246094 282.046875 181.246094 282.164062 C 181.246094 282.28125 181.339844 282.375 181.457031 282.375 C 181.574219 282.375 181.667969 282.28125 181.667969 282.164062 Z M 181.667969 282.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.425781 284.785156 C 182.425781 284.667969 182.332031 284.574219 182.214844 284.574219 C 182.097656 284.574219 182.003906 284.667969 182.003906 284.785156 C 182.003906 284.902344 182.097656 284.996094 182.214844 284.996094 C 182.332031 284.996094 182.425781 284.902344 182.425781 284.785156 Z M 182.425781 284.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.285156 284.621094 C 185.285156 284.503906 185.191406 284.410156 185.074219 284.410156 C 184.957031 284.410156 184.863281 284.503906 184.863281 284.621094 C 184.863281 284.738281 184.957031 284.832031 185.074219 284.832031 C 185.191406 284.832031 185.285156 284.738281 185.285156 284.621094 Z M 185.285156 284.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.511719 283.394531 C 188.511719 283.277344 188.417969 283.183594 188.300781 283.183594 C 188.183594 283.183594 188.089844 283.277344 188.089844 283.394531 C 188.089844 283.511719 188.183594 283.605469 188.300781 283.605469 C 188.417969 283.605469 188.511719 283.511719 188.511719 283.394531 Z M 188.511719 283.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.664062 281.945312 C 191.664062 281.828125 191.570312 281.734375 191.453125 281.734375 C 191.335938 281.734375 191.242188 281.828125 191.242188 281.945312 C 191.242188 282.0625 191.335938 282.15625 191.453125 282.15625 C 191.570312 282.15625 191.664062 282.0625 191.664062 281.945312 Z M 191.664062 281.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.753906 278.148438 C 193.753906 278.03125 193.660156 277.9375 193.542969 277.9375 C 193.425781 277.9375 193.332031 278.03125 193.332031 278.148438 C 193.332031 278.265625 193.425781 278.359375 193.542969 278.359375 C 193.660156 278.359375 193.753906 278.265625 193.753906 278.148438 Z M 193.753906 278.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.285156 276.878906 C 191.285156 276.761719 191.191406 276.667969 191.074219 276.667969 C 190.957031 276.667969 190.863281 276.761719 190.863281 276.878906 C 190.863281 276.996094 190.957031 277.089844 191.074219 277.089844 C 191.191406 277.089844 191.285156 276.996094 191.285156 276.878906 Z M 191.285156 276.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.316406 277.425781 C 191.316406 277.308594 191.222656 277.214844 191.105469 277.214844 C 190.988281 277.214844 190.894531 277.308594 190.894531 277.425781 C 190.894531 277.542969 190.988281 277.636719 191.105469 277.636719 C 191.222656 277.636719 191.316406 277.542969 191.316406 277.425781 Z M 191.316406 277.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.183594 275.691406 C 196.183594 275.574219 196.089844 275.480469 195.972656 275.480469 C 195.855469 275.480469 195.761719 275.574219 195.761719 275.691406 C 195.761719 275.808594 195.855469 275.902344 195.972656 275.902344 C 196.089844 275.902344 196.183594 275.808594 196.183594 275.691406 Z M 196.183594 275.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.101562 277.507812 C 191.101562 277.390625 191.007812 277.296875 190.890625 277.296875 C 190.773438 277.296875 190.679688 277.390625 190.679688 277.507812 C 190.679688 277.625 190.773438 277.71875 190.890625 277.71875 C 191.007812 277.71875 191.101562 277.625 191.101562 277.507812 Z M 191.101562 277.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.9375 275.359375 C 188.9375 275.242188 188.84375 275.148438 188.726562 275.148438 C 188.609375 275.148438 188.515625 275.242188 188.515625 275.359375 C 188.515625 275.476562 188.609375 275.570312 188.726562 275.570312 C 188.84375 275.570312 188.9375 275.476562 188.9375 275.359375 Z M 188.9375 275.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.171875 274.117188 C 190.171875 274 190.078125 273.90625 189.960938 273.90625 C 189.84375 273.90625 189.75 274 189.75 274.117188 C 189.75 274.234375 189.84375 274.328125 189.960938 274.328125 C 190.078125 274.328125 190.171875 274.234375 190.171875 274.117188 Z M 190.171875 274.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.1875 273.707031 C 193.1875 273.589844 193.09375 273.496094 192.976562 273.496094 C 192.859375 273.496094 192.765625 273.589844 192.765625 273.707031 C 192.765625 273.824219 192.859375 273.917969 192.976562 273.917969 C 193.09375 273.917969 193.1875 273.824219 193.1875 273.707031 Z M 193.1875 273.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.632812 271.851562 C 195.632812 271.734375 195.539062 271.640625 195.421875 271.640625 C 195.304688 271.640625 195.210938 271.734375 195.210938 271.851562 C 195.210938 271.96875 195.304688 272.0625 195.421875 272.0625 C 195.539062 272.0625 195.632812 271.96875 195.632812 271.851562 Z M 195.632812 271.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.964844 270.800781 C 195.964844 270.683594 195.871094 270.589844 195.753906 270.589844 C 195.636719 270.589844 195.542969 270.683594 195.542969 270.800781 C 195.542969 270.917969 195.636719 271.011719 195.753906 271.011719 C 195.871094 271.011719 195.964844 270.917969 195.964844 270.800781 Z M 195.964844 270.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.703125 272.84375 C 193.703125 272.726562 193.609375 272.632812 193.492188 272.632812 C 193.375 272.632812 193.28125 272.726562 193.28125 272.84375 C 193.28125 272.960938 193.375 273.054688 193.492188 273.054688 C 193.609375 273.054688 193.703125 272.960938 193.703125 272.84375 Z M 193.703125 272.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.515625 272.234375 C 192.515625 272.117188 192.421875 272.023438 192.304688 272.023438 C 192.1875 272.023438 192.09375 272.117188 192.09375 272.234375 C 192.09375 272.351562 192.1875 272.445312 192.304688 272.445312 C 192.421875 272.445312 192.515625 272.351562 192.515625 272.234375 Z M 192.515625 272.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.472656 268.144531 C 192.472656 268.027344 192.378906 267.933594 192.261719 267.933594 C 192.144531 267.933594 192.050781 268.027344 192.050781 268.144531 C 192.050781 268.261719 192.144531 268.355469 192.261719 268.355469 C 192.378906 268.355469 192.472656 268.261719 192.472656 268.144531 Z M 192.472656 268.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.398438 268.785156 C 193.398438 268.667969 193.304688 268.574219 193.1875 268.574219 C 193.070312 268.574219 192.976562 268.667969 192.976562 268.785156 C 192.976562 268.902344 193.070312 268.996094 193.1875 268.996094 C 193.304688 268.996094 193.398438 268.902344 193.398438 268.785156 Z M 193.398438 268.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.109375 273.328125 C 191.109375 273.210938 191.015625 273.117188 190.898438 273.117188 C 190.78125 273.117188 190.6875 273.210938 190.6875 273.328125 C 190.6875 273.445312 190.78125 273.539062 190.898438 273.539062 C 191.015625 273.539062 191.109375 273.445312 191.109375 273.328125 Z M 191.109375 273.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.4375 274.304688 C 190.4375 274.1875 190.34375 274.09375 190.226562 274.09375 C 190.109375 274.09375 190.015625 274.1875 190.015625 274.304688 C 190.015625 274.421875 190.109375 274.515625 190.226562 274.515625 C 190.34375 274.515625 190.4375 274.421875 190.4375 274.304688 Z M 190.4375 274.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.226562 277.183594 C 189.226562 277.066406 189.132812 276.972656 189.015625 276.972656 C 188.898438 276.972656 188.804688 277.066406 188.804688 277.183594 C 188.804688 277.300781 188.898438 277.394531 189.015625 277.394531 C 189.132812 277.394531 189.226562 277.300781 189.226562 277.183594 Z M 189.226562 277.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.324219 277.734375 C 186.324219 277.617188 186.230469 277.523438 186.113281 277.523438 C 185.996094 277.523438 185.902344 277.617188 185.902344 277.734375 C 185.902344 277.851562 185.996094 277.945312 186.113281 277.945312 C 186.230469 277.945312 186.324219 277.851562 186.324219 277.734375 Z M 186.324219 277.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.734375 278.460938 C 187.734375 278.34375 187.640625 278.25 187.523438 278.25 C 187.40625 278.25 187.3125 278.34375 187.3125 278.460938 C 187.3125 278.578125 187.40625 278.671875 187.523438 278.671875 C 187.640625 278.671875 187.734375 278.578125 187.734375 278.460938 Z M 187.734375 278.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.949219 278.417969 C 182.949219 278.300781 182.855469 278.207031 182.738281 278.207031 C 182.621094 278.207031 182.527344 278.300781 182.527344 278.417969 C 182.527344 278.535156 182.621094 278.628906 182.738281 278.628906 C 182.855469 278.628906 182.949219 278.535156 182.949219 278.417969 Z M 182.949219 278.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.753906 278.605469 C 182.753906 278.488281 182.660156 278.394531 182.542969 278.394531 C 182.425781 278.394531 182.332031 278.488281 182.332031 278.605469 C 182.332031 278.722656 182.425781 278.816406 182.542969 278.816406 C 182.660156 278.816406 182.753906 278.722656 182.753906 278.605469 Z M 182.753906 278.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.960938 279.347656 C 180.960938 279.230469 180.867188 279.136719 180.75 279.136719 C 180.632812 279.136719 180.539062 279.230469 180.539062 279.347656 C 180.539062 279.464844 180.632812 279.558594 180.75 279.558594 C 180.867188 279.558594 180.960938 279.464844 180.960938 279.347656 Z M 180.960938 279.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.375 277.605469 C 183.375 277.488281 183.28125 277.394531 183.164062 277.394531 C 183.046875 277.394531 182.953125 277.488281 182.953125 277.605469 C 182.953125 277.722656 183.046875 277.816406 183.164062 277.816406 C 183.28125 277.816406 183.375 277.722656 183.375 277.605469 Z M 183.375 277.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.484375 277.292969 C 188.484375 277.175781 188.390625 277.082031 188.273438 277.082031 C 188.15625 277.082031 188.0625 277.175781 188.0625 277.292969 C 188.0625 277.410156 188.15625 277.503906 188.273438 277.503906 C 188.390625 277.503906 188.484375 277.410156 188.484375 277.292969 Z M 188.484375 277.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.523438 276.875 C 189.523438 276.757812 189.429688 276.664062 189.3125 276.664062 C 189.195312 276.664062 189.101562 276.757812 189.101562 276.875 C 189.101562 276.992188 189.195312 277.085938 189.3125 277.085938 C 189.429688 277.085938 189.523438 276.992188 189.523438 276.875 Z M 189.523438 276.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.414062 280.027344 C 190.414062 279.910156 190.320312 279.816406 190.203125 279.816406 C 190.085938 279.816406 189.992188 279.910156 189.992188 280.027344 C 189.992188 280.144531 190.085938 280.238281 190.203125 280.238281 C 190.320312 280.238281 190.414062 280.144531 190.414062 280.027344 Z M 190.414062 280.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.285156 278.949219 C 192.285156 278.832031 192.191406 278.738281 192.074219 278.738281 C 191.957031 278.738281 191.863281 278.832031 191.863281 278.949219 C 191.863281 279.066406 191.957031 279.160156 192.074219 279.160156 C 192.191406 279.160156 192.285156 279.066406 192.285156 278.949219 Z M 192.285156 278.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.300781 281.679688 C 194.300781 281.5625 194.207031 281.46875 194.089844 281.46875 C 193.972656 281.46875 193.878906 281.5625 193.878906 281.679688 C 193.878906 281.796875 193.972656 281.890625 194.089844 281.890625 C 194.207031 281.890625 194.300781 281.796875 194.300781 281.679688 Z M 194.300781 281.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.496094 284.191406 C 193.496094 284.074219 193.402344 283.980469 193.285156 283.980469 C 193.167969 283.980469 193.074219 284.074219 193.074219 284.191406 C 193.074219 284.308594 193.167969 284.402344 193.285156 284.402344 C 193.402344 284.402344 193.496094 284.308594 193.496094 284.191406 Z M 193.496094 284.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.132812 278.804688 C 190.132812 278.6875 190.039062 278.59375 189.921875 278.59375 C 189.804688 278.59375 189.710938 278.6875 189.710938 278.804688 C 189.710938 278.921875 189.804688 279.015625 189.921875 279.015625 C 190.039062 279.015625 190.132812 278.921875 190.132812 278.804688 Z M 190.132812 278.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.675781 279.054688 C 190.675781 278.9375 190.582031 278.84375 190.464844 278.84375 C 190.347656 278.84375 190.253906 278.9375 190.253906 279.054688 C 190.253906 279.171875 190.347656 279.265625 190.464844 279.265625 C 190.582031 279.265625 190.675781 279.171875 190.675781 279.054688 Z M 190.675781 279.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.546875 277.707031 C 186.546875 277.589844 186.453125 277.496094 186.335938 277.496094 C 186.21875 277.496094 186.125 277.589844 186.125 277.707031 C 186.125 277.824219 186.21875 277.917969 186.335938 277.917969 C 186.453125 277.917969 186.546875 277.824219 186.546875 277.707031 Z M 186.546875 277.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.800781 276.863281 C 188.800781 276.746094 188.707031 276.652344 188.589844 276.652344 C 188.472656 276.652344 188.378906 276.746094 188.378906 276.863281 C 188.378906 276.980469 188.472656 277.074219 188.589844 277.074219 C 188.707031 277.074219 188.800781 276.980469 188.800781 276.863281 Z M 188.800781 276.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.265625 273.878906 C 187.265625 273.761719 187.171875 273.667969 187.054688 273.667969 C 186.9375 273.667969 186.84375 273.761719 186.84375 273.878906 C 186.84375 273.996094 186.9375 274.089844 187.054688 274.089844 C 187.171875 274.089844 187.265625 273.996094 187.265625 273.878906 Z M 187.265625 273.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.707031 274.53125 C 189.707031 274.414062 189.613281 274.320312 189.496094 274.320312 C 189.378906 274.320312 189.285156 274.414062 189.285156 274.53125 C 189.285156 274.648438 189.378906 274.742188 189.496094 274.742188 C 189.613281 274.742188 189.707031 274.648438 189.707031 274.53125 Z M 189.707031 274.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.464844 272.695312 C 195.464844 272.578125 195.371094 272.484375 195.253906 272.484375 C 195.136719 272.484375 195.042969 272.578125 195.042969 272.695312 C 195.042969 272.8125 195.136719 272.90625 195.253906 272.90625 C 195.371094 272.90625 195.464844 272.8125 195.464844 272.695312 Z M 195.464844 272.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.035156 275.535156 C 196.035156 275.417969 195.941406 275.324219 195.824219 275.324219 C 195.707031 275.324219 195.613281 275.417969 195.613281 275.535156 C 195.613281 275.652344 195.707031 275.746094 195.824219 275.746094 C 195.941406 275.746094 196.035156 275.652344 196.035156 275.535156 Z M 196.035156 275.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.972656 274.015625 C 193.972656 273.898438 193.878906 273.804688 193.761719 273.804688 C 193.644531 273.804688 193.550781 273.898438 193.550781 274.015625 C 193.550781 274.132812 193.644531 274.226562 193.761719 274.226562 C 193.878906 274.226562 193.972656 274.132812 193.972656 274.015625 Z M 193.972656 274.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.390625 275.230469 C 195.390625 275.113281 195.296875 275.019531 195.179688 275.019531 C 195.0625 275.019531 194.96875 275.113281 194.96875 275.230469 C 194.96875 275.347656 195.0625 275.441406 195.179688 275.441406 C 195.296875 275.441406 195.390625 275.347656 195.390625 275.230469 Z M 195.390625 275.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.105469 270.710938 C 195.105469 270.59375 195.011719 270.5 194.894531 270.5 C 194.777344 270.5 194.683594 270.59375 194.683594 270.710938 C 194.683594 270.828125 194.777344 270.921875 194.894531 270.921875 C 195.011719 270.921875 195.105469 270.828125 195.105469 270.710938 Z M 195.105469 270.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.871094 270.550781 C 195.871094 270.433594 195.777344 270.339844 195.660156 270.339844 C 195.542969 270.339844 195.449219 270.433594 195.449219 270.550781 C 195.449219 270.667969 195.542969 270.761719 195.660156 270.761719 C 195.777344 270.761719 195.871094 270.667969 195.871094 270.550781 Z M 195.871094 270.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.875 271.050781 C 193.875 270.933594 193.78125 270.839844 193.664062 270.839844 C 193.546875 270.839844 193.453125 270.933594 193.453125 271.050781 C 193.453125 271.167969 193.546875 271.261719 193.664062 271.261719 C 193.78125 271.261719 193.875 271.167969 193.875 271.050781 Z M 193.875 271.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.933594 271.867188 C 193.933594 271.75 193.839844 271.65625 193.722656 271.65625 C 193.605469 271.65625 193.511719 271.75 193.511719 271.867188 C 193.511719 271.984375 193.605469 272.078125 193.722656 272.078125 C 193.839844 272.078125 193.933594 271.984375 193.933594 271.867188 Z M 193.933594 271.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.988281 270.84375 C 193.988281 270.726562 193.894531 270.632812 193.777344 270.632812 C 193.660156 270.632812 193.566406 270.726562 193.566406 270.84375 C 193.566406 270.960938 193.660156 271.054688 193.777344 271.054688 C 193.894531 271.054688 193.988281 270.960938 193.988281 270.84375 Z M 193.988281 270.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.941406 270.320312 C 192.941406 270.203125 192.847656 270.109375 192.730469 270.109375 C 192.613281 270.109375 192.519531 270.203125 192.519531 270.320312 C 192.519531 270.4375 192.613281 270.53125 192.730469 270.53125 C 192.847656 270.53125 192.941406 270.4375 192.941406 270.320312 Z M 192.941406 270.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.171875 271.125 C 196.171875 271.007812 196.078125 270.914062 195.960938 270.914062 C 195.84375 270.914062 195.75 271.007812 195.75 271.125 C 195.75 271.242188 195.84375 271.335938 195.960938 271.335938 C 196.078125 271.335938 196.171875 271.242188 196.171875 271.125 Z M 196.171875 271.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.882812 272.265625 C 197.882812 272.148438 197.789062 272.054688 197.671875 272.054688 C 197.554688 272.054688 197.460938 272.148438 197.460938 272.265625 C 197.460938 272.382812 197.554688 272.476562 197.671875 272.476562 C 197.789062 272.476562 197.882812 272.382812 197.882812 272.265625 Z M 197.882812 272.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.8125 272.308594 C 196.8125 272.191406 196.71875 272.097656 196.601562 272.097656 C 196.484375 272.097656 196.390625 272.191406 196.390625 272.308594 C 196.390625 272.425781 196.484375 272.519531 196.601562 272.519531 C 196.71875 272.519531 196.8125 272.425781 196.8125 272.308594 Z M 196.8125 272.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.605469 273.785156 C 195.605469 273.667969 195.511719 273.574219 195.394531 273.574219 C 195.277344 273.574219 195.183594 273.667969 195.183594 273.785156 C 195.183594 273.902344 195.277344 273.996094 195.394531 273.996094 C 195.511719 273.996094 195.605469 273.902344 195.605469 273.785156 Z M 195.605469 273.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.003906 273.839844 C 191.003906 273.722656 190.910156 273.628906 190.792969 273.628906 C 190.675781 273.628906 190.582031 273.722656 190.582031 273.839844 C 190.582031 273.957031 190.675781 274.050781 190.792969 274.050781 C 190.910156 274.050781 191.003906 273.957031 191.003906 273.839844 Z M 191.003906 273.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.8125 276.996094 C 189.8125 276.878906 189.71875 276.785156 189.601562 276.785156 C 189.484375 276.785156 189.390625 276.878906 189.390625 276.996094 C 189.390625 277.113281 189.484375 277.207031 189.601562 277.207031 C 189.71875 277.207031 189.8125 277.113281 189.8125 276.996094 Z M 189.8125 276.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.484375 278.292969 C 189.484375 278.175781 189.390625 278.082031 189.273438 278.082031 C 189.15625 278.082031 189.0625 278.175781 189.0625 278.292969 C 189.0625 278.410156 189.15625 278.503906 189.273438 278.503906 C 189.390625 278.503906 189.484375 278.410156 189.484375 278.292969 Z M 189.484375 278.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.96875 280.167969 C 188.96875 280.050781 188.875 279.957031 188.757812 279.957031 C 188.640625 279.957031 188.546875 280.050781 188.546875 280.167969 C 188.546875 280.285156 188.640625 280.378906 188.757812 280.378906 C 188.875 280.378906 188.96875 280.285156 188.96875 280.167969 Z M 188.96875 280.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.191406 276.804688 C 189.191406 276.6875 189.097656 276.59375 188.980469 276.59375 C 188.863281 276.59375 188.769531 276.6875 188.769531 276.804688 C 188.769531 276.921875 188.863281 277.015625 188.980469 277.015625 C 189.097656 277.015625 189.191406 276.921875 189.191406 276.804688 Z M 189.191406 276.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.285156 274.988281 C 189.285156 274.871094 189.191406 274.777344 189.074219 274.777344 C 188.957031 274.777344 188.863281 274.871094 188.863281 274.988281 C 188.863281 275.105469 188.957031 275.199219 189.074219 275.199219 C 189.191406 275.199219 189.285156 275.105469 189.285156 274.988281 Z M 189.285156 274.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.851562 276.425781 C 187.851562 276.308594 187.757812 276.214844 187.640625 276.214844 C 187.523438 276.214844 187.429688 276.308594 187.429688 276.425781 C 187.429688 276.542969 187.523438 276.636719 187.640625 276.636719 C 187.757812 276.636719 187.851562 276.542969 187.851562 276.425781 Z M 187.851562 276.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.816406 276.480469 C 186.816406 276.363281 186.722656 276.269531 186.605469 276.269531 C 186.488281 276.269531 186.394531 276.363281 186.394531 276.480469 C 186.394531 276.597656 186.488281 276.691406 186.605469 276.691406 C 186.722656 276.691406 186.816406 276.597656 186.816406 276.480469 Z M 186.816406 276.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.886719 276.625 C 185.886719 276.507812 185.792969 276.414062 185.675781 276.414062 C 185.558594 276.414062 185.464844 276.507812 185.464844 276.625 C 185.464844 276.742188 185.558594 276.835938 185.675781 276.835938 C 185.792969 276.835938 185.886719 276.742188 185.886719 276.625 Z M 185.886719 276.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.242188 275.566406 C 187.242188 275.449219 187.148438 275.355469 187.03125 275.355469 C 186.914062 275.355469 186.820312 275.449219 186.820312 275.566406 C 186.820312 275.683594 186.914062 275.777344 187.03125 275.777344 C 187.148438 275.777344 187.242188 275.683594 187.242188 275.566406 Z M 187.242188 275.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.027344 275.023438 C 189.027344 274.90625 188.933594 274.8125 188.816406 274.8125 C 188.699219 274.8125 188.605469 274.90625 188.605469 275.023438 C 188.605469 275.140625 188.699219 275.234375 188.816406 275.234375 C 188.933594 275.234375 189.027344 275.140625 189.027344 275.023438 Z M 189.027344 275.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.378906 274.503906 C 191.378906 274.386719 191.285156 274.292969 191.167969 274.292969 C 191.050781 274.292969 190.957031 274.386719 190.957031 274.503906 C 190.957031 274.621094 191.050781 274.714844 191.167969 274.714844 C 191.285156 274.714844 191.378906 274.621094 191.378906 274.503906 Z M 191.378906 274.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.210938 270.832031 C 192.210938 270.714844 192.117188 270.621094 192 270.621094 C 191.882812 270.621094 191.789062 270.714844 191.789062 270.832031 C 191.789062 270.949219 191.882812 271.042969 192 271.042969 C 192.117188 271.042969 192.210938 270.949219 192.210938 270.832031 Z M 192.210938 270.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.410156 269.597656 C 188.410156 269.480469 188.316406 269.386719 188.199219 269.386719 C 188.082031 269.386719 187.988281 269.480469 187.988281 269.597656 C 187.988281 269.714844 188.082031 269.808594 188.199219 269.808594 C 188.316406 269.808594 188.410156 269.714844 188.410156 269.597656 Z M 188.410156 269.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.640625 266.492188 C 188.640625 266.375 188.546875 266.28125 188.429688 266.28125 C 188.3125 266.28125 188.21875 266.375 188.21875 266.492188 C 188.21875 266.609375 188.3125 266.703125 188.429688 266.703125 C 188.546875 266.703125 188.640625 266.609375 188.640625 266.492188 Z M 188.640625 266.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.019531 268.355469 C 190.019531 268.238281 189.925781 268.144531 189.808594 268.144531 C 189.691406 268.144531 189.597656 268.238281 189.597656 268.355469 C 189.597656 268.472656 189.691406 268.566406 189.808594 268.566406 C 189.925781 268.566406 190.019531 268.472656 190.019531 268.355469 Z M 190.019531 268.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.09375 266.738281 C 189.09375 266.621094 189 266.527344 188.882812 266.527344 C 188.765625 266.527344 188.671875 266.621094 188.671875 266.738281 C 188.671875 266.855469 188.765625 266.949219 188.882812 266.949219 C 189 266.949219 189.09375 266.855469 189.09375 266.738281 Z M 189.09375 266.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.910156 262.328125 C 187.910156 262.210938 187.816406 262.117188 187.699219 262.117188 C 187.582031 262.117188 187.488281 262.210938 187.488281 262.328125 C 187.488281 262.445312 187.582031 262.539062 187.699219 262.539062 C 187.816406 262.539062 187.910156 262.445312 187.910156 262.328125 Z M 187.910156 262.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.707031 259.929688 C 189.707031 259.8125 189.613281 259.71875 189.496094 259.71875 C 189.378906 259.71875 189.285156 259.8125 189.285156 259.929688 C 189.285156 260.046875 189.378906 260.140625 189.496094 260.140625 C 189.613281 260.140625 189.707031 260.046875 189.707031 259.929688 Z M 189.707031 259.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.140625 258.664062 C 189.140625 258.546875 189.046875 258.453125 188.929688 258.453125 C 188.8125 258.453125 188.71875 258.546875 188.71875 258.664062 C 188.71875 258.78125 188.8125 258.875 188.929688 258.875 C 189.046875 258.875 189.140625 258.78125 189.140625 258.664062 Z M 189.140625 258.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.738281 258.378906 C 184.738281 258.261719 184.644531 258.167969 184.527344 258.167969 C 184.410156 258.167969 184.316406 258.261719 184.316406 258.378906 C 184.316406 258.496094 184.410156 258.589844 184.527344 258.589844 C 184.644531 258.589844 184.738281 258.496094 184.738281 258.378906 Z M 184.738281 258.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.535156 259.980469 C 186.535156 259.863281 186.441406 259.769531 186.324219 259.769531 C 186.207031 259.769531 186.113281 259.863281 186.113281 259.980469 C 186.113281 260.097656 186.207031 260.191406 186.324219 260.191406 C 186.441406 260.191406 186.535156 260.097656 186.535156 259.980469 Z M 186.535156 259.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.269531 257.480469 C 185.269531 257.363281 185.175781 257.269531 185.058594 257.269531 C 184.941406 257.269531 184.847656 257.363281 184.847656 257.480469 C 184.847656 257.597656 184.941406 257.691406 185.058594 257.691406 C 185.175781 257.691406 185.269531 257.597656 185.269531 257.480469 Z M 185.269531 257.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.050781 254.964844 C 186.050781 254.847656 185.957031 254.753906 185.839844 254.753906 C 185.722656 254.753906 185.628906 254.847656 185.628906 254.964844 C 185.628906 255.082031 185.722656 255.175781 185.839844 255.175781 C 185.957031 255.175781 186.050781 255.082031 186.050781 254.964844 Z M 186.050781 254.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.765625 256.902344 C 189.765625 256.785156 189.671875 256.691406 189.554688 256.691406 C 189.4375 256.691406 189.34375 256.785156 189.34375 256.902344 C 189.34375 257.019531 189.4375 257.113281 189.554688 257.113281 C 189.671875 257.113281 189.765625 257.019531 189.765625 256.902344 Z M 189.765625 256.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.28125 256.238281 C 188.28125 256.121094 188.1875 256.027344 188.070312 256.027344 C 187.953125 256.027344 187.859375 256.121094 187.859375 256.238281 C 187.859375 256.355469 187.953125 256.449219 188.070312 256.449219 C 188.1875 256.449219 188.28125 256.355469 188.28125 256.238281 Z M 188.28125 256.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.441406 256.890625 C 190.441406 256.773438 190.347656 256.679688 190.230469 256.679688 C 190.113281 256.679688 190.019531 256.773438 190.019531 256.890625 C 190.019531 257.007812 190.113281 257.101562 190.230469 257.101562 C 190.347656 257.101562 190.441406 257.007812 190.441406 256.890625 Z M 190.441406 256.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.101562 257.839844 C 188.101562 257.722656 188.007812 257.628906 187.890625 257.628906 C 187.773438 257.628906 187.679688 257.722656 187.679688 257.839844 C 187.679688 257.957031 187.773438 258.050781 187.890625 258.050781 C 188.007812 258.050781 188.101562 257.957031 188.101562 257.839844 Z M 188.101562 257.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.933594 257.019531 C 187.933594 256.902344 187.839844 256.808594 187.722656 256.808594 C 187.605469 256.808594 187.511719 256.902344 187.511719 257.019531 C 187.511719 257.136719 187.605469 257.230469 187.722656 257.230469 C 187.839844 257.230469 187.933594 257.136719 187.933594 257.019531 Z M 187.933594 257.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.921875 256.378906 C 186.921875 256.261719 186.828125 256.167969 186.710938 256.167969 C 186.59375 256.167969 186.5 256.261719 186.5 256.378906 C 186.5 256.496094 186.59375 256.589844 186.710938 256.589844 C 186.828125 256.589844 186.921875 256.496094 186.921875 256.378906 Z M 186.921875 256.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.878906 254.320312 C 190.878906 254.203125 190.785156 254.109375 190.667969 254.109375 C 190.550781 254.109375 190.457031 254.203125 190.457031 254.320312 C 190.457031 254.4375 190.550781 254.53125 190.667969 254.53125 C 190.785156 254.53125 190.878906 254.4375 190.878906 254.320312 Z M 190.878906 254.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.101562 255.316406 C 190.101562 255.199219 190.007812 255.105469 189.890625 255.105469 C 189.773438 255.105469 189.679688 255.199219 189.679688 255.316406 C 189.679688 255.433594 189.773438 255.527344 189.890625 255.527344 C 190.007812 255.527344 190.101562 255.433594 190.101562 255.316406 Z M 190.101562 255.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.648438 254.199219 C 190.648438 254.082031 190.554688 253.988281 190.4375 253.988281 C 190.320312 253.988281 190.226562 254.082031 190.226562 254.199219 C 190.226562 254.316406 190.320312 254.410156 190.4375 254.410156 C 190.554688 254.410156 190.648438 254.316406 190.648438 254.199219 Z M 190.648438 254.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.34375 258.046875 C 188.34375 257.929688 188.25 257.835938 188.132812 257.835938 C 188.015625 257.835938 187.921875 257.929688 187.921875 258.046875 C 187.921875 258.164062 188.015625 258.257812 188.132812 258.257812 C 188.25 258.257812 188.34375 258.164062 188.34375 258.046875 Z M 188.34375 258.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.421875 260.03125 C 185.421875 259.914062 185.328125 259.820312 185.210938 259.820312 C 185.09375 259.820312 185 259.914062 185 260.03125 C 185 260.148438 185.09375 260.242188 185.210938 260.242188 C 185.328125 260.242188 185.421875 260.148438 185.421875 260.03125 Z M 185.421875 260.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.097656 262.578125 C 183.097656 262.460938 183.003906 262.367188 182.886719 262.367188 C 182.769531 262.367188 182.675781 262.460938 182.675781 262.578125 C 182.675781 262.695312 182.769531 262.789062 182.886719 262.789062 C 183.003906 262.789062 183.097656 262.695312 183.097656 262.578125 Z M 183.097656 262.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.808594 263.410156 C 181.808594 263.292969 181.714844 263.199219 181.597656 263.199219 C 181.480469 263.199219 181.386719 263.292969 181.386719 263.410156 C 181.386719 263.527344 181.480469 263.621094 181.597656 263.621094 C 181.714844 263.621094 181.808594 263.527344 181.808594 263.410156 Z M 181.808594 263.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.730469 264.054688 C 180.730469 263.9375 180.636719 263.84375 180.519531 263.84375 C 180.402344 263.84375 180.308594 263.9375 180.308594 264.054688 C 180.308594 264.171875 180.402344 264.265625 180.519531 264.265625 C 180.636719 264.265625 180.730469 264.171875 180.730469 264.054688 Z M 180.730469 264.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.75 265.117188 C 181.75 265 181.65625 264.90625 181.539062 264.90625 C 181.421875 264.90625 181.328125 265 181.328125 265.117188 C 181.328125 265.234375 181.421875 265.328125 181.539062 265.328125 C 181.65625 265.328125 181.75 265.234375 181.75 265.117188 Z M 181.75 265.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.460938 263.371094 C 181.460938 263.253906 181.367188 263.160156 181.25 263.160156 C 181.132812 263.160156 181.039062 263.253906 181.039062 263.371094 C 181.039062 263.488281 181.132812 263.582031 181.25 263.582031 C 181.367188 263.582031 181.460938 263.488281 181.460938 263.371094 Z M 181.460938 263.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.792969 261.144531 C 179.792969 261.027344 179.699219 260.933594 179.582031 260.933594 C 179.464844 260.933594 179.371094 261.027344 179.371094 261.144531 C 179.371094 261.261719 179.464844 261.355469 179.582031 261.355469 C 179.699219 261.355469 179.792969 261.261719 179.792969 261.144531 Z M 179.792969 261.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.722656 264.25 C 181.722656 264.132812 181.628906 264.039062 181.511719 264.039062 C 181.394531 264.039062 181.300781 264.132812 181.300781 264.25 C 181.300781 264.367188 181.394531 264.460938 181.511719 264.460938 C 181.628906 264.460938 181.722656 264.367188 181.722656 264.25 Z M 181.722656 264.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.792969 263.585938 C 184.792969 263.46875 184.699219 263.375 184.582031 263.375 C 184.464844 263.375 184.371094 263.46875 184.371094 263.585938 C 184.371094 263.703125 184.464844 263.796875 184.582031 263.796875 C 184.699219 263.796875 184.792969 263.703125 184.792969 263.585938 Z M 184.792969 263.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.585938 264.398438 C 185.585938 264.28125 185.492188 264.1875 185.375 264.1875 C 185.257812 264.1875 185.164062 264.28125 185.164062 264.398438 C 185.164062 264.515625 185.257812 264.609375 185.375 264.609375 C 185.492188 264.609375 185.585938 264.515625 185.585938 264.398438 Z M 185.585938 264.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.566406 260.796875 C 182.566406 260.679688 182.472656 260.585938 182.355469 260.585938 C 182.238281 260.585938 182.144531 260.679688 182.144531 260.796875 C 182.144531 260.914062 182.238281 261.007812 182.355469 261.007812 C 182.472656 261.007812 182.566406 260.914062 182.566406 260.796875 Z M 182.566406 260.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.132812 261.019531 C 188.132812 260.902344 188.039062 260.808594 187.921875 260.808594 C 187.804688 260.808594 187.710938 260.902344 187.710938 261.019531 C 187.710938 261.136719 187.804688 261.230469 187.921875 261.230469 C 188.039062 261.230469 188.132812 261.136719 188.132812 261.019531 Z M 188.132812 261.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.390625 260.304688 C 192.390625 260.1875 192.296875 260.09375 192.179688 260.09375 C 192.0625 260.09375 191.96875 260.1875 191.96875 260.304688 C 191.96875 260.421875 192.0625 260.515625 192.179688 260.515625 C 192.296875 260.515625 192.390625 260.421875 192.390625 260.304688 Z M 192.390625 260.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.984375 258.300781 C 194.984375 258.183594 194.890625 258.089844 194.773438 258.089844 C 194.65625 258.089844 194.5625 258.183594 194.5625 258.300781 C 194.5625 258.417969 194.65625 258.511719 194.773438 258.511719 C 194.890625 258.511719 194.984375 258.417969 194.984375 258.300781 Z M 194.984375 258.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.613281 254.707031 C 196.613281 254.589844 196.519531 254.496094 196.402344 254.496094 C 196.285156 254.496094 196.191406 254.589844 196.191406 254.707031 C 196.191406 254.824219 196.285156 254.917969 196.402344 254.917969 C 196.519531 254.917969 196.613281 254.824219 196.613281 254.707031 Z M 196.613281 254.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.445312 253.308594 C 197.445312 253.191406 197.351562 253.097656 197.234375 253.097656 C 197.117188 253.097656 197.023438 253.191406 197.023438 253.308594 C 197.023438 253.425781 197.117188 253.519531 197.234375 253.519531 C 197.351562 253.519531 197.445312 253.425781 197.445312 253.308594 Z M 197.445312 253.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.21875 254.59375 C 198.21875 254.476562 198.125 254.382812 198.007812 254.382812 C 197.890625 254.382812 197.796875 254.476562 197.796875 254.59375 C 197.796875 254.710938 197.890625 254.804688 198.007812 254.804688 C 198.125 254.804688 198.21875 254.710938 198.21875 254.59375 Z M 198.21875 254.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.988281 254.28125 C 197.988281 254.164062 197.894531 254.070312 197.777344 254.070312 C 197.660156 254.070312 197.566406 254.164062 197.566406 254.28125 C 197.566406 254.398438 197.660156 254.492188 197.777344 254.492188 C 197.894531 254.492188 197.988281 254.398438 197.988281 254.28125 Z M 197.988281 254.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.804688 253 C 197.804688 252.882812 197.710938 252.789062 197.59375 252.789062 C 197.476562 252.789062 197.382812 252.882812 197.382812 253 C 197.382812 253.117188 197.476562 253.210938 197.59375 253.210938 C 197.710938 253.210938 197.804688 253.117188 197.804688 253 Z M 197.804688 253 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.621094 252.164062 C 199.621094 252.046875 199.527344 251.953125 199.410156 251.953125 C 199.292969 251.953125 199.199219 252.046875 199.199219 252.164062 C 199.199219 252.28125 199.292969 252.375 199.410156 252.375 C 199.527344 252.375 199.621094 252.28125 199.621094 252.164062 Z M 199.621094 252.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.617188 253.902344 C 201.617188 253.785156 201.523438 253.691406 201.40625 253.691406 C 201.289062 253.691406 201.195312 253.785156 201.195312 253.902344 C 201.195312 254.019531 201.289062 254.113281 201.40625 254.113281 C 201.523438 254.113281 201.617188 254.019531 201.617188 253.902344 Z M 201.617188 253.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.636719 249.601562 C 201.636719 249.484375 201.542969 249.390625 201.425781 249.390625 C 201.308594 249.390625 201.214844 249.484375 201.214844 249.601562 C 201.214844 249.71875 201.308594 249.8125 201.425781 249.8125 C 201.542969 249.8125 201.636719 249.71875 201.636719 249.601562 Z M 201.636719 249.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.984375 248.179688 C 198.984375 248.0625 198.890625 247.96875 198.773438 247.96875 C 198.65625 247.96875 198.5625 248.0625 198.5625 248.179688 C 198.5625 248.296875 198.65625 248.390625 198.773438 248.390625 C 198.890625 248.390625 198.984375 248.296875 198.984375 248.179688 Z M 198.984375 248.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.691406 245.378906 C 197.691406 245.261719 197.597656 245.167969 197.480469 245.167969 C 197.363281 245.167969 197.269531 245.261719 197.269531 245.378906 C 197.269531 245.496094 197.363281 245.589844 197.480469 245.589844 C 197.597656 245.589844 197.691406 245.496094 197.691406 245.378906 Z M 197.691406 245.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.460938 242.835938 C 197.460938 242.71875 197.367188 242.625 197.25 242.625 C 197.132812 242.625 197.039062 242.71875 197.039062 242.835938 C 197.039062 242.953125 197.132812 243.046875 197.25 243.046875 C 197.367188 243.046875 197.460938 242.953125 197.460938 242.835938 Z M 197.460938 242.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.726562 241.3125 C 195.726562 241.195312 195.632812 241.101562 195.515625 241.101562 C 195.398438 241.101562 195.304688 241.195312 195.304688 241.3125 C 195.304688 241.429688 195.398438 241.523438 195.515625 241.523438 C 195.632812 241.523438 195.726562 241.429688 195.726562 241.3125 Z M 195.726562 241.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.386719 244.492188 C 193.386719 244.375 193.292969 244.28125 193.175781 244.28125 C 193.058594 244.28125 192.964844 244.375 192.964844 244.492188 C 192.964844 244.609375 193.058594 244.703125 193.175781 244.703125 C 193.292969 244.703125 193.386719 244.609375 193.386719 244.492188 Z M 193.386719 244.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.417969 247.132812 C 195.417969 247.015625 195.324219 246.921875 195.207031 246.921875 C 195.089844 246.921875 194.996094 247.015625 194.996094 247.132812 C 194.996094 247.25 195.089844 247.34375 195.207031 247.34375 C 195.324219 247.34375 195.417969 247.25 195.417969 247.132812 Z M 195.417969 247.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.925781 251.257812 C 192.925781 251.140625 192.832031 251.046875 192.714844 251.046875 C 192.597656 251.046875 192.503906 251.140625 192.503906 251.257812 C 192.503906 251.375 192.597656 251.46875 192.714844 251.46875 C 192.832031 251.46875 192.925781 251.375 192.925781 251.257812 Z M 192.925781 251.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.917969 249.871094 C 193.917969 249.753906 193.824219 249.660156 193.707031 249.660156 C 193.589844 249.660156 193.496094 249.753906 193.496094 249.871094 C 193.496094 249.988281 193.589844 250.082031 193.707031 250.082031 C 193.824219 250.082031 193.917969 249.988281 193.917969 249.871094 Z M 193.917969 249.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.550781 252.308594 C 190.550781 252.191406 190.457031 252.097656 190.339844 252.097656 C 190.222656 252.097656 190.128906 252.191406 190.128906 252.308594 C 190.128906 252.425781 190.222656 252.519531 190.339844 252.519531 C 190.457031 252.519531 190.550781 252.425781 190.550781 252.308594 Z M 190.550781 252.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.421875 250.320312 C 192.421875 250.203125 192.328125 250.109375 192.210938 250.109375 C 192.09375 250.109375 192 250.203125 192 250.320312 C 192 250.4375 192.09375 250.53125 192.210938 250.53125 C 192.328125 250.53125 192.421875 250.4375 192.421875 250.320312 Z M 192.421875 250.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.925781 252.640625 C 190.925781 252.523438 190.832031 252.429688 190.714844 252.429688 C 190.597656 252.429688 190.503906 252.523438 190.503906 252.640625 C 190.503906 252.757812 190.597656 252.851562 190.714844 252.851562 C 190.832031 252.851562 190.925781 252.757812 190.925781 252.640625 Z M 190.925781 252.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.449219 248.925781 C 188.449219 248.808594 188.355469 248.714844 188.238281 248.714844 C 188.121094 248.714844 188.027344 248.808594 188.027344 248.925781 C 188.027344 249.042969 188.121094 249.136719 188.238281 249.136719 C 188.355469 249.136719 188.449219 249.042969 188.449219 248.925781 Z M 188.449219 248.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.714844 251.640625 C 190.714844 251.523438 190.621094 251.429688 190.503906 251.429688 C 190.386719 251.429688 190.292969 251.523438 190.292969 251.640625 C 190.292969 251.757812 190.386719 251.851562 190.503906 251.851562 C 190.621094 251.851562 190.714844 251.757812 190.714844 251.640625 Z M 190.714844 251.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.351562 251.703125 C 190.351562 251.585938 190.257812 251.492188 190.140625 251.492188 C 190.023438 251.492188 189.929688 251.585938 189.929688 251.703125 C 189.929688 251.820312 190.023438 251.914062 190.140625 251.914062 C 190.257812 251.914062 190.351562 251.820312 190.351562 251.703125 Z M 190.351562 251.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.707031 248.171875 C 188.707031 248.054688 188.613281 247.960938 188.496094 247.960938 C 188.378906 247.960938 188.285156 248.054688 188.285156 248.171875 C 188.285156 248.289062 188.378906 248.382812 188.496094 248.382812 C 188.613281 248.382812 188.707031 248.289062 188.707031 248.171875 Z M 188.707031 248.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.621094 249.882812 C 188.621094 249.765625 188.527344 249.671875 188.410156 249.671875 C 188.292969 249.671875 188.199219 249.765625 188.199219 249.882812 C 188.199219 250 188.292969 250.09375 188.410156 250.09375 C 188.527344 250.09375 188.621094 250 188.621094 249.882812 Z M 188.621094 249.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.214844 249.269531 C 189.214844 249.152344 189.121094 249.058594 189.003906 249.058594 C 188.886719 249.058594 188.792969 249.152344 188.792969 249.269531 C 188.792969 249.386719 188.886719 249.480469 189.003906 249.480469 C 189.121094 249.480469 189.214844 249.386719 189.214844 249.269531 Z M 189.214844 249.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.167969 249.863281 C 187.167969 249.746094 187.074219 249.652344 186.957031 249.652344 C 186.839844 249.652344 186.746094 249.746094 186.746094 249.863281 C 186.746094 249.980469 186.839844 250.074219 186.957031 250.074219 C 187.074219 250.074219 187.167969 249.980469 187.167969 249.863281 Z M 187.167969 249.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.34375 252.066406 C 184.34375 251.949219 184.25 251.855469 184.132812 251.855469 C 184.015625 251.855469 183.921875 251.949219 183.921875 252.066406 C 183.921875 252.183594 184.015625 252.277344 184.132812 252.277344 C 184.25 252.277344 184.34375 252.183594 184.34375 252.066406 Z M 184.34375 252.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.050781 253.367188 C 180.050781 253.25 179.957031 253.15625 179.839844 253.15625 C 179.722656 253.15625 179.628906 253.25 179.628906 253.367188 C 179.628906 253.484375 179.722656 253.578125 179.839844 253.578125 C 179.957031 253.578125 180.050781 253.484375 180.050781 253.367188 Z M 180.050781 253.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.863281 251.023438 C 181.863281 250.90625 181.769531 250.8125 181.652344 250.8125 C 181.535156 250.8125 181.441406 250.90625 181.441406 251.023438 C 181.441406 251.140625 181.535156 251.234375 181.652344 251.234375 C 181.769531 251.234375 181.863281 251.140625 181.863281 251.023438 Z M 181.863281 251.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.019531 254.121094 C 185.019531 254.003906 184.925781 253.910156 184.808594 253.910156 C 184.691406 253.910156 184.597656 254.003906 184.597656 254.121094 C 184.597656 254.238281 184.691406 254.332031 184.808594 254.332031 C 184.925781 254.332031 185.019531 254.238281 185.019531 254.121094 Z M 185.019531 254.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.800781 256.199219 C 185.800781 256.082031 185.707031 255.988281 185.589844 255.988281 C 185.472656 255.988281 185.378906 256.082031 185.378906 256.199219 C 185.378906 256.316406 185.472656 256.410156 185.589844 256.410156 C 185.707031 256.410156 185.800781 256.316406 185.800781 256.199219 Z M 185.800781 256.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.78125 254.648438 C 185.78125 254.53125 185.6875 254.4375 185.570312 254.4375 C 185.453125 254.4375 185.359375 254.53125 185.359375 254.648438 C 185.359375 254.765625 185.453125 254.859375 185.570312 254.859375 C 185.6875 254.859375 185.78125 254.765625 185.78125 254.648438 Z M 185.78125 254.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.941406 255.78125 C 184.941406 255.664062 184.847656 255.570312 184.730469 255.570312 C 184.613281 255.570312 184.519531 255.664062 184.519531 255.78125 C 184.519531 255.898438 184.613281 255.992188 184.730469 255.992188 C 184.847656 255.992188 184.941406 255.898438 184.941406 255.78125 Z M 184.941406 255.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.640625 257.035156 C 185.640625 256.917969 185.546875 256.824219 185.429688 256.824219 C 185.3125 256.824219 185.21875 256.917969 185.21875 257.035156 C 185.21875 257.152344 185.3125 257.246094 185.429688 257.246094 C 185.546875 257.246094 185.640625 257.152344 185.640625 257.035156 Z M 185.640625 257.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.332031 257.914062 C 187.332031 257.796875 187.238281 257.703125 187.121094 257.703125 C 187.003906 257.703125 186.910156 257.796875 186.910156 257.914062 C 186.910156 258.03125 187.003906 258.125 187.121094 258.125 C 187.238281 258.125 187.332031 258.03125 187.332031 257.914062 Z M 187.332031 257.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.910156 260.855469 C 187.910156 260.738281 187.816406 260.644531 187.699219 260.644531 C 187.582031 260.644531 187.488281 260.738281 187.488281 260.855469 C 187.488281 260.972656 187.582031 261.066406 187.699219 261.066406 C 187.816406 261.066406 187.910156 260.972656 187.910156 260.855469 Z M 187.910156 260.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.417969 259.675781 C 189.417969 259.558594 189.324219 259.464844 189.207031 259.464844 C 189.089844 259.464844 188.996094 259.558594 188.996094 259.675781 C 188.996094 259.792969 189.089844 259.886719 189.207031 259.886719 C 189.324219 259.886719 189.417969 259.792969 189.417969 259.675781 Z M 189.417969 259.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.558594 257.917969 C 185.558594 257.800781 185.464844 257.707031 185.347656 257.707031 C 185.230469 257.707031 185.136719 257.800781 185.136719 257.917969 C 185.136719 258.035156 185.230469 258.128906 185.347656 258.128906 C 185.464844 258.128906 185.558594 258.035156 185.558594 257.917969 Z M 185.558594 257.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.667969 258.4375 C 186.667969 258.320312 186.574219 258.226562 186.457031 258.226562 C 186.339844 258.226562 186.246094 258.320312 186.246094 258.4375 C 186.246094 258.554688 186.339844 258.648438 186.457031 258.648438 C 186.574219 258.648438 186.667969 258.554688 186.667969 258.4375 Z M 186.667969 258.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.71875 258.632812 C 188.71875 258.515625 188.625 258.421875 188.507812 258.421875 C 188.390625 258.421875 188.296875 258.515625 188.296875 258.632812 C 188.296875 258.75 188.390625 258.84375 188.507812 258.84375 C 188.625 258.84375 188.71875 258.75 188.71875 258.632812 Z M 188.71875 258.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.683594 258.484375 C 184.683594 258.367188 184.589844 258.273438 184.472656 258.273438 C 184.355469 258.273438 184.261719 258.367188 184.261719 258.484375 C 184.261719 258.601562 184.355469 258.695312 184.472656 258.695312 C 184.589844 258.695312 184.683594 258.601562 184.683594 258.484375 Z M 184.683594 258.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.265625 258.132812 C 183.265625 258.015625 183.171875 257.921875 183.054688 257.921875 C 182.9375 257.921875 182.84375 258.015625 182.84375 258.132812 C 182.84375 258.25 182.9375 258.34375 183.054688 258.34375 C 183.171875 258.34375 183.265625 258.25 183.265625 258.132812 Z M 183.265625 258.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.378906 260.128906 C 184.378906 260.011719 184.285156 259.917969 184.167969 259.917969 C 184.050781 259.917969 183.957031 260.011719 183.957031 260.128906 C 183.957031 260.246094 184.050781 260.339844 184.167969 260.339844 C 184.285156 260.339844 184.378906 260.246094 184.378906 260.128906 Z M 184.378906 260.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.105469 263.121094 C 187.105469 263.003906 187.011719 262.910156 186.894531 262.910156 C 186.777344 262.910156 186.683594 263.003906 186.683594 263.121094 C 186.683594 263.238281 186.777344 263.332031 186.894531 263.332031 C 187.011719 263.332031 187.105469 263.238281 187.105469 263.121094 Z M 187.105469 263.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.582031 266.535156 C 185.582031 266.417969 185.488281 266.324219 185.371094 266.324219 C 185.253906 266.324219 185.160156 266.417969 185.160156 266.535156 C 185.160156 266.652344 185.253906 266.746094 185.371094 266.746094 C 185.488281 266.746094 185.582031 266.652344 185.582031 266.535156 Z M 185.582031 266.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.722656 264.90625 C 183.722656 264.789062 183.628906 264.695312 183.511719 264.695312 C 183.394531 264.695312 183.300781 264.789062 183.300781 264.90625 C 183.300781 265.023438 183.394531 265.117188 183.511719 265.117188 C 183.628906 265.117188 183.722656 265.023438 183.722656 264.90625 Z M 183.722656 264.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.714844 264.183594 C 182.714844 264.066406 182.621094 263.972656 182.503906 263.972656 C 182.386719 263.972656 182.292969 264.066406 182.292969 264.183594 C 182.292969 264.300781 182.386719 264.394531 182.503906 264.394531 C 182.621094 264.394531 182.714844 264.300781 182.714844 264.183594 Z M 182.714844 264.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.128906 262.316406 C 179.128906 262.199219 179.035156 262.105469 178.917969 262.105469 C 178.800781 262.105469 178.707031 262.199219 178.707031 262.316406 C 178.707031 262.433594 178.800781 262.527344 178.917969 262.527344 C 179.035156 262.527344 179.128906 262.433594 179.128906 262.316406 Z M 179.128906 262.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.191406 257.257812 C 178.191406 257.140625 178.097656 257.046875 177.980469 257.046875 C 177.863281 257.046875 177.769531 257.140625 177.769531 257.257812 C 177.769531 257.375 177.863281 257.46875 177.980469 257.46875 C 178.097656 257.46875 178.191406 257.375 178.191406 257.257812 Z M 178.191406 257.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.621094 260.925781 C 179.621094 260.808594 179.527344 260.714844 179.410156 260.714844 C 179.292969 260.714844 179.199219 260.808594 179.199219 260.925781 C 179.199219 261.042969 179.292969 261.136719 179.410156 261.136719 C 179.527344 261.136719 179.621094 261.042969 179.621094 260.925781 Z M 179.621094 260.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.140625 262.121094 C 184.140625 262.003906 184.046875 261.910156 183.929688 261.910156 C 183.8125 261.910156 183.71875 262.003906 183.71875 262.121094 C 183.71875 262.238281 183.8125 262.332031 183.929688 262.332031 C 184.046875 262.332031 184.140625 262.238281 184.140625 262.121094 Z M 184.140625 262.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.425781 259.855469 C 183.425781 259.738281 183.332031 259.644531 183.214844 259.644531 C 183.097656 259.644531 183.003906 259.738281 183.003906 259.855469 C 183.003906 259.972656 183.097656 260.066406 183.214844 260.066406 C 183.332031 260.066406 183.425781 259.972656 183.425781 259.855469 Z M 183.425781 259.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.859375 257.933594 C 182.859375 257.816406 182.765625 257.722656 182.648438 257.722656 C 182.53125 257.722656 182.4375 257.816406 182.4375 257.933594 C 182.4375 258.050781 182.53125 258.144531 182.648438 258.144531 C 182.765625 258.144531 182.859375 258.050781 182.859375 257.933594 Z M 182.859375 257.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.925781 259.71875 C 183.925781 259.601562 183.832031 259.507812 183.714844 259.507812 C 183.597656 259.507812 183.503906 259.601562 183.503906 259.71875 C 183.503906 259.835938 183.597656 259.929688 183.714844 259.929688 C 183.832031 259.929688 183.925781 259.835938 183.925781 259.71875 Z M 183.925781 259.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.699219 260.296875 C 186.699219 260.179688 186.605469 260.085938 186.488281 260.085938 C 186.371094 260.085938 186.277344 260.179688 186.277344 260.296875 C 186.277344 260.414062 186.371094 260.507812 186.488281 260.507812 C 186.605469 260.507812 186.699219 260.414062 186.699219 260.296875 Z M 186.699219 260.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.976562 258.394531 C 188.976562 258.277344 188.882812 258.183594 188.765625 258.183594 C 188.648438 258.183594 188.554688 258.277344 188.554688 258.394531 C 188.554688 258.511719 188.648438 258.605469 188.765625 258.605469 C 188.882812 258.605469 188.976562 258.511719 188.976562 258.394531 Z M 188.976562 258.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.628906 258.289062 C 186.628906 258.171875 186.535156 258.078125 186.417969 258.078125 C 186.300781 258.078125 186.207031 258.171875 186.207031 258.289062 C 186.207031 258.40625 186.300781 258.5 186.417969 258.5 C 186.535156 258.5 186.628906 258.40625 186.628906 258.289062 Z M 186.628906 258.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.609375 256.398438 C 187.609375 256.28125 187.515625 256.1875 187.398438 256.1875 C 187.28125 256.1875 187.1875 256.28125 187.1875 256.398438 C 187.1875 256.515625 187.28125 256.609375 187.398438 256.609375 C 187.515625 256.609375 187.609375 256.515625 187.609375 256.398438 Z M 187.609375 256.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.53125 251.765625 C 188.53125 251.648438 188.4375 251.554688 188.320312 251.554688 C 188.203125 251.554688 188.109375 251.648438 188.109375 251.765625 C 188.109375 251.882812 188.203125 251.976562 188.320312 251.976562 C 188.4375 251.976562 188.53125 251.882812 188.53125 251.765625 Z M 188.53125 251.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.855469 252.378906 C 187.855469 252.261719 187.761719 252.167969 187.644531 252.167969 C 187.527344 252.167969 187.433594 252.261719 187.433594 252.378906 C 187.433594 252.496094 187.527344 252.589844 187.644531 252.589844 C 187.761719 252.589844 187.855469 252.496094 187.855469 252.378906 Z M 187.855469 252.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.523438 254.125 C 189.523438 254.007812 189.429688 253.914062 189.3125 253.914062 C 189.195312 253.914062 189.101562 254.007812 189.101562 254.125 C 189.101562 254.242188 189.195312 254.335938 189.3125 254.335938 C 189.429688 254.335938 189.523438 254.242188 189.523438 254.125 Z M 189.523438 254.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.453125 255.089844 C 187.453125 254.972656 187.359375 254.878906 187.242188 254.878906 C 187.125 254.878906 187.03125 254.972656 187.03125 255.089844 C 187.03125 255.207031 187.125 255.300781 187.242188 255.300781 C 187.359375 255.300781 187.453125 255.207031 187.453125 255.089844 Z M 187.453125 255.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.175781 250.984375 C 188.175781 250.867188 188.082031 250.773438 187.964844 250.773438 C 187.847656 250.773438 187.753906 250.867188 187.753906 250.984375 C 187.753906 251.101562 187.847656 251.195312 187.964844 251.195312 C 188.082031 251.195312 188.175781 251.101562 188.175781 250.984375 Z M 188.175781 250.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.964844 247.785156 C 187.964844 247.667969 187.871094 247.574219 187.753906 247.574219 C 187.636719 247.574219 187.542969 247.667969 187.542969 247.785156 C 187.542969 247.902344 187.636719 247.996094 187.753906 247.996094 C 187.871094 247.996094 187.964844 247.902344 187.964844 247.785156 Z M 187.964844 247.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.175781 247.601562 C 189.175781 247.484375 189.082031 247.390625 188.964844 247.390625 C 188.847656 247.390625 188.753906 247.484375 188.753906 247.601562 C 188.753906 247.71875 188.847656 247.8125 188.964844 247.8125 C 189.082031 247.8125 189.175781 247.71875 189.175781 247.601562 Z M 189.175781 247.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.136719 246.785156 C 194.136719 246.667969 194.042969 246.574219 193.925781 246.574219 C 193.808594 246.574219 193.714844 246.667969 193.714844 246.785156 C 193.714844 246.902344 193.808594 246.996094 193.925781 246.996094 C 194.042969 246.996094 194.136719 246.902344 194.136719 246.785156 Z M 194.136719 246.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.964844 246.089844 C 193.964844 245.972656 193.871094 245.878906 193.753906 245.878906 C 193.636719 245.878906 193.542969 245.972656 193.542969 246.089844 C 193.542969 246.207031 193.636719 246.300781 193.753906 246.300781 C 193.871094 246.300781 193.964844 246.207031 193.964844 246.089844 Z M 193.964844 246.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.089844 245.578125 C 194.089844 245.460938 193.996094 245.367188 193.878906 245.367188 C 193.761719 245.367188 193.667969 245.460938 193.667969 245.578125 C 193.667969 245.695312 193.761719 245.789062 193.878906 245.789062 C 193.996094 245.789062 194.089844 245.695312 194.089844 245.578125 Z M 194.089844 245.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.171875 245.375 C 193.171875 245.257812 193.078125 245.164062 192.960938 245.164062 C 192.84375 245.164062 192.75 245.257812 192.75 245.375 C 192.75 245.492188 192.84375 245.585938 192.960938 245.585938 C 193.078125 245.585938 193.171875 245.492188 193.171875 245.375 Z M 193.171875 245.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.882812 246.851562 C 192.882812 246.734375 192.789062 246.640625 192.671875 246.640625 C 192.554688 246.640625 192.460938 246.734375 192.460938 246.851562 C 192.460938 246.96875 192.554688 247.0625 192.671875 247.0625 C 192.789062 247.0625 192.882812 246.96875 192.882812 246.851562 Z M 192.882812 246.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.507812 247.257812 C 195.507812 247.140625 195.414062 247.046875 195.296875 247.046875 C 195.179688 247.046875 195.085938 247.140625 195.085938 247.257812 C 195.085938 247.375 195.179688 247.46875 195.296875 247.46875 C 195.414062 247.46875 195.507812 247.375 195.507812 247.257812 Z M 195.507812 247.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.601562 248.230469 C 195.601562 248.113281 195.507812 248.019531 195.390625 248.019531 C 195.273438 248.019531 195.179688 248.113281 195.179688 248.230469 C 195.179688 248.347656 195.273438 248.441406 195.390625 248.441406 C 195.507812 248.441406 195.601562 248.347656 195.601562 248.230469 Z M 195.601562 248.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.757812 245.753906 C 192.757812 245.636719 192.664062 245.542969 192.546875 245.542969 C 192.429688 245.542969 192.335938 245.636719 192.335938 245.753906 C 192.335938 245.871094 192.429688 245.964844 192.546875 245.964844 C 192.664062 245.964844 192.757812 245.871094 192.757812 245.753906 Z M 192.757812 245.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.214844 245.40625 C 193.214844 245.289062 193.121094 245.195312 193.003906 245.195312 C 192.886719 245.195312 192.792969 245.289062 192.792969 245.40625 C 192.792969 245.523438 192.886719 245.617188 193.003906 245.617188 C 193.121094 245.617188 193.214844 245.523438 193.214844 245.40625 Z M 193.214844 245.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.109375 244.765625 C 195.109375 244.648438 195.015625 244.554688 194.898438 244.554688 C 194.78125 244.554688 194.6875 244.648438 194.6875 244.765625 C 194.6875 244.882812 194.78125 244.976562 194.898438 244.976562 C 195.015625 244.976562 195.109375 244.882812 195.109375 244.765625 Z M 195.109375 244.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.167969 248.121094 C 194.167969 248.003906 194.074219 247.910156 193.957031 247.910156 C 193.839844 247.910156 193.746094 248.003906 193.746094 248.121094 C 193.746094 248.238281 193.839844 248.332031 193.957031 248.332031 C 194.074219 248.332031 194.167969 248.238281 194.167969 248.121094 Z M 194.167969 248.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.210938 244.703125 C 190.210938 244.585938 190.117188 244.492188 190 244.492188 C 189.882812 244.492188 189.789062 244.585938 189.789062 244.703125 C 189.789062 244.820312 189.882812 244.914062 190 244.914062 C 190.117188 244.914062 190.210938 244.820312 190.210938 244.703125 Z M 190.210938 244.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.1875 244.089844 C 187.1875 243.972656 187.09375 243.878906 186.976562 243.878906 C 186.859375 243.878906 186.765625 243.972656 186.765625 244.089844 C 186.765625 244.207031 186.859375 244.300781 186.976562 244.300781 C 187.09375 244.300781 187.1875 244.207031 187.1875 244.089844 Z M 187.1875 244.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.820312 238.4375 C 185.820312 238.320312 185.726562 238.226562 185.609375 238.226562 C 185.492188 238.226562 185.398438 238.320312 185.398438 238.4375 C 185.398438 238.554688 185.492188 238.648438 185.609375 238.648438 C 185.726562 238.648438 185.820312 238.554688 185.820312 238.4375 Z M 185.820312 238.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.492188 235.84375 C 187.492188 235.726562 187.398438 235.632812 187.28125 235.632812 C 187.164062 235.632812 187.070312 235.726562 187.070312 235.84375 C 187.070312 235.960938 187.164062 236.054688 187.28125 236.054688 C 187.398438 236.054688 187.492188 235.960938 187.492188 235.84375 Z M 187.492188 235.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.898438 238.597656 C 185.898438 238.480469 185.804688 238.386719 185.6875 238.386719 C 185.570312 238.386719 185.476562 238.480469 185.476562 238.597656 C 185.476562 238.714844 185.570312 238.808594 185.6875 238.808594 C 185.804688 238.808594 185.898438 238.714844 185.898438 238.597656 Z M 185.898438 238.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.039062 236.878906 C 184.039062 236.761719 183.945312 236.667969 183.828125 236.667969 C 183.710938 236.667969 183.617188 236.761719 183.617188 236.878906 C 183.617188 236.996094 183.710938 237.089844 183.828125 237.089844 C 183.945312 237.089844 184.039062 236.996094 184.039062 236.878906 Z M 184.039062 236.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.730469 235.371094 C 183.730469 235.253906 183.636719 235.160156 183.519531 235.160156 C 183.402344 235.160156 183.308594 235.253906 183.308594 235.371094 C 183.308594 235.488281 183.402344 235.582031 183.519531 235.582031 C 183.636719 235.582031 183.730469 235.488281 183.730469 235.371094 Z M 183.730469 235.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.539062 234.960938 C 179.539062 234.84375 179.445312 234.75 179.328125 234.75 C 179.210938 234.75 179.117188 234.84375 179.117188 234.960938 C 179.117188 235.078125 179.210938 235.171875 179.328125 235.171875 C 179.445312 235.171875 179.539062 235.078125 179.539062 234.960938 Z M 179.539062 234.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.738281 236.570312 C 178.738281 236.453125 178.644531 236.359375 178.527344 236.359375 C 178.410156 236.359375 178.316406 236.453125 178.316406 236.570312 C 178.316406 236.6875 178.410156 236.78125 178.527344 236.78125 C 178.644531 236.78125 178.738281 236.6875 178.738281 236.570312 Z M 178.738281 236.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.039062 235.972656 C 180.039062 235.855469 179.945312 235.761719 179.828125 235.761719 C 179.710938 235.761719 179.617188 235.855469 179.617188 235.972656 C 179.617188 236.089844 179.710938 236.183594 179.828125 236.183594 C 179.945312 236.183594 180.039062 236.089844 180.039062 235.972656 Z M 180.039062 235.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.585938 236.707031 C 177.585938 236.589844 177.492188 236.496094 177.375 236.496094 C 177.257812 236.496094 177.164062 236.589844 177.164062 236.707031 C 177.164062 236.824219 177.257812 236.917969 177.375 236.917969 C 177.492188 236.917969 177.585938 236.824219 177.585938 236.707031 Z M 177.585938 236.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.359375 234.339844 C 177.359375 234.222656 177.265625 234.128906 177.148438 234.128906 C 177.03125 234.128906 176.9375 234.222656 176.9375 234.339844 C 176.9375 234.457031 177.03125 234.550781 177.148438 234.550781 C 177.265625 234.550781 177.359375 234.457031 177.359375 234.339844 Z M 177.359375 234.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.085938 235.050781 C 177.085938 234.933594 176.992188 234.839844 176.875 234.839844 C 176.757812 234.839844 176.664062 234.933594 176.664062 235.050781 C 176.664062 235.167969 176.757812 235.261719 176.875 235.261719 C 176.992188 235.261719 177.085938 235.167969 177.085938 235.050781 Z M 177.085938 235.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.15625 237.386719 C 174.15625 237.269531 174.0625 237.175781 173.945312 237.175781 C 173.828125 237.175781 173.734375 237.269531 173.734375 237.386719 C 173.734375 237.503906 173.828125 237.597656 173.945312 237.597656 C 174.0625 237.597656 174.15625 237.503906 174.15625 237.386719 Z M 174.15625 237.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.5625 238.308594 C 172.5625 238.191406 172.46875 238.097656 172.351562 238.097656 C 172.234375 238.097656 172.140625 238.191406 172.140625 238.308594 C 172.140625 238.425781 172.234375 238.519531 172.351562 238.519531 C 172.46875 238.519531 172.5625 238.425781 172.5625 238.308594 Z M 172.5625 238.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.253906 238.394531 C 170.253906 238.277344 170.160156 238.183594 170.042969 238.183594 C 169.925781 238.183594 169.832031 238.277344 169.832031 238.394531 C 169.832031 238.511719 169.925781 238.605469 170.042969 238.605469 C 170.160156 238.605469 170.253906 238.511719 170.253906 238.394531 Z M 170.253906 238.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.445312 239.960938 C 171.445312 239.84375 171.351562 239.75 171.234375 239.75 C 171.117188 239.75 171.023438 239.84375 171.023438 239.960938 C 171.023438 240.078125 171.117188 240.171875 171.234375 240.171875 C 171.351562 240.171875 171.445312 240.078125 171.445312 239.960938 Z M 171.445312 239.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.574219 240.433594 C 172.574219 240.316406 172.480469 240.222656 172.363281 240.222656 C 172.246094 240.222656 172.152344 240.316406 172.152344 240.433594 C 172.152344 240.550781 172.246094 240.644531 172.363281 240.644531 C 172.480469 240.644531 172.574219 240.550781 172.574219 240.433594 Z M 172.574219 240.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.726562 240.464844 C 172.726562 240.347656 172.632812 240.253906 172.515625 240.253906 C 172.398438 240.253906 172.304688 240.347656 172.304688 240.464844 C 172.304688 240.582031 172.398438 240.675781 172.515625 240.675781 C 172.632812 240.675781 172.726562 240.582031 172.726562 240.464844 Z M 172.726562 240.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.117188 239.730469 C 172.117188 239.613281 172.023438 239.519531 171.90625 239.519531 C 171.789062 239.519531 171.695312 239.613281 171.695312 239.730469 C 171.695312 239.847656 171.789062 239.941406 171.90625 239.941406 C 172.023438 239.941406 172.117188 239.847656 172.117188 239.730469 Z M 172.117188 239.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.691406 235.320312 C 170.691406 235.203125 170.597656 235.109375 170.480469 235.109375 C 170.363281 235.109375 170.269531 235.203125 170.269531 235.320312 C 170.269531 235.4375 170.363281 235.53125 170.480469 235.53125 C 170.597656 235.53125 170.691406 235.4375 170.691406 235.320312 Z M 170.691406 235.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.277344 238.3125 C 169.277344 238.195312 169.183594 238.101562 169.066406 238.101562 C 168.949219 238.101562 168.855469 238.195312 168.855469 238.3125 C 168.855469 238.429688 168.949219 238.523438 169.066406 238.523438 C 169.183594 238.523438 169.277344 238.429688 169.277344 238.3125 Z M 169.277344 238.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.445312 238.332031 C 172.445312 238.214844 172.351562 238.121094 172.234375 238.121094 C 172.117188 238.121094 172.023438 238.214844 172.023438 238.332031 C 172.023438 238.449219 172.117188 238.542969 172.234375 238.542969 C 172.351562 238.542969 172.445312 238.449219 172.445312 238.332031 Z M 172.445312 238.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.605469 239.515625 C 168.605469 239.398438 168.511719 239.304688 168.394531 239.304688 C 168.277344 239.304688 168.183594 239.398438 168.183594 239.515625 C 168.183594 239.632812 168.277344 239.726562 168.394531 239.726562 C 168.511719 239.726562 168.605469 239.632812 168.605469 239.515625 Z M 168.605469 239.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.582031 239.40625 C 172.582031 239.289062 172.488281 239.195312 172.371094 239.195312 C 172.253906 239.195312 172.160156 239.289062 172.160156 239.40625 C 172.160156 239.523438 172.253906 239.617188 172.371094 239.617188 C 172.488281 239.617188 172.582031 239.523438 172.582031 239.40625 Z M 172.582031 239.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.992188 239.769531 C 172.992188 239.652344 172.898438 239.558594 172.78125 239.558594 C 172.664062 239.558594 172.570312 239.652344 172.570312 239.769531 C 172.570312 239.886719 172.664062 239.980469 172.78125 239.980469 C 172.898438 239.980469 172.992188 239.886719 172.992188 239.769531 Z M 172.992188 239.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.820312 238.972656 C 171.820312 238.855469 171.726562 238.761719 171.609375 238.761719 C 171.492188 238.761719 171.398438 238.855469 171.398438 238.972656 C 171.398438 239.089844 171.492188 239.183594 171.609375 239.183594 C 171.726562 239.183594 171.820312 239.089844 171.820312 238.972656 Z M 171.820312 238.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.648438 240.761719 C 170.648438 240.644531 170.554688 240.550781 170.4375 240.550781 C 170.320312 240.550781 170.226562 240.644531 170.226562 240.761719 C 170.226562 240.878906 170.320312 240.972656 170.4375 240.972656 C 170.554688 240.972656 170.648438 240.878906 170.648438 240.761719 Z M 170.648438 240.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.929688 236.984375 C 173.929688 236.867188 173.835938 236.773438 173.71875 236.773438 C 173.601562 236.773438 173.507812 236.867188 173.507812 236.984375 C 173.507812 237.101562 173.601562 237.195312 173.71875 237.195312 C 173.835938 237.195312 173.929688 237.101562 173.929688 236.984375 Z M 173.929688 236.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.832031 237.730469 C 173.832031 237.613281 173.738281 237.519531 173.621094 237.519531 C 173.503906 237.519531 173.410156 237.613281 173.410156 237.730469 C 173.410156 237.847656 173.503906 237.941406 173.621094 237.941406 C 173.738281 237.941406 173.832031 237.847656 173.832031 237.730469 Z M 173.832031 237.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.210938 239.179688 C 177.210938 239.0625 177.117188 238.96875 177 238.96875 C 176.882812 238.96875 176.789062 239.0625 176.789062 239.179688 C 176.789062 239.296875 176.882812 239.390625 177 239.390625 C 177.117188 239.390625 177.210938 239.296875 177.210938 239.179688 Z M 177.210938 239.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.988281 237.398438 C 175.988281 237.28125 175.894531 237.1875 175.777344 237.1875 C 175.660156 237.1875 175.566406 237.28125 175.566406 237.398438 C 175.566406 237.515625 175.660156 237.609375 175.777344 237.609375 C 175.894531 237.609375 175.988281 237.515625 175.988281 237.398438 Z M 175.988281 237.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.359375 242.054688 C 179.359375 241.9375 179.265625 241.84375 179.148438 241.84375 C 179.03125 241.84375 178.9375 241.9375 178.9375 242.054688 C 178.9375 242.171875 179.03125 242.265625 179.148438 242.265625 C 179.265625 242.265625 179.359375 242.171875 179.359375 242.054688 Z M 179.359375 242.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.890625 242.429688 C 177.890625 242.3125 177.796875 242.21875 177.679688 242.21875 C 177.5625 242.21875 177.46875 242.3125 177.46875 242.429688 C 177.46875 242.546875 177.5625 242.640625 177.679688 242.640625 C 177.796875 242.640625 177.890625 242.546875 177.890625 242.429688 Z M 177.890625 242.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.984375 241.789062 C 175.984375 241.671875 175.890625 241.578125 175.773438 241.578125 C 175.65625 241.578125 175.5625 241.671875 175.5625 241.789062 C 175.5625 241.90625 175.65625 242 175.773438 242 C 175.890625 242 175.984375 241.90625 175.984375 241.789062 Z M 175.984375 241.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.09375 240.492188 C 176.09375 240.375 176 240.28125 175.882812 240.28125 C 175.765625 240.28125 175.671875 240.375 175.671875 240.492188 C 175.671875 240.609375 175.765625 240.703125 175.882812 240.703125 C 176 240.703125 176.09375 240.609375 176.09375 240.492188 Z M 176.09375 240.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.703125 237.976562 C 179.703125 237.859375 179.609375 237.765625 179.492188 237.765625 C 179.375 237.765625 179.28125 237.859375 179.28125 237.976562 C 179.28125 238.09375 179.375 238.1875 179.492188 238.1875 C 179.609375 238.1875 179.703125 238.09375 179.703125 237.976562 Z M 179.703125 237.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.019531 240.082031 C 180.019531 239.964844 179.925781 239.871094 179.808594 239.871094 C 179.691406 239.871094 179.597656 239.964844 179.597656 240.082031 C 179.597656 240.199219 179.691406 240.292969 179.808594 240.292969 C 179.925781 240.292969 180.019531 240.199219 180.019531 240.082031 Z M 180.019531 240.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.613281 242.085938 C 178.613281 241.96875 178.519531 241.875 178.402344 241.875 C 178.285156 241.875 178.191406 241.96875 178.191406 242.085938 C 178.191406 242.203125 178.285156 242.296875 178.402344 242.296875 C 178.519531 242.296875 178.613281 242.203125 178.613281 242.085938 Z M 178.613281 242.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.445312 244.289062 C 178.445312 244.171875 178.351562 244.078125 178.234375 244.078125 C 178.117188 244.078125 178.023438 244.171875 178.023438 244.289062 C 178.023438 244.40625 178.117188 244.5 178.234375 244.5 C 178.351562 244.5 178.445312 244.40625 178.445312 244.289062 Z M 178.445312 244.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.378906 245.027344 C 178.378906 244.910156 178.285156 244.816406 178.167969 244.816406 C 178.050781 244.816406 177.957031 244.910156 177.957031 245.027344 C 177.957031 245.144531 178.050781 245.238281 178.167969 245.238281 C 178.285156 245.238281 178.378906 245.144531 178.378906 245.027344 Z M 178.378906 245.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.0625 246.515625 C 179.0625 246.398438 178.96875 246.304688 178.851562 246.304688 C 178.734375 246.304688 178.640625 246.398438 178.640625 246.515625 C 178.640625 246.632812 178.734375 246.726562 178.851562 246.726562 C 178.96875 246.726562 179.0625 246.632812 179.0625 246.515625 Z M 179.0625 246.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.394531 247.300781 C 180.394531 247.183594 180.300781 247.089844 180.183594 247.089844 C 180.066406 247.089844 179.972656 247.183594 179.972656 247.300781 C 179.972656 247.417969 180.066406 247.511719 180.183594 247.511719 C 180.300781 247.511719 180.394531 247.417969 180.394531 247.300781 Z M 180.394531 247.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.867188 248.339844 C 178.867188 248.222656 178.773438 248.128906 178.65625 248.128906 C 178.539062 248.128906 178.445312 248.222656 178.445312 248.339844 C 178.445312 248.457031 178.539062 248.550781 178.65625 248.550781 C 178.773438 248.550781 178.867188 248.457031 178.867188 248.339844 Z M 178.867188 248.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.890625 250.132812 C 179.890625 250.015625 179.796875 249.921875 179.679688 249.921875 C 179.5625 249.921875 179.46875 250.015625 179.46875 250.132812 C 179.46875 250.25 179.5625 250.34375 179.679688 250.34375 C 179.796875 250.34375 179.890625 250.25 179.890625 250.132812 Z M 179.890625 250.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.066406 250.519531 C 180.066406 250.402344 179.972656 250.308594 179.855469 250.308594 C 179.738281 250.308594 179.644531 250.402344 179.644531 250.519531 C 179.644531 250.636719 179.738281 250.730469 179.855469 250.730469 C 179.972656 250.730469 180.066406 250.636719 180.066406 250.519531 Z M 180.066406 250.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.097656 252.410156 C 180.097656 252.292969 180.003906 252.199219 179.886719 252.199219 C 179.769531 252.199219 179.675781 252.292969 179.675781 252.410156 C 179.675781 252.527344 179.769531 252.621094 179.886719 252.621094 C 180.003906 252.621094 180.097656 252.527344 180.097656 252.410156 Z M 180.097656 252.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.597656 251.105469 C 178.597656 250.988281 178.503906 250.894531 178.386719 250.894531 C 178.269531 250.894531 178.175781 250.988281 178.175781 251.105469 C 178.175781 251.222656 178.269531 251.316406 178.386719 251.316406 C 178.503906 251.316406 178.597656 251.222656 178.597656 251.105469 Z M 178.597656 251.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.792969 250.269531 C 175.792969 250.152344 175.699219 250.058594 175.582031 250.058594 C 175.464844 250.058594 175.371094 250.152344 175.371094 250.269531 C 175.371094 250.386719 175.464844 250.480469 175.582031 250.480469 C 175.699219 250.480469 175.792969 250.386719 175.792969 250.269531 Z M 175.792969 250.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.820312 254.976562 C 174.820312 254.859375 174.726562 254.765625 174.609375 254.765625 C 174.492188 254.765625 174.398438 254.859375 174.398438 254.976562 C 174.398438 255.09375 174.492188 255.1875 174.609375 255.1875 C 174.726562 255.1875 174.820312 255.09375 174.820312 254.976562 Z M 174.820312 254.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.535156 258.316406 C 175.535156 258.199219 175.441406 258.105469 175.324219 258.105469 C 175.207031 258.105469 175.113281 258.199219 175.113281 258.316406 C 175.113281 258.433594 175.207031 258.527344 175.324219 258.527344 C 175.441406 258.527344 175.535156 258.433594 175.535156 258.316406 Z M 175.535156 258.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.441406 261.308594 C 177.441406 261.191406 177.347656 261.097656 177.230469 261.097656 C 177.113281 261.097656 177.019531 261.191406 177.019531 261.308594 C 177.019531 261.425781 177.113281 261.519531 177.230469 261.519531 C 177.347656 261.519531 177.441406 261.425781 177.441406 261.308594 Z M 177.441406 261.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.527344 262.902344 C 179.527344 262.785156 179.433594 262.691406 179.316406 262.691406 C 179.199219 262.691406 179.105469 262.785156 179.105469 262.902344 C 179.105469 263.019531 179.199219 263.113281 179.316406 263.113281 C 179.433594 263.113281 179.527344 263.019531 179.527344 262.902344 Z M 179.527344 262.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.300781 260.871094 C 180.300781 260.753906 180.207031 260.660156 180.089844 260.660156 C 179.972656 260.660156 179.878906 260.753906 179.878906 260.871094 C 179.878906 260.988281 179.972656 261.082031 180.089844 261.082031 C 180.207031 261.082031 180.300781 260.988281 180.300781 260.871094 Z M 180.300781 260.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.867188 262.621094 C 179.867188 262.503906 179.773438 262.410156 179.65625 262.410156 C 179.539062 262.410156 179.445312 262.503906 179.445312 262.621094 C 179.445312 262.738281 179.539062 262.832031 179.65625 262.832031 C 179.773438 262.832031 179.867188 262.738281 179.867188 262.621094 Z M 179.867188 262.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.101562 260.402344 C 178.101562 260.285156 178.007812 260.191406 177.890625 260.191406 C 177.773438 260.191406 177.679688 260.285156 177.679688 260.402344 C 177.679688 260.519531 177.773438 260.613281 177.890625 260.613281 C 178.007812 260.613281 178.101562 260.519531 178.101562 260.402344 Z M 178.101562 260.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.929688 258.523438 C 179.929688 258.40625 179.835938 258.3125 179.71875 258.3125 C 179.601562 258.3125 179.507812 258.40625 179.507812 258.523438 C 179.507812 258.640625 179.601562 258.734375 179.71875 258.734375 C 179.835938 258.734375 179.929688 258.640625 179.929688 258.523438 Z M 179.929688 258.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.855469 255.417969 C 178.855469 255.300781 178.761719 255.207031 178.644531 255.207031 C 178.527344 255.207031 178.433594 255.300781 178.433594 255.417969 C 178.433594 255.535156 178.527344 255.628906 178.644531 255.628906 C 178.761719 255.628906 178.855469 255.535156 178.855469 255.417969 Z M 178.855469 255.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.878906 259.261719 C 178.878906 259.144531 178.785156 259.050781 178.667969 259.050781 C 178.550781 259.050781 178.457031 259.144531 178.457031 259.261719 C 178.457031 259.378906 178.550781 259.472656 178.667969 259.472656 C 178.785156 259.472656 178.878906 259.378906 178.878906 259.261719 Z M 178.878906 259.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.496094 259.667969 C 178.496094 259.550781 178.402344 259.457031 178.285156 259.457031 C 178.167969 259.457031 178.074219 259.550781 178.074219 259.667969 C 178.074219 259.785156 178.167969 259.878906 178.285156 259.878906 C 178.402344 259.878906 178.496094 259.785156 178.496094 259.667969 Z M 178.496094 259.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.847656 262.472656 C 175.847656 262.355469 175.753906 262.261719 175.636719 262.261719 C 175.519531 262.261719 175.425781 262.355469 175.425781 262.472656 C 175.425781 262.589844 175.519531 262.683594 175.636719 262.683594 C 175.753906 262.683594 175.847656 262.589844 175.847656 262.472656 Z M 175.847656 262.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.214844 263.785156 C 173.214844 263.667969 173.121094 263.574219 173.003906 263.574219 C 172.886719 263.574219 172.792969 263.667969 172.792969 263.785156 C 172.792969 263.902344 172.886719 263.996094 173.003906 263.996094 C 173.121094 263.996094 173.214844 263.902344 173.214844 263.785156 Z M 173.214844 263.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.265625 267.246094 C 171.265625 267.128906 171.171875 267.035156 171.054688 267.035156 C 170.9375 267.035156 170.84375 267.128906 170.84375 267.246094 C 170.84375 267.363281 170.9375 267.457031 171.054688 267.457031 C 171.171875 267.457031 171.265625 267.363281 171.265625 267.246094 Z M 171.265625 267.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.351562 270.152344 C 171.351562 270.035156 171.257812 269.941406 171.140625 269.941406 C 171.023438 269.941406 170.929688 270.035156 170.929688 270.152344 C 170.929688 270.269531 171.023438 270.363281 171.140625 270.363281 C 171.257812 270.363281 171.351562 270.269531 171.351562 270.152344 Z M 171.351562 270.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.707031 270.320312 C 168.707031 270.203125 168.613281 270.109375 168.496094 270.109375 C 168.378906 270.109375 168.285156 270.203125 168.285156 270.320312 C 168.285156 270.4375 168.378906 270.53125 168.496094 270.53125 C 168.613281 270.53125 168.707031 270.4375 168.707031 270.320312 Z M 168.707031 270.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.640625 268.984375 C 168.640625 268.867188 168.546875 268.773438 168.429688 268.773438 C 168.3125 268.773438 168.21875 268.867188 168.21875 268.984375 C 168.21875 269.101562 168.3125 269.195312 168.429688 269.195312 C 168.546875 269.195312 168.640625 269.101562 168.640625 268.984375 Z M 168.640625 268.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.179688 271.707031 C 167.179688 271.589844 167.085938 271.496094 166.96875 271.496094 C 166.851562 271.496094 166.757812 271.589844 166.757812 271.707031 C 166.757812 271.824219 166.851562 271.917969 166.96875 271.917969 C 167.085938 271.917969 167.179688 271.824219 167.179688 271.707031 Z M 167.179688 271.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.050781 271.015625 C 164.050781 270.898438 163.957031 270.804688 163.839844 270.804688 C 163.722656 270.804688 163.628906 270.898438 163.628906 271.015625 C 163.628906 271.132812 163.722656 271.226562 163.839844 271.226562 C 163.957031 271.226562 164.050781 271.132812 164.050781 271.015625 Z M 164.050781 271.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.003906 271.636719 C 164.003906 271.519531 163.910156 271.425781 163.792969 271.425781 C 163.675781 271.425781 163.582031 271.519531 163.582031 271.636719 C 163.582031 271.753906 163.675781 271.847656 163.792969 271.847656 C 163.910156 271.847656 164.003906 271.753906 164.003906 271.636719 Z M 164.003906 271.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.492188 275.621094 C 164.492188 275.503906 164.398438 275.410156 164.28125 275.410156 C 164.164062 275.410156 164.070312 275.503906 164.070312 275.621094 C 164.070312 275.738281 164.164062 275.832031 164.28125 275.832031 C 164.398438 275.832031 164.492188 275.738281 164.492188 275.621094 Z M 164.492188 275.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.1875 272.296875 C 165.1875 272.179688 165.09375 272.085938 164.976562 272.085938 C 164.859375 272.085938 164.765625 272.179688 164.765625 272.296875 C 164.765625 272.414062 164.859375 272.507812 164.976562 272.507812 C 165.09375 272.507812 165.1875 272.414062 165.1875 272.296875 Z M 165.1875 272.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.71875 271.203125 C 163.71875 271.085938 163.625 270.992188 163.507812 270.992188 C 163.390625 270.992188 163.296875 271.085938 163.296875 271.203125 C 163.296875 271.320312 163.390625 271.414062 163.507812 271.414062 C 163.625 271.414062 163.71875 271.320312 163.71875 271.203125 Z M 163.71875 271.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.238281 269.3125 C 160.238281 269.195312 160.144531 269.101562 160.027344 269.101562 C 159.910156 269.101562 159.816406 269.195312 159.816406 269.3125 C 159.816406 269.429688 159.910156 269.523438 160.027344 269.523438 C 160.144531 269.523438 160.238281 269.429688 160.238281 269.3125 Z M 160.238281 269.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.816406 267.453125 C 159.816406 267.335938 159.722656 267.242188 159.605469 267.242188 C 159.488281 267.242188 159.394531 267.335938 159.394531 267.453125 C 159.394531 267.570312 159.488281 267.664062 159.605469 267.664062 C 159.722656 267.664062 159.816406 267.570312 159.816406 267.453125 Z M 159.816406 267.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.921875 268.351562 C 158.921875 268.234375 158.828125 268.140625 158.710938 268.140625 C 158.59375 268.140625 158.5 268.234375 158.5 268.351562 C 158.5 268.46875 158.59375 268.5625 158.710938 268.5625 C 158.828125 268.5625 158.921875 268.46875 158.921875 268.351562 Z M 158.921875 268.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.972656 264.789062 C 158.972656 264.671875 158.878906 264.578125 158.761719 264.578125 C 158.644531 264.578125 158.550781 264.671875 158.550781 264.789062 C 158.550781 264.90625 158.644531 265 158.761719 265 C 158.878906 265 158.972656 264.90625 158.972656 264.789062 Z M 158.972656 264.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.140625 263.097656 C 159.140625 262.980469 159.046875 262.886719 158.929688 262.886719 C 158.8125 262.886719 158.71875 262.980469 158.71875 263.097656 C 158.71875 263.214844 158.8125 263.308594 158.929688 263.308594 C 159.046875 263.308594 159.140625 263.214844 159.140625 263.097656 Z M 159.140625 263.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.238281 260.878906 C 159.238281 260.761719 159.144531 260.667969 159.027344 260.667969 C 158.910156 260.667969 158.816406 260.761719 158.816406 260.878906 C 158.816406 260.996094 158.910156 261.089844 159.027344 261.089844 C 159.144531 261.089844 159.238281 260.996094 159.238281 260.878906 Z M 159.238281 260.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.351562 256.664062 C 159.351562 256.546875 159.257812 256.453125 159.140625 256.453125 C 159.023438 256.453125 158.929688 256.546875 158.929688 256.664062 C 158.929688 256.78125 159.023438 256.875 159.140625 256.875 C 159.257812 256.875 159.351562 256.78125 159.351562 256.664062 Z M 159.351562 256.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.015625 261.488281 C 161.015625 261.371094 160.921875 261.277344 160.804688 261.277344 C 160.6875 261.277344 160.59375 261.371094 160.59375 261.488281 C 160.59375 261.605469 160.6875 261.699219 160.804688 261.699219 C 160.921875 261.699219 161.015625 261.605469 161.015625 261.488281 Z M 161.015625 261.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.984375 261.417969 C 162.984375 261.300781 162.890625 261.207031 162.773438 261.207031 C 162.65625 261.207031 162.5625 261.300781 162.5625 261.417969 C 162.5625 261.535156 162.65625 261.628906 162.773438 261.628906 C 162.890625 261.628906 162.984375 261.535156 162.984375 261.417969 Z M 162.984375 261.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.523438 261.242188 C 160.523438 261.125 160.429688 261.03125 160.3125 261.03125 C 160.195312 261.03125 160.101562 261.125 160.101562 261.242188 C 160.101562 261.359375 160.195312 261.453125 160.3125 261.453125 C 160.429688 261.453125 160.523438 261.359375 160.523438 261.242188 Z M 160.523438 261.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.0625 265.101562 C 161.0625 264.984375 160.96875 264.890625 160.851562 264.890625 C 160.734375 264.890625 160.640625 264.984375 160.640625 265.101562 C 160.640625 265.21875 160.734375 265.3125 160.851562 265.3125 C 160.96875 265.3125 161.0625 265.21875 161.0625 265.101562 Z M 161.0625 265.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.347656 264.429688 C 159.347656 264.3125 159.253906 264.21875 159.136719 264.21875 C 159.019531 264.21875 158.925781 264.3125 158.925781 264.429688 C 158.925781 264.546875 159.019531 264.640625 159.136719 264.640625 C 159.253906 264.640625 159.347656 264.546875 159.347656 264.429688 Z M 159.347656 264.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.035156 266 C 159.035156 265.882812 158.941406 265.789062 158.824219 265.789062 C 158.707031 265.789062 158.613281 265.882812 158.613281 266 C 158.613281 266.117188 158.707031 266.210938 158.824219 266.210938 C 158.941406 266.210938 159.035156 266.117188 159.035156 266 Z M 159.035156 266 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.480469 269.945312 C 160.480469 269.828125 160.386719 269.734375 160.269531 269.734375 C 160.152344 269.734375 160.058594 269.828125 160.058594 269.945312 C 160.058594 270.0625 160.152344 270.15625 160.269531 270.15625 C 160.386719 270.15625 160.480469 270.0625 160.480469 269.945312 Z M 160.480469 269.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.601562 271.164062 C 162.601562 271.046875 162.507812 270.953125 162.390625 270.953125 C 162.273438 270.953125 162.179688 271.046875 162.179688 271.164062 C 162.179688 271.28125 162.273438 271.375 162.390625 271.375 C 162.507812 271.375 162.601562 271.28125 162.601562 271.164062 Z M 162.601562 271.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.644531 273.820312 C 163.644531 273.703125 163.550781 273.609375 163.433594 273.609375 C 163.316406 273.609375 163.222656 273.703125 163.222656 273.820312 C 163.222656 273.9375 163.316406 274.03125 163.433594 274.03125 C 163.550781 274.03125 163.644531 273.9375 163.644531 273.820312 Z M 163.644531 273.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.875 271.148438 C 163.875 271.03125 163.78125 270.9375 163.664062 270.9375 C 163.546875 270.9375 163.453125 271.03125 163.453125 271.148438 C 163.453125 271.265625 163.546875 271.359375 163.664062 271.359375 C 163.78125 271.359375 163.875 271.265625 163.875 271.148438 Z M 163.875 271.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.636719 268.957031 C 161.636719 268.839844 161.542969 268.746094 161.425781 268.746094 C 161.308594 268.746094 161.214844 268.839844 161.214844 268.957031 C 161.214844 269.074219 161.308594 269.167969 161.425781 269.167969 C 161.542969 269.167969 161.636719 269.074219 161.636719 268.957031 Z M 161.636719 268.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.378906 269.304688 C 160.378906 269.1875 160.285156 269.09375 160.167969 269.09375 C 160.050781 269.09375 159.957031 269.1875 159.957031 269.304688 C 159.957031 269.421875 160.050781 269.515625 160.167969 269.515625 C 160.285156 269.515625 160.378906 269.421875 160.378906 269.304688 Z M 160.378906 269.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.640625 263.578125 C 160.640625 263.460938 160.546875 263.367188 160.429688 263.367188 C 160.3125 263.367188 160.21875 263.460938 160.21875 263.578125 C 160.21875 263.695312 160.3125 263.789062 160.429688 263.789062 C 160.546875 263.789062 160.640625 263.695312 160.640625 263.578125 Z M 160.640625 263.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.441406 265.222656 C 156.441406 265.105469 156.347656 265.011719 156.230469 265.011719 C 156.113281 265.011719 156.019531 265.105469 156.019531 265.222656 C 156.019531 265.339844 156.113281 265.433594 156.230469 265.433594 C 156.347656 265.433594 156.441406 265.339844 156.441406 265.222656 Z M 156.441406 265.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.109375 263.207031 C 158.109375 263.089844 158.015625 262.996094 157.898438 262.996094 C 157.78125 262.996094 157.6875 263.089844 157.6875 263.207031 C 157.6875 263.324219 157.78125 263.417969 157.898438 263.417969 C 158.015625 263.417969 158.109375 263.324219 158.109375 263.207031 Z M 158.109375 263.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.609375 263.109375 C 157.609375 262.992188 157.515625 262.898438 157.398438 262.898438 C 157.28125 262.898438 157.1875 262.992188 157.1875 263.109375 C 157.1875 263.226562 157.28125 263.320312 157.398438 263.320312 C 157.515625 263.320312 157.609375 263.226562 157.609375 263.109375 Z M 157.609375 263.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.835938 265.363281 C 160.835938 265.246094 160.742188 265.152344 160.625 265.152344 C 160.507812 265.152344 160.414062 265.246094 160.414062 265.363281 C 160.414062 265.480469 160.507812 265.574219 160.625 265.574219 C 160.742188 265.574219 160.835938 265.480469 160.835938 265.363281 Z M 160.835938 265.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.9375 265.253906 C 161.9375 265.136719 161.84375 265.042969 161.726562 265.042969 C 161.609375 265.042969 161.515625 265.136719 161.515625 265.253906 C 161.515625 265.371094 161.609375 265.464844 161.726562 265.464844 C 161.84375 265.464844 161.9375 265.371094 161.9375 265.253906 Z M 161.9375 265.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.992188 265.734375 C 158.992188 265.617188 158.898438 265.523438 158.78125 265.523438 C 158.664062 265.523438 158.570312 265.617188 158.570312 265.734375 C 158.570312 265.851562 158.664062 265.945312 158.78125 265.945312 C 158.898438 265.945312 158.992188 265.851562 158.992188 265.734375 Z M 158.992188 265.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.667969 263.363281 C 155.667969 263.246094 155.574219 263.152344 155.457031 263.152344 C 155.339844 263.152344 155.246094 263.246094 155.246094 263.363281 C 155.246094 263.480469 155.339844 263.574219 155.457031 263.574219 C 155.574219 263.574219 155.667969 263.480469 155.667969 263.363281 Z M 155.667969 263.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.015625 265.816406 C 154.015625 265.699219 153.921875 265.605469 153.804688 265.605469 C 153.6875 265.605469 153.59375 265.699219 153.59375 265.816406 C 153.59375 265.933594 153.6875 266.027344 153.804688 266.027344 C 153.921875 266.027344 154.015625 265.933594 154.015625 265.816406 Z M 154.015625 265.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.636719 266.671875 C 157.636719 266.554688 157.542969 266.460938 157.425781 266.460938 C 157.308594 266.460938 157.214844 266.554688 157.214844 266.671875 C 157.214844 266.789062 157.308594 266.882812 157.425781 266.882812 C 157.542969 266.882812 157.636719 266.789062 157.636719 266.671875 Z M 157.636719 266.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.675781 264.789062 C 155.675781 264.671875 155.582031 264.578125 155.464844 264.578125 C 155.347656 264.578125 155.253906 264.671875 155.253906 264.789062 C 155.253906 264.90625 155.347656 265 155.464844 265 C 155.582031 265 155.675781 264.90625 155.675781 264.789062 Z M 155.675781 264.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.707031 264.714844 C 154.707031 264.597656 154.613281 264.503906 154.496094 264.503906 C 154.378906 264.503906 154.285156 264.597656 154.285156 264.714844 C 154.285156 264.832031 154.378906 264.925781 154.496094 264.925781 C 154.613281 264.925781 154.707031 264.832031 154.707031 264.714844 Z M 154.707031 264.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.164062 265.117188 C 154.164062 265 154.070312 264.90625 153.953125 264.90625 C 153.835938 264.90625 153.742188 265 153.742188 265.117188 C 153.742188 265.234375 153.835938 265.328125 153.953125 265.328125 C 154.070312 265.328125 154.164062 265.234375 154.164062 265.117188 Z M 154.164062 265.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.199219 263.167969 C 157.199219 263.050781 157.105469 262.957031 156.988281 262.957031 C 156.871094 262.957031 156.777344 263.050781 156.777344 263.167969 C 156.777344 263.285156 156.871094 263.378906 156.988281 263.378906 C 157.105469 263.378906 157.199219 263.285156 157.199219 263.167969 Z M 157.199219 263.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.554688 264.964844 C 161.554688 264.847656 161.460938 264.753906 161.34375 264.753906 C 161.226562 264.753906 161.132812 264.847656 161.132812 264.964844 C 161.132812 265.082031 161.226562 265.175781 161.34375 265.175781 C 161.460938 265.175781 161.554688 265.082031 161.554688 264.964844 Z M 161.554688 264.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.011719 264.722656 C 159.011719 264.605469 158.917969 264.511719 158.800781 264.511719 C 158.683594 264.511719 158.589844 264.605469 158.589844 264.722656 C 158.589844 264.839844 158.683594 264.933594 158.800781 264.933594 C 158.917969 264.933594 159.011719 264.839844 159.011719 264.722656 Z M 159.011719 264.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.769531 261.792969 C 159.769531 261.675781 159.675781 261.582031 159.558594 261.582031 C 159.441406 261.582031 159.347656 261.675781 159.347656 261.792969 C 159.347656 261.910156 159.441406 262.003906 159.558594 262.003906 C 159.675781 262.003906 159.769531 261.910156 159.769531 261.792969 Z M 159.769531 261.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.808594 263.363281 C 160.808594 263.246094 160.714844 263.152344 160.597656 263.152344 C 160.480469 263.152344 160.386719 263.246094 160.386719 263.363281 C 160.386719 263.480469 160.480469 263.574219 160.597656 263.574219 C 160.714844 263.574219 160.808594 263.480469 160.808594 263.363281 Z M 160.808594 263.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.558594 264.679688 C 164.558594 264.5625 164.464844 264.46875 164.347656 264.46875 C 164.230469 264.46875 164.136719 264.5625 164.136719 264.679688 C 164.136719 264.796875 164.230469 264.890625 164.347656 264.890625 C 164.464844 264.890625 164.558594 264.796875 164.558594 264.679688 Z M 164.558594 264.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.554688 267.445312 C 165.554688 267.328125 165.460938 267.234375 165.34375 267.234375 C 165.226562 267.234375 165.132812 267.328125 165.132812 267.445312 C 165.132812 267.5625 165.226562 267.65625 165.34375 267.65625 C 165.460938 267.65625 165.554688 267.5625 165.554688 267.445312 Z M 165.554688 267.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.585938 269.882812 C 162.585938 269.765625 162.492188 269.671875 162.375 269.671875 C 162.257812 269.671875 162.164062 269.765625 162.164062 269.882812 C 162.164062 270 162.257812 270.09375 162.375 270.09375 C 162.492188 270.09375 162.585938 270 162.585938 269.882812 Z M 162.585938 269.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.382812 267.824219 C 160.382812 267.707031 160.289062 267.613281 160.171875 267.613281 C 160.054688 267.613281 159.960938 267.707031 159.960938 267.824219 C 159.960938 267.941406 160.054688 268.035156 160.171875 268.035156 C 160.289062 268.035156 160.382812 267.941406 160.382812 267.824219 Z M 160.382812 267.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.269531 263.675781 C 161.269531 263.558594 161.175781 263.464844 161.058594 263.464844 C 160.941406 263.464844 160.847656 263.558594 160.847656 263.675781 C 160.847656 263.792969 160.941406 263.886719 161.058594 263.886719 C 161.175781 263.886719 161.269531 263.792969 161.269531 263.675781 Z M 161.269531 263.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.101562 264.070312 C 162.101562 263.953125 162.007812 263.859375 161.890625 263.859375 C 161.773438 263.859375 161.679688 263.953125 161.679688 264.070312 C 161.679688 264.1875 161.773438 264.28125 161.890625 264.28125 C 162.007812 264.28125 162.101562 264.1875 162.101562 264.070312 Z M 162.101562 264.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.183594 269.875 C 164.183594 269.757812 164.089844 269.664062 163.972656 269.664062 C 163.855469 269.664062 163.761719 269.757812 163.761719 269.875 C 163.761719 269.992188 163.855469 270.085938 163.972656 270.085938 C 164.089844 270.085938 164.183594 269.992188 164.183594 269.875 Z M 164.183594 269.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.808594 272.390625 C 161.808594 272.273438 161.714844 272.179688 161.597656 272.179688 C 161.480469 272.179688 161.386719 272.273438 161.386719 272.390625 C 161.386719 272.507812 161.480469 272.601562 161.597656 272.601562 C 161.714844 272.601562 161.808594 272.507812 161.808594 272.390625 Z M 161.808594 272.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.222656 273.003906 C 157.222656 272.886719 157.128906 272.792969 157.011719 272.792969 C 156.894531 272.792969 156.800781 272.886719 156.800781 273.003906 C 156.800781 273.121094 156.894531 273.214844 157.011719 273.214844 C 157.128906 273.214844 157.222656 273.121094 157.222656 273.003906 Z M 157.222656 273.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.769531 270.019531 C 160.769531 269.902344 160.675781 269.808594 160.558594 269.808594 C 160.441406 269.808594 160.347656 269.902344 160.347656 270.019531 C 160.347656 270.136719 160.441406 270.230469 160.558594 270.230469 C 160.675781 270.230469 160.769531 270.136719 160.769531 270.019531 Z M 160.769531 270.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.894531 270.414062 C 162.894531 270.296875 162.800781 270.203125 162.683594 270.203125 C 162.566406 270.203125 162.472656 270.296875 162.472656 270.414062 C 162.472656 270.53125 162.566406 270.625 162.683594 270.625 C 162.800781 270.625 162.894531 270.53125 162.894531 270.414062 Z M 162.894531 270.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.964844 267.597656 C 161.964844 267.480469 161.871094 267.386719 161.753906 267.386719 C 161.636719 267.386719 161.542969 267.480469 161.542969 267.597656 C 161.542969 267.714844 161.636719 267.808594 161.753906 267.808594 C 161.871094 267.808594 161.964844 267.714844 161.964844 267.597656 Z M 161.964844 267.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.460938 267.128906 C 162.460938 267.011719 162.367188 266.917969 162.25 266.917969 C 162.132812 266.917969 162.039062 267.011719 162.039062 267.128906 C 162.039062 267.246094 162.132812 267.339844 162.25 267.339844 C 162.367188 267.339844 162.460938 267.246094 162.460938 267.128906 Z M 162.460938 267.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.28125 268.023438 C 163.28125 267.90625 163.1875 267.8125 163.070312 267.8125 C 162.953125 267.8125 162.859375 267.90625 162.859375 268.023438 C 162.859375 268.140625 162.953125 268.234375 163.070312 268.234375 C 163.1875 268.234375 163.28125 268.140625 163.28125 268.023438 Z M 163.28125 268.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.617188 266.214844 C 162.617188 266.097656 162.523438 266.003906 162.40625 266.003906 C 162.289062 266.003906 162.195312 266.097656 162.195312 266.214844 C 162.195312 266.332031 162.289062 266.425781 162.40625 266.425781 C 162.523438 266.425781 162.617188 266.332031 162.617188 266.214844 Z M 162.617188 266.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.359375 268.789062 C 159.359375 268.671875 159.265625 268.578125 159.148438 268.578125 C 159.03125 268.578125 158.9375 268.671875 158.9375 268.789062 C 158.9375 268.90625 159.03125 269 159.148438 269 C 159.265625 269 159.359375 268.90625 159.359375 268.789062 Z M 159.359375 268.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.425781 266.941406 C 160.425781 266.824219 160.332031 266.730469 160.214844 266.730469 C 160.097656 266.730469 160.003906 266.824219 160.003906 266.941406 C 160.003906 267.058594 160.097656 267.152344 160.214844 267.152344 C 160.332031 267.152344 160.425781 267.058594 160.425781 266.941406 Z M 160.425781 266.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.753906 265.980469 C 161.753906 265.863281 161.660156 265.769531 161.542969 265.769531 C 161.425781 265.769531 161.332031 265.863281 161.332031 265.980469 C 161.332031 266.097656 161.425781 266.191406 161.542969 266.191406 C 161.660156 266.191406 161.753906 266.097656 161.753906 265.980469 Z M 161.753906 265.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.425781 263.613281 C 160.425781 263.496094 160.332031 263.402344 160.214844 263.402344 C 160.097656 263.402344 160.003906 263.496094 160.003906 263.613281 C 160.003906 263.730469 160.097656 263.824219 160.214844 263.824219 C 160.332031 263.824219 160.425781 263.730469 160.425781 263.613281 Z M 160.425781 263.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.277344 265.234375 C 161.277344 265.117188 161.183594 265.023438 161.066406 265.023438 C 160.949219 265.023438 160.855469 265.117188 160.855469 265.234375 C 160.855469 265.351562 160.949219 265.445312 161.066406 265.445312 C 161.183594 265.445312 161.277344 265.351562 161.277344 265.234375 Z M 161.277344 265.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.367188 266.828125 C 162.367188 266.710938 162.273438 266.617188 162.15625 266.617188 C 162.039062 266.617188 161.945312 266.710938 161.945312 266.828125 C 161.945312 266.945312 162.039062 267.039062 162.15625 267.039062 C 162.273438 267.039062 162.367188 266.945312 162.367188 266.828125 Z M 162.367188 266.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.386719 264.390625 C 162.386719 264.273438 162.292969 264.179688 162.175781 264.179688 C 162.058594 264.179688 161.964844 264.273438 161.964844 264.390625 C 161.964844 264.507812 162.058594 264.601562 162.175781 264.601562 C 162.292969 264.601562 162.386719 264.507812 162.386719 264.390625 Z M 162.386719 264.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.625 262.058594 C 163.625 261.941406 163.53125 261.847656 163.414062 261.847656 C 163.296875 261.847656 163.203125 261.941406 163.203125 262.058594 C 163.203125 262.175781 163.296875 262.269531 163.414062 262.269531 C 163.53125 262.269531 163.625 262.175781 163.625 262.058594 Z M 163.625 262.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.070312 265.976562 C 162.070312 265.859375 161.976562 265.765625 161.859375 265.765625 C 161.742188 265.765625 161.648438 265.859375 161.648438 265.976562 C 161.648438 266.09375 161.742188 266.1875 161.859375 266.1875 C 161.976562 266.1875 162.070312 266.09375 162.070312 265.976562 Z M 162.070312 265.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.152344 265.105469 C 161.152344 264.988281 161.058594 264.894531 160.941406 264.894531 C 160.824219 264.894531 160.730469 264.988281 160.730469 265.105469 C 160.730469 265.222656 160.824219 265.316406 160.941406 265.316406 C 161.058594 265.316406 161.152344 265.222656 161.152344 265.105469 Z M 161.152344 265.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.261719 268.527344 C 158.261719 268.410156 158.167969 268.316406 158.050781 268.316406 C 157.933594 268.316406 157.839844 268.410156 157.839844 268.527344 C 157.839844 268.644531 157.933594 268.738281 158.050781 268.738281 C 158.167969 268.738281 158.261719 268.644531 158.261719 268.527344 Z M 158.261719 268.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.554688 267.074219 C 153.554688 266.957031 153.460938 266.863281 153.34375 266.863281 C 153.226562 266.863281 153.132812 266.957031 153.132812 267.074219 C 153.132812 267.191406 153.226562 267.285156 153.34375 267.285156 C 153.460938 267.285156 153.554688 267.191406 153.554688 267.074219 Z M 153.554688 267.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.929688 266.464844 C 153.929688 266.347656 153.835938 266.253906 153.71875 266.253906 C 153.601562 266.253906 153.507812 266.347656 153.507812 266.464844 C 153.507812 266.582031 153.601562 266.675781 153.71875 266.675781 C 153.835938 266.675781 153.929688 266.582031 153.929688 266.464844 Z M 153.929688 266.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.320312 265.007812 C 154.320312 264.890625 154.226562 264.796875 154.109375 264.796875 C 153.992188 264.796875 153.898438 264.890625 153.898438 265.007812 C 153.898438 265.125 153.992188 265.21875 154.109375 265.21875 C 154.226562 265.21875 154.320312 265.125 154.320312 265.007812 Z M 154.320312 265.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.664062 264.179688 C 152.664062 264.0625 152.570312 263.96875 152.453125 263.96875 C 152.335938 263.96875 152.242188 264.0625 152.242188 264.179688 C 152.242188 264.296875 152.335938 264.390625 152.453125 264.390625 C 152.570312 264.390625 152.664062 264.296875 152.664062 264.179688 Z M 152.664062 264.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.296875 265.480469 C 149.296875 265.363281 149.203125 265.269531 149.085938 265.269531 C 148.96875 265.269531 148.875 265.363281 148.875 265.480469 C 148.875 265.597656 148.96875 265.691406 149.085938 265.691406 C 149.203125 265.691406 149.296875 265.597656 149.296875 265.480469 Z M 149.296875 265.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.464844 261 C 149.464844 260.882812 149.371094 260.789062 149.253906 260.789062 C 149.136719 260.789062 149.042969 260.882812 149.042969 261 C 149.042969 261.117188 149.136719 261.210938 149.253906 261.210938 C 149.371094 261.210938 149.464844 261.117188 149.464844 261 Z M 149.464844 261 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.183594 261.070312 C 151.183594 260.953125 151.089844 260.859375 150.972656 260.859375 C 150.855469 260.859375 150.761719 260.953125 150.761719 261.070312 C 150.761719 261.1875 150.855469 261.28125 150.972656 261.28125 C 151.089844 261.28125 151.183594 261.1875 151.183594 261.070312 Z M 151.183594 261.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.761719 261.933594 C 146.761719 261.816406 146.667969 261.722656 146.550781 261.722656 C 146.433594 261.722656 146.339844 261.816406 146.339844 261.933594 C 146.339844 262.050781 146.433594 262.144531 146.550781 262.144531 C 146.667969 262.144531 146.761719 262.050781 146.761719 261.933594 Z M 146.761719 261.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.496094 260.261719 C 146.496094 260.144531 146.402344 260.050781 146.285156 260.050781 C 146.167969 260.050781 146.074219 260.144531 146.074219 260.261719 C 146.074219 260.378906 146.167969 260.472656 146.285156 260.472656 C 146.402344 260.472656 146.496094 260.378906 146.496094 260.261719 Z M 146.496094 260.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145 261.492188 C 145 261.375 144.90625 261.28125 144.789062 261.28125 C 144.671875 261.28125 144.578125 261.375 144.578125 261.492188 C 144.578125 261.609375 144.671875 261.703125 144.789062 261.703125 C 144.90625 261.703125 145 261.609375 145 261.492188 Z M 145 261.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.851562 259.589844 C 146.851562 259.472656 146.757812 259.378906 146.640625 259.378906 C 146.523438 259.378906 146.429688 259.472656 146.429688 259.589844 C 146.429688 259.707031 146.523438 259.800781 146.640625 259.800781 C 146.757812 259.800781 146.851562 259.707031 146.851562 259.589844 Z M 146.851562 259.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.214844 259.242188 C 147.214844 259.125 147.121094 259.03125 147.003906 259.03125 C 146.886719 259.03125 146.792969 259.125 146.792969 259.242188 C 146.792969 259.359375 146.886719 259.453125 147.003906 259.453125 C 147.121094 259.453125 147.214844 259.359375 147.214844 259.242188 Z M 147.214844 259.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.71875 257.917969 C 149.71875 257.800781 149.625 257.707031 149.507812 257.707031 C 149.390625 257.707031 149.296875 257.800781 149.296875 257.917969 C 149.296875 258.035156 149.390625 258.128906 149.507812 258.128906 C 149.625 258.128906 149.71875 258.035156 149.71875 257.917969 Z M 149.71875 257.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.296875 258.007812 C 152.296875 257.890625 152.203125 257.796875 152.085938 257.796875 C 151.96875 257.796875 151.875 257.890625 151.875 258.007812 C 151.875 258.125 151.96875 258.21875 152.085938 258.21875 C 152.203125 258.21875 152.296875 258.125 152.296875 258.007812 Z M 152.296875 258.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.472656 258.128906 C 156.472656 258.011719 156.378906 257.917969 156.261719 257.917969 C 156.144531 257.917969 156.050781 258.011719 156.050781 258.128906 C 156.050781 258.246094 156.144531 258.339844 156.261719 258.339844 C 156.378906 258.339844 156.472656 258.246094 156.472656 258.128906 Z M 156.472656 258.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.105469 259.90625 C 157.105469 259.789062 157.011719 259.695312 156.894531 259.695312 C 156.777344 259.695312 156.683594 259.789062 156.683594 259.90625 C 156.683594 260.023438 156.777344 260.117188 156.894531 260.117188 C 157.011719 260.117188 157.105469 260.023438 157.105469 259.90625 Z M 157.105469 259.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.125 261.601562 C 157.125 261.484375 157.03125 261.390625 156.914062 261.390625 C 156.796875 261.390625 156.703125 261.484375 156.703125 261.601562 C 156.703125 261.71875 156.796875 261.8125 156.914062 261.8125 C 157.03125 261.8125 157.125 261.71875 157.125 261.601562 Z M 157.125 261.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.902344 260.625 C 158.902344 260.507812 158.808594 260.414062 158.691406 260.414062 C 158.574219 260.414062 158.480469 260.507812 158.480469 260.625 C 158.480469 260.742188 158.574219 260.835938 158.691406 260.835938 C 158.808594 260.835938 158.902344 260.742188 158.902344 260.625 Z M 158.902344 260.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.921875 262.46875 C 158.921875 262.351562 158.828125 262.257812 158.710938 262.257812 C 158.59375 262.257812 158.5 262.351562 158.5 262.46875 C 158.5 262.585938 158.59375 262.679688 158.710938 262.679688 C 158.828125 262.679688 158.921875 262.585938 158.921875 262.46875 Z M 158.921875 262.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.90625 263.796875 C 158.90625 263.679688 158.8125 263.585938 158.695312 263.585938 C 158.578125 263.585938 158.484375 263.679688 158.484375 263.796875 C 158.484375 263.914062 158.578125 264.007812 158.695312 264.007812 C 158.8125 264.007812 158.90625 263.914062 158.90625 263.796875 Z M 158.90625 263.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.078125 264.089844 C 163.078125 263.972656 162.984375 263.878906 162.867188 263.878906 C 162.75 263.878906 162.65625 263.972656 162.65625 264.089844 C 162.65625 264.207031 162.75 264.300781 162.867188 264.300781 C 162.984375 264.300781 163.078125 264.207031 163.078125 264.089844 Z M 163.078125 264.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.480469 262.785156 C 161.480469 262.667969 161.386719 262.574219 161.269531 262.574219 C 161.152344 262.574219 161.058594 262.667969 161.058594 262.785156 C 161.058594 262.902344 161.152344 262.996094 161.269531 262.996094 C 161.386719 262.996094 161.480469 262.902344 161.480469 262.785156 Z M 161.480469 262.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.207031 262.652344 C 162.207031 262.535156 162.113281 262.441406 161.996094 262.441406 C 161.878906 262.441406 161.785156 262.535156 161.785156 262.652344 C 161.785156 262.769531 161.878906 262.863281 161.996094 262.863281 C 162.113281 262.863281 162.207031 262.769531 162.207031 262.652344 Z M 162.207031 262.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.011719 264.625 C 161.011719 264.507812 160.917969 264.414062 160.800781 264.414062 C 160.683594 264.414062 160.589844 264.507812 160.589844 264.625 C 160.589844 264.742188 160.683594 264.835938 160.800781 264.835938 C 160.917969 264.835938 161.011719 264.742188 161.011719 264.625 Z M 161.011719 264.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.90625 264.179688 C 162.90625 264.0625 162.8125 263.96875 162.695312 263.96875 C 162.578125 263.96875 162.484375 264.0625 162.484375 264.179688 C 162.484375 264.296875 162.578125 264.390625 162.695312 264.390625 C 162.8125 264.390625 162.90625 264.296875 162.90625 264.179688 Z M 162.90625 264.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.136719 266.367188 C 166.136719 266.25 166.042969 266.15625 165.925781 266.15625 C 165.808594 266.15625 165.714844 266.25 165.714844 266.367188 C 165.714844 266.484375 165.808594 266.578125 165.925781 266.578125 C 166.042969 266.578125 166.136719 266.484375 166.136719 266.367188 Z M 166.136719 266.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.625 264.828125 C 170.625 264.710938 170.53125 264.617188 170.414062 264.617188 C 170.296875 264.617188 170.203125 264.710938 170.203125 264.828125 C 170.203125 264.945312 170.296875 265.039062 170.414062 265.039062 C 170.53125 265.039062 170.625 264.945312 170.625 264.828125 Z M 170.625 264.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.414062 264.917969 C 167.414062 264.800781 167.320312 264.707031 167.203125 264.707031 C 167.085938 264.707031 166.992188 264.800781 166.992188 264.917969 C 166.992188 265.035156 167.085938 265.128906 167.203125 265.128906 C 167.320312 265.128906 167.414062 265.035156 167.414062 264.917969 Z M 167.414062 264.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.128906 262.125 C 169.128906 262.007812 169.035156 261.914062 168.917969 261.914062 C 168.800781 261.914062 168.707031 262.007812 168.707031 262.125 C 168.707031 262.242188 168.800781 262.335938 168.917969 262.335938 C 169.035156 262.335938 169.128906 262.242188 169.128906 262.125 Z M 169.128906 262.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.925781 259.128906 C 169.925781 259.011719 169.832031 258.917969 169.714844 258.917969 C 169.597656 258.917969 169.503906 259.011719 169.503906 259.128906 C 169.503906 259.246094 169.597656 259.339844 169.714844 259.339844 C 169.832031 259.339844 169.925781 259.246094 169.925781 259.128906 Z M 169.925781 259.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.53125 260.921875 C 168.53125 260.804688 168.4375 260.710938 168.320312 260.710938 C 168.203125 260.710938 168.109375 260.804688 168.109375 260.921875 C 168.109375 261.039062 168.203125 261.132812 168.320312 261.132812 C 168.4375 261.132812 168.53125 261.039062 168.53125 260.921875 Z M 168.53125 260.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.273438 259.839844 C 170.273438 259.722656 170.179688 259.628906 170.0625 259.628906 C 169.945312 259.628906 169.851562 259.722656 169.851562 259.839844 C 169.851562 259.957031 169.945312 260.050781 170.0625 260.050781 C 170.179688 260.050781 170.273438 259.957031 170.273438 259.839844 Z M 170.273438 259.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.605469 260.324219 C 174.605469 260.207031 174.511719 260.113281 174.394531 260.113281 C 174.277344 260.113281 174.183594 260.207031 174.183594 260.324219 C 174.183594 260.441406 174.277344 260.535156 174.394531 260.535156 C 174.511719 260.535156 174.605469 260.441406 174.605469 260.324219 Z M 174.605469 260.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.324219 261.511719 C 173.324219 261.394531 173.230469 261.300781 173.113281 261.300781 C 172.996094 261.300781 172.902344 261.394531 172.902344 261.511719 C 172.902344 261.628906 172.996094 261.722656 173.113281 261.722656 C 173.230469 261.722656 173.324219 261.628906 173.324219 261.511719 Z M 173.324219 261.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.167969 262.332031 C 171.167969 262.214844 171.074219 262.121094 170.957031 262.121094 C 170.839844 262.121094 170.746094 262.214844 170.746094 262.332031 C 170.746094 262.449219 170.839844 262.542969 170.957031 262.542969 C 171.074219 262.542969 171.167969 262.449219 171.167969 262.332031 Z M 171.167969 262.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.132812 261.832031 C 171.132812 261.714844 171.039062 261.621094 170.921875 261.621094 C 170.804688 261.621094 170.710938 261.714844 170.710938 261.832031 C 170.710938 261.949219 170.804688 262.042969 170.921875 262.042969 C 171.039062 262.042969 171.132812 261.949219 171.132812 261.832031 Z M 171.132812 261.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.019531 261.902344 C 171.019531 261.785156 170.925781 261.691406 170.808594 261.691406 C 170.691406 261.691406 170.597656 261.785156 170.597656 261.902344 C 170.597656 262.019531 170.691406 262.113281 170.808594 262.113281 C 170.925781 262.113281 171.019531 262.019531 171.019531 261.902344 Z M 171.019531 261.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.640625 263.96875 C 170.640625 263.851562 170.546875 263.757812 170.429688 263.757812 C 170.3125 263.757812 170.21875 263.851562 170.21875 263.96875 C 170.21875 264.085938 170.3125 264.179688 170.429688 264.179688 C 170.546875 264.179688 170.640625 264.085938 170.640625 263.96875 Z M 170.640625 263.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172 265.054688 C 172 264.9375 171.90625 264.84375 171.789062 264.84375 C 171.671875 264.84375 171.578125 264.9375 171.578125 265.054688 C 171.578125 265.171875 171.671875 265.265625 171.789062 265.265625 C 171.90625 265.265625 172 265.171875 172 265.054688 Z M 172 265.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.863281 264.191406 C 168.863281 264.074219 168.769531 263.980469 168.652344 263.980469 C 168.535156 263.980469 168.441406 264.074219 168.441406 264.191406 C 168.441406 264.308594 168.535156 264.402344 168.652344 264.402344 C 168.769531 264.402344 168.863281 264.308594 168.863281 264.191406 Z M 168.863281 264.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.941406 259.28125 C 172.941406 259.164062 172.847656 259.070312 172.730469 259.070312 C 172.613281 259.070312 172.519531 259.164062 172.519531 259.28125 C 172.519531 259.398438 172.613281 259.492188 172.730469 259.492188 C 172.847656 259.492188 172.941406 259.398438 172.941406 259.28125 Z M 172.941406 259.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.832031 259.1875 C 172.832031 259.070312 172.738281 258.976562 172.621094 258.976562 C 172.503906 258.976562 172.410156 259.070312 172.410156 259.1875 C 172.410156 259.304688 172.503906 259.398438 172.621094 259.398438 C 172.738281 259.398438 172.832031 259.304688 172.832031 259.1875 Z M 172.832031 259.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.679688 261.246094 C 173.679688 261.128906 173.585938 261.035156 173.46875 261.035156 C 173.351562 261.035156 173.257812 261.128906 173.257812 261.246094 C 173.257812 261.363281 173.351562 261.457031 173.46875 261.457031 C 173.585938 261.457031 173.679688 261.363281 173.679688 261.246094 Z M 173.679688 261.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.167969 260.96875 C 170.167969 260.851562 170.074219 260.757812 169.957031 260.757812 C 169.839844 260.757812 169.746094 260.851562 169.746094 260.96875 C 169.746094 261.085938 169.839844 261.179688 169.957031 261.179688 C 170.074219 261.179688 170.167969 261.085938 170.167969 260.96875 Z M 170.167969 260.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.722656 261.796875 C 169.722656 261.679688 169.628906 261.585938 169.511719 261.585938 C 169.394531 261.585938 169.300781 261.679688 169.300781 261.796875 C 169.300781 261.914062 169.394531 262.007812 169.511719 262.007812 C 169.628906 262.007812 169.722656 261.914062 169.722656 261.796875 Z M 169.722656 261.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.839844 262.601562 C 165.839844 262.484375 165.746094 262.390625 165.628906 262.390625 C 165.511719 262.390625 165.417969 262.484375 165.417969 262.601562 C 165.417969 262.71875 165.511719 262.8125 165.628906 262.8125 C 165.746094 262.8125 165.839844 262.71875 165.839844 262.601562 Z M 165.839844 262.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.878906 262.84375 C 164.878906 262.726562 164.785156 262.632812 164.667969 262.632812 C 164.550781 262.632812 164.457031 262.726562 164.457031 262.84375 C 164.457031 262.960938 164.550781 263.054688 164.667969 263.054688 C 164.785156 263.054688 164.878906 262.960938 164.878906 262.84375 Z M 164.878906 262.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.769531 261.84375 C 167.769531 261.726562 167.675781 261.632812 167.558594 261.632812 C 167.441406 261.632812 167.347656 261.726562 167.347656 261.84375 C 167.347656 261.960938 167.441406 262.054688 167.558594 262.054688 C 167.675781 262.054688 167.769531 261.960938 167.769531 261.84375 Z M 167.769531 261.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.050781 262.75 C 169.050781 262.632812 168.957031 262.539062 168.839844 262.539062 C 168.722656 262.539062 168.628906 262.632812 168.628906 262.75 C 168.628906 262.867188 168.722656 262.960938 168.839844 262.960938 C 168.957031 262.960938 169.050781 262.867188 169.050781 262.75 Z M 169.050781 262.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.335938 263.125 C 167.335938 263.007812 167.242188 262.914062 167.125 262.914062 C 167.007812 262.914062 166.914062 263.007812 166.914062 263.125 C 166.914062 263.242188 167.007812 263.335938 167.125 263.335938 C 167.242188 263.335938 167.335938 263.242188 167.335938 263.125 Z M 167.335938 263.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.554688 266.214844 C 166.554688 266.097656 166.460938 266.003906 166.34375 266.003906 C 166.226562 266.003906 166.132812 266.097656 166.132812 266.214844 C 166.132812 266.332031 166.226562 266.425781 166.34375 266.425781 C 166.460938 266.425781 166.554688 266.332031 166.554688 266.214844 Z M 166.554688 266.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.183594 264.347656 C 167.183594 264.230469 167.089844 264.136719 166.972656 264.136719 C 166.855469 264.136719 166.761719 264.230469 166.761719 264.347656 C 166.761719 264.464844 166.855469 264.558594 166.972656 264.558594 C 167.089844 264.558594 167.183594 264.464844 167.183594 264.347656 Z M 167.183594 264.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.082031 261.789062 C 166.082031 261.671875 165.988281 261.578125 165.871094 261.578125 C 165.753906 261.578125 165.660156 261.671875 165.660156 261.789062 C 165.660156 261.90625 165.753906 262 165.871094 262 C 165.988281 262 166.082031 261.90625 166.082031 261.789062 Z M 166.082031 261.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.003906 261.304688 C 166.003906 261.1875 165.910156 261.09375 165.792969 261.09375 C 165.675781 261.09375 165.582031 261.1875 165.582031 261.304688 C 165.582031 261.421875 165.675781 261.515625 165.792969 261.515625 C 165.910156 261.515625 166.003906 261.421875 166.003906 261.304688 Z M 166.003906 261.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.75 264.65625 C 165.75 264.539062 165.65625 264.445312 165.539062 264.445312 C 165.421875 264.445312 165.328125 264.539062 165.328125 264.65625 C 165.328125 264.773438 165.421875 264.867188 165.539062 264.867188 C 165.65625 264.867188 165.75 264.773438 165.75 264.65625 Z M 165.75 264.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.730469 264.324219 C 168.730469 264.207031 168.636719 264.113281 168.519531 264.113281 C 168.402344 264.113281 168.308594 264.207031 168.308594 264.324219 C 168.308594 264.441406 168.402344 264.535156 168.519531 264.535156 C 168.636719 264.535156 168.730469 264.441406 168.730469 264.324219 Z M 168.730469 264.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.132812 266.144531 C 169.132812 266.027344 169.039062 265.933594 168.921875 265.933594 C 168.804688 265.933594 168.710938 266.027344 168.710938 266.144531 C 168.710938 266.261719 168.804688 266.355469 168.921875 266.355469 C 169.039062 266.355469 169.132812 266.261719 169.132812 266.144531 Z M 169.132812 266.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.140625 268.542969 C 169.140625 268.425781 169.046875 268.332031 168.929688 268.332031 C 168.8125 268.332031 168.71875 268.425781 168.71875 268.542969 C 168.71875 268.660156 168.8125 268.753906 168.929688 268.753906 C 169.046875 268.753906 169.140625 268.660156 169.140625 268.542969 Z M 169.140625 268.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.277344 270.761719 C 169.277344 270.644531 169.183594 270.550781 169.066406 270.550781 C 168.949219 270.550781 168.855469 270.644531 168.855469 270.761719 C 168.855469 270.878906 168.949219 270.972656 169.066406 270.972656 C 169.183594 270.972656 169.277344 270.878906 169.277344 270.761719 Z M 169.277344 270.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.839844 272.308594 C 169.839844 272.191406 169.746094 272.097656 169.628906 272.097656 C 169.511719 272.097656 169.417969 272.191406 169.417969 272.308594 C 169.417969 272.425781 169.511719 272.519531 169.628906 272.519531 C 169.746094 272.519531 169.839844 272.425781 169.839844 272.308594 Z M 169.839844 272.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.632812 275.808594 C 166.632812 275.691406 166.539062 275.597656 166.421875 275.597656 C 166.304688 275.597656 166.210938 275.691406 166.210938 275.808594 C 166.210938 275.925781 166.304688 276.019531 166.421875 276.019531 C 166.539062 276.019531 166.632812 275.925781 166.632812 275.808594 Z M 166.632812 275.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.269531 276.316406 C 168.269531 276.199219 168.175781 276.105469 168.058594 276.105469 C 167.941406 276.105469 167.847656 276.199219 167.847656 276.316406 C 167.847656 276.433594 167.941406 276.527344 168.058594 276.527344 C 168.175781 276.527344 168.269531 276.433594 168.269531 276.316406 Z M 168.269531 276.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.550781 275.289062 C 164.550781 275.171875 164.457031 275.078125 164.339844 275.078125 C 164.222656 275.078125 164.128906 275.171875 164.128906 275.289062 C 164.128906 275.40625 164.222656 275.5 164.339844 275.5 C 164.457031 275.5 164.550781 275.40625 164.550781 275.289062 Z M 164.550781 275.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.746094 276.546875 C 160.746094 276.429688 160.652344 276.335938 160.535156 276.335938 C 160.417969 276.335938 160.324219 276.429688 160.324219 276.546875 C 160.324219 276.664062 160.417969 276.757812 160.535156 276.757812 C 160.652344 276.757812 160.746094 276.664062 160.746094 276.546875 Z M 160.746094 276.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.46875 277.640625 C 158.46875 277.523438 158.375 277.429688 158.257812 277.429688 C 158.140625 277.429688 158.046875 277.523438 158.046875 277.640625 C 158.046875 277.757812 158.140625 277.851562 158.257812 277.851562 C 158.375 277.851562 158.46875 277.757812 158.46875 277.640625 Z M 158.46875 277.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.871094 276.0625 C 159.871094 275.945312 159.777344 275.851562 159.660156 275.851562 C 159.542969 275.851562 159.449219 275.945312 159.449219 276.0625 C 159.449219 276.179688 159.542969 276.273438 159.660156 276.273438 C 159.777344 276.273438 159.871094 276.179688 159.871094 276.0625 Z M 159.871094 276.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.824219 274.90625 C 157.824219 274.789062 157.730469 274.695312 157.613281 274.695312 C 157.496094 274.695312 157.402344 274.789062 157.402344 274.90625 C 157.402344 275.023438 157.496094 275.117188 157.613281 275.117188 C 157.730469 275.117188 157.824219 275.023438 157.824219 274.90625 Z M 157.824219 274.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.671875 274.0625 C 159.671875 273.945312 159.578125 273.851562 159.460938 273.851562 C 159.34375 273.851562 159.25 273.945312 159.25 274.0625 C 159.25 274.179688 159.34375 274.273438 159.460938 274.273438 C 159.578125 274.273438 159.671875 274.179688 159.671875 274.0625 Z M 159.671875 274.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.449219 276.296875 C 161.449219 276.179688 161.355469 276.085938 161.238281 276.085938 C 161.121094 276.085938 161.027344 276.179688 161.027344 276.296875 C 161.027344 276.414062 161.121094 276.507812 161.238281 276.507812 C 161.355469 276.507812 161.449219 276.414062 161.449219 276.296875 Z M 161.449219 276.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.675781 280.382812 C 158.675781 280.265625 158.582031 280.171875 158.464844 280.171875 C 158.347656 280.171875 158.253906 280.265625 158.253906 280.382812 C 158.253906 280.5 158.347656 280.59375 158.464844 280.59375 C 158.582031 280.59375 158.675781 280.5 158.675781 280.382812 Z M 158.675781 280.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.078125 279.238281 C 157.078125 279.121094 156.984375 279.027344 156.867188 279.027344 C 156.75 279.027344 156.65625 279.121094 156.65625 279.238281 C 156.65625 279.355469 156.75 279.449219 156.867188 279.449219 C 156.984375 279.449219 157.078125 279.355469 157.078125 279.238281 Z M 157.078125 279.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.257812 281.453125 C 161.257812 281.335938 161.164062 281.242188 161.046875 281.242188 C 160.929688 281.242188 160.835938 281.335938 160.835938 281.453125 C 160.835938 281.570312 160.929688 281.664062 161.046875 281.664062 C 161.164062 281.664062 161.257812 281.570312 161.257812 281.453125 Z M 161.257812 281.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.671875 280.480469 C 163.671875 280.363281 163.578125 280.269531 163.460938 280.269531 C 163.34375 280.269531 163.25 280.363281 163.25 280.480469 C 163.25 280.597656 163.34375 280.691406 163.460938 280.691406 C 163.578125 280.691406 163.671875 280.597656 163.671875 280.480469 Z M 163.671875 280.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.308594 280.179688 C 162.308594 280.0625 162.214844 279.96875 162.097656 279.96875 C 161.980469 279.96875 161.886719 280.0625 161.886719 280.179688 C 161.886719 280.296875 161.980469 280.390625 162.097656 280.390625 C 162.214844 280.390625 162.308594 280.296875 162.308594 280.179688 Z M 162.308594 280.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.253906 278.21875 C 161.253906 278.101562 161.160156 278.007812 161.042969 278.007812 C 160.925781 278.007812 160.832031 278.101562 160.832031 278.21875 C 160.832031 278.335938 160.925781 278.429688 161.042969 278.429688 C 161.160156 278.429688 161.253906 278.335938 161.253906 278.21875 Z M 161.253906 278.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.753906 274.402344 C 160.753906 274.285156 160.660156 274.191406 160.542969 274.191406 C 160.425781 274.191406 160.332031 274.285156 160.332031 274.402344 C 160.332031 274.519531 160.425781 274.613281 160.542969 274.613281 C 160.660156 274.613281 160.753906 274.519531 160.753906 274.402344 Z M 160.753906 274.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.53125 277.84375 C 159.53125 277.726562 159.4375 277.632812 159.320312 277.632812 C 159.203125 277.632812 159.109375 277.726562 159.109375 277.84375 C 159.109375 277.960938 159.203125 278.054688 159.320312 278.054688 C 159.4375 278.054688 159.53125 277.960938 159.53125 277.84375 Z M 159.53125 277.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.71875 278.980469 C 157.71875 278.863281 157.625 278.769531 157.507812 278.769531 C 157.390625 278.769531 157.296875 278.863281 157.296875 278.980469 C 157.296875 279.097656 157.390625 279.191406 157.507812 279.191406 C 157.625 279.191406 157.71875 279.097656 157.71875 278.980469 Z M 157.71875 278.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.867188 279.164062 C 157.867188 279.046875 157.773438 278.953125 157.65625 278.953125 C 157.539062 278.953125 157.445312 279.046875 157.445312 279.164062 C 157.445312 279.28125 157.539062 279.375 157.65625 279.375 C 157.773438 279.375 157.867188 279.28125 157.867188 279.164062 Z M 157.867188 279.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.4375 282.585938 C 158.4375 282.46875 158.34375 282.375 158.226562 282.375 C 158.109375 282.375 158.015625 282.46875 158.015625 282.585938 C 158.015625 282.703125 158.109375 282.796875 158.226562 282.796875 C 158.34375 282.796875 158.4375 282.703125 158.4375 282.585938 Z M 158.4375 282.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.714844 288.128906 C 162.714844 288.011719 162.621094 287.917969 162.503906 287.917969 C 162.386719 287.917969 162.292969 288.011719 162.292969 288.128906 C 162.292969 288.246094 162.386719 288.339844 162.503906 288.339844 C 162.621094 288.339844 162.714844 288.246094 162.714844 288.128906 Z M 162.714844 288.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.660156 285.4375 C 161.660156 285.320312 161.566406 285.226562 161.449219 285.226562 C 161.332031 285.226562 161.238281 285.320312 161.238281 285.4375 C 161.238281 285.554688 161.332031 285.648438 161.449219 285.648438 C 161.566406 285.648438 161.660156 285.554688 161.660156 285.4375 Z M 161.660156 285.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.015625 282.46875 C 160.015625 282.351562 159.921875 282.257812 159.804688 282.257812 C 159.6875 282.257812 159.59375 282.351562 159.59375 282.46875 C 159.59375 282.585938 159.6875 282.679688 159.804688 282.679688 C 159.921875 282.679688 160.015625 282.585938 160.015625 282.46875 Z M 160.015625 282.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.871094 281.894531 C 158.871094 281.777344 158.777344 281.683594 158.660156 281.683594 C 158.542969 281.683594 158.449219 281.777344 158.449219 281.894531 C 158.449219 282.011719 158.542969 282.105469 158.660156 282.105469 C 158.777344 282.105469 158.871094 282.011719 158.871094 281.894531 Z M 158.871094 281.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.457031 283.585938 C 159.457031 283.46875 159.363281 283.375 159.246094 283.375 C 159.128906 283.375 159.035156 283.46875 159.035156 283.585938 C 159.035156 283.703125 159.128906 283.796875 159.246094 283.796875 C 159.363281 283.796875 159.457031 283.703125 159.457031 283.585938 Z M 159.457031 283.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.828125 283.566406 C 155.828125 283.449219 155.734375 283.355469 155.617188 283.355469 C 155.5 283.355469 155.40625 283.449219 155.40625 283.566406 C 155.40625 283.683594 155.5 283.777344 155.617188 283.777344 C 155.734375 283.777344 155.828125 283.683594 155.828125 283.566406 Z M 155.828125 283.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.550781 281.566406 C 151.550781 281.449219 151.457031 281.355469 151.339844 281.355469 C 151.222656 281.355469 151.128906 281.449219 151.128906 281.566406 C 151.128906 281.683594 151.222656 281.777344 151.339844 281.777344 C 151.457031 281.777344 151.550781 281.683594 151.550781 281.566406 Z M 151.550781 281.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.289062 280.414062 C 148.289062 280.296875 148.195312 280.203125 148.078125 280.203125 C 147.960938 280.203125 147.867188 280.296875 147.867188 280.414062 C 147.867188 280.53125 147.960938 280.625 148.078125 280.625 C 148.195312 280.625 148.289062 280.53125 148.289062 280.414062 Z M 148.289062 280.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.898438 281.179688 C 147.898438 281.0625 147.804688 280.96875 147.6875 280.96875 C 147.570312 280.96875 147.476562 281.0625 147.476562 281.179688 C 147.476562 281.296875 147.570312 281.390625 147.6875 281.390625 C 147.804688 281.390625 147.898438 281.296875 147.898438 281.179688 Z M 147.898438 281.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.132812 281.066406 C 146.132812 280.949219 146.039062 280.855469 145.921875 280.855469 C 145.804688 280.855469 145.710938 280.949219 145.710938 281.066406 C 145.710938 281.183594 145.804688 281.277344 145.921875 281.277344 C 146.039062 281.277344 146.132812 281.183594 146.132812 281.066406 Z M 146.132812 281.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.082031 278.835938 C 147.082031 278.71875 146.988281 278.625 146.871094 278.625 C 146.753906 278.625 146.660156 278.71875 146.660156 278.835938 C 146.660156 278.953125 146.753906 279.046875 146.871094 279.046875 C 146.988281 279.046875 147.082031 278.953125 147.082031 278.835938 Z M 147.082031 278.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.375 274.511719 C 146.375 274.394531 146.28125 274.300781 146.164062 274.300781 C 146.046875 274.300781 145.953125 274.394531 145.953125 274.511719 C 145.953125 274.628906 146.046875 274.722656 146.164062 274.722656 C 146.28125 274.722656 146.375 274.628906 146.375 274.511719 Z M 146.375 274.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.773438 271.355469 C 147.773438 271.238281 147.679688 271.144531 147.5625 271.144531 C 147.445312 271.144531 147.351562 271.238281 147.351562 271.355469 C 147.351562 271.472656 147.445312 271.566406 147.5625 271.566406 C 147.679688 271.566406 147.773438 271.472656 147.773438 271.355469 Z M 147.773438 271.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.277344 270.332031 C 144.277344 270.214844 144.183594 270.121094 144.066406 270.121094 C 143.949219 270.121094 143.855469 270.214844 143.855469 270.332031 C 143.855469 270.449219 143.949219 270.542969 144.066406 270.542969 C 144.183594 270.542969 144.277344 270.449219 144.277344 270.332031 Z M 144.277344 270.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.441406 271.699219 C 143.441406 271.582031 143.347656 271.488281 143.230469 271.488281 C 143.113281 271.488281 143.019531 271.582031 143.019531 271.699219 C 143.019531 271.816406 143.113281 271.910156 143.230469 271.910156 C 143.347656 271.910156 143.441406 271.816406 143.441406 271.699219 Z M 143.441406 271.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.265625 271.253906 C 142.265625 271.136719 142.171875 271.042969 142.054688 271.042969 C 141.9375 271.042969 141.84375 271.136719 141.84375 271.253906 C 141.84375 271.371094 141.9375 271.464844 142.054688 271.464844 C 142.171875 271.464844 142.265625 271.371094 142.265625 271.253906 Z M 142.265625 271.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.703125 271.5625 C 140.703125 271.445312 140.609375 271.351562 140.492188 271.351562 C 140.375 271.351562 140.28125 271.445312 140.28125 271.5625 C 140.28125 271.679688 140.375 271.773438 140.492188 271.773438 C 140.609375 271.773438 140.703125 271.679688 140.703125 271.5625 Z M 140.703125 271.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.15625 270.332031 C 143.15625 270.214844 143.0625 270.121094 142.945312 270.121094 C 142.828125 270.121094 142.734375 270.214844 142.734375 270.332031 C 142.734375 270.449219 142.828125 270.542969 142.945312 270.542969 C 143.0625 270.542969 143.15625 270.449219 143.15625 270.332031 Z M 143.15625 270.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.527344 268.578125 C 143.527344 268.460938 143.433594 268.367188 143.316406 268.367188 C 143.199219 268.367188 143.105469 268.460938 143.105469 268.578125 C 143.105469 268.695312 143.199219 268.789062 143.316406 268.789062 C 143.433594 268.789062 143.527344 268.695312 143.527344 268.578125 Z M 143.527344 268.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.59375 269.902344 C 143.59375 269.785156 143.5 269.691406 143.382812 269.691406 C 143.265625 269.691406 143.171875 269.785156 143.171875 269.902344 C 143.171875 270.019531 143.265625 270.113281 143.382812 270.113281 C 143.5 270.113281 143.59375 270.019531 143.59375 269.902344 Z M 143.59375 269.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.914062 271.164062 C 145.914062 271.046875 145.820312 270.953125 145.703125 270.953125 C 145.585938 270.953125 145.492188 271.046875 145.492188 271.164062 C 145.492188 271.28125 145.585938 271.375 145.703125 271.375 C 145.820312 271.375 145.914062 271.28125 145.914062 271.164062 Z M 145.914062 271.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.066406 271.488281 C 147.066406 271.371094 146.972656 271.277344 146.855469 271.277344 C 146.738281 271.277344 146.644531 271.371094 146.644531 271.488281 C 146.644531 271.605469 146.738281 271.699219 146.855469 271.699219 C 146.972656 271.699219 147.066406 271.605469 147.066406 271.488281 Z M 147.066406 271.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.75 275.863281 C 145.75 275.746094 145.65625 275.652344 145.539062 275.652344 C 145.421875 275.652344 145.328125 275.746094 145.328125 275.863281 C 145.328125 275.980469 145.421875 276.074219 145.539062 276.074219 C 145.65625 276.074219 145.75 275.980469 145.75 275.863281 Z M 145.75 275.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.460938 277.199219 C 146.460938 277.082031 146.367188 276.988281 146.25 276.988281 C 146.132812 276.988281 146.039062 277.082031 146.039062 277.199219 C 146.039062 277.316406 146.132812 277.410156 146.25 277.410156 C 146.367188 277.410156 146.460938 277.316406 146.460938 277.199219 Z M 146.460938 277.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.960938 278.183594 C 146.960938 278.066406 146.867188 277.972656 146.75 277.972656 C 146.632812 277.972656 146.539062 278.066406 146.539062 278.183594 C 146.539062 278.300781 146.632812 278.394531 146.75 278.394531 C 146.867188 278.394531 146.960938 278.300781 146.960938 278.183594 Z M 146.960938 278.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.535156 273.183594 C 148.535156 273.066406 148.441406 272.972656 148.324219 272.972656 C 148.207031 272.972656 148.113281 273.066406 148.113281 273.183594 C 148.113281 273.300781 148.207031 273.394531 148.324219 273.394531 C 148.441406 273.394531 148.535156 273.300781 148.535156 273.183594 Z M 148.535156 273.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.203125 276.464844 C 150.203125 276.347656 150.109375 276.253906 149.992188 276.253906 C 149.875 276.253906 149.78125 276.347656 149.78125 276.464844 C 149.78125 276.582031 149.875 276.675781 149.992188 276.675781 C 150.109375 276.675781 150.203125 276.582031 150.203125 276.464844 Z M 150.203125 276.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.734375 276.808594 C 148.734375 276.691406 148.640625 276.597656 148.523438 276.597656 C 148.40625 276.597656 148.3125 276.691406 148.3125 276.808594 C 148.3125 276.925781 148.40625 277.019531 148.523438 277.019531 C 148.640625 277.019531 148.734375 276.925781 148.734375 276.808594 Z M 148.734375 276.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.152344 277.117188 C 151.152344 277 151.058594 276.90625 150.941406 276.90625 C 150.824219 276.90625 150.730469 277 150.730469 277.117188 C 150.730469 277.234375 150.824219 277.328125 150.941406 277.328125 C 151.058594 277.328125 151.152344 277.234375 151.152344 277.117188 Z M 151.152344 277.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.648438 274.671875 C 148.648438 274.554688 148.554688 274.460938 148.4375 274.460938 C 148.320312 274.460938 148.226562 274.554688 148.226562 274.671875 C 148.226562 274.789062 148.320312 274.882812 148.4375 274.882812 C 148.554688 274.882812 148.648438 274.789062 148.648438 274.671875 Z M 148.648438 274.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.433594 277.847656 C 151.433594 277.730469 151.339844 277.636719 151.222656 277.636719 C 151.105469 277.636719 151.011719 277.730469 151.011719 277.847656 C 151.011719 277.964844 151.105469 278.058594 151.222656 278.058594 C 151.339844 278.058594 151.433594 277.964844 151.433594 277.847656 Z M 151.433594 277.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.171875 273.136719 C 154.171875 273.019531 154.078125 272.925781 153.960938 272.925781 C 153.84375 272.925781 153.75 273.019531 153.75 273.136719 C 153.75 273.253906 153.84375 273.347656 153.960938 273.347656 C 154.078125 273.347656 154.171875 273.253906 154.171875 273.136719 Z M 154.171875 273.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.109375 271.207031 C 152.109375 271.089844 152.015625 270.996094 151.898438 270.996094 C 151.78125 270.996094 151.6875 271.089844 151.6875 271.207031 C 151.6875 271.324219 151.78125 271.417969 151.898438 271.417969 C 152.015625 271.417969 152.109375 271.324219 152.109375 271.207031 Z M 152.109375 271.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.324219 269.28125 C 151.324219 269.164062 151.230469 269.070312 151.113281 269.070312 C 150.996094 269.070312 150.902344 269.164062 150.902344 269.28125 C 150.902344 269.398438 150.996094 269.492188 151.113281 269.492188 C 151.230469 269.492188 151.324219 269.398438 151.324219 269.28125 Z M 151.324219 269.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.324219 269.671875 C 149.324219 269.554688 149.230469 269.460938 149.113281 269.460938 C 148.996094 269.460938 148.902344 269.554688 148.902344 269.671875 C 148.902344 269.789062 148.996094 269.882812 149.113281 269.882812 C 149.230469 269.882812 149.324219 269.789062 149.324219 269.671875 Z M 149.324219 269.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.664062 272.164062 C 147.664062 272.046875 147.570312 271.953125 147.453125 271.953125 C 147.335938 271.953125 147.242188 272.046875 147.242188 272.164062 C 147.242188 272.28125 147.335938 272.375 147.453125 272.375 C 147.570312 272.375 147.664062 272.28125 147.664062 272.164062 Z M 147.664062 272.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.964844 276.6875 C 149.964844 276.570312 149.871094 276.476562 149.753906 276.476562 C 149.636719 276.476562 149.542969 276.570312 149.542969 276.6875 C 149.542969 276.804688 149.636719 276.898438 149.753906 276.898438 C 149.871094 276.898438 149.964844 276.804688 149.964844 276.6875 Z M 149.964844 276.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.519531 275.554688 C 151.519531 275.4375 151.425781 275.34375 151.308594 275.34375 C 151.191406 275.34375 151.097656 275.4375 151.097656 275.554688 C 151.097656 275.671875 151.191406 275.765625 151.308594 275.765625 C 151.425781 275.765625 151.519531 275.671875 151.519531 275.554688 Z M 151.519531 275.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.394531 271.644531 C 153.394531 271.527344 153.300781 271.433594 153.183594 271.433594 C 153.066406 271.433594 152.972656 271.527344 152.972656 271.644531 C 152.972656 271.761719 153.066406 271.855469 153.183594 271.855469 C 153.300781 271.855469 153.394531 271.761719 153.394531 271.644531 Z M 153.394531 271.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.695312 270.402344 C 155.695312 270.285156 155.601562 270.191406 155.484375 270.191406 C 155.367188 270.191406 155.273438 270.285156 155.273438 270.402344 C 155.273438 270.519531 155.367188 270.613281 155.484375 270.613281 C 155.601562 270.613281 155.695312 270.519531 155.695312 270.402344 Z M 155.695312 270.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.414062 270.015625 C 159.414062 269.898438 159.320312 269.804688 159.203125 269.804688 C 159.085938 269.804688 158.992188 269.898438 158.992188 270.015625 C 158.992188 270.132812 159.085938 270.226562 159.203125 270.226562 C 159.320312 270.226562 159.414062 270.132812 159.414062 270.015625 Z M 159.414062 270.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.105469 275.292969 C 160.105469 275.175781 160.011719 275.082031 159.894531 275.082031 C 159.777344 275.082031 159.683594 275.175781 159.683594 275.292969 C 159.683594 275.410156 159.777344 275.503906 159.894531 275.503906 C 160.011719 275.503906 160.105469 275.410156 160.105469 275.292969 Z M 160.105469 275.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.25 274.957031 C 161.25 274.839844 161.15625 274.746094 161.039062 274.746094 C 160.921875 274.746094 160.828125 274.839844 160.828125 274.957031 C 160.828125 275.074219 160.921875 275.167969 161.039062 275.167969 C 161.15625 275.167969 161.25 275.074219 161.25 274.957031 Z M 161.25 274.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.316406 275.640625 C 159.316406 275.523438 159.222656 275.429688 159.105469 275.429688 C 158.988281 275.429688 158.894531 275.523438 158.894531 275.640625 C 158.894531 275.757812 158.988281 275.851562 159.105469 275.851562 C 159.222656 275.851562 159.316406 275.757812 159.316406 275.640625 Z M 159.316406 275.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.316406 275.460938 C 161.316406 275.34375 161.222656 275.25 161.105469 275.25 C 160.988281 275.25 160.894531 275.34375 160.894531 275.460938 C 160.894531 275.578125 160.988281 275.671875 161.105469 275.671875 C 161.222656 275.671875 161.316406 275.578125 161.316406 275.460938 Z M 161.316406 275.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.878906 271.628906 C 162.878906 271.511719 162.785156 271.417969 162.667969 271.417969 C 162.550781 271.417969 162.457031 271.511719 162.457031 271.628906 C 162.457031 271.746094 162.550781 271.839844 162.667969 271.839844 C 162.785156 271.839844 162.878906 271.746094 162.878906 271.628906 Z M 162.878906 271.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.5 272.964844 C 159.5 272.847656 159.40625 272.753906 159.289062 272.753906 C 159.171875 272.753906 159.078125 272.847656 159.078125 272.964844 C 159.078125 273.082031 159.171875 273.175781 159.289062 273.175781 C 159.40625 273.175781 159.5 273.082031 159.5 272.964844 Z M 159.5 272.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.257812 275.5625 C 160.257812 275.445312 160.164062 275.351562 160.046875 275.351562 C 159.929688 275.351562 159.835938 275.445312 159.835938 275.5625 C 159.835938 275.679688 159.929688 275.773438 160.046875 275.773438 C 160.164062 275.773438 160.257812 275.679688 160.257812 275.5625 Z M 160.257812 275.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.777344 277.285156 C 161.777344 277.167969 161.683594 277.074219 161.566406 277.074219 C 161.449219 277.074219 161.355469 277.167969 161.355469 277.285156 C 161.355469 277.402344 161.449219 277.496094 161.566406 277.496094 C 161.683594 277.496094 161.777344 277.402344 161.777344 277.285156 Z M 161.777344 277.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.59375 276.785156 C 163.59375 276.667969 163.5 276.574219 163.382812 276.574219 C 163.265625 276.574219 163.171875 276.667969 163.171875 276.785156 C 163.171875 276.902344 163.265625 276.996094 163.382812 276.996094 C 163.5 276.996094 163.59375 276.902344 163.59375 276.785156 Z M 163.59375 276.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.859375 276.902344 C 166.859375 276.785156 166.765625 276.691406 166.648438 276.691406 C 166.53125 276.691406 166.4375 276.785156 166.4375 276.902344 C 166.4375 277.019531 166.53125 277.113281 166.648438 277.113281 C 166.765625 277.113281 166.859375 277.019531 166.859375 276.902344 Z M 166.859375 276.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.089844 278.867188 C 168.089844 278.75 167.996094 278.65625 167.878906 278.65625 C 167.761719 278.65625 167.667969 278.75 167.667969 278.867188 C 167.667969 278.984375 167.761719 279.078125 167.878906 279.078125 C 167.996094 279.078125 168.089844 278.984375 168.089844 278.867188 Z M 168.089844 278.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.90625 280.40625 C 168.90625 280.289062 168.8125 280.195312 168.695312 280.195312 C 168.578125 280.195312 168.484375 280.289062 168.484375 280.40625 C 168.484375 280.523438 168.578125 280.617188 168.695312 280.617188 C 168.8125 280.617188 168.90625 280.523438 168.90625 280.40625 Z M 168.90625 280.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.625 277.945312 C 164.625 277.828125 164.53125 277.734375 164.414062 277.734375 C 164.296875 277.734375 164.203125 277.828125 164.203125 277.945312 C 164.203125 278.0625 164.296875 278.15625 164.414062 278.15625 C 164.53125 278.15625 164.625 278.0625 164.625 277.945312 Z M 164.625 277.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.179688 280.085938 C 165.179688 279.96875 165.085938 279.875 164.96875 279.875 C 164.851562 279.875 164.757812 279.96875 164.757812 280.085938 C 164.757812 280.203125 164.851562 280.296875 164.96875 280.296875 C 165.085938 280.296875 165.179688 280.203125 165.179688 280.085938 Z M 165.179688 280.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.972656 284.246094 C 164.972656 284.128906 164.878906 284.035156 164.761719 284.035156 C 164.644531 284.035156 164.550781 284.128906 164.550781 284.246094 C 164.550781 284.363281 164.644531 284.457031 164.761719 284.457031 C 164.878906 284.457031 164.972656 284.363281 164.972656 284.246094 Z M 164.972656 284.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.097656 286.691406 C 170.097656 286.574219 170.003906 286.480469 169.886719 286.480469 C 169.769531 286.480469 169.675781 286.574219 169.675781 286.691406 C 169.675781 286.808594 169.769531 286.902344 169.886719 286.902344 C 170.003906 286.902344 170.097656 286.808594 170.097656 286.691406 Z M 170.097656 286.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.804688 286.332031 C 171.804688 286.214844 171.710938 286.121094 171.59375 286.121094 C 171.476562 286.121094 171.382812 286.214844 171.382812 286.332031 C 171.382812 286.449219 171.476562 286.542969 171.59375 286.542969 C 171.710938 286.542969 171.804688 286.449219 171.804688 286.332031 Z M 171.804688 286.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.753906 285.738281 C 171.753906 285.621094 171.660156 285.527344 171.542969 285.527344 C 171.425781 285.527344 171.332031 285.621094 171.332031 285.738281 C 171.332031 285.855469 171.425781 285.949219 171.542969 285.949219 C 171.660156 285.949219 171.753906 285.855469 171.753906 285.738281 Z M 171.753906 285.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.574219 282.285156 C 172.574219 282.167969 172.480469 282.074219 172.363281 282.074219 C 172.246094 282.074219 172.152344 282.167969 172.152344 282.285156 C 172.152344 282.402344 172.246094 282.496094 172.363281 282.496094 C 172.480469 282.496094 172.574219 282.402344 172.574219 282.285156 Z M 172.574219 282.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.902344 284.777344 C 174.902344 284.660156 174.808594 284.566406 174.691406 284.566406 C 174.574219 284.566406 174.480469 284.660156 174.480469 284.777344 C 174.480469 284.894531 174.574219 284.988281 174.691406 284.988281 C 174.808594 284.988281 174.902344 284.894531 174.902344 284.777344 Z M 174.902344 284.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.050781 284.867188 C 175.050781 284.75 174.957031 284.65625 174.839844 284.65625 C 174.722656 284.65625 174.628906 284.75 174.628906 284.867188 C 174.628906 284.984375 174.722656 285.078125 174.839844 285.078125 C 174.957031 285.078125 175.050781 284.984375 175.050781 284.867188 Z M 175.050781 284.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.398438 285.285156 C 177.398438 285.167969 177.304688 285.074219 177.1875 285.074219 C 177.070312 285.074219 176.976562 285.167969 176.976562 285.285156 C 176.976562 285.402344 177.070312 285.496094 177.1875 285.496094 C 177.304688 285.496094 177.398438 285.402344 177.398438 285.285156 Z M 177.398438 285.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.785156 286.171875 C 177.785156 286.054688 177.691406 285.960938 177.574219 285.960938 C 177.457031 285.960938 177.363281 286.054688 177.363281 286.171875 C 177.363281 286.289062 177.457031 286.382812 177.574219 286.382812 C 177.691406 286.382812 177.785156 286.289062 177.785156 286.171875 Z M 177.785156 286.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.496094 283.796875 C 175.496094 283.679688 175.402344 283.585938 175.285156 283.585938 C 175.167969 283.585938 175.074219 283.679688 175.074219 283.796875 C 175.074219 283.914062 175.167969 284.007812 175.285156 284.007812 C 175.402344 284.007812 175.496094 283.914062 175.496094 283.796875 Z M 175.496094 283.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.304688 282.960938 C 176.304688 282.84375 176.210938 282.75 176.09375 282.75 C 175.976562 282.75 175.882812 282.84375 175.882812 282.960938 C 175.882812 283.078125 175.976562 283.171875 176.09375 283.171875 C 176.210938 283.171875 176.304688 283.078125 176.304688 282.960938 Z M 176.304688 282.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.59375 285.101562 C 174.59375 284.984375 174.5 284.890625 174.382812 284.890625 C 174.265625 284.890625 174.171875 284.984375 174.171875 285.101562 C 174.171875 285.21875 174.265625 285.3125 174.382812 285.3125 C 174.5 285.3125 174.59375 285.21875 174.59375 285.101562 Z M 174.59375 285.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.898438 281.917969 C 173.898438 281.800781 173.804688 281.707031 173.6875 281.707031 C 173.570312 281.707031 173.476562 281.800781 173.476562 281.917969 C 173.476562 282.035156 173.570312 282.128906 173.6875 282.128906 C 173.804688 282.128906 173.898438 282.035156 173.898438 281.917969 Z M 173.898438 281.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.898438 280.6875 C 175.898438 280.570312 175.804688 280.476562 175.6875 280.476562 C 175.570312 280.476562 175.476562 280.570312 175.476562 280.6875 C 175.476562 280.804688 175.570312 280.898438 175.6875 280.898438 C 175.804688 280.898438 175.898438 280.804688 175.898438 280.6875 Z M 175.898438 280.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.742188 282.507812 C 172.742188 282.390625 172.648438 282.296875 172.53125 282.296875 C 172.414062 282.296875 172.320312 282.390625 172.320312 282.507812 C 172.320312 282.625 172.414062 282.71875 172.53125 282.71875 C 172.648438 282.71875 172.742188 282.625 172.742188 282.507812 Z M 172.742188 282.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.761719 282.015625 C 174.761719 281.898438 174.667969 281.804688 174.550781 281.804688 C 174.433594 281.804688 174.339844 281.898438 174.339844 282.015625 C 174.339844 282.132812 174.433594 282.226562 174.550781 282.226562 C 174.667969 282.226562 174.761719 282.132812 174.761719 282.015625 Z M 174.761719 282.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.382812 279.050781 C 175.382812 278.933594 175.289062 278.839844 175.171875 278.839844 C 175.054688 278.839844 174.960938 278.933594 174.960938 279.050781 C 174.960938 279.167969 175.054688 279.261719 175.171875 279.261719 C 175.289062 279.261719 175.382812 279.167969 175.382812 279.050781 Z M 175.382812 279.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.335938 279.359375 C 177.335938 279.242188 177.242188 279.148438 177.125 279.148438 C 177.007812 279.148438 176.914062 279.242188 176.914062 279.359375 C 176.914062 279.476562 177.007812 279.570312 177.125 279.570312 C 177.242188 279.570312 177.335938 279.476562 177.335938 279.359375 Z M 177.335938 279.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.738281 278.5 C 175.738281 278.382812 175.644531 278.289062 175.527344 278.289062 C 175.410156 278.289062 175.316406 278.382812 175.316406 278.5 C 175.316406 278.617188 175.410156 278.710938 175.527344 278.710938 C 175.644531 278.710938 175.738281 278.617188 175.738281 278.5 Z M 175.738281 278.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.148438 277.535156 C 174.148438 277.417969 174.054688 277.324219 173.9375 277.324219 C 173.820312 277.324219 173.726562 277.417969 173.726562 277.535156 C 173.726562 277.652344 173.820312 277.746094 173.9375 277.746094 C 174.054688 277.746094 174.148438 277.652344 174.148438 277.535156 Z M 174.148438 277.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.582031 281.722656 C 171.582031 281.605469 171.488281 281.511719 171.371094 281.511719 C 171.253906 281.511719 171.160156 281.605469 171.160156 281.722656 C 171.160156 281.839844 171.253906 281.933594 171.371094 281.933594 C 171.488281 281.933594 171.582031 281.839844 171.582031 281.722656 Z M 171.582031 281.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.8125 280.074219 C 175.8125 279.957031 175.71875 279.863281 175.601562 279.863281 C 175.484375 279.863281 175.390625 279.957031 175.390625 280.074219 C 175.390625 280.191406 175.484375 280.285156 175.601562 280.285156 C 175.71875 280.285156 175.8125 280.191406 175.8125 280.074219 Z M 175.8125 280.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.421875 282.886719 C 173.421875 282.769531 173.328125 282.675781 173.210938 282.675781 C 173.09375 282.675781 173 282.769531 173 282.886719 C 173 283.003906 173.09375 283.097656 173.210938 283.097656 C 173.328125 283.097656 173.421875 283.003906 173.421875 282.886719 Z M 173.421875 282.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.980469 280.367188 C 171.980469 280.25 171.886719 280.15625 171.769531 280.15625 C 171.652344 280.15625 171.558594 280.25 171.558594 280.367188 C 171.558594 280.484375 171.652344 280.578125 171.769531 280.578125 C 171.886719 280.578125 171.980469 280.484375 171.980469 280.367188 Z M 171.980469 280.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.546875 283.230469 C 172.546875 283.113281 172.453125 283.019531 172.335938 283.019531 C 172.21875 283.019531 172.125 283.113281 172.125 283.230469 C 172.125 283.347656 172.21875 283.441406 172.335938 283.441406 C 172.453125 283.441406 172.546875 283.347656 172.546875 283.230469 Z M 172.546875 283.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.53125 284.339844 C 172.53125 284.222656 172.4375 284.128906 172.320312 284.128906 C 172.203125 284.128906 172.109375 284.222656 172.109375 284.339844 C 172.109375 284.457031 172.203125 284.550781 172.320312 284.550781 C 172.4375 284.550781 172.53125 284.457031 172.53125 284.339844 Z M 172.53125 284.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.890625 286.074219 C 168.890625 285.957031 168.796875 285.863281 168.679688 285.863281 C 168.5625 285.863281 168.46875 285.957031 168.46875 286.074219 C 168.46875 286.191406 168.5625 286.285156 168.679688 286.285156 C 168.796875 286.285156 168.890625 286.191406 168.890625 286.074219 Z M 168.890625 286.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.707031 286.082031 C 170.707031 285.964844 170.613281 285.871094 170.496094 285.871094 C 170.378906 285.871094 170.285156 285.964844 170.285156 286.082031 C 170.285156 286.199219 170.378906 286.292969 170.496094 286.292969 C 170.613281 286.292969 170.707031 286.199219 170.707031 286.082031 Z M 170.707031 286.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.628906 287.140625 C 168.628906 287.023438 168.535156 286.929688 168.417969 286.929688 C 168.300781 286.929688 168.207031 287.023438 168.207031 287.140625 C 168.207031 287.257812 168.300781 287.351562 168.417969 287.351562 C 168.535156 287.351562 168.628906 287.257812 168.628906 287.140625 Z M 168.628906 287.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.203125 285.640625 C 170.203125 285.523438 170.109375 285.429688 169.992188 285.429688 C 169.875 285.429688 169.78125 285.523438 169.78125 285.640625 C 169.78125 285.757812 169.875 285.851562 169.992188 285.851562 C 170.109375 285.851562 170.203125 285.757812 170.203125 285.640625 Z M 170.203125 285.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.3125 283.9375 C 167.3125 283.820312 167.21875 283.726562 167.101562 283.726562 C 166.984375 283.726562 166.890625 283.820312 166.890625 283.9375 C 166.890625 284.054688 166.984375 284.148438 167.101562 284.148438 C 167.21875 284.148438 167.3125 284.054688 167.3125 283.9375 Z M 167.3125 283.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.207031 286.535156 C 164.207031 286.417969 164.113281 286.324219 163.996094 286.324219 C 163.878906 286.324219 163.785156 286.417969 163.785156 286.535156 C 163.785156 286.652344 163.878906 286.746094 163.996094 286.746094 C 164.113281 286.746094 164.207031 286.652344 164.207031 286.535156 Z M 164.207031 286.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.78125 283.855469 C 168.78125 283.738281 168.6875 283.644531 168.570312 283.644531 C 168.453125 283.644531 168.359375 283.738281 168.359375 283.855469 C 168.359375 283.972656 168.453125 284.066406 168.570312 284.066406 C 168.6875 284.066406 168.78125 283.972656 168.78125 283.855469 Z M 168.78125 283.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.609375 282.5625 C 169.609375 282.445312 169.515625 282.351562 169.398438 282.351562 C 169.28125 282.351562 169.1875 282.445312 169.1875 282.5625 C 169.1875 282.679688 169.28125 282.773438 169.398438 282.773438 C 169.515625 282.773438 169.609375 282.679688 169.609375 282.5625 Z M 169.609375 282.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.972656 284.300781 C 167.972656 284.183594 167.878906 284.089844 167.761719 284.089844 C 167.644531 284.089844 167.550781 284.183594 167.550781 284.300781 C 167.550781 284.417969 167.644531 284.511719 167.761719 284.511719 C 167.878906 284.511719 167.972656 284.417969 167.972656 284.300781 Z M 167.972656 284.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.710938 284.761719 C 166.710938 284.644531 166.617188 284.550781 166.5 284.550781 C 166.382812 284.550781 166.289062 284.644531 166.289062 284.761719 C 166.289062 284.878906 166.382812 284.972656 166.5 284.972656 C 166.617188 284.972656 166.710938 284.878906 166.710938 284.761719 Z M 166.710938 284.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.609375 281.617188 C 162.609375 281.5 162.515625 281.40625 162.398438 281.40625 C 162.28125 281.40625 162.1875 281.5 162.1875 281.617188 C 162.1875 281.734375 162.28125 281.828125 162.398438 281.828125 C 162.515625 281.828125 162.609375 281.734375 162.609375 281.617188 Z M 162.609375 281.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.480469 282.734375 C 163.480469 282.617188 163.386719 282.523438 163.269531 282.523438 C 163.152344 282.523438 163.058594 282.617188 163.058594 282.734375 C 163.058594 282.851562 163.152344 282.945312 163.269531 282.945312 C 163.386719 282.945312 163.480469 282.851562 163.480469 282.734375 Z M 163.480469 282.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.496094 282.78125 C 162.496094 282.664062 162.402344 282.570312 162.285156 282.570312 C 162.167969 282.570312 162.074219 282.664062 162.074219 282.78125 C 162.074219 282.898438 162.167969 282.992188 162.285156 282.992188 C 162.402344 282.992188 162.496094 282.898438 162.496094 282.78125 Z M 162.496094 282.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.394531 281.46875 C 162.394531 281.351562 162.300781 281.257812 162.183594 281.257812 C 162.066406 281.257812 161.972656 281.351562 161.972656 281.46875 C 161.972656 281.585938 162.066406 281.679688 162.183594 281.679688 C 162.300781 281.679688 162.394531 281.585938 162.394531 281.46875 Z M 162.394531 281.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.511719 278.628906 C 161.511719 278.511719 161.417969 278.417969 161.300781 278.417969 C 161.183594 278.417969 161.089844 278.511719 161.089844 278.628906 C 161.089844 278.746094 161.183594 278.839844 161.300781 278.839844 C 161.417969 278.839844 161.511719 278.746094 161.511719 278.628906 Z M 161.511719 278.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.503906 277.878906 C 161.503906 277.761719 161.410156 277.667969 161.292969 277.667969 C 161.175781 277.667969 161.082031 277.761719 161.082031 277.878906 C 161.082031 277.996094 161.175781 278.089844 161.292969 278.089844 C 161.410156 278.089844 161.503906 277.996094 161.503906 277.878906 Z M 161.503906 277.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.53125 277.675781 C 161.53125 277.558594 161.4375 277.464844 161.320312 277.464844 C 161.203125 277.464844 161.109375 277.558594 161.109375 277.675781 C 161.109375 277.792969 161.203125 277.886719 161.320312 277.886719 C 161.4375 277.886719 161.53125 277.792969 161.53125 277.675781 Z M 161.53125 277.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.492188 280.429688 C 163.492188 280.3125 163.398438 280.21875 163.28125 280.21875 C 163.164062 280.21875 163.070312 280.3125 163.070312 280.429688 C 163.070312 280.546875 163.164062 280.640625 163.28125 280.640625 C 163.398438 280.640625 163.492188 280.546875 163.492188 280.429688 Z M 163.492188 280.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.652344 282.703125 C 161.652344 282.585938 161.558594 282.492188 161.441406 282.492188 C 161.324219 282.492188 161.230469 282.585938 161.230469 282.703125 C 161.230469 282.820312 161.324219 282.914062 161.441406 282.914062 C 161.558594 282.914062 161.652344 282.820312 161.652344 282.703125 Z M 161.652344 282.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.546875 282.117188 C 159.546875 282 159.453125 281.90625 159.335938 281.90625 C 159.21875 281.90625 159.125 282 159.125 282.117188 C 159.125 282.234375 159.21875 282.328125 159.335938 282.328125 C 159.453125 282.328125 159.546875 282.234375 159.546875 282.117188 Z M 159.546875 282.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.597656 283.03125 C 155.597656 282.914062 155.503906 282.820312 155.386719 282.820312 C 155.269531 282.820312 155.175781 282.914062 155.175781 283.03125 C 155.175781 283.148438 155.269531 283.242188 155.386719 283.242188 C 155.503906 283.242188 155.597656 283.148438 155.597656 283.03125 Z M 155.597656 283.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.550781 280.972656 C 154.550781 280.855469 154.457031 280.761719 154.339844 280.761719 C 154.222656 280.761719 154.128906 280.855469 154.128906 280.972656 C 154.128906 281.089844 154.222656 281.183594 154.339844 281.183594 C 154.457031 281.183594 154.550781 281.089844 154.550781 280.972656 Z M 154.550781 280.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.574219 279.03125 C 155.574219 278.914062 155.480469 278.820312 155.363281 278.820312 C 155.246094 278.820312 155.152344 278.914062 155.152344 279.03125 C 155.152344 279.148438 155.246094 279.242188 155.363281 279.242188 C 155.480469 279.242188 155.574219 279.148438 155.574219 279.03125 Z M 155.574219 279.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.074219 281.929688 C 153.074219 281.8125 152.980469 281.71875 152.863281 281.71875 C 152.746094 281.71875 152.652344 281.8125 152.652344 281.929688 C 152.652344 282.046875 152.746094 282.140625 152.863281 282.140625 C 152.980469 282.140625 153.074219 282.046875 153.074219 281.929688 Z M 153.074219 281.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.304688 283.550781 C 151.304688 283.433594 151.210938 283.339844 151.09375 283.339844 C 150.976562 283.339844 150.882812 283.433594 150.882812 283.550781 C 150.882812 283.667969 150.976562 283.761719 151.09375 283.761719 C 151.210938 283.761719 151.304688 283.667969 151.304688 283.550781 Z M 151.304688 283.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.179688 287.9375 C 153.179688 287.820312 153.085938 287.726562 152.96875 287.726562 C 152.851562 287.726562 152.757812 287.820312 152.757812 287.9375 C 152.757812 288.054688 152.851562 288.148438 152.96875 288.148438 C 153.085938 288.148438 153.179688 288.054688 153.179688 287.9375 Z M 153.179688 287.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.03125 286.40625 C 151.03125 286.289062 150.9375 286.195312 150.820312 286.195312 C 150.703125 286.195312 150.609375 286.289062 150.609375 286.40625 C 150.609375 286.523438 150.703125 286.617188 150.820312 286.617188 C 150.9375 286.617188 151.03125 286.523438 151.03125 286.40625 Z M 151.03125 286.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.296875 280.140625 C 154.296875 280.023438 154.203125 279.929688 154.085938 279.929688 C 153.96875 279.929688 153.875 280.023438 153.875 280.140625 C 153.875 280.257812 153.96875 280.351562 154.085938 280.351562 C 154.203125 280.351562 154.296875 280.257812 154.296875 280.140625 Z M 154.296875 280.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.339844 278.671875 C 152.339844 278.554688 152.246094 278.460938 152.128906 278.460938 C 152.011719 278.460938 151.917969 278.554688 151.917969 278.671875 C 151.917969 278.789062 152.011719 278.882812 152.128906 278.882812 C 152.246094 278.882812 152.339844 278.789062 152.339844 278.671875 Z M 152.339844 278.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.222656 279.007812 C 153.222656 278.890625 153.128906 278.796875 153.011719 278.796875 C 152.894531 278.796875 152.800781 278.890625 152.800781 279.007812 C 152.800781 279.125 152.894531 279.21875 153.011719 279.21875 C 153.128906 279.21875 153.222656 279.125 153.222656 279.007812 Z M 153.222656 279.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.664062 281.480469 C 155.664062 281.363281 155.570312 281.269531 155.453125 281.269531 C 155.335938 281.269531 155.242188 281.363281 155.242188 281.480469 C 155.242188 281.597656 155.335938 281.691406 155.453125 281.691406 C 155.570312 281.691406 155.664062 281.597656 155.664062 281.480469 Z M 155.664062 281.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.511719 284.6875 C 155.511719 284.570312 155.417969 284.476562 155.300781 284.476562 C 155.183594 284.476562 155.089844 284.570312 155.089844 284.6875 C 155.089844 284.804688 155.183594 284.898438 155.300781 284.898438 C 155.417969 284.898438 155.511719 284.804688 155.511719 284.6875 Z M 155.511719 284.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.160156 283.449219 C 156.160156 283.332031 156.066406 283.238281 155.949219 283.238281 C 155.832031 283.238281 155.738281 283.332031 155.738281 283.449219 C 155.738281 283.566406 155.832031 283.660156 155.949219 283.660156 C 156.066406 283.660156 156.160156 283.566406 156.160156 283.449219 Z M 156.160156 283.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.65625 278.863281 C 155.65625 278.746094 155.5625 278.652344 155.445312 278.652344 C 155.328125 278.652344 155.234375 278.746094 155.234375 278.863281 C 155.234375 278.980469 155.328125 279.074219 155.445312 279.074219 C 155.5625 279.074219 155.65625 278.980469 155.65625 278.863281 Z M 155.65625 278.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.898438 278.097656 C 152.898438 277.980469 152.804688 277.886719 152.6875 277.886719 C 152.570312 277.886719 152.476562 277.980469 152.476562 278.097656 C 152.476562 278.214844 152.570312 278.308594 152.6875 278.308594 C 152.804688 278.308594 152.898438 278.214844 152.898438 278.097656 Z M 152.898438 278.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.265625 278.441406 C 152.265625 278.324219 152.171875 278.230469 152.054688 278.230469 C 151.9375 278.230469 151.84375 278.324219 151.84375 278.441406 C 151.84375 278.558594 151.9375 278.652344 152.054688 278.652344 C 152.171875 278.652344 152.265625 278.558594 152.265625 278.441406 Z M 152.265625 278.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.191406 278.675781 C 151.191406 278.558594 151.097656 278.464844 150.980469 278.464844 C 150.863281 278.464844 150.769531 278.558594 150.769531 278.675781 C 150.769531 278.792969 150.863281 278.886719 150.980469 278.886719 C 151.097656 278.886719 151.191406 278.792969 151.191406 278.675781 Z M 151.191406 278.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.523438 278.871094 C 147.523438 278.753906 147.429688 278.660156 147.3125 278.660156 C 147.195312 278.660156 147.101562 278.753906 147.101562 278.871094 C 147.101562 278.988281 147.195312 279.082031 147.3125 279.082031 C 147.429688 279.082031 147.523438 278.988281 147.523438 278.871094 Z M 147.523438 278.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.019531 278.027344 C 149.019531 277.910156 148.925781 277.816406 148.808594 277.816406 C 148.691406 277.816406 148.597656 277.910156 148.597656 278.027344 C 148.597656 278.144531 148.691406 278.238281 148.808594 278.238281 C 148.925781 278.238281 149.019531 278.144531 149.019531 278.027344 Z M 149.019531 278.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.253906 278.753906 C 153.253906 278.636719 153.160156 278.542969 153.042969 278.542969 C 152.925781 278.542969 152.832031 278.636719 152.832031 278.753906 C 152.832031 278.871094 152.925781 278.964844 153.042969 278.964844 C 153.160156 278.964844 153.253906 278.871094 153.253906 278.753906 Z M 153.253906 278.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.535156 278.835938 C 151.535156 278.71875 151.441406 278.625 151.324219 278.625 C 151.207031 278.625 151.113281 278.71875 151.113281 278.835938 C 151.113281 278.953125 151.207031 279.046875 151.324219 279.046875 C 151.441406 279.046875 151.535156 278.953125 151.535156 278.835938 Z M 151.535156 278.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.003906 279.945312 C 151.003906 279.828125 150.910156 279.734375 150.792969 279.734375 C 150.675781 279.734375 150.582031 279.828125 150.582031 279.945312 C 150.582031 280.0625 150.675781 280.15625 150.792969 280.15625 C 150.910156 280.15625 151.003906 280.0625 151.003906 279.945312 Z M 151.003906 279.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.730469 279.957031 C 150.730469 279.839844 150.636719 279.746094 150.519531 279.746094 C 150.402344 279.746094 150.308594 279.839844 150.308594 279.957031 C 150.308594 280.074219 150.402344 280.167969 150.519531 280.167969 C 150.636719 280.167969 150.730469 280.074219 150.730469 279.957031 Z M 150.730469 279.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.039062 276.226562 C 150.039062 276.109375 149.945312 276.015625 149.828125 276.015625 C 149.710938 276.015625 149.617188 276.109375 149.617188 276.226562 C 149.617188 276.34375 149.710938 276.4375 149.828125 276.4375 C 149.945312 276.4375 150.039062 276.34375 150.039062 276.226562 Z M 150.039062 276.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.816406 274.375 C 149.816406 274.257812 149.722656 274.164062 149.605469 274.164062 C 149.488281 274.164062 149.394531 274.257812 149.394531 274.375 C 149.394531 274.492188 149.488281 274.585938 149.605469 274.585938 C 149.722656 274.585938 149.816406 274.492188 149.816406 274.375 Z M 149.816406 274.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.890625 277.445312 C 151.890625 277.328125 151.796875 277.234375 151.679688 277.234375 C 151.5625 277.234375 151.46875 277.328125 151.46875 277.445312 C 151.46875 277.5625 151.5625 277.65625 151.679688 277.65625 C 151.796875 277.65625 151.890625 277.5625 151.890625 277.445312 Z M 151.890625 277.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.523438 274.464844 C 151.523438 274.347656 151.429688 274.253906 151.3125 274.253906 C 151.195312 274.253906 151.101562 274.347656 151.101562 274.464844 C 151.101562 274.582031 151.195312 274.675781 151.3125 274.675781 C 151.429688 274.675781 151.523438 274.582031 151.523438 274.464844 Z M 151.523438 274.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.644531 271.582031 C 152.644531 271.464844 152.550781 271.371094 152.433594 271.371094 C 152.316406 271.371094 152.222656 271.464844 152.222656 271.582031 C 152.222656 271.699219 152.316406 271.792969 152.433594 271.792969 C 152.550781 271.792969 152.644531 271.699219 152.644531 271.582031 Z M 152.644531 271.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.195312 269.882812 C 153.195312 269.765625 153.101562 269.671875 152.984375 269.671875 C 152.867188 269.671875 152.773438 269.765625 152.773438 269.882812 C 152.773438 270 152.867188 270.09375 152.984375 270.09375 C 153.101562 270.09375 153.195312 270 153.195312 269.882812 Z M 153.195312 269.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.117188 267.15625 C 152.117188 267.039062 152.023438 266.945312 151.90625 266.945312 C 151.789062 266.945312 151.695312 267.039062 151.695312 267.15625 C 151.695312 267.273438 151.789062 267.367188 151.90625 267.367188 C 152.023438 267.367188 152.117188 267.273438 152.117188 267.15625 Z M 152.117188 267.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.894531 265.757812 C 151.894531 265.640625 151.800781 265.546875 151.683594 265.546875 C 151.566406 265.546875 151.472656 265.640625 151.472656 265.757812 C 151.472656 265.875 151.566406 265.96875 151.683594 265.96875 C 151.800781 265.96875 151.894531 265.875 151.894531 265.757812 Z M 151.894531 265.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.464844 266.898438 C 151.464844 266.78125 151.371094 266.6875 151.253906 266.6875 C 151.136719 266.6875 151.042969 266.78125 151.042969 266.898438 C 151.042969 267.015625 151.136719 267.109375 151.253906 267.109375 C 151.371094 267.109375 151.464844 267.015625 151.464844 266.898438 Z M 151.464844 266.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.160156 268.320312 C 152.160156 268.203125 152.066406 268.109375 151.949219 268.109375 C 151.832031 268.109375 151.738281 268.203125 151.738281 268.320312 C 151.738281 268.4375 151.832031 268.53125 151.949219 268.53125 C 152.066406 268.53125 152.160156 268.4375 152.160156 268.320312 Z M 152.160156 268.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.570312 267.695312 C 152.570312 267.578125 152.476562 267.484375 152.359375 267.484375 C 152.242188 267.484375 152.148438 267.578125 152.148438 267.695312 C 152.148438 267.8125 152.242188 267.90625 152.359375 267.90625 C 152.476562 267.90625 152.570312 267.8125 152.570312 267.695312 Z M 152.570312 267.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.773438 267.078125 C 149.773438 266.960938 149.679688 266.867188 149.5625 266.867188 C 149.445312 266.867188 149.351562 266.960938 149.351562 267.078125 C 149.351562 267.195312 149.445312 267.289062 149.5625 267.289062 C 149.679688 267.289062 149.773438 267.195312 149.773438 267.078125 Z M 149.773438 267.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.914062 266.710938 C 147.914062 266.59375 147.820312 266.5 147.703125 266.5 C 147.585938 266.5 147.492188 266.59375 147.492188 266.710938 C 147.492188 266.828125 147.585938 266.921875 147.703125 266.921875 C 147.820312 266.921875 147.914062 266.828125 147.914062 266.710938 Z M 147.914062 266.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.214844 267.097656 C 149.214844 266.980469 149.121094 266.886719 149.003906 266.886719 C 148.886719 266.886719 148.792969 266.980469 148.792969 267.097656 C 148.792969 267.214844 148.886719 267.308594 149.003906 267.308594 C 149.121094 267.308594 149.214844 267.214844 149.214844 267.097656 Z M 149.214844 267.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.1875 267.421875 C 151.1875 267.304688 151.09375 267.210938 150.976562 267.210938 C 150.859375 267.210938 150.765625 267.304688 150.765625 267.421875 C 150.765625 267.539062 150.859375 267.632812 150.976562 267.632812 C 151.09375 267.632812 151.1875 267.539062 151.1875 267.421875 Z M 151.1875 267.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.421875 268.550781 C 149.421875 268.433594 149.328125 268.339844 149.210938 268.339844 C 149.09375 268.339844 149 268.433594 149 268.550781 C 149 268.667969 149.09375 268.761719 149.210938 268.761719 C 149.328125 268.761719 149.421875 268.667969 149.421875 268.550781 Z M 149.421875 268.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.289062 269.59375 C 150.289062 269.476562 150.195312 269.382812 150.078125 269.382812 C 149.960938 269.382812 149.867188 269.476562 149.867188 269.59375 C 149.867188 269.710938 149.960938 269.804688 150.078125 269.804688 C 150.195312 269.804688 150.289062 269.710938 150.289062 269.59375 Z M 150.289062 269.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.410156 270.320312 C 150.410156 270.203125 150.316406 270.109375 150.199219 270.109375 C 150.082031 270.109375 149.988281 270.203125 149.988281 270.320312 C 149.988281 270.4375 150.082031 270.53125 150.199219 270.53125 C 150.316406 270.53125 150.410156 270.4375 150.410156 270.320312 Z M 150.410156 270.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.386719 273.738281 C 147.386719 273.621094 147.292969 273.527344 147.175781 273.527344 C 147.058594 273.527344 146.964844 273.621094 146.964844 273.738281 C 146.964844 273.855469 147.058594 273.949219 147.175781 273.949219 C 147.292969 273.949219 147.386719 273.855469 147.386719 273.738281 Z M 147.386719 273.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.75 272.148438 C 149.75 272.03125 149.65625 271.9375 149.539062 271.9375 C 149.421875 271.9375 149.328125 272.03125 149.328125 272.148438 C 149.328125 272.265625 149.421875 272.359375 149.539062 272.359375 C 149.65625 272.359375 149.75 272.265625 149.75 272.148438 Z M 149.75 272.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.121094 269.613281 C 150.121094 269.496094 150.027344 269.402344 149.910156 269.402344 C 149.792969 269.402344 149.699219 269.496094 149.699219 269.613281 C 149.699219 269.730469 149.792969 269.824219 149.910156 269.824219 C 150.027344 269.824219 150.121094 269.730469 150.121094 269.613281 Z M 150.121094 269.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.046875 268.804688 C 151.046875 268.6875 150.953125 268.59375 150.835938 268.59375 C 150.71875 268.59375 150.625 268.6875 150.625 268.804688 C 150.625 268.921875 150.71875 269.015625 150.835938 269.015625 C 150.953125 269.015625 151.046875 268.921875 151.046875 268.804688 Z M 151.046875 268.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.941406 270.003906 C 149.941406 269.886719 149.847656 269.792969 149.730469 269.792969 C 149.613281 269.792969 149.519531 269.886719 149.519531 270.003906 C 149.519531 270.121094 149.613281 270.214844 149.730469 270.214844 C 149.847656 270.214844 149.941406 270.121094 149.941406 270.003906 Z M 149.941406 270.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.5 271.25 C 149.5 271.132812 149.40625 271.039062 149.289062 271.039062 C 149.171875 271.039062 149.078125 271.132812 149.078125 271.25 C 149.078125 271.367188 149.171875 271.460938 149.289062 271.460938 C 149.40625 271.460938 149.5 271.367188 149.5 271.25 Z M 149.5 271.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.273438 272.066406 C 149.273438 271.949219 149.179688 271.855469 149.0625 271.855469 C 148.945312 271.855469 148.851562 271.949219 148.851562 272.066406 C 148.851562 272.183594 148.945312 272.277344 149.0625 272.277344 C 149.179688 272.277344 149.273438 272.183594 149.273438 272.066406 Z M 149.273438 272.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.199219 274.863281 C 149.199219 274.746094 149.105469 274.652344 148.988281 274.652344 C 148.871094 274.652344 148.777344 274.746094 148.777344 274.863281 C 148.777344 274.980469 148.871094 275.074219 148.988281 275.074219 C 149.105469 275.074219 149.199219 274.980469 149.199219 274.863281 Z M 149.199219 274.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.929688 274.855469 C 149.929688 274.738281 149.835938 274.644531 149.71875 274.644531 C 149.601562 274.644531 149.507812 274.738281 149.507812 274.855469 C 149.507812 274.972656 149.601562 275.066406 149.71875 275.066406 C 149.835938 275.066406 149.929688 274.972656 149.929688 274.855469 Z M 149.929688 274.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.777344 275.054688 C 148.777344 274.9375 148.683594 274.84375 148.566406 274.84375 C 148.449219 274.84375 148.355469 274.9375 148.355469 275.054688 C 148.355469 275.171875 148.449219 275.265625 148.566406 275.265625 C 148.683594 275.265625 148.777344 275.171875 148.777344 275.054688 Z M 148.777344 275.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.15625 275.945312 C 148.15625 275.828125 148.0625 275.734375 147.945312 275.734375 C 147.828125 275.734375 147.734375 275.828125 147.734375 275.945312 C 147.734375 276.0625 147.828125 276.15625 147.945312 276.15625 C 148.0625 276.15625 148.15625 276.0625 148.15625 275.945312 Z M 148.15625 275.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.949219 274.777344 C 148.949219 274.660156 148.855469 274.566406 148.738281 274.566406 C 148.621094 274.566406 148.527344 274.660156 148.527344 274.777344 C 148.527344 274.894531 148.621094 274.988281 148.738281 274.988281 C 148.855469 274.988281 148.949219 274.894531 148.949219 274.777344 Z M 148.949219 274.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.070312 275.792969 C 145.070312 275.675781 144.976562 275.582031 144.859375 275.582031 C 144.742188 275.582031 144.648438 275.675781 144.648438 275.792969 C 144.648438 275.910156 144.742188 276.003906 144.859375 276.003906 C 144.976562 276.003906 145.070312 275.910156 145.070312 275.792969 Z M 145.070312 275.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.308594 273.785156 C 143.308594 273.667969 143.214844 273.574219 143.097656 273.574219 C 142.980469 273.574219 142.886719 273.667969 142.886719 273.785156 C 142.886719 273.902344 142.980469 273.996094 143.097656 273.996094 C 143.214844 273.996094 143.308594 273.902344 143.308594 273.785156 Z M 143.308594 273.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.1875 275.585938 C 140.1875 275.46875 140.09375 275.375 139.976562 275.375 C 139.859375 275.375 139.765625 275.46875 139.765625 275.585938 C 139.765625 275.703125 139.859375 275.796875 139.976562 275.796875 C 140.09375 275.796875 140.1875 275.703125 140.1875 275.585938 Z M 140.1875 275.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.214844 275.625 C 142.214844 275.507812 142.121094 275.414062 142.003906 275.414062 C 141.886719 275.414062 141.792969 275.507812 141.792969 275.625 C 141.792969 275.742188 141.886719 275.835938 142.003906 275.835938 C 142.121094 275.835938 142.214844 275.742188 142.214844 275.625 Z M 142.214844 275.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.027344 279.859375 C 142.027344 279.742188 141.933594 279.648438 141.816406 279.648438 C 141.699219 279.648438 141.605469 279.742188 141.605469 279.859375 C 141.605469 279.976562 141.699219 280.070312 141.816406 280.070312 C 141.933594 280.070312 142.027344 279.976562 142.027344 279.859375 Z M 142.027344 279.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.472656 278.695312 C 142.472656 278.578125 142.378906 278.484375 142.261719 278.484375 C 142.144531 278.484375 142.050781 278.578125 142.050781 278.695312 C 142.050781 278.8125 142.144531 278.90625 142.261719 278.90625 C 142.378906 278.90625 142.472656 278.8125 142.472656 278.695312 Z M 142.472656 278.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.117188 279.386719 C 143.117188 279.269531 143.023438 279.175781 142.90625 279.175781 C 142.789062 279.175781 142.695312 279.269531 142.695312 279.386719 C 142.695312 279.503906 142.789062 279.597656 142.90625 279.597656 C 143.023438 279.597656 143.117188 279.503906 143.117188 279.386719 Z M 143.117188 279.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.78125 280.546875 C 142.78125 280.429688 142.6875 280.335938 142.570312 280.335938 C 142.453125 280.335938 142.359375 280.429688 142.359375 280.546875 C 142.359375 280.664062 142.453125 280.757812 142.570312 280.757812 C 142.6875 280.757812 142.78125 280.664062 142.78125 280.546875 Z M 142.78125 280.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.203125 283.230469 C 141.203125 283.113281 141.109375 283.019531 140.992188 283.019531 C 140.875 283.019531 140.78125 283.113281 140.78125 283.230469 C 140.78125 283.347656 140.875 283.441406 140.992188 283.441406 C 141.109375 283.441406 141.203125 283.347656 141.203125 283.230469 Z M 141.203125 283.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.542969 282.832031 C 136.542969 282.714844 136.449219 282.621094 136.332031 282.621094 C 136.214844 282.621094 136.121094 282.714844 136.121094 282.832031 C 136.121094 282.949219 136.214844 283.042969 136.332031 283.042969 C 136.449219 283.042969 136.542969 282.949219 136.542969 282.832031 Z M 136.542969 282.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.546875 283.289062 C 137.546875 283.171875 137.453125 283.078125 137.335938 283.078125 C 137.21875 283.078125 137.125 283.171875 137.125 283.289062 C 137.125 283.40625 137.21875 283.5 137.335938 283.5 C 137.453125 283.5 137.546875 283.40625 137.546875 283.289062 Z M 137.546875 283.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 134.761719 284.523438 C 134.761719 284.40625 134.667969 284.3125 134.550781 284.3125 C 134.433594 284.3125 134.339844 284.40625 134.339844 284.523438 C 134.339844 284.640625 134.433594 284.734375 134.550781 284.734375 C 134.667969 284.734375 134.761719 284.640625 134.761719 284.523438 Z M 134.761719 284.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.566406 285.277344 C 136.566406 285.160156 136.472656 285.066406 136.355469 285.066406 C 136.238281 285.066406 136.144531 285.160156 136.144531 285.277344 C 136.144531 285.394531 136.238281 285.488281 136.355469 285.488281 C 136.472656 285.488281 136.566406 285.394531 136.566406 285.277344 Z M 136.566406 285.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 133.035156 287.46875 C 133.035156 287.351562 132.941406 287.257812 132.824219 287.257812 C 132.707031 287.257812 132.613281 287.351562 132.613281 287.46875 C 132.613281 287.585938 132.707031 287.679688 132.824219 287.679688 C 132.941406 287.679688 133.035156 287.585938 133.035156 287.46875 Z M 133.035156 287.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.53125 288.75 C 137.53125 288.632812 137.4375 288.539062 137.320312 288.539062 C 137.203125 288.539062 137.109375 288.632812 137.109375 288.75 C 137.109375 288.867188 137.203125 288.960938 137.320312 288.960938 C 137.4375 288.960938 137.53125 288.867188 137.53125 288.75 Z M 137.53125 288.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.0625 287.101562 C 137.0625 286.984375 136.96875 286.890625 136.851562 286.890625 C 136.734375 286.890625 136.640625 286.984375 136.640625 287.101562 C 136.640625 287.21875 136.734375 287.3125 136.851562 287.3125 C 136.96875 287.3125 137.0625 287.21875 137.0625 287.101562 Z M 137.0625 287.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.871094 284.660156 C 136.871094 284.542969 136.777344 284.449219 136.660156 284.449219 C 136.542969 284.449219 136.449219 284.542969 136.449219 284.660156 C 136.449219 284.777344 136.542969 284.871094 136.660156 284.871094 C 136.777344 284.871094 136.871094 284.777344 136.871094 284.660156 Z M 136.871094 284.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.683594 283.300781 C 140.683594 283.183594 140.589844 283.089844 140.472656 283.089844 C 140.355469 283.089844 140.261719 283.183594 140.261719 283.300781 C 140.261719 283.417969 140.355469 283.511719 140.472656 283.511719 C 140.589844 283.511719 140.683594 283.417969 140.683594 283.300781 Z M 140.683594 283.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.855469 285.742188 C 143.855469 285.625 143.761719 285.53125 143.644531 285.53125 C 143.527344 285.53125 143.433594 285.625 143.433594 285.742188 C 143.433594 285.859375 143.527344 285.953125 143.644531 285.953125 C 143.761719 285.953125 143.855469 285.859375 143.855469 285.742188 Z M 143.855469 285.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.136719 286.585938 C 142.136719 286.46875 142.042969 286.375 141.925781 286.375 C 141.808594 286.375 141.714844 286.46875 141.714844 286.585938 C 141.714844 286.703125 141.808594 286.796875 141.925781 286.796875 C 142.042969 286.796875 142.136719 286.703125 142.136719 286.585938 Z M 142.136719 286.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.402344 286.277344 C 142.402344 286.160156 142.308594 286.066406 142.191406 286.066406 C 142.074219 286.066406 141.980469 286.160156 141.980469 286.277344 C 141.980469 286.394531 142.074219 286.488281 142.191406 286.488281 C 142.308594 286.488281 142.402344 286.394531 142.402344 286.277344 Z M 142.402344 286.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.941406 283.449219 C 141.941406 283.332031 141.847656 283.238281 141.730469 283.238281 C 141.613281 283.238281 141.519531 283.332031 141.519531 283.449219 C 141.519531 283.566406 141.613281 283.660156 141.730469 283.660156 C 141.847656 283.660156 141.941406 283.566406 141.941406 283.449219 Z M 141.941406 283.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.851562 281.3125 C 143.851562 281.195312 143.757812 281.101562 143.640625 281.101562 C 143.523438 281.101562 143.429688 281.195312 143.429688 281.3125 C 143.429688 281.429688 143.523438 281.523438 143.640625 281.523438 C 143.757812 281.523438 143.851562 281.429688 143.851562 281.3125 Z M 143.851562 281.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.167969 282.851562 C 147.167969 282.734375 147.074219 282.640625 146.957031 282.640625 C 146.839844 282.640625 146.746094 282.734375 146.746094 282.851562 C 146.746094 282.96875 146.839844 283.0625 146.957031 283.0625 C 147.074219 283.0625 147.167969 282.96875 147.167969 282.851562 Z M 147.167969 282.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.207031 283.667969 C 145.207031 283.550781 145.113281 283.457031 144.996094 283.457031 C 144.878906 283.457031 144.785156 283.550781 144.785156 283.667969 C 144.785156 283.785156 144.878906 283.878906 144.996094 283.878906 C 145.113281 283.878906 145.207031 283.785156 145.207031 283.667969 Z M 145.207031 283.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.304688 284.402344 C 147.304688 284.285156 147.210938 284.191406 147.09375 284.191406 C 146.976562 284.191406 146.882812 284.285156 146.882812 284.402344 C 146.882812 284.519531 146.976562 284.613281 147.09375 284.613281 C 147.210938 284.613281 147.304688 284.519531 147.304688 284.402344 Z M 147.304688 284.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.265625 280.6875 C 146.265625 280.570312 146.171875 280.476562 146.054688 280.476562 C 145.9375 280.476562 145.84375 280.570312 145.84375 280.6875 C 145.84375 280.804688 145.9375 280.898438 146.054688 280.898438 C 146.171875 280.898438 146.265625 280.804688 146.265625 280.6875 Z M 146.265625 280.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.628906 279.566406 C 142.628906 279.449219 142.535156 279.355469 142.417969 279.355469 C 142.300781 279.355469 142.207031 279.449219 142.207031 279.566406 C 142.207031 279.683594 142.300781 279.777344 142.417969 279.777344 C 142.535156 279.777344 142.628906 279.683594 142.628906 279.566406 Z M 142.628906 279.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.257812 279.222656 C 147.257812 279.105469 147.164062 279.011719 147.046875 279.011719 C 146.929688 279.011719 146.835938 279.105469 146.835938 279.222656 C 146.835938 279.339844 146.929688 279.433594 147.046875 279.433594 C 147.164062 279.433594 147.257812 279.339844 147.257812 279.222656 Z M 147.257812 279.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.738281 281.988281 C 140.738281 281.871094 140.644531 281.777344 140.527344 281.777344 C 140.410156 281.777344 140.316406 281.871094 140.316406 281.988281 C 140.316406 282.105469 140.410156 282.199219 140.527344 282.199219 C 140.644531 282.199219 140.738281 282.105469 140.738281 281.988281 Z M 140.738281 281.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.550781 280.671875 C 139.550781 280.554688 139.457031 280.460938 139.339844 280.460938 C 139.222656 280.460938 139.128906 280.554688 139.128906 280.671875 C 139.128906 280.789062 139.222656 280.882812 139.339844 280.882812 C 139.457031 280.882812 139.550781 280.789062 139.550781 280.671875 Z M 139.550781 280.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.347656 280.746094 C 140.347656 280.628906 140.253906 280.535156 140.136719 280.535156 C 140.019531 280.535156 139.925781 280.628906 139.925781 280.746094 C 139.925781 280.863281 140.019531 280.957031 140.136719 280.957031 C 140.253906 280.957031 140.347656 280.863281 140.347656 280.746094 Z M 140.347656 280.746094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.097656 282.351562 C 137.097656 282.234375 137.003906 282.140625 136.886719 282.140625 C 136.769531 282.140625 136.675781 282.234375 136.675781 282.351562 C 136.675781 282.46875 136.769531 282.5625 136.886719 282.5625 C 137.003906 282.5625 137.097656 282.46875 137.097656 282.351562 Z M 137.097656 282.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.246094 285.578125 C 138.246094 285.460938 138.152344 285.367188 138.035156 285.367188 C 137.917969 285.367188 137.824219 285.460938 137.824219 285.578125 C 137.824219 285.695312 137.917969 285.789062 138.035156 285.789062 C 138.152344 285.789062 138.246094 285.695312 138.246094 285.578125 Z M 138.246094 285.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.878906 284.722656 C 137.878906 284.605469 137.785156 284.511719 137.667969 284.511719 C 137.550781 284.511719 137.457031 284.605469 137.457031 284.722656 C 137.457031 284.839844 137.550781 284.933594 137.667969 284.933594 C 137.785156 284.933594 137.878906 284.839844 137.878906 284.722656 Z M 137.878906 284.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.304688 284.410156 C 140.304688 284.292969 140.210938 284.199219 140.09375 284.199219 C 139.976562 284.199219 139.882812 284.292969 139.882812 284.410156 C 139.882812 284.527344 139.976562 284.621094 140.09375 284.621094 C 140.210938 284.621094 140.304688 284.527344 140.304688 284.410156 Z M 140.304688 284.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.546875 286.707031 C 139.546875 286.589844 139.453125 286.496094 139.335938 286.496094 C 139.21875 286.496094 139.125 286.589844 139.125 286.707031 C 139.125 286.824219 139.21875 286.917969 139.335938 286.917969 C 139.453125 286.917969 139.546875 286.824219 139.546875 286.707031 Z M 139.546875 286.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.699219 288.074219 C 138.699219 287.957031 138.605469 287.863281 138.488281 287.863281 C 138.371094 287.863281 138.277344 287.957031 138.277344 288.074219 C 138.277344 288.191406 138.371094 288.285156 138.488281 288.285156 C 138.605469 288.285156 138.699219 288.191406 138.699219 288.074219 Z M 138.699219 288.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.707031 288.632812 C 141.707031 288.515625 141.613281 288.421875 141.496094 288.421875 C 141.378906 288.421875 141.285156 288.515625 141.285156 288.632812 C 141.285156 288.75 141.378906 288.84375 141.496094 288.84375 C 141.613281 288.84375 141.707031 288.75 141.707031 288.632812 Z M 141.707031 288.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.695312 289.335938 C 141.695312 289.21875 141.601562 289.125 141.484375 289.125 C 141.367188 289.125 141.273438 289.21875 141.273438 289.335938 C 141.273438 289.453125 141.367188 289.546875 141.484375 289.546875 C 141.601562 289.546875 141.695312 289.453125 141.695312 289.335938 Z M 141.695312 289.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.644531 292.199219 C 140.644531 292.082031 140.550781 291.988281 140.433594 291.988281 C 140.316406 291.988281 140.222656 292.082031 140.222656 292.199219 C 140.222656 292.316406 140.316406 292.410156 140.433594 292.410156 C 140.550781 292.410156 140.644531 292.316406 140.644531 292.199219 Z M 140.644531 292.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.039062 289.859375 C 136.039062 289.742188 135.945312 289.648438 135.828125 289.648438 C 135.710938 289.648438 135.617188 289.742188 135.617188 289.859375 C 135.617188 289.976562 135.710938 290.070312 135.828125 290.070312 C 135.945312 290.070312 136.039062 289.976562 136.039062 289.859375 Z M 136.039062 289.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.050781 290.804688 C 136.050781 290.6875 135.957031 290.59375 135.839844 290.59375 C 135.722656 290.59375 135.628906 290.6875 135.628906 290.804688 C 135.628906 290.921875 135.722656 291.015625 135.839844 291.015625 C 135.957031 291.015625 136.050781 290.921875 136.050781 290.804688 Z M 136.050781 290.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.378906 291.109375 C 140.378906 290.992188 140.285156 290.898438 140.167969 290.898438 C 140.050781 290.898438 139.957031 290.992188 139.957031 291.109375 C 139.957031 291.226562 140.050781 291.320312 140.167969 291.320312 C 140.285156 291.320312 140.378906 291.226562 140.378906 291.109375 Z M 140.378906 291.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.398438 291.109375 C 143.398438 290.992188 143.304688 290.898438 143.1875 290.898438 C 143.070312 290.898438 142.976562 290.992188 142.976562 291.109375 C 142.976562 291.226562 143.070312 291.320312 143.1875 291.320312 C 143.304688 291.320312 143.398438 291.226562 143.398438 291.109375 Z M 143.398438 291.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.679688 284.484375 C 143.679688 284.367188 143.585938 284.273438 143.46875 284.273438 C 143.351562 284.273438 143.257812 284.367188 143.257812 284.484375 C 143.257812 284.601562 143.351562 284.695312 143.46875 284.695312 C 143.585938 284.695312 143.679688 284.601562 143.679688 284.484375 Z M 143.679688 284.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.472656 284.0625 C 144.472656 283.945312 144.378906 283.851562 144.261719 283.851562 C 144.144531 283.851562 144.050781 283.945312 144.050781 284.0625 C 144.050781 284.179688 144.144531 284.273438 144.261719 284.273438 C 144.378906 284.273438 144.472656 284.179688 144.472656 284.0625 Z M 144.472656 284.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.257812 284.386719 C 144.257812 284.269531 144.164062 284.175781 144.046875 284.175781 C 143.929688 284.175781 143.835938 284.269531 143.835938 284.386719 C 143.835938 284.503906 143.929688 284.597656 144.046875 284.597656 C 144.164062 284.597656 144.257812 284.503906 144.257812 284.386719 Z M 144.257812 284.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.683594 285.160156 C 145.683594 285.042969 145.589844 284.949219 145.472656 284.949219 C 145.355469 284.949219 145.261719 285.042969 145.261719 285.160156 C 145.261719 285.277344 145.355469 285.371094 145.472656 285.371094 C 145.589844 285.371094 145.683594 285.277344 145.683594 285.160156 Z M 145.683594 285.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.558594 283.582031 C 146.558594 283.464844 146.464844 283.371094 146.347656 283.371094 C 146.230469 283.371094 146.136719 283.464844 146.136719 283.582031 C 146.136719 283.699219 146.230469 283.792969 146.347656 283.792969 C 146.464844 283.792969 146.558594 283.699219 146.558594 283.582031 Z M 146.558594 283.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.640625 287.414062 C 146.640625 287.296875 146.546875 287.203125 146.429688 287.203125 C 146.3125 287.203125 146.21875 287.296875 146.21875 287.414062 C 146.21875 287.53125 146.3125 287.625 146.429688 287.625 C 146.546875 287.625 146.640625 287.53125 146.640625 287.414062 Z M 146.640625 287.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.703125 291.40625 C 146.703125 291.289062 146.609375 291.195312 146.492188 291.195312 C 146.375 291.195312 146.28125 291.289062 146.28125 291.40625 C 146.28125 291.523438 146.375 291.617188 146.492188 291.617188 C 146.609375 291.617188 146.703125 291.523438 146.703125 291.40625 Z M 146.703125 291.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.535156 293.894531 C 150.535156 293.777344 150.441406 293.683594 150.324219 293.683594 C 150.207031 293.683594 150.113281 293.777344 150.113281 293.894531 C 150.113281 294.011719 150.207031 294.105469 150.324219 294.105469 C 150.441406 294.105469 150.535156 294.011719 150.535156 293.894531 Z M 150.535156 293.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.410156 292.046875 C 153.410156 291.929688 153.316406 291.835938 153.199219 291.835938 C 153.082031 291.835938 152.988281 291.929688 152.988281 292.046875 C 152.988281 292.164062 153.082031 292.257812 153.199219 292.257812 C 153.316406 292.257812 153.410156 292.164062 153.410156 292.046875 Z M 153.410156 292.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.414062 290.539062 C 151.414062 290.421875 151.320312 290.328125 151.203125 290.328125 C 151.085938 290.328125 150.992188 290.421875 150.992188 290.539062 C 150.992188 290.65625 151.085938 290.75 151.203125 290.75 C 151.320312 290.75 151.414062 290.65625 151.414062 290.539062 Z M 151.414062 290.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.171875 292.246094 C 154.171875 292.128906 154.078125 292.035156 153.960938 292.035156 C 153.84375 292.035156 153.75 292.128906 153.75 292.246094 C 153.75 292.363281 153.84375 292.457031 153.960938 292.457031 C 154.078125 292.457031 154.171875 292.363281 154.171875 292.246094 Z M 154.171875 292.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.179688 290.582031 C 152.179688 290.464844 152.085938 290.371094 151.96875 290.371094 C 151.851562 290.371094 151.757812 290.464844 151.757812 290.582031 C 151.757812 290.699219 151.851562 290.792969 151.96875 290.792969 C 152.085938 290.792969 152.179688 290.699219 152.179688 290.582031 Z M 152.179688 290.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.574219 292.246094 C 153.574219 292.128906 153.480469 292.035156 153.363281 292.035156 C 153.246094 292.035156 153.152344 292.128906 153.152344 292.246094 C 153.152344 292.363281 153.246094 292.457031 153.363281 292.457031 C 153.480469 292.457031 153.574219 292.363281 153.574219 292.246094 Z M 153.574219 292.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.335938 291.300781 C 151.335938 291.183594 151.242188 291.089844 151.125 291.089844 C 151.007812 291.089844 150.914062 291.183594 150.914062 291.300781 C 150.914062 291.417969 151.007812 291.511719 151.125 291.511719 C 151.242188 291.511719 151.335938 291.417969 151.335938 291.300781 Z M 151.335938 291.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.417969 289.722656 C 151.417969 289.605469 151.324219 289.511719 151.207031 289.511719 C 151.089844 289.511719 150.996094 289.605469 150.996094 289.722656 C 150.996094 289.839844 151.089844 289.933594 151.207031 289.933594 C 151.324219 289.933594 151.417969 289.839844 151.417969 289.722656 Z M 151.417969 289.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.8125 289.695312 C 153.8125 289.578125 153.71875 289.484375 153.601562 289.484375 C 153.484375 289.484375 153.390625 289.578125 153.390625 289.695312 C 153.390625 289.8125 153.484375 289.90625 153.601562 289.90625 C 153.71875 289.90625 153.8125 289.8125 153.8125 289.695312 Z M 153.8125 289.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.457031 293.320312 C 156.457031 293.203125 156.363281 293.109375 156.246094 293.109375 C 156.128906 293.109375 156.035156 293.203125 156.035156 293.320312 C 156.035156 293.4375 156.128906 293.53125 156.246094 293.53125 C 156.363281 293.53125 156.457031 293.4375 156.457031 293.320312 Z M 156.457031 293.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.027344 298.519531 C 154.027344 298.402344 153.933594 298.308594 153.816406 298.308594 C 153.699219 298.308594 153.605469 298.402344 153.605469 298.519531 C 153.605469 298.636719 153.699219 298.730469 153.816406 298.730469 C 153.933594 298.730469 154.027344 298.636719 154.027344 298.519531 Z M 154.027344 298.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.324219 298.761719 C 153.324219 298.644531 153.230469 298.550781 153.113281 298.550781 C 152.996094 298.550781 152.902344 298.644531 152.902344 298.761719 C 152.902344 298.878906 152.996094 298.972656 153.113281 298.972656 C 153.230469 298.972656 153.324219 298.878906 153.324219 298.761719 Z M 153.324219 298.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.347656 298.160156 C 154.347656 298.042969 154.253906 297.949219 154.136719 297.949219 C 154.019531 297.949219 153.925781 298.042969 153.925781 298.160156 C 153.925781 298.277344 154.019531 298.371094 154.136719 298.371094 C 154.253906 298.371094 154.347656 298.277344 154.347656 298.160156 Z M 154.347656 298.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.214844 296.671875 C 154.214844 296.554688 154.121094 296.460938 154.003906 296.460938 C 153.886719 296.460938 153.792969 296.554688 153.792969 296.671875 C 153.792969 296.789062 153.886719 296.882812 154.003906 296.882812 C 154.121094 296.882812 154.214844 296.789062 154.214844 296.671875 Z M 154.214844 296.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.285156 299.15625 C 157.285156 299.039062 157.191406 298.945312 157.074219 298.945312 C 156.957031 298.945312 156.863281 299.039062 156.863281 299.15625 C 156.863281 299.273438 156.957031 299.367188 157.074219 299.367188 C 157.191406 299.367188 157.285156 299.273438 157.285156 299.15625 Z M 157.285156 299.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.796875 298.738281 C 153.796875 298.621094 153.703125 298.527344 153.585938 298.527344 C 153.46875 298.527344 153.375 298.621094 153.375 298.738281 C 153.375 298.855469 153.46875 298.949219 153.585938 298.949219 C 153.703125 298.949219 153.796875 298.855469 153.796875 298.738281 Z M 153.796875 298.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.3125 296.601562 C 155.3125 296.484375 155.21875 296.390625 155.101562 296.390625 C 154.984375 296.390625 154.890625 296.484375 154.890625 296.601562 C 154.890625 296.71875 154.984375 296.8125 155.101562 296.8125 C 155.21875 296.8125 155.3125 296.71875 155.3125 296.601562 Z M 155.3125 296.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.714844 296.710938 C 157.714844 296.59375 157.621094 296.5 157.503906 296.5 C 157.386719 296.5 157.292969 296.59375 157.292969 296.710938 C 157.292969 296.828125 157.386719 296.921875 157.503906 296.921875 C 157.621094 296.921875 157.714844 296.828125 157.714844 296.710938 Z M 157.714844 296.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.175781 298.527344 C 159.175781 298.410156 159.082031 298.316406 158.964844 298.316406 C 158.847656 298.316406 158.753906 298.410156 158.753906 298.527344 C 158.753906 298.644531 158.847656 298.738281 158.964844 298.738281 C 159.082031 298.738281 159.175781 298.644531 159.175781 298.527344 Z M 159.175781 298.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.042969 298.585938 C 157.042969 298.46875 156.949219 298.375 156.832031 298.375 C 156.714844 298.375 156.621094 298.46875 156.621094 298.585938 C 156.621094 298.703125 156.714844 298.796875 156.832031 298.796875 C 156.949219 298.796875 157.042969 298.703125 157.042969 298.585938 Z M 157.042969 298.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.835938 299.542969 C 158.835938 299.425781 158.742188 299.332031 158.625 299.332031 C 158.507812 299.332031 158.414062 299.425781 158.414062 299.542969 C 158.414062 299.660156 158.507812 299.753906 158.625 299.753906 C 158.742188 299.753906 158.835938 299.660156 158.835938 299.542969 Z M 158.835938 299.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.789062 299.953125 C 155.789062 299.835938 155.695312 299.742188 155.578125 299.742188 C 155.460938 299.742188 155.367188 299.835938 155.367188 299.953125 C 155.367188 300.070312 155.460938 300.164062 155.578125 300.164062 C 155.695312 300.164062 155.789062 300.070312 155.789062 299.953125 Z M 155.789062 299.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.523438 299.210938 C 158.523438 299.09375 158.429688 299 158.3125 299 C 158.195312 299 158.101562 299.09375 158.101562 299.210938 C 158.101562 299.328125 158.195312 299.421875 158.3125 299.421875 C 158.429688 299.421875 158.523438 299.328125 158.523438 299.210938 Z M 158.523438 299.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.398438 297.242188 C 157.398438 297.125 157.304688 297.03125 157.1875 297.03125 C 157.070312 297.03125 156.976562 297.125 156.976562 297.242188 C 156.976562 297.359375 157.070312 297.453125 157.1875 297.453125 C 157.304688 297.453125 157.398438 297.359375 157.398438 297.242188 Z M 157.398438 297.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.359375 300.152344 C 160.359375 300.035156 160.265625 299.941406 160.148438 299.941406 C 160.03125 299.941406 159.9375 300.035156 159.9375 300.152344 C 159.9375 300.269531 160.03125 300.363281 160.148438 300.363281 C 160.265625 300.363281 160.359375 300.269531 160.359375 300.152344 Z M 160.359375 300.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.453125 301.117188 C 160.453125 301 160.359375 300.90625 160.242188 300.90625 C 160.125 300.90625 160.03125 301 160.03125 301.117188 C 160.03125 301.234375 160.125 301.328125 160.242188 301.328125 C 160.359375 301.328125 160.453125 301.234375 160.453125 301.117188 Z M 160.453125 301.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.535156 300.667969 C 156.535156 300.550781 156.441406 300.457031 156.324219 300.457031 C 156.207031 300.457031 156.113281 300.550781 156.113281 300.667969 C 156.113281 300.785156 156.207031 300.878906 156.324219 300.878906 C 156.441406 300.878906 156.535156 300.785156 156.535156 300.667969 Z M 156.535156 300.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.535156 303.945312 C 156.535156 303.828125 156.441406 303.734375 156.324219 303.734375 C 156.207031 303.734375 156.113281 303.828125 156.113281 303.945312 C 156.113281 304.0625 156.207031 304.15625 156.324219 304.15625 C 156.441406 304.15625 156.535156 304.0625 156.535156 303.945312 Z M 156.535156 303.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.105469 300.492188 C 157.105469 300.375 157.011719 300.28125 156.894531 300.28125 C 156.777344 300.28125 156.683594 300.375 156.683594 300.492188 C 156.683594 300.609375 156.777344 300.703125 156.894531 300.703125 C 157.011719 300.703125 157.105469 300.609375 157.105469 300.492188 Z M 157.105469 300.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.265625 298.765625 C 156.265625 298.648438 156.171875 298.554688 156.054688 298.554688 C 155.9375 298.554688 155.84375 298.648438 155.84375 298.765625 C 155.84375 298.882812 155.9375 298.976562 156.054688 298.976562 C 156.171875 298.976562 156.265625 298.882812 156.265625 298.765625 Z M 156.265625 298.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155 297.484375 C 155 297.367188 154.90625 297.273438 154.789062 297.273438 C 154.671875 297.273438 154.578125 297.367188 154.578125 297.484375 C 154.578125 297.601562 154.671875 297.695312 154.789062 297.695312 C 154.90625 297.695312 155 297.601562 155 297.484375 Z M 155 297.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.710938 299.273438 C 155.710938 299.15625 155.617188 299.0625 155.5 299.0625 C 155.382812 299.0625 155.289062 299.15625 155.289062 299.273438 C 155.289062 299.390625 155.382812 299.484375 155.5 299.484375 C 155.617188 299.484375 155.710938 299.390625 155.710938 299.273438 Z M 155.710938 299.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.90625 299.46875 C 158.90625 299.351562 158.8125 299.257812 158.695312 299.257812 C 158.578125 299.257812 158.484375 299.351562 158.484375 299.46875 C 158.484375 299.585938 158.578125 299.679688 158.695312 299.679688 C 158.8125 299.679688 158.90625 299.585938 158.90625 299.46875 Z M 158.90625 299.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.601562 298.613281 C 161.601562 298.496094 161.507812 298.402344 161.390625 298.402344 C 161.273438 298.402344 161.179688 298.496094 161.179688 298.613281 C 161.179688 298.730469 161.273438 298.824219 161.390625 298.824219 C 161.507812 298.824219 161.601562 298.730469 161.601562 298.613281 Z M 161.601562 298.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.742188 298.359375 C 159.742188 298.242188 159.648438 298.148438 159.53125 298.148438 C 159.414062 298.148438 159.320312 298.242188 159.320312 298.359375 C 159.320312 298.476562 159.414062 298.570312 159.53125 298.570312 C 159.648438 298.570312 159.742188 298.476562 159.742188 298.359375 Z M 159.742188 298.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.148438 294.742188 C 158.148438 294.625 158.054688 294.53125 157.9375 294.53125 C 157.820312 294.53125 157.726562 294.625 157.726562 294.742188 C 157.726562 294.859375 157.820312 294.953125 157.9375 294.953125 C 158.054688 294.953125 158.148438 294.859375 158.148438 294.742188 Z M 158.148438 294.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.492188 295.921875 C 153.492188 295.804688 153.398438 295.710938 153.28125 295.710938 C 153.164062 295.710938 153.070312 295.804688 153.070312 295.921875 C 153.070312 296.039062 153.164062 296.132812 153.28125 296.132812 C 153.398438 296.132812 153.492188 296.039062 153.492188 295.921875 Z M 153.492188 295.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.390625 296.449219 C 150.390625 296.332031 150.296875 296.238281 150.179688 296.238281 C 150.0625 296.238281 149.96875 296.332031 149.96875 296.449219 C 149.96875 296.566406 150.0625 296.660156 150.179688 296.660156 C 150.296875 296.660156 150.390625 296.566406 150.390625 296.449219 Z M 150.390625 296.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.371094 295.503906 C 151.371094 295.386719 151.277344 295.292969 151.160156 295.292969 C 151.042969 295.292969 150.949219 295.386719 150.949219 295.503906 C 150.949219 295.621094 151.042969 295.714844 151.160156 295.714844 C 151.277344 295.714844 151.371094 295.621094 151.371094 295.503906 Z M 151.371094 295.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.484375 298.816406 C 153.484375 298.699219 153.390625 298.605469 153.273438 298.605469 C 153.15625 298.605469 153.0625 298.699219 153.0625 298.816406 C 153.0625 298.933594 153.15625 299.027344 153.273438 299.027344 C 153.390625 299.027344 153.484375 298.933594 153.484375 298.816406 Z M 153.484375 298.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.507812 297.378906 C 152.507812 297.261719 152.414062 297.167969 152.296875 297.167969 C 152.179688 297.167969 152.085938 297.261719 152.085938 297.378906 C 152.085938 297.496094 152.179688 297.589844 152.296875 297.589844 C 152.414062 297.589844 152.507812 297.496094 152.507812 297.378906 Z M 152.507812 297.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.574219 298.964844 C 153.574219 298.847656 153.480469 298.753906 153.363281 298.753906 C 153.246094 298.753906 153.152344 298.847656 153.152344 298.964844 C 153.152344 299.082031 153.246094 299.175781 153.363281 299.175781 C 153.480469 299.175781 153.574219 299.082031 153.574219 298.964844 Z M 153.574219 298.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.175781 300.160156 C 154.175781 300.042969 154.082031 299.949219 153.964844 299.949219 C 153.847656 299.949219 153.753906 300.042969 153.753906 300.160156 C 153.753906 300.277344 153.847656 300.371094 153.964844 300.371094 C 154.082031 300.371094 154.175781 300.277344 154.175781 300.160156 Z M 154.175781 300.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.503906 299.40625 C 155.503906 299.289062 155.410156 299.195312 155.292969 299.195312 C 155.175781 299.195312 155.082031 299.289062 155.082031 299.40625 C 155.082031 299.523438 155.175781 299.617188 155.292969 299.617188 C 155.410156 299.617188 155.503906 299.523438 155.503906 299.40625 Z M 155.503906 299.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.417969 298.539062 C 152.417969 298.421875 152.324219 298.328125 152.207031 298.328125 C 152.089844 298.328125 151.996094 298.421875 151.996094 298.539062 C 151.996094 298.65625 152.089844 298.75 152.207031 298.75 C 152.324219 298.75 152.417969 298.65625 152.417969 298.539062 Z M 152.417969 298.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.46875 297.875 C 153.46875 297.757812 153.375 297.664062 153.257812 297.664062 C 153.140625 297.664062 153.046875 297.757812 153.046875 297.875 C 153.046875 297.992188 153.140625 298.085938 153.257812 298.085938 C 153.375 298.085938 153.46875 297.992188 153.46875 297.875 Z M 153.46875 297.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.902344 299.359375 C 152.902344 299.242188 152.808594 299.148438 152.691406 299.148438 C 152.574219 299.148438 152.480469 299.242188 152.480469 299.359375 C 152.480469 299.476562 152.574219 299.570312 152.691406 299.570312 C 152.808594 299.570312 152.902344 299.476562 152.902344 299.359375 Z M 152.902344 299.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.964844 296.792969 C 153.964844 296.675781 153.871094 296.582031 153.753906 296.582031 C 153.636719 296.582031 153.542969 296.675781 153.542969 296.792969 C 153.542969 296.910156 153.636719 297.003906 153.753906 297.003906 C 153.871094 297.003906 153.964844 296.910156 153.964844 296.792969 Z M 153.964844 296.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.878906 298.675781 C 154.878906 298.558594 154.785156 298.464844 154.667969 298.464844 C 154.550781 298.464844 154.457031 298.558594 154.457031 298.675781 C 154.457031 298.792969 154.550781 298.886719 154.667969 298.886719 C 154.785156 298.886719 154.878906 298.792969 154.878906 298.675781 Z M 154.878906 298.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.734375 294.652344 C 153.734375 294.535156 153.640625 294.441406 153.523438 294.441406 C 153.40625 294.441406 153.3125 294.535156 153.3125 294.652344 C 153.3125 294.769531 153.40625 294.863281 153.523438 294.863281 C 153.640625 294.863281 153.734375 294.769531 153.734375 294.652344 Z M 153.734375 294.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.734375 293.640625 C 156.734375 293.523438 156.640625 293.429688 156.523438 293.429688 C 156.40625 293.429688 156.3125 293.523438 156.3125 293.640625 C 156.3125 293.757812 156.40625 293.851562 156.523438 293.851562 C 156.640625 293.851562 156.734375 293.757812 156.734375 293.640625 Z M 156.734375 293.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.492188 290.082031 C 154.492188 289.964844 154.398438 289.871094 154.28125 289.871094 C 154.164062 289.871094 154.070312 289.964844 154.070312 290.082031 C 154.070312 290.199219 154.164062 290.292969 154.28125 290.292969 C 154.398438 290.292969 154.492188 290.199219 154.492188 290.082031 Z M 154.492188 290.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.675781 289.84375 C 153.675781 289.726562 153.582031 289.632812 153.464844 289.632812 C 153.347656 289.632812 153.253906 289.726562 153.253906 289.84375 C 153.253906 289.960938 153.347656 290.054688 153.464844 290.054688 C 153.582031 290.054688 153.675781 289.960938 153.675781 289.84375 Z M 153.675781 289.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.457031 292.5 C 155.457031 292.382812 155.363281 292.289062 155.246094 292.289062 C 155.128906 292.289062 155.035156 292.382812 155.035156 292.5 C 155.035156 292.617188 155.128906 292.710938 155.246094 292.710938 C 155.363281 292.710938 155.457031 292.617188 155.457031 292.5 Z M 155.457031 292.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.273438 288.4375 C 156.273438 288.320312 156.179688 288.226562 156.0625 288.226562 C 155.945312 288.226562 155.851562 288.320312 155.851562 288.4375 C 155.851562 288.554688 155.945312 288.648438 156.0625 288.648438 C 156.179688 288.648438 156.273438 288.554688 156.273438 288.4375 Z M 156.273438 288.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.78125 290.359375 C 156.78125 290.242188 156.6875 290.148438 156.570312 290.148438 C 156.453125 290.148438 156.359375 290.242188 156.359375 290.359375 C 156.359375 290.476562 156.453125 290.570312 156.570312 290.570312 C 156.6875 290.570312 156.78125 290.476562 156.78125 290.359375 Z M 156.78125 290.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.171875 290.316406 C 159.171875 290.199219 159.078125 290.105469 158.960938 290.105469 C 158.84375 290.105469 158.75 290.199219 158.75 290.316406 C 158.75 290.433594 158.84375 290.527344 158.960938 290.527344 C 159.078125 290.527344 159.171875 290.433594 159.171875 290.316406 Z M 159.171875 290.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.800781 290.53125 C 160.800781 290.414062 160.707031 290.320312 160.589844 290.320312 C 160.472656 290.320312 160.378906 290.414062 160.378906 290.53125 C 160.378906 290.648438 160.472656 290.742188 160.589844 290.742188 C 160.707031 290.742188 160.800781 290.648438 160.800781 290.53125 Z M 160.800781 290.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.035156 285.4375 C 158.035156 285.320312 157.941406 285.226562 157.824219 285.226562 C 157.707031 285.226562 157.613281 285.320312 157.613281 285.4375 C 157.613281 285.554688 157.707031 285.648438 157.824219 285.648438 C 157.941406 285.648438 158.035156 285.554688 158.035156 285.4375 Z M 158.035156 285.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.527344 284.925781 C 156.527344 284.808594 156.433594 284.714844 156.316406 284.714844 C 156.199219 284.714844 156.105469 284.808594 156.105469 284.925781 C 156.105469 285.042969 156.199219 285.136719 156.316406 285.136719 C 156.433594 285.136719 156.527344 285.042969 156.527344 284.925781 Z M 156.527344 284.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.136719 280.972656 C 152.136719 280.855469 152.042969 280.761719 151.925781 280.761719 C 151.808594 280.761719 151.714844 280.855469 151.714844 280.972656 C 151.714844 281.089844 151.808594 281.183594 151.925781 281.183594 C 152.042969 281.183594 152.136719 281.089844 152.136719 280.972656 Z M 152.136719 280.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.28125 285.636719 C 153.28125 285.519531 153.1875 285.425781 153.070312 285.425781 C 152.953125 285.425781 152.859375 285.519531 152.859375 285.636719 C 152.859375 285.753906 152.953125 285.847656 153.070312 285.847656 C 153.1875 285.847656 153.28125 285.753906 153.28125 285.636719 Z M 153.28125 285.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.488281 282.34375 C 153.488281 282.226562 153.394531 282.132812 153.277344 282.132812 C 153.160156 282.132812 153.066406 282.226562 153.066406 282.34375 C 153.066406 282.460938 153.160156 282.554688 153.277344 282.554688 C 153.394531 282.554688 153.488281 282.460938 153.488281 282.34375 Z M 153.488281 282.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.507812 284.746094 C 155.507812 284.628906 155.414062 284.535156 155.296875 284.535156 C 155.179688 284.535156 155.085938 284.628906 155.085938 284.746094 C 155.085938 284.863281 155.179688 284.957031 155.296875 284.957031 C 155.414062 284.957031 155.507812 284.863281 155.507812 284.746094 Z M 155.507812 284.746094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.949219 284.101562 C 156.949219 283.984375 156.855469 283.890625 156.738281 283.890625 C 156.621094 283.890625 156.527344 283.984375 156.527344 284.101562 C 156.527344 284.21875 156.621094 284.3125 156.738281 284.3125 C 156.855469 284.3125 156.949219 284.21875 156.949219 284.101562 Z M 156.949219 284.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.851562 283.648438 C 153.851562 283.53125 153.757812 283.4375 153.640625 283.4375 C 153.523438 283.4375 153.429688 283.53125 153.429688 283.648438 C 153.429688 283.765625 153.523438 283.859375 153.640625 283.859375 C 153.757812 283.859375 153.851562 283.765625 153.851562 283.648438 Z M 153.851562 283.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.441406 287.152344 C 152.441406 287.035156 152.347656 286.941406 152.230469 286.941406 C 152.113281 286.941406 152.019531 287.035156 152.019531 287.152344 C 152.019531 287.269531 152.113281 287.363281 152.230469 287.363281 C 152.347656 287.363281 152.441406 287.269531 152.441406 287.152344 Z M 152.441406 287.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.113281 287.546875 C 154.113281 287.429688 154.019531 287.335938 153.902344 287.335938 C 153.785156 287.335938 153.691406 287.429688 153.691406 287.546875 C 153.691406 287.664062 153.785156 287.757812 153.902344 287.757812 C 154.019531 287.757812 154.113281 287.664062 154.113281 287.546875 Z M 154.113281 287.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.804688 289.15625 C 154.804688 289.039062 154.710938 288.945312 154.59375 288.945312 C 154.476562 288.945312 154.382812 289.039062 154.382812 289.15625 C 154.382812 289.273438 154.476562 289.367188 154.59375 289.367188 C 154.710938 289.367188 154.804688 289.273438 154.804688 289.15625 Z M 154.804688 289.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.402344 289.164062 C 157.402344 289.046875 157.308594 288.953125 157.191406 288.953125 C 157.074219 288.953125 156.980469 289.046875 156.980469 289.164062 C 156.980469 289.28125 157.074219 289.375 157.191406 289.375 C 157.308594 289.375 157.402344 289.28125 157.402344 289.164062 Z M 157.402344 289.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.5625 287.75 C 155.5625 287.632812 155.46875 287.539062 155.351562 287.539062 C 155.234375 287.539062 155.140625 287.632812 155.140625 287.75 C 155.140625 287.867188 155.234375 287.960938 155.351562 287.960938 C 155.46875 287.960938 155.5625 287.867188 155.5625 287.75 Z M 155.5625 287.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.625 287.125 C 152.625 287.007812 152.53125 286.914062 152.414062 286.914062 C 152.296875 286.914062 152.203125 287.007812 152.203125 287.125 C 152.203125 287.242188 152.296875 287.335938 152.414062 287.335938 C 152.53125 287.335938 152.625 287.242188 152.625 287.125 Z M 152.625 287.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.355469 292.101562 C 151.355469 291.984375 151.261719 291.890625 151.144531 291.890625 C 151.027344 291.890625 150.933594 291.984375 150.933594 292.101562 C 150.933594 292.21875 151.027344 292.3125 151.144531 292.3125 C 151.261719 292.3125 151.355469 292.21875 151.355469 292.101562 Z M 151.355469 292.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.339844 289.945312 C 149.339844 289.828125 149.246094 289.734375 149.128906 289.734375 C 149.011719 289.734375 148.917969 289.828125 148.917969 289.945312 C 148.917969 290.0625 149.011719 290.15625 149.128906 290.15625 C 149.246094 290.15625 149.339844 290.0625 149.339844 289.945312 Z M 149.339844 289.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.695312 290.921875 C 147.695312 290.804688 147.601562 290.710938 147.484375 290.710938 C 147.367188 290.710938 147.273438 290.804688 147.273438 290.921875 C 147.273438 291.039062 147.367188 291.132812 147.484375 291.132812 C 147.601562 291.132812 147.695312 291.039062 147.695312 290.921875 Z M 147.695312 290.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.390625 290.878906 C 147.390625 290.761719 147.296875 290.667969 147.179688 290.667969 C 147.0625 290.667969 146.96875 290.761719 146.96875 290.878906 C 146.96875 290.996094 147.0625 291.089844 147.179688 291.089844 C 147.296875 291.089844 147.390625 290.996094 147.390625 290.878906 Z M 147.390625 290.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.960938 290.777344 C 142.960938 290.660156 142.867188 290.566406 142.75 290.566406 C 142.632812 290.566406 142.539062 290.660156 142.539062 290.777344 C 142.539062 290.894531 142.632812 290.988281 142.75 290.988281 C 142.867188 290.988281 142.960938 290.894531 142.960938 290.777344 Z M 142.960938 290.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.808594 289.671875 C 141.808594 289.554688 141.714844 289.460938 141.597656 289.460938 C 141.480469 289.460938 141.386719 289.554688 141.386719 289.671875 C 141.386719 289.789062 141.480469 289.882812 141.597656 289.882812 C 141.714844 289.882812 141.808594 289.789062 141.808594 289.671875 Z M 141.808594 289.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.53125 289.121094 C 142.53125 289.003906 142.4375 288.910156 142.320312 288.910156 C 142.203125 288.910156 142.109375 289.003906 142.109375 289.121094 C 142.109375 289.238281 142.203125 289.332031 142.320312 289.332031 C 142.4375 289.332031 142.53125 289.238281 142.53125 289.121094 Z M 142.53125 289.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.855469 288.21875 C 144.855469 288.101562 144.761719 288.007812 144.644531 288.007812 C 144.527344 288.007812 144.433594 288.101562 144.433594 288.21875 C 144.433594 288.335938 144.527344 288.429688 144.644531 288.429688 C 144.761719 288.429688 144.855469 288.335938 144.855469 288.21875 Z M 144.855469 288.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.546875 290.808594 C 141.546875 290.691406 141.453125 290.597656 141.335938 290.597656 C 141.21875 290.597656 141.125 290.691406 141.125 290.808594 C 141.125 290.925781 141.21875 291.019531 141.335938 291.019531 C 141.453125 291.019531 141.546875 290.925781 141.546875 290.808594 Z M 141.546875 290.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.433594 291.71875 C 143.433594 291.601562 143.339844 291.507812 143.222656 291.507812 C 143.105469 291.507812 143.011719 291.601562 143.011719 291.71875 C 143.011719 291.835938 143.105469 291.929688 143.222656 291.929688 C 143.339844 291.929688 143.433594 291.835938 143.433594 291.71875 Z M 143.433594 291.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.429688 293 C 142.429688 292.882812 142.335938 292.789062 142.21875 292.789062 C 142.101562 292.789062 142.007812 292.882812 142.007812 293 C 142.007812 293.117188 142.101562 293.210938 142.21875 293.210938 C 142.335938 293.210938 142.429688 293.117188 142.429688 293 Z M 142.429688 293 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.453125 291.933594 C 141.453125 291.816406 141.359375 291.722656 141.242188 291.722656 C 141.125 291.722656 141.03125 291.816406 141.03125 291.933594 C 141.03125 292.050781 141.125 292.144531 141.242188 292.144531 C 141.359375 292.144531 141.453125 292.050781 141.453125 291.933594 Z M 141.453125 291.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.671875 290.089844 C 140.671875 289.972656 140.578125 289.878906 140.460938 289.878906 C 140.34375 289.878906 140.25 289.972656 140.25 290.089844 C 140.25 290.207031 140.34375 290.300781 140.460938 290.300781 C 140.578125 290.300781 140.671875 290.207031 140.671875 290.089844 Z M 140.671875 290.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.027344 291.785156 C 140.027344 291.667969 139.933594 291.574219 139.816406 291.574219 C 139.699219 291.574219 139.605469 291.667969 139.605469 291.785156 C 139.605469 291.902344 139.699219 291.996094 139.816406 291.996094 C 139.933594 291.996094 140.027344 291.902344 140.027344 291.785156 Z M 140.027344 291.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.8125 294.113281 C 140.8125 293.996094 140.71875 293.902344 140.601562 293.902344 C 140.484375 293.902344 140.390625 293.996094 140.390625 294.113281 C 140.390625 294.230469 140.484375 294.324219 140.601562 294.324219 C 140.71875 294.324219 140.8125 294.230469 140.8125 294.113281 Z M 140.8125 294.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.3125 296.976562 C 141.3125 296.859375 141.21875 296.765625 141.101562 296.765625 C 140.984375 296.765625 140.890625 296.859375 140.890625 296.976562 C 140.890625 297.09375 140.984375 297.1875 141.101562 297.1875 C 141.21875 297.1875 141.3125 297.09375 141.3125 296.976562 Z M 141.3125 296.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.925781 297.660156 C 143.925781 297.542969 143.832031 297.449219 143.714844 297.449219 C 143.597656 297.449219 143.503906 297.542969 143.503906 297.660156 C 143.503906 297.777344 143.597656 297.871094 143.714844 297.871094 C 143.832031 297.871094 143.925781 297.777344 143.925781 297.660156 Z M 143.925781 297.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.425781 299.6875 C 143.425781 299.570312 143.332031 299.476562 143.214844 299.476562 C 143.097656 299.476562 143.003906 299.570312 143.003906 299.6875 C 143.003906 299.804688 143.097656 299.898438 143.214844 299.898438 C 143.332031 299.898438 143.425781 299.804688 143.425781 299.6875 Z M 143.425781 299.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.355469 298.378906 C 141.355469 298.261719 141.261719 298.167969 141.144531 298.167969 C 141.027344 298.167969 140.933594 298.261719 140.933594 298.378906 C 140.933594 298.496094 141.027344 298.589844 141.144531 298.589844 C 141.261719 298.589844 141.355469 298.496094 141.355469 298.378906 Z M 141.355469 298.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.132812 294.230469 C 140.132812 294.113281 140.039062 294.019531 139.921875 294.019531 C 139.804688 294.019531 139.710938 294.113281 139.710938 294.230469 C 139.710938 294.347656 139.804688 294.441406 139.921875 294.441406 C 140.039062 294.441406 140.132812 294.347656 140.132812 294.230469 Z M 140.132812 294.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.527344 291.121094 C 142.527344 291.003906 142.433594 290.910156 142.316406 290.910156 C 142.199219 290.910156 142.105469 291.003906 142.105469 291.121094 C 142.105469 291.238281 142.199219 291.332031 142.316406 291.332031 C 142.433594 291.332031 142.527344 291.238281 142.527344 291.121094 Z M 142.527344 291.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.304688 291.089844 C 142.304688 290.972656 142.210938 290.878906 142.09375 290.878906 C 141.976562 290.878906 141.882812 290.972656 141.882812 291.089844 C 141.882812 291.207031 141.976562 291.300781 142.09375 291.300781 C 142.210938 291.300781 142.304688 291.207031 142.304688 291.089844 Z M 142.304688 291.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.457031 286.40625 C 142.457031 286.289062 142.363281 286.195312 142.246094 286.195312 C 142.128906 286.195312 142.035156 286.289062 142.035156 286.40625 C 142.035156 286.523438 142.128906 286.617188 142.246094 286.617188 C 142.363281 286.617188 142.457031 286.523438 142.457031 286.40625 Z M 142.457031 286.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.589844 283.160156 C 138.589844 283.042969 138.496094 282.949219 138.378906 282.949219 C 138.261719 282.949219 138.167969 283.042969 138.167969 283.160156 C 138.167969 283.277344 138.261719 283.371094 138.378906 283.371094 C 138.496094 283.371094 138.589844 283.277344 138.589844 283.160156 Z M 138.589844 283.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.054688 282.074219 C 137.054688 281.957031 136.960938 281.863281 136.84375 281.863281 C 136.726562 281.863281 136.632812 281.957031 136.632812 282.074219 C 136.632812 282.191406 136.726562 282.285156 136.84375 282.285156 C 136.960938 282.285156 137.054688 282.191406 137.054688 282.074219 Z M 137.054688 282.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.3125 280.1875 C 135.3125 280.070312 135.21875 279.976562 135.101562 279.976562 C 134.984375 279.976562 134.890625 280.070312 134.890625 280.1875 C 134.890625 280.304688 134.984375 280.398438 135.101562 280.398438 C 135.21875 280.398438 135.3125 280.304688 135.3125 280.1875 Z M 135.3125 280.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.339844 278.164062 C 132.339844 278.046875 132.246094 277.953125 132.128906 277.953125 C 132.011719 277.953125 131.917969 278.046875 131.917969 278.164062 C 131.917969 278.28125 132.011719 278.375 132.128906 278.375 C 132.246094 278.375 132.339844 278.28125 132.339844 278.164062 Z M 132.339844 278.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 131.785156 280.609375 C 131.785156 280.492188 131.691406 280.398438 131.574219 280.398438 C 131.457031 280.398438 131.363281 280.492188 131.363281 280.609375 C 131.363281 280.726562 131.457031 280.820312 131.574219 280.820312 C 131.691406 280.820312 131.785156 280.726562 131.785156 280.609375 Z M 131.785156 280.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 130.4375 278.429688 C 130.4375 278.3125 130.34375 278.21875 130.226562 278.21875 C 130.109375 278.21875 130.015625 278.3125 130.015625 278.429688 C 130.015625 278.546875 130.109375 278.640625 130.226562 278.640625 C 130.34375 278.640625 130.4375 278.546875 130.4375 278.429688 Z M 130.4375 278.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.84375 278.058594 C 132.84375 277.941406 132.75 277.847656 132.632812 277.847656 C 132.515625 277.847656 132.421875 277.941406 132.421875 278.058594 C 132.421875 278.175781 132.515625 278.269531 132.632812 278.269531 C 132.75 278.269531 132.84375 278.175781 132.84375 278.058594 Z M 132.84375 278.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 134.585938 276.414062 C 134.585938 276.296875 134.492188 276.203125 134.375 276.203125 C 134.257812 276.203125 134.164062 276.296875 134.164062 276.414062 C 134.164062 276.53125 134.257812 276.625 134.375 276.625 C 134.492188 276.625 134.585938 276.53125 134.585938 276.414062 Z M 134.585938 276.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.667969 277.269531 C 137.667969 277.152344 137.574219 277.058594 137.457031 277.058594 C 137.339844 277.058594 137.246094 277.152344 137.246094 277.269531 C 137.246094 277.386719 137.339844 277.480469 137.457031 277.480469 C 137.574219 277.480469 137.667969 277.386719 137.667969 277.269531 Z M 137.667969 277.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.582031 279.179688 C 137.582031 279.0625 137.488281 278.96875 137.371094 278.96875 C 137.253906 278.96875 137.160156 279.0625 137.160156 279.179688 C 137.160156 279.296875 137.253906 279.390625 137.371094 279.390625 C 137.488281 279.390625 137.582031 279.296875 137.582031 279.179688 Z M 137.582031 279.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.074219 278.980469 C 138.074219 278.863281 137.980469 278.769531 137.863281 278.769531 C 137.746094 278.769531 137.652344 278.863281 137.652344 278.980469 C 137.652344 279.097656 137.746094 279.191406 137.863281 279.191406 C 137.980469 279.191406 138.074219 279.097656 138.074219 278.980469 Z M 138.074219 278.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.152344 280.515625 C 138.152344 280.398438 138.058594 280.304688 137.941406 280.304688 C 137.824219 280.304688 137.730469 280.398438 137.730469 280.515625 C 137.730469 280.632812 137.824219 280.726562 137.941406 280.726562 C 138.058594 280.726562 138.152344 280.632812 138.152344 280.515625 Z M 138.152344 280.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.59375 279.015625 C 137.59375 278.898438 137.5 278.804688 137.382812 278.804688 C 137.265625 278.804688 137.171875 278.898438 137.171875 279.015625 C 137.171875 279.132812 137.265625 279.226562 137.382812 279.226562 C 137.5 279.226562 137.59375 279.132812 137.59375 279.015625 Z M 137.59375 279.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.605469 282.492188 C 137.605469 282.375 137.511719 282.28125 137.394531 282.28125 C 137.277344 282.28125 137.183594 282.375 137.183594 282.492188 C 137.183594 282.609375 137.277344 282.703125 137.394531 282.703125 C 137.511719 282.703125 137.605469 282.609375 137.605469 282.492188 Z M 137.605469 282.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.050781 283.824219 C 136.050781 283.707031 135.957031 283.613281 135.839844 283.613281 C 135.722656 283.613281 135.628906 283.707031 135.628906 283.824219 C 135.628906 283.941406 135.722656 284.035156 135.839844 284.035156 C 135.957031 284.035156 136.050781 283.941406 136.050781 283.824219 Z M 136.050781 283.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.289062 283.984375 C 138.289062 283.867188 138.195312 283.773438 138.078125 283.773438 C 137.960938 283.773438 137.867188 283.867188 137.867188 283.984375 C 137.867188 284.101562 137.960938 284.195312 138.078125 284.195312 C 138.195312 284.195312 138.289062 284.101562 138.289062 283.984375 Z M 138.289062 283.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.488281 284.898438 C 138.488281 284.78125 138.394531 284.6875 138.277344 284.6875 C 138.160156 284.6875 138.066406 284.78125 138.066406 284.898438 C 138.066406 285.015625 138.160156 285.109375 138.277344 285.109375 C 138.394531 285.109375 138.488281 285.015625 138.488281 284.898438 Z M 138.488281 284.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.847656 285.992188 C 137.847656 285.875 137.753906 285.78125 137.636719 285.78125 C 137.519531 285.78125 137.425781 285.875 137.425781 285.992188 C 137.425781 286.109375 137.519531 286.203125 137.636719 286.203125 C 137.753906 286.203125 137.847656 286.109375 137.847656 285.992188 Z M 137.847656 285.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 134.941406 285.113281 C 134.941406 284.996094 134.847656 284.902344 134.730469 284.902344 C 134.613281 284.902344 134.519531 284.996094 134.519531 285.113281 C 134.519531 285.230469 134.613281 285.324219 134.730469 285.324219 C 134.847656 285.324219 134.941406 285.230469 134.941406 285.113281 Z M 134.941406 285.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 134.667969 282.308594 C 134.667969 282.191406 134.574219 282.097656 134.457031 282.097656 C 134.339844 282.097656 134.246094 282.191406 134.246094 282.308594 C 134.246094 282.425781 134.339844 282.519531 134.457031 282.519531 C 134.574219 282.519531 134.667969 282.425781 134.667969 282.308594 Z M 134.667969 282.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.058594 281.945312 C 139.058594 281.828125 138.964844 281.734375 138.847656 281.734375 C 138.730469 281.734375 138.636719 281.828125 138.636719 281.945312 C 138.636719 282.0625 138.730469 282.15625 138.847656 282.15625 C 138.964844 282.15625 139.058594 282.0625 139.058594 281.945312 Z M 139.058594 281.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.332031 284.046875 C 138.332031 283.929688 138.238281 283.835938 138.121094 283.835938 C 138.003906 283.835938 137.910156 283.929688 137.910156 284.046875 C 137.910156 284.164062 138.003906 284.257812 138.121094 284.257812 C 138.238281 284.257812 138.332031 284.164062 138.332031 284.046875 Z M 138.332031 284.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.140625 284.726562 C 135.140625 284.609375 135.046875 284.515625 134.929688 284.515625 C 134.8125 284.515625 134.71875 284.609375 134.71875 284.726562 C 134.71875 284.84375 134.8125 284.9375 134.929688 284.9375 C 135.046875 284.9375 135.140625 284.84375 135.140625 284.726562 Z M 135.140625 284.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.222656 282.964844 C 136.222656 282.847656 136.128906 282.753906 136.011719 282.753906 C 135.894531 282.753906 135.800781 282.847656 135.800781 282.964844 C 135.800781 283.082031 135.894531 283.175781 136.011719 283.175781 C 136.128906 283.175781 136.222656 283.082031 136.222656 282.964844 Z M 136.222656 282.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.816406 284.003906 C 132.816406 283.886719 132.722656 283.792969 132.605469 283.792969 C 132.488281 283.792969 132.394531 283.886719 132.394531 284.003906 C 132.394531 284.121094 132.488281 284.214844 132.605469 284.214844 C 132.722656 284.214844 132.816406 284.121094 132.816406 284.003906 Z M 132.816406 284.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.617188 286.882812 C 129.617188 286.765625 129.523438 286.671875 129.40625 286.671875 C 129.289062 286.671875 129.195312 286.765625 129.195312 286.882812 C 129.195312 287 129.289062 287.09375 129.40625 287.09375 C 129.523438 287.09375 129.617188 287 129.617188 286.882812 Z M 129.617188 286.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.125 285.15625 C 129.125 285.039062 129.03125 284.945312 128.914062 284.945312 C 128.796875 284.945312 128.703125 285.039062 128.703125 285.15625 C 128.703125 285.273438 128.796875 285.367188 128.914062 285.367188 C 129.03125 285.367188 129.125 285.273438 129.125 285.15625 Z M 129.125 285.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.546875 285.070312 C 127.546875 284.953125 127.453125 284.859375 127.335938 284.859375 C 127.21875 284.859375 127.125 284.953125 127.125 285.070312 C 127.125 285.1875 127.21875 285.28125 127.335938 285.28125 C 127.453125 285.28125 127.546875 285.1875 127.546875 285.070312 Z M 127.546875 285.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.503906 283.828125 C 125.503906 283.710938 125.410156 283.617188 125.292969 283.617188 C 125.175781 283.617188 125.082031 283.710938 125.082031 283.828125 C 125.082031 283.945312 125.175781 284.039062 125.292969 284.039062 C 125.410156 284.039062 125.503906 283.945312 125.503906 283.828125 Z M 125.503906 283.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 130.296875 281.175781 C 130.296875 281.058594 130.203125 280.964844 130.085938 280.964844 C 129.96875 280.964844 129.875 281.058594 129.875 281.175781 C 129.875 281.292969 129.96875 281.386719 130.085938 281.386719 C 130.203125 281.386719 130.296875 281.292969 130.296875 281.175781 Z M 130.296875 281.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.554688 279.117188 C 132.554688 279 132.460938 278.90625 132.34375 278.90625 C 132.226562 278.90625 132.132812 279 132.132812 279.117188 C 132.132812 279.234375 132.226562 279.328125 132.34375 279.328125 C 132.460938 279.328125 132.554688 279.234375 132.554688 279.117188 Z M 132.554688 279.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.789062 280.183594 C 129.789062 280.066406 129.695312 279.972656 129.578125 279.972656 C 129.460938 279.972656 129.367188 280.066406 129.367188 280.183594 C 129.367188 280.300781 129.460938 280.394531 129.578125 280.394531 C 129.695312 280.394531 129.789062 280.300781 129.789062 280.183594 Z M 129.789062 280.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.257812 283.660156 C 128.257812 283.542969 128.164062 283.449219 128.046875 283.449219 C 127.929688 283.449219 127.835938 283.542969 127.835938 283.660156 C 127.835938 283.777344 127.929688 283.871094 128.046875 283.871094 C 128.164062 283.871094 128.257812 283.777344 128.257812 283.660156 Z M 128.257812 283.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.410156 287.085938 C 129.410156 286.96875 129.316406 286.875 129.199219 286.875 C 129.082031 286.875 128.988281 286.96875 128.988281 287.085938 C 128.988281 287.203125 129.082031 287.296875 129.199219 287.296875 C 129.316406 287.296875 129.410156 287.203125 129.410156 287.085938 Z M 129.410156 287.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 133.1875 286.9375 C 133.1875 286.820312 133.09375 286.726562 132.976562 286.726562 C 132.859375 286.726562 132.765625 286.820312 132.765625 286.9375 C 132.765625 287.054688 132.859375 287.148438 132.976562 287.148438 C 133.09375 287.148438 133.1875 287.054688 133.1875 286.9375 Z M 133.1875 286.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.046875 284.738281 C 132.046875 284.621094 131.953125 284.527344 131.835938 284.527344 C 131.71875 284.527344 131.625 284.621094 131.625 284.738281 C 131.625 284.855469 131.71875 284.949219 131.835938 284.949219 C 131.953125 284.949219 132.046875 284.855469 132.046875 284.738281 Z M 132.046875 284.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 131.0625 286.636719 C 131.0625 286.519531 130.96875 286.425781 130.851562 286.425781 C 130.734375 286.425781 130.640625 286.519531 130.640625 286.636719 C 130.640625 286.753906 130.734375 286.847656 130.851562 286.847656 C 130.96875 286.847656 131.0625 286.753906 131.0625 286.636719 Z M 131.0625 286.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.03125 286.535156 C 129.03125 286.417969 128.9375 286.324219 128.820312 286.324219 C 128.703125 286.324219 128.609375 286.417969 128.609375 286.535156 C 128.609375 286.652344 128.703125 286.746094 128.820312 286.746094 C 128.9375 286.746094 129.03125 286.652344 129.03125 286.535156 Z M 129.03125 286.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 130.40625 284.652344 C 130.40625 284.535156 130.3125 284.441406 130.195312 284.441406 C 130.078125 284.441406 129.984375 284.535156 129.984375 284.652344 C 129.984375 284.769531 130.078125 284.863281 130.195312 284.863281 C 130.3125 284.863281 130.40625 284.769531 130.40625 284.652344 Z M 130.40625 284.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 130.851562 289.125 C 130.851562 289.007812 130.757812 288.914062 130.640625 288.914062 C 130.523438 288.914062 130.429688 289.007812 130.429688 289.125 C 130.429688 289.242188 130.523438 289.335938 130.640625 289.335938 C 130.757812 289.335938 130.851562 289.242188 130.851562 289.125 Z M 130.851562 289.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 130.035156 288.722656 C 130.035156 288.605469 129.941406 288.511719 129.824219 288.511719 C 129.707031 288.511719 129.613281 288.605469 129.613281 288.722656 C 129.613281 288.839844 129.707031 288.933594 129.824219 288.933594 C 129.941406 288.933594 130.035156 288.839844 130.035156 288.722656 Z M 130.035156 288.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.753906 289.121094 C 129.753906 289.003906 129.660156 288.910156 129.542969 288.910156 C 129.425781 288.910156 129.332031 289.003906 129.332031 289.121094 C 129.332031 289.238281 129.425781 289.332031 129.542969 289.332031 C 129.660156 289.332031 129.753906 289.238281 129.753906 289.121094 Z M 129.753906 289.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 131.292969 292.195312 C 131.292969 292.078125 131.199219 291.984375 131.082031 291.984375 C 130.964844 291.984375 130.871094 292.078125 130.871094 292.195312 C 130.871094 292.3125 130.964844 292.40625 131.082031 292.40625 C 131.199219 292.40625 131.292969 292.3125 131.292969 292.195312 Z M 131.292969 292.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 133.46875 291.246094 C 133.46875 291.128906 133.375 291.035156 133.257812 291.035156 C 133.140625 291.035156 133.046875 291.128906 133.046875 291.246094 C 133.046875 291.363281 133.140625 291.457031 133.257812 291.457031 C 133.375 291.457031 133.46875 291.363281 133.46875 291.246094 Z M 133.46875 291.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.488281 296.035156 C 132.488281 295.917969 132.394531 295.824219 132.277344 295.824219 C 132.160156 295.824219 132.066406 295.917969 132.066406 296.035156 C 132.066406 296.152344 132.160156 296.246094 132.277344 296.246094 C 132.394531 296.246094 132.488281 296.152344 132.488281 296.035156 Z M 132.488281 296.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.066406 298.355469 C 132.066406 298.238281 131.972656 298.144531 131.855469 298.144531 C 131.738281 298.144531 131.644531 298.238281 131.644531 298.355469 C 131.644531 298.472656 131.738281 298.566406 131.855469 298.566406 C 131.972656 298.566406 132.066406 298.472656 132.066406 298.355469 Z M 132.066406 298.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.832031 300.742188 C 135.832031 300.625 135.738281 300.53125 135.621094 300.53125 C 135.503906 300.53125 135.410156 300.625 135.410156 300.742188 C 135.410156 300.859375 135.503906 300.953125 135.621094 300.953125 C 135.738281 300.953125 135.832031 300.859375 135.832031 300.742188 Z M 135.832031 300.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 134.414062 299.902344 C 134.414062 299.785156 134.320312 299.691406 134.203125 299.691406 C 134.085938 299.691406 133.992188 299.785156 133.992188 299.902344 C 133.992188 300.019531 134.085938 300.113281 134.203125 300.113281 C 134.320312 300.113281 134.414062 300.019531 134.414062 299.902344 Z M 134.414062 299.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.183594 301.367188 C 137.183594 301.25 137.089844 301.15625 136.972656 301.15625 C 136.855469 301.15625 136.761719 301.25 136.761719 301.367188 C 136.761719 301.484375 136.855469 301.578125 136.972656 301.578125 C 137.089844 301.578125 137.183594 301.484375 137.183594 301.367188 Z M 137.183594 301.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.835938 300.652344 C 138.835938 300.535156 138.742188 300.441406 138.625 300.441406 C 138.507812 300.441406 138.414062 300.535156 138.414062 300.652344 C 138.414062 300.769531 138.507812 300.863281 138.625 300.863281 C 138.742188 300.863281 138.835938 300.769531 138.835938 300.652344 Z M 138.835938 300.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 134.355469 297.714844 C 134.355469 297.597656 134.261719 297.503906 134.144531 297.503906 C 134.027344 297.503906 133.933594 297.597656 133.933594 297.714844 C 133.933594 297.832031 134.027344 297.925781 134.144531 297.925781 C 134.261719 297.925781 134.355469 297.832031 134.355469 297.714844 Z M 134.355469 297.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.3125 297.660156 C 135.3125 297.542969 135.21875 297.449219 135.101562 297.449219 C 134.984375 297.449219 134.890625 297.542969 134.890625 297.660156 C 134.890625 297.777344 134.984375 297.871094 135.101562 297.871094 C 135.21875 297.871094 135.3125 297.777344 135.3125 297.660156 Z M 135.3125 297.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.371094 299.578125 C 135.371094 299.460938 135.277344 299.367188 135.160156 299.367188 C 135.042969 299.367188 134.949219 299.460938 134.949219 299.578125 C 134.949219 299.695312 135.042969 299.789062 135.160156 299.789062 C 135.277344 299.789062 135.371094 299.695312 135.371094 299.578125 Z M 135.371094 299.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.601562 302.003906 C 135.601562 301.886719 135.507812 301.792969 135.390625 301.792969 C 135.273438 301.792969 135.179688 301.886719 135.179688 302.003906 C 135.179688 302.121094 135.273438 302.214844 135.390625 302.214844 C 135.507812 302.214844 135.601562 302.121094 135.601562 302.003906 Z M 135.601562 302.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.429688 300.980469 C 135.429688 300.863281 135.335938 300.769531 135.21875 300.769531 C 135.101562 300.769531 135.007812 300.863281 135.007812 300.980469 C 135.007812 301.097656 135.101562 301.191406 135.21875 301.191406 C 135.335938 301.191406 135.429688 301.097656 135.429688 300.980469 Z M 135.429688 300.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.386719 300.25 C 137.386719 300.132812 137.292969 300.039062 137.175781 300.039062 C 137.058594 300.039062 136.964844 300.132812 136.964844 300.25 C 136.964844 300.367188 137.058594 300.460938 137.175781 300.460938 C 137.292969 300.460938 137.386719 300.367188 137.386719 300.25 Z M 137.386719 300.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.117188 300.992188 C 139.117188 300.875 139.023438 300.78125 138.90625 300.78125 C 138.789062 300.78125 138.695312 300.875 138.695312 300.992188 C 138.695312 301.109375 138.789062 301.203125 138.90625 301.203125 C 139.023438 301.203125 139.117188 301.109375 139.117188 300.992188 Z M 139.117188 300.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.421875 300.289062 C 140.421875 300.171875 140.328125 300.078125 140.210938 300.078125 C 140.09375 300.078125 140 300.171875 140 300.289062 C 140 300.40625 140.09375 300.5 140.210938 300.5 C 140.328125 300.5 140.421875 300.40625 140.421875 300.289062 Z M 140.421875 300.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.328125 298.1875 C 141.328125 298.070312 141.234375 297.976562 141.117188 297.976562 C 141 297.976562 140.90625 298.070312 140.90625 298.1875 C 140.90625 298.304688 141 298.398438 141.117188 298.398438 C 141.234375 298.398438 141.328125 298.304688 141.328125 298.1875 Z M 141.328125 298.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.574219 301.871094 C 142.574219 301.753906 142.480469 301.660156 142.363281 301.660156 C 142.246094 301.660156 142.152344 301.753906 142.152344 301.871094 C 142.152344 301.988281 142.246094 302.082031 142.363281 302.082031 C 142.480469 302.082031 142.574219 301.988281 142.574219 301.871094 Z M 142.574219 301.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.394531 303.0625 C 143.394531 302.945312 143.300781 302.851562 143.183594 302.851562 C 143.066406 302.851562 142.972656 302.945312 142.972656 303.0625 C 142.972656 303.179688 143.066406 303.273438 143.183594 303.273438 C 143.300781 303.273438 143.394531 303.179688 143.394531 303.0625 Z M 143.394531 303.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.125 301.59375 C 143.125 301.476562 143.03125 301.382812 142.914062 301.382812 C 142.796875 301.382812 142.703125 301.476562 142.703125 301.59375 C 142.703125 301.710938 142.796875 301.804688 142.914062 301.804688 C 143.03125 301.804688 143.125 301.710938 143.125 301.59375 Z M 143.125 301.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.199219 300.945312 C 139.199219 300.828125 139.105469 300.734375 138.988281 300.734375 C 138.871094 300.734375 138.777344 300.828125 138.777344 300.945312 C 138.777344 301.0625 138.871094 301.15625 138.988281 301.15625 C 139.105469 301.15625 139.199219 301.0625 139.199219 300.945312 Z M 139.199219 300.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.5 299.738281 C 140.5 299.621094 140.40625 299.527344 140.289062 299.527344 C 140.171875 299.527344 140.078125 299.621094 140.078125 299.738281 C 140.078125 299.855469 140.171875 299.949219 140.289062 299.949219 C 140.40625 299.949219 140.5 299.855469 140.5 299.738281 Z M 140.5 299.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.707031 297.941406 C 137.707031 297.824219 137.613281 297.730469 137.496094 297.730469 C 137.378906 297.730469 137.285156 297.824219 137.285156 297.941406 C 137.285156 298.058594 137.378906 298.152344 137.496094 298.152344 C 137.613281 298.152344 137.707031 298.058594 137.707031 297.941406 Z M 137.707031 297.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.066406 296.90625 C 137.066406 296.789062 136.972656 296.695312 136.855469 296.695312 C 136.738281 296.695312 136.644531 296.789062 136.644531 296.90625 C 136.644531 297.023438 136.738281 297.117188 136.855469 297.117188 C 136.972656 297.117188 137.066406 297.023438 137.066406 296.90625 Z M 137.066406 296.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.148438 295.65625 C 136.148438 295.539062 136.054688 295.445312 135.9375 295.445312 C 135.820312 295.445312 135.726562 295.539062 135.726562 295.65625 C 135.726562 295.773438 135.820312 295.867188 135.9375 295.867188 C 136.054688 295.867188 136.148438 295.773438 136.148438 295.65625 Z M 136.148438 295.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.773438 294.472656 C 136.773438 294.355469 136.679688 294.261719 136.5625 294.261719 C 136.445312 294.261719 136.351562 294.355469 136.351562 294.472656 C 136.351562 294.589844 136.445312 294.683594 136.5625 294.683594 C 136.679688 294.683594 136.773438 294.589844 136.773438 294.472656 Z M 136.773438 294.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.003906 292.078125 C 135.003906 291.960938 134.910156 291.867188 134.792969 291.867188 C 134.675781 291.867188 134.582031 291.960938 134.582031 292.078125 C 134.582031 292.195312 134.675781 292.289062 134.792969 292.289062 C 134.910156 292.289062 135.003906 292.195312 135.003906 292.078125 Z M 135.003906 292.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 131.867188 290.238281 C 131.867188 290.121094 131.773438 290.027344 131.65625 290.027344 C 131.539062 290.027344 131.445312 290.121094 131.445312 290.238281 C 131.445312 290.355469 131.539062 290.449219 131.65625 290.449219 C 131.773438 290.449219 131.867188 290.355469 131.867188 290.238281 Z M 131.867188 290.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 134.300781 289.707031 C 134.300781 289.589844 134.207031 289.496094 134.089844 289.496094 C 133.972656 289.496094 133.878906 289.589844 133.878906 289.707031 C 133.878906 289.824219 133.972656 289.917969 134.089844 289.917969 C 134.207031 289.917969 134.300781 289.824219 134.300781 289.707031 Z M 134.300781 289.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.769531 290.289062 C 135.769531 290.171875 135.675781 290.078125 135.558594 290.078125 C 135.441406 290.078125 135.347656 290.171875 135.347656 290.289062 C 135.347656 290.40625 135.441406 290.5 135.558594 290.5 C 135.675781 290.5 135.769531 290.40625 135.769531 290.289062 Z M 135.769531 290.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.78125 292.308594 C 138.78125 292.191406 138.6875 292.097656 138.570312 292.097656 C 138.453125 292.097656 138.359375 292.191406 138.359375 292.308594 C 138.359375 292.425781 138.453125 292.519531 138.570312 292.519531 C 138.6875 292.519531 138.78125 292.425781 138.78125 292.308594 Z M 138.78125 292.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.328125 289.230469 C 138.328125 289.113281 138.234375 289.019531 138.117188 289.019531 C 138 289.019531 137.90625 289.113281 137.90625 289.230469 C 137.90625 289.347656 138 289.441406 138.117188 289.441406 C 138.234375 289.441406 138.328125 289.347656 138.328125 289.230469 Z M 138.328125 289.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.09375 287.164062 C 142.09375 287.046875 142 286.953125 141.882812 286.953125 C 141.765625 286.953125 141.671875 287.046875 141.671875 287.164062 C 141.671875 287.28125 141.765625 287.375 141.882812 287.375 C 142 287.375 142.09375 287.28125 142.09375 287.164062 Z M 142.09375 287.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.601562 286.117188 C 142.601562 286 142.507812 285.90625 142.390625 285.90625 C 142.273438 285.90625 142.179688 286 142.179688 286.117188 C 142.179688 286.234375 142.273438 286.328125 142.390625 286.328125 C 142.507812 286.328125 142.601562 286.234375 142.601562 286.117188 Z M 142.601562 286.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.640625 286.667969 C 141.640625 286.550781 141.546875 286.457031 141.429688 286.457031 C 141.3125 286.457031 141.21875 286.550781 141.21875 286.667969 C 141.21875 286.785156 141.3125 286.878906 141.429688 286.878906 C 141.546875 286.878906 141.640625 286.785156 141.640625 286.667969 Z M 141.640625 286.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.808594 288.777344 C 140.808594 288.660156 140.714844 288.566406 140.597656 288.566406 C 140.480469 288.566406 140.386719 288.660156 140.386719 288.777344 C 140.386719 288.894531 140.480469 288.988281 140.597656 288.988281 C 140.714844 288.988281 140.808594 288.894531 140.808594 288.777344 Z M 140.808594 288.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.132812 288.710938 C 144.132812 288.59375 144.039062 288.5 143.921875 288.5 C 143.804688 288.5 143.710938 288.59375 143.710938 288.710938 C 143.710938 288.828125 143.804688 288.921875 143.921875 288.921875 C 144.039062 288.921875 144.132812 288.828125 144.132812 288.710938 Z M 144.132812 288.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.550781 288.859375 C 146.550781 288.742188 146.457031 288.648438 146.339844 288.648438 C 146.222656 288.648438 146.128906 288.742188 146.128906 288.859375 C 146.128906 288.976562 146.222656 289.070312 146.339844 289.070312 C 146.457031 289.070312 146.550781 288.976562 146.550781 288.859375 Z M 146.550781 288.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.515625 289.570312 C 148.515625 289.453125 148.421875 289.359375 148.304688 289.359375 C 148.1875 289.359375 148.09375 289.453125 148.09375 289.570312 C 148.09375 289.6875 148.1875 289.78125 148.304688 289.78125 C 148.421875 289.78125 148.515625 289.6875 148.515625 289.570312 Z M 148.515625 289.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.792969 290.96875 C 146.792969 290.851562 146.699219 290.757812 146.582031 290.757812 C 146.464844 290.757812 146.371094 290.851562 146.371094 290.96875 C 146.371094 291.085938 146.464844 291.179688 146.582031 291.179688 C 146.699219 291.179688 146.792969 291.085938 146.792969 290.96875 Z M 146.792969 290.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.15625 290.671875 C 147.15625 290.554688 147.0625 290.460938 146.945312 290.460938 C 146.828125 290.460938 146.734375 290.554688 146.734375 290.671875 C 146.734375 290.789062 146.828125 290.882812 146.945312 290.882812 C 147.0625 290.882812 147.15625 290.789062 147.15625 290.671875 Z M 147.15625 290.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.84375 292.082031 C 148.84375 291.964844 148.75 291.871094 148.632812 291.871094 C 148.515625 291.871094 148.421875 291.964844 148.421875 292.082031 C 148.421875 292.199219 148.515625 292.292969 148.632812 292.292969 C 148.75 292.292969 148.84375 292.199219 148.84375 292.082031 Z M 148.84375 292.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.367188 290.300781 C 149.367188 290.183594 149.273438 290.089844 149.15625 290.089844 C 149.039062 290.089844 148.945312 290.183594 148.945312 290.300781 C 148.945312 290.417969 149.039062 290.511719 149.15625 290.511719 C 149.273438 290.511719 149.367188 290.417969 149.367188 290.300781 Z M 149.367188 290.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.046875 291.601562 C 148.046875 291.484375 147.953125 291.390625 147.835938 291.390625 C 147.71875 291.390625 147.625 291.484375 147.625 291.601562 C 147.625 291.71875 147.71875 291.8125 147.835938 291.8125 C 147.953125 291.8125 148.046875 291.71875 148.046875 291.601562 Z M 148.046875 291.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.867188 290.78125 C 147.867188 290.664062 147.773438 290.570312 147.65625 290.570312 C 147.539062 290.570312 147.445312 290.664062 147.445312 290.78125 C 147.445312 290.898438 147.539062 290.992188 147.65625 290.992188 C 147.773438 290.992188 147.867188 290.898438 147.867188 290.78125 Z M 147.867188 290.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.058594 289.574219 C 150.058594 289.457031 149.964844 289.363281 149.847656 289.363281 C 149.730469 289.363281 149.636719 289.457031 149.636719 289.574219 C 149.636719 289.691406 149.730469 289.785156 149.847656 289.785156 C 149.964844 289.785156 150.058594 289.691406 150.058594 289.574219 Z M 150.058594 289.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.550781 290.519531 C 145.550781 290.402344 145.457031 290.308594 145.339844 290.308594 C 145.222656 290.308594 145.128906 290.402344 145.128906 290.519531 C 145.128906 290.636719 145.222656 290.730469 145.339844 290.730469 C 145.457031 290.730469 145.550781 290.636719 145.550781 290.519531 Z M 145.550781 290.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.65625 290.566406 C 145.65625 290.449219 145.5625 290.355469 145.445312 290.355469 C 145.328125 290.355469 145.234375 290.449219 145.234375 290.566406 C 145.234375 290.683594 145.328125 290.777344 145.445312 290.777344 C 145.5625 290.777344 145.65625 290.683594 145.65625 290.566406 Z M 145.65625 290.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.148438 288.378906 C 145.148438 288.261719 145.054688 288.167969 144.9375 288.167969 C 144.820312 288.167969 144.726562 288.261719 144.726562 288.378906 C 144.726562 288.496094 144.820312 288.589844 144.9375 288.589844 C 145.054688 288.589844 145.148438 288.496094 145.148438 288.378906 Z M 145.148438 288.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.707031 284.90625 C 144.707031 284.789062 144.613281 284.695312 144.496094 284.695312 C 144.378906 284.695312 144.285156 284.789062 144.285156 284.90625 C 144.285156 285.023438 144.378906 285.117188 144.496094 285.117188 C 144.613281 285.117188 144.707031 285.023438 144.707031 284.90625 Z M 144.707031 284.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.226562 285.492188 C 146.226562 285.375 146.132812 285.28125 146.015625 285.28125 C 145.898438 285.28125 145.804688 285.375 145.804688 285.492188 C 145.804688 285.609375 145.898438 285.703125 146.015625 285.703125 C 146.132812 285.703125 146.226562 285.609375 146.226562 285.492188 Z M 146.226562 285.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.375 284.136719 C 143.375 284.019531 143.28125 283.925781 143.164062 283.925781 C 143.046875 283.925781 142.953125 284.019531 142.953125 284.136719 C 142.953125 284.253906 143.046875 284.347656 143.164062 284.347656 C 143.28125 284.347656 143.375 284.253906 143.375 284.136719 Z M 143.375 284.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.632812 280.902344 C 141.632812 280.785156 141.539062 280.691406 141.421875 280.691406 C 141.304688 280.691406 141.210938 280.785156 141.210938 280.902344 C 141.210938 281.019531 141.304688 281.113281 141.421875 281.113281 C 141.539062 281.113281 141.632812 281.019531 141.632812 280.902344 Z M 141.632812 280.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.445312 281.507812 C 140.445312 281.390625 140.351562 281.296875 140.234375 281.296875 C 140.117188 281.296875 140.023438 281.390625 140.023438 281.507812 C 140.023438 281.625 140.117188 281.71875 140.234375 281.71875 C 140.351562 281.71875 140.445312 281.625 140.445312 281.507812 Z M 140.445312 281.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.773438 283.429688 C 140.773438 283.3125 140.679688 283.21875 140.5625 283.21875 C 140.445312 283.21875 140.351562 283.3125 140.351562 283.429688 C 140.351562 283.546875 140.445312 283.640625 140.5625 283.640625 C 140.679688 283.640625 140.773438 283.546875 140.773438 283.429688 Z M 140.773438 283.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.347656 283.058594 C 141.347656 282.941406 141.253906 282.847656 141.136719 282.847656 C 141.019531 282.847656 140.925781 282.941406 140.925781 283.058594 C 140.925781 283.175781 141.019531 283.269531 141.136719 283.269531 C 141.253906 283.269531 141.347656 283.175781 141.347656 283.058594 Z M 141.347656 283.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.308594 282.261719 C 142.308594 282.144531 142.214844 282.050781 142.097656 282.050781 C 141.980469 282.050781 141.886719 282.144531 141.886719 282.261719 C 141.886719 282.378906 141.980469 282.472656 142.097656 282.472656 C 142.214844 282.472656 142.308594 282.378906 142.308594 282.261719 Z M 142.308594 282.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.414062 279.414062 C 141.414062 279.296875 141.320312 279.203125 141.203125 279.203125 C 141.085938 279.203125 140.992188 279.296875 140.992188 279.414062 C 140.992188 279.53125 141.085938 279.625 141.203125 279.625 C 141.320312 279.625 141.414062 279.53125 141.414062 279.414062 Z M 141.414062 279.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.699219 280.421875 C 139.699219 280.304688 139.605469 280.210938 139.488281 280.210938 C 139.371094 280.210938 139.277344 280.304688 139.277344 280.421875 C 139.277344 280.539062 139.371094 280.632812 139.488281 280.632812 C 139.605469 280.632812 139.699219 280.539062 139.699219 280.421875 Z M 139.699219 280.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.738281 280.695312 C 136.738281 280.578125 136.644531 280.484375 136.527344 280.484375 C 136.410156 280.484375 136.316406 280.578125 136.316406 280.695312 C 136.316406 280.8125 136.410156 280.90625 136.527344 280.90625 C 136.644531 280.90625 136.738281 280.8125 136.738281 280.695312 Z M 136.738281 280.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 134.664062 282.742188 C 134.664062 282.625 134.570312 282.53125 134.453125 282.53125 C 134.335938 282.53125 134.242188 282.625 134.242188 282.742188 C 134.242188 282.859375 134.335938 282.953125 134.453125 282.953125 C 134.570312 282.953125 134.664062 282.859375 134.664062 282.742188 Z M 134.664062 282.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 133.882812 280.886719 C 133.882812 280.769531 133.789062 280.675781 133.671875 280.675781 C 133.554688 280.675781 133.460938 280.769531 133.460938 280.886719 C 133.460938 281.003906 133.554688 281.097656 133.671875 281.097656 C 133.789062 281.097656 133.882812 281.003906 133.882812 280.886719 Z M 133.882812 280.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 130.707031 279.074219 C 130.707031 278.957031 130.613281 278.863281 130.496094 278.863281 C 130.378906 278.863281 130.285156 278.957031 130.285156 279.074219 C 130.285156 279.191406 130.378906 279.285156 130.496094 279.285156 C 130.613281 279.285156 130.707031 279.191406 130.707031 279.074219 Z M 130.707031 279.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.902344 277.617188 C 132.902344 277.5 132.808594 277.40625 132.691406 277.40625 C 132.574219 277.40625 132.480469 277.5 132.480469 277.617188 C 132.480469 277.734375 132.574219 277.828125 132.691406 277.828125 C 132.808594 277.828125 132.902344 277.734375 132.902344 277.617188 Z M 132.902344 277.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.566406 281.089844 C 136.566406 280.972656 136.472656 280.878906 136.355469 280.878906 C 136.238281 280.878906 136.144531 280.972656 136.144531 281.089844 C 136.144531 281.207031 136.238281 281.300781 136.355469 281.300781 C 136.472656 281.300781 136.566406 281.207031 136.566406 281.089844 Z M 136.566406 281.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.890625 280.539062 C 135.890625 280.421875 135.796875 280.328125 135.679688 280.328125 C 135.5625 280.328125 135.46875 280.421875 135.46875 280.539062 C 135.46875 280.65625 135.5625 280.75 135.679688 280.75 C 135.796875 280.75 135.890625 280.65625 135.890625 280.539062 Z M 135.890625 280.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.476562 279.058594 C 137.476562 278.941406 137.382812 278.847656 137.265625 278.847656 C 137.148438 278.847656 137.054688 278.941406 137.054688 279.058594 C 137.054688 279.175781 137.148438 279.269531 137.265625 279.269531 C 137.382812 279.269531 137.476562 279.175781 137.476562 279.058594 Z M 137.476562 279.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 134.519531 280.015625 C 134.519531 279.898438 134.425781 279.804688 134.308594 279.804688 C 134.191406 279.804688 134.097656 279.898438 134.097656 280.015625 C 134.097656 280.132812 134.191406 280.226562 134.308594 280.226562 C 134.425781 280.226562 134.519531 280.132812 134.519531 280.015625 Z M 134.519531 280.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 133.609375 279.046875 C 133.609375 278.929688 133.515625 278.835938 133.398438 278.835938 C 133.28125 278.835938 133.1875 278.929688 133.1875 279.046875 C 133.1875 279.164062 133.28125 279.257812 133.398438 279.257812 C 133.515625 279.257812 133.609375 279.164062 133.609375 279.046875 Z M 133.609375 279.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.320312 279.839844 C 135.320312 279.722656 135.226562 279.628906 135.109375 279.628906 C 134.992188 279.628906 134.898438 279.722656 134.898438 279.839844 C 134.898438 279.957031 134.992188 280.050781 135.109375 280.050781 C 135.226562 280.050781 135.320312 279.957031 135.320312 279.839844 Z M 135.320312 279.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.296875 279.667969 C 132.296875 279.550781 132.203125 279.457031 132.085938 279.457031 C 131.96875 279.457031 131.875 279.550781 131.875 279.667969 C 131.875 279.785156 131.96875 279.878906 132.085938 279.878906 C 132.203125 279.878906 132.296875 279.785156 132.296875 279.667969 Z M 132.296875 279.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.824219 282.460938 C 132.824219 282.34375 132.730469 282.25 132.613281 282.25 C 132.496094 282.25 132.402344 282.34375 132.402344 282.460938 C 132.402344 282.578125 132.496094 282.671875 132.613281 282.671875 C 132.730469 282.671875 132.824219 282.578125 132.824219 282.460938 Z M 132.824219 282.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.507812 280.703125 C 132.507812 280.585938 132.414062 280.492188 132.296875 280.492188 C 132.179688 280.492188 132.085938 280.585938 132.085938 280.703125 C 132.085938 280.820312 132.179688 280.914062 132.296875 280.914062 C 132.414062 280.914062 132.507812 280.820312 132.507812 280.703125 Z M 132.507812 280.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 130.769531 277.175781 C 130.769531 277.058594 130.675781 276.964844 130.558594 276.964844 C 130.441406 276.964844 130.347656 277.058594 130.347656 277.175781 C 130.347656 277.292969 130.441406 277.386719 130.558594 277.386719 C 130.675781 277.386719 130.769531 277.292969 130.769531 277.175781 Z M 130.769531 277.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 134.117188 279.570312 C 134.117188 279.453125 134.023438 279.359375 133.90625 279.359375 C 133.789062 279.359375 133.695312 279.453125 133.695312 279.570312 C 133.695312 279.6875 133.789062 279.78125 133.90625 279.78125 C 134.023438 279.78125 134.117188 279.6875 134.117188 279.570312 Z M 134.117188 279.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 131.992188 279.875 C 131.992188 279.757812 131.898438 279.664062 131.78125 279.664062 C 131.664062 279.664062 131.570312 279.757812 131.570312 279.875 C 131.570312 279.992188 131.664062 280.085938 131.78125 280.085938 C 131.898438 280.085938 131.992188 279.992188 131.992188 279.875 Z M 131.992188 279.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 131.976562 276.65625 C 131.976562 276.539062 131.882812 276.445312 131.765625 276.445312 C 131.648438 276.445312 131.554688 276.539062 131.554688 276.65625 C 131.554688 276.773438 131.648438 276.867188 131.765625 276.867188 C 131.882812 276.867188 131.976562 276.773438 131.976562 276.65625 Z M 131.976562 276.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 134.957031 275.824219 C 134.957031 275.707031 134.863281 275.613281 134.746094 275.613281 C 134.628906 275.613281 134.535156 275.707031 134.535156 275.824219 C 134.535156 275.941406 134.628906 276.035156 134.746094 276.035156 C 134.863281 276.035156 134.957031 275.941406 134.957031 275.824219 Z M 134.957031 275.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.34375 275.976562 C 137.34375 275.859375 137.25 275.765625 137.132812 275.765625 C 137.015625 275.765625 136.921875 275.859375 136.921875 275.976562 C 136.921875 276.09375 137.015625 276.1875 137.132812 276.1875 C 137.25 276.1875 137.34375 276.09375 137.34375 275.976562 Z M 137.34375 275.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.429688 279.375 C 137.429688 279.257812 137.335938 279.164062 137.21875 279.164062 C 137.101562 279.164062 137.007812 279.257812 137.007812 279.375 C 137.007812 279.492188 137.101562 279.585938 137.21875 279.585938 C 137.335938 279.585938 137.429688 279.492188 137.429688 279.375 Z M 137.429688 279.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.753906 279.054688 C 138.753906 278.9375 138.660156 278.84375 138.542969 278.84375 C 138.425781 278.84375 138.332031 278.9375 138.332031 279.054688 C 138.332031 279.171875 138.425781 279.265625 138.542969 279.265625 C 138.660156 279.265625 138.753906 279.171875 138.753906 279.054688 Z M 138.753906 279.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.429688 279 C 136.429688 278.882812 136.335938 278.789062 136.21875 278.789062 C 136.101562 278.789062 136.007812 278.882812 136.007812 279 C 136.007812 279.117188 136.101562 279.210938 136.21875 279.210938 C 136.335938 279.210938 136.429688 279.117188 136.429688 279 Z M 136.429688 279 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.191406 281.792969 C 139.191406 281.675781 139.097656 281.582031 138.980469 281.582031 C 138.863281 281.582031 138.769531 281.675781 138.769531 281.792969 C 138.769531 281.910156 138.863281 282.003906 138.980469 282.003906 C 139.097656 282.003906 139.191406 281.910156 139.191406 281.792969 Z M 139.191406 281.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.605469 282.492188 C 137.605469 282.375 137.511719 282.28125 137.394531 282.28125 C 137.277344 282.28125 137.183594 282.375 137.183594 282.492188 C 137.183594 282.609375 137.277344 282.703125 137.394531 282.703125 C 137.511719 282.703125 137.605469 282.609375 137.605469 282.492188 Z M 137.605469 282.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.121094 280.632812 C 136.121094 280.515625 136.027344 280.421875 135.910156 280.421875 C 135.792969 280.421875 135.699219 280.515625 135.699219 280.632812 C 135.699219 280.75 135.792969 280.84375 135.910156 280.84375 C 136.027344 280.84375 136.121094 280.75 136.121094 280.632812 Z M 136.121094 280.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.585938 278.570312 C 132.585938 278.453125 132.492188 278.359375 132.375 278.359375 C 132.257812 278.359375 132.164062 278.453125 132.164062 278.570312 C 132.164062 278.6875 132.257812 278.78125 132.375 278.78125 C 132.492188 278.78125 132.585938 278.6875 132.585938 278.570312 Z M 132.585938 278.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 130.109375 276.390625 C 130.109375 276.273438 130.015625 276.179688 129.898438 276.179688 C 129.78125 276.179688 129.6875 276.273438 129.6875 276.390625 C 129.6875 276.507812 129.78125 276.601562 129.898438 276.601562 C 130.015625 276.601562 130.109375 276.507812 130.109375 276.390625 Z M 130.109375 276.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.273438 281.074219 C 129.273438 280.957031 129.179688 280.863281 129.0625 280.863281 C 128.945312 280.863281 128.851562 280.957031 128.851562 281.074219 C 128.851562 281.191406 128.945312 281.285156 129.0625 281.285156 C 129.179688 281.285156 129.273438 281.191406 129.273438 281.074219 Z M 129.273438 281.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 130.152344 280.679688 C 130.152344 280.5625 130.058594 280.46875 129.941406 280.46875 C 129.824219 280.46875 129.730469 280.5625 129.730469 280.679688 C 129.730469 280.796875 129.824219 280.890625 129.941406 280.890625 C 130.058594 280.890625 130.152344 280.796875 130.152344 280.679688 Z M 130.152344 280.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.171875 278.015625 C 129.171875 277.898438 129.078125 277.804688 128.960938 277.804688 C 128.84375 277.804688 128.75 277.898438 128.75 278.015625 C 128.75 278.132812 128.84375 278.226562 128.960938 278.226562 C 129.078125 278.226562 129.171875 278.132812 129.171875 278.015625 Z M 129.171875 278.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.003906 272.875 C 125.003906 272.757812 124.910156 272.664062 124.792969 272.664062 C 124.675781 272.664062 124.582031 272.757812 124.582031 272.875 C 124.582031 272.992188 124.675781 273.085938 124.792969 273.085938 C 124.910156 273.085938 125.003906 272.992188 125.003906 272.875 Z M 125.003906 272.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.894531 270.429688 C 123.894531 270.3125 123.800781 270.21875 123.683594 270.21875 C 123.566406 270.21875 123.472656 270.3125 123.472656 270.429688 C 123.472656 270.546875 123.566406 270.640625 123.683594 270.640625 C 123.800781 270.640625 123.894531 270.546875 123.894531 270.429688 Z M 123.894531 270.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.402344 273.957031 C 122.402344 273.839844 122.308594 273.746094 122.191406 273.746094 C 122.074219 273.746094 121.980469 273.839844 121.980469 273.957031 C 121.980469 274.074219 122.074219 274.167969 122.191406 274.167969 C 122.308594 274.167969 122.402344 274.074219 122.402344 273.957031 Z M 122.402344 273.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.777344 274.363281 C 120.777344 274.246094 120.683594 274.152344 120.566406 274.152344 C 120.449219 274.152344 120.355469 274.246094 120.355469 274.363281 C 120.355469 274.480469 120.449219 274.574219 120.566406 274.574219 C 120.683594 274.574219 120.777344 274.480469 120.777344 274.363281 Z M 120.777344 274.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.765625 272.652344 C 117.765625 272.535156 117.671875 272.441406 117.554688 272.441406 C 117.4375 272.441406 117.34375 272.535156 117.34375 272.652344 C 117.34375 272.769531 117.4375 272.863281 117.554688 272.863281 C 117.671875 272.863281 117.765625 272.769531 117.765625 272.652344 Z M 117.765625 272.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.382812 271.273438 C 111.382812 271.15625 111.289062 271.0625 111.171875 271.0625 C 111.054688 271.0625 110.960938 271.15625 110.960938 271.273438 C 110.960938 271.390625 111.054688 271.484375 111.171875 271.484375 C 111.289062 271.484375 111.382812 271.390625 111.382812 271.273438 Z M 111.382812 271.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.816406 270.027344 C 111.816406 269.910156 111.722656 269.816406 111.605469 269.816406 C 111.488281 269.816406 111.394531 269.910156 111.394531 270.027344 C 111.394531 270.144531 111.488281 270.238281 111.605469 270.238281 C 111.722656 270.238281 111.816406 270.144531 111.816406 270.027344 Z M 111.816406 270.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.417969 267.148438 C 111.417969 267.03125 111.324219 266.9375 111.207031 266.9375 C 111.089844 266.9375 110.996094 267.03125 110.996094 267.148438 C 110.996094 267.265625 111.089844 267.359375 111.207031 267.359375 C 111.324219 267.359375 111.417969 267.265625 111.417969 267.148438 Z M 111.417969 267.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.636719 267.773438 C 107.636719 267.65625 107.542969 267.5625 107.425781 267.5625 C 107.308594 267.5625 107.214844 267.65625 107.214844 267.773438 C 107.214844 267.890625 107.308594 267.984375 107.425781 267.984375 C 107.542969 267.984375 107.636719 267.890625 107.636719 267.773438 Z M 107.636719 267.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.664062 267.277344 C 105.664062 267.160156 105.570312 267.066406 105.453125 267.066406 C 105.335938 267.066406 105.242188 267.160156 105.242188 267.277344 C 105.242188 267.394531 105.335938 267.488281 105.453125 267.488281 C 105.570312 267.488281 105.664062 267.394531 105.664062 267.277344 Z M 105.664062 267.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.398438 267.503906 C 106.398438 267.386719 106.304688 267.292969 106.1875 267.292969 C 106.070312 267.292969 105.976562 267.386719 105.976562 267.503906 C 105.976562 267.621094 106.070312 267.714844 106.1875 267.714844 C 106.304688 267.714844 106.398438 267.621094 106.398438 267.503906 Z M 106.398438 267.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.46875 268.65625 C 105.46875 268.539062 105.375 268.445312 105.257812 268.445312 C 105.140625 268.445312 105.046875 268.539062 105.046875 268.65625 C 105.046875 268.773438 105.140625 268.867188 105.257812 268.867188 C 105.375 268.867188 105.46875 268.773438 105.46875 268.65625 Z M 105.46875 268.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.800781 269.558594 C 101.800781 269.441406 101.707031 269.347656 101.589844 269.347656 C 101.472656 269.347656 101.378906 269.441406 101.378906 269.558594 C 101.378906 269.675781 101.472656 269.769531 101.589844 269.769531 C 101.707031 269.769531 101.800781 269.675781 101.800781 269.558594 Z M 101.800781 269.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 102.519531 266.644531 C 102.519531 266.527344 102.425781 266.433594 102.308594 266.433594 C 102.191406 266.433594 102.097656 266.527344 102.097656 266.644531 C 102.097656 266.761719 102.191406 266.855469 102.308594 266.855469 C 102.425781 266.855469 102.519531 266.761719 102.519531 266.644531 Z M 102.519531 266.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.726562 269.28125 C 101.726562 269.164062 101.632812 269.070312 101.515625 269.070312 C 101.398438 269.070312 101.304688 269.164062 101.304688 269.28125 C 101.304688 269.398438 101.398438 269.492188 101.515625 269.492188 C 101.632812 269.492188 101.726562 269.398438 101.726562 269.28125 Z M 101.726562 269.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.75 272.195312 C 100.75 272.078125 100.65625 271.984375 100.539062 271.984375 C 100.421875 271.984375 100.328125 272.078125 100.328125 272.195312 C 100.328125 272.3125 100.421875 272.40625 100.539062 272.40625 C 100.65625 272.40625 100.75 272.3125 100.75 272.195312 Z M 100.75 272.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 102.519531 273.6875 C 102.519531 273.570312 102.425781 273.476562 102.308594 273.476562 C 102.191406 273.476562 102.097656 273.570312 102.097656 273.6875 C 102.097656 273.804688 102.191406 273.898438 102.308594 273.898438 C 102.425781 273.898438 102.519531 273.804688 102.519531 273.6875 Z M 102.519531 273.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.578125 275.566406 C 99.578125 275.449219 99.484375 275.355469 99.367188 275.355469 C 99.25 275.355469 99.15625 275.449219 99.15625 275.566406 C 99.15625 275.683594 99.25 275.777344 99.367188 275.777344 C 99.484375 275.777344 99.578125 275.683594 99.578125 275.566406 Z M 99.578125 275.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.363281 280.582031 C 98.363281 280.464844 98.269531 280.371094 98.152344 280.371094 C 98.035156 280.371094 97.941406 280.464844 97.941406 280.582031 C 97.941406 280.699219 98.035156 280.792969 98.152344 280.792969 C 98.269531 280.792969 98.363281 280.699219 98.363281 280.582031 Z M 98.363281 280.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.710938 279.472656 C 98.710938 279.355469 98.617188 279.261719 98.5 279.261719 C 98.382812 279.261719 98.289062 279.355469 98.289062 279.472656 C 98.289062 279.589844 98.382812 279.683594 98.5 279.683594 C 98.617188 279.683594 98.710938 279.589844 98.710938 279.472656 Z M 98.710938 279.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.921875 278.980469 C 96.921875 278.863281 96.828125 278.769531 96.710938 278.769531 C 96.59375 278.769531 96.5 278.863281 96.5 278.980469 C 96.5 279.097656 96.59375 279.191406 96.710938 279.191406 C 96.828125 279.191406 96.921875 279.097656 96.921875 278.980469 Z M 96.921875 278.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.949219 276.921875 C 98.949219 276.804688 98.855469 276.710938 98.738281 276.710938 C 98.621094 276.710938 98.527344 276.804688 98.527344 276.921875 C 98.527344 277.039062 98.621094 277.132812 98.738281 277.132812 C 98.855469 277.132812 98.949219 277.039062 98.949219 276.921875 Z M 98.949219 276.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.347656 275.492188 C 98.347656 275.375 98.253906 275.28125 98.136719 275.28125 C 98.019531 275.28125 97.925781 275.375 97.925781 275.492188 C 97.925781 275.609375 98.019531 275.703125 98.136719 275.703125 C 98.253906 275.703125 98.347656 275.609375 98.347656 275.492188 Z M 98.347656 275.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.792969 277.550781 C 101.792969 277.433594 101.699219 277.339844 101.582031 277.339844 C 101.464844 277.339844 101.371094 277.433594 101.371094 277.550781 C 101.371094 277.667969 101.464844 277.761719 101.582031 277.761719 C 101.699219 277.761719 101.792969 277.667969 101.792969 277.550781 Z M 101.792969 277.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.269531 278.523438 C 100.269531 278.40625 100.175781 278.3125 100.058594 278.3125 C 99.941406 278.3125 99.847656 278.40625 99.847656 278.523438 C 99.847656 278.640625 99.941406 278.734375 100.058594 278.734375 C 100.175781 278.734375 100.269531 278.640625 100.269531 278.523438 Z M 100.269531 278.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.375 276.496094 C 98.375 276.378906 98.28125 276.285156 98.164062 276.285156 C 98.046875 276.285156 97.953125 276.378906 97.953125 276.496094 C 97.953125 276.613281 98.046875 276.707031 98.164062 276.707031 C 98.28125 276.707031 98.375 276.613281 98.375 276.496094 Z M 98.375 276.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.761719 276.140625 C 97.761719 276.023438 97.667969 275.929688 97.550781 275.929688 C 97.433594 275.929688 97.339844 276.023438 97.339844 276.140625 C 97.339844 276.257812 97.433594 276.351562 97.550781 276.351562 C 97.667969 276.351562 97.761719 276.257812 97.761719 276.140625 Z M 97.761719 276.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.886719 274.152344 C 99.886719 274.035156 99.792969 273.941406 99.675781 273.941406 C 99.558594 273.941406 99.464844 274.035156 99.464844 274.152344 C 99.464844 274.269531 99.558594 274.363281 99.675781 274.363281 C 99.792969 274.363281 99.886719 274.269531 99.886719 274.152344 Z M 99.886719 274.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.191406 271.882812 C 103.191406 271.765625 103.097656 271.671875 102.980469 271.671875 C 102.863281 271.671875 102.769531 271.765625 102.769531 271.882812 C 102.769531 272 102.863281 272.09375 102.980469 272.09375 C 103.097656 272.09375 103.191406 272 103.191406 271.882812 Z M 103.191406 271.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.4375 273.492188 C 103.4375 273.375 103.34375 273.28125 103.226562 273.28125 C 103.109375 273.28125 103.015625 273.375 103.015625 273.492188 C 103.015625 273.609375 103.109375 273.703125 103.226562 273.703125 C 103.34375 273.703125 103.4375 273.609375 103.4375 273.492188 Z M 103.4375 273.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.570312 268.6875 C 105.570312 268.570312 105.476562 268.476562 105.359375 268.476562 C 105.242188 268.476562 105.148438 268.570312 105.148438 268.6875 C 105.148438 268.804688 105.242188 268.898438 105.359375 268.898438 C 105.476562 268.898438 105.570312 268.804688 105.570312 268.6875 Z M 105.570312 268.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.910156 271.164062 C 105.910156 271.046875 105.816406 270.953125 105.699219 270.953125 C 105.582031 270.953125 105.488281 271.046875 105.488281 271.164062 C 105.488281 271.28125 105.582031 271.375 105.699219 271.375 C 105.816406 271.375 105.910156 271.28125 105.910156 271.164062 Z M 105.910156 271.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.414062 271.808594 C 105.414062 271.691406 105.320312 271.597656 105.203125 271.597656 C 105.085938 271.597656 104.992188 271.691406 104.992188 271.808594 C 104.992188 271.925781 105.085938 272.019531 105.203125 272.019531 C 105.320312 272.019531 105.414062 271.925781 105.414062 271.808594 Z M 105.414062 271.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.957031 272.199219 C 105.957031 272.082031 105.863281 271.988281 105.746094 271.988281 C 105.628906 271.988281 105.535156 272.082031 105.535156 272.199219 C 105.535156 272.316406 105.628906 272.410156 105.746094 272.410156 C 105.863281 272.410156 105.957031 272.316406 105.957031 272.199219 Z M 105.957031 272.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.863281 268.535156 C 107.863281 268.417969 107.769531 268.324219 107.652344 268.324219 C 107.535156 268.324219 107.441406 268.417969 107.441406 268.535156 C 107.441406 268.652344 107.535156 268.746094 107.652344 268.746094 C 107.769531 268.746094 107.863281 268.652344 107.863281 268.535156 Z M 107.863281 268.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.746094 266.707031 C 109.746094 266.589844 109.652344 266.496094 109.535156 266.496094 C 109.417969 266.496094 109.324219 266.589844 109.324219 266.707031 C 109.324219 266.824219 109.417969 266.917969 109.535156 266.917969 C 109.652344 266.917969 109.746094 266.824219 109.746094 266.707031 Z M 109.746094 266.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.949219 269.242188 C 106.949219 269.125 106.855469 269.03125 106.738281 269.03125 C 106.621094 269.03125 106.527344 269.125 106.527344 269.242188 C 106.527344 269.359375 106.621094 269.453125 106.738281 269.453125 C 106.855469 269.453125 106.949219 269.359375 106.949219 269.242188 Z M 106.949219 269.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.710938 267.082031 C 105.710938 266.964844 105.617188 266.871094 105.5 266.871094 C 105.382812 266.871094 105.289062 266.964844 105.289062 267.082031 C 105.289062 267.199219 105.382812 267.292969 105.5 267.292969 C 105.617188 267.292969 105.710938 267.199219 105.710938 267.082031 Z M 105.710938 267.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.535156 269.753906 C 103.535156 269.636719 103.441406 269.542969 103.324219 269.542969 C 103.207031 269.542969 103.113281 269.636719 103.113281 269.753906 C 103.113281 269.871094 103.207031 269.964844 103.324219 269.964844 C 103.441406 269.964844 103.535156 269.871094 103.535156 269.753906 Z M 103.535156 269.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 102.867188 265.941406 C 102.867188 265.824219 102.773438 265.730469 102.65625 265.730469 C 102.539062 265.730469 102.445312 265.824219 102.445312 265.941406 C 102.445312 266.058594 102.539062 266.152344 102.65625 266.152344 C 102.773438 266.152344 102.867188 266.058594 102.867188 265.941406 Z M 102.867188 265.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.542969 268.515625 C 101.542969 268.398438 101.449219 268.304688 101.332031 268.304688 C 101.214844 268.304688 101.121094 268.398438 101.121094 268.515625 C 101.121094 268.632812 101.214844 268.726562 101.332031 268.726562 C 101.449219 268.726562 101.542969 268.632812 101.542969 268.515625 Z M 101.542969 268.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.226562 270.117188 C 98.226562 270 98.132812 269.90625 98.015625 269.90625 C 97.898438 269.90625 97.804688 270 97.804688 270.117188 C 97.804688 270.234375 97.898438 270.328125 98.015625 270.328125 C 98.132812 270.328125 98.226562 270.234375 98.226562 270.117188 Z M 98.226562 270.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.921875 267.574219 C 99.921875 267.457031 99.828125 267.363281 99.710938 267.363281 C 99.59375 267.363281 99.5 267.457031 99.5 267.574219 C 99.5 267.691406 99.59375 267.785156 99.710938 267.785156 C 99.828125 267.785156 99.921875 267.691406 99.921875 267.574219 Z M 99.921875 267.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.363281 268.238281 C 99.363281 268.121094 99.269531 268.027344 99.152344 268.027344 C 99.035156 268.027344 98.941406 268.121094 98.941406 268.238281 C 98.941406 268.355469 99.035156 268.449219 99.152344 268.449219 C 99.269531 268.449219 99.363281 268.355469 99.363281 268.238281 Z M 99.363281 268.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.242188 268.414062 C 99.242188 268.296875 99.148438 268.203125 99.03125 268.203125 C 98.914062 268.203125 98.820312 268.296875 98.820312 268.414062 C 98.820312 268.53125 98.914062 268.625 99.03125 268.625 C 99.148438 268.625 99.242188 268.53125 99.242188 268.414062 Z M 99.242188 268.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.945312 266.457031 C 99.945312 266.339844 99.851562 266.246094 99.734375 266.246094 C 99.617188 266.246094 99.523438 266.339844 99.523438 266.457031 C 99.523438 266.574219 99.617188 266.667969 99.734375 266.667969 C 99.851562 266.667969 99.945312 266.574219 99.945312 266.457031 Z M 99.945312 266.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.914062 266.824219 C 99.914062 266.707031 99.820312 266.613281 99.703125 266.613281 C 99.585938 266.613281 99.492188 266.707031 99.492188 266.824219 C 99.492188 266.941406 99.585938 267.035156 99.703125 267.035156 C 99.820312 267.035156 99.914062 266.941406 99.914062 266.824219 Z M 99.914062 266.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.382812 267.363281 C 98.382812 267.246094 98.289062 267.152344 98.171875 267.152344 C 98.054688 267.152344 97.960938 267.246094 97.960938 267.363281 C 97.960938 267.480469 98.054688 267.574219 98.171875 267.574219 C 98.289062 267.574219 98.382812 267.480469 98.382812 267.363281 Z M 98.382812 267.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.136719 267.226562 C 95.136719 267.109375 95.042969 267.015625 94.925781 267.015625 C 94.808594 267.015625 94.714844 267.109375 94.714844 267.226562 C 94.714844 267.34375 94.808594 267.4375 94.925781 267.4375 C 95.042969 267.4375 95.136719 267.34375 95.136719 267.226562 Z M 95.136719 267.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.660156 267.0625 C 91.660156 266.945312 91.566406 266.851562 91.449219 266.851562 C 91.332031 266.851562 91.238281 266.945312 91.238281 267.0625 C 91.238281 267.179688 91.332031 267.273438 91.449219 267.273438 C 91.566406 267.273438 91.660156 267.179688 91.660156 267.0625 Z M 91.660156 267.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.59375 268.945312 C 92.59375 268.828125 92.5 268.734375 92.382812 268.734375 C 92.265625 268.734375 92.171875 268.828125 92.171875 268.945312 C 92.171875 269.0625 92.265625 269.15625 92.382812 269.15625 C 92.5 269.15625 92.59375 269.0625 92.59375 268.945312 Z M 92.59375 268.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.398438 268.71875 C 93.398438 268.601562 93.304688 268.507812 93.1875 268.507812 C 93.070312 268.507812 92.976562 268.601562 92.976562 268.71875 C 92.976562 268.835938 93.070312 268.929688 93.1875 268.929688 C 93.304688 268.929688 93.398438 268.835938 93.398438 268.71875 Z M 93.398438 268.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.136719 271.253906 C 94.136719 271.136719 94.042969 271.042969 93.925781 271.042969 C 93.808594 271.042969 93.714844 271.136719 93.714844 271.253906 C 93.714844 271.371094 93.808594 271.464844 93.925781 271.464844 C 94.042969 271.464844 94.136719 271.371094 94.136719 271.253906 Z M 94.136719 271.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.804688 274.089844 C 95.804688 273.972656 95.710938 273.878906 95.59375 273.878906 C 95.476562 273.878906 95.382812 273.972656 95.382812 274.089844 C 95.382812 274.207031 95.476562 274.300781 95.59375 274.300781 C 95.710938 274.300781 95.804688 274.207031 95.804688 274.089844 Z M 95.804688 274.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.976562 269.738281 C 91.976562 269.621094 91.882812 269.527344 91.765625 269.527344 C 91.648438 269.527344 91.554688 269.621094 91.554688 269.738281 C 91.554688 269.855469 91.648438 269.949219 91.765625 269.949219 C 91.882812 269.949219 91.976562 269.855469 91.976562 269.738281 Z M 91.976562 269.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.363281 268.9375 C 93.363281 268.820312 93.269531 268.726562 93.152344 268.726562 C 93.035156 268.726562 92.941406 268.820312 92.941406 268.9375 C 92.941406 269.054688 93.035156 269.148438 93.152344 269.148438 C 93.269531 269.148438 93.363281 269.054688 93.363281 268.9375 Z M 93.363281 268.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.503906 267.09375 C 93.503906 266.976562 93.410156 266.882812 93.292969 266.882812 C 93.175781 266.882812 93.082031 266.976562 93.082031 267.09375 C 93.082031 267.210938 93.175781 267.304688 93.292969 267.304688 C 93.410156 267.304688 93.503906 267.210938 93.503906 267.09375 Z M 93.503906 267.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.457031 268.394531 C 96.457031 268.277344 96.363281 268.183594 96.246094 268.183594 C 96.128906 268.183594 96.035156 268.277344 96.035156 268.394531 C 96.035156 268.511719 96.128906 268.605469 96.246094 268.605469 C 96.363281 268.605469 96.457031 268.511719 96.457031 268.394531 Z M 96.457031 268.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.683594 271.746094 C 93.683594 271.628906 93.589844 271.535156 93.472656 271.535156 C 93.355469 271.535156 93.261719 271.628906 93.261719 271.746094 C 93.261719 271.863281 93.355469 271.957031 93.472656 271.957031 C 93.589844 271.957031 93.683594 271.863281 93.683594 271.746094 Z M 93.683594 271.746094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.515625 271.976562 C 95.515625 271.859375 95.421875 271.765625 95.304688 271.765625 C 95.1875 271.765625 95.09375 271.859375 95.09375 271.976562 C 95.09375 272.09375 95.1875 272.1875 95.304688 272.1875 C 95.421875 272.1875 95.515625 272.09375 95.515625 271.976562 Z M 95.515625 271.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.65625 271.910156 C 94.65625 271.792969 94.5625 271.699219 94.445312 271.699219 C 94.328125 271.699219 94.234375 271.792969 94.234375 271.910156 C 94.234375 272.027344 94.328125 272.121094 94.445312 272.121094 C 94.5625 272.121094 94.65625 272.027344 94.65625 271.910156 Z M 94.65625 271.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.40625 272.84375 C 98.40625 272.726562 98.3125 272.632812 98.195312 272.632812 C 98.078125 272.632812 97.984375 272.726562 97.984375 272.84375 C 97.984375 272.960938 98.078125 273.054688 98.195312 273.054688 C 98.3125 273.054688 98.40625 272.960938 98.40625 272.84375 Z M 98.40625 272.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.894531 275.460938 C 99.894531 275.34375 99.800781 275.25 99.683594 275.25 C 99.566406 275.25 99.472656 275.34375 99.472656 275.460938 C 99.472656 275.578125 99.566406 275.671875 99.683594 275.671875 C 99.800781 275.671875 99.894531 275.578125 99.894531 275.460938 Z M 99.894531 275.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.488281 277.503906 C 100.488281 277.386719 100.394531 277.292969 100.277344 277.292969 C 100.160156 277.292969 100.066406 277.386719 100.066406 277.503906 C 100.066406 277.621094 100.160156 277.714844 100.277344 277.714844 C 100.394531 277.714844 100.488281 277.621094 100.488281 277.503906 Z M 100.488281 277.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.3125 275.328125 C 97.3125 275.210938 97.21875 275.117188 97.101562 275.117188 C 96.984375 275.117188 96.890625 275.210938 96.890625 275.328125 C 96.890625 275.445312 96.984375 275.539062 97.101562 275.539062 C 97.21875 275.539062 97.3125 275.445312 97.3125 275.328125 Z M 97.3125 275.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.230469 275.523438 C 95.230469 275.40625 95.136719 275.3125 95.019531 275.3125 C 94.902344 275.3125 94.808594 275.40625 94.808594 275.523438 C 94.808594 275.640625 94.902344 275.734375 95.019531 275.734375 C 95.136719 275.734375 95.230469 275.640625 95.230469 275.523438 Z M 95.230469 275.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.507812 275.257812 C 96.507812 275.140625 96.414062 275.046875 96.296875 275.046875 C 96.179688 275.046875 96.085938 275.140625 96.085938 275.257812 C 96.085938 275.375 96.179688 275.46875 96.296875 275.46875 C 96.414062 275.46875 96.507812 275.375 96.507812 275.257812 Z M 96.507812 275.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.394531 275.367188 C 94.394531 275.25 94.300781 275.15625 94.183594 275.15625 C 94.066406 275.15625 93.972656 275.25 93.972656 275.367188 C 93.972656 275.484375 94.066406 275.578125 94.183594 275.578125 C 94.300781 275.578125 94.394531 275.484375 94.394531 275.367188 Z M 94.394531 275.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.265625 277.671875 C 97.265625 277.554688 97.171875 277.460938 97.054688 277.460938 C 96.9375 277.460938 96.84375 277.554688 96.84375 277.671875 C 96.84375 277.789062 96.9375 277.882812 97.054688 277.882812 C 97.171875 277.882812 97.265625 277.789062 97.265625 277.671875 Z M 97.265625 277.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.800781 277.097656 C 98.800781 276.980469 98.707031 276.886719 98.589844 276.886719 C 98.472656 276.886719 98.378906 276.980469 98.378906 277.097656 C 98.378906 277.214844 98.472656 277.308594 98.589844 277.308594 C 98.707031 277.308594 98.800781 277.214844 98.800781 277.097656 Z M 98.800781 277.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.679688 280.363281 C 94.679688 280.246094 94.585938 280.152344 94.46875 280.152344 C 94.351562 280.152344 94.257812 280.246094 94.257812 280.363281 C 94.257812 280.480469 94.351562 280.574219 94.46875 280.574219 C 94.585938 280.574219 94.679688 280.480469 94.679688 280.363281 Z M 94.679688 280.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.382812 279.152344 C 95.382812 279.035156 95.289062 278.941406 95.171875 278.941406 C 95.054688 278.941406 94.960938 279.035156 94.960938 279.152344 C 94.960938 279.269531 95.054688 279.363281 95.171875 279.363281 C 95.289062 279.363281 95.382812 279.269531 95.382812 279.152344 Z M 95.382812 279.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.9375 276.167969 C 95.9375 276.050781 95.84375 275.957031 95.726562 275.957031 C 95.609375 275.957031 95.515625 276.050781 95.515625 276.167969 C 95.515625 276.285156 95.609375 276.378906 95.726562 276.378906 C 95.84375 276.378906 95.9375 276.285156 95.9375 276.167969 Z M 95.9375 276.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.433594 280.105469 C 95.433594 279.988281 95.339844 279.894531 95.222656 279.894531 C 95.105469 279.894531 95.011719 279.988281 95.011719 280.105469 C 95.011719 280.222656 95.105469 280.316406 95.222656 280.316406 C 95.339844 280.316406 95.433594 280.222656 95.433594 280.105469 Z M 95.433594 280.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.585938 280.859375 C 97.585938 280.742188 97.492188 280.648438 97.375 280.648438 C 97.257812 280.648438 97.164062 280.742188 97.164062 280.859375 C 97.164062 280.976562 97.257812 281.070312 97.375 281.070312 C 97.492188 281.070312 97.585938 280.976562 97.585938 280.859375 Z M 97.585938 280.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.5625 284.308594 C 98.5625 284.191406 98.46875 284.097656 98.351562 284.097656 C 98.234375 284.097656 98.140625 284.191406 98.140625 284.308594 C 98.140625 284.425781 98.234375 284.519531 98.351562 284.519531 C 98.46875 284.519531 98.5625 284.425781 98.5625 284.308594 Z M 98.5625 284.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.160156 283.96875 C 104.160156 283.851562 104.066406 283.757812 103.949219 283.757812 C 103.832031 283.757812 103.738281 283.851562 103.738281 283.96875 C 103.738281 284.085938 103.832031 284.179688 103.949219 284.179688 C 104.066406 284.179688 104.160156 284.085938 104.160156 283.96875 Z M 104.160156 283.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 102.566406 290.0625 C 102.566406 289.945312 102.472656 289.851562 102.355469 289.851562 C 102.238281 289.851562 102.144531 289.945312 102.144531 290.0625 C 102.144531 290.179688 102.238281 290.273438 102.355469 290.273438 C 102.472656 290.273438 102.566406 290.179688 102.566406 290.0625 Z M 102.566406 290.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.5625 286.414062 C 98.5625 286.296875 98.46875 286.203125 98.351562 286.203125 C 98.234375 286.203125 98.140625 286.296875 98.140625 286.414062 C 98.140625 286.53125 98.234375 286.625 98.351562 286.625 C 98.46875 286.625 98.5625 286.53125 98.5625 286.414062 Z M 98.5625 286.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.058594 286.1875 C 101.058594 286.070312 100.964844 285.976562 100.847656 285.976562 C 100.730469 285.976562 100.636719 286.070312 100.636719 286.1875 C 100.636719 286.304688 100.730469 286.398438 100.847656 286.398438 C 100.964844 286.398438 101.058594 286.304688 101.058594 286.1875 Z M 101.058594 286.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.039062 286.160156 C 99.039062 286.042969 98.945312 285.949219 98.828125 285.949219 C 98.710938 285.949219 98.617188 286.042969 98.617188 286.160156 C 98.617188 286.277344 98.710938 286.371094 98.828125 286.371094 C 98.945312 286.371094 99.039062 286.277344 99.039062 286.160156 Z M 99.039062 286.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.21875 287.332031 C 99.21875 287.214844 99.125 287.121094 99.007812 287.121094 C 98.890625 287.121094 98.796875 287.214844 98.796875 287.332031 C 98.796875 287.449219 98.890625 287.542969 99.007812 287.542969 C 99.125 287.542969 99.21875 287.449219 99.21875 287.332031 Z M 99.21875 287.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.921875 286.015625 C 100.921875 285.898438 100.828125 285.804688 100.710938 285.804688 C 100.59375 285.804688 100.5 285.898438 100.5 286.015625 C 100.5 286.132812 100.59375 286.226562 100.710938 286.226562 C 100.828125 286.226562 100.921875 286.132812 100.921875 286.015625 Z M 100.921875 286.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.785156 288.105469 C 98.785156 287.988281 98.691406 287.894531 98.574219 287.894531 C 98.457031 287.894531 98.363281 287.988281 98.363281 288.105469 C 98.363281 288.222656 98.457031 288.316406 98.574219 288.316406 C 98.691406 288.316406 98.785156 288.222656 98.785156 288.105469 Z M 98.785156 288.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.007812 288.945312 C 95.007812 288.828125 94.914062 288.734375 94.796875 288.734375 C 94.679688 288.734375 94.585938 288.828125 94.585938 288.945312 C 94.585938 289.0625 94.679688 289.15625 94.796875 289.15625 C 94.914062 289.15625 95.007812 289.0625 95.007812 288.945312 Z M 95.007812 288.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.761719 287.523438 C 93.761719 287.40625 93.667969 287.3125 93.550781 287.3125 C 93.433594 287.3125 93.339844 287.40625 93.339844 287.523438 C 93.339844 287.640625 93.433594 287.734375 93.550781 287.734375 C 93.667969 287.734375 93.761719 287.640625 93.761719 287.523438 Z M 93.761719 287.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.777344 286.722656 C 91.777344 286.605469 91.683594 286.511719 91.566406 286.511719 C 91.449219 286.511719 91.355469 286.605469 91.355469 286.722656 C 91.355469 286.839844 91.449219 286.933594 91.566406 286.933594 C 91.683594 286.933594 91.777344 286.839844 91.777344 286.722656 Z M 91.777344 286.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.148438 287.199219 C 93.148438 287.082031 93.054688 286.988281 92.9375 286.988281 C 92.820312 286.988281 92.726562 287.082031 92.726562 287.199219 C 92.726562 287.316406 92.820312 287.410156 92.9375 287.410156 C 93.054688 287.410156 93.148438 287.316406 93.148438 287.199219 Z M 93.148438 287.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.535156 287.386719 C 94.535156 287.269531 94.441406 287.175781 94.324219 287.175781 C 94.207031 287.175781 94.113281 287.269531 94.113281 287.386719 C 94.113281 287.503906 94.207031 287.597656 94.324219 287.597656 C 94.441406 287.597656 94.535156 287.503906 94.535156 287.386719 Z M 94.535156 287.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.09375 286.617188 C 96.09375 286.5 96 286.40625 95.882812 286.40625 C 95.765625 286.40625 95.671875 286.5 95.671875 286.617188 C 95.671875 286.734375 95.765625 286.828125 95.882812 286.828125 C 96 286.828125 96.09375 286.734375 96.09375 286.617188 Z M 96.09375 286.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.773438 291.203125 C 96.773438 291.085938 96.679688 290.992188 96.5625 290.992188 C 96.445312 290.992188 96.351562 291.085938 96.351562 291.203125 C 96.351562 291.320312 96.445312 291.414062 96.5625 291.414062 C 96.679688 291.414062 96.773438 291.320312 96.773438 291.203125 Z M 96.773438 291.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.445312 290.109375 C 96.445312 289.992188 96.351562 289.898438 96.234375 289.898438 C 96.117188 289.898438 96.023438 289.992188 96.023438 290.109375 C 96.023438 290.226562 96.117188 290.320312 96.234375 290.320312 C 96.351562 290.320312 96.445312 290.226562 96.445312 290.109375 Z M 96.445312 290.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.4375 291.867188 C 93.4375 291.75 93.34375 291.65625 93.226562 291.65625 C 93.109375 291.65625 93.015625 291.75 93.015625 291.867188 C 93.015625 291.984375 93.109375 292.078125 93.226562 292.078125 C 93.34375 292.078125 93.4375 291.984375 93.4375 291.867188 Z M 93.4375 291.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.617188 292.253906 C 90.617188 292.136719 90.523438 292.042969 90.40625 292.042969 C 90.289062 292.042969 90.195312 292.136719 90.195312 292.253906 C 90.195312 292.371094 90.289062 292.464844 90.40625 292.464844 C 90.523438 292.464844 90.617188 292.371094 90.617188 292.253906 Z M 90.617188 292.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.230469 289.96875 C 92.230469 289.851562 92.136719 289.757812 92.019531 289.757812 C 91.902344 289.757812 91.808594 289.851562 91.808594 289.96875 C 91.808594 290.085938 91.902344 290.179688 92.019531 290.179688 C 92.136719 290.179688 92.230469 290.085938 92.230469 289.96875 Z M 92.230469 289.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.414062 288.25 C 95.414062 288.132812 95.320312 288.039062 95.203125 288.039062 C 95.085938 288.039062 94.992188 288.132812 94.992188 288.25 C 94.992188 288.367188 95.085938 288.460938 95.203125 288.460938 C 95.320312 288.460938 95.414062 288.367188 95.414062 288.25 Z M 95.414062 288.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.582031 286.617188 C 95.582031 286.5 95.488281 286.40625 95.371094 286.40625 C 95.253906 286.40625 95.160156 286.5 95.160156 286.617188 C 95.160156 286.734375 95.253906 286.828125 95.371094 286.828125 C 95.488281 286.828125 95.582031 286.734375 95.582031 286.617188 Z M 95.582031 286.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.007812 286.925781 C 98.007812 286.808594 97.914062 286.714844 97.796875 286.714844 C 97.679688 286.714844 97.585938 286.808594 97.585938 286.925781 C 97.585938 287.042969 97.679688 287.136719 97.796875 287.136719 C 97.914062 287.136719 98.007812 287.042969 98.007812 286.925781 Z M 98.007812 286.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 102.167969 285.589844 C 102.167969 285.472656 102.074219 285.378906 101.957031 285.378906 C 101.839844 285.378906 101.746094 285.472656 101.746094 285.589844 C 101.746094 285.707031 101.839844 285.800781 101.957031 285.800781 C 102.074219 285.800781 102.167969 285.707031 102.167969 285.589844 Z M 102.167969 285.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.324219 286.566406 C 101.324219 286.449219 101.230469 286.355469 101.113281 286.355469 C 100.996094 286.355469 100.902344 286.449219 100.902344 286.566406 C 100.902344 286.683594 100.996094 286.777344 101.113281 286.777344 C 101.230469 286.777344 101.324219 286.683594 101.324219 286.566406 Z M 101.324219 286.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.78125 288.484375 C 103.78125 288.367188 103.6875 288.273438 103.570312 288.273438 C 103.453125 288.273438 103.359375 288.367188 103.359375 288.484375 C 103.359375 288.601562 103.453125 288.695312 103.570312 288.695312 C 103.6875 288.695312 103.78125 288.601562 103.78125 288.484375 Z M 103.78125 288.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.464844 293.699219 C 101.464844 293.582031 101.371094 293.488281 101.253906 293.488281 C 101.136719 293.488281 101.042969 293.582031 101.042969 293.699219 C 101.042969 293.816406 101.136719 293.910156 101.253906 293.910156 C 101.371094 293.910156 101.464844 293.816406 101.464844 293.699219 Z M 101.464844 293.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.339844 294.378906 C 103.339844 294.261719 103.246094 294.167969 103.128906 294.167969 C 103.011719 294.167969 102.917969 294.261719 102.917969 294.378906 C 102.917969 294.496094 103.011719 294.589844 103.128906 294.589844 C 103.246094 294.589844 103.339844 294.496094 103.339844 294.378906 Z M 103.339844 294.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 102.195312 293.203125 C 102.195312 293.085938 102.101562 292.992188 101.984375 292.992188 C 101.867188 292.992188 101.773438 293.085938 101.773438 293.203125 C 101.773438 293.320312 101.867188 293.414062 101.984375 293.414062 C 102.101562 293.414062 102.195312 293.320312 102.195312 293.203125 Z M 102.195312 293.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.1875 295.65625 C 106.1875 295.539062 106.09375 295.445312 105.976562 295.445312 C 105.859375 295.445312 105.765625 295.539062 105.765625 295.65625 C 105.765625 295.773438 105.859375 295.867188 105.976562 295.867188 C 106.09375 295.867188 106.1875 295.773438 106.1875 295.65625 Z M 106.1875 295.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.40625 298.355469 C 106.40625 298.238281 106.3125 298.144531 106.195312 298.144531 C 106.078125 298.144531 105.984375 298.238281 105.984375 298.355469 C 105.984375 298.472656 106.078125 298.566406 106.195312 298.566406 C 106.3125 298.566406 106.40625 298.472656 106.40625 298.355469 Z M 106.40625 298.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.207031 297.53125 C 108.207031 297.414062 108.113281 297.320312 107.996094 297.320312 C 107.878906 297.320312 107.785156 297.414062 107.785156 297.53125 C 107.785156 297.648438 107.878906 297.742188 107.996094 297.742188 C 108.113281 297.742188 108.207031 297.648438 108.207031 297.53125 Z M 108.207031 297.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.878906 296.152344 C 108.878906 296.035156 108.785156 295.941406 108.667969 295.941406 C 108.550781 295.941406 108.457031 296.035156 108.457031 296.152344 C 108.457031 296.269531 108.550781 296.363281 108.667969 296.363281 C 108.785156 296.363281 108.878906 296.269531 108.878906 296.152344 Z M 108.878906 296.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.300781 296.335938 C 111.300781 296.21875 111.207031 296.125 111.089844 296.125 C 110.972656 296.125 110.878906 296.21875 110.878906 296.335938 C 110.878906 296.453125 110.972656 296.546875 111.089844 296.546875 C 111.207031 296.546875 111.300781 296.453125 111.300781 296.335938 Z M 111.300781 296.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.015625 297.726562 C 114.015625 297.609375 113.921875 297.515625 113.804688 297.515625 C 113.6875 297.515625 113.59375 297.609375 113.59375 297.726562 C 113.59375 297.84375 113.6875 297.9375 113.804688 297.9375 C 113.921875 297.9375 114.015625 297.84375 114.015625 297.726562 Z M 114.015625 297.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.441406 299.519531 C 117.441406 299.402344 117.347656 299.308594 117.230469 299.308594 C 117.113281 299.308594 117.019531 299.402344 117.019531 299.519531 C 117.019531 299.636719 117.113281 299.730469 117.230469 299.730469 C 117.347656 299.730469 117.441406 299.636719 117.441406 299.519531 Z M 117.441406 299.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.632812 299.660156 C 120.632812 299.542969 120.539062 299.449219 120.421875 299.449219 C 120.304688 299.449219 120.210938 299.542969 120.210938 299.660156 C 120.210938 299.777344 120.304688 299.871094 120.421875 299.871094 C 120.539062 299.871094 120.632812 299.777344 120.632812 299.660156 Z M 120.632812 299.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.046875 299.96875 C 119.046875 299.851562 118.953125 299.757812 118.835938 299.757812 C 118.71875 299.757812 118.625 299.851562 118.625 299.96875 C 118.625 300.085938 118.71875 300.179688 118.835938 300.179688 C 118.953125 300.179688 119.046875 300.085938 119.046875 299.96875 Z M 119.046875 299.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.996094 305.089844 C 115.996094 304.972656 115.902344 304.878906 115.785156 304.878906 C 115.667969 304.878906 115.574219 304.972656 115.574219 305.089844 C 115.574219 305.207031 115.667969 305.300781 115.785156 305.300781 C 115.902344 305.300781 115.996094 305.207031 115.996094 305.089844 Z M 115.996094 305.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.292969 304.375 C 116.292969 304.257812 116.199219 304.164062 116.082031 304.164062 C 115.964844 304.164062 115.871094 304.257812 115.871094 304.375 C 115.871094 304.492188 115.964844 304.585938 116.082031 304.585938 C 116.199219 304.585938 116.292969 304.492188 116.292969 304.375 Z M 116.292969 304.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.789062 304.984375 C 118.789062 304.867188 118.695312 304.773438 118.578125 304.773438 C 118.460938 304.773438 118.367188 304.867188 118.367188 304.984375 C 118.367188 305.101562 118.460938 305.195312 118.578125 305.195312 C 118.695312 305.195312 118.789062 305.101562 118.789062 304.984375 Z M 118.789062 304.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.144531 304.25 C 119.144531 304.132812 119.050781 304.039062 118.933594 304.039062 C 118.816406 304.039062 118.722656 304.132812 118.722656 304.25 C 118.722656 304.367188 118.816406 304.460938 118.933594 304.460938 C 119.050781 304.460938 119.144531 304.367188 119.144531 304.25 Z M 119.144531 304.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.648438 306.042969 C 119.648438 305.925781 119.554688 305.832031 119.4375 305.832031 C 119.320312 305.832031 119.226562 305.925781 119.226562 306.042969 C 119.226562 306.160156 119.320312 306.253906 119.4375 306.253906 C 119.554688 306.253906 119.648438 306.160156 119.648438 306.042969 Z M 119.648438 306.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.847656 306.261719 C 123.847656 306.144531 123.753906 306.050781 123.636719 306.050781 C 123.519531 306.050781 123.425781 306.144531 123.425781 306.261719 C 123.425781 306.378906 123.519531 306.472656 123.636719 306.472656 C 123.753906 306.472656 123.847656 306.378906 123.847656 306.261719 Z M 123.847656 306.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.117188 305.828125 C 125.117188 305.710938 125.023438 305.617188 124.90625 305.617188 C 124.789062 305.617188 124.695312 305.710938 124.695312 305.828125 C 124.695312 305.945312 124.789062 306.039062 124.90625 306.039062 C 125.023438 306.039062 125.117188 305.945312 125.117188 305.828125 Z M 125.117188 305.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.644531 309.757812 C 127.644531 309.640625 127.550781 309.546875 127.433594 309.546875 C 127.316406 309.546875 127.222656 309.640625 127.222656 309.757812 C 127.222656 309.875 127.316406 309.96875 127.433594 309.96875 C 127.550781 309.96875 127.644531 309.875 127.644531 309.757812 Z M 127.644531 309.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.871094 307.507812 C 125.871094 307.390625 125.777344 307.296875 125.660156 307.296875 C 125.542969 307.296875 125.449219 307.390625 125.449219 307.507812 C 125.449219 307.625 125.542969 307.71875 125.660156 307.71875 C 125.777344 307.71875 125.871094 307.625 125.871094 307.507812 Z M 125.871094 307.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126.0625 309.128906 C 126.0625 309.011719 125.96875 308.917969 125.851562 308.917969 C 125.734375 308.917969 125.640625 309.011719 125.640625 309.128906 C 125.640625 309.246094 125.734375 309.339844 125.851562 309.339844 C 125.96875 309.339844 126.0625 309.246094 126.0625 309.128906 Z M 126.0625 309.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.539062 306.300781 C 124.539062 306.183594 124.445312 306.089844 124.328125 306.089844 C 124.210938 306.089844 124.117188 306.183594 124.117188 306.300781 C 124.117188 306.417969 124.210938 306.511719 124.328125 306.511719 C 124.445312 306.511719 124.539062 306.417969 124.539062 306.300781 Z M 124.539062 306.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.957031 307.59375 C 119.957031 307.476562 119.863281 307.382812 119.746094 307.382812 C 119.628906 307.382812 119.535156 307.476562 119.535156 307.59375 C 119.535156 307.710938 119.628906 307.804688 119.746094 307.804688 C 119.863281 307.804688 119.957031 307.710938 119.957031 307.59375 Z M 119.957031 307.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.734375 309.035156 C 119.734375 308.917969 119.640625 308.824219 119.523438 308.824219 C 119.40625 308.824219 119.3125 308.917969 119.3125 309.035156 C 119.3125 309.152344 119.40625 309.246094 119.523438 309.246094 C 119.640625 309.246094 119.734375 309.152344 119.734375 309.035156 Z M 119.734375 309.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.808594 305.800781 C 124.808594 305.683594 124.714844 305.589844 124.597656 305.589844 C 124.480469 305.589844 124.386719 305.683594 124.386719 305.800781 C 124.386719 305.917969 124.480469 306.011719 124.597656 306.011719 C 124.714844 306.011719 124.808594 305.917969 124.808594 305.800781 Z M 124.808594 305.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.300781 307.300781 C 128.300781 307.183594 128.207031 307.089844 128.089844 307.089844 C 127.972656 307.089844 127.878906 307.183594 127.878906 307.300781 C 127.878906 307.417969 127.972656 307.511719 128.089844 307.511719 C 128.207031 307.511719 128.300781 307.417969 128.300781 307.300781 Z M 128.300781 307.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 133.992188 310.070312 C 133.992188 309.953125 133.898438 309.859375 133.78125 309.859375 C 133.664062 309.859375 133.570312 309.953125 133.570312 310.070312 C 133.570312 310.1875 133.664062 310.28125 133.78125 310.28125 C 133.898438 310.28125 133.992188 310.1875 133.992188 310.070312 Z M 133.992188 310.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.015625 309.859375 C 137.015625 309.742188 136.921875 309.648438 136.804688 309.648438 C 136.6875 309.648438 136.59375 309.742188 136.59375 309.859375 C 136.59375 309.976562 136.6875 310.070312 136.804688 310.070312 C 136.921875 310.070312 137.015625 309.976562 137.015625 309.859375 Z M 137.015625 309.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.421875 310.507812 C 136.421875 310.390625 136.328125 310.296875 136.210938 310.296875 C 136.09375 310.296875 136 310.390625 136 310.507812 C 136 310.625 136.09375 310.71875 136.210938 310.71875 C 136.328125 310.71875 136.421875 310.625 136.421875 310.507812 Z M 136.421875 310.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.488281 310.125 C 135.488281 310.007812 135.394531 309.914062 135.277344 309.914062 C 135.160156 309.914062 135.066406 310.007812 135.066406 310.125 C 135.066406 310.242188 135.160156 310.335938 135.277344 310.335938 C 135.394531 310.335938 135.488281 310.242188 135.488281 310.125 Z M 135.488281 310.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.347656 307.894531 C 137.347656 307.777344 137.253906 307.683594 137.136719 307.683594 C 137.019531 307.683594 136.925781 307.777344 136.925781 307.894531 C 136.925781 308.011719 137.019531 308.105469 137.136719 308.105469 C 137.253906 308.105469 137.347656 308.011719 137.347656 307.894531 Z M 137.347656 307.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.957031 306.582031 C 136.957031 306.464844 136.863281 306.371094 136.746094 306.371094 C 136.628906 306.371094 136.535156 306.464844 136.535156 306.582031 C 136.535156 306.699219 136.628906 306.792969 136.746094 306.792969 C 136.863281 306.792969 136.957031 306.699219 136.957031 306.582031 Z M 136.957031 306.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.710938 303.097656 C 136.710938 302.980469 136.617188 302.886719 136.5 302.886719 C 136.382812 302.886719 136.289062 302.980469 136.289062 303.097656 C 136.289062 303.214844 136.382812 303.308594 136.5 303.308594 C 136.617188 303.308594 136.710938 303.214844 136.710938 303.097656 Z M 136.710938 303.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.40625 301.449219 C 138.40625 301.332031 138.3125 301.238281 138.195312 301.238281 C 138.078125 301.238281 137.984375 301.332031 137.984375 301.449219 C 137.984375 301.566406 138.078125 301.660156 138.195312 301.660156 C 138.3125 301.660156 138.40625 301.566406 138.40625 301.449219 Z M 138.40625 301.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.5 303.203125 C 140.5 303.085938 140.40625 302.992188 140.289062 302.992188 C 140.171875 302.992188 140.078125 303.085938 140.078125 303.203125 C 140.078125 303.320312 140.171875 303.414062 140.289062 303.414062 C 140.40625 303.414062 140.5 303.320312 140.5 303.203125 Z M 140.5 303.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.636719 300.496094 C 139.636719 300.378906 139.542969 300.285156 139.425781 300.285156 C 139.308594 300.285156 139.214844 300.378906 139.214844 300.496094 C 139.214844 300.613281 139.308594 300.707031 139.425781 300.707031 C 139.542969 300.707031 139.636719 300.613281 139.636719 300.496094 Z M 139.636719 300.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.210938 300.941406 C 141.210938 300.824219 141.117188 300.730469 141 300.730469 C 140.882812 300.730469 140.789062 300.824219 140.789062 300.941406 C 140.789062 301.058594 140.882812 301.152344 141 301.152344 C 141.117188 301.152344 141.210938 301.058594 141.210938 300.941406 Z M 141.210938 300.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.019531 299.972656 C 141.019531 299.855469 140.925781 299.761719 140.808594 299.761719 C 140.691406 299.761719 140.597656 299.855469 140.597656 299.972656 C 140.597656 300.089844 140.691406 300.183594 140.808594 300.183594 C 140.925781 300.183594 141.019531 300.089844 141.019531 299.972656 Z M 141.019531 299.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.039062 301.453125 C 137.039062 301.335938 136.945312 301.242188 136.828125 301.242188 C 136.710938 301.242188 136.617188 301.335938 136.617188 301.453125 C 136.617188 301.570312 136.710938 301.664062 136.828125 301.664062 C 136.945312 301.664062 137.039062 301.570312 137.039062 301.453125 Z M 137.039062 301.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.496094 302.003906 C 136.496094 301.886719 136.402344 301.792969 136.285156 301.792969 C 136.167969 301.792969 136.074219 301.886719 136.074219 302.003906 C 136.074219 302.121094 136.167969 302.214844 136.285156 302.214844 C 136.402344 302.214844 136.496094 302.121094 136.496094 302.003906 Z M 136.496094 302.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 134.25 301.476562 C 134.25 301.359375 134.15625 301.265625 134.039062 301.265625 C 133.921875 301.265625 133.828125 301.359375 133.828125 301.476562 C 133.828125 301.59375 133.921875 301.6875 134.039062 301.6875 C 134.15625 301.6875 134.25 301.59375 134.25 301.476562 Z M 134.25 301.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.996094 299.636719 C 138.996094 299.519531 138.902344 299.425781 138.785156 299.425781 C 138.667969 299.425781 138.574219 299.519531 138.574219 299.636719 C 138.574219 299.753906 138.667969 299.847656 138.785156 299.847656 C 138.902344 299.847656 138.996094 299.753906 138.996094 299.636719 Z M 138.996094 299.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.667969 301.378906 C 141.667969 301.261719 141.574219 301.167969 141.457031 301.167969 C 141.339844 301.167969 141.246094 301.261719 141.246094 301.378906 C 141.246094 301.496094 141.339844 301.589844 141.457031 301.589844 C 141.574219 301.589844 141.667969 301.496094 141.667969 301.378906 Z M 141.667969 301.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.015625 300.300781 C 142.015625 300.183594 141.921875 300.089844 141.804688 300.089844 C 141.6875 300.089844 141.59375 300.183594 141.59375 300.300781 C 141.59375 300.417969 141.6875 300.511719 141.804688 300.511719 C 141.921875 300.511719 142.015625 300.417969 142.015625 300.300781 Z M 142.015625 300.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.242188 300.105469 C 144.242188 299.988281 144.148438 299.894531 144.03125 299.894531 C 143.914062 299.894531 143.820312 299.988281 143.820312 300.105469 C 143.820312 300.222656 143.914062 300.316406 144.03125 300.316406 C 144.148438 300.316406 144.242188 300.222656 144.242188 300.105469 Z M 144.242188 300.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.199219 302.011719 C 141.199219 301.894531 141.105469 301.800781 140.988281 301.800781 C 140.871094 301.800781 140.777344 301.894531 140.777344 302.011719 C 140.777344 302.128906 140.871094 302.222656 140.988281 302.222656 C 141.105469 302.222656 141.199219 302.128906 141.199219 302.011719 Z M 141.199219 302.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.535156 301.292969 C 138.535156 301.175781 138.441406 301.082031 138.324219 301.082031 C 138.207031 301.082031 138.113281 301.175781 138.113281 301.292969 C 138.113281 301.410156 138.207031 301.503906 138.324219 301.503906 C 138.441406 301.503906 138.535156 301.410156 138.535156 301.292969 Z M 138.535156 301.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.351562 300.199219 C 138.351562 300.082031 138.257812 299.988281 138.140625 299.988281 C 138.023438 299.988281 137.929688 300.082031 137.929688 300.199219 C 137.929688 300.316406 138.023438 300.410156 138.140625 300.410156 C 138.257812 300.410156 138.351562 300.316406 138.351562 300.199219 Z M 138.351562 300.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.722656 300.078125 C 139.722656 299.960938 139.628906 299.867188 139.511719 299.867188 C 139.394531 299.867188 139.300781 299.960938 139.300781 300.078125 C 139.300781 300.195312 139.394531 300.289062 139.511719 300.289062 C 139.628906 300.289062 139.722656 300.195312 139.722656 300.078125 Z M 139.722656 300.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.765625 299.589844 C 139.765625 299.472656 139.671875 299.378906 139.554688 299.378906 C 139.4375 299.378906 139.34375 299.472656 139.34375 299.589844 C 139.34375 299.707031 139.4375 299.800781 139.554688 299.800781 C 139.671875 299.800781 139.765625 299.707031 139.765625 299.589844 Z M 139.765625 299.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.308594 298.109375 C 141.308594 297.992188 141.214844 297.898438 141.097656 297.898438 C 140.980469 297.898438 140.886719 297.992188 140.886719 298.109375 C 140.886719 298.226562 140.980469 298.320312 141.097656 298.320312 C 141.214844 298.320312 141.308594 298.226562 141.308594 298.109375 Z M 141.308594 298.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.855469 298.621094 C 143.855469 298.503906 143.761719 298.410156 143.644531 298.410156 C 143.527344 298.410156 143.433594 298.503906 143.433594 298.621094 C 143.433594 298.738281 143.527344 298.832031 143.644531 298.832031 C 143.761719 298.832031 143.855469 298.738281 143.855469 298.621094 Z M 143.855469 298.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.714844 294.5 C 145.714844 294.382812 145.621094 294.289062 145.503906 294.289062 C 145.386719 294.289062 145.292969 294.382812 145.292969 294.5 C 145.292969 294.617188 145.386719 294.710938 145.503906 294.710938 C 145.621094 294.710938 145.714844 294.617188 145.714844 294.5 Z M 145.714844 294.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.0625 294.851562 C 145.0625 294.734375 144.96875 294.640625 144.851562 294.640625 C 144.734375 294.640625 144.640625 294.734375 144.640625 294.851562 C 144.640625 294.96875 144.734375 295.0625 144.851562 295.0625 C 144.96875 295.0625 145.0625 294.96875 145.0625 294.851562 Z M 145.0625 294.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.640625 296.007812 C 148.640625 295.890625 148.546875 295.796875 148.429688 295.796875 C 148.3125 295.796875 148.21875 295.890625 148.21875 296.007812 C 148.21875 296.125 148.3125 296.21875 148.429688 296.21875 C 148.546875 296.21875 148.640625 296.125 148.640625 296.007812 Z M 148.640625 296.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.792969 297.015625 C 149.792969 296.898438 149.699219 296.804688 149.582031 296.804688 C 149.464844 296.804688 149.371094 296.898438 149.371094 297.015625 C 149.371094 297.132812 149.464844 297.226562 149.582031 297.226562 C 149.699219 297.226562 149.792969 297.132812 149.792969 297.015625 Z M 149.792969 297.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.484375 297.484375 C 148.484375 297.367188 148.390625 297.273438 148.273438 297.273438 C 148.15625 297.273438 148.0625 297.367188 148.0625 297.484375 C 148.0625 297.601562 148.15625 297.695312 148.273438 297.695312 C 148.390625 297.695312 148.484375 297.601562 148.484375 297.484375 Z M 148.484375 297.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.828125 298.175781 C 148.828125 298.058594 148.734375 297.964844 148.617188 297.964844 C 148.5 297.964844 148.40625 298.058594 148.40625 298.175781 C 148.40625 298.292969 148.5 298.386719 148.617188 298.386719 C 148.734375 298.386719 148.828125 298.292969 148.828125 298.175781 Z M 148.828125 298.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.6875 301.300781 C 153.6875 301.183594 153.59375 301.089844 153.476562 301.089844 C 153.359375 301.089844 153.265625 301.183594 153.265625 301.300781 C 153.265625 301.417969 153.359375 301.511719 153.476562 301.511719 C 153.59375 301.511719 153.6875 301.417969 153.6875 301.300781 Z M 153.6875 301.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.984375 302.808594 C 152.984375 302.691406 152.890625 302.597656 152.773438 302.597656 C 152.65625 302.597656 152.5625 302.691406 152.5625 302.808594 C 152.5625 302.925781 152.65625 303.019531 152.773438 303.019531 C 152.890625 303.019531 152.984375 302.925781 152.984375 302.808594 Z M 152.984375 302.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.894531 303.632812 C 148.894531 303.515625 148.800781 303.421875 148.683594 303.421875 C 148.566406 303.421875 148.472656 303.515625 148.472656 303.632812 C 148.472656 303.75 148.566406 303.84375 148.683594 303.84375 C 148.800781 303.84375 148.894531 303.75 148.894531 303.632812 Z M 148.894531 303.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.351562 304.253906 C 149.351562 304.136719 149.257812 304.042969 149.140625 304.042969 C 149.023438 304.042969 148.929688 304.136719 148.929688 304.253906 C 148.929688 304.371094 149.023438 304.464844 149.140625 304.464844 C 149.257812 304.464844 149.351562 304.371094 149.351562 304.253906 Z M 149.351562 304.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.496094 303.273438 C 148.496094 303.15625 148.402344 303.0625 148.285156 303.0625 C 148.167969 303.0625 148.074219 303.15625 148.074219 303.273438 C 148.074219 303.390625 148.167969 303.484375 148.285156 303.484375 C 148.402344 303.484375 148.496094 303.390625 148.496094 303.273438 Z M 148.496094 303.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.339844 301.585938 C 145.339844 301.46875 145.246094 301.375 145.128906 301.375 C 145.011719 301.375 144.917969 301.46875 144.917969 301.585938 C 144.917969 301.703125 145.011719 301.796875 145.128906 301.796875 C 145.246094 301.796875 145.339844 301.703125 145.339844 301.585938 Z M 145.339844 301.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.410156 305.617188 C 147.410156 305.5 147.316406 305.40625 147.199219 305.40625 C 147.082031 305.40625 146.988281 305.5 146.988281 305.617188 C 146.988281 305.734375 147.082031 305.828125 147.199219 305.828125 C 147.316406 305.828125 147.410156 305.734375 147.410156 305.617188 Z M 147.410156 305.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.007812 304.699219 C 146.007812 304.582031 145.914062 304.488281 145.796875 304.488281 C 145.679688 304.488281 145.585938 304.582031 145.585938 304.699219 C 145.585938 304.816406 145.679688 304.910156 145.796875 304.910156 C 145.914062 304.910156 146.007812 304.816406 146.007812 304.699219 Z M 146.007812 304.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.15625 305.007812 C 148.15625 304.890625 148.0625 304.796875 147.945312 304.796875 C 147.828125 304.796875 147.734375 304.890625 147.734375 305.007812 C 147.734375 305.125 147.828125 305.21875 147.945312 305.21875 C 148.0625 305.21875 148.15625 305.125 148.15625 305.007812 Z M 148.15625 305.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.585938 306.742188 C 149.585938 306.625 149.492188 306.53125 149.375 306.53125 C 149.257812 306.53125 149.164062 306.625 149.164062 306.742188 C 149.164062 306.859375 149.257812 306.953125 149.375 306.953125 C 149.492188 306.953125 149.585938 306.859375 149.585938 306.742188 Z M 149.585938 306.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.84375 305.714844 C 151.84375 305.597656 151.75 305.503906 151.632812 305.503906 C 151.515625 305.503906 151.421875 305.597656 151.421875 305.714844 C 151.421875 305.832031 151.515625 305.925781 151.632812 305.925781 C 151.75 305.925781 151.84375 305.832031 151.84375 305.714844 Z M 151.84375 305.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.242188 302.519531 C 151.242188 302.402344 151.148438 302.308594 151.03125 302.308594 C 150.914062 302.308594 150.820312 302.402344 150.820312 302.519531 C 150.820312 302.636719 150.914062 302.730469 151.03125 302.730469 C 151.148438 302.730469 151.242188 302.636719 151.242188 302.519531 Z M 151.242188 302.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.078125 302.882812 C 152.078125 302.765625 151.984375 302.671875 151.867188 302.671875 C 151.75 302.671875 151.65625 302.765625 151.65625 302.882812 C 151.65625 303 151.75 303.09375 151.867188 303.09375 C 151.984375 303.09375 152.078125 303 152.078125 302.882812 Z M 152.078125 302.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.5 302.121094 C 149.5 302.003906 149.40625 301.910156 149.289062 301.910156 C 149.171875 301.910156 149.078125 302.003906 149.078125 302.121094 C 149.078125 302.238281 149.171875 302.332031 149.289062 302.332031 C 149.40625 302.332031 149.5 302.238281 149.5 302.121094 Z M 149.5 302.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.875 304.757812 C 148.875 304.640625 148.78125 304.546875 148.664062 304.546875 C 148.546875 304.546875 148.453125 304.640625 148.453125 304.757812 C 148.453125 304.875 148.546875 304.96875 148.664062 304.96875 C 148.78125 304.96875 148.875 304.875 148.875 304.757812 Z M 148.875 304.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.828125 305.183594 C 149.828125 305.066406 149.734375 304.972656 149.617188 304.972656 C 149.5 304.972656 149.40625 305.066406 149.40625 305.183594 C 149.40625 305.300781 149.5 305.394531 149.617188 305.394531 C 149.734375 305.394531 149.828125 305.300781 149.828125 305.183594 Z M 149.828125 305.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.332031 306.570312 C 148.332031 306.453125 148.238281 306.359375 148.121094 306.359375 C 148.003906 306.359375 147.910156 306.453125 147.910156 306.570312 C 147.910156 306.6875 148.003906 306.78125 148.121094 306.78125 C 148.238281 306.78125 148.332031 306.6875 148.332031 306.570312 Z M 148.332031 306.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.945312 307.25 C 148.945312 307.132812 148.851562 307.039062 148.734375 307.039062 C 148.617188 307.039062 148.523438 307.132812 148.523438 307.25 C 148.523438 307.367188 148.617188 307.460938 148.734375 307.460938 C 148.851562 307.460938 148.945312 307.367188 148.945312 307.25 Z M 148.945312 307.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.441406 303.054688 C 152.441406 302.9375 152.347656 302.84375 152.230469 302.84375 C 152.113281 302.84375 152.019531 302.9375 152.019531 303.054688 C 152.019531 303.171875 152.113281 303.265625 152.230469 303.265625 C 152.347656 303.265625 152.441406 303.171875 152.441406 303.054688 Z M 152.441406 303.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.027344 301.644531 C 152.027344 301.527344 151.933594 301.433594 151.816406 301.433594 C 151.699219 301.433594 151.605469 301.527344 151.605469 301.644531 C 151.605469 301.761719 151.699219 301.855469 151.816406 301.855469 C 151.933594 301.855469 152.027344 301.761719 152.027344 301.644531 Z M 152.027344 301.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149 304.160156 C 149 304.042969 148.90625 303.949219 148.789062 303.949219 C 148.671875 303.949219 148.578125 304.042969 148.578125 304.160156 C 148.578125 304.277344 148.671875 304.371094 148.789062 304.371094 C 148.90625 304.371094 149 304.277344 149 304.160156 Z M 149 304.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.050781 300.96875 C 151.050781 300.851562 150.957031 300.757812 150.839844 300.757812 C 150.722656 300.757812 150.628906 300.851562 150.628906 300.96875 C 150.628906 301.085938 150.722656 301.179688 150.839844 301.179688 C 150.957031 301.179688 151.050781 301.085938 151.050781 300.96875 Z M 151.050781 300.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.515625 300.496094 C 150.515625 300.378906 150.421875 300.285156 150.304688 300.285156 C 150.1875 300.285156 150.09375 300.378906 150.09375 300.496094 C 150.09375 300.613281 150.1875 300.707031 150.304688 300.707031 C 150.421875 300.707031 150.515625 300.613281 150.515625 300.496094 Z M 150.515625 300.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.753906 299.203125 C 152.753906 299.085938 152.660156 298.992188 152.542969 298.992188 C 152.425781 298.992188 152.332031 299.085938 152.332031 299.203125 C 152.332031 299.320312 152.425781 299.414062 152.542969 299.414062 C 152.660156 299.414062 152.753906 299.320312 152.753906 299.203125 Z M 152.753906 299.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.050781 296.902344 C 152.050781 296.785156 151.957031 296.691406 151.839844 296.691406 C 151.722656 296.691406 151.628906 296.785156 151.628906 296.902344 C 151.628906 297.019531 151.722656 297.113281 151.839844 297.113281 C 151.957031 297.113281 152.050781 297.019531 152.050781 296.902344 Z M 152.050781 296.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.871094 295.953125 C 150.871094 295.835938 150.777344 295.742188 150.660156 295.742188 C 150.542969 295.742188 150.449219 295.835938 150.449219 295.953125 C 150.449219 296.070312 150.542969 296.164062 150.660156 296.164062 C 150.777344 296.164062 150.871094 296.070312 150.871094 295.953125 Z M 150.871094 295.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.558594 297.929688 C 155.558594 297.8125 155.464844 297.71875 155.347656 297.71875 C 155.230469 297.71875 155.136719 297.8125 155.136719 297.929688 C 155.136719 298.046875 155.230469 298.140625 155.347656 298.140625 C 155.464844 298.140625 155.558594 298.046875 155.558594 297.929688 Z M 155.558594 297.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.300781 295.3125 C 153.300781 295.195312 153.207031 295.101562 153.089844 295.101562 C 152.972656 295.101562 152.878906 295.195312 152.878906 295.3125 C 152.878906 295.429688 152.972656 295.523438 153.089844 295.523438 C 153.207031 295.523438 153.300781 295.429688 153.300781 295.3125 Z M 153.300781 295.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.75 294.78125 C 150.75 294.664062 150.65625 294.570312 150.539062 294.570312 C 150.421875 294.570312 150.328125 294.664062 150.328125 294.78125 C 150.328125 294.898438 150.421875 294.992188 150.539062 294.992188 C 150.65625 294.992188 150.75 294.898438 150.75 294.78125 Z M 150.75 294.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.890625 296.960938 C 146.890625 296.84375 146.796875 296.75 146.679688 296.75 C 146.5625 296.75 146.46875 296.84375 146.46875 296.960938 C 146.46875 297.078125 146.5625 297.171875 146.679688 297.171875 C 146.796875 297.171875 146.890625 297.078125 146.890625 296.960938 Z M 146.890625 296.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.914062 299.769531 C 147.914062 299.652344 147.820312 299.558594 147.703125 299.558594 C 147.585938 299.558594 147.492188 299.652344 147.492188 299.769531 C 147.492188 299.886719 147.585938 299.980469 147.703125 299.980469 C 147.820312 299.980469 147.914062 299.886719 147.914062 299.769531 Z M 147.914062 299.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.933594 299.5625 C 146.933594 299.445312 146.839844 299.351562 146.722656 299.351562 C 146.605469 299.351562 146.511719 299.445312 146.511719 299.5625 C 146.511719 299.679688 146.605469 299.773438 146.722656 299.773438 C 146.839844 299.773438 146.933594 299.679688 146.933594 299.5625 Z M 146.933594 299.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.519531 301.148438 C 146.519531 301.03125 146.425781 300.9375 146.308594 300.9375 C 146.191406 300.9375 146.097656 301.03125 146.097656 301.148438 C 146.097656 301.265625 146.191406 301.359375 146.308594 301.359375 C 146.425781 301.359375 146.519531 301.265625 146.519531 301.148438 Z M 146.519531 301.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.039062 300.066406 C 147.039062 299.949219 146.945312 299.855469 146.828125 299.855469 C 146.710938 299.855469 146.617188 299.949219 146.617188 300.066406 C 146.617188 300.183594 146.710938 300.277344 146.828125 300.277344 C 146.945312 300.277344 147.039062 300.183594 147.039062 300.066406 Z M 147.039062 300.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.871094 299.949219 C 150.871094 299.832031 150.777344 299.738281 150.660156 299.738281 C 150.542969 299.738281 150.449219 299.832031 150.449219 299.949219 C 150.449219 300.066406 150.542969 300.160156 150.660156 300.160156 C 150.777344 300.160156 150.871094 300.066406 150.871094 299.949219 Z M 150.871094 299.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.21875 298.296875 C 151.21875 298.179688 151.125 298.085938 151.007812 298.085938 C 150.890625 298.085938 150.796875 298.179688 150.796875 298.296875 C 150.796875 298.414062 150.890625 298.507812 151.007812 298.507812 C 151.125 298.507812 151.21875 298.414062 151.21875 298.296875 Z M 151.21875 298.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.015625 300.050781 C 150.015625 299.933594 149.921875 299.839844 149.804688 299.839844 C 149.6875 299.839844 149.59375 299.933594 149.59375 300.050781 C 149.59375 300.167969 149.6875 300.261719 149.804688 300.261719 C 149.921875 300.261719 150.015625 300.167969 150.015625 300.050781 Z M 150.015625 300.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.824219 298.730469 C 152.824219 298.613281 152.730469 298.519531 152.613281 298.519531 C 152.496094 298.519531 152.402344 298.613281 152.402344 298.730469 C 152.402344 298.847656 152.496094 298.941406 152.613281 298.941406 C 152.730469 298.941406 152.824219 298.847656 152.824219 298.730469 Z M 152.824219 298.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.050781 295.421875 C 148.050781 295.304688 147.957031 295.210938 147.839844 295.210938 C 147.722656 295.210938 147.628906 295.304688 147.628906 295.421875 C 147.628906 295.539062 147.722656 295.632812 147.839844 295.632812 C 147.957031 295.632812 148.050781 295.539062 148.050781 295.421875 Z M 148.050781 295.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.03125 294.945312 C 149.03125 294.828125 148.9375 294.734375 148.820312 294.734375 C 148.703125 294.734375 148.609375 294.828125 148.609375 294.945312 C 148.609375 295.0625 148.703125 295.15625 148.820312 295.15625 C 148.9375 295.15625 149.03125 295.0625 149.03125 294.945312 Z M 149.03125 294.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.695312 295.535156 C 147.695312 295.417969 147.601562 295.324219 147.484375 295.324219 C 147.367188 295.324219 147.273438 295.417969 147.273438 295.535156 C 147.273438 295.652344 147.367188 295.746094 147.484375 295.746094 C 147.601562 295.746094 147.695312 295.652344 147.695312 295.535156 Z M 147.695312 295.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.371094 293.675781 C 142.371094 293.558594 142.277344 293.464844 142.160156 293.464844 C 142.042969 293.464844 141.949219 293.558594 141.949219 293.675781 C 141.949219 293.792969 142.042969 293.886719 142.160156 293.886719 C 142.277344 293.886719 142.371094 293.792969 142.371094 293.675781 Z M 142.371094 293.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.449219 292.335938 C 145.449219 292.21875 145.355469 292.125 145.238281 292.125 C 145.121094 292.125 145.027344 292.21875 145.027344 292.335938 C 145.027344 292.453125 145.121094 292.546875 145.238281 292.546875 C 145.355469 292.546875 145.449219 292.453125 145.449219 292.335938 Z M 145.449219 292.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.785156 291.574219 C 144.785156 291.457031 144.691406 291.363281 144.574219 291.363281 C 144.457031 291.363281 144.363281 291.457031 144.363281 291.574219 C 144.363281 291.691406 144.457031 291.785156 144.574219 291.785156 C 144.691406 291.785156 144.785156 291.691406 144.785156 291.574219 Z M 144.785156 291.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.257812 293.597656 C 144.257812 293.480469 144.164062 293.386719 144.046875 293.386719 C 143.929688 293.386719 143.835938 293.480469 143.835938 293.597656 C 143.835938 293.714844 143.929688 293.808594 144.046875 293.808594 C 144.164062 293.808594 144.257812 293.714844 144.257812 293.597656 Z M 144.257812 293.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.125 294.867188 C 139.125 294.75 139.03125 294.65625 138.914062 294.65625 C 138.796875 294.65625 138.703125 294.75 138.703125 294.867188 C 138.703125 294.984375 138.796875 295.078125 138.914062 295.078125 C 139.03125 295.078125 139.125 294.984375 139.125 294.867188 Z M 139.125 294.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.925781 296.089844 C 138.925781 295.972656 138.832031 295.878906 138.714844 295.878906 C 138.597656 295.878906 138.503906 295.972656 138.503906 296.089844 C 138.503906 296.207031 138.597656 296.300781 138.714844 296.300781 C 138.832031 296.300781 138.925781 296.207031 138.925781 296.089844 Z M 138.925781 296.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.761719 294.082031 C 140.761719 293.964844 140.667969 293.871094 140.550781 293.871094 C 140.433594 293.871094 140.339844 293.964844 140.339844 294.082031 C 140.339844 294.199219 140.433594 294.292969 140.550781 294.292969 C 140.667969 294.292969 140.761719 294.199219 140.761719 294.082031 Z M 140.761719 294.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.996094 292.984375 C 142.996094 292.867188 142.902344 292.773438 142.785156 292.773438 C 142.667969 292.773438 142.574219 292.867188 142.574219 292.984375 C 142.574219 293.101562 142.667969 293.195312 142.785156 293.195312 C 142.902344 293.195312 142.996094 293.101562 142.996094 292.984375 Z M 142.996094 292.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.78125 292.9375 C 144.78125 292.820312 144.6875 292.726562 144.570312 292.726562 C 144.453125 292.726562 144.359375 292.820312 144.359375 292.9375 C 144.359375 293.054688 144.453125 293.148438 144.570312 293.148438 C 144.6875 293.148438 144.78125 293.054688 144.78125 292.9375 Z M 144.78125 292.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.476562 291.058594 C 142.476562 290.941406 142.382812 290.847656 142.265625 290.847656 C 142.148438 290.847656 142.054688 290.941406 142.054688 291.058594 C 142.054688 291.175781 142.148438 291.269531 142.265625 291.269531 C 142.382812 291.269531 142.476562 291.175781 142.476562 291.058594 Z M 142.476562 291.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.585938 290.226562 C 140.585938 290.109375 140.492188 290.015625 140.375 290.015625 C 140.257812 290.015625 140.164062 290.109375 140.164062 290.226562 C 140.164062 290.34375 140.257812 290.4375 140.375 290.4375 C 140.492188 290.4375 140.585938 290.34375 140.585938 290.226562 Z M 140.585938 290.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.433594 288.71875 C 140.433594 288.601562 140.339844 288.507812 140.222656 288.507812 C 140.105469 288.507812 140.011719 288.601562 140.011719 288.71875 C 140.011719 288.835938 140.105469 288.929688 140.222656 288.929688 C 140.339844 288.929688 140.433594 288.835938 140.433594 288.71875 Z M 140.433594 288.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.394531 290.195312 C 141.394531 290.078125 141.300781 289.984375 141.183594 289.984375 C 141.066406 289.984375 140.972656 290.078125 140.972656 290.195312 C 140.972656 290.3125 141.066406 290.40625 141.183594 290.40625 C 141.300781 290.40625 141.394531 290.3125 141.394531 290.195312 Z M 141.394531 290.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.199219 288.257812 C 141.199219 288.140625 141.105469 288.046875 140.988281 288.046875 C 140.871094 288.046875 140.777344 288.140625 140.777344 288.257812 C 140.777344 288.375 140.871094 288.46875 140.988281 288.46875 C 141.105469 288.46875 141.199219 288.375 141.199219 288.257812 Z M 141.199219 288.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.574219 287.351562 C 143.574219 287.234375 143.480469 287.140625 143.363281 287.140625 C 143.246094 287.140625 143.152344 287.234375 143.152344 287.351562 C 143.152344 287.46875 143.246094 287.5625 143.363281 287.5625 C 143.480469 287.5625 143.574219 287.46875 143.574219 287.351562 Z M 143.574219 287.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.914062 285.210938 C 140.914062 285.09375 140.820312 285 140.703125 285 C 140.585938 285 140.492188 285.09375 140.492188 285.210938 C 140.492188 285.328125 140.585938 285.421875 140.703125 285.421875 C 140.820312 285.421875 140.914062 285.328125 140.914062 285.210938 Z M 140.914062 285.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.722656 287.523438 C 142.722656 287.40625 142.628906 287.3125 142.511719 287.3125 C 142.394531 287.3125 142.300781 287.40625 142.300781 287.523438 C 142.300781 287.640625 142.394531 287.734375 142.511719 287.734375 C 142.628906 287.734375 142.722656 287.640625 142.722656 287.523438 Z M 142.722656 287.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.855469 286.765625 C 140.855469 286.648438 140.761719 286.554688 140.644531 286.554688 C 140.527344 286.554688 140.433594 286.648438 140.433594 286.765625 C 140.433594 286.882812 140.527344 286.976562 140.644531 286.976562 C 140.761719 286.976562 140.855469 286.882812 140.855469 286.765625 Z M 140.855469 286.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.285156 287.574219 C 140.285156 287.457031 140.191406 287.363281 140.074219 287.363281 C 139.957031 287.363281 139.863281 287.457031 139.863281 287.574219 C 139.863281 287.691406 139.957031 287.785156 140.074219 287.785156 C 140.191406 287.785156 140.285156 287.691406 140.285156 287.574219 Z M 140.285156 287.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.316406 285.148438 C 140.316406 285.03125 140.222656 284.9375 140.105469 284.9375 C 139.988281 284.9375 139.894531 285.03125 139.894531 285.148438 C 139.894531 285.265625 139.988281 285.359375 140.105469 285.359375 C 140.222656 285.359375 140.316406 285.265625 140.316406 285.148438 Z M 140.316406 285.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.160156 288.21875 C 138.160156 288.101562 138.066406 288.007812 137.949219 288.007812 C 137.832031 288.007812 137.738281 288.101562 137.738281 288.21875 C 137.738281 288.335938 137.832031 288.429688 137.949219 288.429688 C 138.066406 288.429688 138.160156 288.335938 138.160156 288.21875 Z M 138.160156 288.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.496094 288.050781 C 138.496094 287.933594 138.402344 287.839844 138.285156 287.839844 C 138.167969 287.839844 138.074219 287.933594 138.074219 288.050781 C 138.074219 288.167969 138.167969 288.261719 138.285156 288.261719 C 138.402344 288.261719 138.496094 288.167969 138.496094 288.050781 Z M 138.496094 288.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.972656 287.148438 C 135.972656 287.03125 135.878906 286.9375 135.761719 286.9375 C 135.644531 286.9375 135.550781 287.03125 135.550781 287.148438 C 135.550781 287.265625 135.644531 287.359375 135.761719 287.359375 C 135.878906 287.359375 135.972656 287.265625 135.972656 287.148438 Z M 135.972656 287.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.472656 284.199219 C 132.472656 284.082031 132.378906 283.988281 132.261719 283.988281 C 132.144531 283.988281 132.050781 284.082031 132.050781 284.199219 C 132.050781 284.316406 132.144531 284.410156 132.261719 284.410156 C 132.378906 284.410156 132.472656 284.316406 132.472656 284.199219 Z M 132.472656 284.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.34375 284.992188 C 129.34375 284.875 129.25 284.78125 129.132812 284.78125 C 129.015625 284.78125 128.921875 284.875 128.921875 284.992188 C 128.921875 285.109375 129.015625 285.203125 129.132812 285.203125 C 129.25 285.203125 129.34375 285.109375 129.34375 284.992188 Z M 129.34375 284.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.636719 283.292969 C 127.636719 283.175781 127.542969 283.082031 127.425781 283.082031 C 127.308594 283.082031 127.214844 283.175781 127.214844 283.292969 C 127.214844 283.410156 127.308594 283.503906 127.425781 283.503906 C 127.542969 283.503906 127.636719 283.410156 127.636719 283.292969 Z M 127.636719 283.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126.171875 284.417969 C 126.171875 284.300781 126.078125 284.207031 125.960938 284.207031 C 125.84375 284.207031 125.75 284.300781 125.75 284.417969 C 125.75 284.535156 125.84375 284.628906 125.960938 284.628906 C 126.078125 284.628906 126.171875 284.535156 126.171875 284.417969 Z M 126.171875 284.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126.285156 287.472656 C 126.285156 287.355469 126.191406 287.261719 126.074219 287.261719 C 125.957031 287.261719 125.863281 287.355469 125.863281 287.472656 C 125.863281 287.589844 125.957031 287.683594 126.074219 287.683594 C 126.191406 287.683594 126.285156 287.589844 126.285156 287.472656 Z M 126.285156 287.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.957031 289.484375 C 127.957031 289.367188 127.863281 289.273438 127.746094 289.273438 C 127.628906 289.273438 127.535156 289.367188 127.535156 289.484375 C 127.535156 289.601562 127.628906 289.695312 127.746094 289.695312 C 127.863281 289.695312 127.957031 289.601562 127.957031 289.484375 Z M 127.957031 289.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126.585938 287.121094 C 126.585938 287.003906 126.492188 286.910156 126.375 286.910156 C 126.257812 286.910156 126.164062 287.003906 126.164062 287.121094 C 126.164062 287.238281 126.257812 287.332031 126.375 287.332031 C 126.492188 287.332031 126.585938 287.238281 126.585938 287.121094 Z M 126.585938 287.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.714844 287.117188 C 127.714844 287 127.621094 286.90625 127.503906 286.90625 C 127.386719 286.90625 127.292969 287 127.292969 287.117188 C 127.292969 287.234375 127.386719 287.328125 127.503906 287.328125 C 127.621094 287.328125 127.714844 287.234375 127.714844 287.117188 Z M 127.714844 287.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.914062 284.628906 C 128.914062 284.511719 128.820312 284.417969 128.703125 284.417969 C 128.585938 284.417969 128.492188 284.511719 128.492188 284.628906 C 128.492188 284.746094 128.585938 284.839844 128.703125 284.839844 C 128.820312 284.839844 128.914062 284.746094 128.914062 284.628906 Z M 128.914062 284.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.386719 280.707031 C 128.386719 280.589844 128.292969 280.496094 128.175781 280.496094 C 128.058594 280.496094 127.964844 280.589844 127.964844 280.707031 C 127.964844 280.824219 128.058594 280.917969 128.175781 280.917969 C 128.292969 280.917969 128.386719 280.824219 128.386719 280.707031 Z M 128.386719 280.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.074219 282.277344 C 129.074219 282.160156 128.980469 282.066406 128.863281 282.066406 C 128.746094 282.066406 128.652344 282.160156 128.652344 282.277344 C 128.652344 282.394531 128.746094 282.488281 128.863281 282.488281 C 128.980469 282.488281 129.074219 282.394531 129.074219 282.277344 Z M 129.074219 282.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.210938 280.425781 C 127.210938 280.308594 127.117188 280.214844 127 280.214844 C 126.882812 280.214844 126.789062 280.308594 126.789062 280.425781 C 126.789062 280.542969 126.882812 280.636719 127 280.636719 C 127.117188 280.636719 127.210938 280.542969 127.210938 280.425781 Z M 127.210938 280.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.117188 278.527344 C 124.117188 278.410156 124.023438 278.316406 123.90625 278.316406 C 123.789062 278.316406 123.695312 278.410156 123.695312 278.527344 C 123.695312 278.644531 123.789062 278.738281 123.90625 278.738281 C 124.023438 278.738281 124.117188 278.644531 124.117188 278.527344 Z M 124.117188 278.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126.304688 278.285156 C 126.304688 278.167969 126.210938 278.074219 126.09375 278.074219 C 125.976562 278.074219 125.882812 278.167969 125.882812 278.285156 C 125.882812 278.402344 125.976562 278.496094 126.09375 278.496094 C 126.210938 278.496094 126.304688 278.402344 126.304688 278.285156 Z M 126.304688 278.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.832031 276.46875 C 123.832031 276.351562 123.738281 276.257812 123.621094 276.257812 C 123.503906 276.257812 123.410156 276.351562 123.410156 276.46875 C 123.410156 276.585938 123.503906 276.679688 123.621094 276.679688 C 123.738281 276.679688 123.832031 276.585938 123.832031 276.46875 Z M 123.832031 276.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.757812 278.085938 C 121.757812 277.96875 121.664062 277.875 121.546875 277.875 C 121.429688 277.875 121.335938 277.96875 121.335938 278.085938 C 121.335938 278.203125 121.429688 278.296875 121.546875 278.296875 C 121.664062 278.296875 121.757812 278.203125 121.757812 278.085938 Z M 121.757812 278.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.324219 279.96875 C 124.324219 279.851562 124.230469 279.757812 124.113281 279.757812 C 123.996094 279.757812 123.902344 279.851562 123.902344 279.96875 C 123.902344 280.085938 123.996094 280.179688 124.113281 280.179688 C 124.230469 280.179688 124.324219 280.085938 124.324219 279.96875 Z M 124.324219 279.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.613281 279.414062 C 122.613281 279.296875 122.519531 279.203125 122.402344 279.203125 C 122.285156 279.203125 122.191406 279.296875 122.191406 279.414062 C 122.191406 279.53125 122.285156 279.625 122.402344 279.625 C 122.519531 279.625 122.613281 279.53125 122.613281 279.414062 Z M 122.613281 279.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.105469 279.203125 C 123.105469 279.085938 123.011719 278.992188 122.894531 278.992188 C 122.777344 278.992188 122.683594 279.085938 122.683594 279.203125 C 122.683594 279.320312 122.777344 279.414062 122.894531 279.414062 C 123.011719 279.414062 123.105469 279.320312 123.105469 279.203125 Z M 123.105469 279.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.5625 278.929688 C 123.5625 278.8125 123.46875 278.71875 123.351562 278.71875 C 123.234375 278.71875 123.140625 278.8125 123.140625 278.929688 C 123.140625 279.046875 123.234375 279.140625 123.351562 279.140625 C 123.46875 279.140625 123.5625 279.046875 123.5625 278.929688 Z M 123.5625 278.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.648438 281.050781 C 117.648438 280.933594 117.554688 280.839844 117.4375 280.839844 C 117.320312 280.839844 117.226562 280.933594 117.226562 281.050781 C 117.226562 281.167969 117.320312 281.261719 117.4375 281.261719 C 117.554688 281.261719 117.648438 281.167969 117.648438 281.050781 Z M 117.648438 281.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.984375 283.773438 C 115.984375 283.65625 115.890625 283.5625 115.773438 283.5625 C 115.65625 283.5625 115.5625 283.65625 115.5625 283.773438 C 115.5625 283.890625 115.65625 283.984375 115.773438 283.984375 C 115.890625 283.984375 115.984375 283.890625 115.984375 283.773438 Z M 115.984375 283.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.566406 284.519531 C 113.566406 284.402344 113.472656 284.308594 113.355469 284.308594 C 113.238281 284.308594 113.144531 284.402344 113.144531 284.519531 C 113.144531 284.636719 113.238281 284.730469 113.355469 284.730469 C 113.472656 284.730469 113.566406 284.636719 113.566406 284.519531 Z M 113.566406 284.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.25 285.195312 C 116.25 285.078125 116.15625 284.984375 116.039062 284.984375 C 115.921875 284.984375 115.828125 285.078125 115.828125 285.195312 C 115.828125 285.3125 115.921875 285.40625 116.039062 285.40625 C 116.15625 285.40625 116.25 285.3125 116.25 285.195312 Z M 116.25 285.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.617188 283.378906 C 116.617188 283.261719 116.523438 283.167969 116.40625 283.167969 C 116.289062 283.167969 116.195312 283.261719 116.195312 283.378906 C 116.195312 283.496094 116.289062 283.589844 116.40625 283.589844 C 116.523438 283.589844 116.617188 283.496094 116.617188 283.378906 Z M 116.617188 283.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.058594 284.460938 C 116.058594 284.34375 115.964844 284.25 115.847656 284.25 C 115.730469 284.25 115.636719 284.34375 115.636719 284.460938 C 115.636719 284.578125 115.730469 284.671875 115.847656 284.671875 C 115.964844 284.671875 116.058594 284.578125 116.058594 284.460938 Z M 116.058594 284.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.992188 287.25 C 115.992188 287.132812 115.898438 287.039062 115.78125 287.039062 C 115.664062 287.039062 115.570312 287.132812 115.570312 287.25 C 115.570312 287.367188 115.664062 287.460938 115.78125 287.460938 C 115.898438 287.460938 115.992188 287.367188 115.992188 287.25 Z M 115.992188 287.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.65625 290.609375 C 119.65625 290.492188 119.5625 290.398438 119.445312 290.398438 C 119.328125 290.398438 119.234375 290.492188 119.234375 290.609375 C 119.234375 290.726562 119.328125 290.820312 119.445312 290.820312 C 119.5625 290.820312 119.65625 290.726562 119.65625 290.609375 Z M 119.65625 290.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.742188 290.941406 C 116.742188 290.824219 116.648438 290.730469 116.53125 290.730469 C 116.414062 290.730469 116.320312 290.824219 116.320312 290.941406 C 116.320312 291.058594 116.414062 291.152344 116.53125 291.152344 C 116.648438 291.152344 116.742188 291.058594 116.742188 290.941406 Z M 116.742188 290.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.34375 290.238281 C 117.34375 290.121094 117.25 290.027344 117.132812 290.027344 C 117.015625 290.027344 116.921875 290.121094 116.921875 290.238281 C 116.921875 290.355469 117.015625 290.449219 117.132812 290.449219 C 117.25 290.449219 117.34375 290.355469 117.34375 290.238281 Z M 117.34375 290.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.011719 291.160156 C 115.011719 291.042969 114.917969 290.949219 114.800781 290.949219 C 114.683594 290.949219 114.589844 291.042969 114.589844 291.160156 C 114.589844 291.277344 114.683594 291.371094 114.800781 291.371094 C 114.917969 291.371094 115.011719 291.277344 115.011719 291.160156 Z M 115.011719 291.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.824219 297.1875 C 112.824219 297.070312 112.730469 296.976562 112.613281 296.976562 C 112.496094 296.976562 112.402344 297.070312 112.402344 297.1875 C 112.402344 297.304688 112.496094 297.398438 112.613281 297.398438 C 112.730469 297.398438 112.824219 297.304688 112.824219 297.1875 Z M 112.824219 297.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.3125 298.96875 C 109.3125 298.851562 109.21875 298.757812 109.101562 298.757812 C 108.984375 298.757812 108.890625 298.851562 108.890625 298.96875 C 108.890625 299.085938 108.984375 299.179688 109.101562 299.179688 C 109.21875 299.179688 109.3125 299.085938 109.3125 298.96875 Z M 109.3125 298.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.855469 298.773438 C 108.855469 298.65625 108.761719 298.5625 108.644531 298.5625 C 108.527344 298.5625 108.433594 298.65625 108.433594 298.773438 C 108.433594 298.890625 108.527344 298.984375 108.644531 298.984375 C 108.761719 298.984375 108.855469 298.890625 108.855469 298.773438 Z M 108.855469 298.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.925781 300.644531 C 107.925781 300.527344 107.832031 300.433594 107.714844 300.433594 C 107.597656 300.433594 107.503906 300.527344 107.503906 300.644531 C 107.503906 300.761719 107.597656 300.855469 107.714844 300.855469 C 107.832031 300.855469 107.925781 300.761719 107.925781 300.644531 Z M 107.925781 300.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.488281 298.367188 C 109.488281 298.25 109.394531 298.15625 109.277344 298.15625 C 109.160156 298.15625 109.066406 298.25 109.066406 298.367188 C 109.066406 298.484375 109.160156 298.578125 109.277344 298.578125 C 109.394531 298.578125 109.488281 298.484375 109.488281 298.367188 Z M 109.488281 298.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.183594 303.554688 C 107.183594 303.4375 107.089844 303.34375 106.972656 303.34375 C 106.855469 303.34375 106.761719 303.4375 106.761719 303.554688 C 106.761719 303.671875 106.855469 303.765625 106.972656 303.765625 C 107.089844 303.765625 107.183594 303.671875 107.183594 303.554688 Z M 107.183594 303.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.777344 305.652344 C 106.777344 305.535156 106.683594 305.441406 106.566406 305.441406 C 106.449219 305.441406 106.355469 305.535156 106.355469 305.652344 C 106.355469 305.769531 106.449219 305.863281 106.566406 305.863281 C 106.683594 305.863281 106.777344 305.769531 106.777344 305.652344 Z M 106.777344 305.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.417969 307.554688 C 104.417969 307.4375 104.324219 307.34375 104.207031 307.34375 C 104.089844 307.34375 103.996094 307.4375 103.996094 307.554688 C 103.996094 307.671875 104.089844 307.765625 104.207031 307.765625 C 104.324219 307.765625 104.417969 307.671875 104.417969 307.554688 Z M 104.417969 307.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.675781 305.761719 C 108.675781 305.644531 108.582031 305.550781 108.464844 305.550781 C 108.347656 305.550781 108.253906 305.644531 108.253906 305.761719 C 108.253906 305.878906 108.347656 305.972656 108.464844 305.972656 C 108.582031 305.972656 108.675781 305.878906 108.675781 305.761719 Z M 108.675781 305.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.847656 303.019531 C 105.847656 302.902344 105.753906 302.808594 105.636719 302.808594 C 105.519531 302.808594 105.425781 302.902344 105.425781 303.019531 C 105.425781 303.136719 105.519531 303.230469 105.636719 303.230469 C 105.753906 303.230469 105.847656 303.136719 105.847656 303.019531 Z M 105.847656 303.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.53125 304.714844 C 109.53125 304.597656 109.4375 304.503906 109.320312 304.503906 C 109.203125 304.503906 109.109375 304.597656 109.109375 304.714844 C 109.109375 304.832031 109.203125 304.925781 109.320312 304.925781 C 109.4375 304.925781 109.53125 304.832031 109.53125 304.714844 Z M 109.53125 304.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.816406 304.898438 C 110.816406 304.78125 110.722656 304.6875 110.605469 304.6875 C 110.488281 304.6875 110.394531 304.78125 110.394531 304.898438 C 110.394531 305.015625 110.488281 305.109375 110.605469 305.109375 C 110.722656 305.109375 110.816406 305.015625 110.816406 304.898438 Z M 110.816406 304.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.710938 303.539062 C 109.710938 303.421875 109.617188 303.328125 109.5 303.328125 C 109.382812 303.328125 109.289062 303.421875 109.289062 303.539062 C 109.289062 303.65625 109.382812 303.75 109.5 303.75 C 109.617188 303.75 109.710938 303.65625 109.710938 303.539062 Z M 109.710938 303.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.773438 306.773438 C 107.773438 306.65625 107.679688 306.5625 107.5625 306.5625 C 107.445312 306.5625 107.351562 306.65625 107.351562 306.773438 C 107.351562 306.890625 107.445312 306.984375 107.5625 306.984375 C 107.679688 306.984375 107.773438 306.890625 107.773438 306.773438 Z M 107.773438 306.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.300781 302.410156 C 107.300781 302.292969 107.207031 302.199219 107.089844 302.199219 C 106.972656 302.199219 106.878906 302.292969 106.878906 302.410156 C 106.878906 302.527344 106.972656 302.621094 107.089844 302.621094 C 107.207031 302.621094 107.300781 302.527344 107.300781 302.410156 Z M 107.300781 302.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.902344 303.105469 C 108.902344 302.988281 108.808594 302.894531 108.691406 302.894531 C 108.574219 302.894531 108.480469 302.988281 108.480469 303.105469 C 108.480469 303.222656 108.574219 303.316406 108.691406 303.316406 C 108.808594 303.316406 108.902344 303.222656 108.902344 303.105469 Z M 108.902344 303.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.324219 300.09375 C 108.324219 299.976562 108.230469 299.882812 108.113281 299.882812 C 107.996094 299.882812 107.902344 299.976562 107.902344 300.09375 C 107.902344 300.210938 107.996094 300.304688 108.113281 300.304688 C 108.230469 300.304688 108.324219 300.210938 108.324219 300.09375 Z M 108.324219 300.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.542969 300.359375 C 106.542969 300.242188 106.449219 300.148438 106.332031 300.148438 C 106.214844 300.148438 106.121094 300.242188 106.121094 300.359375 C 106.121094 300.476562 106.214844 300.570312 106.332031 300.570312 C 106.449219 300.570312 106.542969 300.476562 106.542969 300.359375 Z M 106.542969 300.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.941406 297.800781 C 104.941406 297.683594 104.847656 297.589844 104.730469 297.589844 C 104.613281 297.589844 104.519531 297.683594 104.519531 297.800781 C 104.519531 297.917969 104.613281 298.011719 104.730469 298.011719 C 104.847656 298.011719 104.941406 297.917969 104.941406 297.800781 Z M 104.941406 297.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.070312 296.636719 C 104.070312 296.519531 103.976562 296.425781 103.859375 296.425781 C 103.742188 296.425781 103.648438 296.519531 103.648438 296.636719 C 103.648438 296.753906 103.742188 296.847656 103.859375 296.847656 C 103.976562 296.847656 104.070312 296.753906 104.070312 296.636719 Z M 104.070312 296.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.832031 298.105469 C 108.832031 297.988281 108.738281 297.894531 108.621094 297.894531 C 108.503906 297.894531 108.410156 297.988281 108.410156 298.105469 C 108.410156 298.222656 108.503906 298.316406 108.621094 298.316406 C 108.738281 298.316406 108.832031 298.222656 108.832031 298.105469 Z M 108.832031 298.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.351562 299.535156 C 112.351562 299.417969 112.257812 299.324219 112.140625 299.324219 C 112.023438 299.324219 111.929688 299.417969 111.929688 299.535156 C 111.929688 299.652344 112.023438 299.746094 112.140625 299.746094 C 112.257812 299.746094 112.351562 299.652344 112.351562 299.535156 Z M 112.351562 299.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.644531 298.808594 C 112.644531 298.691406 112.550781 298.597656 112.433594 298.597656 C 112.316406 298.597656 112.222656 298.691406 112.222656 298.808594 C 112.222656 298.925781 112.316406 299.019531 112.433594 299.019531 C 112.550781 299.019531 112.644531 298.925781 112.644531 298.808594 Z M 112.644531 298.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.691406 299.054688 C 112.691406 298.9375 112.597656 298.84375 112.480469 298.84375 C 112.363281 298.84375 112.269531 298.9375 112.269531 299.054688 C 112.269531 299.171875 112.363281 299.265625 112.480469 299.265625 C 112.597656 299.265625 112.691406 299.171875 112.691406 299.054688 Z M 112.691406 299.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.785156 298.558594 C 113.785156 298.441406 113.691406 298.347656 113.574219 298.347656 C 113.457031 298.347656 113.363281 298.441406 113.363281 298.558594 C 113.363281 298.675781 113.457031 298.769531 113.574219 298.769531 C 113.691406 298.769531 113.785156 298.675781 113.785156 298.558594 Z M 113.785156 298.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.628906 297.496094 C 114.628906 297.378906 114.535156 297.285156 114.417969 297.285156 C 114.300781 297.285156 114.207031 297.378906 114.207031 297.496094 C 114.207031 297.613281 114.300781 297.707031 114.417969 297.707031 C 114.535156 297.707031 114.628906 297.613281 114.628906 297.496094 Z M 114.628906 297.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.617188 296.011719 C 115.617188 295.894531 115.523438 295.800781 115.40625 295.800781 C 115.289062 295.800781 115.195312 295.894531 115.195312 296.011719 C 115.195312 296.128906 115.289062 296.222656 115.40625 296.222656 C 115.523438 296.222656 115.617188 296.128906 115.617188 296.011719 Z M 115.617188 296.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.511719 294.386719 C 115.511719 294.269531 115.417969 294.175781 115.300781 294.175781 C 115.183594 294.175781 115.089844 294.269531 115.089844 294.386719 C 115.089844 294.503906 115.183594 294.597656 115.300781 294.597656 C 115.417969 294.597656 115.511719 294.503906 115.511719 294.386719 Z M 115.511719 294.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.261719 293.539062 C 114.261719 293.421875 114.167969 293.328125 114.050781 293.328125 C 113.933594 293.328125 113.839844 293.421875 113.839844 293.539062 C 113.839844 293.65625 113.933594 293.75 114.050781 293.75 C 114.167969 293.75 114.261719 293.65625 114.261719 293.539062 Z M 114.261719 293.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.082031 292.824219 C 113.082031 292.707031 112.988281 292.613281 112.871094 292.613281 C 112.753906 292.613281 112.660156 292.707031 112.660156 292.824219 C 112.660156 292.941406 112.753906 293.035156 112.871094 293.035156 C 112.988281 293.035156 113.082031 292.941406 113.082031 292.824219 Z M 113.082031 292.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.578125 294.585938 C 116.578125 294.46875 116.484375 294.375 116.367188 294.375 C 116.25 294.375 116.15625 294.46875 116.15625 294.585938 C 116.15625 294.703125 116.25 294.796875 116.367188 294.796875 C 116.484375 294.796875 116.578125 294.703125 116.578125 294.585938 Z M 116.578125 294.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.855469 296.589844 C 118.855469 296.472656 118.761719 296.378906 118.644531 296.378906 C 118.527344 296.378906 118.433594 296.472656 118.433594 296.589844 C 118.433594 296.707031 118.527344 296.800781 118.644531 296.800781 C 118.761719 296.800781 118.855469 296.707031 118.855469 296.589844 Z M 118.855469 296.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.78125 294.523438 C 117.78125 294.40625 117.6875 294.3125 117.570312 294.3125 C 117.453125 294.3125 117.359375 294.40625 117.359375 294.523438 C 117.359375 294.640625 117.453125 294.734375 117.570312 294.734375 C 117.6875 294.734375 117.78125 294.640625 117.78125 294.523438 Z M 117.78125 294.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.78125 292.519531 C 119.78125 292.402344 119.6875 292.308594 119.570312 292.308594 C 119.453125 292.308594 119.359375 292.402344 119.359375 292.519531 C 119.359375 292.636719 119.453125 292.730469 119.570312 292.730469 C 119.6875 292.730469 119.78125 292.636719 119.78125 292.519531 Z M 119.78125 292.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.914062 294.539062 C 114.914062 294.421875 114.820312 294.328125 114.703125 294.328125 C 114.585938 294.328125 114.492188 294.421875 114.492188 294.539062 C 114.492188 294.65625 114.585938 294.75 114.703125 294.75 C 114.820312 294.75 114.914062 294.65625 114.914062 294.539062 Z M 114.914062 294.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.648438 294.820312 C 112.648438 294.703125 112.554688 294.609375 112.4375 294.609375 C 112.320312 294.609375 112.226562 294.703125 112.226562 294.820312 C 112.226562 294.9375 112.320312 295.03125 112.4375 295.03125 C 112.554688 295.03125 112.648438 294.9375 112.648438 294.820312 Z M 112.648438 294.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.863281 297.785156 C 109.863281 297.667969 109.769531 297.574219 109.652344 297.574219 C 109.535156 297.574219 109.441406 297.667969 109.441406 297.785156 C 109.441406 297.902344 109.535156 297.996094 109.652344 297.996094 C 109.769531 297.996094 109.863281 297.902344 109.863281 297.785156 Z M 109.863281 297.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.3125 299.792969 C 110.3125 299.675781 110.21875 299.582031 110.101562 299.582031 C 109.984375 299.582031 109.890625 299.675781 109.890625 299.792969 C 109.890625 299.910156 109.984375 300.003906 110.101562 300.003906 C 110.21875 300.003906 110.3125 299.910156 110.3125 299.792969 Z M 110.3125 299.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.445312 300.394531 C 110.445312 300.277344 110.351562 300.183594 110.234375 300.183594 C 110.117188 300.183594 110.023438 300.277344 110.023438 300.394531 C 110.023438 300.511719 110.117188 300.605469 110.234375 300.605469 C 110.351562 300.605469 110.445312 300.511719 110.445312 300.394531 Z M 110.445312 300.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.691406 299.933594 C 112.691406 299.816406 112.597656 299.722656 112.480469 299.722656 C 112.363281 299.722656 112.269531 299.816406 112.269531 299.933594 C 112.269531 300.050781 112.363281 300.144531 112.480469 300.144531 C 112.597656 300.144531 112.691406 300.050781 112.691406 299.933594 Z M 112.691406 299.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.492188 300.519531 C 111.492188 300.402344 111.398438 300.308594 111.28125 300.308594 C 111.164062 300.308594 111.070312 300.402344 111.070312 300.519531 C 111.070312 300.636719 111.164062 300.730469 111.28125 300.730469 C 111.398438 300.730469 111.492188 300.636719 111.492188 300.519531 Z M 111.492188 300.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.410156 302.644531 C 113.410156 302.527344 113.316406 302.433594 113.199219 302.433594 C 113.082031 302.433594 112.988281 302.527344 112.988281 302.644531 C 112.988281 302.761719 113.082031 302.855469 113.199219 302.855469 C 113.316406 302.855469 113.410156 302.761719 113.410156 302.644531 Z M 113.410156 302.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.285156 303.847656 C 113.285156 303.730469 113.191406 303.636719 113.074219 303.636719 C 112.957031 303.636719 112.863281 303.730469 112.863281 303.847656 C 112.863281 303.964844 112.957031 304.058594 113.074219 304.058594 C 113.191406 304.058594 113.285156 303.964844 113.285156 303.847656 Z M 113.285156 303.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.742188 306.914062 C 113.742188 306.796875 113.648438 306.703125 113.53125 306.703125 C 113.414062 306.703125 113.320312 306.796875 113.320312 306.914062 C 113.320312 307.03125 113.414062 307.125 113.53125 307.125 C 113.648438 307.125 113.742188 307.03125 113.742188 306.914062 Z M 113.742188 306.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.164062 306.183594 C 115.164062 306.066406 115.070312 305.972656 114.953125 305.972656 C 114.835938 305.972656 114.742188 306.066406 114.742188 306.183594 C 114.742188 306.300781 114.835938 306.394531 114.953125 306.394531 C 115.070312 306.394531 115.164062 306.300781 115.164062 306.183594 Z M 115.164062 306.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.535156 303.226562 C 116.535156 303.109375 116.441406 303.015625 116.324219 303.015625 C 116.207031 303.015625 116.113281 303.109375 116.113281 303.226562 C 116.113281 303.34375 116.207031 303.4375 116.324219 303.4375 C 116.441406 303.4375 116.535156 303.34375 116.535156 303.226562 Z M 116.535156 303.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.636719 305.308594 C 117.636719 305.191406 117.542969 305.097656 117.425781 305.097656 C 117.308594 305.097656 117.214844 305.191406 117.214844 305.308594 C 117.214844 305.425781 117.308594 305.519531 117.425781 305.519531 C 117.542969 305.519531 117.636719 305.425781 117.636719 305.308594 Z M 117.636719 305.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.328125 306.371094 C 117.328125 306.253906 117.234375 306.160156 117.117188 306.160156 C 117 306.160156 116.90625 306.253906 116.90625 306.371094 C 116.90625 306.488281 117 306.582031 117.117188 306.582031 C 117.234375 306.582031 117.328125 306.488281 117.328125 306.371094 Z M 117.328125 306.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.382812 307.921875 C 118.382812 307.804688 118.289062 307.710938 118.171875 307.710938 C 118.054688 307.710938 117.960938 307.804688 117.960938 307.921875 C 117.960938 308.039062 118.054688 308.132812 118.171875 308.132812 C 118.289062 308.132812 118.382812 308.039062 118.382812 307.921875 Z M 118.382812 307.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.566406 307.078125 C 116.566406 306.960938 116.472656 306.867188 116.355469 306.867188 C 116.238281 306.867188 116.144531 306.960938 116.144531 307.078125 C 116.144531 307.195312 116.238281 307.289062 116.355469 307.289062 C 116.472656 307.289062 116.566406 307.195312 116.566406 307.078125 Z M 116.566406 307.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.394531 306.53125 C 116.394531 306.414062 116.300781 306.320312 116.183594 306.320312 C 116.066406 306.320312 115.972656 306.414062 115.972656 306.53125 C 115.972656 306.648438 116.066406 306.742188 116.183594 306.742188 C 116.300781 306.742188 116.394531 306.648438 116.394531 306.53125 Z M 116.394531 306.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.296875 310.34375 C 117.296875 310.226562 117.203125 310.132812 117.085938 310.132812 C 116.96875 310.132812 116.875 310.226562 116.875 310.34375 C 116.875 310.460938 116.96875 310.554688 117.085938 310.554688 C 117.203125 310.554688 117.296875 310.460938 117.296875 310.34375 Z M 117.296875 310.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.132812 309.429688 C 120.132812 309.3125 120.039062 309.21875 119.921875 309.21875 C 119.804688 309.21875 119.710938 309.3125 119.710938 309.429688 C 119.710938 309.546875 119.804688 309.640625 119.921875 309.640625 C 120.039062 309.640625 120.132812 309.546875 120.132812 309.429688 Z M 120.132812 309.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.007812 307.820312 C 118.007812 307.703125 117.914062 307.609375 117.796875 307.609375 C 117.679688 307.609375 117.585938 307.703125 117.585938 307.820312 C 117.585938 307.9375 117.679688 308.03125 117.796875 308.03125 C 117.914062 308.03125 118.007812 307.9375 118.007812 307.820312 Z M 118.007812 307.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.5 304.460938 C 120.5 304.34375 120.40625 304.25 120.289062 304.25 C 120.171875 304.25 120.078125 304.34375 120.078125 304.460938 C 120.078125 304.578125 120.171875 304.671875 120.289062 304.671875 C 120.40625 304.671875 120.5 304.578125 120.5 304.460938 Z M 120.5 304.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.484375 301.789062 C 120.484375 301.671875 120.390625 301.578125 120.273438 301.578125 C 120.15625 301.578125 120.0625 301.671875 120.0625 301.789062 C 120.0625 301.90625 120.15625 302 120.273438 302 C 120.390625 302 120.484375 301.90625 120.484375 301.789062 Z M 120.484375 301.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.894531 305.347656 C 121.894531 305.230469 121.800781 305.136719 121.683594 305.136719 C 121.566406 305.136719 121.472656 305.230469 121.472656 305.347656 C 121.472656 305.464844 121.566406 305.558594 121.683594 305.558594 C 121.800781 305.558594 121.894531 305.464844 121.894531 305.347656 Z M 121.894531 305.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.101562 305.082031 C 121.101562 304.964844 121.007812 304.871094 120.890625 304.871094 C 120.773438 304.871094 120.679688 304.964844 120.679688 305.082031 C 120.679688 305.199219 120.773438 305.292969 120.890625 305.292969 C 121.007812 305.292969 121.101562 305.199219 121.101562 305.082031 Z M 121.101562 305.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.308594 308.164062 C 118.308594 308.046875 118.214844 307.953125 118.097656 307.953125 C 117.980469 307.953125 117.886719 308.046875 117.886719 308.164062 C 117.886719 308.28125 117.980469 308.375 118.097656 308.375 C 118.214844 308.375 118.308594 308.28125 118.308594 308.164062 Z M 118.308594 308.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.304688 306.15625 C 117.304688 306.039062 117.210938 305.945312 117.09375 305.945312 C 116.976562 305.945312 116.882812 306.039062 116.882812 306.15625 C 116.882812 306.273438 116.976562 306.367188 117.09375 306.367188 C 117.210938 306.367188 117.304688 306.273438 117.304688 306.15625 Z M 117.304688 306.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.75 310.09375 C 114.75 309.976562 114.65625 309.882812 114.539062 309.882812 C 114.421875 309.882812 114.328125 309.976562 114.328125 310.09375 C 114.328125 310.210938 114.421875 310.304688 114.539062 310.304688 C 114.65625 310.304688 114.75 310.210938 114.75 310.09375 Z M 114.75 310.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.984375 309.058594 C 110.984375 308.941406 110.890625 308.847656 110.773438 308.847656 C 110.65625 308.847656 110.5625 308.941406 110.5625 309.058594 C 110.5625 309.175781 110.65625 309.269531 110.773438 309.269531 C 110.890625 309.269531 110.984375 309.175781 110.984375 309.058594 Z M 110.984375 309.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.089844 307.96875 C 112.089844 307.851562 111.996094 307.757812 111.878906 307.757812 C 111.761719 307.757812 111.667969 307.851562 111.667969 307.96875 C 111.667969 308.085938 111.761719 308.179688 111.878906 308.179688 C 111.996094 308.179688 112.089844 308.085938 112.089844 307.96875 Z M 112.089844 307.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.140625 306.585938 C 110.140625 306.46875 110.046875 306.375 109.929688 306.375 C 109.8125 306.375 109.71875 306.46875 109.71875 306.585938 C 109.71875 306.703125 109.8125 306.796875 109.929688 306.796875 C 110.046875 306.796875 110.140625 306.703125 110.140625 306.585938 Z M 110.140625 306.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.136719 309.0625 C 113.136719 308.945312 113.042969 308.851562 112.925781 308.851562 C 112.808594 308.851562 112.714844 308.945312 112.714844 309.0625 C 112.714844 309.179688 112.808594 309.273438 112.925781 309.273438 C 113.042969 309.273438 113.136719 309.179688 113.136719 309.0625 Z M 113.136719 309.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.257812 310.894531 C 112.257812 310.777344 112.164062 310.683594 112.046875 310.683594 C 111.929688 310.683594 111.835938 310.777344 111.835938 310.894531 C 111.835938 311.011719 111.929688 311.105469 112.046875 311.105469 C 112.164062 311.105469 112.257812 311.011719 112.257812 310.894531 Z M 112.257812 310.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.128906 315.558594 C 114.128906 315.441406 114.035156 315.347656 113.917969 315.347656 C 113.800781 315.347656 113.707031 315.441406 113.707031 315.558594 C 113.707031 315.675781 113.800781 315.769531 113.917969 315.769531 C 114.035156 315.769531 114.128906 315.675781 114.128906 315.558594 Z M 114.128906 315.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.003906 313.910156 C 115.003906 313.792969 114.910156 313.699219 114.792969 313.699219 C 114.675781 313.699219 114.582031 313.792969 114.582031 313.910156 C 114.582031 314.027344 114.675781 314.121094 114.792969 314.121094 C 114.910156 314.121094 115.003906 314.027344 115.003906 313.910156 Z M 115.003906 313.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.199219 313.882812 C 112.199219 313.765625 112.105469 313.671875 111.988281 313.671875 C 111.871094 313.671875 111.777344 313.765625 111.777344 313.882812 C 111.777344 314 111.871094 314.09375 111.988281 314.09375 C 112.105469 314.09375 112.199219 314 112.199219 313.882812 Z M 112.199219 313.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.71875 310.113281 C 113.71875 309.996094 113.625 309.902344 113.507812 309.902344 C 113.390625 309.902344 113.296875 309.996094 113.296875 310.113281 C 113.296875 310.230469 113.390625 310.324219 113.507812 310.324219 C 113.625 310.324219 113.71875 310.230469 113.71875 310.113281 Z M 113.71875 310.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.375 310.496094 C 114.375 310.378906 114.28125 310.285156 114.164062 310.285156 C 114.046875 310.285156 113.953125 310.378906 113.953125 310.496094 C 113.953125 310.613281 114.046875 310.707031 114.164062 310.707031 C 114.28125 310.707031 114.375 310.613281 114.375 310.496094 Z M 114.375 310.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.679688 310.566406 C 116.679688 310.449219 116.585938 310.355469 116.46875 310.355469 C 116.351562 310.355469 116.257812 310.449219 116.257812 310.566406 C 116.257812 310.683594 116.351562 310.777344 116.46875 310.777344 C 116.585938 310.777344 116.679688 310.683594 116.679688 310.566406 Z M 116.679688 310.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.582031 308.695312 C 117.582031 308.578125 117.488281 308.484375 117.371094 308.484375 C 117.253906 308.484375 117.160156 308.578125 117.160156 308.695312 C 117.160156 308.8125 117.253906 308.90625 117.371094 308.90625 C 117.488281 308.90625 117.582031 308.8125 117.582031 308.695312 Z M 117.582031 308.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.65625 305.929688 C 119.65625 305.8125 119.5625 305.71875 119.445312 305.71875 C 119.328125 305.71875 119.234375 305.8125 119.234375 305.929688 C 119.234375 306.046875 119.328125 306.140625 119.445312 306.140625 C 119.5625 306.140625 119.65625 306.046875 119.65625 305.929688 Z M 119.65625 305.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.179688 306.351562 C 122.179688 306.234375 122.085938 306.140625 121.96875 306.140625 C 121.851562 306.140625 121.757812 306.234375 121.757812 306.351562 C 121.757812 306.46875 121.851562 306.5625 121.96875 306.5625 C 122.085938 306.5625 122.179688 306.46875 122.179688 306.351562 Z M 122.179688 306.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.84375 307.671875 C 123.84375 307.554688 123.75 307.460938 123.632812 307.460938 C 123.515625 307.460938 123.421875 307.554688 123.421875 307.671875 C 123.421875 307.789062 123.515625 307.882812 123.632812 307.882812 C 123.75 307.882812 123.84375 307.789062 123.84375 307.671875 Z M 123.84375 307.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.296875 309.414062 C 124.296875 309.296875 124.203125 309.203125 124.085938 309.203125 C 123.96875 309.203125 123.875 309.296875 123.875 309.414062 C 123.875 309.53125 123.96875 309.625 124.085938 309.625 C 124.203125 309.625 124.296875 309.53125 124.296875 309.414062 Z M 124.296875 309.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.675781 307.175781 C 127.675781 307.058594 127.582031 306.964844 127.464844 306.964844 C 127.347656 306.964844 127.253906 307.058594 127.253906 307.175781 C 127.253906 307.292969 127.347656 307.386719 127.464844 307.386719 C 127.582031 307.386719 127.675781 307.292969 127.675781 307.175781 Z M 127.675781 307.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.976562 311.605469 C 128.976562 311.488281 128.882812 311.394531 128.765625 311.394531 C 128.648438 311.394531 128.554688 311.488281 128.554688 311.605469 C 128.554688 311.722656 128.648438 311.816406 128.765625 311.816406 C 128.882812 311.816406 128.976562 311.722656 128.976562 311.605469 Z M 128.976562 311.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.808594 309.902344 C 127.808594 309.785156 127.714844 309.691406 127.597656 309.691406 C 127.480469 309.691406 127.386719 309.785156 127.386719 309.902344 C 127.386719 310.019531 127.480469 310.113281 127.597656 310.113281 C 127.714844 310.113281 127.808594 310.019531 127.808594 309.902344 Z M 127.808594 309.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.007812 308.5 C 128.007812 308.382812 127.914062 308.289062 127.796875 308.289062 C 127.679688 308.289062 127.585938 308.382812 127.585938 308.5 C 127.585938 308.617188 127.679688 308.710938 127.796875 308.710938 C 127.914062 308.710938 128.007812 308.617188 128.007812 308.5 Z M 128.007812 308.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.703125 306.339844 C 125.703125 306.222656 125.609375 306.128906 125.492188 306.128906 C 125.375 306.128906 125.28125 306.222656 125.28125 306.339844 C 125.28125 306.457031 125.375 306.550781 125.492188 306.550781 C 125.609375 306.550781 125.703125 306.457031 125.703125 306.339844 Z M 125.703125 306.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.519531 309.820312 C 129.519531 309.703125 129.425781 309.609375 129.308594 309.609375 C 129.191406 309.609375 129.097656 309.703125 129.097656 309.820312 C 129.097656 309.9375 129.191406 310.03125 129.308594 310.03125 C 129.425781 310.03125 129.519531 309.9375 129.519531 309.820312 Z M 129.519531 309.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.191406 315.234375 C 132.191406 315.117188 132.097656 315.023438 131.980469 315.023438 C 131.863281 315.023438 131.769531 315.117188 131.769531 315.234375 C 131.769531 315.351562 131.863281 315.445312 131.980469 315.445312 C 132.097656 315.445312 132.191406 315.351562 132.191406 315.234375 Z M 132.191406 315.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.847656 315.09375 C 129.847656 314.976562 129.753906 314.882812 129.636719 314.882812 C 129.519531 314.882812 129.425781 314.976562 129.425781 315.09375 C 129.425781 315.210938 129.519531 315.304688 129.636719 315.304688 C 129.753906 315.304688 129.847656 315.210938 129.847656 315.09375 Z M 129.847656 315.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.335938 312.433594 C 129.335938 312.316406 129.242188 312.222656 129.125 312.222656 C 129.007812 312.222656 128.914062 312.316406 128.914062 312.433594 C 128.914062 312.550781 129.007812 312.644531 129.125 312.644531 C 129.242188 312.644531 129.335938 312.550781 129.335938 312.433594 Z M 129.335938 312.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.761719 313.558594 C 127.761719 313.441406 127.667969 313.347656 127.550781 313.347656 C 127.433594 313.347656 127.339844 313.441406 127.339844 313.558594 C 127.339844 313.675781 127.433594 313.769531 127.550781 313.769531 C 127.667969 313.769531 127.761719 313.675781 127.761719 313.558594 Z M 127.761719 313.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.0625 315.464844 C 127.0625 315.347656 126.96875 315.253906 126.851562 315.253906 C 126.734375 315.253906 126.640625 315.347656 126.640625 315.464844 C 126.640625 315.582031 126.734375 315.675781 126.851562 315.675781 C 126.96875 315.675781 127.0625 315.582031 127.0625 315.464844 Z M 127.0625 315.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.347656 315.90625 C 124.347656 315.789062 124.253906 315.695312 124.136719 315.695312 C 124.019531 315.695312 123.925781 315.789062 123.925781 315.90625 C 123.925781 316.023438 124.019531 316.117188 124.136719 316.117188 C 124.253906 316.117188 124.347656 316.023438 124.347656 315.90625 Z M 124.347656 315.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.367188 317.53125 C 122.367188 317.414062 122.273438 317.320312 122.15625 317.320312 C 122.039062 317.320312 121.945312 317.414062 121.945312 317.53125 C 121.945312 317.648438 122.039062 317.742188 122.15625 317.742188 C 122.273438 317.742188 122.367188 317.648438 122.367188 317.53125 Z M 122.367188 317.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.902344 318.4375 C 122.902344 318.320312 122.808594 318.226562 122.691406 318.226562 C 122.574219 318.226562 122.480469 318.320312 122.480469 318.4375 C 122.480469 318.554688 122.574219 318.648438 122.691406 318.648438 C 122.808594 318.648438 122.902344 318.554688 122.902344 318.4375 Z M 122.902344 318.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.851562 317.140625 C 121.851562 317.023438 121.757812 316.929688 121.640625 316.929688 C 121.523438 316.929688 121.429688 317.023438 121.429688 317.140625 C 121.429688 317.257812 121.523438 317.351562 121.640625 317.351562 C 121.757812 317.351562 121.851562 317.257812 121.851562 317.140625 Z M 121.851562 317.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.460938 318.113281 C 121.460938 317.996094 121.367188 317.902344 121.25 317.902344 C 121.132812 317.902344 121.039062 317.996094 121.039062 318.113281 C 121.039062 318.230469 121.132812 318.324219 121.25 318.324219 C 121.367188 318.324219 121.460938 318.230469 121.460938 318.113281 Z M 121.460938 318.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.1875 318.847656 C 123.1875 318.730469 123.09375 318.636719 122.976562 318.636719 C 122.859375 318.636719 122.765625 318.730469 122.765625 318.847656 C 122.765625 318.964844 122.859375 319.058594 122.976562 319.058594 C 123.09375 319.058594 123.1875 318.964844 123.1875 318.847656 Z M 123.1875 318.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.777344 314.863281 C 118.777344 314.746094 118.683594 314.652344 118.566406 314.652344 C 118.449219 314.652344 118.355469 314.746094 118.355469 314.863281 C 118.355469 314.980469 118.449219 315.074219 118.566406 315.074219 C 118.683594 315.074219 118.777344 314.980469 118.777344 314.863281 Z M 118.777344 314.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.496094 311.289062 C 116.496094 311.171875 116.402344 311.078125 116.285156 311.078125 C 116.167969 311.078125 116.074219 311.171875 116.074219 311.289062 C 116.074219 311.40625 116.167969 311.5 116.285156 311.5 C 116.402344 311.5 116.496094 311.40625 116.496094 311.289062 Z M 116.496094 311.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.28125 312.027344 C 120.28125 311.910156 120.1875 311.816406 120.070312 311.816406 C 119.953125 311.816406 119.859375 311.910156 119.859375 312.027344 C 119.859375 312.144531 119.953125 312.238281 120.070312 312.238281 C 120.1875 312.238281 120.28125 312.144531 120.28125 312.027344 Z M 120.28125 312.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.933594 309.179688 C 119.933594 309.0625 119.839844 308.96875 119.722656 308.96875 C 119.605469 308.96875 119.511719 309.0625 119.511719 309.179688 C 119.511719 309.296875 119.605469 309.390625 119.722656 309.390625 C 119.839844 309.390625 119.933594 309.296875 119.933594 309.179688 Z M 119.933594 309.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.648438 306.363281 C 121.648438 306.246094 121.554688 306.152344 121.4375 306.152344 C 121.320312 306.152344 121.226562 306.246094 121.226562 306.363281 C 121.226562 306.480469 121.320312 306.574219 121.4375 306.574219 C 121.554688 306.574219 121.648438 306.480469 121.648438 306.363281 Z M 121.648438 306.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.988281 307.566406 C 118.988281 307.449219 118.894531 307.355469 118.777344 307.355469 C 118.660156 307.355469 118.566406 307.449219 118.566406 307.566406 C 118.566406 307.683594 118.660156 307.777344 118.777344 307.777344 C 118.894531 307.777344 118.988281 307.683594 118.988281 307.566406 Z M 118.988281 307.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.226562 306.671875 C 122.226562 306.554688 122.132812 306.460938 122.015625 306.460938 C 121.898438 306.460938 121.804688 306.554688 121.804688 306.671875 C 121.804688 306.789062 121.898438 306.882812 122.015625 306.882812 C 122.132812 306.882812 122.226562 306.789062 122.226562 306.671875 Z M 122.226562 306.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.644531 306.101562 C 120.644531 305.984375 120.550781 305.890625 120.433594 305.890625 C 120.316406 305.890625 120.222656 305.984375 120.222656 306.101562 C 120.222656 306.21875 120.316406 306.3125 120.433594 306.3125 C 120.550781 306.3125 120.644531 306.21875 120.644531 306.101562 Z M 120.644531 306.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.597656 304.867188 C 120.597656 304.75 120.503906 304.65625 120.386719 304.65625 C 120.269531 304.65625 120.175781 304.75 120.175781 304.867188 C 120.175781 304.984375 120.269531 305.078125 120.386719 305.078125 C 120.503906 305.078125 120.597656 304.984375 120.597656 304.867188 Z M 120.597656 304.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.539062 307.597656 C 120.539062 307.480469 120.445312 307.386719 120.328125 307.386719 C 120.210938 307.386719 120.117188 307.480469 120.117188 307.597656 C 120.117188 307.714844 120.210938 307.808594 120.328125 307.808594 C 120.445312 307.808594 120.539062 307.714844 120.539062 307.597656 Z M 120.539062 307.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.539062 308.425781 C 122.539062 308.308594 122.445312 308.214844 122.328125 308.214844 C 122.210938 308.214844 122.117188 308.308594 122.117188 308.425781 C 122.117188 308.542969 122.210938 308.636719 122.328125 308.636719 C 122.445312 308.636719 122.539062 308.542969 122.539062 308.425781 Z M 122.539062 308.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.347656 305.675781 C 122.347656 305.558594 122.253906 305.464844 122.136719 305.464844 C 122.019531 305.464844 121.925781 305.558594 121.925781 305.675781 C 121.925781 305.792969 122.019531 305.886719 122.136719 305.886719 C 122.253906 305.886719 122.347656 305.792969 122.347656 305.675781 Z M 122.347656 305.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.785156 304.117188 C 120.785156 304 120.691406 303.90625 120.574219 303.90625 C 120.457031 303.90625 120.363281 304 120.363281 304.117188 C 120.363281 304.234375 120.457031 304.328125 120.574219 304.328125 C 120.691406 304.328125 120.785156 304.234375 120.785156 304.117188 Z M 120.785156 304.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.503906 300.472656 C 122.503906 300.355469 122.410156 300.261719 122.292969 300.261719 C 122.175781 300.261719 122.082031 300.355469 122.082031 300.472656 C 122.082031 300.589844 122.175781 300.683594 122.292969 300.683594 C 122.410156 300.683594 122.503906 300.589844 122.503906 300.472656 Z M 122.503906 300.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.214844 299.929688 C 123.214844 299.8125 123.121094 299.71875 123.003906 299.71875 C 122.886719 299.71875 122.792969 299.8125 122.792969 299.929688 C 122.792969 300.046875 122.886719 300.140625 123.003906 300.140625 C 123.121094 300.140625 123.214844 300.046875 123.214844 299.929688 Z M 123.214844 299.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.84375 302.289062 C 124.84375 302.171875 124.75 302.078125 124.632812 302.078125 C 124.515625 302.078125 124.421875 302.171875 124.421875 302.289062 C 124.421875 302.40625 124.515625 302.5 124.632812 302.5 C 124.75 302.5 124.84375 302.40625 124.84375 302.289062 Z M 124.84375 302.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.886719 299.324219 C 127.886719 299.207031 127.792969 299.113281 127.675781 299.113281 C 127.558594 299.113281 127.464844 299.207031 127.464844 299.324219 C 127.464844 299.441406 127.558594 299.535156 127.675781 299.535156 C 127.792969 299.535156 127.886719 299.441406 127.886719 299.324219 Z M 127.886719 299.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.085938 305.332031 C 127.085938 305.214844 126.992188 305.121094 126.875 305.121094 C 126.757812 305.121094 126.664062 305.214844 126.664062 305.332031 C 126.664062 305.449219 126.757812 305.542969 126.875 305.542969 C 126.992188 305.542969 127.085938 305.449219 127.085938 305.332031 Z M 127.085938 305.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.191406 305.867188 C 125.191406 305.75 125.097656 305.65625 124.980469 305.65625 C 124.863281 305.65625 124.769531 305.75 124.769531 305.867188 C 124.769531 305.984375 124.863281 306.078125 124.980469 306.078125 C 125.097656 306.078125 125.191406 305.984375 125.191406 305.867188 Z M 125.191406 305.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.328125 307.007812 C 127.328125 306.890625 127.234375 306.796875 127.117188 306.796875 C 127 306.796875 126.90625 306.890625 126.90625 307.007812 C 126.90625 307.125 127 307.21875 127.117188 307.21875 C 127.234375 307.21875 127.328125 307.125 127.328125 307.007812 Z M 127.328125 307.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.683594 307.625 C 128.683594 307.507812 128.589844 307.414062 128.472656 307.414062 C 128.355469 307.414062 128.261719 307.507812 128.261719 307.625 C 128.261719 307.742188 128.355469 307.835938 128.472656 307.835938 C 128.589844 307.835938 128.683594 307.742188 128.683594 307.625 Z M 128.683594 307.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 130.089844 307.925781 C 130.089844 307.808594 129.996094 307.714844 129.878906 307.714844 C 129.761719 307.714844 129.667969 307.808594 129.667969 307.925781 C 129.667969 308.042969 129.761719 308.136719 129.878906 308.136719 C 129.996094 308.136719 130.089844 308.042969 130.089844 307.925781 Z M 130.089844 307.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.089844 307.984375 C 128.089844 307.867188 127.996094 307.773438 127.878906 307.773438 C 127.761719 307.773438 127.667969 307.867188 127.667969 307.984375 C 127.667969 308.101562 127.761719 308.195312 127.878906 308.195312 C 127.996094 308.195312 128.089844 308.101562 128.089844 307.984375 Z M 128.089844 307.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.925781 305.773438 C 128.925781 305.65625 128.832031 305.5625 128.714844 305.5625 C 128.597656 305.5625 128.503906 305.65625 128.503906 305.773438 C 128.503906 305.890625 128.597656 305.984375 128.714844 305.984375 C 128.832031 305.984375 128.925781 305.890625 128.925781 305.773438 Z M 128.925781 305.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.597656 303.214844 C 129.597656 303.097656 129.503906 303.003906 129.386719 303.003906 C 129.269531 303.003906 129.175781 303.097656 129.175781 303.214844 C 129.175781 303.332031 129.269531 303.425781 129.386719 303.425781 C 129.503906 303.425781 129.597656 303.332031 129.597656 303.214844 Z M 129.597656 303.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.792969 302.609375 C 127.792969 302.492188 127.699219 302.398438 127.582031 302.398438 C 127.464844 302.398438 127.371094 302.492188 127.371094 302.609375 C 127.371094 302.726562 127.464844 302.820312 127.582031 302.820312 C 127.699219 302.820312 127.792969 302.726562 127.792969 302.609375 Z M 127.792969 302.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 133.335938 303.128906 C 133.335938 303.011719 133.242188 302.917969 133.125 302.917969 C 133.007812 302.917969 132.914062 303.011719 132.914062 303.128906 C 132.914062 303.246094 133.007812 303.339844 133.125 303.339844 C 133.242188 303.339844 133.335938 303.246094 133.335938 303.128906 Z M 133.335938 303.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 131.519531 304.410156 C 131.519531 304.292969 131.425781 304.199219 131.308594 304.199219 C 131.191406 304.199219 131.097656 304.292969 131.097656 304.410156 C 131.097656 304.527344 131.191406 304.621094 131.308594 304.621094 C 131.425781 304.621094 131.519531 304.527344 131.519531 304.410156 Z M 131.519531 304.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 134.121094 305.847656 C 134.121094 305.730469 134.027344 305.636719 133.910156 305.636719 C 133.792969 305.636719 133.699219 305.730469 133.699219 305.847656 C 133.699219 305.964844 133.792969 306.058594 133.910156 306.058594 C 134.027344 306.058594 134.121094 305.964844 134.121094 305.847656 Z M 134.121094 305.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.105469 306.023438 C 138.105469 305.90625 138.011719 305.8125 137.894531 305.8125 C 137.777344 305.8125 137.683594 305.90625 137.683594 306.023438 C 137.683594 306.140625 137.777344 306.234375 137.894531 306.234375 C 138.011719 306.234375 138.105469 306.140625 138.105469 306.023438 Z M 138.105469 306.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.96875 306.207031 C 136.96875 306.089844 136.875 305.996094 136.757812 305.996094 C 136.640625 305.996094 136.546875 306.089844 136.546875 306.207031 C 136.546875 306.324219 136.640625 306.417969 136.757812 306.417969 C 136.875 306.417969 136.96875 306.324219 136.96875 306.207031 Z M 136.96875 306.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.089844 304.84375 C 138.089844 304.726562 137.996094 304.632812 137.878906 304.632812 C 137.761719 304.632812 137.667969 304.726562 137.667969 304.84375 C 137.667969 304.960938 137.761719 305.054688 137.878906 305.054688 C 137.996094 305.054688 138.089844 304.960938 138.089844 304.84375 Z M 138.089844 304.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.042969 305.558594 C 138.042969 305.441406 137.949219 305.347656 137.832031 305.347656 C 137.714844 305.347656 137.621094 305.441406 137.621094 305.558594 C 137.621094 305.675781 137.714844 305.769531 137.832031 305.769531 C 137.949219 305.769531 138.042969 305.675781 138.042969 305.558594 Z M 138.042969 305.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.246094 304.4375 C 136.246094 304.320312 136.152344 304.226562 136.035156 304.226562 C 135.917969 304.226562 135.824219 304.320312 135.824219 304.4375 C 135.824219 304.554688 135.917969 304.648438 136.035156 304.648438 C 136.152344 304.648438 136.246094 304.554688 136.246094 304.4375 Z M 136.246094 304.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.488281 304.777344 C 136.488281 304.660156 136.394531 304.566406 136.277344 304.566406 C 136.160156 304.566406 136.066406 304.660156 136.066406 304.777344 C 136.066406 304.894531 136.160156 304.988281 136.277344 304.988281 C 136.394531 304.988281 136.488281 304.894531 136.488281 304.777344 Z M 136.488281 304.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.679688 302.605469 C 138.679688 302.488281 138.585938 302.394531 138.46875 302.394531 C 138.351562 302.394531 138.257812 302.488281 138.257812 302.605469 C 138.257812 302.722656 138.351562 302.816406 138.46875 302.816406 C 138.585938 302.816406 138.679688 302.722656 138.679688 302.605469 Z M 138.679688 302.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.171875 306.605469 C 138.171875 306.488281 138.078125 306.394531 137.960938 306.394531 C 137.84375 306.394531 137.75 306.488281 137.75 306.605469 C 137.75 306.722656 137.84375 306.816406 137.960938 306.816406 C 138.078125 306.816406 138.171875 306.722656 138.171875 306.605469 Z M 138.171875 306.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.910156 307.246094 C 140.910156 307.128906 140.816406 307.035156 140.699219 307.035156 C 140.582031 307.035156 140.488281 307.128906 140.488281 307.246094 C 140.488281 307.363281 140.582031 307.457031 140.699219 307.457031 C 140.816406 307.457031 140.910156 307.363281 140.910156 307.246094 Z M 140.910156 307.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.1875 305.742188 C 139.1875 305.625 139.09375 305.53125 138.976562 305.53125 C 138.859375 305.53125 138.765625 305.625 138.765625 305.742188 C 138.765625 305.859375 138.859375 305.953125 138.976562 305.953125 C 139.09375 305.953125 139.1875 305.859375 139.1875 305.742188 Z M 139.1875 305.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 139.6875 305.300781 C 139.6875 305.183594 139.59375 305.089844 139.476562 305.089844 C 139.359375 305.089844 139.265625 305.183594 139.265625 305.300781 C 139.265625 305.417969 139.359375 305.511719 139.476562 305.511719 C 139.59375 305.511719 139.6875 305.417969 139.6875 305.300781 Z M 139.6875 305.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.332031 308.78125 C 142.332031 308.664062 142.238281 308.570312 142.121094 308.570312 C 142.003906 308.570312 141.910156 308.664062 141.910156 308.78125 C 141.910156 308.898438 142.003906 308.992188 142.121094 308.992188 C 142.238281 308.992188 142.332031 308.898438 142.332031 308.78125 Z M 142.332031 308.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.550781 310.300781 C 140.550781 310.183594 140.457031 310.089844 140.339844 310.089844 C 140.222656 310.089844 140.128906 310.183594 140.128906 310.300781 C 140.128906 310.417969 140.222656 310.511719 140.339844 310.511719 C 140.457031 310.511719 140.550781 310.417969 140.550781 310.300781 Z M 140.550781 310.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.722656 309.636719 C 142.722656 309.519531 142.628906 309.425781 142.511719 309.425781 C 142.394531 309.425781 142.300781 309.519531 142.300781 309.636719 C 142.300781 309.753906 142.394531 309.847656 142.511719 309.847656 C 142.628906 309.847656 142.722656 309.753906 142.722656 309.636719 Z M 142.722656 309.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.585938 310.925781 C 142.585938 310.808594 142.492188 310.714844 142.375 310.714844 C 142.257812 310.714844 142.164062 310.808594 142.164062 310.925781 C 142.164062 311.042969 142.257812 311.136719 142.375 311.136719 C 142.492188 311.136719 142.585938 311.042969 142.585938 310.925781 Z M 142.585938 310.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.917969 311.679688 C 145.917969 311.5625 145.824219 311.46875 145.707031 311.46875 C 145.589844 311.46875 145.496094 311.5625 145.496094 311.679688 C 145.496094 311.796875 145.589844 311.890625 145.707031 311.890625 C 145.824219 311.890625 145.917969 311.796875 145.917969 311.679688 Z M 145.917969 311.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.242188 309.871094 C 144.242188 309.753906 144.148438 309.660156 144.03125 309.660156 C 143.914062 309.660156 143.820312 309.753906 143.820312 309.871094 C 143.820312 309.988281 143.914062 310.082031 144.03125 310.082031 C 144.148438 310.082031 144.242188 309.988281 144.242188 309.871094 Z M 144.242188 309.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.085938 313.242188 C 146.085938 313.125 145.992188 313.03125 145.875 313.03125 C 145.757812 313.03125 145.664062 313.125 145.664062 313.242188 C 145.664062 313.359375 145.757812 313.453125 145.875 313.453125 C 145.992188 313.453125 146.085938 313.359375 146.085938 313.242188 Z M 146.085938 313.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.042969 310.058594 C 146.042969 309.941406 145.949219 309.847656 145.832031 309.847656 C 145.714844 309.847656 145.621094 309.941406 145.621094 310.058594 C 145.621094 310.175781 145.714844 310.269531 145.832031 310.269531 C 145.949219 310.269531 146.042969 310.175781 146.042969 310.058594 Z M 146.042969 310.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.714844 307.855469 C 142.714844 307.738281 142.621094 307.644531 142.503906 307.644531 C 142.386719 307.644531 142.292969 307.738281 142.292969 307.855469 C 142.292969 307.972656 142.386719 308.066406 142.503906 308.066406 C 142.621094 308.066406 142.714844 307.972656 142.714844 307.855469 Z M 142.714844 307.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.925781 303.265625 C 141.925781 303.148438 141.832031 303.054688 141.714844 303.054688 C 141.597656 303.054688 141.503906 303.148438 141.503906 303.265625 C 141.503906 303.382812 141.597656 303.476562 141.714844 303.476562 C 141.832031 303.476562 141.925781 303.382812 141.925781 303.265625 Z M 141.925781 303.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.058594 301.957031 C 147.058594 301.839844 146.964844 301.746094 146.847656 301.746094 C 146.730469 301.746094 146.636719 301.839844 146.636719 301.957031 C 146.636719 302.074219 146.730469 302.167969 146.847656 302.167969 C 146.964844 302.167969 147.058594 302.074219 147.058594 301.957031 Z M 147.058594 301.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.246094 301.8125 C 149.246094 301.695312 149.152344 301.601562 149.035156 301.601562 C 148.917969 301.601562 148.824219 301.695312 148.824219 301.8125 C 148.824219 301.929688 148.917969 302.023438 149.035156 302.023438 C 149.152344 302.023438 149.246094 301.929688 149.246094 301.8125 Z M 149.246094 301.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.757812 303.746094 C 148.757812 303.628906 148.664062 303.535156 148.546875 303.535156 C 148.429688 303.535156 148.335938 303.628906 148.335938 303.746094 C 148.335938 303.863281 148.429688 303.957031 148.546875 303.957031 C 148.664062 303.957031 148.757812 303.863281 148.757812 303.746094 Z M 148.757812 303.746094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.289062 305.328125 C 147.289062 305.210938 147.195312 305.117188 147.078125 305.117188 C 146.960938 305.117188 146.867188 305.210938 146.867188 305.328125 C 146.867188 305.445312 146.960938 305.539062 147.078125 305.539062 C 147.195312 305.539062 147.289062 305.445312 147.289062 305.328125 Z M 147.289062 305.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.660156 308.566406 C 151.660156 308.449219 151.566406 308.355469 151.449219 308.355469 C 151.332031 308.355469 151.238281 308.449219 151.238281 308.566406 C 151.238281 308.683594 151.332031 308.777344 151.449219 308.777344 C 151.566406 308.777344 151.660156 308.683594 151.660156 308.566406 Z M 151.660156 308.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.554688 306.910156 C 149.554688 306.792969 149.460938 306.699219 149.34375 306.699219 C 149.226562 306.699219 149.132812 306.792969 149.132812 306.910156 C 149.132812 307.027344 149.226562 307.121094 149.34375 307.121094 C 149.460938 307.121094 149.554688 307.027344 149.554688 306.910156 Z M 149.554688 306.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.398438 303.804688 C 151.398438 303.6875 151.304688 303.59375 151.1875 303.59375 C 151.070312 303.59375 150.976562 303.6875 150.976562 303.804688 C 150.976562 303.921875 151.070312 304.015625 151.1875 304.015625 C 151.304688 304.015625 151.398438 303.921875 151.398438 303.804688 Z M 151.398438 303.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.074219 302.503906 C 150.074219 302.386719 149.980469 302.292969 149.863281 302.292969 C 149.746094 302.292969 149.652344 302.386719 149.652344 302.503906 C 149.652344 302.621094 149.746094 302.714844 149.863281 302.714844 C 149.980469 302.714844 150.074219 302.621094 150.074219 302.503906 Z M 150.074219 302.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.769531 303.550781 C 147.769531 303.433594 147.675781 303.339844 147.558594 303.339844 C 147.441406 303.339844 147.347656 303.433594 147.347656 303.550781 C 147.347656 303.667969 147.441406 303.761719 147.558594 303.761719 C 147.675781 303.761719 147.769531 303.667969 147.769531 303.550781 Z M 147.769531 303.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.207031 303.75 C 147.207031 303.632812 147.113281 303.539062 146.996094 303.539062 C 146.878906 303.539062 146.785156 303.632812 146.785156 303.75 C 146.785156 303.867188 146.878906 303.960938 146.996094 303.960938 C 147.113281 303.960938 147.207031 303.867188 147.207031 303.75 Z M 147.207031 303.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.054688 306.132812 C 145.054688 306.015625 144.960938 305.921875 144.84375 305.921875 C 144.726562 305.921875 144.632812 306.015625 144.632812 306.132812 C 144.632812 306.25 144.726562 306.34375 144.84375 306.34375 C 144.960938 306.34375 145.054688 306.25 145.054688 306.132812 Z M 145.054688 306.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.605469 308.660156 C 144.605469 308.542969 144.511719 308.449219 144.394531 308.449219 C 144.277344 308.449219 144.183594 308.542969 144.183594 308.660156 C 144.183594 308.777344 144.277344 308.871094 144.394531 308.871094 C 144.511719 308.871094 144.605469 308.777344 144.605469 308.660156 Z M 144.605469 308.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.3125 313.558594 C 145.3125 313.441406 145.21875 313.347656 145.101562 313.347656 C 144.984375 313.347656 144.890625 313.441406 144.890625 313.558594 C 144.890625 313.675781 144.984375 313.769531 145.101562 313.769531 C 145.21875 313.769531 145.3125 313.675781 145.3125 313.558594 Z M 145.3125 313.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.320312 312.789062 C 146.320312 312.671875 146.226562 312.578125 146.109375 312.578125 C 145.992188 312.578125 145.898438 312.671875 145.898438 312.789062 C 145.898438 312.90625 145.992188 313 146.109375 313 C 146.226562 313 146.320312 312.90625 146.320312 312.789062 Z M 146.320312 312.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.570312 312.757812 C 148.570312 312.640625 148.476562 312.546875 148.359375 312.546875 C 148.242188 312.546875 148.148438 312.640625 148.148438 312.757812 C 148.148438 312.875 148.242188 312.96875 148.359375 312.96875 C 148.476562 312.96875 148.570312 312.875 148.570312 312.757812 Z M 148.570312 312.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.367188 311.699219 C 145.367188 311.582031 145.273438 311.488281 145.15625 311.488281 C 145.039062 311.488281 144.945312 311.582031 144.945312 311.699219 C 144.945312 311.816406 145.039062 311.910156 145.15625 311.910156 C 145.273438 311.910156 145.367188 311.816406 145.367188 311.699219 Z M 145.367188 311.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.527344 310.472656 C 142.527344 310.355469 142.433594 310.261719 142.316406 310.261719 C 142.199219 310.261719 142.105469 310.355469 142.105469 310.472656 C 142.105469 310.589844 142.199219 310.683594 142.316406 310.683594 C 142.433594 310.683594 142.527344 310.589844 142.527344 310.472656 Z M 142.527344 310.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.597656 309.351562 C 143.597656 309.234375 143.503906 309.140625 143.386719 309.140625 C 143.269531 309.140625 143.175781 309.234375 143.175781 309.351562 C 143.175781 309.46875 143.269531 309.5625 143.386719 309.5625 C 143.503906 309.5625 143.597656 309.46875 143.597656 309.351562 Z M 143.597656 309.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.933594 306.886719 C 140.933594 306.769531 140.839844 306.675781 140.722656 306.675781 C 140.605469 306.675781 140.511719 306.769531 140.511719 306.886719 C 140.511719 307.003906 140.605469 307.097656 140.722656 307.097656 C 140.839844 307.097656 140.933594 307.003906 140.933594 306.886719 Z M 140.933594 306.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.207031 310.414062 C 142.207031 310.296875 142.113281 310.203125 141.996094 310.203125 C 141.878906 310.203125 141.785156 310.296875 141.785156 310.414062 C 141.785156 310.53125 141.878906 310.625 141.996094 310.625 C 142.113281 310.625 142.207031 310.53125 142.207031 310.414062 Z M 142.207031 310.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.738281 309.8125 C 145.738281 309.695312 145.644531 309.601562 145.527344 309.601562 C 145.410156 309.601562 145.316406 309.695312 145.316406 309.8125 C 145.316406 309.929688 145.410156 310.023438 145.527344 310.023438 C 145.644531 310.023438 145.738281 309.929688 145.738281 309.8125 Z M 145.738281 309.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.09375 311.371094 C 145.09375 311.253906 145 311.160156 144.882812 311.160156 C 144.765625 311.160156 144.671875 311.253906 144.671875 311.371094 C 144.671875 311.488281 144.765625 311.582031 144.882812 311.582031 C 145 311.582031 145.09375 311.488281 145.09375 311.371094 Z M 145.09375 311.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.335938 309.210938 C 145.335938 309.09375 145.242188 309 145.125 309 C 145.007812 309 144.914062 309.09375 144.914062 309.210938 C 144.914062 309.328125 145.007812 309.421875 145.125 309.421875 C 145.242188 309.421875 145.335938 309.328125 145.335938 309.210938 Z M 145.335938 309.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.878906 308.851562 C 144.878906 308.734375 144.785156 308.640625 144.667969 308.640625 C 144.550781 308.640625 144.457031 308.734375 144.457031 308.851562 C 144.457031 308.96875 144.550781 309.0625 144.667969 309.0625 C 144.785156 309.0625 144.878906 308.96875 144.878906 308.851562 Z M 144.878906 308.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.460938 309.265625 C 145.460938 309.148438 145.367188 309.054688 145.25 309.054688 C 145.132812 309.054688 145.039062 309.148438 145.039062 309.265625 C 145.039062 309.382812 145.132812 309.476562 145.25 309.476562 C 145.367188 309.476562 145.460938 309.382812 145.460938 309.265625 Z M 145.460938 309.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.953125 310.316406 C 146.953125 310.199219 146.859375 310.105469 146.742188 310.105469 C 146.625 310.105469 146.53125 310.199219 146.53125 310.316406 C 146.53125 310.433594 146.625 310.527344 146.742188 310.527344 C 146.859375 310.527344 146.953125 310.433594 146.953125 310.316406 Z M 146.953125 310.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.292969 311.714844 C 145.292969 311.597656 145.199219 311.503906 145.082031 311.503906 C 144.964844 311.503906 144.871094 311.597656 144.871094 311.714844 C 144.871094 311.832031 144.964844 311.925781 145.082031 311.925781 C 145.199219 311.925781 145.292969 311.832031 145.292969 311.714844 Z M 145.292969 311.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.964844 311.410156 C 143.964844 311.292969 143.871094 311.199219 143.753906 311.199219 C 143.636719 311.199219 143.542969 311.292969 143.542969 311.410156 C 143.542969 311.527344 143.636719 311.621094 143.753906 311.621094 C 143.871094 311.621094 143.964844 311.527344 143.964844 311.410156 Z M 143.964844 311.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.925781 312.832031 C 144.925781 312.714844 144.832031 312.621094 144.714844 312.621094 C 144.597656 312.621094 144.503906 312.714844 144.503906 312.832031 C 144.503906 312.949219 144.597656 313.042969 144.714844 313.042969 C 144.832031 313.042969 144.925781 312.949219 144.925781 312.832031 Z M 144.925781 312.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.570312 312.925781 C 143.570312 312.808594 143.476562 312.714844 143.359375 312.714844 C 143.242188 312.714844 143.148438 312.808594 143.148438 312.925781 C 143.148438 313.042969 143.242188 313.136719 143.359375 313.136719 C 143.476562 313.136719 143.570312 313.042969 143.570312 312.925781 Z M 143.570312 312.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.542969 310.648438 C 143.542969 310.53125 143.449219 310.4375 143.332031 310.4375 C 143.214844 310.4375 143.121094 310.53125 143.121094 310.648438 C 143.121094 310.765625 143.214844 310.859375 143.332031 310.859375 C 143.449219 310.859375 143.542969 310.765625 143.542969 310.648438 Z M 143.542969 310.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.371094 311.195312 C 144.371094 311.078125 144.277344 310.984375 144.160156 310.984375 C 144.042969 310.984375 143.949219 311.078125 143.949219 311.195312 C 143.949219 311.3125 144.042969 311.40625 144.160156 311.40625 C 144.277344 311.40625 144.371094 311.3125 144.371094 311.195312 Z M 144.371094 311.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.914062 309.804688 C 143.914062 309.6875 143.820312 309.59375 143.703125 309.59375 C 143.585938 309.59375 143.492188 309.6875 143.492188 309.804688 C 143.492188 309.921875 143.585938 310.015625 143.703125 310.015625 C 143.820312 310.015625 143.914062 309.921875 143.914062 309.804688 Z M 143.914062 309.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.296875 307.976562 C 144.296875 307.859375 144.203125 307.765625 144.085938 307.765625 C 143.96875 307.765625 143.875 307.859375 143.875 307.976562 C 143.875 308.09375 143.96875 308.1875 144.085938 308.1875 C 144.203125 308.1875 144.296875 308.09375 144.296875 307.976562 Z M 144.296875 307.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.988281 304.3125 C 142.988281 304.195312 142.894531 304.101562 142.777344 304.101562 C 142.660156 304.101562 142.566406 304.195312 142.566406 304.3125 C 142.566406 304.429688 142.660156 304.523438 142.777344 304.523438 C 142.894531 304.523438 142.988281 304.429688 142.988281 304.3125 Z M 142.988281 304.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.5625 305.738281 C 145.5625 305.621094 145.46875 305.527344 145.351562 305.527344 C 145.234375 305.527344 145.140625 305.621094 145.140625 305.738281 C 145.140625 305.855469 145.234375 305.949219 145.351562 305.949219 C 145.46875 305.949219 145.5625 305.855469 145.5625 305.738281 Z M 145.5625 305.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.054688 308.863281 C 147.054688 308.746094 146.960938 308.652344 146.84375 308.652344 C 146.726562 308.652344 146.632812 308.746094 146.632812 308.863281 C 146.632812 308.980469 146.726562 309.074219 146.84375 309.074219 C 146.960938 309.074219 147.054688 308.980469 147.054688 308.863281 Z M 147.054688 308.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.132812 310.546875 C 148.132812 310.429688 148.039062 310.335938 147.921875 310.335938 C 147.804688 310.335938 147.710938 310.429688 147.710938 310.546875 C 147.710938 310.664062 147.804688 310.757812 147.921875 310.757812 C 148.039062 310.757812 148.132812 310.664062 148.132812 310.546875 Z M 148.132812 310.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.894531 314.46875 C 147.894531 314.351562 147.800781 314.257812 147.683594 314.257812 C 147.566406 314.257812 147.472656 314.351562 147.472656 314.46875 C 147.472656 314.585938 147.566406 314.679688 147.683594 314.679688 C 147.800781 314.679688 147.894531 314.585938 147.894531 314.46875 Z M 147.894531 314.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.375 314.21875 C 146.375 314.101562 146.28125 314.007812 146.164062 314.007812 C 146.046875 314.007812 145.953125 314.101562 145.953125 314.21875 C 145.953125 314.335938 146.046875 314.429688 146.164062 314.429688 C 146.28125 314.429688 146.375 314.335938 146.375 314.21875 Z M 146.375 314.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.582031 314.308594 C 148.582031 314.191406 148.488281 314.097656 148.371094 314.097656 C 148.253906 314.097656 148.160156 314.191406 148.160156 314.308594 C 148.160156 314.425781 148.253906 314.519531 148.371094 314.519531 C 148.488281 314.519531 148.582031 314.425781 148.582031 314.308594 Z M 148.582031 314.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.046875 313.117188 C 148.046875 313 147.953125 312.90625 147.835938 312.90625 C 147.71875 312.90625 147.625 313 147.625 313.117188 C 147.625 313.234375 147.71875 313.328125 147.835938 313.328125 C 147.953125 313.328125 148.046875 313.234375 148.046875 313.117188 Z M 148.046875 313.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.59375 314.15625 C 150.59375 314.039062 150.5 313.945312 150.382812 313.945312 C 150.265625 313.945312 150.171875 314.039062 150.171875 314.15625 C 150.171875 314.273438 150.265625 314.367188 150.382812 314.367188 C 150.5 314.367188 150.59375 314.273438 150.59375 314.15625 Z M 150.59375 314.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.058594 315.375 C 150.058594 315.257812 149.964844 315.164062 149.847656 315.164062 C 149.730469 315.164062 149.636719 315.257812 149.636719 315.375 C 149.636719 315.492188 149.730469 315.585938 149.847656 315.585938 C 149.964844 315.585938 150.058594 315.492188 150.058594 315.375 Z M 150.058594 315.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.847656 314.757812 C 152.847656 314.640625 152.753906 314.546875 152.636719 314.546875 C 152.519531 314.546875 152.425781 314.640625 152.425781 314.757812 C 152.425781 314.875 152.519531 314.96875 152.636719 314.96875 C 152.753906 314.96875 152.847656 314.875 152.847656 314.757812 Z M 152.847656 314.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.410156 318.046875 C 154.410156 317.929688 154.316406 317.835938 154.199219 317.835938 C 154.082031 317.835938 153.988281 317.929688 153.988281 318.046875 C 153.988281 318.164062 154.082031 318.257812 154.199219 318.257812 C 154.316406 318.257812 154.410156 318.164062 154.410156 318.046875 Z M 154.410156 318.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.683594 317.453125 C 155.683594 317.335938 155.589844 317.242188 155.472656 317.242188 C 155.355469 317.242188 155.261719 317.335938 155.261719 317.453125 C 155.261719 317.570312 155.355469 317.664062 155.472656 317.664062 C 155.589844 317.664062 155.683594 317.570312 155.683594 317.453125 Z M 155.683594 317.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.015625 320.289062 C 158.015625 320.171875 157.921875 320.078125 157.804688 320.078125 C 157.6875 320.078125 157.59375 320.171875 157.59375 320.289062 C 157.59375 320.40625 157.6875 320.5 157.804688 320.5 C 157.921875 320.5 158.015625 320.40625 158.015625 320.289062 Z M 158.015625 320.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.929688 323.417969 C 158.929688 323.300781 158.835938 323.207031 158.71875 323.207031 C 158.601562 323.207031 158.507812 323.300781 158.507812 323.417969 C 158.507812 323.535156 158.601562 323.628906 158.71875 323.628906 C 158.835938 323.628906 158.929688 323.535156 158.929688 323.417969 Z M 158.929688 323.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.519531 323.277344 C 158.519531 323.160156 158.425781 323.066406 158.308594 323.066406 C 158.191406 323.066406 158.097656 323.160156 158.097656 323.277344 C 158.097656 323.394531 158.191406 323.488281 158.308594 323.488281 C 158.425781 323.488281 158.519531 323.394531 158.519531 323.277344 Z M 158.519531 323.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.988281 323.480469 C 161.988281 323.363281 161.894531 323.269531 161.777344 323.269531 C 161.660156 323.269531 161.566406 323.363281 161.566406 323.480469 C 161.566406 323.597656 161.660156 323.691406 161.777344 323.691406 C 161.894531 323.691406 161.988281 323.597656 161.988281 323.480469 Z M 161.988281 323.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.625 329.15625 C 158.625 329.039062 158.53125 328.945312 158.414062 328.945312 C 158.296875 328.945312 158.203125 329.039062 158.203125 329.15625 C 158.203125 329.273438 158.296875 329.367188 158.414062 329.367188 C 158.53125 329.367188 158.625 329.273438 158.625 329.15625 Z M 158.625 329.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.972656 329.5625 C 160.972656 329.445312 160.878906 329.351562 160.761719 329.351562 C 160.644531 329.351562 160.550781 329.445312 160.550781 329.5625 C 160.550781 329.679688 160.644531 329.773438 160.761719 329.773438 C 160.878906 329.773438 160.972656 329.679688 160.972656 329.5625 Z M 160.972656 329.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.78125 329.871094 C 161.78125 329.753906 161.6875 329.660156 161.570312 329.660156 C 161.453125 329.660156 161.359375 329.753906 161.359375 329.871094 C 161.359375 329.988281 161.453125 330.082031 161.570312 330.082031 C 161.6875 330.082031 161.78125 329.988281 161.78125 329.871094 Z M 161.78125 329.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.210938 331.585938 C 162.210938 331.46875 162.117188 331.375 162 331.375 C 161.882812 331.375 161.789062 331.46875 161.789062 331.585938 C 161.789062 331.703125 161.882812 331.796875 162 331.796875 C 162.117188 331.796875 162.210938 331.703125 162.210938 331.585938 Z M 162.210938 331.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.535156 331.886719 C 164.535156 331.769531 164.441406 331.675781 164.324219 331.675781 C 164.207031 331.675781 164.113281 331.769531 164.113281 331.886719 C 164.113281 332.003906 164.207031 332.097656 164.324219 332.097656 C 164.441406 332.097656 164.535156 332.003906 164.535156 331.886719 Z M 164.535156 331.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.457031 333.519531 C 164.457031 333.402344 164.363281 333.308594 164.246094 333.308594 C 164.128906 333.308594 164.035156 333.402344 164.035156 333.519531 C 164.035156 333.636719 164.128906 333.730469 164.246094 333.730469 C 164.363281 333.730469 164.457031 333.636719 164.457031 333.519531 Z M 164.457031 333.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.777344 332.109375 C 159.777344 331.992188 159.683594 331.898438 159.566406 331.898438 C 159.449219 331.898438 159.355469 331.992188 159.355469 332.109375 C 159.355469 332.226562 159.449219 332.320312 159.566406 332.320312 C 159.683594 332.320312 159.777344 332.226562 159.777344 332.109375 Z M 159.777344 332.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.628906 330.46875 C 158.628906 330.351562 158.535156 330.257812 158.417969 330.257812 C 158.300781 330.257812 158.207031 330.351562 158.207031 330.46875 C 158.207031 330.585938 158.300781 330.679688 158.417969 330.679688 C 158.535156 330.679688 158.628906 330.585938 158.628906 330.46875 Z M 158.628906 330.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.425781 328.828125 C 159.425781 328.710938 159.332031 328.617188 159.214844 328.617188 C 159.097656 328.617188 159.003906 328.710938 159.003906 328.828125 C 159.003906 328.945312 159.097656 329.039062 159.214844 329.039062 C 159.332031 329.039062 159.425781 328.945312 159.425781 328.828125 Z M 159.425781 328.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.125 330.476562 C 159.125 330.359375 159.03125 330.265625 158.914062 330.265625 C 158.796875 330.265625 158.703125 330.359375 158.703125 330.476562 C 158.703125 330.59375 158.796875 330.6875 158.914062 330.6875 C 159.03125 330.6875 159.125 330.59375 159.125 330.476562 Z M 159.125 330.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.054688 328.660156 C 158.054688 328.542969 157.960938 328.449219 157.84375 328.449219 C 157.726562 328.449219 157.632812 328.542969 157.632812 328.660156 C 157.632812 328.777344 157.726562 328.871094 157.84375 328.871094 C 157.960938 328.871094 158.054688 328.777344 158.054688 328.660156 Z M 158.054688 328.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.9375 331.546875 C 153.9375 331.429688 153.84375 331.335938 153.726562 331.335938 C 153.609375 331.335938 153.515625 331.429688 153.515625 331.546875 C 153.515625 331.664062 153.609375 331.757812 153.726562 331.757812 C 153.84375 331.757812 153.9375 331.664062 153.9375 331.546875 Z M 153.9375 331.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.320312 332.140625 C 154.320312 332.023438 154.226562 331.929688 154.109375 331.929688 C 153.992188 331.929688 153.898438 332.023438 153.898438 332.140625 C 153.898438 332.257812 153.992188 332.351562 154.109375 332.351562 C 154.226562 332.351562 154.320312 332.257812 154.320312 332.140625 Z M 154.320312 332.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.117188 332.253906 C 152.117188 332.136719 152.023438 332.042969 151.90625 332.042969 C 151.789062 332.042969 151.695312 332.136719 151.695312 332.253906 C 151.695312 332.371094 151.789062 332.464844 151.90625 332.464844 C 152.023438 332.464844 152.117188 332.371094 152.117188 332.253906 Z M 152.117188 332.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.152344 332.496094 C 152.152344 332.378906 152.058594 332.285156 151.941406 332.285156 C 151.824219 332.285156 151.730469 332.378906 151.730469 332.496094 C 151.730469 332.613281 151.824219 332.707031 151.941406 332.707031 C 152.058594 332.707031 152.152344 332.613281 152.152344 332.496094 Z M 152.152344 332.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.578125 330.875 C 154.578125 330.757812 154.484375 330.664062 154.367188 330.664062 C 154.25 330.664062 154.15625 330.757812 154.15625 330.875 C 154.15625 330.992188 154.25 331.085938 154.367188 331.085938 C 154.484375 331.085938 154.578125 330.992188 154.578125 330.875 Z M 154.578125 330.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.640625 331.273438 C 157.640625 331.15625 157.546875 331.0625 157.429688 331.0625 C 157.3125 331.0625 157.21875 331.15625 157.21875 331.273438 C 157.21875 331.390625 157.3125 331.484375 157.429688 331.484375 C 157.546875 331.484375 157.640625 331.390625 157.640625 331.273438 Z M 157.640625 331.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.515625 332.867188 C 158.515625 332.75 158.421875 332.65625 158.304688 332.65625 C 158.1875 332.65625 158.09375 332.75 158.09375 332.867188 C 158.09375 332.984375 158.1875 333.078125 158.304688 333.078125 C 158.421875 333.078125 158.515625 332.984375 158.515625 332.867188 Z M 158.515625 332.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.699219 335.90625 C 160.699219 335.789062 160.605469 335.695312 160.488281 335.695312 C 160.371094 335.695312 160.277344 335.789062 160.277344 335.90625 C 160.277344 336.023438 160.371094 336.117188 160.488281 336.117188 C 160.605469 336.117188 160.699219 336.023438 160.699219 335.90625 Z M 160.699219 335.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.03125 335.140625 C 160.03125 335.023438 159.9375 334.929688 159.820312 334.929688 C 159.703125 334.929688 159.609375 335.023438 159.609375 335.140625 C 159.609375 335.257812 159.703125 335.351562 159.820312 335.351562 C 159.9375 335.351562 160.03125 335.257812 160.03125 335.140625 Z M 160.03125 335.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.289062 334.257812 C 162.289062 334.140625 162.195312 334.046875 162.078125 334.046875 C 161.960938 334.046875 161.867188 334.140625 161.867188 334.257812 C 161.867188 334.375 161.960938 334.46875 162.078125 334.46875 C 162.195312 334.46875 162.289062 334.375 162.289062 334.257812 Z M 162.289062 334.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.964844 331.921875 C 160.964844 331.804688 160.871094 331.710938 160.753906 331.710938 C 160.636719 331.710938 160.542969 331.804688 160.542969 331.921875 C 160.542969 332.039062 160.636719 332.132812 160.753906 332.132812 C 160.871094 332.132812 160.964844 332.039062 160.964844 331.921875 Z M 160.964844 331.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.023438 327.539062 C 160.023438 327.421875 159.929688 327.328125 159.8125 327.328125 C 159.695312 327.328125 159.601562 327.421875 159.601562 327.539062 C 159.601562 327.65625 159.695312 327.75 159.8125 327.75 C 159.929688 327.75 160.023438 327.65625 160.023438 327.539062 Z M 160.023438 327.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.824219 329.316406 C 158.824219 329.199219 158.730469 329.105469 158.613281 329.105469 C 158.496094 329.105469 158.402344 329.199219 158.402344 329.316406 C 158.402344 329.433594 158.496094 329.527344 158.613281 329.527344 C 158.730469 329.527344 158.824219 329.433594 158.824219 329.316406 Z M 158.824219 329.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.210938 327.515625 C 159.210938 327.398438 159.117188 327.304688 159 327.304688 C 158.882812 327.304688 158.789062 327.398438 158.789062 327.515625 C 158.789062 327.632812 158.882812 327.726562 159 327.726562 C 159.117188 327.726562 159.210938 327.632812 159.210938 327.515625 Z M 159.210938 327.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.464844 327.699219 C 158.464844 327.582031 158.371094 327.488281 158.253906 327.488281 C 158.136719 327.488281 158.042969 327.582031 158.042969 327.699219 C 158.042969 327.816406 158.136719 327.910156 158.253906 327.910156 C 158.371094 327.910156 158.464844 327.816406 158.464844 327.699219 Z M 158.464844 327.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.246094 327.644531 C 160.246094 327.527344 160.152344 327.433594 160.035156 327.433594 C 159.917969 327.433594 159.824219 327.527344 159.824219 327.644531 C 159.824219 327.761719 159.917969 327.855469 160.035156 327.855469 C 160.152344 327.855469 160.246094 327.761719 160.246094 327.644531 Z M 160.246094 327.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.453125 324.890625 C 161.453125 324.773438 161.359375 324.679688 161.242188 324.679688 C 161.125 324.679688 161.03125 324.773438 161.03125 324.890625 C 161.03125 325.007812 161.125 325.101562 161.242188 325.101562 C 161.359375 325.101562 161.453125 325.007812 161.453125 324.890625 Z M 161.453125 324.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.582031 322.929688 C 160.582031 322.8125 160.488281 322.71875 160.371094 322.71875 C 160.253906 322.71875 160.160156 322.8125 160.160156 322.929688 C 160.160156 323.046875 160.253906 323.140625 160.371094 323.140625 C 160.488281 323.140625 160.582031 323.046875 160.582031 322.929688 Z M 160.582031 322.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.222656 323.46875 C 161.222656 323.351562 161.128906 323.257812 161.011719 323.257812 C 160.894531 323.257812 160.800781 323.351562 160.800781 323.46875 C 160.800781 323.585938 160.894531 323.679688 161.011719 323.679688 C 161.128906 323.679688 161.222656 323.585938 161.222656 323.46875 Z M 161.222656 323.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.925781 327.328125 C 162.925781 327.210938 162.832031 327.117188 162.714844 327.117188 C 162.597656 327.117188 162.503906 327.210938 162.503906 327.328125 C 162.503906 327.445312 162.597656 327.539062 162.714844 327.539062 C 162.832031 327.539062 162.925781 327.445312 162.925781 327.328125 Z M 162.925781 327.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.703125 323.949219 C 158.703125 323.832031 158.609375 323.738281 158.492188 323.738281 C 158.375 323.738281 158.28125 323.832031 158.28125 323.949219 C 158.28125 324.066406 158.375 324.160156 158.492188 324.160156 C 158.609375 324.160156 158.703125 324.066406 158.703125 323.949219 Z M 158.703125 323.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.5 324.132812 C 160.5 324.015625 160.40625 323.921875 160.289062 323.921875 C 160.171875 323.921875 160.078125 324.015625 160.078125 324.132812 C 160.078125 324.25 160.171875 324.34375 160.289062 324.34375 C 160.40625 324.34375 160.5 324.25 160.5 324.132812 Z M 160.5 324.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.566406 324.050781 C 159.566406 323.933594 159.472656 323.839844 159.355469 323.839844 C 159.238281 323.839844 159.144531 323.933594 159.144531 324.050781 C 159.144531 324.167969 159.238281 324.261719 159.355469 324.261719 C 159.472656 324.261719 159.566406 324.167969 159.566406 324.050781 Z M 159.566406 324.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.289062 322.992188 C 157.289062 322.875 157.195312 322.78125 157.078125 322.78125 C 156.960938 322.78125 156.867188 322.875 156.867188 322.992188 C 156.867188 323.109375 156.960938 323.203125 157.078125 323.203125 C 157.195312 323.203125 157.289062 323.109375 157.289062 322.992188 Z M 157.289062 322.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.664062 321.550781 C 154.664062 321.433594 154.570312 321.339844 154.453125 321.339844 C 154.335938 321.339844 154.242188 321.433594 154.242188 321.550781 C 154.242188 321.667969 154.335938 321.761719 154.453125 321.761719 C 154.570312 321.761719 154.664062 321.667969 154.664062 321.550781 Z M 154.664062 321.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.320312 318.394531 C 155.320312 318.277344 155.226562 318.183594 155.109375 318.183594 C 154.992188 318.183594 154.898438 318.277344 154.898438 318.394531 C 154.898438 318.511719 154.992188 318.605469 155.109375 318.605469 C 155.226562 318.605469 155.320312 318.511719 155.320312 318.394531 Z M 155.320312 318.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.636719 312.917969 C 156.636719 312.800781 156.542969 312.707031 156.425781 312.707031 C 156.308594 312.707031 156.214844 312.800781 156.214844 312.917969 C 156.214844 313.035156 156.308594 313.128906 156.425781 313.128906 C 156.542969 313.128906 156.636719 313.035156 156.636719 312.917969 Z M 156.636719 312.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.570312 314.527344 C 155.570312 314.410156 155.476562 314.316406 155.359375 314.316406 C 155.242188 314.316406 155.148438 314.410156 155.148438 314.527344 C 155.148438 314.644531 155.242188 314.738281 155.359375 314.738281 C 155.476562 314.738281 155.570312 314.644531 155.570312 314.527344 Z M 155.570312 314.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.039062 316.085938 C 157.039062 315.96875 156.945312 315.875 156.828125 315.875 C 156.710938 315.875 156.617188 315.96875 156.617188 316.085938 C 156.617188 316.203125 156.710938 316.296875 156.828125 316.296875 C 156.945312 316.296875 157.039062 316.203125 157.039062 316.085938 Z M 157.039062 316.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.496094 318.914062 C 153.496094 318.796875 153.402344 318.703125 153.285156 318.703125 C 153.167969 318.703125 153.074219 318.796875 153.074219 318.914062 C 153.074219 319.03125 153.167969 319.125 153.285156 319.125 C 153.402344 319.125 153.496094 319.03125 153.496094 318.914062 Z M 153.496094 318.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.59375 321.128906 C 154.59375 321.011719 154.5 320.917969 154.382812 320.917969 C 154.265625 320.917969 154.171875 321.011719 154.171875 321.128906 C 154.171875 321.246094 154.265625 321.339844 154.382812 321.339844 C 154.5 321.339844 154.59375 321.246094 154.59375 321.128906 Z M 154.59375 321.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.460938 322.484375 C 155.460938 322.367188 155.367188 322.273438 155.25 322.273438 C 155.132812 322.273438 155.039062 322.367188 155.039062 322.484375 C 155.039062 322.601562 155.132812 322.695312 155.25 322.695312 C 155.367188 322.695312 155.460938 322.601562 155.460938 322.484375 Z M 155.460938 322.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.613281 323.933594 C 154.613281 323.816406 154.519531 323.722656 154.402344 323.722656 C 154.285156 323.722656 154.191406 323.816406 154.191406 323.933594 C 154.191406 324.050781 154.285156 324.144531 154.402344 324.144531 C 154.519531 324.144531 154.613281 324.050781 154.613281 323.933594 Z M 154.613281 323.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.785156 325.019531 C 154.785156 324.902344 154.691406 324.808594 154.574219 324.808594 C 154.457031 324.808594 154.363281 324.902344 154.363281 325.019531 C 154.363281 325.136719 154.457031 325.230469 154.574219 325.230469 C 154.691406 325.230469 154.785156 325.136719 154.785156 325.019531 Z M 154.785156 325.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.414062 321.535156 C 155.414062 321.417969 155.320312 321.324219 155.203125 321.324219 C 155.085938 321.324219 154.992188 321.417969 154.992188 321.535156 C 154.992188 321.652344 155.085938 321.746094 155.203125 321.746094 C 155.320312 321.746094 155.414062 321.652344 155.414062 321.535156 Z M 155.414062 321.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.5625 321.472656 C 157.5625 321.355469 157.46875 321.261719 157.351562 321.261719 C 157.234375 321.261719 157.140625 321.355469 157.140625 321.472656 C 157.140625 321.589844 157.234375 321.683594 157.351562 321.683594 C 157.46875 321.683594 157.5625 321.589844 157.5625 321.472656 Z M 157.5625 321.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.605469 317.59375 C 155.605469 317.476562 155.511719 317.382812 155.394531 317.382812 C 155.277344 317.382812 155.183594 317.476562 155.183594 317.59375 C 155.183594 317.710938 155.277344 317.804688 155.394531 317.804688 C 155.511719 317.804688 155.605469 317.710938 155.605469 317.59375 Z M 155.605469 317.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.714844 319.835938 C 157.714844 319.71875 157.621094 319.625 157.503906 319.625 C 157.386719 319.625 157.292969 319.71875 157.292969 319.835938 C 157.292969 319.953125 157.386719 320.046875 157.503906 320.046875 C 157.621094 320.046875 157.714844 319.953125 157.714844 319.835938 Z M 157.714844 319.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.128906 320.007812 C 157.128906 319.890625 157.035156 319.796875 156.917969 319.796875 C 156.800781 319.796875 156.707031 319.890625 156.707031 320.007812 C 156.707031 320.125 156.800781 320.21875 156.917969 320.21875 C 157.035156 320.21875 157.128906 320.125 157.128906 320.007812 Z M 157.128906 320.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.414062 324.546875 C 159.414062 324.429688 159.320312 324.335938 159.203125 324.335938 C 159.085938 324.335938 158.992188 324.429688 158.992188 324.546875 C 158.992188 324.664062 159.085938 324.757812 159.203125 324.757812 C 159.320312 324.757812 159.414062 324.664062 159.414062 324.546875 Z M 159.414062 324.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.09375 321.859375 C 159.09375 321.742188 159 321.648438 158.882812 321.648438 C 158.765625 321.648438 158.671875 321.742188 158.671875 321.859375 C 158.671875 321.976562 158.765625 322.070312 158.882812 322.070312 C 159 322.070312 159.09375 321.976562 159.09375 321.859375 Z M 159.09375 321.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.621094 323.996094 C 158.621094 323.878906 158.527344 323.785156 158.410156 323.785156 C 158.292969 323.785156 158.199219 323.878906 158.199219 323.996094 C 158.199219 324.113281 158.292969 324.207031 158.410156 324.207031 C 158.527344 324.207031 158.621094 324.113281 158.621094 323.996094 Z M 158.621094 323.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.085938 319.519531 C 157.085938 319.402344 156.992188 319.308594 156.875 319.308594 C 156.757812 319.308594 156.664062 319.402344 156.664062 319.519531 C 156.664062 319.636719 156.757812 319.730469 156.875 319.730469 C 156.992188 319.730469 157.085938 319.636719 157.085938 319.519531 Z M 157.085938 319.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.839844 315.5 C 161.839844 315.382812 161.746094 315.289062 161.628906 315.289062 C 161.511719 315.289062 161.417969 315.382812 161.417969 315.5 C 161.417969 315.617188 161.511719 315.710938 161.628906 315.710938 C 161.746094 315.710938 161.839844 315.617188 161.839844 315.5 Z M 161.839844 315.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.617188 314.921875 C 162.617188 314.804688 162.523438 314.710938 162.40625 314.710938 C 162.289062 314.710938 162.195312 314.804688 162.195312 314.921875 C 162.195312 315.039062 162.289062 315.132812 162.40625 315.132812 C 162.523438 315.132812 162.617188 315.039062 162.617188 314.921875 Z M 162.617188 314.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.007812 318.078125 C 162.007812 317.960938 161.914062 317.867188 161.796875 317.867188 C 161.679688 317.867188 161.585938 317.960938 161.585938 318.078125 C 161.585938 318.195312 161.679688 318.289062 161.796875 318.289062 C 161.914062 318.289062 162.007812 318.195312 162.007812 318.078125 Z M 162.007812 318.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.535156 314.957031 C 165.535156 314.839844 165.441406 314.746094 165.324219 314.746094 C 165.207031 314.746094 165.113281 314.839844 165.113281 314.957031 C 165.113281 315.074219 165.207031 315.167969 165.324219 315.167969 C 165.441406 315.167969 165.535156 315.074219 165.535156 314.957031 Z M 165.535156 314.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.421875 311.007812 C 162.421875 310.890625 162.328125 310.796875 162.210938 310.796875 C 162.09375 310.796875 162 310.890625 162 311.007812 C 162 311.125 162.09375 311.21875 162.210938 311.21875 C 162.328125 311.21875 162.421875 311.125 162.421875 311.007812 Z M 162.421875 311.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.386719 314.890625 C 166.386719 314.773438 166.292969 314.679688 166.175781 314.679688 C 166.058594 314.679688 165.964844 314.773438 165.964844 314.890625 C 165.964844 315.007812 166.058594 315.101562 166.175781 315.101562 C 166.292969 315.101562 166.386719 315.007812 166.386719 314.890625 Z M 166.386719 314.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.855469 317.632812 C 166.855469 317.515625 166.761719 317.421875 166.644531 317.421875 C 166.527344 317.421875 166.433594 317.515625 166.433594 317.632812 C 166.433594 317.75 166.527344 317.84375 166.644531 317.84375 C 166.761719 317.84375 166.855469 317.75 166.855469 317.632812 Z M 166.855469 317.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.988281 318.570312 C 167.988281 318.453125 167.894531 318.359375 167.777344 318.359375 C 167.660156 318.359375 167.566406 318.453125 167.566406 318.570312 C 167.566406 318.6875 167.660156 318.78125 167.777344 318.78125 C 167.894531 318.78125 167.988281 318.6875 167.988281 318.570312 Z M 167.988281 318.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.554688 318.304688 C 168.554688 318.1875 168.460938 318.09375 168.34375 318.09375 C 168.226562 318.09375 168.132812 318.1875 168.132812 318.304688 C 168.132812 318.421875 168.226562 318.515625 168.34375 318.515625 C 168.460938 318.515625 168.554688 318.421875 168.554688 318.304688 Z M 168.554688 318.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.019531 317.183594 C 168.019531 317.066406 167.925781 316.972656 167.808594 316.972656 C 167.691406 316.972656 167.597656 317.066406 167.597656 317.183594 C 167.597656 317.300781 167.691406 317.394531 167.808594 317.394531 C 167.925781 317.394531 168.019531 317.300781 168.019531 317.183594 Z M 168.019531 317.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.605469 320.304688 C 169.605469 320.1875 169.511719 320.09375 169.394531 320.09375 C 169.277344 320.09375 169.183594 320.1875 169.183594 320.304688 C 169.183594 320.421875 169.277344 320.515625 169.394531 320.515625 C 169.511719 320.515625 169.605469 320.421875 169.605469 320.304688 Z M 169.605469 320.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.65625 320.042969 C 167.65625 319.925781 167.5625 319.832031 167.445312 319.832031 C 167.328125 319.832031 167.234375 319.925781 167.234375 320.042969 C 167.234375 320.160156 167.328125 320.253906 167.445312 320.253906 C 167.5625 320.253906 167.65625 320.160156 167.65625 320.042969 Z M 167.65625 320.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.558594 322.285156 C 168.558594 322.167969 168.464844 322.074219 168.347656 322.074219 C 168.230469 322.074219 168.136719 322.167969 168.136719 322.285156 C 168.136719 322.402344 168.230469 322.496094 168.347656 322.496094 C 168.464844 322.496094 168.558594 322.402344 168.558594 322.285156 Z M 168.558594 322.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.039062 326.640625 C 165.039062 326.523438 164.945312 326.429688 164.828125 326.429688 C 164.710938 326.429688 164.617188 326.523438 164.617188 326.640625 C 164.617188 326.757812 164.710938 326.851562 164.828125 326.851562 C 164.945312 326.851562 165.039062 326.757812 165.039062 326.640625 Z M 165.039062 326.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.222656 328.269531 C 164.222656 328.152344 164.128906 328.058594 164.011719 328.058594 C 163.894531 328.058594 163.800781 328.152344 163.800781 328.269531 C 163.800781 328.386719 163.894531 328.480469 164.011719 328.480469 C 164.128906 328.480469 164.222656 328.386719 164.222656 328.269531 Z M 164.222656 328.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.796875 325.292969 C 167.796875 325.175781 167.703125 325.082031 167.585938 325.082031 C 167.46875 325.082031 167.375 325.175781 167.375 325.292969 C 167.375 325.410156 167.46875 325.503906 167.585938 325.503906 C 167.703125 325.503906 167.796875 325.410156 167.796875 325.292969 Z M 167.796875 325.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.675781 326.484375 C 168.675781 326.367188 168.582031 326.273438 168.464844 326.273438 C 168.347656 326.273438 168.253906 326.367188 168.253906 326.484375 C 168.253906 326.601562 168.347656 326.695312 168.464844 326.695312 C 168.582031 326.695312 168.675781 326.601562 168.675781 326.484375 Z M 168.675781 326.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.820312 325.183594 C 169.820312 325.066406 169.726562 324.972656 169.609375 324.972656 C 169.492188 324.972656 169.398438 325.066406 169.398438 325.183594 C 169.398438 325.300781 169.492188 325.394531 169.609375 325.394531 C 169.726562 325.394531 169.820312 325.300781 169.820312 325.183594 Z M 169.820312 325.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.378906 327.941406 C 167.378906 327.824219 167.285156 327.730469 167.167969 327.730469 C 167.050781 327.730469 166.957031 327.824219 166.957031 327.941406 C 166.957031 328.058594 167.050781 328.152344 167.167969 328.152344 C 167.285156 328.152344 167.378906 328.058594 167.378906 327.941406 Z M 167.378906 327.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.074219 325.480469 C 166.074219 325.363281 165.980469 325.269531 165.863281 325.269531 C 165.746094 325.269531 165.652344 325.363281 165.652344 325.480469 C 165.652344 325.597656 165.746094 325.691406 165.863281 325.691406 C 165.980469 325.691406 166.074219 325.597656 166.074219 325.480469 Z M 166.074219 325.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.160156 327.117188 C 164.160156 327 164.066406 326.90625 163.949219 326.90625 C 163.832031 326.90625 163.738281 327 163.738281 327.117188 C 163.738281 327.234375 163.832031 327.328125 163.949219 327.328125 C 164.066406 327.328125 164.160156 327.234375 164.160156 327.117188 Z M 164.160156 327.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.367188 326.921875 C 167.367188 326.804688 167.273438 326.710938 167.15625 326.710938 C 167.039062 326.710938 166.945312 326.804688 166.945312 326.921875 C 166.945312 327.039062 167.039062 327.132812 167.15625 327.132812 C 167.273438 327.132812 167.367188 327.039062 167.367188 326.921875 Z M 167.367188 326.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.761719 326.671875 C 167.761719 326.554688 167.667969 326.460938 167.550781 326.460938 C 167.433594 326.460938 167.339844 326.554688 167.339844 326.671875 C 167.339844 326.789062 167.433594 326.882812 167.550781 326.882812 C 167.667969 326.882812 167.761719 326.789062 167.761719 326.671875 Z M 167.761719 326.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.574219 326.792969 C 169.574219 326.675781 169.480469 326.582031 169.363281 326.582031 C 169.246094 326.582031 169.152344 326.675781 169.152344 326.792969 C 169.152344 326.910156 169.246094 327.003906 169.363281 327.003906 C 169.480469 327.003906 169.574219 326.910156 169.574219 326.792969 Z M 169.574219 326.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.351562 325.0625 C 169.351562 324.945312 169.257812 324.851562 169.140625 324.851562 C 169.023438 324.851562 168.929688 324.945312 168.929688 325.0625 C 168.929688 325.179688 169.023438 325.273438 169.140625 325.273438 C 169.257812 325.273438 169.351562 325.179688 169.351562 325.0625 Z M 169.351562 325.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.96875 323.492188 C 170.96875 323.375 170.875 323.28125 170.757812 323.28125 C 170.640625 323.28125 170.546875 323.375 170.546875 323.492188 C 170.546875 323.609375 170.640625 323.703125 170.757812 323.703125 C 170.875 323.703125 170.96875 323.609375 170.96875 323.492188 Z M 170.96875 323.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.957031 319.527344 C 169.957031 319.410156 169.863281 319.316406 169.746094 319.316406 C 169.628906 319.316406 169.535156 319.410156 169.535156 319.527344 C 169.535156 319.644531 169.628906 319.738281 169.746094 319.738281 C 169.863281 319.738281 169.957031 319.644531 169.957031 319.527344 Z M 169.957031 319.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.824219 320.15625 C 170.824219 320.039062 170.730469 319.945312 170.613281 319.945312 C 170.496094 319.945312 170.402344 320.039062 170.402344 320.15625 C 170.402344 320.273438 170.496094 320.367188 170.613281 320.367188 C 170.730469 320.367188 170.824219 320.273438 170.824219 320.15625 Z M 170.824219 320.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.957031 321.675781 C 171.957031 321.558594 171.863281 321.464844 171.746094 321.464844 C 171.628906 321.464844 171.535156 321.558594 171.535156 321.675781 C 171.535156 321.792969 171.628906 321.886719 171.746094 321.886719 C 171.863281 321.886719 171.957031 321.792969 171.957031 321.675781 Z M 171.957031 321.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.238281 323.058594 C 170.238281 322.941406 170.144531 322.847656 170.027344 322.847656 C 169.910156 322.847656 169.816406 322.941406 169.816406 323.058594 C 169.816406 323.175781 169.910156 323.269531 170.027344 323.269531 C 170.144531 323.269531 170.238281 323.175781 170.238281 323.058594 Z M 170.238281 323.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.507812 327.53125 C 173.507812 327.414062 173.414062 327.320312 173.296875 327.320312 C 173.179688 327.320312 173.085938 327.414062 173.085938 327.53125 C 173.085938 327.648438 173.179688 327.742188 173.296875 327.742188 C 173.414062 327.742188 173.507812 327.648438 173.507812 327.53125 Z M 173.507812 327.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.460938 331.828125 C 173.460938 331.710938 173.367188 331.617188 173.25 331.617188 C 173.132812 331.617188 173.039062 331.710938 173.039062 331.828125 C 173.039062 331.945312 173.132812 332.039062 173.25 332.039062 C 173.367188 332.039062 173.460938 331.945312 173.460938 331.828125 Z M 173.460938 331.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.722656 332.472656 C 173.722656 332.355469 173.628906 332.261719 173.511719 332.261719 C 173.394531 332.261719 173.300781 332.355469 173.300781 332.472656 C 173.300781 332.589844 173.394531 332.683594 173.511719 332.683594 C 173.628906 332.683594 173.722656 332.589844 173.722656 332.472656 Z M 173.722656 332.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.582031 330.925781 C 176.582031 330.808594 176.488281 330.714844 176.371094 330.714844 C 176.253906 330.714844 176.160156 330.808594 176.160156 330.925781 C 176.160156 331.042969 176.253906 331.136719 176.371094 331.136719 C 176.488281 331.136719 176.582031 331.042969 176.582031 330.925781 Z M 176.582031 330.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.203125 327.53125 C 175.203125 327.414062 175.109375 327.320312 174.992188 327.320312 C 174.875 327.320312 174.78125 327.414062 174.78125 327.53125 C 174.78125 327.648438 174.875 327.742188 174.992188 327.742188 C 175.109375 327.742188 175.203125 327.648438 175.203125 327.53125 Z M 175.203125 327.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.109375 324.863281 C 173.109375 324.746094 173.015625 324.652344 172.898438 324.652344 C 172.78125 324.652344 172.6875 324.746094 172.6875 324.863281 C 172.6875 324.980469 172.78125 325.074219 172.898438 325.074219 C 173.015625 325.074219 173.109375 324.980469 173.109375 324.863281 Z M 173.109375 324.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.289062 326.96875 C 173.289062 326.851562 173.195312 326.757812 173.078125 326.757812 C 172.960938 326.757812 172.867188 326.851562 172.867188 326.96875 C 172.867188 327.085938 172.960938 327.179688 173.078125 327.179688 C 173.195312 327.179688 173.289062 327.085938 173.289062 326.96875 Z M 173.289062 326.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.050781 328.386719 C 172.050781 328.269531 171.957031 328.175781 171.839844 328.175781 C 171.722656 328.175781 171.628906 328.269531 171.628906 328.386719 C 171.628906 328.503906 171.722656 328.597656 171.839844 328.597656 C 171.957031 328.597656 172.050781 328.503906 172.050781 328.386719 Z M 172.050781 328.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.734375 328.3125 C 170.734375 328.195312 170.640625 328.101562 170.523438 328.101562 C 170.40625 328.101562 170.3125 328.195312 170.3125 328.3125 C 170.3125 328.429688 170.40625 328.523438 170.523438 328.523438 C 170.640625 328.523438 170.734375 328.429688 170.734375 328.3125 Z M 170.734375 328.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.21875 328.539062 C 164.21875 328.421875 164.125 328.328125 164.007812 328.328125 C 163.890625 328.328125 163.796875 328.421875 163.796875 328.539062 C 163.796875 328.65625 163.890625 328.75 164.007812 328.75 C 164.125 328.75 164.21875 328.65625 164.21875 328.539062 Z M 164.21875 328.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.019531 331.621094 C 164.019531 331.503906 163.925781 331.410156 163.808594 331.410156 C 163.691406 331.410156 163.597656 331.503906 163.597656 331.621094 C 163.597656 331.738281 163.691406 331.832031 163.808594 331.832031 C 163.925781 331.832031 164.019531 331.738281 164.019531 331.621094 Z M 164.019531 331.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.992188 331.886719 C 163.992188 331.769531 163.898438 331.675781 163.78125 331.675781 C 163.664062 331.675781 163.570312 331.769531 163.570312 331.886719 C 163.570312 332.003906 163.664062 332.097656 163.78125 332.097656 C 163.898438 332.097656 163.992188 332.003906 163.992188 331.886719 Z M 163.992188 331.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.570312 332.960938 C 164.570312 332.84375 164.476562 332.75 164.359375 332.75 C 164.242188 332.75 164.148438 332.84375 164.148438 332.960938 C 164.148438 333.078125 164.242188 333.171875 164.359375 333.171875 C 164.476562 333.171875 164.570312 333.078125 164.570312 332.960938 Z M 164.570312 332.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.25 330.511719 C 167.25 330.394531 167.15625 330.300781 167.039062 330.300781 C 166.921875 330.300781 166.828125 330.394531 166.828125 330.511719 C 166.828125 330.628906 166.921875 330.722656 167.039062 330.722656 C 167.15625 330.722656 167.25 330.628906 167.25 330.511719 Z M 167.25 330.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.246094 331.824219 C 168.246094 331.707031 168.152344 331.613281 168.035156 331.613281 C 167.917969 331.613281 167.824219 331.707031 167.824219 331.824219 C 167.824219 331.941406 167.917969 332.035156 168.035156 332.035156 C 168.152344 332.035156 168.246094 331.941406 168.246094 331.824219 Z M 168.246094 331.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.78125 332.480469 C 168.78125 332.363281 168.6875 332.269531 168.570312 332.269531 C 168.453125 332.269531 168.359375 332.363281 168.359375 332.480469 C 168.359375 332.597656 168.453125 332.691406 168.570312 332.691406 C 168.6875 332.691406 168.78125 332.597656 168.78125 332.480469 Z M 168.78125 332.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.699219 334.679688 C 165.699219 334.5625 165.605469 334.46875 165.488281 334.46875 C 165.371094 334.46875 165.277344 334.5625 165.277344 334.679688 C 165.277344 334.796875 165.371094 334.890625 165.488281 334.890625 C 165.605469 334.890625 165.699219 334.796875 165.699219 334.679688 Z M 165.699219 334.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.175781 335.578125 C 166.175781 335.460938 166.082031 335.367188 165.964844 335.367188 C 165.847656 335.367188 165.753906 335.460938 165.753906 335.578125 C 165.753906 335.695312 165.847656 335.789062 165.964844 335.789062 C 166.082031 335.789062 166.175781 335.695312 166.175781 335.578125 Z M 166.175781 335.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.570312 333.910156 C 166.570312 333.792969 166.476562 333.699219 166.359375 333.699219 C 166.242188 333.699219 166.148438 333.792969 166.148438 333.910156 C 166.148438 334.027344 166.242188 334.121094 166.359375 334.121094 C 166.476562 334.121094 166.570312 334.027344 166.570312 333.910156 Z M 166.570312 333.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.253906 331.375 C 163.253906 331.257812 163.160156 331.164062 163.042969 331.164062 C 162.925781 331.164062 162.832031 331.257812 162.832031 331.375 C 162.832031 331.492188 162.925781 331.585938 163.042969 331.585938 C 163.160156 331.585938 163.253906 331.492188 163.253906 331.375 Z M 163.253906 331.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.621094 332.125 C 161.621094 332.007812 161.527344 331.914062 161.410156 331.914062 C 161.292969 331.914062 161.199219 332.007812 161.199219 332.125 C 161.199219 332.242188 161.292969 332.335938 161.410156 332.335938 C 161.527344 332.335938 161.621094 332.242188 161.621094 332.125 Z M 161.621094 332.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.84375 331.691406 C 163.84375 331.574219 163.75 331.480469 163.632812 331.480469 C 163.515625 331.480469 163.421875 331.574219 163.421875 331.691406 C 163.421875 331.808594 163.515625 331.902344 163.632812 331.902344 C 163.75 331.902344 163.84375 331.808594 163.84375 331.691406 Z M 163.84375 331.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.9375 330.511719 C 165.9375 330.394531 165.84375 330.300781 165.726562 330.300781 C 165.609375 330.300781 165.515625 330.394531 165.515625 330.511719 C 165.515625 330.628906 165.609375 330.722656 165.726562 330.722656 C 165.84375 330.722656 165.9375 330.628906 165.9375 330.511719 Z M 165.9375 330.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.648438 330.824219 C 168.648438 330.707031 168.554688 330.613281 168.4375 330.613281 C 168.320312 330.613281 168.226562 330.707031 168.226562 330.824219 C 168.226562 330.941406 168.320312 331.035156 168.4375 331.035156 C 168.554688 331.035156 168.648438 330.941406 168.648438 330.824219 Z M 168.648438 330.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.71875 333.167969 C 167.71875 333.050781 167.625 332.957031 167.507812 332.957031 C 167.390625 332.957031 167.296875 333.050781 167.296875 333.167969 C 167.296875 333.285156 167.390625 333.378906 167.507812 333.378906 C 167.625 333.378906 167.71875 333.285156 167.71875 333.167969 Z M 167.71875 333.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.765625 333.261719 C 167.765625 333.144531 167.671875 333.050781 167.554688 333.050781 C 167.4375 333.050781 167.34375 333.144531 167.34375 333.261719 C 167.34375 333.378906 167.4375 333.472656 167.554688 333.472656 C 167.671875 333.472656 167.765625 333.378906 167.765625 333.261719 Z M 167.765625 333.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.15625 332.476562 C 169.15625 332.359375 169.0625 332.265625 168.945312 332.265625 C 168.828125 332.265625 168.734375 332.359375 168.734375 332.476562 C 168.734375 332.59375 168.828125 332.6875 168.945312 332.6875 C 169.0625 332.6875 169.15625 332.59375 169.15625 332.476562 Z M 169.15625 332.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.558594 335.058594 C 170.558594 334.941406 170.464844 334.847656 170.347656 334.847656 C 170.230469 334.847656 170.136719 334.941406 170.136719 335.058594 C 170.136719 335.175781 170.230469 335.269531 170.347656 335.269531 C 170.464844 335.269531 170.558594 335.175781 170.558594 335.058594 Z M 170.558594 335.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.667969 334.417969 C 168.667969 334.300781 168.574219 334.207031 168.457031 334.207031 C 168.339844 334.207031 168.246094 334.300781 168.246094 334.417969 C 168.246094 334.535156 168.339844 334.628906 168.457031 334.628906 C 168.574219 334.628906 168.667969 334.535156 168.667969 334.417969 Z M 168.667969 334.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.898438 335.917969 C 167.898438 335.800781 167.804688 335.707031 167.6875 335.707031 C 167.570312 335.707031 167.476562 335.800781 167.476562 335.917969 C 167.476562 336.035156 167.570312 336.128906 167.6875 336.128906 C 167.804688 336.128906 167.898438 336.035156 167.898438 335.917969 Z M 167.898438 335.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.621094 336.265625 C 166.621094 336.148438 166.527344 336.054688 166.410156 336.054688 C 166.292969 336.054688 166.199219 336.148438 166.199219 336.265625 C 166.199219 336.382812 166.292969 336.476562 166.410156 336.476562 C 166.527344 336.476562 166.621094 336.382812 166.621094 336.265625 Z M 166.621094 336.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.808594 337.71875 C 165.808594 337.601562 165.714844 337.507812 165.597656 337.507812 C 165.480469 337.507812 165.386719 337.601562 165.386719 337.71875 C 165.386719 337.835938 165.480469 337.929688 165.597656 337.929688 C 165.714844 337.929688 165.808594 337.835938 165.808594 337.71875 Z M 165.808594 337.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.828125 338.992188 C 166.828125 338.875 166.734375 338.78125 166.617188 338.78125 C 166.5 338.78125 166.40625 338.875 166.40625 338.992188 C 166.40625 339.109375 166.5 339.203125 166.617188 339.203125 C 166.734375 339.203125 166.828125 339.109375 166.828125 338.992188 Z M 166.828125 338.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.605469 340.363281 C 166.605469 340.246094 166.511719 340.152344 166.394531 340.152344 C 166.277344 340.152344 166.183594 340.246094 166.183594 340.363281 C 166.183594 340.480469 166.277344 340.574219 166.394531 340.574219 C 166.511719 340.574219 166.605469 340.480469 166.605469 340.363281 Z M 166.605469 340.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.175781 339.847656 C 165.175781 339.730469 165.082031 339.636719 164.964844 339.636719 C 164.847656 339.636719 164.753906 339.730469 164.753906 339.847656 C 164.753906 339.964844 164.847656 340.058594 164.964844 340.058594 C 165.082031 340.058594 165.175781 339.964844 165.175781 339.847656 Z M 165.175781 339.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.394531 344.226562 C 165.394531 344.109375 165.300781 344.015625 165.183594 344.015625 C 165.066406 344.015625 164.972656 344.109375 164.972656 344.226562 C 164.972656 344.34375 165.066406 344.4375 165.183594 344.4375 C 165.300781 344.4375 165.394531 344.34375 165.394531 344.226562 Z M 165.394531 344.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.464844 343.007812 C 162.464844 342.890625 162.371094 342.796875 162.253906 342.796875 C 162.136719 342.796875 162.042969 342.890625 162.042969 343.007812 C 162.042969 343.125 162.136719 343.21875 162.253906 343.21875 C 162.371094 343.21875 162.464844 343.125 162.464844 343.007812 Z M 162.464844 343.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.613281 343 C 164.613281 342.882812 164.519531 342.789062 164.402344 342.789062 C 164.285156 342.789062 164.191406 342.882812 164.191406 343 C 164.191406 343.117188 164.285156 343.210938 164.402344 343.210938 C 164.519531 343.210938 164.613281 343.117188 164.613281 343 Z M 164.613281 343 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.910156 340.425781 C 162.910156 340.308594 162.816406 340.214844 162.699219 340.214844 C 162.582031 340.214844 162.488281 340.308594 162.488281 340.425781 C 162.488281 340.542969 162.582031 340.636719 162.699219 340.636719 C 162.816406 340.636719 162.910156 340.542969 162.910156 340.425781 Z M 162.910156 340.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.253906 341.070312 C 164.253906 340.953125 164.160156 340.859375 164.042969 340.859375 C 163.925781 340.859375 163.832031 340.953125 163.832031 341.070312 C 163.832031 341.1875 163.925781 341.28125 164.042969 341.28125 C 164.160156 341.28125 164.253906 341.1875 164.253906 341.070312 Z M 164.253906 341.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.253906 336.394531 C 165.253906 336.277344 165.160156 336.183594 165.042969 336.183594 C 164.925781 336.183594 164.832031 336.277344 164.832031 336.394531 C 164.832031 336.511719 164.925781 336.605469 165.042969 336.605469 C 165.160156 336.605469 165.253906 336.511719 165.253906 336.394531 Z M 165.253906 336.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.859375 340.261719 C 167.859375 340.144531 167.765625 340.050781 167.648438 340.050781 C 167.53125 340.050781 167.4375 340.144531 167.4375 340.261719 C 167.4375 340.378906 167.53125 340.472656 167.648438 340.472656 C 167.765625 340.472656 167.859375 340.378906 167.859375 340.261719 Z M 167.859375 340.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.894531 339.324219 C 168.894531 339.207031 168.800781 339.113281 168.683594 339.113281 C 168.566406 339.113281 168.472656 339.207031 168.472656 339.324219 C 168.472656 339.441406 168.566406 339.535156 168.683594 339.535156 C 168.800781 339.535156 168.894531 339.441406 168.894531 339.324219 Z M 168.894531 339.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.941406 341.910156 C 169.941406 341.792969 169.847656 341.699219 169.730469 341.699219 C 169.613281 341.699219 169.519531 341.792969 169.519531 341.910156 C 169.519531 342.027344 169.613281 342.121094 169.730469 342.121094 C 169.847656 342.121094 169.941406 342.027344 169.941406 341.910156 Z M 169.941406 341.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.542969 342.96875 C 172.542969 342.851562 172.449219 342.757812 172.332031 342.757812 C 172.214844 342.757812 172.121094 342.851562 172.121094 342.96875 C 172.121094 343.085938 172.214844 343.179688 172.332031 343.179688 C 172.449219 343.179688 172.542969 343.085938 172.542969 342.96875 Z M 172.542969 342.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.09375 342.011719 C 169.09375 341.894531 169 341.800781 168.882812 341.800781 C 168.765625 341.800781 168.671875 341.894531 168.671875 342.011719 C 168.671875 342.128906 168.765625 342.222656 168.882812 342.222656 C 169 342.222656 169.09375 342.128906 169.09375 342.011719 Z M 169.09375 342.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.640625 341.957031 C 167.640625 341.839844 167.546875 341.746094 167.429688 341.746094 C 167.3125 341.746094 167.21875 341.839844 167.21875 341.957031 C 167.21875 342.074219 167.3125 342.167969 167.429688 342.167969 C 167.546875 342.167969 167.640625 342.074219 167.640625 341.957031 Z M 167.640625 341.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.398438 343.308594 C 169.398438 343.191406 169.304688 343.097656 169.1875 343.097656 C 169.070312 343.097656 168.976562 343.191406 168.976562 343.308594 C 168.976562 343.425781 169.070312 343.519531 169.1875 343.519531 C 169.304688 343.519531 169.398438 343.425781 169.398438 343.308594 Z M 169.398438 343.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.5 345.207031 C 165.5 345.089844 165.40625 344.996094 165.289062 344.996094 C 165.171875 344.996094 165.078125 345.089844 165.078125 345.207031 C 165.078125 345.324219 165.171875 345.417969 165.289062 345.417969 C 165.40625 345.417969 165.5 345.324219 165.5 345.207031 Z M 165.5 345.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.425781 345.179688 C 164.425781 345.0625 164.332031 344.96875 164.214844 344.96875 C 164.097656 344.96875 164.003906 345.0625 164.003906 345.179688 C 164.003906 345.296875 164.097656 345.390625 164.214844 345.390625 C 164.332031 345.390625 164.425781 345.296875 164.425781 345.179688 Z M 164.425781 345.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.1875 344.785156 C 164.1875 344.667969 164.09375 344.574219 163.976562 344.574219 C 163.859375 344.574219 163.765625 344.667969 163.765625 344.785156 C 163.765625 344.902344 163.859375 344.996094 163.976562 344.996094 C 164.09375 344.996094 164.1875 344.902344 164.1875 344.785156 Z M 164.1875 344.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.671875 343.449219 C 165.671875 343.332031 165.578125 343.238281 165.460938 343.238281 C 165.34375 343.238281 165.25 343.332031 165.25 343.449219 C 165.25 343.566406 165.34375 343.660156 165.460938 343.660156 C 165.578125 343.660156 165.671875 343.566406 165.671875 343.449219 Z M 165.671875 343.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.359375 343.796875 C 168.359375 343.679688 168.265625 343.585938 168.148438 343.585938 C 168.03125 343.585938 167.9375 343.679688 167.9375 343.796875 C 167.9375 343.914062 168.03125 344.007812 168.148438 344.007812 C 168.265625 344.007812 168.359375 343.914062 168.359375 343.796875 Z M 168.359375 343.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.066406 345.078125 C 163.066406 344.960938 162.972656 344.867188 162.855469 344.867188 C 162.738281 344.867188 162.644531 344.960938 162.644531 345.078125 C 162.644531 345.195312 162.738281 345.289062 162.855469 345.289062 C 162.972656 345.289062 163.066406 345.195312 163.066406 345.078125 Z M 163.066406 345.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.050781 344.695312 C 161.050781 344.578125 160.957031 344.484375 160.839844 344.484375 C 160.722656 344.484375 160.628906 344.578125 160.628906 344.695312 C 160.628906 344.8125 160.722656 344.90625 160.839844 344.90625 C 160.957031 344.90625 161.050781 344.8125 161.050781 344.695312 Z M 161.050781 344.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.355469 346.949219 C 159.355469 346.832031 159.261719 346.738281 159.144531 346.738281 C 159.027344 346.738281 158.933594 346.832031 158.933594 346.949219 C 158.933594 347.066406 159.027344 347.160156 159.144531 347.160156 C 159.261719 347.160156 159.355469 347.066406 159.355469 346.949219 Z M 159.355469 346.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.101562 347.164062 C 158.101562 347.046875 158.007812 346.953125 157.890625 346.953125 C 157.773438 346.953125 157.679688 347.046875 157.679688 347.164062 C 157.679688 347.28125 157.773438 347.375 157.890625 347.375 C 158.007812 347.375 158.101562 347.28125 158.101562 347.164062 Z M 158.101562 347.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.015625 345.402344 C 156.015625 345.285156 155.921875 345.191406 155.804688 345.191406 C 155.6875 345.191406 155.59375 345.285156 155.59375 345.402344 C 155.59375 345.519531 155.6875 345.613281 155.804688 345.613281 C 155.921875 345.613281 156.015625 345.519531 156.015625 345.402344 Z M 156.015625 345.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.480469 344.144531 C 153.480469 344.027344 153.386719 343.933594 153.269531 343.933594 C 153.152344 343.933594 153.058594 344.027344 153.058594 344.144531 C 153.058594 344.261719 153.152344 344.355469 153.269531 344.355469 C 153.386719 344.355469 153.480469 344.261719 153.480469 344.144531 Z M 153.480469 344.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.816406 342.273438 C 153.816406 342.15625 153.722656 342.0625 153.605469 342.0625 C 153.488281 342.0625 153.394531 342.15625 153.394531 342.273438 C 153.394531 342.390625 153.488281 342.484375 153.605469 342.484375 C 153.722656 342.484375 153.816406 342.390625 153.816406 342.273438 Z M 153.816406 342.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.308594 341.886719 C 154.308594 341.769531 154.214844 341.675781 154.097656 341.675781 C 153.980469 341.675781 153.886719 341.769531 153.886719 341.886719 C 153.886719 342.003906 153.980469 342.097656 154.097656 342.097656 C 154.214844 342.097656 154.308594 342.003906 154.308594 341.886719 Z M 154.308594 341.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.265625 341.066406 C 154.265625 340.949219 154.171875 340.855469 154.054688 340.855469 C 153.9375 340.855469 153.84375 340.949219 153.84375 341.066406 C 153.84375 341.183594 153.9375 341.277344 154.054688 341.277344 C 154.171875 341.277344 154.265625 341.183594 154.265625 341.066406 Z M 154.265625 341.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.214844 340.316406 C 153.214844 340.199219 153.121094 340.105469 153.003906 340.105469 C 152.886719 340.105469 152.792969 340.199219 152.792969 340.316406 C 152.792969 340.433594 152.886719 340.527344 153.003906 340.527344 C 153.121094 340.527344 153.214844 340.433594 153.214844 340.316406 Z M 153.214844 340.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.875 340.359375 C 154.875 340.242188 154.78125 340.148438 154.664062 340.148438 C 154.546875 340.148438 154.453125 340.242188 154.453125 340.359375 C 154.453125 340.476562 154.546875 340.570312 154.664062 340.570312 C 154.78125 340.570312 154.875 340.476562 154.875 340.359375 Z M 154.875 340.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.003906 337.664062 C 153.003906 337.546875 152.910156 337.453125 152.792969 337.453125 C 152.675781 337.453125 152.582031 337.546875 152.582031 337.664062 C 152.582031 337.78125 152.675781 337.875 152.792969 337.875 C 152.910156 337.875 153.003906 337.78125 153.003906 337.664062 Z M 153.003906 337.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.578125 340.582031 C 154.578125 340.464844 154.484375 340.371094 154.367188 340.371094 C 154.25 340.371094 154.15625 340.464844 154.15625 340.582031 C 154.15625 340.699219 154.25 340.792969 154.367188 340.792969 C 154.484375 340.792969 154.578125 340.699219 154.578125 340.582031 Z M 154.578125 340.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.203125 340.335938 C 155.203125 340.21875 155.109375 340.125 154.992188 340.125 C 154.875 340.125 154.78125 340.21875 154.78125 340.335938 C 154.78125 340.453125 154.875 340.546875 154.992188 340.546875 C 155.109375 340.546875 155.203125 340.453125 155.203125 340.335938 Z M 155.203125 340.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.746094 341.035156 C 155.746094 340.917969 155.652344 340.824219 155.535156 340.824219 C 155.417969 340.824219 155.324219 340.917969 155.324219 341.035156 C 155.324219 341.152344 155.417969 341.246094 155.535156 341.246094 C 155.652344 341.246094 155.746094 341.152344 155.746094 341.035156 Z M 155.746094 341.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.179688 339.140625 C 157.179688 339.023438 157.085938 338.929688 156.96875 338.929688 C 156.851562 338.929688 156.757812 339.023438 156.757812 339.140625 C 156.757812 339.257812 156.851562 339.351562 156.96875 339.351562 C 157.085938 339.351562 157.179688 339.257812 157.179688 339.140625 Z M 157.179688 339.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.246094 340.453125 C 157.246094 340.335938 157.152344 340.242188 157.035156 340.242188 C 156.917969 340.242188 156.824219 340.335938 156.824219 340.453125 C 156.824219 340.570312 156.917969 340.664062 157.035156 340.664062 C 157.152344 340.664062 157.246094 340.570312 157.246094 340.453125 Z M 157.246094 340.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.921875 336.957031 C 155.921875 336.839844 155.828125 336.746094 155.710938 336.746094 C 155.59375 336.746094 155.5 336.839844 155.5 336.957031 C 155.5 337.074219 155.59375 337.167969 155.710938 337.167969 C 155.828125 337.167969 155.921875 337.074219 155.921875 336.957031 Z M 155.921875 336.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.753906 340.058594 C 155.753906 339.941406 155.660156 339.847656 155.542969 339.847656 C 155.425781 339.847656 155.332031 339.941406 155.332031 340.058594 C 155.332031 340.175781 155.425781 340.269531 155.542969 340.269531 C 155.660156 340.269531 155.753906 340.175781 155.753906 340.058594 Z M 155.753906 340.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.042969 340.148438 C 157.042969 340.03125 156.949219 339.9375 156.832031 339.9375 C 156.714844 339.9375 156.621094 340.03125 156.621094 340.148438 C 156.621094 340.265625 156.714844 340.359375 156.832031 340.359375 C 156.949219 340.359375 157.042969 340.265625 157.042969 340.148438 Z M 157.042969 340.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.59375 339.421875 C 157.59375 339.304688 157.5 339.210938 157.382812 339.210938 C 157.265625 339.210938 157.171875 339.304688 157.171875 339.421875 C 157.171875 339.539062 157.265625 339.632812 157.382812 339.632812 C 157.5 339.632812 157.59375 339.539062 157.59375 339.421875 Z M 157.59375 339.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.167969 340.402344 C 157.167969 340.285156 157.074219 340.191406 156.957031 340.191406 C 156.839844 340.191406 156.746094 340.285156 156.746094 340.402344 C 156.746094 340.519531 156.839844 340.613281 156.957031 340.613281 C 157.074219 340.613281 157.167969 340.519531 157.167969 340.402344 Z M 157.167969 340.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.375 340.542969 C 157.375 340.425781 157.28125 340.332031 157.164062 340.332031 C 157.046875 340.332031 156.953125 340.425781 156.953125 340.542969 C 156.953125 340.660156 157.046875 340.753906 157.164062 340.753906 C 157.28125 340.753906 157.375 340.660156 157.375 340.542969 Z M 157.375 340.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.746094 341.714844 C 157.746094 341.597656 157.652344 341.503906 157.535156 341.503906 C 157.417969 341.503906 157.324219 341.597656 157.324219 341.714844 C 157.324219 341.832031 157.417969 341.925781 157.535156 341.925781 C 157.652344 341.925781 157.746094 341.832031 157.746094 341.714844 Z M 157.746094 341.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.742188 341.933594 C 160.742188 341.816406 160.648438 341.722656 160.53125 341.722656 C 160.414062 341.722656 160.320312 341.816406 160.320312 341.933594 C 160.320312 342.050781 160.414062 342.144531 160.53125 342.144531 C 160.648438 342.144531 160.742188 342.050781 160.742188 341.933594 Z M 160.742188 341.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.402344 341.925781 C 161.402344 341.808594 161.308594 341.714844 161.191406 341.714844 C 161.074219 341.714844 160.980469 341.808594 160.980469 341.925781 C 160.980469 342.042969 161.074219 342.136719 161.191406 342.136719 C 161.308594 342.136719 161.402344 342.042969 161.402344 341.925781 Z M 161.402344 341.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.132812 341.117188 C 161.132812 341 161.039062 340.90625 160.921875 340.90625 C 160.804688 340.90625 160.710938 341 160.710938 341.117188 C 160.710938 341.234375 160.804688 341.328125 160.921875 341.328125 C 161.039062 341.328125 161.132812 341.234375 161.132812 341.117188 Z M 161.132812 341.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.667969 342.207031 C 162.667969 342.089844 162.574219 341.996094 162.457031 341.996094 C 162.339844 341.996094 162.246094 342.089844 162.246094 342.207031 C 162.246094 342.324219 162.339844 342.417969 162.457031 342.417969 C 162.574219 342.417969 162.667969 342.324219 162.667969 342.207031 Z M 162.667969 342.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.230469 341.34375 C 163.230469 341.226562 163.136719 341.132812 163.019531 341.132812 C 162.902344 341.132812 162.808594 341.226562 162.808594 341.34375 C 162.808594 341.460938 162.902344 341.554688 163.019531 341.554688 C 163.136719 341.554688 163.230469 341.460938 163.230469 341.34375 Z M 163.230469 341.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.175781 339.730469 C 161.175781 339.613281 161.082031 339.519531 160.964844 339.519531 C 160.847656 339.519531 160.753906 339.613281 160.753906 339.730469 C 160.753906 339.847656 160.847656 339.941406 160.964844 339.941406 C 161.082031 339.941406 161.175781 339.847656 161.175781 339.730469 Z M 161.175781 339.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.316406 339.167969 C 159.316406 339.050781 159.222656 338.957031 159.105469 338.957031 C 158.988281 338.957031 158.894531 339.050781 158.894531 339.167969 C 158.894531 339.285156 158.988281 339.378906 159.105469 339.378906 C 159.222656 339.378906 159.316406 339.285156 159.316406 339.167969 Z M 159.316406 339.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.125 340.179688 C 164.125 340.0625 164.03125 339.96875 163.914062 339.96875 C 163.796875 339.96875 163.703125 340.0625 163.703125 340.179688 C 163.703125 340.296875 163.796875 340.390625 163.914062 340.390625 C 164.03125 340.390625 164.125 340.296875 164.125 340.179688 Z M 164.125 340.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.738281 343.328125 C 163.738281 343.210938 163.644531 343.117188 163.527344 343.117188 C 163.410156 343.117188 163.316406 343.210938 163.316406 343.328125 C 163.316406 343.445312 163.410156 343.539062 163.527344 343.539062 C 163.644531 343.539062 163.738281 343.445312 163.738281 343.328125 Z M 163.738281 343.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.277344 341.796875 C 163.277344 341.679688 163.183594 341.585938 163.066406 341.585938 C 162.949219 341.585938 162.855469 341.679688 162.855469 341.796875 C 162.855469 341.914062 162.949219 342.007812 163.066406 342.007812 C 163.183594 342.007812 163.277344 341.914062 163.277344 341.796875 Z M 163.277344 341.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.191406 341.910156 C 164.191406 341.792969 164.097656 341.699219 163.980469 341.699219 C 163.863281 341.699219 163.769531 341.792969 163.769531 341.910156 C 163.769531 342.027344 163.863281 342.121094 163.980469 342.121094 C 164.097656 342.121094 164.191406 342.027344 164.191406 341.910156 Z M 164.191406 341.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.617188 340.964844 C 164.617188 340.847656 164.523438 340.753906 164.40625 340.753906 C 164.289062 340.753906 164.195312 340.847656 164.195312 340.964844 C 164.195312 341.082031 164.289062 341.175781 164.40625 341.175781 C 164.523438 341.175781 164.617188 341.082031 164.617188 340.964844 Z M 164.617188 340.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.726562 343.695312 C 162.726562 343.578125 162.632812 343.484375 162.515625 343.484375 C 162.398438 343.484375 162.304688 343.578125 162.304688 343.695312 C 162.304688 343.8125 162.398438 343.90625 162.515625 343.90625 C 162.632812 343.90625 162.726562 343.8125 162.726562 343.695312 Z M 162.726562 343.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.535156 341.632812 C 160.535156 341.515625 160.441406 341.421875 160.324219 341.421875 C 160.207031 341.421875 160.113281 341.515625 160.113281 341.632812 C 160.113281 341.75 160.207031 341.84375 160.324219 341.84375 C 160.441406 341.84375 160.535156 341.75 160.535156 341.632812 Z M 160.535156 341.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.652344 341.75 C 164.652344 341.632812 164.558594 341.539062 164.441406 341.539062 C 164.324219 341.539062 164.230469 341.632812 164.230469 341.75 C 164.230469 341.867188 164.324219 341.960938 164.441406 341.960938 C 164.558594 341.960938 164.652344 341.867188 164.652344 341.75 Z M 164.652344 341.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.367188 344.117188 C 165.367188 344 165.273438 343.90625 165.15625 343.90625 C 165.039062 343.90625 164.945312 344 164.945312 344.117188 C 164.945312 344.234375 165.039062 344.328125 165.15625 344.328125 C 165.273438 344.328125 165.367188 344.234375 165.367188 344.117188 Z M 165.367188 344.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.507812 344.703125 C 160.507812 344.585938 160.414062 344.492188 160.296875 344.492188 C 160.179688 344.492188 160.085938 344.585938 160.085938 344.703125 C 160.085938 344.820312 160.179688 344.914062 160.296875 344.914062 C 160.414062 344.914062 160.507812 344.820312 160.507812 344.703125 Z M 160.507812 344.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.597656 345.703125 C 159.597656 345.585938 159.503906 345.492188 159.386719 345.492188 C 159.269531 345.492188 159.175781 345.585938 159.175781 345.703125 C 159.175781 345.820312 159.269531 345.914062 159.386719 345.914062 C 159.503906 345.914062 159.597656 345.820312 159.597656 345.703125 Z M 159.597656 345.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.34375 345.539062 C 162.34375 345.421875 162.25 345.328125 162.132812 345.328125 C 162.015625 345.328125 161.921875 345.421875 161.921875 345.539062 C 161.921875 345.65625 162.015625 345.75 162.132812 345.75 C 162.25 345.75 162.34375 345.65625 162.34375 345.539062 Z M 162.34375 345.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.628906 346.351562 C 160.628906 346.234375 160.535156 346.140625 160.417969 346.140625 C 160.300781 346.140625 160.207031 346.234375 160.207031 346.351562 C 160.207031 346.46875 160.300781 346.5625 160.417969 346.5625 C 160.535156 346.5625 160.628906 346.46875 160.628906 346.351562 Z M 160.628906 346.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.875 349.417969 C 156.875 349.300781 156.78125 349.207031 156.664062 349.207031 C 156.546875 349.207031 156.453125 349.300781 156.453125 349.417969 C 156.453125 349.535156 156.546875 349.628906 156.664062 349.628906 C 156.78125 349.628906 156.875 349.535156 156.875 349.417969 Z M 156.875 349.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.230469 345.589844 C 158.230469 345.472656 158.136719 345.378906 158.019531 345.378906 C 157.902344 345.378906 157.808594 345.472656 157.808594 345.589844 C 157.808594 345.707031 157.902344 345.800781 158.019531 345.800781 C 158.136719 345.800781 158.230469 345.707031 158.230469 345.589844 Z M 158.230469 345.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.070312 344.082031 C 159.070312 343.964844 158.976562 343.871094 158.859375 343.871094 C 158.742188 343.871094 158.648438 343.964844 158.648438 344.082031 C 158.648438 344.199219 158.742188 344.292969 158.859375 344.292969 C 158.976562 344.292969 159.070312 344.199219 159.070312 344.082031 Z M 159.070312 344.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.613281 346.457031 C 161.613281 346.339844 161.519531 346.246094 161.402344 346.246094 C 161.285156 346.246094 161.191406 346.339844 161.191406 346.457031 C 161.191406 346.574219 161.285156 346.667969 161.402344 346.667969 C 161.519531 346.667969 161.613281 346.574219 161.613281 346.457031 Z M 161.613281 346.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.0625 346.316406 C 162.0625 346.199219 161.96875 346.105469 161.851562 346.105469 C 161.734375 346.105469 161.640625 346.199219 161.640625 346.316406 C 161.640625 346.433594 161.734375 346.527344 161.851562 346.527344 C 161.96875 346.527344 162.0625 346.433594 162.0625 346.316406 Z M 162.0625 346.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.664062 345.628906 C 166.664062 345.511719 166.570312 345.417969 166.453125 345.417969 C 166.335938 345.417969 166.242188 345.511719 166.242188 345.628906 C 166.242188 345.746094 166.335938 345.839844 166.453125 345.839844 C 166.570312 345.839844 166.664062 345.746094 166.664062 345.628906 Z M 166.664062 345.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.808594 344.261719 C 166.808594 344.144531 166.714844 344.050781 166.597656 344.050781 C 166.480469 344.050781 166.386719 344.144531 166.386719 344.261719 C 166.386719 344.378906 166.480469 344.472656 166.597656 344.472656 C 166.714844 344.472656 166.808594 344.378906 166.808594 344.261719 Z M 166.808594 344.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.34375 339.285156 C 168.34375 339.167969 168.25 339.074219 168.132812 339.074219 C 168.015625 339.074219 167.921875 339.167969 167.921875 339.285156 C 167.921875 339.402344 168.015625 339.496094 168.132812 339.496094 C 168.25 339.496094 168.34375 339.402344 168.34375 339.285156 Z M 168.34375 339.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167 341.808594 C 167 341.691406 166.90625 341.597656 166.789062 341.597656 C 166.671875 341.597656 166.578125 341.691406 166.578125 341.808594 C 166.578125 341.925781 166.671875 342.019531 166.789062 342.019531 C 166.90625 342.019531 167 341.925781 167 341.808594 Z M 167 341.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.1875 340.582031 C 170.1875 340.464844 170.09375 340.371094 169.976562 340.371094 C 169.859375 340.371094 169.765625 340.464844 169.765625 340.582031 C 169.765625 340.699219 169.859375 340.792969 169.976562 340.792969 C 170.09375 340.792969 170.1875 340.699219 170.1875 340.582031 Z M 170.1875 340.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.472656 341 C 170.472656 340.882812 170.378906 340.789062 170.261719 340.789062 C 170.144531 340.789062 170.050781 340.882812 170.050781 341 C 170.050781 341.117188 170.144531 341.210938 170.261719 341.210938 C 170.378906 341.210938 170.472656 341.117188 170.472656 341 Z M 170.472656 341 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.339844 338.921875 C 169.339844 338.804688 169.246094 338.710938 169.128906 338.710938 C 169.011719 338.710938 168.917969 338.804688 168.917969 338.921875 C 168.917969 339.039062 169.011719 339.132812 169.128906 339.132812 C 169.246094 339.132812 169.339844 339.039062 169.339844 338.921875 Z M 169.339844 338.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.003906 342.484375 C 170.003906 342.367188 169.910156 342.273438 169.792969 342.273438 C 169.675781 342.273438 169.582031 342.367188 169.582031 342.484375 C 169.582031 342.601562 169.675781 342.695312 169.792969 342.695312 C 169.910156 342.695312 170.003906 342.601562 170.003906 342.484375 Z M 170.003906 342.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.136719 340.125 C 174.136719 340.007812 174.042969 339.914062 173.925781 339.914062 C 173.808594 339.914062 173.714844 340.007812 173.714844 340.125 C 173.714844 340.242188 173.808594 340.335938 173.925781 340.335938 C 174.042969 340.335938 174.136719 340.242188 174.136719 340.125 Z M 174.136719 340.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.386719 338.457031 C 176.386719 338.339844 176.292969 338.246094 176.175781 338.246094 C 176.058594 338.246094 175.964844 338.339844 175.964844 338.457031 C 175.964844 338.574219 176.058594 338.667969 176.175781 338.667969 C 176.292969 338.667969 176.386719 338.574219 176.386719 338.457031 Z M 176.386719 338.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.5 336.542969 C 176.5 336.425781 176.40625 336.332031 176.289062 336.332031 C 176.171875 336.332031 176.078125 336.425781 176.078125 336.542969 C 176.078125 336.660156 176.171875 336.753906 176.289062 336.753906 C 176.40625 336.753906 176.5 336.660156 176.5 336.542969 Z M 176.5 336.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.574219 334.246094 C 175.574219 334.128906 175.480469 334.035156 175.363281 334.035156 C 175.246094 334.035156 175.152344 334.128906 175.152344 334.246094 C 175.152344 334.363281 175.246094 334.457031 175.363281 334.457031 C 175.480469 334.457031 175.574219 334.363281 175.574219 334.246094 Z M 175.574219 334.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.503906 333.027344 C 172.503906 332.910156 172.410156 332.816406 172.292969 332.816406 C 172.175781 332.816406 172.082031 332.910156 172.082031 333.027344 C 172.082031 333.144531 172.175781 333.238281 172.292969 333.238281 C 172.410156 333.238281 172.503906 333.144531 172.503906 333.027344 Z M 172.503906 333.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.648438 332.984375 C 170.648438 332.867188 170.554688 332.773438 170.4375 332.773438 C 170.320312 332.773438 170.226562 332.867188 170.226562 332.984375 C 170.226562 333.101562 170.320312 333.195312 170.4375 333.195312 C 170.554688 333.195312 170.648438 333.101562 170.648438 332.984375 Z M 170.648438 332.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.75 333.445312 C 171.75 333.328125 171.65625 333.234375 171.539062 333.234375 C 171.421875 333.234375 171.328125 333.328125 171.328125 333.445312 C 171.328125 333.5625 171.421875 333.65625 171.539062 333.65625 C 171.65625 333.65625 171.75 333.5625 171.75 333.445312 Z M 171.75 333.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.265625 338.179688 C 169.265625 338.0625 169.171875 337.96875 169.054688 337.96875 C 168.9375 337.96875 168.84375 338.0625 168.84375 338.179688 C 168.84375 338.296875 168.9375 338.390625 169.054688 338.390625 C 169.171875 338.390625 169.265625 338.296875 169.265625 338.179688 Z M 169.265625 338.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.429688 342.078125 C 167.429688 341.960938 167.335938 341.867188 167.21875 341.867188 C 167.101562 341.867188 167.007812 341.960938 167.007812 342.078125 C 167.007812 342.195312 167.101562 342.289062 167.21875 342.289062 C 167.335938 342.289062 167.429688 342.195312 167.429688 342.078125 Z M 167.429688 342.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.886719 340.632812 C 165.886719 340.515625 165.792969 340.421875 165.675781 340.421875 C 165.558594 340.421875 165.464844 340.515625 165.464844 340.632812 C 165.464844 340.75 165.558594 340.84375 165.675781 340.84375 C 165.792969 340.84375 165.886719 340.75 165.886719 340.632812 Z M 165.886719 340.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.273438 342.804688 C 165.273438 342.6875 165.179688 342.59375 165.0625 342.59375 C 164.945312 342.59375 164.851562 342.6875 164.851562 342.804688 C 164.851562 342.921875 164.945312 343.015625 165.0625 343.015625 C 165.179688 343.015625 165.273438 342.921875 165.273438 342.804688 Z M 165.273438 342.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.277344 341.175781 C 166.277344 341.058594 166.183594 340.964844 166.066406 340.964844 C 165.949219 340.964844 165.855469 341.058594 165.855469 341.175781 C 165.855469 341.292969 165.949219 341.386719 166.066406 341.386719 C 166.183594 341.386719 166.277344 341.292969 166.277344 341.175781 Z M 166.277344 341.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.417969 339.203125 C 167.417969 339.085938 167.324219 338.992188 167.207031 338.992188 C 167.089844 338.992188 166.996094 339.085938 166.996094 339.203125 C 166.996094 339.320312 167.089844 339.414062 167.207031 339.414062 C 167.324219 339.414062 167.417969 339.320312 167.417969 339.203125 Z M 167.417969 339.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.671875 340 C 171.671875 339.882812 171.578125 339.789062 171.460938 339.789062 C 171.34375 339.789062 171.25 339.882812 171.25 340 C 171.25 340.117188 171.34375 340.210938 171.460938 340.210938 C 171.578125 340.210938 171.671875 340.117188 171.671875 340 Z M 171.671875 340 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.203125 340.355469 C 171.203125 340.238281 171.109375 340.144531 170.992188 340.144531 C 170.875 340.144531 170.78125 340.238281 170.78125 340.355469 C 170.78125 340.472656 170.875 340.566406 170.992188 340.566406 C 171.109375 340.566406 171.203125 340.472656 171.203125 340.355469 Z M 171.203125 340.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.515625 341.636719 C 168.515625 341.519531 168.421875 341.425781 168.304688 341.425781 C 168.1875 341.425781 168.09375 341.519531 168.09375 341.636719 C 168.09375 341.753906 168.1875 341.847656 168.304688 341.847656 C 168.421875 341.847656 168.515625 341.753906 168.515625 341.636719 Z M 168.515625 341.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.25 342.503906 C 167.25 342.386719 167.15625 342.292969 167.039062 342.292969 C 166.921875 342.292969 166.828125 342.386719 166.828125 342.503906 C 166.828125 342.621094 166.921875 342.714844 167.039062 342.714844 C 167.15625 342.714844 167.25 342.621094 167.25 342.503906 Z M 167.25 342.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.375 341.269531 C 161.375 341.152344 161.28125 341.058594 161.164062 341.058594 C 161.046875 341.058594 160.953125 341.152344 160.953125 341.269531 C 160.953125 341.386719 161.046875 341.480469 161.164062 341.480469 C 161.28125 341.480469 161.375 341.386719 161.375 341.269531 Z M 161.375 341.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.128906 340.496094 C 160.128906 340.378906 160.035156 340.285156 159.917969 340.285156 C 159.800781 340.285156 159.707031 340.378906 159.707031 340.496094 C 159.707031 340.613281 159.800781 340.707031 159.917969 340.707031 C 160.035156 340.707031 160.128906 340.613281 160.128906 340.496094 Z M 160.128906 340.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.738281 341.261719 C 157.738281 341.144531 157.644531 341.050781 157.527344 341.050781 C 157.410156 341.050781 157.316406 341.144531 157.316406 341.261719 C 157.316406 341.378906 157.410156 341.472656 157.527344 341.472656 C 157.644531 341.472656 157.738281 341.378906 157.738281 341.261719 Z M 157.738281 341.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.355469 343.640625 C 158.355469 343.523438 158.261719 343.429688 158.144531 343.429688 C 158.027344 343.429688 157.933594 343.523438 157.933594 343.640625 C 157.933594 343.757812 158.027344 343.851562 158.144531 343.851562 C 158.261719 343.851562 158.355469 343.757812 158.355469 343.640625 Z M 158.355469 343.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.527344 342.414062 C 158.527344 342.296875 158.433594 342.203125 158.316406 342.203125 C 158.199219 342.203125 158.105469 342.296875 158.105469 342.414062 C 158.105469 342.53125 158.199219 342.625 158.316406 342.625 C 158.433594 342.625 158.527344 342.53125 158.527344 342.414062 Z M 158.527344 342.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.867188 341.832031 C 153.867188 341.714844 153.773438 341.621094 153.65625 341.621094 C 153.539062 341.621094 153.445312 341.714844 153.445312 341.832031 C 153.445312 341.949219 153.539062 342.042969 153.65625 342.042969 C 153.773438 342.042969 153.867188 341.949219 153.867188 341.832031 Z M 153.867188 341.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.523438 342.6875 C 151.523438 342.570312 151.429688 342.476562 151.3125 342.476562 C 151.195312 342.476562 151.101562 342.570312 151.101562 342.6875 C 151.101562 342.804688 151.195312 342.898438 151.3125 342.898438 C 151.429688 342.898438 151.523438 342.804688 151.523438 342.6875 Z M 151.523438 342.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.5 344.390625 C 149.5 344.273438 149.40625 344.179688 149.289062 344.179688 C 149.171875 344.179688 149.078125 344.273438 149.078125 344.390625 C 149.078125 344.507812 149.171875 344.601562 149.289062 344.601562 C 149.40625 344.601562 149.5 344.507812 149.5 344.390625 Z M 149.5 344.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.136719 344.171875 C 148.136719 344.054688 148.042969 343.960938 147.925781 343.960938 C 147.808594 343.960938 147.714844 344.054688 147.714844 344.171875 C 147.714844 344.289062 147.808594 344.382812 147.925781 344.382812 C 148.042969 344.382812 148.136719 344.289062 148.136719 344.171875 Z M 148.136719 344.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.410156 345.96875 C 146.410156 345.851562 146.316406 345.757812 146.199219 345.757812 C 146.082031 345.757812 145.988281 345.851562 145.988281 345.96875 C 145.988281 346.085938 146.082031 346.179688 146.199219 346.179688 C 146.316406 346.179688 146.410156 346.085938 146.410156 345.96875 Z M 146.410156 345.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.304688 340.957031 C 146.304688 340.839844 146.210938 340.746094 146.09375 340.746094 C 145.976562 340.746094 145.882812 340.839844 145.882812 340.957031 C 145.882812 341.074219 145.976562 341.167969 146.09375 341.167969 C 146.210938 341.167969 146.304688 341.074219 146.304688 340.957031 Z M 146.304688 340.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.886719 340.300781 C 148.886719 340.183594 148.792969 340.089844 148.675781 340.089844 C 148.558594 340.089844 148.464844 340.183594 148.464844 340.300781 C 148.464844 340.417969 148.558594 340.511719 148.675781 340.511719 C 148.792969 340.511719 148.886719 340.417969 148.886719 340.300781 Z M 148.886719 340.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.628906 343.472656 C 145.628906 343.355469 145.535156 343.261719 145.417969 343.261719 C 145.300781 343.261719 145.207031 343.355469 145.207031 343.472656 C 145.207031 343.589844 145.300781 343.683594 145.417969 343.683594 C 145.535156 343.683594 145.628906 343.589844 145.628906 343.472656 Z M 145.628906 343.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.609375 345.402344 C 148.609375 345.285156 148.515625 345.191406 148.398438 345.191406 C 148.28125 345.191406 148.1875 345.285156 148.1875 345.402344 C 148.1875 345.519531 148.28125 345.613281 148.398438 345.613281 C 148.515625 345.613281 148.609375 345.519531 148.609375 345.402344 Z M 148.609375 345.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.515625 343.847656 C 147.515625 343.730469 147.421875 343.636719 147.304688 343.636719 C 147.1875 343.636719 147.09375 343.730469 147.09375 343.847656 C 147.09375 343.964844 147.1875 344.058594 147.304688 344.058594 C 147.421875 344.058594 147.515625 343.964844 147.515625 343.847656 Z M 147.515625 343.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.152344 348.351562 C 148.152344 348.234375 148.058594 348.140625 147.941406 348.140625 C 147.824219 348.140625 147.730469 348.234375 147.730469 348.351562 C 147.730469 348.46875 147.824219 348.5625 147.941406 348.5625 C 148.058594 348.5625 148.152344 348.46875 148.152344 348.351562 Z M 148.152344 348.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.652344 349.558594 C 150.652344 349.441406 150.558594 349.347656 150.441406 349.347656 C 150.324219 349.347656 150.230469 349.441406 150.230469 349.558594 C 150.230469 349.675781 150.324219 349.769531 150.441406 349.769531 C 150.558594 349.769531 150.652344 349.675781 150.652344 349.558594 Z M 150.652344 349.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.648438 350.230469 C 149.648438 350.113281 149.554688 350.019531 149.4375 350.019531 C 149.320312 350.019531 149.226562 350.113281 149.226562 350.230469 C 149.226562 350.347656 149.320312 350.441406 149.4375 350.441406 C 149.554688 350.441406 149.648438 350.347656 149.648438 350.230469 Z M 149.648438 350.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.910156 348.960938 C 145.910156 348.84375 145.816406 348.75 145.699219 348.75 C 145.582031 348.75 145.488281 348.84375 145.488281 348.960938 C 145.488281 349.078125 145.582031 349.171875 145.699219 349.171875 C 145.816406 349.171875 145.910156 349.078125 145.910156 348.960938 Z M 145.910156 348.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.226562 349.058594 C 151.226562 348.941406 151.132812 348.847656 151.015625 348.847656 C 150.898438 348.847656 150.804688 348.941406 150.804688 349.058594 C 150.804688 349.175781 150.898438 349.269531 151.015625 349.269531 C 151.132812 349.269531 151.226562 349.175781 151.226562 349.058594 Z M 151.226562 349.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.828125 348.066406 C 148.828125 347.949219 148.734375 347.855469 148.617188 347.855469 C 148.5 347.855469 148.40625 347.949219 148.40625 348.066406 C 148.40625 348.183594 148.5 348.277344 148.617188 348.277344 C 148.734375 348.277344 148.828125 348.183594 148.828125 348.066406 Z M 148.828125 348.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.140625 350.832031 C 149.140625 350.714844 149.046875 350.621094 148.929688 350.621094 C 148.8125 350.621094 148.71875 350.714844 148.71875 350.832031 C 148.71875 350.949219 148.8125 351.042969 148.929688 351.042969 C 149.046875 351.042969 149.140625 350.949219 149.140625 350.832031 Z M 149.140625 350.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.253906 351.113281 C 150.253906 350.996094 150.160156 350.902344 150.042969 350.902344 C 149.925781 350.902344 149.832031 350.996094 149.832031 351.113281 C 149.832031 351.230469 149.925781 351.324219 150.042969 351.324219 C 150.160156 351.324219 150.253906 351.230469 150.253906 351.113281 Z M 150.253906 351.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.539062 353.683594 C 147.539062 353.566406 147.445312 353.472656 147.328125 353.472656 C 147.210938 353.472656 147.117188 353.566406 147.117188 353.683594 C 147.117188 353.800781 147.210938 353.894531 147.328125 353.894531 C 147.445312 353.894531 147.539062 353.800781 147.539062 353.683594 Z M 147.539062 353.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.246094 351.609375 C 144.246094 351.492188 144.152344 351.398438 144.035156 351.398438 C 143.917969 351.398438 143.824219 351.492188 143.824219 351.609375 C 143.824219 351.726562 143.917969 351.820312 144.035156 351.820312 C 144.152344 351.820312 144.246094 351.726562 144.246094 351.609375 Z M 144.246094 351.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.039062 351.777344 C 149.039062 351.660156 148.945312 351.566406 148.828125 351.566406 C 148.710938 351.566406 148.617188 351.660156 148.617188 351.777344 C 148.617188 351.894531 148.710938 351.988281 148.828125 351.988281 C 148.945312 351.988281 149.039062 351.894531 149.039062 351.777344 Z M 149.039062 351.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.085938 352.25 C 152.085938 352.132812 151.992188 352.039062 151.875 352.039062 C 151.757812 352.039062 151.664062 352.132812 151.664062 352.25 C 151.664062 352.367188 151.757812 352.460938 151.875 352.460938 C 151.992188 352.460938 152.085938 352.367188 152.085938 352.25 Z M 152.085938 352.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.359375 349.730469 C 153.359375 349.613281 153.265625 349.519531 153.148438 349.519531 C 153.03125 349.519531 152.9375 349.613281 152.9375 349.730469 C 152.9375 349.847656 153.03125 349.941406 153.148438 349.941406 C 153.265625 349.941406 153.359375 349.847656 153.359375 349.730469 Z M 153.359375 349.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.019531 352.65625 C 152.019531 352.539062 151.925781 352.445312 151.808594 352.445312 C 151.691406 352.445312 151.597656 352.539062 151.597656 352.65625 C 151.597656 352.773438 151.691406 352.867188 151.808594 352.867188 C 151.925781 352.867188 152.019531 352.773438 152.019531 352.65625 Z M 152.019531 352.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.332031 351.992188 C 151.332031 351.875 151.238281 351.78125 151.121094 351.78125 C 151.003906 351.78125 150.910156 351.875 150.910156 351.992188 C 150.910156 352.109375 151.003906 352.203125 151.121094 352.203125 C 151.238281 352.203125 151.332031 352.109375 151.332031 351.992188 Z M 151.332031 351.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.746094 352.242188 C 147.746094 352.125 147.652344 352.03125 147.535156 352.03125 C 147.417969 352.03125 147.324219 352.125 147.324219 352.242188 C 147.324219 352.359375 147.417969 352.453125 147.535156 352.453125 C 147.652344 352.453125 147.746094 352.359375 147.746094 352.242188 Z M 147.746094 352.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.882812 348.511719 C 150.882812 348.394531 150.789062 348.300781 150.671875 348.300781 C 150.554688 348.300781 150.460938 348.394531 150.460938 348.511719 C 150.460938 348.628906 150.554688 348.722656 150.671875 348.722656 C 150.789062 348.722656 150.882812 348.628906 150.882812 348.511719 Z M 150.882812 348.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.183594 349.46875 C 151.183594 349.351562 151.089844 349.257812 150.972656 349.257812 C 150.855469 349.257812 150.761719 349.351562 150.761719 349.46875 C 150.761719 349.585938 150.855469 349.679688 150.972656 349.679688 C 151.089844 349.679688 151.183594 349.585938 151.183594 349.46875 Z M 151.183594 349.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.027344 348.355469 C 157.027344 348.238281 156.933594 348.144531 156.816406 348.144531 C 156.699219 348.144531 156.605469 348.238281 156.605469 348.355469 C 156.605469 348.472656 156.699219 348.566406 156.816406 348.566406 C 156.933594 348.566406 157.027344 348.472656 157.027344 348.355469 Z M 157.027344 348.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.460938 347.171875 C 158.460938 347.054688 158.367188 346.960938 158.25 346.960938 C 158.132812 346.960938 158.039062 347.054688 158.039062 347.171875 C 158.039062 347.289062 158.132812 347.382812 158.25 347.382812 C 158.367188 347.382812 158.460938 347.289062 158.460938 347.171875 Z M 158.460938 347.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.824219 346.039062 C 158.824219 345.921875 158.730469 345.828125 158.613281 345.828125 C 158.496094 345.828125 158.402344 345.921875 158.402344 346.039062 C 158.402344 346.15625 158.496094 346.25 158.613281 346.25 C 158.730469 346.25 158.824219 346.15625 158.824219 346.039062 Z M 158.824219 346.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.785156 350.050781 C 159.785156 349.933594 159.691406 349.839844 159.574219 349.839844 C 159.457031 349.839844 159.363281 349.933594 159.363281 350.050781 C 159.363281 350.167969 159.457031 350.261719 159.574219 350.261719 C 159.691406 350.261719 159.785156 350.167969 159.785156 350.050781 Z M 159.785156 350.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.445312 351.984375 C 160.445312 351.867188 160.351562 351.773438 160.234375 351.773438 C 160.117188 351.773438 160.023438 351.867188 160.023438 351.984375 C 160.023438 352.101562 160.117188 352.195312 160.234375 352.195312 C 160.351562 352.195312 160.445312 352.101562 160.445312 351.984375 Z M 160.445312 351.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.574219 350.039062 C 159.574219 349.921875 159.480469 349.828125 159.363281 349.828125 C 159.246094 349.828125 159.152344 349.921875 159.152344 350.039062 C 159.152344 350.15625 159.246094 350.25 159.363281 350.25 C 159.480469 350.25 159.574219 350.15625 159.574219 350.039062 Z M 159.574219 350.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.410156 348.835938 C 161.410156 348.71875 161.316406 348.625 161.199219 348.625 C 161.082031 348.625 160.988281 348.71875 160.988281 348.835938 C 160.988281 348.953125 161.082031 349.046875 161.199219 349.046875 C 161.316406 349.046875 161.410156 348.953125 161.410156 348.835938 Z M 161.410156 348.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.363281 347.015625 C 160.363281 346.898438 160.269531 346.804688 160.152344 346.804688 C 160.035156 346.804688 159.941406 346.898438 159.941406 347.015625 C 159.941406 347.132812 160.035156 347.226562 160.152344 347.226562 C 160.269531 347.226562 160.363281 347.132812 160.363281 347.015625 Z M 160.363281 347.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.683594 345.984375 C 161.683594 345.867188 161.589844 345.773438 161.472656 345.773438 C 161.355469 345.773438 161.261719 345.867188 161.261719 345.984375 C 161.261719 346.101562 161.355469 346.195312 161.472656 346.195312 C 161.589844 346.195312 161.683594 346.101562 161.683594 345.984375 Z M 161.683594 345.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.671875 345.921875 C 160.671875 345.804688 160.578125 345.710938 160.460938 345.710938 C 160.34375 345.710938 160.25 345.804688 160.25 345.921875 C 160.25 346.039062 160.34375 346.132812 160.460938 346.132812 C 160.578125 346.132812 160.671875 346.039062 160.671875 345.921875 Z M 160.671875 345.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.316406 345.257812 C 159.316406 345.140625 159.222656 345.046875 159.105469 345.046875 C 158.988281 345.046875 158.894531 345.140625 158.894531 345.257812 C 158.894531 345.375 158.988281 345.46875 159.105469 345.46875 C 159.222656 345.46875 159.316406 345.375 159.316406 345.257812 Z M 159.316406 345.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.191406 344.59375 C 155.191406 344.476562 155.097656 344.382812 154.980469 344.382812 C 154.863281 344.382812 154.769531 344.476562 154.769531 344.59375 C 154.769531 344.710938 154.863281 344.804688 154.980469 344.804688 C 155.097656 344.804688 155.191406 344.710938 155.191406 344.59375 Z M 155.191406 344.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.03125 345.917969 C 153.03125 345.800781 152.9375 345.707031 152.820312 345.707031 C 152.703125 345.707031 152.609375 345.800781 152.609375 345.917969 C 152.609375 346.035156 152.703125 346.128906 152.820312 346.128906 C 152.9375 346.128906 153.03125 346.035156 153.03125 345.917969 Z M 153.03125 345.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.117188 345.03125 C 154.117188 344.914062 154.023438 344.820312 153.90625 344.820312 C 153.789062 344.820312 153.695312 344.914062 153.695312 345.03125 C 153.695312 345.148438 153.789062 345.242188 153.90625 345.242188 C 154.023438 345.242188 154.117188 345.148438 154.117188 345.03125 Z M 154.117188 345.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.746094 348.648438 C 154.746094 348.53125 154.652344 348.4375 154.535156 348.4375 C 154.417969 348.4375 154.324219 348.53125 154.324219 348.648438 C 154.324219 348.765625 154.417969 348.859375 154.535156 348.859375 C 154.652344 348.859375 154.746094 348.765625 154.746094 348.648438 Z M 154.746094 348.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.097656 348.492188 C 155.097656 348.375 155.003906 348.28125 154.886719 348.28125 C 154.769531 348.28125 154.675781 348.375 154.675781 348.492188 C 154.675781 348.609375 154.769531 348.703125 154.886719 348.703125 C 155.003906 348.703125 155.097656 348.609375 155.097656 348.492188 Z M 155.097656 348.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.542969 346.867188 C 154.542969 346.75 154.449219 346.65625 154.332031 346.65625 C 154.214844 346.65625 154.121094 346.75 154.121094 346.867188 C 154.121094 346.984375 154.214844 347.078125 154.332031 347.078125 C 154.449219 347.078125 154.542969 346.984375 154.542969 346.867188 Z M 154.542969 346.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.507812 348.867188 C 154.507812 348.75 154.414062 348.65625 154.296875 348.65625 C 154.179688 348.65625 154.085938 348.75 154.085938 348.867188 C 154.085938 348.984375 154.179688 349.078125 154.296875 349.078125 C 154.414062 349.078125 154.507812 348.984375 154.507812 348.867188 Z M 154.507812 348.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.71875 347.484375 C 152.71875 347.367188 152.625 347.273438 152.507812 347.273438 C 152.390625 347.273438 152.296875 347.367188 152.296875 347.484375 C 152.296875 347.601562 152.390625 347.695312 152.507812 347.695312 C 152.625 347.695312 152.71875 347.601562 152.71875 347.484375 Z M 152.71875 347.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.703125 346.363281 C 154.703125 346.246094 154.609375 346.152344 154.492188 346.152344 C 154.375 346.152344 154.28125 346.246094 154.28125 346.363281 C 154.28125 346.480469 154.375 346.574219 154.492188 346.574219 C 154.609375 346.574219 154.703125 346.480469 154.703125 346.363281 Z M 154.703125 346.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.1875 343.351562 C 156.1875 343.234375 156.09375 343.140625 155.976562 343.140625 C 155.859375 343.140625 155.765625 343.234375 155.765625 343.351562 C 155.765625 343.46875 155.859375 343.5625 155.976562 343.5625 C 156.09375 343.5625 156.1875 343.46875 156.1875 343.351562 Z M 156.1875 343.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.78125 344.667969 C 157.78125 344.550781 157.6875 344.457031 157.570312 344.457031 C 157.453125 344.457031 157.359375 344.550781 157.359375 344.667969 C 157.359375 344.785156 157.453125 344.878906 157.570312 344.878906 C 157.6875 344.878906 157.78125 344.785156 157.78125 344.667969 Z M 157.78125 344.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.707031 345.734375 C 156.707031 345.617188 156.613281 345.523438 156.496094 345.523438 C 156.378906 345.523438 156.285156 345.617188 156.285156 345.734375 C 156.285156 345.851562 156.378906 345.945312 156.496094 345.945312 C 156.613281 345.945312 156.707031 345.851562 156.707031 345.734375 Z M 156.707031 345.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.59375 345.121094 C 158.59375 345.003906 158.5 344.910156 158.382812 344.910156 C 158.265625 344.910156 158.171875 345.003906 158.171875 345.121094 C 158.171875 345.238281 158.265625 345.332031 158.382812 345.332031 C 158.5 345.332031 158.59375 345.238281 158.59375 345.121094 Z M 158.59375 345.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.660156 347.496094 C 159.660156 347.378906 159.566406 347.285156 159.449219 347.285156 C 159.332031 347.285156 159.238281 347.378906 159.238281 347.496094 C 159.238281 347.613281 159.332031 347.707031 159.449219 347.707031 C 159.566406 347.707031 159.660156 347.613281 159.660156 347.496094 Z M 159.660156 347.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.519531 346.191406 C 155.519531 346.074219 155.425781 345.980469 155.308594 345.980469 C 155.191406 345.980469 155.097656 346.074219 155.097656 346.191406 C 155.097656 346.308594 155.191406 346.402344 155.308594 346.402344 C 155.425781 346.402344 155.519531 346.308594 155.519531 346.191406 Z M 155.519531 346.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.988281 343.105469 C 154.988281 342.988281 154.894531 342.894531 154.777344 342.894531 C 154.660156 342.894531 154.566406 342.988281 154.566406 343.105469 C 154.566406 343.222656 154.660156 343.316406 154.777344 343.316406 C 154.894531 343.316406 154.988281 343.222656 154.988281 343.105469 Z M 154.988281 343.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.867188 342.632812 C 153.867188 342.515625 153.773438 342.421875 153.65625 342.421875 C 153.539062 342.421875 153.445312 342.515625 153.445312 342.632812 C 153.445312 342.75 153.539062 342.84375 153.65625 342.84375 C 153.773438 342.84375 153.867188 342.75 153.867188 342.632812 Z M 153.867188 342.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.546875 341.609375 C 155.546875 341.492188 155.453125 341.398438 155.335938 341.398438 C 155.21875 341.398438 155.125 341.492188 155.125 341.609375 C 155.125 341.726562 155.21875 341.820312 155.335938 341.820312 C 155.453125 341.820312 155.546875 341.726562 155.546875 341.609375 Z M 155.546875 341.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.605469 341.636719 C 157.605469 341.519531 157.511719 341.425781 157.394531 341.425781 C 157.277344 341.425781 157.183594 341.519531 157.183594 341.636719 C 157.183594 341.753906 157.277344 341.847656 157.394531 341.847656 C 157.511719 341.847656 157.605469 341.753906 157.605469 341.636719 Z M 157.605469 341.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.539062 343.21875 C 156.539062 343.101562 156.445312 343.007812 156.328125 343.007812 C 156.210938 343.007812 156.117188 343.101562 156.117188 343.21875 C 156.117188 343.335938 156.210938 343.429688 156.328125 343.429688 C 156.445312 343.429688 156.539062 343.335938 156.539062 343.21875 Z M 156.539062 343.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.394531 341.429688 C 156.394531 341.3125 156.300781 341.21875 156.183594 341.21875 C 156.066406 341.21875 155.972656 341.3125 155.972656 341.429688 C 155.972656 341.546875 156.066406 341.640625 156.183594 341.640625 C 156.300781 341.640625 156.394531 341.546875 156.394531 341.429688 Z M 156.394531 341.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.394531 340.609375 C 159.394531 340.492188 159.300781 340.398438 159.183594 340.398438 C 159.066406 340.398438 158.972656 340.492188 158.972656 340.609375 C 158.972656 340.726562 159.066406 340.820312 159.183594 340.820312 C 159.300781 340.820312 159.394531 340.726562 159.394531 340.609375 Z M 159.394531 340.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.5 337.980469 C 159.5 337.863281 159.40625 337.769531 159.289062 337.769531 C 159.171875 337.769531 159.078125 337.863281 159.078125 337.980469 C 159.078125 338.097656 159.171875 338.191406 159.289062 338.191406 C 159.40625 338.191406 159.5 338.097656 159.5 337.980469 Z M 159.5 337.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.582031 336.507812 C 161.582031 336.390625 161.488281 336.296875 161.371094 336.296875 C 161.253906 336.296875 161.160156 336.390625 161.160156 336.507812 C 161.160156 336.625 161.253906 336.71875 161.371094 336.71875 C 161.488281 336.71875 161.582031 336.625 161.582031 336.507812 Z M 161.582031 336.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.628906 337.160156 C 160.628906 337.042969 160.535156 336.949219 160.417969 336.949219 C 160.300781 336.949219 160.207031 337.042969 160.207031 337.160156 C 160.207031 337.277344 160.300781 337.371094 160.417969 337.371094 C 160.535156 337.371094 160.628906 337.277344 160.628906 337.160156 Z M 160.628906 337.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.898438 336.898438 C 159.898438 336.78125 159.804688 336.6875 159.6875 336.6875 C 159.570312 336.6875 159.476562 336.78125 159.476562 336.898438 C 159.476562 337.015625 159.570312 337.109375 159.6875 337.109375 C 159.804688 337.109375 159.898438 337.015625 159.898438 336.898438 Z M 159.898438 336.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.203125 333.339844 C 160.203125 333.222656 160.109375 333.128906 159.992188 333.128906 C 159.875 333.128906 159.78125 333.222656 159.78125 333.339844 C 159.78125 333.457031 159.875 333.550781 159.992188 333.550781 C 160.109375 333.550781 160.203125 333.457031 160.203125 333.339844 Z M 160.203125 333.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.578125 333.402344 C 159.578125 333.285156 159.484375 333.191406 159.367188 333.191406 C 159.25 333.191406 159.15625 333.285156 159.15625 333.402344 C 159.15625 333.519531 159.25 333.613281 159.367188 333.613281 C 159.484375 333.613281 159.578125 333.519531 159.578125 333.402344 Z M 159.578125 333.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.421875 330.53125 C 160.421875 330.414062 160.328125 330.320312 160.210938 330.320312 C 160.09375 330.320312 160 330.414062 160 330.53125 C 160 330.648438 160.09375 330.742188 160.210938 330.742188 C 160.328125 330.742188 160.421875 330.648438 160.421875 330.53125 Z M 160.421875 330.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.476562 326.09375 C 161.476562 325.976562 161.382812 325.882812 161.265625 325.882812 C 161.148438 325.882812 161.054688 325.976562 161.054688 326.09375 C 161.054688 326.210938 161.148438 326.304688 161.265625 326.304688 C 161.382812 326.304688 161.476562 326.210938 161.476562 326.09375 Z M 161.476562 326.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.355469 330.667969 C 165.355469 330.550781 165.261719 330.457031 165.144531 330.457031 C 165.027344 330.457031 164.933594 330.550781 164.933594 330.667969 C 164.933594 330.785156 165.027344 330.878906 165.144531 330.878906 C 165.261719 330.878906 165.355469 330.785156 165.355469 330.667969 Z M 165.355469 330.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.703125 329.570312 C 164.703125 329.453125 164.609375 329.359375 164.492188 329.359375 C 164.375 329.359375 164.28125 329.453125 164.28125 329.570312 C 164.28125 329.6875 164.375 329.78125 164.492188 329.78125 C 164.609375 329.78125 164.703125 329.6875 164.703125 329.570312 Z M 164.703125 329.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.613281 329.554688 C 161.613281 329.4375 161.519531 329.34375 161.402344 329.34375 C 161.285156 329.34375 161.191406 329.4375 161.191406 329.554688 C 161.191406 329.671875 161.285156 329.765625 161.402344 329.765625 C 161.519531 329.765625 161.613281 329.671875 161.613281 329.554688 Z M 161.613281 329.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.4375 326.34375 C 165.4375 326.226562 165.34375 326.132812 165.226562 326.132812 C 165.109375 326.132812 165.015625 326.226562 165.015625 326.34375 C 165.015625 326.460938 165.109375 326.554688 165.226562 326.554688 C 165.34375 326.554688 165.4375 326.460938 165.4375 326.34375 Z M 165.4375 326.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.175781 324.480469 C 166.175781 324.363281 166.082031 324.269531 165.964844 324.269531 C 165.847656 324.269531 165.753906 324.363281 165.753906 324.480469 C 165.753906 324.597656 165.847656 324.691406 165.964844 324.691406 C 166.082031 324.691406 166.175781 324.597656 166.175781 324.480469 Z M 166.175781 324.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.058594 324.171875 C 168.058594 324.054688 167.964844 323.960938 167.847656 323.960938 C 167.730469 323.960938 167.636719 324.054688 167.636719 324.171875 C 167.636719 324.289062 167.730469 324.382812 167.847656 324.382812 C 167.964844 324.382812 168.058594 324.289062 168.058594 324.171875 Z M 168.058594 324.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.082031 323.121094 C 165.082031 323.003906 164.988281 322.910156 164.871094 322.910156 C 164.753906 322.910156 164.660156 323.003906 164.660156 323.121094 C 164.660156 323.238281 164.753906 323.332031 164.871094 323.332031 C 164.988281 323.332031 165.082031 323.238281 165.082031 323.121094 Z M 165.082031 323.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.480469 323.523438 C 160.480469 323.40625 160.386719 323.3125 160.269531 323.3125 C 160.152344 323.3125 160.058594 323.40625 160.058594 323.523438 C 160.058594 323.640625 160.152344 323.734375 160.269531 323.734375 C 160.386719 323.734375 160.480469 323.640625 160.480469 323.523438 Z M 160.480469 323.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.550781 321.191406 C 161.550781 321.074219 161.457031 320.980469 161.339844 320.980469 C 161.222656 320.980469 161.128906 321.074219 161.128906 321.191406 C 161.128906 321.308594 161.222656 321.402344 161.339844 321.402344 C 161.457031 321.402344 161.550781 321.308594 161.550781 321.191406 Z M 161.550781 321.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.222656 315.558594 C 161.222656 315.441406 161.128906 315.347656 161.011719 315.347656 C 160.894531 315.347656 160.800781 315.441406 160.800781 315.558594 C 160.800781 315.675781 160.894531 315.769531 161.011719 315.769531 C 161.128906 315.769531 161.222656 315.675781 161.222656 315.558594 Z M 161.222656 315.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.882812 316.507812 C 161.882812 316.390625 161.789062 316.296875 161.671875 316.296875 C 161.554688 316.296875 161.460938 316.390625 161.460938 316.507812 C 161.460938 316.625 161.554688 316.71875 161.671875 316.71875 C 161.789062 316.71875 161.882812 316.625 161.882812 316.507812 Z M 161.882812 316.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.421875 318.238281 C 163.421875 318.121094 163.328125 318.027344 163.210938 318.027344 C 163.09375 318.027344 163 318.121094 163 318.238281 C 163 318.355469 163.09375 318.449219 163.210938 318.449219 C 163.328125 318.449219 163.421875 318.355469 163.421875 318.238281 Z M 163.421875 318.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.027344 317 C 161.027344 316.882812 160.933594 316.789062 160.816406 316.789062 C 160.699219 316.789062 160.605469 316.882812 160.605469 317 C 160.605469 317.117188 160.699219 317.210938 160.816406 317.210938 C 160.933594 317.210938 161.027344 317.117188 161.027344 317 Z M 161.027344 317 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.636719 315.804688 C 160.636719 315.6875 160.542969 315.59375 160.425781 315.59375 C 160.308594 315.59375 160.214844 315.6875 160.214844 315.804688 C 160.214844 315.921875 160.308594 316.015625 160.425781 316.015625 C 160.542969 316.015625 160.636719 315.921875 160.636719 315.804688 Z M 160.636719 315.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.230469 315.007812 C 159.230469 314.890625 159.136719 314.796875 159.019531 314.796875 C 158.902344 314.796875 158.808594 314.890625 158.808594 315.007812 C 158.808594 315.125 158.902344 315.21875 159.019531 315.21875 C 159.136719 315.21875 159.230469 315.125 159.230469 315.007812 Z M 159.230469 315.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.742188 313.976562 C 162.742188 313.859375 162.648438 313.765625 162.53125 313.765625 C 162.414062 313.765625 162.320312 313.859375 162.320312 313.976562 C 162.320312 314.09375 162.414062 314.1875 162.53125 314.1875 C 162.648438 314.1875 162.742188 314.09375 162.742188 313.976562 Z M 162.742188 313.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.234375 311.273438 C 169.234375 311.15625 169.140625 311.0625 169.023438 311.0625 C 168.90625 311.0625 168.8125 311.15625 168.8125 311.273438 C 168.8125 311.390625 168.90625 311.484375 169.023438 311.484375 C 169.140625 311.484375 169.234375 311.390625 169.234375 311.273438 Z M 169.234375 311.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.582031 308.71875 C 169.582031 308.601562 169.488281 308.507812 169.371094 308.507812 C 169.253906 308.507812 169.160156 308.601562 169.160156 308.71875 C 169.160156 308.835938 169.253906 308.929688 169.371094 308.929688 C 169.488281 308.929688 169.582031 308.835938 169.582031 308.71875 Z M 169.582031 308.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.378906 304.15625 C 170.378906 304.039062 170.285156 303.945312 170.167969 303.945312 C 170.050781 303.945312 169.957031 304.039062 169.957031 304.15625 C 169.957031 304.273438 170.050781 304.367188 170.167969 304.367188 C 170.285156 304.367188 170.378906 304.273438 170.378906 304.15625 Z M 170.378906 304.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.863281 305.285156 C 164.863281 305.167969 164.769531 305.074219 164.652344 305.074219 C 164.535156 305.074219 164.441406 305.167969 164.441406 305.285156 C 164.441406 305.402344 164.535156 305.496094 164.652344 305.496094 C 164.769531 305.496094 164.863281 305.402344 164.863281 305.285156 Z M 164.863281 305.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.363281 303.363281 C 167.363281 303.246094 167.269531 303.152344 167.152344 303.152344 C 167.035156 303.152344 166.941406 303.246094 166.941406 303.363281 C 166.941406 303.480469 167.035156 303.574219 167.152344 303.574219 C 167.269531 303.574219 167.363281 303.480469 167.363281 303.363281 Z M 167.363281 303.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.605469 303.972656 C 165.605469 303.855469 165.511719 303.761719 165.394531 303.761719 C 165.277344 303.761719 165.183594 303.855469 165.183594 303.972656 C 165.183594 304.089844 165.277344 304.183594 165.394531 304.183594 C 165.511719 304.183594 165.605469 304.089844 165.605469 303.972656 Z M 165.605469 303.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.367188 302.199219 C 169.367188 302.082031 169.273438 301.988281 169.15625 301.988281 C 169.039062 301.988281 168.945312 302.082031 168.945312 302.199219 C 168.945312 302.316406 169.039062 302.410156 169.15625 302.410156 C 169.273438 302.410156 169.367188 302.316406 169.367188 302.199219 Z M 169.367188 302.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.777344 301.914062 C 167.777344 301.796875 167.683594 301.703125 167.566406 301.703125 C 167.449219 301.703125 167.355469 301.796875 167.355469 301.914062 C 167.355469 302.03125 167.449219 302.125 167.566406 302.125 C 167.683594 302.125 167.777344 302.03125 167.777344 301.914062 Z M 167.777344 301.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.316406 300.738281 C 168.316406 300.621094 168.222656 300.527344 168.105469 300.527344 C 167.988281 300.527344 167.894531 300.621094 167.894531 300.738281 C 167.894531 300.855469 167.988281 300.949219 168.105469 300.949219 C 168.222656 300.949219 168.316406 300.855469 168.316406 300.738281 Z M 168.316406 300.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.703125 302.46875 C 165.703125 302.351562 165.609375 302.257812 165.492188 302.257812 C 165.375 302.257812 165.28125 302.351562 165.28125 302.46875 C 165.28125 302.585938 165.375 302.679688 165.492188 302.679688 C 165.609375 302.679688 165.703125 302.585938 165.703125 302.46875 Z M 165.703125 302.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.449219 305.101562 C 168.449219 304.984375 168.355469 304.890625 168.238281 304.890625 C 168.121094 304.890625 168.027344 304.984375 168.027344 305.101562 C 168.027344 305.21875 168.121094 305.3125 168.238281 305.3125 C 168.355469 305.3125 168.449219 305.21875 168.449219 305.101562 Z M 168.449219 305.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.507812 304.964844 C 168.507812 304.847656 168.414062 304.753906 168.296875 304.753906 C 168.179688 304.753906 168.085938 304.847656 168.085938 304.964844 C 168.085938 305.082031 168.179688 305.175781 168.296875 305.175781 C 168.414062 305.175781 168.507812 305.082031 168.507812 304.964844 Z M 168.507812 304.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.664062 302.550781 C 167.664062 302.433594 167.570312 302.339844 167.453125 302.339844 C 167.335938 302.339844 167.242188 302.433594 167.242188 302.550781 C 167.242188 302.667969 167.335938 302.761719 167.453125 302.761719 C 167.570312 302.761719 167.664062 302.667969 167.664062 302.550781 Z M 167.664062 302.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.761719 300.226562 C 167.761719 300.109375 167.667969 300.015625 167.550781 300.015625 C 167.433594 300.015625 167.339844 300.109375 167.339844 300.226562 C 167.339844 300.34375 167.433594 300.4375 167.550781 300.4375 C 167.667969 300.4375 167.761719 300.34375 167.761719 300.226562 Z M 167.761719 300.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.335938 302.621094 C 170.335938 302.503906 170.242188 302.410156 170.125 302.410156 C 170.007812 302.410156 169.914062 302.503906 169.914062 302.621094 C 169.914062 302.738281 170.007812 302.832031 170.125 302.832031 C 170.242188 302.832031 170.335938 302.738281 170.335938 302.621094 Z M 170.335938 302.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.859375 300.164062 C 171.859375 300.046875 171.765625 299.953125 171.648438 299.953125 C 171.53125 299.953125 171.4375 300.046875 171.4375 300.164062 C 171.4375 300.28125 171.53125 300.375 171.648438 300.375 C 171.765625 300.375 171.859375 300.28125 171.859375 300.164062 Z M 171.859375 300.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.835938 300.308594 C 175.835938 300.191406 175.742188 300.097656 175.625 300.097656 C 175.507812 300.097656 175.414062 300.191406 175.414062 300.308594 C 175.414062 300.425781 175.507812 300.519531 175.625 300.519531 C 175.742188 300.519531 175.835938 300.425781 175.835938 300.308594 Z M 175.835938 300.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.808594 304.859375 C 172.808594 304.742188 172.714844 304.648438 172.597656 304.648438 C 172.480469 304.648438 172.386719 304.742188 172.386719 304.859375 C 172.386719 304.976562 172.480469 305.070312 172.597656 305.070312 C 172.714844 305.070312 172.808594 304.976562 172.808594 304.859375 Z M 172.808594 304.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.078125 303.222656 C 172.078125 303.105469 171.984375 303.011719 171.867188 303.011719 C 171.75 303.011719 171.65625 303.105469 171.65625 303.222656 C 171.65625 303.339844 171.75 303.433594 171.867188 303.433594 C 171.984375 303.433594 172.078125 303.339844 172.078125 303.222656 Z M 172.078125 303.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.125 299.992188 C 169.125 299.875 169.03125 299.78125 168.914062 299.78125 C 168.796875 299.78125 168.703125 299.875 168.703125 299.992188 C 168.703125 300.109375 168.796875 300.203125 168.914062 300.203125 C 169.03125 300.203125 169.125 300.109375 169.125 299.992188 Z M 169.125 299.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.761719 299.710938 C 168.761719 299.59375 168.667969 299.5 168.550781 299.5 C 168.433594 299.5 168.339844 299.59375 168.339844 299.710938 C 168.339844 299.828125 168.433594 299.921875 168.550781 299.921875 C 168.667969 299.921875 168.761719 299.828125 168.761719 299.710938 Z M 168.761719 299.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.53125 300.640625 C 166.53125 300.523438 166.4375 300.429688 166.320312 300.429688 C 166.203125 300.429688 166.109375 300.523438 166.109375 300.640625 C 166.109375 300.757812 166.203125 300.851562 166.320312 300.851562 C 166.4375 300.851562 166.53125 300.757812 166.53125 300.640625 Z M 166.53125 300.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169 303.363281 C 169 303.246094 168.90625 303.152344 168.789062 303.152344 C 168.671875 303.152344 168.578125 303.246094 168.578125 303.363281 C 168.578125 303.480469 168.671875 303.574219 168.789062 303.574219 C 168.90625 303.574219 169 303.480469 169 303.363281 Z M 169 303.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.308594 307.382812 C 169.308594 307.265625 169.214844 307.171875 169.097656 307.171875 C 168.980469 307.171875 168.886719 307.265625 168.886719 307.382812 C 168.886719 307.5 168.980469 307.59375 169.097656 307.59375 C 169.214844 307.59375 169.308594 307.5 169.308594 307.382812 Z M 169.308594 307.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.949219 306.277344 C 168.949219 306.160156 168.855469 306.066406 168.738281 306.066406 C 168.621094 306.066406 168.527344 306.160156 168.527344 306.277344 C 168.527344 306.394531 168.621094 306.488281 168.738281 306.488281 C 168.855469 306.488281 168.949219 306.394531 168.949219 306.277344 Z M 168.949219 306.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.054688 309.308594 C 171.054688 309.191406 170.960938 309.097656 170.84375 309.097656 C 170.726562 309.097656 170.632812 309.191406 170.632812 309.308594 C 170.632812 309.425781 170.726562 309.519531 170.84375 309.519531 C 170.960938 309.519531 171.054688 309.425781 171.054688 309.308594 Z M 171.054688 309.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.371094 311.085938 C 170.371094 310.96875 170.277344 310.875 170.160156 310.875 C 170.042969 310.875 169.949219 310.96875 169.949219 311.085938 C 169.949219 311.203125 170.042969 311.296875 170.160156 311.296875 C 170.277344 311.296875 170.371094 311.203125 170.371094 311.085938 Z M 170.371094 311.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.738281 310.324219 C 172.738281 310.207031 172.644531 310.113281 172.527344 310.113281 C 172.410156 310.113281 172.316406 310.207031 172.316406 310.324219 C 172.316406 310.441406 172.410156 310.535156 172.527344 310.535156 C 172.644531 310.535156 172.738281 310.441406 172.738281 310.324219 Z M 172.738281 310.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.207031 311.816406 C 177.207031 311.699219 177.113281 311.605469 176.996094 311.605469 C 176.878906 311.605469 176.785156 311.699219 176.785156 311.816406 C 176.785156 311.933594 176.878906 312.027344 176.996094 312.027344 C 177.113281 312.027344 177.207031 311.933594 177.207031 311.816406 Z M 177.207031 311.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.707031 312.65625 C 177.707031 312.539062 177.613281 312.445312 177.496094 312.445312 C 177.378906 312.445312 177.285156 312.539062 177.285156 312.65625 C 177.285156 312.773438 177.378906 312.867188 177.496094 312.867188 C 177.613281 312.867188 177.707031 312.773438 177.707031 312.65625 Z M 177.707031 312.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.6875 314.792969 C 175.6875 314.675781 175.59375 314.582031 175.476562 314.582031 C 175.359375 314.582031 175.265625 314.675781 175.265625 314.792969 C 175.265625 314.910156 175.359375 315.003906 175.476562 315.003906 C 175.59375 315.003906 175.6875 314.910156 175.6875 314.792969 Z M 175.6875 314.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.511719 315.722656 C 176.511719 315.605469 176.417969 315.511719 176.300781 315.511719 C 176.183594 315.511719 176.089844 315.605469 176.089844 315.722656 C 176.089844 315.839844 176.183594 315.933594 176.300781 315.933594 C 176.417969 315.933594 176.511719 315.839844 176.511719 315.722656 Z M 176.511719 315.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.609375 319.148438 C 180.609375 319.03125 180.515625 318.9375 180.398438 318.9375 C 180.28125 318.9375 180.1875 319.03125 180.1875 319.148438 C 180.1875 319.265625 180.28125 319.359375 180.398438 319.359375 C 180.515625 319.359375 180.609375 319.265625 180.609375 319.148438 Z M 180.609375 319.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.90625 319.128906 C 184.90625 319.011719 184.8125 318.917969 184.695312 318.917969 C 184.578125 318.917969 184.484375 319.011719 184.484375 319.128906 C 184.484375 319.246094 184.578125 319.339844 184.695312 319.339844 C 184.8125 319.339844 184.90625 319.246094 184.90625 319.128906 Z M 184.90625 319.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.449219 318.035156 C 184.449219 317.917969 184.355469 317.824219 184.238281 317.824219 C 184.121094 317.824219 184.027344 317.917969 184.027344 318.035156 C 184.027344 318.152344 184.121094 318.246094 184.238281 318.246094 C 184.355469 318.246094 184.449219 318.152344 184.449219 318.035156 Z M 184.449219 318.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.582031 323.859375 C 185.582031 323.742188 185.488281 323.648438 185.371094 323.648438 C 185.253906 323.648438 185.160156 323.742188 185.160156 323.859375 C 185.160156 323.976562 185.253906 324.070312 185.371094 324.070312 C 185.488281 324.070312 185.582031 323.976562 185.582031 323.859375 Z M 185.582031 323.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.597656 321.257812 C 180.597656 321.140625 180.503906 321.046875 180.386719 321.046875 C 180.269531 321.046875 180.175781 321.140625 180.175781 321.257812 C 180.175781 321.375 180.269531 321.46875 180.386719 321.46875 C 180.503906 321.46875 180.597656 321.375 180.597656 321.257812 Z M 180.597656 321.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.574219 319.257812 C 181.574219 319.140625 181.480469 319.046875 181.363281 319.046875 C 181.246094 319.046875 181.152344 319.140625 181.152344 319.257812 C 181.152344 319.375 181.246094 319.46875 181.363281 319.46875 C 181.480469 319.46875 181.574219 319.375 181.574219 319.257812 Z M 181.574219 319.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.890625 318.6875 C 184.890625 318.570312 184.796875 318.476562 184.679688 318.476562 C 184.5625 318.476562 184.46875 318.570312 184.46875 318.6875 C 184.46875 318.804688 184.5625 318.898438 184.679688 318.898438 C 184.796875 318.898438 184.890625 318.804688 184.890625 318.6875 Z M 184.890625 318.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.914062 316.390625 C 178.914062 316.273438 178.820312 316.179688 178.703125 316.179688 C 178.585938 316.179688 178.492188 316.273438 178.492188 316.390625 C 178.492188 316.507812 178.585938 316.601562 178.703125 316.601562 C 178.820312 316.601562 178.914062 316.507812 178.914062 316.390625 Z M 178.914062 316.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.898438 318.785156 C 182.898438 318.667969 182.804688 318.574219 182.6875 318.574219 C 182.570312 318.574219 182.476562 318.667969 182.476562 318.785156 C 182.476562 318.902344 182.570312 318.996094 182.6875 318.996094 C 182.804688 318.996094 182.898438 318.902344 182.898438 318.785156 Z M 182.898438 318.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.207031 318.238281 C 183.207031 318.121094 183.113281 318.027344 182.996094 318.027344 C 182.878906 318.027344 182.785156 318.121094 182.785156 318.238281 C 182.785156 318.355469 182.878906 318.449219 182.996094 318.449219 C 183.113281 318.449219 183.207031 318.355469 183.207031 318.238281 Z M 183.207031 318.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.621094 319.667969 C 186.621094 319.550781 186.527344 319.457031 186.410156 319.457031 C 186.292969 319.457031 186.199219 319.550781 186.199219 319.667969 C 186.199219 319.785156 186.292969 319.878906 186.410156 319.878906 C 186.527344 319.878906 186.621094 319.785156 186.621094 319.667969 Z M 186.621094 319.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.195312 320.851562 C 188.195312 320.734375 188.101562 320.640625 187.984375 320.640625 C 187.867188 320.640625 187.773438 320.734375 187.773438 320.851562 C 187.773438 320.96875 187.867188 321.0625 187.984375 321.0625 C 188.101562 321.0625 188.195312 320.96875 188.195312 320.851562 Z M 188.195312 320.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.46875 320.972656 C 189.46875 320.855469 189.375 320.761719 189.257812 320.761719 C 189.140625 320.761719 189.046875 320.855469 189.046875 320.972656 C 189.046875 321.089844 189.140625 321.183594 189.257812 321.183594 C 189.375 321.183594 189.46875 321.089844 189.46875 320.972656 Z M 189.46875 320.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.027344 320.625 C 192.027344 320.507812 191.933594 320.414062 191.816406 320.414062 C 191.699219 320.414062 191.605469 320.507812 191.605469 320.625 C 191.605469 320.742188 191.699219 320.835938 191.816406 320.835938 C 191.933594 320.835938 192.027344 320.742188 192.027344 320.625 Z M 192.027344 320.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.476562 319.21875 C 195.476562 319.101562 195.382812 319.007812 195.265625 319.007812 C 195.148438 319.007812 195.054688 319.101562 195.054688 319.21875 C 195.054688 319.335938 195.148438 319.429688 195.265625 319.429688 C 195.382812 319.429688 195.476562 319.335938 195.476562 319.21875 Z M 195.476562 319.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.066406 315.894531 C 197.066406 315.777344 196.972656 315.683594 196.855469 315.683594 C 196.738281 315.683594 196.644531 315.777344 196.644531 315.894531 C 196.644531 316.011719 196.738281 316.105469 196.855469 316.105469 C 196.972656 316.105469 197.066406 316.011719 197.066406 315.894531 Z M 197.066406 315.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.644531 317.890625 C 198.644531 317.773438 198.550781 317.679688 198.433594 317.679688 C 198.316406 317.679688 198.222656 317.773438 198.222656 317.890625 C 198.222656 318.007812 198.316406 318.101562 198.433594 318.101562 C 198.550781 318.101562 198.644531 318.007812 198.644531 317.890625 Z M 198.644531 317.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.308594 320.769531 C 197.308594 320.652344 197.214844 320.558594 197.097656 320.558594 C 196.980469 320.558594 196.886719 320.652344 196.886719 320.769531 C 196.886719 320.886719 196.980469 320.980469 197.097656 320.980469 C 197.214844 320.980469 197.308594 320.886719 197.308594 320.769531 Z M 197.308594 320.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.972656 324.445312 C 195.972656 324.328125 195.878906 324.234375 195.761719 324.234375 C 195.644531 324.234375 195.550781 324.328125 195.550781 324.445312 C 195.550781 324.5625 195.644531 324.65625 195.761719 324.65625 C 195.878906 324.65625 195.972656 324.5625 195.972656 324.445312 Z M 195.972656 324.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.554688 321.800781 C 192.554688 321.683594 192.460938 321.589844 192.34375 321.589844 C 192.226562 321.589844 192.132812 321.683594 192.132812 321.800781 C 192.132812 321.917969 192.226562 322.011719 192.34375 322.011719 C 192.460938 322.011719 192.554688 321.917969 192.554688 321.800781 Z M 192.554688 321.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.671875 321.246094 C 193.671875 321.128906 193.578125 321.035156 193.460938 321.035156 C 193.34375 321.035156 193.25 321.128906 193.25 321.246094 C 193.25 321.363281 193.34375 321.457031 193.460938 321.457031 C 193.578125 321.457031 193.671875 321.363281 193.671875 321.246094 Z M 193.671875 321.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.894531 316.953125 C 193.894531 316.835938 193.800781 316.742188 193.683594 316.742188 C 193.566406 316.742188 193.472656 316.835938 193.472656 316.953125 C 193.472656 317.070312 193.566406 317.164062 193.683594 317.164062 C 193.800781 317.164062 193.894531 317.070312 193.894531 316.953125 Z M 193.894531 316.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.363281 314.394531 C 196.363281 314.277344 196.269531 314.183594 196.152344 314.183594 C 196.035156 314.183594 195.941406 314.277344 195.941406 314.394531 C 195.941406 314.511719 196.035156 314.605469 196.152344 314.605469 C 196.269531 314.605469 196.363281 314.511719 196.363281 314.394531 Z M 196.363281 314.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.363281 312.609375 C 194.363281 312.492188 194.269531 312.398438 194.152344 312.398438 C 194.035156 312.398438 193.941406 312.492188 193.941406 312.609375 C 193.941406 312.726562 194.035156 312.820312 194.152344 312.820312 C 194.269531 312.820312 194.363281 312.726562 194.363281 312.609375 Z M 194.363281 312.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.605469 315.777344 C 196.605469 315.660156 196.511719 315.566406 196.394531 315.566406 C 196.277344 315.566406 196.183594 315.660156 196.183594 315.777344 C 196.183594 315.894531 196.277344 315.988281 196.394531 315.988281 C 196.511719 315.988281 196.605469 315.894531 196.605469 315.777344 Z M 196.605469 315.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.023438 317.113281 C 199.023438 316.996094 198.929688 316.902344 198.8125 316.902344 C 198.695312 316.902344 198.601562 316.996094 198.601562 317.113281 C 198.601562 317.230469 198.695312 317.324219 198.8125 317.324219 C 198.929688 317.324219 199.023438 317.230469 199.023438 317.113281 Z M 199.023438 317.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.808594 314.800781 C 197.808594 314.683594 197.714844 314.589844 197.597656 314.589844 C 197.480469 314.589844 197.386719 314.683594 197.386719 314.800781 C 197.386719 314.917969 197.480469 315.011719 197.597656 315.011719 C 197.714844 315.011719 197.808594 314.917969 197.808594 314.800781 Z M 197.808594 314.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.5625 314.976562 C 197.5625 314.859375 197.46875 314.765625 197.351562 314.765625 C 197.234375 314.765625 197.140625 314.859375 197.140625 314.976562 C 197.140625 315.09375 197.234375 315.1875 197.351562 315.1875 C 197.46875 315.1875 197.5625 315.09375 197.5625 314.976562 Z M 197.5625 314.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.644531 314.675781 C 195.644531 314.558594 195.550781 314.464844 195.433594 314.464844 C 195.316406 314.464844 195.222656 314.558594 195.222656 314.675781 C 195.222656 314.792969 195.316406 314.886719 195.433594 314.886719 C 195.550781 314.886719 195.644531 314.792969 195.644531 314.675781 Z M 195.644531 314.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.382812 314.1875 C 194.382812 314.070312 194.289062 313.976562 194.171875 313.976562 C 194.054688 313.976562 193.960938 314.070312 193.960938 314.1875 C 193.960938 314.304688 194.054688 314.398438 194.171875 314.398438 C 194.289062 314.398438 194.382812 314.304688 194.382812 314.1875 Z M 194.382812 314.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.367188 314.035156 C 195.367188 313.917969 195.273438 313.824219 195.15625 313.824219 C 195.039062 313.824219 194.945312 313.917969 194.945312 314.035156 C 194.945312 314.152344 195.039062 314.246094 195.15625 314.246094 C 195.273438 314.246094 195.367188 314.152344 195.367188 314.035156 Z M 195.367188 314.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.214844 309.769531 C 192.214844 309.652344 192.121094 309.558594 192.003906 309.558594 C 191.886719 309.558594 191.792969 309.652344 191.792969 309.769531 C 191.792969 309.886719 191.886719 309.980469 192.003906 309.980469 C 192.121094 309.980469 192.214844 309.886719 192.214844 309.769531 Z M 192.214844 309.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.667969 309.398438 C 191.667969 309.28125 191.574219 309.1875 191.457031 309.1875 C 191.339844 309.1875 191.246094 309.28125 191.246094 309.398438 C 191.246094 309.515625 191.339844 309.609375 191.457031 309.609375 C 191.574219 309.609375 191.667969 309.515625 191.667969 309.398438 Z M 191.667969 309.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.9375 309.199219 C 189.9375 309.082031 189.84375 308.988281 189.726562 308.988281 C 189.609375 308.988281 189.515625 309.082031 189.515625 309.199219 C 189.515625 309.316406 189.609375 309.410156 189.726562 309.410156 C 189.84375 309.410156 189.9375 309.316406 189.9375 309.199219 Z M 189.9375 309.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.886719 309.613281 C 192.886719 309.496094 192.792969 309.402344 192.675781 309.402344 C 192.558594 309.402344 192.464844 309.496094 192.464844 309.613281 C 192.464844 309.730469 192.558594 309.824219 192.675781 309.824219 C 192.792969 309.824219 192.886719 309.730469 192.886719 309.613281 Z M 192.886719 309.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.109375 309.476562 C 193.109375 309.359375 193.015625 309.265625 192.898438 309.265625 C 192.78125 309.265625 192.6875 309.359375 192.6875 309.476562 C 192.6875 309.59375 192.78125 309.6875 192.898438 309.6875 C 193.015625 309.6875 193.109375 309.59375 193.109375 309.476562 Z M 193.109375 309.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.082031 308.503906 C 192.082031 308.386719 191.988281 308.292969 191.871094 308.292969 C 191.753906 308.292969 191.660156 308.386719 191.660156 308.503906 C 191.660156 308.621094 191.753906 308.714844 191.871094 308.714844 C 191.988281 308.714844 192.082031 308.621094 192.082031 308.503906 Z M 192.082031 308.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.804688 307.582031 C 193.804688 307.464844 193.710938 307.371094 193.59375 307.371094 C 193.476562 307.371094 193.382812 307.464844 193.382812 307.582031 C 193.382812 307.699219 193.476562 307.792969 193.59375 307.792969 C 193.710938 307.792969 193.804688 307.699219 193.804688 307.582031 Z M 193.804688 307.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.648438 306.113281 C 192.648438 305.996094 192.554688 305.902344 192.4375 305.902344 C 192.320312 305.902344 192.226562 305.996094 192.226562 306.113281 C 192.226562 306.230469 192.320312 306.324219 192.4375 306.324219 C 192.554688 306.324219 192.648438 306.230469 192.648438 306.113281 Z M 192.648438 306.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.09375 309.265625 C 192.09375 309.148438 192 309.054688 191.882812 309.054688 C 191.765625 309.054688 191.671875 309.148438 191.671875 309.265625 C 191.671875 309.382812 191.765625 309.476562 191.882812 309.476562 C 192 309.476562 192.09375 309.382812 192.09375 309.265625 Z M 192.09375 309.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.859375 307.695312 C 193.859375 307.578125 193.765625 307.484375 193.648438 307.484375 C 193.53125 307.484375 193.4375 307.578125 193.4375 307.695312 C 193.4375 307.8125 193.53125 307.90625 193.648438 307.90625 C 193.765625 307.90625 193.859375 307.8125 193.859375 307.695312 Z M 193.859375 307.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.523438 307.542969 C 191.523438 307.425781 191.429688 307.332031 191.3125 307.332031 C 191.195312 307.332031 191.101562 307.425781 191.101562 307.542969 C 191.101562 307.660156 191.195312 307.753906 191.3125 307.753906 C 191.429688 307.753906 191.523438 307.660156 191.523438 307.542969 Z M 191.523438 307.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.683594 307.804688 C 193.683594 307.6875 193.589844 307.59375 193.472656 307.59375 C 193.355469 307.59375 193.261719 307.6875 193.261719 307.804688 C 193.261719 307.921875 193.355469 308.015625 193.472656 308.015625 C 193.589844 308.015625 193.683594 307.921875 193.683594 307.804688 Z M 193.683594 307.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.667969 308.8125 C 193.667969 308.695312 193.574219 308.601562 193.457031 308.601562 C 193.339844 308.601562 193.246094 308.695312 193.246094 308.8125 C 193.246094 308.929688 193.339844 309.023438 193.457031 309.023438 C 193.574219 309.023438 193.667969 308.929688 193.667969 308.8125 Z M 193.667969 308.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.242188 309.339844 C 191.242188 309.222656 191.148438 309.128906 191.03125 309.128906 C 190.914062 309.128906 190.820312 309.222656 190.820312 309.339844 C 190.820312 309.457031 190.914062 309.550781 191.03125 309.550781 C 191.148438 309.550781 191.242188 309.457031 191.242188 309.339844 Z M 191.242188 309.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.261719 309.816406 C 189.261719 309.699219 189.167969 309.605469 189.050781 309.605469 C 188.933594 309.605469 188.839844 309.699219 188.839844 309.816406 C 188.839844 309.933594 188.933594 310.027344 189.050781 310.027344 C 189.167969 310.027344 189.261719 309.933594 189.261719 309.816406 Z M 189.261719 309.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.570312 309.074219 C 189.570312 308.957031 189.476562 308.863281 189.359375 308.863281 C 189.242188 308.863281 189.148438 308.957031 189.148438 309.074219 C 189.148438 309.191406 189.242188 309.285156 189.359375 309.285156 C 189.476562 309.285156 189.570312 309.191406 189.570312 309.074219 Z M 189.570312 309.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.429688 307.71875 C 186.429688 307.601562 186.335938 307.507812 186.21875 307.507812 C 186.101562 307.507812 186.007812 307.601562 186.007812 307.71875 C 186.007812 307.835938 186.101562 307.929688 186.21875 307.929688 C 186.335938 307.929688 186.429688 307.835938 186.429688 307.71875 Z M 186.429688 307.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.960938 307.980469 C 187.960938 307.863281 187.867188 307.769531 187.75 307.769531 C 187.632812 307.769531 187.539062 307.863281 187.539062 307.980469 C 187.539062 308.097656 187.632812 308.191406 187.75 308.191406 C 187.867188 308.191406 187.960938 308.097656 187.960938 307.980469 Z M 187.960938 307.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.9375 307.890625 C 186.9375 307.773438 186.84375 307.679688 186.726562 307.679688 C 186.609375 307.679688 186.515625 307.773438 186.515625 307.890625 C 186.515625 308.007812 186.609375 308.101562 186.726562 308.101562 C 186.84375 308.101562 186.9375 308.007812 186.9375 307.890625 Z M 186.9375 307.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.730469 306.195312 C 183.730469 306.078125 183.636719 305.984375 183.519531 305.984375 C 183.402344 305.984375 183.308594 306.078125 183.308594 306.195312 C 183.308594 306.3125 183.402344 306.40625 183.519531 306.40625 C 183.636719 306.40625 183.730469 306.3125 183.730469 306.195312 Z M 183.730469 306.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.011719 304.886719 C 180.011719 304.769531 179.917969 304.675781 179.800781 304.675781 C 179.683594 304.675781 179.589844 304.769531 179.589844 304.886719 C 179.589844 305.003906 179.683594 305.097656 179.800781 305.097656 C 179.917969 305.097656 180.011719 305.003906 180.011719 304.886719 Z M 180.011719 304.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.753906 304.046875 C 178.753906 303.929688 178.660156 303.835938 178.542969 303.835938 C 178.425781 303.835938 178.332031 303.929688 178.332031 304.046875 C 178.332031 304.164062 178.425781 304.257812 178.542969 304.257812 C 178.660156 304.257812 178.753906 304.164062 178.753906 304.046875 Z M 178.753906 304.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.664062 304.804688 C 182.664062 304.6875 182.570312 304.59375 182.453125 304.59375 C 182.335938 304.59375 182.242188 304.6875 182.242188 304.804688 C 182.242188 304.921875 182.335938 305.015625 182.453125 305.015625 C 182.570312 305.015625 182.664062 304.921875 182.664062 304.804688 Z M 182.664062 304.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.371094 308.3125 C 179.371094 308.195312 179.277344 308.101562 179.160156 308.101562 C 179.042969 308.101562 178.949219 308.195312 178.949219 308.3125 C 178.949219 308.429688 179.042969 308.523438 179.160156 308.523438 C 179.277344 308.523438 179.371094 308.429688 179.371094 308.3125 Z M 179.371094 308.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.476562 308.445312 C 179.476562 308.328125 179.382812 308.234375 179.265625 308.234375 C 179.148438 308.234375 179.054688 308.328125 179.054688 308.445312 C 179.054688 308.5625 179.148438 308.65625 179.265625 308.65625 C 179.382812 308.65625 179.476562 308.5625 179.476562 308.445312 Z M 179.476562 308.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.015625 309.917969 C 181.015625 309.800781 180.921875 309.707031 180.804688 309.707031 C 180.6875 309.707031 180.59375 309.800781 180.59375 309.917969 C 180.59375 310.035156 180.6875 310.128906 180.804688 310.128906 C 180.921875 310.128906 181.015625 310.035156 181.015625 309.917969 Z M 181.015625 309.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.089844 311.242188 C 181.089844 311.125 180.996094 311.03125 180.878906 311.03125 C 180.761719 311.03125 180.667969 311.125 180.667969 311.242188 C 180.667969 311.359375 180.761719 311.453125 180.878906 311.453125 C 180.996094 311.453125 181.089844 311.359375 181.089844 311.242188 Z M 181.089844 311.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.503906 313.734375 C 179.503906 313.617188 179.410156 313.523438 179.292969 313.523438 C 179.175781 313.523438 179.082031 313.617188 179.082031 313.734375 C 179.082031 313.851562 179.175781 313.945312 179.292969 313.945312 C 179.410156 313.945312 179.503906 313.851562 179.503906 313.734375 Z M 179.503906 313.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.167969 312.324219 C 179.167969 312.207031 179.074219 312.113281 178.957031 312.113281 C 178.839844 312.113281 178.746094 312.207031 178.746094 312.324219 C 178.746094 312.441406 178.839844 312.535156 178.957031 312.535156 C 179.074219 312.535156 179.167969 312.441406 179.167969 312.324219 Z M 179.167969 312.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.609375 311.234375 C 180.609375 311.117188 180.515625 311.023438 180.398438 311.023438 C 180.28125 311.023438 180.1875 311.117188 180.1875 311.234375 C 180.1875 311.351562 180.28125 311.445312 180.398438 311.445312 C 180.515625 311.445312 180.609375 311.351562 180.609375 311.234375 Z M 180.609375 311.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.175781 313.511719 C 179.175781 313.394531 179.082031 313.300781 178.964844 313.300781 C 178.847656 313.300781 178.753906 313.394531 178.753906 313.511719 C 178.753906 313.628906 178.847656 313.722656 178.964844 313.722656 C 179.082031 313.722656 179.175781 313.628906 179.175781 313.511719 Z M 179.175781 313.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.78125 307.242188 C 180.78125 307.125 180.6875 307.03125 180.570312 307.03125 C 180.453125 307.03125 180.359375 307.125 180.359375 307.242188 C 180.359375 307.359375 180.453125 307.453125 180.570312 307.453125 C 180.6875 307.453125 180.78125 307.359375 180.78125 307.242188 Z M 180.78125 307.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.09375 305.300781 C 182.09375 305.183594 182 305.089844 181.882812 305.089844 C 181.765625 305.089844 181.671875 305.183594 181.671875 305.300781 C 181.671875 305.417969 181.765625 305.511719 181.882812 305.511719 C 182 305.511719 182.09375 305.417969 182.09375 305.300781 Z M 182.09375 305.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.40625 305.574219 C 183.40625 305.457031 183.3125 305.363281 183.195312 305.363281 C 183.078125 305.363281 182.984375 305.457031 182.984375 305.574219 C 182.984375 305.691406 183.078125 305.785156 183.195312 305.785156 C 183.3125 305.785156 183.40625 305.691406 183.40625 305.574219 Z M 183.40625 305.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.753906 306.355469 C 184.753906 306.238281 184.660156 306.144531 184.542969 306.144531 C 184.425781 306.144531 184.332031 306.238281 184.332031 306.355469 C 184.332031 306.472656 184.425781 306.566406 184.542969 306.566406 C 184.660156 306.566406 184.753906 306.472656 184.753906 306.355469 Z M 184.753906 306.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.113281 311.070312 C 187.113281 310.953125 187.019531 310.859375 186.902344 310.859375 C 186.785156 310.859375 186.691406 310.953125 186.691406 311.070312 C 186.691406 311.1875 186.785156 311.28125 186.902344 311.28125 C 187.019531 311.28125 187.113281 311.1875 187.113281 311.070312 Z M 187.113281 311.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.488281 310.261719 C 186.488281 310.144531 186.394531 310.050781 186.277344 310.050781 C 186.160156 310.050781 186.066406 310.144531 186.066406 310.261719 C 186.066406 310.378906 186.160156 310.472656 186.277344 310.472656 C 186.394531 310.472656 186.488281 310.378906 186.488281 310.261719 Z M 186.488281 310.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.203125 309.4375 C 183.203125 309.320312 183.109375 309.226562 182.992188 309.226562 C 182.875 309.226562 182.78125 309.320312 182.78125 309.4375 C 182.78125 309.554688 182.875 309.648438 182.992188 309.648438 C 183.109375 309.648438 183.203125 309.554688 183.203125 309.4375 Z M 183.203125 309.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.675781 307.375 C 184.675781 307.257812 184.582031 307.164062 184.464844 307.164062 C 184.347656 307.164062 184.253906 307.257812 184.253906 307.375 C 184.253906 307.492188 184.347656 307.585938 184.464844 307.585938 C 184.582031 307.585938 184.675781 307.492188 184.675781 307.375 Z M 184.675781 307.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.324219 307.269531 C 186.324219 307.152344 186.230469 307.058594 186.113281 307.058594 C 185.996094 307.058594 185.902344 307.152344 185.902344 307.269531 C 185.902344 307.386719 185.996094 307.480469 186.113281 307.480469 C 186.230469 307.480469 186.324219 307.386719 186.324219 307.269531 Z M 186.324219 307.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.390625 308.085938 C 188.390625 307.96875 188.296875 307.875 188.179688 307.875 C 188.0625 307.875 187.96875 307.96875 187.96875 308.085938 C 187.96875 308.203125 188.0625 308.296875 188.179688 308.296875 C 188.296875 308.296875 188.390625 308.203125 188.390625 308.085938 Z M 188.390625 308.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.730469 305.96875 C 186.730469 305.851562 186.636719 305.757812 186.519531 305.757812 C 186.402344 305.757812 186.308594 305.851562 186.308594 305.96875 C 186.308594 306.085938 186.402344 306.179688 186.519531 306.179688 C 186.636719 306.179688 186.730469 306.085938 186.730469 305.96875 Z M 186.730469 305.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.050781 306.480469 C 188.050781 306.363281 187.957031 306.269531 187.839844 306.269531 C 187.722656 306.269531 187.628906 306.363281 187.628906 306.480469 C 187.628906 306.597656 187.722656 306.691406 187.839844 306.691406 C 187.957031 306.691406 188.050781 306.597656 188.050781 306.480469 Z M 188.050781 306.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.824219 308.382812 C 187.824219 308.265625 187.730469 308.171875 187.613281 308.171875 C 187.496094 308.171875 187.402344 308.265625 187.402344 308.382812 C 187.402344 308.5 187.496094 308.59375 187.613281 308.59375 C 187.730469 308.59375 187.824219 308.5 187.824219 308.382812 Z M 187.824219 308.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.050781 311.519531 C 186.050781 311.402344 185.957031 311.308594 185.839844 311.308594 C 185.722656 311.308594 185.628906 311.402344 185.628906 311.519531 C 185.628906 311.636719 185.722656 311.730469 185.839844 311.730469 C 185.957031 311.730469 186.050781 311.636719 186.050781 311.519531 Z M 186.050781 311.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.40625 312.707031 C 185.40625 312.589844 185.3125 312.496094 185.195312 312.496094 C 185.078125 312.496094 184.984375 312.589844 184.984375 312.707031 C 184.984375 312.824219 185.078125 312.917969 185.195312 312.917969 C 185.3125 312.917969 185.40625 312.824219 185.40625 312.707031 Z M 185.40625 312.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.890625 311.132812 C 186.890625 311.015625 186.796875 310.921875 186.679688 310.921875 C 186.5625 310.921875 186.46875 311.015625 186.46875 311.132812 C 186.46875 311.25 186.5625 311.34375 186.679688 311.34375 C 186.796875 311.34375 186.890625 311.25 186.890625 311.132812 Z M 186.890625 311.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.75 307.015625 C 185.75 306.898438 185.65625 306.804688 185.539062 306.804688 C 185.421875 306.804688 185.328125 306.898438 185.328125 307.015625 C 185.328125 307.132812 185.421875 307.226562 185.539062 307.226562 C 185.65625 307.226562 185.75 307.132812 185.75 307.015625 Z M 185.75 307.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.664062 305.144531 C 183.664062 305.027344 183.570312 304.933594 183.453125 304.933594 C 183.335938 304.933594 183.242188 305.027344 183.242188 305.144531 C 183.242188 305.261719 183.335938 305.355469 183.453125 305.355469 C 183.570312 305.355469 183.664062 305.261719 183.664062 305.144531 Z M 183.664062 305.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.988281 304.738281 C 185.988281 304.621094 185.894531 304.527344 185.777344 304.527344 C 185.660156 304.527344 185.566406 304.621094 185.566406 304.738281 C 185.566406 304.855469 185.660156 304.949219 185.777344 304.949219 C 185.894531 304.949219 185.988281 304.855469 185.988281 304.738281 Z M 185.988281 304.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.125 303.964844 C 187.125 303.847656 187.03125 303.753906 186.914062 303.753906 C 186.796875 303.753906 186.703125 303.847656 186.703125 303.964844 C 186.703125 304.082031 186.796875 304.175781 186.914062 304.175781 C 187.03125 304.175781 187.125 304.082031 187.125 303.964844 Z M 187.125 303.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.828125 301.902344 C 187.828125 301.785156 187.734375 301.691406 187.617188 301.691406 C 187.5 301.691406 187.40625 301.785156 187.40625 301.902344 C 187.40625 302.019531 187.5 302.113281 187.617188 302.113281 C 187.734375 302.113281 187.828125 302.019531 187.828125 301.902344 Z M 187.828125 301.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.285156 302.390625 C 188.285156 302.273438 188.191406 302.179688 188.074219 302.179688 C 187.957031 302.179688 187.863281 302.273438 187.863281 302.390625 C 187.863281 302.507812 187.957031 302.601562 188.074219 302.601562 C 188.191406 302.601562 188.285156 302.507812 188.285156 302.390625 Z M 188.285156 302.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.492188 302.613281 C 190.492188 302.496094 190.398438 302.402344 190.28125 302.402344 C 190.164062 302.402344 190.070312 302.496094 190.070312 302.613281 C 190.070312 302.730469 190.164062 302.824219 190.28125 302.824219 C 190.398438 302.824219 190.492188 302.730469 190.492188 302.613281 Z M 190.492188 302.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.175781 305.191406 C 190.175781 305.074219 190.082031 304.980469 189.964844 304.980469 C 189.847656 304.980469 189.753906 305.074219 189.753906 305.191406 C 189.753906 305.308594 189.847656 305.402344 189.964844 305.402344 C 190.082031 305.402344 190.175781 305.308594 190.175781 305.191406 Z M 190.175781 305.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.988281 305.070312 C 191.988281 304.953125 191.894531 304.859375 191.777344 304.859375 C 191.660156 304.859375 191.566406 304.953125 191.566406 305.070312 C 191.566406 305.1875 191.660156 305.28125 191.777344 305.28125 C 191.894531 305.28125 191.988281 305.1875 191.988281 305.070312 Z M 191.988281 305.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.460938 302.238281 C 190.460938 302.121094 190.367188 302.027344 190.25 302.027344 C 190.132812 302.027344 190.039062 302.121094 190.039062 302.238281 C 190.039062 302.355469 190.132812 302.449219 190.25 302.449219 C 190.367188 302.449219 190.460938 302.355469 190.460938 302.238281 Z M 190.460938 302.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.199219 304.414062 C 193.199219 304.296875 193.105469 304.203125 192.988281 304.203125 C 192.871094 304.203125 192.777344 304.296875 192.777344 304.414062 C 192.777344 304.53125 192.871094 304.625 192.988281 304.625 C 193.105469 304.625 193.199219 304.53125 193.199219 304.414062 Z M 193.199219 304.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.261719 304.167969 C 195.261719 304.050781 195.167969 303.957031 195.050781 303.957031 C 194.933594 303.957031 194.839844 304.050781 194.839844 304.167969 C 194.839844 304.285156 194.933594 304.378906 195.050781 304.378906 C 195.167969 304.378906 195.261719 304.285156 195.261719 304.167969 Z M 195.261719 304.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.132812 309.070312 C 195.132812 308.953125 195.039062 308.859375 194.921875 308.859375 C 194.804688 308.859375 194.710938 308.953125 194.710938 309.070312 C 194.710938 309.1875 194.804688 309.28125 194.921875 309.28125 C 195.039062 309.28125 195.132812 309.1875 195.132812 309.070312 Z M 195.132812 309.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.824219 311.023438 C 197.824219 310.90625 197.730469 310.8125 197.613281 310.8125 C 197.496094 310.8125 197.402344 310.90625 197.402344 311.023438 C 197.402344 311.140625 197.496094 311.234375 197.613281 311.234375 C 197.730469 311.234375 197.824219 311.140625 197.824219 311.023438 Z M 197.824219 311.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.644531 313.21875 C 199.644531 313.101562 199.550781 313.007812 199.433594 313.007812 C 199.316406 313.007812 199.222656 313.101562 199.222656 313.21875 C 199.222656 313.335938 199.316406 313.429688 199.433594 313.429688 C 199.550781 313.429688 199.644531 313.335938 199.644531 313.21875 Z M 199.644531 313.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.816406 309.121094 C 199.816406 309.003906 199.722656 308.910156 199.605469 308.910156 C 199.488281 308.910156 199.394531 309.003906 199.394531 309.121094 C 199.394531 309.238281 199.488281 309.332031 199.605469 309.332031 C 199.722656 309.332031 199.816406 309.238281 199.816406 309.121094 Z M 199.816406 309.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.609375 308.9375 C 202.609375 308.820312 202.515625 308.726562 202.398438 308.726562 C 202.28125 308.726562 202.1875 308.820312 202.1875 308.9375 C 202.1875 309.054688 202.28125 309.148438 202.398438 309.148438 C 202.515625 309.148438 202.609375 309.054688 202.609375 308.9375 Z M 202.609375 308.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.785156 310.070312 C 200.785156 309.953125 200.691406 309.859375 200.574219 309.859375 C 200.457031 309.859375 200.363281 309.953125 200.363281 310.070312 C 200.363281 310.1875 200.457031 310.28125 200.574219 310.28125 C 200.691406 310.28125 200.785156 310.1875 200.785156 310.070312 Z M 200.785156 310.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.914062 310.085938 C 198.914062 309.96875 198.820312 309.875 198.703125 309.875 C 198.585938 309.875 198.492188 309.96875 198.492188 310.085938 C 198.492188 310.203125 198.585938 310.296875 198.703125 310.296875 C 198.820312 310.296875 198.914062 310.203125 198.914062 310.085938 Z M 198.914062 310.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200 312.90625 C 200 312.789062 199.90625 312.695312 199.789062 312.695312 C 199.671875 312.695312 199.578125 312.789062 199.578125 312.90625 C 199.578125 313.023438 199.671875 313.117188 199.789062 313.117188 C 199.90625 313.117188 200 313.023438 200 312.90625 Z M 200 312.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.148438 311.8125 C 200.148438 311.695312 200.054688 311.601562 199.9375 311.601562 C 199.820312 311.601562 199.726562 311.695312 199.726562 311.8125 C 199.726562 311.929688 199.820312 312.023438 199.9375 312.023438 C 200.054688 312.023438 200.148438 311.929688 200.148438 311.8125 Z M 200.148438 311.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.894531 313.164062 C 197.894531 313.046875 197.800781 312.953125 197.683594 312.953125 C 197.566406 312.953125 197.472656 313.046875 197.472656 313.164062 C 197.472656 313.28125 197.566406 313.375 197.683594 313.375 C 197.800781 313.375 197.894531 313.28125 197.894531 313.164062 Z M 197.894531 313.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.726562 312.40625 C 199.726562 312.289062 199.632812 312.195312 199.515625 312.195312 C 199.398438 312.195312 199.304688 312.289062 199.304688 312.40625 C 199.304688 312.523438 199.398438 312.617188 199.515625 312.617188 C 199.632812 312.617188 199.726562 312.523438 199.726562 312.40625 Z M 199.726562 312.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.105469 311.824219 C 199.105469 311.707031 199.011719 311.613281 198.894531 311.613281 C 198.777344 311.613281 198.683594 311.707031 198.683594 311.824219 C 198.683594 311.941406 198.777344 312.035156 198.894531 312.035156 C 199.011719 312.035156 199.105469 311.941406 199.105469 311.824219 Z M 199.105469 311.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.761719 311.65625 C 199.761719 311.539062 199.667969 311.445312 199.550781 311.445312 C 199.433594 311.445312 199.339844 311.539062 199.339844 311.65625 C 199.339844 311.773438 199.433594 311.867188 199.550781 311.867188 C 199.667969 311.867188 199.761719 311.773438 199.761719 311.65625 Z M 199.761719 311.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.539062 309.117188 C 204.539062 309 204.445312 308.90625 204.328125 308.90625 C 204.210938 308.90625 204.117188 309 204.117188 309.117188 C 204.117188 309.234375 204.210938 309.328125 204.328125 309.328125 C 204.445312 309.328125 204.539062 309.234375 204.539062 309.117188 Z M 204.539062 309.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.945312 311.582031 C 200.945312 311.464844 200.851562 311.371094 200.734375 311.371094 C 200.617188 311.371094 200.523438 311.464844 200.523438 311.582031 C 200.523438 311.699219 200.617188 311.792969 200.734375 311.792969 C 200.851562 311.792969 200.945312 311.699219 200.945312 311.582031 Z M 200.945312 311.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.820312 308.460938 C 204.820312 308.34375 204.726562 308.25 204.609375 308.25 C 204.492188 308.25 204.398438 308.34375 204.398438 308.460938 C 204.398438 308.578125 204.492188 308.671875 204.609375 308.671875 C 204.726562 308.671875 204.820312 308.578125 204.820312 308.460938 Z M 204.820312 308.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.148438 309.148438 C 204.148438 309.03125 204.054688 308.9375 203.9375 308.9375 C 203.820312 308.9375 203.726562 309.03125 203.726562 309.148438 C 203.726562 309.265625 203.820312 309.359375 203.9375 309.359375 C 204.054688 309.359375 204.148438 309.265625 204.148438 309.148438 Z M 204.148438 309.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.574219 313.117188 C 204.574219 313 204.480469 312.90625 204.363281 312.90625 C 204.246094 312.90625 204.152344 313 204.152344 313.117188 C 204.152344 313.234375 204.246094 313.328125 204.363281 313.328125 C 204.480469 313.328125 204.574219 313.234375 204.574219 313.117188 Z M 204.574219 313.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.847656 317.0625 C 202.847656 316.945312 202.753906 316.851562 202.636719 316.851562 C 202.519531 316.851562 202.425781 316.945312 202.425781 317.0625 C 202.425781 317.179688 202.519531 317.273438 202.636719 317.273438 C 202.753906 317.273438 202.847656 317.179688 202.847656 317.0625 Z M 202.847656 317.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.074219 319.050781 C 205.074219 318.933594 204.980469 318.839844 204.863281 318.839844 C 204.746094 318.839844 204.652344 318.933594 204.652344 319.050781 C 204.652344 319.167969 204.746094 319.261719 204.863281 319.261719 C 204.980469 319.261719 205.074219 319.167969 205.074219 319.050781 Z M 205.074219 319.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.378906 318.414062 C 203.378906 318.296875 203.285156 318.203125 203.167969 318.203125 C 203.050781 318.203125 202.957031 318.296875 202.957031 318.414062 C 202.957031 318.53125 203.050781 318.625 203.167969 318.625 C 203.285156 318.625 203.378906 318.53125 203.378906 318.414062 Z M 203.378906 318.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.191406 318.253906 C 204.191406 318.136719 204.097656 318.042969 203.980469 318.042969 C 203.863281 318.042969 203.769531 318.136719 203.769531 318.253906 C 203.769531 318.371094 203.863281 318.464844 203.980469 318.464844 C 204.097656 318.464844 204.191406 318.371094 204.191406 318.253906 Z M 204.191406 318.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.726562 317.886719 C 204.726562 317.769531 204.632812 317.675781 204.515625 317.675781 C 204.398438 317.675781 204.304688 317.769531 204.304688 317.886719 C 204.304688 318.003906 204.398438 318.097656 204.515625 318.097656 C 204.632812 318.097656 204.726562 318.003906 204.726562 317.886719 Z M 204.726562 317.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.5625 319.429688 C 205.5625 319.3125 205.46875 319.21875 205.351562 319.21875 C 205.234375 319.21875 205.140625 319.3125 205.140625 319.429688 C 205.140625 319.546875 205.234375 319.640625 205.351562 319.640625 C 205.46875 319.640625 205.5625 319.546875 205.5625 319.429688 Z M 205.5625 319.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.355469 316.523438 C 206.355469 316.40625 206.261719 316.3125 206.144531 316.3125 C 206.027344 316.3125 205.933594 316.40625 205.933594 316.523438 C 205.933594 316.640625 206.027344 316.734375 206.144531 316.734375 C 206.261719 316.734375 206.355469 316.640625 206.355469 316.523438 Z M 206.355469 316.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.308594 314.527344 C 205.308594 314.410156 205.214844 314.316406 205.097656 314.316406 C 204.980469 314.316406 204.886719 314.410156 204.886719 314.527344 C 204.886719 314.644531 204.980469 314.738281 205.097656 314.738281 C 205.214844 314.738281 205.308594 314.644531 205.308594 314.527344 Z M 205.308594 314.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.089844 312.6875 C 206.089844 312.570312 205.996094 312.476562 205.878906 312.476562 C 205.761719 312.476562 205.667969 312.570312 205.667969 312.6875 C 205.667969 312.804688 205.761719 312.898438 205.878906 312.898438 C 205.996094 312.898438 206.089844 312.804688 206.089844 312.6875 Z M 206.089844 312.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.765625 313.476562 C 206.765625 313.359375 206.671875 313.265625 206.554688 313.265625 C 206.4375 313.265625 206.34375 313.359375 206.34375 313.476562 C 206.34375 313.59375 206.4375 313.6875 206.554688 313.6875 C 206.671875 313.6875 206.765625 313.59375 206.765625 313.476562 Z M 206.765625 313.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.863281 313.226562 C 202.863281 313.109375 202.769531 313.015625 202.652344 313.015625 C 202.535156 313.015625 202.441406 313.109375 202.441406 313.226562 C 202.441406 313.34375 202.535156 313.4375 202.652344 313.4375 C 202.769531 313.4375 202.863281 313.34375 202.863281 313.226562 Z M 202.863281 313.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.277344 309.9375 C 204.277344 309.820312 204.183594 309.726562 204.066406 309.726562 C 203.949219 309.726562 203.855469 309.820312 203.855469 309.9375 C 203.855469 310.054688 203.949219 310.148438 204.066406 310.148438 C 204.183594 310.148438 204.277344 310.054688 204.277344 309.9375 Z M 204.277344 309.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.597656 310.96875 C 205.597656 310.851562 205.503906 310.757812 205.386719 310.757812 C 205.269531 310.757812 205.175781 310.851562 205.175781 310.96875 C 205.175781 311.085938 205.269531 311.179688 205.386719 311.179688 C 205.503906 311.179688 205.597656 311.085938 205.597656 310.96875 Z M 205.597656 310.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.351562 309.4375 C 204.351562 309.320312 204.257812 309.226562 204.140625 309.226562 C 204.023438 309.226562 203.929688 309.320312 203.929688 309.4375 C 203.929688 309.554688 204.023438 309.648438 204.140625 309.648438 C 204.257812 309.648438 204.351562 309.554688 204.351562 309.4375 Z M 204.351562 309.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.542969 306.65625 C 204.542969 306.539062 204.449219 306.445312 204.332031 306.445312 C 204.214844 306.445312 204.121094 306.539062 204.121094 306.65625 C 204.121094 306.773438 204.214844 306.867188 204.332031 306.867188 C 204.449219 306.867188 204.542969 306.773438 204.542969 306.65625 Z M 204.542969 306.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.089844 308.761719 C 204.089844 308.644531 203.996094 308.550781 203.878906 308.550781 C 203.761719 308.550781 203.667969 308.644531 203.667969 308.761719 C 203.667969 308.878906 203.761719 308.972656 203.878906 308.972656 C 203.996094 308.972656 204.089844 308.878906 204.089844 308.761719 Z M 204.089844 308.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.792969 309.792969 C 204.792969 309.675781 204.699219 309.582031 204.582031 309.582031 C 204.464844 309.582031 204.371094 309.675781 204.371094 309.792969 C 204.371094 309.910156 204.464844 310.003906 204.582031 310.003906 C 204.699219 310.003906 204.792969 309.910156 204.792969 309.792969 Z M 204.792969 309.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.222656 312.402344 C 207.222656 312.285156 207.128906 312.191406 207.011719 312.191406 C 206.894531 312.191406 206.800781 312.285156 206.800781 312.402344 C 206.800781 312.519531 206.894531 312.613281 207.011719 312.613281 C 207.128906 312.613281 207.222656 312.519531 207.222656 312.402344 Z M 207.222656 312.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.800781 312.460938 C 209.800781 312.34375 209.707031 312.25 209.589844 312.25 C 209.472656 312.25 209.378906 312.34375 209.378906 312.460938 C 209.378906 312.578125 209.472656 312.671875 209.589844 312.671875 C 209.707031 312.671875 209.800781 312.578125 209.800781 312.460938 Z M 209.800781 312.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.851562 309.960938 C 208.851562 309.84375 208.757812 309.75 208.640625 309.75 C 208.523438 309.75 208.429688 309.84375 208.429688 309.960938 C 208.429688 310.078125 208.523438 310.171875 208.640625 310.171875 C 208.757812 310.171875 208.851562 310.078125 208.851562 309.960938 Z M 208.851562 309.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.535156 311.015625 C 208.535156 310.898438 208.441406 310.804688 208.324219 310.804688 C 208.207031 310.804688 208.113281 310.898438 208.113281 311.015625 C 208.113281 311.132812 208.207031 311.226562 208.324219 311.226562 C 208.441406 311.226562 208.535156 311.132812 208.535156 311.015625 Z M 208.535156 311.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.363281 314.644531 C 209.363281 314.527344 209.269531 314.433594 209.152344 314.433594 C 209.035156 314.433594 208.941406 314.527344 208.941406 314.644531 C 208.941406 314.761719 209.035156 314.855469 209.152344 314.855469 C 209.269531 314.855469 209.363281 314.761719 209.363281 314.644531 Z M 209.363281 314.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.886719 315.132812 C 209.886719 315.015625 209.792969 314.921875 209.675781 314.921875 C 209.558594 314.921875 209.464844 315.015625 209.464844 315.132812 C 209.464844 315.25 209.558594 315.34375 209.675781 315.34375 C 209.792969 315.34375 209.886719 315.25 209.886719 315.132812 Z M 209.886719 315.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.480469 314.039062 C 208.480469 313.921875 208.386719 313.828125 208.269531 313.828125 C 208.152344 313.828125 208.058594 313.921875 208.058594 314.039062 C 208.058594 314.15625 208.152344 314.25 208.269531 314.25 C 208.386719 314.25 208.480469 314.15625 208.480469 314.039062 Z M 208.480469 314.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.90625 314.234375 C 205.90625 314.117188 205.8125 314.023438 205.695312 314.023438 C 205.578125 314.023438 205.484375 314.117188 205.484375 314.234375 C 205.484375 314.351562 205.578125 314.445312 205.695312 314.445312 C 205.8125 314.445312 205.90625 314.351562 205.90625 314.234375 Z M 205.90625 314.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.382812 315.253906 C 204.382812 315.136719 204.289062 315.042969 204.171875 315.042969 C 204.054688 315.042969 203.960938 315.136719 203.960938 315.253906 C 203.960938 315.371094 204.054688 315.464844 204.171875 315.464844 C 204.289062 315.464844 204.382812 315.371094 204.382812 315.253906 Z M 204.382812 315.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.09375 312.53125 C 205.09375 312.414062 205 312.320312 204.882812 312.320312 C 204.765625 312.320312 204.671875 312.414062 204.671875 312.53125 C 204.671875 312.648438 204.765625 312.742188 204.882812 312.742188 C 205 312.742188 205.09375 312.648438 205.09375 312.53125 Z M 205.09375 312.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.484375 310.878906 C 207.484375 310.761719 207.390625 310.667969 207.273438 310.667969 C 207.15625 310.667969 207.0625 310.761719 207.0625 310.878906 C 207.0625 310.996094 207.15625 311.089844 207.273438 311.089844 C 207.390625 311.089844 207.484375 310.996094 207.484375 310.878906 Z M 207.484375 310.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.460938 307.070312 C 208.460938 306.953125 208.367188 306.859375 208.25 306.859375 C 208.132812 306.859375 208.039062 306.953125 208.039062 307.070312 C 208.039062 307.1875 208.132812 307.28125 208.25 307.28125 C 208.367188 307.28125 208.460938 307.1875 208.460938 307.070312 Z M 208.460938 307.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.597656 310.0625 C 209.597656 309.945312 209.503906 309.851562 209.386719 309.851562 C 209.269531 309.851562 209.175781 309.945312 209.175781 310.0625 C 209.175781 310.179688 209.269531 310.273438 209.386719 310.273438 C 209.503906 310.273438 209.597656 310.179688 209.597656 310.0625 Z M 209.597656 310.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.8125 311.492188 C 211.8125 311.375 211.71875 311.28125 211.601562 311.28125 C 211.484375 311.28125 211.390625 311.375 211.390625 311.492188 C 211.390625 311.609375 211.484375 311.703125 211.601562 311.703125 C 211.71875 311.703125 211.8125 311.609375 211.8125 311.492188 Z M 211.8125 311.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.511719 310.9375 C 211.511719 310.820312 211.417969 310.726562 211.300781 310.726562 C 211.183594 310.726562 211.089844 310.820312 211.089844 310.9375 C 211.089844 311.054688 211.183594 311.148438 211.300781 311.148438 C 211.417969 311.148438 211.511719 311.054688 211.511719 310.9375 Z M 211.511719 310.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.253906 307.117188 C 209.253906 307 209.160156 306.90625 209.042969 306.90625 C 208.925781 306.90625 208.832031 307 208.832031 307.117188 C 208.832031 307.234375 208.925781 307.328125 209.042969 307.328125 C 209.160156 307.328125 209.253906 307.234375 209.253906 307.117188 Z M 209.253906 307.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.855469 304.449219 C 209.855469 304.332031 209.761719 304.238281 209.644531 304.238281 C 209.527344 304.238281 209.433594 304.332031 209.433594 304.449219 C 209.433594 304.566406 209.527344 304.660156 209.644531 304.660156 C 209.761719 304.660156 209.855469 304.566406 209.855469 304.449219 Z M 209.855469 304.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.054688 302.527344 C 211.054688 302.410156 210.960938 302.316406 210.84375 302.316406 C 210.726562 302.316406 210.632812 302.410156 210.632812 302.527344 C 210.632812 302.644531 210.726562 302.738281 210.84375 302.738281 C 210.960938 302.738281 211.054688 302.644531 211.054688 302.527344 Z M 211.054688 302.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.921875 304.054688 C 208.921875 303.9375 208.828125 303.84375 208.710938 303.84375 C 208.59375 303.84375 208.5 303.9375 208.5 304.054688 C 208.5 304.171875 208.59375 304.265625 208.710938 304.265625 C 208.828125 304.265625 208.921875 304.171875 208.921875 304.054688 Z M 208.921875 304.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.808594 305.078125 C 210.808594 304.960938 210.714844 304.867188 210.597656 304.867188 C 210.480469 304.867188 210.386719 304.960938 210.386719 305.078125 C 210.386719 305.195312 210.480469 305.289062 210.597656 305.289062 C 210.714844 305.289062 210.808594 305.195312 210.808594 305.078125 Z M 210.808594 305.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.976562 307.101562 C 208.976562 306.984375 208.882812 306.890625 208.765625 306.890625 C 208.648438 306.890625 208.554688 306.984375 208.554688 307.101562 C 208.554688 307.21875 208.648438 307.3125 208.765625 307.3125 C 208.882812 307.3125 208.976562 307.21875 208.976562 307.101562 Z M 208.976562 307.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.265625 304.929688 C 207.265625 304.8125 207.171875 304.71875 207.054688 304.71875 C 206.9375 304.71875 206.84375 304.8125 206.84375 304.929688 C 206.84375 305.046875 206.9375 305.140625 207.054688 305.140625 C 207.171875 305.140625 207.265625 305.046875 207.265625 304.929688 Z M 207.265625 304.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.785156 305.859375 C 206.785156 305.742188 206.691406 305.648438 206.574219 305.648438 C 206.457031 305.648438 206.363281 305.742188 206.363281 305.859375 C 206.363281 305.976562 206.457031 306.070312 206.574219 306.070312 C 206.691406 306.070312 206.785156 305.976562 206.785156 305.859375 Z M 206.785156 305.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.238281 305.667969 C 207.238281 305.550781 207.144531 305.457031 207.027344 305.457031 C 206.910156 305.457031 206.816406 305.550781 206.816406 305.667969 C 206.816406 305.785156 206.910156 305.878906 207.027344 305.878906 C 207.144531 305.878906 207.238281 305.785156 207.238281 305.667969 Z M 207.238281 305.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.695312 303.839844 C 210.695312 303.722656 210.601562 303.628906 210.484375 303.628906 C 210.367188 303.628906 210.273438 303.722656 210.273438 303.839844 C 210.273438 303.957031 210.367188 304.050781 210.484375 304.050781 C 210.601562 304.050781 210.695312 303.957031 210.695312 303.839844 Z M 210.695312 303.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.769531 303.65625 C 211.769531 303.539062 211.675781 303.445312 211.558594 303.445312 C 211.441406 303.445312 211.347656 303.539062 211.347656 303.65625 C 211.347656 303.773438 211.441406 303.867188 211.558594 303.867188 C 211.675781 303.867188 211.769531 303.773438 211.769531 303.65625 Z M 211.769531 303.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.636719 302.453125 C 208.636719 302.335938 208.542969 302.242188 208.425781 302.242188 C 208.308594 302.242188 208.214844 302.335938 208.214844 302.453125 C 208.214844 302.570312 208.308594 302.664062 208.425781 302.664062 C 208.542969 302.664062 208.636719 302.570312 208.636719 302.453125 Z M 208.636719 302.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.636719 300.421875 C 209.636719 300.304688 209.542969 300.210938 209.425781 300.210938 C 209.308594 300.210938 209.214844 300.304688 209.214844 300.421875 C 209.214844 300.539062 209.308594 300.632812 209.425781 300.632812 C 209.542969 300.632812 209.636719 300.539062 209.636719 300.421875 Z M 209.636719 300.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.195312 298.925781 C 208.195312 298.808594 208.101562 298.714844 207.984375 298.714844 C 207.867188 298.714844 207.773438 298.808594 207.773438 298.925781 C 207.773438 299.042969 207.867188 299.136719 207.984375 299.136719 C 208.101562 299.136719 208.195312 299.042969 208.195312 298.925781 Z M 208.195312 298.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.386719 299.070312 C 207.386719 298.953125 207.292969 298.859375 207.175781 298.859375 C 207.058594 298.859375 206.964844 298.953125 206.964844 299.070312 C 206.964844 299.1875 207.058594 299.28125 207.175781 299.28125 C 207.292969 299.28125 207.386719 299.1875 207.386719 299.070312 Z M 207.386719 299.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210 301.109375 C 210 300.992188 209.90625 300.898438 209.789062 300.898438 C 209.671875 300.898438 209.578125 300.992188 209.578125 301.109375 C 209.578125 301.226562 209.671875 301.320312 209.789062 301.320312 C 209.90625 301.320312 210 301.226562 210 301.109375 Z M 210 301.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.035156 300.503906 C 211.035156 300.386719 210.941406 300.292969 210.824219 300.292969 C 210.707031 300.292969 210.613281 300.386719 210.613281 300.503906 C 210.613281 300.621094 210.707031 300.714844 210.824219 300.714844 C 210.941406 300.714844 211.035156 300.621094 211.035156 300.503906 Z M 211.035156 300.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.15625 299.5625 C 214.15625 299.445312 214.0625 299.351562 213.945312 299.351562 C 213.828125 299.351562 213.734375 299.445312 213.734375 299.5625 C 213.734375 299.679688 213.828125 299.773438 213.945312 299.773438 C 214.0625 299.773438 214.15625 299.679688 214.15625 299.5625 Z M 214.15625 299.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.378906 300.019531 C 211.378906 299.902344 211.285156 299.808594 211.167969 299.808594 C 211.050781 299.808594 210.957031 299.902344 210.957031 300.019531 C 210.957031 300.136719 211.050781 300.230469 211.167969 300.230469 C 211.285156 300.230469 211.378906 300.136719 211.378906 300.019531 Z M 211.378906 300.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.429688 299.710938 C 210.429688 299.59375 210.335938 299.5 210.21875 299.5 C 210.101562 299.5 210.007812 299.59375 210.007812 299.710938 C 210.007812 299.828125 210.101562 299.921875 210.21875 299.921875 C 210.335938 299.921875 210.429688 299.828125 210.429688 299.710938 Z M 210.429688 299.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.277344 299.933594 C 213.277344 299.816406 213.183594 299.722656 213.066406 299.722656 C 212.949219 299.722656 212.855469 299.816406 212.855469 299.933594 C 212.855469 300.050781 212.949219 300.144531 213.066406 300.144531 C 213.183594 300.144531 213.277344 300.050781 213.277344 299.933594 Z M 213.277344 299.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.285156 301.304688 C 215.285156 301.1875 215.191406 301.09375 215.074219 301.09375 C 214.957031 301.09375 214.863281 301.1875 214.863281 301.304688 C 214.863281 301.421875 214.957031 301.515625 215.074219 301.515625 C 215.191406 301.515625 215.285156 301.421875 215.285156 301.304688 Z M 215.285156 301.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.054688 300.363281 C 217.054688 300.246094 216.960938 300.152344 216.84375 300.152344 C 216.726562 300.152344 216.632812 300.246094 216.632812 300.363281 C 216.632812 300.480469 216.726562 300.574219 216.84375 300.574219 C 216.960938 300.574219 217.054688 300.480469 217.054688 300.363281 Z M 217.054688 300.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.628906 300.796875 C 216.628906 300.679688 216.535156 300.585938 216.417969 300.585938 C 216.300781 300.585938 216.207031 300.679688 216.207031 300.796875 C 216.207031 300.914062 216.300781 301.007812 216.417969 301.007812 C 216.535156 301.007812 216.628906 300.914062 216.628906 300.796875 Z M 216.628906 300.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.40625 302.53125 C 218.40625 302.414062 218.3125 302.320312 218.195312 302.320312 C 218.078125 302.320312 217.984375 302.414062 217.984375 302.53125 C 217.984375 302.648438 218.078125 302.742188 218.195312 302.742188 C 218.3125 302.742188 218.40625 302.648438 218.40625 302.53125 Z M 218.40625 302.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.007812 300.179688 C 218.007812 300.0625 217.914062 299.96875 217.796875 299.96875 C 217.679688 299.96875 217.585938 300.0625 217.585938 300.179688 C 217.585938 300.296875 217.679688 300.390625 217.796875 300.390625 C 217.914062 300.390625 218.007812 300.296875 218.007812 300.179688 Z M 218.007812 300.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.140625 302.261719 C 217.140625 302.144531 217.046875 302.050781 216.929688 302.050781 C 216.8125 302.050781 216.71875 302.144531 216.71875 302.261719 C 216.71875 302.378906 216.8125 302.472656 216.929688 302.472656 C 217.046875 302.472656 217.140625 302.378906 217.140625 302.261719 Z M 217.140625 302.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.828125 306.558594 C 212.828125 306.441406 212.734375 306.347656 212.617188 306.347656 C 212.5 306.347656 212.40625 306.441406 212.40625 306.558594 C 212.40625 306.675781 212.5 306.769531 212.617188 306.769531 C 212.734375 306.769531 212.828125 306.675781 212.828125 306.558594 Z M 212.828125 306.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.113281 306.589844 C 211.113281 306.472656 211.019531 306.378906 210.902344 306.378906 C 210.785156 306.378906 210.691406 306.472656 210.691406 306.589844 C 210.691406 306.707031 210.785156 306.800781 210.902344 306.800781 C 211.019531 306.800781 211.113281 306.707031 211.113281 306.589844 Z M 211.113281 306.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.015625 311.003906 C 214.015625 310.886719 213.921875 310.792969 213.804688 310.792969 C 213.6875 310.792969 213.59375 310.886719 213.59375 311.003906 C 213.59375 311.121094 213.6875 311.214844 213.804688 311.214844 C 213.921875 311.214844 214.015625 311.121094 214.015625 311.003906 Z M 214.015625 311.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.570312 311.835938 C 211.570312 311.71875 211.476562 311.625 211.359375 311.625 C 211.242188 311.625 211.148438 311.71875 211.148438 311.835938 C 211.148438 311.953125 211.242188 312.046875 211.359375 312.046875 C 211.476562 312.046875 211.570312 311.953125 211.570312 311.835938 Z M 211.570312 311.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.207031 314.476562 C 209.207031 314.359375 209.113281 314.265625 208.996094 314.265625 C 208.878906 314.265625 208.785156 314.359375 208.785156 314.476562 C 208.785156 314.59375 208.878906 314.6875 208.996094 314.6875 C 209.113281 314.6875 209.207031 314.59375 209.207031 314.476562 Z M 209.207031 314.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.859375 314 C 211.859375 313.882812 211.765625 313.789062 211.648438 313.789062 C 211.53125 313.789062 211.4375 313.882812 211.4375 314 C 211.4375 314.117188 211.53125 314.210938 211.648438 314.210938 C 211.765625 314.210938 211.859375 314.117188 211.859375 314 Z M 211.859375 314 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.410156 311.882812 C 211.410156 311.765625 211.316406 311.671875 211.199219 311.671875 C 211.082031 311.671875 210.988281 311.765625 210.988281 311.882812 C 210.988281 312 211.082031 312.09375 211.199219 312.09375 C 211.316406 312.09375 211.410156 312 211.410156 311.882812 Z M 211.410156 311.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.21875 308.542969 C 211.21875 308.425781 211.125 308.332031 211.007812 308.332031 C 210.890625 308.332031 210.796875 308.425781 210.796875 308.542969 C 210.796875 308.660156 210.890625 308.753906 211.007812 308.753906 C 211.125 308.753906 211.21875 308.660156 211.21875 308.542969 Z M 211.21875 308.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.253906 311.566406 C 210.253906 311.449219 210.160156 311.355469 210.042969 311.355469 C 209.925781 311.355469 209.832031 311.449219 209.832031 311.566406 C 209.832031 311.683594 209.925781 311.777344 210.042969 311.777344 C 210.160156 311.777344 210.253906 311.683594 210.253906 311.566406 Z M 210.253906 311.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.777344 310.738281 C 207.777344 310.621094 207.683594 310.527344 207.566406 310.527344 C 207.449219 310.527344 207.355469 310.621094 207.355469 310.738281 C 207.355469 310.855469 207.449219 310.949219 207.566406 310.949219 C 207.683594 310.949219 207.777344 310.855469 207.777344 310.738281 Z M 207.777344 310.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.433594 310.234375 C 206.433594 310.117188 206.339844 310.023438 206.222656 310.023438 C 206.105469 310.023438 206.011719 310.117188 206.011719 310.234375 C 206.011719 310.351562 206.105469 310.445312 206.222656 310.445312 C 206.339844 310.445312 206.433594 310.351562 206.433594 310.234375 Z M 206.433594 310.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.558594 313.230469 C 203.558594 313.113281 203.464844 313.019531 203.347656 313.019531 C 203.230469 313.019531 203.136719 313.113281 203.136719 313.230469 C 203.136719 313.347656 203.230469 313.441406 203.347656 313.441406 C 203.464844 313.441406 203.558594 313.347656 203.558594 313.230469 Z M 203.558594 313.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.339844 313.230469 C 201.339844 313.113281 201.246094 313.019531 201.128906 313.019531 C 201.011719 313.019531 200.917969 313.113281 200.917969 313.230469 C 200.917969 313.347656 201.011719 313.441406 201.128906 313.441406 C 201.246094 313.441406 201.339844 313.347656 201.339844 313.230469 Z M 201.339844 313.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.421875 313.832031 C 202.421875 313.714844 202.328125 313.621094 202.210938 313.621094 C 202.09375 313.621094 202 313.714844 202 313.832031 C 202 313.949219 202.09375 314.042969 202.210938 314.042969 C 202.328125 314.042969 202.421875 313.949219 202.421875 313.832031 Z M 202.421875 313.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.253906 314.472656 C 204.253906 314.355469 204.160156 314.261719 204.042969 314.261719 C 203.925781 314.261719 203.832031 314.355469 203.832031 314.472656 C 203.832031 314.589844 203.925781 314.683594 204.042969 314.683594 C 204.160156 314.683594 204.253906 314.589844 204.253906 314.472656 Z M 204.253906 314.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.621094 312.464844 C 203.621094 312.347656 203.527344 312.253906 203.410156 312.253906 C 203.292969 312.253906 203.199219 312.347656 203.199219 312.464844 C 203.199219 312.582031 203.292969 312.675781 203.410156 312.675781 C 203.527344 312.675781 203.621094 312.582031 203.621094 312.464844 Z M 203.621094 312.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.65625 315.472656 C 200.65625 315.355469 200.5625 315.261719 200.445312 315.261719 C 200.328125 315.261719 200.234375 315.355469 200.234375 315.472656 C 200.234375 315.589844 200.328125 315.683594 200.445312 315.683594 C 200.5625 315.683594 200.65625 315.589844 200.65625 315.472656 Z M 200.65625 315.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.730469 316.335938 C 199.730469 316.21875 199.636719 316.125 199.519531 316.125 C 199.402344 316.125 199.308594 316.21875 199.308594 316.335938 C 199.308594 316.453125 199.402344 316.546875 199.519531 316.546875 C 199.636719 316.546875 199.730469 316.453125 199.730469 316.335938 Z M 199.730469 316.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.773438 317.8125 C 199.773438 317.695312 199.679688 317.601562 199.5625 317.601562 C 199.445312 317.601562 199.351562 317.695312 199.351562 317.8125 C 199.351562 317.929688 199.445312 318.023438 199.5625 318.023438 C 199.679688 318.023438 199.773438 317.929688 199.773438 317.8125 Z M 199.773438 317.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.355469 314.832031 C 197.355469 314.714844 197.261719 314.621094 197.144531 314.621094 C 197.027344 314.621094 196.933594 314.714844 196.933594 314.832031 C 196.933594 314.949219 197.027344 315.042969 197.144531 315.042969 C 197.261719 315.042969 197.355469 314.949219 197.355469 314.832031 Z M 197.355469 314.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.34375 313.070312 C 195.34375 312.953125 195.25 312.859375 195.132812 312.859375 C 195.015625 312.859375 194.921875 312.953125 194.921875 313.070312 C 194.921875 313.1875 195.015625 313.28125 195.132812 313.28125 C 195.25 313.28125 195.34375 313.1875 195.34375 313.070312 Z M 195.34375 313.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.820312 313.914062 C 195.820312 313.796875 195.726562 313.703125 195.609375 313.703125 C 195.492188 313.703125 195.398438 313.796875 195.398438 313.914062 C 195.398438 314.03125 195.492188 314.125 195.609375 314.125 C 195.726562 314.125 195.820312 314.03125 195.820312 313.914062 Z M 195.820312 313.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.78125 313.09375 C 195.78125 312.976562 195.6875 312.882812 195.570312 312.882812 C 195.453125 312.882812 195.359375 312.976562 195.359375 313.09375 C 195.359375 313.210938 195.453125 313.304688 195.570312 313.304688 C 195.6875 313.304688 195.78125 313.210938 195.78125 313.09375 Z M 195.78125 313.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.1875 311.566406 C 195.1875 311.449219 195.09375 311.355469 194.976562 311.355469 C 194.859375 311.355469 194.765625 311.449219 194.765625 311.566406 C 194.765625 311.683594 194.859375 311.777344 194.976562 311.777344 C 195.09375 311.777344 195.1875 311.683594 195.1875 311.566406 Z M 195.1875 311.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.453125 311.539062 C 196.453125 311.421875 196.359375 311.328125 196.242188 311.328125 C 196.125 311.328125 196.03125 311.421875 196.03125 311.539062 C 196.03125 311.65625 196.125 311.75 196.242188 311.75 C 196.359375 311.75 196.453125 311.65625 196.453125 311.539062 Z M 196.453125 311.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.246094 313.738281 C 199.246094 313.621094 199.152344 313.527344 199.035156 313.527344 C 198.917969 313.527344 198.824219 313.621094 198.824219 313.738281 C 198.824219 313.855469 198.917969 313.949219 199.035156 313.949219 C 199.152344 313.949219 199.246094 313.855469 199.246094 313.738281 Z M 199.246094 313.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.089844 316.035156 C 199.089844 315.917969 198.996094 315.824219 198.878906 315.824219 C 198.761719 315.824219 198.667969 315.917969 198.667969 316.035156 C 198.667969 316.152344 198.761719 316.246094 198.878906 316.246094 C 198.996094 316.246094 199.089844 316.152344 199.089844 316.035156 Z M 199.089844 316.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.929688 314.3125 C 199.929688 314.195312 199.835938 314.101562 199.71875 314.101562 C 199.601562 314.101562 199.507812 314.195312 199.507812 314.3125 C 199.507812 314.429688 199.601562 314.523438 199.71875 314.523438 C 199.835938 314.523438 199.929688 314.429688 199.929688 314.3125 Z M 199.929688 314.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.53125 314.863281 C 199.53125 314.746094 199.4375 314.652344 199.320312 314.652344 C 199.203125 314.652344 199.109375 314.746094 199.109375 314.863281 C 199.109375 314.980469 199.203125 315.074219 199.320312 315.074219 C 199.4375 315.074219 199.53125 314.980469 199.53125 314.863281 Z M 199.53125 314.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.671875 316.050781 C 198.671875 315.933594 198.578125 315.839844 198.460938 315.839844 C 198.34375 315.839844 198.25 315.933594 198.25 316.050781 C 198.25 316.167969 198.34375 316.261719 198.460938 316.261719 C 198.578125 316.261719 198.671875 316.167969 198.671875 316.050781 Z M 198.671875 316.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.882812 319.910156 C 199.882812 319.792969 199.789062 319.699219 199.671875 319.699219 C 199.554688 319.699219 199.460938 319.792969 199.460938 319.910156 C 199.460938 320.027344 199.554688 320.121094 199.671875 320.121094 C 199.789062 320.121094 199.882812 320.027344 199.882812 319.910156 Z M 199.882812 319.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.351562 320.742188 C 202.351562 320.625 202.257812 320.53125 202.140625 320.53125 C 202.023438 320.53125 201.929688 320.625 201.929688 320.742188 C 201.929688 320.859375 202.023438 320.953125 202.140625 320.953125 C 202.257812 320.953125 202.351562 320.859375 202.351562 320.742188 Z M 202.351562 320.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.960938 317.933594 C 200.960938 317.816406 200.867188 317.722656 200.75 317.722656 C 200.632812 317.722656 200.539062 317.816406 200.539062 317.933594 C 200.539062 318.050781 200.632812 318.144531 200.75 318.144531 C 200.867188 318.144531 200.960938 318.050781 200.960938 317.933594 Z M 200.960938 317.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.585938 318 C 201.585938 317.882812 201.492188 317.789062 201.375 317.789062 C 201.257812 317.789062 201.164062 317.882812 201.164062 318 C 201.164062 318.117188 201.257812 318.210938 201.375 318.210938 C 201.492188 318.210938 201.585938 318.117188 201.585938 318 Z M 201.585938 318 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.992188 322.632812 C 198.992188 322.515625 198.898438 322.421875 198.78125 322.421875 C 198.664062 322.421875 198.570312 322.515625 198.570312 322.632812 C 198.570312 322.75 198.664062 322.84375 198.78125 322.84375 C 198.898438 322.84375 198.992188 322.75 198.992188 322.632812 Z M 198.992188 322.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.582031 320.320312 C 199.582031 320.203125 199.488281 320.109375 199.371094 320.109375 C 199.253906 320.109375 199.160156 320.203125 199.160156 320.320312 C 199.160156 320.4375 199.253906 320.53125 199.371094 320.53125 C 199.488281 320.53125 199.582031 320.4375 199.582031 320.320312 Z M 199.582031 320.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.632812 320.519531 C 200.632812 320.402344 200.539062 320.308594 200.421875 320.308594 C 200.304688 320.308594 200.210938 320.402344 200.210938 320.519531 C 200.210938 320.636719 200.304688 320.730469 200.421875 320.730469 C 200.539062 320.730469 200.632812 320.636719 200.632812 320.519531 Z M 200.632812 320.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.5 326.296875 C 202.5 326.179688 202.40625 326.085938 202.289062 326.085938 C 202.171875 326.085938 202.078125 326.179688 202.078125 326.296875 C 202.078125 326.414062 202.171875 326.507812 202.289062 326.507812 C 202.40625 326.507812 202.5 326.414062 202.5 326.296875 Z M 202.5 326.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.382812 329.84375 C 205.382812 329.726562 205.289062 329.632812 205.171875 329.632812 C 205.054688 329.632812 204.960938 329.726562 204.960938 329.84375 C 204.960938 329.960938 205.054688 330.054688 205.171875 330.054688 C 205.289062 330.054688 205.382812 329.960938 205.382812 329.84375 Z M 205.382812 329.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.355469 328.5 C 204.355469 328.382812 204.261719 328.289062 204.144531 328.289062 C 204.027344 328.289062 203.933594 328.382812 203.933594 328.5 C 203.933594 328.617188 204.027344 328.710938 204.144531 328.710938 C 204.261719 328.710938 204.355469 328.617188 204.355469 328.5 Z M 204.355469 328.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.667969 331.101562 C 203.667969 330.984375 203.574219 330.890625 203.457031 330.890625 C 203.339844 330.890625 203.246094 330.984375 203.246094 331.101562 C 203.246094 331.21875 203.339844 331.3125 203.457031 331.3125 C 203.574219 331.3125 203.667969 331.21875 203.667969 331.101562 Z M 203.667969 331.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.519531 327.925781 C 202.519531 327.808594 202.425781 327.714844 202.308594 327.714844 C 202.191406 327.714844 202.097656 327.808594 202.097656 327.925781 C 202.097656 328.042969 202.191406 328.136719 202.308594 328.136719 C 202.425781 328.136719 202.519531 328.042969 202.519531 327.925781 Z M 202.519531 327.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.757812 326.015625 C 198.757812 325.898438 198.664062 325.804688 198.546875 325.804688 C 198.429688 325.804688 198.335938 325.898438 198.335938 326.015625 C 198.335938 326.132812 198.429688 326.226562 198.546875 326.226562 C 198.664062 326.226562 198.757812 326.132812 198.757812 326.015625 Z M 198.757812 326.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.339844 325.960938 C 198.339844 325.84375 198.246094 325.75 198.128906 325.75 C 198.011719 325.75 197.917969 325.84375 197.917969 325.960938 C 197.917969 326.078125 198.011719 326.171875 198.128906 326.171875 C 198.246094 326.171875 198.339844 326.078125 198.339844 325.960938 Z M 198.339844 325.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.914062 324.402344 C 197.914062 324.285156 197.820312 324.191406 197.703125 324.191406 C 197.585938 324.191406 197.492188 324.285156 197.492188 324.402344 C 197.492188 324.519531 197.585938 324.613281 197.703125 324.613281 C 197.820312 324.613281 197.914062 324.519531 197.914062 324.402344 Z M 197.914062 324.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.460938 324.9375 C 194.460938 324.820312 194.367188 324.726562 194.25 324.726562 C 194.132812 324.726562 194.039062 324.820312 194.039062 324.9375 C 194.039062 325.054688 194.132812 325.148438 194.25 325.148438 C 194.367188 325.148438 194.460938 325.054688 194.460938 324.9375 Z M 194.460938 324.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.644531 327.699219 C 195.644531 327.582031 195.550781 327.488281 195.433594 327.488281 C 195.316406 327.488281 195.222656 327.582031 195.222656 327.699219 C 195.222656 327.816406 195.316406 327.910156 195.433594 327.910156 C 195.550781 327.910156 195.644531 327.816406 195.644531 327.699219 Z M 195.644531 327.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.28125 326.347656 C 192.28125 326.230469 192.1875 326.136719 192.070312 326.136719 C 191.953125 326.136719 191.859375 326.230469 191.859375 326.347656 C 191.859375 326.464844 191.953125 326.558594 192.070312 326.558594 C 192.1875 326.558594 192.28125 326.464844 192.28125 326.347656 Z M 192.28125 326.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.554688 324.710938 C 192.554688 324.59375 192.460938 324.5 192.34375 324.5 C 192.226562 324.5 192.132812 324.59375 192.132812 324.710938 C 192.132812 324.828125 192.226562 324.921875 192.34375 324.921875 C 192.460938 324.921875 192.554688 324.828125 192.554688 324.710938 Z M 192.554688 324.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.230469 326.585938 C 189.230469 326.46875 189.136719 326.375 189.019531 326.375 C 188.902344 326.375 188.808594 326.46875 188.808594 326.585938 C 188.808594 326.703125 188.902344 326.796875 189.019531 326.796875 C 189.136719 326.796875 189.230469 326.703125 189.230469 326.585938 Z M 189.230469 326.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.550781 326.835938 C 188.550781 326.71875 188.457031 326.625 188.339844 326.625 C 188.222656 326.625 188.128906 326.71875 188.128906 326.835938 C 188.128906 326.953125 188.222656 327.046875 188.339844 327.046875 C 188.457031 327.046875 188.550781 326.953125 188.550781 326.835938 Z M 188.550781 326.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.046875 324.742188 C 188.046875 324.625 187.953125 324.53125 187.835938 324.53125 C 187.71875 324.53125 187.625 324.625 187.625 324.742188 C 187.625 324.859375 187.71875 324.953125 187.835938 324.953125 C 187.953125 324.953125 188.046875 324.859375 188.046875 324.742188 Z M 188.046875 324.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.507812 323.84375 C 189.507812 323.726562 189.414062 323.632812 189.296875 323.632812 C 189.179688 323.632812 189.085938 323.726562 189.085938 323.84375 C 189.085938 323.960938 189.179688 324.054688 189.296875 324.054688 C 189.414062 324.054688 189.507812 323.960938 189.507812 323.84375 Z M 189.507812 323.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.59375 318.578125 C 185.59375 318.460938 185.5 318.367188 185.382812 318.367188 C 185.265625 318.367188 185.171875 318.460938 185.171875 318.578125 C 185.171875 318.695312 185.265625 318.789062 185.382812 318.789062 C 185.5 318.789062 185.59375 318.695312 185.59375 318.578125 Z M 185.59375 318.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.804688 317.367188 C 184.804688 317.25 184.710938 317.15625 184.59375 317.15625 C 184.476562 317.15625 184.382812 317.25 184.382812 317.367188 C 184.382812 317.484375 184.476562 317.578125 184.59375 317.578125 C 184.710938 317.578125 184.804688 317.484375 184.804688 317.367188 Z M 184.804688 317.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.359375 322.167969 C 180.359375 322.050781 180.265625 321.957031 180.148438 321.957031 C 180.03125 321.957031 179.9375 322.050781 179.9375 322.167969 C 179.9375 322.285156 180.03125 322.378906 180.148438 322.378906 C 180.265625 322.378906 180.359375 322.285156 180.359375 322.167969 Z M 180.359375 322.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.8125 320.832031 C 177.8125 320.714844 177.71875 320.621094 177.601562 320.621094 C 177.484375 320.621094 177.390625 320.714844 177.390625 320.832031 C 177.390625 320.949219 177.484375 321.042969 177.601562 321.042969 C 177.71875 321.042969 177.8125 320.949219 177.8125 320.832031 Z M 177.8125 320.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.921875 325.21875 C 179.921875 325.101562 179.828125 325.007812 179.710938 325.007812 C 179.59375 325.007812 179.5 325.101562 179.5 325.21875 C 179.5 325.335938 179.59375 325.429688 179.710938 325.429688 C 179.828125 325.429688 179.921875 325.335938 179.921875 325.21875 Z M 179.921875 325.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.878906 326.582031 C 179.878906 326.464844 179.785156 326.371094 179.667969 326.371094 C 179.550781 326.371094 179.457031 326.464844 179.457031 326.582031 C 179.457031 326.699219 179.550781 326.792969 179.667969 326.792969 C 179.785156 326.792969 179.878906 326.699219 179.878906 326.582031 Z M 179.878906 326.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.445312 324.789062 C 181.445312 324.671875 181.351562 324.578125 181.234375 324.578125 C 181.117188 324.578125 181.023438 324.671875 181.023438 324.789062 C 181.023438 324.90625 181.117188 325 181.234375 325 C 181.351562 325 181.445312 324.90625 181.445312 324.789062 Z M 181.445312 324.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.457031 324.148438 C 185.457031 324.03125 185.363281 323.9375 185.246094 323.9375 C 185.128906 323.9375 185.035156 324.03125 185.035156 324.148438 C 185.035156 324.265625 185.128906 324.359375 185.246094 324.359375 C 185.363281 324.359375 185.457031 324.265625 185.457031 324.148438 Z M 185.457031 324.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.761719 321.507812 C 183.761719 321.390625 183.667969 321.296875 183.550781 321.296875 C 183.433594 321.296875 183.339844 321.390625 183.339844 321.507812 C 183.339844 321.625 183.433594 321.71875 183.550781 321.71875 C 183.667969 321.71875 183.761719 321.625 183.761719 321.507812 Z M 183.761719 321.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.710938 323.296875 C 184.710938 323.179688 184.617188 323.085938 184.5 323.085938 C 184.382812 323.085938 184.289062 323.179688 184.289062 323.296875 C 184.289062 323.414062 184.382812 323.507812 184.5 323.507812 C 184.617188 323.507812 184.710938 323.414062 184.710938 323.296875 Z M 184.710938 323.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.988281 325.589844 C 183.988281 325.472656 183.894531 325.378906 183.777344 325.378906 C 183.660156 325.378906 183.566406 325.472656 183.566406 325.589844 C 183.566406 325.707031 183.660156 325.800781 183.777344 325.800781 C 183.894531 325.800781 183.988281 325.707031 183.988281 325.589844 Z M 183.988281 325.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.90625 325.144531 C 186.90625 325.027344 186.8125 324.933594 186.695312 324.933594 C 186.578125 324.933594 186.484375 325.027344 186.484375 325.144531 C 186.484375 325.261719 186.578125 325.355469 186.695312 325.355469 C 186.8125 325.355469 186.90625 325.261719 186.90625 325.144531 Z M 186.90625 325.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.070312 325.042969 C 186.070312 324.925781 185.976562 324.832031 185.859375 324.832031 C 185.742188 324.832031 185.648438 324.925781 185.648438 325.042969 C 185.648438 325.160156 185.742188 325.253906 185.859375 325.253906 C 185.976562 325.253906 186.070312 325.160156 186.070312 325.042969 Z M 186.070312 325.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.175781 321.988281 C 188.175781 321.871094 188.082031 321.777344 187.964844 321.777344 C 187.847656 321.777344 187.753906 321.871094 187.753906 321.988281 C 187.753906 322.105469 187.847656 322.199219 187.964844 322.199219 C 188.082031 322.199219 188.175781 322.105469 188.175781 321.988281 Z M 188.175781 321.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.199219 323.582031 C 187.199219 323.464844 187.105469 323.371094 186.988281 323.371094 C 186.871094 323.371094 186.777344 323.464844 186.777344 323.582031 C 186.777344 323.699219 186.871094 323.792969 186.988281 323.792969 C 187.105469 323.792969 187.199219 323.699219 187.199219 323.582031 Z M 187.199219 323.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.78125 326.316406 C 186.78125 326.199219 186.6875 326.105469 186.570312 326.105469 C 186.453125 326.105469 186.359375 326.199219 186.359375 326.316406 C 186.359375 326.433594 186.453125 326.527344 186.570312 326.527344 C 186.6875 326.527344 186.78125 326.433594 186.78125 326.316406 Z M 186.78125 326.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.003906 325.945312 C 185.003906 325.828125 184.910156 325.734375 184.792969 325.734375 C 184.675781 325.734375 184.582031 325.828125 184.582031 325.945312 C 184.582031 326.0625 184.675781 326.15625 184.792969 326.15625 C 184.910156 326.15625 185.003906 326.0625 185.003906 325.945312 Z M 185.003906 325.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.964844 330.007812 C 189.964844 329.890625 189.871094 329.796875 189.753906 329.796875 C 189.636719 329.796875 189.542969 329.890625 189.542969 330.007812 C 189.542969 330.125 189.636719 330.21875 189.753906 330.21875 C 189.871094 330.21875 189.964844 330.125 189.964844 330.007812 Z M 189.964844 330.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.382812 327.914062 C 192.382812 327.796875 192.289062 327.703125 192.171875 327.703125 C 192.054688 327.703125 191.960938 327.796875 191.960938 327.914062 C 191.960938 328.03125 192.054688 328.125 192.171875 328.125 C 192.289062 328.125 192.382812 328.03125 192.382812 327.914062 Z M 192.382812 327.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.441406 327.027344 C 189.441406 326.910156 189.347656 326.816406 189.230469 326.816406 C 189.113281 326.816406 189.019531 326.910156 189.019531 327.027344 C 189.019531 327.144531 189.113281 327.238281 189.230469 327.238281 C 189.347656 327.238281 189.441406 327.144531 189.441406 327.027344 Z M 189.441406 327.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.378906 326.273438 C 187.378906 326.15625 187.285156 326.0625 187.167969 326.0625 C 187.050781 326.0625 186.957031 326.15625 186.957031 326.273438 C 186.957031 326.390625 187.050781 326.484375 187.167969 326.484375 C 187.285156 326.484375 187.378906 326.390625 187.378906 326.273438 Z M 187.378906 326.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.082031 325.980469 C 188.082031 325.863281 187.988281 325.769531 187.871094 325.769531 C 187.753906 325.769531 187.660156 325.863281 187.660156 325.980469 C 187.660156 326.097656 187.753906 326.191406 187.871094 326.191406 C 187.988281 326.191406 188.082031 326.097656 188.082031 325.980469 Z M 188.082031 325.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.578125 328.375 C 186.578125 328.257812 186.484375 328.164062 186.367188 328.164062 C 186.25 328.164062 186.15625 328.257812 186.15625 328.375 C 186.15625 328.492188 186.25 328.585938 186.367188 328.585938 C 186.484375 328.585938 186.578125 328.492188 186.578125 328.375 Z M 186.578125 328.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.5625 327.105469 C 185.5625 326.988281 185.46875 326.894531 185.351562 326.894531 C 185.234375 326.894531 185.140625 326.988281 185.140625 327.105469 C 185.140625 327.222656 185.234375 327.316406 185.351562 327.316406 C 185.46875 327.316406 185.5625 327.222656 185.5625 327.105469 Z M 185.5625 327.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.148438 327.617188 C 186.148438 327.5 186.054688 327.40625 185.9375 327.40625 C 185.820312 327.40625 185.726562 327.5 185.726562 327.617188 C 185.726562 327.734375 185.820312 327.828125 185.9375 327.828125 C 186.054688 327.828125 186.148438 327.734375 186.148438 327.617188 Z M 186.148438 327.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.101562 329.578125 C 187.101562 329.460938 187.007812 329.367188 186.890625 329.367188 C 186.773438 329.367188 186.679688 329.460938 186.679688 329.578125 C 186.679688 329.695312 186.773438 329.789062 186.890625 329.789062 C 187.007812 329.789062 187.101562 329.695312 187.101562 329.578125 Z M 187.101562 329.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.695312 332.085938 C 183.695312 331.96875 183.601562 331.875 183.484375 331.875 C 183.367188 331.875 183.273438 331.96875 183.273438 332.085938 C 183.273438 332.203125 183.367188 332.296875 183.484375 332.296875 C 183.601562 332.296875 183.695312 332.203125 183.695312 332.085938 Z M 183.695312 332.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.910156 330.4375 C 184.910156 330.320312 184.816406 330.226562 184.699219 330.226562 C 184.582031 330.226562 184.488281 330.320312 184.488281 330.4375 C 184.488281 330.554688 184.582031 330.648438 184.699219 330.648438 C 184.816406 330.648438 184.910156 330.554688 184.910156 330.4375 Z M 184.910156 330.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.308594 328.894531 C 186.308594 328.777344 186.214844 328.683594 186.097656 328.683594 C 185.980469 328.683594 185.886719 328.777344 185.886719 328.894531 C 185.886719 329.011719 185.980469 329.105469 186.097656 329.105469 C 186.214844 329.105469 186.308594 329.011719 186.308594 328.894531 Z M 186.308594 328.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.570312 327.082031 C 183.570312 326.964844 183.476562 326.871094 183.359375 326.871094 C 183.242188 326.871094 183.148438 326.964844 183.148438 327.082031 C 183.148438 327.199219 183.242188 327.292969 183.359375 327.292969 C 183.476562 327.292969 183.570312 327.199219 183.570312 327.082031 Z M 183.570312 327.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.011719 327.011719 C 184.011719 326.894531 183.917969 326.800781 183.800781 326.800781 C 183.683594 326.800781 183.589844 326.894531 183.589844 327.011719 C 183.589844 327.128906 183.683594 327.222656 183.800781 327.222656 C 183.917969 327.222656 184.011719 327.128906 184.011719 327.011719 Z M 184.011719 327.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.460938 326.457031 C 180.460938 326.339844 180.367188 326.246094 180.25 326.246094 C 180.132812 326.246094 180.039062 326.339844 180.039062 326.457031 C 180.039062 326.574219 180.132812 326.667969 180.25 326.667969 C 180.367188 326.667969 180.460938 326.574219 180.460938 326.457031 Z M 180.460938 326.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.53125 327.964844 C 181.53125 327.847656 181.4375 327.753906 181.320312 327.753906 C 181.203125 327.753906 181.109375 327.847656 181.109375 327.964844 C 181.109375 328.082031 181.203125 328.175781 181.320312 328.175781 C 181.4375 328.175781 181.53125 328.082031 181.53125 327.964844 Z M 181.53125 327.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.230469 328.082031 C 181.230469 327.964844 181.136719 327.871094 181.019531 327.871094 C 180.902344 327.871094 180.808594 327.964844 180.808594 328.082031 C 180.808594 328.199219 180.902344 328.292969 181.019531 328.292969 C 181.136719 328.292969 181.230469 328.199219 181.230469 328.082031 Z M 181.230469 328.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.730469 327.253906 C 180.730469 327.136719 180.636719 327.042969 180.519531 327.042969 C 180.402344 327.042969 180.308594 327.136719 180.308594 327.253906 C 180.308594 327.371094 180.402344 327.464844 180.519531 327.464844 C 180.636719 327.464844 180.730469 327.371094 180.730469 327.253906 Z M 180.730469 327.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.371094 324.382812 C 179.371094 324.265625 179.277344 324.171875 179.160156 324.171875 C 179.042969 324.171875 178.949219 324.265625 178.949219 324.382812 C 178.949219 324.5 179.042969 324.59375 179.160156 324.59375 C 179.277344 324.59375 179.371094 324.5 179.371094 324.382812 Z M 179.371094 324.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.902344 321.863281 C 179.902344 321.746094 179.808594 321.652344 179.691406 321.652344 C 179.574219 321.652344 179.480469 321.746094 179.480469 321.863281 C 179.480469 321.980469 179.574219 322.074219 179.691406 322.074219 C 179.808594 322.074219 179.902344 321.980469 179.902344 321.863281 Z M 179.902344 321.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.730469 320.722656 C 177.730469 320.605469 177.636719 320.511719 177.519531 320.511719 C 177.402344 320.511719 177.308594 320.605469 177.308594 320.722656 C 177.308594 320.839844 177.402344 320.933594 177.519531 320.933594 C 177.636719 320.933594 177.730469 320.839844 177.730469 320.722656 Z M 177.730469 320.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.75 324.882812 C 176.75 324.765625 176.65625 324.671875 176.539062 324.671875 C 176.421875 324.671875 176.328125 324.765625 176.328125 324.882812 C 176.328125 325 176.421875 325.09375 176.539062 325.09375 C 176.65625 325.09375 176.75 325 176.75 324.882812 Z M 176.75 324.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.699219 322.746094 C 175.699219 322.628906 175.605469 322.535156 175.488281 322.535156 C 175.371094 322.535156 175.277344 322.628906 175.277344 322.746094 C 175.277344 322.863281 175.371094 322.957031 175.488281 322.957031 C 175.605469 322.957031 175.699219 322.863281 175.699219 322.746094 Z M 175.699219 322.746094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.457031 326.234375 C 177.457031 326.117188 177.363281 326.023438 177.246094 326.023438 C 177.128906 326.023438 177.035156 326.117188 177.035156 326.234375 C 177.035156 326.351562 177.128906 326.445312 177.246094 326.445312 C 177.363281 326.445312 177.457031 326.351562 177.457031 326.234375 Z M 177.457031 326.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.007812 328.726562 C 178.007812 328.609375 177.914062 328.515625 177.796875 328.515625 C 177.679688 328.515625 177.585938 328.609375 177.585938 328.726562 C 177.585938 328.84375 177.679688 328.9375 177.796875 328.9375 C 177.914062 328.9375 178.007812 328.84375 178.007812 328.726562 Z M 178.007812 328.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.613281 326.09375 C 180.613281 325.976562 180.519531 325.882812 180.402344 325.882812 C 180.285156 325.882812 180.191406 325.976562 180.191406 326.09375 C 180.191406 326.210938 180.285156 326.304688 180.402344 326.304688 C 180.519531 326.304688 180.613281 326.210938 180.613281 326.09375 Z M 180.613281 326.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.972656 327.078125 C 180.972656 326.960938 180.878906 326.867188 180.761719 326.867188 C 180.644531 326.867188 180.550781 326.960938 180.550781 327.078125 C 180.550781 327.195312 180.644531 327.289062 180.761719 327.289062 C 180.878906 327.289062 180.972656 327.195312 180.972656 327.078125 Z M 180.972656 327.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.546875 326.84375 C 179.546875 326.726562 179.453125 326.632812 179.335938 326.632812 C 179.21875 326.632812 179.125 326.726562 179.125 326.84375 C 179.125 326.960938 179.21875 327.054688 179.335938 327.054688 C 179.453125 327.054688 179.546875 326.960938 179.546875 326.84375 Z M 179.546875 326.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.363281 324.277344 C 180.363281 324.160156 180.269531 324.066406 180.152344 324.066406 C 180.035156 324.066406 179.941406 324.160156 179.941406 324.277344 C 179.941406 324.394531 180.035156 324.488281 180.152344 324.488281 C 180.269531 324.488281 180.363281 324.394531 180.363281 324.277344 Z M 180.363281 324.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.050781 324.558594 C 180.050781 324.441406 179.957031 324.347656 179.839844 324.347656 C 179.722656 324.347656 179.628906 324.441406 179.628906 324.558594 C 179.628906 324.675781 179.722656 324.769531 179.839844 324.769531 C 179.957031 324.769531 180.050781 324.675781 180.050781 324.558594 Z M 180.050781 324.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.890625 324.847656 C 177.890625 324.730469 177.796875 324.636719 177.679688 324.636719 C 177.5625 324.636719 177.46875 324.730469 177.46875 324.847656 C 177.46875 324.964844 177.5625 325.058594 177.679688 325.058594 C 177.796875 325.058594 177.890625 324.964844 177.890625 324.847656 Z M 177.890625 324.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.691406 322.546875 C 180.691406 322.429688 180.597656 322.335938 180.480469 322.335938 C 180.363281 322.335938 180.269531 322.429688 180.269531 322.546875 C 180.269531 322.664062 180.363281 322.757812 180.480469 322.757812 C 180.597656 322.757812 180.691406 322.664062 180.691406 322.546875 Z M 180.691406 322.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.035156 324.164062 C 176.035156 324.046875 175.941406 323.953125 175.824219 323.953125 C 175.707031 323.953125 175.613281 324.046875 175.613281 324.164062 C 175.613281 324.28125 175.707031 324.375 175.824219 324.375 C 175.941406 324.375 176.035156 324.28125 176.035156 324.164062 Z M 176.035156 324.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.847656 325.363281 C 173.847656 325.246094 173.753906 325.152344 173.636719 325.152344 C 173.519531 325.152344 173.425781 325.246094 173.425781 325.363281 C 173.425781 325.480469 173.519531 325.574219 173.636719 325.574219 C 173.753906 325.574219 173.847656 325.480469 173.847656 325.363281 Z M 173.847656 325.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.386719 325.199219 C 173.386719 325.082031 173.292969 324.988281 173.175781 324.988281 C 173.058594 324.988281 172.964844 325.082031 172.964844 325.199219 C 172.964844 325.316406 173.058594 325.410156 173.175781 325.410156 C 173.292969 325.410156 173.386719 325.316406 173.386719 325.199219 Z M 173.386719 325.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.363281 325.527344 C 175.363281 325.410156 175.269531 325.316406 175.152344 325.316406 C 175.035156 325.316406 174.941406 325.410156 174.941406 325.527344 C 174.941406 325.644531 175.035156 325.738281 175.152344 325.738281 C 175.269531 325.738281 175.363281 325.644531 175.363281 325.527344 Z M 175.363281 325.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.925781 323.050781 C 175.925781 322.933594 175.832031 322.839844 175.714844 322.839844 C 175.597656 322.839844 175.503906 322.933594 175.503906 323.050781 C 175.503906 323.167969 175.597656 323.261719 175.714844 323.261719 C 175.832031 323.261719 175.925781 323.167969 175.925781 323.050781 Z M 175.925781 323.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.160156 324.535156 C 177.160156 324.417969 177.066406 324.324219 176.949219 324.324219 C 176.832031 324.324219 176.738281 324.417969 176.738281 324.535156 C 176.738281 324.652344 176.832031 324.746094 176.949219 324.746094 C 177.066406 324.746094 177.160156 324.652344 177.160156 324.535156 Z M 177.160156 324.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.703125 326.25 C 178.703125 326.132812 178.609375 326.039062 178.492188 326.039062 C 178.375 326.039062 178.28125 326.132812 178.28125 326.25 C 178.28125 326.367188 178.375 326.460938 178.492188 326.460938 C 178.609375 326.460938 178.703125 326.367188 178.703125 326.25 Z M 178.703125 326.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.476562 326.441406 C 173.476562 326.324219 173.382812 326.230469 173.265625 326.230469 C 173.148438 326.230469 173.054688 326.324219 173.054688 326.441406 C 173.054688 326.558594 173.148438 326.652344 173.265625 326.652344 C 173.382812 326.652344 173.476562 326.558594 173.476562 326.441406 Z M 173.476562 326.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.144531 325.691406 C 173.144531 325.574219 173.050781 325.480469 172.933594 325.480469 C 172.816406 325.480469 172.722656 325.574219 172.722656 325.691406 C 172.722656 325.808594 172.816406 325.902344 172.933594 325.902344 C 173.050781 325.902344 173.144531 325.808594 173.144531 325.691406 Z M 173.144531 325.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.605469 331.242188 C 171.605469 331.125 171.511719 331.03125 171.394531 331.03125 C 171.277344 331.03125 171.183594 331.125 171.183594 331.242188 C 171.183594 331.359375 171.277344 331.453125 171.394531 331.453125 C 171.511719 331.453125 171.605469 331.359375 171.605469 331.242188 Z M 171.605469 331.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.59375 330.980469 C 170.59375 330.863281 170.5 330.769531 170.382812 330.769531 C 170.265625 330.769531 170.171875 330.863281 170.171875 330.980469 C 170.171875 331.097656 170.265625 331.191406 170.382812 331.191406 C 170.5 331.191406 170.59375 331.097656 170.59375 330.980469 Z M 170.59375 330.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.585938 334.578125 C 169.585938 334.460938 169.492188 334.367188 169.375 334.367188 C 169.257812 334.367188 169.164062 334.460938 169.164062 334.578125 C 169.164062 334.695312 169.257812 334.789062 169.375 334.789062 C 169.492188 334.789062 169.585938 334.695312 169.585938 334.578125 Z M 169.585938 334.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.480469 335.023438 C 168.480469 334.90625 168.386719 334.8125 168.269531 334.8125 C 168.152344 334.8125 168.058594 334.90625 168.058594 335.023438 C 168.058594 335.140625 168.152344 335.234375 168.269531 335.234375 C 168.386719 335.234375 168.480469 335.140625 168.480469 335.023438 Z M 168.480469 335.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.859375 334.003906 C 166.859375 333.886719 166.765625 333.792969 166.648438 333.792969 C 166.53125 333.792969 166.4375 333.886719 166.4375 334.003906 C 166.4375 334.121094 166.53125 334.214844 166.648438 334.214844 C 166.765625 334.214844 166.859375 334.121094 166.859375 334.003906 Z M 166.859375 334.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.332031 332.621094 C 169.332031 332.503906 169.238281 332.410156 169.121094 332.410156 C 169.003906 332.410156 168.910156 332.503906 168.910156 332.621094 C 168.910156 332.738281 169.003906 332.832031 169.121094 332.832031 C 169.238281 332.832031 169.332031 332.738281 169.332031 332.621094 Z M 169.332031 332.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.703125 333.140625 C 173.703125 333.023438 173.609375 332.929688 173.492188 332.929688 C 173.375 332.929688 173.28125 333.023438 173.28125 333.140625 C 173.28125 333.257812 173.375 333.351562 173.492188 333.351562 C 173.609375 333.351562 173.703125 333.257812 173.703125 333.140625 Z M 173.703125 333.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.929688 337.65625 C 175.929688 337.539062 175.835938 337.445312 175.71875 337.445312 C 175.601562 337.445312 175.507812 337.539062 175.507812 337.65625 C 175.507812 337.773438 175.601562 337.867188 175.71875 337.867188 C 175.835938 337.867188 175.929688 337.773438 175.929688 337.65625 Z M 175.929688 337.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.785156 339.855469 C 174.785156 339.738281 174.691406 339.644531 174.574219 339.644531 C 174.457031 339.644531 174.363281 339.738281 174.363281 339.855469 C 174.363281 339.972656 174.457031 340.066406 174.574219 340.066406 C 174.691406 340.066406 174.785156 339.972656 174.785156 339.855469 Z M 174.785156 339.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.234375 343.226562 C 174.234375 343.109375 174.140625 343.015625 174.023438 343.015625 C 173.90625 343.015625 173.8125 343.109375 173.8125 343.226562 C 173.8125 343.34375 173.90625 343.4375 174.023438 343.4375 C 174.140625 343.4375 174.234375 343.34375 174.234375 343.226562 Z M 174.234375 343.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.082031 341.449219 C 172.082031 341.332031 171.988281 341.238281 171.871094 341.238281 C 171.753906 341.238281 171.660156 341.332031 171.660156 341.449219 C 171.660156 341.566406 171.753906 341.660156 171.871094 341.660156 C 171.988281 341.660156 172.082031 341.566406 172.082031 341.449219 Z M 172.082031 341.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.167969 336.171875 C 173.167969 336.054688 173.074219 335.960938 172.957031 335.960938 C 172.839844 335.960938 172.746094 336.054688 172.746094 336.171875 C 172.746094 336.289062 172.839844 336.382812 172.957031 336.382812 C 173.074219 336.382812 173.167969 336.289062 173.167969 336.171875 Z M 173.167969 336.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.589844 335.261719 C 169.589844 335.144531 169.496094 335.050781 169.378906 335.050781 C 169.261719 335.050781 169.167969 335.144531 169.167969 335.261719 C 169.167969 335.378906 169.261719 335.472656 169.378906 335.472656 C 169.496094 335.472656 169.589844 335.378906 169.589844 335.261719 Z M 169.589844 335.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.390625 331.617188 C 171.390625 331.5 171.296875 331.40625 171.179688 331.40625 C 171.0625 331.40625 170.96875 331.5 170.96875 331.617188 C 170.96875 331.734375 171.0625 331.828125 171.179688 331.828125 C 171.296875 331.828125 171.390625 331.734375 171.390625 331.617188 Z M 171.390625 331.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.078125 333.375 C 174.078125 333.257812 173.984375 333.164062 173.867188 333.164062 C 173.75 333.164062 173.65625 333.257812 173.65625 333.375 C 173.65625 333.492188 173.75 333.585938 173.867188 333.585938 C 173.984375 333.585938 174.078125 333.492188 174.078125 333.375 Z M 174.078125 333.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.699219 331.851562 C 172.699219 331.734375 172.605469 331.640625 172.488281 331.640625 C 172.371094 331.640625 172.277344 331.734375 172.277344 331.851562 C 172.277344 331.96875 172.371094 332.0625 172.488281 332.0625 C 172.605469 332.0625 172.699219 331.96875 172.699219 331.851562 Z M 172.699219 331.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.507812 327.34375 C 172.507812 327.226562 172.414062 327.132812 172.296875 327.132812 C 172.179688 327.132812 172.085938 327.226562 172.085938 327.34375 C 172.085938 327.460938 172.179688 327.554688 172.296875 327.554688 C 172.414062 327.554688 172.507812 327.460938 172.507812 327.34375 Z M 172.507812 327.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.25 326.699219 C 170.25 326.582031 170.15625 326.488281 170.039062 326.488281 C 169.921875 326.488281 169.828125 326.582031 169.828125 326.699219 C 169.828125 326.816406 169.921875 326.910156 170.039062 326.910156 C 170.15625 326.910156 170.25 326.816406 170.25 326.699219 Z M 170.25 326.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.101562 329.15625 C 172.101562 329.039062 172.007812 328.945312 171.890625 328.945312 C 171.773438 328.945312 171.679688 329.039062 171.679688 329.15625 C 171.679688 329.273438 171.773438 329.367188 171.890625 329.367188 C 172.007812 329.367188 172.101562 329.273438 172.101562 329.15625 Z M 172.101562 329.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.917969 327.613281 C 174.917969 327.496094 174.824219 327.402344 174.707031 327.402344 C 174.589844 327.402344 174.496094 327.496094 174.496094 327.613281 C 174.496094 327.730469 174.589844 327.824219 174.707031 327.824219 C 174.824219 327.824219 174.917969 327.730469 174.917969 327.613281 Z M 174.917969 327.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.855469 326.332031 C 173.855469 326.214844 173.761719 326.121094 173.644531 326.121094 C 173.527344 326.121094 173.433594 326.214844 173.433594 326.332031 C 173.433594 326.449219 173.527344 326.542969 173.644531 326.542969 C 173.761719 326.542969 173.855469 326.449219 173.855469 326.332031 Z M 173.855469 326.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.410156 330.027344 C 170.410156 329.910156 170.316406 329.816406 170.199219 329.816406 C 170.082031 329.816406 169.988281 329.910156 169.988281 330.027344 C 169.988281 330.144531 170.082031 330.238281 170.199219 330.238281 C 170.316406 330.238281 170.410156 330.144531 170.410156 330.027344 Z M 170.410156 330.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.894531 330.203125 C 168.894531 330.085938 168.800781 329.992188 168.683594 329.992188 C 168.566406 329.992188 168.472656 330.085938 168.472656 330.203125 C 168.472656 330.320312 168.566406 330.414062 168.683594 330.414062 C 168.800781 330.414062 168.894531 330.320312 168.894531 330.203125 Z M 168.894531 330.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.777344 330.402344 C 166.777344 330.285156 166.683594 330.191406 166.566406 330.191406 C 166.449219 330.191406 166.355469 330.285156 166.355469 330.402344 C 166.355469 330.519531 166.449219 330.613281 166.566406 330.613281 C 166.683594 330.613281 166.777344 330.519531 166.777344 330.402344 Z M 166.777344 330.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.777344 334.257812 C 166.777344 334.140625 166.683594 334.046875 166.566406 334.046875 C 166.449219 334.046875 166.355469 334.140625 166.355469 334.257812 C 166.355469 334.375 166.449219 334.46875 166.566406 334.46875 C 166.683594 334.46875 166.777344 334.375 166.777344 334.257812 Z M 166.777344 334.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.34375 336.1875 C 164.34375 336.070312 164.25 335.976562 164.132812 335.976562 C 164.015625 335.976562 163.921875 336.070312 163.921875 336.1875 C 163.921875 336.304688 164.015625 336.398438 164.132812 336.398438 C 164.25 336.398438 164.34375 336.304688 164.34375 336.1875 Z M 164.34375 336.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.921875 339.546875 C 166.921875 339.429688 166.828125 339.335938 166.710938 339.335938 C 166.59375 339.335938 166.5 339.429688 166.5 339.546875 C 166.5 339.664062 166.59375 339.757812 166.710938 339.757812 C 166.828125 339.757812 166.921875 339.664062 166.921875 339.546875 Z M 166.921875 339.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.945312 338.304688 C 166.945312 338.1875 166.851562 338.09375 166.734375 338.09375 C 166.617188 338.09375 166.523438 338.1875 166.523438 338.304688 C 166.523438 338.421875 166.617188 338.515625 166.734375 338.515625 C 166.851562 338.515625 166.945312 338.421875 166.945312 338.304688 Z M 166.945312 338.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.25 338.308594 C 168.25 338.191406 168.15625 338.097656 168.039062 338.097656 C 167.921875 338.097656 167.828125 338.191406 167.828125 338.308594 C 167.828125 338.425781 167.921875 338.519531 168.039062 338.519531 C 168.15625 338.519531 168.25 338.425781 168.25 338.308594 Z M 168.25 338.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.441406 340.609375 C 168.441406 340.492188 168.347656 340.398438 168.230469 340.398438 C 168.113281 340.398438 168.019531 340.492188 168.019531 340.609375 C 168.019531 340.726562 168.113281 340.820312 168.230469 340.820312 C 168.347656 340.820312 168.441406 340.726562 168.441406 340.609375 Z M 168.441406 340.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.019531 339.472656 C 173.019531 339.355469 172.925781 339.261719 172.808594 339.261719 C 172.691406 339.261719 172.597656 339.355469 172.597656 339.472656 C 172.597656 339.589844 172.691406 339.683594 172.808594 339.683594 C 172.925781 339.683594 173.019531 339.589844 173.019531 339.472656 Z M 173.019531 339.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.480469 340.445312 C 169.480469 340.328125 169.386719 340.234375 169.269531 340.234375 C 169.152344 340.234375 169.058594 340.328125 169.058594 340.445312 C 169.058594 340.5625 169.152344 340.65625 169.269531 340.65625 C 169.386719 340.65625 169.480469 340.5625 169.480469 340.445312 Z M 169.480469 340.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.75 338.605469 C 169.75 338.488281 169.65625 338.394531 169.539062 338.394531 C 169.421875 338.394531 169.328125 338.488281 169.328125 338.605469 C 169.328125 338.722656 169.421875 338.816406 169.539062 338.816406 C 169.65625 338.816406 169.75 338.722656 169.75 338.605469 Z M 169.75 338.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.261719 337.207031 C 167.261719 337.089844 167.167969 336.996094 167.050781 336.996094 C 166.933594 336.996094 166.839844 337.089844 166.839844 337.207031 C 166.839844 337.324219 166.933594 337.417969 167.050781 337.417969 C 167.167969 337.417969 167.261719 337.324219 167.261719 337.207031 Z M 167.261719 337.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.992188 339.257812 C 166.992188 339.140625 166.898438 339.046875 166.78125 339.046875 C 166.664062 339.046875 166.570312 339.140625 166.570312 339.257812 C 166.570312 339.375 166.664062 339.46875 166.78125 339.46875 C 166.898438 339.46875 166.992188 339.375 166.992188 339.257812 Z M 166.992188 339.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.496094 339.382812 C 169.496094 339.265625 169.402344 339.171875 169.285156 339.171875 C 169.167969 339.171875 169.074219 339.265625 169.074219 339.382812 C 169.074219 339.5 169.167969 339.59375 169.285156 339.59375 C 169.402344 339.59375 169.496094 339.5 169.496094 339.382812 Z M 169.496094 339.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.269531 340.890625 C 169.269531 340.773438 169.175781 340.679688 169.058594 340.679688 C 168.941406 340.679688 168.847656 340.773438 168.847656 340.890625 C 168.847656 341.007812 168.941406 341.101562 169.058594 341.101562 C 169.175781 341.101562 169.269531 341.007812 169.269531 340.890625 Z M 169.269531 340.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.640625 339.246094 C 167.640625 339.128906 167.546875 339.035156 167.429688 339.035156 C 167.3125 339.035156 167.21875 339.128906 167.21875 339.246094 C 167.21875 339.363281 167.3125 339.457031 167.429688 339.457031 C 167.546875 339.457031 167.640625 339.363281 167.640625 339.246094 Z M 167.640625 339.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.359375 335.332031 C 166.359375 335.214844 166.265625 335.121094 166.148438 335.121094 C 166.03125 335.121094 165.9375 335.214844 165.9375 335.332031 C 165.9375 335.449219 166.03125 335.542969 166.148438 335.542969 C 166.265625 335.542969 166.359375 335.449219 166.359375 335.332031 Z M 166.359375 335.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.589844 335.214844 C 165.589844 335.097656 165.496094 335.003906 165.378906 335.003906 C 165.261719 335.003906 165.167969 335.097656 165.167969 335.214844 C 165.167969 335.332031 165.261719 335.425781 165.378906 335.425781 C 165.496094 335.425781 165.589844 335.332031 165.589844 335.214844 Z M 165.589844 335.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.230469 335.957031 C 165.230469 335.839844 165.136719 335.746094 165.019531 335.746094 C 164.902344 335.746094 164.808594 335.839844 164.808594 335.957031 C 164.808594 336.074219 164.902344 336.167969 165.019531 336.167969 C 165.136719 336.167969 165.230469 336.074219 165.230469 335.957031 Z M 165.230469 335.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.058594 333.835938 C 162.058594 333.71875 161.964844 333.625 161.847656 333.625 C 161.730469 333.625 161.636719 333.71875 161.636719 333.835938 C 161.636719 333.953125 161.730469 334.046875 161.847656 334.046875 C 161.964844 334.046875 162.058594 333.953125 162.058594 333.835938 Z M 162.058594 333.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.652344 332.320312 C 163.652344 332.203125 163.558594 332.109375 163.441406 332.109375 C 163.324219 332.109375 163.230469 332.203125 163.230469 332.320312 C 163.230469 332.4375 163.324219 332.53125 163.441406 332.53125 C 163.558594 332.53125 163.652344 332.4375 163.652344 332.320312 Z M 163.652344 332.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.644531 330.917969 C 164.644531 330.800781 164.550781 330.707031 164.433594 330.707031 C 164.316406 330.707031 164.222656 330.800781 164.222656 330.917969 C 164.222656 331.035156 164.316406 331.128906 164.433594 331.128906 C 164.550781 331.128906 164.644531 331.035156 164.644531 330.917969 Z M 164.644531 330.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.042969 337.234375 C 169.042969 337.117188 168.949219 337.023438 168.832031 337.023438 C 168.714844 337.023438 168.621094 337.117188 168.621094 337.234375 C 168.621094 337.351562 168.714844 337.445312 168.832031 337.445312 C 168.949219 337.445312 169.042969 337.351562 169.042969 337.234375 Z M 169.042969 337.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.007812 340.28125 C 170.007812 340.164062 169.914062 340.070312 169.796875 340.070312 C 169.679688 340.070312 169.585938 340.164062 169.585938 340.28125 C 169.585938 340.398438 169.679688 340.492188 169.796875 340.492188 C 169.914062 340.492188 170.007812 340.398438 170.007812 340.28125 Z M 170.007812 340.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.441406 340.957031 C 164.441406 340.839844 164.347656 340.746094 164.230469 340.746094 C 164.113281 340.746094 164.019531 340.839844 164.019531 340.957031 C 164.019531 341.074219 164.113281 341.167969 164.230469 341.167969 C 164.347656 341.167969 164.441406 341.074219 164.441406 340.957031 Z M 164.441406 340.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.007812 337.664062 C 166.007812 337.546875 165.914062 337.453125 165.796875 337.453125 C 165.679688 337.453125 165.585938 337.546875 165.585938 337.664062 C 165.585938 337.78125 165.679688 337.875 165.796875 337.875 C 165.914062 337.875 166.007812 337.78125 166.007812 337.664062 Z M 166.007812 337.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.519531 342.402344 C 170.519531 342.285156 170.425781 342.191406 170.308594 342.191406 C 170.191406 342.191406 170.097656 342.285156 170.097656 342.402344 C 170.097656 342.519531 170.191406 342.613281 170.308594 342.613281 C 170.425781 342.613281 170.519531 342.519531 170.519531 342.402344 Z M 170.519531 342.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.019531 340.738281 C 169.019531 340.621094 168.925781 340.527344 168.808594 340.527344 C 168.691406 340.527344 168.597656 340.621094 168.597656 340.738281 C 168.597656 340.855469 168.691406 340.949219 168.808594 340.949219 C 168.925781 340.949219 169.019531 340.855469 169.019531 340.738281 Z M 169.019531 340.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.179688 339.546875 C 172.179688 339.429688 172.085938 339.335938 171.96875 339.335938 C 171.851562 339.335938 171.757812 339.429688 171.757812 339.546875 C 171.757812 339.664062 171.851562 339.757812 171.96875 339.757812 C 172.085938 339.757812 172.179688 339.664062 172.179688 339.546875 Z M 172.179688 339.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172 339.214844 C 172 339.097656 171.90625 339.003906 171.789062 339.003906 C 171.671875 339.003906 171.578125 339.097656 171.578125 339.214844 C 171.578125 339.332031 171.671875 339.425781 171.789062 339.425781 C 171.90625 339.425781 172 339.332031 172 339.214844 Z M 172 339.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.914062 338.546875 C 171.914062 338.429688 171.820312 338.335938 171.703125 338.335938 C 171.585938 338.335938 171.492188 338.429688 171.492188 338.546875 C 171.492188 338.664062 171.585938 338.757812 171.703125 338.757812 C 171.820312 338.757812 171.914062 338.664062 171.914062 338.546875 Z M 171.914062 338.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.976562 340.5625 C 172.976562 340.445312 172.882812 340.351562 172.765625 340.351562 C 172.648438 340.351562 172.554688 340.445312 172.554688 340.5625 C 172.554688 340.679688 172.648438 340.773438 172.765625 340.773438 C 172.882812 340.773438 172.976562 340.679688 172.976562 340.5625 Z M 172.976562 340.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.339844 343.046875 C 177.339844 342.929688 177.246094 342.835938 177.128906 342.835938 C 177.011719 342.835938 176.917969 342.929688 176.917969 343.046875 C 176.917969 343.164062 177.011719 343.257812 177.128906 343.257812 C 177.246094 343.257812 177.339844 343.164062 177.339844 343.046875 Z M 177.339844 343.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.472656 342.730469 C 177.472656 342.613281 177.378906 342.519531 177.261719 342.519531 C 177.144531 342.519531 177.050781 342.613281 177.050781 342.730469 C 177.050781 342.847656 177.144531 342.941406 177.261719 342.941406 C 177.378906 342.941406 177.472656 342.847656 177.472656 342.730469 Z M 177.472656 342.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.167969 340.328125 C 176.167969 340.210938 176.074219 340.117188 175.957031 340.117188 C 175.839844 340.117188 175.746094 340.210938 175.746094 340.328125 C 175.746094 340.445312 175.839844 340.539062 175.957031 340.539062 C 176.074219 340.539062 176.167969 340.445312 176.167969 340.328125 Z M 176.167969 340.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.808594 337.753906 C 177.808594 337.636719 177.714844 337.542969 177.597656 337.542969 C 177.480469 337.542969 177.386719 337.636719 177.386719 337.753906 C 177.386719 337.871094 177.480469 337.964844 177.597656 337.964844 C 177.714844 337.964844 177.808594 337.871094 177.808594 337.753906 Z M 177.808594 337.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.929688 340.199219 C 175.929688 340.082031 175.835938 339.988281 175.71875 339.988281 C 175.601562 339.988281 175.507812 340.082031 175.507812 340.199219 C 175.507812 340.316406 175.601562 340.410156 175.71875 340.410156 C 175.835938 340.410156 175.929688 340.316406 175.929688 340.199219 Z M 175.929688 340.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.054688 342.464844 C 177.054688 342.347656 176.960938 342.253906 176.84375 342.253906 C 176.726562 342.253906 176.632812 342.347656 176.632812 342.464844 C 176.632812 342.582031 176.726562 342.675781 176.84375 342.675781 C 176.960938 342.675781 177.054688 342.582031 177.054688 342.464844 Z M 177.054688 342.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.777344 341.5 C 175.777344 341.382812 175.683594 341.289062 175.566406 341.289062 C 175.449219 341.289062 175.355469 341.382812 175.355469 341.5 C 175.355469 341.617188 175.449219 341.710938 175.566406 341.710938 C 175.683594 341.710938 175.777344 341.617188 175.777344 341.5 Z M 175.777344 341.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.726562 344.429688 C 177.726562 344.3125 177.632812 344.21875 177.515625 344.21875 C 177.398438 344.21875 177.304688 344.3125 177.304688 344.429688 C 177.304688 344.546875 177.398438 344.640625 177.515625 344.640625 C 177.632812 344.640625 177.726562 344.546875 177.726562 344.429688 Z M 177.726562 344.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.054688 344.050781 C 180.054688 343.933594 179.960938 343.839844 179.84375 343.839844 C 179.726562 343.839844 179.632812 343.933594 179.632812 344.050781 C 179.632812 344.167969 179.726562 344.261719 179.84375 344.261719 C 179.960938 344.261719 180.054688 344.167969 180.054688 344.050781 Z M 180.054688 344.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.269531 340.984375 C 176.269531 340.867188 176.175781 340.773438 176.058594 340.773438 C 175.941406 340.773438 175.847656 340.867188 175.847656 340.984375 C 175.847656 341.101562 175.941406 341.195312 176.058594 341.195312 C 176.175781 341.195312 176.269531 341.101562 176.269531 340.984375 Z M 176.269531 340.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.714844 339.269531 C 176.714844 339.152344 176.621094 339.058594 176.503906 339.058594 C 176.386719 339.058594 176.292969 339.152344 176.292969 339.269531 C 176.292969 339.386719 176.386719 339.480469 176.503906 339.480469 C 176.621094 339.480469 176.714844 339.386719 176.714844 339.269531 Z M 176.714844 339.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.429688 339.574219 C 177.429688 339.457031 177.335938 339.363281 177.21875 339.363281 C 177.101562 339.363281 177.007812 339.457031 177.007812 339.574219 C 177.007812 339.691406 177.101562 339.785156 177.21875 339.785156 C 177.335938 339.785156 177.429688 339.691406 177.429688 339.574219 Z M 177.429688 339.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.433594 342.730469 C 174.433594 342.613281 174.339844 342.519531 174.222656 342.519531 C 174.105469 342.519531 174.011719 342.613281 174.011719 342.730469 C 174.011719 342.847656 174.105469 342.941406 174.222656 342.941406 C 174.339844 342.941406 174.433594 342.847656 174.433594 342.730469 Z M 174.433594 342.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.046875 346.445312 C 176.046875 346.328125 175.953125 346.234375 175.835938 346.234375 C 175.71875 346.234375 175.625 346.328125 175.625 346.445312 C 175.625 346.5625 175.71875 346.65625 175.835938 346.65625 C 175.953125 346.65625 176.046875 346.5625 176.046875 346.445312 Z M 176.046875 346.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.273438 345.949219 C 176.273438 345.832031 176.179688 345.738281 176.0625 345.738281 C 175.945312 345.738281 175.851562 345.832031 175.851562 345.949219 C 175.851562 346.066406 175.945312 346.160156 176.0625 346.160156 C 176.179688 346.160156 176.273438 346.066406 176.273438 345.949219 Z M 176.273438 345.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.417969 344.105469 C 174.417969 343.988281 174.324219 343.894531 174.207031 343.894531 C 174.089844 343.894531 173.996094 343.988281 173.996094 344.105469 C 173.996094 344.222656 174.089844 344.316406 174.207031 344.316406 C 174.324219 344.316406 174.417969 344.222656 174.417969 344.105469 Z M 174.417969 344.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.675781 343.699219 C 169.675781 343.582031 169.582031 343.488281 169.464844 343.488281 C 169.347656 343.488281 169.253906 343.582031 169.253906 343.699219 C 169.253906 343.816406 169.347656 343.910156 169.464844 343.910156 C 169.582031 343.910156 169.675781 343.816406 169.675781 343.699219 Z M 169.675781 343.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.679688 342.585938 C 168.679688 342.46875 168.585938 342.375 168.46875 342.375 C 168.351562 342.375 168.257812 342.46875 168.257812 342.585938 C 168.257812 342.703125 168.351562 342.796875 168.46875 342.796875 C 168.585938 342.796875 168.679688 342.703125 168.679688 342.585938 Z M 168.679688 342.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.199219 340.441406 C 169.199219 340.324219 169.105469 340.230469 168.988281 340.230469 C 168.871094 340.230469 168.777344 340.324219 168.777344 340.441406 C 168.777344 340.558594 168.871094 340.652344 168.988281 340.652344 C 169.105469 340.652344 169.199219 340.558594 169.199219 340.441406 Z M 169.199219 340.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.328125 341.355469 C 168.328125 341.238281 168.234375 341.144531 168.117188 341.144531 C 168 341.144531 167.90625 341.238281 167.90625 341.355469 C 167.90625 341.472656 168 341.566406 168.117188 341.566406 C 168.234375 341.566406 168.328125 341.472656 168.328125 341.355469 Z M 168.328125 341.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.324219 338.984375 C 169.324219 338.867188 169.230469 338.773438 169.113281 338.773438 C 168.996094 338.773438 168.902344 338.867188 168.902344 338.984375 C 168.902344 339.101562 168.996094 339.195312 169.113281 339.195312 C 169.230469 339.195312 169.324219 339.101562 169.324219 338.984375 Z M 169.324219 338.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.636719 338.234375 C 169.636719 338.117188 169.542969 338.023438 169.425781 338.023438 C 169.308594 338.023438 169.214844 338.117188 169.214844 338.234375 C 169.214844 338.351562 169.308594 338.445312 169.425781 338.445312 C 169.542969 338.445312 169.636719 338.351562 169.636719 338.234375 Z M 169.636719 338.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.28125 335.769531 C 170.28125 335.652344 170.1875 335.558594 170.070312 335.558594 C 169.953125 335.558594 169.859375 335.652344 169.859375 335.769531 C 169.859375 335.886719 169.953125 335.980469 170.070312 335.980469 C 170.1875 335.980469 170.28125 335.886719 170.28125 335.769531 Z M 170.28125 335.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.09375 333.773438 C 168.09375 333.65625 168 333.5625 167.882812 333.5625 C 167.765625 333.5625 167.671875 333.65625 167.671875 333.773438 C 167.671875 333.890625 167.765625 333.984375 167.882812 333.984375 C 168 333.984375 168.09375 333.890625 168.09375 333.773438 Z M 168.09375 333.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.027344 331.945312 C 168.027344 331.828125 167.933594 331.734375 167.816406 331.734375 C 167.699219 331.734375 167.605469 331.828125 167.605469 331.945312 C 167.605469 332.0625 167.699219 332.15625 167.816406 332.15625 C 167.933594 332.15625 168.027344 332.0625 168.027344 331.945312 Z M 168.027344 331.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.546875 328.59375 C 167.546875 328.476562 167.453125 328.382812 167.335938 328.382812 C 167.21875 328.382812 167.125 328.476562 167.125 328.59375 C 167.125 328.710938 167.21875 328.804688 167.335938 328.804688 C 167.453125 328.804688 167.546875 328.710938 167.546875 328.59375 Z M 167.546875 328.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.535156 330.761719 C 168.535156 330.644531 168.441406 330.550781 168.324219 330.550781 C 168.207031 330.550781 168.113281 330.644531 168.113281 330.761719 C 168.113281 330.878906 168.207031 330.972656 168.324219 330.972656 C 168.441406 330.972656 168.535156 330.878906 168.535156 330.761719 Z M 168.535156 330.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.003906 333.664062 C 169.003906 333.546875 168.910156 333.453125 168.792969 333.453125 C 168.675781 333.453125 168.582031 333.546875 168.582031 333.664062 C 168.582031 333.78125 168.675781 333.875 168.792969 333.875 C 168.910156 333.875 169.003906 333.78125 169.003906 333.664062 Z M 169.003906 333.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.503906 332.289062 C 168.503906 332.171875 168.410156 332.078125 168.292969 332.078125 C 168.175781 332.078125 168.082031 332.171875 168.082031 332.289062 C 168.082031 332.40625 168.175781 332.5 168.292969 332.5 C 168.410156 332.5 168.503906 332.40625 168.503906 332.289062 Z M 168.503906 332.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.460938 334.066406 C 170.460938 333.949219 170.367188 333.855469 170.25 333.855469 C 170.132812 333.855469 170.039062 333.949219 170.039062 334.066406 C 170.039062 334.183594 170.132812 334.277344 170.25 334.277344 C 170.367188 334.277344 170.460938 334.183594 170.460938 334.066406 Z M 170.460938 334.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.703125 333.148438 C 169.703125 333.03125 169.609375 332.9375 169.492188 332.9375 C 169.375 332.9375 169.28125 333.03125 169.28125 333.148438 C 169.28125 333.265625 169.375 333.359375 169.492188 333.359375 C 169.609375 333.359375 169.703125 333.265625 169.703125 333.148438 Z M 169.703125 333.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.03125 332.667969 C 166.03125 332.550781 165.9375 332.457031 165.820312 332.457031 C 165.703125 332.457031 165.609375 332.550781 165.609375 332.667969 C 165.609375 332.785156 165.703125 332.878906 165.820312 332.878906 C 165.9375 332.878906 166.03125 332.785156 166.03125 332.667969 Z M 166.03125 332.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.183594 333.402344 C 167.183594 333.285156 167.089844 333.191406 166.972656 333.191406 C 166.855469 333.191406 166.761719 333.285156 166.761719 333.402344 C 166.761719 333.519531 166.855469 333.613281 166.972656 333.613281 C 167.089844 333.613281 167.183594 333.519531 167.183594 333.402344 Z M 167.183594 333.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.722656 332.929688 C 169.722656 332.8125 169.628906 332.71875 169.511719 332.71875 C 169.394531 332.71875 169.300781 332.8125 169.300781 332.929688 C 169.300781 333.046875 169.394531 333.140625 169.511719 333.140625 C 169.628906 333.140625 169.722656 333.046875 169.722656 332.929688 Z M 169.722656 332.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168 331.675781 C 168 331.558594 167.90625 331.464844 167.789062 331.464844 C 167.671875 331.464844 167.578125 331.558594 167.578125 331.675781 C 167.578125 331.792969 167.671875 331.886719 167.789062 331.886719 C 167.90625 331.886719 168 331.792969 168 331.675781 Z M 168 331.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.679688 331.363281 C 164.679688 331.246094 164.585938 331.152344 164.46875 331.152344 C 164.351562 331.152344 164.257812 331.246094 164.257812 331.363281 C 164.257812 331.480469 164.351562 331.574219 164.46875 331.574219 C 164.585938 331.574219 164.679688 331.480469 164.679688 331.363281 Z M 164.679688 331.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.289062 328.488281 C 164.289062 328.371094 164.195312 328.277344 164.078125 328.277344 C 163.960938 328.277344 163.867188 328.371094 163.867188 328.488281 C 163.867188 328.605469 163.960938 328.699219 164.078125 328.699219 C 164.195312 328.699219 164.289062 328.605469 164.289062 328.488281 Z M 164.289062 328.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.796875 330.828125 C 163.796875 330.710938 163.703125 330.617188 163.585938 330.617188 C 163.46875 330.617188 163.375 330.710938 163.375 330.828125 C 163.375 330.945312 163.46875 331.039062 163.585938 331.039062 C 163.703125 331.039062 163.796875 330.945312 163.796875 330.828125 Z M 163.796875 330.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.753906 333.332031 C 162.753906 333.214844 162.660156 333.121094 162.542969 333.121094 C 162.425781 333.121094 162.332031 333.214844 162.332031 333.332031 C 162.332031 333.449219 162.425781 333.542969 162.542969 333.542969 C 162.660156 333.542969 162.753906 333.449219 162.753906 333.332031 Z M 162.753906 333.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.648438 330.046875 C 163.648438 329.929688 163.554688 329.835938 163.4375 329.835938 C 163.320312 329.835938 163.226562 329.929688 163.226562 330.046875 C 163.226562 330.164062 163.320312 330.257812 163.4375 330.257812 C 163.554688 330.257812 163.648438 330.164062 163.648438 330.046875 Z M 163.648438 330.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.378906 327.65625 C 164.378906 327.539062 164.285156 327.445312 164.167969 327.445312 C 164.050781 327.445312 163.957031 327.539062 163.957031 327.65625 C 163.957031 327.773438 164.050781 327.867188 164.167969 327.867188 C 164.285156 327.867188 164.378906 327.773438 164.378906 327.65625 Z M 164.378906 327.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.300781 328.933594 C 166.300781 328.816406 166.207031 328.722656 166.089844 328.722656 C 165.972656 328.722656 165.878906 328.816406 165.878906 328.933594 C 165.878906 329.050781 165.972656 329.144531 166.089844 329.144531 C 166.207031 329.144531 166.300781 329.050781 166.300781 328.933594 Z M 166.300781 328.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.324219 328.460938 C 165.324219 328.34375 165.230469 328.25 165.113281 328.25 C 164.996094 328.25 164.902344 328.34375 164.902344 328.460938 C 164.902344 328.578125 164.996094 328.671875 165.113281 328.671875 C 165.230469 328.671875 165.324219 328.578125 165.324219 328.460938 Z M 165.324219 328.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.382812 327.523438 C 165.382812 327.40625 165.289062 327.3125 165.171875 327.3125 C 165.054688 327.3125 164.960938 327.40625 164.960938 327.523438 C 164.960938 327.640625 165.054688 327.734375 165.171875 327.734375 C 165.289062 327.734375 165.382812 327.640625 165.382812 327.523438 Z M 165.382812 327.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.398438 329.519531 C 163.398438 329.402344 163.304688 329.308594 163.1875 329.308594 C 163.070312 329.308594 162.976562 329.402344 162.976562 329.519531 C 162.976562 329.636719 163.070312 329.730469 163.1875 329.730469 C 163.304688 329.730469 163.398438 329.636719 163.398438 329.519531 Z M 163.398438 329.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.578125 326.742188 C 162.578125 326.625 162.484375 326.53125 162.367188 326.53125 C 162.25 326.53125 162.15625 326.625 162.15625 326.742188 C 162.15625 326.859375 162.25 326.953125 162.367188 326.953125 C 162.484375 326.953125 162.578125 326.859375 162.578125 326.742188 Z M 162.578125 326.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.476562 328.378906 C 165.476562 328.261719 165.382812 328.167969 165.265625 328.167969 C 165.148438 328.167969 165.054688 328.261719 165.054688 328.378906 C 165.054688 328.496094 165.148438 328.589844 165.265625 328.589844 C 165.382812 328.589844 165.476562 328.496094 165.476562 328.378906 Z M 165.476562 328.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.078125 328.039062 C 163.078125 327.921875 162.984375 327.828125 162.867188 327.828125 C 162.75 327.828125 162.65625 327.921875 162.65625 328.039062 C 162.65625 328.15625 162.75 328.25 162.867188 328.25 C 162.984375 328.25 163.078125 328.15625 163.078125 328.039062 Z M 163.078125 328.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.0625 325.910156 C 162.0625 325.792969 161.96875 325.699219 161.851562 325.699219 C 161.734375 325.699219 161.640625 325.792969 161.640625 325.910156 C 161.640625 326.027344 161.734375 326.121094 161.851562 326.121094 C 161.96875 326.121094 162.0625 326.027344 162.0625 325.910156 Z M 162.0625 325.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.882812 323.957031 C 162.882812 323.839844 162.789062 323.746094 162.671875 323.746094 C 162.554688 323.746094 162.460938 323.839844 162.460938 323.957031 C 162.460938 324.074219 162.554688 324.167969 162.671875 324.167969 C 162.789062 324.167969 162.882812 324.074219 162.882812 323.957031 Z M 162.882812 323.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.46875 328.308594 C 163.46875 328.191406 163.375 328.097656 163.257812 328.097656 C 163.140625 328.097656 163.046875 328.191406 163.046875 328.308594 C 163.046875 328.425781 163.140625 328.519531 163.257812 328.519531 C 163.375 328.519531 163.46875 328.425781 163.46875 328.308594 Z M 163.46875 328.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.675781 329.707031 C 164.675781 329.589844 164.582031 329.496094 164.464844 329.496094 C 164.347656 329.496094 164.253906 329.589844 164.253906 329.707031 C 164.253906 329.824219 164.347656 329.917969 164.464844 329.917969 C 164.582031 329.917969 164.675781 329.824219 164.675781 329.707031 Z M 164.675781 329.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.28125 331.613281 C 165.28125 331.496094 165.1875 331.402344 165.070312 331.402344 C 164.953125 331.402344 164.859375 331.496094 164.859375 331.613281 C 164.859375 331.730469 164.953125 331.824219 165.070312 331.824219 C 165.1875 331.824219 165.28125 331.730469 165.28125 331.613281 Z M 165.28125 331.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.867188 329.0625 C 164.867188 328.945312 164.773438 328.851562 164.65625 328.851562 C 164.539062 328.851562 164.445312 328.945312 164.445312 329.0625 C 164.445312 329.179688 164.539062 329.273438 164.65625 329.273438 C 164.773438 329.273438 164.867188 329.179688 164.867188 329.0625 Z M 164.867188 329.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.710938 324.972656 C 161.710938 324.855469 161.617188 324.761719 161.5 324.761719 C 161.382812 324.761719 161.289062 324.855469 161.289062 324.972656 C 161.289062 325.089844 161.382812 325.183594 161.5 325.183594 C 161.617188 325.183594 161.710938 325.089844 161.710938 324.972656 Z M 161.710938 324.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.753906 321.273438 C 165.753906 321.15625 165.660156 321.0625 165.542969 321.0625 C 165.425781 321.0625 165.332031 321.15625 165.332031 321.273438 C 165.332031 321.390625 165.425781 321.484375 165.542969 321.484375 C 165.660156 321.484375 165.753906 321.390625 165.753906 321.273438 Z M 165.753906 321.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.351562 323.300781 C 162.351562 323.183594 162.257812 323.089844 162.140625 323.089844 C 162.023438 323.089844 161.929688 323.183594 161.929688 323.300781 C 161.929688 323.417969 162.023438 323.511719 162.140625 323.511719 C 162.257812 323.511719 162.351562 323.417969 162.351562 323.300781 Z M 162.351562 323.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.324219 322.582031 C 165.324219 322.464844 165.230469 322.371094 165.113281 322.371094 C 164.996094 322.371094 164.902344 322.464844 164.902344 322.582031 C 164.902344 322.699219 164.996094 322.792969 165.113281 322.792969 C 165.230469 322.792969 165.324219 322.699219 165.324219 322.582031 Z M 165.324219 322.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.90625 322.070312 C 167.90625 321.953125 167.8125 321.859375 167.695312 321.859375 C 167.578125 321.859375 167.484375 321.953125 167.484375 322.070312 C 167.484375 322.1875 167.578125 322.28125 167.695312 322.28125 C 167.8125 322.28125 167.90625 322.1875 167.90625 322.070312 Z M 167.90625 322.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.152344 320.183594 C 165.152344 320.066406 165.058594 319.972656 164.941406 319.972656 C 164.824219 319.972656 164.730469 320.066406 164.730469 320.183594 C 164.730469 320.300781 164.824219 320.394531 164.941406 320.394531 C 165.058594 320.394531 165.152344 320.300781 165.152344 320.183594 Z M 165.152344 320.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.136719 318.882812 C 164.136719 318.765625 164.042969 318.671875 163.925781 318.671875 C 163.808594 318.671875 163.714844 318.765625 163.714844 318.882812 C 163.714844 319 163.808594 319.09375 163.925781 319.09375 C 164.042969 319.09375 164.136719 319 164.136719 318.882812 Z M 164.136719 318.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.910156 318.671875 C 163.910156 318.554688 163.816406 318.460938 163.699219 318.460938 C 163.582031 318.460938 163.488281 318.554688 163.488281 318.671875 C 163.488281 318.789062 163.582031 318.882812 163.699219 318.882812 C 163.816406 318.882812 163.910156 318.789062 163.910156 318.671875 Z M 163.910156 318.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.695312 318.074219 C 163.695312 317.957031 163.601562 317.863281 163.484375 317.863281 C 163.367188 317.863281 163.273438 317.957031 163.273438 318.074219 C 163.273438 318.191406 163.367188 318.285156 163.484375 318.285156 C 163.601562 318.285156 163.695312 318.191406 163.695312 318.074219 Z M 163.695312 318.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.425781 321.15625 C 162.425781 321.039062 162.332031 320.945312 162.214844 320.945312 C 162.097656 320.945312 162.003906 321.039062 162.003906 321.15625 C 162.003906 321.273438 162.097656 321.367188 162.214844 321.367188 C 162.332031 321.367188 162.425781 321.273438 162.425781 321.15625 Z M 162.425781 321.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.117188 323.511719 C 162.117188 323.394531 162.023438 323.300781 161.90625 323.300781 C 161.789062 323.300781 161.695312 323.394531 161.695312 323.511719 C 161.695312 323.628906 161.789062 323.722656 161.90625 323.722656 C 162.023438 323.722656 162.117188 323.628906 162.117188 323.511719 Z M 162.117188 323.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.734375 321.316406 C 160.734375 321.199219 160.640625 321.105469 160.523438 321.105469 C 160.40625 321.105469 160.3125 321.199219 160.3125 321.316406 C 160.3125 321.433594 160.40625 321.527344 160.523438 321.527344 C 160.640625 321.527344 160.734375 321.433594 160.734375 321.316406 Z M 160.734375 321.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.070312 321.84375 C 160.070312 321.726562 159.976562 321.632812 159.859375 321.632812 C 159.742188 321.632812 159.648438 321.726562 159.648438 321.84375 C 159.648438 321.960938 159.742188 322.054688 159.859375 322.054688 C 159.976562 322.054688 160.070312 321.960938 160.070312 321.84375 Z M 160.070312 321.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.828125 319.496094 C 156.828125 319.378906 156.734375 319.285156 156.617188 319.285156 C 156.5 319.285156 156.40625 319.378906 156.40625 319.496094 C 156.40625 319.613281 156.5 319.707031 156.617188 319.707031 C 156.734375 319.707031 156.828125 319.613281 156.828125 319.496094 Z M 156.828125 319.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.554688 322.609375 C 157.554688 322.492188 157.460938 322.398438 157.34375 322.398438 C 157.226562 322.398438 157.132812 322.492188 157.132812 322.609375 C 157.132812 322.726562 157.226562 322.820312 157.34375 322.820312 C 157.460938 322.820312 157.554688 322.726562 157.554688 322.609375 Z M 157.554688 322.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.941406 324.640625 C 160.941406 324.523438 160.847656 324.429688 160.730469 324.429688 C 160.613281 324.429688 160.519531 324.523438 160.519531 324.640625 C 160.519531 324.757812 160.613281 324.851562 160.730469 324.851562 C 160.847656 324.851562 160.941406 324.757812 160.941406 324.640625 Z M 160.941406 324.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.058594 326.160156 C 157.058594 326.042969 156.964844 325.949219 156.847656 325.949219 C 156.730469 325.949219 156.636719 326.042969 156.636719 326.160156 C 156.636719 326.277344 156.730469 326.371094 156.847656 326.371094 C 156.964844 326.371094 157.058594 326.277344 157.058594 326.160156 Z M 157.058594 326.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.734375 325.308594 C 160.734375 325.191406 160.640625 325.097656 160.523438 325.097656 C 160.40625 325.097656 160.3125 325.191406 160.3125 325.308594 C 160.3125 325.425781 160.40625 325.519531 160.523438 325.519531 C 160.640625 325.519531 160.734375 325.425781 160.734375 325.308594 Z M 160.734375 325.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.800781 328.304688 C 163.800781 328.1875 163.707031 328.09375 163.589844 328.09375 C 163.472656 328.09375 163.378906 328.1875 163.378906 328.304688 C 163.378906 328.421875 163.472656 328.515625 163.589844 328.515625 C 163.707031 328.515625 163.800781 328.421875 163.800781 328.304688 Z M 163.800781 328.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.707031 332.554688 C 164.707031 332.4375 164.613281 332.34375 164.496094 332.34375 C 164.378906 332.34375 164.285156 332.4375 164.285156 332.554688 C 164.285156 332.671875 164.378906 332.765625 164.496094 332.765625 C 164.613281 332.765625 164.707031 332.671875 164.707031 332.554688 Z M 164.707031 332.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.515625 335.179688 C 164.515625 335.0625 164.421875 334.96875 164.304688 334.96875 C 164.1875 334.96875 164.09375 335.0625 164.09375 335.179688 C 164.09375 335.296875 164.1875 335.390625 164.304688 335.390625 C 164.421875 335.390625 164.515625 335.296875 164.515625 335.179688 Z M 164.515625 335.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.320312 333.019531 C 165.320312 332.902344 165.226562 332.808594 165.109375 332.808594 C 164.992188 332.808594 164.898438 332.902344 164.898438 333.019531 C 164.898438 333.136719 164.992188 333.230469 165.109375 333.230469 C 165.226562 333.230469 165.320312 333.136719 165.320312 333.019531 Z M 165.320312 333.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.753906 330.941406 C 165.753906 330.824219 165.660156 330.730469 165.542969 330.730469 C 165.425781 330.730469 165.332031 330.824219 165.332031 330.941406 C 165.332031 331.058594 165.425781 331.152344 165.542969 331.152344 C 165.660156 331.152344 165.753906 331.058594 165.753906 330.941406 Z M 165.753906 330.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.164062 333.050781 C 166.164062 332.933594 166.070312 332.839844 165.953125 332.839844 C 165.835938 332.839844 165.742188 332.933594 165.742188 333.050781 C 165.742188 333.167969 165.835938 333.261719 165.953125 333.261719 C 166.070312 333.261719 166.164062 333.167969 166.164062 333.050781 Z M 166.164062 333.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.714844 331.570312 C 165.714844 331.453125 165.621094 331.359375 165.503906 331.359375 C 165.386719 331.359375 165.292969 331.453125 165.292969 331.570312 C 165.292969 331.6875 165.386719 331.78125 165.503906 331.78125 C 165.621094 331.78125 165.714844 331.6875 165.714844 331.570312 Z M 165.714844 331.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.417969 333.113281 C 166.417969 332.996094 166.324219 332.902344 166.207031 332.902344 C 166.089844 332.902344 165.996094 332.996094 165.996094 333.113281 C 165.996094 333.230469 166.089844 333.324219 166.207031 333.324219 C 166.324219 333.324219 166.417969 333.230469 166.417969 333.113281 Z M 166.417969 333.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.171875 334.230469 C 169.171875 334.113281 169.078125 334.019531 168.960938 334.019531 C 168.84375 334.019531 168.75 334.113281 168.75 334.230469 C 168.75 334.347656 168.84375 334.441406 168.960938 334.441406 C 169.078125 334.441406 169.171875 334.347656 169.171875 334.230469 Z M 169.171875 334.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.605469 329.3125 C 168.605469 329.195312 168.511719 329.101562 168.394531 329.101562 C 168.277344 329.101562 168.183594 329.195312 168.183594 329.3125 C 168.183594 329.429688 168.277344 329.523438 168.394531 329.523438 C 168.511719 329.523438 168.605469 329.429688 168.605469 329.3125 Z M 168.605469 329.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.78125 327.769531 C 166.78125 327.652344 166.6875 327.558594 166.570312 327.558594 C 166.453125 327.558594 166.359375 327.652344 166.359375 327.769531 C 166.359375 327.886719 166.453125 327.980469 166.570312 327.980469 C 166.6875 327.980469 166.78125 327.886719 166.78125 327.769531 Z M 166.78125 327.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.425781 327.390625 C 167.425781 327.273438 167.332031 327.179688 167.214844 327.179688 C 167.097656 327.179688 167.003906 327.273438 167.003906 327.390625 C 167.003906 327.507812 167.097656 327.601562 167.214844 327.601562 C 167.332031 327.601562 167.425781 327.507812 167.425781 327.390625 Z M 167.425781 327.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.191406 328.253906 C 167.191406 328.136719 167.097656 328.042969 166.980469 328.042969 C 166.863281 328.042969 166.769531 328.136719 166.769531 328.253906 C 166.769531 328.371094 166.863281 328.464844 166.980469 328.464844 C 167.097656 328.464844 167.191406 328.371094 167.191406 328.253906 Z M 167.191406 328.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.757812 328.433594 C 169.757812 328.316406 169.664062 328.222656 169.546875 328.222656 C 169.429688 328.222656 169.335938 328.316406 169.335938 328.433594 C 169.335938 328.550781 169.429688 328.644531 169.546875 328.644531 C 169.664062 328.644531 169.757812 328.550781 169.757812 328.433594 Z M 169.757812 328.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.8125 329.363281 C 169.8125 329.246094 169.71875 329.152344 169.601562 329.152344 C 169.484375 329.152344 169.390625 329.246094 169.390625 329.363281 C 169.390625 329.480469 169.484375 329.574219 169.601562 329.574219 C 169.71875 329.574219 169.8125 329.480469 169.8125 329.363281 Z M 169.8125 329.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.527344 330.359375 C 171.527344 330.242188 171.433594 330.148438 171.316406 330.148438 C 171.199219 330.148438 171.105469 330.242188 171.105469 330.359375 C 171.105469 330.476562 171.199219 330.570312 171.316406 330.570312 C 171.433594 330.570312 171.527344 330.476562 171.527344 330.359375 Z M 171.527344 330.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.007812 332.523438 C 174.007812 332.40625 173.914062 332.3125 173.796875 332.3125 C 173.679688 332.3125 173.585938 332.40625 173.585938 332.523438 C 173.585938 332.640625 173.679688 332.734375 173.796875 332.734375 C 173.914062 332.734375 174.007812 332.640625 174.007812 332.523438 Z M 174.007812 332.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.777344 331.914062 C 175.777344 331.796875 175.683594 331.703125 175.566406 331.703125 C 175.449219 331.703125 175.355469 331.796875 175.355469 331.914062 C 175.355469 332.03125 175.449219 332.125 175.566406 332.125 C 175.683594 332.125 175.777344 332.03125 175.777344 331.914062 Z M 175.777344 331.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.542969 332.230469 C 173.542969 332.113281 173.449219 332.019531 173.332031 332.019531 C 173.214844 332.019531 173.121094 332.113281 173.121094 332.230469 C 173.121094 332.347656 173.214844 332.441406 173.332031 332.441406 C 173.449219 332.441406 173.542969 332.347656 173.542969 332.230469 Z M 173.542969 332.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.789062 332.523438 C 169.789062 332.40625 169.695312 332.3125 169.578125 332.3125 C 169.460938 332.3125 169.367188 332.40625 169.367188 332.523438 C 169.367188 332.640625 169.460938 332.734375 169.578125 332.734375 C 169.695312 332.734375 169.789062 332.640625 169.789062 332.523438 Z M 169.789062 332.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.179688 336.566406 C 170.179688 336.449219 170.085938 336.355469 169.96875 336.355469 C 169.851562 336.355469 169.757812 336.449219 169.757812 336.566406 C 169.757812 336.683594 169.851562 336.777344 169.96875 336.777344 C 170.085938 336.777344 170.179688 336.683594 170.179688 336.566406 Z M 170.179688 336.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.058594 334.289062 C 176.058594 334.171875 175.964844 334.078125 175.847656 334.078125 C 175.730469 334.078125 175.636719 334.171875 175.636719 334.289062 C 175.636719 334.40625 175.730469 334.5 175.847656 334.5 C 175.964844 334.5 176.058594 334.40625 176.058594 334.289062 Z M 176.058594 334.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.933594 336.472656 C 176.933594 336.355469 176.839844 336.261719 176.722656 336.261719 C 176.605469 336.261719 176.511719 336.355469 176.511719 336.472656 C 176.511719 336.589844 176.605469 336.683594 176.722656 336.683594 C 176.839844 336.683594 176.933594 336.589844 176.933594 336.472656 Z M 176.933594 336.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.246094 333.6875 C 183.246094 333.570312 183.152344 333.476562 183.035156 333.476562 C 182.917969 333.476562 182.824219 333.570312 182.824219 333.6875 C 182.824219 333.804688 182.917969 333.898438 183.035156 333.898438 C 183.152344 333.898438 183.246094 333.804688 183.246094 333.6875 Z M 183.246094 333.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.777344 331.910156 C 182.777344 331.792969 182.683594 331.699219 182.566406 331.699219 C 182.449219 331.699219 182.355469 331.792969 182.355469 331.910156 C 182.355469 332.027344 182.449219 332.121094 182.566406 332.121094 C 182.683594 332.121094 182.777344 332.027344 182.777344 331.910156 Z M 182.777344 331.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.183594 327.140625 C 183.183594 327.023438 183.089844 326.929688 182.972656 326.929688 C 182.855469 326.929688 182.761719 327.023438 182.761719 327.140625 C 182.761719 327.257812 182.855469 327.351562 182.972656 327.351562 C 183.089844 327.351562 183.183594 327.257812 183.183594 327.140625 Z M 183.183594 327.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.304688 326.195312 C 185.304688 326.078125 185.210938 325.984375 185.09375 325.984375 C 184.976562 325.984375 184.882812 326.078125 184.882812 326.195312 C 184.882812 326.3125 184.976562 326.40625 185.09375 326.40625 C 185.210938 326.40625 185.304688 326.3125 185.304688 326.195312 Z M 185.304688 326.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.4375 329.359375 C 183.4375 329.242188 183.34375 329.148438 183.226562 329.148438 C 183.109375 329.148438 183.015625 329.242188 183.015625 329.359375 C 183.015625 329.476562 183.109375 329.570312 183.226562 329.570312 C 183.34375 329.570312 183.4375 329.476562 183.4375 329.359375 Z M 183.4375 329.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.132812 328.722656 C 182.132812 328.605469 182.039062 328.511719 181.921875 328.511719 C 181.804688 328.511719 181.710938 328.605469 181.710938 328.722656 C 181.710938 328.839844 181.804688 328.933594 181.921875 328.933594 C 182.039062 328.933594 182.132812 328.839844 182.132812 328.722656 Z M 182.132812 328.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.058594 329.15625 C 182.058594 329.039062 181.964844 328.945312 181.847656 328.945312 C 181.730469 328.945312 181.636719 329.039062 181.636719 329.15625 C 181.636719 329.273438 181.730469 329.367188 181.847656 329.367188 C 181.964844 329.367188 182.058594 329.273438 182.058594 329.15625 Z M 182.058594 329.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.394531 327.148438 C 182.394531 327.03125 182.300781 326.9375 182.183594 326.9375 C 182.066406 326.9375 181.972656 327.03125 181.972656 327.148438 C 181.972656 327.265625 182.066406 327.359375 182.183594 327.359375 C 182.300781 327.359375 182.394531 327.265625 182.394531 327.148438 Z M 182.394531 327.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.773438 326.753906 C 179.773438 326.636719 179.679688 326.542969 179.5625 326.542969 C 179.445312 326.542969 179.351562 326.636719 179.351562 326.753906 C 179.351562 326.871094 179.445312 326.964844 179.5625 326.964844 C 179.679688 326.964844 179.773438 326.871094 179.773438 326.753906 Z M 179.773438 326.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.199219 327.730469 C 177.199219 327.613281 177.105469 327.519531 176.988281 327.519531 C 176.871094 327.519531 176.777344 327.613281 176.777344 327.730469 C 176.777344 327.847656 176.871094 327.941406 176.988281 327.941406 C 177.105469 327.941406 177.199219 327.847656 177.199219 327.730469 Z M 177.199219 327.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.292969 325.851562 C 179.292969 325.734375 179.199219 325.640625 179.082031 325.640625 C 178.964844 325.640625 178.871094 325.734375 178.871094 325.851562 C 178.871094 325.96875 178.964844 326.0625 179.082031 326.0625 C 179.199219 326.0625 179.292969 325.96875 179.292969 325.851562 Z M 179.292969 325.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.902344 325.636719 C 177.902344 325.519531 177.808594 325.425781 177.691406 325.425781 C 177.574219 325.425781 177.480469 325.519531 177.480469 325.636719 C 177.480469 325.753906 177.574219 325.847656 177.691406 325.847656 C 177.808594 325.847656 177.902344 325.753906 177.902344 325.636719 Z M 177.902344 325.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.738281 323.4375 C 178.738281 323.320312 178.644531 323.226562 178.527344 323.226562 C 178.410156 323.226562 178.316406 323.320312 178.316406 323.4375 C 178.316406 323.554688 178.410156 323.648438 178.527344 323.648438 C 178.644531 323.648438 178.738281 323.554688 178.738281 323.4375 Z M 178.738281 323.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.949219 323.09375 C 177.949219 322.976562 177.855469 322.882812 177.738281 322.882812 C 177.621094 322.882812 177.527344 322.976562 177.527344 323.09375 C 177.527344 323.210938 177.621094 323.304688 177.738281 323.304688 C 177.855469 323.304688 177.949219 323.210938 177.949219 323.09375 Z M 177.949219 323.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.992188 324.082031 C 182.992188 323.964844 182.898438 323.871094 182.78125 323.871094 C 182.664062 323.871094 182.570312 323.964844 182.570312 324.082031 C 182.570312 324.199219 182.664062 324.292969 182.78125 324.292969 C 182.898438 324.292969 182.992188 324.199219 182.992188 324.082031 Z M 182.992188 324.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.335938 324.191406 C 184.335938 324.074219 184.242188 323.980469 184.125 323.980469 C 184.007812 323.980469 183.914062 324.074219 183.914062 324.191406 C 183.914062 324.308594 184.007812 324.402344 184.125 324.402344 C 184.242188 324.402344 184.335938 324.308594 184.335938 324.191406 Z M 184.335938 324.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.246094 323.464844 C 184.246094 323.347656 184.152344 323.253906 184.035156 323.253906 C 183.917969 323.253906 183.824219 323.347656 183.824219 323.464844 C 183.824219 323.582031 183.917969 323.675781 184.035156 323.675781 C 184.152344 323.675781 184.246094 323.582031 184.246094 323.464844 Z M 184.246094 323.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.949219 325.007812 C 181.949219 324.890625 181.855469 324.796875 181.738281 324.796875 C 181.621094 324.796875 181.527344 324.890625 181.527344 325.007812 C 181.527344 325.125 181.621094 325.21875 181.738281 325.21875 C 181.855469 325.21875 181.949219 325.125 181.949219 325.007812 Z M 181.949219 325.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.742188 323.773438 C 180.742188 323.65625 180.648438 323.5625 180.53125 323.5625 C 180.414062 323.5625 180.320312 323.65625 180.320312 323.773438 C 180.320312 323.890625 180.414062 323.984375 180.53125 323.984375 C 180.648438 323.984375 180.742188 323.890625 180.742188 323.773438 Z M 180.742188 323.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.730469 323.996094 C 178.730469 323.878906 178.636719 323.785156 178.519531 323.785156 C 178.402344 323.785156 178.308594 323.878906 178.308594 323.996094 C 178.308594 324.113281 178.402344 324.207031 178.519531 324.207031 C 178.636719 324.207031 178.730469 324.113281 178.730469 323.996094 Z M 178.730469 323.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.324219 326.636719 C 181.324219 326.519531 181.230469 326.425781 181.113281 326.425781 C 180.996094 326.425781 180.902344 326.519531 180.902344 326.636719 C 180.902344 326.753906 180.996094 326.847656 181.113281 326.847656 C 181.230469 326.847656 181.324219 326.753906 181.324219 326.636719 Z M 181.324219 326.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.300781 329.929688 C 185.300781 329.8125 185.207031 329.71875 185.089844 329.71875 C 184.972656 329.71875 184.878906 329.8125 184.878906 329.929688 C 184.878906 330.046875 184.972656 330.140625 185.089844 330.140625 C 185.207031 330.140625 185.300781 330.046875 185.300781 329.929688 Z M 185.300781 329.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.082031 330.125 C 187.082031 330.007812 186.988281 329.914062 186.871094 329.914062 C 186.753906 329.914062 186.660156 330.007812 186.660156 330.125 C 186.660156 330.242188 186.753906 330.335938 186.871094 330.335938 C 186.988281 330.335938 187.082031 330.242188 187.082031 330.125 Z M 187.082031 330.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.957031 329.621094 C 187.957031 329.503906 187.863281 329.410156 187.746094 329.410156 C 187.628906 329.410156 187.535156 329.503906 187.535156 329.621094 C 187.535156 329.738281 187.628906 329.832031 187.746094 329.832031 C 187.863281 329.832031 187.957031 329.738281 187.957031 329.621094 Z M 187.957031 329.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.714844 330.953125 C 186.714844 330.835938 186.621094 330.742188 186.503906 330.742188 C 186.386719 330.742188 186.292969 330.835938 186.292969 330.953125 C 186.292969 331.070312 186.386719 331.164062 186.503906 331.164062 C 186.621094 331.164062 186.714844 331.070312 186.714844 330.953125 Z M 186.714844 330.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.425781 327.433594 C 186.425781 327.316406 186.332031 327.222656 186.214844 327.222656 C 186.097656 327.222656 186.003906 327.316406 186.003906 327.433594 C 186.003906 327.550781 186.097656 327.644531 186.214844 327.644531 C 186.332031 327.644531 186.425781 327.550781 186.425781 327.433594 Z M 186.425781 327.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.613281 325.558594 C 182.613281 325.441406 182.519531 325.347656 182.402344 325.347656 C 182.285156 325.347656 182.191406 325.441406 182.191406 325.558594 C 182.191406 325.675781 182.285156 325.769531 182.402344 325.769531 C 182.519531 325.769531 182.613281 325.675781 182.613281 325.558594 Z M 182.613281 325.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.230469 326.722656 C 185.230469 326.605469 185.136719 326.511719 185.019531 326.511719 C 184.902344 326.511719 184.808594 326.605469 184.808594 326.722656 C 184.808594 326.839844 184.902344 326.933594 185.019531 326.933594 C 185.136719 326.933594 185.230469 326.839844 185.230469 326.722656 Z M 185.230469 326.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.011719 324.429688 C 189.011719 324.3125 188.917969 324.21875 188.800781 324.21875 C 188.683594 324.21875 188.589844 324.3125 188.589844 324.429688 C 188.589844 324.546875 188.683594 324.640625 188.800781 324.640625 C 188.917969 324.640625 189.011719 324.546875 189.011719 324.429688 Z M 189.011719 324.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.984375 321.996094 C 194.984375 321.878906 194.890625 321.785156 194.773438 321.785156 C 194.65625 321.785156 194.5625 321.878906 194.5625 321.996094 C 194.5625 322.113281 194.65625 322.207031 194.773438 322.207031 C 194.890625 322.207031 194.984375 322.113281 194.984375 321.996094 Z M 194.984375 321.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.632812 320.917969 C 195.632812 320.800781 195.539062 320.707031 195.421875 320.707031 C 195.304688 320.707031 195.210938 320.800781 195.210938 320.917969 C 195.210938 321.035156 195.304688 321.128906 195.421875 321.128906 C 195.539062 321.128906 195.632812 321.035156 195.632812 320.917969 Z M 195.632812 320.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.179688 317.144531 C 196.179688 317.027344 196.085938 316.933594 195.96875 316.933594 C 195.851562 316.933594 195.757812 317.027344 195.757812 317.144531 C 195.757812 317.261719 195.851562 317.355469 195.96875 317.355469 C 196.085938 317.355469 196.179688 317.261719 196.179688 317.144531 Z M 196.179688 317.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.300781 314.140625 C 195.300781 314.023438 195.207031 313.929688 195.089844 313.929688 C 194.972656 313.929688 194.878906 314.023438 194.878906 314.140625 C 194.878906 314.257812 194.972656 314.351562 195.089844 314.351562 C 195.207031 314.351562 195.300781 314.257812 195.300781 314.140625 Z M 195.300781 314.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.128906 314.378906 C 196.128906 314.261719 196.035156 314.167969 195.917969 314.167969 C 195.800781 314.167969 195.707031 314.261719 195.707031 314.378906 C 195.707031 314.496094 195.800781 314.589844 195.917969 314.589844 C 196.035156 314.589844 196.128906 314.496094 196.128906 314.378906 Z M 196.128906 314.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.027344 316.144531 C 194.027344 316.027344 193.933594 315.933594 193.816406 315.933594 C 193.699219 315.933594 193.605469 316.027344 193.605469 316.144531 C 193.605469 316.261719 193.699219 316.355469 193.816406 316.355469 C 193.933594 316.355469 194.027344 316.261719 194.027344 316.144531 Z M 194.027344 316.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.46875 315.523438 C 191.46875 315.40625 191.375 315.3125 191.257812 315.3125 C 191.140625 315.3125 191.046875 315.40625 191.046875 315.523438 C 191.046875 315.640625 191.140625 315.734375 191.257812 315.734375 C 191.375 315.734375 191.46875 315.640625 191.46875 315.523438 Z M 191.46875 315.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.875 316.535156 C 192.875 316.417969 192.78125 316.324219 192.664062 316.324219 C 192.546875 316.324219 192.453125 316.417969 192.453125 316.535156 C 192.453125 316.652344 192.546875 316.746094 192.664062 316.746094 C 192.78125 316.746094 192.875 316.652344 192.875 316.535156 Z M 192.875 316.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.40625 319.152344 C 192.40625 319.035156 192.3125 318.941406 192.195312 318.941406 C 192.078125 318.941406 191.984375 319.035156 191.984375 319.152344 C 191.984375 319.269531 192.078125 319.363281 192.195312 319.363281 C 192.3125 319.363281 192.40625 319.269531 192.40625 319.152344 Z M 192.40625 319.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.691406 317.976562 C 195.691406 317.859375 195.597656 317.765625 195.480469 317.765625 C 195.363281 317.765625 195.269531 317.859375 195.269531 317.976562 C 195.269531 318.09375 195.363281 318.1875 195.480469 318.1875 C 195.597656 318.1875 195.691406 318.09375 195.691406 317.976562 Z M 195.691406 317.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.914062 316.554688 C 199.914062 316.4375 199.820312 316.34375 199.703125 316.34375 C 199.585938 316.34375 199.492188 316.4375 199.492188 316.554688 C 199.492188 316.671875 199.585938 316.765625 199.703125 316.765625 C 199.820312 316.765625 199.914062 316.671875 199.914062 316.554688 Z M 199.914062 316.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.320312 317.917969 C 197.320312 317.800781 197.226562 317.707031 197.109375 317.707031 C 196.992188 317.707031 196.898438 317.800781 196.898438 317.917969 C 196.898438 318.035156 196.992188 318.128906 197.109375 318.128906 C 197.226562 318.128906 197.320312 318.035156 197.320312 317.917969 Z M 197.320312 317.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.078125 318.503906 C 197.078125 318.386719 196.984375 318.292969 196.867188 318.292969 C 196.75 318.292969 196.65625 318.386719 196.65625 318.503906 C 196.65625 318.621094 196.75 318.714844 196.867188 318.714844 C 196.984375 318.714844 197.078125 318.621094 197.078125 318.503906 Z M 197.078125 318.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.667969 318.363281 C 195.667969 318.246094 195.574219 318.152344 195.457031 318.152344 C 195.339844 318.152344 195.246094 318.246094 195.246094 318.363281 C 195.246094 318.480469 195.339844 318.574219 195.457031 318.574219 C 195.574219 318.574219 195.667969 318.480469 195.667969 318.363281 Z M 195.667969 318.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.167969 316.4375 C 192.167969 316.320312 192.074219 316.226562 191.957031 316.226562 C 191.839844 316.226562 191.746094 316.320312 191.746094 316.4375 C 191.746094 316.554688 191.839844 316.648438 191.957031 316.648438 C 192.074219 316.648438 192.167969 316.554688 192.167969 316.4375 Z M 192.167969 316.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.089844 314.507812 C 194.089844 314.390625 193.996094 314.296875 193.878906 314.296875 C 193.761719 314.296875 193.667969 314.390625 193.667969 314.507812 C 193.667969 314.625 193.761719 314.71875 193.878906 314.71875 C 193.996094 314.71875 194.089844 314.625 194.089844 314.507812 Z M 194.089844 314.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.589844 312.742188 C 194.589844 312.625 194.496094 312.53125 194.378906 312.53125 C 194.261719 312.53125 194.167969 312.625 194.167969 312.742188 C 194.167969 312.859375 194.261719 312.953125 194.378906 312.953125 C 194.496094 312.953125 194.589844 312.859375 194.589844 312.742188 Z M 194.589844 312.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.25 313.699219 C 195.25 313.582031 195.15625 313.488281 195.039062 313.488281 C 194.921875 313.488281 194.828125 313.582031 194.828125 313.699219 C 194.828125 313.816406 194.921875 313.910156 195.039062 313.910156 C 195.15625 313.910156 195.25 313.816406 195.25 313.699219 Z M 195.25 313.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.011719 314.59375 C 196.011719 314.476562 195.917969 314.382812 195.800781 314.382812 C 195.683594 314.382812 195.589844 314.476562 195.589844 314.59375 C 195.589844 314.710938 195.683594 314.804688 195.800781 314.804688 C 195.917969 314.804688 196.011719 314.710938 196.011719 314.59375 Z M 196.011719 314.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.085938 315.785156 C 193.085938 315.667969 192.992188 315.574219 192.875 315.574219 C 192.757812 315.574219 192.664062 315.667969 192.664062 315.785156 C 192.664062 315.902344 192.757812 315.996094 192.875 315.996094 C 192.992188 315.996094 193.085938 315.902344 193.085938 315.785156 Z M 193.085938 315.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.195312 313.867188 C 194.195312 313.75 194.101562 313.65625 193.984375 313.65625 C 193.867188 313.65625 193.773438 313.75 193.773438 313.867188 C 193.773438 313.984375 193.867188 314.078125 193.984375 314.078125 C 194.101562 314.078125 194.195312 313.984375 194.195312 313.867188 Z M 194.195312 313.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.855469 313.851562 C 194.855469 313.734375 194.761719 313.640625 194.644531 313.640625 C 194.527344 313.640625 194.433594 313.734375 194.433594 313.851562 C 194.433594 313.96875 194.527344 314.0625 194.644531 314.0625 C 194.761719 314.0625 194.855469 313.96875 194.855469 313.851562 Z M 194.855469 313.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.957031 313.289062 C 191.957031 313.171875 191.863281 313.078125 191.746094 313.078125 C 191.628906 313.078125 191.535156 313.171875 191.535156 313.289062 C 191.535156 313.40625 191.628906 313.5 191.746094 313.5 C 191.863281 313.5 191.957031 313.40625 191.957031 313.289062 Z M 191.957031 313.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.707031 316.648438 C 192.707031 316.53125 192.613281 316.4375 192.496094 316.4375 C 192.378906 316.4375 192.285156 316.53125 192.285156 316.648438 C 192.285156 316.765625 192.378906 316.859375 192.496094 316.859375 C 192.613281 316.859375 192.707031 316.765625 192.707031 316.648438 Z M 192.707031 316.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.8125 313.640625 C 196.8125 313.523438 196.71875 313.429688 196.601562 313.429688 C 196.484375 313.429688 196.390625 313.523438 196.390625 313.640625 C 196.390625 313.757812 196.484375 313.851562 196.601562 313.851562 C 196.71875 313.851562 196.8125 313.757812 196.8125 313.640625 Z M 196.8125 313.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.238281 315.402344 C 196.238281 315.285156 196.144531 315.191406 196.027344 315.191406 C 195.910156 315.191406 195.816406 315.285156 195.816406 315.402344 C 195.816406 315.519531 195.910156 315.613281 196.027344 315.613281 C 196.144531 315.613281 196.238281 315.519531 196.238281 315.402344 Z M 196.238281 315.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.089844 317.253906 C 192.089844 317.136719 191.996094 317.042969 191.878906 317.042969 C 191.761719 317.042969 191.667969 317.136719 191.667969 317.253906 C 191.667969 317.371094 191.761719 317.464844 191.878906 317.464844 C 191.996094 317.464844 192.089844 317.371094 192.089844 317.253906 Z M 192.089844 317.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.507812 317.523438 C 192.507812 317.40625 192.414062 317.3125 192.296875 317.3125 C 192.179688 317.3125 192.085938 317.40625 192.085938 317.523438 C 192.085938 317.640625 192.179688 317.734375 192.296875 317.734375 C 192.414062 317.734375 192.507812 317.640625 192.507812 317.523438 Z M 192.507812 317.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.519531 318.457031 C 192.519531 318.339844 192.425781 318.246094 192.308594 318.246094 C 192.191406 318.246094 192.097656 318.339844 192.097656 318.457031 C 192.097656 318.574219 192.191406 318.667969 192.308594 318.667969 C 192.425781 318.667969 192.519531 318.574219 192.519531 318.457031 Z M 192.519531 318.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.167969 319.003906 C 193.167969 318.886719 193.074219 318.792969 192.957031 318.792969 C 192.839844 318.792969 192.746094 318.886719 192.746094 319.003906 C 192.746094 319.121094 192.839844 319.214844 192.957031 319.214844 C 193.074219 319.214844 193.167969 319.121094 193.167969 319.003906 Z M 193.167969 319.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.121094 317.984375 C 194.121094 317.867188 194.027344 317.773438 193.910156 317.773438 C 193.792969 317.773438 193.699219 317.867188 193.699219 317.984375 C 193.699219 318.101562 193.792969 318.195312 193.910156 318.195312 C 194.027344 318.195312 194.121094 318.101562 194.121094 317.984375 Z M 194.121094 317.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.671875 318.574219 C 197.671875 318.457031 197.578125 318.363281 197.460938 318.363281 C 197.34375 318.363281 197.25 318.457031 197.25 318.574219 C 197.25 318.691406 197.34375 318.785156 197.460938 318.785156 C 197.578125 318.785156 197.671875 318.691406 197.671875 318.574219 Z M 197.671875 318.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.003906 321.035156 C 202.003906 320.917969 201.910156 320.824219 201.792969 320.824219 C 201.675781 320.824219 201.582031 320.917969 201.582031 321.035156 C 201.582031 321.152344 201.675781 321.246094 201.792969 321.246094 C 201.910156 321.246094 202.003906 321.152344 202.003906 321.035156 Z M 202.003906 321.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.828125 321.1875 C 201.828125 321.070312 201.734375 320.976562 201.617188 320.976562 C 201.5 320.976562 201.40625 321.070312 201.40625 321.1875 C 201.40625 321.304688 201.5 321.398438 201.617188 321.398438 C 201.734375 321.398438 201.828125 321.304688 201.828125 321.1875 Z M 201.828125 321.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.730469 319.140625 C 202.730469 319.023438 202.636719 318.929688 202.519531 318.929688 C 202.402344 318.929688 202.308594 319.023438 202.308594 319.140625 C 202.308594 319.257812 202.402344 319.351562 202.519531 319.351562 C 202.636719 319.351562 202.730469 319.257812 202.730469 319.140625 Z M 202.730469 319.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.265625 318.90625 C 204.265625 318.789062 204.171875 318.695312 204.054688 318.695312 C 203.9375 318.695312 203.84375 318.789062 203.84375 318.90625 C 203.84375 319.023438 203.9375 319.117188 204.054688 319.117188 C 204.171875 319.117188 204.265625 319.023438 204.265625 318.90625 Z M 204.265625 318.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.695312 319.675781 C 206.695312 319.558594 206.601562 319.464844 206.484375 319.464844 C 206.367188 319.464844 206.273438 319.558594 206.273438 319.675781 C 206.273438 319.792969 206.367188 319.886719 206.484375 319.886719 C 206.601562 319.886719 206.695312 319.792969 206.695312 319.675781 Z M 206.695312 319.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.097656 321.769531 C 205.097656 321.652344 205.003906 321.558594 204.886719 321.558594 C 204.769531 321.558594 204.675781 321.652344 204.675781 321.769531 C 204.675781 321.886719 204.769531 321.980469 204.886719 321.980469 C 205.003906 321.980469 205.097656 321.886719 205.097656 321.769531 Z M 205.097656 321.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.820312 320.046875 C 204.820312 319.929688 204.726562 319.835938 204.609375 319.835938 C 204.492188 319.835938 204.398438 319.929688 204.398438 320.046875 C 204.398438 320.164062 204.492188 320.257812 204.609375 320.257812 C 204.726562 320.257812 204.820312 320.164062 204.820312 320.046875 Z M 204.820312 320.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.25 322 C 206.25 321.882812 206.15625 321.789062 206.039062 321.789062 C 205.921875 321.789062 205.828125 321.882812 205.828125 322 C 205.828125 322.117188 205.921875 322.210938 206.039062 322.210938 C 206.15625 322.210938 206.25 322.117188 206.25 322 Z M 206.25 322 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.007812 319.164062 C 208.007812 319.046875 207.914062 318.953125 207.796875 318.953125 C 207.679688 318.953125 207.585938 319.046875 207.585938 319.164062 C 207.585938 319.28125 207.679688 319.375 207.796875 319.375 C 207.914062 319.375 208.007812 319.28125 208.007812 319.164062 Z M 208.007812 319.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.671875 322.476562 C 205.671875 322.359375 205.578125 322.265625 205.460938 322.265625 C 205.34375 322.265625 205.25 322.359375 205.25 322.476562 C 205.25 322.59375 205.34375 322.6875 205.460938 322.6875 C 205.578125 322.6875 205.671875 322.59375 205.671875 322.476562 Z M 205.671875 322.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.355469 324.554688 C 201.355469 324.4375 201.261719 324.34375 201.144531 324.34375 C 201.027344 324.34375 200.933594 324.4375 200.933594 324.554688 C 200.933594 324.671875 201.027344 324.765625 201.144531 324.765625 C 201.261719 324.765625 201.355469 324.671875 201.355469 324.554688 Z M 201.355469 324.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.691406 324.421875 C 201.691406 324.304688 201.597656 324.210938 201.480469 324.210938 C 201.363281 324.210938 201.269531 324.304688 201.269531 324.421875 C 201.269531 324.539062 201.363281 324.632812 201.480469 324.632812 C 201.597656 324.632812 201.691406 324.539062 201.691406 324.421875 Z M 201.691406 324.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.625 328.011719 C 201.625 327.894531 201.53125 327.800781 201.414062 327.800781 C 201.296875 327.800781 201.203125 327.894531 201.203125 328.011719 C 201.203125 328.128906 201.296875 328.222656 201.414062 328.222656 C 201.53125 328.222656 201.625 328.128906 201.625 328.011719 Z M 201.625 328.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.890625 324.636719 C 199.890625 324.519531 199.796875 324.425781 199.679688 324.425781 C 199.5625 324.425781 199.46875 324.519531 199.46875 324.636719 C 199.46875 324.753906 199.5625 324.847656 199.679688 324.847656 C 199.796875 324.847656 199.890625 324.753906 199.890625 324.636719 Z M 199.890625 324.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.304688 324.484375 C 203.304688 324.367188 203.210938 324.273438 203.09375 324.273438 C 202.976562 324.273438 202.882812 324.367188 202.882812 324.484375 C 202.882812 324.601562 202.976562 324.695312 203.09375 324.695312 C 203.210938 324.695312 203.304688 324.601562 203.304688 324.484375 Z M 203.304688 324.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.761719 326.847656 C 200.761719 326.730469 200.667969 326.636719 200.550781 326.636719 C 200.433594 326.636719 200.339844 326.730469 200.339844 326.847656 C 200.339844 326.964844 200.433594 327.058594 200.550781 327.058594 C 200.667969 327.058594 200.761719 326.964844 200.761719 326.847656 Z M 200.761719 326.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.476562 329.371094 C 199.476562 329.253906 199.382812 329.160156 199.265625 329.160156 C 199.148438 329.160156 199.054688 329.253906 199.054688 329.371094 C 199.054688 329.488281 199.148438 329.582031 199.265625 329.582031 C 199.382812 329.582031 199.476562 329.488281 199.476562 329.371094 Z M 199.476562 329.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.964844 329.628906 C 198.964844 329.511719 198.871094 329.417969 198.753906 329.417969 C 198.636719 329.417969 198.542969 329.511719 198.542969 329.628906 C 198.542969 329.746094 198.636719 329.839844 198.753906 329.839844 C 198.871094 329.839844 198.964844 329.746094 198.964844 329.628906 Z M 198.964844 329.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.371094 326.621094 C 201.371094 326.503906 201.277344 326.410156 201.160156 326.410156 C 201.042969 326.410156 200.949219 326.503906 200.949219 326.621094 C 200.949219 326.738281 201.042969 326.832031 201.160156 326.832031 C 201.277344 326.832031 201.371094 326.738281 201.371094 326.621094 Z M 201.371094 326.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.304688 325.769531 C 203.304688 325.652344 203.210938 325.558594 203.09375 325.558594 C 202.976562 325.558594 202.882812 325.652344 202.882812 325.769531 C 202.882812 325.886719 202.976562 325.980469 203.09375 325.980469 C 203.210938 325.980469 203.304688 325.886719 203.304688 325.769531 Z M 203.304688 325.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.964844 323.988281 C 199.964844 323.871094 199.871094 323.777344 199.753906 323.777344 C 199.636719 323.777344 199.542969 323.871094 199.542969 323.988281 C 199.542969 324.105469 199.636719 324.199219 199.753906 324.199219 C 199.871094 324.199219 199.964844 324.105469 199.964844 323.988281 Z M 199.964844 323.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.078125 322.808594 C 198.078125 322.691406 197.984375 322.597656 197.867188 322.597656 C 197.75 322.597656 197.65625 322.691406 197.65625 322.808594 C 197.65625 322.925781 197.75 323.019531 197.867188 323.019531 C 197.984375 323.019531 198.078125 322.925781 198.078125 322.808594 Z M 198.078125 322.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.351562 323.5625 C 200.351562 323.445312 200.257812 323.351562 200.140625 323.351562 C 200.023438 323.351562 199.929688 323.445312 199.929688 323.5625 C 199.929688 323.679688 200.023438 323.773438 200.140625 323.773438 C 200.257812 323.773438 200.351562 323.679688 200.351562 323.5625 Z M 200.351562 323.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.578125 324.503906 C 199.578125 324.386719 199.484375 324.292969 199.367188 324.292969 C 199.25 324.292969 199.15625 324.386719 199.15625 324.503906 C 199.15625 324.621094 199.25 324.714844 199.367188 324.714844 C 199.484375 324.714844 199.578125 324.621094 199.578125 324.503906 Z M 199.578125 324.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.105469 324.871094 C 195.105469 324.753906 195.011719 324.660156 194.894531 324.660156 C 194.777344 324.660156 194.683594 324.753906 194.683594 324.871094 C 194.683594 324.988281 194.777344 325.082031 194.894531 325.082031 C 195.011719 325.082031 195.105469 324.988281 195.105469 324.871094 Z M 195.105469 324.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.554688 323.671875 C 194.554688 323.554688 194.460938 323.460938 194.34375 323.460938 C 194.226562 323.460938 194.132812 323.554688 194.132812 323.671875 C 194.132812 323.789062 194.226562 323.882812 194.34375 323.882812 C 194.460938 323.882812 194.554688 323.789062 194.554688 323.671875 Z M 194.554688 323.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.148438 322.757812 C 194.148438 322.640625 194.054688 322.546875 193.9375 322.546875 C 193.820312 322.546875 193.726562 322.640625 193.726562 322.757812 C 193.726562 322.875 193.820312 322.96875 193.9375 322.96875 C 194.054688 322.96875 194.148438 322.875 194.148438 322.757812 Z M 194.148438 322.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.582031 322.386719 C 194.582031 322.269531 194.488281 322.175781 194.371094 322.175781 C 194.253906 322.175781 194.160156 322.269531 194.160156 322.386719 C 194.160156 322.503906 194.253906 322.597656 194.371094 322.597656 C 194.488281 322.597656 194.582031 322.503906 194.582031 322.386719 Z M 194.582031 322.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.714844 324.429688 C 195.714844 324.3125 195.621094 324.21875 195.503906 324.21875 C 195.386719 324.21875 195.292969 324.3125 195.292969 324.429688 C 195.292969 324.546875 195.386719 324.640625 195.503906 324.640625 C 195.621094 324.640625 195.714844 324.546875 195.714844 324.429688 Z M 195.714844 324.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.859375 322.671875 C 197.859375 322.554688 197.765625 322.460938 197.648438 322.460938 C 197.53125 322.460938 197.4375 322.554688 197.4375 322.671875 C 197.4375 322.789062 197.53125 322.882812 197.648438 322.882812 C 197.765625 322.882812 197.859375 322.789062 197.859375 322.671875 Z M 197.859375 322.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.699219 322.894531 C 196.699219 322.777344 196.605469 322.683594 196.488281 322.683594 C 196.371094 322.683594 196.277344 322.777344 196.277344 322.894531 C 196.277344 323.011719 196.371094 323.105469 196.488281 323.105469 C 196.605469 323.105469 196.699219 323.011719 196.699219 322.894531 Z M 196.699219 322.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.855469 322.953125 C 192.855469 322.835938 192.761719 322.742188 192.644531 322.742188 C 192.527344 322.742188 192.433594 322.835938 192.433594 322.953125 C 192.433594 323.070312 192.527344 323.164062 192.644531 323.164062 C 192.761719 323.164062 192.855469 323.070312 192.855469 322.953125 Z M 192.855469 322.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.273438 321.171875 C 196.273438 321.054688 196.179688 320.960938 196.0625 320.960938 C 195.945312 320.960938 195.851562 321.054688 195.851562 321.171875 C 195.851562 321.289062 195.945312 321.382812 196.0625 321.382812 C 196.179688 321.382812 196.273438 321.289062 196.273438 321.171875 Z M 196.273438 321.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.882812 319.675781 C 196.882812 319.558594 196.789062 319.464844 196.671875 319.464844 C 196.554688 319.464844 196.460938 319.558594 196.460938 319.675781 C 196.460938 319.792969 196.554688 319.886719 196.671875 319.886719 C 196.789062 319.886719 196.882812 319.792969 196.882812 319.675781 Z M 196.882812 319.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.410156 317.3125 C 200.410156 317.195312 200.316406 317.101562 200.199219 317.101562 C 200.082031 317.101562 199.988281 317.195312 199.988281 317.3125 C 199.988281 317.429688 200.082031 317.523438 200.199219 317.523438 C 200.316406 317.523438 200.410156 317.429688 200.410156 317.3125 Z M 200.410156 317.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.769531 313.847656 C 199.769531 313.730469 199.675781 313.636719 199.558594 313.636719 C 199.441406 313.636719 199.347656 313.730469 199.347656 313.847656 C 199.347656 313.964844 199.441406 314.058594 199.558594 314.058594 C 199.675781 314.058594 199.769531 313.964844 199.769531 313.847656 Z M 199.769531 313.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.328125 309.566406 C 199.328125 309.449219 199.234375 309.355469 199.117188 309.355469 C 199 309.355469 198.90625 309.449219 198.90625 309.566406 C 198.90625 309.683594 199 309.777344 199.117188 309.777344 C 199.234375 309.777344 199.328125 309.683594 199.328125 309.566406 Z M 199.328125 309.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.570312 312.242188 C 194.570312 312.125 194.476562 312.03125 194.359375 312.03125 C 194.242188 312.03125 194.148438 312.125 194.148438 312.242188 C 194.148438 312.359375 194.242188 312.453125 194.359375 312.453125 C 194.476562 312.453125 194.570312 312.359375 194.570312 312.242188 Z M 194.570312 312.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.363281 307.179688 C 193.363281 307.0625 193.269531 306.96875 193.152344 306.96875 C 193.035156 306.96875 192.941406 307.0625 192.941406 307.179688 C 192.941406 307.296875 193.035156 307.390625 193.152344 307.390625 C 193.269531 307.390625 193.363281 307.296875 193.363281 307.179688 Z M 193.363281 307.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.542969 300.871094 C 190.542969 300.753906 190.449219 300.660156 190.332031 300.660156 C 190.214844 300.660156 190.121094 300.753906 190.121094 300.871094 C 190.121094 300.988281 190.214844 301.082031 190.332031 301.082031 C 190.449219 301.082031 190.542969 300.988281 190.542969 300.871094 Z M 190.542969 300.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.148438 302.574219 C 192.148438 302.457031 192.054688 302.363281 191.9375 302.363281 C 191.820312 302.363281 191.726562 302.457031 191.726562 302.574219 C 191.726562 302.691406 191.820312 302.785156 191.9375 302.785156 C 192.054688 302.785156 192.148438 302.691406 192.148438 302.574219 Z M 192.148438 302.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.367188 304.667969 C 192.367188 304.550781 192.273438 304.457031 192.15625 304.457031 C 192.039062 304.457031 191.945312 304.550781 191.945312 304.667969 C 191.945312 304.785156 192.039062 304.878906 192.15625 304.878906 C 192.273438 304.878906 192.367188 304.785156 192.367188 304.667969 Z M 192.367188 304.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.574219 304.574219 C 195.574219 304.457031 195.480469 304.363281 195.363281 304.363281 C 195.246094 304.363281 195.152344 304.457031 195.152344 304.574219 C 195.152344 304.691406 195.246094 304.785156 195.363281 304.785156 C 195.480469 304.785156 195.574219 304.691406 195.574219 304.574219 Z M 195.574219 304.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.101562 307.429688 C 195.101562 307.3125 195.007812 307.21875 194.890625 307.21875 C 194.773438 307.21875 194.679688 307.3125 194.679688 307.429688 C 194.679688 307.546875 194.773438 307.640625 194.890625 307.640625 C 195.007812 307.640625 195.101562 307.546875 195.101562 307.429688 Z M 195.101562 307.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.640625 309.390625 C 198.640625 309.273438 198.546875 309.179688 198.429688 309.179688 C 198.3125 309.179688 198.21875 309.273438 198.21875 309.390625 C 198.21875 309.507812 198.3125 309.601562 198.429688 309.601562 C 198.546875 309.601562 198.640625 309.507812 198.640625 309.390625 Z M 198.640625 309.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.875 309.332031 C 194.875 309.214844 194.78125 309.121094 194.664062 309.121094 C 194.546875 309.121094 194.453125 309.214844 194.453125 309.332031 C 194.453125 309.449219 194.546875 309.542969 194.664062 309.542969 C 194.78125 309.542969 194.875 309.449219 194.875 309.332031 Z M 194.875 309.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.339844 305.363281 C 200.339844 305.246094 200.246094 305.152344 200.128906 305.152344 C 200.011719 305.152344 199.917969 305.246094 199.917969 305.363281 C 199.917969 305.480469 200.011719 305.574219 200.128906 305.574219 C 200.246094 305.574219 200.339844 305.480469 200.339844 305.363281 Z M 200.339844 305.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.050781 304.605469 C 201.050781 304.488281 200.957031 304.394531 200.839844 304.394531 C 200.722656 304.394531 200.628906 304.488281 200.628906 304.605469 C 200.628906 304.722656 200.722656 304.816406 200.839844 304.816406 C 200.957031 304.816406 201.050781 304.722656 201.050781 304.605469 Z M 201.050781 304.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.101562 305.503906 C 196.101562 305.386719 196.007812 305.292969 195.890625 305.292969 C 195.773438 305.292969 195.679688 305.386719 195.679688 305.503906 C 195.679688 305.621094 195.773438 305.714844 195.890625 305.714844 C 196.007812 305.714844 196.101562 305.621094 196.101562 305.503906 Z M 196.101562 305.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.335938 301.683594 C 198.335938 301.566406 198.242188 301.472656 198.125 301.472656 C 198.007812 301.472656 197.914062 301.566406 197.914062 301.683594 C 197.914062 301.800781 198.007812 301.894531 198.125 301.894531 C 198.242188 301.894531 198.335938 301.800781 198.335938 301.683594 Z M 198.335938 301.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.558594 302.796875 C 202.558594 302.679688 202.464844 302.585938 202.347656 302.585938 C 202.230469 302.585938 202.136719 302.679688 202.136719 302.796875 C 202.136719 302.914062 202.230469 303.007812 202.347656 303.007812 C 202.464844 303.007812 202.558594 302.914062 202.558594 302.796875 Z M 202.558594 302.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.890625 302.019531 C 203.890625 301.902344 203.796875 301.808594 203.679688 301.808594 C 203.5625 301.808594 203.46875 301.902344 203.46875 302.019531 C 203.46875 302.136719 203.5625 302.230469 203.679688 302.230469 C 203.796875 302.230469 203.890625 302.136719 203.890625 302.019531 Z M 203.890625 302.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.839844 304.132812 C 205.839844 304.015625 205.746094 303.921875 205.628906 303.921875 C 205.511719 303.921875 205.417969 304.015625 205.417969 304.132812 C 205.417969 304.25 205.511719 304.34375 205.628906 304.34375 C 205.746094 304.34375 205.839844 304.25 205.839844 304.132812 Z M 205.839844 304.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.914062 304.816406 C 207.914062 304.699219 207.820312 304.605469 207.703125 304.605469 C 207.585938 304.605469 207.492188 304.699219 207.492188 304.816406 C 207.492188 304.933594 207.585938 305.027344 207.703125 305.027344 C 207.820312 305.027344 207.914062 304.933594 207.914062 304.816406 Z M 207.914062 304.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.589844 306.097656 C 208.589844 305.980469 208.496094 305.886719 208.378906 305.886719 C 208.261719 305.886719 208.167969 305.980469 208.167969 306.097656 C 208.167969 306.214844 208.261719 306.308594 208.378906 306.308594 C 208.496094 306.308594 208.589844 306.214844 208.589844 306.097656 Z M 208.589844 306.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.203125 305.097656 C 207.203125 304.980469 207.109375 304.886719 206.992188 304.886719 C 206.875 304.886719 206.78125 304.980469 206.78125 305.097656 C 206.78125 305.214844 206.875 305.308594 206.992188 305.308594 C 207.109375 305.308594 207.203125 305.214844 207.203125 305.097656 Z M 207.203125 305.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.9375 303.894531 C 207.9375 303.777344 207.84375 303.683594 207.726562 303.683594 C 207.609375 303.683594 207.515625 303.777344 207.515625 303.894531 C 207.515625 304.011719 207.609375 304.105469 207.726562 304.105469 C 207.84375 304.105469 207.9375 304.011719 207.9375 303.894531 Z M 207.9375 303.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.550781 302.429688 C 205.550781 302.3125 205.457031 302.21875 205.339844 302.21875 C 205.222656 302.21875 205.128906 302.3125 205.128906 302.429688 C 205.128906 302.546875 205.222656 302.640625 205.339844 302.640625 C 205.457031 302.640625 205.550781 302.546875 205.550781 302.429688 Z M 205.550781 302.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.605469 300.335938 C 206.605469 300.21875 206.511719 300.125 206.394531 300.125 C 206.277344 300.125 206.183594 300.21875 206.183594 300.335938 C 206.183594 300.453125 206.277344 300.546875 206.394531 300.546875 C 206.511719 300.546875 206.605469 300.453125 206.605469 300.335938 Z M 206.605469 300.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.425781 299.90625 C 205.425781 299.789062 205.332031 299.695312 205.214844 299.695312 C 205.097656 299.695312 205.003906 299.789062 205.003906 299.90625 C 205.003906 300.023438 205.097656 300.117188 205.214844 300.117188 C 205.332031 300.117188 205.425781 300.023438 205.425781 299.90625 Z M 205.425781 299.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.730469 299.949219 C 206.730469 299.832031 206.636719 299.738281 206.519531 299.738281 C 206.402344 299.738281 206.308594 299.832031 206.308594 299.949219 C 206.308594 300.066406 206.402344 300.160156 206.519531 300.160156 C 206.636719 300.160156 206.730469 300.066406 206.730469 299.949219 Z M 206.730469 299.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.269531 301.765625 C 206.269531 301.648438 206.175781 301.554688 206.058594 301.554688 C 205.941406 301.554688 205.847656 301.648438 205.847656 301.765625 C 205.847656 301.882812 205.941406 301.976562 206.058594 301.976562 C 206.175781 301.976562 206.269531 301.882812 206.269531 301.765625 Z M 206.269531 301.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.828125 305.636719 C 203.828125 305.519531 203.734375 305.425781 203.617188 305.425781 C 203.5 305.425781 203.40625 305.519531 203.40625 305.636719 C 203.40625 305.753906 203.5 305.847656 203.617188 305.847656 C 203.734375 305.847656 203.828125 305.753906 203.828125 305.636719 Z M 203.828125 305.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.273438 304.394531 C 208.273438 304.277344 208.179688 304.183594 208.0625 304.183594 C 207.945312 304.183594 207.851562 304.277344 207.851562 304.394531 C 207.851562 304.511719 207.945312 304.605469 208.0625 304.605469 C 208.179688 304.605469 208.273438 304.511719 208.273438 304.394531 Z M 208.273438 304.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.273438 302.917969 C 204.273438 302.800781 204.179688 302.707031 204.0625 302.707031 C 203.945312 302.707031 203.851562 302.800781 203.851562 302.917969 C 203.851562 303.035156 203.945312 303.128906 204.0625 303.128906 C 204.179688 303.128906 204.273438 303.035156 204.273438 302.917969 Z M 204.273438 302.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.941406 301.191406 C 203.941406 301.074219 203.847656 300.980469 203.730469 300.980469 C 203.613281 300.980469 203.519531 301.074219 203.519531 301.191406 C 203.519531 301.308594 203.613281 301.402344 203.730469 301.402344 C 203.847656 301.402344 203.941406 301.308594 203.941406 301.191406 Z M 203.941406 301.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.753906 302.71875 C 203.753906 302.601562 203.660156 302.507812 203.542969 302.507812 C 203.425781 302.507812 203.332031 302.601562 203.332031 302.71875 C 203.332031 302.835938 203.425781 302.929688 203.542969 302.929688 C 203.660156 302.929688 203.753906 302.835938 203.753906 302.71875 Z M 203.753906 302.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.78125 301.304688 C 205.78125 301.1875 205.6875 301.09375 205.570312 301.09375 C 205.453125 301.09375 205.359375 301.1875 205.359375 301.304688 C 205.359375 301.421875 205.453125 301.515625 205.570312 301.515625 C 205.6875 301.515625 205.78125 301.421875 205.78125 301.304688 Z M 205.78125 301.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.03125 305.714844 C 204.03125 305.597656 203.9375 305.503906 203.820312 305.503906 C 203.703125 305.503906 203.609375 305.597656 203.609375 305.714844 C 203.609375 305.832031 203.703125 305.925781 203.820312 305.925781 C 203.9375 305.925781 204.03125 305.832031 204.03125 305.714844 Z M 204.03125 305.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.625 306.800781 C 204.625 306.683594 204.53125 306.589844 204.414062 306.589844 C 204.296875 306.589844 204.203125 306.683594 204.203125 306.800781 C 204.203125 306.917969 204.296875 307.011719 204.414062 307.011719 C 204.53125 307.011719 204.625 306.917969 204.625 306.800781 Z M 204.625 306.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.257812 303.675781 C 204.257812 303.558594 204.164062 303.464844 204.046875 303.464844 C 203.929688 303.464844 203.835938 303.558594 203.835938 303.675781 C 203.835938 303.792969 203.929688 303.886719 204.046875 303.886719 C 204.164062 303.886719 204.257812 303.792969 204.257812 303.675781 Z M 204.257812 303.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.003906 299.378906 C 202.003906 299.261719 201.910156 299.167969 201.792969 299.167969 C 201.675781 299.167969 201.582031 299.261719 201.582031 299.378906 C 201.582031 299.496094 201.675781 299.589844 201.792969 299.589844 C 201.910156 299.589844 202.003906 299.496094 202.003906 299.378906 Z M 202.003906 299.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.34375 297.265625 C 201.34375 297.148438 201.25 297.054688 201.132812 297.054688 C 201.015625 297.054688 200.921875 297.148438 200.921875 297.265625 C 200.921875 297.382812 201.015625 297.476562 201.132812 297.476562 C 201.25 297.476562 201.34375 297.382812 201.34375 297.265625 Z M 201.34375 297.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.433594 296.898438 C 201.433594 296.78125 201.339844 296.6875 201.222656 296.6875 C 201.105469 296.6875 201.011719 296.78125 201.011719 296.898438 C 201.011719 297.015625 201.105469 297.109375 201.222656 297.109375 C 201.339844 297.109375 201.433594 297.015625 201.433594 296.898438 Z M 201.433594 296.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.191406 299.695312 C 198.191406 299.578125 198.097656 299.484375 197.980469 299.484375 C 197.863281 299.484375 197.769531 299.578125 197.769531 299.695312 C 197.769531 299.8125 197.863281 299.90625 197.980469 299.90625 C 198.097656 299.90625 198.191406 299.8125 198.191406 299.695312 Z M 198.191406 299.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.261719 299.839844 C 196.261719 299.722656 196.167969 299.628906 196.050781 299.628906 C 195.933594 299.628906 195.839844 299.722656 195.839844 299.839844 C 195.839844 299.957031 195.933594 300.050781 196.050781 300.050781 C 196.167969 300.050781 196.261719 299.957031 196.261719 299.839844 Z M 196.261719 299.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.636719 295.21875 C 195.636719 295.101562 195.542969 295.007812 195.425781 295.007812 C 195.308594 295.007812 195.214844 295.101562 195.214844 295.21875 C 195.214844 295.335938 195.308594 295.429688 195.425781 295.429688 C 195.542969 295.429688 195.636719 295.335938 195.636719 295.21875 Z M 195.636719 295.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.429688 295.679688 C 195.429688 295.5625 195.335938 295.46875 195.21875 295.46875 C 195.101562 295.46875 195.007812 295.5625 195.007812 295.679688 C 195.007812 295.796875 195.101562 295.890625 195.21875 295.890625 C 195.335938 295.890625 195.429688 295.796875 195.429688 295.679688 Z M 195.429688 295.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.582031 293.324219 C 195.582031 293.207031 195.488281 293.113281 195.371094 293.113281 C 195.253906 293.113281 195.160156 293.207031 195.160156 293.324219 C 195.160156 293.441406 195.253906 293.535156 195.371094 293.535156 C 195.488281 293.535156 195.582031 293.441406 195.582031 293.324219 Z M 195.582031 293.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.675781 292.394531 C 198.675781 292.277344 198.582031 292.183594 198.464844 292.183594 C 198.347656 292.183594 198.253906 292.277344 198.253906 292.394531 C 198.253906 292.511719 198.347656 292.605469 198.464844 292.605469 C 198.582031 292.605469 198.675781 292.511719 198.675781 292.394531 Z M 198.675781 292.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.9375 293.09375 C 199.9375 292.976562 199.84375 292.882812 199.726562 292.882812 C 199.609375 292.882812 199.515625 292.976562 199.515625 293.09375 C 199.515625 293.210938 199.609375 293.304688 199.726562 293.304688 C 199.84375 293.304688 199.9375 293.210938 199.9375 293.09375 Z M 199.9375 293.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.355469 294.769531 C 199.355469 294.652344 199.261719 294.558594 199.144531 294.558594 C 199.027344 294.558594 198.933594 294.652344 198.933594 294.769531 C 198.933594 294.886719 199.027344 294.980469 199.144531 294.980469 C 199.261719 294.980469 199.355469 294.886719 199.355469 294.769531 Z M 199.355469 294.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.144531 295.917969 C 198.144531 295.800781 198.050781 295.707031 197.933594 295.707031 C 197.816406 295.707031 197.722656 295.800781 197.722656 295.917969 C 197.722656 296.035156 197.816406 296.128906 197.933594 296.128906 C 198.050781 296.128906 198.144531 296.035156 198.144531 295.917969 Z M 198.144531 295.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.269531 293.195312 C 200.269531 293.078125 200.175781 292.984375 200.058594 292.984375 C 199.941406 292.984375 199.847656 293.078125 199.847656 293.195312 C 199.847656 293.3125 199.941406 293.40625 200.058594 293.40625 C 200.175781 293.40625 200.269531 293.3125 200.269531 293.195312 Z M 200.269531 293.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.785156 289.597656 C 201.785156 289.480469 201.691406 289.386719 201.574219 289.386719 C 201.457031 289.386719 201.363281 289.480469 201.363281 289.597656 C 201.363281 289.714844 201.457031 289.808594 201.574219 289.808594 C 201.691406 289.808594 201.785156 289.714844 201.785156 289.597656 Z M 201.785156 289.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.957031 292.300781 C 202.957031 292.183594 202.863281 292.089844 202.746094 292.089844 C 202.628906 292.089844 202.535156 292.183594 202.535156 292.300781 C 202.535156 292.417969 202.628906 292.511719 202.746094 292.511719 C 202.863281 292.511719 202.957031 292.417969 202.957031 292.300781 Z M 202.957031 292.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.289062 289.75 C 197.289062 289.632812 197.195312 289.539062 197.078125 289.539062 C 196.960938 289.539062 196.867188 289.632812 196.867188 289.75 C 196.867188 289.867188 196.960938 289.960938 197.078125 289.960938 C 197.195312 289.960938 197.289062 289.867188 197.289062 289.75 Z M 197.289062 289.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.957031 288.804688 C 194.957031 288.6875 194.863281 288.59375 194.746094 288.59375 C 194.628906 288.59375 194.535156 288.6875 194.535156 288.804688 C 194.535156 288.921875 194.628906 289.015625 194.746094 289.015625 C 194.863281 289.015625 194.957031 288.921875 194.957031 288.804688 Z M 194.957031 288.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.789062 293.152344 C 194.789062 293.035156 194.695312 292.941406 194.578125 292.941406 C 194.460938 292.941406 194.367188 293.035156 194.367188 293.152344 C 194.367188 293.269531 194.460938 293.363281 194.578125 293.363281 C 194.695312 293.363281 194.789062 293.269531 194.789062 293.152344 Z M 194.789062 293.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.980469 291.9375 C 196.980469 291.820312 196.886719 291.726562 196.769531 291.726562 C 196.652344 291.726562 196.558594 291.820312 196.558594 291.9375 C 196.558594 292.054688 196.652344 292.148438 196.769531 292.148438 C 196.886719 292.148438 196.980469 292.054688 196.980469 291.9375 Z M 196.980469 291.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.6875 293.003906 C 196.6875 292.886719 196.59375 292.792969 196.476562 292.792969 C 196.359375 292.792969 196.265625 292.886719 196.265625 293.003906 C 196.265625 293.121094 196.359375 293.214844 196.476562 293.214844 C 196.59375 293.214844 196.6875 293.121094 196.6875 293.003906 Z M 196.6875 293.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.984375 293.65625 C 194.984375 293.539062 194.890625 293.445312 194.773438 293.445312 C 194.65625 293.445312 194.5625 293.539062 194.5625 293.65625 C 194.5625 293.773438 194.65625 293.867188 194.773438 293.867188 C 194.890625 293.867188 194.984375 293.773438 194.984375 293.65625 Z M 194.984375 293.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.96875 293.839844 C 192.96875 293.722656 192.875 293.628906 192.757812 293.628906 C 192.640625 293.628906 192.546875 293.722656 192.546875 293.839844 C 192.546875 293.957031 192.640625 294.050781 192.757812 294.050781 C 192.875 294.050781 192.96875 293.957031 192.96875 293.839844 Z M 192.96875 293.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.640625 293.460938 C 194.640625 293.34375 194.546875 293.25 194.429688 293.25 C 194.3125 293.25 194.21875 293.34375 194.21875 293.460938 C 194.21875 293.578125 194.3125 293.671875 194.429688 293.671875 C 194.546875 293.671875 194.640625 293.578125 194.640625 293.460938 Z M 194.640625 293.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.070312 289.882812 C 192.070312 289.765625 191.976562 289.671875 191.859375 289.671875 C 191.742188 289.671875 191.648438 289.765625 191.648438 289.882812 C 191.648438 290 191.742188 290.09375 191.859375 290.09375 C 191.976562 290.09375 192.070312 290 192.070312 289.882812 Z M 192.070312 289.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.191406 290.421875 C 189.191406 290.304688 189.097656 290.210938 188.980469 290.210938 C 188.863281 290.210938 188.769531 290.304688 188.769531 290.421875 C 188.769531 290.539062 188.863281 290.632812 188.980469 290.632812 C 189.097656 290.632812 189.191406 290.539062 189.191406 290.421875 Z M 189.191406 290.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.046875 289.089844 C 188.046875 288.972656 187.953125 288.878906 187.835938 288.878906 C 187.71875 288.878906 187.625 288.972656 187.625 289.089844 C 187.625 289.207031 187.71875 289.300781 187.835938 289.300781 C 187.953125 289.300781 188.046875 289.207031 188.046875 289.089844 Z M 188.046875 289.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.433594 287.886719 C 185.433594 287.769531 185.339844 287.675781 185.222656 287.675781 C 185.105469 287.675781 185.011719 287.769531 185.011719 287.886719 C 185.011719 288.003906 185.105469 288.097656 185.222656 288.097656 C 185.339844 288.097656 185.433594 288.003906 185.433594 287.886719 Z M 185.433594 287.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.894531 287.796875 C 183.894531 287.679688 183.800781 287.585938 183.683594 287.585938 C 183.566406 287.585938 183.472656 287.679688 183.472656 287.796875 C 183.472656 287.914062 183.566406 288.007812 183.683594 288.007812 C 183.800781 288.007812 183.894531 287.914062 183.894531 287.796875 Z M 183.894531 287.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.199219 285.773438 C 181.199219 285.65625 181.105469 285.5625 180.988281 285.5625 C 180.871094 285.5625 180.777344 285.65625 180.777344 285.773438 C 180.777344 285.890625 180.871094 285.984375 180.988281 285.984375 C 181.105469 285.984375 181.199219 285.890625 181.199219 285.773438 Z M 181.199219 285.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.25 281.199219 C 177.25 281.082031 177.15625 280.988281 177.039062 280.988281 C 176.921875 280.988281 176.828125 281.082031 176.828125 281.199219 C 176.828125 281.316406 176.921875 281.410156 177.039062 281.410156 C 177.15625 281.410156 177.25 281.316406 177.25 281.199219 Z M 177.25 281.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.3125 281.128906 C 176.3125 281.011719 176.21875 280.917969 176.101562 280.917969 C 175.984375 280.917969 175.890625 281.011719 175.890625 281.128906 C 175.890625 281.246094 175.984375 281.339844 176.101562 281.339844 C 176.21875 281.339844 176.3125 281.246094 176.3125 281.128906 Z M 176.3125 281.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.503906 276.511719 C 173.503906 276.394531 173.410156 276.300781 173.292969 276.300781 C 173.175781 276.300781 173.082031 276.394531 173.082031 276.511719 C 173.082031 276.628906 173.175781 276.722656 173.292969 276.722656 C 173.410156 276.722656 173.503906 276.628906 173.503906 276.511719 Z M 173.503906 276.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.835938 274.851562 C 172.835938 274.734375 172.742188 274.640625 172.625 274.640625 C 172.507812 274.640625 172.414062 274.734375 172.414062 274.851562 C 172.414062 274.96875 172.507812 275.0625 172.625 275.0625 C 172.742188 275.0625 172.835938 274.96875 172.835938 274.851562 Z M 172.835938 274.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.957031 271.371094 C 174.957031 271.253906 174.863281 271.160156 174.746094 271.160156 C 174.628906 271.160156 174.535156 271.253906 174.535156 271.371094 C 174.535156 271.488281 174.628906 271.582031 174.746094 271.582031 C 174.863281 271.582031 174.957031 271.488281 174.957031 271.371094 Z M 174.957031 271.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.855469 271.636719 C 173.855469 271.519531 173.761719 271.425781 173.644531 271.425781 C 173.527344 271.425781 173.433594 271.519531 173.433594 271.636719 C 173.433594 271.753906 173.527344 271.847656 173.644531 271.847656 C 173.761719 271.847656 173.855469 271.753906 173.855469 271.636719 Z M 173.855469 271.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.484375 273.484375 C 174.484375 273.367188 174.390625 273.273438 174.273438 273.273438 C 174.15625 273.273438 174.0625 273.367188 174.0625 273.484375 C 174.0625 273.601562 174.15625 273.695312 174.273438 273.695312 C 174.390625 273.695312 174.484375 273.601562 174.484375 273.484375 Z M 174.484375 273.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.992188 273.542969 C 175.992188 273.425781 175.898438 273.332031 175.78125 273.332031 C 175.664062 273.332031 175.570312 273.425781 175.570312 273.542969 C 175.570312 273.660156 175.664062 273.753906 175.78125 273.753906 C 175.898438 273.753906 175.992188 273.660156 175.992188 273.542969 Z M 175.992188 273.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.082031 274.550781 C 176.082031 274.433594 175.988281 274.339844 175.871094 274.339844 C 175.753906 274.339844 175.660156 274.433594 175.660156 274.550781 C 175.660156 274.667969 175.753906 274.761719 175.871094 274.761719 C 175.988281 274.761719 176.082031 274.667969 176.082031 274.550781 Z M 176.082031 274.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.820312 270.457031 C 176.820312 270.339844 176.726562 270.246094 176.609375 270.246094 C 176.492188 270.246094 176.398438 270.339844 176.398438 270.457031 C 176.398438 270.574219 176.492188 270.667969 176.609375 270.667969 C 176.726562 270.667969 176.820312 270.574219 176.820312 270.457031 Z M 176.820312 270.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.800781 272.585938 C 177.800781 272.46875 177.707031 272.375 177.589844 272.375 C 177.472656 272.375 177.378906 272.46875 177.378906 272.585938 C 177.378906 272.703125 177.472656 272.796875 177.589844 272.796875 C 177.707031 272.796875 177.800781 272.703125 177.800781 272.585938 Z M 177.800781 272.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.863281 273.328125 C 176.863281 273.210938 176.769531 273.117188 176.652344 273.117188 C 176.535156 273.117188 176.441406 273.210938 176.441406 273.328125 C 176.441406 273.445312 176.535156 273.539062 176.652344 273.539062 C 176.769531 273.539062 176.863281 273.445312 176.863281 273.328125 Z M 176.863281 273.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.523438 272.519531 C 176.523438 272.402344 176.429688 272.308594 176.3125 272.308594 C 176.195312 272.308594 176.101562 272.402344 176.101562 272.519531 C 176.101562 272.636719 176.195312 272.730469 176.3125 272.730469 C 176.429688 272.730469 176.523438 272.636719 176.523438 272.519531 Z M 176.523438 272.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.722656 275.023438 C 179.722656 274.90625 179.628906 274.8125 179.511719 274.8125 C 179.394531 274.8125 179.300781 274.90625 179.300781 275.023438 C 179.300781 275.140625 179.394531 275.234375 179.511719 275.234375 C 179.628906 275.234375 179.722656 275.140625 179.722656 275.023438 Z M 179.722656 275.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.304688 274.195312 C 181.304688 274.078125 181.210938 273.984375 181.09375 273.984375 C 180.976562 273.984375 180.882812 274.078125 180.882812 274.195312 C 180.882812 274.3125 180.976562 274.40625 181.09375 274.40625 C 181.210938 274.40625 181.304688 274.3125 181.304688 274.195312 Z M 181.304688 274.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.265625 276.054688 C 181.265625 275.9375 181.171875 275.84375 181.054688 275.84375 C 180.9375 275.84375 180.84375 275.9375 180.84375 276.054688 C 180.84375 276.171875 180.9375 276.265625 181.054688 276.265625 C 181.171875 276.265625 181.265625 276.171875 181.265625 276.054688 Z M 181.265625 276.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.332031 276.925781 C 183.332031 276.808594 183.238281 276.714844 183.121094 276.714844 C 183.003906 276.714844 182.910156 276.808594 182.910156 276.925781 C 182.910156 277.042969 183.003906 277.136719 183.121094 277.136719 C 183.238281 277.136719 183.332031 277.042969 183.332031 276.925781 Z M 183.332031 276.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.113281 275.011719 C 179.113281 274.894531 179.019531 274.800781 178.902344 274.800781 C 178.785156 274.800781 178.691406 274.894531 178.691406 275.011719 C 178.691406 275.128906 178.785156 275.222656 178.902344 275.222656 C 179.019531 275.222656 179.113281 275.128906 179.113281 275.011719 Z M 179.113281 275.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.261719 282.085938 C 180.261719 281.96875 180.167969 281.875 180.050781 281.875 C 179.933594 281.875 179.839844 281.96875 179.839844 282.085938 C 179.839844 282.203125 179.933594 282.296875 180.050781 282.296875 C 180.167969 282.296875 180.261719 282.203125 180.261719 282.085938 Z M 180.261719 282.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.605469 278.078125 C 178.605469 277.960938 178.511719 277.867188 178.394531 277.867188 C 178.277344 277.867188 178.183594 277.960938 178.183594 278.078125 C 178.183594 278.195312 178.277344 278.289062 178.394531 278.289062 C 178.511719 278.289062 178.605469 278.195312 178.605469 278.078125 Z M 178.605469 278.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.082031 277.851562 C 181.082031 277.734375 180.988281 277.640625 180.871094 277.640625 C 180.753906 277.640625 180.660156 277.734375 180.660156 277.851562 C 180.660156 277.96875 180.753906 278.0625 180.871094 278.0625 C 180.988281 278.0625 181.082031 277.96875 181.082031 277.851562 Z M 181.082031 277.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.484375 279.980469 C 181.484375 279.863281 181.390625 279.769531 181.273438 279.769531 C 181.15625 279.769531 181.0625 279.863281 181.0625 279.980469 C 181.0625 280.097656 181.15625 280.191406 181.273438 280.191406 C 181.390625 280.191406 181.484375 280.097656 181.484375 279.980469 Z M 181.484375 279.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.480469 277.449219 C 180.480469 277.332031 180.386719 277.238281 180.269531 277.238281 C 180.152344 277.238281 180.058594 277.332031 180.058594 277.449219 C 180.058594 277.566406 180.152344 277.660156 180.269531 277.660156 C 180.386719 277.660156 180.480469 277.566406 180.480469 277.449219 Z M 180.480469 277.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.046875 281.863281 C 182.046875 281.746094 181.953125 281.652344 181.835938 281.652344 C 181.71875 281.652344 181.625 281.746094 181.625 281.863281 C 181.625 281.980469 181.71875 282.074219 181.835938 282.074219 C 181.953125 282.074219 182.046875 281.980469 182.046875 281.863281 Z M 182.046875 281.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.183594 281.109375 C 183.183594 280.992188 183.089844 280.898438 182.972656 280.898438 C 182.855469 280.898438 182.761719 280.992188 182.761719 281.109375 C 182.761719 281.226562 182.855469 281.320312 182.972656 281.320312 C 183.089844 281.320312 183.183594 281.226562 183.183594 281.109375 Z M 183.183594 281.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.40625 282.207031 C 180.40625 282.089844 180.3125 281.996094 180.195312 281.996094 C 180.078125 281.996094 179.984375 282.089844 179.984375 282.207031 C 179.984375 282.324219 180.078125 282.417969 180.195312 282.417969 C 180.3125 282.417969 180.40625 282.324219 180.40625 282.207031 Z M 180.40625 282.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.867188 280.929688 C 176.867188 280.8125 176.773438 280.71875 176.65625 280.71875 C 176.539062 280.71875 176.445312 280.8125 176.445312 280.929688 C 176.445312 281.046875 176.539062 281.140625 176.65625 281.140625 C 176.773438 281.140625 176.867188 281.046875 176.867188 280.929688 Z M 176.867188 280.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.996094 280.90625 C 174.996094 280.789062 174.902344 280.695312 174.785156 280.695312 C 174.667969 280.695312 174.574219 280.789062 174.574219 280.90625 C 174.574219 281.023438 174.667969 281.117188 174.785156 281.117188 C 174.902344 281.117188 174.996094 281.023438 174.996094 280.90625 Z M 174.996094 280.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.816406 280.898438 C 169.816406 280.78125 169.722656 280.6875 169.605469 280.6875 C 169.488281 280.6875 169.394531 280.78125 169.394531 280.898438 C 169.394531 281.015625 169.488281 281.109375 169.605469 281.109375 C 169.722656 281.109375 169.816406 281.015625 169.816406 280.898438 Z M 169.816406 280.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.671875 280.074219 C 168.671875 279.957031 168.578125 279.863281 168.460938 279.863281 C 168.34375 279.863281 168.25 279.957031 168.25 280.074219 C 168.25 280.191406 168.34375 280.285156 168.460938 280.285156 C 168.578125 280.285156 168.671875 280.191406 168.671875 280.074219 Z M 168.671875 280.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.148438 279.324219 C 171.148438 279.207031 171.054688 279.113281 170.9375 279.113281 C 170.820312 279.113281 170.726562 279.207031 170.726562 279.324219 C 170.726562 279.441406 170.820312 279.535156 170.9375 279.535156 C 171.054688 279.535156 171.148438 279.441406 171.148438 279.324219 Z M 171.148438 279.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.566406 279.386719 C 171.566406 279.269531 171.472656 279.175781 171.355469 279.175781 C 171.238281 279.175781 171.144531 279.269531 171.144531 279.386719 C 171.144531 279.503906 171.238281 279.597656 171.355469 279.597656 C 171.472656 279.597656 171.566406 279.503906 171.566406 279.386719 Z M 171.566406 279.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.191406 280.992188 C 172.191406 280.875 172.097656 280.78125 171.980469 280.78125 C 171.863281 280.78125 171.769531 280.875 171.769531 280.992188 C 171.769531 281.109375 171.863281 281.203125 171.980469 281.203125 C 172.097656 281.203125 172.191406 281.109375 172.191406 280.992188 Z M 172.191406 280.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.796875 281.878906 C 172.796875 281.761719 172.703125 281.667969 172.585938 281.667969 C 172.46875 281.667969 172.375 281.761719 172.375 281.878906 C 172.375 281.996094 172.46875 282.089844 172.585938 282.089844 C 172.703125 282.089844 172.796875 281.996094 172.796875 281.878906 Z M 172.796875 281.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.621094 283.433594 C 172.621094 283.316406 172.527344 283.222656 172.410156 283.222656 C 172.292969 283.222656 172.199219 283.316406 172.199219 283.433594 C 172.199219 283.550781 172.292969 283.644531 172.410156 283.644531 C 172.527344 283.644531 172.621094 283.550781 172.621094 283.433594 Z M 172.621094 283.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.878906 283.640625 C 170.878906 283.523438 170.785156 283.429688 170.667969 283.429688 C 170.550781 283.429688 170.457031 283.523438 170.457031 283.640625 C 170.457031 283.757812 170.550781 283.851562 170.667969 283.851562 C 170.785156 283.851562 170.878906 283.757812 170.878906 283.640625 Z M 170.878906 283.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.636719 280.152344 C 170.636719 280.035156 170.542969 279.941406 170.425781 279.941406 C 170.308594 279.941406 170.214844 280.035156 170.214844 280.152344 C 170.214844 280.269531 170.308594 280.363281 170.425781 280.363281 C 170.542969 280.363281 170.636719 280.269531 170.636719 280.152344 Z M 170.636719 280.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.925781 277.4375 C 166.925781 277.320312 166.832031 277.226562 166.714844 277.226562 C 166.597656 277.226562 166.503906 277.320312 166.503906 277.4375 C 166.503906 277.554688 166.597656 277.648438 166.714844 277.648438 C 166.832031 277.648438 166.925781 277.554688 166.925781 277.4375 Z M 166.925781 277.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.519531 280.539062 C 167.519531 280.421875 167.425781 280.328125 167.308594 280.328125 C 167.191406 280.328125 167.097656 280.421875 167.097656 280.539062 C 167.097656 280.65625 167.191406 280.75 167.308594 280.75 C 167.425781 280.75 167.519531 280.65625 167.519531 280.539062 Z M 167.519531 280.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.328125 281.492188 C 168.328125 281.375 168.234375 281.28125 168.117188 281.28125 C 168 281.28125 167.90625 281.375 167.90625 281.492188 C 167.90625 281.609375 168 281.703125 168.117188 281.703125 C 168.234375 281.703125 168.328125 281.609375 168.328125 281.492188 Z M 168.328125 281.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.898438 283.03125 C 167.898438 282.914062 167.804688 282.820312 167.6875 282.820312 C 167.570312 282.820312 167.476562 282.914062 167.476562 283.03125 C 167.476562 283.148438 167.570312 283.242188 167.6875 283.242188 C 167.804688 283.242188 167.898438 283.148438 167.898438 283.03125 Z M 167.898438 283.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.722656 283.484375 C 165.722656 283.367188 165.628906 283.273438 165.511719 283.273438 C 165.394531 283.273438 165.300781 283.367188 165.300781 283.484375 C 165.300781 283.601562 165.394531 283.695312 165.511719 283.695312 C 165.628906 283.695312 165.722656 283.601562 165.722656 283.484375 Z M 165.722656 283.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.921875 283.789062 C 161.921875 283.671875 161.828125 283.578125 161.710938 283.578125 C 161.59375 283.578125 161.5 283.671875 161.5 283.789062 C 161.5 283.90625 161.59375 284 161.710938 284 C 161.828125 284 161.921875 283.90625 161.921875 283.789062 Z M 161.921875 283.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.417969 283.558594 C 161.417969 283.441406 161.324219 283.347656 161.207031 283.347656 C 161.089844 283.347656 160.996094 283.441406 160.996094 283.558594 C 160.996094 283.675781 161.089844 283.769531 161.207031 283.769531 C 161.324219 283.769531 161.417969 283.675781 161.417969 283.558594 Z M 161.417969 283.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.28125 280.042969 C 161.28125 279.925781 161.1875 279.832031 161.070312 279.832031 C 160.953125 279.832031 160.859375 279.925781 160.859375 280.042969 C 160.859375 280.160156 160.953125 280.253906 161.070312 280.253906 C 161.1875 280.253906 161.28125 280.160156 161.28125 280.042969 Z M 161.28125 280.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.445312 278.816406 C 161.445312 278.699219 161.351562 278.605469 161.234375 278.605469 C 161.117188 278.605469 161.023438 278.699219 161.023438 278.816406 C 161.023438 278.933594 161.117188 279.027344 161.234375 279.027344 C 161.351562 279.027344 161.445312 278.933594 161.445312 278.816406 Z M 161.445312 278.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.660156 273.941406 C 160.660156 273.824219 160.566406 273.730469 160.449219 273.730469 C 160.332031 273.730469 160.238281 273.824219 160.238281 273.941406 C 160.238281 274.058594 160.332031 274.152344 160.449219 274.152344 C 160.566406 274.152344 160.660156 274.058594 160.660156 273.941406 Z M 160.660156 273.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.058594 276.054688 C 161.058594 275.9375 160.964844 275.84375 160.847656 275.84375 C 160.730469 275.84375 160.636719 275.9375 160.636719 276.054688 C 160.636719 276.171875 160.730469 276.265625 160.847656 276.265625 C 160.964844 276.265625 161.058594 276.171875 161.058594 276.054688 Z M 161.058594 276.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.800781 273.78125 C 158.800781 273.664062 158.707031 273.570312 158.589844 273.570312 C 158.472656 273.570312 158.378906 273.664062 158.378906 273.78125 C 158.378906 273.898438 158.472656 273.992188 158.589844 273.992188 C 158.707031 273.992188 158.800781 273.898438 158.800781 273.78125 Z M 158.800781 273.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.152344 276.539062 C 159.152344 276.421875 159.058594 276.328125 158.941406 276.328125 C 158.824219 276.328125 158.730469 276.421875 158.730469 276.539062 C 158.730469 276.65625 158.824219 276.75 158.941406 276.75 C 159.058594 276.75 159.152344 276.65625 159.152344 276.539062 Z M 159.152344 276.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.796875 273.90625 C 159.796875 273.789062 159.703125 273.695312 159.585938 273.695312 C 159.46875 273.695312 159.375 273.789062 159.375 273.90625 C 159.375 274.023438 159.46875 274.117188 159.585938 274.117188 C 159.703125 274.117188 159.796875 274.023438 159.796875 273.90625 Z M 159.796875 273.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.09375 276.539062 C 159.09375 276.421875 159 276.328125 158.882812 276.328125 C 158.765625 276.328125 158.671875 276.421875 158.671875 276.539062 C 158.671875 276.65625 158.765625 276.75 158.882812 276.75 C 159 276.75 159.09375 276.65625 159.09375 276.539062 Z M 159.09375 276.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.101562 275.742188 C 157.101562 275.625 157.007812 275.53125 156.890625 275.53125 C 156.773438 275.53125 156.679688 275.625 156.679688 275.742188 C 156.679688 275.859375 156.773438 275.953125 156.890625 275.953125 C 157.007812 275.953125 157.101562 275.859375 157.101562 275.742188 Z M 157.101562 275.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.015625 274.765625 C 156.015625 274.648438 155.921875 274.554688 155.804688 274.554688 C 155.6875 274.554688 155.59375 274.648438 155.59375 274.765625 C 155.59375 274.882812 155.6875 274.976562 155.804688 274.976562 C 155.921875 274.976562 156.015625 274.882812 156.015625 274.765625 Z M 156.015625 274.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.558594 273.527344 C 156.558594 273.410156 156.464844 273.316406 156.347656 273.316406 C 156.230469 273.316406 156.136719 273.410156 156.136719 273.527344 C 156.136719 273.644531 156.230469 273.738281 156.347656 273.738281 C 156.464844 273.738281 156.558594 273.644531 156.558594 273.527344 Z M 156.558594 273.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.070312 271.121094 C 155.070312 271.003906 154.976562 270.910156 154.859375 270.910156 C 154.742188 270.910156 154.648438 271.003906 154.648438 271.121094 C 154.648438 271.238281 154.742188 271.332031 154.859375 271.332031 C 154.976562 271.332031 155.070312 271.238281 155.070312 271.121094 Z M 155.070312 271.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.546875 269.710938 C 155.546875 269.59375 155.453125 269.5 155.335938 269.5 C 155.21875 269.5 155.125 269.59375 155.125 269.710938 C 155.125 269.828125 155.21875 269.921875 155.335938 269.921875 C 155.453125 269.921875 155.546875 269.828125 155.546875 269.710938 Z M 155.546875 269.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.929688 266.304688 C 156.929688 266.1875 156.835938 266.09375 156.71875 266.09375 C 156.601562 266.09375 156.507812 266.1875 156.507812 266.304688 C 156.507812 266.421875 156.601562 266.515625 156.71875 266.515625 C 156.835938 266.515625 156.929688 266.421875 156.929688 266.304688 Z M 156.929688 266.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.871094 263.609375 C 159.871094 263.492188 159.777344 263.398438 159.660156 263.398438 C 159.542969 263.398438 159.449219 263.492188 159.449219 263.609375 C 159.449219 263.726562 159.542969 263.820312 159.660156 263.820312 C 159.777344 263.820312 159.871094 263.726562 159.871094 263.609375 Z M 159.871094 263.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.019531 265.378906 C 158.019531 265.261719 157.925781 265.167969 157.808594 265.167969 C 157.691406 265.167969 157.597656 265.261719 157.597656 265.378906 C 157.597656 265.496094 157.691406 265.589844 157.808594 265.589844 C 157.925781 265.589844 158.019531 265.496094 158.019531 265.378906 Z M 158.019531 265.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.875 265.878906 C 157.875 265.761719 157.78125 265.667969 157.664062 265.667969 C 157.546875 265.667969 157.453125 265.761719 157.453125 265.878906 C 157.453125 265.996094 157.546875 266.089844 157.664062 266.089844 C 157.78125 266.089844 157.875 265.996094 157.875 265.878906 Z M 157.875 265.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.734375 266.972656 C 155.734375 266.855469 155.640625 266.761719 155.523438 266.761719 C 155.40625 266.761719 155.3125 266.855469 155.3125 266.972656 C 155.3125 267.089844 155.40625 267.183594 155.523438 267.183594 C 155.640625 267.183594 155.734375 267.089844 155.734375 266.972656 Z M 155.734375 266.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.726562 270.113281 C 158.726562 269.996094 158.632812 269.902344 158.515625 269.902344 C 158.398438 269.902344 158.304688 269.996094 158.304688 270.113281 C 158.304688 270.230469 158.398438 270.324219 158.515625 270.324219 C 158.632812 270.324219 158.726562 270.230469 158.726562 270.113281 Z M 158.726562 270.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.214844 271.882812 C 159.214844 271.765625 159.121094 271.671875 159.003906 271.671875 C 158.886719 271.671875 158.792969 271.765625 158.792969 271.882812 C 158.792969 272 158.886719 272.09375 159.003906 272.09375 C 159.121094 272.09375 159.214844 272 159.214844 271.882812 Z M 159.214844 271.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.742188 270.234375 C 159.742188 270.117188 159.648438 270.023438 159.53125 270.023438 C 159.414062 270.023438 159.320312 270.117188 159.320312 270.234375 C 159.320312 270.351562 159.414062 270.445312 159.53125 270.445312 C 159.648438 270.445312 159.742188 270.351562 159.742188 270.234375 Z M 159.742188 270.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.636719 268.90625 C 160.636719 268.789062 160.542969 268.695312 160.425781 268.695312 C 160.308594 268.695312 160.214844 268.789062 160.214844 268.90625 C 160.214844 269.023438 160.308594 269.117188 160.425781 269.117188 C 160.542969 269.117188 160.636719 269.023438 160.636719 268.90625 Z M 160.636719 268.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.457031 271.769531 C 161.457031 271.652344 161.363281 271.558594 161.246094 271.558594 C 161.128906 271.558594 161.035156 271.652344 161.035156 271.769531 C 161.035156 271.886719 161.128906 271.980469 161.246094 271.980469 C 161.363281 271.980469 161.457031 271.886719 161.457031 271.769531 Z M 161.457031 271.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.308594 271.429688 C 163.308594 271.3125 163.214844 271.21875 163.097656 271.21875 C 162.980469 271.21875 162.886719 271.3125 162.886719 271.429688 C 162.886719 271.546875 162.980469 271.640625 163.097656 271.640625 C 163.214844 271.640625 163.308594 271.546875 163.308594 271.429688 Z M 163.308594 271.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.113281 268.203125 C 162.113281 268.085938 162.019531 267.992188 161.902344 267.992188 C 161.785156 267.992188 161.691406 268.085938 161.691406 268.203125 C 161.691406 268.320312 161.785156 268.414062 161.902344 268.414062 C 162.019531 268.414062 162.113281 268.320312 162.113281 268.203125 Z M 162.113281 268.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.746094 265.269531 C 160.746094 265.152344 160.652344 265.058594 160.535156 265.058594 C 160.417969 265.058594 160.324219 265.152344 160.324219 265.269531 C 160.324219 265.386719 160.417969 265.480469 160.535156 265.480469 C 160.652344 265.480469 160.746094 265.386719 160.746094 265.269531 Z M 160.746094 265.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.855469 264.03125 C 157.855469 263.914062 157.761719 263.820312 157.644531 263.820312 C 157.527344 263.820312 157.433594 263.914062 157.433594 264.03125 C 157.433594 264.148438 157.527344 264.242188 157.644531 264.242188 C 157.761719 264.242188 157.855469 264.148438 157.855469 264.03125 Z M 157.855469 264.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.378906 264.976562 C 158.378906 264.859375 158.285156 264.765625 158.167969 264.765625 C 158.050781 264.765625 157.957031 264.859375 157.957031 264.976562 C 157.957031 265.09375 158.050781 265.1875 158.167969 265.1875 C 158.285156 265.1875 158.378906 265.09375 158.378906 264.976562 Z M 158.378906 264.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.613281 268.5625 C 156.613281 268.445312 156.519531 268.351562 156.402344 268.351562 C 156.285156 268.351562 156.191406 268.445312 156.191406 268.5625 C 156.191406 268.679688 156.285156 268.773438 156.402344 268.773438 C 156.519531 268.773438 156.613281 268.679688 156.613281 268.5625 Z M 156.613281 268.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.375 268.917969 C 155.375 268.800781 155.28125 268.707031 155.164062 268.707031 C 155.046875 268.707031 154.953125 268.800781 154.953125 268.917969 C 154.953125 269.035156 155.046875 269.128906 155.164062 269.128906 C 155.28125 269.128906 155.375 269.035156 155.375 268.917969 Z M 155.375 268.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.789062 269.917969 C 155.789062 269.800781 155.695312 269.707031 155.578125 269.707031 C 155.460938 269.707031 155.367188 269.800781 155.367188 269.917969 C 155.367188 270.035156 155.460938 270.128906 155.578125 270.128906 C 155.695312 270.128906 155.789062 270.035156 155.789062 269.917969 Z M 155.789062 269.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.003906 268.9375 C 157.003906 268.820312 156.910156 268.726562 156.792969 268.726562 C 156.675781 268.726562 156.582031 268.820312 156.582031 268.9375 C 156.582031 269.054688 156.675781 269.148438 156.792969 269.148438 C 156.910156 269.148438 157.003906 269.054688 157.003906 268.9375 Z M 157.003906 268.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.257812 271.214844 C 157.257812 271.097656 157.164062 271.003906 157.046875 271.003906 C 156.929688 271.003906 156.835938 271.097656 156.835938 271.214844 C 156.835938 271.332031 156.929688 271.425781 157.046875 271.425781 C 157.164062 271.425781 157.257812 271.332031 157.257812 271.214844 Z M 157.257812 271.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.246094 271.871094 C 161.246094 271.753906 161.152344 271.660156 161.035156 271.660156 C 160.917969 271.660156 160.824219 271.753906 160.824219 271.871094 C 160.824219 271.988281 160.917969 272.082031 161.035156 272.082031 C 161.152344 272.082031 161.246094 271.988281 161.246094 271.871094 Z M 161.246094 271.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.371094 271.671875 C 161.371094 271.554688 161.277344 271.460938 161.160156 271.460938 C 161.042969 271.460938 160.949219 271.554688 160.949219 271.671875 C 160.949219 271.789062 161.042969 271.882812 161.160156 271.882812 C 161.277344 271.882812 161.371094 271.789062 161.371094 271.671875 Z M 161.371094 271.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.53125 273.558594 C 162.53125 273.441406 162.4375 273.347656 162.320312 273.347656 C 162.203125 273.347656 162.109375 273.441406 162.109375 273.558594 C 162.109375 273.675781 162.203125 273.769531 162.320312 273.769531 C 162.4375 273.769531 162.53125 273.675781 162.53125 273.558594 Z M 162.53125 273.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163 270.875 C 163 270.757812 162.90625 270.664062 162.789062 270.664062 C 162.671875 270.664062 162.578125 270.757812 162.578125 270.875 C 162.578125 270.992188 162.671875 271.085938 162.789062 271.085938 C 162.90625 271.085938 163 270.992188 163 270.875 Z M 163 270.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.121094 273.613281 C 164.121094 273.496094 164.027344 273.402344 163.910156 273.402344 C 163.792969 273.402344 163.699219 273.496094 163.699219 273.613281 C 163.699219 273.730469 163.792969 273.824219 163.910156 273.824219 C 164.027344 273.824219 164.121094 273.730469 164.121094 273.613281 Z M 164.121094 273.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.847656 269.84375 C 160.847656 269.726562 160.753906 269.632812 160.636719 269.632812 C 160.519531 269.632812 160.425781 269.726562 160.425781 269.84375 C 160.425781 269.960938 160.519531 270.054688 160.636719 270.054688 C 160.753906 270.054688 160.847656 269.960938 160.847656 269.84375 Z M 160.847656 269.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.601562 274.421875 C 159.601562 274.304688 159.507812 274.210938 159.390625 274.210938 C 159.273438 274.210938 159.179688 274.304688 159.179688 274.421875 C 159.179688 274.539062 159.273438 274.632812 159.390625 274.632812 C 159.507812 274.632812 159.601562 274.539062 159.601562 274.421875 Z M 159.601562 274.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.375 274.292969 C 157.375 274.175781 157.28125 274.082031 157.164062 274.082031 C 157.046875 274.082031 156.953125 274.175781 156.953125 274.292969 C 156.953125 274.410156 157.046875 274.503906 157.164062 274.503906 C 157.28125 274.503906 157.375 274.410156 157.375 274.292969 Z M 157.375 274.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.035156 271.308594 C 155.035156 271.191406 154.941406 271.097656 154.824219 271.097656 C 154.707031 271.097656 154.613281 271.191406 154.613281 271.308594 C 154.613281 271.425781 154.707031 271.519531 154.824219 271.519531 C 154.941406 271.519531 155.035156 271.425781 155.035156 271.308594 Z M 155.035156 271.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.652344 272.527344 C 153.652344 272.410156 153.558594 272.316406 153.441406 272.316406 C 153.324219 272.316406 153.230469 272.410156 153.230469 272.527344 C 153.230469 272.644531 153.324219 272.738281 153.441406 272.738281 C 153.558594 272.738281 153.652344 272.644531 153.652344 272.527344 Z M 153.652344 272.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.839844 269.730469 C 153.839844 269.613281 153.746094 269.519531 153.628906 269.519531 C 153.511719 269.519531 153.417969 269.613281 153.417969 269.730469 C 153.417969 269.847656 153.511719 269.941406 153.628906 269.941406 C 153.746094 269.941406 153.839844 269.847656 153.839844 269.730469 Z M 153.839844 269.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.128906 271.019531 C 155.128906 270.902344 155.035156 270.808594 154.917969 270.808594 C 154.800781 270.808594 154.707031 270.902344 154.707031 271.019531 C 154.707031 271.136719 154.800781 271.230469 154.917969 271.230469 C 155.035156 271.230469 155.128906 271.136719 155.128906 271.019531 Z M 155.128906 271.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.578125 272.621094 C 154.578125 272.503906 154.484375 272.410156 154.367188 272.410156 C 154.25 272.410156 154.15625 272.503906 154.15625 272.621094 C 154.15625 272.738281 154.25 272.832031 154.367188 272.832031 C 154.484375 272.832031 154.578125 272.738281 154.578125 272.621094 Z M 154.578125 272.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.4375 273.816406 C 153.4375 273.699219 153.34375 273.605469 153.226562 273.605469 C 153.109375 273.605469 153.015625 273.699219 153.015625 273.816406 C 153.015625 273.933594 153.109375 274.027344 153.226562 274.027344 C 153.34375 274.027344 153.4375 273.933594 153.4375 273.816406 Z M 153.4375 273.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.890625 274.714844 C 150.890625 274.597656 150.796875 274.503906 150.679688 274.503906 C 150.5625 274.503906 150.46875 274.597656 150.46875 274.714844 C 150.46875 274.832031 150.5625 274.925781 150.679688 274.925781 C 150.796875 274.925781 150.890625 274.832031 150.890625 274.714844 Z M 150.890625 274.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.601562 276.984375 C 151.601562 276.867188 151.507812 276.773438 151.390625 276.773438 C 151.273438 276.773438 151.179688 276.867188 151.179688 276.984375 C 151.179688 277.101562 151.273438 277.195312 151.390625 277.195312 C 151.507812 277.195312 151.601562 277.101562 151.601562 276.984375 Z M 151.601562 276.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.527344 275.46875 C 149.527344 275.351562 149.433594 275.257812 149.316406 275.257812 C 149.199219 275.257812 149.105469 275.351562 149.105469 275.46875 C 149.105469 275.585938 149.199219 275.679688 149.316406 275.679688 C 149.433594 275.679688 149.527344 275.585938 149.527344 275.46875 Z M 149.527344 275.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.667969 275.140625 C 148.667969 275.023438 148.574219 274.929688 148.457031 274.929688 C 148.339844 274.929688 148.246094 275.023438 148.246094 275.140625 C 148.246094 275.257812 148.339844 275.351562 148.457031 275.351562 C 148.574219 275.351562 148.667969 275.257812 148.667969 275.140625 Z M 148.667969 275.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.644531 279.722656 C 146.644531 279.605469 146.550781 279.511719 146.433594 279.511719 C 146.316406 279.511719 146.222656 279.605469 146.222656 279.722656 C 146.222656 279.839844 146.316406 279.933594 146.433594 279.933594 C 146.550781 279.933594 146.644531 279.839844 146.644531 279.722656 Z M 146.644531 279.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.804688 279.996094 C 147.804688 279.878906 147.710938 279.785156 147.59375 279.785156 C 147.476562 279.785156 147.382812 279.878906 147.382812 279.996094 C 147.382812 280.113281 147.476562 280.207031 147.59375 280.207031 C 147.710938 280.207031 147.804688 280.113281 147.804688 279.996094 Z M 147.804688 279.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.390625 278.113281 C 147.390625 277.996094 147.296875 277.902344 147.179688 277.902344 C 147.0625 277.902344 146.96875 277.996094 146.96875 278.113281 C 146.96875 278.230469 147.0625 278.324219 147.179688 278.324219 C 147.296875 278.324219 147.390625 278.230469 147.390625 278.113281 Z M 147.390625 278.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.972656 280.210938 C 150.972656 280.09375 150.878906 280 150.761719 280 C 150.644531 280 150.550781 280.09375 150.550781 280.210938 C 150.550781 280.328125 150.644531 280.421875 150.761719 280.421875 C 150.878906 280.421875 150.972656 280.328125 150.972656 280.210938 Z M 150.972656 280.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.800781 282.019531 C 149.800781 281.902344 149.707031 281.808594 149.589844 281.808594 C 149.472656 281.808594 149.378906 281.902344 149.378906 282.019531 C 149.378906 282.136719 149.472656 282.230469 149.589844 282.230469 C 149.707031 282.230469 149.800781 282.136719 149.800781 282.019531 Z M 149.800781 282.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.234375 282.554688 C 149.234375 282.4375 149.140625 282.34375 149.023438 282.34375 C 148.90625 282.34375 148.8125 282.4375 148.8125 282.554688 C 148.8125 282.671875 148.90625 282.765625 149.023438 282.765625 C 149.140625 282.765625 149.234375 282.671875 149.234375 282.554688 Z M 149.234375 282.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.671875 281.816406 C 151.671875 281.699219 151.578125 281.605469 151.460938 281.605469 C 151.34375 281.605469 151.25 281.699219 151.25 281.816406 C 151.25 281.933594 151.34375 282.027344 151.460938 282.027344 C 151.578125 282.027344 151.671875 281.933594 151.671875 281.816406 Z M 151.671875 281.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.527344 279.605469 C 149.527344 279.488281 149.433594 279.394531 149.316406 279.394531 C 149.199219 279.394531 149.105469 279.488281 149.105469 279.605469 C 149.105469 279.722656 149.199219 279.816406 149.316406 279.816406 C 149.433594 279.816406 149.527344 279.722656 149.527344 279.605469 Z M 149.527344 279.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.8125 279.089844 C 146.8125 278.972656 146.71875 278.878906 146.601562 278.878906 C 146.484375 278.878906 146.390625 278.972656 146.390625 279.089844 C 146.390625 279.207031 146.484375 279.300781 146.601562 279.300781 C 146.71875 279.300781 146.8125 279.207031 146.8125 279.089844 Z M 146.8125 279.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.03125 278.492188 C 144.03125 278.375 143.9375 278.28125 143.820312 278.28125 C 143.703125 278.28125 143.609375 278.375 143.609375 278.492188 C 143.609375 278.609375 143.703125 278.703125 143.820312 278.703125 C 143.9375 278.703125 144.03125 278.609375 144.03125 278.492188 Z M 144.03125 278.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.738281 278.914062 C 143.738281 278.796875 143.644531 278.703125 143.527344 278.703125 C 143.410156 278.703125 143.316406 278.796875 143.316406 278.914062 C 143.316406 279.03125 143.410156 279.125 143.527344 279.125 C 143.644531 279.125 143.738281 279.03125 143.738281 278.914062 Z M 143.738281 278.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.5625 276.964844 C 143.5625 276.847656 143.46875 276.753906 143.351562 276.753906 C 143.234375 276.753906 143.140625 276.847656 143.140625 276.964844 C 143.140625 277.082031 143.234375 277.175781 143.351562 277.175781 C 143.46875 277.175781 143.5625 277.082031 143.5625 276.964844 Z M 143.5625 276.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.164062 275.324219 C 145.164062 275.207031 145.070312 275.113281 144.953125 275.113281 C 144.835938 275.113281 144.742188 275.207031 144.742188 275.324219 C 144.742188 275.441406 144.835938 275.535156 144.953125 275.535156 C 145.070312 275.535156 145.164062 275.441406 145.164062 275.324219 Z M 145.164062 275.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.289062 270.691406 C 145.289062 270.574219 145.195312 270.480469 145.078125 270.480469 C 144.960938 270.480469 144.867188 270.574219 144.867188 270.691406 C 144.867188 270.808594 144.960938 270.902344 145.078125 270.902344 C 145.195312 270.902344 145.289062 270.808594 145.289062 270.691406 Z M 145.289062 270.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.359375 270.730469 C 147.359375 270.613281 147.265625 270.519531 147.148438 270.519531 C 147.03125 270.519531 146.9375 270.613281 146.9375 270.730469 C 146.9375 270.847656 147.03125 270.941406 147.148438 270.941406 C 147.265625 270.941406 147.359375 270.847656 147.359375 270.730469 Z M 147.359375 270.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.78125 272.207031 C 146.78125 272.089844 146.6875 271.996094 146.570312 271.996094 C 146.453125 271.996094 146.359375 272.089844 146.359375 272.207031 C 146.359375 272.324219 146.453125 272.417969 146.570312 272.417969 C 146.6875 272.417969 146.78125 272.324219 146.78125 272.207031 Z M 146.78125 272.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.570312 268.523438 C 144.570312 268.40625 144.476562 268.3125 144.359375 268.3125 C 144.242188 268.3125 144.148438 268.40625 144.148438 268.523438 C 144.148438 268.640625 144.242188 268.734375 144.359375 268.734375 C 144.476562 268.734375 144.570312 268.640625 144.570312 268.523438 Z M 144.570312 268.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.546875 268.140625 C 145.546875 268.023438 145.453125 267.929688 145.335938 267.929688 C 145.21875 267.929688 145.125 268.023438 145.125 268.140625 C 145.125 268.257812 145.21875 268.351562 145.335938 268.351562 C 145.453125 268.351562 145.546875 268.257812 145.546875 268.140625 Z M 145.546875 268.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.371094 267.640625 C 146.371094 267.523438 146.277344 267.429688 146.160156 267.429688 C 146.042969 267.429688 145.949219 267.523438 145.949219 267.640625 C 145.949219 267.757812 146.042969 267.851562 146.160156 267.851562 C 146.277344 267.851562 146.371094 267.757812 146.371094 267.640625 Z M 146.371094 267.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.542969 265.769531 C 150.542969 265.652344 150.449219 265.558594 150.332031 265.558594 C 150.214844 265.558594 150.121094 265.652344 150.121094 265.769531 C 150.121094 265.886719 150.214844 265.980469 150.332031 265.980469 C 150.449219 265.980469 150.542969 265.886719 150.542969 265.769531 Z M 150.542969 265.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.578125 265.058594 C 151.578125 264.941406 151.484375 264.847656 151.367188 264.847656 C 151.25 264.847656 151.15625 264.941406 151.15625 265.058594 C 151.15625 265.175781 151.25 265.269531 151.367188 265.269531 C 151.484375 265.269531 151.578125 265.175781 151.578125 265.058594 Z M 151.578125 265.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.34375 267.417969 C 149.34375 267.300781 149.25 267.207031 149.132812 267.207031 C 149.015625 267.207031 148.921875 267.300781 148.921875 267.417969 C 148.921875 267.535156 149.015625 267.628906 149.132812 267.628906 C 149.25 267.628906 149.34375 267.535156 149.34375 267.417969 Z M 149.34375 267.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.125 265.257812 C 153.125 265.140625 153.03125 265.046875 152.914062 265.046875 C 152.796875 265.046875 152.703125 265.140625 152.703125 265.257812 C 152.703125 265.375 152.796875 265.46875 152.914062 265.46875 C 153.03125 265.46875 153.125 265.375 153.125 265.257812 Z M 153.125 265.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.414062 263.488281 C 153.414062 263.371094 153.320312 263.277344 153.203125 263.277344 C 153.085938 263.277344 152.992188 263.371094 152.992188 263.488281 C 152.992188 263.605469 153.085938 263.699219 153.203125 263.699219 C 153.320312 263.699219 153.414062 263.605469 153.414062 263.488281 Z M 153.414062 263.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.714844 260.214844 C 154.714844 260.097656 154.621094 260.003906 154.503906 260.003906 C 154.386719 260.003906 154.292969 260.097656 154.292969 260.214844 C 154.292969 260.332031 154.386719 260.425781 154.503906 260.425781 C 154.621094 260.425781 154.714844 260.332031 154.714844 260.214844 Z M 154.714844 260.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.683594 260.839844 C 156.683594 260.722656 156.589844 260.628906 156.472656 260.628906 C 156.355469 260.628906 156.261719 260.722656 156.261719 260.839844 C 156.261719 260.957031 156.355469 261.050781 156.472656 261.050781 C 156.589844 261.050781 156.683594 260.957031 156.683594 260.839844 Z M 156.683594 260.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.695312 262.984375 C 155.695312 262.867188 155.601562 262.773438 155.484375 262.773438 C 155.367188 262.773438 155.273438 262.867188 155.273438 262.984375 C 155.273438 263.101562 155.367188 263.195312 155.484375 263.195312 C 155.601562 263.195312 155.695312 263.101562 155.695312 262.984375 Z M 155.695312 262.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.785156 261.339844 C 154.785156 261.222656 154.691406 261.128906 154.574219 261.128906 C 154.457031 261.128906 154.363281 261.222656 154.363281 261.339844 C 154.363281 261.457031 154.457031 261.550781 154.574219 261.550781 C 154.691406 261.550781 154.785156 261.457031 154.785156 261.339844 Z M 154.785156 261.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.433594 262.328125 C 156.433594 262.210938 156.339844 262.117188 156.222656 262.117188 C 156.105469 262.117188 156.011719 262.210938 156.011719 262.328125 C 156.011719 262.445312 156.105469 262.539062 156.222656 262.539062 C 156.339844 262.539062 156.433594 262.445312 156.433594 262.328125 Z M 156.433594 262.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.730469 263.46875 C 154.730469 263.351562 154.636719 263.257812 154.519531 263.257812 C 154.402344 263.257812 154.308594 263.351562 154.308594 263.46875 C 154.308594 263.585938 154.402344 263.679688 154.519531 263.679688 C 154.636719 263.679688 154.730469 263.585938 154.730469 263.46875 Z M 154.730469 263.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.171875 263.351562 C 154.171875 263.234375 154.078125 263.140625 153.960938 263.140625 C 153.84375 263.140625 153.75 263.234375 153.75 263.351562 C 153.75 263.46875 153.84375 263.5625 153.960938 263.5625 C 154.078125 263.5625 154.171875 263.46875 154.171875 263.351562 Z M 154.171875 263.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.695312 263.21875 C 151.695312 263.101562 151.601562 263.007812 151.484375 263.007812 C 151.367188 263.007812 151.273438 263.101562 151.273438 263.21875 C 151.273438 263.335938 151.367188 263.429688 151.484375 263.429688 C 151.601562 263.429688 151.695312 263.335938 151.695312 263.21875 Z M 151.695312 263.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.101562 265.734375 C 151.101562 265.617188 151.007812 265.523438 150.890625 265.523438 C 150.773438 265.523438 150.679688 265.617188 150.679688 265.734375 C 150.679688 265.851562 150.773438 265.945312 150.890625 265.945312 C 151.007812 265.945312 151.101562 265.851562 151.101562 265.734375 Z M 151.101562 265.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.460938 263.015625 C 152.460938 262.898438 152.367188 262.804688 152.25 262.804688 C 152.132812 262.804688 152.039062 262.898438 152.039062 263.015625 C 152.039062 263.132812 152.132812 263.226562 152.25 263.226562 C 152.367188 263.226562 152.460938 263.132812 152.460938 263.015625 Z M 152.460938 263.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155 262.5625 C 155 262.445312 154.90625 262.351562 154.789062 262.351562 C 154.671875 262.351562 154.578125 262.445312 154.578125 262.5625 C 154.578125 262.679688 154.671875 262.773438 154.789062 262.773438 C 154.90625 262.773438 155 262.679688 155 262.5625 Z M 155 262.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.433594 258.21875 C 154.433594 258.101562 154.339844 258.007812 154.222656 258.007812 C 154.105469 258.007812 154.011719 258.101562 154.011719 258.21875 C 154.011719 258.335938 154.105469 258.429688 154.222656 258.429688 C 154.339844 258.429688 154.433594 258.335938 154.433594 258.21875 Z M 154.433594 258.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.753906 262.0625 C 154.753906 261.945312 154.660156 261.851562 154.542969 261.851562 C 154.425781 261.851562 154.332031 261.945312 154.332031 262.0625 C 154.332031 262.179688 154.425781 262.273438 154.542969 262.273438 C 154.660156 262.273438 154.753906 262.179688 154.753906 262.0625 Z M 154.753906 262.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 155.835938 261.417969 C 155.835938 261.300781 155.742188 261.207031 155.625 261.207031 C 155.507812 261.207031 155.414062 261.300781 155.414062 261.417969 C 155.414062 261.535156 155.507812 261.628906 155.625 261.628906 C 155.742188 261.628906 155.835938 261.535156 155.835938 261.417969 Z M 155.835938 261.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.640625 259.664062 C 156.640625 259.546875 156.546875 259.453125 156.429688 259.453125 C 156.3125 259.453125 156.21875 259.546875 156.21875 259.664062 C 156.21875 259.78125 156.3125 259.875 156.429688 259.875 C 156.546875 259.875 156.640625 259.78125 156.640625 259.664062 Z M 156.640625 259.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.121094 256.878906 C 161.121094 256.761719 161.027344 256.667969 160.910156 256.667969 C 160.792969 256.667969 160.699219 256.761719 160.699219 256.878906 C 160.699219 256.996094 160.792969 257.089844 160.910156 257.089844 C 161.027344 257.089844 161.121094 256.996094 161.121094 256.878906 Z M 161.121094 256.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.679688 258.414062 C 159.679688 258.296875 159.585938 258.203125 159.46875 258.203125 C 159.351562 258.203125 159.257812 258.296875 159.257812 258.414062 C 159.257812 258.53125 159.351562 258.625 159.46875 258.625 C 159.585938 258.625 159.679688 258.53125 159.679688 258.414062 Z M 159.679688 258.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.949219 258.992188 C 163.949219 258.875 163.855469 258.78125 163.738281 258.78125 C 163.621094 258.78125 163.527344 258.875 163.527344 258.992188 C 163.527344 259.109375 163.621094 259.203125 163.738281 259.203125 C 163.855469 259.203125 163.949219 259.109375 163.949219 258.992188 Z M 163.949219 258.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.945312 262.195312 C 163.945312 262.078125 163.851562 261.984375 163.734375 261.984375 C 163.617188 261.984375 163.523438 262.078125 163.523438 262.195312 C 163.523438 262.3125 163.617188 262.40625 163.734375 262.40625 C 163.851562 262.40625 163.945312 262.3125 163.945312 262.195312 Z M 163.945312 262.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.40625 262.738281 C 169.40625 262.621094 169.3125 262.527344 169.195312 262.527344 C 169.078125 262.527344 168.984375 262.621094 168.984375 262.738281 C 168.984375 262.855469 169.078125 262.949219 169.195312 262.949219 C 169.3125 262.949219 169.40625 262.855469 169.40625 262.738281 Z M 169.40625 262.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.847656 262.859375 C 171.847656 262.742188 171.753906 262.648438 171.636719 262.648438 C 171.519531 262.648438 171.425781 262.742188 171.425781 262.859375 C 171.425781 262.976562 171.519531 263.070312 171.636719 263.070312 C 171.753906 263.070312 171.847656 262.976562 171.847656 262.859375 Z M 171.847656 262.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.25 264.785156 C 171.25 264.667969 171.15625 264.574219 171.039062 264.574219 C 170.921875 264.574219 170.828125 264.667969 170.828125 264.785156 C 170.828125 264.902344 170.921875 264.996094 171.039062 264.996094 C 171.15625 264.996094 171.25 264.902344 171.25 264.785156 Z M 171.25 264.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.242188 267.082031 C 173.242188 266.964844 173.148438 266.871094 173.03125 266.871094 C 172.914062 266.871094 172.820312 266.964844 172.820312 267.082031 C 172.820312 267.199219 172.914062 267.292969 173.03125 267.292969 C 173.148438 267.292969 173.242188 267.199219 173.242188 267.082031 Z M 173.242188 267.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.585938 269.46875 C 171.585938 269.351562 171.492188 269.257812 171.375 269.257812 C 171.257812 269.257812 171.164062 269.351562 171.164062 269.46875 C 171.164062 269.585938 171.257812 269.679688 171.375 269.679688 C 171.492188 269.679688 171.585938 269.585938 171.585938 269.46875 Z M 171.585938 269.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.6875 267.046875 C 171.6875 266.929688 171.59375 266.835938 171.476562 266.835938 C 171.359375 266.835938 171.265625 266.929688 171.265625 267.046875 C 171.265625 267.164062 171.359375 267.257812 171.476562 267.257812 C 171.59375 267.257812 171.6875 267.164062 171.6875 267.046875 Z M 171.6875 267.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.914062 266.566406 C 175.914062 266.449219 175.820312 266.355469 175.703125 266.355469 C 175.585938 266.355469 175.492188 266.449219 175.492188 266.566406 C 175.492188 266.683594 175.585938 266.777344 175.703125 266.777344 C 175.820312 266.777344 175.914062 266.683594 175.914062 266.566406 Z M 175.914062 266.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.199219 263.539062 C 178.199219 263.421875 178.105469 263.328125 177.988281 263.328125 C 177.871094 263.328125 177.777344 263.421875 177.777344 263.539062 C 177.777344 263.65625 177.871094 263.75 177.988281 263.75 C 178.105469 263.75 178.199219 263.65625 178.199219 263.539062 Z M 178.199219 263.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.878906 265.878906 C 179.878906 265.761719 179.785156 265.667969 179.667969 265.667969 C 179.550781 265.667969 179.457031 265.761719 179.457031 265.878906 C 179.457031 265.996094 179.550781 266.089844 179.667969 266.089844 C 179.785156 266.089844 179.878906 265.996094 179.878906 265.878906 Z M 179.878906 265.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.265625 266.488281 C 180.265625 266.371094 180.171875 266.277344 180.054688 266.277344 C 179.9375 266.277344 179.84375 266.371094 179.84375 266.488281 C 179.84375 266.605469 179.9375 266.699219 180.054688 266.699219 C 180.171875 266.699219 180.265625 266.605469 180.265625 266.488281 Z M 180.265625 266.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.160156 267.917969 C 178.160156 267.800781 178.066406 267.707031 177.949219 267.707031 C 177.832031 267.707031 177.738281 267.800781 177.738281 267.917969 C 177.738281 268.035156 177.832031 268.128906 177.949219 268.128906 C 178.066406 268.128906 178.160156 268.035156 178.160156 267.917969 Z M 178.160156 267.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.597656 267.898438 C 180.597656 267.78125 180.503906 267.6875 180.386719 267.6875 C 180.269531 267.6875 180.175781 267.78125 180.175781 267.898438 C 180.175781 268.015625 180.269531 268.109375 180.386719 268.109375 C 180.503906 268.109375 180.597656 268.015625 180.597656 267.898438 Z M 180.597656 267.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.882812 267.402344 C 178.882812 267.285156 178.789062 267.191406 178.671875 267.191406 C 178.554688 267.191406 178.460938 267.285156 178.460938 267.402344 C 178.460938 267.519531 178.554688 267.613281 178.671875 267.613281 C 178.789062 267.613281 178.882812 267.519531 178.882812 267.402344 Z M 178.882812 267.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.207031 267.476562 C 179.207031 267.359375 179.113281 267.265625 178.996094 267.265625 C 178.878906 267.265625 178.785156 267.359375 178.785156 267.476562 C 178.785156 267.59375 178.878906 267.6875 178.996094 267.6875 C 179.113281 267.6875 179.207031 267.59375 179.207031 267.476562 Z M 179.207031 267.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.15625 268.445312 C 178.15625 268.328125 178.0625 268.234375 177.945312 268.234375 C 177.828125 268.234375 177.734375 268.328125 177.734375 268.445312 C 177.734375 268.5625 177.828125 268.65625 177.945312 268.65625 C 178.0625 268.65625 178.15625 268.5625 178.15625 268.445312 Z M 178.15625 268.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.410156 268.523438 C 181.410156 268.40625 181.316406 268.3125 181.199219 268.3125 C 181.082031 268.3125 180.988281 268.40625 180.988281 268.523438 C 180.988281 268.640625 181.082031 268.734375 181.199219 268.734375 C 181.316406 268.734375 181.410156 268.640625 181.410156 268.523438 Z M 181.410156 268.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.488281 265.578125 C 184.488281 265.460938 184.394531 265.367188 184.277344 265.367188 C 184.160156 265.367188 184.066406 265.460938 184.066406 265.578125 C 184.066406 265.695312 184.160156 265.789062 184.277344 265.789062 C 184.394531 265.789062 184.488281 265.695312 184.488281 265.578125 Z M 184.488281 265.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.550781 266.191406 C 179.550781 266.074219 179.457031 265.980469 179.339844 265.980469 C 179.222656 265.980469 179.128906 266.074219 179.128906 266.191406 C 179.128906 266.308594 179.222656 266.402344 179.339844 266.402344 C 179.457031 266.402344 179.550781 266.308594 179.550781 266.191406 Z M 179.550781 266.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.796875 268.28125 C 183.796875 268.164062 183.703125 268.070312 183.585938 268.070312 C 183.46875 268.070312 183.375 268.164062 183.375 268.28125 C 183.375 268.398438 183.46875 268.492188 183.585938 268.492188 C 183.703125 268.492188 183.796875 268.398438 183.796875 268.28125 Z M 183.796875 268.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.796875 272.175781 C 182.796875 272.058594 182.703125 271.964844 182.585938 271.964844 C 182.46875 271.964844 182.375 272.058594 182.375 272.175781 C 182.375 272.292969 182.46875 272.386719 182.585938 272.386719 C 182.703125 272.386719 182.796875 272.292969 182.796875 272.175781 Z M 182.796875 272.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.496094 268.027344 C 180.496094 267.910156 180.402344 267.816406 180.285156 267.816406 C 180.167969 267.816406 180.074219 267.910156 180.074219 268.027344 C 180.074219 268.144531 180.167969 268.238281 180.285156 268.238281 C 180.402344 268.238281 180.496094 268.144531 180.496094 268.027344 Z M 180.496094 268.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.472656 267.875 C 178.472656 267.757812 178.378906 267.664062 178.261719 267.664062 C 178.144531 267.664062 178.050781 267.757812 178.050781 267.875 C 178.050781 267.992188 178.144531 268.085938 178.261719 268.085938 C 178.378906 268.085938 178.472656 267.992188 178.472656 267.875 Z M 178.472656 267.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.355469 267.777344 C 177.355469 267.660156 177.261719 267.566406 177.144531 267.566406 C 177.027344 267.566406 176.933594 267.660156 176.933594 267.777344 C 176.933594 267.894531 177.027344 267.988281 177.144531 267.988281 C 177.261719 267.988281 177.355469 267.894531 177.355469 267.777344 Z M 177.355469 267.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.761719 266.953125 C 175.761719 266.835938 175.667969 266.742188 175.550781 266.742188 C 175.433594 266.742188 175.339844 266.835938 175.339844 266.953125 C 175.339844 267.070312 175.433594 267.164062 175.550781 267.164062 C 175.667969 267.164062 175.761719 267.070312 175.761719 266.953125 Z M 175.761719 266.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.09375 267.15625 C 178.09375 267.039062 178 266.945312 177.882812 266.945312 C 177.765625 266.945312 177.671875 267.039062 177.671875 267.15625 C 177.671875 267.273438 177.765625 267.367188 177.882812 267.367188 C 178 267.367188 178.09375 267.273438 178.09375 267.15625 Z M 178.09375 267.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.183594 264.652344 C 179.183594 264.535156 179.089844 264.441406 178.972656 264.441406 C 178.855469 264.441406 178.761719 264.535156 178.761719 264.652344 C 178.761719 264.769531 178.855469 264.863281 178.972656 264.863281 C 179.089844 264.863281 179.183594 264.769531 179.183594 264.652344 Z M 179.183594 264.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.328125 263.125 C 182.328125 263.007812 182.234375 262.914062 182.117188 262.914062 C 182 262.914062 181.90625 263.007812 181.90625 263.125 C 181.90625 263.242188 182 263.335938 182.117188 263.335938 C 182.234375 263.335938 182.328125 263.242188 182.328125 263.125 Z M 182.328125 263.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.046875 259.382812 C 181.046875 259.265625 180.953125 259.171875 180.835938 259.171875 C 180.71875 259.171875 180.625 259.265625 180.625 259.382812 C 180.625 259.5 180.71875 259.59375 180.835938 259.59375 C 180.953125 259.59375 181.046875 259.5 181.046875 259.382812 Z M 181.046875 259.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.972656 255.511719 C 182.972656 255.394531 182.878906 255.300781 182.761719 255.300781 C 182.644531 255.300781 182.550781 255.394531 182.550781 255.511719 C 182.550781 255.628906 182.644531 255.722656 182.761719 255.722656 C 182.878906 255.722656 182.972656 255.628906 182.972656 255.511719 Z M 182.972656 255.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.808594 255.363281 C 184.808594 255.246094 184.714844 255.152344 184.597656 255.152344 C 184.480469 255.152344 184.386719 255.246094 184.386719 255.363281 C 184.386719 255.480469 184.480469 255.574219 184.597656 255.574219 C 184.714844 255.574219 184.808594 255.480469 184.808594 255.363281 Z M 184.808594 255.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.585938 252.179688 C 183.585938 252.0625 183.492188 251.96875 183.375 251.96875 C 183.257812 251.96875 183.164062 252.0625 183.164062 252.179688 C 183.164062 252.296875 183.257812 252.390625 183.375 252.390625 C 183.492188 252.390625 183.585938 252.296875 183.585938 252.179688 Z M 183.585938 252.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.988281 246.554688 C 182.988281 246.4375 182.894531 246.34375 182.777344 246.34375 C 182.660156 246.34375 182.566406 246.4375 182.566406 246.554688 C 182.566406 246.671875 182.660156 246.765625 182.777344 246.765625 C 182.894531 246.765625 182.988281 246.671875 182.988281 246.554688 Z M 182.988281 246.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.570312 245.683594 C 181.570312 245.566406 181.476562 245.472656 181.359375 245.472656 C 181.242188 245.472656 181.148438 245.566406 181.148438 245.683594 C 181.148438 245.800781 181.242188 245.894531 181.359375 245.894531 C 181.476562 245.894531 181.570312 245.800781 181.570312 245.683594 Z M 181.570312 245.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.253906 246.914062 C 182.253906 246.796875 182.160156 246.703125 182.042969 246.703125 C 181.925781 246.703125 181.832031 246.796875 181.832031 246.914062 C 181.832031 247.03125 181.925781 247.125 182.042969 247.125 C 182.160156 247.125 182.253906 247.03125 182.253906 246.914062 Z M 182.253906 246.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.46875 245.429688 C 184.46875 245.3125 184.375 245.21875 184.257812 245.21875 C 184.140625 245.21875 184.046875 245.3125 184.046875 245.429688 C 184.046875 245.546875 184.140625 245.640625 184.257812 245.640625 C 184.375 245.640625 184.46875 245.546875 184.46875 245.429688 Z M 184.46875 245.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.703125 247.492188 C 188.703125 247.375 188.609375 247.28125 188.492188 247.28125 C 188.375 247.28125 188.28125 247.375 188.28125 247.492188 C 188.28125 247.609375 188.375 247.703125 188.492188 247.703125 C 188.609375 247.703125 188.703125 247.609375 188.703125 247.492188 Z M 188.703125 247.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.417969 247.464844 C 190.417969 247.347656 190.324219 247.253906 190.207031 247.253906 C 190.089844 247.253906 189.996094 247.347656 189.996094 247.464844 C 189.996094 247.582031 190.089844 247.675781 190.207031 247.675781 C 190.324219 247.675781 190.417969 247.582031 190.417969 247.464844 Z M 190.417969 247.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.292969 246.621094 C 195.292969 246.503906 195.199219 246.410156 195.082031 246.410156 C 194.964844 246.410156 194.871094 246.503906 194.871094 246.621094 C 194.871094 246.738281 194.964844 246.832031 195.082031 246.832031 C 195.199219 246.832031 195.292969 246.738281 195.292969 246.621094 Z M 195.292969 246.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.082031 245.191406 C 195.082031 245.074219 194.988281 244.980469 194.871094 244.980469 C 194.753906 244.980469 194.660156 245.074219 194.660156 245.191406 C 194.660156 245.308594 194.753906 245.402344 194.871094 245.402344 C 194.988281 245.402344 195.082031 245.308594 195.082031 245.191406 Z M 195.082031 245.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.324219 247.621094 C 196.324219 247.503906 196.230469 247.410156 196.113281 247.410156 C 195.996094 247.410156 195.902344 247.503906 195.902344 247.621094 C 195.902344 247.738281 195.996094 247.832031 196.113281 247.832031 C 196.230469 247.832031 196.324219 247.738281 196.324219 247.621094 Z M 196.324219 247.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.90625 243.625 C 193.90625 243.507812 193.8125 243.414062 193.695312 243.414062 C 193.578125 243.414062 193.484375 243.507812 193.484375 243.625 C 193.484375 243.742188 193.578125 243.835938 193.695312 243.835938 C 193.8125 243.835938 193.90625 243.742188 193.90625 243.625 Z M 193.90625 243.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.164062 244.457031 C 193.164062 244.339844 193.070312 244.246094 192.953125 244.246094 C 192.835938 244.246094 192.742188 244.339844 192.742188 244.457031 C 192.742188 244.574219 192.835938 244.667969 192.953125 244.667969 C 193.070312 244.667969 193.164062 244.574219 193.164062 244.457031 Z M 193.164062 244.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.863281 245.644531 C 188.863281 245.527344 188.769531 245.433594 188.652344 245.433594 C 188.535156 245.433594 188.441406 245.527344 188.441406 245.644531 C 188.441406 245.761719 188.535156 245.855469 188.652344 245.855469 C 188.769531 245.855469 188.863281 245.761719 188.863281 245.644531 Z M 188.863281 245.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.210938 242.164062 C 190.210938 242.046875 190.117188 241.953125 190 241.953125 C 189.882812 241.953125 189.789062 242.046875 189.789062 242.164062 C 189.789062 242.28125 189.882812 242.375 190 242.375 C 190.117188 242.375 190.210938 242.28125 190.210938 242.164062 Z M 190.210938 242.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.359375 241.007812 C 190.359375 240.890625 190.265625 240.796875 190.148438 240.796875 C 190.03125 240.796875 189.9375 240.890625 189.9375 241.007812 C 189.9375 241.125 190.03125 241.21875 190.148438 241.21875 C 190.265625 241.21875 190.359375 241.125 190.359375 241.007812 Z M 190.359375 241.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.660156 237.625 C 190.660156 237.507812 190.566406 237.414062 190.449219 237.414062 C 190.332031 237.414062 190.238281 237.507812 190.238281 237.625 C 190.238281 237.742188 190.332031 237.835938 190.449219 237.835938 C 190.566406 237.835938 190.660156 237.742188 190.660156 237.625 Z M 190.660156 237.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.648438 238.097656 C 191.648438 237.980469 191.554688 237.886719 191.4375 237.886719 C 191.320312 237.886719 191.226562 237.980469 191.226562 238.097656 C 191.226562 238.214844 191.320312 238.308594 191.4375 238.308594 C 191.554688 238.308594 191.648438 238.214844 191.648438 238.097656 Z M 191.648438 238.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.523438 237.019531 C 189.523438 236.902344 189.429688 236.808594 189.3125 236.808594 C 189.195312 236.808594 189.101562 236.902344 189.101562 237.019531 C 189.101562 237.136719 189.195312 237.230469 189.3125 237.230469 C 189.429688 237.230469 189.523438 237.136719 189.523438 237.019531 Z M 189.523438 237.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.796875 239.105469 C 193.796875 238.988281 193.703125 238.894531 193.585938 238.894531 C 193.46875 238.894531 193.375 238.988281 193.375 239.105469 C 193.375 239.222656 193.46875 239.316406 193.585938 239.316406 C 193.703125 239.316406 193.796875 239.222656 193.796875 239.105469 Z M 193.796875 239.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.347656 240.382812 C 193.347656 240.265625 193.253906 240.171875 193.136719 240.171875 C 193.019531 240.171875 192.925781 240.265625 192.925781 240.382812 C 192.925781 240.5 193.019531 240.59375 193.136719 240.59375 C 193.253906 240.59375 193.347656 240.5 193.347656 240.382812 Z M 193.347656 240.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.707031 241.265625 C 190.707031 241.148438 190.613281 241.054688 190.496094 241.054688 C 190.378906 241.054688 190.285156 241.148438 190.285156 241.265625 C 190.285156 241.382812 190.378906 241.476562 190.496094 241.476562 C 190.613281 241.476562 190.707031 241.382812 190.707031 241.265625 Z M 190.707031 241.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.578125 240.738281 C 190.578125 240.621094 190.484375 240.527344 190.367188 240.527344 C 190.25 240.527344 190.15625 240.621094 190.15625 240.738281 C 190.15625 240.855469 190.25 240.949219 190.367188 240.949219 C 190.484375 240.949219 190.578125 240.855469 190.578125 240.738281 Z M 190.578125 240.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.234375 243.628906 C 189.234375 243.511719 189.140625 243.417969 189.023438 243.417969 C 188.90625 243.417969 188.8125 243.511719 188.8125 243.628906 C 188.8125 243.746094 188.90625 243.839844 189.023438 243.839844 C 189.140625 243.839844 189.234375 243.746094 189.234375 243.628906 Z M 189.234375 243.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.304688 244.632812 C 190.304688 244.515625 190.210938 244.421875 190.09375 244.421875 C 189.976562 244.421875 189.882812 244.515625 189.882812 244.632812 C 189.882812 244.75 189.976562 244.84375 190.09375 244.84375 C 190.210938 244.84375 190.304688 244.75 190.304688 244.632812 Z M 190.304688 244.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.113281 245.4375 C 189.113281 245.320312 189.019531 245.226562 188.902344 245.226562 C 188.785156 245.226562 188.691406 245.320312 188.691406 245.4375 C 188.691406 245.554688 188.785156 245.648438 188.902344 245.648438 C 189.019531 245.648438 189.113281 245.554688 189.113281 245.4375 Z M 189.113281 245.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.632812 246.007812 C 191.632812 245.890625 191.539062 245.796875 191.421875 245.796875 C 191.304688 245.796875 191.210938 245.890625 191.210938 246.007812 C 191.210938 246.125 191.304688 246.21875 191.421875 246.21875 C 191.539062 246.21875 191.632812 246.125 191.632812 246.007812 Z M 191.632812 246.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.621094 244.515625 C 190.621094 244.398438 190.527344 244.304688 190.410156 244.304688 C 190.292969 244.304688 190.199219 244.398438 190.199219 244.515625 C 190.199219 244.632812 190.292969 244.726562 190.410156 244.726562 C 190.527344 244.726562 190.621094 244.632812 190.621094 244.515625 Z M 190.621094 244.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.777344 242.917969 C 187.777344 242.800781 187.683594 242.707031 187.566406 242.707031 C 187.449219 242.707031 187.355469 242.800781 187.355469 242.917969 C 187.355469 243.035156 187.449219 243.128906 187.566406 243.128906 C 187.683594 243.128906 187.777344 243.035156 187.777344 242.917969 Z M 187.777344 242.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.128906 243.367188 C 188.128906 243.25 188.035156 243.15625 187.917969 243.15625 C 187.800781 243.15625 187.707031 243.25 187.707031 243.367188 C 187.707031 243.484375 187.800781 243.578125 187.917969 243.578125 C 188.035156 243.578125 188.128906 243.484375 188.128906 243.367188 Z M 188.128906 243.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.742188 243.589844 C 190.742188 243.472656 190.648438 243.378906 190.53125 243.378906 C 190.414062 243.378906 190.320312 243.472656 190.320312 243.589844 C 190.320312 243.707031 190.414062 243.800781 190.53125 243.800781 C 190.648438 243.800781 190.742188 243.707031 190.742188 243.589844 Z M 190.742188 243.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.1875 242.867188 C 189.1875 242.75 189.09375 242.65625 188.976562 242.65625 C 188.859375 242.65625 188.765625 242.75 188.765625 242.867188 C 188.765625 242.984375 188.859375 243.078125 188.976562 243.078125 C 189.09375 243.078125 189.1875 242.984375 189.1875 242.867188 Z M 189.1875 242.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.898438 248.296875 C 187.898438 248.179688 187.804688 248.085938 187.6875 248.085938 C 187.570312 248.085938 187.476562 248.179688 187.476562 248.296875 C 187.476562 248.414062 187.570312 248.507812 187.6875 248.507812 C 187.804688 248.507812 187.898438 248.414062 187.898438 248.296875 Z M 187.898438 248.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.117188 246.21875 C 186.117188 246.101562 186.023438 246.007812 185.90625 246.007812 C 185.789062 246.007812 185.695312 246.101562 185.695312 246.21875 C 185.695312 246.335938 185.789062 246.429688 185.90625 246.429688 C 186.023438 246.429688 186.117188 246.335938 186.117188 246.21875 Z M 186.117188 246.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.296875 243.769531 C 184.296875 243.652344 184.203125 243.558594 184.085938 243.558594 C 183.96875 243.558594 183.875 243.652344 183.875 243.769531 C 183.875 243.886719 183.96875 243.980469 184.085938 243.980469 C 184.203125 243.980469 184.296875 243.886719 184.296875 243.769531 Z M 184.296875 243.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.0625 240.824219 C 181.0625 240.707031 180.96875 240.613281 180.851562 240.613281 C 180.734375 240.613281 180.640625 240.707031 180.640625 240.824219 C 180.640625 240.941406 180.734375 241.035156 180.851562 241.035156 C 180.96875 241.035156 181.0625 240.941406 181.0625 240.824219 Z M 181.0625 240.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.398438 235.964844 C 178.398438 235.847656 178.304688 235.753906 178.1875 235.753906 C 178.070312 235.753906 177.976562 235.847656 177.976562 235.964844 C 177.976562 236.082031 178.070312 236.175781 178.1875 236.175781 C 178.304688 236.175781 178.398438 236.082031 178.398438 235.964844 Z M 178.398438 235.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.386719 239.851562 C 181.386719 239.734375 181.292969 239.640625 181.175781 239.640625 C 181.058594 239.640625 180.964844 239.734375 180.964844 239.851562 C 180.964844 239.96875 181.058594 240.0625 181.175781 240.0625 C 181.292969 240.0625 181.386719 239.96875 181.386719 239.851562 Z M 181.386719 239.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.695312 244.171875 C 179.695312 244.054688 179.601562 243.960938 179.484375 243.960938 C 179.367188 243.960938 179.273438 244.054688 179.273438 244.171875 C 179.273438 244.289062 179.367188 244.382812 179.484375 244.382812 C 179.601562 244.382812 179.695312 244.289062 179.695312 244.171875 Z M 179.695312 244.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.859375 246.644531 C 177.859375 246.527344 177.765625 246.433594 177.648438 246.433594 C 177.53125 246.433594 177.4375 246.527344 177.4375 246.644531 C 177.4375 246.761719 177.53125 246.855469 177.648438 246.855469 C 177.765625 246.855469 177.859375 246.761719 177.859375 246.644531 Z M 177.859375 246.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.464844 245.230469 C 180.464844 245.113281 180.371094 245.019531 180.253906 245.019531 C 180.136719 245.019531 180.042969 245.113281 180.042969 245.230469 C 180.042969 245.347656 180.136719 245.441406 180.253906 245.441406 C 180.371094 245.441406 180.464844 245.347656 180.464844 245.230469 Z M 180.464844 245.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.371094 244.308594 C 183.371094 244.191406 183.277344 244.097656 183.160156 244.097656 C 183.042969 244.097656 182.949219 244.191406 182.949219 244.308594 C 182.949219 244.425781 183.042969 244.519531 183.160156 244.519531 C 183.277344 244.519531 183.371094 244.425781 183.371094 244.308594 Z M 183.371094 244.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.558594 246.21875 C 184.558594 246.101562 184.464844 246.007812 184.347656 246.007812 C 184.230469 246.007812 184.136719 246.101562 184.136719 246.21875 C 184.136719 246.335938 184.230469 246.429688 184.347656 246.429688 C 184.464844 246.429688 184.558594 246.335938 184.558594 246.21875 Z M 184.558594 246.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.648438 244.039062 C 182.648438 243.921875 182.554688 243.828125 182.4375 243.828125 C 182.320312 243.828125 182.226562 243.921875 182.226562 244.039062 C 182.226562 244.15625 182.320312 244.25 182.4375 244.25 C 182.554688 244.25 182.648438 244.15625 182.648438 244.039062 Z M 182.648438 244.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.039062 245.363281 C 182.039062 245.246094 181.945312 245.152344 181.828125 245.152344 C 181.710938 245.152344 181.617188 245.246094 181.617188 245.363281 C 181.617188 245.480469 181.710938 245.574219 181.828125 245.574219 C 181.945312 245.574219 182.039062 245.480469 182.039062 245.363281 Z M 182.039062 245.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.878906 244.828125 C 177.878906 244.710938 177.785156 244.617188 177.667969 244.617188 C 177.550781 244.617188 177.457031 244.710938 177.457031 244.828125 C 177.457031 244.945312 177.550781 245.039062 177.667969 245.039062 C 177.785156 245.039062 177.878906 244.945312 177.878906 244.828125 Z M 177.878906 244.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.128906 244.699219 C 175.128906 244.582031 175.035156 244.488281 174.917969 244.488281 C 174.800781 244.488281 174.707031 244.582031 174.707031 244.699219 C 174.707031 244.816406 174.800781 244.910156 174.917969 244.910156 C 175.035156 244.910156 175.128906 244.816406 175.128906 244.699219 Z M 175.128906 244.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.828125 242.339844 C 175.828125 242.222656 175.734375 242.128906 175.617188 242.128906 C 175.5 242.128906 175.40625 242.222656 175.40625 242.339844 C 175.40625 242.457031 175.5 242.550781 175.617188 242.550781 C 175.734375 242.550781 175.828125 242.457031 175.828125 242.339844 Z M 175.828125 242.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.113281 243.007812 C 174.113281 242.890625 174.019531 242.796875 173.902344 242.796875 C 173.785156 242.796875 173.691406 242.890625 173.691406 243.007812 C 173.691406 243.125 173.785156 243.21875 173.902344 243.21875 C 174.019531 243.21875 174.113281 243.125 174.113281 243.007812 Z M 174.113281 243.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.433594 241.8125 C 173.433594 241.695312 173.339844 241.601562 173.222656 241.601562 C 173.105469 241.601562 173.011719 241.695312 173.011719 241.8125 C 173.011719 241.929688 173.105469 242.023438 173.222656 242.023438 C 173.339844 242.023438 173.433594 241.929688 173.433594 241.8125 Z M 173.433594 241.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.632812 243.042969 C 173.632812 242.925781 173.539062 242.832031 173.421875 242.832031 C 173.304688 242.832031 173.210938 242.925781 173.210938 243.042969 C 173.210938 243.160156 173.304688 243.253906 173.421875 243.253906 C 173.539062 243.253906 173.632812 243.160156 173.632812 243.042969 Z M 173.632812 243.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.917969 243.652344 C 171.917969 243.535156 171.824219 243.441406 171.707031 243.441406 C 171.589844 243.441406 171.496094 243.535156 171.496094 243.652344 C 171.496094 243.769531 171.589844 243.863281 171.707031 243.863281 C 171.824219 243.863281 171.917969 243.769531 171.917969 243.652344 Z M 171.917969 243.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.175781 240.902344 C 172.175781 240.785156 172.082031 240.691406 171.964844 240.691406 C 171.847656 240.691406 171.753906 240.785156 171.753906 240.902344 C 171.753906 241.019531 171.847656 241.113281 171.964844 241.113281 C 172.082031 241.113281 172.175781 241.019531 172.175781 240.902344 Z M 172.175781 240.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.34375 244.277344 C 170.34375 244.160156 170.25 244.066406 170.132812 244.066406 C 170.015625 244.066406 169.921875 244.160156 169.921875 244.277344 C 169.921875 244.394531 170.015625 244.488281 170.132812 244.488281 C 170.25 244.488281 170.34375 244.394531 170.34375 244.277344 Z M 170.34375 244.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.890625 239.898438 C 169.890625 239.78125 169.796875 239.6875 169.679688 239.6875 C 169.5625 239.6875 169.46875 239.78125 169.46875 239.898438 C 169.46875 240.015625 169.5625 240.109375 169.679688 240.109375 C 169.796875 240.109375 169.890625 240.015625 169.890625 239.898438 Z M 169.890625 239.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.683594 242.003906 C 175.683594 241.886719 175.589844 241.792969 175.472656 241.792969 C 175.355469 241.792969 175.261719 241.886719 175.261719 242.003906 C 175.261719 242.121094 175.355469 242.214844 175.472656 242.214844 C 175.589844 242.214844 175.683594 242.121094 175.683594 242.003906 Z M 175.683594 242.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 177.1875 241.660156 C 177.1875 241.542969 177.09375 241.449219 176.976562 241.449219 C 176.859375 241.449219 176.765625 241.542969 176.765625 241.660156 C 176.765625 241.777344 176.859375 241.871094 176.976562 241.871094 C 177.09375 241.871094 177.1875 241.777344 177.1875 241.660156 Z M 177.1875 241.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.246094 241.96875 C 174.246094 241.851562 174.152344 241.757812 174.035156 241.757812 C 173.917969 241.757812 173.824219 241.851562 173.824219 241.96875 C 173.824219 242.085938 173.917969 242.179688 174.035156 242.179688 C 174.152344 242.179688 174.246094 242.085938 174.246094 241.96875 Z M 174.246094 241.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.359375 240.328125 C 179.359375 240.210938 179.265625 240.117188 179.148438 240.117188 C 179.03125 240.117188 178.9375 240.210938 178.9375 240.328125 C 178.9375 240.445312 179.03125 240.539062 179.148438 240.539062 C 179.265625 240.539062 179.359375 240.445312 179.359375 240.328125 Z M 179.359375 240.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.738281 240.433594 C 176.738281 240.316406 176.644531 240.222656 176.527344 240.222656 C 176.410156 240.222656 176.316406 240.316406 176.316406 240.433594 C 176.316406 240.550781 176.410156 240.644531 176.527344 240.644531 C 176.644531 240.644531 176.738281 240.550781 176.738281 240.433594 Z M 176.738281 240.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.113281 242.515625 C 178.113281 242.398438 178.019531 242.304688 177.902344 242.304688 C 177.785156 242.304688 177.691406 242.398438 177.691406 242.515625 C 177.691406 242.632812 177.785156 242.726562 177.902344 242.726562 C 178.019531 242.726562 178.113281 242.632812 178.113281 242.515625 Z M 178.113281 242.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.539062 242.660156 C 180.539062 242.542969 180.445312 242.449219 180.328125 242.449219 C 180.210938 242.449219 180.117188 242.542969 180.117188 242.660156 C 180.117188 242.777344 180.210938 242.871094 180.328125 242.871094 C 180.445312 242.871094 180.539062 242.777344 180.539062 242.660156 Z M 180.539062 242.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.992188 243.03125 C 179.992188 242.914062 179.898438 242.820312 179.78125 242.820312 C 179.664062 242.820312 179.570312 242.914062 179.570312 243.03125 C 179.570312 243.148438 179.664062 243.242188 179.78125 243.242188 C 179.898438 243.242188 179.992188 243.148438 179.992188 243.03125 Z M 179.992188 243.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.585938 246.292969 C 182.585938 246.175781 182.492188 246.082031 182.375 246.082031 C 182.257812 246.082031 182.164062 246.175781 182.164062 246.292969 C 182.164062 246.410156 182.257812 246.503906 182.375 246.503906 C 182.492188 246.503906 182.585938 246.410156 182.585938 246.292969 Z M 182.585938 246.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.570312 248.972656 C 183.570312 248.855469 183.476562 248.761719 183.359375 248.761719 C 183.242188 248.761719 183.148438 248.855469 183.148438 248.972656 C 183.148438 249.089844 183.242188 249.183594 183.359375 249.183594 C 183.476562 249.183594 183.570312 249.089844 183.570312 248.972656 Z M 183.570312 248.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.9375 253.402344 C 181.9375 253.285156 181.84375 253.191406 181.726562 253.191406 C 181.609375 253.191406 181.515625 253.285156 181.515625 253.402344 C 181.515625 253.519531 181.609375 253.613281 181.726562 253.613281 C 181.84375 253.613281 181.9375 253.519531 181.9375 253.402344 Z M 181.9375 253.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.792969 254.839844 C 181.792969 254.722656 181.699219 254.628906 181.582031 254.628906 C 181.464844 254.628906 181.371094 254.722656 181.371094 254.839844 C 181.371094 254.957031 181.464844 255.050781 181.582031 255.050781 C 181.699219 255.050781 181.792969 254.957031 181.792969 254.839844 Z M 181.792969 254.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 182.011719 256.78125 C 182.011719 256.664062 181.917969 256.570312 181.800781 256.570312 C 181.683594 256.570312 181.589844 256.664062 181.589844 256.78125 C 181.589844 256.898438 181.683594 256.992188 181.800781 256.992188 C 181.917969 256.992188 182.011719 256.898438 182.011719 256.78125 Z M 182.011719 256.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.53125 256.621094 C 184.53125 256.503906 184.4375 256.410156 184.320312 256.410156 C 184.203125 256.410156 184.109375 256.503906 184.109375 256.621094 C 184.109375 256.738281 184.203125 256.832031 184.320312 256.832031 C 184.4375 256.832031 184.53125 256.738281 184.53125 256.621094 Z M 184.53125 256.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.5 257.734375 C 187.5 257.617188 187.40625 257.523438 187.289062 257.523438 C 187.171875 257.523438 187.078125 257.617188 187.078125 257.734375 C 187.078125 257.851562 187.171875 257.945312 187.289062 257.945312 C 187.40625 257.945312 187.5 257.851562 187.5 257.734375 Z M 187.5 257.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.855469 261.375 C 184.855469 261.257812 184.761719 261.164062 184.644531 261.164062 C 184.527344 261.164062 184.433594 261.257812 184.433594 261.375 C 184.433594 261.492188 184.527344 261.585938 184.644531 261.585938 C 184.761719 261.585938 184.855469 261.492188 184.855469 261.375 Z M 184.855469 261.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.328125 259.820312 C 187.328125 259.703125 187.234375 259.609375 187.117188 259.609375 C 187 259.609375 186.90625 259.703125 186.90625 259.820312 C 186.90625 259.9375 187 260.03125 187.117188 260.03125 C 187.234375 260.03125 187.328125 259.9375 187.328125 259.820312 Z M 187.328125 259.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.644531 256.878906 C 187.644531 256.761719 187.550781 256.667969 187.433594 256.667969 C 187.316406 256.667969 187.222656 256.761719 187.222656 256.878906 C 187.222656 256.996094 187.316406 257.089844 187.433594 257.089844 C 187.550781 257.089844 187.644531 256.996094 187.644531 256.878906 Z M 187.644531 256.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.445312 249.429688 C 185.445312 249.3125 185.351562 249.21875 185.234375 249.21875 C 185.117188 249.21875 185.023438 249.3125 185.023438 249.429688 C 185.023438 249.546875 185.117188 249.640625 185.234375 249.640625 C 185.351562 249.640625 185.445312 249.546875 185.445312 249.429688 Z M 185.445312 249.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.480469 249.734375 C 189.480469 249.617188 189.386719 249.523438 189.269531 249.523438 C 189.152344 249.523438 189.058594 249.617188 189.058594 249.734375 C 189.058594 249.851562 189.152344 249.945312 189.269531 249.945312 C 189.386719 249.945312 189.480469 249.851562 189.480469 249.734375 Z M 189.480469 249.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.710938 246.574219 C 187.710938 246.457031 187.617188 246.363281 187.5 246.363281 C 187.382812 246.363281 187.289062 246.457031 187.289062 246.574219 C 187.289062 246.691406 187.382812 246.785156 187.5 246.785156 C 187.617188 246.785156 187.710938 246.691406 187.710938 246.574219 Z M 187.710938 246.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.347656 246.980469 C 188.347656 246.863281 188.253906 246.769531 188.136719 246.769531 C 188.019531 246.769531 187.925781 246.863281 187.925781 246.980469 C 187.925781 247.097656 188.019531 247.191406 188.136719 247.191406 C 188.253906 247.191406 188.347656 247.097656 188.347656 246.980469 Z M 188.347656 246.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.253906 243.414062 C 189.253906 243.296875 189.160156 243.203125 189.042969 243.203125 C 188.925781 243.203125 188.832031 243.296875 188.832031 243.414062 C 188.832031 243.53125 188.925781 243.625 189.042969 243.625 C 189.160156 243.625 189.253906 243.53125 189.253906 243.414062 Z M 189.253906 243.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.585938 243.488281 C 191.585938 243.371094 191.492188 243.277344 191.375 243.277344 C 191.257812 243.277344 191.164062 243.371094 191.164062 243.488281 C 191.164062 243.605469 191.257812 243.699219 191.375 243.699219 C 191.492188 243.699219 191.585938 243.605469 191.585938 243.488281 Z M 191.585938 243.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.855469 242.820312 C 193.855469 242.703125 193.761719 242.609375 193.644531 242.609375 C 193.527344 242.609375 193.433594 242.703125 193.433594 242.820312 C 193.433594 242.9375 193.527344 243.03125 193.644531 243.03125 C 193.761719 243.03125 193.855469 242.9375 193.855469 242.820312 Z M 193.855469 242.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.640625 243.152344 C 196.640625 243.035156 196.546875 242.941406 196.429688 242.941406 C 196.3125 242.941406 196.21875 243.035156 196.21875 243.152344 C 196.21875 243.269531 196.3125 243.363281 196.429688 243.363281 C 196.546875 243.363281 196.640625 243.269531 196.640625 243.152344 Z M 196.640625 243.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.195312 244.234375 C 195.195312 244.117188 195.101562 244.023438 194.984375 244.023438 C 194.867188 244.023438 194.773438 244.117188 194.773438 244.234375 C 194.773438 244.351562 194.867188 244.445312 194.984375 244.445312 C 195.101562 244.445312 195.195312 244.351562 195.195312 244.234375 Z M 195.195312 244.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.265625 245.710938 C 199.265625 245.59375 199.171875 245.5 199.054688 245.5 C 198.9375 245.5 198.84375 245.59375 198.84375 245.710938 C 198.84375 245.828125 198.9375 245.921875 199.054688 245.921875 C 199.171875 245.921875 199.265625 245.828125 199.265625 245.710938 Z M 199.265625 245.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.675781 246.722656 C 202.675781 246.605469 202.582031 246.511719 202.464844 246.511719 C 202.347656 246.511719 202.253906 246.605469 202.253906 246.722656 C 202.253906 246.839844 202.347656 246.933594 202.464844 246.933594 C 202.582031 246.933594 202.675781 246.839844 202.675781 246.722656 Z M 202.675781 246.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.453125 245.839844 C 198.453125 245.722656 198.359375 245.628906 198.242188 245.628906 C 198.125 245.628906 198.03125 245.722656 198.03125 245.839844 C 198.03125 245.957031 198.125 246.050781 198.242188 246.050781 C 198.359375 246.050781 198.453125 245.957031 198.453125 245.839844 Z M 198.453125 245.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.101562 247.75 C 198.101562 247.632812 198.007812 247.539062 197.890625 247.539062 C 197.773438 247.539062 197.679688 247.632812 197.679688 247.75 C 197.679688 247.867188 197.773438 247.960938 197.890625 247.960938 C 198.007812 247.960938 198.101562 247.867188 198.101562 247.75 Z M 198.101562 247.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.449219 248.0625 C 198.449219 247.945312 198.355469 247.851562 198.238281 247.851562 C 198.121094 247.851562 198.027344 247.945312 198.027344 248.0625 C 198.027344 248.179688 198.121094 248.273438 198.238281 248.273438 C 198.355469 248.273438 198.449219 248.179688 198.449219 248.0625 Z M 198.449219 248.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.9375 244.585938 C 196.9375 244.46875 196.84375 244.375 196.726562 244.375 C 196.609375 244.375 196.515625 244.46875 196.515625 244.585938 C 196.515625 244.703125 196.609375 244.796875 196.726562 244.796875 C 196.84375 244.796875 196.9375 244.703125 196.9375 244.585938 Z M 196.9375 244.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.746094 243.382812 C 192.746094 243.265625 192.652344 243.171875 192.535156 243.171875 C 192.417969 243.171875 192.324219 243.265625 192.324219 243.382812 C 192.324219 243.5 192.417969 243.59375 192.535156 243.59375 C 192.652344 243.59375 192.746094 243.5 192.746094 243.382812 Z M 192.746094 243.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.449219 242.847656 C 194.449219 242.730469 194.355469 242.636719 194.238281 242.636719 C 194.121094 242.636719 194.027344 242.730469 194.027344 242.847656 C 194.027344 242.964844 194.121094 243.058594 194.238281 243.058594 C 194.355469 243.058594 194.449219 242.964844 194.449219 242.847656 Z M 194.449219 242.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.347656 239.429688 C 192.347656 239.3125 192.253906 239.21875 192.136719 239.21875 C 192.019531 239.21875 191.925781 239.3125 191.925781 239.429688 C 191.925781 239.546875 192.019531 239.640625 192.136719 239.640625 C 192.253906 239.640625 192.347656 239.546875 192.347656 239.429688 Z M 192.347656 239.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.550781 239.886719 C 193.550781 239.769531 193.457031 239.675781 193.339844 239.675781 C 193.222656 239.675781 193.128906 239.769531 193.128906 239.886719 C 193.128906 240.003906 193.222656 240.097656 193.339844 240.097656 C 193.457031 240.097656 193.550781 240.003906 193.550781 239.886719 Z M 193.550781 239.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.484375 239.136719 C 192.484375 239.019531 192.390625 238.925781 192.273438 238.925781 C 192.15625 238.925781 192.0625 239.019531 192.0625 239.136719 C 192.0625 239.253906 192.15625 239.347656 192.273438 239.347656 C 192.390625 239.347656 192.484375 239.253906 192.484375 239.136719 Z M 192.484375 239.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.097656 238.335938 C 198.097656 238.21875 198.003906 238.125 197.886719 238.125 C 197.769531 238.125 197.675781 238.21875 197.675781 238.335938 C 197.675781 238.453125 197.769531 238.546875 197.886719 238.546875 C 198.003906 238.546875 198.097656 238.453125 198.097656 238.335938 Z M 198.097656 238.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.683594 239.082031 C 200.683594 238.964844 200.589844 238.871094 200.472656 238.871094 C 200.355469 238.871094 200.261719 238.964844 200.261719 239.082031 C 200.261719 239.199219 200.355469 239.292969 200.472656 239.292969 C 200.589844 239.292969 200.683594 239.199219 200.683594 239.082031 Z M 200.683594 239.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.0625 240.4375 C 199.0625 240.320312 198.96875 240.226562 198.851562 240.226562 C 198.734375 240.226562 198.640625 240.320312 198.640625 240.4375 C 198.640625 240.554688 198.734375 240.648438 198.851562 240.648438 C 198.96875 240.648438 199.0625 240.554688 199.0625 240.4375 Z M 199.0625 240.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.539062 239.5 C 198.539062 239.382812 198.445312 239.289062 198.328125 239.289062 C 198.210938 239.289062 198.117188 239.382812 198.117188 239.5 C 198.117188 239.617188 198.210938 239.710938 198.328125 239.710938 C 198.445312 239.710938 198.539062 239.617188 198.539062 239.5 Z M 198.539062 239.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.386719 242.054688 C 201.386719 241.9375 201.292969 241.84375 201.175781 241.84375 C 201.058594 241.84375 200.964844 241.9375 200.964844 242.054688 C 200.964844 242.171875 201.058594 242.265625 201.175781 242.265625 C 201.292969 242.265625 201.386719 242.171875 201.386719 242.054688 Z M 201.386719 242.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.507812 241.589844 C 201.507812 241.472656 201.414062 241.378906 201.296875 241.378906 C 201.179688 241.378906 201.085938 241.472656 201.085938 241.589844 C 201.085938 241.707031 201.179688 241.800781 201.296875 241.800781 C 201.414062 241.800781 201.507812 241.707031 201.507812 241.589844 Z M 201.507812 241.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.074219 241.957031 C 203.074219 241.839844 202.980469 241.746094 202.863281 241.746094 C 202.746094 241.746094 202.652344 241.839844 202.652344 241.957031 C 202.652344 242.074219 202.746094 242.167969 202.863281 242.167969 C 202.980469 242.167969 203.074219 242.074219 203.074219 241.957031 Z M 203.074219 241.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.054688 240.78125 C 202.054688 240.664062 201.960938 240.570312 201.84375 240.570312 C 201.726562 240.570312 201.632812 240.664062 201.632812 240.78125 C 201.632812 240.898438 201.726562 240.992188 201.84375 240.992188 C 201.960938 240.992188 202.054688 240.898438 202.054688 240.78125 Z M 202.054688 240.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.230469 242.523438 C 204.230469 242.40625 204.136719 242.3125 204.019531 242.3125 C 203.902344 242.3125 203.808594 242.40625 203.808594 242.523438 C 203.808594 242.640625 203.902344 242.734375 204.019531 242.734375 C 204.136719 242.734375 204.230469 242.640625 204.230469 242.523438 Z M 204.230469 242.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.03125 240.863281 C 205.03125 240.746094 204.9375 240.652344 204.820312 240.652344 C 204.703125 240.652344 204.609375 240.746094 204.609375 240.863281 C 204.609375 240.980469 204.703125 241.074219 204.820312 241.074219 C 204.9375 241.074219 205.03125 240.980469 205.03125 240.863281 Z M 205.03125 240.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.480469 242.128906 C 202.480469 242.011719 202.386719 241.917969 202.269531 241.917969 C 202.152344 241.917969 202.058594 242.011719 202.058594 242.128906 C 202.058594 242.246094 202.152344 242.339844 202.269531 242.339844 C 202.386719 242.339844 202.480469 242.246094 202.480469 242.128906 Z M 202.480469 242.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.132812 245.101562 C 201.132812 244.984375 201.039062 244.890625 200.921875 244.890625 C 200.804688 244.890625 200.710938 244.984375 200.710938 245.101562 C 200.710938 245.21875 200.804688 245.3125 200.921875 245.3125 C 201.039062 245.3125 201.132812 245.21875 201.132812 245.101562 Z M 201.132812 245.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.347656 244.355469 C 200.347656 244.238281 200.253906 244.144531 200.136719 244.144531 C 200.019531 244.144531 199.925781 244.238281 199.925781 244.355469 C 199.925781 244.472656 200.019531 244.566406 200.136719 244.566406 C 200.253906 244.566406 200.347656 244.472656 200.347656 244.355469 Z M 200.347656 244.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.519531 247.039062 C 201.519531 246.921875 201.425781 246.828125 201.308594 246.828125 C 201.191406 246.828125 201.097656 246.921875 201.097656 247.039062 C 201.097656 247.15625 201.191406 247.25 201.308594 247.25 C 201.425781 247.25 201.519531 247.15625 201.519531 247.039062 Z M 201.519531 247.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.941406 245.542969 C 201.941406 245.425781 201.847656 245.332031 201.730469 245.332031 C 201.613281 245.332031 201.519531 245.425781 201.519531 245.542969 C 201.519531 245.660156 201.613281 245.753906 201.730469 245.753906 C 201.847656 245.753906 201.941406 245.660156 201.941406 245.542969 Z M 201.941406 245.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.332031 243.726562 C 200.332031 243.609375 200.238281 243.515625 200.121094 243.515625 C 200.003906 243.515625 199.910156 243.609375 199.910156 243.726562 C 199.910156 243.84375 200.003906 243.9375 200.121094 243.9375 C 200.238281 243.9375 200.332031 243.84375 200.332031 243.726562 Z M 200.332031 243.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.523438 244.851562 C 202.523438 244.734375 202.429688 244.640625 202.3125 244.640625 C 202.195312 244.640625 202.101562 244.734375 202.101562 244.851562 C 202.101562 244.96875 202.195312 245.0625 202.3125 245.0625 C 202.429688 245.0625 202.523438 244.96875 202.523438 244.851562 Z M 202.523438 244.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.203125 249.40625 C 203.203125 249.289062 203.109375 249.195312 202.992188 249.195312 C 202.875 249.195312 202.78125 249.289062 202.78125 249.40625 C 202.78125 249.523438 202.875 249.617188 202.992188 249.617188 C 203.109375 249.617188 203.203125 249.523438 203.203125 249.40625 Z M 203.203125 249.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.097656 246.851562 C 205.097656 246.734375 205.003906 246.640625 204.886719 246.640625 C 204.769531 246.640625 204.675781 246.734375 204.675781 246.851562 C 204.675781 246.96875 204.769531 247.0625 204.886719 247.0625 C 205.003906 247.0625 205.097656 246.96875 205.097656 246.851562 Z M 205.097656 246.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.066406 246.699219 C 209.066406 246.582031 208.972656 246.488281 208.855469 246.488281 C 208.738281 246.488281 208.644531 246.582031 208.644531 246.699219 C 208.644531 246.816406 208.738281 246.910156 208.855469 246.910156 C 208.972656 246.910156 209.066406 246.816406 209.066406 246.699219 Z M 209.066406 246.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.558594 242.4375 C 205.558594 242.320312 205.464844 242.226562 205.347656 242.226562 C 205.230469 242.226562 205.136719 242.320312 205.136719 242.4375 C 205.136719 242.554688 205.230469 242.648438 205.347656 242.648438 C 205.464844 242.648438 205.558594 242.554688 205.558594 242.4375 Z M 205.558594 242.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.402344 239.292969 C 204.402344 239.175781 204.308594 239.082031 204.191406 239.082031 C 204.074219 239.082031 203.980469 239.175781 203.980469 239.292969 C 203.980469 239.410156 204.074219 239.503906 204.191406 239.503906 C 204.308594 239.503906 204.402344 239.410156 204.402344 239.292969 Z M 204.402344 239.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.839844 238.554688 C 206.839844 238.4375 206.746094 238.34375 206.628906 238.34375 C 206.511719 238.34375 206.417969 238.4375 206.417969 238.554688 C 206.417969 238.671875 206.511719 238.765625 206.628906 238.765625 C 206.746094 238.765625 206.839844 238.671875 206.839844 238.554688 Z M 206.839844 238.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.300781 239.675781 C 208.300781 239.558594 208.207031 239.464844 208.089844 239.464844 C 207.972656 239.464844 207.878906 239.558594 207.878906 239.675781 C 207.878906 239.792969 207.972656 239.886719 208.089844 239.886719 C 208.207031 239.886719 208.300781 239.792969 208.300781 239.675781 Z M 208.300781 239.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.632812 240.65625 C 206.632812 240.539062 206.539062 240.445312 206.421875 240.445312 C 206.304688 240.445312 206.210938 240.539062 206.210938 240.65625 C 206.210938 240.773438 206.304688 240.867188 206.421875 240.867188 C 206.539062 240.867188 206.632812 240.773438 206.632812 240.65625 Z M 206.632812 240.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.507812 238.96875 C 208.507812 238.851562 208.414062 238.757812 208.296875 238.757812 C 208.179688 238.757812 208.085938 238.851562 208.085938 238.96875 C 208.085938 239.085938 208.179688 239.179688 208.296875 239.179688 C 208.414062 239.179688 208.507812 239.085938 208.507812 238.96875 Z M 208.507812 238.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.21875 241.796875 C 212.21875 241.679688 212.125 241.585938 212.007812 241.585938 C 211.890625 241.585938 211.796875 241.679688 211.796875 241.796875 C 211.796875 241.914062 211.890625 242.007812 212.007812 242.007812 C 212.125 242.007812 212.21875 241.914062 212.21875 241.796875 Z M 212.21875 241.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.523438 241.953125 C 213.523438 241.835938 213.429688 241.742188 213.3125 241.742188 C 213.195312 241.742188 213.101562 241.835938 213.101562 241.953125 C 213.101562 242.070312 213.195312 242.164062 213.3125 242.164062 C 213.429688 242.164062 213.523438 242.070312 213.523438 241.953125 Z M 213.523438 241.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.941406 240.867188 C 208.941406 240.75 208.847656 240.65625 208.730469 240.65625 C 208.613281 240.65625 208.519531 240.75 208.519531 240.867188 C 208.519531 240.984375 208.613281 241.078125 208.730469 241.078125 C 208.847656 241.078125 208.941406 240.984375 208.941406 240.867188 Z M 208.941406 240.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.710938 242.121094 C 208.710938 242.003906 208.617188 241.910156 208.5 241.910156 C 208.382812 241.910156 208.289062 242.003906 208.289062 242.121094 C 208.289062 242.238281 208.382812 242.332031 208.5 242.332031 C 208.617188 242.332031 208.710938 242.238281 208.710938 242.121094 Z M 208.710938 242.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.601562 240.550781 C 209.601562 240.433594 209.507812 240.339844 209.390625 240.339844 C 209.273438 240.339844 209.179688 240.433594 209.179688 240.550781 C 209.179688 240.667969 209.273438 240.761719 209.390625 240.761719 C 209.507812 240.761719 209.601562 240.667969 209.601562 240.550781 Z M 209.601562 240.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.476562 240.472656 C 205.476562 240.355469 205.382812 240.261719 205.265625 240.261719 C 205.148438 240.261719 205.054688 240.355469 205.054688 240.472656 C 205.054688 240.589844 205.148438 240.683594 205.265625 240.683594 C 205.382812 240.683594 205.476562 240.589844 205.476562 240.472656 Z M 205.476562 240.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.636719 240.265625 C 210.636719 240.148438 210.542969 240.054688 210.425781 240.054688 C 210.308594 240.054688 210.214844 240.148438 210.214844 240.265625 C 210.214844 240.382812 210.308594 240.476562 210.425781 240.476562 C 210.542969 240.476562 210.636719 240.382812 210.636719 240.265625 Z M 210.636719 240.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.300781 236.777344 C 210.300781 236.660156 210.207031 236.566406 210.089844 236.566406 C 209.972656 236.566406 209.878906 236.660156 209.878906 236.777344 C 209.878906 236.894531 209.972656 236.988281 210.089844 236.988281 C 210.207031 236.988281 210.300781 236.894531 210.300781 236.777344 Z M 210.300781 236.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.421875 236.960938 C 211.421875 236.84375 211.328125 236.75 211.210938 236.75 C 211.09375 236.75 211 236.84375 211 236.960938 C 211 237.078125 211.09375 237.171875 211.210938 237.171875 C 211.328125 237.171875 211.421875 237.078125 211.421875 236.960938 Z M 211.421875 236.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.085938 234.945312 C 209.085938 234.828125 208.992188 234.734375 208.875 234.734375 C 208.757812 234.734375 208.664062 234.828125 208.664062 234.945312 C 208.664062 235.0625 208.757812 235.15625 208.875 235.15625 C 208.992188 235.15625 209.085938 235.0625 209.085938 234.945312 Z M 209.085938 234.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.664062 235.546875 C 206.664062 235.429688 206.570312 235.335938 206.453125 235.335938 C 206.335938 235.335938 206.242188 235.429688 206.242188 235.546875 C 206.242188 235.664062 206.335938 235.757812 206.453125 235.757812 C 206.570312 235.757812 206.664062 235.664062 206.664062 235.546875 Z M 206.664062 235.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.601562 232.988281 C 204.601562 232.871094 204.507812 232.777344 204.390625 232.777344 C 204.273438 232.777344 204.179688 232.871094 204.179688 232.988281 C 204.179688 233.105469 204.273438 233.199219 204.390625 233.199219 C 204.507812 233.199219 204.601562 233.105469 204.601562 232.988281 Z M 204.601562 232.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.136719 236.976562 C 205.136719 236.859375 205.042969 236.765625 204.925781 236.765625 C 204.808594 236.765625 204.714844 236.859375 204.714844 236.976562 C 204.714844 237.09375 204.808594 237.1875 204.925781 237.1875 C 205.042969 237.1875 205.136719 237.09375 205.136719 236.976562 Z M 205.136719 236.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.386719 235.886719 C 205.386719 235.769531 205.292969 235.675781 205.175781 235.675781 C 205.058594 235.675781 204.964844 235.769531 204.964844 235.886719 C 204.964844 236.003906 205.058594 236.097656 205.175781 236.097656 C 205.292969 236.097656 205.386719 236.003906 205.386719 235.886719 Z M 205.386719 235.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.964844 236.621094 C 206.964844 236.503906 206.871094 236.410156 206.753906 236.410156 C 206.636719 236.410156 206.542969 236.503906 206.542969 236.621094 C 206.542969 236.738281 206.636719 236.832031 206.753906 236.832031 C 206.871094 236.832031 206.964844 236.738281 206.964844 236.621094 Z M 206.964844 236.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.839844 235.238281 C 204.839844 235.121094 204.746094 235.027344 204.628906 235.027344 C 204.511719 235.027344 204.417969 235.121094 204.417969 235.238281 C 204.417969 235.355469 204.511719 235.449219 204.628906 235.449219 C 204.746094 235.449219 204.839844 235.355469 204.839844 235.238281 Z M 204.839844 235.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.625 235.710938 C 207.625 235.59375 207.53125 235.5 207.414062 235.5 C 207.296875 235.5 207.203125 235.59375 207.203125 235.710938 C 207.203125 235.828125 207.296875 235.921875 207.414062 235.921875 C 207.53125 235.921875 207.625 235.828125 207.625 235.710938 Z M 207.625 235.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.84375 238.347656 C 205.84375 238.230469 205.75 238.136719 205.632812 238.136719 C 205.515625 238.136719 205.421875 238.230469 205.421875 238.347656 C 205.421875 238.464844 205.515625 238.558594 205.632812 238.558594 C 205.75 238.558594 205.84375 238.464844 205.84375 238.347656 Z M 205.84375 238.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.980469 242.691406 C 204.980469 242.574219 204.886719 242.480469 204.769531 242.480469 C 204.652344 242.480469 204.558594 242.574219 204.558594 242.691406 C 204.558594 242.808594 204.652344 242.902344 204.769531 242.902344 C 204.886719 242.902344 204.980469 242.808594 204.980469 242.691406 Z M 204.980469 242.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.660156 243.328125 C 205.660156 243.210938 205.566406 243.117188 205.449219 243.117188 C 205.332031 243.117188 205.238281 243.210938 205.238281 243.328125 C 205.238281 243.445312 205.332031 243.539062 205.449219 243.539062 C 205.566406 243.539062 205.660156 243.445312 205.660156 243.328125 Z M 205.660156 243.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.609375 243.121094 C 207.609375 243.003906 207.515625 242.910156 207.398438 242.910156 C 207.28125 242.910156 207.1875 243.003906 207.1875 243.121094 C 207.1875 243.238281 207.28125 243.332031 207.398438 243.332031 C 207.515625 243.332031 207.609375 243.238281 207.609375 243.121094 Z M 207.609375 243.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.136719 244.324219 C 206.136719 244.207031 206.042969 244.113281 205.925781 244.113281 C 205.808594 244.113281 205.714844 244.207031 205.714844 244.324219 C 205.714844 244.441406 205.808594 244.535156 205.925781 244.535156 C 206.042969 244.535156 206.136719 244.441406 206.136719 244.324219 Z M 206.136719 244.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.761719 243.847656 C 208.761719 243.730469 208.667969 243.636719 208.550781 243.636719 C 208.433594 243.636719 208.339844 243.730469 208.339844 243.847656 C 208.339844 243.964844 208.433594 244.058594 208.550781 244.058594 C 208.667969 244.058594 208.761719 243.964844 208.761719 243.847656 Z M 208.761719 243.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.402344 243.058594 C 206.402344 242.941406 206.308594 242.847656 206.191406 242.847656 C 206.074219 242.847656 205.980469 242.941406 205.980469 243.058594 C 205.980469 243.175781 206.074219 243.269531 206.191406 243.269531 C 206.308594 243.269531 206.402344 243.175781 206.402344 243.058594 Z M 206.402344 243.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.453125 240.636719 C 202.453125 240.519531 202.359375 240.425781 202.242188 240.425781 C 202.125 240.425781 202.03125 240.519531 202.03125 240.636719 C 202.03125 240.753906 202.125 240.847656 202.242188 240.847656 C 202.359375 240.847656 202.453125 240.753906 202.453125 240.636719 Z M 202.453125 240.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 203.402344 241.277344 C 203.402344 241.160156 203.308594 241.066406 203.191406 241.066406 C 203.074219 241.066406 202.980469 241.160156 202.980469 241.277344 C 202.980469 241.394531 203.074219 241.488281 203.191406 241.488281 C 203.308594 241.488281 203.402344 241.394531 203.402344 241.277344 Z M 203.402344 241.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.746094 242.050781 C 205.746094 241.933594 205.652344 241.839844 205.535156 241.839844 C 205.417969 241.839844 205.324219 241.933594 205.324219 242.050781 C 205.324219 242.167969 205.417969 242.261719 205.535156 242.261719 C 205.652344 242.261719 205.746094 242.167969 205.746094 242.050781 Z M 205.746094 242.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.191406 242.324219 C 208.191406 242.207031 208.097656 242.113281 207.980469 242.113281 C 207.863281 242.113281 207.769531 242.207031 207.769531 242.324219 C 207.769531 242.441406 207.863281 242.535156 207.980469 242.535156 C 208.097656 242.535156 208.191406 242.441406 208.191406 242.324219 Z M 208.191406 242.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.050781 239.953125 C 209.050781 239.835938 208.957031 239.742188 208.839844 239.742188 C 208.722656 239.742188 208.628906 239.835938 208.628906 239.953125 C 208.628906 240.070312 208.722656 240.164062 208.839844 240.164062 C 208.957031 240.164062 209.050781 240.070312 209.050781 239.953125 Z M 209.050781 239.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.515625 239.210938 C 208.515625 239.09375 208.421875 239 208.304688 239 C 208.1875 239 208.09375 239.09375 208.09375 239.210938 C 208.09375 239.328125 208.1875 239.421875 208.304688 239.421875 C 208.421875 239.421875 208.515625 239.328125 208.515625 239.210938 Z M 208.515625 239.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.496094 238.980469 C 209.496094 238.863281 209.402344 238.769531 209.285156 238.769531 C 209.167969 238.769531 209.074219 238.863281 209.074219 238.980469 C 209.074219 239.097656 209.167969 239.191406 209.285156 239.191406 C 209.402344 239.191406 209.496094 239.097656 209.496094 238.980469 Z M 209.496094 238.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.8125 237.171875 C 209.8125 237.054688 209.71875 236.960938 209.601562 236.960938 C 209.484375 236.960938 209.390625 237.054688 209.390625 237.171875 C 209.390625 237.289062 209.484375 237.382812 209.601562 237.382812 C 209.71875 237.382812 209.8125 237.289062 209.8125 237.171875 Z M 209.8125 237.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.757812 236.390625 C 210.757812 236.273438 210.664062 236.179688 210.546875 236.179688 C 210.429688 236.179688 210.335938 236.273438 210.335938 236.390625 C 210.335938 236.507812 210.429688 236.601562 210.546875 236.601562 C 210.664062 236.601562 210.757812 236.507812 210.757812 236.390625 Z M 210.757812 236.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.757812 234.703125 C 209.757812 234.585938 209.664062 234.492188 209.546875 234.492188 C 209.429688 234.492188 209.335938 234.585938 209.335938 234.703125 C 209.335938 234.820312 209.429688 234.914062 209.546875 234.914062 C 209.664062 234.914062 209.757812 234.820312 209.757812 234.703125 Z M 209.757812 234.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.113281 235.707031 C 212.113281 235.589844 212.019531 235.496094 211.902344 235.496094 C 211.785156 235.496094 211.691406 235.589844 211.691406 235.707031 C 211.691406 235.824219 211.785156 235.917969 211.902344 235.917969 C 212.019531 235.917969 212.113281 235.824219 212.113281 235.707031 Z M 212.113281 235.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.03125 237.761719 C 214.03125 237.644531 213.9375 237.550781 213.820312 237.550781 C 213.703125 237.550781 213.609375 237.644531 213.609375 237.761719 C 213.609375 237.878906 213.703125 237.972656 213.820312 237.972656 C 213.9375 237.972656 214.03125 237.878906 214.03125 237.761719 Z M 214.03125 237.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.082031 236.222656 C 212.082031 236.105469 211.988281 236.011719 211.871094 236.011719 C 211.753906 236.011719 211.660156 236.105469 211.660156 236.222656 C 211.660156 236.339844 211.753906 236.433594 211.871094 236.433594 C 211.988281 236.433594 212.082031 236.339844 212.082031 236.222656 Z M 212.082031 236.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.371094 235.261719 C 210.371094 235.144531 210.277344 235.050781 210.160156 235.050781 C 210.042969 235.050781 209.949219 235.144531 209.949219 235.261719 C 209.949219 235.378906 210.042969 235.472656 210.160156 235.472656 C 210.277344 235.472656 210.371094 235.378906 210.371094 235.261719 Z M 210.371094 235.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.253906 236.949219 C 210.253906 236.832031 210.160156 236.738281 210.042969 236.738281 C 209.925781 236.738281 209.832031 236.832031 209.832031 236.949219 C 209.832031 237.066406 209.925781 237.160156 210.042969 237.160156 C 210.160156 237.160156 210.253906 237.066406 210.253906 236.949219 Z M 210.253906 236.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.578125 232.554688 C 211.578125 232.4375 211.484375 232.34375 211.367188 232.34375 C 211.25 232.34375 211.15625 232.4375 211.15625 232.554688 C 211.15625 232.671875 211.25 232.765625 211.367188 232.765625 C 211.484375 232.765625 211.578125 232.671875 211.578125 232.554688 Z M 211.578125 232.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.144531 233.890625 C 212.144531 233.773438 212.050781 233.679688 211.933594 233.679688 C 211.816406 233.679688 211.722656 233.773438 211.722656 233.890625 C 211.722656 234.007812 211.816406 234.101562 211.933594 234.101562 C 212.050781 234.101562 212.144531 234.007812 212.144531 233.890625 Z M 212.144531 233.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.195312 234.808594 C 213.195312 234.691406 213.101562 234.597656 212.984375 234.597656 C 212.867188 234.597656 212.773438 234.691406 212.773438 234.808594 C 212.773438 234.925781 212.867188 235.019531 212.984375 235.019531 C 213.101562 235.019531 213.195312 234.925781 213.195312 234.808594 Z M 213.195312 234.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.445312 235.90625 C 212.445312 235.789062 212.351562 235.695312 212.234375 235.695312 C 212.117188 235.695312 212.023438 235.789062 212.023438 235.90625 C 212.023438 236.023438 212.117188 236.117188 212.234375 236.117188 C 212.351562 236.117188 212.445312 236.023438 212.445312 235.90625 Z M 212.445312 235.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.007812 237.675781 C 214.007812 237.558594 213.914062 237.464844 213.796875 237.464844 C 213.679688 237.464844 213.585938 237.558594 213.585938 237.675781 C 213.585938 237.792969 213.679688 237.886719 213.796875 237.886719 C 213.914062 237.886719 214.007812 237.792969 214.007812 237.675781 Z M 214.007812 237.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.546875 234.640625 C 213.546875 234.523438 213.453125 234.429688 213.335938 234.429688 C 213.21875 234.429688 213.125 234.523438 213.125 234.640625 C 213.125 234.757812 213.21875 234.851562 213.335938 234.851562 C 213.453125 234.851562 213.546875 234.757812 213.546875 234.640625 Z M 213.546875 234.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.148438 237.976562 C 215.148438 237.859375 215.054688 237.765625 214.9375 237.765625 C 214.820312 237.765625 214.726562 237.859375 214.726562 237.976562 C 214.726562 238.09375 214.820312 238.1875 214.9375 238.1875 C 215.054688 238.1875 215.148438 238.09375 215.148438 237.976562 Z M 215.148438 237.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.109375 238.144531 C 216.109375 238.027344 216.015625 237.933594 215.898438 237.933594 C 215.78125 237.933594 215.6875 238.027344 215.6875 238.144531 C 215.6875 238.261719 215.78125 238.355469 215.898438 238.355469 C 216.015625 238.355469 216.109375 238.261719 216.109375 238.144531 Z M 216.109375 238.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.980469 238.898438 C 217.980469 238.78125 217.886719 238.6875 217.769531 238.6875 C 217.652344 238.6875 217.558594 238.78125 217.558594 238.898438 C 217.558594 239.015625 217.652344 239.109375 217.769531 239.109375 C 217.886719 239.109375 217.980469 239.015625 217.980469 238.898438 Z M 217.980469 238.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.253906 237.960938 C 216.253906 237.84375 216.160156 237.75 216.042969 237.75 C 215.925781 237.75 215.832031 237.84375 215.832031 237.960938 C 215.832031 238.078125 215.925781 238.171875 216.042969 238.171875 C 216.160156 238.171875 216.253906 238.078125 216.253906 237.960938 Z M 216.253906 237.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.753906 241.234375 C 217.753906 241.117188 217.660156 241.023438 217.542969 241.023438 C 217.425781 241.023438 217.332031 241.117188 217.332031 241.234375 C 217.332031 241.351562 217.425781 241.445312 217.542969 241.445312 C 217.660156 241.445312 217.753906 241.351562 217.753906 241.234375 Z M 217.753906 241.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.390625 238.171875 C 217.390625 238.054688 217.296875 237.960938 217.179688 237.960938 C 217.0625 237.960938 216.96875 238.054688 216.96875 238.171875 C 216.96875 238.289062 217.0625 238.382812 217.179688 238.382812 C 217.296875 238.382812 217.390625 238.289062 217.390625 238.171875 Z M 217.390625 238.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.378906 239.445312 C 219.378906 239.328125 219.285156 239.234375 219.167969 239.234375 C 219.050781 239.234375 218.957031 239.328125 218.957031 239.445312 C 218.957031 239.5625 219.050781 239.65625 219.167969 239.65625 C 219.285156 239.65625 219.378906 239.5625 219.378906 239.445312 Z M 219.378906 239.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.855469 240.019531 C 217.855469 239.902344 217.761719 239.808594 217.644531 239.808594 C 217.527344 239.808594 217.433594 239.902344 217.433594 240.019531 C 217.433594 240.136719 217.527344 240.230469 217.644531 240.230469 C 217.761719 240.230469 217.855469 240.136719 217.855469 240.019531 Z M 217.855469 240.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.492188 240.5625 C 217.492188 240.445312 217.398438 240.351562 217.28125 240.351562 C 217.164062 240.351562 217.070312 240.445312 217.070312 240.5625 C 217.070312 240.679688 217.164062 240.773438 217.28125 240.773438 C 217.398438 240.773438 217.492188 240.679688 217.492188 240.5625 Z M 217.492188 240.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.660156 242.761719 C 220.660156 242.644531 220.566406 242.550781 220.449219 242.550781 C 220.332031 242.550781 220.238281 242.644531 220.238281 242.761719 C 220.238281 242.878906 220.332031 242.972656 220.449219 242.972656 C 220.566406 242.972656 220.660156 242.878906 220.660156 242.761719 Z M 220.660156 242.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.84375 242.65625 C 220.84375 242.539062 220.75 242.445312 220.632812 242.445312 C 220.515625 242.445312 220.421875 242.539062 220.421875 242.65625 C 220.421875 242.773438 220.515625 242.867188 220.632812 242.867188 C 220.75 242.867188 220.84375 242.773438 220.84375 242.65625 Z M 220.84375 242.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.957031 241.042969 C 220.957031 240.925781 220.863281 240.832031 220.746094 240.832031 C 220.628906 240.832031 220.535156 240.925781 220.535156 241.042969 C 220.535156 241.160156 220.628906 241.253906 220.746094 241.253906 C 220.863281 241.253906 220.957031 241.160156 220.957031 241.042969 Z M 220.957031 241.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.289062 239.746094 C 220.289062 239.628906 220.195312 239.535156 220.078125 239.535156 C 219.960938 239.535156 219.867188 239.628906 219.867188 239.746094 C 219.867188 239.863281 219.960938 239.957031 220.078125 239.957031 C 220.195312 239.957031 220.289062 239.863281 220.289062 239.746094 Z M 220.289062 239.746094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.453125 239.847656 C 217.453125 239.730469 217.359375 239.636719 217.242188 239.636719 C 217.125 239.636719 217.03125 239.730469 217.03125 239.847656 C 217.03125 239.964844 217.125 240.058594 217.242188 240.058594 C 217.359375 240.058594 217.453125 239.964844 217.453125 239.847656 Z M 217.453125 239.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.550781 240.691406 C 216.550781 240.574219 216.457031 240.480469 216.339844 240.480469 C 216.222656 240.480469 216.128906 240.574219 216.128906 240.691406 C 216.128906 240.808594 216.222656 240.902344 216.339844 240.902344 C 216.457031 240.902344 216.550781 240.808594 216.550781 240.691406 Z M 216.550781 240.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.304688 241.847656 C 214.304688 241.730469 214.210938 241.636719 214.09375 241.636719 C 213.976562 241.636719 213.882812 241.730469 213.882812 241.847656 C 213.882812 241.964844 213.976562 242.058594 214.09375 242.058594 C 214.210938 242.058594 214.304688 241.964844 214.304688 241.847656 Z M 214.304688 241.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.867188 241.324219 C 213.867188 241.207031 213.773438 241.113281 213.65625 241.113281 C 213.539062 241.113281 213.445312 241.207031 213.445312 241.324219 C 213.445312 241.441406 213.539062 241.535156 213.65625 241.535156 C 213.773438 241.535156 213.867188 241.441406 213.867188 241.324219 Z M 213.867188 241.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.828125 239.449219 C 211.828125 239.332031 211.734375 239.238281 211.617188 239.238281 C 211.5 239.238281 211.40625 239.332031 211.40625 239.449219 C 211.40625 239.566406 211.5 239.660156 211.617188 239.660156 C 211.734375 239.660156 211.828125 239.566406 211.828125 239.449219 Z M 211.828125 239.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.765625 239.625 C 213.765625 239.507812 213.671875 239.414062 213.554688 239.414062 C 213.4375 239.414062 213.34375 239.507812 213.34375 239.625 C 213.34375 239.742188 213.4375 239.835938 213.554688 239.835938 C 213.671875 239.835938 213.765625 239.742188 213.765625 239.625 Z M 213.765625 239.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.386719 244.148438 C 215.386719 244.03125 215.292969 243.9375 215.175781 243.9375 C 215.058594 243.9375 214.964844 244.03125 214.964844 244.148438 C 214.964844 244.265625 215.058594 244.359375 215.175781 244.359375 C 215.292969 244.359375 215.386719 244.265625 215.386719 244.148438 Z M 215.386719 244.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.363281 243.105469 C 219.363281 242.988281 219.269531 242.894531 219.152344 242.894531 C 219.035156 242.894531 218.941406 242.988281 218.941406 243.105469 C 218.941406 243.222656 219.035156 243.316406 219.152344 243.316406 C 219.269531 243.316406 219.363281 243.222656 219.363281 243.105469 Z M 219.363281 243.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.878906 244.378906 C 219.878906 244.261719 219.785156 244.167969 219.667969 244.167969 C 219.550781 244.167969 219.457031 244.261719 219.457031 244.378906 C 219.457031 244.496094 219.550781 244.589844 219.667969 244.589844 C 219.785156 244.589844 219.878906 244.496094 219.878906 244.378906 Z M 219.878906 244.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.65625 244.410156 C 222.65625 244.292969 222.5625 244.199219 222.445312 244.199219 C 222.328125 244.199219 222.234375 244.292969 222.234375 244.410156 C 222.234375 244.527344 222.328125 244.621094 222.445312 244.621094 C 222.5625 244.621094 222.65625 244.527344 222.65625 244.410156 Z M 222.65625 244.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.15625 243.664062 C 225.15625 243.546875 225.0625 243.453125 224.945312 243.453125 C 224.828125 243.453125 224.734375 243.546875 224.734375 243.664062 C 224.734375 243.78125 224.828125 243.875 224.945312 243.875 C 225.0625 243.875 225.15625 243.78125 225.15625 243.664062 Z M 225.15625 243.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.511719 245.636719 C 224.511719 245.519531 224.417969 245.425781 224.300781 245.425781 C 224.183594 245.425781 224.089844 245.519531 224.089844 245.636719 C 224.089844 245.753906 224.183594 245.847656 224.300781 245.847656 C 224.417969 245.847656 224.511719 245.753906 224.511719 245.636719 Z M 224.511719 245.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.425781 246.789062 C 220.425781 246.671875 220.332031 246.578125 220.214844 246.578125 C 220.097656 246.578125 220.003906 246.671875 220.003906 246.789062 C 220.003906 246.90625 220.097656 247 220.214844 247 C 220.332031 247 220.425781 246.90625 220.425781 246.789062 Z M 220.425781 246.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.054688 245.019531 C 223.054688 244.902344 222.960938 244.808594 222.84375 244.808594 C 222.726562 244.808594 222.632812 244.902344 222.632812 245.019531 C 222.632812 245.136719 222.726562 245.230469 222.84375 245.230469 C 222.960938 245.230469 223.054688 245.136719 223.054688 245.019531 Z M 223.054688 245.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.78125 244.421875 C 221.78125 244.304688 221.6875 244.210938 221.570312 244.210938 C 221.453125 244.210938 221.359375 244.304688 221.359375 244.421875 C 221.359375 244.539062 221.453125 244.632812 221.570312 244.632812 C 221.6875 244.632812 221.78125 244.539062 221.78125 244.421875 Z M 221.78125 244.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.210938 246.65625 C 226.210938 246.539062 226.117188 246.445312 226 246.445312 C 225.882812 246.445312 225.789062 246.539062 225.789062 246.65625 C 225.789062 246.773438 225.882812 246.867188 226 246.867188 C 226.117188 246.867188 226.210938 246.773438 226.210938 246.65625 Z M 226.210938 246.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.957031 246.71875 C 226.957031 246.601562 226.863281 246.507812 226.746094 246.507812 C 226.628906 246.507812 226.535156 246.601562 226.535156 246.71875 C 226.535156 246.835938 226.628906 246.929688 226.746094 246.929688 C 226.863281 246.929688 226.957031 246.835938 226.957031 246.71875 Z M 226.957031 246.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.796875 245.738281 C 223.796875 245.621094 223.703125 245.527344 223.585938 245.527344 C 223.46875 245.527344 223.375 245.621094 223.375 245.738281 C 223.375 245.855469 223.46875 245.949219 223.585938 245.949219 C 223.703125 245.949219 223.796875 245.855469 223.796875 245.738281 Z M 223.796875 245.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.183594 248.578125 C 224.183594 248.460938 224.089844 248.367188 223.972656 248.367188 C 223.855469 248.367188 223.761719 248.460938 223.761719 248.578125 C 223.761719 248.695312 223.855469 248.789062 223.972656 248.789062 C 224.089844 248.789062 224.183594 248.695312 224.183594 248.578125 Z M 224.183594 248.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.207031 247.222656 C 225.207031 247.105469 225.113281 247.011719 224.996094 247.011719 C 224.878906 247.011719 224.785156 247.105469 224.785156 247.222656 C 224.785156 247.339844 224.878906 247.433594 224.996094 247.433594 C 225.113281 247.433594 225.207031 247.339844 225.207031 247.222656 Z M 225.207031 247.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.46875 245.144531 C 224.46875 245.027344 224.375 244.933594 224.257812 244.933594 C 224.140625 244.933594 224.046875 245.027344 224.046875 245.144531 C 224.046875 245.261719 224.140625 245.355469 224.257812 245.355469 C 224.375 245.355469 224.46875 245.261719 224.46875 245.144531 Z M 224.46875 245.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.734375 247.734375 C 225.734375 247.617188 225.640625 247.523438 225.523438 247.523438 C 225.40625 247.523438 225.3125 247.617188 225.3125 247.734375 C 225.3125 247.851562 225.40625 247.945312 225.523438 247.945312 C 225.640625 247.945312 225.734375 247.851562 225.734375 247.734375 Z M 225.734375 247.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.824219 248.195312 C 224.824219 248.078125 224.730469 247.984375 224.613281 247.984375 C 224.496094 247.984375 224.402344 248.078125 224.402344 248.195312 C 224.402344 248.3125 224.496094 248.40625 224.613281 248.40625 C 224.730469 248.40625 224.824219 248.3125 224.824219 248.195312 Z M 224.824219 248.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226 247.097656 C 226 246.980469 225.90625 246.886719 225.789062 246.886719 C 225.671875 246.886719 225.578125 246.980469 225.578125 247.097656 C 225.578125 247.214844 225.671875 247.308594 225.789062 247.308594 C 225.90625 247.308594 226 247.214844 226 247.097656 Z M 226 247.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.46875 249.433594 C 225.46875 249.316406 225.375 249.222656 225.257812 249.222656 C 225.140625 249.222656 225.046875 249.316406 225.046875 249.433594 C 225.046875 249.550781 225.140625 249.644531 225.257812 249.644531 C 225.375 249.644531 225.46875 249.550781 225.46875 249.433594 Z M 225.46875 249.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.496094 251.480469 C 223.496094 251.363281 223.402344 251.269531 223.285156 251.269531 C 223.167969 251.269531 223.074219 251.363281 223.074219 251.480469 C 223.074219 251.597656 223.167969 251.691406 223.285156 251.691406 C 223.402344 251.691406 223.496094 251.597656 223.496094 251.480469 Z M 223.496094 251.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.972656 253.730469 C 221.972656 253.613281 221.878906 253.519531 221.761719 253.519531 C 221.644531 253.519531 221.550781 253.613281 221.550781 253.730469 C 221.550781 253.847656 221.644531 253.941406 221.761719 253.941406 C 221.878906 253.941406 221.972656 253.847656 221.972656 253.730469 Z M 221.972656 253.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.734375 254.976562 C 221.734375 254.859375 221.640625 254.765625 221.523438 254.765625 C 221.40625 254.765625 221.3125 254.859375 221.3125 254.976562 C 221.3125 255.09375 221.40625 255.1875 221.523438 255.1875 C 221.640625 255.1875 221.734375 255.09375 221.734375 254.976562 Z M 221.734375 254.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.804688 255.820312 C 218.804688 255.703125 218.710938 255.609375 218.59375 255.609375 C 218.476562 255.609375 218.382812 255.703125 218.382812 255.820312 C 218.382812 255.9375 218.476562 256.03125 218.59375 256.03125 C 218.710938 256.03125 218.804688 255.9375 218.804688 255.820312 Z M 218.804688 255.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.566406 255.933594 C 219.566406 255.816406 219.472656 255.722656 219.355469 255.722656 C 219.238281 255.722656 219.144531 255.816406 219.144531 255.933594 C 219.144531 256.050781 219.238281 256.144531 219.355469 256.144531 C 219.472656 256.144531 219.566406 256.050781 219.566406 255.933594 Z M 219.566406 255.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.09375 254.875 C 220.09375 254.757812 220 254.664062 219.882812 254.664062 C 219.765625 254.664062 219.671875 254.757812 219.671875 254.875 C 219.671875 254.992188 219.765625 255.085938 219.882812 255.085938 C 220 255.085938 220.09375 254.992188 220.09375 254.875 Z M 220.09375 254.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.992188 255.484375 C 221.992188 255.367188 221.898438 255.273438 221.78125 255.273438 C 221.664062 255.273438 221.570312 255.367188 221.570312 255.484375 C 221.570312 255.601562 221.664062 255.695312 221.78125 255.695312 C 221.898438 255.695312 221.992188 255.601562 221.992188 255.484375 Z M 221.992188 255.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.460938 260.492188 C 220.460938 260.375 220.367188 260.28125 220.25 260.28125 C 220.132812 260.28125 220.039062 260.375 220.039062 260.492188 C 220.039062 260.609375 220.132812 260.703125 220.25 260.703125 C 220.367188 260.703125 220.460938 260.609375 220.460938 260.492188 Z M 220.460938 260.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.925781 258.660156 C 217.925781 258.542969 217.832031 258.449219 217.714844 258.449219 C 217.597656 258.449219 217.503906 258.542969 217.503906 258.660156 C 217.503906 258.777344 217.597656 258.871094 217.714844 258.871094 C 217.832031 258.871094 217.925781 258.777344 217.925781 258.660156 Z M 217.925781 258.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.550781 258.375 C 221.550781 258.257812 221.457031 258.164062 221.339844 258.164062 C 221.222656 258.164062 221.128906 258.257812 221.128906 258.375 C 221.128906 258.492188 221.222656 258.585938 221.339844 258.585938 C 221.457031 258.585938 221.550781 258.492188 221.550781 258.375 Z M 221.550781 258.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.398438 257.921875 C 220.398438 257.804688 220.304688 257.710938 220.1875 257.710938 C 220.070312 257.710938 219.976562 257.804688 219.976562 257.921875 C 219.976562 258.039062 220.070312 258.132812 220.1875 258.132812 C 220.304688 258.132812 220.398438 258.039062 220.398438 257.921875 Z M 220.398438 257.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.710938 258.738281 C 222.710938 258.621094 222.617188 258.527344 222.5 258.527344 C 222.382812 258.527344 222.289062 258.621094 222.289062 258.738281 C 222.289062 258.855469 222.382812 258.949219 222.5 258.949219 C 222.617188 258.949219 222.710938 258.855469 222.710938 258.738281 Z M 222.710938 258.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.492188 260.972656 C 222.492188 260.855469 222.398438 260.761719 222.28125 260.761719 C 222.164062 260.761719 222.070312 260.855469 222.070312 260.972656 C 222.070312 261.089844 222.164062 261.183594 222.28125 261.183594 C 222.398438 261.183594 222.492188 261.089844 222.492188 260.972656 Z M 222.492188 260.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.261719 264.855469 C 220.261719 264.738281 220.167969 264.644531 220.050781 264.644531 C 219.933594 264.644531 219.839844 264.738281 219.839844 264.855469 C 219.839844 264.972656 219.933594 265.066406 220.050781 265.066406 C 220.167969 265.066406 220.261719 264.972656 220.261719 264.855469 Z M 220.261719 264.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.902344 271.347656 C 223.902344 271.230469 223.808594 271.136719 223.691406 271.136719 C 223.574219 271.136719 223.480469 271.230469 223.480469 271.347656 C 223.480469 271.464844 223.574219 271.558594 223.691406 271.558594 C 223.808594 271.558594 223.902344 271.464844 223.902344 271.347656 Z M 223.902344 271.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.824219 270.359375 C 221.824219 270.242188 221.730469 270.148438 221.613281 270.148438 C 221.496094 270.148438 221.402344 270.242188 221.402344 270.359375 C 221.402344 270.476562 221.496094 270.570312 221.613281 270.570312 C 221.730469 270.570312 221.824219 270.476562 221.824219 270.359375 Z M 221.824219 270.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218 268.425781 C 218 268.308594 217.90625 268.214844 217.789062 268.214844 C 217.671875 268.214844 217.578125 268.308594 217.578125 268.425781 C 217.578125 268.542969 217.671875 268.636719 217.789062 268.636719 C 217.90625 268.636719 218 268.542969 218 268.425781 Z M 218 268.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.035156 269.269531 C 217.035156 269.152344 216.941406 269.058594 216.824219 269.058594 C 216.707031 269.058594 216.613281 269.152344 216.613281 269.269531 C 216.613281 269.386719 216.707031 269.480469 216.824219 269.480469 C 216.941406 269.480469 217.035156 269.386719 217.035156 269.269531 Z M 217.035156 269.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.125 273.085938 C 215.125 272.96875 215.03125 272.875 214.914062 272.875 C 214.796875 272.875 214.703125 272.96875 214.703125 273.085938 C 214.703125 273.203125 214.796875 273.296875 214.914062 273.296875 C 215.03125 273.296875 215.125 273.203125 215.125 273.085938 Z M 215.125 273.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.65625 276.058594 C 213.65625 275.941406 213.5625 275.847656 213.445312 275.847656 C 213.328125 275.847656 213.234375 275.941406 213.234375 276.058594 C 213.234375 276.175781 213.328125 276.269531 213.445312 276.269531 C 213.5625 276.269531 213.65625 276.175781 213.65625 276.058594 Z M 213.65625 276.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.238281 275.695312 C 215.238281 275.578125 215.144531 275.484375 215.027344 275.484375 C 214.910156 275.484375 214.816406 275.578125 214.816406 275.695312 C 214.816406 275.8125 214.910156 275.90625 215.027344 275.90625 C 215.144531 275.90625 215.238281 275.8125 215.238281 275.695312 Z M 215.238281 275.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.738281 275.96875 C 214.738281 275.851562 214.644531 275.757812 214.527344 275.757812 C 214.410156 275.757812 214.316406 275.851562 214.316406 275.96875 C 214.316406 276.085938 214.410156 276.179688 214.527344 276.179688 C 214.644531 276.179688 214.738281 276.085938 214.738281 275.96875 Z M 214.738281 275.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.078125 276.464844 C 216.078125 276.347656 215.984375 276.253906 215.867188 276.253906 C 215.75 276.253906 215.65625 276.347656 215.65625 276.464844 C 215.65625 276.582031 215.75 276.675781 215.867188 276.675781 C 215.984375 276.675781 216.078125 276.582031 216.078125 276.464844 Z M 216.078125 276.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.617188 277.140625 C 216.617188 277.023438 216.523438 276.929688 216.40625 276.929688 C 216.289062 276.929688 216.195312 277.023438 216.195312 277.140625 C 216.195312 277.257812 216.289062 277.351562 216.40625 277.351562 C 216.523438 277.351562 216.617188 277.257812 216.617188 277.140625 Z M 216.617188 277.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.257812 278.90625 C 219.257812 278.789062 219.164062 278.695312 219.046875 278.695312 C 218.929688 278.695312 218.835938 278.789062 218.835938 278.90625 C 218.835938 279.023438 218.929688 279.117188 219.046875 279.117188 C 219.164062 279.117188 219.257812 279.023438 219.257812 278.90625 Z M 219.257812 278.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.640625 277.75 C 217.640625 277.632812 217.546875 277.539062 217.429688 277.539062 C 217.3125 277.539062 217.21875 277.632812 217.21875 277.75 C 217.21875 277.867188 217.3125 277.960938 217.429688 277.960938 C 217.546875 277.960938 217.640625 277.867188 217.640625 277.75 Z M 217.640625 277.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 216.0625 277.851562 C 216.0625 277.734375 215.96875 277.640625 215.851562 277.640625 C 215.734375 277.640625 215.640625 277.734375 215.640625 277.851562 C 215.640625 277.96875 215.734375 278.0625 215.851562 278.0625 C 215.96875 278.0625 216.0625 277.96875 216.0625 277.851562 Z M 216.0625 277.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.492188 278.230469 C 217.492188 278.113281 217.398438 278.019531 217.28125 278.019531 C 217.164062 278.019531 217.070312 278.113281 217.070312 278.230469 C 217.070312 278.347656 217.164062 278.441406 217.28125 278.441406 C 217.398438 278.441406 217.492188 278.347656 217.492188 278.230469 Z M 217.492188 278.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.441406 278.484375 C 219.441406 278.367188 219.347656 278.273438 219.230469 278.273438 C 219.113281 278.273438 219.019531 278.367188 219.019531 278.484375 C 219.019531 278.601562 219.113281 278.695312 219.230469 278.695312 C 219.347656 278.695312 219.441406 278.601562 219.441406 278.484375 Z M 219.441406 278.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.808594 280.457031 C 218.808594 280.339844 218.714844 280.246094 218.597656 280.246094 C 218.480469 280.246094 218.386719 280.339844 218.386719 280.457031 C 218.386719 280.574219 218.480469 280.667969 218.597656 280.667969 C 218.714844 280.667969 218.808594 280.574219 218.808594 280.457031 Z M 218.808594 280.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.339844 282.777344 C 221.339844 282.660156 221.246094 282.566406 221.128906 282.566406 C 221.011719 282.566406 220.917969 282.660156 220.917969 282.777344 C 220.917969 282.894531 221.011719 282.988281 221.128906 282.988281 C 221.246094 282.988281 221.339844 282.894531 221.339844 282.777344 Z M 221.339844 282.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.789062 282.128906 C 219.789062 282.011719 219.695312 281.917969 219.578125 281.917969 C 219.460938 281.917969 219.367188 282.011719 219.367188 282.128906 C 219.367188 282.246094 219.460938 282.339844 219.578125 282.339844 C 219.695312 282.339844 219.789062 282.246094 219.789062 282.128906 Z M 219.789062 282.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.785156 282.066406 C 220.785156 281.949219 220.691406 281.855469 220.574219 281.855469 C 220.457031 281.855469 220.363281 281.949219 220.363281 282.066406 C 220.363281 282.183594 220.457031 282.277344 220.574219 282.277344 C 220.691406 282.277344 220.785156 282.183594 220.785156 282.066406 Z M 220.785156 282.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.902344 283.03125 C 219.902344 282.914062 219.808594 282.820312 219.691406 282.820312 C 219.574219 282.820312 219.480469 282.914062 219.480469 283.03125 C 219.480469 283.148438 219.574219 283.242188 219.691406 283.242188 C 219.808594 283.242188 219.902344 283.148438 219.902344 283.03125 Z M 219.902344 283.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.617188 283.460938 C 217.617188 283.34375 217.523438 283.25 217.40625 283.25 C 217.289062 283.25 217.195312 283.34375 217.195312 283.460938 C 217.195312 283.578125 217.289062 283.671875 217.40625 283.671875 C 217.523438 283.671875 217.617188 283.578125 217.617188 283.460938 Z M 217.617188 283.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.933594 281.757812 C 217.933594 281.640625 217.839844 281.546875 217.722656 281.546875 C 217.605469 281.546875 217.511719 281.640625 217.511719 281.757812 C 217.511719 281.875 217.605469 281.96875 217.722656 281.96875 C 217.839844 281.96875 217.933594 281.875 217.933594 281.757812 Z M 217.933594 281.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.585938 279.011719 C 219.585938 278.894531 219.492188 278.800781 219.375 278.800781 C 219.257812 278.800781 219.164062 278.894531 219.164062 279.011719 C 219.164062 279.128906 219.257812 279.222656 219.375 279.222656 C 219.492188 279.222656 219.585938 279.128906 219.585938 279.011719 Z M 219.585938 279.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.695312 279.070312 C 218.695312 278.953125 218.601562 278.859375 218.484375 278.859375 C 218.367188 278.859375 218.273438 278.953125 218.273438 279.070312 C 218.273438 279.1875 218.367188 279.28125 218.484375 279.28125 C 218.601562 279.28125 218.695312 279.1875 218.695312 279.070312 Z M 218.695312 279.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.71875 283.738281 C 219.71875 283.621094 219.625 283.527344 219.507812 283.527344 C 219.390625 283.527344 219.296875 283.621094 219.296875 283.738281 C 219.296875 283.855469 219.390625 283.949219 219.507812 283.949219 C 219.625 283.949219 219.71875 283.855469 219.71875 283.738281 Z M 219.71875 283.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.90625 286.753906 C 219.90625 286.636719 219.8125 286.542969 219.695312 286.542969 C 219.578125 286.542969 219.484375 286.636719 219.484375 286.753906 C 219.484375 286.871094 219.578125 286.964844 219.695312 286.964844 C 219.8125 286.964844 219.90625 286.871094 219.90625 286.753906 Z M 219.90625 286.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.796875 286.144531 C 220.796875 286.027344 220.703125 285.933594 220.585938 285.933594 C 220.46875 285.933594 220.375 286.027344 220.375 286.144531 C 220.375 286.261719 220.46875 286.355469 220.585938 286.355469 C 220.703125 286.355469 220.796875 286.261719 220.796875 286.144531 Z M 220.796875 286.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.074219 287.292969 C 220.074219 287.175781 219.980469 287.082031 219.863281 287.082031 C 219.746094 287.082031 219.652344 287.175781 219.652344 287.292969 C 219.652344 287.410156 219.746094 287.503906 219.863281 287.503906 C 219.980469 287.503906 220.074219 287.410156 220.074219 287.292969 Z M 220.074219 287.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.90625 288.285156 C 219.90625 288.167969 219.8125 288.074219 219.695312 288.074219 C 219.578125 288.074219 219.484375 288.167969 219.484375 288.285156 C 219.484375 288.402344 219.578125 288.496094 219.695312 288.496094 C 219.8125 288.496094 219.90625 288.402344 219.90625 288.285156 Z M 219.90625 288.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.484375 284.542969 C 217.484375 284.425781 217.390625 284.332031 217.273438 284.332031 C 217.15625 284.332031 217.0625 284.425781 217.0625 284.542969 C 217.0625 284.660156 217.15625 284.753906 217.273438 284.753906 C 217.390625 284.753906 217.484375 284.660156 217.484375 284.542969 Z M 217.484375 284.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.074219 280.679688 C 218.074219 280.5625 217.980469 280.46875 217.863281 280.46875 C 217.746094 280.46875 217.652344 280.5625 217.652344 280.679688 C 217.652344 280.796875 217.746094 280.890625 217.863281 280.890625 C 217.980469 280.890625 218.074219 280.796875 218.074219 280.679688 Z M 218.074219 280.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.738281 281.566406 C 219.738281 281.449219 219.644531 281.355469 219.527344 281.355469 C 219.410156 281.355469 219.316406 281.449219 219.316406 281.566406 C 219.316406 281.683594 219.410156 281.777344 219.527344 281.777344 C 219.644531 281.777344 219.738281 281.683594 219.738281 281.566406 Z M 219.738281 281.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.671875 283.011719 C 220.671875 282.894531 220.578125 282.800781 220.460938 282.800781 C 220.34375 282.800781 220.25 282.894531 220.25 283.011719 C 220.25 283.128906 220.34375 283.222656 220.460938 283.222656 C 220.578125 283.222656 220.671875 283.128906 220.671875 283.011719 Z M 220.671875 283.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.949219 283.582031 C 225.949219 283.464844 225.855469 283.371094 225.738281 283.371094 C 225.621094 283.371094 225.527344 283.464844 225.527344 283.582031 C 225.527344 283.699219 225.621094 283.792969 225.738281 283.792969 C 225.855469 283.792969 225.949219 283.699219 225.949219 283.582031 Z M 225.949219 283.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.335938 286.664062 C 226.335938 286.546875 226.242188 286.453125 226.125 286.453125 C 226.007812 286.453125 225.914062 286.546875 225.914062 286.664062 C 225.914062 286.78125 226.007812 286.875 226.125 286.875 C 226.242188 286.875 226.335938 286.78125 226.335938 286.664062 Z M 226.335938 286.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.554688 288.019531 C 227.554688 287.902344 227.460938 287.808594 227.34375 287.808594 C 227.226562 287.808594 227.132812 287.902344 227.132812 288.019531 C 227.132812 288.136719 227.226562 288.230469 227.34375 288.230469 C 227.460938 288.230469 227.554688 288.136719 227.554688 288.019531 Z M 227.554688 288.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.351562 287.941406 C 224.351562 287.824219 224.257812 287.730469 224.140625 287.730469 C 224.023438 287.730469 223.929688 287.824219 223.929688 287.941406 C 223.929688 288.058594 224.023438 288.152344 224.140625 288.152344 C 224.257812 288.152344 224.351562 288.058594 224.351562 287.941406 Z M 224.351562 287.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.550781 285.234375 C 223.550781 285.117188 223.457031 285.023438 223.339844 285.023438 C 223.222656 285.023438 223.128906 285.117188 223.128906 285.234375 C 223.128906 285.351562 223.222656 285.445312 223.339844 285.445312 C 223.457031 285.445312 223.550781 285.351562 223.550781 285.234375 Z M 223.550781 285.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.09375 285.367188 C 223.09375 285.25 223 285.15625 222.882812 285.15625 C 222.765625 285.15625 222.671875 285.25 222.671875 285.367188 C 222.671875 285.484375 222.765625 285.578125 222.882812 285.578125 C 223 285.578125 223.09375 285.484375 223.09375 285.367188 Z M 223.09375 285.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.382812 285.804688 C 222.382812 285.6875 222.289062 285.59375 222.171875 285.59375 C 222.054688 285.59375 221.960938 285.6875 221.960938 285.804688 C 221.960938 285.921875 222.054688 286.015625 222.171875 286.015625 C 222.289062 286.015625 222.382812 285.921875 222.382812 285.804688 Z M 222.382812 285.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.335938 288.4375 C 221.335938 288.320312 221.242188 288.226562 221.125 288.226562 C 221.007812 288.226562 220.914062 288.320312 220.914062 288.4375 C 220.914062 288.554688 221.007812 288.648438 221.125 288.648438 C 221.242188 288.648438 221.335938 288.554688 221.335938 288.4375 Z M 221.335938 288.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.027344 288.328125 C 222.027344 288.210938 221.933594 288.117188 221.816406 288.117188 C 221.699219 288.117188 221.605469 288.210938 221.605469 288.328125 C 221.605469 288.445312 221.699219 288.539062 221.816406 288.539062 C 221.933594 288.539062 222.027344 288.445312 222.027344 288.328125 Z M 222.027344 288.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.25 289.679688 C 224.25 289.5625 224.15625 289.46875 224.039062 289.46875 C 223.921875 289.46875 223.828125 289.5625 223.828125 289.679688 C 223.828125 289.796875 223.921875 289.890625 224.039062 289.890625 C 224.15625 289.890625 224.25 289.796875 224.25 289.679688 Z M 224.25 289.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 227.183594 289.171875 C 227.183594 289.054688 227.089844 288.960938 226.972656 288.960938 C 226.855469 288.960938 226.761719 289.054688 226.761719 289.171875 C 226.761719 289.289062 226.855469 289.382812 226.972656 289.382812 C 227.089844 289.382812 227.183594 289.289062 227.183594 289.171875 Z M 227.183594 289.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 224.671875 289.53125 C 224.671875 289.414062 224.578125 289.320312 224.460938 289.320312 C 224.34375 289.320312 224.25 289.414062 224.25 289.53125 C 224.25 289.648438 224.34375 289.742188 224.460938 289.742188 C 224.578125 289.742188 224.671875 289.648438 224.671875 289.53125 Z M 224.671875 289.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 220.394531 290.183594 C 220.394531 290.066406 220.300781 289.972656 220.183594 289.972656 C 220.066406 289.972656 219.972656 290.066406 219.972656 290.183594 C 219.972656 290.300781 220.066406 290.394531 220.183594 290.394531 C 220.300781 290.394531 220.394531 290.300781 220.394531 290.183594 Z M 220.394531 290.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 218.324219 294.441406 C 218.324219 294.324219 218.230469 294.230469 218.113281 294.230469 C 217.996094 294.230469 217.902344 294.324219 217.902344 294.441406 C 217.902344 294.558594 217.996094 294.652344 218.113281 294.652344 C 218.230469 294.652344 218.324219 294.558594 218.324219 294.441406 Z M 218.324219 294.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.191406 294.46875 C 214.191406 294.351562 214.097656 294.257812 213.980469 294.257812 C 213.863281 294.257812 213.769531 294.351562 213.769531 294.46875 C 213.769531 294.585938 213.863281 294.679688 213.980469 294.679688 C 214.097656 294.679688 214.191406 294.585938 214.191406 294.46875 Z M 214.191406 294.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.898438 293.894531 C 210.898438 293.777344 210.804688 293.683594 210.6875 293.683594 C 210.570312 293.683594 210.476562 293.777344 210.476562 293.894531 C 210.476562 294.011719 210.570312 294.105469 210.6875 294.105469 C 210.804688 294.105469 210.898438 294.011719 210.898438 293.894531 Z M 210.898438 293.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.738281 293.640625 C 209.738281 293.523438 209.644531 293.429688 209.527344 293.429688 C 209.410156 293.429688 209.316406 293.523438 209.316406 293.640625 C 209.316406 293.757812 209.410156 293.851562 209.527344 293.851562 C 209.644531 293.851562 209.738281 293.757812 209.738281 293.640625 Z M 209.738281 293.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.4375 293.113281 C 209.4375 292.996094 209.34375 292.902344 209.226562 292.902344 C 209.109375 292.902344 209.015625 292.996094 209.015625 293.113281 C 209.015625 293.230469 209.109375 293.324219 209.226562 293.324219 C 209.34375 293.324219 209.4375 293.230469 209.4375 293.113281 Z M 209.4375 293.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.867188 297.34375 C 209.867188 297.226562 209.773438 297.132812 209.65625 297.132812 C 209.539062 297.132812 209.445312 297.226562 209.445312 297.34375 C 209.445312 297.460938 209.539062 297.554688 209.65625 297.554688 C 209.773438 297.554688 209.867188 297.460938 209.867188 297.34375 Z M 209.867188 297.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.589844 298.011719 C 209.589844 297.894531 209.496094 297.800781 209.378906 297.800781 C 209.261719 297.800781 209.167969 297.894531 209.167969 298.011719 C 209.167969 298.128906 209.261719 298.222656 209.378906 298.222656 C 209.496094 298.222656 209.589844 298.128906 209.589844 298.011719 Z M 209.589844 298.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.621094 294.855469 C 208.621094 294.738281 208.527344 294.644531 208.410156 294.644531 C 208.292969 294.644531 208.199219 294.738281 208.199219 294.855469 C 208.199219 294.972656 208.292969 295.066406 208.410156 295.066406 C 208.527344 295.066406 208.621094 294.972656 208.621094 294.855469 Z M 208.621094 294.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.375 294.207031 C 207.375 294.089844 207.28125 293.996094 207.164062 293.996094 C 207.046875 293.996094 206.953125 294.089844 206.953125 294.207031 C 206.953125 294.324219 207.046875 294.417969 207.164062 294.417969 C 207.28125 294.417969 207.375 294.324219 207.375 294.207031 Z M 207.375 294.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.261719 297.546875 C 205.261719 297.429688 205.167969 297.335938 205.050781 297.335938 C 204.933594 297.335938 204.839844 297.429688 204.839844 297.546875 C 204.839844 297.664062 204.933594 297.757812 205.050781 297.757812 C 205.167969 297.757812 205.261719 297.664062 205.261719 297.546875 Z M 205.261719 297.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.324219 298.066406 C 206.324219 297.949219 206.230469 297.855469 206.113281 297.855469 C 205.996094 297.855469 205.902344 297.949219 205.902344 298.066406 C 205.902344 298.183594 205.996094 298.277344 206.113281 298.277344 C 206.230469 298.277344 206.324219 298.183594 206.324219 298.066406 Z M 206.324219 298.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.308594 298.570312 C 206.308594 298.453125 206.214844 298.359375 206.097656 298.359375 C 205.980469 298.359375 205.886719 298.453125 205.886719 298.570312 C 205.886719 298.6875 205.980469 298.78125 206.097656 298.78125 C 206.214844 298.78125 206.308594 298.6875 206.308594 298.570312 Z M 206.308594 298.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.203125 297.601562 C 207.203125 297.484375 207.109375 297.390625 206.992188 297.390625 C 206.875 297.390625 206.78125 297.484375 206.78125 297.601562 C 206.78125 297.71875 206.875 297.8125 206.992188 297.8125 C 207.109375 297.8125 207.203125 297.71875 207.203125 297.601562 Z M 207.203125 297.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.859375 301.917969 C 210.859375 301.800781 210.765625 301.707031 210.648438 301.707031 C 210.53125 301.707031 210.4375 301.800781 210.4375 301.917969 C 210.4375 302.035156 210.53125 302.128906 210.648438 302.128906 C 210.765625 302.128906 210.859375 302.035156 210.859375 301.917969 Z M 210.859375 301.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.484375 301.257812 C 210.484375 301.140625 210.390625 301.046875 210.273438 301.046875 C 210.15625 301.046875 210.0625 301.140625 210.0625 301.257812 C 210.0625 301.375 210.15625 301.46875 210.273438 301.46875 C 210.390625 301.46875 210.484375 301.375 210.484375 301.257812 Z M 210.484375 301.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.210938 297.4375 C 209.210938 297.320312 209.117188 297.226562 209 297.226562 C 208.882812 297.226562 208.789062 297.320312 208.789062 297.4375 C 208.789062 297.554688 208.882812 297.648438 209 297.648438 C 209.117188 297.648438 209.210938 297.554688 209.210938 297.4375 Z M 209.210938 297.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.265625 294.796875 C 209.265625 294.679688 209.171875 294.585938 209.054688 294.585938 C 208.9375 294.585938 208.84375 294.679688 208.84375 294.796875 C 208.84375 294.914062 208.9375 295.007812 209.054688 295.007812 C 209.171875 295.007812 209.265625 294.914062 209.265625 294.796875 Z M 209.265625 294.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.511719 291.78125 C 208.511719 291.664062 208.417969 291.570312 208.300781 291.570312 C 208.183594 291.570312 208.089844 291.664062 208.089844 291.78125 C 208.089844 291.898438 208.183594 291.992188 208.300781 291.992188 C 208.417969 291.992188 208.511719 291.898438 208.511719 291.78125 Z M 208.511719 291.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.992188 290.289062 C 209.992188 290.171875 209.898438 290.078125 209.78125 290.078125 C 209.664062 290.078125 209.570312 290.171875 209.570312 290.289062 C 209.570312 290.40625 209.664062 290.5 209.78125 290.5 C 209.898438 290.5 209.992188 290.40625 209.992188 290.289062 Z M 209.992188 290.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.242188 293.394531 C 209.242188 293.277344 209.148438 293.183594 209.03125 293.183594 C 208.914062 293.183594 208.820312 293.277344 208.820312 293.394531 C 208.820312 293.511719 208.914062 293.605469 209.03125 293.605469 C 209.148438 293.605469 209.242188 293.511719 209.242188 293.394531 Z M 209.242188 293.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.457031 292.199219 C 209.457031 292.082031 209.363281 291.988281 209.246094 291.988281 C 209.128906 291.988281 209.035156 292.082031 209.035156 292.199219 C 209.035156 292.316406 209.128906 292.410156 209.246094 292.410156 C 209.363281 292.410156 209.457031 292.316406 209.457031 292.199219 Z M 209.457031 292.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.222656 292.882812 C 210.222656 292.765625 210.128906 292.671875 210.011719 292.671875 C 209.894531 292.671875 209.800781 292.765625 209.800781 292.882812 C 209.800781 293 209.894531 293.09375 210.011719 293.09375 C 210.128906 293.09375 210.222656 293 210.222656 292.882812 Z M 210.222656 292.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.710938 290.675781 C 207.710938 290.558594 207.617188 290.464844 207.5 290.464844 C 207.382812 290.464844 207.289062 290.558594 207.289062 290.675781 C 207.289062 290.792969 207.382812 290.886719 207.5 290.886719 C 207.617188 290.886719 207.710938 290.792969 207.710938 290.675781 Z M 207.710938 290.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.675781 292.269531 C 207.675781 292.152344 207.582031 292.058594 207.464844 292.058594 C 207.347656 292.058594 207.253906 292.152344 207.253906 292.269531 C 207.253906 292.386719 207.347656 292.480469 207.464844 292.480469 C 207.582031 292.480469 207.675781 292.386719 207.675781 292.269531 Z M 207.675781 292.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.832031 292.222656 C 206.832031 292.105469 206.738281 292.011719 206.621094 292.011719 C 206.503906 292.011719 206.410156 292.105469 206.410156 292.222656 C 206.410156 292.339844 206.503906 292.433594 206.621094 292.433594 C 206.738281 292.433594 206.832031 292.339844 206.832031 292.222656 Z M 206.832031 292.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.5 292.855469 C 210.5 292.738281 210.40625 292.644531 210.289062 292.644531 C 210.171875 292.644531 210.078125 292.738281 210.078125 292.855469 C 210.078125 292.972656 210.171875 293.066406 210.289062 293.066406 C 210.40625 293.066406 210.5 292.972656 210.5 292.855469 Z M 210.5 292.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.683594 295.597656 C 210.683594 295.480469 210.589844 295.386719 210.472656 295.386719 C 210.355469 295.386719 210.261719 295.480469 210.261719 295.597656 C 210.261719 295.714844 210.355469 295.808594 210.472656 295.808594 C 210.589844 295.808594 210.683594 295.714844 210.683594 295.597656 Z M 210.683594 295.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.875 294.625 C 215.875 294.507812 215.78125 294.414062 215.664062 294.414062 C 215.546875 294.414062 215.453125 294.507812 215.453125 294.625 C 215.453125 294.742188 215.546875 294.835938 215.664062 294.835938 C 215.78125 294.835938 215.875 294.742188 215.875 294.625 Z M 215.875 294.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 214.078125 289.554688 C 214.078125 289.4375 213.984375 289.34375 213.867188 289.34375 C 213.75 289.34375 213.65625 289.4375 213.65625 289.554688 C 213.65625 289.671875 213.75 289.765625 213.867188 289.765625 C 213.984375 289.765625 214.078125 289.671875 214.078125 289.554688 Z M 214.078125 289.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.71875 291.050781 C 211.71875 290.933594 211.625 290.839844 211.507812 290.839844 C 211.390625 290.839844 211.296875 290.933594 211.296875 291.050781 C 211.296875 291.167969 211.390625 291.261719 211.507812 291.261719 C 211.625 291.261719 211.71875 291.167969 211.71875 291.050781 Z M 211.71875 291.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.882812 292.078125 C 211.882812 291.960938 211.789062 291.867188 211.671875 291.867188 C 211.554688 291.867188 211.460938 291.960938 211.460938 292.078125 C 211.460938 292.195312 211.554688 292.289062 211.671875 292.289062 C 211.789062 292.289062 211.882812 292.195312 211.882812 292.078125 Z M 211.882812 292.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.761719 287.972656 C 212.761719 287.855469 212.667969 287.761719 212.550781 287.761719 C 212.433594 287.761719 212.339844 287.855469 212.339844 287.972656 C 212.339844 288.089844 212.433594 288.183594 212.550781 288.183594 C 212.667969 288.183594 212.761719 288.089844 212.761719 287.972656 Z M 212.761719 287.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.441406 291.382812 C 215.441406 291.265625 215.347656 291.171875 215.230469 291.171875 C 215.113281 291.171875 215.019531 291.265625 215.019531 291.382812 C 215.019531 291.5 215.113281 291.59375 215.230469 291.59375 C 215.347656 291.59375 215.441406 291.5 215.441406 291.382812 Z M 215.441406 291.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.015625 290.71875 C 215.015625 290.601562 214.921875 290.507812 214.804688 290.507812 C 214.6875 290.507812 214.59375 290.601562 214.59375 290.71875 C 214.59375 290.835938 214.6875 290.929688 214.804688 290.929688 C 214.921875 290.929688 215.015625 290.835938 215.015625 290.71875 Z M 215.015625 290.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.9375 288.757812 C 210.9375 288.640625 210.84375 288.546875 210.726562 288.546875 C 210.609375 288.546875 210.515625 288.640625 210.515625 288.757812 C 210.515625 288.875 210.609375 288.96875 210.726562 288.96875 C 210.84375 288.96875 210.9375 288.875 210.9375 288.757812 Z M 210.9375 288.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 211.71875 290.539062 C 211.71875 290.421875 211.625 290.328125 211.507812 290.328125 C 211.390625 290.328125 211.296875 290.421875 211.296875 290.539062 C 211.296875 290.65625 211.390625 290.75 211.507812 290.75 C 211.625 290.75 211.71875 290.65625 211.71875 290.539062 Z M 211.71875 290.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.929688 291.746094 C 208.929688 291.628906 208.835938 291.535156 208.71875 291.535156 C 208.601562 291.535156 208.507812 291.628906 208.507812 291.746094 C 208.507812 291.863281 208.601562 291.957031 208.71875 291.957031 C 208.835938 291.957031 208.929688 291.863281 208.929688 291.746094 Z M 208.929688 291.746094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.117188 292.652344 C 209.117188 292.535156 209.023438 292.441406 208.90625 292.441406 C 208.789062 292.441406 208.695312 292.535156 208.695312 292.652344 C 208.695312 292.769531 208.789062 292.863281 208.90625 292.863281 C 209.023438 292.863281 209.117188 292.769531 209.117188 292.652344 Z M 209.117188 292.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.40625 291.644531 C 207.40625 291.527344 207.3125 291.433594 207.195312 291.433594 C 207.078125 291.433594 206.984375 291.527344 206.984375 291.644531 C 206.984375 291.761719 207.078125 291.855469 207.195312 291.855469 C 207.3125 291.855469 207.40625 291.761719 207.40625 291.644531 Z M 207.40625 291.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.324219 295.039062 C 212.324219 294.921875 212.230469 294.828125 212.113281 294.828125 C 211.996094 294.828125 211.902344 294.921875 211.902344 295.039062 C 211.902344 295.15625 211.996094 295.25 212.113281 295.25 C 212.230469 295.25 212.324219 295.15625 212.324219 295.039062 Z M 212.324219 295.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 209.164062 291.335938 C 209.164062 291.21875 209.070312 291.125 208.953125 291.125 C 208.835938 291.125 208.742188 291.21875 208.742188 291.335938 C 208.742188 291.453125 208.835938 291.546875 208.953125 291.546875 C 209.070312 291.546875 209.164062 291.453125 209.164062 291.335938 Z M 209.164062 291.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.066406 288.539062 C 206.066406 288.421875 205.972656 288.328125 205.855469 288.328125 C 205.738281 288.328125 205.644531 288.421875 205.644531 288.539062 C 205.644531 288.65625 205.738281 288.75 205.855469 288.75 C 205.972656 288.75 206.066406 288.65625 206.066406 288.539062 Z M 206.066406 288.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.589844 289.582031 C 205.589844 289.464844 205.496094 289.371094 205.378906 289.371094 C 205.261719 289.371094 205.167969 289.464844 205.167969 289.582031 C 205.167969 289.699219 205.261719 289.792969 205.378906 289.792969 C 205.496094 289.792969 205.589844 289.699219 205.589844 289.582031 Z M 205.589844 289.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 205.960938 287.925781 C 205.960938 287.808594 205.867188 287.714844 205.75 287.714844 C 205.632812 287.714844 205.539062 287.808594 205.539062 287.925781 C 205.539062 288.042969 205.632812 288.136719 205.75 288.136719 C 205.867188 288.136719 205.960938 288.042969 205.960938 287.925781 Z M 205.960938 287.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 202.230469 287.855469 C 202.230469 287.738281 202.136719 287.644531 202.019531 287.644531 C 201.902344 287.644531 201.808594 287.738281 201.808594 287.855469 C 201.808594 287.972656 201.902344 288.066406 202.019531 288.066406 C 202.136719 288.066406 202.230469 287.972656 202.230469 287.855469 Z M 202.230469 287.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.488281 286.992188 C 199.488281 286.875 199.394531 286.78125 199.277344 286.78125 C 199.160156 286.78125 199.066406 286.875 199.066406 286.992188 C 199.066406 287.109375 199.160156 287.203125 199.277344 287.203125 C 199.394531 287.203125 199.488281 287.109375 199.488281 286.992188 Z M 199.488281 286.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.675781 286.316406 C 200.675781 286.199219 200.582031 286.105469 200.464844 286.105469 C 200.347656 286.105469 200.253906 286.199219 200.253906 286.316406 C 200.253906 286.433594 200.347656 286.527344 200.464844 286.527344 C 200.582031 286.527344 200.675781 286.433594 200.675781 286.316406 Z M 200.675781 286.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.148438 286.234375 C 201.148438 286.117188 201.054688 286.023438 200.9375 286.023438 C 200.820312 286.023438 200.726562 286.117188 200.726562 286.234375 C 200.726562 286.351562 200.820312 286.445312 200.9375 286.445312 C 201.054688 286.445312 201.148438 286.351562 201.148438 286.234375 Z M 201.148438 286.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.277344 286.398438 C 200.277344 286.28125 200.183594 286.1875 200.066406 286.1875 C 199.949219 286.1875 199.855469 286.28125 199.855469 286.398438 C 199.855469 286.515625 199.949219 286.609375 200.066406 286.609375 C 200.183594 286.609375 200.277344 286.515625 200.277344 286.398438 Z M 200.277344 286.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.546875 285.519531 C 198.546875 285.402344 198.453125 285.308594 198.335938 285.308594 C 198.21875 285.308594 198.125 285.402344 198.125 285.519531 C 198.125 285.636719 198.21875 285.730469 198.335938 285.730469 C 198.453125 285.730469 198.546875 285.636719 198.546875 285.519531 Z M 198.546875 285.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.207031 287.066406 C 199.207031 286.949219 199.113281 286.855469 198.996094 286.855469 C 198.878906 286.855469 198.785156 286.949219 198.785156 287.066406 C 198.785156 287.183594 198.878906 287.277344 198.996094 287.277344 C 199.113281 287.277344 199.207031 287.183594 199.207031 287.066406 Z M 199.207031 287.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.8125 284.582031 C 195.8125 284.464844 195.71875 284.371094 195.601562 284.371094 C 195.484375 284.371094 195.390625 284.464844 195.390625 284.582031 C 195.390625 284.699219 195.484375 284.792969 195.601562 284.792969 C 195.71875 284.792969 195.8125 284.699219 195.8125 284.582031 Z M 195.8125 284.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.074219 282.359375 C 197.074219 282.242188 196.980469 282.148438 196.863281 282.148438 C 196.746094 282.148438 196.652344 282.242188 196.652344 282.359375 C 196.652344 282.476562 196.746094 282.570312 196.863281 282.570312 C 196.980469 282.570312 197.074219 282.476562 197.074219 282.359375 Z M 197.074219 282.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.402344 282.609375 C 196.402344 282.492188 196.308594 282.398438 196.191406 282.398438 C 196.074219 282.398438 195.980469 282.492188 195.980469 282.609375 C 195.980469 282.726562 196.074219 282.820312 196.191406 282.820312 C 196.308594 282.820312 196.402344 282.726562 196.402344 282.609375 Z M 196.402344 282.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.382812 283.472656 C 197.382812 283.355469 197.289062 283.261719 197.171875 283.261719 C 197.054688 283.261719 196.960938 283.355469 196.960938 283.472656 C 196.960938 283.589844 197.054688 283.683594 197.171875 283.683594 C 197.289062 283.683594 197.382812 283.589844 197.382812 283.472656 Z M 197.382812 283.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.515625 286.6875 C 193.515625 286.570312 193.421875 286.476562 193.304688 286.476562 C 193.1875 286.476562 193.09375 286.570312 193.09375 286.6875 C 193.09375 286.804688 193.1875 286.898438 193.304688 286.898438 C 193.421875 286.898438 193.515625 286.804688 193.515625 286.6875 Z M 193.515625 286.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.542969 286.933594 C 193.542969 286.816406 193.449219 286.722656 193.332031 286.722656 C 193.214844 286.722656 193.121094 286.816406 193.121094 286.933594 C 193.121094 287.050781 193.214844 287.144531 193.332031 287.144531 C 193.449219 287.144531 193.542969 287.050781 193.542969 286.933594 Z M 193.542969 286.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.023438 290.90625 C 196.023438 290.789062 195.929688 290.695312 195.8125 290.695312 C 195.695312 290.695312 195.601562 290.789062 195.601562 290.90625 C 195.601562 291.023438 195.695312 291.117188 195.8125 291.117188 C 195.929688 291.117188 196.023438 291.023438 196.023438 290.90625 Z M 196.023438 290.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.964844 292.476562 C 197.964844 292.359375 197.871094 292.265625 197.753906 292.265625 C 197.636719 292.265625 197.542969 292.359375 197.542969 292.476562 C 197.542969 292.59375 197.636719 292.6875 197.753906 292.6875 C 197.871094 292.6875 197.964844 292.59375 197.964844 292.476562 Z M 197.964844 292.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.570312 293.152344 C 196.570312 293.035156 196.476562 292.941406 196.359375 292.941406 C 196.242188 292.941406 196.148438 293.035156 196.148438 293.152344 C 196.148438 293.269531 196.242188 293.363281 196.359375 293.363281 C 196.476562 293.363281 196.570312 293.269531 196.570312 293.152344 Z M 196.570312 293.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.878906 291.617188 C 196.878906 291.5 196.785156 291.40625 196.667969 291.40625 C 196.550781 291.40625 196.457031 291.5 196.457031 291.617188 C 196.457031 291.734375 196.550781 291.828125 196.667969 291.828125 C 196.785156 291.828125 196.878906 291.734375 196.878906 291.617188 Z M 196.878906 291.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.269531 289.703125 C 196.269531 289.585938 196.175781 289.492188 196.058594 289.492188 C 195.941406 289.492188 195.847656 289.585938 195.847656 289.703125 C 195.847656 289.820312 195.941406 289.914062 196.058594 289.914062 C 196.175781 289.914062 196.269531 289.820312 196.269531 289.703125 Z M 196.269531 289.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 198.097656 286.882812 C 198.097656 286.765625 198.003906 286.671875 197.886719 286.671875 C 197.769531 286.671875 197.675781 286.765625 197.675781 286.882812 C 197.675781 287 197.769531 287.09375 197.886719 287.09375 C 198.003906 287.09375 198.097656 287 198.097656 286.882812 Z M 198.097656 286.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.894531 288.039062 C 193.894531 287.921875 193.800781 287.828125 193.683594 287.828125 C 193.566406 287.828125 193.472656 287.921875 193.472656 288.039062 C 193.472656 288.15625 193.566406 288.25 193.683594 288.25 C 193.800781 288.25 193.894531 288.15625 193.894531 288.039062 Z M 193.894531 288.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.09375 285.558594 C 195.09375 285.441406 195 285.347656 194.882812 285.347656 C 194.765625 285.347656 194.671875 285.441406 194.671875 285.558594 C 194.671875 285.675781 194.765625 285.769531 194.882812 285.769531 C 195 285.769531 195.09375 285.675781 195.09375 285.558594 Z M 195.09375 285.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.695312 284.566406 C 193.695312 284.449219 193.601562 284.355469 193.484375 284.355469 C 193.367188 284.355469 193.273438 284.449219 193.273438 284.566406 C 193.273438 284.683594 193.367188 284.777344 193.484375 284.777344 C 193.601562 284.777344 193.695312 284.683594 193.695312 284.566406 Z M 193.695312 284.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.636719 285.082031 C 194.636719 284.964844 194.542969 284.871094 194.425781 284.871094 C 194.308594 284.871094 194.214844 284.964844 194.214844 285.082031 C 194.214844 285.199219 194.308594 285.292969 194.425781 285.292969 C 194.542969 285.292969 194.636719 285.199219 194.636719 285.082031 Z M 194.636719 285.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.597656 284.476562 C 196.597656 284.359375 196.503906 284.265625 196.386719 284.265625 C 196.269531 284.265625 196.175781 284.359375 196.175781 284.476562 C 196.175781 284.59375 196.269531 284.6875 196.386719 284.6875 C 196.503906 284.6875 196.597656 284.59375 196.597656 284.476562 Z M 196.597656 284.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 196.386719 285.425781 C 196.386719 285.308594 196.292969 285.214844 196.175781 285.214844 C 196.058594 285.214844 195.964844 285.308594 195.964844 285.425781 C 195.964844 285.542969 196.058594 285.636719 196.175781 285.636719 C 196.292969 285.636719 196.386719 285.542969 196.386719 285.425781 Z M 196.386719 285.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.851562 286.050781 C 193.851562 285.933594 193.757812 285.839844 193.640625 285.839844 C 193.523438 285.839844 193.429688 285.933594 193.429688 286.050781 C 193.429688 286.167969 193.523438 286.261719 193.640625 286.261719 C 193.757812 286.261719 193.851562 286.167969 193.851562 286.050781 Z M 193.851562 286.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.53125 284.257812 C 193.53125 284.140625 193.4375 284.046875 193.320312 284.046875 C 193.203125 284.046875 193.109375 284.140625 193.109375 284.257812 C 193.109375 284.375 193.203125 284.46875 193.320312 284.46875 C 193.4375 284.46875 193.53125 284.375 193.53125 284.257812 Z M 193.53125 284.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.035156 284.859375 C 192.035156 284.742188 191.941406 284.648438 191.824219 284.648438 C 191.707031 284.648438 191.613281 284.742188 191.613281 284.859375 C 191.613281 284.976562 191.707031 285.070312 191.824219 285.070312 C 191.941406 285.070312 192.035156 284.976562 192.035156 284.859375 Z M 192.035156 284.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.683594 283.148438 C 192.683594 283.03125 192.589844 282.9375 192.472656 282.9375 C 192.355469 282.9375 192.261719 283.03125 192.261719 283.148438 C 192.261719 283.265625 192.355469 283.359375 192.472656 283.359375 C 192.589844 283.359375 192.683594 283.265625 192.683594 283.148438 Z M 192.683594 283.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.898438 283.625 C 192.898438 283.507812 192.804688 283.414062 192.6875 283.414062 C 192.570312 283.414062 192.476562 283.507812 192.476562 283.625 C 192.476562 283.742188 192.570312 283.835938 192.6875 283.835938 C 192.804688 283.835938 192.898438 283.742188 192.898438 283.625 Z M 192.898438 283.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.316406 285.945312 C 192.316406 285.828125 192.222656 285.734375 192.105469 285.734375 C 191.988281 285.734375 191.894531 285.828125 191.894531 285.945312 C 191.894531 286.0625 191.988281 286.15625 192.105469 286.15625 C 192.222656 286.15625 192.316406 286.0625 192.316406 285.945312 Z M 192.316406 285.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.027344 289.101562 C 190.027344 288.984375 189.933594 288.890625 189.816406 288.890625 C 189.699219 288.890625 189.605469 288.984375 189.605469 289.101562 C 189.605469 289.21875 189.699219 289.3125 189.816406 289.3125 C 189.933594 289.3125 190.027344 289.21875 190.027344 289.101562 Z M 190.027344 289.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.347656 292.554688 C 190.347656 292.4375 190.253906 292.34375 190.136719 292.34375 C 190.019531 292.34375 189.925781 292.4375 189.925781 292.554688 C 189.925781 292.671875 190.019531 292.765625 190.136719 292.765625 C 190.253906 292.765625 190.347656 292.671875 190.347656 292.554688 Z M 190.347656 292.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.539062 289.648438 C 187.539062 289.53125 187.445312 289.4375 187.328125 289.4375 C 187.210938 289.4375 187.117188 289.53125 187.117188 289.648438 C 187.117188 289.765625 187.210938 289.859375 187.328125 289.859375 C 187.445312 289.859375 187.539062 289.765625 187.539062 289.648438 Z M 187.539062 289.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.898438 287.039062 C 190.898438 286.921875 190.804688 286.828125 190.6875 286.828125 C 190.570312 286.828125 190.476562 286.921875 190.476562 287.039062 C 190.476562 287.15625 190.570312 287.25 190.6875 287.25 C 190.804688 287.25 190.898438 287.15625 190.898438 287.039062 Z M 190.898438 287.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.589844 284.46875 C 191.589844 284.351562 191.496094 284.257812 191.378906 284.257812 C 191.261719 284.257812 191.167969 284.351562 191.167969 284.46875 C 191.167969 284.585938 191.261719 284.679688 191.378906 284.679688 C 191.496094 284.679688 191.589844 284.585938 191.589844 284.46875 Z M 191.589844 284.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.746094 285.675781 C 191.746094 285.558594 191.652344 285.464844 191.535156 285.464844 C 191.417969 285.464844 191.324219 285.558594 191.324219 285.675781 C 191.324219 285.792969 191.417969 285.886719 191.535156 285.886719 C 191.652344 285.886719 191.746094 285.792969 191.746094 285.675781 Z M 191.746094 285.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.890625 284.855469 C 190.890625 284.738281 190.796875 284.644531 190.679688 284.644531 C 190.5625 284.644531 190.46875 284.738281 190.46875 284.855469 C 190.46875 284.972656 190.5625 285.066406 190.679688 285.066406 C 190.796875 285.066406 190.890625 284.972656 190.890625 284.855469 Z M 190.890625 284.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.527344 286.117188 C 188.527344 286 188.433594 285.90625 188.316406 285.90625 C 188.199219 285.90625 188.105469 286 188.105469 286.117188 C 188.105469 286.234375 188.199219 286.328125 188.316406 286.328125 C 188.433594 286.328125 188.527344 286.234375 188.527344 286.117188 Z M 188.527344 286.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.847656 286.902344 C 186.847656 286.785156 186.753906 286.691406 186.636719 286.691406 C 186.519531 286.691406 186.425781 286.785156 186.425781 286.902344 C 186.425781 287.019531 186.519531 287.113281 186.636719 287.113281 C 186.753906 287.113281 186.847656 287.019531 186.847656 286.902344 Z M 186.847656 286.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.933594 289.1875 C 187.933594 289.070312 187.839844 288.976562 187.722656 288.976562 C 187.605469 288.976562 187.511719 289.070312 187.511719 289.1875 C 187.511719 289.304688 187.605469 289.398438 187.722656 289.398438 C 187.839844 289.398438 187.933594 289.304688 187.933594 289.1875 Z M 187.933594 289.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.574219 287.890625 C 189.574219 287.773438 189.480469 287.679688 189.363281 287.679688 C 189.246094 287.679688 189.152344 287.773438 189.152344 287.890625 C 189.152344 288.007812 189.246094 288.101562 189.363281 288.101562 C 189.480469 288.101562 189.574219 288.007812 189.574219 287.890625 Z M 189.574219 287.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 192.023438 287.484375 C 192.023438 287.367188 191.929688 287.273438 191.8125 287.273438 C 191.695312 287.273438 191.601562 287.367188 191.601562 287.484375 C 191.601562 287.601562 191.695312 287.695312 191.8125 287.695312 C 191.929688 287.695312 192.023438 287.601562 192.023438 287.484375 Z M 192.023438 287.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 191.074219 284.398438 C 191.074219 284.28125 190.980469 284.1875 190.863281 284.1875 C 190.746094 284.1875 190.652344 284.28125 190.652344 284.398438 C 190.652344 284.515625 190.746094 284.609375 190.863281 284.609375 C 190.980469 284.609375 191.074219 284.515625 191.074219 284.398438 Z M 191.074219 284.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 189.929688 287.644531 C 189.929688 287.527344 189.835938 287.433594 189.71875 287.433594 C 189.601562 287.433594 189.507812 287.527344 189.507812 287.644531 C 189.507812 287.761719 189.601562 287.855469 189.71875 287.855469 C 189.835938 287.855469 189.929688 287.761719 189.929688 287.644531 Z M 189.929688 287.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.699219 286.667969 C 188.699219 286.550781 188.605469 286.457031 188.488281 286.457031 C 188.371094 286.457031 188.277344 286.550781 188.277344 286.667969 C 188.277344 286.785156 188.371094 286.878906 188.488281 286.878906 C 188.605469 286.878906 188.699219 286.785156 188.699219 286.667969 Z M 188.699219 286.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 187.867188 286.390625 C 187.867188 286.273438 187.773438 286.179688 187.65625 286.179688 C 187.539062 286.179688 187.445312 286.273438 187.445312 286.390625 C 187.445312 286.507812 187.539062 286.601562 187.65625 286.601562 C 187.773438 286.601562 187.867188 286.507812 187.867188 286.390625 Z M 187.867188 286.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.023438 286.738281 C 183.023438 286.621094 182.929688 286.527344 182.8125 286.527344 C 182.695312 286.527344 182.601562 286.621094 182.601562 286.738281 C 182.601562 286.855469 182.695312 286.949219 182.8125 286.949219 C 182.929688 286.949219 183.023438 286.855469 183.023438 286.738281 Z M 183.023438 286.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.800781 288.695312 C 178.800781 288.578125 178.707031 288.484375 178.589844 288.484375 C 178.472656 288.484375 178.378906 288.578125 178.378906 288.695312 C 178.378906 288.8125 178.472656 288.90625 178.589844 288.90625 C 178.707031 288.90625 178.800781 288.8125 178.800781 288.695312 Z M 178.800781 288.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.546875 288.175781 C 180.546875 288.058594 180.453125 287.964844 180.335938 287.964844 C 180.21875 287.964844 180.125 288.058594 180.125 288.175781 C 180.125 288.292969 180.21875 288.386719 180.335938 288.386719 C 180.453125 288.386719 180.546875 288.292969 180.546875 288.175781 Z M 180.546875 288.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.398438 286.554688 C 181.398438 286.4375 181.304688 286.34375 181.1875 286.34375 C 181.070312 286.34375 180.976562 286.4375 180.976562 286.554688 C 180.976562 286.671875 181.070312 286.765625 181.1875 286.765625 C 181.304688 286.765625 181.398438 286.671875 181.398438 286.554688 Z M 181.398438 286.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.066406 284.664062 C 179.066406 284.546875 178.972656 284.453125 178.855469 284.453125 C 178.738281 284.453125 178.644531 284.546875 178.644531 284.664062 C 178.644531 284.78125 178.738281 284.875 178.855469 284.875 C 178.972656 284.875 179.066406 284.78125 179.066406 284.664062 Z M 179.066406 284.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.046875 286.910156 C 185.046875 286.792969 184.953125 286.699219 184.835938 286.699219 C 184.71875 286.699219 184.625 286.792969 184.625 286.910156 C 184.625 287.027344 184.71875 287.121094 184.835938 287.121094 C 184.953125 287.121094 185.046875 287.027344 185.046875 286.910156 Z M 185.046875 286.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.898438 286.539062 C 180.898438 286.421875 180.804688 286.328125 180.6875 286.328125 C 180.570312 286.328125 180.476562 286.421875 180.476562 286.539062 C 180.476562 286.65625 180.570312 286.75 180.6875 286.75 C 180.804688 286.75 180.898438 286.65625 180.898438 286.539062 Z M 180.898438 286.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.996094 283.839844 C 178.996094 283.722656 178.902344 283.628906 178.785156 283.628906 C 178.667969 283.628906 178.574219 283.722656 178.574219 283.839844 C 178.574219 283.957031 178.667969 284.050781 178.785156 284.050781 C 178.902344 284.050781 178.996094 283.957031 178.996094 283.839844 Z M 178.996094 283.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 176.925781 280.0625 C 176.925781 279.945312 176.832031 279.851562 176.714844 279.851562 C 176.597656 279.851562 176.503906 279.945312 176.503906 280.0625 C 176.503906 280.179688 176.597656 280.273438 176.714844 280.273438 C 176.832031 280.273438 176.925781 280.179688 176.925781 280.0625 Z M 176.925781 280.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.519531 276.945312 C 178.519531 276.828125 178.425781 276.734375 178.308594 276.734375 C 178.191406 276.734375 178.097656 276.828125 178.097656 276.945312 C 178.097656 277.0625 178.191406 277.15625 178.308594 277.15625 C 178.425781 277.15625 178.519531 277.0625 178.519531 276.945312 Z M 178.519531 276.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.558594 277.496094 C 178.558594 277.378906 178.464844 277.285156 178.347656 277.285156 C 178.230469 277.285156 178.136719 277.378906 178.136719 277.496094 C 178.136719 277.613281 178.230469 277.707031 178.347656 277.707031 C 178.464844 277.707031 178.558594 277.613281 178.558594 277.496094 Z M 178.558594 277.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 174.949219 275.289062 C 174.949219 275.171875 174.855469 275.078125 174.738281 275.078125 C 174.621094 275.078125 174.527344 275.171875 174.527344 275.289062 C 174.527344 275.40625 174.621094 275.5 174.738281 275.5 C 174.855469 275.5 174.949219 275.40625 174.949219 275.289062 Z M 174.949219 275.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.863281 277.234375 C 173.863281 277.117188 173.769531 277.023438 173.652344 277.023438 C 173.535156 277.023438 173.441406 277.117188 173.441406 277.234375 C 173.441406 277.351562 173.535156 277.445312 173.652344 277.445312 C 173.769531 277.445312 173.863281 277.351562 173.863281 277.234375 Z M 173.863281 277.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.738281 274.421875 C 172.738281 274.304688 172.644531 274.210938 172.527344 274.210938 C 172.410156 274.210938 172.316406 274.304688 172.316406 274.421875 C 172.316406 274.539062 172.410156 274.632812 172.527344 274.632812 C 172.644531 274.632812 172.738281 274.539062 172.738281 274.421875 Z M 172.738281 274.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.300781 274.484375 C 168.300781 274.367188 168.207031 274.273438 168.089844 274.273438 C 167.972656 274.273438 167.878906 274.367188 167.878906 274.484375 C 167.878906 274.601562 167.972656 274.695312 168.089844 274.695312 C 168.207031 274.695312 168.300781 274.601562 168.300781 274.484375 Z M 168.300781 274.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.1875 280.164062 C 171.1875 280.046875 171.09375 279.953125 170.976562 279.953125 C 170.859375 279.953125 170.765625 280.046875 170.765625 280.164062 C 170.765625 280.28125 170.859375 280.375 170.976562 280.375 C 171.09375 280.375 171.1875 280.28125 171.1875 280.164062 Z M 171.1875 280.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.933594 282.472656 C 171.933594 282.355469 171.839844 282.261719 171.722656 282.261719 C 171.605469 282.261719 171.511719 282.355469 171.511719 282.472656 C 171.511719 282.589844 171.605469 282.683594 171.722656 282.683594 C 171.839844 282.683594 171.933594 282.589844 171.933594 282.472656 Z M 171.933594 282.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.335938 282.488281 C 170.335938 282.371094 170.242188 282.277344 170.125 282.277344 C 170.007812 282.277344 169.914062 282.371094 169.914062 282.488281 C 169.914062 282.605469 170.007812 282.699219 170.125 282.699219 C 170.242188 282.699219 170.335938 282.605469 170.335938 282.488281 Z M 170.335938 282.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.746094 284.667969 C 167.746094 284.550781 167.652344 284.457031 167.535156 284.457031 C 167.417969 284.457031 167.324219 284.550781 167.324219 284.667969 C 167.324219 284.785156 167.417969 284.878906 167.535156 284.878906 C 167.652344 284.878906 167.746094 284.785156 167.746094 284.667969 Z M 167.746094 284.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.550781 283.441406 C 169.550781 283.324219 169.457031 283.230469 169.339844 283.230469 C 169.222656 283.230469 169.128906 283.324219 169.128906 283.441406 C 169.128906 283.558594 169.222656 283.652344 169.339844 283.652344 C 169.457031 283.652344 169.550781 283.558594 169.550781 283.441406 Z M 169.550781 283.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.816406 285.039062 C 170.816406 284.921875 170.722656 284.828125 170.605469 284.828125 C 170.488281 284.828125 170.394531 284.921875 170.394531 285.039062 C 170.394531 285.15625 170.488281 285.25 170.605469 285.25 C 170.722656 285.25 170.816406 285.15625 170.816406 285.039062 Z M 170.816406 285.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.421875 284.652344 C 170.421875 284.535156 170.328125 284.441406 170.210938 284.441406 C 170.09375 284.441406 170 284.535156 170 284.652344 C 170 284.769531 170.09375 284.863281 170.210938 284.863281 C 170.328125 284.863281 170.421875 284.769531 170.421875 284.652344 Z M 170.421875 284.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.023438 284.957031 C 166.023438 284.839844 165.929688 284.746094 165.8125 284.746094 C 165.695312 284.746094 165.601562 284.839844 165.601562 284.957031 C 165.601562 285.074219 165.695312 285.167969 165.8125 285.167969 C 165.929688 285.167969 166.023438 285.074219 166.023438 284.957031 Z M 166.023438 284.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.375 284.585938 C 166.375 284.46875 166.28125 284.375 166.164062 284.375 C 166.046875 284.375 165.953125 284.46875 165.953125 284.585938 C 165.953125 284.703125 166.046875 284.796875 166.164062 284.796875 C 166.28125 284.796875 166.375 284.703125 166.375 284.585938 Z M 166.375 284.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.625 284.171875 C 169.625 284.054688 169.53125 283.960938 169.414062 283.960938 C 169.296875 283.960938 169.203125 284.054688 169.203125 284.171875 C 169.203125 284.289062 169.296875 284.382812 169.414062 284.382812 C 169.53125 284.382812 169.625 284.289062 169.625 284.171875 Z M 169.625 284.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.195312 284.554688 C 169.195312 284.4375 169.101562 284.34375 168.984375 284.34375 C 168.867188 284.34375 168.773438 284.4375 168.773438 284.554688 C 168.773438 284.671875 168.867188 284.765625 168.984375 284.765625 C 169.101562 284.765625 169.195312 284.671875 169.195312 284.554688 Z M 169.195312 284.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.835938 286.089844 C 168.835938 285.972656 168.742188 285.878906 168.625 285.878906 C 168.507812 285.878906 168.414062 285.972656 168.414062 286.089844 C 168.414062 286.207031 168.507812 286.300781 168.625 286.300781 C 168.742188 286.300781 168.835938 286.207031 168.835938 286.089844 Z M 168.835938 286.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.589844 283.097656 C 166.589844 282.980469 166.496094 282.886719 166.378906 282.886719 C 166.261719 282.886719 166.167969 282.980469 166.167969 283.097656 C 166.167969 283.214844 166.261719 283.308594 166.378906 283.308594 C 166.496094 283.308594 166.589844 283.214844 166.589844 283.097656 Z M 166.589844 283.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.429688 285.183594 C 168.429688 285.066406 168.335938 284.972656 168.21875 284.972656 C 168.101562 284.972656 168.007812 285.066406 168.007812 285.183594 C 168.007812 285.300781 168.101562 285.394531 168.21875 285.394531 C 168.335938 285.394531 168.429688 285.300781 168.429688 285.183594 Z M 168.429688 285.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 169.664062 283.625 C 169.664062 283.507812 169.570312 283.414062 169.453125 283.414062 C 169.335938 283.414062 169.242188 283.507812 169.242188 283.625 C 169.242188 283.742188 169.335938 283.835938 169.453125 283.835938 C 169.570312 283.835938 169.664062 283.742188 169.664062 283.625 Z M 169.664062 283.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.609375 284.078125 C 170.609375 283.960938 170.515625 283.867188 170.398438 283.867188 C 170.28125 283.867188 170.1875 283.960938 170.1875 284.078125 C 170.1875 284.195312 170.28125 284.289062 170.398438 284.289062 C 170.515625 284.289062 170.609375 284.195312 170.609375 284.078125 Z M 170.609375 284.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.140625 289.347656 C 168.140625 289.230469 168.046875 289.136719 167.929688 289.136719 C 167.8125 289.136719 167.71875 289.230469 167.71875 289.347656 C 167.71875 289.464844 167.8125 289.558594 167.929688 289.558594 C 168.046875 289.558594 168.140625 289.464844 168.140625 289.347656 Z M 168.140625 289.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.347656 287.945312 C 167.347656 287.828125 167.253906 287.734375 167.136719 287.734375 C 167.019531 287.734375 166.925781 287.828125 166.925781 287.945312 C 166.925781 288.0625 167.019531 288.15625 167.136719 288.15625 C 167.253906 288.15625 167.347656 288.0625 167.347656 287.945312 Z M 167.347656 287.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.136719 288.777344 C 168.136719 288.660156 168.042969 288.566406 167.925781 288.566406 C 167.808594 288.566406 167.714844 288.660156 167.714844 288.777344 C 167.714844 288.894531 167.808594 288.988281 167.925781 288.988281 C 168.042969 288.988281 168.136719 288.894531 168.136719 288.777344 Z M 168.136719 288.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.128906 284.441406 C 170.128906 284.324219 170.035156 284.230469 169.917969 284.230469 C 169.800781 284.230469 169.707031 284.324219 169.707031 284.441406 C 169.707031 284.558594 169.800781 284.652344 169.917969 284.652344 C 170.035156 284.652344 170.128906 284.558594 170.128906 284.441406 Z M 170.128906 284.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.863281 286.738281 C 167.863281 286.621094 167.769531 286.527344 167.652344 286.527344 C 167.535156 286.527344 167.441406 286.621094 167.441406 286.738281 C 167.441406 286.855469 167.535156 286.949219 167.652344 286.949219 C 167.769531 286.949219 167.863281 286.855469 167.863281 286.738281 Z M 167.863281 286.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.792969 285.453125 C 166.792969 285.335938 166.699219 285.242188 166.582031 285.242188 C 166.464844 285.242188 166.371094 285.335938 166.371094 285.453125 C 166.371094 285.570312 166.464844 285.664062 166.582031 285.664062 C 166.699219 285.664062 166.792969 285.570312 166.792969 285.453125 Z M 166.792969 285.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.144531 283.230469 C 163.144531 283.113281 163.050781 283.019531 162.933594 283.019531 C 162.816406 283.019531 162.722656 283.113281 162.722656 283.230469 C 162.722656 283.347656 162.816406 283.441406 162.933594 283.441406 C 163.050781 283.441406 163.144531 283.347656 163.144531 283.230469 Z M 163.144531 283.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.917969 281.464844 C 161.917969 281.347656 161.824219 281.253906 161.707031 281.253906 C 161.589844 281.253906 161.496094 281.347656 161.496094 281.464844 C 161.496094 281.582031 161.589844 281.675781 161.707031 281.675781 C 161.824219 281.675781 161.917969 281.582031 161.917969 281.464844 Z M 161.917969 281.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.726562 282.550781 C 162.726562 282.433594 162.632812 282.339844 162.515625 282.339844 C 162.398438 282.339844 162.304688 282.433594 162.304688 282.550781 C 162.304688 282.667969 162.398438 282.761719 162.515625 282.761719 C 162.632812 282.761719 162.726562 282.667969 162.726562 282.550781 Z M 162.726562 282.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.617188 286.53125 C 161.617188 286.414062 161.523438 286.320312 161.40625 286.320312 C 161.289062 286.320312 161.195312 286.414062 161.195312 286.53125 C 161.195312 286.648438 161.289062 286.742188 161.40625 286.742188 C 161.523438 286.742188 161.617188 286.648438 161.617188 286.53125 Z M 161.617188 286.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.136719 284.347656 C 158.136719 284.230469 158.042969 284.136719 157.925781 284.136719 C 157.808594 284.136719 157.714844 284.230469 157.714844 284.347656 C 157.714844 284.464844 157.808594 284.558594 157.925781 284.558594 C 158.042969 284.558594 158.136719 284.464844 158.136719 284.347656 Z M 158.136719 284.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.863281 283.644531 C 154.863281 283.527344 154.769531 283.433594 154.652344 283.433594 C 154.535156 283.433594 154.441406 283.527344 154.441406 283.644531 C 154.441406 283.761719 154.535156 283.855469 154.652344 283.855469 C 154.769531 283.855469 154.863281 283.761719 154.863281 283.644531 Z M 154.863281 283.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.808594 282.265625 C 153.808594 282.148438 153.714844 282.054688 153.597656 282.054688 C 153.480469 282.054688 153.386719 282.148438 153.386719 282.265625 C 153.386719 282.382812 153.480469 282.476562 153.597656 282.476562 C 153.714844 282.476562 153.808594 282.382812 153.808594 282.265625 Z M 153.808594 282.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.300781 279.941406 C 152.300781 279.824219 152.207031 279.730469 152.089844 279.730469 C 151.972656 279.730469 151.878906 279.824219 151.878906 279.941406 C 151.878906 280.058594 151.972656 280.152344 152.089844 280.152344 C 152.207031 280.152344 152.300781 280.058594 152.300781 279.941406 Z M 152.300781 279.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.632812 279.359375 C 147.632812 279.242188 147.539062 279.148438 147.421875 279.148438 C 147.304688 279.148438 147.210938 279.242188 147.210938 279.359375 C 147.210938 279.476562 147.304688 279.570312 147.421875 279.570312 C 147.539062 279.570312 147.632812 279.476562 147.632812 279.359375 Z M 147.632812 279.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.402344 278.582031 C 149.402344 278.464844 149.308594 278.371094 149.191406 278.371094 C 149.074219 278.371094 148.980469 278.464844 148.980469 278.582031 C 148.980469 278.699219 149.074219 278.792969 149.191406 278.792969 C 149.308594 278.792969 149.402344 278.699219 149.402344 278.582031 Z M 149.402344 278.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.660156 276.355469 C 150.660156 276.238281 150.566406 276.144531 150.449219 276.144531 C 150.332031 276.144531 150.238281 276.238281 150.238281 276.355469 C 150.238281 276.472656 150.332031 276.566406 150.449219 276.566406 C 150.566406 276.566406 150.660156 276.472656 150.660156 276.355469 Z M 150.660156 276.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.421875 278.324219 C 150.421875 278.207031 150.328125 278.113281 150.210938 278.113281 C 150.09375 278.113281 150 278.207031 150 278.324219 C 150 278.441406 150.09375 278.535156 150.210938 278.535156 C 150.328125 278.535156 150.421875 278.441406 150.421875 278.324219 Z M 150.421875 278.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.40625 280.453125 C 145.40625 280.335938 145.3125 280.242188 145.195312 280.242188 C 145.078125 280.242188 144.984375 280.335938 144.984375 280.453125 C 144.984375 280.570312 145.078125 280.664062 145.195312 280.664062 C 145.3125 280.664062 145.40625 280.570312 145.40625 280.453125 Z M 145.40625 280.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.695312 281.175781 C 145.695312 281.058594 145.601562 280.964844 145.484375 280.964844 C 145.367188 280.964844 145.273438 281.058594 145.273438 281.175781 C 145.273438 281.292969 145.367188 281.386719 145.484375 281.386719 C 145.601562 281.386719 145.695312 281.292969 145.695312 281.175781 Z M 145.695312 281.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.203125 285.550781 C 149.203125 285.433594 149.109375 285.339844 148.992188 285.339844 C 148.875 285.339844 148.78125 285.433594 148.78125 285.550781 C 148.78125 285.667969 148.875 285.761719 148.992188 285.761719 C 149.109375 285.761719 149.203125 285.667969 149.203125 285.550781 Z M 149.203125 285.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.292969 287.132812 C 146.292969 287.015625 146.199219 286.921875 146.082031 286.921875 C 145.964844 286.921875 145.871094 287.015625 145.871094 287.132812 C 145.871094 287.25 145.964844 287.34375 146.082031 287.34375 C 146.199219 287.34375 146.292969 287.25 146.292969 287.132812 Z M 146.292969 287.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.46875 289.09375 C 145.46875 288.976562 145.375 288.882812 145.257812 288.882812 C 145.140625 288.882812 145.046875 288.976562 145.046875 289.09375 C 145.046875 289.210938 145.140625 289.304688 145.257812 289.304688 C 145.375 289.304688 145.46875 289.210938 145.46875 289.09375 Z M 145.46875 289.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.175781 288.476562 C 144.175781 288.359375 144.082031 288.265625 143.964844 288.265625 C 143.847656 288.265625 143.753906 288.359375 143.753906 288.476562 C 143.753906 288.59375 143.847656 288.6875 143.964844 288.6875 C 144.082031 288.6875 144.175781 288.59375 144.175781 288.476562 Z M 144.175781 288.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.382812 288.808594 C 143.382812 288.691406 143.289062 288.597656 143.171875 288.597656 C 143.054688 288.597656 142.960938 288.691406 142.960938 288.808594 C 142.960938 288.925781 143.054688 289.019531 143.171875 289.019531 C 143.289062 289.019531 143.382812 288.925781 143.382812 288.808594 Z M 143.382812 288.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.53125 290.644531 C 142.53125 290.527344 142.4375 290.433594 142.320312 290.433594 C 142.203125 290.433594 142.109375 290.527344 142.109375 290.644531 C 142.109375 290.761719 142.203125 290.855469 142.320312 290.855469 C 142.4375 290.855469 142.53125 290.761719 142.53125 290.644531 Z M 142.53125 290.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.796875 292.527344 C 143.796875 292.410156 143.703125 292.316406 143.585938 292.316406 C 143.46875 292.316406 143.375 292.410156 143.375 292.527344 C 143.375 292.644531 143.46875 292.738281 143.585938 292.738281 C 143.703125 292.738281 143.796875 292.644531 143.796875 292.527344 Z M 143.796875 292.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.191406 289.984375 C 138.191406 289.867188 138.097656 289.773438 137.980469 289.773438 C 137.863281 289.773438 137.769531 289.867188 137.769531 289.984375 C 137.769531 290.101562 137.863281 290.195312 137.980469 290.195312 C 138.097656 290.195312 138.191406 290.101562 138.191406 289.984375 Z M 138.191406 289.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.746094 288.632812 C 140.746094 288.515625 140.652344 288.421875 140.535156 288.421875 C 140.417969 288.421875 140.324219 288.515625 140.324219 288.632812 C 140.324219 288.75 140.417969 288.84375 140.535156 288.84375 C 140.652344 288.84375 140.746094 288.75 140.746094 288.632812 Z M 140.746094 288.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.328125 283.476562 C 142.328125 283.359375 142.234375 283.265625 142.117188 283.265625 C 142 283.265625 141.90625 283.359375 141.90625 283.476562 C 141.90625 283.59375 142 283.6875 142.117188 283.6875 C 142.234375 283.6875 142.328125 283.59375 142.328125 283.476562 Z M 142.328125 283.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.578125 281.644531 C 146.578125 281.527344 146.484375 281.433594 146.367188 281.433594 C 146.25 281.433594 146.15625 281.527344 146.15625 281.644531 C 146.15625 281.761719 146.25 281.855469 146.367188 281.855469 C 146.484375 281.855469 146.578125 281.761719 146.578125 281.644531 Z M 146.578125 281.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.433594 278.925781 C 142.433594 278.808594 142.339844 278.714844 142.222656 278.714844 C 142.105469 278.714844 142.011719 278.808594 142.011719 278.925781 C 142.011719 279.042969 142.105469 279.136719 142.222656 279.136719 C 142.339844 279.136719 142.433594 279.042969 142.433594 278.925781 Z M 142.433594 278.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.421875 280.78125 C 143.421875 280.664062 143.328125 280.570312 143.210938 280.570312 C 143.09375 280.570312 143 280.664062 143 280.78125 C 143 280.898438 143.09375 280.992188 143.210938 280.992188 C 143.328125 280.992188 143.421875 280.898438 143.421875 280.78125 Z M 143.421875 280.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.574219 278.390625 C 144.574219 278.273438 144.480469 278.179688 144.363281 278.179688 C 144.246094 278.179688 144.152344 278.273438 144.152344 278.390625 C 144.152344 278.507812 144.246094 278.601562 144.363281 278.601562 C 144.480469 278.601562 144.574219 278.507812 144.574219 278.390625 Z M 144.574219 278.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.898438 275.535156 C 144.898438 275.417969 144.804688 275.324219 144.6875 275.324219 C 144.570312 275.324219 144.476562 275.417969 144.476562 275.535156 C 144.476562 275.652344 144.570312 275.746094 144.6875 275.746094 C 144.804688 275.746094 144.898438 275.652344 144.898438 275.535156 Z M 144.898438 275.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.382812 274.695312 C 144.382812 274.578125 144.289062 274.484375 144.171875 274.484375 C 144.054688 274.484375 143.960938 274.578125 143.960938 274.695312 C 143.960938 274.8125 144.054688 274.90625 144.171875 274.90625 C 144.289062 274.90625 144.382812 274.8125 144.382812 274.695312 Z M 144.382812 274.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.171875 274.125 C 145.171875 274.007812 145.078125 273.914062 144.960938 273.914062 C 144.84375 273.914062 144.75 274.007812 144.75 274.125 C 144.75 274.242188 144.84375 274.335938 144.960938 274.335938 C 145.078125 274.335938 145.171875 274.242188 145.171875 274.125 Z M 145.171875 274.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.128906 273.847656 C 147.128906 273.730469 147.035156 273.636719 146.917969 273.636719 C 146.800781 273.636719 146.707031 273.730469 146.707031 273.847656 C 146.707031 273.964844 146.800781 274.058594 146.917969 274.058594 C 147.035156 274.058594 147.128906 273.964844 147.128906 273.847656 Z M 147.128906 273.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.476562 273.703125 C 144.476562 273.585938 144.382812 273.492188 144.265625 273.492188 C 144.148438 273.492188 144.054688 273.585938 144.054688 273.703125 C 144.054688 273.820312 144.148438 273.914062 144.265625 273.914062 C 144.382812 273.914062 144.476562 273.820312 144.476562 273.703125 Z M 144.476562 273.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.421875 276.359375 C 147.421875 276.242188 147.328125 276.148438 147.210938 276.148438 C 147.09375 276.148438 147 276.242188 147 276.359375 C 147 276.476562 147.09375 276.570312 147.210938 276.570312 C 147.328125 276.570312 147.421875 276.476562 147.421875 276.359375 Z M 147.421875 276.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.167969 274.511719 C 146.167969 274.394531 146.074219 274.300781 145.957031 274.300781 C 145.839844 274.300781 145.746094 274.394531 145.746094 274.511719 C 145.746094 274.628906 145.839844 274.722656 145.957031 274.722656 C 146.074219 274.722656 146.167969 274.628906 146.167969 274.511719 Z M 146.167969 274.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.253906 278.085938 C 149.253906 277.96875 149.160156 277.875 149.042969 277.875 C 148.925781 277.875 148.832031 277.96875 148.832031 278.085938 C 148.832031 278.203125 148.925781 278.296875 149.042969 278.296875 C 149.160156 278.296875 149.253906 278.203125 149.253906 278.085938 Z M 149.253906 278.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.167969 275.324219 C 151.167969 275.207031 151.074219 275.113281 150.957031 275.113281 C 150.839844 275.113281 150.746094 275.207031 150.746094 275.324219 C 150.746094 275.441406 150.839844 275.535156 150.957031 275.535156 C 151.074219 275.535156 151.167969 275.441406 151.167969 275.324219 Z M 151.167969 275.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.746094 275.46875 C 150.746094 275.351562 150.652344 275.257812 150.535156 275.257812 C 150.417969 275.257812 150.324219 275.351562 150.324219 275.46875 C 150.324219 275.585938 150.417969 275.679688 150.535156 275.679688 C 150.652344 275.679688 150.746094 275.585938 150.746094 275.46875 Z M 150.746094 275.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.164062 274.148438 C 150.164062 274.03125 150.070312 273.9375 149.953125 273.9375 C 149.835938 273.9375 149.742188 274.03125 149.742188 274.148438 C 149.742188 274.265625 149.835938 274.359375 149.953125 274.359375 C 150.070312 274.359375 150.164062 274.265625 150.164062 274.148438 Z M 150.164062 274.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.152344 272.933594 C 147.152344 272.816406 147.058594 272.722656 146.941406 272.722656 C 146.824219 272.722656 146.730469 272.816406 146.730469 272.933594 C 146.730469 273.050781 146.824219 273.144531 146.941406 273.144531 C 147.058594 273.144531 147.152344 273.050781 147.152344 272.933594 Z M 147.152344 272.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.152344 272.363281 C 150.152344 272.246094 150.058594 272.152344 149.941406 272.152344 C 149.824219 272.152344 149.730469 272.246094 149.730469 272.363281 C 149.730469 272.480469 149.824219 272.574219 149.941406 272.574219 C 150.058594 272.574219 150.152344 272.480469 150.152344 272.363281 Z M 150.152344 272.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.320312 270.996094 C 149.320312 270.878906 149.226562 270.785156 149.109375 270.785156 C 148.992188 270.785156 148.898438 270.878906 148.898438 270.996094 C 148.898438 271.113281 148.992188 271.207031 149.109375 271.207031 C 149.226562 271.207031 149.320312 271.113281 149.320312 270.996094 Z M 149.320312 270.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.011719 268 C 150.011719 267.882812 149.917969 267.789062 149.800781 267.789062 C 149.683594 267.789062 149.589844 267.882812 149.589844 268 C 149.589844 268.117188 149.683594 268.210938 149.800781 268.210938 C 149.917969 268.210938 150.011719 268.117188 150.011719 268 Z M 150.011719 268 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.921875 266.8125 C 154.921875 266.695312 154.828125 266.601562 154.710938 266.601562 C 154.59375 266.601562 154.5 266.695312 154.5 266.8125 C 154.5 266.929688 154.59375 267.023438 154.710938 267.023438 C 154.828125 267.023438 154.921875 266.929688 154.921875 266.8125 Z M 154.921875 266.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.429688 267.378906 C 153.429688 267.261719 153.335938 267.167969 153.21875 267.167969 C 153.101562 267.167969 153.007812 267.261719 153.007812 267.378906 C 153.007812 267.496094 153.101562 267.589844 153.21875 267.589844 C 153.335938 267.589844 153.429688 267.496094 153.429688 267.378906 Z M 153.429688 267.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.230469 266.410156 C 149.230469 266.292969 149.136719 266.199219 149.019531 266.199219 C 148.902344 266.199219 148.808594 266.292969 148.808594 266.410156 C 148.808594 266.527344 148.902344 266.621094 149.019531 266.621094 C 149.136719 266.621094 149.230469 266.527344 149.230469 266.410156 Z M 149.230469 266.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.917969 263.441406 C 146.917969 263.324219 146.824219 263.230469 146.707031 263.230469 C 146.589844 263.230469 146.496094 263.324219 146.496094 263.441406 C 146.496094 263.558594 146.589844 263.652344 146.707031 263.652344 C 146.824219 263.652344 146.917969 263.558594 146.917969 263.441406 Z M 146.917969 263.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.484375 265.378906 C 146.484375 265.261719 146.390625 265.167969 146.273438 265.167969 C 146.15625 265.167969 146.0625 265.261719 146.0625 265.378906 C 146.0625 265.496094 146.15625 265.589844 146.273438 265.589844 C 146.390625 265.589844 146.484375 265.496094 146.484375 265.378906 Z M 146.484375 265.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.75 265.152344 C 146.75 265.035156 146.65625 264.941406 146.539062 264.941406 C 146.421875 264.941406 146.328125 265.035156 146.328125 265.152344 C 146.328125 265.269531 146.421875 265.363281 146.539062 265.363281 C 146.65625 265.363281 146.75 265.269531 146.75 265.152344 Z M 146.75 265.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.105469 262.316406 C 144.105469 262.199219 144.011719 262.105469 143.894531 262.105469 C 143.777344 262.105469 143.683594 262.199219 143.683594 262.316406 C 143.683594 262.433594 143.777344 262.527344 143.894531 262.527344 C 144.011719 262.527344 144.105469 262.433594 144.105469 262.316406 Z M 144.105469 262.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.847656 260.394531 C 145.847656 260.277344 145.753906 260.183594 145.636719 260.183594 C 145.519531 260.183594 145.425781 260.277344 145.425781 260.394531 C 145.425781 260.511719 145.519531 260.605469 145.636719 260.605469 C 145.753906 260.605469 145.847656 260.511719 145.847656 260.394531 Z M 145.847656 260.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.332031 262.195312 C 146.332031 262.078125 146.238281 261.984375 146.121094 261.984375 C 146.003906 261.984375 145.910156 262.078125 145.910156 262.195312 C 145.910156 262.3125 146.003906 262.40625 146.121094 262.40625 C 146.238281 262.40625 146.332031 262.3125 146.332031 262.195312 Z M 146.332031 262.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.207031 261.792969 C 145.207031 261.675781 145.113281 261.582031 144.996094 261.582031 C 144.878906 261.582031 144.785156 261.675781 144.785156 261.792969 C 144.785156 261.910156 144.878906 262.003906 144.996094 262.003906 C 145.113281 262.003906 145.207031 261.910156 145.207031 261.792969 Z M 145.207031 261.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.867188 260.53125 C 143.867188 260.414062 143.773438 260.320312 143.65625 260.320312 C 143.539062 260.320312 143.445312 260.414062 143.445312 260.53125 C 143.445312 260.648438 143.539062 260.742188 143.65625 260.742188 C 143.773438 260.742188 143.867188 260.648438 143.867188 260.53125 Z M 143.867188 260.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.65625 259.019531 C 145.65625 258.902344 145.5625 258.808594 145.445312 258.808594 C 145.328125 258.808594 145.234375 258.902344 145.234375 259.019531 C 145.234375 259.136719 145.328125 259.230469 145.445312 259.230469 C 145.5625 259.230469 145.65625 259.136719 145.65625 259.019531 Z M 145.65625 259.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.265625 258.117188 C 146.265625 258 146.171875 257.90625 146.054688 257.90625 C 145.9375 257.90625 145.84375 258 145.84375 258.117188 C 145.84375 258.234375 145.9375 258.328125 146.054688 258.328125 C 146.171875 258.328125 146.265625 258.234375 146.265625 258.117188 Z M 146.265625 258.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 143.152344 255.953125 C 143.152344 255.835938 143.058594 255.742188 142.941406 255.742188 C 142.824219 255.742188 142.730469 255.835938 142.730469 255.953125 C 142.730469 256.070312 142.824219 256.164062 142.941406 256.164062 C 143.058594 256.164062 143.152344 256.070312 143.152344 255.953125 Z M 143.152344 255.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.945312 254.25 C 141.945312 254.132812 141.851562 254.039062 141.734375 254.039062 C 141.617188 254.039062 141.523438 254.132812 141.523438 254.25 C 141.523438 254.367188 141.617188 254.460938 141.734375 254.460938 C 141.851562 254.460938 141.945312 254.367188 141.945312 254.25 Z M 141.945312 254.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.585938 257.28125 C 138.585938 257.164062 138.492188 257.070312 138.375 257.070312 C 138.257812 257.070312 138.164062 257.164062 138.164062 257.28125 C 138.164062 257.398438 138.257812 257.492188 138.375 257.492188 C 138.492188 257.492188 138.585938 257.398438 138.585938 257.28125 Z M 138.585938 257.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 136.9375 260.347656 C 136.9375 260.230469 136.84375 260.136719 136.726562 260.136719 C 136.609375 260.136719 136.515625 260.230469 136.515625 260.347656 C 136.515625 260.464844 136.609375 260.558594 136.726562 260.558594 C 136.84375 260.558594 136.9375 260.464844 136.9375 260.347656 Z M 136.9375 260.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.191406 261.289062 C 135.191406 261.171875 135.097656 261.078125 134.980469 261.078125 C 134.863281 261.078125 134.769531 261.171875 134.769531 261.289062 C 134.769531 261.40625 134.863281 261.5 134.980469 261.5 C 135.097656 261.5 135.191406 261.40625 135.191406 261.289062 Z M 135.191406 261.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 132.449219 263.847656 C 132.449219 263.730469 132.355469 263.636719 132.238281 263.636719 C 132.121094 263.636719 132.027344 263.730469 132.027344 263.847656 C 132.027344 263.964844 132.121094 264.058594 132.238281 264.058594 C 132.355469 264.058594 132.449219 263.964844 132.449219 263.847656 Z M 132.449219 263.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.480469 267.464844 C 127.480469 267.347656 127.386719 267.253906 127.269531 267.253906 C 127.152344 267.253906 127.058594 267.347656 127.058594 267.464844 C 127.058594 267.582031 127.152344 267.675781 127.269531 267.675781 C 127.386719 267.675781 127.480469 267.582031 127.480469 267.464844 Z M 127.480469 267.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.679688 266.285156 C 128.679688 266.167969 128.585938 266.074219 128.46875 266.074219 C 128.351562 266.074219 128.257812 266.167969 128.257812 266.285156 C 128.257812 266.402344 128.351562 266.496094 128.46875 266.496094 C 128.585938 266.496094 128.679688 266.402344 128.679688 266.285156 Z M 128.679688 266.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.34375 267.289062 C 125.34375 267.171875 125.25 267.078125 125.132812 267.078125 C 125.015625 267.078125 124.921875 267.171875 124.921875 267.289062 C 124.921875 267.40625 125.015625 267.5 125.132812 267.5 C 125.25 267.5 125.34375 267.40625 125.34375 267.289062 Z M 125.34375 267.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126.476562 269.578125 C 126.476562 269.460938 126.382812 269.367188 126.265625 269.367188 C 126.148438 269.367188 126.054688 269.460938 126.054688 269.578125 C 126.054688 269.695312 126.148438 269.789062 126.265625 269.789062 C 126.382812 269.789062 126.476562 269.695312 126.476562 269.578125 Z M 126.476562 269.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.777344 271.171875 C 129.777344 271.054688 129.683594 270.960938 129.566406 270.960938 C 129.449219 270.960938 129.355469 271.054688 129.355469 271.171875 C 129.355469 271.289062 129.449219 271.382812 129.566406 271.382812 C 129.683594 271.382812 129.777344 271.289062 129.777344 271.171875 Z M 129.777344 271.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.148438 268.433594 C 128.148438 268.316406 128.054688 268.222656 127.9375 268.222656 C 127.820312 268.222656 127.726562 268.316406 127.726562 268.433594 C 127.726562 268.550781 127.820312 268.644531 127.9375 268.644531 C 128.054688 268.644531 128.148438 268.550781 128.148438 268.433594 Z M 128.148438 268.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 130.214844 261.613281 C 130.214844 261.496094 130.121094 261.402344 130.003906 261.402344 C 129.886719 261.402344 129.792969 261.496094 129.792969 261.613281 C 129.792969 261.730469 129.886719 261.824219 130.003906 261.824219 C 130.121094 261.824219 130.214844 261.730469 130.214844 261.613281 Z M 130.214844 261.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.347656 260.382812 C 128.347656 260.265625 128.253906 260.171875 128.136719 260.171875 C 128.019531 260.171875 127.925781 260.265625 127.925781 260.382812 C 127.925781 260.5 128.019531 260.59375 128.136719 260.59375 C 128.253906 260.59375 128.347656 260.5 128.347656 260.382812 Z M 128.347656 260.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.472656 263.082031 C 128.472656 262.964844 128.378906 262.871094 128.261719 262.871094 C 128.144531 262.871094 128.050781 262.964844 128.050781 263.082031 C 128.050781 263.199219 128.144531 263.292969 128.261719 263.292969 C 128.378906 263.292969 128.472656 263.199219 128.472656 263.082031 Z M 128.472656 263.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.589844 260.632812 C 125.589844 260.515625 125.496094 260.421875 125.378906 260.421875 C 125.261719 260.421875 125.167969 260.515625 125.167969 260.632812 C 125.167969 260.75 125.261719 260.84375 125.378906 260.84375 C 125.496094 260.84375 125.589844 260.75 125.589844 260.632812 Z M 125.589844 260.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.40625 261.386719 C 123.40625 261.269531 123.3125 261.175781 123.195312 261.175781 C 123.078125 261.175781 122.984375 261.269531 122.984375 261.386719 C 122.984375 261.503906 123.078125 261.597656 123.195312 261.597656 C 123.3125 261.597656 123.40625 261.503906 123.40625 261.386719 Z M 123.40625 261.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.085938 261.59375 C 125.085938 261.476562 124.992188 261.382812 124.875 261.382812 C 124.757812 261.382812 124.664062 261.476562 124.664062 261.59375 C 124.664062 261.710938 124.757812 261.804688 124.875 261.804688 C 124.992188 261.804688 125.085938 261.710938 125.085938 261.59375 Z M 125.085938 261.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.519531 262.078125 C 125.519531 261.960938 125.425781 261.867188 125.308594 261.867188 C 125.191406 261.867188 125.097656 261.960938 125.097656 262.078125 C 125.097656 262.195312 125.191406 262.289062 125.308594 262.289062 C 125.425781 262.289062 125.519531 262.195312 125.519531 262.078125 Z M 125.519531 262.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.410156 260.9375 C 123.410156 260.820312 123.316406 260.726562 123.199219 260.726562 C 123.082031 260.726562 122.988281 260.820312 122.988281 260.9375 C 122.988281 261.054688 123.082031 261.148438 123.199219 261.148438 C 123.316406 261.148438 123.410156 261.054688 123.410156 260.9375 Z M 123.410156 260.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.316406 261.347656 C 127.316406 261.230469 127.222656 261.136719 127.105469 261.136719 C 126.988281 261.136719 126.894531 261.230469 126.894531 261.347656 C 126.894531 261.464844 126.988281 261.558594 127.105469 261.558594 C 127.222656 261.558594 127.316406 261.464844 127.316406 261.347656 Z M 127.316406 261.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.277344 263.171875 C 124.277344 263.054688 124.183594 262.960938 124.066406 262.960938 C 123.949219 262.960938 123.855469 263.054688 123.855469 263.171875 C 123.855469 263.289062 123.949219 263.382812 124.066406 263.382812 C 124.183594 263.382812 124.277344 263.289062 124.277344 263.171875 Z M 124.277344 263.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.980469 259.449219 C 122.980469 259.332031 122.886719 259.238281 122.769531 259.238281 C 122.652344 259.238281 122.558594 259.332031 122.558594 259.449219 C 122.558594 259.566406 122.652344 259.660156 122.769531 259.660156 C 122.886719 259.660156 122.980469 259.566406 122.980469 259.449219 Z M 122.980469 259.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.976562 259.898438 C 122.976562 259.78125 122.882812 259.6875 122.765625 259.6875 C 122.648438 259.6875 122.554688 259.78125 122.554688 259.898438 C 122.554688 260.015625 122.648438 260.109375 122.765625 260.109375 C 122.882812 260.109375 122.976562 260.015625 122.976562 259.898438 Z M 122.976562 259.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.183594 260.304688 C 122.183594 260.1875 122.089844 260.09375 121.972656 260.09375 C 121.855469 260.09375 121.761719 260.1875 121.761719 260.304688 C 121.761719 260.421875 121.855469 260.515625 121.972656 260.515625 C 122.089844 260.515625 122.183594 260.421875 122.183594 260.304688 Z M 122.183594 260.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.75 264.351562 C 122.75 264.234375 122.65625 264.140625 122.539062 264.140625 C 122.421875 264.140625 122.328125 264.234375 122.328125 264.351562 C 122.328125 264.46875 122.421875 264.5625 122.539062 264.5625 C 122.65625 264.5625 122.75 264.46875 122.75 264.351562 Z M 122.75 264.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.992188 264.835938 C 123.992188 264.71875 123.898438 264.625 123.78125 264.625 C 123.664062 264.625 123.570312 264.71875 123.570312 264.835938 C 123.570312 264.953125 123.664062 265.046875 123.78125 265.046875 C 123.898438 265.046875 123.992188 264.953125 123.992188 264.835938 Z M 123.992188 264.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.777344 263.421875 C 124.777344 263.304688 124.683594 263.210938 124.566406 263.210938 C 124.449219 263.210938 124.355469 263.304688 124.355469 263.421875 C 124.355469 263.539062 124.449219 263.632812 124.566406 263.632812 C 124.683594 263.632812 124.777344 263.539062 124.777344 263.421875 Z M 124.777344 263.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.609375 262.929688 C 127.609375 262.8125 127.515625 262.71875 127.398438 262.71875 C 127.28125 262.71875 127.1875 262.8125 127.1875 262.929688 C 127.1875 263.046875 127.28125 263.140625 127.398438 263.140625 C 127.515625 263.140625 127.609375 263.046875 127.609375 262.929688 Z M 127.609375 262.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.4375 262.773438 C 129.4375 262.65625 129.34375 262.5625 129.226562 262.5625 C 129.109375 262.5625 129.015625 262.65625 129.015625 262.773438 C 129.015625 262.890625 129.109375 262.984375 129.226562 262.984375 C 129.34375 262.984375 129.4375 262.890625 129.4375 262.773438 Z M 129.4375 262.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 131.042969 262.652344 C 131.042969 262.535156 130.949219 262.441406 130.832031 262.441406 C 130.714844 262.441406 130.621094 262.535156 130.621094 262.652344 C 130.621094 262.769531 130.714844 262.863281 130.832031 262.863281 C 130.949219 262.863281 131.042969 262.769531 131.042969 262.652344 Z M 131.042969 262.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.90625 263.207031 C 128.90625 263.089844 128.8125 262.996094 128.695312 262.996094 C 128.578125 262.996094 128.484375 263.089844 128.484375 263.207031 C 128.484375 263.324219 128.578125 263.417969 128.695312 263.417969 C 128.8125 263.417969 128.90625 263.324219 128.90625 263.207031 Z M 128.90625 263.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.738281 259.78125 C 128.738281 259.664062 128.644531 259.570312 128.527344 259.570312 C 128.410156 259.570312 128.316406 259.664062 128.316406 259.78125 C 128.316406 259.898438 128.410156 259.992188 128.527344 259.992188 C 128.644531 259.992188 128.738281 259.898438 128.738281 259.78125 Z M 128.738281 259.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126.773438 257.570312 C 126.773438 257.453125 126.679688 257.359375 126.5625 257.359375 C 126.445312 257.359375 126.351562 257.453125 126.351562 257.570312 C 126.351562 257.6875 126.445312 257.78125 126.5625 257.78125 C 126.679688 257.78125 126.773438 257.6875 126.773438 257.570312 Z M 126.773438 257.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.769531 254.875 C 128.769531 254.757812 128.675781 254.664062 128.558594 254.664062 C 128.441406 254.664062 128.347656 254.757812 128.347656 254.875 C 128.347656 254.992188 128.441406 255.085938 128.558594 255.085938 C 128.675781 255.085938 128.769531 254.992188 128.769531 254.875 Z M 128.769531 254.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.664062 259.390625 C 125.664062 259.273438 125.570312 259.179688 125.453125 259.179688 C 125.335938 259.179688 125.242188 259.273438 125.242188 259.390625 C 125.242188 259.507812 125.335938 259.601562 125.453125 259.601562 C 125.570312 259.601562 125.664062 259.507812 125.664062 259.390625 Z M 125.664062 259.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.460938 259.335938 C 123.460938 259.21875 123.367188 259.125 123.25 259.125 C 123.132812 259.125 123.039062 259.21875 123.039062 259.335938 C 123.039062 259.453125 123.132812 259.546875 123.25 259.546875 C 123.367188 259.546875 123.460938 259.453125 123.460938 259.335938 Z M 123.460938 259.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.710938 255.492188 C 122.710938 255.375 122.617188 255.28125 122.5 255.28125 C 122.382812 255.28125 122.289062 255.375 122.289062 255.492188 C 122.289062 255.609375 122.382812 255.703125 122.5 255.703125 C 122.617188 255.703125 122.710938 255.609375 122.710938 255.492188 Z M 122.710938 255.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.875 259.125 C 117.875 259.007812 117.78125 258.914062 117.664062 258.914062 C 117.546875 258.914062 117.453125 259.007812 117.453125 259.125 C 117.453125 259.242188 117.546875 259.335938 117.664062 259.335938 C 117.78125 259.335938 117.875 259.242188 117.875 259.125 Z M 117.875 259.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.527344 258.675781 C 115.527344 258.558594 115.433594 258.464844 115.316406 258.464844 C 115.199219 258.464844 115.105469 258.558594 115.105469 258.675781 C 115.105469 258.792969 115.199219 258.886719 115.316406 258.886719 C 115.433594 258.886719 115.527344 258.792969 115.527344 258.675781 Z M 115.527344 258.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.578125 260.625 C 116.578125 260.507812 116.484375 260.414062 116.367188 260.414062 C 116.25 260.414062 116.15625 260.507812 116.15625 260.625 C 116.15625 260.742188 116.25 260.835938 116.367188 260.835938 C 116.484375 260.835938 116.578125 260.742188 116.578125 260.625 Z M 116.578125 260.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.679688 259.710938 C 116.679688 259.59375 116.585938 259.5 116.46875 259.5 C 116.351562 259.5 116.257812 259.59375 116.257812 259.710938 C 116.257812 259.828125 116.351562 259.921875 116.46875 259.921875 C 116.585938 259.921875 116.679688 259.828125 116.679688 259.710938 Z M 116.679688 259.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.574219 258.722656 C 114.574219 258.605469 114.480469 258.511719 114.363281 258.511719 C 114.246094 258.511719 114.152344 258.605469 114.152344 258.722656 C 114.152344 258.839844 114.246094 258.933594 114.363281 258.933594 C 114.480469 258.933594 114.574219 258.839844 114.574219 258.722656 Z M 114.574219 258.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.390625 263.269531 C 118.390625 263.152344 118.296875 263.058594 118.179688 263.058594 C 118.0625 263.058594 117.96875 263.152344 117.96875 263.269531 C 117.96875 263.386719 118.0625 263.480469 118.179688 263.480469 C 118.296875 263.480469 118.390625 263.386719 118.390625 263.269531 Z M 118.390625 263.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.527344 263.441406 C 117.527344 263.324219 117.433594 263.230469 117.316406 263.230469 C 117.199219 263.230469 117.105469 263.324219 117.105469 263.441406 C 117.105469 263.558594 117.199219 263.652344 117.316406 263.652344 C 117.433594 263.652344 117.527344 263.558594 117.527344 263.441406 Z M 117.527344 263.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.511719 263.09375 C 117.511719 262.976562 117.417969 262.882812 117.300781 262.882812 C 117.183594 262.882812 117.089844 262.976562 117.089844 263.09375 C 117.089844 263.210938 117.183594 263.304688 117.300781 263.304688 C 117.417969 263.304688 117.511719 263.210938 117.511719 263.09375 Z M 117.511719 263.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.476562 260.050781 C 118.476562 259.933594 118.382812 259.839844 118.265625 259.839844 C 118.148438 259.839844 118.054688 259.933594 118.054688 260.050781 C 118.054688 260.167969 118.148438 260.261719 118.265625 260.261719 C 118.382812 260.261719 118.476562 260.167969 118.476562 260.050781 Z M 118.476562 260.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.289062 259.675781 C 120.289062 259.558594 120.195312 259.464844 120.078125 259.464844 C 119.960938 259.464844 119.867188 259.558594 119.867188 259.675781 C 119.867188 259.792969 119.960938 259.886719 120.078125 259.886719 C 120.195312 259.886719 120.289062 259.792969 120.289062 259.675781 Z M 120.289062 259.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.527344 258.792969 C 118.527344 258.675781 118.433594 258.582031 118.316406 258.582031 C 118.199219 258.582031 118.105469 258.675781 118.105469 258.792969 C 118.105469 258.910156 118.199219 259.003906 118.316406 259.003906 C 118.433594 259.003906 118.527344 258.910156 118.527344 258.792969 Z M 118.527344 258.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.433594 258.222656 C 116.433594 258.105469 116.339844 258.011719 116.222656 258.011719 C 116.105469 258.011719 116.011719 258.105469 116.011719 258.222656 C 116.011719 258.339844 116.105469 258.433594 116.222656 258.433594 C 116.339844 258.433594 116.433594 258.339844 116.433594 258.222656 Z M 116.433594 258.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.300781 257.457031 C 115.300781 257.339844 115.207031 257.246094 115.089844 257.246094 C 114.972656 257.246094 114.878906 257.339844 114.878906 257.457031 C 114.878906 257.574219 114.972656 257.667969 115.089844 257.667969 C 115.207031 257.667969 115.300781 257.574219 115.300781 257.457031 Z M 115.300781 257.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.070312 259.554688 C 116.070312 259.4375 115.976562 259.34375 115.859375 259.34375 C 115.742188 259.34375 115.648438 259.4375 115.648438 259.554688 C 115.648438 259.671875 115.742188 259.765625 115.859375 259.765625 C 115.976562 259.765625 116.070312 259.671875 116.070312 259.554688 Z M 116.070312 259.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.953125 257.851562 C 116.953125 257.734375 116.859375 257.640625 116.742188 257.640625 C 116.625 257.640625 116.53125 257.734375 116.53125 257.851562 C 116.53125 257.96875 116.625 258.0625 116.742188 258.0625 C 116.859375 258.0625 116.953125 257.96875 116.953125 257.851562 Z M 116.953125 257.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.277344 258.941406 C 120.277344 258.824219 120.183594 258.730469 120.066406 258.730469 C 119.949219 258.730469 119.855469 258.824219 119.855469 258.941406 C 119.855469 259.058594 119.949219 259.152344 120.066406 259.152344 C 120.183594 259.152344 120.277344 259.058594 120.277344 258.941406 Z M 120.277344 258.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.390625 257.53125 C 116.390625 257.414062 116.296875 257.320312 116.179688 257.320312 C 116.0625 257.320312 115.96875 257.414062 115.96875 257.53125 C 115.96875 257.648438 116.0625 257.742188 116.179688 257.742188 C 116.296875 257.742188 116.390625 257.648438 116.390625 257.53125 Z M 116.390625 257.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.492188 260.242188 C 119.492188 260.125 119.398438 260.03125 119.28125 260.03125 C 119.164062 260.03125 119.070312 260.125 119.070312 260.242188 C 119.070312 260.359375 119.164062 260.453125 119.28125 260.453125 C 119.398438 260.453125 119.492188 260.359375 119.492188 260.242188 Z M 119.492188 260.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.414062 261.84375 C 119.414062 261.726562 119.320312 261.632812 119.203125 261.632812 C 119.085938 261.632812 118.992188 261.726562 118.992188 261.84375 C 118.992188 261.960938 119.085938 262.054688 119.203125 262.054688 C 119.320312 262.054688 119.414062 261.960938 119.414062 261.84375 Z M 119.414062 261.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.519531 259.175781 C 117.519531 259.058594 117.425781 258.964844 117.308594 258.964844 C 117.191406 258.964844 117.097656 259.058594 117.097656 259.175781 C 117.097656 259.292969 117.191406 259.386719 117.308594 259.386719 C 117.425781 259.386719 117.519531 259.292969 117.519531 259.175781 Z M 117.519531 259.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.703125 257.988281 C 115.703125 257.871094 115.609375 257.777344 115.492188 257.777344 C 115.375 257.777344 115.28125 257.871094 115.28125 257.988281 C 115.28125 258.105469 115.375 258.199219 115.492188 258.199219 C 115.609375 258.199219 115.703125 258.105469 115.703125 257.988281 Z M 115.703125 257.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.246094 259.90625 C 113.246094 259.789062 113.152344 259.695312 113.035156 259.695312 C 112.917969 259.695312 112.824219 259.789062 112.824219 259.90625 C 112.824219 260.023438 112.917969 260.117188 113.035156 260.117188 C 113.152344 260.117188 113.246094 260.023438 113.246094 259.90625 Z M 113.246094 259.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.464844 260.996094 C 115.464844 260.878906 115.371094 260.785156 115.253906 260.785156 C 115.136719 260.785156 115.042969 260.878906 115.042969 260.996094 C 115.042969 261.113281 115.136719 261.207031 115.253906 261.207031 C 115.371094 261.207031 115.464844 261.113281 115.464844 260.996094 Z M 115.464844 260.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.382812 260.339844 C 115.382812 260.222656 115.289062 260.128906 115.171875 260.128906 C 115.054688 260.128906 114.960938 260.222656 114.960938 260.339844 C 114.960938 260.457031 115.054688 260.550781 115.171875 260.550781 C 115.289062 260.550781 115.382812 260.457031 115.382812 260.339844 Z M 115.382812 260.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.046875 261.609375 C 119.046875 261.492188 118.953125 261.398438 118.835938 261.398438 C 118.71875 261.398438 118.625 261.492188 118.625 261.609375 C 118.625 261.726562 118.71875 261.820312 118.835938 261.820312 C 118.953125 261.820312 119.046875 261.726562 119.046875 261.609375 Z M 119.046875 261.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.015625 262.882812 C 119.015625 262.765625 118.921875 262.671875 118.804688 262.671875 C 118.6875 262.671875 118.59375 262.765625 118.59375 262.882812 C 118.59375 263 118.6875 263.09375 118.804688 263.09375 C 118.921875 263.09375 119.015625 263 119.015625 262.882812 Z M 119.015625 262.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.648438 261.519531 C 119.648438 261.402344 119.554688 261.308594 119.4375 261.308594 C 119.320312 261.308594 119.226562 261.402344 119.226562 261.519531 C 119.226562 261.636719 119.320312 261.730469 119.4375 261.730469 C 119.554688 261.730469 119.648438 261.636719 119.648438 261.519531 Z M 119.648438 261.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.679688 260.613281 C 117.679688 260.496094 117.585938 260.402344 117.46875 260.402344 C 117.351562 260.402344 117.257812 260.496094 117.257812 260.613281 C 117.257812 260.730469 117.351562 260.824219 117.46875 260.824219 C 117.585938 260.824219 117.679688 260.730469 117.679688 260.613281 Z M 117.679688 260.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.589844 261.160156 C 118.589844 261.042969 118.496094 260.949219 118.378906 260.949219 C 118.261719 260.949219 118.167969 261.042969 118.167969 261.160156 C 118.167969 261.277344 118.261719 261.371094 118.378906 261.371094 C 118.496094 261.371094 118.589844 261.277344 118.589844 261.160156 Z M 118.589844 261.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.34375 259.125 C 120.34375 259.007812 120.25 258.914062 120.132812 258.914062 C 120.015625 258.914062 119.921875 259.007812 119.921875 259.125 C 119.921875 259.242188 120.015625 259.335938 120.132812 259.335938 C 120.25 259.335938 120.34375 259.242188 120.34375 259.125 Z M 120.34375 259.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.128906 259.023438 C 116.128906 258.90625 116.035156 258.8125 115.917969 258.8125 C 115.800781 258.8125 115.707031 258.90625 115.707031 259.023438 C 115.707031 259.140625 115.800781 259.234375 115.917969 259.234375 C 116.035156 259.234375 116.128906 259.140625 116.128906 259.023438 Z M 116.128906 259.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.246094 263.378906 C 116.246094 263.261719 116.152344 263.167969 116.035156 263.167969 C 115.917969 263.167969 115.824219 263.261719 115.824219 263.378906 C 115.824219 263.496094 115.917969 263.589844 116.035156 263.589844 C 116.152344 263.589844 116.246094 263.496094 116.246094 263.378906 Z M 116.246094 263.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.554688 264.625 C 115.554688 264.507812 115.460938 264.414062 115.34375 264.414062 C 115.226562 264.414062 115.132812 264.507812 115.132812 264.625 C 115.132812 264.742188 115.226562 264.835938 115.34375 264.835938 C 115.460938 264.835938 115.554688 264.742188 115.554688 264.625 Z M 115.554688 264.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.3125 266.242188 C 115.3125 266.125 115.21875 266.03125 115.101562 266.03125 C 114.984375 266.03125 114.890625 266.125 114.890625 266.242188 C 114.890625 266.359375 114.984375 266.453125 115.101562 266.453125 C 115.21875 266.453125 115.3125 266.359375 115.3125 266.242188 Z M 115.3125 266.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.878906 264.5 C 114.878906 264.382812 114.785156 264.289062 114.667969 264.289062 C 114.550781 264.289062 114.457031 264.382812 114.457031 264.5 C 114.457031 264.617188 114.550781 264.710938 114.667969 264.710938 C 114.785156 264.710938 114.878906 264.617188 114.878906 264.5 Z M 114.878906 264.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.078125 262.894531 C 121.078125 262.777344 120.984375 262.683594 120.867188 262.683594 C 120.75 262.683594 120.65625 262.777344 120.65625 262.894531 C 120.65625 263.011719 120.75 263.105469 120.867188 263.105469 C 120.984375 263.105469 121.078125 263.011719 121.078125 262.894531 Z M 121.078125 262.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.054688 261.46875 C 120.054688 261.351562 119.960938 261.257812 119.84375 261.257812 C 119.726562 261.257812 119.632812 261.351562 119.632812 261.46875 C 119.632812 261.585938 119.726562 261.679688 119.84375 261.679688 C 119.960938 261.679688 120.054688 261.585938 120.054688 261.46875 Z M 120.054688 261.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.839844 259.011719 C 121.839844 258.894531 121.746094 258.800781 121.628906 258.800781 C 121.511719 258.800781 121.417969 258.894531 121.417969 259.011719 C 121.417969 259.128906 121.511719 259.222656 121.628906 259.222656 C 121.746094 259.222656 121.839844 259.128906 121.839844 259.011719 Z M 121.839844 259.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.523438 260.183594 C 122.523438 260.066406 122.429688 259.972656 122.3125 259.972656 C 122.195312 259.972656 122.101562 260.066406 122.101562 260.183594 C 122.101562 260.300781 122.195312 260.394531 122.3125 260.394531 C 122.429688 260.394531 122.523438 260.300781 122.523438 260.183594 Z M 122.523438 260.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.183594 261.144531 C 122.183594 261.027344 122.089844 260.933594 121.972656 260.933594 C 121.855469 260.933594 121.761719 261.027344 121.761719 261.144531 C 121.761719 261.261719 121.855469 261.355469 121.972656 261.355469 C 122.089844 261.355469 122.183594 261.261719 122.183594 261.144531 Z M 122.183594 261.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.503906 262.210938 C 123.503906 262.09375 123.410156 262 123.292969 262 C 123.175781 262 123.082031 262.09375 123.082031 262.210938 C 123.082031 262.328125 123.175781 262.421875 123.292969 262.421875 C 123.410156 262.421875 123.503906 262.328125 123.503906 262.210938 Z M 123.503906 262.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.976562 263.609375 C 121.976562 263.492188 121.882812 263.398438 121.765625 263.398438 C 121.648438 263.398438 121.554688 263.492188 121.554688 263.609375 C 121.554688 263.726562 121.648438 263.820312 121.765625 263.820312 C 121.882812 263.820312 121.976562 263.726562 121.976562 263.609375 Z M 121.976562 263.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.820312 264.066406 C 122.820312 263.949219 122.726562 263.855469 122.609375 263.855469 C 122.492188 263.855469 122.398438 263.949219 122.398438 264.066406 C 122.398438 264.183594 122.492188 264.277344 122.609375 264.277344 C 122.726562 264.277344 122.820312 264.183594 122.820312 264.066406 Z M 122.820312 264.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.523438 263.363281 C 122.523438 263.246094 122.429688 263.152344 122.3125 263.152344 C 122.195312 263.152344 122.101562 263.246094 122.101562 263.363281 C 122.101562 263.480469 122.195312 263.574219 122.3125 263.574219 C 122.429688 263.574219 122.523438 263.480469 122.523438 263.363281 Z M 122.523438 263.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.519531 261.617188 C 120.519531 261.5 120.425781 261.40625 120.308594 261.40625 C 120.191406 261.40625 120.097656 261.5 120.097656 261.617188 C 120.097656 261.734375 120.191406 261.828125 120.308594 261.828125 C 120.425781 261.828125 120.519531 261.734375 120.519531 261.617188 Z M 120.519531 261.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.578125 259.769531 C 122.578125 259.652344 122.484375 259.558594 122.367188 259.558594 C 122.25 259.558594 122.15625 259.652344 122.15625 259.769531 C 122.15625 259.886719 122.25 259.980469 122.367188 259.980469 C 122.484375 259.980469 122.578125 259.886719 122.578125 259.769531 Z M 122.578125 259.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.261719 261.960938 C 121.261719 261.84375 121.167969 261.75 121.050781 261.75 C 120.933594 261.75 120.839844 261.84375 120.839844 261.960938 C 120.839844 262.078125 120.933594 262.171875 121.050781 262.171875 C 121.167969 262.171875 121.261719 262.078125 121.261719 261.960938 Z M 121.261719 261.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.953125 262.390625 C 116.953125 262.273438 116.859375 262.179688 116.742188 262.179688 C 116.625 262.179688 116.53125 262.273438 116.53125 262.390625 C 116.53125 262.507812 116.625 262.601562 116.742188 262.601562 C 116.859375 262.601562 116.953125 262.507812 116.953125 262.390625 Z M 116.953125 262.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.535156 262.371094 C 118.535156 262.253906 118.441406 262.160156 118.324219 262.160156 C 118.207031 262.160156 118.113281 262.253906 118.113281 262.371094 C 118.113281 262.488281 118.207031 262.582031 118.324219 262.582031 C 118.441406 262.582031 118.535156 262.488281 118.535156 262.371094 Z M 118.535156 262.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.613281 265.203125 C 120.613281 265.085938 120.519531 264.992188 120.402344 264.992188 C 120.285156 264.992188 120.191406 265.085938 120.191406 265.203125 C 120.191406 265.320312 120.285156 265.414062 120.402344 265.414062 C 120.519531 265.414062 120.613281 265.320312 120.613281 265.203125 Z M 120.613281 265.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.464844 264.035156 C 121.464844 263.917969 121.371094 263.824219 121.253906 263.824219 C 121.136719 263.824219 121.042969 263.917969 121.042969 264.035156 C 121.042969 264.152344 121.136719 264.246094 121.253906 264.246094 C 121.371094 264.246094 121.464844 264.152344 121.464844 264.035156 Z M 121.464844 264.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.011719 259.25 C 122.011719 259.132812 121.917969 259.039062 121.800781 259.039062 C 121.683594 259.039062 121.589844 259.132812 121.589844 259.25 C 121.589844 259.367188 121.683594 259.460938 121.800781 259.460938 C 121.917969 259.460938 122.011719 259.367188 122.011719 259.25 Z M 122.011719 259.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.808594 258.316406 C 117.808594 258.199219 117.714844 258.105469 117.597656 258.105469 C 117.480469 258.105469 117.386719 258.199219 117.386719 258.316406 C 117.386719 258.433594 117.480469 258.527344 117.597656 258.527344 C 117.714844 258.527344 117.808594 258.433594 117.808594 258.316406 Z M 117.808594 258.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.914062 259.585938 C 117.914062 259.46875 117.820312 259.375 117.703125 259.375 C 117.585938 259.375 117.492188 259.46875 117.492188 259.585938 C 117.492188 259.703125 117.585938 259.796875 117.703125 259.796875 C 117.820312 259.796875 117.914062 259.703125 117.914062 259.585938 Z M 117.914062 259.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.519531 259.644531 C 119.519531 259.527344 119.425781 259.433594 119.308594 259.433594 C 119.191406 259.433594 119.097656 259.527344 119.097656 259.644531 C 119.097656 259.761719 119.191406 259.855469 119.308594 259.855469 C 119.425781 259.855469 119.519531 259.761719 119.519531 259.644531 Z M 119.519531 259.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.140625 258.585938 C 118.140625 258.46875 118.046875 258.375 117.929688 258.375 C 117.8125 258.375 117.71875 258.46875 117.71875 258.585938 C 117.71875 258.703125 117.8125 258.796875 117.929688 258.796875 C 118.046875 258.796875 118.140625 258.703125 118.140625 258.585938 Z M 118.140625 258.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.3125 256.371094 C 114.3125 256.253906 114.21875 256.160156 114.101562 256.160156 C 113.984375 256.160156 113.890625 256.253906 113.890625 256.371094 C 113.890625 256.488281 113.984375 256.582031 114.101562 256.582031 C 114.21875 256.582031 114.3125 256.488281 114.3125 256.371094 Z M 114.3125 256.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.828125 254.855469 C 115.828125 254.738281 115.734375 254.644531 115.617188 254.644531 C 115.5 254.644531 115.40625 254.738281 115.40625 254.855469 C 115.40625 254.972656 115.5 255.066406 115.617188 255.066406 C 115.734375 255.066406 115.828125 254.972656 115.828125 254.855469 Z M 115.828125 254.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.289062 255.234375 C 118.289062 255.117188 118.195312 255.023438 118.078125 255.023438 C 117.960938 255.023438 117.867188 255.117188 117.867188 255.234375 C 117.867188 255.351562 117.960938 255.445312 118.078125 255.445312 C 118.195312 255.445312 118.289062 255.351562 118.289062 255.234375 Z M 118.289062 255.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.113281 253.144531 C 118.113281 253.027344 118.019531 252.933594 117.902344 252.933594 C 117.785156 252.933594 117.691406 253.027344 117.691406 253.144531 C 117.691406 253.261719 117.785156 253.355469 117.902344 253.355469 C 118.019531 253.355469 118.113281 253.261719 118.113281 253.144531 Z M 118.113281 253.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.726562 254.417969 C 119.726562 254.300781 119.632812 254.207031 119.515625 254.207031 C 119.398438 254.207031 119.304688 254.300781 119.304688 254.417969 C 119.304688 254.535156 119.398438 254.628906 119.515625 254.628906 C 119.632812 254.628906 119.726562 254.535156 119.726562 254.417969 Z M 119.726562 254.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.136719 256.4375 C 123.136719 256.320312 123.042969 256.226562 122.925781 256.226562 C 122.808594 256.226562 122.714844 256.320312 122.714844 256.4375 C 122.714844 256.554688 122.808594 256.648438 122.925781 256.648438 C 123.042969 256.648438 123.136719 256.554688 123.136719 256.4375 Z M 123.136719 256.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.050781 256.335938 C 123.050781 256.21875 122.957031 256.125 122.839844 256.125 C 122.722656 256.125 122.628906 256.21875 122.628906 256.335938 C 122.628906 256.453125 122.722656 256.546875 122.839844 256.546875 C 122.957031 256.546875 123.050781 256.453125 123.050781 256.335938 Z M 123.050781 256.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.226562 255.375 C 120.226562 255.257812 120.132812 255.164062 120.015625 255.164062 C 119.898438 255.164062 119.804688 255.257812 119.804688 255.375 C 119.804688 255.492188 119.898438 255.585938 120.015625 255.585938 C 120.132812 255.585938 120.226562 255.492188 120.226562 255.375 Z M 120.226562 255.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.125 252.75 C 117.125 252.632812 117.03125 252.539062 116.914062 252.539062 C 116.796875 252.539062 116.703125 252.632812 116.703125 252.75 C 116.703125 252.867188 116.796875 252.960938 116.914062 252.960938 C 117.03125 252.960938 117.125 252.867188 117.125 252.75 Z M 117.125 252.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.554688 256.847656 C 117.554688 256.730469 117.460938 256.636719 117.34375 256.636719 C 117.226562 256.636719 117.132812 256.730469 117.132812 256.847656 C 117.132812 256.964844 117.226562 257.058594 117.34375 257.058594 C 117.460938 257.058594 117.554688 256.964844 117.554688 256.847656 Z M 117.554688 256.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.023438 257.105469 C 116.023438 256.988281 115.929688 256.894531 115.8125 256.894531 C 115.695312 256.894531 115.601562 256.988281 115.601562 257.105469 C 115.601562 257.222656 115.695312 257.316406 115.8125 257.316406 C 115.929688 257.316406 116.023438 257.222656 116.023438 257.105469 Z M 116.023438 257.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.25 258.914062 C 118.25 258.796875 118.15625 258.703125 118.039062 258.703125 C 117.921875 258.703125 117.828125 258.796875 117.828125 258.914062 C 117.828125 259.03125 117.921875 259.125 118.039062 259.125 C 118.15625 259.125 118.25 259.03125 118.25 258.914062 Z M 118.25 258.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.339844 257.222656 C 118.339844 257.105469 118.246094 257.011719 118.128906 257.011719 C 118.011719 257.011719 117.917969 257.105469 117.917969 257.222656 C 117.917969 257.339844 118.011719 257.433594 118.128906 257.433594 C 118.246094 257.433594 118.339844 257.339844 118.339844 257.222656 Z M 118.339844 257.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.339844 252.488281 C 116.339844 252.371094 116.246094 252.277344 116.128906 252.277344 C 116.011719 252.277344 115.917969 252.371094 115.917969 252.488281 C 115.917969 252.605469 116.011719 252.699219 116.128906 252.699219 C 116.246094 252.699219 116.339844 252.605469 116.339844 252.488281 Z M 116.339844 252.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.445312 253.210938 C 113.445312 253.09375 113.351562 253 113.234375 253 C 113.117188 253 113.023438 253.09375 113.023438 253.210938 C 113.023438 253.328125 113.117188 253.421875 113.234375 253.421875 C 113.351562 253.421875 113.445312 253.328125 113.445312 253.210938 Z M 113.445312 253.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.398438 251.136719 C 112.398438 251.019531 112.304688 250.925781 112.1875 250.925781 C 112.070312 250.925781 111.976562 251.019531 111.976562 251.136719 C 111.976562 251.253906 112.070312 251.347656 112.1875 251.347656 C 112.304688 251.347656 112.398438 251.253906 112.398438 251.136719 Z M 112.398438 251.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.871094 249.648438 C 111.871094 249.53125 111.777344 249.4375 111.660156 249.4375 C 111.542969 249.4375 111.449219 249.53125 111.449219 249.648438 C 111.449219 249.765625 111.542969 249.859375 111.660156 249.859375 C 111.777344 249.859375 111.871094 249.765625 111.871094 249.648438 Z M 111.871094 249.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.816406 246.082031 C 109.816406 245.964844 109.722656 245.871094 109.605469 245.871094 C 109.488281 245.871094 109.394531 245.964844 109.394531 246.082031 C 109.394531 246.199219 109.488281 246.292969 109.605469 246.292969 C 109.722656 246.292969 109.816406 246.199219 109.816406 246.082031 Z M 109.816406 246.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.503906 243.878906 C 110.503906 243.761719 110.410156 243.667969 110.292969 243.667969 C 110.175781 243.667969 110.082031 243.761719 110.082031 243.878906 C 110.082031 243.996094 110.175781 244.089844 110.292969 244.089844 C 110.410156 244.089844 110.503906 243.996094 110.503906 243.878906 Z M 110.503906 243.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.035156 244.441406 C 112.035156 244.324219 111.941406 244.230469 111.824219 244.230469 C 111.707031 244.230469 111.613281 244.324219 111.613281 244.441406 C 111.613281 244.558594 111.707031 244.652344 111.824219 244.652344 C 111.941406 244.652344 112.035156 244.558594 112.035156 244.441406 Z M 112.035156 244.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.195312 243.550781 C 110.195312 243.433594 110.101562 243.339844 109.984375 243.339844 C 109.867188 243.339844 109.773438 243.433594 109.773438 243.550781 C 109.773438 243.667969 109.867188 243.761719 109.984375 243.761719 C 110.101562 243.761719 110.195312 243.667969 110.195312 243.550781 Z M 110.195312 243.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.996094 242.496094 C 109.996094 242.378906 109.902344 242.285156 109.785156 242.285156 C 109.667969 242.285156 109.574219 242.378906 109.574219 242.496094 C 109.574219 242.613281 109.667969 242.707031 109.785156 242.707031 C 109.902344 242.707031 109.996094 242.613281 109.996094 242.496094 Z M 109.996094 242.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.515625 244.085938 C 112.515625 243.96875 112.421875 243.875 112.304688 243.875 C 112.1875 243.875 112.09375 243.96875 112.09375 244.085938 C 112.09375 244.203125 112.1875 244.296875 112.304688 244.296875 C 112.421875 244.296875 112.515625 244.203125 112.515625 244.085938 Z M 112.515625 244.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.003906 243.882812 C 113.003906 243.765625 112.910156 243.671875 112.792969 243.671875 C 112.675781 243.671875 112.582031 243.765625 112.582031 243.882812 C 112.582031 244 112.675781 244.09375 112.792969 244.09375 C 112.910156 244.09375 113.003906 244 113.003906 243.882812 Z M 113.003906 243.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.296875 244.191406 C 115.296875 244.074219 115.203125 243.980469 115.085938 243.980469 C 114.96875 243.980469 114.875 244.074219 114.875 244.191406 C 114.875 244.308594 114.96875 244.402344 115.085938 244.402344 C 115.203125 244.402344 115.296875 244.308594 115.296875 244.191406 Z M 115.296875 244.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.925781 245.738281 C 113.925781 245.621094 113.832031 245.527344 113.714844 245.527344 C 113.597656 245.527344 113.503906 245.621094 113.503906 245.738281 C 113.503906 245.855469 113.597656 245.949219 113.714844 245.949219 C 113.832031 245.949219 113.925781 245.855469 113.925781 245.738281 Z M 113.925781 245.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.742188 243.460938 C 114.742188 243.34375 114.648438 243.25 114.53125 243.25 C 114.414062 243.25 114.320312 243.34375 114.320312 243.460938 C 114.320312 243.578125 114.414062 243.671875 114.53125 243.671875 C 114.648438 243.671875 114.742188 243.578125 114.742188 243.460938 Z M 114.742188 243.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.015625 247.023438 C 116.015625 246.90625 115.921875 246.8125 115.804688 246.8125 C 115.6875 246.8125 115.59375 246.90625 115.59375 247.023438 C 115.59375 247.140625 115.6875 247.234375 115.804688 247.234375 C 115.921875 247.234375 116.015625 247.140625 116.015625 247.023438 Z M 116.015625 247.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.652344 246.375 C 115.652344 246.257812 115.558594 246.164062 115.441406 246.164062 C 115.324219 246.164062 115.230469 246.257812 115.230469 246.375 C 115.230469 246.492188 115.324219 246.585938 115.441406 246.585938 C 115.558594 246.585938 115.652344 246.492188 115.652344 246.375 Z M 115.652344 246.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.300781 248.644531 C 113.300781 248.527344 113.207031 248.433594 113.089844 248.433594 C 112.972656 248.433594 112.878906 248.527344 112.878906 248.644531 C 112.878906 248.761719 112.972656 248.855469 113.089844 248.855469 C 113.207031 248.855469 113.300781 248.761719 113.300781 248.644531 Z M 113.300781 248.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.488281 250.203125 C 112.488281 250.085938 112.394531 249.992188 112.277344 249.992188 C 112.160156 249.992188 112.066406 250.085938 112.066406 250.203125 C 112.066406 250.320312 112.160156 250.414062 112.277344 250.414062 C 112.394531 250.414062 112.488281 250.320312 112.488281 250.203125 Z M 112.488281 250.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.050781 249.882812 C 111.050781 249.765625 110.957031 249.671875 110.839844 249.671875 C 110.722656 249.671875 110.628906 249.765625 110.628906 249.882812 C 110.628906 250 110.722656 250.09375 110.839844 250.09375 C 110.957031 250.09375 111.050781 250 111.050781 249.882812 Z M 111.050781 249.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.171875 249.554688 C 108.171875 249.4375 108.078125 249.34375 107.960938 249.34375 C 107.84375 249.34375 107.75 249.4375 107.75 249.554688 C 107.75 249.671875 107.84375 249.765625 107.960938 249.765625 C 108.078125 249.765625 108.171875 249.671875 108.171875 249.554688 Z M 108.171875 249.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.886719 253.296875 C 104.886719 253.179688 104.792969 253.085938 104.675781 253.085938 C 104.558594 253.085938 104.464844 253.179688 104.464844 253.296875 C 104.464844 253.414062 104.558594 253.507812 104.675781 253.507812 C 104.792969 253.507812 104.886719 253.414062 104.886719 253.296875 Z M 104.886719 253.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 102.570312 255.328125 C 102.570312 255.210938 102.476562 255.117188 102.359375 255.117188 C 102.242188 255.117188 102.148438 255.210938 102.148438 255.328125 C 102.148438 255.445312 102.242188 255.539062 102.359375 255.539062 C 102.476562 255.539062 102.570312 255.445312 102.570312 255.328125 Z M 102.570312 255.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.675781 254.5 C 103.675781 254.382812 103.582031 254.289062 103.464844 254.289062 C 103.347656 254.289062 103.253906 254.382812 103.253906 254.5 C 103.253906 254.617188 103.347656 254.710938 103.464844 254.710938 C 103.582031 254.710938 103.675781 254.617188 103.675781 254.5 Z M 103.675781 254.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.851562 255.457031 C 103.851562 255.339844 103.757812 255.246094 103.640625 255.246094 C 103.523438 255.246094 103.429688 255.339844 103.429688 255.457031 C 103.429688 255.574219 103.523438 255.667969 103.640625 255.667969 C 103.757812 255.667969 103.851562 255.574219 103.851562 255.457031 Z M 103.851562 255.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.96875 257.050781 C 106.96875 256.933594 106.875 256.839844 106.757812 256.839844 C 106.640625 256.839844 106.546875 256.933594 106.546875 257.050781 C 106.546875 257.167969 106.640625 257.261719 106.757812 257.261719 C 106.875 257.261719 106.96875 257.167969 106.96875 257.050781 Z M 106.96875 257.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.832031 259.238281 C 105.832031 259.121094 105.738281 259.027344 105.621094 259.027344 C 105.503906 259.027344 105.410156 259.121094 105.410156 259.238281 C 105.410156 259.355469 105.503906 259.449219 105.621094 259.449219 C 105.738281 259.449219 105.832031 259.355469 105.832031 259.238281 Z M 105.832031 259.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.570312 258.3125 C 108.570312 258.195312 108.476562 258.101562 108.359375 258.101562 C 108.242188 258.101562 108.148438 258.195312 108.148438 258.3125 C 108.148438 258.429688 108.242188 258.523438 108.359375 258.523438 C 108.476562 258.523438 108.570312 258.429688 108.570312 258.3125 Z M 108.570312 258.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.535156 258.40625 C 107.535156 258.289062 107.441406 258.195312 107.324219 258.195312 C 107.207031 258.195312 107.113281 258.289062 107.113281 258.40625 C 107.113281 258.523438 107.207031 258.617188 107.324219 258.617188 C 107.441406 258.617188 107.535156 258.523438 107.535156 258.40625 Z M 107.535156 258.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.867188 259.382812 C 109.867188 259.265625 109.773438 259.171875 109.65625 259.171875 C 109.539062 259.171875 109.445312 259.265625 109.445312 259.382812 C 109.445312 259.5 109.539062 259.59375 109.65625 259.59375 C 109.773438 259.59375 109.867188 259.5 109.867188 259.382812 Z M 109.867188 259.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.34375 261 C 110.34375 260.882812 110.25 260.789062 110.132812 260.789062 C 110.015625 260.789062 109.921875 260.882812 109.921875 261 C 109.921875 261.117188 110.015625 261.210938 110.132812 261.210938 C 110.25 261.210938 110.34375 261.117188 110.34375 261 Z M 110.34375 261 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.8125 260.984375 C 108.8125 260.867188 108.71875 260.773438 108.601562 260.773438 C 108.484375 260.773438 108.390625 260.867188 108.390625 260.984375 C 108.390625 261.101562 108.484375 261.195312 108.601562 261.195312 C 108.71875 261.195312 108.8125 261.101562 108.8125 260.984375 Z M 108.8125 260.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.171875 258.296875 C 106.171875 258.179688 106.078125 258.085938 105.960938 258.085938 C 105.84375 258.085938 105.75 258.179688 105.75 258.296875 C 105.75 258.414062 105.84375 258.507812 105.960938 258.507812 C 106.078125 258.507812 106.171875 258.414062 106.171875 258.296875 Z M 106.171875 258.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.320312 257.058594 C 106.320312 256.941406 106.226562 256.847656 106.109375 256.847656 C 105.992188 256.847656 105.898438 256.941406 105.898438 257.058594 C 105.898438 257.175781 105.992188 257.269531 106.109375 257.269531 C 106.226562 257.269531 106.320312 257.175781 106.320312 257.058594 Z M 106.320312 257.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.457031 258.9375 C 106.457031 258.820312 106.363281 258.726562 106.246094 258.726562 C 106.128906 258.726562 106.035156 258.820312 106.035156 258.9375 C 106.035156 259.054688 106.128906 259.148438 106.246094 259.148438 C 106.363281 259.148438 106.457031 259.054688 106.457031 258.9375 Z M 106.457031 258.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.964844 258.191406 C 104.964844 258.074219 104.871094 257.980469 104.753906 257.980469 C 104.636719 257.980469 104.542969 258.074219 104.542969 258.191406 C 104.542969 258.308594 104.636719 258.402344 104.753906 258.402344 C 104.871094 258.402344 104.964844 258.308594 104.964844 258.191406 Z M 104.964844 258.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.050781 260.695312 C 107.050781 260.578125 106.957031 260.484375 106.839844 260.484375 C 106.722656 260.484375 106.628906 260.578125 106.628906 260.695312 C 106.628906 260.8125 106.722656 260.90625 106.839844 260.90625 C 106.957031 260.90625 107.050781 260.8125 107.050781 260.695312 Z M 107.050781 260.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.621094 262.695312 C 111.621094 262.578125 111.527344 262.484375 111.410156 262.484375 C 111.292969 262.484375 111.199219 262.578125 111.199219 262.695312 C 111.199219 262.8125 111.292969 262.90625 111.410156 262.90625 C 111.527344 262.90625 111.621094 262.8125 111.621094 262.695312 Z M 111.621094 262.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.554688 261.710938 C 111.554688 261.59375 111.460938 261.5 111.34375 261.5 C 111.226562 261.5 111.132812 261.59375 111.132812 261.710938 C 111.132812 261.828125 111.226562 261.921875 111.34375 261.921875 C 111.460938 261.921875 111.554688 261.828125 111.554688 261.710938 Z M 111.554688 261.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.042969 260.867188 C 113.042969 260.75 112.949219 260.65625 112.832031 260.65625 C 112.714844 260.65625 112.621094 260.75 112.621094 260.867188 C 112.621094 260.984375 112.714844 261.078125 112.832031 261.078125 C 112.949219 261.078125 113.042969 260.984375 113.042969 260.867188 Z M 113.042969 260.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.246094 259.070312 C 113.246094 258.953125 113.152344 258.859375 113.035156 258.859375 C 112.917969 258.859375 112.824219 258.953125 112.824219 259.070312 C 112.824219 259.1875 112.917969 259.28125 113.035156 259.28125 C 113.152344 259.28125 113.246094 259.1875 113.246094 259.070312 Z M 113.246094 259.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.109375 258.832031 C 115.109375 258.714844 115.015625 258.621094 114.898438 258.621094 C 114.78125 258.621094 114.6875 258.714844 114.6875 258.832031 C 114.6875 258.949219 114.78125 259.042969 114.898438 259.042969 C 115.015625 259.042969 115.109375 258.949219 115.109375 258.832031 Z M 115.109375 258.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.167969 257.082031 C 114.167969 256.964844 114.074219 256.871094 113.957031 256.871094 C 113.839844 256.871094 113.746094 256.964844 113.746094 257.082031 C 113.746094 257.199219 113.839844 257.292969 113.957031 257.292969 C 114.074219 257.292969 114.167969 257.199219 114.167969 257.082031 Z M 114.167969 257.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.726562 255.183594 C 112.726562 255.066406 112.632812 254.972656 112.515625 254.972656 C 112.398438 254.972656 112.304688 255.066406 112.304688 255.183594 C 112.304688 255.300781 112.398438 255.394531 112.515625 255.394531 C 112.632812 255.394531 112.726562 255.300781 112.726562 255.183594 Z M 112.726562 255.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.789062 256.207031 C 111.789062 256.089844 111.695312 255.996094 111.578125 255.996094 C 111.460938 255.996094 111.367188 256.089844 111.367188 256.207031 C 111.367188 256.324219 111.460938 256.417969 111.578125 256.417969 C 111.695312 256.417969 111.789062 256.324219 111.789062 256.207031 Z M 111.789062 256.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.605469 254.203125 C 112.605469 254.085938 112.511719 253.992188 112.394531 253.992188 C 112.277344 253.992188 112.183594 254.085938 112.183594 254.203125 C 112.183594 254.320312 112.277344 254.414062 112.394531 254.414062 C 112.511719 254.414062 112.605469 254.320312 112.605469 254.203125 Z M 112.605469 254.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.617188 250.859375 C 112.617188 250.742188 112.523438 250.648438 112.40625 250.648438 C 112.289062 250.648438 112.195312 250.742188 112.195312 250.859375 C 112.195312 250.976562 112.289062 251.070312 112.40625 251.070312 C 112.523438 251.070312 112.617188 250.976562 112.617188 250.859375 Z M 112.617188 250.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.074219 247.957031 C 116.074219 247.839844 115.980469 247.746094 115.863281 247.746094 C 115.746094 247.746094 115.652344 247.839844 115.652344 247.957031 C 115.652344 248.074219 115.746094 248.167969 115.863281 248.167969 C 115.980469 248.167969 116.074219 248.074219 116.074219 247.957031 Z M 116.074219 247.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.875 244.640625 C 119.875 244.523438 119.78125 244.429688 119.664062 244.429688 C 119.546875 244.429688 119.453125 244.523438 119.453125 244.640625 C 119.453125 244.757812 119.546875 244.851562 119.664062 244.851562 C 119.78125 244.851562 119.875 244.757812 119.875 244.640625 Z M 119.875 244.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.929688 244.6875 C 119.929688 244.570312 119.835938 244.476562 119.71875 244.476562 C 119.601562 244.476562 119.507812 244.570312 119.507812 244.6875 C 119.507812 244.804688 119.601562 244.898438 119.71875 244.898438 C 119.835938 244.898438 119.929688 244.804688 119.929688 244.6875 Z M 119.929688 244.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.578125 247.53125 C 118.578125 247.414062 118.484375 247.320312 118.367188 247.320312 C 118.25 247.320312 118.15625 247.414062 118.15625 247.53125 C 118.15625 247.648438 118.25 247.742188 118.367188 247.742188 C 118.484375 247.742188 118.578125 247.648438 118.578125 247.53125 Z M 118.578125 247.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.558594 249.128906 C 120.558594 249.011719 120.464844 248.917969 120.347656 248.917969 C 120.230469 248.917969 120.136719 249.011719 120.136719 249.128906 C 120.136719 249.246094 120.230469 249.339844 120.347656 249.339844 C 120.464844 249.339844 120.558594 249.246094 120.558594 249.128906 Z M 120.558594 249.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.101562 251.082031 C 120.101562 250.964844 120.007812 250.871094 119.890625 250.871094 C 119.773438 250.871094 119.679688 250.964844 119.679688 251.082031 C 119.679688 251.199219 119.773438 251.292969 119.890625 251.292969 C 120.007812 251.292969 120.101562 251.199219 120.101562 251.082031 Z M 120.101562 251.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.226562 250.578125 C 116.226562 250.460938 116.132812 250.367188 116.015625 250.367188 C 115.898438 250.367188 115.804688 250.460938 115.804688 250.578125 C 115.804688 250.695312 115.898438 250.789062 116.015625 250.789062 C 116.132812 250.789062 116.226562 250.695312 116.226562 250.578125 Z M 116.226562 250.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.265625 254.464844 C 113.265625 254.347656 113.171875 254.253906 113.054688 254.253906 C 112.9375 254.253906 112.84375 254.347656 112.84375 254.464844 C 112.84375 254.582031 112.9375 254.675781 113.054688 254.675781 C 113.171875 254.675781 113.265625 254.582031 113.265625 254.464844 Z M 113.265625 254.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.867188 256.582031 C 116.867188 256.464844 116.773438 256.371094 116.65625 256.371094 C 116.539062 256.371094 116.445312 256.464844 116.445312 256.582031 C 116.445312 256.699219 116.539062 256.792969 116.65625 256.792969 C 116.773438 256.792969 116.867188 256.699219 116.867188 256.582031 Z M 116.867188 256.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.132812 256.585938 C 119.132812 256.46875 119.039062 256.375 118.921875 256.375 C 118.804688 256.375 118.710938 256.46875 118.710938 256.585938 C 118.710938 256.703125 118.804688 256.796875 118.921875 256.796875 C 119.039062 256.796875 119.132812 256.703125 119.132812 256.585938 Z M 119.132812 256.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.074219 255.769531 C 122.074219 255.652344 121.980469 255.558594 121.863281 255.558594 C 121.746094 255.558594 121.652344 255.652344 121.652344 255.769531 C 121.652344 255.886719 121.746094 255.980469 121.863281 255.980469 C 121.980469 255.980469 122.074219 255.886719 122.074219 255.769531 Z M 122.074219 255.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.363281 254.363281 C 119.363281 254.246094 119.269531 254.152344 119.152344 254.152344 C 119.035156 254.152344 118.941406 254.246094 118.941406 254.363281 C 118.941406 254.480469 119.035156 254.574219 119.152344 254.574219 C 119.269531 254.574219 119.363281 254.480469 119.363281 254.363281 Z M 119.363281 254.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.144531 257.25 C 118.144531 257.132812 118.050781 257.039062 117.933594 257.039062 C 117.816406 257.039062 117.722656 257.132812 117.722656 257.25 C 117.722656 257.367188 117.816406 257.460938 117.933594 257.460938 C 118.050781 257.460938 118.144531 257.367188 118.144531 257.25 Z M 118.144531 257.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.824219 256.695312 C 119.824219 256.578125 119.730469 256.484375 119.613281 256.484375 C 119.496094 256.484375 119.402344 256.578125 119.402344 256.695312 C 119.402344 256.8125 119.496094 256.90625 119.613281 256.90625 C 119.730469 256.90625 119.824219 256.8125 119.824219 256.695312 Z M 119.824219 256.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.019531 256.859375 C 118.019531 256.742188 117.925781 256.648438 117.808594 256.648438 C 117.691406 256.648438 117.597656 256.742188 117.597656 256.859375 C 117.597656 256.976562 117.691406 257.070312 117.808594 257.070312 C 117.925781 257.070312 118.019531 256.976562 118.019531 256.859375 Z M 118.019531 256.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.800781 254.207031 C 114.800781 254.089844 114.707031 253.996094 114.589844 253.996094 C 114.472656 253.996094 114.378906 254.089844 114.378906 254.207031 C 114.378906 254.324219 114.472656 254.417969 114.589844 254.417969 C 114.707031 254.417969 114.800781 254.324219 114.800781 254.207031 Z M 114.800781 254.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.195312 253.203125 C 118.195312 253.085938 118.101562 252.992188 117.984375 252.992188 C 117.867188 252.992188 117.773438 253.085938 117.773438 253.203125 C 117.773438 253.320312 117.867188 253.414062 117.984375 253.414062 C 118.101562 253.414062 118.195312 253.320312 118.195312 253.203125 Z M 118.195312 253.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.074219 254.609375 C 118.074219 254.492188 117.980469 254.398438 117.863281 254.398438 C 117.746094 254.398438 117.652344 254.492188 117.652344 254.609375 C 117.652344 254.726562 117.746094 254.820312 117.863281 254.820312 C 117.980469 254.820312 118.074219 254.726562 118.074219 254.609375 Z M 118.074219 254.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.765625 257.414062 C 114.765625 257.296875 114.671875 257.203125 114.554688 257.203125 C 114.4375 257.203125 114.34375 257.296875 114.34375 257.414062 C 114.34375 257.53125 114.4375 257.625 114.554688 257.625 C 114.671875 257.625 114.765625 257.53125 114.765625 257.414062 Z M 114.765625 257.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.46875 261.019531 C 112.46875 260.902344 112.375 260.808594 112.257812 260.808594 C 112.140625 260.808594 112.046875 260.902344 112.046875 261.019531 C 112.046875 261.136719 112.140625 261.230469 112.257812 261.230469 C 112.375 261.230469 112.46875 261.136719 112.46875 261.019531 Z M 112.46875 261.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.707031 261.195312 C 113.707031 261.078125 113.613281 260.984375 113.496094 260.984375 C 113.378906 260.984375 113.285156 261.078125 113.285156 261.195312 C 113.285156 261.3125 113.378906 261.40625 113.496094 261.40625 C 113.613281 261.40625 113.707031 261.3125 113.707031 261.195312 Z M 113.707031 261.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.683594 260.796875 C 116.683594 260.679688 116.589844 260.585938 116.472656 260.585938 C 116.355469 260.585938 116.261719 260.679688 116.261719 260.796875 C 116.261719 260.914062 116.355469 261.007812 116.472656 261.007812 C 116.589844 261.007812 116.683594 260.914062 116.683594 260.796875 Z M 116.683594 260.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.683594 259.257812 C 116.683594 259.140625 116.589844 259.046875 116.472656 259.046875 C 116.355469 259.046875 116.261719 259.140625 116.261719 259.257812 C 116.261719 259.375 116.355469 259.46875 116.472656 259.46875 C 116.589844 259.46875 116.683594 259.375 116.683594 259.257812 Z M 116.683594 259.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.175781 259.390625 C 118.175781 259.273438 118.082031 259.179688 117.964844 259.179688 C 117.847656 259.179688 117.753906 259.273438 117.753906 259.390625 C 117.753906 259.507812 117.847656 259.601562 117.964844 259.601562 C 118.082031 259.601562 118.175781 259.507812 118.175781 259.390625 Z M 118.175781 259.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.539062 257.835938 C 119.539062 257.71875 119.445312 257.625 119.328125 257.625 C 119.210938 257.625 119.117188 257.71875 119.117188 257.835938 C 119.117188 257.953125 119.210938 258.046875 119.328125 258.046875 C 119.445312 258.046875 119.539062 257.953125 119.539062 257.835938 Z M 119.539062 257.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.1875 258.476562 C 118.1875 258.359375 118.09375 258.265625 117.976562 258.265625 C 117.859375 258.265625 117.765625 258.359375 117.765625 258.476562 C 117.765625 258.59375 117.859375 258.6875 117.976562 258.6875 C 118.09375 258.6875 118.1875 258.59375 118.1875 258.476562 Z M 118.1875 258.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.230469 260.738281 C 117.230469 260.621094 117.136719 260.527344 117.019531 260.527344 C 116.902344 260.527344 116.808594 260.621094 116.808594 260.738281 C 116.808594 260.855469 116.902344 260.949219 117.019531 260.949219 C 117.136719 260.949219 117.230469 260.855469 117.230469 260.738281 Z M 117.230469 260.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.289062 258.371094 C 118.289062 258.253906 118.195312 258.160156 118.078125 258.160156 C 117.960938 258.160156 117.867188 258.253906 117.867188 258.371094 C 117.867188 258.488281 117.960938 258.582031 118.078125 258.582031 C 118.195312 258.582031 118.289062 258.488281 118.289062 258.371094 Z M 118.289062 258.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.609375 256.484375 C 117.609375 256.367188 117.515625 256.273438 117.398438 256.273438 C 117.28125 256.273438 117.1875 256.367188 117.1875 256.484375 C 117.1875 256.601562 117.28125 256.695312 117.398438 256.695312 C 117.515625 256.695312 117.609375 256.601562 117.609375 256.484375 Z M 117.609375 256.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.277344 262.292969 C 118.277344 262.175781 118.183594 262.082031 118.066406 262.082031 C 117.949219 262.082031 117.855469 262.175781 117.855469 262.292969 C 117.855469 262.410156 117.949219 262.503906 118.066406 262.503906 C 118.183594 262.503906 118.277344 262.410156 118.277344 262.292969 Z M 118.277344 262.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.628906 263.378906 C 122.628906 263.261719 122.535156 263.167969 122.417969 263.167969 C 122.300781 263.167969 122.207031 263.261719 122.207031 263.378906 C 122.207031 263.496094 122.300781 263.589844 122.417969 263.589844 C 122.535156 263.589844 122.628906 263.496094 122.628906 263.378906 Z M 122.628906 263.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126.644531 263.597656 C 126.644531 263.480469 126.550781 263.386719 126.433594 263.386719 C 126.316406 263.386719 126.222656 263.480469 126.222656 263.597656 C 126.222656 263.714844 126.316406 263.808594 126.433594 263.808594 C 126.550781 263.808594 126.644531 263.714844 126.644531 263.597656 Z M 126.644531 263.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 127.191406 265.636719 C 127.191406 265.519531 127.097656 265.425781 126.980469 265.425781 C 126.863281 265.425781 126.769531 265.519531 126.769531 265.636719 C 126.769531 265.753906 126.863281 265.847656 126.980469 265.847656 C 127.097656 265.847656 127.191406 265.753906 127.191406 265.636719 Z M 127.191406 265.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126.351562 267.113281 C 126.351562 266.996094 126.257812 266.902344 126.140625 266.902344 C 126.023438 266.902344 125.929688 266.996094 125.929688 267.113281 C 125.929688 267.230469 126.023438 267.324219 126.140625 267.324219 C 126.257812 267.324219 126.351562 267.230469 126.351562 267.113281 Z M 126.351562 267.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.308594 266.761719 C 128.308594 266.644531 128.214844 266.550781 128.097656 266.550781 C 127.980469 266.550781 127.886719 266.644531 127.886719 266.761719 C 127.886719 266.878906 127.980469 266.972656 128.097656 266.972656 C 128.214844 266.972656 128.308594 266.878906 128.308594 266.761719 Z M 128.308594 266.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126.613281 264.015625 C 126.613281 263.898438 126.519531 263.804688 126.402344 263.804688 C 126.285156 263.804688 126.191406 263.898438 126.191406 264.015625 C 126.191406 264.132812 126.285156 264.226562 126.402344 264.226562 C 126.519531 264.226562 126.613281 264.132812 126.613281 264.015625 Z M 126.613281 264.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.109375 261.210938 C 124.109375 261.09375 124.015625 261 123.898438 261 C 123.78125 261 123.6875 261.09375 123.6875 261.210938 C 123.6875 261.328125 123.78125 261.421875 123.898438 261.421875 C 124.015625 261.421875 124.109375 261.328125 124.109375 261.210938 Z M 124.109375 261.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.632812 259.355469 C 125.632812 259.238281 125.539062 259.144531 125.421875 259.144531 C 125.304688 259.144531 125.210938 259.238281 125.210938 259.355469 C 125.210938 259.472656 125.304688 259.566406 125.421875 259.566406 C 125.539062 259.566406 125.632812 259.472656 125.632812 259.355469 Z M 125.632812 259.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.324219 258.804688 C 125.324219 258.6875 125.230469 258.59375 125.113281 258.59375 C 124.996094 258.59375 124.902344 258.6875 124.902344 258.804688 C 124.902344 258.921875 124.996094 259.015625 125.113281 259.015625 C 125.230469 259.015625 125.324219 258.921875 125.324219 258.804688 Z M 125.324219 258.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.390625 253.886719 C 124.390625 253.769531 124.296875 253.675781 124.179688 253.675781 C 124.0625 253.675781 123.96875 253.769531 123.96875 253.886719 C 123.96875 254.003906 124.0625 254.097656 124.179688 254.097656 C 124.296875 254.097656 124.390625 254.003906 124.390625 253.886719 Z M 124.390625 253.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.265625 255.339844 C 123.265625 255.222656 123.171875 255.128906 123.054688 255.128906 C 122.9375 255.128906 122.84375 255.222656 122.84375 255.339844 C 122.84375 255.457031 122.9375 255.550781 123.054688 255.550781 C 123.171875 255.550781 123.265625 255.457031 123.265625 255.339844 Z M 123.265625 255.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.464844 255.0625 C 120.464844 254.945312 120.371094 254.851562 120.253906 254.851562 C 120.136719 254.851562 120.042969 254.945312 120.042969 255.0625 C 120.042969 255.179688 120.136719 255.273438 120.253906 255.273438 C 120.371094 255.273438 120.464844 255.179688 120.464844 255.0625 Z M 120.464844 255.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.050781 255.125 C 121.050781 255.007812 120.957031 254.914062 120.839844 254.914062 C 120.722656 254.914062 120.628906 255.007812 120.628906 255.125 C 120.628906 255.242188 120.722656 255.335938 120.839844 255.335938 C 120.957031 255.335938 121.050781 255.242188 121.050781 255.125 Z M 121.050781 255.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.886719 256.945312 C 118.886719 256.828125 118.792969 256.734375 118.675781 256.734375 C 118.558594 256.734375 118.464844 256.828125 118.464844 256.945312 C 118.464844 257.0625 118.558594 257.15625 118.675781 257.15625 C 118.792969 257.15625 118.886719 257.0625 118.886719 256.945312 Z M 118.886719 256.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.53125 258.375 C 120.53125 258.257812 120.4375 258.164062 120.320312 258.164062 C 120.203125 258.164062 120.109375 258.257812 120.109375 258.375 C 120.109375 258.492188 120.203125 258.585938 120.320312 258.585938 C 120.4375 258.585938 120.53125 258.492188 120.53125 258.375 Z M 120.53125 258.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.171875 256.132812 C 118.171875 256.015625 118.078125 255.921875 117.960938 255.921875 C 117.84375 255.921875 117.75 256.015625 117.75 256.132812 C 117.75 256.25 117.84375 256.34375 117.960938 256.34375 C 118.078125 256.34375 118.171875 256.25 118.171875 256.132812 Z M 118.171875 256.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.285156 256.511719 C 118.285156 256.394531 118.191406 256.300781 118.074219 256.300781 C 117.957031 256.300781 117.863281 256.394531 117.863281 256.511719 C 117.863281 256.628906 117.957031 256.722656 118.074219 256.722656 C 118.191406 256.722656 118.285156 256.628906 118.285156 256.511719 Z M 118.285156 256.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.234375 253.261719 C 116.234375 253.144531 116.140625 253.050781 116.023438 253.050781 C 115.90625 253.050781 115.8125 253.144531 115.8125 253.261719 C 115.8125 253.378906 115.90625 253.472656 116.023438 253.472656 C 116.140625 253.472656 116.234375 253.378906 116.234375 253.261719 Z M 116.234375 253.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.417969 253.894531 C 113.417969 253.777344 113.324219 253.683594 113.207031 253.683594 C 113.089844 253.683594 112.996094 253.777344 112.996094 253.894531 C 112.996094 254.011719 113.089844 254.105469 113.207031 254.105469 C 113.324219 254.105469 113.417969 254.011719 113.417969 253.894531 Z M 113.417969 253.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.550781 254.117188 C 111.550781 254 111.457031 253.90625 111.339844 253.90625 C 111.222656 253.90625 111.128906 254 111.128906 254.117188 C 111.128906 254.234375 111.222656 254.328125 111.339844 254.328125 C 111.457031 254.328125 111.550781 254.234375 111.550781 254.117188 Z M 111.550781 254.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.761719 252.589844 C 109.761719 252.472656 109.667969 252.378906 109.550781 252.378906 C 109.433594 252.378906 109.339844 252.472656 109.339844 252.589844 C 109.339844 252.707031 109.433594 252.800781 109.550781 252.800781 C 109.667969 252.800781 109.761719 252.707031 109.761719 252.589844 Z M 109.761719 252.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.414062 253.539062 C 107.414062 253.421875 107.320312 253.328125 107.203125 253.328125 C 107.085938 253.328125 106.992188 253.421875 106.992188 253.539062 C 106.992188 253.65625 107.085938 253.75 107.203125 253.75 C 107.320312 253.75 107.414062 253.65625 107.414062 253.539062 Z M 107.414062 253.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.152344 251.417969 C 105.152344 251.300781 105.058594 251.207031 104.941406 251.207031 C 104.824219 251.207031 104.730469 251.300781 104.730469 251.417969 C 104.730469 251.535156 104.824219 251.628906 104.941406 251.628906 C 105.058594 251.628906 105.152344 251.535156 105.152344 251.417969 Z M 105.152344 251.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.191406 251.109375 C 103.191406 250.992188 103.097656 250.898438 102.980469 250.898438 C 102.863281 250.898438 102.769531 250.992188 102.769531 251.109375 C 102.769531 251.226562 102.863281 251.320312 102.980469 251.320312 C 103.097656 251.320312 103.191406 251.226562 103.191406 251.109375 Z M 103.191406 251.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.292969 254.121094 C 107.292969 254.003906 107.199219 253.910156 107.082031 253.910156 C 106.964844 253.910156 106.871094 254.003906 106.871094 254.121094 C 106.871094 254.238281 106.964844 254.332031 107.082031 254.332031 C 107.199219 254.332031 107.292969 254.238281 107.292969 254.121094 Z M 107.292969 254.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.03125 254.144531 C 108.03125 254.027344 107.9375 253.933594 107.820312 253.933594 C 107.703125 253.933594 107.609375 254.027344 107.609375 254.144531 C 107.609375 254.261719 107.703125 254.355469 107.820312 254.355469 C 107.9375 254.355469 108.03125 254.261719 108.03125 254.144531 Z M 108.03125 254.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.492188 255.347656 C 106.492188 255.230469 106.398438 255.136719 106.28125 255.136719 C 106.164062 255.136719 106.070312 255.230469 106.070312 255.347656 C 106.070312 255.464844 106.164062 255.558594 106.28125 255.558594 C 106.398438 255.558594 106.492188 255.464844 106.492188 255.347656 Z M 106.492188 255.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.847656 253.523438 C 107.847656 253.40625 107.753906 253.3125 107.636719 253.3125 C 107.519531 253.3125 107.425781 253.40625 107.425781 253.523438 C 107.425781 253.640625 107.519531 253.734375 107.636719 253.734375 C 107.753906 253.734375 107.847656 253.640625 107.847656 253.523438 Z M 107.847656 253.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.648438 254.703125 C 107.648438 254.585938 107.554688 254.492188 107.4375 254.492188 C 107.320312 254.492188 107.226562 254.585938 107.226562 254.703125 C 107.226562 254.820312 107.320312 254.914062 107.4375 254.914062 C 107.554688 254.914062 107.648438 254.820312 107.648438 254.703125 Z M 107.648438 254.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.828125 258.835938 C 106.828125 258.71875 106.734375 258.625 106.617188 258.625 C 106.5 258.625 106.40625 258.71875 106.40625 258.835938 C 106.40625 258.953125 106.5 259.046875 106.617188 259.046875 C 106.734375 259.046875 106.828125 258.953125 106.828125 258.835938 Z M 106.828125 258.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.726562 258.082031 C 104.726562 257.964844 104.632812 257.871094 104.515625 257.871094 C 104.398438 257.871094 104.304688 257.964844 104.304688 258.082031 C 104.304688 258.199219 104.398438 258.292969 104.515625 258.292969 C 104.632812 258.292969 104.726562 258.199219 104.726562 258.082031 Z M 104.726562 258.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.441406 257.964844 C 100.441406 257.847656 100.347656 257.753906 100.230469 257.753906 C 100.113281 257.753906 100.019531 257.847656 100.019531 257.964844 C 100.019531 258.082031 100.113281 258.175781 100.230469 258.175781 C 100.347656 258.175781 100.441406 258.082031 100.441406 257.964844 Z M 100.441406 257.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.511719 257.054688 C 96.511719 256.9375 96.417969 256.84375 96.300781 256.84375 C 96.183594 256.84375 96.089844 256.9375 96.089844 257.054688 C 96.089844 257.171875 96.183594 257.265625 96.300781 257.265625 C 96.417969 257.265625 96.511719 257.171875 96.511719 257.054688 Z M 96.511719 257.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.183594 259.921875 C 94.183594 259.804688 94.089844 259.710938 93.972656 259.710938 C 93.855469 259.710938 93.761719 259.804688 93.761719 259.921875 C 93.761719 260.039062 93.855469 260.132812 93.972656 260.132812 C 94.089844 260.132812 94.183594 260.039062 94.183594 259.921875 Z M 94.183594 259.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.703125 261.324219 C 97.703125 261.207031 97.609375 261.113281 97.492188 261.113281 C 97.375 261.113281 97.28125 261.207031 97.28125 261.324219 C 97.28125 261.441406 97.375 261.535156 97.492188 261.535156 C 97.609375 261.535156 97.703125 261.441406 97.703125 261.324219 Z M 97.703125 261.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.886719 261.21875 C 97.886719 261.101562 97.792969 261.007812 97.675781 261.007812 C 97.558594 261.007812 97.464844 261.101562 97.464844 261.21875 C 97.464844 261.335938 97.558594 261.429688 97.675781 261.429688 C 97.792969 261.429688 97.886719 261.335938 97.886719 261.21875 Z M 97.886719 261.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.839844 262.03125 C 99.839844 261.914062 99.746094 261.820312 99.628906 261.820312 C 99.511719 261.820312 99.417969 261.914062 99.417969 262.03125 C 99.417969 262.148438 99.511719 262.242188 99.628906 262.242188 C 99.746094 262.242188 99.839844 262.148438 99.839844 262.03125 Z M 99.839844 262.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.441406 260.65625 C 99.441406 260.539062 99.347656 260.445312 99.230469 260.445312 C 99.113281 260.445312 99.019531 260.539062 99.019531 260.65625 C 99.019531 260.773438 99.113281 260.867188 99.230469 260.867188 C 99.347656 260.867188 99.441406 260.773438 99.441406 260.65625 Z M 99.441406 260.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.269531 259.574219 C 95.269531 259.457031 95.175781 259.363281 95.058594 259.363281 C 94.941406 259.363281 94.847656 259.457031 94.847656 259.574219 C 94.847656 259.691406 94.941406 259.785156 95.058594 259.785156 C 95.175781 259.785156 95.269531 259.691406 95.269531 259.574219 Z M 95.269531 259.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.167969 261.527344 C 96.167969 261.410156 96.074219 261.316406 95.957031 261.316406 C 95.839844 261.316406 95.746094 261.410156 95.746094 261.527344 C 95.746094 261.644531 95.839844 261.738281 95.957031 261.738281 C 96.074219 261.738281 96.167969 261.644531 96.167969 261.527344 Z M 96.167969 261.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.382812 261.097656 C 96.382812 260.980469 96.289062 260.886719 96.171875 260.886719 C 96.054688 260.886719 95.960938 260.980469 95.960938 261.097656 C 95.960938 261.214844 96.054688 261.308594 96.171875 261.308594 C 96.289062 261.308594 96.382812 261.214844 96.382812 261.097656 Z M 96.382812 261.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.28125 259.023438 C 96.28125 258.90625 96.1875 258.8125 96.070312 258.8125 C 95.953125 258.8125 95.859375 258.90625 95.859375 259.023438 C 95.859375 259.140625 95.953125 259.234375 96.070312 259.234375 C 96.1875 259.234375 96.28125 259.140625 96.28125 259.023438 Z M 96.28125 259.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.761719 260.539062 C 93.761719 260.421875 93.667969 260.328125 93.550781 260.328125 C 93.433594 260.328125 93.339844 260.421875 93.339844 260.539062 C 93.339844 260.65625 93.433594 260.75 93.550781 260.75 C 93.667969 260.75 93.761719 260.65625 93.761719 260.539062 Z M 93.761719 260.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.496094 258.363281 C 91.496094 258.246094 91.402344 258.152344 91.285156 258.152344 C 91.167969 258.152344 91.074219 258.246094 91.074219 258.363281 C 91.074219 258.480469 91.167969 258.574219 91.285156 258.574219 C 91.402344 258.574219 91.496094 258.480469 91.496094 258.363281 Z M 91.496094 258.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.425781 256.75 C 89.425781 256.632812 89.332031 256.539062 89.214844 256.539062 C 89.097656 256.539062 89.003906 256.632812 89.003906 256.75 C 89.003906 256.867188 89.097656 256.960938 89.214844 256.960938 C 89.332031 256.960938 89.425781 256.867188 89.425781 256.75 Z M 89.425781 256.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.410156 257.40625 C 87.410156 257.289062 87.316406 257.195312 87.199219 257.195312 C 87.082031 257.195312 86.988281 257.289062 86.988281 257.40625 C 86.988281 257.523438 87.082031 257.617188 87.199219 257.617188 C 87.316406 257.617188 87.410156 257.523438 87.410156 257.40625 Z M 87.410156 257.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.511719 255.597656 C 86.511719 255.480469 86.417969 255.386719 86.300781 255.386719 C 86.183594 255.386719 86.089844 255.480469 86.089844 255.597656 C 86.089844 255.714844 86.183594 255.808594 86.300781 255.808594 C 86.417969 255.808594 86.511719 255.714844 86.511719 255.597656 Z M 86.511719 255.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.671875 255.980469 C 83.671875 255.863281 83.578125 255.769531 83.460938 255.769531 C 83.34375 255.769531 83.25 255.863281 83.25 255.980469 C 83.25 256.097656 83.34375 256.191406 83.460938 256.191406 C 83.578125 256.191406 83.671875 256.097656 83.671875 255.980469 Z M 83.671875 255.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.289062 253.632812 C 83.289062 253.515625 83.195312 253.421875 83.078125 253.421875 C 82.960938 253.421875 82.867188 253.515625 82.867188 253.632812 C 82.867188 253.75 82.960938 253.84375 83.078125 253.84375 C 83.195312 253.84375 83.289062 253.75 83.289062 253.632812 Z M 83.289062 253.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.050781 252.234375 C 83.050781 252.117188 82.957031 252.023438 82.839844 252.023438 C 82.722656 252.023438 82.628906 252.117188 82.628906 252.234375 C 82.628906 252.351562 82.722656 252.445312 82.839844 252.445312 C 82.957031 252.445312 83.050781 252.351562 83.050781 252.234375 Z M 83.050781 252.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.660156 249.679688 C 84.660156 249.5625 84.566406 249.46875 84.449219 249.46875 C 84.332031 249.46875 84.238281 249.5625 84.238281 249.679688 C 84.238281 249.796875 84.332031 249.890625 84.449219 249.890625 C 84.566406 249.890625 84.660156 249.796875 84.660156 249.679688 Z M 84.660156 249.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.109375 245.941406 C 85.109375 245.824219 85.015625 245.730469 84.898438 245.730469 C 84.78125 245.730469 84.6875 245.824219 84.6875 245.941406 C 84.6875 246.058594 84.78125 246.152344 84.898438 246.152344 C 85.015625 246.152344 85.109375 246.058594 85.109375 245.941406 Z M 85.109375 245.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.683594 243.414062 C 84.683594 243.296875 84.589844 243.203125 84.472656 243.203125 C 84.355469 243.203125 84.261719 243.296875 84.261719 243.414062 C 84.261719 243.53125 84.355469 243.625 84.472656 243.625 C 84.589844 243.625 84.683594 243.53125 84.683594 243.414062 Z M 84.683594 243.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.523438 247.074219 C 83.523438 246.957031 83.429688 246.863281 83.3125 246.863281 C 83.195312 246.863281 83.101562 246.957031 83.101562 247.074219 C 83.101562 247.191406 83.195312 247.285156 83.3125 247.285156 C 83.429688 247.285156 83.523438 247.191406 83.523438 247.074219 Z M 83.523438 247.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.535156 242.617188 C 82.535156 242.5 82.441406 242.40625 82.324219 242.40625 C 82.207031 242.40625 82.113281 242.5 82.113281 242.617188 C 82.113281 242.734375 82.207031 242.828125 82.324219 242.828125 C 82.441406 242.828125 82.535156 242.734375 82.535156 242.617188 Z M 82.535156 242.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.542969 244.441406 C 81.542969 244.324219 81.449219 244.230469 81.332031 244.230469 C 81.214844 244.230469 81.121094 244.324219 81.121094 244.441406 C 81.121094 244.558594 81.214844 244.652344 81.332031 244.652344 C 81.449219 244.652344 81.542969 244.558594 81.542969 244.441406 Z M 81.542969 244.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.359375 248.691406 C 83.359375 248.574219 83.265625 248.480469 83.148438 248.480469 C 83.03125 248.480469 82.9375 248.574219 82.9375 248.691406 C 82.9375 248.808594 83.03125 248.902344 83.148438 248.902344 C 83.265625 248.902344 83.359375 248.808594 83.359375 248.691406 Z M 83.359375 248.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.359375 243.664062 C 83.359375 243.546875 83.265625 243.453125 83.148438 243.453125 C 83.03125 243.453125 82.9375 243.546875 82.9375 243.664062 C 82.9375 243.78125 83.03125 243.875 83.148438 243.875 C 83.265625 243.875 83.359375 243.78125 83.359375 243.664062 Z M 83.359375 243.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.414062 244.546875 C 83.414062 244.429688 83.320312 244.335938 83.203125 244.335938 C 83.085938 244.335938 82.992188 244.429688 82.992188 244.546875 C 82.992188 244.664062 83.085938 244.757812 83.203125 244.757812 C 83.320312 244.757812 83.414062 244.664062 83.414062 244.546875 Z M 83.414062 244.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.230469 245.472656 C 81.230469 245.355469 81.136719 245.261719 81.019531 245.261719 C 80.902344 245.261719 80.808594 245.355469 80.808594 245.472656 C 80.808594 245.589844 80.902344 245.683594 81.019531 245.683594 C 81.136719 245.683594 81.230469 245.589844 81.230469 245.472656 Z M 81.230469 245.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.136719 243.199219 C 80.136719 243.082031 80.042969 242.988281 79.925781 242.988281 C 79.808594 242.988281 79.714844 243.082031 79.714844 243.199219 C 79.714844 243.316406 79.808594 243.410156 79.925781 243.410156 C 80.042969 243.410156 80.136719 243.316406 80.136719 243.199219 Z M 80.136719 243.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.636719 246.058594 C 80.636719 245.941406 80.542969 245.847656 80.425781 245.847656 C 80.308594 245.847656 80.214844 245.941406 80.214844 246.058594 C 80.214844 246.175781 80.308594 246.269531 80.425781 246.269531 C 80.542969 246.269531 80.636719 246.175781 80.636719 246.058594 Z M 80.636719 246.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.085938 245 C 84.085938 244.882812 83.992188 244.789062 83.875 244.789062 C 83.757812 244.789062 83.664062 244.882812 83.664062 245 C 83.664062 245.117188 83.757812 245.210938 83.875 245.210938 C 83.992188 245.210938 84.085938 245.117188 84.085938 245 Z M 84.085938 245 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.640625 247.195312 C 82.640625 247.078125 82.546875 246.984375 82.429688 246.984375 C 82.3125 246.984375 82.21875 247.078125 82.21875 247.195312 C 82.21875 247.3125 82.3125 247.40625 82.429688 247.40625 C 82.546875 247.40625 82.640625 247.3125 82.640625 247.195312 Z M 82.640625 247.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.167969 245.824219 C 83.167969 245.707031 83.074219 245.613281 82.957031 245.613281 C 82.839844 245.613281 82.746094 245.707031 82.746094 245.824219 C 82.746094 245.941406 82.839844 246.035156 82.957031 246.035156 C 83.074219 246.035156 83.167969 245.941406 83.167969 245.824219 Z M 83.167969 245.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.773438 245.792969 C 86.773438 245.675781 86.679688 245.582031 86.5625 245.582031 C 86.445312 245.582031 86.351562 245.675781 86.351562 245.792969 C 86.351562 245.910156 86.445312 246.003906 86.5625 246.003906 C 86.679688 246.003906 86.773438 245.910156 86.773438 245.792969 Z M 86.773438 245.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.164062 245.171875 C 86.164062 245.054688 86.070312 244.960938 85.953125 244.960938 C 85.835938 244.960938 85.742188 245.054688 85.742188 245.171875 C 85.742188 245.289062 85.835938 245.382812 85.953125 245.382812 C 86.070312 245.382812 86.164062 245.289062 86.164062 245.171875 Z M 86.164062 245.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.804688 244.953125 C 80.804688 244.835938 80.710938 244.742188 80.59375 244.742188 C 80.476562 244.742188 80.382812 244.835938 80.382812 244.953125 C 80.382812 245.070312 80.476562 245.164062 80.59375 245.164062 C 80.710938 245.164062 80.804688 245.070312 80.804688 244.953125 Z M 80.804688 244.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.695312 247.042969 C 83.695312 246.925781 83.601562 246.832031 83.484375 246.832031 C 83.367188 246.832031 83.273438 246.925781 83.273438 247.042969 C 83.273438 247.160156 83.367188 247.253906 83.484375 247.253906 C 83.601562 247.253906 83.695312 247.160156 83.695312 247.042969 Z M 83.695312 247.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.742188 248.125 C 82.742188 248.007812 82.648438 247.914062 82.53125 247.914062 C 82.414062 247.914062 82.320312 248.007812 82.320312 248.125 C 82.320312 248.242188 82.414062 248.335938 82.53125 248.335938 C 82.648438 248.335938 82.742188 248.242188 82.742188 248.125 Z M 82.742188 248.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.070312 246.621094 C 82.070312 246.503906 81.976562 246.410156 81.859375 246.410156 C 81.742188 246.410156 81.648438 246.503906 81.648438 246.621094 C 81.648438 246.738281 81.742188 246.832031 81.859375 246.832031 C 81.976562 246.832031 82.070312 246.738281 82.070312 246.621094 Z M 82.070312 246.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 78.742188 244.625 C 78.742188 244.507812 78.648438 244.414062 78.53125 244.414062 C 78.414062 244.414062 78.320312 244.507812 78.320312 244.625 C 78.320312 244.742188 78.414062 244.835938 78.53125 244.835938 C 78.648438 244.835938 78.742188 244.742188 78.742188 244.625 Z M 78.742188 244.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.042969 244.472656 C 80.042969 244.355469 79.949219 244.261719 79.832031 244.261719 C 79.714844 244.261719 79.621094 244.355469 79.621094 244.472656 C 79.621094 244.589844 79.714844 244.683594 79.832031 244.683594 C 79.949219 244.683594 80.042969 244.589844 80.042969 244.472656 Z M 80.042969 244.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.804688 241.90625 C 80.804688 241.789062 80.710938 241.695312 80.59375 241.695312 C 80.476562 241.695312 80.382812 241.789062 80.382812 241.90625 C 80.382812 242.023438 80.476562 242.117188 80.59375 242.117188 C 80.710938 242.117188 80.804688 242.023438 80.804688 241.90625 Z M 80.804688 241.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.816406 243.472656 C 80.816406 243.355469 80.722656 243.261719 80.605469 243.261719 C 80.488281 243.261719 80.394531 243.355469 80.394531 243.472656 C 80.394531 243.589844 80.488281 243.683594 80.605469 243.683594 C 80.722656 243.683594 80.816406 243.589844 80.816406 243.472656 Z M 80.816406 243.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.125 239.144531 C 83.125 239.027344 83.03125 238.933594 82.914062 238.933594 C 82.796875 238.933594 82.703125 239.027344 82.703125 239.144531 C 82.703125 239.261719 82.796875 239.355469 82.914062 239.355469 C 83.03125 239.355469 83.125 239.261719 83.125 239.144531 Z M 83.125 239.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.625 242.710938 C 79.625 242.59375 79.53125 242.5 79.414062 242.5 C 79.296875 242.5 79.203125 242.59375 79.203125 242.710938 C 79.203125 242.828125 79.296875 242.921875 79.414062 242.921875 C 79.53125 242.921875 79.625 242.828125 79.625 242.710938 Z M 79.625 242.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.25 242.9375 C 80.25 242.820312 80.15625 242.726562 80.039062 242.726562 C 79.921875 242.726562 79.828125 242.820312 79.828125 242.9375 C 79.828125 243.054688 79.921875 243.148438 80.039062 243.148438 C 80.15625 243.148438 80.25 243.054688 80.25 242.9375 Z M 80.25 242.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.414062 241.375 C 82.414062 241.257812 82.320312 241.164062 82.203125 241.164062 C 82.085938 241.164062 81.992188 241.257812 81.992188 241.375 C 81.992188 241.492188 82.085938 241.585938 82.203125 241.585938 C 82.320312 241.585938 82.414062 241.492188 82.414062 241.375 Z M 82.414062 241.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.0625 241.25 C 84.0625 241.132812 83.96875 241.039062 83.851562 241.039062 C 83.734375 241.039062 83.640625 241.132812 83.640625 241.25 C 83.640625 241.367188 83.734375 241.460938 83.851562 241.460938 C 83.96875 241.460938 84.0625 241.367188 84.0625 241.25 Z M 84.0625 241.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.433594 242.085938 C 84.433594 241.96875 84.339844 241.875 84.222656 241.875 C 84.105469 241.875 84.011719 241.96875 84.011719 242.085938 C 84.011719 242.203125 84.105469 242.296875 84.222656 242.296875 C 84.339844 242.296875 84.433594 242.203125 84.433594 242.085938 Z M 84.433594 242.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.332031 241.980469 C 87.332031 241.863281 87.238281 241.769531 87.121094 241.769531 C 87.003906 241.769531 86.910156 241.863281 86.910156 241.980469 C 86.910156 242.097656 87.003906 242.191406 87.121094 242.191406 C 87.238281 242.191406 87.332031 242.097656 87.332031 241.980469 Z M 87.332031 241.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.21875 239.386719 C 87.21875 239.269531 87.125 239.175781 87.007812 239.175781 C 86.890625 239.175781 86.796875 239.269531 86.796875 239.386719 C 86.796875 239.503906 86.890625 239.597656 87.007812 239.597656 C 87.125 239.597656 87.21875 239.503906 87.21875 239.386719 Z M 87.21875 239.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.183594 242.121094 C 86.183594 242.003906 86.089844 241.910156 85.972656 241.910156 C 85.855469 241.910156 85.761719 242.003906 85.761719 242.121094 C 85.761719 242.238281 85.855469 242.332031 85.972656 242.332031 C 86.089844 242.332031 86.183594 242.238281 86.183594 242.121094 Z M 86.183594 242.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.351562 240.261719 C 84.351562 240.144531 84.257812 240.050781 84.140625 240.050781 C 84.023438 240.050781 83.929688 240.144531 83.929688 240.261719 C 83.929688 240.378906 84.023438 240.472656 84.140625 240.472656 C 84.257812 240.472656 84.351562 240.378906 84.351562 240.261719 Z M 84.351562 240.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.257812 238.554688 C 82.257812 238.4375 82.164062 238.34375 82.046875 238.34375 C 81.929688 238.34375 81.835938 238.4375 81.835938 238.554688 C 81.835938 238.671875 81.929688 238.765625 82.046875 238.765625 C 82.164062 238.765625 82.257812 238.671875 82.257812 238.554688 Z M 82.257812 238.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.253906 239.066406 C 87.253906 238.949219 87.160156 238.855469 87.042969 238.855469 C 86.925781 238.855469 86.832031 238.949219 86.832031 239.066406 C 86.832031 239.183594 86.925781 239.277344 87.042969 239.277344 C 87.160156 239.277344 87.253906 239.183594 87.253906 239.066406 Z M 87.253906 239.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.839844 238.296875 C 84.839844 238.179688 84.746094 238.085938 84.628906 238.085938 C 84.511719 238.085938 84.417969 238.179688 84.417969 238.296875 C 84.417969 238.414062 84.511719 238.507812 84.628906 238.507812 C 84.746094 238.507812 84.839844 238.414062 84.839844 238.296875 Z M 84.839844 238.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.0625 237.449219 C 86.0625 237.332031 85.96875 237.238281 85.851562 237.238281 C 85.734375 237.238281 85.640625 237.332031 85.640625 237.449219 C 85.640625 237.566406 85.734375 237.660156 85.851562 237.660156 C 85.96875 237.660156 86.0625 237.566406 86.0625 237.449219 Z M 86.0625 237.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.945312 239.34375 C 86.945312 239.226562 86.851562 239.132812 86.734375 239.132812 C 86.617188 239.132812 86.523438 239.226562 86.523438 239.34375 C 86.523438 239.460938 86.617188 239.554688 86.734375 239.554688 C 86.851562 239.554688 86.945312 239.460938 86.945312 239.34375 Z M 86.945312 239.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.789062 240.863281 C 83.789062 240.746094 83.695312 240.652344 83.578125 240.652344 C 83.460938 240.652344 83.367188 240.746094 83.367188 240.863281 C 83.367188 240.980469 83.460938 241.074219 83.578125 241.074219 C 83.695312 241.074219 83.789062 240.980469 83.789062 240.863281 Z M 83.789062 240.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.191406 245.09375 C 83.191406 244.976562 83.097656 244.882812 82.980469 244.882812 C 82.863281 244.882812 82.769531 244.976562 82.769531 245.09375 C 82.769531 245.210938 82.863281 245.304688 82.980469 245.304688 C 83.097656 245.304688 83.191406 245.210938 83.191406 245.09375 Z M 83.191406 245.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.910156 246.882812 C 86.910156 246.765625 86.816406 246.671875 86.699219 246.671875 C 86.582031 246.671875 86.488281 246.765625 86.488281 246.882812 C 86.488281 247 86.582031 247.09375 86.699219 247.09375 C 86.816406 247.09375 86.910156 247 86.910156 246.882812 Z M 86.910156 246.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.765625 247.429688 C 85.765625 247.3125 85.671875 247.21875 85.554688 247.21875 C 85.4375 247.21875 85.34375 247.3125 85.34375 247.429688 C 85.34375 247.546875 85.4375 247.640625 85.554688 247.640625 C 85.671875 247.640625 85.765625 247.546875 85.765625 247.429688 Z M 85.765625 247.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.496094 245.75 C 86.496094 245.632812 86.402344 245.539062 86.285156 245.539062 C 86.167969 245.539062 86.074219 245.632812 86.074219 245.75 C 86.074219 245.867188 86.167969 245.960938 86.285156 245.960938 C 86.402344 245.960938 86.496094 245.867188 86.496094 245.75 Z M 86.496094 245.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.617188 246.878906 C 89.617188 246.761719 89.523438 246.667969 89.40625 246.667969 C 89.289062 246.667969 89.195312 246.761719 89.195312 246.878906 C 89.195312 246.996094 89.289062 247.089844 89.40625 247.089844 C 89.523438 247.089844 89.617188 246.996094 89.617188 246.878906 Z M 89.617188 246.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.976562 249.535156 C 89.976562 249.417969 89.882812 249.324219 89.765625 249.324219 C 89.648438 249.324219 89.554688 249.417969 89.554688 249.535156 C 89.554688 249.652344 89.648438 249.746094 89.765625 249.746094 C 89.882812 249.746094 89.976562 249.652344 89.976562 249.535156 Z M 89.976562 249.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.207031 250.039062 C 89.207031 249.921875 89.113281 249.828125 88.996094 249.828125 C 88.878906 249.828125 88.785156 249.921875 88.785156 250.039062 C 88.785156 250.15625 88.878906 250.25 88.996094 250.25 C 89.113281 250.25 89.207031 250.15625 89.207031 250.039062 Z M 89.207031 250.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.863281 249.761719 C 90.863281 249.644531 90.769531 249.550781 90.652344 249.550781 C 90.535156 249.550781 90.441406 249.644531 90.441406 249.761719 C 90.441406 249.878906 90.535156 249.972656 90.652344 249.972656 C 90.769531 249.972656 90.863281 249.878906 90.863281 249.761719 Z M 90.863281 249.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.503906 246.476562 C 91.503906 246.359375 91.410156 246.265625 91.292969 246.265625 C 91.175781 246.265625 91.082031 246.359375 91.082031 246.476562 C 91.082031 246.59375 91.175781 246.6875 91.292969 246.6875 C 91.410156 246.6875 91.503906 246.59375 91.503906 246.476562 Z M 91.503906 246.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.671875 243.40625 C 90.671875 243.289062 90.578125 243.195312 90.460938 243.195312 C 90.34375 243.195312 90.25 243.289062 90.25 243.40625 C 90.25 243.523438 90.34375 243.617188 90.460938 243.617188 C 90.578125 243.617188 90.671875 243.523438 90.671875 243.40625 Z M 90.671875 243.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.792969 246.328125 C 92.792969 246.210938 92.699219 246.117188 92.582031 246.117188 C 92.464844 246.117188 92.371094 246.210938 92.371094 246.328125 C 92.371094 246.445312 92.464844 246.539062 92.582031 246.539062 C 92.699219 246.539062 92.792969 246.445312 92.792969 246.328125 Z M 92.792969 246.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.933594 248.695312 C 98.933594 248.578125 98.839844 248.484375 98.722656 248.484375 C 98.605469 248.484375 98.511719 248.578125 98.511719 248.695312 C 98.511719 248.8125 98.605469 248.90625 98.722656 248.90625 C 98.839844 248.90625 98.933594 248.8125 98.933594 248.695312 Z M 98.933594 248.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.222656 250.042969 C 97.222656 249.925781 97.128906 249.832031 97.011719 249.832031 C 96.894531 249.832031 96.800781 249.925781 96.800781 250.042969 C 96.800781 250.160156 96.894531 250.253906 97.011719 250.253906 C 97.128906 250.253906 97.222656 250.160156 97.222656 250.042969 Z M 97.222656 250.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.433594 250.800781 C 94.433594 250.683594 94.339844 250.589844 94.222656 250.589844 C 94.105469 250.589844 94.011719 250.683594 94.011719 250.800781 C 94.011719 250.917969 94.105469 251.011719 94.222656 251.011719 C 94.339844 251.011719 94.433594 250.917969 94.433594 250.800781 Z M 94.433594 250.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.773438 249.921875 C 94.773438 249.804688 94.679688 249.710938 94.5625 249.710938 C 94.445312 249.710938 94.351562 249.804688 94.351562 249.921875 C 94.351562 250.039062 94.445312 250.132812 94.5625 250.132812 C 94.679688 250.132812 94.773438 250.039062 94.773438 249.921875 Z M 94.773438 249.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.730469 250.386719 C 93.730469 250.269531 93.636719 250.175781 93.519531 250.175781 C 93.402344 250.175781 93.308594 250.269531 93.308594 250.386719 C 93.308594 250.503906 93.402344 250.597656 93.519531 250.597656 C 93.636719 250.597656 93.730469 250.503906 93.730469 250.386719 Z M 93.730469 250.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.984375 249.429688 C 94.984375 249.3125 94.890625 249.21875 94.773438 249.21875 C 94.65625 249.21875 94.5625 249.3125 94.5625 249.429688 C 94.5625 249.546875 94.65625 249.640625 94.773438 249.640625 C 94.890625 249.640625 94.984375 249.546875 94.984375 249.429688 Z M 94.984375 249.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.605469 250.890625 C 96.605469 250.773438 96.511719 250.679688 96.394531 250.679688 C 96.277344 250.679688 96.183594 250.773438 96.183594 250.890625 C 96.183594 251.007812 96.277344 251.101562 96.394531 251.101562 C 96.511719 251.101562 96.605469 251.007812 96.605469 250.890625 Z M 96.605469 250.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.253906 248.824219 C 93.253906 248.707031 93.160156 248.613281 93.042969 248.613281 C 92.925781 248.613281 92.832031 248.707031 92.832031 248.824219 C 92.832031 248.941406 92.925781 249.035156 93.042969 249.035156 C 93.160156 249.035156 93.253906 248.941406 93.253906 248.824219 Z M 93.253906 248.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.238281 245.484375 C 93.238281 245.367188 93.144531 245.273438 93.027344 245.273438 C 92.910156 245.273438 92.816406 245.367188 92.816406 245.484375 C 92.816406 245.601562 92.910156 245.695312 93.027344 245.695312 C 93.144531 245.695312 93.238281 245.601562 93.238281 245.484375 Z M 93.238281 245.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.152344 249.386719 C 94.152344 249.269531 94.058594 249.175781 93.941406 249.175781 C 93.824219 249.175781 93.730469 249.269531 93.730469 249.386719 C 93.730469 249.503906 93.824219 249.597656 93.941406 249.597656 C 94.058594 249.597656 94.152344 249.503906 94.152344 249.386719 Z M 94.152344 249.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.1875 245.160156 C 93.1875 245.042969 93.09375 244.949219 92.976562 244.949219 C 92.859375 244.949219 92.765625 245.042969 92.765625 245.160156 C 92.765625 245.277344 92.859375 245.371094 92.976562 245.371094 C 93.09375 245.371094 93.1875 245.277344 93.1875 245.160156 Z M 93.1875 245.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.621094 244.546875 C 94.621094 244.429688 94.527344 244.335938 94.410156 244.335938 C 94.292969 244.335938 94.199219 244.429688 94.199219 244.546875 C 94.199219 244.664062 94.292969 244.757812 94.410156 244.757812 C 94.527344 244.757812 94.621094 244.664062 94.621094 244.546875 Z M 94.621094 244.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.410156 246.253906 C 95.410156 246.136719 95.316406 246.042969 95.199219 246.042969 C 95.082031 246.042969 94.988281 246.136719 94.988281 246.253906 C 94.988281 246.371094 95.082031 246.464844 95.199219 246.464844 C 95.316406 246.464844 95.410156 246.371094 95.410156 246.253906 Z M 95.410156 246.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.117188 248.042969 C 94.117188 247.925781 94.023438 247.832031 93.90625 247.832031 C 93.789062 247.832031 93.695312 247.925781 93.695312 248.042969 C 93.695312 248.160156 93.789062 248.253906 93.90625 248.253906 C 94.023438 248.253906 94.117188 248.160156 94.117188 248.042969 Z M 94.117188 248.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.578125 248.902344 C 90.578125 248.785156 90.484375 248.691406 90.367188 248.691406 C 90.25 248.691406 90.15625 248.785156 90.15625 248.902344 C 90.15625 249.019531 90.25 249.113281 90.367188 249.113281 C 90.484375 249.113281 90.578125 249.019531 90.578125 248.902344 Z M 90.578125 248.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.761719 247.449219 C 90.761719 247.332031 90.667969 247.238281 90.550781 247.238281 C 90.433594 247.238281 90.339844 247.332031 90.339844 247.449219 C 90.339844 247.566406 90.433594 247.660156 90.550781 247.660156 C 90.667969 247.660156 90.761719 247.566406 90.761719 247.449219 Z M 90.761719 247.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91 246.84375 C 91 246.726562 90.90625 246.632812 90.789062 246.632812 C 90.671875 246.632812 90.578125 246.726562 90.578125 246.84375 C 90.578125 246.960938 90.671875 247.054688 90.789062 247.054688 C 90.90625 247.054688 91 246.960938 91 246.84375 Z M 91 246.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.53125 244.503906 C 86.53125 244.386719 86.4375 244.292969 86.320312 244.292969 C 86.203125 244.292969 86.109375 244.386719 86.109375 244.503906 C 86.109375 244.621094 86.203125 244.714844 86.320312 244.714844 C 86.4375 244.714844 86.53125 244.621094 86.53125 244.503906 Z M 86.53125 244.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.589844 244.667969 C 83.589844 244.550781 83.496094 244.457031 83.378906 244.457031 C 83.261719 244.457031 83.167969 244.550781 83.167969 244.667969 C 83.167969 244.785156 83.261719 244.878906 83.378906 244.878906 C 83.496094 244.878906 83.589844 244.785156 83.589844 244.667969 Z M 83.589844 244.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.746094 240.585938 C 81.746094 240.46875 81.652344 240.375 81.535156 240.375 C 81.417969 240.375 81.324219 240.46875 81.324219 240.585938 C 81.324219 240.703125 81.417969 240.796875 81.535156 240.796875 C 81.652344 240.796875 81.746094 240.703125 81.746094 240.585938 Z M 81.746094 240.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.632812 242.078125 C 83.632812 241.960938 83.539062 241.867188 83.421875 241.867188 C 83.304688 241.867188 83.210938 241.960938 83.210938 242.078125 C 83.210938 242.195312 83.304688 242.289062 83.421875 242.289062 C 83.539062 242.289062 83.632812 242.195312 83.632812 242.078125 Z M 83.632812 242.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.695312 240.171875 C 83.695312 240.054688 83.601562 239.960938 83.484375 239.960938 C 83.367188 239.960938 83.273438 240.054688 83.273438 240.171875 C 83.273438 240.289062 83.367188 240.382812 83.484375 240.382812 C 83.601562 240.382812 83.695312 240.289062 83.695312 240.171875 Z M 83.695312 240.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.414062 242.285156 C 85.414062 242.167969 85.320312 242.074219 85.203125 242.074219 C 85.085938 242.074219 84.992188 242.167969 84.992188 242.285156 C 84.992188 242.402344 85.085938 242.496094 85.203125 242.496094 C 85.320312 242.496094 85.414062 242.402344 85.414062 242.285156 Z M 85.414062 242.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.222656 239.152344 C 85.222656 239.035156 85.128906 238.941406 85.011719 238.941406 C 84.894531 238.941406 84.800781 239.035156 84.800781 239.152344 C 84.800781 239.269531 84.894531 239.363281 85.011719 239.363281 C 85.128906 239.363281 85.222656 239.269531 85.222656 239.152344 Z M 85.222656 239.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.339844 239.578125 C 86.339844 239.460938 86.246094 239.367188 86.128906 239.367188 C 86.011719 239.367188 85.917969 239.460938 85.917969 239.578125 C 85.917969 239.695312 86.011719 239.789062 86.128906 239.789062 C 86.246094 239.789062 86.339844 239.695312 86.339844 239.578125 Z M 86.339844 239.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.503906 239.847656 C 85.503906 239.730469 85.410156 239.636719 85.292969 239.636719 C 85.175781 239.636719 85.082031 239.730469 85.082031 239.847656 C 85.082031 239.964844 85.175781 240.058594 85.292969 240.058594 C 85.410156 240.058594 85.503906 239.964844 85.503906 239.847656 Z M 85.503906 239.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.136719 238.886719 C 88.136719 238.769531 88.042969 238.675781 87.925781 238.675781 C 87.808594 238.675781 87.714844 238.769531 87.714844 238.886719 C 87.714844 239.003906 87.808594 239.097656 87.925781 239.097656 C 88.042969 239.097656 88.136719 239.003906 88.136719 238.886719 Z M 88.136719 238.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.214844 237.777344 C 84.214844 237.660156 84.121094 237.566406 84.003906 237.566406 C 83.886719 237.566406 83.792969 237.660156 83.792969 237.777344 C 83.792969 237.894531 83.886719 237.988281 84.003906 237.988281 C 84.121094 237.988281 84.214844 237.894531 84.214844 237.777344 Z M 84.214844 237.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.890625 240.792969 C 84.890625 240.675781 84.796875 240.582031 84.679688 240.582031 C 84.5625 240.582031 84.46875 240.675781 84.46875 240.792969 C 84.46875 240.910156 84.5625 241.003906 84.679688 241.003906 C 84.796875 241.003906 84.890625 240.910156 84.890625 240.792969 Z M 84.890625 240.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.464844 240.289062 C 86.464844 240.171875 86.371094 240.078125 86.253906 240.078125 C 86.136719 240.078125 86.042969 240.171875 86.042969 240.289062 C 86.042969 240.40625 86.136719 240.5 86.253906 240.5 C 86.371094 240.5 86.464844 240.40625 86.464844 240.289062 Z M 86.464844 240.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.664062 241.285156 C 83.664062 241.167969 83.570312 241.074219 83.453125 241.074219 C 83.335938 241.074219 83.242188 241.167969 83.242188 241.285156 C 83.242188 241.402344 83.335938 241.496094 83.453125 241.496094 C 83.570312 241.496094 83.664062 241.402344 83.664062 241.285156 Z M 83.664062 241.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.863281 237.191406 C 80.863281 237.074219 80.769531 236.980469 80.652344 236.980469 C 80.535156 236.980469 80.441406 237.074219 80.441406 237.191406 C 80.441406 237.308594 80.535156 237.402344 80.652344 237.402344 C 80.769531 237.402344 80.863281 237.308594 80.863281 237.191406 Z M 80.863281 237.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.882812 237.582031 C 80.882812 237.464844 80.789062 237.371094 80.671875 237.371094 C 80.554688 237.371094 80.460938 237.464844 80.460938 237.582031 C 80.460938 237.699219 80.554688 237.792969 80.671875 237.792969 C 80.789062 237.792969 80.882812 237.699219 80.882812 237.582031 Z M 80.882812 237.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.683594 235.730469 C 81.683594 235.613281 81.589844 235.519531 81.472656 235.519531 C 81.355469 235.519531 81.261719 235.613281 81.261719 235.730469 C 81.261719 235.847656 81.355469 235.941406 81.472656 235.941406 C 81.589844 235.941406 81.683594 235.847656 81.683594 235.730469 Z M 81.683594 235.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.992188 231.59375 C 80.992188 231.476562 80.898438 231.382812 80.78125 231.382812 C 80.664062 231.382812 80.570312 231.476562 80.570312 231.59375 C 80.570312 231.710938 80.664062 231.804688 80.78125 231.804688 C 80.898438 231.804688 80.992188 231.710938 80.992188 231.59375 Z M 80.992188 231.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.207031 229.75 C 83.207031 229.632812 83.113281 229.539062 82.996094 229.539062 C 82.878906 229.539062 82.785156 229.632812 82.785156 229.75 C 82.785156 229.867188 82.878906 229.960938 82.996094 229.960938 C 83.113281 229.960938 83.207031 229.867188 83.207031 229.75 Z M 83.207031 229.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.191406 229.699219 C 86.191406 229.582031 86.097656 229.488281 85.980469 229.488281 C 85.863281 229.488281 85.769531 229.582031 85.769531 229.699219 C 85.769531 229.816406 85.863281 229.910156 85.980469 229.910156 C 86.097656 229.910156 86.191406 229.816406 86.191406 229.699219 Z M 86.191406 229.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.484375 228.046875 C 87.484375 227.929688 87.390625 227.835938 87.273438 227.835938 C 87.15625 227.835938 87.0625 227.929688 87.0625 228.046875 C 87.0625 228.164062 87.15625 228.257812 87.273438 228.257812 C 87.390625 228.257812 87.484375 228.164062 87.484375 228.046875 Z M 87.484375 228.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.050781 226.789062 C 87.050781 226.671875 86.957031 226.578125 86.839844 226.578125 C 86.722656 226.578125 86.628906 226.671875 86.628906 226.789062 C 86.628906 226.90625 86.722656 227 86.839844 227 C 86.957031 227 87.050781 226.90625 87.050781 226.789062 Z M 87.050781 226.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.300781 224.160156 C 88.300781 224.042969 88.207031 223.949219 88.089844 223.949219 C 87.972656 223.949219 87.878906 224.042969 87.878906 224.160156 C 87.878906 224.277344 87.972656 224.371094 88.089844 224.371094 C 88.207031 224.371094 88.300781 224.277344 88.300781 224.160156 Z M 88.300781 224.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.976562 222.753906 C 88.976562 222.636719 88.882812 222.542969 88.765625 222.542969 C 88.648438 222.542969 88.554688 222.636719 88.554688 222.753906 C 88.554688 222.871094 88.648438 222.964844 88.765625 222.964844 C 88.882812 222.964844 88.976562 222.871094 88.976562 222.753906 Z M 88.976562 222.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.894531 225.171875 C 89.894531 225.054688 89.800781 224.960938 89.683594 224.960938 C 89.566406 224.960938 89.472656 225.054688 89.472656 225.171875 C 89.472656 225.289062 89.566406 225.382812 89.683594 225.382812 C 89.800781 225.382812 89.894531 225.289062 89.894531 225.171875 Z M 89.894531 225.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.191406 228.132812 C 90.191406 228.015625 90.097656 227.921875 89.980469 227.921875 C 89.863281 227.921875 89.769531 228.015625 89.769531 228.132812 C 89.769531 228.25 89.863281 228.34375 89.980469 228.34375 C 90.097656 228.34375 90.191406 228.25 90.191406 228.132812 Z M 90.191406 228.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.449219 222.988281 C 89.449219 222.871094 89.355469 222.777344 89.238281 222.777344 C 89.121094 222.777344 89.027344 222.871094 89.027344 222.988281 C 89.027344 223.105469 89.121094 223.199219 89.238281 223.199219 C 89.355469 223.199219 89.449219 223.105469 89.449219 222.988281 Z M 89.449219 222.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.960938 221.902344 C 86.960938 221.785156 86.867188 221.691406 86.75 221.691406 C 86.632812 221.691406 86.539062 221.785156 86.539062 221.902344 C 86.539062 222.019531 86.632812 222.113281 86.75 222.113281 C 86.867188 222.113281 86.960938 222.019531 86.960938 221.902344 Z M 86.960938 221.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.472656 217.070312 C 85.472656 216.953125 85.378906 216.859375 85.261719 216.859375 C 85.144531 216.859375 85.050781 216.953125 85.050781 217.070312 C 85.050781 217.1875 85.144531 217.28125 85.261719 217.28125 C 85.378906 217.28125 85.472656 217.1875 85.472656 217.070312 Z M 85.472656 217.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.5625 218.410156 C 88.5625 218.292969 88.46875 218.199219 88.351562 218.199219 C 88.234375 218.199219 88.140625 218.292969 88.140625 218.410156 C 88.140625 218.527344 88.234375 218.621094 88.351562 218.621094 C 88.46875 218.621094 88.5625 218.527344 88.5625 218.410156 Z M 88.5625 218.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.46875 215.617188 C 88.46875 215.5 88.375 215.40625 88.257812 215.40625 C 88.140625 215.40625 88.046875 215.5 88.046875 215.617188 C 88.046875 215.734375 88.140625 215.828125 88.257812 215.828125 C 88.375 215.828125 88.46875 215.734375 88.46875 215.617188 Z M 88.46875 215.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.074219 215.75 C 87.074219 215.632812 86.980469 215.539062 86.863281 215.539062 C 86.746094 215.539062 86.652344 215.632812 86.652344 215.75 C 86.652344 215.867188 86.746094 215.960938 86.863281 215.960938 C 86.980469 215.960938 87.074219 215.867188 87.074219 215.75 Z M 87.074219 215.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.484375 216.09375 C 90.484375 215.976562 90.390625 215.882812 90.273438 215.882812 C 90.15625 215.882812 90.0625 215.976562 90.0625 216.09375 C 90.0625 216.210938 90.15625 216.304688 90.273438 216.304688 C 90.390625 216.304688 90.484375 216.210938 90.484375 216.09375 Z M 90.484375 216.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.714844 214.589844 C 89.714844 214.472656 89.621094 214.378906 89.503906 214.378906 C 89.386719 214.378906 89.292969 214.472656 89.292969 214.589844 C 89.292969 214.707031 89.386719 214.800781 89.503906 214.800781 C 89.621094 214.800781 89.714844 214.707031 89.714844 214.589844 Z M 89.714844 214.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.835938 215.949219 C 91.835938 215.832031 91.742188 215.738281 91.625 215.738281 C 91.507812 215.738281 91.414062 215.832031 91.414062 215.949219 C 91.414062 216.066406 91.507812 216.160156 91.625 216.160156 C 91.742188 216.160156 91.835938 216.066406 91.835938 215.949219 Z M 91.835938 215.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.65625 213.8125 C 90.65625 213.695312 90.5625 213.601562 90.445312 213.601562 C 90.328125 213.601562 90.234375 213.695312 90.234375 213.8125 C 90.234375 213.929688 90.328125 214.023438 90.445312 214.023438 C 90.5625 214.023438 90.65625 213.929688 90.65625 213.8125 Z M 90.65625 213.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.980469 214.128906 C 89.980469 214.011719 89.886719 213.917969 89.769531 213.917969 C 89.652344 213.917969 89.558594 214.011719 89.558594 214.128906 C 89.558594 214.246094 89.652344 214.339844 89.769531 214.339844 C 89.886719 214.339844 89.980469 214.246094 89.980469 214.128906 Z M 89.980469 214.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.589844 213.683594 C 86.589844 213.566406 86.496094 213.472656 86.378906 213.472656 C 86.261719 213.472656 86.167969 213.566406 86.167969 213.683594 C 86.167969 213.800781 86.261719 213.894531 86.378906 213.894531 C 86.496094 213.894531 86.589844 213.800781 86.589844 213.683594 Z M 86.589844 213.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.898438 213.003906 C 87.898438 212.886719 87.804688 212.792969 87.6875 212.792969 C 87.570312 212.792969 87.476562 212.886719 87.476562 213.003906 C 87.476562 213.121094 87.570312 213.214844 87.6875 213.214844 C 87.804688 213.214844 87.898438 213.121094 87.898438 213.003906 Z M 87.898438 213.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90 215.460938 C 90 215.34375 89.90625 215.25 89.789062 215.25 C 89.671875 215.25 89.578125 215.34375 89.578125 215.460938 C 89.578125 215.578125 89.671875 215.671875 89.789062 215.671875 C 89.90625 215.671875 90 215.578125 90 215.460938 Z M 90 215.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.832031 215.125 C 89.832031 215.007812 89.738281 214.914062 89.621094 214.914062 C 89.503906 214.914062 89.410156 215.007812 89.410156 215.125 C 89.410156 215.242188 89.503906 215.335938 89.621094 215.335938 C 89.738281 215.335938 89.832031 215.242188 89.832031 215.125 Z M 89.832031 215.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.546875 215.550781 C 89.546875 215.433594 89.453125 215.339844 89.335938 215.339844 C 89.21875 215.339844 89.125 215.433594 89.125 215.550781 C 89.125 215.667969 89.21875 215.761719 89.335938 215.761719 C 89.453125 215.761719 89.546875 215.667969 89.546875 215.550781 Z M 89.546875 215.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.539062 214.566406 C 90.539062 214.449219 90.445312 214.355469 90.328125 214.355469 C 90.210938 214.355469 90.117188 214.449219 90.117188 214.566406 C 90.117188 214.683594 90.210938 214.777344 90.328125 214.777344 C 90.445312 214.777344 90.539062 214.683594 90.539062 214.566406 Z M 90.539062 214.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.566406 211.199219 C 87.566406 211.082031 87.472656 210.988281 87.355469 210.988281 C 87.238281 210.988281 87.144531 211.082031 87.144531 211.199219 C 87.144531 211.316406 87.238281 211.410156 87.355469 211.410156 C 87.472656 211.410156 87.566406 211.316406 87.566406 211.199219 Z M 87.566406 211.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.757812 212.359375 C 87.757812 212.242188 87.664062 212.148438 87.546875 212.148438 C 87.429688 212.148438 87.335938 212.242188 87.335938 212.359375 C 87.335938 212.476562 87.429688 212.570312 87.546875 212.570312 C 87.664062 212.570312 87.757812 212.476562 87.757812 212.359375 Z M 87.757812 212.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.175781 211.378906 C 87.175781 211.261719 87.082031 211.167969 86.964844 211.167969 C 86.847656 211.167969 86.753906 211.261719 86.753906 211.378906 C 86.753906 211.496094 86.847656 211.589844 86.964844 211.589844 C 87.082031 211.589844 87.175781 211.496094 87.175781 211.378906 Z M 87.175781 211.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.890625 213.867188 C 86.890625 213.75 86.796875 213.65625 86.679688 213.65625 C 86.5625 213.65625 86.46875 213.75 86.46875 213.867188 C 86.46875 213.984375 86.5625 214.078125 86.679688 214.078125 C 86.796875 214.078125 86.890625 213.984375 86.890625 213.867188 Z M 86.890625 213.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.800781 215.757812 C 87.800781 215.640625 87.707031 215.546875 87.589844 215.546875 C 87.472656 215.546875 87.378906 215.640625 87.378906 215.757812 C 87.378906 215.875 87.472656 215.96875 87.589844 215.96875 C 87.707031 215.96875 87.800781 215.875 87.800781 215.757812 Z M 87.800781 215.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.335938 216.085938 C 85.335938 215.96875 85.242188 215.875 85.125 215.875 C 85.007812 215.875 84.914062 215.96875 84.914062 216.085938 C 84.914062 216.203125 85.007812 216.296875 85.125 216.296875 C 85.242188 216.296875 85.335938 216.203125 85.335938 216.085938 Z M 85.335938 216.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.339844 216.449219 C 82.339844 216.332031 82.246094 216.238281 82.128906 216.238281 C 82.011719 216.238281 81.917969 216.332031 81.917969 216.449219 C 81.917969 216.566406 82.011719 216.660156 82.128906 216.660156 C 82.246094 216.660156 82.339844 216.566406 82.339844 216.449219 Z M 82.339844 216.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.179688 214.917969 C 81.179688 214.800781 81.085938 214.707031 80.96875 214.707031 C 80.851562 214.707031 80.757812 214.800781 80.757812 214.917969 C 80.757812 215.035156 80.851562 215.128906 80.96875 215.128906 C 81.085938 215.128906 81.179688 215.035156 81.179688 214.917969 Z M 81.179688 214.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.835938 213.640625 C 80.835938 213.523438 80.742188 213.429688 80.625 213.429688 C 80.507812 213.429688 80.414062 213.523438 80.414062 213.640625 C 80.414062 213.757812 80.507812 213.851562 80.625 213.851562 C 80.742188 213.851562 80.835938 213.757812 80.835938 213.640625 Z M 80.835938 213.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 78.714844 214.03125 C 78.714844 213.914062 78.621094 213.820312 78.503906 213.820312 C 78.386719 213.820312 78.292969 213.914062 78.292969 214.03125 C 78.292969 214.148438 78.386719 214.242188 78.503906 214.242188 C 78.621094 214.242188 78.714844 214.148438 78.714844 214.03125 Z M 78.714844 214.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 75.078125 215.203125 C 75.078125 215.085938 74.984375 214.992188 74.867188 214.992188 C 74.75 214.992188 74.65625 215.085938 74.65625 215.203125 C 74.65625 215.320312 74.75 215.414062 74.867188 215.414062 C 74.984375 215.414062 75.078125 215.320312 75.078125 215.203125 Z M 75.078125 215.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 74.667969 217.617188 C 74.667969 217.5 74.574219 217.40625 74.457031 217.40625 C 74.339844 217.40625 74.246094 217.5 74.246094 217.617188 C 74.246094 217.734375 74.339844 217.828125 74.457031 217.828125 C 74.574219 217.828125 74.667969 217.734375 74.667969 217.617188 Z M 74.667969 217.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 73.839844 218.414062 C 73.839844 218.296875 73.746094 218.203125 73.628906 218.203125 C 73.511719 218.203125 73.417969 218.296875 73.417969 218.414062 C 73.417969 218.53125 73.511719 218.625 73.628906 218.625 C 73.746094 218.625 73.839844 218.53125 73.839844 218.414062 Z M 73.839844 218.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 72.765625 222.550781 C 72.765625 222.433594 72.671875 222.339844 72.554688 222.339844 C 72.4375 222.339844 72.34375 222.433594 72.34375 222.550781 C 72.34375 222.667969 72.4375 222.761719 72.554688 222.761719 C 72.671875 222.761719 72.765625 222.667969 72.765625 222.550781 Z M 72.765625 222.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 77.441406 222.539062 C 77.441406 222.421875 77.347656 222.328125 77.230469 222.328125 C 77.113281 222.328125 77.019531 222.421875 77.019531 222.539062 C 77.019531 222.65625 77.113281 222.75 77.230469 222.75 C 77.347656 222.75 77.441406 222.65625 77.441406 222.539062 Z M 77.441406 222.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.117188 217.527344 C 79.117188 217.410156 79.023438 217.316406 78.90625 217.316406 C 78.789062 217.316406 78.695312 217.410156 78.695312 217.527344 C 78.695312 217.644531 78.789062 217.738281 78.90625 217.738281 C 79.023438 217.738281 79.117188 217.644531 79.117188 217.527344 Z M 79.117188 217.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 77.285156 219.835938 C 77.285156 219.71875 77.191406 219.625 77.074219 219.625 C 76.957031 219.625 76.863281 219.71875 76.863281 219.835938 C 76.863281 219.953125 76.957031 220.046875 77.074219 220.046875 C 77.191406 220.046875 77.285156 219.953125 77.285156 219.835938 Z M 77.285156 219.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 78.378906 221.089844 C 78.378906 220.972656 78.285156 220.878906 78.167969 220.878906 C 78.050781 220.878906 77.957031 220.972656 77.957031 221.089844 C 77.957031 221.207031 78.050781 221.300781 78.167969 221.300781 C 78.285156 221.300781 78.378906 221.207031 78.378906 221.089844 Z M 78.378906 221.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 77.125 220.164062 C 77.125 220.046875 77.03125 219.953125 76.914062 219.953125 C 76.796875 219.953125 76.703125 220.046875 76.703125 220.164062 C 76.703125 220.28125 76.796875 220.375 76.914062 220.375 C 77.03125 220.375 77.125 220.28125 77.125 220.164062 Z M 77.125 220.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 77.730469 221.140625 C 77.730469 221.023438 77.636719 220.929688 77.519531 220.929688 C 77.402344 220.929688 77.308594 221.023438 77.308594 221.140625 C 77.308594 221.257812 77.402344 221.351562 77.519531 221.351562 C 77.636719 221.351562 77.730469 221.257812 77.730469 221.140625 Z M 77.730469 221.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.332031 223.476562 C 80.332031 223.359375 80.238281 223.265625 80.121094 223.265625 C 80.003906 223.265625 79.910156 223.359375 79.910156 223.476562 C 79.910156 223.59375 80.003906 223.6875 80.121094 223.6875 C 80.238281 223.6875 80.332031 223.59375 80.332031 223.476562 Z M 80.332031 223.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.039062 225.9375 C 83.039062 225.820312 82.945312 225.726562 82.828125 225.726562 C 82.710938 225.726562 82.617188 225.820312 82.617188 225.9375 C 82.617188 226.054688 82.710938 226.148438 82.828125 226.148438 C 82.945312 226.148438 83.039062 226.054688 83.039062 225.9375 Z M 83.039062 225.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.328125 228.492188 C 85.328125 228.375 85.234375 228.28125 85.117188 228.28125 C 85 228.28125 84.90625 228.375 84.90625 228.492188 C 84.90625 228.609375 85 228.703125 85.117188 228.703125 C 85.234375 228.703125 85.328125 228.609375 85.328125 228.492188 Z M 85.328125 228.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.542969 226.273438 C 84.542969 226.15625 84.449219 226.0625 84.332031 226.0625 C 84.214844 226.0625 84.121094 226.15625 84.121094 226.273438 C 84.121094 226.390625 84.214844 226.484375 84.332031 226.484375 C 84.449219 226.484375 84.542969 226.390625 84.542969 226.273438 Z M 84.542969 226.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.640625 225.933594 C 83.640625 225.816406 83.546875 225.722656 83.429688 225.722656 C 83.3125 225.722656 83.21875 225.816406 83.21875 225.933594 C 83.21875 226.050781 83.3125 226.144531 83.429688 226.144531 C 83.546875 226.144531 83.640625 226.050781 83.640625 225.933594 Z M 83.640625 225.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.480469 223.921875 C 82.480469 223.804688 82.386719 223.710938 82.269531 223.710938 C 82.152344 223.710938 82.058594 223.804688 82.058594 223.921875 C 82.058594 224.039062 82.152344 224.132812 82.269531 224.132812 C 82.386719 224.132812 82.480469 224.039062 82.480469 223.921875 Z M 82.480469 223.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.03125 226.339844 C 84.03125 226.222656 83.9375 226.128906 83.820312 226.128906 C 83.703125 226.128906 83.609375 226.222656 83.609375 226.339844 C 83.609375 226.457031 83.703125 226.550781 83.820312 226.550781 C 83.9375 226.550781 84.03125 226.457031 84.03125 226.339844 Z M 84.03125 226.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.203125 225.855469 C 86.203125 225.738281 86.109375 225.644531 85.992188 225.644531 C 85.875 225.644531 85.78125 225.738281 85.78125 225.855469 C 85.78125 225.972656 85.875 226.066406 85.992188 226.066406 C 86.109375 226.066406 86.203125 225.972656 86.203125 225.855469 Z M 86.203125 225.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.753906 227.375 C 86.753906 227.257812 86.660156 227.164062 86.542969 227.164062 C 86.425781 227.164062 86.332031 227.257812 86.332031 227.375 C 86.332031 227.492188 86.425781 227.585938 86.542969 227.585938 C 86.660156 227.585938 86.753906 227.492188 86.753906 227.375 Z M 86.753906 227.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.375 228.273438 C 85.375 228.15625 85.28125 228.0625 85.164062 228.0625 C 85.046875 228.0625 84.953125 228.15625 84.953125 228.273438 C 84.953125 228.390625 85.046875 228.484375 85.164062 228.484375 C 85.28125 228.484375 85.375 228.390625 85.375 228.273438 Z M 85.375 228.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.90625 228.359375 C 85.90625 228.242188 85.8125 228.148438 85.695312 228.148438 C 85.578125 228.148438 85.484375 228.242188 85.484375 228.359375 C 85.484375 228.476562 85.578125 228.570312 85.695312 228.570312 C 85.8125 228.570312 85.90625 228.476562 85.90625 228.359375 Z M 85.90625 228.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.957031 229.613281 C 84.957031 229.496094 84.863281 229.402344 84.746094 229.402344 C 84.628906 229.402344 84.535156 229.496094 84.535156 229.613281 C 84.535156 229.730469 84.628906 229.824219 84.746094 229.824219 C 84.863281 229.824219 84.957031 229.730469 84.957031 229.613281 Z M 84.957031 229.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.160156 230.074219 C 88.160156 229.957031 88.066406 229.863281 87.949219 229.863281 C 87.832031 229.863281 87.738281 229.957031 87.738281 230.074219 C 87.738281 230.191406 87.832031 230.285156 87.949219 230.285156 C 88.066406 230.285156 88.160156 230.191406 88.160156 230.074219 Z M 88.160156 230.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.71875 228.613281 C 88.71875 228.496094 88.625 228.402344 88.507812 228.402344 C 88.390625 228.402344 88.296875 228.496094 88.296875 228.613281 C 88.296875 228.730469 88.390625 228.824219 88.507812 228.824219 C 88.625 228.824219 88.71875 228.730469 88.71875 228.613281 Z M 88.71875 228.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.984375 226.597656 C 90.984375 226.480469 90.890625 226.386719 90.773438 226.386719 C 90.65625 226.386719 90.5625 226.480469 90.5625 226.597656 C 90.5625 226.714844 90.65625 226.808594 90.773438 226.808594 C 90.890625 226.808594 90.984375 226.714844 90.984375 226.597656 Z M 90.984375 226.597656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.519531 227.519531 C 86.519531 227.402344 86.425781 227.308594 86.308594 227.308594 C 86.191406 227.308594 86.097656 227.402344 86.097656 227.519531 C 86.097656 227.636719 86.191406 227.730469 86.308594 227.730469 C 86.425781 227.730469 86.519531 227.636719 86.519531 227.519531 Z M 86.519531 227.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.816406 228.917969 C 84.816406 228.800781 84.722656 228.707031 84.605469 228.707031 C 84.488281 228.707031 84.394531 228.800781 84.394531 228.917969 C 84.394531 229.035156 84.488281 229.128906 84.605469 229.128906 C 84.722656 229.128906 84.816406 229.035156 84.816406 228.917969 Z M 84.816406 228.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.808594 230.933594 C 87.808594 230.816406 87.714844 230.722656 87.597656 230.722656 C 87.480469 230.722656 87.386719 230.816406 87.386719 230.933594 C 87.386719 231.050781 87.480469 231.144531 87.597656 231.144531 C 87.714844 231.144531 87.808594 231.050781 87.808594 230.933594 Z M 87.808594 230.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.742188 234.285156 C 85.742188 234.167969 85.648438 234.074219 85.53125 234.074219 C 85.414062 234.074219 85.320312 234.167969 85.320312 234.285156 C 85.320312 234.402344 85.414062 234.496094 85.53125 234.496094 C 85.648438 234.496094 85.742188 234.402344 85.742188 234.285156 Z M 85.742188 234.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.378906 233.128906 C 83.378906 233.011719 83.285156 232.917969 83.167969 232.917969 C 83.050781 232.917969 82.957031 233.011719 82.957031 233.128906 C 82.957031 233.246094 83.050781 233.339844 83.167969 233.339844 C 83.285156 233.339844 83.378906 233.246094 83.378906 233.128906 Z M 83.378906 233.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.09375 234.84375 C 85.09375 234.726562 85 234.632812 84.882812 234.632812 C 84.765625 234.632812 84.671875 234.726562 84.671875 234.84375 C 84.671875 234.960938 84.765625 235.054688 84.882812 235.054688 C 85 235.054688 85.09375 234.960938 85.09375 234.84375 Z M 85.09375 234.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.246094 234.230469 C 83.246094 234.113281 83.152344 234.019531 83.035156 234.019531 C 82.917969 234.019531 82.824219 234.113281 82.824219 234.230469 C 82.824219 234.347656 82.917969 234.441406 83.035156 234.441406 C 83.152344 234.441406 83.246094 234.347656 83.246094 234.230469 Z M 83.246094 234.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.882812 232.0625 C 84.882812 231.945312 84.789062 231.851562 84.671875 231.851562 C 84.554688 231.851562 84.460938 231.945312 84.460938 232.0625 C 84.460938 232.179688 84.554688 232.273438 84.671875 232.273438 C 84.789062 232.273438 84.882812 232.179688 84.882812 232.0625 Z M 84.882812 232.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.417969 230.03125 C 83.417969 229.914062 83.324219 229.820312 83.207031 229.820312 C 83.089844 229.820312 82.996094 229.914062 82.996094 230.03125 C 82.996094 230.148438 83.089844 230.242188 83.207031 230.242188 C 83.324219 230.242188 83.417969 230.148438 83.417969 230.03125 Z M 83.417969 230.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.300781 226.894531 C 85.300781 226.777344 85.207031 226.683594 85.089844 226.683594 C 84.972656 226.683594 84.878906 226.777344 84.878906 226.894531 C 84.878906 227.011719 84.972656 227.105469 85.089844 227.105469 C 85.207031 227.105469 85.300781 227.011719 85.300781 226.894531 Z M 85.300781 226.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.949219 229.632812 C 85.949219 229.515625 85.855469 229.421875 85.738281 229.421875 C 85.621094 229.421875 85.527344 229.515625 85.527344 229.632812 C 85.527344 229.75 85.621094 229.84375 85.738281 229.84375 C 85.855469 229.84375 85.949219 229.75 85.949219 229.632812 Z M 85.949219 229.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.132812 230.070312 C 90.132812 229.953125 90.039062 229.859375 89.921875 229.859375 C 89.804688 229.859375 89.710938 229.953125 89.710938 230.070312 C 89.710938 230.1875 89.804688 230.28125 89.921875 230.28125 C 90.039062 230.28125 90.132812 230.1875 90.132812 230.070312 Z M 90.132812 230.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.476562 228.476562 C 91.476562 228.359375 91.382812 228.265625 91.265625 228.265625 C 91.148438 228.265625 91.054688 228.359375 91.054688 228.476562 C 91.054688 228.59375 91.148438 228.6875 91.265625 228.6875 C 91.382812 228.6875 91.476562 228.59375 91.476562 228.476562 Z M 91.476562 228.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.207031 229.410156 C 88.207031 229.292969 88.113281 229.199219 87.996094 229.199219 C 87.878906 229.199219 87.785156 229.292969 87.785156 229.410156 C 87.785156 229.527344 87.878906 229.621094 87.996094 229.621094 C 88.113281 229.621094 88.207031 229.527344 88.207031 229.410156 Z M 88.207031 229.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.191406 233.765625 C 89.191406 233.648438 89.097656 233.554688 88.980469 233.554688 C 88.863281 233.554688 88.769531 233.648438 88.769531 233.765625 C 88.769531 233.882812 88.863281 233.976562 88.980469 233.976562 C 89.097656 233.976562 89.191406 233.882812 89.191406 233.765625 Z M 89.191406 233.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.128906 235.527344 C 89.128906 235.410156 89.035156 235.316406 88.917969 235.316406 C 88.800781 235.316406 88.707031 235.410156 88.707031 235.527344 C 88.707031 235.644531 88.800781 235.738281 88.917969 235.738281 C 89.035156 235.738281 89.128906 235.644531 89.128906 235.527344 Z M 89.128906 235.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.625 234.488281 C 92.625 234.371094 92.53125 234.277344 92.414062 234.277344 C 92.296875 234.277344 92.203125 234.371094 92.203125 234.488281 C 92.203125 234.605469 92.296875 234.699219 92.414062 234.699219 C 92.53125 234.699219 92.625 234.605469 92.625 234.488281 Z M 92.625 234.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.859375 237.101562 C 93.859375 236.984375 93.765625 236.890625 93.648438 236.890625 C 93.53125 236.890625 93.4375 236.984375 93.4375 237.101562 C 93.4375 237.21875 93.53125 237.3125 93.648438 237.3125 C 93.765625 237.3125 93.859375 237.21875 93.859375 237.101562 Z M 93.859375 237.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.933594 237.796875 C 91.933594 237.679688 91.839844 237.585938 91.722656 237.585938 C 91.605469 237.585938 91.511719 237.679688 91.511719 237.796875 C 91.511719 237.914062 91.605469 238.007812 91.722656 238.007812 C 91.839844 238.007812 91.933594 237.914062 91.933594 237.796875 Z M 91.933594 237.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.96875 240.929688 C 91.96875 240.8125 91.875 240.71875 91.757812 240.71875 C 91.640625 240.71875 91.546875 240.8125 91.546875 240.929688 C 91.546875 241.046875 91.640625 241.140625 91.757812 241.140625 C 91.875 241.140625 91.96875 241.046875 91.96875 240.929688 Z M 91.96875 240.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.417969 241.761719 C 91.417969 241.644531 91.324219 241.550781 91.207031 241.550781 C 91.089844 241.550781 90.996094 241.644531 90.996094 241.761719 C 90.996094 241.878906 91.089844 241.972656 91.207031 241.972656 C 91.324219 241.972656 91.417969 241.878906 91.417969 241.761719 Z M 91.417969 241.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.542969 243.910156 C 94.542969 243.792969 94.449219 243.699219 94.332031 243.699219 C 94.214844 243.699219 94.121094 243.792969 94.121094 243.910156 C 94.121094 244.027344 94.214844 244.121094 94.332031 244.121094 C 94.449219 244.121094 94.542969 244.027344 94.542969 243.910156 Z M 94.542969 243.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.898438 245.144531 C 91.898438 245.027344 91.804688 244.933594 91.6875 244.933594 C 91.570312 244.933594 91.476562 245.027344 91.476562 245.144531 C 91.476562 245.261719 91.570312 245.355469 91.6875 245.355469 C 91.804688 245.355469 91.898438 245.261719 91.898438 245.144531 Z M 91.898438 245.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.949219 245.621094 C 93.949219 245.503906 93.855469 245.410156 93.738281 245.410156 C 93.621094 245.410156 93.527344 245.503906 93.527344 245.621094 C 93.527344 245.738281 93.621094 245.832031 93.738281 245.832031 C 93.855469 245.832031 93.949219 245.738281 93.949219 245.621094 Z M 93.949219 245.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.804688 245.851562 C 87.804688 245.734375 87.710938 245.640625 87.59375 245.640625 C 87.476562 245.640625 87.382812 245.734375 87.382812 245.851562 C 87.382812 245.96875 87.476562 246.0625 87.59375 246.0625 C 87.710938 246.0625 87.804688 245.96875 87.804688 245.851562 Z M 87.804688 245.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.546875 248.601562 C 86.546875 248.484375 86.453125 248.390625 86.335938 248.390625 C 86.21875 248.390625 86.125 248.484375 86.125 248.601562 C 86.125 248.71875 86.21875 248.8125 86.335938 248.8125 C 86.453125 248.8125 86.546875 248.71875 86.546875 248.601562 Z M 86.546875 248.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.921875 247.871094 C 84.921875 247.753906 84.828125 247.660156 84.710938 247.660156 C 84.59375 247.660156 84.5 247.753906 84.5 247.871094 C 84.5 247.988281 84.59375 248.082031 84.710938 248.082031 C 84.828125 248.082031 84.921875 247.988281 84.921875 247.871094 Z M 84.921875 247.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.917969 244.871094 C 84.917969 244.753906 84.824219 244.660156 84.707031 244.660156 C 84.589844 244.660156 84.496094 244.753906 84.496094 244.871094 C 84.496094 244.988281 84.589844 245.082031 84.707031 245.082031 C 84.824219 245.082031 84.917969 244.988281 84.917969 244.871094 Z M 84.917969 244.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.042969 248.78125 C 87.042969 248.664062 86.949219 248.570312 86.832031 248.570312 C 86.714844 248.570312 86.621094 248.664062 86.621094 248.78125 C 86.621094 248.898438 86.714844 248.992188 86.832031 248.992188 C 86.949219 248.992188 87.042969 248.898438 87.042969 248.78125 Z M 87.042969 248.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.929688 249.316406 C 85.929688 249.199219 85.835938 249.105469 85.71875 249.105469 C 85.601562 249.105469 85.507812 249.199219 85.507812 249.316406 C 85.507812 249.433594 85.601562 249.527344 85.71875 249.527344 C 85.835938 249.527344 85.929688 249.433594 85.929688 249.316406 Z M 85.929688 249.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.371094 250.371094 C 87.371094 250.253906 87.277344 250.160156 87.160156 250.160156 C 87.042969 250.160156 86.949219 250.253906 86.949219 250.371094 C 86.949219 250.488281 87.042969 250.582031 87.160156 250.582031 C 87.277344 250.582031 87.371094 250.488281 87.371094 250.371094 Z M 87.371094 250.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.296875 256.285156 C 85.296875 256.167969 85.203125 256.074219 85.085938 256.074219 C 84.96875 256.074219 84.875 256.167969 84.875 256.285156 C 84.875 256.402344 84.96875 256.496094 85.085938 256.496094 C 85.203125 256.496094 85.296875 256.402344 85.296875 256.285156 Z M 85.296875 256.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.042969 251.453125 C 83.042969 251.335938 82.949219 251.242188 82.832031 251.242188 C 82.714844 251.242188 82.621094 251.335938 82.621094 251.453125 C 82.621094 251.570312 82.714844 251.664062 82.832031 251.664062 C 82.949219 251.664062 83.042969 251.570312 83.042969 251.453125 Z M 83.042969 251.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.40625 248.527344 C 83.40625 248.410156 83.3125 248.316406 83.195312 248.316406 C 83.078125 248.316406 82.984375 248.410156 82.984375 248.527344 C 82.984375 248.644531 83.078125 248.738281 83.195312 248.738281 C 83.3125 248.738281 83.40625 248.644531 83.40625 248.527344 Z M 83.40625 248.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.5625 247.105469 C 83.5625 246.988281 83.46875 246.894531 83.351562 246.894531 C 83.234375 246.894531 83.140625 246.988281 83.140625 247.105469 C 83.140625 247.222656 83.234375 247.316406 83.351562 247.316406 C 83.46875 247.316406 83.5625 247.222656 83.5625 247.105469 Z M 83.5625 247.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.546875 242.953125 C 84.546875 242.835938 84.453125 242.742188 84.335938 242.742188 C 84.21875 242.742188 84.125 242.835938 84.125 242.953125 C 84.125 243.070312 84.21875 243.164062 84.335938 243.164062 C 84.453125 243.164062 84.546875 243.070312 84.546875 242.953125 Z M 84.546875 242.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.867188 246.347656 C 82.867188 246.230469 82.773438 246.136719 82.65625 246.136719 C 82.539062 246.136719 82.445312 246.230469 82.445312 246.347656 C 82.445312 246.464844 82.539062 246.558594 82.65625 246.558594 C 82.773438 246.558594 82.867188 246.464844 82.867188 246.347656 Z M 82.867188 246.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.71875 247.324219 C 81.71875 247.207031 81.625 247.113281 81.507812 247.113281 C 81.390625 247.113281 81.296875 247.207031 81.296875 247.324219 C 81.296875 247.441406 81.390625 247.535156 81.507812 247.535156 C 81.625 247.535156 81.71875 247.441406 81.71875 247.324219 Z M 81.71875 247.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.484375 247.542969 C 85.484375 247.425781 85.390625 247.332031 85.273438 247.332031 C 85.15625 247.332031 85.0625 247.425781 85.0625 247.542969 C 85.0625 247.660156 85.15625 247.753906 85.273438 247.753906 C 85.390625 247.753906 85.484375 247.660156 85.484375 247.542969 Z M 85.484375 247.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.554688 244.71875 C 84.554688 244.601562 84.460938 244.507812 84.34375 244.507812 C 84.226562 244.507812 84.132812 244.601562 84.132812 244.71875 C 84.132812 244.835938 84.226562 244.929688 84.34375 244.929688 C 84.460938 244.929688 84.554688 244.835938 84.554688 244.71875 Z M 84.554688 244.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.183594 242.828125 C 86.183594 242.710938 86.089844 242.617188 85.972656 242.617188 C 85.855469 242.617188 85.761719 242.710938 85.761719 242.828125 C 85.761719 242.945312 85.855469 243.039062 85.972656 243.039062 C 86.089844 243.039062 86.183594 242.945312 86.183594 242.828125 Z M 86.183594 242.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.800781 243.652344 C 85.800781 243.535156 85.707031 243.441406 85.589844 243.441406 C 85.472656 243.441406 85.378906 243.535156 85.378906 243.652344 C 85.378906 243.769531 85.472656 243.863281 85.589844 243.863281 C 85.707031 243.863281 85.800781 243.769531 85.800781 243.652344 Z M 85.800781 243.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.566406 242.9375 C 84.566406 242.820312 84.472656 242.726562 84.355469 242.726562 C 84.238281 242.726562 84.144531 242.820312 84.144531 242.9375 C 84.144531 243.054688 84.238281 243.148438 84.355469 243.148438 C 84.472656 243.148438 84.566406 243.054688 84.566406 242.9375 Z M 84.566406 242.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.421875 243.003906 C 88.421875 242.886719 88.328125 242.792969 88.210938 242.792969 C 88.09375 242.792969 88 242.886719 88 243.003906 C 88 243.121094 88.09375 243.214844 88.210938 243.214844 C 88.328125 243.214844 88.421875 243.121094 88.421875 243.003906 Z M 88.421875 243.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.53125 244.378906 C 87.53125 244.261719 87.4375 244.167969 87.320312 244.167969 C 87.203125 244.167969 87.109375 244.261719 87.109375 244.378906 C 87.109375 244.496094 87.203125 244.589844 87.320312 244.589844 C 87.4375 244.589844 87.53125 244.496094 87.53125 244.378906 Z M 87.53125 244.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.386719 243.679688 C 90.386719 243.5625 90.292969 243.46875 90.175781 243.46875 C 90.058594 243.46875 89.964844 243.5625 89.964844 243.679688 C 89.964844 243.796875 90.058594 243.890625 90.175781 243.890625 C 90.292969 243.890625 90.386719 243.796875 90.386719 243.679688 Z M 90.386719 243.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.914062 247.285156 C 89.914062 247.167969 89.820312 247.074219 89.703125 247.074219 C 89.585938 247.074219 89.492188 247.167969 89.492188 247.285156 C 89.492188 247.402344 89.585938 247.496094 89.703125 247.496094 C 89.820312 247.496094 89.914062 247.402344 89.914062 247.285156 Z M 89.914062 247.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.730469 247.9375 C 92.730469 247.820312 92.636719 247.726562 92.519531 247.726562 C 92.402344 247.726562 92.308594 247.820312 92.308594 247.9375 C 92.308594 248.054688 92.402344 248.148438 92.519531 248.148438 C 92.636719 248.148438 92.730469 248.054688 92.730469 247.9375 Z M 92.730469 247.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.421875 246.160156 C 92.421875 246.042969 92.328125 245.949219 92.210938 245.949219 C 92.09375 245.949219 92 246.042969 92 246.160156 C 92 246.277344 92.09375 246.371094 92.210938 246.371094 C 92.328125 246.371094 92.421875 246.277344 92.421875 246.160156 Z M 92.421875 246.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.691406 245.972656 C 94.691406 245.855469 94.597656 245.761719 94.480469 245.761719 C 94.363281 245.761719 94.269531 245.855469 94.269531 245.972656 C 94.269531 246.089844 94.363281 246.183594 94.480469 246.183594 C 94.597656 246.183594 94.691406 246.089844 94.691406 245.972656 Z M 94.691406 245.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.113281 244.648438 C 93.113281 244.53125 93.019531 244.4375 92.902344 244.4375 C 92.785156 244.4375 92.691406 244.53125 92.691406 244.648438 C 92.691406 244.765625 92.785156 244.859375 92.902344 244.859375 C 93.019531 244.859375 93.113281 244.765625 93.113281 244.648438 Z M 93.113281 244.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.335938 246.351562 C 94.335938 246.234375 94.242188 246.140625 94.125 246.140625 C 94.007812 246.140625 93.914062 246.234375 93.914062 246.351562 C 93.914062 246.46875 94.007812 246.5625 94.125 246.5625 C 94.242188 246.5625 94.335938 246.46875 94.335938 246.351562 Z M 94.335938 246.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.449219 246.664062 C 91.449219 246.546875 91.355469 246.453125 91.238281 246.453125 C 91.121094 246.453125 91.027344 246.546875 91.027344 246.664062 C 91.027344 246.78125 91.121094 246.875 91.238281 246.875 C 91.355469 246.875 91.449219 246.78125 91.449219 246.664062 Z M 91.449219 246.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.363281 247.890625 C 88.363281 247.773438 88.269531 247.679688 88.152344 247.679688 C 88.035156 247.679688 87.941406 247.773438 87.941406 247.890625 C 87.941406 248.007812 88.035156 248.101562 88.152344 248.101562 C 88.269531 248.101562 88.363281 248.007812 88.363281 247.890625 Z M 88.363281 247.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.929688 246.21875 C 88.929688 246.101562 88.835938 246.007812 88.71875 246.007812 C 88.601562 246.007812 88.507812 246.101562 88.507812 246.21875 C 88.507812 246.335938 88.601562 246.429688 88.71875 246.429688 C 88.835938 246.429688 88.929688 246.335938 88.929688 246.21875 Z M 88.929688 246.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.488281 247.695312 C 89.488281 247.578125 89.394531 247.484375 89.277344 247.484375 C 89.160156 247.484375 89.066406 247.578125 89.066406 247.695312 C 89.066406 247.8125 89.160156 247.90625 89.277344 247.90625 C 89.394531 247.90625 89.488281 247.8125 89.488281 247.695312 Z M 89.488281 247.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.257812 250.273438 C 88.257812 250.15625 88.164062 250.0625 88.046875 250.0625 C 87.929688 250.0625 87.835938 250.15625 87.835938 250.273438 C 87.835938 250.390625 87.929688 250.484375 88.046875 250.484375 C 88.164062 250.484375 88.257812 250.390625 88.257812 250.273438 Z M 88.257812 250.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.453125 253.53125 C 89.453125 253.414062 89.359375 253.320312 89.242188 253.320312 C 89.125 253.320312 89.03125 253.414062 89.03125 253.53125 C 89.03125 253.648438 89.125 253.742188 89.242188 253.742188 C 89.359375 253.742188 89.453125 253.648438 89.453125 253.53125 Z M 89.453125 253.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.796875 254.464844 C 88.796875 254.347656 88.703125 254.253906 88.585938 254.253906 C 88.46875 254.253906 88.375 254.347656 88.375 254.464844 C 88.375 254.582031 88.46875 254.675781 88.585938 254.675781 C 88.703125 254.675781 88.796875 254.582031 88.796875 254.464844 Z M 88.796875 254.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.382812 254.675781 C 91.382812 254.558594 91.289062 254.464844 91.171875 254.464844 C 91.054688 254.464844 90.960938 254.558594 90.960938 254.675781 C 90.960938 254.792969 91.054688 254.886719 91.171875 254.886719 C 91.289062 254.886719 91.382812 254.792969 91.382812 254.675781 Z M 91.382812 254.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.992188 256.722656 C 89.992188 256.605469 89.898438 256.511719 89.78125 256.511719 C 89.664062 256.511719 89.570312 256.605469 89.570312 256.722656 C 89.570312 256.839844 89.664062 256.933594 89.78125 256.933594 C 89.898438 256.933594 89.992188 256.839844 89.992188 256.722656 Z M 89.992188 256.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.765625 258.480469 C 87.765625 258.363281 87.671875 258.269531 87.554688 258.269531 C 87.4375 258.269531 87.34375 258.363281 87.34375 258.480469 C 87.34375 258.597656 87.4375 258.691406 87.554688 258.691406 C 87.671875 258.691406 87.765625 258.597656 87.765625 258.480469 Z M 87.765625 258.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.535156 263.234375 C 88.535156 263.117188 88.441406 263.023438 88.324219 263.023438 C 88.207031 263.023438 88.113281 263.117188 88.113281 263.234375 C 88.113281 263.351562 88.207031 263.445312 88.324219 263.445312 C 88.441406 263.445312 88.535156 263.351562 88.535156 263.234375 Z M 88.535156 263.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.875 261.332031 C 88.875 261.214844 88.78125 261.121094 88.664062 261.121094 C 88.546875 261.121094 88.453125 261.214844 88.453125 261.332031 C 88.453125 261.449219 88.546875 261.542969 88.664062 261.542969 C 88.78125 261.542969 88.875 261.449219 88.875 261.332031 Z M 88.875 261.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.605469 260.125 C 91.605469 260.007812 91.511719 259.914062 91.394531 259.914062 C 91.277344 259.914062 91.183594 260.007812 91.183594 260.125 C 91.183594 260.242188 91.277344 260.335938 91.394531 260.335938 C 91.511719 260.335938 91.605469 260.242188 91.605469 260.125 Z M 91.605469 260.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.167969 260.429688 C 89.167969 260.3125 89.074219 260.21875 88.957031 260.21875 C 88.839844 260.21875 88.746094 260.3125 88.746094 260.429688 C 88.746094 260.546875 88.839844 260.640625 88.957031 260.640625 C 89.074219 260.640625 89.167969 260.546875 89.167969 260.429688 Z M 89.167969 260.429688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.160156 262.847656 C 88.160156 262.730469 88.066406 262.636719 87.949219 262.636719 C 87.832031 262.636719 87.738281 262.730469 87.738281 262.847656 C 87.738281 262.964844 87.832031 263.058594 87.949219 263.058594 C 88.066406 263.058594 88.160156 262.964844 88.160156 262.847656 Z M 88.160156 262.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.8125 263.335938 C 90.8125 263.21875 90.71875 263.125 90.601562 263.125 C 90.484375 263.125 90.390625 263.21875 90.390625 263.335938 C 90.390625 263.453125 90.484375 263.546875 90.601562 263.546875 C 90.71875 263.546875 90.8125 263.453125 90.8125 263.335938 Z M 90.8125 263.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.851562 262.496094 C 92.851562 262.378906 92.757812 262.285156 92.640625 262.285156 C 92.523438 262.285156 92.429688 262.378906 92.429688 262.496094 C 92.429688 262.613281 92.523438 262.707031 92.640625 262.707031 C 92.757812 262.707031 92.851562 262.613281 92.851562 262.496094 Z M 92.851562 262.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.214844 262.277344 C 96.214844 262.160156 96.121094 262.066406 96.003906 262.066406 C 95.886719 262.066406 95.792969 262.160156 95.792969 262.277344 C 95.792969 262.394531 95.886719 262.488281 96.003906 262.488281 C 96.121094 262.488281 96.214844 262.394531 96.214844 262.277344 Z M 96.214844 262.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.691406 262.691406 C 94.691406 262.574219 94.597656 262.480469 94.480469 262.480469 C 94.363281 262.480469 94.269531 262.574219 94.269531 262.691406 C 94.269531 262.808594 94.363281 262.902344 94.480469 262.902344 C 94.597656 262.902344 94.691406 262.808594 94.691406 262.691406 Z M 94.691406 262.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.714844 260.253906 C 94.714844 260.136719 94.621094 260.042969 94.503906 260.042969 C 94.386719 260.042969 94.292969 260.136719 94.292969 260.253906 C 94.292969 260.371094 94.386719 260.464844 94.503906 260.464844 C 94.621094 260.464844 94.714844 260.371094 94.714844 260.253906 Z M 94.714844 260.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.371094 259.503906 C 96.371094 259.386719 96.277344 259.292969 96.160156 259.292969 C 96.042969 259.292969 95.949219 259.386719 95.949219 259.503906 C 95.949219 259.621094 96.042969 259.714844 96.160156 259.714844 C 96.277344 259.714844 96.371094 259.621094 96.371094 259.503906 Z M 96.371094 259.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.113281 258.023438 C 96.113281 257.90625 96.019531 257.8125 95.902344 257.8125 C 95.785156 257.8125 95.691406 257.90625 95.691406 258.023438 C 95.691406 258.140625 95.785156 258.234375 95.902344 258.234375 C 96.019531 258.234375 96.113281 258.140625 96.113281 258.023438 Z M 96.113281 258.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.390625 259.21875 C 95.390625 259.101562 95.296875 259.007812 95.179688 259.007812 C 95.0625 259.007812 94.96875 259.101562 94.96875 259.21875 C 94.96875 259.335938 95.0625 259.429688 95.179688 259.429688 C 95.296875 259.429688 95.390625 259.335938 95.390625 259.21875 Z M 95.390625 259.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.429688 258.105469 C 96.429688 257.988281 96.335938 257.894531 96.21875 257.894531 C 96.101562 257.894531 96.007812 257.988281 96.007812 258.105469 C 96.007812 258.222656 96.101562 258.316406 96.21875 258.316406 C 96.335938 258.316406 96.429688 258.222656 96.429688 258.105469 Z M 96.429688 258.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.359375 261.375 C 100.359375 261.257812 100.265625 261.164062 100.148438 261.164062 C 100.03125 261.164062 99.9375 261.257812 99.9375 261.375 C 99.9375 261.492188 100.03125 261.585938 100.148438 261.585938 C 100.265625 261.585938 100.359375 261.492188 100.359375 261.375 Z M 100.359375 261.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.203125 260.15625 C 99.203125 260.039062 99.109375 259.945312 98.992188 259.945312 C 98.875 259.945312 98.78125 260.039062 98.78125 260.15625 C 98.78125 260.273438 98.875 260.367188 98.992188 260.367188 C 99.109375 260.367188 99.203125 260.273438 99.203125 260.15625 Z M 99.203125 260.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.519531 262.019531 C 99.519531 261.902344 99.425781 261.808594 99.308594 261.808594 C 99.191406 261.808594 99.097656 261.902344 99.097656 262.019531 C 99.097656 262.136719 99.191406 262.230469 99.308594 262.230469 C 99.425781 262.230469 99.519531 262.136719 99.519531 262.019531 Z M 99.519531 262.019531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.941406 264.042969 C 101.941406 263.925781 101.847656 263.832031 101.730469 263.832031 C 101.613281 263.832031 101.519531 263.925781 101.519531 264.042969 C 101.519531 264.160156 101.613281 264.253906 101.730469 264.253906 C 101.847656 264.253906 101.941406 264.160156 101.941406 264.042969 Z M 101.941406 264.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.398438 264.136719 C 95.398438 264.019531 95.304688 263.925781 95.1875 263.925781 C 95.070312 263.925781 94.976562 264.019531 94.976562 264.136719 C 94.976562 264.253906 95.070312 264.347656 95.1875 264.347656 C 95.304688 264.347656 95.398438 264.253906 95.398438 264.136719 Z M 95.398438 264.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.171875 263.445312 C 97.171875 263.328125 97.078125 263.234375 96.960938 263.234375 C 96.84375 263.234375 96.75 263.328125 96.75 263.445312 C 96.75 263.5625 96.84375 263.65625 96.960938 263.65625 C 97.078125 263.65625 97.171875 263.5625 97.171875 263.445312 Z M 97.171875 263.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.863281 259.65625 C 98.863281 259.539062 98.769531 259.445312 98.652344 259.445312 C 98.535156 259.445312 98.441406 259.539062 98.441406 259.65625 C 98.441406 259.773438 98.535156 259.867188 98.652344 259.867188 C 98.769531 259.867188 98.863281 259.773438 98.863281 259.65625 Z M 98.863281 259.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 102.804688 257.085938 C 102.804688 256.96875 102.710938 256.875 102.59375 256.875 C 102.476562 256.875 102.382812 256.96875 102.382812 257.085938 C 102.382812 257.203125 102.476562 257.296875 102.59375 257.296875 C 102.710938 257.296875 102.804688 257.203125 102.804688 257.085938 Z M 102.804688 257.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.441406 255.902344 C 99.441406 255.785156 99.347656 255.691406 99.230469 255.691406 C 99.113281 255.691406 99.019531 255.785156 99.019531 255.902344 C 99.019531 256.019531 99.113281 256.113281 99.230469 256.113281 C 99.347656 256.113281 99.441406 256.019531 99.441406 255.902344 Z M 99.441406 255.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.242188 256.535156 C 99.242188 256.417969 99.148438 256.324219 99.03125 256.324219 C 98.914062 256.324219 98.820312 256.417969 98.820312 256.535156 C 98.820312 256.652344 98.914062 256.746094 99.03125 256.746094 C 99.148438 256.746094 99.242188 256.652344 99.242188 256.535156 Z M 99.242188 256.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 102.199219 258.035156 C 102.199219 257.917969 102.105469 257.824219 101.988281 257.824219 C 101.871094 257.824219 101.777344 257.917969 101.777344 258.035156 C 101.777344 258.152344 101.871094 258.246094 101.988281 258.246094 C 102.105469 258.246094 102.199219 258.152344 102.199219 258.035156 Z M 102.199219 258.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.59375 255.488281 C 100.59375 255.371094 100.5 255.277344 100.382812 255.277344 C 100.265625 255.277344 100.171875 255.371094 100.171875 255.488281 C 100.171875 255.605469 100.265625 255.699219 100.382812 255.699219 C 100.5 255.699219 100.59375 255.605469 100.59375 255.488281 Z M 100.59375 255.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.902344 253.152344 C 98.902344 253.035156 98.808594 252.941406 98.691406 252.941406 C 98.574219 252.941406 98.480469 253.035156 98.480469 253.152344 C 98.480469 253.269531 98.574219 253.363281 98.691406 253.363281 C 98.808594 253.363281 98.902344 253.269531 98.902344 253.152344 Z M 98.902344 253.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.859375 252.800781 C 97.859375 252.683594 97.765625 252.589844 97.648438 252.589844 C 97.53125 252.589844 97.4375 252.683594 97.4375 252.800781 C 97.4375 252.917969 97.53125 253.011719 97.648438 253.011719 C 97.765625 253.011719 97.859375 252.917969 97.859375 252.800781 Z M 97.859375 252.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.347656 253.507812 C 99.347656 253.390625 99.253906 253.296875 99.136719 253.296875 C 99.019531 253.296875 98.925781 253.390625 98.925781 253.507812 C 98.925781 253.625 99.019531 253.71875 99.136719 253.71875 C 99.253906 253.71875 99.347656 253.625 99.347656 253.507812 Z M 99.347656 253.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.667969 253.507812 C 98.667969 253.390625 98.574219 253.296875 98.457031 253.296875 C 98.339844 253.296875 98.246094 253.390625 98.246094 253.507812 C 98.246094 253.625 98.339844 253.71875 98.457031 253.71875 C 98.574219 253.71875 98.667969 253.625 98.667969 253.507812 Z M 98.667969 253.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.757812 251.265625 C 96.757812 251.148438 96.664062 251.054688 96.546875 251.054688 C 96.429688 251.054688 96.335938 251.148438 96.335938 251.265625 C 96.335938 251.382812 96.429688 251.476562 96.546875 251.476562 C 96.664062 251.476562 96.757812 251.382812 96.757812 251.265625 Z M 96.757812 251.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.492188 250.273438 C 94.492188 250.15625 94.398438 250.0625 94.28125 250.0625 C 94.164062 250.0625 94.070312 250.15625 94.070312 250.273438 C 94.070312 250.390625 94.164062 250.484375 94.28125 250.484375 C 94.398438 250.484375 94.492188 250.390625 94.492188 250.273438 Z M 94.492188 250.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.390625 246.417969 C 93.390625 246.300781 93.296875 246.207031 93.179688 246.207031 C 93.0625 246.207031 92.96875 246.300781 92.96875 246.417969 C 92.96875 246.535156 93.0625 246.628906 93.179688 246.628906 C 93.296875 246.628906 93.390625 246.535156 93.390625 246.417969 Z M 93.390625 246.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.09375 246.007812 C 92.09375 245.890625 92 245.796875 91.882812 245.796875 C 91.765625 245.796875 91.671875 245.890625 91.671875 246.007812 C 91.671875 246.125 91.765625 246.21875 91.882812 246.21875 C 92 246.21875 92.09375 246.125 92.09375 246.007812 Z M 92.09375 246.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.800781 247.089844 C 92.800781 246.972656 92.707031 246.878906 92.589844 246.878906 C 92.472656 246.878906 92.378906 246.972656 92.378906 247.089844 C 92.378906 247.207031 92.472656 247.300781 92.589844 247.300781 C 92.707031 247.300781 92.800781 247.207031 92.800781 247.089844 Z M 92.800781 247.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.640625 245.640625 C 93.640625 245.523438 93.546875 245.429688 93.429688 245.429688 C 93.3125 245.429688 93.21875 245.523438 93.21875 245.640625 C 93.21875 245.757812 93.3125 245.851562 93.429688 245.851562 C 93.546875 245.851562 93.640625 245.757812 93.640625 245.640625 Z M 93.640625 245.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.386719 246.804688 C 96.386719 246.6875 96.292969 246.59375 96.175781 246.59375 C 96.058594 246.59375 95.964844 246.6875 95.964844 246.804688 C 95.964844 246.921875 96.058594 247.015625 96.175781 247.015625 C 96.292969 247.015625 96.386719 246.921875 96.386719 246.804688 Z M 96.386719 246.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.425781 246.65625 C 93.425781 246.539062 93.332031 246.445312 93.214844 246.445312 C 93.097656 246.445312 93.003906 246.539062 93.003906 246.65625 C 93.003906 246.773438 93.097656 246.867188 93.214844 246.867188 C 93.332031 246.867188 93.425781 246.773438 93.425781 246.65625 Z M 93.425781 246.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.582031 246.890625 C 90.582031 246.773438 90.488281 246.679688 90.371094 246.679688 C 90.253906 246.679688 90.160156 246.773438 90.160156 246.890625 C 90.160156 247.007812 90.253906 247.101562 90.371094 247.101562 C 90.488281 247.101562 90.582031 247.007812 90.582031 246.890625 Z M 90.582031 246.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.246094 246.730469 C 92.246094 246.613281 92.152344 246.519531 92.035156 246.519531 C 91.917969 246.519531 91.824219 246.613281 91.824219 246.730469 C 91.824219 246.847656 91.917969 246.941406 92.035156 246.941406 C 92.152344 246.941406 92.246094 246.847656 92.246094 246.730469 Z M 92.246094 246.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.019531 244.882812 C 96.019531 244.765625 95.925781 244.671875 95.808594 244.671875 C 95.691406 244.671875 95.597656 244.765625 95.597656 244.882812 C 95.597656 245 95.691406 245.09375 95.808594 245.09375 C 95.925781 245.09375 96.019531 245 96.019531 244.882812 Z M 96.019531 244.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.488281 246.347656 C 95.488281 246.230469 95.394531 246.136719 95.277344 246.136719 C 95.160156 246.136719 95.066406 246.230469 95.066406 246.347656 C 95.066406 246.464844 95.160156 246.558594 95.277344 246.558594 C 95.394531 246.558594 95.488281 246.464844 95.488281 246.347656 Z M 95.488281 246.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.621094 247.964844 C 95.621094 247.847656 95.527344 247.753906 95.410156 247.753906 C 95.292969 247.753906 95.199219 247.847656 95.199219 247.964844 C 95.199219 248.082031 95.292969 248.175781 95.410156 248.175781 C 95.527344 248.175781 95.621094 248.082031 95.621094 247.964844 Z M 95.621094 247.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.570312 248.488281 C 97.570312 248.371094 97.476562 248.277344 97.359375 248.277344 C 97.242188 248.277344 97.148438 248.371094 97.148438 248.488281 C 97.148438 248.605469 97.242188 248.699219 97.359375 248.699219 C 97.476562 248.699219 97.570312 248.605469 97.570312 248.488281 Z M 97.570312 248.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.542969 244.386719 C 97.542969 244.269531 97.449219 244.175781 97.332031 244.175781 C 97.214844 244.175781 97.121094 244.269531 97.121094 244.386719 C 97.121094 244.503906 97.214844 244.597656 97.332031 244.597656 C 97.449219 244.597656 97.542969 244.503906 97.542969 244.386719 Z M 97.542969 244.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.398438 244.3125 C 99.398438 244.195312 99.304688 244.101562 99.1875 244.101562 C 99.070312 244.101562 98.976562 244.195312 98.976562 244.3125 C 98.976562 244.429688 99.070312 244.523438 99.1875 244.523438 C 99.304688 244.523438 99.398438 244.429688 99.398438 244.3125 Z M 99.398438 244.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.484375 242.542969 C 100.484375 242.425781 100.390625 242.332031 100.273438 242.332031 C 100.15625 242.332031 100.0625 242.425781 100.0625 242.542969 C 100.0625 242.660156 100.15625 242.753906 100.273438 242.753906 C 100.390625 242.753906 100.484375 242.660156 100.484375 242.542969 Z M 100.484375 242.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.964844 244.714844 C 101.964844 244.597656 101.871094 244.503906 101.753906 244.503906 C 101.636719 244.503906 101.542969 244.597656 101.542969 244.714844 C 101.542969 244.832031 101.636719 244.925781 101.753906 244.925781 C 101.871094 244.925781 101.964844 244.832031 101.964844 244.714844 Z M 101.964844 244.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.113281 241.617188 C 103.113281 241.5 103.019531 241.40625 102.902344 241.40625 C 102.785156 241.40625 102.691406 241.5 102.691406 241.617188 C 102.691406 241.734375 102.785156 241.828125 102.902344 241.828125 C 103.019531 241.828125 103.113281 241.734375 103.113281 241.617188 Z M 103.113281 241.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.207031 246.632812 C 99.207031 246.515625 99.113281 246.421875 98.996094 246.421875 C 98.878906 246.421875 98.785156 246.515625 98.785156 246.632812 C 98.785156 246.75 98.878906 246.84375 98.996094 246.84375 C 99.113281 246.84375 99.207031 246.75 99.207031 246.632812 Z M 99.207031 246.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 102.765625 248.007812 C 102.765625 247.890625 102.671875 247.796875 102.554688 247.796875 C 102.4375 247.796875 102.34375 247.890625 102.34375 248.007812 C 102.34375 248.125 102.4375 248.21875 102.554688 248.21875 C 102.671875 248.21875 102.765625 248.125 102.765625 248.007812 Z M 102.765625 248.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.148438 246.042969 C 106.148438 245.925781 106.054688 245.832031 105.9375 245.832031 C 105.820312 245.832031 105.726562 245.925781 105.726562 246.042969 C 105.726562 246.160156 105.820312 246.253906 105.9375 246.253906 C 106.054688 246.253906 106.148438 246.160156 106.148438 246.042969 Z M 106.148438 246.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.164062 246.84375 C 103.164062 246.726562 103.070312 246.632812 102.953125 246.632812 C 102.835938 246.632812 102.742188 246.726562 102.742188 246.84375 C 102.742188 246.960938 102.835938 247.054688 102.953125 247.054688 C 103.070312 247.054688 103.164062 246.960938 103.164062 246.84375 Z M 103.164062 246.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.988281 248.90625 C 98.988281 248.789062 98.894531 248.695312 98.777344 248.695312 C 98.660156 248.695312 98.566406 248.789062 98.566406 248.90625 C 98.566406 249.023438 98.660156 249.117188 98.777344 249.117188 C 98.894531 249.117188 98.988281 249.023438 98.988281 248.90625 Z M 98.988281 248.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.527344 248.34375 C 99.527344 248.226562 99.433594 248.132812 99.316406 248.132812 C 99.199219 248.132812 99.105469 248.226562 99.105469 248.34375 C 99.105469 248.460938 99.199219 248.554688 99.316406 248.554688 C 99.433594 248.554688 99.527344 248.460938 99.527344 248.34375 Z M 99.527344 248.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.464844 249.175781 C 99.464844 249.058594 99.371094 248.964844 99.253906 248.964844 C 99.136719 248.964844 99.042969 249.058594 99.042969 249.175781 C 99.042969 249.292969 99.136719 249.386719 99.253906 249.386719 C 99.371094 249.386719 99.464844 249.292969 99.464844 249.175781 Z M 99.464844 249.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.535156 248.53125 C 95.535156 248.414062 95.441406 248.320312 95.324219 248.320312 C 95.207031 248.320312 95.113281 248.414062 95.113281 248.53125 C 95.113281 248.648438 95.207031 248.742188 95.324219 248.742188 C 95.441406 248.742188 95.535156 248.648438 95.535156 248.53125 Z M 95.535156 248.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.148438 247.578125 C 97.148438 247.460938 97.054688 247.367188 96.9375 247.367188 C 96.820312 247.367188 96.726562 247.460938 96.726562 247.578125 C 96.726562 247.695312 96.820312 247.789062 96.9375 247.789062 C 97.054688 247.789062 97.148438 247.695312 97.148438 247.578125 Z M 97.148438 247.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.1875 245.949219 C 96.1875 245.832031 96.09375 245.738281 95.976562 245.738281 C 95.859375 245.738281 95.765625 245.832031 95.765625 245.949219 C 95.765625 246.066406 95.859375 246.160156 95.976562 246.160156 C 96.09375 246.160156 96.1875 246.066406 96.1875 245.949219 Z M 96.1875 245.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.976562 246.457031 C 92.976562 246.339844 92.882812 246.246094 92.765625 246.246094 C 92.648438 246.246094 92.554688 246.339844 92.554688 246.457031 C 92.554688 246.574219 92.648438 246.667969 92.765625 246.667969 C 92.882812 246.667969 92.976562 246.574219 92.976562 246.457031 Z M 92.976562 246.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.910156 245.636719 C 95.910156 245.519531 95.816406 245.425781 95.699219 245.425781 C 95.582031 245.425781 95.488281 245.519531 95.488281 245.636719 C 95.488281 245.753906 95.582031 245.847656 95.699219 245.847656 C 95.816406 245.847656 95.910156 245.753906 95.910156 245.636719 Z M 95.910156 245.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.882812 243.214844 C 95.882812 243.097656 95.789062 243.003906 95.671875 243.003906 C 95.554688 243.003906 95.460938 243.097656 95.460938 243.214844 C 95.460938 243.332031 95.554688 243.425781 95.671875 243.425781 C 95.789062 243.425781 95.882812 243.332031 95.882812 243.214844 Z M 95.882812 243.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.777344 240.027344 C 94.777344 239.910156 94.683594 239.816406 94.566406 239.816406 C 94.449219 239.816406 94.355469 239.910156 94.355469 240.027344 C 94.355469 240.144531 94.449219 240.238281 94.566406 240.238281 C 94.683594 240.238281 94.777344 240.144531 94.777344 240.027344 Z M 94.777344 240.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.0625 240.117188 C 93.0625 240 92.96875 239.90625 92.851562 239.90625 C 92.734375 239.90625 92.640625 240 92.640625 240.117188 C 92.640625 240.234375 92.734375 240.328125 92.851562 240.328125 C 92.96875 240.328125 93.0625 240.234375 93.0625 240.117188 Z M 93.0625 240.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.480469 242.949219 C 90.480469 242.832031 90.386719 242.738281 90.269531 242.738281 C 90.152344 242.738281 90.058594 242.832031 90.058594 242.949219 C 90.058594 243.066406 90.152344 243.160156 90.269531 243.160156 C 90.386719 243.160156 90.480469 243.066406 90.480469 242.949219 Z M 90.480469 242.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.113281 244.675781 C 93.113281 244.558594 93.019531 244.464844 92.902344 244.464844 C 92.785156 244.464844 92.691406 244.558594 92.691406 244.675781 C 92.691406 244.792969 92.785156 244.886719 92.902344 244.886719 C 93.019531 244.886719 93.113281 244.792969 93.113281 244.675781 Z M 93.113281 244.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.660156 242.03125 C 94.660156 241.914062 94.566406 241.820312 94.449219 241.820312 C 94.332031 241.820312 94.238281 241.914062 94.238281 242.03125 C 94.238281 242.148438 94.332031 242.242188 94.449219 242.242188 C 94.566406 242.242188 94.660156 242.148438 94.660156 242.03125 Z M 94.660156 242.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.695312 244.234375 C 92.695312 244.117188 92.601562 244.023438 92.484375 244.023438 C 92.367188 244.023438 92.273438 244.117188 92.273438 244.234375 C 92.273438 244.351562 92.367188 244.445312 92.484375 244.445312 C 92.601562 244.445312 92.695312 244.351562 92.695312 244.234375 Z M 92.695312 244.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.609375 246.316406 C 96.609375 246.199219 96.515625 246.105469 96.398438 246.105469 C 96.28125 246.105469 96.1875 246.199219 96.1875 246.316406 C 96.1875 246.433594 96.28125 246.527344 96.398438 246.527344 C 96.515625 246.527344 96.609375 246.433594 96.609375 246.316406 Z M 96.609375 246.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.847656 247.308594 C 97.847656 247.191406 97.753906 247.097656 97.636719 247.097656 C 97.519531 247.097656 97.425781 247.191406 97.425781 247.308594 C 97.425781 247.425781 97.519531 247.519531 97.636719 247.519531 C 97.753906 247.519531 97.847656 247.425781 97.847656 247.308594 Z M 97.847656 247.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.523438 247.929688 C 97.523438 247.8125 97.429688 247.71875 97.3125 247.71875 C 97.195312 247.71875 97.101562 247.8125 97.101562 247.929688 C 97.101562 248.046875 97.195312 248.140625 97.3125 248.140625 C 97.429688 248.140625 97.523438 248.046875 97.523438 247.929688 Z M 97.523438 247.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.371094 248.859375 C 97.371094 248.742188 97.277344 248.648438 97.160156 248.648438 C 97.042969 248.648438 96.949219 248.742188 96.949219 248.859375 C 96.949219 248.976562 97.042969 249.070312 97.160156 249.070312 C 97.277344 249.070312 97.371094 248.976562 97.371094 248.859375 Z M 97.371094 248.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.753906 247.929688 C 95.753906 247.8125 95.660156 247.71875 95.542969 247.71875 C 95.425781 247.71875 95.332031 247.8125 95.332031 247.929688 C 95.332031 248.046875 95.425781 248.140625 95.542969 248.140625 C 95.660156 248.140625 95.753906 248.046875 95.753906 247.929688 Z M 95.753906 247.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.195312 250.269531 C 98.195312 250.152344 98.101562 250.058594 97.984375 250.058594 C 97.867188 250.058594 97.773438 250.152344 97.773438 250.269531 C 97.773438 250.386719 97.867188 250.480469 97.984375 250.480469 C 98.101562 250.480469 98.195312 250.386719 98.195312 250.269531 Z M 98.195312 250.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.507812 248.273438 C 95.507812 248.15625 95.414062 248.0625 95.296875 248.0625 C 95.179688 248.0625 95.085938 248.15625 95.085938 248.273438 C 95.085938 248.390625 95.179688 248.484375 95.296875 248.484375 C 95.414062 248.484375 95.507812 248.390625 95.507812 248.273438 Z M 95.507812 248.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.996094 247.449219 C 92.996094 247.332031 92.902344 247.238281 92.785156 247.238281 C 92.667969 247.238281 92.574219 247.332031 92.574219 247.449219 C 92.574219 247.566406 92.667969 247.660156 92.785156 247.660156 C 92.902344 247.660156 92.996094 247.566406 92.996094 247.449219 Z M 92.996094 247.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.289062 251.15625 C 92.289062 251.039062 92.195312 250.945312 92.078125 250.945312 C 91.960938 250.945312 91.867188 251.039062 91.867188 251.15625 C 91.867188 251.273438 91.960938 251.367188 92.078125 251.367188 C 92.195312 251.367188 92.289062 251.273438 92.289062 251.15625 Z M 92.289062 251.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.296875 251.015625 C 92.296875 250.898438 92.203125 250.804688 92.085938 250.804688 C 91.96875 250.804688 91.875 250.898438 91.875 251.015625 C 91.875 251.132812 91.96875 251.226562 92.085938 251.226562 C 92.203125 251.226562 92.296875 251.132812 92.296875 251.015625 Z M 92.296875 251.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.144531 252.464844 C 92.144531 252.347656 92.050781 252.253906 91.933594 252.253906 C 91.816406 252.253906 91.722656 252.347656 91.722656 252.464844 C 91.722656 252.582031 91.816406 252.675781 91.933594 252.675781 C 92.050781 252.675781 92.144531 252.582031 92.144531 252.464844 Z M 92.144531 252.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.101562 250.269531 C 92.101562 250.152344 92.007812 250.058594 91.890625 250.058594 C 91.773438 250.058594 91.679688 250.152344 91.679688 250.269531 C 91.679688 250.386719 91.773438 250.480469 91.890625 250.480469 C 92.007812 250.480469 92.101562 250.386719 92.101562 250.269531 Z M 92.101562 250.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.613281 246.582031 C 94.613281 246.464844 94.519531 246.371094 94.402344 246.371094 C 94.285156 246.371094 94.191406 246.464844 94.191406 246.582031 C 94.191406 246.699219 94.285156 246.792969 94.402344 246.792969 C 94.519531 246.792969 94.613281 246.699219 94.613281 246.582031 Z M 94.613281 246.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.25 247.75 C 93.25 247.632812 93.15625 247.539062 93.039062 247.539062 C 92.921875 247.539062 92.828125 247.632812 92.828125 247.75 C 92.828125 247.867188 92.921875 247.960938 93.039062 247.960938 C 93.15625 247.960938 93.25 247.867188 93.25 247.75 Z M 93.25 247.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.570312 250.585938 C 92.570312 250.46875 92.476562 250.375 92.359375 250.375 C 92.242188 250.375 92.148438 250.46875 92.148438 250.585938 C 92.148438 250.703125 92.242188 250.796875 92.359375 250.796875 C 92.476562 250.796875 92.570312 250.703125 92.570312 250.585938 Z M 92.570312 250.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.574219 248.386719 C 93.574219 248.269531 93.480469 248.175781 93.363281 248.175781 C 93.246094 248.175781 93.152344 248.269531 93.152344 248.386719 C 93.152344 248.503906 93.246094 248.597656 93.363281 248.597656 C 93.480469 248.597656 93.574219 248.503906 93.574219 248.386719 Z M 93.574219 248.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.296875 245.457031 C 93.296875 245.339844 93.203125 245.246094 93.085938 245.246094 C 92.96875 245.246094 92.875 245.339844 92.875 245.457031 C 92.875 245.574219 92.96875 245.667969 93.085938 245.667969 C 93.203125 245.667969 93.296875 245.574219 93.296875 245.457031 Z M 93.296875 245.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.636719 245.441406 C 90.636719 245.324219 90.542969 245.230469 90.425781 245.230469 C 90.308594 245.230469 90.214844 245.324219 90.214844 245.441406 C 90.214844 245.558594 90.308594 245.652344 90.425781 245.652344 C 90.542969 245.652344 90.636719 245.558594 90.636719 245.441406 Z M 90.636719 245.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.671875 245.132812 C 90.671875 245.015625 90.578125 244.921875 90.460938 244.921875 C 90.34375 244.921875 90.25 245.015625 90.25 245.132812 C 90.25 245.25 90.34375 245.34375 90.460938 245.34375 C 90.578125 245.34375 90.671875 245.25 90.671875 245.132812 Z M 90.671875 245.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.738281 243.238281 C 89.738281 243.121094 89.644531 243.027344 89.527344 243.027344 C 89.410156 243.027344 89.316406 243.121094 89.316406 243.238281 C 89.316406 243.355469 89.410156 243.449219 89.527344 243.449219 C 89.644531 243.449219 89.738281 243.355469 89.738281 243.238281 Z M 89.738281 243.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.105469 240.734375 C 88.105469 240.617188 88.011719 240.523438 87.894531 240.523438 C 87.777344 240.523438 87.683594 240.617188 87.683594 240.734375 C 87.683594 240.851562 87.777344 240.945312 87.894531 240.945312 C 88.011719 240.945312 88.105469 240.851562 88.105469 240.734375 Z M 88.105469 240.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.53125 236.554688 C 87.53125 236.4375 87.4375 236.34375 87.320312 236.34375 C 87.203125 236.34375 87.109375 236.4375 87.109375 236.554688 C 87.109375 236.671875 87.203125 236.765625 87.320312 236.765625 C 87.4375 236.765625 87.53125 236.671875 87.53125 236.554688 Z M 87.53125 236.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.09375 237.394531 C 84.09375 237.277344 84 237.183594 83.882812 237.183594 C 83.765625 237.183594 83.671875 237.277344 83.671875 237.394531 C 83.671875 237.511719 83.765625 237.605469 83.882812 237.605469 C 84 237.605469 84.09375 237.511719 84.09375 237.394531 Z M 84.09375 237.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.476562 233.15625 C 85.476562 233.039062 85.382812 232.945312 85.265625 232.945312 C 85.148438 232.945312 85.054688 233.039062 85.054688 233.15625 C 85.054688 233.273438 85.148438 233.367188 85.265625 233.367188 C 85.382812 233.367188 85.476562 233.273438 85.476562 233.15625 Z M 85.476562 233.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.273438 233.433594 C 83.273438 233.316406 83.179688 233.222656 83.0625 233.222656 C 82.945312 233.222656 82.851562 233.316406 82.851562 233.433594 C 82.851562 233.550781 82.945312 233.644531 83.0625 233.644531 C 83.179688 233.644531 83.273438 233.550781 83.273438 233.433594 Z M 83.273438 233.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.925781 233.734375 C 83.925781 233.617188 83.832031 233.523438 83.714844 233.523438 C 83.597656 233.523438 83.503906 233.617188 83.503906 233.734375 C 83.503906 233.851562 83.597656 233.945312 83.714844 233.945312 C 83.832031 233.945312 83.925781 233.851562 83.925781 233.734375 Z M 83.925781 233.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.578125 234.710938 C 81.578125 234.59375 81.484375 234.5 81.367188 234.5 C 81.25 234.5 81.15625 234.59375 81.15625 234.710938 C 81.15625 234.828125 81.25 234.921875 81.367188 234.921875 C 81.484375 234.921875 81.578125 234.828125 81.578125 234.710938 Z M 81.578125 234.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.882812 238.0625 C 80.882812 237.945312 80.789062 237.851562 80.671875 237.851562 C 80.554688 237.851562 80.460938 237.945312 80.460938 238.0625 C 80.460938 238.179688 80.554688 238.273438 80.671875 238.273438 C 80.789062 238.273438 80.882812 238.179688 80.882812 238.0625 Z M 80.882812 238.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.1875 238.046875 C 84.1875 237.929688 84.09375 237.835938 83.976562 237.835938 C 83.859375 237.835938 83.765625 237.929688 83.765625 238.046875 C 83.765625 238.164062 83.859375 238.257812 83.976562 238.257812 C 84.09375 238.257812 84.1875 238.164062 84.1875 238.046875 Z M 84.1875 238.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.855469 235.097656 C 82.855469 234.980469 82.761719 234.886719 82.644531 234.886719 C 82.527344 234.886719 82.433594 234.980469 82.433594 235.097656 C 82.433594 235.214844 82.527344 235.308594 82.644531 235.308594 C 82.761719 235.308594 82.855469 235.214844 82.855469 235.097656 Z M 82.855469 235.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.652344 239.574219 C 82.652344 239.457031 82.558594 239.363281 82.441406 239.363281 C 82.324219 239.363281 82.230469 239.457031 82.230469 239.574219 C 82.230469 239.691406 82.324219 239.785156 82.441406 239.785156 C 82.558594 239.785156 82.652344 239.691406 82.652344 239.574219 Z M 82.652344 239.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.957031 240.203125 C 80.957031 240.085938 80.863281 239.992188 80.746094 239.992188 C 80.628906 239.992188 80.535156 240.085938 80.535156 240.203125 C 80.535156 240.320312 80.628906 240.414062 80.746094 240.414062 C 80.863281 240.414062 80.957031 240.320312 80.957031 240.203125 Z M 80.957031 240.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.386719 238.1875 C 81.386719 238.070312 81.292969 237.976562 81.175781 237.976562 C 81.058594 237.976562 80.964844 238.070312 80.964844 238.1875 C 80.964844 238.304688 81.058594 238.398438 81.175781 238.398438 C 81.292969 238.398438 81.386719 238.304688 81.386719 238.1875 Z M 81.386719 238.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.820312 240.34375 C 81.820312 240.226562 81.726562 240.132812 81.609375 240.132812 C 81.492188 240.132812 81.398438 240.226562 81.398438 240.34375 C 81.398438 240.460938 81.492188 240.554688 81.609375 240.554688 C 81.726562 240.554688 81.820312 240.460938 81.820312 240.34375 Z M 81.820312 240.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.667969 241.46875 C 79.667969 241.351562 79.574219 241.257812 79.457031 241.257812 C 79.339844 241.257812 79.246094 241.351562 79.246094 241.46875 C 79.246094 241.585938 79.339844 241.679688 79.457031 241.679688 C 79.574219 241.679688 79.667969 241.585938 79.667969 241.46875 Z M 79.667969 241.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.660156 237.851562 C 83.660156 237.734375 83.566406 237.640625 83.449219 237.640625 C 83.332031 237.640625 83.238281 237.734375 83.238281 237.851562 C 83.238281 237.96875 83.332031 238.0625 83.449219 238.0625 C 83.566406 238.0625 83.660156 237.96875 83.660156 237.851562 Z M 83.660156 237.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.1875 238.308594 C 84.1875 238.191406 84.09375 238.097656 83.976562 238.097656 C 83.859375 238.097656 83.765625 238.191406 83.765625 238.308594 C 83.765625 238.425781 83.859375 238.519531 83.976562 238.519531 C 84.09375 238.519531 84.1875 238.425781 84.1875 238.308594 Z M 84.1875 238.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 78.929688 240.066406 C 78.929688 239.949219 78.835938 239.855469 78.71875 239.855469 C 78.601562 239.855469 78.507812 239.949219 78.507812 240.066406 C 78.507812 240.183594 78.601562 240.277344 78.71875 240.277344 C 78.835938 240.277344 78.929688 240.183594 78.929688 240.066406 Z M 78.929688 240.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.109375 243.175781 C 80.109375 243.058594 80.015625 242.964844 79.898438 242.964844 C 79.78125 242.964844 79.6875 243.058594 79.6875 243.175781 C 79.6875 243.292969 79.78125 243.386719 79.898438 243.386719 C 80.015625 243.386719 80.109375 243.292969 80.109375 243.175781 Z M 80.109375 243.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.03125 240.699219 C 81.03125 240.582031 80.9375 240.488281 80.820312 240.488281 C 80.703125 240.488281 80.609375 240.582031 80.609375 240.699219 C 80.609375 240.816406 80.703125 240.910156 80.820312 240.910156 C 80.9375 240.910156 81.03125 240.816406 81.03125 240.699219 Z M 81.03125 240.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.875 243.410156 C 80.875 243.292969 80.78125 243.199219 80.664062 243.199219 C 80.546875 243.199219 80.453125 243.292969 80.453125 243.410156 C 80.453125 243.527344 80.546875 243.621094 80.664062 243.621094 C 80.78125 243.621094 80.875 243.527344 80.875 243.410156 Z M 80.875 243.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 76.605469 242.535156 C 76.605469 242.417969 76.511719 242.324219 76.394531 242.324219 C 76.277344 242.324219 76.183594 242.417969 76.183594 242.535156 C 76.183594 242.652344 76.277344 242.746094 76.394531 242.746094 C 76.511719 242.746094 76.605469 242.652344 76.605469 242.535156 Z M 76.605469 242.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 74.464844 242.769531 C 74.464844 242.652344 74.371094 242.558594 74.253906 242.558594 C 74.136719 242.558594 74.042969 242.652344 74.042969 242.769531 C 74.042969 242.886719 74.136719 242.980469 74.253906 242.980469 C 74.371094 242.980469 74.464844 242.886719 74.464844 242.769531 Z M 74.464844 242.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 75.65625 245.105469 C 75.65625 244.988281 75.5625 244.894531 75.445312 244.894531 C 75.328125 244.894531 75.234375 244.988281 75.234375 245.105469 C 75.234375 245.222656 75.328125 245.316406 75.445312 245.316406 C 75.5625 245.316406 75.65625 245.222656 75.65625 245.105469 Z M 75.65625 245.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 78.203125 244.007812 C 78.203125 243.890625 78.109375 243.796875 77.992188 243.796875 C 77.875 243.796875 77.78125 243.890625 77.78125 244.007812 C 77.78125 244.125 77.875 244.21875 77.992188 244.21875 C 78.109375 244.21875 78.203125 244.125 78.203125 244.007812 Z M 78.203125 244.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 77.230469 250.28125 C 77.230469 250.164062 77.136719 250.070312 77.019531 250.070312 C 76.902344 250.070312 76.808594 250.164062 76.808594 250.28125 C 76.808594 250.398438 76.902344 250.492188 77.019531 250.492188 C 77.136719 250.492188 77.230469 250.398438 77.230469 250.28125 Z M 77.230469 250.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.3125 253.378906 C 80.3125 253.261719 80.21875 253.167969 80.101562 253.167969 C 79.984375 253.167969 79.890625 253.261719 79.890625 253.378906 C 79.890625 253.496094 79.984375 253.589844 80.101562 253.589844 C 80.21875 253.589844 80.3125 253.496094 80.3125 253.378906 Z M 80.3125 253.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.425781 253.066406 C 79.425781 252.949219 79.332031 252.855469 79.214844 252.855469 C 79.097656 252.855469 79.003906 252.949219 79.003906 253.066406 C 79.003906 253.183594 79.097656 253.277344 79.214844 253.277344 C 79.332031 253.277344 79.425781 253.183594 79.425781 253.066406 Z M 79.425781 253.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.929688 255.851562 C 79.929688 255.734375 79.835938 255.640625 79.71875 255.640625 C 79.601562 255.640625 79.507812 255.734375 79.507812 255.851562 C 79.507812 255.96875 79.601562 256.0625 79.71875 256.0625 C 79.835938 256.0625 79.929688 255.96875 79.929688 255.851562 Z M 79.929688 255.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 76.554688 255 C 76.554688 254.882812 76.460938 254.789062 76.34375 254.789062 C 76.226562 254.789062 76.132812 254.882812 76.132812 255 C 76.132812 255.117188 76.226562 255.210938 76.34375 255.210938 C 76.460938 255.210938 76.554688 255.117188 76.554688 255 Z M 76.554688 255 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.109375 256.492188 C 81.109375 256.375 81.015625 256.28125 80.898438 256.28125 C 80.78125 256.28125 80.6875 256.375 80.6875 256.492188 C 80.6875 256.609375 80.78125 256.703125 80.898438 256.703125 C 81.015625 256.703125 81.109375 256.609375 81.109375 256.492188 Z M 81.109375 256.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.742188 255.691406 C 84.742188 255.574219 84.648438 255.480469 84.53125 255.480469 C 84.414062 255.480469 84.320312 255.574219 84.320312 255.691406 C 84.320312 255.808594 84.414062 255.902344 84.53125 255.902344 C 84.648438 255.902344 84.742188 255.808594 84.742188 255.691406 Z M 84.742188 255.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.933594 258.046875 C 82.933594 257.929688 82.839844 257.835938 82.722656 257.835938 C 82.605469 257.835938 82.511719 257.929688 82.511719 258.046875 C 82.511719 258.164062 82.605469 258.257812 82.722656 258.257812 C 82.839844 258.257812 82.933594 258.164062 82.933594 258.046875 Z M 82.933594 258.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.910156 260.105469 C 79.910156 259.988281 79.816406 259.894531 79.699219 259.894531 C 79.582031 259.894531 79.488281 259.988281 79.488281 260.105469 C 79.488281 260.222656 79.582031 260.316406 79.699219 260.316406 C 79.816406 260.316406 79.910156 260.222656 79.910156 260.105469 Z M 79.910156 260.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.710938 263.390625 C 81.710938 263.273438 81.617188 263.179688 81.5 263.179688 C 81.382812 263.179688 81.289062 263.273438 81.289062 263.390625 C 81.289062 263.507812 81.382812 263.601562 81.5 263.601562 C 81.617188 263.601562 81.710938 263.507812 81.710938 263.390625 Z M 81.710938 263.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.972656 263.886719 C 84.972656 263.769531 84.878906 263.675781 84.761719 263.675781 C 84.644531 263.675781 84.550781 263.769531 84.550781 263.886719 C 84.550781 264.003906 84.644531 264.097656 84.761719 264.097656 C 84.878906 264.097656 84.972656 264.003906 84.972656 263.886719 Z M 84.972656 263.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.332031 264.113281 C 85.332031 263.996094 85.238281 263.902344 85.121094 263.902344 C 85.003906 263.902344 84.910156 263.996094 84.910156 264.113281 C 84.910156 264.230469 85.003906 264.324219 85.121094 264.324219 C 85.238281 264.324219 85.332031 264.230469 85.332031 264.113281 Z M 85.332031 264.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.058594 264.4375 C 84.058594 264.320312 83.964844 264.226562 83.847656 264.226562 C 83.730469 264.226562 83.636719 264.320312 83.636719 264.4375 C 83.636719 264.554688 83.730469 264.648438 83.847656 264.648438 C 83.964844 264.648438 84.058594 264.554688 84.058594 264.4375 Z M 84.058594 264.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.5 264.75 C 87.5 264.632812 87.40625 264.539062 87.289062 264.539062 C 87.171875 264.539062 87.078125 264.632812 87.078125 264.75 C 87.078125 264.867188 87.171875 264.960938 87.289062 264.960938 C 87.40625 264.960938 87.5 264.867188 87.5 264.75 Z M 87.5 264.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.6875 264.90625 C 89.6875 264.789062 89.59375 264.695312 89.476562 264.695312 C 89.359375 264.695312 89.265625 264.789062 89.265625 264.90625 C 89.265625 265.023438 89.359375 265.117188 89.476562 265.117188 C 89.59375 265.117188 89.6875 265.023438 89.6875 264.90625 Z M 89.6875 264.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.171875 265.3125 C 86.171875 265.195312 86.078125 265.101562 85.960938 265.101562 C 85.84375 265.101562 85.75 265.195312 85.75 265.3125 C 85.75 265.429688 85.84375 265.523438 85.960938 265.523438 C 86.078125 265.523438 86.171875 265.429688 86.171875 265.3125 Z M 86.171875 265.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.9375 265.191406 C 83.9375 265.074219 83.84375 264.980469 83.726562 264.980469 C 83.609375 264.980469 83.515625 265.074219 83.515625 265.191406 C 83.515625 265.308594 83.609375 265.402344 83.726562 265.402344 C 83.84375 265.402344 83.9375 265.308594 83.9375 265.191406 Z M 83.9375 265.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.710938 260.667969 C 84.710938 260.550781 84.617188 260.457031 84.5 260.457031 C 84.382812 260.457031 84.289062 260.550781 84.289062 260.667969 C 84.289062 260.785156 84.382812 260.878906 84.5 260.878906 C 84.617188 260.878906 84.710938 260.785156 84.710938 260.667969 Z M 84.710938 260.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.703125 259.496094 C 86.703125 259.378906 86.609375 259.285156 86.492188 259.285156 C 86.375 259.285156 86.28125 259.378906 86.28125 259.496094 C 86.28125 259.613281 86.375 259.707031 86.492188 259.707031 C 86.609375 259.707031 86.703125 259.613281 86.703125 259.496094 Z M 86.703125 259.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.597656 259.378906 C 85.597656 259.261719 85.503906 259.167969 85.386719 259.167969 C 85.269531 259.167969 85.175781 259.261719 85.175781 259.378906 C 85.175781 259.496094 85.269531 259.589844 85.386719 259.589844 C 85.503906 259.589844 85.597656 259.496094 85.597656 259.378906 Z M 85.597656 259.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.894531 258.285156 C 82.894531 258.167969 82.800781 258.074219 82.683594 258.074219 C 82.566406 258.074219 82.472656 258.167969 82.472656 258.285156 C 82.472656 258.402344 82.566406 258.496094 82.683594 258.496094 C 82.800781 258.496094 82.894531 258.402344 82.894531 258.285156 Z M 82.894531 258.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.75 257.714844 C 86.75 257.597656 86.65625 257.503906 86.539062 257.503906 C 86.421875 257.503906 86.328125 257.597656 86.328125 257.714844 C 86.328125 257.832031 86.421875 257.925781 86.539062 257.925781 C 86.65625 257.925781 86.75 257.832031 86.75 257.714844 Z M 86.75 257.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.652344 251.09375 C 85.652344 250.976562 85.558594 250.882812 85.441406 250.882812 C 85.324219 250.882812 85.230469 250.976562 85.230469 251.09375 C 85.230469 251.210938 85.324219 251.304688 85.441406 251.304688 C 85.558594 251.304688 85.652344 251.210938 85.652344 251.09375 Z M 85.652344 251.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.796875 249.609375 C 86.796875 249.492188 86.703125 249.398438 86.585938 249.398438 C 86.46875 249.398438 86.375 249.492188 86.375 249.609375 C 86.375 249.726562 86.46875 249.820312 86.585938 249.820312 C 86.703125 249.820312 86.796875 249.726562 86.796875 249.609375 Z M 86.796875 249.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.21875 254.003906 C 88.21875 253.886719 88.125 253.792969 88.007812 253.792969 C 87.890625 253.792969 87.796875 253.886719 87.796875 254.003906 C 87.796875 254.121094 87.890625 254.214844 88.007812 254.214844 C 88.125 254.214844 88.21875 254.121094 88.21875 254.003906 Z M 88.21875 254.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.492188 255.933594 C 89.492188 255.816406 89.398438 255.722656 89.28125 255.722656 C 89.164062 255.722656 89.070312 255.816406 89.070312 255.933594 C 89.070312 256.050781 89.164062 256.144531 89.28125 256.144531 C 89.398438 256.144531 89.492188 256.050781 89.492188 255.933594 Z M 89.492188 255.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.5625 254.554688 C 87.5625 254.4375 87.46875 254.34375 87.351562 254.34375 C 87.234375 254.34375 87.140625 254.4375 87.140625 254.554688 C 87.140625 254.671875 87.234375 254.765625 87.351562 254.765625 C 87.46875 254.765625 87.5625 254.671875 87.5625 254.554688 Z M 87.5625 254.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.902344 253.394531 C 86.902344 253.277344 86.808594 253.183594 86.691406 253.183594 C 86.574219 253.183594 86.480469 253.277344 86.480469 253.394531 C 86.480469 253.511719 86.574219 253.605469 86.691406 253.605469 C 86.808594 253.605469 86.902344 253.511719 86.902344 253.394531 Z M 86.902344 253.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.480469 250.195312 C 84.480469 250.078125 84.386719 249.984375 84.269531 249.984375 C 84.152344 249.984375 84.058594 250.078125 84.058594 250.195312 C 84.058594 250.3125 84.152344 250.40625 84.269531 250.40625 C 84.386719 250.40625 84.480469 250.3125 84.480469 250.195312 Z M 84.480469 250.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.066406 251.71875 C 87.066406 251.601562 86.972656 251.507812 86.855469 251.507812 C 86.738281 251.507812 86.644531 251.601562 86.644531 251.71875 C 86.644531 251.835938 86.738281 251.929688 86.855469 251.929688 C 86.972656 251.929688 87.066406 251.835938 87.066406 251.71875 Z M 87.066406 251.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.300781 250.628906 C 83.300781 250.511719 83.207031 250.417969 83.089844 250.417969 C 82.972656 250.417969 82.878906 250.511719 82.878906 250.628906 C 82.878906 250.746094 82.972656 250.839844 83.089844 250.839844 C 83.207031 250.839844 83.300781 250.746094 83.300781 250.628906 Z M 83.300781 250.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.71875 249.140625 C 83.71875 249.023438 83.625 248.929688 83.507812 248.929688 C 83.390625 248.929688 83.296875 249.023438 83.296875 249.140625 C 83.296875 249.257812 83.390625 249.351562 83.507812 249.351562 C 83.625 249.351562 83.71875 249.257812 83.71875 249.140625 Z M 83.71875 249.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.296875 251.503906 C 82.296875 251.386719 82.203125 251.292969 82.085938 251.292969 C 81.96875 251.292969 81.875 251.386719 81.875 251.503906 C 81.875 251.621094 81.96875 251.714844 82.085938 251.714844 C 82.203125 251.714844 82.296875 251.621094 82.296875 251.503906 Z M 82.296875 251.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.425781 249.210938 C 79.425781 249.09375 79.332031 249 79.214844 249 C 79.097656 249 79.003906 249.09375 79.003906 249.210938 C 79.003906 249.328125 79.097656 249.421875 79.214844 249.421875 C 79.332031 249.421875 79.425781 249.328125 79.425781 249.210938 Z M 79.425781 249.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.417969 251.144531 C 81.417969 251.027344 81.324219 250.933594 81.207031 250.933594 C 81.089844 250.933594 80.996094 251.027344 80.996094 251.144531 C 80.996094 251.261719 81.089844 251.355469 81.207031 251.355469 C 81.324219 251.355469 81.417969 251.261719 81.417969 251.144531 Z M 81.417969 251.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.855469 250.460938 C 83.855469 250.34375 83.761719 250.25 83.644531 250.25 C 83.527344 250.25 83.433594 250.34375 83.433594 250.460938 C 83.433594 250.578125 83.527344 250.671875 83.644531 250.671875 C 83.761719 250.671875 83.855469 250.578125 83.855469 250.460938 Z M 83.855469 250.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.1875 250.769531 C 84.1875 250.652344 84.09375 250.558594 83.976562 250.558594 C 83.859375 250.558594 83.765625 250.652344 83.765625 250.769531 C 83.765625 250.886719 83.859375 250.980469 83.976562 250.980469 C 84.09375 250.980469 84.1875 250.886719 84.1875 250.769531 Z M 84.1875 250.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.226562 249.617188 C 82.226562 249.5 82.132812 249.40625 82.015625 249.40625 C 81.898438 249.40625 81.804688 249.5 81.804688 249.617188 C 81.804688 249.734375 81.898438 249.828125 82.015625 249.828125 C 82.132812 249.828125 82.226562 249.734375 82.226562 249.617188 Z M 82.226562 249.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.125 247.523438 C 81.125 247.40625 81.03125 247.3125 80.914062 247.3125 C 80.796875 247.3125 80.703125 247.40625 80.703125 247.523438 C 80.703125 247.640625 80.796875 247.734375 80.914062 247.734375 C 81.03125 247.734375 81.125 247.640625 81.125 247.523438 Z M 81.125 247.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.585938 248.335938 C 79.585938 248.21875 79.492188 248.125 79.375 248.125 C 79.257812 248.125 79.164062 248.21875 79.164062 248.335938 C 79.164062 248.453125 79.257812 248.546875 79.375 248.546875 C 79.492188 248.546875 79.585938 248.453125 79.585938 248.335938 Z M 79.585938 248.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 77.984375 247.863281 C 77.984375 247.746094 77.890625 247.652344 77.773438 247.652344 C 77.65625 247.652344 77.5625 247.746094 77.5625 247.863281 C 77.5625 247.980469 77.65625 248.074219 77.773438 248.074219 C 77.890625 248.074219 77.984375 247.980469 77.984375 247.863281 Z M 77.984375 247.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.320312 245.160156 C 82.320312 245.042969 82.226562 244.949219 82.109375 244.949219 C 81.992188 244.949219 81.898438 245.042969 81.898438 245.160156 C 81.898438 245.277344 81.992188 245.371094 82.109375 245.371094 C 82.226562 245.371094 82.320312 245.277344 82.320312 245.160156 Z M 82.320312 245.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.738281 244.878906 C 80.738281 244.761719 80.644531 244.667969 80.527344 244.667969 C 80.410156 244.667969 80.316406 244.761719 80.316406 244.878906 C 80.316406 244.996094 80.410156 245.089844 80.527344 245.089844 C 80.644531 245.089844 80.738281 244.996094 80.738281 244.878906 Z M 80.738281 244.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 78.964844 246.578125 C 78.964844 246.460938 78.871094 246.367188 78.753906 246.367188 C 78.636719 246.367188 78.542969 246.460938 78.542969 246.578125 C 78.542969 246.695312 78.636719 246.789062 78.753906 246.789062 C 78.871094 246.789062 78.964844 246.695312 78.964844 246.578125 Z M 78.964844 246.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 76.71875 246.28125 C 76.71875 246.164062 76.625 246.070312 76.507812 246.070312 C 76.390625 246.070312 76.296875 246.164062 76.296875 246.28125 C 76.296875 246.398438 76.390625 246.492188 76.507812 246.492188 C 76.625 246.492188 76.71875 246.398438 76.71875 246.28125 Z M 76.71875 246.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 77.933594 245.078125 C 77.933594 244.960938 77.839844 244.867188 77.722656 244.867188 C 77.605469 244.867188 77.511719 244.960938 77.511719 245.078125 C 77.511719 245.195312 77.605469 245.289062 77.722656 245.289062 C 77.839844 245.289062 77.933594 245.195312 77.933594 245.078125 Z M 77.933594 245.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 74.890625 243.25 C 74.890625 243.132812 74.796875 243.039062 74.679688 243.039062 C 74.5625 243.039062 74.46875 243.132812 74.46875 243.25 C 74.46875 243.367188 74.5625 243.460938 74.679688 243.460938 C 74.796875 243.460938 74.890625 243.367188 74.890625 243.25 Z M 74.890625 243.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 75.402344 246.457031 C 75.402344 246.339844 75.308594 246.246094 75.191406 246.246094 C 75.074219 246.246094 74.980469 246.339844 74.980469 246.457031 C 74.980469 246.574219 75.074219 246.667969 75.191406 246.667969 C 75.308594 246.667969 75.402344 246.574219 75.402344 246.457031 Z M 75.402344 246.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 78.121094 248.726562 C 78.121094 248.609375 78.027344 248.515625 77.910156 248.515625 C 77.792969 248.515625 77.699219 248.609375 77.699219 248.726562 C 77.699219 248.84375 77.792969 248.9375 77.910156 248.9375 C 78.027344 248.9375 78.121094 248.84375 78.121094 248.726562 Z M 78.121094 248.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 77.792969 248.507812 C 77.792969 248.390625 77.699219 248.296875 77.582031 248.296875 C 77.464844 248.296875 77.371094 248.390625 77.371094 248.507812 C 77.371094 248.625 77.464844 248.71875 77.582031 248.71875 C 77.699219 248.71875 77.792969 248.625 77.792969 248.507812 Z M 77.792969 248.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.015625 249 C 80.015625 248.882812 79.921875 248.789062 79.804688 248.789062 C 79.6875 248.789062 79.59375 248.882812 79.59375 249 C 79.59375 249.117188 79.6875 249.210938 79.804688 249.210938 C 79.921875 249.210938 80.015625 249.117188 80.015625 249 Z M 80.015625 249 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 77.671875 246.992188 C 77.671875 246.875 77.578125 246.78125 77.460938 246.78125 C 77.34375 246.78125 77.25 246.875 77.25 246.992188 C 77.25 247.109375 77.34375 247.203125 77.460938 247.203125 C 77.578125 247.203125 77.671875 247.109375 77.671875 246.992188 Z M 77.671875 246.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.34375 249.5625 C 79.34375 249.445312 79.25 249.351562 79.132812 249.351562 C 79.015625 249.351562 78.921875 249.445312 78.921875 249.5625 C 78.921875 249.679688 79.015625 249.773438 79.132812 249.773438 C 79.25 249.773438 79.34375 249.679688 79.34375 249.5625 Z M 79.34375 249.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.683594 248.425781 C 80.683594 248.308594 80.589844 248.214844 80.472656 248.214844 C 80.355469 248.214844 80.261719 248.308594 80.261719 248.425781 C 80.261719 248.542969 80.355469 248.636719 80.472656 248.636719 C 80.589844 248.636719 80.683594 248.542969 80.683594 248.425781 Z M 80.683594 248.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.222656 247.375 C 81.222656 247.257812 81.128906 247.164062 81.011719 247.164062 C 80.894531 247.164062 80.800781 247.257812 80.800781 247.375 C 80.800781 247.492188 80.894531 247.585938 81.011719 247.585938 C 81.128906 247.585938 81.222656 247.492188 81.222656 247.375 Z M 81.222656 247.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.132812 246.210938 C 79.132812 246.09375 79.039062 246 78.921875 246 C 78.804688 246 78.710938 246.09375 78.710938 246.210938 C 78.710938 246.328125 78.804688 246.421875 78.921875 246.421875 C 79.039062 246.421875 79.132812 246.328125 79.132812 246.210938 Z M 79.132812 246.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 78.390625 249.015625 C 78.390625 248.898438 78.296875 248.804688 78.179688 248.804688 C 78.0625 248.804688 77.96875 248.898438 77.96875 249.015625 C 77.96875 249.132812 78.0625 249.226562 78.179688 249.226562 C 78.296875 249.226562 78.390625 249.132812 78.390625 249.015625 Z M 78.390625 249.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 78.976562 249.523438 C 78.976562 249.40625 78.882812 249.3125 78.765625 249.3125 C 78.648438 249.3125 78.554688 249.40625 78.554688 249.523438 C 78.554688 249.640625 78.648438 249.734375 78.765625 249.734375 C 78.882812 249.734375 78.976562 249.640625 78.976562 249.523438 Z M 78.976562 249.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 77.574219 247.242188 C 77.574219 247.125 77.480469 247.03125 77.363281 247.03125 C 77.246094 247.03125 77.152344 247.125 77.152344 247.242188 C 77.152344 247.359375 77.246094 247.453125 77.363281 247.453125 C 77.480469 247.453125 77.574219 247.359375 77.574219 247.242188 Z M 77.574219 247.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 78.117188 247.136719 C 78.117188 247.019531 78.023438 246.925781 77.90625 246.925781 C 77.789062 246.925781 77.695312 247.019531 77.695312 247.136719 C 77.695312 247.253906 77.789062 247.347656 77.90625 247.347656 C 78.023438 247.347656 78.117188 247.253906 78.117188 247.136719 Z M 78.117188 247.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.328125 246.371094 C 79.328125 246.253906 79.234375 246.160156 79.117188 246.160156 C 79 246.160156 78.90625 246.253906 78.90625 246.371094 C 78.90625 246.488281 79 246.582031 79.117188 246.582031 C 79.234375 246.582031 79.328125 246.488281 79.328125 246.371094 Z M 79.328125 246.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 77.699219 244.394531 C 77.699219 244.277344 77.605469 244.183594 77.488281 244.183594 C 77.371094 244.183594 77.277344 244.277344 77.277344 244.394531 C 77.277344 244.511719 77.371094 244.605469 77.488281 244.605469 C 77.605469 244.605469 77.699219 244.511719 77.699219 244.394531 Z M 77.699219 244.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 76.964844 245.246094 C 76.964844 245.128906 76.871094 245.035156 76.753906 245.035156 C 76.636719 245.035156 76.542969 245.128906 76.542969 245.246094 C 76.542969 245.363281 76.636719 245.457031 76.753906 245.457031 C 76.871094 245.457031 76.964844 245.363281 76.964844 245.246094 Z M 76.964844 245.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 78.558594 240.28125 C 78.558594 240.164062 78.464844 240.070312 78.347656 240.070312 C 78.230469 240.070312 78.136719 240.164062 78.136719 240.28125 C 78.136719 240.398438 78.230469 240.492188 78.347656 240.492188 C 78.464844 240.492188 78.558594 240.398438 78.558594 240.28125 Z M 78.558594 240.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 74.84375 238.339844 C 74.84375 238.222656 74.75 238.128906 74.632812 238.128906 C 74.515625 238.128906 74.421875 238.222656 74.421875 238.339844 C 74.421875 238.457031 74.515625 238.550781 74.632812 238.550781 C 74.75 238.550781 74.84375 238.457031 74.84375 238.339844 Z M 74.84375 238.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 76.96875 236.996094 C 76.96875 236.878906 76.875 236.785156 76.757812 236.785156 C 76.640625 236.785156 76.546875 236.878906 76.546875 236.996094 C 76.546875 237.113281 76.640625 237.207031 76.757812 237.207031 C 76.875 237.207031 76.96875 237.113281 76.96875 236.996094 Z M 76.96875 236.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 76.691406 233.625 C 76.691406 233.507812 76.597656 233.414062 76.480469 233.414062 C 76.363281 233.414062 76.269531 233.507812 76.269531 233.625 C 76.269531 233.742188 76.363281 233.835938 76.480469 233.835938 C 76.597656 233.835938 76.691406 233.742188 76.691406 233.625 Z M 76.691406 233.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 77.976562 232.527344 C 77.976562 232.410156 77.882812 232.316406 77.765625 232.316406 C 77.648438 232.316406 77.554688 232.410156 77.554688 232.527344 C 77.554688 232.644531 77.648438 232.738281 77.765625 232.738281 C 77.882812 232.738281 77.976562 232.644531 77.976562 232.527344 Z M 77.976562 232.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 78.265625 231.792969 C 78.265625 231.675781 78.171875 231.582031 78.054688 231.582031 C 77.9375 231.582031 77.84375 231.675781 77.84375 231.792969 C 77.84375 231.910156 77.9375 232.003906 78.054688 232.003906 C 78.171875 232.003906 78.265625 231.910156 78.265625 231.792969 Z M 78.265625 231.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.90625 233.90625 C 79.90625 233.789062 79.8125 233.695312 79.695312 233.695312 C 79.578125 233.695312 79.484375 233.789062 79.484375 233.90625 C 79.484375 234.023438 79.578125 234.117188 79.695312 234.117188 C 79.8125 234.117188 79.90625 234.023438 79.90625 233.90625 Z M 79.90625 233.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.519531 236.464844 C 80.519531 236.347656 80.425781 236.253906 80.308594 236.253906 C 80.191406 236.253906 80.097656 236.347656 80.097656 236.464844 C 80.097656 236.582031 80.191406 236.675781 80.308594 236.675781 C 80.425781 236.675781 80.519531 236.582031 80.519531 236.464844 Z M 80.519531 236.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.632812 234.230469 C 81.632812 234.113281 81.539062 234.019531 81.421875 234.019531 C 81.304688 234.019531 81.210938 234.113281 81.210938 234.230469 C 81.210938 234.347656 81.304688 234.441406 81.421875 234.441406 C 81.539062 234.441406 81.632812 234.347656 81.632812 234.230469 Z M 81.632812 234.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.925781 236.945312 C 80.925781 236.828125 80.832031 236.734375 80.714844 236.734375 C 80.597656 236.734375 80.503906 236.828125 80.503906 236.945312 C 80.503906 237.0625 80.597656 237.15625 80.714844 237.15625 C 80.832031 237.15625 80.925781 237.0625 80.925781 236.945312 Z M 80.925781 236.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.574219 236.6875 C 81.574219 236.570312 81.480469 236.476562 81.363281 236.476562 C 81.246094 236.476562 81.152344 236.570312 81.152344 236.6875 C 81.152344 236.804688 81.246094 236.898438 81.363281 236.898438 C 81.480469 236.898438 81.574219 236.804688 81.574219 236.6875 Z M 81.574219 236.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.199219 240.199219 C 82.199219 240.082031 82.105469 239.988281 81.988281 239.988281 C 81.871094 239.988281 81.777344 240.082031 81.777344 240.199219 C 81.777344 240.316406 81.871094 240.410156 81.988281 240.410156 C 82.105469 240.410156 82.199219 240.316406 82.199219 240.199219 Z M 82.199219 240.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.363281 236.371094 C 80.363281 236.253906 80.269531 236.160156 80.152344 236.160156 C 80.035156 236.160156 79.941406 236.253906 79.941406 236.371094 C 79.941406 236.488281 80.035156 236.582031 80.152344 236.582031 C 80.269531 236.582031 80.363281 236.488281 80.363281 236.371094 Z M 80.363281 236.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.074219 236.398438 C 80.074219 236.28125 79.980469 236.1875 79.863281 236.1875 C 79.746094 236.1875 79.652344 236.28125 79.652344 236.398438 C 79.652344 236.515625 79.746094 236.609375 79.863281 236.609375 C 79.980469 236.609375 80.074219 236.515625 80.074219 236.398438 Z M 80.074219 236.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.441406 236.304688 C 81.441406 236.1875 81.347656 236.09375 81.230469 236.09375 C 81.113281 236.09375 81.019531 236.1875 81.019531 236.304688 C 81.019531 236.421875 81.113281 236.515625 81.230469 236.515625 C 81.347656 236.515625 81.441406 236.421875 81.441406 236.304688 Z M 81.441406 236.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 78.714844 237.488281 C 78.714844 237.371094 78.621094 237.277344 78.503906 237.277344 C 78.386719 237.277344 78.292969 237.371094 78.292969 237.488281 C 78.292969 237.605469 78.386719 237.699219 78.503906 237.699219 C 78.621094 237.699219 78.714844 237.605469 78.714844 237.488281 Z M 78.714844 237.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.753906 237.238281 C 79.753906 237.121094 79.660156 237.027344 79.542969 237.027344 C 79.425781 237.027344 79.332031 237.121094 79.332031 237.238281 C 79.332031 237.355469 79.425781 237.449219 79.542969 237.449219 C 79.660156 237.449219 79.753906 237.355469 79.753906 237.238281 Z M 79.753906 237.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.257812 239.425781 C 82.257812 239.308594 82.164062 239.214844 82.046875 239.214844 C 81.929688 239.214844 81.835938 239.308594 81.835938 239.425781 C 81.835938 239.542969 81.929688 239.636719 82.046875 239.636719 C 82.164062 239.636719 82.257812 239.542969 82.257812 239.425781 Z M 82.257812 239.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.867188 242.816406 C 81.867188 242.699219 81.773438 242.605469 81.65625 242.605469 C 81.539062 242.605469 81.445312 242.699219 81.445312 242.816406 C 81.445312 242.933594 81.539062 243.027344 81.65625 243.027344 C 81.773438 243.027344 81.867188 242.933594 81.867188 242.816406 Z M 81.867188 242.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.402344 243.765625 C 83.402344 243.648438 83.308594 243.554688 83.191406 243.554688 C 83.074219 243.554688 82.980469 243.648438 82.980469 243.765625 C 82.980469 243.882812 83.074219 243.976562 83.191406 243.976562 C 83.308594 243.976562 83.402344 243.882812 83.402344 243.765625 Z M 83.402344 243.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.898438 241.402344 C 85.898438 241.285156 85.804688 241.191406 85.6875 241.191406 C 85.570312 241.191406 85.476562 241.285156 85.476562 241.402344 C 85.476562 241.519531 85.570312 241.613281 85.6875 241.613281 C 85.804688 241.613281 85.898438 241.519531 85.898438 241.402344 Z M 85.898438 241.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.113281 245.238281 C 84.113281 245.121094 84.019531 245.027344 83.902344 245.027344 C 83.785156 245.027344 83.691406 245.121094 83.691406 245.238281 C 83.691406 245.355469 83.785156 245.449219 83.902344 245.449219 C 84.019531 245.449219 84.113281 245.355469 84.113281 245.238281 Z M 84.113281 245.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.34375 242.617188 C 79.34375 242.5 79.25 242.40625 79.132812 242.40625 C 79.015625 242.40625 78.921875 242.5 78.921875 242.617188 C 78.921875 242.734375 79.015625 242.828125 79.132812 242.828125 C 79.25 242.828125 79.34375 242.734375 79.34375 242.617188 Z M 79.34375 242.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 77.835938 239.152344 C 77.835938 239.035156 77.742188 238.941406 77.625 238.941406 C 77.507812 238.941406 77.414062 239.035156 77.414062 239.152344 C 77.414062 239.269531 77.507812 239.363281 77.625 239.363281 C 77.742188 239.363281 77.835938 239.269531 77.835938 239.152344 Z M 77.835938 239.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.25 240.648438 C 79.25 240.53125 79.15625 240.4375 79.039062 240.4375 C 78.921875 240.4375 78.828125 240.53125 78.828125 240.648438 C 78.828125 240.765625 78.921875 240.859375 79.039062 240.859375 C 79.15625 240.859375 79.25 240.765625 79.25 240.648438 Z M 79.25 240.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.132812 239.820312 C 82.132812 239.703125 82.039062 239.609375 81.921875 239.609375 C 81.804688 239.609375 81.710938 239.703125 81.710938 239.820312 C 81.710938 239.9375 81.804688 240.03125 81.921875 240.03125 C 82.039062 240.03125 82.132812 239.9375 82.132812 239.820312 Z M 82.132812 239.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.179688 241.484375 C 83.179688 241.367188 83.085938 241.273438 82.96875 241.273438 C 82.851562 241.273438 82.757812 241.367188 82.757812 241.484375 C 82.757812 241.601562 82.851562 241.695312 82.96875 241.695312 C 83.085938 241.695312 83.179688 241.601562 83.179688 241.484375 Z M 83.179688 241.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.679688 240.054688 C 86.679688 239.9375 86.585938 239.84375 86.46875 239.84375 C 86.351562 239.84375 86.257812 239.9375 86.257812 240.054688 C 86.257812 240.171875 86.351562 240.265625 86.46875 240.265625 C 86.585938 240.265625 86.679688 240.171875 86.679688 240.054688 Z M 86.679688 240.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.132812 242.609375 C 89.132812 242.492188 89.039062 242.398438 88.921875 242.398438 C 88.804688 242.398438 88.710938 242.492188 88.710938 242.609375 C 88.710938 242.726562 88.804688 242.820312 88.921875 242.820312 C 89.039062 242.820312 89.132812 242.726562 89.132812 242.609375 Z M 89.132812 242.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.003906 243.527344 C 88.003906 243.410156 87.910156 243.316406 87.792969 243.316406 C 87.675781 243.316406 87.582031 243.410156 87.582031 243.527344 C 87.582031 243.644531 87.675781 243.738281 87.792969 243.738281 C 87.910156 243.738281 88.003906 243.644531 88.003906 243.527344 Z M 88.003906 243.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.074219 241.996094 C 88.074219 241.878906 87.980469 241.785156 87.863281 241.785156 C 87.746094 241.785156 87.652344 241.878906 87.652344 241.996094 C 87.652344 242.113281 87.746094 242.207031 87.863281 242.207031 C 87.980469 242.207031 88.074219 242.113281 88.074219 241.996094 Z M 88.074219 241.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.96875 241.695312 C 88.96875 241.578125 88.875 241.484375 88.757812 241.484375 C 88.640625 241.484375 88.546875 241.578125 88.546875 241.695312 C 88.546875 241.8125 88.640625 241.90625 88.757812 241.90625 C 88.875 241.90625 88.96875 241.8125 88.96875 241.695312 Z M 88.96875 241.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.46875 240.257812 C 89.46875 240.140625 89.375 240.046875 89.257812 240.046875 C 89.140625 240.046875 89.046875 240.140625 89.046875 240.257812 C 89.046875 240.375 89.140625 240.46875 89.257812 240.46875 C 89.375 240.46875 89.46875 240.375 89.46875 240.257812 Z M 89.46875 240.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.296875 238.792969 C 93.296875 238.675781 93.203125 238.582031 93.085938 238.582031 C 92.96875 238.582031 92.875 238.675781 92.875 238.792969 C 92.875 238.910156 92.96875 239.003906 93.085938 239.003906 C 93.203125 239.003906 93.296875 238.910156 93.296875 238.792969 Z M 93.296875 238.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.28125 236.136719 C 95.28125 236.019531 95.1875 235.925781 95.070312 235.925781 C 94.953125 235.925781 94.859375 236.019531 94.859375 236.136719 C 94.859375 236.253906 94.953125 236.347656 95.070312 236.347656 C 95.1875 236.347656 95.28125 236.253906 95.28125 236.136719 Z M 95.28125 236.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.265625 237.785156 C 94.265625 237.667969 94.171875 237.574219 94.054688 237.574219 C 93.9375 237.574219 93.84375 237.667969 93.84375 237.785156 C 93.84375 237.902344 93.9375 237.996094 94.054688 237.996094 C 94.171875 237.996094 94.265625 237.902344 94.265625 237.785156 Z M 94.265625 237.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.035156 241.53125 C 94.035156 241.414062 93.941406 241.320312 93.824219 241.320312 C 93.707031 241.320312 93.613281 241.414062 93.613281 241.53125 C 93.613281 241.648438 93.707031 241.742188 93.824219 241.742188 C 93.941406 241.742188 94.035156 241.648438 94.035156 241.53125 Z M 94.035156 241.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.632812 241.25 C 89.632812 241.132812 89.539062 241.039062 89.421875 241.039062 C 89.304688 241.039062 89.210938 241.132812 89.210938 241.25 C 89.210938 241.367188 89.304688 241.460938 89.421875 241.460938 C 89.539062 241.460938 89.632812 241.367188 89.632812 241.25 Z M 89.632812 241.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.78125 242.210938 C 89.78125 242.09375 89.6875 242 89.570312 242 C 89.453125 242 89.359375 242.09375 89.359375 242.210938 C 89.359375 242.328125 89.453125 242.421875 89.570312 242.421875 C 89.6875 242.421875 89.78125 242.328125 89.78125 242.210938 Z M 89.78125 242.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.105469 243.582031 C 92.105469 243.464844 92.011719 243.371094 91.894531 243.371094 C 91.777344 243.371094 91.683594 243.464844 91.683594 243.582031 C 91.683594 243.699219 91.777344 243.792969 91.894531 243.792969 C 92.011719 243.792969 92.105469 243.699219 92.105469 243.582031 Z M 92.105469 243.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.246094 242.941406 C 89.246094 242.824219 89.152344 242.730469 89.035156 242.730469 C 88.917969 242.730469 88.824219 242.824219 88.824219 242.941406 C 88.824219 243.058594 88.917969 243.152344 89.035156 243.152344 C 89.152344 243.152344 89.246094 243.058594 89.246094 242.941406 Z M 89.246094 242.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.527344 243.003906 C 89.527344 242.886719 89.433594 242.792969 89.316406 242.792969 C 89.199219 242.792969 89.105469 242.886719 89.105469 243.003906 C 89.105469 243.121094 89.199219 243.214844 89.316406 243.214844 C 89.433594 243.214844 89.527344 243.121094 89.527344 243.003906 Z M 89.527344 243.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.128906 240.144531 C 89.128906 240.027344 89.035156 239.933594 88.917969 239.933594 C 88.800781 239.933594 88.707031 240.027344 88.707031 240.144531 C 88.707031 240.261719 88.800781 240.355469 88.917969 240.355469 C 89.035156 240.355469 89.128906 240.261719 89.128906 240.144531 Z M 89.128906 240.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.585938 241.703125 C 87.585938 241.585938 87.492188 241.492188 87.375 241.492188 C 87.257812 241.492188 87.164062 241.585938 87.164062 241.703125 C 87.164062 241.820312 87.257812 241.914062 87.375 241.914062 C 87.492188 241.914062 87.585938 241.820312 87.585938 241.703125 Z M 87.585938 241.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.789062 240.171875 C 86.789062 240.054688 86.695312 239.960938 86.578125 239.960938 C 86.460938 239.960938 86.367188 240.054688 86.367188 240.171875 C 86.367188 240.289062 86.460938 240.382812 86.578125 240.382812 C 86.695312 240.382812 86.789062 240.289062 86.789062 240.171875 Z M 86.789062 240.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.3125 239.574219 C 88.3125 239.457031 88.21875 239.363281 88.101562 239.363281 C 87.984375 239.363281 87.890625 239.457031 87.890625 239.574219 C 87.890625 239.691406 87.984375 239.785156 88.101562 239.785156 C 88.21875 239.785156 88.3125 239.691406 88.3125 239.574219 Z M 88.3125 239.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.472656 239.265625 C 87.472656 239.148438 87.378906 239.054688 87.261719 239.054688 C 87.144531 239.054688 87.050781 239.148438 87.050781 239.265625 C 87.050781 239.382812 87.144531 239.476562 87.261719 239.476562 C 87.378906 239.476562 87.472656 239.382812 87.472656 239.265625 Z M 87.472656 239.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.25 239.601562 C 85.25 239.484375 85.15625 239.390625 85.039062 239.390625 C 84.921875 239.390625 84.828125 239.484375 84.828125 239.601562 C 84.828125 239.71875 84.921875 239.8125 85.039062 239.8125 C 85.15625 239.8125 85.25 239.71875 85.25 239.601562 Z M 85.25 239.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.820312 241.816406 C 86.820312 241.699219 86.726562 241.605469 86.609375 241.605469 C 86.492188 241.605469 86.398438 241.699219 86.398438 241.816406 C 86.398438 241.933594 86.492188 242.027344 86.609375 242.027344 C 86.726562 242.027344 86.820312 241.933594 86.820312 241.816406 Z M 86.820312 241.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.359375 242.625 C 87.359375 242.507812 87.265625 242.414062 87.148438 242.414062 C 87.03125 242.414062 86.9375 242.507812 86.9375 242.625 C 86.9375 242.742188 87.03125 242.835938 87.148438 242.835938 C 87.265625 242.835938 87.359375 242.742188 87.359375 242.625 Z M 87.359375 242.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.257812 246.644531 C 85.257812 246.527344 85.164062 246.433594 85.046875 246.433594 C 84.929688 246.433594 84.835938 246.527344 84.835938 246.644531 C 84.835938 246.761719 84.929688 246.855469 85.046875 246.855469 C 85.164062 246.855469 85.257812 246.761719 85.257812 246.644531 Z M 85.257812 246.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.632812 249.289062 C 86.632812 249.171875 86.539062 249.078125 86.421875 249.078125 C 86.304688 249.078125 86.210938 249.171875 86.210938 249.289062 C 86.210938 249.40625 86.304688 249.5 86.421875 249.5 C 86.539062 249.5 86.632812 249.40625 86.632812 249.289062 Z M 86.632812 249.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.738281 251.835938 C 90.738281 251.71875 90.644531 251.625 90.527344 251.625 C 90.410156 251.625 90.316406 251.71875 90.316406 251.835938 C 90.316406 251.953125 90.410156 252.046875 90.527344 252.046875 C 90.644531 252.046875 90.738281 251.953125 90.738281 251.835938 Z M 90.738281 251.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.5625 253.03125 C 89.5625 252.914062 89.46875 252.820312 89.351562 252.820312 C 89.234375 252.820312 89.140625 252.914062 89.140625 253.03125 C 89.140625 253.148438 89.234375 253.242188 89.351562 253.242188 C 89.46875 253.242188 89.5625 253.148438 89.5625 253.03125 Z M 89.5625 253.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.335938 252.371094 C 90.335938 252.253906 90.242188 252.160156 90.125 252.160156 C 90.007812 252.160156 89.914062 252.253906 89.914062 252.371094 C 89.914062 252.488281 90.007812 252.582031 90.125 252.582031 C 90.242188 252.582031 90.335938 252.488281 90.335938 252.371094 Z M 90.335938 252.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.714844 248.46875 C 91.714844 248.351562 91.621094 248.257812 91.503906 248.257812 C 91.386719 248.257812 91.292969 248.351562 91.292969 248.46875 C 91.292969 248.585938 91.386719 248.679688 91.503906 248.679688 C 91.621094 248.679688 91.714844 248.585938 91.714844 248.46875 Z M 91.714844 248.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.445312 249.5625 C 94.445312 249.445312 94.351562 249.351562 94.234375 249.351562 C 94.117188 249.351562 94.023438 249.445312 94.023438 249.5625 C 94.023438 249.679688 94.117188 249.773438 94.234375 249.773438 C 94.351562 249.773438 94.445312 249.679688 94.445312 249.5625 Z M 94.445312 249.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.109375 251.179688 C 92.109375 251.0625 92.015625 250.96875 91.898438 250.96875 C 91.78125 250.96875 91.6875 251.0625 91.6875 251.179688 C 91.6875 251.296875 91.78125 251.390625 91.898438 251.390625 C 92.015625 251.390625 92.109375 251.296875 92.109375 251.179688 Z M 92.109375 251.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.191406 252.789062 C 92.191406 252.671875 92.097656 252.578125 91.980469 252.578125 C 91.863281 252.578125 91.769531 252.671875 91.769531 252.789062 C 91.769531 252.90625 91.863281 253 91.980469 253 C 92.097656 253 92.191406 252.90625 92.191406 252.789062 Z M 92.191406 252.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.324219 253.316406 C 91.324219 253.199219 91.230469 253.105469 91.113281 253.105469 C 90.996094 253.105469 90.902344 253.199219 90.902344 253.316406 C 90.902344 253.433594 90.996094 253.527344 91.113281 253.527344 C 91.230469 253.527344 91.324219 253.433594 91.324219 253.316406 Z M 91.324219 253.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.847656 256.382812 C 87.847656 256.265625 87.753906 256.171875 87.636719 256.171875 C 87.519531 256.171875 87.425781 256.265625 87.425781 256.382812 C 87.425781 256.5 87.519531 256.59375 87.636719 256.59375 C 87.753906 256.59375 87.847656 256.5 87.847656 256.382812 Z M 87.847656 256.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.671875 255.257812 C 88.671875 255.140625 88.578125 255.046875 88.460938 255.046875 C 88.34375 255.046875 88.25 255.140625 88.25 255.257812 C 88.25 255.375 88.34375 255.46875 88.460938 255.46875 C 88.578125 255.46875 88.671875 255.375 88.671875 255.257812 Z M 88.671875 255.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.628906 256.492188 C 90.628906 256.375 90.535156 256.28125 90.417969 256.28125 C 90.300781 256.28125 90.207031 256.375 90.207031 256.492188 C 90.207031 256.609375 90.300781 256.703125 90.417969 256.703125 C 90.535156 256.703125 90.628906 256.609375 90.628906 256.492188 Z M 90.628906 256.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.648438 253.519531 C 86.648438 253.402344 86.554688 253.308594 86.4375 253.308594 C 86.320312 253.308594 86.226562 253.402344 86.226562 253.519531 C 86.226562 253.636719 86.320312 253.730469 86.4375 253.730469 C 86.554688 253.730469 86.648438 253.636719 86.648438 253.519531 Z M 86.648438 253.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.070312 251.191406 C 88.070312 251.074219 87.976562 250.980469 87.859375 250.980469 C 87.742188 250.980469 87.648438 251.074219 87.648438 251.191406 C 87.648438 251.308594 87.742188 251.402344 87.859375 251.402344 C 87.976562 251.402344 88.070312 251.308594 88.070312 251.191406 Z M 88.070312 251.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.488281 249.929688 C 90.488281 249.8125 90.394531 249.71875 90.277344 249.71875 C 90.160156 249.71875 90.066406 249.8125 90.066406 249.929688 C 90.066406 250.046875 90.160156 250.140625 90.277344 250.140625 C 90.394531 250.140625 90.488281 250.046875 90.488281 249.929688 Z M 90.488281 249.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.097656 248.191406 C 86.097656 248.074219 86.003906 247.980469 85.886719 247.980469 C 85.769531 247.980469 85.675781 248.074219 85.675781 248.191406 C 85.675781 248.308594 85.769531 248.402344 85.886719 248.402344 C 86.003906 248.402344 86.097656 248.308594 86.097656 248.191406 Z M 86.097656 248.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.339844 247.71875 C 82.339844 247.601562 82.246094 247.507812 82.128906 247.507812 C 82.011719 247.507812 81.917969 247.601562 81.917969 247.71875 C 81.917969 247.835938 82.011719 247.929688 82.128906 247.929688 C 82.246094 247.929688 82.339844 247.835938 82.339844 247.71875 Z M 82.339844 247.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.746094 246.945312 C 83.746094 246.828125 83.652344 246.734375 83.535156 246.734375 C 83.417969 246.734375 83.324219 246.828125 83.324219 246.945312 C 83.324219 247.0625 83.417969 247.15625 83.535156 247.15625 C 83.652344 247.15625 83.746094 247.0625 83.746094 246.945312 Z M 83.746094 246.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.558594 247.738281 C 83.558594 247.621094 83.464844 247.527344 83.347656 247.527344 C 83.230469 247.527344 83.136719 247.621094 83.136719 247.738281 C 83.136719 247.855469 83.230469 247.949219 83.347656 247.949219 C 83.464844 247.949219 83.558594 247.855469 83.558594 247.738281 Z M 83.558594 247.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 78.601562 247.621094 C 78.601562 247.503906 78.507812 247.410156 78.390625 247.410156 C 78.273438 247.410156 78.179688 247.503906 78.179688 247.621094 C 78.179688 247.738281 78.273438 247.832031 78.390625 247.832031 C 78.507812 247.832031 78.601562 247.738281 78.601562 247.621094 Z M 78.601562 247.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 75.488281 249.652344 C 75.488281 249.535156 75.394531 249.441406 75.277344 249.441406 C 75.160156 249.441406 75.066406 249.535156 75.066406 249.652344 C 75.066406 249.769531 75.160156 249.863281 75.277344 249.863281 C 75.394531 249.863281 75.488281 249.769531 75.488281 249.652344 Z M 75.488281 249.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 75.238281 253.390625 C 75.238281 253.273438 75.144531 253.179688 75.027344 253.179688 C 74.910156 253.179688 74.816406 253.273438 74.816406 253.390625 C 74.816406 253.507812 74.910156 253.601562 75.027344 253.601562 C 75.144531 253.601562 75.238281 253.507812 75.238281 253.390625 Z M 75.238281 253.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 73.316406 250.660156 C 73.316406 250.542969 73.222656 250.449219 73.105469 250.449219 C 72.988281 250.449219 72.894531 250.542969 72.894531 250.660156 C 72.894531 250.777344 72.988281 250.871094 73.105469 250.871094 C 73.222656 250.871094 73.316406 250.777344 73.316406 250.660156 Z M 73.316406 250.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 70.269531 249.796875 C 70.269531 249.679688 70.175781 249.585938 70.058594 249.585938 C 69.941406 249.585938 69.847656 249.679688 69.847656 249.796875 C 69.847656 249.914062 69.941406 250.007812 70.058594 250.007812 C 70.175781 250.007812 70.269531 249.914062 70.269531 249.796875 Z M 70.269531 249.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 71.8125 250.929688 C 71.8125 250.8125 71.71875 250.71875 71.601562 250.71875 C 71.484375 250.71875 71.390625 250.8125 71.390625 250.929688 C 71.390625 251.046875 71.484375 251.140625 71.601562 251.140625 C 71.71875 251.140625 71.8125 251.046875 71.8125 250.929688 Z M 71.8125 250.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 70.835938 252.296875 C 70.835938 252.179688 70.742188 252.085938 70.625 252.085938 C 70.507812 252.085938 70.414062 252.179688 70.414062 252.296875 C 70.414062 252.414062 70.507812 252.507812 70.625 252.507812 C 70.742188 252.507812 70.835938 252.414062 70.835938 252.296875 Z M 70.835938 252.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 72.113281 257.136719 C 72.113281 257.019531 72.019531 256.925781 71.902344 256.925781 C 71.785156 256.925781 71.691406 257.019531 71.691406 257.136719 C 71.691406 257.253906 71.785156 257.347656 71.902344 257.347656 C 72.019531 257.347656 72.113281 257.253906 72.113281 257.136719 Z M 72.113281 257.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 69.277344 257.84375 C 69.277344 257.726562 69.183594 257.632812 69.066406 257.632812 C 68.949219 257.632812 68.855469 257.726562 68.855469 257.84375 C 68.855469 257.960938 68.949219 258.054688 69.066406 258.054688 C 69.183594 258.054688 69.277344 257.960938 69.277344 257.84375 Z M 69.277344 257.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.121094 258.902344 C 67.121094 258.785156 67.027344 258.691406 66.910156 258.691406 C 66.792969 258.691406 66.699219 258.785156 66.699219 258.902344 C 66.699219 259.019531 66.792969 259.113281 66.910156 259.113281 C 67.027344 259.113281 67.121094 259.019531 67.121094 258.902344 Z M 67.121094 258.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.003906 258.898438 C 67.003906 258.78125 66.910156 258.6875 66.792969 258.6875 C 66.675781 258.6875 66.582031 258.78125 66.582031 258.898438 C 66.582031 259.015625 66.675781 259.109375 66.792969 259.109375 C 66.910156 259.109375 67.003906 259.015625 67.003906 258.898438 Z M 67.003906 258.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 66.894531 261.09375 C 66.894531 260.976562 66.800781 260.882812 66.683594 260.882812 C 66.566406 260.882812 66.472656 260.976562 66.472656 261.09375 C 66.472656 261.210938 66.566406 261.304688 66.683594 261.304688 C 66.800781 261.304688 66.894531 261.210938 66.894531 261.09375 Z M 66.894531 261.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.5 260.621094 C 67.5 260.503906 67.40625 260.410156 67.289062 260.410156 C 67.171875 260.410156 67.078125 260.503906 67.078125 260.621094 C 67.078125 260.738281 67.171875 260.832031 67.289062 260.832031 C 67.40625 260.832031 67.5 260.738281 67.5 260.621094 Z M 67.5 260.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 68.570312 258.628906 C 68.570312 258.511719 68.476562 258.417969 68.359375 258.417969 C 68.242188 258.417969 68.148438 258.511719 68.148438 258.628906 C 68.148438 258.746094 68.242188 258.839844 68.359375 258.839844 C 68.476562 258.839844 68.570312 258.746094 68.570312 258.628906 Z M 68.570312 258.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 64.015625 257.773438 C 64.015625 257.65625 63.921875 257.5625 63.804688 257.5625 C 63.6875 257.5625 63.59375 257.65625 63.59375 257.773438 C 63.59375 257.890625 63.6875 257.984375 63.804688 257.984375 C 63.921875 257.984375 64.015625 257.890625 64.015625 257.773438 Z M 64.015625 257.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 62.632812 257.796875 C 62.632812 257.679688 62.539062 257.585938 62.421875 257.585938 C 62.304688 257.585938 62.210938 257.679688 62.210938 257.796875 C 62.210938 257.914062 62.304688 258.007812 62.421875 258.007812 C 62.539062 258.007812 62.632812 257.914062 62.632812 257.796875 Z M 62.632812 257.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 63.089844 259.078125 C 63.089844 258.960938 62.996094 258.867188 62.878906 258.867188 C 62.761719 258.867188 62.667969 258.960938 62.667969 259.078125 C 62.667969 259.195312 62.761719 259.289062 62.878906 259.289062 C 62.996094 259.289062 63.089844 259.195312 63.089844 259.078125 Z M 63.089844 259.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 63.433594 258.148438 C 63.433594 258.03125 63.339844 257.9375 63.222656 257.9375 C 63.105469 257.9375 63.011719 258.03125 63.011719 258.148438 C 63.011719 258.265625 63.105469 258.359375 63.222656 258.359375 C 63.339844 258.359375 63.433594 258.265625 63.433594 258.148438 Z M 63.433594 258.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.738281 259.714844 C 59.738281 259.597656 59.644531 259.503906 59.527344 259.503906 C 59.410156 259.503906 59.316406 259.597656 59.316406 259.714844 C 59.316406 259.832031 59.410156 259.925781 59.527344 259.925781 C 59.644531 259.925781 59.738281 259.832031 59.738281 259.714844 Z M 59.738281 259.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.03125 259.898438 C 59.03125 259.78125 58.9375 259.6875 58.820312 259.6875 C 58.703125 259.6875 58.609375 259.78125 58.609375 259.898438 C 58.609375 260.015625 58.703125 260.109375 58.820312 260.109375 C 58.9375 260.109375 59.03125 260.015625 59.03125 259.898438 Z M 59.03125 259.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 58.035156 260.699219 C 58.035156 260.582031 57.941406 260.488281 57.824219 260.488281 C 57.707031 260.488281 57.613281 260.582031 57.613281 260.699219 C 57.613281 260.816406 57.707031 260.910156 57.824219 260.910156 C 57.941406 260.910156 58.035156 260.816406 58.035156 260.699219 Z M 58.035156 260.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 58.230469 260.472656 C 58.230469 260.355469 58.136719 260.261719 58.019531 260.261719 C 57.902344 260.261719 57.808594 260.355469 57.808594 260.472656 C 57.808594 260.589844 57.902344 260.683594 58.019531 260.683594 C 58.136719 260.683594 58.230469 260.589844 58.230469 260.472656 Z M 58.230469 260.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 53.808594 261.953125 C 53.808594 261.835938 53.714844 261.742188 53.597656 261.742188 C 53.480469 261.742188 53.386719 261.835938 53.386719 261.953125 C 53.386719 262.070312 53.480469 262.164062 53.597656 262.164062 C 53.714844 262.164062 53.808594 262.070312 53.808594 261.953125 Z M 53.808594 261.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 54.105469 262.714844 C 54.105469 262.597656 54.011719 262.503906 53.894531 262.503906 C 53.777344 262.503906 53.683594 262.597656 53.683594 262.714844 C 53.683594 262.832031 53.777344 262.925781 53.894531 262.925781 C 54.011719 262.925781 54.105469 262.832031 54.105469 262.714844 Z M 54.105469 262.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.648438 263.351562 C 52.648438 263.234375 52.554688 263.140625 52.4375 263.140625 C 52.320312 263.140625 52.226562 263.234375 52.226562 263.351562 C 52.226562 263.46875 52.320312 263.5625 52.4375 263.5625 C 52.554688 263.5625 52.648438 263.46875 52.648438 263.351562 Z M 52.648438 263.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 54.828125 261.8125 C 54.828125 261.695312 54.734375 261.601562 54.617188 261.601562 C 54.5 261.601562 54.40625 261.695312 54.40625 261.8125 C 54.40625 261.929688 54.5 262.023438 54.617188 262.023438 C 54.734375 262.023438 54.828125 261.929688 54.828125 261.8125 Z M 54.828125 261.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 56.183594 259.488281 C 56.183594 259.371094 56.089844 259.277344 55.972656 259.277344 C 55.855469 259.277344 55.761719 259.371094 55.761719 259.488281 C 55.761719 259.605469 55.855469 259.699219 55.972656 259.699219 C 56.089844 259.699219 56.183594 259.605469 56.183594 259.488281 Z M 56.183594 259.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 57.949219 259.03125 C 57.949219 258.914062 57.855469 258.820312 57.738281 258.820312 C 57.621094 258.820312 57.527344 258.914062 57.527344 259.03125 C 57.527344 259.148438 57.621094 259.242188 57.738281 259.242188 C 57.855469 259.242188 57.949219 259.148438 57.949219 259.03125 Z M 57.949219 259.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 58.480469 258.359375 C 58.480469 258.242188 58.386719 258.148438 58.269531 258.148438 C 58.152344 258.148438 58.058594 258.242188 58.058594 258.359375 C 58.058594 258.476562 58.152344 258.570312 58.269531 258.570312 C 58.386719 258.570312 58.480469 258.476562 58.480469 258.359375 Z M 58.480469 258.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 58.445312 258.433594 C 58.445312 258.316406 58.351562 258.222656 58.234375 258.222656 C 58.117188 258.222656 58.023438 258.316406 58.023438 258.433594 C 58.023438 258.550781 58.117188 258.644531 58.234375 258.644531 C 58.351562 258.644531 58.445312 258.550781 58.445312 258.433594 Z M 58.445312 258.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 56.804688 257.882812 C 56.804688 257.765625 56.710938 257.671875 56.59375 257.671875 C 56.476562 257.671875 56.382812 257.765625 56.382812 257.882812 C 56.382812 258 56.476562 258.09375 56.59375 258.09375 C 56.710938 258.09375 56.804688 258 56.804688 257.882812 Z M 56.804688 257.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 56.53125 256.917969 C 56.53125 256.800781 56.4375 256.707031 56.320312 256.707031 C 56.203125 256.707031 56.109375 256.800781 56.109375 256.917969 C 56.109375 257.035156 56.203125 257.128906 56.320312 257.128906 C 56.4375 257.128906 56.53125 257.035156 56.53125 256.917969 Z M 56.53125 256.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 56.425781 255.230469 C 56.425781 255.113281 56.332031 255.019531 56.214844 255.019531 C 56.097656 255.019531 56.003906 255.113281 56.003906 255.230469 C 56.003906 255.347656 56.097656 255.441406 56.214844 255.441406 C 56.332031 255.441406 56.425781 255.347656 56.425781 255.230469 Z M 56.425781 255.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 56.726562 255.734375 C 56.726562 255.617188 56.632812 255.523438 56.515625 255.523438 C 56.398438 255.523438 56.304688 255.617188 56.304688 255.734375 C 56.304688 255.851562 56.398438 255.945312 56.515625 255.945312 C 56.632812 255.945312 56.726562 255.851562 56.726562 255.734375 Z M 56.726562 255.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.085938 256.285156 C 52.085938 256.167969 51.992188 256.074219 51.875 256.074219 C 51.757812 256.074219 51.664062 256.167969 51.664062 256.285156 C 51.664062 256.402344 51.757812 256.496094 51.875 256.496094 C 51.992188 256.496094 52.085938 256.402344 52.085938 256.285156 Z M 52.085938 256.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.410156 251.652344 C 52.410156 251.535156 52.316406 251.441406 52.199219 251.441406 C 52.082031 251.441406 51.988281 251.535156 51.988281 251.652344 C 51.988281 251.769531 52.082031 251.863281 52.199219 251.863281 C 52.316406 251.863281 52.410156 251.769531 52.410156 251.652344 Z M 52.410156 251.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.71875 252.148438 C 52.71875 252.03125 52.625 251.9375 52.507812 251.9375 C 52.390625 251.9375 52.296875 252.03125 52.296875 252.148438 C 52.296875 252.265625 52.390625 252.359375 52.507812 252.359375 C 52.625 252.359375 52.71875 252.265625 52.71875 252.148438 Z M 52.71875 252.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 51.195312 251.859375 C 51.195312 251.742188 51.101562 251.648438 50.984375 251.648438 C 50.867188 251.648438 50.773438 251.742188 50.773438 251.859375 C 50.773438 251.976562 50.867188 252.070312 50.984375 252.070312 C 51.101562 252.070312 51.195312 251.976562 51.195312 251.859375 Z M 51.195312 251.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 51.816406 252.792969 C 51.816406 252.675781 51.722656 252.582031 51.605469 252.582031 C 51.488281 252.582031 51.394531 252.675781 51.394531 252.792969 C 51.394531 252.910156 51.488281 253.003906 51.605469 253.003906 C 51.722656 253.003906 51.816406 252.910156 51.816406 252.792969 Z M 51.816406 252.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 53.050781 250.378906 C 53.050781 250.261719 52.957031 250.167969 52.839844 250.167969 C 52.722656 250.167969 52.628906 250.261719 52.628906 250.378906 C 52.628906 250.496094 52.722656 250.589844 52.839844 250.589844 C 52.957031 250.589844 53.050781 250.496094 53.050781 250.378906 Z M 53.050781 250.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 53.273438 247.71875 C 53.273438 247.601562 53.179688 247.507812 53.0625 247.507812 C 52.945312 247.507812 52.851562 247.601562 52.851562 247.71875 C 52.851562 247.835938 52.945312 247.929688 53.0625 247.929688 C 53.179688 247.929688 53.273438 247.835938 53.273438 247.71875 Z M 53.273438 247.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 54.894531 246.4375 C 54.894531 246.320312 54.800781 246.226562 54.683594 246.226562 C 54.566406 246.226562 54.472656 246.320312 54.472656 246.4375 C 54.472656 246.554688 54.566406 246.648438 54.683594 246.648438 C 54.800781 246.648438 54.894531 246.554688 54.894531 246.4375 Z M 54.894531 246.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 51.03125 248.480469 C 51.03125 248.363281 50.9375 248.269531 50.820312 248.269531 C 50.703125 248.269531 50.609375 248.363281 50.609375 248.480469 C 50.609375 248.597656 50.703125 248.691406 50.820312 248.691406 C 50.9375 248.691406 51.03125 248.597656 51.03125 248.480469 Z M 51.03125 248.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.886719 245.976562 C 50.886719 245.859375 50.792969 245.765625 50.675781 245.765625 C 50.558594 245.765625 50.464844 245.859375 50.464844 245.976562 C 50.464844 246.09375 50.558594 246.1875 50.675781 246.1875 C 50.792969 246.1875 50.886719 246.09375 50.886719 245.976562 Z M 50.886719 245.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.511719 247.691406 C 50.511719 247.574219 50.417969 247.480469 50.300781 247.480469 C 50.183594 247.480469 50.089844 247.574219 50.089844 247.691406 C 50.089844 247.808594 50.183594 247.902344 50.300781 247.902344 C 50.417969 247.902344 50.511719 247.808594 50.511719 247.691406 Z M 50.511719 247.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.703125 249.902344 C 49.703125 249.785156 49.609375 249.691406 49.492188 249.691406 C 49.375 249.691406 49.28125 249.785156 49.28125 249.902344 C 49.28125 250.019531 49.375 250.113281 49.492188 250.113281 C 49.609375 250.113281 49.703125 250.019531 49.703125 249.902344 Z M 49.703125 249.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 46 250.046875 C 46 249.929688 45.90625 249.835938 45.789062 249.835938 C 45.671875 249.835938 45.578125 249.929688 45.578125 250.046875 C 45.578125 250.164062 45.671875 250.257812 45.789062 250.257812 C 45.90625 250.257812 46 250.164062 46 250.046875 Z M 46 250.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.078125 249.929688 C 47.078125 249.8125 46.984375 249.71875 46.867188 249.71875 C 46.75 249.71875 46.65625 249.8125 46.65625 249.929688 C 46.65625 250.046875 46.75 250.140625 46.867188 250.140625 C 46.984375 250.140625 47.078125 250.046875 47.078125 249.929688 Z M 47.078125 249.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.789062 250.585938 C 49.789062 250.46875 49.695312 250.375 49.578125 250.375 C 49.460938 250.375 49.367188 250.46875 49.367188 250.585938 C 49.367188 250.703125 49.460938 250.796875 49.578125 250.796875 C 49.695312 250.796875 49.789062 250.703125 49.789062 250.585938 Z M 49.789062 250.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.765625 249.648438 C 49.765625 249.53125 49.671875 249.4375 49.554688 249.4375 C 49.4375 249.4375 49.34375 249.53125 49.34375 249.648438 C 49.34375 249.765625 49.4375 249.859375 49.554688 249.859375 C 49.671875 249.859375 49.765625 249.765625 49.765625 249.648438 Z M 49.765625 249.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.222656 249.871094 C 50.222656 249.753906 50.128906 249.660156 50.011719 249.660156 C 49.894531 249.660156 49.800781 249.753906 49.800781 249.871094 C 49.800781 249.988281 49.894531 250.082031 50.011719 250.082031 C 50.128906 250.082031 50.222656 249.988281 50.222656 249.871094 Z M 50.222656 249.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 51.324219 252.152344 C 51.324219 252.035156 51.230469 251.941406 51.113281 251.941406 C 50.996094 251.941406 50.902344 252.035156 50.902344 252.152344 C 50.902344 252.269531 50.996094 252.363281 51.113281 252.363281 C 51.230469 252.363281 51.324219 252.269531 51.324219 252.152344 Z M 51.324219 252.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 51.953125 253.945312 C 51.953125 253.828125 51.859375 253.734375 51.742188 253.734375 C 51.625 253.734375 51.53125 253.828125 51.53125 253.945312 C 51.53125 254.0625 51.625 254.15625 51.742188 254.15625 C 51.859375 254.15625 51.953125 254.0625 51.953125 253.945312 Z M 51.953125 253.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.75 255.746094 C 50.75 255.628906 50.65625 255.535156 50.539062 255.535156 C 50.421875 255.535156 50.328125 255.628906 50.328125 255.746094 C 50.328125 255.863281 50.421875 255.957031 50.539062 255.957031 C 50.65625 255.957031 50.75 255.863281 50.75 255.746094 Z M 50.75 255.746094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.152344 256.535156 C 49.152344 256.417969 49.058594 256.324219 48.941406 256.324219 C 48.824219 256.324219 48.730469 256.417969 48.730469 256.535156 C 48.730469 256.652344 48.824219 256.746094 48.941406 256.746094 C 49.058594 256.746094 49.152344 256.652344 49.152344 256.535156 Z M 49.152344 256.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.0625 257.480469 C 49.0625 257.363281 48.96875 257.269531 48.851562 257.269531 C 48.734375 257.269531 48.640625 257.363281 48.640625 257.480469 C 48.640625 257.597656 48.734375 257.691406 48.851562 257.691406 C 48.96875 257.691406 49.0625 257.597656 49.0625 257.480469 Z M 49.0625 257.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.722656 255.203125 C 50.722656 255.085938 50.628906 254.992188 50.511719 254.992188 C 50.394531 254.992188 50.300781 255.085938 50.300781 255.203125 C 50.300781 255.320312 50.394531 255.414062 50.511719 255.414062 C 50.628906 255.414062 50.722656 255.320312 50.722656 255.203125 Z M 50.722656 255.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 51.078125 255.535156 C 51.078125 255.417969 50.984375 255.324219 50.867188 255.324219 C 50.75 255.324219 50.65625 255.417969 50.65625 255.535156 C 50.65625 255.652344 50.75 255.746094 50.867188 255.746094 C 50.984375 255.746094 51.078125 255.652344 51.078125 255.535156 Z M 51.078125 255.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.714844 258.464844 C 49.714844 258.347656 49.621094 258.253906 49.503906 258.253906 C 49.386719 258.253906 49.292969 258.347656 49.292969 258.464844 C 49.292969 258.582031 49.386719 258.675781 49.503906 258.675781 C 49.621094 258.675781 49.714844 258.582031 49.714844 258.464844 Z M 49.714844 258.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.484375 260.65625 C 50.484375 260.539062 50.390625 260.445312 50.273438 260.445312 C 50.15625 260.445312 50.0625 260.539062 50.0625 260.65625 C 50.0625 260.773438 50.15625 260.867188 50.273438 260.867188 C 50.390625 260.867188 50.484375 260.773438 50.484375 260.65625 Z M 50.484375 260.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.53125 258.777344 C 50.53125 258.660156 50.4375 258.566406 50.320312 258.566406 C 50.203125 258.566406 50.109375 258.660156 50.109375 258.777344 C 50.109375 258.894531 50.203125 258.988281 50.320312 258.988281 C 50.4375 258.988281 50.53125 258.894531 50.53125 258.777344 Z M 50.53125 258.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.390625 259.648438 C 49.390625 259.53125 49.296875 259.4375 49.179688 259.4375 C 49.0625 259.4375 48.96875 259.53125 48.96875 259.648438 C 48.96875 259.765625 49.0625 259.859375 49.179688 259.859375 C 49.296875 259.859375 49.390625 259.765625 49.390625 259.648438 Z M 49.390625 259.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.894531 258.472656 C 47.894531 258.355469 47.800781 258.261719 47.683594 258.261719 C 47.566406 258.261719 47.472656 258.355469 47.472656 258.472656 C 47.472656 258.589844 47.566406 258.683594 47.683594 258.683594 C 47.800781 258.683594 47.894531 258.589844 47.894531 258.472656 Z M 47.894531 258.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.09375 259.667969 C 49.09375 259.550781 49 259.457031 48.882812 259.457031 C 48.765625 259.457031 48.671875 259.550781 48.671875 259.667969 C 48.671875 259.785156 48.765625 259.878906 48.882812 259.878906 C 49 259.878906 49.09375 259.785156 49.09375 259.667969 Z M 49.09375 259.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 48.117188 259.289062 C 48.117188 259.171875 48.023438 259.078125 47.90625 259.078125 C 47.789062 259.078125 47.695312 259.171875 47.695312 259.289062 C 47.695312 259.40625 47.789062 259.5 47.90625 259.5 C 48.023438 259.5 48.117188 259.40625 48.117188 259.289062 Z M 48.117188 259.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.511719 258.886719 C 50.511719 258.769531 50.417969 258.675781 50.300781 258.675781 C 50.183594 258.675781 50.089844 258.769531 50.089844 258.886719 C 50.089844 259.003906 50.183594 259.097656 50.300781 259.097656 C 50.417969 259.097656 50.511719 259.003906 50.511719 258.886719 Z M 50.511719 258.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.085938 254.40625 C 52.085938 254.289062 51.992188 254.195312 51.875 254.195312 C 51.757812 254.195312 51.664062 254.289062 51.664062 254.40625 C 51.664062 254.523438 51.757812 254.617188 51.875 254.617188 C 51.992188 254.617188 52.085938 254.523438 52.085938 254.40625 Z M 52.085938 254.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 53.375 253.761719 C 53.375 253.644531 53.28125 253.550781 53.164062 253.550781 C 53.046875 253.550781 52.953125 253.644531 52.953125 253.761719 C 52.953125 253.878906 53.046875 253.972656 53.164062 253.972656 C 53.28125 253.972656 53.375 253.878906 53.375 253.761719 Z M 53.375 253.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 55.984375 252.960938 C 55.984375 252.84375 55.890625 252.75 55.773438 252.75 C 55.65625 252.75 55.5625 252.84375 55.5625 252.960938 C 55.5625 253.078125 55.65625 253.171875 55.773438 253.171875 C 55.890625 253.171875 55.984375 253.078125 55.984375 252.960938 Z M 55.984375 252.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 54.371094 252.054688 C 54.371094 251.9375 54.277344 251.84375 54.160156 251.84375 C 54.042969 251.84375 53.949219 251.9375 53.949219 252.054688 C 53.949219 252.171875 54.042969 252.265625 54.160156 252.265625 C 54.277344 252.265625 54.371094 252.171875 54.371094 252.054688 Z M 54.371094 252.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.511719 253.351562 C 52.511719 253.234375 52.417969 253.140625 52.300781 253.140625 C 52.183594 253.140625 52.089844 253.234375 52.089844 253.351562 C 52.089844 253.46875 52.183594 253.5625 52.300781 253.5625 C 52.417969 253.5625 52.511719 253.46875 52.511719 253.351562 Z M 52.511719 253.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 51.9375 253.75 C 51.9375 253.632812 51.84375 253.539062 51.726562 253.539062 C 51.609375 253.539062 51.515625 253.632812 51.515625 253.75 C 51.515625 253.867188 51.609375 253.960938 51.726562 253.960938 C 51.84375 253.960938 51.9375 253.867188 51.9375 253.75 Z M 51.9375 253.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.46875 252.796875 C 52.46875 252.679688 52.375 252.585938 52.257812 252.585938 C 52.140625 252.585938 52.046875 252.679688 52.046875 252.796875 C 52.046875 252.914062 52.140625 253.007812 52.257812 253.007812 C 52.375 253.007812 52.46875 252.914062 52.46875 252.796875 Z M 52.46875 252.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 53.707031 250.667969 C 53.707031 250.550781 53.613281 250.457031 53.496094 250.457031 C 53.378906 250.457031 53.285156 250.550781 53.285156 250.667969 C 53.285156 250.785156 53.378906 250.878906 53.496094 250.878906 C 53.613281 250.878906 53.707031 250.785156 53.707031 250.667969 Z M 53.707031 250.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.484375 251.417969 C 52.484375 251.300781 52.390625 251.207031 52.273438 251.207031 C 52.15625 251.207031 52.0625 251.300781 52.0625 251.417969 C 52.0625 251.535156 52.15625 251.628906 52.273438 251.628906 C 52.390625 251.628906 52.484375 251.535156 52.484375 251.417969 Z M 52.484375 251.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.128906 246.945312 C 52.128906 246.828125 52.035156 246.734375 51.917969 246.734375 C 51.800781 246.734375 51.707031 246.828125 51.707031 246.945312 C 51.707031 247.0625 51.800781 247.15625 51.917969 247.15625 C 52.035156 247.15625 52.128906 247.0625 52.128906 246.945312 Z M 52.128906 246.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 54.914062 242.242188 C 54.914062 242.125 54.820312 242.03125 54.703125 242.03125 C 54.585938 242.03125 54.492188 242.125 54.492188 242.242188 C 54.492188 242.359375 54.585938 242.453125 54.703125 242.453125 C 54.820312 242.453125 54.914062 242.359375 54.914062 242.242188 Z M 54.914062 242.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 53.503906 245.761719 C 53.503906 245.644531 53.410156 245.550781 53.292969 245.550781 C 53.175781 245.550781 53.082031 245.644531 53.082031 245.761719 C 53.082031 245.878906 53.175781 245.972656 53.292969 245.972656 C 53.410156 245.972656 53.503906 245.878906 53.503906 245.761719 Z M 53.503906 245.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 55.59375 242 C 55.59375 241.882812 55.5 241.789062 55.382812 241.789062 C 55.265625 241.789062 55.171875 241.882812 55.171875 242 C 55.171875 242.117188 55.265625 242.210938 55.382812 242.210938 C 55.5 242.210938 55.59375 242.117188 55.59375 242 Z M 55.59375 242 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 53.632812 244.214844 C 53.632812 244.097656 53.539062 244.003906 53.421875 244.003906 C 53.304688 244.003906 53.210938 244.097656 53.210938 244.214844 C 53.210938 244.332031 53.304688 244.425781 53.421875 244.425781 C 53.539062 244.425781 53.632812 244.332031 53.632812 244.214844 Z M 53.632812 244.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 54.785156 246.011719 C 54.785156 245.894531 54.691406 245.800781 54.574219 245.800781 C 54.457031 245.800781 54.363281 245.894531 54.363281 246.011719 C 54.363281 246.128906 54.457031 246.222656 54.574219 246.222656 C 54.691406 246.222656 54.785156 246.128906 54.785156 246.011719 Z M 54.785156 246.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.34375 251.898438 C 52.34375 251.78125 52.25 251.6875 52.132812 251.6875 C 52.015625 251.6875 51.921875 251.78125 51.921875 251.898438 C 51.921875 252.015625 52.015625 252.109375 52.132812 252.109375 C 52.25 252.109375 52.34375 252.015625 52.34375 251.898438 Z M 52.34375 251.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 55.21875 251.425781 C 55.21875 251.308594 55.125 251.214844 55.007812 251.214844 C 54.890625 251.214844 54.796875 251.308594 54.796875 251.425781 C 54.796875 251.542969 54.890625 251.636719 55.007812 251.636719 C 55.125 251.636719 55.21875 251.542969 55.21875 251.425781 Z M 55.21875 251.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 56.378906 252.792969 C 56.378906 252.675781 56.285156 252.582031 56.167969 252.582031 C 56.050781 252.582031 55.957031 252.675781 55.957031 252.792969 C 55.957031 252.910156 56.050781 253.003906 56.167969 253.003906 C 56.285156 253.003906 56.378906 252.910156 56.378906 252.792969 Z M 56.378906 252.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 58.359375 251.726562 C 58.359375 251.609375 58.265625 251.515625 58.148438 251.515625 C 58.03125 251.515625 57.9375 251.609375 57.9375 251.726562 C 57.9375 251.84375 58.03125 251.9375 58.148438 251.9375 C 58.265625 251.9375 58.359375 251.84375 58.359375 251.726562 Z M 58.359375 251.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 61.445312 250.167969 C 61.445312 250.050781 61.351562 249.957031 61.234375 249.957031 C 61.117188 249.957031 61.023438 250.050781 61.023438 250.167969 C 61.023438 250.285156 61.117188 250.378906 61.234375 250.378906 C 61.351562 250.378906 61.445312 250.285156 61.445312 250.167969 Z M 61.445312 250.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.230469 249.246094 C 59.230469 249.128906 59.136719 249.035156 59.019531 249.035156 C 58.902344 249.035156 58.808594 249.128906 58.808594 249.246094 C 58.808594 249.363281 58.902344 249.457031 59.019531 249.457031 C 59.136719 249.457031 59.230469 249.363281 59.230469 249.246094 Z M 59.230469 249.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.496094 247.753906 C 59.496094 247.636719 59.402344 247.542969 59.285156 247.542969 C 59.167969 247.542969 59.074219 247.636719 59.074219 247.753906 C 59.074219 247.871094 59.167969 247.964844 59.285156 247.964844 C 59.402344 247.964844 59.496094 247.871094 59.496094 247.753906 Z M 59.496094 247.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 58.875 243.664062 C 58.875 243.546875 58.78125 243.453125 58.664062 243.453125 C 58.546875 243.453125 58.453125 243.546875 58.453125 243.664062 C 58.453125 243.78125 58.546875 243.875 58.664062 243.875 C 58.78125 243.875 58.875 243.78125 58.875 243.664062 Z M 58.875 243.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 60.15625 243.410156 C 60.15625 243.292969 60.0625 243.199219 59.945312 243.199219 C 59.828125 243.199219 59.734375 243.292969 59.734375 243.410156 C 59.734375 243.527344 59.828125 243.621094 59.945312 243.621094 C 60.0625 243.621094 60.15625 243.527344 60.15625 243.410156 Z M 60.15625 243.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 58.703125 245.878906 C 58.703125 245.761719 58.609375 245.667969 58.492188 245.667969 C 58.375 245.667969 58.28125 245.761719 58.28125 245.878906 C 58.28125 245.996094 58.375 246.089844 58.492188 246.089844 C 58.609375 246.089844 58.703125 245.996094 58.703125 245.878906 Z M 58.703125 245.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 57.578125 244.941406 C 57.578125 244.824219 57.484375 244.730469 57.367188 244.730469 C 57.25 244.730469 57.15625 244.824219 57.15625 244.941406 C 57.15625 245.058594 57.25 245.152344 57.367188 245.152344 C 57.484375 245.152344 57.578125 245.058594 57.578125 244.941406 Z M 57.578125 244.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 57.582031 246.113281 C 57.582031 245.996094 57.488281 245.902344 57.371094 245.902344 C 57.253906 245.902344 57.160156 245.996094 57.160156 246.113281 C 57.160156 246.230469 57.253906 246.324219 57.371094 246.324219 C 57.488281 246.324219 57.582031 246.230469 57.582031 246.113281 Z M 57.582031 246.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 57.238281 248.074219 C 57.238281 247.957031 57.144531 247.863281 57.027344 247.863281 C 56.910156 247.863281 56.816406 247.957031 56.816406 248.074219 C 56.816406 248.191406 56.910156 248.285156 57.027344 248.285156 C 57.144531 248.285156 57.238281 248.191406 57.238281 248.074219 Z M 57.238281 248.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 57.128906 250.316406 C 57.128906 250.199219 57.035156 250.105469 56.917969 250.105469 C 56.800781 250.105469 56.707031 250.199219 56.707031 250.316406 C 56.707031 250.433594 56.800781 250.527344 56.917969 250.527344 C 57.035156 250.527344 57.128906 250.433594 57.128906 250.316406 Z M 57.128906 250.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 53.769531 247.730469 C 53.769531 247.613281 53.675781 247.519531 53.558594 247.519531 C 53.441406 247.519531 53.347656 247.613281 53.347656 247.730469 C 53.347656 247.847656 53.441406 247.941406 53.558594 247.941406 C 53.675781 247.941406 53.769531 247.847656 53.769531 247.730469 Z M 53.769531 247.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 51.386719 249.085938 C 51.386719 248.96875 51.292969 248.875 51.175781 248.875 C 51.058594 248.875 50.964844 248.96875 50.964844 249.085938 C 50.964844 249.203125 51.058594 249.296875 51.175781 249.296875 C 51.292969 249.296875 51.386719 249.203125 51.386719 249.085938 Z M 51.386719 249.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 51.265625 249.445312 C 51.265625 249.328125 51.171875 249.234375 51.054688 249.234375 C 50.9375 249.234375 50.84375 249.328125 50.84375 249.445312 C 50.84375 249.5625 50.9375 249.65625 51.054688 249.65625 C 51.171875 249.65625 51.265625 249.5625 51.265625 249.445312 Z M 51.265625 249.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 46.25 248.894531 C 46.25 248.777344 46.15625 248.683594 46.039062 248.683594 C 45.921875 248.683594 45.828125 248.777344 45.828125 248.894531 C 45.828125 249.011719 45.921875 249.105469 46.039062 249.105469 C 46.15625 249.105469 46.25 249.011719 46.25 248.894531 Z M 46.25 248.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 46.128906 243.347656 C 46.128906 243.230469 46.035156 243.136719 45.917969 243.136719 C 45.800781 243.136719 45.707031 243.230469 45.707031 243.347656 C 45.707031 243.464844 45.800781 243.558594 45.917969 243.558594 C 46.035156 243.558594 46.128906 243.464844 46.128906 243.347656 Z M 46.128906 243.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 45.730469 244.304688 C 45.730469 244.1875 45.636719 244.09375 45.519531 244.09375 C 45.402344 244.09375 45.308594 244.1875 45.308594 244.304688 C 45.308594 244.421875 45.402344 244.515625 45.519531 244.515625 C 45.636719 244.515625 45.730469 244.421875 45.730469 244.304688 Z M 45.730469 244.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 43.441406 238.421875 C 43.441406 238.304688 43.347656 238.210938 43.230469 238.210938 C 43.113281 238.210938 43.019531 238.304688 43.019531 238.421875 C 43.019531 238.539062 43.113281 238.632812 43.230469 238.632812 C 43.347656 238.632812 43.441406 238.539062 43.441406 238.421875 Z M 43.441406 238.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 40.519531 234.277344 C 40.519531 234.160156 40.425781 234.066406 40.308594 234.066406 C 40.191406 234.066406 40.097656 234.160156 40.097656 234.277344 C 40.097656 234.394531 40.191406 234.488281 40.308594 234.488281 C 40.425781 234.488281 40.519531 234.394531 40.519531 234.277344 Z M 40.519531 234.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.890625 233.835938 C 37.890625 233.71875 37.796875 233.625 37.679688 233.625 C 37.5625 233.625 37.46875 233.71875 37.46875 233.835938 C 37.46875 233.953125 37.5625 234.046875 37.679688 234.046875 C 37.796875 234.046875 37.890625 233.953125 37.890625 233.835938 Z M 37.890625 233.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 34.464844 231.96875 C 34.464844 231.851562 34.371094 231.757812 34.253906 231.757812 C 34.136719 231.757812 34.042969 231.851562 34.042969 231.96875 C 34.042969 232.085938 34.136719 232.179688 34.253906 232.179688 C 34.371094 232.179688 34.464844 232.085938 34.464844 231.96875 Z M 34.464844 231.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.375 234.589844 C 35.375 234.472656 35.28125 234.378906 35.164062 234.378906 C 35.046875 234.378906 34.953125 234.472656 34.953125 234.589844 C 34.953125 234.707031 35.046875 234.800781 35.164062 234.800781 C 35.28125 234.800781 35.375 234.707031 35.375 234.589844 Z M 35.375 234.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.417969 232.71875 C 36.417969 232.601562 36.324219 232.507812 36.207031 232.507812 C 36.089844 232.507812 35.996094 232.601562 35.996094 232.71875 C 35.996094 232.835938 36.089844 232.929688 36.207031 232.929688 C 36.324219 232.929688 36.417969 232.835938 36.417969 232.71875 Z M 36.417969 232.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.398438 231.855469 C 33.398438 231.738281 33.304688 231.644531 33.1875 231.644531 C 33.070312 231.644531 32.976562 231.738281 32.976562 231.855469 C 32.976562 231.972656 33.070312 232.066406 33.1875 232.066406 C 33.304688 232.066406 33.398438 231.972656 33.398438 231.855469 Z M 33.398438 231.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.269531 231.722656 C 33.269531 231.605469 33.175781 231.511719 33.058594 231.511719 C 32.941406 231.511719 32.847656 231.605469 32.847656 231.722656 C 32.847656 231.839844 32.941406 231.933594 33.058594 231.933594 C 33.175781 231.933594 33.269531 231.839844 33.269531 231.722656 Z M 33.269531 231.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.070312 232.199219 C 36.070312 232.082031 35.976562 231.988281 35.859375 231.988281 C 35.742188 231.988281 35.648438 232.082031 35.648438 232.199219 C 35.648438 232.316406 35.742188 232.410156 35.859375 232.410156 C 35.976562 232.410156 36.070312 232.316406 36.070312 232.199219 Z M 36.070312 232.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.683594 234.371094 C 32.683594 234.253906 32.589844 234.160156 32.472656 234.160156 C 32.355469 234.160156 32.261719 234.253906 32.261719 234.371094 C 32.261719 234.488281 32.355469 234.582031 32.472656 234.582031 C 32.589844 234.582031 32.683594 234.488281 32.683594 234.371094 Z M 32.683594 234.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.914062 233.390625 C 30.914062 233.273438 30.820312 233.179688 30.703125 233.179688 C 30.585938 233.179688 30.492188 233.273438 30.492188 233.390625 C 30.492188 233.507812 30.585938 233.601562 30.703125 233.601562 C 30.820312 233.601562 30.914062 233.507812 30.914062 233.390625 Z M 30.914062 233.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.382812 231.949219 C 29.382812 231.832031 29.289062 231.738281 29.171875 231.738281 C 29.054688 231.738281 28.960938 231.832031 28.960938 231.949219 C 28.960938 232.066406 29.054688 232.160156 29.171875 232.160156 C 29.289062 232.160156 29.382812 232.066406 29.382812 231.949219 Z M 29.382812 231.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.25 233.351562 C 31.25 233.234375 31.15625 233.140625 31.039062 233.140625 C 30.921875 233.140625 30.828125 233.234375 30.828125 233.351562 C 30.828125 233.46875 30.921875 233.5625 31.039062 233.5625 C 31.15625 233.5625 31.25 233.46875 31.25 233.351562 Z M 31.25 233.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.714844 236.027344 C 32.714844 235.910156 32.621094 235.816406 32.503906 235.816406 C 32.386719 235.816406 32.292969 235.910156 32.292969 236.027344 C 32.292969 236.144531 32.386719 236.238281 32.503906 236.238281 C 32.621094 236.238281 32.714844 236.144531 32.714844 236.027344 Z M 32.714844 236.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.457031 236.601562 C 29.457031 236.484375 29.363281 236.390625 29.246094 236.390625 C 29.128906 236.390625 29.035156 236.484375 29.035156 236.601562 C 29.035156 236.71875 29.128906 236.8125 29.246094 236.8125 C 29.363281 236.8125 29.457031 236.71875 29.457031 236.601562 Z M 29.457031 236.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.148438 240.742188 C 28.148438 240.625 28.054688 240.53125 27.9375 240.53125 C 27.820312 240.53125 27.726562 240.625 27.726562 240.742188 C 27.726562 240.859375 27.820312 240.953125 27.9375 240.953125 C 28.054688 240.953125 28.148438 240.859375 28.148438 240.742188 Z M 28.148438 240.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.425781 243.941406 C 27.425781 243.824219 27.332031 243.730469 27.214844 243.730469 C 27.097656 243.730469 27.003906 243.824219 27.003906 243.941406 C 27.003906 244.058594 27.097656 244.152344 27.214844 244.152344 C 27.332031 244.152344 27.425781 244.058594 27.425781 243.941406 Z M 27.425781 243.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.027344 241.449219 C 26.027344 241.332031 25.933594 241.238281 25.816406 241.238281 C 25.699219 241.238281 25.605469 241.332031 25.605469 241.449219 C 25.605469 241.566406 25.699219 241.660156 25.816406 241.660156 C 25.933594 241.660156 26.027344 241.566406 26.027344 241.449219 Z M 26.027344 241.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.835938 243.417969 C 21.835938 243.300781 21.742188 243.207031 21.625 243.207031 C 21.507812 243.207031 21.414062 243.300781 21.414062 243.417969 C 21.414062 243.535156 21.507812 243.628906 21.625 243.628906 C 21.742188 243.628906 21.835938 243.535156 21.835938 243.417969 Z M 21.835938 243.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.601562 246.914062 C 21.601562 246.796875 21.507812 246.703125 21.390625 246.703125 C 21.273438 246.703125 21.179688 246.796875 21.179688 246.914062 C 21.179688 247.03125 21.273438 247.125 21.390625 247.125 C 21.507812 247.125 21.601562 247.03125 21.601562 246.914062 Z M 21.601562 246.914062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 18.339844 248.757812 C 18.339844 248.640625 18.246094 248.546875 18.128906 248.546875 C 18.011719 248.546875 17.917969 248.640625 17.917969 248.757812 C 17.917969 248.875 18.011719 248.96875 18.128906 248.96875 C 18.246094 248.96875 18.339844 248.875 18.339844 248.757812 Z M 18.339844 248.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 20.097656 252.667969 C 20.097656 252.550781 20.003906 252.457031 19.886719 252.457031 C 19.769531 252.457031 19.675781 252.550781 19.675781 252.667969 C 19.675781 252.785156 19.769531 252.878906 19.886719 252.878906 C 20.003906 252.878906 20.097656 252.785156 20.097656 252.667969 Z M 20.097656 252.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.195312 252.125 C 21.195312 252.007812 21.101562 251.914062 20.984375 251.914062 C 20.867188 251.914062 20.773438 252.007812 20.773438 252.125 C 20.773438 252.242188 20.867188 252.335938 20.984375 252.335938 C 21.101562 252.335938 21.195312 252.242188 21.195312 252.125 Z M 21.195312 252.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.433594 249.066406 C 21.433594 248.949219 21.339844 248.855469 21.222656 248.855469 C 21.105469 248.855469 21.011719 248.949219 21.011719 249.066406 C 21.011719 249.183594 21.105469 249.277344 21.222656 249.277344 C 21.339844 249.277344 21.433594 249.183594 21.433594 249.066406 Z M 21.433594 249.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.707031 247.820312 C 21.707031 247.703125 21.613281 247.609375 21.496094 247.609375 C 21.378906 247.609375 21.285156 247.703125 21.285156 247.820312 C 21.285156 247.9375 21.378906 248.03125 21.496094 248.03125 C 21.613281 248.03125 21.707031 247.9375 21.707031 247.820312 Z M 21.707031 247.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.902344 246.3125 C 21.902344 246.195312 21.808594 246.101562 21.691406 246.101562 C 21.574219 246.101562 21.480469 246.195312 21.480469 246.3125 C 21.480469 246.429688 21.574219 246.523438 21.691406 246.523438 C 21.808594 246.523438 21.902344 246.429688 21.902344 246.3125 Z M 21.902344 246.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 20.660156 244.253906 C 20.660156 244.136719 20.566406 244.042969 20.449219 244.042969 C 20.332031 244.042969 20.238281 244.136719 20.238281 244.253906 C 20.238281 244.371094 20.332031 244.464844 20.449219 244.464844 C 20.566406 244.464844 20.660156 244.371094 20.660156 244.253906 Z M 20.660156 244.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 20.941406 246.933594 C 20.941406 246.816406 20.847656 246.722656 20.730469 246.722656 C 20.613281 246.722656 20.519531 246.816406 20.519531 246.933594 C 20.519531 247.050781 20.613281 247.144531 20.730469 247.144531 C 20.847656 247.144531 20.941406 247.050781 20.941406 246.933594 Z M 20.941406 246.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.222656 247.675781 C 21.222656 247.558594 21.128906 247.464844 21.011719 247.464844 C 20.894531 247.464844 20.800781 247.558594 20.800781 247.675781 C 20.800781 247.792969 20.894531 247.886719 21.011719 247.886719 C 21.128906 247.886719 21.222656 247.792969 21.222656 247.675781 Z M 21.222656 247.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.890625 248.796875 C 22.890625 248.679688 22.796875 248.585938 22.679688 248.585938 C 22.5625 248.585938 22.46875 248.679688 22.46875 248.796875 C 22.46875 248.914062 22.5625 249.007812 22.679688 249.007812 C 22.796875 249.007812 22.890625 248.914062 22.890625 248.796875 Z M 22.890625 248.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.789062 246.761719 C 24.789062 246.644531 24.695312 246.550781 24.578125 246.550781 C 24.460938 246.550781 24.367188 246.644531 24.367188 246.761719 C 24.367188 246.878906 24.460938 246.972656 24.578125 246.972656 C 24.695312 246.972656 24.789062 246.878906 24.789062 246.761719 Z M 24.789062 246.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.359375 249.160156 C 27.359375 249.042969 27.265625 248.949219 27.148438 248.949219 C 27.03125 248.949219 26.9375 249.042969 26.9375 249.160156 C 26.9375 249.277344 27.03125 249.371094 27.148438 249.371094 C 27.265625 249.371094 27.359375 249.277344 27.359375 249.160156 Z M 27.359375 249.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.417969 248.714844 C 28.417969 248.597656 28.324219 248.503906 28.207031 248.503906 C 28.089844 248.503906 27.996094 248.597656 27.996094 248.714844 C 27.996094 248.832031 28.089844 248.925781 28.207031 248.925781 C 28.324219 248.925781 28.417969 248.832031 28.417969 248.714844 Z M 28.417969 248.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.777344 248.664062 C 26.777344 248.546875 26.683594 248.453125 26.566406 248.453125 C 26.449219 248.453125 26.355469 248.546875 26.355469 248.664062 C 26.355469 248.78125 26.449219 248.875 26.566406 248.875 C 26.683594 248.875 26.777344 248.78125 26.777344 248.664062 Z M 26.777344 248.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.429688 248.9375 C 26.429688 248.820312 26.335938 248.726562 26.21875 248.726562 C 26.101562 248.726562 26.007812 248.820312 26.007812 248.9375 C 26.007812 249.054688 26.101562 249.148438 26.21875 249.148438 C 26.335938 249.148438 26.429688 249.054688 26.429688 248.9375 Z M 26.429688 248.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.199219 250.410156 C 23.199219 250.292969 23.105469 250.199219 22.988281 250.199219 C 22.871094 250.199219 22.777344 250.292969 22.777344 250.410156 C 22.777344 250.527344 22.871094 250.621094 22.988281 250.621094 C 23.105469 250.621094 23.199219 250.527344 23.199219 250.410156 Z M 23.199219 250.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24 254.324219 C 24 254.207031 23.90625 254.113281 23.789062 254.113281 C 23.671875 254.113281 23.578125 254.207031 23.578125 254.324219 C 23.578125 254.441406 23.671875 254.535156 23.789062 254.535156 C 23.90625 254.535156 24 254.441406 24 254.324219 Z M 24 254.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 20.574219 255.527344 C 20.574219 255.410156 20.480469 255.316406 20.363281 255.316406 C 20.246094 255.316406 20.152344 255.410156 20.152344 255.527344 C 20.152344 255.644531 20.246094 255.738281 20.363281 255.738281 C 20.480469 255.738281 20.574219 255.644531 20.574219 255.527344 Z M 20.574219 255.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 19.234375 257.722656 C 19.234375 257.605469 19.140625 257.511719 19.023438 257.511719 C 18.90625 257.511719 18.8125 257.605469 18.8125 257.722656 C 18.8125 257.839844 18.90625 257.933594 19.023438 257.933594 C 19.140625 257.933594 19.234375 257.839844 19.234375 257.722656 Z M 19.234375 257.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.78125 258.632812 C 21.78125 258.515625 21.6875 258.421875 21.570312 258.421875 C 21.453125 258.421875 21.359375 258.515625 21.359375 258.632812 C 21.359375 258.75 21.453125 258.84375 21.570312 258.84375 C 21.6875 258.84375 21.78125 258.75 21.78125 258.632812 Z M 21.78125 258.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.320312 257.777344 C 22.320312 257.660156 22.226562 257.566406 22.109375 257.566406 C 21.992188 257.566406 21.898438 257.660156 21.898438 257.777344 C 21.898438 257.894531 21.992188 257.988281 22.109375 257.988281 C 22.226562 257.988281 22.320312 257.894531 22.320312 257.777344 Z M 22.320312 257.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.710938 253.980469 C 23.710938 253.863281 23.617188 253.769531 23.5 253.769531 C 23.382812 253.769531 23.289062 253.863281 23.289062 253.980469 C 23.289062 254.097656 23.382812 254.191406 23.5 254.191406 C 23.617188 254.191406 23.710938 254.097656 23.710938 253.980469 Z M 23.710938 253.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.4375 254.140625 C 24.4375 254.023438 24.34375 253.929688 24.226562 253.929688 C 24.109375 253.929688 24.015625 254.023438 24.015625 254.140625 C 24.015625 254.257812 24.109375 254.351562 24.226562 254.351562 C 24.34375 254.351562 24.4375 254.257812 24.4375 254.140625 Z M 24.4375 254.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.433594 255.757812 C 23.433594 255.640625 23.339844 255.546875 23.222656 255.546875 C 23.105469 255.546875 23.011719 255.640625 23.011719 255.757812 C 23.011719 255.875 23.105469 255.96875 23.222656 255.96875 C 23.339844 255.96875 23.433594 255.875 23.433594 255.757812 Z M 23.433594 255.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 18.820312 254.449219 C 18.820312 254.332031 18.726562 254.238281 18.609375 254.238281 C 18.492188 254.238281 18.398438 254.332031 18.398438 254.449219 C 18.398438 254.566406 18.492188 254.660156 18.609375 254.660156 C 18.726562 254.660156 18.820312 254.566406 18.820312 254.449219 Z M 18.820312 254.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 15.175781 251.277344 C 15.175781 251.160156 15.082031 251.066406 14.964844 251.066406 C 14.847656 251.066406 14.753906 251.160156 14.753906 251.277344 C 14.753906 251.394531 14.847656 251.488281 14.964844 251.488281 C 15.082031 251.488281 15.175781 251.394531 15.175781 251.277344 Z M 15.175781 251.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 16.351562 251.332031 C 16.351562 251.214844 16.257812 251.121094 16.140625 251.121094 C 16.023438 251.121094 15.929688 251.214844 15.929688 251.332031 C 15.929688 251.449219 16.023438 251.542969 16.140625 251.542969 C 16.257812 251.542969 16.351562 251.449219 16.351562 251.332031 Z M 16.351562 251.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 15.417969 253.699219 C 15.417969 253.582031 15.324219 253.488281 15.207031 253.488281 C 15.089844 253.488281 14.996094 253.582031 14.996094 253.699219 C 14.996094 253.816406 15.089844 253.910156 15.207031 253.910156 C 15.324219 253.910156 15.417969 253.816406 15.417969 253.699219 Z M 15.417969 253.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 15.703125 256.9375 C 15.703125 256.820312 15.609375 256.726562 15.492188 256.726562 C 15.375 256.726562 15.28125 256.820312 15.28125 256.9375 C 15.28125 257.054688 15.375 257.148438 15.492188 257.148438 C 15.609375 257.148438 15.703125 257.054688 15.703125 256.9375 Z M 15.703125 256.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 11.367188 254.847656 C 11.367188 254.730469 11.273438 254.636719 11.15625 254.636719 C 11.039062 254.636719 10.945312 254.730469 10.945312 254.847656 C 10.945312 254.964844 11.039062 255.058594 11.15625 255.058594 C 11.273438 255.058594 11.367188 254.964844 11.367188 254.847656 Z M 11.367188 254.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 12.410156 255.964844 C 12.410156 255.847656 12.316406 255.753906 12.199219 255.753906 C 12.082031 255.753906 11.988281 255.847656 11.988281 255.964844 C 11.988281 256.082031 12.082031 256.175781 12.199219 256.175781 C 12.316406 256.175781 12.410156 256.082031 12.410156 255.964844 Z M 12.410156 255.964844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 9.691406 254.476562 C 9.691406 254.359375 9.597656 254.265625 9.480469 254.265625 C 9.363281 254.265625 9.269531 254.359375 9.269531 254.476562 C 9.269531 254.59375 9.363281 254.6875 9.480469 254.6875 C 9.597656 254.6875 9.691406 254.59375 9.691406 254.476562 Z M 9.691406 254.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.066406 253.007812 C 8.066406 252.890625 7.972656 252.796875 7.855469 252.796875 C 7.738281 252.796875 7.644531 252.890625 7.644531 253.007812 C 7.644531 253.125 7.738281 253.21875 7.855469 253.21875 C 7.972656 253.21875 8.066406 253.125 8.066406 253.007812 Z M 8.066406 253.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 6.9375 255.367188 C 6.9375 255.25 6.84375 255.15625 6.726562 255.15625 C 6.609375 255.15625 6.515625 255.25 6.515625 255.367188 C 6.515625 255.484375 6.609375 255.578125 6.726562 255.578125 C 6.84375 255.578125 6.9375 255.484375 6.9375 255.367188 Z M 6.9375 255.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 5.988281 252.828125 C 5.988281 252.710938 5.894531 252.617188 5.777344 252.617188 C 5.660156 252.617188 5.566406 252.710938 5.566406 252.828125 C 5.566406 252.945312 5.660156 253.039062 5.777344 253.039062 C 5.894531 253.039062 5.988281 252.945312 5.988281 252.828125 Z M 5.988281 252.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 4.003906 252.644531 C 4.003906 252.527344 3.910156 252.433594 3.792969 252.433594 C 3.675781 252.433594 3.582031 252.527344 3.582031 252.644531 C 3.582031 252.761719 3.675781 252.855469 3.792969 252.855469 C 3.910156 252.855469 4.003906 252.761719 4.003906 252.644531 Z M 4.003906 252.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 4.585938 253.695312 C 4.585938 253.578125 4.492188 253.484375 4.375 253.484375 C 4.257812 253.484375 4.164062 253.578125 4.164062 253.695312 C 4.164062 253.8125 4.257812 253.90625 4.375 253.90625 C 4.492188 253.90625 4.585938 253.8125 4.585938 253.695312 Z M 4.585938 253.695312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 6.613281 256.394531 C 6.613281 256.277344 6.519531 256.183594 6.402344 256.183594 C 6.285156 256.183594 6.191406 256.277344 6.191406 256.394531 C 6.191406 256.511719 6.285156 256.605469 6.402344 256.605469 C 6.519531 256.605469 6.613281 256.511719 6.613281 256.394531 Z M 6.613281 256.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 6.292969 253.277344 C 6.292969 253.160156 6.199219 253.066406 6.082031 253.066406 C 5.964844 253.066406 5.871094 253.160156 5.871094 253.277344 C 5.871094 253.394531 5.964844 253.488281 6.082031 253.488281 C 6.199219 253.488281 6.292969 253.394531 6.292969 253.277344 Z M 6.292969 253.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 7.929688 251.28125 C 7.929688 251.164062 7.835938 251.070312 7.71875 251.070312 C 7.601562 251.070312 7.507812 251.164062 7.507812 251.28125 C 7.507812 251.398438 7.601562 251.492188 7.71875 251.492188 C 7.835938 251.492188 7.929688 251.398438 7.929688 251.28125 Z M 7.929688 251.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 9.167969 250.125 C 9.167969 250.007812 9.074219 249.914062 8.957031 249.914062 C 8.839844 249.914062 8.746094 250.007812 8.746094 250.125 C 8.746094 250.242188 8.839844 250.335938 8.957031 250.335938 C 9.074219 250.335938 9.167969 250.242188 9.167969 250.125 Z M 9.167969 250.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 9.371094 249.042969 C 9.371094 248.925781 9.277344 248.832031 9.160156 248.832031 C 9.042969 248.832031 8.949219 248.925781 8.949219 249.042969 C 8.949219 249.160156 9.042969 249.253906 9.160156 249.253906 C 9.277344 249.253906 9.371094 249.160156 9.371094 249.042969 Z M 9.371094 249.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 9.386719 246.101562 C 9.386719 245.984375 9.292969 245.890625 9.175781 245.890625 C 9.058594 245.890625 8.964844 245.984375 8.964844 246.101562 C 8.964844 246.21875 9.058594 246.3125 9.175781 246.3125 C 9.292969 246.3125 9.386719 246.21875 9.386719 246.101562 Z M 9.386719 246.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 7.558594 248 C 7.558594 247.882812 7.464844 247.789062 7.347656 247.789062 C 7.230469 247.789062 7.136719 247.882812 7.136719 248 C 7.136719 248.117188 7.230469 248.210938 7.347656 248.210938 C 7.464844 248.210938 7.558594 248.117188 7.558594 248 Z M 7.558594 248 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 6.851562 247.121094 C 6.851562 247.003906 6.757812 246.910156 6.640625 246.910156 C 6.523438 246.910156 6.429688 247.003906 6.429688 247.121094 C 6.429688 247.238281 6.523438 247.332031 6.640625 247.332031 C 6.757812 247.332031 6.851562 247.238281 6.851562 247.121094 Z M 6.851562 247.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 5.667969 253.214844 C 5.667969 253.097656 5.574219 253.003906 5.457031 253.003906 C 5.339844 253.003906 5.246094 253.097656 5.246094 253.214844 C 5.246094 253.332031 5.339844 253.425781 5.457031 253.425781 C 5.574219 253.425781 5.667969 253.332031 5.667969 253.214844 Z M 5.667969 253.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 4.4375 253.730469 C 4.4375 253.613281 4.34375 253.519531 4.226562 253.519531 C 4.109375 253.519531 4.015625 253.613281 4.015625 253.730469 C 4.015625 253.847656 4.109375 253.941406 4.226562 253.941406 C 4.34375 253.941406 4.4375 253.847656 4.4375 253.730469 Z M 4.4375 253.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 5.59375 254.625 C 5.59375 254.507812 5.5 254.414062 5.382812 254.414062 C 5.265625 254.414062 5.171875 254.507812 5.171875 254.625 C 5.171875 254.742188 5.265625 254.835938 5.382812 254.835938 C 5.5 254.835938 5.59375 254.742188 5.59375 254.625 Z M 5.59375 254.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 5.605469 255.671875 C 5.605469 255.554688 5.511719 255.460938 5.394531 255.460938 C 5.277344 255.460938 5.183594 255.554688 5.183594 255.671875 C 5.183594 255.789062 5.277344 255.882812 5.394531 255.882812 C 5.511719 255.882812 5.605469 255.789062 5.605469 255.671875 Z M 5.605469 255.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.191406 259.152344 C 8.191406 259.035156 8.097656 258.941406 7.980469 258.941406 C 7.863281 258.941406 7.769531 259.035156 7.769531 259.152344 C 7.769531 259.269531 7.863281 259.363281 7.980469 259.363281 C 8.097656 259.363281 8.191406 259.269531 8.191406 259.152344 Z M 8.191406 259.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 5.890625 259.886719 C 5.890625 259.769531 5.796875 259.675781 5.679688 259.675781 C 5.5625 259.675781 5.46875 259.769531 5.46875 259.886719 C 5.46875 260.003906 5.5625 260.097656 5.679688 260.097656 C 5.796875 260.097656 5.890625 260.003906 5.890625 259.886719 Z M 5.890625 259.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.9375 260.53125 C 8.9375 260.414062 8.84375 260.320312 8.726562 260.320312 C 8.609375 260.320312 8.515625 260.414062 8.515625 260.53125 C 8.515625 260.648438 8.609375 260.742188 8.726562 260.742188 C 8.84375 260.742188 8.9375 260.648438 8.9375 260.53125 Z M 8.9375 260.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 11.300781 264.164062 C 11.300781 264.046875 11.207031 263.953125 11.089844 263.953125 C 10.972656 263.953125 10.878906 264.046875 10.878906 264.164062 C 10.878906 264.28125 10.972656 264.375 11.089844 264.375 C 11.207031 264.375 11.300781 264.28125 11.300781 264.164062 Z M 11.300781 264.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 12.917969 263.171875 C 12.917969 263.054688 12.824219 262.960938 12.707031 262.960938 C 12.589844 262.960938 12.496094 263.054688 12.496094 263.171875 C 12.496094 263.289062 12.589844 263.382812 12.707031 263.382812 C 12.824219 263.382812 12.917969 263.289062 12.917969 263.171875 Z M 12.917969 263.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 11.355469 260.085938 C 11.355469 259.96875 11.261719 259.875 11.144531 259.875 C 11.027344 259.875 10.933594 259.96875 10.933594 260.085938 C 10.933594 260.203125 11.027344 260.296875 11.144531 260.296875 C 11.261719 260.296875 11.355469 260.203125 11.355469 260.085938 Z M 11.355469 260.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 11.992188 263.277344 C 11.992188 263.160156 11.898438 263.066406 11.78125 263.066406 C 11.664062 263.066406 11.570312 263.160156 11.570312 263.277344 C 11.570312 263.394531 11.664062 263.488281 11.78125 263.488281 C 11.898438 263.488281 11.992188 263.394531 11.992188 263.277344 Z M 11.992188 263.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.726562 262.496094 C 14.726562 262.378906 14.632812 262.285156 14.515625 262.285156 C 14.398438 262.285156 14.304688 262.378906 14.304688 262.496094 C 14.304688 262.613281 14.398438 262.707031 14.515625 262.707031 C 14.632812 262.707031 14.726562 262.613281 14.726562 262.496094 Z M 14.726562 262.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 17.375 261.53125 C 17.375 261.414062 17.28125 261.320312 17.164062 261.320312 C 17.046875 261.320312 16.953125 261.414062 16.953125 261.53125 C 16.953125 261.648438 17.046875 261.742188 17.164062 261.742188 C 17.28125 261.742188 17.375 261.648438 17.375 261.53125 Z M 17.375 261.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 17.871094 262.480469 C 17.871094 262.363281 17.777344 262.269531 17.660156 262.269531 C 17.542969 262.269531 17.449219 262.363281 17.449219 262.480469 C 17.449219 262.597656 17.542969 262.691406 17.660156 262.691406 C 17.777344 262.691406 17.871094 262.597656 17.871094 262.480469 Z M 17.871094 262.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 19.800781 263.984375 C 19.800781 263.867188 19.707031 263.773438 19.589844 263.773438 C 19.472656 263.773438 19.378906 263.867188 19.378906 263.984375 C 19.378906 264.101562 19.472656 264.195312 19.589844 264.195312 C 19.707031 264.195312 19.800781 264.101562 19.800781 263.984375 Z M 19.800781 263.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 20.097656 262.523438 C 20.097656 262.40625 20.003906 262.3125 19.886719 262.3125 C 19.769531 262.3125 19.675781 262.40625 19.675781 262.523438 C 19.675781 262.640625 19.769531 262.734375 19.886719 262.734375 C 20.003906 262.734375 20.097656 262.640625 20.097656 262.523438 Z M 20.097656 262.523438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.113281 262.171875 C 23.113281 262.054688 23.019531 261.960938 22.902344 261.960938 C 22.785156 261.960938 22.691406 262.054688 22.691406 262.171875 C 22.691406 262.289062 22.785156 262.382812 22.902344 262.382812 C 23.019531 262.382812 23.113281 262.289062 23.113281 262.171875 Z M 23.113281 262.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.550781 261.773438 C 23.550781 261.65625 23.457031 261.5625 23.339844 261.5625 C 23.222656 261.5625 23.128906 261.65625 23.128906 261.773438 C 23.128906 261.890625 23.222656 261.984375 23.339844 261.984375 C 23.457031 261.984375 23.550781 261.890625 23.550781 261.773438 Z M 23.550781 261.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.941406 263.066406 C 25.941406 262.949219 25.847656 262.855469 25.730469 262.855469 C 25.613281 262.855469 25.519531 262.949219 25.519531 263.066406 C 25.519531 263.183594 25.613281 263.277344 25.730469 263.277344 C 25.847656 263.277344 25.941406 263.183594 25.941406 263.066406 Z M 25.941406 263.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.582031 265.246094 C 26.582031 265.128906 26.488281 265.035156 26.371094 265.035156 C 26.253906 265.035156 26.160156 265.128906 26.160156 265.246094 C 26.160156 265.363281 26.253906 265.457031 26.371094 265.457031 C 26.488281 265.457031 26.582031 265.363281 26.582031 265.246094 Z M 26.582031 265.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.199219 262.40625 C 28.199219 262.289062 28.105469 262.195312 27.988281 262.195312 C 27.871094 262.195312 27.777344 262.289062 27.777344 262.40625 C 27.777344 262.523438 27.871094 262.617188 27.988281 262.617188 C 28.105469 262.617188 28.199219 262.523438 28.199219 262.40625 Z M 28.199219 262.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.40625 259.625 C 28.40625 259.507812 28.3125 259.414062 28.195312 259.414062 C 28.078125 259.414062 27.984375 259.507812 27.984375 259.625 C 27.984375 259.742188 28.078125 259.835938 28.195312 259.835938 C 28.3125 259.835938 28.40625 259.742188 28.40625 259.625 Z M 28.40625 259.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.667969 258.085938 C 28.667969 257.96875 28.574219 257.875 28.457031 257.875 C 28.339844 257.875 28.246094 257.96875 28.246094 258.085938 C 28.246094 258.203125 28.339844 258.296875 28.457031 258.296875 C 28.574219 258.296875 28.667969 258.203125 28.667969 258.085938 Z M 28.667969 258.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.816406 255.816406 C 29.816406 255.699219 29.722656 255.605469 29.605469 255.605469 C 29.488281 255.605469 29.394531 255.699219 29.394531 255.816406 C 29.394531 255.933594 29.488281 256.027344 29.605469 256.027344 C 29.722656 256.027344 29.816406 255.933594 29.816406 255.816406 Z M 29.816406 255.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.375 253.277344 C 32.375 253.160156 32.28125 253.066406 32.164062 253.066406 C 32.046875 253.066406 31.953125 253.160156 31.953125 253.277344 C 31.953125 253.394531 32.046875 253.488281 32.164062 253.488281 C 32.28125 253.488281 32.375 253.394531 32.375 253.277344 Z M 32.375 253.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.019531 254.488281 C 31.019531 254.371094 30.925781 254.277344 30.808594 254.277344 C 30.691406 254.277344 30.597656 254.371094 30.597656 254.488281 C 30.597656 254.605469 30.691406 254.699219 30.808594 254.699219 C 30.925781 254.699219 31.019531 254.605469 31.019531 254.488281 Z M 31.019531 254.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.230469 252.980469 C 28.230469 252.863281 28.136719 252.769531 28.019531 252.769531 C 27.902344 252.769531 27.808594 252.863281 27.808594 252.980469 C 27.808594 253.097656 27.902344 253.191406 28.019531 253.191406 C 28.136719 253.191406 28.230469 253.097656 28.230469 252.980469 Z M 28.230469 252.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.394531 258.921875 C 27.394531 258.804688 27.300781 258.710938 27.183594 258.710938 C 27.066406 258.710938 26.972656 258.804688 26.972656 258.921875 C 26.972656 259.039062 27.066406 259.132812 27.183594 259.132812 C 27.300781 259.132812 27.394531 259.039062 27.394531 258.921875 Z M 27.394531 258.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.847656 258.90625 C 25.847656 258.789062 25.753906 258.695312 25.636719 258.695312 C 25.519531 258.695312 25.425781 258.789062 25.425781 258.90625 C 25.425781 259.023438 25.519531 259.117188 25.636719 259.117188 C 25.753906 259.117188 25.847656 259.023438 25.847656 258.90625 Z M 25.847656 258.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.804688 262.347656 C 26.804688 262.230469 26.710938 262.136719 26.59375 262.136719 C 26.476562 262.136719 26.382812 262.230469 26.382812 262.347656 C 26.382812 262.464844 26.476562 262.558594 26.59375 262.558594 C 26.710938 262.558594 26.804688 262.464844 26.804688 262.347656 Z M 26.804688 262.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.816406 262.953125 C 28.816406 262.835938 28.722656 262.742188 28.605469 262.742188 C 28.488281 262.742188 28.394531 262.835938 28.394531 262.953125 C 28.394531 263.070312 28.488281 263.164062 28.605469 263.164062 C 28.722656 263.164062 28.816406 263.070312 28.816406 262.953125 Z M 28.816406 262.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.875 262.238281 C 31.875 262.121094 31.78125 262.027344 31.664062 262.027344 C 31.546875 262.027344 31.453125 262.121094 31.453125 262.238281 C 31.453125 262.355469 31.546875 262.449219 31.664062 262.449219 C 31.78125 262.449219 31.875 262.355469 31.875 262.238281 Z M 31.875 262.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.121094 261.859375 C 33.121094 261.742188 33.027344 261.648438 32.910156 261.648438 C 32.792969 261.648438 32.699219 261.742188 32.699219 261.859375 C 32.699219 261.976562 32.792969 262.070312 32.910156 262.070312 C 33.027344 262.070312 33.121094 261.976562 33.121094 261.859375 Z M 33.121094 261.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.046875 262.113281 C 35.046875 261.996094 34.953125 261.902344 34.835938 261.902344 C 34.71875 261.902344 34.625 261.996094 34.625 262.113281 C 34.625 262.230469 34.71875 262.324219 34.835938 262.324219 C 34.953125 262.324219 35.046875 262.230469 35.046875 262.113281 Z M 35.046875 262.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.621094 258.25 C 35.621094 258.132812 35.527344 258.039062 35.410156 258.039062 C 35.292969 258.039062 35.199219 258.132812 35.199219 258.25 C 35.199219 258.367188 35.292969 258.460938 35.410156 258.460938 C 35.527344 258.460938 35.621094 258.367188 35.621094 258.25 Z M 35.621094 258.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.953125 259.121094 C 37.953125 259.003906 37.859375 258.910156 37.742188 258.910156 C 37.625 258.910156 37.53125 259.003906 37.53125 259.121094 C 37.53125 259.238281 37.625 259.332031 37.742188 259.332031 C 37.859375 259.332031 37.953125 259.238281 37.953125 259.121094 Z M 37.953125 259.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.226562 261.234375 C 37.226562 261.117188 37.132812 261.023438 37.015625 261.023438 C 36.898438 261.023438 36.804688 261.117188 36.804688 261.234375 C 36.804688 261.351562 36.898438 261.445312 37.015625 261.445312 C 37.132812 261.445312 37.226562 261.351562 37.226562 261.234375 Z M 37.226562 261.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.753906 262.023438 C 38.753906 261.90625 38.660156 261.8125 38.542969 261.8125 C 38.425781 261.8125 38.332031 261.90625 38.332031 262.023438 C 38.332031 262.140625 38.425781 262.234375 38.542969 262.234375 C 38.660156 262.234375 38.753906 262.140625 38.753906 262.023438 Z M 38.753906 262.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 39.449219 260.867188 C 39.449219 260.75 39.355469 260.65625 39.238281 260.65625 C 39.121094 260.65625 39.027344 260.75 39.027344 260.867188 C 39.027344 260.984375 39.121094 261.078125 39.238281 261.078125 C 39.355469 261.078125 39.449219 260.984375 39.449219 260.867188 Z M 39.449219 260.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 39.324219 260.5 C 39.324219 260.382812 39.230469 260.289062 39.113281 260.289062 C 38.996094 260.289062 38.902344 260.382812 38.902344 260.5 C 38.902344 260.617188 38.996094 260.710938 39.113281 260.710938 C 39.230469 260.710938 39.324219 260.617188 39.324219 260.5 Z M 39.324219 260.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.210938 257.988281 C 37.210938 257.871094 37.117188 257.777344 37 257.777344 C 36.882812 257.777344 36.789062 257.871094 36.789062 257.988281 C 36.789062 258.105469 36.882812 258.199219 37 258.199219 C 37.117188 258.199219 37.210938 258.105469 37.210938 257.988281 Z M 37.210938 257.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.023438 260.105469 C 35.023438 259.988281 34.929688 259.894531 34.8125 259.894531 C 34.695312 259.894531 34.601562 259.988281 34.601562 260.105469 C 34.601562 260.222656 34.695312 260.316406 34.8125 260.316406 C 34.929688 260.316406 35.023438 260.222656 35.023438 260.105469 Z M 35.023438 260.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.375 260.035156 C 37.375 259.917969 37.28125 259.824219 37.164062 259.824219 C 37.046875 259.824219 36.953125 259.917969 36.953125 260.035156 C 36.953125 260.152344 37.046875 260.246094 37.164062 260.246094 C 37.28125 260.246094 37.375 260.152344 37.375 260.035156 Z M 37.375 260.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.597656 259.042969 C 35.597656 258.925781 35.503906 258.832031 35.386719 258.832031 C 35.269531 258.832031 35.175781 258.925781 35.175781 259.042969 C 35.175781 259.160156 35.269531 259.253906 35.386719 259.253906 C 35.503906 259.253906 35.597656 259.160156 35.597656 259.042969 Z M 35.597656 259.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.136719 263.519531 C 35.136719 263.402344 35.042969 263.308594 34.925781 263.308594 C 34.808594 263.308594 34.714844 263.402344 34.714844 263.519531 C 34.714844 263.636719 34.808594 263.730469 34.925781 263.730469 C 35.042969 263.730469 35.136719 263.636719 35.136719 263.519531 Z M 35.136719 263.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.324219 262.933594 C 36.324219 262.816406 36.230469 262.722656 36.113281 262.722656 C 35.996094 262.722656 35.902344 262.816406 35.902344 262.933594 C 35.902344 263.050781 35.996094 263.144531 36.113281 263.144531 C 36.230469 263.144531 36.324219 263.050781 36.324219 262.933594 Z M 36.324219 262.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.941406 264.691406 C 36.941406 264.574219 36.847656 264.480469 36.730469 264.480469 C 36.613281 264.480469 36.519531 264.574219 36.519531 264.691406 C 36.519531 264.808594 36.613281 264.902344 36.730469 264.902344 C 36.847656 264.902344 36.941406 264.808594 36.941406 264.691406 Z M 36.941406 264.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 40.167969 267.613281 C 40.167969 267.496094 40.074219 267.402344 39.957031 267.402344 C 39.839844 267.402344 39.746094 267.496094 39.746094 267.613281 C 39.746094 267.730469 39.839844 267.824219 39.957031 267.824219 C 40.074219 267.824219 40.167969 267.730469 40.167969 267.613281 Z M 40.167969 267.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 40.898438 265.96875 C 40.898438 265.851562 40.804688 265.757812 40.6875 265.757812 C 40.570312 265.757812 40.476562 265.851562 40.476562 265.96875 C 40.476562 266.085938 40.570312 266.179688 40.6875 266.179688 C 40.804688 266.179688 40.898438 266.085938 40.898438 265.96875 Z M 40.898438 265.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 40.851562 264.1875 C 40.851562 264.070312 40.757812 263.976562 40.640625 263.976562 C 40.523438 263.976562 40.429688 264.070312 40.429688 264.1875 C 40.429688 264.304688 40.523438 264.398438 40.640625 264.398438 C 40.757812 264.398438 40.851562 264.304688 40.851562 264.1875 Z M 40.851562 264.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 44.328125 263.4375 C 44.328125 263.320312 44.234375 263.226562 44.117188 263.226562 C 44 263.226562 43.90625 263.320312 43.90625 263.4375 C 43.90625 263.554688 44 263.648438 44.117188 263.648438 C 44.234375 263.648438 44.328125 263.554688 44.328125 263.4375 Z M 44.328125 263.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.191406 263.074219 C 47.191406 262.957031 47.097656 262.863281 46.980469 262.863281 C 46.863281 262.863281 46.769531 262.957031 46.769531 263.074219 C 46.769531 263.191406 46.863281 263.285156 46.980469 263.285156 C 47.097656 263.285156 47.191406 263.191406 47.191406 263.074219 Z M 47.191406 263.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.28125 260.167969 C 47.28125 260.050781 47.1875 259.957031 47.070312 259.957031 C 46.953125 259.957031 46.859375 260.050781 46.859375 260.167969 C 46.859375 260.285156 46.953125 260.378906 47.070312 260.378906 C 47.1875 260.378906 47.28125 260.285156 47.28125 260.167969 Z M 47.28125 260.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.691406 260.5625 C 47.691406 260.445312 47.597656 260.351562 47.480469 260.351562 C 47.363281 260.351562 47.269531 260.445312 47.269531 260.5625 C 47.269531 260.679688 47.363281 260.773438 47.480469 260.773438 C 47.597656 260.773438 47.691406 260.679688 47.691406 260.5625 Z M 47.691406 260.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 48.457031 262.558594 C 48.457031 262.441406 48.363281 262.347656 48.246094 262.347656 C 48.128906 262.347656 48.035156 262.441406 48.035156 262.558594 C 48.035156 262.675781 48.128906 262.769531 48.246094 262.769531 C 48.363281 262.769531 48.457031 262.675781 48.457031 262.558594 Z M 48.457031 262.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 48.949219 264.148438 C 48.949219 264.03125 48.855469 263.9375 48.738281 263.9375 C 48.621094 263.9375 48.527344 264.03125 48.527344 264.148438 C 48.527344 264.265625 48.621094 264.359375 48.738281 264.359375 C 48.855469 264.359375 48.949219 264.265625 48.949219 264.148438 Z M 48.949219 264.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.660156 266.171875 C 49.660156 266.054688 49.566406 265.960938 49.449219 265.960938 C 49.332031 265.960938 49.238281 266.054688 49.238281 266.171875 C 49.238281 266.289062 49.332031 266.382812 49.449219 266.382812 C 49.566406 266.382812 49.660156 266.289062 49.660156 266.171875 Z M 49.660156 266.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50 264.300781 C 50 264.183594 49.90625 264.089844 49.789062 264.089844 C 49.671875 264.089844 49.578125 264.183594 49.578125 264.300781 C 49.578125 264.417969 49.671875 264.511719 49.789062 264.511719 C 49.90625 264.511719 50 264.417969 50 264.300781 Z M 50 264.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.238281 265.90625 C 49.238281 265.789062 49.144531 265.695312 49.027344 265.695312 C 48.910156 265.695312 48.816406 265.789062 48.816406 265.90625 C 48.816406 266.023438 48.910156 266.117188 49.027344 266.117188 C 49.144531 266.117188 49.238281 266.023438 49.238281 265.90625 Z M 49.238281 265.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 48.511719 265.449219 C 48.511719 265.332031 48.417969 265.238281 48.300781 265.238281 C 48.183594 265.238281 48.089844 265.332031 48.089844 265.449219 C 48.089844 265.566406 48.183594 265.660156 48.300781 265.660156 C 48.417969 265.660156 48.511719 265.566406 48.511719 265.449219 Z M 48.511719 265.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.132812 264.355469 C 50.132812 264.238281 50.039062 264.144531 49.921875 264.144531 C 49.804688 264.144531 49.710938 264.238281 49.710938 264.355469 C 49.710938 264.472656 49.804688 264.566406 49.921875 264.566406 C 50.039062 264.566406 50.132812 264.472656 50.132812 264.355469 Z M 50.132812 264.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 51.761719 261.863281 C 51.761719 261.746094 51.667969 261.652344 51.550781 261.652344 C 51.433594 261.652344 51.339844 261.746094 51.339844 261.863281 C 51.339844 261.980469 51.433594 262.074219 51.550781 262.074219 C 51.667969 262.074219 51.761719 261.980469 51.761719 261.863281 Z M 51.761719 261.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.148438 261.765625 C 52.148438 261.648438 52.054688 261.554688 51.9375 261.554688 C 51.820312 261.554688 51.726562 261.648438 51.726562 261.765625 C 51.726562 261.882812 51.820312 261.976562 51.9375 261.976562 C 52.054688 261.976562 52.148438 261.882812 52.148438 261.765625 Z M 52.148438 261.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 46.871094 263.679688 C 46.871094 263.5625 46.777344 263.46875 46.660156 263.46875 C 46.542969 263.46875 46.449219 263.5625 46.449219 263.679688 C 46.449219 263.796875 46.542969 263.890625 46.660156 263.890625 C 46.777344 263.890625 46.871094 263.796875 46.871094 263.679688 Z M 46.871094 263.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 51.765625 262.84375 C 51.765625 262.726562 51.671875 262.632812 51.554688 262.632812 C 51.4375 262.632812 51.34375 262.726562 51.34375 262.84375 C 51.34375 262.960938 51.4375 263.054688 51.554688 263.054688 C 51.671875 263.054688 51.765625 262.960938 51.765625 262.84375 Z M 51.765625 262.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 54.105469 261.289062 C 54.105469 261.171875 54.011719 261.078125 53.894531 261.078125 C 53.777344 261.078125 53.683594 261.171875 53.683594 261.289062 C 53.683594 261.40625 53.777344 261.5 53.894531 261.5 C 54.011719 261.5 54.105469 261.40625 54.105469 261.289062 Z M 54.105469 261.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 55.132812 257.128906 C 55.132812 257.011719 55.039062 256.917969 54.921875 256.917969 C 54.804688 256.917969 54.710938 257.011719 54.710938 257.128906 C 54.710938 257.246094 54.804688 257.339844 54.921875 257.339844 C 55.039062 257.339844 55.132812 257.246094 55.132812 257.128906 Z M 55.132812 257.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 60.5625 258.082031 C 60.5625 257.964844 60.46875 257.871094 60.351562 257.871094 C 60.234375 257.871094 60.140625 257.964844 60.140625 258.082031 C 60.140625 258.199219 60.234375 258.292969 60.351562 258.292969 C 60.46875 258.292969 60.5625 258.199219 60.5625 258.082031 Z M 60.5625 258.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 62.011719 257.871094 C 62.011719 257.753906 61.917969 257.660156 61.800781 257.660156 C 61.683594 257.660156 61.589844 257.753906 61.589844 257.871094 C 61.589844 257.988281 61.683594 258.082031 61.800781 258.082031 C 61.917969 258.082031 62.011719 257.988281 62.011719 257.871094 Z M 62.011719 257.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 64.429688 258 C 64.429688 257.882812 64.335938 257.789062 64.21875 257.789062 C 64.101562 257.789062 64.007812 257.882812 64.007812 258 C 64.007812 258.117188 64.101562 258.210938 64.21875 258.210938 C 64.335938 258.210938 64.429688 258.117188 64.429688 258 Z M 64.429688 258 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 62.726562 256.207031 C 62.726562 256.089844 62.632812 255.996094 62.515625 255.996094 C 62.398438 255.996094 62.304688 256.089844 62.304688 256.207031 C 62.304688 256.324219 62.398438 256.417969 62.515625 256.417969 C 62.632812 256.417969 62.726562 256.324219 62.726562 256.207031 Z M 62.726562 256.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 64.058594 256.738281 C 64.058594 256.621094 63.964844 256.527344 63.847656 256.527344 C 63.730469 256.527344 63.636719 256.621094 63.636719 256.738281 C 63.636719 256.855469 63.730469 256.949219 63.847656 256.949219 C 63.964844 256.949219 64.058594 256.855469 64.058594 256.738281 Z M 64.058594 256.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 65.089844 257.496094 C 65.089844 257.378906 64.996094 257.285156 64.878906 257.285156 C 64.761719 257.285156 64.667969 257.378906 64.667969 257.496094 C 64.667969 257.613281 64.761719 257.707031 64.878906 257.707031 C 64.996094 257.707031 65.089844 257.613281 65.089844 257.496094 Z M 65.089844 257.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 66.03125 256.53125 C 66.03125 256.414062 65.9375 256.320312 65.820312 256.320312 C 65.703125 256.320312 65.609375 256.414062 65.609375 256.53125 C 65.609375 256.648438 65.703125 256.742188 65.820312 256.742188 C 65.9375 256.742188 66.03125 256.648438 66.03125 256.53125 Z M 66.03125 256.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 71 252.929688 C 71 252.8125 70.90625 252.71875 70.789062 252.71875 C 70.671875 252.71875 70.578125 252.8125 70.578125 252.929688 C 70.578125 253.046875 70.671875 253.140625 70.789062 253.140625 C 70.90625 253.140625 71 253.046875 71 252.929688 Z M 71 252.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 65.90625 255.109375 C 65.90625 254.992188 65.8125 254.898438 65.695312 254.898438 C 65.578125 254.898438 65.484375 254.992188 65.484375 255.109375 C 65.484375 255.226562 65.578125 255.320312 65.695312 255.320312 C 65.8125 255.320312 65.90625 255.226562 65.90625 255.109375 Z M 65.90625 255.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.246094 256.835938 C 67.246094 256.71875 67.152344 256.625 67.035156 256.625 C 66.917969 256.625 66.824219 256.71875 66.824219 256.835938 C 66.824219 256.953125 66.917969 257.046875 67.035156 257.046875 C 67.152344 257.046875 67.246094 256.953125 67.246094 256.835938 Z M 67.246094 256.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 72.085938 256.5 C 72.085938 256.382812 71.992188 256.289062 71.875 256.289062 C 71.757812 256.289062 71.664062 256.382812 71.664062 256.5 C 71.664062 256.617188 71.757812 256.710938 71.875 256.710938 C 71.992188 256.710938 72.085938 256.617188 72.085938 256.5 Z M 72.085938 256.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 74.121094 259.472656 C 74.121094 259.355469 74.027344 259.261719 73.910156 259.261719 C 73.792969 259.261719 73.699219 259.355469 73.699219 259.472656 C 73.699219 259.589844 73.792969 259.683594 73.910156 259.683594 C 74.027344 259.683594 74.121094 259.589844 74.121094 259.472656 Z M 74.121094 259.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 76.699219 261.738281 C 76.699219 261.621094 76.605469 261.527344 76.488281 261.527344 C 76.371094 261.527344 76.277344 261.621094 76.277344 261.738281 C 76.277344 261.855469 76.371094 261.949219 76.488281 261.949219 C 76.605469 261.949219 76.699219 261.855469 76.699219 261.738281 Z M 76.699219 261.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 71.617188 264.03125 C 71.617188 263.914062 71.523438 263.820312 71.40625 263.820312 C 71.289062 263.820312 71.195312 263.914062 71.195312 264.03125 C 71.195312 264.148438 71.289062 264.242188 71.40625 264.242188 C 71.523438 264.242188 71.617188 264.148438 71.617188 264.03125 Z M 71.617188 264.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 69.335938 265.777344 C 69.335938 265.660156 69.242188 265.566406 69.125 265.566406 C 69.007812 265.566406 68.914062 265.660156 68.914062 265.777344 C 68.914062 265.894531 69.007812 265.988281 69.125 265.988281 C 69.242188 265.988281 69.335938 265.894531 69.335938 265.777344 Z M 69.335938 265.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.796875 268.996094 C 67.796875 268.878906 67.703125 268.785156 67.585938 268.785156 C 67.46875 268.785156 67.375 268.878906 67.375 268.996094 C 67.375 269.113281 67.46875 269.207031 67.585938 269.207031 C 67.703125 269.207031 67.796875 269.113281 67.796875 268.996094 Z M 67.796875 268.996094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 66.203125 268.75 C 66.203125 268.632812 66.109375 268.539062 65.992188 268.539062 C 65.875 268.539062 65.78125 268.632812 65.78125 268.75 C 65.78125 268.867188 65.875 268.960938 65.992188 268.960938 C 66.109375 268.960938 66.203125 268.867188 66.203125 268.75 Z M 66.203125 268.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 65.761719 270.9375 C 65.761719 270.820312 65.667969 270.726562 65.550781 270.726562 C 65.433594 270.726562 65.339844 270.820312 65.339844 270.9375 C 65.339844 271.054688 65.433594 271.148438 65.550781 271.148438 C 65.667969 271.148438 65.761719 271.054688 65.761719 270.9375 Z M 65.761719 270.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 68.550781 275.335938 C 68.550781 275.21875 68.457031 275.125 68.339844 275.125 C 68.222656 275.125 68.128906 275.21875 68.128906 275.335938 C 68.128906 275.453125 68.222656 275.546875 68.339844 275.546875 C 68.457031 275.546875 68.550781 275.453125 68.550781 275.335938 Z M 68.550781 275.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.789062 278.378906 C 67.789062 278.261719 67.695312 278.167969 67.578125 278.167969 C 67.460938 278.167969 67.367188 278.261719 67.367188 278.378906 C 67.367188 278.496094 67.460938 278.589844 67.578125 278.589844 C 67.695312 278.589844 67.789062 278.496094 67.789062 278.378906 Z M 67.789062 278.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 68.472656 278.152344 C 68.472656 278.035156 68.378906 277.941406 68.261719 277.941406 C 68.144531 277.941406 68.050781 278.035156 68.050781 278.152344 C 68.050781 278.269531 68.144531 278.363281 68.261719 278.363281 C 68.378906 278.363281 68.472656 278.269531 68.472656 278.152344 Z M 68.472656 278.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 68.84375 275.796875 C 68.84375 275.679688 68.75 275.585938 68.632812 275.585938 C 68.515625 275.585938 68.421875 275.679688 68.421875 275.796875 C 68.421875 275.914062 68.515625 276.007812 68.632812 276.007812 C 68.75 276.007812 68.84375 275.914062 68.84375 275.796875 Z M 68.84375 275.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 62.222656 276.035156 C 62.222656 275.917969 62.128906 275.824219 62.011719 275.824219 C 61.894531 275.824219 61.800781 275.917969 61.800781 276.035156 C 61.800781 276.152344 61.894531 276.246094 62.011719 276.246094 C 62.128906 276.246094 62.222656 276.152344 62.222656 276.035156 Z M 62.222656 276.035156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 61.753906 275.992188 C 61.753906 275.875 61.660156 275.78125 61.542969 275.78125 C 61.425781 275.78125 61.332031 275.875 61.332031 275.992188 C 61.332031 276.109375 61.425781 276.203125 61.542969 276.203125 C 61.660156 276.203125 61.753906 276.109375 61.753906 275.992188 Z M 61.753906 275.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 65.371094 275.824219 C 65.371094 275.707031 65.277344 275.613281 65.160156 275.613281 C 65.042969 275.613281 64.949219 275.707031 64.949219 275.824219 C 64.949219 275.941406 65.042969 276.035156 65.160156 276.035156 C 65.277344 276.035156 65.371094 275.941406 65.371094 275.824219 Z M 65.371094 275.824219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 63.269531 273.378906 C 63.269531 273.261719 63.175781 273.167969 63.058594 273.167969 C 62.941406 273.167969 62.847656 273.261719 62.847656 273.378906 C 62.847656 273.496094 62.941406 273.589844 63.058594 273.589844 C 63.175781 273.589844 63.269531 273.496094 63.269531 273.378906 Z M 63.269531 273.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 64.660156 274.136719 C 64.660156 274.019531 64.566406 273.925781 64.449219 273.925781 C 64.332031 273.925781 64.238281 274.019531 64.238281 274.136719 C 64.238281 274.253906 64.332031 274.347656 64.449219 274.347656 C 64.566406 274.347656 64.660156 274.253906 64.660156 274.136719 Z M 64.660156 274.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 65.683594 278.210938 C 65.683594 278.09375 65.589844 278 65.472656 278 C 65.355469 278 65.261719 278.09375 65.261719 278.210938 C 65.261719 278.328125 65.355469 278.421875 65.472656 278.421875 C 65.589844 278.421875 65.683594 278.328125 65.683594 278.210938 Z M 65.683594 278.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 63.410156 280.066406 C 63.410156 279.949219 63.316406 279.855469 63.199219 279.855469 C 63.082031 279.855469 62.988281 279.949219 62.988281 280.066406 C 62.988281 280.183594 63.082031 280.277344 63.199219 280.277344 C 63.316406 280.277344 63.410156 280.183594 63.410156 280.066406 Z M 63.410156 280.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 61.445312 279.355469 C 61.445312 279.238281 61.351562 279.144531 61.234375 279.144531 C 61.117188 279.144531 61.023438 279.238281 61.023438 279.355469 C 61.023438 279.472656 61.117188 279.566406 61.234375 279.566406 C 61.351562 279.566406 61.445312 279.472656 61.445312 279.355469 Z M 61.445312 279.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 61.488281 279.808594 C 61.488281 279.691406 61.394531 279.597656 61.277344 279.597656 C 61.160156 279.597656 61.066406 279.691406 61.066406 279.808594 C 61.066406 279.925781 61.160156 280.019531 61.277344 280.019531 C 61.394531 280.019531 61.488281 279.925781 61.488281 279.808594 Z M 61.488281 279.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 61.320312 280.894531 C 61.320312 280.777344 61.226562 280.683594 61.109375 280.683594 C 60.992188 280.683594 60.898438 280.777344 60.898438 280.894531 C 60.898438 281.011719 60.992188 281.105469 61.109375 281.105469 C 61.226562 281.105469 61.320312 281.011719 61.320312 280.894531 Z M 61.320312 280.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.488281 280.304688 C 59.488281 280.1875 59.394531 280.09375 59.277344 280.09375 C 59.160156 280.09375 59.066406 280.1875 59.066406 280.304688 C 59.066406 280.421875 59.160156 280.515625 59.277344 280.515625 C 59.394531 280.515625 59.488281 280.421875 59.488281 280.304688 Z M 59.488281 280.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.914062 284.535156 C 59.914062 284.417969 59.820312 284.324219 59.703125 284.324219 C 59.585938 284.324219 59.492188 284.417969 59.492188 284.535156 C 59.492188 284.652344 59.585938 284.746094 59.703125 284.746094 C 59.820312 284.746094 59.914062 284.652344 59.914062 284.535156 Z M 59.914062 284.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 61.3125 283.761719 C 61.3125 283.644531 61.21875 283.550781 61.101562 283.550781 C 60.984375 283.550781 60.890625 283.644531 60.890625 283.761719 C 60.890625 283.878906 60.984375 283.972656 61.101562 283.972656 C 61.21875 283.972656 61.3125 283.878906 61.3125 283.761719 Z M 61.3125 283.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 63.910156 287.238281 C 63.910156 287.121094 63.816406 287.027344 63.699219 287.027344 C 63.582031 287.027344 63.488281 287.121094 63.488281 287.238281 C 63.488281 287.355469 63.582031 287.449219 63.699219 287.449219 C 63.816406 287.449219 63.910156 287.355469 63.910156 287.238281 Z M 63.910156 287.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 61.429688 287.890625 C 61.429688 287.773438 61.335938 287.679688 61.21875 287.679688 C 61.101562 287.679688 61.007812 287.773438 61.007812 287.890625 C 61.007812 288.007812 61.101562 288.101562 61.21875 288.101562 C 61.335938 288.101562 61.429688 288.007812 61.429688 287.890625 Z M 61.429688 287.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 62.679688 285.886719 C 62.679688 285.769531 62.585938 285.675781 62.46875 285.675781 C 62.351562 285.675781 62.257812 285.769531 62.257812 285.886719 C 62.257812 286.003906 62.351562 286.097656 62.46875 286.097656 C 62.585938 286.097656 62.679688 286.003906 62.679688 285.886719 Z M 62.679688 285.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 60.917969 288.585938 C 60.917969 288.46875 60.824219 288.375 60.707031 288.375 C 60.589844 288.375 60.496094 288.46875 60.496094 288.585938 C 60.496094 288.703125 60.589844 288.796875 60.707031 288.796875 C 60.824219 288.796875 60.917969 288.703125 60.917969 288.585938 Z M 60.917969 288.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 63.1875 291.304688 C 63.1875 291.1875 63.09375 291.09375 62.976562 291.09375 C 62.859375 291.09375 62.765625 291.1875 62.765625 291.304688 C 62.765625 291.421875 62.859375 291.515625 62.976562 291.515625 C 63.09375 291.515625 63.1875 291.421875 63.1875 291.304688 Z M 63.1875 291.304688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 64.015625 293.96875 C 64.015625 293.851562 63.921875 293.757812 63.804688 293.757812 C 63.6875 293.757812 63.59375 293.851562 63.59375 293.96875 C 63.59375 294.085938 63.6875 294.179688 63.804688 294.179688 C 63.921875 294.179688 64.015625 294.085938 64.015625 293.96875 Z M 64.015625 293.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 66.121094 295.902344 C 66.121094 295.785156 66.027344 295.691406 65.910156 295.691406 C 65.792969 295.691406 65.699219 295.785156 65.699219 295.902344 C 65.699219 296.019531 65.792969 296.113281 65.910156 296.113281 C 66.027344 296.113281 66.121094 296.019531 66.121094 295.902344 Z M 66.121094 295.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 64.230469 295.1875 C 64.230469 295.070312 64.136719 294.976562 64.019531 294.976562 C 63.902344 294.976562 63.808594 295.070312 63.808594 295.1875 C 63.808594 295.304688 63.902344 295.398438 64.019531 295.398438 C 64.136719 295.398438 64.230469 295.304688 64.230469 295.1875 Z M 64.230469 295.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 62.414062 296.535156 C 62.414062 296.417969 62.320312 296.324219 62.203125 296.324219 C 62.085938 296.324219 61.992188 296.417969 61.992188 296.535156 C 61.992188 296.652344 62.085938 296.746094 62.203125 296.746094 C 62.320312 296.746094 62.414062 296.652344 62.414062 296.535156 Z M 62.414062 296.535156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 64.050781 296.605469 C 64.050781 296.488281 63.957031 296.394531 63.839844 296.394531 C 63.722656 296.394531 63.628906 296.488281 63.628906 296.605469 C 63.628906 296.722656 63.722656 296.816406 63.839844 296.816406 C 63.957031 296.816406 64.050781 296.722656 64.050781 296.605469 Z M 64.050781 296.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 64.1875 295.753906 C 64.1875 295.636719 64.09375 295.542969 63.976562 295.542969 C 63.859375 295.542969 63.765625 295.636719 63.765625 295.753906 C 63.765625 295.871094 63.859375 295.964844 63.976562 295.964844 C 64.09375 295.964844 64.1875 295.871094 64.1875 295.753906 Z M 64.1875 295.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.574219 299.191406 C 59.574219 299.074219 59.480469 298.980469 59.363281 298.980469 C 59.246094 298.980469 59.152344 299.074219 59.152344 299.191406 C 59.152344 299.308594 59.246094 299.402344 59.363281 299.402344 C 59.480469 299.402344 59.574219 299.308594 59.574219 299.191406 Z M 59.574219 299.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 56.34375 298.332031 C 56.34375 298.214844 56.25 298.121094 56.132812 298.121094 C 56.015625 298.121094 55.921875 298.214844 55.921875 298.332031 C 55.921875 298.449219 56.015625 298.542969 56.132812 298.542969 C 56.25 298.542969 56.34375 298.449219 56.34375 298.332031 Z M 56.34375 298.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.5 300.007812 C 50.5 299.890625 50.40625 299.796875 50.289062 299.796875 C 50.171875 299.796875 50.078125 299.890625 50.078125 300.007812 C 50.078125 300.125 50.171875 300.21875 50.289062 300.21875 C 50.40625 300.21875 50.5 300.125 50.5 300.007812 Z M 50.5 300.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.355469 298.667969 C 49.355469 298.550781 49.261719 298.457031 49.144531 298.457031 C 49.027344 298.457031 48.933594 298.550781 48.933594 298.667969 C 48.933594 298.785156 49.027344 298.878906 49.144531 298.878906 C 49.261719 298.878906 49.355469 298.785156 49.355469 298.667969 Z M 49.355469 298.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.679688 297.941406 C 49.679688 297.824219 49.585938 297.730469 49.46875 297.730469 C 49.351562 297.730469 49.257812 297.824219 49.257812 297.941406 C 49.257812 298.058594 49.351562 298.152344 49.46875 298.152344 C 49.585938 298.152344 49.679688 298.058594 49.679688 297.941406 Z M 49.679688 297.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.523438 298.246094 C 50.523438 298.128906 50.429688 298.035156 50.3125 298.035156 C 50.195312 298.035156 50.101562 298.128906 50.101562 298.246094 C 50.101562 298.363281 50.195312 298.457031 50.3125 298.457031 C 50.429688 298.457031 50.523438 298.363281 50.523438 298.246094 Z M 50.523438 298.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 51.863281 295.984375 C 51.863281 295.867188 51.769531 295.773438 51.652344 295.773438 C 51.535156 295.773438 51.441406 295.867188 51.441406 295.984375 C 51.441406 296.101562 51.535156 296.195312 51.652344 296.195312 C 51.769531 296.195312 51.863281 296.101562 51.863281 295.984375 Z M 51.863281 295.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 51.398438 297.277344 C 51.398438 297.160156 51.304688 297.066406 51.1875 297.066406 C 51.070312 297.066406 50.976562 297.160156 50.976562 297.277344 C 50.976562 297.394531 51.070312 297.488281 51.1875 297.488281 C 51.304688 297.488281 51.398438 297.394531 51.398438 297.277344 Z M 51.398438 297.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 51.621094 296.210938 C 51.621094 296.09375 51.527344 296 51.410156 296 C 51.292969 296 51.199219 296.09375 51.199219 296.210938 C 51.199219 296.328125 51.292969 296.421875 51.410156 296.421875 C 51.527344 296.421875 51.621094 296.328125 51.621094 296.210938 Z M 51.621094 296.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.558594 294.519531 C 52.558594 294.402344 52.464844 294.308594 52.347656 294.308594 C 52.230469 294.308594 52.136719 294.402344 52.136719 294.519531 C 52.136719 294.636719 52.230469 294.730469 52.347656 294.730469 C 52.464844 294.730469 52.558594 294.636719 52.558594 294.519531 Z M 52.558594 294.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 54.53125 294.875 C 54.53125 294.757812 54.4375 294.664062 54.320312 294.664062 C 54.203125 294.664062 54.109375 294.757812 54.109375 294.875 C 54.109375 294.992188 54.203125 295.085938 54.320312 295.085938 C 54.4375 295.085938 54.53125 294.992188 54.53125 294.875 Z M 54.53125 294.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 53.523438 293.667969 C 53.523438 293.550781 53.429688 293.457031 53.3125 293.457031 C 53.195312 293.457031 53.101562 293.550781 53.101562 293.667969 C 53.101562 293.785156 53.195312 293.878906 53.3125 293.878906 C 53.429688 293.878906 53.523438 293.785156 53.523438 293.667969 Z M 53.523438 293.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 56.917969 291.257812 C 56.917969 291.140625 56.824219 291.046875 56.707031 291.046875 C 56.589844 291.046875 56.496094 291.140625 56.496094 291.257812 C 56.496094 291.375 56.589844 291.46875 56.707031 291.46875 C 56.824219 291.46875 56.917969 291.375 56.917969 291.257812 Z M 56.917969 291.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 53.917969 293.085938 C 53.917969 292.96875 53.824219 292.875 53.707031 292.875 C 53.589844 292.875 53.496094 292.96875 53.496094 293.085938 C 53.496094 293.203125 53.589844 293.296875 53.707031 293.296875 C 53.824219 293.296875 53.917969 293.203125 53.917969 293.085938 Z M 53.917969 293.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.507812 294.898438 C 52.507812 294.78125 52.414062 294.6875 52.296875 294.6875 C 52.179688 294.6875 52.085938 294.78125 52.085938 294.898438 C 52.085938 295.015625 52.179688 295.109375 52.296875 295.109375 C 52.414062 295.109375 52.507812 295.015625 52.507812 294.898438 Z M 52.507812 294.898438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.757812 295.792969 C 49.757812 295.675781 49.664062 295.582031 49.546875 295.582031 C 49.429688 295.582031 49.335938 295.675781 49.335938 295.792969 C 49.335938 295.910156 49.429688 296.003906 49.546875 296.003906 C 49.664062 296.003906 49.757812 295.910156 49.757812 295.792969 Z M 49.757812 295.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.941406 297.570312 C 52.941406 297.453125 52.847656 297.359375 52.730469 297.359375 C 52.613281 297.359375 52.519531 297.453125 52.519531 297.570312 C 52.519531 297.6875 52.613281 297.78125 52.730469 297.78125 C 52.847656 297.78125 52.941406 297.6875 52.941406 297.570312 Z M 52.941406 297.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 51.539062 299.3125 C 51.539062 299.195312 51.445312 299.101562 51.328125 299.101562 C 51.210938 299.101562 51.117188 299.195312 51.117188 299.3125 C 51.117188 299.429688 51.210938 299.523438 51.328125 299.523438 C 51.445312 299.523438 51.539062 299.429688 51.539062 299.3125 Z M 51.539062 299.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.546875 298.742188 C 52.546875 298.625 52.453125 298.53125 52.335938 298.53125 C 52.21875 298.53125 52.125 298.625 52.125 298.742188 C 52.125 298.859375 52.21875 298.953125 52.335938 298.953125 C 52.453125 298.953125 52.546875 298.859375 52.546875 298.742188 Z M 52.546875 298.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 54.113281 298.15625 C 54.113281 298.039062 54.019531 297.945312 53.902344 297.945312 C 53.785156 297.945312 53.691406 298.039062 53.691406 298.15625 C 53.691406 298.273438 53.785156 298.367188 53.902344 298.367188 C 54.019531 298.367188 54.113281 298.273438 54.113281 298.15625 Z M 54.113281 298.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 55.023438 301.285156 C 55.023438 301.167969 54.929688 301.074219 54.8125 301.074219 C 54.695312 301.074219 54.601562 301.167969 54.601562 301.285156 C 54.601562 301.402344 54.695312 301.496094 54.8125 301.496094 C 54.929688 301.496094 55.023438 301.402344 55.023438 301.285156 Z M 55.023438 301.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 55.117188 303 C 55.117188 302.882812 55.023438 302.789062 54.90625 302.789062 C 54.789062 302.789062 54.695312 302.882812 54.695312 303 C 54.695312 303.117188 54.789062 303.210938 54.90625 303.210938 C 55.023438 303.210938 55.117188 303.117188 55.117188 303 Z M 55.117188 303 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 57.761719 302.585938 C 57.761719 302.46875 57.667969 302.375 57.550781 302.375 C 57.433594 302.375 57.339844 302.46875 57.339844 302.585938 C 57.339844 302.703125 57.433594 302.796875 57.550781 302.796875 C 57.667969 302.796875 57.761719 302.703125 57.761719 302.585938 Z M 57.761719 302.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 58.078125 304.152344 C 58.078125 304.035156 57.984375 303.941406 57.867188 303.941406 C 57.75 303.941406 57.65625 304.035156 57.65625 304.152344 C 57.65625 304.269531 57.75 304.363281 57.867188 304.363281 C 57.984375 304.363281 58.078125 304.269531 58.078125 304.152344 Z M 58.078125 304.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 57.269531 307.144531 C 57.269531 307.027344 57.175781 306.933594 57.058594 306.933594 C 56.941406 306.933594 56.847656 307.027344 56.847656 307.144531 C 56.847656 307.261719 56.941406 307.355469 57.058594 307.355469 C 57.175781 307.355469 57.269531 307.261719 57.269531 307.144531 Z M 57.269531 307.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 55.550781 307.128906 C 55.550781 307.011719 55.457031 306.917969 55.339844 306.917969 C 55.222656 306.917969 55.128906 307.011719 55.128906 307.128906 C 55.128906 307.246094 55.222656 307.339844 55.339844 307.339844 C 55.457031 307.339844 55.550781 307.246094 55.550781 307.128906 Z M 55.550781 307.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 55.203125 307.191406 C 55.203125 307.074219 55.109375 306.980469 54.992188 306.980469 C 54.875 306.980469 54.78125 307.074219 54.78125 307.191406 C 54.78125 307.308594 54.875 307.402344 54.992188 307.402344 C 55.109375 307.402344 55.203125 307.308594 55.203125 307.191406 Z M 55.203125 307.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 56.074219 308.605469 C 56.074219 308.488281 55.980469 308.394531 55.863281 308.394531 C 55.746094 308.394531 55.652344 308.488281 55.652344 308.605469 C 55.652344 308.722656 55.746094 308.816406 55.863281 308.816406 C 55.980469 308.816406 56.074219 308.722656 56.074219 308.605469 Z M 56.074219 308.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 56.019531 309.042969 C 56.019531 308.925781 55.925781 308.832031 55.808594 308.832031 C 55.691406 308.832031 55.597656 308.925781 55.597656 309.042969 C 55.597656 309.160156 55.691406 309.253906 55.808594 309.253906 C 55.925781 309.253906 56.019531 309.160156 56.019531 309.042969 Z M 56.019531 309.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 57.234375 306.632812 C 57.234375 306.515625 57.140625 306.421875 57.023438 306.421875 C 56.90625 306.421875 56.8125 306.515625 56.8125 306.632812 C 56.8125 306.75 56.90625 306.84375 57.023438 306.84375 C 57.140625 306.84375 57.234375 306.75 57.234375 306.632812 Z M 57.234375 306.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 57.492188 305.355469 C 57.492188 305.238281 57.398438 305.144531 57.28125 305.144531 C 57.164062 305.144531 57.070312 305.238281 57.070312 305.355469 C 57.070312 305.472656 57.164062 305.566406 57.28125 305.566406 C 57.398438 305.566406 57.492188 305.472656 57.492188 305.355469 Z M 57.492188 305.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 58.285156 306.050781 C 58.285156 305.933594 58.191406 305.839844 58.074219 305.839844 C 57.957031 305.839844 57.863281 305.933594 57.863281 306.050781 C 57.863281 306.167969 57.957031 306.261719 58.074219 306.261719 C 58.191406 306.261719 58.285156 306.167969 58.285156 306.050781 Z M 58.285156 306.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 56.03125 308.171875 C 56.03125 308.054688 55.9375 307.960938 55.820312 307.960938 C 55.703125 307.960938 55.609375 308.054688 55.609375 308.171875 C 55.609375 308.289062 55.703125 308.382812 55.820312 308.382812 C 55.9375 308.382812 56.03125 308.289062 56.03125 308.171875 Z M 56.03125 308.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 56.953125 305.800781 C 56.953125 305.683594 56.859375 305.589844 56.742188 305.589844 C 56.625 305.589844 56.53125 305.683594 56.53125 305.800781 C 56.53125 305.917969 56.625 306.011719 56.742188 306.011719 C 56.859375 306.011719 56.953125 305.917969 56.953125 305.800781 Z M 56.953125 305.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 60.722656 305.363281 C 60.722656 305.246094 60.628906 305.152344 60.511719 305.152344 C 60.394531 305.152344 60.300781 305.246094 60.300781 305.363281 C 60.300781 305.480469 60.394531 305.574219 60.511719 305.574219 C 60.628906 305.574219 60.722656 305.480469 60.722656 305.363281 Z M 60.722656 305.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.265625 306.386719 C 59.265625 306.269531 59.171875 306.175781 59.054688 306.175781 C 58.9375 306.175781 58.84375 306.269531 58.84375 306.386719 C 58.84375 306.503906 58.9375 306.597656 59.054688 306.597656 C 59.171875 306.597656 59.265625 306.503906 59.265625 306.386719 Z M 59.265625 306.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 61.585938 305.847656 C 61.585938 305.730469 61.492188 305.636719 61.375 305.636719 C 61.257812 305.636719 61.164062 305.730469 61.164062 305.847656 C 61.164062 305.964844 61.257812 306.058594 61.375 306.058594 C 61.492188 306.058594 61.585938 305.964844 61.585938 305.847656 Z M 61.585938 305.847656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 61.941406 304.074219 C 61.941406 303.957031 61.847656 303.863281 61.730469 303.863281 C 61.613281 303.863281 61.519531 303.957031 61.519531 304.074219 C 61.519531 304.191406 61.613281 304.285156 61.730469 304.285156 C 61.847656 304.285156 61.941406 304.191406 61.941406 304.074219 Z M 61.941406 304.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 63.105469 305.367188 C 63.105469 305.25 63.011719 305.15625 62.894531 305.15625 C 62.777344 305.15625 62.683594 305.25 62.683594 305.367188 C 62.683594 305.484375 62.777344 305.578125 62.894531 305.578125 C 63.011719 305.578125 63.105469 305.484375 63.105469 305.367188 Z M 63.105469 305.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 62.089844 305.234375 C 62.089844 305.117188 61.996094 305.023438 61.878906 305.023438 C 61.761719 305.023438 61.667969 305.117188 61.667969 305.234375 C 61.667969 305.351562 61.761719 305.445312 61.878906 305.445312 C 61.996094 305.445312 62.089844 305.351562 62.089844 305.234375 Z M 62.089844 305.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.191406 303.496094 C 59.191406 303.378906 59.097656 303.285156 58.980469 303.285156 C 58.863281 303.285156 58.769531 303.378906 58.769531 303.496094 C 58.769531 303.613281 58.863281 303.707031 58.980469 303.707031 C 59.097656 303.707031 59.191406 303.613281 59.191406 303.496094 Z M 59.191406 303.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 55.101562 302.382812 C 55.101562 302.265625 55.007812 302.171875 54.890625 302.171875 C 54.773438 302.171875 54.679688 302.265625 54.679688 302.382812 C 54.679688 302.5 54.773438 302.59375 54.890625 302.59375 C 55.007812 302.59375 55.101562 302.5 55.101562 302.382812 Z M 55.101562 302.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 55.988281 305.011719 C 55.988281 304.894531 55.894531 304.800781 55.777344 304.800781 C 55.660156 304.800781 55.566406 304.894531 55.566406 305.011719 C 55.566406 305.128906 55.660156 305.222656 55.777344 305.222656 C 55.894531 305.222656 55.988281 305.128906 55.988281 305.011719 Z M 55.988281 305.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.265625 309.296875 C 52.265625 309.179688 52.171875 309.085938 52.054688 309.085938 C 51.9375 309.085938 51.84375 309.179688 51.84375 309.296875 C 51.84375 309.414062 51.9375 309.507812 52.054688 309.507812 C 52.171875 309.507812 52.265625 309.414062 52.265625 309.296875 Z M 52.265625 309.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.421875 308.4375 C 50.421875 308.320312 50.328125 308.226562 50.210938 308.226562 C 50.09375 308.226562 50 308.320312 50 308.4375 C 50 308.554688 50.09375 308.648438 50.210938 308.648438 C 50.328125 308.648438 50.421875 308.554688 50.421875 308.4375 Z M 50.421875 308.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.398438 308.839844 C 47.398438 308.722656 47.304688 308.628906 47.1875 308.628906 C 47.070312 308.628906 46.976562 308.722656 46.976562 308.839844 C 46.976562 308.957031 47.070312 309.050781 47.1875 309.050781 C 47.304688 309.050781 47.398438 308.957031 47.398438 308.839844 Z M 47.398438 308.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 46.171875 308.578125 C 46.171875 308.460938 46.078125 308.367188 45.960938 308.367188 C 45.84375 308.367188 45.75 308.460938 45.75 308.578125 C 45.75 308.695312 45.84375 308.789062 45.960938 308.789062 C 46.078125 308.789062 46.171875 308.695312 46.171875 308.578125 Z M 46.171875 308.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 45.15625 309.453125 C 45.15625 309.335938 45.0625 309.242188 44.945312 309.242188 C 44.828125 309.242188 44.734375 309.335938 44.734375 309.453125 C 44.734375 309.570312 44.828125 309.664062 44.945312 309.664062 C 45.0625 309.664062 45.15625 309.570312 45.15625 309.453125 Z M 45.15625 309.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 44.476562 310.632812 C 44.476562 310.515625 44.382812 310.421875 44.265625 310.421875 C 44.148438 310.421875 44.054688 310.515625 44.054688 310.632812 C 44.054688 310.75 44.148438 310.84375 44.265625 310.84375 C 44.382812 310.84375 44.476562 310.75 44.476562 310.632812 Z M 44.476562 310.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 45.753906 309.875 C 45.753906 309.757812 45.660156 309.664062 45.542969 309.664062 C 45.425781 309.664062 45.332031 309.757812 45.332031 309.875 C 45.332031 309.992188 45.425781 310.085938 45.542969 310.085938 C 45.660156 310.085938 45.753906 309.992188 45.753906 309.875 Z M 45.753906 309.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.949219 307.988281 C 47.949219 307.871094 47.855469 307.777344 47.738281 307.777344 C 47.621094 307.777344 47.527344 307.871094 47.527344 307.988281 C 47.527344 308.105469 47.621094 308.199219 47.738281 308.199219 C 47.855469 308.199219 47.949219 308.105469 47.949219 307.988281 Z M 47.949219 307.988281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 46.660156 308.929688 C 46.660156 308.8125 46.566406 308.71875 46.449219 308.71875 C 46.332031 308.71875 46.238281 308.8125 46.238281 308.929688 C 46.238281 309.046875 46.332031 309.140625 46.449219 309.140625 C 46.566406 309.140625 46.660156 309.046875 46.660156 308.929688 Z M 46.660156 308.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.488281 308.894531 C 47.488281 308.777344 47.394531 308.683594 47.277344 308.683594 C 47.160156 308.683594 47.066406 308.777344 47.066406 308.894531 C 47.066406 309.011719 47.160156 309.105469 47.277344 309.105469 C 47.394531 309.105469 47.488281 309.011719 47.488281 308.894531 Z M 47.488281 308.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 45.785156 310.398438 C 45.785156 310.28125 45.691406 310.1875 45.574219 310.1875 C 45.457031 310.1875 45.363281 310.28125 45.363281 310.398438 C 45.363281 310.515625 45.457031 310.609375 45.574219 310.609375 C 45.691406 310.609375 45.785156 310.515625 45.785156 310.398438 Z M 45.785156 310.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 44.128906 314.109375 C 44.128906 313.992188 44.035156 313.898438 43.917969 313.898438 C 43.800781 313.898438 43.707031 313.992188 43.707031 314.109375 C 43.707031 314.226562 43.800781 314.320312 43.917969 314.320312 C 44.035156 314.320312 44.128906 314.226562 44.128906 314.109375 Z M 44.128906 314.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 43.921875 317.863281 C 43.921875 317.746094 43.828125 317.652344 43.710938 317.652344 C 43.59375 317.652344 43.5 317.746094 43.5 317.863281 C 43.5 317.980469 43.59375 318.074219 43.710938 318.074219 C 43.828125 318.074219 43.921875 317.980469 43.921875 317.863281 Z M 43.921875 317.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 45.253906 315.273438 C 45.253906 315.15625 45.160156 315.0625 45.042969 315.0625 C 44.925781 315.0625 44.832031 315.15625 44.832031 315.273438 C 44.832031 315.390625 44.925781 315.484375 45.042969 315.484375 C 45.160156 315.484375 45.253906 315.390625 45.253906 315.273438 Z M 45.253906 315.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 45.863281 316.292969 C 45.863281 316.175781 45.769531 316.082031 45.652344 316.082031 C 45.535156 316.082031 45.441406 316.175781 45.441406 316.292969 C 45.441406 316.410156 45.535156 316.503906 45.652344 316.503906 C 45.769531 316.503906 45.863281 316.410156 45.863281 316.292969 Z M 45.863281 316.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 43.238281 315.375 C 43.238281 315.257812 43.144531 315.164062 43.027344 315.164062 C 42.910156 315.164062 42.816406 315.257812 42.816406 315.375 C 42.816406 315.492188 42.910156 315.585938 43.027344 315.585938 C 43.144531 315.585938 43.238281 315.492188 43.238281 315.375 Z M 43.238281 315.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 41.964844 317.617188 C 41.964844 317.5 41.871094 317.40625 41.753906 317.40625 C 41.636719 317.40625 41.542969 317.5 41.542969 317.617188 C 41.542969 317.734375 41.636719 317.828125 41.753906 317.828125 C 41.871094 317.828125 41.964844 317.734375 41.964844 317.617188 Z M 41.964844 317.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.992188 320.933594 C 38.992188 320.816406 38.898438 320.722656 38.78125 320.722656 C 38.664062 320.722656 38.570312 320.816406 38.570312 320.933594 C 38.570312 321.050781 38.664062 321.144531 38.78125 321.144531 C 38.898438 321.144531 38.992188 321.050781 38.992188 320.933594 Z M 38.992188 320.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.621094 324.417969 C 38.621094 324.300781 38.527344 324.207031 38.410156 324.207031 C 38.292969 324.207031 38.199219 324.300781 38.199219 324.417969 C 38.199219 324.535156 38.292969 324.628906 38.410156 324.628906 C 38.527344 324.628906 38.621094 324.535156 38.621094 324.417969 Z M 38.621094 324.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.597656 323.417969 C 38.597656 323.300781 38.503906 323.207031 38.386719 323.207031 C 38.269531 323.207031 38.175781 323.300781 38.175781 323.417969 C 38.175781 323.535156 38.269531 323.628906 38.386719 323.628906 C 38.503906 323.628906 38.597656 323.535156 38.597656 323.417969 Z M 38.597656 323.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.035156 324.320312 C 38.035156 324.203125 37.941406 324.109375 37.824219 324.109375 C 37.707031 324.109375 37.613281 324.203125 37.613281 324.320312 C 37.613281 324.4375 37.707031 324.53125 37.824219 324.53125 C 37.941406 324.53125 38.035156 324.4375 38.035156 324.320312 Z M 38.035156 324.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.828125 325.261719 C 35.828125 325.144531 35.734375 325.050781 35.617188 325.050781 C 35.5 325.050781 35.40625 325.144531 35.40625 325.261719 C 35.40625 325.378906 35.5 325.472656 35.617188 325.472656 C 35.734375 325.472656 35.828125 325.378906 35.828125 325.261719 Z M 35.828125 325.261719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.554688 321.851562 C 29.554688 321.734375 29.460938 321.640625 29.34375 321.640625 C 29.226562 321.640625 29.132812 321.734375 29.132812 321.851562 C 29.132812 321.96875 29.226562 322.0625 29.34375 322.0625 C 29.460938 322.0625 29.554688 321.96875 29.554688 321.851562 Z M 29.554688 321.851562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.097656 321.859375 C 28.097656 321.742188 28.003906 321.648438 27.886719 321.648438 C 27.769531 321.648438 27.675781 321.742188 27.675781 321.859375 C 27.675781 321.976562 27.769531 322.070312 27.886719 322.070312 C 28.003906 322.070312 28.097656 321.976562 28.097656 321.859375 Z M 28.097656 321.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.058594 321.480469 C 29.058594 321.363281 28.964844 321.269531 28.847656 321.269531 C 28.730469 321.269531 28.636719 321.363281 28.636719 321.480469 C 28.636719 321.597656 28.730469 321.691406 28.847656 321.691406 C 28.964844 321.691406 29.058594 321.597656 29.058594 321.480469 Z M 29.058594 321.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.414062 320.992188 C 31.414062 320.875 31.320312 320.78125 31.203125 320.78125 C 31.085938 320.78125 30.992188 320.875 30.992188 320.992188 C 30.992188 321.109375 31.085938 321.203125 31.203125 321.203125 C 31.320312 321.203125 31.414062 321.109375 31.414062 320.992188 Z M 31.414062 320.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.148438 320.628906 C 32.148438 320.511719 32.054688 320.417969 31.9375 320.417969 C 31.820312 320.417969 31.726562 320.511719 31.726562 320.628906 C 31.726562 320.746094 31.820312 320.839844 31.9375 320.839844 C 32.054688 320.839844 32.148438 320.746094 32.148438 320.628906 Z M 32.148438 320.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.710938 317.652344 C 33.710938 317.535156 33.617188 317.441406 33.5 317.441406 C 33.382812 317.441406 33.289062 317.535156 33.289062 317.652344 C 33.289062 317.769531 33.382812 317.863281 33.5 317.863281 C 33.617188 317.863281 33.710938 317.769531 33.710938 317.652344 Z M 33.710938 317.652344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 34.617188 318.355469 C 34.617188 318.238281 34.523438 318.144531 34.40625 318.144531 C 34.289062 318.144531 34.195312 318.238281 34.195312 318.355469 C 34.195312 318.472656 34.289062 318.566406 34.40625 318.566406 C 34.523438 318.566406 34.617188 318.472656 34.617188 318.355469 Z M 34.617188 318.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 34.742188 319.085938 C 34.742188 318.96875 34.648438 318.875 34.53125 318.875 C 34.414062 318.875 34.320312 318.96875 34.320312 319.085938 C 34.320312 319.203125 34.414062 319.296875 34.53125 319.296875 C 34.648438 319.296875 34.742188 319.203125 34.742188 319.085938 Z M 34.742188 319.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.84375 319.316406 C 31.84375 319.199219 31.75 319.105469 31.632812 319.105469 C 31.515625 319.105469 31.421875 319.199219 31.421875 319.316406 C 31.421875 319.433594 31.515625 319.527344 31.632812 319.527344 C 31.75 319.527344 31.84375 319.433594 31.84375 319.316406 Z M 31.84375 319.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.769531 320.105469 C 33.769531 319.988281 33.675781 319.894531 33.558594 319.894531 C 33.441406 319.894531 33.347656 319.988281 33.347656 320.105469 C 33.347656 320.222656 33.441406 320.316406 33.558594 320.316406 C 33.675781 320.316406 33.769531 320.222656 33.769531 320.105469 Z M 33.769531 320.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.574219 323.539062 C 32.574219 323.421875 32.480469 323.328125 32.363281 323.328125 C 32.246094 323.328125 32.152344 323.421875 32.152344 323.539062 C 32.152344 323.65625 32.246094 323.75 32.363281 323.75 C 32.480469 323.75 32.574219 323.65625 32.574219 323.539062 Z M 32.574219 323.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.457031 324.558594 C 32.457031 324.441406 32.363281 324.347656 32.246094 324.347656 C 32.128906 324.347656 32.035156 324.441406 32.035156 324.558594 C 32.035156 324.675781 32.128906 324.769531 32.246094 324.769531 C 32.363281 324.769531 32.457031 324.675781 32.457031 324.558594 Z M 32.457031 324.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.558594 322.984375 C 29.558594 322.867188 29.464844 322.773438 29.347656 322.773438 C 29.230469 322.773438 29.136719 322.867188 29.136719 322.984375 C 29.136719 323.101562 29.230469 323.195312 29.347656 323.195312 C 29.464844 323.195312 29.558594 323.101562 29.558594 322.984375 Z M 29.558594 322.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.394531 326.242188 C 27.394531 326.125 27.300781 326.03125 27.183594 326.03125 C 27.066406 326.03125 26.972656 326.125 26.972656 326.242188 C 26.972656 326.359375 27.066406 326.453125 27.183594 326.453125 C 27.300781 326.453125 27.394531 326.359375 27.394531 326.242188 Z M 27.394531 326.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.929688 327.855469 C 25.929688 327.738281 25.835938 327.644531 25.71875 327.644531 C 25.601562 327.644531 25.507812 327.738281 25.507812 327.855469 C 25.507812 327.972656 25.601562 328.066406 25.71875 328.066406 C 25.835938 328.066406 25.929688 327.972656 25.929688 327.855469 Z M 25.929688 327.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.804688 330.5 C 24.804688 330.382812 24.710938 330.289062 24.59375 330.289062 C 24.476562 330.289062 24.382812 330.382812 24.382812 330.5 C 24.382812 330.617188 24.476562 330.710938 24.59375 330.710938 C 24.710938 330.710938 24.804688 330.617188 24.804688 330.5 Z M 24.804688 330.5 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.136719 329.496094 C 24.136719 329.378906 24.042969 329.285156 23.925781 329.285156 C 23.808594 329.285156 23.714844 329.378906 23.714844 329.496094 C 23.714844 329.613281 23.808594 329.707031 23.925781 329.707031 C 24.042969 329.707031 24.136719 329.613281 24.136719 329.496094 Z M 24.136719 329.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.085938 328.886719 C 23.085938 328.769531 22.992188 328.675781 22.875 328.675781 C 22.757812 328.675781 22.664062 328.769531 22.664062 328.886719 C 22.664062 329.003906 22.757812 329.097656 22.875 329.097656 C 22.992188 329.097656 23.085938 329.003906 23.085938 328.886719 Z M 23.085938 328.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.78125 326.507812 C 23.78125 326.390625 23.6875 326.296875 23.570312 326.296875 C 23.453125 326.296875 23.359375 326.390625 23.359375 326.507812 C 23.359375 326.625 23.453125 326.71875 23.570312 326.71875 C 23.6875 326.71875 23.78125 326.625 23.78125 326.507812 Z M 23.78125 326.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.972656 324.839844 C 25.972656 324.722656 25.878906 324.628906 25.761719 324.628906 C 25.644531 324.628906 25.550781 324.722656 25.550781 324.839844 C 25.550781 324.957031 25.644531 325.050781 25.761719 325.050781 C 25.878906 325.050781 25.972656 324.957031 25.972656 324.839844 Z M 25.972656 324.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.34375 320.253906 C 26.34375 320.136719 26.25 320.042969 26.132812 320.042969 C 26.015625 320.042969 25.921875 320.136719 25.921875 320.253906 C 25.921875 320.371094 26.015625 320.464844 26.132812 320.464844 C 26.25 320.464844 26.34375 320.371094 26.34375 320.253906 Z M 26.34375 320.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.429688 318.238281 C 27.429688 318.121094 27.335938 318.027344 27.21875 318.027344 C 27.101562 318.027344 27.007812 318.121094 27.007812 318.238281 C 27.007812 318.355469 27.101562 318.449219 27.21875 318.449219 C 27.335938 318.449219 27.429688 318.355469 27.429688 318.238281 Z M 27.429688 318.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.984375 315.363281 C 22.984375 315.246094 22.890625 315.152344 22.773438 315.152344 C 22.65625 315.152344 22.5625 315.246094 22.5625 315.363281 C 22.5625 315.480469 22.65625 315.574219 22.773438 315.574219 C 22.890625 315.574219 22.984375 315.480469 22.984375 315.363281 Z M 22.984375 315.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.511719 317.234375 C 22.511719 317.117188 22.417969 317.023438 22.300781 317.023438 C 22.183594 317.023438 22.089844 317.117188 22.089844 317.234375 C 22.089844 317.351562 22.183594 317.445312 22.300781 317.445312 C 22.417969 317.445312 22.511719 317.351562 22.511719 317.234375 Z M 22.511719 317.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.714844 316.71875 C 25.714844 316.601562 25.621094 316.507812 25.503906 316.507812 C 25.386719 316.507812 25.292969 316.601562 25.292969 316.71875 C 25.292969 316.835938 25.386719 316.929688 25.503906 316.929688 C 25.621094 316.929688 25.714844 316.835938 25.714844 316.71875 Z M 25.714844 316.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.242188 311.644531 C 26.242188 311.527344 26.148438 311.433594 26.03125 311.433594 C 25.914062 311.433594 25.820312 311.527344 25.820312 311.644531 C 25.820312 311.761719 25.914062 311.855469 26.03125 311.855469 C 26.148438 311.855469 26.242188 311.761719 26.242188 311.644531 Z M 26.242188 311.644531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.265625 308.527344 C 26.265625 308.410156 26.171875 308.316406 26.054688 308.316406 C 25.9375 308.316406 25.84375 308.410156 25.84375 308.527344 C 25.84375 308.644531 25.9375 308.738281 26.054688 308.738281 C 26.171875 308.738281 26.265625 308.644531 26.265625 308.527344 Z M 26.265625 308.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.070312 307.710938 C 22.070312 307.59375 21.976562 307.5 21.859375 307.5 C 21.742188 307.5 21.648438 307.59375 21.648438 307.710938 C 21.648438 307.828125 21.742188 307.921875 21.859375 307.921875 C 21.976562 307.921875 22.070312 307.828125 22.070312 307.710938 Z M 22.070312 307.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.835938 302.648438 C 21.835938 302.53125 21.742188 302.4375 21.625 302.4375 C 21.507812 302.4375 21.414062 302.53125 21.414062 302.648438 C 21.414062 302.765625 21.507812 302.859375 21.625 302.859375 C 21.742188 302.859375 21.835938 302.765625 21.835938 302.648438 Z M 21.835938 302.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.617188 304.121094 C 22.617188 304.003906 22.523438 303.910156 22.40625 303.910156 C 22.289062 303.910156 22.195312 304.003906 22.195312 304.121094 C 22.195312 304.238281 22.289062 304.332031 22.40625 304.332031 C 22.523438 304.332031 22.617188 304.238281 22.617188 304.121094 Z M 22.617188 304.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.253906 303.066406 C 24.253906 302.949219 24.160156 302.855469 24.042969 302.855469 C 23.925781 302.855469 23.832031 302.949219 23.832031 303.066406 C 23.832031 303.183594 23.925781 303.277344 24.042969 303.277344 C 24.160156 303.277344 24.253906 303.183594 24.253906 303.066406 Z M 24.253906 303.066406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.078125 302.265625 C 27.078125 302.148438 26.984375 302.054688 26.867188 302.054688 C 26.75 302.054688 26.65625 302.148438 26.65625 302.265625 C 26.65625 302.382812 26.75 302.476562 26.867188 302.476562 C 26.984375 302.476562 27.078125 302.382812 27.078125 302.265625 Z M 27.078125 302.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.851562 305.089844 C 24.851562 304.972656 24.757812 304.878906 24.640625 304.878906 C 24.523438 304.878906 24.429688 304.972656 24.429688 305.089844 C 24.429688 305.207031 24.523438 305.300781 24.640625 305.300781 C 24.757812 305.300781 24.851562 305.207031 24.851562 305.089844 Z M 24.851562 305.089844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.003906 307.585938 C 29.003906 307.46875 28.910156 307.375 28.792969 307.375 C 28.675781 307.375 28.582031 307.46875 28.582031 307.585938 C 28.582031 307.703125 28.675781 307.796875 28.792969 307.796875 C 28.910156 307.796875 29.003906 307.703125 29.003906 307.585938 Z M 29.003906 307.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.542969 309.3125 C 31.542969 309.195312 31.449219 309.101562 31.332031 309.101562 C 31.214844 309.101562 31.121094 309.195312 31.121094 309.3125 C 31.121094 309.429688 31.214844 309.523438 31.332031 309.523438 C 31.449219 309.523438 31.542969 309.429688 31.542969 309.3125 Z M 31.542969 309.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 34.890625 307.183594 C 34.890625 307.066406 34.796875 306.972656 34.679688 306.972656 C 34.5625 306.972656 34.46875 307.066406 34.46875 307.183594 C 34.46875 307.300781 34.5625 307.394531 34.679688 307.394531 C 34.796875 307.394531 34.890625 307.300781 34.890625 307.183594 Z M 34.890625 307.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.511719 312.203125 C 35.511719 312.085938 35.417969 311.992188 35.300781 311.992188 C 35.183594 311.992188 35.089844 312.085938 35.089844 312.203125 C 35.089844 312.320312 35.183594 312.414062 35.300781 312.414062 C 35.417969 312.414062 35.511719 312.320312 35.511719 312.203125 Z M 35.511719 312.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.273438 311.265625 C 33.273438 311.148438 33.179688 311.054688 33.0625 311.054688 C 32.945312 311.054688 32.851562 311.148438 32.851562 311.265625 C 32.851562 311.382812 32.945312 311.476562 33.0625 311.476562 C 33.179688 311.476562 33.273438 311.382812 33.273438 311.265625 Z M 33.273438 311.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.761719 312.542969 C 32.761719 312.425781 32.667969 312.332031 32.550781 312.332031 C 32.433594 312.332031 32.339844 312.425781 32.339844 312.542969 C 32.339844 312.660156 32.433594 312.753906 32.550781 312.753906 C 32.667969 312.753906 32.761719 312.660156 32.761719 312.542969 Z M 32.761719 312.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.59375 311.332031 C 37.59375 311.214844 37.5 311.121094 37.382812 311.121094 C 37.265625 311.121094 37.171875 311.214844 37.171875 311.332031 C 37.171875 311.449219 37.265625 311.542969 37.382812 311.542969 C 37.5 311.542969 37.59375 311.449219 37.59375 311.332031 Z M 37.59375 311.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.390625 312.339844 C 35.390625 312.222656 35.296875 312.128906 35.179688 312.128906 C 35.0625 312.128906 34.96875 312.222656 34.96875 312.339844 C 34.96875 312.457031 35.0625 312.550781 35.179688 312.550781 C 35.296875 312.550781 35.390625 312.457031 35.390625 312.339844 Z M 35.390625 312.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.886719 312.441406 C 33.886719 312.324219 33.792969 312.230469 33.675781 312.230469 C 33.558594 312.230469 33.464844 312.324219 33.464844 312.441406 C 33.464844 312.558594 33.558594 312.652344 33.675781 312.652344 C 33.792969 312.652344 33.886719 312.558594 33.886719 312.441406 Z M 33.886719 312.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 34.335938 311.78125 C 34.335938 311.664062 34.242188 311.570312 34.125 311.570312 C 34.007812 311.570312 33.914062 311.664062 33.914062 311.78125 C 33.914062 311.898438 34.007812 311.992188 34.125 311.992188 C 34.242188 311.992188 34.335938 311.898438 34.335938 311.78125 Z M 34.335938 311.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 34.707031 309.664062 C 34.707031 309.546875 34.613281 309.453125 34.496094 309.453125 C 34.378906 309.453125 34.285156 309.546875 34.285156 309.664062 C 34.285156 309.78125 34.378906 309.875 34.496094 309.875 C 34.613281 309.875 34.707031 309.78125 34.707031 309.664062 Z M 34.707031 309.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.550781 307 C 33.550781 306.882812 33.457031 306.789062 33.339844 306.789062 C 33.222656 306.789062 33.128906 306.882812 33.128906 307 C 33.128906 307.117188 33.222656 307.210938 33.339844 307.210938 C 33.457031 307.210938 33.550781 307.117188 33.550781 307 Z M 33.550781 307 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.207031 303.96875 C 36.207031 303.851562 36.113281 303.757812 35.996094 303.757812 C 35.878906 303.757812 35.785156 303.851562 35.785156 303.96875 C 35.785156 304.085938 35.878906 304.179688 35.996094 304.179688 C 36.113281 304.179688 36.207031 304.085938 36.207031 303.96875 Z M 36.207031 303.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.554688 302.925781 C 35.554688 302.808594 35.460938 302.714844 35.34375 302.714844 C 35.226562 302.714844 35.132812 302.808594 35.132812 302.925781 C 35.132812 303.042969 35.226562 303.136719 35.34375 303.136719 C 35.460938 303.136719 35.554688 303.042969 35.554688 302.925781 Z M 35.554688 302.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 39.683594 303.070312 C 39.683594 302.953125 39.589844 302.859375 39.472656 302.859375 C 39.355469 302.859375 39.261719 302.953125 39.261719 303.070312 C 39.261719 303.1875 39.355469 303.28125 39.472656 303.28125 C 39.589844 303.28125 39.683594 303.1875 39.683594 303.070312 Z M 39.683594 303.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 41.21875 305.933594 C 41.21875 305.816406 41.125 305.722656 41.007812 305.722656 C 40.890625 305.722656 40.796875 305.816406 40.796875 305.933594 C 40.796875 306.050781 40.890625 306.144531 41.007812 306.144531 C 41.125 306.144531 41.21875 306.050781 41.21875 305.933594 Z M 41.21875 305.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 39.304688 303.390625 C 39.304688 303.273438 39.210938 303.179688 39.09375 303.179688 C 38.976562 303.179688 38.882812 303.273438 38.882812 303.390625 C 38.882812 303.507812 38.976562 303.601562 39.09375 303.601562 C 39.210938 303.601562 39.304688 303.507812 39.304688 303.390625 Z M 39.304688 303.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 43.277344 302.894531 C 43.277344 302.777344 43.183594 302.683594 43.066406 302.683594 C 42.949219 302.683594 42.855469 302.777344 42.855469 302.894531 C 42.855469 303.011719 42.949219 303.105469 43.066406 303.105469 C 43.183594 303.105469 43.277344 303.011719 43.277344 302.894531 Z M 43.277344 302.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 41.019531 303.183594 C 41.019531 303.066406 40.925781 302.972656 40.808594 302.972656 C 40.691406 302.972656 40.597656 303.066406 40.597656 303.183594 C 40.597656 303.300781 40.691406 303.394531 40.808594 303.394531 C 40.925781 303.394531 41.019531 303.300781 41.019531 303.183594 Z M 41.019531 303.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 41.863281 306.273438 C 41.863281 306.15625 41.769531 306.0625 41.652344 306.0625 C 41.535156 306.0625 41.441406 306.15625 41.441406 306.273438 C 41.441406 306.390625 41.535156 306.484375 41.652344 306.484375 C 41.769531 306.484375 41.863281 306.390625 41.863281 306.273438 Z M 41.863281 306.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 42.628906 303.234375 C 42.628906 303.117188 42.535156 303.023438 42.417969 303.023438 C 42.300781 303.023438 42.207031 303.117188 42.207031 303.234375 C 42.207031 303.351562 42.300781 303.445312 42.417969 303.445312 C 42.535156 303.445312 42.628906 303.351562 42.628906 303.234375 Z M 42.628906 303.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 41.734375 302.457031 C 41.734375 302.339844 41.640625 302.246094 41.523438 302.246094 C 41.40625 302.246094 41.3125 302.339844 41.3125 302.457031 C 41.3125 302.574219 41.40625 302.667969 41.523438 302.667969 C 41.640625 302.667969 41.734375 302.574219 41.734375 302.457031 Z M 41.734375 302.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 39.816406 303.875 C 39.816406 303.757812 39.722656 303.664062 39.605469 303.664062 C 39.488281 303.664062 39.394531 303.757812 39.394531 303.875 C 39.394531 303.992188 39.488281 304.085938 39.605469 304.085938 C 39.722656 304.085938 39.816406 303.992188 39.816406 303.875 Z M 39.816406 303.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 42.414062 302.355469 C 42.414062 302.238281 42.320312 302.144531 42.203125 302.144531 C 42.085938 302.144531 41.992188 302.238281 41.992188 302.355469 C 41.992188 302.472656 42.085938 302.566406 42.203125 302.566406 C 42.320312 302.566406 42.414062 302.472656 42.414062 302.355469 Z M 42.414062 302.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 45.132812 302.445312 C 45.132812 302.328125 45.039062 302.234375 44.921875 302.234375 C 44.804688 302.234375 44.710938 302.328125 44.710938 302.445312 C 44.710938 302.5625 44.804688 302.65625 44.921875 302.65625 C 45.039062 302.65625 45.132812 302.5625 45.132812 302.445312 Z M 45.132812 302.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 43.503906 304.367188 C 43.503906 304.25 43.410156 304.15625 43.292969 304.15625 C 43.175781 304.15625 43.082031 304.25 43.082031 304.367188 C 43.082031 304.484375 43.175781 304.578125 43.292969 304.578125 C 43.410156 304.578125 43.503906 304.484375 43.503906 304.367188 Z M 43.503906 304.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 41.445312 302.28125 C 41.445312 302.164062 41.351562 302.070312 41.234375 302.070312 C 41.117188 302.070312 41.023438 302.164062 41.023438 302.28125 C 41.023438 302.398438 41.117188 302.492188 41.234375 302.492188 C 41.351562 302.492188 41.445312 302.398438 41.445312 302.28125 Z M 41.445312 302.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 39.457031 302.117188 C 39.457031 302 39.363281 301.90625 39.246094 301.90625 C 39.128906 301.90625 39.035156 302 39.035156 302.117188 C 39.035156 302.234375 39.128906 302.328125 39.246094 302.328125 C 39.363281 302.328125 39.457031 302.234375 39.457031 302.117188 Z M 39.457031 302.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.375 301.363281 C 37.375 301.246094 37.28125 301.152344 37.164062 301.152344 C 37.046875 301.152344 36.953125 301.246094 36.953125 301.363281 C 36.953125 301.480469 37.046875 301.574219 37.164062 301.574219 C 37.28125 301.574219 37.375 301.480469 37.375 301.363281 Z M 37.375 301.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 42.070312 303.140625 C 42.070312 303.023438 41.976562 302.929688 41.859375 302.929688 C 41.742188 302.929688 41.648438 303.023438 41.648438 303.140625 C 41.648438 303.257812 41.742188 303.351562 41.859375 303.351562 C 41.976562 303.351562 42.070312 303.257812 42.070312 303.140625 Z M 42.070312 303.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 42.847656 304.738281 C 42.847656 304.621094 42.753906 304.527344 42.636719 304.527344 C 42.519531 304.527344 42.425781 304.621094 42.425781 304.738281 C 42.425781 304.855469 42.519531 304.949219 42.636719 304.949219 C 42.753906 304.949219 42.847656 304.855469 42.847656 304.738281 Z M 42.847656 304.738281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 42.742188 301.34375 C 42.742188 301.226562 42.648438 301.132812 42.53125 301.132812 C 42.414062 301.132812 42.320312 301.226562 42.320312 301.34375 C 42.320312 301.460938 42.414062 301.554688 42.53125 301.554688 C 42.648438 301.554688 42.742188 301.460938 42.742188 301.34375 Z M 42.742188 301.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.945312 296.835938 C 38.945312 296.71875 38.851562 296.625 38.734375 296.625 C 38.617188 296.625 38.523438 296.71875 38.523438 296.835938 C 38.523438 296.953125 38.617188 297.046875 38.734375 297.046875 C 38.851562 297.046875 38.945312 296.953125 38.945312 296.835938 Z M 38.945312 296.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.972656 297.210938 C 33.972656 297.09375 33.878906 297 33.761719 297 C 33.644531 297 33.550781 297.09375 33.550781 297.210938 C 33.550781 297.328125 33.644531 297.421875 33.761719 297.421875 C 33.878906 297.421875 33.972656 297.328125 33.972656 297.210938 Z M 33.972656 297.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.648438 294.957031 C 32.648438 294.839844 32.554688 294.746094 32.4375 294.746094 C 32.320312 294.746094 32.226562 294.839844 32.226562 294.957031 C 32.226562 295.074219 32.320312 295.167969 32.4375 295.167969 C 32.554688 295.167969 32.648438 295.074219 32.648438 294.957031 Z M 32.648438 294.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.855469 296.167969 C 27.855469 296.050781 27.761719 295.957031 27.644531 295.957031 C 27.527344 295.957031 27.433594 296.050781 27.433594 296.167969 C 27.433594 296.285156 27.527344 296.378906 27.644531 296.378906 C 27.761719 296.378906 27.855469 296.285156 27.855469 296.167969 Z M 27.855469 296.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.109375 296.726562 C 24.109375 296.609375 24.015625 296.515625 23.898438 296.515625 C 23.78125 296.515625 23.6875 296.609375 23.6875 296.726562 C 23.6875 296.84375 23.78125 296.9375 23.898438 296.9375 C 24.015625 296.9375 24.109375 296.84375 24.109375 296.726562 Z M 24.109375 296.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.917969 297.484375 C 24.917969 297.367188 24.824219 297.273438 24.707031 297.273438 C 24.589844 297.273438 24.496094 297.367188 24.496094 297.484375 C 24.496094 297.601562 24.589844 297.695312 24.707031 297.695312 C 24.824219 297.695312 24.917969 297.601562 24.917969 297.484375 Z M 24.917969 297.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.542969 297.472656 C 22.542969 297.355469 22.449219 297.261719 22.332031 297.261719 C 22.214844 297.261719 22.121094 297.355469 22.121094 297.472656 C 22.121094 297.589844 22.214844 297.683594 22.332031 297.683594 C 22.449219 297.683594 22.542969 297.589844 22.542969 297.472656 Z M 22.542969 297.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.410156 297.484375 C 24.410156 297.367188 24.316406 297.273438 24.199219 297.273438 C 24.082031 297.273438 23.988281 297.367188 23.988281 297.484375 C 23.988281 297.601562 24.082031 297.695312 24.199219 297.695312 C 24.316406 297.695312 24.410156 297.601562 24.410156 297.484375 Z M 24.410156 297.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.3125 297.496094 C 23.3125 297.378906 23.21875 297.285156 23.101562 297.285156 C 22.984375 297.285156 22.890625 297.378906 22.890625 297.496094 C 22.890625 297.613281 22.984375 297.707031 23.101562 297.707031 C 23.21875 297.707031 23.3125 297.613281 23.3125 297.496094 Z M 23.3125 297.496094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.796875 297.085938 C 23.796875 296.96875 23.703125 296.875 23.585938 296.875 C 23.46875 296.875 23.375 296.96875 23.375 297.085938 C 23.375 297.203125 23.46875 297.296875 23.585938 297.296875 C 23.703125 297.296875 23.796875 297.203125 23.796875 297.085938 Z M 23.796875 297.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.707031 297.628906 C 21.707031 297.511719 21.613281 297.417969 21.496094 297.417969 C 21.378906 297.417969 21.285156 297.511719 21.285156 297.628906 C 21.285156 297.746094 21.378906 297.839844 21.496094 297.839844 C 21.613281 297.839844 21.707031 297.746094 21.707031 297.628906 Z M 21.707031 297.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.714844 296.082031 C 22.714844 295.964844 22.621094 295.871094 22.503906 295.871094 C 22.386719 295.871094 22.292969 295.964844 22.292969 296.082031 C 22.292969 296.199219 22.386719 296.292969 22.503906 296.292969 C 22.621094 296.292969 22.714844 296.199219 22.714844 296.082031 Z M 22.714844 296.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.140625 296.726562 C 23.140625 296.609375 23.046875 296.515625 22.929688 296.515625 C 22.8125 296.515625 22.71875 296.609375 22.71875 296.726562 C 22.71875 296.84375 22.8125 296.9375 22.929688 296.9375 C 23.046875 296.9375 23.140625 296.84375 23.140625 296.726562 Z M 23.140625 296.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.46875 297.101562 C 25.46875 296.984375 25.375 296.890625 25.257812 296.890625 C 25.140625 296.890625 25.046875 296.984375 25.046875 297.101562 C 25.046875 297.21875 25.140625 297.3125 25.257812 297.3125 C 25.375 297.3125 25.46875 297.21875 25.46875 297.101562 Z M 25.46875 297.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.714844 298.210938 C 22.714844 298.09375 22.621094 298 22.503906 298 C 22.386719 298 22.292969 298.09375 22.292969 298.210938 C 22.292969 298.328125 22.386719 298.421875 22.503906 298.421875 C 22.621094 298.421875 22.714844 298.328125 22.714844 298.210938 Z M 22.714844 298.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.355469 293.511719 C 25.355469 293.394531 25.261719 293.300781 25.144531 293.300781 C 25.027344 293.300781 24.933594 293.394531 24.933594 293.511719 C 24.933594 293.628906 25.027344 293.722656 25.144531 293.722656 C 25.261719 293.722656 25.355469 293.628906 25.355469 293.511719 Z M 25.355469 293.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.617188 291.554688 C 24.617188 291.4375 24.523438 291.34375 24.40625 291.34375 C 24.289062 291.34375 24.195312 291.4375 24.195312 291.554688 C 24.195312 291.671875 24.289062 291.765625 24.40625 291.765625 C 24.523438 291.765625 24.617188 291.671875 24.617188 291.554688 Z M 24.617188 291.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.292969 289.359375 C 21.292969 289.242188 21.199219 289.148438 21.082031 289.148438 C 20.964844 289.148438 20.871094 289.242188 20.871094 289.359375 C 20.871094 289.476562 20.964844 289.570312 21.082031 289.570312 C 21.199219 289.570312 21.292969 289.476562 21.292969 289.359375 Z M 21.292969 289.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 17.957031 286.042969 C 17.957031 285.925781 17.863281 285.832031 17.746094 285.832031 C 17.628906 285.832031 17.535156 285.925781 17.535156 286.042969 C 17.535156 286.160156 17.628906 286.253906 17.746094 286.253906 C 17.863281 286.253906 17.957031 286.160156 17.957031 286.042969 Z M 17.957031 286.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 19.984375 283.613281 C 19.984375 283.496094 19.890625 283.402344 19.773438 283.402344 C 19.65625 283.402344 19.5625 283.496094 19.5625 283.613281 C 19.5625 283.730469 19.65625 283.824219 19.773438 283.824219 C 19.890625 283.824219 19.984375 283.730469 19.984375 283.613281 Z M 19.984375 283.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 18.359375 285.714844 C 18.359375 285.597656 18.265625 285.503906 18.148438 285.503906 C 18.03125 285.503906 17.9375 285.597656 17.9375 285.714844 C 17.9375 285.832031 18.03125 285.925781 18.148438 285.925781 C 18.265625 285.925781 18.359375 285.832031 18.359375 285.714844 Z M 18.359375 285.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 18.265625 283.402344 C 18.265625 283.285156 18.171875 283.191406 18.054688 283.191406 C 17.9375 283.191406 17.84375 283.285156 17.84375 283.402344 C 17.84375 283.519531 17.9375 283.613281 18.054688 283.613281 C 18.171875 283.613281 18.265625 283.519531 18.265625 283.402344 Z M 18.265625 283.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 17.539062 284.273438 C 17.539062 284.15625 17.445312 284.0625 17.328125 284.0625 C 17.210938 284.0625 17.117188 284.15625 17.117188 284.273438 C 17.117188 284.390625 17.210938 284.484375 17.328125 284.484375 C 17.445312 284.484375 17.539062 284.390625 17.539062 284.273438 Z M 17.539062 284.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 16.710938 282.539062 C 16.710938 282.421875 16.617188 282.328125 16.5 282.328125 C 16.382812 282.328125 16.289062 282.421875 16.289062 282.539062 C 16.289062 282.65625 16.382812 282.75 16.5 282.75 C 16.617188 282.75 16.710938 282.65625 16.710938 282.539062 Z M 16.710938 282.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 17.101562 283.425781 C 17.101562 283.308594 17.007812 283.214844 16.890625 283.214844 C 16.773438 283.214844 16.679688 283.308594 16.679688 283.425781 C 16.679688 283.542969 16.773438 283.636719 16.890625 283.636719 C 17.007812 283.636719 17.101562 283.542969 17.101562 283.425781 Z M 17.101562 283.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 18.835938 285.839844 C 18.835938 285.722656 18.742188 285.628906 18.625 285.628906 C 18.507812 285.628906 18.414062 285.722656 18.414062 285.839844 C 18.414062 285.957031 18.507812 286.050781 18.625 286.050781 C 18.742188 286.050781 18.835938 285.957031 18.835938 285.839844 Z M 18.835938 285.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 19.578125 287.113281 C 19.578125 286.996094 19.484375 286.902344 19.367188 286.902344 C 19.25 286.902344 19.15625 286.996094 19.15625 287.113281 C 19.15625 287.230469 19.25 287.324219 19.367188 287.324219 C 19.484375 287.324219 19.578125 287.230469 19.578125 287.113281 Z M 19.578125 287.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 18.160156 290.578125 C 18.160156 290.460938 18.066406 290.367188 17.949219 290.367188 C 17.832031 290.367188 17.738281 290.460938 17.738281 290.578125 C 17.738281 290.695312 17.832031 290.789062 17.949219 290.789062 C 18.066406 290.789062 18.160156 290.695312 18.160156 290.578125 Z M 18.160156 290.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 17.964844 292.601562 C 17.964844 292.484375 17.871094 292.390625 17.753906 292.390625 C 17.636719 292.390625 17.542969 292.484375 17.542969 292.601562 C 17.542969 292.71875 17.636719 292.8125 17.753906 292.8125 C 17.871094 292.8125 17.964844 292.71875 17.964844 292.601562 Z M 17.964844 292.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 15.691406 296 C 15.691406 295.882812 15.597656 295.789062 15.480469 295.789062 C 15.363281 295.789062 15.269531 295.882812 15.269531 296 C 15.269531 296.117188 15.363281 296.210938 15.480469 296.210938 C 15.597656 296.210938 15.691406 296.117188 15.691406 296 Z M 15.691406 296 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 11.707031 293.179688 C 11.707031 293.0625 11.613281 292.96875 11.496094 292.96875 C 11.378906 292.96875 11.285156 293.0625 11.285156 293.179688 C 11.285156 293.296875 11.378906 293.390625 11.496094 293.390625 C 11.613281 293.390625 11.707031 293.296875 11.707031 293.179688 Z M 11.707031 293.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 10.496094 293.660156 C 10.496094 293.542969 10.402344 293.449219 10.285156 293.449219 C 10.167969 293.449219 10.074219 293.542969 10.074219 293.660156 C 10.074219 293.777344 10.167969 293.871094 10.285156 293.871094 C 10.402344 293.871094 10.496094 293.777344 10.496094 293.660156 Z M 10.496094 293.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.253906 294.679688 C 14.253906 294.5625 14.160156 294.46875 14.042969 294.46875 C 13.925781 294.46875 13.832031 294.5625 13.832031 294.679688 C 13.832031 294.796875 13.925781 294.890625 14.042969 294.890625 C 14.160156 294.890625 14.253906 294.796875 14.253906 294.679688 Z M 14.253906 294.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.941406 296.945312 C 13.941406 296.828125 13.847656 296.734375 13.730469 296.734375 C 13.613281 296.734375 13.519531 296.828125 13.519531 296.945312 C 13.519531 297.0625 13.613281 297.15625 13.730469 297.15625 C 13.847656 297.15625 13.941406 297.0625 13.941406 296.945312 Z M 13.941406 296.945312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 15.898438 297.214844 C 15.898438 297.097656 15.804688 297.003906 15.6875 297.003906 C 15.570312 297.003906 15.476562 297.097656 15.476562 297.214844 C 15.476562 297.332031 15.570312 297.425781 15.6875 297.425781 C 15.804688 297.425781 15.898438 297.332031 15.898438 297.214844 Z M 15.898438 297.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 17.316406 298.164062 C 17.316406 298.046875 17.222656 297.953125 17.105469 297.953125 C 16.988281 297.953125 16.894531 298.046875 16.894531 298.164062 C 16.894531 298.28125 16.988281 298.375 17.105469 298.375 C 17.222656 298.375 17.316406 298.28125 17.316406 298.164062 Z M 17.316406 298.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 18.570312 297.042969 C 18.570312 296.925781 18.476562 296.832031 18.359375 296.832031 C 18.242188 296.832031 18.148438 296.925781 18.148438 297.042969 C 18.148438 297.160156 18.242188 297.253906 18.359375 297.253906 C 18.476562 297.253906 18.570312 297.160156 18.570312 297.042969 Z M 18.570312 297.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 20.195312 297.6875 C 20.195312 297.570312 20.101562 297.476562 19.984375 297.476562 C 19.867188 297.476562 19.773438 297.570312 19.773438 297.6875 C 19.773438 297.804688 19.867188 297.898438 19.984375 297.898438 C 20.101562 297.898438 20.195312 297.804688 20.195312 297.6875 Z M 20.195312 297.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.558594 294.433594 C 21.558594 294.316406 21.464844 294.222656 21.347656 294.222656 C 21.230469 294.222656 21.136719 294.316406 21.136719 294.433594 C 21.136719 294.550781 21.230469 294.644531 21.347656 294.644531 C 21.464844 294.644531 21.558594 294.550781 21.558594 294.433594 Z M 21.558594 294.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.738281 295.25 C 23.738281 295.132812 23.644531 295.039062 23.527344 295.039062 C 23.410156 295.039062 23.316406 295.132812 23.316406 295.25 C 23.316406 295.367188 23.410156 295.460938 23.527344 295.460938 C 23.644531 295.460938 23.738281 295.367188 23.738281 295.25 Z M 23.738281 295.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.871094 296.324219 C 23.871094 296.207031 23.777344 296.113281 23.660156 296.113281 C 23.542969 296.113281 23.449219 296.207031 23.449219 296.324219 C 23.449219 296.441406 23.542969 296.535156 23.660156 296.535156 C 23.777344 296.535156 23.871094 296.441406 23.871094 296.324219 Z M 23.871094 296.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.550781 296.550781 C 23.550781 296.433594 23.457031 296.339844 23.339844 296.339844 C 23.222656 296.339844 23.128906 296.433594 23.128906 296.550781 C 23.128906 296.667969 23.222656 296.761719 23.339844 296.761719 C 23.457031 296.761719 23.550781 296.667969 23.550781 296.550781 Z M 23.550781 296.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.121094 297.109375 C 23.121094 296.992188 23.027344 296.898438 22.910156 296.898438 C 22.792969 296.898438 22.699219 296.992188 22.699219 297.109375 C 22.699219 297.226562 22.792969 297.320312 22.910156 297.320312 C 23.027344 297.320312 23.121094 297.226562 23.121094 297.109375 Z M 23.121094 297.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22 297.476562 C 22 297.359375 21.90625 297.265625 21.789062 297.265625 C 21.671875 297.265625 21.578125 297.359375 21.578125 297.476562 C 21.578125 297.59375 21.671875 297.6875 21.789062 297.6875 C 21.90625 297.6875 22 297.59375 22 297.476562 Z M 22 297.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.3125 294.425781 C 25.3125 294.308594 25.21875 294.214844 25.101562 294.214844 C 24.984375 294.214844 24.890625 294.308594 24.890625 294.425781 C 24.890625 294.542969 24.984375 294.636719 25.101562 294.636719 C 25.21875 294.636719 25.3125 294.542969 25.3125 294.425781 Z M 25.3125 294.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.898438 293.445312 C 25.898438 293.328125 25.804688 293.234375 25.6875 293.234375 C 25.570312 293.234375 25.476562 293.328125 25.476562 293.445312 C 25.476562 293.5625 25.570312 293.65625 25.6875 293.65625 C 25.804688 293.65625 25.898438 293.5625 25.898438 293.445312 Z M 25.898438 293.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.578125 295.484375 C 21.578125 295.367188 21.484375 295.273438 21.367188 295.273438 C 21.25 295.273438 21.15625 295.367188 21.15625 295.484375 C 21.15625 295.601562 21.25 295.695312 21.367188 295.695312 C 21.484375 295.695312 21.578125 295.601562 21.578125 295.484375 Z M 21.578125 295.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.640625 298.339844 C 21.640625 298.222656 21.546875 298.128906 21.429688 298.128906 C 21.3125 298.128906 21.21875 298.222656 21.21875 298.339844 C 21.21875 298.457031 21.3125 298.550781 21.429688 298.550781 C 21.546875 298.550781 21.640625 298.457031 21.640625 298.339844 Z M 21.640625 298.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.5 295.101562 C 22.5 294.984375 22.40625 294.890625 22.289062 294.890625 C 22.171875 294.890625 22.078125 294.984375 22.078125 295.101562 C 22.078125 295.21875 22.171875 295.3125 22.289062 295.3125 C 22.40625 295.3125 22.5 295.21875 22.5 295.101562 Z M 22.5 295.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 18.433594 297.800781 C 18.433594 297.683594 18.339844 297.589844 18.222656 297.589844 C 18.105469 297.589844 18.011719 297.683594 18.011719 297.800781 C 18.011719 297.917969 18.105469 298.011719 18.222656 298.011719 C 18.339844 298.011719 18.433594 297.917969 18.433594 297.800781 Z M 18.433594 297.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 18.71875 294.265625 C 18.71875 294.148438 18.625 294.054688 18.507812 294.054688 C 18.390625 294.054688 18.296875 294.148438 18.296875 294.265625 C 18.296875 294.382812 18.390625 294.476562 18.507812 294.476562 C 18.625 294.476562 18.71875 294.382812 18.71875 294.265625 Z M 18.71875 294.265625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.703125 295.203125 C 21.703125 295.085938 21.609375 294.992188 21.492188 294.992188 C 21.375 294.992188 21.28125 295.085938 21.28125 295.203125 C 21.28125 295.320312 21.375 295.414062 21.492188 295.414062 C 21.609375 295.414062 21.703125 295.320312 21.703125 295.203125 Z M 21.703125 295.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 20.113281 293.226562 C 20.113281 293.109375 20.019531 293.015625 19.902344 293.015625 C 19.785156 293.015625 19.691406 293.109375 19.691406 293.226562 C 19.691406 293.34375 19.785156 293.4375 19.902344 293.4375 C 20.019531 293.4375 20.113281 293.34375 20.113281 293.226562 Z M 20.113281 293.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.25 294.433594 C 21.25 294.316406 21.15625 294.222656 21.039062 294.222656 C 20.921875 294.222656 20.828125 294.316406 20.828125 294.433594 C 20.828125 294.550781 20.921875 294.644531 21.039062 294.644531 C 21.15625 294.644531 21.25 294.550781 21.25 294.433594 Z M 21.25 294.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.355469 296.488281 C 23.355469 296.371094 23.261719 296.277344 23.144531 296.277344 C 23.027344 296.277344 22.933594 296.371094 22.933594 296.488281 C 22.933594 296.605469 23.027344 296.699219 23.144531 296.699219 C 23.261719 296.699219 23.355469 296.605469 23.355469 296.488281 Z M 23.355469 296.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.761719 298.441406 C 22.761719 298.324219 22.667969 298.230469 22.550781 298.230469 C 22.433594 298.230469 22.339844 298.324219 22.339844 298.441406 C 22.339844 298.558594 22.433594 298.652344 22.550781 298.652344 C 22.667969 298.652344 22.761719 298.558594 22.761719 298.441406 Z M 22.761719 298.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.035156 301.605469 C 23.035156 301.488281 22.941406 301.394531 22.824219 301.394531 C 22.707031 301.394531 22.613281 301.488281 22.613281 301.605469 C 22.613281 301.722656 22.707031 301.816406 22.824219 301.816406 C 22.941406 301.816406 23.035156 301.722656 23.035156 301.605469 Z M 23.035156 301.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.484375 303.445312 C 22.484375 303.328125 22.390625 303.234375 22.273438 303.234375 C 22.15625 303.234375 22.0625 303.328125 22.0625 303.445312 C 22.0625 303.5625 22.15625 303.65625 22.273438 303.65625 C 22.390625 303.65625 22.484375 303.5625 22.484375 303.445312 Z M 22.484375 303.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.109375 301.457031 C 21.109375 301.339844 21.015625 301.246094 20.898438 301.246094 C 20.78125 301.246094 20.6875 301.339844 20.6875 301.457031 C 20.6875 301.574219 20.78125 301.667969 20.898438 301.667969 C 21.015625 301.667969 21.109375 301.574219 21.109375 301.457031 Z M 21.109375 301.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.390625 299.71875 C 24.390625 299.601562 24.296875 299.507812 24.179688 299.507812 C 24.0625 299.507812 23.96875 299.601562 23.96875 299.71875 C 23.96875 299.835938 24.0625 299.929688 24.179688 299.929688 C 24.296875 299.929688 24.390625 299.835938 24.390625 299.71875 Z M 24.390625 299.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.1875 299.214844 C 24.1875 299.097656 24.09375 299.003906 23.976562 299.003906 C 23.859375 299.003906 23.765625 299.097656 23.765625 299.214844 C 23.765625 299.332031 23.859375 299.425781 23.976562 299.425781 C 24.09375 299.425781 24.1875 299.332031 24.1875 299.214844 Z M 24.1875 299.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.089844 299.972656 C 25.089844 299.855469 24.996094 299.761719 24.878906 299.761719 C 24.761719 299.761719 24.667969 299.855469 24.667969 299.972656 C 24.667969 300.089844 24.761719 300.183594 24.878906 300.183594 C 24.996094 300.183594 25.089844 300.089844 25.089844 299.972656 Z M 25.089844 299.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.972656 299.804688 C 26.972656 299.6875 26.878906 299.59375 26.761719 299.59375 C 26.644531 299.59375 26.550781 299.6875 26.550781 299.804688 C 26.550781 299.921875 26.644531 300.015625 26.761719 300.015625 C 26.878906 300.015625 26.972656 299.921875 26.972656 299.804688 Z M 26.972656 299.804688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.449219 302.074219 C 25.449219 301.957031 25.355469 301.863281 25.238281 301.863281 C 25.121094 301.863281 25.027344 301.957031 25.027344 302.074219 C 25.027344 302.191406 25.121094 302.285156 25.238281 302.285156 C 25.355469 302.285156 25.449219 302.191406 25.449219 302.074219 Z M 25.449219 302.074219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.101562 302.226562 C 25.101562 302.109375 25.007812 302.015625 24.890625 302.015625 C 24.773438 302.015625 24.679688 302.109375 24.679688 302.226562 C 24.679688 302.34375 24.773438 302.4375 24.890625 302.4375 C 25.007812 302.4375 25.101562 302.34375 25.101562 302.226562 Z M 25.101562 302.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.34375 300.042969 C 27.34375 299.925781 27.25 299.832031 27.132812 299.832031 C 27.015625 299.832031 26.921875 299.925781 26.921875 300.042969 C 26.921875 300.160156 27.015625 300.253906 27.132812 300.253906 C 27.25 300.253906 27.34375 300.160156 27.34375 300.042969 Z M 27.34375 300.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.363281 300.453125 C 27.363281 300.335938 27.269531 300.242188 27.152344 300.242188 C 27.035156 300.242188 26.941406 300.335938 26.941406 300.453125 C 26.941406 300.570312 27.035156 300.664062 27.152344 300.664062 C 27.269531 300.664062 27.363281 300.570312 27.363281 300.453125 Z M 27.363281 300.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.347656 303.351562 C 29.347656 303.234375 29.253906 303.140625 29.136719 303.140625 C 29.019531 303.140625 28.925781 303.234375 28.925781 303.351562 C 28.925781 303.46875 29.019531 303.5625 29.136719 303.5625 C 29.253906 303.5625 29.347656 303.46875 29.347656 303.351562 Z M 29.347656 303.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.28125 307.023438 C 30.28125 306.90625 30.1875 306.8125 30.070312 306.8125 C 29.953125 306.8125 29.859375 306.90625 29.859375 307.023438 C 29.859375 307.140625 29.953125 307.234375 30.070312 307.234375 C 30.1875 307.234375 30.28125 307.140625 30.28125 307.023438 Z M 30.28125 307.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.464844 307.277344 C 27.464844 307.160156 27.371094 307.066406 27.253906 307.066406 C 27.136719 307.066406 27.042969 307.160156 27.042969 307.277344 C 27.042969 307.394531 27.136719 307.488281 27.253906 307.488281 C 27.371094 307.488281 27.464844 307.394531 27.464844 307.277344 Z M 27.464844 307.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.128906 308.121094 C 29.128906 308.003906 29.035156 307.910156 28.917969 307.910156 C 28.800781 307.910156 28.707031 308.003906 28.707031 308.121094 C 28.707031 308.238281 28.800781 308.332031 28.917969 308.332031 C 29.035156 308.332031 29.128906 308.238281 29.128906 308.121094 Z M 29.128906 308.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.253906 308.132812 C 32.253906 308.015625 32.160156 307.921875 32.042969 307.921875 C 31.925781 307.921875 31.832031 308.015625 31.832031 308.132812 C 31.832031 308.25 31.925781 308.34375 32.042969 308.34375 C 32.160156 308.34375 32.253906 308.25 32.253906 308.132812 Z M 32.253906 308.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.335938 306.816406 C 32.335938 306.699219 32.242188 306.605469 32.125 306.605469 C 32.007812 306.605469 31.914062 306.699219 31.914062 306.816406 C 31.914062 306.933594 32.007812 307.027344 32.125 307.027344 C 32.242188 307.027344 32.335938 306.933594 32.335938 306.816406 Z M 32.335938 306.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.96875 303.09375 C 33.96875 302.976562 33.875 302.882812 33.757812 302.882812 C 33.640625 302.882812 33.546875 302.976562 33.546875 303.09375 C 33.546875 303.210938 33.640625 303.304688 33.757812 303.304688 C 33.875 303.304688 33.96875 303.210938 33.96875 303.09375 Z M 33.96875 303.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.152344 301.425781 C 31.152344 301.308594 31.058594 301.214844 30.941406 301.214844 C 30.824219 301.214844 30.730469 301.308594 30.730469 301.425781 C 30.730469 301.542969 30.824219 301.636719 30.941406 301.636719 C 31.058594 301.636719 31.152344 301.542969 31.152344 301.425781 Z M 31.152344 301.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.996094 298.171875 C 28.996094 298.054688 28.902344 297.960938 28.785156 297.960938 C 28.667969 297.960938 28.574219 298.054688 28.574219 298.171875 C 28.574219 298.289062 28.667969 298.382812 28.785156 298.382812 C 28.902344 298.382812 28.996094 298.289062 28.996094 298.171875 Z M 28.996094 298.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.898438 298.332031 C 27.898438 298.214844 27.804688 298.121094 27.6875 298.121094 C 27.570312 298.121094 27.476562 298.214844 27.476562 298.332031 C 27.476562 298.449219 27.570312 298.542969 27.6875 298.542969 C 27.804688 298.542969 27.898438 298.449219 27.898438 298.332031 Z M 27.898438 298.332031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.386719 299.664062 C 30.386719 299.546875 30.292969 299.453125 30.175781 299.453125 C 30.058594 299.453125 29.964844 299.546875 29.964844 299.664062 C 29.964844 299.78125 30.058594 299.875 30.175781 299.875 C 30.292969 299.875 30.386719 299.78125 30.386719 299.664062 Z M 30.386719 299.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.882812 299.671875 C 27.882812 299.554688 27.789062 299.460938 27.671875 299.460938 C 27.554688 299.460938 27.460938 299.554688 27.460938 299.671875 C 27.460938 299.789062 27.554688 299.882812 27.671875 299.882812 C 27.789062 299.882812 27.882812 299.789062 27.882812 299.671875 Z M 27.882812 299.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.640625 296.855469 C 24.640625 296.738281 24.546875 296.644531 24.429688 296.644531 C 24.3125 296.644531 24.21875 296.738281 24.21875 296.855469 C 24.21875 296.972656 24.3125 297.066406 24.429688 297.066406 C 24.546875 297.066406 24.640625 296.972656 24.640625 296.855469 Z M 24.640625 296.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.539062 295.550781 C 24.539062 295.433594 24.445312 295.339844 24.328125 295.339844 C 24.210938 295.339844 24.117188 295.433594 24.117188 295.550781 C 24.117188 295.667969 24.210938 295.761719 24.328125 295.761719 C 24.445312 295.761719 24.539062 295.667969 24.539062 295.550781 Z M 24.539062 295.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.3125 297.207031 C 23.3125 297.089844 23.21875 296.996094 23.101562 296.996094 C 22.984375 296.996094 22.890625 297.089844 22.890625 297.207031 C 22.890625 297.324219 22.984375 297.417969 23.101562 297.417969 C 23.21875 297.417969 23.3125 297.324219 23.3125 297.207031 Z M 23.3125 297.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.382812 297.703125 C 22.382812 297.585938 22.289062 297.492188 22.171875 297.492188 C 22.054688 297.492188 21.960938 297.585938 21.960938 297.703125 C 21.960938 297.820312 22.054688 297.914062 22.171875 297.914062 C 22.289062 297.914062 22.382812 297.820312 22.382812 297.703125 Z M 22.382812 297.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.210938 298.335938 C 25.210938 298.21875 25.117188 298.125 25 298.125 C 24.882812 298.125 24.789062 298.21875 24.789062 298.335938 C 24.789062 298.453125 24.882812 298.546875 25 298.546875 C 25.117188 298.546875 25.210938 298.453125 25.210938 298.335938 Z M 25.210938 298.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.335938 296.714844 C 24.335938 296.597656 24.242188 296.503906 24.125 296.503906 C 24.007812 296.503906 23.914062 296.597656 23.914062 296.714844 C 23.914062 296.832031 24.007812 296.925781 24.125 296.925781 C 24.242188 296.925781 24.335938 296.832031 24.335938 296.714844 Z M 24.335938 296.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.757812 299.328125 C 22.757812 299.210938 22.664062 299.117188 22.546875 299.117188 C 22.429688 299.117188 22.335938 299.210938 22.335938 299.328125 C 22.335938 299.445312 22.429688 299.539062 22.546875 299.539062 C 22.664062 299.539062 22.757812 299.445312 22.757812 299.328125 Z M 22.757812 299.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.667969 299.402344 C 22.667969 299.285156 22.574219 299.191406 22.457031 299.191406 C 22.339844 299.191406 22.246094 299.285156 22.246094 299.402344 C 22.246094 299.519531 22.339844 299.613281 22.457031 299.613281 C 22.574219 299.613281 22.667969 299.519531 22.667969 299.402344 Z M 22.667969 299.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.578125 303.894531 C 22.578125 303.777344 22.484375 303.683594 22.367188 303.683594 C 22.25 303.683594 22.15625 303.777344 22.15625 303.894531 C 22.15625 304.011719 22.25 304.105469 22.367188 304.105469 C 22.484375 304.105469 22.578125 304.011719 22.578125 303.894531 Z M 22.578125 303.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.8125 303.171875 C 23.8125 303.054688 23.71875 302.960938 23.601562 302.960938 C 23.484375 302.960938 23.390625 303.054688 23.390625 303.171875 C 23.390625 303.289062 23.484375 303.382812 23.601562 303.382812 C 23.71875 303.382812 23.8125 303.289062 23.8125 303.171875 Z M 23.8125 303.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.144531 305.117188 C 25.144531 305 25.050781 304.90625 24.933594 304.90625 C 24.816406 304.90625 24.722656 305 24.722656 305.117188 C 24.722656 305.234375 24.816406 305.328125 24.933594 305.328125 C 25.050781 305.328125 25.144531 305.234375 25.144531 305.117188 Z M 25.144531 305.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.910156 306.578125 C 21.910156 306.460938 21.816406 306.367188 21.699219 306.367188 C 21.582031 306.367188 21.488281 306.460938 21.488281 306.578125 C 21.488281 306.695312 21.582031 306.789062 21.699219 306.789062 C 21.816406 306.789062 21.910156 306.695312 21.910156 306.578125 Z M 21.910156 306.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 20.820312 307.292969 C 20.820312 307.175781 20.726562 307.082031 20.609375 307.082031 C 20.492188 307.082031 20.398438 307.175781 20.398438 307.292969 C 20.398438 307.410156 20.492188 307.503906 20.609375 307.503906 C 20.726562 307.503906 20.820312 307.410156 20.820312 307.292969 Z M 20.820312 307.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.625 307.78125 C 22.625 307.664062 22.53125 307.570312 22.414062 307.570312 C 22.296875 307.570312 22.203125 307.664062 22.203125 307.78125 C 22.203125 307.898438 22.296875 307.992188 22.414062 307.992188 C 22.53125 307.992188 22.625 307.898438 22.625 307.78125 Z M 22.625 307.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.113281 308.203125 C 21.113281 308.085938 21.019531 307.992188 20.902344 307.992188 C 20.785156 307.992188 20.691406 308.085938 20.691406 308.203125 C 20.691406 308.320312 20.785156 308.414062 20.902344 308.414062 C 21.019531 308.414062 21.113281 308.320312 21.113281 308.203125 Z M 21.113281 308.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 16.890625 308.121094 C 16.890625 308.003906 16.796875 307.910156 16.679688 307.910156 C 16.5625 307.910156 16.46875 308.003906 16.46875 308.121094 C 16.46875 308.238281 16.5625 308.332031 16.679688 308.332031 C 16.796875 308.332031 16.890625 308.238281 16.890625 308.121094 Z M 16.890625 308.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 15.1875 309.933594 C 15.1875 309.816406 15.09375 309.722656 14.976562 309.722656 C 14.859375 309.722656 14.765625 309.816406 14.765625 309.933594 C 14.765625 310.050781 14.859375 310.144531 14.976562 310.144531 C 15.09375 310.144531 15.1875 310.050781 15.1875 309.933594 Z M 15.1875 309.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 17.539062 305.230469 C 17.539062 305.113281 17.445312 305.019531 17.328125 305.019531 C 17.210938 305.019531 17.117188 305.113281 17.117188 305.230469 C 17.117188 305.347656 17.210938 305.441406 17.328125 305.441406 C 17.445312 305.441406 17.539062 305.347656 17.539062 305.230469 Z M 17.539062 305.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 18.363281 308.40625 C 18.363281 308.289062 18.269531 308.195312 18.152344 308.195312 C 18.035156 308.195312 17.941406 308.289062 17.941406 308.40625 C 17.941406 308.523438 18.035156 308.617188 18.152344 308.617188 C 18.269531 308.617188 18.363281 308.523438 18.363281 308.40625 Z M 18.363281 308.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 19.003906 311.335938 C 19.003906 311.21875 18.910156 311.125 18.792969 311.125 C 18.675781 311.125 18.582031 311.21875 18.582031 311.335938 C 18.582031 311.453125 18.675781 311.546875 18.792969 311.546875 C 18.910156 311.546875 19.003906 311.453125 19.003906 311.335938 Z M 19.003906 311.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 19.316406 313.859375 C 19.316406 313.742188 19.222656 313.648438 19.105469 313.648438 C 18.988281 313.648438 18.894531 313.742188 18.894531 313.859375 C 18.894531 313.976562 18.988281 314.070312 19.105469 314.070312 C 19.222656 314.070312 19.316406 313.976562 19.316406 313.859375 Z M 19.316406 313.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.804688 315.253906 C 21.804688 315.136719 21.710938 315.042969 21.59375 315.042969 C 21.476562 315.042969 21.382812 315.136719 21.382812 315.253906 C 21.382812 315.371094 21.476562 315.464844 21.59375 315.464844 C 21.710938 315.464844 21.804688 315.371094 21.804688 315.253906 Z M 21.804688 315.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.613281 316.457031 C 23.613281 316.339844 23.519531 316.246094 23.402344 316.246094 C 23.285156 316.246094 23.191406 316.339844 23.191406 316.457031 C 23.191406 316.574219 23.285156 316.667969 23.402344 316.667969 C 23.519531 316.667969 23.613281 316.574219 23.613281 316.457031 Z M 23.613281 316.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.027344 316.273438 C 23.027344 316.15625 22.933594 316.0625 22.816406 316.0625 C 22.699219 316.0625 22.605469 316.15625 22.605469 316.273438 C 22.605469 316.390625 22.699219 316.484375 22.816406 316.484375 C 22.933594 316.484375 23.027344 316.390625 23.027344 316.273438 Z M 23.027344 316.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.285156 314.363281 C 26.285156 314.246094 26.191406 314.152344 26.074219 314.152344 C 25.957031 314.152344 25.863281 314.246094 25.863281 314.363281 C 25.863281 314.480469 25.957031 314.574219 26.074219 314.574219 C 26.191406 314.574219 26.285156 314.480469 26.285156 314.363281 Z M 26.285156 314.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.507812 312.160156 C 26.507812 312.042969 26.414062 311.949219 26.296875 311.949219 C 26.179688 311.949219 26.085938 312.042969 26.085938 312.160156 C 26.085938 312.277344 26.179688 312.371094 26.296875 312.371094 C 26.414062 312.371094 26.507812 312.277344 26.507812 312.160156 Z M 26.507812 312.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.609375 314.398438 C 25.609375 314.28125 25.515625 314.1875 25.398438 314.1875 C 25.28125 314.1875 25.1875 314.28125 25.1875 314.398438 C 25.1875 314.515625 25.28125 314.609375 25.398438 314.609375 C 25.515625 314.609375 25.609375 314.515625 25.609375 314.398438 Z M 25.609375 314.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.742188 315.421875 C 24.742188 315.304688 24.648438 315.210938 24.53125 315.210938 C 24.414062 315.210938 24.320312 315.304688 24.320312 315.421875 C 24.320312 315.539062 24.414062 315.632812 24.53125 315.632812 C 24.648438 315.632812 24.742188 315.539062 24.742188 315.421875 Z M 24.742188 315.421875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.621094 313.835938 C 22.621094 313.71875 22.527344 313.625 22.410156 313.625 C 22.292969 313.625 22.199219 313.71875 22.199219 313.835938 C 22.199219 313.953125 22.292969 314.046875 22.410156 314.046875 C 22.527344 314.046875 22.621094 313.953125 22.621094 313.835938 Z M 22.621094 313.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.777344 316.683594 C 24.777344 316.566406 24.683594 316.472656 24.566406 316.472656 C 24.449219 316.472656 24.355469 316.566406 24.355469 316.683594 C 24.355469 316.800781 24.449219 316.894531 24.566406 316.894531 C 24.683594 316.894531 24.777344 316.800781 24.777344 316.683594 Z M 24.777344 316.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.785156 317.296875 C 24.785156 317.179688 24.691406 317.085938 24.574219 317.085938 C 24.457031 317.085938 24.363281 317.179688 24.363281 317.296875 C 24.363281 317.414062 24.457031 317.507812 24.574219 317.507812 C 24.691406 317.507812 24.785156 317.414062 24.785156 317.296875 Z M 24.785156 317.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.992188 318.335938 C 24.992188 318.21875 24.898438 318.125 24.78125 318.125 C 24.664062 318.125 24.570312 318.21875 24.570312 318.335938 C 24.570312 318.453125 24.664062 318.546875 24.78125 318.546875 C 24.898438 318.546875 24.992188 318.453125 24.992188 318.335938 Z M 24.992188 318.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.808594 320.023438 C 27.808594 319.90625 27.714844 319.8125 27.597656 319.8125 C 27.480469 319.8125 27.386719 319.90625 27.386719 320.023438 C 27.386719 320.140625 27.480469 320.234375 27.597656 320.234375 C 27.714844 320.234375 27.808594 320.140625 27.808594 320.023438 Z M 27.808594 320.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.355469 322.09375 C 30.355469 321.976562 30.261719 321.882812 30.144531 321.882812 C 30.027344 321.882812 29.933594 321.976562 29.933594 322.09375 C 29.933594 322.210938 30.027344 322.304688 30.144531 322.304688 C 30.261719 322.304688 30.355469 322.210938 30.355469 322.09375 Z M 30.355469 322.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.488281 321.183594 C 29.488281 321.066406 29.394531 320.972656 29.277344 320.972656 C 29.160156 320.972656 29.066406 321.066406 29.066406 321.183594 C 29.066406 321.300781 29.160156 321.394531 29.277344 321.394531 C 29.394531 321.394531 29.488281 321.300781 29.488281 321.183594 Z M 29.488281 321.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.894531 319.296875 C 33.894531 319.179688 33.800781 319.085938 33.683594 319.085938 C 33.566406 319.085938 33.472656 319.179688 33.472656 319.296875 C 33.472656 319.414062 33.566406 319.507812 33.683594 319.507812 C 33.800781 319.507812 33.894531 319.414062 33.894531 319.296875 Z M 33.894531 319.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 34.292969 322 C 34.292969 321.882812 34.199219 321.789062 34.082031 321.789062 C 33.964844 321.789062 33.871094 321.882812 33.871094 322 C 33.871094 322.117188 33.964844 322.210938 34.082031 322.210938 C 34.199219 322.210938 34.292969 322.117188 34.292969 322 Z M 34.292969 322 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.203125 321.445312 C 33.203125 321.328125 33.109375 321.234375 32.992188 321.234375 C 32.875 321.234375 32.78125 321.328125 32.78125 321.445312 C 32.78125 321.5625 32.875 321.65625 32.992188 321.65625 C 33.109375 321.65625 33.203125 321.5625 33.203125 321.445312 Z M 33.203125 321.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.441406 319.976562 C 32.441406 319.859375 32.347656 319.765625 32.230469 319.765625 C 32.113281 319.765625 32.019531 319.859375 32.019531 319.976562 C 32.019531 320.09375 32.113281 320.1875 32.230469 320.1875 C 32.347656 320.1875 32.441406 320.09375 32.441406 319.976562 Z M 32.441406 319.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.496094 317.34375 C 32.496094 317.226562 32.402344 317.132812 32.285156 317.132812 C 32.167969 317.132812 32.074219 317.226562 32.074219 317.34375 C 32.074219 317.460938 32.167969 317.554688 32.285156 317.554688 C 32.402344 317.554688 32.496094 317.460938 32.496094 317.34375 Z M 32.496094 317.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 34.496094 316.046875 C 34.496094 315.929688 34.402344 315.835938 34.285156 315.835938 C 34.167969 315.835938 34.074219 315.929688 34.074219 316.046875 C 34.074219 316.164062 34.167969 316.257812 34.285156 316.257812 C 34.402344 316.257812 34.496094 316.164062 34.496094 316.046875 Z M 34.496094 316.046875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.777344 313.957031 C 32.777344 313.839844 32.683594 313.746094 32.566406 313.746094 C 32.449219 313.746094 32.355469 313.839844 32.355469 313.957031 C 32.355469 314.074219 32.449219 314.167969 32.566406 314.167969 C 32.683594 314.167969 32.777344 314.074219 32.777344 313.957031 Z M 32.777344 313.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.199219 315.859375 C 33.199219 315.742188 33.105469 315.648438 32.988281 315.648438 C 32.871094 315.648438 32.777344 315.742188 32.777344 315.859375 C 32.777344 315.976562 32.871094 316.070312 32.988281 316.070312 C 33.105469 316.070312 33.199219 315.976562 33.199219 315.859375 Z M 33.199219 315.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.808594 317.160156 C 33.808594 317.042969 33.714844 316.949219 33.597656 316.949219 C 33.480469 316.949219 33.386719 317.042969 33.386719 317.160156 C 33.386719 317.277344 33.480469 317.371094 33.597656 317.371094 C 33.714844 317.371094 33.808594 317.277344 33.808594 317.160156 Z M 33.808594 317.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.179688 320.445312 C 32.179688 320.328125 32.085938 320.234375 31.96875 320.234375 C 31.851562 320.234375 31.757812 320.328125 31.757812 320.445312 C 31.757812 320.5625 31.851562 320.65625 31.96875 320.65625 C 32.085938 320.65625 32.179688 320.5625 32.179688 320.445312 Z M 32.179688 320.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.71875 324.117188 C 31.71875 324 31.625 323.90625 31.507812 323.90625 C 31.390625 323.90625 31.296875 324 31.296875 324.117188 C 31.296875 324.234375 31.390625 324.328125 31.507812 324.328125 C 31.625 324.328125 31.71875 324.234375 31.71875 324.117188 Z M 31.71875 324.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.585938 324.636719 C 31.585938 324.519531 31.492188 324.425781 31.375 324.425781 C 31.257812 324.425781 31.164062 324.519531 31.164062 324.636719 C 31.164062 324.753906 31.257812 324.847656 31.375 324.847656 C 31.492188 324.847656 31.585938 324.753906 31.585938 324.636719 Z M 31.585938 324.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.019531 323.921875 C 36.019531 323.804688 35.925781 323.710938 35.808594 323.710938 C 35.691406 323.710938 35.597656 323.804688 35.597656 323.921875 C 35.597656 324.039062 35.691406 324.132812 35.808594 324.132812 C 35.925781 324.132812 36.019531 324.039062 36.019531 323.921875 Z M 36.019531 323.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.125 323.363281 C 37.125 323.246094 37.03125 323.152344 36.914062 323.152344 C 36.796875 323.152344 36.703125 323.246094 36.703125 323.363281 C 36.703125 323.480469 36.796875 323.574219 36.914062 323.574219 C 37.03125 323.574219 37.125 323.480469 37.125 323.363281 Z M 37.125 323.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.859375 326.855469 C 36.859375 326.738281 36.765625 326.644531 36.648438 326.644531 C 36.53125 326.644531 36.4375 326.738281 36.4375 326.855469 C 36.4375 326.972656 36.53125 327.066406 36.648438 327.066406 C 36.765625 327.066406 36.859375 326.972656 36.859375 326.855469 Z M 36.859375 326.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.273438 327.402344 C 35.273438 327.285156 35.179688 327.191406 35.0625 327.191406 C 34.945312 327.191406 34.851562 327.285156 34.851562 327.402344 C 34.851562 327.519531 34.945312 327.613281 35.0625 327.613281 C 35.179688 327.613281 35.273438 327.519531 35.273438 327.402344 Z M 35.273438 327.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.1875 329.84375 C 35.1875 329.726562 35.09375 329.632812 34.976562 329.632812 C 34.859375 329.632812 34.765625 329.726562 34.765625 329.84375 C 34.765625 329.960938 34.859375 330.054688 34.976562 330.054688 C 35.09375 330.054688 35.1875 329.960938 35.1875 329.84375 Z M 35.1875 329.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.3125 329.992188 C 36.3125 329.875 36.21875 329.78125 36.101562 329.78125 C 35.984375 329.78125 35.890625 329.875 35.890625 329.992188 C 35.890625 330.109375 35.984375 330.203125 36.101562 330.203125 C 36.21875 330.203125 36.3125 330.109375 36.3125 329.992188 Z M 36.3125 329.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.457031 327.664062 C 33.457031 327.546875 33.363281 327.453125 33.246094 327.453125 C 33.128906 327.453125 33.035156 327.546875 33.035156 327.664062 C 33.035156 327.78125 33.128906 327.875 33.246094 327.875 C 33.363281 327.875 33.457031 327.78125 33.457031 327.664062 Z M 33.457031 327.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.257812 327.1875 C 30.257812 327.070312 30.164062 326.976562 30.046875 326.976562 C 29.929688 326.976562 29.835938 327.070312 29.835938 327.1875 C 29.835938 327.304688 29.929688 327.398438 30.046875 327.398438 C 30.164062 327.398438 30.257812 327.304688 30.257812 327.1875 Z M 30.257812 327.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.113281 332.675781 C 30.113281 332.558594 30.019531 332.464844 29.902344 332.464844 C 29.785156 332.464844 29.691406 332.558594 29.691406 332.675781 C 29.691406 332.792969 29.785156 332.886719 29.902344 332.886719 C 30.019531 332.886719 30.113281 332.792969 30.113281 332.675781 Z M 30.113281 332.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 34.21875 329.667969 C 34.21875 329.550781 34.125 329.457031 34.007812 329.457031 C 33.890625 329.457031 33.796875 329.550781 33.796875 329.667969 C 33.796875 329.785156 33.890625 329.878906 34.007812 329.878906 C 34.125 329.878906 34.21875 329.785156 34.21875 329.667969 Z M 34.21875 329.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.929688 334.027344 C 30.929688 333.910156 30.835938 333.816406 30.71875 333.816406 C 30.601562 333.816406 30.507812 333.910156 30.507812 334.027344 C 30.507812 334.144531 30.601562 334.238281 30.71875 334.238281 C 30.835938 334.238281 30.929688 334.144531 30.929688 334.027344 Z M 30.929688 334.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.035156 331.457031 C 33.035156 331.339844 32.941406 331.246094 32.824219 331.246094 C 32.707031 331.246094 32.613281 331.339844 32.613281 331.457031 C 32.613281 331.574219 32.707031 331.667969 32.824219 331.667969 C 32.941406 331.667969 33.035156 331.574219 33.035156 331.457031 Z M 33.035156 331.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.203125 332.984375 C 33.203125 332.867188 33.109375 332.773438 32.992188 332.773438 C 32.875 332.773438 32.78125 332.867188 32.78125 332.984375 C 32.78125 333.101562 32.875 333.195312 32.992188 333.195312 C 33.109375 333.195312 33.203125 333.101562 33.203125 332.984375 Z M 33.203125 332.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.722656 333.117188 C 32.722656 333 32.628906 332.90625 32.511719 332.90625 C 32.394531 332.90625 32.300781 333 32.300781 333.117188 C 32.300781 333.234375 32.394531 333.328125 32.511719 333.328125 C 32.628906 333.328125 32.722656 333.234375 32.722656 333.117188 Z M 32.722656 333.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.847656 332.121094 C 33.847656 332.003906 33.753906 331.910156 33.636719 331.910156 C 33.519531 331.910156 33.425781 332.003906 33.425781 332.121094 C 33.425781 332.238281 33.519531 332.332031 33.636719 332.332031 C 33.753906 332.332031 33.847656 332.238281 33.847656 332.121094 Z M 33.847656 332.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.136719 329.9375 C 32.136719 329.820312 32.042969 329.726562 31.925781 329.726562 C 31.808594 329.726562 31.714844 329.820312 31.714844 329.9375 C 31.714844 330.054688 31.808594 330.148438 31.925781 330.148438 C 32.042969 330.148438 32.136719 330.054688 32.136719 329.9375 Z M 32.136719 329.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.476562 328.589844 C 31.476562 328.472656 31.382812 328.378906 31.265625 328.378906 C 31.148438 328.378906 31.054688 328.472656 31.054688 328.589844 C 31.054688 328.707031 31.148438 328.800781 31.265625 328.800781 C 31.382812 328.800781 31.476562 328.707031 31.476562 328.589844 Z M 31.476562 328.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 34.421875 330.078125 C 34.421875 329.960938 34.328125 329.867188 34.210938 329.867188 C 34.09375 329.867188 34 329.960938 34 330.078125 C 34 330.195312 34.09375 330.289062 34.210938 330.289062 C 34.328125 330.289062 34.421875 330.195312 34.421875 330.078125 Z M 34.421875 330.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.046875 329.152344 C 30.046875 329.035156 29.953125 328.941406 29.835938 328.941406 C 29.71875 328.941406 29.625 329.035156 29.625 329.152344 C 29.625 329.269531 29.71875 329.363281 29.835938 329.363281 C 29.953125 329.363281 30.046875 329.269531 30.046875 329.152344 Z M 30.046875 329.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.832031 329.148438 C 29.832031 329.03125 29.738281 328.9375 29.621094 328.9375 C 29.503906 328.9375 29.410156 329.03125 29.410156 329.148438 C 29.410156 329.265625 29.503906 329.359375 29.621094 329.359375 C 29.738281 329.359375 29.832031 329.265625 29.832031 329.148438 Z M 29.832031 329.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 34.03125 328.445312 C 34.03125 328.328125 33.9375 328.234375 33.820312 328.234375 C 33.703125 328.234375 33.609375 328.328125 33.609375 328.445312 C 33.609375 328.5625 33.703125 328.65625 33.820312 328.65625 C 33.9375 328.65625 34.03125 328.5625 34.03125 328.445312 Z M 34.03125 328.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.628906 331.464844 C 32.628906 331.347656 32.535156 331.253906 32.417969 331.253906 C 32.300781 331.253906 32.207031 331.347656 32.207031 331.464844 C 32.207031 331.582031 32.300781 331.675781 32.417969 331.675781 C 32.535156 331.675781 32.628906 331.582031 32.628906 331.464844 Z M 32.628906 331.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.363281 331.460938 C 30.363281 331.34375 30.269531 331.25 30.152344 331.25 C 30.035156 331.25 29.941406 331.34375 29.941406 331.460938 C 29.941406 331.578125 30.035156 331.671875 30.152344 331.671875 C 30.269531 331.671875 30.363281 331.578125 30.363281 331.460938 Z M 30.363281 331.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.769531 331 C 27.769531 330.882812 27.675781 330.789062 27.558594 330.789062 C 27.441406 330.789062 27.347656 330.882812 27.347656 331 C 27.347656 331.117188 27.441406 331.210938 27.558594 331.210938 C 27.675781 331.210938 27.769531 331.117188 27.769531 331 Z M 27.769531 331 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.398438 327.277344 C 24.398438 327.160156 24.304688 327.066406 24.1875 327.066406 C 24.070312 327.066406 23.976562 327.160156 23.976562 327.277344 C 23.976562 327.394531 24.070312 327.488281 24.1875 327.488281 C 24.304688 327.488281 24.398438 327.394531 24.398438 327.277344 Z M 24.398438 327.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.015625 328.929688 C 22.015625 328.8125 21.921875 328.71875 21.804688 328.71875 C 21.6875 328.71875 21.59375 328.8125 21.59375 328.929688 C 21.59375 329.046875 21.6875 329.140625 21.804688 329.140625 C 21.921875 329.140625 22.015625 329.046875 22.015625 328.929688 Z M 22.015625 328.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.230469 331.683594 C 21.230469 331.566406 21.136719 331.472656 21.019531 331.472656 C 20.902344 331.472656 20.808594 331.566406 20.808594 331.683594 C 20.808594 331.800781 20.902344 331.894531 21.019531 331.894531 C 21.136719 331.894531 21.230469 331.800781 21.230469 331.683594 Z M 21.230469 331.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 19.167969 334.976562 C 19.167969 334.859375 19.074219 334.765625 18.957031 334.765625 C 18.839844 334.765625 18.746094 334.859375 18.746094 334.976562 C 18.746094 335.09375 18.839844 335.1875 18.957031 335.1875 C 19.074219 335.1875 19.167969 335.09375 19.167969 334.976562 Z M 19.167969 334.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 20.445312 336.589844 C 20.445312 336.472656 20.351562 336.378906 20.234375 336.378906 C 20.117188 336.378906 20.023438 336.472656 20.023438 336.589844 C 20.023438 336.707031 20.117188 336.800781 20.234375 336.800781 C 20.351562 336.800781 20.445312 336.707031 20.445312 336.589844 Z M 20.445312 336.589844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.503906 334.957031 C 21.503906 334.839844 21.410156 334.746094 21.292969 334.746094 C 21.175781 334.746094 21.082031 334.839844 21.082031 334.957031 C 21.082031 335.074219 21.175781 335.167969 21.292969 335.167969 C 21.410156 335.167969 21.503906 335.074219 21.503906 334.957031 Z M 21.503906 334.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.351562 334.101562 C 22.351562 333.984375 22.257812 333.890625 22.140625 333.890625 C 22.023438 333.890625 21.929688 333.984375 21.929688 334.101562 C 21.929688 334.21875 22.023438 334.3125 22.140625 334.3125 C 22.257812 334.3125 22.351562 334.21875 22.351562 334.101562 Z M 22.351562 334.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.566406 332.875 C 24.566406 332.757812 24.472656 332.664062 24.355469 332.664062 C 24.238281 332.664062 24.144531 332.757812 24.144531 332.875 C 24.144531 332.992188 24.238281 333.085938 24.355469 333.085938 C 24.472656 333.085938 24.566406 332.992188 24.566406 332.875 Z M 24.566406 332.875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.613281 332.359375 C 22.613281 332.242188 22.519531 332.148438 22.402344 332.148438 C 22.285156 332.148438 22.191406 332.242188 22.191406 332.359375 C 22.191406 332.476562 22.285156 332.570312 22.402344 332.570312 C 22.519531 332.570312 22.613281 332.476562 22.613281 332.359375 Z M 22.613281 332.359375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 20.261719 330.75 C 20.261719 330.632812 20.167969 330.539062 20.050781 330.539062 C 19.933594 330.539062 19.839844 330.632812 19.839844 330.75 C 19.839844 330.867188 19.933594 330.960938 20.050781 330.960938 C 20.167969 330.960938 20.261719 330.867188 20.261719 330.75 Z M 20.261719 330.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 19.636719 328.761719 C 19.636719 328.644531 19.542969 328.550781 19.425781 328.550781 C 19.308594 328.550781 19.214844 328.644531 19.214844 328.761719 C 19.214844 328.878906 19.308594 328.972656 19.425781 328.972656 C 19.542969 328.972656 19.636719 328.878906 19.636719 328.761719 Z M 19.636719 328.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 20.453125 328.425781 C 20.453125 328.308594 20.359375 328.214844 20.242188 328.214844 C 20.125 328.214844 20.03125 328.308594 20.03125 328.425781 C 20.03125 328.542969 20.125 328.636719 20.242188 328.636719 C 20.359375 328.636719 20.453125 328.542969 20.453125 328.425781 Z M 20.453125 328.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 17.714844 330.636719 C 17.714844 330.519531 17.621094 330.425781 17.503906 330.425781 C 17.386719 330.425781 17.292969 330.519531 17.292969 330.636719 C 17.292969 330.753906 17.386719 330.847656 17.503906 330.847656 C 17.621094 330.847656 17.714844 330.753906 17.714844 330.636719 Z M 17.714844 330.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 17.707031 328.578125 C 17.707031 328.460938 17.613281 328.367188 17.496094 328.367188 C 17.378906 328.367188 17.285156 328.460938 17.285156 328.578125 C 17.285156 328.695312 17.378906 328.789062 17.496094 328.789062 C 17.613281 328.789062 17.707031 328.695312 17.707031 328.578125 Z M 17.707031 328.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.722656 323.984375 C 13.722656 323.867188 13.628906 323.773438 13.511719 323.773438 C 13.394531 323.773438 13.300781 323.867188 13.300781 323.984375 C 13.300781 324.101562 13.394531 324.195312 13.511719 324.195312 C 13.628906 324.195312 13.722656 324.101562 13.722656 323.984375 Z M 13.722656 323.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 15.457031 325.050781 C 15.457031 324.933594 15.363281 324.839844 15.246094 324.839844 C 15.128906 324.839844 15.035156 324.933594 15.035156 325.050781 C 15.035156 325.167969 15.128906 325.261719 15.246094 325.261719 C 15.363281 325.261719 15.457031 325.167969 15.457031 325.050781 Z M 15.457031 325.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.710938 327.257812 C 13.710938 327.140625 13.617188 327.046875 13.5 327.046875 C 13.382812 327.046875 13.289062 327.140625 13.289062 327.257812 C 13.289062 327.375 13.382812 327.46875 13.5 327.46875 C 13.617188 327.46875 13.710938 327.375 13.710938 327.257812 Z M 13.710938 327.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.402344 326.449219 C 13.402344 326.332031 13.308594 326.238281 13.191406 326.238281 C 13.074219 326.238281 12.980469 326.332031 12.980469 326.449219 C 12.980469 326.566406 13.074219 326.660156 13.191406 326.660156 C 13.308594 326.660156 13.402344 326.566406 13.402344 326.449219 Z M 13.402344 326.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 11.496094 326.8125 C 11.496094 326.695312 11.402344 326.601562 11.285156 326.601562 C 11.167969 326.601562 11.074219 326.695312 11.074219 326.8125 C 11.074219 326.929688 11.167969 327.023438 11.285156 327.023438 C 11.402344 327.023438 11.496094 326.929688 11.496094 326.8125 Z M 11.496094 326.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.90625 325.625 C 13.90625 325.507812 13.8125 325.414062 13.695312 325.414062 C 13.578125 325.414062 13.484375 325.507812 13.484375 325.625 C 13.484375 325.742188 13.578125 325.835938 13.695312 325.835938 C 13.8125 325.835938 13.90625 325.742188 13.90625 325.625 Z M 13.90625 325.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 10.640625 330.28125 C 10.640625 330.164062 10.546875 330.070312 10.429688 330.070312 C 10.3125 330.070312 10.21875 330.164062 10.21875 330.28125 C 10.21875 330.398438 10.3125 330.492188 10.429688 330.492188 C 10.546875 330.492188 10.640625 330.398438 10.640625 330.28125 Z M 10.640625 330.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 12.707031 333.140625 C 12.707031 333.023438 12.613281 332.929688 12.496094 332.929688 C 12.378906 332.929688 12.285156 333.023438 12.285156 333.140625 C 12.285156 333.257812 12.378906 333.351562 12.496094 333.351562 C 12.613281 333.351562 12.707031 333.257812 12.707031 333.140625 Z M 12.707031 333.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 12.300781 331.910156 C 12.300781 331.792969 12.207031 331.699219 12.089844 331.699219 C 11.972656 331.699219 11.878906 331.792969 11.878906 331.910156 C 11.878906 332.027344 11.972656 332.121094 12.089844 332.121094 C 12.207031 332.121094 12.300781 332.027344 12.300781 331.910156 Z M 12.300781 331.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.609375 334.4375 C 13.609375 334.320312 13.515625 334.226562 13.398438 334.226562 C 13.28125 334.226562 13.1875 334.320312 13.1875 334.4375 C 13.1875 334.554688 13.28125 334.648438 13.398438 334.648438 C 13.515625 334.648438 13.609375 334.554688 13.609375 334.4375 Z M 13.609375 334.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 11.203125 330.578125 C 11.203125 330.460938 11.109375 330.367188 10.992188 330.367188 C 10.875 330.367188 10.78125 330.460938 10.78125 330.578125 C 10.78125 330.695312 10.875 330.789062 10.992188 330.789062 C 11.109375 330.789062 11.203125 330.695312 11.203125 330.578125 Z M 11.203125 330.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 10.882812 333.527344 C 10.882812 333.410156 10.789062 333.316406 10.671875 333.316406 C 10.554688 333.316406 10.460938 333.410156 10.460938 333.527344 C 10.460938 333.644531 10.554688 333.738281 10.671875 333.738281 C 10.789062 333.738281 10.882812 333.644531 10.882812 333.527344 Z M 10.882812 333.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.609375 335.414062 C 8.609375 335.296875 8.515625 335.203125 8.398438 335.203125 C 8.28125 335.203125 8.1875 335.296875 8.1875 335.414062 C 8.1875 335.53125 8.28125 335.625 8.398438 335.625 C 8.515625 335.625 8.609375 335.53125 8.609375 335.414062 Z M 8.609375 335.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 9.871094 334.363281 C 9.871094 334.246094 9.777344 334.152344 9.660156 334.152344 C 9.542969 334.152344 9.449219 334.246094 9.449219 334.363281 C 9.449219 334.480469 9.542969 334.574219 9.660156 334.574219 C 9.777344 334.574219 9.871094 334.480469 9.871094 334.363281 Z M 9.871094 334.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.449219 336.015625 C 8.449219 335.898438 8.355469 335.804688 8.238281 335.804688 C 8.121094 335.804688 8.027344 335.898438 8.027344 336.015625 C 8.027344 336.132812 8.121094 336.226562 8.238281 336.226562 C 8.355469 336.226562 8.449219 336.132812 8.449219 336.015625 Z M 8.449219 336.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 9.738281 332.269531 C 9.738281 332.152344 9.644531 332.058594 9.527344 332.058594 C 9.410156 332.058594 9.316406 332.152344 9.316406 332.269531 C 9.316406 332.386719 9.410156 332.480469 9.527344 332.480469 C 9.644531 332.480469 9.738281 332.386719 9.738281 332.269531 Z M 9.738281 332.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 5.914062 334.984375 C 5.914062 334.867188 5.820312 334.773438 5.703125 334.773438 C 5.585938 334.773438 5.492188 334.867188 5.492188 334.984375 C 5.492188 335.101562 5.585938 335.195312 5.703125 335.195312 C 5.820312 335.195312 5.914062 335.101562 5.914062 334.984375 Z M 5.914062 334.984375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 4.085938 340.78125 C 4.085938 340.664062 3.992188 340.570312 3.875 340.570312 C 3.757812 340.570312 3.664062 340.664062 3.664062 340.78125 C 3.664062 340.898438 3.757812 340.992188 3.875 340.992188 C 3.992188 340.992188 4.085938 340.898438 4.085938 340.78125 Z M 4.085938 340.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 4.078125 343.816406 C 4.078125 343.699219 3.984375 343.605469 3.867188 343.605469 C 3.75 343.605469 3.65625 343.699219 3.65625 343.816406 C 3.65625 343.933594 3.75 344.027344 3.867188 344.027344 C 3.984375 344.027344 4.078125 343.933594 4.078125 343.816406 Z M 4.078125 343.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 4.695312 343.878906 C 4.695312 343.761719 4.601562 343.667969 4.484375 343.667969 C 4.367188 343.667969 4.273438 343.761719 4.273438 343.878906 C 4.273438 343.996094 4.367188 344.089844 4.484375 344.089844 C 4.601562 344.089844 4.695312 343.996094 4.695312 343.878906 Z M 4.695312 343.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.964844 340.273438 C 8.964844 340.15625 8.871094 340.0625 8.753906 340.0625 C 8.636719 340.0625 8.542969 340.15625 8.542969 340.273438 C 8.542969 340.390625 8.636719 340.484375 8.753906 340.484375 C 8.871094 340.484375 8.964844 340.390625 8.964844 340.273438 Z M 8.964844 340.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 11.625 337.828125 C 11.625 337.710938 11.53125 337.617188 11.414062 337.617188 C 11.296875 337.617188 11.203125 337.710938 11.203125 337.828125 C 11.203125 337.945312 11.296875 338.039062 11.414062 338.039062 C 11.53125 338.039062 11.625 337.945312 11.625 337.828125 Z M 11.625 337.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.007812 339.058594 C 14.007812 338.941406 13.914062 338.847656 13.796875 338.847656 C 13.679688 338.847656 13.585938 338.941406 13.585938 339.058594 C 13.585938 339.175781 13.679688 339.269531 13.796875 339.269531 C 13.914062 339.269531 14.007812 339.175781 14.007812 339.058594 Z M 14.007812 339.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.007812 341.164062 C 13.007812 341.046875 12.914062 340.953125 12.796875 340.953125 C 12.679688 340.953125 12.585938 341.046875 12.585938 341.164062 C 12.585938 341.28125 12.679688 341.375 12.796875 341.375 C 12.914062 341.375 13.007812 341.28125 13.007812 341.164062 Z M 13.007812 341.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.886719 343.105469 C 8.886719 342.988281 8.792969 342.894531 8.675781 342.894531 C 8.558594 342.894531 8.464844 342.988281 8.464844 343.105469 C 8.464844 343.222656 8.558594 343.316406 8.675781 343.316406 C 8.792969 343.316406 8.886719 343.222656 8.886719 343.105469 Z M 8.886719 343.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 5.640625 344.363281 C 5.640625 344.246094 5.546875 344.152344 5.429688 344.152344 C 5.3125 344.152344 5.21875 344.246094 5.21875 344.363281 C 5.21875 344.480469 5.3125 344.574219 5.429688 344.574219 C 5.546875 344.574219 5.640625 344.480469 5.640625 344.363281 Z M 5.640625 344.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 4.125 342.933594 C 4.125 342.816406 4.03125 342.722656 3.914062 342.722656 C 3.796875 342.722656 3.703125 342.816406 3.703125 342.933594 C 3.703125 343.050781 3.796875 343.144531 3.914062 343.144531 C 4.03125 343.144531 4.125 343.050781 4.125 342.933594 Z M 4.125 342.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 1.769531 341.394531 C 1.769531 341.277344 1.675781 341.183594 1.558594 341.183594 C 1.441406 341.183594 1.347656 341.277344 1.347656 341.394531 C 1.347656 341.511719 1.441406 341.605469 1.558594 341.605469 C 1.675781 341.605469 1.769531 341.511719 1.769531 341.394531 Z M 1.769531 341.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0.65625 343.921875 C 0.65625 343.804688 0.5625 343.710938 0.445312 343.710938 C 0.328125 343.710938 0.234375 343.804688 0.234375 343.921875 C 0.234375 344.039062 0.328125 344.132812 0.445312 344.132812 C 0.5625 344.132812 0.65625 344.039062 0.65625 343.921875 Z M 0.65625 343.921875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0.769531 341.007812 C 0.769531 340.890625 0.675781 340.796875 0.558594 340.796875 C 0.441406 340.796875 0.347656 340.890625 0.347656 341.007812 C 0.347656 341.125 0.441406 341.21875 0.558594 341.21875 C 0.675781 341.21875 0.769531 341.125 0.769531 341.007812 Z M 0.769531 341.007812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 1.414062 340.820312 C 1.414062 340.703125 1.320312 340.609375 1.203125 340.609375 C 1.085938 340.609375 0.992188 340.703125 0.992188 340.820312 C 0.992188 340.9375 1.085938 341.03125 1.203125 341.03125 C 1.320312 341.03125 1.414062 340.9375 1.414062 340.820312 Z M 1.414062 340.820312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 1.992188 339.46875 C 1.992188 339.351562 1.898438 339.257812 1.78125 339.257812 C 1.664062 339.257812 1.570312 339.351562 1.570312 339.46875 C 1.570312 339.585938 1.664062 339.679688 1.78125 339.679688 C 1.898438 339.679688 1.992188 339.585938 1.992188 339.46875 Z M 1.992188 339.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 1.0625 339.363281 C 1.0625 339.246094 0.96875 339.152344 0.851562 339.152344 C 0.734375 339.152344 0.640625 339.246094 0.640625 339.363281 C 0.640625 339.480469 0.734375 339.574219 0.851562 339.574219 C 0.96875 339.574219 1.0625 339.480469 1.0625 339.363281 Z M 1.0625 339.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0.417969 333.78125 C 0.417969 333.664062 0.324219 333.570312 0.207031 333.570312 C 0.0898438 333.570312 -0.00390625 333.664062 -0.00390625 333.78125 C -0.00390625 333.898438 0.0898438 333.992188 0.207031 333.992188 C 0.324219 333.992188 0.417969 333.898438 0.417969 333.78125 Z M 0.417969 333.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0.945312 336.148438 C 0.945312 336.03125 0.851562 335.9375 0.734375 335.9375 C 0.617188 335.9375 0.523438 336.03125 0.523438 336.148438 C 0.523438 336.265625 0.617188 336.359375 0.734375 336.359375 C 0.851562 336.359375 0.945312 336.265625 0.945312 336.148438 Z M 0.945312 336.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0.679688 330.195312 C 0.679688 330.078125 0.585938 329.984375 0.46875 329.984375 C 0.351562 329.984375 0.257812 330.078125 0.257812 330.195312 C 0.257812 330.3125 0.351562 330.40625 0.46875 330.40625 C 0.585938 330.40625 0.679688 330.3125 0.679688 330.195312 Z M 0.679688 330.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0.617188 332.105469 C 0.617188 331.988281 0.523438 331.894531 0.40625 331.894531 C 0.289062 331.894531 0.195312 331.988281 0.195312 332.105469 C 0.195312 332.222656 0.289062 332.316406 0.40625 332.316406 C 0.523438 332.316406 0.617188 332.222656 0.617188 332.105469 Z M 0.617188 332.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 4.222656 331.410156 C 4.222656 331.292969 4.128906 331.199219 4.011719 331.199219 C 3.894531 331.199219 3.800781 331.292969 3.800781 331.410156 C 3.800781 331.527344 3.894531 331.621094 4.011719 331.621094 C 4.128906 331.621094 4.222656 331.527344 4.222656 331.410156 Z M 4.222656 331.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 7.042969 331.839844 C 7.042969 331.722656 6.949219 331.628906 6.832031 331.628906 C 6.714844 331.628906 6.621094 331.722656 6.621094 331.839844 C 6.621094 331.957031 6.714844 332.050781 6.832031 332.050781 C 6.949219 332.050781 7.042969 331.957031 7.042969 331.839844 Z M 7.042969 331.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 2.628906 330.785156 C 2.628906 330.667969 2.535156 330.574219 2.417969 330.574219 C 2.300781 330.574219 2.207031 330.667969 2.207031 330.785156 C 2.207031 330.902344 2.300781 330.996094 2.417969 330.996094 C 2.535156 330.996094 2.628906 330.902344 2.628906 330.785156 Z M 2.628906 330.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0.710938 332.289062 C 0.710938 332.171875 0.617188 332.078125 0.5 332.078125 C 0.382812 332.078125 0.289062 332.171875 0.289062 332.289062 C 0.289062 332.40625 0.382812 332.5 0.5 332.5 C 0.617188 332.5 0.710938 332.40625 0.710938 332.289062 Z M 0.710938 332.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 2.808594 332.226562 C 2.808594 332.109375 2.714844 332.015625 2.597656 332.015625 C 2.480469 332.015625 2.386719 332.109375 2.386719 332.226562 C 2.386719 332.34375 2.480469 332.4375 2.597656 332.4375 C 2.714844 332.4375 2.808594 332.34375 2.808594 332.226562 Z M 2.808594 332.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.359375 335.34375 C 8.359375 335.226562 8.265625 335.132812 8.148438 335.132812 C 8.03125 335.132812 7.9375 335.226562 7.9375 335.34375 C 7.9375 335.460938 8.03125 335.554688 8.148438 335.554688 C 8.265625 335.554688 8.359375 335.460938 8.359375 335.34375 Z M 8.359375 335.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.132812 336.082031 C 8.132812 335.964844 8.039062 335.871094 7.921875 335.871094 C 7.804688 335.871094 7.710938 335.964844 7.710938 336.082031 C 7.710938 336.199219 7.804688 336.292969 7.921875 336.292969 C 8.039062 336.292969 8.132812 336.199219 8.132812 336.082031 Z M 8.132812 336.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 11.6875 336.933594 C 11.6875 336.816406 11.59375 336.722656 11.476562 336.722656 C 11.359375 336.722656 11.265625 336.816406 11.265625 336.933594 C 11.265625 337.050781 11.359375 337.144531 11.476562 337.144531 C 11.59375 337.144531 11.6875 337.050781 11.6875 336.933594 Z M 11.6875 336.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 9.730469 336.972656 C 9.730469 336.855469 9.636719 336.761719 9.519531 336.761719 C 9.402344 336.761719 9.308594 336.855469 9.308594 336.972656 C 9.308594 337.089844 9.402344 337.183594 9.519531 337.183594 C 9.636719 337.183594 9.730469 337.089844 9.730469 336.972656 Z M 9.730469 336.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 12.714844 336.902344 C 12.714844 336.785156 12.621094 336.691406 12.503906 336.691406 C 12.386719 336.691406 12.292969 336.785156 12.292969 336.902344 C 12.292969 337.019531 12.386719 337.113281 12.503906 337.113281 C 12.621094 337.113281 12.714844 337.019531 12.714844 336.902344 Z M 12.714844 336.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 10.480469 336.417969 C 10.480469 336.300781 10.386719 336.207031 10.269531 336.207031 C 10.152344 336.207031 10.058594 336.300781 10.058594 336.417969 C 10.058594 336.535156 10.152344 336.628906 10.269531 336.628906 C 10.386719 336.628906 10.480469 336.535156 10.480469 336.417969 Z M 10.480469 336.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 12.304688 337.839844 C 12.304688 337.722656 12.210938 337.628906 12.09375 337.628906 C 11.976562 337.628906 11.882812 337.722656 11.882812 337.839844 C 11.882812 337.957031 11.976562 338.050781 12.09375 338.050781 C 12.210938 338.050781 12.304688 337.957031 12.304688 337.839844 Z M 12.304688 337.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.210938 338.714844 C 8.210938 338.597656 8.117188 338.503906 8 338.503906 C 7.882812 338.503906 7.789062 338.597656 7.789062 338.714844 C 7.789062 338.832031 7.882812 338.925781 8 338.925781 C 8.117188 338.925781 8.210938 338.832031 8.210938 338.714844 Z M 8.210938 338.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 10.109375 347.375 C 10.109375 347.257812 10.015625 347.164062 9.898438 347.164062 C 9.78125 347.164062 9.6875 347.257812 9.6875 347.375 C 9.6875 347.492188 9.78125 347.585938 9.898438 347.585938 C 10.015625 347.585938 10.109375 347.492188 10.109375 347.375 Z M 10.109375 347.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.011719 347.648438 C 8.011719 347.53125 7.917969 347.4375 7.800781 347.4375 C 7.683594 347.4375 7.589844 347.53125 7.589844 347.648438 C 7.589844 347.765625 7.683594 347.859375 7.800781 347.859375 C 7.917969 347.859375 8.011719 347.765625 8.011719 347.648438 Z M 8.011719 347.648438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 10.152344 348.800781 C 10.152344 348.683594 10.058594 348.589844 9.941406 348.589844 C 9.824219 348.589844 9.730469 348.683594 9.730469 348.800781 C 9.730469 348.917969 9.824219 349.011719 9.941406 349.011719 C 10.058594 349.011719 10.152344 348.917969 10.152344 348.800781 Z M 10.152344 348.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 9.925781 348.957031 C 9.925781 348.839844 9.832031 348.746094 9.714844 348.746094 C 9.597656 348.746094 9.503906 348.839844 9.503906 348.957031 C 9.503906 349.074219 9.597656 349.167969 9.714844 349.167969 C 9.832031 349.167969 9.925781 349.074219 9.925781 348.957031 Z M 9.925781 348.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 10.699219 351.117188 C 10.699219 351 10.605469 350.90625 10.488281 350.90625 C 10.371094 350.90625 10.277344 351 10.277344 351.117188 C 10.277344 351.234375 10.371094 351.328125 10.488281 351.328125 C 10.605469 351.328125 10.699219 351.234375 10.699219 351.117188 Z M 10.699219 351.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.421875 354.160156 C 13.421875 354.042969 13.328125 353.949219 13.210938 353.949219 C 13.09375 353.949219 13 354.042969 13 354.160156 C 13 354.277344 13.09375 354.371094 13.210938 354.371094 C 13.328125 354.371094 13.421875 354.277344 13.421875 354.160156 Z M 13.421875 354.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 12.109375 352.351562 C 12.109375 352.234375 12.015625 352.140625 11.898438 352.140625 C 11.78125 352.140625 11.6875 352.234375 11.6875 352.351562 C 11.6875 352.46875 11.78125 352.5625 11.898438 352.5625 C 12.015625 352.5625 12.109375 352.46875 12.109375 352.351562 Z M 12.109375 352.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.390625 354.210938 C 8.390625 354.09375 8.296875 354 8.179688 354 C 8.0625 354 7.96875 354.09375 7.96875 354.210938 C 7.96875 354.328125 8.0625 354.421875 8.179688 354.421875 C 8.296875 354.421875 8.390625 354.328125 8.390625 354.210938 Z M 8.390625 354.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.363281 353.640625 C 8.363281 353.523438 8.269531 353.429688 8.152344 353.429688 C 8.035156 353.429688 7.941406 353.523438 7.941406 353.640625 C 7.941406 353.757812 8.035156 353.851562 8.152344 353.851562 C 8.269531 353.851562 8.363281 353.757812 8.363281 353.640625 Z M 8.363281 353.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 9.257812 356.492188 C 9.257812 356.375 9.164062 356.28125 9.046875 356.28125 C 8.929688 356.28125 8.835938 356.375 8.835938 356.492188 C 8.835938 356.609375 8.929688 356.703125 9.046875 356.703125 C 9.164062 356.703125 9.257812 356.609375 9.257812 356.492188 Z M 9.257812 356.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 10.90625 355.203125 C 10.90625 355.085938 10.8125 354.992188 10.695312 354.992188 C 10.578125 354.992188 10.484375 355.085938 10.484375 355.203125 C 10.484375 355.320312 10.578125 355.414062 10.695312 355.414062 C 10.8125 355.414062 10.90625 355.320312 10.90625 355.203125 Z M 10.90625 355.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 10.703125 356.886719 C 10.703125 356.769531 10.609375 356.675781 10.492188 356.675781 C 10.375 356.675781 10.28125 356.769531 10.28125 356.886719 C 10.28125 357.003906 10.375 357.097656 10.492188 357.097656 C 10.609375 357.097656 10.703125 357.003906 10.703125 356.886719 Z M 10.703125 356.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.347656 355.957031 C 8.347656 355.839844 8.253906 355.746094 8.136719 355.746094 C 8.019531 355.746094 7.925781 355.839844 7.925781 355.957031 C 7.925781 356.074219 8.019531 356.167969 8.136719 356.167969 C 8.253906 356.167969 8.347656 356.074219 8.347656 355.957031 Z M 8.347656 355.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 9.167969 356.125 C 9.167969 356.007812 9.074219 355.914062 8.957031 355.914062 C 8.839844 355.914062 8.746094 356.007812 8.746094 356.125 C 8.746094 356.242188 8.839844 356.335938 8.957031 356.335938 C 9.074219 356.335938 9.167969 356.242188 9.167969 356.125 Z M 9.167969 356.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.226562 356.855469 C 8.226562 356.738281 8.132812 356.644531 8.015625 356.644531 C 7.898438 356.644531 7.804688 356.738281 7.804688 356.855469 C 7.804688 356.972656 7.898438 357.066406 8.015625 357.066406 C 8.132812 357.066406 8.226562 356.972656 8.226562 356.855469 Z M 8.226562 356.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.210938 357.699219 C 8.210938 357.582031 8.117188 357.488281 8 357.488281 C 7.882812 357.488281 7.789062 357.582031 7.789062 357.699219 C 7.789062 357.816406 7.882812 357.910156 8 357.910156 C 8.117188 357.910156 8.210938 357.816406 8.210938 357.699219 Z M 8.210938 357.699219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 3.265625 357.707031 C 3.265625 357.589844 3.171875 357.496094 3.054688 357.496094 C 2.9375 357.496094 2.84375 357.589844 2.84375 357.707031 C 2.84375 357.824219 2.9375 357.917969 3.054688 357.917969 C 3.171875 357.917969 3.265625 357.824219 3.265625 357.707031 Z M 3.265625 357.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 4.683594 356.613281 C 4.683594 356.496094 4.589844 356.402344 4.472656 356.402344 C 4.355469 356.402344 4.261719 356.496094 4.261719 356.613281 C 4.261719 356.730469 4.355469 356.824219 4.472656 356.824219 C 4.589844 356.824219 4.683594 356.730469 4.683594 356.613281 Z M 4.683594 356.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 5.332031 361.960938 C 5.332031 361.84375 5.238281 361.75 5.121094 361.75 C 5.003906 361.75 4.910156 361.84375 4.910156 361.960938 C 4.910156 362.078125 5.003906 362.171875 5.121094 362.171875 C 5.238281 362.171875 5.332031 362.078125 5.332031 361.960938 Z M 5.332031 361.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 5.679688 360.554688 C 5.679688 360.4375 5.585938 360.34375 5.46875 360.34375 C 5.351562 360.34375 5.257812 360.4375 5.257812 360.554688 C 5.257812 360.671875 5.351562 360.765625 5.46875 360.765625 C 5.585938 360.765625 5.679688 360.671875 5.679688 360.554688 Z M 5.679688 360.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 6.800781 363.179688 C 6.800781 363.0625 6.707031 362.96875 6.589844 362.96875 C 6.472656 362.96875 6.378906 363.0625 6.378906 363.179688 C 6.378906 363.296875 6.472656 363.390625 6.589844 363.390625 C 6.707031 363.390625 6.800781 363.296875 6.800781 363.179688 Z M 6.800781 363.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 9.605469 364.632812 C 9.605469 364.515625 9.511719 364.421875 9.394531 364.421875 C 9.277344 364.421875 9.183594 364.515625 9.183594 364.632812 C 9.183594 364.75 9.277344 364.84375 9.394531 364.84375 C 9.511719 364.84375 9.605469 364.75 9.605469 364.632812 Z M 9.605469 364.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 11.949219 363.539062 C 11.949219 363.421875 11.855469 363.328125 11.738281 363.328125 C 11.621094 363.328125 11.527344 363.421875 11.527344 363.539062 C 11.527344 363.65625 11.621094 363.75 11.738281 363.75 C 11.855469 363.75 11.949219 363.65625 11.949219 363.539062 Z M 11.949219 363.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 12.453125 365.867188 C 12.453125 365.75 12.359375 365.65625 12.242188 365.65625 C 12.125 365.65625 12.03125 365.75 12.03125 365.867188 C 12.03125 365.984375 12.125 366.078125 12.242188 366.078125 C 12.359375 366.078125 12.453125 365.984375 12.453125 365.867188 Z M 12.453125 365.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 9.238281 363.515625 C 9.238281 363.398438 9.144531 363.304688 9.027344 363.304688 C 8.910156 363.304688 8.816406 363.398438 8.816406 363.515625 C 8.816406 363.632812 8.910156 363.726562 9.027344 363.726562 C 9.144531 363.726562 9.238281 363.632812 9.238281 363.515625 Z M 9.238281 363.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.140625 361.234375 C 14.140625 361.117188 14.046875 361.023438 13.929688 361.023438 C 13.8125 361.023438 13.71875 361.117188 13.71875 361.234375 C 13.71875 361.351562 13.8125 361.445312 13.929688 361.445312 C 14.046875 361.445312 14.140625 361.351562 14.140625 361.234375 Z M 14.140625 361.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 12.886719 359.414062 C 12.886719 359.296875 12.792969 359.203125 12.675781 359.203125 C 12.558594 359.203125 12.464844 359.296875 12.464844 359.414062 C 12.464844 359.53125 12.558594 359.625 12.675781 359.625 C 12.792969 359.625 12.886719 359.53125 12.886719 359.414062 Z M 12.886719 359.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 12.492188 362.4375 C 12.492188 362.320312 12.398438 362.226562 12.28125 362.226562 C 12.164062 362.226562 12.070312 362.320312 12.070312 362.4375 C 12.070312 362.554688 12.164062 362.648438 12.28125 362.648438 C 12.398438 362.648438 12.492188 362.554688 12.492188 362.4375 Z M 12.492188 362.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 16.519531 360.09375 C 16.519531 359.976562 16.425781 359.882812 16.308594 359.882812 C 16.191406 359.882812 16.097656 359.976562 16.097656 360.09375 C 16.097656 360.210938 16.191406 360.304688 16.308594 360.304688 C 16.425781 360.304688 16.519531 360.210938 16.519531 360.09375 Z M 16.519531 360.09375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 17.328125 359.734375 C 17.328125 359.617188 17.234375 359.523438 17.117188 359.523438 C 17 359.523438 16.90625 359.617188 16.90625 359.734375 C 16.90625 359.851562 17 359.945312 17.117188 359.945312 C 17.234375 359.945312 17.328125 359.851562 17.328125 359.734375 Z M 17.328125 359.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 16.292969 361.722656 C 16.292969 361.605469 16.199219 361.511719 16.082031 361.511719 C 15.964844 361.511719 15.871094 361.605469 15.871094 361.722656 C 15.871094 361.839844 15.964844 361.933594 16.082031 361.933594 C 16.199219 361.933594 16.292969 361.839844 16.292969 361.722656 Z M 16.292969 361.722656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 18.878906 359.539062 C 18.878906 359.421875 18.785156 359.328125 18.667969 359.328125 C 18.550781 359.328125 18.457031 359.421875 18.457031 359.539062 C 18.457031 359.65625 18.550781 359.75 18.667969 359.75 C 18.785156 359.75 18.878906 359.65625 18.878906 359.539062 Z M 18.878906 359.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 17.097656 358.222656 C 17.097656 358.105469 17.003906 358.011719 16.886719 358.011719 C 16.769531 358.011719 16.675781 358.105469 16.675781 358.222656 C 16.675781 358.339844 16.769531 358.433594 16.886719 358.433594 C 17.003906 358.433594 17.097656 358.339844 17.097656 358.222656 Z M 17.097656 358.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 15.535156 355.625 C 15.535156 355.507812 15.441406 355.414062 15.324219 355.414062 C 15.207031 355.414062 15.113281 355.507812 15.113281 355.625 C 15.113281 355.742188 15.207031 355.835938 15.324219 355.835938 C 15.441406 355.835938 15.535156 355.742188 15.535156 355.625 Z M 15.535156 355.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.1875 356.027344 C 13.1875 355.910156 13.09375 355.816406 12.976562 355.816406 C 12.859375 355.816406 12.765625 355.910156 12.765625 356.027344 C 12.765625 356.144531 12.859375 356.238281 12.976562 356.238281 C 13.09375 356.238281 13.1875 356.144531 13.1875 356.027344 Z M 13.1875 356.027344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 17.058594 358.15625 C 17.058594 358.039062 16.964844 357.945312 16.847656 357.945312 C 16.730469 357.945312 16.636719 358.039062 16.636719 358.15625 C 16.636719 358.273438 16.730469 358.367188 16.847656 358.367188 C 16.964844 358.367188 17.058594 358.273438 17.058594 358.15625 Z M 17.058594 358.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 12.800781 356.539062 C 12.800781 356.421875 12.707031 356.328125 12.589844 356.328125 C 12.472656 356.328125 12.378906 356.421875 12.378906 356.539062 C 12.378906 356.65625 12.472656 356.75 12.589844 356.75 C 12.707031 356.75 12.800781 356.65625 12.800781 356.539062 Z M 12.800781 356.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 12.199219 354.703125 C 12.199219 354.585938 12.105469 354.492188 11.988281 354.492188 C 11.871094 354.492188 11.777344 354.585938 11.777344 354.703125 C 11.777344 354.820312 11.871094 354.914062 11.988281 354.914062 C 12.105469 354.914062 12.199219 354.820312 12.199219 354.703125 Z M 12.199219 354.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.875 356.011719 C 8.875 355.894531 8.78125 355.800781 8.664062 355.800781 C 8.546875 355.800781 8.453125 355.894531 8.453125 356.011719 C 8.453125 356.128906 8.546875 356.222656 8.664062 356.222656 C 8.78125 356.222656 8.875 356.128906 8.875 356.011719 Z M 8.875 356.011719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 11.976562 358.078125 C 11.976562 357.960938 11.882812 357.867188 11.765625 357.867188 C 11.648438 357.867188 11.554688 357.960938 11.554688 358.078125 C 11.554688 358.195312 11.648438 358.289062 11.765625 358.289062 C 11.882812 358.289062 11.976562 358.195312 11.976562 358.078125 Z M 11.976562 358.078125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 9.488281 358.273438 C 9.488281 358.15625 9.394531 358.0625 9.277344 358.0625 C 9.160156 358.0625 9.066406 358.15625 9.066406 358.273438 C 9.066406 358.390625 9.160156 358.484375 9.277344 358.484375 C 9.394531 358.484375 9.488281 358.390625 9.488281 358.273438 Z M 9.488281 358.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 7.800781 355.277344 C 7.800781 355.160156 7.707031 355.066406 7.589844 355.066406 C 7.472656 355.066406 7.378906 355.160156 7.378906 355.277344 C 7.378906 355.394531 7.472656 355.488281 7.589844 355.488281 C 7.707031 355.488281 7.800781 355.394531 7.800781 355.277344 Z M 7.800781 355.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 9.402344 356.957031 C 9.402344 356.839844 9.308594 356.746094 9.191406 356.746094 C 9.074219 356.746094 8.980469 356.839844 8.980469 356.957031 C 8.980469 357.074219 9.074219 357.167969 9.191406 357.167969 C 9.308594 357.167969 9.402344 357.074219 9.402344 356.957031 Z M 9.402344 356.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.097656 361.367188 C 8.097656 361.25 8.003906 361.15625 7.886719 361.15625 C 7.769531 361.15625 7.675781 361.25 7.675781 361.367188 C 7.675781 361.484375 7.769531 361.578125 7.886719 361.578125 C 8.003906 361.578125 8.097656 361.484375 8.097656 361.367188 Z M 8.097656 361.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 7.421875 360.953125 C 7.421875 360.835938 7.328125 360.742188 7.210938 360.742188 C 7.09375 360.742188 7 360.835938 7 360.953125 C 7 361.070312 7.09375 361.164062 7.210938 361.164062 C 7.328125 361.164062 7.421875 361.070312 7.421875 360.953125 Z M 7.421875 360.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.472656 360.355469 C 8.472656 360.238281 8.378906 360.144531 8.261719 360.144531 C 8.144531 360.144531 8.050781 360.238281 8.050781 360.355469 C 8.050781 360.472656 8.144531 360.566406 8.261719 360.566406 C 8.378906 360.566406 8.472656 360.472656 8.472656 360.355469 Z M 8.472656 360.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 10.078125 364.410156 C 10.078125 364.292969 9.984375 364.199219 9.867188 364.199219 C 9.75 364.199219 9.65625 364.292969 9.65625 364.410156 C 9.65625 364.527344 9.75 364.621094 9.867188 364.621094 C 9.984375 364.621094 10.078125 364.527344 10.078125 364.410156 Z M 10.078125 364.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 12.394531 362.34375 C 12.394531 362.226562 12.300781 362.132812 12.183594 362.132812 C 12.066406 362.132812 11.972656 362.226562 11.972656 362.34375 C 11.972656 362.460938 12.066406 362.554688 12.183594 362.554688 C 12.300781 362.554688 12.394531 362.460938 12.394531 362.34375 Z M 12.394531 362.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 11.453125 360.980469 C 11.453125 360.863281 11.359375 360.769531 11.242188 360.769531 C 11.125 360.769531 11.03125 360.863281 11.03125 360.980469 C 11.03125 361.097656 11.125 361.191406 11.242188 361.191406 C 11.359375 361.191406 11.453125 361.097656 11.453125 360.980469 Z M 11.453125 360.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.667969 360.867188 C 13.667969 360.75 13.574219 360.65625 13.457031 360.65625 C 13.339844 360.65625 13.246094 360.75 13.246094 360.867188 C 13.246094 360.984375 13.339844 361.078125 13.457031 361.078125 C 13.574219 361.078125 13.667969 360.984375 13.667969 360.867188 Z M 13.667969 360.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 15.722656 362.527344 C 15.722656 362.410156 15.628906 362.316406 15.511719 362.316406 C 15.394531 362.316406 15.300781 362.410156 15.300781 362.527344 C 15.300781 362.644531 15.394531 362.738281 15.511719 362.738281 C 15.628906 362.738281 15.722656 362.644531 15.722656 362.527344 Z M 15.722656 362.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.34375 364.296875 C 13.34375 364.179688 13.25 364.085938 13.132812 364.085938 C 13.015625 364.085938 12.921875 364.179688 12.921875 364.296875 C 12.921875 364.414062 13.015625 364.507812 13.132812 364.507812 C 13.25 364.507812 13.34375 364.414062 13.34375 364.296875 Z M 13.34375 364.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.519531 363.25 C 14.519531 363.132812 14.425781 363.039062 14.308594 363.039062 C 14.191406 363.039062 14.097656 363.132812 14.097656 363.25 C 14.097656 363.367188 14.191406 363.460938 14.308594 363.460938 C 14.425781 363.460938 14.519531 363.367188 14.519531 363.25 Z M 14.519531 363.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.757812 363.355469 C 13.757812 363.238281 13.664062 363.144531 13.546875 363.144531 C 13.429688 363.144531 13.335938 363.238281 13.335938 363.355469 C 13.335938 363.472656 13.429688 363.566406 13.546875 363.566406 C 13.664062 363.566406 13.757812 363.472656 13.757812 363.355469 Z M 13.757812 363.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 12.703125 364.636719 C 12.703125 364.519531 12.609375 364.425781 12.492188 364.425781 C 12.375 364.425781 12.28125 364.519531 12.28125 364.636719 C 12.28125 364.753906 12.375 364.847656 12.492188 364.847656 C 12.609375 364.847656 12.703125 364.753906 12.703125 364.636719 Z M 12.703125 364.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.066406 363.152344 C 8.066406 363.035156 7.972656 362.941406 7.855469 362.941406 C 7.738281 362.941406 7.644531 363.035156 7.644531 363.152344 C 7.644531 363.269531 7.738281 363.363281 7.855469 363.363281 C 7.972656 363.363281 8.066406 363.269531 8.066406 363.152344 Z M 8.066406 363.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 6.230469 359.5625 C 6.230469 359.445312 6.136719 359.351562 6.019531 359.351562 C 5.902344 359.351562 5.808594 359.445312 5.808594 359.5625 C 5.808594 359.679688 5.902344 359.773438 6.019531 359.773438 C 6.136719 359.773438 6.230469 359.679688 6.230469 359.5625 Z M 6.230469 359.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 4.390625 359.742188 C 4.390625 359.625 4.296875 359.53125 4.179688 359.53125 C 4.0625 359.53125 3.96875 359.625 3.96875 359.742188 C 3.96875 359.859375 4.0625 359.953125 4.179688 359.953125 C 4.296875 359.953125 4.390625 359.859375 4.390625 359.742188 Z M 4.390625 359.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 3.101562 361.527344 C 3.101562 361.410156 3.007812 361.316406 2.890625 361.316406 C 2.773438 361.316406 2.679688 361.410156 2.679688 361.527344 C 2.679688 361.644531 2.773438 361.738281 2.890625 361.738281 C 3.007812 361.738281 3.101562 361.644531 3.101562 361.527344 Z M 3.101562 361.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 3.503906 357.476562 C 3.503906 357.359375 3.410156 357.265625 3.292969 357.265625 C 3.175781 357.265625 3.082031 357.359375 3.082031 357.476562 C 3.082031 357.59375 3.175781 357.6875 3.292969 357.6875 C 3.410156 357.6875 3.503906 357.59375 3.503906 357.476562 Z M 3.503906 357.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 4.40625 355.425781 C 4.40625 355.308594 4.3125 355.214844 4.195312 355.214844 C 4.078125 355.214844 3.984375 355.308594 3.984375 355.425781 C 3.984375 355.542969 4.078125 355.636719 4.195312 355.636719 C 4.3125 355.636719 4.40625 355.542969 4.40625 355.425781 Z M 4.40625 355.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 3.742188 352.976562 C 3.742188 352.859375 3.648438 352.765625 3.53125 352.765625 C 3.414062 352.765625 3.320312 352.859375 3.320312 352.976562 C 3.320312 353.09375 3.414062 353.1875 3.53125 353.1875 C 3.648438 353.1875 3.742188 353.09375 3.742188 352.976562 Z M 3.742188 352.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 3.871094 354.3125 C 3.871094 354.195312 3.777344 354.101562 3.660156 354.101562 C 3.542969 354.101562 3.449219 354.195312 3.449219 354.3125 C 3.449219 354.429688 3.542969 354.523438 3.660156 354.523438 C 3.777344 354.523438 3.871094 354.429688 3.871094 354.3125 Z M 3.871094 354.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.121094 354.902344 C 8.121094 354.785156 8.027344 354.691406 7.910156 354.691406 C 7.792969 354.691406 7.699219 354.785156 7.699219 354.902344 C 7.699219 355.019531 7.792969 355.113281 7.910156 355.113281 C 8.027344 355.113281 8.121094 355.019531 8.121094 354.902344 Z M 8.121094 354.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.132812 357.480469 C 8.132812 357.363281 8.039062 357.269531 7.921875 357.269531 C 7.804688 357.269531 7.710938 357.363281 7.710938 357.480469 C 7.710938 357.597656 7.804688 357.691406 7.921875 357.691406 C 8.039062 357.691406 8.132812 357.597656 8.132812 357.480469 Z M 8.132812 357.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 11.535156 357.042969 C 11.535156 356.925781 11.441406 356.832031 11.324219 356.832031 C 11.207031 356.832031 11.113281 356.925781 11.113281 357.042969 C 11.113281 357.160156 11.207031 357.253906 11.324219 357.253906 C 11.441406 357.253906 11.535156 357.160156 11.535156 357.042969 Z M 11.535156 357.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 15.382812 358.96875 C 15.382812 358.851562 15.289062 358.757812 15.171875 358.757812 C 15.054688 358.757812 14.960938 358.851562 14.960938 358.96875 C 14.960938 359.085938 15.054688 359.179688 15.171875 359.179688 C 15.289062 359.179688 15.382812 359.085938 15.382812 358.96875 Z M 15.382812 358.96875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 17.296875 360.6875 C 17.296875 360.570312 17.203125 360.476562 17.085938 360.476562 C 16.96875 360.476562 16.875 360.570312 16.875 360.6875 C 16.875 360.804688 16.96875 360.898438 17.085938 360.898438 C 17.203125 360.898438 17.296875 360.804688 17.296875 360.6875 Z M 17.296875 360.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.964844 364.242188 C 14.964844 364.125 14.871094 364.03125 14.753906 364.03125 C 14.636719 364.03125 14.542969 364.125 14.542969 364.242188 C 14.542969 364.359375 14.636719 364.453125 14.753906 364.453125 C 14.871094 364.453125 14.964844 364.359375 14.964844 364.242188 Z M 14.964844 364.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 19.207031 365.125 C 19.207031 365.007812 19.113281 364.914062 18.996094 364.914062 C 18.878906 364.914062 18.785156 365.007812 18.785156 365.125 C 18.785156 365.242188 18.878906 365.335938 18.996094 365.335938 C 19.113281 365.335938 19.207031 365.242188 19.207031 365.125 Z M 19.207031 365.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 17.554688 365.171875 C 17.554688 365.054688 17.460938 364.960938 17.34375 364.960938 C 17.226562 364.960938 17.132812 365.054688 17.132812 365.171875 C 17.132812 365.289062 17.226562 365.382812 17.34375 365.382812 C 17.460938 365.382812 17.554688 365.289062 17.554688 365.171875 Z M 17.554688 365.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 20.429688 365.285156 C 20.429688 365.167969 20.335938 365.074219 20.21875 365.074219 C 20.101562 365.074219 20.007812 365.167969 20.007812 365.285156 C 20.007812 365.402344 20.101562 365.496094 20.21875 365.496094 C 20.335938 365.496094 20.429688 365.402344 20.429688 365.285156 Z M 20.429688 365.285156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 18.734375 364.789062 C 18.734375 364.671875 18.640625 364.578125 18.523438 364.578125 C 18.40625 364.578125 18.3125 364.671875 18.3125 364.789062 C 18.3125 364.90625 18.40625 365 18.523438 365 C 18.640625 365 18.734375 364.90625 18.734375 364.789062 Z M 18.734375 364.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 19.582031 363.621094 C 19.582031 363.503906 19.488281 363.410156 19.371094 363.410156 C 19.253906 363.410156 19.160156 363.503906 19.160156 363.621094 C 19.160156 363.738281 19.253906 363.832031 19.371094 363.832031 C 19.488281 363.832031 19.582031 363.738281 19.582031 363.621094 Z M 19.582031 363.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 18.800781 358.734375 C 18.800781 358.617188 18.707031 358.523438 18.589844 358.523438 C 18.472656 358.523438 18.378906 358.617188 18.378906 358.734375 C 18.378906 358.851562 18.472656 358.945312 18.589844 358.945312 C 18.707031 358.945312 18.800781 358.851562 18.800781 358.734375 Z M 18.800781 358.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 17.652344 356.296875 C 17.652344 356.179688 17.558594 356.085938 17.441406 356.085938 C 17.324219 356.085938 17.230469 356.179688 17.230469 356.296875 C 17.230469 356.414062 17.324219 356.507812 17.441406 356.507812 C 17.558594 356.507812 17.652344 356.414062 17.652344 356.296875 Z M 17.652344 356.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 19.019531 360.214844 C 19.019531 360.097656 18.925781 360.003906 18.808594 360.003906 C 18.691406 360.003906 18.597656 360.097656 18.597656 360.214844 C 18.597656 360.332031 18.691406 360.425781 18.808594 360.425781 C 18.925781 360.425781 19.019531 360.332031 19.019531 360.214844 Z M 19.019531 360.214844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 19.425781 360.832031 C 19.425781 360.714844 19.332031 360.621094 19.214844 360.621094 C 19.097656 360.621094 19.003906 360.714844 19.003906 360.832031 C 19.003906 360.949219 19.097656 361.042969 19.214844 361.042969 C 19.332031 361.042969 19.425781 360.949219 19.425781 360.832031 Z M 19.425781 360.832031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 19.265625 360.632812 C 19.265625 360.515625 19.171875 360.421875 19.054688 360.421875 C 18.9375 360.421875 18.84375 360.515625 18.84375 360.632812 C 18.84375 360.75 18.9375 360.84375 19.054688 360.84375 C 19.171875 360.84375 19.265625 360.75 19.265625 360.632812 Z M 19.265625 360.632812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 20.570312 363.972656 C 20.570312 363.855469 20.476562 363.761719 20.359375 363.761719 C 20.242188 363.761719 20.148438 363.855469 20.148438 363.972656 C 20.148438 364.089844 20.242188 364.183594 20.359375 364.183594 C 20.476562 364.183594 20.570312 364.089844 20.570312 363.972656 Z M 20.570312 363.972656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 16.203125 360.667969 C 16.203125 360.550781 16.109375 360.457031 15.992188 360.457031 C 15.875 360.457031 15.78125 360.550781 15.78125 360.667969 C 15.78125 360.785156 15.875 360.878906 15.992188 360.878906 C 16.109375 360.878906 16.203125 360.785156 16.203125 360.667969 Z M 16.203125 360.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.5625 358.039062 C 13.5625 357.921875 13.46875 357.828125 13.351562 357.828125 C 13.234375 357.828125 13.140625 357.921875 13.140625 358.039062 C 13.140625 358.15625 13.234375 358.25 13.351562 358.25 C 13.46875 358.25 13.5625 358.15625 13.5625 358.039062 Z M 13.5625 358.039062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 15.035156 357.203125 C 15.035156 357.085938 14.941406 356.992188 14.824219 356.992188 C 14.707031 356.992188 14.613281 357.085938 14.613281 357.203125 C 14.613281 357.320312 14.707031 357.414062 14.824219 357.414062 C 14.941406 357.414062 15.035156 357.320312 15.035156 357.203125 Z M 15.035156 357.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.378906 356.960938 C 14.378906 356.84375 14.285156 356.75 14.167969 356.75 C 14.050781 356.75 13.957031 356.84375 13.957031 356.960938 C 13.957031 357.078125 14.050781 357.171875 14.167969 357.171875 C 14.285156 357.171875 14.378906 357.078125 14.378906 356.960938 Z M 14.378906 356.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 15.855469 357.90625 C 15.855469 357.789062 15.761719 357.695312 15.644531 357.695312 C 15.527344 357.695312 15.433594 357.789062 15.433594 357.90625 C 15.433594 358.023438 15.527344 358.117188 15.644531 358.117188 C 15.761719 358.117188 15.855469 358.023438 15.855469 357.90625 Z M 15.855469 357.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 17.777344 359.8125 C 17.777344 359.695312 17.683594 359.601562 17.566406 359.601562 C 17.449219 359.601562 17.355469 359.695312 17.355469 359.8125 C 17.355469 359.929688 17.449219 360.023438 17.566406 360.023438 C 17.683594 360.023438 17.777344 359.929688 17.777344 359.8125 Z M 17.777344 359.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.980469 358.894531 C 22.980469 358.777344 22.886719 358.683594 22.769531 358.683594 C 22.652344 358.683594 22.558594 358.777344 22.558594 358.894531 C 22.558594 359.011719 22.652344 359.105469 22.769531 359.105469 C 22.886719 359.105469 22.980469 359.011719 22.980469 358.894531 Z M 22.980469 358.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.476562 358.511719 C 24.476562 358.394531 24.382812 358.300781 24.265625 358.300781 C 24.148438 358.300781 24.054688 358.394531 24.054688 358.511719 C 24.054688 358.628906 24.148438 358.722656 24.265625 358.722656 C 24.382812 358.722656 24.476562 358.628906 24.476562 358.511719 Z M 24.476562 358.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.910156 359.175781 C 24.910156 359.058594 24.816406 358.964844 24.699219 358.964844 C 24.582031 358.964844 24.488281 359.058594 24.488281 359.175781 C 24.488281 359.292969 24.582031 359.386719 24.699219 359.386719 C 24.816406 359.386719 24.910156 359.292969 24.910156 359.175781 Z M 24.910156 359.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.121094 354.808594 C 23.121094 354.691406 23.027344 354.597656 22.910156 354.597656 C 22.792969 354.597656 22.699219 354.691406 22.699219 354.808594 C 22.699219 354.925781 22.792969 355.019531 22.910156 355.019531 C 23.027344 355.019531 23.121094 354.925781 23.121094 354.808594 Z M 23.121094 354.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.042969 357.34375 C 26.042969 357.226562 25.949219 357.132812 25.832031 357.132812 C 25.714844 357.132812 25.621094 357.226562 25.621094 357.34375 C 25.621094 357.460938 25.714844 357.554688 25.832031 357.554688 C 25.949219 357.554688 26.042969 357.460938 26.042969 357.34375 Z M 26.042969 357.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.796875 357.199219 C 26.796875 357.082031 26.703125 356.988281 26.585938 356.988281 C 26.46875 356.988281 26.375 357.082031 26.375 357.199219 C 26.375 357.316406 26.46875 357.410156 26.585938 357.410156 C 26.703125 357.410156 26.796875 357.316406 26.796875 357.199219 Z M 26.796875 357.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.066406 355.789062 C 28.066406 355.671875 27.972656 355.578125 27.855469 355.578125 C 27.738281 355.578125 27.644531 355.671875 27.644531 355.789062 C 27.644531 355.90625 27.738281 356 27.855469 356 C 27.972656 356 28.066406 355.90625 28.066406 355.789062 Z M 28.066406 355.789062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.507812 354.136719 C 27.507812 354.019531 27.414062 353.925781 27.296875 353.925781 C 27.179688 353.925781 27.085938 354.019531 27.085938 354.136719 C 27.085938 354.253906 27.179688 354.347656 27.296875 354.347656 C 27.414062 354.347656 27.507812 354.253906 27.507812 354.136719 Z M 27.507812 354.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.449219 354.292969 C 27.449219 354.175781 27.355469 354.082031 27.238281 354.082031 C 27.121094 354.082031 27.027344 354.175781 27.027344 354.292969 C 27.027344 354.410156 27.121094 354.503906 27.238281 354.503906 C 27.355469 354.503906 27.449219 354.410156 27.449219 354.292969 Z M 27.449219 354.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.636719 353.9375 C 26.636719 353.820312 26.542969 353.726562 26.425781 353.726562 C 26.308594 353.726562 26.214844 353.820312 26.214844 353.9375 C 26.214844 354.054688 26.308594 354.148438 26.425781 354.148438 C 26.542969 354.148438 26.636719 354.054688 26.636719 353.9375 Z M 26.636719 353.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.671875 353.894531 C 25.671875 353.777344 25.578125 353.683594 25.460938 353.683594 C 25.34375 353.683594 25.25 353.777344 25.25 353.894531 C 25.25 354.011719 25.34375 354.105469 25.460938 354.105469 C 25.578125 354.105469 25.671875 354.011719 25.671875 353.894531 Z M 25.671875 353.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.289062 353.867188 C 23.289062 353.75 23.195312 353.65625 23.078125 353.65625 C 22.960938 353.65625 22.867188 353.75 22.867188 353.867188 C 22.867188 353.984375 22.960938 354.078125 23.078125 354.078125 C 23.195312 354.078125 23.289062 353.984375 23.289062 353.867188 Z M 23.289062 353.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.089844 355.917969 C 23.089844 355.800781 22.996094 355.707031 22.878906 355.707031 C 22.761719 355.707031 22.667969 355.800781 22.667969 355.917969 C 22.667969 356.035156 22.761719 356.128906 22.878906 356.128906 C 22.996094 356.128906 23.089844 356.035156 23.089844 355.917969 Z M 23.089844 355.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 20.613281 356.941406 C 20.613281 356.824219 20.519531 356.730469 20.402344 356.730469 C 20.285156 356.730469 20.191406 356.824219 20.191406 356.941406 C 20.191406 357.058594 20.285156 357.152344 20.402344 357.152344 C 20.519531 357.152344 20.613281 357.058594 20.613281 356.941406 Z M 20.613281 356.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 18.542969 353.683594 C 18.542969 353.566406 18.449219 353.472656 18.332031 353.472656 C 18.214844 353.472656 18.121094 353.566406 18.121094 353.683594 C 18.121094 353.800781 18.214844 353.894531 18.332031 353.894531 C 18.449219 353.894531 18.542969 353.800781 18.542969 353.683594 Z M 18.542969 353.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 18.796875 357.234375 C 18.796875 357.117188 18.703125 357.023438 18.585938 357.023438 C 18.46875 357.023438 18.375 357.117188 18.375 357.234375 C 18.375 357.351562 18.46875 357.445312 18.585938 357.445312 C 18.703125 357.445312 18.796875 357.351562 18.796875 357.234375 Z M 18.796875 357.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 19.175781 356.363281 C 19.175781 356.246094 19.082031 356.152344 18.964844 356.152344 C 18.847656 356.152344 18.753906 356.246094 18.753906 356.363281 C 18.753906 356.480469 18.847656 356.574219 18.964844 356.574219 C 19.082031 356.574219 19.175781 356.480469 19.175781 356.363281 Z M 19.175781 356.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 17.355469 357.03125 C 17.355469 356.914062 17.261719 356.820312 17.144531 356.820312 C 17.027344 356.820312 16.933594 356.914062 16.933594 357.03125 C 16.933594 357.148438 17.027344 357.242188 17.144531 357.242188 C 17.261719 357.242188 17.355469 357.148438 17.355469 357.03125 Z M 17.355469 357.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 15.304688 359.386719 C 15.304688 359.269531 15.210938 359.175781 15.09375 359.175781 C 14.976562 359.175781 14.882812 359.269531 14.882812 359.386719 C 14.882812 359.503906 14.976562 359.597656 15.09375 359.597656 C 15.210938 359.597656 15.304688 359.503906 15.304688 359.386719 Z M 15.304688 359.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 17.054688 365.140625 C 17.054688 365.023438 16.960938 364.929688 16.84375 364.929688 C 16.726562 364.929688 16.632812 365.023438 16.632812 365.140625 C 16.632812 365.257812 16.726562 365.351562 16.84375 365.351562 C 16.960938 365.351562 17.054688 365.257812 17.054688 365.140625 Z M 17.054688 365.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 15.835938 367.195312 C 15.835938 367.078125 15.742188 366.984375 15.625 366.984375 C 15.507812 366.984375 15.414062 367.078125 15.414062 367.195312 C 15.414062 367.3125 15.507812 367.40625 15.625 367.40625 C 15.742188 367.40625 15.835938 367.3125 15.835938 367.195312 Z M 15.835938 367.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.855469 367.773438 C 14.855469 367.65625 14.761719 367.5625 14.644531 367.5625 C 14.527344 367.5625 14.433594 367.65625 14.433594 367.773438 C 14.433594 367.890625 14.527344 367.984375 14.644531 367.984375 C 14.761719 367.984375 14.855469 367.890625 14.855469 367.773438 Z M 14.855469 367.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 16.484375 365.230469 C 16.484375 365.113281 16.390625 365.019531 16.273438 365.019531 C 16.15625 365.019531 16.0625 365.113281 16.0625 365.230469 C 16.0625 365.347656 16.15625 365.441406 16.273438 365.441406 C 16.390625 365.441406 16.484375 365.347656 16.484375 365.230469 Z M 16.484375 365.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 16.503906 365.730469 C 16.503906 365.613281 16.410156 365.519531 16.292969 365.519531 C 16.175781 365.519531 16.082031 365.613281 16.082031 365.730469 C 16.082031 365.847656 16.175781 365.941406 16.292969 365.941406 C 16.410156 365.941406 16.503906 365.847656 16.503906 365.730469 Z M 16.503906 365.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 18.339844 366.574219 C 18.339844 366.457031 18.246094 366.363281 18.128906 366.363281 C 18.011719 366.363281 17.917969 366.457031 17.917969 366.574219 C 17.917969 366.691406 18.011719 366.785156 18.128906 366.785156 C 18.246094 366.785156 18.339844 366.691406 18.339844 366.574219 Z M 18.339844 366.574219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 16.695312 362.363281 C 16.695312 362.246094 16.601562 362.152344 16.484375 362.152344 C 16.367188 362.152344 16.273438 362.246094 16.273438 362.363281 C 16.273438 362.480469 16.367188 362.574219 16.484375 362.574219 C 16.601562 362.574219 16.695312 362.480469 16.695312 362.363281 Z M 16.695312 362.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.519531 359.417969 C 14.519531 359.300781 14.425781 359.207031 14.308594 359.207031 C 14.191406 359.207031 14.097656 359.300781 14.097656 359.417969 C 14.097656 359.535156 14.191406 359.628906 14.308594 359.628906 C 14.425781 359.628906 14.519531 359.535156 14.519531 359.417969 Z M 14.519531 359.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 12.214844 357.335938 C 12.214844 357.21875 12.121094 357.125 12.003906 357.125 C 11.886719 357.125 11.792969 357.21875 11.792969 357.335938 C 11.792969 357.453125 11.886719 357.546875 12.003906 357.546875 C 12.121094 357.546875 12.214844 357.453125 12.214844 357.335938 Z M 12.214844 357.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.007812 361.605469 C 14.007812 361.488281 13.914062 361.394531 13.796875 361.394531 C 13.679688 361.394531 13.585938 361.488281 13.585938 361.605469 C 13.585938 361.722656 13.679688 361.816406 13.796875 361.816406 C 13.914062 361.816406 14.007812 361.722656 14.007812 361.605469 Z M 14.007812 361.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 15.1875 358.324219 C 15.1875 358.207031 15.09375 358.113281 14.976562 358.113281 C 14.859375 358.113281 14.765625 358.207031 14.765625 358.324219 C 14.765625 358.441406 14.859375 358.535156 14.976562 358.535156 C 15.09375 358.535156 15.1875 358.441406 15.1875 358.324219 Z M 15.1875 358.324219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 16.578125 353.382812 C 16.578125 353.265625 16.484375 353.171875 16.367188 353.171875 C 16.25 353.171875 16.15625 353.265625 16.15625 353.382812 C 16.15625 353.5 16.25 353.59375 16.367188 353.59375 C 16.484375 353.59375 16.578125 353.5 16.578125 353.382812 Z M 16.578125 353.382812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 19.804688 357.726562 C 19.804688 357.609375 19.710938 357.515625 19.59375 357.515625 C 19.476562 357.515625 19.382812 357.609375 19.382812 357.726562 C 19.382812 357.84375 19.476562 357.9375 19.59375 357.9375 C 19.710938 357.9375 19.804688 357.84375 19.804688 357.726562 Z M 19.804688 357.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 20.40625 359.347656 C 20.40625 359.230469 20.3125 359.136719 20.195312 359.136719 C 20.078125 359.136719 19.984375 359.230469 19.984375 359.347656 C 19.984375 359.464844 20.078125 359.558594 20.195312 359.558594 C 20.3125 359.558594 20.40625 359.464844 20.40625 359.347656 Z M 20.40625 359.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.332031 363.242188 C 22.332031 363.125 22.238281 363.03125 22.121094 363.03125 C 22.003906 363.03125 21.910156 363.125 21.910156 363.242188 C 21.910156 363.359375 22.003906 363.453125 22.121094 363.453125 C 22.238281 363.453125 22.332031 363.359375 22.332031 363.242188 Z M 22.332031 363.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.738281 360.960938 C 23.738281 360.84375 23.644531 360.75 23.527344 360.75 C 23.410156 360.75 23.316406 360.84375 23.316406 360.960938 C 23.316406 361.078125 23.410156 361.171875 23.527344 361.171875 C 23.644531 361.171875 23.738281 361.078125 23.738281 360.960938 Z M 23.738281 360.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.464844 363.441406 C 26.464844 363.324219 26.371094 363.230469 26.253906 363.230469 C 26.136719 363.230469 26.042969 363.324219 26.042969 363.441406 C 26.042969 363.558594 26.136719 363.652344 26.253906 363.652344 C 26.371094 363.652344 26.464844 363.558594 26.464844 363.441406 Z M 26.464844 363.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.378906 360.441406 C 26.378906 360.324219 26.285156 360.230469 26.167969 360.230469 C 26.050781 360.230469 25.957031 360.324219 25.957031 360.441406 C 25.957031 360.558594 26.050781 360.652344 26.167969 360.652344 C 26.285156 360.652344 26.378906 360.558594 26.378906 360.441406 Z M 26.378906 360.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.894531 362.773438 C 23.894531 362.65625 23.800781 362.5625 23.683594 362.5625 C 23.566406 362.5625 23.472656 362.65625 23.472656 362.773438 C 23.472656 362.890625 23.566406 362.984375 23.683594 362.984375 C 23.800781 362.984375 23.894531 362.890625 23.894531 362.773438 Z M 23.894531 362.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.441406 364.472656 C 23.441406 364.355469 23.347656 364.261719 23.230469 364.261719 C 23.113281 364.261719 23.019531 364.355469 23.019531 364.472656 C 23.019531 364.589844 23.113281 364.683594 23.230469 364.683594 C 23.347656 364.683594 23.441406 364.589844 23.441406 364.472656 Z M 23.441406 364.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.726562 366.554688 C 24.726562 366.4375 24.632812 366.34375 24.515625 366.34375 C 24.398438 366.34375 24.304688 366.4375 24.304688 366.554688 C 24.304688 366.671875 24.398438 366.765625 24.515625 366.765625 C 24.632812 366.765625 24.726562 366.671875 24.726562 366.554688 Z M 24.726562 366.554688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.777344 369.578125 C 25.777344 369.460938 25.683594 369.367188 25.566406 369.367188 C 25.449219 369.367188 25.355469 369.460938 25.355469 369.578125 C 25.355469 369.695312 25.449219 369.789062 25.566406 369.789062 C 25.683594 369.789062 25.777344 369.695312 25.777344 369.578125 Z M 25.777344 369.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.449219 371.144531 C 30.449219 371.027344 30.355469 370.933594 30.238281 370.933594 C 30.121094 370.933594 30.027344 371.027344 30.027344 371.144531 C 30.027344 371.261719 30.121094 371.355469 30.238281 371.355469 C 30.355469 371.355469 30.449219 371.261719 30.449219 371.144531 Z M 30.449219 371.144531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.644531 370.617188 C 31.644531 370.5 31.550781 370.40625 31.433594 370.40625 C 31.316406 370.40625 31.222656 370.5 31.222656 370.617188 C 31.222656 370.734375 31.316406 370.828125 31.433594 370.828125 C 31.550781 370.828125 31.644531 370.734375 31.644531 370.617188 Z M 31.644531 370.617188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.871094 371.300781 C 30.871094 371.183594 30.777344 371.089844 30.660156 371.089844 C 30.542969 371.089844 30.449219 371.183594 30.449219 371.300781 C 30.449219 371.417969 30.542969 371.511719 30.660156 371.511719 C 30.777344 371.511719 30.871094 371.417969 30.871094 371.300781 Z M 30.871094 371.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.527344 370.097656 C 33.527344 369.980469 33.433594 369.886719 33.316406 369.886719 C 33.199219 369.886719 33.105469 369.980469 33.105469 370.097656 C 33.105469 370.214844 33.199219 370.308594 33.316406 370.308594 C 33.433594 370.308594 33.527344 370.214844 33.527344 370.097656 Z M 33.527344 370.097656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.707031 369.457031 C 29.707031 369.339844 29.613281 369.246094 29.496094 369.246094 C 29.378906 369.246094 29.285156 369.339844 29.285156 369.457031 C 29.285156 369.574219 29.378906 369.667969 29.496094 369.667969 C 29.613281 369.667969 29.707031 369.574219 29.707031 369.457031 Z M 29.707031 369.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.03125 369.761719 C 28.03125 369.644531 27.9375 369.550781 27.820312 369.550781 C 27.703125 369.550781 27.609375 369.644531 27.609375 369.761719 C 27.609375 369.878906 27.703125 369.972656 27.820312 369.972656 C 27.9375 369.972656 28.03125 369.878906 28.03125 369.761719 Z M 28.03125 369.761719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.0625 371.1875 C 29.0625 371.070312 28.96875 370.976562 28.851562 370.976562 C 28.734375 370.976562 28.640625 371.070312 28.640625 371.1875 C 28.640625 371.304688 28.734375 371.398438 28.851562 371.398438 C 28.96875 371.398438 29.0625 371.304688 29.0625 371.1875 Z M 29.0625 371.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.4375 373.417969 C 31.4375 373.300781 31.34375 373.207031 31.226562 373.207031 C 31.109375 373.207031 31.015625 373.300781 31.015625 373.417969 C 31.015625 373.535156 31.109375 373.628906 31.226562 373.628906 C 31.34375 373.628906 31.4375 373.535156 31.4375 373.417969 Z M 31.4375 373.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 34.671875 370.28125 C 34.671875 370.164062 34.578125 370.070312 34.460938 370.070312 C 34.34375 370.070312 34.25 370.164062 34.25 370.28125 C 34.25 370.398438 34.34375 370.492188 34.460938 370.492188 C 34.578125 370.492188 34.671875 370.398438 34.671875 370.28125 Z M 34.671875 370.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.011719 370.195312 C 36.011719 370.078125 35.917969 369.984375 35.800781 369.984375 C 35.683594 369.984375 35.589844 370.078125 35.589844 370.195312 C 35.589844 370.3125 35.683594 370.40625 35.800781 370.40625 C 35.917969 370.40625 36.011719 370.3125 36.011719 370.195312 Z M 36.011719 370.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.375 371.269531 C 36.375 371.152344 36.28125 371.058594 36.164062 371.058594 C 36.046875 371.058594 35.953125 371.152344 35.953125 371.269531 C 35.953125 371.386719 36.046875 371.480469 36.164062 371.480469 C 36.28125 371.480469 36.375 371.386719 36.375 371.269531 Z M 36.375 371.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 39.832031 365.113281 C 39.832031 364.996094 39.738281 364.902344 39.621094 364.902344 C 39.503906 364.902344 39.410156 364.996094 39.410156 365.113281 C 39.410156 365.230469 39.503906 365.324219 39.621094 365.324219 C 39.738281 365.324219 39.832031 365.230469 39.832031 365.113281 Z M 39.832031 365.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 40.402344 366.4375 C 40.402344 366.320312 40.308594 366.226562 40.191406 366.226562 C 40.074219 366.226562 39.980469 366.320312 39.980469 366.4375 C 39.980469 366.554688 40.074219 366.648438 40.191406 366.648438 C 40.308594 366.648438 40.402344 366.554688 40.402344 366.4375 Z M 40.402344 366.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 41.382812 367.441406 C 41.382812 367.324219 41.289062 367.230469 41.171875 367.230469 C 41.054688 367.230469 40.960938 367.324219 40.960938 367.441406 C 40.960938 367.558594 41.054688 367.652344 41.171875 367.652344 C 41.289062 367.652344 41.382812 367.558594 41.382812 367.441406 Z M 41.382812 367.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 42.628906 369.460938 C 42.628906 369.34375 42.535156 369.25 42.417969 369.25 C 42.300781 369.25 42.207031 369.34375 42.207031 369.460938 C 42.207031 369.578125 42.300781 369.671875 42.417969 369.671875 C 42.535156 369.671875 42.628906 369.578125 42.628906 369.460938 Z M 42.628906 369.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 40.90625 366.621094 C 40.90625 366.503906 40.8125 366.410156 40.695312 366.410156 C 40.578125 366.410156 40.484375 366.503906 40.484375 366.621094 C 40.484375 366.738281 40.578125 366.832031 40.695312 366.832031 C 40.8125 366.832031 40.90625 366.738281 40.90625 366.621094 Z M 40.90625 366.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 41.296875 368.296875 C 41.296875 368.179688 41.203125 368.085938 41.085938 368.085938 C 40.96875 368.085938 40.875 368.179688 40.875 368.296875 C 40.875 368.414062 40.96875 368.507812 41.085938 368.507812 C 41.203125 368.507812 41.296875 368.414062 41.296875 368.296875 Z M 41.296875 368.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 41.414062 369.859375 C 41.414062 369.742188 41.320312 369.648438 41.203125 369.648438 C 41.085938 369.648438 40.992188 369.742188 40.992188 369.859375 C 40.992188 369.976562 41.085938 370.070312 41.203125 370.070312 C 41.320312 370.070312 41.414062 369.976562 41.414062 369.859375 Z M 41.414062 369.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 44.046875 368.546875 C 44.046875 368.429688 43.953125 368.335938 43.835938 368.335938 C 43.71875 368.335938 43.625 368.429688 43.625 368.546875 C 43.625 368.664062 43.71875 368.757812 43.835938 368.757812 C 43.953125 368.757812 44.046875 368.664062 44.046875 368.546875 Z M 44.046875 368.546875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 42.382812 368.394531 C 42.382812 368.277344 42.289062 368.183594 42.171875 368.183594 C 42.054688 368.183594 41.960938 368.277344 41.960938 368.394531 C 41.960938 368.511719 42.054688 368.605469 42.171875 368.605469 C 42.289062 368.605469 42.382812 368.511719 42.382812 368.394531 Z M 42.382812 368.394531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 41.402344 366.179688 C 41.402344 366.0625 41.308594 365.96875 41.191406 365.96875 C 41.074219 365.96875 40.980469 366.0625 40.980469 366.179688 C 40.980469 366.296875 41.074219 366.390625 41.191406 366.390625 C 41.308594 366.390625 41.402344 366.296875 41.402344 366.179688 Z M 41.402344 366.179688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 41.878906 368.210938 C 41.878906 368.09375 41.785156 368 41.667969 368 C 41.550781 368 41.457031 368.09375 41.457031 368.210938 C 41.457031 368.328125 41.550781 368.421875 41.667969 368.421875 C 41.785156 368.421875 41.878906 368.328125 41.878906 368.210938 Z M 41.878906 368.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 40.898438 366.925781 C 40.898438 366.808594 40.804688 366.714844 40.6875 366.714844 C 40.570312 366.714844 40.476562 366.808594 40.476562 366.925781 C 40.476562 367.042969 40.570312 367.136719 40.6875 367.136719 C 40.804688 367.136719 40.898438 367.042969 40.898438 366.925781 Z M 40.898438 366.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.316406 369.03125 C 38.316406 368.914062 38.222656 368.820312 38.105469 368.820312 C 37.988281 368.820312 37.894531 368.914062 37.894531 369.03125 C 37.894531 369.148438 37.988281 369.242188 38.105469 369.242188 C 38.222656 369.242188 38.316406 369.148438 38.316406 369.03125 Z M 38.316406 369.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.164062 371.15625 C 35.164062 371.039062 35.070312 370.945312 34.953125 370.945312 C 34.835938 370.945312 34.742188 371.039062 34.742188 371.15625 C 34.742188 371.273438 34.835938 371.367188 34.953125 371.367188 C 35.070312 371.367188 35.164062 371.273438 35.164062 371.15625 Z M 35.164062 371.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.921875 369.402344 C 35.921875 369.285156 35.828125 369.191406 35.710938 369.191406 C 35.59375 369.191406 35.5 369.285156 35.5 369.402344 C 35.5 369.519531 35.59375 369.613281 35.710938 369.613281 C 35.828125 369.613281 35.921875 369.519531 35.921875 369.402344 Z M 35.921875 369.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 39.269531 372.855469 C 39.269531 372.738281 39.175781 372.644531 39.058594 372.644531 C 38.941406 372.644531 38.847656 372.738281 38.847656 372.855469 C 38.847656 372.972656 38.941406 373.066406 39.058594 373.066406 C 39.175781 373.066406 39.269531 372.972656 39.269531 372.855469 Z M 39.269531 372.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.9375 376.101562 C 38.9375 375.984375 38.84375 375.890625 38.726562 375.890625 C 38.609375 375.890625 38.515625 375.984375 38.515625 376.101562 C 38.515625 376.21875 38.609375 376.3125 38.726562 376.3125 C 38.84375 376.3125 38.9375 376.21875 38.9375 376.101562 Z M 38.9375 376.101562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 41.066406 376.167969 C 41.066406 376.050781 40.972656 375.957031 40.855469 375.957031 C 40.738281 375.957031 40.644531 376.050781 40.644531 376.167969 C 40.644531 376.285156 40.738281 376.378906 40.855469 376.378906 C 40.972656 376.378906 41.066406 376.285156 41.066406 376.167969 Z M 41.066406 376.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 42.890625 375.570312 C 42.890625 375.453125 42.796875 375.359375 42.679688 375.359375 C 42.5625 375.359375 42.46875 375.453125 42.46875 375.570312 C 42.46875 375.6875 42.5625 375.78125 42.679688 375.78125 C 42.796875 375.78125 42.890625 375.6875 42.890625 375.570312 Z M 42.890625 375.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 41.921875 375.539062 C 41.921875 375.421875 41.828125 375.328125 41.710938 375.328125 C 41.59375 375.328125 41.5 375.421875 41.5 375.539062 C 41.5 375.65625 41.59375 375.75 41.710938 375.75 C 41.828125 375.75 41.921875 375.65625 41.921875 375.539062 Z M 41.921875 375.539062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.929688 380.976562 C 37.929688 380.859375 37.835938 380.765625 37.71875 380.765625 C 37.601562 380.765625 37.507812 380.859375 37.507812 380.976562 C 37.507812 381.09375 37.601562 381.1875 37.71875 381.1875 C 37.835938 381.1875 37.929688 381.09375 37.929688 380.976562 Z M 37.929688 380.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 39.820312 384.320312 C 39.820312 384.203125 39.726562 384.109375 39.609375 384.109375 C 39.492188 384.109375 39.398438 384.203125 39.398438 384.320312 C 39.398438 384.4375 39.492188 384.53125 39.609375 384.53125 C 39.726562 384.53125 39.820312 384.4375 39.820312 384.320312 Z M 39.820312 384.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.074219 383.476562 C 37.074219 383.359375 36.980469 383.265625 36.863281 383.265625 C 36.746094 383.265625 36.652344 383.359375 36.652344 383.476562 C 36.652344 383.59375 36.746094 383.6875 36.863281 383.6875 C 36.980469 383.6875 37.074219 383.59375 37.074219 383.476562 Z M 37.074219 383.476562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.203125 383.289062 C 37.203125 383.171875 37.109375 383.078125 36.992188 383.078125 C 36.875 383.078125 36.78125 383.171875 36.78125 383.289062 C 36.78125 383.40625 36.875 383.5 36.992188 383.5 C 37.109375 383.5 37.203125 383.40625 37.203125 383.289062 Z M 37.203125 383.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.738281 383.148438 C 36.738281 383.03125 36.644531 382.9375 36.527344 382.9375 C 36.410156 382.9375 36.316406 383.03125 36.316406 383.148438 C 36.316406 383.265625 36.410156 383.359375 36.527344 383.359375 C 36.644531 383.359375 36.738281 383.265625 36.738281 383.148438 Z M 36.738281 383.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.980469 384.015625 C 37.980469 383.898438 37.886719 383.804688 37.769531 383.804688 C 37.652344 383.804688 37.558594 383.898438 37.558594 384.015625 C 37.558594 384.132812 37.652344 384.226562 37.769531 384.226562 C 37.886719 384.226562 37.980469 384.132812 37.980469 384.015625 Z M 37.980469 384.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.296875 382.6875 C 36.296875 382.570312 36.203125 382.476562 36.085938 382.476562 C 35.96875 382.476562 35.875 382.570312 35.875 382.6875 C 35.875 382.804688 35.96875 382.898438 36.085938 382.898438 C 36.203125 382.898438 36.296875 382.804688 36.296875 382.6875 Z M 36.296875 382.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.03125 379.933594 C 36.03125 379.816406 35.9375 379.722656 35.820312 379.722656 C 35.703125 379.722656 35.609375 379.816406 35.609375 379.933594 C 35.609375 380.050781 35.703125 380.144531 35.820312 380.144531 C 35.9375 380.144531 36.03125 380.050781 36.03125 379.933594 Z M 36.03125 379.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.449219 381.128906 C 35.449219 381.011719 35.355469 380.917969 35.238281 380.917969 C 35.121094 380.917969 35.027344 381.011719 35.027344 381.128906 C 35.027344 381.246094 35.121094 381.339844 35.238281 381.339844 C 35.355469 381.339844 35.449219 381.246094 35.449219 381.128906 Z M 35.449219 381.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.199219 380.621094 C 36.199219 380.503906 36.105469 380.410156 35.988281 380.410156 C 35.871094 380.410156 35.777344 380.503906 35.777344 380.621094 C 35.777344 380.738281 35.871094 380.832031 35.988281 380.832031 C 36.105469 380.832031 36.199219 380.738281 36.199219 380.621094 Z M 36.199219 380.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.742188 381.292969 C 35.742188 381.175781 35.648438 381.082031 35.53125 381.082031 C 35.414062 381.082031 35.320312 381.175781 35.320312 381.292969 C 35.320312 381.410156 35.414062 381.503906 35.53125 381.503906 C 35.648438 381.503906 35.742188 381.410156 35.742188 381.292969 Z M 35.742188 381.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 34.621094 382.75 C 34.621094 382.632812 34.527344 382.539062 34.410156 382.539062 C 34.292969 382.539062 34.199219 382.632812 34.199219 382.75 C 34.199219 382.867188 34.292969 382.960938 34.410156 382.960938 C 34.527344 382.960938 34.621094 382.867188 34.621094 382.75 Z M 34.621094 382.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.539062 382.625 C 33.539062 382.507812 33.445312 382.414062 33.328125 382.414062 C 33.210938 382.414062 33.117188 382.507812 33.117188 382.625 C 33.117188 382.742188 33.210938 382.835938 33.328125 382.835938 C 33.445312 382.835938 33.539062 382.742188 33.539062 382.625 Z M 33.539062 382.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.765625 380.449219 C 33.765625 380.332031 33.671875 380.238281 33.554688 380.238281 C 33.4375 380.238281 33.34375 380.332031 33.34375 380.449219 C 33.34375 380.566406 33.4375 380.660156 33.554688 380.660156 C 33.671875 380.660156 33.765625 380.566406 33.765625 380.449219 Z M 33.765625 380.449219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.121094 379.957031 C 35.121094 379.839844 35.027344 379.746094 34.910156 379.746094 C 34.792969 379.746094 34.699219 379.839844 34.699219 379.957031 C 34.699219 380.074219 34.792969 380.167969 34.910156 380.167969 C 35.027344 380.167969 35.121094 380.074219 35.121094 379.957031 Z M 35.121094 379.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.714844 377.464844 C 33.714844 377.347656 33.621094 377.253906 33.503906 377.253906 C 33.386719 377.253906 33.292969 377.347656 33.292969 377.464844 C 33.292969 377.582031 33.386719 377.675781 33.503906 377.675781 C 33.621094 377.675781 33.714844 377.582031 33.714844 377.464844 Z M 33.714844 377.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.589844 375.210938 C 31.589844 375.09375 31.496094 375 31.378906 375 C 31.261719 375 31.167969 375.09375 31.167969 375.210938 C 31.167969 375.328125 31.261719 375.421875 31.378906 375.421875 C 31.496094 375.421875 31.589844 375.328125 31.589844 375.210938 Z M 31.589844 375.210938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.902344 373.398438 C 29.902344 373.28125 29.808594 373.1875 29.691406 373.1875 C 29.574219 373.1875 29.480469 373.28125 29.480469 373.398438 C 29.480469 373.515625 29.574219 373.609375 29.691406 373.609375 C 29.808594 373.609375 29.902344 373.515625 29.902344 373.398438 Z M 29.902344 373.398438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.808594 374.300781 C 29.808594 374.183594 29.714844 374.089844 29.597656 374.089844 C 29.480469 374.089844 29.386719 374.183594 29.386719 374.300781 C 29.386719 374.417969 29.480469 374.511719 29.597656 374.511719 C 29.714844 374.511719 29.808594 374.417969 29.808594 374.300781 Z M 29.808594 374.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.203125 373.710938 C 28.203125 373.59375 28.109375 373.5 27.992188 373.5 C 27.875 373.5 27.78125 373.59375 27.78125 373.710938 C 27.78125 373.828125 27.875 373.921875 27.992188 373.921875 C 28.109375 373.921875 28.203125 373.828125 28.203125 373.710938 Z M 28.203125 373.710938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.78125 373.910156 C 29.78125 373.792969 29.6875 373.699219 29.570312 373.699219 C 29.453125 373.699219 29.359375 373.792969 29.359375 373.910156 C 29.359375 374.027344 29.453125 374.121094 29.570312 374.121094 C 29.6875 374.121094 29.78125 374.027344 29.78125 373.910156 Z M 29.78125 373.910156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.445312 370.316406 C 27.445312 370.199219 27.351562 370.105469 27.234375 370.105469 C 27.117188 370.105469 27.023438 370.199219 27.023438 370.316406 C 27.023438 370.433594 27.117188 370.527344 27.234375 370.527344 C 27.351562 370.527344 27.445312 370.433594 27.445312 370.316406 Z M 27.445312 370.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.765625 374.410156 C 28.765625 374.292969 28.671875 374.199219 28.554688 374.199219 C 28.4375 374.199219 28.34375 374.292969 28.34375 374.410156 C 28.34375 374.527344 28.4375 374.621094 28.554688 374.621094 C 28.671875 374.621094 28.765625 374.527344 28.765625 374.410156 Z M 28.765625 374.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.515625 377.410156 C 25.515625 377.292969 25.421875 377.199219 25.304688 377.199219 C 25.1875 377.199219 25.09375 377.292969 25.09375 377.410156 C 25.09375 377.527344 25.1875 377.621094 25.304688 377.621094 C 25.421875 377.621094 25.515625 377.527344 25.515625 377.410156 Z M 25.515625 377.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.433594 374.527344 C 23.433594 374.410156 23.339844 374.316406 23.222656 374.316406 C 23.105469 374.316406 23.011719 374.410156 23.011719 374.527344 C 23.011719 374.644531 23.105469 374.738281 23.222656 374.738281 C 23.339844 374.738281 23.433594 374.644531 23.433594 374.527344 Z M 23.433594 374.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.109375 376.773438 C 26.109375 376.65625 26.015625 376.5625 25.898438 376.5625 C 25.78125 376.5625 25.6875 376.65625 25.6875 376.773438 C 25.6875 376.890625 25.78125 376.984375 25.898438 376.984375 C 26.015625 376.984375 26.109375 376.890625 26.109375 376.773438 Z M 26.109375 376.773438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.953125 377.21875 C 24.953125 377.101562 24.859375 377.007812 24.742188 377.007812 C 24.625 377.007812 24.53125 377.101562 24.53125 377.21875 C 24.53125 377.335938 24.625 377.429688 24.742188 377.429688 C 24.859375 377.429688 24.953125 377.335938 24.953125 377.21875 Z M 24.953125 377.21875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.460938 376.34375 C 24.460938 376.226562 24.367188 376.132812 24.25 376.132812 C 24.132812 376.132812 24.039062 376.226562 24.039062 376.34375 C 24.039062 376.460938 24.132812 376.554688 24.25 376.554688 C 24.367188 376.554688 24.460938 376.460938 24.460938 376.34375 Z M 24.460938 376.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.75 375.472656 C 23.75 375.355469 23.65625 375.261719 23.539062 375.261719 C 23.421875 375.261719 23.328125 375.355469 23.328125 375.472656 C 23.328125 375.589844 23.421875 375.683594 23.539062 375.683594 C 23.65625 375.683594 23.75 375.589844 23.75 375.472656 Z M 23.75 375.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.804688 373.105469 C 23.804688 372.988281 23.710938 372.894531 23.59375 372.894531 C 23.476562 372.894531 23.382812 372.988281 23.382812 373.105469 C 23.382812 373.222656 23.476562 373.316406 23.59375 373.316406 C 23.710938 373.316406 23.804688 373.222656 23.804688 373.105469 Z M 23.804688 373.105469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.492188 373.675781 C 25.492188 373.558594 25.398438 373.464844 25.28125 373.464844 C 25.164062 373.464844 25.070312 373.558594 25.070312 373.675781 C 25.070312 373.792969 25.164062 373.886719 25.28125 373.886719 C 25.398438 373.886719 25.492188 373.792969 25.492188 373.675781 Z M 25.492188 373.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.058594 372.796875 C 25.058594 372.679688 24.964844 372.585938 24.847656 372.585938 C 24.730469 372.585938 24.636719 372.679688 24.636719 372.796875 C 24.636719 372.914062 24.730469 373.007812 24.847656 373.007812 C 24.964844 373.007812 25.058594 372.914062 25.058594 372.796875 Z M 25.058594 372.796875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.394531 370.667969 C 21.394531 370.550781 21.300781 370.457031 21.183594 370.457031 C 21.066406 370.457031 20.972656 370.550781 20.972656 370.667969 C 20.972656 370.785156 21.066406 370.878906 21.183594 370.878906 C 21.300781 370.878906 21.394531 370.785156 21.394531 370.667969 Z M 21.394531 370.667969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.074219 371.28125 C 22.074219 371.164062 21.980469 371.070312 21.863281 371.070312 C 21.746094 371.070312 21.652344 371.164062 21.652344 371.28125 C 21.652344 371.398438 21.746094 371.492188 21.863281 371.492188 C 21.980469 371.492188 22.074219 371.398438 22.074219 371.28125 Z M 22.074219 371.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.230469 368.960938 C 22.230469 368.84375 22.136719 368.75 22.019531 368.75 C 21.902344 368.75 21.808594 368.84375 21.808594 368.960938 C 21.808594 369.078125 21.902344 369.171875 22.019531 369.171875 C 22.136719 369.171875 22.230469 369.078125 22.230469 368.960938 Z M 22.230469 368.960938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.367188 370.410156 C 24.367188 370.292969 24.273438 370.199219 24.15625 370.199219 C 24.039062 370.199219 23.945312 370.292969 23.945312 370.410156 C 23.945312 370.527344 24.039062 370.621094 24.15625 370.621094 C 24.273438 370.621094 24.367188 370.527344 24.367188 370.410156 Z M 24.367188 370.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.917969 373.5625 C 23.917969 373.445312 23.824219 373.351562 23.707031 373.351562 C 23.589844 373.351562 23.496094 373.445312 23.496094 373.5625 C 23.496094 373.679688 23.589844 373.773438 23.707031 373.773438 C 23.824219 373.773438 23.917969 373.679688 23.917969 373.5625 Z M 23.917969 373.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.386719 373.464844 C 22.386719 373.347656 22.292969 373.253906 22.175781 373.253906 C 22.058594 373.253906 21.964844 373.347656 21.964844 373.464844 C 21.964844 373.582031 22.058594 373.675781 22.175781 373.675781 C 22.292969 373.675781 22.386719 373.582031 22.386719 373.464844 Z M 22.386719 373.464844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.171875 374.75 C 26.171875 374.632812 26.078125 374.539062 25.960938 374.539062 C 25.84375 374.539062 25.75 374.632812 25.75 374.75 C 25.75 374.867188 25.84375 374.960938 25.960938 374.960938 C 26.078125 374.960938 26.171875 374.867188 26.171875 374.75 Z M 26.171875 374.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.640625 377.730469 C 24.640625 377.613281 24.546875 377.519531 24.429688 377.519531 C 24.3125 377.519531 24.21875 377.613281 24.21875 377.730469 C 24.21875 377.847656 24.3125 377.941406 24.429688 377.941406 C 24.546875 377.941406 24.640625 377.847656 24.640625 377.730469 Z M 24.640625 377.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.519531 379.671875 C 23.519531 379.554688 23.425781 379.460938 23.308594 379.460938 C 23.191406 379.460938 23.097656 379.554688 23.097656 379.671875 C 23.097656 379.789062 23.191406 379.882812 23.308594 379.882812 C 23.425781 379.882812 23.519531 379.789062 23.519531 379.671875 Z M 23.519531 379.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.175781 375.769531 C 27.175781 375.652344 27.082031 375.558594 26.964844 375.558594 C 26.847656 375.558594 26.753906 375.652344 26.753906 375.769531 C 26.753906 375.886719 26.847656 375.980469 26.964844 375.980469 C 27.082031 375.980469 27.175781 375.886719 27.175781 375.769531 Z M 27.175781 375.769531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.878906 374.605469 C 25.878906 374.488281 25.785156 374.394531 25.667969 374.394531 C 25.550781 374.394531 25.457031 374.488281 25.457031 374.605469 C 25.457031 374.722656 25.550781 374.816406 25.667969 374.816406 C 25.785156 374.816406 25.878906 374.722656 25.878906 374.605469 Z M 25.878906 374.605469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.90625 377.300781 C 22.90625 377.183594 22.8125 377.089844 22.695312 377.089844 C 22.578125 377.089844 22.484375 377.183594 22.484375 377.300781 C 22.484375 377.417969 22.578125 377.511719 22.695312 377.511719 C 22.8125 377.511719 22.90625 377.417969 22.90625 377.300781 Z M 22.90625 377.300781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.53125 378.34375 C 22.53125 378.226562 22.4375 378.132812 22.320312 378.132812 C 22.203125 378.132812 22.109375 378.226562 22.109375 378.34375 C 22.109375 378.460938 22.203125 378.554688 22.320312 378.554688 C 22.4375 378.554688 22.53125 378.460938 22.53125 378.34375 Z M 22.53125 378.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.542969 376.375 C 21.542969 376.257812 21.449219 376.164062 21.332031 376.164062 C 21.214844 376.164062 21.121094 376.257812 21.121094 376.375 C 21.121094 376.492188 21.214844 376.585938 21.332031 376.585938 C 21.449219 376.585938 21.542969 376.492188 21.542969 376.375 Z M 21.542969 376.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 20.40625 377.191406 C 20.40625 377.074219 20.3125 376.980469 20.195312 376.980469 C 20.078125 376.980469 19.984375 377.074219 19.984375 377.191406 C 19.984375 377.308594 20.078125 377.402344 20.195312 377.402344 C 20.3125 377.402344 20.40625 377.308594 20.40625 377.191406 Z M 20.40625 377.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 18.714844 374.726562 C 18.714844 374.609375 18.621094 374.515625 18.503906 374.515625 C 18.386719 374.515625 18.292969 374.609375 18.292969 374.726562 C 18.292969 374.84375 18.386719 374.9375 18.503906 374.9375 C 18.621094 374.9375 18.714844 374.84375 18.714844 374.726562 Z M 18.714844 374.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.746094 374.683594 C 14.746094 374.566406 14.652344 374.472656 14.535156 374.472656 C 14.417969 374.472656 14.324219 374.566406 14.324219 374.683594 C 14.324219 374.800781 14.417969 374.894531 14.535156 374.894531 C 14.652344 374.894531 14.746094 374.800781 14.746094 374.683594 Z M 14.746094 374.683594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.542969 377.140625 C 14.542969 377.023438 14.449219 376.929688 14.332031 376.929688 C 14.214844 376.929688 14.121094 377.023438 14.121094 377.140625 C 14.121094 377.257812 14.214844 377.351562 14.332031 377.351562 C 14.449219 377.351562 14.542969 377.257812 14.542969 377.140625 Z M 14.542969 377.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.074219 374.976562 C 14.074219 374.859375 13.980469 374.765625 13.863281 374.765625 C 13.746094 374.765625 13.652344 374.859375 13.652344 374.976562 C 13.652344 375.09375 13.746094 375.1875 13.863281 375.1875 C 13.980469 375.1875 14.074219 375.09375 14.074219 374.976562 Z M 14.074219 374.976562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 11.546875 371.273438 C 11.546875 371.15625 11.453125 371.0625 11.335938 371.0625 C 11.21875 371.0625 11.125 371.15625 11.125 371.273438 C 11.125 371.390625 11.21875 371.484375 11.335938 371.484375 C 11.453125 371.484375 11.546875 371.390625 11.546875 371.273438 Z M 11.546875 371.273438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 12.335938 372.367188 C 12.335938 372.25 12.242188 372.15625 12.125 372.15625 C 12.007812 372.15625 11.914062 372.25 11.914062 372.367188 C 11.914062 372.484375 12.007812 372.578125 12.125 372.578125 C 12.242188 372.578125 12.335938 372.484375 12.335938 372.367188 Z M 12.335938 372.367188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 16.300781 369.671875 C 16.300781 369.554688 16.207031 369.460938 16.089844 369.460938 C 15.972656 369.460938 15.878906 369.554688 15.878906 369.671875 C 15.878906 369.789062 15.972656 369.882812 16.089844 369.882812 C 16.207031 369.882812 16.300781 369.789062 16.300781 369.671875 Z M 16.300781 369.671875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.777344 371.296875 C 13.777344 371.179688 13.683594 371.085938 13.566406 371.085938 C 13.449219 371.085938 13.355469 371.179688 13.355469 371.296875 C 13.355469 371.414062 13.449219 371.507812 13.566406 371.507812 C 13.683594 371.507812 13.777344 371.414062 13.777344 371.296875 Z M 13.777344 371.296875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.347656 372.230469 C 13.347656 372.113281 13.253906 372.019531 13.136719 372.019531 C 13.019531 372.019531 12.925781 372.113281 12.925781 372.230469 C 12.925781 372.347656 13.019531 372.441406 13.136719 372.441406 C 13.253906 372.441406 13.347656 372.347656 13.347656 372.230469 Z M 13.347656 372.230469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.222656 372.023438 C 13.222656 371.90625 13.128906 371.8125 13.011719 371.8125 C 12.894531 371.8125 12.800781 371.90625 12.800781 372.023438 C 12.800781 372.140625 12.894531 372.234375 13.011719 372.234375 C 13.128906 372.234375 13.222656 372.140625 13.222656 372.023438 Z M 13.222656 372.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 15.078125 374.246094 C 15.078125 374.128906 14.984375 374.035156 14.867188 374.035156 C 14.75 374.035156 14.65625 374.128906 14.65625 374.246094 C 14.65625 374.363281 14.75 374.457031 14.867188 374.457031 C 14.984375 374.457031 15.078125 374.363281 15.078125 374.246094 Z M 15.078125 374.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.773438 377.628906 C 14.773438 377.511719 14.679688 377.417969 14.5625 377.417969 C 14.445312 377.417969 14.351562 377.511719 14.351562 377.628906 C 14.351562 377.746094 14.445312 377.839844 14.5625 377.839844 C 14.679688 377.839844 14.773438 377.746094 14.773438 377.628906 Z M 14.773438 377.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.148438 375.675781 C 21.148438 375.558594 21.054688 375.464844 20.9375 375.464844 C 20.820312 375.464844 20.726562 375.558594 20.726562 375.675781 C 20.726562 375.792969 20.820312 375.886719 20.9375 375.886719 C 21.054688 375.886719 21.148438 375.792969 21.148438 375.675781 Z M 21.148438 375.675781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.589844 374.800781 C 23.589844 374.683594 23.496094 374.589844 23.378906 374.589844 C 23.261719 374.589844 23.167969 374.683594 23.167969 374.800781 C 23.167969 374.917969 23.261719 375.011719 23.378906 375.011719 C 23.496094 375.011719 23.589844 374.917969 23.589844 374.800781 Z M 23.589844 374.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.15625 380.070312 C 23.15625 379.953125 23.0625 379.859375 22.945312 379.859375 C 22.828125 379.859375 22.734375 379.953125 22.734375 380.070312 C 22.734375 380.1875 22.828125 380.28125 22.945312 380.28125 C 23.0625 380.28125 23.15625 380.1875 23.15625 380.070312 Z M 23.15625 380.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.800781 381.902344 C 21.800781 381.785156 21.707031 381.691406 21.589844 381.691406 C 21.472656 381.691406 21.378906 381.785156 21.378906 381.902344 C 21.378906 382.019531 21.472656 382.113281 21.589844 382.113281 C 21.707031 382.113281 21.800781 382.019531 21.800781 381.902344 Z M 21.800781 381.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 19.109375 385.625 C 19.109375 385.507812 19.015625 385.414062 18.898438 385.414062 C 18.78125 385.414062 18.6875 385.507812 18.6875 385.625 C 18.6875 385.742188 18.78125 385.835938 18.898438 385.835938 C 19.015625 385.835938 19.109375 385.742188 19.109375 385.625 Z M 19.109375 385.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 16.078125 385.882812 C 16.078125 385.765625 15.984375 385.671875 15.867188 385.671875 C 15.75 385.671875 15.65625 385.765625 15.65625 385.882812 C 15.65625 386 15.75 386.09375 15.867188 386.09375 C 15.984375 386.09375 16.078125 386 16.078125 385.882812 Z M 16.078125 385.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.378906 388.234375 C 13.378906 388.117188 13.285156 388.023438 13.167969 388.023438 C 13.050781 388.023438 12.957031 388.117188 12.957031 388.234375 C 12.957031 388.351562 13.050781 388.445312 13.167969 388.445312 C 13.285156 388.445312 13.378906 388.351562 13.378906 388.234375 Z M 13.378906 388.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 10.488281 386.730469 C 10.488281 386.613281 10.394531 386.519531 10.277344 386.519531 C 10.160156 386.519531 10.066406 386.613281 10.066406 386.730469 C 10.066406 386.847656 10.160156 386.941406 10.277344 386.941406 C 10.394531 386.941406 10.488281 386.847656 10.488281 386.730469 Z M 10.488281 386.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 7.929688 388.203125 C 7.929688 388.085938 7.835938 387.992188 7.71875 387.992188 C 7.601562 387.992188 7.507812 388.085938 7.507812 388.203125 C 7.507812 388.320312 7.601562 388.414062 7.71875 388.414062 C 7.835938 388.414062 7.929688 388.320312 7.929688 388.203125 Z M 7.929688 388.203125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 10.792969 385.292969 C 10.792969 385.175781 10.699219 385.082031 10.582031 385.082031 C 10.464844 385.082031 10.371094 385.175781 10.371094 385.292969 C 10.371094 385.410156 10.464844 385.503906 10.582031 385.503906 C 10.699219 385.503906 10.792969 385.410156 10.792969 385.292969 Z M 10.792969 385.292969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 11.796875 385.238281 C 11.796875 385.121094 11.703125 385.027344 11.585938 385.027344 C 11.46875 385.027344 11.375 385.121094 11.375 385.238281 C 11.375 385.355469 11.46875 385.449219 11.585938 385.449219 C 11.703125 385.449219 11.796875 385.355469 11.796875 385.238281 Z M 11.796875 385.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.121094 387.730469 C 13.121094 387.613281 13.027344 387.519531 12.910156 387.519531 C 12.792969 387.519531 12.699219 387.613281 12.699219 387.730469 C 12.699219 387.847656 12.792969 387.941406 12.910156 387.941406 C 13.027344 387.941406 13.121094 387.847656 13.121094 387.730469 Z M 13.121094 387.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 12.214844 386.082031 C 12.214844 385.964844 12.121094 385.871094 12.003906 385.871094 C 11.886719 385.871094 11.792969 385.964844 11.792969 386.082031 C 11.792969 386.199219 11.886719 386.292969 12.003906 386.292969 C 12.121094 386.292969 12.214844 386.199219 12.214844 386.082031 Z M 12.214844 386.082031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 15.863281 387.246094 C 15.863281 387.128906 15.769531 387.035156 15.652344 387.035156 C 15.535156 387.035156 15.441406 387.128906 15.441406 387.246094 C 15.441406 387.363281 15.535156 387.457031 15.652344 387.457031 C 15.769531 387.457031 15.863281 387.363281 15.863281 387.246094 Z M 15.863281 387.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 16.789062 387.050781 C 16.789062 386.933594 16.695312 386.839844 16.578125 386.839844 C 16.460938 386.839844 16.367188 386.933594 16.367188 387.050781 C 16.367188 387.167969 16.460938 387.261719 16.578125 387.261719 C 16.695312 387.261719 16.789062 387.167969 16.789062 387.050781 Z M 16.789062 387.050781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 15.042969 386.582031 C 15.042969 386.464844 14.949219 386.371094 14.832031 386.371094 C 14.714844 386.371094 14.621094 386.464844 14.621094 386.582031 C 14.621094 386.699219 14.714844 386.792969 14.832031 386.792969 C 14.949219 386.792969 15.042969 386.699219 15.042969 386.582031 Z M 15.042969 386.582031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.0625 386.316406 C 13.0625 386.199219 12.96875 386.105469 12.851562 386.105469 C 12.734375 386.105469 12.640625 386.199219 12.640625 386.316406 C 12.640625 386.433594 12.734375 386.527344 12.851562 386.527344 C 12.96875 386.527344 13.0625 386.433594 13.0625 386.316406 Z M 13.0625 386.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 16.109375 383.4375 C 16.109375 383.320312 16.015625 383.226562 15.898438 383.226562 C 15.78125 383.226562 15.6875 383.320312 15.6875 383.4375 C 15.6875 383.554688 15.78125 383.648438 15.898438 383.648438 C 16.015625 383.648438 16.109375 383.554688 16.109375 383.4375 Z M 16.109375 383.4375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 19.578125 385.835938 C 19.578125 385.71875 19.484375 385.625 19.367188 385.625 C 19.25 385.625 19.15625 385.71875 19.15625 385.835938 C 19.15625 385.953125 19.25 386.046875 19.367188 386.046875 C 19.484375 386.046875 19.578125 385.953125 19.578125 385.835938 Z M 19.578125 385.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 17.4375 386.664062 C 17.4375 386.546875 17.34375 386.453125 17.226562 386.453125 C 17.109375 386.453125 17.015625 386.546875 17.015625 386.664062 C 17.015625 386.78125 17.109375 386.875 17.226562 386.875 C 17.34375 386.875 17.4375 386.78125 17.4375 386.664062 Z M 17.4375 386.664062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 17.898438 386.859375 C 17.898438 386.742188 17.804688 386.648438 17.6875 386.648438 C 17.570312 386.648438 17.476562 386.742188 17.476562 386.859375 C 17.476562 386.976562 17.570312 387.070312 17.6875 387.070312 C 17.804688 387.070312 17.898438 386.976562 17.898438 386.859375 Z M 17.898438 386.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 19.515625 391.136719 C 19.515625 391.019531 19.421875 390.925781 19.304688 390.925781 C 19.1875 390.925781 19.09375 391.019531 19.09375 391.136719 C 19.09375 391.253906 19.1875 391.347656 19.304688 391.347656 C 19.421875 391.347656 19.515625 391.253906 19.515625 391.136719 Z M 19.515625 391.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 19.066406 387.65625 C 19.066406 387.539062 18.972656 387.445312 18.855469 387.445312 C 18.738281 387.445312 18.644531 387.539062 18.644531 387.65625 C 18.644531 387.773438 18.738281 387.867188 18.855469 387.867188 C 18.972656 387.867188 19.066406 387.773438 19.066406 387.65625 Z M 19.066406 387.65625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 15.34375 384.339844 C 15.34375 384.222656 15.25 384.128906 15.132812 384.128906 C 15.015625 384.128906 14.921875 384.222656 14.921875 384.339844 C 14.921875 384.457031 15.015625 384.550781 15.132812 384.550781 C 15.25 384.550781 15.34375 384.457031 15.34375 384.339844 Z M 15.34375 384.339844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 16.339844 384.132812 C 16.339844 384.015625 16.246094 383.921875 16.128906 383.921875 C 16.011719 383.921875 15.917969 384.015625 15.917969 384.132812 C 15.917969 384.25 16.011719 384.34375 16.128906 384.34375 C 16.246094 384.34375 16.339844 384.25 16.339844 384.132812 Z M 16.339844 384.132812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 18.175781 382.472656 C 18.175781 382.355469 18.082031 382.261719 17.964844 382.261719 C 17.847656 382.261719 17.753906 382.355469 17.753906 382.472656 C 17.753906 382.589844 17.847656 382.683594 17.964844 382.683594 C 18.082031 382.683594 18.175781 382.589844 18.175781 382.472656 Z M 18.175781 382.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.148438 381.042969 C 14.148438 380.925781 14.054688 380.832031 13.9375 380.832031 C 13.820312 380.832031 13.726562 380.925781 13.726562 381.042969 C 13.726562 381.160156 13.820312 381.253906 13.9375 381.253906 C 14.054688 381.253906 14.148438 381.160156 14.148438 381.042969 Z M 14.148438 381.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.847656 380.3125 C 13.847656 380.195312 13.753906 380.101562 13.636719 380.101562 C 13.519531 380.101562 13.425781 380.195312 13.425781 380.3125 C 13.425781 380.429688 13.519531 380.523438 13.636719 380.523438 C 13.753906 380.523438 13.847656 380.429688 13.847656 380.3125 Z M 13.847656 380.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.503906 379.871094 C 14.503906 379.753906 14.410156 379.660156 14.292969 379.660156 C 14.175781 379.660156 14.082031 379.753906 14.082031 379.871094 C 14.082031 379.988281 14.175781 380.082031 14.292969 380.082031 C 14.410156 380.082031 14.503906 379.988281 14.503906 379.871094 Z M 14.503906 379.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 15.03125 376.863281 C 15.03125 376.746094 14.9375 376.652344 14.820312 376.652344 C 14.703125 376.652344 14.609375 376.746094 14.609375 376.863281 C 14.609375 376.980469 14.703125 377.074219 14.820312 377.074219 C 14.9375 377.074219 15.03125 376.980469 15.03125 376.863281 Z M 15.03125 376.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.601562 377.75 C 13.601562 377.632812 13.507812 377.539062 13.390625 377.539062 C 13.273438 377.539062 13.179688 377.632812 13.179688 377.75 C 13.179688 377.867188 13.273438 377.960938 13.390625 377.960938 C 13.507812 377.960938 13.601562 377.867188 13.601562 377.75 Z M 13.601562 377.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.84375 380.863281 C 13.84375 380.746094 13.75 380.652344 13.632812 380.652344 C 13.515625 380.652344 13.421875 380.746094 13.421875 380.863281 C 13.421875 380.980469 13.515625 381.074219 13.632812 381.074219 C 13.75 381.074219 13.84375 380.980469 13.84375 380.863281 Z M 13.84375 380.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 12.371094 378.117188 C 12.371094 378 12.277344 377.90625 12.160156 377.90625 C 12.042969 377.90625 11.949219 378 11.949219 378.117188 C 11.949219 378.234375 12.042969 378.328125 12.160156 378.328125 C 12.277344 378.328125 12.371094 378.234375 12.371094 378.117188 Z M 12.371094 378.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 12.863281 379.609375 C 12.863281 379.492188 12.769531 379.398438 12.652344 379.398438 C 12.535156 379.398438 12.441406 379.492188 12.441406 379.609375 C 12.441406 379.726562 12.535156 379.820312 12.652344 379.820312 C 12.769531 379.820312 12.863281 379.726562 12.863281 379.609375 Z M 12.863281 379.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 11.339844 381.238281 C 11.339844 381.121094 11.246094 381.027344 11.128906 381.027344 C 11.011719 381.027344 10.917969 381.121094 10.917969 381.238281 C 10.917969 381.355469 11.011719 381.449219 11.128906 381.449219 C 11.246094 381.449219 11.339844 381.355469 11.339844 381.238281 Z M 11.339844 381.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.660156 381.1875 C 14.660156 381.070312 14.566406 380.976562 14.449219 380.976562 C 14.332031 380.976562 14.238281 381.070312 14.238281 381.1875 C 14.238281 381.304688 14.332031 381.398438 14.449219 381.398438 C 14.566406 381.398438 14.660156 381.304688 14.660156 381.1875 Z M 14.660156 381.1875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.996094 380.894531 C 13.996094 380.777344 13.902344 380.683594 13.785156 380.683594 C 13.667969 380.683594 13.574219 380.777344 13.574219 380.894531 C 13.574219 381.011719 13.667969 381.105469 13.785156 381.105469 C 13.902344 381.105469 13.996094 381.011719 13.996094 380.894531 Z M 13.996094 380.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.046875 384.507812 C 14.046875 384.390625 13.953125 384.296875 13.835938 384.296875 C 13.71875 384.296875 13.625 384.390625 13.625 384.507812 C 13.625 384.625 13.71875 384.71875 13.835938 384.71875 C 13.953125 384.71875 14.046875 384.625 14.046875 384.507812 Z M 14.046875 384.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.390625 384.542969 C 14.390625 384.425781 14.296875 384.332031 14.179688 384.332031 C 14.0625 384.332031 13.96875 384.425781 13.96875 384.542969 C 13.96875 384.660156 14.0625 384.753906 14.179688 384.753906 C 14.296875 384.753906 14.390625 384.660156 14.390625 384.542969 Z M 14.390625 384.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.433594 384.71875 C 14.433594 384.601562 14.339844 384.507812 14.222656 384.507812 C 14.105469 384.507812 14.011719 384.601562 14.011719 384.71875 C 14.011719 384.835938 14.105469 384.929688 14.222656 384.929688 C 14.339844 384.929688 14.433594 384.835938 14.433594 384.71875 Z M 14.433594 384.71875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 15.394531 382.601562 C 15.394531 382.484375 15.300781 382.390625 15.183594 382.390625 C 15.066406 382.390625 14.972656 382.484375 14.972656 382.601562 C 14.972656 382.71875 15.066406 382.8125 15.183594 382.8125 C 15.300781 382.8125 15.394531 382.71875 15.394531 382.601562 Z M 15.394531 382.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 15.34375 380.152344 C 15.34375 380.035156 15.25 379.941406 15.132812 379.941406 C 15.015625 379.941406 14.921875 380.035156 14.921875 380.152344 C 14.921875 380.269531 15.015625 380.363281 15.132812 380.363281 C 15.25 380.363281 15.34375 380.269531 15.34375 380.152344 Z M 15.34375 380.152344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.449219 378.800781 C 13.449219 378.683594 13.355469 378.589844 13.238281 378.589844 C 13.121094 378.589844 13.027344 378.683594 13.027344 378.800781 C 13.027344 378.917969 13.121094 379.011719 13.238281 379.011719 C 13.355469 379.011719 13.449219 378.917969 13.449219 378.800781 Z M 13.449219 378.800781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.167969 379.15625 C 14.167969 379.039062 14.074219 378.945312 13.957031 378.945312 C 13.839844 378.945312 13.746094 379.039062 13.746094 379.15625 C 13.746094 379.273438 13.839844 379.367188 13.957031 379.367188 C 14.074219 379.367188 14.167969 379.273438 14.167969 379.15625 Z M 14.167969 379.15625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.976562 379.808594 C 13.976562 379.691406 13.882812 379.597656 13.765625 379.597656 C 13.648438 379.597656 13.554688 379.691406 13.554688 379.808594 C 13.554688 379.925781 13.648438 380.019531 13.765625 380.019531 C 13.882812 380.019531 13.976562 379.925781 13.976562 379.808594 Z M 13.976562 379.808594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 12.78125 381.238281 C 12.78125 381.121094 12.6875 381.027344 12.570312 381.027344 C 12.453125 381.027344 12.359375 381.121094 12.359375 381.238281 C 12.359375 381.355469 12.453125 381.449219 12.570312 381.449219 C 12.6875 381.449219 12.78125 381.355469 12.78125 381.238281 Z M 12.78125 381.238281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 12.757812 382.578125 C 12.757812 382.460938 12.664062 382.367188 12.546875 382.367188 C 12.429688 382.367188 12.335938 382.460938 12.335938 382.578125 C 12.335938 382.695312 12.429688 382.789062 12.546875 382.789062 C 12.664062 382.789062 12.757812 382.695312 12.757812 382.578125 Z M 12.757812 382.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 16.058594 383.601562 C 16.058594 383.484375 15.964844 383.390625 15.847656 383.390625 C 15.730469 383.390625 15.636719 383.484375 15.636719 383.601562 C 15.636719 383.71875 15.730469 383.8125 15.847656 383.8125 C 15.964844 383.8125 16.058594 383.71875 16.058594 383.601562 Z M 16.058594 383.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 19.457031 381.257812 C 19.457031 381.140625 19.363281 381.046875 19.246094 381.046875 C 19.128906 381.046875 19.035156 381.140625 19.035156 381.257812 C 19.035156 381.375 19.128906 381.46875 19.246094 381.46875 C 19.363281 381.46875 19.457031 381.375 19.457031 381.257812 Z M 19.457031 381.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 16.574219 381.792969 C 16.574219 381.675781 16.480469 381.582031 16.363281 381.582031 C 16.246094 381.582031 16.152344 381.675781 16.152344 381.792969 C 16.152344 381.910156 16.246094 382.003906 16.363281 382.003906 C 16.480469 382.003906 16.574219 381.910156 16.574219 381.792969 Z M 16.574219 381.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 16.3125 382.191406 C 16.3125 382.074219 16.21875 381.980469 16.101562 381.980469 C 15.984375 381.980469 15.890625 382.074219 15.890625 382.191406 C 15.890625 382.308594 15.984375 382.402344 16.101562 382.402344 C 16.21875 382.402344 16.3125 382.308594 16.3125 382.191406 Z M 16.3125 382.191406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.984375 381.480469 C 14.984375 381.363281 14.890625 381.269531 14.773438 381.269531 C 14.65625 381.269531 14.5625 381.363281 14.5625 381.480469 C 14.5625 381.597656 14.65625 381.691406 14.773438 381.691406 C 14.890625 381.691406 14.984375 381.597656 14.984375 381.480469 Z M 14.984375 381.480469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.675781 381.519531 C 14.675781 381.402344 14.582031 381.308594 14.464844 381.308594 C 14.347656 381.308594 14.253906 381.402344 14.253906 381.519531 C 14.253906 381.636719 14.347656 381.730469 14.464844 381.730469 C 14.582031 381.730469 14.675781 381.636719 14.675781 381.519531 Z M 14.675781 381.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 15.527344 377.550781 C 15.527344 377.433594 15.433594 377.339844 15.316406 377.339844 C 15.199219 377.339844 15.105469 377.433594 15.105469 377.550781 C 15.105469 377.667969 15.199219 377.761719 15.316406 377.761719 C 15.433594 377.761719 15.527344 377.667969 15.527344 377.550781 Z M 15.527344 377.550781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 16.410156 381.90625 C 16.410156 381.789062 16.316406 381.695312 16.199219 381.695312 C 16.082031 381.695312 15.988281 381.789062 15.988281 381.90625 C 15.988281 382.023438 16.082031 382.117188 16.199219 382.117188 C 16.316406 382.117188 16.410156 382.023438 16.410156 381.90625 Z M 16.410156 381.90625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.972656 380.625 C 14.972656 380.507812 14.878906 380.414062 14.761719 380.414062 C 14.644531 380.414062 14.550781 380.507812 14.550781 380.625 C 14.550781 380.742188 14.644531 380.835938 14.761719 380.835938 C 14.878906 380.835938 14.972656 380.742188 14.972656 380.625 Z M 14.972656 380.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.511719 377.199219 C 13.511719 377.082031 13.417969 376.988281 13.300781 376.988281 C 13.183594 376.988281 13.089844 377.082031 13.089844 377.199219 C 13.089844 377.316406 13.183594 377.410156 13.300781 377.410156 C 13.417969 377.410156 13.511719 377.316406 13.511719 377.199219 Z M 13.511719 377.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.765625 379.601562 C 13.765625 379.484375 13.671875 379.390625 13.554688 379.390625 C 13.4375 379.390625 13.34375 379.484375 13.34375 379.601562 C 13.34375 379.71875 13.4375 379.8125 13.554688 379.8125 C 13.671875 379.8125 13.765625 379.71875 13.765625 379.601562 Z M 13.765625 379.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 13.691406 377.386719 C 13.691406 377.269531 13.597656 377.175781 13.480469 377.175781 C 13.363281 377.175781 13.269531 377.269531 13.269531 377.386719 C 13.269531 377.503906 13.363281 377.597656 13.480469 377.597656 C 13.597656 377.597656 13.691406 377.503906 13.691406 377.386719 Z M 13.691406 377.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 12.367188 376.070312 C 12.367188 375.953125 12.273438 375.859375 12.15625 375.859375 C 12.039062 375.859375 11.945312 375.953125 11.945312 376.070312 C 11.945312 376.1875 12.039062 376.28125 12.15625 376.28125 C 12.273438 376.28125 12.367188 376.1875 12.367188 376.070312 Z M 12.367188 376.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.351562 373.386719 C 14.351562 373.269531 14.257812 373.175781 14.140625 373.175781 C 14.023438 373.175781 13.929688 373.269531 13.929688 373.386719 C 13.929688 373.503906 14.023438 373.597656 14.140625 373.597656 C 14.257812 373.597656 14.351562 373.503906 14.351562 373.386719 Z M 14.351562 373.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 15.429688 373.734375 C 15.429688 373.617188 15.335938 373.523438 15.21875 373.523438 C 15.101562 373.523438 15.007812 373.617188 15.007812 373.734375 C 15.007812 373.851562 15.101562 373.945312 15.21875 373.945312 C 15.335938 373.945312 15.429688 373.851562 15.429688 373.734375 Z M 15.429688 373.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 20.121094 372.492188 C 20.121094 372.375 20.027344 372.28125 19.910156 372.28125 C 19.792969 372.28125 19.699219 372.375 19.699219 372.492188 C 19.699219 372.609375 19.792969 372.703125 19.910156 372.703125 C 20.027344 372.703125 20.121094 372.609375 20.121094 372.492188 Z M 20.121094 372.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 18.242188 372.128906 C 18.242188 372.011719 18.148438 371.917969 18.03125 371.917969 C 17.914062 371.917969 17.820312 372.011719 17.820312 372.128906 C 17.820312 372.246094 17.914062 372.339844 18.03125 372.339844 C 18.148438 372.339844 18.242188 372.246094 18.242188 372.128906 Z M 18.242188 372.128906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 18.511719 370.085938 C 18.511719 369.96875 18.417969 369.875 18.300781 369.875 C 18.183594 369.875 18.089844 369.96875 18.089844 370.085938 C 18.089844 370.203125 18.183594 370.296875 18.300781 370.296875 C 18.417969 370.296875 18.511719 370.203125 18.511719 370.085938 Z M 18.511719 370.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 16.566406 368.289062 C 16.566406 368.171875 16.472656 368.078125 16.355469 368.078125 C 16.238281 368.078125 16.144531 368.171875 16.144531 368.289062 C 16.144531 368.40625 16.238281 368.5 16.355469 368.5 C 16.472656 368.5 16.566406 368.40625 16.566406 368.289062 Z M 16.566406 368.289062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 16.003906 370.242188 C 16.003906 370.125 15.910156 370.03125 15.792969 370.03125 C 15.675781 370.03125 15.582031 370.125 15.582031 370.242188 C 15.582031 370.359375 15.675781 370.453125 15.792969 370.453125 C 15.910156 370.453125 16.003906 370.359375 16.003906 370.242188 Z M 16.003906 370.242188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 19.339844 370.445312 C 19.339844 370.328125 19.246094 370.234375 19.128906 370.234375 C 19.011719 370.234375 18.917969 370.328125 18.917969 370.445312 C 18.917969 370.5625 19.011719 370.65625 19.128906 370.65625 C 19.246094 370.65625 19.339844 370.5625 19.339844 370.445312 Z M 19.339844 370.445312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.234375 372.457031 C 25.234375 372.339844 25.140625 372.246094 25.023438 372.246094 C 24.90625 372.246094 24.8125 372.339844 24.8125 372.457031 C 24.8125 372.574219 24.90625 372.667969 25.023438 372.667969 C 25.140625 372.667969 25.234375 372.574219 25.234375 372.457031 Z M 25.234375 372.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.617188 372.902344 C 24.617188 372.785156 24.523438 372.691406 24.40625 372.691406 C 24.289062 372.691406 24.195312 372.785156 24.195312 372.902344 C 24.195312 373.019531 24.289062 373.113281 24.40625 373.113281 C 24.523438 373.113281 24.617188 373.019531 24.617188 372.902344 Z M 24.617188 372.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.320312 372.488281 C 25.320312 372.371094 25.226562 372.277344 25.109375 372.277344 C 24.992188 372.277344 24.898438 372.371094 24.898438 372.488281 C 24.898438 372.605469 24.992188 372.699219 25.109375 372.699219 C 25.226562 372.699219 25.320312 372.605469 25.320312 372.488281 Z M 25.320312 372.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.453125 373.015625 C 26.453125 372.898438 26.359375 372.804688 26.242188 372.804688 C 26.125 372.804688 26.03125 372.898438 26.03125 373.015625 C 26.03125 373.132812 26.125 373.226562 26.242188 373.226562 C 26.359375 373.226562 26.453125 373.132812 26.453125 373.015625 Z M 26.453125 373.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.171875 373.460938 C 27.171875 373.34375 27.078125 373.25 26.960938 373.25 C 26.84375 373.25 26.75 373.34375 26.75 373.460938 C 26.75 373.578125 26.84375 373.671875 26.960938 373.671875 C 27.078125 373.671875 27.171875 373.578125 27.171875 373.460938 Z M 27.171875 373.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.058594 370.375 C 25.058594 370.257812 24.964844 370.164062 24.847656 370.164062 C 24.730469 370.164062 24.636719 370.257812 24.636719 370.375 C 24.636719 370.492188 24.730469 370.585938 24.847656 370.585938 C 24.964844 370.585938 25.058594 370.492188 25.058594 370.375 Z M 25.058594 370.375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.203125 372.941406 C 23.203125 372.824219 23.109375 372.730469 22.992188 372.730469 C 22.875 372.730469 22.78125 372.824219 22.78125 372.941406 C 22.78125 373.058594 22.875 373.152344 22.992188 373.152344 C 23.109375 373.152344 23.203125 373.058594 23.203125 372.941406 Z M 23.203125 372.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.042969 373.878906 C 27.042969 373.761719 26.949219 373.667969 26.832031 373.667969 C 26.714844 373.667969 26.621094 373.761719 26.621094 373.878906 C 26.621094 373.996094 26.714844 374.089844 26.832031 374.089844 C 26.949219 374.089844 27.042969 373.996094 27.042969 373.878906 Z M 27.042969 373.878906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.738281 375.117188 C 25.738281 375 25.644531 374.90625 25.527344 374.90625 C 25.410156 374.90625 25.316406 375 25.316406 375.117188 C 25.316406 375.234375 25.410156 375.328125 25.527344 375.328125 C 25.644531 375.328125 25.738281 375.234375 25.738281 375.117188 Z M 25.738281 375.117188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.121094 374.226562 C 26.121094 374.109375 26.027344 374.015625 25.910156 374.015625 C 25.792969 374.015625 25.699219 374.109375 25.699219 374.226562 C 25.699219 374.34375 25.792969 374.4375 25.910156 374.4375 C 26.027344 374.4375 26.121094 374.34375 26.121094 374.226562 Z M 26.121094 374.226562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.777344 373.183594 C 29.777344 373.066406 29.683594 372.972656 29.566406 372.972656 C 29.449219 372.972656 29.355469 373.066406 29.355469 373.183594 C 29.355469 373.300781 29.449219 373.394531 29.566406 373.394531 C 29.683594 373.394531 29.777344 373.300781 29.777344 373.183594 Z M 29.777344 373.183594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.019531 371.746094 C 28.019531 371.628906 27.925781 371.535156 27.808594 371.535156 C 27.691406 371.535156 27.597656 371.628906 27.597656 371.746094 C 27.597656 371.863281 27.691406 371.957031 27.808594 371.957031 C 27.925781 371.957031 28.019531 371.863281 28.019531 371.746094 Z M 28.019531 371.746094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.515625 371.566406 C 27.515625 371.449219 27.421875 371.355469 27.304688 371.355469 C 27.1875 371.355469 27.09375 371.449219 27.09375 371.566406 C 27.09375 371.683594 27.1875 371.777344 27.304688 371.777344 C 27.421875 371.777344 27.515625 371.683594 27.515625 371.566406 Z M 27.515625 371.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.453125 372.902344 C 29.453125 372.785156 29.359375 372.691406 29.242188 372.691406 C 29.125 372.691406 29.03125 372.785156 29.03125 372.902344 C 29.03125 373.019531 29.125 373.113281 29.242188 373.113281 C 29.359375 373.113281 29.453125 373.019531 29.453125 372.902344 Z M 29.453125 372.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.378906 375.871094 C 30.378906 375.753906 30.285156 375.660156 30.167969 375.660156 C 30.050781 375.660156 29.957031 375.753906 29.957031 375.871094 C 29.957031 375.988281 30.050781 376.082031 30.167969 376.082031 C 30.285156 376.082031 30.378906 375.988281 30.378906 375.871094 Z M 30.378906 375.871094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.039062 372.714844 C 29.039062 372.597656 28.945312 372.503906 28.828125 372.503906 C 28.710938 372.503906 28.617188 372.597656 28.617188 372.714844 C 28.617188 372.832031 28.710938 372.925781 28.828125 372.925781 C 28.945312 372.925781 29.039062 372.832031 29.039062 372.714844 Z M 29.039062 372.714844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.140625 369.816406 C 30.140625 369.699219 30.046875 369.605469 29.929688 369.605469 C 29.8125 369.605469 29.71875 369.699219 29.71875 369.816406 C 29.71875 369.933594 29.8125 370.027344 29.929688 370.027344 C 30.046875 370.027344 30.140625 369.933594 30.140625 369.816406 Z M 30.140625 369.816406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.558594 369.527344 C 29.558594 369.410156 29.464844 369.316406 29.347656 369.316406 C 29.230469 369.316406 29.136719 369.410156 29.136719 369.527344 C 29.136719 369.644531 29.230469 369.738281 29.347656 369.738281 C 29.464844 369.738281 29.558594 369.644531 29.558594 369.527344 Z M 29.558594 369.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.875 368.246094 C 27.875 368.128906 27.78125 368.035156 27.664062 368.035156 C 27.546875 368.035156 27.453125 368.128906 27.453125 368.246094 C 27.453125 368.363281 27.546875 368.457031 27.664062 368.457031 C 27.78125 368.457031 27.875 368.363281 27.875 368.246094 Z M 27.875 368.246094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.554688 365.980469 C 27.554688 365.863281 27.460938 365.769531 27.34375 365.769531 C 27.226562 365.769531 27.132812 365.863281 27.132812 365.980469 C 27.132812 366.097656 27.226562 366.191406 27.34375 366.191406 C 27.460938 366.191406 27.554688 366.097656 27.554688 365.980469 Z M 27.554688 365.980469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.152344 365.222656 C 30.152344 365.105469 30.058594 365.011719 29.941406 365.011719 C 29.824219 365.011719 29.730469 365.105469 29.730469 365.222656 C 29.730469 365.339844 29.824219 365.433594 29.941406 365.433594 C 30.058594 365.433594 30.152344 365.339844 30.152344 365.222656 Z M 30.152344 365.222656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.4375 362 C 30.4375 361.882812 30.34375 361.789062 30.226562 361.789062 C 30.109375 361.789062 30.015625 361.882812 30.015625 362 C 30.015625 362.117188 30.109375 362.210938 30.226562 362.210938 C 30.34375 362.210938 30.4375 362.117188 30.4375 362 Z M 30.4375 362 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.101562 364.042969 C 29.101562 363.925781 29.007812 363.832031 28.890625 363.832031 C 28.773438 363.832031 28.679688 363.925781 28.679688 364.042969 C 28.679688 364.160156 28.773438 364.253906 28.890625 364.253906 C 29.007812 364.253906 29.101562 364.160156 29.101562 364.042969 Z M 29.101562 364.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.390625 364.917969 C 29.390625 364.800781 29.296875 364.707031 29.179688 364.707031 C 29.0625 364.707031 28.96875 364.800781 28.96875 364.917969 C 28.96875 365.035156 29.0625 365.128906 29.179688 365.128906 C 29.296875 365.128906 29.390625 365.035156 29.390625 364.917969 Z M 29.390625 364.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.511719 362.457031 C 28.511719 362.339844 28.417969 362.246094 28.300781 362.246094 C 28.183594 362.246094 28.089844 362.339844 28.089844 362.457031 C 28.089844 362.574219 28.183594 362.667969 28.300781 362.667969 C 28.417969 362.667969 28.511719 362.574219 28.511719 362.457031 Z M 28.511719 362.457031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.390625 367.511719 C 29.390625 367.394531 29.296875 367.300781 29.179688 367.300781 C 29.0625 367.300781 28.96875 367.394531 28.96875 367.511719 C 28.96875 367.628906 29.0625 367.722656 29.179688 367.722656 C 29.296875 367.722656 29.390625 367.628906 29.390625 367.511719 Z M 29.390625 367.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.988281 366.894531 C 29.988281 366.777344 29.894531 366.683594 29.777344 366.683594 C 29.660156 366.683594 29.566406 366.777344 29.566406 366.894531 C 29.566406 367.011719 29.660156 367.105469 29.777344 367.105469 C 29.894531 367.105469 29.988281 367.011719 29.988281 366.894531 Z M 29.988281 366.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.15625 368.640625 C 32.15625 368.523438 32.0625 368.429688 31.945312 368.429688 C 31.828125 368.429688 31.734375 368.523438 31.734375 368.640625 C 31.734375 368.757812 31.828125 368.851562 31.945312 368.851562 C 32.0625 368.851562 32.15625 368.757812 32.15625 368.640625 Z M 32.15625 368.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 34.457031 369.84375 C 34.457031 369.726562 34.363281 369.632812 34.246094 369.632812 C 34.128906 369.632812 34.035156 369.726562 34.035156 369.84375 C 34.035156 369.960938 34.128906 370.054688 34.246094 370.054688 C 34.363281 370.054688 34.457031 369.960938 34.457031 369.84375 Z M 34.457031 369.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.707031 367.472656 C 30.707031 367.355469 30.613281 367.261719 30.496094 367.261719 C 30.378906 367.261719 30.285156 367.355469 30.285156 367.472656 C 30.285156 367.589844 30.378906 367.683594 30.496094 367.683594 C 30.613281 367.683594 30.707031 367.589844 30.707031 367.472656 Z M 30.707031 367.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.097656 363.742188 C 31.097656 363.625 31.003906 363.53125 30.886719 363.53125 C 30.769531 363.53125 30.675781 363.625 30.675781 363.742188 C 30.675781 363.859375 30.769531 363.953125 30.886719 363.953125 C 31.003906 363.953125 31.097656 363.859375 31.097656 363.742188 Z M 31.097656 363.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.835938 360.726562 C 30.835938 360.609375 30.742188 360.515625 30.625 360.515625 C 30.507812 360.515625 30.414062 360.609375 30.414062 360.726562 C 30.414062 360.84375 30.507812 360.9375 30.625 360.9375 C 30.742188 360.9375 30.835938 360.84375 30.835938 360.726562 Z M 30.835938 360.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.457031 361.527344 C 32.457031 361.410156 32.363281 361.316406 32.246094 361.316406 C 32.128906 361.316406 32.035156 361.410156 32.035156 361.527344 C 32.035156 361.644531 32.128906 361.738281 32.246094 361.738281 C 32.363281 361.738281 32.457031 361.644531 32.457031 361.527344 Z M 32.457031 361.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.710938 361.703125 C 33.710938 361.585938 33.617188 361.492188 33.5 361.492188 C 33.382812 361.492188 33.289062 361.585938 33.289062 361.703125 C 33.289062 361.820312 33.382812 361.914062 33.5 361.914062 C 33.617188 361.914062 33.710938 361.820312 33.710938 361.703125 Z M 33.710938 361.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.046875 364.601562 C 35.046875 364.484375 34.953125 364.390625 34.835938 364.390625 C 34.71875 364.390625 34.625 364.484375 34.625 364.601562 C 34.625 364.71875 34.71875 364.8125 34.835938 364.8125 C 34.953125 364.8125 35.046875 364.71875 35.046875 364.601562 Z M 35.046875 364.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.085938 363.121094 C 35.085938 363.003906 34.992188 362.910156 34.875 362.910156 C 34.757812 362.910156 34.664062 363.003906 34.664062 363.121094 C 34.664062 363.238281 34.757812 363.332031 34.875 363.332031 C 34.992188 363.332031 35.085938 363.238281 35.085938 363.121094 Z M 35.085938 363.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 34.921875 363.75 C 34.921875 363.632812 34.828125 363.539062 34.710938 363.539062 C 34.59375 363.539062 34.5 363.632812 34.5 363.75 C 34.5 363.867188 34.59375 363.960938 34.710938 363.960938 C 34.828125 363.960938 34.921875 363.867188 34.921875 363.75 Z M 34.921875 363.75 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.203125 362.511719 C 35.203125 362.394531 35.109375 362.300781 34.992188 362.300781 C 34.875 362.300781 34.78125 362.394531 34.78125 362.511719 C 34.78125 362.628906 34.875 362.722656 34.992188 362.722656 C 35.109375 362.722656 35.203125 362.628906 35.203125 362.511719 Z M 35.203125 362.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.378906 364.621094 C 33.378906 364.503906 33.285156 364.410156 33.167969 364.410156 C 33.050781 364.410156 32.957031 364.503906 32.957031 364.621094 C 32.957031 364.738281 33.050781 364.832031 33.167969 364.832031 C 33.285156 364.832031 33.378906 364.738281 33.378906 364.621094 Z M 33.378906 364.621094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.117188 364.25 C 36.117188 364.132812 36.023438 364.039062 35.90625 364.039062 C 35.789062 364.039062 35.695312 364.132812 35.695312 364.25 C 35.695312 364.367188 35.789062 364.460938 35.90625 364.460938 C 36.023438 364.460938 36.117188 364.367188 36.117188 364.25 Z M 36.117188 364.25 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.15625 364.386719 C 36.15625 364.269531 36.0625 364.175781 35.945312 364.175781 C 35.828125 364.175781 35.734375 364.269531 35.734375 364.386719 C 35.734375 364.503906 35.828125 364.597656 35.945312 364.597656 C 36.0625 364.597656 36.15625 364.503906 36.15625 364.386719 Z M 36.15625 364.386719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.128906 367.570312 C 36.128906 367.453125 36.035156 367.359375 35.917969 367.359375 C 35.800781 367.359375 35.707031 367.453125 35.707031 367.570312 C 35.707031 367.6875 35.800781 367.78125 35.917969 367.78125 C 36.035156 367.78125 36.128906 367.6875 36.128906 367.570312 Z M 36.128906 367.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 39.75 365.417969 C 39.75 365.300781 39.65625 365.207031 39.539062 365.207031 C 39.421875 365.207031 39.328125 365.300781 39.328125 365.417969 C 39.328125 365.535156 39.421875 365.628906 39.539062 365.628906 C 39.65625 365.628906 39.75 365.535156 39.75 365.417969 Z M 39.75 365.417969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.0625 365.84375 C 37.0625 365.726562 36.96875 365.632812 36.851562 365.632812 C 36.734375 365.632812 36.640625 365.726562 36.640625 365.84375 C 36.640625 365.960938 36.734375 366.054688 36.851562 366.054688 C 36.96875 366.054688 37.0625 365.960938 37.0625 365.84375 Z M 37.0625 365.84375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.667969 365.472656 C 36.667969 365.355469 36.574219 365.261719 36.457031 365.261719 C 36.339844 365.261719 36.246094 365.355469 36.246094 365.472656 C 36.246094 365.589844 36.339844 365.683594 36.457031 365.683594 C 36.574219 365.683594 36.667969 365.589844 36.667969 365.472656 Z M 36.667969 365.472656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.964844 364.890625 C 37.964844 364.773438 37.871094 364.679688 37.753906 364.679688 C 37.636719 364.679688 37.542969 364.773438 37.542969 364.890625 C 37.542969 365.007812 37.636719 365.101562 37.753906 365.101562 C 37.871094 365.101562 37.964844 365.007812 37.964844 364.890625 Z M 37.964844 364.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 40.4375 366.570312 C 40.4375 366.453125 40.34375 366.359375 40.226562 366.359375 C 40.109375 366.359375 40.015625 366.453125 40.015625 366.570312 C 40.015625 366.6875 40.109375 366.78125 40.226562 366.78125 C 40.34375 366.78125 40.4375 366.6875 40.4375 366.570312 Z M 40.4375 366.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 43.222656 361.933594 C 43.222656 361.816406 43.128906 361.722656 43.011719 361.722656 C 42.894531 361.722656 42.800781 361.816406 42.800781 361.933594 C 42.800781 362.050781 42.894531 362.144531 43.011719 362.144531 C 43.128906 362.144531 43.222656 362.050781 43.222656 361.933594 Z M 43.222656 361.933594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 44.5625 366.53125 C 44.5625 366.414062 44.46875 366.320312 44.351562 366.320312 C 44.234375 366.320312 44.140625 366.414062 44.140625 366.53125 C 44.140625 366.648438 44.234375 366.742188 44.351562 366.742188 C 44.46875 366.742188 44.5625 366.648438 44.5625 366.53125 Z M 44.5625 366.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 43.6875 362.734375 C 43.6875 362.617188 43.59375 362.523438 43.476562 362.523438 C 43.359375 362.523438 43.265625 362.617188 43.265625 362.734375 C 43.265625 362.851562 43.359375 362.945312 43.476562 362.945312 C 43.59375 362.945312 43.6875 362.851562 43.6875 362.734375 Z M 43.6875 362.734375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 42.597656 362.726562 C 42.597656 362.609375 42.503906 362.515625 42.386719 362.515625 C 42.269531 362.515625 42.175781 362.609375 42.175781 362.726562 C 42.175781 362.84375 42.269531 362.9375 42.386719 362.9375 C 42.503906 362.9375 42.597656 362.84375 42.597656 362.726562 Z M 42.597656 362.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 43.3125 364.347656 C 43.3125 364.230469 43.21875 364.136719 43.101562 364.136719 C 42.984375 364.136719 42.890625 364.230469 42.890625 364.347656 C 42.890625 364.464844 42.984375 364.558594 43.101562 364.558594 C 43.21875 364.558594 43.3125 364.464844 43.3125 364.347656 Z M 43.3125 364.347656 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 41.957031 364.859375 C 41.957031 364.742188 41.863281 364.648438 41.746094 364.648438 C 41.628906 364.648438 41.535156 364.742188 41.535156 364.859375 C 41.535156 364.976562 41.628906 365.070312 41.746094 365.070312 C 41.863281 365.070312 41.957031 364.976562 41.957031 364.859375 Z M 41.957031 364.859375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 40.253906 362.140625 C 40.253906 362.023438 40.160156 361.929688 40.042969 361.929688 C 39.925781 361.929688 39.832031 362.023438 39.832031 362.140625 C 39.832031 362.257812 39.925781 362.351562 40.042969 362.351562 C 40.160156 362.351562 40.253906 362.257812 40.253906 362.140625 Z M 40.253906 362.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 39.03125 357.953125 C 39.03125 357.835938 38.9375 357.742188 38.820312 357.742188 C 38.703125 357.742188 38.609375 357.835938 38.609375 357.953125 C 38.609375 358.070312 38.703125 358.164062 38.820312 358.164062 C 38.9375 358.164062 39.03125 358.070312 39.03125 357.953125 Z M 39.03125 357.953125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.535156 356.28125 C 36.535156 356.164062 36.441406 356.070312 36.324219 356.070312 C 36.207031 356.070312 36.113281 356.164062 36.113281 356.28125 C 36.113281 356.398438 36.207031 356.492188 36.324219 356.492188 C 36.441406 356.492188 36.535156 356.398438 36.535156 356.28125 Z M 36.535156 356.28125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 40.453125 356.640625 C 40.453125 356.523438 40.359375 356.429688 40.242188 356.429688 C 40.125 356.429688 40.03125 356.523438 40.03125 356.640625 C 40.03125 356.757812 40.125 356.851562 40.242188 356.851562 C 40.359375 356.851562 40.453125 356.757812 40.453125 356.640625 Z M 40.453125 356.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 40.78125 356.253906 C 40.78125 356.136719 40.6875 356.042969 40.570312 356.042969 C 40.453125 356.042969 40.359375 356.136719 40.359375 356.253906 C 40.359375 356.371094 40.453125 356.464844 40.570312 356.464844 C 40.6875 356.464844 40.78125 356.371094 40.78125 356.253906 Z M 40.78125 356.253906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.328125 355.613281 C 38.328125 355.496094 38.234375 355.402344 38.117188 355.402344 C 38 355.402344 37.90625 355.496094 37.90625 355.613281 C 37.90625 355.730469 38 355.824219 38.117188 355.824219 C 38.234375 355.824219 38.328125 355.730469 38.328125 355.613281 Z M 38.328125 355.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.574219 355.308594 C 38.574219 355.191406 38.480469 355.097656 38.363281 355.097656 C 38.246094 355.097656 38.152344 355.191406 38.152344 355.308594 C 38.152344 355.425781 38.246094 355.519531 38.363281 355.519531 C 38.480469 355.519531 38.574219 355.425781 38.574219 355.308594 Z M 38.574219 355.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.042969 355.5625 C 36.042969 355.445312 35.949219 355.351562 35.832031 355.351562 C 35.714844 355.351562 35.621094 355.445312 35.621094 355.5625 C 35.621094 355.679688 35.714844 355.773438 35.832031 355.773438 C 35.949219 355.773438 36.042969 355.679688 36.042969 355.5625 Z M 36.042969 355.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.484375 355.488281 C 35.484375 355.371094 35.390625 355.277344 35.273438 355.277344 C 35.15625 355.277344 35.0625 355.371094 35.0625 355.488281 C 35.0625 355.605469 35.15625 355.699219 35.273438 355.699219 C 35.390625 355.699219 35.484375 355.605469 35.484375 355.488281 Z M 35.484375 355.488281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.746094 357.527344 C 31.746094 357.410156 31.652344 357.316406 31.535156 357.316406 C 31.417969 357.316406 31.324219 357.410156 31.324219 357.527344 C 31.324219 357.644531 31.417969 357.738281 31.535156 357.738281 C 31.652344 357.738281 31.746094 357.644531 31.746094 357.527344 Z M 31.746094 357.527344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.035156 357.402344 C 30.035156 357.285156 29.941406 357.191406 29.824219 357.191406 C 29.707031 357.191406 29.613281 357.285156 29.613281 357.402344 C 29.613281 357.519531 29.707031 357.613281 29.824219 357.613281 C 29.941406 357.613281 30.035156 357.519531 30.035156 357.402344 Z M 30.035156 357.402344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.148438 358.957031 C 27.148438 358.839844 27.054688 358.746094 26.9375 358.746094 C 26.820312 358.746094 26.726562 358.839844 26.726562 358.957031 C 26.726562 359.074219 26.820312 359.167969 26.9375 359.167969 C 27.054688 359.167969 27.148438 359.074219 27.148438 358.957031 Z M 27.148438 358.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.191406 361.792969 C 32.191406 361.675781 32.097656 361.582031 31.980469 361.582031 C 31.863281 361.582031 31.769531 361.675781 31.769531 361.792969 C 31.769531 361.910156 31.863281 362.003906 31.980469 362.003906 C 32.097656 362.003906 32.191406 361.910156 32.191406 361.792969 Z M 32.191406 361.792969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.558594 360.441406 C 32.558594 360.324219 32.464844 360.230469 32.347656 360.230469 C 32.230469 360.230469 32.136719 360.324219 32.136719 360.441406 C 32.136719 360.558594 32.230469 360.652344 32.347656 360.652344 C 32.464844 360.652344 32.558594 360.558594 32.558594 360.441406 Z M 32.558594 360.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.277344 359.433594 C 32.277344 359.316406 32.183594 359.222656 32.066406 359.222656 C 31.949219 359.222656 31.855469 359.316406 31.855469 359.433594 C 31.855469 359.550781 31.949219 359.644531 32.066406 359.644531 C 32.183594 359.644531 32.277344 359.550781 32.277344 359.433594 Z M 32.277344 359.433594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.542969 360.136719 C 32.542969 360.019531 32.449219 359.925781 32.332031 359.925781 C 32.214844 359.925781 32.121094 360.019531 32.121094 360.136719 C 32.121094 360.253906 32.214844 360.347656 32.332031 360.347656 C 32.449219 360.347656 32.542969 360.253906 32.542969 360.136719 Z M 32.542969 360.136719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.988281 359.625 C 35.988281 359.507812 35.894531 359.414062 35.777344 359.414062 C 35.660156 359.414062 35.566406 359.507812 35.566406 359.625 C 35.566406 359.742188 35.660156 359.835938 35.777344 359.835938 C 35.894531 359.835938 35.988281 359.742188 35.988281 359.625 Z M 35.988281 359.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.785156 358.3125 C 33.785156 358.195312 33.691406 358.101562 33.574219 358.101562 C 33.457031 358.101562 33.363281 358.195312 33.363281 358.3125 C 33.363281 358.429688 33.457031 358.523438 33.574219 358.523438 C 33.691406 358.523438 33.785156 358.429688 33.785156 358.3125 Z M 33.785156 358.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.335938 361.425781 C 32.335938 361.308594 32.242188 361.214844 32.125 361.214844 C 32.007812 361.214844 31.914062 361.308594 31.914062 361.425781 C 31.914062 361.542969 32.007812 361.636719 32.125 361.636719 C 32.242188 361.636719 32.335938 361.542969 32.335938 361.425781 Z M 32.335938 361.425781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.175781 360.628906 C 33.175781 360.511719 33.082031 360.417969 32.964844 360.417969 C 32.847656 360.417969 32.753906 360.511719 32.753906 360.628906 C 32.753906 360.746094 32.847656 360.839844 32.964844 360.839844 C 33.082031 360.839844 33.175781 360.746094 33.175781 360.628906 Z M 33.175781 360.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.570312 361.363281 C 31.570312 361.246094 31.476562 361.152344 31.359375 361.152344 C 31.242188 361.152344 31.148438 361.246094 31.148438 361.363281 C 31.148438 361.480469 31.242188 361.574219 31.359375 361.574219 C 31.476562 361.574219 31.570312 361.480469 31.570312 361.363281 Z M 31.570312 361.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.171875 364.085938 C 35.171875 363.96875 35.078125 363.875 34.960938 363.875 C 34.84375 363.875 34.75 363.96875 34.75 364.085938 C 34.75 364.203125 34.84375 364.296875 34.960938 364.296875 C 35.078125 364.296875 35.171875 364.203125 35.171875 364.085938 Z M 35.171875 364.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 40.300781 362.59375 C 40.300781 362.476562 40.207031 362.382812 40.089844 362.382812 C 39.972656 362.382812 39.878906 362.476562 39.878906 362.59375 C 39.878906 362.710938 39.972656 362.804688 40.089844 362.804688 C 40.207031 362.804688 40.300781 362.710938 40.300781 362.59375 Z M 40.300781 362.59375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.765625 364.054688 C 36.765625 363.9375 36.671875 363.84375 36.554688 363.84375 C 36.4375 363.84375 36.34375 363.9375 36.34375 364.054688 C 36.34375 364.171875 36.4375 364.265625 36.554688 364.265625 C 36.671875 364.265625 36.765625 364.171875 36.765625 364.054688 Z M 36.765625 364.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.171875 366.8125 C 35.171875 366.695312 35.078125 366.601562 34.960938 366.601562 C 34.84375 366.601562 34.75 366.695312 34.75 366.8125 C 34.75 366.929688 34.84375 367.023438 34.960938 367.023438 C 35.078125 367.023438 35.171875 366.929688 35.171875 366.8125 Z M 35.171875 366.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.96875 364.917969 C 29.96875 364.800781 29.875 364.707031 29.757812 364.707031 C 29.640625 364.707031 29.546875 364.800781 29.546875 364.917969 C 29.546875 365.035156 29.640625 365.128906 29.757812 365.128906 C 29.875 365.128906 29.96875 365.035156 29.96875 364.917969 Z M 29.96875 364.917969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.804688 364.9375 C 24.804688 364.820312 24.710938 364.726562 24.59375 364.726562 C 24.476562 364.726562 24.382812 364.820312 24.382812 364.9375 C 24.382812 365.054688 24.476562 365.148438 24.59375 365.148438 C 24.710938 365.148438 24.804688 365.054688 24.804688 364.9375 Z M 24.804688 364.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.527344 365.109375 C 25.527344 364.992188 25.433594 364.898438 25.316406 364.898438 C 25.199219 364.898438 25.105469 364.992188 25.105469 365.109375 C 25.105469 365.226562 25.199219 365.320312 25.316406 365.320312 C 25.433594 365.320312 25.527344 365.226562 25.527344 365.109375 Z M 25.527344 365.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.652344 367.601562 C 25.652344 367.484375 25.558594 367.390625 25.441406 367.390625 C 25.324219 367.390625 25.230469 367.484375 25.230469 367.601562 C 25.230469 367.71875 25.324219 367.8125 25.441406 367.8125 C 25.558594 367.8125 25.652344 367.71875 25.652344 367.601562 Z M 25.652344 367.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.890625 367.855469 C 28.890625 367.738281 28.796875 367.644531 28.679688 367.644531 C 28.5625 367.644531 28.46875 367.738281 28.46875 367.855469 C 28.46875 367.972656 28.5625 368.066406 28.679688 368.066406 C 28.796875 368.066406 28.890625 367.972656 28.890625 367.855469 Z M 28.890625 367.855469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.402344 368.3125 C 29.402344 368.195312 29.308594 368.101562 29.191406 368.101562 C 29.074219 368.101562 28.980469 368.195312 28.980469 368.3125 C 28.980469 368.429688 29.074219 368.523438 29.191406 368.523438 C 29.308594 368.523438 29.402344 368.429688 29.402344 368.3125 Z M 29.402344 368.3125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.234375 368.902344 C 29.234375 368.785156 29.140625 368.691406 29.023438 368.691406 C 28.90625 368.691406 28.8125 368.785156 28.8125 368.902344 C 28.8125 369.019531 28.90625 369.113281 29.023438 369.113281 C 29.140625 369.113281 29.234375 369.019531 29.234375 368.902344 Z M 29.234375 368.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.039062 367.453125 C 27.039062 367.335938 26.945312 367.242188 26.828125 367.242188 C 26.710938 367.242188 26.617188 367.335938 26.617188 367.453125 C 26.617188 367.570312 26.710938 367.664062 26.828125 367.664062 C 26.945312 367.664062 27.039062 367.570312 27.039062 367.453125 Z M 27.039062 367.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.515625 368.410156 C 29.515625 368.292969 29.421875 368.199219 29.304688 368.199219 C 29.1875 368.199219 29.09375 368.292969 29.09375 368.410156 C 29.09375 368.527344 29.1875 368.621094 29.304688 368.621094 C 29.421875 368.621094 29.515625 368.527344 29.515625 368.410156 Z M 29.515625 368.410156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.128906 367.164062 C 30.128906 367.046875 30.035156 366.953125 29.917969 366.953125 C 29.800781 366.953125 29.707031 367.046875 29.707031 367.164062 C 29.707031 367.28125 29.800781 367.375 29.917969 367.375 C 30.035156 367.375 30.128906 367.28125 30.128906 367.164062 Z M 30.128906 367.164062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.863281 364.507812 C 28.863281 364.390625 28.769531 364.296875 28.652344 364.296875 C 28.535156 364.296875 28.441406 364.390625 28.441406 364.507812 C 28.441406 364.625 28.535156 364.71875 28.652344 364.71875 C 28.769531 364.71875 28.863281 364.625 28.863281 364.507812 Z M 28.863281 364.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.914062 362.511719 C 28.914062 362.394531 28.820312 362.300781 28.703125 362.300781 C 28.585938 362.300781 28.492188 362.394531 28.492188 362.511719 C 28.492188 362.628906 28.585938 362.722656 28.703125 362.722656 C 28.820312 362.722656 28.914062 362.628906 28.914062 362.511719 Z M 28.914062 362.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.769531 362.390625 C 28.769531 362.273438 28.675781 362.179688 28.558594 362.179688 C 28.441406 362.179688 28.347656 362.273438 28.347656 362.390625 C 28.347656 362.507812 28.441406 362.601562 28.558594 362.601562 C 28.675781 362.601562 28.769531 362.507812 28.769531 362.390625 Z M 28.769531 362.390625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.902344 364.40625 C 30.902344 364.289062 30.808594 364.195312 30.691406 364.195312 C 30.574219 364.195312 30.480469 364.289062 30.480469 364.40625 C 30.480469 364.523438 30.574219 364.617188 30.691406 364.617188 C 30.808594 364.617188 30.902344 364.523438 30.902344 364.40625 Z M 30.902344 364.40625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.929688 363.441406 C 28.929688 363.324219 28.835938 363.230469 28.71875 363.230469 C 28.601562 363.230469 28.507812 363.324219 28.507812 363.441406 C 28.507812 363.558594 28.601562 363.652344 28.71875 363.652344 C 28.835938 363.652344 28.929688 363.558594 28.929688 363.441406 Z M 28.929688 363.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.390625 364.171875 C 31.390625 364.054688 31.296875 363.960938 31.179688 363.960938 C 31.0625 363.960938 30.96875 364.054688 30.96875 364.171875 C 30.96875 364.289062 31.0625 364.382812 31.179688 364.382812 C 31.296875 364.382812 31.390625 364.289062 31.390625 364.171875 Z M 31.390625 364.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.941406 367.308594 C 31.941406 367.191406 31.847656 367.097656 31.730469 367.097656 C 31.613281 367.097656 31.519531 367.191406 31.519531 367.308594 C 31.519531 367.425781 31.613281 367.519531 31.730469 367.519531 C 31.847656 367.519531 31.941406 367.425781 31.941406 367.308594 Z M 31.941406 367.308594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.714844 368.316406 C 31.714844 368.199219 31.621094 368.105469 31.503906 368.105469 C 31.386719 368.105469 31.292969 368.199219 31.292969 368.316406 C 31.292969 368.433594 31.386719 368.527344 31.503906 368.527344 C 31.621094 368.527344 31.714844 368.433594 31.714844 368.316406 Z M 31.714844 368.316406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.308594 371.640625 C 30.308594 371.523438 30.214844 371.429688 30.097656 371.429688 C 29.980469 371.429688 29.886719 371.523438 29.886719 371.640625 C 29.886719 371.757812 29.980469 371.851562 30.097656 371.851562 C 30.214844 371.851562 30.308594 371.757812 30.308594 371.640625 Z M 30.308594 371.640625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.242188 373.5625 C 29.242188 373.445312 29.148438 373.351562 29.03125 373.351562 C 28.914062 373.351562 28.820312 373.445312 28.820312 373.5625 C 28.820312 373.679688 28.914062 373.773438 29.03125 373.773438 C 29.148438 373.773438 29.242188 373.679688 29.242188 373.5625 Z M 29.242188 373.5625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.992188 371.691406 C 29.992188 371.574219 29.898438 371.480469 29.78125 371.480469 C 29.664062 371.480469 29.570312 371.574219 29.570312 371.691406 C 29.570312 371.808594 29.664062 371.902344 29.78125 371.902344 C 29.898438 371.902344 29.992188 371.808594 29.992188 371.691406 Z M 29.992188 371.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.027344 371.957031 C 28.027344 371.839844 27.933594 371.746094 27.816406 371.746094 C 27.699219 371.746094 27.605469 371.839844 27.605469 371.957031 C 27.605469 372.074219 27.699219 372.167969 27.816406 372.167969 C 27.933594 372.167969 28.027344 372.074219 28.027344 371.957031 Z M 28.027344 371.957031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.984375 372.109375 C 27.984375 371.992188 27.890625 371.898438 27.773438 371.898438 C 27.65625 371.898438 27.5625 371.992188 27.5625 372.109375 C 27.5625 372.226562 27.65625 372.320312 27.773438 372.320312 C 27.890625 372.320312 27.984375 372.226562 27.984375 372.109375 Z M 27.984375 372.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.9375 371.453125 C 27.9375 371.335938 27.84375 371.242188 27.726562 371.242188 C 27.609375 371.242188 27.515625 371.335938 27.515625 371.453125 C 27.515625 371.570312 27.609375 371.664062 27.726562 371.664062 C 27.84375 371.664062 27.9375 371.570312 27.9375 371.453125 Z M 27.9375 371.453125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.894531 369.460938 C 26.894531 369.34375 26.800781 369.25 26.683594 369.25 C 26.566406 369.25 26.472656 369.34375 26.472656 369.460938 C 26.472656 369.578125 26.566406 369.671875 26.683594 369.671875 C 26.800781 369.671875 26.894531 369.578125 26.894531 369.460938 Z M 26.894531 369.460938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.644531 369.003906 C 29.644531 368.886719 29.550781 368.792969 29.433594 368.792969 C 29.316406 368.792969 29.222656 368.886719 29.222656 369.003906 C 29.222656 369.121094 29.316406 369.214844 29.433594 369.214844 C 29.550781 369.214844 29.644531 369.121094 29.644531 369.003906 Z M 29.644531 369.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.992188 369.199219 C 31.992188 369.082031 31.898438 368.988281 31.78125 368.988281 C 31.664062 368.988281 31.570312 369.082031 31.570312 369.199219 C 31.570312 369.316406 31.664062 369.410156 31.78125 369.410156 C 31.898438 369.410156 31.992188 369.316406 31.992188 369.199219 Z M 31.992188 369.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.941406 367.882812 C 31.941406 367.765625 31.847656 367.671875 31.730469 367.671875 C 31.613281 367.671875 31.519531 367.765625 31.519531 367.882812 C 31.519531 368 31.613281 368.09375 31.730469 368.09375 C 31.847656 368.09375 31.941406 368 31.941406 367.882812 Z M 31.941406 367.882812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.160156 369.757812 C 32.160156 369.640625 32.066406 369.546875 31.949219 369.546875 C 31.832031 369.546875 31.738281 369.640625 31.738281 369.757812 C 31.738281 369.875 31.832031 369.96875 31.949219 369.96875 C 32.066406 369.96875 32.160156 369.875 32.160156 369.757812 Z M 32.160156 369.757812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.972656 369.785156 C 30.972656 369.667969 30.878906 369.574219 30.761719 369.574219 C 30.644531 369.574219 30.550781 369.667969 30.550781 369.785156 C 30.550781 369.902344 30.644531 369.996094 30.761719 369.996094 C 30.878906 369.996094 30.972656 369.902344 30.972656 369.785156 Z M 30.972656 369.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.609375 371.511719 C 35.609375 371.394531 35.515625 371.300781 35.398438 371.300781 C 35.28125 371.300781 35.1875 371.394531 35.1875 371.511719 C 35.1875 371.628906 35.28125 371.722656 35.398438 371.722656 C 35.515625 371.722656 35.609375 371.628906 35.609375 371.511719 Z M 35.609375 371.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.09375 371.515625 C 35.09375 371.398438 35 371.304688 34.882812 371.304688 C 34.765625 371.304688 34.671875 371.398438 34.671875 371.515625 C 34.671875 371.632812 34.765625 371.726562 34.882812 371.726562 C 35 371.726562 35.09375 371.632812 35.09375 371.515625 Z M 35.09375 371.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.617188 373.863281 C 35.617188 373.746094 35.523438 373.652344 35.40625 373.652344 C 35.289062 373.652344 35.195312 373.746094 35.195312 373.863281 C 35.195312 373.980469 35.289062 374.074219 35.40625 374.074219 C 35.523438 374.074219 35.617188 373.980469 35.617188 373.863281 Z M 35.617188 373.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.703125 372.679688 C 31.703125 372.5625 31.609375 372.46875 31.492188 372.46875 C 31.375 372.46875 31.28125 372.5625 31.28125 372.679688 C 31.28125 372.796875 31.375 372.890625 31.492188 372.890625 C 31.609375 372.890625 31.703125 372.796875 31.703125 372.679688 Z M 31.703125 372.679688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.390625 372.867188 C 30.390625 372.75 30.296875 372.65625 30.179688 372.65625 C 30.0625 372.65625 29.96875 372.75 29.96875 372.867188 C 29.96875 372.984375 30.0625 373.078125 30.179688 373.078125 C 30.296875 373.078125 30.390625 372.984375 30.390625 372.867188 Z M 30.390625 372.867188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.574219 374.03125 C 30.574219 373.914062 30.480469 373.820312 30.363281 373.820312 C 30.246094 373.820312 30.152344 373.914062 30.152344 374.03125 C 30.152344 374.148438 30.246094 374.242188 30.363281 374.242188 C 30.480469 374.242188 30.574219 374.148438 30.574219 374.03125 Z M 30.574219 374.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.863281 375.601562 C 30.863281 375.484375 30.769531 375.390625 30.652344 375.390625 C 30.535156 375.390625 30.441406 375.484375 30.441406 375.601562 C 30.441406 375.71875 30.535156 375.8125 30.652344 375.8125 C 30.769531 375.8125 30.863281 375.71875 30.863281 375.601562 Z M 30.863281 375.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.488281 373.207031 C 32.488281 373.089844 32.394531 372.996094 32.277344 372.996094 C 32.160156 372.996094 32.066406 373.089844 32.066406 373.207031 C 32.066406 373.324219 32.160156 373.417969 32.277344 373.417969 C 32.394531 373.417969 32.488281 373.324219 32.488281 373.207031 Z M 32.488281 373.207031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.238281 375.167969 C 36.238281 375.050781 36.144531 374.957031 36.027344 374.957031 C 35.910156 374.957031 35.816406 375.050781 35.816406 375.167969 C 35.816406 375.285156 35.910156 375.378906 36.027344 375.378906 C 36.144531 375.378906 36.238281 375.285156 36.238281 375.167969 Z M 36.238281 375.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.125 373.707031 C 35.125 373.589844 35.03125 373.496094 34.914062 373.496094 C 34.796875 373.496094 34.703125 373.589844 34.703125 373.707031 C 34.703125 373.824219 34.796875 373.917969 34.914062 373.917969 C 35.03125 373.917969 35.125 373.824219 35.125 373.707031 Z M 35.125 373.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.914062 369.707031 C 33.914062 369.589844 33.820312 369.496094 33.703125 369.496094 C 33.585938 369.496094 33.492188 369.589844 33.492188 369.707031 C 33.492188 369.824219 33.585938 369.917969 33.703125 369.917969 C 33.820312 369.917969 33.914062 369.824219 33.914062 369.707031 Z M 33.914062 369.707031 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.085938 365.515625 C 29.085938 365.398438 28.992188 365.304688 28.875 365.304688 C 28.757812 365.304688 28.664062 365.398438 28.664062 365.515625 C 28.664062 365.632812 28.757812 365.726562 28.875 365.726562 C 28.992188 365.726562 29.085938 365.632812 29.085938 365.515625 Z M 29.085938 365.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.78125 366.414062 C 24.78125 366.296875 24.6875 366.203125 24.570312 366.203125 C 24.453125 366.203125 24.359375 366.296875 24.359375 366.414062 C 24.359375 366.53125 24.453125 366.625 24.570312 366.625 C 24.6875 366.625 24.78125 366.53125 24.78125 366.414062 Z M 24.78125 366.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.554688 363.703125 C 26.554688 363.585938 26.460938 363.492188 26.34375 363.492188 C 26.226562 363.492188 26.132812 363.585938 26.132812 363.703125 C 26.132812 363.820312 26.226562 363.914062 26.34375 363.914062 C 26.460938 363.914062 26.554688 363.820312 26.554688 363.703125 Z M 26.554688 363.703125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.242188 360.234375 C 24.242188 360.117188 24.148438 360.023438 24.03125 360.023438 C 23.914062 360.023438 23.820312 360.117188 23.820312 360.234375 C 23.820312 360.351562 23.914062 360.445312 24.03125 360.445312 C 24.148438 360.445312 24.242188 360.351562 24.242188 360.234375 Z M 24.242188 360.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.496094 361.277344 C 27.496094 361.160156 27.402344 361.066406 27.285156 361.066406 C 27.167969 361.066406 27.074219 361.160156 27.074219 361.277344 C 27.074219 361.394531 27.167969 361.488281 27.285156 361.488281 C 27.402344 361.488281 27.496094 361.394531 27.496094 361.277344 Z M 27.496094 361.277344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.933594 362.042969 C 26.933594 361.925781 26.839844 361.832031 26.722656 361.832031 C 26.605469 361.832031 26.511719 361.925781 26.511719 362.042969 C 26.511719 362.160156 26.605469 362.253906 26.722656 362.253906 C 26.839844 362.253906 26.933594 362.160156 26.933594 362.042969 Z M 26.933594 362.042969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.441406 363.636719 C 26.441406 363.519531 26.347656 363.425781 26.230469 363.425781 C 26.113281 363.425781 26.019531 363.519531 26.019531 363.636719 C 26.019531 363.753906 26.113281 363.847656 26.230469 363.847656 C 26.347656 363.847656 26.441406 363.753906 26.441406 363.636719 Z M 26.441406 363.636719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.761719 366.730469 C 24.761719 366.613281 24.667969 366.519531 24.550781 366.519531 C 24.433594 366.519531 24.339844 366.613281 24.339844 366.730469 C 24.339844 366.847656 24.433594 366.941406 24.550781 366.941406 C 24.667969 366.941406 24.761719 366.847656 24.761719 366.730469 Z M 24.761719 366.730469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.519531 363.941406 C 25.519531 363.824219 25.425781 363.730469 25.308594 363.730469 C 25.191406 363.730469 25.097656 363.824219 25.097656 363.941406 C 25.097656 364.058594 25.191406 364.152344 25.308594 364.152344 C 25.425781 364.152344 25.519531 364.058594 25.519531 363.941406 Z M 25.519531 363.941406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.472656 361.015625 C 24.472656 360.898438 24.378906 360.804688 24.261719 360.804688 C 24.144531 360.804688 24.050781 360.898438 24.050781 361.015625 C 24.050781 361.132812 24.144531 361.226562 24.261719 361.226562 C 24.378906 361.226562 24.472656 361.132812 24.472656 361.015625 Z M 24.472656 361.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.871094 359.160156 C 23.871094 359.042969 23.777344 358.949219 23.660156 358.949219 C 23.542969 358.949219 23.449219 359.042969 23.449219 359.160156 C 23.449219 359.277344 23.542969 359.371094 23.660156 359.371094 C 23.777344 359.371094 23.871094 359.277344 23.871094 359.160156 Z M 23.871094 359.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.277344 355.949219 C 28.277344 355.832031 28.183594 355.738281 28.066406 355.738281 C 27.949219 355.738281 27.855469 355.832031 27.855469 355.949219 C 27.855469 356.066406 27.949219 356.160156 28.066406 356.160156 C 28.183594 356.160156 28.277344 356.066406 28.277344 355.949219 Z M 28.277344 355.949219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.609375 355.355469 C 28.609375 355.238281 28.515625 355.144531 28.398438 355.144531 C 28.28125 355.144531 28.1875 355.238281 28.1875 355.355469 C 28.1875 355.472656 28.28125 355.566406 28.398438 355.566406 C 28.515625 355.566406 28.609375 355.472656 28.609375 355.355469 Z M 28.609375 355.355469 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.84375 354.511719 C 31.84375 354.394531 31.75 354.300781 31.632812 354.300781 C 31.515625 354.300781 31.421875 354.394531 31.421875 354.511719 C 31.421875 354.628906 31.515625 354.722656 31.632812 354.722656 C 31.75 354.722656 31.84375 354.628906 31.84375 354.511719 Z M 31.84375 354.511719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.28125 358.320312 C 31.28125 358.203125 31.1875 358.109375 31.070312 358.109375 C 30.953125 358.109375 30.859375 358.203125 30.859375 358.320312 C 30.859375 358.4375 30.953125 358.53125 31.070312 358.53125 C 31.1875 358.53125 31.28125 358.4375 31.28125 358.320312 Z M 31.28125 358.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.910156 358.726562 C 31.910156 358.609375 31.816406 358.515625 31.699219 358.515625 C 31.582031 358.515625 31.488281 358.609375 31.488281 358.726562 C 31.488281 358.84375 31.582031 358.9375 31.699219 358.9375 C 31.816406 358.9375 31.910156 358.84375 31.910156 358.726562 Z M 31.910156 358.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.789062 358.742188 C 32.789062 358.625 32.695312 358.53125 32.578125 358.53125 C 32.460938 358.53125 32.367188 358.625 32.367188 358.742188 C 32.367188 358.859375 32.460938 358.953125 32.578125 358.953125 C 32.695312 358.953125 32.789062 358.859375 32.789062 358.742188 Z M 32.789062 358.742188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 34.511719 354.777344 C 34.511719 354.660156 34.417969 354.566406 34.300781 354.566406 C 34.183594 354.566406 34.089844 354.660156 34.089844 354.777344 C 34.089844 354.894531 34.183594 354.988281 34.300781 354.988281 C 34.417969 354.988281 34.511719 354.894531 34.511719 354.777344 Z M 34.511719 354.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.011719 350.890625 C 38.011719 350.773438 37.917969 350.679688 37.800781 350.679688 C 37.683594 350.679688 37.589844 350.773438 37.589844 350.890625 C 37.589844 351.007812 37.683594 351.101562 37.800781 351.101562 C 37.917969 351.101562 38.011719 351.007812 38.011719 350.890625 Z M 38.011719 350.890625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.855469 353.113281 C 36.855469 352.996094 36.761719 352.902344 36.644531 352.902344 C 36.527344 352.902344 36.433594 352.996094 36.433594 353.113281 C 36.433594 353.230469 36.527344 353.324219 36.644531 353.324219 C 36.761719 353.324219 36.855469 353.230469 36.855469 353.113281 Z M 36.855469 353.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.253906 353.269531 C 36.253906 353.152344 36.160156 353.058594 36.042969 353.058594 C 35.925781 353.058594 35.832031 353.152344 35.832031 353.269531 C 35.832031 353.386719 35.925781 353.480469 36.042969 353.480469 C 36.160156 353.480469 36.253906 353.386719 36.253906 353.269531 Z M 36.253906 353.269531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.789062 351.371094 C 33.789062 351.253906 33.695312 351.160156 33.578125 351.160156 C 33.460938 351.160156 33.367188 351.253906 33.367188 351.371094 C 33.367188 351.488281 33.460938 351.582031 33.578125 351.582031 C 33.695312 351.582031 33.789062 351.488281 33.789062 351.371094 Z M 33.789062 351.371094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.929688 351.113281 C 33.929688 350.996094 33.835938 350.902344 33.71875 350.902344 C 33.601562 350.902344 33.507812 350.996094 33.507812 351.113281 C 33.507812 351.230469 33.601562 351.324219 33.71875 351.324219 C 33.835938 351.324219 33.929688 351.230469 33.929688 351.113281 Z M 33.929688 351.113281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 34.316406 350.925781 C 34.316406 350.808594 34.222656 350.714844 34.105469 350.714844 C 33.988281 350.714844 33.894531 350.808594 33.894531 350.925781 C 33.894531 351.042969 33.988281 351.136719 34.105469 351.136719 C 34.222656 351.136719 34.316406 351.042969 34.316406 350.925781 Z M 34.316406 350.925781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.296875 355.015625 C 35.296875 354.898438 35.203125 354.804688 35.085938 354.804688 C 34.96875 354.804688 34.875 354.898438 34.875 355.015625 C 34.875 355.132812 34.96875 355.226562 35.085938 355.226562 C 35.203125 355.226562 35.296875 355.132812 35.296875 355.015625 Z M 35.296875 355.015625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.265625 354.777344 C 36.265625 354.660156 36.171875 354.566406 36.054688 354.566406 C 35.9375 354.566406 35.84375 354.660156 35.84375 354.777344 C 35.84375 354.894531 35.9375 354.988281 36.054688 354.988281 C 36.171875 354.988281 36.265625 354.894531 36.265625 354.777344 Z M 36.265625 354.777344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 39.460938 355.628906 C 39.460938 355.511719 39.367188 355.417969 39.25 355.417969 C 39.132812 355.417969 39.039062 355.511719 39.039062 355.628906 C 39.039062 355.746094 39.132812 355.839844 39.25 355.839844 C 39.367188 355.839844 39.460938 355.746094 39.460938 355.628906 Z M 39.460938 355.628906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.765625 358.613281 C 38.765625 358.496094 38.671875 358.402344 38.554688 358.402344 C 38.4375 358.402344 38.34375 358.496094 38.34375 358.613281 C 38.34375 358.730469 38.4375 358.824219 38.554688 358.824219 C 38.671875 358.824219 38.765625 358.730469 38.765625 358.613281 Z M 38.765625 358.613281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.730469 360.363281 C 36.730469 360.246094 36.636719 360.152344 36.519531 360.152344 C 36.402344 360.152344 36.308594 360.246094 36.308594 360.363281 C 36.308594 360.480469 36.402344 360.574219 36.519531 360.574219 C 36.636719 360.574219 36.730469 360.480469 36.730469 360.363281 Z M 36.730469 360.363281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.195312 363.121094 C 35.195312 363.003906 35.101562 362.910156 34.984375 362.910156 C 34.867188 362.910156 34.773438 363.003906 34.773438 363.121094 C 34.773438 363.238281 34.867188 363.332031 34.984375 363.332031 C 35.101562 363.332031 35.195312 363.238281 35.195312 363.121094 Z M 35.195312 363.121094 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.597656 359.34375 C 35.597656 359.226562 35.503906 359.132812 35.386719 359.132812 C 35.269531 359.132812 35.175781 359.226562 35.175781 359.34375 C 35.175781 359.460938 35.269531 359.554688 35.386719 359.554688 C 35.503906 359.554688 35.597656 359.460938 35.597656 359.34375 Z M 35.597656 359.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 34.820312 358.835938 C 34.820312 358.71875 34.726562 358.625 34.609375 358.625 C 34.492188 358.625 34.398438 358.71875 34.398438 358.835938 C 34.398438 358.953125 34.492188 359.046875 34.609375 359.046875 C 34.726562 359.046875 34.820312 358.953125 34.820312 358.835938 Z M 34.820312 358.835938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 34.941406 359.566406 C 34.941406 359.449219 34.847656 359.355469 34.730469 359.355469 C 34.613281 359.355469 34.519531 359.449219 34.519531 359.566406 C 34.519531 359.683594 34.613281 359.777344 34.730469 359.777344 C 34.847656 359.777344 34.941406 359.683594 34.941406 359.566406 Z M 34.941406 359.566406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.902344 359.503906 C 35.902344 359.386719 35.808594 359.292969 35.691406 359.292969 C 35.574219 359.292969 35.480469 359.386719 35.480469 359.503906 C 35.480469 359.621094 35.574219 359.714844 35.691406 359.714844 C 35.808594 359.714844 35.902344 359.621094 35.902344 359.503906 Z M 35.902344 359.503906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.089844 357.992188 C 37.089844 357.875 36.996094 357.78125 36.878906 357.78125 C 36.761719 357.78125 36.667969 357.875 36.667969 357.992188 C 36.667969 358.109375 36.761719 358.203125 36.878906 358.203125 C 36.996094 358.203125 37.089844 358.109375 37.089844 357.992188 Z M 37.089844 357.992188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.023438 357.507812 C 37.023438 357.390625 36.929688 357.296875 36.8125 357.296875 C 36.695312 357.296875 36.601562 357.390625 36.601562 357.507812 C 36.601562 357.625 36.695312 357.71875 36.8125 357.71875 C 36.929688 357.71875 37.023438 357.625 37.023438 357.507812 Z M 37.023438 357.507812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 39.140625 355.085938 C 39.140625 354.96875 39.046875 354.875 38.929688 354.875 C 38.8125 354.875 38.71875 354.96875 38.71875 355.085938 C 38.71875 355.203125 38.8125 355.296875 38.929688 355.296875 C 39.046875 355.296875 39.140625 355.203125 39.140625 355.085938 Z M 39.140625 355.085938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.289062 357.601562 C 38.289062 357.484375 38.195312 357.390625 38.078125 357.390625 C 37.960938 357.390625 37.867188 357.484375 37.867188 357.601562 C 37.867188 357.71875 37.960938 357.8125 38.078125 357.8125 C 38.195312 357.8125 38.289062 357.71875 38.289062 357.601562 Z M 38.289062 357.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.800781 357.195312 C 37.800781 357.078125 37.707031 356.984375 37.589844 356.984375 C 37.472656 356.984375 37.378906 357.078125 37.378906 357.195312 C 37.378906 357.3125 37.472656 357.40625 37.589844 357.40625 C 37.707031 357.40625 37.800781 357.3125 37.800781 357.195312 Z M 37.800781 357.195312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.632812 355.328125 C 37.632812 355.210938 37.539062 355.117188 37.421875 355.117188 C 37.304688 355.117188 37.210938 355.210938 37.210938 355.328125 C 37.210938 355.445312 37.304688 355.539062 37.421875 355.539062 C 37.539062 355.539062 37.632812 355.445312 37.632812 355.328125 Z M 37.632812 355.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.253906 353.578125 C 36.253906 353.460938 36.160156 353.367188 36.042969 353.367188 C 35.925781 353.367188 35.832031 353.460938 35.832031 353.578125 C 35.832031 353.695312 35.925781 353.789062 36.042969 353.789062 C 36.160156 353.789062 36.253906 353.695312 36.253906 353.578125 Z M 36.253906 353.578125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.960938 351.515625 C 32.960938 351.398438 32.867188 351.304688 32.75 351.304688 C 32.632812 351.304688 32.539062 351.398438 32.539062 351.515625 C 32.539062 351.632812 32.632812 351.726562 32.75 351.726562 C 32.867188 351.726562 32.960938 351.632812 32.960938 351.515625 Z M 32.960938 351.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.214844 351.601562 C 32.214844 351.484375 32.121094 351.390625 32.003906 351.390625 C 31.886719 351.390625 31.792969 351.484375 31.792969 351.601562 C 31.792969 351.71875 31.886719 351.8125 32.003906 351.8125 C 32.121094 351.8125 32.214844 351.71875 32.214844 351.601562 Z M 32.214844 351.601562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.164062 354.171875 C 33.164062 354.054688 33.070312 353.960938 32.953125 353.960938 C 32.835938 353.960938 32.742188 354.054688 32.742188 354.171875 C 32.742188 354.289062 32.835938 354.382812 32.953125 354.382812 C 33.070312 354.382812 33.164062 354.289062 33.164062 354.171875 Z M 33.164062 354.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.917969 350.660156 C 30.917969 350.542969 30.824219 350.449219 30.707031 350.449219 C 30.589844 350.449219 30.496094 350.542969 30.496094 350.660156 C 30.496094 350.777344 30.589844 350.871094 30.707031 350.871094 C 30.824219 350.871094 30.917969 350.777344 30.917969 350.660156 Z M 30.917969 350.660156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.257812 349.515625 C 33.257812 349.398438 33.164062 349.304688 33.046875 349.304688 C 32.929688 349.304688 32.835938 349.398438 32.835938 349.515625 C 32.835938 349.632812 32.929688 349.726562 33.046875 349.726562 C 33.164062 349.726562 33.257812 349.632812 33.257812 349.515625 Z M 33.257812 349.515625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.808594 351.691406 C 32.808594 351.574219 32.714844 351.480469 32.597656 351.480469 C 32.480469 351.480469 32.386719 351.574219 32.386719 351.691406 C 32.386719 351.808594 32.480469 351.902344 32.597656 351.902344 C 32.714844 351.902344 32.808594 351.808594 32.808594 351.691406 Z M 32.808594 351.691406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.664062 351.03125 C 31.664062 350.914062 31.570312 350.820312 31.453125 350.820312 C 31.335938 350.820312 31.242188 350.914062 31.242188 351.03125 C 31.242188 351.148438 31.335938 351.242188 31.453125 351.242188 C 31.570312 351.242188 31.664062 351.148438 31.664062 351.03125 Z M 31.664062 351.03125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.648438 349.148438 C 33.648438 349.03125 33.554688 348.9375 33.4375 348.9375 C 33.320312 348.9375 33.226562 349.03125 33.226562 349.148438 C 33.226562 349.265625 33.320312 349.359375 33.4375 349.359375 C 33.554688 349.359375 33.648438 349.265625 33.648438 349.148438 Z M 33.648438 349.148438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.179688 347.378906 C 33.179688 347.261719 33.085938 347.167969 32.96875 347.167969 C 32.851562 347.167969 32.757812 347.261719 32.757812 347.378906 C 32.757812 347.496094 32.851562 347.589844 32.96875 347.589844 C 33.085938 347.589844 33.179688 347.496094 33.179688 347.378906 Z M 33.179688 347.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 34.839844 345.492188 C 34.839844 345.375 34.746094 345.28125 34.628906 345.28125 C 34.511719 345.28125 34.417969 345.375 34.417969 345.492188 C 34.417969 345.609375 34.511719 345.703125 34.628906 345.703125 C 34.746094 345.703125 34.839844 345.609375 34.839844 345.492188 Z M 34.839844 345.492188 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.785156 346.125 C 36.785156 346.007812 36.691406 345.914062 36.574219 345.914062 C 36.457031 345.914062 36.363281 346.007812 36.363281 346.125 C 36.363281 346.242188 36.457031 346.335938 36.574219 346.335938 C 36.691406 346.335938 36.785156 346.242188 36.785156 346.125 Z M 36.785156 346.125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.234375 345.753906 C 37.234375 345.636719 37.140625 345.542969 37.023438 345.542969 C 36.90625 345.542969 36.8125 345.636719 36.8125 345.753906 C 36.8125 345.871094 36.90625 345.964844 37.023438 345.964844 C 37.140625 345.964844 37.234375 345.871094 37.234375 345.753906 Z M 37.234375 345.753906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 39.65625 346.609375 C 39.65625 346.492188 39.5625 346.398438 39.445312 346.398438 C 39.328125 346.398438 39.234375 346.492188 39.234375 346.609375 C 39.234375 346.726562 39.328125 346.820312 39.445312 346.820312 C 39.5625 346.820312 39.65625 346.726562 39.65625 346.609375 Z M 39.65625 346.609375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 40.207031 348.78125 C 40.207031 348.664062 40.113281 348.570312 39.996094 348.570312 C 39.878906 348.570312 39.785156 348.664062 39.785156 348.78125 C 39.785156 348.898438 39.878906 348.992188 39.996094 348.992188 C 40.113281 348.992188 40.207031 348.898438 40.207031 348.78125 Z M 40.207031 348.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 39.71875 351 C 39.71875 350.882812 39.625 350.789062 39.507812 350.789062 C 39.390625 350.789062 39.296875 350.882812 39.296875 351 C 39.296875 351.117188 39.390625 351.210938 39.507812 351.210938 C 39.625 351.210938 39.71875 351.117188 39.71875 351 Z M 39.71875 351 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 40.683594 350.542969 C 40.683594 350.425781 40.589844 350.332031 40.472656 350.332031 C 40.355469 350.332031 40.261719 350.425781 40.261719 350.542969 C 40.261719 350.660156 40.355469 350.753906 40.472656 350.753906 C 40.589844 350.753906 40.683594 350.660156 40.683594 350.542969 Z M 40.683594 350.542969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 41.800781 348.839844 C 41.800781 348.722656 41.707031 348.628906 41.589844 348.628906 C 41.472656 348.628906 41.378906 348.722656 41.378906 348.839844 C 41.378906 348.957031 41.472656 349.050781 41.589844 349.050781 C 41.707031 349.050781 41.800781 348.957031 41.800781 348.839844 Z M 41.800781 348.839844 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 41.792969 350.328125 C 41.792969 350.210938 41.699219 350.117188 41.582031 350.117188 C 41.464844 350.117188 41.371094 350.210938 41.371094 350.328125 C 41.371094 350.445312 41.464844 350.539062 41.582031 350.539062 C 41.699219 350.539062 41.792969 350.445312 41.792969 350.328125 Z M 41.792969 350.328125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.710938 347.257812 C 38.710938 347.140625 38.617188 347.046875 38.5 347.046875 C 38.382812 347.046875 38.289062 347.140625 38.289062 347.257812 C 38.289062 347.375 38.382812 347.46875 38.5 347.46875 C 38.617188 347.46875 38.710938 347.375 38.710938 347.257812 Z M 38.710938 347.257812 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 39.347656 345.378906 C 39.347656 345.261719 39.253906 345.167969 39.136719 345.167969 C 39.019531 345.167969 38.925781 345.261719 38.925781 345.378906 C 38.925781 345.496094 39.019531 345.589844 39.136719 345.589844 C 39.253906 345.589844 39.347656 345.496094 39.347656 345.378906 Z M 39.347656 345.378906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.441406 342.765625 C 38.441406 342.648438 38.347656 342.554688 38.230469 342.554688 C 38.113281 342.554688 38.019531 342.648438 38.019531 342.765625 C 38.019531 342.882812 38.113281 342.976562 38.230469 342.976562 C 38.347656 342.976562 38.441406 342.882812 38.441406 342.765625 Z M 38.441406 342.765625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.285156 341.414062 C 36.285156 341.296875 36.191406 341.203125 36.074219 341.203125 C 35.957031 341.203125 35.863281 341.296875 35.863281 341.414062 C 35.863281 341.53125 35.957031 341.625 36.074219 341.625 C 36.191406 341.625 36.285156 341.53125 36.285156 341.414062 Z M 36.285156 341.414062 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 39.042969 343.726562 C 39.042969 343.609375 38.949219 343.515625 38.832031 343.515625 C 38.714844 343.515625 38.621094 343.609375 38.621094 343.726562 C 38.621094 343.84375 38.714844 343.9375 38.832031 343.9375 C 38.949219 343.9375 39.042969 343.84375 39.042969 343.726562 Z M 39.042969 343.726562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 40.644531 345.058594 C 40.644531 344.941406 40.550781 344.847656 40.433594 344.847656 C 40.316406 344.847656 40.222656 344.941406 40.222656 345.058594 C 40.222656 345.175781 40.316406 345.269531 40.433594 345.269531 C 40.550781 345.269531 40.644531 345.175781 40.644531 345.058594 Z M 40.644531 345.058594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.539062 348.199219 C 38.539062 348.082031 38.445312 347.988281 38.328125 347.988281 C 38.210938 347.988281 38.117188 348.082031 38.117188 348.199219 C 38.117188 348.316406 38.210938 348.410156 38.328125 348.410156 C 38.445312 348.410156 38.539062 348.316406 38.539062 348.199219 Z M 38.539062 348.199219 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.363281 345.6875 C 37.363281 345.570312 37.269531 345.476562 37.152344 345.476562 C 37.035156 345.476562 36.941406 345.570312 36.941406 345.6875 C 36.941406 345.804688 37.035156 345.898438 37.152344 345.898438 C 37.269531 345.898438 37.363281 345.804688 37.363281 345.6875 Z M 37.363281 345.6875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.117188 345.109375 C 37.117188 344.992188 37.023438 344.898438 36.90625 344.898438 C 36.789062 344.898438 36.695312 344.992188 36.695312 345.109375 C 36.695312 345.226562 36.789062 345.320312 36.90625 345.320312 C 37.023438 345.320312 37.117188 345.226562 37.117188 345.109375 Z M 37.117188 345.109375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 39.445312 345.53125 C 39.445312 345.414062 39.351562 345.320312 39.234375 345.320312 C 39.117188 345.320312 39.023438 345.414062 39.023438 345.53125 C 39.023438 345.648438 39.117188 345.742188 39.234375 345.742188 C 39.351562 345.742188 39.445312 345.648438 39.445312 345.53125 Z M 39.445312 345.53125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.867188 344.023438 C 38.867188 343.90625 38.773438 343.8125 38.65625 343.8125 C 38.539062 343.8125 38.445312 343.90625 38.445312 344.023438 C 38.445312 344.140625 38.539062 344.234375 38.65625 344.234375 C 38.773438 344.234375 38.867188 344.140625 38.867188 344.023438 Z M 38.867188 344.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.425781 341.828125 C 37.425781 341.710938 37.332031 341.617188 37.214844 341.617188 C 37.097656 341.617188 37.003906 341.710938 37.003906 341.828125 C 37.003906 341.945312 37.097656 342.039062 37.214844 342.039062 C 37.332031 342.039062 37.425781 341.945312 37.425781 341.828125 Z M 37.425781 341.828125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.121094 343.140625 C 35.121094 343.023438 35.027344 342.929688 34.910156 342.929688 C 34.792969 342.929688 34.699219 343.023438 34.699219 343.140625 C 34.699219 343.257812 34.792969 343.351562 34.910156 343.351562 C 35.027344 343.351562 35.121094 343.257812 35.121094 343.140625 Z M 35.121094 343.140625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.253906 341.929688 C 33.253906 341.8125 33.160156 341.71875 33.042969 341.71875 C 32.925781 341.71875 32.832031 341.8125 32.832031 341.929688 C 32.832031 342.046875 32.925781 342.140625 33.042969 342.140625 C 33.160156 342.140625 33.253906 342.046875 33.253906 341.929688 Z M 33.253906 341.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 34.378906 343.929688 C 34.378906 343.8125 34.285156 343.71875 34.167969 343.71875 C 34.050781 343.71875 33.957031 343.8125 33.957031 343.929688 C 33.957031 344.046875 34.050781 344.140625 34.167969 344.140625 C 34.285156 344.140625 34.378906 344.046875 34.378906 343.929688 Z M 34.378906 343.929688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.761719 345.0625 C 29.761719 344.945312 29.667969 344.851562 29.550781 344.851562 C 29.433594 344.851562 29.339844 344.945312 29.339844 345.0625 C 29.339844 345.179688 29.433594 345.273438 29.550781 345.273438 C 29.667969 345.273438 29.761719 345.179688 29.761719 345.0625 Z M 29.761719 345.0625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.386719 345.054688 C 29.386719 344.9375 29.292969 344.84375 29.175781 344.84375 C 29.058594 344.84375 28.964844 344.9375 28.964844 345.054688 C 28.964844 345.171875 29.058594 345.265625 29.175781 345.265625 C 29.292969 345.265625 29.386719 345.171875 29.386719 345.054688 Z M 29.386719 345.054688 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.339844 346.585938 C 26.339844 346.46875 26.246094 346.375 26.128906 346.375 C 26.011719 346.375 25.917969 346.46875 25.917969 346.585938 C 25.917969 346.703125 26.011719 346.796875 26.128906 346.796875 C 26.246094 346.796875 26.339844 346.703125 26.339844 346.585938 Z M 26.339844 346.585938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.054688 345.234375 C 26.054688 345.117188 25.960938 345.023438 25.84375 345.023438 C 25.726562 345.023438 25.632812 345.117188 25.632812 345.234375 C 25.632812 345.351562 25.726562 345.445312 25.84375 345.445312 C 25.960938 345.445312 26.054688 345.351562 26.054688 345.234375 Z M 26.054688 345.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.191406 342.886719 C 25.191406 342.769531 25.097656 342.675781 24.980469 342.675781 C 24.863281 342.675781 24.769531 342.769531 24.769531 342.886719 C 24.769531 343.003906 24.863281 343.097656 24.980469 343.097656 C 25.097656 343.097656 25.191406 343.003906 25.191406 342.886719 Z M 25.191406 342.886719 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.046875 343.8125 C 26.046875 343.695312 25.953125 343.601562 25.835938 343.601562 C 25.71875 343.601562 25.625 343.695312 25.625 343.8125 C 25.625 343.929688 25.71875 344.023438 25.835938 344.023438 C 25.953125 344.023438 26.046875 343.929688 26.046875 343.8125 Z M 26.046875 343.8125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.875 341.902344 C 26.875 341.785156 26.78125 341.691406 26.664062 341.691406 C 26.546875 341.691406 26.453125 341.785156 26.453125 341.902344 C 26.453125 342.019531 26.546875 342.113281 26.664062 342.113281 C 26.78125 342.113281 26.875 342.019531 26.875 341.902344 Z M 26.875 341.902344 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.5 342.558594 C 27.5 342.441406 27.40625 342.347656 27.289062 342.347656 C 27.171875 342.347656 27.078125 342.441406 27.078125 342.558594 C 27.078125 342.675781 27.171875 342.769531 27.289062 342.769531 C 27.40625 342.769531 27.5 342.675781 27.5 342.558594 Z M 27.5 342.558594 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.980469 342.785156 C 30.980469 342.667969 30.886719 342.574219 30.769531 342.574219 C 30.652344 342.574219 30.558594 342.667969 30.558594 342.785156 C 30.558594 342.902344 30.652344 342.996094 30.769531 342.996094 C 30.886719 342.996094 30.980469 342.902344 30.980469 342.785156 Z M 30.980469 342.785156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.839844 341.570312 C 27.839844 341.453125 27.746094 341.359375 27.628906 341.359375 C 27.511719 341.359375 27.417969 341.453125 27.417969 341.570312 C 27.417969 341.6875 27.511719 341.78125 27.628906 341.78125 C 27.746094 341.78125 27.839844 341.6875 27.839844 341.570312 Z M 27.839844 341.570312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.011719 344.441406 C 27.011719 344.324219 26.917969 344.230469 26.800781 344.230469 C 26.683594 344.230469 26.589844 344.324219 26.589844 344.441406 C 26.589844 344.558594 26.683594 344.652344 26.800781 344.652344 C 26.917969 344.652344 27.011719 344.558594 27.011719 344.441406 Z M 27.011719 344.441406 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.140625 343.863281 C 26.140625 343.746094 26.046875 343.652344 25.929688 343.652344 C 25.8125 343.652344 25.71875 343.746094 25.71875 343.863281 C 25.71875 343.980469 25.8125 344.074219 25.929688 344.074219 C 26.046875 344.074219 26.140625 343.980469 26.140625 343.863281 Z M 26.140625 343.863281 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.34375 348.160156 C 26.34375 348.042969 26.25 347.949219 26.132812 347.949219 C 26.015625 347.949219 25.921875 348.042969 25.921875 348.160156 C 25.921875 348.277344 26.015625 348.371094 26.132812 348.371094 C 26.25 348.371094 26.34375 348.277344 26.34375 348.160156 Z M 26.34375 348.160156 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.523438 349.175781 C 24.523438 349.058594 24.429688 348.964844 24.3125 348.964844 C 24.195312 348.964844 24.101562 349.058594 24.101562 349.175781 C 24.101562 349.292969 24.195312 349.386719 24.3125 349.386719 C 24.429688 349.386719 24.523438 349.292969 24.523438 349.175781 Z M 24.523438 349.175781 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.375 347.023438 C 25.375 346.90625 25.28125 346.8125 25.164062 346.8125 C 25.046875 346.8125 24.953125 346.90625 24.953125 347.023438 C 24.953125 347.140625 25.046875 347.234375 25.164062 347.234375 C 25.28125 347.234375 25.375 347.140625 25.375 347.023438 Z M 25.375 347.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.34375 346.484375 C 26.34375 346.367188 26.25 346.273438 26.132812 346.273438 C 26.015625 346.273438 25.921875 346.367188 25.921875 346.484375 C 25.921875 346.601562 26.015625 346.695312 26.132812 346.695312 C 26.25 346.695312 26.34375 346.601562 26.34375 346.484375 Z M 26.34375 346.484375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.976562 350.34375 C 25.976562 350.226562 25.882812 350.132812 25.765625 350.132812 C 25.648438 350.132812 25.554688 350.226562 25.554688 350.34375 C 25.554688 350.460938 25.648438 350.554688 25.765625 350.554688 C 25.882812 350.554688 25.976562 350.460938 25.976562 350.34375 Z M 25.976562 350.34375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.828125 349.894531 C 23.828125 349.777344 23.734375 349.683594 23.617188 349.683594 C 23.5 349.683594 23.40625 349.777344 23.40625 349.894531 C 23.40625 350.011719 23.5 350.105469 23.617188 350.105469 C 23.734375 350.105469 23.828125 350.011719 23.828125 349.894531 Z M 23.828125 349.894531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.257812 352.519531 C 23.257812 352.402344 23.164062 352.308594 23.046875 352.308594 C 22.929688 352.308594 22.835938 352.402344 22.835938 352.519531 C 22.835938 352.636719 22.929688 352.730469 23.046875 352.730469 C 23.164062 352.730469 23.257812 352.636719 23.257812 352.519531 Z M 23.257812 352.519531 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 22.101562 356.625 C 22.101562 356.507812 22.007812 356.414062 21.890625 356.414062 C 21.773438 356.414062 21.679688 356.507812 21.679688 356.625 C 21.679688 356.742188 21.773438 356.835938 21.890625 356.835938 C 22.007812 356.835938 22.101562 356.742188 22.101562 356.625 Z M 22.101562 356.625 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 20.074219 356.46875 C 20.074219 356.351562 19.980469 356.257812 19.863281 356.257812 C 19.746094 356.257812 19.652344 356.351562 19.652344 356.46875 C 19.652344 356.585938 19.746094 356.679688 19.863281 356.679688 C 19.980469 356.679688 20.074219 356.585938 20.074219 356.46875 Z M 20.074219 356.46875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.050781 359.070312 C 23.050781 358.953125 22.957031 358.859375 22.839844 358.859375 C 22.722656 358.859375 22.628906 358.953125 22.628906 359.070312 C 22.628906 359.1875 22.722656 359.28125 22.839844 359.28125 C 22.957031 359.28125 23.050781 359.1875 23.050781 359.070312 Z M 23.050781 359.070312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.25 360.171875 C 24.25 360.054688 24.15625 359.960938 24.039062 359.960938 C 23.921875 359.960938 23.828125 360.054688 23.828125 360.171875 C 23.828125 360.289062 23.921875 360.382812 24.039062 360.382812 C 24.15625 360.382812 24.25 360.289062 24.25 360.171875 Z M 24.25 360.171875 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.773438 362.335938 C 24.773438 362.21875 24.679688 362.125 24.5625 362.125 C 24.445312 362.125 24.351562 362.21875 24.351562 362.335938 C 24.351562 362.453125 24.445312 362.546875 24.5625 362.546875 C 24.679688 362.546875 24.773438 362.453125 24.773438 362.335938 Z M 24.773438 362.335938 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.578125 359.78125 C 23.578125 359.664062 23.484375 359.570312 23.367188 359.570312 C 23.25 359.570312 23.15625 359.664062 23.15625 359.78125 C 23.15625 359.898438 23.25 359.992188 23.367188 359.992188 C 23.484375 359.992188 23.578125 359.898438 23.578125 359.78125 Z M 23.578125 359.78125 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.535156 359.351562 C 23.535156 359.234375 23.441406 359.140625 23.324219 359.140625 C 23.207031 359.140625 23.113281 359.234375 23.113281 359.351562 C 23.113281 359.46875 23.207031 359.5625 23.324219 359.5625 C 23.441406 359.5625 23.535156 359.46875 23.535156 359.351562 Z M 23.535156 359.351562 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.570312 359.167969 C 27.570312 359.050781 27.476562 358.957031 27.359375 358.957031 C 27.242188 358.957031 27.148438 359.050781 27.148438 359.167969 C 27.148438 359.285156 27.242188 359.378906 27.359375 359.378906 C 27.476562 359.378906 27.570312 359.285156 27.570312 359.167969 Z M 27.570312 359.167969 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.722656 360.234375 C 26.722656 360.117188 26.628906 360.023438 26.511719 360.023438 C 26.394531 360.023438 26.300781 360.117188 26.300781 360.234375 C 26.300781 360.351562 26.394531 360.445312 26.511719 360.445312 C 26.628906 360.445312 26.722656 360.351562 26.722656 360.234375 Z M 26.722656 360.234375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.898438 361.023438 C 25.898438 360.90625 25.804688 360.8125 25.6875 360.8125 C 25.570312 360.8125 25.476562 360.90625 25.476562 361.023438 C 25.476562 361.140625 25.570312 361.234375 25.6875 361.234375 C 25.804688 361.234375 25.898438 361.140625 25.898438 361.023438 Z M 25.898438 361.023438 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.789062 363.003906 C 26.789062 362.886719 26.695312 362.792969 26.578125 362.792969 C 26.460938 362.792969 26.367188 362.886719 26.367188 363.003906 C 26.367188 363.121094 26.460938 363.214844 26.578125 363.214844 C 26.695312 363.214844 26.789062 363.121094 26.789062 363.003906 Z M 26.789062 363.003906 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.796875 363.9375 C 24.796875 363.820312 24.703125 363.726562 24.585938 363.726562 C 24.46875 363.726562 24.375 363.820312 24.375 363.9375 C 24.375 364.054688 24.46875 364.148438 24.585938 364.148438 C 24.703125 364.148438 24.796875 364.054688 24.796875 363.9375 Z M 24.796875 363.9375 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.0625 360.320312 C 26.0625 360.203125 25.96875 360.109375 25.851562 360.109375 C 25.734375 360.109375 25.640625 360.203125 25.640625 360.320312 C 25.640625 360.4375 25.734375 360.53125 25.851562 360.53125 C 25.96875 360.53125 26.0625 360.4375 26.0625 360.320312 Z M 26.0625 360.320312 \"/>\n<path style=\"fill:none;stroke-width:1.39593;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.878906 363.09375 C 24.878906 362.976562 24.785156 362.882812 24.667969 362.882812 C 24.550781 362.882812 24.457031 362.976562 24.457031 363.09375 C 24.457031 363.210938 24.550781 363.304688 24.667969 363.304688 C 24.785156 363.304688 24.878906 363.210938 24.878906 363.09375 Z M 24.878906 363.09375 \"/>\n</g>\n</svg>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[20]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">randomWalk2</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">scanl</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">+</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">randomWalk</span><span class=\"w\"></span>\n\n<span class=\"nf\">d</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"kt\">L</span><span class=\"o\">.</span><span class=\"n\">sample</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">convertListofNPointsToDiagram</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">randomWalk2</span><span class=\"w\"></span>\n<span class=\"nf\">displayDiagram</span><span class=\"w\"> </span><span class=\"n\">d</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedSVG jp-OutputArea-output \" data-mime-type=\"image/svg+xml\">\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"173.755772pt\" height=\"468.837852pt\" viewBox=\"0 0 173.755772 468.837852\" version=\"1.1\">\n<g id=\"surface26\">\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.605469 468.640625 C 172.605469 468.59375 172.566406 468.554688 172.519531 468.554688 C 172.472656 468.554688 172.433594 468.59375 172.433594 468.640625 C 172.433594 468.6875 172.472656 468.726562 172.519531 468.726562 C 172.566406 468.726562 172.605469 468.6875 172.605469 468.640625 Z M 172.605469 468.640625 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.480469 468.75 C 173.480469 468.703125 173.441406 468.664062 173.394531 468.664062 C 173.347656 468.664062 173.308594 468.703125 173.308594 468.75 C 173.308594 468.796875 173.347656 468.835938 173.394531 468.835938 C 173.441406 468.835938 173.480469 468.796875 173.480469 468.75 Z M 173.480469 468.75 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.753906 467.460938 C 173.753906 467.414062 173.714844 467.375 173.667969 467.375 C 173.621094 467.375 173.582031 467.414062 173.582031 467.460938 C 173.582031 467.507812 173.621094 467.546875 173.667969 467.546875 C 173.714844 467.546875 173.753906 467.507812 173.753906 467.460938 Z M 173.753906 467.460938 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 173.34375 466.75 C 173.34375 466.703125 173.304688 466.664062 173.257812 466.664062 C 173.210938 466.664062 173.171875 466.703125 173.171875 466.75 C 173.171875 466.796875 173.210938 466.835938 173.257812 466.835938 C 173.304688 466.835938 173.34375 466.796875 173.34375 466.75 Z M 173.34375 466.75 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 172.976562 464.996094 C 172.976562 464.949219 172.9375 464.910156 172.890625 464.910156 C 172.84375 464.910156 172.804688 464.949219 172.804688 464.996094 C 172.804688 465.042969 172.84375 465.082031 172.890625 465.082031 C 172.9375 465.082031 172.976562 465.042969 172.976562 464.996094 Z M 172.976562 464.996094 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 171.628906 461.953125 C 171.628906 461.90625 171.589844 461.867188 171.542969 461.867188 C 171.496094 461.867188 171.457031 461.90625 171.457031 461.953125 C 171.457031 462 171.496094 462.039062 171.542969 462.039062 C 171.589844 462.039062 171.628906 462 171.628906 461.953125 Z M 171.628906 461.953125 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.535156 459.566406 C 170.535156 459.519531 170.496094 459.480469 170.449219 459.480469 C 170.402344 459.480469 170.363281 459.519531 170.363281 459.566406 C 170.363281 459.613281 170.402344 459.652344 170.449219 459.652344 C 170.496094 459.652344 170.535156 459.613281 170.535156 459.566406 Z M 170.535156 459.566406 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 168.761719 457.355469 C 168.761719 457.308594 168.722656 457.269531 168.675781 457.269531 C 168.628906 457.269531 168.589844 457.308594 168.589844 457.355469 C 168.589844 457.402344 168.628906 457.441406 168.675781 457.441406 C 168.722656 457.441406 168.761719 457.402344 168.761719 457.355469 Z M 168.761719 457.355469 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.3125 455.214844 C 167.3125 455.167969 167.273438 455.128906 167.226562 455.128906 C 167.179688 455.128906 167.140625 455.167969 167.140625 455.214844 C 167.140625 455.261719 167.179688 455.300781 167.226562 455.300781 C 167.273438 455.300781 167.3125 455.261719 167.3125 455.214844 Z M 167.3125 455.214844 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 166.371094 450.6875 C 166.371094 450.640625 166.332031 450.601562 166.285156 450.601562 C 166.238281 450.601562 166.199219 450.640625 166.199219 450.6875 C 166.199219 450.734375 166.238281 450.773438 166.285156 450.773438 C 166.332031 450.773438 166.371094 450.734375 166.371094 450.6875 Z M 166.371094 450.6875 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.105469 446.394531 C 165.105469 446.347656 165.066406 446.308594 165.019531 446.308594 C 164.972656 446.308594 164.933594 446.347656 164.933594 446.394531 C 164.933594 446.441406 164.972656 446.480469 165.019531 446.480469 C 165.066406 446.480469 165.105469 446.441406 165.105469 446.394531 Z M 165.105469 446.394531 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.214844 442.542969 C 163.214844 442.496094 163.175781 442.457031 163.128906 442.457031 C 163.082031 442.457031 163.042969 442.496094 163.042969 442.542969 C 163.042969 442.589844 163.082031 442.628906 163.128906 442.628906 C 163.175781 442.628906 163.214844 442.589844 163.214844 442.542969 Z M 163.214844 442.542969 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.972656 437.792969 C 161.972656 437.746094 161.933594 437.707031 161.886719 437.707031 C 161.839844 437.707031 161.800781 437.746094 161.800781 437.792969 C 161.800781 437.839844 161.839844 437.878906 161.886719 437.878906 C 161.933594 437.878906 161.972656 437.839844 161.972656 437.792969 Z M 161.972656 437.792969 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.308594 431.542969 C 158.308594 431.496094 158.269531 431.457031 158.222656 431.457031 C 158.175781 431.457031 158.136719 431.496094 158.136719 431.542969 C 158.136719 431.589844 158.175781 431.628906 158.222656 431.628906 C 158.269531 431.628906 158.308594 431.589844 158.308594 431.542969 Z M 158.308594 431.542969 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.203125 426.050781 C 154.203125 426.003906 154.164062 425.964844 154.117188 425.964844 C 154.070312 425.964844 154.03125 426.003906 154.03125 426.050781 C 154.03125 426.097656 154.070312 426.136719 154.117188 426.136719 C 154.164062 426.136719 154.203125 426.097656 154.203125 426.050781 Z M 154.203125 426.050781 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.480469 420.453125 C 151.480469 420.40625 151.441406 420.367188 151.394531 420.367188 C 151.347656 420.367188 151.308594 420.40625 151.308594 420.453125 C 151.308594 420.5 151.347656 420.539062 151.394531 420.539062 C 151.441406 420.539062 151.480469 420.5 151.480469 420.453125 Z M 151.480469 420.453125 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.671875 414.53125 C 149.671875 414.484375 149.632812 414.445312 149.585938 414.445312 C 149.539062 414.445312 149.5 414.484375 149.5 414.53125 C 149.5 414.578125 149.539062 414.617188 149.585938 414.617188 C 149.632812 414.617188 149.671875 414.578125 149.671875 414.53125 Z M 149.671875 414.53125 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.847656 407.359375 C 147.847656 407.3125 147.808594 407.273438 147.761719 407.273438 C 147.714844 407.273438 147.675781 407.3125 147.675781 407.359375 C 147.675781 407.40625 147.714844 407.445312 147.761719 407.445312 C 147.808594 407.445312 147.847656 407.40625 147.847656 407.359375 Z M 147.847656 407.359375 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.832031 400.15625 C 146.832031 400.109375 146.792969 400.070312 146.746094 400.070312 C 146.699219 400.070312 146.660156 400.109375 146.660156 400.15625 C 146.660156 400.203125 146.699219 400.242188 146.746094 400.242188 C 146.792969 400.242188 146.832031 400.203125 146.832031 400.15625 Z M 146.832031 400.15625 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.0625 393.339844 C 144.0625 393.292969 144.023438 393.253906 143.976562 393.253906 C 143.929688 393.253906 143.890625 393.292969 143.890625 393.339844 C 143.890625 393.386719 143.929688 393.425781 143.976562 393.425781 C 144.023438 393.425781 144.0625 393.386719 144.0625 393.339844 Z M 144.0625 393.339844 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.914062 386.144531 C 140.914062 386.097656 140.875 386.058594 140.828125 386.058594 C 140.78125 386.058594 140.742188 386.097656 140.742188 386.144531 C 140.742188 386.191406 140.78125 386.230469 140.828125 386.230469 C 140.875 386.230469 140.914062 386.191406 140.914062 386.144531 Z M 140.914062 386.144531 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.9375 377.394531 C 137.9375 377.347656 137.898438 377.308594 137.851562 377.308594 C 137.804688 377.308594 137.765625 377.347656 137.765625 377.394531 C 137.765625 377.441406 137.804688 377.480469 137.851562 377.480469 C 137.898438 377.480469 137.9375 377.441406 137.9375 377.394531 Z M 137.9375 377.394531 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 135.238281 369.285156 C 135.238281 369.238281 135.199219 369.199219 135.152344 369.199219 C 135.105469 369.199219 135.066406 369.238281 135.066406 369.285156 C 135.066406 369.332031 135.105469 369.371094 135.152344 369.371094 C 135.199219 369.371094 135.238281 369.332031 135.238281 369.285156 Z M 135.238281 369.285156 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 131.476562 361.277344 C 131.476562 361.230469 131.4375 361.191406 131.390625 361.191406 C 131.34375 361.191406 131.304688 361.230469 131.304688 361.277344 C 131.304688 361.324219 131.34375 361.363281 131.390625 361.363281 C 131.4375 361.363281 131.476562 361.324219 131.476562 361.277344 Z M 131.476562 361.277344 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.507812 352.933594 C 128.507812 352.886719 128.46875 352.847656 128.421875 352.847656 C 128.375 352.847656 128.335938 352.886719 128.335938 352.933594 C 128.335938 352.980469 128.375 353.019531 128.421875 353.019531 C 128.46875 353.019531 128.507812 352.980469 128.507812 352.933594 Z M 128.507812 352.933594 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.800781 344.445312 C 125.800781 344.398438 125.761719 344.359375 125.714844 344.359375 C 125.667969 344.359375 125.628906 344.398438 125.628906 344.445312 C 125.628906 344.492188 125.667969 344.53125 125.714844 344.53125 C 125.761719 344.53125 125.800781 344.492188 125.800781 344.445312 Z M 125.800781 344.445312 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 122.488281 336.292969 C 122.488281 336.246094 122.449219 336.207031 122.402344 336.207031 C 122.355469 336.207031 122.316406 336.246094 122.316406 336.292969 C 122.316406 336.339844 122.355469 336.378906 122.402344 336.378906 C 122.449219 336.378906 122.488281 336.339844 122.488281 336.292969 Z M 122.488281 336.292969 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.359375 328.277344 C 119.359375 328.230469 119.320312 328.191406 119.273438 328.191406 C 119.226562 328.191406 119.1875 328.230469 119.1875 328.277344 C 119.1875 328.324219 119.226562 328.363281 119.273438 328.363281 C 119.320312 328.363281 119.359375 328.324219 119.359375 328.277344 Z M 119.359375 328.277344 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.449219 319.769531 C 116.449219 319.722656 116.410156 319.683594 116.363281 319.683594 C 116.316406 319.683594 116.277344 319.722656 116.277344 319.769531 C 116.277344 319.816406 116.316406 319.855469 116.363281 319.855469 C 116.410156 319.855469 116.449219 319.816406 116.449219 319.769531 Z M 116.449219 319.769531 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.28125 311.359375 C 112.28125 311.3125 112.242188 311.273438 112.195312 311.273438 C 112.148438 311.273438 112.109375 311.3125 112.109375 311.359375 C 112.109375 311.40625 112.148438 311.445312 112.195312 311.445312 C 112.242188 311.445312 112.28125 311.40625 112.28125 311.359375 Z M 112.28125 311.359375 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.8125 303.328125 C 108.8125 303.28125 108.773438 303.242188 108.726562 303.242188 C 108.679688 303.242188 108.640625 303.28125 108.640625 303.328125 C 108.640625 303.375 108.679688 303.414062 108.726562 303.414062 C 108.773438 303.414062 108.8125 303.375 108.8125 303.328125 Z M 108.8125 303.328125 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.617188 296.09375 C 105.617188 296.046875 105.578125 296.007812 105.53125 296.007812 C 105.484375 296.007812 105.445312 296.046875 105.445312 296.09375 C 105.445312 296.140625 105.484375 296.179688 105.53125 296.179688 C 105.578125 296.179688 105.617188 296.140625 105.617188 296.09375 Z M 105.617188 296.09375 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 102.085938 287.894531 C 102.085938 287.847656 102.046875 287.808594 102 287.808594 C 101.953125 287.808594 101.914062 287.847656 101.914062 287.894531 C 101.914062 287.941406 101.953125 287.980469 102 287.980469 C 102.046875 287.980469 102.085938 287.941406 102.085938 287.894531 Z M 102.085938 287.894531 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.304688 280.382812 C 99.304688 280.335938 99.265625 280.296875 99.21875 280.296875 C 99.171875 280.296875 99.132812 280.335938 99.132812 280.382812 C 99.132812 280.429688 99.171875 280.46875 99.21875 280.46875 C 99.265625 280.46875 99.304688 280.429688 99.304688 280.382812 Z M 99.304688 280.382812 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.941406 273.453125 C 96.941406 273.40625 96.902344 273.367188 96.855469 273.367188 C 96.808594 273.367188 96.769531 273.40625 96.769531 273.453125 C 96.769531 273.5 96.808594 273.539062 96.855469 273.539062 C 96.902344 273.539062 96.941406 273.5 96.941406 273.453125 Z M 96.941406 273.453125 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.117188 267.4375 C 94.117188 267.390625 94.078125 267.351562 94.03125 267.351562 C 93.984375 267.351562 93.945312 267.390625 93.945312 267.4375 C 93.945312 267.484375 93.984375 267.523438 94.03125 267.523438 C 94.078125 267.523438 94.117188 267.484375 94.117188 267.4375 Z M 94.117188 267.4375 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.105469 260.902344 C 91.105469 260.855469 91.066406 260.816406 91.019531 260.816406 C 90.972656 260.816406 90.933594 260.855469 90.933594 260.902344 C 90.933594 260.949219 90.972656 260.988281 91.019531 260.988281 C 91.066406 260.988281 91.105469 260.949219 91.105469 260.902344 Z M 91.105469 260.902344 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.441406 254.601562 C 87.441406 254.554688 87.402344 254.515625 87.355469 254.515625 C 87.308594 254.515625 87.269531 254.554688 87.269531 254.601562 C 87.269531 254.648438 87.308594 254.6875 87.355469 254.6875 C 87.402344 254.6875 87.441406 254.648438 87.441406 254.601562 Z M 87.441406 254.601562 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.976562 247.457031 C 82.976562 247.410156 82.9375 247.371094 82.890625 247.371094 C 82.84375 247.371094 82.804688 247.410156 82.804688 247.457031 C 82.804688 247.503906 82.84375 247.542969 82.890625 247.542969 C 82.9375 247.542969 82.976562 247.503906 82.976562 247.457031 Z M 82.976562 247.457031 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 77.832031 240.5625 C 77.832031 240.515625 77.792969 240.476562 77.746094 240.476562 C 77.699219 240.476562 77.660156 240.515625 77.660156 240.5625 C 77.660156 240.609375 77.699219 240.648438 77.746094 240.648438 C 77.792969 240.648438 77.832031 240.609375 77.832031 240.5625 Z M 77.832031 240.5625 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 73.765625 233.816406 C 73.765625 233.769531 73.726562 233.730469 73.679688 233.730469 C 73.632812 233.730469 73.59375 233.769531 73.59375 233.816406 C 73.59375 233.863281 73.632812 233.902344 73.679688 233.902344 C 73.726562 233.902344 73.765625 233.863281 73.765625 233.816406 Z M 73.765625 233.816406 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 70.273438 226.617188 C 70.273438 226.570312 70.234375 226.53125 70.1875 226.53125 C 70.140625 226.53125 70.101562 226.570312 70.101562 226.617188 C 70.101562 226.664062 70.140625 226.703125 70.1875 226.703125 C 70.234375 226.703125 70.273438 226.664062 70.273438 226.617188 Z M 70.273438 226.617188 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.191406 218.820312 C 67.191406 218.773438 67.152344 218.734375 67.105469 218.734375 C 67.058594 218.734375 67.019531 218.773438 67.019531 218.820312 C 67.019531 218.867188 67.058594 218.90625 67.105469 218.90625 C 67.152344 218.90625 67.191406 218.867188 67.191406 218.820312 Z M 67.191406 218.820312 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 64.109375 211.023438 C 64.109375 210.976562 64.070312 210.9375 64.023438 210.9375 C 63.976562 210.9375 63.9375 210.976562 63.9375 211.023438 C 63.9375 211.070312 63.976562 211.109375 64.023438 211.109375 C 64.070312 211.109375 64.109375 211.070312 64.109375 211.023438 Z M 64.109375 211.023438 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.214844 203.632812 C 59.214844 203.585938 59.175781 203.546875 59.128906 203.546875 C 59.082031 203.546875 59.042969 203.585938 59.042969 203.632812 C 59.042969 203.679688 59.082031 203.71875 59.128906 203.71875 C 59.175781 203.71875 59.214844 203.679688 59.214844 203.632812 Z M 59.214844 203.632812 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 55.789062 198.1875 C 55.789062 198.140625 55.75 198.101562 55.703125 198.101562 C 55.65625 198.101562 55.617188 198.140625 55.617188 198.1875 C 55.617188 198.234375 55.65625 198.273438 55.703125 198.273438 C 55.75 198.273438 55.789062 198.234375 55.789062 198.1875 Z M 55.789062 198.1875 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.496094 192.726562 C 52.496094 192.679688 52.457031 192.640625 52.410156 192.640625 C 52.363281 192.640625 52.324219 192.679688 52.324219 192.726562 C 52.324219 192.773438 52.363281 192.8125 52.410156 192.8125 C 52.457031 192.8125 52.496094 192.773438 52.496094 192.726562 Z M 52.496094 192.726562 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 48.761719 186.753906 C 48.761719 186.707031 48.722656 186.667969 48.675781 186.667969 C 48.628906 186.667969 48.589844 186.707031 48.589844 186.753906 C 48.589844 186.800781 48.628906 186.839844 48.675781 186.839844 C 48.722656 186.839844 48.761719 186.800781 48.761719 186.753906 Z M 48.761719 186.753906 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 45.8125 180.664062 C 45.8125 180.617188 45.773438 180.578125 45.726562 180.578125 C 45.679688 180.578125 45.640625 180.617188 45.640625 180.664062 C 45.640625 180.710938 45.679688 180.75 45.726562 180.75 C 45.773438 180.75 45.8125 180.710938 45.8125 180.664062 Z M 45.8125 180.664062 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 43.03125 173.109375 C 43.03125 173.0625 42.992188 173.023438 42.945312 173.023438 C 42.898438 173.023438 42.859375 173.0625 42.859375 173.109375 C 42.859375 173.15625 42.898438 173.195312 42.945312 173.195312 C 42.992188 173.195312 43.03125 173.15625 43.03125 173.109375 Z M 43.03125 173.109375 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 39.875 165.679688 C 39.875 165.632812 39.835938 165.59375 39.789062 165.59375 C 39.742188 165.59375 39.703125 165.632812 39.703125 165.679688 C 39.703125 165.726562 39.742188 165.765625 39.789062 165.765625 C 39.835938 165.765625 39.875 165.726562 39.875 165.679688 Z M 39.875 165.679688 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.039062 160.070312 C 36.039062 160.023438 36 159.984375 35.953125 159.984375 C 35.90625 159.984375 35.867188 160.023438 35.867188 160.070312 C 35.867188 160.117188 35.90625 160.15625 35.953125 160.15625 C 36 160.15625 36.039062 160.117188 36.039062 160.070312 Z M 36.039062 160.070312 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.753906 156.058594 C 32.753906 156.011719 32.714844 155.972656 32.667969 155.972656 C 32.621094 155.972656 32.582031 156.011719 32.582031 156.058594 C 32.582031 156.105469 32.621094 156.144531 32.667969 156.144531 C 32.714844 156.144531 32.753906 156.105469 32.753906 156.058594 Z M 32.753906 156.058594 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.957031 152.925781 C 29.957031 152.878906 29.917969 152.839844 29.871094 152.839844 C 29.824219 152.839844 29.785156 152.878906 29.785156 152.925781 C 29.785156 152.972656 29.824219 153.011719 29.871094 153.011719 C 29.917969 153.011719 29.957031 152.972656 29.957031 152.925781 Z M 29.957031 152.925781 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.433594 148.347656 C 27.433594 148.300781 27.394531 148.261719 27.347656 148.261719 C 27.300781 148.261719 27.261719 148.300781 27.261719 148.347656 C 27.261719 148.394531 27.300781 148.433594 27.347656 148.433594 C 27.394531 148.433594 27.433594 148.394531 27.433594 148.347656 Z M 27.433594 148.347656 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.789062 144.769531 C 23.789062 144.722656 23.75 144.683594 23.703125 144.683594 C 23.65625 144.683594 23.617188 144.722656 23.617188 144.769531 C 23.617188 144.816406 23.65625 144.855469 23.703125 144.855469 C 23.75 144.855469 23.789062 144.816406 23.789062 144.769531 Z M 23.789062 144.769531 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 21.621094 141.316406 C 21.621094 141.269531 21.582031 141.230469 21.535156 141.230469 C 21.488281 141.230469 21.449219 141.269531 21.449219 141.316406 C 21.449219 141.363281 21.488281 141.402344 21.535156 141.402344 C 21.582031 141.402344 21.621094 141.363281 21.621094 141.316406 Z M 21.621094 141.316406 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 18.714844 136.519531 C 18.714844 136.472656 18.675781 136.433594 18.628906 136.433594 C 18.582031 136.433594 18.542969 136.472656 18.542969 136.519531 C 18.542969 136.566406 18.582031 136.605469 18.628906 136.605469 C 18.675781 136.605469 18.714844 136.566406 18.714844 136.519531 Z M 18.714844 136.519531 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.839844 132.277344 C 14.839844 132.230469 14.800781 132.191406 14.753906 132.191406 C 14.707031 132.191406 14.667969 132.230469 14.667969 132.277344 C 14.667969 132.324219 14.707031 132.363281 14.753906 132.363281 C 14.800781 132.363281 14.839844 132.324219 14.839844 132.277344 Z M 14.839844 132.277344 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 11.878906 127.019531 C 11.878906 126.972656 11.839844 126.933594 11.792969 126.933594 C 11.746094 126.933594 11.707031 126.972656 11.707031 127.019531 C 11.707031 127.066406 11.746094 127.105469 11.792969 127.105469 C 11.839844 127.105469 11.878906 127.066406 11.878906 127.019531 Z M 11.878906 127.019531 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.78125 122.132812 C 8.78125 122.085938 8.742188 122.046875 8.695312 122.046875 C 8.648438 122.046875 8.609375 122.085938 8.609375 122.132812 C 8.609375 122.179688 8.648438 122.21875 8.695312 122.21875 C 8.742188 122.21875 8.78125 122.179688 8.78125 122.132812 Z M 8.78125 122.132812 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 6.183594 118.542969 C 6.183594 118.496094 6.144531 118.457031 6.097656 118.457031 C 6.050781 118.457031 6.011719 118.496094 6.011719 118.542969 C 6.011719 118.589844 6.050781 118.628906 6.097656 118.628906 C 6.144531 118.628906 6.183594 118.589844 6.183594 118.542969 Z M 6.183594 118.542969 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 3.351562 115.9375 C 3.351562 115.890625 3.3125 115.851562 3.265625 115.851562 C 3.21875 115.851562 3.179688 115.890625 3.179688 115.9375 C 3.179688 115.984375 3.21875 116.023438 3.265625 116.023438 C 3.3125 116.023438 3.351562 115.984375 3.351562 115.9375 Z M 3.351562 115.9375 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 1.394531 113.902344 C 1.394531 113.855469 1.355469 113.816406 1.308594 113.816406 C 1.261719 113.816406 1.222656 113.855469 1.222656 113.902344 C 1.222656 113.949219 1.261719 113.988281 1.308594 113.988281 C 1.355469 113.988281 1.394531 113.949219 1.394531 113.902344 Z M 1.394531 113.902344 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0.65625 111.945312 C 0.65625 111.898438 0.617188 111.859375 0.570312 111.859375 C 0.523438 111.859375 0.484375 111.898438 0.484375 111.945312 C 0.484375 111.992188 0.523438 112.03125 0.570312 112.03125 C 0.617188 112.03125 0.65625 111.992188 0.65625 111.945312 Z M 0.65625 111.945312 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0.171875 109.496094 C 0.171875 109.449219 0.132812 109.410156 0.0859375 109.410156 C 0.0390625 109.410156 0 109.449219 0 109.496094 C 0 109.542969 0.0390625 109.582031 0.0859375 109.582031 C 0.132812 109.582031 0.171875 109.542969 0.171875 109.496094 Z M 0.171875 109.496094 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0.503906 108.125 C 0.503906 108.078125 0.464844 108.039062 0.417969 108.039062 C 0.371094 108.039062 0.332031 108.078125 0.332031 108.125 C 0.332031 108.171875 0.371094 108.210938 0.417969 108.210938 C 0.464844 108.210938 0.503906 108.171875 0.503906 108.125 Z M 0.503906 108.125 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0.730469 106.789062 C 0.730469 106.742188 0.691406 106.703125 0.644531 106.703125 C 0.597656 106.703125 0.558594 106.742188 0.558594 106.789062 C 0.558594 106.835938 0.597656 106.875 0.644531 106.875 C 0.691406 106.875 0.730469 106.835938 0.730469 106.789062 Z M 0.730469 106.789062 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 2.519531 103.308594 C 2.519531 103.261719 2.480469 103.222656 2.433594 103.222656 C 2.386719 103.222656 2.347656 103.261719 2.347656 103.308594 C 2.347656 103.355469 2.386719 103.394531 2.433594 103.394531 C 2.480469 103.394531 2.519531 103.355469 2.519531 103.308594 Z M 2.519531 103.308594 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 4.296875 99.523438 C 4.296875 99.476562 4.257812 99.4375 4.210938 99.4375 C 4.164062 99.4375 4.125 99.476562 4.125 99.523438 C 4.125 99.570312 4.164062 99.609375 4.210938 99.609375 C 4.257812 99.609375 4.296875 99.570312 4.296875 99.523438 Z M 4.296875 99.523438 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 5.578125 95.800781 C 5.578125 95.753906 5.539062 95.714844 5.492188 95.714844 C 5.445312 95.714844 5.40625 95.753906 5.40625 95.800781 C 5.40625 95.847656 5.445312 95.886719 5.492188 95.886719 C 5.539062 95.886719 5.578125 95.847656 5.578125 95.800781 Z M 5.578125 95.800781 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 6.894531 90.902344 C 6.894531 90.855469 6.855469 90.816406 6.808594 90.816406 C 6.761719 90.816406 6.722656 90.855469 6.722656 90.902344 C 6.722656 90.949219 6.761719 90.988281 6.808594 90.988281 C 6.855469 90.988281 6.894531 90.949219 6.894531 90.902344 Z M 6.894531 90.902344 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 7.636719 85.101562 C 7.636719 85.054688 7.597656 85.015625 7.550781 85.015625 C 7.503906 85.015625 7.464844 85.054688 7.464844 85.101562 C 7.464844 85.148438 7.503906 85.1875 7.550781 85.1875 C 7.597656 85.1875 7.636719 85.148438 7.636719 85.101562 Z M 7.636719 85.101562 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 7.316406 78.265625 C 7.316406 78.21875 7.277344 78.179688 7.230469 78.179688 C 7.183594 78.179688 7.144531 78.21875 7.144531 78.265625 C 7.144531 78.3125 7.183594 78.351562 7.230469 78.351562 C 7.277344 78.351562 7.316406 78.3125 7.316406 78.265625 Z M 7.316406 78.265625 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 7.519531 72.527344 C 7.519531 72.480469 7.480469 72.441406 7.433594 72.441406 C 7.386719 72.441406 7.347656 72.480469 7.347656 72.527344 C 7.347656 72.574219 7.386719 72.613281 7.433594 72.613281 C 7.480469 72.613281 7.519531 72.574219 7.519531 72.527344 Z M 7.519531 72.527344 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.390625 67.421875 C 8.390625 67.375 8.351562 67.335938 8.304688 67.335938 C 8.257812 67.335938 8.21875 67.375 8.21875 67.421875 C 8.21875 67.46875 8.257812 67.507812 8.304688 67.507812 C 8.351562 67.507812 8.390625 67.46875 8.390625 67.421875 Z M 8.390625 67.421875 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 10.859375 61.847656 C 10.859375 61.800781 10.820312 61.761719 10.773438 61.761719 C 10.726562 61.761719 10.6875 61.800781 10.6875 61.847656 C 10.6875 61.894531 10.726562 61.933594 10.773438 61.933594 C 10.820312 61.933594 10.859375 61.894531 10.859375 61.847656 Z M 10.859375 61.847656 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 14.476562 56.640625 C 14.476562 56.59375 14.4375 56.554688 14.390625 56.554688 C 14.34375 56.554688 14.304688 56.59375 14.304688 56.640625 C 14.304688 56.6875 14.34375 56.726562 14.390625 56.726562 C 14.4375 56.726562 14.476562 56.6875 14.476562 56.640625 Z M 14.476562 56.640625 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 16.253906 51.703125 C 16.253906 51.65625 16.214844 51.617188 16.167969 51.617188 C 16.121094 51.617188 16.082031 51.65625 16.082031 51.703125 C 16.082031 51.75 16.121094 51.789062 16.167969 51.789062 C 16.214844 51.789062 16.253906 51.75 16.253906 51.703125 Z M 16.253906 51.703125 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 17.683594 46.992188 C 17.683594 46.945312 17.644531 46.90625 17.597656 46.90625 C 17.550781 46.90625 17.511719 46.945312 17.511719 46.992188 C 17.511719 47.039062 17.550781 47.078125 17.597656 47.078125 C 17.644531 47.078125 17.683594 47.039062 17.683594 46.992188 Z M 17.683594 46.992188 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 18.535156 41.390625 C 18.535156 41.34375 18.496094 41.304688 18.449219 41.304688 C 18.402344 41.304688 18.363281 41.34375 18.363281 41.390625 C 18.363281 41.4375 18.402344 41.476562 18.449219 41.476562 C 18.496094 41.476562 18.535156 41.4375 18.535156 41.390625 Z M 18.535156 41.390625 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 20.941406 36.125 C 20.941406 36.078125 20.902344 36.039062 20.855469 36.039062 C 20.808594 36.039062 20.769531 36.078125 20.769531 36.125 C 20.769531 36.171875 20.808594 36.210938 20.855469 36.210938 C 20.902344 36.210938 20.941406 36.171875 20.941406 36.125 Z M 20.941406 36.125 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.734375 31.609375 C 23.734375 31.5625 23.695312 31.523438 23.648438 31.523438 C 23.601562 31.523438 23.5625 31.5625 23.5625 31.609375 C 23.5625 31.65625 23.601562 31.695312 23.648438 31.695312 C 23.695312 31.695312 23.734375 31.65625 23.734375 31.609375 Z M 23.734375 31.609375 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.796875 27.042969 C 24.796875 26.996094 24.757812 26.957031 24.710938 26.957031 C 24.664062 26.957031 24.625 26.996094 24.625 27.042969 C 24.625 27.089844 24.664062 27.128906 24.710938 27.128906 C 24.757812 27.128906 24.796875 27.089844 24.796875 27.042969 Z M 24.796875 27.042969 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.878906 23.910156 C 24.878906 23.863281 24.839844 23.824219 24.792969 23.824219 C 24.746094 23.824219 24.707031 23.863281 24.707031 23.910156 C 24.707031 23.957031 24.746094 23.996094 24.792969 23.996094 C 24.839844 23.996094 24.878906 23.957031 24.878906 23.910156 Z M 24.878906 23.910156 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.976562 19.402344 C 23.976562 19.355469 23.9375 19.316406 23.890625 19.316406 C 23.84375 19.316406 23.804688 19.355469 23.804688 19.402344 C 23.804688 19.449219 23.84375 19.488281 23.890625 19.488281 C 23.9375 19.488281 23.976562 19.449219 23.976562 19.402344 Z M 23.976562 19.402344 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.402344 17.289062 C 23.402344 17.242188 23.363281 17.203125 23.316406 17.203125 C 23.269531 17.203125 23.230469 17.242188 23.230469 17.289062 C 23.230469 17.335938 23.269531 17.375 23.316406 17.375 C 23.363281 17.375 23.402344 17.335938 23.402344 17.289062 Z M 23.402344 17.289062 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.96875 15.722656 C 23.96875 15.675781 23.929688 15.636719 23.882812 15.636719 C 23.835938 15.636719 23.796875 15.675781 23.796875 15.722656 C 23.796875 15.769531 23.835938 15.808594 23.882812 15.808594 C 23.929688 15.808594 23.96875 15.769531 23.96875 15.722656 Z M 23.96875 15.722656 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.136719 14.425781 C 25.136719 14.378906 25.097656 14.339844 25.050781 14.339844 C 25.003906 14.339844 24.964844 14.378906 24.964844 14.425781 C 24.964844 14.472656 25.003906 14.511719 25.050781 14.511719 C 25.097656 14.511719 25.136719 14.472656 25.136719 14.425781 Z M 25.136719 14.425781 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 26.890625 12.660156 C 26.890625 12.613281 26.851562 12.574219 26.804688 12.574219 C 26.757812 12.574219 26.71875 12.613281 26.71875 12.660156 C 26.71875 12.707031 26.757812 12.746094 26.804688 12.746094 C 26.851562 12.746094 26.890625 12.707031 26.890625 12.660156 Z M 26.890625 12.660156 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.617188 11.140625 C 28.617188 11.09375 28.578125 11.054688 28.53125 11.054688 C 28.484375 11.054688 28.445312 11.09375 28.445312 11.140625 C 28.445312 11.1875 28.484375 11.226562 28.53125 11.226562 C 28.578125 11.226562 28.617188 11.1875 28.617188 11.140625 Z M 28.617188 11.140625 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.546875 10.601562 C 29.546875 10.554688 29.507812 10.515625 29.460938 10.515625 C 29.414062 10.515625 29.375 10.554688 29.375 10.601562 C 29.375 10.648438 29.414062 10.6875 29.460938 10.6875 C 29.507812 10.6875 29.546875 10.648438 29.546875 10.601562 Z M 29.546875 10.601562 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.984375 10.738281 C 28.984375 10.691406 28.945312 10.652344 28.898438 10.652344 C 28.851562 10.652344 28.8125 10.691406 28.8125 10.738281 C 28.8125 10.785156 28.851562 10.824219 28.898438 10.824219 C 28.945312 10.824219 28.984375 10.785156 28.984375 10.738281 Z M 28.984375 10.738281 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.402344 10.492188 C 29.402344 10.445312 29.363281 10.40625 29.316406 10.40625 C 29.269531 10.40625 29.230469 10.445312 29.230469 10.492188 C 29.230469 10.539062 29.269531 10.578125 29.316406 10.578125 C 29.363281 10.578125 29.402344 10.539062 29.402344 10.492188 Z M 29.402344 10.492188 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.632812 9.851562 C 29.632812 9.804688 29.59375 9.765625 29.546875 9.765625 C 29.5 9.765625 29.460938 9.804688 29.460938 9.851562 C 29.460938 9.898438 29.5 9.9375 29.546875 9.9375 C 29.59375 9.9375 29.632812 9.898438 29.632812 9.851562 Z M 29.632812 9.851562 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.179688 8.148438 C 30.179688 8.101562 30.140625 8.0625 30.09375 8.0625 C 30.046875 8.0625 30.007812 8.101562 30.007812 8.148438 C 30.007812 8.195312 30.046875 8.234375 30.09375 8.234375 C 30.140625 8.234375 30.179688 8.195312 30.179688 8.148438 Z M 30.179688 8.148438 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.4375 4.878906 C 29.4375 4.832031 29.398438 4.792969 29.351562 4.792969 C 29.304688 4.792969 29.265625 4.832031 29.265625 4.878906 C 29.265625 4.925781 29.304688 4.964844 29.351562 4.964844 C 29.398438 4.964844 29.4375 4.925781 29.4375 4.878906 Z M 29.4375 4.878906 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.746094 1.296875 C 28.746094 1.25 28.707031 1.210938 28.660156 1.210938 C 28.613281 1.210938 28.574219 1.25 28.574219 1.296875 C 28.574219 1.34375 28.613281 1.382812 28.660156 1.382812 C 28.707031 1.382812 28.746094 1.34375 28.746094 1.296875 Z M 28.746094 1.296875 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.753906 0.0859375 C 27.753906 0.0390625 27.714844 0 27.667969 0 C 27.621094 0 27.582031 0.0390625 27.582031 0.0859375 C 27.582031 0.132812 27.621094 0.171875 27.667969 0.171875 C 27.714844 0.171875 27.753906 0.132812 27.753906 0.0859375 Z M 27.753906 0.0859375 \"/>\n<path style=\"fill:none;stroke-width:1.141671;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.929688 0.113281 C 27.929688 0.0664062 27.890625 0.0273438 27.84375 0.0273438 C 27.796875 0.0273438 27.757812 0.0664062 27.757812 0.113281 C 27.757812 0.160156 27.796875 0.199219 27.84375 0.199219 C 27.890625 0.199219 27.929688 0.160156 27.929688 0.113281 Z M 27.929688 0.113281 \"/>\n</g>\n</svg>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[&nbsp;]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- randomWalk3 = D.liftA2 (zipWith (+)) randomWalk (tail &lt;$&gt; randomWalk)</span><span class=\"w\"></span>\n\n<span class=\"c1\">-- d &lt;- L.sample $ fmap (convertListofNPointsToDiagram 10000) randomWalk3</span><span class=\"w\"></span>\n<span class=\"c1\">-- displayDiagram d</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Distribution-over-JSONs\">Distribution over JSONs<a class=\"anchor-link\" href=\"#Distribution-over-JSONs\">&#182;</a></h1>\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[60]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">BlockArguments</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">LambdaCase</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">OverloadedStrings</span><span class=\"w\"></span>\n\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Aeson.Lens</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Lens</span><span class=\"w\"> </span><span class=\"k\">hiding</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">nth</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">#</span><span class=\"p\">))</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Aeson</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Maybe</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">fromMaybe</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Class</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Sampler</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Monoid</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[4]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Data.ByteString.Lazy</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">B</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Text.Pretty.Simple</span><span class=\"w\"></span>\n\n<span class=\"nf\">json</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">fromMaybe</span><span class=\"w\"> </span><span class=\"n\">undefined</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">decode</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"kt\">B</span><span class=\"o\">.</span><span class=\"n\">readFile</span><span class=\"w\"> </span><span class=\"s\">&quot;file.json&quot;</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">IO</span><span class=\"w\"> </span><span class=\"kt\">Value</span><span class=\"w\"></span>\n\n\n<span class=\"nf\">pPrint</span><span class=\"w\"> </span><span class=\"n\">json</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>Object\n    ( fromList\n        [\n            ( &#34;address&#34;\n            , Object\n                ( fromList\n                    [\n                        ( &#34;id&#34;\n                        , Number 5.4\n                        )\n                    ,\n                        ( &#34;streetAddress&#34;\n                        , String &#34;21 2nd Street&#34;\n                        )\n                    ]\n                )\n            )\n        ,\n            ( &#34;age&#34;\n            , Number 27.0\n            )\n        ,\n            ( &#34;height&#34;\n            , Number 1.5\n            )\n        ,\n            ( &#34;isAlive&#34;\n            , Bool True\n            )\n        ,\n            ( &#34;name&#34;\n            , String &#34;John&#34;\n            )\n        ]\n    )</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[40]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- noisifyString :: T.Text -&gt; Distribution T.Text</span><span class=\"w\"></span>\n<span class=\"nf\">noisifyString</span><span class=\"w\"> </span><span class=\"n\">t</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">forM</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">unpack</span><span class=\"w\"> </span><span class=\"n\">t</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"nf\">\\</span><span class=\"n\">letter</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">bernoulli</span><span class=\"w\"> </span><span class=\"mf\">0.2</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"kr\">if</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"kr\">then</span><span class=\"w\"> </span><span class=\"n\">uniformD</span><span class=\"w\"> </span><span class=\"s\">&quot;abcdefghijklmnopqrstuvwxyz&quot;</span><span class=\"w\"> </span><span class=\"kr\">else</span><span class=\"w\"> </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"n\">letter</span><span class=\"w\"></span>\n\n<span class=\"nf\">jsonDist</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Distribution</span><span class=\"w\"> </span><span class=\"kt\">Value</span><span class=\"w\"></span>\n<span class=\"nf\">jsonDist</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"p\">((</span><span class=\"n\">transformM</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">_Double</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"kr\">case</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"mf\">0.001</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&gt;=&gt;</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"n\">transformM</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">_Bool</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"kr\">case</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">bernoulli</span><span class=\"w\"> </span><span class=\"mf\">0.9</span><span class=\"w\"> </span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&gt;=&gt;</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"n\">transformM</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">_String</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">noisifyString</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">    </span>\n<span class=\"w\">    </span><span class=\"n\">json</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[41]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">x</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIO</span><span class=\"w\"> </span><span class=\"n\">jsonDist</span><span class=\"w\"></span>\n<span class=\"nf\">pPrint</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>Object\n    ( fromList\n        [\n            ( &#34;address&#34;\n            , Object\n                ( fromList\n                    [\n                        ( &#34;id&#34;\n                        , Number 5.399309290336649524988388293422758579254150390625\n                        )\n                    ,\n                        ( &#34;streetAddress&#34;\n                        , String &#34;21 rnk Sqreet&#34;\n                        )\n                    ]\n                )\n            )\n        ,\n            ( &#34;age&#34;\n            , Number 27.001077265144541428298907703720033168792724609375\n            )\n        ,\n            ( &#34;height&#34;\n            , Number 1.50019777377331475776145452982746064662933349609375\n            )\n        ,\n            ( &#34;isAlive&#34;\n            , Bool True\n            )\n        ,\n            ( &#34;name&#34;\n            , String &#34;iohn&#34;\n            )\n        ]\n    )</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Ising-Model\">Ising Model<a class=\"anchor-link\" href=\"#Ising-Model\">&#182;</a></h1><p>See demo</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h2 id=\"Applications-of-probabilistic-programming-to-Bayesian-statistics\">Applications of probabilistic programming to Bayesian statistics<a class=\"anchor-link\" href=\"#Applications-of-probabilistic-programming-to-Bayesian-statistics\">&#182;</a></h2><p>An obvious application of probabilistic programming is to describe statistical models and perform Bayesian inference. Here are two typical cases.</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h3 id=\"Regression\">Regression<a class=\"anchor-link\" href=\"#Regression\">&#182;</a></h3>\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[&nbsp;]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Arrow</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">second</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Inference.PMMH</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Inference.RMSMC</span><span class=\"w\"></span>\n\n<span class=\"nf\">paramPrior</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">slope</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">intercept</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">noise</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">gamma</span><span class=\"w\"> </span><span class=\"mi\">7</span><span class=\"w\"> </span><span class=\"mi\">7</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">prob_outlier</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">uniform</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"mf\">0.5</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">slope</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">intercept</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">noise</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">prob_outlier</span><span class=\"p\">)</span><span class=\"w\"></span>\n\n<span class=\"nf\">forward</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">slope</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">intercept</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">noise</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">probOutlier</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">isOutlier</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">bernoulli</span><span class=\"w\"> </span><span class=\"n\">probOutlier</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"kr\">let</span><span class=\"w\"> </span><span class=\"n\">meanParams</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">if</span><span class=\"w\"> </span><span class=\"n\">isOutlier</span><span class=\"w\"></span>\n<span class=\"w\">                    </span><span class=\"kr\">then</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">20</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">                    </span><span class=\"kr\">else</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"o\">*</span><span class=\"n\">slope</span><span class=\"w\"> </span><span class=\"o\">+</span><span class=\"w\"> </span><span class=\"n\">intercept</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">sqrt</span><span class=\"w\"> </span><span class=\"n\">noise</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">meanParams</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">isOutlier</span><span class=\"p\">)</span><span class=\"w\"></span>\n\n<span class=\"nf\">regressionWithOutliersData</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Traversable</span><span class=\"w\"> </span><span class=\"n\">t</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"n\">t</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">t</span><span class=\"w\"> </span><span class=\"p\">((</span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"kt\">Bool</span><span class=\"p\">))</span><span class=\"w\"></span>\n<span class=\"nf\">regressionWithOutliersData</span><span class=\"w\"> </span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">params</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">paramPrior</span><span class=\"w\"></span>\n\n<span class=\"w\">    </span><span class=\"n\">forM</span><span class=\"w\"> </span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"nf\">\\</span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"p\">((</span><span class=\"n\">mu</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">std</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"n\">isOutlier</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">forward</span><span class=\"w\"> </span><span class=\"n\">params</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"n\">mu</span><span class=\"w\"> </span><span class=\"n\">std</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">((</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"n\">isOutlier</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">        </span>\n<span class=\"nf\">range</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"o\">-</span><span class=\"mi\">10</span><span class=\"p\">,</span><span class=\"o\">-</span><span class=\"mf\">9.9</span><span class=\"o\">..</span><span class=\"mi\">10</span><span class=\"p\">]</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Double</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">samples</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">regressionWithOutliersData</span><span class=\"w\"> </span><span class=\"n\">range</span><span class=\"w\"></span>\n<span class=\"nf\">plotVega</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">second</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">show</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"n\">samples</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[65]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">regressionWithOutliers</span><span class=\"w\"> </span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"n\">ys</span><span class=\"w\"> </span><span class=\"n\">params</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span>\n<span class=\"w\">    </span><span class=\"n\">outliers</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">forM</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"n\">ys</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"nf\">\\</span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"p\">((</span><span class=\"n\">mu</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">std</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"n\">isOutlier</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">forward</span><span class=\"w\"> </span><span class=\"n\">params</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">factor</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">normalPdf</span><span class=\"w\"> </span><span class=\"n\">mu</span><span class=\"w\"> </span><span class=\"n\">std</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"n\">isOutlier</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">params</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">outliers</span><span class=\"p\">)</span><span class=\"w\"></span>\n\n<span class=\"nf\">mhRuns</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">prior</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">pmmh</span><span class=\"w\"> </span><span class=\"mi\">10</span><span class=\"w\"> </span><span class=\"mi\">200</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">paramPrior</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"n\">regressionWithOutliers</span><span class=\"w\"> </span><span class=\"n\">range</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">snd</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">fst</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">samples</span><span class=\"p\">))</span><span class=\"w\"></span>\n\n<span class=\"nf\">m</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"p\">((</span><span class=\"kr\">_</span><span class=\"p\">,</span><span class=\"n\">a</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"n\">b</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">a</span><span class=\"p\">,</span><span class=\"n\">b</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">head</span><span class=\"w\"> </span><span class=\"n\">mhRuns</span><span class=\"w\"></span>\n\n\n<span class=\"nf\">outlierProb</span><span class=\"w\"> </span><span class=\"n\">s</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\">   </span><span class=\"n\">ln</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">exp</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"o\">/</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"o\">+</span><span class=\"n\">y</span><span class=\"p\">)))</span><span class=\"w\"> </span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">foldr</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"nf\">\\</span><span class=\"p\">(</span><span class=\"n\">lb</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">d</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">li</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span>\n<span class=\"w\">        </span><span class=\"p\">[</span><span class=\"w\"> </span><span class=\"kr\">if</span><span class=\"w\"> </span><span class=\"n\">b</span><span class=\"w\"> </span><span class=\"kr\">then</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">num1</span><span class=\"o\">+</span><span class=\"n\">d</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">num2</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"kr\">else</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">num1</span><span class=\"p\">,</span><span class=\"n\">num2</span><span class=\"o\">+</span><span class=\"n\">d</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">|</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">b</span><span class=\"p\">,(</span><span class=\"n\">num1</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">num2</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">lb</span><span class=\"w\"> </span><span class=\"n\">li</span><span class=\"p\">])</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"kt\">Prelude</span><span class=\"o\">.</span><span class=\"n\">repeat</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Log</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Log</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"n\">s</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre></pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[66]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">plotVega</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">take</span><span class=\"w\"> </span><span class=\"mi\">1000</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">fst</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">samples</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">outlierProb</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"p\">))</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfcAAAG/CAYAAABFfp4mAAAAAXNSR0IArs4c6QAAIABJREFUeF7snQd0VEUXx/8bEkIKIaGk0BJCCb1LVQEFCyo9gCiIUmwoWBAL0gQ/UAEVFESwgQJGECIqAiIgXXoJoQQINUCoaUBC9jszL5vsS7bM23kbNtk753gw++6due83d9/dmTdzx2A0Go2gQgSIABEgAkSACBQbAgYK7sWmL+lGiAARIAJEgAhwAhTcyRGIABEgAkSACBQzAhTci1mH0u0QASJABIgAEaDgTj5ABIgAESACRKCYEaDgXsw6lG6HCBABIkAEiEChB3e2OP/atWsICgpS0U9LS4OPjw88PDyoV4gAESACRIAIEAEJAoUa3FetWoV33nkH9erVw40bNzBlyhSUK1cO/fr1g6enJxITEzFy5EgMHDhQ4pZIlQgQASJABIiAexMo1OAeEhKCnTt3onLlyjh06BCys7Px22+/ISUlBZMmTUJSUhLCwsLARvG+vr7u3TN090SACBABIkAEHCRQaME9PT0dfn5+6N69O9asWYOnn34aH330EUaMGIGOHTuib9++YFP2bFo+ISEBkZGRDt4SqREBIkAEiAARcG8ChRbcjx07hpo1a/Kp+B49euCll17CgAEDEBsbi969e6NXr168J9joftu2bYiIiMDGjRuxadMmVQ8FBwejXbt27t1rdPdEgAgQASLgEAE9B45sQHr27FlcunSJx6z8a8m0Gnjnzh3cunULJUuW5K+qZUqhBffk5GRUqFAB169fR0BAAH744QesXbuWj9DZ32wEz26MwWEL7qwtrGM/DkaNGiVzz07VPX78uEvPOpB9ct1P/IifHAE5bfI/1+F39OhRPuO8a9euXKOGDh2KGTNm8OBsq3zxxRcIDAzEU089hT///BOdO3fG8uXLedx74oknsGTJEj4IlimFFtzZL5yqVatizpw5eOSRR/D888+jZcuWPODPnDkTbLFdTEwMpk2bhi1btli9JwruMt0N0MOB+MkRkNMm/yN+cgTktPXyv8zMTDRv3hz79u3DCy+8gBYtWvDYtnXrVnz44Yd84bitUqVKFdSpU4fHPVNwX7ZsGWrVqsUHvmyReYMGDaRuttCCO7OSvWsfPnw4Xynfpk0bzJo1i29/Y79a4uLikJGRgdWrV/Ogb61QcJfqbwru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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>As the above plot shows, this works nicely: the <code>slope</code>, <code>intercept</code>, <code>noise</code> and <code>prob_outlier</code> variables are inferred by a random walk through the space, while the score to determine whether to accept a new proposed step in this walk is determined by a particle filter which guesses which points are outliers after each observation.</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"A-state-space-model\">A state space model<a class=\"anchor-link\" href=\"#A-state-space-model\">&#182;</a></h1>\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[70]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Applicative</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Data.Text</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">T</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Pipes</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Producer</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">&gt;-&gt;</span><span class=\"p\">))</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Pipes</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">P</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Pipes.Prelude</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">unfoldr</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Pipes.Prelude</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">P</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Ord</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.List</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Arrow</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">first</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[71]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">variance</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"></span>\n\n<span class=\"c1\">-- how to move from one latent state to the next</span><span class=\"w\"></span>\n<span class=\"nf\">latentTransition</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"nf\">latentTransition</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"n\">liftA2</span><span class=\"w\"> </span><span class=\"p\">(,)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"o\">+</span><span class=\"mf\">0.5</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">variance</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">y</span><span class=\"o\">+</span><span class=\"mf\">0.5</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">variance</span><span class=\"p\">)</span><span class=\"w\"></span>\n\n<span class=\"c1\">-- a Markovian random walk starting at (0,0), with latentTransition as the kernel</span><span class=\"w\"></span>\n<span class=\"c1\">-- a Producer is an infinite stream of values</span><span class=\"w\"></span>\n<span class=\"nf\">walk</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">Producer</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"kt\">Double</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"n\">r</span><span class=\"w\"></span>\n<span class=\"nf\">walk</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">flip</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">unfoldr</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"mi\">0</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"nf\">\\</span><span class=\"n\">s</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"kt\">Right</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">new</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">latentTransition</span><span class=\"w\"> </span><span class=\"n\">s</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">new</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">new</span><span class=\"p\">)</span><span class=\"w\"></span>\n\n<span class=\"c1\">-- convert the stream to a list, taking only the first 100 steps</span><span class=\"w\"></span>\n<span class=\"nf\">toList</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Monad</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"kt\">Producer</span><span class=\"w\"> </span><span class=\"n\">a</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"nb\">()</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"n\">a</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">toList</span><span class=\"w\"> </span><span class=\"n\">prod</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">fold</span><span class=\"w\">  </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"n\">y</span><span class=\"p\">])</span><span class=\"w\"> </span><span class=\"kt\">[]</span><span class=\"w\"> </span><span class=\"n\">id</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">prod</span><span class=\"w\"> </span><span class=\"o\">&gt;-&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">take</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"p\">)</span><span class=\"w\"></span>\n\n<span class=\"c1\">-- generate a stream of observations by sampling a point noisily for each step in the walk</span><span class=\"w\"></span>\n<span class=\"nf\">observations</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">walk</span><span class=\"w\"> </span><span class=\"o\">&gt;-&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">mapM</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">x&#39;</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">y&#39;</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">x&#39;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y&#39;</span><span class=\"p\">))</span><span class=\"w\"></span>\n<span class=\"w\">        </span>\n<span class=\"p\">(</span><span class=\"n\">xs</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">ys</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">xs&#39;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">ys&#39;</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">unzip4</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">toList</span><span class=\"w\"> </span><span class=\"n\">observations</span><span class=\"w\"></span>\n\n<span class=\"nf\">plotVega</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">xs&#39;</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">ys</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">ys&#39;</span><span class=\"p\">))</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"n\">replicate</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"s\">&quot;Latent&quot;</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">replicate</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"s\">&quot;Observed&quot;</span><span class=\"p\">)))</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[72]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- take the original random walk as a prior and condition on the observations</span><span class=\"w\"></span>\n<span class=\"c1\">-- to obtain a posterior random walk</span><span class=\"w\"></span>\n<span class=\"nf\">conditioning</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">MonadFactor</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"kt\">Producer</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"kt\">Double</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"nb\">()</span><span class=\"w\"></span>\n<span class=\"nf\">conditioning</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">walk</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">each</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">xs&#39;</span><span class=\"w\"> </span><span class=\"n\">ys&#39;</span><span class=\"p\">))</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"o\">&gt;-&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">chain</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"p\">((</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"n\">y</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x&#39;</span><span class=\"p\">,</span><span class=\"n\">y&#39;</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">factor</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">normalPdf</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"n\">variance</span><span class=\"w\"> </span><span class=\"n\">x&#39;</span><span class=\"w\"> </span><span class=\"o\">*</span><span class=\"w\"> </span><span class=\"n\">normalPdf</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"n\">variance</span><span class=\"w\"> </span><span class=\"n\">y&#39;</span><span class=\"w\"> </span><span class=\"p\">))</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"o\">&gt;-&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">map</span><span class=\"w\"> </span><span class=\"n\">fst</span><span class=\"w\"> </span>\n\n<span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadMeasure</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">[(</span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"kt\">Double</span><span class=\"p\">)]</span><span class=\"w\"></span>\n<span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">toList</span><span class=\"w\"> </span><span class=\"n\">conditioning</span><span class=\"w\"></span>\n\n<span class=\"nf\">smcRes</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">runPopulation</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">smcMultinomial</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"> </span><span class=\"mi\">5000</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre></pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[78]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Arrow</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.List</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">sortOn</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"nf\">nubBy</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Function</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">on</span><span class=\"p\">)</span><span class=\"w\"></span>\n\n<span class=\"p\">((</span><span class=\"n\">infX</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">infY</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"n\">strs</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">second</span><span class=\"w\"> </span><span class=\"n\">join</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">first</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">unzip</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">join</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">unzip</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">second</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">replicate</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">show</span><span class=\"p\">)))</span><span class=\"w\"> </span><span class=\"n\">smcRes</span><span class=\"w\"></span>\n\n<span class=\"nf\">plotVega</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">infX</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">ys</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">infY</span><span class=\"p\">))</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"n\">replicate</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"s\">&quot;True&quot;</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">take</span><span class=\"w\"> </span><span class=\"mi\">10000</span><span class=\"w\"> </span><span class=\"n\">strs</span><span class=\"p\">))</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedHTMLCommon jp-RenderedHTML jp-OutputArea-output \" data-mime-type=\"text/html\">\n<style>/* Styles used for the Hoogle display in the pager */\n.hoogle-doc {\ndisplay: block;\npadding-bottom: 1.3em;\npadding-left: 0.4em;\n}\n.hoogle-code {\ndisplay: block;\nfont-family: monospace;\nwhite-space: pre;\n}\n.hoogle-text {\ndisplay: block;\n}\n.hoogle-name {\ncolor: green;\nfont-weight: bold;\n}\n.hoogle-head {\nfont-weight: bold;\n}\n.hoogle-sub {\ndisplay: block;\nmargin-left: 0.4em;\n}\n.hoogle-package {\nfont-weight: bold;\nfont-style: italic;\n}\n.hoogle-module {\nfont-weight: bold;\n}\n.hoogle-class {\nfont-weight: bold;\n}\n.get-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\ndisplay: block;\nwhite-space: pre-wrap;\n}\n.show-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\nmargin-left: 1em;\n}\n.mono {\nfont-family: monospace;\ndisplay: block;\n}\n.err-msg {\ncolor: red;\nfont-style: italic;\nfont-family: monospace;\nwhite-space: pre;\ndisplay: block;\n}\n#unshowable {\ncolor: red;\nfont-weight: bold;\n}\n.err-msg.in.collapse {\npadding-top: 0.7em;\n}\n.highlight-code {\nwhite-space: pre;\nfont-family: monospace;\n}\n.suggestion-warning { \nfont-weight: bold;\ncolor: rgb(200, 130, 0);\n}\n.suggestion-error { \nfont-weight: bold;\ncolor: red;\n}\n.suggestion-name {\nfont-weight: bold;\n}\n</style><div class=\"suggestion-name\" style=\"clear:both;\">Use bimap</div><div class=\"suggestion-row\" style=\"float: left;\"><div class=\"suggestion-warning\">Found:</div><div class=\"highlight-code\" id=\"haskell\">second join\n  $ first (unzip . join)\n      $ unzip $ fmap (second (replicate 100 . (T.pack . show))) smcRes</div></div><div class=\"suggestion-row\" style=\"float: left;\"><div class=\"suggestion-warning\">Why Not:</div><div class=\"highlight-code\" id=\"haskell\">bimap\n  (unzip . join) join\n  (unzip $ fmap (second (replicate 100 . (T.pack . show))) smcRes)</div></div>\n</div>\n\n</div>\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Current-work\">Current work<a class=\"anchor-link\" href=\"#Current-work\">&#182;</a></h1><ul>\n<li>implement Hamiltonian Monte Carlo</li>\n<li>explore online/active inference with SMC</li>\n<li>implementation of factor graphs and belief propagation</li>\n</ul>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"The-original-paper-Monad-Bayes-is-based-on\">The original paper Monad-Bayes is based on<a class=\"anchor-link\" href=\"#The-original-paper-Monad-Bayes-is-based-on\">&#182;</a></h1><p><img src=\"data:image/png;base64,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tSXAIXWwXgJr+lL+4YMrp1xZ+P+iSy5O98ru7fyyNEXbyz72oX223CQ837D+nZZAzxephJkDbCj+x6jaw488WiqCrhYFhEGcGCBt9QP10z1mPw3FPrRa24p2K1/97JtEm4t2BO0n+YWEBDysiIfc4C4yVTa/K8lU6AMPdF5GGI8wcx5+5OFaNhFKhN7l753vepeWCfvwMFA/8MADWUEDixYeeeSR9GwklbCM1M//j0udf5ZlW6O242cbprMtATqphNn+UP2P8of2F+UqXm0L4A6KH6bXj4ive1398o9kuz5FPNRLjdJ6S5BKWEbv7NMvvct/dizlSv/FUG8JUgfT1NlN67dutkW9RRrRnLTt9trR3HHnNKKJoU7dDEh6pON86iyVRHO9cUryxZDQpSnghBIp2B5wpBTuEaIk7RK6KAWcUCIF2wOOlMI9QpSkXUIXTQIzpeFj5wAPQ+A333xzrnSIQGUZUTVveMMb6uVXWL5eaaWVajn+o/7e975fqMemG8stt0K94korCn/pWnZScz5UYROAJRZbvF5kkUVq2fFWN+V46qmn6g9/+MOyTmFFTYsctlpvsvEm9a1/+UtMSNYjmOzwV+++++4aR87Bk3gDtZydU6+55pr1AQd8tL799tvlBWNWjfTauhhb14O8zjVipE5ZWmaZZeott9jC9S4uLwmvfe1r6+WXX74eO//Y+gfyYhMcoXJ4afz0YZ+u11577Xr06NGaXvhwoYUWrt/9nv+pr7jiCn8xjf63fC+h+YZ9bMiEfB8g+Zbt3lWP7JRVb7LJJvVfkO+G//GydO4559SY9vvGN72xlh2DNQ46f6+TPB944Mfrx6TDgIt2AX/wgx+oHPKN6a355UxFix83qUrq+q+33upxEb85dRZihx9+uE8twogm1sDR/mGHHV7LTpT6h/Qeduhhuh5uC0xHkpcx6PzOt7/taYB9TNfdeuuta9mh0DcbguyGG25YH3XkkeozjxCQ++67v97/gA9rmZRtk1X3gExDQjkbO3asljVO741l8nn56LLwwgvXsgNk/ZoFF9TRLzy0vvXNb+lGDEjjsssu65bukLVGhx1+WL2FlJull17a7IjMYlKmN918s/qiiy7y/NMPl156maZjicWWqOeff/56o/ETVB82e1hj9dXdxwsutFD9la98RXmPykve/vvtJ/XMysYwKeOrrbpq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frl49plnitdee6348ssvinnnn79YcvEli759+xQrrrBiyIeaXHHzTbcUoz8dU3RZYMFim21QvhhSLS655JJiwg8TixVWXL7o378fJGTueJRU4L777iteQr2OOvpoI5G3v5tvgu3HjC66LAh9Yg/khf/W/pdcSn0/FCugrP37o94M4b59MvrjYvz3PxTjxo0rpkyZUsw222xFz549i4032aSYd555VLShfinfiy8VRx9ztMhJpk2ev1/96sCiH2y+5ZZbetlojggI/eqrry4moH3utddeIU/JtaL//vvuh21eLI4+Crqj+ZCX0f/ySy8Xwx99uNhpJ7SJ+eZFflEwZvrpZ2OKa66+Fm1i1Wibzz//vLgK5WiD+Trbb799sUCXLiZlbv+8+eT6Od0nhbyeKV2JnhJEKJeo9ZffP+nm1Pa37b9uf/ERApA/RQkt0W2SAOcS9fNXP3/8IG/UOOr3T/3+QcvAf/v95VtK/hap3z+wijxEJbvoc2ViK8HjTbgusx36ENxlti02BGojnk16OdHf4dTZDQdu7PpvsKHr0289t27vvujDOBx50iqxhQIhRSqSKAKVyYr72F5tQpXytJ+c/tZW3hd+bkuMuxniwnXs2DHCs846q8MHdWZ/eJvdcccd79q0aePWWHMNd9BBB7ndd9/dLb3kUpJunXXWdeiERmOqJbfddlvwW9zPtt/e3Jfc/ttss43DWTeuFT1hDT5d4Tp16uw233wz169/f9ehw0yia6edd3ITJ070oqoIGNOwbugAxJZDoSsuv0LSrde/n5sydSoouX7KoKMoMscffzxRCdO7/x9//LH72c9+JvrWWGMNd8ABB4pedMAkH9p5qaWWQp2Sru223UZ4O+zws5B/UBSjVrfsssuKzCmnnJLZ31RTpFdffXW5Z9989XVMbQHKqw132H6HaI9UGm8Fq0/twnw07fzzL+D23Xcft8eee7qVVlpZyjbHnHO4Rx55xKsrF8xT3WqhfF9/7cunYmX9FO/SpQvyXgmQSvlMrP0nTZnsunXr7nbddVfP1GueRKi0zUxoz6qbRBVT/ZdfcTnq0uLQuXbYfCzkplIeffW1V0Xm+OOPi+nfeOMNfkuJHd5+++2UcchBozynJKb6KVeWKVNs/auyQVMTRpmsuI/tVUtcLVGtP1lNIWstgZswymTFfWyvNkeV8rTa/mqPZAlr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lcec0/FsU6MGx3BjVq9aZaaB33437zuDnW3AG2OKYgzvivyQdj/99LPh+eU1a9fImPD88y+YdevXJXjzBPB2jsknHB/zdvI88tOixYuK//hnx2OeeY6pVQPnLgNST8dYc9ddd5m3QdsnMNc79NBDTQH8763/LVu2FO0B45TMrThOvWZmYj5a+ajKwnukTqWEmfc/5u266/4FfrhI8OfKk9u0ad0m0/GHYCaDfpz/YZHAnH3O2QaqvvDd9/4HdWPMR14069asN1XAB9qA9xWRPgww0fhPPEnj6o73aZB/eUP6RU4IhOIIQoNonPdlDGFTF1/0RR8jgCkAAncQy8FOCSO0jFhIHQ/d54mW/wb++jijydtm03CGPLdcAsQbZ/GuZg5cCpQ7J85otmlnT29xhm0WndGs37AR5P1AzBerc/M3CInsGX1SVw4kYrAylxoerpo4DAFMsTo3f4OQvw1+TPztUKwicTep2WnN7NChQy0YuJCh23nd7JFHHmlbQ+0RApM98cQTZPUCA5gjEwrcvccFtkmTJvaFCRPsqfXqWXRuy3NlMVWUos6HqieHHXaYHY0zeaNHj7F5sKL3AHDSLF221NYHDDQ/26J5C1umbBm2WTv+mWfsxRdfLParr7nKDn1gqIVgExE8xgQBR1a6MRkU/Avm/2BPOukkSXdRzwstJgW207mdsNqTJmUizhcnvWhPP+00SxUWwsVEj952Gc7oHFXlKNnlHTd2rC1U6DB73XXXIiTdXvev6xA/p61T+2ScwaqCna289sqrrhKc3Xt09/SoX+9UOd/322+/26fHjbUQvOxhhQ+TXQ7S9OST60jeSAs1z6CsRxxxpH3h+ectJoES/uYbb0jwxIkTQJPSdtToUVCFu9HmBe0+mvKhhJEKjhIO0r0411cFdfHee+/ZSy65xObLm8cuxNkKNRAcZOVaEqH9f/755/aQ/IfYRx95xPJswiH5DhHVuZEjR9oN69dLMq76NWrc0L708ksWQhamyWnIy1MSRtWiI0uVsjmxM96yZUtb4oiStmSJ4haCrpyzID9bvny5nb9gvtQl3VdffQ3aHuqS5zxgcufJbVviHNlxxx0vZ2IKH15Ydl23iMqttV26dJb217xFc4uJtb2wew/Qs5CthzZz2umno27PtRBshWYYMAEx3f744482f/789u677pQ2l++QfBlUdrE0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PeRtpx13dI2QFktSPcoxHorxTdhx7p0Z012/Pr3d4N12xxpWRg1b+yzfsqWjf9DRdL/73XEip5ZHXuq8W2755d0nH30C3J+A+53oWU/+8cijbsy4sW7GjJmuD9LffbfdkHQdfFLvnn/uOYeple7JJ550hx95hGverKm77oYb3axvvpKPoK+5Zju7plyj+OCDD7hn8NH0pk2bSr65E/TUt6aBftg9NmaM7ORVj08PHXDgAe5DrBm97777IFvEzYfsmGOOdUsuGdbfTZ8+3T00cqR74vHH3dJLL+2OOOIIt8qqq4ot+mUu1uuOevgR9/DDj7ovv/jcoTPh8EDlnn/+OaxVHeJuuOEGOb8777rTPfaP0a4R5t13xjeSBu20k8j5g5bW3XbbbW7s6DFuga93eLhD3F+JnjqeP+fp66E1++NPPnHLY10u+aOOPsadf965CkEYUFyzOXr0aClnYb2jdy+/+qqUP36EutXKrVz3bt1dt27dJAqad/fcc8/D18/D10+4I448UlK67a9/lTW4Bx98sNto443d008+4e4cfrdbsukSbr/9D3ArrLiilJFnn31WrtMTTzzujj/+BDd+/Hjxf7/+/XDOO2P3tAZIr86NHTMWfprqXnjxBbflFlu6wYMHi/3L/nKZO+yw3zh0NKUu8YR4Ju/OnCm+fPPNNx2moLp99x7iVmy1MpQLsAbuGdSvye45lOXf/va3DiNe7gGU46OOOtqtscYawl9z7TXunbenu1atVnQHHnSwa7366kwaaXvkux7rHuBfdaxo8p9fYc3xLTff7PCiwnXp0sVgAc4UnBs7djx2Fx+LneIauJ1wbdu3b+e++OJLd++997oLLrjATUed+X9//JNbbbVVXJMlmrqrr7ra4WWEO+/889wWm2/hOnbs6O68/Q631DJLu56o8/Gh2WKbxDXje++7j5Q/3JhRph7ButZH8L2tRq7lci3cAQccIGWea0GnTHlTzr9fv/7uyquucGu1Xxtpd3effva5+8ej/8B1ftb13Lan67YNrj0PNRQ4N3PGDCnrV151lcOoOOrTM+6pJ59yn37+mTvx+ONdHXw2beqb+ID5mu7a665H+7KeGz58ONavruv22GN3N336DORtlHv//ffd4Ucc7mZMn+nuuONv7uRTT3WLoc1j2X70H4+ibXtYdtVrifZsf9RH1lnWxzenTHGt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4aWXXbu2bdyOgwY5TEWXPDIeXijA7gS3yiqrBr8iHsvfgvkop1hfqNdfEst+nn/+efhykmu6ZDOHGQEOL3rct7NmSdlbs107lA0fncsmbpmlmrvhuL777jPEtW7dRtbC8/qz/rGc7LLLzq4NrpUem262qVuuRUt3+OGHubGon+uuva4bNGgnrBluIhCWs4njJ7iRD4+SeLviGquOl2XzzTZzLVq0cEccfoQbM26sW2+dtXHeO6McNHYffviRe/Kpp92E8eNQ749AvV/JcUO4hliviZc/Uic/+PAD9/RTbBvGusOPONK1AobHlDenuOF3Dce65TmoU23d9gN3cC+gLTv66KPciy+8gGt9gRSLAw84QNq25597XjafYNsQiot3r73+OurMPfBRvcPLG/F52N8jv5k89/xz7vFJT2AN9hKyBvC2v97mZmF99k7wQbs14V8cH7z3vpuA+jB58rPulFNOdjfecIO0P/vut59cW7ZRDz34kHt7+juuS6eOrm//7dxii3ItOlsh5+bNnSvXnu1fu3Zroh1+z+FlFs7laLflVluK/U022cg1X4p19R6U0yFSV+l7adtGjnJroDztuutuspab67hZ/sbC39vBFv1/9/C73edYx3jMUUe5xRo3dndjze2zKDsdOmzodt9tV8f18Szz4xCnfxZnOOJ88eXn7uijjkE5XczdCX/Tjxugvdptt9146riGH7qnn3zKjZvAtvtIrIlezk1COuNR77v36I66varV7T3Rbm24wQbm/7mw+dBDo+T6t0NZ5f3n8sv/4o455lj8HSPp53e9nMLSAmn/DjzgQIfRRTdw+x3cmu3bObaX3NaedW4D7A8wCvX+zSlTUAW8O/SQQ90CXGe2O+PQ7myLvK2MvN1+x51u5ozpjm3qBsib3n+5Pp/3uOdxn9oAPurRo5trvvTS7oLzLnAnnXSi2xU+696tu8OIv1sN6Tz59FMooxOy+1coo2z/7hkxwurWzrvsgnawjZz/u7A5AfX29TemYH+AU9wDD/D+NUHuXwcddLBbFPcvHlyLP3HCJLShD+Eat3W7DQ7XmDpef66jO33oMHca7mHF4zm2DWjDmjVj29Db3frXv7rZKLsDdxrk2qOcsfy9h3v2JPhkMtZS46Wzu+GG62F7Mbcfyi6P1994HWV3pJs+/W3XsVNnKU+LStkVtZuLsjvqoZFy/du1a49rONNdgbJ7lJXdx6X9W2qppXA/GuH2xX1mdbS9Ht9MHz9+ohuJ+3Jb3Jd3xX2Z7QZmGaEcTkI5HIdy2N8t22JZlN0RWIP7OZ4bjnZNFm8i68VZLzfosIGUw/lzUd5R/8aNG484/dBetXB3DR+OsvsFyu7RKLuNZY34s3gO2Qhld/Buu0vNK7Y/XM/P9pfPEdy3AdNZUT5uR/l4F+VjD9cB9yVtGeYinyNx3qyzWHrkZr7HsnsFyu3RUdm124I4K7Q7oYR1WG9dt0TTZnimeFzSfO211xxeaLvzzjvXYRlMcC5+33v/Pff3+x9w06a95XbbA3ngvQbH9bhO383+TsoAn4l69+2DcjbZPf74JDxr1SGvG7it8UyB4Uk8kwzHM8nL0kbsjGcSff75Dm0n6x+vP89V7uW43z3xxJPyzMbPQhx40AHIX520y7xf8zmqDa8Xyn8T3LtYTyZBPh5p9MC9fBXcy+/EvXw69v3Q+i4Zxk98/h+jXX/y6adxzSa4I484XPZSYPszAe1ISGcVtBt3Ip133F6/GoK6ub77FvfIW2++Fc9DB7h+uM47oN4zz7z/onuN87zbvfTSi25N1BM+ezVGefoA93Wm+yza5pPQNt+Etrkh6tb+++2LHNXhPvKWu/eeEdJGdO/e3W288UayPjXkRduw1ZCXvyEvM5GXvaT903Pi+d+BZ8LnX3wBbekGyHt3h2m9oubz5d3w/Ut4HsTMMHseDH6IfzU1huqlIMtbvZyK0UKnUUxdFCsfwvjXooBQVJDlVnMqRgudRjF1Uax8CONfiwJCUUGWW82pGC10FKUTnlX1syb8dmZDrNXkGk3K6vAnU2d79uIazd7okWJEU6fORt31QEa/kU7evOprukTO3i4EFbK8F6xUHj0CV5BBIL+R7r/N/jXXXON3GTxYTv2mm27ipcKaqjBypu/EOLW0e7duvts22/gRI0YIHg2tjHDp+d93/31+mWWW8RdffJGsGWnVqpWk9fLLL0vaO+20o/B77L6H8Fxnt/nmm3s81PpzzzvPX3bZZf6ee+7xq666quDewFRU2p81a5bv2rWLH4S1kKisfvfdd/PYbMKPuHu4pHPDjTf6lsstL+s69913X9+zZw/fuVMnSeP/s/cd8FbVyP95VAUU6SBKFQVExYLSi4CKCqIUu1jWiq6Kuoq9K/buWsCKYAOp4tKxoYhiQ1eBBwiKYEHpgjf/73eSycm59z7Utf78v3zeuycnmWSSyWQySSY5N1x/g8Bgompbt24laV8c/6LdG7uSNKuDIibxuiIMpVbei2r/ZkiDCYi99rrrbK2aNezixYsdO0Xtv379OtuhfXvbu3dvC2VU8OyJ3RwoA/b++++zuOzElitf3uru5EcffWT32GMPu9deeyVmyz4/pT8L1bRJE9SzmmVZGb3y22/kLCbb6/h+J0i5+dO1axc7AuY3dGtWr7HtUZZevXpbTHyl/sQ/cuRIC8XAHoJzuUzfEe1ar149OeNwzTXX2A0wxdp33862Q8cO0t59D4dNO+D6iums60Id2rezncATY8aOsy33aeVMWAQrSpcQUOrdGiYumIiBr8bbvVvsLbvANAPm2Yr99ttP8uZZVyh49rjjjrPlca6yYsVt7Np1ayXHn8N/AhjhV16eNm1aiMLAJGc2ochKWOECtyuBwcjusssughtKDnbZq4E+Gy3PCvYAjTBe247YPa4vNCqwV4NGY8eMlp1jKDL21ltukx3nYcOGIV9Xf9K9E+QXd1FbtgR9joWJD+KgFICuHR1/DFf+2FPoxEIxXUdJN87u03Ifn87aqVOm2i3KlrVPPz1c2t+1gv8FynPOPcdCoAp/tgAvDRw40EIBs1AucZ54trR3jx7dXXuj3eL2Zh9zfNILfDLCHnHEkbZ06TJ2hO9jLNdee+5pIaSxK3mAverqq+02FbdGmg4WFy9ZTIBt6zatozZuIXy/ETRUt9dee6J8JWw3mM9ejfQ880mcq1evtmPGjIn6/SfCPmkrA2uxmGLretkApRzZZuzkSZMtBg87+OEhFgshwr/z58+zoyFHRLZstbW9VWTL/ULfIIOOPlqLZdlmUCwtFiYseZ98PnjwIxIf979zzj5H6s/+v1eLFvbigReBX5uLRQEmwAJPs7fatbeVPGhWWatmLTmvR1569tlngKeaffihh+3gIUNslSpVpP5r1zoeX7JkicUE2/bv3x9lGWrr1q1n69WvJ+3xxhtv2B7dwYfSVzvYuuDDkiUKpLy4LM+2boX+hTPxPAu7996gPSwv2L9ovgmlCeXBeW3IX0wMxcSU56G6du1q20JOHg1a8Ml689gETZc7dXJpDpU0u1lMaIX39pM0bexRSNOubRtJ8waPWoD/KP+D7P7vf+W85H5dtW/3crixy8wz0xW32SacQYvrPXQo610XvFkf9R5pZ7/t6OobQx78ATr5/fzzz2XsYP0oq9jWULDtUZA1rM89d98jkFOnTkOedSUMl6rZ72D1kU/u8HgC+XLtWmchsnrNavTdlhjv+oCnRuOIxC44QtAQ5z8/t5gUSn6YNEr/Z1kdH28v4VhUkIK6vtUBMvgwJ4PZt8qUERnMwuEyPeE/nut041cXtEc75FFgr7/heik/Fv3Qxq2kXmzjFhg3m4EPN+Fj46TFpo2wyIGMcuMXQiL5ywzOOedc6Xvk3RZ7tbADYSFDWetkw1uCw/GuG7O7dQPv1tpWzrlznMDin4w9gx8G70JfqAzepfzHBXmCHxMwuy34nrw7dOiT0k/r10cbPj/CCu/2OERo0hFthMsGpc+yr2HxF+Oyyg3yLsYGjLE//LBJzCg77dtJ0mExB7JsV9sPY8MWW5S1XcCH5L9jjj4GFm/kXRz5meV4d19Nw/EE8o/jyRY4+81xsS3SHH0U+L0d6ev4nZXPlj8rV5I/9ne4kU/z5sjn2OPsVsIfW2NcIn9kLHm3FvvsGWdaLPgK79avjz4LOYAJuzKq0Nf9sG2iV3hZXyzsihyiVRmtpg4+uDvG4B8A6oDHom9VhJ5E/QcTUCnXcFiM0d13/7+hU5SBTlHO6xQZ+9HcuU6ngN7BPr1+/QbRoXr37uV0ElhhYdFT6M88KIc5lruxqqU95hiOVday/5NORx8NnY1Fl/ZqZY9A/5rAsXzvfWxTlH8j2uu776OxHHdVyFgOmrk+pf09t/7ZtOc5664iNwoEP/Oh/MHlixhzKorcYP+7zdMBi8jS/z76+COx7KKu2Bt3Uwzn2Np0Z6kn9T9cYpfIZtzZUKuWyuYfLMdwyt4HH3xQLPtKlCgJ+BEWCxQiJzj+H4Y6YXEM/HSsLQ8+4PjHsZwttGb1WouFQNGHR+M+i11AXx41wmK8LxPHe5ZpmCsTxmfqg0W5pPu69he4HK8LkN8ozjWUD0iFMxcE5ITlluLvgF9MZ3HHD+/66br/gdad0TzEdj+kl+3Z+3A9o4mJJpitA2xs8000HWliivkuGQcF+ml3dXTOSStp8iYMOYgnByQO+L+Lf4/d9xClmXWk2SUvmcGqbqru12PCRkG3Zo1TihhZp872loMs3cqV34qZ2rXXXCvv/BmCc28UUnM//MDxNrh3ayh+HEyV27FaarfFgKbvTKeClBcK0eH2SZwfLW3XedwZ5NN8990hkJtIPH+weii47r/3Pglja+CGVH9ZUcZ+sWwZcG8lyioBnn/uOYF//4P3BfWPmzbKu040JZPsHzT3zjs3EzjWq2zZMlaULIFL2v8KnJOpgUkoblGTmDtuxyQE8NOmThVc2LGRiYuaFOM7sbbxTjvahQsXZmNMvV+NMxscUCdPnizhN900yB6DyQt2QG2lSttY7ArYz5d+bqvjUgxOkOhIu9I4e7vGK7NUsrDyLpNWxtM8cYuyW6BttxLzX056aYZ7/fXXQxmEwoUJiDqeE+3Tp6+88twoJw0X/Otf8k7lbtBNN8XNqMnsl8u+EGV8LCYTZAR3BsVY7DoIzKrvV4kCzQFXz1jcjcuNqDi96y+S+in+Y8bSG6Mu+cSTbtHkcCiJZ0AB4iSlYYOGdsaMGcDrABcUuolmZygnq1atkvKQrmwvrODLOyf2VFTIPyuguCuNLrjgfLsnBgznMrYZlNBeh/WSV9K/JOj+L6FPxmK12t7s6XPFFeAPtNFGKIl0sAyQ+k8Ffzi6ajoLpXmmvYnp4N6ePRuXGTWw2PGQd62De3H1bw7FqsJWFezizxZLMCcNbP99oCzTUTFl/95a25uDMwbL6669Bn2sFBTstQLHPsYzlZywqONEk4qFugce+LfQaciQIXaZtjEmg3TPY1GD7ff+++/jzZWNk18uMjiXwVntBwVmyOAhAsNJAum+aJHrB+RNTqxCn0ST3Xqr60sLRTZk7CVQzFgfnpdji554won2G8giuhNPgmyB8qD4GUb+58LWCccfz1eLXTiRSecNOFfeOfiTD6kE5zggkIkllIxFWGBivjxHTrq1xIIA8fPnmuuulXoNvHig0POT/34MheU7WxXK+cUDL/bZZrCAM0rgYBkhCXWS+/XX7mwfJ+OsP1bBJc2P0nbgQ5R/OUz1P/porvTVZZBtuOnajvb96zmlPWUb3Fcrlgtd90C/X/ntSgnrg0UwXpiDnXop8/x5nwrMw5hI0PEoANtP0qyM05R0aQAzL5XGtfGtt6ANkW7RYie72adYByqjK5YvF1zStxE2Z867guuaq68RmK+/5rlbi0UIyjnUG+NGygmB45AkgPDkBdcI1lKusxyuPq5sZ5x+ui1bpqzPIIP+vlpgqIyu8Ge7krK5C+wGXnSR0Olb0g3oHn/8Cbmshe2+GHUkXiqnjJTS4OcWLHjENGDfKgkeWce+hXjpW82by4RCCoOw8/34xcVWOsIk45dF//pSJjljxoyV+OcwkSFu17/Qr3X8CmbmAuZ/XNmoJHOSz8VRFoSyoVRp8K6YbUrpMV64hRYuUnGR7xO/YFClSlXw7sCQKRebif/pZ8i74Plrrpb3r7/ybch30N/xbgZj4Sa7JeUOxn/yluPdDagXeLfCVkH/4GQgrpfwIfDsDh3lO+Vd6BwFwruvCe558+ZJmofIu6jG8q8c71J+rRTezYiegs8a2NdfA7/DBd4d7NIwYbb8WbU6HpdwNAZ5342FC5bPXXCYkQVHvrPPkoJXX+XrneJdzxtE7Mgce2TiUR+LIHfddZdcAsQFT8qUi7CQpY5Hmyh/1clYg8m3Olh/gd4Fdu4HblEf1j92p8Y7eZ0iYy/HmFMTl+bowt/ttzk5KmMOJkP4gL0fqzjmvB7GHC5YiLyEXGXZhQ+pR1HWICDhw/ekaqsxlrPdd26GsRxyh+4ebDyQRjKW56k/E+qkUWU/5Qbz4cL+csoN5nMXdALoP3q5JPEzX07O6WfWV16e1r1uv92NrVOoe8FRP2WagaDtWiyScIwnz1apXAlte7fAcAygSS4XruikLMDLsVDPfmfLiYsuulB48ttv3NjzOC4c3B76MfvYlVdcDp2shtvUQCFZJpaBtBcnNJEf917Ubw5IHJDIn9zkm+c/IZz7yU0ah8ToJDwO+Ovh52VAPKO5b5eutgsul+12IExnD+ZlQJhoHtaHE80eckaTAO2wstq6XYdQ3VC14NGoKEC87p2/UUzqTcP1qTklTxcTxwd/8Ch0FCBe987fKCb1puH61JySp4uJ44M/eBQ6ChCve+dvFJN6YzjMAoTpubrOFcxa29aSSR1XodZiNZeOcC2xA9i2XdskLwTKGTko8XTcqWLnmTx5kkeYkRU6hsF0VmD4Uxv5c3JJx3zp54pg7B588CHJ6zOvrFBJVoWXaeiux44i84YJmrxfickd37nz5QqZgVLbQm7J1DQcOFev+l4Gx94Q0oSfMGGCgLsdTVymcNWVkp/7cSk1PcOaQoByYH4FN8ZRiSW9lmJV0yOVZM2xy8GLlYgfZit2R5xl5YrlJNIG2BYsWIDdiBL2FNx8SQczopyJvUS4ivhfaz/59BMRvmecfoal0lm3bl07+5237b33uMHvPxP/g0nLbVhd7Y/krtSkHcyWXXbym7HXYRJJ5c8p69ZuA6HK3cbY8RwqV4zptP4cuHr79mYgd0F5phcmiTJwh/SSwKXiL/85geHA/ewzT2Nlv5fgfxEXh9Axnm1xcXTj7/hx4wQGZngS/1P8l5TSZ4hUuqMJs1gLM0DrdjFduRTvggVuoqkKNsO5ksnyvD3brfQzRWXSCDtGITU8P0J54uT+vXfftTcNGiQT/Fac0AlQRnb/ufN+ktBnHrOGwyIJlMzSUCT2ws4TV2sDf2B3jo67mfi0D+h6kp03f36CU1ILSKq6LsSVjDv57du1D5AMbYmdECou3J1hQg6i3PFxKVxW3LVpCoU7djdcjz6GwV75BKazWBX0ZzSRmAsjjOcuA3OR/oU25sSJuzfksRd9/2K+3LE/ELuh6gqZHjDHSnoLhR39HvktXvyZgMjiD97jc2cPPPQg8i2wi/0i1NTp0wRPY/DmY489hlXiTZ42GXuSly1aT4c3I/0W5lJSf+7UsAy0pMh1LmWcvg1kYAcMYIF4SMSdJvZ3R18La447JU8q6UzLf8oZ4iH/q4P5vFgkwKxWgi65BDtkqC/M+OT9KewM8f19P9Fk4DZQiMQiJC4UwteuXeP7F2iPxQ7iesnTfh0WjvjOiasWnBMoTn7omBUXOKjEXYtJMt0GpGH7XYUJg6Ki4lsSExNxCORtpywfPq2BIAf1ENqHuDgJo2Mo33nG3LmMHad9+5VXJIi3ChNG6z10qD/b7yfKip/AwR88LlemvxQ7jOIQt2DBfCk/d44VlGc4t8RumDqGMx1399SNGz8OYQUWZpAIwpl8yHsuaqrTvJgpJ2ys/0N+oqkwD3IBBfmqtQtlMHepnHM5SN8CDBdTGcLFFOKFGaZmg/FjL9u5a5dQfvav70WGPivWPcQxwZ/Z14nmVbTIERQOD3+dz8quNXch1TEc5obCB7QqoOPFdiwHeVdTsg+TF2A+HPLi+EPLDy7m0F1yycVS5+VYuCEQdzWZhryr+J3cOULg+aPhXASlMv/MM6hXb/JugfAuIWDSKflegwmcphl40UCxLJAA/AgfAhcXVem4cEbakN+Jg/8Xgd8pAxXrD1gIJAzTaDmy5Q9h2b4xf4wFf1D+cPynu+TSS6SeX2LCTPcUduSZL8w25V3xy0sIcW+Kl4sw8b0PtOTgeEz6PYp7Bgjnxpof7Jz33sWC5c2yu0yZrY78zoUj3qbNBDg2Y4/FZoHi55jD+pOnOOY0hk5SnzrJpEkCI2M5LFj+AYufefPm+2xdCamfUZbSMYS72JxQkh/YXiznBNxKro71h0m5vBJ+LPo7w7RPKZzL3eXJxRq2uy6QEob5DoxuUZa+ifZ49ZVXXSLAsH0u8xNNpsFn9MAbpWwL1JMLKxxbtZ6Mv+tO93WBTzDBVPzUv1g+LuLieIxt1mwX27BhQ1iQuDOyhGNZLgaPa5rxsOJiGuondNRPuYAvToAcJH9hui+0bwF9EEejRG9uCNpPFH0wVMWlTf0meWiwC8Fb8OTE+LgkbRo0eVOfPjWn5Oli4vjgDx6FjgLE6975G8Wk3jRcn5pT8nQxcXzwB49CRwHizWC+4m6d5aWy/IoJdzQP6o4dTUw0eUYT51a6ywyUprP8vEnY0WSeWGFRF3zBozH+mR2e910D/TP9yKbS3w4/TSIuu+wyECypOLf+2YloxqTBvEK6Cz9NENGfnVhuIUXS+++/X9I4YeLoP+yp4eigBbh11k80AbfttrXDRJN5nwiFT3cdJBXCEmVlseCvX78+bmXzu5cev04iaEbEfNxAbcSs1Le+mHN2xWKFuvvuvc9us00le+6559p7ZHJWIBNkxutAfaVfEUaWzgWPe6VA0UEBZ58szs9g1X8PMe/VJOXLlxdhrrTT8Pid5pjly1Ww3377jcUZEJjZeBMxjy+gDR6Xy54wsa1Zs6aYhdD8km7ZF8vEZPKUU04RMxGayohD2gYQngntXHCg3fgJCHATj/79zwhp6OEKXBfSLsIvCwvYCVH3FXYguFDAm285iHHgSbko7X333Q9Tk21A+wGe9piEePxMQ36TlUmfhsoNB55XXnaC/Kf4L4XXvzzxOJWdAjtt2lQXEpVHAvDOAZq4hwwZHGBGjXIDj3y+xqehkkSzsJj/uavVoUMHrLo2s0+ir3DgV95gZl9/9Q0G6JNEAeCOvNu5sjALjvlDC+WfeHyN3TlOPmi+w0EzRdeo/2nKuI1oAkmlQZwHOOWUk7GDXsJy55guqQvfHFD9+vUcn/g0fAQ+YR+D40Sxm9w6K69ifsgbfE879TQJ4G4Mzl+l+hfOIzpgpt+TlwEdGN6//w47BlAUTjuN6TOyM8S2oLJB/Nmms0z44AMPSHupEs8wmjTSDJhpaYanSvOJJ5yEha3aBHHO143yRha78H7HHW51mW0uzsP4h5LHZwBlvU2bQF+FOeXkU1CPgrAjfuedbqK5YrnbmWRiToJZvqcxCQ8OGeCMk+eZDG6RftfiG3pYCLpOJvc4HwnFcO+UiVUl0Ff4EJkofnpyaa/9C4q3TDQxibzm2oBaFO+SpUMuGzY45Zy7i3RucpovTUmJ50+YBPg0DHMKo5tkaQFZ70svxRjjC6yT7ldefhUpfL2xYHUdFg8XLVwEs8GDxDSU5m6ahnmLK4L/HQ4/0QTgggVcQMIlX0Mecenwe/5554tlQghA9kk6VzjyK3nyZT8JpswKCiQTRvjZ/5meE8vYBRoscgsmbvxqmqqL61vJ+HPllVdIXrQ4oGNpaG7fpTPGXO+kjWE6mIxfPOLixj+3UBrt/jONq5ImB+9SNnQK74x3soG8+72Ec5GE9eeOuTjAJLyLRZKo/g2gjIu8A4zwLsZCaUNMnvk5qb1bYJefbehdJYy9/fufqa++fBnPu75e2DEk/vFe5uikUSeRxK+TRs2Z5olsB7VCcPyOSeQ11wVcF8nktFR414UV7sQ6lyt/GJ7wh4OagHIxjHoO8Wuf5VEaLhpIvWH+y12xbPrnf8+IBcU++3hLD1+pubAsIv/KohLwUN65sWZn0cs41vD4jzifRnQKjC3ffvut0ylmv+Pi8VseO9k0I045SecSc0dWx/LSWEzSnWqWOchLJgb9VdacE/Qoz4c+80AzXy7X35OxPJQhwv/gg16uL4LOB8co1v9SLL6pC3LD900HA9kSwYSxlYk8fk3P9zvvdLurcnmjxGfszTffLG3K40SaJiT1nqROLiBVFgRx3EvJiQi/K1PzkHdcniTQI0o/kmhNFPU/D5oLE2DV458hQfyugWnEGqr0CDn9H8Lfpm1H7Ep3hulsV2c6201vncWOZq/weROYznbmrbP7ysw0VBQeJYI+4zj1J3GJT+P0KTE50VFARFRNw6dC6DOOU38Sl/g0Tp8SkxMdBfzO+GlOWrZMWVtYWKhFwhOriBDcPKdyYHTDJL+XiQtNIGcyof4NYIZIG346mkGxM/L8ER1roYoqLlGQMP7EQoswNHXjJCJxFPhuR3ORNyXtg/OFVOS+/uYbAWO6e++7V/Bp2cNEMzVQt4TA3VfSTJ8+XVal3Bk6C5PXNyT9+HHjJZ4rhiw/PnYt7/KDumY7rkyrgGfsfThzydUufq+StKGjbT6/YcmzBgm3SFT4mThpouDjGZMwMZDYCGce/CoUaVb1wqhRIT9+35AmhE2bQKGB01x4LoAD9zeedozjLYlcCVxQWCiA3NHsf8YZjIJzKdne22+3XagTY6hY6HdCP/7vx0EZ+GjuXFlASFbtNReX33TsOnHQGC7nF0F7nDcj/nE0AfUFJe35DTgNUEGOiyCYiZhAb47/BCj6YbY8+8R8p06dGsUkXsIsmO92NHFplY/IyNkppntr1qwAzMnZGZ5GvsiitNFESM/58kbWffZ2g/9HH3/slEBUcO5Hjj66K0/+KFGyhJhTav0V0ccwZX3RT87mYoGG/WVn36aceFHB4SSATsuhaflsh7Nd5KckDjv72Dnld1/VSV2wsCAwHpDnidnHaIKqTnfKtY/RTJh11LypDLIdeW5rGvoXaaZtPPONmfI+HjsA6mg6G99aK+mRRneTVUFXk3nSlXleecUVmkWYyNA0k+W4C2ZZYFIxQ6aZMhcWdOeFihNNlLOdyCDsxDA9LsgSHDSrdE5rh7c8/Y8T+Q5+Iq+Q+0CxjOmrE01n8uWgPoBJG+XE2Wef7fG49qtWtZrt16+fhBG+UaMd5PZUXLBjh+JYymw7AABAAElEQVTMqE6aNRHb7vQsPpwhtC8QCxLCSf8CLmdinQG/rEMdC/zOo8uJu5M826qNyR1M0loVb36/l+9BwUcyKvg8A6z1lsko2v/ayMz4IS+7F3rzZyJgPtytVSd9G+n4HUFm9iXqvWOjRr7eh4siLfXOQ3/mofj1yTDWz8kPvqFfFxYKXlwo5ALwi8u/xFJA5TTTu7JR7jjHnRmGidwBfirvuFBFTDwVRvEuglJM/v83Flljl+ZjmG2KDC5hv41lsI5fCwolqY5fYpHjM6MVBxch6Th+sVwcv4g/jF+wJKILizLZC6WBWpQN0SIU0jAfLmQ0Au3V3el3fIR3Pf1xoZ3gVt7V+vMce7/j+0lStiHzueD8C3C++wgsvCnvKrSzClEZykSMmT4tqRfD3ghyg2MDeBd8yH4T8+GFshuf8KHjXXdemXmkedfhdxNN8Lt367MWVhicbjcEAD9pfqmMSy5hGJdeeVnKTzqRd3nzKevNHU3yblLrxOdySH4lBj+0OKIMcc7B40I6wS0LYojg+Uk5CwmZSIhusCxpEY4huJQTJ04U+cdjT2r26ahMnaSRWFE5nSTChMxw+RDOW74ogXPnujFHxnLf/rh0zS3MASLwIc4ashyUNWyf8bj3Qh1pxt0/5zLYdddFY/T3yElN5QebC7KjmRybIBjzifv0hAkvSZjIDcQzKftf3D6NUE/u7PKognMegX8LshlmvYr/CchZ4sKlY4CK4H39mTQuCyFcnbycwHsPnEHm+Kk720kuGTnTzUVj3kcRO8UfhxWFP4bRvPUZx6k/iUt8GqdPicmJjgKi+msaPhVCn3Gc+pO4xKdx+pSYnOgo4Ffi5wYlv1qiE00xnZXvaPKMZjzRxBlNTjTbtMMKfYRfCpr9rqXPAcxNGkBjD/JLplBxhPdn48t+D0lyI3JDAnDiAdAfjZ9nJXn4XlwWfiqePL/BFTs6MQdCp+aKJVdPn8BZFQqYmrVqWgo4utq1t7M0YeMkhGefuLtAxY+KEd95OQXPj3ESo46r89wNK1xQaIfjkhOeIbjxxhulY+M2OQEbhR0L7ppddfVV8s58OnboKBfZaD4cBKlsOOXOhTZu3NjiFlThCBUwU6ZOkUjunlF4cDJCRWw5zNUotM7+Z6IIat7yBH147oGXhtSrVy/FVLzkhXkNGHAexqYf7WWXXyb15m4vV2RpXkm6yeUAUabcaWS653BelIX8Oe3PlU0KNNzcGg7yM0sq66w/z1bGjrs9PM9y1VWedjjLw4kIFSg6rv7STBM30abwy6Ab2vtHaW/Sh7upbO8pk6eIObXi4vcVmzffHa+oSJa7w+/wTJmSh/ZQJLgCSzqccaZOdq3s2BIfL4yi+zn859Am+Hm2kfxH09miHHctiZvnJJX+jzzyiITRFJmOCy+8QIkXIgUHNDSn1QF94cJC4X/uUK2BGePUKVPD7iZL5OiDVU04WhAQJ/mDShHP8l537XVy8UmcjrCBrsgEtx5KOvJyHjITXC67aMKzy54M7737nlycxV0JOipY0t59o7ogHDeY2oKSuOToKrfCL32sU8InzG/PvfaUOsliE3Yqjj7qKDmLw90B178K7JQpkwXPZdjBYh2fQP9aizrS8fIJXm4k6TGIHMX0MBuT88TI/4Ybb5D20jM4POPDPHCDaahPkA3vONnQHhc/yK4O8p850y0eveB3Jylb2G4LCguxk/i0XIZEWvNYgMogloWXQlTFGbT3P4S5G8pBWl1++eVS5vCDcDpONNlvdaeGi2jE8dhjymM8D3W51IMLMHQ+qewI09SeSiQdTek5ccMt3wJ01z13iXUEaU+n/Ohf0m2nmSIyyDbwHFPRhJR8T9lG+fPZkiVCR6dISW72dEysSVteVENHqwj2N+760fGSE76HNMB3+hlRGrxTqRIYyD11N9xwg4ThRloJWun7tu7CMpCXdBD3aFymRcfvUO4O2fHDph/knW0Su4cfHmyPPOJI+60/e+uAEogVy3EmD/m53TKXljuD3GVgOtz4KOe6tsPCGctLetGUX+WOlA3JSO+n8c1dKZuXO/x8FeXqmdiJ45lhninkJU8cL77y51jPQ/1nzXoTSvebKFTG3jjoRqG/ni/ngiCV3yCDOX5FMpg14bjDssXf3mzcpLFc6MJ4McdG/BRpYyu7OBx/eRaMMoRn21lOntXLdkpN4V3IBqWv8C5kv8gGX/8rLr9C6j/X867mRWuEFO9OnCTmq7PecotxPLPGc5RhoqxIkQG9YZyJZSjCA+9OngK4DMwgndzQcVn4EPUijdUp7+r9AcK7oAVuKAYILuhZukTor7xL/JqGspmO7ch2Vhgky5E/5LfAV74+gXcxrtIp74Y+i/E/doPBu7w4h7yWz3HnkzoFd3s3ZTYJCC9fOuuss+SMPydydIxPxpqFYqmBW4tlrBEA/9MEPEM+Ep3Ch7HoYczB0RcZcyKdhDoRF0hV3sRjFetVAWdoex7idDbdEeT4T0dZQxrxU2LrIGu4oE387C/qhml/931Kw+PnjTfcKOlUbkjfRD5BbqAS1A9D38S79r8AgwwvY3mQzule67AIvEkublTdi7KZecT8zbPhFbeuaMtVKGdnTJ8hxeLZYp0s83y28MGZ/UOReckj+5/KsCAnABPLCZ5LvzQe76FrkqaqD7Ke3bt3F7mj9A9IYg8bMXbZ7yEuNyI3JAAnHgD93fBzoskdzdh09sAe/oym29F039Hc15vOxmc0ucq0WRdFO28UwIT6Kk/+ePL6cI0OOBCQCvsb4McV+nIAnZ2nBJTLnrhNSyvJuh6PVcpy5bYUYc3D+7ffcYdcEsTdCHYu3gbKlTZOJLmKOeC8AUIu3ohGeCqyXOG/EpMbnkXjzaYjcGZAbyTkCvGBYkKXQUfFIAxlC58WsRdeeCFs8i+GOWpp6dhVKlfBWY2XpGhUFKk47AM79zp16krn5OSV7syzzhSFjWXbDpNdXgBwwAHdJA/WkYN6ISYCdevWlR3cJpiA4hMLuA1yCwjzEjIRrlmjlsDzDNIpp5ws+cqPb3+u5NWuXVvqzwGddVETVU5uqbwSPz5zIEraiTCZ5Pk8XoDAFcFrYQ6n+emTQnG77WvLRQkx/R2g/83Dfx0wyaapcuwo4GlW95k/38Y4x7dQnki7StvIogI+MYCzB92hJH4pFzLU3m5bqXeBKWF3xa1+uPZfsuWlUGwj0m9r7G5re++I3ThOqKkcU0mm8nIAzt3RrFYvO9JyKf7CQtC+HmiPG1Mb79QYShVov8WWSF/Cnn3OP3FxUk3gKZAFhxtvGiQT2QoVygv/8fIKXnLC8vwU/wleh1RWGEl/lr8MnpwkiYLl41nNyVD0K1epJDBbblFOdsLGjBsLM6NyEsbBhzv026LdmQ8n+LvhogYVARy8GVavfj0566Q3+HLHbNIkdxsqbzmkuSnPt8rOKvDyUhDu5NNEactyW8gZZU406fBpBKGLS9fN7rTjTnaK35HlDZv4JABM0d0ERhJk/dA8jmXaCzdLHox2rgElZhDOj9LxEiOakpJPORHB53JABt/iKBf5pKLwCfvY9nLLKflESdasWTO7K/55IyZvSeatncpvbON6vn9xgYeTQ95syrPIuhvB9Lh+XnZWaG6+335dMQlyZrKXXnKZmKFTSaiMc4jcdeeNraQ7zxLSLJyLQ2WlTQvkdmve2sxBunKVyhafRJBzR8f3O17OG7K+o6DYED9l0IW4rIFnTcn/Wv8DsSvAXsIV8vr1GgjdtsYFWLyZl4qxOFRe68/3djCdLcCiF82IiZvWGEpfxlOuUP6Rn3mzajDJRhx3E3gLKz65IOdoudv65NAnXP5AQnlSgD5B2cuLxmg2TRpcNHCgazsvf4iffVUnDNK/QHveSMz+xcvG8Kkckatnn/1PuQSEdOWCHi/rYXswb9K2foN6YiZZe1tMwvBeCrL3XNxezLKRRwjHG8ElDdKTdjzLRNMzykOm4TltTjB5VoqmvwyrDNn94EMPCW6m4aLljeBDfBJBLrUhDPv4mLGj5UK1EgUl5cxfGZyhpFyohQVMuTgJdOFuEeHJn6Hzkdhw5GkudjKe/Tw2NdWzn7ogRIWUfZoLJJMwUaqJC9tIF/LXoBud3CmPhVAt21hcvPPDhh/kjDXblDK+WpUqOI/2kkOOXy7UMg/yPM9q04yPxynY/pVwAzs+/ySww59x4xd3EOti7OiOW0W//JLn+jK2/5kYv0q49qi9vY5fBwj9WRbuoIc2Rt6NGzfxbUwZWhIXnZ0hC4BCZ7QX+wqd49uEeymr2aa0LCB+tvGgm24M/Ee+YfsT5zboB2J2jOTMQXgX/Z31b9++g/A9b2lWR95lX8NnLkTOl0Q5amIBh5eufEy5s52XocDP22PdQk0G4/ICWwe8W7bMFkLDs8CvMi6DB3jLMz4bJuUR3gUfXofd81JY2GEZ69evj0ucwIc+b7b/ueecK2Uj/dmut9xyi+Nd8J+kqYc05F3IQb6XLlMKN/vegHZLy5+HwLux/GEf5wLrVjBNZd7kBV6I8yYWF2idwvOq7H8lsXPFhauBA915Pk5k2S5sf3HaHHjS0kfHX+bJCWfL1q1ELu+//37u4iJPfx1r6oNWrVq1loVilp9jjV6ixfw5UeeCCne4HSr3y/O9PI7BRbFykMu8gPG6665Figxu68WYA/4jf+DTKBjLd5SxaumSpSIviYdjChdYFi5YAD2qnhvLRc6jvSCvyIfnYLG/Zg3XF9lG0t+xWMubetlHhGb+sjhXOJbNXehWpnRZaY9KkOWkPfumyh+Xz0RJT1py4kvzXS56uzZEv+exLri1azC2sp6QQxx/tkVbcFJHR/5m/ZkHTeKdbHb6/1Qs4Ih+inJWQRl4uRutnT6a+5HXT5z8vAmbIBMhO1gX4pY6jR0ji5i8q4L5M4y7/Tz+w/rJeA8LGsoQ6j3UB914n5Hxj+NEk8ZpSzQpMH98+yfvrj3De7YninbeKICw+ipP/vx95z+tw44mzmhiPiC3zuIyoB44o9nzsL7+O5qbfjSbLL6juRH/+EbUKzOmGbYsmMS76C3yauz//NS89BlllA6K3iJvBP6/eTUvfUa5pIOit8gbgW/Wi1UzA8Es387DLlz4VheJjFV/fH+ppClRCt9MQjvQQdAL/bGKJH7ccmqWLFlqsMppSgJWG4ZthV03g10/fINok8GKjoGiLnnwG3El8V08fquO3xXT74NhNRbf99pavnGFFSjJC4LPbMpsNBDcBqvBkh7dwuASEFOtWjWDyQDCHDdgF9TAVBXfyClhmJ75sn4QfgKhuIh/0eLPTM0a1U0FfE9s1fffm/UbfsC35aoYrDIZKKT4dqSV7zBBYGj2Dje+g8RvPhKGbtOPG+W7m1I2TzPcMhrwE4Zl+Bzfg6sLWkBQMyjlBt14o/kB5cWEMwnXttRnEhP4H5NKA2UcMT5PD4sBx+BSpyhF4oVEMTBJBO2qe9ohDmHEz+/NMR5XlxsIaJetzxODsm/vSgY7IwaCW+iKxExulqHt8FE64YMEW66PtPgMfFG9Rk20dQWDiaPBJQ74Nlo10P4Hx1+gMfNkO+JzGfjGlaMnacy2ZJF+iv8UM/ExHb+ZxG9YkS+V3xQGSqvwP+vPeH5zjPgheqVtyX/YSZc48j/5jzRy+bA0BebLFcvNutVr0cZ1pY1JYyjgrj6Ax+UYkg7Kh6INT/LjEnwnEZ9dSPgD2fIrUV8uW47RPWOg7AR4h1Ffo7fI265dO8EN81GhcX3wHhZyXCKUh+2NW2hDXfiN2dhh3EEfAZ/ge5nl8b3Y2MHUHuWpie/jfgXZUALf4azsoj1+fk9u8aLF8u0wfDYhtHFV9Fc67CIYKAcuPcqECYBLj1/KCnIzTIzQJptE/vwI+Y+JjuNNtBWIJDDkBfY/ygi2MS6nMEvx7bo6detApqXrQ/nDvs7v59HhMyNF1r9wwQJTqVJlg0UZNkLoXpIQPwxq7+n7NL6ltuq7VaZe/Xop+Uc5wr4uZUSdoHwn9PcZUe58s3KlwYTDh7jH08OHy3drsXMo/Ld4ySLzxsw3DHaLDJRc+RYe5Q/76o/49iCUM5cQBRPa43uMUMzlW4nsX9hplu8I8huVIr/Zv0BBcLnUhWXbCPnObyGyvzBvnIuUWHQB6X+YEIQysv5Mw7ZyaZBvafQL9FVpGDYggLTubBv2Fyj8kKsZB4L2zaB9GYbjCpDbJeW7dLBaMTBfRtpS+EbdYtT7TXP3vXcZTAhNx44dDaxvTF98XxGLNr48LI2rycYNrhysFceruJ/DXFXkNpR4A9M1kQUwPxYawjRbxiOOf3SubvgeJeqEz4XI+Mfxhw4TLYObZk1DfPfRyXKHn7JiKb6tiBsmBY60oVMayDfbQAdxaDcsdhh8osrg81YuDL+BZwCHm6hNmbIYv1CnkqWRDmhUdm3wMhSLG16GrjLrf0AbV64qYzbLzf5LWkOpDfmrZ7OyAUCkB2nqxrF0/ZkHa0zexUKuwUKUwDKcEdhtMqNGj5JvlJLXqANgN87cA97lN0xxM7rwF4on7R/LHfIe4XErKr5RDbmxCry7HuNydYzL6K8ie4V3ky6JBXJpIxnrMYYLH6ItWH/2D03jWVKKmZffWSCpmcs7n/whPelgGST8zLwpf6gjPfPcs2Y0vr8rfTaqN/ssLtoxHT3v8tug2CmUfPQnHn+kTwvvFOC7u9SRiFAh3RPmyZB1GGvqcrwwGM8XG0yyTSnIQYWFxYfwEyam6cT+jfLv86VLcnQS4pexCvSgTqf42TasL+OpR5X1uhW/aVmjOsdytNd3aC/wIY7zpNqLKKVPIR3z0P6OhaRU2bTPsK+Q/+PxX+UPZQnxU0bJWIEssHks7Y61UvTrdL9nufkt3vr16oE2jpDC3xjPccOuyASWLYyNvkRf4DvImDgbTESFpqw3+6eU38swloXyl99dl7EK3z9nn6GjnOD4iMsfvZzwGeOh4z1uGA5lYiwuTsM3q/tKf1G6h2eSPCsoYpDIG4H/b17NS59RLumg6C3yRuD/m1fz0meUSzooeou8EbiJv6NJ3uLYwvamn88CzjzZgBSwZE4OVi/PmIo8HMOEzIpA4Fokigze4AmNloSEvhWyT3tiSB+TJ0hiJDyKDN7gKcYPQrE1E4qk/Z7C0SOG9MF5giRGwqPI4A2egDcJ+WPxc/KDlV0zafJkGWBZ7rgsvobRI09sniBJIOFRZPAGT8CVhBTjj2kREd5788TmCfqz6Y9VaRkAp02fgqJ4eRnKGTzF7e+pk1Dk5/G/0BfKzrRp04pOIJlGOQdv8OTQn2MdbpQ1gx962PTt21fYSH/atG5tYDVi8C1cDXLPJLs84VFk8AZPDn5mkMSms3NveWLzBAmshEeRwRs8AReVRy44wPTf9EG94xEeFjPywfs3MWGZN3+egVkrFMtoApVkly6whEeRwRs8AX8S8ufU/4/E365tG5lYk3cVrz5JwNifJmgRsT4BeZdt+NDDD4F3D/cZuUi24YABAwyO4qQwKC59FoEhKkYM6YPzBEmMhEeRwRs8oa5JyC+vfwaLGttUrgzeZb2jPotM27RphT57vkwe8PkVg0vAMPnnZMRxuOLVJ8sd+6UeqZ88sVlBnBDD0sFMnjTF1KjJxb1i+S8kDHQKnkDrJOTX0z80l2Qa5Ry8wRPw41ZmcyIW0XDkyeDbsNpiIavEk6QNYXmCJE7Co8jgDZ6APwn5c+r/e+Jv276TLPjJ5BJjdmlOLjHZ5CIgFzMw0TyYW/9YmcOuJiaam9CBXp0+NdCXHi2gPosKSyUKL/lShUh4uCqGld/sfhqBaA76ZJT69RmBZ3ljiNivYMX4/7b0R3MPvPgigwtfDG6RM7h8AY0eq1fkgeL2/9u2v3TxuM/Hfon8n9ufixe4tl5W3mFSKKvJmmP6GeOM/QpVzH/5+I+KHOnLXY8P5s6VlfGYeurXp1Iz9xlDOD8XU6vAsgImz2bYsKdgmVDNLMHO3tCnnjL/wc7I+LFjDS77CllpDvpkhPr1GYBzPDFE7FfAP679M9gZYF1hiiz1hsmZrPAPHToMCvNEg08jmCWff24a1q+f2iHQUuuTJVe/PrU2uc8YIvYr5B9X/6TUipvP3x4/eRe3xGP3q6T5cO4HsrrvMP76+pN3q1atanBZmMFlYODjqrBe+cw89dST2ImfZPA5mxTvpuv86/Hr6Kk56TOmaNofQ8R+hfp59Kd+WqVKVQNTZPCu1tv1We7Ejxs3VnbVcne3Ypyx/5fhZ72ZGsqqweeDDC5XMx2hU+BOhByNQnN2zxhn7Feon1d/xf9n0f/vgH/ld99iMy2TZYlWTP98469yJ5/KtfrMF8YdTU4qaT3jdjH55K4mLY5KmYJuB/XAd4M2GnxnTExhaA7zystTkVcWSwcswUN8v9iF1PDQgFuxhOoIQIBC/t4fgoLnF+NmgpAanmL8f2/64zIW07pVa4Mze+axRx8XE7Ti9vdtXsz//3P/p4kRLgGC6c73IoNwDsdMnTpNTHp/SigV899P8x9NpZo0aSpmfZTYOANppk1R+gYK/hSp88Zr6hdGvmAG3XyTmfvhB2b77baXiedRRx2NFe8TYU5Hk30dmXwKTZiMIHnz/6nAOJs/Y/zBd+zMzTfdZD54/wOzHUwyq1eravBZB3PCiSc4U34pYCglquP9ISh4fqqqeeNDanj+jPr/3vhpDt2kyU4wZV8lLIRzYmbadPBunbpCj98CPy4TMzeBd99HG26//fZisn0keVfaMNqFztMCvwX+pG/kQfATQb8G/wtS7xvNhx98KObTnHjikjNz0oknpnffN1OGX4OfImH9+nWmTes2olM8+uhjKdPxzaANUb8Wf+iPIcdf5inG/9PjD47wgqh/T/kfagbPbyl/27bDRBMmzTyuR3NpMZ3lOxbbGI4dTUw0YQNPs5rEdHaaDi8JF2cVDAs7WbuQCNDGUa88sWKAcG02l6ECJNln+3IgEBATphh/Mf3Tu+ARx6hXnsX8V9z/iuVPsfyNRxgVEHFY2p8DgYDi8SeM8NzYKR7/fadyvBJxjHrlWTz+FI8/xeNP8fgTjy8qIOKwtD8HAgF/5fGnPXb3S+D8suxocnKJYxe8cwMXgGJXEzuaPKP5I3YzuaNJO3ieAXgFlwGlRpI0DeQtn/hMwJRM+vQx+qrPaDqbk188kiUZB18OfIihRxHo00fqqz4DHFNkicNi/IkmkaKte8mhVwpGCazPYvoLBZQc+izmP5DFDUE5/FTc/4r7n64kpWSLe8nhlxSMdjB9+kh91Wdx/wNhivsfuSOHn4rlT7H8KZY/XnDmPnL6SwpEBaw+faS+6rNY/oIwfw/5mzad5SVQZXBG05nN0qS24IBumGjCVIkmH5tgQstJ58szpocdSN4E5W5+S6ZvKZ7K4qEQF5jJhWS9SqCE5YmIg4rxF9O/mP9UGKlYCr0seOI+k3SuEB2J9KywnITpfl7c/4r7X3H/K+5/lBp5REUQJjlxWQFZr5JOwvJExEHF8qdY/hTLn2L5Uyx//trytw3OaPICoBI8o0mT2QLsbuJCLt6x4M5oYkdzI81mOdnE1cKccMqOZjIU+MEkFv9FByk5HDR+4/1en6zo3dJsHPF77C/GLxTIQ5Ji+juihN9i/sudnRa5Wp/NUPF77C/uf8X9DxTIwxIa6KLwW9z/ivuf05O90CDfgC/y7hZlM1T8Hvt9VnmCivnPESX8Fve/4v5X3P8S2UNfsfz5zeUvz2jyszQFMJUtLZcA8cZZmM7CnLYUJpwFBxyEz5tggsmb0njrLHc03UTTc6dIrCC2pMGUb5PQdEi6VdmwDMFP3sGF7Z6s2nlgwBfjJ9WcMpdQmkFpars4hntg541/i+nvaFPMfzFXBH9x/yuWP7prUCx/RViibxSPPyIgZHhxY0wWZfw6g4tzwiT2B/HiWQpxxfI3IkriLZa/xfK3WP7GWi37RrH8FQkhItXJVf7SxZTi142zQwQo/pGE+Pkd5a/7jibOY/IyILkESD9tgie+heouA4LJ7CZ8sPtHfDh5E3Y0w+dNtEZxoYvwp4iQeslNkBPNAH/TU/AyWTH+XOIVEZKiaeolN0FOdCC6Z9scgNw8skNSSVIv2ZA5qqyfH0shknk1kxW3fy7xighJkTz1kpsgJ1pILz/F9Cfb5RAol4bZIakkqZdsyGL+zyEPA4rlP4lQ3P+UFdhtiuU/qfCzXKpPpV5yk+dEF/e/YvlTLH/RUYrlbxAFFBu/QP7SdJZnMbmrWQq7mHIuEzuZ/MST3Dq7P0xnM9jF5PczxXQWJrSvTJ/upVMkkqQEfk7gY/lwwUVEKhyiLRg5uXvLwyN1HOrANU5z5xM1LgKFCy4i0mUoaf9M/KvwGYTLr7rCzHlnjmnfvr256qorXZ3y1D9jfySxYNtcAjCsF13++r/++uv4gPFgfKj4dcOrtvfac6/8zIFs/sz6sxrZ+G8cNMjMfO018wMuoBqPb38lzrelBGy+/gRx0D5NlPTF8ePNTbfcbJZ9scy0a9vO3Pvve7Glr1e/K+Dvz3+0FBAZjoPRfwX+Z3lYoBIF/KD1L6//hP/8xzyN7w2+Bt6bNGmS2Q7X64dVNSWrtF30g/Ds9neMunn8Gzf+gE8usM3y8z8xOJQe8W+M3+VOLMX4PaH1QaKIy6b/8KeHm9GjR5s333zT/PeT/8r15kz0v7T/35H+L730khk2/Cnz+uszzeSJE03t7euQuyIXMzH9xgwf/rQZPQo0nfWm+fiTTzB4c2xwLpv+WZkFoGL6x5qG0njz8ueP4L8JL/1Hvof5+syZZhL4Yfvtt0ObKUe49v87yZ/P8Z3WGwfdYGbPftscdcQR5owzzwq1DcwaQv4a9ed35q+68ip8O3O8KVWmjDn1H/8wJ550khS3uP+RO31/8g/XjtEvwvPJn5mvv2YeGjzEvAHef/Qx6q97IlGcCf10BWbjDxvx2anSqVjGOGifJk7KSHUIz4efqWOp4MDjTOinKx7/lfAxdUgZ925N2/ad3KdMSvP7mZhg8qZZ/bwJJpvmgAMPtl3372Y7dtnPtu+wr23brgMsOdIuk379xW+p9HzJCfBBqfAETRHBCcBP+FLp+ZIT8Pvi37hpkx08eDDbxF70rws3i79d27a2a9euqRqlihvFLF26xPY7vp/kO/utt6KYtDeV/k+ofz78U6ZMsTVr1rStW7eSwgpMCjCpQxHBCUCW752337H44LpdtGiRHTlihMWVy/add95xUMwslaF7kd9UeJJpEcEJwGZ8bM8ucXsys1SG7kV+U+FJpkUEJwA/4YvTt2sD/kJfT5yLld8YMAFIFXf+/Pm2R48ewnNLlnwWQRXtTWXLl5wAHxSFz5s335YvV84+9PDDafCi0RQZE2XrEOUE5OKPM0uBxxE/059Kz5ecgL8PfvazffbZx2JlM1Anp7o5AX+f+odKR564ugvA1z26H+L7z5LADAITA0bp3wZNW+6zty1dOqFpFP2T3lS2fMkJ+P+H/lL3v1D958+fl8jTz8gPuS5V3NzonwxJpedLTsAf1/7r1qy1gwbdLPx/++23h8JIkVLlSqpVRHAC8BO+VHq+5ARsvv6XXnaZ7dihvc1kfrTHHnusbdSo0U9gTEfnoMsJ2Dz+FHg665/1lkrPl5yAPwf/0qVLbb9+xwkvzKL+mipXUrU77rzLVihfzn7xxedJ4C/wpbL9C9XfVcGVTn5TBU0qWERwAvATvlR6vuQE/Pr257yR88dO0C277tfN8msmB3bvaXv07GUP6dXXYqLZ3e6HiWanzphodtzXtmnbIbfYGV8yPFJlzIXMCUngM5tPmwDm5IEe7sLw2BxYbsIY/s/HX6JUSXvJJZfkK2Yo6HkDzrOXX355GmYz9X/+ueelo7777nvpNP4todefX/+kLK5wHTqAOdu3dy/ZkXFtNlP/GEz9x594gm3Tpo28MtsVK77C7+9bfxbx6GOOthdccIEWQ54DzhuA9rzid8efQhq9JGR19T/vvDz8RfgEMErtvVn0v+eee8BzBfbLL7/Mhc0KSbItmv4ffvCB3bvF3vbll18Oqb/55hvbpUsXOxULEr9H/8fOrj366Ki9koKGMgRPVv1D+M/wJNkWXX/JJgHMzRX4pbxHHW3Pz+KvXOB0SJLtr8OvZUzyS+OJ3y648F+y0MOwBP6Pwx+X5a+I3/UfY79cFvWfpKBx8Z0f7f+vf4GmZbeI6JkLli8kyfa3p/8H7Ld7721nRP02uwy/J/5sXPne/y/gv1fkKfihKHn6F5A/QlsQM6FnPmrnhiXwCf8tX75cdJa77747SZAAShgX5nfffXcX/2fWH7i3qlDB3nHHHVJ5fG/efv3110m5f8KXVCupf94kCWBu9J9Zf5bmd8T//PPP87oq++6cd3Pr7UNg8Wa7detmv1v53W/Cf3kR/X9K/0CLX1n/Nu06yvyRE80uByQTzYN7HmZ79jrcGprOdt3/QJmJtu+EiabuaApzFY296BgUnZH6H2oSe3xqPLwvjnT+vyF+mAHay7E6Fmr9G9R/1AsviNB+771ookmi6n8uZX9T/EVm/zPw79upk22nE83sjH5F+++z9z72sEMPC2TOzjpE/Ab0j/MuXaq05UQu0J40yOt8xG+MP6Bi9vofAmPPr8P/7/vvF54rWjH6ZfhHjhwp+c18Y2ZSyF/R/qHuvppJpupzEaWx6zaA7ZXP/QH4Wc6ii8iYdCzlh/BXTkxWBTRpOnkE5CPwKBqEMUXGbibG2osuvEgmRUUD+XzxKBLDX5D+EQGLLjeBWCn9jxN5//3/vs/1n2XLis4nq/4DLwJNYaWhrki6EUBxFwnkI/AoGoQxRcZKTOi3M6N++wfiJ6q8ToteZPF9BB5FgzCmyNjNxPhkm03u88WDvvvv/7fjh+XxwsNmM/hN8een4e+H/6uvVkh977n7niLrcdSRR1qYEectGgNZuiKdFr1IIB+BR9EgjMnYxYsXS1mHDxuWQldkOkK5pJvL3OUFuCLzyer/KeQeRXZYeP8/hH+k6K8FNqW/siL/n9T/79L+nDemdjTx2cyDDj7UdseOZk/saOLW2YPtj7BBx0oNzmjyrOaP5tUZ02h+K469TE8MqEWu2uuGp4dNHi6VptVniE8FRC+RV2HTQf5NA/WpwOHpIjRan1nR/jWKjbwKmw7ybxqoTwUOTxeh0fosU6asGTjwInNm/7PMM889YxYWFpq+h/cxLfbaW1J+8P4H5q23Z5svvvjCQLGQMKZdMH++Gf7007gZ+EfTrGkzc8MNN5g1a9cYwo8eM9r07NnTvP/++2bDhg1mwoQJuDl4o+kPHJWrVJG2Yx5rVq82zzzzrFmydInZo/ke5uDuB0n+c959x7z+2kxTtWpV03y35ubJp4aa3r16mV122SXgz27/73HmdMQLIwV/o0Y7mN69e5sqwEU3Z84cM3Pma3ivZnZr3twMGzrUHIr8dvX5TcQ5lFdfec2ULlvaPPnEE6Z6jWpm+rQZkpb89Mmnn5gXRo3CoeLSZv/9upimOzczG9avN6+++qqZPn2aOeH4E81HH30kdDrv3AGmfIXyLi1+IZ7MUzg/eP75A0ytWrXNqaedBno1NbPfecdgUmGaNt3ZdOjQXur79py3mcAcf0I/U75cBTNr1iyEv24a7tDQtGvXzgwd+pQpLJxvDul5qGnTurXHYc33360yw4YNM4s/W2xatWxlOu3byZQvXx7wQ81xxx1nOnbsaI44oq/ZYYcdTdVq1cw7s2ebpVF7MiPmMXIU6fe+2aFRQ9C7j6Mf6v/mW7PMTJx/bNhwB5znbWueeHKoKVywwPQ8lOVohdTuvADhxo4eYypsVcE0adLEdO/e3ZeRD7Z4ODkRuukHH3xo3pr9lln2+TJz0cALzZo1a8yrr71ipk2dbs4++2yzYvkKM3rsGKH3Gf3PNDWqVwtpP/30UzMGcV8t/8rAJNk8Newps2zZMoPVXTN16lRcaFYgfLjtttuaJ5983KxatQb1r2r69O4T8vgOfDN8OGi36DPTqg1oB1qtXrMK51+uNvfff7+5eODFpm69uqZTp05m6edfmNlvvWmaoM0O7NZN4nlpGqyXTHPwVes2rc3T6BPY+ZQbs4/AeR/y4Cc4wzZ69As4jF7awGTZ7NKsWcAfCATyDEX5jzv2WNOxUwdzeN8jDMyhzKKFi8z6DevRf340jRs3MZ077wv6vGbeBU/TkdfZdu+++6654sorzLPPPmuwq2Ow8yrtHvIHxk8++RR8/IIpAz7u7Muh8bPefMuMGYe2A980adrYdD+4h4tyzaZg8tSgJ8Ff/Y47FjTb1/Tt29c02jG7vI1R3s7mNZYXfdpinXgH1GnVd9+ZOe+9Z6684grz3HPPQ068Z7p07ir1jpGSbqNeGIVvX5Uy+6G8zUA3OsUfw2rgh+CnUaORBmcyyPcwmRWwiy++yNx++51m7bp1Qf58Ku0yxqxc+S14oi9kw64uS2S2fv0G8+KLL4LvZ0r7t23b1uy6q4t/E/1y7Jgx6OcVTNMmoFV30MoX6qUJLxksTpg6deoI71WqVCnkOWvWW5CNY8zWSLcT+kePuH+kKuVeVq1aZV579TUzFTIGVglmyWdLzJgxo0yVqtXM6ZAjK776yjz/3LPCu4cddpjZqwXOw/t8vv/+e4NJl/DCDjvsYPr06WUqV66q0fKch/4zduw4s3z5l5LHUzin+SX6z1dfrzBTp0xz/eeQnmbb2tuaxyEX16xeY6pXr2oO69VbaHjRwIHmzjtuN+vWrQ94V6+CTH/2GQMTNIPdH3PwwQeH+mf3f8rQF1+cYF6f+bqpV6ceztS0BS9/Z97/4D3k5+4EOPWUU83yr1aYZ9CvKH+rVq1seqH/Mu14tg/S1q9b38BaxFSvWcNcjXNr9/8b/fZi9Nu6dc0BBxwgbcECvoSzhzx3WA9t0wPjU2W0zaJFi80rr75iPl/yuTnvgvPMGJzlnYn7BQ468GDDNseRB/PiSxOkP59++hmmSuVKQrt8+HfdDfyRakdfdXlYyJ/V0ndnTJsGXGzPzyAXxphqkEmnnXqa+eqbr81z6L+LFi80vQ7rbfbaK92eI0a+YOZ++L5pADnM8a2qjG/WvDVrtvQxGSdw9n8oxssFkM+HQj63jsYJ9n/2je9Xfmd69emDsXW3pIAo96fz5wlfL1/h+QHjFna4MR5WF7g3wb/jxo425cqT71W++wprvfXpc37jjTekbM2aNQU/7Gmee/558wV4o/9ZZ5lqGN9fQP+ehXO+jXdqYo7rd6xP5TLh2eFXX3kVZxBLm8NQF+3/i0E3jr2F0FUuhu4yetQY8MFM0KUBxuIT5KIPZsQvFrzyyivmPzjDT7456aSTzdYVK4b+v27tWtE/5n4011SqWMlcfOnF5p6774aecgZSew3D14fn/885+xzz6af/xXnOm+TMF6xPUI5XzIzpL5t+/fqZj//7sXnrrbcMFt5k/HVyfzTky0rIx96QH82FPZai/C+j/NS1BqIPjYJu8cbMN02DHVj+4yG7Sgj+9ewf4180r0Oe1AMvt0Xb1oBucs+995lrr7nGnHb66Wb35ruZQ3seBh6qZr5fBR1oxAjz4YcfYqxP60CUv69Bp6pStQp0rd3NE5Dd1Km23rri/8T/pA7r58aTMjLeNNulmVkPWfDqa9SLppvjUZePP/4YZ19ngybnmnLQaXime9yYsaacyE7lIWSW4pvoBd6Zb3oegt615567m2cxZnwOHjpTeKgKxgh3/n4nyOJ+xx4Xmo50H497Md5++23TsuXe6DN9AxpioKzhWfPFixdBb2ptOnWG3lSuHPrIC6bnIYc6/ZXjAPr/j+Cl/ji7W7VKZbPsyy/NLJz3fxm8df7555nq1arjHboaZFHDBtDV2lNXy+6Drk78nQi+fg38WlfGiENNpUrbbLb+yopIKs7llPWmgfrU6PB0ERqtz6xo/xrFRl6FTQf5Nw3UpwKHp4vQaH1mRfvXKDbyKmw6yL9poD4B3NZfBoRjatC1cftsidKmAHoBv63Jp9m/Ww85oymms9zRzGc6G5ZKnMfNwouci+dZpcmGTd6DTz36zMIZvzqQogFzY7JDkvfgU48+Y4RZfgdSNGBujAvhjsR+Xfezu+22K2zT+1koRlilLmfRSWVp64J/XWBxiNa2bNkyYBx48SW2YYMGFkJNzgegTe3dMLV55JEhAgPlkM0tcXvuuafFoIjzzQX2kJ6HhDx4lg7C0J5//vn20UcetVtvvZU966yzJP6f/zzH4uIh22KvFnbHnXa0ZUqXsWeccUZIm+3BgGMbSl7n2WefexZnh1raWrVq2f/+978CigmLLWB+e/v8yjC/0yXupJNOshjA7AsvjLQnn3yyxeTEtgs76Fby2672dnKedcC5A2xZpJ00abL9DKuKGMSlnl3328/W3m478U+dNjVVvA0/bLC33nqrxQTP7r7H7vbW2261uDAJ9T5P4AcMGCDws2e/ZTGRlrBly5ZL2PH9jue5cNt5384WSofQE8qFLQV6fLVihcCw7vXq1bNQ+iwmTHabStvYY44+RswaiZfti0mSvQX+6TOmW2lP7Jq1bLlPKCfz2GGHhtIWzz77DEzPPP0+dvSTcqA9WY4WKMcxxx5nWQ7mvdyX43aY8VSuXMli4LGnn3a6nHUNCODJxC/idyE06+XZOS0PBia7xx57CR2gNNjmuze3mBhKu+y/3/4hlxew44hJHFbe77c333KLrVa9uqT5Eivw83HmjObP5EHSmm7II49YHNzHCld7n0fGKu0w2DvabbONmK5+hHqTL5j+zLPOtLfecqvFYgX4op2Y1Nx6G8/xWJzrGSRlZzlmvvEGQjL26WeethBp9vTTT7ffffedxcTPbgfeeHjwEOxUDrBlypJ/Jgks81CHBRvhE9K0I44LsO2mT5tu77v/Pul/W221leUZYrq335ljd2jY0NLM+84777SYSEv/OvDAbvZ08HWvQ3tJ2R944AHN3j7DcmA1fvCQwZY8Vwa0cOWwYoIlbYeV3NNOO83WqFHLpdNG02fIDR6EKX91VP6aPk3KiwuubFxenpFswPJ2RHnvcuXFBN0eeOCBQifu9JPWWl6iE7qx37G86HdlpN+Rbvkd0zzxxOO2Zq2advhTw+1F2G1jnlCsJcGF3H3bMtl9GzToRtsQZYISak/+x8m2LNoFCxcCy7xo5k65iIUMi8WuIJvuBJ9XqlzFUsaRVjzTTcc0xx13rNTxmeHP2NZI3wAyEotvEn/7HXfaylUqS/9w6WpIePLDHJxT3/vvvW93a76b1AMLRmISCoUb7wX2pBNPtFjcEJmFSa3wv/ayhYULg2wlHXk+tSbl4SeuPxPLyJEjQv+55eZbbPXq1QTPl18us5/G/Wcm+g8K9Aj7D6wjOkTWHqSx7miyzCLTG+1gLzjvAvvIo5TpWwe6aZ1cDfmbcTSG7BwzBjRGPSn/MXG0O+3URMpyIe8OgFv57UqRfTWq17CYcEpYW7ZPSNsc/fQs+/HHH9mT/nES+miBPfNM9Fv0IVz0IvDHgn7kP/ZPtm2DBvUtFrXsQw89BLlV2VatWkXOJfbp0xvjwa7Cv/3P6G9btmppKf/YL/v37y958ScffqV/AIo8rP/7H8Tteay0JyaDUtcTcbTCtec/sGtWF+1RPWRXuIDyGWPleedbTETt3hjfto3Gt+OPxzgBXscilMVigz0O8pkyiWVe4eUzLrrDGAl+nwh+xzgX8zuLGfPDzTffKviZJ+Up259mmpUrVQbfv2BPhXyv5fmeaelc+7pfF+J+sdgmZeOdABz/eH9DxYoVRd7z3oc+ffrIuEJcmJxIIuZy1FFH2fbt2tvnRzxv2Q4cl9lWdI8+9ritjvGU+RAOiwkY2/cWPA8PflhgMMkUvme/wWTD7rrbbtKWEomfZcu+kHONlPPDhw2X8rAMNCEPtVAPnrhMTMbgKuCVW269zT704EOysxjrANttV1vG62lTp1mhN+WLp3eZsmXRr5x8eeyxxywWF1Ll3xu6CfE/HJ3/b9MaPL4/+sdo9g8ng7AQjHHkfBmHeMzi1ttus1/jSMeCQj+GXwAeeeY5qbvoQL7P/xM6UImSXgfaEToV5D91qv+V/8mHHNcGw5z4XIwnpUU+T7RY7LZtWrWRurB/Eob1mjJ1qr3jTvAQZaCMM6cG2enaRImtvIRQH3TE4Y6HunbpaveA6fJx6I/bCA+1lLtDeoOH9u3cWfBQx6HDwqvQl/wgsgvlo+6lrrBwgehNMvaj/bfZpqKM/YwfqfrrMcfaPfeC/tqrt/DfIYc4/RWLQ7bO9tsLPix6SJb9tA92oY7UQuRV3Ae1dsfh/CfH7aefHu7lEMYIyKFQ2dinifQpmPL/OJCiAXNjskOS9+BTjz7zo5ZQB1I0YG5MdkjyHnzq0ecvxN8GejyPXorpLI5i8rOZB/bo6Xc0+7gzml1hU0sAAraFwHGOGBUrnpFXy6BBCTx96VCF1WeIFU940+goPeM0Hs/Iq8Aa5N71TZ8KlX6GWPGEtwhIw/iM/JFXgTXIveubPhUqeXIwarrzznY5z2IA7Mknn5AOhFXeALTXnntI5yDA+vXrMEiVhbkcJkiApzJdskRJDD6nCjwxYZVSBO6ZZ/a32IlBSMayk1LwqeMAqxcMMU3fvn1EkWH+dE13biqdGzuFdsH8eRar+wglJP/p8PTew/sebrGapqGYhH0lSmWPHt0ljIBNmyb5zcflMcxPbPExgC0oLHRwyK8VFAs9o8lBehtMPh568AGJd3UvY7F7gPeMxe6J0Gr35rvbTT9usu9BuPkiufzCWwbK0072SJjeqFu3bp1MprHyHqCuvupqyY80VcdJBHbx7IIFCxCUsc9hIk3BPXHSf/gqyvoODZOLAPpDweI5Qucydsstt7QX4nxa7Dj5p7BT1/fwwzHJBf2k8Bn71VdKvx4eJCOTGSqjCxbMl7BQjokTJV2PQ3pYrHJLFhs2/GCPOvoowCk19KkY0889UJ6OUAIVP1ahhX/II9gRl3wORxk5GBCIZyWpGN58080uI2R/GwZc7qtitVHCnhz6pNCJl5ZoOTiR5+CnjhMdKnBaujP7k3adJXrsuLGS/q1ZuBDAQ7DuqoxIGBJycaZsmbJBoZv99tugbUfJY8WK5cI/Dz7o+GfD+g3Sdxz/aCk0d4dmS0yGLrzQKdgKccbpp1ns0Nl5oqiwD64XRZl8TofbB4Vej0OB0brs7S9qWb16NcrmykHliI7p2Ye1HN1xkVLTpk2kIBs2rBflTQDDj+bKZ+SHV/jLTwgIzljs/OCyKy0v8a2TSRf5iu6qq1BetBUVLjqm2YflxURm9epVQksumDz44IMSv8HLnMMOO9RDMxipmJAOT+xk260xGeeCCx0XeBo2bCCKIwHiSRHjqZxS4aZbBRpx4nu7LCBkrPRNKGWXyZECa6dMnmTvu+8+QGYwGelusVsvfrYnFV3ih0UByl8qLLxwwYt1HDZ8uE/Xw6dD2cDTkg4xdFoN5wlvEsfFAPI1ZcemTRsFmjKBdfvi8y8E5p6775X2pwxnavYVJw9dXjQL5ISQF2bRuf5T1d58s+s/hLod/Yfl5USTTvsPLzHTElJG7LdfV4lnmJgj03TWF5mT4PiSMU7aOL6oTPcJ5aHyjzRm8ilTJtv77nU0ngqllAtsN910U8B1IibWQ9GnicylLbCXXXqZxE+eNEUWOPgyZiz7bYGFlYTAMmzYsKdkQUgnXZx8s67DpW2sPfmUU6T9n33mWUmj8oc4dfzqAHnZvn07id8cfk8KooXTN31aWdwhbteemwSqFtqTC32uPTPCs6y/HgM44vC+shjq8vPyeYuyuMDJy2dkj11njBPV7fwFCyTP555/TuoIax0pR8zvlAksg7v4xmKi8rVMfJw8dWW97XbPD3Jml3xP/m0seTn+PTJf9UKNpRD+jYtYtWvXxkKEu1iIC7/EPxZtRbcMPMf+d/ddPB/JMQ5lxzvHfucyMs6Vx+Ur36CsdGef/U/Jg5MIotmIvrEFZBrbku4LTCQrVChvsSuKt4x9FAsfxAmrAInnBJhneelYY+wuS/w997AM2c7RhAtJXKBwDmH4w+6hpOMkGrtedg50ALoDulG+/EP8lGkxvRmoNGD5mTv7NseRU05xMmkdZB4X250MytjJk9E/7rsXkBmZRDG/kSNGMispx+FHYAzHgrkrqbVffY0xnDwifd6F5tOBmPyX8r/TiyraBx9w8nn9OoxrwNULehExffjhXGm/3bFIzAn/u+/OIRrPQ5SdaRmoZXaFD28C534yshhUGzzOxSw6bX/hISRhX6GcvMufseUCJXYKZcGdBDrooINkY8Dl5/UmjP10xHgWFpS7dO4ib5wIk/+4WKX93+mvXFR05eNCJdtA+qgvcm30Yy54L1hQCDib6GpYbKDjGMFF9Ww5NAwbBOIkH5+ZC/G/GsZn5I+8Cq5B7l3f9KlQ6WeIFU94i4A0jM/IH3kVWIPcu77pU6HSzxArnvAWAWkYn5E/8iqwBvG9DeaNbqLZVTYu9TIgNZ01B8CWdj8oAp267C+Abdp30HxSzzjTJEJD9ZnE0McLLJzLhCLLO4I1xnnCm4fPfeSH0FB9ptP91fBTERg48GKpPEv82uuvSQd66aUXQ8E7duqIiUAneV+9eo0oveecc06gF1dfT/ECnhlJR0UndEqKy+ZcwG+FXUvWf+PGjXZLCKatMXHgTt2uu+5mG+3QyDbacScZ9Jhxq1b7QPlMdlGZC29X22qrrWW1mTsmXMWmq1ChQliN0lbk7g6VK22FVtiR3Qe7eDH9+51wfLKqBkDCcmWMK6l8GwFBTmHCleDd99jT7owJOcxHsXNxHNHaRf6sxK233iLv7oe50OnTvTXmRPOoI1P4YRKUXMQEcO6UcecXZsAhPSeoHETUwQxEysSzSOuhsLL9qBAlTvG655a4JfWiaOLC+sOk0HbCxE4hK1TYyh6NS130nZ6DDiL9tgzl3WmnxqLAKp64HAzjzhoVPJgB592x03Qx/RUfeasjJmf6zkP4VDyef36EJhMeZV3pxuEgPtslvvCDO5vEr4oyd6gJ8250Tpi7E/vvv7/k8QMmVKR/oB2QK356xo0bI/nBFErg+cMBgjjuvZcDvoOHaZjgudsPcFQu2DaMHYHysz25+7jnHnvYnZvtLBMuxz/55Q/by+3khNJYmG6DHiXsueeeK3ipNFFRUYjbsFLLusIM2JfKQkG5VML+A0WTtxxzEBY+xoow+XgHTFSOxeoq3Z24QY/p26MNJkGhcRlr7gKS94cQbiEjnhhnLEyqpP20vI+hvOegvHRsf10UWPl9sqDCSQNpy/KSbmx/9rU9lG6+31H+1KhRQ2RABcgA3TmFybKknzBB5Va6/HKeEJN45T9OXjdicYi7KJcKboNLjfyCDJK2a9cGk/EtZMd14aKFUnb+KK048ZgoO9MuihMHlp87E9x9aNx4J2nrYVgtp7uL/QN14iKW7minSoiX8C4e9yb8hXTjxo13iPDLnXUuJim8yts56DfMxclDTIAjdxAWVbijS8WJ/Yf8MOOVGQHi/vt8//E7WKNGsf8UiFKrQLRqOQALwOpkl5gTTTjKdMqLihW39jJ9F9kx2hHy65voohKlP8vZpl1bWfDgwkQhdmG1PvTssUdzW7duPSkvlWbKH+JQB7NWWAeUde2zsFCDMXlhvzX2rbdmhbCjIHdZXy6+7IadrcaNG8Mip76FqbDAnH/+BbhNunzAzwkf+e8Br0gT6Oijj0nd7FkU/qQVQ21COeiBiaeUbzwWshSiHcabzlBy9f2FkS8IfteeGN+24vh2TCofLpKV5fiG/kQn4wR2fhT/22/PFjwjkRcdaKUnFQAAQABJREFUTH1lMXTatGng90uFHuf/6wKJI2+RZjNefkXeWZB/y5nd5HK1hO8hIzzfa3ldIv3VUH1aCxNBC5NQAWB577rrLsH/9bdu0sgIWi1dfMmlAsMd5HLlyKtJHo88+piUcdSo0QLDOpTA4pvWn4GUF2xr5zJ27dq19nssKD+NBYVDMOFi/2N/YpqtMAk9859OfyD8Cizakd/voWwXtAlun6GM+w0aNNRXAdPzktw9d86l4+IKJ1nTp88QWUz+ozWRlveySy+xvIhR35kZTKKxQHt0wA9TWdc/YKVSuHBRwMvdOrbXCBlnXLDr8+QRLbebnG+BhWYN4/ink2uGKeQv5X9ashE/rVREPote1BD06Se4Ak1gCRQ7WrMwHWXn5EkTA36BQWG0PM4T3iS6Tp26ljv36shDzIuLZupwDAz6FHRZcW5Bah42Fe6++y7olztYHIERenOhpEzpUvaEkyK9KcKv/e8dWA6pO+ecc2Ws0XfqAMSvk0aGOx2prwfJ2LdnQ1fD+E/rKzrqf0zDNoDJs4WpbzJGRPjz1d9nmnqkKaRRGqpPDXfPwG9AkoLAS3gXT3hLZxC95YfQUH1GCeD9I/G7Hc3Odl9sWPJyWe5odjv4ENnRPLRXH7ej2YW3zvodzTZtO/jS5i98uiruTSG9HEYFs6Cy3zcXHWCDJws691UhFa8+A6QChIC0JxUdXoInDZznTSEVrz4DqAfAea1ksoNIVZxx/iWAchLQCZMTZUWawu7YqJHlziBNkbhKM2NGorTojiYFouIdgJtrqRTSFRYWYqApSAkOiYh+9oFSw1u9xPmyfvjhB5ar3fyfhn+cG7WrYXbAzhvvEDDNKdhhpbnNmjXrJAtOWkN+DEGenHDVgwCL3b777ivKIFFyRZ15jw9Kni+ITyACFYPXkCFD4izEr5Ba/x0xiY53NImfE6dLYYasTncVcL4qdHrZCT0iGTx1kKHw4goxB88wWdKM8FT8NIP+F3Y0tRwEYb07dnALBzgnm59+pzr6cbBmZjJRPpKKjHPcvSVtRmJCR0cFlpOtijCX44B9GgZHOsWrTwmUiOBz5RH+cmFaRzdhQxjwXwbFohQGZjoKeQ7c+C6ivPPHTTSN25nH+0iY8LJ8c+a8JzDE7xTlA+R9yWdLJf6kE6LBRmLcj9sZgcLKHU1PTO4MMk+daCo4zu7ZFi1ayO4+d3U3bfpRkjj+KRDTrc3VX/PhUyduHqWLwks3LLxxR5dmNjSFxBnpkIwTN5aLfKNuOPolw8aPn2AH3TRI/PiOq0aHOjEg3XZGlPds/C5hKlSCtizHHfN4oukg98eKPq0BVq9eKwr+vHnp8rL/x+XlRJFtinORSb/T8ga0zkNlmf1f5ADMdTkBURpM8HJLkyjdL+RlQH5SxBLiXJtMHA6AOTYnXuUwwT8/uoSJJuFc2CINudPg8sUXhVN8Dlp5PueCGU1FM4iny8ZPnsD5L4FhnmecVvRRgDj9GzPdQobiZxwnml2D1QItSJTX51jXnwvskWJRgHL4gpxyivbndb7/FOT0H9Jfd9HchRhYqOEOjc+D5u3cGVMnu8SYvNIVFhYKrcKEwgMpfn36YMmTStpxME8TGmPSqG1HmIdhksdw1m3QjYNgvcDdTaUqdmy0fSD/uDtPvqEb53c0Z8mOpqs/zd+4QKltI4BJVnJkQMcmxnFcIW415SbaYzABwHloScqfovArgGav9danjq8T0C/V6cKBvsftqbuPR3PnPKr/aSqfYRlDJ+NEZDEz5z0/GRnhJpo4Hyz8zoU28nv5LcuHS7xUaca5M8mLP/fp5WrLvhS0pB0VdvK48C+OBmzOxfXfvs729oRIzrqJZkFqkiBjob/9npNoTpDCwgIym4zJLfE+/vjjgtaNB6VSRdgRJqGOTo5SMh5VrIQFpPNhRu1kJOnPG2Ypf3hsRx2tLcj/NJ2l0/LHL25Hs4EE6Q9NRVmubB2A/Icz9rAAOEDoveWW5QK9mfaySy4TvUnz4XMnlF/1GOJn/1AZxN3aF1908pt9kmXV8VF5RNMyL6Y/FTxicIyDYzj5j+Nf0IGiCpIOv4T/Oa4RP02S87nFi7E77PUi5Xs+HQ/dIzxE+vN4SVEuKp5UhosVNC9Xd7dONL9NJpoxD3373UpYyfW1derUE8uYnj0Phb+OJKfeRPz59CYCaP8T2ccAFIZjw1ZY8FF3n040YS2ijn2QF0bRsfxOjynAgsAIob+OERxD0gwmSVI/2fV3kanQFHz2i0LG9E/BKEAqMHlJRYeX4EkAi/Ap5J+JnxPNdh064zOZXW2X6PMmsqN5GG6d5RYnv6MpE81OnW1rJMhuGVcRXx2tTRGVzg1WMvhc8ZqEFAWdhnBvPuz/MH5+z/ESTHa0dvhQrQhOHbhJjfYdOmAy0CEQ5twB5+KsxQm2L0x6rsBnTz6aOzfE0UMBSOE7x5tMMIwdlatudGvXrpFJIAWx4MWP4hcA/FCZVqXGxaUh4jAK6Pr162tSeXJSxxUsdS2j/BQb7fNLYbLHHUTNvQN2HFq3ai3JOKhxRepiGQAVwuXIt0WLF4nAHYxzFT/lWEaatDnn8qJgPP8CrCrjlSEqwL/+OhGe3BE4QoSXS/MuPhlDIf48VhWZimdlt4NZUlGuHBTBeEAlHHcdOdmkY647YRJcr349edcfoV/duvJKmB13bIQVOSo7zs1hOTjYsRzgf6540/FMD81TGbf086UOOOfX1YXB9HVo3wHnp1x5GOYENFZspY4OhiuVuAyE0Tij+DbyL7CPPf6YvBP/3XffI3RRnDJYgE5vzUqUJwr6Ll2deQwT8gwdz9ayEEmJXJY0yWEd3ngTK+ASlBEFhXjvgsKlYYziBILhx59wvL32umtdBvh9HGcGOSDnfj4owSY+/GhIOShYPIsVO8a5nZoCewwUc551dvDu9zasphM/LoMIyWiSTT75fOkSUc7S5VBsDu+dOD/IEE4y9te2w/fE1MW4ssNceXNvyRX6Af+xxxwjZvOajk/dgQ0LKkAwkOUFrXDJA0xq0e8ium0Ov+SL9ufOM+t7zrnnxKiCn7v6OtHcuPEHsWSg+ZzkjR+a6uISD4GnyR7PbtLRwqNK1ao4T+NkgvI5TbS77tdV2ncpFJeDD+4u+NVMTBJHP9zRpHP9o6vUj99sU/yujlEC7+Wtx6SFKpkMboudwH29mRffuejE9ndm4m7SUb9+Wh5SAarr+7PudlG+KX6anCn9JU8/eZ2FnUFXtgx2KlvYzhi06RjGBawtOXkH/deuXYdz8AUiJwRgsz8ZMYskjZkPLjwCjavImSVNRuWYZyfbYlLdBMcevo0Uyo9wFvOl/0wEaMa+/tprcl6c5y7pxnmTd04o1OFCImknnrN2ztWIfvr4+S5c4Oai8Ps5djRJC51oEoY7ZY0a7Sgwm8MfMinCk7Snmxgz77Zt2J77hhSq6Op3ljkG1K+fls9HHHmUrVO3jksD+stCJsqoTmQo+sNInHHkhK1WzZqW/O4TyF0M5Hfil50X1FcncYThJI00oDwlzJ133sFgmLkul3OD5Ddc4idhokU7X95fKvgnnpBMEpgX8+ZuFPPmTynsMFFm0dFclPFqTUKYEagHcb7xptupvgRWCDTPF4f60/E+B93R5Hl2yoMRMCGmmwRLCeZJ+hMhz2fjsrqAn6a2jL9DvqMpScKPyz2Ds4H9QHPXDhrGuxqYbvDgIQGe9ObZ7SOihVlcPBXkC/FzR5YL9JIPfvjkRFknKrEMwuVvclREefxdWUQokPOrghT1525a/WDW64rCHbR6yiMIEp0KC4AOm4Mh3l/K/xzX2BYck8V5+rsXG27FHTxksAbJk1ZPdLQ6Uh1hCccZX3+JzPPDMtaRxYqEh/gdS9L9W+5oevy8g0HLxElsRS7MYiGd7lRY3G2Pc5XOZWTs5/lR5p2NXy3ZVF4IjXBUjJZf6nAhk+BfgUULxR/zH+HYThx3VY+hHCJPzpnzjmaTF3+I9B4po4MMUamwLPoHoCI9LjWjxYefJCQ3kYtLQ6TC/qL4aQnbAdZynEfKjibmle6MJj9v0jc90SQgZ6biQl2DJx2MN62zQKTBXB7hd7ORASrVBCFJ8Ahc/PZ/CT8VPTL+WbBFVzfhpQnSgXBTqg/KwLR1V/lXbqyEDqznK1j37PrzgDgF0QyYjajjoXueM+P5MLpDcKaPguKaa6+Rla6VK7+zZ8GUZfUaJxg4CeXEIJV7QBQ8kte1110neVHJIP25OombGeUSFwHAT5KfhmRkF5b1xw2OOPezHsrLS3JZC1f3ePif+VSEuS9XceVSGeTNwe86P5mgaTDrMEhW212++dqfK1i4QTdZTRTQjJidtGrdym7CwDR//gI5l8ry8Awb24aO5zPjVUia+lF4kcZ0NB9mGXiJAN1smGvw7J1QCD88fM+zjnOxGDB16lSBoanyrrvuIn7+XC/0K7A8l0jHerO8zhxIcpLLIbod0E3i2SYsB/EOxm4uIWjOuHjRIqG/mNHC1HM5lJJvYB7FAV2Frc8AD5cv33cT/totRHHHinnz/IrC8SIOhgldMj/KQL5Ls13kTNJnUPT5fTOau9EMnBdZzQM9CX/TzYMkXy5+kP+ovI4fTyUvI2cwSG9dKOAE9rBehwk8zcOY/glMZnFrsl24cKH9+KOPJeyaa64WGP3h6il3xHjBwjLuAMCxdjxDuTVMCQP/IIw7pNddd72HwCPL5baXoxN5qEH9BoJ/kj/zoUl5IQTL+ilMbMl/pFHjJk1hruYGZtxOKmWQcrz2uiSjaeF1aHe6mmi7RQsXi5/mTbQE4Ko/zzcdikltYWGhxCVN5srEQNITtw8Lf3GXUfl/E8zepLygrzsn5rLg72233S7lpYkt3SqUt0ljlNevWJP/WFb+z8REj0763bWuvMoTEoEfloYmObVq1QQf1pRLwIj/3nvutbfd7sy3aNrvLBzW2KVLPxf8ND+mmwFeLlmyFBTJ4yzPRrHtaRrpXEb8vFCLiMjni7wpLSePzPNL0OrJJ58U/mvduo3wn+KfMnWKZCPpFi4S/513wnQQdBEaQ+Yc2rMnaLzQ40s/XhzvzMRFHnuy74a+yx10dbx4h+0/Hf2G9Ge7Uv6OHeP6M9tf+rM3ZSNMzZo15PKx+QvmW06Ud2++h4wFF0N5ZP+htQrzvBm74XTSf3AWn+3NMtGdcrKj6WosHNL1BK8wzTXXXAMzzYxc4iMy3St7AuR/JsF0LqExJlswE8Rt2TGIfP+Xsi4cy/D1p9ldnLYN2kraB6knTnT99jFMoie8iH77/9j7DkCriuPvpQtSFESQDvYCGrtIF1EpimLHRMQWa+yxRVHsYu+9N+y9RxQQNYk9iRVEil1porR3vt9v9szu7Ln3PQkx/0S/e+DdnZ2Z3dmd7X3qlOw2pA3DxY4648YtmVdccXm4XIursEx/3O4s8nkhGfk58ad5jWe8cLuk0GuSf/zxJ8Rt7Xl4xVH+w1Ugps2dd94R0Kz/Ntlk02DX84SsBynfpyfONObpyTO3SXqCi8dXeFyEactvXKifb8CA0O/e0Pz+Itpl3GwqW0GZ3+modetVsq7IV8wPXPFhfUodnHTiCaIzm38vxUBR6gjU709jsmAHyb9TRK7Kl2Dgh3cXsByzDdJv9OgzxO8pU7yb+bIrqVZ2CO504McOPuvTcMQAnnKQjBvVpZxTJ7zIhuHjjqY8ypKnt9mGAymcOcbkGekTJo4XNzzqQzsvnmJbzzN5HOjx8jq2v3/4A+gok70wCcu2Mn7qOwcrB0q4PvlkCi5zuUf6LZwMoL8+r4gqUb9Q37WyPxzu6xemBdsexofne/kdjJ0QPvy+v0NcK5RJnu3kF+sgL5/5vS/6wvyY/+j2phtvFDs5mEdYpzxqy3wLtOEXjhEe/qR9oBivfzX/M/9J/YxdAuwX0SfWz+xHMP29Tmpl553L8hM/m4c42SB5CLuEnkE7wxXHKdBr6VclW5AlD4HHf1VSx1AHzEOUz50+jP/BB/s8tAXq4Q7tO8jZXe5O4f0M9EP7Vbw/hO718qjX//ZGaPt9/xVbyWWXHn3P5HJA3kXi+69R/vtowzwH24aVw9EC4niZn/Qv8r7a7bdpPdQDZeo72R1zxZVXZC/kl/yJoJIf9R2EAAZAuK2N+ucnhiV4tPmtkVieLzgJgPBZ2/+SfO6E5fOYHGhy4TKe0dwZA81862xY0ezdL1/R9HG3kTLayEFPrZknuipyi72MY4uycPRJIU+tmUd5Nd9EboGiNTBalIUDQwA8tWYezzxl8hRcIIBb0lDY6mNljRcD4Nr+bMVmKwiOM7w8lM/OPHlYYDjgpN/c2sIzY83Ay1lsFmCuBH788UcyC8xzZnSDpySk0uYlN6xoieOsEmencY0+Zsf7S+XA7ZZcXcLV/9kP38+XmT3KIz/PbrIjp191caMMbm3ojdVXrkDwZk02cpwZXwMz0RIH+ocBLK7zF+8W4QzFvtinX6d2bdk6wgZzCJ7W4Qwst52wc88KX26URXjYuPeC/2xI2GFojtsnGU6uTPotYz50NoyUjyuvRT4rVm5fYWeHHwdptaE/3qDGsw4887Q8tthwywfPQHLWVcINd7z9lLPUK6KjRxy34uAKbRkUcnawNnh4cy9nRfVCCMoYjhUl8vMCEXZcWOHSzg5cV6Sn5sLTTz8dZ4GaZH0wC8R4iv6gH4afZzEYT4aflw0xHBJ3hqNRQwlHl86dcYtbR7lhmPy8kZUfz7E2a9osPnQtWP9DPXXtup6EhWFieJ547HG5LY7y8ESLbInjQJ4z3hIP5Fle/IJncWSFnLe4ro3tqidhNpyXH3Bbt17IMGjwIHHTEpMObOSpp84IJw/582MHfABWpbzumuKM8BrZFAxQ+c3FBQ7sVFMmbxXGkz2iF9p5A6q/pEFY5Ye3gO6113CBbfoz//DWYrqjXpk/Z+QrAZ4vchP67fA8vXDxge9oagph5hkrEFzdiOccvHw989iuXVvJO+2Rf7mSOHvObM+AXwkHZnA1HNwOL7PJKNE+7Tplw6C71ZBXNe14GU9tlPMzz+LA2H8xtN6+1299eHkRgt64rDxHH1NdeC+QNGe54iVgHRHevRDeWbMR3tzxc7iAR28sZHnmjaFhBVADUzApn6t23IUgN1IO31M6KSOxbU/rH/rJAS4vrqAuuFI/FBeV8ewe7dtsPUDO0XG1hGnFmw65osaVbX6dJJ93Qj7bRcqn6oo9rJNx7oqrpryBkRef8ZZh2SYFd8x3nTrR3c5w1wWdsHMlqrwoivXPWdCxRF2VBzfc4tgUnTmGi+f0OGBnHUU7O7L77LNP9iTOpHKnCMszL7/gdnJ6wfLMM/Gsr1ZCh1PLM0jy3Tt2LFbxGsvkCLd7czWJZ/52GbazlG8ycXBFWbwxm4Nwlh/Gn+Vn5Eg/cchySp3iqRi5gIVnR6l/tgl4bkI69l5i+sudMzxj1xsdezxdI5e1yc3NJv66zfSNsBLpswfPOXJgyEu3eKEcLznhFmNSecmb1pG8sZNtB8sLV5CYNiy7TJujpX1YgptkcXEV9M94Mm4s/1yNYry4jZ3nhVnnsZ0jzwYYgNUkn1tTyffxRx+lEYZN0hN6Ib0JdM/zyBycM+2IG4H0fAqTYExPyucN8K+9mqcnJrc4ASrpKfXz0bJFf/4PaF9Q39IPdrSZNqz/pO6CnVtQ77j9Dpl8pAy2D7zYhDcp0876j9/YPD80wFlJ1qeccKC+eOMm/eNqGfMv6wjKOzcfRFx7HeoI5l8zeaZJyLB1RrtOOWw7ONjjFlNudWZ42f9gW4ynO4SHu6tGox3nhyeRJJ3Y/2C9zPI/ZcoUyduMI9Of/nLX0sIFC7ALaYsgZzcMSqdMnpxxxZd5eu211pYbjZn2HFxeffXVGZ4WwZn59cQNL1E655xzpDxsuUV3CaMEIv/R+HCylHmW7f1pCOdjaKs4MchwsA81YsTe4oL8nOxlGjLsO2wf6xeWIYa/LvyR8COMDP8Wefhro1xzUO3zGMoH2mNesMXLEVkeHsMkD+s2ln/2v/QcPAWfdvppaR5B/cNzotIHQjgoj3/sA3EljuFclvxPWbycSOpnxJHtWh/UM1zhZh7X8scVRt7Gql+sA4fJvQW8mZdl9jq2M8hD0s6osnNHDLvkIchhHvpDyEPLSVzaos3jhJ3mIaYv04YXzbFvwIu2eFnjnnvuKfy8CXYy8sY3aPvZrrPMsP+p/aZrr75GJhOYdowXJx1OQ13K9oC6a4f+K9thngelnX1cbuvmPQy0ax+JR4s0bzRczveRbD3E1wt4E/hR2B3ILcX8JOqF+Ae8cOQ8OVxqeMdlvChlBabILfYyji3KwqWeemrNPNFVkVvsZRxblIWjTwp5qvJwRbNnHww0tyoONHfKdhzGdzSxxIkG2uGyBleF9zSXwJxg3tFEeuIfdllLuUGVxY/JLGAABB1/qsOTQ2lqelepLfr0a5BPDS5auBhvk9WRtzBRQNA/qAVdZ4LDmSKHxhVvBFaJnarFwAzvy/2It9EGuWOPOx5viq3g5syZ6z7C+1uXXnyZ23DD3+ANr9sdkl3eDMQWNYdKGX5WwXWVQyXtFi9a4rDyE5SJjoGbNXuWa9+uPXBe4zisDXf1YcvwflHK7x2WT39UqnhLcqq8m1YXb67ph1tQ4R/ezUH8ivLJMxvyF4Kn5cot8Q7jl/KuERrDPDTel89mzpR389CBAgLhQpSq8DYo5SzBW6LZEufq1a8rtDwjeof4VfmMHeU3aFA/0Bh/vn/Vtk1bhy3FeEfyB3lXjQy47MfhkgTos8qht4T3weo6bMtBXGAuhh3PbaHBFb+weii0tu3awJ6XCaE4vBM1zbVv3xbRr+0WLmSYqQsfFp8WXu9Mr2nTZoC3naSb5n+mBxpShwIs78nR/UKmI3TKfIJr012dWnWQF+bIG3yYNEjCgNVat88+e7uXXhqfhygaCxcu9PkLacO41a1bX8o79YqbBPFeWV2fP+lj7dqQt1jyD8v/EtCnT58h7xwu+GEh5M+WN1Bt/PmuJgblrlmzJm4m3g5tudLKor8YAuewndEthl7QaFFKIPHNxXlIH6wWiP75ri8aMglf5mrL20zK/8P8HyWdGi3fMPFDPZs5cwbeF23iMHBQlDFV097E2V+kQQfxOobGuVNOOQVvITZ3RxzxB+TAWP9hksjhDLS8gThr9ndw217ibAQA9H5jW6BrjHdefT5WDrzFyrTDu4ydO6/KYiIfXZyD93HJixVlZYaZlj8Jb7sOSB+yaFxseI9I8BdddKE7Cm/Nff7ZF1L2MEDGG2t8eza6VZ9Y7tDxLgmvjT951SnLCjqkeDdvZbhpIqRFeIsZWcfnH+Rblh/WdSwXhLESijRdIm8/dujQ0XuHoGA7ncMkhMPAQ3D6w/ri62++c106d5Qy5R3gl2VK8uR0pEHH/D08dZW52dDxN19/Cx13EvlKOevssxwmmxxWaYCKKb4EZV7rX77jJvUnTKxGIbr4qyKM/Ij6py7eCGM7WbsO359E+cbH8jRtGst+B8STuOg36Sy706dPw3uTHVAvLJT3/rAiTJJ8TA1MCCIvNUT5aebwVIi810edsfyz/mGdggk9vE1WP6Q/zozBrzmO6Rq/NG2JR3WC+vYzCdYqrVchBn8xjO/gPVi+o/ky3uVLP9RDGKp88flMcNd2eNLGOOUbqD8iP89DuW1pnGUI5xI37dPpaB/aQ29RR5jsg85q53VrA5isk3y9jokWqX8wGGVkQ/1Tk3ysNuO908eRb1ol8ll/LkG9zfqTOqtTu67kF6anb3uh0zo+HW39x/Dxi+nZzuGJK8Td6ws3LIv+qYQlyBNscxeibWc6sb5kfqiDfMH3J+uhfmV+p/yZMz4TXajyfN6dKfmBbRbbZex2CHHAbejyRnHnzp2gC4Q5l883tJs2aYZ3Bpl/0zQMbTkaSMa/NtoJllG2GdoWL2T4pZ+ARhTpSf3wo0+4DVbKPvOffkwfPIQn+Y95GANItN++XcQpavjPPgx1sFDeV15llTaoQxq57/CuIkSjDtW3beH/9Ol467i51JdTp36CuHdSMYWYeDSOF6AsNHUNlmsIv9g3RXpCz0sWwWO4qGvK2ad4oxWDLeh7FUlntj9YZZN0ZN+KuqDO2QYzbZkn+dZwFfylPqgvlj/mDa2DMFiRcl4H6cj+B1iEVwNL3TBO7VAfM/31w23iCAv6HfDfy/R9EMpdlvyv9S/zUOOmqJ8bo11DNmXYGUbNx0wLxkXzxWy8W/3NN2hnunQGu5b1DO3MOQ4TY2hnDtUga5TkLXbb/2B4Wf5Y/xTTn/mf+mK9+N2337lvv/vWderUWfI/dj7hHe7WSf8Tg1TH8qP9T/Z/GQfJP9Al+1+sVxlS7X9QPuvfuihTlI9BqFu0wPdLNP8x/kwLxp08rD4YJn4sk9NQ73YIbYSWGTWFLcTf2+xv2v4KJTgNgHUAuDo82ZSmpnea2jxOKZr+kuhEBuYAWAeWoYCnVd2o6VlSm3W2dPHvEd7RrCdpVQd1Qm3UuawLmRYYaA6WgSYrQzawrJwnjB9nAmSFpnAaOA1QzpMQYUFmZQ5iYUXeNF/CGPUQFGJYC2Dq8tcn/5xzznW4plkeiLdRJw7bN91zzz8fqg8qzmfInDNRDiwV/f/q899b77zj9hu5nzvvvHMdtv6EekkKVSX9lzr9WRd2W7+re3niJIdLdmzRc9g663AGGoO22Wism/5s5Y8P3+PdQnf/fQ84zM5CZlKAkzCoRTnYmGJ7tjxQv+IKeccuJzK8xyK82C6PB9Sb/n9d/151zdXunrvHugfwkH3zFtoBVi3mWg3WAKi6S8yU45dd/x7+h8PxkPrmbo/d98zrjTR2JZEHIuX4v40/8zxW/Nx6667rsJVRQvNrb/9wCZu7Z2yefzEJ9t/UP/NDRb5pYqGNX0L+u/LKq9299451999/LyYBWpSkYkzUNHWZ3sUv5fhlxL8y/kCe/Q+Mv3r06o0JrboyaVAXsxKc2MNNzxhk1sHAExNlfkVzscy6cUWLs81c0YzZJkLFjBYzZUpJM2CskDze/lp3qasoNUKWW+DUSSAX0Wr3pv0NTgAol8dFqRGy3AKnTgK5iFa7N+1vcAJAuTyOUi8Yc6E74YQ/ugceesgNHjjY/fDDfIcD9g5PMmAwcV5hMBH9Sn2KPlvJRZ7IFeX7WbD/Xvwr8lkjLL3+Z2MWmSsJzVu0MAOgmLKV9GfHwGohlhnRM0i4tMphq7YbOGigzPwW9Y9r892Y88c4vOnm1ll7HdvTCJ4Vy5barWTFqSPO8Ldti9UTrOLyi6keIeUNZlXmjj+R4X3SDUJ4udrBz/p97LEI75gx7h8I71rrrFNj/G1kotQIBbkKWEGKK8gnWtm8aX+No8DlcVFqhCy3wOpxgVBEq/2TqVMxm94GjV+9gjR6oFzesyg1QgUxRSeBnPoU2Tze/gYnAFJXUWqELLfAqZNALqLV7k376xyObLibb77ZffzxR+7dd/8uHQN6FKVGKAhQQD1We24W0Wq3khUXnaaYKDVCkddDH3/4kVt19dWK6IImo2Z/bvklgvKQpDH5+eRPRf7lThDuPJGvKOg/LD/3PhoV+bbKDHopqkXt3rS/wQkA5fK4mOsjZLkFTp0EchGtdprT0M60adfOrzIFFwSUyyOj1Agl7KVOAjn1Kfrs8fY3OAGQuopSI2S5BU6dBHIRrXZv2t/gBIByeVyUGiHLLXDqJJCLaLV70/4GJwCUy+Oi1AhZboFTJ4FcRKvdm/Y3OAGgXB4XpUbIcgtsnHBFE1vUMbjkKiYHlxhoilkHGyLwx4EmZwe5dWjx4oWyfYgDTSvXBk1gI0AYxY5OcYJnUIDIV1IkYNX86CxDEiXjlwfNr6H9muXPxTZPnBd0f35hHDdvYQWlmevbr5877JDD3Bprrp5rE8oQfVT0X8l/yBLF2apK+SvopLQS0vrne2yn3rL7lm799bu5G66/UbZpkVtrniOPPArb1e+Urcu4yV4GnMOHYwXov1T+cKbGde++hevWtZu78aabfAfUpP+RRx7h7rzjLplZ5FImB5zDhw8vUYDGv1L/mjUJn+iiK01/ZiSBDe2X3v7gPKnDhTWyc2b1NVZDDPMMZOL4a46/lG9EkLP8lfz//1/+r6Q/8n0l/1fK/79Z//Xo3RermFjBxBZyDjI52JRjXtw+C1xc0eR+b5yv4YpIcaDpeyam5dEq2aI8E35NdR3oAZB2GWerwWd6RMGtAUpYLCKXYVHBaUV+aC6CfgJQ0b+owugj5JsCUMJiEZX8J3nMqiSor1L+KuUvH66E/BGASv0jqjD6COWmAJSwWESl/qnUPyhjNkuE7FOpfyv1b6X+ldFFKB8BqLQ/ogqjj1BvFIASFosobX969O4jA02e+eYW2nr4q8WBJ7fP4tAsBprb44zmIjmEuwiDTG6fncgVTXzB6wAI2lKShCMbvziEjA4VUtNz2l9PsfQAB0D5DUJAb+cvv4p8rweTgiEtjeaUKTejDlV/gTcA6sQgBPR2/vJT9xX5UU8Kqek1ZX89xdIDHADlNwgBvZ2//Cr693qo5L+YTxRSUzUUTU+x9AAHQLkNQkBv5y+/Sv7zeqjkv5hPFFJTNRRNT7H0AAdAuQ1CQG/nL79K/vN6qOS/mE8UUlM1FE1PsfQAB0C5DUJAb+cvv0r+83qo5L+YTxRSUzUUTU+x9AAHQLkNQkBv5y+//0b+69mrr2yR5SWa9bCayQuAePGanNvkGc3tBg3B+zfYOosbvZbgVizeqicrmgyxrqkT1AgEgAzmK+LL2hWZm6lhhOT+VuQj1/hso5qLCWF0TzAwqO5gxhyX05UpVbxiS/0ApSJfFFqtjnJ1l+quov9K/tPMAVMykOai3EyNMmUYDJXyJ0pUzZWUM1VxYMgRZe2KzM3UqOhf1RN0CkQl/1XyHzQQskYANJPkZhFf1q7I3EwNI0T9BEMl/4kyVHMxISr6TzQQFKR5B2al/xtVJPpRJeVmavxb5a9Hz764X4JnNHlDcD1Z3fTnNXExkJ7R5JXCck4TK5p4Z8aNz1c0GcpC0GLADaQ8kdsQc1B4IqPFetgMKq1rdaKmpSkcaRFSmppCKSEbREV+qNRVZzRVQ2pamsKRFiGlqSmUErJBVPRf0X/eqdA8Q1NziJqWpnCkRUhpagqlhGwQlfxXyX+V/KfFJZhaQtQMBANEWoQMWUChlJANolL+KuWvUv6KxabS/kEjHC+amqJaHdXEVal/oMcSJRrEv1n/9pTnTTCoxIomB5q8GIiXAHGQye2zyRnNJTijyZXNCS++4FNXk9SER1HeLCWUYlIXYgNThljnO8lLGYqeFO3BRSmhFBOYIwCmivyK/iv5z075xeJRUqtXW6hKCaUY46+ClfJXqX8q9X+l/UuWHLRygFmsRIr2wFpKKMUE5giAqdL+V9r/Svtfaf9jpWCgYiVStAfWUkIpJjBHAEy/tvrH3zqLc5kYVOrWWXnehOc0/Yqmf0eTA8zF2Dq7GFtn9Yym3TobtWQgo1UPGgTZ1Comf4hC8c7xShaCJyIBzBi3mlG25de2yvtV8FGtYvKnIr+i/0r+q5Q/VASoZ7R6kIrBVw6V+qdS/2qTggyCHFJmlcXmF2X2eamQo9QqJn8q7U+l/am0P5X2BxVBpf2ptL8+G7BZ8B+aiF/q+GdLed6EK5pYzZQLgPC8CQaZsp0Wpl/RxAVAizOsZsqKpr6jaQZ8Nkto46nK+XdM9UtN41eKMjYDGvZlA9UvNY0vKcrYDGjYlw1Uv9Q0vqQoYzOgYV82UP1S0/iSoozNgIZ92UD1S03jS4oyNgMa9mUD1S81jS8pytgMaNiXDVS/1DS+pChjM6BhXzZQ/VLT+JKijM2Ahn3ZQPVLTeNLijI2Axr2ZQPVLzWNLynK2Axo2JcNVL/UNL6kKGMzoGFfNlD9UtP4kqKMzYCGfdlA9UtN40uKMjYDGvZlA9UvNY0vKcrYDGjYlw1Uv9Q0vqQoYzOgYV82UP1S0/iSoozNgIZ92UD1S03jS4oyNgMa9mUD1S81jS8pytgMaNiXDVS/1DS+pChjM6BhXzZQ/VLT+JKijM2Ahn3ZQPVLTeNLijI2Axr2ZQPVLzWNLynK2Axo2JcNVL/UNL6kKGMzoGFfNlD9UtP4kqKMzYCGfdlA9UtN40uKMjYDGvZlA9UvNY0vKcrYDGjYlw1Uv9Q0vqQoYzOgYV82UP1S0/iSoozNgIbd2Xc0uW2WlwHpO5o0ZaC5GGc0l8iNs4vzM5ovwA9MudivGgF+DGqIAQxAGKZGTJnVBCsruDBI69igfwnyv/rqK3fmmWe6N9580/Xq2dONHj26XAxNrMpEtgxKHAjeEAMYgCArYpxbhDTnFcTlP8uZc5RB/Tvy1bvPPvvMNW3a1C2//PImKEqtGbU08u+55x738COPuNdefdX99W9/cys0aybOFi5e5Opj9qX89/PJp//qm5oW9+OPP8r5aBbOhdhR0Bh64PtD8+bOk4JKXp6fbtq4iXO18Y4fVlnmzZ2LNx7rSZmtX6+Bq9+A6ZiX1yAkc6eccqp7/fXXcc10bfcodBBI4Cb8/bx5+IVLrNp8//33bh7sK7ds6Ro3aUys0Ijjh3vD3Dy82zhv3tycB+HhB494a/X383/A7BXCATufSFq+0XIyu5WziG9F+YUaxs2ePVv29terX8/Vr99AvA8/ueMqvPe7ADrjBWaNGzeGSmojqMbnAAYgxDtinLvkskvdeLwfOHnyZNFRkCOA5cwpZVCR1RADGICy8pX6zTffuPc/+ADp29ittvrqbrnlloO3mZv88WR34UUXub/+9a9uxIgR7vcH/l6TJA+QDZf6Jk5zvohjvqqP/BIxPv2L+o8eW06PnTNrtjzGXF/Spn6B1fMzbX78AfkZ6d+kcSO53pyM6puaFhc9spDlzPFlUEIRvCEGMABl5XPnzvv/fE/yfJu2bV37du1MAKLbgCyDsvK//vobd8YZZ7g333jT9ezFOv50kL2G1amadGdh8Sf5SamLkH4fvPe+m41y36FDe9fOhlVYDX8AAxBkRcy/Jl+CZh3bsAreEAMYgBrls26TesP6GVxE5Ndffe3OQBv65ptvSBt6OtpQ+QryZyOf8pxQg/q4/TCvQzQkajKf/rDgR5lYlzoE9WP6KafBlkGVkx+DHh0opCbdWdhIycFIZb/svfeQT9EetEW6t2vXNmUX1sgfPY44hWh+8zX0iHz6xlvoi/TwfZHUQ9rUhaGUQQlV8JlbsGChW7hwoVwC0rARyr6pk9UpzYULFjjm51po45Zv2MgIsKC6MLgyKKEK3hADGIAQm4gpG8NEWBV2+P2Tekf71xb1Q7u2qB/KVZjiqfE5gAEI8u9GX4Tt8Kvsi7yOvgjeRS//RbeBXgYlNMEbYgADEORHzE/HvySy1nEIlHP33D3WPfroQ+6VV19zf0P/qhnjJHqKDhRSk84tbLzLwTLUMihhFrwhBjAAQVbEVORbXfwc+u+BW2f925lcxfQ3z9aSm2f9e5pu24GDs/4Dtsv69R+Q9erTL+veqw/6sulXlVvVpFVhNVMX1mY5LKw8VVmVQRtQGcrKUj41A3MJYDksrIz/efkLFizILr30Uu4ayo499lgVnJv/eflRoI8/tkhn6LBk++yzD0j/9/I1PP/4xz8yXIGcXXnlVYoKaR0QEkJvs6mnsJqW38JvvfVmtuWWW7JcZfPnzxPSNVdfnS23XIPs/fffh/2/F38G5uqrr8oaN27CHRNZ+/btszfeekvCuNlmmwmOG61WXW31bOZnM0U3M2fOzDbYYAOJT5MmTbI777pL+Mv9PPXkU9mKK66Q9erVKyen2tpll11ED9TN8o0aZQMHDsw23nRT5I0OCNfV4mbXXXbNGizXUPIuOhDCs8kmm2Ttcx76OH78hGzVVbtImOjXqquumk2YOKGMzFS+Z/D6Z57cFLJxgDzr3Lkz6oTIqxDNc889V+R0As8HH3xQNr/kgmuUPxHhW2ONNTJ03P4r9c+zzz6brb322lm3bl2z4cP3yjZD3Bs0aIC6eED29ttvZ3PmzMlGn3468kCt7NLLLpe4qB5oUVjNPLIlBvMXBq8hr5cwLEX+X7hocbbpZkib2rVD2qhcNemvpg3Tj2njP8th4Zy8FPLVlZp0qbCa6lupaTmqMkxmZAcddFDWqtXK2Q477IC/7bMWLVbKOnfqlJ166qnBX+uP+qAmaQqrGep45P+0jlcO6yr13WT14K9yTEDZ6tCxU9anb59sjz33zOrXr59tt912gc/6rm5S03JYWLn+e/UfBhzSDo0YwXbIf+VDmGULFi7ILmEbmutX+dSka/rHOqQ28inrB68ky+HhNJ++/18p/3l0YZTXP/PpwcinrVu1zrbfYWi2w9AdshYrrZR1KuRTG7vop4UsR1XGfHqZ0WN18sv5kPrkORR3ww03ZC1btpT0uemmm4xz5ciyH374PmvevLnUc8ccc3TOUz7+xoOyeV19VdPyp7DlsLBypfJnod719UOrbCjqh6HQfYuVWiI/dcpOQf2gn/qkpuJLzcjx9tuxL4KJ3Zw1lR+5o0+KU5MUhdWM3EXIclhY+f49+W++9Tb6Vz0k3WOc1G+aVqaFleffk1/OR/XZm5bDwspVkV9T+0MtqdbULIfbsmdvGT/2xThy6222y7YZOCQbNGTHbMjQnbKhw3bN3HaDts8GgNC3/9bCuGWP3sZr42WQEgAS/+UvuAYQYPElt4lhKRZPRkv7l8VH1/Am9cnKsRSLX3b5OAMrhfGEE0/0gYa3VkqwCdJScjigAvCvRx4u1PXuu+2eXXa578CGABEQBuUKiOgw+OBd/au/wWcABx18sAw0e2AgGAT8B+T/6ZQ/Qfe1Msy4Suiff+65bMDWA7LPv/jCBD8P2X9AvhEStQc5ucTs2muukbxx2mmnJfofue9IGeA99vhjkRmuZkyfnmHve/bRRx9Zr8vCG220UbZV/60CTWVSOOGLL75IBrS33nqL5wHy4IMPkvA8+9yzwFVlFynPLbeJnYyHHHKw58GAiR8rqzZt2mRt27ZLBolCND+UKR+AACsCZtf1uoq/Tz31lOdTLjCzDHXq1FHCO3funJz+rxlBJoBddt0VA6dOJXLSkOUurMN/TWTCTW+uvuqqrG6dutnlV1xhaFXZY489lmGFVtKEhMlTJkv6X30NBv3LKP855vVtBmRffP6lyLLeBNhSBGkpOQyja9dukjZPh7QRh/Lj06YT6LVkkBwpKRR8BhBgYcltYliKh2+95VZMDKwJTktL/f4pGwfvWDXOWCZmTJ8RfJo9a1Y2YMDW2QorrJB7b2XkcEAFoEQcVp8k/idqHV/CYUIPb1KfcpsYHl64aGG2cquW2bHHYXIyJz/wwP1Zs6ZNy/i8dKjcG/EvwOI0t4lhKRZPRktbOpnkuhV1Byd2gmsAhPfYY4/sCmmHcooYOSzeR7y2oSfVoF866dp1PV+HPK11iHgkP1htl8EaB6yzkR/iF+WkcbR4ctuwRdcK3Xor47m6WkvM4BpAgIUrt8GYM2d2tjrz6cbIpzOnez+AnzVrtuTTFZlPl/GjFLwsIPoJfRHxK8pPQ2bxZMzt4ib9uf/++yX/b775Zikht914440i98gjjxRvUp+sHEuxeHpkaVGMrx/WiIhqoOAaQICFt0rqrdUxqbvRRhtmM2bMyH2oymbNRv2A/sIKK6wIXOqqGjHVok/+05+k/Vq4wPdFImPurxhWhsWT29Ki66WFgmsAARbHuU0MS7F4Mlqal3oK4sTyxP7VT33BNYAAi6PcJoalWDwZLe2npJXSg2sAARa23CaGpVg8GS2t1P+fwgTXAAIsjnKbGJZi8WS0tJ+SVkoPrgEEWNhymxiWYvFktLToP8eNXKjs238bGWhui4HmwO2HYqA5LBu6Mwaa2w7cXggciZKxB0am/Eq8A8LiSkfBhqqgmJgxEB/tTynGUgmXcABhcb9E+SyMvhNiY1KMubeXcPwK4h9jikodM7bYkiKz/9TL5MmTIxnQzxl/zkSmFWGJ74lsWko4gLC4nzP/zZ07N2vYsGG24YYbhnBQFra9SriPOhqzv0b+lVdeme20084JbxI6DSjMTTfdJOu3VRxoekfKkGW33XabyHj66aeDfy+9NF5wRxxxhOBuBQ9XXJ965pnA8+KLkcf7VoXVuW6y2hoUJYR/rfxjC2PWoH6DbOiOOwZZAsCvRzAQa96iuYRt1qzYSVT5wYFH5CqpXj47uZ07dwnOLKBeBBwQFres6Y9tcFnDRstlJ55wQvDaAvvvv3926CGHiqypU6dKXK+99tok/cm/rPK9LBsTKz3CJRxAtMWKe/0G9bMdkTZF+Y899oisVrCcYfuiEVO9/qO0UqgofyRWvZqaDnZRfpI66ljMKH/kyJEZdwF8/c1XJQInT54sKy045iA09SIwAmFx1cmXOv6EE72zgvzgV+JTxFqITt944w1Jf04W0InKP/TQQ7F6tySwe7xSgVZQzBj/4CAwREwRUi8CHgiLqy7+wq+MYnr53D3TrFmz3DtlCL6XACUcQBDHXUFsQ2uSj22OyKcNsh2Hsg5J4//oo4+iDllR6jOuGlb3VSdf+auTL/FsmsdTPEnle/clvqu3Yo4cuW/WmPn0668jHk7oavIUn0+//DLSvG/+VxwoKGZ5+azPl2pCREMAv9RbosrF/7rrrpMyxDLwFnZleAdR/hZbbIHdO42zI4/y7Yp6Xc60soT+E/JHjhwR85c6FjPKj3KUIWIIsX5oKnr/JokraVM+npzVx86Qr77O6wfjhQdLECXxpz/cNcE8vOgnBmXGNzoTvyyunP49o+cVWBwsffyDe+NFwMGv6uSfcuqoDKdv4kBTGf+P5HtxKtQEviJflGE0kydnKSakc3UccGJdFfNfD+ya8wNNrGhih+y2WMAcOJgDzZ2yHbCiGZ434Zm9KlwKxDMBE/iOJur0mm7cy7DzGdu6UKeU+9g+kqZmzqNWNQ29xL9fofzaKI0nnHSiO3P0mV49iP/kyVPcQw8+hNt+F7tevXq7zTfbzCsL8f/iiy/cY0884T7EGa5dd93VYSAiNOQF9/Kkl92rr7ziunXt5lZu1cphNlF4eObr5Zcnwq8+brXVurh77hnrPv30U7frLru4TTbZVOS++sqrDltKcZZqsTv44EPctE+nuZdfedn98x//dKNGjXLPPPuMe2nci65FixbuoEMOccs1iOfleL7imWeecS++9KJbfbXV3DfffOsuv/xyhwZWzp7mgYdRc/pfhjNy//jnP9wRRxzp1lprLXc6zjT96eQ/eef45Q3IkyZNchMRz549e4ksnrdkXLDl022y6SYh/2mYXnrpJYdtm+7bb79xV1x+pRuxz94I0xkSp9NPOw3nQxa6b2d/51575S9u4ssT3EEH/R5nnjqKTOa/D97/wD30ENICZw579ezttuzeXc5Jsky8/PLLEm9sb3XDhw93jZZvJOeZJ058WWjYngp9rwZ9M4xTEcbd3KabbpzrIY+W5ns1Tf7fdbdd3b1j73UfT/7YdencRcofOhquZauVXaeOndyUKVNyT5zDVmB3/AnHuyGDhwiOZ44Y7rfeekviv+OOQ12TJk1By9xmm20OuIk77thj3bgXxrk111nL7TR0mGvSlOcwM3fXXXe7Pffc0z319FNumwHbiH+vvvYK8uEW7tRTTnGjoDdsz3XDwYPBqBswYIDwvPLqK677Flu4P/3pFIeVWMFhSy9uGquNM49/g73m9BeyiT/1z//YTup+s+Fv3H3QBdN6lTZtxG/+YGuv699/K3f00cc4dLhc506dhVaaPnvizK+P32effS7p89e//MWNOnWUu/WO293ihYvdQQf/HvHew72CsjAZ5zSnIs0efeRRnH2tK2eI9v7t71xTnOddAt0+/PDDju4bNWqIdN3Vrbnmmghq5rAyKXmQPAx3v379HFYlJf15fdzWA/q71VdfI4Sf8Tvy6CPdpRdf6r786kuUr+agUU+Muq9PmebvvPuO69u7j5s2bZrr0Kmju+7a69y2224rZXz69OkOA2TRkda/n3/+uXv88cfdhx9+mNcTvxF/v/zyC/faa8jrEyc6bMNz7dt3cNNmTHOTJk6Ssjdq1KnI0886lpsVm6/oDkFd4M+IMkAILOqr8MG+FtPmN0ib++5zn0z9xLVtE8+L+bTpj7Q5Gnl1suskaQM/ED+svLsnUY9N/WSq23SLzdz2g3dwyzVsgLPHi5A2k9zLKEM9e/dE+VndjR3ry/jOw3ZG3vV14STUc0cfdZScpcURBAnS3iP2xjm8Bm4K0u5B5H3mAZZB78bLlQyV63fWd9+5Fs1buEP/cJi75KJLcrUrn9f/M08/47pv2R3nS5s4nh1nmD/46ENJ841M3ct6ifXvBuuv71qt3Mrdh7qXZYj5guedTzzxBJzJPwvhrDn+SmeENP0lcoLIUI9961ZauaXribN09957r1t55ZUjOc8vRNRU/hlRHFGQuPCcX+9+fdz0T6e7/lv3l+Qdi3LGMzWsTzfeaGP3wrgXhN9hA86+++6LdGooMjGygJ4fRB3zttQxQ1HHNEUdwzxKfVDGKLYdaBteQtvQvPlKaFt+j/zUEGUsT7+/ve4uufwyBNihvdjbvf7G6zhz+Zak3UEHH4SQ1kJ5Y1070T3z1DOomzu4PffaC+e941k+r98TcV7zDOGXwJkfto1rr72W2/A3G7l77xvrpk791GGnhedAcgwcjDqkH/LpMTafev3zXN4jOEP3l7/+xTVEuHdDm7sG0pSfj+fLiKdvI59+5mk3Yfx4t+KKzRHPg6XcMJ5HST79m7vs0suRQlU4X70PzpvXl3wq7XyGfNoD+XRz5u00/zH+3zGfrtTCHXbIoQ5bhUV28Yf18BbdtxD9893ziYW2aXm0Tax/Xp40EWmDPkK3bq41+wj33e/22Gu4WxN1Ui2c94/51Mf/448+dk88iXI6FeUUfQVsHXUN5Mx4MQSeX+sfpfLuCd45cNZZZ6G+OdhdceXlIPk6hHckXHbpZe6fH7zn1ltnPXfzLTeD5uPPsvvwI6xj/4o6tpHbZdddJIzMoNOmo2+COuKfSf7y9dWh6Js0aLCc5C+v99edrx8yt8+IkTijWxdlI5O28W22jV1WdUOH7eSasG2QYEX9f/sdylqLldxhh6F+uAT1Q7H+Q2ip9+7oE7A9Zd/pFeT7p1FnaJ+A90ww/01C3TBp0qvQ+3quVavWUm+z/cSODDfq9FHutFGnOQw0pa1hQGqKP8SWfNj+LO31JKQ76+BNNt3Ubb755sLn24LH0BZ8jLZgZ/QZNxL8p0jTSdDjh5M/ciefeDLC/ZT04bp339INHjxY+h2PoP3jGd69fruXWwthxUQM+l+T3Ivjxrnjjz/evfPO29JerLfeeo7lfznonh/LPfsAPKNbD3cBSO5AGX/woQdCfbHTjjviTgXUq1985l6e8LKUMbY/t92G9hjntH+Pvhjz00cff+Swa8PNnzcfbefqbgjyIAb/Isf+lNSXlhjKVUxfIatVzcBXJj+XSX8roiI/Hf/xMiD/Zibf0ayNv/o4h11LLgUi3m273RBZ0eyHJU+OSLfs2aswco3j2AihOBW+EloBUbCKa8GVIVhUubNaBdHRL0uwngBfsEY3ZQgW9XPKR0ZNZhHRQcpWab2KnIc7Y/RozArVyriFkfLRccyaNmuaoYORXX7ZZTgfVSu79rrrJdw8z8bzRaiHs969e8u5KdzslHEFaptttpEZM54t2GCD9bPf/e53mOlbAefslsu+++5bcT9s2DAWtWzYzlgVg7Bbb71VzoKgw5EdcMD+We8+fbK+ffuKP8cdd2Ta9jsAAEAASURBVJy44c/06TNxpq1dduABB2Z33313ttpqq2atW7fO0BHPXp40KfAJYJUIhLVSp9wG95e//lUI6Lxma625VnBPXm5z22ZbxAXh3HHo0Gx9xOW3v9tbZi0bSly+E35ugWOYDjjQh4nnA1uvgjA99HD2yis+TKdixo3+cGsHtyd27NhR7O+8+24I2Nh77pEzJrfccnN27nnnCf3iSy7Gds0lWc8ePTKeZ3zyqaezHoBX67JqhgY14/ZN0Tf83gFhRMfT63uFZhkqYWx18mFkQG38JeCKywkPPfigyDz33HMC77nn+fOIaBMzXAoj+I8//hh5prWcR6I/PHODAY7IxyBXVhTXWXedbMGPC0QMzyzhBjBsn9wmwwUlOI/WIuMZS27Doug777hT5KKTLfz8OfKoo+Qs2IcffYj+ZVV2F3mQ154yPGjYMXtdP8PgRtzRL8afaRkQHipnjTijGEysZN27b5E9/+c/S5gw+SDyycywbLvdQJwHHS+rEbh4wPuB8DFNdkb6cEsn4VWRL3EpjdAfeOAB5I/24t/AgdvJKjrz+Zw5c7PduaLZCWe58H3x+eeyItuxYwdsFb4443mT+T/Ml/LFszr0Z2+sqvH8123YHsdvzJjzMzSsskr2wrhxguOW32ZI/2E7Dcsw4SA4/mg0uW2TZ2ADTgmC8T+KwuBXwo1GOlsP2wF/t/cIWRFoglUBroLzk3oCWynvve8+X0+gDrnu+utE4OPYcu3zeq1M8jr4WdZbtWqFrdd1s/0POCDr09uXdTTy2R//+EfxU+XTovUf02aL7ltmf0baMD+ejvOj+jEPbItzg0wblrO/vY60yT3hdrqWLVfOrsGq7M033ySyN954Y5yVnCNbFzG5IW64+rS+lJ/fot5D+WEZR/mh/MewCrX5FptnjZZvnF1wwQWy1ZLn8R5+GPXnKr7+xOUw2HaM+hNbbOWzkQDiEfjBsHH7nn7CUuAj7THWvdDpffffJ2fr6S91SlbKZX6gX336+LoXDWl2XK474k88CSuaub81xb86+TZIPC9GfTdp2iQ76eQ/ZehIavDF/Knyz/NyzZu3EP1fdNGFon+GEZML2TfffpsN33O4xOWiCy8U/yZMGC/bi8mj+scFLnkds2PGOuY3OCO+zjrroD5dIPpmfsIFPGg7kJ/YdvRD2wH3xx/v89Ojjz6Wbbb55hkGQJJ+mJiEHhdnO+Xt0M5sh/AxrXv02FLKMstRj549si5duqAu82WZeqG/5bbOqs6++Bx1yJbdsz8/j3yKOkvzKenMpzzfqvkUl8OFdPph/g8Sdp7ZvR9lfcSIERkuZZPywrCx3KyM85LSRu7v49kvjyfLDf2XfMp4Nl4+u2AM8ukVjOei7CG0Ra3zfIrBWN7O3+qziAacQvBxxZVx1Hyq5Y+0AqtgWN/5tukpaafY/v244EesmCGf4lwn/eqNMt6pc2c5pqJlnHjZOpt7+oCU05YZd0/cdPPNvpxusjHaiVkULV+pfKX4sPFMKSYasl69e2FlsCnq0HmBYa/f/jbDACzbCrtrhgwZEvyb//180Tv7K6xjR4zYW86Cc6cNv1tuuQV9E9RX9VhfHejzV59i/npU8hcu0hO9X069I/7Mn2wbh6JuwUU80h9ivmWZ4SfxySP1GPKo6t3Gs6z+8zZn1113ySSfIg26QO/Mp0xvnqelX7F+qBvqh1O5ognaQoSPcn4q/uXk90X8ee8C63eassMEfj1h6i0M6tFWod7CKjO/666/PltppRYZBvKyXX377XcQndWpXSc7/PDDUaZ/I+UXk5/Zb/KdVa++9qqUc9Y/26HtHDR4SMZ2HxfLSf9zyZLF4rfGSVdpeZ66X99+CNdQqS82gN9r53r37XE70cF2uBMCA2UpU3PRHrNt4Z0dV19zjdS7TPM333xTZPDHpktA5kAJrYAoWMWV4MoQLKqc/ouyabduoueRs4SubsoQLOqXIr97z94YN3DrLFY0t8WKJsaVg3Tr7LDdcEZz4JCs/zYDs77Yg94LGXhLOIhfEuWIVsiSFZer3JPwW44HBbX8V8Rbu4Vz12VQKtCT8FuO578kH7NXvpGEfKw8Sqf/wryBZ4zatFkldNTZIKy/fregps1wGQdWk4KdA6BGDRtJxcHOBy+2YWPJyp0DVszEolPymcSfgycOFMaNe9G7h3ysYGSYhQ/+HffH46TwX3TRRQHH83DsOOSOMtyci05PrdDZYWPKShMz2sGNKrwm/T/15JMZB0P6ycAO4fvLX15TlJgalzXXyuMC7C033yIdr3HjXhBRZ55xpoTh8898B2zMBWPE7ge+Pv1HjULlDv9ZufO7GHGkXS8s+eLLL2VwcNhhhwqdPxwQ/BE6+RI0DvgffPABofGCHVa8mHUX+RyQUN9rYuD8xWc881mFDjX0DR4Nozi0P2XyHzsHzSCHnXB+bLDat28nDT/Dqp220aePzrC6431D9DA7igZkJcRtoeCuueZqkf0QBv8MC2amkac28Pz4veP224Wu+e7OO/1Ac9jOw7JDDz1EJi06duiY+a20PhXvvCvnQcfwsEMPy7qg08LB0tNPPR38JbDB+htkG+Syakp/9CgTd2rhxU2cBGGZ5XkuXljFfM7vqKOOlEmCd995V/TPy3TI9+UXSB8MCh584EHhe/LJJyR+mOWHHQz4f845Z0t6H3XU0dIZwOy48Pqts36gefsdt8vZHJZL/c4++ywZWM6dx0EdPMKH1SU0jm0EJoqdaw40sFonuOkzpmdYocflJUwPL98z+99G2CLNy5zKf16G0qZO/UTiwo7bbJwT4nf1VVdL/F999RXx3tcT66sTubSH9YT3qQp5/WLpcH/w4QeBh5fVME8lZb0zLpzBwCn9Ynhs2qwpadMhW7JY0+aokDbM988++5zInzN3doZVguw4njHMv+eQbuS55tprBDNfy0+hjIfyk7vbf//9JJ+rP99883WGFcrswgv8AIl4dlqqy3/+Apha2SMsF9XkP03j4/94vAx61Y7VJzkbp7J5xo0dNta/rHdY986fP1/IDLds7YRtaeKvfnoz6lvt7Ghcf8P1cjaZflMmLzOTD+w1lf8ZyIvLN1o+0b+Wfw40+bEs0N8rr7oSNi//uGN9W/ADJlr4nXY665gWoY7RM+WczOPHyUj6cfGFF8Pm/ejYKc9PeZS4JXwlXKoin9H/iiuiHRo+XNBYgZeyjJU/sWtZxuox7N4jtj9hoJn7Lcz5j+ZT7DKQs5Id2ndAcms+PTp7HBON72BbJ/O/1CG5u7NRR7BjrhM4RHPQy3Pn/quSeFJ+KDeQ30niqW1klu2X51MfNLTzX38jutP6ln5xcgS7NnJ/rVElF2pRBidvNc6eozSyoe7DJCU/tk1MB+y+EW0tqVos+YUDfN9H+AB9BKQpdMP469bZOZi0WqnlSjjGcowXhV/qhn5dg06//0rl50kS3OyEbXJY9cruuOMOcXvd9ddKFL766kuZNCDjzqjfsSoY3Jx9NvVeOyvWsV7vXmb5vgnyFwbQ+u2/3/5ZS8lfqnnk29NGSf2zCGed+V1zzbVSdz6MCf7ip5O6Xu9KtXGOsPQJkjbnSYkvdorAYZXcJcCL87ADRuqHDz5A/ZCXpVGn5gPNPExLE38fGi+fA+h6mNQ58sgjRLdvvP4G4nmasBx/3PFZt7zPSG7pM6Jfr9/hh/9B4n8dj2Lg06MZW/Xvn30//3tgqmQgyUlyrDKKnfpgXvn97w+kE/n0TOZdd94l9jjQZP+qSsLDi6sWLlogYbwWdT39ePjhR4QfK95i56CVg3Pc7uv9xV0avOwMN0yLHTvOMuwsEVg8yqFgxCQJKOXzJPyW4zH1j3EIsMhs7RbOXZVBqR+ehN9yPL9C+Vv24EBzq6wP7vrRy4AGDtkhG7LDsGxHOaM5CAPNAduGW2e5oploRxTltcVfD3lFR2yu+ISquNxRtcqFnwmtIEWEREke+mXKZ8Uts90IPrYpSOXUsVNHGVx2XW89rBCujpVEVp5VGbZmYOZtYfYObvUac8H5aPDaYnC2bqJhbKtCxb2TV4b8eu1wJuiYY2Kj8dKLL4ksrubph2102V577eVdQf9nnnEGeGpleL4COO9Pv35bZZtsxIGPt/MgO+Mwbfqn4u4BNHB+0MWOAD+bOh4T0CaNhwwejJWg+rKauwoG17yEg/6wIvR+RH/wBEt2zLFHB29eRAeJlRbjQq5T/nSyD9O0aeL2Qa4Mgs7GVr9TT9FZRN/g3Igb8hhXvUwHWwFFPs2ifAqZj9vy5s37XlaNdtt9d/GfK80+lFUyI+f17THsxFFP7NTIR7SJv0fGX83/PN9Dd1M+mZzddfdd6Pj3leCssebquBzCX6TBCYS33n4reLsROiwc6HCVcgM0MmuB3mXVLphF943ppptulm2FdFT52LIpKz+c0eR35515pwCND8M9bRrT1sdDGADeeRd5asmqCPWv6e+5Ii/lhxVNcZz/kGUp4v8UBq68ZIjyz8dqIWU+hnLy/fx5iN+mGTuPUz/9VPTPlRWVz04+0+f+++7N9jDpo0G44vIrRK/vvPOOosTkQJNnPk8++eSMF2ywA+Hj7n3eYovu2Rook6oPYi/F7gLmL2xTFvlvY3DMNPMrJ1UZthFlXAlPPhP/9hg8Fy/z0PT3boRZQGz7k3x55VVXiJ2Up3CWlvKff/55kb9k8SKZoX/77Xcwm896ok227nrreq/we8MNN0r4Pvrww4DD8waiW1zdLzjK3woz/xtvvAnsUb4n8rcKM/dPZwcfcohQzx/jV/wfeexRzMgzbTaR5J2Wr8Aybfg9w7AiDe+4/Q54QX/pUxU6hCthtjvWW8y/x4b6qip7afyLEsfHHnvcBwduOFBh58X7wvrzEeHphBVoHCnIsJ0rWx0r2dyJUfLB0Q2Y0Wc6laQNw5SHzbtj3QudLlyA23/fycacPyZr03aVbN287lX5vGFzJ0zO5AHMRaIDDxlaxy9t/IvyEz9FYJWsAN6M1Z0m6OAy/fFEguiipvJ/G1bhqH9sCWckJYxPPvWk5Cmew+ankxlh8ApfR53mJ+bY/lDIhhuxjqmbbYx07oZVZ078caXxQawok8HnJ5d9L22HeCsrSZvkk2b0Y//90okCz5Xh9ur2uHXZDzSJm48O77zv58pq8u677yFhxRZYYWcMrH59jPyvMEAQdzUcggkzfmPO93UI44+nnHw+BQ+25Ite7sGuHH7UP44BSB0rEWaA8V2G257ZLr2F20L5jZZy4xC+vNwAt1W/vmFykG5lQI1Bm36hncfEnORT7ExYfbXVkE/7KUuS/27ApALTN+RTCUqMaRpb3ORKfSFubLv22B0rBwgv2yb9uJuAuys0/RXPfKEDTa7KMZ4cIGr8WU45MbATVgM9Tinqg8V63BaYkOEZZ06acufMxpis5Xf2WWdjgvhmgXnB3Tq4bVs/bAFGv2c1tcKswiWFuF1Y6ti3RcgZZ46W9JqLeGr8uVK50SYbCz8dU+8tMRliP2x3l3y7Ceq19XF/ALa2S9tYHGgy/bVPwMvxNGbiVzX6Z5szF/mAbc7ubHOgv/vu9fmU7lg/cFAd/MjL36mY9KauddJ7aeKv4WFQ+Ndvq37S59h7nxHZB+/7QRrlsC3g7oO3MdgfM2aMTIiuu+563hHkn3TSSaLXJTKIpIssw1NiGY47eAt+L7wQiwfQvZ5FfeHPL4gdW4RFNuVjS7bE90AMBOl5HGhiYIlvQ1ymxDp9U9QX62PymZPwnJzWPsmVV7A9xi6bvD3W+k/7TauvsVp2w403eB1Vo3/KEVL+S7tiPGx+yZjr32ADqPI9QpgDzXsfJXkocqYyLTV6IX78yuVzgbI3+qthRRMLmIOG8IzmztnQnXbNLwPC4c2+W/tbZ7v3xECnoGujsmrBxEliKXVSQiYizzABFKDUbXWYxM/EUuqihCyy5CfmK28tdVwNJvEzsUQH0kjyIgOg2JFmhYMzMnnUvUD5xQ/OTUqniVs9bkGHgbN3hO3XEgPN/TCTx4/uvA8ZbrSsl3FWWr+JWH2jbB1okq8dVst+mw806dBX5ugsYFVUPdsaeUJX2OjXu6gY+AQDZ+U+nToNW2+HyU2UeoOaylf3Kt+a3PrZCFtcvsaKRPjgsG+/PhnOIGEWDDNp9Cj3jFuV7PZdnDcTvUknFGzvYIWLM3CnIEwchHBFrOt63TBT5is9ymDlzvjrqt/1MtB02cf5ra2XXHyJVKZsrEWskU/3XH1ZETfOHX7YYbLCKOl2T2zM69Wth5shj9MgZxMnvOz1ja0t5b6C93lcq2TbESvg8887X1Yi2Znmd8qppyDOtbLrsQ2mOJDj0yjrruMnIHKVJfrj1ll76yy3DfGijN3QKeF3J2YlqZunn3lK7OXifwdWPSmfHefqPrpjJ1TCV4ggOx72K5BD/LnN7/TRZ4ids/Wc3cT5EVnRuehCdgD8lmrq/yqs7Ol3LWaqm2GgeGiePtTh2Htio3/FlX6gifON4kTl74mBZtOmzbL+W/WX9GfjTJr8AGBnOu0EZdJYUv5dd/pOKtm7Y0AqW6ewisnOzKzvZudxIjX9cNZS9B2ffwE9CDUgcDrjLLfO5t5wgEn5zz33vGCmTZsu25S4NYn1RO/evdGRWzfI57MD7DjopAodaYdZVjeIgCycJ5WyHoIiAIn+u/mmm7H1erRYvsLKU/36DbLBQ5A219+QMW3Izls8mZeuuhJpA8Qtt90idq4W2299rOiuseYaAcUbeI/747Fipz8TJ6T1FQkH7H8AOr6xAz/mfN8hkvoTdLrjn3yJxaNwfk7CwjqthCwOvWv+St2LRpP1LbdM9u7TW8qY98n/sgPP1Sv91E/G/8QTTvqX4u8DHuVrALW+Uhk0uaWQ6X/6aT4tair/Z52DlQPwcgucfk9iNwlxOGMvKE5m0H71NVeJnaHAWWbB6RZDvKtbEn/1j6buKvk+X9Vl+Lfuv3U+EPCcfkXTp5/qihSZ8BzOCU8f/6tRllfAUQ/unOA2TobtnrGxLNMeVjS91/KrfrIOGX26r0O++Ir5FHWI5NPr0Yn2q9+aT3n7szrusmpnKesSitwzdowpT5+Q0gF1KDdwvDVWjDiQUfkSzxYtNTrS4Wf5G2vioLxeOH6D0Cyb9MqrIpP6W5qPq3Rsm1j3cXs6wzuWbZP46Qc8Np/ST5KsHrndnGG8HbtdQlAAcOcF67Ol+ehuVQwYpdMOy5FHHCl+ckIE53/lqAn94SoW7pTQ4KGOXTVbbdXVQBHJ8ssVbYbvrvzpLtZXbH+Ket9YBpr0lSvJfiJKLPQKf8s3Wb6kz0R6ThZW+QHilVcnicz+XAEsYYisClHvK6yIfHrY4RnO0IvbkE/hnqur++6/r7IHUwdlfscL25ifjn9wnAPfffsNBtbYSVO3DlaD68guLwb5U0y2c6KN9T/TtBfqLdtnlIEm9MoJW/Lz44T/MUcfA8hjLkBdTt1/9eVXQn/hBT/QfPaZZ8XOH07asI3ddz8fv1BfoP3j13j5JghD2lcVQv7D29YpQ9tjL9rLf/SxxzEo7SJ0TszYrdvWjyJM1xonAYKlyFkmeYXXOwhgDe5LfSz4Sbc1uC8hC693EEBvLSeqLI7swUliKWUvIYtD7zqA3lrquBoMt8721K2zAwbK1tntdOssVzT53gmXOvtunZ/RxJ7v+FFaLjE1AotHV0NULpBj1iYy5y9gPbvSlC/121KVI/hXJHoPhfy/IJ8dhBPktsmq7A6sJNF+GPbHp5+PxFaYtVoTnTGeM+DHWUlWGjaK7Hjtuy87Ozk2N2SFwLzXKR03NCQ8Q+K/KplJ3nOP3dVl6Hxy9Ui/rbfuL9sJxQ6/OVu5Kq5d/yMGVbvttpt0wmbJzX2pfHUfTJBV/5w923P4HjlJsRzM+UbyiSexihG+KsyM1fbv0uUiJmClknrjWRZ+X6JC5FlRDkZ329WHqXib4CiuaCL+nO3jd8ONftaYs4H0Vm53xPbX/TDrHnRJRlDHj39JKj1W3Pzeftdv3dSOA90Xw8jBMCvSR7HiI5+Jf0DkhDxaYuN2FT5nwHTlFfl+y1dV9s9//lP847m1iy65xHuR/3IVnGeRZMun9Syny0ATK5qqaTmfBP4LMHPJ+N2O1SaGlStl/rOeEEZezbdCcebbUsnv7f4XF1OVDIR/+OGHjLdAfoPGMX7qi4bKU7g1+9rrrglsu+22q+iW+X7Wd7MET5d1MVvKTh8/rsww/BwQMDCcJaVd04c8V2BlgukfGrY81FwB4BY/blPeEudsWG6eez42qLvssrP4JSudeZBvyTv6zDP8iJat6ZA5cp+R8gabEOwPmDSmuhUJl7HgmYHFeUgiMy6ywuDtekHoapO8aZrLfzYMNJ8THu468PWEX33iRIvtXMhAE2F774P3gpDRo08XfXA1MvcWA80Bsl1cU9Qzk+o5OJhgx1/5Wf6pr7XRoQhnkUEkTtPm7//4u+jvkIMOhjt1yc5VZznHpFqR+grlV2WG8vMoJ1q8O26N4zZL9UXzpK8/c6wSc5+CATzlb4jzw8wbuKwmJ9lQ+UmEDz58X86Rxbq3SiavtOOkIlhGWV94e46FQf99HZ9lSxv/EE4BVEKGd45HQOd5ecjRWv9cjHPE/Goq/3yeiOG5Gu8Ua0xloImy8BLqNWpFB5pcqfdflazw053ubuFTG+zos46JoVNuTFwwP4H/e+wq0I8D+g033igwcbDTHOkXEAJUYcKzvZwZo1XrJinLsHMbJv2VspwLxgUxyY3NHp0TYUgdgnyqn+RTdMbXXndt3Ibs6xDGm530M88YHeLDp44oi9t39eN9CcRJWYffnGihfG731q8/B9RYwZEPPBxoMp/qF/LpHw5TFMw8vDAVisQqqUMp1+fTnMMYXJHjsQ89a6pPU72DFfigr9xDyafoI6SS8q2zJxwv8v/+d5RTxAuXGpmw5eV0h+29T0Z+DKvGhNtFl8gAQWmyJRv5jJN1J594UpDPnR+4pCdnq5LzuKJ39C38VyV1udf760BVeb1DHzymovpi/uLxFm/3K8kccNtvdbShPNbC7cvF+Kss9Y92TpKyneDKmtI1hhTEiYf3sTMEl0CJnplP6T7kUzO5KX0znYgCk8qXgSZkcMcEsbxb4KfiL2HJA/oe0p1nMfkxD3To0FGOmNDOnUucGNAJKu64kLYgl88JGspCapEdH8tBuvtNVjTB48tBVfbCC38WN3qHA4Oh8b8CA0baT8VEOP3VyX2pL6D3r/UYSi6fEvldfoXfFTRj+jRx77FZhkuYMAheLNt2TznF+3kjVjbloyB8ueEtwV4NUbkK8qMvmirKSNNKIJz6bamRO+UhPvlATiWpLynWu1EabYRze2p41kCthqhcIKeScv4C1rMrjTbCuT01PGugVsmRy1698zOaGE/ySGZ43sSvaA6WgWaf/jijCcYeGJkWPyu6SFsae+KelhJEjkrw0edq0JHhJ6DEPS0liP+8fDbSLIwHHYjtBpCPGwVlyyj38fP6egYJt56GbQy8wIFnGYjnTFWXzp1wtqN1OEPC2WYOPHjw3H68RIdy2ODp9yi2cBInDTg8XIyr8XmujQe8VRm8AIY88f0oPI2BrQ9cqWEY+F2JlaGuXbtKx1wQhe0AvMCADTsrdvupez7tgBvfsocefNiQPXXGzJkin5cF6Lm8uYwLKizOVurHVdkQFyC5WsUw8YIkfuk2CEHJbC/dyEUaEHfeef4cJ2dbNf643RQdoebZWzh8Tj+4/Y/bYWWrJNzqah47MvSLlSxnWOfgQiDaD6ghjN+hg8MLEGRrEqOrCpHgeYv84gc36Yl/V6JzqB9pv8FlSPXr18u3dyolrtbywiRu5+Fgldv9JkyYIEybYUWTh/tVLwegw965UxfZbkUGPdPKA/hpuKKMMRdcIIP70OmNpADx3BofF2cnS1dCaHIVmFseOTNJHdyJgW0qJ8afF8Ocj+1u+v0Zgyqm/4G/5xad+OF2PzkbScyll10q+iqXPnpubhTOsDCNtMOo8nmRU3OcVebH1XCmP7d14gZNwXFihg2xvjfHyw8GDRqU9e7dO+iTjBxMt2jeXGSoW/Eg//ExzC1LqrL99t1feIfvNTzvzGPbE/Icbl+V7WYvvugHQvK8DeJ/zrnnBu+46s646ECaW3/lzBPccyWuc+fOckGXnjXz2wf9VkvxBIE56sijxQ9f1n3ouC2SM8nlPnJsu80AufxI6VxZZThwW6CixJS0wWy7frhFO2uJnQo6yJ+EONauVUe2/pKHbwbSHynjuaJ8GefFaJg8wEf0HzAhxzN03BHBsjkT9QW33OP2Z6k/yceOl90GRhy/3Fu5WKIF0niFZiuiA/WC0EhlncknhPbcY085M8RH5XEbI0jQKVbBO0Gnq7RuFdIq1L24FMh+rPdEJya//lT82ZFinSmdMg1o7inP37bCxV8Mg37sqLLz7rd511z+mf95JKNN27ZhRXvs3fcgjLVCZxo3/8qzNDvutJOcuf0HBh30nzycMOD5Pe4W4eQeL/cIdQxW/3lxED+uUpHOi9n043Zq+sOP0eKFI+z0T/7oY1wkN1bKDI+HNG3aRC7oIc+ll1wq/vjz4X7QyPJ/+RVXSl3LSZiifum//VimuSNEP6lDmE81TSgIf7EOIcJfFsWLUdgZ57cY548Hs6zjjgIUWfmOPvookW/bSK7WaTzJpPHUfPoZ8il3W/BMrz5T88H7H5p86j2X31wOL0Bh+88t9rxkLEfL5XMyUYu7FXgZ3WWXou7DoCXoC5NB1A/bJqYT8ykvztve5lN49vXX33o95lsfGe5NUU5XbhnLKY+e1MHZSV7MRvk3oW3fHRNzMqFJB4UPN7DKyqrW/ST37NlTzhPa/Hv+udx2X0vKL3kexWQSJ5r0YiJu6/R1LHfW+Zizb8L8NXNmMX91phfysX7gZIjoHXmcdTLLCt3xoj7NtxegbRw/fqI6g+ll8PfNN96Uepz1SqwfuFNjLlb9jsIWb6933Gwr+rNtDuVYvUvfLNe7l+BFHo6VesZf+iJALU38rftxyA/cZabtOS8C0l03bL+kz8h6C33Gzp1Zb7WWMkzpB+LCRIaT6c+P5zKZX9hXFBn4wU3zgvvww4+Eh/mPPJxM1Q+3UWcdO3bM2D/jh5t6xV+9J4N6p5uh0Dv7SIvYJ5H6An0SyBg1yk9M+claHzv+cteeLobgdmvx83ZMcnsOEbVMP4l7WkoQOSrBR1HVoCPDT0CJe1pKEL98+Rw3hoEmnzfhQBNbZ7cfOkyeN8E7mkNwIyVWNLfy72jyUGfJlxd4KijRUQljKSLyp2PqEs7IWELSCueXKv91HNhmgWejwEqVN8HyexGX8/AyARZ+XmzBGTrtqEoliUa2Ewo0B3xcqWDhXQl7/1kJ6k2axHHWiudp3sMKHS8aUDk8JD4enQFuDyRfQ3TKLsPMNS9yoZ0NP886cDDARpa4Nqu0yXg5zk7oeAgPcN0wkOOH68dxE18defMR14rLIX7eOsuKhh9XFenm1ttvEzt/NFmvwmUTTXDZjcjAoE63hZKHgzveOksa//ioOuPIuFA3bPAYlwnjJ/gzSsA1wiUX3OrDMFGnDXFJBrf18mKBVhiQa5h4JqQutrbS35XRWWQlWb9+fbGzQdFwcNWXN/aRj7dessPCGdSpn3wiaUA3DCO3KPEtvjrY7sd3t0TfDCPsEkYM8DSe7FzcBl3MmDFTOg1dsPJa7Zcr6pVJr8jWIsoOH8ofb9vkqrbqU2lsUNlQcAsMGzeG52ScW9WGqCvOpnTrtr6cQdoYnSJe7sTGmB9vLq5Xr57omNsXuVWKHRj78YZNXj5AvZCH2x6LPOMwMLL5sRm2FFGXTA+664ELdGZMn56tgEEd8eW+QQMHCS87C3wnlB/jwItnuGWbH99nxBMbwsf48ozxJ1OQPihD3MrJS3iY7o2bMn3qyEQBV7zIy3AwXdRvNtDM/8QPQ16nYvVNUV7kwMtj+N2H805ciWHj3rlTZ1n500GTMOQ/eHIluaxLaTG9Yv3HiZSrsG2PM7/MVzxLhCdssiHbD5HVa7rlQI4DHuZ/PC8kef15bJfl+3oMM55vkbNYWk90hHuuXks9gXqGZ4TY6a0neb0WBlfNsofRqaN+qBv6wfOcHLAw/rTzj6vSxW/QwIFCY9pcEdLGX9j0Llb4+fEWWTzxInx1MSGi57+5TXFb3ELHgTi3cjFcXBnlx4mnWMbrlCnjjeTyKtb/vF2X+U9v1+atpRyQM+0Z7hYtVkrqTxGAn6L+KZNho95ZD7Lu5G3J55zN2549d9Rpx4wTNaofbof7s9S97SDT5x2udLJzLXU8616EpTZWy7SOryn+DCPrTKax3mSs4abJ1W9ePMVbb9k2dF2va9YHW+MYB/1+qvx/hgvheNaYA461111Hzs4xjHHVhltlfceQk0TcBs6OPd875ACYK1PsLEodg3qUt5dLHYMbcFk+Y36qFfLTjsNifmL9w483ZNapV1fyHm9H57ZwbYcYP95S+YnUtZ0kz2pZ5ruGrP9/i1tLeUM7w+7b0L3FX/szaLCvQxwmJLSc+0uB1szeffcdSV3udtF8yrpP8ymJPNvIzvpGLOvopPNSLdZbzH8ST20jpdx8FdpIhol1LD/mUxvPhYsWIZ++JG0I22WeXbTtfAh/zKiC0nzagPkUq77Mp+tDxtnnIJ8iPPxEX1L3oW1aa23sjvJtE/Mf2ybexs6wMa/yXOSPWEXj5FVss2I+nYPyu+1220o/pBcm0mw5ZfxD244dHcXvJazw4RkbkdUWkxp4okZY2D7jqZKcvSobg100bDsZJg7O2cbz83Vs87J1rO+b1BY3ad/Elz++3czv8cefkHOLzBtH4KIc7lJh2eBKurSNqENb4z4InsdX/YlD/cn1r3rX+mFd0Xs3XCgHvWPGgWxe752lDtF82qRJU8mX1HtbHEvyene4bXVt6ZuxJhqJraY8CkQab2p+7dXXRHpN8ReGPL0p/K9/+5vI4UQYb1BmG8JdCvx4RIhtGp7Eim0BZLXEBMKIvfeWeomymUY8p6zljzuEzsMEAC8Eq5+3lTzGxIm7cUgjumF9gCen5HgM20KeX+e370iNUy0fp9dey374UfskWl+0yU4+6SSso1b5Ngnljn5ysUPLKePGRROuSu+Keod65WWVPyINmf/kg5FD3r4Uv5Ffa/dqHEXGUoaKfK+TGvS/JY5c6jua/dHe60Bz8NCdsqG4dbYWt87yLSa+C4QZe4ebBM07msgOqB3Lfcwp5SkgkKhfWabcNQy2suVZQBRCWaqIKE+B4P8x+dxQtXjRQofVEYQtc0vwlla9uvUlnIw/nlaQt7bQsVStCR8OZDtccuIweyTvE8q7gqu0gds6bgHemcQAQPgwY4T3pBrA60zeAESHTN5WQ8cQ70DWQtpWiRvyodGWNztxjpN7KAAvQbtcGxPHDry13ZJFi/H+VH3Hd55orwUa3zlCxStvRPK9zsMOPdShMXOYwXZ4ZsLhFj68fzfWYQbLoUMi7ztuv/32Pi55ImGmUpJF5WNVA2GpI+lPAmbW/btSDBPDibd3mCcxSMzjguyAsC/J47IwjwtWeOSdKjxijrd76joMAkyY7sUbUQPpELJqOcafwZH3fWrXRZoslngwTPpNwbt8K6y4osNscsh/2IripuFNR6zMOFSODmcU3Jx5c/E2WWt575PpisZLvOA7kixDaFDEpP7ROXYzZ8xwg4cMkbcAJeEZEsS7XP7HrDHe/ENeEN15BVJ/877/3uHRc5HDLO4pPuQMI2bafV5BfPX7HO9WtW69ivsWfjKRfR7zrnG2Frrgm0d1kXeqoJ9F8jahuGWmhQBcWiB5D40RntZj/mJeqy9pqfIZdwyeJM5o6Hz08gBg+y/exsvwvlZdCR9WNeM7myb+6BigfOC9JfDyox4pHwOYEGfiGR7mf2qb9RY6i/J+F8sGGkdJH74XiAsyEG+kD+LE9OfbTpr/ma/pD/MfMj/8QflA+Pjx/VbKZpxwqRYwPpZ8h6w53pVFgyt8XoMCyg/1j46ND6uPgieqkiIroNw1jNlz57jv8F4iGn0f55yPcUOHTfI/dYvOOILCN9d8Wdb8z3KCLe0S31BP4O1AdCalXHM8VBvpi4siJB/SXwfVsvwx/9dDWko5gB74tp6Wf9ZTPuooN9CJpj+RdaA/xmAO3lnT/MhgUwfM9yQyzEybXH1SZrBq5zoinuov65+FCBfOOEPfCBeiWAdpRbda/msjjQjzYzz5Pip2gagGBY/VgbT+ZOD0q0b/1CPL5PJ4ow0TCcodzK++/BLlbR7KUydJF5Z/PFEh6cG6vHZe97Jc4sxzrHuBZ7yYf34q/owEyz92QziWi1BnMhRG/5jYkbDyTdmG+q4lWGzUqiv/yoRto+5bvNH4/nvvue0GDXS4IE7e59T6h+83LkS8+C4o6zfK5HuOVoqXMdPhAiZkILQNoLK8MF+yzGg7gZsxxc52BRcrSXsCVkk/PEHhGiL96C/rHwzK8vzi2xi2OyzLGOjgHdum0v5JWcY7kBi0if6hYLRbVQ7PLNDb8EkdgrxC/fOTfINA+jqE7wr7D7dhIj/DLdjY/hX9wSBY6l+cTYUDr+UYzzpSluqiPSRO2g7EX+NOCTjfhny6vLwJqfonPuZT5jf4m6e/l0AO8+XpL/l05ky87dpY2iXlYAzpjvrCboxY9yHtWP9hICPlum491tsojyhnzKfMVwsXo5zm7T86/0n8mfYspxjcSn2g8adcaduHbI98OiQpf7b+ZxpgsEJ2iR8udnKYHBMrdcQw167LNrJK6ie2Pxp/vmW8Et66XZ51bB5/tjdsU6hn1t/sh0hawM46keWP/RV+ovfG0HvD+O4qPWddP3PGdNch70dJwEioQf/0d+ZnM+XtR0zAiP/2B2cspU/QCm0OLuiS+lf03roV0oT51Odr5n/ROxxTNwwz+x/YVYY0qCvtb03xt/oP8qGbz774XNotDBoDmgB1wPIS2oJpU9EWtEVsEVnVI8NUr0Eof768kI7/MFiWGVZcFOQwSeJw7lPe4cUCAN6NXVHeVwcb2X1awF8t/4w3yz0/6mHGTOqddaiPpU87lM28/+X7H75+pxsMLB12qzhMkkBvTFfVDqnxU/kRYyAS9SvrPHcNQ+s/ZQ9mnv8q8ssqMCn/1Jm8o8m2GvV5XWmz66L+RV5AWWc9XGvbQYO5ZQYNAjo2KNSseCe+NC7qG1AUFRNIkLk1MAfAE5SsZoGcWw3VgMqbonKbItVU5mB6gpLVLJBzq6EaUHlTVG5TpJrKHExPULKaBXJuNVQDKm+Kym2KVFOZg+kJSlazQM6thmpA5VUUO3/YZohH6q+RB+Nt+vMxebzl5TAD5nDVPx4XvwedLHS+4AnzjprqZ4owVAMqb4rKbbnBfIutgw6rQ/JgurqhRKyiOJx/cPvh0fHUj2KADNWA6leKym2KVFOZg+kJSsYbhm7kPvu40aPPQLi2KShEuYrh8p4ZamRQpJpBrgKeoGQ1lZoqxFANqLwpKrcpUk1lDqYnKJnm36GDffYZCR2c7rbdZltTqSgXmAyoXqWo3KZINZU5mJ6gZDUL5NxqqAZU3hSV2xSppjIH0xOUrGaBnFsN1YDKm6JymyLVVOZgeoKS1SyQc6uhGlB5U1RuU6SayhxMT1CymgVybjVUAypvisptilRTmYPpCUpWs0DOrYZqQOVNUblNkWoqczA9QclqFshi/ePxx2Hw94FM1EkHPTa2Qk/d5jZFqhk8VsATlKwmqVj9cAMHDpLH2nv17AmMoRow9algUz41lRxMT1CymgVybjVUAypvisptilRTmYPpCUpWs0DOrYZqQOVNUblNkWoqczA9QclqFsi51VANqLwpKrcpUk1lDqYnKFnNAjm3GqoBlVdReCfW4U4Dd+/Y++IEihKVOZieoGQ1C+TcaqgGVN4UldsUqaYyB9MTlKxmgZxbDdWAypuicpsi1VTmYHqCktUskHOroRpQeVNUblOkmsocTE9QspoFcm41VAMqL3ZwuK369XPYnu0GDNgaaFRQyqemMgfTE5SsZoGcWw3VgMqbonKbItVU5mB6gpLVLJBzq6EaUHlTVG5TpJrKHExPULKaBXJuNVQDKm+Kym2KVFOZg+kJSlazQM6thmpA5U1RuU2RaoJZBpoYUHLRpR4Gl7Vr18MkSh1Xj4NM/m2z3fZYmV6EGTnOoGNFEzMtE8aPUzllTe+/kVLgKqUUMdEeIAXULPhprZ6lesZSShET7QFSQE0rsAB7luoZSylFTLQHSAE1CzKt1bNUz1hKKWKiPUAKqGkFAuZAk7PMeFTd4XY1t3LLldx0rAjcd8997t4H7pMZL67A4pwX6iKupdqv6Gm0B0gBNa3zAuxZsDKMWe2VW6zsum3QTTpqDB9XNMfee6974IH73RNPPOHwcDRcFz2N9gApoGZBprV6luoZixRcliLlCxcE5N5EjgApoKYVWIA9S/WMpZQiJtoDpICaBZnW6lmqZyylZG7WrNnQwSKHK/PhVeQIkAJqWoEF2LNUz1hKKWKiPUAKqFmQaa2epXrGUkoRE+0BUkBNK7AAe5bqGUspRUy0B0gBNQsyrdWzVM9YSilioj1ACqhpBRZgz1I9YymliIn2ACmgZkGmtXqW6hlLKUVMtH/08WS3apfOqC9RY7LSjCQrMoE9S/WMpZSIuemmmxy297m7777bYWtsFKcsaiYSU4tnqZ6xlFLERHuAFFAzFZnYPEv1jKWUIibaA6SAmonE1OJZqmcspRQx0R4gBdRMRSY2z1I9YymliIn2ACmgZiLRORy3cNjuKquLnqUaRrgrpRQx0R4gBdQsyLdWz1I9YymliIn2ACmgphVYgD1L9YyllCIm2gOkgJoFmdbqWapnLKUUMdEeIAXUzAXefsed7nd7DXfX33CD1BtEe5YCowlgKaWIifYAKaCm8a8IepbqGUspRUy0B0gBNYtCjd2zVM9YSilioj1ACqhp5BVBz1I9YymliIn2ACmgZlGosXuWlNEONLmCKSvbMLlrjDuganEvLQeYMtDEdgHchOjGv/QivKVH/PLWT9eYjf8GBJ/a1BTHJT+BKkCwGT7F0eRXkS+6/R/Q/yOPPuKwl9+9/e7brkO79q4ZtlHssfsebt/9RjqcAYppJWkmiVfyo6nrs0uwGT7FLV364400d97557q333rL4ap8bO1YweH9Naxk7ueWa8gwpZ/6/nPJZ+70n/qspuJTM1AFCDbDpDia/Cr5/38l/2tSaPbWlPLppDY1Pbb4G6gCBJthUxxNfpX0r6Q/8sLPUP9fcsml7syzzsSWPWwNX5K500ef5g444ECfzcJvJf+FMic6qZS/Svn7ecofs5OWrl9C/4M7xUaNOk22vbK+2H2P3R2egvPFw8ZFyonGTE1BlvwEqgDBZvgUR5Nfpfz9Espfj169Zassjz9xS7hsm+VAM/+rte12OKOZLcL+d6wQYcWB54ImvDhOktj+aPJbXCw21VCxz1nObKFU8YYaZhn5wK7tZvUFTpmDk+g+kFSumoEgAM8sVuT7glrRfyX/VcpfXj9U6p9K/YvCIOVBmo7y7YdtTcpzKFZN6wJtXKX9qbS/2N3DflKl/a20v5X2t9L+igbQXPzaxj89evWVwWVdGWjWkTsMeL8LVzY5sSkrmv4iIGydxYqmXAYkW2fLN55pU+ptyinnZ1Ga1Ay8yhAQKZCQgyUAKXMZm3KqXDUDqzIERAok5GAJQMpcxqacKlfNwKoMAZECCTlYApAyl7Epp8pVM7AqQ0CkQEIOlgCkzGVsyqly1QysyhAQKZCQgyUAKXMZm3KqXDUDqzIERAok5GAJQMpcxqacKlfNwKoMAZECCTlYApAyl7Epp8pVM7AqQ0CkQEIOlgCkzGVsyqly1QysyhAQKZCQgyUAKXMZm3KqXDUDqzIERAok5GAJQMpcxqacKlfNwKoMAZECCTlYApAyl7Epp8pVM7AqQ0CkQEIOlgCkzGVsyqly1QysyhAQKZCQgyUAKXMZm3KqXDUDqzIERAok5GAJQMpcxqacKlfNwKoMAZECCTlYApAyl7Epp8pVM7AqQ0CkQEIOlgCkzGVsyqly1QysyhAQKZCQgyUAKXMZm3KqXDUDqzIERAok5GAJQMpcxqacKlfNwKoMAZECCTlYApAyl7Epp8pVM7AqQ0CkQEIOlgCkzGVsyqly1QysyhAQKZCQgyUAKXMZm3KqXDUDqzIERAok5GAJQMpcxqacKlfNwKoMAZECCTlYApAyl7Epp8pVM7AqQ0CkQEIOlgCkzGVsyqly1QysyhAQKZCQgyUAKXMZm3KqXDUDqzIERAok5GAJQMpcxqacKlfNwKoMAZECCTlYApAyl7Epp8pVM7AqQ0CkQEIOlgCkzGVs5OzZqw9WvrGSWQ+DS5hh66xsn8WlV7J1Fttl5TIgnMPjzWATX3oBTsP8i190zH9LR5FlJCeoGGCB8BNG8wmft3ju6IbYBFeixTKeJKjol0D4qci3qZsoK9V1Tqron/rK81El/0EZsW5Ic085W643kATCT6X8VcpfdTnI55aYZ5ijElyl/FXKX6X+KVfRVoOLZUkg/FTq30r9W6l/yxeXpK3JWRJcpf0p2/706N0HA0xcAoQb5HkBEG+658sUvC2a22iTgWYVts7yKYwJvHXWaxeqDoCo3dpU54KzhDyBolEjMbJZWcFJACryoQGrjYr+fZ4XnVjFmBzlwRqJhtvwBTAAwmdtFf1X9M8+r+QJmzFMjqrkP2qgRuUYbRm+AAZA+KytUv4q5a9S/ir1j9QJtmIwNYoHayQabsMXwABU6h9owGqjUv9W6l+tf3v27IPVTJ7J5FZZb/JZP9rr4DmfZKBZfN7EZipTGnPQU2vmia6K3GIv49iiLBx9UshTa+ZRXi0gkVugaA2MFmXhwBAAT62ZJzDnBTRyCxStgdGiLBwYAuCpNfME5op8qCKsSgIWvZVRnkVZOGpSIU+tmUd5K/mvqC2xl1GeRVk4alIhT62ZR3kr+i9qS+xllGdRFo6aVMhTa+ZR3or+i9oSexnlWZSFoyYV8tSaeZS3ov+itsReRnkWZeGoSYU8tWYe5a3ov6gtsZdRnkVZOGpSIU+tmUd5K/ovakvsZZRnURaOmlTIU2vmUd6K/ovaEnsZ5VmUhaMmFfLUmnmU9z+vf65o8s1rXgTEc5rxMiD/Tns+0FziFmH7bBWfOIEpK5ohjHqQ3UQpgAEI3B6oDk+q0tT8KRcV+f4iAaOvAAbAKzH8Vocng9LU9I5SW/BI+CvyeZGB0VAAA2AVJjrjsLb8p27U9Fypzbqs5P9K/qvkv0r5MzVEAANgKwzA1eHJpjQ1vdPU5nFKqZS/SvmrlD9TQgIYAFtgAFeHJ5vS1PROU5vHKaVS/irl73+9/MXnTephsFkL72nW82c2Cfuts4MzvpEoFwLJZUDYOruUlwGlhUM7xHkhSYiw5AcDdLk9FqWEMZbDUCAjZxFKXVbk+wqpon/RQJI5KvmvUv4w8Oc2V2SF9IhXklEq9U9QRwCK1W6wpxyV+rdS/7JDmH9J5oCl0v5X6p9K/Vtpf1AVVNpfrSRpJhWlsRbw1kkOpxz/3faXz5vwXGZdDDB5y2wdXAgkZzSxfTbcOstVTD/Q5IomnjfBGc0Y7AiVxDWNaSAX0Wr3pv0NTgAol8dFqRGy3AKnTgK5iFa7N+1vcAJAuTwuSo2Q5RY4dRLIRbTavWl/gxMAyuVxUWqELLfAqZNALqLV7k37G5wAUC6Pi1IjZLkFTp0EchGtdm/a3+AEgHJ5XJQaIcstcOokkItotXvT/gYnAJTL46LUCFlugVMngVxEq92b9jc4AaBcHhelRshyC5w6CeQiWu3etL/BCQDl8rgoNUKWW+DUSSAX0Wr3pv0NTgAol8dFqRGy3AKnTgK5iFa7N+1vcAJAuTwuSo2Q5RY4dRLIRbTavWl/gxMAyuVxUWqELLfAqZNALqLV7k37G5wAUC6Pi1IjZLkFTp0EchGtdm/a3+AEgHJ5XJQaIcstcOokkItotXvT/gYnAJTL46LUCFlugVMngVxEq92b9jc4AaBcHhelRshyC5w6CeQiWu3etL/BCQDl8rgoNUL/j72rALSq2NpzaaUUQVrA7gYVUEJQJBSxE7uwwO5+FnZ3iwHYLaEYgPFEQVQQLGzpvnDn/741s2bP3uccFJ7+7z3fHrh7Vs2smbVnZk+fWFrgdJDAzpIVd378DEEAqJSjJVoTKJYWOB0ksLNkxZ0fP0MQACrlaInWBIqlBU4HCewsWXHnx88QBIBKOVqiNYFiaYHTQQI7S1bc+fEzBAGgUo6WaE2gWFrgdJDAzpIVd378DEEAqJSjJVoTKJYWOB0ksLNkxZ0fP0MQACrlaInWBIqlBU4HCewsWXHnx88QBIBKOVqiNYFiaYHTQQI7S1bc+fEzBAGgUo6WaE2gWFrgdJDAzpIVd378DEEAqJSjJVoTKJYWOB0ksLNkxZ0fP0MQACrlaInWBIqlBU4HCewsWXHnx88QBIBKOVqiNYFiaYHTQQI7S1bc+fEzBAGgUo6WaE2gWFrgKAhXNHk2sxJ+zoS/nckttDyjSVoZ/3jrLG+aXVpRgRtnF+OHnLOXAWkSogRGCoQrOKeroD5MaTIpICzrijNJLUQg5g6VRnPCUVwOjJ4Rz+mg3lx/bn+WA1+oxENByctfxiaxfRyc1z9tPvL2J6xJRW1s1PK6Jibi5e0v2xjUo/z74+0Qty+0DRrkVJsc8/P2hxbI21+tPnn7m7e/vrGIvjEOjJ4RTxodwREuRZealbc//0/tb/sO+B1NnNGsXJWXAbnBZiW/sklachlQxVJTUe5+5iR966z7GKTfoh/lFrxY93JDcxH4AfDRRLhGn/ULRGJCrl9sHJsk2C+agQj8AOT2F1NE9gh2ywAFIjEhL395+UOXIC4Sofjk9S9v/313MZSPAOTtr5giskeoNxmgQCQm5O1v3v7m7W/+/UGbUTCJlX9//x3fX14GxIEmLwLiFtqq+CvjwNP/xAkGmrvijGa5XAJUjm2zS3Eh0Nv8eRO40LQHQMgxJ/XhpBhd8u6TgAqp7yTjp+PE/AAHQOUjgoAO55Mu1+/sEL3B8C4jy6mQ9xMbqv2CbAA0SEQQ0OF80mn4XH9iJ4XUd5aKn44T8wMcAJWPCAI6nE+63P7ODnn5S8qJQuqrhRLfcWJ+gAOg0hFBQIfzSZeXP2eHvPwl5UQh9dVCie84MT/AAVDpiCCgw/mky8ufs0Ne/pJyopD6aqHEd5yYH+AAqHREENDhfNLl5c/ZIS9/STlRSH21UOI7TswPcABUOiII6HA+6f4d5W/7HTrJFtnK2DrL39F0P2uC39XEgFPOaO7So5ct59ZZbJldWo4BJ1Y2w62zuqcDiQ9ZC4DkKXlk6UVxJXo/7UVKfLS5fpQaV2zUcsmLSEwvUBBQ28FPSpy3rQqlDa/Ugrhz++f2z8tfunqFyuLrmXpZelFcid5Pe3n7p+YJNgUhL395+YMFQtEIgBYS72fpRXElej/tRUo0Tgjk5U+MoZZLXkRu/5QFgoG07MDP+1+JicQ+aiTvp728/ql51Gr/Rf3v9tt3cquZVfhzJlVlddOd18TFQHpGUy4DksEmts9iVXOUX9FkfjXv6qsNYj/hJVDMJyycAnZEiIwah1UJ9WOewgkvgZSnvnAK2BEh1x8+qmoz+moh9WOewgkvgZSnvnAK2BEht39uf9+p0zJDX0uI+jFP4YSXQMpTXzgF7IiQl7+8/OXlT6tL8LWGqB8YEZDwEihiCyicAnZEyOtfXv/y+petNvn3DxbheD1qKUraaFlSefsDOxYYMSL8i+3v9ri0fLeOAABAAElEQVQMqDLPZGJFkwNNvQSIg0xun02d0VyKM5pc2XzrjRHu7eorjdKjJOcXMgop6RCCQcgi1/4kS6FANpIsHkIUMgopQTgBIPSfoH9p+VLzy6+/mMaNGydpI5TNBPAZM6abzyd9YapXrW7WWnstU6dOnSBoK6yZM2e2LFebSmWmerVqmF2oko4TGG8UXrR4EX4vFRc/2SWmbq262EcdT7sZM3/+AjNv7lyzGBdDLV5UbhZDvnxxucxWNGzcyKy6yqpRvNmEFiY9EjZffvmlOfPMM82Y0WNMrbq1zP777G/OPe/cWMTB2WizeAhRyCikBOEEgNBf+f7nzpmDiXD+lhD2q5dVcnp9a8kTBIsWLDJ1VqnzP1/+/9frf57/dNsTKmi2EmfxkoLLbn/iYH9l/S+Rq6Ce7XuuP//+5/W/RE3J1vcsHmpSIaOQEoQTAEJ5/cvrX17//rz6526dxblM9Hl166z8vAnPaboVTfc7mhxgLsHW2SXYOqtnNMN1aEkVTUNRrXZgRKCkouLzQRJer6crWxiOiQYgGuOWGGXH8jLdIfEyXCZGRcXn4z9H/zXXXmNuvPkms22bNubxx5+QtLkOSJJ/bmW++dbbzFVXXWkWLlxottlmG/PjTz+aj8d9bNq0bm0uuOBCs3O3nc2UKVNN9x7dzeeffSbm2HmXbualF18qsP/BfQ82Dz34MHSVmebNm5lXX3/NrL/uek43nzDRRZdcbAZefbWZi8EmiyEP9G688UZm4sSJMlDdZtttzJ133Anaxkn8Lugy7f/9D9PMJptuggHyKubSiy8xBx50oGT0l59/NvXrN6B2ie/v8P579OxhXn/tdQzSF4sNq1evYRo3aWR+/uVnDOLnm1Yt1zRTpn6ZLa3/sflnWahVq5Z7R/FT65d7dct8/67SM4t5/c/bPxQYNC5R8XGlCoS/Q/0PVUQzKD4fefnP63/e/uXtHxqCvP3L239XDPhZcO6/+PvXTn7ehCuaWM2UC4Dw8yZ6ORB8t6KJC4C4wuVWNPV3NKUuJBZgzaDTj6fD/rWnxqV+FFuaFGERGImvGKhxqR/FkiZFWARG4ssFfv/99xhstDSLMZCsUaOG+enHn02durVTccxfsMB02GEH8/7775sevXqYIU8OMdWrVxf7Dx8x3HTDYLLvwX3NXXfdJeEsBuVcyeR520qVKsnqYUvoUPfzTz+Z5mu0kBVK0mbOmGHq1l3FveRMnl544QXTs2dPCXrKKaeYgQOvNr/9Nt1s3aa1+QqD2iZNmphJkyeZlVdaWaP/Xf+E4483N99yq+nX7zhz8803Y7B6h5k3b77pP6B/0TKVTlKEReDvKv09AY1L/Ug+TYqwCIzEC8DLL7/cnH32OaBbM2zYMNO5c2dZLb7iisvN9ddfb2bPnp3ku0icaVKERWCB0uUlaFzqR+FJevedd8wJJ5xgFi5eaCZ8MsFxi8hGwZYP1LjUj0KnSREWgZH4ioEal/pRLGlShEVgJL5ioMalfhRLmhRhERiJrxiocakfxZImRVgERuIrBmpc6kexpEkRFoGR+IqBGpf6USxpUoRFYCS+YqDGpX4US5oUYREYia8YqHGpH8WSJkVYBEbiKwZqXOpHsaRJERaBkfiKgRqX+lEsaVKERWAkvmKgxqV+FEuaFGERGImvGKhxqR/FkiZFWARG4isGalzqR7GkSREWgZH4ioEal/pRLGlShEVgJL5ioMalfhRLmhRhERiJrxiocakfxZImRVgERuIrBmpc6kexpEkRFoGR+IqBGpf6USxpUoRFYCS+YqDGpX4US5oUYREYia8YqHGpH8WSJkVYBEbiJv4dTW6b5WVA+jua9GWguWQpt8zyxtkl/ozmCMThB5YaWwkFbuAZMQMYgDA2TShJH1ujT/uxpOcUIQlH6BEzgAH4j9N/wQUXmEcGPWq+nDRZsnDPPfeYww47LDKBNf2O62duve02U69ePfPtt9+6QV30Sk466UQzDiubI0eMxKuyZtas2WaVVTBw9O6cs88yl172D8FoiUsvucRchwHOjOnThTZ95gyzKgeaRdy4cR+ZLTbfQux2//33m759+8oLO+XUU821WIllMka9Ncq0a9fev8jE1sHYCSDQtliNHTt2rLn44ovNeeedF3GLJKAYN1KRCiH0iBnAAITYEspfX/7uuxfv9PAjJKnjJ0wwG224oaSDuwb23ntvM3joEFNZt9WmMkQkTqlnFiEJR+gRM4ABCLEllKIavCJ6TpLbnK+88krTBqvu3O6cbRL+av1RgjRJKVKuHxaQVxW92QAGYIXff8rYSXQpcq4f5tAlGlom2CkAgZRQIrG0NT0WS5YmCUdEI/kABiDXD0Pxm5VYJA17C0deLOnJRUjCEXrEDGAAgt6EkuuPbREZvrSxSwUQesQMYABy+8OqeflP17mkdBSWvrRk6SIpHIkoii2AAfifKH/tcesst8jK4NLfPFuGwaajVeJAs6ddghXNCmyZXYKB5pKKCvM2z2hGTk2mPlkKqx+JZ8BYIoZVDKfWsF9Kz4EXlyhdUYrJa8zOjyViWKX+f/UvxnnHFi1amIceekgGcFzd7NixkxmBVUo6pvC3X381DRo0kMZhwIBTzNXXDCxoKH7DgPGNkSPN7n36CO8zbJvdcccdZWA6fvx407BRI/PdN9+aKlUrm3KcvW3VqpUZcEp/c8qAU0UPz0uuueaaojFr/08+/thsttlmEu+DDz5kDsA2VzZU/QcMMNdfd52En/Dpp2bDDTYI5eC77741DzzwoJk8ebJZZ511DLfpNmvazMzEgPb++x8w5557rpk3f57phLxyda9z506mbdt2ov/bb6dhS+8DWCWdbNZed11zyMEHm6ZNmxquwr777mjz3gcfYDW3qjkOg+9rBg40XKk98qijJE3ffvedeVD0ThK9HBQzbAXK8biPxplxH39kxowZa0466SRTu04t88D9D+I86xxz6KGHmnWhixbX/HN78GNPPGG++eor4R15xBGmPt6DlprBQ4aYEcOHm6pVq5rtsdq8B2yvPDFK9Lj33nvNERho8kzmBAw0N8RAs6Jiifn5519NI7wbdZ9+OsE8//yL2PY80TRBujvhHXbu2FHYFnl4//0PJP8fffQh8nCy+ebrr82LL75oTkR+5mBVdBzeFQfwJ514ooQZNGiQ+fHHH81RRx9lttpyK/DGmKFDn5Ktr4cfcZhp3KiJqjbffPONeeWVl2HjMWa1equaExBH8zXWELu++uqr5qILLxT7N8IK9nHHHWNWW62+OfaYY2SVffSYMeZwTI7UWGklkQ+RFgCxhWJYBRP7k1Jc4u9T/11ONO8ux1r+8vzn7z8v/8VqSF7/Sw0UipWXuHVJ16hi0nn7m7e//zv972KtS/7+//X3zxVNDirdZUDutzSryKom7iqBb3bpsavdaeddbKcuXe0OHTvbdu07YBdmBf7UeTiQAqACy+WH0AACLDF4TLyYE9MpGPOWS3WsRaJJxxTriTkx/V/X//Ajj9i11lrLViytsCedfLLFANtWrlTJfvvtNy4zUIfOP78IPM5i73/gvkDPAA71z+HDR1icm7Q33niTC4vwTw5+UriPDnrU7rxTNztq1Cjh4aNl3xv7XsaSST6xohn0P/jQAxLH9N+m27XWXFvoO3XtmtY9bJitW6eu7dKliz3vvPNFBgNl++tvv1oMeuypp51qV1ppZaG33357i+249u233hb9w4cPt6vUZdgdEfY8H7a+/fXXX+1dd99l665SR+zQuGEju922bYWPpXm7YMF8iy2pti7CdhW9GnZ1hP3Fzps3z2651ZYiTzt27rSjxaVLtmatWjwGZmtUr2HnzZ8f8vHkk09YbGO2rbdubfv3P1nCtWzV0i4uX2Txkz+296672WrVqtvrr7/ObrzRRvLeLrroohA+C2CVWtLN9zjh0wl24cJFCHu93a5tWycKc99z7722evVqdps2bewDD9xvMfAXveeddy7GmBVI3zzbus3WEg/TvNtuvW2lSmWS/tNg0y23dPkjb8MNNrQNGzZEfDUkDqxu2847drbNmze3VatVBa3MbrLJJuGdj3pzlMUg0e6xRx974w03SBhszbYf/fMjpK/C3n777XaLLbcQ3Y0aN7KnDDjF3nzzLXbRooV413Uk/8zP8jpfyv5t9S/X798YDBFsISSPiRdzYjoFY56Pazm8EBpAgCW8x8SLOTGdgjFvORR70RAaQICF5zHxYk5Mp2DM85EuhxdCAwiwhPeYeDEnplMw5i2HYi8aQgMIsPA8Jl7MiekUjHk+0uXwQmgAAZbwHhMv5sR0Csa85VDsRUNoAAEWnsfEizkxnYIxz0e6HF4IDSDAEt5j4sWcmE7BmLccir1oCA0gwMLzmHgxJ6ZTMOb5SJfDC6EBBFjCe0y8mBPTKRjzlkOxFw2hAQRYeB4TL+bEdArGPB/pcnghNIAAS3iPiRdzYjoFY95yKPaiITSAAAvPY+LFnJhOwZjnI10OL4QGEGAJ7zHxYk5Mp2DMWw7FXjSEBhBg4XlMvJgT0ykY83yky+GF0AACLOE9Jl7MiekUjHnLodiLhtAAAiw8j4kXc2I6BWOejxQex40cP3bqsrPtivFkt+69bPdde9tevfewvffc25pu3XcVRqcuO4lg++07SOiC6ECIaegHB+fAAoIPUJEK5wJFsiGWNFAgAUJM+2/Vv91229kLLjxfMjtmzBgZAHAwgi2KwQDXXXe9dPxJf+qppxz9d/I/aNAjdocddrAzZsywK9VYCQOEMttlxy4IW2G3hc7nn3/efvLJJy5eDLxefeWVoC8L4LKhoB8XENnWrVvbalUwWEGcxx53LAZNCzEQcqFw1tA2btJEBh4ffvihxRZsi5tpRfYWDEyon6IceCb5dIEZtkmTpkLXsPVWXZXr2/bmWxjW2rPPPlv4HEzdfued9sSTTrRXXXWVnTVrDsI2Ed4H0IvVQrsqwlKH02vt/HnzLa5cFhq2q1qsZFqs5MrgifFhZVB0/PbbbxZblEXunXfesUvKl1is7GFQV8lixdkOvOYaGdz12m03kb/22mshWyZ5IsHlxhvEEziIZFr4V4Z4MNsjcIcOHSTEjz/8YGvWrCnxPPfccwxlOehmupj/l15+WWjzMRhmWNK3xSD1gQcfsAcddJD9/PNJFjcEh3ix4mhx+ZAdOXKk04t3dcftdyCOCvvIo4+6dID2yy+/CO2ySy8VGvNCt/766wt+DuxNx9wcd9xxQuvYsaMQNIddMdFQt+6qoktl1QrEvUG8n9d/tZvYJmWghJKFCsKAENO0/jGco0dcBcXP7a/mSGxcSEl4DiqQACGm5fZPLObsEllHQfHz8qfmyFoswQuhgjAgxLS8/CU2c3aJrKOg+Hn5U3NkLZbghVBBGBBiWl7+Eps5u0TWUVD8/43y1x5jDzfQ3Ml23QkDTSxgdu/JgWYfu9seMtDsJQPNjrqi6QeaYSSR2DMFFTNfIpCy9DLIKsdCnMASIC7JSQwBKpAPHAIal/qeqaj6Qe7/R/8H770vgxwsKdvatWvbWrU40HCDkY032Tjk4OlnnhY6Bxe4nTbQYyCb/2swGOrdu7eI9O17MMJj5QsDSmyllBVUvs9vv/5G9FMn6Ymd0vkf9/G4oP+MM8+wl152WUgntqaKDtX/8ksvBd56661nseVWVumo/7LLLhVZPlbHQJP5ufIqDKi9/V966cUQdt311vVhq0saL8VAiG7gNQNFBreeCq6PFxGW+WNeEr0ICzzRWwEb1xLaTTfeGPTWqY1VUshdd50bZD3zzDOCk8ZBJx1XVL/+6iuBOdgmj6unzB+2Pgu+0ko1sDK9VGTSjwp77z3JQBNbZ+3CBQvsNVcPtG3bYUUT+X/UD/4Y76effgpShQzSWS64Atu/f/8QpeYBlzIFmtpfeTcyf3AzZ870eSmzQ4YMFhq2UvsBrLFjxo4R/Uz35MmTbHl5uX3ttddsi5YuTzgrLGFYXo4+6ihJixscO7I+y5eUK1jE1wqmvhdRVH0tCGBrfkJkf8P6H7Kb5z9TIPL3n5f/UClc2cjrf2gKiwEF5SUlpLZU3zMVVT80SHn9K7BnXv5SJSqLFNgrJaAFTP28/IkF1Bzq/43qXzuMG8NAc+dudhcsYHbvtZtb0ZSB5i5uoNkZS56ydXb7HaLsowGKKlywT6pQOaSAlyFk0MTuRRgx6e+k/5BD+tqddtpJBgOzZ8+xs7Cid87Z58jAgKtY48aNE7tMwyoaByCy5bNz52Dt2C6B6AFc1GNx7lCwt99528WJAQu3Q1577XXyTrmCKPEibm6DlPiKRPoR0qH6H3jAbZ09/PDDQZNbL1Kroddew9U9N+CbiAETdcyeg79Zs5GWJHKcdRS5eOX2GlkZ1LATXViEp130vV999dUySKq3Wr0oNos8XRsGmhyoMQzOLEoc0gh61W4gVmZv8AMxGgi/QSppufa66ySJHKTT/swHt90mqXbln1tF+S4OOPAgiV/1LFy4QOzNRxyG+D133xPSN2ECB5IWZ6GX2J9//pns1Bbnjz7idlXn1lnHbU/u1q2bEGiH2hwsQ/8N2BaddTrQ1PzJQBOyzMvQoUNEfPz4CYKTxlV0Om7lPe/8823jRo1tnz59bKuWrUTmiCMOD3k5HDDD4PZjCZPNoxD9o4CXIWTQJL4ijJik5YABYrpXG7wCXoaQQSWc0IowYlKuP7FGAgWzB6CAlyFk0Nz+sIDYpIhhYlJe/hJrJFAodgEo4GUIGTQvf3n5y+sfa0GRihGT8vYnsUYCSfORehTwMoQMKmGFVoQRk/5b7N8WA80OsnUWK5rdsKKJcWUP3Tq7xz7W7IK9tF127m47deXW2U6WI9PEpbKckBWK2UrzJdex8CwmEw1eQzABssIxHsM+VBGSKnQsPIvJ/Bv0c8tiDWxpfWroUKQpSRR++9INAjA4OPXUU4I52PlnJ59/I0aOAD0JQ6EpU6bIuTluVaXbf//97Sn9Gd7JbYTzmgxbc+Wa2GY6U2T44PlG0nH7a6AlgAuLS3SCbh1oMo41sJ2UA7KWWNHjNlSqGjJ4SJDVrbKMbwZW1j6dOEGTY+s3qA+5MvsPrI5q/ocMScLefMvNCOX0z5o5S1b5iA8ciBVN2GbVVVdJkgmIq3VqH/xcSuDh8iGEnehjwopmTZzJlEHaDUFGBmeg6bbRodieTB2M7xGcoVXHuGhf/P6n8HgGcumSZAUTN7EKX+Wd7/JwN89oIj7+TZgwPiNSYd99993Av+vuuz2/QrYD08annXYaaC6uWrUx0EQ8N+AsZcqBHQaanjd9xvQQ72Ce0YXM+PHYMi35K7NjRo8GrUK2QDPOs886S6LcaeedJNxRWMVUd9hhhwptu7bbgeTSQt6bb76Jrd5X2Llz5qpo5Du58EyCJTJR+U+IhLLCMR7DPlQRksbhWHgWk8n1p80esKyxYjyGc/uLBYqYRAucY+FZTCYvf6HEpYGssWI8hvPyl5c/WKBIkVCiY+FZTCavf+lqF7CssWI8hn2AIiQ1uGPhWUwmt3+weBrIGivGY/g/z/48o9mh446WO2N5RnNnntHkiuZue9jd5YxmDww0cVFMZ39Gsx1WNFOlQ/LnMsmng1xGE6rPeIqrNB+oZOFCnCleRosoSTQ56L9PP27olDN5i8sXR4Zx4Nprry2rdquv3tD+9NOPYrBZs2fZddZZV+j4jU0MUJ+yCxctst/jbN/d99xt69evj4uCuNpYIdsfW7ZsaQ/Blll13ErJrarHHHOse2nexjWxXZf0ww8/QkUL7P/Ms9i66wcmF1/EAamz+muvv25xfbHwDjjgAKHOwmAMt7zKgKRqlcq2V8+e9oQTT5AB0wP33y865s2dZ6tWqSIyPGOpjqtvTZtp2Cq2Z89e9oQTjrdNmjZG3lzYs888S/TxIh7mX98/wzZBWOalCuJm2BMZFuc28ZMsomIBzjfiR2NF7yV+YD133ly5fImD3lNPOVXkeK61qZz3LJPtzCedfKJcRLTeeuvbad9Nw/bdqxGHW/Hk2U3moUePHnaDjTbEltjkQiG1EyPlxUZMG8NxMK6Da1GIB256xiVA2JILO2+99dZ2MfKmg89atWvayV9OFtEFOGdaqTJ1l9nzL7gg5J/MedBdGZcDccB4ySWXgFJhv/j8c//ujL3Vn3Md9vowkaHc0Kcw0QHXunUboXGrLG6txYpmS9GxzTZt7GOPc1u1tccff4LkoWatlSUPw3CGlO9AB748uxrnOQ1LFO7Bl5aq4xFPWPpWSRfhREBYjp/heFs4ngsQw0kULsoSPGpMpS2jRYK5sBlOrl9M7GyT258WiG3hLCJPKTgleAyVl7+ssRJczOZsJ2ZMOHn9E1vE5SqGM4ZKlbGIBzAvf7HdMqVMWI6f4eTlLy9/rD1RZYrhDPlvXv+4QNkBC5W860dWNDHQ7NGLZzT3tL376GVAOLzZCRd8cOts2+07OtuVsFlkvhSYqoQpJCUmSAFbdMnDvbYCgcI4spRUkBSSlSySPVEtjz9dPy9oWX8Dd9EKO/q8GZarfZJErJbhtyixyohBmAzsjG2AwebQIVz1tHIRzemnny6rgVzlws9q4PbWleyOnTvh4pgRIWMt1nDn6xg/L3Bh2BnTZ9iVMUDg+Tw6Dszwcx5hwFEZg8J99tnHxSFZl4c959zz5EZWxsU/XkTD1VV1d2P1bdVV6sqgpGWrlkIeO2as3Rg3mmqYZk2byxlFMj/44AO7Wv3VAq8MF9L02WMPZ2fw8dMjdpONEdbnv2kzHxbJ6devn7vsBjzmn4PISZMmiU4+eN5wk002FR51N23WzOJnRST/E7Gq2bBxQ6cX4Xmj7Cu4AInnOTWdlZCW/fbbX+THjB1t8RMk4LmB28YbbWxHc/UPjrfOclBarVo1CVutahXbDdsDeKuuOlrPWdDaXTGTU5kDXJ+narhZlgNzdSrLLbgHH9zXNsQ7b7B6fXm/m22+hX3zjTddHiZOtPgpFImH+eeA+mTcVEw3ceJnlrfBMr3kVUf+nhw82F+65PJQrUY1y/dVp67bKsx8Mw/csnznXXdhtdddRtSubTvb73h38U8Z0n1I30Ns+eIl9q233nLbjJEPXvB03333ie7dcRa4EbbcvvPuO4LzoXkSQgoJIgEoYJPgrRdAAUKQ3wVScaaQwqAFbNElD5eKAoHCOLKUVJAUkpXM2IpsUS2PBHRoYeASlJTKFFIYoIAtuuSR66e5CgxUaMMsJRUkhWQli0QvppdHbn+a63fsV2jRTJDfCV/AFtPLI7d/bv9MYSpW2gppqTKVQn5HVu3tSl5e/tQerjoWGq8EJWXyFFIYoIAtuuSR238F7c+ts9vr1tmdusvW2V106yxWNMu4xFmx1P1+5lL8mPxS/NbfW2+8gT4pHfvVdG5tJvIcGU9KuP50IhOYCkDIou+LDrGnuFAMHVMdU3nECNMlccdcchzuqVkmBehA/3fqL1+02FSuXsWUVRhTjt8qrVatKhJFW1izEDys9skPnRprxf5lppL8Jo3LHTNQht9MnGN++fUX07R5c1Mdv+OojlkuX7wIv+1YzeAnUxCjNRiQCBurogY/OxLyL+kQXXhjCFiBtFRGOH0rDLRkaTmNFfRjthO//2iRRuj0r6F80SIzZepUg8txTKPGjUF2hsfg1uB8pvxOqCQAD5RbswS/HVpWtZKpUlYZ8S+FdAXiq0Yu/rlSgcG3mT1rFsKuAbpLUXn5YommCnQzbxjwmSrVqsE6iaPmmTOmG5x5NRhwa1AqNouXlBsM+Ezlskqm3C4R/bQ/f1u0DDTmfykiqBbZ87fffjU4vyi/xcn0OecyvgT15Bv8bmcj/LbmyjVrCosSmn8RhygmFwy2KJuyykgpBCrwO7VL8fKrSZ4ZzIWir/n/Cr+PuVq9eqZ27VoSo0jZCvwGKvLA3yNCeqmf+4Cr4R3SruTxB3KxqmmWwj4qw9/5pAXLIU8a9Wv5o/1BQvqqmrl4V9NnzDJrrNGc6sy0adMMfk7G1KpZW3Cmb8GCBfhdzp9MyxYtES7k1PM1Jz4/mq3ADdH8W+sfzf3vrP+5/tz+efnTlo5tgjYUSfuXNBnKUzn6rv2NvCDupH2YOGiQAAB6bv/c/v+r/c+8/Of1/69u/9rv0Mn1tatWkb4vf0OzrAr7pu6vrFv3njxnhk7pUlNRvgSDiqVm1Jsj42Y6fBZSxOVAUu0/ETr2hMU5rjxTgspPPksJZfmgVLRE6HL9zg7+7eb2R5FIFRRvHnglyInA70Cp8ETo8vLn7JCXPykMUkZSBcWbB14JciLwO1AqPBG6vPw5O+TlTwqDlJFUQfHmgVeCnAj8DpQKT4QuL3/ODnn5k8IgZSRVULx54JUgJwK/A6XCE6HLy5+zQ17+pDBIGUkVFG8eeCXIicDvQKnwROj+ZuVv+x06GhxTw8IVBpr0/eKZW3DBogt/WJMrmuVcdYGPy07MW6NGii3Cg8tfWEmhxbHYldgoCJQGEiMXm72MwiWCEdGDuf7c/nn5y+tf3v7k7W/+/cm/v4U9hJKUpFuR9z/iNc0CgyWGKmDJ9qf8+5t/f/Pvb/79LfH9lRVN7ODjABPH8jDYdLs0K4HG3XN+6+xS2ZYXBppc0ZTBHdscxFzELatdkikADVM0uA+9rIKb6/emL2rAZc+y0LzqigbP7S/Gzctf6YYzr395/ZO2o2gDkrc/aF+LWwaMvP3Vr08JI+Xfn/z7g9qTf3/z7y+KQdF2NO9/eMMUtc5/3Pe3PVY0ZZusrmhi66wc+arijgGWdeuBrbNYxeTZraXYOrsEW2ffjrbO+k+C/3AkHwgpHWlm8nHxZlC2+kEgRYiQCFTZNMljSlRfhYPvGMpWP8P2aMSNQJVNkzymRPVVOPiOoWz1M2yPRtwIVNk0yWNKVF+Fg+8YylY/w/ZoxI1AlU2TPKZE9VU4+I6hbPUzbI9G3AhU2TTJY0pUX4WD7xjKVj/D9mjEjUCVTZM8pkT1VTj4jqFs9TNsj0bcCFTZNMljSlRfhYPvGMpWP8P2aMSNQJVNkzymRPVVOPiOoWz1M2yPRtwIVNk0yWNKVF+Fg+8YylY/w/ZoxI1AlU2TPKZE9VU4+I6hbPUzbI9G3AhU2TTJY0pUX4WD7xjKVj/D9mjEjUCVTZM8pkT1VTj4jqFs9TNsj0bcCFTZNMljSlRfhYPvGMpWP8P2aMSNQJVNkzymRPVVOPiOoWz1M2yPRtwIVNk0yWNKVF+Fg+8YylY/w/ZoxI1AlU2TPKZE9VU4+I6hbPUzbI9G3AhU2TTJY0pUX4WD7xjKVj/D9mjEjUCVTZM8pkT1VTj4jqFs9TNsj0bcCFTZNMljSlRfhYPvGMpWP8P2aMSNQJVNkzymRPVVOPiOoWz1M2yPRtwIVNk0yWNKVF+Fg+8YylY/w/ZoxI1AlU2TPKZE9VU4+I6hbPUzbI9G3AhU2TTJY0pUX4WD7xjKVj/D9mjEjUCVTZM8pkT1VTj4jqFs9TNsj0bcCFTZNMljSlRfhYPvGMpWP8P2aMSNQJVNkzymRPVVOPiOoWz1M2yPRtwIVNk0yWNKVF+Fg+8YylY/w/ZoxI1AlU2TPKZE9SEsA03eF4IVzaoYXFaqhFVM4FXlrhJsnd15l11xvXW5wc8tyEU0S8uLbJ1VramkRVqK8mNiVjbBA6SA+nHwDOxESgsWcrKUBA+QAupndMaoEyktWMjJUhI8QAqoHyvMwE6ktGAhJ0tJ8AApoH5GZ4w6kdKChZwsJcEDpID6scIM7ERKCxZyspQED5AC6md0xqgTKS1YyMlSEjxACqgfK8zATqS0YCEnS0nwACmgfkZnjDqR0oKFnCwlwQOkgPqxwgzsREoLFnKylAQPkALqZ3TGqBMpLVjIyVISPEAKqB8rzMBOpLRgISdLSfAAKaB+RmeMOpHSgoWcLCXBA6SA+rHCDOxESgsWcrKUBA+QAupndMaoEyktWMjJUhI8QAqoHyvMwE6ktGAhJ0tJ8AApoH5GZ4w6kdKChZwsJcEDpID6scIM7ERKCxZyspQED5AC6md0xqgTKS1YyMlSEjxACqgfK8zATqS0YCEnS0nwACmgfkZnjDqR0oKFnCwlwQOkgPqxwgzsREoLFnKylAQPkALqZ3TGqBMpLVjIyVISPEAKqB8rzMBOpLRgISdLSfAAKaB+RmeMOpHSgoWcLCXBA6SA+rHCDOxESgsWcrKUBA+QAupndMaoEyktWMjJUhI8QAqoHyvMwE6ktGAhJ0tJ8AApoH5GZ4w6kbRgPNDEL1XIhaTuokoMPrF9Vs5o8qZZGWjiFk6e1xz15huIlxHRcekWsB7OjOKPQCejssUXwxlZsuQrgdMxiECQII8u15/bH2UhL3+hKmj1StcexdR3tSf7DFwBAhaJKY0+XV7/8vqHspDXv1AV8vrnWgZtKdJYmup4yTNwBQhYIpB//2EL3+aKVfL2N29/UU/y9jepFqwScOnWQzH1nUz2GbgCBCwSUxp9urz+/ZH6136HDrJVVs5n6rZZrnD6v7Juu+AyIFuOy4Dw0xr4OQj+hMRbb4wUE8cPNX9MS151CS72WeN3ExEkcxAf4lpvXGkpHj7WVVxCqerHIaAj1/8v2582vP76682DDz1kBj/5pFlrrbUiI6vd1Y9YAHP75+U/r/95+5e3//n3L3URDT4X+fffdWHz/g86CqWue4+6EyV6GAzMnob3owCk5v2/f7n/pxYtYWFv9xLc3P7/M/Z3lwHhxlleBITBZSVsoeVPCPKnFqvoiiZ/n48/cbKUvysYbp0tXni04MW+SqJcIXJWcOcHGRUIhDSQYgckAGnhIphKql71g6gKBEIaSLEDEoC0cBFMJVWv+kFUBQIhDaTYAQlAWrgIppKqV/0gqgKBkAZS7IDg9y9RFrp3724+mzjRHHHkkeboY442DVdvmA4MTIOoXvWDoAoEQhpIsQMSgLRwEUwlVa/6QVQFAiENpNgBCUBauAimkqpX/SCqAoGQBlLsgAQgLVwEU0nVq34QVYFASAMpdkACkBYugqmk6lU/iKpAIKSBFDsgAUgLF8FUUvWqH0RVIBDSQIodkACkhYtgKql61Q+iKhAIaSDFDkgA0sJFMJVUveoHURUIhDSQYgckAGnhIphKql71g6gKBEIaSLEDEoC0cBFMJVWv+kFUBQIhDaTYAQlAWrgIppKqV/0gqgKBkAZS7IAEIC1cBFNJ1at+EFWBQEgDKXZAApAWLoKppOpVP4iqQCCkgRQ7IAFICxfBVFL1qh9EVSAQ0kCKHZAApIWLYCqpetUPoioQCGkgxQ5IANLCRTCVVL3qB1EVCIQ0kGIHJABp4SKYSqpe9YOoCgRCGkixAxKAtHARTCVVr/pBVAUCIQ2k2AEJQFq4CKaSqlf9IKoCgZAGUuyABCAtXARTSdWrfhBVgUBIAyl2QAKQFi6CqaTqVT+IqkAgpIEUOyABSAsXwVRS9aofRFUgENJAih2QAKSFi2AqqXrVD6IqEAhpIMUOSADSwkUwlVS96gdRFQiENJBiByQAaeEiGCXdz5vgAqCqGFzixlkOMGXrLFc0gbutsxhoymVAGGwuwWDz7TdHIChnipxzKr3iglyoVCnfhwNbIDzCbGaRIE46CUORFO1vop+D+u+nTTNrtGiRskIqr+D89PNP5rLLLjcffvi+2a3Xrua0007LjOJTwYsgiS0FwuOP2p+mfu31V83KK9c0NWpUNxtvuBH8Gn9YfzlWyKuiwD399DNmyJAh5t3Ro83Y0WPMqqvVi0pXkuQKKKyoqJAZkP+v8sdZzy+++MIsXrzYbLDhhrLUXxaGzsbcdvttZtiwEWbq1C/NB+9/AOPBKLJKn6R72ZBYXUQEwmPgtQPN22+9bWbPmmWGDR+eCk6ZxYsWmsW4mIs/eguLmHKcm65bpxY4ZRKmStVqQq9cqRLex0qp8IVIof4/+v41LheDj+dPyP+/U/+1A68xo95+S+w4PGN75pe5nPbdt/KbUDVr1jLVa1QDBWcM8B74g99sHytXqWqqVyf9j7jS9n/m6afNYNSL0agXY8aMMfXq1fMlLwlDDUsrgNulsjXlzyh/tD/L3heff4781TDrr7++qVbN5WfW7NnmogsvMB99NM5st11btD2XptP0B97/7behzsC2U7+aat5/7z3kwH1LJFfMCtDk65K2ocu5eyonRfsD+jWc85O4BMJjRfUvYZ1Ee/av1v8V1S9W+xfzb5dWmLnz50m7zPaDNlHHPgDzV71aVZCSN+Qs6J5/VvlLYlftzl+K9t/YClfWPeuv1D9o0GPm+eefk/o34dNPpR7E7X8F0jJnDu1VSSbhZ6N+0E7NmjeTWxbTqS+GebuBJRAe/873z8XDv0K/+9az3GTdn5t/9psuufQy8/wLz8H+lUzfvoeY4447Lqs0wv+4/vkLFsiCS1WsysTfVReDjwf1b8HCRSgD5WYltJ1V8C1YtivU/3vf/7j8MW7G8Nhjg8wLzz0v34oJn078U74/jLu8vNwsWrRI6j37X8Rr1Vz5/63+MQ2xS9naM0hbUr7YVEW/569uf0rpD+/kX2x//6r6F9swDbsckSYQHn9F/W/foSMGmLgECPWBFwBVQt+1EuoR6yhvnzX8Hc2uO+9iO3XZyXbo2Mm2274D+t5wKHXOBUDQGKvwiHgxQ4MGf5nMIBUpjcB02Bj7b9a/c7ed7aabbRrlnWCUOw8uWrjA3nDDDSwj9tJLL40lcImTCy5eFDQTaTreQmZEiSIBeNFFF9l6q65iDzroINumdRuLzqgdMnRokF+W/ptuusmutNJK9ptvvrUTJ35qu3Tpwt1Tds7s2SF8Fuiww/a2U6dOjhySEgChx9iy9KfjjkM5zuLyxXbAKQMstgLbvffe2+688862/mr17D777GPnzJkTXsXo0e9adMRt82bN/zT9b4x80zZfo7ndbPPN0sn0b/fBBx+0jRo2kndeuVKZ3WKLLeyM6TPs3Hnz7PobbCD0+vVXs+edd36SpsIsRnEvk1lcLgQJQKLLh/hX7B8pjcBIVwAD8Kfof/ONN2zz5msUsT2jd7q22morsfHKK69sW7ZsYddZZx27wfob2OrVqwv98ssvd2nxSRMvnUzhJ4/izImfTXT1AnUbHdig30WuoSvsDjvsYDuhbaaLY1oR+78xcqTdbLPNbes2re0hhx5i27dvb5nP3Xbbzf704w8WA2l77733Sj4HDBiQ0fjH9GPg7OpMc1dn0qEkGyUeUe4CGAAJE2Mrkv8Sij05ij2ADpg6ZYqtWbOmveW2W0MUf0T/u++Otrfffpt95ZVX7Lz580JYBT777DN711132X/+858gBaURWGE//fRT+/207yVIJGHnzZtvn3rqKfvIo4/a7779TqMs4iehvpo61W688SbSFrM9Xm211ezaa69tMYHI/od94IEHXPgQJAAF+v9I/jORFUlbTPJlnd+AoDYAf4n+jz76yG677bZS3iOlAfxy8iS70UYbCZ/f4BYtW9o+ffrYJk0a2x137GIxSemSmk5mnCnAy2RGspFcAAPwl+Q/Up5OZ1AbgJL6v5wy1dZcuaa9NaobJeNNMzJYpCuAARDZCy680LZt29bip/jsEUcciffQ5E+z/1lnnmFr1aol73ripxN92tL6X339NeE3bLi6ffXV10RGJNJipfMFzu99/5NICbmIx6XKqUj8Kf0/6Ws0cn2NlWpUt507d8b3sbldZ+117C233BL0O42amj9Pv8brY0zQYM8KK33JGuxLfpOqSX9F+xMSEOkPNACBTNgj4sWMOIDAy2RG0pFcAANQENN/kv527TvYHTp1lnEkx5McV3bv1dv26r2n7b3HXjY10NyhQ2fbVgeayFY6i5E9oiwvWyYJ4+QSaYESNAjGpBgOAgFw3GXLBGGfl0RaoAQNgjEphoNAABx32TJBOKWfnQssK8uHffz48YkQoDg+hTnw4UfuiiuuiGRXXD8jkdCqoCBWa1966SXR+fHHHwuXhZqDsXPOOcdLL1v/yy+/bLt162ZnzJgu8pdedpnEt2D+fBcfnxn9p516mj3r7LOFX4Qd6A5Ytv6McMr+2CaOSZWOdqMNNrTffZd00CZNmmQ3RKeCEwBff/11SN4BBxxg11xzzUyUK66fEe0M22y95VaZOBOT/Pjjj2Kv3r17Bxmcn7aHHHKI7Y1BwXRv14wJg2wWyKZW8CKBY1IMZ+PTlC5bJgnl5BJpgRI0CMakGA4CAXDcZcsE4dT7Z7ncEoPJ8IITMSGtWm9Ve+utt9p5C1xZJXvcuI9tjZVq2E033dQuXLAAlBXXz/gkNB6XsV6gwz8/rhcUgNO8nXba6fbss7XeOZ5yVUappXzKXXXVlRaz8JadCwnnAz/73LNS1oYMHhJ0YmXLnn7GGaWiA90F9lEUyO2///6pOpOVFrxI4JgUwwUKfkd/Vt7FlcQoUIIG8ZgUwzNmzLBdu3a1r7/mOpe/l3/szLD77bcfBiOd7VVXXmnXw2TVxhtvZH/95RfRxbgfffgR27BhQ/uPf/zDNm3a1OIsfLA/haZMnWqPOuooi1UT+9Zbb0k4fTz8yMPSyT799DPswZgIrF2ntn3v/feVXeC7vLgnmdtut52thngXSFm2MrnWBQOns0P7rjksiMoTsjGWknP0rDRWD+1222xrR4wYkQp46mmnIQ3uG5CkNiXikWyMxWQSWlZacK/gzLPOtLi0QoQ9qQBujYnWmrVq+rpvLXYa2QYNGtiNN9kkUbIMaFn642Cl9McyDs7GWCgRU7LSgsfKvHBMiuE4Lgc7Lp9SN3bqal8LdWNZ0lHoIgpiUgxrjHXr1rVXX3U1UKw1o4798suvylqm7+JKYhQoQUNYln+2x/3790/VRRXgJAMnZEa9NUpIRaJQ0ZTv5BLp3/v+M3Ai7aKKy6lyszIppRGS1S+4D6x9jX323kd0sp9x3nnnyTfhxRdfjGKJwWyMMa8QzkrH+mNpnyQhKcxJum7ddpFylshmY0w4xaCstOCqIAoQk2I4EvGg4y5bJgmVlRa8SOCYFMNJTAo57rJlVLawtEi4IoFjUgwnMSnkuCrTbocOdvuOGGjuuJMsXCYDzT529z321oFmd9sRK5o7dNwxWdHU+FihBdYogQQwAEHaAaXo5CpP/d8L8ffTf/LJJ9nzzz8PH7cq9swzzxQDpK3hbKKWmYuZaw40r7ziSiV5gVKhStEZTHnqZ6L0MZ9++um2cePGIu8kKyy2jtq777k7iSLE5QMFLx03yZdffoXkYUHovKdl0liICMCf//4fuP9+ScvLL78SFKl+Dvyx3G+33HJLz6uwBxx4EFY+o4GmCi9H/oMiH6Z7913sVlttHcghStWKjyjf+VFHHelDVNijjzra9t69ty1fvESlQvg0kI0t5ipPfcdLY2l5x4skAhiAOADgUnSKKU99FzSNOZpyHC+SCGAA4gCAS9EpVmF79OgO2+v7dUE1BAd850STHZSfPWeuXW+9dWXW/rPPP4ui11AujuRZik4J5Tmfq6PYpmixbSsJnoL+nPI/dux7GLBUkXbHRa/pcNhumNC46qqrgmau3rq2acX0H3jQgagza4f4EkD1qu84aSyRpr0cL5IIYADiAIBL0SmmPPVd0DTmaMpxvEgigAGIAwCusM+/8Ly8V04q0r3xxptSn++443bBp0//DSvJNWU1k4S777lH8F/8QPTzzz+37dq1szuhA8/yMWbMaAknD6jdaMON7LHHHhNoLVq0sKeeeqrHS6WLbMfbbbddMVBaPYQndcKET+2dd94ZaA74a+z/7LPPSL50AF06xX+NfrUD88hJHPz+Wybfijr93bADqXEjfg/hfGL33nsvi1MUsmvHMfRZOjchsEbig5QO8dfnn0n4b9A/7btpMgh86MGHfsdqpXOT5DQto9ixxx5ra6Dt40r/woULxTKOVyG7BlbHSibrI46+LMNqGptPZspzvN/7/idBkvd/Nr5LVaqinIboA5CIC1SKTqby1AcFoOtrHB3i+fbbb4V20UUX+hCJfIgiAUI4B0SyGU4x/RQpHSLJf4gqCAcgsBxQik6u8tT/vRC5fmepyF4BDICMG3fgQLPLzhhodrPdenBFc3esaPbBiubeFmc0e2IbAs5m8kIg7H9fuqTCvDVqJMsd/kqdpAALLi1ReLNeEhySfmNw4RbndCxJpBm6U5l6piX+O/TPnTvfrLPO2mbixAlmzz33MpMnT8L5v69w7Mfb2mdqwcL55onHnzTYNmXq169vMPAzV155pfg0At/ZqLfeMq+9+qpZb731zF577WlqrLSymTtnrnnnnbfNyBEjDbaGGsxWmeeefcbUrl3XHH/iCWbmjFlm8OAnzZdfTjI9e/Yy7du3Q2zRe/b6b7v9VnPcsf1E52mnnmrKsNc66yj6wvPPQ987uI12TdN5xy6mVcuW5qeffjJjx4w1b+EsXP8BA0yjhqubKy6/0px1ztk45/ihef6550zNWitJ/lu0WEP0j58w3nz4wQfmu2+nGcxog+YSgg6XweqqwcqjwRZCs8suu2CvflWDjwDifxs/xfOmwdZe5GeyGY1zbv1PHmDq1KmtwX2SEVdU/jbffHPz668/m2nTvg96vKCE67NHH/PU009JHlq3bi3x8xwdz3Ji6zDy8L7BCqc59LDD5IYthsVWHv8+Xsf7WNfshXe70sp6ftLpf334MKT3LQkzeMgTpirOxcVn2CQNLtvIfYWpVFbZYEXD3HHHHQYfGYPtdeaZZ54J5+m8qJk5cyZs9KL5J87V7YpzvPJOwfz6m6/N23g338E/9dTTzYsvv4Szoe8YdF5Np04dDW3+4gsvmAULFpqjjz7KNGrU2MyZjfLzLsrPGyPMgP6nSPl59tlncUa0jul3/PFmJs728fbhL7/80vTo2dNs3769Nx3Ouk6ebJ5/9nnEN98cfNDBBtuDhffjD9+bt99+1/xz3EfmrDPPNg88cL+pVWtlc/DBfcHXXIRofHF0dJZzdEbNq6Gcw64rObuOxfm/MXgv6GRLfh4ZNMh8OQnp6tHddMSZgaRYW/P6a8PMW6gXtOmQIYNRhiqb93nm9nf0M1V9+/Y1WAU0999/v8Ck0TGFc+fMMdi+aD755GPTEmVi7z33Ng0a1Dfli8vN7XfcLmdfNlh/PdOxY2cz9v33UKbekyN++++/r1l11XrmiisuN2eddTbOYH9gnmO9WLmW2RN1OdSL8agXH34o5Z9l4JtvvzXv4p1Ohq0x+y7179133zXNmjU1R6CsVOV5CLqUWa3ZpVt38+Zbo8yPP/yEtqCmk4kEv/rqK5xFm2M22XgTsVuNlarL+z/llFPQDj1upkydarC6bjD4CWFnoNy9jLqJ7YemV6+epl377YPJDzrwINRHV2eeGjrEvPfeB2bNtdcyhx6COoPzbj+gTLzzDsrEPz9E2T7H3M8yUbMmyk1f0T9p8hdot1iWFqCcoCw1d2WJdXw08ss2r3WbNuYp1EdsqTIYdJnGTZqibXke5+1GmzWar2GOPOpI367yRnV81/D+X3n5VbM+28u995RyNG/eXJTNd8wb+Emv4/v1MzOmzzLPPveMmTtvjul33PEGk214l4vlfPl7KG/U2xPlni5lYmDsBWtL+v5775vzzj/PYFurwfEDM2H8p2bjTTcx5517vrn44gsNjkOYk/ufLOf0GzduIvZogvQPvHqgOeXUU0LsWCVCfd3JjB071rAtUrf11lvLZQvYCm1+++0306pVS3Pzrbeao488yomkEgckav/4qeG7fOfdd8zPaKtp8G/QRtCO27TZDuX2NlMF9WP99TZAveokutlOMcr99t8fZzirwWZsI94wJ6BNwIqWwcDRzJk3zxwvNmsUjMMzjY/jfNnUqV+bbdtuh3rZyWBXi7n4kosMtlqaM/BdW3PNtUyXrl3M/Hnz8Q1AWZ/2HcrEWZIuZoZ1bKjUsU+Qz1b41u2FOtZA0sN0sW1mfenYubMZ9Mgg+ab26N7DdEQb55yV795Lr7xs/vnhR2gj8d3bXsuxNeecc67BJIucT5NI5SWmDCjvnPXw++/5zXDugAMPNI8+8ojk/+uvvzJvo1zWW6WeadOmtcFgyOy6264Gxx4gbM2rr7wG/jvyHvr02d1sttmmPhanZ8rUKbDTYyhrS8wmKCdXD7wK7+YXqfvM4xvhO/elnCc9+eSTTW20ybOk7Wcd/KfpiXxtjzpIN2f2HHm/I0eONKcM6I/y9ZN5FmdRa9eqY0444Xgza9YM8+TgweZLtCOuH9Be6v87aKel7T+lv7QV2vYf79v+J33bzzrQDm0/6wbt/957Y826OOvdq0dPg0GKeQd1ajK+ydgBhTbqOdT10aYZvgdHHH6ktL0+82bKlC/N448/AdsvNptsgnxfNdD8/MvP5lP0j6pVra5i8h26/fbbDY7zyDcRxxskv01QP+leffUV1O93cJq+ktl9995ms003k3bk+x9+MKNR7z/Eez/73HPMfffeDxvUMgf3PcjHnX7PfXbvY9bfYH1zOdrlRx5+xGBnhpcz5oILLhCbsz9Eu9DeWt/nzJktZXT8JxOkLvL732D1BokO1L9S3/9nnnnWTPt+GvJbDfY5wsyYOcM8/MhD6CdUNaznWu9pyytRTpfgHCUdUz550iT5bvCbexDaSbZ7dD98/4O8f/YZzkFduu++B0wt9IvYLmtXUwQRC/vkldC/w6S2ueP2O8Vujw56xByw/4HmTZS77bd3ZSrb59wT9XBlfIvZ33vyySdwEUxVsxT3SfD726plK/PooEdRzmbJTybuj7iwUwh9qMnmWfRhKlU2pnPnHc3mm+M9eSu+j+8j2/yVcUZ03fXWMbv37iNxv4e2j31dHOUw2AEiycbuM7TTzxnsLvLfh2bISRn6j99J/3fyJJQ9vO/n0T8djXrXtGlzcyT6OJWhOJt/1S8Rh+IQAGemIs+0RLr9l5ejhYNIpv1NokvHkoTL0JMAAUpL/Hv18+dNeC4Tu29QbnEus5I/o4nzmsSjrbNdsaLZOaxo6jieMwDJuNWN/sOzBCNLVtz58TPEBEClHC3RmkCxtMDpIIGdJSvu/PgZggBQKUdLtCZQLC1wOkhgZ8mK07/zztstZ/sJ82wOSo1FZQamUtiW89NPdl2soBxyyKH28ccfwztpD7kyi4Gm6ECFt9th69OB+x8gW1y5MsZzfBWgf/LJJzh/trnEy7OVW2/d2u6x554s5hYNkd1yi81xtuEIuxb24PMMJQ5/S5yxfhLQ2ONs2roSz+ZbboF0PMEJCS/rvP322VfOeD3//AvYIrajXXWVVbCV5Rf7zLPPyj5/5m3qlKmSsysu/4fEtfFGG9oLcc5iC2wbxQDa6tbc008/zWIAifS6VT5anTp5FuLue++Bre62qyB+dEhkppH79du3bSdx7rTTzrZZs2aSR271SCzp0qk4/aVLy+WsKTrFjhmeKmXtJZdcIvHed9/94GJFE++rIc5M4uNqe+3ay7Zp00b4d95+h4Reitta5H1giy23HG+J1TK+D7UXYz4aK5M8X/nMM0/ZY487Flunq2BVLd46m+hnpNy+wnfes2cPe9TRR9vNN98ibK8UpXwgCO1Xt+4qshLxELZE8p1ecuklIsLytdpq9e0qq65q+2AltM8ee9gtcC6UMsefcKLFB8wefvjhgu+3374ShuUHA3HJ30EHHYz3sZWUH6YFHX68ty2k/PBc18o4N6Hl5+qrr7ZrtmqFcyuvIn/HyeoZV4fpcOGNbYatgSwP3bt3s41wJqR2nbrBPiKUeWt8/86u29r9D6RdXxZ7Ub/a9fBDD5M4O+FsAPNy0IEH2tVXX91iUsRyRlbdkdh+uOEG69unnn7aHnfcMbJNbstoNbmUftIfffQRmSx8ngAAQABJREFUmUXfd9/9NLrgf/PV13J+s3//AXbw4MG2PVagpEzDhjzriIu75B0ef8IJEuajcePsVkg/7cBzTXRuRdPgHJirF1xJZxzjPh4nfNaLKtVYL1oL/sCDD8iWPZ4X7Iv3g0EIziy5enADtl7SpUuSwxsgTtku7LlZmWyoatWr4fxoV5zn3NQe1PdgKUdcEeWWQTqWu1XwDrkC9iBWGFimLsMZcjrGfSDeBbeF9urZy6JDZrfROoP2j27wkKGyXZS2wOQRykRDW6dOHXm3LEstW7WUM1DHoa5Uxiz++PETJNx+++8n9mN7syXqBLeSY8AuOxB69uhhd999d7tL9+4iw/OLdLi8xbbdDuUI9fPll1+UcrT5FluKLq44ss1hOhjXZpttJue0y3A2ul279ghdYdFZxTnZDiJzJbYfB1doRGFlycTvuftuCf/e2DEicwjKLleN1fHMGe3L+kinX53XX39Nyh9XpGM3aNAgW6VSZTlfuOmmm7nVTC5NwBXTn9Add9fdekt7OmzYMDk/ehDaOLbLSbk19gS0EYztI5TFLdFe00YYEFm1Gb8pzmabi824EwQTEUE/Ji9sK7QJp2F3zJNPPG7rYZWI7RB3BRyO83WMjytI11xzDerrN5a7aPQboPnHAM6uve462Mro6li79q6OsZ2iosMOYxtQJmf726ANYLlrgDYAHefQBoxjWcWWyztQVh9C/XFt5GU0iThZKapSWVHxVb++iR49evodPk5s+vTptjG+CdxKSYeBn8W1/lK21l1vPXm3tA3dgfgOt2/XVtrB/tjNxHzfcONNwuPj3HPPlbPguDDP58fYgdcMRN26C6ulX9u2yDPzyLqOS4gkPL9zn2A7P7eSUo7b4dHpD/c4JO14mehvjTKu/YCDUZ9Z/tkPYDtOe2CgJ30HbfvZR2Gbs+eee0j5w6SgfNOOODIJs2Rxuf0hqhvcIk6HSaOkjUK4rkh3u7bbuXzfcJ3IsBS6fLe0Lt+HCp9lgfnJ2v+TT8a79hQryNySfu2119pff3bb0PmdYrkbCvvxPdC+N954o+hh3E3w7WFZ7YZ2prFvZ5bgm512Dud53WnTptm6q9S1HTp0hIhLSTl+/49tM4+sMH5MOkr5Yxxff/2NfAcGYLstvwNt8a7ZhksZlRiW/f3HoBXyq8l3kfHNmTMX9eNw6CnDcanLQ32ScsoVTe8GYgsx6xfPiuJCJIuLF9FOjhd55pvb8RmHyze/uXWweul2Q8W55xZk5on3Yzz00EP2pJNOsly5Pffc86DJ5V/7OAfIt/glKedsf/ktno77I/bdd1+x8TbbbGMxUSQpxKQEVvwr2eP69bOYLLKY2EA/oIm96+677BlnniXtHQaCInvjjTdIe8Q2G5Matk7dOkLnzgdMUEg+pkyZIjR+H5jv1155VfLNowXa1+AZ8/oN6st5evZXWGe2w5levv/r5Pvoch7nXyINVlZMJZKS6DjRU0UiEsEsWXHnx884oEo5WqI1gWJpgdNBAjtLVtz58TMEAaBSjpZoTaBYWuAoSLvtO9gOHd0ZzS7RGc1de+9hd9Ots1124mVAO2OPbbHLgDQJUQIjBcL1H7hMWl3iU7IFSXXp9TKpLEXhHBg9I95/m36e8eKeczrMRMuH9ShsiaTT/B9wwP4YEG4hND5++fVXqSgcaDLrWJWQMzn82DDUIFwGwYZi0heTKG6HDx8hOFY5sc2yXGg8Y8jBGAdodA8//LDIYMVUtk6QpvoJUxFmu22/fsfZaugQsaLyUoSvcHaRPHZ4qXMsO054/xws8wIbrfBXX32V8LndhU471Homko05VnHlQ63FhxeU8KA/3cwZM+1q9erhrMC5VAdXYR977DGJ8/nnXhDKxIkTBd9k441lwDPuo3FIipMWAYaMURC/RvqZbl5+ok6DaP7Z2FLmWnz06DBzLfl/FQ0bo+PW1eo4OM9ODhX8iI9t7dq17YsvuPMMuMlQwk+a9IXoZ+PJ+DB7zOjE8dC9DjSz+ilQgQ8hbc5w/GMDzbMUkp0oT/fdd6/FaqN0EMlkx4eDUucq7LHHHIuOQhkGTI8K6YMPPpD4+GHQQeKuu+4mF4Ro/keMGC4ye++1l8hQ3VprtpLy8zXLDwg8I8Z0ffopBgDIAAcLh6HzTLdo0WIM5irh/CEGHj6tF198sciff/75uMRknuV5WHXF8s9wPyG/tWvXsi+8+BJEUc7RuabOSV8kdsRKHi5xWs3FhzCsE/y4PvUUL62qsE8Nhe2Rf6wAqjrbKbI9iaX0f42Ocl188NZo0cLOmjlDwkt2fJ5ow/XXXy9EMGvmLLlMgp0yukWLFmIbdmXpaAsBj4EDB0oesDIipKReTENqK6STUwmDnD4YMKnDyp101IhTNVbtpfPntjliQI5BLcvf/vvtr0G8D2n8Z52j3XbbddcMH20JbMxtnVhdtG+OejOcWcaqFS5AWh8dye9F59AhgyWOl7jdHHHed/990sldsgTtCwwo5Q6XDKljh586X/Hb01nWOLBydcZJaZngpVa82OYL1hc4bis77NBDBcaNiHKe/R8sS3DMf/3VGtjGuIzFtWUV9kycJaWuxx97XGQYF37PC5eZXSgBmEfa5yVpLzF5oOXIl0HmnWWmZ6+efructYf0PcRWw8QXHXV+/dVU0XHtdegokxAckKQABaoDyEM7+vPP0ok80U84kMf6zwkXOg3OPPHSNEd03uuvvy56dYAqquVhZXDJfDOd0rH2dBeSTxAKaI7L9o+Xu52ANPH7s/ba69gLaS+4xYsXyfGB0zFRQscorhl4taRjGsstCO/ikjTqxkp2OLdIm3GgqI6TZC1btFRU0qvtu6unxvLiKM0/yz8n8dqho67p3nfffeR8qxJmzppta9WsbTlYcq5CJrHYsdfv34toL5g2aQOQ1vvuc2WV9YRud2kjk7KKHQUoL1Whkjn1LgP2xHZ7XprFc8t9dt/D1kK7hJVVfMNxRtBnALsBRO/HH39ip0yZYmfNmonBz1Bpf3TQwdg54cdJFdYJlu/q1WtggMQzgRXSNuJGa0yaHaQpsZ9O/Ey+BZtssqnFbeR23Ecfi6zLF9p+xCPx7s62P8nX8OHDJD174bI7betL9wMmSpy4iVu2A++FyWmNtxX6Ds2bNZX6RrM8/JCbfGPfge+FF0zR3tdd6waRTEv//m7Ad+cddxKVAYm0UTi7Tcd88wIqDgxpPtbZqphQ4+S4uIz9qWcCJpuoBzu9nAyeQ4cOEZpOPJCxxx57wr61kefFDGa1nbmgyLeH8nH5w44Fkuzx/Y4Xm3NShUkZ/OQT9oLzLxAYK4322uuuFTkq2BcXCPLCQGGCOotltFZNTMwiLwj8R77/u+PdtWjZwsfJ9uYr0Z+c267AkQ6/xdvbRr65h6GdRAZoT35reOZf3cUXXyS2Of+CC6RcYfVTWSmf6wds/zhAvg7t20knnWixUmyx8ot+4kOSLV4Ux/cn32LoH/SY/xZLH6dC2k2spqbK3xtvjLQ89033K/qwq2LC+9ZbbxWc5ZEXL/G+BNq/d+/d7TqYUGL/jZNu7HuouwoDS/aF2Gdk1rE7xx52uPY1+I1lXwP59nbhpBTLyZ13YiEANNxkLWk/wJc9jVd96qdbVv3XyEXUy2uoqAA5UnhCMCUbGCng76CfA03e8cNLZbvu3N1fBrSb7bXbHrb3nvvoGU0MNLvy1tlkRbPQQLHF/CuJScF00esK/AB4w0d4CJcBCkRiwn+n/lGjRkkF4O2mPP/IP15CUA8DKt6CSseKVrt2HXscZnrVsWPOinOFnzGkEefhLNkcNGiPYaZ49z67S8cT22QYg8WWQqmYzzz9jI+iQmZ2tsWsvnuvFehcviFx8sNS1EXm5ox+X3zYmQbOWDESbJuwdWrVxmqB+3gncbh3c8ftt4u861BXuIEmZiMXzOdZNBc5tsrIWQgNy1UKzkzSvSydhTKZ7XR815iyI3P88f0kBj2zccWV6UuSQtILARnAstHigL+Uu/nmWyTtXFGl40CTt48mrsKuvc46lofn1c3H2VPeHPoEVqB7Y5BAHdi+LOxDMbPdoEEDJyppqkBnmucE4xVNjcn7GGiy8ees82OPP47OSDW7DWZbU+dGfP4W4GbiL6d8KbezrY+VcM7oiwOfqwQMq46DIaaNM8fq+mHGcTXMqKp77733Jf/Y0qMklJ+uot8RKiy2zUk8wzEopVuIQRVXQ0a9+YY9Dx90zu73O66fE8fb4gcMO1sw2P4SNJ9wzy3qeRGemaRdubJPu7IMjhw5wsUAmQ023AAz9XuEKD7HTa6UeQQTKRQ6FAOWBpjhDA60HnI+dhm2h3DFkqWyisWVEeY1nWZXxln+90FHOHZ7IS0NOYDg1wP/ObjC9sAgctutt4nduBJAd7lf6ec7VMcOJSdZ1HWWetFWUTlnyTziCxpo2G5nd5WBZGH7OwOrL5SXW44lSBLu3XffsR1xMRbfDScsdBKMA01eQqQOW1wlDs7YM2OMYSHqspS7m2/CYGA9WU1WHleXk0GG08eOhKszDr8OnTWmC9uwVY34CxcuskvRoX7zzVHI6/ky0OSEl7pWrVrK6qQkAkTOkDP9bhXbpa0h6sAxR+sZxgrsBliAs7YoRxiMclWNelmO6Dg5xvCcyFJ3MW7cZv1jB46OAwqG4Q3gmkfVLwLhkbY/L3Jrh8mzgw/uK7sUXJgK6WC1bJkMwhi8McpNuPzLvyIdaMqEXqTjclwMt/6661lsf7d777O3pN91MtP6XRAfGREBK2SiLbRJIPN7cFd0PpPv/4wzznTB8bzttlsl/67cVthPYDO2I4NQL9WxQ0/aQtgMWyoxAK6G70ZfsAv1JwPNdzW4+O4b0D4EYed2b3TkAwEQV9mkjvnyn24DKuxEDA6YjocfQhsgrgKXHi10ZfXGmyzbSO58UJddKfJBlC0+z3WzXcX2WTkvO2fu3DhJIsNB9NZbbZnkFtnmxArbX66IiQON3wiWJXbE+W3nSvbxJxzv+HiusUYLeyBW39V9hw425fnOnfPvGHGFtp91EIOkhqs3CPrfwyo4wz3zzNMald0J/bzttt0m4EwDZbQdx/Zw4GX22dB3sLIiuW2RMCOGDZd4fpv+m5S/uG5wUMd43cQvEgonbVQvTna5AbXkG6tX6lqssYasSAvugigLfoWrp4jzCfR5hI0HBxyc9MXPq3hZTEjje8n3/8ZIttsWA2DfzuAbGQJ66ay37rrrCuljTFrTDjg6IDi/f3wPdKuh/3YOVqFdXFYm/ZPvgHs3HKhz4p35/yPff64gc0eQOl4aRv26MktlvCiRNiPM/C9CmWb/ixOE519wvvQlj0c7qabjwJ/vAMeKNNqi+Wca2f7x4jF17FvydnJ+/yZMwGQyYs1+i2njESg/6rgQQpr7XqKeYsDPHU4MK4Nt6Fiz1Zqyq2djLA7wxv89YSe6m1B+GZa3oL/yCsJoJsDDlmnJh0xyAV+Ib2U5+hpvYoJU8o1JxX7oEzpXIf0PxsXJeqXxm4qt7EXz74XSngYN1JiQ1L/ADoDnEQ9BAvC31c/LgLgjtjN2QXFFc5fuOKPZk7fOYqDZZy8ONHeVW4IosD22oLXdvkNkMg9GdnKUiCCgw/mMOClM6er7mCPPcWJ+gAOg4hFBQIfzGXFSmNLV15gS33FifoADoNIRQUCH8xlxUhjpXAG5EB2Y2Onq17P+Y/AzGhhWkv4DklvP5s/1A82wbavC3nLrLbJV9ZQBp2CAcaOEGT5ihOjHeQmpmM8/lwwUuH2F20I0fSPRCLNxGTZsuE+O4yifA1+FFeC2pUpYHZqOlVh+VNkxdSumSVgNg/NpkiZtHP4hl57gds3o0pNOnTthlax50N+5y46YVWsnOLemMH28CVP1k8EtmJ3QMabD75BKPvWCDepW/SIQYUqnvwY+aPidLDsTM86JcxJ8cuWBuidiixcdP/qtoo8AtXAGcx/MFDsVFfZWXAVeF1t7B+DDxOu42cCP9IOwzp062qbNmklcmo7u3XvYrbAtNXGJftLYXDENvACIOu7mNmvg7MB7pRKUA0fO+q+BK8lvQ4PMThln952rkIEmbxpVvThjKWm75hqdkbVYte4nP+3CMJR7nx0U6MKZHo0mmagQCgaamNRgOR32+jAJxZVSbhnr0rWrxVlD2QbTD9se1XEliDaZjts7i7t0/ilDyq233Crb3vjBv+nmm0UnV1zV8WdHuHJPR/kvMGtLPVyVJoXbgZrD9i52J+MG+VszSOSchMrxhmfa4Ex2tpXopTlTzp+qYP7jgRPFTsb2KernDC4DyqU6Z5weorj1ttuE/8MPP0pseknWQkxU0DGOzkgzt8ip2h2x+qUTMJThRWLUIU6EKrAlenNs6941hImYArL8cVJrytSpjhU9F2NggN+Os/tgS5rqZOftdFz3Lw7ET7D9kPbA+VyQKuys2bPsfmjP+LM//PkOzuqvhnKn4bmiuWarZCBFOusMV1fUXXc9y0SZv03QheTzQ1w6xoFrF3TucOZS3j+3hqlr1bIljgEc5FAEuOuuO+Vd4Pxq0M+BxLHHoO54dzPaS269T+pnmR3hB5oT/KDpcaxauFRYuQmW+V2EQS+J3H1C/EY/0NR4XQAXik8NTz7fKc432SPQGV6CrfB0yj/ppJOxpX0VoblHha2JVTKWH3WUZf3iux47dqySpePIDiC31TJCrgB0wWTE6tiqrPE74QRTSP3dsHUWZ8hCnJoy5WffP34bVfLP3RuU5QCX5f8JmYxzoS7D7blMKyfDuIpOPrev0Wm86suqI+w5ejR2xIhzHE6qcAs6HX7vE3GUuXZWKO7R32+P/I11DME2wLZ4roAwBv5xtwTT8fBDD0qA2Sir++BoAM75ShvJn7CqXz/JOweaLP90LhUCJjCIPbAtmyvOGY4P4EJxi96OuiItgrx4rIdcLrMIbQYdJXGngZR7/TkQ/rzW2mutaSdNnmxxFlUm6V559ZWgf5rfkcCtv845fczXvji+0hxtBSd22fazDqp7X/sBaMddCB00bqsiaMf9hPOw14Wmk9TPRWF2QpvOvoO6kSPcjimumDJiTsLwXV+PuqF6OEFEmjrSudrKNkodJ0h4YRhX2p7GDhT87p592e/2oozGpcB4DHhcmXM7FyiDs7huII+JDcrzD3dUyPu/DXWe7no/ocXbcUOcwokfFXY6dq1w94i61tu0sQ1QTsb98yP5CTSlr4UV3uP8xNc83zdj+6f6Kcdba5lW7kb7I9//g7AltSV2DWn6+P1ge3MTJkaUyNuYuT1WCbjTwq6HyaauOE6Eey+k/8FjK+o03zOx3VfjVV9lxMdAk2nFGcYgR/qDDz8Eepm94brrRewWrEbyeNQp+NkrHRiOGD4CPBfrr2gja2AbNr/H3G3CYzrqcLZU3gmPVRVzFWjDGH8dbAVnWg7BT29pWu+4zQ80sbuGDndkyPeB5fK5Z9nXqItJbTfAZhiWPfd91BisHCfjRGxCkaiih+PE/AAHQMUjgoAO5zPipDClq68xJb7jxPwAB0ClI4KADucz4qQwpauvMSW+48T8AAdApSOCgBW2PcaNvHWWl8rqz5v06IUVTQw0d98DA81devSSESi3znLpk0ugwXFW3rsABUA5WYFl4RrY+2kvayXgKh+xElI6AVl6UVyJ3k97kRLNg8pHrIS0XPp/+P5HaRB1u5cERlzz5s2Vyrk3V8d83OtgtYzbIjT/OFAtFYe/o0mZEejksyI98cQTEo1bKUXHSSq9tW5WEgMFVEJ1XVEAkllJN1BgHPxYhCwFwMr5qh/89j7GQRYHJFWrVJWOBG+kZHh3vtQLUNA7rtywExm2CP4DHXfIu+v0K7A9azHOlKwst6iq2s6Y6NAPGrfCUF5nFFWmNlaReK6HTrcE4rKcYDuvvgTuYrkSK6CM+/TTThdxjZuZnIuZaq4wczCi9menuWUrP9vohTl7zA4CHQddzOsTT7gtPbpyPdy/D3ZkcDjazvTbL5k4nh3AhQUF+oWAh8wyIo3JmS0rMNPNDp06vhPO+s+eNUdIJ554outE+XTynCC3KLmXXIE0zJS8y4qml+EZinr1VvMyUfl5RlfErQwg5d34MC7PnKgYJiuZjRs1QWcvGURwNvfYY5OP3nXXXi96ebYpKPJxeS+QNW/aoWE5p0xi1+Eqgk7mBm5W1EfyxRdfyLvQmwnF9hhg4RKsoJez0zyL52wSvADw/CG3FW6GVW9d0dI0Dnp0UNjexYETO6/ivMBh2MrEc7EaN23PTofaXychZPUNYXDphNiFKy6UkXqBLXqysuXbP26z5Gq26kk+pI7E5+abbWFxEVRC0AR7ymWXukGAK0+eGXncvocLnEJ4DpB16ySJPOfGsvekL+Oh3PnfxT3xhJOkU6YRHHjAgZicWVNRyRsuyfJ1xinmjDsuZrC/SZmAKMhcFedOD25L1PrXCCt9x+gOD8hwJTBssUMwd9a9DJ2bb4M+dhCPwbZxuqR+ug7qKKwAMC/Dhw0X/sfS1qD++h0MJMrPzkDG7SDA1i8ONIFf7ztdEjB+uCwlFOD74wx9L5xPlTPFwPmbvDyXxozKRBri+wFb0hiU28IYv5sg8dHg/eMyIKGP0YEmhDmRQ1mulqq7ZuC1tno1rOz4bZQSqTLpU0kg+hVNP9gSVswGLOUWAzp1N/rJs2+9jbV91m8Qo77sMh1ousE5BxF8d7KqldGvK5pvY1AQ62dZ128A37/WsViGq4S8FVSdtAHozKj74gudbHIrmlJWa9XBzgi2AZhIPPEENxnnI+VKUWWcmU8S4mOK+h8898tyWSDjRUlv17ad/JyNkHzcWldHvzsGZEd8+eWX5P1p+cOFebLizUEjy4ceP9HyX+o7l6qDiPqkE09KJhmB684UngF0qivkJ3pCPwAyI/2K5rBhw0Um6TswDATg+LM+cfuj/Q+2/XQyCcMByfU3CM7H+dgOz29icIgKF79IffCJsQP6D8CK98HYFcJ8n2fH4xxmykX2Z0q0zD3u+z2UTdvXheZt8lK//fdXdtMgLdOx8uqcy5d/HerJ1lzWV3V3ol/BeFq1aiV9LqEjKHcicdFAnZTRZmsoKj6Pkch3ANgf+f7znGmzps1CHNzuT92684gpdvG4CZFUO8lQEOCtyNo3In4d2irGId9cRhByKkhAubWU7+rII46kUHDPodwwPFcU9Z1rG1nwLfZRHo5JtSroI7Is3333PSGuhx50R23OwNbzoDhKxvUsO8B5zICTM9SrW31v85Oz7Esuwc6A8H3wsbONOfaYpK9x/vkXSPigHAC/j9zm71ykGASPRYCKBU5pGS+aCGhYZcS4xvf309+ufUfsiN0RW2e7uq2zu+its1jR1DOaHIF22tFdBsSRaewypolZAVaZwjcVRNx7SAQ9IyJEjUoSKokxkozZAie8BMoKCaeAHRH+Yv0H9+2LLSvbZZLl9HNQyVUndpLpOFjg72zyQDe3CJyOFRFWvG2wfeXjceOwfetGwfnj8/yIK59bSriVhg0tZ4XCj28jzjbY8srVH3VP42IUxjl06FBHyuR/jRYtZDZ6AWan6bgS2bJVy/DTDxxgcraLjQK38XJ74/64qOPjTz4W+cv97LZ+NHVF81vMztJxm1pVHGzneRZx0M8Zzw19GpkcNug8yM8LSGgp/mQAZ/Q0zCcIyzxc6s9vaWnh4Xj+1uSUKVNc3HiKpeVBpMJd3oAZVGngKAUaO5V7YbsHt3VwdUTIeHTv0d0NxITiHmzcuqJS0XEml+ngNiSuRLIxpf3ZCePAGrfvCh83ysn2kxHYrszzPtxSxXfsOmKaOBc/V4IZp84Ak8vtqVttuaUcsOcZWzqudDVp2kQ6mJxZ3nLLLRBvDQw8Z0m8HFjwYhO+IxqBZywZLz/Q3ir2AKzYcqucdlL5G6iUYfnRVLVpg/KDbarqWH74/ll+cGOeyOv2Rs7Y89wYBwv6O33casQ4tYwzHn74+WHnpQG0f9ZxKxbD4EZQOWdxBlbYaFd2NDRevgdeEOUcto3jzDA/mm7lycrvD3Jm+HBsQcatlphYUdtXh+0HJ2q9fm75Yznkzx1wwKmpov8+ZlK5on6Jv/TmCr9KP1TOg+JcMSYS+EPu3EKojpcU8ezxIsT71dSvJG7miWWEvzEbzmj68vYYzvdye7iWcerdfIvN0eFObM9LWhjHTL86TBkOvnDbsKot8HkhDjuiDHfuOefIgE7fv5wVR365+kbHyRbKHXPMMSH/8vMcsKNur2S5Y8eIZeZXKXdbSnnmSidN2QMd83gwwDRy8iFe8Tn33HNEj5QJb//vp7lyz040HW5NlrNbuKFb2jZeeLbKKqvKxVwigMfVA6+WeMaPd23JkiVL5WIU7QzecKMvR1i9YV2j7Zk/aS8xwGdbRjz+aQ/+niNpuiNDVsqR/wsvuEDUMt+4oRJbSm8LNlJ7UuAtf0yCP3r+4ksvWtyQaHEjaJgk4oTCOuusHS54G3g1LkDCO2T5i91dvEQIeuOVAK6ScEXzSd/hpm15Rha3bUpQbu/krg+35c3FRpkooXIEolq1qrKlWCS8/Z20tVuz3OJPyu3XX8k2OqaD52G5K0Hbf9pM4kbA0047VWymk4s8/0kbcncLZT4e97EfaGCydIRbFbv33vtke52eX+fKPAeO6uS7Ab1Dhz4lJNyyijrWNFXHGuKCFw6GNINc/WU7wfaDjjtx+B3h7htOGPBSF06k8Awls81yznTyG5Z1mjdehsRVXl5qknUqw4mUzTbbNMUeh+81f38Tt/VK8lj+eEkQ2xg53wxpTmw+jZVMcZn3IHbDN5Xpi8/fUbZ9u/Zy4ctilEXWYdf2V5MzgsxYaMcf9O04IuPRl8S+Ffbpp5+RuHmRDt0rvu2/H20/HfWz3xG3PxoGNz6LjO4iuQDbN9XJriCkmauIdIyHW+m5NVJdvXqrin7irNfFHMPR0ef2Xr5XXhakjvbFLaXoe8C+kOI/2pfliIMxunPP89+ez13/Sojy0NiBwF4cUHXs0CGwOZFTE+cIN95kY9GvjHawu541Ju0f/viDuxeA34FZtmmTJqGM/pHvPy9SYp3+HNu+ObnJC3H4ztujTebuAab0GPycEfM/e/YcmcDn95ftJHn85rI/9X/sfQegFTXTdgCliBWsgCggioodG1UEQZoKKFbsvSti72BHBRQFRYoNsFEUURGRjoIUERGBe+nSey83//NMdrLZc85F5f19X/U7gXsymUxmkmw2mzKZcDdRFi2B46IFefDsu5Q0KC6i4RyC7yvpatas6dD45TvO8+JUF2f/LmMcvIduzGmjMQ4X1z8ItNTyrDtiUUCOfujd0GTKPmtPHAnjuUy90mjy5En2sag/5VGH3NxcknpVWW7KMIdav6wHbn7w+67fB5abV764sQbGOHD8PrKetO0Rd8ihaHt4bknnyi84PP9MTrHq74hG6zNfmjQmAeIfLp8blDXPqO0nmqI62yRSnT0fRzt4saZMNKG776zOQi0xKL9UWmrY12R6RDrGE8cAiNgh5OtSo1LDPmF6RDrGE8cAiP5b8jmgoBEdvshUXXMr9bF8Doa4esyPOFW73nqrmwxIj8UHi2moBtnmyTZi8OSUU0+Rw9R8IXmOoyg+fBz8cwDJD+cuWJXlgJqGBpiWHziuHFNViGH+Uf6I4SPsHnvtgZexgOyGOT36uHr4aK6HGgV3ytgx1EYDOgJnF2B2XwZqSkkrhZTBnUke9H4THwDWPzs47gixTBxscnDPiQ13avmRqw8rsRWPqIjLz79WVnJ+w+WxgEyIaXWVHTYHENydqIkOl6pLuqJG1St+qCiDZ4FoiY6O8rnDwU77yTbxgF8i9QdEfP7cneDOFg0knN3gbPkIX331NXKOU0k5EWI9seM6vapbKOCKOzs75pfnA93zKIvFgmJiWZYLBXwehTCR5YokdzSuu+46yRPrtHGjxlAnaCoDdZ7B1EmTyuyOwRfPTJI/DSZxgUAnFTyXoPVEYxtvQz2MOxlc5TseZypo4ZDxbEuXXHqJyGT4ECwczJ49Wy55Z7hw0cJyhomrpKwr1iPrgbvg/CAwTMum0n5aXCjlJw5m27GzOBxtbC+Rw4viB2Ni37x5c6mnimgntM4rljxBz4EFB5ycPFEu2wl3G1n/MEUu+eRZ3YTjQ4TTei2KifNRaDe334F6RVn5Hj377HNytynzVBCW7Xi+ZPov00V1jHJY/13e6JJe98gbJwilypSSFdzUuueAlunJlxYZeY6E6qFUEyeOcTRA4VyeLHKwvmphgLL/fvvjrMitfheUNNy5Yn75TnJwyYuwWZ5m5zezk6CS5d8LvMf169e3hx9+hNRnJMCybiiT7Y/vOj+w5Mf2R5W5ddCIoHqwoymARZFGmjSj3/GVjrbiYRXtPiX3EYuw3LnnijwHY9ztzsnJxSCptJSV54F4tyaNbPHMKMvPNt6jR3exNMuJCt9JtjvuMPI9ofo4z3yy3ZL+9NPDd8bVX/Nmze2tt98q7y3zLW0CalrqGM+0PC8lbemkKlJ+GqvgGR8pK545FzZolIp5Io4r+jxPTm0DhgsWKigLSr4doZ9l/3P7bbdL+2d/yfePljspj4s/bP/cmaFhEvLgQgbPddJqL2mo0XEvLAFzsEeDHzwfH7qo6Yr1T9KTR/hHlUQ0fWn/vIuPi2l8Rw7HJIWDZnERE+7uST8KHsWRN/a/6nr06CkGT6rXqC5Gm1hPS7EbwKR9cEaNMnG9gJJ7Pyc3B2qah0lZ+LxoGRhXJvl4AcCElkN9u8XzfZTttlhRy2fDc2O0dE0ZHORTfY0LO+yHiWOd5eTkYKd6uZxFZVtg+2f/Mv3X6VL+dRvW4ZuGOgU9y8mdXdfWXb/Ktk5Ll3Rt27RFn7QHVsxrybeAg3AaHMOVDrCeXkHaHWXwmAHPZ/KbSb6cGFLbhRZZWY/sI9nf09AOn80+WLDgBJ3tnOFSmBxMnfqz5E8E44dquBXKUwaeY5RGjEwJgcvfJixWsM2xPimXfQZ3qNXh+iHhzXEA37Wqp1e1v86MJz18dlwMZDssgHZNrR229WkwAsT+twSsKlM+26R+58ibC4G0Dl3qoFJSLmokUD77fi6A0HInw9KPY7EjHAec3+J8LIaMlOdCGvbj1JjSft2NHQb5NJR/QQs3dnDjC44ddhejOPw+kwefPy0M8/lIH4X6osYHF660jyId1V3Z/9MiNZ+blBvl57eRFrSn/TxNq875qGYa8qIlWKan/FtgrEcflNZv5aMri+EoTgLV2Fzat4dHKsCP8kP3Vre3om9lgYRmCL/bnaG6qY4L6/K9xLOm0SrlI3WH70BNfAd49lna6JbNkuyPfP9zZ+dKG+FuIBfwaGyIYy/2n13f7GqvwS4+J1Qsv7bT5s2bSZuk+izb0MmwEsx4/82N+jDpX+UoSVSKoPzdu2OsgTGa9lXl0dZPOfkUGY9x8p6TkyP1RYNPZQ/BkSN8u448shI2QzjmLOzHOFo/rFW2f9VEUzx9jgPZHpjHkvuVlIkfjTPSla9QXsYoF0Ariu+bWs6XsSTaFdsfx0TkIeVG/R9+eEUx4Kbl5kIev7/u+4i2VzZD2+P3MSi/CE/9YSFClxr2cekR6RhPHAMg0nYTIwMolUlq2JOmR6RjPHEMgOj/t3xONLmjGarONjwnmmhiR9Pfo4lOXe7nwVkSM2r4t2gLcGKMCo84P8cmE0U7MEAwjQbF5w9RUXfMloNwgjsQbFEe9y+Rv2XzFtyZuIvB5An3LVpTBPclsZAsP+9EwouB+/0Kyj1eBXDnDAypsKrMAtxHVWLf/XDfW1GDSYLBirfg+YOVbzNnzlyD1Vzci7eH3G9IHCxwGj5DDKLAexvutSlksMKPO25cxVL+LrjjZnveNtx7BB80Ih/3KDFDqfW/YuUq3IW0ypQrV87L9gDosYOKO/4WmEPLHWpwzgVRBeROVvLinUU4P4Q7mgohfysNLPWZvDxjli5eIncssvzIlTisNstdTqgIuc8VAwNkBhQFCshdTFht9nfpMQFmvFIudL6QkWfw4uAeKt4h6DjCcJIpVqSouePOO6RcbgxAML39kTfvcMMAKa38sPKH+imIbKBcuGeW+cLiAcq6C8qC2y4hF5Mog5V/Mw930WHXBuXcQ/LMMsHUtpcPYyRmw4ZN5sD9DzDYpTV77r2X5FEqQAoFUmQfq7vgDb5oB3hckLvVYOLkybCbIm0EBiYMBhq4I26VWbZiuTkUd8nhQ2Xm4R66/dFu2KZgwRR5L4hnslXyvhl52hX3c8G2m2FdAxC+fFbkyzZB+Rh8oW3gmYCfe4buHlWWl7SkgbqZPGv6GCiZuXPmSF3gQ4g02+VOq0OQJ+YTWTCYeANGOtxlWQh3KVIyrOvhrrKL5U7FTO2P9c87/nh/Fts5dszQ9lGvuFsW5+fwXu0qzYTvFtuftHngtqPNo+Qik3zXrF0tbXX//Q80SxYtNhi0mCJFi0atJapa0KW2f7Y/deipDYxOyH1ngmMBEM33i3eWlj24DMqPdqsuiufdtqvXrMJdXqWRh81mzarV8t4yeiWe2+67u3tfeR8Z75rzEiEvtf2xnqVceF/1+W9BfbBu8VLguaDd8N2hi+Q7nwGikBog2+LS5ctM2TIHyzOLInF7q5U+ic8fI33UB+7EQvtn22A7Zz2LfLRNtjtMJnCH4aEif/68eQYr09Ku2EZIx7bDOtmydTPuZuQ7gzywUTMTKAuu6JD3ivQYwPn6x2q2tP+DUGfSlubPNzhbDT5893YFE9yNibJiMum6CfDazmdTuIjQsP/D1xRxefJOUP7ceXMNnz+MOEk72gL6krjLlPzJk2XEOTHpW1gfhfDst0IGyy80UfnJl3WxBP0Y74YjzNrFuFp+mZb0LD/z59CoV+kLcb8Y8Pyv1AvwvpYuVYbJfPkJb928Ge9jYXmHyU/6BMhSxzbOdoerl+TuuVA+DJeYMriXk3JUPtPxdd+Guxp5T6b0Nfw2oN75DSBd2P7X4/7KVbiPsXTpUnJvMc6DS7tlPlLff9curPQNW/nMUZ8sP/+znjZv2ST9t7Y/4jfg27EW9+wx/3T8TrL+YQfA9bUsa/T+se9lm8Dg0T1/JkB+N29BH4A6Yr+EbTGJ43OlfNYP+z/9/rCtli2L7xTaBu/q3Bf3HBaSPhL9JHzpV9F3UL44tDHmdyvaHN8HfgNYTsplmD7LQQcDSPL9YZlZfky64nihsyKzePE9zD577S3piF6Lbw8WDE1r3HOMAb9Zs26t3G2JnXBT/tBDcfflQLQlfsf5ncP7iH/S/ikUDGBnAPeorjCYBABfSL7FvL9Ry49dLuQf3zD0t/KM0Pdy2ZT9P+saRs8cb/h0fP/5bWN974J2sQ0NhnUocXju7GdYr6Rx/Tp4gUbebeSTeXJtCPWOOs30/udty0N9bTSNcPdu61b3oC8vibtS1xtMDnEXLMpdrpwZiPud3Ysdy2b55XvPvOLZ8Fun9c+6ZP/DbwQm2pJf5oXfThKx/Hz/CqD87HOYjmkcd35z0aZRPo6/2Lb5TlPGOowLOP6S9wP07H+kr0Jb0P6XwsiL/Q9Uy6UPl2ekAsS30ufu6PvPeuW3G1oz8kzm5OaaQ8qVI3vIcuMj9v/8xkFjCFh8c9Gnsa87CO8ozjnK82dbIA3bIsd/zCfHfyxD+P4xWywrv2vkwfp1Y0d8n6U/AIW+C6DluIfyDsD4Rb7F6A/4PeS32BXV/UIDB3dtf2SwoOUqWND8YT0VML/h/nIsZBicx0QodmtWrzFLli01OAMr7xrrH9fQSCrmh22S7Y/tah76Ao47oM2FfOeZefPnmUPQN7AOQSA0Uk8YH7Ffkf4O0reh7YXj71A+CxH2f5Qflj/OaQRJuRzswABBtAbF548rvyxHQbBGS4SL/MfKr1bzDLQhfEfwTrLNyT2aeM8Is//FRBNnSPBwttltMulgYxuJiWayEoJQAPoK2llAeakf8EmiglAABuQ7Byov9QMuSVQQCsCAfOdA5aV+wCWJCkIBGJDvHKi81A+4JFFBKAAD8p0DlZf6AZckKggFYECeAHmxM1RzDdRS5eOdiAwDykv9IC6JCkIBGJDvHKi81A+4JFFBKAAD8p0DlZf6AZckKggFYEC+UyBUn83V11xtnn3mOVOn7pkJHkkxQSgAEwl2JqC81A94JFFBKAAD8p0DlZf6AZckKggFYEC+c6DyUj/gkkQFoQAMyHcOVF7qB1ySqCAUgAH5zoHKS/2ASxIVhAIwIN85UHmpH3BJooJQAAbkOwcqL/UDLklUEArAgHznQOWlfsAliQpCARiQ7xyovNQPuCRRQSgAA/KdA8EL97IanF8zP02dkuABVWnz9FNPme+++w74QGgAJhLsTEB5qR/wSKKCUAAG5H8ahKqowf27KPdPieLhPKmBirAZi3LHk4BAaAD+aaGpCZSX+kF8EhWEAjAg3zlQeakfcEmiglAABuQ7Byov9QMuSVQQCsCA3IO4rshgd9fgfkyPyxdQXuoHhElUEArAgHznQOWlfsAliQpCARiQ7xyovNQPuCRRQSgAA/KdA5WX+gGXJCoIBWBAbqrLRBOTSixAcaOMiwA4/icwfZlocqWHE0zcMyUrHCOGDwWP+DUXhvkIcH1gEOlBD/huMsYk+pYwvxEcUuaPivMV0HvQA1n5qCg+zbhGknBUw4EXUkboDCiJEXwQ6UEPeLkx5q+VPxur/AdjpYurK3QqV/0QJwRpPyFlFJkBJTGCDyI96IGsfFRUpvaH81bS73AlP+niuvP4DCiJE3wQ6UEPZOsfFZWp/lN6eF/V8RuzY1S2/lED2faHxhW/a/5liwEPBVQeF7SwAAwpI3QGlMQIPoj0oAe8rBiTsYX/T+TjaIXB3Zym3yefmMZNmkBLY5P57vvvzH333mcee/xxA/sNLl9h5oOcusIFkR70wN+y/O1eetHcjzLijL/B8ZSo3N+j3Pei3I+h3A3DUub/wKSYcVl9YWPAQwGVxyWFaCikjHAZUBIj+CDSgx7wsmJM/sVx0kLKf4b8nJxcmWAO6D8Au/Cfmqqnn4aMuy+MlkZ9liiEoxIGXobYDChJIPgg0oMe8LJiTFZ+WBdBxUdghtgMqLD+q9esLbvgMrnEZJPaeAUw2eRONLV6RHWWql95UAnh1vQ2qA+MGjY0IVtlqM9IhdVPJEgEQooQViKqN2GTPxr1ZKbIf6CUiV45Oz+kCGGlysrP1n+2/WXfv/TeIu4hsv1PfhPVTD2q1lt6jWaizva/2f73/27/uwZHAW6//U6Dq7Cg2pqH4xR7mzNq1jQ4i22OOuooeYX0rVGfSIXVd+9apt+QIoSV9n/z/vG4yh133GG++WYIFhut2QdHGXC+0dx8663m6COP1MyJr7lWn0iF1U8kSARCihBWov9N+VU6S/JveP9x36+02XvuucfgXGtcPP+kiMrWv06+4wr6dzx/7mhyUgkjitEuJn3ualJlG8cOGjQ6B6qzW+VcAVVo+TdyxFDUg653R43DtxEPxHX1JyCfGkBCH1oboRB4KnCOYI/ywJ+QGpP61ACy8uOnnKxnX0vZ+s+2P7QB9AW+SXggfqn+BORTA8i+f9n3T78yvoFJA/GtJNv/6Ivnq8QDf+Kti0l9agDZ9y/7/mXfP303ojdDPP+WZPufbP+DNpAd/2gz8N9pfW0iv3oNTDR5NpNnNHlWk5NMOatJnKjOYqIJQyEwfx+ozn4b81WGePfCD1N4Tta9lsHLqaD4mLHjQcUdGhkqgTJP99MogMjKjz+M2fpHXUSNyrWVoMUoKH62/WXfv2z/k+1/w2+MdhAhLgmnUQCR/f5kvz/6HmW/v9nvb3b84fpM11cGPaaC4mfHX/8Xxl/URihYEKqy3NGE8Z9CMFZFo000wlWQO5piDAhnNGkpjRbI1BjQ71lcytR84k91oqXtAK10nHqmPI6wJ485eCiN3scQUL7qR5EaVN/TZeWn1We2/uMvaaJtuUBafSVotIGpn21/UgNaHepn3z9Uixu6prWn7PuXff90JJvoW1wgrb0kaPQFUz+K1KD62fcPFZN9/9g60tpTtv/J9j/Z/ifqONO9tPclQaIdrPpRpAbV/xf1v0nVWd6cURhnNJ3aLFVqC5zdAFZncdWFXG8CFVqaox4xfJjfgaTpY5r1pvP1E9Vb6KXFpSBSgpJUcBkiQlRWfrb+s+0v+/6xwwj7hbDvyRiXQpwSlOSCyxARorL9T7b/+Sv6H145wKsaQjs62qaz7U+nf3jn/4bjjy28yiS4birb/2Tom8NGjApKCWb7X62TDBUTov6O7V8eXspPmOf44cZEafGIElyGiBCVLf8/4/tbDWc0aQBIrM5SZbYAdjdxhRavNnFnNHG9yVaqzXKyibt6OOHk9SbOJR45UG7AG0Vm7j2iLsWlxG+ob6QJ810tC+WROAyHcMQoA0rTuCj8/g3ks243bNyIWT7vZsqTO5GKFd9N7rrSKnF+aoHi8NKlS8zdd7cyuDxd7p26u1Ur07hR47RH8ncsf2qzyX+33N2Nxzstqde9efMms2LFSrm7quzBB5vixXffcXVJrH/yEPvXPf9Vq1byUco9epkypbnIg6GDX6ZPM+vWrTflypU3+8m9mojF4s0mWBjkoKUAXtDiaA/u/rbwHXNceHck7w0tVmy3xH2aLN76Dev9YGzNqjVmxarlBpdumzKor7+y/EFVJ4v/P3j/acRsw4YN8j7hZlO5K4v3dBXi/W9/g/f/z7T/5Avtnj+tgm9E+eTeOKB4N1zRYsVc/xE0l1UrVpmfp/9siu+2u8FF9mZ3tCmWn3eobkRbY/8jVcL+VwDe/Ya7yaDmsgX3EdIsOe/kXI+2yjv3ypQpLR8K94BdXhIPOwMqtf9ZumQZBuW7mr14d6C6/6D/l3tSMUETtwP5vfv0MZ99OsCMHfOdGTN2NN473O+p7j+QryzE34F8F4XfDO1v2LBhpmfPnqZbt27ChsdWfv11Ou5UXYE6Pxj3kh4SiQkFhHCG6AiVWv+Z5O+o/83U/hzrHct/9NFHzaSJk8wm3Jf51Zdfxb1AhvL/FfJ98WPJf0n/twB3Rl9+eUvzGe55LFa0WLK6JBOunvzvv6z8cT0DytAkFJlf+ecsXmU6DZhgps5ZapqcVtHc2PjEgGUqwzAcwlGSDKjfky8p/8T7v3HzNlO0CBaEJKH7lU0Z3B1aBGOUsG+fNGuJ6fn1j2bKjMXmjgtONU1OrYDsIE3QR+cnn2PwXXG2LUkcFjCEhYsWNQqo5+j87x+U71Jbw/IWw12yLs+hzBD+6+T/1eWXZ4c5ThHca5/uUssYhkP4n1t+yfmfaP/x89hx+XlGU+4ahqos7ymmuizvn+Z9mrzD1JzdqImtW+9se2bderbmGWfaajVqYhEhD3+RE9CF+RvERHA6RpN6XxKGdD5GAFyUGyCEOA5LlItPifnHyB85YqQ9rEIFPiksTxhbvlw5O3jw176Mv1d+XK5sTz/9dAsz6BYXQ9tTTj3F1q9f/x9Tfslo4hn7ogsQln/atJ/t2Q3qSz3ttltx2+y8prbWGTXtHnvsaVvdc09UZpc+bhXKz2E05H1pOPnEgSiU71p4QCugC/PX/eXZWrVq2bta3R1hVJKjY2jlypX2huuvt0ccUclefNHFtt5ZZ9kiRYrYKidXsYO/+koS9P3kE1vm4DLSLgZ+9lnERKW44BC0E7aZ0047zX49ZEha+Z9+qq0tVaqU8Dju2GPsBRdcIDyPPPJI+9OUKY6JsIzzFgny3p8tvyZ0HEO+IaxU8In+g89fa9inFpaOr7DxEY6SvxMnTrQ1a9bkJ9UWLlzYNmjYwC5cuDCm/IvlJwXFIQ9F8lnPQ78dal9/7TU7ZMg3duPGjULye/U/ctQIe9hhFV3/gTKWK8/+Y3DUFsBz6FB7zDHH2KOPOtK2vOwyW71GdamHmjVq2OHDR9hh3w6zuATb9z8H7L+/rVDhMFu0SFFpW61atZI+CR8Voal4+GG2WfNmaFelbd0z61gslLh84tc9CVcyB6djXKy1uFQb+Shi27Zpi4QhnVJEfBJxpAtoBXThN7t2tdhJsj9O+VESOmxAG6SbPHmyrYU2wTItX7Z8p+Vv2bTZfjbwU9uzR087Y+bMQILL5ZQfJ9sePXrY7t27o7xzkgXTELMYlTEnN8cecfjhdunSZRI7evQoWw7fgxrVq9uWLS+3uBwe/fvJmjKqirik6aVNx8SJIyiQnxYHxO+1vygTUvZ0aQ7zxRdf2n1LlrCnnXpquoi/SP78BQvs+++9azFpt7Nm5bAkCdmT0C906fKGxX29LGQiTgMrViy348aN0yB8yayEyfNNpP96yGC8q5t8zKudXrVNmza1uNw+otfkmWW4hPiK49u9auhXdvHbXe3KIV/ZrStWSEKt/+2bt9hVI4ci/g274osBdvv69VGRHN84Z05ejP1j8pUq1Vf5MdegHALGkoKYqLbTMan8tfzEr9242bb7aKwtf34H+0q/74X0vyk/LW9A5Cd//cattsq1Xe2WbVtdPkmLv2f7jLKv9h+fVv4lK9fa+7p+Y8tf0N4OGPOrpIkThvUURxHqOfhHe8RFHe3U2UsRIl1AK6ALp8SkyU+kI2N1ktDxUFToa/lZ3pOue9OXV2iQbOW6DXbirEWpObOrN2y2fUf+ImVl2j8qf/iPc+y27XF+VD7lrVwLWTm/iWj5ETJHy1/+jZ02z479eX6i/N9OnmMHjv3VDvp+pu01dKp9/bMf7NJV6xwfSeh4PNtntO2EZxe6UL6T4GiFRkAX5m8Qk5Dv+IWxgQRJmE8ceSb6JiGOE0sylzYl5m8lv1qNWhin17a1MY886+wGlkcyGzU5zzY573x7XrMW1pzd8Bx7Vr0GtjYGwpxoVq1xRlpdx6XOH0pUQiKQniYtmoiw2tII0nmkYhJJEoFUygzF+y/IZ2MqW7as3XffffGSbU80WBeQTMSgC0rmR4wciUF0ATthwgQJb8IAdc2atYmCJYqcCCTIJJAWLbLkJ6P8dA7pmATPROB3aBmdIn/1qtUy4G3durVP3ObJNoKbNs0Nen1EBCREJgKplP/58+/Zo7sMYM+sc6ZnHor8YfwEe+ABB9o77rrTrudgIXKcEGHVx77cvr0rMvD33nuflOvJNk8Ila8KAFu2bMEE4zAMrgvbzRjw5ufuvutui0PYdtXq1UKyZvVau/dee9sWF7XImCTMqxB4ocGjEFzG5BmRCZ6JQDp5WrTIkp+4KbhgeuJ8MGvWrpV65KRJmOwgPaMS0RJwGA8mCPIRGqBJ7pMkAo4IO672jDPOsOedd5595tlnZbJ43LHH2mUyCSKNSy2/GdIzWvuPPPQf6rp2fcvCjLh9/oUXEvK5uFV0t6IW5uaFlP0PFyT2228/HJXIE9q1a9bYOnXq2tb3tObxCbs/JqAHYXIJy+OSnUWLFkl/dVjFw1Rcvn4iy1HgvgfutwULFrRHVDoikS5ByxgiotwT5PvfpHET+/TTTzPCO06oz8J3asH8eR6nQIJnFHgC7xQX96ARoGTiJ2iJISKQLyBwH3/8sT3ggAPsXXfdZW++6WZbtGhRi3v/SCzuhhtvsFWqnGzbvdDOVq1Wze5WvLj96aefHCvhqZTO5/t89NFH+/d/29at9sADD7K333Y7CFyCId8MtTCigPd9SzLx74SY2otMBKx97/33bHksNOiAJiU6SuhSy28awe8Ij2SfgklmNdSD1l9+qdLYe6FBVgSXHwdrP/rwY4tde/vYY4/ba6+51hZAO3u9c2eXAGmfe/Y5W/bQstKG9tt/P9upUyfPjKxXrlpln3rqKbvPPiXsQw8+BIwTyN9NmFTWwQILF/fatGljj8EC3qmnnGr5vHF8qCkAAEAASURBVOj4/nHh54V2L0hYcMRriIAPOOTWVStt7g2X2rmPtLKL3+tuZ13R1OZc3tRuXoRBNWi3b95g595zs5111QV2ae93bO7VF9rcay+2W1ParopI9RMiE4FUSpe1RPYk4DAeTBCk80jFkNwnSQRSKbEAtXS1LXd+e9sZkwFxktCl9iCAD4dPs6fd3B18XRxpiTuduBjlWXgUAR+Q6MRPWrTQugQeBPAJJlG3d/oykZaBmnf0tPOWrEngmY5/I3+aa8s372AHfTczER8GlFZxI36ca89/8iO7cPkal+1UAiXcgZ9IkgikJ0qLJgKSWd7bOmERPCJYvX6TffGj72zlK1+3T70/OsFo4bK1tuptPewdrw2217QbaGvc+bZdtmaDo0kT4NCjp86zzR//WJ49dnBjfqBfvWGjyDr6is627Xuj8n1+v8xbZo+67FX7bK8xcXpAlF8Rk/XyaFes/0oXvyKLGgki0t3xtp2L9idF1kgJOIwHEwRKmL9Pcp8kEUhPkxYtCV1qD7pgeuJ8MCT3SRKB9ARp0ZLQpfagC6YnzgdTFRPNGpg/ykSzXkNsFjWxDc7hRLO5Pe98TDTrY+Z5Vn1ONOu7HU2sAseO0iKJSc+TOHQ+kUqF6LCz8DxTsI484iUBwkneYSxJXDhJI0nDH0T/HeRXOekk7HBx0KWlSObKZVnjGCKch1XZLjJg4i5NGKsUnl9qJAnogE9KUsIk1hM7wCVUiVESTakkLpxPZECUlKRcklhHnmehWibl/eSTj6M8WNvr/V6C+ygY6JH+r5Dv8qHck2VbhlXoIytVsuecc44MzFPl8xmVLl3a3nDDDQk2WlKm6969WxSXZ487/ngZjJ+HFXLnInkIPPvsMxjcFsHuUwUtqD6NiNaha9c+wx6LSUsYWQntjAMkcWCp8j0iioiluZgEE2EYUSQ9JY5E5hOpVIj+q+WPGjVK2kffvn1Vauz/F+SLsKgaYsERBPzLHV7GBKKAXYsJMWtj0BeDZAe2M97tpAuZEI7C8E5C/3E42p666dOnW+7634UFDXFhUiBw8bk999xzhQXr//jjjrOVK1dGjBLm2ak//+wH4ZXA+/gTjnO8IoYtWlwg9frLtF8iTBAN0HGK+Clb4LkYVqpMaQuVSkmPS+iDhEqYbBWOIM8uwE4VJ4jPPMOJZpK3plRmLpyk0bg2bdsKnzWYuCYlKZckVuVr+hNOON5ecsnFHk0thoaNG0t49OjRwnvyj9xdzbPjx4+XcLt27TR57EMcJX326aey07xy5QqJ+3HyJEnz+eefx7Sg4wLbKkyEXNmTZdOcawIXTtJonPrXXXudLVy0sAbhK5cdl//Pyq96elU30QwkCQhxSUn/mXxO9EqUKCGLKI5Tnj0Vk9xSB5UScVOnTpV6Hfj5QAm/0qGjLb5Hcbt8OXa24TZv2SS7/i0vu1ToHn/8ccG7nzzbv39/wUOdGSinMcD2yJ1PzXmHDh2wSHCghUq60EhajXSM4l/gF7/T1c5qUstuWe52rVaN+AbhmnZJr7eFblm/D+1MxK+d4iZf63/9BeGadnG31x2fiHeqCBfOJ1JzgOj/n/WvbOnvjHxOqLjr98bAH3x9xjyjsgBx5+tf2cMv6uCiIvQdnb+W3T+l3xn5muvUWkkIQuCK5/vbIRNzEugp2HVs9GBvFZ9W/jHYaeNk5wvsrHmHTP6d6j+/8l/x/ABf3s1bt9kmD/e2N3b4XMrzXG83sYseg73mxc9s/Xt7Sfk3Yif+pOu62iffGemLnACQqPvgSbbls/1tTUwIy5//chTtakVkPfIBZA1Cu3jZPtdHJ5GUFkmEt3HzVnvmPe/ZCqjf5z8I85Nnj8Tkc/GKdZa8+JdwSEtJU3OX2Iby7CKegk1QxvIETbqINun5RA6dT6RSIfqf8PxddqOySIBwsmxhLElcOA+asLVszVrRRBPzyQaYVzbUiSZ2NGF1tjGuN9kOq7PbTR4MFOThbM4If0YT3St7WPylqplLxB/8SaRngM4zdLHymyB0ZPzNBx0T/A6USM8A3f9AfpUqVcwGnH/6edo0OQOFwYoZNXqUOf20003lY44xfXr1Njm5OaZRo0amdu3aks3RY8aYF154wfTv29c8/8LzBiqk5tprr4X+cyEze/Zs069fPznrV71aNVO9Rg1J89vC33AuaYwZg7RPtW1r3uvVy6xaudLceeedKHYBpJtj+vXvK+mqVqtqataoKdfbjBk12oweM9pgJddAFc/06d3bzMrNNQ0bNjJn1j5DeOvPzJkzTd++nxioFBmoLRrK3wVnvehS81UN+UpUN4kSCDlN6BT3gG/fvr256667wSdXzivxkd1x222mc5fO5vvvx5kffvjBYEJnbrrpRrMc55reefsdc9+995o99tzTLFmyxHw9+GsD9TqDSb2BKqGcQVNxLOOgL77EGbci5sorrzSlSh0kmZE2kmgozKRzIRoTSHPccccZXjj9wAMPiDzsEimpadasmRk7dqyZM2eO2TWqjzD99Gm/mN1238McfHBpM3fuXNOy5WVyLm4ByjMXz0XrZd68eeaySy81Jfbd12BygjIN9jJCgNbPSuxTwjQ97zzTrXt3iVq8aLEpjfN1vPS7fr165pdffzVlSpeWvPXo1t2UxHm1pk3PFdqRo0bi3tyROAe71Zx3zrnm2OOO9ewH9O9vxnz3ncFOl2lxwfnm/fffNyVL7muwq2S++uorPIMFeAY3GwzgzLvvvGNa4xnsiWdAx+eAHSEzc8YMKQN270zjxo3NnNzZZvDXQ8xvixaa66+/Huf3Cpt+ffuZ1ajPO2+/Q84f9oNc1t/dd91lsFPxh97/Tq++am5FG2E67Pz5MhAI63/p4iXmo48/MTNm/oqzzvuaY489BvlqgvwsMl98Psgs/G2had68ucFA1nz04YdmA8423nnnXTi/yPMzxmASZHrjvVi2bBnSNZKzj2xvt+Gi8dJlyghN6g/lfzpggJzL6/1+L7Nr4cJm3Phx5pRTTjEPP/yQadOmrctjmNGAiaJPPrmKnPXFrr7E3nNPK/PiSy8Zvu8Y9AYpHAjVXPPNkCEGkyNpVscff7xYFv9xyhRpZ3xP586bK+8/ZRxzdGVTGOdzJkyc6Hld1rKlee/dd+VZH3RQKY//PYDnD3mJ98vIXynUy8033WReeeUV9zCQ+LdF6KPQP41Bf9O27VPmffZROI99882gw7Ns3fpePIdm5iy0X77HRx1ZyWCgb0bh/b366qsNdvolC/iA4zl9ZCZOmGAqVTrSQMsA79bBEocdK/PIww+blatXm72idmlwtqr/gE9Rxh/MoeUONVj4MSVLlMxY/9WrVzfQEjAjR44yhXEe6+CyB5srrrjSvIQyrQb+A5wDvea6a8WM+4vt2pl7WrcG7UiDXT2Rrz/6/C6++GLp//ujLfCBQL1eztufeuppaJMfm1IHoi/SjkoTw0eWzWcD+iPPE9AfHmqweCDt88fJk/F+jpWzuuejzfZCu1y8eLE5p8k55vgTjhcO36EvaoV8jUfdYXIkfewll15mdt+juPTTffv1NdCWMNiRNTWr15D3bxS+S/w2YQfelCtf3nzySV+zCO/6jehvoU5tBg0aJPElS5Ywt6Dd74q70+iqVa2G97WAeeKJJ8wQtDsskJlmTZuavfEu+WLlU/8YsJixo8eYsSgPFjzkPHuf3r1Ms/PPl2+RTw85GN9IX8azkk2bNhPZjfHN/OqrwWbN2jWGl8az/bF+cVzBzJw1y1REe8EigGkFOwfiwHArzjoX3rWw5PcRnDEVxXHg2W7POque6frmG+YafGufevpp83TbNiYX78v++x8gyfn9q1ixooHKtHxHHNPMv3z+a74dYtYO/cKUfqCNKVCkqFk38Xuz+Il7zW4NzzMH3XCnmfdoa7Nl0nhT/sNBEk9OuZc0NrscXM6Uee6VuP6AxyKE1P+wYd+irK3NDPSxgz7/HO9JJXNe0/PM7rs7WwbYwcYZ5TFm0JdfGqjL42zp5WZPjB/ERRU6Z+4ceX/YzquceJJ5E2Uej+/rsGHDwe9weS/69x9gJk3Q98W1PfKgfYGvvh6M8eIIU+qgg8yJSF+jphuDOCHuV9u/hBBYuGK9qXFjV3P/NbVMY5xj/HTMTDNv6VrT6OQK5rSjSgvZuOkLTdt3R5pfcO7x/itrofzWVCi1t3mhz1gzfeZi88BVtYSu3knlzNTZy8yYnxeYm8890eQsXGkGT5hjKpbexzQ69TBTvOiu7t0G9WycDx0IWWs2bTPlDtzT1KtSzpTYvShicI4ddbULrmPQil67YaupfdfbZuzrV8tZf21/bd8fZfbdq5i5sVF8tnT+sjVm0PezzIJl64RPr88mmU73NTZnozx00BI1X47PMRNmLjKF8T1rfNrh5qhDS0rcktXrzMQZS8x3038zl515tCl/UHCWXSiiLhM8vvghx/wwY5Gc5eT51qMO2VcoFq1cZ8Yj/bjpi8yDl1Q1H4+cblav24TzryeIIc+tOJM4bPIcM2rqAnPwvrubLbAb0W3gRFPjhEPMi9efCR4FzJoNW8yZd75jvnv9KjlbF4nGvCDPHHHRq+amFieb1hecLujFq9ab6je8Za4//xTgThPczR2/MMPG5ZgpPW/CuX6tLcclfP5PvTfKdOv7g5n10e2RCBfL321bt5sjL3nV3NDiVM+XRJr+3q7fmP322s10/uA7c2NAsxJlrXp9VzPt/VsjnklP0/PZ7bdnMXMDn53PYixf3/9k6lh+Kv6PhlW+0DNA9y+TXwPGgMTwz67R9Sa45qQg5ii0+0AbJFCdbWLrcUezTnRGs3otTlSTTvUU8DVIndEmCdNDMX1yTp9GGROmRXk9iX+4/BOrnGS5a0CHiYpt0KABm509p0kT7DYcby+/4nKcc9lX1IAwCBS6T6C+1ahhQ6Gj+uirUAHCwoD97LOBsqL66quv2nYvvoj4ArZDR7f690m/vqJmR95nQwYMTMjuyfyFC5DuM5/uxXZMZ2xHrM6uWY384Gwbw02YH+y04cNk94OqL3diJD9R/VOlbN9997NvvfWWpXymefjhRyS/5H/AQQcK/kXJl7EdsKKcuqYjxOFP8PwvwzmzkiVL+tipUEfDBMY+AhkYNNgLL7xQykvVp912203kYzCE82jDZZfxKeyEvP322xYTPYvJR8Qnz9586y2yK4RJkqhFYeDnZeywYUftf8zoMdglPNbC+Izt27efyP3mm288j99++01UY1vfd6/HxcVKb/+v4azec889Z2+68UbhhcmLT9eiRQs79rvv7Al4Dtdec43DR/XviQBgwCNpO3Z8RdBsG9fdcL3UA3dXe/XuJedbeUb0zLp1pE64+7kZ54UuvfRSW7VqVcuzog2gV1+sWDGcM3NqiS+//LLszGICaU884QRJx7N2j2H1f5Y8g4tE7lNt9RkU8GqFo8aMlrRYIMH5toE4m1pUysi64C4c1UfZZjDxENXMo3CelOHvv/8e5wyPtkdBvZBhll/cH+h/rrrqauHlEsS/Yf2H+Roo+Spib7rpJiGeO2euvH+UiwmDqJly9w/fAztyxAihoUrdflAvvQbP48UXX5I8YlHIYuJjZ8wIVrBj8UGzSj5/LKZIeu6EiYszGqSOwKj8J50IjYhgRxMLV6LamZ4gxsRs8+yxxx8nzwWTAPvFF1/Yiy66yPrdHBBSrZP9kLqlaI8HQnWU/Y840MT8lCqzj8UYOxSqrqSvW/cs9GslsdIcq4Ny55mqwKzvhuyjSpexsO4qqqePP/GE4M8++2z7EvqQEXiv+bwOPeRQweuZOp5x5dlcPgP2h1Tb3Hvvve3S5e49ahvtaK5G38acUz5Vb0n/wQcfSB9w6KGHou+Dam2GgmERzxZGH3IM2gHPyF926WV2XaAKz5LDOIzFAp60cZ7dS3XKdu3aNRYG4GSHN6S5/fbbpY0Vx870vffea+fPmx9G261Qtz2rbl2X5z4f2FOhzsk8s0xU6aUqPiY82NE7zd6HM/yYHFtclG0HDBggfAZgF7Vq1Woio91LL9qOHTvK2eDwO8A65nPg94PnWeuijhim9gXVu6+84gq71157SdtoAhy/D82aNXdp8O1Qx76EqtK1caSAdX/QQQdJe120aDFIdlz/MPIk5x4pFwumosXB/pvn3H/v+0+VZEwAbeMmjSUrVatXc1ogIhW76zh2QL5XXxv1o1GG2Y8T3+bJJxPPn32j1CPKcgW+gTBEZ7/88kuh0edJFtzRbNmyZcQtsxfTJ9//xd27uB3MHydIwrkP3GVnnoMdz2Xc8XSOqra5V52fVv7v0C9WrnyM5J1jCNpr4BEMqnbzfdi4aSOqzNkROBd9LSbgUAU+U77LWCBR9pZ9N8vwId4Fqs+zLjARFw2HdevWydENfjf4/sv7gjZ2iLQ9x6Mu2iUWyeXdxMTcngkZqS5T+RcuXyu7ZJc909+ecdc79tZXvrCVL3/dHtaig/0NcXRfjJuFncM+snvVqf8422XgBDtg9K/YkeojaTsN+EFwVMc84853gOtgL2rT17Z48hP7+Dsj7BFQnTwHu2QbsAtGNwoqrRUu7GDf/Hyi7f7lZOyUdrRMS3fJU/3saTd1x9nEeCesz7c/27uxeyou+P6cfmsPqLi6PDLu6x9y7TFQLe3Yb7ztMXiyrYr4ctit5VlBOspv/vgnyNsndsB3M+w9bwyR/Hf+zD33r8bn2FNv6gZ1z/Z2As5BZnIboUZPlVOWb8BY5dEBqseOx2fAnXwjeGCnjzQn3tBVYObzt5XrJO62V7+wfXFulDuKR13WSfI3DGcl1fUZivJ2icqrSPgcT5Rv/jJ2EMf69j900mypb9aRuiffHSUyFyxjXxu71Of/1PujbAXUT5oDIc88sx6eo6zQof6/npBrG9zfm4ZLRY7kJ6L5ETuVFS98xV7+3ACpp8ffHYGznhslNpR/OlR9w2cXisjU//v44PnH/HzsDoGYPvn+pyWKCdOifq//S08QY2K2f638ajhyyaOXVJ2tG53RbIgzmo3Pa2bPa47xulOdbSgENWvTGFAtl0up3Dibcdaj6FREGGYy/QvxHo74wosgH+OBf6F8qr65iaYr9UbopWPWL8Yg5s93AwzsIsmggJ2/1s6zONPFAa+q/mB30pbEBJB4deRb9uCyLgj2PDfEyeeNmMTAkqTlZI0GanhGlCqZ4kDHgWvZsodIkB8o7JSKYZD589gJx2pE2N0RGk6GSuyzj72OA4DIYffVYnfKrlwR8X8G+WIR8Sf5ivgrvZaL8SRLdUcfdZTdH2fJ7r23tQwe94E87IxIp0faF55/Xj6KJ554ouXkDivsMK6x1O61515uIBfJPv20qvZwGN6ge/+992RSSjpK5SST564yyZcEKe0P1jktB89qxAm70pKHVzBwU8dBHD/WY8e4TnkHzCVJo4aNYNhkiu3c2alGD/56sOC/wqBGBlhgsMcee8hZIpWhvuabAwDKxE6qverKq2TicUatM6yoOoKIamY0pLQ3BoqcmE//5Rc77ZefcbbpMbsPB+XR5JYDKayyWexaighOcLG7JDDLxfbHulb33PPPpT2DrTjDNGf2HMtB81s4O8jyw1oy6ArYdzDxV3f/A+5cKieYv86YIYMYlmGfEvvYoZicqFri4MFfaZI0X8uvEZw8169X3wUZqX8Rwdw5yBfO0HXD4ggj2Q4os2eQr5fbvyw41hUNiQwY4FTosEslXFSlbumSJcKe6nsJFelIlpedmskofs6c2Tgbtg8GdXcLqSZL+Cntj3Fx/+GKx0UWTg7TnJY9RT7bL/N82+23yvtKo2RPcJAduaMrHy39wwP33y+LX7vtVkyMS4ULIEqbwlrR4g8fNtwewnc+IurWrbu0H538aEQ7LETwGdx4400yqP1pKs43wmE3XPDtgjNwxPOcHemnQF2VrB955BEJU9WWjm2YA+efp2IABIK2bZ6SeE7K6Dj54UR046YNEu7dy6njM39pLqp/vjOUyfb/0EMPYZFpu5Bq+akazEU5TrB4LptnYyVzJFAigNBIED5vvvFGHIF4npelMSGexeb7R2NW0q9H8jXPVEWmw2665OWtbt0kfPLJJ0saLuDQwZI1Fgf3Qx9dAswFhff4FrvH7ru7AH6puivfgWee8VmUfvqQskLDs7ssM3a05FkQCe0Cwb377rtCw3yzDXORRR1VZ+X7xnLjb+CnAyXN/fc/ICRalvzqn0MhLigWQR3wfZ0x49dI1VwlxD5FqLsb7xHP0mJnT1BctDgZZ2d94YDlN6tOnTpREpeak1uW88ngHVCey9EvwkK4xB+F79GEH5xKq8aTwwlYgPsz75+m3TBrup3ZtI5d2P5Zn8Vl/T+Siebirq8J2XY8x1mXNrGz775BkyV8LuAx71deeaXHvxQtfrV/ub1dumSp3XOPvWyfPr0lfnR0tMAZncuTxdLd0R9eEaSnYTouXonD823bto17X4K2R5nd0fagASOLjzfffLOQ//rrr/aeVvdEaeGxgsKH5GLkV1RnMSlqcH8vuyKaEPB8INVpv8QEUxzkt8akjCqRoWv9xlA5oxey5mSNk6xbMZlyaa19rf8Pclav82fjBfUCVC1lIruCk8Q8+2jP4XbWwhWSxbs6D4Ga6AeRcSfH4pKnsHD9o1vsdxgrBnE4eaWj/LUwhnPCtW/YJzCxUfcNJ2GYLMkZTRB17PudTMpWReUk3SVP97WVLnkVhh23CZ+ugyZK/mGJV9lAACW4Unbo+71MuHXyRKKLn+4nPDZvcZNjGiei3FZdhqAv3WanzVkmyTt84uTPW+IWB3oOngJZL9svx6Oewd5JYJ762eFT4omnyqc9EdbtC8Hk752vp8g5S9a7Ok56KZ+qw8KUjJW5EsF3E81IdRbxIYlMNCHLTWpjBqvWbZJzudPnO9V3qs4+98Foz/Vn1NszvUfbT8fMsI/2GG6PurSTPfOud+36DVs9zSRM4vXZeakp8j0xgaD+E/goEOY7LV6zni9RFAEvfxLG5Bu7g5go2Q6TR3zh5SvhT5Y/oToLmz88o9mocVN3RrM5jQE1auzOaGImSh1bHuoMXTIjcQaFJhkZJHMRGq2+J0gggkAAKm0SFYUUqb4Se99FaLT6KdFRMIgNQKVNoqKQItVXYu+7CI1W/6STqsQf4ogWKpwWKo4uBEIak5DOvHsPwTEtjYcQtyxaqf/s088kfDB2KjnZ4s4LByoc8CgjPdc5DrtEKp+r/uRzcJmy9kRMeiVdxQpxOhAWwaqozw+YTfH56Y5QnoWao/B4jxMSZeyEym4p+ZctW0bydTTyBZUlOYcYkTgvkS4IAKTxHA7arrn2OpzV/FYmIlxVCxM2j1bTP4wmv4yj4RDKdgaTHM+LMJkshvIwxLOxLVteHrJxcFgIlyzCJ0lfwg4fVELsAVg5PwgGPGhUhfI4wVbHnQ3i5szJFZSyU1/pKJJne2RQhgBXqJmOBiy4ms6dmeWYtLtJmrHvYpLsXMRJGcK/H5MC1hd3c6GKiJ0OflAcAX9peZa8aZVUB8mbYPlvT0ymuGOhtByoko5tjY5GMu7Dzix5dIaRDcYt1dV2IJs1dzsaH330kdDrD60xVq58lASZ9mPEMy13XtXVqF7T7o4J9M84H0j5NLhBmh5Rm38Dg3FOTn/7LfVMMjlKkoTPnS3u7ECV2eGD8is583X00ZV9OqgqunzNcoNTRrS4oIVYNR0e7WA+8sjDshBE7QO6Dh3aY5BfwOL6HQlzYnHrrbcKnPxx+YxyG+XGUSzBBPfYY46zN2GA5oyzKBXiA1D5haiTTjoR54OP9HSczHGyqUZeNI0SaFr1j8NupZzRjBDc2XyzKyc+znE3uRIm/+Owy/r9uPF2w4b1KVmKEipD9ZVB5F9wQXN5Hgdg0geVOiwglJDdygtQv+KidNJHYXLFnewQv1gmmgWwa9wuIb/n2z2l/sWKKBIcd+xxfiHJMdBfJ6ANBsqcIKqRLBru4a7pyVVOkT6JfUL5CuVs9+7dXcKU8vB5cwdn0qRJ9mb00WyjLS9rqdUb+0gNNXjRImA/rBHKjj7fE7bpT7HDmChUFODuWu9evW0J7PxSzsCBn0ueTsLAn3muggnlcccdayvBinX5cuVdnsGYu0ic8ITu4oup8WHspMmTBc22BnVKT/IZJ4DgCRVjfAdOiL8fwW4289q6dWzlm9oX5Dk7F4PvqGCV8T5xR00ddzTZdykBd3+LwkrwadgNpvsj9X8g2ktD3UH3nCR5HAoqln0TJ5m0MqyuAp5pDeyKBmQyYTr33PMcSRQhO5pof36iGeHZ/qCGjf7kfjsafSqNaLG/+mFCNNmM6LhTz/P46c4RRGQ+H6TbBENWs1o2twvatZVFQK0rWphd8HwbO/P8enbWxY3trIvwd04tu/DVdgH7iCO8Yejv+Ty4+KXuFywiEtesmSvnehgg2wC+H0Nj5aqrrkJcAcu+lRmi9XpaQb+s5aWa3OIIjYwLFAFVfWknXMw4FotUXHioUL4CJprdhYS7mFyYpmaMGMHShFGJM5WfJAuXrcOksoN9DbuSWn6olcpE5aMR7iw46e598xtbKTHRzLP3YqJ55KXR5DMSwJ1JToY+9+ci8+yvC5bLZOhKnDsk2fe/LABNBzEu1P2LH+3maMFI5VOePihOfrlDyH5Vy8Dox94eZt8aNMnTfTMxV+Tq7iVpONGqgHOGxDHtOQ/3Aa+3GOXdB99yUt3BcmeQzHpjZ5D5/1msznoyAcijiecR5QZen2HTpL4cD2t7fDVZePwwg4vBjo6/z+O8Iw0v5fy2UvhxF5PGcr7wk8Q82f1jHrdvi/gLpfvRHcTnZKLp4ntj95P5/XYy8+8crbwSx93FUD5jQ65QX8WkuYNLJL9xLMcnzKuT5UgYy7Obz3+IxfuIk9v1HKNBRxj8dh6ISTf4cPeXjjwee3u47cpnRxeLTAYSeKFMkmpI6dR3pMGvi9Bo9T1BAhEEAlBpk6gopEj1ldj7LkKj1U+JjoJBbAAqbRIVhRSpPohlohntaNaDJhI1ZRtgR/Oc85rbcznRrN8AVmdVdZY7mtVrqYx8fcc/kJJCmR6TionDHlJA/RSeYdCR5E+YHpOKicMeUkD9UGAK7EjyJ0yPcZh4RyKmKFKkmL2N6p0RatrPbqcMZ0y81Of8RNOt6OBclnxQ3n3PrS57wgggqy5vYJcMH1E3wHfMX4LqFD9E7777jk8SifXyeeWB5CeimAYjIBysaX6o7kge72WQjbNLEvdOtOrthWjhPMJLjWMi1KiRo4THhx986KlTgYPw4a8LNdDQcUePg27uqin3umfVlRVnqq1xsPYUrgJxTil8sWMgjvLsF2LHhBNLrtrSOZI8W/mYyrba6RxYOffwww9L3vv1H6CoyE9lmmdpAIS7zYyhRdJCBQvZCy+6UNSZdOCL81XgV8ByNTp0Kp+4elggoqpp6EJpbtIG9c9oV450P+JKBj7Dp59+ytcVd2LYXrTeL4P68qmnnIK8bbQ4/xUNIJ0U8sfZVqjY1XWI6HfDxg0ywWiLXSA63MVoudu9//77RRQwxIEBDg0cUe2Pjrzq1atnq2ARRhwQl1xyiZtQOUzaryuf+2Xkd5iosDw66dUYnMGSXXBOmDgR1ee/ffu2KF/7+/IT4Ir+RRde5OWdUasWBl5RvoDlQI58PoHa56RJE6W+cD7T0yug8jWsLYZXKXCid889rXyUp1VAfU8RA9p/OJI827BRQ5l4ccIYunQWDsMdTZloxqWOIZBwRzNUnQ15hrDKD3EKc8KFOz4tzroqCn6eqLtzYBsbuUEfJUbOCrg+SjMNX3c0ce4x4IFrALD7zOdMLQDyLLlvSXt4xcMTNAwoq7Z430m/evUqoeFuWTgRDGl9oigxd+YLYQHnY6jkq3ODdWO5WBBL0VgbqfRzQWZZjBQo1gzp07uPT0uVT82rAp8O+FTyrH3wHnvuhcW6igl+Lo37rVO7TmJyQEK+f3yXcQ5Y0lEzIZxoht+BVPmaD9Ybzr17uTrRzM3NjUhc/9ewQUNPoxNN5clhOnfQ60CVlu6P1D8X8dj37Mg5/jCSh29cWSya8r0MXQNMVL0hNETwfacarvY5+uyc6mwBN9GMM21hA0G0V9yuhrU5s3LkvddFJZXPq6pSnw3zoaziPDnM5kULMMlsan97BRaiZccgoI0SwU6GXGsyv+3DdtZ5te3G3JyYTQSRdPjwYfKMueisjvXNd6xRZLCq61tdZYINWwa2V7R7z4m5Sr3iiiugAVBKJom8Amk3qHa/+ko0iQMVzjXDsm+y7VGWyyomKLCkS60g9on8vnZ8pSOj8y2/ROJHdzRfx25jVGw7edZi2dH8eHj8LO99gxPN2Fow098jOOZRU0ItNppoUt2WjjGsi8Mv7ig7dUpL9UuqtnJHj9ZHl64OFtKUHfx3h/wk15QIs+iHz4sWcBfjygxHCk0EqMpWwKRtCCac6jjRLIeJ1KBxbmG16q3dMdHsqtHiU42XEyEtv0w0sRv481z0K5qPIEU14RFPVkkiPLADrOqzOtHkhDJkQSutlS7pKLuuVGu9qeMglKOb7MZSBGmlvJjUiwsTA8FrSDgxDFVVx2MyyzocgOtE1DGeZVqzfnNCvouPmeKMpkzENZ2PAaCqs6GsNeu32MOhFnsirl05BZNh/nEyevTlnexpt3THJHmTsvL+8CmoX9TNc2owCOMQPrslet1JkMNQvjDwCM8uDXAk+ROmx6Ri4rCHFFA/TWqMcCT5E6bHpGLisIcUUD8WlwY5kiRhONGsi/kkr830xoCaX8DrTWB1Fjq11K2ljm11rGo5R0bKDH4AqmRFxfSEklilVd/HCuBDGh2kZ5zGww9AJVaUC2tIfaVK+j5WAB8KiBRHP4ADUIkV5cIaUl+pYp8DxcPF6ixwQpYn5ypuux0Tzcj9Mu1nGWh068aOxfGi9UV++EXtEyh+NDj5uz60bBrmFSnf6MJdIePVichePzY3wiy/yic+dMUwCXCDHMrOs7xOhHy6vdVNyCZNxCQFg5jLcTbF5U5T51kY9BDajOqEEZlPI4APKRN86Jz66axZ7Kg1Hn4EcgBI+Tw7qLFMfOaZtUVtTgmpJsyPLtW11Aohz0NqmpkzZuKc7GovNwaUgr6DaXnzwQcedCQajVBTTG5xEX2UFLu9ONPFutJBYhThvcGYlMCgh4RvgTobVTPV8d5Lnks9u369aBCSJ5N58lu4cIFmJfaRkFmBcR7b8vKWUYjcggwixMGxWK1lFBxjeeaNfDt3jiwaAsfzXVQrXL+OqkWw+HfnHTjbdTom9HXtK692FLVoiQADGNyR9vc2nkHs8mT1n3z79OFg2l0xwLBYPo0IYWwKgxJjB8hkPFLh2mN3fw0Hc8gdhNtuuxVqc24nUXKtxVIf/BR8HeWgnNzc3ADrJqxUq+ZOr+aLaZ5HO3D54o6uc5wgEdfp1VcEsXnzpmBCjFT4DwNNck7wrHpnybnZkYkFAHKmU9+F9JeDWu6ywLiIQ4FsxIjhONv8sJJEvqanH8AA2X8ccXglT8/zd1yI4L2Z2zCpdk7TOO0ALgypo3qxX5QQspiWNFQRPB67Zs4xTuPhB2BE4FExvZVdIO4epzp9N7qI6ihiwa9LF7dTPmOmW3lWPjrRfO65ZyM2Tj7PXfMZTZrsVqZ5/ozln5XDAWZ6BvVKJD2Xxh1Mpl9EFXAh1zSRGPEcbtCgz4WW55yFGGgtw8/oo+mSqfNg66A+NAH29pMIIYp+uEhF2R1U1R6Jr776KssJXOgWLJgvdDASBXSeaGIwHQw+ObJAKEHuaJ6Es/9xbvJE3ZkquFzUoaN6I89f0zGNqgzfgLPc6c4JoEzuaDqXh/eik+QrNyc3wnFhorI9G2MH5/LkvHe1alV9vGrnUOuC7o/Ufymc7+cOmcupy4vAAUheMH4jWhlcCHUuT85+Uy2YKs48r8hFRzqq1LI8VPtVNgS24swu8Y8+9qhjIb/Ogu3111+HkFLTYvPxlufmPQqx3LH3u6Q+QtMELAFuh9ZF7vWX2PnPPuYiQMY7Mxe+9HSSEHzWT50sFmcXdWkfxYFY2Ua+9uGf+okmrGpG1nYfe+wxq1a4u+LuWTr22SxreAXMgw8+IOe0L73sUstroeTIRyCIO5hMQ82SAC38ZqA9s/+hy8nNgWZBRfl+cFK/I8fs8xwmd6Ve/3S8J52cg4kmcB/h+hLnnOpspUvYfyFVVO7WXYbaSpe6Pi1C2dE/c0fzZTnXqYTTMcHixOdZqFTS8YwnJ0386/DJ9yKr0wC3ELNwxRo7ba4uDuXJOc8x4Km86H8/bYFt9vhHMQqxVHXlLunrsJ6rESOgfkq5n43l+MXaa18aKGE9u8g8Uz2YZf1mUi5JbO9hbodwSrAb6Pi5El770mdCLzyiQpMHJ1xU1aXr8dUkkTPrtxUS1p/luHKEkyyq917z4kD79tc/2VXroIYvfByzFjg/KiqvkigSIAR5dit2GVm3z/Ry9Ug070Ll9SFul9FJuqH9QEziuyOg6R0+9bfN+yPdGU0hS9JSVgXKkmfGOBe/av1Gu2DpGsvyL1iKtoNJ5IPdvrVLsFAQO+WVJ+dw+Vw+xK4vHXez5dkBVioH+JDQuR/F0Q/gAFRiRaWnU4p036cRwIcCQsXRD+AAVGJFubCG1FeqpO9jBfChgEhx9AM4AJVYUQxXw7zRndE8SzYuOa/kGU253oQ7mtSl5VZn7bp6vUkt5ZPwQ6ZxhGLVj2MI6aodM5ygQMCHBfChJIMglJlCseoHCf5m8nlzZpkyZbDCWxL3cTndfKq2UBWvZaC+woE4B0+hmXyeQWGH73YnecZmpfApgvsVaSSDtUmVJlgA9BXwdDQ55SBb69+nK1wERlo+F1qmu/XWmwWm2iqsBmJFmRMX5/S83AvB7gLVhfbESvv30ZUFn346wJ3RXLnKlsQKNtWlaFqez59GhG69BWqCYMe8nnFGbTt//oJ8n//Fl1wsZwpVvvr6hHv1el/qYt68+YhSbJ5M7niX2i+/uM7lTlz5wEEYy7QGOxqFMYHm+ZOpOL/1zjvvyk4VLF/ax3kP27XxOSOVpz4NHnE3cy2MI6Q67kzxuUyNzpbx3BIN59DwCdWstP2vgMrzrVhMuO666+Tibz7/g6H2KDylCHnYxbtUVoan/DTFi7nvvvsFRz5aUh8JYPp0pyqVepZNaZiOg7trr7k6kZ7GOQri7kWqFjNixozpYjBK1bDWrYPKGwZqanSF/EL5bsGiACZecyNRLnYadha4APIgVFjfx3PiPXRU6+U1Ak2bNxPadu1elHsCV6Ct0I37fpxMPHXAxEEL2z8n6w2i3RIarLlaDSJJKv1xci+99BKpJ7mTMori5JMTd+4ayeINJrdUrX0f1+TQgEUB7CDDoqpt1pT5ysMiTG95lhOxU0nn2n0BMfTClX9K4qQQlnMl3v1oreSJGnBDGJlRw0GM1+dP/t168O5VgzN2feznePe46306VA2fefoZUkIVsodMEJbgTGsmx7bl+o8Scr7K0eTJrjj5ckcflnt90snYtYZVW7kLkvy5WkzjLDSawnsyNecO4IR/u7Rz3jnIM92pjvTdu3d3eYRqoXPKxfk8b7snVAxhrVqiw/JvxMSdu0rHHHOsqB4zhfZRY8dGg5iIK89UcofkWqjPUyXy22+/lWzSQBXLyjAdLGRK+AoYUeNzXok21eKCC0RdnPGqyj4bbYryqCLJtkXDV2vWrpPzka91eg2GkVxfyDTq2FcWwjuiA3Wm52Cck3Gq8k+f/it2MFuIcSvW748//ig7uRy8qwvLz/TsR665BgsNCDB8P9ojjb/NnRuroL308ktQBT3Q5ubmChuXZ2fUjVfjUDYnp4MGfYH4POnjDsZOvE6q5qC/ZR/88CMP+/bX6m6cr0T7587fB9AUmQuDX/vgO8RjEgNxnIJ8YIncH5lYsnSZ1CvrXx0srwqOasTqypQpLe+4K42FwaSqtjK0K3gunI71xbtZl0PlnuX9vfpnGYrvXhwT9rMlffjD9KGD9V1McuuLZsjn+NbwfCLvMWVeeL6yRMkStmfPnpLkiccfsxUqHubriJkhvxlQ52d7uvnmG0PW9m6cNWS/uX79BsHzDDBVZ3k+Vh3vseaCmVtU4/vLd6MFzkbquwEZeGedy7NLPnxXjP8s/eB9u/zLgXbZZ/3kXs3F3bqAROlgJPCHsXbWhQ3twhehbYLvhLqYwmGGDx8headWgKZvhXzTeB8XUmiYimUTVW3wbw9DTwzDwrV//zhR7tmDdZSHdpUqQZ+XEfVo3lMct71B2FEdgSM3xwmO6WkUaX+oMBP+nN95XLmldieIC7lPzV0qu36y4yQRuNLsR7fL9ybOK6p7uMcwmTxRDfaTUdPtuo1b7MM9vo1wK2zfUb8IbvRUl7bH4B81qX2k5zAx0gOLrJKnpk98aD+NVClzF60S+SIL8uu0egfquJ3k+oxla9bbU27qHjw7x/IBTGx6fBXzd9g8W+WGt+ypN79lf8IkcTXObF6Ks448Q3jFCwOgrrrC8hxjxRbt7UM9XZ/FJnH9y5/b2ne/B+NDeE8Q5jlSTox4ByfdV+Nz7XmPfoidXzfmII8KLTqg7MMknu3qhvaD7Jl3v4Ozsmwjefalj9xZzHHTsSgdOdJ1+2KSrXF7D6gKu7YkryZk4r+4ZavWS/59U43w6s3CDiknzq1wXjZ0z+C6k2q3dZc74Veu3WArX/G6fQ8qtXR5aEtX4/qT9jgf6lz8/JlvTrJhuVajmEJgkYVJZCvsWqc6zS93oZmfh7qzLhz2hQ/H2Cuf/1Tqn2Vuirqrgp3PNbgHlO6hbkNxvUrw7JBM+TnAh4Q+009mCsWqn0wZvv8JCgR8WAAfSjIIQpkpFKt+kADgf1O+29GsA4OT9cS4LHc0GzQ+VyaaTXVHk1uduqNZrXqtKLeZM58sigsppTZW9T2tEnhEEkhE+4AHksQZQkqpctX3pErgEUkgEe0DHkgSZwgppcpVX0mHDxshg0QOwtnZc8D3FlYa6TPMCRJ3lCZOmChGHEiHawYsVVFplXBXqKaQjqp9TvWFuyEj7WEVKgBfwO5dYh85gzduHFfWLNLcIQYimIYqU+1eeFGzAhXKEbLDRRk05sCzezyTxTN6mh+qjPF83kQYRKHqk8tPYctBEB0nr7R0SDx39KrXrCGTX5Z7BPiXxzkOylb+46N8tX3SncUbOnSo8NEf1h8HlJwY8rJy8q2HXSNcY6Ik3qdlRqf+51Hy0vKjdsQRR9q9saNw/PEn2PPPP1+sDQoVBPAMZyHw5mCX54po7IgvIgd/XJn3LnqYXO2m8QieQWF+ONkIHY0w0MAE6780ngtM4oOflXO0F110sajxMp/cqaxRrQYmt273bwImoDxTRZ6cHNBRJC20wiy/74F4NyJ3JViPDbAQpANJSYAfTpoOLlNG5Jcpe7BYrNR2pz4HShyw83LzVPcM6oP8mZfyaEe0xCsOmaEVTrY/TjZp0ZAqjM6IkiNJfQZRlWGykicqa8wz6467DWIkZf8Drap3Ui2WFjzVcaDEAaIauhr6zVCpG66mcxWez4iGoVKfOdP/gt326tVr2AKFCko9lSy5n62IlXXu8jIPalE2D/nibh7r3OVrmqhF8mwX88X8cxeEg2IuAtANHOjOQTNdzqxZgrsfZ7bIlzvEVHsegmdOx/ROpbyA/eDDD6QdSIT+gICWaimf6fmnMBdfmJ67PsS/+cabUSpinePuBSeZnCyQhu8prcbS8Vm/+VZXOe+7yy6FcQ/m8ZaDcD43Pfs4dMhQOUumMrljrHknj69gqIY4zRsHqy+88DyjEk7L/+abmkcXzZy+/vrrWCDaS3hwMqu72qSYnTvH1z9l8GzgRbAcre27OPsoXciKil0TfQppaWF1FNS+aXQHV+EIjiqYXBjYhokJDd1wEYlq83vvXcJ2x4SedUL1R6r0kcf+++4vd/NuxrlotgnK5WIYDQdxMro1GoRJaSL5fKpcUOEu/2mnnir5r1a9mlefz83Nhbr3STCqs59tfE4TOSf4yCOPySIA5SdcFH7w/gfkOWocjSOx3tn/8z2kanMNtGdneMYlonEfXA0jeS6CcmqeuUNOd+aZdSzuV5H8nXtuUwz298cE7x6xVqtyBn85WOqC/R+1TciTdcp2zPrZO/oOjB+H78Av+A6gXohn38f3ggaMqB3C9sd3hIuHp6JOXHsqYBtF1l6PP/5Eef9POeVUece50MRdNmngyMyO6p/fH2njkEu+fP+dmrWWIvZZ98yfytf3okqVU4SI9U+jeuwzqEVwVKWjXD5iFmLciIbWhA/qn++59LFIuwyq0Q0bNpCFKlopxtVQYh08SA6r5u/IogqPFvBJufe3ABY/3sz4/i94Fta6G9eSySbvy+SdmvRXfev6H/Ke/9SjdvYtV9mVXw9CiFzzd7h+RMpfvPjusojHRdSjjz7G4lozkc++s1y5cvK9OxLfRbb7fbG4wP5YDQjhGicpP8/r8zvBd+iYysdEfUOetBOmo3EmPv8DsdvM94VtbwLGKri6QKwdN2zcSFTSP4y+M0+mfueDogyDgR1aaeVkjJZfOXn7fvpCqEK+JhOIwy/sKJMjlp+7dTTgcxgmH7QAu2nrdo/jrlYr4rZst6NkR7M9VEQ72csx4TjrnvfFEi2uSHEVCPlXAF+55Wuyw0i1WU5MaMyHrieM29BIDV0PWKR9uDsnhXGmOXGiyuZynN1MdV+My7FHozzM58k3dLPcJS2HiRStxPYbPUPIP4V/3NVdbF1MLrnrR8NDemaSu3cVUQ+cPB3VspP9BGdU2+E8IncRR0AFVN0AWIw97po3MClO53E/8su6LAc1Xp5pfQUWcNWJRdYLOooV3koXvSK7icwLLf3S0A9Vbh+U8kYpfLHzMJn7VizU8lnRUmztu9+VHU5S8k7LG9t/bmvB4u/pmHC2eW8kFh0cj/VYEGBZOFkWB55cLKh2C9WW28vfsagznbhTpMriJJTPuzasEXOHM3QDv58lE3vyoDEl7mrSDZ6YK6q1p9/S09a/7315/tMiw0pcQDkVz4U7u/k5X2QS+IAH8kvm8Uqp/b76aQQekQQ0vWB9wANJ4gwhpVS56ntSJfCIJJCI9gEPJIkzhEjJiWaNWnXsGTi3XpfGgMIdzWawGSCqszrRrF0nMgaUFOJCES6tFBkkJ1AxL4HwE2MShBJwcUmKBO4fKJ8rgVRj4ovN3QQexGdnjXuoZEWQMD9yLCfjcJepDH62YtC7BRMerloJDqv2NHcfOtyblpgEMI40jl8eVvo3uw8o8FKP+KHPdPygquOAfjPSMY9Uw+Pgi1W9Gem52MmJFwd2gowS5ebm2EwWKRkt+cJKdvi0yXvhglQDL46Z1FEkn+o3zIuusjK/yocWEVetyqTy6vhQBZIGEGLnUjPMs1OrsOsRY3A9AfLDgZe6UBZ3drgWR3UbqlKKi9of64XPhPXG3ZRtKSpDNA8/c9ZM7GDGHRx58/m7sm2X569yyYO7Vipfy89zjhs38YMY5TqQz+dE+XzWbCeZXLzrGHEAm4iT1NOcOfHHjOnnYcLOM1WcGPfr1x9Gf5phgFnQlipdyrUXyFuL3aBV0bm3VJl8jvFKtrWLsGusg2LKpWXicOeN7wXbijrWQZhn4nHHKJ5R9JGPyk8865/pKTPhQBM/E1da0rBsLDwxixYtwrNwg3Wm5c43jW05avc7O6obhl5//TWxxMpzs1TH5qIPB7hcwKDjedD5fodXUNGP48U6YNlUPiP5PvH5qaPRlt6idhzjhC5qf9wpYp43b2ZbSSkzCNejzeXk5CTKRYHybqGewv4nrDONZ/74x3c9nHy53LhfXsUTTiI17yw/y0Ne7H/0mVM+yyjPCT4Hbezj+M5p+fmsZJAPZiqLflj/2v+wDvhehu8bjTVR/TZ8nsITeWJfIu8W0glv/PDdmoXFg5Bey6Hy43CezcnNRZ+z0qFQhtBxASYX8ZmeR5TAk+OuVgzai9gvdVEnimFdMD80nuO4J2UwxH48BzTSB3uOkeosJrzLcf4Xd9ZKWYNogI4X88ldKQZD7tRuCBeR+PzZ17l2gO8S6pADPtY/656TRVaB9n98zny2dL9RxR9uxYoVAc9YmkCSNr3+pY2w3UAG+zW2EXWOQ8QHwimf+QodsGl1w/j586kC6ZxwwA99aRPIO+Vq+yeV0ES/3LXMyc1Bnoh1MSIcobMbnG2vvQ6704HjgkD6uxFx5PuPspFNxIkfValTZbFl6aIozlNIVMTBkbHwcGIMCP0PrwmiptPiJXEf6ghRRjyzmXgvuDtPRw0qXp9DDnxnatWsKTvcPL/PhVKqtdcA7tBDD5F3RBLhZzPet1mzZrr3JZLv4vKkH+WRgtCxnTiVc2LjshCiwZnNMp7B80K7kj4J9StjHMRzly98t7nDuHYjn3XEB/KXrd5g122Kv3diDAiTk4HYseQELj6Lh2SaDhCvGsE9m/7KE8amuuZPfGzDXUHGU62U15OIS5TfoViG3MUr3fMFas5ip60TJXAefucuXW3XrEueYZR3C2VmO2TZaXyH7eS3FbEGlSu5+523ZBV26uKykznrjunYNgmzXtXRmi8n2aN+mmfHTptv+4361baF+ipVkntiknk+JsR+Qo5EoawtmNhTE4bNn3kib23/yp8WYXXCrjj6y7DzuIn0yhF5Y5jPX/oW5FHehyiR5Bs0jCM+NtbkObg8cEyG/LC8yW8UtDIWrUibUI7FIgSvfKGTsuFH/EhuqufikhQJHIX/KRfTC4SfGJPOyMUlKRK4v6n8ajVr2VrQVuSGJa/LlInmOVSd5fUmLWwBIvAxNnhZcJn3Vvh5ZuTwb7FeiLU+LBkGAAMxmjBooD7icJ5eyFJ+dhgZ0AZ0HvSA0IWhrPxs/Wfb3//f969mzVoGJvvN66+97t9/qLXKxfb9+vcXX7oFvI3/V96/b74Zas6qe5aZN3+egSEq6RZhYMjUr9/ArFu31kyYOBH72qgQrZigR3PgDiOFBDvUZupPU8wHH35ksJMcPVRGJdOGof92/T/w4INmypQpuOD9Q8njf1t+am38E+W/1qmTee+9Xmbk6BFoLqkNJni6HvSAtJMwxPLDKJpZuWq1mTB+/H/U/oR52Na8IA9klP9/sf8dPmyYgYElM3r0WLPXXntKrWG32vz0808GxtTc++sqNPpN1mEiKhEI6DzoAaHUELQcTM1atQx2xU3jJk3+dP8D7SQDLQyTm5Mb5MCaGTNmGuyOmsWLFpuixdAPhW0iJfR3ef9GTZ1vLn/sY9Pp/sbm7CoVgvIoqLWm4fz8gM6DHpBEYejvUn7JU5ixqHiYtJnjrnrDPHRlDXNx7aMThb6x4yBzxMElzV1NTwnwARMPeuAfV/64YMkyxPhUKKDzoAey5UcNhLURtv8aNc4whXYtZHDcxEDTQXxc3Sh+oUL40oUTze1bMeHM225GcaKZwlQQiR8nMhSciE4JpFJLOEPiEBXCKewQdLE7polTpVJLOEPiEBXCMSeFXOyOaZQ2PbeSLkPiEBXCMSeFXOyOaZQ2Kz+1tiScofJCVAjHNamQi90xjdL+c+ofxmJMwYIFzJCvhxicuZGhMCzkygQTu0am3KHlokL9O8sfPk+FP8TkDwahTOcunc01V11tdtl1V8OJJs6QmsMOq2jeeqtr/KDzgVJrS8IqAGmwo2XKly8vK0c6/QiiM3BN5ZiBJEClUks4g4AQFcJkNStnlqlQzuUxvUUHwjKAjlfMUaA46FOEqBD2BB5wsTum8cRpXwtJlyFxiArhmJNCLnbHNEqbrC2cXZQFi3vubpU2OQz5hXDMSSFrsLhtKh9zjFm9apWZPWe22XWXXTWgZoyMAABAAElEQVQyzU/NrYQzCAhRIZzGMK1G0ylCjOMVcxQoDnrSEBXCnsADLnbHNJ44LbeSLkPiEBXCygkaNVhgqm/eefcdU6HCYRFf927g2hksvOvbqymc73jFHAWKg544RIWwJ4iAXr17mUsuvsS88uqr5tZbbkmNTgs7XjHHl9u3N63uusvgmjIDa+cGRwbM5EmTzYMPP2SaNGlsbr/tdl+2NGaCSOWYmUqxqdQSjrOjZAmZGaI9XfhG9R053bTu+IV54Kpa5toGxwc0MfhXys/8xGPZhP4X8tk/HH9NF1OuTAnTpVUjc+Deu5lFK9abQeNmmd7fTDPv3t/E7LdP8URGwzoP4QSRBFJLlE4RYlKpJZxBQIgK4ZCXg13sjmniVKnUEs6QOESFcMxJIRe7Yxql/d88/1j6Xy+/eq0zMG4shEkmJpq7hBPNgoKLJprbzVbsauZt2264uyk7mj6XFi8J116DKvWgBzy1A/LDM1bj1P+9FFn52frPtr//1vsHA0Dm0UceMTi3a3CGycCKptl3vwPMfffeY+rUqZvysibfYRfJ3/zwYVySJhmKOZHX/7r95+E01GOPPmx69+pjli5fag4/7AgDVV5T/+x6BgZOTLFiu4UZ/teV/39d//82+VCYMkOGDMFu5Fm+3fzZ9g9VO3PkUZUMVCChWVDA4Ey1geEXg3Oe2fb3F/Y/a6HBMPPXmeaEE0/YQT3n/zTjvjFJkwz5ZiEyUtv/6691Nk888ThONBgsNuRhYniu6dr1zSBR/txUPjUx7rqrlfnmmyFYNNtoYNvAnFzlZAOL9AbX1CR4pcqPqzc/OfnhyVbj1HeikqFAPOh3JL/7Vz+aDn2+xzFl1AXeqzOqlDftb6oDBvlN/1SS+v+Z/MxykrzD0vz/Lv/vyceVL+a1TyeYWbOXmX1L7m6KF9vVNKla0bSsU9nsXqyIz1r+Od5x/f+efC/AAypJfReRDHliAFn5O2r/f5f6r14TO5rcwcRi5y7YwaRfsOAuwAHG5BMTzcbUfYbK7DaDMyv4g+rsiG/lAWcuRNwIko1DG0QUn4hEgEfX8V+3W/Pj4vuhGIhJU6CECN8gs/KlBhKVk63/bPvLvn/Z/ifb/2a/P/gMJ8bgiQ8Fx3XRZ98DKV/dOJikyH7/3YAwqp9E5SCQHf9kx3/Z8W92/I+u4N/Y/1bHkSvcZIDdTE40C5pCmGQWlJ1N7nIWDFVnOcnkjuZ22dGMPxsxFH9iMnWmcWyijwVaw84Pf+M0MZXDxVJjKKQWWBmnRKSiNRxKVlycNImJpcZQTBtBySQ+OhWtYeeHvz4JAKVyuFhqDIXUAieT+OhUtIadH/76JACUyuFiqTEUUgucTOKjU9Eadn7465MAUCqHi6XGUEgtcDKJj05Fa9j54a9PAkCpHC6WGkMhtcDJJD46Fa1h54e/PgkApXK4WGoMhdQCJ5P46FS0hp0f/vokAJTK4WKpMRRSC5xM4qNT0Rp2fvjrkwBQKoeLpcZQSC1wMomPTkVr2Pnhr08CQKkcLpYaQyG1wMkkPjoVrWHnh78+CQClcrhYagyF1AInk/joVLSGnR/++iQAlMrhYqkxFFILnEzio1PRGnZ++OuTAFAqh4ulxlBILXAyiY9ORWvY+eGvTwJAqRwulhpDIbXAySQ+OhWtYeeHvz4JAKVyuFhqDIXUAieT+OhUtIadH/76JACUyuFiqTEUUgucTOKjU9Eadn7465MAUCqHi6XGUEgtcDKJj05Fa9j54a9PAkCpHC6WGkMhtcDJJD46Fa1h54e/PgkApXK4WGoMhdQCJ5P46FS0hp0f/vokAJTK4WKpMRRSC5xM4qNT0Rp2fvjrkwBQKoeLpcZQSC1wMomPTkVr2Pnhr08CQKkcLpYaQyG1wMkkPjoVrWHnh78+CQClcrhYagyF1AInk/joVLSGnR/++iQAlMrhYqkxFFILnEzio1PRGnZ++OuTAFAqh4ulxlBILXAyiY9ORWvY+eGvTwJAqRwulhpDIbXAySQ+OhWtYeeHvz4JAKVyuFhqDIXUAieT+OhUtIadH/76JACUyuFiqTEUUgscJOGOJs9mFtyFu5hOhZZnNIkrwD+e0YTlOMODw9u2bTGwCphiDEizEGQwECCxEuZyDcSnrpZGK3lpmQwQusqcKFLAy4HBbxCXlY/KkPrI1n+2/WXfv2z/E3SsfCGy/W/KNymsHwdnvz9ulT37/Q32JIMxhgOD3yAuO/5AZUh9ZMcf2fFHdvzxf3X8Ub1WbexiQnV2VxoDcpPNgtHOJnGxMSAYAcIFwWJ9Vs5oJjpTfpBDRPRJClHumy10vrv28R6I2ARhny4FSCMJEVn5UsdhlfjqC4YLPt4D2fqXqgjqw9dbCpBGEiKy7S/b/nBuOGwSvvlk379s/88z5XC+fXgg2/9KVQT14d+bFCCNJERk+99s/5vtf7PfH/QZiY0t9iHZ7+//4vtLY0CcaNIQEFVod+W5TE48qT5bUFRnz8EZza1iBAh304j67KhUq7NhHy/fgwAhoAvzly5+9jGdQuo7yvDXxYTxHvaA0gcIAV2Yv3RZ+a4egpGOH/MENadEkR/Xodafp/WAJgkQArowf+k0fVZ+XE8Kqe9qKvx1MWG8hz2g9AFCQBfmL122/l09ZNtf3E4UUl9rKPZdTBjvYQ8odYAQ8P+x9x2AehXF/ntvGhB67xBaKFJUmpJCgPQEQnmA2AAFBRR81L/oe1gp+h5FsIAFlCJPUEGqUgIk9BaqEHoPkERa+s09/5nZ/c3O7jnfTbgqJewHOfObmd/unDNnd79v757idd7yp7Q/n4fS/mI7AYJEhqL0HutXrABsYxDodd7yp7Q/n4fS/mI7AYJEhqL0HutXrABsYxDodd7yp7Q/n4fS/mI7AYJEhqL0HutXrABsYxDodd7y5/1ofwMHDZFLZHvQpbO96FJZfgBQD1rRlPs2+R7NkaPH8otPaaLZ6ebPowknrWzqU2dxTRHtvB6aAjmmuMntjTqMQabCBAnVlvjUanyzQebiiYipF6QE5I5kbHEhtyCliYe1VnfJf8l/aX9p99LOEvoZRG5v1GEMMhVl/EN6NKdkKO2vtD/KgDYNBWgkQeb2Rh3GIFNhgqBOIpT2J8lA5uKJKPlPMqAJQtshWX5/xRRJfpCkIFNR+h/Sg6x9iH5/Dxg4xK9m9uTXmfSS1U1/vyY9GAj3aPIrTeQ+TVrR7KR/E8KKJh8vjh0SObAy+iKyfsbiqbmNwSTVlgUD0vqAoy8i+CDFU3Mbw3sQ/+0Zc9wdj73kXnz9LbfhGsu7gZuvRbsXRiOKz3sz4eEX3FMv/8NtSO8+2rb/6vRuNLqRluzse3vWHHfnoy+556n8RlJ+bbLGcwTEh3Lj/c+4LdZf2a20jH9P0nnXPeTWWmEpeSQ61zef3rH08vR33JjtNnTPTHnDvTz1LXr0dW+5HJBv65oxu8P16dXuhn6S3g0WYjBv4kMvuHVXXcZ9apM1ZN+a4rMt/0imZWM9xvAe5L9+qUmJb9sfflQ1nSGTKesWHH0R5STx1NzGUM6//qi1uUOGIK0POPoigg9SPDW3MZT8l/yHSRXaDEu0EEjrA46+iOCDFE/NbQyl/ZX2V9ofuotK9BBIdRgQfREZt0Dx1NzGUPpf6X//RP8bKK83oUklrWjyRBMPAfKvPAkPA5KJJq1kzqd7NHllc+LN4ynppqma9misBOuOuiUtIRqRKvrVH+5kqRPySnJdS9QddYuSIyDSex3//qdfdQf/6Co3ZsBGkrbzr7rXfWbEx9339x8k+zVr7jy3z/cvcyvSS3W36Leyu5Amhisv39dd8l97uCX69HKTqPxB/0PlP03lKXcXXDHJ7TNyc/eD/XeMx0Xo2nuedqdceJvbZtM13Df3+5Rbru9ibs68+W7T/c6KPD7+9sot3qe3u+uXB7lT/3iXO+/ye2S/5MTzoEPv6PrKXtu5Y/fe3s2e0+H2O/EyN48eGDVo83XcX259zK2y/NLu0hPGUZ22ofgqUksMq+h9yL/GZlDiv+ftv+TfZKC0v9L+PmLff6b1l/G39P/S/0v//0j9/l/Uxz//1Fm6L5MWxnDprLzehO/T9Cua/j2aPMHsoEtnO2jCiXs0G156k+TLzjNp7KSG47dKgiqSN/wdE2/ihtvyk4cktvgri+VjnuPrymqEKpI371/8vb73R7f8Mou5s78xWlYNx33nUvfia2+5e35+oOzXz+mluqeeP9E9eMGhbvHePd2fb33cHXPaNe60o8e4sdtv4Pb67p/c8kst5s45cpTwdz+Byk95y919ti/PR3fuXye50y663Z159Gi34+a02hmO/8mX/uH2/e4f3UXf2d2tt+pyFL/NnfyH293Ut2e50w7e2X3l9KtdP7IfvtvWrnefHu6dmXPdDof8xl136mfd6ist466880l3BE1yb/nZAW6NlZZ2V9/1lDv8x1e6G87a362zyjKyPz5UCCgW2kAVyZv3L/+S9BL/I9v/yvkv/a+MP2X8/aj+/ijjXxn/yvhXxr9/1/i3g7zehFc0aTVTHgBE79HEw4FI+qfO0vszOypazZQVTbxH065VyUyB22mcPHjtn9uiWkhTW2oymoGG3j2IuiBNLanJaAYa+gLh32ilcZ1Vl3X96ZLYN+kS2gGH/sZtQ5fO/oYmkjwhu+ruJ90fJzzmzvnGKFp2bnfjH3jOffkHl7ljacXzK6O3cn+95xm37mrLuP6rr+DenDnH7XDYb9y2XP4oKk+fB595ze153O/dUV8Y6L465hPJ/vAlso89N9Xt9PF1xd5Bf1TYniaSvzpurNtq/VXcnydOdiO27UcT3F7i//W1k9wN9z/nLvrmbqLfMOkZd/AP/+JO/Powt8/ATdx3L5zoLrn+IXfnL77s+i7mywjx3W6QS0hTPjUZzUBD7x5EXZCmltRkNAMNvXsQdUGaWlKT0Qw09O5B1AVpaklNRjPQ0LsHURekqSU1Gc1AQ+8eRF2QppbUZDQDDb17EHVBmlpSk9EMNPTuQdQFaWpJTUYz0NC7B1EXpKklNRnNQEPvHkRdkKaW1GQ0Aw29exB1QZpaUpPRDDT07kHUBWlqSU1GM9DQuwdRF6SpJTUZzUBD7x5EXZCmltRkNAMNvXsQdUGaWlKT0Qw09O5B1AVpaklNRjPQ0LsHURekqSU1Gc1AQ+8eRF2QppbUZDQDDb17EHVBmlpSk9EMNPTuQdQFaWpJTUYz0NC7B1EXpKklNRnNQEPvHkRdkKaW1GQ0Aw29exB1QZpaUpPRDDT07kHUBWlqSU1GM9DQnX2PJl82yw8Dwns0Wfr3aNI9mvPlibMd4R7N8VRHdgFkiwB+1co4FSpIF7bC3kWv3V3gBm+DSdhiN06FCj4w8TtphfYvtz/hzrj0Lrf4Er3ceTTJXHlZfw8ljtzLyv34krvcL/5wh7vxp7RquDKtGtLh8BFdfvtk9xMuv3hPd+4xY93KfA8mXYYx9tuX0Arnm+6Mw4fRpbKV++SGK7nll/Z1IxOQV9zxhDuN6rjxfz6bhg3akCPPd8fs8yk3arsNxDJ7bofb6zt/dI8/9ZobRpf+3vfYy+70rw11222yZvjDA2omukIFaooWQ2vcA8sMhAaTeMRunAoVlPiUKO7NMSMpDhk2wjKDucEkHrEbp0IFGjdaSnybC5P41sluVUDsxqlQQck/ZbW0/7TPxdZRb30ps3WTFI9UZGpTqKC0v9L+Sv+jNhB7RIpDDzPCMoO5wSQesRunQgUaN1pKfJsLk/jWyW5VQOzGqVDBRyL/A+ips3yJrEwuw5Nn2+TJs2yT15uMqTpoRbOTLpnlBwJ10H14t/I9muaDlEGyCxjS0DNoGRaDRg/BoUs5cR9qM6P1D4UmPmr20jIsBuu9i//UK9PdkT+/wT3zwjQ3k1Y19xq+pTvxgEF07HQiwrye95AfBrTrcRe5L4/b2h2553aa6yfIfvQvrpfyM6j8f1D5Hx6wo5v21kz3qYN+6ValFdPRn97Q3UEPDHp08ivuhIN2dp/fZVOqEX808Mf/H9/7E61uruMOGftJ8qXHf+fjL7uDT7nC3XPOl5OH/Ux7e6bb8eu/c7Mobr91VnJnfWO423jNFXTfkM26tDm3GMw0fjNj0Tj/sdfg2FmW4/+o9P9y/pt7dzn/H43vv9L+S/uPv0XwHVi+/8r4V8Y/+/sfv9ZjD/ng//7lFU3/4B9+GJB/l2ZPWdVsk9VNer0JvUezY56bx6uaNOHkfxMnjKdjxOGGwVHHSAXIw7uSWppAcj8mpixCUBbVHbCaFLyruCBraQLvV3xHT3z95m9ucn/464PuV9/aze201bp6nK/+YwatHl7qdtl6fXfC5weoHWngfFSdzh1/HpW/5kF3Dl3eyo30ILq09Wf/b4wbvvV69ETZTjf82Ivd2zNnuzt/5u/hxPE/RU+OHfWN893EXxxIDx7qq2cZeT70J9e6pfv2cSd/aUgoUrnXaSK7+/GXul0HbuwGfGx1d+j/Xi3N448/2Nutv9pyqHqh5Ach/9Ky38fzX+JTUyn5f9/Gn9L+Svsr/e/9+/4v/a/0v9L/Sv97v+Yf/47xZ8BAmmjyvZl8jyatYMqls3KvJtvk0lmaaM6nhwAll87exP3ATELqA4N9To/nmhKAImliRDXJwVE1/gMC9LqsMchgT8yHPf69k6e4vb/1B/eV//BPduUM8Mrk7v91Ka1KbuSO3Wf7NGfZ8d/9+BS377e5/DZu836ruK//+C/u7G+OczvzfZjE/d7vJ7rf/uled8NPv0AP7KEHAIUUf+vcm92TL01z//ftPYIlitffnOEGfvU37vzv7OW27r+aljniZ39zk5+d7q7+0b5ie+TZ193Yo38vsY+jS2z9ufJbqQ1QZDn/pf2X/o/+53sbOkjsezmqMciwKI1/2bdLfvjl+4cykrSZcv5L+6cGgTbxYf/9E4+k1vXFUMa/LEOl/5f+/wHu/4MGD6aH//SkSSWtaPKTZnv1cu10pWYPeq9mO61s+ocB0Womr2h28oomTTgn8ns07UjWMBY0TR8iDcMEZPBAhTQ/J2r1LeLxb5z0rDuIXhly0teGu70Hb0L5n+/G/felbnN6OM/JB+4o+f/bvc84XoE8JHu4D2fzenpP5ldPogf0HDbMbbHeym70kRe4E76ys/vCLh8jb+WOPucmd/kND7oHfnuoWyI8sGfmrHlu20N+7Y7/wmC3306bCA/DGef/f+i+zUtvfJRWQQ9Izv+I4y52W21E+6WrnM5tSw8z2vET67offXkn3p3sgxMMGdxQIT/C59//YtBEUCay6egi3v7L8XOfKOffjj/JnyNK+6fUYFqRDa/ScrLxIqGgXUEGJ1TI0v4oMT7HZfzN2lPpf6X/lfEnGVWtUhsvrFPHVR1ovRcqpPL4l8CHu/+ll86206pmb9fWw182619vMnJsNb/Tvz+zgy6h5XdqTrjlZvOXM0pAaHCanySpaQ7VlZEzVWhia3BYU0UD3qIQ/+T/u90tTQ8AOnTs1nQ/bOX2p9eDPPrM6+76H+/nlqXXllxwwyPuBLr/8jR6fcnifXq6ufTuy9MuvdN9bujmbv9hW7hTqPySS/Rxh439BF06W7kv/vgK99izU93fqPzSZN/lmIvcMkv2cX88YU96gnCn2+XIi9ym663gfnGEfx0K5/Tcvz7gTjnvFnf3rw+WMjb/8+dXbjt6Eu3YQRu5//7cwOT8//dvb3ETHnjeXXPKfvRk2h7uWZr8Dv/P82kFdVe34xbrxHOpJ5+APYl1NZbJeOywpkXl/NtjkoPHcTY4rKkc/6LR/+05LeffZ0By0pAYayrtv7T/ReH737bp0v9L/+cMlPGP5vINHcOayvj/4Rj/d6B7NPn9me28osmXzLbR6mYv0uU9mrSiOXLU2IpX02SySe/R5PdpyoqmjAXJKSdL9hdW6xY+b7xRt/Z6L3Ba/rUsr9DqFoeKGkwf1Pin//ludzatGPZff2X35ttz3LL0Ts2TvzyEXneyghzMYWf91V17898J89/1+Y2kfHCVu5jug9ym/+ru9D/fFcqv6t5+Z45beqneVH4n138tX/5RmnR+ld67uRi9B3PWnA638vJLut8cM8ots/hietoGfeMC12+1pd1vjx1LtvRc/vm2ye7o0652l/34s27zdVdKEjyVHgR02OnXusdoYrzROiu7Z1+e7g7ZY2t34LAtte5QQPaZjf7U0Lac/3qOPoLtP7YPbiLULrL25/2+1USu1S0OjAbTB7X/x2MiVI6/nP/S/pMu4ZW8Q1vd4lC0wVT6v0+Kbsv3b/n+TX/qle+f8v37L//+5Xs0e9Iks40ule0lDwGiiSbfq0mX0/akCWfbiNFjqw6aYHbSA2T4qbO8ouknmqF1yoilw5aM8Gi30Zpaat8gTOSpR+OXK7f7OGv3XxTMX/Tiz6NJ/IvT3nar0CtJcDmrZIaO3+eAnz4ryZLjn9fR6Xq1Ux7afT7m0qXNL06l8sv1dX379IqTOeSKLM/QK06W7tvbrbDUElzIf0L+J9G7NtdYcUm3UnjtibopPj+EaOpbs9zH1l0xmOv55/d3vvHObLf2yktTRDOZNPH1vKFyluX8+yR8xNv/R73/l+PH94QdHD464385/+X8py3fax+V3z+l/Zf2X9p/PQOLQv/nS2f5IUDt/DAgeQgQTzT902d7tMvrTfxTZzsqmmTS5ZodNBnS15s094t6psgSp0e5UqcnXHazIayhK2R7ic9ZWKhPktNEqRevuTXpYfJYI9TryC1JkUTJmVlbYXeJX9p/6f/UEUr/06GAx4Uy/nMWFuqTDLmJUi9ec2vSS/vTVHDaSvurN54WlqRNJUq9QM2tSS/tT1PBaSvtr954WliSNpUo9QI1tya9tD9NBaftXbQ/vnSWJ5a8qtmTVjHlvkxayZQHA/FTZ4fTpbOdtIrJ78+cz5fO0v2aE2++OZwdc0pkD8KcwJw7b27hBI/cFf2Q5FUw/wl8mmFYa+pjjXn8oXItQnhzC6cvLGVLfJvpkK+S/9L+TK/03QVtgzXG/Cn9r4w/STOQVsEb31pCm7FNRxmeVMbfMv6W7//y+8cPCxgoyu8/OyqkuWGN88Sf8v1bvn+TZiCtgje+J4X+hG6l3gDI/u/+/h0waAhdJstPm6WJJk84+UmzsrJJNrLTU2fH0OtN5stTTzvn0ZNnO+fTw4BuSna11f4npC6UpDwr/MGYa1OVED2Nty3MkbAAlJQv8X22Sv5Dq/GtQ7ZJQ4mNqoU5EhaAkvKs8Kfk3+eh9H9pDNJGkoYS0kOihTkSFoCS8qzwp7Q/n4fS/qQxSBtJGkpID4kW5khYAErKs8Kf0v58Hkr7k8YgbSRpKCE9JFqYI2EBKCnPCn9K+/N5KO1PGoO0kaShhPSQaGGOhAWgpDwr/FnE2t9AWtGUB//wRJMnnLSy2S4TTppkkpTXm/CK5jx5tQldPkty4oSbJBe6wc2zlKSme8uV1wBikpv+emUKRKIxBljiU8OkllnyX9ofNQMdo+o9pWaJ3ar0v/pfj026YqKMMcAy/pTxp4y/5funfP+W79/y/Vt+f9R/IbS0xJ8Vi/bvL1nR5If/0ASzB61k8uWzPNFsJ1vPHr1w6Szfm+kfBCQTTX2PJuev+WdtTGBDjtmJT2PxUJpEy4mr/LjjShor6PqvDCU+st8ifSX/kpjS/kr/a/XDoYw/Yewo428cTCMKI2g0WFS+f2I2GptP+f4p3z/UMMr3b/n+Ld+/zTOcD9nvD3mPJi6dZUmXzvK/dnoKrX+P5mi6dJZWMTv4FSd06WwHXTp7q7l0Nv1CjV8Qkp3UGb9cwjQQbkglJAajGAhuagoajJAgq/QOuCEzd1CN10BwU1PQYIQEWaV3wA2ZuYNqvAaCm5qCBiMkyCq9A27IzB1U4zUQ3NQUNBghQVbpHXBDZu6gGq+B4KamoMEICbJK74AbMnMH1XgNBDc1BQ1GSJBVegfckJk7qMZrILipKWgwQoKs0jvghszcQTVeA8FNTUGDERJkld4BN2TmDqrxGghuagoajJAgq/QOuCEzd1CN10BwU1PQYIQEWaV3wA2ZuYNqvAaCm5qCBiMkyCq9A27IzB1U4zUQ3NQUNBghQVbpHXBDZu6gGq+B4KamoMEICbJK74AbMnMH1XgNBDc1BQ1GSJBVegfckJk7qMZrILipKWgwQoKs0jvghszcQTVeA8FNTUGDERJkld4BN2TmDqrxGghuagoajJAgq/QOuCEzd1CN10BwU1PQYIQEWaV3wA2ZuYNqvAaCm5qCBiMkyCq9A27IzB1U4zUQ3NQUNBghQVbpHXBDZu6gGq+B4KamoMEICbJK74AbMnMH1XgNBDc1BQ1GSJBVegfckJk7qMZrILipKWgwQoKs0jvghszcQTVeA8FNTUGDERJkld4BN2TmDqrxGghuagoajJAgq/QOuCEzd1CN10BwU1PQYIQEWaV3wA2ZuYNqvAaCm5qCBiMkyCq9A27IzB1U4zUQ3NQUNBghiSwTTVrB5BXNXjS5bG+nVUzS+d2acuns8JG7Vp2d8+jVJniXZsOls4ia7JqJ0ui3xpwbdUUAkLZ4hj2lNbHuyS1RVwQAmcW0qqe0JtY9uSXqigAgbcAMe0prYt2TW6KuCAAyi2lVT2lNrHtyS9QVAUDagBn2lNbEuie3RF0RAGQW06qe0ppY9+SWqCsCgLQBM+wprYl1T26JuiIAyCymVT2lNbHuyS1RVwQAaQNm2FNaE+ue3BJ1RQCQWUyrekprYt2TW6KuCADSBsywp7Qm1j25JeqKACCzmFb1lNbEuie3RF0RAKQNmGFPaU2se3JL1BUBQGYxreoprYl1T26JuiIASBsww57Smlj35JaoKwKAzGJa1VNaE+ue3BJ1RQCQNmCGPaU1se7JLVFXBACZxbSqp7Qm1j25JeqKACBtwAx7Smti3ZNboq4IADKLaVVPaU2se3JL1BUBQNqAGfaU1sS6J7dEXREAZBbTqp7Smlj35JaoKwKAtAEz7CmtiXVPbom6IgDILKZVPaU1se7JLVFXBABpA2bYU1oT657cEnVFAJBZTKt6Smti3ZNboq4IANIGzLCntCbWPbkl6ooAILOYVvWUlGgnmnj6LF86Kw8Iostn5R5NftKsTDTpPZp8v+aEW26merki/vC1L4Rxjaup30DPAbd5MZgrC2udAGkNQlAG+/hT4pf8U1so7U+7ArpX2nugQfrek2/VK0A1Q4ONJX9K/yv9j9pC6X/aFUr/8yMDRopUS63eF7fqFaBaJJTvf8pFGHMlK2X8LeMv9ZMy/sZuwV2CPunoAQ3Sc/KtegWoZmiwseRP6X8L0/8GDBrsL5fl+zNx2SxPNMO/thEj6fUm1Tx6GFBFDwLi15vQiubNN0mK7Qbpt7Z4qlt46TrjNnlJfXYjLNHRb3xraS5vYzUzYIW0JShGiV/yX9ofdYrS/5IHAdFwUcYf/xVaxl/qHuEdrum3R6q1+IbhwvSvhbd8/5Tvn/L9I/2jjL/x5T48XJTvn/L9I/Nl+epo/v6w30DNDFghbQlqY+/h949/GBA9cVYmmvQQILqEtq2NHgREsidWNP2DgOjSWVrRjE+dbd759FC8BiYdF1XOB+ilckFQQwoStyoKUnKDBibiQioVBDWkIHGroiAlN2hgIi6kUkFQQwoStyoKUnKDBibiQioVBDWkIHGroiAlN2hgIi6kUkFQQwoStyoKUnKDBibiQioVBDWkIHGroiAlN2hgIi6kUkFQQwoStyoKUnKDBibiQioVBDWkIHGroiAlN2hgIi6kUkFQQwoStyoKUnKDBibiQioVBDWkIHGroiAlN2hgIi6kUkFQQwoStyoKUnKDBibiQioVBDWkIHGroiAlN2hgIi6kUkFQQwoStyoKUnKDBibiQioVBDWkIHGroiAlN2hgIi6kUkFQQwoStyoKUnKDBibiQioVBDWkIHGroiAlN2hgIi6kUkFQQwoStyoKUnKDBibiQioVBDWkIHGroiAlN2hgIi6kUkFQQwoStyoKUnKDBibiQioVBDWkIHGroiAlN2hgIi6kUkFQQwoStyoKUnKDBibiQioVBDWkIHGroiAlN2hgIi6kUkFQQwoStyoKUnKDBibiQioVBDWkIHGroiAlN2hgIi6kUkFQQwoStyoKUnKDBibiQioVBDWkIHGroiAlN2hgIi6kUkFQQwoStyoKUnKDBibiQioVBDWkIHGroiAlN2jM9K83oQcA9aLJJT1xlieYcumsXD5Lk84Ro8bSezTp0ll+GBD966DJ5q23jKeiMt+Wan3IELh2FA2RE1MoRzZBtNG/5iQ8r3h2LMPWxFbiZ7P4hiQmpphLQbQp+betO0lW2taCq7Q/zldoR6X/lf4nqzRpv2mthXZDBEG0KeNPGX/ir4u05fjWEtsMexNbGX/K+FPGn7TTdKnFviSINmX8LePvv3r8HTB4R5pg0kOAevaSBwC1yxNn+R5NfupsNtHspEtnO+Z3uonyehNqvbI3saFye7Yaxnw0YDM3zZq+LZW5EtXwFCoQptVKfP+dIzmxiUlyykqXTsM2PIUKhGe1kv+Sf7mCgVpG11cf2lZjmlsNGp5CBaX9UQZsNkr/K/2v9L/QJ2zH6GpcqfmswVSiUIEQrVb6X+l/pf+V/idjgh0Y7JBSGzVqTmMwlShUUKvpgzT+DBy4I61m8j2ZfKmsl35Fk19zQpeNJyua2etN0kM0+TCH3DUnlvG8yBYUVSVak8VKUOC9XXOUnP5VlMxSrqGwNVkcawLy3q454OIHYmQLiqoSrcliJSjw3q45Si7HT6nQVTnCkreG5FmTxTGTQN7bNQfccv7zbInekDxrsjhmEsh7u+aAW/KfZ0v0huRZk8Uxk0De2zUH3JL/PFuiNyTPmiyOmQTy3q454Jb859kSvSF51mRxzCSQ93bNAbfkP8+W6A3JsyaLYyaBvLdrDrgl/3m2RG9InjVZHDMJ5L1dc8At+c+zJXpD8qzJ4phJIO/tmgPuvz//vKLZTu/P5AcB8X2a8g5NmXDSpbRxRXO+m0eXz3byK05Iyoqm7iMeJGIOSaECZXvQys5e+CAXVKLE9zfSm3wpVOCTqNtWdibAB+kLpZpWJPwSn2/kNxlSqMAmTHLG09rmD8pAelaq2ZKl/Zf2V9pf6X9mhFCowA4YhFvZmQYfpC+aat4GT+l/pf+V/md6iEIFtsMQbmVnGnyQvmiqeRs8pf+V/vdB73/x9Sa9aGLZRu/T7EUTT7+aGS6dHUP3aNK9mTTB9A8DoktnJ9xEbbx100c3SBn4QRy8iZOUcGE4lntRRy2OllMQqRlKGSW+H5BK/iUDSeMgpbQ/mfuW/ucv94pDSdJQzHCU2WMBRSmjjD9l/OEfROGTNA5SyvhTxh9qHGX8LeNveotpMlCU7x9NhwKMqDWZMsr37/v5/cuvN+H7MnvSBJOfMtuDJpntsrLJq5x4j6Y8DMg/cZYnnbyiGU9bRAs40+pOG0DsO95ut1qEQFoqRo3IsgWnRdSdm6F7abdahABY3hajRmTZgtMi6s7N0L20Wy1CACxvi1EjsmzBaRF152boXtqtFiEAlrfFqBFZtuC0iLpzM3Qv7VaLEADL22LUiCxbcFpE3bkZupd2q0UIgOVtMWpEli04LaLu3AzdS7vVIgTA8rYYNSLLFpwWUXduhu6l3WoRAmB5W4wakWULTouoOzdD99JutQgBsLwtRo3IsgWnRdSdm6F7abdahABY3hajRmTZgtMi6s7N0L20Wy1CACxvi1EjsmzBaRF152boXtqtFiEAlrfFqBFZtuC0iLpzM3Qv7VaLEADL22LUiCxbcFpE3bkZupd2q0UIgOVtMWpEli04LaLu3AzdS7vVIgTA8rYYNSLLFpwWUXduhu6l3WoRAmB5W4wakWULTouoOzdD99JutQgBsLwtRo3IsgWnRdSdm6F7abdahABY3hajRmTZgtMi6s7N0L20Wy1CACxvi1EjsmzBaRF152boXtqtFiEAlrfFqBFZtuC0iLpzM3Qv7VaLEADL22LUiCxbcFpE3bkZupd2q0UIgOVtMWpEli04LaLu3AzdS7vVIgTA8rYYNSLLFpwWUXduhu6l3WoRAmB5W4wakWULTouoOzdD99JutQgBsLwtRo3IsgWnRdSdm6F7abdahABY3hajRmTZgtMi6s7N0L20Wy1CACxvi1EjsmzBaRF152boXtqtFiEAlrfFqBFZtmBThFc0+d5Mfq0JvzuTL5flezTZ1sb/+B5NftLs/M5OeuLsXNdZexgQdsHsoAkgXtH5z3UUXv+ky7tChq4ecSV7SxSi+ZuqzZzc1OWh2Rqfj8FxS/ySf24HoVGJoIZS2l+WE5sfj0v/w/BRxh9dkzNjrBl5/RBjfGX85TGG+lH5/gl5sOML54YG5GRMtv4y/nAGyviL7lPG3zL+hsHCfMd4aLbGJ4OO6FQusUvPKuPPezT+Dhg8hFYx6d7MXvwwID/ZbA8rm2yLDwPqnO86+WFAYUWz8aTpN0aY5dZOrD+5OlyoX0FoDEbnIk2fGsUaSnzJsU2J5tD8BUL9Ckr+JRUmH5q3DNQo1lDaX2l/9JPANgltPqX/lfE//FzU9qGgjL+SCpMP7TcZqFGsoYy/Zfwt42/5/qExo/ZHrPL9+358//LDgHiiyQ8C4ktoe9G/Np548uWz9IoTmmjuSvdozpOHAM2jSeZ8eiDQrfx6E/ro0K5AzNaTfHEyjT/x3MeCQJCeabfeY/2KFYBvDAK9zlv+lPg+D+YM6rk0mQMpyJhD5E+5ClDEGAR6nbf8QfkSP+YJCNJnym69x/oVKwDfGAR6nbf8Kfn3eSjtL7YTIEhkKErvsX7FCsA2BoFe5y1/SvvzeSjtL7YTIEhkKErvsX7FCsA2BoFe5y1/SvvzeSjtL7YTIEhkKErvsX7FCsA2BoFe5y1/SvvzeSjtL7YTIEhkKErvsX7FCsA2BoFe5y1/3o/2N3DQELlEtgddOtuLLpXlBwD1oBVNuW+T79EcOXpsNY8vnaVLZufPowknrWzqU2dxTQftvB6aAjmmuMntjTqMQabCBAnVlvjUanyzQebiiYipF6QE5I5kbHEhtyCliYe1VnfJf8l/aX9p99LOEvoZRG5v1GEMMhVl/EN6NKdkKO2vtD/KgDYNBWgkQeb2Rh3GIFNhgqBOIpT2J8lA5uKJKPlPMqAJQtshWX5/xRRJfpCkIFNR+h/Sg6x9iH5/Dxg4xK9m9uTXmfSS1U1/vyY9GAj3aPIrTeQ+TVrR7KR/E8KKJh8vjh0SObAy+iKyfsbiqbmNwSTVlgUD0vqAoy8i+CDFU3MbQ4mvX6rIGUtkCNL6gKMvIvggxVNzG0PJf8l/+FGHNsMSLQTS+oCjLyL4IMVTcxtDaX+l/ZX2h+6iEj0EUh0GRF9Exi1QPDW3MZT+V/pf6X95tynff5QRnq+bkaJljrpilfGH8lhLojH8k+PvQHoYEK9g8oomTzTxECCeZPLls8k9mvPpHk1e2Zx483h/dnFKzf7A5GXdUbekJUQjUkVHHe5kqRPySnJdS9QddYuSIyBSiV/yX9qf/ZNr7B61Ub1lp6o76hZTL2Dpf2X8KeN/+f5LlnwwOJDMB5FcV2rdUbcoOQIile//8v1fvv/L938cFAzKB5FcV2rdUbcoOQIiLWrjj3/qLN2XSZNKXDorrzfh+zT9iqZ/jyZPMDvo0tkOunQW92jq49BiilJksuqhMTATqkjesIm6d7DDLQ7vpBNg5rgtZtmWj+8qX1dWI1SRvCnxS/5L+yv9jwYCGmcwPMjA4AeHMv6U8RdfKdRAqIU0rLLY9gKyb0tZi4Iqkjfl+6d8/5Tvn/L9QwNB+f4p37++GfDXgv/QV8SHdf6zg7zehFc0aTVTHgBErzfBw4FI+hVNegBQR0WrmbKiifdomgmfbRL48kRy/hmJuiBNXanJaAYaevcg6oI0taQmoxlo6N2DqAvS1JKajGagoXcPoi5IU0tqMpqBht49iLogTS2pyWgGGnr3IOqCNLWkJqMZaOjdg6gL0tSSmoxmoKF3D6IuSFNLajKagYbePYi6IE0tqcloBhp69yDqgjS1pCajGWjo3YOoC9LUkpqMZqChdw+iLkhTS2oymoGG3j2IuiBNLanJaAYaevcg6oI0taQmoxlo6N2DqAvS1JKajGagoXcPoi5IU0tqMpqBht49iLogTS2pyWgGGnr3IOqCNLWkJqMZaOjdg6gL0tSSmoxmoKF3D6IuSFNLajKagYbePYi6IE0tqcloBhp69yDqgjS1pCajGWjo3YOoC9LUkpqMZqChdw+iLkhTS2oymoGG3j2IuiBNLanJaAYaevcg6oI0taQmoxlo6N2DqAvS1JKajGagoXcPoi5IU0tqMpqBhu7sezT5sll+GBDeo8lSJpoddI/mfHnibEe4R3M81UF/crGfFgH8HNQ4FSrQaWq0NKwm2FhawhhtYWMu8SkZ+BMh50XzpEBN0WJoNpeKLTMYG0ziEbtxKlRQ4lOiuDfFjKQ4ZNgIywzmBpN4xG6cChVo3Ggp8W0uTOJbJ7tVAbEbp0IFJf+U1dL+0z4XW0e99aXM1k1SPFKRqU2hgtL+Svsr/Y/aQOwRKQ49zAjLDOYGk3jEbpwKFWjcaCnxbS5M4lsnu1UBsRunQgUl/5TVf/f37wB66ixfIiuTy/Dk2TZ58izb5PUmY6oOWtHspEtm+YFAHZ2d7la+R9N8cMog2QUMaegZtAyLQaP33tB6Ma5Qama0TlQTHzV7aRkWg1Xil/yX9lf6X320iCNEGX9afVE1jajIWz2jTewy/pbxt4y/ZfytjxYYRzBqQLIdGBLcurQMi8Es408Zf8r488+OP7yi6R/8ww8D8u/S7Cmrmm2yukmvN6H3aHbMc/N4VZMmnPxv4oTx1Av5pwV/QufUPqrAu9/lVksTSK5HTuIoq8RP8sLJtrl5l8m3pUv+S/ujLo5eru1KmpdtYwGrScG7b3yl/cXeS2ks419pf6X/YRix44wdY6ydudaHsgsvtTSB0v9K/yv9D33H9jPtJbG/qUkBCr4rqaUJlP636PS/AQNposn3ZvI9mvz0WZ5kyr2a+tRZmmjOp4cAJZfO3lQfzrOGYZ+T4BuP30qrAxRJfzGin7OxQzMDhNZttMYgg22YJT410pBUnyuTsQAffOBBN+XVV4jY7pbs29d9+tOfloQ/+9wz7onHn5BzPnz4CLppNz07THruuefd448/5pZaain3qU99yt08/iY3r+qk9+MQl88FnQwf35/f9rZOWhV3btasWW7Y0GGuV+9e7rq/Xceh3Tz648XMGTPcDPrHn6WXWcptu/W2bvU11hC9aTOfKnvqySfdfffd55559lm38YYbuc0/vpVbf71+0pry8//M00+6yZOfdL169aKHWvHKPP3RhOSqq63i1t9gQ7fC8subMDFXb731tps4cYLr3bu3mzNnjhs6dBfCfZIW+tBDD7lXX5niVlptVbfl5ptLPTb+tOnT3QOT7pP406ZNcyuusKLrv0l/t80nt3F9l1yC6mpzN990k1ye3t5OCaFLndsof7wXfqjxqKJKZ8/m/A13j/z9UffqlCmU4za3BJ27HT716cb2/+abb7r7J01yDz5wPx17H7flllu6zT+2uVtq6aVCN4v971nK4+TJk+lduR1uxLARdG5oX7LP88/TeX/scdrvJam9fCp6+ZzTqUdLscfvs+m3UgBQZIyfVKY1RatFqEJtZCjxS/5L+/M9ovQ/6guhMfixwowYgCLL+FN+f5Xfnxg3w+hBIrXo92wA6EJqJ0P5/o1ZK+NvOv4OGjyY5hE9aaJJK5r8pFn6Hd5OP/570Hs122nS6UaMGlsNHT6y2nGXodWgHXeqdhg4mH7v0qez08sW286qKz98kKESqJCmjlp9i3j86dOnVxdeeEF17rnnSnL+Hcd/xBGH83gh/8aMHk3n1J+H3/z6XLUfc8wxjfEvuOACHleq0WPGiJ8mMFoGddIXfc3GvjfffEPKrLPO2uqn5fRq4436V+tvsL7YaAJVjRu3W0WTu1r8u++5q9p0k00k/qqrrVr179+/ogmklFt99dWr888/nw5FG5GU/9nPfqaxeB969uxV0Xt9NNbIESOqibdMEG4s2lk9+uijSbl3ZrwTOLH+I488UjhHHXWU99GW40+fPq069thjqyWWWEL8q622WrXGGmuE+tqqxRbrU5111llSZivKH+eTxvckHnJp5ZtvvVkdcfjhyh/N5y77zJ4zuzr++G/SMfaQ3Gy66abVSiutJHXzefnMvp+pXnzxhaTUub/+jcb35z0eI/J54YUXCmf0qFFJ2VwBP7d7HfVCBhZUyHgiJJ9JXYt4/0/z5NtTOX6TgXL+TTLqsPQ/HUTqydFxJeNAhVRe6X+19lT6X0O7iqZavqKLEBoYZHBChVReaX+1fJb2l7SoXKnlKyGggUH++9sfzxt5/jhkl2E0nxxRjRy1azVq7G7V2HF7VuP23LtyI0b6ieZOuwwPE81BpvlTBzAnPNvtxkNTY0bOVKGJrcFhTYtS/LvuurP69re/XdHKIk2Eesqk4IjDj9CUAfyrjv873zlBJz0HfulLqL665JJLkskOTy7sh+NfddVVMuHYf//9xfX5L3y+OuDAL1Xf+c53qlP/91SaRC1WYaLJk5Yf/PCH1dcOO6waPHhw9fY7b8tYu+WWW2j8y//yFw2x5557avyTTjxJ7QzOO+/civ4qIv7TTj9N2x9PAPfeZ1+x84SN98N+LqBjkIkc+TbeZONq1sxZ1cyZM6pbb7212nvvfaRcr149qyuvvFKL8XG+8PwLoc42mTCyM8//d06gPNLk7aSTTtGy77zzTvWJT3xcynIufvmrX6nv4UcerrbbdjvJz9lnny32z33+89WBBx7g83eqzx8ml5y/Eyl/h0n+BlVvvf12dUKIyZwvh3OH/ZpBsXniz/nffPPNK1qF1H3+29/+Vi23/HKyX2uttWb1wgt+ssllL7nkD2JHXM6ZFgx7L+edYh5wwAFiWZT6XzhEFZJPJFWtaUrK8ccERWSSFWDNlxkyVUqJrcFhTSX/MRsRlfznGajlJjNkaml/lAHJSUNirKn0v5iNiPLWl35nxMYVeU1lxdbgsKaS/5iNiGJegWq+zJCp8RQ1OKyp5D9mIyJkPcpP00RzMCaaI0ZWPK8cveu4MNGk398jaUVzl+GjqiFDh9FEc0hc0YynItTWEKbBhC7nXbRt4pjJa9xVRjnZ6ha33iXU4dm0bSjWerU2J1vd4u7FP/LIo6qdd9qpWn99WtULK1vf/e53Q2Us8hhWt3jh4p966v/6SRTFOpxWN/G55uqrNT5POhZffPHq3vvuTeLfdtttUvaQQw5pDNavXz+dtGAy44l+P3k7aNBAjT/pgUmhnqo668wzNf6uY8eq/fnnn6voUl2aMLZVu+yyC9ntMdPfcKjdrL/e+jqhvPmmm7UsTyC5HB/PuHHjQkkqz/93zq/22GMP8rVVi9Ok8Ibrr9dyb77xhj8OytEKKyyvdg98/B//z4+Fc8YZZ6h/n33orzQUi/+lk15f5oUXX6xWWWXl6vrrYiwtTMfRb72Yv+fDZNAe76k0GUX9/tz5ermO//zGN9Q3ccJErdaDTpqsn6f+IdSn8bnmmms1d9z+5Lzfy+cdn86Kzzvn0Z/3GNPuG9jJ6cmMviRtbRXgfET7Pw7//Rp/SvyQgdL+tCmkIO+sVrcYeUxLe83zdNtQrLT/pqRw9nK71S0OeW8woQ7vom0Tp7T/kMBc5MmyusUl/5KBhpSgwXkXbZs4pf3lDa9Fg7LJs7gF3ZwUz6ZtQ7F/x/i7wwCeaO4sV8byFbLDaV4pK5q77VntvhevaI6mieawEdVOtOTpL50dRLtr9k6g13lrPAHXLSENUUhBy4suRvavBj6C4Qr0Om+N50Mb/09/+hNNBPyk6OSTT/q3Hf85tJqGOMccfbQm/cYbbhD7UksupRO+tddaq3r11VdDhumS0r8/Kpwjvs4T1Hr+N9poIynLq4ivv/56qNuenaoaS5fdIv6k++/X+Keddprav0SrdTj/X/jCF8nuLy+9gC4rlo9UGeN/7/vf133ebfdxRPG+CRMm6CRqnNg1nFDG33ij1s2X5eJDr/YROx/HKqusGuozx0HwF2f/XPb3rJ/+VKK99PKLFd1rKfuxxOKLVby66T+mHBlmz5pF9z+Tjc3Z4LoRXUaMY33ttddCeRZCrs4+x5873q9jjvXnjj2Tn3iiosdFS9n1N9wg8Lkcf5hRVTNnzQwTdp4It1X330e5p/g38HmnCebSNJnHeVlr7bWqKVOmSDnePProI8LRP0xIlb5e3nrk6dHq9dQLWyiUHb/x6vn3tiyKBImRPIrMNKb1mghsLvFNQlKI/uetkqxIkJT6vGae0Ba8L5aNRRVJQctTj4AS3+ZGkhUTJC7vzzwl/771xFwlo1NmLv3fJCSFpf/5/uWzkvUycXl/5in9TxLmcxNzl7YtpZT+15CYkLUkN1krk/T6HGeeD1T740tnB9Oihlw6yyuaNNEcPZZXNPeqxu3BE026lnbosJG0ounv0fz0wB39bzd/bC2TkzuSJCRKzmyoXmL5gAq9Wi/cwsJ0LZIo9QI1txT0pRV6tV64hYXpWiRR6gWuoNU3nmTwJOKUU34UCvrSsl1A+XqNWU5D+XN/G+7FpMnFcccdp8Vuuvlmic/3Oq699jqCeQKy7bbbVu/MmCmVTX78CbHz/YlNn802+1iY8LVV06dNl2P3R0DsEJ8ngphMTZrkVzT5nsyBgwaJnY//6quv0eOXld4wAb/t1tuawlZ//vOfw4SyrVpl1VWUc9vtt/tYVOe43XYPdaq7mjdvnt7nyfv00MMPqxP7uOqqq/pzmOX/l7/6pazy/ZzuA+XP6afxaiP9oYBytsUWW4otKZIo4k427N50s031OKZNnUYWtmoqqvPOjauS9tzxOeO8cfxhw4dJGZTzNfhKtqT94v3jY/v5L34uvJvDef8d1cETTNSz7TbbVjNm+sny45PDef/P5vOuATOQHHKiZERSa27Zcdk05r9eQ92S1JkoC+Cyu8RHEmIq/OmoJ6+FJUl5otQL1NwSSzYlPqerlqB6DnNLUiRRcmZD9ZJ62ZT8c7oWkL96RrMiCyhfc0vqZVPyX/KfNaam1la3JW0qURbARb59yyvtD/nw3bGevBaWJOWJUi9Qc0ss2Xxo88+Xzg7EpbPDRsmlsyNx6SyvaPISJy91Dhka7tGkSUD8mJT4PITmmDJ8zyBb4ERvQGRPb14FMbV6NnysMQ56KjxVvS2cYJE7jRT4mdXT4WONcdBT4anqbeEEi9w2/pVXXSGTAP6hf/LJ8b4/Tw91icI4rdt6meL1lCNFaXOuuYTy2OOOhbm6/obrJP5N42+sHnzooWrppZcm3a+wjho9UiZl9HRSmaQcc4xfTct2o9pss83EzxOZadOm+rqzneOVRZnEEWezzTerPr7VVtWyyy4rsVdbfbXqD/93MaqV+xL5AUGYHD311FNUJ1eYHttEubTTT6CYP2fuXOHcbieadOls8qEqOP8rrrCC3x+agP3lCr5n1J8VP9Fsq3iiqfGkAh//l7/8pZTjBw6x5ZCvflWPazeJle6jFLWbED+aOqvNPrZZmOhx/niiiY+vi+9VRe5kohlCHEX3c/oJoqs+T/d9enNwBsE1DaU/HCGX3z7+W3KkfMkw1zmezvtDDz9ULbM0r2z6XI6iBw7xZHzyE4+LzZ93rjCt24SQHfZ6yhGH3ZDbtn+tM7P6IjYC47Ru62W+11OOr8dsyV3i28wBp1nxGYOPNcZBT4WnqreFEyxyp5ECP7N6OnysMQ568WUqNQAAQABJREFUKjxVvS2cYJG7xA85kpwAp1nx6YKPNcZBT4WnqreFEyxyp5ECP7N6OnysMQ56KjxVvS2cYJG7xA85kpwAp1nx6YKPNcZBT4WnqreFEyxyp5ECP7N6OnysMQ56KjxVvS2cYJG7xA85kpwAp1nx6YKPNcZBT4WnqreFEyxyp5ECP7N6OnysMQ56KjxVvS2cYJG7xA85kpwAp1nx6YKPNcZBT4WnqrdTbrkcNBgPAxpJDwOiS2cx0fQrmmPCU2fp0lkiDqCZaf6xoXPfwuhJeVZqhmBK7LHmFuZIWABKyrNSM7y38a+8gh60E37gn3zKybL3skvJfsWDamGOhBaI79XDpERXxaiya66+VuLz5aZ85Ndeey1djtlDbMznBwA9/vhkKfvN449P0xVi6USTJm3pRCnuDN8rifiH01NU11xzzaC3VZdeemkg+qN76eWXNT7nZtKkB7Qie/x33nmn5m6ZZZZRzh1dTDRRfpVVVtH4N9KltP7TqfWtKpfOapUKfnH2OVLul788R2xf//rXtYy/l1SpjQDxxckK/dP80bFy/oRjiHruaDJ9rFmNPvjggzU257fVZ+TIkcLj/P8v3e/Jn2uuuUaO45Zb/H2d1/71Wn0yL+d8/y/uX01+3E80v/nN47Vqs1tqezcgKc9KzfDe9r8S3549fzJkm5yXyGlhjoQFoKQ8KzVDOf+SkiQvMaktzJGwAJSUZ6VmKPmXlCR5iUltYY6EBaCkPCs1Q8m/pCTJS0xqC3MkLAAl5VmpGUr+JSVJXmJSW5gjYQEoKc9KzVDyLylJ8hKT2sIcCQtASXlWaoZ/Pv88b9SJJl0hy5fOjqJLZ3elp87uJk+dJcMwXtHcOdyjSTd11j64hph2MNnHGrFuiPym2bPhR6IxBriIxecH12CiecopYUXz33D88aEwbdVx9BoOhPgLPQGW499+2+2a65/99Ge6T+zba6+9RP8vekqu3t9GFaAOuXSWeMydmqzIaZXyUB5/nG00cby/+ut1f6MnpfqVU34Vx6tT+J5Q/+mkexn54TSe76rLL78criQ+LjvmS0d32GEH5dx++x1a1t6jif2dT/di0gtkhcP3V7711ltatgffb0nH0bdvX7VZ8OMf/Uj8V115lRz/7373O9L9cazXbz1LrWHE58xFnE40p3P+rJNqwbnjiSKfO/kQ56STT5Z94fgf//jHa/Fg2HrrrQPPVdfJA4k6q8tpFZePk1d/8eFVWvwxgH177enPOz8dWT+LWP/T47Igy791NbX/xN+FEqtNz3+tSCTWXCV+SA6JrtJUT5zll/x3mbuunKX/+6ZV2l/pf02DTBe22K3K+BNz0ZCwrpxl/PnAjz870C2XeL3JLuEeTZ5ojhm3B73ehJ466y+dpafO8sOAhuTv0Wx99lt7KCfsxL+GNqVf/8RpWY80rpbe1uU4HmK3LB4cJFpT2NPS24VnwfGvuNL/4Ocf9ieelL7eg3dfPv+C4//Nr+i9iRSDJyX8pFJ8Lr7492K/jV79YY/wkEMPEbudeKRPVEUNVdV/441D3a565ZVXooNRSN2uY3YNnLbqnrvvFs5hhx6ql3TuSU+CtfH3++x+Gv+gL385VCTFdPODH/xAJ0b/9V//pXZenfXHyvdo0kpf2AcQnn3mGfVvuml4GBBxmLbWWmt7H63OPvXkk76IyT+v8HJOHg73dT7+2GNaF8e84447ECaUJZHFzwkbd5U/Iv+aXpeC4/mGOXe80tweJuv8ipxnn302rZq0mXSf7dJL0eXQdN75smh+Zyt/Lr74YqnztttuFZ33kXfzkEPonHA7Cfd08rHyK12811PzLZdr+cGxtyQFB4nWFPa09HbhCcW6LB7qJdEygjn/TcfZshyT2Yl/TYURlTgt6ynxQxIbE9g6b0xH7lsn11da8t86j6X9hYbkm0q+bdm0mFjaX8xBnjjRQ/ZK/yv9r7F9cB9CJ2omhBbU2tll8VCaRMt6Snw+Cc35bfDIezRx6SyvaPLrTcbsbt6jOdpfOisTTSLyTZ32k4YKGoyQtoBg74AbUmmJwSgGgpuaggYjJMgqvQNuyMwdVOM1ENzUFDQYIUFW6R1wQ8L9x0v/RD/q/YrYd79n3geZE6lAagoajJCoWKV3/NSsVuF9mEw552y655Dijx8/nrRYydw5c/VBPTxJ4fc08lNe4ydwSWywwQY6EeL7OdOP5w0dNlQnhbhU9W16R+Taa9EDiMLx/98fLtaiT9CDaFZbfXWpt3fvPnT57mNm76pqzpzZ1UYb0tNuaSLEDw7iCRU+14f7D9m3225jxYwjY8mTNT6mHnSJMF86HD+dcqmwTur+8z+ji9Bz9I5Kvq90K1k9DDWS+MxnPqPHvxO9smb27NmmnOf95txzZcIWSkU/GTbYcENfnnKs+TPEn/3s55J/3q947jzhmKOP0dhf/OIXY70BnXce/sDg6FyfrTk85xx/r+n4G28yZTqruXSf66DwgCbk4Xvf/4FwzC6RHjQYIU1tHnoH3JBKSwxGMRDc1BQ0GCFBVukdcENm7qAar4HgpqagwQgJskrvgBsycwfVeA0ENzUFDUZIkFV6B9yQmTuoxmsguKkpaDBCgqzSO+CGzNxBNV4DwU1NQYMREmSV3gE3ZOYOqvEaCG5qChqMkCCr9A64ITN3UI3XQHBTU9BghARZpXfADZm5g2q8BoKbmoIGIyTIKr0DbsjMHVTjNRDc1BQ0GCFBVukdcENm7qAar4HgpqagwQgJskrvgBsycwfVeA0ENzUFDUZIkFV6B9yQmTuoxmsguKkpaDBCgqzSO+CGzNxBNV4DwU1NQYMREmSV3gE3ZOYOqvEaCG5qChqMkCCr9A64ITN3UI3XQHBTU9BghARZpXfADZm5g2q8BoKbmoIGIyTIKr0DbsjMHVTjNRDc1BQ0GCFBVukdcENm7qAar4HgpqagwQgJskrvgBsycwfVeA0ENzUFDUZIkFV6B9yQmTuoxmsguKkpaDBCElkmmuFhQMNGjJBLZ0faS2eHj6SnzuLSWV7RbLp0FlGTXTNRGv3WmHOjrggA0hbPsKe0JtY9uSXqigAgs5hW9ZTWxLontfz2t+fpROHII9OH7eC3vI2X44WNfxK9OgUTh913312rOfHEH4qd79nTPQvgtVdfoyfR+hU+Xtn64Yn1FVem8jsieQWM37l4T/IuRp2OVNttv53Gt5fCXnVVvHR4+eVX9CuiIf5kWrFbY401pNzyyy1X/epXv64ef+zxauLEidWwYcPEvhbt3513pquIf/zjHzXWkvT6jovpQUN3EIcvU/7iF78gl+zyCuBZZ51Fe69HLei5556rNtl4EzkeztdBBx1UXfz7i6tT6DLVddbtV/Xu1UvuY0UCufTMmTOqT279STl+LjNw4MDqkksukf3kCeaYsWOqJZdasuLLlG08X0cn5W+VsL9t1b2cP+xSkCdR3v3Kclu1hzl3XJ4p/LAe5H+PPfes+Imyk5+YXP3iF7+o+tC7Qtn31UO+Sn8YZLavNJ73q7ka+YRwlZz3dcLKLh3PiT88EZSa9GVQsubWQ4menBt1RQCQsXANeUprYt2TW6KuCACyFjUaPKU1se7JLVFXBAAZw9WQp7Qm1j25JeqKACBrUaPBU1oT657cEnVFAJAxXA15Smti3ZNboq4IALIWNRo8pTWx7sktUVcEABnD1ZCntCbWPbkl6ooAIGtRo8FTWhPrntwSdUUAkDFcDXlKa2Ldk1uirggAshY1GjylNbHuyS1RVwQAGcPVkKe0JtY9uSXqigAga1GjwVNaE+ue3BJ1RQCQMVwNeUprYt2TW6KuCACyFjUaPKU1se7JLVFXBAAZw9WQp7Qm1j25JeqKACBrUaPBU1oT657cEnVFAJAxXA15Smti3ZNboq4IALIWNRo8pTWx7sktUVcEABnD1ZCntCbWPbkl6ooAIGtRo8FTUqKdaO5C80l+baY+DGjP/+DXm9BTZ+maWlnRpBnpgIGDQo1cESojaSBCwuR1aJBgpVK9AlQzJNhYGmwgyDB5HRokWKlUrwDVDAk2lgYbCDJMXocGCVYq2csTGEwA991335RgY1qMaiGplIFGi9YjjjhC4/CqG3/Ye/jh/mE2l132Z7Glm87qvvvuo/slabJCE44f0f2JUgrVkuS7DXqGhwfxKuHNt9zsOVIRiJVOWLmeCy+8MPEOonaGHOy8y87i85tOuRz0sMMOpZXEZZTT3tZe8bs7jzryqOrtd95O6mLlpz89S7mol2WfPn2q/v37V1+lJ8U+/fQzMWeym3Ff+Z7NAw84sFqHXvuB8n369K6233776p576LJfUCEp5jS6JPWEE75TrcyTborF/3gVeL311qv4oT3PPlO/rNUX76x6tPv7RbmMzx9VKB/POOKIw7XOnXYa0hifX1Oy3XbbV23tfnWc6+KcDR48uLrpJrtq6WvGQ4wuv/yyUJ85GKLcd+99Fb8XlOv50Y/43mH4SRroa4smrzcQQDQSLF+fag0M9sFP0kCQYfI6NEiwUqleAaoZEmwsDTYQZJi8Dg0SrFSqV4BqhgQbS4MNBBkmr0ODBCuV6hWgmiHBxtJgA0GGyevQIMFKpXoFqGZIsLE02ECQYfI6NEiwUqleAaoZEmwsDTYQZJi8Dg0SrFSqV4BqhgQbS4MNBBkmr0ODBCuV6hWgmiHBxtJgA0GGyevQIMFKpXoFqGZIsLE02ECQYfI6NEiwUqleAaoZEmwsDTYQZJi8Dg0SrFSqV4BqhgQbS4MNBBkmr0ODBCuV6hWgmiHBxtJgA0GGyevQIMFKpXoFqGZIsLE02ECQYfI6NEiwUqleAaoZEmwsDTYQZJi8Dg0SrFSqV4BqhgQbS4MNBBkmr0ODBCuV6hWgmiHBxtJgA0GGyevQIMFKpXoFqGZIsLE02ECQYfI6NEiwUqleAaoZEmwsDTYQZJi8Dg0SrFSqV4BqhgQbS4MNBBkmr0ODBCuV6hWgmiHBxtJgA0GGifUd6Pe8v0dzqCxc4mFAY+lhQOPoYUBtfC1tZzXPzaP31s/vmOfmd853E2++iX5rph/+9UkrLNkHVsjUTfHpCkkuVckNYFqe6LxcI7oUbS5va2tmwAppS1CMD2h8ukTVufZ2+r/Ndcyd5xZbvA/tuGYnPYigtTjCUK7ZS5dzOrpU1PWgOHM6OtzifRaT2jrmdbhOQhy/Z3sPCl0v78v2pBx2ut69e8ssyu7hzJmz3GKL9XZzaf979epJcXqGPY1i5syZjiZ6rnN+hyOC6wUOhZszb57r2bOHa6fjnjOX61oiFjTo9ddfd1OnTnXr9uvnFl/M7390Y78r2Q9qbK437Qs9WMh1UDue3zFf4vNx8hKf7j8V66r9TZ023b3xj+muX7/1aLfbJRwixdiMYK2I/6Z75dUpbu211nR9+y7py3TR/mbMmuVoMu/mzp7jevfpSecizR+9b5RslB/ad3rtiKNVyrj/uhM+Pl1S7J5//gW3xBJ93RprrB69Wfz51AbIJPX0oDw19b/ZVFcP2hecd1SGI4XuJayQmTeLv7D5T2tJI6U+xIXMvCV+GX/L9w91ivL9+27G/3QU8VqLEYacPKq18Jbxp4w/ZfyR/lH638L//vQjTrptMcIQ6YMx/gwYNETmAPybnhahXHtP+n3Z1k6/8XuSTr/yeebZQROB+fP5hzlJ+nE+ccJNdADNh5YevtfAlB+xdNyQygVBDSlI3KooSMkNGpiIC6lUENSQgsStioKU3KCBibiQSgVBDSlI3KooSMkNGpiIC6lUENSQgsStioKU3KCBibiQSgVBDSlI3KooSMkNGpiIC6lUENSQgsStioKU3KCBibiQSgVBDSlI3KooSMkNGpiIC6lUENSQgsStioKU3KCBibiQSgVBDSlI3KooSMkNGpiIC6lUENSQgsStioKU3KCBibiQSgVBDSlI3KooSMkNGpiIC6lUENSQgsStioKU3KCBibiQSgVBDSlI3KooSMkNGpiIC6lUENSQgsStioKU3KCBibiQSgVBDSlI3KooSMkNGpiIC6lUENSQgsStioKU3KCBibiQSgVBDSlI3KooSMkNGpiIC6lUENSQgsStioKU3KCBibiQSgVBDSlI3KooSMkNGpiIC6lUENSQgsStioKU3KCBibiQSgVBDSlI3KooSMkNGpiIC6lUENSQgsStioKU3KCBibiQSgVBDSlI3KooSMkNGpiIC6lUENSQgsStioKU3KCBibiQSgVBDSlI3KooSMkNGpiIC6lUENSQgsStioKU3KCBibiQSgVBDSlI3KooSMkNGpiIC6lUENSQgsStioKU3KAxc+CgHWWxpEcvmlzSQgVPMOmViTT55IUumnTyRJNe/eA6eKJJ/zposnnrLeOpqK4/hClnCFw7iobIiSnusCDa6GpSwvOKZ8cybE1sJT6dmnhuGlKYmWIuBdGm5N+27jRdSVsLrsRW2l9pf6X/pZ2mS833HqYIok0Zf8r40+obLBlrQ7tKbGX8LeNvGX+7HHFTp+89bBNEmzL+lvH3Xz3+Dhi8I00w6SrNnr3oykVa0aSrF+l1gjTJbJeVzmSi2UmXznbQZYcTb7kptEptngzkE5stUUjhPo8GbOamoDeUylyJampXqECYVivxS/5L+yv9T8YEOzAkYworXToN2/AUKhCe1cr4U8afMv6U8UfGBDswmBHFwy6dhm14ChWU8YcyYLNRxt8y/pbx94Mx/g4cuKPr0YtXMPlSWS/9iibfVkeXDScrmnTvHt/bditPNLNOLYZk47u87fiJO1NytugNha3J4qw6Ur23a04slbNFbyhsTRbHmoC8t2sOuPW9lXINha3J4lgTkPd2zQG3xM+zJXpD8qzJ4phJIO/tmgNuyX+eLdEbkmdNFsdMAnlv1xxwS/7zbInekDxrsjhmEsh7u+aAW/KfZ0v0huRZk8Uxk0De2zUH3JL/PFuiNyTPmiyOmQTy3q454Jb859kSvSF51mRxzCSQ93bNAbfkP8+W6A3JsyaLYyaBvLdrDrgl/3m2RG9InjVZHDMJ5L1dc8D99+efVzT5mSI9eaLJK5m8oikTTrqUlnCYaM538+jy2U66P5Mvo5UVTd1HPEjAHJJCBcr2oJWdvfBBLqhEie9vpDb5UqjAJ1G3rexMgA/SF0o1rUj4JT7fyG0ypFCBTZjkjP7WmNmgogykt6cauCxL+y/tr7S/0v/MCKFQgR0wZMwo408Zf7NGEVS0GUhvTjVbsnz/lO+f8v1Tvn/MCKFQgRtA92jK/Zh06WxPWsHsQZIfcMmrmTzppInmGLpHk+7N5AcCycOA6NLZhXwYUAzDAxMGpDBIJU5SwoXhuNwhDmUJMc6D7A/7SE5QWrLE9wNiyb9kIGkcpf2V/kc/PPkyf2oKfLlN/CQNpYw/mg4FMVUZShll/C3jL/8gDZ+kcZBSvv/L+FPG3/L9Q0NB+f7FIMkyGSiNmtltkYBTxvv7/Ttg0GC5L7OnTDTpvkyaZMo9mrSqqU+d9Q8D8k+c5Uknr2jG3Y6odqzpkao7N0P30m61CAGwvC1GjciyBadF1J2boXtpt1qEAFjeFqNGZNmC0yLqzs3QvbRbLUIALG+LUSOybMFpEXXnZuhe2q0WIQCWt8WoEVm24LSIunMzdC/tVosQAMvbYtSILFtwWkTduRm6l3arRQiA5W0xakSWLTgtou7cDN1Lu9UiBMDythg1IssWnBZRd26G7qXdahECYHlbjBqRZQtOi6g7N0P30m61CAGwvC1GjciyBadF1J2boXtpt1qEAFjeFqNGZNmC0yLqzs3QvbRbLUIALG+LUSOybMFpEXXnZuhe2q0WIQCWt8WoEVm24LSIunMzdC/tVosQAMvbYtSILFtwWkTduRm6l3arRQiA5W0xakSWLTgtou7cDN1Lu9UiBMDythg1IssWnBZRd26G7qXdahECYHlbjBqRZQtOi6g7N0P30m61CAGwvC1GjciyBadF1J2boXtpt1qEAFjeFqNGZNmC0yLqzs3QvbRbLUIALG+LUSOybMFpEXXnZuhe2q0WIQCWt8WoEVm24LSIunMzdC/tVosQAMvbYtSILFtwWkTduRm6l3arRQiA5W0xakSWLTgtou7cDN1Lu9UiBMDythg1IssWnBZRd26G7qXdahECYHlbjBqRZQtOi6g7N0P30m61CAGwvC1GjciyBadF1J2boXtpt1qEAFjeFqNGZNmC0yLqzs3QvbRbLUIALG+LUSOybMFpEXXnZuhe2q0WIQCWt8WoEVm2YFOEVzTxWhNe2eTLZfnSWba18T95vQmvZHbSuwc75so7COXSWVOJ3TXBxic7KDr/uYrC6580eVfI0NUjrmRviUI0f1Ov+ZuwqctDszU+H4Pjlvgl/9wOQqMSQQ2ltL8sJzY/Hpf+h+GjjD+6JmXGWDPy+iHG+Mr4y2MM9aPy/RPyYMcXzg0NyMmYbP1l/OEMlPEX3aeMv2X8DYOF+Y7x0GyNTwYd0alcYpeeVcaf92j8HTCY3qNJ92jy+9l5ksmTzXZ6fyavbMo72/VhQPQQoE5+GFBY0Ww8afqNEWa5tRPrT64OF+pXEBqD0blI06dGsYYSX3JsU6I5NH+BUL+Ckn9JhcmH5i0DNYo1lPZX2h/9JLBNQptP6X9l/A8/F7V9KCjjr6TC5EP7TQZqFGso428Zf8v4W75/aMyo/RGrfP++H9+//DAgnmjyg4D41Sa9+L5MnniGV5zQiuaudI/mPHkI0DyaZM6nBwLdmj911o7x8n1gDAK9zlv+xHMfeUCQnmm33mP9ihWAbwwCvc5b/pT4Pg/hV40oyBgkGFHGHCJ/ylUAtjEI9Dpv+YPyJX7MExCkz5Tdeo/1K1YAvjEI9Dpv+VPy7/NQ2l9sJ0CQyFCU3mP9ihWAbQwCvc5b/pT25/NQ2l9sJ0CQyFCU3mP9ihWAbQwCvc5b/pT25/NQ2l9sJ0CQyFCU3mP9ihWAbQwCvc5b/pT25/NQ2l9sJ0CQyFCU3mP9ihWAbQwCvc5b/rwf7W/goCFyiWyPnjzJ9E+d7UErmjzplHs0R44eW83jS2fp/Znz59GEk1Y25dJZ3mNc08EQB6CACeaT2xt1GINMhQkS6i3xqdX4ZoPMxRNhcs9QCcgdydjigh+kNPGw1usgT4kvCW2Zo5Dueu5K/kv7Q+MgKQ0IrSjIVDT0YSKU/idJROZq/QwpVkIwNOowBpmKkn+kR3NKhtL+SvujDGjTUIBGEmRub9RhDDIVJgjqJEJpf5IMZC6eiJL/JAOaILQdkuX3b0yR5AdJCjIV/1T/GzBwiF/N7MmvM+klq5vtNOnkySZfRhteb0KXzMpkky6fpVXNCWFFk/cy27W44waBE9nGGaBwItFaPTaTSlsaRSCtDzj6IoIPUjw1tzGU+DqoI2cskSFI6wOOvojggxRPzW0MJf8l/+FHBdoMS7QQSOsDjr6I4IMUT81tDKX9lfZX2h+6i0r0EEh1GBB9ERm3QPHU3MZQ+l/pf6X/5d2mfP9RRni+aEaKljnqilXGH8pjLYnG8E+OvwPl9SY0qaTJJU808RAg/8oTO9Gklcz5dI8mr2xOvHm8P7s4pWZ/YPKy7qhb0hKiEamiow53stQJeSW5riXqjrpFyREQqcQv+S/tz/7JL3aP2qjeslPVHXWLqRew9L8y/pTxv3z/JUsOGBxI5oNIriu17qhblBwBkcr3f/n+L9//5fs/DgoG5YNIriu17qhblBwBkRa18cc/dZbuy6R7MnHprLzehO/T9Cua/j2aPMHsoEtnO2jCiXs07aWzMUsGmax6aAxMgyqSN2yi7h3scIvDO+kEmDlui1m25eO7yteV1QhVJG8+OvFfnzrVvTH9H27DjTYM56F7xz912nT3j39MdxtuSPXkH+RX8srnzRjI9sLzL8iTp9ZYfY3w55SPTv4lVUiHSN6U4/8w9v+KxqFHH33UrbPOOm7JJZeU8xhOpg5W/lTjhDv33PPPu5deeFH630orrlTavwz67037f/5FGnfa2t2aMu5Ip/tA5n/yk0+4FZdf3i2//Aq+TVHz+SB9/71IbbiN7rFZY43VY5u3KDb3MPIbA/OgiuTNe3P+JZAP5vvnhyh+JyXt7xhr+val/W8xGbDHJ3nlTSeV/btbe10ap/rSOFXy/6E7/x+k/l9+/1MHehf9L//9+1HqfzvI6014RZNWM+UBQPR6EzwciKS/dJYeANRR0WqmrGjiPZq+j/J4FkesFIrrn9kkA2FaEVzeajQD0xLd0FAXpKkiNRnNQEPvEr4yZYp7cNIkOQmdNJF/++233Yx33nHLLLOs22TTTdz6621AvvakjjSM0QxMCgTl0ksvdUcffbR7nn4k7LPPvu73v7+oieZtqAvSMC+heo4J9ey9797u4osuTssYLsO77rrLbbrJJm7JpZZyJ510kvvJT37ipkx51f3whz9wxx9/vLLvuutOt8kmm7qliJd2RKUISHfJaAZyzE0optSVFl84DXVBmlKpyWgGGnr3IOqCNLWkJqMZaOjdg6gL0tSSmoxmoKF3D6IuSFNLajKagYbePYi6IE0tMO21117uuhuuc2+98Za7ecItbtAOA+3AaEp4+MYbb7jPfe5zbtq0ae7ll19xr7zysrvkkkvcbrvtVuP+s+2/XuG7tOAgIU3x1BS1aVOnuRdoIrfVVlsZdvfgXXdS/6Xxb6klaSzIfk/HiFy30QzMo55M484ZMu5MoXHnh8m4k3NFR12QhpSajGagob8reNhhh7n/u/hiN236dBqff+/2pXG6q+OfOn2qe/H5F33O/wXxdWdRF2Rw8PjNeXyVvrd8Hr9JnnCCMq7W1R2AuiBNHanJaAFy/3rhhX+yHaJayHcR31C7DxE3SB5rrr/+evfmm2+6m2+hsWYgjTXyAZEUA4NTBJe9gcq+QWVvobIDtaxlZRh1QRp3ajKagYbePYi6IEMt/L2+MX2vL82/EeRjCAYGZ/cF6oI0NaUmoxlo6N2DqAvS1JKajGagoXcPoi5IU0tqMpqBht49iLogTS2pyWgGGnr3IOqCNLWkJqMZaOjdg6gL0tSSmoxmoKF3D6IuSFNLajKagYbu7Hs0+bLZHvQHSrxHk6Xj15vsMnxkNWSXYdWgHXeqBgwcTH/A76R/2afBJAyxG6dCBVpbtDRGMAEtM5gbTB+W+Pfcc081atSoihLOp6lab731qm9+6/jq0EMPrZZZZplqgw03rO68885/yfHPmT2n+u3vfsd/GKsOPPDAmCJCNoUWm8ABdlZz58ypfkf18P5KPa0KkP3aa64W3v777y9B3nrr7eq4Y48R22mnnaZxr77mGuW1qs7vQOrt7Oys5s2Zm+zmNajriweQ3fAVKlBvtCQlknqb4ovNFrYlxG6cChWU+CFfMSMfnvy/9tpr1YgRI6Q/3XPPvfbMeywHFY/sS1/6UtW/f/9qfse8avLkydWaa65Zffe73xVuZL13xz979uxutz8uq5+w89ttt13V3tZWPf30043Hr8EiqOgdzdXcuXONpaquvjaOBRpDgc1UMDaYxCN273zrrbeqY47x487pp51aq81WYbESFTR4G0x5/KgzigWAIKdPn159/otfkLHw8ssvl2LpBkxvlZzTdUBPP/2MN9itUA1foQLdk2ixe2cr8/itt96k8ftYHb/FagvbImI3ToUK3nX8xr2L1Un07bbbtmrjdvjUM6Qbp0IF6o2WpIQ9moAts7VJPEI1fIUKFjo+jzUjaazh71z+zZB8YnWJ2VfeWWGc4rJ3S9lYAAiSK7CY9Tm2r9e8DQW4EH+kIlObQgVaW7TU4/vK+LeEHxcO4N8S9mML1+zGqVDBu4rvq45lNVSDSXxiN06FCkr8kMSYkdbnv1X+58wy30V6UghIpaZmhQpK/v8F+dck2twzDvnfgeaNPH/cceehMp8cOWpMNWrsuGrsuD2r3fb8j4ommmOqXYaNrHYKE81PD9oxr0pjxFMXG4q11QqKwTIsBruzot8h+jGwZrM+YEgl14BlWAziexd/1OiR8iVy1ZVXIjh9odxd0RJztcbqq1MeaF/UEwFskOwBhozsqnrqqackzlcO/oph2lKW3fr4n6Z6+ELngw4+WArYWMAsX3rp5WrkyJHVZZddphXzDygue+aZP1HbSy+/KLzLDY+PpKvzf8P1N1Tr9luv+t35v9Nj5gpffOklqevPlzX9UNOQBLCnbLMYnK7j21K2NDAkaqtLy7AYzBK/q/P/Qcj/kUcdxVf8VvdPmoSTpi3JntF33nmH+nJ7dfjhhytv9uxZit/r9veZfT9Dk96NuhV/3333rTamCTN/cIwsTz/99GrvvfeuZoUfpvAJsWFz/fXXVf369ZM/WsWaeMzwY8Fll/25y/7PVSIGZCsb23nc4R/bZ555Jqv0aSrlPX77/vS/U0/9X9nPq6++aoHHf9rpZ1R77xNzbo/KHp09qogtw2Iwmo/fj9+uOuvMszSDtjQwJGqrS8uwGMzm+PCyRClItp2m7XAOq118bCmLUaR78VETJGqrS8uwGMw0/pFHHy3tYtICxhrUBMm1HcXjFLV9WzZmjxmWzTp/Oiu68qnW173Pb1EK0pdKfZaf4qZSlpEe/4sv139LoAZILg0MaWtMsWVYDFYav5nhudYHDIna6tIyLAazxF/Q9/8+/D22cX8955w5ZBIS2axLy7AYzJL/BeUfWYPkzAFDYqLJC5ZDaeFyOC1gjh67O00096jG7bl35UaO3rUaJiuaQ2VGusOAwaYaUyVq1BDse/cfW41iqSZoIqzH2plofR+u+F/4gv8rNl0aIoeBI+EfdPwFce+9tGIiRnjM8apJQcuDf/bZZ6S+g7/iJ4iWqKUJKBZC0ER4/Oxzz8oPbKlHyQpstTV8xRVXSNn4g89TtDQBxS3is/n0M06Tei75wyW+gqxUMC600JgLGV/30hZc6Gh1oq1GsdCCJsJ6rJ2J1levf0EWLU1AsRQKmgjrsXYmWt+CotX9WpqAYqEFTYT1WDsTra9e/4IsWpqAYikUNBHW01kde9yxsqI5adIDXcbn/kuXGFZ0uXjL3dCaCSheQHzrzku1DESOZZdbttpss80SisZcQPxll6WyH+OyoYQtmNTYtcITU56kX/KHS4Voq1FsPWK0noDVpKAx8BVXXCljXz7ugKylCSj+F8ZHnFYSMc+gySOP+ddee22gBo8IsNhl7UYPpd6t0JoJKJZKbJzOSsfvs8IfCpWs4N2GtlEkeFpTGj9Wbu1sTUtF3sIhLU1AsRQNmgjrsXYmWt/CxbQsLU1AsRC8duwxfiU5ThYDS8kKbLWCj5VV6LZsopnStDQB4OW4r2+2qSeKER42BawmBWnFC6lpaQKKpWzQRFiPtTPR+hYyqKFpaQKKxR80EdZj7Uy0PlPxQkItTUCxlA2aCOuxdiZa30IGNTQtTUCx+IMmwnqsnYnWZypeSKilCSiWskETYT2d8j32sU3xPWZ9CxnU0LQ0AcULiG/deSlT9UJBjbmIxed5I69oDtlluEw0+UrZUbv6Fc1xe+1d0T2au1bz59NDgOi1JvPpFSd4vQl/Cya3zZCBf23BZp/T47mmBKDIim4ryJ/vBQIFafGpMcjwYY9Pl5a63/72t+6uu+9022y9rR75Ntts4+hSGffwww87+mFI93VNcePHj3d0eZBbbbXV3BVXXuk+seVWboP+G2n+H330MXfffffIvcpDhw13K6+0ItXnz85zzz7n1l2vnzv4ywe54/7fsW7irbe5tdday+2www6uV69exIvZ5YdA3Xbbre7pp592m2++ufvEJz4h+8WM55+jetZd19GKpvvmsce5CbdzPWu6HT69A93w20vvk+YHD913791073ibo8sMpforr77KjR0zxtGKpjvsa1+XPZtKPD5O+i3uRgwfKXGweeSRRxxdPuzWXnstt8H6G7p1+q3rXn/tNXfiiSe6M844w33/u99zQ4bu4pZbdhm6F3RT9/rr09y991JddCzDKaa9Efu+e+9zDz78oNt4o43d1tt8Uu6NRbv18eLx8z5NnDiR4q4t90Ddfffd7sknn3JDhgxxq6++GnbPzZ09x016+CH35BOT3X6f2c898MBD7qmnnnBjx451PSmnHJ8uGZZ7VZ95+hnXf5P+biDdz0fPJEna/5w5c9z4m26kB8W85Nah3K6zzrru29/+lnv22Wfdn/70J7cSnUeumy67dJ/97H7uwQcfdE88+aTbbcxY16M3x3HUPl6h+3Am0nXwbW7YsGFuqaWX1uN/js7Z+BvHu9FjR7sVllvB3Utt5BF6QMSQHXeUh9nMp35+D52rvz/yd7cptbVtt43tEAf76COPutvvvEPazAYbbOD69esn5/Td9L9XXn3FTbh5Al2n3+a4fS5D+xg/lZs5Y6a79q9/dfPoAWQcY+ONN3Z9+eEX4RPPkHPcNqa9PtVV9E6mjakPrLLyKnR/1kuSf77xfMWVViE7P6zKn+UZ78xwf72O6p5DdW+4vuu/Md07bOp+6+033e233u7mzJ0r55zPff55hB7I8QDdV839hX50uwvOP9/d98ADbqstthBqPv5Nff1Vd8EFF7kjjzzSffUrX3Wf/+Ln3corrizxMf79/e9/pzZ7r7SJ4UOH037TQ4LCh9uFnOsnnnD77Ufti877U3TeuX1Jn6WENOV/xowZksf5HXPd+tRvJI9L9HX33n+v25Fu0F9hxeXdhRf9XjLD/dvfz1y5KTTG3DKBzk97u7Shpc35uZf6z+AdB7sVV1jBXXTRRTJabPmxzV3vJRaX9j/hlglu3333o3vM/T1UfK7+/ujD7o477nJr0TizwfrUZmj8ee1V6r8n/ZD670/c9773Pbfzzjs7msC6Tem+TL7Xky7xo5I8ZgxHGkTed9/9dPwPuE2oTWy99dY01vTU9sf3uN9G49lTTz3jttjiYzJe+bbit1fSWMk5O/Oss9zXDj1MxhrkPwap3KyZs6hv3Ef30k6n+2d3dTwO8Jjbt+8SbtTI0ZLrKdTPeEyi1Vs3ktvw8suFFka7Q+GmTKE2TvftttHDDkYMH0q5XcaH8Lsi+3wfnYcHHnwoPRbK6Jk/OdMdfsQR7tpr/+p22mmIjBuPP/445WZTt/3220vOuTVz/3iC2sREyvk+NB4sQ/etzZo1i8b+Se5V6mN77LGH42cA3HXn7W7GjFlu9OjR1NdoP7iw7If//n2Evlv4+4XH860+vqVbrM/iMR0NiL9zduU8nnmm+9rXvqb552q5noceeoTGhXWk//RZbDEKh4Om8YnuTZ5wK7Ut+m8Y54X2h8vxh8eum+ip9ttts51blb7b+Hzx/b4bbbSR3HPJ52CXXYa6VVZdxd1N9+o9SX2Ax8mBOwzQ9s85mTz5SRq3J7jPfGZfGf/mzJ4pOZlCudhj9z3clP/P3nfAWVlcb8/SQRRQmtRdwA4oiCIKLL0jTVHBkiIqGhN7A8WCRmOJaCwoYC/RGBXFLk1pFoqgAkoTEARsoCJt53ueM3PmnffeuyT/RPOl7Px278ycOXPO1DP9vBvWm9kzZ5sftn5vevXuY6pW8XUjqbBm+7btZjJ4rVmzFmXSUGTjyJEjzSrI4Wf++qypAwVImmYfJfCnDJ0B+bFixTKMmU1Ni5aHh/yzbuah/ZL/wP5IB+po1my0oR9+cHUj6UjKirSpaAwLS+nnL0LWPPLIo2bu/HnmsEMPFdaZ/OlX+cO4uGlhypcrYyZOfBFxHzHz5803hx6GuL7+P0dffzvV19lvXe4ojzpgbNjH93XSbt6sudljz8qCIWMN4pbBQNYF/ZTtj0b5ixs/cf2T74cff2TmzJpt6jeoZxo32c80KiggqjdWyogyjvIq9HGEsh++/977hkqRcI1YI0hevv1ui5mFuQrr7tBDW6DO6ks4s7l2zWdm8uSpaDtdTO1atc0776HtoI3ko40e0xbjcEIJruL5K9q3mzeD10yDK/8oy8NMw/oNQv0T52/lnwx3QffJzFkzzLLlkFXR3EoyAwTpC1OnyhjMeR77QosWh0Hx4v6u6sBH+hr6WyPME5q3bGEqli8vSfxb/OfOxxxoPsoX85DDWx1hylKGBmPN4o8XYx6AsSjPzSFqRGMRZSPDvvrqS9EtwPndNMwpKlTew/Tu1RMpz4P+Acicd2Yb3NhBH+9h9q5WFdTzpP7efgvzqXzMp5ofBhn/DuYvy0znTp1kLssksE++g7GCn8IoV64c5rmtJWWch2G1Jl++OPqYo005jL3aPqtDYdqjT3Ics6YZxqLKlfeU+SeeS5gZM2dBkemP0iZkLPfdi3KIsuaII1ubOilZk8wVhHGOH08iCQEg1/hLBIcbxVCn2P8b65/2hYWYS+C7majTMhgPS6PuqJCPumdK4b2mvNHkUWeHLv5EU95oorrj89Qca3UcOOeAKkjD1PZw9aod0cii91/I/xennia7+1CCEQpk48aNFhNsuRqAb5na++6/D285S7GJ2ssuvdTuW2dfcUPrq8SBBlg7YMAAuz+uxF1wwfmW73cwEbXXXXedFr51J5p5dt99a8sbUAwktkL58ragYb5diVNKLfYJE8bb2rVry7um4wfjHjV4QvmDo4Pyx6Ar6YUQDHTKgw4mK3YFTk1pMLDJdUHGHTZsmMDI4MWMkwVM1G3pPOQLkmLY6QkelKdYLLQtlILYi/C+ChNVW3nPytL+bsf7TsJJu0WLFrZ79+72qquuEp55pfLwRifmaS3fPvXp08cedNCByNMlSGdDi4m1xWDs0qXtztu8tsayI/2TTznZduzUyTZv3tzWrFWTMgXXxvT6nZV0EQ8DsqSBbvJ/7LHHhDavDTMMimBQDqdbaP2TdGAB6cvE2qWLl+AacL5t17advM/dE/kkHeapT98+di2uDTH/LKN99t7bjgJcJCtwyGfTpo22E9LYtm1be9nll1ksym3dunXtF198ITxGjRol9Ejzrj/dZVu1Olzql34IWvvm62/YI/G2qc6+dSwEvOC+9tprEpf9T+viYOxuQ6GUxeaEq4uQg8SR1V99ECYKSGNHyePlSCPzwzRuYBp9uY8fN8FWrFjRnokT9+OPd+3u5ltuTojTFfX/m2+5ReqR+XjiiccF75VXX7ENGzaQPPCts5rx48eDdgXQPgu0j5PwWxBfDPg/P3GixULV8mrogAH9pe3ecP0NSJpL3HfffyfXFGvXqmUvvOAC9MsDQ5kmpwzMis+MZ8x+c/jhhwsur6t2797D/tG/E/z666/tQPTZA/c/wJ7PPnuk9tlrNdm2Xv16Elfa1yjUO/LKNvjY4659BUTvIH/2X1eOZ4ZyZF43btwg/MuVKyvlxn7Dt19sf5u+RP10dG0orp/1X6wXypRH3Xt0txjkLZRxiJtvVJcuWWKxGAhlsQZXX2m+9f0XCySRI9J/K+8hYcw/lHVJnJbovz26of8ib488nC0zmB8ox3H9l7IA7a8gP9/uuVfSfydMmJCSV+x/QV4JR+tO4lBuvPIZGpwP0yr7+quvLU9sWcZY5Mg1W8ocvpcnbMTIEfbGG2+0WJwE+Xv00UcrFfTDTZAVaOPt2trLL788tHHth+T7FXj06dNb8s93o8zLXpWRl48/lmTdMcadaN51110Wmz22eo3qQY4+8ujDwHHta39/24XpWosy/+GHH+zekA30H4jrZI8++qjFJoHIHsIaNmxod+zY7tNaZKFYxkJRjN0f48c5w8+29SEzDkA7dHIpacOZ7fkF9BO2PyzYQ76VFsei4WcPF/nD98gq41zfZ9s6xl5x+RUol3op+XT/2GRsu5RjG8Ynppn0fn/j7+XNJf1j7hhju3btarHRYUuXcXoN7r/vvpAObYes/7V4QhGXCdPz6KOPoEyqoExcObFMoFE/NIcli5fKGMb6o+zgGEG+lMPYpLCfr1sbyj8w9Q5tgxddfBGunOJKGOJpG4zTceABB/p0uLphWeY3QN1gjNd2+N13W+QaOsdgygWmnfQo8+fPm5fJOuXfgrjkz7jY3EriIv78+S5uPF5cgXbaoB5kcT2MF+vdeOHkBPo6xgK2/26QE+zrS5YugQzZaLE4gM6Odhlt3MmJzPaiiXNjSCt7ME6gLkYZOXmA8ZwGze0rzF/69OYYfZCE56NfsPw//OhDPI/xcgH5P/30010c/zsRV+JrQSY7uT3Acvz//e9vkFD2Vb7XlbaDftWtG9tOdYuPxQvsPm07f4O/Mnx+InjVrGlP4hgxcIAbI25wvBSnuPy78CL7wIQHUDe1RCbyqQHr/4bR12uwZXsuhTwwzewLtaO+QCTK1ePRb/eDzGUbZTm6vrZCaBTH382BKHcojy+Sds7yhSZjKf+vv/naDug/QGidf/55Yf547XVuLOJYxZswTFcLykb0f8YPsnHECHvTTTfZvarsZbERL3gqG1966aUwnzr1lFNlHiDzKZQl3/X/6Q43n1q7Zi3mJq0kLvNEw/wch7kAn56w/VOWbtKxCO2TaeA4Ju0TYxHxJ7KeojbBuDiYEGr333d/qnw5/2Ed4CsMof9FDqEnCdGfaP6hoNgurvwdjspVtX1M9aoNrmqy6P2H8U9fne1he+IAs1fffvJGU67O9ujZV446O3Xp7q7OtmsfZR9VEWU4KRYtnsTOCssAZHglosByBMSg/yb+p53mrs5C06BduHCR5QQau4cYcPe1s2fNCoX52OOPSydkh3vmmWcsJyU4WZB6ocIdTgA5ENBgd1c6IAUDTsQExsUk/YcddqilggwaTrAd7DDxb9++w1asVMn27dNX/Pxp3769rVChvN3OQRkm0DkUdLZsFv4T/QSEEzQ1XGSR9m/PPVdB9oWJL8hCTK+wsU4V71yPR9jDDz0scf+KfNLMmTPb1sHCRM2fIOgoIJ57/rlUuyQtTjRiWieccIIMmpxME/l5xGG6LrjgwlRcpU3+2H0THOy+SBkzbNOXX1qcssmCf+rUqYJOQYCTMcHtUFgoyhq40MepjcWJg8WpJiZXlwsuf6ZPmy7po6ClIa8uXTpbnM5YaB0W2IQHHhB60Morfv6wveviBqdKFies9oLzwQeKIkaPvkHwseMr+FOmTBY/NxlIn+bG398ognqvPffCpHuig914k+BVwwAyadIkgb2ORSfLZuSIkeLnjyp/+ovWxTtzMJjUCeHKIwAih4Zdj8GU7VbTOHky05hnr402QqgMqxnavcTBD9/3jrt/XKCmtAjQ/s/JFOnEylO0frko0ThCu3kzV+CIT9r3gzbDFy9ejPZdwf7hD38gaYFx0oPvPNnVn30mMC5+cUJsodFS/Di9sP379ZM8zZOrswLO+iH9V3ENkmV6GxeYmiDAf/GLX2Iixz67QeKl+uwzrs8SH7v7Eh+7g9K+OPlMFi8pkkKncWOWI/IKQ3a9JK/3i5+AmjVryEJKw2lzUsw08pov40x+07Wh0VH9EI4dbntYi8NC+TPuLgRww4f9EVo/CQr9N7SZ2XNkMivEEc6FFOvt2dS7bMoC95by3N+cK3T44/pvWYsddIGxzzOtXPBvx+KpYqU9ZCGgEQoLKa8qiAxkmmnClU8/qXHQ7LKj/GM9kz5OBTGx+9YvWKoJjGmhzGP9t8PGDhc8W3/cJuSkjSPe3Lnvi9+1cZPa7Dth8Am2fPlysiglEvNPXmzHNDjlFX/NGjVDn1QFZ72xWaaG/LlIZ5/atOkrAePmEeoWm2GAceL1OTao+GZWFclMf2t6yDDHizp16mKC/7XEpZIZpoObglJmWnDKEDZBWo7QHh5CTkM7pjzgQp3m/ffTtELbYrmASCKfRmtzEBlL/vx/BuMVrxBzbKMhL8IrYeOVsogyl/KX7Y0bbCGpkJHSDpF/nIxLXC7guDhg/B49USbQG7Bt249SPmx/0OIqePzBqZfI4c2UwyD6AOQwTmmsyuHAB7gqfxhvG9pMJYyZOOmlV4wbMyuEMZObxdyoZDp6Mh2omx/RbnDrRmDQCKtR7RlnnomxPJE15IXTdcHTTa2Yf5yuMxG3Cib7+ISY0KPCLZFT4Dt/Ad6SA/mGG7Svz5Wyy2ynQg8/7OstDmsR0kW41CXKV5USTZaxJi/VxkMEOIQWbBnPEe+ZvzwjwVRyWLduvRAexmj0ccZ57lnt4xcKftYcAflaQrmNzcObbko2I7mhjNss9rNVTm5DS7K0E27aiz4HCKvp06dJWXbq1Pnv5s8xAif0yRgB/riZJf1/1SpX1pLQjB/NP8GUVZUqop0cm7STdn5uRdmvJszzUGfPsi/IPO8xSav027p1ZPOc+K7fQl9G2MxXKs5W/lK+lDsbvQwVuZOHjQwnd0iXizbOHxlnB9o0F3Bs/zp/xE0f2byizOGhBhe9P2z9wVbbex8pT8o2N68skk1vjp/6Zl/mU4hHeropjFsjtjHnU1hYT5s2TRL8DeQtjiRT7Y4BnLOy71DfAQ3bf00diwTiflhP3FD+w03JWC71hLR8thptApkjf9Ji/xdZ4+fRSkbKTAtOgbBjUHH9L0IXZxwnFyArXPnkCIhB/yn8j25XaAvl6izeaPboCRmMN5p6dXbQCbie0ItaZ3vZjl2pdbaj5co0MaksJ2B1xcEK89XkgvCbCweNJ7fJhMf+2O1j5wApQxeE31w4/5/4n3baL0QY9oYG2p69esqu3Ri8YeLCxhmX2PfedQN4Byw0ElMkk87SUBxUCKElxueNgzE7VLcu3QAukh1m+s84Y1jIPwftGpjUcNDmLjANrvHamTNnintX0S6cxg0VOss+XSaw9FtPzwwWOz7pczCnwdVG8V9wHoWZw5vIN5rAwRUxwXF4Hwn/8847L8DeeustweOiatmyTwW+CItwZ4rcRBWCi0pDYqM8z8cijIYKkCjc2mKXmoap2LFzu338scdRbm4XVgIk0OcFbk7kmU5OTjTtROGkg3CdGDIM19KEhy4+fVYtPlcguLiyGmiQA+uPNHA1GT5rq1Xb29bjItq3P1XaNAATXWdcurj4YbypU6d4OK0iqbebsGikRmCapUuWCh5PUdU889dnBHa1aDoFPfxR4RQHjYsuutihgf+3myHowYMnimpwDVBgHQo7SHky8sKFC32wS5viip0DxJMu7jD/KGkskjRyQswTYzWcNHJH+oEHHpCThtVr1shOtyRWkTIY3H473uoivS9NeilgcDFL2GWXXRZgnTqDNgYwLuJZ/2tWr7G8BUDz61+fLu2PGyJXXnWl7NQ3a9pUaLzw4gtYzLu2gKvRnp7L4MWXXCw4OvnzgVnJffWVVwXvtttu800DfRanB9xZb49FUTAof+2zPLlR07t3L4k/baobjNMMsgu7MyZQzCvLkRMYXMfGqaCTJcSugVOyww5NNoTI53P0fXy+ApNm14Y+WerbkNRPwkMWmhj0E+PCBh/vdud5usVM4hqtpLmwfSE0gC4HOtvMopB/nqyz/rloDAb55wkG6y703+XLxI/PMgQ0nsxxEeJOW4tEXs2a6TbkuAA7eejJEgfXK0Mcbq6Q7h1yGwEJdMkO4eLw/Y+bQFw4/LBVFTYlfdxNdFxkLvhJkzKHhvLzRpzAUcM3Da65S/gpJ58CXxH6znLx88RM+e/YuQN5eQLtAbII/HlqR5oPTJggNPizEzg8XWpzVBsPc/z1tomUuQ+RmyxlysqJpQfZW2++VWhywsiYqzHhIg+esI+6epQdgU2l4WedJbDDcdsh2zh+hMtCE3F1ozDQwmno1aNIa4TFFXFHCyf5NJ+v+VxOJrdtcxqGl36yRMJPifr+e9g4Y5p4yybTvOy1l192qfZnlx6etjXn5lFk9LZCXCZHtT4KG35lUCZuU5SFf8vNt0j700k0SfA0myd7apYtR32hjQ7E6VXaJOWhFcmFVBgzd3LMzGyDRXJKxI3Hbzd/o9Esbyrr0xMAAEAASURBVBrIhgvqhvXPjUOWw5CTTopYFskJGMcxJ2uy+RNZ41LZV2wuuUjfdy6Q+ucJODcet/u+vnTpJyL/Th46NI6G03S3qRQSi9DQxnWswSkn0+vauI8eJ8+DuMlBPG6WLVuOfgmcRYvcGMJ+wfkHb+So4UkzF1zax9nHmH8nFxyDX5/+a6FJJWtXXXmVbOg2VbmNeQYNN2kYj+/paVzMIrlZdOihzQX29/Cn1nDSIa8rrxwpY0TTZn6M8LyEWMIkeJ3DcX5Q5lYY9+HFdX8Z/1j/eA5BgKByEzndFxycYxbh++P0bRT7Gm5YnHXWmQJrdXirhJ9DD37KX8ajDHVB0NaPhSQXXLhSjrnOBrw+KSXhIRIcUzh/RPvv2rVLADvZWFE23xwwkY34NJ+CpJ7IU2Uj65F+bqy4zDvUK/CVBeafm4aaf/bDI3GbLTFY1GMTh+XvNJ67XNSQDdN4LOJY/ivh4+pJx/JmAuM7fcZ89913xN+xY4as8eWf8FVXRoH6UnShmWGA5gAp0AXhNxfOfyF/vtEs7NBZbsaqMiA50ew3yA44Djc/evTGQrNbj6B19hicaKZKRwrKlRZ/nSsu+myIC41+JWKMF4XBGa/aHYcIV5zOz98oxLuzIWnqPlKxlfuv43/aaf7qLJUBRSYz/7jXLh3/iitG+Ay7PL452Z0+nI6rmTQOWmTxTks6VP16bvDkVSZ29jO9tlhBRP4HDRokdCe/+Wbgzgk2d63ycb2oevUaEu+DhQskfOXKVej0WLCeOUz85Mf/QceBDuBvTCYdTBp1oYmrGGo4UWHcO3mFTSJ6PAg0ntCp4QKXp07Exbd37JAhJ9nVa9wuJXHuxkSVQpAnIMqfcOEptBxPfD9UaPAaSpbx/LPgAOji4pSwWHNcpmCRR8HYEYsuLeleWGgy39yxpCEmf7mrTfjaNekdz0twZY405LQO5U88LrA2c5IO8z5PF5CHK6+8UvzuBwK9DxYcgPPUxTFRTlgYY4LCRRIHggMPPkjyzBMZjcsJFePee++9geYHCz6Q9FEroZqtUBfONPfr3y/0v13YBe6FDRDG5wnOkCFD/Y55wt+5lBvtbAgnQszToUgjr/CQD6+OqqEK+6pVqwk8vyBfFkoa5uhFNMWJibk/AXrRn8gSH2/sJP/JQrNI1OPr1Z+C/Hz74IMPeZLuFIR5G4uyGT9+Ak4677dj7xtr77nnHov3wJisuBPJSy71C3IyAX/6WY/UOhulzLsTyKv+kx1caKqZPJntCFfBMIGJzfff/yBwXpnV/t/bbzBs37EtQfX5J4DOhJv7RAjeLLtyRF4fevABogUjO8E8qZCISUxXP1fJbQq9mj4oakOM4AZ3H9dzJQVeb2IZcoIvZHftlE83MY9lsKAeOmRIOA1mQu66625J33PPZm4UfSRwTiiZ/2fQf1nGl8pEMUmrY+38/OUG1sBBA+WK6D5YSFNu4G0rWcHwyj42uJA+XSB5MIIimgK0kn9eWdPyJ5iLDcbn1UQxiIZ37pK2ubjOqFRYhiPRDw/FAkivBw/yCxXKIpYHnz4ojUz+2p4nvUSts0rV4lpsNYt35S4efxF0/GBeAc+z+EZi4I93nHZPnGgJgsceP+5+4fvUU08JhNcNGa8jNpAn4Er5uHHj5GkG2/9LL73sY7FoEv6OHpQBYVxgXHfdrQg3CdwCvkNH0HpggtAai2ceY++9B7R088ctoFQ+4bvKQgNvJslE+L2LTS/WmYxtPgXKH+9VJf23/fHWkDZmuF79uriKebDkXVMqV+5RT5u/xWLOmzZHtZaTGPXTHjduvNB86s9/DmBu1ObhBosuUnlaxDRdddUo4JCDclGn82sIy4YytwGeZtSovo/Q/+CDhYpsj2pzVDodiDgOsoZt4qmnXd0EWXPJJanyv4SbWsiXnEqCoktKmv/LXs5cnNFX9JNiIS6ib9iw0V45EuMFbj5IOwXtpK+TgcW4X12uSTqf5tLFvYpxD03aeLIpqqXk0qZxoePD9vIbZvieXjKGoP6lX4B/6BcuUir/H364SPLPzR0xIN+i5WEouzx7D9rtOLTj+9HOx46F3B57L+S2uwbMtsM6jGUv49fDdWHodEBi/z7+eCMp/O8F7fHj0c5xBXPsffdiPB0rY286t+SQDSGUhrJo4MBBtmEDzK1wDZz1/8FClVVYCGEeyLrm9fvEoK9NxCkv4B07drIPMA3j77f3IR3M/6TQ15Rzwv+ZvzwtPC69LGMORBTkfzLnj6A7LONaMjfVWHYsK0e1CHXeHFd/9/VMHA/WPfOgspHQy9AGCZsnV739Bgp4xJvfLKIpfu7aIVr0VcMc4Igjj0jVP0+BmcYft/3oigRxa9TEhilu0JEf/2l4o4F4lD98LsNbS/ehzijbKJtp3KYWbirgGj/zX5xR+ePCYy6ASDQXNyPEp8WFJXFzcJGIMV4a57+BPw8oCzHOiNZZnmjiALO3fN7kONt/4GB+3uRY2xWfN+mInXVqDTq6HSbWmSWaLpecvlSUlCcbPSuYgLjashCyaWRCUlFSnkzMHNn7F/GXhSY65RwIGGGpScvg/+47bqeLu8axmTFjhnTqcKIZBZbFTji/x0mzcsUqwRvmF4iKxrdAFAp8C0iWp516qsWjanvrLbdi8bRNToYo0LkwIYIuWM/QBasn1Fro5OEtizvRhPIYoXueLiARl1dnKQjiCZ8uSIknWdaEwfPMX/8iiyfyb1TQCKd2WGTByNU70HkeC83YfEiegJ9//gUChvIKScNZ2LEX4ikGccx0MAdilsnJpwwVJImGH77jIZxXTdT08QtNee+jQNjdcBuAuNwIEEMi+L/+9+7qkr6zmzLFLTo6de6Ma9M3W56mtcPGDq/tuVS539693II2vmZDutxJ55sEKPbBLvGHIoxZXoMwmHmWcv2FsHvviRaaGNyYPl1oEpenOBxc+vXr71kT6py89sQr3YzDq6i6sBaEYn6Uv6SxZm3LU9FFmDRwZ5L1lCyGHY9169fZc/D2pEKFisKHgymNpEKJRbzu8AtNvfrLoLnz5iJunr38sstD/glfv+4Le/bws235iuU97XEE28aNG4sfSnAcH4HixzN1C4Q8OamJEajNkbusUA6kMbJsknhZr87e+kdP01rps8g/NxnUaPbKo89C8UPgzxNz5oe70DF/jZfLXo8T03POPkeue7G+uJiQuGBS3Q/QcTzWT020Id4ggIIYudbHeAMHDRA0po3xa2DTKb4erzQ4wWe74alRbHh1thk2FqTNFDRG/3WbMdp/eSVODXkskpML338BeHESFzbYHDtreEi/4qvt5FVle9utt8gmDN8ps7wWYpJPmvx3J3H4rNIdd2q0LFtxuRGSPZkaJOnYstnv2iM2N69Y/24yZS0UkqAfoo1j0sR+yJNNpl0n4S++MMnlZThkUQ5D/rePGSPlOIkn9AS4H7meJqcWAnORXZknG1SEHoVTT76TUkP0+1H3TMdTf35ayD2Mt570d8aV/dgQNyKf4i9w/Lww0clTld+PPvKoowXZlcsw3gwvnzoUdrS8lcLJIvlzY0CNnuLwhCMYz5QaeFmft92KjRqBOQxuxhyCN3+xOR4n65Qr2g6J3hqLb75Xlbg+PvsD8XTxTRqTvRyGciqcNN5qmx4COdy+bdg8iePHPOmm5vg9K++BMfM2kYuXQfaIbMBmhyb5qNaoG1yJjY2kg3WDTQDiPY1FAfvRWdrefeyLL7lUymz+vAVx9JTbLSggp6L2RZoXQ06xvCUuADNmsZ3W8u3Uy2KEs51qWklY+noLd2IkcPxA4ZaLy7EGclzbeCzH40QxXqAJB8eQZlisMD2NcMWf39GFshvxn4kxOuCSiHgcZJGfS5x/3vmBfOMmjaWMefupOBNkLzf5SMozqFevnqXOAZq/h3+jxk0kjbyp8X8xEUvhzTeKe+yJdnIr51bb/dzKbYoprusLeXYEDxR8ghnGN+zSb4vpa7nSxXhhDnSml6EZiDp/5DVe4gcDT7nyZeWttMDxw/Gf739jw7pnur7b4jfhEHgpbh+w/esmHBd57MO8bRIbKDqTuJxPkQf/966GheYRR/qsC2fb91g8UwGPH7cmm63c9IyvdpNuY9YT+vVbePpEozRjDxRCCS2eCMcmhcsAYe34B6fzxtF26yZ6iJLyZEfLCpaILnZwOm925GIgRA9RUp7sCFnBEtHFDk7nzY5cDIRXZ9vp1dluveTqbE+9OssTTX7vhEedHbv6N5rRhChVfZ5xJn/nLyZQE4VgXt1MjLrTUBeuYfTR7f1py6GG0GICFQvBaU4ePwPq0DWMPrq9P2051BBaTKBiIZj8eWrGTqRXKTNT5dCL8E5xjuBRWUfMH5opbYVKlWxFvCGgm4ac12HBR7pDcQJFowvEYfp5EyB9u+VbC81jsqvJWNPwfoEDHTQfShz+cELFzqtXBMPVWS40fRa/hZBJ6DjwQr+Q+c05vwm0ZDcdtPjugHGZ/0W4hsl0/ubcczxekT0b107n4mSKhu9bevTsLjizZs0EhFdn/yT+Pz/pdqR9MuRKJ2md8xvydKe6FcpXEOUTWjakySt2fK9QXP3zOgnpnHzKKUSHcRwefvghgY/D7qmCefLKdwV6dVWxr732GsG95uprHK7/PcNfd/kEV1zJn28pqRjgpZcnYXfyHrti+TLPLY5WJCe8TBPfGGl6iAhNuDYPu8Rf+jds0HAofPvjVFIMcPQ05Z677w5EP5i/QOo1vgb8/Q/fS/33wVUVNbwCrO/OpC6gFIbpmMX3w77gvaVRPDgJZBr5KJ+KQWg0jTw5peE1x1NO1UGoyL79tts8cVdtiBFzoNv5eQWTaXn8ySeJJEZ2aAE755yzxf/pJ6Ad6hHvb/3GTHcooWH58w0jaVw16kpPId0q2O7Z/vXdo+NdhCvoZ0g8TnTi1JGI87vfSS+6BQaVJahhW6yIxTQXvUm7KbJcaLP/DRnq+izxXftivesgS7qeY9py5Yi8OnCRW9CCHt/bqKmOAZqnGETSnEr9lM4TpUCEcsOBZdI/nDg7irx2S6VamfwHHnecpFvfaLr++76w3LkD/de/RZM2A6h7o2nsk39O6o00F+I6HfPv+q+130PJDd9b1q1XJ5X/XTgxZVvidWKm87fRtXuRV4Cp8hPmU7+jyXftwUT5dzCXx2ZND8Fuec2ARseAgf2Fj75BYlqpzIe89V1rp6iNk9JWvF+SMuSmDQxvmDAvdXDDROrS8+dpj+sXRfgO5B8l/5wcxqZqtSoWmr89iNT9TRTwZ5m7lFtRIMS3Vs7vfu8be5+k40nfR2b7cWQPvG3d/F28MaBUtFXEKXBhWo5jxtwugXPw9pZ5rFS5cmqiGfPnyWmq7+MbslouyknGNvSxy6+4XPKmKSETnoyy/wXlXZK7InkXSuU6NIovt3OQnk3yRtNBj8SklWUSGyqCYRqeePKJAL4Oik/4XdKXcZp8N24zLF++PIQlHAgiXc8RFt+XUf6fF42Zl+jCkJtQHpUbutSjEAzgY+8fK/Xt6qZITizZ/pvipDE2vD3E9PIZQyZ/4pEFN7yIQznlWLrfM4Ylcoq4HTr5+vDj34/a13W8QGzG5DX5g3Bi7IyjxeuGfFNHhUI00EQqPPsFORFjuzgk5sYQP56j76o8mInx/AffL6SPy3Vex1/GaP98aOEitykKTcdgQLrJeEhlTZ6TY+4xiCNtB2WStB2HwjfFbDvk9Pfw79nLvaUlL+UvlDzj4vjHONJOkJbfnefnVoiUfCIL7cTn4h3oo2A9Zp5o6vwPGrChz8H327+DP7StOxmK5znJWANuuOK9EfVIGJXHVcBY5J5OuPKH9ltp10NlLHKMmkI28o2/ppVJ5s03tv8tmxNZctFFiWwkjlto8oq1jvGOxEOYT7G9y0aozz++lACllgdI0elP+8J2UiZOnwHTwidfaJ/Qj0HjUufHStC7MtRTFCiY1qr8u0I2ojVmTMXl36N7KxPP+9NWiOLAxQQqFoLTnDx+BtShaxh9dHt/2nKoIbSYQMVC8M/NX5QBFfLzJu47mnySGT5v4k40+8hCswMQ2gOxLVammcZnIxP8d/tT8enJAnhQCp6QLwacIPwNVyo+PVmAn58/J+58V8POdseYeLfdJUZ+fbo4GHFXiA+7aeLkUgBSOOnbJobTzcUnd41oVqxYITjcseXkhvEZj5OAmZjYE0AlQ6QD9fCywPsAi8CC/AJJH5UVrcG7OaEDwcITONKhUTrcHVOj12T7+4kW4XfgcT7p806+pj/BG6BR5V0od4kFBz/U9MZ3Z3xTQKMP5vmu7tln/2qpHIjGnVxggtzfTe4I07eNJ+HdCx+7L1++XK5sxopohJEmCHG+8O/yWuKdESfKNBS8PGni+wEqmSA6FXBAlb3kCZ+pEDz94cK+YYMGoumOioFo8JkR0dT261/9yuUNME5AekIb6aZNX8mEkzg/YMFHo/knH/f+JM8u9nw0uXynxLLhu0medso7UkzMePK0fBkWrUVF9uabb5Y0JtdJrVy3YV1IeyIx/OsO4+GHt5TFOMHcheSpkRqpC7QZfD5BtORRix7bxu4MJz9xGkf4t65MI9+kfrr0E2xUlBPFPKSzePHHkt6zhg/3hZBNnWn7YMEC0DVQsHCsKCLgdbdDoaSKE1NOJu7FhJGLWGoRpqIAGtrsb0Ibfp6Y0F+mdFlcqX0QCgy2yvshvpPktViWy+GY5LOsuBO9A7vwj0CrJ5WTMB7fsMTtXphEP9rm4zfIDOZgSJrSZ5kZ/NPNxciSJS6tbGc8WSGfzPbFKJkm5NXHp8IM8hjOcvSG2jz3xMKAilCo3INts3lT1I8p5doQ3gRegQk/40GFP94PLUPaHDe2f8bl6e9oxP0UcfnWiBqiia+ne3x7y/6rhloh4/77+GOPCT6VdvFa913+Kn3Sf90GBLmy/zL/2n9XLF8upy/sv888g6vxqGuGUZayDxQU5Ev9s02uhbyi0TpINlUymhUZ4Z8bINTwS828yTXgIryPPErS+/HHrl5I80TwZLqo5ZBG2zg3zvj2kv2Q4XwPyzbOfkhlJSwnvsHb4GURJ2qjr71O+P8OixWGj8V1Lxomi0p2uIlH5XB850hDJS+tUOakrwtqng7xpIbyXBf8xOUVSdLkuzw1R7dpI7DCwkLZgPz262/s3XfdY3/5y196FHL2ZeSc4r8DJ8LkeQGu2yv46KMzaEFJyN333B1o4bMDqb6v5SJty5fLn59Ij22es/C4G9esyTPuP99xcYLJMT6fgNP3rZI2Lkwy2yH7ar26vkxk8SmoeNPnywTvxsUgM0ce0VoWQCw7TsAph7nRETLqMMOv5v+v/v27tkHWPz7jI+X7JMdMvK3LVTeMz6cErJubWDeeIDcUCKOsoQIWnmThM0wCo8IilTXKPyQIjjgueVKrOzcUSK9LZxeX7ZTaPjm263jh2mkL104lIUVykrUH+zoU2KmcoLI2xl2IWw/bMS5SjrP/qRxPX/dLUsYrk7E84BjCxYmO533Rxzm30T6+HJut7BcyRiOjcvUdeYjH9Zf9tdiyeH8rcht9F5/9EHms14S5scq8p9oOroRWQtupipMz9neav8VfFbqVKaNjxI8ogw9xa6mLXQAlS9y44Cnx7sZBnuYyLcwjx3OZWxX4doJ32qtXr5W0uHmeG5eljqOKbtPmaOkLhThRXoH5BRXy3BP1NSGQ40fljpYvZSg3EfWrBKPwxpXln8wfi8RNBUhLFrv5o5ON1S1v3OAzL665Qg61wZVw5isen07CUyfCeLBAowtNamCnnKb5XOZT+0mf3bl9R2j/rHfqL+CGMfv56OtGS5sjPT7bEU25iM+berxFwM0XbZ/u9gPGct8muIni2kTXcFDC8mV7H+zn0ZIYlnFUzurJLH/B9T8p9Djg73Sn4tOTBfCgFDwhXgw4QfgbrlR8erIA/zz/tlg3cv0oC03ckJXvaOLq7LH9B9l+g3CiSUA3nmh2pjKgTpaPOrOMn3wwgak0ZiFmAxL8ot3HTRBzEPGBsHaHlh0xxv//x5/vMfbASSQnxexE/Ockhx0jGJ8xqrJWHNoF+flBI6aWP5V57L33PjLZkLd60FY5efKUQIqKNrizy0HhwIMOxKPyA7AjdKCdJrukDo079nznQx78YDMnCbxayWsQhNHNq67cmcX3vORkZH9MPg/ECUmsOQ/fHpPJBYUX4/FTFpx80q3/7dq1h3bTERYf1gkw4tFwB5QP1I9odYR8HoLXZt2ul0snP4vB9JFW40aN5ZTK8SyVRYunBRS0eRBexKeij+Eoz507uUjOXf8UjBRG1DpbgMGgsH2haAjlJwF4xZiGk2xeydL8ULPd5bz3Hxm+Z+VCkp9/ORJvhagVknnbgsHOmSI7+gZ3lVbpqM1PD7z26mv202WfypUrhZOPaLL1/Y+KKDjp4gST72k5meZOH/Gp6GnI0CEujb6d8aE8d/L59lVoAo5vNMqJOdOpfLhIZts65zfnSDlwYsuBgtdmx8tVzCJ5E1MGdHjtZneG2iIrVNI0Vhe1/fpOkyds3K2l5l1+oqFrl66ySOSVZGrvLdb4/B/b91hJMxcypMnNErq5gcM3X1TsRNrV9gFtLB65AOW7Wl6P1vqnAiy+SdK8U7swNf6pYOECTq+AUpse0zYKC0UqaeEVZWqvy2WGD4/6LcqZn2BQzX7E//0NN0i6uEBI+uxkIUUFEbxqp2niwja1y51D/vIkPpSj5LUu3vYyr0k5ykYE2kbZsuVwlXi43brtR9HmyV1t14aqSxtyb+nYhmrIBJSJ0rj8zAnjUjkI39RoGtmm7sbkjm2ctHgFStvMuPHjJF/8oXIIKsFivEa4AsfJcyIznIxwCrKg7Vn7L+gRn/2X16t5VV3kFZS9EE4lEpwIi7xC/RN24YUXJXLHt/9EKQZTkvR/1nFlTKwZj/+c3FN7pSoYIYybAHz7OQAbWYpHGcHrqWzjFStWSpWhtnEpQ0ye03nJkwnvcJy8c/LFDUClyfZ7FzbPVixfIZ+5UjjlN+Uvr5cpjIrgqOSLYSpvWUbLly8XRV+Kx3GG9ULDk/NevXqLjCWcMoW3KtyJraC4H/R/NarghvQoG6l1lwbfXoUSu16QJ6WFv9DCFVal5cqloshf9jHKJ44/TGsN+Id4ZXOazvx8jG2rVwvt4bhCqnDa3DDhBJWbHQrnJ6P4LrualImrd6bFlUnSfyriJMiVyUU+rsM9G/KNRjSqgofSZR7p5saMfu5JEPXH97/NuC7O67nE5RtzLuQuvABjprTBPCgo+bWrG9/+WDdUNKSnPjr+a92wHVIWkD/rlv131KhRls9geGIbZE2O/v8pNoUYl2lhGfTGAo4KnyinBh43SDZ1RBZLXy8tbwTPvxDjBcZvxon7um4GcpOO8w8+d9C65NjM94XpsYZyYrmWTspm3jj+ciOA8oAL8XHjxgPH9T/tF5QZTEfSx3fakVdiLuHnEQzTOQI3v0Ru7xPL7f2CllS2Fe0PjMdP73CzOOnjedLHl69cEfplLv6aESry0TGCddMETy5EmRT6yL14G0q52x7zhOIMtVXr3KqKyir0BZ3/UG7F8zzyyMen57QvkC4X5r3Q1/jOlXnSvsaF3+6MlC8+lab545cFzj77HMidHagBZ9z8EYoJ/VjEueHkNydLINskNx3Ik/9ONq7KIRsXymaA4pVC+6Xcl4Um2j/5cz7VHhtce2JsOw7teS1u3sVmypQpMq9i/suXK2/P/e250GVwOp4EVJGbSW+97a7Fcg5EPmXLlJX5nFMU5JRZaj2x/jmWSz2BSVy+DKMOks/WOFkTpyG4tXACIHLk6H9R6G6dCdlk/MkZIUHMDv4P4H8Mnlxy/ciFZpceyUKzT/+Btv+gE2wer87itMrs3LUTH0rFPz4y+/b0qahW1C1agP+hI2VY8xKcgnoPA9XkRPKxYVHK5kZBoATkDJVekDsEjP/N+KOd4IOy2+VjphDcZpdFee/YhQ/SljMQPqn8Y1IlJYfBw6BpGiySDBYFWprBRrs0K5Yvlw+gY9Ea4HQU7SrCB3U/NxAkZgM+JE/+uG8f4bjyh+QxKz9bZWjzo9UQDvIRYQw48rF28v8cH70lHShLMdhdD3QcBYN87JDihvBF+9kl/8wRBl98JLgs4qBNgT6yKXj8cPBOwnYW4SPT5aX+2eagIQ8fdi1l6tdzH2GO2x8ECz7+/oVp0LCh5IE8i+AiLdd202WEq7IGk3yDhTE+HFs6yrc6fephbdi00eC7igYad80tt95ivsKH5DEBMpiMh/aHnm+wYy71ByUS4LlT+PODwpkGny6RD5ZjkeY+NO8bKQZLc/qwYQaTJNO9RzfkvQLKbqeZt2C+gYpug2uyqKsNqDzr4oEwFCXhF+UY8dm8eQs+Tr3a1EGdVNlrL8k/JjOmoKAARcZ8GYNJS6iHUqXz0LeLUFaAIQ0s11L4iO6O7TulfvhhbJY/PsUgcbEDa9asXYv6ysPHtlkXSS97+umn5YPg+MSN1GUSIlHDDyZk+BD6GqnLPavsibQUoa0uM/lII9sJWwLUm0s5FTRuhI/HZ7fvuP4DYTiwmER6d5p969aVlOEkz+BzMDGK+ebrb6QdY2PClKvg8pVCAP81+FA7BnFTCx9yzpWPz1atMlCpb2qibWAibaBpz+xbp04g41tQ8OPEQNzSD1CeWFAYLFbi4pP6YZ+tUrUKPpBeXToE5R8LE5ohDXZn8Yn7PKk71mXZcmxfuVInUSQE362TvLK9BTnhmoGkZ9VnK5GH2mjPSIs3m7d8a9asXmtwAmSgUEbkBU4WDCaFKBP/YW/wXwXZwPxLX0Bc9kMsWqUvb0f+WH6UU8wrFqKAo/+yzUT8mUh83gH9d33ov9AGDJw84bUTbZzyStsfk4jJksgbfPMM7SXpYywTnD5BXhWZBvn5aOeRvKpeHWW4XeQO80BZRLlWtnwS32cfySsyeAMu/Fn+2v5xnUw+Nk05SFrl0Cd2oI/ST144dUZ+8VFqyCl+0B2nqGjjKEP0Q/LD4kb6YShD5uXLjZBFX0IWNRH5wTTgPTzKCmWHfroDsoTlRpp4y2XKIb8ib9CeylcoL2XH/s/+SP6Y0In8KYV+RBhlIRYmUgekzfZHuUIjcsM3n22ou5Uou8aUS2hn0q5QT8y/R5E4/KGsoyEe+y5Or+TD6gLED2mt8LRi2cRw9hWc7MmYgc05xN0lH6xvVJAP0ca9VsgnyGQcjks6yyGPhEn/gaMsypftSds/TnYlT4IDeDmMGdshK90HwdFXAMtD3bD8mXeOO3jjLOllvXLdUprj0E4/TqG9Qpke5PDeBlfqIR/KS/3jtNjc9IebkLdtBt/vE1quYMg5MciC+WzVSoxhRaYgPz81ZnIcZrth/TMdrAe8fUO97QIppgPlybwhTbjVIf2E5Y9PK4mswOakwbVEg81J+cB8Lv6aEnYxpuyzKC7L/rstiBvJKVy9NKsh66AoUNopx8tlK9DX89EOkE6tf/YrfJbF4Jq/Y4GMYsEkcpLjP+vStfEVhnXJ9kf+uQzzLfIAbbV+g3o5UCz6+Jfo4xtNE/RxjuM0uB3A6nJtGOXE8a98+URuEYfjCvFrYj6j/GPZy7ZD+cN2iXfiaMOl4WU7cf2E9UKEXPxJPxjkHxrUkZayYc6jYX/BOPjQI48YfGtWQWkb/J2s+gz2LtMwvwDtJC+ZW1XfR+QK01kafYxyCgvBRH6TGhsakkrZybpx/TaRZQgN+U8zZ1wnQzkP2m//RO4keFbIQ0utqVKtqsz1Qhj4sg1TrpOBzj9x7Rbzs9IifziXLUOZA9lDucj+x3JnnK++/EraEW5HGbx/Nl99tUnyX6mSb1fCyKce1nbkG5t8pm7dOjLOcHzHZonB4YLPoKtljsd45hDGojj/bBPs+2GOi0C2CcxCpf45/2T9lwvzjIS/tv+Qf3X48i+ulGP+GiXYDFTjkq8+b//38W/bvoOMZ2zPZdDv3TiJMQpzTbaLvB7YCaNA3gkBtAsCggP/jOlTQ8GkCzQpIGnl6cAQR1o6EDRY7YCQAkSeyKm4aZD3KVBtRQ62C9BgtTOCvTcKjZyKmwZ5nwLVVuRguwANVjsj2Huj0MipuGmQ9ylQbUUOtgvQYLUzgr03Co2cipsGeZ8C1VbkYLsADVY7I9h7o9DIqbhpkPcpUG1FDrYL0GC1M4LFy4V4LUzEsYtvcHUpS66k43qfAtUOhNXhAjSYNgenwYNPMDhhMLUxeZf+I+jWTJz4gsFJowy8FVMCWXtSmm7xHSuNF/NPyTsN8PxDYlJwR0tBUPZirhw5wtx7z1iDa3guigYq22C7AA1WOyPYe6PQyKm4aZD3KVBtRQ62C9BgtTOCvTcKjZyKmwZ5nwLVVuRguwANVjsj2Huj0MipuGmQ9ylQbUUOtgvQYLUzgr03Co2cipsGeZ8C1VbkYLsADVY7I9h7o9DIqbhpkPcpUG1FDrYL0GC1M4K9NwqNnIqbBnmfAtVW5GC7AA1WOyPYe6PQyKm4aZD3KVBtRQ62C9BgtTOCvTcKjZyKmwZ5nwLVVuRguwANVjsj2Huj0MipuGmQ9ylQbUUOtgvQYLUZ/BTkML4DaHDSDrlfE5AkdOLzE81JQ4fIQlM3V5JQxvY+BarNoJRxARqsdkBJASJP5FTcNMj7FKi2IgfbBWiw2hnB3huFRk7FTYO8T4FqK3KwXYAGq50R7L1RaORU3DTI+xSotiIH2wVosNoZwd4bhUZOxU2DrPnrM88aKGk00LFgoPAuDJ2K72wXS+OqHXBSgMgTORU3DfI+BaqtyMF2ARqsdkaw90ahkVNx0yDvU6DaigwbJ5pY8NUyQ7HQfBiLcc47stBSgMgTOZVkGuR9ClRbkYPtAjRY7Yxg741CI6fipkHep0C1FTnYLkCD1c4I9t4oNHIqbhrkfQpUW5GD7QI0WO2MYO+NQiOn4qZB3qdAtYEsC00sKLmZVhaLy1KlyhroE8HGIRaZ/O/e81hsEO+QnQs5fcJJ29tvTVU+OW1HP+KSgZUdkglJ/MGlDrUzaMZeh1I8YnZIJiTxB5c61I4ZZrgdSvGI2SGZkMQfXOpQO4Nn7HUoxSNmh2RCEn9wqUPtmGGG26EUj5gdkglJ/MGlDrUzeMZeh1I8YnZIJiTxL1u+wjRp3Mj0O7afwbf+ckjFmLNzu9gJjUyM7BBrxoy5w+D9iMH1VwNlOIjiln6bsQM95KQTsWPZ2ODbej8bf+UX54DukFZ1qO0Qw++zzz5r8CbS8OTMoRSDGNMMsTNxE39wqUPtEDfb4VCKR8wOyYQk/uBSh9rZbAPEoRSPmB2SCUn8waUOtQO3bIdDKR4xOyQTkviDSx1qZ7MNEIdSPGJ2SCYk8QeXOtQO3LIdDqV4xOyQTEjiDy51qJ3NNkAcSvGI2SGZkMQfXOpQO3DLdjiU4hGzQzIhiT+41KF2NtsAcSjFI2aHZEISf3CpQ+3ALdvhUIpHzA5JIFBO5+Tww5DDp5wS5N8W3BQ5aehJpnGBl8PZbAPkn+HviCTpCS51qB24ZTscSvGI2SGZkMQfXOpQO5ttgDiU4hGzQzIhiT+41KF24JbtcCjFI2aHZEISf3CpQ+1stgL5qx8HG+P2R3pMTSJkk8iEJP7gUofaCbksl0MpHjE7JBOS+INLHWpncU0ADiU3Im91QLu7gfI/89yzmE+JycRN/MGlDrUTdlkuh1I8YnZIJiTxB5c61M7imgAcSvGI2SGZkMQfXOpQO2GX5XIoxSNmh2RCEn9wqUPtLK4JwKGkEeOFJk8wecLME3De2uFtnTy+0eQCk0fkvNbBa4FvTZ8GqiRE4/ck9Iw5oh85gac+tSVy1k8IFUfwRXgKo01Twl/KtqT8Q1Pwa7TQ4lw7idsN20xuo1iM/Mabr5urr77GzJg5A9c3Kxh8GgWTkN+Zhg3zEfmnbX94f2GOPvpog3dHuLLV1ezXZH8zb/5cXKdZb8448wxz0YUXyXWrdD9iHkraf0n7R1ss6f+hK/xU/V/u6SkxdjUxKiF+2v6fSd0JL+WlobQVVsLflcpPK/8+W/2ZaXvMMebztetM125dzP77HwA5PE+u8UNrq7n44gvRzkr5emAKflr+Wrsl9c+iDaXBgvZGYSXt3xXIf077e+ONNzGfGmVmzJgpV8HdfOo8zKcaauUG6VbS/lEk/0Xtv237QnddFk+0eCWfV2dlocnFJv7zevTEG027A/fj3T1m3ot/e9rU0DDUod1f/c5WqNoZobjnrHfieU+eXUYM0HXeVHyDU+QQJYkfgpSv2iFAHLwnX8LfCaqS8s9uf1D2YT5cuAhvnPCOw+INFt4edOnaRd5spltSMv1Lw7XdqZ0RmtH+oBnNzJs330CDqqmMNy+NGuWb1ke0xnUDTmxC70gT8b5iOPh4xYRm8A8cgF7S/3yJS9HlLr+4InJjKFTtOAbKuKT8S+SvfxNWIn+z5a/II+k6uftP3JtyYyhU7ThG8f0Pn+owc+fPNwsXfmD23KOyadQ43xx5ZBvZeU9TSHzFcACCG19zye+S/l8y//pfmn8uwHzqo0WL5DSL8wu+kYVSPlMLb39L5N+/j/zjmuunnv+1bd9RFpdlZKGJt7w40aQ+E55sltETTacIyJ1o8r2muzqbW7QmojdxKSbmVSBOAe/sgKEIAZB2pIKDJzjSyDl8iql81Q6oihAAaUcqOHiCI42cw6eYylftgKoIAZB2pIKDJzjSyDl8iql81Q6oihAAaUcqOHiCI42cw6eYylftgKoIAZB2pIKDJzjSyDl8iql81Q6oihAAaUcqOHiCI42cw6eYylftgKoIAZB2pIKDJzjSyDl8iql81Q6oihAAaUcqOHiCI42cw6eYylftgKoIAZB2pIKDJzjSyDl8iql81Q6oihAAaUcqOHiCI42cw6eYylftgKoIAZB2pIKDJzjSyDl8iql81Q6oihAAaUcqOHiCI42cw6eYylftgKoIAZB2pIKDJzjSyDl8iql81Q6oihAAaUcqOHiCI42cw6eYylftgKoIAZB2pIKDJzjSyDl8iql81Q6oihAAaUcqOHiCI42cw6eYylftgKoIAZB2pIKDJzjSyDl8iql81Q6oihAAaUcqOHiCI42cw6eYylftgKoIAZB2pIKDJzjSyDl8iql81Q6oihAAaUcqOHiCI42cw6eYylftgKoIAZB2pIKDJzjSyDl8iql81Q6oihAAaUcqOHiCI42cw6eYylftgKoIAZB2pIKDJzjSyDl8iql81Q6oihAAaUcqOHiCI42cw6eYylftgKoIAZB2pIKDJzjSyDl8iql81Q6oihAAaUcqOHiCI42cw6eYylftgKoIAZB2pIKDJzjSyDl8iql81Q6oihAAaUcqOHiCI42cw0fMdlAGVKoUTjLLYnEJO1ydleuzWHTK1VlclxVlQFAIRO1RM6ZPQVTZbxSyjqVnnJWLHJxTIB8PMHHhJ6ymU3jO47CTOISmYCX8M1bxOQoxBUrKUlz4KSn/uHWnCivd1nxQSftjefl2VNL/SvqfnNKl+03xPt9ugCAu/JTInxL5k8wu0i3HtZakzTA0BSuRPyXyp0T+pDvNbn1JXxIXfkrkb4n8/anlb1soxioD7cOloKWZCoBK8eosTjeplZjXaFMLzSKoAOanEN6m1tnQPoNDmnPsU5kvsDggq+HvNjDCjvCCMzhK+KME4tIoKX835kqZxAUTtSjn3G1ghB3hBWdwCF7sKyn/kvKXGxxoGTmfW4SWFbeaAMzhiPCCMzgEP/aVtL+S9lfS/vyYGHeMrJ6128AIO8ILzuAo6X8ogbg0SuRPifwpkT8l8ocyoV07fN4EnxLiotJ99kzfaPK9Jq4Np040Mz5vEguVSBp7pwvdPU4SKxNb/Dkix6DYnVBSlwvdPY7iqoBMsMWVeANiDIrdASE4XOjucQJyelcWYImXI3IMit0JJXW50N3jKG5J/jNLi/7v8L3HdVBzv//++4eCisszdgeE4MikGAJyOjKxxZ+DQQyK3dlEXejucZJYmdjizxE5BsXuhJK6XGhxONvw3S18cN5UqVIF311r5L8Xm2CLK/Eq0fREBtDidt6yW3QgkdPhWCUMS/jnXhwnJaQlnLM4AUyX6NYftxp+l+2QQw7JGSGN7WPHzHysGBS7+W3Nz9d9bpo3beZmdxn8czKNgP8s/4hUKqVxGrNxEsi/kj/fBi5dutR8++23plmzZvLtuZ+bP79BumTxEtO8efMk05Hr5+Yfscrp/G/jz2/cUoFdzVq1diMjk6L4b8t/pvzRnH6x/gv5Hm39+vieb2Ti/G+FrgR+e7rpwZBVGQOMw3MRY3dEyjtjitmhhGg/3Ix+eAj6YSX5lrFjKLFzMIhBsTubgwvdPU4SKxNb/Dkix6DYnVBSlwvdHQ6/icnvQ9ev3yBLWku8HJFjEN1UULpo0Yei8T59kO0wY3xNmdrLli3D93Krmr333ucf5p/RPJQ07L/NP0LOwpbYORIfg2J3TMu5XejucZJYmdjizxE5BsXuhJK6XKji8EST33imIiC+00yUAeEqLWCGC82u3XvZDl262fYdOttj2hWif8SmCMqCaNxv2hnBJEB/ioMzXMPUdnHSPqXj8F1YhBGcwRFHgLs4uKPnkNM4aV9MriT/rmyiEgrO4IgLDO7i4ETTMLVd1LTPwTTEhUUYwRkcIUIRQLNmzbQ/bvsxwNKOIrtgwXy7335NLDqD7dGjhwRnU9JYJfXvyiYqIe/Ex9jt7NmzLD4qrYUl9mOPPWpr1Kxhe+MbvQ0aNLD16tezL7zwosdROmo7cNoXkyspf1c2UQkFpw+BNWsm60HbfECIC/JnKf+NGzfYgw8+xOIj2/bAAw/M4JGD/d/o/9OmTbPdunZF/9zPnnjiiXbSpBftlVeNso0bN7J77bmXtKv333v/b/D51+U/Vw4TGZcrVNOmtsNJ++J4/7f2v2bNWtu69ZEWSs1slSpVba1atSy+bRcRVE5q/3P8t0HONmvW3JYvX95Wr17d80nTjpjDqWFq/3P8Y9pFEP6zZs1GP9gagzPcylftn45/wihNO4HTpWFqu9C0L46Rrv87/3Sn3bd2Hdx+zLN/gju3KZ7aP8tf+AXywZGRjOLgRNMwtV3UtA9YUpeUaVt9jAgjOIPDPv3U0zLWcPvs0ksvyUiP87IfHHzwQWirlFUHpHASSikwPOnyl9CAHBwZkYrsmrVr0A+Psl26dLZVqlZBP6zt+6HGUdtFTfticv8Y/5hC2q2c1P7p+T/99FO2QcMGWIPkqgvlq3bx/PG9brvHHpWEztatPyTZCFGdQ+Z80fh33XXX2pq1akq8J598IoknLo2sdvH8NcRzSeiEqMGRhImrODgDNUxtFzXtczANcWERRnAGRxwB7uLgRNMwtV3UtM/BNMSFRRjBGRyybmzfoZPt2KU71pM9bI/efW2vvgNs3/4Dbf9Bgy0Wmn0Q0BMIXbHQ7GiPaVvouSREYraxO42hHSJXdGB6ZDaKtMkABG9wpNEjXxqjhH+qPDI93v/fXv6PP/4EN1ns9aOvT7WUHdt34DM+aCMoh127iuy0aVOpCM0OHDggwoMzlFtwpMO9b8eOHRbvmqOw/73299jjj7uyvp5l7fL/7rvvCeyhBx+SslmxYoWtWKG8rVG9hv1hKyYNWcWaAQje4IjKOO1MY/xnlT/bDzR8S7mlchUyFRypYInn251iPO7rYfT1oxNcDRQIPN7/c5T//PnzbaVKFe1hLVr8U/yhBdqWK1vOXo/29OO2rRafA5K2xP68cuVK+a9Tty4m2H/SXCX8fPsLgL8j/ziFA3oKMfJmwAPhxJHG+Pdof336YIDv1UvyMXHiREzU9rDvzJkd8vVz1D9ODmyNGtWxoVS/mMJBSfnC+jn4O6ZF9rHHH0N7yZP2o/w0TP0/J/9Ue8j0/ET5//777+2VV14p/WLc+PFJeSODmSyTQIT8RPwTmoGkB/20/B9/gnWJcVzGlphr4o7zyw2Pu++9R+r/6quvzkhckv958xZAVu1hW7Q4LKQ7oQhXIBocqeDYk8ZI578PNlmlHyLCCxOft3uA55x33vmfGP9wm8neczfrwlipCxaqL6z/S/9bs2aNbdq0qYXm3rjYg1vLP3P8++abb+zws4YL/+effx74/xj/wKgYh/J3wen61/xqmPr/L/kvhm0A/zvxP6Zde9suLDR7Wn7NpFff/lhoDrIDBh3PhSZPNHWh2SmcaCbFlrhCDtWRzqlCtUyz/A49/g0ocKSJJVwTV4wt7nSUEJwJVr+z498QBQ7FcrCEa+KKscWdjhKCM8Hqd3b8G6LAoVgOlnBNXDG2uNNRQnAmWP3Ojn9DFDgUy8ESrokrxhZ3OkoIzgSr39nxb4gCh2I5WMI1ccXY4k5HEdAnn3xiu3XvZmfOnBnQn33uOVu3Th07/a23AHORsNYUQTR48GCPlyaWcE1cSvA50KsDem9PJ71sk6akHNV2oZk4GqrUEq6JS8OCnU1EgjLB6nd2/BsowaFYDpZwTVwxNt2fLv3Edu/eHWU9KwQNGTJEyvXrr78OsFtvu80OwoJ+OxZXyifNjahpSMI1cQWC6khHUWgGpYSyQ49/QxQ40sQSrokrxhZ3OkoIzgSr39lF9rnnn7P71qlr35L2qNEUy/kTrolL2l3dOkk8H+WTTz6Vepjl23yaUpIz5U8OmTiZkIRr4tKUBjsigm+l2SOPOEKCInDK/7f4n3baabIw+uEHnmIU2eXLV+AkoKat1yBawAhF/5PJqBiwoil/aFm3vbEgg+r9iJpiOVCS68QVIStSFoiANKXEr/xz4SRYjmTCNXG5kOg3g9Ga1aul790+ZkxA2obbBor2c/Jv2bKlbVRQIHyVnyZC/T8nf/L6FLKf8gjfRVbWYv+r+CtT5Zfp/6nyzw0ETuIf9pt5ykftn5u/8gkNKwCc46fgv/STpajLHhhbZhTHJrPL2Pnz5km5XDf6ulSKND1a/pRVrY44MoWTSSzpdYkrI0JmlBCMb7VKOsb4fki+23DbRPkTUdMUImVAEq6JK8H1rmwiEpAJVr+z49+YomI5WMI1ccXYORl5BFKa5+ti9OjRIWcx5zQ3RkxDlGu/fsfa0mXLeMoZlo+Sa/x74IEHpA5emvRSoPyP8Ge60imL0lBMQCZY/c6OfyNaGVwSrokrxha3Es4IyASrP+assCRqGpJwTVwJrndFUXgTtlAWmt1sF6wnua7kQvNYLDT7uRPNvrZLNy40u2NFihNNvTobEXHO6DcKkwaiy/QUnIkBIAuWldywy5PKUhTPOaPfKKyEPwqjpPxdo0q1i6T9cVeNA/N7772XanyEnXDCCVHxRQSynA7A36tHXSOnoY4eICXlH8q/VatWuObYxJczyyZV5Dk9SfFFyFlOB5DfKOw/sf9ntse/N/8h3rt6dZTFicJICGSUL8MyQDm8SfQIOcvpAPIbhSn/AiwyjmjlFpoJCyCmcJOQ2KX8D291uD3ySD8B9PH2338/2wKLGCUk4BRNeJRACk4ODIs5OTev5XGXvE+fPgJIokfIWU4HkN8ozPHwgBScpAHIgrk0xL8/Ff/XX3td5NwTTzzpyf/r+LPf4y12nC24/3X8hXFWWf938n/xhUky/jz88MO+jH3G/0fyn+5TrGOX8QXzF0j7Hx1uMzEso0nCK7LKb4ox9Kfqf8rr9dff8P3w8Zz8M1P0U/NP6OfOfxLuXD8H/wULfF1cF92yyWTs/bvjP2BAf1u6DBeariLlN1WnzKMHRPCHHnpQ6mDSi5OK4ZqAk+gRgSynA8hvFCbpSggkRMUFxBRuRrD3JtEj5CynA8hvFPbvwp/rxvaFvDrbTZ5iuoVmP9u33yDb/7gTbKIMqGiXKaIyIHziJK11FtNxMaw3fRpr8biVrwQikEPCrw+jP4QHh4dF/hAvw5GFEgP+8/hv3LjJTJ061bQ4rIVp2LC+mTptuvn+++9Mx46dRGGK5n7t2rXmzTcnm149e6C4S5nXX3/NdOve3eyzdzWg5BlMkswHHyww8+YvMLWq1zCdu3Ux5cuV1+iwrdny3fdm2pQpZtOmL03TZk3NN998bW644fei9Obee+41n3++xrxBHr16SjwIRoOdYDya3lv827fvcPG/+socfXQbpLeh0CV/XN0x77wzR+q/U4eOZuXqVeat6dNF6cRhhx4meHPnzTcfLlxoDjjgQHNk6yNDXBL/5utvzKuvvmwqVKxk8A5L0sRv7sRm9eo1ZsXyZaY0VCXvhCbkAw480KyHIhDmiy2QsELw/mLderP4kyWmLOLzszxtjmpjNn/7jZkxa7apXbOmwRsJ88WGL8yIK64w4ydMMBiYzX5N9sPj9Lqmbr368jF5vAMzTzzxhPl48cdm7vtz8Xi8GsqlV9R2NWWu/fGB+4gRoDce9B562DQ5YD9R4Yz3cbBL4/H6DrP/gQchbevMli3fSZdhejsgvevXrxeFGWWhnWsHvlfbpk0bg7dtwuDLL780c2bPNutBvxAPqxs3ggId7W6Ckd3+v0VZvvzaK1AyUNGV5X77I4o1H+Dx/JKPPzYnnniSwe6qmT5tmmmOumnWvCn6LIhGHXfTpo1mxoyZZo/Ke5iWLVqGNqB9dxfkAa78mE8/WWoOP7yVOfjgg923csFp04aNZtacWaYmyvoolPX7779vju3bx1Teq4p5+MEH5Xu6zMOWLZvNsmUrTE+06YYN0JY8f9JmW8KOpMEiwxxy0MEI85mOs+vzjyvPwH8H+EtNS6SlKfFLJYXEvrEQfWMu+0YN9I3O6BsV2DccsRUrV5jJb0w2J588BF2rtMGJosEbQ3Pssf1MpUqVDOtgNuqA9dajezdTFW2BZsPGjWba1CmmBcoHb04Nrl2b777/wXRGne5VtYrgfPjRh+arL7+S8m+Gsq6y117m448+NhtRvkxhMyhJqVq1qqGyipEjrzDj2H4efkjqrR7aYr169YQOrohKfVRHX+yKPlnK5+8LKK26YsRIM2H8eInXBHVdv249g/evwmPWLNRDDdTDUa2lb5JnEcrrA3yUfv78eaZGjVqmS9fOpnxZlIcv/1WrVoqswak++lppM3vmLLMG8oftrwGVaSRFK0odpk6dJmVEmdCgYb6SkXQ3atzIVN+nepANEjXUYXCYTZCDM2e+bSrtUdm0bNnCKWrA5YJ3330XMq+nadykiRkz5g5UWRH4lzK42g7cPcyjjzxsykLOHd6yJfg5+f8laM2YNcPgeihooe1Wo/xKxp/1kA9vvf0W6rYitOIVmr322lOawvvvv2twomHat29vbrrpRsTJQ7kdJfnAtSvzyiuvmkoVKpgmUBKGha58E0wihgIpfvyxGEfnf7DQfDB/vqkO+Yy3kgZvwoQHGfyAdkP+P/qPmX/66aeon/nSTvv27oOk+EJHkbHU3n//PVFccvBBB5qmUISU+gB8Uqwi58beO9ZcPWqUuea660y3Ll1Mfn6BqVW7FqhY1NtXZvac2ZBLX0AWtTeNGjdhcsRQduEEAu33S9O7Tx8zZcpUyLI8076wUFFgR8zgLoJ3/tx5ZuFHi9DuapgLL7zQ4PQU/fxThOaZdWhHb7zxpunVm7LUmtff8GMM6wjtj2MMx8Mvv9yEMeYYP8YYs3r1arNixUrhTw34eEsHJVDrzPffbRG6VA7SoUOhWYd+tBTKh0qXKyMKQyhLv/3mWzN71kxTvWYtjAWoT6SRSnPefPMNM3jwiWjjpcysGbNk/GvPNo6+HJvvv/vOTMa4ybJqesjB5hsoi7vhhuvNfmgHY++9B6jaIVz9b9/6o3l/gSs3XJVEuU2Rj5O3bV8omPxg/VTIii+hyOroY3wepRitwam9ee+9d802bQcot/kYN/ErNE0nAABAAElEQVTW1eD6s+Ok7MCZ5TRnzjsY0zeZDRjTLr74Ehl/Tjn1lJAFN4bMgoK7DaYj6q5Ro8Y+ya7u/lH55xg4Gq5+lsvnC3Zhvsjxr+6+dczCRQtlbKe4qll7X4yzaF+Isn0HygCyk2WKq/Ap+b927RrUDdpIr97C4vXXXw/zkI0bNphZs+dgbKnh+6bjv327o7cJ9I5pA3r5DUP+cfXeHHbooeba0aNN/2OPRd+ZC7nbDHL7MPSbUiEbjRsXmH3QNzmWqGGN4u23WQ4lQQdhXGlGpWZe9mrEd959DzL9I5RrAeYkB5maoBGahCe0AXL6nrH3mWvQD6+99jrp/wX5+aZK1WroY3PRFr40ffr2dn0MH7Jvj7ZCg0MW88ECyur5kNU1TdfOnU05GbscYc4V33nnXfF07NjBrFz1mXkLc8imhyJ/Mu8y0ocXQd5z/tH6SMy7XJEhTnCYnaizDz9caD76eLE56STMD9A/pk9/C/OD5pGiNWO2oW3PRVrY7rAhh/ROljovhMwkPfbxr5CX2e9ApsicpRBzFrQ3H7YIddEcdYETTYyvfc1cyAoqJuP811VF0rjdmDcD48c+pmu3bhjzUFc+yQMHDjQTX3gBbesrM3nyFIOnI5gzdzDVoODHD2M5x79HMdc79bTTzKRJk/w81/MTukl5SIHm+slCiQHFy3/Nv3ALUYLD5yvy5+JNWBZKDPj3409lQJz/UhEQP21SFv+cY3FewU+c4OrssXJ1thPeaLbr2MkerSeaWG2HhXNw6Io8AojT+fkbhaR8CldbKSW2C4nDgzs4FDsCiNP5+RuFpHwKV1spJbYLicODOzgUOwKI0/n5G4UEHxVacFeGzefc3/7WQjOfPQJXNyrhoTMmIxbCS3Dvuvtu9F9ZCthrrrnGVsC7Jy7nzx4+XBiv3/CF7dSxI+K2suedd57FYsRicoWrdNMlnLzfnzvX1q5d2x577LF26JCTLBZxFpNee+WoqywmA/ZPd90lu/kc7a+59hpbsSIfWxt7ztmOx5g77rANocBlxMgRtl1hewvNdnbqlClCf8OmjbZqlSqCfyyuNFxw/vnwV4UikLJ4h1fBQiDYnngfRAUUFeCHnLYYfCUu03b77bfbynvuaX/3u99ZCFjKKpwy6umMKzn+TnrxRVEgw3BMni0WSvZ88Mor5cqmc6dO8r4NC1x7aPNDJT1HYEf9jjvvBE4p8d90002gVGT/cPPNdn8oFmEeueuORbv9y1/+Imki/UGDjpP0VEZdVKpcWfAuv+wyCXcpEjLi588toEdFQqRHnt27dbeXX36ZrV+vnsCq16hhp0936WX+idelcye7E+/xpiO9EL4Ca4XTn6++/kroPvTQQ7b6PnvbYWeeYY/HVd5SaANDhg6x23fucHxDQpyX+bp9zO1QjoKy/C3Lsh2Xj/ZdnNge1aaN0Ie2V3vTjb+3WMDYg6CkRer4nHNS7fORRx8RJQW//OUv7dFtjrJ7Va1qMdFSJvbz9etse9y9P6p1aykjKjVoiXd4WDjbCQ9MsBAgQheTdbti+XIp23JQCoIFlVxhw2JNrieybZA/24JmZd269bYd0n3UUW2EdtUqe9nDWrawO3buDPwVl5HWrVsn+JhAAv+3omBB0rKD+EUWg53tgL7RCjvV7BuN0DewOeOvS1t7+YgrJA1MB08CGjbMDwoDjjvuOIuFjN2nRnVcaaWiDQNaHSSt3BGFum6J+1vwPVT6biu886mEd6fV7Ucfur5744032oqAkT4VJNHc/sfb7J6oI9KbMnWqwNgeqeiG/a8V+jGvh7E9YiPFtkYdsP+wX+2F8uje0ymqYkJuZjyc7pFWK5z88YrgM4g3YfwEi8WowG9Em9cyY3l0Qh6OQHmcj/IooKzYe+9QHtdhp5ntn+l45JFHbLOmh9jqUODE9O+BfPB9jNK6c8wdomiDMgETDVGmgUWC5MchFcm1SZa9xokCxUk4+UBLpmV7a9PmaKlDLGrsB9j9ZlvJK10K+a4Cd3fbvUd32w3/lSCfKL+Y32FnDHNkwYW0apPWL0jrKJFLbLvK//5x90M2VpW20AFKJUqhDp966im7bv16oYWJp62KcJb/oEGDLDaI0KfGiHw6j/IJso/lI4qHQHTjxo22E/rx2HvvRRqUizqdH5tE0gZZ5k4+F0iZvw35TIwtW7aAZzUpY/K9/obrcVW4cmgjv0U9KWXy6wyFPq0Ob2WHnX663QtlMADXz4t27VKmsNVZZK+99lqLzQyh3QJ9lOU1+c03BOVh7O7vXX0fe8YZTr7wNHfIkKHoa06+UF6zXR2OdJ8ABUx0U9ZyvBGjiXI+i4WT0D/wgAPsub85V95nMk5+QYGk/y4/xhB2NcYxbIRJus4++2wJvwNjTIMGDWWM4ThARULYyBHqL0D2iyxF2bM9voXnCWy/TDPro0vnznhjv1NkKRYVQpf94U8p2X+j0Bp93bUSznQ8jPbC916Uz2zjfKdHhS1q5s1939bat7btK+PmEFsG1/X2RB8cBUVUF15wgaJ52xUI2x9pkf9JKDe6OX5jUwhjEcfR+nbECNdnKBfZZ7QdVMO4zfxIO8A7RI4/lVHHpMH2R6PF/gTeYFOe/+rXv8J4083xAd7DGDccUpHlGLL3Pvugj5xhBw8+XsqL4z/fdNP8o/JPImtC4HkRY3zt2i7f+0Ce8BSdibjuuutsech59t/x/u3onXeMEbkxEmXAuQTrWeXgXXfdLW1M5iHSRjBGoDyGo408MAEyDbKA/j/c9IdQEBzfG3JuAlnO/lmBZQr5oQjz/Skaxzwqpmp7jHvjPfj448JYyqwUoJ1y/qWGfa1rl862Jerx9GHDRN6wr3HMpsGiF0qEDratj2otbbFy5T1sn77uNoSWP/FI+xr0Q87vWI8t8Q5U+uHkN21NX2aHY85AJWfMN/vYF19skLGLsroVbnP8Dm1d5nWYD0x/2z3NIX/WP8ujH9on+wPH2PJQwMb52QsvTLS9MW5QtrIO2Fc41mq5wOGSCTuZH1S1N2LcxianKHFjHzn7N78JeNigEn68pXIibn0xP0zvBsg4UnNzFsiUYa69cc5yEp7NuOcx1i74YIHIEdYFx0lstAiN444/PrTJdZhfcPznW9YLzj9P+lt3r5xR0zxwwECJ17AhnmZAyVmtmjUhLyvbt99+myjFjn9MH/OEhabgaRNWW4CpHxcShwd3cGiECCBO5+dvFJLyKVxtpZTYLiQOD+7gUOwIIE7n528UkvIpXG2llNguJA4P7uBQ7AggziLbtl2h5RtNKpXlU0yeaPbuixNNfaPZE9qBeKeWV2d59BmuzpKmnunSmYOHgsQOCB6a069Ab6etiInSUPwoKAGl2CcJ1LjpYBeukdOMFZpNI4QkQQkozSATnuF/+aVXpMNg910WIozMSUxpCNT6EJ5UUEMmVHTBTl0Rg/MMdKaRI0danBQJf06I8jFBhnpu4c3JJN8KUuhs/naLwFpjUVCzZq1QYJxckN6Mt/lm0SWK2uqERwXwwBuIEZ7H9999b8uWLWvPPPNMofUj+OCEz/bs2TPkf8vmLYLD+Fz8cSDje0gKTpyshkHm7bfeFhgHIDFgjd1JocV0YGcS2vP2tTidCrQTh7UfYfHNhUxnTCxomHLyI98XMRlRw7v4OJnQrNkJGKSYljG3J++UqFCAMGqbdcaVA2nhAEHyj51l+9mqz6QsGzdu7NEcHj3BBcdooWdAb4HDw+9HH36MBUkZpLeTgwHv/PMvSNIrBIqsS2+7gMM0cXF8zz2YwHomfNfAtF2LAViNDwo4OEX0ZWl9Wdaxnyz9RNApvBl/8OATLB/m4+TQDhwwSGDjxo0DTpGdiw0JpvcJaGUjbZwwQIjXgpKEFsrS4oTJ7rvvvqLNlDiXXHKJ0Jg8ebLguLI2Vt6i+ARyYOEiQvNCxMuwcGf56wKMgRxcWP9U4uBoX5qiLQwi+cMFmKRl648SlJmWQQOPswX5BUnfWM++Udf1jc2bJT2XXeZ41IcWXOlT6HNc0LCs2rZtZ9d9vk5o8+0eJ0U7/STt5ZdfFhzpu9Pcpg7jY+dVJlIsX2bi9F+fLngffLAw5P83GLxJf87sd0DbFdL1UNpDGK960RB6xRUjBIZTb4Fxo0TizZkjfuK4dpxudwzUNn8HFoRqBg2ErEiVxwaUx76+PL4VtGuvuVbafy1sTMnEBEwob8j3vvvuQ8KKLJWPUCacEWTCj0EmKC/aBfmN8EYzmbz5rAaUue/Pw6ZXaYvbA4C5/s/2hlPNgMpFpV5nlYjgn5+fL9dpXclJVNlM4waao+Xaf62atTGx4xVbap2ehc2aUmiXrjyoHKJc2fKyISMI4Mg8Deg/QLxKm5talHU0Tj7VtvhMiPipyIPl0qmj798CjX5A5DhsWjG9W9lG4eckMi2fi6QvVazoNl7YXnBSYdd+/rnI7Dr71gkEKeubYWHE/kvDRTD5P//c8wEn5QA/VYT2HHF8pqioie30nrshXzxwNN6wkRbrn4ZKzagVkzBuArz22mt21KhRQPdEgBNccAwdOhQbNQ2tvsNmG6lda9/U1dk/3clxLM+NYzNm2JEjrkSfe8+3pzJujAEt9n8uvnv2dAqMmB6R/dgY4IaimvNU9gft1dbL0vYOBbQemODeZUm9w0/DBTjzxfRNmTJZYCOxYULYfWPRxmGISg2hrH81YdxE2mk8uchBpXIst1qu3H7xK1l0sdy+//4HW7YMx9GzJC61QVerujfy6DeOQI2wihh/Of78GhsJ32Hs/Xwt20FNaTOOaZFdtGiRaHS+7Y9/FBATwjfvTD8n0zRSx3mlLW4rORz8juZGEsqf+ReDeP+o/GP8OP9ME9tUR2zsqdm5Y5fIc5zSCsjNJcpFc4ltkBtVff9y1NhGmP8KnOtIG3FzHRJIjS3wf+fl0Jln+LkJy9TPTYQhSOJEUMqFbYlvk2m4uc6yuuH638Pn+BYU5MsGnGZqIPtas+YhDsczxnkeuhho7uYBAPxzKItBgnO0IVhUpYwjLSBVTiP90CPt2lmEtlJT6Pzyl79wfeyqURJK/iKr8TadJszrsLjczLELZjM2qSizmI70vMtI+xg/boLgvY3FKev9umv9vEug+JH0uUTi1ovQGXz8YMi5bdL/B2K8IG03P/BtG22RMMqEV4NM8O1N5iz3KHW0t+uxsGN7c3MWd405T+pbZBhYX3ihmw/hloDEu+LyK6T+uflHc9ON6TGP8mfAgAGSBqdfw9o1q9fIopsbb+xDNLnGPyojZDnoQjPOv7YDBwu+yCFk4XflRV9wBYfHUSsTntOvQG+nrYiJJ/ofxP+Yth3wRrOzKJXlV0ycMiBqncXVWX2jKcqAOlPrbCdZmWrZ0c4omjgouBUnwQ5BwSE4CaKHR4CoUEMkOBRD7ThM3UlY4tIwtSUkKzgC/Mz8l0JRATvtWWe5wcelq0hO2Qifh4k/zauvuAUpd9ZoNIUrV66SHaYhJ50kcP3RiaHbRSyS0wZcA9Ng++CDD0o8XB0NxJTHsGGnBzztVLiaFxZQnGwdhJ28JjjB03QwAnfBmjRpEuJyosITzGQgxUQNEyTm69RTTxU8xudElAvol196SWBLlizGQpUnUjA5yr9fv35Ie57F9Sfh/+ijj8ouVX8IHzWFhYX2JSwEnCmSRTwFzF0YDNTw5IBp0Ym9wgljfDGef9ujj5HJuOJovtUmXBeaHNhoNIwP1zlwrlq1SuBML3nISYRHJL9XovRSiBNnyeLFEoc/HFx4OoZvgQXaykOR+JaNE/OXUJYMW7JkCcpyuwQPHXqylJMuWgjkSQH5sExpOFDSz/ZDLYY8xeXAzdM7TqAWLfpQwnnCQUMeVA//5yefDHXGE2XSuDOUdRHaRl0sNNtIHP255dZbBO+dOVxsWfshJiqMd+KJJyiK7JQ+Cdq6uNMA8l30occ/yaWFYUladtiVq1YKvZOicOKEvjFhvKR/3P3jBI+nYc4U2RtuuEFguLbsYdj9v/xygS1fvlziffKp77vD475r5U0i8zF3nuu7V189SuJ99NHHgRZPOrkT/R4WpkIMIcmCUTc+rF25YoX9o04mgfPoY4+5tKIN0bAcGI+7tAt8u5MA/EybPk1wuYFEw/ZHPFyNEj9/GH/kCLeIZB+neVy0dCaLSsLcBhG0PaJcaBhvPMqPpwU0OyATDsbnTOL+T5yCAp4StBKcXD/c7db2dhXbG8qYE8/Svr2x//OUuK9/N6k0GuZjodn6SC06AfM0jrSuHHmltN3LLndtl5t21OTLE2rmf3HUp16GXP0QbVqNLDQH9FcvMlokC1qevrFP0bBP6Q498/jyKy9jMbBWwuIfhrHMmaaThiRtlDjSBlH/oiGUiDC8YcENGX4eSA1P6viJGBoubkmLJ6NXYeHCk2Rqk2U7uoYaNTOMJxvqM57ginxBvMXIixbiFsgXljU3XNTw1gJPQlZ/tlpBYitttT+TfObZiy66KOAxjLdFCgryAywZY6JxzBNJxhhuOOyQ06ImurnnKVBOMT0rvSx95BHIUuRjYCT7OxR2sNwE0rRND/3grpAOmfQj3ljZOHFgnoawfHXCSyhPh+Jx8wGOm8CRcRPhysNRSH4Zh+nCldIUVpJHjIWQyzKONk7GTFLgzRjXDkDdjz9dO3cJ7YA4v+D4APpcaKh5EbcsmDY50RScX4if46mapI7rC4jp/0flHwlk5p+fBeNmDq49Shi1e/bApl1sOCfRzdhtlBsHYS4RzRteQX9iPoZxruPzr/GnZYwt5E85xNsPNJybHOLlkKaNm7akx41aNfJWEOXXLtqMdrLqCKAUoa852c7bSdwk4Olr377oa6BzNfoaab/08kviPw4nozxd5EbCihUrlEVUNi4lbHOUP1TepoYheF7i+pi0FYYUJXLDj7OKr2OXahZmfH4mDFeSFQW3G4pk3tUj2sCgJm3Of07z8y5FlpS55NmTsVHE/K3HiaIanlQT1t/PDwh3bRsyYc3qKI++TQJ36ZKlEp1kOWeh5nGVKaynuC6I4xafmHOxLmBWrozGPNT/YxjzWG6cN6nhXI+3C3zSBUwYaU+ZPEX8meMfgewbxNGF5heot2uuvkbqlPXKfy7Kg8lofwpXvmorPLaTsMQVh9MtIVnBEeA/nD8PKPnVEn69hAvNnl4ZkCw0jxscaZ3tyu9o8kSzgy+VqKii8oigWnwpULGoMRaQcCc9hqTdmUGZ/oCdHZANCciJA0j/av46WeVVGmZd+V988cXSIR548AFJ36uvviZ+CtVggM/FGQecq666KoBJ5a/P/hWdM8+SDg0/MbAPrtDgvZr478R1E3Y42Y0TCBezrwotXrvLZZ6EMomevXrK5JELw3innfjh1IoZ8YZXBHthJ1Eh5M/08pqIGl5d4wSH6WnZqqVMajUsZXsik6AxjLgUEDQ8fcI7MNnZ42nB4sUf40ogrmtB4KrRAUo/gUB4MrF3gxQTyfJnuSVaZx0FvBfBNabKSs7ZCXnxuxOp+ITUoVHDmaTXn0RKenFthJNa7lJy4stBbtfOXcKfsbhg5O7w/2PvOwCtrJG2cy8dQWwgiNKkqkiz0XtXQey9oOiudddeAHt3Xd21o+ja+6prF1CwATZElH5BQOldOif/80wyefOecy423H/1u4F73pRJJmUyaZMJNWEGA3y4MyFp8bSA+c02zzzzrDB21vE+rVoFTaQE5YkD86GicYy7ctVKmdTXrl1b0muyZxOZKPCElRMCihred999ECt9VOrTPRVgRNw5H36myTcPif+ufyYTu5pyopm10LzVLzRxKkTz+GNYRCFefOosAfqTVV7CcwCiuHDaOMDXX3MTlqHYIY6jsm+wHrRvcLeWbtK/9r/bbrtN/MaOcyeHTH/I4CGSv8mTMTmH4Ukx8XPCH5sLL7xA4FiHNFwEMH2eyKjRk0megKrh0zssv25UqD8XKxdccKFt3KgxpBx2k7TcyaKDCBsm4STdlZYi2cTLdqAPF0p0D4G4fGxeeMHXB3Cw/E/6p4DiCZFuMFwNscNgkCg3GIQn4JRUeAJOi2PCJF1zI8nlKMQMFoqeceEg9DbsQXv/sPvlRIlizMqryBu4oIoT4Qlh6qQUKfItPIq+Dof4NvkkJ9D3g3YfRVp8woiiyZTyKNYgk6XLlsaiZUAKxPGnbaTuqJgoaAUurlBRRsmfyU8Gp/iztaHOPX8mwoYNGtpmLZqlcHMSSz5A88zTzwh9cDefu/Us3wNYKN1737120qRJUbx0xihiyXaP27M4/tK0WVPJr/AXpNi6TWvZ2JLE08mm2kM1nt5+O/tiAihKwOrtHnzefNONMW4DNMoyrYhGSQqOF6QboSdoUw4G4a++5hZTvEJCeIpT7wTRdp4UUjSVfbNu3Tr+iSAXUze+Yt4fTpeg6VnNVxOxcYX+F5/6tGip4yaggI/vVbIu9RRL46a/Gam3WrvVCt6IGsxTT6PP4IQ8lBHSR2IAxP7XqGEj27x58wBPy2GHHS58WT2pzbfKtlXUKV9K9BjQmp5o7r/f/kI7blxJQFNjCLx/Kf9jfWSbF154UepHn1RiOV95+ZUcUG4e5tSBL/9bOtfB+JMyCB8NcXPWv7RlhF/mJlKn9UA35e0uEd3oiWa80CRvodgpRWnVUPJln/3cphj7PPFwM1j6GnnTfdrXHB9fBwmF9u3aCc1wc5cnc+7t6ChjPnH65KM5BnMDlpvHrCQdf/LyaoSnxi6PhgtN6KHwmPjJ2MrbunmXepL/sTzxvEvD9HssN+pA/7ivqV7R/ACbRR5fnN8ACIvjKaXkCk3sr9eYyFN0gZ+3LTCH0/K7Me8C27gJxjzUDelaJQ2YNnkgJa9i87e/ccxO3pHNHv8Iy77BMupC8+133rZNmjRxf42b2MZ7NMaY9nScbGL35Q8e2e4tBBQLGuLAAiAtf+wd7NmJZLuLBQxNFyDyWn4D/Fxo8kQzFp3tc7B73iT1jmYXLzrbBhGCAdFu0UTBzhp5MKI65csfX73eX4MDDnik/P5A+CkiSsK/zC80tXouv/wyYQyyO4PCv8EBGoxCBuio/Lg0L/5HH3N0qC5W1qhRo6TTDcUkl7WnO7hHQK6eE1red+E9Glezrv7ffMMtZofFi1lAcKA6ZMAAYcqi0W7zZojHdElEeTxmLjTb8NQqaizevYxPNGWhiXLw7oqDI3DGzpg5E37HyKSzHAaK1MQJIFGSNrNpE5hPLRmouXPasGHDMHG7DYuXC86/QE6kmC0XjyeaGKBQz/EAJRN75GXCl184OI+EcLzPEgz8KaJZCXc1xUT1H2BgCSdLXvSRYUySd4egREUWv0XMLyaUOtG89dZb7AUXnu9Oijx+ftq3xwCGvMnuIDx8kOXJZ9nSpWXHn+nnMzNnoC5xasVJN+9mTMLJH82xx/mFJk4LxCDRNWsgAonJte7ssg1Z/pkzZzoY/kb4uSDg4urqbBGcBBp3Z3Uy4BY4TID0xkmrGF+YW2/xC83xY6V8KuJ2VbyYYYQIv4vvEmBeWEcq6idhHp6fESNGur6RdaLJPsUyXDnU9Y1hDz4gcKR/jX5bfNrq8XMzh/igUEngpnlpBNkkEh/3c/lllwvcSOBhTnmiSXxff+MXmvBMFpqfAML1P6XHL3CPRQ3zuv1220v/4+kIF/FM6/77H1AQ6c9sMz0lEKQITdrBnWiOGOl5xVGeV0g1ZnA/ytWTqw8s+J/MWpgAbqI/bRaRO9D/ZmziQCGD4wmPYFGIfxSZ43NBip8ZrIMFQ86JpuBFIL486Wbe2f81ngYzPg0ncVBG4xz8BX6KlHFiExvSLuuG9K/GpeV+oSBENnfCREq8+ePqn/i5+dMfk8uUgb/wJ+lTEPuE+PSkScmmQQqWDknX+b7j+XNK4gThjj/zdGSoRGCUhg3cAiOKbg/3Cwz66YLgxOOPh2sLJkqAVj0R4PM5YuDZoX17R8ty2pWUn/yldNkycjJE2Dat26DvJhIULn6EQDwcDvaNayiSGQXz7pk+b0JQWWgCTk7PBY4/GWyoOTF+TvwfedRtMkC5B+ippqSnSVKqohbauS402Qbe/zw2SkBDt4L3X4gT1euvc6fuxMd42mf+edc/6SWeYdL/7xfFg3BfTXTSGjH/0U0XGTchOUAaOwdi71s0SMxNxmv5qnC556m6jKOYUMtGCvoQy7hLzRoOzoHZBo0aYqEZbTjA/1CcxuuGA+m/AcYQiomLeL7PDBeapH8ooxOf9rhHL/wqOtFkQMcOGENA51BKBFcGp+q/jP8JkqwfSp5Uh7g1x+SioiK5A87xTw3zy40c3s9jPjOok85dOskdeF9Z9o23orkOI6L8vmpkHGcZ/+k3MSU98iFsNsjcBHXTGScoFE33UcEXcQ0Fca657lrxY2IrIDbPk9d27doKAqZPMX9KC9Ae+toJJ6bwIwhuzQ2tGfvAAw9Y8hbW9Qnsm0mwtzqPwFdfTPohgVu3OQCnkm6hKcnjR+d1xxx9jKSnSZJvsCxX+k12wpMmw9jqE+AGP0WFXTz8Ip/sI7LQ1MTkyx/X/4895jgpQ9ABgZC1ENvlJo7MD5g2TBuc1nP+lW3ag6cwb1Ow2aOGqXfEvVmht40b3EITMLLQ9PiXr1gm14TatW0v0UaMGilSLXzLnCKx772LjWvEkc1VQqAsh4CGSP+xoTg08b8D7b402eMf/R7mQhMwr/GOpsev5feVpR+COwM4AQ3ulEt9k28U7KyRB6HUKV/+JPw3DqZdDEA0inOnXB4o+kTBzhp5EEyd8uXPb4ef60Z3ook7mr388yYHuudN+g84wp9o9uhjO4cTzY7MYsijOGKXZt4F/LpfTUu/UWppr8gVWSPwX2bVtPQbpZL2ilyRNQL/USvf+OIuTGqyirS64B5KubLl7ZKlSyQNvQ92P5haYvxdqXJlcRm+duING5kuO5R7mNaKSCSVLnCB89BDwy000aXg6SAOdtQHdBLry6STA4r7aTE7deoEJQk7J2kgoGbNmikxIwZyccZdZzUZDDQsr54YUlzyLFnwOgiKtjLfN998czaxCYDip4gDGSfFOG68+SaI7m0U/FT2wkEmFg9lRCpcYLqxGCJFXVnecePc/RGHAAwZfhSzC4VFAHdfebKi+AU2diFATkiRJ2itc8HRr+QX6TK/XGRwQGZ98YI/7wzG4ipMlvTAetITbU2KyluS+5JRbmDlHZmzzk4mQVxUsyy3sC5hwonmxmTgd7v9FHk7X2CoVIpxONDGxZNA/Hwg925x8owd9Rhg5YqVuFe1XsDy1XU+2rgJ+WL9f/yxOzXknV669U6d4qf4jaYdldhCs6jktUUr5CUKUHjuoFLssA5PayOT3Te4aGOZ34AYpRikxUkr6/8jr8CH/vogup5MTpuOTSLEu4wnmhF+6btYjGgfux50RjhornXp4xcaj8WPCq3U6EaFihIzTU4geO+EImE0VJrBtO6NlM9c60XAs+lO2+HvXvRW64MKj2LD02qmqbziMYojwv3iC8lpDzQ3ih+VuNDoyRR5ghjklTyheo3qzu1/eVLOk/XijKO3AkdvCqR16b8Uv+fdXRoNYrrNW0anPgjgQpc8QWhX04q+PbzClJdxwhKbxYsTXsgJEU/UxCBNimfzPq0aioOzboQ/ITeky5uxWTTW07DC6Zd1TvFL5jc2SoMvQ7RQDcUHqcgmFBL4Bxw6QDbfCCOSAsDN01zegU8A01bCxuZxiJwxz6rsjGEUBaTfw8OHx6DCj6AB0vkBPxWdcCKrBl6RSVwff/SxpMfT7dhwwQHts8GL1wPYr4alxrFkAXoT6ckn26lj5xx6YpDy0v1b7y+8lBIaXJAK78dJVjbvfy8P79frC/9+kQtNZ0jj5D8qKcN8UPlaMm4+ZBenxs2k/JpnTYs6EeJ6o388jipcZ/aZ6jXUKd/6EKVtFtMBfLmpw5N/xUgRVdJ6kEhCgG4mU+kSjRtDctsYWmejMcTKphVp4efyv9BQRKYZg1WvGLRCvw/8gTAwb8mGeUHKvxMWhlQkpEYlUR64H2NQllH+58bxTMKHbvB8CPDCh3C/XE22uCb9udBgmQfjioiawKtQFtfXCrBRpn3NQUXFtANPG2hnzJghAatXrZZ+CS3tmlzOV2ku7ocE4j1gbrgFAyTCq3F/nAvY2DySmte53OyCuBS/jQ3nXVQ4pIYLcpZX513qH385PyD9cy4lBsnrCbKKxBNjQtsOv8IKvYEmuQEcG85xdM7i2qIgJcasEmoUC6bh6ayMeetdPnQc45inGHmiWapMqQQNArhJwJNcvSOu8XT8IzDzRv5DkeBijSLRbwSY9opckTUC/2VWTUu/USppr8gVWSPwX2bVtPQbpZL2ilyRNQIX3T76jqYqA9J3NMMdTacMyInOtmvfEfHzpJbHSxCJfxQYrMESUkt88mKI8h1Deu88Xr8n/Hoqwo5Dw+JQNItKR7gQUnPvPfcIo7gMd5hSBhHOPfc8CdP7h7wMfcD+rfG3X9jxbAyxgBNPPNGuWrnCUgsinkvBHRHXkbUK7yEOMAoOFLGhcg0yoL9AAxgNlUJw0cU8Tp86Te4mUHMitYjWrl0LohObpCArli+TXViKAakY6xzcqyTDaweRE4pzTJw40W4DpkjtoTRPQqyI4RRdyTWaUyt3X3iPq1yZsriXt0hAocJf4gozFdAEXkQmkO6FfkHFCDpp5IKHDIjiX0X+Xh/zp4ZMmhNA3rOkJrqUSVDI/U/mnZPQ4Q89DJGhZBL57bffiobLcjgt4L0AmiE+v4cfcURIUpOjOG1VXLpvhIna0qVOC+2/sfvOdlCxD4mkEeD4CnVJzXdSl/B/GmJooS7h1oGESiJo2P7UQkytdLooevb55yQOGT3bmQ9K89u9W7cgEsNFJtO9+OKL7SosMD+B8qo999zTfjLeLdjdJBpi276uOWhSwQWVW23Crqaas84+W9J5OmprLho1bS4Y+SZpknZUWJ9IqxaEL3B5EfjxAj9+3CeAyIjmWqZHBRM069etlcU+B0ueotBQmoAw3JlWDKosghszak455WSpf6jbFy/2XbYHd1fVUNMz+8V11/JUxaU2atQoSf9slHfd2jUQf3pRxNiJkwqGqFCGRjYGQGNCP54eqcGTfY13AFei7/IuGuNR7Jc0RRTc3acfNxSUjun/6L/c7q1MEnzBzjv3HIElLnqRV+yPzQ/WB+mcfno/leL1atwCwUCx0UDxIk8gzr+e9xdxk0aolbYcNr1YLz+sXoPd8B9ko4kbP2HyIhhcqsTFSRfTUXpbu97RWzeht00WzzZIeAvyEJx+0HBxx4mUpCunMuIt2nZDWm++LW3NfEla2Fx56aWXpb1qgQ5JV+xXPKE9OLp/RA3DXLBQAmIoNrPwvIrgmi/8KWMp8kccyp/cbnuBUzzmsuF+pb7lJ6FBOYVxCl+44bRfVOdU5EZRPmo4dYtINC34o9yHAr65OM1m+andmPjZl1k3VFR1xhl/klPLGL2rZodfFd+4UyDnp/yFC8Elgb/8W/i/8hfmg5IIFGHlCZDScy4eSm1sFi3W5JFs07Vr1mES7/oV80slXYuQ33vvuVvyzzHG5cSlqvR03l8TeuJ9dGoQJT2tAQ9R/DzZJ+/nJtLCBY6XDgUvZV8MkiiSuMOgi/rzcdqpacQ0rvmQzVzkf6CncZaTYnVu3FwporkcN7V9GB4KIQ73w/Bda+6Gk/jylgqnxADJE2EcdWWkIhX2bWqelT6DMq4BfyIdUEO84iEdUKs269Hd+UzEMDu0a29XgAdTBJ9jBWGo3fTV/7yGk6VvRImQtLFfIL+EMYQwbGMt9y/lf1ouV8Dkl4uvAlOItiubjJce2VNeWoKKa+jF/sl2Js9kHawGz5B5CPJ4SdY8hJWtbakLH3fiXCCKcJgDpidzE2zS4+ktWbCJuCbS471WpkH+wYU673mvXr1a8rFmzRrp5zWwUcF6Z51TWzNpin2NGpW///47+yfo0qCEAA0Vc114PmnK0f+euAawxx5NxC2Jup/gpuZZpidSVfBl+YmL10rYx0gr2iaMdA60DMfw60AbpAPl1YRZDSWM5TG21sZGFp74oZekUwglUC1wKs5y0Ohd8fbt2gY/xaVflpPzP50fMG/UZkvFVnjiCKlA8oC0HeU3zjD1SVSrVlVOs5cuWSbwFNcXevsPThBhvpzg7svyjjjxsi2oUZabZ9oWjfyYhye1MF9dKWKyrAdeSZExD/E4X+YJf9HMIrispSJCPGcX6paJ5xv/rrn6KskPFTlpufXLdGI73WmTJzSPl8QR/ygwWIMl4Ep8/nj4KTrLq5edunYX5bK9+xxoudDkHc1+hx7OE80DbbcevW2Xbm6h2aZDp3Sdw6UVpF8CqF2/OZGCRwwR2xUAx7mRd2RVgLy4FE6/ATjHEkPEdgX87+Anc2XnZqfBe0JgIvuJWvsrIVK1YcNGyQy1vVL5DTss//gsBY3mml/uBpFZN8bAyIlSTxxTz4HYgRoyZo3PO0O0c4eUu14LFy0QLXAazi/eKQv1zx2iFtidpD8Vw1Dr35HQXMoJfnkMptxlo+ZNjU9GRI2JlSpVDn5t27YVZRYcVBQ/7+8UFRXhUncp0RxKTbK77FLDnonnNqjA5sfa/6CD+8mOs9YDn14og8kHJ/bqx/JTuynLqvk76MCD4JsRpR6csLL+W0Pkl8pgOFFWuM6du0j1cXdZ658DgioeUBz6pZIQLpoZ/wCkN3s2FgKR4aKOyk+cychTEZwsUXQx1zB/U6WtWbetUX9k+EF8BBEUr35Zl3wuh1pYu0hd1vR16ehIBhLkjXd7uuOJBE5m2AYTJnyeQk/tettiZ5DloBIgTnangE7VcNFDhRt4EEnqjurzeY+F5uJUXRdgkt9VFhFap5WxgOXdRiroUT+8nyWnFIyPN9Rsx44dZVHPcLyhJWlrGQmjhn7zvptnOwi8a1/NSwyvfYOTRp4I95a+4dqGCifY/sRFGmH96iKTfhy8OAEdSDi41Y9aPqdOmy5xqR3Y9d395RkMnrhs2OgGfeaVp5Gkf8EB2O7duuMk5kYR0+Rk5bXX/iNFmgr64UYB4fg0x6xZs+UOHvt1GfyxXZk2F3TsQ738yRsVuggdI56ju9loh0tRHrSPz3OstZXKckjnrA/yil69e4YJLBWBaRz273swIHNSWgonferPxS7evbUtWoInoO6oHZSnuNzgIQxPIO+97355okPjcCE5c+ZMKaf7SVrozjvxJA/CCVuqVKHQ29SpU0TxFMsqaaBtKJpFwx1yx0MK0N+grRsbc2qohTVJq7RPa6oGWy6ed9xhR0mTPJeLUPI/NYMGuXamAgveN6QyJopoVcdi2fGnXexZ4E8Uv2UJqNCFT1PpaZCWSr+artIg+TPelRMFKbpomDp1cmg/lpX9kr37AOzsc4JFv7KoU55eccLIe2EU+2P7UGSQE1g1ile/cXuyHB1xguYMFZ5MlScMtqlU0eItwxR/oQKZypW3DfhJf5zkx0Zx6JcngvWgvIf5JR/mkwxU3sMNAY5hx4D3MUz5f2M/jrGsHGN0A4tjTJcune3h0H7J8pOeRuJUMjb9wPuPPuZY8SJ+8n7y0pHg/TSap2zeTxFsPr3AfEheQFf33HOX0DjrR/35IDzHH4riil80fvDJhl54hkY3DBUX8bIvKv2xfZgnrTcZR7FJx/JT4VXoM+hDLCPhtP8TJzX+0nBs0vGHvGAc6IAbt3+FqCAVopD/8P6xinvy5P6BYQ9K3NDGGEPYxtxUdBJLLte/hv9pufVLhGrnc2EnncSFXdrw6a5W5Bson2tn8I0jMeH07XzQQQeGNqBfPNfRtiRNsA77Yhxfhs3sFn7jk+l1TvGhCjIXoLZp6qcgvbXEPIai4D179gg879PPPknNXxyvmiH8l31N5g5oc4p1y9UBX6STTzlFnluhWCl5KRf4HwIXjdaDBxXFRiwP/yiK2qlTR5l/CK348cfRyiM+ipt/8sRV5nVYxAqvxqKMm040kzE/IP/TdJN5l5uDkP7atm0j/ZyLb4Xj0yTpHLrc6vyAeeL8gPRHZUhceBKC8xuGaf3j/WI8D8RrE4mZ4nkK3jgGveXOWT786EPRp8H5JU+8meeevZK2YEocgzk+lcEhwi5+zKvg55eULKNh/2vWvIUoQuKGHedG8UZxvvGP14lYB8p/EkmVuASSPH7+O/N/h+2Pi18Xmp27uedNesrzJtQ6O0C0zhb07nsw3xAzGzdvwsPHm+Xv/TGj0E4gMzFsM5Kc+0QWF/wzf+NkSMmKJaQrAAEKqXt78AqWn4nZgYfYsPw38U+fPgOPs9fHo+uXm9MHDTK4YG7q7l7PYILry2HxGO0mKS4WZAZ3owzuehiIYyE8Xf+Y/JiZRTNNzZq7ymPlWhHY1TLQOIqHcfc0++23vzwCDjXj5q233zJ33vEPc9JJJ5q777nH8OniUnhQFe9EGYyyBowPPq5mMLDhgfDpBrtnBpezxX9mUZHZZecaplyFCnhoe50pW6YsoF1+wRwNNMya0vTDo8PMd5kypQG3AQ+sl0H6VsrBODQQSTJLFi0y9es3MIV4zPWntD807hk8A2u2qVxJ8sP6wK6jqYGHomODnTk4C+TRWOy8yyPIinflylUGTwmY6jVq4HXkjNR1KeQTmcbD9pslr+vxeDYunmNdZSS8LB5ad/lL1z9xrFq10kAlPfKA9LIMTujk0WEsCkLId/O+N7ijo9Qs1Z1Nfwvw0DbuSpg6dWsjntaMp1j/0XZiwjidNItQl9BiiUdySwVcxx13nMFurFmxcoWBFkmUubrBpFvC42QUfxEeqd5hxx1MlSrb+eQDFOJYg5Nx88PK1aZe/fp+HlRgNoFnoOrkMXvWH+ZD0v4YNOSL027D+sMJF/JWaEoVgt4QBwk4mkdc4ucD1xBHwgPy9RCkDzWn8UtdeC+IHuPx9h/M7vX5OLTWUSi6tNvMmTMMBrZU35C+hbKwnnAsI7hwroc3uQuQt0IDsTyUpYzwP2ajEI8NQ0ET+kmhPCDfEPR62eVXmEGDTjVQnS/5ZR/KZ/gQedmy5fDwdlU8zL7GYNJldkVfpdGSQQTZYFffYID1SVizbNlyg5MrU7deHYP3bc0qPFK/DHFr7VY7RMRpp1nzwxpHx4hJmmctlGLekV9MmoG7jE/ThZNX4OQF9VEx4Ge7sP7Jf7BDLlXJ+ucYQP7DdDAEo6+XwdeamdNmgJ+AJ9SqibQLUCczTXU8zI6JM9oY/Sa0+2bBj0lbyENsYVqzi4rMDqDHbber4loQftCWCL4B2gHezRnQDuqPfqXJI5CvTevRPuBTaCrBz18M3shHkTz0jff76JUybD/cI0KedzPbVt5WwrT+WREzUAa8yyc0rBXMB9UXLV4IXt0Qbc8+5WPEEfPQXYyYbTITfQrKO8w2FbcJQcwvtG8a3L2WvsMxFyd5Un94o05oju2Cu9RiZ8RVq1fiQfSFpn5d0Ls8IB8yEtKlRelbaBjpkv+RN8cGCsnMmrVrTd06daRY2v/Jv/mwttQzxpZSpdFfA20XX37cnUQ77mAwKRU+s+NOOxpMdIUmiReLI6EnN465vDA18l+Oh7ijD9rmGGNQXzOEn0MiAuSVlHHlqhVSF5UqgpcKSVnpI3jvVuLpT3b5ORayTtl8LBuel0D5AI0f9n+Wj/2fDYFNNgPRWYybexsongKdl8VYscaNm3feYbCQMsPuHxbwOwvakuMF2pI8ZCP6DXmFoxkWkePoDLRveT+OsozoM+jvFdFnGJfjD+Pi9Eh4JTac4S4Ej0J6aAeOnwwnvrXIz3fz55vdd68rZZo+Y7qMoVp+/coYsnaNqVOnjnrJV+vnl/A/8m7tBpFF0l2xYoXwCGwsp/DRQf4xA+2MTWqDRZ+E4w60qYk6YP2T/shfyH/YV8uhrohn46YNgMU4TvqBv/C00mWFD82YMc2QRnDXUdJjnZKH4okUjC+bMB4uBh1VN9jcMXiL2GCzVeD4o/2vHHka+Iz2PwdgMaavNgvmL8DY4sciCXC0uBHt9e3cuaD1SuDr1VyUPL9az6QL0j35KcfBDeRfoEPSH3RPCE1nz38YF/fOUbaa4NU6d+BMC3WyDrQG/oczVZ8m+CP6Le6as2CoP513gX+g3lhW4tf5j2aVaZ2A+cFjmB8sR9vNQ5nwHqyM/0LXAADnx/wN+UU6JL9NHBMKMANj/hNCkCRZX2vXYc6SRW/SFosXmRoYI6C1Fvy3CuYX2yaxiQdpQxpO+nOdun7Mwzxt2XKMebVqS/pz5n4L2qllNmDMZf2T/mWeIKFufEMyqfGPeeT4w/xzrky+gUW/xGD5Cc+MKP+TAM2ZAAQoB8gYwStYXLSf+Rtiw/JHwt+ufSfhs5yHlBY+CN4GeimFeZSMLb36YKG5eSMIlQSMTo3vmNHvJvWqFZlVMaBjIUIGw4qmcL8Crlb5sqNgb0EC9EcB1J37zYGAR9wwvzf8M6ZPx+SlgYF8u7n22mtQ4HSNZNfALyn/o48+ZvCciHQuNq5rElf/ePTbQHzO4P4AUOWkno0+F+J3Xv/p2v5jl/84bDZAIYHh4MhFQ0n/+3X8Zzr6Lhfzl15xhbnuGvZd9CCQEAdhseOnhP9FfUqt8i3h/yX979f1P+1kv9X4DwkXN25i/qMLRSXhU3XcxNj6W+GX8mX9KP7gDY8S/MmsqYT//vLx57jjjzVPPPaEwZUav8kWqCxYSugvoTWplJL+t0X+06FjR2yelMaisrQpzcUlNkC4acZNy0JsKhX0whEnd424u5PBzgV3Qt/HQjM1kwrkl1jyTR/iUNdMWeSqTv1Gy5mc9GJOkiQcbDnwIYQWRaBfH6hO/QY4xsiaDmxl/BO++MLgorQ5+9xzzB233+GpOGRkq+CHYhODO13mrbfeNN279wj1ALEa07tXL/PgsAdNpy6dk+r5L5ZfWkCLq98S/KgWt1rZmvTXv38/89JLr5ilSxeb7bffwRN/IIeS9v+Z9Pc5+m5L9N1zzkHfvQN9V6oyi1+Ir/4oAv16f3Xqt4T+UTFbn/4TAg8V7RpAnfotqf+S+gf9QSu2ufAijptvYdzs7mnFGlx3MT17u3ETCqicv//N4ddZoSXzH/br0NFc7ahTv1F4Tn1u5fmXZEDx6vf/KP7+/fqbl15+CfODJWF+UFL/WeN5Cf2BhbmxOcXavCObXtp1wIkmJENkoYkTzdKlIA0IyQxKLtC/oFdvLDQhqkSRR4q2cdE5ZvR7fvgHq0CFqxhU6J95MOeEZXlkOZN+nycg9voj4H/nnREGb/AZ3LkwuEMA8btBZsiQoSLaGkkJhVr9peWfBTGSNm3bQiRiuTmwz4Gm2s5VDTR9ov0KzU0332Rw5zLgoEXwxMh8aOz1R6j/UFZfPv380cpPkTQo3jEPP/KwiFceeGBfA02/BvdzoyFVS1/S/j+l/aEQyAwZPNh8PG4sxAR3gtj7aWbokCHouxDzikzcZ8Q7yyPLmYDkCYi9SvpfyfhTMv7qZoRuS0Qdz1vjPpN0rgQuJxxB4ocfipa3a9sOInvLDHnmThCN5FhN0dubbsS42bVrviSTxDWt2CcLYZYzSS9PQOxV0v9L+v/W6v+8JgVFdebhhzE/wJWOPn37mnM4P+jVM6bc1FyhhP5K6O+n0F9bLDTLYEFZyBNNiswWYIEJaTpeQeJis6A3TjQ3UmyWi00cpXPBKSeaCSv0RBizv+K9PPv2xIo4sbyHknOxuwXZOGJ3bP994f9y4gTz1VeT0ACUp8/IPZ0jjzoyR35e606rKe3+aeXn3cHx4z8130z+xlSrupNp0ngPs1fTvZIkafs/Vv9h10Rr4Y9afpDIo48/KvcReBeHd68b1G9o9tl3Hy25+/5Ryy+lc/0k/P5K/jNhwpdm0tfou6hPVhvvfEDjJe5P4c6xQ5Ku24TzgewA8CvxJ1PrPMjyeGmmXFAJ/pL6xyIte2O6pP/n7NbzPvT4cePMZNzprYaFJh6QN3vttSf6tlZens6Wx6uk/wXOU8L//sf4P7v9E48/JnoKeIeU9yh5nQuKAv0Ylk3QsTu2FwMu3g4u/JaMfwkL8dX2R5x/844maaoAorJlsLCkuKzcWYc4La9vFfTqexBVGcvldRIeTzTdQtMzWKGYQDZSVWnW68JcHcZ2rVV86c2fYo5i410TDwz4EvysNak7f+wp1ZjUjAvyvwKbsjsf+S2pf1RDCf2V9D/lXFHfIGVgBNZduxL+k8Vl6CzhP6wE4a6kHKUiqZoUz3U+hEkZqVL8lIx/qWpRR0n/K+E/Jfw35irsGSXzX+EPwlIdXxU2mtSM57wuTGBTvNj5hDQYVsJ/o0pJrFuD/1J0lkqACnGYJieaWGBSZFYWnNDghzuaTuvsJssTzc2iveqD90a5XCjtJ3kq1pYigpQjN0pOMD2iyYxYGa0Ef27lFeOTqtOUIzdCTnBJ/ZfQX0n/E4YTugK7TQn/yWUexfikeErKkRshJzhUuleplAOQm0a2TypKypENmbOV4DxK6B8VVVL/gRRJNiX9P7fzFOOT6nIpR26EnOBQ6SX0F6qC1VZCf7nEU4xPiqZSjtwIOcGh0kvoL1QFq+1n0B9FZ7mw5Klmab/ILMBJpigGgihtAd87yeAUcxPkt0V0FiK077/3nm+dqEkkB35MjtrOeRcTqHAIthjIE91zHh67DLGvA9cwuminQYm9dxzKEOcuJpAANAguwR/XtNZiSf3HtRKIJfQw1hNNCf2V9L8UGQhV8Mf1JN+ftFuFUG+Bfwn/iXuaVlQJ/4lrxVGL1g1dtNOU8J8S/pMiA6EK/jhq8TQTk06AcEAl/CfuaVpRJfwnrhVHMlo3dNFOU8J/SvhPigyEKvjjqMWadh06u6dM8KQMrxnJM4H6vAnuaeJE80Bond0MrbN4dxD3jzJ4e4fPm8QmJr3Y/6faU/Ej2nXxNasg5xRgknox3gnAj9hS8emgQd9xxoXKbwpQw7UyE/fPtaWSpYOmBL+rh0CqJe1fQv9xv/DkgU+q/yTeP9mWil/S/1y9lfAfTz+OOuQ3RSgJeRXjnQD8iC0Vnw6akvp39VDC/4UYhEZShOKrB59ivBOAH7Gl4tNBU0J/rh5K6E+IQWgkRSi+evApxjsB+BFbKj4dNCX05+rhD0J/7XGiKYp/uNCUtzN5T5MLTiwy+cfnTXiiyQeHeT+TD8y+P+ZdXwlaF6AOyjfjk+9ubxo47UqILN/uUQSbAEae3qrKC0rw/6L6Z5t+NfFL07R5M2iDkhfP89QxvELnzwreivW/aOFCPIb9g6lbt24aSUn7/+L6n4+H2NfjQePatWul6xSupFp/n/1vIcq2Fo/M165Tp4T/oDG/mTLZ1MRj9dtuu21OW+fz+G+1/zrQ39RpU8zeePQ+Nv8t/DHO2P57xL9q1Sozd+5c06RJE1eUrch/i2PxEaMQ/vzVV1/hgfUqpnHjxuh3qMXf2fi/EXonJk2aJNqhG9RvAJGuQhQxkamKaUTsCaHkBG3t8s+aNctUrFjRVKtWLcH1X8SfII1sPwH/D6t/MBMnfWW2U7qIohdnTZL93xt/qJOEdN5s771B3pgXFdc5fof0r+3xa+p/AeZqazFXq8Oxt5j+z7fZ+Xze3qjDfObX4A/p/R+t/99T+eVEE3c0+bxJKZxkUnyWC81CeeoESlApOtu9Zx/buVsP26FzF9u2fUfcDYXJZPgj1nw/xYf4aFuM7mPjU2w6f0D8CxYssF9NnJjU63+h/G3atLEVK27D/QG7bNky35QZy7xM/HLib1r/C+Yv9OW19rlnn7W1atUi37F/+vMZLh+/UfkXzHdl20LhflP8gpeEXTxxbxX8Tz75pN1tt92kTs8991yXJn8V92+MP0GYZdsK+J984gmUbdfcsgEVExFuggAAQABJREFU3qS1ixYvykIaObcCfuV/GfChjz/+2K754YcIwRaallBbEb8i/fOf/mR32GEHqY+333qreNL6jfBrPvSrpLVo0SK7xx572LJly9rqO1d3wb+y/I43fYm0FItiTb7Fh/homockSmTzsfEpNp1fOf5kNoNuPhqbQzcuE/nxT/hygoUWSItdYNumdWtfkCjbkbXYfBOGgfoXxUms+fEzfPjw4bZO7dq2Y4cOQmsnnnhiEi2y/Vb4A4ofqf/NxfRLxn/xhRftztV2tr179rYNGza0eEvY3n/ffSHp0OooRLHl+BH8xcYjFgbqX4T1uuuuszvvvDPXu/bee+8VmGLT+Q3wJ1nxWPH5qfgfBl3UJl107ChziROKoQvBwUT1L0Ea2TxWfLwtCvPW37j8Mi+qUEFoPJkXRdn4jfELpv9S+ZN5p5Zvy/X/LOdqfl7xJ4w7+czCRQsTvl/d830FZPL6p36pb/H4J3/zjX3rzTftO2+/bd9443X7+eefS8wF8+fb119/3eKpQMvx79XXXrMrV64MqX7wwQcW7+Ai/B37+muv2xXLV2yJuFw8ZMPnJKQTLH+g9g9lCpbi6z8BIUyxtZMTwnVjh45dZB3ZvUdvy2cz+x54iD2o/6G2/6FHWNOr74FYaPZ2C00AttGFpseYRpVkUILTgSGPmkEN1m8ASHlEjsiqsGkv71JP/Spw+LoADdZvVrB3RqGRVWHTXt6lnvpV4PB1ARqs3733bmbLlStnly7RBR8jZCx2hVxMBQzpaE2qhwdQOP1qcPi6AP7OmzvX7rHnnsJQ16/f4CAQsHczn5dlS0KsHOpBSIxi3bq1Ib5Y4sAklRCr6d572/Io75KlS+369evtsGEPSj7O/+sFEXSUSGRVgLSXd6knvqHuNAK+zZo1lXpestSVTcEDSMojckRWhU17eZd66leBw9cFaLB+s4K9MwqNrAqb9vIu/1m3dp295557pE4vvfRSjYKvA9C4+g0AKY/IEVkVNu3lXeqpXwUOXxegwfrNCvbOKDSy4oQMk7HssmXslMlTpLx9+vTRYoZkE4tLSJPTbwhPeUQOWLPp6fkXXhB8F1x4IaJ7WI2i35CwWlyAButXQzUZ545CIyvD1q9fF0DZh4448ghM8grsmNFjcqI6D/11CWly+tXQkKh4RKGRVWHTXt6lnv775ZdfWpyw2rp16/poLiALTJMM1UiPTZs3Wpw+uTAfAbvj6L/lsTG2NJ1VdRWbsKL46fhTmdF0NRl8017epZ76jeCdNWNf8HRzEegmByzlkTggeWI//OgjobcuXbtJUkkond6lnvhm06vij6A1lguKA8RHE7Oy8YhdaPsmJnqcZx0JeuPYkRgPq1H0mwB4mwvQYP0GsJRH5IisCpv28i58tF9eKP1Soa3FCZWFkkN7++23S7mXod9Uw+IOSipsUdEsB5hKNHJEVk0x7eVd6qlfBQ5fF6DB+l2xYqU955xz0L4F9pF//ctDayickVWTSnt5l3rqV4HD1wVosH6zgr0zCo2sCkuvidgcd3TxhuTxiMOPsHuSLvLAu3guQIP1q2mm40WhkVVh017epZ76VeDwdQEarN84eO68eVIGLvo5NxGTA5hdRA+gcPoNCavFBWiwfjX0v11+zsNk3rnUzztTGYoc3qpzNRxi2r+ef37IdqgND/flhGy+r6AOQFPWr4ZuqfzPPvecjCPsIzvssL29hxsyMJ9+9pnFc0My/vGwogM2wubMmROSvPbaa90mDsK6dOlkv/3224Dm5+APCXpLOq53qad+syN5zBqs3wCW8ogckVVh017epZ76VeDwdQEarN+sYO+MQiOrwqa9vEs99QtgWWh2cgvNHr16WUrK9j6ovz0YC81+XGj27H2wW2h29Sea7ToqjmK/Lv0ISxZkbki2T+IONrXoNyvN2OlAigfMDcn2SdzBphb9xgiz7A6keMDcEOdzww3XW+4QQ0Q5pNiv3yH2gAMOCH049I4AkWv5ufj79TtYJi+4i+sTy9gbbrhB8rIJO+9iNNP6zULbv39/l0/4/1T8N9zocGh5v/76a8nHxRdfFFIP6NSi3wCRa1H8/Q/pb1sf0DoH4HqW7STUcyYpbxooQRJsatFvOkLK5UCKB8wNyfZJ3MGmFv2mMKYdDsT9fvHZF1KngwcPDkC5SWT7JO5gU4t+Q2q5FgdSPGBuSLZP4g42tegXaL/AbiYHnCGDh4RM4KFpe9DBB+Pk5aHgl22JkvBB2T6JO9hgIT0dsD/6YmSKZs22vXv1lp1S9XZxQkz1Dt/ckGyfxB1savFf9rfW5AuRuRYnIhxkuRjRXhgFB6smFTxymEoCEWxq0W8SOcfmQNKAjRo1ktMjAqdD8vk4iNewK73rrrXsf/7znyQSgpQ3ZQK/SmfBxc7FolC5Idk+iTvY1KJfTSzP14EUD8iQWbNnYVe3l6ebbNjEHWxqwbdMmTK2Z4+eeTA7LweaEXrNx/80qSSBbJ/EHWywnHX2WThNLU2dDR5Rxm7Y4DcBksR+Mv9PogQs3itxB5ta9JtEzrERZNasIqnfETjhiM3AgQOlj7D+1Tz++GO2Z8+ekOKZ770SJMGmFv1q5DxfB1I8YG5I4vPkE09K/p6AxAZNCFGLfvPgVS8HUjxgbki2T+IONrXoV5Hhe/ZZZ8tCXemCp8kbNvjFWQSn1twksn0Sd7CpRb+aWJ6vAykeMDck28e5+/XrJ+OLlEtB9JsHr3o5kOIBc0OyfRJ3sKlFv4osz9eBFA+YHZLMO3PnQwFWLf7LuRql4C66+JKcHDgQ99u4UePA9xVQk1J3ROXeK4EINrXgO2rUKOkjTffaK0kCNog64xChmYSNGjUyFUbHEUccYQ877LCkTwUITVw9EnewqUW/Cprn60CKB8wNyfZJ3MGmFv3mwateDqR4wNyQbJ/EHWxq0a8iy/N1IGnAeKHZDQeXfDazz8H9/Ynm4TjRpOgsJlIiOosVabv2HXzSTEgTwzeyKm71cm516Veh0t8QKpbgioDUj9/IHlkVWL2cW136Vaj0N4SKJbgiIPXjN7JHVgVWL+dWl34VKv0NoWLJyE5T+w7tIyCF4DeyR1YFVi/nVpd+FcraAQMGSOfcjEVlCBVLcCXAAYJhGo58li1n27dHPtUrCnWRNUC/UZLeisewJR+XXHKxTycfrPrxG9kjq6ZcFqel7VP0yhAFVKj0N4SKJbgiIPXjN7JHVgVWL+dWl34VKv0NoWIJrghI/fiN7JFVgen1JcSfuSs7ePAV3lsBFSr9DaFiCa4ISP34jeyRVYHVy7nVpV+FSn9DqFiCKwJSvwzKNkHoRcqWeAdY9XIe6tJvAEtZQqhYgktguOvboX07D88wDcc3smqC6uXc6tKvQqW/IVQswRUBOb9y5cqCtqO8wPvGG2+U+hg7dqzAp2OrS79RkpE1hIoluPJAMEzD8Y2sCqxedDdpohOO2Fchk28IhYUTIC6cR4wckQCkECk0vpFVgdXLudWlX4VKf0OoWIIrAlI/fiN7ZFVg9XJudelXodLfECqW4IqAMrZ8+fK2NxapP4Z/a/O/rl262hrVd/Z5Yd40f/hGVs2sejm3uvSrUOlvCBVLcEVA6sdvZI+sCqxezu1c7dq1tTvttJOC5HxDHLEEVwSnfvxG9siqwOrl3OrSr0Klv089/ZTlSdETj3OhmQ9W/fiN7JFVU1Qv51aXfhUq/Q2hYgmuCEj9+HX2rl27pMXiPbRCOqe69BslGVlDqFiCKw8EwzQc38iqwOrl3OrSr0KlvyEUlgEDDhH+k2xIE1Yh+I3skVVTVC/nVpd+FSr9DaFiCa4ISP34jeyRVYHVy7nVpV+FSn9DqFiCKwJyfpMnfyN1c/HFmKsxHwqqX+cLvr+HbdiooXcxmQiAziwTQsUSXBGU86tXr67gnzZtGsLg50Hv+ufdbr5zxRXqJXEpbbfddtvZMWNGR2nlWgNGsQRXBKh+/Eb2yKrA6uXc6tKvQqW/IVQswRUBqR+/kT2yKrB6Obe69KtQ6W8IFUtwRUDqx29kj6wKrF50t8U8vIOcaHaXg0uuK/vgRFNFZwsoS5uxG6EMyEIR0EaDTofnTd7F+J82bPXcu9Lqq9+sOLjE6x7izboIDnBul0h6EjV//Di1/BDqq984BnD8D+HfgIvnUydPMWPGvG9OHTjQlC5bxnz66Sembeu2Zu9me5k777wLmbdm1912NTNmFJkyuFDLy+q7QPEH7u2YxUuWmEm4uM7HUDdCO3DHjp1Qt1pu/Sblx30fM+GLCaLQ4c47/m5GvvuuKHoqhFzRxg0bzWRc4H7//THm1FMGmjJlSyOia90vJnxhPv/sCyjrqWNwv0Xwf/LJJ6ZNW+SzaVPzj3/cKbCtWu2D+t1svgCOefPmmgEDDjUfffSxWbFimenVqzfoCTi+mQwc75vTTh1oSpUpa6ZOmQLlEk3MRRddZE4+5RQzbtzHpmH9hma//feBxqrSBqdVZtz4cXiPp4zZpmIF07JlS2hBzpj38NxO6TJloD650OBuBfAb88knn5q2bVubplA+InkCQbXaF+mgGBCvNKNRtoEoG+6OAdrR3/Jly8zYsePM3DlzALuvaQHlSE4Jhqs/iFsYTHoNTplN5UrboDwfmdmzZ0s+IEKWov+VK1eZN998XTRtNWhQ3zRq1NhgoSJ505+Y/tj+Y94bbb7/fr7Zp1Ur06hJ40D/69avQXk+R90tN3379jWzv51jxo8bK33n4IMPNjjhcNn0CeNOCepuPNKaB58Cc/LJJxucaJqrr75aUcs3xk/uvDXLTwRffPG5mTJlKuizPpQBNJM3lOIMZOPfBAUdo0ePMd99953ZB/XfpHGjVP0z7rLlKNtYlu07SUrLdhXKRgqlohTc2zALFiw0hx9+KBR+fG2WLFmMsEKz5157GYjbmJkzZpg5oEmq/qhfvz5ouAbqzykCYbu98cYbclG9YcMGplGDhlAYUhb1/xnoqY1pundT9MV/Atoa0jjbZNy4cWabSpVMp44dJU9UTvTpp58Jrffte6D59tvZkucC0Ge/fgehHnD5HUbL/83Xk8w49PWK5Sua1q3bmGEPPGBeefVVc/nll5oB/QegCdP9dzxoux3zorSNtFqCZv5+++3mkksukfww7KOPPjAzZxYZTK6F/gRp9LN06VLz4YcfykPKzVu1NNWrVXehQJfNf7/7br4ZCdrv0rUL+l4l89prr4LHdJT+z0jMIe7Gor0no70b+vamYjG2ijV77LEnxo4M+t5kuJ1h+anU5gP0xQqov149ero+gsTmQ9HE1VdfZe65+25zzz13mWbNWpqdd65mdqu1G9KYCj452px66mlm/vzvUcaZomRgM/pQnTq1ofSqjtDdggXfS/+rXLkS4jdXtJLPyVOnmPq714c/6bJUaH8B8uUn/yuQisjAuxT6eQvhP6VLlzVUkLfTTlVRriYGooNmKfoc+U8ZaNXbf/8DJBmI9poPPvgQ/KrQtGzRyuxcfeeQB9whNmM/HmsqV66MeuwQ8K9Zs9aMGjlSyt+oUQNTvmx5M/TKweBzBeaVV16WPlShQkXTpUtn8ypoZAZoefz48UKvAw45JPSx4vhfWfAKNUp/bB+WcNLEr9B3vjAVKlQwvXr3Fh6HIKG/Tz/93EBU1iwHvb/88n+E/g84oLXoAGF6AkaLN+T7n3/+KcaJehgnGoBOauIN7s3mayiL4bhz/AknSD/H6YRp3KihaQ76DYrofP2Tcr5AfqZOm4x+2gg01TSUT/HgDjBoAe2Euse9UfTvHSRo0aLFMn5UquTql3TIPnnYoQNk3HzmuWcNJjbCQ9etXWOmFxWZls1boE+3ksKw2Rejjca8Nwa0VWDat+8kvEPxxl+I6JkZoMEyUHSxCeNanTp1QYO1pS+QDxVi0KlceVuhNcbj+DLmg/dNRbRjr169QPNlQ/s/88yzUs+PP/GkOeboozCmTwJtLUasUmbPPfeQ8s2YMRP9Zg7SLTS777679MG4/r+Qfki+u7vvh6UQn7XpDPvpZ+DNddBPIGmQ4n8CEdU/62jS1xPNZ59NgIIi0kUvU2mbSpoU6vRT5PdI8OXl5j+vvAJ/axxduH7v8Ca5Y/2Mxjj3Hfptq5atvEKr4ud/3837zox6d4Tp3Lmb2Wabiua1118zHaDBsiZ4Ng2VOo0ejfS+/97su88+TjmVhBgoiVvj+TDHTfLhZNw8qN/B7okFrOqZZ+X/EyZ8aSZMmGC2hUKjO++8Q/piBk/6FRSwDh3kVxMngbY/E4VNbL9K4F1aQs5R2B+p/Kxnz+6g8e/Nu++OMrV2q23atW8naUyfNs2M+2S8qbJtFdMb/Yz0ofg9EuG/yn8KCi3oygqf4Lzp/TEfYN5SRui4RYsWoviN+ElXjLMN2qdnT9IV+7or33fzvjcj0de6dumM8G3Mq6zH9h1E4dRU8Oz3OA8beKrMJVgY0j/nl6Pffc/MX/Ad+sV+qFuMx95M8XM1SJ/J/OLjsWNNI8wH98W4zfcSnfF8H7yS84DYcBx/H3NdvqvYCny16s7VEwr1+JlzV7Fau0kKl19+ubn++hvwd53BtaBQ/6NHv4d66iTzyG++mYQIrvzPP/eCuRhj4/Tp00IiP2f8i/tPSCCy5OaQgeqr3ygCQ/+H1h/56G9L9Z8uSVLStL+W2z9vUgoaZ0s7TbOFaHcq2GL7l8b4KCeaPOrUE822QXQ2Xq+iyrZgFFLuzwJOvyGKAgSPtCUVHBzBkgbO41JIxavfAKoAwSNtSQUHR7CkgfO4FFLx6jeAAgADBvs2W0buBECbpojzoNNaTGLFjkWFfeP1N2xtrzRn++23t4899pgkg8HFYhIs8Tt16pTcK0BojH/58uX2oIMOtnXq1LHnnXceRNN2BV6ZyUK78GZJKzsvjL9kyRIRS2jRvIW9AHL5O+64g7h5kbwXxI6Yz0qVk3wuhbz/LjVqID8FtgF2tHhpnHaWD4sgKS/t/Nuwzt0NxSRU3DVr1rQ7oGyUs8dgaltDYREvds+dM9e2bNFS6ql1ayc2iEm97YzyMp0au9SQ/DNPPZAnKs3ARMP26NXTsu6WLl1u6+1eT2AJH99Jfeqpp+xOO+xoTznlFHvCCSdYTBps586dBS/LT0UNml8sBOz+++9nq1atKn7Ew8vmau666y4LZg6RorMsFtXsw/bFF18MdJ/d/vfdc59lmS+75FLA95K6pLIbmtWrV9vtUBfE3RoKQP5x5z9sJaS93XZVxA8DlaKV7/PPPw/lFtvbY4891vaH6E9hYSnBT9FZxavfEBEF3JrlBwO3WBBbiracccaf7I5Vd7Lt2rWzK1asEpT58FP5xa671LS8S8o6YJ1mi489/xzKtt329jiUjeLepA3WyxAvFvz5F5/LaQ/9unZzd9huvvkWuw3okn5vvPGW4P/Xvx6VUw363UclIL6D3O3b7Sy0W2/kgeFsN2jtDX0Rkyyh94MPPsiynZkH9lvmm4btxfpnXCps+cc//mkrVmJ7bQe/AhHni8tPJU3VdqomfXGvPdxd6YMOOkjK+Morr0iaPntipyIr198KQduuv/UDbVNhxY03uRPNhx56yDZu0gSnDFAsApzYtLKYEKba/5lnnpE7K8cff7zt1rW7SE48BbG9fOZu3PPFhqCUafAVgy20SoqdbUzDe26079WU7X2G1C3be5VXxsD8Q0MqFNk0EniWf+HChUIT3dBOF15wkfSlFs2aB771t9tusxS3ZT02a95c6v/++++3u9dL80mK1To+Y+y2VbaVu49EwnZlPsuXr2Avu+JywbsEd9/79O2Du1dZ+fR0KUDRzyGHHBLK3aNHD9xnn2ehoVTaG5NeuedHcOaVvADa9OxJJ50kKTz99DNS/8cff4Lt2r2b1O8TTzwlYcOHPxxoV+jGNzAVwZEfE9dA8CGeoLPer8H9oqOOOsqJrAK2Ak40e/bsASmFwVDkVjG0x4BDB0j6W+J/BIjpj+7Fi5ZIn2sOHQF/+ctf5G7aNkiXPIFmZlGR1D/prQLqk/TH055wd1ag3I+OE81b6Dixk927eTMJbN26rbQnedJd//ynrYHxgaJuHH/IxzZucOMAgQNNgYecHtHUStxjdCZj/4V7jOxXZ515puWd7ILCAnvzzTfbhx929ev65WXSvYtQhh49etkKFSuI8juKyurfdtuybxqLTQ2ftrWP+rTPRNq9mTba4eabbg68IrLYV0GDLAv5PO8i8/4tDRUMVamynS1XobzFxBiiuYtsW5yodsX9Wt4dJc00B23r+Mc4T+NEk3lR/s/ycPynH+/GsjCPPUr+taP4Cf9iRJiluLMs/VD47hm2Kk5u27Vrb1escnW2ePFS6F7YGzhb2PNlDN9R6l/5n0sl+V28eLHQBfU1KF1gcWyfFrrIWNYp67Ay6QKKc3pinKV0VDZdIMti7sE4t0vNXewl0TgnPF4BEtQePuI7oHVoOZYyHyh8JyMKk2Tc9GMG+5+OGeTDnEOQ/x3Qhnz4H2j3SrZKvnET+Dkv6hfNi3ZDP2Sd8w8bJJKfxYtQHz172eZSH+dJP2H/c/WBOdLSJSGPnTB3uPqqq0APVWwF8ArSz/Dhj9hBpw8SmtAxgncHi6t/tqXyXc6FaJZhXsVxhfkiT4VGVwtN/Y6Xgs+k6MrfLb0bugxcOgX2Ckg2MU+Mz/TdXM/x9g16FxV47sN4zLolf+rp5yRyyu7bSk80U3O1UoWWSpRiJTw80eT8jybj45I3UumVjD3g/9hMs1RcWJzx0Vywd0yc+KWUAYcNqWgcu7Xdvp40ScIYhbz8yiuvdm54/JzxLx/+YhstlRvn0Phafv0GUAUIHmlLKjg4giUNnMelkIpXvwFUAYJH2pIKDo5gSQPncRGSorPtO3a1nbp1t92oDCg+0RxwpBed1YVm565eGVAaiXN5v5xS5MGc8krSEht+Ep8UoDhcWBoi5fc7xc97AI0aN5ZBNy4dB/cuXbqEimDYtGlTMQkpb+ti0kWxDi3/VVdeaY+EHPqWDE6AZALEiR7Nxo0bZLAJDBWJkbFCbb0tBHNU8wAWV9iCsO+MoBhbxj6HS9kdOnSUYOLfBpPprsxnVP94c9ViZ1c6/iGYmODkwuK00q5ft04mTY0hTocNRUmDP9/4hWY7iODyrh3N3//+d4l/4oknihsqtcXdtWtXcfOH90iJvz4W6zF+LnzjuiMs67kJ6zmULWOh5l4WdzdhUGdlsjycrHCictxxxzGamJtuvklw8xL6y34R8MAw1AsGs7/89S8OCOWvWXNXq+LO1EpK5SUjR430qaQ/2HWVCSUXhsRLbZRcDHMQUbMBEzBOYFj/h6N9l2JAW75iBRRx7CWTq+Uy+cpAEc5kUa6Ek0uNKgyVbTt4yODgl7Zs/fIfffQxtn6D+mhDp4mVtMJJ2N9v/1satbgylpsFnFQfgzpgJfCODwfAPaI6mMyyYTKDk0vEYk1hUvbMs5LuFXJH0/m5zYoCe+BBBwoMf/785z8L3PuR2AwncMzTo4/+K8DtgoG1PSZm0g7IA9Ta25EjR4bwSpUr287SFx0uBjzx5BPS/ldedaWDQzzeW+Oih+nzXggX3jgJsnvtuYfQ3Uq0Hc0IiISybSjySrMG9VAe/ZrtX5xxmDOygdIZoow06neTF52tVau2HT1mjITdeeedgoMTDDVc0FAL7P0P3B9iN23a1O6Eie8GKARLSqcxLBR1DUN5CrCYKm1HjHjHcoJEDX80R6G9d6+/u9OgivJre9/+99tDAk32aGIbNWwQ3EOHDpX6wQ6z+D3yyCOSz6efejrgv+3WW8UPJxYhnuNNjVCPhcFv8pSpUEZSaFtx0gH8alrt0woT96fVaY85+miLE+yg6fW550GXqH8qhqGRmPhJUrD25JNOFhi5JwqY1dAujJNVLBKqhfuJhD/0sEPt9diMIv6JE7+yZSHa/IDUL1O2sglYDRsu7Ms0nBCTPq5SuoEf+R43Mjbi+IKG/Jz5exQLCzXEVb58OfgX2HPPPc/+gD4GaRapf27OkLeqycf/NCz5ZuzRqBdO/FZwYwAIVq5aZUkPTI/9Tg0XHHXqUqFTXEPqcn4PYDOAeSNt07hxooPY+cMJM/kqF5bMO2OfffbZUs7zL4ASOCTDlJinBmgrPHXFaJ6mCuzfpK0yFlI0aPPSWIRfI/CbNm2UhdWu6MM0j4f6vUrc+sP23xNakBOTkU0J1vNDw4cL8vGfjJfx4NprrhEw3v2iuO2u0LTpSul+NQ26cJIv9dUSC+zY4IQ00OCVpHngmTF9uoA88i9P855GmQ7pnzC6YCKg8C/4jcH4qfiFf6GeH33s0eAn9A2++cMPbuzMpm9ukDLtkTKGo05B/x2iazmSNn4cDiv9hXShC4dVWLztBbrACb2dPGWKlIE/TbFBUaduHeeO+l8AgGUtRBfLo09wnKPhuEieQZF6Ndn46S98B3nGyQdoaqRsurzzzttIbx36WHl77HF+3MRcg+M/x3Y1nNvIuIn4VJS2jOMmFpR7QVERx/8VK8mHXWk5L6JSqIULFooPF8tcULK+9O7p0cccIzArJZ61q1atln5NOuTCi2Yt5i3c3GLfPmXgKTKPwYm3jNOke24OQfICcVcJj+jRo7vE40++8nP+wTy8/PLLAkcYSDZA8U1T3EncLH5Dhjo+IXSFehVeCvxPP5PwvmEPDpN+x3pk+wv/Bh+nfgzO9Vgfip/jEMdjbujSSFuxbtFvXG1lpP3ZzznP+WHNWkLZO8JczW22MS7nMdTsrIaKo8px7AGfcCYjvIabLuvJG4HA4dAY6a/ipy/rgPU8fcZMuDIWElmyCc8xV3jr1a7vc/wtX6G8nVVUxGjy0sHPHf8kIn5i/Hn9iqF/hc39uhTpLzb8JD7FQachnMv7/Y/ib4u1QsdOneXAsgfvaHKhKXc0B3its/BQrbME5MpUTChrsKS94dIyC0QazKURfrcYGKBSTRCiBIvAxa7fG37utvMkLTbphWZSOoh9Ogb00r8FnLvB3F2CSFiInl3+ed/NlTg8dYhNvrsIzEvpMkleqBaajJI7xxB3kwkpxCeQjMsTJ0hc1CU5dO3PU0EypK8w+co2TAtihCGNyRisiePiiy4JoNwh56kRBzzFRSaYKMNwGBs1bCQL9Rg/REiSPEUBDm9StkGDTpN6+fSzTwNeLuAhpieKNzg40bzgJ6Yc5LWgEGGSuCedcKLAEA1PcyBCZ5999jlh0mSEa/zgL0BZP1Rcw4kTDQehzp262DI4hYpuzAoz3h67sTpRJf5TTz1V6quoqEjinnaaK8d8qPqmYftDDEjqnydRxZmtWf4ZRTOlPpph53zIkKGyk8+FCAfL4084vpgsZOxwTPI++dTVAQfQzl06uzrwRMyykTa0bCw/y6aDtyYMb8F1CJTl+Kj2Br8A++jjDxUMJwZO6caTTz4FP8biRB/thv733LPPS93PmDkjbHgwHOLSycaFi4LT+bGC79prsDMN472xudBUdq7ZXuKHn1NPO1Vgi4qKBPYWnLaybzz77DPi5k+7tm1lEbUBk6Rco6lbWZC4TZTET+9o/vvfjiew/LzDQhxnnJ70eZ7Ysz14v2YwFumXXnqJewYHg/bMGTNy0cIH4ulS11SmIMajLUIdMS28j2mHYmF0GU5uuEjgBtJxx7n2JmiTxphw+J1txp/z7RzL8vNeOGttBCY/nBzo5J4wt96WvdB0SKX/YnLnjPM7pP8hko/PJ3wh3p9DC2FD8AROkggxE32Q6XPTh4tcnjAxn6yb448/zqeV+/kG6vRZPp7UaOs6nmbQbs+KHzftdoQ0BBdoxMX6Zfkvuoj1O9heculldrdddxP8EHUVJOPGjpN0r70Wi1NHIbJZxkmwmrcxoSbuK3DfyBlXVt7RbI7T39jvuGOOFdjvfd9nWHH8z0eUz1yc0jKvPEWPjWygwT/W2toMNF23LheaMC4rsUW838bklXnui/FjzhyME6B/bgQoPCf0DOdJjJqvvsI9cvg18BsRM2cWubYCD4nbin2dpyA0Rx15lMT5BItCNRChtR/hqSGa8eO0fq91qH1+udDkczuxed7zdS78aI46CnSBsis/oh/THvvxR7Q6k6f8PDVhOShdRANRXTmV9yRu58z91t58C2l+s4QLzYP+rrnmanHz5xksOkmT3MBSo/3644/y8S8HVzTT8V1qEGWdXYFTfCkH8nMcTtVZCe/4tpEx3LcNRBqBJhRGUdq58+bK4ihNFxlsnrjF6oUXXOhh3UZq3TqOLuKUlP+KH36GPzzcjvfjHBfv7EdlypRFH3X1EZBHFvId1qnjO1HqTI9jhm9/GTeRHq7QSJ9nEsTPDZMq220v8xVNluMm0ywqKhIvXO0R9xl/SngkAyghQDi2F+c8lHAN9eGzMgybSYTR+qA3aaw67jLjCpOkTz9KQnBhHRue5teRevOJxYHeTlpi+lT+pu1E6Sx3h5dAGdGuKrwUBWZKpCv26auvdhsl9HvvXdQj/AL/ZlRv+vTpLQt5dfPLtlL617YqizkN+SkNrj1JviA6K27+cK4GEXY/V3P1z4VmA/BhJbH02DMYYw94o3+mjOPtlk1UT7BysUyecNNNN0m0W9C3uFn3/fffozylZCHKgHvvu9926tgpJJ3Ow08b/1zkNP4cP3hEEEJ/hBG/OMBFjH63GJgfLkQJFoGLXb6p/ifwUxKWz2NSMpbryeRE8zAsNFUZkJ5oZj1vEhcqqg1vdaFbhkliZUOLO0/k2Cu2JympzYVuGUZhlUASaLElzgAYe8X2ABAsLnTLMAFYiIEdXheaEg8/6YWm5lMXEMZS9Izm8ccftwdDnDAxufhxp0eYwzV+p1ZhDw3KgBxjpD/FhcqEyRxPPjfaLiAUMj3u1p9++ul2GU5p1GTnU3PaCZsTuIekYKlvvOBjbrkrSMbBCbCWnxFUJHjJ4iXiz90piuy4ErokuSvXqLETzXM+PPWphMGsi3NGvzFeereFuAfLtcqLGNGPaVOUhv4UO6R54fkXxK0TEsJQRIcTg2OPPU5g+PMSJvq4Fyaw3AXE3ZUQVpzlueefxyB2oK1bp07Yhd2I0yU1nCBzMI/LzBMA5m+63yHfd799owHDQU7A0xKEKf5Ec+uWn6K7bEPSMkU4Hxg2zPKU49777g2TQC1T/GVuOeE7GBPeOqiDyjjBZTq6sMbdD5wYYKCLIk3w4jNDhgyJfK3E69+/n/gRXiZqGGSdNlYHSrFA1suTfkJHuH//+0W7LWiV/tJuL6fbjZsp7kTTpcE4uJ8J+AIZ9Jyv++VCk5NywqjR9nIKDKylVlXiug4DpoPDpA0TI4qMijuO7BNRL6FtOV3V1BNlQB99yAmxg1y4cJHg4CJXDSdfxPvggw/K37AHhqF97pMTOD0Ry8avE75bISaqhjBsb5a/T5++9iFsmDyo7Q1xLb4vqvnliWaDaGebaczDEwK4UyonTLXR5szT5ZddJskz3m23ZC80XalkEwwbApo2I7zxxpsykaKIH82ppw4UcTmFef4F5hN02buP0CVPSrirTpHtsSGfCu1rzzs7duooG04UWy6aNcvuCLFFXhXoDhFXGopn/+lPfxY7f9iGWr/DUMc8SbrvftbvA+G5EUc3WFjjRI6GqPZD/6VYLHkt3S885/Ici5XRPx//O/PMs6T8nBA7Uzz/8wDyeeutt6S//OWvf4XbFxg2PhfA/hcm1vDjZoI70ZSoEbRz8xf3rEWyheXnqcGgQafjzbpknNATYk5KY8PTJMb5AfzU0RQWq9pWOI3RttKFJPk9lR1xEpzPjPUbQNf4DSCFwb3cnIXmC0LDBidBDwuYpr3ZLxQ0Lr9JDaXtDHvjzTekDH8VGszIRuCdENmMDcWvSfNc7JLPscyXX3a5TzfjF5pGTmQVmS402a8Vf8K/npTkpc7A4zi2DQffHQZJG9YZn39gP6RJjeFoG47huonq0tXUrX3T08VfhS4kuvyQLrhgIV0oNJ9lI69Lm+wUXSivPzAuy66njdAJEcqvaUhs/AjfAb7bPN9RnISjneXmwkvSqwIpEtSnE8F2kFx4Z+ftAj9uBj78quPD8YKfsQ89xC80sRBmP2Harp8Qu8P/GesD/I/XkdTwJH4P8DsazS+vFdStV09B5MsxDTo2xO7gFNrH884DcE0IehggIrsI2qpn42R9VxkXE2jPS7FhSLriHIJ5vQy8VGHeG+0W7LfdmvBvzUxf8G5KqiS5dTbyH2mruklbyakjICnpQBxOGZCm5Bb25BuLlywWT17hiE80m/IUEuE69pAn3o+F4P3CG3ky6ozkWzOvnvjGXtP9Jue+++4np7u1ateSqy4Ep4Iq4pmCDS0qqeTCWc0vGf80bow/tmt48nWhW4YpHlri5Ykce8X2JCW1udAtwyis1msCLbbEGQBjr9geAILFhSoMTzTb4wClM14vSS80B9hD+LwJV57de/aBbC2eN+nUNTnRjBJMJ4kATT2xBGhnCQBZ/nRqmH5/LIae+0TwwRosWXiK8///i98tgEr5vLo8ugVc11ArcUE6duwonWnS19/IncF3R73rgkPxgkX83eBUgJ123Y104E7rbIHfaXVx3C4XTxud0ZQoxtUQj4azE/MuKNuLYZV42qOLOgVGSJcunTGgVPGp6Edx9I0WRgnzEq2zvsTcQdtxx51ErE9juztKPb3T4cdFdYjm+YWmx888keFkGykbdufU6KmrW1Bq5jP2xBNPknJ+g907+vLuDcv9L4j5qVm9ehX8uNA8Rr2EhHmf9OSTT5KTTd5J4i5jYhQHQFG+o44+CneNtpdJL0VZmBbxUARTjRsw0wOVDphTp00HWMZSlTgnAWt+UIZNMT4uNAvkZEXTkgwmDtlZJszWKD93mZnWoQMOlTxFaCJrUn56sgW5+877VnwbkzvcxxzjTpt0oUmxcqarItWMx/cZWU+x6Cz9CccTLi3njTfeJHBQ3sRgmIyldkfC6ULT+Vv77ZxvcU/3ZNkRjduNOa5UqXJyoukjuBNNLjTdgkG8AdxMJl91NFn5uvYqENF3enDHcb/99sMd3O2wK3uznIRRLJOiqZp3iZjjijegEv534w03Svu7hSZjZiwUmkg5Tx2YLDRrY0AmnVAjca7RttGvg3hXThYguvi3tPgzT+NZj5SKCCZEDZYsEaoMRHtHQxyxqohQcid76lSevHJydKlPJmNvxaSIfqNHq8igC+orkhDaf135STP16taDaFs1mZDVqF4DIn8UjXPG0SVPJrdEl4TVPOvXgkZIK8Zyx5wnlBSR5ekVJS2KimbipKKB9DOPytauVQeLtALRiqx+6W/GQqmZ1FtMNxTPJR7eP74J923r1dvdHn744TKJSnKjdzTT/O/MM/8scWWh6YGL439JGTmRf9cvHHSi7CKzXGxXKHqRrNO3uAWFi+GREhrWxx59DHdy68vJCjcb1Zx88imST95ni82uOPF12mAz9mHhIdpWDipKXTzqYdLOuvrhh9W+xSIIWMePGy/h1113bYwGp00NwiJAA9zCFm9XCl+n2L6m7URQCRelrtH8N+l/5OUUe69WdWfce10sp1rx5iVFwB3N97Ipmr/cba4wwaB19onHA55c/uXu1LP85F/Mm+uHqDPe0w2ZDZaQFi28LsDTY7avG8PjYBdH6ALhutGgKRUVFckGhNIFkVF0tm7diNcpcJIRN84dpePcPXLl5xh/Cp+W3tDI7us2uArsbVl8R8ZNSa8KFtP3Ye6yCWMGxk3wtQ3rddzE9QecitcFX4jNBRecL3DTZNzUuuS8iKdzCX7yCtYxpS6U/2l9aHpJPzlCvSDC2wCbZ5RM0LQo5rkX+rPmw/lzgaQLzRA5xEniPvzwI5KPO+/8h0hiUAQ7MRn7Hvgj7+xSHF3oaso04T8JL/UnmijL3/7GawJJ2kzHbdzpXI9hHI+PjOYkEK9n3YIedDxOFpoX+dTQD0D/3ISrulM1JguTkb5GyRI1UNQmZfkS85L8RvOmXweVdiUxuTnHfN2Ma028v09JNGbowWEPCp4zzjhdxm2KKqv5JeNfcfiJzIVFEMEaLIraf4vzZ7CG6ddFSbt8MvL5feCnJKzTOtsT60m8o9mXWmcPgdbZIDp7oKxAO+MSZweKzrbr6EtZfNG1GtIQWiH5ogPSA4NWs0yWR3AGSxZ84kxD/O/j5ykitKsmBYCNk4W2EKcLJhQqE3Z+eSG6RdbdEMIHUImcTG4o2hkHdvO7P7z3p/VPpsXL9Qp4Oi6x8+0kxuMj4C1aNpeOvGjRIkmdC+JUPn1MLoYZxoip/MAhOHAyIInCzXsfZBoXR28z6aVvaDwUPEyE6bVuc4Bz8xeZJsPOZtpUopDkKcEveLH4U3Pl0CFSFu4+a/kZxgUoTyZ11/y5554VOE5aJc/45f0VDkYUw6OhqN2gQYPEzvLy0jnDzzrrzJzyE0jEXBCuoq3EzzuOjMN7LYqHAxUZZJJIxnK3mXDQ1suk5HI/3RRzpiF+inzR77zzzk2iaiC/MFuz/GPef1/wVatWTe7ROAz8Tepf/Jg5b0ZiYcU8DsbJpNa/iDVi0sA7rDR9D+wrMO+8rQv2TFS283xK7sO0KGqkKG691Z2MvfHWmwHuPkxOCOfuimTsN9isGYQdfsX/DO63cNLCdlMjfbGN9kWXOp8SYTrxvVjCs71q1a6tUfHNyG446VtEzhGdd0eoFOLdUSPtvffca0eOGoVTBwyUKaOl8J7eWalyFl9A8PXXu+dAVDEVQakYhvnj4llTohQE/fRuolCKD9TyJ1lwAaOQN8a5FaeMzjh/aI0Wf7Y3+UJsFB/9GjVqaHfHwkMN78JSBNTdweP9YvT9Ak72LlEQLDRdu7399tvBj4VwvKkw8fM2vq/JPO6zzz5ot7NCeRn8/vuuH1SrtrPLZ5w5Qnp3vvLzgXLeIYJGW1trt1oivv32O28Jrv33319E5ePMaP26+4QakqZ/aJyV+OHOMfBfgUXsSSedgvtYrwhdUgQsZCxJRk4Ke/Tsrj7ydcrWjJ2Nh8jVFMf/JNyXl/ejeXeOor/00vLrApQTODV8EH3Xmrt6p09AA/2XfUjGCbh5j47jEttk0SJ39y0sNCGdouZbvGlJmAN5SoZkoVVT3Nw04LMEKePR9unbW2AoyRObhX48yu2Xrv53x4lmE5yyaHsz7nMQXSf+h7HQJH6eztPt0k7KyTIk8RL/GD/faGZc0uCZoMHEZGw73GcrX76Co3lEJx8g7CUUP/TJUWEUecRjuHvpDDdcXD9QZUD0v+/+eyWu41+kb9cPq0b9MJ3DjPC3r8HnaNatTdpmcVQubX+5N4+7wFT6xwWEGhHBRJ5vviWmi71EiZXC6DeJxXHO83h98xiBTnTdIC/g8R44QiXJjAJvZB3deustLlkPN2KkpjdY0YX0mHcagrpxs7a4fNQwbrqrP9Z+Ips+RsQuY/zUA0HcPPXlWAztwK6fCJBLTSU95DoNsNBwQUkaU3z0g8bglDQAA3l/t3r16giFwwPH+BmPAdxc5ThB/sMNNGhlF38Jxg9P7BJemtDVRfL0iINK6tGfaEaZ64Onkkr5+RDxjxjh6txJQTnAo2XjF+PxGsfjJ09xVwriE03ev2R96SYEY1I6h6LELAfd3bCOIMztsuB1eZPCOzSB/2iIhCWOyOkicAxjerxjSn0Eaji2lsGpPcMoKqv4Ga78+eeMf5quFEIcPsMhINeShkjz/yQdxgOkB87X/qmUQ6LBkgqOHWmI/7/4+byJnGh240ITorO9k+dNDkmLznKh2SWcaCbZTmxxIcWeLmkIzvZWt/vGvyEKLArl/BKsiS2GFns6SgjO9la3+8a/IQosCuX8EqyJLYYWezpKCM72ppt3DHjRnmIH3JVWGGohJDPi+z9X4g6ULuyIlXfZatVyd38eemh4SD9YNBH1ABWr2AAXS5xA3fH3O6BUoZTghcp5O2PGNLsJu4N7QUyKnVRFsbjQo1ICNbwEzlM4KmEgGu5ISz4xodN8bsKJHJW6UHGHKh9ifMJz8ebyUoC7K3Ppbb/GIo3lP/TQQwWGdyNOPPFEEbGZg5MmNRSbpfgY78AsX77M/hmLAQ7OzO+lOBHROtqtptbd+5KnxZiEEC/rOS7btOnTRXMllT18/908QTN2nFMIQWVEzmREfIfxKHqsrf7115NkQULtfhyQv4H4LzXw4dkTKSgXksybiv4wrbhZdCF6+qDTUO+b7UcffoDBfUeJw8kSNf9xAl8VikS4wE4G0QwUzUBbF/Lz5ttvSRZVCQsHMNbBFJzEcsJD/LuhbA89+KDAxfjpsTXLz3ohfuaLosecLC/GpJLiraIsBfiy8T+NxTjb/TQs0KFK3uLJDbsDTrGZhtaBLvK1bKznffbhbqaxu6IPPPjgQ75sGfGTuygeEZ7VEb+TQEsctN9Bm9Tympup9fEVnCRNBu1R2RAnvTTvjHCDbdJuGZlMub44BvcRh6KOFzstkViQ4qkNiccf115VbWWI2mp70Z+KuqS9IIZFQ422PDWlSC9FBrlIoMIKmuw6yvapuWtN9Lcawhd4N5J5oSgcF8ekA02Ep9Rs/+7dsTDxo9i/X3pJ8kE6ZR64IOD9r/YdOtilXuQpG7+emFALJ43SP08SW0LpDnFQhO37+Wzvxa695f4h62O9TJSqQBya9cG0KeJFcbCimUWiBOnUge6k64jDD7OzIJ5KmGHDhkk+eYr4BE54qGE74RvkTeyrmhO3qObdZk46uOEjiQCChn0TzwZJegcxn0KXi+3QIUPttVTiQ5icX/GQH0qBsO10EsWdc+7U04+KZ2Lzkq/filhUsH5Zfp6md0T9UmSUeJ6Wu3ikm1NDNqls53AoFaLiqAUQk6MSEfJoZ1zumG/i5HUC15yu/BTdo//7H7wfspKP/zHQpRTA7IU4yWH/o3ZbhpL/94NEAHmGKoLhhg+eDpFrEGuxSElqPbExxSNxEhLGCSDqgDK7cWKTINQ7mpygq6FWWUqpkP8TP/+1bEW+ZRxNSVstEpqi9m+aV197FeEFopiJiq/wLJG9G1pjW7ZqKeGsX5aJ9atmHWiP4prboxzxpgjFwQl7JbSEEj+e0PBp7yybWayDu+++y8YaLpNSJzbiWbBwgdA1aXCyX9QpfiohIs3jKRTpBwMHDhQ8h+HUevasImCGGDZOslnu666/QaMJ7dCPYyH514gRI0V/AMvfHBp9X3n1P0ILwnfR/6Ufos6WgCeQ71533fWS1lE4nWbbaPtr26jyKeef/PKEj3hFMypise9xA4904RTpYDMBdLE9FqN4viXF6wShIoKD4xzrmJuwHOfI43Wcw9MYdgkkLxLMbAVnhmOewjzwxD42VHTD8g/iuIm++OGHH7n0UH4dM9aDTrlBREmUmA8ffsThkibFYWmofE7F3R+GhMb6Devt7ZgXUTyeuLlQodKyuD7Y6px/8YoGxx/SHw0VXPGqEPvKBvR7Gt7V5EYc+R/7M8tGMWbO7bjxQCVLNPnKLwH4OffccyQv1D5Nk1BdxjbBIpZ3XWfOBF1hQezoCgqQDjtceCnhWY+sf/JvrVv6b0YZdN7p5mEQ35bNcdbtIJzmalvtIPi1br/+5mu4IbmEE3Smx1NfmatV2Vb4FtNm/XOBTIk2rX/ljTr2rEcdcfwjb6RSs1deeUnqbzhOcdMmznVS/nnzcJe4VKHwmPjUknEPPvAgyfOIESNTSf2S8Y8YYxPXfzokgiomINtb3e4b/0Zp/c7x80SzI9aPvKPJV0z0jubB/Q+1/Q7FvIgeVEfbGSvR9jzRRAQxWjtwxFUj9ihMQv0EJ6uuXMwUrEs6+zeJHgHnWJ2H/EZhvwf8XIS55w+MdAzebeEEhYbPH5DZUcvskKFDpONLgC/jhRdegEn5jm5XEAE/Vn7uNjdu3ETS5IXpE44/QSb4xM+JOJlvdl5eeOFFMJ3TRTlAG9xnpDhKY+xUUa07DXGe5xkh780MHXIlTicny6DOvPOPAzwXtTS8N6bPczCMcVheToqJm7uQ7qJ8HXvAAQdAK6zbhdXO/TomAhUxSSbj5CkTTwV6dO8mjJuTlllFswVPqDvU59ChQ+387+f7srlFKd6isi+ibDRU0sF7kNwZZBkpxsUBloyW9Hc6lKloWQowmFF1+adQbMBdTvozL1xUk1mXLlXGVq1WVSb3NWpUt8dC7ERObnybCUL5yeD+0gq7L8QnmQaZMst76mmnuTQxWeEpDZV6kKkThireKa57GBbjxCm4CwvtIw8Pl4a49LLLcM+3rGjh5ED21FNPivbg1q1bI89XJ6g9fu2TW6v8LOLcOfMs3lsU0ULJM9qeJ0y8i5M2gMZ/arvkfZW4DlSxESdsD2EThW3ATQRO1EphYKF2SaqVLyyE+nqU7ZqrOUm0dgMGddZVongoI5s4ujtNcUe8cyj35diOVCrFe6TcUKFGPk5MumFRVgPPFVBDIttN+c85nsap9ZMLlMug+p1pSBugLSgKNWXqNCjqqSwLPik7Bl4+88GFL9384+LyYbQX3oCECn4M4CijhvHLiQo3a9QofqV/+p97zrnS/qS/IaDtLp07hTRKFZa2z+CUhqccpHFNm/dj1PBuovZBKnDgpo/e5VIY/TraT/LI00lOENSQ5rt26Ry1N56cOBvtjcnU559/JpoANQ989ueTTz6Ve5Ksx9KlSosmRy4mWfeE42kAFwJccJJv0I9imxS3JX/QOqf2whdffMGTMCmPGnCPxhMEvTVr+JLGXBjF2alAifXPNKugbc7C3UadaEeRUlZGnz59hkh4BA248Lvzjjuw2McJ6foNDo/+Iox3kpWPsp9K/WLDg+Yy3MnTMjAf7P80V0BBEd3Zf6Srr7FoefOtN0UbpMalVmQaeX7Dx+Om4dNPPSP+2fyPk8q0QUbxn+Yq8DO2DXkYTyHIL776yilwmwJRPE7WNV/c9KJEgBqXhPvlZlFhQSnbpm0b4ae80hDuqAPELTQL8NREBZwsdJUT4obAN3LkSE1OvuyPrq0KfVtthxPCM4WmBABp8fkQ5oX5oqKW/fbbH5tmM9AvUb/gC5pfvK8op0DbYjHk/Bz+j6Hc54LzL0j1P6f0CSeGkrajR/ITl/a0JI+uuJoVfJ0Hf48+6hh5xsgBw8fT30MPPiTjCxXgVcP4MBiaoKtCfJz9nzTPTQzNM7+6qbFpU0aeRKEf+dcBB+yPe+8PCF/v2bMH7rcNE/ysM94hZ/1zw4ljBSUy9NmYQaehbRC/DaQy9sZGhWsbN4a7vOb+ki4qViRd1BdlXqSLSZNAFyjWtKlTZfxlvkjjHDOpeEVpKi7/CkhL7buP8vgdpAyn4d64xEWeuBDKNlRayHD3h2fSIO6rGy8cN/fzYwaf/2qNOgljhimEArgbkDeOmy4+62IVFoOODzva4NjxMJ4aonHzosYCz3GAi0umxz58wgkn2vHjP0GxMtJPOOfYHaeWnAO1xv3JiV9NQgoZ1Mc0/xQN0kf9M+4KbBq5Z1ZcPrgA5QKV7a95ozZz3dCXzGT9kHzY/ylhFq5/kNC8eRDjYwXyUo5fWNAOvmKIzD+YfpMmje1p2GxRXPxyg4z1uBCbItvh+R0df3TeKW0VjcccL08D7TAux2O2Fec+28tcbU88mQPRaZy2ylyNmyvIG58ai+tf+D7qkOZe8I4w9qBv8VqQjj2qfXwoxjQ1vvtI/asfcajheH2FFz8Xbx/GBfPuu9cLz/bFcX7O+Pdj+B266Nfjd/mDI0lAs+y/DMvyyuNMokfAOVbnIb9RmCBIEshKHYAp2Kxg70yiR8A5Vuchv1GY4ue6sQN0/DhlQH38QrOfPajfobb/YUfaAi40If9usGtkMhvxxaPL749+13VfcJfEkA7Vwz+AG3sFwORxXOl6EiUCFGvkDqeZQR4AAEAASURBVPGyLDkgscfvD/+6dRtMmbJ4xBQse/PmjXiAu3R4+BYTLoM3Ik25suWSSvDFxTtH0ia33HwTwn56/c+ZPVsekd4eD9jjzU7gLmuw0JF2Xb9+rSldpiz4T4E82oudPckLFD0YTCoNduFMjep43F3RSa6smTVrtsEEXR6g5rnSpvUbTCmWyadTKA+0usfRN6xbh8day+ChbeLYiPTxuDD484LvF5hdataQh44xiTa4n5mUObJht9B8i7xAnFQeGZ49exYedK+OvJUHVNL+s75F3TFPvu7Wr1trSqFspZAn7DTiMW6WTR+WN2bpkqVm+fKlpg4eGsegHDDyoWQOT7g0j/xuNhID9QIV6oIfHUr8y5VjG1mzZOkys2j+ArN7w/p4yDt5JD3kjSn7NsSpkCkqmi35qF2rNurEmNmzv5XHucGsDe5FoD1IG3igGo8oEwcUBZkC4Mdg6duoEPFLS36xy4x2mmca4kF6g3As+vEoemMJy4c/ZAQQW6v8HGnXrv7BzP1+Hh5br49saF3m7/+ZjDFFs2aiXUqZOnVqgRYKUQezUAc7yqP2PvN4hHstHiufZ/4fe1cBsFWRtedDSjHAwCLsWruVVlBRQERFXRRzbXSN1bU7EHXXxsLuTtQVUbEQTFCR+hAlDAQVpd/5n+fMPXPPfQP0U38R78D3zplzztSZmTM9d218qFzyNgJ5W495C8JEJ+nQwTvs0rjLLkWbMHUUR47k48D8OHQBcmR9xUuA0S/jYP6/+moy8GuHj1cTacw4tsWVV0F9qitlwXjRwaPNzsVfAR/SrovymoV6UgfDHZQXPvbNuod7SCKDxVAes1F/6qDssCPv8EiPu+KKy6UtsL7hsRB300193cv4qDmOjDoc8zGxGxBhj0MbxkKG1AfGiQkU6kCok6I/kPnZ0CWYnDvs6DlMNKRtsmxU7Y6DjPEdPLfc8kk7EzEGWWpsmDCKHPE4mOga1v/6rOdGtpQDPqvg8MAPyntNFN9iUl89Kq3UX8iIsc6FHGpDHvh0kps2dRo+tD7R4VQGPnq+lJs5a6ab8PkEfIR+dSl/xo+JvsM3Qh0WTSQ5mIAiP3Wl/c1BX8S2yzxr+ZOf+mTpZRpK/Nk0MgjvpiOdk5BODJ6hZ1kvTX7L5J++aJi3VVddNTjAR1YsFoh+yYQBisgYDNQ/WDhwOJoa/IGCxRBJP9srdkal7tSpU88ddPCBbrVmq+GD9C1dPehY5vX11193uBvqNsNHzQehTrD9U2+iQB3zTx1J+VIPsPyx6yQyYflTXxTrP6bTln+QD3NS5TCQdqNHjnYrrdRY5Jck2GG8IfWX5Q9lLnqO+nMx6KTUhDDopk6k/lm8Xn3pt1Ie5w495GDX77bb3UTIcirKf9nllkV8K4IlqUwSTBoWy1Pq1NpWh4A9YWF+8agLdH9j0RWMi/Ezj3VZXz3lCzmhzmFwDV2M/ge6ZR7qNOVI+TOw2rXrom7PwYU87+omH7pPw15RdDHDjiZNYoJKEbg3inKa5xouvUzMlvr7Dh+q/2LiJJRzM4cFxFDnJ3zh1lhjLfiBTkf/X6cO2jD8U+7UJ2qov1jX8QI70g/9NX486vAaZeP/YsJE0f/Y7VHvYrP9jUfZLIF+cqWVVk7Sl6Y9yNW44Yu6Y/QY1IvGK6JeIE80YCEX9Q71H6qD1AvqMCxgg8ZbymAwOoLhjKsei36rtlu9eXMhfjb+M8i2kYxFgEjKNXgUvQOU6Fe2E+S5nvTvgQ/jWfSb6DMgE44DcHIKfUYIrwH0iY4/GCzLknVgDtKLRu9qI53l+v/P0Ccss8xSrmGjZdEPYFwE3dkIsDUYeLsxqHONMQbCYlVCQrtCsoOuC/nneLlu/XpSxgyHApsH3VQH7WIO6iLbP8c/rK/YSAjhSNZD/m2chFn+uB5k+FIOnOySMRNO6kCXNnAzMD6ahHJefa01JO/kxKKeK6CfYv+DEwSSHurcOhxboN9l/Wf/u1jtWihzyrY6kW1z0KsS2S4r+qyAMCZ/9RXSs7KbgHTh+L0Zq3nokuz4j2VZV8aUjDb0P+OqoRuXhm6EDogVBf7GYRzA8dd8jRERdkIdXuQXeQY/qf6d/PWXUm/TsLL67+f0f6lfA5n4Nc6YB+SwXP1XPs0/60NoHxHI1H8TWylovGi4C3P8Ldu0dTieLbqBfRP7Eo4RZPyNtoiJZhdMNOdIZ8iOjYOV1199WfIW8xoBlYdBCBjc/KVJdU/Kp5DagdP+BoqlRzgCym8QAgY3f2kWlfhnQUGtvcZaDqvsaJirMWuJ+WvkP+YyAnn+gwSMQAQMbv7SLCr1P+YyAs7hvqrDw0EOK6MOq9IZxb2w5R/flXSdu+zucAcr9jlMYwF6FseN3AMP3u867dZJyizJSOQjMmY7AglrSlmo829yEFNckhXNUsJh6RGOgDIbhIDBzV+ahbH+4/itw3frHI7RuSUbNAgJTX5xqsHh00puyNB3opxIirmMgHozCAGDm780f2T+DznkEIfHfhyOEMsEQ1OjKVY7pNT+pnnQ9EfeCCi/QQgY3PylUf9GglGWxmdgjr9pGOo/8kZAmQ1CwODmL436z+NP5aSQ2kFS9jdQLD3CEVB+gxAwuPlLk8s/yCGvf2k9UUhtlVBqB4qlRzgCym0QAgY3f2n+ivWvVet2sjHCjRousnORhYvEnHTWhl3VEa8DcRWVq/VcBeQKoOxoUmJcwuFSFkH8CRQBQac/xfiybkUmdtYykSTB/kXjxz0Nhw/4unvuvtstg90b3F3K5Z/Xv790+7v2uusc7uA5PLLiLr7kYoc7etldCFUtqpHKuhWZVTyKTRvZb6N/2HZxfM3hwSZZ7dUtgBtuuN5deeV/3EfDP8LuSt002piQ3yZ+0+MlulUj+P/Jfx6/VkbnrrziP+6kk090uELgcO8LBPSmKIZJX05yHTvu6nod2wu7gYfYUQroYPiT9b/du+/tHnroEexsVbvmqzVPBSBVTn6AS+ysFdHR058w/2naAaUjziRvef6DULIFr1LRapHKEJQ/Wf1P056Xf17/Y21Y5Nt/y1btwm4mdstxtUx2N2th0qknktKjszLZxPFZrLYPSnY0KSZVAmob0UUwpaVQJCaAUErIBmE6FetXOdS2NIVTWgopTW2hlJANYiGK/zoMqnHnDcdm1nSvv/GGW7Fx41gOmh9rp7lIIUsnLJQSskEsRPm3adcUqm1pCqe0FFKa2kIpIRtEnv/YqavMaKuE1LY0hVNaCilNbaGUkA1iAfLHs+lu/Oef4Uhac3fzLbfiyOmOGnRMY5raSIrAr43fpDSGqUBKSyHSzjjjDIeXYuX4LicTk3Dc7b0P3nfbbLWVu+baa4uOFMFvMqjScGlriGpbmsIpLYWUprZQSsgGsQD5G04NMtopLYUiMQGEUkI2iEU8fnyf07XcvoXD9+dcx112cU1xBG7IkLflODLrCR5y+VOXP+4puV69jnV33nmnmz79J4eXzt1RRx/tcCdSasBfvfzz/KN6m+Ye1IJBLOLtPy//vPwX5frfqjWOzmLnkjuanGjWxq4mr37x2DuPz6YTzeSMPHc2X3tlIGqFGSoYfWCwAEsJpZisD3GBiXd7wknu8vS/cvw/4u7bq6+96rbZepuwa1NRqKWEUkx5+ebyz+vfn6n9zcJdk4m4L4fPT4jyCrW6tLaXYv7Y+j969GhMKIbgyOQPrmmTpg7f1ZT7fHn7++u1P95HxINobviw4a7Rco3cumuv6/CKamkFLa7Exe7oo5RQionMKQCm37z+YaKAz4U4rmJzkMF7k/jwvGvZomUar0K/R/xJ2H9Y/vP4RQK5/LNDZ63yGTuv/7+9/snb3x/a/lpiosk7wlWYVOrR2VqAeW+Tk01MNDvx5U05OsvHYPgo0Ou6o1lhlSk2GqNVAmgQZFKn2PwhCsPbBK9kIQQiKqBpqHn8EIad8UdJBcAIMIAGkchTJuyC5k8u/7z+5e0v1z9QBFArRdpCELn+zfuf2OPk/W/e/+bjDxk3lf0xCjSABkEP6hSbP/n4Kx9/LZrjrxYy0eSOJnYzZYJZWx6vI8xH7MKOJh4AmutxTxOvaHHSyTua2kakdVhXlhDINf3VsNQ24WRRxmVAw14zUMNS24SSRRmXAQ17zUANS20TShZlXAY07DUDNSy1TShZlHEZ0LDXDNSw1DahZFHGZUDDXjNQw1LbhJJFGZcBDXvNQA1LbRNKFmVcBjTsNQM1LLVNKFmUcRnQsNcM1LDUNqFkUcZlQMNeM1DDUtuEkkUZlwENe81ADUttE0oWZVwGNOw1AzUstU0oWZRxGdCw1wzUsNQ2oWRRxmVAw14zUMNS24SSRRmXAQ17zUANS20TShZlXAY07DUDNSy1TShZlHEZ0LDXDNSw1DahZFHGZUDDXjNQw1LbhJJFGZcBDXvNQA1LbRNKFmVcBjTsNQM1LLVNKFmUcRnQsNcM1LDUNqFkUcZlQMNeM1DDUtuEkkUZlwENe81ADUttE0oWZVwGNOw1AzUstU0oWZRxGdCw1wzUsNQ2oWRRxmVAw14zUMNS24SSRRmXAQ17zUANS20TShZlXAY07DUDNSy1TShZlHEZ0LC7sKOJSWVyooWPAeFTXHK6hbZMNPEBZ5lgzsM9zXBHcyDCiOuaIbwKEYQ5qCFGMAJxmppi0sUem9gUtpwJtgxKKII3xAhGII8fgmJpphLJwomEjWU5E3QZlFAEb4gRjECMN8Xk8VtZGMFXFnYlD4I3xAhGIJc/pJrX/2ybS2tHae3LclaukkKRgExoEYxAXv/y+pe3P9SBtEVk4aSFGctyJugyKKEI3hAjGIEYb4rJ47eyMIKvLOxKHgRviBGMQC5/SDXvf7NtLq0dpbUvy1m5SgpFAjKhRTAC/y/1ryVeneURWZlcYrLJ47P8zFHAyedNOvEDs/iuDnY1MdGci0v9r/OOpjGaZLVJUlhtw14EWg4LKxu/T4Tt5GReW56jckUtx68hB9tyWFi58vhz+ef1L29/pdoi1RC5/qk0UCinUVVupRItx53r31z/5vo317+l2kL1iGoNtYlXWG3lLbUth4WVM9c/uf7J9c+v1T/c0QwP/4Q7+uGzJtzVxPeYeXez4274jiY+MjuHu5qYcPLvtUED0QqTmZ826dhGI6At9RfZ0TeAzH2gTDyRC2EncERF4BfFq8zRN4A8/rSUs3KOUsrln9c/1AHoglglIqBN6hfZ0TeAvP3l7U97mVjBpILEWpLrH214USQR+EXtTpmjbwB5+8vbX97+ilqGNJDYSnL9k+sf1IF8/KPVIPbT2mwSu2UrTDR5N5N3NPn6LI/O6mNAsHF0FhPNeXgEiA8CxaOzL6fhaoBFHZN9JyA0S9M4FRQbK0YoqFShMUBl0MBL7RIOIGzHmMeP6p8INcjKSExBsXP55/Uvb3+5/rE6VhWExWXhEg4gcv2bTkzy/ifvf/L+N+iMoCuMxlBQ7Hz8kY8/8vHHoj7+aN2mDR79wVFZ3tHkS7N16rhaVXwcqBZ2NbGjucuunTHRnCs7mgXuaCaPAdmPRWeHIKpcSptPypfRNPNBKx+nnkXh2Z48DSFCJfyRQkDDVTshqlPtyJfHXyLPXP7pSCpTt4KjRF4ZHq1gauf1TySg4lA7b38QS+iCSupT3v7y9qczmYxuCY6S+pLh0QamdkJUp9p5+4Ng8vbH2lFSn3L9k+ufXP8kirPUKmkvGRZVsGonRHWqvQjp3+zR2VrY1ayLO5rh2Gz4vElHTDQLfAyogDuac2DPdYNefSXuQHoonKqkwkX5ZIQaHCW0IkSRUzwJrgzBovL4c/nn9U8HQzosKm2Ats2kjSvlK6GDJLgyBIvK21/e/vL2l7c/ahKrF1LNEqASWhGiyCmeBFeGYFG5/sn1T65/cv1DhWH1QtA66W8JrQhR5BSPgitDsKhc//w8/dMCdzT5AJC8Ossjs1XY3awTPm0S7mhiR3MOj81ysonvaHLCyc+bBJMROVChwifECiUf/MRfe95KPVZcLbPxkdm6LZwEVAalfgIJv3n8JcVWebe6WKDWbeFc/iKBMiLJ618QSvzN21/e/oq6jVz/oHWU3S0oVijWbeFc/+b6FxIoUyUUGUj4zfVvrn9z/ZsoTNWbaBe5/s3KRFzFCsW6LaxyhJ3ULd7RrI1js1U4KluH9zPxtxjvauI4bW1MOKt22a2zn4sJZgGvzfLVWe5oholmEoKEHyLhL43W2xSbxQQu8yse8VO2cKELza5pUJQmFokkjclQEj0baCE2Cy888X875Vu39957hfxDVPxgPNYJmHERJvNfC7Jh6iX/Ik7ScbYdNF+LHpSeiDGgXC3SkxIhh8D0H4IObsYjCBD4n37z+CGEIKRc/nn9y9uf6pdEcYh+yPVPrn/z/ifvfzlgUP2Qjz9kGBtEko+//oTjz4cfetg1atSIg20xi/r8g0P/OP4PWc78/hb5D9/RxH1MPgYkjwDpp01g15LPm4RXZ+d67mjiEyfY0YyfN+GE5WcayQt4xUvGURpACZkIzn7gO4L0tojEP3vObBxHHsQcidH814IrTvjiZDIM7iTzIhMwyeSQwuBEMoglTCjh4mQUuIJQEpEBJxUrRKAegAsmjz/IIZd/Xv/y9gddwQWXXP+ILmV94OQyUbpBUUBEVYlOTShBb8uKXa5/8/4n73/z8UcYVbEtcEzGntXl4y8RgwxQg3hEnyr4R42/WrZq5erWxR1CSU0oqkV5/qHZVFvl/1vmn0dneReTu5q1+SgQv6OJnUx5GIivzu6Mo7MF7GLy+5lydBZHaF975ZUkTSZJBJGyxNI0J+4KROUC2aNTDl0ykRpK2IGLGRZ+pSkf7TRiS1WOZHqaBkuCNXn8ufzz+pe3P+oRMapFcv1jtXJWNnRRTjS5/tUuS2tOkIt2OQm2mGiY8v7P1jQVVN7+rFRCdVHZ0EWYJm9/efvLVAOpFfwJtSWpM7bqRI7AlOsf29JUULn+sVIJVUZlQxdhmgXrn5at22Hnkq/Nhu9o1uZLs7KzCRzweHW2E16dnYdXZ+e5wpy5OEI7D7tvL0vw+mOjVtwvsTP+TdpDGIEqvxnGNIYK6JRhAVDGPx00Oua0TTXDGNj4WwGdMiwAyvjP4w/SyuWf1JpQO+Q3U1HSSlUBnTIsAMr4p4Mml3+QQ97+pTJIHclUlEQ8sCqgU4YFQBn/dNDk9S/IIa9/UhmkjmQqSiIeWBXQKcMCoIx/Omjy+hfkkNc/qQxSRzIVJREPrArolGEBUMY/HTR5/QtyyOufVAapI5mKkogHVgV0yrAAKOOfDprfuP61wo5mLZ1o0sbOZi3ucHJnk3/8vAl3NOfIp01wfBb2a4NelrTEH7nLhpQhkTwVENMYGSoDaSbLrR4YfymjQSZgHj+Enss/r395+8v1T65/8/6ntIushEm71bz/LV29N1JLBWWQCZiPP/LxRz7+ysf/0BH5+KP8+EN2NPn4DyaYi2Enk8dnOdGsBVztxero0VnezQwPAclEkzuaolypaMt36/PTyzIFT3R0ee+J7/kVXB5/Ivpc/lqVrJ3Xv0otE1KicNSUrT55+xPp5fqncseZ699c/4ruKKtARMWUp0Dx5PpHtW8FJZ3r31z/ovXk/U/e/6AalNWjf7L+V76jaXc05dVZTDbxCm34juZuODqLXcy5/MQJjs7OxdHZ183R2UQlJoozVZAinSwxVa5JN6RktSNDBmEcBlTeLCpxKVJtZY52IChZ7SJy4jRUAypvFpW4FKm2Mkc7EJSsdhE5cRqqAZU3i0pcilRbmaMdCEpWu4icOA3VgMqbRSUuRaqtzNEOBCWrXUROnIZqQOXNohKXItVW5mgHgpLVLiInTkM1oPJmUYlLkWorc7QDQclqF5ETp6EaUHmzqMSlSLWVOdqBoGS1lTxxwiT39ZSv3SYbbwyUoRpQebOoxKVItZU52oGgZLWLyInTUA2ovFlU4lKk2soc7UBQstpF5MRpqAZU3iwqcSlSbWWOdiAoWe0icuI0VAMqbxaVuBSptjJHOxCUrHYROXEaqgGVN4tKXIpUW5mjHQhKVruInDgN1YDKm0UlLkWqrczRDgQlq11ETpyGakDlzaISlyLVVuZoB4KS1S4iJ05DNaDyZlGJS5FqK3O0A0HJaheRE6ehGlB5s6jEpUi1lTnagaBktYvIidNQDai8WVTiUqTayhztQFCy2kXkxGmoBlTeLCpxKVJtZY52IChZ7SJy4jRUAypvFpW4FKm2Mkc7EJSsdhE5cRqqAZU3i0pcilRbmaMdCEpWu4icOA3VgMqbRSUuRaqtzNEOBCWrXUROnIZqQOXNohKXItVW5mgHgpLVLiInTkM1oPJmUYlLkWorc7QDQclqF5ETp6EaUHmzqMSlSLWVOdqBoGS1i8iJ01ANqLxZVOJSpNrKHO1AULLaReTEaagGVN4sKnEpUm1ljnYgKFntInLiNFQDKm8WlbgUqbYyRzsQlKx2ETlxGqoBlTeLSlyKVBvMMtHEDiZ3NOtgclmrFnYx4ea3NeXo7M4du/hCYQ4+baLf0ixzdFZjzSTNxFKWbpHFvKk7Qgqobb0XwYGlMmMppRiTuiOkgNpFcVpnYKnMWEopxqTuCCmgto2wCA4slRlLKcWY1B0hBdQuitM6A0tlxlJKMSZ1R0gBtW2ERXBgqcxYSinGpO4IKaB2UZzWGVgqM5ZSijGpO0IKqG0jLIIDS2XGUkqKeezRx9w/Dj/M/e1vG7rnn3/e1atfP6yoKYvaRXFaZ2CpzFhKKcak7ggpoLaNsAgOLJUZSynFmNQdIQXULorTOgNLZcZSSjEmdUdIAbVthEVwYKnMWEopxqTuCCmgdlGc1hlYKjOWUooxqTtCCqhtIyyCA0tlxlJKMSZ1R0gBtYvitM7AUpmxlFKMSd0RUkBtG2ERHFgqM5ZSijGpO0IKqF0Up3UGlsqMpZRiTOqOkAJq2wiL4MBSmbGUUoxJ3RFSQO2iOK0zsFRmLKUUY1J3hBRQ20ZYBAeWyoyllGJM6o6QAmoXxWmdgaUyYymlGJO6I6SA2jbCIjiwVGYspRRjUneEFFC7KE7rDCyVGUspxZjUHSEF1LYRFsGBpTJjKaUYk7ojpIDaRXFaZ2CpzFhKKcak7ggpoLaNsAgOLJUZSynFmNQdIQXULorTOgNLZcZSSjEmdUdIAbVthEVwYKnMWEopxqTuCCmgdlGc1hlYsox2oqmvz/LorDwQhOOzckdzHl6alYkmvqPJ+5qDXn0F4TIgGm7sAtbDySZ8AwYe5Q1DV3ouMdGPANFl+BRHmyaPf37yH/r2EDf03aFu+eWWw7c6u0NeKj8RXslPpAoQXYZPcbRpUvm/+dab7s033nQnnHQCsPGt38AW41X/CbrI+urrr/Cd1kFuyJCh7sKLLsC2eu3IwW+5vjTgRffOu++5HXfcwW255ZagpfErKDYo2ZjUpXYMNgNEqgDRZXgUR5vm941/+PCP3OC3B0tmDj30UMT3+8Z/7nnnuS6dOrnNN98CWdO4JKPJj+JK8z9y1Egp/++nf+96HdsrpjR4tP4os/JGuYLn6DLMiqNN8/vKP4QfYgq/efxR5iKQmst/xowZbuDAgWjrQ9xBBx3kmjdvntYZEbPKOpd/KgGVCW2amss/+E9/5+HTZbf2u9WNGvmpa7F9S9d1j92T8FOe31v/aO7y9k/RR2mYAlDcb1/+jERD/6Pl/+orr7onn3rCrb76Gq7H/j1cw2UaJjLQFP7++Z/23VT3CtLx9pC33amnnOqWXnppI6GaxT98+DA3ePDbaLVV7pBDD0nylFqauz9a/nn8KJO/cPv7rcu/Zes2MpaX+5l6bJYTzeTP7dKxs99pl118u/Y7+9Ztd/AtWrfB9ztLTaEUBYxi1c4yYeKQIAqRUxBAKyUA0ZUNwLjKcyhWbeMB4MIc/xlnnuUPPuSQRBDl029zU56j4G+55RbfoMES/oQTTrDsAv/W+b/44oupJ/3777+fxKWpUjubhHLxjxjxqW/dqjXeZagVmMVr8E/+444/DnFU+YcffjgTWIUYitKR8fKHlv+s2bP8pptu6p988kkkqnL9f+jBh/yKK67gu3ffJ5v4Itdvkf/XX3/d77ff3/3WW23tl11ueb/PvvsusP5hkuDbtGnjp06b5vv37+8xWfDt2rVLUqepCjYWD3xb8H4HXppy5R8ISbTCFH+EVOlHY8rSFat2EbUG+uenGT/5199403/yySdIfxqeAf0HH3zgv/vuexAVW4D7O//662/4GfCvplz+v/higv/fC//z73/wof9pxowFyj+GpUDGTuPPoBNHufiFBG/q8/fUv1OnTvV///vfuUTp33nvnTSJPyP+u+66C+1nM2lDm222mW+NetWqVSt/3HHH+VGjRmkOi+w0CkJ/dP4Xtvh79uzpTz/9DH/LzbeI/h1bXS0VYezY0X6bbbb1lPPmW2wu8NZbb+032WRTf80114hQY30Rl/4oVm3FB9vmv3ef3v6f//xnQvj/qX+Mf86cOX7Xjrv4Z/o/myYOyY0pFiC6Up4iqDyHYgu+bdu2ob5usolvB5gan/Eff/zxftNNNvYbb7oJZH/6AvM/Z+4c37Hjrv7ZZ0164UtjyiZLsWoXUaMCq9z/MOChQ9+Gjm/rpyV6OxtKcFWIIWGtQK0Q/xOPP+G3RB809J2hfqUVV/KXXXZpSZRffPGF79nzQL/ddtt51sW111nH77///v611wYZXo1XbUMCaOtfhgMOusd/Pt533KWjxzs//ptvpmQ9F7msf9apUEbPJFwp9eGH0J83buy779N9gfGLZ/Ga+i+KNjqVY8qUb/xKK63k11prbb/llluENrv5ZmKvu956vmmTJv6Vl18OQVeQPzOv4QUgumJ8xUB5DsWqnfpiPd4F84pQj+df/0xq0gCKoNIYyKBYtbOeFlT+wi1ey/u3oZXnUKza1gdS9wfKnyn5/4y/Ras2mD/u6Hdov5PfaeeOfpfdOvuOnXb3nbvu6ffYc2/v+OpsexDagUEmmi3bJNIqL7yEmLGUU+WqdmRShojIAhlydEQgy1zGpZwar9qRVRkiIgtkyNERgSxzGZdyarxqR1ZlSBBU6EstuaRfEn8//vhjbC5CjrwRiMEQGDRokN9tt90yuE2haE455RRUrIBWOzKVD6o8OfJGIPIR6NChgx8zZkwGp5war9qRSRkSxB133OHr1a1blvzTjz/JwPSJJx6P9AUBGrzGq3b0pwwRkQUy5OiIQJa5jEs5NV7a99xzDzqwKr/PPphAKkMZv0TtivLs0aNHoEbeCFTwlaKV08afUgGB4csvv/RLNVjSv/DCC0L6aPhwv/jii/vvv/8+mzwNLMEOHTrU74CJ5bfffiv+Dj74YL/TTjsVBy/uIUPe8W3btfVTpgTeyBTDjJgMkCFHRwQyvOUcyjm//Jfzpzj1Pxwy2Xyzzf0p//oXBtkbywT7p5/SiSP533nnHV+vXj2z2II2+fprfvXVV/cnn3yKb9a8mf/005EatNiFuQX/3//+1+/cYSd/5pln+r59+/pexx7rV1llFVkgmjlrVsqvicmWSkovA6mXX5v/kFiNQENVd2VbOcvFT5lidd8PGzasYgDqXxiioyCLNFzYeiRZdPps/Gcivzp16vinn346hqdeysWfDTN6yQDqP8ubwQppGhYTunfv7t98882y/n/P+NlncPBaHDcToimdX/zV1dWiV7/44nNJ+6cjRsQ80D92n/1SSy3ld++yu58zezb6pekyMeLkdEHm58Tfu3dvf9IJJ5YNSv0LMToiUNaPRSpnufzPnTvX77pL6cStnP9fEz/jWXnlVX3HXTvGfljjOO/c8/0BBxygzhJb00/C3DlIb8eOGKDrJKaEvQSh/svlX5iVocRnQAyBjufi4bfU2+B9TcYYu1bgLkVr8D83fk4c//uf/0hAEyZM8N+hD4oGgQ2HrmjYcBnPhW0dLHPiuQUmVnvvvXdkVeCXxq/+aHMiRB3DhUIxGlhsVQFtf1nWHVFG/ZPFAPWi+d91V9Of06My2EAMnCFHRwQMp/evvvqqX2ONNcJC6Lx5fuedd/FVi9XykyZN8iNGjPQbo9+66667M35+y/izAQeXplTzT3teIiOZaCpDOc/AZcjREQHx1adPH3/BhReUDUE5bfwZRmXIIFNHhhwdEUgZK0DK+VeOnxPNVm129G3bd/Dtd8JEE/PKXTt3lYlm1277hIlmB51ottvRbw8PRUWfVIREnCrNCkIvRWsxJKHCmWIqcWc5givBLQLx/weDztNOO83jGzP+vvvuzwghk9eEYnG9L70UA9RVM35wxNT/+7R/Z3CpI5EbEALhJ8WkXAoFWpZDcWdhkHzpJZco68+007AEws9dd9/l65qJpg2Ig24q/idkJzBQNH5x/UnKv3Xr1v70M073SyyxuP/hhx9C0vmLzIT8CEp+dt99d1mtTciBKSUn/ImvGuafA3Ocmfdff/V1jP+Wm28uWcnNyDpJg8Udduih6Nx2NqlbEJjmViD8pJhSv4GW5cjgaph/xiTh4CcbepqGvTCIORmTTHK8jFVh7qw/+dSTCX/B/zh9ul8XK+vEfzjsQ/GIbxD7Nddc0990803iPvzww/2+XFxIzMyZM2QnjgPtOeh8GZjGP2niRN9i+xae5c9VcppAU44QSAb3O+b/94j/k08+lvbMiabkAz/Z3IU86q/N65Ch7/CLFP4NmdglvpB/ynIJnOIYMnSIepuPncYmEH5STKm3QMtyKG5cdbXk5bXXXiv1WBGThiUQflJMqadAy3LQVV09ViaKnAT8MhPCeuaZZyDLKpnIZENPQ2uG0wpa/4mdMWOmv/a6a5P0Jr5+Qf3DS/ao17NjBBICfirFT8ZAy3JkcL8g/hBxGpZA+EkxMWkRCLQsBz79luZjPvFvhl1LXH+IYWn8XFjlbqaEip9s6Fn2QMtyZHDziT8bkrrSsATCT4pRntQmrXfv7Bgj8Ce+foP42Xbvvz877tEUzIYe3BwL51aOGv+Qt9/2W2y+ubL+TDtJN7gFwk+K8R7vFEib1olmoFkO5U9wPyP/XU1/rr6ZWAkBP7RnzpxJVIkJsYRfJVrcBzhNxsmmmpNPPhkLHCur07/33nuePKlJwxIIPykm5VIo0LIcGdzPyL+GFew0LIHwk2KynHQFWvjFdT70mXMEx0WGf+J0QMkqTmkQRZg0NoHwk2KKWIviV2rgT3z9P+b/zxQ/T8K2adtONixlR5MTzS6caHbzXffsnp1okpEzUzGxNCKQRcOlMheOLFsII/7Olxi5MlUgeomA8FnXnzJ+JHrjjTfx3+AIxI7td/SdO3eO+X954Ev+iCOO8CeddJKIggOaI444XI6Lkel9HNnbFkdJuBPaq9ex/sorw6rgFltu5U/792n+fy/+T1ZO98WRSLvrOHr0KNk54Wrrueec47/68muJcxCOofDI7VVXXeXvvfdeDJC7+88/Dyved95xp99rr738IYcc7B955JGYxvnJn4Pvf//7375bt27+wQcejH6Ymc8++8z/84R/+i7I7447tPd166U7mrOxgn7FFVf4bnt0xXGZnqL4ebyG5uabbpTjd7gb6k899VR/ImUDMxtHUy+7rI+scPIY8tRvpwr+q6+/9hdccIHv0qWLyC3sLhX818RjRWx3wR/vPx35qfDPwsSWq2VcKT3rzDM8j/vRcELGcHbv0lnCGflp4J+Cnb2RI8OOVaX6x6PFPDby1ZdfedxB9XfeeYeEaX/6P9ffH3jQgX7PPfeUFUoeC9L6/+ijj/qDDjzIc9Iy7MMPgjdE9l+U054ok9GjR+NI29W+a9c9pNx+mP6jP/+88/3uXXePR91sXAyXxw05aO+OfH47JeTR8nBH4+KLLpRJD3fdxowe47/66isZdHTt2tVPnjRZ2A897DDfsmVL36/frUj7XhLfPFQK5rU3jkAJ7+TASw9PPfU06uT+fo899vC33X4bkhJqECdmf+/xd9mhYblKnbddQKxoEcBO6RR/FfLNsC7Bave3SZk/9/wL/pijj/H9buvnBwwYIG2AR9a48nz//Q/guPC+/h//+If//od05fzOu1C/92b9PiTW7xv73uDfeustyefYMWOlHj7wQDogYnlcjnrKhZBhqOvMik5IPxv3mfi7GzvZtWrViosL//znCVhE6CE0/fnoo4/l2NiXX33pP/roI98YR63OP/98kENeWRYXXXiRlAXrpLblDzFZOzVpXw89+KCK0tck/5oW2lLfDjrIH3H4P/yHH4YJtBbFY489KrvyRxx+BOJ5XtHinfm//PLL/ZFHHe3vufsewVGXHHXUUf72224X9yefjEjkNcxXj6tGHIeDfjTqSm+hZ3/SsmZE3D3msVu7i0cOyqdx4xWgF4JciXvm6Wf8/qhnjPttDEhpbrvtNsj+AP/GG6+Ljuu2Zzd/zdVXC01/NO+2rXF3gPLnsd/hKGe2zUcefkQGvyx76kXq3w9w/Pncc8/1hx72D//5+M8xSTtZ2jPbGndymZZu3fZEnUp3QGdT31x2ud+7+97+zLPOjPrmaqRrH+A+hZ65/vrr/R5o2xxEzsJCBRchDj3kUJEj2/+x2A3/AXU5aUqhTCAEHtfvfdllUm8OQzsd/NZgyeY7OKK44447+qpaVbKTftNNN2v2M/Zq2I3/lyy0IKyZszzTpHWScuNu7gjoTaavG9rgSSedLANmyp+JePe9d6Q/obzOO/c836xZM+jBjii/N2Rh9VjIjObFFwf4Xsf18jdCt/M4/4EHHihhj/x0hND5w/iDXt5LdrFVvzOu6upqHEk9Du28J/RQP8n/pIkos4svlDLjogbT8Pjjj6MO3I62fxgWdO+TsCUfe+8j+v/6GyBn5INyDgN/yYl/9913/QnSbpGP886VfHTEzhFN4BCwRP6bbrapp9yLzR133B6PzS4oftZZ6qr77r1PTk2w/2c9uuD8CyTYazDxp/uf/zxe4qcseh13vO9JWUD/0dj6O2zYcNE/lAXNXXdC7+EoG+4P+kcefSTR8b1Fb385eZLEyeOqS+L0C+vZf/5zpdSJY9Bm2UbGVI/F4uQ30o6PPPIokbHIxAoG8Tz11FOih/fYoxvKAGVUKPgZqMsnYrzBhTqORVgfuFCXmoK0dbaxd7DIFEw24GEfDY/sjzyCfhJ66x/QTR+iLdKMHTtW2iTLQdrkyf9Cm+wm/d9w+D2abXIPtMnBQc/rRPOJJ57wB/Y8wJ944ol+MvsvRMvTYydgzCLjo3vuFT04HuMjltHhKKN7UUY0TGH/Z8v150LGaaLJGKtdib57T5Tj+TghtKOvU7eO/3ZqOPnDRSDW16OPOjLqrrSiZfNvXRCpjIlWbdI0UzHLlT/r/+GsS0ceiZ3PT/3MWTPFfSTcbC+U23nnniP1l2PAk9G2OTYZPWqk6LKjUdYc172Z9I+3QwY9euwP3foGxiVXQ6bd/NXom9XEeiwbKQXRJTyRwXHU9dff4PfohnYHfWkn3O+9W6o/Ou6ys8h7heVXkGsUx6BOvvLKKxLNqFGjRd/sgqPm55yNce3XXwr+xRdfhH6GfrmR+uUN6Jeeol90zKdpLLWNdCMYAWG3LsqfRixLCGjzO19ieb7oJQLCZ10LU/wtWuLobLsdZKLJjct0R3MvTDSTo7NxR7PNDsmOZsi7zZSRRgIG6vx5Ul/F3OIu49miLJyGpFCgzp9HebUdptwCpc7IaFEWjgwRCNT580TmRG8U/Iv/+59Uevq7+cabPI+BcQBNMx07Jl2wGrZqk1WD+6cfRbktu+xy4uYkiPdcVsYZ/Q8xAZmIHRGGwx3N1VZfTe58coLIM/x65ImD1BWWXx6T0BfRqXzpO7Rv7zfYYAPZXXnvnXf92muv7VdeZWWZaPHY4AcYaD7/wvN+1VVXhSKc6i/FDuqhh5Z2nsUSHVs9FpPHenJ/jYNV7ljqMc0JOPay/AoreA5aPxs3znfq1AmKFhPNRHi7ddpNBnE8HtYHA1dOiKj4SeZAgh3T6quvLh2d3g/caacOMqmdPPlL2THaZ9+wi3QY0sqOmiuUvNPFjoSGEyQOOL5P8Bw0MwIeA+VuMI+WtmrZCsfTknDAf1gMpzXCeUHCYYfAOxia+CQLQtMfdsgP4a4GTYcO7eUeSOALv7fffrtfZ911/bix1X7gwIEif4ZLw8nkRhtvJAr4ggsv9CtAbpyI07As2AlvvNFG/oorr5CBAJ6T9ttuu63HIx+433q8r4W7r8XHPemXMZ+LjqQWdjUaNWokE5YpX39DEmgF36ZNG38ABuUTUKfatG3jd9hhByl/HpWl/KXzBS878CUbNIDy7yfHjpZaemnp7KZOm+oPEl4XeXlEdOONN8YkdZLsSi233LKYzJ8pcd6KcuUkorhcrTwtTE8tW7WUQSfLsEWL7SUt5OFgdaWVV/LNV1tNJuh3YjDFdrUuZHzqqadg0Havrw33XZhc0rBOrIL6PQ0T1VC/010IjZOD7IaQk650/+9/L0q7ZSfMdLP90fRFZ8YymT0nlNErL78ibnbe1dU4rgh5jxo5SuQ/GQO5nXD0nAPbngce6BdDWbGNHH3M0XIXieHNQ+9B+fOonZQFymWHHXbEQKDa16tfDwOqD7D4wPZVR/zWJP+MR/KJHw6itL5deMGF0k45YaG5+tprRIa8k8pBP+PnUbdgJAQ/ZuxYj0c0/AknniDo8Z+NlzrLAQwN77qKvCAP7u6y7p599tl+IupESISwxZ8QanAOxUSTsn3zzTAojEwAumNS1gT3kch/8003+a223gp3rj7HAsQlOEWwhExGuWtC/6thp+4G1EUuGjQA7YwzzhB/V/8XeUd6OOi6kG0NgxmeqJjy7RQ5ys4dwPbQl1wMZP65kMfw7r7rbuTrY9G/u0GX8Qh6B+ijezGYow5luqjjuEBH3czjqCFfBb8z9Q0WCyZD37SGvpGj9cjDf3CUkGFviPScd/55/hKcHKFb76qz/lEv3n333X4EZKrCs/LaAZPJk048SeqslBf08dtvD8bC0hSZgNbCRJN1h7pO/FnPCLF5s+Y4ereJPx6TGC7UdcNAU42kD/FTXpxEXnxJuK//0EPhLj0H7tRFnGBzx4Vp5z1bHtXlJGB99Dmt0H5puJizKmS0evPVPBdFycf+Zh/cU9ckUS9zUUX0Mu70q5zGof9g//ciyoKLNIyTMmKZ/b1HD9S1UGaUPxdB7r0XVxiQlquSSTOPbKqcz0c+RM7Il8qZA+nadUI+Xon5uBv5+EJFkdghpZpeIjfBnXz2P8XmTuxonib3M7FYuID474GuYjlT/8xAvTzrrLOQ3ir0nY9JsNQpePgPA/43PWWxImQxAH37Rx8nskB5cDzBqxjUPe25mN0J9ReyeP7553wTyJnjiEvQlxyGxQvCQcdDb2MxkX0+F4Q5hvgAiywcY+BxG9TxJWQyOheLHpzhnoHTOiy7kmsSSKXqfU54uMjA9J4BvT937hzZbaP8r4QcRhVdMWAGr8CEjPnnWMjKVjJvfq666r9SF2dgZ1DaLhaeuGg8ccJEaXvSJqFr77vvXtkFZX3rhHHGo0mb7Iz6zQhkoon4jjnmGM/F7BZYRF1/g/VFf7yDBQcZH628Shgf4f4y28+9mHQyDywjppH9+brrretZNtKfY4dR+3MuEq2z9jr+HCxITZw4AfphMwlrFBaL6fmmRHexX6HuWpy6C3qShmFXNoF6yimnir6xfJXK/8Yb+0pb4OSQvu/CWJH5GPDSACnnTvjUYf1El3Fiuhl2j6nLqP9El221pegFxnXf/feJX56CuJG69cEHJO1nnH6GJIUbFyojIljedFP/n3ce9cclkhZtd9QJtbEoP4z6Y1DQH3eK/vgC9fwz2ZzpiQkj5f8TrpuNGTPaLx/HtV/59hhnUcdwcZlhMd2rrRb0y90Ih/39PpjoqhHplRGwRVlY/aV2oM6fpzK3+Cvj2aIsnIakUKDOn0d5tS6l3AKlzshoURaODBEIVOVpgR3NVnjjp92OO/nsRLMb7mjGHc1dcbaWdzR3THc0TYDZIEHQ0FMgcgcgMhTh6VSa2gvywWGw9WeCiGGFMNLfbNgpnpDS1A7UrMv6+G3j3wO7dj2wk3PTTTfiDkIYTPTte2NMFQe+a2BSpea///0POpOV4Qwp5M5f0ybNEnLAbYkdTa6+qzn44IN86zatxcnVTz5Ko4Y7Mbz8zlV+mgMx4F0RF/J5ZEXNrXhgiPfQqJCmT//BD36bR9RCXMITwQjI/Q6uhs+ePUc6lDXXWhM7ghcK+1FHH4UV9fZJ8AUM1Hh0to64X3rpJSigKgwUwuoeV7g4MOBEM5gCFFgDf+SRRyRu75/r/zx4qnDv7T/+BqxK857CsssuK6umO+20s99+++0wkJuMlbrhMrmmx4Df3k/CYB8vwwn+uefCsZn/YsB5HVbpNRx2pBzobL/99pg0TcIxyTQcrnY/nAyuMjJJUjdt2ndyXPZKrARz54A7fHiJCwOmrxKOAgbiy6MzviFxeyjyLr5HMtGkPLhaSMOdGSrnEdIhF2SXjJ3wjX1vEvo47BCxLHUSzN0QylInQcJU9PP++++JwqW/NddcS1a/uevIePRu4duDB8eBFwd0DPObb8Iu+GGYrLc3ZXnQQQdC4a8gsudKouVdYYXGqOMXxRRwgtGkSVhEoeyWkHINE5K0JkX2BEjbXx/sYMuRVTCf8q9T0PlsFJm5g8xdm2AKMvE4DDtNaniKgDu1jPfWW1m/66J+vykDmrdRv238H2MAy04sHFEqYCd0OtrQJjIQ44CAeRz24TAJ64ILzpd8aDzvv/+ByHLgywPlWDxPHzAHqFIyabkQu8Y0H2NgWKvWYnJH9vbb75AB88yZs2QngPWfZUkzGAP4hx5+BLu3U/y/sDrPCe3cOfP8Wig7xq3ml+Q/+Ak5Zn3jrg9dWt+46swBEu/sMQ7Svvtumu99ae8woQ5egQ0AXjCW8gjhelkE4I4VDSearLPvvvueTJ7ZZoOJgYgz6woc3NFkvXxDJpqGA+CJuO/HOsy7hA0bNpJB7w033ICds9PFDyeFNCzHs84+KwSIX+5uL7tsI+ykzPUvvTQQeb9NaIOlrVVFufOoOeMeMODFJJcFz0k08/JWnPgW4L+fnFrgCQiaPn0ux0JOQywYhJ0ayo+DUJrnnntOwuQg+frrr4v6hnWD+pf1ihN/NcthgH755X0k/vG4n8r0cBCVJAhsqUyCHnXYuRkd8euvv0F8gIdXNPACYKRZv4yPITXHxI87RFzM4OSPu32kkMYjsIz/qquRviRaLhxdccXloHIR61yZnIgDDMxzr17HBSd+jzjiSFm8Us9dcfqiJSbaao5EP7X11tuI8/lETrzXTDntJPq9keiYQw87FHV/bX8TFmmvw+7eiis2xgJk6BtCmVVJmWm4tBuhvG+4oa+gmA/WG5aBmuWWW14mYnQzH5zIqll33XWw88Z8pLJOQYMDB/vZsCibxXMiciZO3dAsKH7yLIsFLtZlmlmYbC4H/frvf58qbi5gnnvOuQIfil3JtddeCzs3lMV1cjIiyKLgn36G9ZeyGCC8/OHDgdR7byb9OvUeDXeYWbbcqaS5kmOMpk0F1vLnzt5yWPCWSRCy1xaPB7FvLGfYv3EhQs3Z51Dvh/DY7ij/R7Gbao1KjItA1H98OyCYVP9HfjAPlLbbT1DMB9OvOpOnbdjnfp0spHLRpVGjZZPd04K/ECeVWK40MtGEnDjBpmEdYvwqN+6GNcb4iOUWDeJfFuFx7EHD/o+TazWdO3eS0xV0f/wxrg4gv4MGvSbks846E0ddWb8KSE8BuqshdNd+/nqju7gZkZry+Q/0gtQLla31U678uelAOQ3FA3+MfyJOAdDNtFH+/frdJjrim69Vl1FuDf1cpJP83FUXXUYnzPLLL4dFw7OCA7/77bdfIue5gqPMtR7PmTNX4krbXcGz3XExiIYT8ZVknCtOWeDkrqTWv2233UYW0YSK+I/GDjv7ZDVc2GVe2KfTT1eMs61+4Ska3g0mLRi1y7kSFrHmL3/LmcLZsFM8IaWpHahZl/Xx54ifJ2H5xg8fle0Afc3HgHbtvIc9OttJZqDt2ncAI47OtmyT5LJy1lUMWQ4VSDnv4EyY2almTREiOiOQZTeuLMfCH//nWBVdaaVV0MldLdv6PDrEBsSdNzUczK2+OieaIXdcNePqohoe3dNOQPPPVfNTTvmXiliOE2y37Xbihccc90CnrkTKn6uTOkjlpJQX26MBnStirdu0kobLx39KV3MDt8avrndw9GGvvfaW8Bph8MeVe5qtt9rS799jf4EZ/9133RMnmn36XCaTWiHiZ9bMMKB54slw1Id4DtZvww6YGq5gUqk8huNAj+OPx9+eeupJPw+Z5OBxxRVX9IvXX1ziD0dzgB/wkqz+1q+/BPCnSaej4TCMx/H4EDu/p558WgY0Lw0cEMLBCh/zUZg3T6OPdnH+6WbZctf1Riwe8OgGFW19dO7XXH2N+Kuu5oCxKjORljuaOPYnBoFwYLJj+x3k4SXmkwNuGj4cRTeP2tDwmDDdAwcOhKvgx302TsIejImiljf5xJEkVtvfg1iBZAd4JXZGucLIHWiRVcxUAHQAq4MQ7gzrHU1y8Bgd08CJ0ICBYdGAvFxZJp5HSTX+p2TwXiVHd5iqJZdaEp3brQRTUxR/SuBk5zu5Q9amTRt5ZW8N3I1Us9tuu+Io8kHqxMuP7fzRRx+duAt+Gwxief+M+Z/yzbe+dWvUb+SfO862fn+KBxV45/LFAWlnz4e2WrRoIcefzj7nHMkXF1W448GJChdlmEcmnav/zDd3MXkvi7uqpL2L0wPcxZ8xY5akiSvZm0hHWfC8w8VdQRruFklZFOaK2/5wkYNHJ9ledVda6b8k/+on2IVQ33ZkfWsvaWd9+/iTjwTWnZSsH/UZ7GL9Q32Gz98IUXc0l8eggicehg37qCioWODZQCEzpoOytEdn1TN3uPgSZVhccTjed7J//MknsPPzuKy+fzk5HKPiseTrsDMrhQPPN9zAHegq2WljWLfffpssUMS8Dw1t7dn+uNOIuPV+NXnHj8dEEziZ7MHNlLOtcgdVy5/Hwji51fi4k9S8WVNxX3jRRRL3448/kdFbPFbIiSnDfvSRRxEWTQEvS64lO250adx6dC1w8DcYDuC4A8uFPjFIHE+18EQBw+JRTO7+afsPTPxN5d+cR2exmBFMQQbJiUP0H9P3CHStmjVN+qhPqnBknDtcXKRYdZVVRf9pWEfh6B13XDX+bjg6ty8m/Rr/aaefhjaNBVEkR/Qy2qbo5US/P42jmJQTd1y5AMiFyEexy8edlqAfC/KyLMtWyizNFnbUMOBFudDMnVuQMngUuj4YlXOYGPHKB4++T/n2m5AP7ITcBD1ezpgoQC74LdDPcdIgxhCvx4T4yiuuFPSC4mf+ucBwQ98wiaEnnoDgDg318y5o+9wppLGy4Gmhhx95GLJ4V2jPPvOs1KdQfxEo/nMxtxUGhJRRqvfYZ1Jvc6KJCQb4ZDG7WRMJR39GjxqFCWIVrj/c7vkSOXdBwWpM0H86edGj9GR4Gn0zwx+BBaxy+TeBQNY3C++rg16x6LIw08LFRY5RGD5fsaWRNokxjpobsFhB/UPD+nd5nytwHBptEoa7vPT73fffiZsLRnTfeFNfcTOfmfGRYEMZcXLIXWXy8/FClYf058l4h312gyUWl4URej3mmF5x0Z1HOemXfckTorselSP63MWXgkjiqmQxPl47Yd0gv8ZP/nLlXy1prcJEM+g41iPGzyPCNNSFS0S5FaRvF10m1HBNoimOw6tZAbr12muvTZwFfwN2TINu/UKSL/VYFkyg3+ZCv6H+PPL8hEXoAABAAElEQVTIY+rdr4VFkkuSBQnqD564mPLNlNDumqxi9IeXU1vhek3wznHt7ljET01BdmMvSDY3eJSXO+7BFORqGXdoVf9YfykMKAoxAhmydWQ5svJPw6EPcCbMi2r8LXDqRHY0ZaKJo7Md08eA4quz4egsJ5r4vAkUURCNirFIgEJNfpTF4gAXo9UdbPtrPSpXwKWxppDlFjjrJZKL0eoOtv2NXgAoV8ClsaaQ5RY46yWSi9Hq5vGRM888PeOVR6GowD/DJIGGD12sttpqSE3wdTVWkFeUFTAhy5FJnWhqkrmjycGwGh594T0LGp6z54CAJoRYkJ2Kq5KJT6pINZVe7h5x4MOdFq5O7ozn4cua1It0PvUxkOTdDKK5eqQTTR5T2WjDDWP8zHOduhyc4/gGVs6p7HgUjYbHX+jmxC+Ygm+ACQl3XdToZ1aGJfcyFE8twpUt3n3gEWOG0+/WfnIckS/ZcdXyBBwLI/4W4DWccC8tzQyVAXfOpk6dJndhOCG5FfxqwuQVrtRLIMEjJxbvZS7jY8cS+d8Ox1vJ/sMP38mxzvOwOqiGx9S4y03Do1IMg5PGz7iDgrTyCCGNTDSRFp1ofpN0igMHviz08bgHS369fyJI/DDe3pde4rnQoYkmjp0IBzGc6Eg8eH1Qjda/l3Cshvn/Bh0ADXc0daLJgPm5iZVxtIhmYDJg+RoDFh7f5QTsdOwwMS6a/tip4GoxOzjiZAEBE7VglEtd6g4p4eovj3wzftYRrlKvtcaaiV8vLzEfnEw06ZOTfZ1o0r3tNlgRRV6Z/w8+/AB1IgxIVlhhBblPSzzvpPKo1Av4/AhjHT16DAZhA3D37D1ZQOBuE481Ulbs4N/B51w4CWLnqoM/7jhwQsk0csDWoAF3NL2/A534yqtQTuGuUvPVVpe7VkDIsS3uDNNoWaQP3YT889MxlOdTTz8lfGxfp50aFnKI4EvUPzf/5GeaaLS+Uf/wHjXzxoH7NOxg1qlTV44eK2/wYX4TAvUPB0tqWnKiKavRHsc8wx3NN15/zf8NOmDdddaWQV1pmFkMc81BM9MTHgPS0MMdzebNm/tDDz5E7itT/syHGhtS48Yr+muSwRDxbAcNcPSbq/Rp3j8T/at5ZzjPPMuJZpWc6NDwZLKHthAnviCEiWYDjVoGZ8txopkYrtjr4Owi3Ctm/adu0TCVjzs9jJ+LZjTMPz9hwIEYeceP50464jb3PW0gPCbMsLkYoWHz/nErDADovh9HCPkYmJa88gCRmAJ2NJvHcgy1zkv9fwhHU9n+JH2Y0KhZG7vqPHpKw5MozTEI5cCf1z94v53H2GgYF+/GtcNxfI1/D9xdTQeCHjvR/5bFI/KnejmcGrBp3Wzzzfx6+IyDGEsAgq+AMo0/TJ8e6Mnvspi49cWAl+wFLOCQ55FHzYBXJsxhosl88G7pDlh42X33rrIgOwdlU9YUxb8n7rBxV7MIjbtwR/gnMTH+OfEzHg7QeX80mILci2Vd5KA+TM4DZfNNjSwSblqMh699Mp8/Tk9ftecbDzicL3V2eZw24SkImnSiGXY0qbeaNOXkhUZrgpcJ15aYTPMUFI/Tl2QU3NT7XFDiY4dqVO/zuHw5+Qe+IDUu+vHaA+9TK97Kc/SY0YJm211vnXVFZ2k/+W7ST/ItgLD4E0LgaSVeHwrhFGQXrWmz5kIMO5p8dXaauDnpotx4fJOGC/G74D5psWEZ9cXiBXdeqSfDHfvAxf6eR5fV7IudvlaYGLFdHI7+a2z1WEkL31pgXEF32Vxaqafy1/CiDS9hohkmzYpnSOXKf2x1eHmaJ1fIoxNNPbmTLpqF+MOi2XKJ3MJEk6+qq1kRdSidaFK3Xpro1nnCIjLCSQLGxYV65vWxR8MCD3F2IY3XKtjuqD84UT8fJ0HmYnKqktgWGye8P6uG41rqH2uWxgkcPc7M+6SqXxjX6aiPm+LYMsOjCb8CJj9ZTCr1FLLcAme9RHIxWt3Btr/RCwDlCrg01hSy3AJnvURyMVrdwba/0QsA5Qq4NNYUstwCGy+cN7bB/JFfL+FXTPSOZhd83mR3PTrL52i55dkKuwA60bTx2qQJbCKQBHJkTpPBJ4gSnHBmflLvhrkEDAj5NbQ/S/xcpWLDGzFiRCbvVFSLLVZbjtawSHm2ncdbpmL1cQp2hnbeeSdZKX43Wa3jxeslGyyFb/D9JMfSmP8N1l8/PBiUyIWX9Pl5BtJ4Z5MrSfxMBQ0HIry/MHbsWHFzZ4CDERqtUjx28NHwsPNwIu5eceWU1MATQXELHgV4zjnn+KWXWlpWXXl8lEckj+PxOXjj/ShOpvkaGvPL1z2pdNjBcXBfhbtqPFrEyW2/fri7h8HcCZgozsSjHxys8H7dtclFc6Zi8FvYNQIPlXkBfviUNneIZvw0w2+IwazWp6boLHnvjMfSiFcCJ+pcNefOH9Px978zHKx2Y0DBcKj0Nvzb3yJ/E/BfhIeEaHgPcv31NhA4/MBjEuH9OJ7GO0ypIS2dPOhrcBxwcReIsmB94ERto4029l9M+EImUwcfcrD40yNkr8qKY3jQiOl9+KGgrMMxThefWddB/csv62pwiJ/p4St+PBanhiux9evXl+OSk7H7wzI4IjmezE+Z6PEsPUI4PlkI4Y5m2zbtJBhOptbDEbmLsVND83RyBJcdPw3vxGyA43u8R0NDZc+VSBqWKwcU/E6flhfrH4/L8YGdpLoJL3LhP/5ouJTVM8/2FxqP0IWdfuYxfMeu+97dhZ8/2223rQwSNBzu7ByLezg0PM7M+1007Lx4rJaGjzPxyDQfz/p0xKe+B46jc5WX8WuCeIyZgz6dCLL+8SVE1hsy8jEvHtOheeUVvlwbVoz5QFRt7Chx4sGBGncw2Wa4690Ol+h5tJr5p57gyu6ROGpIw51iHis695yzxQ8nSNOmon2hbnOSL5H+wvyzjXG3iIaT94MOQn2D4QNVml7mhZ+1WWutNZNjZQW5z8rB4vvvfYA0nSN+GD9fWZRPLsEPJ6k8ysrj67wTzp1c6h/ugvBIMnUP5a+TEJa3LpSo/pGAERa/B8f0PI+Jv8p/2nff4y5xTyyerSknL3jvi1cNOEiZ8MUE8cr6H8q34BtjMMTrCDQc7HC3Ve+PMu9caGP902P0urrP7+Fx4vYljuCDTN9yj4np4akH3oljHnh8k6+Hy+ITGK/EHbOloAeDCcfNGuOEBY3qm6C3eHRuntSbOXPmYQFquuSVn0USg7B4n45H7Rj/JNzvYtxPoo19NPxj0VWRERmgHl1qyaVk4Ek808bjgVejv6C5+eawU6T3vQWZ/DD//OMRU94vFwM373byxA3b3PQfvpf45YQCEwTDe5VMHz3zTtfee+0dCPGXAQcH63w4uhbcnORwQEnDuPlolh4xVjntL/q9IIsCfBSOuyJcLGL740M2NCwflhUNrzRQRvaaQgHtpQFOxHDyRMMdPvJEOQPHV9zPOutsJDXJR3fkI0k3/QQw6N8zMcGZPCnslpMmVGYARvpahP3ggyE9pPF+Kr9vqHJfUPzctV1yyQb+CugJNQy9bZvWku6X+RBKkjYuEjIv+vkf7uLrnbeHH34oyAI4NcV6bxPp1/lwT1hU4eImDRe3eQ9/BiaN8j1hwRbiLlmrlq0FE36QmCT/mq5OuBO6wQa85/iTpJX3U1Xv81RKsfxT7yFjPL5Mnj542IomYAtyj/kfqJ/zsCu9wd9C2yX1uf6J3np1kPBfd9310LVsk3PFc2iTSwmNP+djEYQnHWh0osljtix/Tty2wmR6Lo560vBeX6vWzK+mAhDmPw1YRlKnCqInpT+HbmJ/zvq00UYb4j77F2g30/0yOB5rH72RgPHDNspPlTRtCt2FE0CMn30fr1W8inLWT8CkMSepCAgJ5ig8INRwmWVQBEAafLny56vpPC1zOxaWGTf7Isr5HBzF5kkIvjDNPop9GsP6j+iysFBKBBePuIup8VCGl2LhjuVPXcY3LlS3Mj0NGiyBely53QX9cZZUHx7t5+N80Zi8EGzVsoU8ePUl9NykiZM9H/Nj2ofy5XHEJeNanGIbO3asBBH0S5eYVm48xAWqGEkAKDoayj+aEjAg5NfQJII0gOg9AGDM8BaRE2fq3TCXgAEhv4a2sMTPeWNrvPHDiWaHnXdNJpr4jubue/que9nPm3TYSWak9CAmkxliLCIpEosKvoQvokuBJJhIiL5KgBIWi/hzxU+lwV1KTo7YGH9Ijmmwce66667SYHingI/YyLHV1m3kwRneseHAlYpqXzx2Q+XACWOdOrU9H2Hhihpf7uRrgksvs7Ssht97z93SsfLRFx2sXoZdUg7KZXcTu0APP/SgiJu7ENwl4d0dvgKnpmfPA+XDvwfi5dP1MYnlEaUFlf9gPDqxDBTexlCwnEhxB68B7uBdhEkIJ8z8IDgfWVgT8R+DO5vczeLrjex4qdxr4VtQvBtDRcWz/VwBfBYDnK222krkw3tVvFAeTMFfhh2tJaBYOODma3/34NEHGh5T4YV+ri7zuGQ4Fsn7gEvIYzI8UrHtNlvH45I8usvBL8PZDKvROgBZAjie8efK2NbYDdPvzz344IPpMWVTJbkCx52SxfFgCneuxYDOe65/w4CWSrHxio3lIYGB2CXj0UcuPPAhH+4QrrHmGrI7wJVRrpC2bNECE+n9Zfd5dXRGL7zwvEz4GQ4n8Xy0aTN8UJ11in650svJNAfHPFLKR5fSJlvAQPMWPG7TEA+jrIZXByEb5OnBBx8I6cQvd1LWRDzs+NbBSvGH73+AO4qD5FgO4/wbOnY+tsJHangviIsF2+Cj23w5jk+QcwWYR3gY/waYpH8B3u/R8TJvG274N7G3xeSPr9my/qfluqwMIDQh7Axk4mdkSxonFFyR5C4sj70yfsbFnQfu4LNuceLMY2pn4S5oHXSYrH/c6fkXBmQ8DsejuhwM8nVBLjZw8Mv6rcdDV8EjDswrB7Jq6wumFObrKEtOTkjjoy2ffPSxJJuTTuaNO9M7tGuLF6WnhOwgD1tssQXu4HYSNydh3OH9BAMJTrAvwn1NTuTZrq15FLstnDytgbayDo6HcveAdzWXRvviQsYOO7Tz26DeLIn8XYg7sCedfNIvyv9WW24heodxno8dWk74+dASB/a8l8l4+RmNkSNHyQSSjyJxwsmHOmh6975Udm3lu3tw8/Gwps2aSt3ZGY/icGC2HnbleQyY6ae8uNNDw4EHy4354L3DUN4bC83+3INTD02aNBW/3BHkUcv2OCLHcHhMdlLyMiT9cAd/9TVWl/bHT0xwMMpvQbL+czC0DHQjF5NYRnvtCZ2T6N+Yd+iLHvv3wEIZ874GBmBX+FAXqqR+8FEQbUw8bcD75TzC/ASO6a7QeAVpg7vg1AdfQ2yMEyDM74E9e/oXnn9B7o7Tvd9+f5fs8Z7xEovXl7bCvNwDfc0FJ+7UUS4cfA0bNhyvzB6CcKpEp96HOsz4+YAYB4p77bWn/xGTgLR9S9AymW8K3dARfQpPkFD/s4/p3/9ZkQN1xSZYVOFLutaMHTvWc6eK8bMubLfd9r41JuS8Q820V1dXy7FWwiF9H+LV0kOFfxl87/D+B+6XF4WZNu5Yc2GO5b8fjpFyYnEuFiWoY9nH8TXtk086UeJh38MdCJ4CWGrppSQ8TvxpOMlYHMf4qFP4yA7lRMMH47iAxd3ZDdZbH4Ob1qL7uEjC79IyD+uhTb+HMpuDwTNP9jDd1LW33HoLdLyV8zBZgCNd8gE5M69169bDAy5rywSA5c0dKe548XuTzOOFWHRE1SqRP2XNl6s5GG+DNtAG/TiP3HPiQPM9Juvzi599T0hvFe5DLos83yv++HMfdqTDgi9dYfzzHU7cdIJuoVz5gE1rxDlm9Cj/LCZeq0IWzBf1m+708TGVpmhTB8EOeu9R6PhXRMasG1xc5eLlUBwfp/5ceull4h07xsn8sd/io1rl8s+UkY/fxdyFev9vGwa9j8WKMWPGSv43RZ/FMuL1Fl67qGRuwtUTviHA9tgBi398/I0PGAVTwMmS833d2kFvse2y/pD3Ctxp5sODjGMX3BVjm+SpLMqC+WebXA5jCbp5p/DJJ5+U/LfARIZ9fdu2beUkETP4r3+dIuMj1rWOyakuHgvnIib9L487q3dj3PHSwJdkkYZ1bDvkdSfknX0pH/eh4ViIdZOLY+x/uWjAB+xo+CL16tD1nLhy/MGFHk76+Gge27/eO81WNpRFgQ+L7YzjovVF/3AMxK8UkK9S+TO+f+MUTEPoQ8qK4y62Qe4i8u51Y8iN+eJL0Vzk4xsLdB9AXQYd3wh1MshtXyl/7miy3XAMKrqV4znoVi7sb2/b3S03y2kF1jEeqaf+4cI3w+KYkX002x2/rc7+ghNvfkaMOpP6g+ZMvL7OBUv2Fx988L7Ef1nvy+QRQL7mS9lSjzD//DJBXeixemjHol8wZmO/xvgPlkVVqb0SbsWfEhaL+HPNPzJ1R7Jh81JBAiUsFlGafz4GxBOxO+AKJnc0O+6Ko7Od9DuaGKvtsmsXKJA5Dqs/bs68eQ6rhu71V19GHUAtwB8arAHooImUBAxu/tKIH4FSPoXUFnLmJ1AsPcIRUA8GIWBw85dmYYsfBe2wRuRqIWX4lp5DgwoJxS+UiqtTezFA3mGhzmFFSdKPnQ23woqN3ewZsxyexHdLN1wm+sFKs1ty6aVc3Tp1HTpTt1jtWlIOhYSD+cfk06FgQasj2FlzZruvv/zK4fUth0mo4LCDh7hqwe2k/GsjPJUsdkwdBsyuWZOmmeIOUSgXXAIG9/Qff3SYKLumTZpIIUz79lu37HLLixdy4PVRh2Nl8OPd9Ok/OkweQ3D4xYq5m1MouIbLNHRfTpzkVlplZQl63py5DjsGDlXbMX+ENUFYeXMTJ0xyTZquChzyi1+aKd98DZ1Uy+GxCrhCXknDhBfOKodX8MgWDXY63KRJEx2eCY/5J/HrKd+4xSAfPDSkwSR+Qn7FIaCXduNq1ULWgMAfy5HpRH+Av3muFtwFtC3GzzzgKJr78qvJbpWVV3G40+gaoXxZVgzuG5QTCwUdpvvxh+moH7VdvcXrS92pA78sN9y3Qpywa9WGm3WojpsNN+MlHhOvJOdp/gnho/MOK9UO396S5Kc/3s2GrHGcxjVv1kzQuPOKiuERR60QZ506birKd1nIFSvAbmnUwXp16yNP3kG/o/4WHBYtSuKfNvVbqduUu0puDsu1DsqVJ2oQDwZLiLPK4aVV12O//RxW7iOvAuhc3YTPP4dclncYBDs8WuDwEIPkf7FaiJeyp4GNhQsHwcMrcw088oBKJEFR/j/9NMPhHhbqKuq3GKQfZcL0B4k56MO5rs5iKMck0VC10qYY9lzUGZaL45BG5qVVDi+JOgygon96/PqbKa7jzju7rbbdxl13zbVol9QCqcEDTG7dddcBIkSSRIWymO0wmXLNm6IsEiQmF+5b1BW8Si31CK/mom4u94vzj1f7HAbTrn79epIQ7IaJDsBxOvf9Dz+4eijnevXra7QOR7IdFqocjsQJP+szjpWjfaEdSdpQxyG7b9DecRTZffXlZIfBNloOZIg6j4UxqZsYGKIIWFdQLvBHvYXVaYcHehx2f8Ed2jDlg9MNwlsH9Zvtk+7FkK6gu1RKYEzip1/stkpbxRF+EGg8ymMlh103t1unzg7H5xx2tzLy/+or6gqHdC/v8JkgaT/1oZ9Z9zHAdIU584LOoZKEwQTWYWIoekz0+lzyVUn+q8jPNoAyZnpri432g/rCvpX5Z3KDvpnssGAkYfJnLsp7MehfLDqgzi0mdY/xV1HpsT6jfWAA56YjbrY/5leMyT9BmokTvhDdEfoZyBR5YdusjTbC/of1FidMAjN/ET4WciR+OpXC1iP5B3+go/zgX+u/6GW2X9R/fOrBYUKOstxP8oKJhcOg33Xdo5s7++yz0EzY01RJu2EZ4iEsho648aybSAXhAMf8Y5DIZCDN89AXTHaY3KaJEgr6D9ThWTNmog6iP5mP/mH/ioUByT+bKXUI80/9y/qHh7VQvtTbyC36DEz23PvIByaXqLNzXPXosQ6LkW6Pbt0c7rK7a6+5Rvqi4447XlIiSU/av8qf/TX16MorrYh2tHiS4pAFluH84mf+2f5Y/xgeyyzE4dzU76a5RugfI4Ihg2n6jz+4mTNnhb6VKOSR/SXrn7Y/6kGWq+gQ9tFNg95j/4QtuqSOBv3H8sGpFocrK0gLxipMCDxTdltvuaXDwg7adDKGEVpg4C+N1p9yel/zz3hZbtTbwaRhqH9ipk751uEhHofXdRM+WoH3a+gtxrZC4+Uxfpgu+gELAZJ/1tFQV2tL2VL/s/9lm6J8WP/mFeaiLbLvRt0H//eoU7jLGdNP/c/+n+mR9pzUy9mzZzlcj5BwIGapR9R/k6D/MaGU8QcW50RvVFePc0cecbg7/8KLRC98Nn68e+rJJx0eMHJYgGBmxEzG+KMR4mb6Nf+t27Zx999zn4QZkcId8k+5sP9HtUUe5jnqHyyoSroqlT994tV20f+LY0wxadJkjAVWgh/oWBCpFzhupL5hedeuCv05+2f2r4uBzvEHy38l9HVnnHGm69ylE3TrCm4J6FYapp/9V122M5QzvEj7Y1/KfpN6A8diRW6UH9s/Xod2Q997z2Fxys1Dmx09dozrc8Xlbs+u3dy5554rgU5Cv7Iy9LmWPwCMjWc7fNbENVm1iegY4jj+sf0/46caVf2j+oW8qQkyDb8BG+EIKLdBCBjc/KXR8rPpVB9qB077m4ah/iNvBJTfIAQMbv7SqP//z/hbtW4n9Y/jUvZfOKUpbaoWbOrXqo67deanLkTxzoMSZIN67dWXJcHsgKSWwBWyYoHAEn8jQ4Ip61ZkYmctE4mGAQbWEhj1mQIJj1qRIUGUdSsysbOWiUTDAEMevwhDJZfLH+JIW3JSUWBFASWosm5FJnbWKhMGGP5C9Q/3iTAw7epw78vhKBLksWjkH6uy7tBDDsMk+nPkayu3xRabY3FhisO34ly3vbq5vfbaO1SppD7ESrWI5F/yI3nTDAZbyrtbV4fXt91WUt7gtG3rN8g/J75nn322w+NECDsbv7ZZxar7ryJ/ze9vkX+8hO7wQiwGnZ2D+BAodsCxoPiDO+eccxLdpjEldtZaKPQfduYdXnB1OJ0Q9Q+OSGIRYrrDLo27rd9tDo/4YZFt6VhNBNCsKbasW5HZjCtWy0ODWNj0H77B6cZh4oRXZGMSIxAzkWDKuhWZ2FlroSj/31r/4GqG40IePokU9c/nn4932DV0uJ4k+k6lYssfp82wCL2yOwH+acrxJJIOVmRIsGXdikzsrGUi0TDAMJ/xR9StvaBbNWhNVFm3IhPbWM2woHrdtde6Lruj3SUGx8dlQYn6Q32mgHIldmSYn1uZTMTobxSbAhoGKPPJfyYFMRD1CzvTl9GtTImdtUxCNAww/Enib9mqHRZpsdCBxbvai9WRBSRurnABRxbveWmTu5lcScPRCFltHaQTTeS3SDSJBLKW8qTcWTpdwpMyJgwGYQYV1rdyqG1pCqe0FFKa2kIpIRtEHn+s1Coz2iohtS1N4ZSWQkpTWyglZIPI5Z/LP1GqWmdoaw1R29IUTmkppDS1hVJCNoj/h/rHFfUPhw9z1WPHYhdzXbfOOmubnQGkZRHPf+xntVBi6QLxO8gfx+IcjsO5XXfb1fXufZlbf931IOMYOSPFX4L4HeIviclEF2gG8SePH99nllMh3PXjajY+oeHGVle7W2+91eF4XJC0ye7Cmv8OO7Z3EydPcuciH9x5wXF5N25ctbvllltx2iY9VVRStoIoyWBkE0oJ2SAW4vLHZ0xcm9ZtsUs1C7u97znu1lmT5iKFLJ2wUErIBrEQ558awqS0OGuGVsqFO/gOVzvc+edf4PB4kxv67jsOny9xuFLktt56K4T159Q/1K17dtvT4cqV630ZdOt60K1GEsVCEsmUiCdFtN9xRznBg+sW2OlM2h30xy3QH2x3KWdxyDbWylxCKSEbxCJa/1Rav3f+W0E/yKQSk0tONKk7ucPOSSbLE0dnk4kmt85xnI1HSl57ZWCs/5JQUx6a8GCXEkoxWR8anseoIxzmKE/X9qf8GXf0UhpbKSYypwCY8vhz+ef1LzPqzrSPTHur2KhKCaWYNNgI5e0v1z+/s/7nEVZ8yw8dHo7eAsbdH+wc7xWqYF7/fvP6x+N4eGDKjRw92uGj9A73BXGsHcday5mFWP7fffe9e/yxx3B0b7TDfcqQDzmeWyEjGUVpB73l+BPcQpx/SSHSZ7PF44n9+t3q8Pqqwx3DJBO0ihjLYgy7gn+y/JfJZpKTn5f//v3746js23L9oA2Ow663znq/efszorVFp+is/SvlL7oVp1A4scDBa7fO2qluLZVINmpxlYkfn5dBu3vcjR49Bu1uU9e6LfQH2x1NxUBLCaWYEETmt0z8xfSMECsGWkooxWRCDo5FMP6WmGiyr63CpFKPzvL4NY/GJzuanbCjiUkmJphzcXSW9yJe1x3NCrP8KDoj1QAaBJnUKTZ/iMLwPsErWQiBiAZodFweP4RRYTKQyEsbRJBlkUTVKTZ/cvnn9S9vf7n+gSKAWlH1IIohKIdc/+b9j3YpqCCoIXn/E5tHCWAaUAANImlPIkxB8yfvf/P+N+9/8/4XimAR639byEQTx2TxDgGP0PLuMO9By3Fa2GFHE0e65nrsZsqOZrijmVWZxmVA0Zy/5kfDUtuElUUZlwENe81ADUttE0oWZVwGNOw1AzUstU0oWZRxGdCw1wzUsNQ2oWRRxmVAw14zUMNS24SSRRmXAQ17zUANS20TShZlXAY07DUDNSy1TShZlHEZ0LDXDNSw1DahZFHGZUDDXjNQw1LbhJJFGZcBDXvNQA1LbRNKFmVcBjTsNQM1LLVNKFmUcRnQsNcM1LDUNqFkUcZlQMNeM1DDUtuEkkUZlwENe81ADUttE0oWZVwGNOw1AzUstU0oWZRxGdCw1wzUsNQ2oWRRxmVAw14zUMNS24SSRRmXAQ17zUANS20TShZlXAY07DUDNSy1TShZlHEZ0LDXDNSw1DahZFHGZUDDXjNQw1LbhJJFGZcBDXvNQA1LbRNKFmVcBjTsNQM1LLVNKFmUcRnQsNcM1LDUNqFkUcZlQMNeM1DDUtuEkkUZlwENe81ADUttE0oWZVwGNOw1AzUstU0oWZRxGdCw1wzUsNQ2oWRRxmVAw+7CjibvaPLoLHcxMdGETVgetePRWb4iJbuauKfJF/EGvToQYRTtpFWIICyLG2IEIxBXzlNMmdV0m+rowyCtZ4PO42dRGeFEMAJRmikml7+Vha1OAS5DLYMSXsEbYgQjkMufVRR/qUSycJC5/bWcCb4MSiiCN8QIRiDGm2Ly+K0srOQDXIZaBpXLHxIQuRjhRDACef2DmPL2n9U5ae0ILS77W4ZaBiV+BG+IEYxAXv/y+pe3P9SBtEVk4Wzbo8tyJtQyKKEI3hAjGIEYWoopG0MSES3LmaDLoIQieEOMYARiaCmmbAxJRLQsZ4IugxKK4D0mmu3kiKxMLpOXZ6sw2eSxWb4AjB3NTviOGx4BwpFZPgjEZ9Bf5x1NYzQOtUlSWG3DXgRaDgsrG05584nzZF5bnqNyR1WOX0MOtuWwsHLl8efyz+tf3v5KtUWqIXL9U2miUE6jqtxKJVqOO9e/uf7N9W+uf0u1heoR1RpqE6+w2spbalsOCytnrn9y/ZPrn1+rf7ijGR7+CTua4bMm3NWskt1NfN4E39HEd4T4zSB+i4d/rw0aiFaYzPy0Scc2GgFtqb/Ijr4BZO5jZuKJXAg7gSMqAr8oXmWOvgHk8aelnJVzlNLvJv9p+A7fy6++4oYOGeL+feqpbkl8s0tSI1HXLP5hw4a5wYPfRsWu5fDhby3yjB1DBpCX/x9X/mzWi7r8h+GF2cFvDZYVvUMOPkTq4a+tf3whvN+t/dzIUSNdy5at3O67756p3wty/Nr4o55YUEQV6Hn8SZtbSOo/vyl46y23uE9HfupatWrtdu+C+mRPyCwk/e/X+N7pq68OckPfedtdfNHF+AbuFHx79VU3dOhQuC+S79NWqHIZdF7/Fq76p6PMqFekgGIpoewSOKIikCnXn+uIvgEs6v1POZn8XvkfOXKUe/PNN/CN4R9cr17HlotacL9X/BUjLCLk8f8+7b9lK0w0eTeTdzTlkyaYZOpjQLCxo4mJJj74zg+p8kOn4ejsy9q802JCCdmGad8JCIUXizDqhhAIVowwaU0VCoM0vGkMGaiEA4g/e/x9+/Z1fBZ65KhP5Quyp51+ujv00EMz+VbHH5n/CRMmutNOP82NHjVKdrn5HcBtt97GHXHM0W77bbeVJP7a8v/i8y/c4Ucc4fr3f85NmfKNfGhd8067Uv7feWeoO/mkk90TTzyFZ/OXCmnBLz/6+9BDD7tjjjnGdWjfwd2DDwCHQH77+jdhwgR32mln4IW0kSKfaXipcLttt3JHHnm0GzNmDD5UfgW+DlzllsDHupdowL8lXfe993Y9evSQ9GruJk+e7EaOHOnWX399+dB9QjR5SjEzf5rhfpjxk1thueXcKJRLjx4H4EPWs/Ch7pluaXzEuzBvtttmm+3wGYfersESDdwrg15xPfbrAdpS8tFwfqS4Dv5++uknfMyb97Bfw+Q+yC+NJUDt2u3gpk6bimR6KZcBAwZICz72+OOwCPWqJL81VrDefvstNwsfJ+e3tzfacH139933ygfP+1zWB09b13ItttveXXvdNSiG+bf/22+/3V111VU41YAPueOvPuQ2Y9ZMN3PGDPfss8+65s2bS5y/VfufC33XpVMXd9zxx+N7ZrsUZ1/crH+X9+njWEb8jh7r0i+N/4H7H3DH9jrG7Yj6eP9995l4vDuw54Hugw8/RJ5ryQfl7wN9jTXWiDyMP6Mzk/h79jzANW/W3DVrthrq2+Hy6YWmcIeP3ic+1LPYv339ZyJ/Sfu/6+573JWQIcuXhnWSX9DeFK+T9up1nFtzzTTfwoAfzYK6ayL/EMgfn/8F1X/N4wMPPOB6X3qpq1evvhsw8CW3xOKLK0kEMgGfmeiET7Xwdb9HHnnMnXLKyW7EiBHou/FhdXz3vl69xeWl196X9nYbbrSh63lAT/fhsA9QkWq5evgQfFrHUukeAJ7mzZtJGzsC+njcuHGoW81qJP+eqNMfsk7jX9369dx999zr1lhzdYQ1//afZjKF0hQG3KefjHAH/+Mw9/bgt/Bo4Vz3ySefusMOOwQLi4MdvwPO+j8U36U9+eST3ZNPPIk6hu9c/kH1v+8N6OeffsqNHPEpklBAX3qGOyzTzxfnLs23QiUcQPxS/fN75J+TiWuvuRZ931hXXT3GdejAvvZekX/UWJp4sf887U9lT1uzEHELify1T1D9W41PgEycNMltu81WWGCvE5KriYfNvv5NLHa22H77mJUyuZPPQL3//vvyKRH2SaxrVPKzZ892P/74o9tn7+7ukst6Q998gnHhaNepU2f5dNGee+6Bz90s6154vr874oijoMvXdANeHBCqgqQjlD/nFp07d3bHS5+7MwLXnJhkGVCzEFFALAz1X1Ot8mf6QlpNihUU+69R/1u3aYPHf3BUlnc0+dIsxpq1UI8Ww3c1ubuJJ6s7+w47d/Rt23fwrdvu4Fu0auPFFArBrvBb8POjK03tJBB1qm3CKAlvEYv/jttv982aNPX48DN2kAv+0ksv9bvttmuU7mV9LvMXXHhhdGOlOYXLQCXyyvCo32D36dPHX8Sws2j4UAShAGMXxjds1NBffPHFMcTxn3/uN9tsM7/ffvtFnPJHRAbQcNVOiOpM7GeeeZpN0X///fcx/hhMhfwPGfK2b9eunf926reR1QIdO3b0Bx7YsyjCIqemo0z+Y1gV4seuqW/YEPK5JJXP50XyeeKJx5GvKv/cc/35orN/6KGHPCZQ/tGHHwnBI358nNi3adPaY2Dk8Z05f/kVl8eoBUjinz1nju/Xr59v2rSpf/jhhyLP9B+n+wYNlvA9e4a8Uobbb7+932KLLcBT8Df2vdG3atXSo/NAVQoZHjjgJY75/OmnnZ6EEwWRkT/ubHt8LNp32m23GJ8CZ511lsdusfDPmjVT0r7vvvsq2Q8fPtyvv/56/iXEZeuXMGh0aiMUNY88+ojUhTvuuENQ1WPH+u223db3f+45ZcnYv6b+zZk912OC6fv3fzaGWRIeZIZBvz/p5JMijwVK+C0x5quANr6bP+CAAwJVs5vY++/fwy+55JIek3/4UGISUJn6V11dLTKaOHGi8H/66YhMrKlDw1JbwyyyTZw/J/40/FRfWFwKa7xqe//kE09wnOAffexRqRafffaZP/300zwWP9BOnvtZ+U/D/+Xxi19Njtr/D/mfNm2a7969ux/81ltpc5hP/Jdffrm00dtuu81mV+DzzjtXyv+9996L8tp77719o0aN/IwZM0TX4Pt8fvHF6/vhw4bDT8Hvv//+UsdmoI7F7CbxV1ePDfVpQqhPmLSmcZapfymxsvxDfA38jJ9mSPzWT3H8DGXQoEG+U6dOgKJQgpcy8d9xx+2+fv36Qif/nXfeEd1EDhkyRPqGqbFvKA4zBJ1GldJ/TvyJb8/+9IILL1BnxsaiGXR1Ez/9B/Tz0KOhn0/0qEandpoQQBEZwjP5vwzxXWjHBuAo4c+kQsNSOyGqU20TZ0l4Jn4N+ssvJ0td+t///ifxD8dYYfHFF/eYiChLpYgCXuNV+xfGbyMpSa8lxnBjRL8q/oVF/jaLs2bP8l26dPZdu3b1WCDyjRs39u+++27CovkuePbX66233gLzv+JKK/oHHnzQz54z2/e9sa/ohb433OC/mfKN79Wrl99zzz0lDIaHhXGPhej/Y+9KAG4s1v+hbJVu+4JCixYqiRZ71pCdlBZSRFRUpJKle60VUlESUmlHoUUhKlpQSCWcTyhRFEXWM//f75l55p33nPO5de/933vrGr7zzvLMPLO9z8yzzLymQIH85pUpU3y12rZta+rWrYtwhF8T8UULU68u1lyu55oceeDzkTZLlvmnZfGZAR8m+rLSy3RAPtp7Msvbjz/Wo+mB9P4n30j+8eJadcBPXmLqQYFZv2Fj07BJc9Ok+WUmcUk9y2jWqFXXMZpV/TCxcN2kij8dWxCOhsxFpkWkBQVI4rIkhFF/FvzXtGljatWq6Xts167dZuiwYf6lq1C+gunatWvUL9qNwYQP+8UXpHD7iCiPsm9xZYdg6f2/G8Tg3HPLmuuuv96Daf/Pnz/fnH/BhT4+3ZNRt7SItKBkf+PNN4WgkUkKXQir+JkexofwYRo3LW3atskA1rw4h2zYTp9HEyTG/oRRIf5du/cIw339dVH/aLZ56J8LL7hAggsWLpB2ffghNpfOFQOjeOedPSXEzWfhwoeajxcskHp27NjRHPaXw3BWeo+kh/hJ2G/q0kU2n1NeeVWLk+fxxx+HzbplGplnGOYTGffVX682r01/zYSMyHcbNhjCV6pUKY4nROZKZ9Q555xjrm9/fcb7jw+wmz69eztIY0qWLGluu+02GZucZNKULl3afLr401z732eER1A7/NyIs+4LFnzsx/m9998z8+bN81kcqA+Hnoy0tIi0oGSVuCwJYVQ4/mF8iJv+jDQX0ahRIzCa12SmI0/3Hj3MCRA+pbuwrBD/1GnTDbSCBlYn6Vkyyw8LAXRaUPJLXJaEMCrEH8anVyAjLS2Cc53j+wEZLucI0v9v/WXz+onfJMXr+q/Cn1YdqYHEZUkIo/5Z/Mkkmbk85v1gHoftTx+YPn16m4MhfOB7Sqf4Kfwpd1556cPPIOxSBw2BOfXUU30xsBQRWjFk8BAB6cE5dsKJPl3z8Tl12jQw/3mEQQ3j/5n2C74TMafDQlB4WlDQMQ7aV1O0aNEQfQxW20+ACROejjGWTz/9lA9nlJ8WoUFYgHhcEqcJPjZe1xC/glYoX96v1ZpN09pwna9dyxcCjRDo8vBYm2J5NKNG4hlGEb/iC+MDcPFmpKVFpAWjPFkSwqiw/aQ/OIdlYMbs0Y8ePdr8+OOPsTpHhXuwzHQkCZ4QmQMPo0L8YXxUsvVlpKVFpAUlk8RlSQij/pv6P6wXhdcUaMCiSNpSAuvwnT3t/kIbN2fOOzJeZ55Zep/9z30HtPC2I/E7363F8+bPE/qzHYIEWFtIGYRlmG7r1i3y5A/rBus8EeBKZFhZly7xwY+ApMExOYwKx3/3nr1+7xYUI94wT7aIjHTFkyUhjArxh/H78cd7oCIYzWrKaF5Sz5CvbNCoiWM0W5lEPWg0a9Wtby6uXQeM5sWRRjNjtLJ0c5YonSY2Cb/ZYALmKV7ddOAwHPpdrixRitAm4TcbzH8APzWE3HCMefzxjI3iOEivjz7maGHyuoCpmDxpskgwr7yytaEG7aqrrzLUktHlJHPMLTffLJqscWPHMco7MhfUktx4442WiUHjCXMMyy53runS5Sbz7ty56JNsnQICA8LCzeAniz5xZYZwKdFWMWHTpk1mxIgRpknjJmbggIGGjBPdjDdnmM6dbzRsz1tvv40N9lWmW9duItmdOHGiufzyK0xHSN9++flngX/TMZqvTp1qrr7majAst5qNGzdKGiXd3bp1FTwwgzWtWl1mFi9ebLiBagopHqWrOrYwr5T+aNm8pSlRsgQ0mm1cUsosXLBQymEf9u3bz5wIhk81dSTSQ4YMMS2gFbin9z1ox4+CO/qJt5/MNjdmXnIYJiPTss+W4TcFZkk31fOljsuWfWZw8xak9+9J0dug1YZpsmhyGdEfc6PQQYWglYDWIeYiBBwXmF3HUoscX8Qzmky45eZbBA/OSfj2ax/Vh/b8sMMON2ugScpt/KWyDkPZsmVNezCakbN1wfnAiNFElDKa363/zpQ7t5z5wDHXFhq/1hMVQ1+W+cd8ltEE8w333nvvgSlB/8HtTe01w4cPMy1atDDJVUkz4sEHTdOmTcxzzz5nfsZc6tu3r8FZRbdYYs5j/l0JTQ7n83Bs8po3b2YeevghKYs/46Ahbt++vXnuueckbjTeyStaXyHw3Cj36N4D/vkiGKA017qUaI1wPgzzvrFIilkXOn0fmjZpKprun37a4vu/UcNGmJtX2yL017X/jjvuMMVPPFFiv17ztaHGitriTT9sMrfeeis0PQ1EG04AmIybGjVqQDOeVwQPY8aMkb7VOdyyRUvT+57eMoep8aR1hNCPJUvlPXzl1VcED4UBN6NN10Drz36iW4050e/efsDd1vzwww/mtltvEy3Tiy++IOn2J2UmT55sLm91ubzDfHd1bJMsEzQJ5sAoc6yA22HHr/W4dyKP0+y5SEBy03LEEUeYtsCtwJaOXQU61knysUCWS23ZB/M/MA8OH26aNWtqHhoRjSlhJr00ybSFkIkS/iXCjKXMt9DW9e+PvgBdXAot39UoY9KkSWb4g8PdfFplHgQta4rynnvuWZlP/UAnOJ9GjRrJYp1LmenTpyP/1aYz6CsFImzb26BznCPccL//7vugPdeAVrUyX61YYXbv2WWua3cdhAMJQ80j6a/Qvizz3yJJmQ4dOpi+fazmknRD3WRogocOHSrjP5c0nA74ldG0EcbMfXeuvEfjoFkjwB09MMeKn6jJ9gn8CxculPlEwUUX1H/ME5hPgCcjBtN3aT/ff3xoXvJ8++03siZddeVV0JZiTUI/vjLFzqmw8B539DAwvWXVzNcQeLEv27W7VubVrZhXDSEIfAGaEzpaW1x00UUiaOhyUxfzIMaEbtfOXUKXW7ZsIe/ZT1u4vqTMU089ZQoVLCQw/HlqQsRobtyw0QwZNAQansZYGzYIfq4RQx8YinFubu69915oO2sYHCEwW9x6ZccT86xzZ0PhIHFwPG++6WYZz/fee1fWklaXtzIrVnwleMePG2+OOZprNdbTzl3M3DluLCSVtLy/9D9pCswWWaS4latWYl52NDd26uQZAq5bnSBkxBES8+36b8333280f/3rX2Vd5ftEnOPwjoZ7g3fnvivlJZN8j90+wL3HOckc0MI+QttohXQ7rDGaN2tukslVeB+WmE6dbjQtoJnSMWVBEyZMMM1BV9td1w7vhbO4EQz8cZWXcAr1WSHrXyto6Ddv3hRLZj35bpA5GT4c9LkZae6IGEwy6fYusPAgPB3pEel3+w7tzdq1a8TCp0XzFgZHUMySJYtR506oX3Noq+08ZJ6XX34Z73lbc0OHG2R/xLivV39t7u17r9AR0rBuSj9feJHJmIukr/eadqCv33//vaOvl3r6Spjf2v+P412nddf8efMN14vu3bszu1myeInp2fMO0f69AEZQGu+6kNp2jj/7rjeEx+py63/OTd3L6dzUPHxyz7UUtJ2OFg5cF6ZNnYaQRfjTli2mfPnz5P0vXfpMgfM/+6A/hFnwsd2/fPTRhz4LmUrSpk4dO5mvli+XtbBD+w6GQvJly7jvMeb6dtebyrCieuKJsTKncGxGqyPj3R7wz3PNBf4RD40QS48VX31lHhk5Uuhvjx7dPePM8rjmUfli9259xKqr4aUNmSRw3AuSrlIYz/5Ys3qN6evW0O8xB269tRv2epfGLMEk899pv8BYwMgbexdcdPh6eEgb6X+zwfwJ8VeqTEazpljG0kK2LvhK0Wg2bm6atqBGswEYzTqXmBpQeVrT2arosqB3xGvD/A1SnD8zxve5eiRjCKcJ9hlKDSyGAFa8NszfIOUPhZ+LGxdVmi6eVaYMCPxTXpKck5NjzoQ5Qps2bYW4rl23RjZG+OCpqV2zlmlwaX0zbOgwkwTcsccdZ2bOmilMHw7bmik0RYN77LHR5vwK5c26deuwsbJagp3YNKwGAT7jdJQNE0ucnzHbtltplGRyP9r/3Mhws79t+y9RsnS4/Eh/01epciX7coP4VLzoQtnYMcM8aKCOPfZYYfa4YZ4AM8gDD8xnTj/tdFlcn3nmGYMDw36DL4wm+gPnKrGBnC9SfBLFnbt2mEWfLIKkvpQpctzxpuVlLWRhp1agDRYY9qFuJsZjA0rTEJwtMrPRL8ehf0SjifqwTOInAzjnnXekbROfnSh9xPriLKcwfDiHZypDg9C69ZWIZQttewljvTb8gO8f24c2NoB1+ZTRrAfzzJoYP26OGkOzRfO2dJdCHmovrmzd2iWxvKBM8aZQ9zzmFTCaQYo5vmgRczcYVo7f+++/b4oWOV4W0HQcIx4cIW1Xxio9Xcffxlv8ZaHZ5sJgEVqs/B0DjWZvaF3oGD4JjP1ZZ50lWolhQx+Q+IwfAuZKXJmUEgaEbbziisux8e1szsQ8wJlbj3/QwEHShrPOPtsMGz5UhCkH5s8n84+bFm7i82Fu7YLwgO3kPC5RvLh5FCbEZEgLweSuT58+UjXOQ+J6GObLdNTS0qyTTHMHbHhq1qphFmOTc8YZZ5pqVaoCAqOENuAcAgQi12BT+A3MkquAbtaWNI7fPWDytmJDzHf8ho43sFhxjRo1lg1YtvaTCTgRTADbvwFzsGnTpiY/2lSrdk0z4akJpl69+qbwwYfI+0Dmc9DgwRAkHCCbRp3/daA9ufPOO+V9qFyposwjMr44D2wOyJsXVhS1TYP6DUA/hpqcnBxzHLTas2aSfixD+gFgHieZ9evXm2aCu4BYXUx46kmYvtQDA1DY7NpBiTk2BmDqTsN79imEPYOHDBJNEs4GmdU5SXnnZs6chfdsqUjQyZDGHPoOl37JmKggIkxnu09C39M9BrOtCueDjn1DOjZA2r9j568yhhzTEzmmgOEYF4Rwpq+bi9zcnn1WGUOaR6aCdIjmWps2bUafXCmm67VqkZaiL6D5HwRNGss7+5yzhYEj85gvX36M34Vm3PixmINdhHZo+0lfy1eoYNaSvg74mzBHOEeMeTvfFCtWTObOFWBIuHEsgveyNd9njOuMGW8JnomYc1988UXYbO8P3z+aw23Y+J05/IjDscnqxq6HS8nc+BFrSOFDDzVTnNCRSV1vuVk0moT6enUOGPBmptRppTytueOOnhCunSh1IYw69gtNw0mPKcDbCOaMrmbNGub27reZLaDtg7GRK1SgoFm4aIEIP1pjTuXhnMKco0m4WOTYCrpiwdhCeMI5TWfndDMwd/lNrZqY0+gbzqvC0NjuBDP54+bNwliQZi/F2kQBCdtauw7mNOjaBjCPlSuCLl95hZQ3AYxmAWc6ywiGCxUsIGnUql0LIQPHlO8GrVZOPeUUzIW/irDhHNANmviT4aPjeNKKaN26tcJAs047MNcp3Cp2QlFT8qSSIhid8CTH83hZG9jfOVhnzjiTa3UbsxjM23YcYYhcCjRgi7moItZ51MOv83ugidm1S+Yl1y4yzHQ0OcVZWkNzW1opUCNE+rNl60+yxr711tt4v4jvdOBrC5q0xPyCPDkYZ/bZ21jvwnduPYQBZOQptKxTpw7emWexbpYTq4lGDRsKg0aBM5lNOpqsF4NWjH03EMJOMhJ2wrGlzonXhvnbGzQ0T948Yq7dE2O06Qer3eT7SBpaPHg/ccYYNLevFEmGknXm3mUZjlfgO3sQqE/CmH8jc4mwrPOzWJ/PLVfWnHDiCTANbWxexnEThmm6SfzDIGQ66+yzRCDSD+/5ccceI2PNNbwZhI/582OuYX5yrtXHMRrSsJ0Y1+9Aq4S+wtyzNugA9188ZoNLCKUstva39v9Y7Dk4viUwR27geoG5nUzmmIIom/OYFj08EkA6S7ftl22o57GG+x2uK8ejH+hy6//HRpMGcm5+Yy0+Ch8sc5PttyMh2SHGSEHY0EVoMYVbuNTTJuCXY/nySy+Z++9/AHtLMJqgRbm5kP4Qw8cLPpI91kcfWWGaYh31qDWpnf+BtTKiMItj/g72VnTXQ1jBoyCcz9NgLXFo4cIQhN8t2Z95+mnps4cfsWsutfxKf/v162dwoRfCeWQ9Yob5eA+5d/uce7e53LvlMTgLLPSXuHA22HD+bYQwiesv924bvovGmLT+KdIbrKGHcA3FupCbS2+/tlfgpdts3/E37MUoVksOUzXOZfod/R/DIkVGmEIMUaziClM17t+Dv1IVMpoXW9PZS6DRBKPZoCE1mi1Mk2ZkNGFLW7tOPWg07RnNilWq23bmUueg+jEvwX2WWCAGJoGMZMloc3uvDWZmziWG4D5LLJCZISNZMtrc3muDmZlziSG4zxILRBl4Xo+b3DLYmPMla9eunU0E/AUXni+LrpSBn2lTpwvM7NmzfQGEp5nU6Mcewyb5EZF0UkqZ2psyf8G5wcshZRsFu/qed9wpeWfNniV5L7jwAilbCyIOwRNGIObuu++WF/pnaMTiAApon/fjPCm1A3SUUlOTpWXy7FttCC00P88Mhhtv2vdzgSD8DNFo5jG4gRahFLS2rwj+Oe/Mkfw8f8jFiWZj6ng+hMRt8yaa66TMUUcdjf4YLeWxTG6A2lzTVvL3gXSrSJEimlX6jhIywvGsAMvhBnXkIyNNnbq1zdGQVKMrbd35THO9pH8SXiMbJms2xi34eKEduzmzIaVdK0wDtTZVq1aVRS2EHQLtQdlzypqtP1szFEEbAjgk1KROTddoYkNbpsxZ2Fw0hEautXkShFVckJ/SxoI4s+XPCQIgSI7gJdam0cs6UeuX7qhJ6wcJtLqSJU8S2KLYbJ8ATQY3eZkIFNo+s+H/4MP50me4OMYsWrhItGM011HHOcl3hpojulWrYJKITdvMmbMkvBSbF6bLZh4IjjziSHOPY0IIwHNyRx11lDB1xP+Xw/6Cc6yPSl7Wt9BBBUV6zjStPxdrbiLoKC1m+bi8ScLz531geK6U7v777hcNGvNSE3luxSAgRwAAQABJREFU2XKuIw02SzCdTdNoEo5/sik/sbiDTQltwMUtZv236yWOc504ydzQ4TIXLL4Hip8/b7z5BtLzQMP3oEiFa2OjxjkMBbCtL/onG/14FPTjITDZ1MyQfrAyz0x8Wsxyv4VmmuG3ZrwtuCm42o0NTGFs2PScGIVmQwbfJ/HtoLErBYGQlkn8nTraMn1F4VHhC01ntf2afhOEBLgGXd6Nv0DrfgUsH0aNfBTagZ5SB6VjRx55pOndu7dmM5fByoHvPwucOWuWGeu0JB/M/1DyrVi5QmCnubPg2hfEvwXm+nz/R49+XPKvSq6UPG/PnCXhz5YukzDnEzXqh6NerR19pYka+13rRcuOyhA8sFy6Du1vgACkovjXrFkj8xSX1kiYP4RTWImUgI3hYs1E9gnbSw0j29ER2hA6agupkVd3yy1dzUGFDkJftDL1QfvYP1t+2uoRhIyf5iEm/tn5lM/Bpsws9CHbhcs+fP7TTjvNrx3TsXnkfHwnWJPSyxR8JxT3+bnekTGhMIMumtNrJcyNsDDCrkdef8Mepxg+DHQZmg4yH9ToMZkMmp7RZOannma4kJTD9sxw7wvXBgoXSR9oGUHHIwZqoouLD+X9t+OJeQZmnLBsP8vBzbumSuUqko8/pAOVwPCq4xGJ22/vrkF5Mh//6HgHwzOgY2XAELG/qC2ko9khx+9arOOEzUkmsV5d6jKmpK0VK1XGhnkDGJbPRPPGfFy/uwf4roOGmELYx0bbfcAxRx9jOkLzxzIpNDsg74HevJVnRI86+igv1Ob8KA1BN2FpXcX+o2bu51+2yhlXaQN/xINnFvcphMAtW14m43rKKadKfQl+hL6fLn/LVi0tzUVhund5zNEe1onaXbonxqDOB+aV9jIrhYpHHRnUGXT8LKxzdByj8fqeixWMna/M9zTnGjT06791NOxtSz8ptKKTuYh0CsgI/7bMlzyG5uZsMOfab+l/llUI71wnWFyo20ShCTSbuyBQ2LN7rylZoqTpP7C/JOOGZBHAse8pAJmF94f4s/X/HmxAeIxGaCD3cqQ1pOOzZiuq2PMlMOJ9evcxh+KeB+4B6N5+a6ZoxennmW8KbUNH3PzzTgI2hr8fg8HkvA0134RdtdLSyEXQNNKthZCG9ILzh/naQVDCPpQAIq6EFRkFfup4twUuxJTknegn0l8KMG1lUiK8GAoGlGFadYR7N64xerTsTezdiJdWKSNHjjJ169TFHOfeza6huFLQrqFALPQG/cd1TB3ryj/vJGBjvDcG4CFz9RDcZ4kFMrNkJEtGm9t7bTAzcy4xBPdZYoHMDBnJktHm9l4bzMycS0xFMJpV1HS2Tn0xna2nprPUaFLFSVXnxbXdGU1shiNHbA5j/OFBbHQuiQqFZDIFkVN/PNamaxpD9Ltw/GFBfWouiQqF5DgmB58Wa8E1jSH6XTj+sKA+NZdEhUJyiJ8mVTTH4YuGG14F6gJcfMKLYRQfzWr4sm9TiSnKOBtS2YqVK8vFGtQa0IRkITblPItHWJr8kVnTtA0bN0rZuDE27VITV99YrYxs4knUaLZqHeEcbPCg1JZ1rQYNT+nSZUypUqd68Pr164v5nytAmKubsWnS9pcrVw7S6p6SPEM2yvYyIEZQKkn8YhaIMM3g6kMCLs7hfxsLDfttMwg7tZhs96vOLJBVlTOabdpIlufAqOSFBH4zpPe70OdFwXTaslPmb/3/Bi1HwkyeMsVMwd8k9OfUqVORzyHySKOGk8nB1ZnmPd8/Ch3BMJtuqnnWQYvp3be31HvGjBmIsvBjHh8NaW05MSuzgPzNjt+2M67RJCHGzcVRnjArYnmwnyZe3Mj9uCU0C1ZAHRXiVWfTaHbTujU1CQ7WPYbDzPDhh7A4OFcCCypNnslgFi1SVKSLem5EYVhEHJMrLIj9ABtxtlFMEpGRZkwbN26Az8JSKsz06a+/LsXKXEF4zhyarqXMSl0E3Vk/Mjwj1fQRRTw88mHpf+Yj/BFHHgFGc5Qr3ci5OGpGFR88MAu6QTQ89NMEsECBApAixx1rtwWaTHkfqlYD48/3oZQHIqN5zVVXA4+2mUnW3xNmhmTO1cnGP98BGhRzMbaZ85xZmI7b3Hw6GT8uuFOmTLZz+OVJbg5DkEL6gfktF3UgL/FTq0Pp7yuvTsG8n2wmvfyS0A8W+Cw0EpaJtXWjqZrFnWM+//xz8fM9sam+CtBms8yKlu7A5J80yZuWKxgyfQxTU7639oymlmJ7hVo4bn6XL18udaY5mqVjk1DeS9acHlk4po9g86XukUcekXp9B0k23bix40QwQGEX607NAt3rOFLAvtCzRewNWnawPtPRT3Q8w8w8c+dCyAUXzaeFtl5IY72mQNgzxdFemvmzJTTjthpMySpw50P7SSeMJvLGNbnx9ttc9rda9arioZaR9Zk48RmZW59+YttSBmP4ADaP6nBzMpiOU2xQi9VEPC3jdyLqGSZa/3PQHuGWQA+Nm5/BPCRks6wF0vyaNITZZU0C/Yv6UaIB6srGwwpPTvRlypw+4ECPnyaEHAueI2e++yCkIfOl7m+4ZIfMAuca5zXNOYUuo2wymgWg+VInYWhcFf/Mt2dKn3Ft4PGEQrgsTeg98nbq3MluggG9/Cusl6jDHT26Qzvs1kto1zieLIuaLxlPaVdKxpPaTzoUJWfx7VqtmBkL5x42YEQQQ00Tx/EbaO7oBg4cKEItMh+3g27yngJ1ZKKOPe4YuWCHVgopSoxQ6AVkbG/j3sCi8O8x6j5J3rmX7DsH/KRh1Cqpewi0+rhjj0MptnLEf8qpJ0vy5k0/iICE9auDS1xwm7rDoLmZxzUq/hAAtRxRk+ejIfShcEDdIyPd+wnh1VnnnCVWQ/69xrh+smihlC51hvbLupSROuNyGos7JX12ysl2jrMaZDQpAPTv+af2qM+zE+OCuI+cFQW1wmy/FaxwvtvGLPA0jnPRMrG/pf8Je/DBB0tf25LsLwWkPN5BTSmZqrt73U1QQderdy9zIKxRSpYsCZozTaKz9b/MTYxHD8xNHpeixQlpKk3DXVHy1B/Fz6NZuI1ajuNQoNKtWzdDCyyuP8cec6wZ9uAw2V/ZfDYXK6Y+LY9x8o6iDtZ01kHgkUxSuIujQwsXCjjnC+fOvHnvS5jHBDgm6nhchelbf+JRkhSEv0cIo0kcVB6Q/nL+qmPfDBkyWILPP/8c9m55xESbzDmPCfFdZm14saXSCO7fQhoRjbEtVdtCK4DIaauztz8OF7Wf8ZpTYWw4DqNp/onkOCYtJR5r4TWNIfpdOP6woD41l0SFQnIck4NPi7XgmsYQ/S4cf1hQnwqrPDCaVavpZUD1YLkC01llNK1G81J36yxMZwFYGRnSXYg6Pe23hGP5GciIcFGx+KjkXKIjgL/ji+VnICPi/xc/Jag8SyPO4VfJrrW/N7hoB8wgtIPqXnvtdXkRt8mNlDa2HMxeqBFMd/bsRELOaKWnMSxl48IWcftoPyV7PMNCYhk67a5Vq1aKZPTMM88UbRfNFPE5jdjGWhjNttf67NUguOAZIHXnQft5Z08yR8a8OcNKr+2tswbmrXOkzTwfR8dzGA1gCqT4GYdPbfjNxM/QSuSDqSHPtagLGU1qA4pjE1MDixLPXHFjntqDxRsF2jOzCWhml0hWwREi0gLx1OhvIBmlSUx6/ygoN6d0esbBbqptfp5HItEd98RYieB5S/YjNxx0ZIq3gCBnc8RPojx16quxZDKad91t+zKW4ALUUPO2W0pQvUNh1Bbk5OS4KJbu2mi9EuZmi0IBnyY+a17EDac6mpjxMiC69997X/rn2mD8GR8UawMZEdEFBGTSQ9cH2lOet+DmlmfdFLcymnpezUtbQ0bTbXqIjubkhbmZocoa/6lhpgmm1u4gbBx4/ip0PD9VEyY4zM8bL4k/nYmitovj2AHaXzLY6e8DTaav0ltnWTgL4x+c3ZSfIH5GcaOUL9j42015HjHXIxDPEIYazQEDYG6EOvEcd7pTQRX7zaEThuHM00E/NEIy2cBEakuxUVFH3JxzPL+Jz/eALhzoL7NSGD5pipeNJoUwxKDClw9xxjLEvx0MH01P20NrtOIrngEDHYPkP3RaXZ41DzeyPHtZ+NDCoqW+p1cvc1qp04SxSyaxIUI5fOfoyEwyrEw38dPPuNdemy4w6ynkQljn08qVq6Qui3D+6Sto+FgvXtSTzfFdiUzfjQj8KjhGcy01msjrNZpsjDZICrMB+cVPdQjv1JFZpQCyEWiXOppsUzun7pau9jIgDac/8Y3imDBDcDv8dlNmBRuMook528kzX+raXnstTKKqS5C3NPt+VIC0ZzqjSfPNkJldINqSPFZ4grz33X+fMJra/oguf+ZLdtU1T4sGk4yldU/BvJzWGur82gDBIh1NZatAMMv+o1ZSBTYrvrKaGXsEwJau+JnPMppX0iuOl3bxWIo6Mn5K8zSOT1os+XXeJVitWULOxDLqh43fmwL5C+K8YD85z6aTgdoYnrkjk8wyKECiCSId128yperI+Of2zqUzmhQK8riNukEDwGiefKoEacZJZpZ4qBGiiX02p/0/ePAgx4w6KNSZAjtq3ejSGU3SXJpPsm2+zixMC5RcKWHYeAGWxltG83hJ5c8AMMennmKZ4158z6FlpwAnJ2mtWvQ9T2c0lYblUFAHx/mejzTO4VcmhPPi9/Q/yyKjOX78OHrFfYyzzAXyFxCTUUaUL19eLMTo/wYm4TwXyrUDn/wCjc8v5srZ+h+flJN3rHfvPswqLtZdGpn25A2xPKfJOwteeP4FnHd+UP54nwDHn32Kz9TZtscKtAH5dfG2X/J4jaaC5+RYuqprNPdDXH/0wr50RpNHok4Abdf8XHMf46VDiKB2n7REbiFHWwhDLTDvzKCjGTv3blx/+f5SAGUFL9HeLbwUTTLhJ53R1CMb8u4TiIi0Qgy7gETF4iUxgIjCv9cXK5aBjAgXFYuPsOQSHQH8HV8sPwMZEf88fvKNntGEhSxNZ+vDdLYRbp1tLLfOIqIONZo13RnNytUyqw1CIQ6PWB0zITNiIvg4T70PwIwkzDAb9wfGzzMg07FQq+MLxQtXaGpBR9Mcni2k5IqmHbxVjC/i95SyuvZTqkmJkp6B4mabZxj40p500smmePHi7pyLlc5RE8Geq1SpsuEZzQ3QEtGEac6cOTAZhYlC6FwX82A+8dLkwjvgZ5gHwXnJBtPx/UtJJlOhJkmMoJbz8isu91krnH++PeuHmhAFF0g1geAZBZa1CYwEEyklvgDaVy7YdDR3lI1XMP68OIh51qxZKzAXw9SMmzpegPPFl1/gZtXjzTk4X8jzPiQ6LS9rKXBE4JooYW78WA4vtWD/7gUDOhoaRuJ+J71/AvxkfJiPJl+hY5imNLT3n/3ObIHhOCnOIWDIDzrkYFkg+TkLmnFyMaCQgItU8ROLm193/BoW6f2bceaOOHn5hZbHKh2K81q8LCGb42JBpiS6bdi2n+Yw1MzxXA4Zez8PtGBXGD8zQpw856Hzj1qV0zF+emsvQalluv76630VeEkUFx8yXHRRsSmzEed5eHDfahV9FvG85c6ycbOojhphmnfy/BK1DazPSy+/LMk8e8yw1RAbOXPIsC56rBffMeLfC+YS3xEzN3bpLHk5RgcddBA0Q3YM8Y0vYbIogQ8dTbcr4swl20+NLc2XO+EsH93mzT/KZpGfcyFe/z5gY16kWFFfTM1aNSGY4ByMzz8CcOy4+Er/oqJPjH1CylKaMGfuXNn4fw7zZ7rHYeZJXNr/4RzmfCDTS607n0o/NohWmLlT5rbut4sk2NMPaBooLaej+RrLVtxkuBj+AjSE9asOZoNahc2YN3QDYd7GPiFNonR58uQpEs+xfcmZFDNCx3/27FkyL6i1UccLHHiWtBSOA/yI/qSU+ySYYp8Y0LHZgNf2cyM72G1EZEyhneVmho43K+pRhOlgHll3zgXi51lfhkn/1Ol80vZT60GYaD7ZcZ2PMnjWE984lXeUm0a6WbNmi6aXfkrxmzZtRq+4m26+SW5fZoCaLDIN06ZNNZ99vkxoNd850uCYQ0VJv0ITTZoZkvHj+U5xgKkHixFtJ+PaXdvOmkuzoVkcTSqPgBk5N2npII/DdJJtZvuYyD7heSZlHDjPODb8FBPdi7hYhfBW85cFGaI4pw8H88F3jG7ME5xXeTCvdgp+nVdcm+jYF2RGtm/bbr5c/iXOvEZ0mWXw3edREdJlfrKJZ0S53tGxf2ixouGp6GPW7+u1a8wv0Gjys1G/7tghsGygtt+ulxjPYJ7xc0yff2HrZMezqctHM+YudjxRAMugVQDPTLIfxMzdQxoRZr0WrPODoaEpW/Zc336Ctmljz5KGQhNegMSz7tpvXFPJYNGRdjGP7g24TuYBU6HvMYUkL8OagY5afp5d1zWUn007DGbf2n4KcXS9pvBVx6ErTLBVsJjb+kdGgnckqEsmk6J9XeA0XEpzmU787CdetER3O4SR+LCer7PuXZg2EnXOh/N4pFt0/JwINYLqeHmO1BmdfwaEejr/eWEOx1tvdPb0E5Y8dNFc+wKhlBmTRl95kRPzk8b9nv7n/OH5Qfa1Op5F5Xxju3l5FYXAekznmWcmynETzh3epUCcvOwoW/+z7JKkNZibntZgTZRxcvOPOFdA+MVjUjpfeBbxknqRNlHrxUveThZtsJ3/Wfd+BGblnOMazDryYixx7l3mJ3vy4Qwsz7/uwX6J6yvh7oWgf9eu3XLGlZ+eo6OQn5Y9gyCcoCP9oYUBvkktYSoXmJeXRIoDfh6T4v6Tjns37v/EOfysI6tp1708sndj+9nnPALB+fME6Q32H7qOzYGFCunP56C9zJuV9hIJE3NzafhzA8sWHxUb0Z9scH90/JVw5FI/b1LrkojRvLRJM3zeBFYd1nQWt87iXF1V3MpGFag46dyom9I7J/cUQDJR/9IzStjlxsP5MqH+ZPip2eA3p/itw/oN6onpB6Xd2n5qn3iWhYwYpVP8jiFfRIZVYseNGTV2NMEgwSVTlwTBoqP2rETxEiJp4/k63si2eyc2EHB3391LNFssi1Kge2DGwbK/Wv6Vxy+A7odn104GsTsJ2ira3HPBwMfrJZUEphwkqkeCUaoKbSW1eyyLh6956ymZm4IwZxoF2/l77r5HzibwQP5LYJxpzsFNKT7YLgSGtxbybF9lnIehFPniGhcLI0ZE3bGY8jtNvE6d5y7puHBQ+8HNF03taHfPA/f8jhzPM1104UVSX25WeW1+TnK1aNhKQdNxIm6b5aVBV2Fjq+chyfwVxJgUK3aCMP3PQmNEx4VN+uer5RJO/2H/nHTyybL51P7ht9XoeDanWNFikv+oI482+EixjDUvw1BN7bvv2gWOOOxfHikrhsfNf5qQ8Vwu28xvZT344Ag5K1EOZ1+Zl0wjbyMl8+odJlU9vOwksNS2sX95rojlcGN2fJHjBPSeXtrOFT6resh88QY9mmFxnKmZrgztwJdf2j6h6RsZfNaB85obIToSfp7ZZXytmrUlTn8oCeVlDdREiXPvPxcubiS4QLCNxHUetKksg/3LRaksPrfCML8nygsXznZhfCBazBzZTqazjdTMkyn5y6GHCSNzAT7Lw9v+uPnkpvpCnHkiLE15nhg7Fu0434aPOlJutGXd+vbpg3YVlPmnGxveVkqGg+9GKUjVebkW+4nSegoOqlYJ3oeatUynGzrJ/CuA9yF29TzeOpbJC4pYj/LlK5hx48ZB8nyshNnm9WBoToEUn+mct89iQWbfMHwuBFSfOeaTiz37n+8F33tK9V+HNQRNjTj+ln4slu4m/eBlITwPxf6qVrWaWQn6QSaZZ2nY/4IbwqhT0K+Km5tC3g7I95CMMS9Z4aUcdDyvSZrE95SXTpAmrVoJmkTC5ogbz0ZRss3yuIFq1qypXOZwztnnmB7QuJFhVUc6VrIE6BgEAWXLniMXjemmgRtZbub4DlPLw40ITSTpeAEQN6uco7z8hwzTySedgot+HsCmr6i8P+yLxdBy8v3n53tYn2KYT0ugSZIw2s/5RO04L2djuswn0Bl+fqcE6wVNBvufN4WyXtRs0cqB7yEvl3r+ueflPCuFEu2v7yB1I/0pgHnPGxL5PcvTTz9N6A37x3WRnOXmxSzE2ZXWL3iPeNMj66Om6GwjBSTsG5rMU0jGM4vMw2MV3CCKc33f7trrZG5wHvATGclk0qYD6+swQacQh3kp8NSbIymgKoZ3sQEY2jJlSsulW9zIvQF4bp4Jz775xGmLXYHyINPLuUiY8ueVhynzeDuvgL8u5zTnFeYO5xnnNC9ooXljvnz5ZVx55pBO5jTaVaxYUUuXsemkubLMUZRNTS9ptYZJhyggULpbBsc5SAMuurCi1Jkbbc4pCkssDU659bK4oSUD28+binnUgONJqx6O18MPPySfdaAlBC1D9My6nNVHWNdTqbT7oakiL3/jGd0G9RrYdR7n9EP3+huvCUPKc+c6/kznJT6cv1wLSa95UQ6dWqYQH+9G4DtHSx9559w+gIwLx5TvCPu/fr36ONf3jgvnwe3H7cQahGsl+5/0+pqrrxFtN5lmlq2XTOW2/lGIRQaQF3c1a94cdPRC3OgJQaRzQnPxfvL9o8D4spat/PsZoxNnnuHpxGtSZ0vXeDP67Nmz/bxs1+5aX2euf6wz3wGOTyW+56ADXJ/4jgyFmeixxzj6WZv0c705FZpb9sXpp58h9FPnS506te1cxLyw6ZiLoHG/pf9Jnzj/mI97Dt6ATkfm5y+H/kWEBTVr1JT2H3JwYVw6NhAmsK+CHh0sGvbzIXjv3MUKK3Prf7uXKw5aQxpo5yYvkwodL8vh+8h9FwUE3Gfw5ndx7v0fPIhChsNQ1zy4kO4qSZKxxfjLXQOAC+cfASgg5hEjto+fQ+MZ39DRYuFwlElmmAIpuXwJdeAt1ryRmvSSN6CfjzW1R/c7ZH3cvXuPfBNb+2zsuCdkzWS4CGjNsmWfy3ErzkvWl0LSHNCqfLCiIbPKNf8M0AuONxUKdBTg+HUPfUTGlPPfj7HMge8svUH7mZ9jTLrDdUVclvbbBPz+yfgP3y5tOJ//wvaTb4xpNOvhMqBLmwbf0cRhdDmjSUYTprMVkSF08YnoQhqpzzCD+G2CJuvTg8UigkDgVdh4lAtppD4V2D9tgibrMy3ZBYPUwKuw8SgX0kh9KrB/2gRN1iel8JRSbd1iXxYLrqnGS0e5sPPl5EzgoWlu3kPYrTBlozlhBpUAEDV5O3FLI12YSy9j0IQq2MxnnMnQDALEzzb8YCgtjZwF2IO60RyFUmg6lXBTAs667927W6TMuxCmRHo3NuOU1LFNTOdheZoT8xbWX7b9LEwSTUt8hVGmhUU+wOlGcy80HsTNy48Yxycdy7ZtsXUhfronJzyJz6t0xfmoD+VSiPHjn5QzdP363ivp/NkDWF7YIy5ofxUwDVzogyiAuJB7sM4kXqFjXfbssWPG9nOBiJcBae8eSOHSxlS0VOmAKJh9xzTOAbZ/Lxj9sP2M1/6J6mEL0uL0yXSZW7s4t6yrUrWy77uMigKEGoGcnBx3i6UrCQ/BCyk8n2xzWAf2P/Fw7tKF+KnFHfHgQxJvf2x+lhEDRCLbyz6kk/GGxDJ9/G28mw++L/bKBmsEzIVWo+5bYU4Uup077JjIWKGuWgbLlnEAcLb5xwpS8s2r9MW5hrEcmuYos//995ZxkneX8x1/Wq7mY7uYD6Mq+OnfDalwOJ67sfHlPGH9ZNwoqQdO1oFw2l/M6+cwEKRSth3My/kXzTVbbdKfH6Alt47zytZP5xXjKaEmAh1DhV3z9Rqz49cdGrRP/FIYwM8KhAmue4I5bN9V9n9UJ4VCzsD7DTaKO3fuCKMwpkfhfPDDJieZIyZisURk57toaRGZtK1mO+gL6Y/QIelH27/Mp3E8L699ru234aj90tfSsJTQ6LD9HFf2H8dA/3T+69zdsXOnfAJHisDPurXfeHNUbTRxcPx1LBQ2nLsyH/D+kwYQL+cBcUpeVw+bz3Ykx46CEJ1DnDLi8JS5gTw6/6SNmg6gNWDUwv7f1/xzpfp5jNLFL3Sf9ZK+t7RA3rW9tv+1MrwlWZjpAD8FmuvWrfVDzHay/TJ2rt3h+6L9Zvtip2iMaoOh+Ai0n8wsNddXg7HiGWpfKCrAG6SpfREH/NF4ch0DTjeuvv0EBBytjsJybAH2l+8f12FeOEUXNEvCs2bO9pYRsVQA8l4FWdsFMkoVfFqSK5D7gOidc7SdYwr87GfSHQrWlP5w/yHtw/qjc5PrL81QxQUV3df6R+sD0bYF8MxPJpcmmqtXJ+X91GR9EkboxPdKezgPHa3ie4px1XFkXffsCevOObWTRQhDJfdPoGCWx32E5tPxJ5zQLsw9eQ9QPmk603c5AbzMRTdXCc/u/S39r/Q3XC+YnYJMfkaF/c/6fP8D9jRwbD/7nVZY6fM8t/5nvvXrvw008oxxPakP9BHHjnjjzgJwjPn+h3sowlWpjL0f5qd1rjAG4GU9+Udawf7XeRLC8vJGWesAY2+Ktqk6F7n+8Z3Skvlku22Z3MNFNDmkv6RrSkOfhPUWP2/Hvdu7772Hm8DHi+Dr3n7Yu7mC2f/huqdzQOkPwXT941jT8WK9alWri9/+aC0RCrwKEI9yIY3UpwL7p03QZH2mJbtgkBp4FTYe5UIaqU8F9k+boMn6TEt2wSA18CpsPMqFNFKfAK5UBYxmdXtGsw4sfGg6Wy8wnc1Tt14jTIDdCRD2BF76xN7dexPvvfsOhA25O4o7IHyQ32xQmSnpMVHY+9Sjz2wFuzgLkjtgZkp6TBT2PvXo80+Mv3v32xNFixZLwLQjGkVttz7/BO2HhiCBG2UT+GQAWgOZKNyQwUMSu3bvTPTqdY+EfXPVg2f3Ht0TuNgm0bVbV4FJ/7GgmiE9FWI6RFlsmpYeE4W9Tz361KxZnhYkd8DMlPQYG+Y8KFLkhES3brdElU4H/Rfih9YhgfNACXzCIlG48KFSskenHn1mwatRFiR3QKaAKUngHFSi842dEUqHjcLepx59KrIsTwuSO2BmSnpMFPY+9egzC16NsiC5A2ampMdEYe9Tjz4VWZanBckdMDMlPSYKe5969JkFL7TGMqYwx/vDrj84G5rAtx4TgwYNTuBG7mhmarv1maX9GmVBcgfMTEmPicLepx59KrIsTwuSO2BmSnpMFPY+9egzC16NsiC5AzIFF5QlIAhM4LgBQhYWwqAEzBUTixd/ijhLoX0p6tGnIsvytCC5A2amRDHYSCdatmyRGDBgYAJaxP/K8f9H17/4+xl2XNR+GxuFvU89+gyzp/ktSO6AmSnpMVHY+9SjzzScYdCC5A6YmZIeE4W9Tz36DBGm+S1I7oCZKVEMbi9OFC1WBHu/blKqT1GPPtNwhkELkjtgZkp6TBT2PvW4ZzHsT0eNGplo2KiRR41jEwkwjNi79fqH6L/Q3sZNEoMGDwTtLf9f3X7f6Cwe20XaYZkAmSnpMVHY+9Sjz8xifYwFiQNWrlo9AQuLBM7jyxOWjQl8ii2BT6ghnDeRh5wnGUxhNEEEU3v3JN6dOweFsiA6EmT4aXzkvI5GR0RS4BSxPiUy48eniseHAjiN45NuP/79/Y+58A/MP5iVJKDlSMDuXyY/zkckcLlJYtzYJxKFDwGjk0fnmp1p9lfj9s8/2x9/vPfv1VenJnCTaQKmngmY4SVweYQfYB1dS7x8yKfLu6Y0R2L/eO23NDNoUuD1LRaPD2WBYBrdf0f7X30FY9ocY1r/0sSQ+wcncPHP/vXHjY4Mk++NbGNqIfjrU8XjQxGAh2Aa3X/H+P9e+j/6sdEJXJSUwAVwCZgfJmDal8AFfIkBAwckcIOs64h/b/thQp646eabE82bNU08PnrMn2r9wc3voLnNQXPrg+beF6O5dh7ZX9/j4vGhAETj+KT7Y84/W/fMX22dfc18KADUuP/t9teqVdPt3foJo/L+e/MSX6/5OvHEmLEJHL2S/tKesp2nIX0GXRp4fap4fCgLBNPo9s8/IZZ/Z/9duWo1jBOYzAMPSOBSQfELo0lmE395LoEtLQwqEtBCJ/bu2Q2tJjSac96RLg5/sg1JtGzlkmpwHABXNRKOBwPoEwdwrXfuL5wC+yxRfp+kePXpE8QDje5+/P/D/Y8LbxK43TWxauWKxDnlzk1Uq1ItQakr59z++WdJ6J/t/YP9S2JA/wGJA/IdCHq2N4EzGYnmYFD2058/Lv2FuVui/4ABCdzIm8ClEtjEckybg8Yr3dfnfvof9sD/+vqHm5cTuPwsUeT44xJVqldPnIF5I+4/RP9xo2gCn2NK4GK+BC7ssfsZmbrZ529sLBHw+yefoPn06RPE8+8af76TA/oPTByYL18CturCZOIMZ+LfhT+iA/+Z9u/H/6+ff7hPIIFP4SRWrlyZwB0ICRz1ShzNvVvMKV59xhL3z79/I/9TuerFwlweKIzmAYm8WKtxYVmCms0DVaOJ2/4SsG/GxgxPbM6s6Wz2wYsPpQ0pJNqFwvHauaeHVQAfEffEkn3Ae+LAWUIKqXj16UEVwEfEPbFkH/CeOHCWkEIqXn16UAXwEXFPLNkHvCcOnCWkkIpXnx5UAXxE3BNL9gHviQNnCSmk4tWnB1UAHxH3xJJ9wHviwFlCCql49elBFcBHxD2xZB/wnjhwlpBCKl59elAF8BFxTyzZB7wnDpwlpJCKV58eVAF8RNwTS/YB74kDZwkppOLVpwdVAB8R98SSfcB74sBZQgqpePXpQRXAR8Q9sWQf8J44cJaQQipefXpQBfARcU8s2Qe8Jw6cJaSQilefHlQBfETcE0v2Ae+JA2cJKaTi1acHVQAfEffEkn3Ae+LAWUIKqXj16UEVwEfEPbFkH/CeOHCWkEIqXn16UAXwEXFPLNkHvCcOnCWkkIpXnx5UAXxE3BNL9gHviQNnCSmk4tWnB1UAHxH3xJJ9wHviwFlCCql49elBFcBHxD2xZB/wnjhwlpBCKl59elAF8BFxTyzZB7wnDpwlpJCKV58eVAF8RNwTS/YB74kDZwkppOLVpwdVAB8R98SSfcB74sBZQgqpePXpQRXAR8Q9sWQf8J44cJaQQipefXpQBfARcU8s2Qe8Jw6cJaSQilefHlQBfETcE0v2Ae+JA2cJKaTi1acHVQAfEffEkn3Ae+LAWUIKqXj16UEVwEfEPbFkH/CeOHCWkEIqXn16UAXwEXFPLNkHvCcOnCWkkIpXnx5UAXxE3BNL9gHviQNnCRGyCkxn8+aFJjMfmEs8vemsmM+C6RTTWTCaODAszCbPELw/dzayRvIzi9IhzmhFFsyxKJcPceLDj9cmxeBswEJHeRgbi9uP33LzWfoue1TUl+LDz/7+D2d3vNdic80lxeL2z7/980+sBOLzJveQnT1MFx9+9r9/+9+/aHWNz5wYrXFJsbj99Gc//dlPf+IvzT5D9u0hiPjws5/+7qe/++lv9pcmttY4kFhcLutP5WrVwWDmhSYzXyIfmMu8MJ/NC+3mAYijSW2M0UzBdHbP3lTivbnvuLeSmCwahzMWUpwCEQdTcPfcZ2IAG8B5r/cIXBjaj9+uudInYccEPWq9+0wMoAM47/We/f2PHgh7Y//82z//xIID8yLrcV//ZoWzxkdm8QRw3us9Ah+G9s+//fNv//xzNDl8MTLerH0mBtABnPd6z/73Dz0Q9sZ++rOf/uynP/vpD2lClSq4DCgfz2PSVNY+7RlNntfEsZ2YRnM3NJuwsX+fjCZcSFQkIvZjU/cNE2VIh5ZwlsxhVOiPSlKfTd03jMJqWyJo8UVBDxhGhX4P4D02dd8wHtj1ZQQtvijoAcOo0O8BvMem7hvGA+/Hj64Ib0qWfsvSeWGU+nE1d2LWrNmJjz/+KIFv+CXwDU2UZlMVJurp7D7C8aKtWTNnJRYuWpSoXadO4rxzy7FSMReWF/pjQBKwqfuGiXKlQ0s4S+YwKvRHJanPpu4bRmEze0vyBZlxHXpi9uzZCXyKIHHVVVcmTj7p5H+I/vAIwMyZMxOL0Mf4JmQC3xiTShDVjl+3J96Z/Y7gwIfHEyVOLL6///9E8w9X4ScWLliAG7WL4mbXJtHkg89OtWjCiS8KetgwKvR7AO+xqfuG8cB/Cvy8v2HsmCcS+AZfonKVyrjBtcnfeUd/f/vx2YXE44+PTuTF+Z5mLZonypxZOiok5vv7/b906dIEvm8ol1O0ubbtP0z/Y2h94O/j96DwpENL2EaGYLH+zJIcwKaXGCRl8aZDSzgLgjAq9GcWaVOzwcyZMycxderUBL45nMC3DxP49u3/VPsz++p/a/x/a/s3bfw+MefduYkFCxck+v+tP0wv88o84ZnfJ0BnloPOVK1SRW6Kziwz9/mXCbu//9N7S8JZXt4wKvRn9qlNVRhqNPPihlleBMRzmmQ4LaMJU1r4E2Q0a9etb6rzO5rVa8r3UHCIO3Ap93mZ4KMp3us9ATy9ucWHaXGYeCgs7s+Bf8GChfJh+WRylcnJSZpFixaazz//wjd0Gz7kPW/ePPPFF4jjB4e8S5mf8L2s999/z33LEAlIXp2zGh+6/UzKSiZzzJdffmnmzp3rcoX5jfniyy/wXSeNS3/aLBrLD9/WqV1bPqjOj4BfdNGF5m/9B6BK+PiZOgXOdZw9gOYInpqmT5sUDwXgwGHTAgjv9Z4wA/y5xRNM0/TJb3H9jI8od8HH6uvKR6j5sey//vWv8i0swm/9+Rd8g+0qvlPyoW9fROT5Tfj5nacuXTobSAHN5MmTYnnGP/kkPiR8rnyguSw+Jj927FhJb9PmGnP2OWVN+fLnmZdedB/H9lX3nlhZURvToiWoefRpYeKhMN//f/8TG78XyO/csY8/xEexI/f78HOes4+5q5w8eUpUDHy4YMBcccXl0v+ffLIolvafbv8/i5/fPluyZImZOXMWviG4EjMztxI1Xp+2G+KhsGu0pADCe70nzAB/bvEE0zR92qzxkI3TFJsWQHiv9wjoqFGjTIECBc1dd90ZFpDm1zz2OX/+fHzw/DxzDj76fQ7es/79+ws8v+140UUXyce9z8F7OXfunKgcLcK3xSZ9jO81VqtW3WzZ8lMEm+HTzPq0APFQmGnf/X/ffUPMrbfeFmaAP/fSorQ4TDwUFhfhvwoffb+7191m9GOPGzCC+Gbgag/I7xl28TT0AnPBhaShf3M01IMFdYtjZGjz5s3ycfZ3Zs82uOzJXAA6zPpayADee70nROBxvPDCi/Jtx9ZXtg7SNY998ruHF1xwoR//6tWrmwvOPx904gqDy4T+KfwB0sAbx68JGqvh6PmPtz8qI/QpJn3atHgoDm/TAgjv9R6fYcqUV8z551cwHy/42Bx77HHm/vvv82n0zJjxpsGNoqZy5Urm7LPPkfWuR487zEZ+Rzur+2O13zYhs1/ef3+ezCn2Db8HzHUodJk5jLH0pKrs/6L3Frk8sPeERYUAafEMah59WpB4KMwW9f/dd99typ4LOnl2WfPg8AelLO5PuG/hXvH22293GVPmslaXSTwEvWbZ58uCAhVTCnvdL03FihUNmBJfKwJeTToDXKNHj5a1ejW+3RzVO/RqWcwVutziCaNp+rT54qF4WTYtgPBe7wkzBDjSoiWoefRpYeKhMF/U/z7WA3uPT/p7pf1/tT/6jmZd8JP4jmaDhqZ+w6amYZNmpknzywwYzUuRUM9cXKs2GM2LTaXK1Vylc2tE1KY4hHZItuyAdMAxHkpA46UonM8QocvwxXP+d+Mvi00MbkrCRlr/Eua++0iEU+azzz4z+Kaa6dGjuzn7rLPNxRdfjA/1bpf2voeP1UIyKC9xiRIlhFllAjdE3JSHfxUuOF/yyA86Z/ny5eYSfDy1Qf16Ztsv22x0vNMQF0W0bt1a8HPx1XhcyS44Vq1cKfnDnygnY/+7+1+bmT7/fsBHlfH5C3PTzTfZTREalZOTA+buLNOoUSP7YXi0DjcGSj8sWLjQd8E/0v6ff96GcvKYadOmuXKiUnDLmuDgx8W1//kBbM6H9fxAeJqLcjLhj9n/2k62YIXrY3yKQNrDuH253NrPD1jzvYj1sQNesuQz6X++c9bFS9F5EtYrtzrEc/5n+n8jPvBOBgBaYHMfNnVDhw4zDRs2NKefdrp54YUXoja6yqbP/4x2+kZ5T27Nj7pKIP4z7Y8qZ/GfccaZpk+fPmnNQlv20X5oYGS+jB8/zsPRQ+a9TJky5nVhOCJM6ov3UMp89PFHeFdrGNx2HZRD6H3j1/Lk6Qv1nlhyGCDEoEGDzG23kdG07b/vvvsNPunxL8dPmsh3Sj/0TsGm1pAfaj/ttFKmi9BQG5uTBA3F5pM09Jeft/r67Gv+DRky2FSqWEmaiG8dQ2CySvy5/Sh+m559/tWrV8+0xWZYK5sNPz8uD62bufxybP5R6JYtW8zLk14yhx9+uOnYsWNu6LVIl54dv9ZNgbPhjyFwjbrv/iF2HGOJ8cBvaf/vxf/Tj1vMZZddZj74cH4cWZZQNvwVKpxvHnwQTAgSv/nmGwhxMfYM4P/9DzwAJutYM39eJEh8443XTf78+SPBqy/Ue7JgtlFxiH9t//+05UfbDzGhZ7wqvxX/xg3fmUMOPsS89fbbokNYuvQzU6hQQbNtO/dk8VKiYEoYTa79Qk/iqCUUz/mvbX9GvRz+GjVrmsMOOwztsPjwXUtTv359MIt5DawhfS137dxlDjroIFnTdfyZmD7/n3xyvClYsKDPl5O0dObb9d9IHOlMbu4/0f6wLvvxR71RqUpVU6V6DfCRZDTrGX7NpH7DJmA0m5umzVuS0aRGUxnNGl6jGU3byBcV63zxnvbJ6dEats/w12eBR6FsXIQ18oXQ4o9n8cnp0Rq2z/DXZ4FHoWxchDXyhdDij2fxyenRDJ96yinQLGJxTu0xO3ftNMVLlDTcJNJRenvHHT3ED7M/u0mePk20kCeffJJ5/Ikxknb99dcblc526NDBjH70McMXnVqczp07m8chAaIjPm7Wjz/+ePPQiIfwnVRbo8xfAZefRx8dJQQ/mUxKOGp1ylwCRvXNN2dEwOqzBWrIP9OjNWyf4a/PAo9C2bgQfzwlyJNLQnq0hu0z/DXQBtwqUvRdGJPQLf9quTnwwHzmhhs6SM2SSUsAF4WaMC04zAh/erSG+dwBAQI3bFOnTc/ItWDBAkn7AIsb2z9hwlPYuFY32361Qoe0DJmIHIDiU3gN22f4qxB8KpSN+3f1f1SDlEkmk9J+mL1K+9NrEsE6X7zKPnn7r7/ad8gx8wrG55dffi5pSz8LpazMqlC2mP9E+y3m345/wUcfmzPPPBOWEPFNIVvyNjY1hQsXNk899ZRvmW1h+BvHGA9pf0Q9EaaLX0HSEtKjNWyf4W+YUaFsXIQ18oXQ4o9nkSgyhr3JaAZOwULMGkcwmILKnJgxI6JxirVu3TpmyWdLg9ICb1jIPqIVLDf8NqtCaUjDWpMAgXoVRMN4li9f3tzStWsQE83sfwb/NNArfKoMa0m0mdSJRY3qCSecYHZjLaLTarFfSUM73HBDEB/WQqLdT8q0adPGtGjRwsFqKb+v/cysOelveGlDcw3KpQsxhzBMK1myhGPYGSIsBcDLTL58B8Kix2q5bUrwm16IS0qP1rB9hr9BWbFaG3MeLFi6du0GgH+u/cTwe/Ank5YGvz/vfVe534efzMVzzz/n8toH8S9ZvNjkA0M5Y8YbEql1YoBrMDXzoYuwRr4wXfxhIUFierSG7TP8DTL5XrJxq2B5RoHwPPSD5g+hxZ9LQnr0VKxDOLfmtLY29bHRj6cxkPFcUasj3z+KX0u2z/A3LFGhbFyENfIxZeKzE4VW4pvkfmK99trrNg5KETqW9Prrr5tWrVr5sMZrJsXG9ckymjaGwmHSGXwJQ/ISXmFdRPTIJSE9WsP2Gf5GRWm9NCbCGvk0zT+1YB9hPenRGg4xa1yUNR4TYY18EazzxbP45PRoDdtn+OuzwKNQNi7CGvlCaPEHWajRrCaMZh1Ti4wm+Eoymo3AaDa2Gs2GplYdMpp1wZFCo4kM6YWEVRN/gEAqqGKKWDxLQURGnC0+/I2yB8AZXhshv0HaHwU/vuflm4xvOwpzqRGjRj0Gk8wP0VUp0VjStPKlF180NCEiU/L1Gms6wJcSds/QTm43sGt3Zkkps33bNlOsWDGzFSa2dLvxUdTSpc8UE8Lf2v8lS55krmh9hVYpNm7rv/vObPkJUno4dv30aa+Zq2BKeuONN5oFMJGhmOrdd9813bAwjhgxwjzzzEQQmcuESPft09e0B1O8du1a0cqSqaakmmZ+nTp1kn74CBtmW3bKLMaCdOedPU3zZs2kD2y8AcP8oEgYl3+1wjzy8EjTtFlTaIB7mJ07d4i28QZsZjp17IS81myOZk8dO95gbuhwg/n222/FtHgLTCfTHTfjN910s0THXik0tEnjxpDKFQLRS5kcWXgS0Fp8bB64f6hp0rSJ4Nq9G5srtJ+mdiMeHGFwNswMHDhIzDSlt1DOTmzA7r//ftO0aVOYh14tYxpp2yS74Ke5EcebjObUV6eaKpUri0bVTnf7+4PgeUjwDxw4EHioPUlBEPCm6XxjZzNu3DgwGTMFT7duXc0ezIWJEyeKtJ59RG0fTXiHDx8umzqOxfDhI1C3ZubZ554VfH379jWNGzU2j8IUkY6Ylyz+1NzZ806D76OZF19wJryIHz36MXMFNAE0QezRvYfp3r07sziHnLbaGiFPzn/2QzOM8fjx41l9cXZxT4gk9wH2F/qSc2EX2sCC2McPQnDSpHFTM3AQ287xJI4U5sFOcz+0ObaPrQnutGlTM/DTNJ19TI0m284+6Yh5Q00Qx584HnoI49i4iRkk/fsTMZgZb75hunTuYsayf99C/15ztenWrZvZs2e3mQitP7UhnGu2f1OufzHXV65Cndm/Tc1zzz0X9S/mFk096dj+xYuXmDt63iHvw4t49wUp0mg+dDnM+D6YP0/m++3sX8D/su0XU6pUKYMPpdsCAPvr9l/lPVy37hthnigtPiDvAeYraIrVTZ48GWZNraTdnDN0xE+hRvMWzU27du3MpEkw62ajnbPelLSlK9pc75L6pm+/vuZ7mLtt3rzJdGjfXt7lO2ACRy1gB/QD3+2XX8Y8CcphcfKeoD/se2LHUMd/OwQqtNRo0qSxuafXPXjnklIDxY8zvMK03H6bnWOkORQEdb3lFltTAJLR7AOaQ0fh3Y2dbpQ8VrNiwdJ/ly+ntUIe8ybM+rxz9b7kkrqGQok1MBPt16+faXvtteaH7zeZW2+71Vx66aXmxRehNUYDKDQcPGiwtGvDho1CG2+8sRP6poP0E49FdIJ2jBoyOR4BRNOnTxdtdCfUccGChegqR0dvBR0FLeG8Ih1du24dcG4Uc/5GmDc333SLWbFyhbxzfD9u6tJFqj1u7DgxFT333HJixvosNoWck51Ap+N0saOMP+kinfY/y+Scrg/BIun2D86ckVYcNWtcLBtAHjEY8/gTks/+pEzhQw4xN98MGur6LEpMCR056OCDheaQXnFecD3gu/fwww9L+M477zKPPz7GlDyppMzpm27qYnDWVorBd/QM51z9epcY0iUxsQSed9/DeoP4EVgXnnn6adnUrlu7TvJw43vNNdeAvjU3JSHQxXnsqEpZfGw/1z+OqXeuLTwyUfjQQw2+MS5JO6CpGTL4PtPyspbmnnvuEfo7H2NLrfKQwUNguj4TZpGtUbeumBMbfJ/IutYT6xro5wt8v52T9/vyKzCWH5jusGgi/SQNxzcDTblzz5U1fPY778BUcZjQ65WrkvCDnmD9s/RkK8aqj2lMejLS0hMtezqE1VddiXUaQmgKMekogLrpppuErtBaisz9ZZe1guZpJejsLnPdddeJuWJLMPycVz/jSIPtCvv7646d0v7GeEfb473/6KMPZQL9CuEe13/S1vr1G8j8k+M2rh/JTJ588slatdhz69ZfYIa9RuY/E6ZOxfpw1dWyB6CVAYvA/QZirtkc9Vq1En2Acbc0FWsWtKa6ZilNZR/SymM+hHDDoWHlWvMwrIPoSAsoqOe7SKuv7dt3CM26AfuFZcuWCU2/DnQQx9dNy5Yt5FgNtfLU0g0eMsS0bHGZuac3x96uP6MfwxoIGk1c3JN0xzpoHWqO/yswh9kv1BTTPDzdEX9/HE9q1LiRzKmcnKTZuGED+pn0pLH5Dn4pCL/TpmPvdeXVGFPSDI5pCrTC7o2+Wv6VeeSRR2Qtp3Uc90bSeYCi0OdGvHusJ/dopNN0XDcHY962bHmZ6XVPL9cmJLhxI4z12l8eIypU8KDgXUmZWU45cmu36P2hlY2uvzuAYwj6jfspzpkPg70w97Q87kDHPW2NGjVM3rx5ZK19YswYieeeqyPoPPvvnt69tUKyV+Z7Vg9Wexz/7zd+L/Dc/9g5/ph5713Mcbz/ZHpplZbNKf1L3/8pbNh+8dsIl4xAVIBmCdLSorIEo+xBwRleGyG/QZp0RlRAWukAjMGmJbtglD0AzvDaCPkN0hQ/+caq1ajRrAPFZX3HaDY2DRs3N01atAo0mrXrCEeajdG09QlLd0MSRvk2BMPl073HNTwI+3xpngyQMOKPjb/hpQ1ATLEJzuLIABxxxJHm5y1bzaPQWJJAWaKAF3rWLAl/Dpt36Q3XJU9OeBJS22tcaSnZDJNIkvEgMZ2A83/+jGaY0eUg8eOZNppheefK9mE3Yx8DUa1QobxsfnCA2xxS+BCzAwSNmr5TTz3V4OPYpkXLlrJIzp41WzZjNBPBxSyG5z/PhT3/iScUE5MqbkTxMV7PdOckkyA6BcCELjWLP/kU0uT8snCzDsOGDZW20xzr3nv7iZSZbZw0ZbLZjU3AvX+9V9KffmqC1JTMd5nSZcyTaDu1lZS00jw27Lh169ZKnqFDh0bNVB/azw0Q+38NmGSeraW/LM5yUfraB4SN+F+H6Q9dpcqVZJHYivNZF+JsV0dK8V0fcuNGbfRPSONmhPlCRlNRqkaTZ0ULQPq71m2cbLotrFIl4sGCAPOuihdeZLg40lECfeyxx2JjVVw2wxxzHMI2p59+ujBrNIE+4MADzHPPUtqckrFme9ifw4YNk4Urf758ci5t3LjxIPSdRRvBhSiZ5LjkF+HAp59yXA40b2NxYfvGjhsrc4ebRC7etWrW0Gb79gce2QyVPeds8x2EFzx3fMQRR4Ax6MMmCGNh+/hccx8Wpr59+0mfUzrKMipK2++RM3DsY26i1dVvUF/6mAIRbgakj6dmmid/gXPRTCOjSZM5MiZcpFgfOtu/vc3Wn7agLyrKhpzxrOsx6F+ar197bVvDM7X52L9noH9xJvCZiehfCIGeB7POkRqMd8n3L+bXjXgX8+VH/2LMxqPPeJ4N35qShT6ZRP8WLGCWQvhi+ze/mYXFko5ndVlOyZIlZINeE6ZL7IshMLsvh3dJ3Yy3Zog2a9jQB8xZGNNjjj4am7OUmP898sjDAjYCDDRNaik0GIxNDCXJ69d/a9544w1TDO8kBTEDBgyQTZc0QgvHk+c+j0KZ3EhvgCnYxdgQnIX3i5LnV8DsHnTwQaZXr16ATJm6WPj7oU+3oA+tcy8CAjSN7I35S/NEnoEko09Hil69WjVhEL79dr0IWWpjTYpcSph4mmKegLqyxO04DtACG8Fjjj3Gg51VprTp7eZTzzt6GvbXYrTXO6lKVB/Gi0YT9O+tQKMpCJDGowecK999tx7CnaZi9VGrVk3z5IQJpv4l9YT+0ULlR8y7ttjQcG5xY/gemOAC+QuIQIUb7u0QAlSpWgVCqgeg+dtpLB2tYEiDyFyTjjMiDmsAAEAASURBVO7EfKQ2/9RTS5njjztONn+kj8R/3XXtZPzZb5UqVTQz3nrLLPl0sTnjzDOwwFeV5q1evdqcifl4DZgHziX2/733WrrIDR0dj1Cwj0gXKXBSRyEP54wd342mBkz2ypQ5S2Ao3Bo8eJAIOSkg5PhrN679Zp28/0NBn63jSHqvMLicvxQ0rsQcOg/nYYmfljhPPPGEqVq1qtCXZE5Sxp9meKT/O3/dgTmXFMY5nHN8X/dizuFCNVPqlFPN8UWOF6bv3HK2n/hunQaa9zX6AhevmePQjzxH5p1W3EdYD+mXNUF2Ca4RXLNY/48/toLi2ri/gMw9x7gy5jItjJYsXWJKo01HHnmkaX/9deYdmGKTSeRaRxrDtUPWNcB9inUtP+gn20Tn329HPzlfV6/+2pyBNrRp01Zo7jasZYMgWGM9LL0eKsKD/NAWX1TxIjMOzFgXMOekJ7uwFrPqZH4qlOf8Wmf6w5T6EAgDuE5/AIb2hGJFQU9KinBsAvYORYoUsZZS2HFSq0+hC4UcPEMXOdshrN/tt98m6w8FKwWxti9ctFDowCeffCLzfxj2MCvA2IQTge96A+x7bJzr3Khw7yOjyLPS361fD5o7T9YH+z6nIFxUmnqWGYo1qzMENEJTtQ9AU/NhjSNj8zyEeuyv4sWLYx81SpjyQgcVMn169wGuFOIelfT5EODRUeDJd/cdMPXceL/1pusHCGmtYChlasnY3ynzn2vRlRAo0Pk1EH16Q4f2hual4nwzU1jjsF8AA3X4YYebuzB/aG5OlwKyaqR7mKMU/FSpUgX3Y9QxP2JP1rbttVJHZTRDmkEte2GY43JMh0EIwf0b58Zfg73R5EmTBceKFV+ZQyEsIQ1Y/iUstWDmSgEHnZ3PbBPmM9rE41PifN1tMBhMEeAUxzqo49vq8lbmOOz7uDYy8hfM11MgVNi9a7dkrom1guc3t2zdIsK4Qljr7PEYgzpN8KazFEJyXeKZzaUQvFJgx7l/LN7hNyHopbCG7zNxrISg6pijQK9mYT2CQKcG9h2kDRRIzIeg/gQoXihkogCYe6FojrNKGY2TesZ+MkDCCEfjwiifOU7/bHQAKN4g7POleTJAwoj/PvyVqoLRhEazRq3aotGsR43mpdZ0tkkzMZ1tJKazBKiC8yUVwZmq803znowUN2YWgL9x0CikPn1qSdHTpoTp3u89Ch1EiNeG+RukxEIar08tKXralDDd+71HoYMI8dowf4OUWEjjybTwZaHWMe5gqgNp2pGQZL4PKQxdPzBPtO3XQheAoJMYzsVC5h0K5sbjbWw8FH+7dtcKQ/TV8i/NJGgwDoFEuT82kHRaD58fni+h5WG59z1ArU7kPsclQpe3utxcCeJDidA32JQeDvt8HmQfBeJ9JyS0JOaz8LLTXQ0pMokCvsXqCknJZiIyGzGyWByFNirj2xuEnwSCNdv042ZDjQ1NsLiBLYHFd+CAgVJpxpGYPgRpnLbiiMMPN8NwJo3hvcB5woknmmshiaTjxuVSMB/qnsbCSWll2L4v0T9cVKlt1DLD9CH334d+yWPWQqOck0wK/lemTBFYvuoHg3m1UuSUnLddsnSplH/rrd2EgWaZ3FCwbzc5SSaJMPuMpmhxhzMZkOgx7WJcSEHG4ypozcQFlbofDMZSbFjoboOUmJsZrTs3+FwM1ZU/r1ywkTfmjDPOMP2w8aTjBUjsz9Ew4aFLYhPIsDCQCH+Gi6YY/hKbjc1YAChp37V7t/RzyRIlhCGRjKgbBQmUlrKaQVVjIUnDosr5Tc2Gurvv7iWbAeZM5ljzZNvHxuxF3MEHHWwedZJ6jsdn6GPCUkLOzRy86OO3fR8TDxcn9uN0ajSdYzzd506j+Qk2fFdC4v3QQ5YJ05qTgbM4jOkGDUc5aIeIg+4SaFV4UZZGlD/vPMfsWoDTw/6FBJzjrgv6Smw2WSffv58tk/7lZo6Cnh7db5f+3Y15fBI2LGT4tM6FwBBSExS5lEjo20G7RqAczPUjwbCzbcxDho8aDiZyI9EaUuxdEMZws/lXnt+D+wlMyBAITEiHxjz+OKTUBcy8D+bLpUw0yaVT/PQQPzfz1sHyYMliad+HH0CjAQApA+8D6UxUV1+CL4v9i9tApRhqkKh9o5sGLQbnG24alDA15C9N4llluKgY0TKzf9QNfWCoKVq0iAQJVhq0pA8YTWp76kEbyY0+nRahT4l0P9wUc6zIvIXp9F+Ciw0+x1jRPQ1hQl6Yda13msC3335LxpTMIh3zc4yp5aW7DnT4lFNOEf8WzAcKMVgmGbzDsOGkBcmoUY+anqCjxD9r9mxJbwM6yo3bbtBAcchEQR2FWdR08P2nNpmOGtOa2GTRsezzcYEOGQHrUkKLiwd0cVUyaRo0wIY/zd3YqaMpi/FlGXQcX47HRx+CwUIkGa4DwSBZp1BcO0hDE0JDGRulENIKRNg2rnt0tM7hppfvfUWsW5yH1qVMk2ZN0Sduo4vIjtAIh+/fYjC5LEsvC5N+woUztCqg4xER0hduyK1LSVvbtmnj6xWvnwPD46SSJcyt6Lcwnf53574r7WP734AFAPEPx8Z+5KiRpi7G5GhsdilIIP3j+6/5aZVAWNL/HzEfuK6Rueb7TSZvANc15woVKoT8HSWk+XmZ0m2gCRpJrR3Hwx6PSRkKBqR8EUilzDIIIzgOpAF2fh2G9x7rNBi3aJ2eJfUjbaiCM1XqKCCsBGaNjuMjffwhLayccx7OT6atXLlCU8xppU7z841tYx2ii+58CebU00qJ0CaK8UV4JEzj+A1yfcNwL64PmL90vDCO+GlFQ5d0NJX0n26p6wO1GDjqyCNMb2rA4FgWNWIsn8zdSliasD8XLlwk6evWrpHw+9BO061BP4Tz/00I4xh+EEz0yJGPyPuowjyWfhDGsKNbA6UA+SFW6+gjI04hPE1DT4GQ5DsIbKZCGMo+W/HVcgGcB7o36SVL92aAvnD/wfU3RZpxOMeUNGOk6QlmlX1BYQoF6fTTckYx8nzxcCf8uQbWQ2eXPUfKZ/qYMWNg4bUc8xltQvls0yi0qXbdOiJMRAd52LhHQrBoekHqTKsDWhGcAeEW12y2gwKg5yBsvUWsTKxyhHVbgf0FHUvmnRi3326tUp566umY6exEvGf5IDBR2M2bNsMqJ6+MI+cXrfxYSiehDXb9Z5im2cSPm8clL+d41SqVxc8fWlHw4iHtH5/gPWltRryH9R4FDiLEa8P8DVJiIY3Xp5YUPW1KmO793qPQQYR4bZi/QUospPH61JKip00J073fexQ6iBBvylSuUk3OaPJSWTmjCUazQUNoNGE6K2c06zWA6ayc0awLyWh0RlOKdBOOfl+09yhS90yPzxrWSPeMPwIkWqbCB0lRVLwC6fFZwxrpnvFHgOT/Dz8JH2/FFBfgXw6zB3zSQRYmbdhYSHz1oDRBaX7FlymZTCqIbNp4FnPvHlcYUqpXvxgEKVqwySSWPYebRIVxT/fgAn300ceAobzSl0vPHjAWNE8jzi4wt+HBbPppHsKLa2iGx4tr5KwpyroWEjhKpMW5sseNGycbXIs6hY39Q2C0j/UwNIE82W3GCEOJPs/p8BKHw3BBA28fo/OLmJPSMY4LNk0yxCEvTVa5aFMydtutt8XPlUp9XKVcP1Djw7pcB22jlmE99vdmtJn9z4WbGzS2feGChR6E/U4zFLotP2013UE8q1WrJpqAUtBK0LF+MoYOP02MWI5oNF11tFYLPo7OaNJ8kXCU8NEpDLUUlA5aPGXE1EwBGsBkido2DVeFlIkmJBouh42kNaFLeWbs9ddfk7Kp0SM+vbmYJmsMczzouIDIuFyCcYGwQceFaQdDkDFu7Hh6I6cV1hiEv/32GylzIjbs4hD3yit2geLCn4QGgzhV2skFT/uYxVGbc/ttmW2XPi5QSDHhduYdUk6MmZf68KY7azpLYUf+fPkR/tz3LT2CQ/u3dGnfv8zOuc05ro7amLB/qa1RE0VqjriI25srDST0G6ROtn+tibz07yc8j+rmfXM377V/Hf1l/47FeyRO2mGEgdFNFN9HmnOp4/tPbQMdGRQyfp8vs+2e4gQlkujKosaKG0/Wh/C8xMOmOwAEKMGnqVrUWUa0e15oANA6kMSzrr+g7SFchCvl+vc2O3+hEeUlMsRCs1RqALkJ9C7wayzbxcvR1FEbz2MDio9Cq6Ow+WdbBrk+EFgpQEtxT/ew73YeoxoALZvzr3LlyqLtJqgwW5C2q+OtkMRDTSLxc9PHsJjHIczjEAyTbo98ZBQYoEcl63IRcIGOwsTu1VdfEWGg0FFI8OmoGRU6GrR/5qxZYrFQqGAhmWPaT7RYES23awtvapVNnAuzPI4Rzd02bfpBtHbUDohzMHxUqlQZpuoY38DRwkHHlxtAasy0nxWM9aAlxfXXtdco+3Rl06RWaKisTzaSjAL75YXnXxBYByr4vUYFKZWwMZQ5B7/C8J0d4ARVvp9YCgCoCWS5r74KAZPLQPPmNmA0bVhLcc/gQdNZrhkxh7ZRYMEyKQTmJUvc+PMd4h9ptFomdb6xCwSEF/vsNOPj+6/rw6KFYDJgyivr2mFuXXP4aVrMdVLrzEJkHOWSJ1ukCihfg+kkXQa9XkHGM4/cZs+9BOvcA6bsfp1+aZI15UXepjj2If3s8HcH/ahQ4XzBLwwW8uKzMAg7AOShj5f8EAcZZnX4fIkVqgJg7569gpf7grAthK2NDSgFQlxLfaIrXrF8+823kp9HPcQBP/uZbaH5qQoQPU0N1ywUwmMKhJU1C2HuaUaOHOnKMjArfVjSaZ2QTLq1BsJ74ifNY16+q3SxfkCYAjoyiFNwk3n62BP+4IMOwRgGa6A2iol0EraRZMSIize39oMGMj+suKSr0/LMhJkz4UhPvoSJL/2kGX5M3d6Lgn3OtfCWdWrzhgy5T1CTJl7Z+iqthH/+DbdC00x1ssxn0KGXo/ksGdPG38bBkmT7dtnT3XXXXbjh+y6ZFzt37BJtLYWcjXDsRvdJMmfQb7t27vZ4r4QVAC012CdPPQ3TWeyxtGyhsY7R1PlHE3UeGeN+b7oT0FNop7RB83L9GDhwgARJy1oH+9ke3e8QSzyPiB7X377bvcdCKf4A1OdxENEjI2+UJD5JVyD3jD8yy86l/9NKtkEtWhOzhjUyjlhjtT+0iN/T/kqVq8MitqZcKiums3IZEG+dhemsntGUy4Bq8tbZGsKZekTwaCX0GaapP0qLfJqmT0nJSA4igk7VPHwqhD7DNPVHaZFP0/QpKRnJQcS/AT9t/KnN1M28to6MGi8L4vkJOppyzYbkRhlLSr5Y0+effx4bhoIxbSg3GjSbsc6250qcy6gPRk0dTUYrwyTDd6YmBBGtIO2jeQ+JfehYIk0+RoBB5BkeSqd69+4TgvhS2rZtA/MYx2g6CC6gNAuTmuHHMprHuVSYw2DTIFJ/9D/PsRZEHdSslBdb3BUympAoTuEi5txJ2ByQybCtNpDybxQTT25aeb4xdIo/jGOH8MwCGadNzpRF06lxZb1o308nm1HgX4TzSuqKHF9ENhJ7sHjyUpb27a+Xi57IHJ5WqpSA0VyFklBeBMWKxhhNX3OAov00nWX/8owmHRmIPJDmTYVmjvXfC8l5aeC5HuccaNLKMxw8p6ftp4muZzQBHzJChKF2wDNC26zWj+eZ6GiqxIVs7py5EhaJL8JkMHmbZn4Q8Wk480NXHiZZIaNJs0maHmWZYALPH+Lfvm27zLG7sThZl8I5tdcE7/d4B5LJpLTfM5oAOo7MPEw+pY9LnynnAXfyrIz08WlSzASY37DuX0IDT0dGk/2o84hx0kf4UUaT7xbPMdO0WM7vof+5CSp9BseR/WtxnOrGkflpnitaRBYIV62qZeSlbISFkb+rp6TRdJt10k0RzzkzPMd9gihk5DnvaSqt9eW81/5l2Qcfwo1osIlBHDei7a5tJ7ioaaWGl62cNZvMTh4x3aQ2j0zA25D409Q6H0ztqD2LnK05TZIoMecYUkofary0bc2aNTenljo1ygofrS24kSMM+7AitCJHH30UNKr3xOAYIAw3omfIe2LnL80xOX/pngRu9s8ip2GQSPwofn1yzpMpUEdGswg2sNalIOQpDY1mX3Mrzu+RMeKNsnSSXwuxwBor7xI1lcpUaTI3cDQRo3UFs3ITpNJ2wixwjGbO6hwGRbPONgijKTFGzNk63NABZrNVcfvqLxKrN1j3xjkv74L1hwyUjgHxpvCP1hIsl+dROb72fYPWD/SfZmPWpTAvzo+bgCLh+x++l81sP5iik3GOXNQhPBPPow+ho9DgEbdRnzgx1GiGUAZniC+3NBSMbOj4PpGGtoXwSzA5dBTgkV6effZZ8p5JHrSfG0daz6jjecZTXJ20prTOGeksHCj0YT9p2laY5uXLd6CcZdUyhNHEuhTi17RodkFoiXGOmc46IF5kdBTmNOkPrQxIV5Yu/SwqAj6Wzcv4qlev5uOpJedcoNm/0E+ua9Be0VXw77etOft5PNbJ0FEzzfpo24TRxDqiNyCT0STTx70EYSJ6slDOW9p1urcvUspxhbGfLUNvI7jOsE50a76GJg/1Vs2QyyI4yHSz3EXQzKnjXK3m2k3NMvMKo6kA7vkwzg4y7XlowyJnS+c8Sa5aJQwM138yL+qm4Rwz18+NYNx5Syvx65q1wdNU+45T00ocKhw9GrRMGU1i4lEf3snAtTaZtIymPecIRhMmxsw7D+a6dNTsMqz9wDOUrIdauwiQ+2HZMoYwYc7mBoHOraPwzndmSkyCe+JMPk3Ypc7BvkLLmAltONM2/7hZztkTfx+noVUYPr0QPvhkGq0+VAh/acNLDb79HeF3mQcMsF8uEAuTgP6EZfsqh5Hwc99ExQjP3W4B7afj/o/HGoSJlBhjBTWot8wZVxjnDD8jxApxf2QF8TbxWdIZZTQBwVuuSb+oeaYFBIVfm3GrN2mDCvO1jgdjH0JLA7pmfo5LEOefOccr2ID/1ZyI+J3t90Uwqw9EPh/lPJKSkRxE/MHxV4JGk18t4ddLyGiK6ay7dbYJhODRrbO1+R1NajQxAYL2Sz+lh30vZiZkxnjgyAMgLp65uvSk9LDPmJmQGeOBIw+A/hP4SahpK05NWoifL15dmHnx8w6URtJclZIezj1+9mTM42Ok7teDkeHZLnX8XhuZOGod1bH9NI0g88QLQ+gqVKjgzEMNDsYPN3PemRPDT5ivVkCjCqJx/vkXwNTnR0aJ4/lQLmh34ZIdbrjI3BUvXhzaqfX/x96VAGw5bP9ppU17VKgQSpGQaPlKm1YpZS9rtKDsRLYsRZayk32L7PtyZUlE7l9SRPqSUtrTvn3z//3OPGeeeZ73/cLFdfFOfe8zc+bMnJkzM2e2MzPwdwNbnnujORKXCrTEjl5oeDi9BIQDJ0k0fNKlQnlcj41/NNyVwQPrYqfKW3n4cUDK84zk1WDeoAhUVR167NHHBJc/3I3kpSSh6dO3rwhn7WDUj+dPZZWWAMSn9HkpBfNNYSwTjsj/aghhwuWpF+CLahIE5gcTP9Aocf6tgmUnMv2L6ULztVdfk1ydeOKJPk9cROBKKFfluPp/79h7Bfec887BmawNPi5aJkzg5U9FcFbsTYFvBh8okMuVLWen4mykqLOi43FnFrGDjAFczR0d7xigFd7wOxJnEtQ0waCTkyY1VJ1VfvJcA8vVPaWC3QBcdsJO7Q3SRn6VFidklw27THaXWYa8AMGVyxBEC9U81AlOYG5HOdMgqBieNX73PTcAiEDy4cBvr/p72bXR8z0c5LhOBzRF9alIiscVoS5JHjtV3jjvJ3mVSeXxsEuHifoc6z/zci5UzzjZosoS6xYNJ7H048VLX2DAyB1wdlrMh9J/NZp8+3KMMsUBFc98qOGbaKf2i/lbH5NUvfGTaeLAwPMXu17C3zffECZNmz5N+C/8RdrKY5eDAy6qEnIBYzAuOaDhZIdnbZW/SnvQoDPszjvjpk8M7phv1tW7cKa7VevWQofx8sIid27ShSKfOfBn+2b9J195NodqRjOws0szePAQp64I+3333S+r9yxUnnNhfnSl+pNPpshFWaw3vHCKg9dnscPzKlTMOFDgeXIarn5fcMEFsuvn+MvB8qtCnxNlbftSH9FOBuAsK+lxcMUFIwmPnRmeuaN59JFHZbGCfCKP27VvJ/xhGdPUwW4n6XHXheqHXNjj7gQNJ52Uf4xf27944Iftn7gLF/4o/oRTZoi8BT7N2PvGCm91R4fxkScq/ziRYBkrPYbhwhphTpWMEGqKQH1y1zq2dq3aci6LMC4QzJjhyqA3LubQwTv9uEC5d8OGPs3kGbU3mNA+ffvYg3H+TQ13nvtCBpI3C7Bzo4YwpkMGYlnyz3P+9BdVQvizffBcu+7WUjWaedVLRFy8jjHURGD94w2vOuikf0KGRgnhwJqaM0uhTspdl7A/4246LyVj+dDoINzXOaapFNOUL/69e/dK8IlA1n/2d5TlfD+aGhE8V8/zb1sr/6rVqsoZc4k44g/ps+9SeTz5Y7dDzYtO2Ddvgcy4+567pT/nRJMD2SjpdtSoUXK5EXfhKHv4fIq0b/ZraN9nDTlLSEn7Rnu57XYnP5U+1aR9OaKv5UKcyJNIrXLOnO+kvHg2m4bykfKcqp+Mk7v+tWqzn/5B/MP6RXXw7j26C5w/1MrgGVMa9uusB1xUnD59hsSlmVqEhVwuLuliFS/C4+LT7be5wT21bRjW70hKjO6HF31xAY3nWLmYpO2PT3dQ/j4HzRaaLqhD7B/WrV8nbukf0K/RkD7jl0vG4M7Px1EL1EktH+2HKftoWKY62WLfxV0wlhPzs2rNKtGgeAhnrckvHiNg3Hz7le3thwVud5WLf4yXFz6Rlit7LkoWiAov4+V4hTKPfNDylwREP7xgiWM8NWwv25beVvhA+cvxAS/3oVkG2cwFIRpVq+Xkn0eDdtkVZbozy3S++PPIEuX2Kh6DQdofx06w0qcs07ERx0L0n4DxBQ3VwZ8a/5SoxRMueUJI1k8epWF+ZJwI+SZGI3Uu+X3+eRx1QNghOCakhuMfwsK7PiiHeGTD1xn0V3V3q2tvvf1WCUY196JF8TQK2hLNPRjrMg72azS8W0L5wXso6Mcx24MPusVlng+moXYJj9nkR/0Ez9bzwiw1Usf3cnWcTNL6p/6Jbzq/abdHzvTIhHjk2AKkvxt9TjS5oxmqznbqFp3R7CkTTfeO5iFtnerswQjgDaXp1kzg7awBgOHUKV/+ROyN4OrtSQCQgP3N6Ldo2dyeSd31VP6r4zwOOwk2Iv2TXR3knwO6pk2byuU5vJErXC3nzYQcdJBNLkr3y0bLFSe+3cmD2FRp42ovsXhRglOj1TCe+zj/swgrEZ1kIsFb2k6CcORj1hQS+pYTd9t46Jsry4yfl3ls3LhJzqBwV4bnMeXQP6LlgJI7JMwTd9smvPO2nAHgZIq3W7786isyWaP/Cbj4gOe9tkOH3BCDKqqDNcXD2WUxyeKAk6tkxOPEimctubNENyfUTz35lM//a1hBLrddObktT/nMQ+kclLfMa+FAKf5TlaZb125yUQonanyHsBfOUixGJ0Aze/ZsOVdAenvsuYcc5OdZCbp5mQ1VThohfVXQieZh54IXlNCvbZu2ct6U6i5UUaleYwe5xKFC+Yqy2/ju++9J/PzhBHrHmju6PKJM2QGyYHmWgpfMcMWUt6rynBzVPoUOVC2FDlaRWK/Ie+548/wsJxi8cZQ3QpI/vJ2tSFEjNyiOvfc+XLiwj3ScXIHkBR/yzivSzJVPro5zx4Grx3Xr7i7qYRwoSbm0bSO7aYyXHQAHdSzPSsj7LRzER4Y7hYxTjPCbP1CdxACwQ/tDJS6eCeEuWH5+vs2fnS/nfYTHe0Q8RllI3OQxJjGsA9xd4E4tb0V0eW8r9Y8rltyVqoGBJTtt1ouWUAflij/VLUuWLIFdoakYGO0ucTIupogXOzEeppUdupQj+Cs0MAAi/bZt28pEgYMJXn7Bc0+XRvxlJ0r+8mZM8qs8zp9xQiL8hXvnnXbC+ZHP4d5b+C38hZob+cuBS926uwl/ufjSEJev8CIJ7lYy3itxoQ5V2pg+DtCohqRmBtoAVYW4Isz2P/a++2Rwy0tXzjn3HLl9cCouixHDjCK3X38zE7uynW2lipVlwnlTVF59cCaQA5i+ffrKOTOqhtHsj8e2O3fuInb+kI88Oyg7TagnT2PQy4EsL+/g0wU8s8hFL54vZvqJ/y3qEmXbA1jt37xlU9ROqgp/e2o7QZ1iG2U74kSRg2Se45mGndZZs6ASiHLVHTyqxfPCjB2wU1tvz3oyOahQoaLczEuVLJZBxUoV5WbDb77+RlbAeY7uySfH4cbCS4SXX8/8RvIkbIlytwADbLbXCjjbRLVVDopPhozh7jgNFzi4O8wy44SIGgC77bqbxLcn0kH1sx3Rbkm/QcMGclkaKxjl5nbltot22+P+j3K0Vp3aaNelMRHaB5eHnS4DXJ7lo2YJ23wXpEMNF0S4G8nBE/sDnhPlzbCE8/IMdza9AGfahooGCs8LTsOlOmKQjlcha8ttV1bOuUnFh0eYf+KxvHjGnuXLieMz48dLcOa9WrVqklc+2E75KyaIgDv2XTFZ5yU23OEUGXpEL5nwOkI8V3W6aGicMehMNxnabVeJs3XrVqK2ygUV1iPSd/EXQHNhpCwAaJp04eZ88gn1n3xiHXVJwcIndoFY/mwvvHiL5yi5OMrd82zl/x0WSni5Heso1ZI7YyGM5c822KN7dyxOfuzSEv1y4kKe87IRygzuctPwZleWPesGb6SlrNQJMvu18uW3wyVdDVz7btJU2sflUJskbbbvKpWriCqlspQaDUUBr1evvmi4qDzZCf2Yk9eQ3/BnObGNUFOA7t2xA8wLmnghChcy4n66H86Ab8BtoedgYbCk1LExUCUdN+4J7PKVhewsiouMThU+UsuAb1v2hoxdu9ZN+KLsy4CeY44ukCO8bI83z3PSRbnOekweUEZQRvoKJpkqwOLRUuFT+e0qyHm55rgcqy3aPi9aEwM86R86dBD+dcD58oMPbib9AxcO4j5rJ7nsap+9lQe7iWptfdR50ufklzc1s93z+A0XNrjT3/vIXnYVbl3XdJ2PHcUKWODbZZc6cqM61bLbQNarRs0e4CU1eTgW4IIXL/LjhUJU1d8XixfcfWO6vIxGP8UbYL2JCvPuu+4WOnV2qS23tjc98CA7Hm1Ly/qZZ56W3UHW090h91i+7Ld2Ap/Z/1D1lZc68SKn2nUoM8oIfV6GR3nIc+4s+5pYmGe/cOJJ0dgIfQrPCvMYxyWXDMXYqpyM/7p07iqaVaQ/cuQI1OdtUZ93kvpMFXka9t/7YoxQmOHFZTvgfDQnfTSMi2dFKQPnzvteYJrBT3Dmn2rT1HbjGfoB/QfKpJYXOW6Pi9yY9ibo53h0oarKGfB3BhZPOKFlfrnA2wTjwYGDsFAQGemPRF4dIeMW8pSG/R8XiCgfbrsVdfyJcVLHOf6hNpimS/kfRSfwBIwd69ZM4O2sAYDh1Clf/sTyP/SmXQxQNIhzJ1wRUvAJvJ01ABBNnfLlzx9H/2DMG92OJs5o4niVPG/SxT1v0r2HTDTxjmb7Tra139HMYxJ9GsURujTxzuO3/Wpc+g1iS4ICV2AN0P8zq8al3yCWJChwBdYA/RdZuULIM2DeRHFt3rTFg2jhqnGSTIGcyRCkwIPCJ1w9T0QCB1fL+BcaXlyRl5fnQBqXfiNErvBxZYjCNYkIV4TLASZ3i9QwzVx146qYrvizA+I5T8J4mQ/dgge3wLFy5sIVyNXqjIvPQ3AXkapKDOduZ4M/wrOZcEDKncGNWE2lP9PKPzXcSYkvI1EodmxnYpDdqXMMoE3zHX0ZHwfqjF+9HJrLE6Fc7aRR+j4/SAN3XZRnXMkLDXdkly9fISBdZfZEQIyLA4yLtPmlOoyaTZtdXrnKx90Q7jJwhZhG6UjYgB+O71iljPijbuUXy4M76y6cy4/wlXCkgU+yeLfdIuUyZ+53stoZlws7F4cn8SLdalg386KVaIWFX96qt3TJUgdC/oW3CZoubtLS/JNHc/J/jsfLJU7PY7iYNqpGI1s+vcw/+c88sv3pCipxyd81Ud13/I3qLVavyX/iED+sf2n+C39ZrlqmkrckffJf+IfmT+0D1nvGyb/FkSq3q/eunksaEaeaN3H5DNXD9JyYwvldg3bEupzNkA4HCmH9I/1QlpAMZZVr4zFR7sJLG/GBnbwiT6h+K+XFPLPcwCsad2uiWIV35O868hfRCn/j6EWNlekLQHbhooUuMH8jD6oOsuy4Y+SeGUA6wGOlL4UNdFfvuevg0sJJanwGNYo2IMaJoZQDK4s3brWf/Ncyo5fWfX5JV8uabqVPPKp6ZTUgIXJ03QbvzXpEXlL+STzi49LyI3Z0lixekoFL2jGuxU3C8U6mIk8Queh2TRSmvPRfeFAln+XLc/tqthREsgmIlH/ke2GGaZF6lwWH9cGXDyLQuHh+S9uT5iWksGHj+rjORR7EJ58UP0wP4VrGrF90q0mXv8g40Kf80bjIy5C+r3SMBB6ML922uFPGS9zY32bjP9sjn/AgDf7JUQ3EJbTQ/lX+azpJP44nkhMgHvZ/knamFbyW8o++Yflk7aeZBuRBZRnlH3fmWPdoWAeWYAITm4AbkZX5D/t/4jqZB3mKuLW9xXHENtKZh/CcAIkJolcsXp7HSVSIwD7X91nghfAuyLPSV15UrVpNnjTJz8+H2voqjTr+gi5lx9o1bjId9hlMEvng0hAnkDxLl72mg3lWHsZEYhv7f92NFKhGiy9vrqbcUcP2z7ikbLFA4MsUuFKmG+Kxl9IP5Q/lLzWiwnJYiot1lixZrCR8tWb5f6+Tw8iXE/U8HSeGrUHTDDyVu3GErs8I3aH9++/nJeoMeSl5RP0Px1PMq44/GJ79P/sm8ihMCv1UXnn+EJ98C/Kv9VHHnwwnRvOiX4XjmwQFrsAaoP9nVo1Lv0EsSVDgCqwB+n9m1bj0G8SSBAWuwBqgy7OY+o6mXgak72jyjGYRzjwh5AyEn0GlNCgg8/57E7DIgLWh0HDdIQUSb4EHnt7qLbJNx6AxJGkPyTh7iBn5ZgGJj8ADT2/1Fk83hvwz6eOch8HbhAaqDabxfvtlLc6/Mv8hUEyvI3oZXBZh6tXbA1lxFRY3NBpcWmBG3XijadigQVxtXGaz/IY1JfLOAoojCjy91Vv+cfUPkzTUs27mmutGGNzM+o/Lv6t2/53y/3DSR+asswaZylWqGux0mVq1ahnsSJvv5uSbyy6/wkBVNsd/NFRKAuwWmh1r1jRQH/c8iVp36hOXnffIAhI/gQee3uotnlYM+e/2P1i0Mr179TK4Edhg1ydOts9c2hKmNPLLAoojCjy91Vv+9PxrSv7I8ofKt8FOr8GxlKjbUapxWceQGJbmvHOHmH8f/oe5Cu2ZPMjimwUk4QQeeHqrNVUgE6ENZbDbLO3feyFgaP+j6Ov4Q2npl/RC+/8a/TVrVqP/PtzgORmDo1sueYUlWOCBp7d6i89rDPnfzn/W1IWJDwtM4IGnt3rLPyL/zVu2NtAuMbi0yUDzy5TAt0ix4hGsqMFEswtXPgyu6DYcqG8uKDAfvDshZOVWGRWzMxEkcIQYoV1RrMF1M6aImxN4WurLr4bSb2GwMExszxYq9mXsOfp/ff4/+ugj5swzzzI4K2buvffeoIBz5a8dXtySAvbk6v/fov3jYXWDM8giw6FqZaDeFRVyrv7/k+t/Ui7egzoRdbReBOT6v9/a/+OCMYOnVgx2ugxU2Q2eFPLcTcrcsC0qSo7/v5X/6RpNzr7wwgumZ4+eplPnjga3rxqo4gOa43+u/adrS679/R7tr3nLVjKpLIZJJo5wYcLJb3F8iwBe3BTp2Lkbttc3GbzZhR1N7mpuMRPfn4BGqQUSNU7fRr2F7flXGx8aFirUKxUvBATBYyH+yO5B3vKraTOADw1Ljv7fh//ffDPLvPvuOwaPXBvcPFho3ciVf1Tmufqfa/85+fu3739wwZzBpVyYCDm5mJN/v7/8e/LJJ80s9D+4nR0L9tYMHXpxrv8phAP/jfoHNUqDG4IN3n2Fhl6Bwb0KMulkkv4b9AvJuoBz9H//9rc1fqf9cvz/Y/jfvAUmmsWL4a8EJphFZXJZlO6ihGF389BOmGhu2WSgEx6ozr4TN0gtKZRQODGzcCd3IX0Rxq1ZQFgxQHceTygZYYCr8ae+GRgA5OhHlYQcBD9y/HeVxtWVoMaoVb65+pdrfzn5k5O/YQejAiKEJe0ZGADk+p9c/6PtKNf/5sYfufFXbvxFDri+Iugx1Crff8b4s2VenilaFKqy3NHk5LJECYMLxuAuKrubckYT13TLjmYBdzQx4Zz43jvJmYyrT4nfbOyLERKc3gpY8VhYqeFwKMnjGLwtA9/70KLx6jfyVKd+PV6OfgY/c/yPe9JE3XKODH4lcLSC6TdX/4QDyg795tof2OKGrhn1Kdf+cu1PR7IJ2eIcGfUlgaMNTL+Rpzr1m2t/YEyu/bF2ZNSnnPzJyZ+c/IkEZ+Yno70kUFTA6jfyVKd+/0byN6k6WxS7miVxRtOpzfLsZpFDO3bFjWO8DKgA53s24bsZlwG963cgcbMQds5UGKtYTnBVHJ536pUCpJxxmCweIShHP8f/XP3LtT8KjFAuqJjRb4ZfCpBySjCBZfEIQTn5k5M/OfmTkz8UGKFcULmj3wy/FCDllGACy+IRgnLyJyd/cvInJ38oMEK5oHJHvxl+KUDKKcEElsUjBP1S+dMMZzR5AVBR7mhSZbYIdjdLwM3dTTmjiVtnN1FtlpPNTZxoFrgdzTgpUV5C8oWDlB0OG7+hvlEULKH3qTD5pmmE7tCeo5+VXQHQcQu/Of5nro4UulqbrmOhO7Tn6l9Q1SJm6Mfxyf/m6l+u/rlxglYQyCTUjqyr5ek2FrpDexRVFlCu/3FM8b+59pdrf7n2F8se2nLyJyd/c/1Psk2IK92hhu7QHgUNQDyjydtmi0BVtoRcAsQbZ6E6C3Xa4phwFjkUj7fi/R0cYueOJnc2N0cTzUg6SWQuRv7SqNyKoUmIwwp+JSB+shYu2328auUGCgEVIRJTCnyiGb7zc9RC+9+f/rTpX5hPP/7YLF+x0gwZMgQZTuZ/0gcfmP/7bKqpXKmSOeqoI//S/F+3boN5e8Lb5t///rfp1q2rwWPN//Plj7fTzARcd//plCnm6KOPMniMOaiUsfWPqv8rli83d951t+G3Xbu2Bo9Rx0QD2y+lPxH16bPPPsO18ahPRx79P89/n0U2C6Y2J388S0LLLy1/YSMCvvPOBPP51M9N7V3qmMO6dgXkz5H/eOvNfDTpAzPl03+ba6+9DqunzJWmhfbIZCn/efPmm0kfTDSfQp7w4hCq9zijuYziobOI/Eh9J45SiKFJiIsn+JUo8fM3rH/vQiZP/XyaqVNnF8jlLgF3/hn5LxJJQZdbVyOCnMfg/2H5g/cbzUcffoixwmd4+uzaKPm5+i+MkCJ15cpfmmRrD8s8tDtc+ZWA+PkP2/+/P/vUjHviSVOpcmVzxBFHmF132cVH+3eof7+2//lv8z8n/129lmpcSP2n6iwvASrKy4DkEiB92gRfdsy8DKhd+462dbt2tmWrQ+zBLVq510oLeZgTlSKrIboPknBkomd4S0AX2ludMzNwIRCi+yAJR2aADG8J6EJ7q3NmBi4EQnQfJOGw8hjugQceaBs1amT32Wcfe2jHjjavVZ499dRT7ddffxMFdKHlNxXek8SVdt27d7cPPfiAgJ586klbvXoN27JFS6HtYogSAscto2+x22yzjT3jzDMEn4/aMvwDDz4Yp5U+nmhg9ZFJ0J/9IboGmfXNt7bJAU3s3o32sXvuuafdb//97AEHHGB79uxpcRV8Mq2M+RfQ/2nlT/aEvn1Z1+0rL7+ckZ6QfiaBGH3s2LF2b5RBw70b2rq77WYPOuhgW79efXvBhefLA8Q+KZqZOOhWbdnoL1qyyB511FFYRTH2/fff9+ETuIR6os765LgnbedOnW2bNm0s3rGy3Q7rhjy/4sNnsyTihGPtmrV2t93rWtyIaC+6+CJbokQJedxeyQlJjShFvzD+jb7F1aczz3D1SYNnxBkkhvQ7dwny0q2bfQnlp/Tvu+9+i0UDu0+jvVEWB+FxZrzeDM+vZ35jmzRpIu2lWfNmuBkb8MAsXrTErl6z2kMCko6JAKz8aaWdNGmSnZ0/2+PRQtx169fboRdfbNu372CbN2tumxx4gD3xxBPtXDwqrfk/4YQT7N57720b7dvIHrD/AbZZs2ZSJuefd66d+933GXEyXjG0eIe1rVq3kngYF966tPPmzxfvBx54APlrZBvh78CmTezRRx+Negle4G/fRvvat99+W6Ij/whjXXj00UcdjdRvSHKfvRvZXXfZ1e7VsIGEaXpQU0v5Q9lDmRPiSjSSVvlxyc5ASBK75urhFiox9rLLL/MeYRC8/W67HwY585CTUx4psoS4AhLS8pOgz4fRTzrpJNuqVSub1zLP7rH77rZHjx72pRdflGBTPp2CfDW1uEY9macMAskU0PuTKZ/YpuAJ1Hqissqknwy1dVeCZMKRGS7DW0jLTyL/mSGTkC+mf2GbN29h5+TP+dX5d9Si+P5D+gx99dXXWNwsaIdddplLO4GMLyLwxRdIY4vmNj8/nz5iAu8YEAWQYCkEPtT+f//+P/v2v/5lZ8+eLY+xR1H5TyJIwuFRvCXDm4Ct0PcBt2JJxJlwZAbK8P6T6X/04UfooxvbMmXKOC5kJDAzDwp59NHHRH7tg7EN+9XWrVvbA5s0tX379LVYGFa0xDcj+j85/3Gmo1qQkcBE8rM6EkESjkz0DG8CCql/7733nq2Lfvyz//sMfdD+9rDDDvMRHnvcsdJ/NN63sd23cWN70MEH23333dfuuUc9u2TxEo+Xtvwa+tp+KWO2ZhJxJhyZoTK8CSgk/382/czUZ4ck8pRwZOJneG8l/5mhs0MScSYcmfgZ3r8D/YNb5NkWmD+2btse88lOmON0tR27dbddu/e03Y/obU0HqM6268CJZgeZaDZr2TJIWZAkSYxWhxjFgQvxVDR4F0QVyYEi/BQ06UcX8ZJxa0iHq75JHPXzX3j/2fQ3bt5oa9aoYdu2bSt5Wrxkse2KAeT2O+xg165d65OqOXIA5ivOGyeKhx1+uH34oYc8/lEYnB5ySOsY3fs4Cyd655x9jss/wstE9aEHI6wkVzIjSdKnf5SaKLy64zSqx8YNG2zlqlWk48EhYLt+43rLCUq5cuXs19/MjNB+Hf05c+Zw69u++cYbSiZKTyZ9j0ALvENKr73+qkz+7rzjdgnPeKttv7098sgjHbIPzHiTcUeuBEYax3vC8vnnn8vk+MOPPgzAGkuYKud98dCL7M4772zx+DcAjv6DWBgoU7qMvfnmmzU1Pi4XUxSfRgvfe+6+2+5cu5bDA3z6l4xPjSJm0vd5EVTiRbjRZ4969ey555yjEUW+SRz1vHjoxZKXGV9MB57DkbyULW1vvuVmiZvQN1CeJbEgwome0mNdb9PmEDto0EC887tZwXbJsmX2issvt9ttt53wyMWaSZ+TOFxrby+55BK75+572N5H9tZk2VWrf0LHvK89omcPuyZqe2vXrbN9+vSxNWpWt9g1j3AL7MCBA6T85nECCjPzm2/sGYMG2ZIlS9rnn39+q/mPIrG4ZA2T/t1sYwwCcNkawFF68f3kkym2YsWKlvRpBg6K6M3jRJZ4BfYyDOI7YEK8cOFCH5K4NOn8r1mzRhaXHnvsMeRzlUfqeURPuy14PGXKFB+KoTUlDpG/IcTRF78IrL7VqlWzw4cPz6AvMURy5kGVUwiUpKSxJKFCJ4rxlVdeAV8q2NFYLFP6eCvU9jjiCNtgr70cDL+3jB5tt912G4/jPUJLIfTHcCFu221DTNg1bQTTHrmTH3qKceBCPAOkZE4jfMStNkX19HzsybhDfMqIFlhknD37Wxc89IwjlCiTlBQxCc2MhHgRbvLjYye4WrWqUhcU1XvCwjTmIY3f5kdpFM8osp/J/4wZ023nzp3sySefbG+68SY7atQo2xUD7d123dXeDflG42IqJHGC4ZCSOf1l9F3sybg1ZBC1T0W2/AseAv2v07/+hhtshQoV4rxowjVTSTaIL38IhoaDyEiWEc2SJUvsQ2j7ZcqVlbIj0p+R/8kff2zz8vLspg0b/7L0oYlkzz33XGH0Tz/9ZL/HImVo+vU7TXg/Y8YMwWF7q4c+euLEiTHab+D/dCxmtcScYPa3syU+lndonDuCpj0VEfD/tPz/bPrCVOajkCw6cCGev0P+04QjShpzlKw/n34zTDRb5kUTTcwnO2Je2Uknmj0w0Ty0UxeZaLbCTJSIzREgbdKZS/v/nDsRno4MQARKwONYCwHHCD9jS4SnIwPw36HP1abeR/Ty9J999lkREjNnznRJSqQrzlQhYEE47vjjMNE8JEZO2TgoOzuYGAihRITOIb8JeBxRGrwuGhTHGNltFHh9jj/es/vTTz/liSE7+pYxQYBfTn8eBt/c0XzzzTeD8D9vTaQfji+mTZd4XnjxBQR2vkdi57Fc2XJZI0uEz4pROPBLdABM80cffeSQGFkiQufgL1ctoWZgn3jiiUSE9LvqqistNG/sc889l/ArzHEGJvXcPaPJIJcBiHAS8DjmELwX6tM5YX2K0RI2qNhi16uoHYe8hOHpuPLK4cKT555nXpzvDRhEkk9PPfWUxHMDBj6HYfeTvhoel5VZqA65XWLgfvP11wma6uBkrnTp0vbpp58WECc8jPvHH3+UyC69ZJhMVJdh0qqxCx0siDTCqjwnfqtXr5Gw11x7rYTVuPU7dOhQofExBjM/Zxh38+bNbadOnRw5zRDgS5Yusbtjp05A+IEaZ4Le1XB3w+B608aNP0dG/DnIu++++xK4N2GBgvm/8847M+iH+feMToRWjCSwevXq2M0angQW4gqy+4vo//DDD7ZKlaq+noXhFyxYYCtVquQp3Y7FIpb11kwYPqxQLmwpCSo4CcQ4xkLAMcLP2BLh6cgARKAEPI60EHCM8DO2RHg6MgC/jT7rwjVXX11oKjLIZQAy6Y8de5/sOH+NhZ0EOqhQO4RtlDLxl5hEeDoyAJn0Ge/6qJ9LoP8SgimcRPhfQV+jSYRX4K/4JsIXQn/UjTfaCuU50cw0ifCZ3hZvtUq//tSTTnYrCvt7PN4uu90KE94nInQO+U3AfYhkccXgn7XdfvvttigWphPR0pEByF7+SiCBrsBf8P096O+AtsWyKcxceeWVFmfjEt6vv/56sFiaJbuJDDmH/AbwdevW+zgDsIf9GksiPB0ZgD+G/5pGkvNj1j+JvqZF8v4n5P+Pps95o59oQkP2UE40u3a33bCjeVhPmWh2te25o9kGE01sfTZrnufT5C1YoRaDT4JHHqFwS4yfXNPICBEjZnjZvwn9RthF6dULE83InHzSybZ+/friWr1qtai1nX766fajyZMFdsEFF9j+cD8F9UOahx58yJ7evz9W+UeLmz/HHZecaHL3hwMo0jnmmGNsRQzKzjkHK2IouQcffsj2D8LfeuutgoPzGZgQjJMdveMxMZwLlTU1y5YutbffdpuorF104UWWE7JtsQvw9NPPKEqhX040j0N8zhTYcVD15YB33LhxAqIa7bBhw7Cz2wU0brfrNzjhhrOAsorHnZzXX3vN9sLk4gPAvp8bTzTXr98g/GJ+qA64AauWK1ausCNGjBBV09NOOw0rre8E9TWuf1THYDpeeIETTWfatW0nA351k49jxozBrldP2xu8fOYZ5Deo/y+99LIljSN7H+lVHDXsgh8XWpZdF+SrB3bNcDjDksdbq+L07D+gvy1RvITbwdPI+EX9X716tagIdunaVSbap512umVduQ1lw/Liyubp/U+3L0Mtdex9Y0VluQZ20AcMHIh8UtWwAKuh8+z5558vE56BgMsqKHx+xE7ZNVCB69qtq509e7Y9Bfzk7gHNFtYn0JD6dLTWp3hHU5Cy/LBcqK67ibuRYmL+S17QOXZFXtTgYW3bDur7lStVljw0bNjQrly5MgoacS7iPyd35CkHOIUZruiyDPE+MHbxD7f1sLOv/K9cuXK0ex2EjjwffuhhqRtckae5LpxoRvQJ/+mnVbIDQA2BrRml2Rxqtx2xO5M2S9G+qBKqibv2mnhie+NNN8lkm9oBYiL63O2dMuVTu2nTpnR0Ge6PJn+Ecihpj4Hmg6ZFkf4FVUTuFnXGBHjEdSPsT6t+Ei9O+lm3OFCieRLtlXWd7V/joMr+IOzsMr29e/e2jzwSq/SGcob4t956m9CfhF19tn1qDlDOsD17oxEDwHbP9rkYk2YxKfn/1Vdf+WBMI1X+VqxYabmDzjZ35fCrvP8K1KE77rhT2vGQc862OI/m/TTsyhUr7MUXIWzXLvaqK+Ow9957L1QA+4gGxbWoB8cecyx4tErqpcQJuXT2kLPtnCjO/Px8e8UVV9ievY6wy5cvl3xwkeBlqL2vWLHcXnrZMNsNiycjR470aWAdv/OOO5A+xHU20jfHpW/u3Ln2yquusoejfuGst70cu/hdu3R1Kqrgx2KoxjEehps2bZqPL21RtrIPOfnUU7BDP1D+WL7sT9T86y1XF7gYch1kKHdPaG5kXUDZS11AZOMQj9QF8EsNJ5qDBp1hySPWhYcffUS8Fi9ebEeMHIHFoV5I4+dSd7TP+TDoc7gYGdaFf//f/2GhoYqdNWuWI4H8Uma8+867OIYyz3JhlvIXt3Fa7nyr4QLFeeedZ48+5mh73XXX2fVQj/9u7neYkA6HKvdhdvXaNY6PkDusY2xHar6Y9oUcMeiFtA7HpJlq6qVKlbIbEEd6/EGV7sGDh8ii13XXXmcXQH7SfPmV689Yj8gv0ieFN954U7R5rh91g+Xki7znkYof5v8gEwL28YdDRk2YMIHRZBjWzzuiOjKEdSSow0SmRshxxx0vGiHU5AgN6b8DvvWDTD/1tH6iUUEZzz7zNPQZ+fn5gn7jKEw0ZUcTE3nIzn79+kk6x3CsoXxCZIwvbVhOlMe6SBj6U+OK8mcNjjkwLGUy6wD7k8GDB4sMX4J6QjnC/mfhgoWWi3hcUIw1IhzVl158yfZjnwv58fbbEzwZttM+ffraN996U+ogVUq5sMudOGpADRw4yJ6PevH6m2/YM88803IRMyyHBag3//7039J/ZiuHCTjCwGMUJ55won02Wuglfaaf6eY4hv0xy13rIzWZ0vSz8U74gXFGzx4YZ6DtPBONq1h3KA+4MN8Ci5Rst9SqScdBeRVONLkQPeNL7G5GZoyM8Y61H+IIyRNPBrI3GONNx3iIsp1lcvXwq23jqO6zrV0vMqankzEg7uI7xn4IdWuR5Rj/iCyPNH5Idv6CqB2i7K+97lq0A/Zfrv/3bRR+bDvMJ82996AM+0LWYhOBi7vHHnus1M2Q/tzvnExkn7tmzdpUW5Zo5IdHCi66yOVnOBZD99tvf1sKY9Z10fgyxgxsacYGXj9X/0PUtD2ONh7/pHHEHSNmev9M+8sMEEPiaP9Y+s1w5JLzR6rOtj00nmh26d7Ddu95pKrOdhKElq0x0WyR51IpmYuTGSc98k4DQjeD6V8I9/YoXnwim/fxlr8hfe5oUi3ySKjx7YbzgRxMjY92XZjvhzARJEx2YpD/qVPdrhDV/2gIx6UV9kJMYpRv6YkmhfBh3Q6zy5ctxwR1vEwKdQdKw19wwfkS31133iX0ONml0Lzn3ntkp2epZpCuAABAAElEQVTggAEoGFRMHLbigJ9CjhPOw6G2W7t2bahRfItJYTT4lZhSP0wc/urtWV+EEH0pzKjGwnOqGzdtsPMgxEqjI38DgoV22SG5xq2KT8VuWMMGDUQliwPHg3H2gAMldvDkz1sIQxI8r0XhSEFPc+YZZ0oaV2ES0Of4PhBkIwSe/vli+jTH5/Hj7WdTp8ouUtmyZa3b4XTY3E3r0+d4ObfJSeY2UJW8BWcUaaiWWnPHHWXwQ2HLnTsd/P648Ee7w/Y72Lvvutsu+nGxdGzshCfrjqbEEJUePpFNoDzLtyvUwhwKfUJfK3577LGHXY3B7iWXXip5ePmllzDJ3iDlxIkxB2RUc+EZz/0a72+nocNbufInDGrm26pVq8qZzRUrl8uCw3ZQY/4Sg3YOik855RRRJ+a5yOOxeMHBH+lLfcIgDRcKyUCCiwxUnU2mzCXZ/8KzVR7ysstuHpS0FLi8QKU1jOcHdFCcBLJz/UBUf0LfOIYpn3wieS90oslg+HvjtTdEjahUqdL2fZx1oVm0aJHk88ILLxScNAWqzZL+JRjsEIGDZ9a5tGE4dnjcXQsHrIIX0Q8zx8GC7Gh6BFiAtwTtanfwQQ3pkT4HxlQd9SuxioDvv956S9L0+OOPB9DAGtFfvmyFtNe6dXe3q6KJg8MqsA8//LCtg7Y8C235m29mWe5U8ywdjaiSo67gAjFxczLMiTLrnhqutFMt/0Us1nBwS7k06ga3OPH0eMgpnNu74HzwGOYutAXmKZYzd4ucGdB/QMgijdp26dzZ7oT2JQzy0KSFWaS5AwN6tj+eDeOAkwscLK8PJ30owXlU4fTT+9t1UJHm4IXyR+Pl4laRMCwWeiQsJkGUf48//pi4d0RaTsPAm2dsWX/aIc7TMDngkYc4TmsX/LBABsiM4xD0pQ/c/6CcSy9duoxtBhlGtXEOHnlmmzuzzDwu6JL0SVwYILv0oZ5i9x0XiAl9yk3m86yzzhL3u1hA4wRa88pBc8JE5R8ydzDCckA4E+0dF75IPJ9gwYaoUhfq1LHfQgV3FhZvqAXD8mYCpS5ATfpoTIxotC7gYjNx84eym3WBC3cP3I+6gLJnXfhpxU9RGotgIO/SePdd6HOQf6kLZw22d9/DPqe8HcA+JzLU0Dlj0CC4XCnzXDLPp/HoAPujslhY2Lhpk9RZ8oCGA1jKXe6qcUC+0447QU6dh/IiH4+R+uf5OPhMyf87mNiRwmefTRVV+Lf+9Zb9Cn1JNdT9s4cMQbvI1JjgAgAu17M3YNLIMmR/Tr66/qy0DJRJv/oO2PEffo2kjZPq2rVqWdYj9qFPPPG4hCOsO9zsXyh3W7RsIfjyE4x/WIc5GdX6ti/qsOOMtfdDe4Hxcpf3JfQFrHsvPI8FVCJESNTOOArjArZRms1bNkGr5ErBnYr+geZG7mhC3tBQRZ/HfG6++SYsaCwWWPpH6RPuJprQRtEdTaWN72OPPQo6RaTPJi777FNOOVna0YmYvO0MHrB/krqMesEJ/vOYLHGCW7RoEXsTFtto2Ocyn8wLF77YbrXPpRxkvnesuaNMkPduuDe0Xb6xQy8aKnn+/PNpNn/2bEyOPrS1WA471XTlgHA7ofw4pmG5PPOsK4eWLVAOEf9Z9yj32C5UA43tZvLHk6UPq1mzJtS7O0NWPC73UrCPJd85/krTl4zIT8Q9fLgQxUnyCiwmkD6PZPAuBFzQiWM3U2X8djHuEuD4KexnohiwiHKVLLhQNlCe7rTTTva9d9HXEQF/0t7A/72iMd69bG/ly7n2Bn9cAAWa29i30KdwoYTpp4yittBKLNyrjNH2q7K8XhgfjrFo++XiSdwO50t6RPUXyZE2iqNiT2HDge2FMv4cqgXDSBmi/FnGXOTYG+38229nJehT9vIeA/YlLSETuZijMpGbCjTUpCqJhY233kRbnvGVzw/LLzYR9/CJbLGX2oL2p6DwW2g4ItFT/8JA3h6FxieyeR9v+YvRb9YitaPZsSvu5jjcndHsyR3Nzk51ljNRbn3yUGdokoyIGSQ4Sc8gmPNQb/16hAQgcARWxU2CIpcC9avI/us81Fu/Ke/IGfgGVsVNgiKXAvWryP7rPNRbv/vi0PbhELQr0QGzgffti8tt0Lh0AsNJCgXmi9FlF4yuOgT+FegUnCnA4LAOBsFu4slaGk40uevH8F9//ZWgky4FTKg6S6F6ydBLo/is3bbUNrLLpQF4UVFH/NHk58+W+HQyPA4rYkUgtL6d9a34b6WViP+e2NHcGYLvMAzIKchxM6Q7j4qErcTAlwKN5+UoQEmTK/ZqzsCkkWevlop6o4PO/X6u0H/9tdftpZhonYQd4VD4cuDPAcycObNFkHESRaP8d7FEqrNY6WyMA/TsdMiz17BzqogfYPWPneOHH05SkD0Wk68GDdzZsPffe192O+nJlX+G1x0wTtgb4WIbpcsOgv5edVY9NDGegsUZvsa2dp063ieN2qTJAZi81/PpPAYDKC5YkI/XX399EK5AVmBbYEVX48CtxLYmOmIF8EwgV7CvuPJyAfHSAabz/mBFfNIkV5+4g6AB96oP1Vmc+RWTZmyExQSSt5qXDDQAmuAiFg5OfWZow65mU1wIxHSce55bDEmGda5PPo4mmhhMZDcO79//92+slN6Dw+nt5dwiV/a/xcSKZXs+FmucCSjAyt0p0h827DLxTqrORrjRZxBWyonLwXfSOIQITUrYqc52dmjqAdeSpYsjPsABuNI7DJfpcKB1EQYZsXEBedETtRqoJpvdODyey+QCyZQsExEulLBOKP85SWBedJc7DwsFXGjRpJ6JgUxDXC4kBkBOLrh7p4b5q1u3buQskMHb0GiBjHFwgeL88yOeA9ARO2dOzigFIEVWLsjhFlOJK/CV85pHH3U0dkePkcUv4nOwwYkmB8c05AlVzHlGlWFvxkB1EieOMGPH3ieDsrVr1olbwhYrEofFLiF58CjCquEZeg4knXGp4Vk0iRNOXi7GnTU9Z89dHdLnLiOxOZlhnDoZzM/Ph7uInRANjG66+UYZADP+sfeORX8Qx/XSSy9K2I+xsEKzatVPIv/uQz5oJk+eLP5TsViWNKTs2Snp4KVcS5YstQsxga1SuWqi/nOwLHXBBZMJI9P45ZczJCwnaE4zxSGcdSbrQkNPgHWBExc1LVo0k7pAbA7Kmf8wjdtuUypBn/VA6gICcIeHO9T3Y8JK8x4mUFzMmY+JJAkOu3SYbXNIG/E78cSTXDrg4kB3B5QV1cNvu22MTNjrY8JM8wL6U6aB56FpVv20WvjsVMwLRAuGu0KUPzTcTeMuCI2DiFVc/U7tZ2tgN18MPDm54y4Md6alP8MiIPRAJD/UPqFhHNytqg/ZKf0VAP2RXspupUBNnCqVqxA9YRiWmg2uDhdYlj37YNY3ppcqxNylU8Pduvnzvxcnw9Lwy13EbbctJW4CXB9nMLlwu18y0YTqLPvbFphoPc/JKozG4QOGwMjTTzSjYw8ait5c4CPvWS4TJrwj9quuHA6tqztkB5bjH8ocp6ViLNU+1Rx88EHon3cSJ+vBmDHYXYXhxYCMkws3alj26XZ6FyanJViuioRvL5ZDPZRDBOs/4PSoHAAAkLv53E1XUxWLLIyXO8qceHMR5YrLndw7HrvIXBh25+4x6b//fknXaoxpaLLRF4+IOC+qY/75VbgbZ0RyFsBSOBbAsvMItGji8eVEk7zgDuonkBMdOnSw7747QdAVjefQqcmkpuOhkL08xgEzYuR1siOq9bKn1P39FBUT6rD9uhi33WZbex7jiwj49otQbIfVq28v5c3dTy6KaDscMGCga6N33GVvhZYUF9X2alDf0+IEtZOXtQ6cps9dbeZXZCLo89w+3XpchO2oRIli0s6YPGrDcYc2YaJ0O1jgCKyKnwRFLgXqV5H913mot35T3pEz8A2sipsERS4F6leR/dd5qLd+U96RM/ANrIqbBEUuBeoXyDLRbOV2NNsfeqioznYMVWc7dMSts6o6yx3N5nlKo9Cviz+gksLM9ElDYre3qUW/qThDp0MpHDHTJw2J3d6mFv2GBFN2h1I4YqaPg3AARdUcbaFUfatevaZ0pLxVkxcEsdGEE82aWJm9KujE6+yyi3UDOBcnhV3r6IwmV/8YflV0vozJdmfqzvY52AXhL7lkqHeXKlXGCbIo0RzEuQuLrJwLK1+hoh0OYUbDzoId24aNG+HKzKUgBT716teLdjTTuM7NDuaYY46Tmzxr16ptD8HlLxotV6r2wQ5CaKgiyvxVwaobv88+92zoLQM2rjAXxcot1TBUFdBHGmF/8YXb0eTgegU6LU6+W7dq7XyRNHYqjH8hdx0iw91CgWGgxtSPG/cEJjDtbA+oBnClmGFouPvKyboa5pHhEhNNzSSQPGdgGTxkMM6UFPW3w2oc+mVnyh1eF6bALoc63o41downKhEi/U848QQsHLX0EO4ScDLgjIuBqj0tW7YS0AcTMalEpzfzK51UukE6B5xrgvrETsMtXLg4oggTH/pIXoppXtK4BdLhxHlBAKBcjR3t3r16S6fIwdSrgVpcSICdDHn6zazsE800tU2bNsqk2l02ZDHhruHVdj1uZOEiAuNWtcJrsDjCFdTQONQCLBodbnfecefQS+w+Tu9TIDenkt/OxBhz5syV22y1IoSqs05ttwh2Le73MdHiQsdxJDwjf2onsDw5gNQQirckkjOcrGosVFkj/q1j3KCGN732hdqoGk5EZHIRxVa9+g5SXupPlUUO1jlRYJy77Ao5c2m0IAYIz1GGAyaq9bdt28bT9xYE5sCZ7WBpaiLNwTxVB1k+r7zyspC+4/Y7ZBKr6eCgj/4PRhee8XKkS5EO8p63GtOP+afhRHMbTHrEgO4WaHBI2GAAW71GTexMDXc40e9qjRPt6+CmB0dxukk/tUYYB288ptEBNNX1aYTPkv5XxL0aiwZcNOPN4QdhYO3S5+Li7dpsf9zdVEN19DuxK8gy5a27bCccZIaG/E+aGEJV2z322N3vlC9evFRojr7FDeJZDpy0Mx23RQPc1qgLvChLzWCpC/FgWLRRgjOa57IulEBd2LJZLp9iXGEaS5cu5esCUyZ1oU1bif7rmV8Lbe6w0HTG4uN50a4H3SzHYZddBluBPfmUk21eyzzYrd0fO54NoAXDC7qefe552R16A6qSNC+/7AanP+JIgzMFotZ/F/hI+roT+NVMLEwCwNu+qSqZzTRCH86Fq3SbIi5VFrnDfQjC164T9WcSSYGoyraXcAQUiIovj5aQPg35XxaX53iAA8svF5akjiDvuhDHOjzr21lS/tzJD43GGcMKpK5zsceZApncsFxmfOkWY6k6y/ZfrWo1WURa9OOiOHjK5uKPqaQnmrEPdzSdVgD7vxEjrpOypaYAVTyfeeZpO378M7JYOwWLAKSPZ5M8NWqVsP5zYknzBHYy2+J4BXeB8UafveNO1+fSj8dEeDkZjdK/+567I7VShdioHNoJHn/OPfd80XrRQFIO0G6imZPvFoWoOs569Qzu1OCi+3T06aTCPlbrH/F55wB5qovj2egTT1PoxhlFvHYDfcaMduMMbjrQlCpdBu3wNrHrj8uN+x2OSXuoOsudQjx3p6jyDdsbAcdAtVzHeC9CBZ1p/iqqB1zECev+J1PcvRph+3WT3zGehpPlrv2yHe7FdvjC88IP7ta/8YZbPIjb6HO+/F9/400XD7JTA/3ycKi5hyZNn0eDmN64LVvflhku0Zbhdm25L70C43hHgLepRb8BdtrqUApHzPRJQ2K3t6lFv2migduhFI6Y6ZOGxG5vU4t+A3ppq0NJIoYTzbaYT/LZTH8ZUM9evAwIt85Cp1Z2NDEjbY4OzxlGpJHhG1iVsIJifNqSUMXVr/cVi3epdxCefuqPb2BVZAU5t7r0q1jJr/cVi3cFSArjN7AHVkVWkHOrS7+KFX850TwCqp5iBK1AVAOKYOeCKo+LFy2WQS2FmqNdIKoEV16JFbQo2l2w0q8DOIJ4NkMmaEB4HBevsBFyd0pN+vIWTlQ58HLxRQPA23TFzOIckgohxl4gZzkOOGB/261rN+lEJ30Qrb6Jr1LhN0qg/0J1Fh0p1YpCo1hToa5UqtS2siNAfwo3qptpPGeddSau7taJJkLhv6rOvoxBZgd02uWgsjFjxpdR9AWiNsGzINxp4bMuVPlNG9KfPt3tMr4AYUjD+Mg3ns8jIQpHul9/HbucYgpwjupOmVCuWb0Wl6BcDTWdmuikHe0yZctgonm7YPbs2UMmUVFAuXWRcelEU/Pv2ORdgk4hyUkNV6UdH9S/AKq3bveCT5+oodovd8lLlCyB1dT7IrALQ37GExvXwXIHc0tBFCc+vNWVZ8Zo/G44B1tiCkTFy9Wnd7VYsEOOHc1zz4kwItSEy8X/ctSBubzEePT9ONqJeRI75Gr4lAdX+Fdi8rwRCxmsc1WqVMbq/HygIJSLVr5cuSWfeFFIbAKEGOhtVMnhUxnE6otFCKrXZFONO/ecs2358uXlTB2JedXZVPQ8N0dtg2OPPS6ikULwlJ1FbrQFvlukAUzQC6TD5YBFzbXXXiN1zyE41eUSGLTzDJ0YJQNHYA1cBXKGjRO7Q7GyGO7486wMJwkbN26A2nppnM88ycWJX+7KsqwfeYRtAKrPrbCLBVVOZwrskMFDZCCvRGtgF4tn2dR07twpmoi6VLkFLciZyLiJ5m0aXHYlOdHMNAUyqGNahuLMpTOIM8rs449BTQ4DUg4CCbqdE03IEUXYgskNw3K3g3kXmYtVba58v/zyK+InE1gEvv322zImqaxXbqeEsRdEA1gstNFJyBYrNxZzpZznNSVOpEcnr08/PV5o6OA4PdFcsHCB7HjyuSIeTXB9gqYP5w5B3+1UFyQnSBF9nuG+625ONPlECwbnnGhO4+A8QvBfQUn83IcFixLY4ca7voLOW12pdl+6DOvCyRFuQfa6oPUcZIacjUUHDCaVYvUa4cVQBbIDpIsSvOWY5aEDVYYpA3puQcPFcMyx4eLmBstjDE6eFYjq3S2jb5b08vwb46KKK5gnA9rbbnNy98ADm4jaPXmaNvHg1C0S0l/4eNedgrpp8ybsoNeR/qc7npLiooorT80hvpGVZ/ioYkrVRvVlJDzmwjOdY8feK3FKfxYtABPAM5mcaGqY8849D/3jnoLLHy76MN+ekGDy+ArrcCM5iyt1+CXwAPWNdXgVZNA22F06SdqxxqxfH7VY3KLKNp4++3HyUo+dyI4m+oevIf+5mJyHRRTKCWcQp0arX3iolRNexvWk7Ggq1IVkveIN4TyLx76AeG+/DVkmaDGu1pNpUBdVmv1x5wAXMYjMs4Pcef8S6pA0VJ/mrqiaGqiDV8lEM46TNxOHkzDi8o6JDh2wUBDR5wIZF8TV8CZqLYfvvsMt90jv6aefFmc2jt72lT42LwrqZDnx3SVzUFvNQt8Hh4UTbeK/Hk3EGNFdmDxz4ZrjGBIVuYkdepdeARFNDOOSM5roH9IIzBfVd2nCRT6GOZbtTRZ2CuScf51dUPdRV/l0ytlY7Fb5wzi1XPwCACKgvOAiFOOice3XyXJth97Tocgvn9jCW6CwI6QE1hgcklssgKwVQ79M+i9H9Z+Lbxqa45+7tC1jUVnacpQf15aXRHFGZOnKQt8haayOvoeFYAf09D2OWBQxQkp9vK9YvCvAUhi/gT2wKrKCnFtd+lWs5Nf7isW7AiSF8RvYA6siK4juZpg3ujOa7WTjUi8DkudNevbGRLMjLgPCgKR1W33eJE/jSXzDSGMPheo39qEtHuSkDqIC3YcQi3clIwhc2TEUqt8gwP8gfapZNGvWXDLPFHOg0rBBQ6jZdJCEc4C9XfntsFNwrbhfeeVVETpUTdCLMbbHMxxUz3QGuypY3Wva9EBxLoNg4S1vPE/E1WROODnhatmiuV24yK3mbg/1hME4G0P6vCiFb9Bdf/2IKD4ruzRNDzpY3Lxgh0KKgicbh6layUsXuGOUzej5BWY4ER6Oq9BxcOeRq7UbN64XvlAQqeGZwV133U2dEp4qnBTM3ImkGthOO+0oKlqLFy+Sukb8zRg00HDyTd44k6T/gXSyRewjvLRCEsYB/VE4E1oNqmULsSK5XHaZ+/TpG4V3KjcaH98j7NbtMPgVyPmU4sWL2Ruu5+TQQoUDqnRI42uYpHIQx4sN6L5y+JXi5sCI6h+eHxF9hmV7GThoIJ6A2c6p8hIIw46LqqYcrKiaznychWiEd0p5TvGmm24UdTNOPNVQbZIriM7wIqZxwrsXQZvEly1fIRdFPfboY0ApwKT6DfGnuqka0mWnxzMTvNSH54BYn6ha9SNWvLdW/uQ41Wj4nM3rr73q88s6emCTA9HhH+0mvUjLzJlfoix39iqEpM98VapUWXaIRU1ME4Uv1Zw5wP4UOzrOeG6KswD1euT1I/2lGZ/gPI3BYo5e1PADztI1wDke8tQ9W+LC8wKhypjcPv5EPAHmWU7WOQ7q1PDcUg9c3rDbbrv6Tpmd+sUoa06A1ITy7/kXnWrqiBEjhf+kSPXx/aGiN3FivDB04UWkh1V8+NFwR44qRuUxCFT1Q55VGTr0EqiHfy84EmFkY/1vgjdrq1arKmdiHLjAbsYAnGe123CAAeK9cIlDDQzclqIdETAe5yqporgIbYmGE+PGjfcT++zZs+WNvDIY3E2fPl1gvAxo2LBLxb4UN+dyMKnqjgRuv8P2cn6G9i1IUzEMhvwlOKDf/fAe8u6bqxjkRmy2QCWQZ4OKY1LFHREaxXgIO5Usj/ffnyhQqoxzd4M7qTQcoLG98UI0lRePPPyQhCd98nYOLtxhfNffgLBQhduyxckMLvZxEM/JqxouzrAOKP2vv3Y7bg8/DNkBqIvT+Et8+PQU6XNCyfKnDKb74ykfS5SzZ3OXhGfzn5GFEtofeeQh8ZO4OIn+bq64qYZLf56TJH32D1TT1XNr7733rvhTxZ9mEs6ljoA85iSIJqx/X309U2TEqFHY4UZkn2Hn6ACcC6T9yCN7YUKNuhCpgD+ldQH1jIZ1ge/00cyePVveYy1Tpqws2BHG3e1hw4bRKmf5y7MuPHB/Iv+TPnJp3AzNHfY5I0ZeL/ik36NHd3nP2AGgVt2xk6iv0s0zfVTD56SCcseV/fuQLQOxcHRiVO4FsuNHtePbokXTdevXiQYO4xiPM2GyOAE+0mxEv2aKFLU3QRWS9J977hmc8T1E/LL9PPLII/5iGk4eXJk9CtQCm5+fLzt13Ilhf7ZuHfozyH2+/ctzl84U2C7dusYaJaA56Iwz3dEC2BkP5QJ3q7mrzn6XdW7atC9wDMbVt4dwpppm5MgRQv87qSPuArWqVav4y5TGo87wvVG+PcoL6dxFUQX2hUgN+xucx6aGCumTXzffdDN4uBG7gVfLRJlym5fHsZ7xghutQ1R15EJo0kjicaHRp5KmsP1z/MGL6jjRe+1VLKogIM/PFQHf27Vrb9cjjzQ8zz1v3ly53Ix8nRTVZco99ufsP2n4RqcuinIHlbLhBrRfZwpEY+XCiy6K3O7DnV7GuRS7v59FE9iuWDDnu8ku5RZngc/AxKSWD8fLq3h5EftZNF9ZLOe9AW4XE+87ozy0H+mFS7/4PrhUIvw+hkUwtvX52FWkyUZfPBAv6S9bvsxWqlgJC5/HC5g/fIaLspFm06bN0v9SHVTTKx7+x+2MU1WfixBq3oD6MeUvy45ysQTGJyOCMV53LJboGO/ZZ57FJLOVBs346pEaPX7A+FimI6X9ulQdfjjb70ESln0CeXAr2iHp846BuzEJJCZ35Sl/uchEN9+y5j0hyj+Rtej/QpOm/xTbMuKnDGc4JxONPH/EcM9h1/kQnNen0bpLPOXf1sZfEqiQHw2f9FaoflO+rEBiYvqR06fHWRQvQs/yyY6hUP0mA2bL/x9F3+1otrGHtG0vl8tyR7Njl8PkjObhuqPJrU7d0YxVZ7MnPpkV51JM5at+Pa4ieEDSkvD2Dm9JImdxKabS1a9HVQQPSFoS3t7hLUnkLC7FVLr6VVQ+7s6nJtgAKcCpXskLL9gRUU1MVS2Iz9s/K2FFcResMnE3kGcOeTCaaqu8rIONjCtuPO94FsJyRbMIBlqchJDuFdj9pBDmhJS3enKyUX/P+qJC1wICVsNTHZcH7+nmKhNvrrsewmMbHAznExuyiof0cKWLlyPw/NWOmNgxPp5Lcmm9GuGL2Hcw4KHRfM+a9a0IYMbN81PNDmrmD+4LIn54uJwrp3zaoTkGEDwHQfweELIXQP+fu510U4DxIiJewrAnVoAJ427J0qXLLG+DI/3tMdDhQf0KFSpBH78xVEOOlQ6CuwlitIDgeAADIB6YZ1nwLAZ3rOhNQc281t2trpwr4go1d9jy8vLkIg/uDv246EeJjpNrTsB4wQcnnLvW3U1W00ePvlXO6rSCGi7LmXR4+1nxosVFVWUybmrjpIFlE5ogeZSJctMbV7FJW9RSoIrFZy8UbzwuMaIabXX8zZs3397/4APCl/LlK8rZ0fNwvpGXCpD35Ouqla4T4gULXCHm4I1v0V122WWSjNfQMTGt5G2tnWvJBS+SEPjy7FVJDICkPmGwxPLnTjUv5uCTBtnKX+sBI+fguXGjxpKXY48+RlRZmBetLNx9LovJKBc0eJGIZvKDDzDpQ71kmnZH3ePggoYXY3FBwKV1Z8sHw5UvSpcDNe4ecKGjZ8+etk6tOvYenNUMDesULxbgTicvZOBFPRw08PynMwVyQRInV6wrvAiGqrJUxaGd6VgcDcRJnzs2VMMcMBAX3GiClGDkHvf4E5Im7mK1hwoY4+FlUorOxZUyUJUivT3xBqhecMBzbqxPXEnmbjp3x1m+vBSMRsOT7sPYkSRvOPHjjjblzn777ieTSMar57l4OQ4XTljHmX9eeMFbaDWyiRPflzZfq1YtXCrVWLQZOHlVDQWuPvP89/HH97EN9m4ouxWkzwEaF9OYBsop1p/9G+8v7ipYOBA5g8kh3/Rk/eQNnJr+RGYA5QCLdY1PznA3moMwykwO/EmHkzouRnASIbtFiGh/7ISTNts2B8xcvCpfrrzUvz7Q/mC7ZZysu5xYE9epQlovs6oi7PjxT0lY+pdDPnRxj3QZJ/nbCu2T+S+KgRzjvANnj6pt7+omy/arr2bKGS6qt5K/czE4onon4+RFGJRPjIuaGXkSF9KHiW99xHUndjbYVonL3UMOvFX+M92cGPAyGba/2ugrWCeGD3e74TyLnDDgC290ZvnzHDsXLnkRGBeCaPiWrNYFXiS3p9SFt3wUvJiL8r9W7Voy6aN6KC8NcReGYaJZs4b0U8cdh7rQsAEWLt2iGxduWH+Y/zp16sh5Ve1zqmifg7rAN3S1LrAyPHD//XAXkbN7XKzjzZNUu/4eCys8B8ljDJMnR7IdqWT94SJB795HYbJXVCYonJy+9da/5MxfjR1qOD7uFfERRwjIC/KR2ivzoDXBBTQuBFP+7Yr+pX37dn4Xlhd5MT4apocqmpQL5BM1SuYiXZ+iP2P/U3f3uphQBv0ZZC0vJeIksjjKlhNI7piT/yxblsErr77qZR1VqOd9/70snrCfYX1rGtW3vFasb64O8/4DXvQ2d+73eFu7u6Snbt09ZHeTk3lq/7CuMw4yiIt1h7bvIH0u8zn04otlwsB+jU8osS9mengGlYa7iXSzvCjnpN/C5CVtOLnie83ErVKlGu5jOAy86yD9BM+lUvtECigKSHVRLj6yjTFOTiSpZaM7Z7zE6YS+feU+BMoGTiRopM9FO+PYiRNOyi3WoRtuGGWbYKGd9MuUKWfPGnyWl79sf1QXLlOqjNxifz52kVkO5MtFUTkwLQzLcniV5QB5wrrRsmULocvJMdsj5W1DyDn2p3wmi2cUnQwrZs89/zwpfx6DYlz16+8llyil6UuEqR8uHu4ajTOYt0M7HCqq8qtXr/LjM46/eOt02px04onIc1mRf2xfLVrk4TxkfUkDdyd5cRLLj+2PfSnfH78eC7Cs626Md7poDLH9Sd1HW6XGHLXFeBFR3H6NtN8J70zwaYrju8GWxF0abL+nndY/aofu4imWEdvNv95EvwJDLSBeLkj+1438qCLPRVzKQfKuLPIzRDZSCjLo881klYmUo2spE9HWKP/Zlp9++lm05XlyuZHPD9tyuw6+Lf+S8ZfjM6XKLzOKqf2+fn1oRfCApCXh7R3ekkTO4lJMpatfj6oIHpC0JLy9w1uSyFlcxOREs0VeG9uqbTvbNnjeRHY0exxpi3CLc8uWzQa7WwZCzWDFwnzw3gSUOZpbZFgDUJbyayy+WEL55SYKhwBiww9bcmExOOw4DOkkYH9B+kwy+YoVTzR5YzaB3zikbtA4M9jIvK5ds9pgUd+gMzJYGTc77FBd+L9p4yaDRgp+sDQKwBjYihTFXxHgb0GcJSQ+NECDwYPBYMAsRHjsYgoO1PZMiWLFERJUEBYS2RQvUULKnWlBhZHwRVE4IG8wiTEnnNDHYFJrSpQobn5csNDgAgoz6sabDNRPTe3atQ0mswYH0g0acJwXxIMdMMRdXOig4zNYBZN6w/xr+eOdMrPwx0Vmxx1rij92U5DmagY7IFhwBq/wb0sB4mG+bAHgWyT/m7cUSHpIEOdcHR+RZgzSDHbhBIaJUZQe5snVNtoKEAfzj51fyT/zLGmLsHFVvalUsYLBBF4gmFya0qXLmnJlS7t4yCPwG7eFgs5Gg9sFDTpDs3bdWoN3yKJYDPi+0JSvUN7gWm2DHTSDgTm5blYsW25atsozGCR43NDiUut+cRuflHN5xBu2P9YNFLukvxjKk+2WWURNcGUYpREq2Qa7Gwa3ygkJxope3cz7YZ6pWaOm8JIeWPmSv2IoI9bTYghXFLxUg3NkZu3a1QbndwzOrZrtWR8dS7OXvwaUr+ZlpaStIvKi5U9vaReoe5BVwlfWQ6ndcOKyC1OseFHwmXWb9byo5Kco8oyBKNK8RcQR20Q2g3NyBjf0mpo1dxRvSQl+lD4mm6Zzly5oH9sbTH4NFnWkjJTXWFFGm0UtLFIMadkEfru6ghsPs5EzDz/0oPlq5tcGk8HAX6h6+qx/8xfMN+W3K2+gohvgoS6D92zL5D/rOOsz88kY2CboZlmzzeJ8ksFtwQbPciTiyHTE9CnjyV0sTLG6iMEA1GD3FDJmB3E77OgXn4U/Ovnz08oVIl+wIODrPwZ6qNs/CP/CMsCbnyi34ki3kzHo+NBeS0gfUwxliL0CbDCjjuEPg8xE+wvpR0k0OEdt1qxBOVav4UBR5WP5M27WGZV/lAeUrZJX5JMVBLv/BqvlBgsaZvnSZaZc+e2ENv1YluQp00f+Mx8FkM+sY5tR/iVKsn0hVZYyjHIIkhdODGhETpQtW05kDjRRjOSN+UEcKv/Y/hiO9ZzltpkyHHIRu+4oT9R75Ajq4ZI+DHoNFh1RN8oJ/bD+lyxRTNLD9LH9U/4LD6M6gQkW3EWztEfHUTKOvGb7x+62yA4sIEk5Oaai34E8xjlYyDTKTq0hyDIRUGY4Nyb1ZOVPq5CXYgaLIhIUO6EGA0+z4If5phr6Gq0LWMd3+YxklPAaPC1esoTPP9PEOs8/ymKGZY2/7roRZvSYW80rr7xk9tmnkcAkTcBZt36DwRktU7t2baEf/mAHxeAGT4MBqYC1jjBelklJlMVGtCXWEZYBCBvsHBsssphT+50q9em7Ofnm0cceN9CaMZM+mGgo/zDvRT+A/II+wywHjfXr14n8V/rsz35chP6sJmQr4md/hkkCyn6L5I/hyH9EJtzV+i99L/jA8QHrSUnUj8WLl0j/zbhZ3vPnf28qVahosHhjlqHds75hZ1hJS32kbC0DfzW488FgQgenK0uW42L0txUrV5L8U5bj9mjXfxBL20JxtAEgU94VRPV++fJlpnVeK4OJkeRfabDtUHYXQxjmjeXJfDH/zpBqTJ/9P9s/bkFHH1RD8kw8TNTN/gccYLD4YqogfTgbbTCRkyhcDNYsQ9vFRB9+NcxG9L2UXexz2f9CfVLop/tz3JyKtl0SZVdayl8kH2VqlE6JG+llH0j+Mz+Uv+Q56wgNcaA1ZUpvW0r4z3LEjq3kk3lzYdGWkX+JI2rrDBvSF1r40f6H/moweZWywwIGYhRM5Av1NIv8IX0aaK9IP836ExrWa8bAOg/1Z8k/88Xy1frHMiIPnnxqvHn7bdT9U09FGGvy8+eYxx59xGAh37z//kQp/6JF2VZc/yPyFeMJjssov6B9InWbYw3GreUu7RC8x2I4UpIs/7VoN3iyx7dRpt2VYUlXF1E/KDMp21n/lD5bjatr7EvYhiGzRb5CRkOmsWyhvm2wo2/wRJvkBxpGBovRyM9Sg2fzftX4i+micaXhfrX9O59f8huF03jgzFb+GlOCVgRMwCL5o/g///3v0G8O2VAc9aEoyqQE6p2M0SATWEc4Rk1MNAtQcTnAmfjeO8pd5CNOKDMVujTPAgs9iJgwW/UMMAM8b/UWwQtdOfpO5gtPQsYEHHXWrXoG2AEerFDjM9O/mGZwYNzjsJPYbZdd0QF/YMbcehsmZCXNsMsukwl0JE88bmwJ4o2BWWwBnrd6i+CHrr9a+eOdUNO1cxcz9JJLTStMNjNNkDtv9Zb/ufxffPHQv2z5T0O9xuoqBjPbGqiXYTC7j+l/+mmm95FHyWD70ymfGqzOg+e/jP/vvD3B3Hr7rQbvK8rgMlm2yTiSfqErwPNWbxFEunBJknnowQfN7aBVqVJFl8IkWhgp7Fv1DHADPG/1FsELXX+19hdktBBrkDtv9Zb/+fwPvXQoJiklDTQVUvlL5iHlGTgDPG/1lv96/nEW1WAHxuy5Zz1zUNODTM0da5pvZs0ys7/91uBCOywMNZAxt6QwmcwgT7Ru1dNAQ8Zcfvnlpk+f44HrBsV4HsdccOEFBurJHpaO6Z9S/3G223RBv4W7IUxeq1a+m/8984+dT3NgkyYGt/GLLI6LLFl2oev3pM+yTdQTT8hb0hh+ziEYSTTBjX+26hmjxZkOkpIMG7p+j/zHdb8P0uFixzMw5oLzUffff8/DNJG/N32N132D2L3VWwQldGXLfzI/LlYcLTAXXHChweVgf6vxV7b8J/mprpBrCsv2DfC81VskQOgK6bdo0QoLqJhYYlLJhVZ+uejCbzEu1id2NLHayNXODzjRhAkjFUDix/luHScOkMYWd5bAISi0xzGpzfluHUdxNS8xtthip0cMQaHdI3iL8906jkeOeBljiy12esQQFNo9grc4363jeOT/iP59D9xvTju1Hzr1S0yLFi3N9BlfGDwtYo7o2dOccOIJiFzX3mI6hdnSqRV3lsSHoNCeGa/z3TpOHCqNLe4sgUNQaI9jUpvz3TqO4ubqX5pb4s7CvBAU2mNOqs35bh1HcTP5D3VhUxG7igce1BSD128Mbns1eAfOrMHO9I4Y0D7x+BPmoIMP9oOqOCa1/Tb6EjpL4kNQaFeq8df5bh2ncGwJlyVwCArtcUxqc75bx1HcTP5LuCyBQ1Boj2NSm/PdOo7i5uinuSXuLMwLQaE95qTanO/WcRT3P+f/FuwOTZ36uZk79zvs+JQx9evVR/ukhsLvR79jp44Gt26aK6+40lSqUtlMmfKJwe3TZvStY0x9THKzm9+Pfhh/yM/QHuI4+9+HPjUzoCYvf3h2ygwefJbsFP9T8h+WbZjn0B7i/J7lL3V/pqv71ErAje5m4sT3DW6/NVDP/sv1fx0PRVtmfq68UrQsuIAx8f33zS1j0Jbr7QnWJXdX0xkMeR7a/yj+/13oc0eTWnDUssCdJcFEs6jAoonmFlHnpFoX1WhlR9NzlhvqsmntCymS8XAXVhSFwRmp+umXsBjqXOFvjv6fyX+qVUz6cLKojjZv1sI0atwIKmJQVZT2mizDuNQKgxND/fTrQiVdcUzE/zPzn6P/z+E/q+YSqptB3S02/5z8uy44zrmz5fKfkz9/7/5/1arV5qWXX4L2znSDm2ANzmSanWvVihpCrv7/0fX/C/AdT4PITghVPHH22TRDGeTkDznwx9Y/3E1hcHO2oYYPzqIaPIFmcK464v0fT18J/V7jP7bll19+0XwxHW15z/rIz8HIT20lg69S0q/zSroC9D+Y/0rpr06/eUvsaHIHE6qzxbGDyS9VnrmbGanOduGBc9E55+rhls1QnX3/HeS/8KxnZ442iMg3ERyOSDFZt1s1jgw6Ppy3xKgpWxIjR991CDn+CwcSlQOOXP2TxYFc+wMbEjOqREUJxFEKnpI9dCYxcvInJ384IYtMonLAkZM/OfmDypGTvzn5m+t/VEjymxCUgTMFD4NE9iRGrv/9M/vf5i3z5Fwmz9YWx30BxTDJxCV5MvmkO1Cd5STTXQjEHc242GJbRlknS9p7p8Hqdt/w1weBRbEcLKYa20JssSeDeO80WN3uG/76ILAoloPFVGNbiC32ZBDvnQar233DXx8EFsVysJhqbAuxxZ4M4r3TYHW7b/jrg8CiWA4WU41tIbbYk0G8dxqsbvcNf30QWBTLwWKqsS3EFnsyiPdOg9XtvuGvDwKLYjlYTDW2hdhiTwbx3mmwut03/PVBYFEsB4upxrYQW+zJIN47DVa3+4a/PggsiuVgMdXYFmKLPRnEe6fB6nbf8NcHgUWxHCymGttCbLEng3jvNFjd7hv++iCwKJaDxVRjW4gt9mQQ750Gq9t9w18fBBbFcrCYamwLscWeDOK902B1u2/464PAolgOFlONbSG22JNBvHcarG73DX99EFgUy8FiqrEtxBZ7Moj3ToPV7b7hrw8Ci2I5WEw1toXYYk8G8d5psLrdN/z1QWBRLAeLqca2EFvsySDeOw1Wt/uGvz4ILIrlYDHV2BZiiz0ZxHunwep23/DXB4FFsRwsphrbQmyxJ4N47zRY3e4b/vogsCiWg8VUY1uILfZkEO+dBqvbfcNfHwQWxXKwmGpsC7HFngzivdNgdbtv+OuDwKJYDhZTjW0httiTQbx3Gqxu9w1/fRBYFMvBYqqxLcQWezKI906D1e2+4a8PAotiOVhMNbaF2GJPBvHeabC63Tf89UFgUSwHi6nGthBb7Mkg3jsNVrf7hr8+CCyK5WAx1dgWYos9GcR7p8Hqdt/w1weBRbEcLKYa20JssSeDeO80WN3uG/76ILAoloPFVGNbiC32ZBDvnQar233DXx8EFsVysJhqbAuxxZ4M4r3TYHW7b/jrg8CiWA4WU41tIbbYgyDc0eTZzKK4QIs7m1Sh5RlNworwj2c0edMZbwvDe0q4XSp9GZAmIUhgQEB8xc3lOpD3S7pMCgBbu2JJUgsUoHGVJ5GlIC5nDX4DP0eDdHP0c/xnPYgqlXxQUXL1L8WTkD/Onmt/Kj6CNcFAxgSSxzWxwC8nf9jGUI9y8jfiQ9i+yBsIpIRMCv1z7Y8cyMkfbT45+eN1AgIZ66zBb+AnjU7cufFfbvwHYZKQtagYOfmb4onrc8Lf30P+Ns9rjV1M7GDixmxOMjnZ5E3o3NkkLN7R5FXxvAwIarTc0cxaaX0pRlPCRIPXpAfTRe/vLVG8gVuDpb8ZKCEgR1+6pJAlnn85/vvu2vPHW3L1T1gR8MPXm5QlAyUE5Npfrv1hSBhWCV99cvInJ3+i6YKvH96Sk7/CioAfvt2kLBkoISAnf3PyNyd/c/0PZEZiYk0Z8uf0v7wMiBNNXgTEp034jCKfKOSzR3ziBBPNbjijuUkuAdqESSbVZz9I3zobyjiRhwFArM7NX5o47zGe2vTrMMNf5xP6e7u3KH4AEKtz85cmR9/xIerVxaEc069ixN+Yh8o/j+stih0AxOrc/KXR8L+V/iJczHLPnXfLe2Vd8F4nHvV1BMJVkD+QvssV3r7ErXjvvfee+Ri3EQ45a7CpjJsJfS7/Q/oz8d7iR5M/NEuXLDNnnz0E8TlqSpMZ9XZvIZQmAIjVuflL83vx31PxFhd/jn7AELE6N39p/qn8n/k16vRHH5kleHPunHPOBSdiPqlNv8KoxI/zCf1p/wbthNfT833Js88+OwoRYInVuflL80/l/98l/7NQjz5EPaL8P/fsc8Jq5Ao4qFfO+tcr/wkT3jGfTf0/XMCyl+nQoT3yFedB66+DeK8o7/x4n8gah6Wvhg/xNIR+iZc0cRwa3uN6i4YIAGJ1bv7SaPgc/ZhPatOv41T463xCf2/3FsUPAGJ1bv7S5Pjv+JCrf3E9UZt+lUPx1/mE/t7uLYodAMRqTYuWrUVFlu+o8h1N96wJ3tXEhFPOaHbs3NXyIWM+vLoFj5/y4VPZ0WScuqdKK/6kAnsLEQKThmd1KzD6Jj8BkSjevwn9yZMn442+AeChe2CcHcvIkddLfg9pewge/F4u9kEDB+Kh2VNipmbJP1Wb+b7fCSecYHrimRFvlLUKyOpWYJLxCo0LOYokoH/zLbeYL2fMMHfdeVcoyZRalrKDVyzxIn+l9PP0V69ebRrstRcepr/TPPfcc+b5F14wfGA6TCMvsRqDa6vHjx8PUkXlxlBOAg899FB5B4qPOHsjJH85fQkX5f/77783/QcMMC+/9JL5bs53uJFwZx+tt2jUCoB76uefmzPOGCTpq1a1GvihSNa8+uprZkD/AaZGzep4SHhS9rYV8F9DhvlXUvL1CBEU7gfw1uKlePuMj3yXKV0Wjx9vhicfmN6Cx67XmdW4oW3qtKmmSpWqfwh9F2mcnjD/UjmiNPMz+pbRZgZuiuPbed78xvz/GvpZZdtW6I8dO9Y888wz5ttvv5WHw08/rb+5eOhFPukZ5SR5jTKsnkH+fy39mFBk06jVI3BLOxl9qxn/9JPQcC0qj4+zzA/tcCjeyr1Aboj7Pei/jidjBgwcIPVpMiYKv5T/n+ER+DPPONOMx2Pb1bZHO1ED/r/6GtoJ2h4flv9w0qRE+1c0+Qb5LdytSNE3+TE/LvxR3gr84osv0PVZLAItMXvjfdXjjz/eNN5vP9O7Vy+zAW8KMl818Gj8+vXrTcOGDc2FF15odtgeD5MLE12q+FwGJ8f77ttIHot3RV44/bnffWdq7VxL4mDdolxj/7t23TpTrVo1OdrStUsXcyHeg6NKEmmOGzfO8IH3bfCwfYniJdG5FzXr8Bh65cpVzJtvvJFIT0j/2muvMU88MQ4PzkO1qXhRc9Xwq01HyMzJH002AwcNlEfTqfp0FN6ZfeTRR1Fn+IB9gTkRfc6QwUPMRRdfZF7BW66Cc9RR5vzzz88sF82qFhLckz/+yPSHzLN4i5mPsXdo38GMxDuZRG1zSBuzHPzienwrvNX44osvmip4bmHyxx8nizMdbxB/yH+XX/XEV8Jp4OgbfaahvDt17GSm4CmE7XfY3gd6+KGHzKgbb8zIv9J5+OGHzahRo8S/YIuVJ7+GDBnswispjU3cCrRmOHg+7NJhZuQNI2VR5vdof0vwKP2NN44ykyd/bKah76mJZ2DGjBktN4luLf+aqkyewYcq8TCK88D9D5hbRt8ieSacdW/Dhg1m86Yt5p5778FicBOC4wDOtVX+a9yeiA+TST/EmQq5ccYZZwT9qwb8Y+lfc921ZtwTT+BWTQyk8Xf11VeLLGVdHQj5x7E0d3HGPfmkjEluvfVW8+2s2Xh2Y4Y54IAm5qWXXjQl8N6t5oX5p71tmzbmiF5HoI30dxnZSv/jEIJfz8QIltWtwOib/Pj0+Fhz9DPqv5aZ55FalLVbdStSkvEKzYj7L8T/5i1au91M9CfFi5WQ3U13XhN9DPoSwzOa7Tp0tK3btLMtWx1im7fIQx8bm4LIqt/YJ7bFfrEt9nU28cnwDgDoebIZhep3azjowLJ5C0x8MrwDwB9Mf9KHH7I+2dGjRwdpLLAke/jhh9uRI0YE8NiqKfTfLVtsly5d7dNPP+2R1O+PzP+oUTfa0/uf7mniUV/btk1bcf8R9EePHmMxiJMSBZfsVzNnetq04Fyx0G/atKldsHCBSwd6+5tvuRl8LmK/+vLLBL6kMU5o5BcAfqb833jzTWrr2AU//JCIl444lthG+GeffWbz8vLsDwt+cDhJb3vyySfZli1bEhWRpDwd1Med3dchxX6xjT7ohG2fPn3s4iWL7bLly23FChWFp+vWrrXYebIVKpS3eKMuiiQZ1gHjvGX3jYIqsk+tB3iLhM+IJAbcOGqUPf30uH5pQMXQr8LDb+znbK5utglRsvI/zh1QfwX/Mfi2GPxb7HQLjfsfuN/utddejMSuWr3KHnPMsfbtf/3rD6H/EdrdIW2y5E2oxZxQ4mwnbdq2sQeinSxcsNCBkdebb2Y7MfbLL7/yMA0TfjVG/YZ+ao/9Cmy/fqfaZs2aqZf/Ck6MGMEdQNoJ2sEPhbStk0852eIdXx9X2hJHG9uy4mR4x4CZX31lK1WqZC+68ELewi7Bly1bZjt26mQbNGwg9WfDxg22apUqtkfPnuL/w/z5tkmTJrbxfo0jcpRUBSKf+xx/vD3llFMsJoIWD4VLePcTpqzATpkyxXbt2tW2btUq9LDPP/+ClM/Djzwi8Nn5+bZqtar25JNOEneHDh3s2UPOtvPmzfPRjhhxnYR5/PHHE3HRITmNs2uxOyy4CxY42an1f+WKFbZUqVI2H/Ro8N6syL2x990nbv68+OJLtkGDBnbG9BkCi6ONbR45sogPfpL9YIxfAJ67fnCkhDi1Xz+pR4qh33S8dMd+sS2NJz4Z3g7AcsJ0yt50003pYFnzHyJhcUX4eJ/wJ4OAR81Gn/L35ptvcTi/Qv74SCOLUu3e/TB73PHHSlGuXbPGHnHEEfaKK64QrGz0Q85p+RcWt9KgP57DkDyPvXesoM+bPw/ts4W9++670sG9+/ekr5FO/Wyq9K/zf5gfgcJUKpb7/t702X6ovMr2E1MtsCtWsv2UtnPy8+2SJUvsdtttZ/F0i+DMyZ9jq0B+YME+I71voB5hQcc2O+jgRMI1bv0mPDNiKRxLfDK8A8DvUP8S9SmV0Bx9MCRgt2NPAPiL878Z5o0tW7W2rdu2w3yyE/rNrrZT1+62a/eetvsRvW080WzXXiaazVqgwwvyLwxJu30lyvTIhHjk2AIkdsiFmrRX2u0DZnpkQjxybAHSf5v+nDlzRDhj9034G9I/66yz7ONPBIODdCbSbp+TTI9MiEeOLUAK6ccekS0dSdoNtJtuuhlCtNzPBs1AIOAX0O93Wj/bvn17FzwL/Wuvvc5WrFhBBHtIg6gMhxXxEJy0/wL6iQDAn/D22zLg+mF+ONHMTFgmJBGTc0T0T+t3WjzRDNGCSNatWyf8Cr1je4AYAUPII48+YjlYVrPvvvva3r17e/6//trrdj4GyxkmjISeabcPkOmRCfHIsQVIv7X+uciS1NavWy9J5YCRHXyh5jfSP+mkE+1BMiCI6V933XVCbh74yQkcB6CFmt9A/6Ybw7zF9JVWGnLttdeinVRMtpOIPnaUsreTdCRptxLLUjFO798/60TTB6Elop+AhY4UvX6n9rN5uiAT4gX017OdwKSCJrC9I0Wfk/EDmhxgjzzySIcSRML2UbVKVUTsgPX2rIcJ5MlRVAUWuzsWlx/YzZs2CezpZ56RRQilVb9+fYsdOnW6b0T/vXffs3379rX16tWz7dq3i3HgP+XTKVKP3n33XZ+po4852m5XztVrTlA2b3Y0GXDixIm2RPEStt9pp8XxFGZD/NhJtDhTkxWjRvUadvOWzeKH3V1JBwfCNK+99prFLq1dtGgxXI4n4hH9ZEJCX2u1H3xq/FNJD7ikH3z8CYm2/4CgHhUa6f+z9x3wehTV23NT6L0jhKJ0xEIvgRB6gIT+CYgNRUWp0kGUrhRRRLpKESygoPBXUEASQkBAQCkqNPNFVwAAQABJREFUxQTEQgdpmuTm7vc8Z+acObPv+wYTRAFnfve+p86c3bNTd8p2Cjo5HWYkfa1/WD++973vbejbNdZYIyq7RNr3X6Y20Nz/wP0y4FD/uKilqqegRPvMV2eckQaaLbknu7g5iUtrzBunu8HyHyf+sbn88suLpIRI9jsFXZPteMx8McSXuTfeeIMl8QDyyXXXXtf7Uk0TyOu0n5Mq75/8Tk7WNuzfYP/UU09rBg3qsyQVoX2sdpAX4df9/DopO3wZpAGrEJo/PvJHXGd5paPHjG6++MUvil8pL0Kp6kSdgk6OU1cUSm37KhLYTqRNm3KnoJNjyhmBUrU/HU+1RW3aPNkp6OSYckag9O/2PweaIzbetNl4sy1k4pITmFuPSQPNnWSgua0INtlsy2ajEZs06yOChR6j7Cw3LBWb1m0qKZA/6fYSX8WWChgF721k/7HHMNDEjNgPORPZuv8DDjig+X5qYL9+5pnNrrvuipmm3zYX4S3pzjvvIjM9z6fZk4svvrj5FDoT3/7Wt5rf3PMbwbEcqTniyCPFv5Rz5pFvhLE0UjpA7JzussvOzaGHHdL8hbMGsH/BBRc0H/zQHs3NN49rvvCFLzTszPVP7W+w3Ks56aSTmjFjxjT7fOYzzV133S2zX0ci/Y9/PHaweG3DMWsx6yyzNp/97Geb4487vjn4kEOavWH3k7D7wO8eaLCcptnrE3s1n0HH84LzL5Braz//a1ERf/SjH5E3+md946xmyuQp4ppvfvObzbLLLtssu/TSSH+fZuzYsZZFFFl2mWWafffZV8nk0ujYvz35RPPU0+gIgWQDeNSRRzXbbTemuejiC9GBmtZg4lMa+F0+8P+aBx54AG9iz2922nGnBss3mynoMHK2Z8cdd2wOP/RQNBhxduOXHGhiAHHFFVc0e2JWYT/MFj7y8CNi/5bxtzQH4g0nBxtXXXVVs8v/26W5efx4zFKfgnR3bCb+cSL0eG0DzfU33NB87KN7Nttvv32zyrtXxUBzQ7uHp9F5OwMz3rTNZzJm220bfJdI8gKVHv/T47BzYLPHHns030A+wX5qixvvPP62mNE0bK+51hrNrrvtlugImA+Y3vibxzdYytV8Yq+9mhtwjcxj++LZMrBjwedK3suvvNxMnDixOQ5vyj+0x4eaJ598sjkS/t0es/KcJcUy4+ZzB30O/t6uueLy2JnEcivMrH6ouWnsLxsshW523GEnyWOTp06R9H/1q9vkGX18z4+Ll27EbCA7nWeg03T33fdIvqO/7rj9DtHnzzN4vnxe0VdfbLCHFx3+wfJ8NhiOvDkr8uZnkDePP97u/7qfX9t85KMfbUZvO6bBcqZG7WOZYrPbrrs1fEP+7QsvlJkAzq6+4AbpZhjIKaecEmdAUK44SGGg59nxp59Yznn/tM9ZOub/Pfb4IPLEuOZoPNe9PoGyhnhToP/Vr54uZfOwQw9r+BJDn6D4EfXCHvAxr4+zbCx3em9YZi/lTown++lGlSVkLidMuax/WU6efvop0b8aM2j0/4cwA46l/jEN2DwDPubLCS0nO+60o6zK4MDqa3jZRP8fdtjh3H4h6bO8r7HmGs0l3/lOs/NOO0uZYLmm7Qu+eX7zQeQ1DrCYvz+B2c+/Ybb/lFNOlvLHcqL3zzy4J57V9tvvILPFNvOPlJ7Gsz+T5WSHWE5Gjx7TYG8I/PMbuW7OIHImn/UPXxDFRDvvX23deecdMlhgGVCeJJTaH977gA40V+FA8xMipjJnFmk/xhtAfXmXDD5j/KbZetSoZq011wJJjdL/aosDVw76qaI8znRylm0cfKWBs6fLr7C8kqb83LPPNUsOG9a85z2rNTrgFiVNTCB/sv1TTz216Rs8KKdFDCrUYkdZZnVxz/ff/4DUe3xxwnru/au/X2ZxJKKkK1i6bscgW0mB/BloHn3sMelMc0WOimMKTXPA/gc0302zsVg+2Ky5+urNd75zqZRH1q1TpsT6gvrMf7Fd26U5FGVH2jWk+E3WZ2jXxt2MPIb67JOoz9iuxYvJ9880aP9UDLg5E/x/mKVl/f47vxKmdf+MUwQkEAeifTLzmW84aUHOdptt24477tB8/uijmidQX+qNL7jwQs0hhxyMWcdjmt1327255uprVCQvCL904oloh1GPoKwzX3UE50Cia6LcLYFnN+G2W6OqygUOND+5+sfNnmjDP/yhj0gZJ5v9kuOOO1bqv7+/8Pfm8COOwIz8tlI/6suVtl22B8ybN95wo4geeujh5kq0e6zrsIwUM/47Ng899FDz0Y98tLkQ9Slv6v7772uO+vyRzRjUi2wPmL9o3+p6vDi5G30NXp/U9Xegrk9ljn0J1rmsUw8/4vDm3nvvbZ5+6ilpX1n/TJw4SdJ69tlnY98Fbb347NfJZzCE5ap4mbBr8zG03T+8Ai/7EWj/0UcnNQehvcLS6eaQgw+R/ClCUaBG93Aayg+WnpswasbfdywRy8+kiZPET6OxAu1J1LW0KBpRLeLgTpw4sVl3nXVRdv/ZzDPvvDYLrfdvRtpISofsiDpGZiYhZd3tU1UCVIoUkv9V3AGdckQdg8pKCuRPtW+ucO6hqyRAKHKjC0q5GTpxRB2DWkoK5M8b53+OG+OMJgaaW41qZKC57fbNGM5o7qgzmlts3Yy0Gc0RvES7RiE8pRcfBa/vV9NS6FIrWY5yqFOfOVTTUuhSKVmOcqhTf00Ue3BSAxsrOYmQ0jpg/wNtRpMdYDZ4q2Ap3hGo9LnUdsgsQxrsBZEol//gclliwQode4SaY445RvSxX0Tk7PhzWd+1P/uZ0Ntus02z3377ScXMRotLXBguhT7tLLXUUg32l2EQsqakxwb+gx/8YPPiSy9Jg3PJJZc09973W1ly+V68yWZWYON5CAaWnDVipf+nP/1JloDNhWVim2++uQwyaeP0009vRo4cmToB5OTAgfJKK64kA5Pf/ubeZthSw6RzSI2JEyc2W6GDNmLECEn/5VdeyhFhn28I2Zk/++yzM78L9hh8zmVgXK71x0ceaebGG9+LL75INL9y2mly/1zyeNKJX8IA4GihV0fnhjNi2JsjNAdPvGkZaMLmnh/bs+HSzG1Hb9ssscQSzRNPPNHcc889Miux+GKLSSO51lprNdjP2eyFTg59/PDDD4vNyy77bvPOdy7bPIhlwNjD1iy/3PJxRhP3hL3RzUorrYRO06GYLXgKb4c2btZff/0GewBhfZr4adHFF5MO0aRJk5q5MZtcLsPu4oAWa010eHfjQFMD7DLf8O30UksjH2BwteaaazZssLk8cF40egyTp/xTGm76nC8v2KFgZ2AIOvebYhnnpVjex+fMZYWEfItO+bBhS0n8yzE4H4RlQUsuOUwGVpxtxv6rZo8P7iHye397X7MaOsnvex/yFwIHOkvhJQPzJpfTXfa9y5oVV1yxWWe9dSX/sZPifcUZI/pqInzFGYqcN++TvMk0Jb9hNurxx/8kA7al0DH/8Ic+TBEG7WdJfmJesDI3dKiVOTEqmviBz15C2Rix8Qh5tssvv3xzzjnnxDyPhvmmm24SPju8D3BpIXgcdLFjttRSS5uPJ6PsbrN1LJtPPfk0OmBjrGxykLko8tL/IQ/xWc81z1zyrJ97AeUOnSEpd/fFcqeX1Q1KOYHdnuUE98Jw1jfOlgHMq1hSfdZZZzVzzDEHlls/I7LTWE7w3OmbE790UnP058tywjLOPB7LSYOXTXvLIP/8885DmbmpWXTRRS3PcdCgdc7ezGtrrCkvKjjwpo1cTi5rln3nO6WcMN3lVlgulhNcEV+udHv2LCf0NTu273nPe2Tm7HwM8LGHquEsc9eQ7v+rp2MZMexzAKshiRKZKc5oLrfccng5sIvkz9lmm03qA43nIdObb775epfTlOwn9/pUs8WWW/iozZ0YaNJXnNH8xz9flTLFgeF3Lon1vFdmGWE9l5fkeWl3vOgo59sTZZmRQRljkIEUfMMyNtscszd33nGn8Gf2R1644r6udC9cWaYY+MJVl/1yZpwvi85jPrrpRslHu2LWUXW32TaVHdSVfCmq7Vqsz1K79um9MciP7Vq0UP4yL7FeefKJp1DHTZaZ/6OOOkqU1CV6/7ZCQQUpKZ3xNHlpQvzGZZavvPxyszXK+zZojzUstOBCMpt63bU/b776ta9KXpUVT1Dg/bMdZl2zzehtGrbDElr2NS3COzE4WxD1KvMNzimQvKPys1Gul19+hUbL+Jwo4888/YyUv12wtK0Ps3Osy/mSly8esQkTg9DHUnRnFKjMaCJPcJDH7Rk4pK854YQTGuyxlRl62ueLIS7dZXvGlwtzIH/edtuvmkekHZ67uQQvxPksWdcvvdQy0v4wH3/3u9+NdT2W+jPwBc+mm28q5e1xLNHdfrvtmxVWWEFWaLTbV77kUp9xsKw+OxcvN9+JF9d3IO9yiTOXqP4Wg2WctyBLWf/vmp/iBfuzYoN5n+2fu2NehVyL/CSUL2pYt3QLTINLwRn40p5688w9N/ph+6Pv8niOktI6+KBDGpxNIPyPfexjcn/OIviOcmhOaCYxTUuhS6ZkOcqhTn3mUE1LoUulZDnKoU595lBNS6FLpWQ5yqFOfeZQTUuhS6VkOcqhTn3mUE1LoUulZDnKoU69iTOam2DprJvRxNJZGWjGGc3RzWbcowmFvEezS2pdWGJI+E5oqCFWTDKnKDr+ehPuNXuz3kr2WWmzAta9lf4O98PsDZdUxPsZQMXUJxV3unMZ5O2LmT0NHNBwFoBh6pT+5h0YgODADKFxOqrMStHDnBWgzZOx/5OdTQ4eODj4+9//Ls+EnaDdd99d4ukPB6ar4601O6ns+HEQybAfZg+xkV3VZJaFS/Liw413gwMqmrnmnAvpvwi9ARkk3HfffVFFOBa94aDp85//vDHORWd9lllmkQaZcXfDrC4bCwvOYfcjTd4XZ3q8fdE1vQHZl3jwwQc3OFBD3qCuiQGg+umf6FgwDXakGTgTwAbhAsxuMtFp/f3S0bnoojgwvelGzmj2iV+o/+tf3ynxv/2tC0WfM1kcALz6yqsUIwzIrCZtTJw0STiLoNOt+4B4mWwodabmYbwBpm5cgjUgMzZsEPUt/qcw48yBCjteZ+FlBAesW2P/GMwgyI/YyGjmKbYGOl060FQeI82LfPDBIh8MyCBr4YWxZDCFH3z/B3L/fLvMcOml8UXFY48yfwykAWvAvsUXRP7jq66U+3kFe4Voa/HFF28OOPBAkfHnQLxF5v1xHwsDZ4g5QI9hoPkAZtF04Eneccceh87mYiJWX0nnDomfieWL5ivSZ36jWQDLqjXQ/mIoM0e5/Hb2uTG/4dAp6czg8AZX5gaa92B/8D775DKX/RpTZQeIZXmtNdeWQSRntqZiloV7dvgcb7zhejUvUVnWdnM+vh7LzqjHN/UsmzjYS8rmiyib3Oe4NAbZfNZ88fRODLq2wRt3Bub5BVjuNPDm/MUJHXkse7TBVRItLR+jGYvBDAeGDBysM85NGDAz8HmTPg1LxRi4lJu+4ioABhwC0sw26yyNlpO90blfd731IIkXcthhhzX4cHPzAvb+kaN1jl0meJz950B80qRJoBo850WsnJBmORmR9mhypoS62rH/+hln4iVGkHLCZ7LA/As0O6ADfO45ZzcnopPHa+csNYO36fHPH320pMmXdDF4acniMlccioOXbc+h43oHXhZsi5UdQ/MS5BR1GmarWT65NBYH6UgiPlWPc/WJbRNImpzR5LXzxQ3z1l4f/wSeSefKjvPOPV+unZ3p0ki2oJhC6p1yWu+O8hKYkeGgnUEHUpuO3AT7TeeSF4m6TFgURM2lbKgh5ndytB384ZU/kuj+h6sYLpd2cEBWwqwn+ShqHI5Zy8FYosx8dGNq16TsnHUOZs53tHaNxmJ9tpslrVeikALifOG15JJLSjlj/ucLimWXWQa3HgcJ1NP7/8V1PyfZEe6/74EiP9rNJoQviPksGb6EWVnu0WOgfeLaHpDHVTw4lEmksR1ePbfDj8V2mHpFkJvKd8ZZyeMx6FsMZYj5hy/BKOULi3NTGedLGb5Y0TJ+BbbzsEyxbDH84Q+/F1qWbQsHP9mEDNKYNuuAe+7+DVajHIFZ0eNE8/pf4CwDyFj/a+DLP98Os57f+7Oxv0KdXdp1/XHH4voXlejXXnutpHcPVrYw8HlcKPthm2Y86g22yY9OmigyDuLf//7Vm8fRd3nk4Yeax9B34UtJzhLyBSJvgfUZZ8ef//sLMkjmoFUDXxoPRf/oMmw56Qju/injTLgMNIXvhEDfgRfQsmwqJfIA9mTiQDFZdcFJgN9j1lxjcOA/H+pzDtRZ3++JgSb9Z6tK9EI0gtIKhe+EhhpitjKneJyakoNeM7G7sEQifCc01JBqv4sLs3ec2w3tIu3CejP5P+7R3KTZeNPNZTw5Cu2i7tHcbqdduEdz22azLUY1m6SB5vobbWy3q4jeo0LyFVeoup3Qa3hcNTGd69gOVYWutlRPoSl3IF7D46r4n7HPvT6s3Lm0tQwDWBr4CWk8yecV4pSmQm84Olmf+vSnzA98Y3YyOqiqz44SD7JgJcqBBGcZGb6MfYystNghxsmtWN7yowYnZWJwOkXkjPN1dNK9/8eh8uZMHQd9XJ6ny1n3P2B/zHrqQKCRzisHmt6jHJRyIMulp5MmTZLlKDmn0GTUZoeO18W3p+TR/l2pY3Vt2gvE5cM4ZVGuU20ofPHFFyU+l7AqTxS7/Nx7729lKTI7costvqjNmnJQwGv4wQ++b/fPa7/QPR++hcQpu2LjlzfFpbN6YAmX4NJHhx9xpFjlbODw4cOLK7h1wq1ig/uSOEvF5//972MPUgocnHLpLO+fA925Ye90+I6Bhzisgk4tA++RS9Zw8iUOCfmJPEvuBeO+rNe6f/U50+HSWR1oko5hAG/yF5CBLWlNjx2gRdJAkzzuqaK/dKB5Gd48k56WIlyVBpZsOBnYQeBhCc8++4zQzFMnn/JlwfnDTh7jjxs3Vu7/AHQy2QFR++3nf+Y3zmzmR35l4GBnLviK10j9YzEIXXnllUTGHw7G2HjHMCBv7WnrW9+6IPHyi4LrrrtW7HPZLcum2ucMyaexVJhBeQo9j/e/L1YMMH0+D3ZWiPMlTwwxFsvamWeekXjodGJ2kHo/+tEPsdz6x81VeJ4sm5ORL7mXlvvFrsaz/smPf9LIs54QnzXvzZc7f02WeEJeevElscFyEkM37Vj+LsOs9GabbYY3kNtLHM6mMnDZITtzP7j8B+YHKSfpBQxT5EoBHehwRtMfBnQlBhS8T87605PiB6zSyGEAfpsgHVuWkz+hk0h9X044ENtoxEZin89eygmePcMxKCcrr7yK4JwtYVwOWKScwK/0L9ONofv9f/Ob3xL73H/YXSPH5kCTS2dVDyd94oXUbJhR5+A6Bi6L/gDqL65+mDatX9mAGsuxwNsLL5G2TPvRVUOXznKZsfIUMjZxroyYHTNT2+GZ9Q7tWFGTS7bpq3/841Wr/yih9jIYbGl4QJbO9jU//8XP5YUEnz2fsaaqUPU7odcYkD3htKsrS2iR9R8D/Xo9ls0z0Aa3ZzBQfGWqX5iPuO+YabBduwrl48orr8L/j+ylXGzXNI+V9iXB9MM24eCDD0LePU9etHA5N2fy+LJWg7//bindp/5J7ZbGU/jSSy/KIIcvFNdYc3WZeVYZB5pn4PA6vX/Wze/CCgkGXsOSqDO5PeUzn91HZly72fc8TZfwqaefalZdZVUsg17c2Jde9h0p41yCSv/FMs4XZldK/mfZYnpah3FAz6A2FMY9mniZhmdF3st4mfgolqAykMe0eQBeDDEW+yS77vYBeaHCl34f/vCHTP6BD5RtvbxMS3X9iSeciNnWwV3vf8KECWLrUcxMMtBn2nf5TOq7PPjgH0SHM6X5TkRdXvJuueUW5n9yl33Xu2yLUNTKsfT+yedeWN7nq1ju2g6+/OTYjWwd4QtR1k8aLrjg/GbEiI0l/3GgeS4G7/QPZ4o1qF2F5CuuUHU7odfwuGrm8kdOd42o62WKK9TUOqHX8LhqVvta/umR7h6KvvIyxRWqNzuh1/C4av57/K8DTZ3R3HLr0ViJsQMOA9qx2Z4zmqO2GYNlO5zRjKfObjB8BK7AX1DCjWWIXukMQYsNxHBJIVECvMTzqehlM2TaW5FkypS8HS/x/Jm3Pw09Ug5MDsOsn16IWlkbHexJkyYaH8fUu4HmQLMhBiM8OEYVuA+Db9Q08C0x9wtwKeUW3OuTwsmY9WRl+Kvbf6Ws7D0YZ8edlXoMzHADsk/txRexVwPXiY+tYlbgBBEfgGUfcUYzXvU32PG3zrwlL3tKl1vuXc2BmL1i56QdGJvLBmdD54wzuRq4v4rXetutt4E1IINDLk+15x3NGr355ptJo20naWpCgBzscEb27nvubri0jZ1kBs4wcA8aw9QpcaB5eZLRDjtR3D+iNrk89dzzzhF9ndH861/jMrxHHnlYrveySy8TOQeaunxLGPiZcGtqCLEP5uWXX5EZUv/82YEegQ50DAMy+7HeuuvJflJ8vqa57/77IIo3vhaWGcalqOaIFO9fB1wWK3s0GQXJaEoLIh/whYMEYQ7IIG6hhfn2PWpxvyUHHJMnx4b1e9+LA03mGYar0NmThvfVeCiLvInGwJrLkBiWWGJJmVlXm5dcfInox70rPAhkvzijmexzoOmf/ze+jpm8BRZESjEF7u3ljAc7TZxhuu+++8UOf3Qwpox/4ppnm212aeDVPvdjStnA/lAGK3PJPp8lX+6oPXUWZzv29TOd0OCSRabFZW9PPBFfolx/fZ7RZPq8dpZPtX/yl2PZvN3KZpIAcK/VMCztjSHzSeNzBeWMZtLqBTh4nH2O2XHibJytU/u8kFdQTv6C5Wjcb7vsssvIsrZXkE95LzrQnNo/RV6QcEY7hgF5658HCo0sC2NnnYH7xTfYYP2oil8uHWM9gs/pCE/qHA40YV+v5VbrMKKcvPQyygle4Gg9CS0eDKYzmoz10Y98RAZ2fPYsJ1zhwDBx4kRce5/suRJGlx+1SeOK47NJYlNmFYWpEiYwgJmRx5op/5wsqfGFxl4YEPmwFWYcl15qaWNxkMQZDNSowjv3vDTbCMpSBqL4p1APbLHF5jG+MONptHwxNe7msY5PNMbq758qy9zZKfVLfqnxuc8dKLPrxNtBbf7oh/oC4O6kEiWTJk7CSbr5heL9D2BWHNehM3ocGHH2y+qLtoHXoPmCbla+oMO+Xr2WGGVAyj/t8x7lhQX2Wuv9nnQi8tHgIchHr8gJ7fjqhi3XhlIRFlhgfilrBTMRahOfn2nw+Q9p86Iotn9Lop7iigIN7fvX6zE5ZtjiDPsvlCWQK2f4/HlyOveM/gMDkgsvvLCZDUtIJeBCFsRAM29/GJAXTNuN2Q7XFPdjv4hBKj4/FNthDLgsYsI8mICXNZfhNGwfjsHeT/Y5piKvHHvMcTJj+jBexvBEWpbxa9LLJL7kIs2BJh/KEzjFnfQNWHVh96uOgwKXndL/HFS2w403xheydpoxFGI7PLus2mIy26Ad5rYFTTKuXkpLisGUOi4NNL9zKdoJ2OILlxg0FtpXV2+wGeIe9hfxck36LnhxeOJJJ8rS41lQn+y7734S3WID4UyqzN47yQrLryDlJxkDSDF8RHD1BRr3lfowCSfLavlh/ysvP45a3BKVD+RrsGrnvdj7PB7CbIdtIVcT8bl5fkzBLiSSM/hrsYEYLmkkSoCXeD4VvWwGjfvYSKZMydvxEs+v9ttem9EnYJ4FYrgk4v3sJZ7f2/8cN3JF7MjNtuw8DCieOjtGBOXS2fZFwADsFeYdEdEORoqgza13idP1bId3aIDheal/KzEi30kVFfjmsc89C9z39uhjk+xOebgMO4MapkyZjIarTw5NUR4HCB/GoSB6W1x+dvTRX1Sx8EdjHwcbBz3VlsK7fn2XNAh8462HlnDW5sWXsHQWDT73YvHtsAbZ+4Y9K/hWp6TJ0/j0zdoncbDGKjjSXsPZZ58rM69cesi3uvp0+FaR17ESZ+Om4/8dsR+DSwJfQseSgafvcb8b759hG8xmctmYBaSl90/eXXfdI0tVuT+EBxiplLMaW2y+BfY43SnLLdlp5QE/XMLJEyD5DKjLJYq8Tjb+DJzh5NvG81KnUGcsOWvGIANNyCelN7ennXa6vPmXpZeQf/jDe0hHQZTThf7i578QG/fjMBEG7l/lZwGee/5ZOf6csyOLLba4dPBllm6uuTAgfcknITh/jkDHjG/bL/nOJcJ74YUXbQ/KGRiE3XCD6+ioowTm/M9lQnGPkCo0mHEZ6MgHNHDFFVhOBXt8u82l1rvvupvYl6PaUfjOP/+bcm+6NPZ737tMaBlYInmdgeCeFFrjm+ajMfMewwCWu+0k+4gSQ5ZHch+gBh4awT1DGk49+RTsEZsDaQ1Ih2jOOee2vBPvJt/TOWefI8uUOGjhIRSUcP9PzG/07wAOEor5bfLkKTJLy7ygs3K0yWXGHCxYQCJqgeXvhz+80kTcgzls2BKyDJhLgZnWdzEQf/APD8qMEfNSWdYGcPAFy2af7GX1ZVNmQA4/QtLQPUb0/3cwMKf9c7DklyseXnrpFdzbAzJjfORRn8eAsXPvDyPcffdd2M87j+yj4hK2GAZkzzIHVnfeeafkSQ7sGbgclPUPvrMoNG3zfi769oVin50fXvc555wnctYZQ9GZ/drXTheaA4R4+A3yFvbAcdDJ/WYM1BU/fPkkofXnF7+I5YSH7jBsjvK7KssJrnfSpElx/zOWTT+MJX/4TmSD78KiQxnrDerH54Ll7kifeXxxlKmJiEcBl7hPuPVWeeHB/Xd8AaUxGFeDzpJ9vrVHj1sauN/4ZXRgaWfJYUvKCyttf9gp55L4Aw+ML834goGn0N5x5x3Nww89jJn7q5v3YYa6DEwpBy6b5ksTH355U9zry8PFJCCKj/WFL8S9+fieZeJHKet33j8DD8u6/vr0aRXh6A8+w4B99szH22yzra1SoP92x6yaruKg9q3wHZ//FT+43OxzD9+gQUOaq6++RhKMlvPViV3Ohgkr1z9qfedddmrmYztoM82sb8p2kHlGl9Lzuoavv0Hz6bQ95C6UnRAGWdmhmUsuuQh54sWYx2ZHu/ZltGs97FPA++Sy7nbYH6sTuPz6aexfZOh2/+Tr8781vUy8DLOFDFzxcSbq4xWx3/73v/u9+E4OAISMe8e53LJ/GgcQGGhiPyWX/zLQFyzXN930S2l/V0A7zPtmYDvMrSu8na/jRRPzmNqnnPzrr/+5LMWVMi733TRjcEgVZw5Jst2xMn7n7TI41u063GPPZ6wvBTlYIn311Vcz+RiQSErWlqz+GLPJDJEffxmHcR9BWY2CgeZYLKvlflu2sdIOr7pys4u0wzFpvjDydT2+MS4Dcr7E5EsU+oz9H3rjFbxo4HPj/f8iLdO9H3vhBwb6ZW+n+Ayy92K/fzwscKAZuckmskSaZx8w8OUxDwnkLCdfTOlhgxwUzobr5F5S3g1fAtgLQzDI0/Dccy+k8rNN80+0IZTSNmelzz0nvljiYWS77voBi8dl39xLffU10W9cwfLOd75LkzQ4Hodu0Ye6qoOzwUcdcWTT7x66Q1P67uoUFdhZ/so7MbMFokkYEwzPq/bNM9X/cMVwrNiIA03s0cQK2a22GdNsjcOAOKO5HWc09TuaG+uM5oYjogd9Tso+Naxb9jWhZUmfNSFVUqExKDJmTOZtaP+F557HMrt90cjOJ51svvliJctN+bx/bvznYTR8g7co1vLzm3mHHnaoVLScmePpeDz0hJXQvPgGlw6K6LCf/vSnzdJLL50GlOpLHL+PDjU7d9zX+f73vg/fmTyjeQmdNJ5gKOmgwT/2mGPN/1yWtu5668pbt/ehgXsQ+zbYUDANdjDZYWf4LZakchDHTp8frFI2DJ0xnrSXHzi5CPmyZC/mtjjQgQd7cPDznve+B28+7xG1Qw49RGZNuF9i+x22RyOiEUUsP/TXb35zj8TlNXOwzs4aD4aYOBGNHAJPk2RnSj4xMGJEs8nGI5shQ4dgSeSnZf8f758zAjzNdOORG4s/SN99z12yV4Zvqjmrx47wdVgKysESB7Z8I7n2Oms3v/td7BjzwAM+H/pnBOxwsMzGYqmlhkma7Pxy1ms83soyPT5/7j/ceeedZO8iD2vi/XAWjfaXW365hofVrI/70bfOL6ETRd+zMyIH46y7DpYj3i33yU7Eu7DkJwf1V4RcbrYOnjfvh7NLG2EpNgeQHNRoPphn3nlkGaKmwe/pbYoGmtfLFwA8qIONJDvdbAD5TT++1eZ3TLmUir6hP7lskn7h7Ctp7nti54LLwObGHq8PoOEdsdEIGXTzxFEG7r/krJvmr4MPObiZBYfx8P+EE0+Qxl4PudA9rcM3HA7fwVc4mIWHBvHZczkuA5dLz4IlZ3PNNaflTR7GMRqd6pUwI8VDeNh5o/+szOFaeXAND3qSModnOTue6anYy9YOfA6zzT4b8sLaso+Yz42dAQ08/ZP2t9pqS1kyTR/T9/PNg7KG/UdaDjg7xHLFZ/5evNnmknMGzmTIYUt81igf9PHdd8dnTTucpZgT9/ZldKb5bNmJyzOATKHz+XPP1zxzoZxgJQBnzX054fI05gs+O+ZtfLReTq/kctr3vf99Vi7uuON2efnD50od+m8UDu0izWWALCdcprs88u8OOBGWg0wuh+Tzfxl12zproc5BnpmXfsAsKq+T+6z4/JgGy8nvfv87OZ2Xh0XNj7JL+3w5xD2+LCcM9Dft00772XPJKVdUcAb7vahT2LnmM/4N/DQbnglPrTT3ZATYQHMhlgOzbHEwyUE4y99BWFrJfdLshLLs8zpZBjfCSgTWX3wJyHuR2SBc20EHHSQ67MBSl/+2XL18LNhv+LzUF0yPfmHdwVOdL7r4QvE/88yCCy1Y7hWGDXZYh2JfKMsfnxnbBA7KuN+Q9jbddBO6CYOLVct6oWWfz4/L/dlujNp6lJQJ7hWjL9iT/y5myHhIG9Nk2dDZt+eee07aH64C4EnU7RDtLge2GkwaiXz+ObSDWBrI70jy0BqWDx6GpQdQUVsORUG9swNOa+U9aj5KKcn3kuecM5Yd1qUsO3zOWp+xjuVprkWAfZ6OvOHwDeWellxyCVmuTh19/uJD+JWHxxyNPd3d7l/1v/td+Af1NP3DNoj5ku0NaR5aw2XTzB9c+TMCHTG+rOOhO2usvoYc+LbooovIIVs8IXlVPKuL8JJAw9xoV9dDuWd9ybrqoQcfFJHW9fKMVBmQL1B4LbwO5kvW8R/84O5ywB/VTsLhgUPxAoSnVv+/XVDG8Tw5m8dzElj/8JqZh17FUmoezEZ6GPITP7Pjw3fwolPzGetfnheggUvPtR3gQXfjxsXZeL7MYlleFUvceYjaSLbDaNv3229f2bvJ+oztMveWXo+97czztE+fMbBeZ/vGfMqXhRwY3jz+ZtCu3kD7yntnXfmBD2B/P/o6XDbLMHHiRAy6Rzfzzj2PHHrG2fQYBuTAQt4/T8pl2nyRJwH5fzW2q6hLugX6n/0PLT9cLcXnJOUn7fH91re+Kc+ez4UDa9Z/PHWdxYJ7Wtk+DUUbx7ZVn+dD2FvKvgXvn3nguOOPa07DPl/WEbqaitej+t2uTQyIIBU4VVJSIS8khY70uvS5VJewQ98LLd2cvoiVVGh6XdKr9guPtok3m/83wLjRBppbboX2BAPN0dvF72hioNm31ajR2GfVHzCzEfr7pwL2h/E3j0O7FwNuEBMpkWLuV34SG+iQtRgtUuIJr4vAs96O9tEgBjTWAUt3wpBBgwun4q1fwFH9ATOOYdDgQQGzAgH7x8IA+iwDA6h9BqYFdMADDpjAc8F7XcZHoM/wljqgURNaGOlhocwGfNQ4oLNvz3LKlKkBlTs32UG1Caj4Yzz8Yt8R7AwELN8I9D+vJeDEDfwA7w+oHEUXHaWADh3+Z/PmAj5vEMb+cmzA0lNL0z9TZZKHmYKAWYqATfLKDugMwBzmVWATS1wDOtIi65YGBegIhr/+7W9hGO6PvvPKWEYb8HYavl5C/Ig3pHJfU6f2Qxd+hX/pZ8ziCo23kqAHw+9Rrv6fivuePBnXMstQ+PmFsMii+XoxI4Vn2BcG45/XjoZT0oPn5PngEymSNu8Jg+aAfZ4BjXV4Ds9rDvpv9tnCY48+GnC0e8DePdz34ICPwYebxt4ULv3OpQEnFoc55pxTfIxlTwHLGwv7eFMbMAMccOpgvHf+OmfhEeK68LxxXwy8Rz5DqkydPCWg04rnjattBiQfuKgBA9KAlx6hH/nuhedfhO8WlLzB/DcE/qMfmXcwaxeGIn3eP/NV/xTkk1mGiJy2mNf323efsNtuuwfM6su/2MEPvtmH5z1IygGvjb7U56/+n4Zr6+vD84Iu9jsHfGonYKCF+miQ5G3MAIXvXXZZmAQ/zglfoTMLn82OvDOb3LPeE8seBgWS39Q+fYNvEMbrGIQyh3vDgTfwD/P+gOV3TYMJslw89dSTyA+zhfnmn8+7W9J54bkXAgbpYtvKGtJlPC1rTI/lD/uZUDaXtHpA7eDtfcCsbECnUNJRPu8NA3MpdxTgUA4ps0cecYToFcqJw7jYmx2wpC2gM5ifc0oUn4uR+6YtHJ6F+54W8BJJyhbrGz5/9T9eAMnz1uePTpDEHQKfPYdrQ0cxPPvMs+J/fLzcLof2mRdYBpgnWf54/5LvBiOvMI+y/OL5s/6hX5Z4xxLh7yhvs6VnyXKCz7AEzFgFDHTCn/+McoJnfyme/Z8gYzlhePKJJ8M8884dvH0c9BUwaxNwMIhdkwwHW43a3198EWXs5YC98PK82P4xL0ydyroY+RQXL/kd+byP+RZBnw3vjfVWH18t4E/qT5Qt1jEtMxKnP9XDiCH3T/8wbdqQ+gn+oS+GgK82xGDrR2Wx/MC3KCtPP4N6YZttA2apu8aVOPh5EvmY9nDSsaRqaeGZS/7n8wbO+l/uHxjrPPqfdZvWJXp/2B8Ytt0adu/M9ZGm6S8bJ5uH5599LmBgj7Ri3UQ5dZ/Dc8LLpYAVAgEnpCK/z9FxD+iehr/8GXkEdTvzDO2zLWB9NtCPxhIPF8ttmWQRl23sEC3viEU/M4jvAPuQj5n/+cz5J/m9df/UxxJXuk2undes948TxJGvUc6RP5gfmEcXWHCBgFPZ5X54X8xTbGcXWmBBqb/w7VLJN0xX08JJqNL+a9tIPj7rEXB2Qbjd1/UuDu//iSefCO9Y7B1in+kxMO4zeC7sC7CMYymv1FNzonz68sdniRVAcs+8D3pVnw3TkL4AbpptJO+fd005ZWDEuhP+nIayMngI8nwqH1imL/aXXHKY6LMdXgj9i2loP1heWP/THmYvYxoCWd5YxvpwTWjj//JEWHrpYULHOkTbV7bVQ6TNYL2DGiUsvODC+YHg0nh9j//pMbRfi6BOmJ1XG/0MAdsfLJ8POMRH7FOXz5L5GC8lAwbKVI/6gpU/OHMCPmwCXuZngSYCDpbzBrw8lP6XKrDc8L4RUfxPvzOwvmD5lz4f8jfLH3H2FRZgvtEEWtCZi5IWo0WKjvC6CDyL11P7/9Hr3i8t93fmjZZyi3zb+X+DjTaW/t8glEP2Cwb3DQmDhw6W/i/r4L5R2LQ5FRlbBpuoYDjgvOXmscmP3j0e7yJOLC2OURu/qcE1MRFkXuTeghWJtg1PezxF7cKq9qNT7Pc/7H8smQz43lrA50FQKeIq/sP236rPH7O44dFJkwKWrFq5wH6ksNxyy4dHH3tUXi4ULSe14F68gQ6YnQqYFQzrb7B+ZEbPv6n8j2+LYaC5fzj88MNw3bjw11H+Dz3kEAwo4avL4atUjfCFAt6igz8RA/1ZU8X/9s9/2EclA00sdwzzL8CXTLjnN+Hzx0Xl8Dqe/6GHHBpw8EjAJ3P0VgOf/XLvWi5g1lFebnS7f/HTeReE8887N2DW6XXlP7uR6GojI/Lm8D879tuNGY164fhUL7jLfB3+d6mY/z2PdRY+oxWwCiZssP560EEBbTf1b6B9vSh7Cm8j+9jnjGdK3x4bMIutt+rdD9zu/E1V/xcX+RZ4/qxTxrD8HIfyQ18nv5b3Aaqdt6v/xSmWC99G5a/jYcebLLKE5pP/tfsfvuHG8pK4Dy+XsHICL6Iw0MSLyMGDMPDEgLNvq21G8+PH8uaNbyk5oxkHmqkEicfMbeJULVuZW3Jano++ZwHs2rmEGBWPvjVJypJZJZ1qH37LnqZPSm9HmfiqW2VIAVXeYP/zrd7GIzbCm7uXA5avBSx1o9EY/gP2syH1jhoHfAvY//a3vhVwumA45pgvhHXWXSf89rf3hmt/dl343AEHYHn7VrgJGbbLTekdxicff+Pdejxy5Pe/fP/4EHnYaacdw8YjR+IFxFfCau9ezV0cHs8Mln8sSQqf/cxnwxePOSast87a4Tf01bXXhs8dCF+N2rpI+81w/2+F/PdWqX9xUnXYZ5/PhmO+eExYG+Xkvt/8Jvzs2uvCgQd+LowatSUet5YOlw3+y/m/Pn8+CzyE2v67TJnRGa3/NIfH2j7+xtQ8ntOv+Y++qPmvlj8tOa5sMGfMYP9DU6nlT3ulfWE4ZjS52mUQVorIjCYGmFzpIANOrE7o2wprafHNr9DfYJCJ5Q79mNGcMO6m+CTUo+Vz6UrR6QwSpSAi3/92iMlwgylBGaHa926bLl74tCA6o3WI/w3+55LJCy64IGyx+eYyuyBWezy/N8J+kWZB/GfuvzBZEP+6fRxuEG771e1YTrVA2GijEeHdq63qXsB0puM5hcmC8FoR7xCT8QaVPy5xOgnLgbkEijj21IUP7rGHXIhlj5mwT1/96vbbwoILLBSwlyes8u7oq1r/wLUdDzg+d/3tEM+E/zUthUWaBaEaGXaIZ9D+9b/4RbjtttvDggujnGw4Ai8u3i0TZ7RQnz+c0OHg7HtiHeIZ9H+ZWqSKNAuiU7tDXO2/YfVvp/fr86/5L+aK19P+tvNV4dOCaGvW/NfhHjLeoP5Xp/ffGP9z6SwHltz6MiQNMvswk8mtgdya0MfvnXDfE060wkATS2exX/OWcePS9TmXiDPiRVoGhVZk9xDqXULcwJFxFwWZSR/Qc6O6ylSPEBZ7mIjsHsKYoMSt9r2n1cfV/94rMbuob0gRZ6j5r5a/IhtIruBPzC0pz/isYxpRqdY/vqSpo2r9470Ss4z6hhRxhlr/1PqnyAaSK/gTc0vKMz7rmEZUqvWPL2nqqFr/eK/ELKO+IUWcodY/tf4psoHkCv7E3NJgRnMklsliUIl96dxTLHuruVeTPPxjRnNbHsscuE9zABuzucF7vO3RjOn5rGcWZgAp4ru861MXnUIxG+jBzgqvgRXxSTCg7MQQpfJbKKpcnZnpGcWKZEkwVPvRD5ZV4ZLCUUkM0IOdFV4DK+JX/0dv1fyXck3MHfJbZJScqXqws8JrYEV8EgzV/9EPtfxLZpA8UmSU5B6AHuys8BpYEZ8EQ81/0Q81/0lmkDxSZJTkHoAe7KzwGlgRnwRDzX/RDzX/SWaQPFJklOQegB7srPAaWBGfBEPNf9EP/6b8tyFmNHkwqQw0CXk4lww4McgExEAzzmhOxSlY3J/JUx5vGT82XYReC54O91cAdNvbWyqXVH7I3d4eOd2s6JgJ1c3j1X71P7Kh1RGdOaWDk7NVzX+dby+du7KjHDOhtfzV+q/W/7X9q+1vbX9r+1v7H509hJ6c3K2o/a+3c/9LZjR5+A8GmFwqy+WzHGjytPUhg4fq0lnuzYwHAclAkzOa0rlk/unerc8ZqEseo1BD1+gpNkDPgWu1n1zf1YHTf8tT/a+5r0f2rflPHFPLX61/enUca/1b619pemr7kxuTjKUWJDM8Vtvf7I2u2ae2v7X9Rcao/Y+3Tf+DhwHZ0lnOaMqpsxhs4hRa7t3EqbNYOotZTH67h9804veyJrils2WFmisIGX+Wwly5+OlYcDvUCoYjHKqJlaxEKVOhKhuMAhUrbIkT6aQOVd2SlShlKlRlg1GgYoUtcSKd1KGqW7ISpUyFqmwwClSssCVOpJM6VHVLVqKUqVCVDUaBihW2xIl0UoeqbslKlDIVqrLBKFCxwpY4kU7qUNUtWYlSpkJVNhgFKlbYEifSSR2quiUrUcpUqMoGo0DFClviRDqpQ1W3ZCVKmQpV2WAUqFhhS5xIJ3Wo6pasRClToSobjAIVK2yJE+mkDlXdkpUoZSpUZYNRoGKFLXEindShqluyEqVMhapsMApUrLAlTqSTOlR1S1ailKlQlQ1GgYoVtsSJdFKHqm7JSpQyFaqywShQscKWOJFO6lDVLVmJUqZCVTYYBSpW2BIn0kkdqrolK1HKVKjKBqNAxQpb4kQ6qUNVt2QlSpkKVdlgFKhYYUucSCd1qOqWrEQpU6EqG4wCFStsiRPppA5V3ZKVKGUqVGWDUaBihS1xIp3UoapbshKlTIWqbDAKVKywJU6kkzpUdUtWopSpUJUNRoGKFbbEiXRSh6puyUqUMhWqssEoULHCljiRTupQ1S1ZiVKmQlU2GAUqVtgSJ9JJHaq6JStRylSoygajQMUKW+JEOqlDVbdkJUqZClXZYBSoWGFLnEgndajqlqxEKVOhKhuMAhUrbIkT6aQOVd2SlShlKlRlg1GgYoUtcSKd1KGqW7ISpUyFqmwwClSssCVOpJM6VHVLVqKUqRDKMtDEgJIzmkMxuBw0CLOYoPltdVk6u+WoMfgeNE6d5dJZHATEk2c7ls6q1eLSnJWucs9s62baMEUU+ugtPKr0VuyUtDmZNkwRhS2bnowqvRU7JW1Opg1TRKE32MKjSm/FTkmbk2nDFFHYsunJqNJbsVPS5mTaMEUUeoMtPKr0VuyUtDmZNkwRhS2bnowqvRU7JW1Opg1TRKE32MKjSm/FTkmbk2nDFFHYsunJqNJbsVPS5mTaMEUUeoMtPKr0VuyUtDmZNkwRhS2bnowqvRU7JW1Opg1TRKE32MKjSm/FTkmbk2nDFFHYsunJqNJbsVPS5mTaMEUUeoMtPKr0VuyUtDmZNkwRhS2bnowqvRU7JW1Opg1TRKE32MKjSm/FTkmbk2nDFFHYsunJqNJbsVPS5mTaMEUUeoMtPKr0VuyUtDmZNkwRhS2bnowqvRU7JW1Opg1TRKE32MKjSm/FTkmbk2nDFFHYsunJqNJbsVPS5mTaMEUUeoMtPKr0VuyUtDmZNkwRhS2bnowqvRU7JW1Opg1TRKE32MKjSm/FTkmbk2nDFFHYsunJqNJbsVPS5mTaMEUUeoMtPKr0VuyUtDmZNkwRhS2bnowqvRU7JW1Opg1TRKE32MKjSm/FTkmbk2nDFFHYsunJqFIq+oGmnj7LpbMyy4nls7JHkwNMGWjiExU8gXb8zeOQLhNi4NoH4LrG1aXv0Kijuj2W2zI1iyOIURSloDxChmq/+h95oeY/KwpavLSkxHKilMLIbf+aVBCjnJryCBlq+avlD3mhlj8rCrX8xZpBa4qSKrlRln9NKohRWcF6CJQx1Pqn1j/IC7X+saJQ659YM5S1h1IKo07716SCGOXUlEfIUOuff6X+GY7P8clyWe7P1GWzHGim/76tRuEwoGZqmNrf4CAgft4EM5rjxoqL/Y+63/PkAvRBaO53CvlDqK2NwEhM643YrnRP3SVlzY/nVfvqN4Ut72CfVfwQe/V/sRG75r9a/tB+sAmp9Q980Ou4Z1ed9KhhGFmd6LQjWuv/Wv/W9ieWj9r+5I/bsc6t/b/a/tT2V5vO7q2rb1C7ayhXoY+BMvYf7P/Hw4DwaRMZaOIQICyh7evDQUCAQ3RGMx4EhKWzmNHMp852v/jyViKlmnJ+BHKPQtNVBWOUSCE2wpBSuQulmmpXoamqgjFKpBAbYUip3IVSTbWr0FRVwRglUoiNMKRU7kKpptpVaKqqYIwSKcRGGFIqd6FUU+0qNFVVMEaJFGIjDCmVu1CqqXYVmqoqGKNECrERhpTKXSjVVLsKTVUVjFEihdgIQ0rlLpRqql2FpqoKxiiRQmyEIaVyF0o11a5CU1UFY5RIITbCkFK5C6WaalehqaqCMUqkEBthSKnchVJNtavQVFXBGCVSiI0wpFTuQqmm2lVoqqpgjBIpxEYYUip3oVRT7So0VVUwRokUYiMMKZW7UKqpdhWaqioYo0QKsRGGlMpdKNVUuwpNVRWMUSKF2AhDSuUulGqqXYWmqgrGKJFCbIQhpXIXSjXVrkJTVQVjlEghNsKQUrkLpZpqV6GpqoIxSqQQG2FIqdyFUk21q9BUVcEYJVKIjTCkVO5CqabaVWiqqmCMEinERhhSKnehVFPtKjRVVTBGiRRiIwwplbtQqql2FZqqKhijRAqxEYaUyl0o1VS7Ck1VFYxRIoXYCENK5S6UaqpdhaaqCsYokUJshCGlchdKNdWuQlNVBWOUSCE2wpBSuQulmmpXoamqgjFKpBAbYUip3IVSTbWr0FRVwRglUoiNMKRU7kKpptpVaKqqYIwSKcRGGFIqd6GoGT9vghNnh2JwiRNnOcCUpbOyfBaDTn7ehJ81kcOAcCBQPwabE26+CVHlfYMkG00mwx130cVywUrxwBMMP/Y2q9CLRNTOccgteNU+Hk1+Nl1c2GJlXwqGn+p/n7tLdxV5LYkKXs1/Nf/V8lcWmulSsfRQRTD81Pqn1j+9WrCirk35quDV+rfWv7X+nW6NWwpj6SFPMPzU+rfWv//u+nf4iI0xwMQhQEOGygFAg7B8dhBmNweDxyW1xUBzAEtn+6cNhFvk8ybImXI1OaNaZiWCoHW+ZmA3No0K9lumYewOxOkZaohoe6raj22O+MQ7Znp+7ZB5hkvEUEOq/+EB742a/2r+S5+XfI3Vpz7X+PLWxp2eoYbU8lfLX61/kAe0k1Tr31r/1vo3DyCtYLSblaLW6BA6hmtrDDVE9DxVy18tf1r+NtwQnzcZyj2ZXCobYZzRxCznYCybL2Y0W5838ZnK5caERun0dXKstrbQXSJ7lsdzSopF6fR1VFcHCFlbsEyaomd53BQMidLp60Tlyf+cHC7/4RWoB+JODcbh/yD88O2ShUTLCzviEEQxf0mlIHopLeCiDxUp+DmSKXN3xACoar/6n3mBWYT/Nf/BD7X8pXoiZgp5252qm1yV1Pqn1r/MDSkAbbCvV+oS4LX9gV9q+1v7HywLLCa+TUFLW/tfb67+50477xxmnW22Ls8q1vL6+DoepdZ/AqN0+jo5Qltb6C6RPcvjOSXFonT6Oqqr95W1BcukKXqWx03BkChVHc5oDsL3M3kQEPdpcsAZB5pYSptnNKeFqVg+O8BPnADKjKZLMHfP0yPQ1KW7qo/FIgAxBc9MuMoURnZJ+Wh6kI3TMNQQHwF4Lz7VVKYwRi2pyFPJ673/F154Ieyzz77JNlJDy8yNuujqJx47/9EKr48epTQGSnA8cBoqinAAVReUGvBiWj4GcQwrRSHxBahOtV/9X/NfLX+1/qn1b21/tD9Q29/a/+CAsPa/3v79z7PPPjvMM888eNZ83jG8kf1/tVFaKi2WlI+hNZPTMNQQHwF4Lz7VVKYwRi2pyFNJrBmchqGGuO9oDsXAsg/f0xyKgWeczUxLZ7fFHk3szcQAMx4GhKWz48fCRk7Em/V4qaEOSRqFEERaGK7T7TmdQtGZbfFzBMNKjWpfmwpxUOEcENX/Uq/U/BffQVghapdzyzeGZNUWVmrU8lfLX+yq1foHHigKB4ha/9b6F/3a2v7U9kdWAFhbWlQUrt5o8U0/I6VGbX9r+/vfa3/5eRPuyxyCASZPmR2MQabs0S8MeeIAAEAASURBVMQyWjt1Nh4GFE+c5aCTM5o522YsZ/GElTndxG220hH6X4sCRLUiL1vNmNcWvIxi4jZb6Qj9r0UBolqRl61mzGsLXkYxcZutdIT+16IAUa3Iy1Yz5rUFL6OYuM1WOkL/a1GAqFbkZasZ89qCl1FM3GYrHaH/tShAVCvystWMeW3ByygmbrOVjtD/WhQgqhV52WrGvLbgZRQTt9lKR+h/LQoQ1Yq8bDVjXlvwMoqJ22ylI/S/FgWIakVetpoxry14GcXEbbbSEfpfiwJEtSIvW82Y1xa8jGLiNlvpCP2vRQGiWpGXrWbMawteRjFxm610hP7XogBRrcjLVjPmtQUvo5i4zVY6Qv9rUYCoVuRlqxnz2oKXUUzcZisdof+1KEBUK/Ky1Yx5bcHLKCZus5WO0P9aFCCqFXnZasa8tuBlFBO32UpH6H8tChDVirxsNWNeW/AyionbbKUj9L8WBYhqRV62mjGvLXgZxcRtttIR+l+LAkS1Ii9bzZjXFryMYuI2W+kI/a9FAaJakZetZsxrC15GMXGbrXSE/teiAFGtyMtWM+a1BS+jmLjNVjpC/2tRgKhW5GWrGfPagpdRTNxmKx2h/7UoQFQr8rLVjHltwcsoJm6zlY7Q/1oUIKoVedlqxry24GUUE7fZSkfofy0KENWKvGw1Y15b8DKKidtspSP0vxYFiGpFXraaMa8teBnFxG220hH6X4sCRLUiL1vNmNcWvIxi4jZb6Qj9r0UBolqRl61mzGsLXkYxcZutdIT+16IAUa3Iy1Yz5rUFL6OYuM1WOkL/a1GAqFbkZasZ89qCuyjDN8JhQBhU8rMm/HYml8ty6Sx5ffznHk2eNDttYAAnzk4JAx2HAekluAt0BkQqNF/XwXyejQYBRnqT23GRjqFv+YpbcmlF1P06WbUPZ4g/qv9r/qvlr9Y/rmKt9W9tf2r72+qT+PIR8dr/iLOMtf/l5sRcHzOi7tfJav8TzhB/1P7n/3L/c/iIkZjFxN7MoTwMKA42B6WZTfLyYUAD08IADwNKM5pdnWa9uFQlFQVOK3BXXZnckJQpHa3R2rBDxTOqfakSvUvMf9X/1lyYfwyp+U9c4fxh+aaFdKh4Ri1/tfxhmY7PEpZ9av1T65+0hMvyhyG1/hVXOH9YuWkhHSqeUevfWv/W+re2P6gziok91iH/nfaXhwFxoMmDgLiEdij++zjwTJ84wUBzDPZoTpVDgKZikDkNBwJN4OdN5JLTffg6rpQUDQfVGPK954iKKYya/jdKvNxwQ1TfMQSNNH8Zqv3oh/RwhFCPKVSNDLMP1X+ma4hqO4agkeYvg8av9rOfFFMYPeV/o8TLDTdE9R1D0Ejzl6H6P/qh5r+cTxRTqB7KMEq83HBDVNsxBI00fxlq/ot+qPkv5xPFFKqHMowSLzfcENV2DEEjzV+Gmv+iH2r+y/lEMYXqoQyjxMsNN0S1HUPQSPOXoea/6Iea/3I+UUyheijDKPFyww1RbccQNNL8Zfhv5L8NNxopS2QHY+nsUCyV5QFAgzGjKfs2AftGbTO6mcqls1gyO20qBpyY2bRTZ3VNCS7ebs0Quaf80+Z3pZWZYAmckZRstY9cE7ONei4/iOx6wUxBfQeYc1zyrSqVjlduR9rV/9X/Nf+VxcsKSypnCtr8rrQyEyxBrf/UPeZTMGr+q/kPHrCsYYhmkgTb/K60MhMsgTOiaUKh5j9xhnouP4jq/8ID5iDNO4C1/5VdJP5RJyVYglr+1D3qtbdQ/3v4hiPjbOYQfs5kqMxuxv2aOBhI92jKYUAy2MTyWcxqjk8zmrxfvXeF6gMPsyxjXk5cJB1ix3BO9XFVQ6GXKZ5lGVOZQpF0iB2j2rdGVX1GqB5S6GWKZ1nGVKZQJB1ix6j+r/5PnTrNM4SaQxR6meJZljGVKRRJh9gxav6r+a/mPy0uBrWEKDSBQ7IsY04sqEg6xI5Ry18tf7X8tYtNbf/gEY7XXU3R00fT06r1D/zY4UTHeJ3174Y4DIgzmJzR5EBTDwHiIJPLZ4s9mtOwR5Mzm7eMuyk+XX2k7nqUFWGnoJNTxhAKSvrB5y7SzvzSM9FOQSeni4Vqv/ofpS7tJOrMIO1M1KYtRqegk2PKGYFSzf/V/zX/+Vf+uXh09Cp6FqpOQSfHpatoLX+1/qn1f23/iilHrRwA25VImzbVTkEnx5QzAqXa/tf2/+3U/sdTZ7EvE4NKXTornzfhPs04oxm/o8kBZj+WzvZj6azu0ezy0adcWIi5UhVRx/ByYfOHUeDepNbSlvSKQ/J6jLIloZiYDYhjWq0UlRTIn2q/+r/mv1r+UBFgjKPVg1QMsXJAB8CqFChAo8tbdq+vfZWYVitFJQXyp9Y/tf6p9U+tf1AR1Pqn1r8xG7BZiAFNRG1/avtrr1/fQv2PDeTzJpzRxGymHACEz5vo4UCAcUYTBwD1N5jNlBlN/Y6me+C+StDOkxaO1wM1LYUurZLlKIc69ZlDNS2FLpWS5SiHOvWZQzUthS6VkuUohzr1mUM1LYUulZLlKIc69ZlDNS2FLpWS5SiHOvWZQzUthS6VkuUohzr1mUM1LYUulZLlKIc69ZlDNS2FLpWS5SiHOvWZQzUthS6VkuUohzr1mUM1LYUulZLlKIc69ZlDNS2FLpWS5SiHOvWZQzUthS6VkuUohzr1mUM1LYUulZLlKIc69ZlDNS2FLpWS5SiHOvWZQzUthS6VkuUohzr1mUM1LYUulZLlKIc69ZlDNS2FLpWS5SiHOvWZQzUthS6VkuUohzr1mUM1LYUulZLlKIc69ZlDNS2FLpWS5SiHOvWZQzUthS6VkuUohzr1mUM1LYUulZLlKIc69ZlDNS2FLpWS5SiHOvWZQzUthS6VkuUohzr1mUM1LYUulZLlKIc69ZlDNS2FLpWS5SiHOvWZQzUthS6VkuUohzr1mUM1LYUulZLlKIc69eC/o8llszwMSL+jSSgDzf5pXDLLE2f70x7Nm5CGjatjej0MxDGoExpqiA1TM6fLbIK/aovhmD6yY1f7cIa+IqZfzE+GGCtznJr3peFeMzG7sEQifCc01JBqH45iacoeKfHkYQe8ZmJ3YYlE+E5oqCFmN3Oqfe8L5/jezu4VQfhOaKgh1f/was3/ZZnLuaMz95WavbOkSCQhl5qhhtT8V/NfLX/IA7lElHgqYQ54zcTuwhKJ8J3QUEPMbuZU+94XzvG9nd0rgvCd0FBDqv/h1Te6/R2OU2e5RFYGl+nk2T45eZY8nDq71dbbNv2Y0RzAktl+DDT7BwbCBO7RdEEfmUKKFFfo1Fuo1/C4quG7L1gvoCvUumv0dlQ3fU05Qq/hcdWq9qv/a/6r5a+ztsg1RK1/ejVU3WpU9VunR7tp1/q31r+1/q31b2dtofWI1hoKyVdcoep2Qq/hcdWs9U+tf2r983rrH85oxoN/eBhQ/JbmEJnV7JPZTXzeBN/R7J8apnJWEwNO/t8y/iaUQnYtGFLhtDJqSBTP4K/FBlKsRy/smFa1X/iFzva+mUHn+9jV/zX/oYhrKbd8JdnL57GEG8uQGc98Nf/l0gs31vqv5r9a/rQa8fWMr2M8n7pepnH/dWixgdTyV8tfLX9adnw5s1KSy5uxDNGIMwQtNpBa/t4+5W/4hhhocm8m92jy9FkOMmWvpp06i4HmNBwCVCydHdtZnbcyht+nGjNP/JVcp6hAvDFCdzYXaGqoQu882qEBhs+Y1T4yaXJq9JXzmKICq/9r/qvlr9Y/vq7VCsLzSrxDA4xa/+aOQW1/avtT299YZ8S6wtUYigqs/Y/a/6j9j7d7/2OjESNw+M8QDDQxo8mTZocODYP6eDjQICydxWm0W209GgPNfpnRHOCMJgact/A7mr4lLfsgQnWrPrJaUdNMh616HHq2imO1n1vy7EHDOvxlEiLqV4VJqKRC06v+7/BnzX81/2lPsihbkejIL4WOFjCFtfyJB9QdCmv9A7fELkhHfqr1T61/av1T1Kqe6CgvXmj1ilU0UaqkQtOr/Z8Of9b6p9Y/M1D/lEtnB2FWc5bQNzgum42fNxmFgeZA/H5mP5bQctA5/uZxNgPZIMP1JYNWPotCXZZhE7WUW6SoCa+LwLOq/er/mv+0M6rdUitlhvgykwuXiV2T2uJ1RMyvKahZy18tf7X81fIndQF+yjfz5MbQUY20GC1SIgmvi8Czav1T659a/9T6hxWGrxdirZN/O2QtRouUiMLrIvCsWv/8a/XPBtijye9nDuKMJpfM9mF2cyho+Y4mZjRHYUZzKpfNcrCJ72jye5oyo5kfRXqa3v29WZodojZ+/XqrFK33bGnbhqc9Xu2LB7q4pPo/OsV+a/7r7B32fFvZzlCe9ngtf7X8wQNdsoQyowi/tfzV8tcendb6B3mi7RTWKO0C5WmPS+3TqS7sqGe/tfzV8tfOarX81fL3b65/uEdzCAaZfVgqO1QOAcJAk3s1sZx2CAacfVttM7rpxwBzAKfN8tRZzmjGgWbKnVJjWbUlVZnm28wtOakazICKrES73hwkbtY01p7Ur/bphdj2ZE+TVXo7yshPyhH1v9X/0Tc1//lcYXgtf/mtXa1/pLJA3qj1rxQQqV5jHdvyTBoWRFksTB634pWyFGS1/nFOyWitf2r9o7OWtf5t1TJSpcR6pSWp9Q+qkL7khVibRD/lmiVh4jj81Pq3wzVk/Dvq3/gdTezH5GFAcggQB5rx9NnBg+TzJvHU2f6GM5r4xAlmNO3zJjqi6Xp5JbMoBAVR6pHqEJORvgVpKBXfBvYnTJgQPvKxj4RmQO9a7x+Ni9wgbpJvmAbhH28fhUva3z9U+kQW+dRqwqDoM/DppoHkVXEZ32JSB2kyniikJJlsRN9e9rHzOFx04UVh+AYb6A32zD/qCvGVOuRtmv94e+1Q7z96pD7/lDOYIWr+pxOkbhRX0DWWQUhMPxRlqiA643WIq/9r/qvlDwWllj+rClht1Pqns/LswSnq1ILojNAhNqfX/GeuoNtmIP9x6SwHlpzVHIJZTNmXiZlMORgIA8++LbF0dgCzmPx+piydxRLaW8aNS0/HPRK5gtiH9/Yju4dQnzHEDSrSfPZU0udgyHGjuspIEWeAxcT2Ukoi3UNIBQaI/1v2V1x5xXDMCceEIbNiWlkGgLie1Kj0YUA5oPfPty0cYFKWBoq89Bjc/UNvEPR4xwyEqXgoIXyRIZqYYpI66KTgbWh/6tT+cMyRx4QH//Cg3b8h4lKf06LX6DDPjfoqI0Wcwfk/UsLlT9ROcXxU04hK/638J5eB66r2/ZPWB1Wfv/dKzLLqG1LEGWr+TwVdQXQLfqO3ks+860wjKtXy53OaOqqWP++VmGXUN6SIM9TypwXPe4eeiXTitoVUYAC/lj+f09RRtfx5r1hmYXmTQD8x1PL3WuVv+EYjsUyWp81ioMkBJ0+a1c+bgI9TZ7fFqbPTcOrstDCAzvrAwDQcBjRW3Ks/mi2VnlFYxHfPLqYTpfJbKGYrPdhZ4TWwIj4JBs1LvqoqFKMaf3uws8J0sBVXWiGccOpJZo5jPBlcEmH+xaCRA3Cx0c0QBpZRB3qCe2NMIxYC3g6jtwP5A/gnZPh32m+agfD008+Ep598Krz68qthzrnmCosstkhYaOGFojHaw/8bZV/u2N3/EQcfGR568CGzrUjhVnWSOuQNfv68hmo/5z/LpNX/KXvG3CG/RUbR3NvKP5n9L2NFsiQYqv+jH2r5l8xQ819sG3O5SNkDoCg/mf0vY0X8Wv6i32r9k/JPzB3yW2SUnL16sLPCa2BFfBIM1f/RD7X+l8wgeaTIKMk9AD3YWQHYhpjRlIN/ONDkgBMzm4NkwIlBJqB83oQzmlPl0yZYPgt4y/ixRSJxpg05ExZ1JWap0JvKF9nt7YmLlxUdM6Ey0/fWtL88BppfOvVLuBEsbsWgSCYTW3fIMj+ApbXPPvdsuOPW28Pvf/9geP6558Lf//5imBXfo5ln3nnD4u9YPLznfe8J713jfWHWWXB0ML5RE7OAZgSkwsT1GdGfosGBLHWnb58uFrWYhNRDxmr5n5/BuXnszeH/rv6/8Oc//Vn298aaCwt6kamWXnbpMHrMtmGDjTYIfVjS+u+2T3+pPWK8Tlo58pAjwkN/KAeaURa1Ot9ekZ9CVlROhq37j/azeHpYTvZ/M//X+485lbm05j+W0h4hZ5ROhVr+kIngOfiotr9anjqzSTdOzla1/NX6p9Y/tf7tVkuAlyuKToXa/rxm+yMzmjz8BwPMwZjJ5PJZjgUGgTdk8FBdOsu9mfEgIBlo2nc06fPuWXN6z0Uemj6urtFTbICeDac83Le+/RVWXiGclGY0edcSZEDIjgMaP3QgnnriqfD9S78bbp1wWxjAHlm6zHQ1SuLNM888YcwOo8OW224VZpt1tiRtAYuMlPrifGKRZss+ZRK8Usv/Knr+uRfC6Sd/Jfzh938Iiy22WBgzZkxYY401wgILLBCew+D49ttvD9dcfU14+pmnw2qrvScccMh+YZ755i3v6XXY53XyWrgntd1sHKkzmnb/SZmRikAFpALwds9/4qzi3knU+6/Pv+b/Wv5r/Vfr/9iedjYRaCPY0HZvQLQF6YgmDDYvGiQNJRTW9qe2P7X9eTu1P/IdTV06S4ils/wfhFNo43c0t8HSWcxQ9fMTJ1g624+lsxPc0tlUJaQaIlcQUv+UQq1FAKNAxQpNoWA4wqGqW7ISpUyFqmwwClSssCVOpJM6VHVLVqKUqVCVDUYBf1cqls5yiSwGSGzdMMnYYF/snRiYnXXGOeHVV16V2IstvnjYYvPNw7sxSFscy1D/8c/J4a9//WsYP358+NVtt0LvH5LGMu9cNhxw0P5hiWFLmFVF+jCQa2CDtnDek1u6WtqPM9W4Sl4Pg0NZEQ5COu4Mo/D3558PXzzimPDkE0+GAz53YDjqyCPD/PPPLzOaTz/9dFh44YUxfT4IA85nwnHHnRDO+PrXw7AllwhfPOnYMO+888DA67PPC8S5VrhsDtB5vfAl3/SncOQhWDorM5rZ/6IGedYCEcUpliMcmoSlqlKqp1CVDUaBihW2xIl0UoeqbslKlDIVqrLBKFCxwpY4kU7qUNUtWYlSpkJVNhgFKlbYEifSSR2quiUrUcpUqMoGo0DFClviRDqpQ1W3ZCVKmQpV2WAUqFhhS5xIJ3Wo6pasRClToSobjAIVK2yJE+mkDlXdkpUoZSpUZYNRoGKFLXEindShqluyEqVMhapsMApUrLAlTqSTOlR1S1ailKlQlQ1GgYoVtsSJdFKHqm7JSpQyFaqywShQscKWOJFO6lDVLVmJUqZCVTYYBSpW2BIn0kkdqrolK1HKVKjKBqNAxQpb4kQ6qUNVt2QlSpkKVdlgFKhYYUucSCd1qOqWrEQpU6EqG4wCFStsiRPppA5V3ZKVKGUqVGWDUaBihS1xIp3UoapbshKlTIWqbDAKVKywJU6kkzpUdUtWopSpUJUNRoGKFbbEiXRSh6puyUqUMhWqssEoULHCljiRTupQ1S1ZiVKmQlU2GAUqVtgSJ9JJHaq6JStRylSoygajQMUKW+JEOqlDVbdkJUqZClXZYBSoWGFLnEgndajqlqxEKVOhKhuMAhUrbIkT6aQOVd2SlShlKoSyDDQxg8kZzaEYXA4ahFlM0Py2piyd3XLUGIx3puLTJvotzS5LZ9VqcWnOSle5Z7Z1M22YIgp99BYeVXordkranEwbpojClk1PRpXeil6yAgaaJ516IqL7IU/UuO6n14YLL7gEA7X+sMQ7lgjHn3h8+MAuHwhzzDmHNyc4B1d//dvfwmmnnRbOPvvsMGXy5DDv/POGo44+Kiyz3LJxIJVMSOo6siKhA6QuMA5FoUS9uMLWRmVMgvOrGNphaXV/OOnYk8L9994fzjn33PDJvT6Rlu+GcNRRR4XTTz89nHDCCeGggw6SpJjgmWeeGQ7Y/wAs+V0tHPnFo5D5mGK6yAT/Vfu8PLkVQAYOWbmcjIP2OLsZsHQ2DjSpp7cvyhLTc7KGYYoojBG7/kaV3oqdkjYn04YporCrZX83vRU7JW1Opg1TRGG139MD0UW9HdUpaXMybZgiCnta19LcW7FT0uZk2jBFFFb7PT0QXdTbUZ2SNifThimisKf1+vyji3o7qlPS5mTaMEUUVv/39EB0UW9HdUranEwbpojCntZr/o8u6u2oTkmbk2nDFFFY/d/TA9FFvR3VKWlzMm2YIgp7Wn9z5n8/0NTTZ7l0Vg4IwvJZ2aM5DQMdGWhiMMH9muNvHofb5B0zpIEBp5ASqr340idKKYyx278mFcQop6Y8Qoa3tv040Dwp3gp+ZZYRA6Q7br0jnHbyabI3c8TGI8IPr/hhWGghHqIz/fvH+Tvhtl/dGnbZeWcZeM6PJasnnHJ8WGSRhRGTi0k1vpksELXPdOKGUfdcRVPjO/9jZnP8jePD1792ZjjocweFU79yamFphx13CD++6sfhE3vtFS44/zwmLCnx26z7779/+MY3vhE+d9jnwnobrGf3P6P2w4C7TgyIufrWDhmSLNJgoHkUZjR56my0LxfR+tG7i24yymkpj5BBEsdjcfZT8qoZ9ZRSGLntX5MKYpRTUx4hQ7UvZaL637KCZm/NKTGfKKUwctu/JhXEKKemPEKGmv9q/kNeqOXPikItf7Fm0JqipEpulOVfkwpiVFaw/gtlDLX+qfUP8kKtf6wovBnrn+EbjYjLZbk/U5fNcqCZ/vu2GoXPmzRTMWPV4CCgqWEals7eMm6sFHH/061KkAKgFYHevYskp6XK0kYOb9yOOpdvenf4XUJA36r2+XmTL2FGU8ZJLCzww1///JdwxKFHYRnsK2GzTTYNV1/z4zD77HOWN9yi2vf/8MOPhI02Gh6ewDLWlVddKXzx+GPkaGEZaCb/8tudXFpKnrfP5yKzgWm01odPnzQNpzPJxy+uMw5Y40VQ/6D9Dg79U6bioKLfYxnsvOnqGjmwaNKkieHan10Xxmy/XVh6qWFhrrnmFjnjcd/myiutGOZdaMFw0sknyCzojNpnYvn+FaMvdagZeUfCpw/hICUNtBOX1v7v5r96/7Gj8r9a/9TnX58/a8+a//83+x+1/NfyX8t/rf/e6Po/HgaEE2dloIlDgLCElgeWync1dUYzHgSEpbOY0cynzmqHXrvtvaFqpvELt85xHJODKmROgRViIwwpdLsRqql2FZquKhijRAqxEYaUyl0o1VS7CqkqM5qn4NRZDOq0yvvy8SeHu++8Kyyz7LLhV7/6VVh4kUVEJklrYm5o1cWksG765S/DlluNwkuCKWGf/T8bNho5EnYw+OJAsfA/CGcfRLqWmLKZJAmCcVk0qcfwNA4r+swnPxsOxL7M079yuvD40z91anjf+1cPv3/w9zLDyAHq2uusKYcaeft7feKT4eJLLgpnn39WmG/B+RBzxuzzKng1/qJJx6ExhsS8NzCOOPio8PCDD9b8B194/7tHSS92BPoyPmkgRhjSod9mqKbme4WmpwrGKJFCbIQhpXIXSjXVrkJTVQVjlEghNsKQUrkLpZpqV6GpqoIxSqQQG2FIqdyFUk21q9BUVcEYJVKIjTCkVO5CqabaVWiqqmCMEinERhhSKnehVFPtKjRVVTBGiRRiIwwplbtQqql2FZqqKhijRAqxEYaUyl0o1VS7Ck1VFYxRIoXYCENK5S6UaqpdhaaqCsYokUJshCGlchdKNdWuQlNVBWOUSCE2wpBSuQulmmpXoamqgjFKpBAbYUip3IVSTbWr0FRVwRglUoiNMKRU7kKpptpVaKqqYIwSKcRGGFIqd6FUU+0qNFVVMEaJFGIjDCmVu1CqqXYVmqoqGKNECrERhpTKXSjVVLsKTVUVjFEihdgIQ0rlLpRqql2FpqoKxiiRQmyEIaVyF0o11a5CU1UFY5RIITbCkFK5C6WaalehqaqCMUqkEBthSKnchVJNtavQVFXBGCVSiI0wpFTuQlEzft4EBwANxeASJ85ygClLZ2X5LAadW209Gt/RxNJZHgaE/34MNifcfBOiWtcz9T2T4Y676GK5YOULFgw/nNjLqRfKpa0kiimkdN5i9ldYaXns0cRAE4F38OgjE8OhBx0mxFVXXhm232EHkelPca+JWfCK+2/Cnnt+PFx44YVhyaWWDF8541Q83CGaVHQy9ZO3BcOPfryYz0DnBCUSGJI8rxQjFZnZxAjujtvuDKeedEq4+ic/CaNHjxYZ9adMmRyWWWbZ8DfsHaUJDvaWW3758NBD/hMjTbj44kvCRz/60XDsl44Lq6yy8gzbl1vANfFgI50NtTzEm2KA/aMOPiI8+IeHI22/VOCdRv/zGi2ucMufqJ3jWLyUMztHsWX8TiqnJRh+qn19Ir28lX1W/Z/ybc1/yApaQcXy3Jl7unFyXqrlDx6s9U+tf1F8epWgWFpyman1b61/izxR9D+71bdtXs5LguGn9n/efuVv+IiNMcDEIUBDhsoBQByHDMLs5mDwePpsMdAcwNLZfnxe4xb5vAkyjNRGOaPkSidmJs1zmoF61l7aSWrnwQ7a2TLUENH21FvB/gpYNnrSqSfg2mPtfvEFF+H7kz8L66y7drjllltkPTNvbCpmB28Zf3OY9OhjYdiwYWH4BsPD7HPMDkkT/omTZ8eNHRv+ggHdMssuE4avv0GYBd/S5P0/8sjDYdV3rxamYtB30mknhuVWWKH1GPgQ03CSl4A4MrdKhCEBolwuG+ddE59RwbnhuhvCeWefH+64446w5lprWfq8rnfi9Nu//e2JGAH6yy/XHmiGcN1114ZRo7YOBx1+UFhv/XWjjRmwnzKiAF4uo3LGDltA0+xr5B15GA4D+r0f5PL6GSRWRKf76/QMNURieuqtkP/i7fqrnp4DnJ6hhtT7hwe8N+rzL8ufVQwdWcx7rUPoGE7PUENEz1PV/9X/bAckT/iM4XJURKcrdNpOz1BDav6DB7w3avmr5a+Wv1r/sE7YcMONMZvJPZmYzZR9mTqjyc+cYAVjMaPZ+ryJr1RcbZzQKJ2+To7V1ha6S2TP8nhOSbEonb6O6moFmbUFy6QpepbHTcGQKJ2+Tlw6+yV8R5NDPY6MDtr3oPD4438OJ59ySjj04ENQUwXZx7jTTjuFsRhMSgBvNQwef3L11WFWDCjHjNku3HXXr0WXNf2666wTrvrJj8Niiy6GPbUDYZ211w533X1X2P1Du4cddi5nSHnnXKgah5oR5zXzH1sz5e2SdBDJQCBg5UFE3jwBjr8JBwF99eth3Lhx2Be6EdUQmjB58hRZ/vtEmtFkHBloPlwO9n581VVhhx13DEccfVhYY601xQbt/Kv242gSMdJ1Rev5Xsim7Ah8R/Nh+bwJGWWgPQ6kYyLpPjNpyp7lcVMwJEqnr2PKyXLWFiyTpuhZHjcFQ6J0+jqmXO3DFfX559wiWCYto3iWx03BkCidvo4p1/wHV9T8l3OLYJm0jOJZHjcFQ6J0+jqmXPMfXFHzX84tgmXSMopnedwUDInS6euYcs1/cEXNfzm3CJZJyyie5XFTMCRKp69jym94/uOM5iB8P5MHAXGfpnxDUwacWEqbZzSnhalYPjvAT5wAyoymXaNupHW3ZKghph2RXnxKVabwtWK8te3LHs3TcOosRm08/OfTe34KM5T/DL/+9a/D6quvITe/zz77hrPO+kZYe+11wvHHH4dTf28O5553XjgXnxH54Q+vCN///uVhiy02C4ceelj40ZU/Clf/+Jpw0UUXhs023xTx+8LncBLsV796ehi56cjwGezVlBlMedXEIZhO+8VRGr05CDJZgpp2OcYqwOYykWJ8SgCC3X/v78Kxnz8mnH/++WEvnCyrj3AAB0fxPrbYYiscCvRCWHrppcPll1+B+1gT8ZhKDKeeeqpc+ylfPTks865lZth+XDQbh8qSrNwSqy18fEXuJV6xft7ELlAvoICa7xRGYUn5CG/t/OfvpLzT8o5Lyseq9996peGyVy+v9eLTrypTWD4V73mVVPt8Veb8ZaghLbf14lNNZQrVy77G8snV/F/zX81/tfy5+sJQQ3yF4eqYFltIjaMw6pSUj1frn1r/vPnrn/x5k6EYWPbhe5pDMfCMs5lp6ey22KOJvZkYYMbDgLB0dvxY5PTeWV+LQamhBSJJCyGItDBbl1toGh12LJ4hWbWFlRpvTvscaPLUWe53fO7558OnP7a3jPgnTfpjWGKJJWWf43JYbvr444+Hn/3sZ2EUDvfhyb8vv/JSmAMn0c4///zhFQxQ77v33vDu1VaD/hTMJE4Oc889tz2hr3zlK+Hggw8O719r9XDk0UfCS/Q3AMZfBPwOJu1jhBf4WRGOQfMANCnGNbWIACHlQoui2Pv4Hh8Pm222WbjmmmtkcMcUUkx8WmWR8PTTT4eVV1kl3H/f/fF7mWofD3yTkRuHe+75bTjr22eHWYbOOsP2aUuD2iTtcVI8yfdhXTpbCEH8j+a/6Ld6//X5x3L9v1b/1vyfaspa/8X2EFVhbP9izmi3IrlRKRoQVS5gqfHm7H/EC671f63/a/0v/eFa/t+Q+o+fN+G+zCEYYA7BKbODMciUPZqY1STtls7GE2c56OSMZq42M1bUsiTKmtbEbbbSEfpfi9KRWLaaMa8tuCbcErTZSnvLystRS062mrGsm7Ayiok9m3s0T8RAk4O9P//lb+HAvffH3ss5gP81zD/fvOGll14KSy21VHjhhRfC3XffHd7//vdLOrT6ysuvYkA5lzSQzzz9bFhwwQXMRlIS2QUXfDN88pN7YaC3cjjuy8e5ZxfVeT20j/k/jDXj/chBP+Dl4K+aj5bvkXiu6wDnRMM5Xzsn3Dx2XJhw6wQs3V03RktRFllkUQw0nwqrYqB57333hT5sAI5D1CDLbUdusknYfPNNwic++6mZst+gZ9DHjhKvNwFeQB4LR+ZRhxyJw4AekrtS+9TTO4vQ/1KqQbUinZ96xlTTYBmlJ1vVvGXlWSS7ysjJVjOWdRPWmYgI2mylI/S/PkXVirxsNWNeu6uhpFCmVP2v/vCeV172acnJXs9Y1u3h6B5sTbnaZ/XhveA9ql6KvOz1jHltwcsoJm6zlY7Q/1oUIKoVedlqxry24GUUE7fZSkfofy0KENWKvGw1Y15b8DKKidtspSP0vxYFiGpFXraaMa8teBnFxG220hH6X4sCRLUiL1vNmNcWvIxi4jZb6Qj9r0UBolqRl61mzGsLXkYxcZutdIT+16IAUa3Iy1Yz5rUFL6OYuM1WOkL/a1GAqFbkZasZ89qCl1FM3GYrHaH/tShAVCvystWMeW3ByygmbrOVjtD/WhQgqhV52WrGvLbgZRQTt9lKR+h/LQoQ1Yq8bDVjXlvwMoqJ22ylI/S/FgWIakVetpoxry14GcXEbbbSEfpfiwJEtSIvW82Y1xa8jGLiNlvpCP2vRQGiWpGXrWbMawteRjFxm610hP7XogBRrcjLVjPmtQV3UTijyb2Z/KwJv53J5bI8dZa8Pv5zjyZPmuVev358JmOg4zAgvQR3gc6ASIVG177g81LA0BmyjqvMDH3LXtySSyui7tfJ3uz2V1gRhwF9hUtnQ/j78y+ET+35aZkRnDhxohz6Q9+vuOJKgfRl37007L7b7rJ8+cYbfon9kBuGJYctGZ599jkspx0Xhm+4UZiMb1mOu2ls2BQDt8FYE82ETzn5lHDY4YeHtbBk9dDP40RbGY1xeIhA/6dPZEaGXIoNBEUF1yZLUGUoCn2O0tI3OPlMOOR88q9/DYcccFhYCstjJ4yfEBZaeMGUXBMWWRgzms88E1ZZeZVw3/33YUaTBgO+8fm3sNGGI8Kf/vx4OP3Mr4RFFl1E+MXjAyc+f3YBORTubl9mZSGTuHJPwEjwR5h94Ujs0XzoQb8/lLKUnlju/vN2zn/1/uvzZ5GaXqj5n/Ufq5G4SEt8JXVK9FpE3a+T+fon1kPe01Cs9U9sT7xbWnjNfzX/1fJX659a/75125/hI0bKeGTwUB4GFAebg9LMJnl5RhPLNQd4GFCa0ezaaFqPJWWJosHV1sNlF5MbIu2yTEVZWhqvBV2UKPGMt479FVZeAafOnohb6Av/+Mc/wt5YOvvqq6+EWyZMCOuvv77c2he+8IVw/AnHhyUWf0f49N57h/uw/PSKy38QTv/q1zAA/WM488wzw3LLvSt8DJ8yuRXxfvazn4aL8MmQD+/xIWnE99l3H+zxPCtsutmmYe99PyXDNRlbmssSwg6nLJ2N/osPg5eQOuNUk8BeFxXjCFXYoG+6cVw498xzwhprrI69oleFpZYcJlE/+alPhhdffDEsiaXAp55yMga2g8NjkybJIUb3P3B/+Mx+e4eNNx0pujNrn0PMXAzz829wibwtBhlo/gHf0QRHeO37p5LwTEBO99Ch4hnZvhm3VNx1WhRDqn1xhfOH+a2FdKh4RvW/5HHvEnNfzX+1/Nf6r9b/qBCsfjCktj/iCucPqzdbSIeKZ9T2p7Y/XGWHPKOdT8s+/5vtLw8D4sQXDwLiEtqh+O8DPTh94gQDzTHYozlVZtGmYpA5DQcCTeDnTRDMj4YI20uKiotqDNn3OaJiCqOm/40SLzfcENV3DEEjzV+GN5N9Lp39Ej47wrk6zhIejm89Tnz4j+Hoo78QjjvuWLneyTgcaJ99PhsuvvTSMHXyFDlpdtfddwtnnX12aPoHcADPJzCwuzJMxednZptl1rAXlsmehn2Zswyd5f+z9xUAWxTb3/MiYIAdqGCLXdhKq4CUgYrYca/dce1r67XA7i7sblERwRa7AwwUFAMUDOKd7/c7s2f2zD7Pg/B+ev9X3IF3T87Mzpkz8+zsxEp9rbraKu799953u+yxm+vRuwdygiVkuWm+XFbmCsEOlsqsFNeestuAbnitGCZAcbvUbYQ38l4GnTy51ruH733Q3XjdjW4e7B09+sij3HaYgW2x8ELyFoP+8xVmPm+4/jrXv/8ALP39ye20286ux2bd8WIfy2n/P/PPJzKREMuH++OtaYs/GktnP8TSWfJDyEurmELVyGGQWHnEI6LahiFooHllKPMPdrDephZTqBo5zG2o9ou6EVFtwxA00LwyaPwy/9xOiikMlrLXILHyiEdE9Q1D0EDzylDaP9ih9L/cTxRTqBbKYZBYecQjotqGIWigeWUo/S/YofS/3E8UU6gWymGQWHnEI6LahiFooHllKP0v2KH0v9xPFFOoFsphkFh5xCOi2oYhaKB5Zfi/8L/2HTrLEtlZsHS2CZbK8gCgWTCjKfs2uUeze8/efjKXzmLJ7FR8y5EH0cRTZ3VNC24+Fi0iUqb8UuRXpZWZwRSYTLJkZ4L85dRZfN4kLKGqd3feeqe7beDtWC67vHvt1dfkW5k0Aw389Zgx7qvRX7mFF17YLbroouCBycEfwqgvv3TffP21a7loS1mCyqWuDPy2JWdGOeDqf1F/LLVFPLqa2JY6kjoA8DoZlWW8TAczgpINuHklk0Aw+UtyZGGw/Oorw93119zgRn81Gm8wGsse07nnmgezmuPdp599Kr7UarGWbpd/7OrWWHN1poSIf0z+vEdJKqSaX8E89gju0fwg8PSGVUNoZWYwBUgYyjSZhirlr9CJukCSuNVozSDNWLkVaZf5w6bBqDVtVNo/WCAaKDNIVVqZGUxB6f9qnuhTYJT+J9aIpomIGmla/mZ0JJ5GzmAKSv9T86jZyv6/bH9l/yOtITaNiGgjyWCRX5VWZgZTUPY/ah417Qz0P+3adw6zmY35OZMmMrsZ9mviYCDdo8lPmsg+TcxI1eNvaDajyfw0b4V6DxbmshyzcuIiqRAbhimUjasaCq1M8VyWYypTKJIKsWH8Sfnr500keWTH01kP3PtAsfell17i9t57n3CLDcifg75evXvJabUrrLSCO/k/J2G6Gg/mGHTx8Zylk0AWCJ3ADI/ulNQuv0oEanxApsHh6iScfDv8peHulZdecV9+9aX7ZeIvrlnzZth32tKtte46bs212rgm+AaoBI2PuOkgUXPhrQDPOlXGUYlAjW/yBxrLqIsVjvnX0ZjR/IjRK4Kko4lGqWEU8lcV1VCofAtzWY5ZOXGRVIgNo8w/qX+1n1pIofItzGU5ZuXERVIhNozS/qX9Tf+j/qMeolD5FuayHLNy4iKpEBtG6X+l/5X+V2w26XNAhTQw8laUY0VVkVSIDaNsf2X7K9tfsdlMd/trj8OAOIPJGU0ONPUQIA4yuXw22aM5FXs0ObM5bMhgOJ3J07RHwwVaKajkpDGEgpLHiCUMh6rLZ5b844wm7ZkZ5+pLrnKPPvqYmwezgDzFdSWc1pqEohGLdKZ82WWXun33w3czMfI79qRj3RptVpdBYKw6zZP6ihNC3zfC1ymxwZGDNAkqpyI73bA9M8hAsg1ykBjUGSc7xxYCDnj5XU75PidoqkmI+qAUJ/yD89ciHPuvY937mNGM+Ye7qLzi9v8u/ldZeHDK8pf1/zfpf0v/r2KBsv2X7b9s/3hOqPGkwMcbKyrSsUlVCio5UTlHoFQ+f/w9nv/zSjfYTFj/4dRZ7MvEoFKXzsrnTbhPM8xohu9ocoA5BUtnp2DprO7RLM4yGVMF1LSqgBoGNZQUyAtZaN4ZX8UiCEI0QNPGa7xlsvraIYS0CikqKZCX/37+y+MwoNPOwtJZFhpl42dFJv40wR135HHuSyyHbb3ssu6xxx53Sy21lNhresrPQd19997rtt22n5s0eZLr2Lmj2/fg/WQwyM5TB4Rq51APef7Kl7xoYwR+yoTp2vzrhLYjTlGU+2Q/LFGJEM+u/5f5H1uc0eRNyY0SmjvM+CqWW+cFDFv+0v9hkCpv+ay9xL7BdPQ8YJlDUElJgbyQ9fdq/2KOsvxl+yv7n7L9l/1f2f+Xv39/q+f/v8vvf1v5vAlnNDGbKQcA4fMmejgQYJjRxAFAUzxmM2VGU7+jaR8Z9YlRekorkB+PBl80WYUmoZRlKIMa9YahmpZCk0rKMpRBjXpNdLbZZnOLtmop/sYNsgcedoBbeJGF3ajPvnD/Pup4N2HiBOy7bOVuvf0W13bDtniuDw/qaTY5NRmfNzn/gvPdMcce44gv23pZd9zJx7lmzZq5Rx542A1+aoi5Fx1lhSrjQ35Y+MrhIB76NVmOrjDDKQODLLaKSMrbN+jIIIzrZhm5SpA0E37OCRivIQGhNZM/KP/Ro7CEFwcrTXeI+SMGb8gEFQWWoQxq1BuGaloKTSopy1AGNeoNQzUthSaVlGUogxr1hqGalkKTSsoylEGNesNQTUuhSSVlGcqgRr1hqKal0KSSsgxlUKPeMFTTUmhSSVmGMqhRbxiqaSk0qaQsQxnUqDcM1bQUmlRSlqEMatQbhmpaCk0qKctQBjXqDUM1LYUmlZRlKIMa9YahmpZCk0rKMpRBjXrDUE1LoUklZRnKoEa9YaimpdCkkrIMZVCj3jBU01JoUklZhjKoUW8YqmkpNKmkLEMZ1Kg3DNW0FJpUUpahDGrUG4ZqWgpNKinLUAY16g1DNS2FJpWUZSiDGvWGoZqWQpNKyjKUQY16w1BNS6FJJWUZyqBGvWGopqXQpJKyDGVQo94wVNNSaFJJWYYyqFF39juaXDbLsY5+R5NQBppTsEdzqpw4OyXbozkYaUzzyTvPQzI2uUc0IunERhYzl+ZJ5VgVaRWW6AvfCCMakf/T/HXgqGVba5013RHHHokTmhq5D9/9wJ39n3Pc+HHjcIJsE7fDjju6Qw85xK28ysoYcHImMQ+//vyLe+Kpp9wpp5zsXsYBQCzdyquu7A7912Fu7nmau1GjvnJHHXqU+zUbaMlALo9eiRUUlCxCjRj49ppLOJPF+7FB07G8BC8oKFmEGifw7TWX2Py5jDe47v9G/fMu9U4UWp6WIoVWM5NUYYlE+EYY0YiU+cNQ1q9ot9w6YsXCpYq0CksiCd8IIxqRmFfOKfO3tigYH2QVaRVWaX81lTFORCMSrZlzqlrYVIPVzNhVWKX9S/sH5zLOEdGIlP4HNyl/f9I+J/eOrH9JQBVpFZZEEb4RRjQipf/9F/yvHU6d5RJZGVxmJ8/Wycmz5OHU2U179PJTMKNZjyWzPBBoSn29e5Z7NE3QKlNIkeIKjXoBtRoWVzXu78MMG1siQnWN2g21mn5ISa9Ww+K5/M/MPxloZr3Ndjv2c1tus6UMJseMHu36n3me+2zEiFB2VFbrZZZxq666qlsEp8/+hs+dfIElti+//KL77tvv5KaZ5iabdnG7/mMXOXDnFwxC/33Uce7zTz/XQgU9dG/JEFB7u0QrEFHEipCpzmy8JmlAh0u/aL4srLveem6uOefEKcX17sMPPsS3QSe4NdZo44YMGQJfqneUj8GptJ9/Ye4pZqKp5DCKpjP/PCaxGBu3bm5SlGydW1xTmLn9L21RZfnVq7X2aZ8/s/2X9rc+Z3GtgdL+pf/NvL//Zfu3bd7iZfsPFij7v7L/++v3f5zRDAf/8DCg8C3NxjKrWSezm/i8Cb6jie8zTuasJgac/Bs2dDDaAB/eGbLOIfYREQniGbzG2EBkKWaMn0kERK2/fP4y0JRxUD4YmqVRI7fbHru7Lj264hjgOjdl0hQ36PFB7sH7HsInTr6OFolVAA7HeVz/vOLKK7i+220DuKKMBydOmOgGnNnfvfnGW1m8PJ84/irkbzTCAB9p0+IVgYpZCOPMEJPXV1971X333ffue/x169bVtWmzpnv4kYfdSSedjAN53nWDBj2Bw4nWcKO+GJWNA/NccwyijJjR/Fk2HVPa9CoHmlqCAJkP9Vngv4P/hVLn17L8Zf2X/l+2/7L/K/v/8vcv+y2Qn8fsl1FA/JUMHYU8bADVjjMgEmtGLzFlIKX9S/uLS4kTZZ4hIHoJJJZPRSuTiDN0ibGB/JH+1649Bprcm8k9mjx9loNM2asZT53FQHMqDgFKls4+XVmcwo3xIV8GCbHoYGgDVFQg3tiAnxuUdlEF4tVDhQYY1jB/lfzlcyPFIsIYmEx2W2y9pdu639auCZbNMnBG+ZOPPnYfYEnt2G+/xZLa8cKfd7553ZJLLOFWXH0V16LFgmJNvgXibOgFA853H3/4sdSFDrwkkpkZFNpekH8+QcmaobVDCPVUmAmFSLTMqHD48NfcNddc5V555RU38JZb3YYbrOvWW28Dd95557nPP/vcPf7EIHf6aadpsin8A/LP7iimq8WVgaY6j8C/t/+xov/O7a8sf1n/pf//fX9/y/Zftv+y/ZftPzzX6uOiPiAqXQkrNMD4K44//lv9X4eOHXH4T2MMNDGjyZNmMaZphO1/s+C7mo0w6IyfN+GMZj1nNDHgHMbvaNqRXGU94OG1svnmalpNCjOJkgplgBNcoCK9mSR/3Wupjk5nlWJnJlluheXdLrvt7JZdYVkMFjH8FEVYA2fmhM+FZFUh+jQcvmGJQ4CeePwJd8fA290EzGhWD2lGtfKvGjeLKiBNJqoPf3U4ZjO/c19//Q0GmOu5Xr16uQ8//FC+6bn00kthhnMtLKfN7+2Pzp83ooPLeFNAwoymOpjCTENJhX8D/wsD8rL8YgGtd4Vl/cMsoWXOrP2vlq+sf1hA/V5hZFBU+D2fSX5/y/rXX96y/qO7l/6fNYtoiLL9l/2fTGDJ7yQvM9j/p0tnG2FWsynOoQnLZsPnTbr39lPrw/czp2AJ7VQMOIc+MyR7/AgP7rrPMHfLeDsRqZAVGAVS4gmvisCyOHD4K+cf7r3GaC2zHnXarNnGddqkk1t9jdXcbHPMIYNMVgIPt+GAkzPOY8d+554fOsw9+fiTMsArDrRiLhmSy6Mk1lcR4TsvPmwkQdMBMwyQA4PX4a++6k4//TT34IMPyeDy1ttuc1defjlOwz3WLY/B88477WwGgn98/uIjSJbtQQNzqVeGdSLwC6REEV4VgWX91f1PbWPLlPCqCCyrLP9fu/9J6lqJDEo928q2fMX/4v2vFrlKMUOfUEVgWaX/l/7/V37+KP0/WMC26cQmVQSWVbb/sv2X7Z9P1tWfobUttcUeTX4/sxFnNLlktg6zm01Ac3aTM5rde/T2k7lsloNNfEeT39OUGc2KpG3zy5KvwtLbCSJc7Xyz3hUHAxwFVYRigpa2eBaxCut/LX+dpeSt0hZxOMfiCzMrS0ZzGe1iiy3mFmyxAD5ZMgeW0051P/70kxv1+RfuWww0wyKIiiGhJGJSzxINQAacRKcjf6pVpGPuVfN/fNAgLOddEn4z1X3xxRduh+13wEB4rDvwoAPcsssu5w44YH8mJeHPyN+aLuaDO6/3U0HSytn1b+5/f/f2V5YfjZft14a/Uf9b1n9Z/6X/28YPvGz/6BOLnSJtFJ4acmtZ2uKZRhWWphFEuJbPH+XvT9HVZsL2xz2ajTHIrMNS2SZyCBAGmtyrieW0jTHgrNu0Z28/BQNMnhTKPYKc0QwDzcw60mJis5EWpnbLuSknb6imQbIRV23c7PfytyahoTLezJF/WDpLS2UBxbIH60gxaRqIYQW5atHZScnAVNiZjMkoCpjvtczZKg9qqsyICDFOxk+AIag7jfx5ohSmWh0cBrOt/DZmyL8OBx1xXyoPlQqpZWmKRlD6M8sfZzQ1P0Ix/9/T/8QMZfmDE/wN+5+y/sv2X/Z/bAVl//93fP4q+7+y/yv7vz+//+PSWR4C1IiHAckhQBxohtNnefgp9miGU2eneM5ohkFD/LwJxwjTGeRZFroSJSEqE6gQk8HRB2JHlNFmgvznxCdAJkyckA12WKg8hCFYuGajMggzOlcTVh0GfTqPGePJiE3nGNWqjFhIs0qSuVZBV+P+BfNv1ry5m4DZ39CxZGaw5chwtRRLLiE63cznf1pEC8vyB2uU9Z95Ren/6DLFCDPd749t94qX7b9s/7RA2f9lLaLs/8r+r+z/pUeITSHpILJ2Mg3ApbMcWHJWszFmMWVfJmYy5WAgDDzrumHpbD1mMfn9TFk6iyW0w/AtxBDMT5LcQXiGjx0UlAK7hlBvDGKPigxDIjIzfUDLDeoqUz1C5Fgji8CuIQwJStwyf2tptXFpf2uV4C5qG1LEGUr/K9tf4gbiFbwEb8l8xrpO1AhKZf9jW5oaqux/rFWCy6htSBFnKPufsv9J3EC8gpfgLZnPWNeJGkGp7H9sS1NDlf2PtUpwGbUNKeIMZf9T9j+JG4hX8BK8xbt2HTpjmSxPm8VAkwNO7suUmU3wwMeMZi983mQqvqM51dVPxsmz2HM3lKfOmmBdz7CnG03iG98NCeitwp0TxTz5Guxc4XewJD4JBrSdEIJUromiytWYOT2jWJIsCYYy/2CH6Kpl/Zf+b9tF5h4ASfvJ2dONJfHL9hfsVvY/mf8E75Br4ii5e9Vg5wq/gyXxSTCU9g92KPt/cQbxkcRRMvMA1GDnCr+DJfFJMJT+F+xQ+p84g/hI4iiZeQBqsHOF38GS+CQYSv8LdphJ/K89ZjTl4B8ONDngxMxmIxlwYpAJKJ834YzmZPm0CZbPAg4b+nRmBLUFvCM70aXa3uZUOaVyJ6v29sjo5oqGmaG6eRY6Zf6mjVZaqoKTm7W0f+XbO2Ou3FCGmaGl/5Xtv+z/5Imj7H/L/jc+I1b2lBWcvFstf3/K3598Tds0HKVCFA8vKp//yudfdD5l/1PZRGpx/lv9r8xo8vAfDDBnwUwml89yoNkIvMazNNGls9ybGQ4CkoFm/I4mb796teYFqFJECjVUjZ7FBqj54CIP90ykagLTfstS5q/Wr2G+0v5imNL/yvaH7qVqD1P2P5lhqlqn7H9r/jJBUP7+lL8/aoGqzaf8/S1/f+EY5fNH+fwBN6jeRcA5RFBV+j/3+yvf0dSls4RYOsu/RjiFNnw9cdGhAABAAElEQVRHsyeWzmIWk99pnIqls1OwdPZZs3Q26xKzbjPvIMUIqVC7VsAgULHCqJAwDGFQ1U1ZGaVMhaocYRCoWGFBnJFGalDVTVkZpUyFqhxhEKhYYUGckUZqUNVNWRmlTIWqHGEQqFhhQZyRRmpQ1U1ZGaVMhaocYRCoWGFBnJFGalDVTVkZpUyFqhxhEKhYYUGckUZqUNVNWRmlTIWqHGEQqFhhQZyRRmpQ1U1ZGaVMhaocYRCoWGFBnJFGalDVTVkZpUyFqhxhEKhYYUGckUZqUNVNWRmlTIWqHGEQqFhhQZyRRmpQ1U1ZGaVMhaocYRCoWGFBnJFGalDVTVkZpUyFqhxhEKhYYUGckUZqUNVNWRmlTIWqHGEQqFhhQZyRRmpQ1U1ZGaVMhaocYRCoWGFBnJFGalDVTVkZpUyFqhxhEKhYYUGckUZqUNVNWRmlTIWqHGEQqFhhQZyRRmpQ1U1ZGaVMhaocYRCoWGFBnJFGalDVTVkZpUyFqhxhEKhYYUGckUZqUNVNWRmlTIWqHGEQqFhhQZyRRmpQ1U1ZGaVMhaocYRCoWGFBnJFGalDVTVkZpUyFqhxhEKhYYUGckUZqUNVNWRmlTIWqHGEQqFhhQZyRRmpQ1U1ZGaVMhaocYRCoWGFBnJFGalDVTVkZpUyFqhxhEKhYYUGckUZqUNVNWRmlTIWqHGEQqFhhQZyRRmpQ1U1ZGaVMhaocYRCoWGFBnJFGalDVTVkZpUyFqhxhEKhYYUGckUZqUNVNWRmlTIWqHGEQqFhhQZyRRmpQ1U1ZGaVMhVCWgSZmMDmj2QSDy0aNMIsJmt/WlKWz3bpv5uvrJ8v3GsO3NKssndVck1szuVSVW2ZRN6cjpohCG72AB5XaipWSIienI6aIwkKelgwqtRUrJUVOTkdMEYU2wwIeVGorVkqKnJyOmCIKC3laMqjUVqyUFDk5HTFFFNoMC3hQqa1YKSlycjpiiigs5GnJoFJbsVJS5OR0xBRRaDMs4EGltmKlpMjJ6YgporCQpyWDSm3FSkmRk9MRU0ShzbCAB5XaipWSIienI6aIwkKelgwqtRUrJUVOTkdMEYU2wwIeVGorVkqKnJyOmCIKC3laMqjUVqyUFDk5HTFFFNoMC3hQqa1YKSlycjpiiigs5GnJoFJbsVJS5OR0xBRRaDMs4EGltmKlpMjJ6YgporCQpyWDSm3FSkmRk9MRU0ShzbCAB5XaipWSIienI6aIwkKelgwqtRUrJUVOTkdMEYU2wwIeVGorVkqKnJyOmCIKC3laMqjUVqyUFDk5HTFFFNoMC3hQqa1YKSlycjpiiigs5GnJoFJbsVJS5OR0xBRRaDMs4EGltmKlpMjJ6YgporCQpyWDSm3FSkmRk9MRU0ShzbCAB5XaipWSIienI6aIwkKelgwqtRUrJUVOTkdMEYU2wwIeVGorVkqKnJyOmCIKC3laMqikinagqafPcumsHBCE5bOyR5MDzCnco4nvaHK/5tBnhiBdJsTAqVvgusbVpG/QoKO6Yc6XkStCjCNIpIye8ggZyvxL+8MXSv+LTUGbl7aU0E6UUhi4xWuUChIpo6Y8Qoay/ZXtD75Qtr/YFMr2F3oG7SlSKuUGWX6NUkEilSvERWGUMZT9T9n/wBfK/ic2hbL/CT1D2nsopTDoFK9RKkikjJryCBnK/md6+p92HTqG5bLcn6nLZjnQzP7qNu2Oz5v4yTgMyGOgOdlNxdLZYUOeFhPbi5rf8uQGtCLU+42Cxz6nOvlIeuEgACSm/Ub4Xameukkq/vxYXpm/2k1hwTql/Uv/K9sfGkXZ/yQHkZT9b/n7g+cnPkKVv7+wQa3jvmmfLNT4hYU0exAtn3/UVBGWz3/l82/5/B/6h5n99zccBoQTZ2WgiUOAsIS2rg4HAQE21hnNcBBQmNHMT52t3rXGXsQgqinnZ8CuCqOKKkRGiiTiSEQkVa5CqabmqzCqqkJkpEgijkREUuUqlGpqvgqjqipERook4khEJFWuQqmm5qswqqpCZKRIIo5ERFLlKpRqar4Ko6oqREaKJOJIRCRVrkKppuarMKqqQmSkSCKORERS5SqUamq+CqOqKkRGiiTiSEQkVa5CqabmqzCqqkJkpEgijkREUuUqlGpqvgqjqipERook4khEJFWuQqmm5qswqqpCZKRIIo5ERFLlKpRqar4Ko6oqREaKJOJIRCRVrkKppuarMKqqQmSkSCKORERS5SqUamq+CqOqKkRGiiTiSEQkVa5CqabmqzCqqkJkpEgijkREUuUqlGpqvgqjqipERook4khEJFWuQqmm5qswqqpCZKRIIo5ERFLlKpRqar4Ko6oqREaKJOJIRCRVrkKppuarMKqqQmSkSCKORERS5SqUamq+CqOqKkRGiiTiSEQkVa5CqabmqzCqqkJkpEgijkREUuUqlGpqvgqjqipERook4khEJFWuQqmm5qswqqpCZKRIIo5ERFLlKpRqar4Ko6oqREaKJOJIRCRVrkKppuarMKqqQmSkSCKORERS5SqUamq+CqOqKkRGiiTiSEQkVa5CqabmqzCqqkJkpEgijkREUuUqlGpqvgqjqipERook4khEJFWuQqmm5qswqqpCZKRIIo5ERFLlKhQ1w+dNcABQEwwuceIsB5iydFaWz2LQuWmP3viOJpbO8jAg/E3B8tlnnxmMqPK+U5INWWYZV5SiSs4JK4sHnmC4xNnMRC8QQTuPQ27CmwnzHzVqlHv22Wfdm2+95U499VRY/q9R/hdfetENf2W4m2+++Vy/fv2q1GZeexFD0Wak/t9+52334osvu0m//eL22WdfREYCMktXI7sKdm5LwWYw/3jfWifTmf9TTz3l3njzDbfKyiu7Ll26yl39WflrXquuvIrbpEuXggX+b8qf30SZv/alf1b957auhv317D9+3A9uyDND3csvvewOPuQgN//8C+R94nS2v9wSf73y/1X6/9zG08L+fPvX19e7J5960r3x2mtugw3burZt25ob+vPzN5lVQcv8y/4vPEuLJ+AyI88/dKjgQZkf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vnynCbDMpOQtQVfRlZixgTPPOBOvkbQnf/lkk2WgzKTkzbir6ErMOAExGuv477j9jnaxZyzWSqcppHGZ7r/f/u1WW72+ffjhR0TnFDF3Srbaaqt2iy23SGV6VJQvHZ120802bbfffvt2l112bRdeaOH2rF+clVIw0yRRdO2117TzLzC/2l95xRUqo+k555zTPnPZZ7YPPvhgkUrYovyOATOJire/7e3SVie09/39PpXIQ+n2da9bv33Na17d3nb7bcFKjuEzx3xG67o8OFHZTjvv1E6cOLG9++675RnT3Paiiy5qpQPd3nvPve0PfvQDecQz1J566qlqO/v62e1SSy3Vvk3K6ri1+D2hQOxH21123aUdHhpuP/3pT6t4oGlK1B7z6WPagw45yCTyMEj9Lx30ICszcfw3T/umHuNjj42IrVPE3LoSK6Z985vf3G666abt7rvt3i659JLtJb+5RJVyo90+7/nPa9/3vve166+/Qbvaqqu10rlLCQdmOtq+dfu3tgsusGB7v8QO/JyTT5HYIeeqN64yR7Fj/V9sscXaY445hppAY3nf/GY81kcfU/nlV1zeTps6rb3llpujffeHdSV51v944B/tm7d7c3v2uWeb4vLLJd91kO8tQVZmUvKWsqvoSsxYwRlnnqHnz+ptrg5czORXv/qV1PPX9Z3mmKpbWlcSTOWhZIs4D78/+MCD7dZv2Lr98GEf7iu9W96gTCWvYz5zTHvIwYdYPgNNzUKAGPH8e7HhmMluu+3Wrr322t3fUxoaP4aps2H5J514kuZ/wAEHtEstvVT7nve8J1hJ+fLwVuLLa9q3vOUt7dprrd0+/NBDlsOdd97RHnTQwRJLFmzvvOtOkwNsxza2++6a529+85tMr8wTPH5LGP1hvIGuoisx4wTmwfLXnjJN2vDr2nXW31D7k+hXbrz5lu1mW27dbrn1G9tm+sabqmK99Tdqp05br11LEtiGu56xNqcO0AmQjqxS7GL1jnKqrQgRZLJavrmmFzhnBegESEBWKXbV/+YK5x64SjdRqt74jKM0UacO0AlgRVYpdv+7/t9vv/e1Sy+zVHCJuAI3d5Pmn699+9vflvmTLlPh/0P730xu8A899FC96f3rX/5qpww302u+6lXtm960bfp9Ed18883t0nJTjA4ztiOPOLJdeJFF2ufLzWK2iXrzzTZrn7bo09ovfemLouo///DNMksvo/UFOcI38803XysjP1l2HcY5K0AngDFZpaPtw488ZP73astX7JhEZf8m///+qqv1Zu+Ms860okN5/57yH37oYckeR9bvf/sR7vhx87PwggtK5/9+UwOs/tLV22uvvTbInLMCTIJt3vCGdssttnR20PWX/73vfTc7/6uttlq7zjp44JvyCxkVe1E/61nPko7FxPY5z32uduhoMXv27PZVr3xVYDUb7PrLZxq4SE0piOXLNNH2aU97GqXtEUcc0S7+jGe0990bOp5QhHSj7YYbbtjKCKraHiw3g0susURUhvK/+rWvtbffdnt76aWX6sOGCy443/KVEbp2UVfO4x0/HvrIyGC7nXRcZPTYfoVlyINRGsrHfq3Xri1x5+35sSKRKNWUGfT4X0arte7KCGRmHNJlqZNexL/+9a/aBRacv33k0UdVDj+96z3v1pK222679m07S1sXuxtuvFHz/+EPfyh8kR9/F6mo99tvv1ZGq+PvlvOL2CFx9W1yfHYwmg123fMvo9DtZz7zmZCjmKhpzP/bp58uv2WofQzH2rc54wCdAPZklWI32t4ksRN5nnnmmaa2rMWESVT2BI6faUO6LHXKTMXYjcoDnF9o+bfffnteFjISE5/DMZ/6lNT7p7OILnXGATpBzE8TiVhGm9tPH/OpkL/wf/3rX9vTv/2tPE+RZzk8geNfa621pC7vEtNlqVNmKsaue/6zHyAmPoc93vEO6QhOzkwyxhkH6AQwJKsUu1T+/fff3z5dHuax/X/o0A/pNfj2O+5oZYRbH/7eJG1BXulrX/jCF1odffSxR1uZddBuLQ/y8HD3vvtCDELueDCwoDzMhg22DWXw7D3vljbWUz70KgbgJoJM9gT875IKzFInVsXYpeNHusJaBZnsKVQ++o1T11m3XRcdzekzWu1obrpluzk6mltpR1NGNDfc2I1oToMPCie4w3dQDf+ZHfMidXnlIsc56MzHB5kXqcslFznOQWc+Psi8SF0uuchxDjrz8UHmRepyyUWOc9CZjw8yL1KXSy5ynIPOfHyQeZG6XHKR4xx05uODzIvU5ZKLHOegMx8fZF6kLpdc5DgHnfnjwgPlxh03RNxuuP56vVAcfPDB7ayZF7X77LtPe9RRR7UYAXyD3KT//uqr1fSMM85od9x5x3Yz6bB99nOfbR+LT9eh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\" alt=\"Screenshot 2022-06-15 at 5.21.42 PM.png\"></p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[&nbsp;]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n</body>\n\n\n\n\n\n\n\n</html>\n"
  },
  {
    "path": "docs/docs/notebooks/Histogram.html",
    "content": "<!DOCTYPE html>\n<html>\n<head><meta charset=\"utf-8\" />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n<title>Histogram</title><script src=\"https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js\"></script>\n\n\n\n\n<style type=\"text/css\">\n    pre { line-height: 125%; }\ntd.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\nspan.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\ntd.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\nspan.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.highlight .hll { background-color: var(--jp-cell-editor-active-background) }\n.highlight { background: var(--jp-cell-editor-background); color: var(--jp-mirror-editor-variable-color) }\n.highlight .c { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment */\n.highlight .err { color: var(--jp-mirror-editor-error-color) } /* Error */\n.highlight .k { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword */\n.highlight .o { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator */\n.highlight .p { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation */\n.highlight .ch { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Hashbang */\n.highlight .cm { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Multiline */\n.highlight .cp { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Preproc */\n.highlight .cpf { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.PreprocFile */\n.highlight .c1 { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Single */\n.highlight .cs { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Special */\n.highlight .kc { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Constant */\n.highlight .kd { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Declaration */\n.highlight .kn { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Namespace */\n.highlight .kp { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Pseudo */\n.highlight .kr { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Reserved */\n.highlight .kt { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Type */\n.highlight .m { color: var(--jp-mirror-editor-number-color) } /* Literal.Number */\n.highlight .s { color: var(--jp-mirror-editor-string-color) } /* Literal.String */\n.highlight .ow { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator.Word */\n.highlight .pm { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation.Marker */\n.highlight .w { color: var(--jp-mirror-editor-variable-color) } /* Text.Whitespace */\n.highlight .mb { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Bin */\n.highlight .mf { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Float */\n.highlight .mh { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Hex */\n.highlight .mi { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer */\n.highlight .mo { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Oct */\n.highlight .sa { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Affix */\n.highlight .sb { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Backtick */\n.highlight .sc { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Char */\n.highlight .dl { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Delimiter */\n.highlight .sd { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Doc */\n.highlight .s2 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Double */\n.highlight .se { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Escape */\n.highlight .sh { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Heredoc */\n.highlight .si { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Interpol */\n.highlight .sx { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Other */\n.highlight .sr { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Regex */\n.highlight .s1 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Single */\n.highlight .ss { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Symbol */\n.highlight .il { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer.Long */\n  </style>\n\n\n\n<style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\n * Mozilla scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n[data-jp-theme-scrollbars='true'] {\n  scrollbar-color: rgb(var(--jp-scrollbar-thumb-color))\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar. These selectors\n * will match lower in the tree, and so will override the above */\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n  scrollbar-width: thin;\n}\n\n/*\n * Webkit scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-corner {\n  background: var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-thumb {\n  background: rgb(var(--jp-scrollbar-thumb-color));\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-right: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-bottom: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar */\n\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-corner,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-corner {\n  background-color: transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-thumb,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid transparent;\n  border-right: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid transparent;\n  border-bottom: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny::-webkit-scrollbar,\n.jp-scrollbar-tiny::-webkit-scrollbar-corner {\n  background-color: transparent;\n  height: 4px;\n  width: 4px;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:horizontal {\n  border-left: 0px solid transparent;\n  border-right: 0px solid transparent;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:vertical {\n  border-top: 0px solid transparent;\n  border-bottom: 0px solid transparent;\n}\n\n/*\n * Phosphor\n */\n\n.lm-ScrollBar[data-orientation='horizontal'] {\n  min-height: 16px;\n  max-height: 16px;\n  min-width: 45px;\n  border-top: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] {\n  min-width: 16px;\n  max-width: 16px;\n  min-height: 45px;\n  border-left: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar-button {\n  background-color: #f0f0f0;\n  background-position: center center;\n  min-height: 15px;\n  max-height: 15px;\n  min-width: 15px;\n  max-width: 15px;\n}\n\n.lm-ScrollBar-button:hover {\n  background-color: #dadada;\n}\n\n.lm-ScrollBar-button.lm-mod-active {\n  background-color: #cdcdcd;\n}\n\n.lm-ScrollBar-track {\n  background: #f0f0f0;\n}\n\n.lm-ScrollBar-thumb {\n  background: #cdcdcd;\n}\n\n.lm-ScrollBar-thumb:hover {\n  background: #bababa;\n}\n\n.lm-ScrollBar-thumb.lm-mod-active {\n  background: #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal'] .lm-ScrollBar-thumb {\n  height: 100%;\n  min-width: 15px;\n  border-left: 1px solid #a0a0a0;\n  border-right: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] .lm-ScrollBar-thumb {\n  width: 100%;\n  min-height: 15px;\n  border-top: 1px solid #a0a0a0;\n  border-bottom: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-left);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-right);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-up);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-down);\n  background-size: 17px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Widget, /* </DEPRECATED> */\n.lm-Widget {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  cursor: default;\n}\n\n\n/* <DEPRECATED> */ .p-Widget.p-mod-hidden, /* </DEPRECATED> */\n.lm-Widget.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-CommandPalette, /* </DEPRECATED> */\n.lm-CommandPalette {\n  display: flex;\n  flex-direction: column;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-search, /* </DEPRECATED> */\n.lm-CommandPalette-search {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-content, /* </DEPRECATED> */\n.lm-CommandPalette-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  min-height: 0;\n  overflow: auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-header, /* </DEPRECATED> */\n.lm-CommandPalette-header {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-item, /* </DEPRECATED> */\n.lm-CommandPalette-item {\n  display: flex;\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemIcon, /* </DEPRECATED> */\n.lm-CommandPalette-itemIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemContent, /* </DEPRECATED> */\n.lm-CommandPalette-itemContent {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemShortcut, /* </DEPRECATED> */\n.lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemLabel, /* </DEPRECATED> */\n.lm-CommandPalette-itemLabel {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.lm-close-icon {\n\tborder:1px solid transparent;\n  background-color: transparent;\n  position: absolute;\n\tz-index:1;\n\tright:3%;\n\ttop: 0;\n\tbottom: 0;\n\tmargin: auto;\n\tpadding: 7px 0;\n\tdisplay: none;\n\tvertical-align: middle;\n  outline: 0;\n  cursor: pointer;\n}\n.lm-close-icon:after {\n\tcontent: \"X\";\n\tdisplay: block;\n\twidth: 15px;\n\theight: 15px;\n\ttext-align: center;\n\tcolor:#000;\n\tfont-weight: normal;\n\tfont-size: 12px;\n\tcursor: pointer;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-DockPanel, /* </DEPRECATED> */\n.lm-DockPanel {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-widget, /* </DEPRECATED> */\n.lm-DockPanel-widget {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-tabBar, /* </DEPRECATED> */\n.lm-DockPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle, /* </DEPRECATED> */\n.lm-DockPanel-handle {\n  z-index: 2;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle:after, /* </DEPRECATED> */\n.lm-DockPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal'] {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical'] {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal']:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical']:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay, /* </DEPRECATED> */\n.lm-DockPanel-overlay {\n  z-index: 3;\n  box-sizing: border-box;\n  pointer-events: none;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-overlay.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Menu, /* </DEPRECATED> */\n.lm-Menu {\n  z-index: 10000;\n  position: absolute;\n  white-space: nowrap;\n  overflow-x: hidden;\n  overflow-y: auto;\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-content, /* </DEPRECATED> */\n.lm-Menu-content {\n  margin: 0;\n  padding: 0;\n  display: table;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-item, /* </DEPRECATED> */\n.lm-Menu-item {\n  display: table-row;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-item.p-mod-hidden,\n.p-Menu-item.p-mod-collapsed,\n/* </DEPRECATED> */\n.lm-Menu-item.lm-mod-hidden,\n.lm-Menu-item.lm-mod-collapsed {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-itemIcon,\n.p-Menu-itemSubmenuIcon,\n/* </DEPRECATED> */\n.lm-Menu-itemIcon,\n.lm-Menu-itemSubmenuIcon {\n  display: table-cell;\n  text-align: center;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemLabel, /* </DEPRECATED> */\n.lm-Menu-itemLabel {\n  display: table-cell;\n  text-align: left;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemShortcut, /* </DEPRECATED> */\n.lm-Menu-itemShortcut {\n  display: table-cell;\n  text-align: right;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-MenuBar, /* </DEPRECATED> */\n.lm-MenuBar {\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-MenuBar-content, /* </DEPRECATED> */\n.lm-MenuBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex-direction: row;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p--MenuBar-item, /* </DEPRECATED> */\n.lm-MenuBar-item {\n  box-sizing: border-box;\n}\n\n\n/* <DEPRECATED> */\n.p-MenuBar-itemIcon,\n.p-MenuBar-itemLabel,\n/* </DEPRECATED> */\n.lm-MenuBar-itemIcon,\n.lm-MenuBar-itemLabel {\n  display: inline-block;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-ScrollBar, /* </DEPRECATED> */\n.lm-ScrollBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='horizontal'] {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='vertical'] {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-button, /* </DEPRECATED> */\n.lm-ScrollBar-button {\n  box-sizing: border-box;\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-track, /* </DEPRECATED> */\n.lm-ScrollBar-track {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  flex: 1 1 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-thumb, /* </DEPRECATED> */\n.lm-ScrollBar-thumb {\n  box-sizing: border-box;\n  position: absolute;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-SplitPanel-child, /* </DEPRECATED> */\n.lm-SplitPanel-child {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle, /* </DEPRECATED> */\n.lm-SplitPanel-handle {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-SplitPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle:after, /* </DEPRECATED> */\n.lm-SplitPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabBar, /* </DEPRECATED> */\n.lm-TabBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='horizontal'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] {\n  flex-direction: row;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='vertical'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] {\n  flex-direction: column;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-content, /* </DEPRECATED> */\n.lm-TabBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex: 1 1 auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='horizontal'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] > .lm-TabBar-content {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='vertical'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] > .lm-TabBar-content {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar-tab {\n  display: flex;\n  flex-direction: row;\n  box-sizing: border-box;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar-tabIcon,\n.p-TabBar-tabCloseIcon,\n/* </DEPRECATED> */\n.lm-TabBar-tabIcon,\n.lm-TabBar-tabCloseIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tabLabel, /* </DEPRECATED> */\n.lm-TabBar-tabLabel {\n  flex: 1 1 auto;\n  overflow: hidden;\n  white-space: nowrap;\n}\n\n\n.lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab.p-mod-hidden, /* </DEPRECATED> */\n.lm-TabBar-tab.lm-mod-hidden {\n  display: none !important;\n}\n\n\n.lm-TabBar-addButton.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar.p-mod-dragging .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab {\n  position: relative;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='horizontal'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='horizontal'] .lm-TabBar-tab {\n  left: 0;\n  transition: left 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='vertical'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='vertical'] .lm-TabBar-tab {\n  top: 0;\n  transition: top 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging .p-TabBar-tab.p-mod-dragging,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab.lm-mod-dragging {\n  transition: none;\n}\n\n.lm-TabBar-tabLabel .lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n  background: inherit;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabPanel-tabBar, /* </DEPRECATED> */\n.lm-TabPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-TabPanel-stackedPanel, /* </DEPRECATED> */\n.lm-TabPanel-stackedPanel {\n  z-index: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n@charset \"UTF-8\";\nhtml{\n  -webkit-box-sizing:border-box;\n          box-sizing:border-box; }\n\n*,\n*::before,\n*::after{\n  -webkit-box-sizing:inherit;\n          box-sizing:inherit; }\n\nbody{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none;\n  color:#182026;\n  font-family:-apple-system, \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Open Sans\", \"Helvetica Neue\", \"Icons16\", sans-serif; }\n\np{\n  margin-bottom:10px;\n  margin-top:0; }\n\nsmall{\n  font-size:12px; }\n\nstrong{\n  font-weight:600; }\n\n::-moz-selection{\n  background:rgba(125, 188, 255, 0.6); }\n\n::selection{\n  background:rgba(125, 188, 255, 0.6); }\n.bp3-heading{\n  color:#182026;\n  font-weight:600;\n  margin:0 0 10px;\n  padding:0; }\n  .bp3-dark .bp3-heading{\n    color:#f5f8fa; }\n\nh1.bp3-heading, .bp3-running-text h1{\n  font-size:36px;\n  line-height:40px; }\n\nh2.bp3-heading, .bp3-running-text h2{\n  font-size:28px;\n  line-height:32px; }\n\nh3.bp3-heading, .bp3-running-text h3{\n  font-size:22px;\n  line-height:25px; }\n\nh4.bp3-heading, .bp3-running-text h4{\n  font-size:18px;\n  line-height:21px; }\n\nh5.bp3-heading, .bp3-running-text h5{\n  font-size:16px;\n  line-height:19px; }\n\nh6.bp3-heading, .bp3-running-text h6{\n  font-size:14px;\n  line-height:16px; }\n.bp3-ui-text{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none; }\n\n.bp3-monospace-text{\n  font-family:monospace;\n  text-transform:none; }\n\n.bp3-text-muted{\n  color:#5c7080; }\n  .bp3-dark .bp3-text-muted{\n    color:#a7b6c2; }\n\n.bp3-text-disabled{\n  color:rgba(92, 112, 128, 0.6); }\n  .bp3-dark .bp3-text-disabled{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-text-overflow-ellipsis{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal; }\n.bp3-running-text{\n  font-size:14px;\n  line-height:1.5; }\n  .bp3-running-text h1{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h1{\n      color:#f5f8fa; }\n  .bp3-running-text h2{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h2{\n      color:#f5f8fa; }\n  .bp3-running-text h3{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h3{\n      color:#f5f8fa; }\n  .bp3-running-text h4{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h4{\n      color:#f5f8fa; }\n  .bp3-running-text h5{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h5{\n      color:#f5f8fa; }\n  .bp3-running-text h6{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h6{\n      color:#f5f8fa; }\n  .bp3-running-text hr{\n    border:none;\n    border-bottom:1px solid rgba(16, 22, 26, 0.15);\n    margin:20px 0; }\n    .bp3-dark .bp3-running-text hr{\n      border-color:rgba(255, 255, 255, 0.15); }\n  .bp3-running-text p{\n    margin:0 0 10px;\n    padding:0; }\n\n.bp3-text-large{\n  font-size:16px; }\n\n.bp3-text-small{\n  font-size:12px; }\na{\n  color:#106ba3;\n  text-decoration:none; }\n  a:hover{\n    color:#106ba3;\n    cursor:pointer;\n    text-decoration:underline; }\n  a .bp3-icon, a .bp3-icon-standard, a .bp3-icon-large{\n    color:inherit; }\n  a code,\n  .bp3-dark a code{\n    color:inherit; }\n  .bp3-dark a,\n  .bp3-dark a:hover{\n    color:#48aff0; }\n    .bp3-dark a .bp3-icon, .bp3-dark a .bp3-icon-standard, .bp3-dark a .bp3-icon-large,\n    .bp3-dark a:hover .bp3-icon,\n    .bp3-dark a:hover .bp3-icon-standard,\n    .bp3-dark a:hover .bp3-icon-large{\n      color:inherit; }\n.bp3-running-text code, .bp3-code{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  font-size:smaller;\n  padding:2px 5px; }\n  .bp3-dark .bp3-running-text code, .bp3-running-text .bp3-dark code, .bp3-dark .bp3-code{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n  .bp3-running-text a > code, a > .bp3-code{\n    color:#137cbd; }\n    .bp3-dark .bp3-running-text a > code, .bp3-running-text .bp3-dark a > code, .bp3-dark a > .bp3-code{\n      color:inherit; }\n\n.bp3-running-text pre, .bp3-code-block{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n  color:#182026;\n  display:block;\n  font-size:13px;\n  line-height:1.4;\n  margin:10px 0;\n  padding:13px 15px 12px;\n  word-break:break-all;\n  word-wrap:break-word; }\n  .bp3-dark .bp3-running-text pre, .bp3-running-text .bp3-dark pre, .bp3-dark .bp3-code-block{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n  .bp3-running-text pre > code, .bp3-code-block > code{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit;\n    font-size:inherit;\n    padding:0; }\n\n.bp3-running-text kbd, .bp3-key{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-family:inherit;\n  font-size:12px;\n  height:24px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  line-height:24px;\n  min-width:24px;\n  padding:3px 6px;\n  vertical-align:middle; }\n  .bp3-running-text kbd .bp3-icon, .bp3-key .bp3-icon, .bp3-running-text kbd .bp3-icon-standard, .bp3-key .bp3-icon-standard, .bp3-running-text kbd .bp3-icon-large, .bp3-key .bp3-icon-large{\n    margin-right:5px; }\n  .bp3-dark .bp3-running-text kbd, .bp3-running-text .bp3-dark kbd, .bp3-dark .bp3-key{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n.bp3-running-text blockquote, .bp3-blockquote{\n  border-left:solid 4px rgba(167, 182, 194, 0.5);\n  margin:0 0 10px;\n  padding:0 20px; }\n  .bp3-dark .bp3-running-text blockquote, .bp3-running-text .bp3-dark blockquote, .bp3-dark .bp3-blockquote{\n    border-color:rgba(115, 134, 148, 0.5); }\n.bp3-running-text ul,\n.bp3-running-text ol, .bp3-list{\n  margin:10px 0;\n  padding-left:30px; }\n  .bp3-running-text ul li:not(:last-child), .bp3-running-text ol li:not(:last-child), .bp3-list li:not(:last-child){\n    margin-bottom:5px; }\n  .bp3-running-text ul ol, .bp3-running-text ol ol, .bp3-list ol,\n  .bp3-running-text ul ul,\n  .bp3-running-text ol ul,\n  .bp3-list ul{\n    margin-top:5px; }\n\n.bp3-list-unstyled{\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-list-unstyled li{\n    padding:0; }\n.bp3-rtl{\n  text-align:right; }\n\n.bp3-dark{\n  color:#f5f8fa; }\n\n:focus{\n  outline:rgba(19, 124, 189, 0.6) auto 2px;\n  outline-offset:2px;\n  -moz-outline-radius:6px; }\n\n.bp3-focus-disabled :focus{\n  outline:none !important; }\n  .bp3-focus-disabled :focus ~ .bp3-control-indicator{\n    outline:none !important; }\n\n.bp3-alert{\n  max-width:400px;\n  padding:20px; }\n\n.bp3-alert-body{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-alert-body .bp3-icon{\n    font-size:40px;\n    margin-right:20px;\n    margin-top:0; }\n\n.bp3-alert-contents{\n  word-break:break-word; }\n\n.bp3-alert-footer{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:reverse;\n      -ms-flex-direction:row-reverse;\n          flex-direction:row-reverse;\n  margin-top:10px; }\n  .bp3-alert-footer .bp3-button{\n    margin-left:10px; }\n.bp3-breadcrumbs{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  cursor:default;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:wrap;\n      flex-wrap:wrap;\n  height:30px;\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-breadcrumbs > li{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n    .bp3-breadcrumbs > li::after{\n      background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z' fill='%235C7080'/%3e%3c/svg%3e\");\n      content:\"\";\n      display:block;\n      height:16px;\n      margin:0 5px;\n      width:16px; }\n    .bp3-breadcrumbs > li:last-of-type::after{\n      display:none; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumb-current,\n.bp3-breadcrumbs-collapsed{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-size:16px; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumbs-collapsed{\n  color:#5c7080; }\n\n.bp3-breadcrumb:hover{\n  text-decoration:none; }\n\n.bp3-breadcrumb.bp3-disabled{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-breadcrumb .bp3-icon{\n  margin-right:5px; }\n\n.bp3-breadcrumb-current{\n  color:inherit;\n  font-weight:600; }\n  .bp3-breadcrumb-current .bp3-input{\n    font-size:inherit;\n    font-weight:inherit;\n    vertical-align:baseline; }\n\n.bp3-breadcrumbs-collapsed{\n  background:#ced9e0;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  margin-right:2px;\n  padding:1px 5px;\n  vertical-align:text-bottom; }\n  .bp3-breadcrumbs-collapsed::before{\n    background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cg fill='%235C7080'%3e%3ccircle cx='2' cy='8.03' r='2'/%3e%3ccircle cx='14' cy='8.03' r='2'/%3e%3ccircle cx='8' cy='8.03' r='2'/%3e%3c/g%3e%3c/svg%3e\") center no-repeat;\n    content:\"\";\n    display:block;\n    height:16px;\n    width:16px; }\n  .bp3-breadcrumbs-collapsed:hover{\n    background:#bfccd6;\n    color:#182026;\n    text-decoration:none; }\n\n.bp3-dark .bp3-breadcrumb,\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumbs > li::after{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumb.bp3-disabled{\n  color:rgba(167, 182, 194, 0.6); }\n\n.bp3-dark .bp3-breadcrumb-current{\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-breadcrumbs-collapsed:hover{\n    background:rgba(16, 22, 26, 0.6);\n    color:#f5f8fa; }\n.bp3-button{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  min-height:30px;\n  min-width:30px; }\n  .bp3-button > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-button > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-button::before,\n  .bp3-button > *{\n    margin-right:7px; }\n  .bp3-button:empty::before,\n  .bp3-button > :last-child{\n    margin-right:0; }\n  .bp3-button:empty{\n    padding:0 !important; }\n  .bp3-button:disabled, .bp3-button.bp3-disabled{\n    cursor:not-allowed; }\n  .bp3-button.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button.bp3-align-right,\n  .bp3-align-right .bp3-button{\n    text-align:right; }\n  .bp3-button.bp3-align-left,\n  .bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026; }\n    .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active:hover, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-button.bp3-intent-primary{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover, .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover{\n      background-color:#106ba3;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      background-color:#0e5a8a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:disabled, .bp3-button.bp3-intent-primary.bp3-disabled{\n      background-color:rgba(19, 124, 189, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-success{\n    background-color:#0f9960;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover, .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover{\n      background-color:#0d8050;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      background-color:#0a6640;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:disabled, .bp3-button.bp3-intent-success.bp3-disabled{\n      background-color:rgba(15, 153, 96, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-warning{\n    background-color:#d9822b;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover, .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover{\n      background-color:#bf7326;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      background-color:#a66321;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:disabled, .bp3-button.bp3-intent-warning.bp3-disabled{\n      background-color:rgba(217, 130, 43, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-danger{\n    background-color:#db3737;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover, .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover{\n      background-color:#c23030;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      background-color:#a82a2a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:disabled, .bp3-button.bp3-intent-danger.bp3-disabled{\n      background-color:rgba(219, 55, 55, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n    stroke:#ffffff; }\n  .bp3-button.bp3-large,\n  .bp3-large .bp3-button{\n    min-height:40px;\n    min-width:40px;\n    font-size:16px;\n    padding:5px 15px; }\n    .bp3-button.bp3-large::before,\n    .bp3-button.bp3-large > *,\n    .bp3-large .bp3-button::before,\n    .bp3-large .bp3-button > *{\n      margin-right:10px; }\n    .bp3-button.bp3-large:empty::before,\n    .bp3-button.bp3-large > :last-child,\n    .bp3-large .bp3-button:empty::before,\n    .bp3-large .bp3-button > :last-child{\n      margin-right:0; }\n  .bp3-button.bp3-small,\n  .bp3-small .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-button.bp3-loading{\n    position:relative; }\n    .bp3-button.bp3-loading[class*=\"bp3-icon-\"]::before{\n      visibility:hidden; }\n    .bp3-button.bp3-loading .bp3-button-spinner{\n      margin:0;\n      position:absolute; }\n    .bp3-button.bp3-loading > :not(.bp3-button-spinner){\n      visibility:hidden; }\n  .bp3-button[class*=\"bp3-icon-\"]::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    color:#5c7080; }\n  .bp3-button .bp3-icon, .bp3-button .bp3-icon-standard, .bp3-button .bp3-icon-large{\n    color:#5c7080; }\n    .bp3-button .bp3-icon.bp3-align-right, .bp3-button .bp3-icon-standard.bp3-align-right, .bp3-button .bp3-icon-large.bp3-align-right{\n      margin-left:7px; }\n  .bp3-button .bp3-icon:first-child:last-child,\n  .bp3-button .bp3-spinner + .bp3-icon:last-child{\n    margin:0 -7px; }\n  .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"])[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n      color:#a7b6c2; }\n  .bp3-dark .bp3-button[class*=\"bp3-intent-\"]{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:hover{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.3); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n      stroke:#8a9ba8; }\n  .bp3-button:disabled::before,\n  .bp3-button:disabled .bp3-icon, .bp3-button:disabled .bp3-icon-standard, .bp3-button:disabled .bp3-icon-large, .bp3-button.bp3-disabled::before,\n  .bp3-button.bp3-disabled .bp3-icon, .bp3-button.bp3-disabled .bp3-icon-standard, .bp3-button.bp3-disabled .bp3-icon-large, .bp3-button[class*=\"bp3-intent-\"]::before,\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-icon, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-standard, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-large{\n    color:inherit !important; }\n  .bp3-button.bp3-minimal{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button.bp3-minimal:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-minimal:active, .bp3-button.bp3-minimal.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-minimal:disabled, .bp3-button.bp3-minimal:disabled:hover, .bp3-button.bp3-minimal.bp3-disabled, .bp3-button.bp3-minimal.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-minimal{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-minimal:hover, .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-minimal:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-minimal:disabled, .bp3-dark .bp3-button.bp3-minimal:disabled:hover, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover, .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover, .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover, .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover, .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button.bp3-outlined{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    border:1px solid rgba(24, 32, 38, 0.2);\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box; }\n    .bp3-button.bp3-outlined:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-outlined:active, .bp3-button.bp3-outlined.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-outlined:hover, .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-outlined:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover, .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover, .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover, .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover, .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      border-color:rgba(92, 112, 128, 0.1); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      border-color:rgba(255, 255, 255, 0.4); }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        border-color:rgba(255, 255, 255, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      border-color:rgba(16, 107, 163, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        border-color:rgba(16, 107, 163, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        border-color:rgba(72, 175, 240, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          border-color:rgba(72, 175, 240, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      border-color:rgba(13, 128, 80, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        border-color:rgba(13, 128, 80, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        border-color:rgba(61, 204, 145, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          border-color:rgba(61, 204, 145, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      border-color:rgba(191, 115, 38, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        border-color:rgba(191, 115, 38, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        border-color:rgba(255, 179, 102, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          border-color:rgba(255, 179, 102, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      border-color:rgba(194, 48, 48, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        border-color:rgba(194, 48, 48, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        border-color:rgba(255, 115, 115, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          border-color:rgba(255, 115, 115, 0.2); }\n\na.bp3-button{\n  text-align:center;\n  text-decoration:none;\n  -webkit-transition:none;\n  transition:none; }\n  a.bp3-button, a.bp3-button:hover, a.bp3-button:active{\n    color:#182026; }\n  a.bp3-button.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6); }\n\n.bp3-button-text{\n  -webkit-box-flex:0;\n      -ms-flex:0 1 auto;\n          flex:0 1 auto; }\n\n.bp3-button.bp3-align-left .bp3-button-text, .bp3-button.bp3-align-right .bp3-button-text,\n.bp3-button-group.bp3-align-left .bp3-button-text,\n.bp3-button-group.bp3-align-right .bp3-button-text{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto; }\n.bp3-button-group{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex; }\n  .bp3-button-group .bp3-button{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    position:relative;\n    z-index:4; }\n    .bp3-button-group .bp3-button:focus{\n      z-index:5; }\n    .bp3-button-group .bp3-button:hover{\n      z-index:6; }\n    .bp3-button-group .bp3-button:active, .bp3-button-group .bp3-button.bp3-active{\n      z-index:7; }\n    .bp3-button-group .bp3-button:disabled, .bp3-button-group .bp3-button.bp3-disabled{\n      z-index:3; }\n    .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]{\n      z-index:9; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:focus{\n        z-index:10; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:hover{\n        z-index:11; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n        z-index:12; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n        z-index:8; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:first-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:first-child){\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    border-bottom-right-radius:0;\n    border-top-right-radius:0;\n    margin-right:-1px; }\n  .bp3-button-group.bp3-minimal .bp3-button{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button-group.bp3-minimal .bp3-button{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button-group .bp3-popover-wrapper,\n  .bp3-button-group .bp3-popover-target{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button-group .bp3-button.bp3-fill,\n  .bp3-button-group.bp3-fill .bp3-button:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-vertical{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column;\n    vertical-align:top; }\n    .bp3-button-group.bp3-vertical.bp3-fill{\n      height:100%;\n      width:unset; }\n    .bp3-button-group.bp3-vertical .bp3-button{\n      margin-right:0 !important;\n      width:100%; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:first-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:first-child{\n      border-radius:3px 3px 0 0; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:last-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:last-child{\n      border-radius:0 0 3px 3px; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:not(:last-child){\n      margin-bottom:-1px; }\n  .bp3-button-group.bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    margin-right:1px; }\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-button:not(:last-child){\n    margin-bottom:1px; }\n.bp3-callout{\n  font-size:14px;\n  line-height:1.5;\n  background-color:rgba(138, 155, 168, 0.15);\n  border-radius:3px;\n  padding:10px 12px 9px;\n  position:relative;\n  width:100%; }\n  .bp3-callout[class*=\"bp3-icon-\"]{\n    padding-left:40px; }\n    .bp3-callout[class*=\"bp3-icon-\"]::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout.bp3-callout-icon{\n    padding-left:40px; }\n    .bp3-callout.bp3-callout-icon > .bp3-icon:first-child{\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout .bp3-heading{\n    line-height:20px;\n    margin-bottom:5px;\n    margin-top:0; }\n    .bp3-callout .bp3-heading:last-child{\n      margin-bottom:0; }\n  .bp3-dark .bp3-callout{\n    background-color:rgba(138, 155, 168, 0.2); }\n    .bp3-dark .bp3-callout[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n  .bp3-callout.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15); }\n    .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-primary .bp3-heading{\n      color:#106ba3; }\n    .bp3-dark .bp3-callout.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-primary .bp3-heading{\n        color:#48aff0; }\n  .bp3-callout.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15); }\n    .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-success .bp3-heading{\n      color:#0d8050; }\n    .bp3-dark .bp3-callout.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-success .bp3-heading{\n        color:#3dcc91; }\n  .bp3-callout.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15); }\n    .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-warning .bp3-heading{\n      color:#bf7326; }\n    .bp3-dark .bp3-callout.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-warning .bp3-heading{\n        color:#ffb366; }\n  .bp3-callout.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15); }\n    .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-danger .bp3-heading{\n      color:#c23030; }\n    .bp3-dark .bp3-callout.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-danger .bp3-heading{\n        color:#ff7373; }\n  .bp3-running-text .bp3-callout{\n    margin:20px 0; }\n.bp3-card{\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n  padding:20px;\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-card.bp3-dark,\n  .bp3-dark .bp3-card{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-0{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n  .bp3-elevation-0.bp3-dark,\n  .bp3-dark .bp3-elevation-0{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-1{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-1.bp3-dark,\n  .bp3-dark .bp3-elevation-1{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-2{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-2.bp3-dark,\n  .bp3-dark .bp3-elevation-2{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-3{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-3.bp3-dark,\n  .bp3-dark .bp3-elevation-3{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-4{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-4.bp3-dark,\n  .bp3-dark .bp3-elevation-4{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:hover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  cursor:pointer; }\n  .bp3-card.bp3-interactive:hover.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:hover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:active{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  opacity:0.9;\n  -webkit-transition-duration:0;\n          transition-duration:0; }\n  .bp3-card.bp3-interactive:active.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:active{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-collapse{\n  height:0;\n  overflow-y:hidden;\n  -webkit-transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-collapse .bp3-collapse-body{\n    -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-collapse .bp3-collapse-body[aria-hidden=\"true\"]{\n      display:none; }\n\n.bp3-context-menu .bp3-popover-target{\n  display:block; }\n\n.bp3-context-menu-popover-target{\n  position:fixed; }\n\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-dialog-container{\n  opacity:1;\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  min-height:100%;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  width:100%; }\n  .bp3-dialog-container.bp3-overlay-enter > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5); }\n  .bp3-dialog-container.bp3-overlay-enter-active > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear-active > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-dialog-container.bp3-overlay-exit > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-dialog-container.bp3-overlay-exit-active > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n\n.bp3-dialog{\n  background:#ebf1f5;\n  border-radius:6px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:30px 0;\n  padding-bottom:20px;\n  pointer-events:all;\n  -webkit-user-select:text;\n     -moz-user-select:text;\n      -ms-user-select:text;\n          user-select:text;\n  width:500px; }\n  .bp3-dialog:focus{\n    outline:0; }\n  .bp3-dialog.bp3-dark,\n  .bp3-dark .bp3-dialog{\n    background:#293742;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-dialog-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:6px 6px 0 0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding-left:20px;\n  padding-right:5px;\n  z-index:30; }\n  .bp3-dialog-header .bp3-icon-large,\n  .bp3-dialog-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-dialog-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-dialog-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-dialog-header{\n    background:#30404d;\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-dialog-header .bp3-icon-large,\n    .bp3-dark .bp3-dialog-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-dialog-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  margin:20px; }\n\n.bp3-dialog-footer{\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  margin:0 20px; }\n\n.bp3-dialog-footer-actions{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:end;\n      -ms-flex-pack:end;\n          justify-content:flex-end; }\n  .bp3-dialog-footer-actions .bp3-button{\n    margin-left:10px; }\n.bp3-multistep-dialog-panels{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n\n.bp3-multistep-dialog-left-panel{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column; }\n  .bp3-dark .bp3-multistep-dialog-left-panel{\n    background:#202b33; }\n\n.bp3-multistep-dialog-right-panel{\n  background-color:#f5f8fa;\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  border-radius:0 0 6px 0;\n  -webkit-box-flex:3;\n      -ms-flex:3;\n          flex:3;\n  min-width:0; }\n  .bp3-dark .bp3-multistep-dialog-right-panel{\n    background-color:#293742;\n    border-left:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-multistep-dialog-footer{\n  background-color:#ffffff;\n  border-radius:0 0 6px 0;\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  padding:10px; }\n  .bp3-dark .bp3-multistep-dialog-footer{\n    background:#30404d;\n    border-top:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-dialog-step-container{\n  background-color:#f5f8fa;\n  border-bottom:1px solid rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-dialog-step-container{\n    background:#293742;\n    border-bottom:1px solid rgba(16, 22, 26, 0.4); }\n  .bp3-dialog-step-container.bp3-dialog-step-viewed{\n    background-color:#ffffff; }\n    .bp3-dark .bp3-dialog-step-container.bp3-dialog-step-viewed{\n      background:#30404d; }\n\n.bp3-dialog-step{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#f5f8fa;\n  border-radius:6px;\n  cursor:not-allowed;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:4px;\n  padding:6px 14px; }\n  .bp3-dark .bp3-dialog-step{\n    background:#293742; }\n  .bp3-dialog-step-viewed .bp3-dialog-step{\n    background-color:#ffffff;\n    cursor:pointer; }\n    .bp3-dark .bp3-dialog-step-viewed .bp3-dialog-step{\n      background:#30404d; }\n  .bp3-dialog-step:hover{\n    background-color:#f5f8fa; }\n    .bp3-dark .bp3-dialog-step:hover{\n      background:#293742; }\n\n.bp3-dialog-step-icon{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:rgba(92, 112, 128, 0.6);\n  border-radius:50%;\n  color:#ffffff;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:25px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  width:25px; }\n  .bp3-dark .bp3-dialog-step-icon{\n    background-color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#2b95d6; }\n  .bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#8a9ba8; }\n\n.bp3-dialog-step-title{\n  color:rgba(92, 112, 128, 0.6);\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  padding-left:10px; }\n  .bp3-dark .bp3-dialog-step-title{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-title{\n    color:#2b95d6; }\n  .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n    color:#182026; }\n    .bp3-dark .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n      color:#f5f8fa; }\n.bp3-drawer{\n  background:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0;\n  padding:0; }\n  .bp3-drawer:focus{\n    outline:0; }\n  .bp3-drawer.bp3-position-top{\n    height:50%;\n    left:0;\n    right:0;\n    top:0; }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter, .bp3-drawer.bp3-position-top.bp3-overlay-appear{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter-active, .bp3-drawer.bp3-position-top.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit-active{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-bottom{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter-active, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-left{\n    bottom:0;\n    left:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter, .bp3-drawer.bp3-position-left.bp3-overlay-appear{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter-active, .bp3-drawer.bp3-position-left.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit-active{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-right{\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter, .bp3-drawer.bp3-position-right.bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter-active, .bp3-drawer.bp3-position-right.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right):not(.bp3-vertical){\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right).bp3-vertical{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-dark,\n  .bp3-dark .bp3-drawer{\n    background:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-drawer-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border-radius:0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding:5px;\n  padding-left:20px;\n  position:relative; }\n  .bp3-drawer-header .bp3-icon-large,\n  .bp3-drawer-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-drawer-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-drawer-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-drawer-header{\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-drawer-header .bp3-icon-large,\n    .bp3-dark .bp3-drawer-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-drawer-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  overflow:auto; }\n\n.bp3-drawer-footer{\n  -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  padding:10px 20px;\n  position:relative; }\n  .bp3-dark .bp3-drawer-footer{\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4); }\n.bp3-editable-text{\n  cursor:text;\n  display:inline-block;\n  max-width:100%;\n  position:relative;\n  vertical-align:top;\n  white-space:nowrap; }\n  .bp3-editable-text::before{\n    bottom:-3px;\n    left:-3px;\n    position:absolute;\n    right:-3px;\n    top:-3px;\n    border-radius:3px;\n    content:\"\";\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#137cbd; }\n  .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4); }\n  .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#0f9960; }\n  .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4); }\n  .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#d9822b; }\n  .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4); }\n  .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#db3737; }\n  .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4); }\n  .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-dark .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#48aff0; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4);\n            box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#3dcc91; }\n  .bp3-dark .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4);\n            box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#ffb366; }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#ff7373; }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-editable-text-input,\n.bp3-editable-text-content{\n  color:inherit;\n  display:inherit;\n  font:inherit;\n  letter-spacing:inherit;\n  max-width:inherit;\n  min-width:inherit;\n  position:relative;\n  resize:none;\n  text-transform:inherit;\n  vertical-align:top; }\n\n.bp3-editable-text-input{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0;\n  white-space:pre-wrap;\n  width:100%; }\n  .bp3-editable-text-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:focus{\n    outline:none; }\n  .bp3-editable-text-input::-ms-clear{\n    display:none; }\n\n.bp3-editable-text-content{\n  overflow:hidden;\n  padding-right:2px;\n  text-overflow:ellipsis;\n  white-space:pre; }\n  .bp3-editable-text-editing > .bp3-editable-text-content{\n    left:0;\n    position:absolute;\n    visibility:hidden; }\n  .bp3-editable-text-placeholder > .bp3-editable-text-content{\n    color:rgba(92, 112, 128, 0.6); }\n    .bp3-dark .bp3-editable-text-placeholder > .bp3-editable-text-content{\n      color:rgba(167, 182, 194, 0.6); }\n\n.bp3-editable-text.bp3-multiline{\n  display:block; }\n  .bp3-editable-text.bp3-multiline .bp3-editable-text-content{\n    overflow:auto;\n    white-space:pre-wrap;\n    word-wrap:break-word; }\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-control-group{\n  -webkit-transform:translateZ(0);\n          transform:translateZ(0);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:stretch;\n      -ms-flex-align:stretch;\n          align-items:stretch; }\n  .bp3-control-group > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select,\n  .bp3-control-group .bp3-input,\n  .bp3-control-group .bp3-select{\n    position:relative; }\n  .bp3-control-group .bp3-input{\n    border-radius:inherit;\n    z-index:2; }\n    .bp3-control-group .bp3-input:focus{\n      border-radius:3px;\n      z-index:14; }\n    .bp3-control-group .bp3-input[class*=\"bp3-intent\"]{\n      z-index:13; }\n      .bp3-control-group .bp3-input[class*=\"bp3-intent\"]:focus{\n        z-index:15; }\n    .bp3-control-group .bp3-input[readonly], .bp3-control-group .bp3-input:disabled, .bp3-control-group .bp3-input.bp3-disabled{\n      z-index:1; }\n  .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input{\n    z-index:13; }\n    .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input:focus{\n      z-index:15; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select select,\n  .bp3-control-group .bp3-select select{\n    -webkit-transform:translateZ(0);\n            transform:translateZ(0);\n    border-radius:inherit;\n    z-index:4; }\n    .bp3-control-group .bp3-button:focus,\n    .bp3-control-group .bp3-html-select select:focus,\n    .bp3-control-group .bp3-select select:focus{\n      z-index:5; }\n    .bp3-control-group .bp3-button:hover,\n    .bp3-control-group .bp3-html-select select:hover,\n    .bp3-control-group .bp3-select select:hover{\n      z-index:6; }\n    .bp3-control-group .bp3-button:active,\n    .bp3-control-group .bp3-html-select select:active,\n    .bp3-control-group .bp3-select select:active{\n      z-index:7; }\n    .bp3-control-group .bp3-button[readonly], .bp3-control-group .bp3-button:disabled, .bp3-control-group .bp3-button.bp3-disabled,\n    .bp3-control-group .bp3-html-select select[readonly],\n    .bp3-control-group .bp3-html-select select:disabled,\n    .bp3-control-group .bp3-html-select select.bp3-disabled,\n    .bp3-control-group .bp3-select select[readonly],\n    .bp3-control-group .bp3-select select:disabled,\n    .bp3-control-group .bp3-select select.bp3-disabled{\n      z-index:3; }\n    .bp3-control-group .bp3-button[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]{\n      z-index:9; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:focus{\n        z-index:10; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:hover{\n        z-index:11; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:active{\n        z-index:12; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"][readonly], .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:disabled, .bp3-control-group .bp3-button[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"].bp3-disabled{\n        z-index:8; }\n  .bp3-control-group .bp3-input-group > .bp3-icon,\n  .bp3-control-group .bp3-input-group > .bp3-button,\n  .bp3-control-group .bp3-input-group > .bp3-input-left-container,\n  .bp3-control-group .bp3-input-group > .bp3-input-action{\n    z-index:16; }\n  .bp3-control-group .bp3-select::after,\n  .bp3-control-group .bp3-html-select::after,\n  .bp3-control-group .bp3-select > .bp3-icon,\n  .bp3-control-group .bp3-html-select > .bp3-icon{\n    z-index:17; }\n  .bp3-control-group .bp3-select:focus-within{\n    z-index:5; }\n  .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:-1px; }\n  .bp3-control-group:not(.bp3-vertical) > .bp3-divider:not(:first-child){\n    margin-left:6px; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:0; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > .bp3-button + .bp3-button{\n    margin-left:1px; }\n  .bp3-control-group .bp3-popover-wrapper,\n  .bp3-control-group .bp3-popover-target{\n    border-radius:inherit; }\n  .bp3-control-group > :first-child{\n    border-radius:3px 0 0 3px; }\n  .bp3-control-group > :last-child{\n    border-radius:0 3px 3px 0;\n    margin-right:0; }\n  .bp3-control-group > :only-child{\n    border-radius:3px;\n    margin-right:0; }\n  .bp3-control-group .bp3-input-group .bp3-button{\n    border-radius:3px; }\n  .bp3-control-group .bp3-numeric-input:not(:first-child) .bp3-input-group{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-control-group.bp3-fill{\n    width:100%; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-fill > *:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-vertical{\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-control-group.bp3-vertical > *{\n      margin-top:-1px; }\n    .bp3-control-group.bp3-vertical > :first-child{\n      border-radius:3px 3px 0 0;\n      margin-top:0; }\n    .bp3-control-group.bp3-vertical > :last-child{\n      border-radius:0 0 3px 3px; }\n.bp3-control{\n  cursor:pointer;\n  display:block;\n  margin-bottom:10px;\n  position:relative;\n  text-transform:none; }\n  .bp3-control input:checked ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control input:checked ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control:not(.bp3-align-right){\n    padding-left:26px; }\n    .bp3-control:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-26px; }\n  .bp3-control.bp3-align-right{\n    padding-right:26px; }\n    .bp3-control.bp3-align-right .bp3-control-indicator{\n      margin-right:-26px; }\n  .bp3-control.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-control.bp3-inline{\n    display:inline-block;\n    margin-right:20px; }\n  .bp3-control input{\n    left:0;\n    opacity:0;\n    position:absolute;\n    top:0;\n    z-index:-1; }\n  .bp3-control .bp3-control-indicator{\n    background-clip:padding-box;\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    border:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    cursor:pointer;\n    display:inline-block;\n    font-size:16px;\n    height:1em;\n    margin-right:10px;\n    margin-top:-3px;\n    position:relative;\n    -webkit-user-select:none;\n       -moz-user-select:none;\n        -ms-user-select:none;\n            user-select:none;\n    vertical-align:middle;\n    width:1em; }\n    .bp3-control .bp3-control-indicator::before{\n      content:\"\";\n      display:block;\n      height:1em;\n      width:1em; }\n  .bp3-control:hover .bp3-control-indicator{\n    background-color:#ebf1f5; }\n  .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n    background:#d8e1e8;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    cursor:not-allowed; }\n  .bp3-control input:focus ~ .bp3-control-indicator{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:2px;\n    -moz-outline-radius:6px; }\n  .bp3-control.bp3-align-right .bp3-control-indicator{\n    float:right;\n    margin-left:10px;\n    margin-top:1px; }\n  .bp3-control.bp3-large{\n    font-size:16px; }\n    .bp3-control.bp3-large:not(.bp3-align-right){\n      padding-left:30px; }\n      .bp3-control.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n        margin-left:-30px; }\n    .bp3-control.bp3-large.bp3-align-right{\n      padding-right:30px; }\n      .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n        margin-right:-30px; }\n    .bp3-control.bp3-large .bp3-control-indicator{\n      font-size:20px; }\n    .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-top:0; }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control.bp3-checkbox .bp3-control-indicator{\n    border-radius:3px; }\n  .bp3-control.bp3-checkbox input:checked ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0012 5z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-radio .bp3-control-indicator{\n    border-radius:50%; }\n  .bp3-control.bp3-radio input:checked ~ .bp3-control-indicator::before{\n    background-image:radial-gradient(#ffffff, #ffffff 28%, transparent 32%); }\n  .bp3-control.bp3-radio input:checked:disabled ~ .bp3-control-indicator::before{\n    opacity:0.5; }\n  .bp3-control.bp3-radio input:focus ~ .bp3-control-indicator{\n    -moz-outline-radius:16px; }\n  .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(167, 182, 194, 0.5); }\n  .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(115, 134, 148, 0.5); }\n  .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(92, 112, 128, 0.5); }\n  .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5); }\n    .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5); }\n    .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch:not(.bp3-align-right){\n    padding-left:38px; }\n    .bp3-control.bp3-switch:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-38px; }\n  .bp3-control.bp3-switch.bp3-align-right{\n    padding-right:38px; }\n    .bp3-control.bp3-switch.bp3-align-right .bp3-control-indicator{\n      margin-right:-38px; }\n  .bp3-control.bp3-switch .bp3-control-indicator{\n    border:none;\n    border-radius:1.75em;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important;\n    min-width:1.75em;\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:auto; }\n    .bp3-control.bp3-switch .bp3-control-indicator::before{\n      background:#ffffff;\n      border-radius:50%;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n      height:calc(1em - 4px);\n      left:0;\n      margin:2px;\n      position:absolute;\n      -webkit-transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      width:calc(1em - 4px); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    left:calc(100% - 1em); }\n  .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right){\n    padding-left:45px; }\n    .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-45px; }\n  .bp3-control.bp3-switch.bp3-large.bp3-align-right{\n    padding-right:45px; }\n    .bp3-control.bp3-switch.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-right:-45px; }\n  .bp3-dark .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.7); }\n  .bp3-dark .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.9); }\n  .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(57, 75, 89, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-dark .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch .bp3-control-indicator::before{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-control.bp3-switch .bp3-switch-inner-text{\n    font-size:0.7em;\n    text-align:center; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:first-child{\n    line-height:0;\n    margin-left:0.5em;\n    margin-right:1.2em;\n    visibility:hidden; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:last-child{\n    line-height:1em;\n    margin-left:1.2em;\n    margin-right:0.5em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:first-child{\n    line-height:1em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:last-child{\n    line-height:0;\n    visibility:hidden; }\n  .bp3-dark .bp3-control{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-control.bp3-disabled{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-control .bp3-control-indicator{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-control:hover .bp3-control-indicator{\n      background-color:#30404d; }\n    .bp3-dark .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n      background:#202b33;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-control input:disabled ~ .bp3-control-indicator{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      cursor:not-allowed; }\n    .bp3-dark .bp3-control.bp3-checkbox input:disabled:checked ~ .bp3-control-indicator, .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-file-input{\n  cursor:pointer;\n  display:inline-block;\n  height:30px;\n  position:relative; }\n  .bp3-file-input input{\n    margin:0;\n    min-width:200px;\n    opacity:0; }\n    .bp3-file-input input:disabled + .bp3-file-upload-input,\n    .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n      background:rgba(206, 217, 224, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      resize:none; }\n      .bp3-file-input input:disabled + .bp3-file-upload-input::after,\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n        background-color:rgba(206, 217, 224, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(92, 112, 128, 0.6);\n        cursor:not-allowed;\n        outline:none; }\n        .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active:hover,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active:hover{\n          background:rgba(206, 217, 224, 0.7); }\n      .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input, .bp3-dark\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n        background:rgba(57, 75, 89, 0.5);\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after, .bp3-dark\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n          background-color:rgba(57, 75, 89, 0.5);\n          background-image:none;\n          -webkit-box-shadow:none;\n                  box-shadow:none;\n          color:rgba(167, 182, 194, 0.6); }\n          .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-dark\n          .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active{\n            background:rgba(57, 75, 89, 0.7); }\n  .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#182026; }\n  .bp3-dark .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#f5f8fa; }\n  .bp3-file-input.bp3-fill{\n    width:100%; }\n  .bp3-file-input.bp3-large,\n  .bp3-large .bp3-file-input{\n    height:40px; }\n  .bp3-file-input .bp3-file-upload-input-custom-text::after{\n    content:attr(bp3-button-text); }\n\n.bp3-file-upload-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle;\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:rgba(92, 112, 128, 0.6);\n  left:0;\n  padding-right:80px;\n  position:absolute;\n  right:0;\n  top:0;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-file-upload-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:focus, .bp3-file-upload-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-file-upload-input[type=\"search\"], .bp3-file-upload-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-file-upload-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-file-upload-input:disabled, .bp3-file-upload-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-file-upload-input::after{\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026;\n    min-height:24px;\n    min-width:24px;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    border-radius:3px;\n    content:\"Browse\";\n    line-height:24px;\n    margin:3px;\n    position:absolute;\n    right:0;\n    text-align:center;\n    top:0;\n    width:70px; }\n    .bp3-file-upload-input::after:hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-file-upload-input::after:active, .bp3-file-upload-input::after.bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-file-upload-input::after:disabled, .bp3-file-upload-input::after.bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-file-upload-input::after:disabled.bp3-active, .bp3-file-upload-input::after:disabled.bp3-active:hover, .bp3-file-upload-input::after.bp3-disabled.bp3-active, .bp3-file-upload-input::after.bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-file-upload-input:hover::after{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-file-upload-input:active::after{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-large .bp3-file-upload-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px;\n    padding-right:95px; }\n    .bp3-large .bp3-file-upload-input[type=\"search\"], .bp3-large .bp3-file-upload-input.bp3-round{\n      padding:0 15px; }\n    .bp3-large .bp3-file-upload-input::after{\n      min-height:30px;\n      min-width:30px;\n      line-height:30px;\n      margin:5px;\n      width:85px; }\n  .bp3-dark .bp3-file-upload-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:disabled, .bp3-dark .bp3-file-upload-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::after{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n      color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover, .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover{\n        background-color:#30404d;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        background-color:#202b33;\n        background-image:none;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n      .bp3-dark .bp3-file-upload-input::after:disabled, .bp3-dark .bp3-file-upload-input::after.bp3-disabled{\n        background-color:rgba(57, 75, 89, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-upload-input::after:disabled.bp3-active, .bp3-dark .bp3-file-upload-input::after.bp3-disabled.bp3-active{\n          background:rgba(57, 75, 89, 0.7); }\n      .bp3-dark .bp3-file-upload-input::after .bp3-button-spinner .bp3-spinner-head{\n        background:rgba(16, 22, 26, 0.5);\n        stroke:#8a9ba8; }\n    .bp3-dark .bp3-file-upload-input:hover::after{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:active::after{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n.bp3-file-upload-input::after{\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n.bp3-form-group{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0 0 15px; }\n  .bp3-form-group label.bp3-label{\n    margin-bottom:5px; }\n  .bp3-form-group .bp3-control{\n    margin-top:7px; }\n  .bp3-form-group .bp3-form-helper-text{\n    color:#5c7080;\n    font-size:12px;\n    margin-top:5px; }\n  .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#106ba3; }\n  .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#0d8050; }\n  .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#bf7326; }\n  .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#c23030; }\n  .bp3-form-group.bp3-inline{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row; }\n    .bp3-form-group.bp3-inline.bp3-large label.bp3-label{\n      line-height:40px;\n      margin:0 10px 0 0; }\n    .bp3-form-group.bp3-inline label.bp3-label{\n      line-height:30px;\n      margin:0 10px 0 0; }\n  .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-dark .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#48aff0; }\n  .bp3-dark .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#3dcc91; }\n  .bp3-dark .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#ffb366; }\n  .bp3-dark .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#ff7373; }\n  .bp3-dark .bp3-form-group .bp3-form-helper-text{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(167, 182, 194, 0.6) !important; }\n.bp3-input-group{\n  display:block;\n  position:relative; }\n  .bp3-input-group .bp3-input{\n    position:relative;\n    width:100%; }\n    .bp3-input-group .bp3-input:not(:first-child){\n      padding-left:30px; }\n    .bp3-input-group .bp3-input:not(:last-child){\n      padding-right:30px; }\n  .bp3-input-group .bp3-input-action,\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-button,\n  .bp3-input-group > .bp3-icon{\n    position:absolute;\n    top:0; }\n    .bp3-input-group .bp3-input-action:first-child,\n    .bp3-input-group > .bp3-input-left-container:first-child,\n    .bp3-input-group > .bp3-button:first-child,\n    .bp3-input-group > .bp3-icon:first-child{\n      left:0; }\n    .bp3-input-group .bp3-input-action:last-child,\n    .bp3-input-group > .bp3-input-left-container:last-child,\n    .bp3-input-group > .bp3-button:last-child,\n    .bp3-input-group > .bp3-icon:last-child{\n      right:0; }\n  .bp3-input-group .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    margin:3px;\n    padding:0 7px; }\n    .bp3-input-group .bp3-button:empty{\n      padding:0; }\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-icon{\n    z-index:1; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon{\n    color:#5c7080; }\n    .bp3-input-group > .bp3-input-left-container > .bp3-icon:empty,\n    .bp3-input-group > .bp3-icon:empty{\n      font-family:\"Icons16\", sans-serif;\n      font-size:16px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon,\n  .bp3-input-group .bp3-input-action > .bp3-spinner{\n    margin:7px; }\n  .bp3-input-group .bp3-tag{\n    margin:5px; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus),\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n    color:#5c7080; }\n    .bp3-dark .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus), .bp3-dark\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n      color:#a7b6c2; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large{\n      color:#5c7080; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled,\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled{\n    color:rgba(92, 112, 128, 0.6) !important; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-large{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-input-group.bp3-disabled{\n    cursor:not-allowed; }\n    .bp3-input-group.bp3-disabled .bp3-icon{\n      color:rgba(92, 112, 128, 0.6); }\n  .bp3-input-group.bp3-large .bp3-button{\n    min-height:30px;\n    min-width:30px;\n    margin:5px; }\n  .bp3-input-group.bp3-large > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-large > .bp3-icon,\n  .bp3-input-group.bp3-large .bp3-input-action > .bp3-spinner{\n    margin:12px; }\n  .bp3-input-group.bp3-large .bp3-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input-group.bp3-large .bp3-input[type=\"search\"], .bp3-input-group.bp3-large .bp3-input.bp3-round{\n      padding:0 15px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:first-child){\n      padding-left:40px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:last-child){\n      padding-right:40px; }\n  .bp3-input-group.bp3-small .bp3-button{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small .bp3-tag{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-small > .bp3-icon,\n  .bp3-input-group.bp3-small .bp3-input-action > .bp3-spinner{\n    margin:4px; }\n  .bp3-input-group.bp3-small .bp3-input{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input-group.bp3-small .bp3-input[type=\"search\"], .bp3-input-group.bp3-small .bp3-input.bp3-round{\n      padding:0 12px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:first-child){\n      padding-left:24px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:last-child){\n      padding-right:24px; }\n  .bp3-input-group.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-input-group.bp3-round .bp3-button,\n  .bp3-input-group.bp3-round .bp3-input,\n  .bp3-input-group.bp3-round .bp3-tag{\n    border-radius:30px; }\n  .bp3-dark .bp3-input-group .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-input-group.bp3-disabled .bp3-icon{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-input-group.bp3-intent-primary .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input-group.bp3-intent-primary .bp3-input:disabled, .bp3-input-group.bp3-intent-primary .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-primary > .bp3-icon{\n    color:#106ba3; }\n    .bp3-dark .bp3-input-group.bp3-intent-primary > .bp3-icon{\n      color:#48aff0; }\n  .bp3-input-group.bp3-intent-success .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input-group.bp3-intent-success .bp3-input:disabled, .bp3-input-group.bp3-intent-success .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-success > .bp3-icon{\n    color:#0d8050; }\n    .bp3-dark .bp3-input-group.bp3-intent-success > .bp3-icon{\n      color:#3dcc91; }\n  .bp3-input-group.bp3-intent-warning .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input-group.bp3-intent-warning .bp3-input:disabled, .bp3-input-group.bp3-intent-warning .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-warning > .bp3-icon{\n    color:#bf7326; }\n    .bp3-dark .bp3-input-group.bp3-intent-warning > .bp3-icon{\n      color:#ffb366; }\n  .bp3-input-group.bp3-intent-danger .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input-group.bp3-intent-danger .bp3-input:disabled, .bp3-input-group.bp3-intent-danger .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-danger > .bp3-icon{\n    color:#c23030; }\n    .bp3-dark .bp3-input-group.bp3-intent-danger > .bp3-icon{\n      color:#ff7373; }\n.bp3-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle; }\n  .bp3-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:focus, .bp3-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-input[type=\"search\"], .bp3-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-input:disabled, .bp3-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-input.bp3-large{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input.bp3-large[type=\"search\"], .bp3-input.bp3-large.bp3-round{\n      padding:0 15px; }\n  .bp3-input.bp3-small{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input.bp3-small[type=\"search\"], .bp3-input.bp3-small.bp3-round{\n      padding:0 12px; }\n  .bp3-input.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-dark .bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input:disabled, .bp3-dark .bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-input.bp3-intent-primary{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input.bp3-intent-primary:disabled, .bp3-input.bp3-intent-primary.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary:focus{\n        -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n                box-shadow:inset 0 0 0 1px #137cbd; }\n      .bp3-dark .bp3-input.bp3-intent-primary:disabled, .bp3-dark .bp3-input.bp3-intent-primary.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-success{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input.bp3-intent-success:disabled, .bp3-input.bp3-intent-success.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success:focus{\n        -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n                box-shadow:inset 0 0 0 1px #0f9960; }\n      .bp3-dark .bp3-input.bp3-intent-success:disabled, .bp3-dark .bp3-input.bp3-intent-success.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-warning{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input.bp3-intent-warning:disabled, .bp3-input.bp3-intent-warning.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning:focus{\n        -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n                box-shadow:inset 0 0 0 1px #d9822b; }\n      .bp3-dark .bp3-input.bp3-intent-warning:disabled, .bp3-dark .bp3-input.bp3-intent-warning.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-danger{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input.bp3-intent-danger:disabled, .bp3-input.bp3-intent-danger.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger:focus{\n        -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #db3737;\n                box-shadow:inset 0 0 0 1px #db3737; }\n      .bp3-dark .bp3-input.bp3-intent-danger:disabled, .bp3-dark .bp3-input.bp3-intent-danger.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input::-ms-clear{\n    display:none; }\ntextarea.bp3-input{\n  max-width:100%;\n  padding:10px; }\n  textarea.bp3-input, textarea.bp3-input.bp3-large, textarea.bp3-input.bp3-small{\n    height:auto;\n    line-height:inherit; }\n  textarea.bp3-input.bp3-small{\n    padding:8px; }\n  .bp3-dark textarea.bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark textarea.bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input:disabled, .bp3-dark textarea.bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\nlabel.bp3-label{\n  display:block;\n  margin-bottom:15px;\n  margin-top:0; }\n  label.bp3-label .bp3-html-select,\n  label.bp3-label .bp3-input,\n  label.bp3-label .bp3-select,\n  label.bp3-label .bp3-slider,\n  label.bp3-label .bp3-popover-wrapper{\n    display:block;\n    margin-top:5px;\n    text-transform:none; }\n  label.bp3-label .bp3-button-group{\n    margin-top:5px; }\n  label.bp3-label .bp3-select select,\n  label.bp3-label .bp3-html-select select{\n    font-weight:400;\n    vertical-align:top;\n    width:100%; }\n  label.bp3-label.bp3-disabled,\n  label.bp3-label.bp3-disabled .bp3-text-muted{\n    color:rgba(92, 112, 128, 0.6); }\n  label.bp3-label.bp3-inline{\n    line-height:30px; }\n    label.bp3-label.bp3-inline .bp3-html-select,\n    label.bp3-label.bp3-inline .bp3-input,\n    label.bp3-label.bp3-inline .bp3-input-group,\n    label.bp3-label.bp3-inline .bp3-select,\n    label.bp3-label.bp3-inline .bp3-popover-wrapper{\n      display:inline-block;\n      margin:0 0 0 5px;\n      vertical-align:top; }\n    label.bp3-label.bp3-inline .bp3-button-group{\n      margin:0 0 0 5px; }\n    label.bp3-label.bp3-inline .bp3-input-group .bp3-input{\n      margin-left:0; }\n    label.bp3-label.bp3-inline.bp3-large{\n      line-height:40px; }\n  label.bp3-label:not(.bp3-inline) .bp3-popover-target{\n    display:block; }\n  .bp3-dark label.bp3-label{\n    color:#f5f8fa; }\n    .bp3-dark label.bp3-label.bp3-disabled,\n    .bp3-dark label.bp3-label.bp3-disabled .bp3-text-muted{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 14px;\n          flex:1 1 14px;\n  min-height:0;\n  padding:0;\n  width:30px; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:first-child{\n    border-radius:0 3px 0 0; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:last-child{\n    border-radius:0 0 3px 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:first-child{\n  border-radius:3px 0 0 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:last-child{\n  border-radius:0 0 0 3px; }\n\n.bp3-numeric-input.bp3-large .bp3-button-group.bp3-vertical > .bp3-button{\n  width:40px; }\n\nform{\n  display:block; }\n.bp3-html-select select,\n.bp3-select select{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  -moz-appearance:none;\n  -webkit-appearance:none;\n  border-radius:3px;\n  height:30px;\n  padding:0 25px 0 10px;\n  width:100%; }\n  .bp3-html-select select > *, .bp3-select select > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-html-select select > .bp3-fill, .bp3-select select > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-html-select select::before,\n  .bp3-select select::before, .bp3-html-select select > *, .bp3-select select > *{\n    margin-right:7px; }\n  .bp3-html-select select:empty::before,\n  .bp3-select select:empty::before,\n  .bp3-html-select select > :last-child,\n  .bp3-select select > :last-child{\n    margin-right:0; }\n  .bp3-html-select select:hover,\n  .bp3-select select:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-html-select select:active,\n  .bp3-select select:active, .bp3-html-select select.bp3-active,\n  .bp3-select select.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-html-select select:disabled,\n  .bp3-select select:disabled, .bp3-html-select select.bp3-disabled,\n  .bp3-select select.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-html-select select:disabled.bp3-active,\n    .bp3-select select:disabled.bp3-active, .bp3-html-select select:disabled.bp3-active:hover,\n    .bp3-select select:disabled.bp3-active:hover, .bp3-html-select select.bp3-disabled.bp3-active,\n    .bp3-select select.bp3-disabled.bp3-active, .bp3-html-select select.bp3-disabled.bp3-active:hover,\n    .bp3-select select.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n\n.bp3-html-select.bp3-minimal select,\n.bp3-select.bp3-minimal select{\n  background:none;\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  .bp3-html-select.bp3-minimal select:hover,\n  .bp3-select.bp3-minimal select:hover{\n    background:rgba(167, 182, 194, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026;\n    text-decoration:none; }\n  .bp3-html-select.bp3-minimal select:active,\n  .bp3-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal select.bp3-active,\n  .bp3-select.bp3-minimal select.bp3-active{\n    background:rgba(115, 134, 148, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026; }\n  .bp3-html-select.bp3-minimal select:disabled,\n  .bp3-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal select:disabled:hover,\n  .bp3-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal select.bp3-disabled,\n  .bp3-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal select.bp3-disabled:hover,\n  .bp3-select.bp3-minimal select.bp3-disabled:hover{\n    background:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n    .bp3-html-select.bp3-minimal select:disabled.bp3-active,\n    .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active{\n      background:rgba(115, 134, 148, 0.3); }\n  .bp3-dark .bp3-html-select.bp3-minimal select, .bp3-html-select.bp3-minimal .bp3-dark select,\n  .bp3-dark .bp3-select.bp3-minimal select, .bp3-select.bp3-minimal .bp3-dark select{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover, .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover{\n      background:rgba(138, 155, 168, 0.15); }\n    .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:rgba(138, 155, 168, 0.3);\n      color:#f5f8fa; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal .bp3-dark select:disabled,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled, .bp3-select.bp3-minimal .bp3-dark select:disabled, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled:hover, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover{\n      background:none;\n      color:rgba(167, 182, 194, 0.6);\n      cursor:not-allowed; }\n      .bp3-dark .bp3-html-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active{\n        background:rgba(138, 155, 168, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-primary,\n  .bp3-select.bp3-minimal select.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover{\n      background:rgba(19, 124, 189, 0.15);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:rgba(19, 124, 189, 0.3);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled{\n      background:none;\n      color:rgba(16, 107, 163, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active{\n        background:rgba(19, 124, 189, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n      stroke:#106ba3; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary{\n      color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.2);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(72, 175, 240, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-success,\n  .bp3-select.bp3-minimal select.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover{\n      background:rgba(15, 153, 96, 0.15);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:rgba(15, 153, 96, 0.3);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled{\n      background:none;\n      color:rgba(13, 128, 80, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active{\n        background:rgba(15, 153, 96, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n      stroke:#0d8050; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success{\n      color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.2);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(61, 204, 145, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-warning,\n  .bp3-select.bp3-minimal select.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover{\n      background:rgba(217, 130, 43, 0.15);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:rgba(217, 130, 43, 0.3);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled{\n      background:none;\n      color:rgba(191, 115, 38, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active{\n        background:rgba(217, 130, 43, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n      stroke:#bf7326; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning{\n      color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.2);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(255, 179, 102, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-danger,\n  .bp3-select.bp3-minimal select.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover{\n      background:rgba(219, 55, 55, 0.15);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:rgba(219, 55, 55, 0.3);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled{\n      background:none;\n      color:rgba(194, 48, 48, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active{\n        background:rgba(219, 55, 55, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n      stroke:#c23030; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger{\n      color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.2);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(255, 115, 115, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n\n.bp3-html-select.bp3-large select,\n.bp3-select.bp3-large select{\n  font-size:16px;\n  height:40px;\n  padding-right:35px; }\n\n.bp3-dark .bp3-html-select select, .bp3-dark .bp3-select select{\n  background-color:#394b59;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n  color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover, .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    background-color:#202b33;\n    background-image:none;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-html-select select:disabled, .bp3-dark .bp3-select select:disabled, .bp3-dark .bp3-html-select select.bp3-disabled, .bp3-dark .bp3-select select.bp3-disabled{\n    background-color:rgba(57, 75, 89, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-html-select select:disabled.bp3-active, .bp3-dark .bp3-select select:disabled.bp3-active, .bp3-dark .bp3-html-select select.bp3-disabled.bp3-active, .bp3-dark .bp3-select select.bp3-disabled.bp3-active{\n      background:rgba(57, 75, 89, 0.7); }\n  .bp3-dark .bp3-html-select select .bp3-button-spinner .bp3-spinner-head, .bp3-dark .bp3-select select .bp3-button-spinner .bp3-spinner-head{\n    background:rgba(16, 22, 26, 0.5);\n    stroke:#8a9ba8; }\n\n.bp3-html-select select:disabled,\n.bp3-select select:disabled{\n  background-color:rgba(206, 217, 224, 0.5);\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-html-select .bp3-icon,\n.bp3-select .bp3-icon, .bp3-select::after{\n  color:#5c7080;\n  pointer-events:none;\n  position:absolute;\n  right:7px;\n  top:7px; }\n  .bp3-html-select .bp3-disabled.bp3-icon,\n  .bp3-select .bp3-disabled.bp3-icon, .bp3-disabled.bp3-select::after{\n    color:rgba(92, 112, 128, 0.6); }\n.bp3-html-select,\n.bp3-select{\n  display:inline-block;\n  letter-spacing:normal;\n  position:relative;\n  vertical-align:middle; }\n  .bp3-html-select select::-ms-expand,\n  .bp3-select select::-ms-expand{\n    display:none; }\n  .bp3-html-select .bp3-icon,\n  .bp3-select .bp3-icon{\n    color:#5c7080; }\n    .bp3-html-select .bp3-icon:hover,\n    .bp3-select .bp3-icon:hover{\n      color:#182026; }\n    .bp3-dark .bp3-html-select .bp3-icon, .bp3-dark\n    .bp3-select .bp3-icon{\n      color:#a7b6c2; }\n      .bp3-dark .bp3-html-select .bp3-icon:hover, .bp3-dark\n      .bp3-select .bp3-icon:hover{\n        color:#f5f8fa; }\n  .bp3-html-select.bp3-large::after,\n  .bp3-html-select.bp3-large .bp3-icon,\n  .bp3-select.bp3-large::after,\n  .bp3-select.bp3-large .bp3-icon{\n    right:12px;\n    top:12px; }\n  .bp3-html-select.bp3-fill,\n  .bp3-html-select.bp3-fill select,\n  .bp3-select.bp3-fill,\n  .bp3-select.bp3-fill select{\n    width:100%; }\n  .bp3-dark .bp3-html-select option, .bp3-dark\n  .bp3-select option{\n    background-color:#30404d;\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select option:disabled, .bp3-dark\n  .bp3-select option:disabled{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-html-select::after, .bp3-dark\n  .bp3-select::after{\n    color:#a7b6c2; }\n\n.bp3-select::after{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  content:\"\"; }\n.bp3-running-text table, table.bp3-html-table{\n  border-spacing:0;\n  font-size:14px; }\n  .bp3-running-text table th, table.bp3-html-table th,\n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    padding:11px;\n    text-align:left;\n    vertical-align:top; }\n  .bp3-running-text table th, table.bp3-html-table th{\n    color:#182026;\n    font-weight:600; }\n  \n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    color:#182026; }\n  .bp3-running-text table tbody tr:first-child th, table.bp3-html-table tbody tr:first-child th,\n  .bp3-running-text table tbody tr:first-child td,\n  table.bp3-html-table tbody tr:first-child td,\n  .bp3-running-text table tfoot tr:first-child th,\n  table.bp3-html-table tfoot tr:first-child th,\n  .bp3-running-text table tfoot tr:first-child td,\n  table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-running-text table th, .bp3-running-text .bp3-dark table th, .bp3-dark table.bp3-html-table th{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table td, .bp3-running-text .bp3-dark table td, .bp3-dark table.bp3-html-table td{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table tbody tr:first-child th, .bp3-running-text .bp3-dark table tbody tr:first-child th, .bp3-dark table.bp3-html-table tbody tr:first-child th,\n  .bp3-dark .bp3-running-text table tbody tr:first-child td,\n  .bp3-running-text .bp3-dark table tbody tr:first-child td,\n  .bp3-dark table.bp3-html-table tbody tr:first-child td,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child th,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child th,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child th,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child td,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child td,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-condensed th,\ntable.bp3-html-table.bp3-html-table-condensed td, table.bp3-html-table.bp3-small th,\ntable.bp3-html-table.bp3-small td{\n  padding-bottom:6px;\n  padding-top:6px; }\n\ntable.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n  background:rgba(191, 204, 214, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n  -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered tbody tr td,\ntable.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n  -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n  table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n    -webkit-box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-interactive tbody tr:hover td{\n  background-color:rgba(191, 204, 214, 0.3);\n  cursor:pointer; }\n\ntable.bp3-html-table.bp3-interactive tbody tr:active td{\n  background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-dark table.bp3-html-table{ }\n  .bp3-dark table.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n    background:rgba(92, 112, 128, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td,\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n      -webkit-box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15);\n              box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:first-child{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:hover td{\n    background-color:rgba(92, 112, 128, 0.3);\n    cursor:pointer; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:active td{\n    background-color:rgba(92, 112, 128, 0.4); }\n\n.bp3-key-combo{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center; }\n  .bp3-key-combo > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-key-combo > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-key-combo::before,\n  .bp3-key-combo > *{\n    margin-right:5px; }\n  .bp3-key-combo:empty::before,\n  .bp3-key-combo > :last-child{\n    margin-right:0; }\n\n.bp3-hotkey-dialog{\n  padding-bottom:0;\n  top:40px; }\n  .bp3-hotkey-dialog .bp3-dialog-body{\n    margin:0;\n    padding:0; }\n  .bp3-hotkey-dialog .bp3-hotkey-label{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1; }\n\n.bp3-hotkey-column{\n  margin:auto;\n  max-height:80vh;\n  overflow-y:auto;\n  padding:30px; }\n  .bp3-hotkey-column .bp3-heading{\n    margin-bottom:20px; }\n    .bp3-hotkey-column .bp3-heading:not(:first-child){\n      margin-top:40px; }\n\n.bp3-hotkey{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:justify;\n      -ms-flex-pack:justify;\n          justify-content:space-between;\n  margin-left:0;\n  margin-right:0; }\n  .bp3-hotkey:not(:last-child){\n    margin-bottom:10px; }\n.bp3-icon{\n  display:inline-block;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  vertical-align:text-bottom; }\n  .bp3-icon:not(:empty)::before{\n    content:\"\" !important;\n    content:unset !important; }\n  .bp3-icon > svg{\n    display:block; }\n    .bp3-icon > svg:not([fill]){\n      fill:currentColor; }\n\n.bp3-icon.bp3-intent-primary, .bp3-icon-standard.bp3-intent-primary, .bp3-icon-large.bp3-intent-primary{\n  color:#106ba3; }\n  .bp3-dark .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-icon-large.bp3-intent-primary{\n    color:#48aff0; }\n\n.bp3-icon.bp3-intent-success, .bp3-icon-standard.bp3-intent-success, .bp3-icon-large.bp3-intent-success{\n  color:#0d8050; }\n  .bp3-dark .bp3-icon.bp3-intent-success, .bp3-dark .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-icon-large.bp3-intent-success{\n    color:#3dcc91; }\n\n.bp3-icon.bp3-intent-warning, .bp3-icon-standard.bp3-intent-warning, .bp3-icon-large.bp3-intent-warning{\n  color:#bf7326; }\n  .bp3-dark .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-icon-large.bp3-intent-warning{\n    color:#ffb366; }\n\n.bp3-icon.bp3-intent-danger, .bp3-icon-standard.bp3-intent-danger, .bp3-icon-large.bp3-intent-danger{\n  color:#c23030; }\n  .bp3-dark .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-icon-large.bp3-intent-danger{\n    color:#ff7373; }\n\nspan.bp3-icon-standard{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon-large{\n  font-family:\"Icons20\", sans-serif;\n  font-size:20px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon:empty{\n  font-family:\"Icons20\";\n  font-size:inherit;\n  font-style:normal;\n  font-weight:400;\n  line-height:1; }\n  span.bp3-icon:empty::before{\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased; }\n\n.bp3-icon-add::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-artifact::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-folder::before{\n  content:\"\"; }\n\n.bp3-icon-airplane::before{\n  content:\"\"; }\n\n.bp3-icon-align-center::before{\n  content:\"\"; }\n\n.bp3-icon-align-justify::before{\n  content:\"\"; }\n\n.bp3-icon-align-left::before{\n  content:\"\"; }\n\n.bp3-icon-align-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-horizontal-center::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-left::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-top::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-vertical-center::before{\n  content:\"\"; }\n\n.bp3-icon-annotation::before{\n  content:\"\"; }\n\n.bp3-icon-application::before{\n  content:\"\"; }\n\n.bp3-icon-applications::before{\n  content:\"\"; }\n\n.bp3-icon-archive::before{\n  content:\"\"; }\n\n.bp3-icon-arrow-bottom-left::before{\n  content:\"↙\"; }\n\n.bp3-icon-arrow-bottom-right::before{\n  content:\"↘\"; }\n\n.bp3-icon-arrow-down::before{\n  content:\"↓\"; }\n\n.bp3-icon-arrow-left::before{\n  content:\"←\"; }\n\n.bp3-icon-arrow-right::before{\n  content:\"→\"; }\n\n.bp3-icon-arrow-top-left::before{\n  content:\"↖\"; }\n\n.bp3-icon-arrow-top-right::before{\n  content:\"↗\"; }\n\n.bp3-icon-arrow-up::before{\n  content:\"↑\"; }\n\n.bp3-icon-arrows-horizontal::before{\n  content:\"↔\"; }\n\n.bp3-icon-arrows-vertical::before{\n  content:\"↕\"; }\n\n.bp3-icon-asterisk::before{\n  content:\"*\"; }\n\n.bp3-icon-automatic-updates::before{\n  content:\"\"; }\n\n.bp3-icon-badge::before{\n  content:\"\"; }\n\n.bp3-icon-ban-circle::before{\n  content:\"\"; }\n\n.bp3-icon-bank-account::before{\n  content:\"\"; }\n\n.bp3-icon-barcode::before{\n  content:\"\"; }\n\n.bp3-icon-blank::before{\n  content:\"\"; }\n\n.bp3-icon-blocked-person::before{\n  content:\"\"; }\n\n.bp3-icon-bold::before{\n  content:\"\"; }\n\n.bp3-icon-book::before{\n  content:\"\"; }\n\n.bp3-icon-bookmark::before{\n  content:\"\"; }\n\n.bp3-icon-box::before{\n  content:\"\"; }\n\n.bp3-icon-briefcase::before{\n  content:\"\"; }\n\n.bp3-icon-bring-data::before{\n  content:\"\"; }\n\n.bp3-icon-build::before{\n  content:\"\"; }\n\n.bp3-icon-calculator::before{\n  content:\"\"; }\n\n.bp3-icon-calendar::before{\n  content:\"\"; }\n\n.bp3-icon-camera::before{\n  content:\"\"; }\n\n.bp3-icon-caret-down::before{\n  content:\"⌄\"; }\n\n.bp3-icon-caret-left::before{\n  content:\"〈\"; }\n\n.bp3-icon-caret-right::before{\n  content:\"〉\"; }\n\n.bp3-icon-caret-up::before{\n  content:\"⌃\"; }\n\n.bp3-icon-cell-tower::before{\n  content:\"\"; }\n\n.bp3-icon-changes::before{\n  content:\"\"; }\n\n.bp3-icon-chart::before{\n  content:\"\"; }\n\n.bp3-icon-chat::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-backward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-forward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-circle::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-down::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-left::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-right::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-up::before{\n  content:\"\"; }\n\n.bp3-icon-citation::before{\n  content:\"\"; }\n\n.bp3-icon-clean::before{\n  content:\"\"; }\n\n.bp3-icon-clipboard::before{\n  content:\"\"; }\n\n.bp3-icon-cloud::before{\n  content:\"☁\"; }\n\n.bp3-icon-cloud-download::before{\n  content:\"\"; }\n\n.bp3-icon-cloud-upload::before{\n  content:\"\"; }\n\n.bp3-icon-code::before{\n  content:\"\"; }\n\n.bp3-icon-code-block::before{\n  content:\"\"; }\n\n.bp3-icon-cog::before{\n  content:\"\"; }\n\n.bp3-icon-collapse-all::before{\n  content:\"\"; }\n\n.bp3-icon-column-layout::before{\n  content:\"\"; }\n\n.bp3-icon-comment::before{\n  content:\"\"; }\n\n.bp3-icon-comparison::before{\n  content:\"\"; }\n\n.bp3-icon-compass::before{\n  content:\"\"; }\n\n.bp3-icon-compressed::before{\n  content:\"\"; }\n\n.bp3-icon-confirm::before{\n  content:\"\"; }\n\n.bp3-icon-console::before{\n  content:\"\"; }\n\n.bp3-icon-contrast::before{\n  content:\"\"; }\n\n.bp3-icon-control::before{\n  content:\"\"; }\n\n.bp3-icon-credit-card::before{\n  content:\"\"; }\n\n.bp3-icon-cross::before{\n  content:\"✗\"; }\n\n.bp3-icon-crown::before{\n  content:\"\"; }\n\n.bp3-icon-cube::before{\n  content:\"\"; }\n\n.bp3-icon-cube-add::before{\n  content:\"\"; }\n\n.bp3-icon-cube-remove::before{\n  content:\"\"; }\n\n.bp3-icon-curved-range-chart::before{\n  content:\"\"; }\n\n.bp3-icon-cut::before{\n  content:\"\"; }\n\n.bp3-icon-dashboard::before{\n  content:\"\"; }\n\n.bp3-icon-data-lineage::before{\n  content:\"\"; }\n\n.bp3-icon-database::before{\n  content:\"\"; }\n\n.bp3-icon-delete::before{\n  content:\"\"; }\n\n.bp3-icon-delta::before{\n  content:\"Δ\"; }\n\n.bp3-icon-derive-column::before{\n  content:\"\"; }\n\n.bp3-icon-desktop::before{\n  content:\"\"; }\n\n.bp3-icon-diagnosis::before{\n  content:\"\"; }\n\n.bp3-icon-diagram-tree::before{\n  content:\"\"; }\n\n.bp3-icon-direction-left::before{\n  content:\"\"; }\n\n.bp3-icon-direction-right::before{\n  content:\"\"; }\n\n.bp3-icon-disable::before{\n  content:\"\"; }\n\n.bp3-icon-document::before{\n  content:\"\"; }\n\n.bp3-icon-document-open::before{\n  content:\"\"; }\n\n.bp3-icon-document-share::before{\n  content:\"\"; }\n\n.bp3-icon-dollar::before{\n  content:\"$\"; }\n\n.bp3-icon-dot::before{\n  content:\"•\"; }\n\n.bp3-icon-double-caret-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-double-caret-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-doughnut-chart::before{\n  content:\"\"; }\n\n.bp3-icon-download::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-draw::before{\n  content:\"\"; }\n\n.bp3-icon-drive-time::before{\n  content:\"\"; }\n\n.bp3-icon-duplicate::before{\n  content:\"\"; }\n\n.bp3-icon-edit::before{\n  content:\"✎\"; }\n\n.bp3-icon-eject::before{\n  content:\"⏏\"; }\n\n.bp3-icon-endorsed::before{\n  content:\"\"; }\n\n.bp3-icon-envelope::before{\n  content:\"✉\"; }\n\n.bp3-icon-equals::before{\n  content:\"\"; }\n\n.bp3-icon-eraser::before{\n  content:\"\"; }\n\n.bp3-icon-error::before{\n  content:\"\"; }\n\n.bp3-icon-euro::before{\n  content:\"€\"; }\n\n.bp3-icon-exchange::before{\n  content:\"\"; }\n\n.bp3-icon-exclude-row::before{\n  content:\"\"; }\n\n.bp3-icon-expand-all::before{\n  content:\"\"; }\n\n.bp3-icon-export::before{\n  content:\"\"; }\n\n.bp3-icon-eye-off::before{\n  content:\"\"; }\n\n.bp3-icon-eye-on::before{\n  content:\"\"; }\n\n.bp3-icon-eye-open::before{\n  content:\"\"; }\n\n.bp3-icon-fast-backward::before{\n  content:\"\"; }\n\n.bp3-icon-fast-forward::before{\n  content:\"\"; }\n\n.bp3-icon-feed::before{\n  content:\"\"; }\n\n.bp3-icon-feed-subscribed::before{\n  content:\"\"; }\n\n.bp3-icon-film::before{\n  content:\"\"; }\n\n.bp3-icon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-filter-keep::before{\n  content:\"\"; }\n\n.bp3-icon-filter-list::before{\n  content:\"\"; }\n\n.bp3-icon-filter-open::before{\n  content:\"\"; }\n\n.bp3-icon-filter-remove::before{\n  content:\"\"; }\n\n.bp3-icon-flag::before{\n  content:\"⚑\"; }\n\n.bp3-icon-flame::before{\n  content:\"\"; }\n\n.bp3-icon-flash::before{\n  content:\"\"; }\n\n.bp3-icon-floppy-disk::before{\n  content:\"\"; }\n\n.bp3-icon-flow-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flow-end::before{\n  content:\"\"; }\n\n.bp3-icon-flow-linear::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flows::before{\n  content:\"\"; }\n\n.bp3-icon-folder-close::before{\n  content:\"\"; }\n\n.bp3-icon-folder-new::before{\n  content:\"\"; }\n\n.bp3-icon-folder-open::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared-open::before{\n  content:\"\"; }\n\n.bp3-icon-follower::before{\n  content:\"\"; }\n\n.bp3-icon-following::before{\n  content:\"\"; }\n\n.bp3-icon-font::before{\n  content:\"\"; }\n\n.bp3-icon-fork::before{\n  content:\"\"; }\n\n.bp3-icon-form::before{\n  content:\"\"; }\n\n.bp3-icon-full-circle::before{\n  content:\"\"; }\n\n.bp3-icon-full-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-fullscreen::before{\n  content:\"\"; }\n\n.bp3-icon-function::before{\n  content:\"\"; }\n\n.bp3-icon-gantt-chart::before{\n  content:\"\"; }\n\n.bp3-icon-geolocation::before{\n  content:\"\"; }\n\n.bp3-icon-geosearch::before{\n  content:\"\"; }\n\n.bp3-icon-git-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-commit::before{\n  content:\"\"; }\n\n.bp3-icon-git-merge::before{\n  content:\"\"; }\n\n.bp3-icon-git-new-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-pull::before{\n  content:\"\"; }\n\n.bp3-icon-git-push::before{\n  content:\"\"; }\n\n.bp3-icon-git-repo::before{\n  content:\"\"; }\n\n.bp3-icon-glass::before{\n  content:\"\"; }\n\n.bp3-icon-globe::before{\n  content:\"\"; }\n\n.bp3-icon-globe-network::before{\n  content:\"\"; }\n\n.bp3-icon-graph::before{\n  content:\"\"; }\n\n.bp3-icon-graph-remove::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-grid::before{\n  content:\"\"; }\n\n.bp3-icon-grid-view::before{\n  content:\"\"; }\n\n.bp3-icon-group-objects::before{\n  content:\"\"; }\n\n.bp3-icon-grouped-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-hand::before{\n  content:\"\"; }\n\n.bp3-icon-hand-down::before{\n  content:\"\"; }\n\n.bp3-icon-hand-left::before{\n  content:\"\"; }\n\n.bp3-icon-hand-right::before{\n  content:\"\"; }\n\n.bp3-icon-hand-up::before{\n  content:\"\"; }\n\n.bp3-icon-header::before{\n  content:\"\"; }\n\n.bp3-icon-header-one::before{\n  content:\"\"; }\n\n.bp3-icon-header-two::before{\n  content:\"\"; }\n\n.bp3-icon-headset::before{\n  content:\"\"; }\n\n.bp3-icon-heart::before{\n  content:\"♥\"; }\n\n.bp3-icon-heart-broken::before{\n  content:\"\"; }\n\n.bp3-icon-heat-grid::before{\n  content:\"\"; }\n\n.bp3-icon-heatmap::before{\n  content:\"\"; }\n\n.bp3-icon-help::before{\n  content:\"?\"; }\n\n.bp3-icon-helper-management::before{\n  content:\"\"; }\n\n.bp3-icon-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-history::before{\n  content:\"\"; }\n\n.bp3-icon-home::before{\n  content:\"⌂\"; }\n\n.bp3-icon-horizontal-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-id-number::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-left::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-right::before{\n  content:\"\"; }\n\n.bp3-icon-import::before{\n  content:\"\"; }\n\n.bp3-icon-inbox::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-geo::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-search::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-update::before{\n  content:\"\"; }\n\n.bp3-icon-info-sign::before{\n  content:\"ℹ\"; }\n\n.bp3-icon-inheritance::before{\n  content:\"\"; }\n\n.bp3-icon-inner-join::before{\n  content:\"\"; }\n\n.bp3-icon-insert::before{\n  content:\"\"; }\n\n.bp3-icon-intersection::before{\n  content:\"\"; }\n\n.bp3-icon-ip-address::before{\n  content:\"\"; }\n\n.bp3-icon-issue::before{\n  content:\"\"; }\n\n.bp3-icon-issue-closed::before{\n  content:\"\"; }\n\n.bp3-icon-issue-new::before{\n  content:\"\"; }\n\n.bp3-icon-italic::before{\n  content:\"\"; }\n\n.bp3-icon-join-table::before{\n  content:\"\"; }\n\n.bp3-icon-key::before{\n  content:\"\"; }\n\n.bp3-icon-key-backspace::before{\n  content:\"\"; }\n\n.bp3-icon-key-command::before{\n  content:\"\"; }\n\n.bp3-icon-key-control::before{\n  content:\"\"; }\n\n.bp3-icon-key-delete::before{\n  content:\"\"; }\n\n.bp3-icon-key-enter::before{\n  content:\"\"; }\n\n.bp3-icon-key-escape::before{\n  content:\"\"; }\n\n.bp3-icon-key-option::before{\n  content:\"\"; }\n\n.bp3-icon-key-shift::before{\n  content:\"\"; }\n\n.bp3-icon-key-tab::before{\n  content:\"\"; }\n\n.bp3-icon-known-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-lab-test::before{\n  content:\"\"; }\n\n.bp3-icon-label::before{\n  content:\"\"; }\n\n.bp3-icon-layer::before{\n  content:\"\"; }\n\n.bp3-icon-layers::before{\n  content:\"\"; }\n\n.bp3-icon-layout::before{\n  content:\"\"; }\n\n.bp3-icon-layout-auto::before{\n  content:\"\"; }\n\n.bp3-icon-layout-balloon::before{\n  content:\"\"; }\n\n.bp3-icon-layout-circle::before{\n  content:\"\"; }\n\n.bp3-icon-layout-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-group-by::before{\n  content:\"\"; }\n\n.bp3-icon-layout-hierarchy::before{\n  content:\"\"; }\n\n.bp3-icon-layout-linear::before{\n  content:\"\"; }\n\n.bp3-icon-layout-skew-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-sorted-clusters::before{\n  content:\"\"; }\n\n.bp3-icon-learning::before{\n  content:\"\"; }\n\n.bp3-icon-left-join::before{\n  content:\"\"; }\n\n.bp3-icon-less-than::before{\n  content:\"\"; }\n\n.bp3-icon-less-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-lifesaver::before{\n  content:\"\"; }\n\n.bp3-icon-lightbulb::before{\n  content:\"\"; }\n\n.bp3-icon-link::before{\n  content:\"\"; }\n\n.bp3-icon-list::before{\n  content:\"☰\"; }\n\n.bp3-icon-list-columns::before{\n  content:\"\"; }\n\n.bp3-icon-list-detail-view::before{\n  content:\"\"; }\n\n.bp3-icon-locate::before{\n  content:\"\"; }\n\n.bp3-icon-lock::before{\n  content:\"\"; }\n\n.bp3-icon-log-in::before{\n  content:\"\"; }\n\n.bp3-icon-log-out::before{\n  content:\"\"; }\n\n.bp3-icon-manual::before{\n  content:\"\"; }\n\n.bp3-icon-manually-entered-data::before{\n  content:\"\"; }\n\n.bp3-icon-map::before{\n  content:\"\"; }\n\n.bp3-icon-map-create::before{\n  content:\"\"; }\n\n.bp3-icon-map-marker::before{\n  content:\"\"; }\n\n.bp3-icon-maximize::before{\n  content:\"\"; }\n\n.bp3-icon-media::before{\n  content:\"\"; }\n\n.bp3-icon-menu::before{\n  content:\"\"; }\n\n.bp3-icon-menu-closed::before{\n  content:\"\"; }\n\n.bp3-icon-menu-open::before{\n  content:\"\"; }\n\n.bp3-icon-merge-columns::before{\n  content:\"\"; }\n\n.bp3-icon-merge-links::before{\n  content:\"\"; }\n\n.bp3-icon-minimize::before{\n  content:\"\"; }\n\n.bp3-icon-minus::before{\n  content:\"−\"; }\n\n.bp3-icon-mobile-phone::before{\n  content:\"\"; }\n\n.bp3-icon-mobile-video::before{\n  content:\"\"; }\n\n.bp3-icon-moon::before{\n  content:\"\"; }\n\n.bp3-icon-more::before{\n  content:\"\"; }\n\n.bp3-icon-mountain::before{\n  content:\"\"; }\n\n.bp3-icon-move::before{\n  content:\"\"; }\n\n.bp3-icon-mugshot::before{\n  content:\"\"; }\n\n.bp3-icon-multi-select::before{\n  content:\"\"; }\n\n.bp3-icon-music::before{\n  content:\"\"; }\n\n.bp3-icon-new-drawing::before{\n  content:\"\"; }\n\n.bp3-icon-new-grid-item::before{\n  content:\"\"; }\n\n.bp3-icon-new-layer::before{\n  content:\"\"; }\n\n.bp3-icon-new-layers::before{\n  content:\"\"; }\n\n.bp3-icon-new-link::before{\n  content:\"\"; }\n\n.bp3-icon-new-object::before{\n  content:\"\"; }\n\n.bp3-icon-new-person::before{\n  content:\"\"; }\n\n.bp3-icon-new-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-new-text-box::before{\n  content:\"\"; }\n\n.bp3-icon-ninja::before{\n  content:\"\"; }\n\n.bp3-icon-not-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-notifications::before{\n  content:\"\"; }\n\n.bp3-icon-notifications-updated::before{\n  content:\"\"; }\n\n.bp3-icon-numbered-list::before{\n  content:\"\"; }\n\n.bp3-icon-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-office::before{\n  content:\"\"; }\n\n.bp3-icon-offline::before{\n  content:\"\"; }\n\n.bp3-icon-oil-field::before{\n  content:\"\"; }\n\n.bp3-icon-one-column::before{\n  content:\"\"; }\n\n.bp3-icon-outdated::before{\n  content:\"\"; }\n\n.bp3-icon-page-layout::before{\n  content:\"\"; }\n\n.bp3-icon-panel-stats::before{\n  content:\"\"; }\n\n.bp3-icon-panel-table::before{\n  content:\"\"; }\n\n.bp3-icon-paperclip::before{\n  content:\"\"; }\n\n.bp3-icon-paragraph::before{\n  content:\"\"; }\n\n.bp3-icon-path::before{\n  content:\"\"; }\n\n.bp3-icon-path-search::before{\n  content:\"\"; }\n\n.bp3-icon-pause::before{\n  content:\"\"; }\n\n.bp3-icon-people::before{\n  content:\"\"; }\n\n.bp3-icon-percentage::before{\n  content:\"\"; }\n\n.bp3-icon-person::before{\n  content:\"\"; }\n\n.bp3-icon-phone::before{\n  content:\"☎\"; }\n\n.bp3-icon-pie-chart::before{\n  content:\"\"; }\n\n.bp3-icon-pin::before{\n  content:\"\"; }\n\n.bp3-icon-pivot::before{\n  content:\"\"; }\n\n.bp3-icon-pivot-table::before{\n  content:\"\"; }\n\n.bp3-icon-play::before{\n  content:\"\"; }\n\n.bp3-icon-plus::before{\n  content:\"+\"; }\n\n.bp3-icon-polygon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-power::before{\n  content:\"\"; }\n\n.bp3-icon-predictive-analysis::before{\n  content:\"\"; }\n\n.bp3-icon-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-presentation::before{\n  content:\"\"; }\n\n.bp3-icon-print::before{\n  content:\"⎙\"; }\n\n.bp3-icon-projects::before{\n  content:\"\"; }\n\n.bp3-icon-properties::before{\n  content:\"\"; }\n\n.bp3-icon-property::before{\n  content:\"\"; }\n\n.bp3-icon-publish-function::before{\n  content:\"\"; }\n\n.bp3-icon-pulse::before{\n  content:\"\"; }\n\n.bp3-icon-random::before{\n  content:\"\"; }\n\n.bp3-icon-record::before{\n  content:\"\"; }\n\n.bp3-icon-redo::before{\n  content:\"\"; }\n\n.bp3-icon-refresh::before{\n  content:\"\"; }\n\n.bp3-icon-regression-chart::before{\n  content:\"\"; }\n\n.bp3-icon-remove::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-repeat::before{\n  content:\"\"; }\n\n.bp3-icon-reset::before{\n  content:\"\"; }\n\n.bp3-icon-resolve::before{\n  content:\"\"; }\n\n.bp3-icon-rig::before{\n  content:\"\"; }\n\n.bp3-icon-right-join::before{\n  content:\"\"; }\n\n.bp3-icon-ring::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-document::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-page::before{\n  content:\"\"; }\n\n.bp3-icon-satellite::before{\n  content:\"\"; }\n\n.bp3-icon-saved::before{\n  content:\"\"; }\n\n.bp3-icon-scatter-plot::before{\n  content:\"\"; }\n\n.bp3-icon-search::before{\n  content:\"\"; }\n\n.bp3-icon-search-around::before{\n  content:\"\"; }\n\n.bp3-icon-search-template::before{\n  content:\"\"; }\n\n.bp3-icon-search-text::before{\n  content:\"\"; }\n\n.bp3-icon-segmented-control::before{\n  content:\"\"; }\n\n.bp3-icon-select::before{\n  content:\"\"; }\n\n.bp3-icon-selection::before{\n  content:\"⦿\"; }\n\n.bp3-icon-send-to::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-graph::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-map::before{\n  content:\"\"; }\n\n.bp3-icon-series-add::before{\n  content:\"\"; }\n\n.bp3-icon-series-configuration::before{\n  content:\"\"; }\n\n.bp3-icon-series-derived::before{\n  content:\"\"; }\n\n.bp3-icon-series-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-series-search::before{\n  content:\"\"; }\n\n.bp3-icon-settings::before{\n  content:\"\"; }\n\n.bp3-icon-share::before{\n  content:\"\"; }\n\n.bp3-icon-shield::before{\n  content:\"\"; }\n\n.bp3-icon-shop::before{\n  content:\"\"; }\n\n.bp3-icon-shopping-cart::before{\n  content:\"\"; }\n\n.bp3-icon-signal-search::before{\n  content:\"\"; }\n\n.bp3-icon-sim-card::before{\n  content:\"\"; }\n\n.bp3-icon-slash::before{\n  content:\"\"; }\n\n.bp3-icon-small-cross::before{\n  content:\"\"; }\n\n.bp3-icon-small-minus::before{\n  content:\"\"; }\n\n.bp3-icon-small-plus::before{\n  content:\"\"; }\n\n.bp3-icon-small-tick::before{\n  content:\"\"; }\n\n.bp3-icon-snowflake::before{\n  content:\"\"; }\n\n.bp3-icon-social-media::before{\n  content:\"\"; }\n\n.bp3-icon-sort::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-asc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-split-columns::before{\n  content:\"\"; }\n\n.bp3-icon-square::before{\n  content:\"\"; }\n\n.bp3-icon-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-star::before{\n  content:\"★\"; }\n\n.bp3-icon-star-empty::before{\n  content:\"☆\"; }\n\n.bp3-icon-step-backward::before{\n  content:\"\"; }\n\n.bp3-icon-step-chart::before{\n  content:\"\"; }\n\n.bp3-icon-step-forward::before{\n  content:\"\"; }\n\n.bp3-icon-stop::before{\n  content:\"\"; }\n\n.bp3-icon-stopwatch::before{\n  content:\"\"; }\n\n.bp3-icon-strikethrough::before{\n  content:\"\"; }\n\n.bp3-icon-style::before{\n  content:\"\"; }\n\n.bp3-icon-swap-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-swap-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-circle::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-cross::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-diamond::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-square::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-down::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-up::before{\n  content:\"\"; }\n\n.bp3-icon-tag::before{\n  content:\"\"; }\n\n.bp3-icon-take-action::before{\n  content:\"\"; }\n\n.bp3-icon-taxi::before{\n  content:\"\"; }\n\n.bp3-icon-text-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-th::before{\n  content:\"\"; }\n\n.bp3-icon-th-derived::before{\n  content:\"\"; }\n\n.bp3-icon-th-disconnect::before{\n  content:\"\"; }\n\n.bp3-icon-th-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-th-list::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-down::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-up::before{\n  content:\"\"; }\n\n.bp3-icon-tick::before{\n  content:\"✓\"; }\n\n.bp3-icon-tick-circle::before{\n  content:\"\"; }\n\n.bp3-icon-time::before{\n  content:\"⏲\"; }\n\n.bp3-icon-timeline-area-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-events::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-line-chart::before{\n  content:\"\"; }\n\n.bp3-icon-tint::before{\n  content:\"\"; }\n\n.bp3-icon-torch::before{\n  content:\"\"; }\n\n.bp3-icon-tractor::before{\n  content:\"\"; }\n\n.bp3-icon-train::before{\n  content:\"\"; }\n\n.bp3-icon-translate::before{\n  content:\"\"; }\n\n.bp3-icon-trash::before{\n  content:\"\"; }\n\n.bp3-icon-tree::before{\n  content:\"\"; }\n\n.bp3-icon-trending-down::before{\n  content:\"\"; }\n\n.bp3-icon-trending-up::before{\n  content:\"\"; }\n\n.bp3-icon-truck::before{\n  content:\"\"; }\n\n.bp3-icon-two-columns::before{\n  content:\"\"; }\n\n.bp3-icon-unarchive::before{\n  content:\"\"; }\n\n.bp3-icon-underline::before{\n  content:\"⎁\"; }\n\n.bp3-icon-undo::before{\n  content:\"⎌\"; }\n\n.bp3-icon-ungroup-objects::before{\n  content:\"\"; }\n\n.bp3-icon-unknown-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-unlock::before{\n  content:\"\"; }\n\n.bp3-icon-unpin::before{\n  content:\"\"; }\n\n.bp3-icon-unresolve::before{\n  content:\"\"; }\n\n.bp3-icon-updated::before{\n  content:\"\"; }\n\n.bp3-icon-upload::before{\n  content:\"\"; }\n\n.bp3-icon-user::before{\n  content:\"\"; }\n\n.bp3-icon-variable::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-video::before{\n  content:\"\"; }\n\n.bp3-icon-volume-down::before{\n  content:\"\"; }\n\n.bp3-icon-volume-off::before{\n  content:\"\"; }\n\n.bp3-icon-volume-up::before{\n  content:\"\"; }\n\n.bp3-icon-walk::before{\n  content:\"\"; }\n\n.bp3-icon-warning-sign::before{\n  content:\"\"; }\n\n.bp3-icon-waterfall-chart::before{\n  content:\"\"; }\n\n.bp3-icon-widget::before{\n  content:\"\"; }\n\n.bp3-icon-widget-button::before{\n  content:\"\"; }\n\n.bp3-icon-widget-footer::before{\n  content:\"\"; }\n\n.bp3-icon-widget-header::before{\n  content:\"\"; }\n\n.bp3-icon-wrench::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-in::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-out::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-to-fit::before{\n  content:\"\"; }\n.bp3-submenu > .bp3-popover-wrapper{\n  display:block; }\n\n.bp3-submenu .bp3-popover-target{\n  display:block; }\n  .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{ }\n\n.bp3-submenu.bp3-popover{\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0 5px; }\n  .bp3-submenu.bp3-popover > .bp3-popover-content{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-submenu.bp3-popover, .bp3-submenu.bp3-popover.bp3-dark{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-dark .bp3-submenu.bp3-popover > .bp3-popover-content, .bp3-submenu.bp3-popover.bp3-dark > .bp3-popover-content{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n.bp3-menu{\n  background:#ffffff;\n  border-radius:3px;\n  color:#182026;\n  list-style:none;\n  margin:0;\n  min-width:180px;\n  padding:5px;\n  text-align:left; }\n\n.bp3-menu-divider{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px; }\n  .bp3-dark .bp3-menu-divider{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-menu-item{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  border-radius:2px;\n  color:inherit;\n  line-height:20px;\n  padding:5px 7px;\n  text-decoration:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-menu-item > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-menu-item > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > *{\n    margin-right:7px; }\n  .bp3-menu-item:empty::before,\n  .bp3-menu-item > :last-child{\n    margin-right:0; }\n  .bp3-menu-item > .bp3-fill{\n    word-break:break-word; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    background-color:rgba(167, 182, 194, 0.3);\n    cursor:pointer;\n    text-decoration:none; }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-dark .bp3-menu-item{\n    color:inherit; }\n    .bp3-dark .bp3-menu-item:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n      background-color:rgba(138, 155, 168, 0.15);\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-disabled{\n      background-color:inherit;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-menu-item.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-primary::before, .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary:active, .bp3-menu-item.bp3-intent-primary:active::before, .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-success::before, .bp3-menu-item.bp3-intent-success::after,\n    .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-menu-item.bp3-intent-success:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success:active, .bp3-menu-item.bp3-intent-success:active::before, .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-warning::before, .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning:active, .bp3-menu-item.bp3-intent-warning:active::before, .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-danger::before, .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger:active, .bp3-menu-item.bp3-intent-danger:active::before, .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    margin-right:7px; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > .bp3-icon{\n    color:#5c7080;\n    margin-top:2px; }\n  .bp3-menu-item .bp3-menu-item-label{\n    color:#5c7080; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    color:inherit; }\n  .bp3-menu-item.bp3-active, .bp3-menu-item:active{\n    background-color:rgba(115, 134, 148, 0.3); }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit !important;\n    color:rgba(92, 112, 128, 0.6) !important;\n    cursor:not-allowed !important;\n    outline:none !important; }\n    .bp3-menu-item.bp3-disabled::before,\n    .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-large .bp3-menu-item{\n    font-size:16px;\n    line-height:22px;\n    padding:9px 7px; }\n    .bp3-large .bp3-menu-item .bp3-icon{\n      margin-top:3px; }\n    .bp3-large .bp3-menu-item::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      margin-right:10px;\n      margin-top:1px; }\n\nbutton.bp3-menu-item{\n  background:none;\n  border:none;\n  text-align:left;\n  width:100%; }\n.bp3-menu-header{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px;\n  cursor:default;\n  padding-left:2px; }\n  .bp3-dark .bp3-menu-header{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n  .bp3-menu-header:first-of-type{\n    border-top:none; }\n  .bp3-menu-header > h6{\n    color:#182026;\n    font-weight:600;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    line-height:17px;\n    margin:0;\n    padding:10px 7px 0 1px; }\n    .bp3-dark .bp3-menu-header > h6{\n      color:#f5f8fa; }\n  .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n  .bp3-large .bp3-menu-header > h6{\n    font-size:18px;\n    padding-bottom:5px;\n    padding-top:15px; }\n  .bp3-large .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n\n.bp3-dark .bp3-menu{\n  background:#30404d;\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-menu-item{ }\n  .bp3-dark .bp3-menu-item.bp3-intent-primary{\n    color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary::before, .bp3-dark .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary:active, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-success{\n    color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success::before, .bp3-dark .bp3-menu-item.bp3-intent-success::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success:active, .bp3-dark .bp3-menu-item.bp3-intent-success:active::before, .bp3-dark .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-warning{\n    color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning::before, .bp3-dark .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning:active, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-danger{\n    color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger::before, .bp3-dark .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger:active, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item::before,\n  .bp3-dark .bp3-menu-item > .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item .bp3-menu-item-label{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item.bp3-active, .bp3-dark .bp3-menu-item:active{\n    background-color:rgba(138, 155, 168, 0.3); }\n  .bp3-dark .bp3-menu-item.bp3-disabled{\n    color:rgba(167, 182, 194, 0.6) !important; }\n    .bp3-dark .bp3-menu-item.bp3-disabled::before,\n    .bp3-dark .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-dark .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(167, 182, 194, 0.6) !important; }\n\n.bp3-dark .bp3-menu-divider,\n.bp3-dark .bp3-menu-header{\n  border-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-dark .bp3-menu-header > h6{\n  color:#f5f8fa; }\n\n.bp3-label .bp3-menu{\n  margin-top:5px; }\n.bp3-navbar{\n  background-color:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  height:50px;\n  padding:0 15px;\n  position:relative;\n  width:100%;\n  z-index:10; }\n  .bp3-navbar.bp3-dark,\n  .bp3-dark .bp3-navbar{\n    background-color:#394b59; }\n  .bp3-navbar.bp3-dark{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-navbar{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-navbar.bp3-fixed-top{\n    left:0;\n    position:fixed;\n    right:0;\n    top:0; }\n\n.bp3-navbar-heading{\n  font-size:16px;\n  margin-right:15px; }\n\n.bp3-navbar-group{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:50px; }\n  .bp3-navbar-group.bp3-align-left{\n    float:left; }\n  .bp3-navbar-group.bp3-align-right{\n    float:right; }\n\n.bp3-navbar-divider{\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  height:20px;\n  margin:0 10px; }\n  .bp3-dark .bp3-navbar-divider{\n    border-left-color:rgba(255, 255, 255, 0.15); }\n.bp3-non-ideal-state{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  height:100%;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  text-align:center;\n  width:100%; }\n  .bp3-non-ideal-state > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-non-ideal-state > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-non-ideal-state::before,\n  .bp3-non-ideal-state > *{\n    margin-bottom:20px; }\n  .bp3-non-ideal-state:empty::before,\n  .bp3-non-ideal-state > :last-child{\n    margin-bottom:0; }\n  .bp3-non-ideal-state > *{\n    max-width:400px; }\n\n.bp3-non-ideal-state-visual{\n  color:rgba(92, 112, 128, 0.6);\n  font-size:60px; }\n  .bp3-dark .bp3-non-ideal-state-visual{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-overflow-list{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:nowrap;\n      flex-wrap:nowrap;\n  min-width:0; }\n\n.bp3-overflow-list-spacer{\n  -ms-flex-negative:1;\n      flex-shrink:1;\n  width:1px; }\n\nbody.bp3-overlay-open{\n  overflow:hidden; }\n\n.bp3-overlay{\n  bottom:0;\n  left:0;\n  position:static;\n  right:0;\n  top:0;\n  z-index:20; }\n  .bp3-overlay:not(.bp3-overlay-open){\n    pointer-events:none; }\n  .bp3-overlay.bp3-overlay-container{\n    overflow:hidden;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-scroll-container{\n    overflow:auto;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-scroll-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-inline{\n    display:inline;\n    overflow:visible; }\n\n.bp3-overlay-content{\n  position:fixed;\n  z-index:20; }\n  .bp3-overlay-inline .bp3-overlay-content,\n  .bp3-overlay-scroll-container .bp3-overlay-content{\n    position:absolute; }\n\n.bp3-overlay-backdrop{\n  bottom:0;\n  left:0;\n  position:fixed;\n  right:0;\n  top:0;\n  opacity:1;\n  background-color:rgba(16, 22, 26, 0.7);\n  overflow:auto;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  z-index:20; }\n  .bp3-overlay-backdrop.bp3-overlay-enter, .bp3-overlay-backdrop.bp3-overlay-appear{\n    opacity:0; }\n  .bp3-overlay-backdrop.bp3-overlay-enter-active, .bp3-overlay-backdrop.bp3-overlay-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop.bp3-overlay-exit{\n    opacity:1; }\n  .bp3-overlay-backdrop.bp3-overlay-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop:focus{\n    outline:none; }\n  .bp3-overlay-inline .bp3-overlay-backdrop{\n    position:absolute; }\n.bp3-panel-stack{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-view{\n    background-color:#30404d; }\n  .bp3-panel-stack-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter, .bp3-panel-stack-push .bp3-panel-stack-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter-active, .bp3-panel-stack-push .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter, .bp3-panel-stack-pop .bp3-panel-stack-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter-active, .bp3-panel-stack-pop .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-panel-stack2{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack2-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack2-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack2-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack2-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack2-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack2-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-view{\n    background-color:#30404d; }\n  .bp3-panel-stack2-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter, .bp3-panel-stack2-push .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter-active, .bp3-panel-stack2-push .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter, .bp3-panel-stack2-pop .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter-active, .bp3-panel-stack2-pop .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-popover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  border-radius:3px;\n  display:inline-block;\n  z-index:20; }\n  .bp3-popover .bp3-popover-arrow{\n    height:30px;\n    position:absolute;\n    width:30px; }\n    .bp3-popover .bp3-popover-arrow::before{\n      height:20px;\n      margin:5px;\n      width:20px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover{\n    margin-bottom:17px;\n    margin-top:-17px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n      bottom:-11px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover{\n    margin-left:17px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n      left:-11px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover{\n    margin-top:17px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n      top:-11px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover{\n    margin-left:-17px;\n    margin-right:17px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n      right:-11px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-popover > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-popover > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n    top:-0.3934px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n    right:-0.3934px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n    left:-0.3934px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n    bottom:-0.3934px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-popover .bp3-popover-content{\n    background:#ffffff;\n    color:inherit; }\n  .bp3-popover .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-popover .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-popover .bp3-popover-arrow-fill{\n    fill:#ffffff; }\n  .bp3-popover-enter > .bp3-popover, .bp3-popover-appear > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3); }\n  .bp3-popover-enter-active > .bp3-popover, .bp3-popover-appear-active > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover-exit > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover .bp3-popover-content{\n    border-radius:3px;\n    position:relative; }\n  .bp3-popover.bp3-popover-content-sizing .bp3-popover-content{\n    max-width:350px;\n    padding:20px; }\n  .bp3-popover-target + .bp3-overlay .bp3-popover.bp3-popover-content-sizing{\n    width:350px; }\n  .bp3-popover.bp3-minimal{\n    margin:0 !important; }\n    .bp3-popover.bp3-minimal .bp3-popover-arrow{\n      display:none; }\n    .bp3-popover.bp3-minimal.bp3-popover{\n      -webkit-transform:scale(1);\n              transform:scale(1); }\n      .bp3-popover-enter > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-enter-active > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n      .bp3-popover-exit > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-exit-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover.bp3-dark,\n  .bp3-dark .bp3-popover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-popover .bp3-popover-content{\n      background:#30404d;\n      color:inherit; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-popover .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-fill{\n      fill:#30404d; }\n\n.bp3-popover-arrow::before{\n  border-radius:2px;\n  content:\"\";\n  display:block;\n  position:absolute;\n  -webkit-transform:rotate(45deg);\n          transform:rotate(45deg); }\n\n.bp3-tether-pinned .bp3-popover-arrow{\n  display:none; }\n\n.bp3-popover-backdrop{\n  background:rgba(255, 255, 255, 0); }\n\n.bp3-transition-container{\n  opacity:1;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  z-index:20; }\n  .bp3-transition-container.bp3-popover-enter, .bp3-transition-container.bp3-popover-appear{\n    opacity:0; }\n  .bp3-transition-container.bp3-popover-enter-active, .bp3-transition-container.bp3-popover-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container.bp3-popover-exit{\n    opacity:1; }\n  .bp3-transition-container.bp3-popover-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container:focus{\n    outline:none; }\n  .bp3-transition-container.bp3-popover-leave .bp3-popover-content{\n    pointer-events:none; }\n  .bp3-transition-container[data-x-out-of-boundaries]{\n    display:none; }\n\nspan.bp3-popover-target{\n  display:inline-block; }\n\n.bp3-popover-wrapper.bp3-fill{\n  width:100%; }\n\n.bp3-portal{\n  left:0;\n  position:absolute;\n  right:0;\n  top:0; }\n@-webkit-keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n@keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n\n.bp3-progress-bar{\n  background:rgba(92, 112, 128, 0.2);\n  border-radius:40px;\n  display:block;\n  height:8px;\n  overflow:hidden;\n  position:relative;\n  width:100%; }\n  .bp3-progress-bar .bp3-progress-meter{\n    background:linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%);\n    background-color:rgba(92, 112, 128, 0.8);\n    background-size:30px 30px;\n    border-radius:40px;\n    height:100%;\n    position:absolute;\n    -webkit-transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:100%; }\n  .bp3-progress-bar:not(.bp3-no-animation):not(.bp3-no-stripes) .bp3-progress-meter{\n    animation:linear-progress-bar-stripes 300ms linear infinite reverse; }\n  .bp3-progress-bar.bp3-no-stripes .bp3-progress-meter{\n    background-image:none; }\n\n.bp3-dark .bp3-progress-bar{\n  background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-progress-bar .bp3-progress-meter{\n    background-color:#8a9ba8; }\n\n.bp3-progress-bar.bp3-intent-primary .bp3-progress-meter{\n  background-color:#137cbd; }\n\n.bp3-progress-bar.bp3-intent-success .bp3-progress-meter{\n  background-color:#0f9960; }\n\n.bp3-progress-bar.bp3-intent-warning .bp3-progress-meter{\n  background-color:#d9822b; }\n\n.bp3-progress-bar.bp3-intent-danger .bp3-progress-meter{\n  background-color:#db3737; }\n@-webkit-keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n@keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n.bp3-skeleton{\n  -webkit-animation:1000ms linear infinite alternate skeleton-glow;\n          animation:1000ms linear infinite alternate skeleton-glow;\n  background:rgba(206, 217, 224, 0.2);\n  background-clip:padding-box !important;\n  border-color:rgba(206, 217, 224, 0.2) !important;\n  border-radius:2px;\n  -webkit-box-shadow:none !important;\n          box-shadow:none !important;\n  color:transparent !important;\n  cursor:default;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-skeleton::before, .bp3-skeleton::after,\n  .bp3-skeleton *{\n    visibility:hidden !important; }\n.bp3-slider{\n  height:40px;\n  min-width:150px;\n  width:100%;\n  cursor:default;\n  outline:none;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-slider:hover{\n    cursor:pointer; }\n  .bp3-slider:active{\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-slider.bp3-disabled{\n    cursor:not-allowed;\n    opacity:0.5; }\n  .bp3-slider.bp3-slider-unlabeled{\n    height:16px; }\n\n.bp3-slider-track,\n.bp3-slider-progress{\n  height:6px;\n  left:0;\n  right:0;\n  top:5px;\n  position:absolute; }\n\n.bp3-slider-track{\n  border-radius:3px;\n  overflow:hidden; }\n\n.bp3-slider-progress{\n  background:rgba(92, 112, 128, 0.2); }\n  .bp3-dark .bp3-slider-progress{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-slider-progress.bp3-intent-primary{\n    background-color:#137cbd; }\n  .bp3-slider-progress.bp3-intent-success{\n    background-color:#0f9960; }\n  .bp3-slider-progress.bp3-intent-warning{\n    background-color:#d9822b; }\n  .bp3-slider-progress.bp3-intent-danger{\n    background-color:#db3737; }\n\n.bp3-slider-handle{\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n  cursor:pointer;\n  height:16px;\n  left:0;\n  position:absolute;\n  top:0;\n  width:16px; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-slider-handle:active, .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-slider-handle:disabled, .bp3-slider-handle.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-slider-handle:disabled.bp3-active, .bp3-slider-handle:disabled.bp3-active:hover, .bp3-slider-handle.bp3-disabled.bp3-active, .bp3-slider-handle.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n  .bp3-slider-handle:focus{\n    z-index:1; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n    cursor:-webkit-grab;\n    cursor:grab;\n    z-index:2; }\n  .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-disabled .bp3-slider-handle{\n    background:#bfccd6;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    pointer-events:none; }\n  .bp3-dark .bp3-slider-handle{\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover, .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-slider-handle:disabled, .bp3-dark .bp3-slider-handle.bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-slider-handle:disabled.bp3-active, .bp3-dark .bp3-slider-handle.bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-slider-handle .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-slider-handle, .bp3-dark .bp3-slider-handle:hover{\n      background-color:#394b59; }\n    .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#293742; }\n  .bp3-dark .bp3-disabled .bp3-slider-handle{\n    background:#5c7080;\n    border-color:#5c7080;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-slider-handle .bp3-slider-label{\n    background:#394b59;\n    border-radius:3px;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n    color:#f5f8fa;\n    margin-left:8px; }\n    .bp3-dark .bp3-slider-handle .bp3-slider-label{\n      background:#e1e8ed;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n      color:#394b59; }\n    .bp3-disabled .bp3-slider-handle .bp3-slider-label{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-slider-handle.bp3-start, .bp3-slider-handle.bp3-end{\n    width:8px; }\n  .bp3-slider-handle.bp3-start{\n    border-bottom-right-radius:0;\n    border-top-right-radius:0; }\n  .bp3-slider-handle.bp3-end{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0;\n    margin-left:8px; }\n    .bp3-slider-handle.bp3-end .bp3-slider-label{\n      margin-left:0; }\n\n.bp3-slider-label{\n  -webkit-transform:translate(-50%, 20px);\n          transform:translate(-50%, 20px);\n  display:inline-block;\n  font-size:12px;\n  line-height:1;\n  padding:2px 5px;\n  position:absolute;\n  vertical-align:top; }\n\n.bp3-slider.bp3-vertical{\n  height:150px;\n  min-width:40px;\n  width:40px; }\n  .bp3-slider.bp3-vertical .bp3-slider-track,\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    bottom:0;\n    height:auto;\n    left:5px;\n    top:0;\n    width:6px; }\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    top:auto; }\n  .bp3-slider.bp3-vertical .bp3-slider-label{\n    -webkit-transform:translate(20px, 50%);\n            transform:translate(20px, 50%); }\n  .bp3-slider.bp3-vertical .bp3-slider-handle{\n    top:auto; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle .bp3-slider-label{\n      margin-left:0;\n      margin-top:-8px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end, .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      height:8px;\n      margin-left:0;\n      width:16px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      border-bottom-right-radius:3px;\n      border-top-left-radius:0; }\n      .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start .bp3-slider-label{\n        -webkit-transform:translate(20px);\n                transform:translate(20px); }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end{\n      border-bottom-left-radius:0;\n      border-bottom-right-radius:0;\n      border-top-left-radius:3px;\n      margin-bottom:8px; }\n\n@-webkit-keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n@keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n.bp3-spinner{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  overflow:visible;\n  vertical-align:middle; }\n  .bp3-spinner svg{\n    display:block; }\n  .bp3-spinner path{\n    fill-opacity:0; }\n  .bp3-spinner .bp3-spinner-head{\n    stroke:rgba(92, 112, 128, 0.8);\n    stroke-linecap:round;\n    -webkit-transform-origin:center;\n            transform-origin:center;\n    -webkit-transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-spinner .bp3-spinner-track{\n    stroke:rgba(92, 112, 128, 0.2); }\n\n.bp3-spinner-animation{\n  -webkit-animation:pt-spinner-animation 500ms linear infinite;\n          animation:pt-spinner-animation 500ms linear infinite; }\n  .bp3-no-spin > .bp3-spinner-animation{\n    -webkit-animation:none;\n            animation:none; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-head{\n  stroke:#8a9ba8; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-track{\n  stroke:rgba(16, 22, 26, 0.5); }\n\n.bp3-spinner.bp3-intent-primary .bp3-spinner-head{\n  stroke:#137cbd; }\n\n.bp3-spinner.bp3-intent-success .bp3-spinner-head{\n  stroke:#0f9960; }\n\n.bp3-spinner.bp3-intent-warning .bp3-spinner-head{\n  stroke:#d9822b; }\n\n.bp3-spinner.bp3-intent-danger .bp3-spinner-head{\n  stroke:#db3737; }\n.bp3-tabs.bp3-vertical{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-list{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab{\n      border-radius:3px;\n      padding:0 10px;\n      width:100%; }\n      .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab[aria-selected=\"true\"]{\n        background-color:rgba(19, 124, 189, 0.2);\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n      background-color:rgba(19, 124, 189, 0.2);\n      border-radius:3px;\n      bottom:0;\n      height:auto;\n      left:0;\n      right:0;\n      top:0; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-panel{\n    margin-top:0;\n    padding-left:20px; }\n\n.bp3-tab-list{\n  -webkit-box-align:end;\n      -ms-flex-align:end;\n          align-items:flex-end;\n  border:none;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  list-style:none;\n  margin:0;\n  padding:0;\n  position:relative; }\n  .bp3-tab-list > *:not(:last-child){\n    margin-right:20px; }\n\n.bp3-tab{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:#182026;\n  cursor:pointer;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  font-size:14px;\n  line-height:30px;\n  max-width:100%;\n  position:relative;\n  vertical-align:top; }\n  .bp3-tab a{\n    color:inherit;\n    display:block;\n    text-decoration:none; }\n  .bp3-tab-indicator-wrapper ~ .bp3-tab{\n    background-color:transparent !important;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important; }\n  .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-tab[aria-selected=\"true\"]{\n    border-radius:0;\n    -webkit-box-shadow:inset 0 -3px 0 #106ba3;\n            box-shadow:inset 0 -3px 0 #106ba3; }\n  .bp3-tab[aria-selected=\"true\"], .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#106ba3; }\n  .bp3-tab:focus{\n    -moz-outline-radius:0; }\n  .bp3-large > .bp3-tab{\n    font-size:16px;\n    line-height:40px; }\n\n.bp3-tab-panel{\n  margin-top:20px; }\n  .bp3-tab-panel[aria-hidden=\"true\"]{\n    display:none; }\n\n.bp3-tab-indicator-wrapper{\n  left:0;\n  pointer-events:none;\n  position:absolute;\n  top:0;\n  -webkit-transform:translateX(0), translateY(0);\n          transform:translateX(0), translateY(0);\n  -webkit-transition:height, width, -webkit-transform;\n  transition:height, width, -webkit-transform;\n  transition:height, transform, width;\n  transition:height, transform, width, -webkit-transform;\n  -webkit-transition-duration:200ms;\n          transition-duration:200ms;\n  -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n          transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n    background-color:#106ba3;\n    bottom:0;\n    height:3px;\n    left:0;\n    position:absolute;\n    right:0; }\n  .bp3-tab-indicator-wrapper.bp3-no-animation{\n    -webkit-transition:none;\n    transition:none; }\n\n.bp3-dark .bp3-tab{\n  color:#f5f8fa; }\n  .bp3-dark .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"]{\n    -webkit-box-shadow:inset 0 -3px 0 #48aff0;\n            box-shadow:inset 0 -3px 0 #48aff0; }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"], .bp3-dark .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#48aff0; }\n\n.bp3-dark .bp3-tab-indicator{\n  background-color:#48aff0; }\n\n.bp3-flex-expander{\n  -webkit-box-flex:1;\n      -ms-flex:1 1;\n          flex:1 1; }\n.bp3-tag{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#5c7080;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:#f5f8fa;\n  font-size:12px;\n  line-height:16px;\n  max-width:100%;\n  min-height:20px;\n  min-width:20px;\n  padding:2px 6px;\n  position:relative; }\n  .bp3-tag.bp3-interactive{\n    cursor:pointer; }\n    .bp3-tag.bp3-interactive:hover{\n      background-color:rgba(92, 112, 128, 0.85); }\n    .bp3-tag.bp3-interactive.bp3-active, .bp3-tag.bp3-interactive:active{\n      background-color:rgba(92, 112, 128, 0.7); }\n  .bp3-tag > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag::before,\n  .bp3-tag > *{\n    margin-right:4px; }\n  .bp3-tag:empty::before,\n  .bp3-tag > :last-child{\n    margin-right:0; }\n  .bp3-tag:focus{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:0;\n    -moz-outline-radius:6px; }\n  .bp3-tag.bp3-round{\n    border-radius:30px;\n    padding-left:8px;\n    padding-right:8px; }\n  .bp3-dark .bp3-tag{\n    background-color:#bfccd6;\n    color:#182026; }\n    .bp3-dark .bp3-tag.bp3-interactive{\n      cursor:pointer; }\n      .bp3-dark .bp3-tag.bp3-interactive:hover{\n        background-color:rgba(191, 204, 214, 0.85); }\n      .bp3-dark .bp3-tag.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-interactive:active{\n        background-color:rgba(191, 204, 214, 0.7); }\n    .bp3-dark .bp3-tag > .bp3-icon, .bp3-dark .bp3-tag .bp3-icon-standard, .bp3-dark .bp3-tag .bp3-icon-large{\n      fill:currentColor; }\n  .bp3-tag > .bp3-icon, .bp3-tag .bp3-icon-standard, .bp3-tag .bp3-icon-large{\n    fill:#ffffff; }\n  .bp3-tag.bp3-large,\n  .bp3-large .bp3-tag{\n    font-size:14px;\n    line-height:20px;\n    min-height:30px;\n    min-width:30px;\n    padding:5px 10px; }\n    .bp3-tag.bp3-large::before,\n    .bp3-tag.bp3-large > *,\n    .bp3-large .bp3-tag::before,\n    .bp3-large .bp3-tag > *{\n      margin-right:7px; }\n    .bp3-tag.bp3-large:empty::before,\n    .bp3-tag.bp3-large > :last-child,\n    .bp3-large .bp3-tag:empty::before,\n    .bp3-large .bp3-tag > :last-child{\n      margin-right:0; }\n    .bp3-tag.bp3-large.bp3-round,\n    .bp3-large .bp3-tag.bp3-round{\n      padding-left:12px;\n      padding-right:12px; }\n  .bp3-tag.bp3-intent-primary{\n    background:#137cbd;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.85); }\n      .bp3-tag.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.7); }\n  .bp3-tag.bp3-intent-success{\n    background:#0f9960;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.85); }\n      .bp3-tag.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.7); }\n  .bp3-tag.bp3-intent-warning{\n    background:#d9822b;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.85); }\n      .bp3-tag.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.7); }\n  .bp3-tag.bp3-intent-danger{\n    background:#db3737;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.85); }\n      .bp3-tag.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.7); }\n  .bp3-tag.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-tag.bp3-minimal > .bp3-icon, .bp3-tag.bp3-minimal .bp3-icon-standard, .bp3-tag.bp3-minimal .bp3-icon-large{\n    fill:#5c7080; }\n  .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n    background-color:rgba(138, 155, 168, 0.2);\n    color:#182026; }\n    .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n        background-color:rgba(92, 112, 128, 0.3); }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n        background-color:rgba(92, 112, 128, 0.4); }\n    .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n      color:#f5f8fa; }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n          background-color:rgba(191, 204, 214, 0.3); }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n          background-color:rgba(191, 204, 214, 0.4); }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) > .bp3-icon, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n        fill:#a7b6c2; }\n  .bp3-tag.bp3-minimal.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15);\n    color:#106ba3; }\n    .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-primary > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-large{\n      fill:#137cbd; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25);\n      color:#48aff0; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n          background-color:rgba(19, 124, 189, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n          background-color:rgba(19, 124, 189, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15);\n    color:#0d8050; }\n    .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-success > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-large{\n      fill:#0f9960; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25);\n      color:#3dcc91; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n          background-color:rgba(15, 153, 96, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n          background-color:rgba(15, 153, 96, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15);\n    color:#bf7326; }\n    .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-warning > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-large{\n      fill:#d9822b; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25);\n      color:#ffb366; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n          background-color:rgba(217, 130, 43, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n          background-color:rgba(217, 130, 43, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15);\n    color:#c23030; }\n    .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-danger > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-large{\n      fill:#db3737; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25);\n      color:#ff7373; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n          background-color:rgba(219, 55, 55, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n          background-color:rgba(219, 55, 55, 0.45); }\n\n.bp3-tag-remove{\n  background:none;\n  border:none;\n  color:inherit;\n  cursor:pointer;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin-bottom:-2px;\n  margin-right:-6px !important;\n  margin-top:-2px;\n  opacity:0.5;\n  padding:2px;\n  padding-left:0; }\n  .bp3-tag-remove:hover{\n    background:none;\n    opacity:0.8;\n    text-decoration:none; }\n  .bp3-tag-remove:active{\n    opacity:1; }\n  .bp3-tag-remove:empty::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    content:\"\"; }\n  .bp3-large .bp3-tag-remove{\n    margin-right:-10px !important;\n    padding:0 5px 0 0; }\n    .bp3-large .bp3-tag-remove:empty::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1; }\n.bp3-tag-input{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  cursor:text;\n  height:auto;\n  line-height:inherit;\n  min-height:30px;\n  padding-left:5px;\n  padding-right:0; }\n  .bp3-tag-input > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag-input > .bp3-tag-input-values{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag-input .bp3-tag-input-icon{\n    color:#5c7080;\n    margin-left:2px;\n    margin-right:7px;\n    margin-top:7px; }\n  .bp3-tag-input .bp3-tag-input-values{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row;\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    -ms-flex-item-align:stretch;\n        align-self:stretch;\n    -ms-flex-wrap:wrap;\n        flex-wrap:wrap;\n    margin-right:7px;\n    margin-top:5px;\n    min-width:0; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      -webkit-box-flex:0;\n          -ms-flex-positive:0;\n              flex-grow:0;\n      -ms-flex-negative:0;\n          flex-shrink:0; }\n    .bp3-tag-input .bp3-tag-input-values > .bp3-fill{\n      -webkit-box-flex:1;\n          -ms-flex-positive:1;\n              flex-grow:1;\n      -ms-flex-negative:1;\n          flex-shrink:1; }\n    .bp3-tag-input .bp3-tag-input-values::before,\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-right:5px; }\n    .bp3-tag-input .bp3-tag-input-values:empty::before,\n    .bp3-tag-input .bp3-tag-input-values > :last-child{\n      margin-right:0; }\n    .bp3-tag-input .bp3-tag-input-values:first-child .bp3-input-ghost:first-child{\n      padding-left:5px; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-bottom:5px; }\n  .bp3-tag-input .bp3-tag{\n    overflow-wrap:break-word; }\n    .bp3-tag-input .bp3-tag.bp3-active{\n      outline:rgba(19, 124, 189, 0.6) auto 2px;\n      outline-offset:0;\n      -moz-outline-radius:6px; }\n  .bp3-tag-input .bp3-input-ghost{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:20px;\n    width:80px; }\n    .bp3-tag-input .bp3-input-ghost:disabled, .bp3-tag-input .bp3-input-ghost.bp3-disabled{\n      cursor:not-allowed; }\n  .bp3-tag-input .bp3-button,\n  .bp3-tag-input .bp3-spinner{\n    margin:3px;\n    margin-left:0; }\n  .bp3-tag-input .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-tag-input.bp3-large{\n    height:auto;\n    min-height:40px; }\n    .bp3-tag-input.bp3-large::before,\n    .bp3-tag-input.bp3-large > *{\n      margin-right:10px; }\n    .bp3-tag-input.bp3-large:empty::before,\n    .bp3-tag-input.bp3-large > :last-child{\n      margin-right:0; }\n    .bp3-tag-input.bp3-large .bp3-tag-input-icon{\n      margin-left:5px;\n      margin-top:10px; }\n    .bp3-tag-input.bp3-large .bp3-input-ghost{\n      line-height:30px; }\n    .bp3-tag-input.bp3-large .bp3-button{\n      min-height:30px;\n      min-width:30px;\n      padding:5px 10px;\n      margin:5px;\n      margin-left:0; }\n    .bp3-tag-input.bp3-large .bp3-spinner{\n      margin:8px;\n      margin-left:0; }\n  .bp3-tag-input.bp3-active{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-tag-input .bp3-tag-input-icon, .bp3-tag-input.bp3-dark .bp3-tag-input-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-tag-input .bp3-input-ghost, .bp3-tag-input.bp3-dark .bp3-input-ghost{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-webkit-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-moz-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost:-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tag-input.bp3-active, .bp3-tag-input.bp3-dark.bp3-active{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-primary, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-success, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-warning, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-danger, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-input-ghost{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0; }\n  .bp3-input-ghost::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:focus{\n    outline:none !important; }\n.bp3-toast{\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:20px 0 0;\n  max-width:500px;\n  min-width:300px;\n  pointer-events:all;\n  position:relative !important; }\n  .bp3-toast.bp3-toast-enter, .bp3-toast.bp3-toast-appear{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active, .bp3-toast.bp3-toast-appear-active{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-enter ~ .bp3-toast, .bp3-toast.bp3-toast-appear ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active ~ .bp3-toast, .bp3-toast.bp3-toast-appear-active ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-exit{\n    opacity:1;\n    -webkit-filter:blur(0);\n            filter:blur(0); }\n  .bp3-toast.bp3-toast-exit-active{\n    opacity:0;\n    -webkit-filter:blur(10px);\n            filter:blur(10px);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:opacity, filter;\n    transition-property:opacity, filter, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast.bp3-toast-exit ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0); }\n  .bp3-toast.bp3-toast-exit-active ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px);\n    -webkit-transition-delay:50ms;\n            transition-delay:50ms;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast .bp3-button-group{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    padding:5px;\n    padding-left:0; }\n  .bp3-toast > .bp3-icon{\n    color:#5c7080;\n    margin:12px;\n    margin-right:0; }\n  .bp3-toast.bp3-dark,\n  .bp3-dark .bp3-toast{\n    background-color:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-toast.bp3-dark > .bp3-icon,\n    .bp3-dark .bp3-toast > .bp3-icon{\n      color:#a7b6c2; }\n  .bp3-toast[class*=\"bp3-intent-\"] a{\n    color:rgba(255, 255, 255, 0.7); }\n    .bp3-toast[class*=\"bp3-intent-\"] a:hover{\n      color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] > .bp3-icon{\n    color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::before,\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button .bp3-icon, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    color:rgba(255, 255, 255, 0.7) !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:focus{\n    outline-color:rgba(255, 255, 255, 0.5); }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:hover{\n    background-color:rgba(255, 255, 255, 0.15) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    background-color:rgba(255, 255, 255, 0.3) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::after{\n    background:rgba(255, 255, 255, 0.3) !important; }\n  .bp3-toast.bp3-intent-primary{\n    background-color:#137cbd;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-success{\n    background-color:#0f9960;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-warning{\n    background-color:#d9822b;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-danger{\n    background-color:#db3737;\n    color:#ffffff; }\n\n.bp3-toast-message{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  padding:11px;\n  word-break:break-word; }\n\n.bp3-toast-container{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box !important;\n  display:-ms-flexbox !important;\n  display:flex !important;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  left:0;\n  overflow:hidden;\n  padding:0 20px 20px;\n  pointer-events:none;\n  right:0;\n  z-index:40; }\n  .bp3-toast-container.bp3-toast-container-in-portal{\n    position:fixed; }\n  .bp3-toast-container.bp3-toast-container-inline{\n    position:absolute; }\n  .bp3-toast-container.bp3-toast-container-top{\n    top:0; }\n  .bp3-toast-container.bp3-toast-container-bottom{\n    bottom:0;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:reverse;\n        -ms-flex-direction:column-reverse;\n            flex-direction:column-reverse;\n    top:auto; }\n  .bp3-toast-container.bp3-toast-container-left{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start; }\n  .bp3-toast-container.bp3-toast-container-right{\n    -webkit-box-align:end;\n        -ms-flex-align:end;\n            align-items:flex-end; }\n\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active) ~ .bp3-toast, .bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active) ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-exit-active ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-leave-active ~ .bp3-toast{\n  -webkit-transform:translateY(60px);\n          transform:translateY(60px); }\n.bp3-tooltip{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1); }\n  .bp3-tooltip .bp3-popover-arrow{\n    height:22px;\n    position:absolute;\n    width:22px; }\n    .bp3-tooltip .bp3-popover-arrow::before{\n      height:14px;\n      margin:4px;\n      width:14px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip{\n    margin-bottom:11px;\n    margin-top:-11px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n      bottom:-8px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip{\n    margin-left:11px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n      left:-8px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip{\n    margin-top:11px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n      top:-8px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip{\n    margin-left:-11px;\n    margin-right:11px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n      right:-8px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-tooltip > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-tooltip > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n    top:-0.22183px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n    right:-0.22183px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n    left:-0.22183px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n    bottom:-0.22183px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-tooltip .bp3-popover-content{\n    background:#394b59;\n    color:#f5f8fa; }\n  .bp3-tooltip .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-tooltip .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-tooltip .bp3-popover-arrow-fill{\n    fill:#394b59; }\n  .bp3-popover-enter > .bp3-tooltip, .bp3-popover-appear > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8); }\n  .bp3-popover-enter-active > .bp3-tooltip, .bp3-popover-appear-active > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover-exit > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tooltip .bp3-popover-content{\n    padding:10px 12px; }\n  .bp3-tooltip.bp3-dark,\n  .bp3-dark .bp3-tooltip{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-tooltip .bp3-popover-content{\n      background:#e1e8ed;\n      color:#394b59; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-fill{\n      fill:#e1e8ed; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-content{\n    background:#137cbd;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-arrow-fill{\n    fill:#137cbd; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-content{\n    background:#0f9960;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-arrow-fill{\n    fill:#0f9960; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-content{\n    background:#d9822b;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-arrow-fill{\n    fill:#d9822b; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-content{\n    background:#db3737;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-arrow-fill{\n    fill:#db3737; }\n\n.bp3-tooltip-indicator{\n  border-bottom:dotted 1px;\n  cursor:help; }\n.bp3-tree .bp3-icon, .bp3-tree .bp3-icon-standard, .bp3-tree .bp3-icon-large{\n  color:#5c7080; }\n  .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-tree .bp3-icon.bp3-intent-success, .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-tree-node-list{\n  list-style:none;\n  margin:0;\n  padding-left:0; }\n\n.bp3-tree-root{\n  background-color:transparent;\n  cursor:default;\n  padding-left:0;\n  position:relative; }\n\n.bp3-tree-node-content-0{\n  padding-left:0px; }\n\n.bp3-tree-node-content-1{\n  padding-left:23px; }\n\n.bp3-tree-node-content-2{\n  padding-left:46px; }\n\n.bp3-tree-node-content-3{\n  padding-left:69px; }\n\n.bp3-tree-node-content-4{\n  padding-left:92px; }\n\n.bp3-tree-node-content-5{\n  padding-left:115px; }\n\n.bp3-tree-node-content-6{\n  padding-left:138px; }\n\n.bp3-tree-node-content-7{\n  padding-left:161px; }\n\n.bp3-tree-node-content-8{\n  padding-left:184px; }\n\n.bp3-tree-node-content-9{\n  padding-left:207px; }\n\n.bp3-tree-node-content-10{\n  padding-left:230px; }\n\n.bp3-tree-node-content-11{\n  padding-left:253px; }\n\n.bp3-tree-node-content-12{\n  padding-left:276px; }\n\n.bp3-tree-node-content-13{\n  padding-left:299px; }\n\n.bp3-tree-node-content-14{\n  padding-left:322px; }\n\n.bp3-tree-node-content-15{\n  padding-left:345px; }\n\n.bp3-tree-node-content-16{\n  padding-left:368px; }\n\n.bp3-tree-node-content-17{\n  padding-left:391px; }\n\n.bp3-tree-node-content-18{\n  padding-left:414px; }\n\n.bp3-tree-node-content-19{\n  padding-left:437px; }\n\n.bp3-tree-node-content-20{\n  padding-left:460px; }\n\n.bp3-tree-node-content{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:30px;\n  padding-right:5px;\n  width:100%; }\n  .bp3-tree-node-content:hover{\n    background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-tree-node-caret,\n.bp3-tree-node-caret-none{\n  min-width:30px; }\n\n.bp3-tree-node-caret{\n  color:#5c7080;\n  cursor:pointer;\n  padding:7px;\n  -webkit-transform:rotate(0deg);\n          transform:rotate(0deg);\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tree-node-caret:hover{\n    color:#182026; }\n  .bp3-dark .bp3-tree-node-caret{\n    color:#a7b6c2; }\n    .bp3-dark .bp3-tree-node-caret:hover{\n      color:#f5f8fa; }\n  .bp3-tree-node-caret.bp3-tree-node-caret-open{\n    -webkit-transform:rotate(90deg);\n            transform:rotate(90deg); }\n  .bp3-tree-node-caret.bp3-icon-standard::before{\n    content:\"\"; }\n\n.bp3-tree-node-icon{\n  margin-right:7px;\n  position:relative; }\n\n.bp3-tree-node-label{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-label span{\n    display:inline; }\n\n.bp3-tree-node-secondary-label{\n  padding:0 5px;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-secondary-label .bp3-popover-wrapper,\n  .bp3-tree-node-secondary-label .bp3-popover-target{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-content{\n  background-color:inherit;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-caret,\n.bp3-tree-node.bp3-disabled .bp3-tree-node-icon{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content,\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-standard, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-large{\n    color:#ffffff; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret::before{\n    color:rgba(255, 255, 255, 0.7); }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret:hover::before{\n    color:#ffffff; }\n\n.bp3-dark .bp3-tree-node-content:hover{\n  background-color:rgba(92, 112, 128, 0.3); }\n\n.bp3-dark .bp3-tree .bp3-icon, .bp3-dark .bp3-tree .bp3-icon-standard, .bp3-dark .bp3-tree .bp3-icon-large{\n  color:#a7b6c2; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-dark .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n.bp3-omnibar{\n  -webkit-filter:blur(0);\n          filter:blur(0);\n  opacity:1;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  left:calc(50% - 250px);\n  top:20vh;\n  width:500px;\n  z-index:21; }\n  .bp3-omnibar.bp3-overlay-enter, .bp3-omnibar.bp3-overlay-appear{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2; }\n  .bp3-omnibar.bp3-overlay-enter-active, .bp3-omnibar.bp3-overlay-appear-active{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar.bp3-overlay-exit{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1; }\n  .bp3-omnibar.bp3-overlay-exit-active{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar .bp3-input{\n    background-color:transparent;\n    border-radius:0; }\n    .bp3-omnibar .bp3-input, .bp3-omnibar .bp3-input:focus{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-omnibar .bp3-menu{\n    background-color:transparent;\n    border-radius:0;\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n    max-height:calc(60vh - 40px);\n    overflow:auto; }\n    .bp3-omnibar .bp3-menu:empty{\n      display:none; }\n  .bp3-dark .bp3-omnibar, .bp3-omnibar.bp3-dark{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-omnibar-overlay .bp3-overlay-backdrop{\n  background-color:rgba(16, 22, 26, 0.2); }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n\n.bp3-multi-select{\n  min-width:150px; }\n\n.bp3-multi-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto; }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* This file was auto-generated by ensureUiComponents() in @jupyterlab/buildutils */\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n/* Icons urls */\n\n:root {\n  --jp-icon-add: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDEzaC02djZoLTJ2LTZINXYtMmg2VjVoMnY2aDZ2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-bug: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0yMCA4aC0yLjgxYy0uNDUtLjc4LTEuMDctMS40NS0xLjgyLTEuOTZMMTcgNC40MSAxNS41OSAzbC0yLjE3IDIuMTdDMTIuOTYgNS4wNiAxMi40OSA1IDEyIDVjLS40OSAwLS45Ni4wNi0xLjQxLjE3TDguNDEgMyA3IDQuNDFsMS42MiAxLjYzQzcuODggNi41NSA3LjI2IDcuMjIgNi44MSA4SDR2MmgyLjA5Yy0uMDUuMzMtLjA5LjY2LS4wOSAxdjFINHYyaDJ2MWMwIC4zNC4wNC42Ny4wOSAxSDR2MmgyLjgxYzEuMDQgMS43OSAyLjk3IDMgNS4xOSAzczQuMTUtMS4yMSA1LjE5LTNIMjB2LTJoLTIuMDljLjA1LS4zMy4wOS0uNjYuMDktMXYtMWgydi0yaC0ydi0xYzAtLjM0LS4wNC0uNjctLjA5LTFIMjBWOHptLTYgOGgtNHYtMmg0djJ6bTAtNGgtNHYtMmg0djJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-build: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE0LjkgMTcuNDVDMTYuMjUgMTcuNDUgMTcuMzUgMTYuMzUgMTcuMzUgMTVDMTcuMzUgMTMuNjUgMTYuMjUgMTIuNTUgMTQuOSAxMi41NUMxMy41NCAxMi41NSAxMi40NSAxMy42NSAxMi40NSAxNUMxMi40NSAxNi4zNSAxMy41NCAxNy40NSAxNC45IDE3LjQ1Wk0yMC4xIDE1LjY4TDIxLjU4IDE2Ljg0QzIxLjcxIDE2Ljk1IDIxLjc1IDE3LjEzIDIxLjY2IDE3LjI5TDIwLjI2IDE5LjcxQzIwLjE3IDE5Ljg2IDIwIDE5LjkyIDE5LjgzIDE5Ljg2TDE4LjA5IDE5LjE2QzE3LjczIDE5LjQ0IDE3LjMzIDE5LjY3IDE2LjkxIDE5Ljg1TDE2LjY0IDIxLjdDMTYuNjIgMjEuODcgMTYuNDcgMjIgMTYuMyAyMkgxMy41QzEzLjMyIDIyIDEzLjE4IDIxLjg3IDEzLjE1IDIxLjdMMTIuODkgMTkuODVDMTIuNDYgMTkuNjcgMTIuMDcgMTkuNDQgMTEuNzEgMTkuMTZMOS45NjAwMiAxOS44NkM5LjgxMDAyIDE5LjkyIDkuNjIwMDIgMTkuODYgOS41NDAwMiAxOS43MUw4LjE0MDAyIDE3LjI5QzguMDUwMDIgMTcuMTMgOC4wOTAwMiAxNi45NSA4LjIyMDAyIDE2Ljg0TDkuNzAwMDIgMTUuNjhMOS42NTAwMSAxNUw5LjcwMDAyIDE0LjMxTDguMjIwMDIgMTMuMTZDOC4wOTAwMiAxMy4wNSA4LjA1MDAyIDEyLjg2IDguMTQwMDIgMTIuNzFMOS41NDAwMiAxMC4yOUM5LjYyMDAyIDEwLjEzIDkuODEwMDIgMTAuMDcgOS45NjAwMiAxMC4xM0wxMS43MSAxMC44NEMxMi4wNyAxMC41NiAxMi40NiAxMC4zMiAxMi44OSAxMC4xNUwxMy4xNSA4LjI4OTk4QzEzLjE4IDguMTI5OTggMTMuMzIgNy45OTk5OCAxMy41IDcuOTk5OThIMTYuM0MxNi40NyA3Ljk5OTk4IDE2LjYyIDguMTI5OTggMTYuNjQgOC4yODk5OEwxNi45MSAxMC4xNUMxNy4zMyAxMC4zMiAxNy43MyAxMC41NiAxOC4wOSAxMC44NEwxOS44MyAxMC4xM0MyMCAxMC4wNyAyMC4xNyAxMC4xMyAyMC4yNiAxMC4yOUwyMS42NiAxMi43MUMyMS43NSAxMi44NiAyMS43MSAxMy4wNSAyMS41OCAxMy4xNkwyMC4xIDE0LjMxTDIwLjE1IDE1TDIwLjEgMTUuNjhaIi8+CiAgICA8cGF0aCBkPSJNNy4zMjk2NiA3LjQ0NDU0QzguMDgzMSA3LjAwOTU0IDguMzM5MzIgNi4wNTMzMiA3LjkwNDMyIDUuMjk5ODhDNy40NjkzMiA0LjU0NjQzIDYuNTA4MSA0LjI4MTU2IDUuNzU0NjYgNC43MTY1NkM1LjM5MTc2IDQuOTI2MDggNS4xMjY5NSA1LjI3MTE4IDUuMDE4NDkgNS42NzU5NEM0LjkxMDA0IDYuMDgwNzEgNC45NjY4MiA2LjUxMTk4IDUuMTc2MzQgNi44NzQ4OEM1LjYxMTM0IDcuNjI4MzIgNi41NzYyMiA3Ljg3OTU0IDcuMzI5NjYgNy40NDQ1NFpNOS42NTcxOCA0Ljc5NTkzTDEwLjg2NzIgNC45NTE3OUMxMC45NjI4IDQuOTc3NDEgMTEuMDQwMiA1LjA3MTMzIDExLjAzODIgNS4xODc5M0wxMS4wMzg4IDYuOTg4OTNDMTEuMDQ1NSA3LjEwMDU0IDEwLjk2MTYgNy4xOTUxOCAxMC44NTUgNy4yMTA1NEw5LjY2MDAxIDcuMzgwODNMOS4yMzkxNSA4LjEzMTg4TDkuNjY5NjEgOS4yNTc0NUM5LjcwNzI5IDkuMzYyNzEgOS42NjkzNCA5LjQ3Njk5IDkuNTc0MDggOS41MzE5OUw4LjAxNTIzIDEwLjQzMkM3LjkxMTMxIDEwLjQ5MiA3Ljc5MzM3IDEwLjQ2NzcgNy43MjEwNSAxMC4zODI0TDYuOTg3NDggOS40MzE4OEw2LjEwOTMxIDkuNDMwODNMNS4zNDcwNCAxMC4zOTA1QzUuMjg5MDkgMTAuNDcwMiA1LjE3MzgzIDEwLjQ5MDUgNS4wNzE4NyAxMC40MzM5TDMuNTEyNDUgOS41MzI5M0MzLjQxMDQ5IDkuNDc2MzMgMy4zNzY0NyA5LjM1NzQxIDMuNDEwNzUgOS4yNTY3OUwzLjg2MzQ3IDguMTQwOTNMMy42MTc0OSA3Ljc3NDg4TDMuNDIzNDcgNy4zNzg4M0wyLjIzMDc1IDcuMjEyOTdDMi4xMjY0NyA3LjE5MjM1IDIuMDQwNDkgNy4xMDM0MiAyLjA0MjQ1IDYuOTg2ODJMMi4wNDE4NyA1LjE4NTgyQzIuMDQzODMgNS4wNjkyMiAyLjExOTA5IDQuOTc5NTggMi4yMTcwNCA0Ljk2OTIyTDMuNDIwNjUgNC43OTM5M0wzLjg2NzQ5IDQuMDI3ODhMMy40MTEwNSAyLjkxNzMxQzMuMzczMzcgMi44MTIwNCAzLjQxMTMxIDIuNjk3NzYgMy41MTUyMyAyLjYzNzc2TDUuMDc0MDggMS43Mzc3NkM1LjE2OTM0IDEuNjgyNzYgNS4yODcyOSAxLjcwNzA0IDUuMzU5NjEgMS43OTIzMUw2LjExOTE1IDIuNzI3ODhMNi45ODAwMSAyLjczODkzTDcuNzI0OTYgMS43ODkyMkM3Ljc5MTU2IDEuNzA0NTggNy45MTU0OCAxLjY3OTIyIDguMDA4NzkgMS43NDA4Mkw5LjU2ODIxIDIuNjQxODJDOS42NzAxNyAyLjY5ODQyIDkuNzEyODUgMi44MTIzNCA5LjY4NzIzIDIuOTA3OTdMOS4yMTcxOCA0LjAzMzgzTDkuNDYzMTYgNC4zOTk4OEw5LjY1NzE4IDQuNzk1OTNaIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iOS45LDEzLjYgMy42LDcuNCA0LjQsNi42IDkuOSwxMi4yIDE1LjQsNi43IDE2LjEsNy40ICIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNS45TDksOS43bDMuOC0zLjhsMS4yLDEuMmwtNC45LDVsLTQuOS01TDUuMiw1Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNy41TDksMTEuMmwzLjgtMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-left: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik0xMC44LDEyLjhMNy4xLDlsMy44LTMuOGwwLDcuNkgxMC44eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-right: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik03LjIsNS4yTDEwLjksOWwtMy44LDMuOFY1LjJINy4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-up-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iMTUuNCwxMy4zIDkuOSw3LjcgNC40LDEzLjIgMy42LDEyLjUgOS45LDYuMyAxNi4xLDEyLjYgIi8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-up: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik01LjIsMTAuNUw5LDYuOGwzLjgsMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-case-sensitive: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgogIDxnIGNsYXNzPSJqcC1pY29uLWFjY2VudDIiIGZpbGw9IiNGRkYiPgogICAgPHBhdGggZD0iTTcuNiw4aDAuOWwzLjUsOGgtMS4xTDEwLDE0SDZsLTAuOSwySDRMNy42LDh6IE04LDkuMUw2LjQsMTNoMy4yTDgsOS4xeiIvPgogICAgPHBhdGggZD0iTTE2LjYsOS44Yy0wLjIsMC4xLTAuNCwwLjEtMC43LDAuMWMtMC4yLDAtMC40LTAuMS0wLjYtMC4yYy0wLjEtMC4xLTAuMi0wLjQtMC4yLTAuNyBjLTAuMywwLjMtMC42LDAuNS0wLjksMC43Yy0wLjMsMC4xLTAuNywwLjItMS4xLDAuMmMtMC4zLDAtMC41LDAtMC43LTAuMWMtMC4yLTAuMS0wLjQtMC4yLTAuNi0wLjNjLTAuMi0wLjEtMC4zLTAuMy0wLjQtMC41IGMtMC4xLTAuMi0wLjEtMC40LTAuMS0wLjdjMC0wLjMsMC4xLTAuNiwwLjItMC44YzAuMS0wLjIsMC4zLTAuNCwwLjQtMC41QzEyLDcsMTIuMiw2LjksMTIuNSw2LjhjMC4yLTAuMSwwLjUtMC4xLDAuNy0wLjIgYzAuMy0wLjEsMC41LTAuMSwwLjctMC4xYzAuMiwwLDAuNC0wLjEsMC42LTAuMWMwLjIsMCwwLjMtMC4xLDAuNC0wLjJjMC4xLTAuMSwwLjItMC4yLDAuMi0wLjRjMC0xLTEuMS0xLTEuMy0xIGMtMC40LDAtMS40LDAtMS40LDEuMmgtMC45YzAtMC40LDAuMS0wLjcsMC4yLTFjMC4xLTAuMiwwLjMtMC40LDAuNS0wLjZjMC4yLTAuMiwwLjUtMC4zLDAuOC0wLjNDMTMuMyw0LDEzLjYsNCwxMy45LDQgYzAuMywwLDAuNSwwLDAuOCwwLjFjMC4zLDAsMC41LDAuMSwwLjcsMC4yYzAuMiwwLjEsMC40LDAuMywwLjUsMC41QzE2LDUsMTYsNS4yLDE2LDUuNnYyLjljMCwwLjIsMCwwLjQsMCwwLjUgYzAsMC4xLDAuMSwwLjIsMC4zLDAuMmMwLjEsMCwwLjIsMCwwLjMsMFY5Ljh6IE0xNS4yLDYuOWMtMS4yLDAuNi0zLjEsMC4yLTMuMSwxLjRjMCwxLjQsMy4xLDEsMy4xLTAuNVY2Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-check: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik05IDE2LjE3TDQuODMgMTJsLTEuNDIgMS40MUw5IDE5IDIxIDdsLTEuNDEtMS40MXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-circle-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDJDNi40NyAyIDIgNi40NyAyIDEyczQuNDcgMTAgMTAgMTAgMTAtNC40NyAxMC0xMFMxNy41MyAyIDEyIDJ6bTAgMThjLTQuNDEgMC04LTMuNTktOC04czMuNTktOCA4LTggOCAzLjU5IDggOC0zLjU5IDgtOCA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-circle: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjgiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-clear: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8bWFzayBpZD0iZG9udXRIb2xlIj4KICAgIDxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0id2hpdGUiIC8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSI4IiBmaWxsPSJibGFjayIvPgogIDwvbWFzaz4KCiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxyZWN0IGhlaWdodD0iMTgiIHdpZHRoPSIyIiB4PSIxMSIgeT0iMyIgdHJhbnNmb3JtPSJyb3RhdGUoMzE1LCAxMiwgMTIpIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIgbWFzaz0idXJsKCNkb251dEhvbGUpIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-close: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1ub25lIGpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIGpwLWljb24zLWhvdmVyIiBmaWxsPSJub25lIj4KICAgIDxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjExIi8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIGpwLWljb24tYWNjZW50Mi1ob3ZlciIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMTkgNi40MUwxNy41OSA1IDEyIDEwLjU5IDYuNDEgNSA1IDYuNDEgMTAuNTkgMTIgNSAxNy41OSA2LjQxIDE5IDEyIDEzLjQxIDE3LjU5IDE5IDE5IDE3LjU5IDEzLjQxIDEyeiIvPgogIDwvZz4KCiAgPGcgY2xhc3M9ImpwLWljb24tbm9uZSBqcC1pY29uLWJ1c3kiIGZpbGw9Im5vbmUiPgogICAgPGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-code: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTExLjQgMTguNkw2LjggMTRMMTEuNCA5LjRMMTAgOEw0IDE0TDEwIDIwTDExLjQgMTguNlpNMTYuNiAxOC42TDIxLjIgMTRMMTYuNiA5LjRMMTggOEwyNCAxNEwxOCAyMEwxNi42IDE4LjZWMTguNloiLz4KCTwvZz4KPC9zdmc+Cg==);\n  --jp-icon-console: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwMCAyMDAiPgogIDxnIGNsYXNzPSJqcC1pY29uLWJyYW5kMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMjg4RDEiPgogICAgPHBhdGggZD0iTTIwIDE5LjhoMTYwdjE1OS45SDIweiIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNmZmYiPgogICAgPHBhdGggZD0iTTEwNSAxMjcuM2g0MHYxMi44aC00MHpNNTEuMSA3N0w3NCA5OS45bC0yMy4zIDIzLjMgMTAuNSAxMC41IDIzLjMtMjMuM0w5NSA5OS45IDg0LjUgODkuNCA2MS42IDY2LjV6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-copy: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTExLjksMUgzLjJDMi40LDEsMS43LDEuNywxLjcsMi41djEwLjJoMS41VjIuNWg4LjdWMXogTTE0LjEsMy45aC04Yy0wLjgsMC0xLjUsMC43LTEuNSwxLjV2MTAuMmMwLDAuOCwwLjcsMS41LDEuNSwxLjVoOCBjMC44LDAsMS41LTAuNywxLjUtMS41VjUuNEMxNS41LDQuNiwxNC45LDMuOSwxNC4xLDMuOXogTTE0LjEsMTUuNWgtOFY1LjRoOFYxNS41eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-copyright: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDI0IDI0IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCI+CiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0xMS44OCw5LjE0YzEuMjgsMC4wNiwxLjYxLDEuMTUsMS42MywxLjY2aDEuNzljLTAuMDgtMS45OC0xLjQ5LTMuMTktMy40NS0zLjE5QzkuNjQsNy42MSw4LDksOCwxMi4xNCBjMCwxLjk0LDAuOTMsNC4yNCwzLjg0LDQuMjRjMi4yMiwwLDMuNDEtMS42NSwzLjQ0LTIuOTVoLTEuNzljLTAuMDMsMC41OS0wLjQ1LDEuMzgtMS42MywxLjQ0QzEwLjU1LDE0LjgzLDEwLDEzLjgxLDEwLDEyLjE0IEMxMCw5LjI1LDExLjI4LDkuMTYsMTEuODgsOS4xNHogTTEyLDJDNi40OCwyLDIsNi40OCwyLDEyczQuNDgsMTAsMTAsMTBzMTAtNC40OCwxMC0xMFMxNy41MiwyLDEyLDJ6IE0xMiwyMGMtNC40MSwwLTgtMy41OS04LTggczMuNTktOCw4LThzOCwzLjU5LDgsOFMxNi40MSwyMCwxMiwyMHoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-cut: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkuNjQgNy42NGMuMjMtLjUuMzYtMS4wNS4zNi0xLjY0IDAtMi4yMS0xLjc5LTQtNC00UzIgMy43OSAyIDZzMS43OSA0IDQgNGMuNTkgMCAxLjE0LS4xMyAxLjY0LS4zNkwxMCAxMmwtMi4zNiAyLjM2QzcuMTQgMTQuMTMgNi41OSAxNCA2IDE0Yy0yLjIxIDAtNCAxLjc5LTQgNHMxLjc5IDQgNCA0IDQtMS43OSA0LTRjMC0uNTktLjEzLTEuMTQtLjM2LTEuNjRMMTIgMTRsNyA3aDN2LTFMOS42NCA3LjY0ek02IDhjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTAgMTJjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTYtNy41Yy0uMjggMC0uNS0uMjItLjUtLjVzLjIyLS41LjUtLjUuNS4yMi41LjUtLjIyLjUtLjUuNXpNMTkgM2wtNiA2IDIgMiA3LTdWM3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-download: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDloLTRWM0g5djZINWw3IDcgNy03ek01IDE4djJoMTR2LTJINXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-edit: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMgMTcuMjVWMjFoMy43NUwxNy44MSA5Ljk0bC0zLjc1LTMuNzVMMyAxNy4yNXpNMjAuNzEgNy4wNGMuMzktLjM5LjM5LTEuMDIgMC0xLjQxbC0yLjM0LTIuMzRjLS4zOS0uMzktMS4wMi0uMzktMS40MSAwbC0xLjgzIDEuODMgMy43NSAzLjc1IDEuODMtMS44M3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-ellipses: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iNSIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxOSIgY3k9IjEyIiByPSIyIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-extension: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwLjUgMTFIMTlWN2MwLTEuMS0uOS0yLTItMmgtNFYzLjVDMTMgMi4xMiAxMS44OCAxIDEwLjUgMVM4IDIuMTIgOCAzLjVWNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAydjMuOEgzLjVjMS40OSAwIDIuNyAxLjIxIDIuNyAyLjdzLTEuMjEgMi43LTIuNyAyLjdIMlYyMGMwIDEuMS45IDIgMiAyaDMuOHYtMS41YzAtMS40OSAxLjIxLTIuNyAyLjctMi43IDEuNDkgMCAyLjcgMS4yMSAyLjcgMi43VjIySDE3YzEuMSAwIDItLjkgMi0ydi00aDEuNWMxLjM4IDAgMi41LTEuMTIgMi41LTIuNVMyMS44OCAxMSAyMC41IDExeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-fast-forward: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTQgMThsOC41LTZMNCA2djEyem05LTEydjEybDguNS02TDEzIDZ6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-file-upload: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkgMTZoNnYtNmg0bC03LTctNyA3aDR6bS00IDJoMTR2Mkg1eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-file: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuMyA4LjJsLTUuNS01LjVjLS4zLS4zLS43LS41LTEuMi0uNUgzLjljLS44LjEtMS42LjktMS42IDEuOHYxNC4xYzAgLjkuNyAxLjYgMS42IDEuNmgxNC4yYy45IDAgMS42LS43IDEuNi0xLjZWOS40Yy4xLS41LS4xLS45LS40LTEuMnptLTUuOC0zLjNsMy40IDMuNmgtMy40VjQuOXptMy45IDEyLjdINC43Yy0uMSAwLS4yIDAtLjItLjJWNC43YzAtLjIuMS0uMy4yLS4zaDcuMnY0LjRzMCAuOC4zIDEuMWMuMy4zIDEuMS4zIDEuMS4zaDQuM3Y3LjJzLS4xLjItLjIuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-filter-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEwIDE4aDR2LTJoLTR2MnpNMyA2djJoMThWNkgzem0zIDdoMTJ2LTJINnYyeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY4YzAtMS4xLS45LTItMi0yaC04bC0yLTJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-html5: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMDAiIGQ9Ik0xMDguNCAwaDIzdjIyLjhoMjEuMlYwaDIzdjY5aC0yM1Y0NmgtMjF2MjNoLTIzLjJNMjA2IDIzaC0yMC4zVjBoNjMuN3YyM0gyMjl2NDZoLTIzbTUzLjUtNjloMjQuMWwxNC44IDI0LjNMMzEzLjIgMGgyNC4xdjY5aC0yM1YzNC44bC0xNi4xIDI0LjgtMTYuMS0yNC44VjY5aC0yMi42bTg5LjItNjloMjN2NDYuMmgzMi42VjY5aC01NS42Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI2U0NGQyNiIgZD0iTTEwNy42IDQ3MWwtMzMtMzcwLjRoMzYyLjhsLTMzIDM3MC4yTDI1NS43IDUxMiIvPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNmMTY1MjkiIGQ9Ik0yNTYgNDgwLjVWMTMxaDE0OC4zTDM3NiA0NDciLz4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNlYmViZWIiIGQ9Ik0xNDIgMTc2LjNoMTE0djQ1LjRoLTY0LjJsNC4yIDQ2LjVoNjB2NDUuM0gxNTQuNG0yIDIyLjhIMjAybDMuMiAzNi4zIDUwLjggMTMuNnY0Ny40bC05My4yLTI2Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIiBmaWxsPSIjZmZmIiBkPSJNMzY5LjYgMTc2LjNIMjU1Ljh2NDUuNGgxMDkuNm0tNC4xIDQ2LjVIMjU1Ljh2NDUuNGg1NmwtNS4zIDU5LTUwLjcgMTMuNnY0Ny4ybDkzLTI1LjgiLz4KPC9zdmc+Cg==);\n  --jp-icon-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1icmFuZDQganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNGRkYiIGQ9Ik0yLjIgMi4yaDE3LjV2MTcuNUgyLjJ6Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzNGNTFCNSIgZD0iTTIuMiAyLjJ2MTcuNWgxNy41bC4xLTE3LjVIMi4yem0xMi4xIDIuMmMxLjIgMCAyLjIgMSAyLjIgMi4ycy0xIDIuMi0yLjIgMi4yLTIuMi0xLTIuMi0yLjIgMS0yLjIgMi4yLTIuMnpNNC40IDE3LjZsMy4zLTguOCAzLjMgNi42IDIuMi0zLjIgNC40IDUuNEg0LjR6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-inspector: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY2YzAtMS4xLS45LTItMi0yem0tNSAxNEg0di00aDExdjR6bTAtNUg0VjloMTF2NHptNSA1aC00VjloNHY5eiIvPgo8L3N2Zz4K);\n  --jp-icon-json: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNGOUE4MjUiPgogICAgPHBhdGggZD0iTTIwLjIgMTEuOGMtMS42IDAtMS43LjUtMS43IDEgMCAuNC4xLjkuMSAxLjMuMS41LjEuOS4xIDEuMyAwIDEuNy0xLjQgMi4zLTMuNSAyLjNoLS45di0xLjloLjVjMS4xIDAgMS40IDAgMS40LS44IDAtLjMgMC0uNi0uMS0xIDAtLjQtLjEtLjgtLjEtMS4yIDAtMS4zIDAtMS44IDEuMy0yLTEuMy0uMi0xLjMtLjctMS4zLTIgMC0uNC4xLS44LjEtMS4yLjEtLjQuMS0uNy4xLTEgMC0uOC0uNC0uNy0xLjQtLjhoLS41VjQuMWguOWMyLjIgMCAzLjUuNyAzLjUgMi4zIDAgLjQtLjEuOS0uMSAxLjMtLjEuNS0uMS45LS4xIDEuMyAwIC41LjIgMSAxLjcgMXYxLjh6TTEuOCAxMC4xYzEuNiAwIDEuNy0uNSAxLjctMSAwLS40LS4xLS45LS4xLTEuMy0uMS0uNS0uMS0uOS0uMS0xLjMgMC0xLjYgMS40LTIuMyAzLjUtMi4zaC45djEuOWgtLjVjLTEgMC0xLjQgMC0xLjQuOCAwIC4zIDAgLjYuMSAxIDAgLjIuMS42LjEgMSAwIDEuMyAwIDEuOC0xLjMgMkM2IDExLjIgNiAxMS43IDYgMTNjMCAuNC0uMS44LS4xIDEuMi0uMS4zLS4xLjctLjEgMSAwIC44LjMuOCAxLjQuOGguNXYxLjloLS45Yy0yLjEgMC0zLjUtLjYtMy41LTIuMyAwLS40LjEtLjkuMS0xLjMuMS0uNS4xLS45LjEtMS4zIDAtLjUtLjItMS0xLjctMXYtMS45eiIvPgogICAgPGNpcmNsZSBjeD0iMTEiIGN5PSIxMy44IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY3g9IjExIiBjeT0iOC4yIiByPSIyLjEiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-julia: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDMyNSAzMDAiPgogIDxnIGNsYXNzPSJqcC1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjY2IzYzMzIj4KICAgIDxwYXRoIGQ9Ik0gMTUwLjg5ODQzOCAyMjUgQyAxNTAuODk4NDM4IDI2Ni40MjE4NzUgMTE3LjMyMDMxMiAzMDAgNzUuODk4NDM4IDMwMCBDIDM0LjQ3NjU2MiAzMDAgMC44OTg0MzggMjY2LjQyMTg3NSAwLjg5ODQzOCAyMjUgQyAwLjg5ODQzOCAxODMuNTc4MTI1IDM0LjQ3NjU2MiAxNTAgNzUuODk4NDM4IDE1MCBDIDExNy4zMjAzMTIgMTUwIDE1MC44OTg0MzggMTgzLjU3ODEyNSAxNTAuODk4NDM4IDIyNSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzM4OTgyNiI+CiAgICA8cGF0aCBkPSJNIDIzNy41IDc1IEMgMjM3LjUgMTE2LjQyMTg3NSAyMDMuOTIxODc1IDE1MCAxNjIuNSAxNTAgQyAxMjEuMDc4MTI1IDE1MCA4Ny41IDExNi40MjE4NzUgODcuNSA3NSBDIDg3LjUgMzMuNTc4MTI1IDEyMS4wNzgxMjUgMCAxNjIuNSAwIEMgMjAzLjkyMTg3NSAwIDIzNy41IDMzLjU3ODEyNSAyMzcuNSA3NSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzk1NThiMiI+CiAgICA8cGF0aCBkPSJNIDMyNC4xMDE1NjIgMjI1IEMgMzI0LjEwMTU2MiAyNjYuNDIxODc1IDI5MC41MjM0MzggMzAwIDI0OS4xMDE1NjIgMzAwIEMgMjA3LjY3OTY4OCAzMDAgMTc0LjEwMTU2MiAyNjYuNDIxODc1IDE3NC4xMDE1NjIgMjI1IEMgMTc0LjEwMTU2MiAxODMuNTc4MTI1IDIwNy42Nzk2ODggMTUwIDI0OS4xMDE1NjIgMTUwIEMgMjkwLjUyMzQzOCAxNTAgMzI0LjEwMTU2MiAxODMuNTc4MTI1IDMyNC4xMDE1NjIgMjI1Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-jupyter-favicon: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUyIiBoZWlnaHQ9IjE2NSIgdmlld0JveD0iMCAwIDE1MiAxNjUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA3ODk0NywgMTEwLjU4MjkyNykiIGQ9Ik03NS45NDIyODQyLDI5LjU4MDQ1NjEgQzQzLjMwMjM5NDcsMjkuNTgwNDU2MSAxNC43OTY3ODMyLDE3LjY1MzQ2MzQgMCwwIEM1LjUxMDgzMjExLDE1Ljg0MDY4MjkgMTUuNzgxNTM4OSwyOS41NjY3NzMyIDI5LjM5MDQ5NDcsMzkuMjc4NDE3MSBDNDIuOTk5Nyw0OC45ODk4NTM3IDU5LjI3MzcsNTQuMjA2NzgwNSA3NS45NjA1Nzg5LDU0LjIwNjc4MDUgQzkyLjY0NzQ1NzksNTQuMjA2NzgwNSAxMDguOTIxNDU4LDQ4Ljk4OTg1MzcgMTIyLjUzMDY2MywzOS4yNzg0MTcxIEMxMzYuMTM5NDUzLDI5LjU2Njc3MzIgMTQ2LjQxMDI4NCwxNS44NDA2ODI5IDE1MS45MjExNTgsMCBDMTM3LjA4Nzg2OCwxNy42NTM0NjM0IDEwOC41ODI1ODksMjkuNTgwNDU2MSA3NS45NDIyODQyLDI5LjU4MDQ1NjEgTDc1Ljk0MjI4NDIsMjkuNTgwNDU2MSBaIiAvPgogICAgPHBhdGggdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMzczNjgsIDAuNzA0ODc4KSIgZD0iTTc1Ljk3ODQ1NzksMjQuNjI2NDA3MyBDMTA4LjYxODc2MywyNC42MjY0MDczIDEzNy4xMjQ0NTgsMzYuNTUzNDQxNSAxNTEuOTIxMTU4LDU0LjIwNjc4MDUgQzE0Ni40MTAyODQsMzguMzY2MjIyIDEzNi4xMzk0NTMsMjQuNjQwMTMxNyAxMjIuNTMwNjYzLDE0LjkyODQ4NzggQzEwOC45MjE0NTgsNS4yMTY4NDM5IDkyLjY0NzQ1NzksMCA3NS45NjA1Nzg5LDAgQzU5LjI3MzcsMCA0Mi45OTk3LDUuMjE2ODQzOSAyOS4zOTA0OTQ3LDE0LjkyODQ4NzggQzE1Ljc4MTUzODksMjQuNjQwMTMxNyA1LjUxMDgzMjExLDM4LjM2NjIyMiAwLDU0LjIwNjc4MDUgQzE0LjgzMzA4MTYsMzYuNTg5OTI5MyA0My4zMzg1Njg0LDI0LjYyNjQwNzMgNzUuOTc4NDU3OSwyNC42MjY0MDczIEw3NS45Nzg0NTc5LDI0LjYyNjQwNzMgWiIgLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-jupyter: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzkiIGhlaWdodD0iNTEiIHZpZXdCb3g9IjAgMCAzOSA1MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTYzOCAtMjI4MSkiPgogICAgPGcgY2xhc3M9ImpwLWljb24td2FybjAiIGZpbGw9IiNGMzc3MjYiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5Ljc0IDIzMTEuOTgpIiBkPSJNIDE4LjI2NDYgNy4xMzQxMUMgMTAuNDE0NSA3LjEzNDExIDMuNTU4NzIgNC4yNTc2IDAgMEMgMS4zMjUzOSAzLjgyMDQgMy43OTU1NiA3LjEzMDgxIDcuMDY4NiA5LjQ3MzAzQyAxMC4zNDE3IDExLjgxNTIgMTQuMjU1NyAxMy4wNzM0IDE4LjI2OSAxMy4wNzM0QyAyMi4yODIzIDEzLjA3MzQgMjYuMTk2MyAxMS44MTUyIDI5LjQ2OTQgOS40NzMwM0MgMzIuNzQyNCA3LjEzMDgxIDM1LjIxMjYgMy44MjA0IDM2LjUzOCAwQyAzMi45NzA1IDQuMjU3NiAyNi4xMTQ4IDcuMTM0MTEgMTguMjY0NiA3LjEzNDExWiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5LjczIDIyODUuNDgpIiBkPSJNIDE4LjI3MzMgNS45MzkzMUMgMjYuMTIzNSA1LjkzOTMxIDMyLjk3OTMgOC44MTU4MyAzNi41MzggMTMuMDczNEMgMzUuMjEyNiA5LjI1MzAzIDMyLjc0MjQgNS45NDI2MiAyOS40Njk0IDMuNjAwNEMgMjYuMTk2MyAxLjI1ODE4IDIyLjI4MjMgMCAxOC4yNjkgMEMgMTQuMjU1NyAwIDEwLjM0MTcgMS4yNTgxOCA3LjA2ODYgMy42MDA0QyAzLjc5NTU2IDUuOTQyNjIgMS4zMjUzOSA5LjI1MzAzIDAgMTMuMDczNEMgMy41Njc0NSA4LjgyNDYzIDEwLjQyMzIgNS45MzkzMSAxOC4yNzMzIDUuOTM5MzFaIi8+CiAgICA8L2c+CiAgICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjY5LjMgMjI4MS4zMSkiIGQ9Ik0gNS44OTM1MyAyLjg0NEMgNS45MTg4OSAzLjQzMTY1IDUuNzcwODUgNC4wMTM2NyA1LjQ2ODE1IDQuNTE2NDVDIDUuMTY1NDUgNS4wMTkyMiA0LjcyMTY4IDUuNDIwMTUgNC4xOTI5OSA1LjY2ODUxQyAzLjY2NDMgNS45MTY4OCAzLjA3NDQ0IDYuMDAxNTEgMi40OTgwNSA1LjkxMTcxQyAxLjkyMTY2IDUuODIxOSAxLjM4NDYzIDUuNTYxNyAwLjk1NDg5OCA1LjE2NDAxQyAwLjUyNTE3IDQuNzY2MzMgMC4yMjIwNTYgNC4yNDkwMyAwLjA4MzkwMzcgMy42Nzc1N0MgLTAuMDU0MjQ4MyAzLjEwNjExIC0wLjAyMTIzIDIuNTA2MTcgMC4xNzg3ODEgMS45NTM2NEMgMC4zNzg3OTMgMS40MDExIDAuNzM2ODA5IDAuOTIwODE3IDEuMjA3NTQgMC41NzM1MzhDIDEuNjc4MjYgMC4yMjYyNTkgMi4yNDA1NSAwLjAyNzU5MTkgMi44MjMyNiAwLjAwMjY3MjI5QyAzLjYwMzg5IC0wLjAzMDcxMTUgNC4zNjU3MyAwLjI0OTc4OSA0Ljk0MTQyIDAuNzgyNTUxQyA1LjUxNzExIDEuMzE1MzEgNS44NTk1NiAyLjA1Njc2IDUuODkzNTMgMi44NDRaIi8+CiAgICAgIDxwYXRoIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE2MzkuOCAyMzIzLjgxKSIgZD0iTSA3LjQyNzg5IDMuNTgzMzhDIDcuNDYwMDggNC4zMjQzIDcuMjczNTUgNS4wNTgxOSA2Ljg5MTkzIDUuNjkyMTNDIDYuNTEwMzEgNi4zMjYwNyA1Ljk1MDc1IDYuODMxNTYgNS4yODQxMSA3LjE0NDZDIDQuNjE3NDcgNy40NTc2MyAzLjg3MzcxIDcuNTY0MTQgMy4xNDcwMiA3LjQ1MDYzQyAyLjQyMDMyIDcuMzM3MTIgMS43NDMzNiA3LjAwODcgMS4yMDE4NCA2LjUwNjk1QyAwLjY2MDMyOCA2LjAwNTIgMC4yNzg2MSA1LjM1MjY4IDAuMTA1MDE3IDQuNjMyMDJDIC0wLjA2ODU3NTcgMy45MTEzNSAtMC4wMjYyMzYxIDMuMTU0OTQgMC4yMjY2NzUgMi40NTg1NkMgMC40Nzk1ODcgMS43NjIxNyAwLjkzMTY5NyAxLjE1NzEzIDEuNTI1NzYgMC43MjAwMzNDIDIuMTE5ODMgMC4yODI5MzUgMi44MjkxNCAwLjAzMzQzOTUgMy41NjM4OSAwLjAwMzEzMzQ0QyA0LjU0NjY3IC0wLjAzNzQwMzMgNS41MDUyOSAwLjMxNjcwNiA2LjIyOTYxIDAuOTg3ODM1QyA2Ljk1MzkzIDEuNjU4OTYgNy4zODQ4NCAyLjU5MjM1IDcuNDI3ODkgMy41ODMzOEwgNy40Mjc4OSAzLjU4MzM4WiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM4LjM2IDIyODYuMDYpIiBkPSJNIDIuMjc0NzEgNC4zOTYyOUMgMS44NDM2MyA0LjQxNTA4IDEuNDE2NzEgNC4zMDQ0NSAxLjA0Nzk5IDQuMDc4NDNDIDAuNjc5MjY4IDMuODUyNCAwLjM4NTMyOCAzLjUyMTE0IDAuMjAzMzcxIDMuMTI2NTZDIDAuMDIxNDEzNiAyLjczMTk4IC0wLjA0MDM3OTggMi4yOTE4MyAwLjAyNTgxMTYgMS44NjE4MUMgMC4wOTIwMDMxIDEuNDMxOCAwLjI4MzIwNCAxLjAzMTI2IDAuNTc1MjEzIDAuNzEwODgzQyAwLjg2NzIyMiAwLjM5MDUxIDEuMjQ2OTEgMC4xNjQ3MDggMS42NjYyMiAwLjA2MjA1OTJDIDIuMDg1NTMgLTAuMDQwNTg5NyAyLjUyNTYxIC0wLjAxNTQ3MTQgMi45MzA3NiAwLjEzNDIzNUMgMy4zMzU5MSAwLjI4Mzk0MSAzLjY4NzkyIDAuNTUxNTA1IDMuOTQyMjIgMC45MDMwNkMgNC4xOTY1MiAxLjI1NDYyIDQuMzQxNjkgMS42NzQzNiA0LjM1OTM1IDIuMTA5MTZDIDQuMzgyOTkgMi42OTEwNyA0LjE3Njc4IDMuMjU4NjkgMy43ODU5NyAzLjY4NzQ2QyAzLjM5NTE2IDQuMTE2MjQgMi44NTE2NiA0LjM3MTE2IDIuMjc0NzEgNC4zOTYyOUwgMi4yNzQ3MSA0LjM5NjI5WiIvPgogICAgPC9nPgogIDwvZz4+Cjwvc3ZnPgo=);\n  --jp-icon-jupyterlab-wordmark: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIHZpZXdCb3g9IjAgMCAxODYwLjggNDc1Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0RTRFNEUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ4MC4xMzY0MDEsIDY0LjI3MTQ5MykiPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMDAwMDAsIDU4Ljg3NTU2NikiPgogICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA4NzYwMywgMC4xNDAyOTQpIj4KICAgICAgICA8cGF0aCBkPSJNLTQyNi45LDE2OS44YzAsNDguNy0zLjcsNjQuNy0xMy42LDc2LjRjLTEwLjgsMTAtMjUsMTUuNS0zOS43LDE1LjVsMy43LDI5IGMyMi44LDAuMyw0NC44LTcuOSw2MS45LTIzLjFjMTcuOC0xOC41LDI0LTQ0LjEsMjQtODMuM1YwSC00Mjd2MTcwLjFMLTQyNi45LDE2OS44TC00MjYuOSwxNjkuOHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTU1LjA0NTI5NiwgNTYuODM3MTA0KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuNTYyNDUzLCAxLjc5OTg0MikiPgogICAgICAgIDxwYXRoIGQ9Ik0tMzEyLDE0OGMwLDIxLDAsMzkuNSwxLjcsNTUuNGgtMzEuOGwtMi4xLTMzLjNoLTAuOGMtNi43LDExLjYtMTYuNCwyMS4zLTI4LDI3LjkgYy0xMS42LDYuNi0yNC44LDEwLTM4LjIsOS44Yy0zMS40LDAtNjktMTcuNy02OS04OVYwaDM2LjR2MTEyLjdjMCwzOC43LDExLjYsNjQuNyw0NC42LDY0LjdjMTAuMy0wLjIsMjAuNC0zLjUsMjguOS05LjQgYzguNS01LjksMTUuMS0xNC4zLDE4LjktMjMuOWMyLjItNi4xLDMuMy0xMi41LDMuMy0xOC45VjAuMmgzNi40VjE0OEgtMzEyTC0zMTIsMTQ4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzOTAuMDEzMzIyLCA1My40Nzk2MzgpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS43MDY0NTgsIDAuMjMxNDI1KSI+CiAgICAgICAgPHBhdGggZD0iTS00NzguNiw3MS40YzAtMjYtMC44LTQ3LTEuNy02Ni43aDMyLjdsMS43LDM0LjhoMC44YzcuMS0xMi41LDE3LjUtMjIuOCwzMC4xLTI5LjcgYzEyLjUtNywyNi43LTEwLjMsNDEtOS44YzQ4LjMsMCw4NC43LDQxLjcsODQuNywxMDMuM2MwLDczLjEtNDMuNywxMDkuMi05MSwxMDkuMmMtMTIuMSwwLjUtMjQuMi0yLjItMzUtNy44IGMtMTAuOC01LjYtMTkuOS0xMy45LTI2LjYtMjQuMmgtMC44VjI5MWgtMzZ2LTIyMEwtNDc4LjYsNzEuNEwtNDc4LjYsNzEuNHogTS00NDIuNiwxMjUuNmMwLjEsNS4xLDAuNiwxMC4xLDEuNywxNS4xIGMzLDEyLjMsOS45LDIzLjMsMTkuOCwzMS4xYzkuOSw3LjgsMjIuMSwxMi4xLDM0LjcsMTIuMWMzOC41LDAsNjAuNy0zMS45LDYwLjctNzguNWMwLTQwLjctMjEuMS03NS42LTU5LjUtNzUuNiBjLTEyLjksMC40LTI1LjMsNS4xLTM1LjMsMTMuNGMtOS45LDguMy0xNi45LDE5LjctMTkuNiwzMi40Yy0xLjUsNC45LTIuMywxMC0yLjUsMTUuMVYxMjUuNkwtNDQyLjYsMTI1LjZMLTQ0Mi42LDEyNS42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MDYuNzQwNzI2LCA1Ni44MzcxMDQpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC43NTEyMjYsIDEuOTg5Mjk5KSI+CiAgICAgICAgPHBhdGggZD0iTS00NDAuOCwwbDQzLjcsMTIwLjFjNC41LDEzLjQsOS41LDI5LjQsMTIuOCw0MS43aDAuOGMzLjctMTIuMiw3LjktMjcuNywxMi44LTQyLjQgbDM5LjctMTE5LjJoMzguNUwtMzQ2LjksMTQ1Yy0yNiw2OS43LTQzLjcsMTA1LjQtNjguNiwxMjcuMmMtMTIuNSwxMS43LTI3LjksMjAtNDQuNiwyMy45bC05LjEtMzEuMSBjMTEuNy0zLjksMjIuNS0xMC4xLDMxLjgtMTguMWMxMy4yLTExLjEsMjMuNy0yNS4yLDMwLjYtNDEuMmMxLjUtMi44LDIuNS01LjcsMi45LTguOGMtMC4zLTMuMy0xLjItNi42LTIuNS05LjdMLTQ4MC4yLDAuMSBoMzkuN0wtNDQwLjgsMEwtNDQwLjgsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODIyLjc0ODEwNCwgMC4wMDAwMDApIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS40NjQwNTAsIDAuMzc4OTE0KSI+CiAgICAgICAgPHBhdGggZD0iTS00MTMuNywwdjU4LjNoNTJ2MjguMmgtNTJWMTk2YzAsMjUsNywzOS41LDI3LjMsMzkuNWM3LjEsMC4xLDE0LjItMC43LDIxLjEtMi41IGwxLjcsMjcuN2MtMTAuMywzLjctMjEuMyw1LjQtMzIuMiw1Yy03LjMsMC40LTE0LjYtMC43LTIxLjMtMy40Yy02LjgtMi43LTEyLjktNi44LTE3LjktMTIuMWMtMTAuMy0xMC45LTE0LjEtMjktMTQuMS01Mi45IFY4Ni41aC0zMVY1OC4zaDMxVjkuNkwtNDEzLjcsMEwtNDEzLjcsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOTc0LjQzMzI4NiwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuOTkwMDM0LCAwLjYxMDMzOSkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDQ1LjgsMTEzYzAuOCw1MCwzMi4yLDcwLjYsNjguNiw3MC42YzE5LDAuNiwzNy45LTMsNTUuMy0xMC41bDYuMiwyNi40IGMtMjAuOSw4LjktNDMuNSwxMy4xLTY2LjIsMTIuNmMtNjEuNSwwLTk4LjMtNDEuMi05OC4zLTEwMi41Qy00ODAuMiw0OC4yLTQ0NC43LDAtMzg2LjUsMGM2NS4yLDAsODIuNyw1OC4zLDgyLjcsOTUuNyBjLTAuMSw1LjgtMC41LDExLjUtMS4yLDE3LjJoLTE0MC42SC00NDUuOEwtNDQ1LjgsMTEzeiBNLTMzOS4yLDg2LjZjMC40LTIzLjUtOS41LTYwLjEtNTAuNC02MC4xIGMtMzYuOCwwLTUyLjgsMzQuNC01NS43LDYwLjFILTMzOS4yTC0zMzkuMiw4Ni42TC0zMzkuMiw4Ni42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjAxLjk2MTA1OCwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuMTc5NjQwLCAwLjcwNTA2OCkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDc4LjYsNjhjMC0yMy45LTAuNC00NC41LTEuNy02My40aDMxLjhsMS4yLDM5LjloMS43YzkuMS0yNy4zLDMxLTQ0LjUsNTUuMy00NC41IGMzLjUtMC4xLDcsMC40LDEwLjMsMS4ydjM0LjhjLTQuMS0wLjktOC4yLTEuMy0xMi40LTEuMmMtMjUuNiwwLTQzLjcsMTkuNy00OC43LDQ3LjRjLTEsNS43LTEuNiwxMS41LTEuNywxNy4ydjEwOC4zaC0zNlY2OCBMLTQ3OC42LDY4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCBkPSJNMTM1Mi4zLDMyNi4yaDM3VjI4aC0zN1YzMjYuMnogTTE2MDQuOCwzMjYuMmMtMi41LTEzLjktMy40LTMxLjEtMy40LTQ4Ljd2LTc2IGMwLTQwLjctMTUuMS04My4xLTc3LjMtODMuMWMtMjUuNiwwLTUwLDcuMS02Ni44LDE4LjFsOC40LDI0LjRjMTQuMy05LjIsMzQtMTUuMSw1My0xNS4xYzQxLjYsMCw0Ni4yLDMwLjIsNDYuMiw0N3Y0LjIgYy03OC42LTAuNC0xMjIuMywyNi41LTEyMi4zLDc1LjZjMCwyOS40LDIxLDU4LjQsNjIuMiw1OC40YzI5LDAsNTAuOS0xNC4zLDYyLjItMzAuMmgxLjNsMi45LDI1LjZIMTYwNC44eiBNMTU2NS43LDI1Ny43IGMwLDMuOC0wLjgsOC0yLjEsMTEuOGMtNS45LDE3LjItMjIuNywzNC00OS4yLDM0Yy0xOC45LDAtMzQuOS0xMS4zLTM0LjktMzUuM2MwLTM5LjUsNDUuOC00Ni42LDg2LjItNDUuOFYyNTcuN3ogTTE2OTguNSwzMjYuMiBsMS43LTMzLjZoMS4zYzE1LjEsMjYuOSwzOC43LDM4LjIsNjguMSwzOC4yYzQ1LjQsMCw5MS4yLTM2LjEsOTEuMi0xMDguOGMwLjQtNjEuNy0zNS4zLTEwMy43LTg1LjctMTAzLjcgYy0zMi44LDAtNTYuMywxNC43LTY5LjMsMzcuNGgtMC44VjI4aC0zNi42djI0NS43YzAsMTguMS0wLjgsMzguNi0xLjcsNTIuNUgxNjk4LjV6IE0xNzA0LjgsMjA4LjJjMC01LjksMS4zLTEwLjksMi4xLTE1LjEgYzcuNi0yOC4xLDMxLjEtNDUuNCw1Ni4zLTQ1LjRjMzkuNSwwLDYwLjUsMzQuOSw2MC41LDc1LjZjMCw0Ni42LTIzLjEsNzguMS02MS44LDc4LjFjLTI2LjksMC00OC4zLTE3LjYtNTUuNS00My4zIGMtMC44LTQuMi0xLjctOC44LTEuNy0xMy40VjIwOC4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgZmlsbD0iIzYxNjE2MSIgZD0iTTE1IDlIOXY2aDZWOXptLTIgNGgtMnYtMmgydjJ6bTgtMlY5aC0yVjdjMC0xLjEtLjktMi0yLTJoLTJWM2gtMnYyaC0yVjNIOXYySDdjLTEuMSAwLTIgLjktMiAydjJIM3YyaDJ2MkgzdjJoMnYyYzAgMS4xLjkgMiAyIDJoMnYyaDJ2LTJoMnYyaDJ2LTJoMmMxLjEgMCAyLS45IDItMnYtMmgydi0yaC0ydi0yaDJ6bS00IDZIN1Y3aDEwdjEweiIvPgo8L3N2Zz4K);\n  --jp-icon-keyboard: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMTdjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY3YzAtMS4xLS45LTItMi0yem0tOSAzaDJ2MmgtMlY4em0wIDNoMnYyaC0ydi0yek04IDhoMnYySDhWOHptMCAzaDJ2Mkg4di0yem0tMSAySDV2LTJoMnYyem0wLTNINVY4aDJ2MnptOSA3SDh2LTJoOHYyem0wLTRoLTJ2LTJoMnYyem0wLTNoLTJWOGgydjJ6bTMgM2gtMnYtMmgydjJ6bTAtM2gtMlY4aDJ2MnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-launcher: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkgMTlINVY1aDdWM0g1YTIgMiAwIDAwLTIgMnYxNGEyIDIgMCAwMDIgMmgxNGMxLjEgMCAyLS45IDItMnYtN2gtMnY3ek0xNCAzdjJoMy41OWwtOS44MyA5LjgzIDEuNDEgMS40MUwxOSA2LjQxVjEwaDJWM2gtN3oiLz4KPC9zdmc+Cg==);\n  --jp-icon-line-form: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGZpbGw9IndoaXRlIiBkPSJNNS44OCA0LjEyTDEzLjc2IDEybC03Ljg4IDcuODhMOCAyMmwxMC0xMEw4IDJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-link: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMuOSAxMmMwLTEuNzEgMS4zOS0zLjEgMy4xLTMuMWg0VjdIN2MtMi43NiAwLTUgMi4yNC01IDVzMi4yNCA1IDUgNWg0di0xLjlIN2MtMS43MSAwLTMuMS0xLjM5LTMuMS0zLjF6TTggMTNoOHYtMkg4djJ6bTktNmgtNHYxLjloNGMxLjcxIDAgMy4xIDEuMzkgMy4xIDMuMXMtMS4zOSAzLjEtMy4xIDMuMWgtNFYxN2g0YzIuNzYgMCA1LTIuMjQgNS01cy0yLjI0LTUtNS01eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiM2MTYxNjEiIGQ9Ik0xOSA1djE0SDVWNWgxNG0xLjEtMkgzLjljLS41IDAtLjkuNC0uOS45djE2LjJjMCAuNC40LjkuOS45aDE2LjJjLjQgMCAuOS0uNS45LS45VjMuOWMwLS41LS41LS45LS45LS45ek0xMSA3aDZ2MmgtNlY3em0wIDRoNnYyaC02di0yem0wIDRoNnYyaC02ek03IDdoMnYySDd6bTAgNGgydjJIN3ptMCA0aDJ2Mkg3eiIvPgo8L3N2Zz4=);\n  --jp-icon-listings-info: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MC45NzggNTAuOTc4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MC45NzggNTAuOTc4OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+Cgk8Zz4KCQk8cGF0aCBzdHlsZT0iZmlsbDojMDEwMDAyOyIgZD0iTTQzLjUyLDcuNDU4QzM4LjcxMSwyLjY0OCwzMi4zMDcsMCwyNS40ODksMEMxOC42NywwLDEyLjI2NiwyLjY0OCw3LjQ1OCw3LjQ1OAoJCQljLTkuOTQzLDkuOTQxLTkuOTQzLDI2LjExOSwwLDM2LjA2MmM0LjgwOSw0LjgwOSwxMS4yMTIsNy40NTYsMTguMDMxLDcuNDU4YzAsMCwwLjAwMSwwLDAuMDAyLDAKCQkJYzYuODE2LDAsMTMuMjIxLTIuNjQ4LDE4LjAyOS03LjQ1OGM0LjgwOS00LjgwOSw3LjQ1Ny0xMS4yMTIsNy40NTctMTguMDNDNTAuOTc3LDE4LjY3LDQ4LjMyOCwxMi4yNjYsNDMuNTIsNy40NTh6CgkJCSBNNDIuMTA2LDQyLjEwNWMtNC40MzIsNC40MzEtMTAuMzMyLDYuODcyLTE2LjYxNSw2Ljg3MmgtMC4wMDJjLTYuMjg1LTAuMDAxLTEyLjE4Ny0yLjQ0MS0xNi42MTctNi44NzIKCQkJYy05LjE2Mi05LjE2My05LjE2Mi0yNC4wNzEsMC0zMy4yMzNDMTMuMzAzLDQuNDQsMTkuMjA0LDIsMjUuNDg5LDJjNi4yODQsMCwxMi4xODYsMi40NCwxNi42MTcsNi44NzIKCQkJYzQuNDMxLDQuNDMxLDYuODcxLDEwLjMzMiw2Ljg3MSwxNi42MTdDNDguOTc3LDMxLjc3Miw0Ni41MzYsMzcuNjc1LDQyLjEwNiw0Mi4xMDV6Ii8+CgkJPHBhdGggc3R5bGU9ImZpbGw6IzAxMDAwMjsiIGQ9Ik0yMy41NzgsMzIuMjE4Yy0wLjAyMy0xLjczNCwwLjE0My0zLjA1OSwwLjQ5Ni0zLjk3MmMwLjM1My0wLjkxMywxLjExLTEuOTk3LDIuMjcyLTMuMjUzCgkJCWMwLjQ2OC0wLjUzNiwwLjkyMy0xLjA2MiwxLjM2Ny0xLjU3NWMwLjYyNi0wLjc1MywxLjEwNC0xLjQ3OCwxLjQzNi0yLjE3NWMwLjMzMS0wLjcwNywwLjQ5NS0xLjU0MSwwLjQ5NS0yLjUKCQkJYzAtMS4wOTYtMC4yNi0yLjA4OC0wLjc3OS0yLjk3OWMtMC41NjUtMC44NzktMS41MDEtMS4zMzYtMi44MDYtMS4zNjljLTEuODAyLDAuMDU3LTIuOTg1LDAuNjY3LTMuNTUsMS44MzIKCQkJYy0wLjMwMSwwLjUzNS0wLjUwMywxLjE0MS0wLjYwNywxLjgxNGMtMC4xMzksMC43MDctMC4yMDcsMS40MzItMC4yMDcsMi4xNzRoLTIuOTM3Yy0wLjA5MS0yLjIwOCwwLjQwNy00LjExNCwxLjQ5My01LjcxOQoJCQljMS4wNjItMS42NCwyLjg1NS0yLjQ4MSw1LjM3OC0yLjUyN2MyLjE2LDAuMDIzLDMuODc0LDAuNjA4LDUuMTQxLDEuNzU4YzEuMjc4LDEuMTYsMS45MjksMi43NjQsMS45NSw0LjgxMQoJCQljMCwxLjE0Mi0wLjEzNywyLjExMS0wLjQxLDIuOTExYy0wLjMwOSwwLjg0NS0wLjczMSwxLjU5My0xLjI2OCwyLjI0M2MtMC40OTIsMC42NS0xLjA2OCwxLjMxOC0xLjczLDIuMDAyCgkJCWMtMC42NSwwLjY5Ny0xLjMxMywxLjQ3OS0xLjk4NywyLjM0NmMtMC4yMzksMC4zNzctMC40MjksMC43NzctMC41NjUsMS4xOTljLTAuMTYsMC45NTktMC4yMTcsMS45NTEtMC4xNzEsMi45NzkKCQkJQzI2LjU4OSwzMi4yMTgsMjMuNTc4LDMyLjIxOCwyMy41NzgsMzIuMjE4eiBNMjMuNTc4LDM4LjIydi0zLjQ4NGgzLjA3NnYzLjQ4NEgyMy41Nzh6Ii8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-markdown: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjN0IxRkEyIiBkPSJNNSAxNC45aDEybC02LjEgNnptOS40LTYuOGMwLTEuMy0uMS0yLjktLjEtNC41LS40IDEuNC0uOSAyLjktMS4zIDQuM2wtMS4zIDQuM2gtMkw4LjUgNy45Yy0uNC0xLjMtLjctMi45LTEtNC4zLS4xIDEuNi0uMSAzLjItLjIgNC42TDcgMTIuNEg0LjhsLjctMTFoMy4zTDEwIDVjLjQgMS4yLjcgMi43IDEgMy45LjMtMS4yLjctMi42IDEtMy45bDEuMi0zLjdoMy4zbC42IDExaC0yLjRsLS4zLTQuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-new-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwIDZoLThsLTItMkg0Yy0xLjExIDAtMS45OS44OS0xLjk5IDJMMiAxOGMwIDEuMTEuODkgMiAyIDJoMTZjMS4xMSAwIDItLjg5IDItMlY4YzAtMS4xMS0uODktMi0yLTJ6bS0xIDhoLTN2M2gtMnYtM2gtM3YtMmgzVjloMnYzaDN2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-not-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI1IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMTkgMTcuMTg0NCAyLjk2OTY4IDE0LjMwMzIgMS44NjA5NCAxMS40NDA5WiIvPgogICAgPHBhdGggY2xhc3M9ImpwLWljb24yIiBzdHJva2U9IiMzMzMzMzMiIHN0cm9rZS13aWR0aD0iMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOS4zMTU5MiA5LjMyMDMxKSIgZD0iTTcuMzY4NDIgMEwwIDcuMzY0NzkiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDkuMzE1OTIgMTYuNjgzNikgc2NhbGUoMSAtMSkiIGQ9Ik03LjM2ODQyIDBMMCA3LjM2NDc5Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-notebook: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNFRjZDMDAiPgogICAgPHBhdGggZD0iTTE4LjcgMy4zdjE1LjRIMy4zVjMuM2gxNS40bTEuNS0xLjVIMS44djE4LjNoMTguM2wuMS0xOC4zeiIvPgogICAgPHBhdGggZD0iTTE2LjUgMTYuNWwtNS40LTQuMy01LjYgNC4zdi0xMWgxMXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-numbering: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTQgMTlINlYxOS41SDVWMjAuNUg2VjIxSDRWMjJIN1YxOEg0VjE5Wk01IDEwSDZWNkg0VjdINVYxMFpNNCAxM0g1LjhMNCAxNS4xVjE2SDdWMTVINS4yTDcgMTIuOVYxMkg0VjEzWk05IDdWOUgyM1Y3SDlaTTkgMjFIMjNWMTlIOVYyMVpNOSAxNUgyM1YxM0g5VjE1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-offline-bolt: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDIuMDJjLTUuNTEgMC05Ljk4IDQuNDctOS45OCA5Ljk4czQuNDcgOS45OCA5Ljk4IDkuOTggOS45OC00LjQ3IDkuOTgtOS45OFMxNy41MSAyLjAyIDEyIDIuMDJ6TTExLjQ4IDIwdi02LjI2SDhMMTMgNHY2LjI2aDMuMzVMMTEuNDggMjB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-palette: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE4IDEzVjIwSDRWNkg5LjAyQzkuMDcgNS4yOSA5LjI0IDQuNjIgOS41IDRINEMyLjkgNCAyIDQuOSAyIDZWMjBDMiAyMS4xIDIuOSAyMiA0IDIySDE4QzE5LjEgMjIgMjAgMjEuMSAyMCAyMFYxNUwxOCAxM1pNMTkuMyA4Ljg5QzE5Ljc0IDguMTkgMjAgNy4zOCAyMCA2LjVDMjAgNC4wMSAxNy45OSAyIDE1LjUgMkMxMy4wMSAyIDExIDQuMDEgMTEgNi41QzExIDguOTkgMTMuMDEgMTEgMTUuNDkgMTFDMTYuMzcgMTEgMTcuMTkgMTAuNzQgMTcuODggMTAuM0wyMSAxMy40MkwyMi40MiAxMkwxOS4zIDguODlaTTE1LjUgOUMxNC4xMiA5IDEzIDcuODggMTMgNi41QzEzIDUuMTIgMTQuMTIgNCAxNS41IDRDMTYuODggNCAxOCA1LjEyIDE4IDYuNUMxOCA3Ljg4IDE2Ljg4IDkgMTUuNSA5WiIvPgogICAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDZIOS4wMTg5NEM5LjAwNjM5IDYuMTY1MDIgOSA2LjMzMTc2IDkgNi41QzkgOC44MTU3NyAxMC4yMTEgMTAuODQ4NyAxMi4wMzQzIDEySDlWMTRIMTZWMTIuOTgxMUMxNi41NzAzIDEyLjkzNzcgMTcuMTIgMTIuODIwNyAxNy42Mzk2IDEyLjYzOTZMMTggMTNWMjBINFY2Wk04IDhINlYxMEg4VjhaTTYgMTJIOFYxNEg2VjEyWk04IDE2SDZWMThIOFYxNlpNOSAxNkgxNlYxOEg5VjE2WiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-paste: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE5IDJoLTQuMThDMTQuNC44NCAxMy4zIDAgMTIgMGMtMS4zIDAtMi40Ljg0LTIuODIgMkg1Yy0xLjEgMC0yIC45LTIgMnYxNmMwIDEuMS45IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjRjMC0xLjEtLjktMi0yLTJ6bS03IDBjLjU1IDAgMSAuNDUgMSAxcy0uNDUgMS0xIDEtMS0uNDUtMS0xIC40NS0xIDEtMXptNyAxOEg1VjRoMnYzaDEwVjRoMnYxNnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-pdf: url(data:image/svg+xml;base64,PHN2ZwogICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMiAyMiIgd2lkdGg9IjE2Ij4KICAgIDxwYXRoIHRyYW5zZm9ybT0icm90YXRlKDQ1KSIgY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI0ZGMkEyQSIKICAgICAgIGQ9Im0gMjIuMzQ0MzY5LC0zLjAxNjM2NDIgaCA1LjYzODYwNCB2IDEuNTc5MjQzMyBoIC0zLjU0OTIyNyB2IDEuNTA4NjkyOTkgaCAzLjMzNzU3NiBWIDEuNjUwODE1NCBoIC0zLjMzNzU3NiB2IDMuNDM1MjYxMyBoIC0yLjA4OTM3NyB6IG0gLTcuMTM2NDQ0LDEuNTc5MjQzMyB2IDQuOTQzOTU0MyBoIDAuNzQ4OTIgcSAxLjI4MDc2MSwwIDEuOTUzNzAzLC0wLjYzNDk1MzUgMC42NzgzNjksLTAuNjM0OTUzNSAwLjY3ODM2OSwtMS44NDUxNjQxIDAsLTEuMjA0NzgzNTUgLTAuNjcyOTQyLC0xLjgzNDMxMDExIC0wLjY3Mjk0MiwtMC42Mjk1MjY1OSAtMS45NTkxMywtMC42Mjk1MjY1OSB6IG0gLTIuMDg5Mzc3LC0xLjU3OTI0MzMgaCAyLjIwMzM0MyBxIDEuODQ1MTY0LDAgMi43NDYwMzksMC4yNjU5MjA3IDAuOTA2MzAxLDAuMjYwNDkzNyAxLjU1MjEwOCwwLjg5MDAyMDMgMC41Njk4MywwLjU0ODEyMjMgMC44NDY2MDUsMS4yNjQ0ODAwNiAwLjI3Njc3NCwwLjcxNjM1NzgxIDAuMjc2Nzc0LDEuNjIyNjU4OTQgMCwwLjkxNzE1NTEgLTAuMjc2Nzc0LDEuNjM4OTM5OSAtMC4yNzY3NzUsMC43MTYzNTc4IC0wLjg0NjYwNSwxLjI2NDQ4IC0wLjY1MTIzNCwwLjYyOTUyNjYgLTEuNTYyOTYyLDAuODk1NDQ3MyAtMC45MTE3MjgsMC4yNjA0OTM3IC0yLjczNTE4NSwwLjI2MDQ5MzcgaCAtMi4yMDMzNDMgeiBtIC04LjE0NTg1NjUsMCBoIDMuNDY3ODIzIHEgMS41NDY2ODE2LDAgMi4zNzE1Nzg1LDAuNjg5MjIzIDAuODMwMzI0LDAuNjgzNzk2MSAwLjgzMDMyNCwxLjk1MzcwMzE0IDAsMS4yNzUzMzM5NyAtMC44MzAzMjQsMS45NjQ1NTcwNiBRIDkuOTg3MTk2MSwyLjI3NDkxNSA4LjQ0MDUxNDUsMi4yNzQ5MTUgSCA3LjA2MjA2ODQgViA1LjA4NjA3NjcgSCA0Ljk3MjY5MTUgWiBtIDIuMDg5Mzc2OSwxLjUxNDExOTkgdiAyLjI2MzAzOTQzIGggMS4xNTU5NDEgcSAwLjYwNzgxODgsMCAwLjkzODg2MjksLTAuMjkzMDU1NDcgMC4zMzEwNDQxLC0wLjI5ODQ4MjQxIDAuMzMxMDQ0MSwtMC44NDExNzc3MiAwLC0wLjU0MjY5NTMxIC0wLjMzMTA0NDEsLTAuODM1NzUwNzQgLTAuMzMxMDQ0MSwtMC4yOTMwNTU1IC0wLjkzODg2MjksLTAuMjkzMDU1NSB6IgovPgo8L3N2Zz4K);\n  --jp-icon-python: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMEQ0N0ExIj4KICAgIDxwYXRoIGQ9Ik0xMS4xIDYuOVY1LjhINi45YzAtLjUgMC0xLjMuMi0xLjYuNC0uNy44LTEuMSAxLjctMS40IDEuNy0uMyAyLjUtLjMgMy45LS4xIDEgLjEgMS45LjkgMS45IDEuOXY0LjJjMCAuNS0uOSAxLjYtMiAxLjZIOC44Yy0xLjUgMC0yLjQgMS40LTIuNCAyLjh2Mi4ySDQuN0MzLjUgMTUuMSAzIDE0IDMgMTMuMVY5Yy0uMS0xIC42LTIgMS44LTIgMS41LS4xIDYuMy0uMSA2LjMtLjF6Ii8+CiAgICA8cGF0aCBkPSJNMTAuOSAxNS4xdjEuMWg0LjJjMCAuNSAwIDEuMy0uMiAxLjYtLjQuNy0uOCAxLjEtMS43IDEuNC0xLjcuMy0yLjUuMy0zLjkuMS0xLS4xLTEuOS0uOS0xLjktMS45di00LjJjMC0uNS45LTEuNiAyLTEuNmgzLjhjMS41IDAgMi40LTEuNCAyLjQtMi44VjYuNmgxLjdDMTguNSA2LjkgMTkgOCAxOSA4LjlWMTNjMCAxLS43IDIuMS0xLjkgMi4xaC02LjJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-r-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjE5NkYzIiBkPSJNNC40IDIuNWMxLjItLjEgMi45LS4zIDQuOS0uMyAyLjUgMCA0LjEuNCA1LjIgMS4zIDEgLjcgMS41IDEuOSAxLjUgMy41IDAgMi0xLjQgMy41LTIuOSA0LjEgMS4yLjQgMS43IDEuNiAyLjIgMyAuNiAxLjkgMSAzLjkgMS4zIDQuNmgtMy44Yy0uMy0uNC0uOC0xLjctMS4yLTMuN3MtMS4yLTIuNi0yLjYtMi42aC0uOXY2LjRINC40VjIuNXptMy43IDYuOWgxLjRjMS45IDAgMi45LS45IDIuOS0yLjNzLTEtMi4zLTIuOC0yLjNjLS43IDAtMS4zIDAtMS42LjJ2NC41aC4xdi0uMXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-react: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMTUwIDE1MCA1NDEuOSAyOTUuMyI+CiAgPGcgY2xhc3M9ImpwLWljb24tYnJhbmQyIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzYxREFGQiI+CiAgICA8cGF0aCBkPSJNNjY2LjMgMjk2LjVjMC0zMi41LTQwLjctNjMuMy0xMDMuMS04Mi40IDE0LjQtNjMuNiA4LTExNC4yLTIwLjItMTMwLjQtNi41LTMuOC0xNC4xLTUuNi0yMi40LTUuNnYyMi4zYzQuNiAwIDguMy45IDExLjQgMi42IDEzLjYgNy44IDE5LjUgMzcuNSAxNC45IDc1LjctMS4xIDkuNC0yLjkgMTkuMy01LjEgMjkuNC0xOS42LTQuOC00MS04LjUtNjMuNS0xMC45LTEzLjUtMTguNS0yNy41LTM1LjMtNDEuNi01MCAzMi42LTMwLjMgNjMuMi00Ni45IDg0LTQ2LjlWNzhjLTI3LjUgMC02My41IDE5LjYtOTkuOSA1My42LTM2LjQtMzMuOC03Mi40LTUzLjItOTkuOS01My4ydjIyLjNjMjAuNyAwIDUxLjQgMTYuNSA4NCA0Ni42LTE0IDE0LjctMjggMzEuNC00MS4zIDQ5LjktMjIuNiAyLjQtNDQgNi4xLTYzLjYgMTEtMi4zLTEwLTQtMTkuNy01LjItMjktNC43LTM4LjIgMS4xLTY3LjkgMTQuNi03NS44IDMtMS44IDYuOS0yLjYgMTEuNS0yLjZWNzguNWMtOC40IDAtMTYgMS44LTIyLjYgNS42LTI4LjEgMTYuMi0zNC40IDY2LjctMTkuOSAxMzAuMS02Mi4yIDE5LjItMTAyLjcgNDkuOS0xMDIuNyA4Mi4zIDAgMzIuNSA0MC43IDYzLjMgMTAzLjEgODIuNC0xNC40IDYzLjYtOCAxMTQuMiAyMC4yIDEzMC40IDYuNSAzLjggMTQuMSA1LjYgMjIuNSA1LjYgMjcuNSAwIDYzLjUtMTkuNiA5OS45LTUzLjYgMzYuNCAzMy44IDcyLjQgNTMuMiA5OS45IDUzLjIgOC40IDAgMTYtMS44IDIyLjYtNS42IDI4LjEtMTYuMiAzNC40LTY2LjcgMTkuOS0xMzAuMSA2Mi0xOS4xIDEwMi41LTQ5LjkgMTAyLjUtODIuM3ptLTEzMC4yLTY2LjdjLTMuNyAxMi45LTguMyAyNi4yLTEzLjUgMzkuNS00LjEtOC04LjQtMTYtMTMuMS0yNC00LjYtOC05LjUtMTUuOC0xNC40LTIzLjQgMTQuMiAyLjEgMjcuOSA0LjcgNDEgNy45em0tNDUuOCAxMDYuNWMtNy44IDEzLjUtMTUuOCAyNi4zLTI0LjEgMzguMi0xNC45IDEuMy0zMCAyLTQ1LjIgMi0xNS4xIDAtMzAuMi0uNy00NS0xLjktOC4zLTExLjktMTYuNC0yNC42LTI0LjItMzgtNy42LTEzLjEtMTQuNS0yNi40LTIwLjgtMzkuOCA2LjItMTMuNCAxMy4yLTI2LjggMjAuNy0zOS45IDcuOC0xMy41IDE1LjgtMjYuMyAyNC4xLTM4LjIgMTQuOS0xLjMgMzAtMiA0NS4yLTIgMTUuMSAwIDMwLjIuNyA0NSAxLjkgOC4zIDExLjkgMTYuNCAyNC42IDI0LjIgMzggNy42IDEzLjEgMTQuNSAyNi40IDIwLjggMzkuOC02LjMgMTMuNC0xMy4yIDI2LjgtMjAuNyAzOS45em0zMi4zLTEzYzUuNCAxMy40IDEwIDI2LjggMTMuOCAzOS44LTEzLjEgMy4yLTI2LjkgNS45LTQxLjIgOCA0LjktNy43IDkuOC0xNS42IDE0LjQtMjMuNyA0LjYtOCA4LjktMTYuMSAxMy0yNC4xek00MjEuMiA0MzBjLTkuMy05LjYtMTguNi0yMC4zLTI3LjgtMzIgOSAuNCAxOC4yLjcgMjcuNS43IDkuNCAwIDE4LjctLjIgMjcuOC0uNy05IDExLjctMTguMyAyMi40LTI3LjUgMzJ6bS03NC40LTU4LjljLTE0LjItMi4xLTI3LjktNC43LTQxLTcuOSAzLjctMTIuOSA4LjMtMjYuMiAxMy41LTM5LjUgNC4xIDggOC40IDE2IDEzLjEgMjQgNC43IDggOS41IDE1LjggMTQuNCAyMy40ek00MjAuNyAxNjNjOS4zIDkuNiAxOC42IDIwLjMgMjcuOCAzMi05LS40LTE4LjItLjctMjcuNS0uNy05LjQgMC0xOC43LjItMjcuOC43IDktMTEuNyAxOC4zLTIyLjQgMjcuNS0zMnptLTc0IDU4LjljLTQuOSA3LjctOS44IDE1LjYtMTQuNCAyMy43LTQuNiA4LTguOSAxNi0xMyAyNC01LjQtMTMuNC0xMC0yNi44LTEzLjgtMzkuOCAxMy4xLTMuMSAyNi45LTUuOCA0MS4yLTcuOXptLTkwLjUgMTI1LjJjLTM1LjQtMTUuMS01OC4zLTM0LjktNTguMy01MC42IDAtMTUuNyAyMi45LTM1LjYgNTguMy01MC42IDguNi0zLjcgMTgtNyAyNy43LTEwLjEgNS43IDE5LjYgMTMuMiA0MCAyMi41IDYwLjktOS4yIDIwLjgtMTYuNiA0MS4xLTIyLjIgNjAuNi05LjktMy4xLTE5LjMtNi41LTI4LTEwLjJ6TTMxMCA0OTBjLTEzLjYtNy44LTE5LjUtMzcuNS0xNC45LTc1LjcgMS4xLTkuNCAyLjktMTkuMyA1LjEtMjkuNCAxOS42IDQuOCA0MSA4LjUgNjMuNSAxMC45IDEzLjUgMTguNSAyNy41IDM1LjMgNDEuNiA1MC0zMi42IDMwLjMtNjMuMiA0Ni45LTg0IDQ2LjktNC41LS4xLTguMy0xLTExLjMtMi43em0yMzcuMi03Ni4yYzQuNyAzOC4yLTEuMSA2Ny45LTE0LjYgNzUuOC0zIDEuOC02LjkgMi42LTExLjUgMi42LTIwLjcgMC01MS40LTE2LjUtODQtNDYuNiAxNC0xNC43IDI4LTMxLjQgNDEuMy00OS45IDIyLjYtMi40IDQ0LTYuMSA2My42LTExIDIuMyAxMC4xIDQuMSAxOS44IDUuMiAyOS4xem0zOC41LTY2LjdjLTguNiAzLjctMTggNy0yNy43IDEwLjEtNS43LTE5LjYtMTMuMi00MC0yMi41LTYwLjkgOS4yLTIwLjggMTYuNi00MS4xIDIyLjItNjAuNiA5LjkgMy4xIDE5LjMgNi41IDI4LjEgMTAuMiAzNS40IDE1LjEgNTguMyAzNC45IDU4LjMgNTAuNi0uMSAxNS43LTIzIDM1LjYtNTguNCA1MC42ek0zMjAuOCA3OC40eiIvPgogICAgPGNpcmNsZSBjeD0iNDIwLjkiIGN5PSIyOTYuNSIgcj0iNDUuNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-redo: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTE4LjQgMTAuNkMxNi41NSA4Ljk5IDE0LjE1IDggMTEuNSA4Yy00LjY1IDAtOC41OCAzLjAzLTkuOTYgNy4yMkwzLjkgMTZjMS4wNS0zLjE5IDQuMDUtNS41IDcuNi01LjUgMS45NSAwIDMuNzMuNzIgNS4xMiAxLjg4TDEzIDE2aDlWN2wtMy42IDMuNnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-refresh: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTkgMTMuNWMtMi40OSAwLTQuNS0yLjAxLTQuNS00LjVTNi41MSA0LjUgOSA0LjVjMS4yNCAwIDIuMzYuNTIgMy4xNyAxLjMzTDEwIDhoNVYzbC0xLjc2IDEuNzZDMTIuMTUgMy42OCAxMC42NiAzIDkgMyA1LjY5IDMgMy4wMSA1LjY5IDMuMDEgOVM1LjY5IDE1IDkgMTVjMi45NyAwIDUuNDMtMi4xNiA1LjktNWgtMS41MmMtLjQ2IDItMi4yNCAzLjUtNC4zOCAzLjV6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-regex: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi1hY2NlbnQyIiBmaWxsPSIjRkZGIj4KICAgIDxjaXJjbGUgY2xhc3M9InN0MiIgY3g9IjUuNSIgY3k9IjE0LjUiIHI9IjEuNSIvPgogICAgPHJlY3QgeD0iMTIiIHk9IjQiIGNsYXNzPSJzdDIiIHdpZHRoPSIxIiBoZWlnaHQ9IjgiLz4KICAgIDxyZWN0IHg9IjguNSIgeT0iNy41IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjg2NiAtMC41IDAuNSAwLjg2NiAtMi4zMjU1IDcuMzIxOSkiIGNsYXNzPSJzdDIiIHdpZHRoPSI4IiBoZWlnaHQ9IjEiLz4KICAgIDxyZWN0IHg9IjEyIiB5PSI0IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjUgLTAuODY2IDAuODY2IDAuNSAtMC42Nzc5IDE0LjgyNTIpIiBjbGFzcz0ic3QyIiB3aWR0aD0iMSIgaGVpZ2h0PSI4Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-run: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTggNXYxNGwxMS03eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-running: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptOTYgMzI4YzAgOC44LTcuMiAxNi0xNiAxNkgxNzZjLTguOCAwLTE2LTcuMi0xNi0xNlYxNzZjMC04LjggNy4yLTE2IDE2LTE2aDE2MGM4LjggMCAxNiA3LjIgMTYgMTZ2MTYweiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-save: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE3IDNINWMtMS4xMSAwLTIgLjktMiAydjE0YzAgMS4xLjg5IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjdsLTQtNHptLTUgMTZjLTEuNjYgMC0zLTEuMzQtMy0zczEuMzQtMyAzLTMgMyAxLjM0IDMgMy0xLjM0IDMtMyAzem0zLTEwSDVWNWgxMHY0eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-search: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjEsMTAuOWgtMC43bC0wLjItMC4yYzAuOC0wLjksMS4zLTIuMiwxLjMtMy41YzAtMy0yLjQtNS40LTUuNC01LjRTMS44LDQuMiwxLjgsNy4xczIuNCw1LjQsNS40LDUuNCBjMS4zLDAsMi41LTAuNSwzLjUtMS4zbDAuMiwwLjJ2MC43bDQuMSw0LjFsMS4yLTEuMkwxMi4xLDEwLjl6IE03LjEsMTAuOWMtMi4xLDAtMy43LTEuNy0zLjctMy43czEuNy0zLjcsMy43LTMuN3MzLjcsMS43LDMuNywzLjcgUzkuMiwxMC45LDcuMSwxMC45eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-settings: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuNDMgMTIuOThjLjA0LS4zMi4wNy0uNjQuMDctLjk4cy0uMDMtLjY2LS4wNy0uOThsMi4xMS0xLjY1Yy4xOS0uMTUuMjQtLjQyLjEyLS42NGwtMi0zLjQ2Yy0uMTItLjIyLS4zOS0uMy0uNjEtLjIybC0yLjQ5IDFjLS41Mi0uNC0xLjA4LS43My0xLjY5LS45OGwtLjM4LTIuNjVBLjQ4OC40ODggMCAwMDE0IDJoLTRjLS4yNSAwLS40Ni4xOC0uNDkuNDJsLS4zOCAyLjY1Yy0uNjEuMjUtMS4xNy41OS0xLjY5Ljk4bC0yLjQ5LTFjLS4yMy0uMDktLjQ5IDAtLjYxLjIybC0yIDMuNDZjLS4xMy4yMi0uMDcuNDkuMTIuNjRsMi4xMSAxLjY1Yy0uMDQuMzItLjA3LjY1LS4wNy45OHMuMDMuNjYuMDcuOThsLTIuMTEgMS42NWMtLjE5LjE1LS4yNC40Mi0uMTIuNjRsMiAzLjQ2Yy4xMi4yMi4zOS4zLjYxLjIybDIuNDktMWMuNTIuNCAxLjA4LjczIDEuNjkuOThsLjM4IDIuNjVjLjAzLjI0LjI0LjQyLjQ5LjQyaDRjLjI1IDAgLjQ2LS4xOC40OS0uNDJsLjM4LTIuNjVjLjYxLS4yNSAxLjE3LS41OSAxLjY5LS45OGwyLjQ5IDFjLjIzLjA5LjQ5IDAgLjYxLS4yMmwyLTMuNDZjLjEyLS4yMi4wNy0uNDktLjEyLS42NGwtMi4xMS0xLjY1ek0xMiAxNS41Yy0xLjkzIDAtMy41LTEuNTctMy41LTMuNXMxLjU3LTMuNSAzLjUtMy41IDMuNSAxLjU3IDMuNSAzLjUtMS41NyAzLjUtMy41IDMuNXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-spreadsheet: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNENBRjUwIiBkPSJNMi4yIDIuMnYxNy42aDE3LjZWMi4ySDIuMnptMTUuNCA3LjdoLTUuNVY0LjRoNS41djUuNXpNOS45IDQuNHY1LjVINC40VjQuNGg1LjV6bS01LjUgNy43aDUuNXY1LjVINC40di01LjV6bTcuNyA1LjV2LTUuNWg1LjV2NS41aC01LjV6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-stop: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik02IDZoMTJ2MTJINnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tab: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIxIDNIM2MtMS4xIDAtMiAuOS0yIDJ2MTRjMCAxLjEuOSAyIDIgMmgxOGMxLjEgMCAyLS45IDItMlY1YzAtMS4xLS45LTItMi0yem0wIDE2SDNWNWgxMHY0aDh2MTB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-table-rows: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMSw4SDNWNGgxOFY4eiBNMjEsMTBIM3Y0aDE4VjEweiBNMjEsMTZIM3Y0aDE4VjE2eiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-tag: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCA0MyAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTI4LjgzMzIgMTIuMzM0TDMyLjk5OTggMTYuNTAwN0wzNy4xNjY1IDEyLjMzNEgyOC44MzMyWiIvPgoJCTxwYXRoIGQ9Ik0xNi4yMDk1IDIxLjYxMDRDMTUuNjg3MyAyMi4xMjk5IDE0Ljg0NDMgMjIuMTI5OSAxNC4zMjQ4IDIxLjYxMDRMNi45ODI5IDE0LjcyNDVDNi41NzI0IDE0LjMzOTQgNi4wODMxMyAxMy42MDk4IDYuMDQ3ODYgMTMuMDQ4MkM1Ljk1MzQ3IDExLjUyODggNi4wMjAwMiA4LjYxOTQ0IDYuMDY2MjEgNy4wNzY5NUM2LjA4MjgxIDYuNTE0NzcgNi41NTU0OCA2LjA0MzQ3IDcuMTE4MDQgNi4wMzA1NUM5LjA4ODYzIDUuOTg0NzMgMTMuMjYzOCA1LjkzNTc5IDEzLjY1MTggNi4zMjQyNUwyMS43MzY5IDEzLjYzOUMyMi4yNTYgMTQuMTU4NSAyMS43ODUxIDE1LjQ3MjQgMjEuMjYyIDE1Ljk5NDZMMTYuMjA5NSAyMS42MTA0Wk05Ljc3NTg1IDguMjY1QzkuMzM1NTEgNy44MjU2NiA4LjYyMzUxIDcuODI1NjYgOC4xODI4IDguMjY1QzcuNzQzNDYgOC43MDU3MSA3Ljc0MzQ2IDkuNDE3MzMgOC4xODI4IDkuODU2NjdDOC42MjM4MiAxMC4yOTY0IDkuMzM1ODIgMTAuMjk2NCA5Ljc3NTg1IDkuODU2NjdDMTAuMjE1NiA5LjQxNzMzIDEwLjIxNTYgOC43MDUzMyA5Ljc3NTg1IDguMjY1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-terminal: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiA+CiAgICA8cmVjdCBjbGFzcz0ianAtaWNvbjIganAtaWNvbi1zZWxlY3RhYmxlIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMikiIGZpbGw9IiMzMzMzMzMiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uLWFjY2VudDIganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGQ9Ik01LjA1NjY0IDguNzYxNzJDNS4wNTY2NCA4LjU5NzY2IDUuMDMxMjUgOC40NTMxMiA0Ljk4MDQ3IDguMzI4MTJDNC45MzM1OSA4LjE5OTIyIDQuODU1NDcgOC4wODIwMyA0Ljc0NjA5IDcuOTc2NTZDNC42NDA2MiA3Ljg3MTA5IDQuNSA3Ljc3NTM5IDQuMzI0MjIgNy42ODk0NUM0LjE1MjM0IDcuNTk5NjEgMy45NDMzNiA3LjUxMTcyIDMuNjk3MjcgNy40MjU3OEMzLjMwMjczIDcuMjg1MTYgMi45NDMzNiA3LjEzNjcyIDIuNjE5MTQgNi45ODA0N0MyLjI5NDkyIDYuODI0MjIgMi4wMTc1OCA2LjY0MjU4IDEuNzg3MTEgNi40MzU1NUMxLjU2MDU1IDYuMjI4NTIgMS4zODQ3NyA1Ljk4ODI4IDEuMjU5NzcgNS43MTQ4NEMxLjEzNDc3IDUuNDM3NSAxLjA3MjI3IDUuMTA5MzggMS4wNzIyNyA0LjczMDQ3QzEuMDcyMjcgNC4zOTg0NCAxLjEyODkxIDQuMDk1NyAxLjI0MjE5IDMuODIyMjdDMS4zNTU0NyAzLjU0NDkyIDEuNTE1NjIgMy4zMDQ2OSAxLjcyMjY2IDMuMTAxNTZDMS45Mjk2OSAyLjg5ODQ0IDIuMTc5NjkgMi43MzQzNyAyLjQ3MjY2IDIuNjA5MzhDMi43NjU2MiAyLjQ4NDM4IDMuMDkxOCAyLjQwNDMgMy40NTExNyAyLjM2OTE0VjEuMTA5MzhINC4zODg2N1YyLjM4MDg2QzQuNzQwMjMgMi40Mjc3MyA1LjA1NjY0IDIuNTIzNDQgNS4zMzc4OSAyLjY2Nzk3QzUuNjE5MTQgMi44MTI1IDUuODU3NDIgMy4wMDE5NSA2LjA1MjczIDMuMjM2MzNDNi4yNTE5NSAzLjQ2NjggNi40MDQzIDMuNzQwMjMgNi41MDk3NyA0LjA1NjY0QzYuNjE5MTQgNC4zNjkxNCA2LjY3MzgzIDQuNzIwNyA2LjY3MzgzIDUuMTExMzNINS4wNDQ5MkM1LjA0NDkyIDQuNjM4NjcgNC45Mzc1IDQuMjgxMjUgNC43MjI2NiA0LjAzOTA2QzQuNTA3ODEgMy43OTI5NyA0LjIxNjggMy42Njk5MiAzLjg0OTYxIDMuNjY5OTJDMy42NTAzOSAzLjY2OTkyIDMuNDc2NTYgMy42OTcyNyAzLjMyODEyIDMuNzUxOTVDMy4xODM1OSAzLjgwMjczIDMuMDY0NDUgMy44NzY5NSAyLjk3MDcgMy45NzQ2MUMyLjg3Njk1IDQuMDY4MzYgMi44MDY2NCA0LjE3OTY5IDIuNzU5NzcgNC4zMDg1OUMyLjcxNjggNC40Mzc1IDIuNjk1MzEgNC41NzgxMiAyLjY5NTMxIDQuNzMwNDdDMi42OTUzMSA0Ljg4MjgxIDIuNzE2OCA1LjAxOTUzIDIuNzU5NzcgNS4xNDA2MkMyLjgwNjY0IDUuMjU3ODEgMi44ODI4MSA1LjM2NzE5IDIuOTg4MjggNS40Njg3NUMzLjA5NzY2IDUuNTcwMzEgMy4yNDAyMyA1LjY2Nzk3IDMuNDE2MDIgNS43NjE3MkMzLjU5MTggNS44NTE1NiAzLjgxMDU1IDUuOTQzMzYgNC4wNzIyNyA2LjAzNzExQzQuNDY2OCA2LjE4NTU1IDQuODI0MjIgNi4zMzk4NCA1LjE0NDUzIDYuNUM1LjQ2NDg0IDYuNjU2MjUgNS43MzgyOCA2LjgzOTg0IDUuOTY0ODQgNy4wNTA3OEM2LjE5NTMxIDcuMjU3ODEgNi4zNzEwOSA3LjUgNi40OTIxOSA3Ljc3NzM0QzYuNjE3MTkgOC4wNTA3OCA2LjY3OTY5IDguMzc1IDYuNjc5NjkgOC43NUM2LjY3OTY5IDkuMDkzNzUgNi42MjMwNSA5LjQwNDMgNi41MDk3NyA5LjY4MTY0QzYuMzk2NDggOS45NTUwOCA2LjIzNDM4IDEwLjE5MTQgNi4wMjM0NCAxMC4zOTA2QzUuODEyNSAxMC41ODk4IDUuNTU4NTkgMTAuNzUgNS4yNjE3MiAxMC44NzExQzQuOTY0ODQgMTAuOTg4MyA0LjYzMjgxIDExLjA2NDUgNC4yNjU2MiAxMS4wOTk2VjEyLjI0OEgzLjMzMzk4VjExLjA5OTZDMy4wMDE5NSAxMS4wNjg0IDIuNjc5NjkgMTAuOTk2MSAyLjM2NzE5IDEwLjg4MjhDMi4wNTQ2OSAxMC43NjU2IDEuNzc3MzQgMTAuNTk3NyAxLjUzNTE2IDEwLjM3ODlDMS4yOTY4OCAxMC4xNjAyIDEuMTA1NDcgOS44ODQ3NyAwLjk2MDkzOCA5LjU1MjczQzAuODE2NDA2IDkuMjE2OCAwLjc0NDE0MSA4LjgxNDQ1IDAuNzQ0MTQxIDguMzQ1N0gyLjM3ODkxQzIuMzc4OTEgOC42MjY5NSAyLjQxOTkyIDguODYzMjggMi41MDE5NSA5LjA1NDY5QzIuNTgzOTggOS4yNDIxOSAyLjY4OTQ1IDkuMzkyNTggMi44MTgzNiA5LjUwNTg2QzIuOTUxMTcgOS42MTUyMyAzLjEwMTU2IDkuNjkzMzYgMy4yNjk1MyA5Ljc0MDIzQzMuNDM3NSA5Ljc4NzExIDMuNjA5MzggOS44MTA1NSAzLjc4NTE2IDkuODEwNTVDNC4yMDMxMiA5LjgxMDU1IDQuNTE5NTMgOS43MTI4OSA0LjczNDM4IDkuNTE3NThDNC45NDkyMiA5LjMyMjI3IDUuMDU2NjQgOS4wNzAzMSA1LjA1NjY0IDguNzYxNzJaTTEzLjQxOCAxMi4yNzE1SDguMDc0MjJWMTFIMTMuNDE4VjEyLjI3MTVaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzLjk1MjY0IDYpIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);\n  --jp-icon-text-editor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTUgMTVIM3YyaDEydi0yem0wLThIM3YyaDEyVjd6TTMgMTNoMTh2LTJIM3Yyem0wIDhoMTh2LTJIM3Yyek0zIDN2MmgxOFYzSDN6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-toc: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik03LDVIMjFWN0g3VjVNNywxM1YxMUgyMVYxM0g3TTQsNC41QTEuNSwxLjUgMCAwLDEgNS41LDZBMS41LDEuNSAwIDAsMSA0LDcuNUExLjUsMS41IDAgMCwxIDIuNSw2QTEuNSwxLjUgMCAwLDEgNCw0LjVNNCwxMC41QTEuNSwxLjUgMCAwLDEgNS41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMy41QTEuNSwxLjUgMCAwLDEgMi41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMC41TTcsMTlWMTdIMjFWMTlIN000LDE2LjVBMS41LDEuNSAwIDAsMSA1LjUsMThBMS41LDEuNSAwIDAsMSA0LDE5LjVBMS41LDEuNSAwIDAsMSAyLjUsMThBMS41LDEuNSAwIDAsMSA0LDE2LjVaIiAvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tree-view: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMiAxMVYzaC03djNIOVYzSDJ2OGg3VjhoMnYxMGg0djNoN3YtOGgtN3YzaC0yVjhoMnYzeiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMiAxNy4xODQ0IDIuOTY5NjggMTQuMzAzMiAxLjg2MDk0IDExLjQ0MDlaIi8+CiAgICA8cGF0aCBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiMzMzMzMzMiIHN0cm9rZT0iIzMzMzMzMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA5Ljg2NzE5KSIgZD0iTTIuODYwMTUgNC44NjUzNUwwLjcyNjU0OSAyLjk5OTU5TDAgMy42MzA0NUwyLjg2MDE1IDYuMTMxNTdMOCAwLjYzMDg3Mkw3LjI3ODU3IDBMMi44NjAxNSA0Ljg2NTM1WiIvPgo8L3N2Zz4K);\n  --jp-icon-undo: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjUgOGMtMi42NSAwLTUuMDUuOTktNi45IDIuNkwyIDd2OWg5bC0zLjYyLTMuNjJjMS4zOS0xLjE2IDMuMTYtMS44OCA1LjEyLTEuODggMy41NCAwIDYuNTUgMi4zMSA3LjYgNS41bDIuMzctLjc4QzIxLjA4IDExLjAzIDE3LjE1IDggMTIuNSA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-vega: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbjEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjEyMTIxIj4KICAgIDxwYXRoIGQ9Ik0xMC42IDUuNGwyLjItMy4ySDIuMnY3LjNsNC02LjZ6Ii8+CiAgICA8cGF0aCBkPSJNMTUuOCAyLjJsLTQuNCA2LjZMNyA2LjNsLTQuOCA4djUuNWgxNy42VjIuMmgtNHptLTcgMTUuNEg1LjV2LTQuNGgzLjN2NC40em00LjQgMEg5LjhWOS44aDMuNHY3Ljh6bTQuNCAwaC0zLjRWNi41aDMuNHYxMS4xeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-yaml: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1jb250cmFzdDIganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjRDgxQjYwIj4KICAgIDxwYXRoIGQ9Ik03LjIgMTguNnYtNS40TDMgNS42aDMuM2wxLjQgMy4xYy4zLjkuNiAxLjYgMSAyLjUuMy0uOC42LTEuNiAxLTIuNWwxLjQtMy4xaDMuNGwtNC40IDcuNnY1LjVsLTIuOS0uMXoiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxNi41IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxMSIgcj0iMi4xIi8+CiAgPC9nPgo8L3N2Zz4K);\n}\n\n/* Icon CSS class declarations */\n\n.jp-AddIcon {\n  background-image: var(--jp-icon-add);\n}\n.jp-BugIcon {\n  background-image: var(--jp-icon-bug);\n}\n.jp-BuildIcon {\n  background-image: var(--jp-icon-build);\n}\n.jp-CaretDownEmptyIcon {\n  background-image: var(--jp-icon-caret-down-empty);\n}\n.jp-CaretDownEmptyThinIcon {\n  background-image: var(--jp-icon-caret-down-empty-thin);\n}\n.jp-CaretDownIcon {\n  background-image: var(--jp-icon-caret-down);\n}\n.jp-CaretLeftIcon {\n  background-image: var(--jp-icon-caret-left);\n}\n.jp-CaretRightIcon {\n  background-image: var(--jp-icon-caret-right);\n}\n.jp-CaretUpEmptyThinIcon {\n  background-image: var(--jp-icon-caret-up-empty-thin);\n}\n.jp-CaretUpIcon {\n  background-image: var(--jp-icon-caret-up);\n}\n.jp-CaseSensitiveIcon {\n  background-image: var(--jp-icon-case-sensitive);\n}\n.jp-CheckIcon {\n  background-image: var(--jp-icon-check);\n}\n.jp-CircleEmptyIcon {\n  background-image: var(--jp-icon-circle-empty);\n}\n.jp-CircleIcon {\n  background-image: var(--jp-icon-circle);\n}\n.jp-ClearIcon {\n  background-image: var(--jp-icon-clear);\n}\n.jp-CloseIcon {\n  background-image: var(--jp-icon-close);\n}\n.jp-CodeIcon {\n  background-image: var(--jp-icon-code);\n}\n.jp-ConsoleIcon {\n  background-image: var(--jp-icon-console);\n}\n.jp-CopyIcon {\n  background-image: var(--jp-icon-copy);\n}\n.jp-CopyrightIcon {\n  background-image: var(--jp-icon-copyright);\n}\n.jp-CutIcon {\n  background-image: var(--jp-icon-cut);\n}\n.jp-DownloadIcon {\n  background-image: var(--jp-icon-download);\n}\n.jp-EditIcon {\n  background-image: var(--jp-icon-edit);\n}\n.jp-EllipsesIcon {\n  background-image: var(--jp-icon-ellipses);\n}\n.jp-ExtensionIcon {\n  background-image: var(--jp-icon-extension);\n}\n.jp-FastForwardIcon {\n  background-image: var(--jp-icon-fast-forward);\n}\n.jp-FileIcon {\n  background-image: var(--jp-icon-file);\n}\n.jp-FileUploadIcon {\n  background-image: var(--jp-icon-file-upload);\n}\n.jp-FilterListIcon {\n  background-image: var(--jp-icon-filter-list);\n}\n.jp-FolderIcon {\n  background-image: var(--jp-icon-folder);\n}\n.jp-Html5Icon {\n  background-image: var(--jp-icon-html5);\n}\n.jp-ImageIcon {\n  background-image: var(--jp-icon-image);\n}\n.jp-InspectorIcon {\n  background-image: var(--jp-icon-inspector);\n}\n.jp-JsonIcon {\n  background-image: var(--jp-icon-json);\n}\n.jp-JuliaIcon {\n  background-image: var(--jp-icon-julia);\n}\n.jp-JupyterFaviconIcon {\n  background-image: var(--jp-icon-jupyter-favicon);\n}\n.jp-JupyterIcon {\n  background-image: var(--jp-icon-jupyter);\n}\n.jp-JupyterlabWordmarkIcon {\n  background-image: var(--jp-icon-jupyterlab-wordmark);\n}\n.jp-KernelIcon {\n  background-image: var(--jp-icon-kernel);\n}\n.jp-KeyboardIcon {\n  background-image: var(--jp-icon-keyboard);\n}\n.jp-LauncherIcon {\n  background-image: var(--jp-icon-launcher);\n}\n.jp-LineFormIcon {\n  background-image: var(--jp-icon-line-form);\n}\n.jp-LinkIcon {\n  background-image: var(--jp-icon-link);\n}\n.jp-ListIcon {\n  background-image: var(--jp-icon-list);\n}\n.jp-ListingsInfoIcon {\n  background-image: var(--jp-icon-listings-info);\n}\n.jp-MarkdownIcon {\n  background-image: var(--jp-icon-markdown);\n}\n.jp-NewFolderIcon {\n  background-image: var(--jp-icon-new-folder);\n}\n.jp-NotTrustedIcon {\n  background-image: var(--jp-icon-not-trusted);\n}\n.jp-NotebookIcon {\n  background-image: var(--jp-icon-notebook);\n}\n.jp-NumberingIcon {\n  background-image: var(--jp-icon-numbering);\n}\n.jp-OfflineBoltIcon {\n  background-image: var(--jp-icon-offline-bolt);\n}\n.jp-PaletteIcon {\n  background-image: var(--jp-icon-palette);\n}\n.jp-PasteIcon {\n  background-image: var(--jp-icon-paste);\n}\n.jp-PdfIcon {\n  background-image: var(--jp-icon-pdf);\n}\n.jp-PythonIcon {\n  background-image: var(--jp-icon-python);\n}\n.jp-RKernelIcon {\n  background-image: var(--jp-icon-r-kernel);\n}\n.jp-ReactIcon {\n  background-image: var(--jp-icon-react);\n}\n.jp-RedoIcon {\n  background-image: var(--jp-icon-redo);\n}\n.jp-RefreshIcon {\n  background-image: var(--jp-icon-refresh);\n}\n.jp-RegexIcon {\n  background-image: var(--jp-icon-regex);\n}\n.jp-RunIcon {\n  background-image: var(--jp-icon-run);\n}\n.jp-RunningIcon {\n  background-image: var(--jp-icon-running);\n}\n.jp-SaveIcon {\n  background-image: var(--jp-icon-save);\n}\n.jp-SearchIcon {\n  background-image: var(--jp-icon-search);\n}\n.jp-SettingsIcon {\n  background-image: var(--jp-icon-settings);\n}\n.jp-SpreadsheetIcon {\n  background-image: var(--jp-icon-spreadsheet);\n}\n.jp-StopIcon {\n  background-image: var(--jp-icon-stop);\n}\n.jp-TabIcon {\n  background-image: var(--jp-icon-tab);\n}\n.jp-TableRowsIcon {\n  background-image: var(--jp-icon-table-rows);\n}\n.jp-TagIcon {\n  background-image: var(--jp-icon-tag);\n}\n.jp-TerminalIcon {\n  background-image: var(--jp-icon-terminal);\n}\n.jp-TextEditorIcon {\n  background-image: var(--jp-icon-text-editor);\n}\n.jp-TocIcon {\n  background-image: var(--jp-icon-toc);\n}\n.jp-TreeViewIcon {\n  background-image: var(--jp-icon-tree-view);\n}\n.jp-TrustedIcon {\n  background-image: var(--jp-icon-trusted);\n}\n.jp-UndoIcon {\n  background-image: var(--jp-icon-undo);\n}\n.jp-VegaIcon {\n  background-image: var(--jp-icon-vega);\n}\n.jp-YamlIcon {\n  background-image: var(--jp-icon-yaml);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n.jp-Icon,\n.jp-MaterialIcon {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-cover {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: cover;\n}\n\n/**\n * (DEPRECATED) Support for specific CSS icon sizes\n */\n\n.jp-Icon-16 {\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-18 {\n  background-size: 18px;\n  min-width: 18px;\n  min-height: 18px;\n}\n\n.jp-Icon-20 {\n  background-size: 20px;\n  min-width: 20px;\n  min-height: 20px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for icons as inline SVG HTMLElements\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n/* recolor the accent elements of an icon */\n.jp-icon-accent0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-accent1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-accent2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-accent3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-accent4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-accent0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-accent1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-accent2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-accent3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-accent4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n/* set the color of an icon to transparent */\n.jp-icon-none[fill] {\n  fill: none;\n}\n\n.jp-icon-none[stroke] {\n  stroke: none;\n}\n/* brand icon colors. Same for light and dark */\n.jp-icon-brand0[fill] {\n  fill: var(--jp-brand-color0);\n}\n.jp-icon-brand1[fill] {\n  fill: var(--jp-brand-color1);\n}\n.jp-icon-brand2[fill] {\n  fill: var(--jp-brand-color2);\n}\n.jp-icon-brand3[fill] {\n  fill: var(--jp-brand-color3);\n}\n.jp-icon-brand4[fill] {\n  fill: var(--jp-brand-color4);\n}\n\n.jp-icon-brand0[stroke] {\n  stroke: var(--jp-brand-color0);\n}\n.jp-icon-brand1[stroke] {\n  stroke: var(--jp-brand-color1);\n}\n.jp-icon-brand2[stroke] {\n  stroke: var(--jp-brand-color2);\n}\n.jp-icon-brand3[stroke] {\n  stroke: var(--jp-brand-color3);\n}\n.jp-icon-brand4[stroke] {\n  stroke: var(--jp-brand-color4);\n}\n/* warn icon colors. Same for light and dark */\n.jp-icon-warn0[fill] {\n  fill: var(--jp-warn-color0);\n}\n.jp-icon-warn1[fill] {\n  fill: var(--jp-warn-color1);\n}\n.jp-icon-warn2[fill] {\n  fill: var(--jp-warn-color2);\n}\n.jp-icon-warn3[fill] {\n  fill: var(--jp-warn-color3);\n}\n\n.jp-icon-warn0[stroke] {\n  stroke: var(--jp-warn-color0);\n}\n.jp-icon-warn1[stroke] {\n  stroke: var(--jp-warn-color1);\n}\n.jp-icon-warn2[stroke] {\n  stroke: var(--jp-warn-color2);\n}\n.jp-icon-warn3[stroke] {\n  stroke: var(--jp-warn-color3);\n}\n/* icon colors that contrast well with each other and most backgrounds */\n.jp-icon-contrast0[fill] {\n  fill: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[fill] {\n  fill: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[fill] {\n  fill: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[fill] {\n  fill: var(--jp-icon-contrast-color3);\n}\n\n.jp-icon-contrast0[stroke] {\n  stroke: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[stroke] {\n  stroke: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[stroke] {\n  stroke: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[stroke] {\n  stroke: var(--jp-icon-contrast-color3);\n}\n\n/* CSS for icons in selected items in the settings editor */\n#setting-editor .jp-PluginList .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n#setting-editor\n  .jp-PluginList\n  .jp-mod-selected\n  .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected filebrowser listing items */\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected tabs in the sidebar tab manager */\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable-inverse[fill] {\n  fill: #fff;\n}\n\n/**\n * TODO: come up with non css-hack solution for showing the busy icon on top\n *  of the close icon\n * CSS for complex behavior of close icon of tabs in the sidebar tab manager\n */\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty.jp-mod-active\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: #fff;\n}\n\n/**\n* TODO: come up with non css-hack solution for showing the busy icon on top\n*  of the close icon\n* CSS for complex behavior of close icon of tabs in the main area tabbar\n*/\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n/* CSS for icons in status bar */\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n/* special handling for splash icon CSS. While the theme CSS reloads during\n   splash, the splash icon can loose theming. To prevent that, we set a\n   default for its color variable */\n:root {\n  --jp-warn-color0: var(--md-orange-700);\n}\n\n/* not sure what to do with this one, used in filebrowser listing */\n.jp-DragIcon {\n  margin-right: 4px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for alt colors for icons as inline SVG HTMLElements\n */\n\n/* alt recolor the primary elements of an icon */\n.jp-icon-alt .jp-icon0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-alt .jp-icon0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* alt recolor the accent elements of an icon */\n.jp-icon-alt .jp-icon-accent0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-alt .jp-icon-accent0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-icon-hoverShow:not(:hover) svg {\n  display: none !important;\n}\n\n/**\n * Support for hover colors for icons as inline SVG HTMLElements\n */\n\n/**\n * regular colors\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon-hover :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/* recolor the accent elements of an icon */\n.jp-icon-hover :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* set the color of an icon to transparent */\n.jp-icon-hover :hover .jp-icon-none-hover[fill] {\n  fill: none;\n}\n\n.jp-icon-hover :hover .jp-icon-none-hover[stroke] {\n  stroke: none;\n}\n\n/**\n * inverse colors\n */\n\n/* inverse recolor the primary elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* inverse recolor the accent elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-switch {\n  display: flex;\n  align-items: center;\n  padding-left: 4px;\n  padding-right: 4px;\n  font-size: var(--jp-ui-font-size1);\n  background-color: transparent;\n  color: var(--jp-ui-font-color1);\n  border: none;\n  height: 20px;\n}\n\n.jp-switch:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-switch-label {\n  margin-right: 5px;\n}\n\n.jp-switch-track {\n  cursor: pointer;\n  background-color: var(--jp-border-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 34px;\n  height: 16px;\n  width: 35px;\n  position: relative;\n}\n\n.jp-switch-track::before {\n  content: '';\n  position: absolute;\n  height: 10px;\n  width: 10px;\n  margin: 3px;\n  left: 0px;\n  background-color: var(--jp-ui-inverse-font-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 50%;\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track {\n  background-color: var(--jp-warn-color0);\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track::before {\n  /* track width (35) - margins (3 + 3) - thumb width (10) */\n  left: 19px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* Sibling imports */\n\n/* Override Blueprint's _reset.scss styles */\nhtml {\n  box-sizing: unset;\n}\n\n*,\n*::before,\n*::after {\n  box-sizing: unset;\n}\n\nbody {\n  color: unset;\n  font-family: var(--jp-ui-font-family);\n}\n\np {\n  margin-top: unset;\n  margin-bottom: unset;\n}\n\nsmall {\n  font-size: unset;\n}\n\nstrong {\n  font-weight: unset;\n}\n\n/* Override Blueprint's _typography.scss styles */\na {\n  text-decoration: unset;\n  color: unset;\n}\na:hover {\n  text-decoration: unset;\n  color: unset;\n}\n\n/* Override Blueprint's _accessibility.scss styles */\n:focus {\n  outline: unset;\n  outline-offset: unset;\n  -moz-outline-radius: unset;\n}\n\n/* Styles for ui-components */\n.jp-Button {\n  border-radius: var(--jp-border-radius);\n  padding: 0px 12px;\n  font-size: var(--jp-ui-font-size1);\n}\n\n/* Use our own theme for hover styles */\nbutton.jp-Button.bp3-button.bp3-minimal:hover {\n  background-color: var(--jp-layout-color2);\n}\n.jp-Button.minimal {\n  color: unset !important;\n}\n\n.jp-Button.jp-ToolbarButtonComponent {\n  text-transform: none;\n}\n\n.jp-InputGroup input {\n  box-sizing: border-box;\n  border-radius: 0;\n  background-color: transparent;\n  color: var(--jp-ui-font-color0);\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.jp-InputGroup input:focus {\n  box-shadow: inset 0 0 0 var(--jp-border-width)\n      var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-InputGroup input::placeholder,\ninput::placeholder {\n  color: var(--jp-ui-font-color3);\n}\n\n.jp-BPIcon {\n  display: inline-block;\n  vertical-align: middle;\n  margin: auto;\n}\n\n/* Stop blueprint futzing with our icon fills */\n.bp3-icon.jp-BPIcon > svg:not([fill]) {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n.jp-InputGroupAction {\n  padding: 6px;\n}\n\n.jp-HTMLSelect.jp-DefaultStyle select {\n  background-color: initial;\n  border: none;\n  border-radius: 0;\n  box-shadow: none;\n  color: var(--jp-ui-font-color0);\n  display: block;\n  font-size: var(--jp-ui-font-size1);\n  height: 24px;\n  line-height: 14px;\n  padding: 0 25px 0 10px;\n  text-align: left;\n  -moz-appearance: none;\n  -webkit-appearance: none;\n}\n\n/* Use our own theme for hover and option styles */\n.jp-HTMLSelect.jp-DefaultStyle select:hover,\n.jp-HTMLSelect.jp-DefaultStyle select > option {\n  background-color: var(--jp-layout-color2);\n  color: var(--jp-ui-font-color0);\n}\nselect {\n  box-sizing: border-box;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapse {\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  border-top: 1px solid var(--jp-border-color2);\n  border-bottom: 1px solid var(--jp-border-color2);\n}\n\n.jp-Collapse-header {\n  padding: 1px 12px;\n  color: var(--jp-ui-font-color1);\n  background-color: var(--jp-layout-color1);\n  font-size: var(--jp-ui-font-size2);\n}\n\n.jp-Collapse-header:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-Collapse-contents {\n  padding: 0px 12px 0px 12px;\n  background-color: var(--jp-layout-color1);\n  color: var(--jp-ui-font-color1);\n  overflow: auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-commandpalette-search-height: 28px;\n}\n\n/*-----------------------------------------------------------------------------\n| Overall styles\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette {\n  padding-bottom: 0px;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Modal variant\n|----------------------------------------------------------------------------*/\n\n.jp-ModalCommandPalette {\n  position: absolute;\n  z-index: 10000;\n  top: 38px;\n  left: 30%;\n  margin: 0;\n  padding: 4px;\n  width: 40%;\n  box-shadow: var(--jp-elevation-z4);\n  border-radius: 4px;\n  background: var(--jp-layout-color0);\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette {\n  max-height: 40vh;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-close-icon::after {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-header {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-item {\n  margin-left: 4px;\n  margin-right: 4px;\n}\n\n.jp-ModalCommandPalette\n  .lm-CommandPalette\n  .lm-CommandPalette-item.lm-mod-disabled {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Search\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-search {\n  padding: 4px;\n  background-color: var(--jp-layout-color1);\n  z-index: 2;\n}\n\n.lm-CommandPalette-wrapper {\n  overflow: overlay;\n  padding: 0px 9px;\n  background-color: var(--jp-input-active-background);\n  height: 30px;\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.lm-CommandPalette.lm-mod-focused .lm-CommandPalette-wrapper {\n  box-shadow: inset 0 0 0 1px var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-SearchIconGroup {\n  color: white;\n  background-color: var(--jp-brand-color1);\n  position: absolute;\n  top: 4px;\n  right: 4px;\n  padding: 5px 5px 1px 5px;\n}\n\n.jp-SearchIconGroup svg {\n  height: 20px;\n  width: 20px;\n}\n\n.jp-SearchIconGroup .jp-icon3[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-input {\n  background: transparent;\n  width: calc(100% - 18px);\n  float: left;\n  border: none;\n  outline: none;\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  line-height: var(--jp-private-commandpalette-search-height);\n}\n\n.lm-CommandPalette-input::-webkit-input-placeholder,\n.lm-CommandPalette-input::-moz-placeholder,\n.lm-CommandPalette-input:-ms-input-placeholder {\n  color: var(--jp-ui-font-color2);\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Results\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-header:first-child {\n  margin-top: 0px;\n}\n\n.lm-CommandPalette-header {\n  border-bottom: solid var(--jp-border-width) var(--jp-border-color2);\n  color: var(--jp-ui-font-color1);\n  cursor: pointer;\n  display: flex;\n  font-size: var(--jp-ui-font-size0);\n  font-weight: 600;\n  letter-spacing: 1px;\n  margin-top: 8px;\n  padding: 8px 0 8px 12px;\n  text-transform: uppercase;\n}\n\n.lm-CommandPalette-header.lm-mod-active {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-header > mark {\n  background-color: transparent;\n  font-weight: bold;\n  color: var(--jp-ui-font-color1);\n}\n\n.lm-CommandPalette-item {\n  padding: 4px 12px 4px 4px;\n  color: var(--jp-ui-font-color1);\n  font-size: var(--jp-ui-font-size1);\n  font-weight: 400;\n  display: flex;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item.lm-mod-active {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .jp-icon-selectable[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active:hover:not(.lm-mod-disabled) {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item:hover:not(.lm-mod-active):not(.lm-mod-disabled) {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-itemContent {\n  overflow: hidden;\n}\n\n.lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled mark {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemIcon {\n  margin: 0 4px 0 0;\n  position: relative;\n  width: 16px;\n  top: 2px;\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled .lm-CommandPalette-itemIcon {\n  opacity: 0.6;\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-itemCaption {\n  display: none;\n}\n\n.lm-CommandPalette-content {\n  background-color: var(--jp-layout-color1);\n}\n\n.lm-CommandPalette-content:empty:after {\n  content: 'No results';\n  margin: auto;\n  margin-top: 20px;\n  width: 100px;\n  display: block;\n  font-size: var(--jp-ui-font-size2);\n  font-family: var(--jp-ui-font-family);\n  font-weight: lighter;\n}\n\n.lm-CommandPalette-emptyMessage {\n  text-align: center;\n  margin-top: 24px;\n  line-height: 1.32;\n  padding: 0px 8px;\n  color: var(--jp-content-font-color3);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Dialog {\n  position: absolute;\n  z-index: 10000;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  top: 0px;\n  left: 0px;\n  margin: 0;\n  padding: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-dialog-background);\n}\n\n.jp-Dialog-content {\n  display: flex;\n  flex-direction: column;\n  margin-left: auto;\n  margin-right: auto;\n  background: var(--jp-layout-color1);\n  padding: 24px;\n  padding-bottom: 12px;\n  min-width: 300px;\n  min-height: 150px;\n  max-width: 1000px;\n  max-height: 500px;\n  box-sizing: border-box;\n  box-shadow: var(--jp-elevation-z20);\n  word-wrap: break-word;\n  border-radius: var(--jp-border-radius);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color1);\n  resize: both;\n}\n\n.jp-Dialog-button {\n  overflow: visible;\n}\n\nbutton.jp-Dialog-button:focus {\n  outline: 1px solid var(--jp-brand-color1);\n  outline-offset: 4px;\n  -moz-outline-radius: 0px;\n}\n\nbutton.jp-Dialog-button:focus::-moz-focus-inner {\n  border: 0;\n}\n\nbutton.jp-Dialog-close-button {\n  padding: 0;\n  height: 100%;\n  min-width: unset;\n  min-height: unset;\n}\n\n.jp-Dialog-header {\n  display: flex;\n  justify-content: space-between;\n  flex: 0 0 auto;\n  padding-bottom: 12px;\n  font-size: var(--jp-ui-font-size3);\n  font-weight: 400;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-body {\n  display: flex;\n  flex-direction: column;\n  flex: 1 1 auto;\n  font-size: var(--jp-ui-font-size1);\n  background: var(--jp-layout-color1);\n  overflow: auto;\n}\n\n.jp-Dialog-footer {\n  display: flex;\n  flex-direction: row;\n  justify-content: flex-end;\n  flex: 0 0 auto;\n  margin-left: -12px;\n  margin-right: -12px;\n  padding: 12px;\n}\n\n.jp-Dialog-title {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.jp-Dialog-body > .jp-select-wrapper {\n  width: 100%;\n}\n\n.jp-Dialog-body > button {\n  padding: 0px 16px;\n}\n\n.jp-Dialog-body > label {\n  line-height: 1.4;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-button.jp-mod-styled:not(:last-child) {\n  margin-right: 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-HoverBox {\n  position: fixed;\n}\n\n.jp-HoverBox.jp-mod-outofview {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-IFrame {\n  width: 100%;\n  height: 100%;\n}\n\n.jp-IFrame > iframe {\n  border: none;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-IFrame {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-IFrame:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n.jp-Input-Boolean-Dialog {\n  flex-direction: row-reverse;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-Input-Boolean-Dialog > label {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MainAreaWidget > :focus {\n  outline: none;\n}\n\n/**\n * google-material-color v1.2.6\n * https://github.com/danlevan/google-material-color\n */\n:root {\n  --md-red-50: #ffebee;\n  --md-red-100: #ffcdd2;\n  --md-red-200: #ef9a9a;\n  --md-red-300: #e57373;\n  --md-red-400: #ef5350;\n  --md-red-500: #f44336;\n  --md-red-600: #e53935;\n  --md-red-700: #d32f2f;\n  --md-red-800: #c62828;\n  --md-red-900: #b71c1c;\n  --md-red-A100: #ff8a80;\n  --md-red-A200: #ff5252;\n  --md-red-A400: #ff1744;\n  --md-red-A700: #d50000;\n\n  --md-pink-50: #fce4ec;\n  --md-pink-100: #f8bbd0;\n  --md-pink-200: #f48fb1;\n  --md-pink-300: #f06292;\n  --md-pink-400: #ec407a;\n  --md-pink-500: #e91e63;\n  --md-pink-600: #d81b60;\n  --md-pink-700: #c2185b;\n  --md-pink-800: #ad1457;\n  --md-pink-900: #880e4f;\n  --md-pink-A100: #ff80ab;\n  --md-pink-A200: #ff4081;\n  --md-pink-A400: #f50057;\n  --md-pink-A700: #c51162;\n\n  --md-purple-50: #f3e5f5;\n  --md-purple-100: #e1bee7;\n  --md-purple-200: #ce93d8;\n  --md-purple-300: #ba68c8;\n  --md-purple-400: #ab47bc;\n  --md-purple-500: #9c27b0;\n  --md-purple-600: #8e24aa;\n  --md-purple-700: #7b1fa2;\n  --md-purple-800: #6a1b9a;\n  --md-purple-900: #4a148c;\n  --md-purple-A100: #ea80fc;\n  --md-purple-A200: #e040fb;\n  --md-purple-A400: #d500f9;\n  --md-purple-A700: #aa00ff;\n\n  --md-deep-purple-50: #ede7f6;\n  --md-deep-purple-100: #d1c4e9;\n  --md-deep-purple-200: #b39ddb;\n  --md-deep-purple-300: #9575cd;\n  --md-deep-purple-400: #7e57c2;\n  --md-deep-purple-500: #673ab7;\n  --md-deep-purple-600: #5e35b1;\n  --md-deep-purple-700: #512da8;\n  --md-deep-purple-800: #4527a0;\n  --md-deep-purple-900: #311b92;\n  --md-deep-purple-A100: #b388ff;\n  --md-deep-purple-A200: #7c4dff;\n  --md-deep-purple-A400: #651fff;\n  --md-deep-purple-A700: #6200ea;\n\n  --md-indigo-50: #e8eaf6;\n  --md-indigo-100: #c5cae9;\n  --md-indigo-200: #9fa8da;\n  --md-indigo-300: #7986cb;\n  --md-indigo-400: #5c6bc0;\n  --md-indigo-500: #3f51b5;\n  --md-indigo-600: #3949ab;\n  --md-indigo-700: #303f9f;\n  --md-indigo-800: #283593;\n  --md-indigo-900: #1a237e;\n  --md-indigo-A100: #8c9eff;\n  --md-indigo-A200: #536dfe;\n  --md-indigo-A400: #3d5afe;\n  --md-indigo-A700: #304ffe;\n\n  --md-blue-50: #e3f2fd;\n  --md-blue-100: #bbdefb;\n  --md-blue-200: #90caf9;\n  --md-blue-300: #64b5f6;\n  --md-blue-400: #42a5f5;\n  --md-blue-500: #2196f3;\n  --md-blue-600: #1e88e5;\n  --md-blue-700: #1976d2;\n  --md-blue-800: #1565c0;\n  --md-blue-900: #0d47a1;\n  --md-blue-A100: #82b1ff;\n  --md-blue-A200: #448aff;\n  --md-blue-A400: #2979ff;\n  --md-blue-A700: #2962ff;\n\n  --md-light-blue-50: #e1f5fe;\n  --md-light-blue-100: #b3e5fc;\n  --md-light-blue-200: #81d4fa;\n  --md-light-blue-300: #4fc3f7;\n  --md-light-blue-400: #29b6f6;\n  --md-light-blue-500: #03a9f4;\n  --md-light-blue-600: #039be5;\n  --md-light-blue-700: #0288d1;\n  --md-light-blue-800: #0277bd;\n  --md-light-blue-900: #01579b;\n  --md-light-blue-A100: #80d8ff;\n  --md-light-blue-A200: #40c4ff;\n  --md-light-blue-A400: #00b0ff;\n  --md-light-blue-A700: #0091ea;\n\n  --md-cyan-50: #e0f7fa;\n  --md-cyan-100: #b2ebf2;\n  --md-cyan-200: #80deea;\n  --md-cyan-300: #4dd0e1;\n  --md-cyan-400: #26c6da;\n  --md-cyan-500: #00bcd4;\n  --md-cyan-600: #00acc1;\n  --md-cyan-700: #0097a7;\n  --md-cyan-800: #00838f;\n  --md-cyan-900: #006064;\n  --md-cyan-A100: #84ffff;\n  --md-cyan-A200: #18ffff;\n  --md-cyan-A400: #00e5ff;\n  --md-cyan-A700: #00b8d4;\n\n  --md-teal-50: #e0f2f1;\n  --md-teal-100: #b2dfdb;\n  --md-teal-200: #80cbc4;\n  --md-teal-300: #4db6ac;\n  --md-teal-400: #26a69a;\n  --md-teal-500: #009688;\n  --md-teal-600: #00897b;\n  --md-teal-700: #00796b;\n  --md-teal-800: #00695c;\n  --md-teal-900: #004d40;\n  --md-teal-A100: #a7ffeb;\n  --md-teal-A200: #64ffda;\n  --md-teal-A400: #1de9b6;\n  --md-teal-A700: #00bfa5;\n\n  --md-green-50: #e8f5e9;\n  --md-green-100: #c8e6c9;\n  --md-green-200: #a5d6a7;\n  --md-green-300: #81c784;\n  --md-green-400: #66bb6a;\n  --md-green-500: #4caf50;\n  --md-green-600: #43a047;\n  --md-green-700: #388e3c;\n  --md-green-800: #2e7d32;\n  --md-green-900: #1b5e20;\n  --md-green-A100: #b9f6ca;\n  --md-green-A200: #69f0ae;\n  --md-green-A400: #00e676;\n  --md-green-A700: #00c853;\n\n  --md-light-green-50: #f1f8e9;\n  --md-light-green-100: #dcedc8;\n  --md-light-green-200: #c5e1a5;\n  --md-light-green-300: #aed581;\n  --md-light-green-400: #9ccc65;\n  --md-light-green-500: #8bc34a;\n  --md-light-green-600: #7cb342;\n  --md-light-green-700: #689f38;\n  --md-light-green-800: #558b2f;\n  --md-light-green-900: #33691e;\n  --md-light-green-A100: #ccff90;\n  --md-light-green-A200: #b2ff59;\n  --md-light-green-A400: #76ff03;\n  --md-light-green-A700: #64dd17;\n\n  --md-lime-50: #f9fbe7;\n  --md-lime-100: #f0f4c3;\n  --md-lime-200: #e6ee9c;\n  --md-lime-300: #dce775;\n  --md-lime-400: #d4e157;\n  --md-lime-500: #cddc39;\n  --md-lime-600: #c0ca33;\n  --md-lime-700: #afb42b;\n  --md-lime-800: #9e9d24;\n  --md-lime-900: #827717;\n  --md-lime-A100: #f4ff81;\n  --md-lime-A200: #eeff41;\n  --md-lime-A400: #c6ff00;\n  --md-lime-A700: #aeea00;\n\n  --md-yellow-50: #fffde7;\n  --md-yellow-100: #fff9c4;\n  --md-yellow-200: #fff59d;\n  --md-yellow-300: #fff176;\n  --md-yellow-400: #ffee58;\n  --md-yellow-500: #ffeb3b;\n  --md-yellow-600: #fdd835;\n  --md-yellow-700: #fbc02d;\n  --md-yellow-800: #f9a825;\n  --md-yellow-900: #f57f17;\n  --md-yellow-A100: #ffff8d;\n  --md-yellow-A200: #ffff00;\n  --md-yellow-A400: #ffea00;\n  --md-yellow-A700: #ffd600;\n\n  --md-amber-50: #fff8e1;\n  --md-amber-100: #ffecb3;\n  --md-amber-200: #ffe082;\n  --md-amber-300: #ffd54f;\n  --md-amber-400: #ffca28;\n  --md-amber-500: #ffc107;\n  --md-amber-600: #ffb300;\n  --md-amber-700: #ffa000;\n  --md-amber-800: #ff8f00;\n  --md-amber-900: #ff6f00;\n  --md-amber-A100: #ffe57f;\n  --md-amber-A200: #ffd740;\n  --md-amber-A400: #ffc400;\n  --md-amber-A700: #ffab00;\n\n  --md-orange-50: #fff3e0;\n  --md-orange-100: #ffe0b2;\n  --md-orange-200: #ffcc80;\n  --md-orange-300: #ffb74d;\n  --md-orange-400: #ffa726;\n  --md-orange-500: #ff9800;\n  --md-orange-600: #fb8c00;\n  --md-orange-700: #f57c00;\n  --md-orange-800: #ef6c00;\n  --md-orange-900: #e65100;\n  --md-orange-A100: #ffd180;\n  --md-orange-A200: #ffab40;\n  --md-orange-A400: #ff9100;\n  --md-orange-A700: #ff6d00;\n\n  --md-deep-orange-50: #fbe9e7;\n  --md-deep-orange-100: #ffccbc;\n  --md-deep-orange-200: #ffab91;\n  --md-deep-orange-300: #ff8a65;\n  --md-deep-orange-400: #ff7043;\n  --md-deep-orange-500: #ff5722;\n  --md-deep-orange-600: #f4511e;\n  --md-deep-orange-700: #e64a19;\n  --md-deep-orange-800: #d84315;\n  --md-deep-orange-900: #bf360c;\n  --md-deep-orange-A100: #ff9e80;\n  --md-deep-orange-A200: #ff6e40;\n  --md-deep-orange-A400: #ff3d00;\n  --md-deep-orange-A700: #dd2c00;\n\n  --md-brown-50: #efebe9;\n  --md-brown-100: #d7ccc8;\n  --md-brown-200: #bcaaa4;\n  --md-brown-300: #a1887f;\n  --md-brown-400: #8d6e63;\n  --md-brown-500: #795548;\n  --md-brown-600: #6d4c41;\n  --md-brown-700: #5d4037;\n  --md-brown-800: #4e342e;\n  --md-brown-900: #3e2723;\n\n  --md-grey-50: #fafafa;\n  --md-grey-100: #f5f5f5;\n  --md-grey-200: #eeeeee;\n  --md-grey-300: #e0e0e0;\n  --md-grey-400: #bdbdbd;\n  --md-grey-500: #9e9e9e;\n  --md-grey-600: #757575;\n  --md-grey-700: #616161;\n  --md-grey-800: #424242;\n  --md-grey-900: #212121;\n\n  --md-blue-grey-50: #eceff1;\n  --md-blue-grey-100: #cfd8dc;\n  --md-blue-grey-200: #b0bec5;\n  --md-blue-grey-300: #90a4ae;\n  --md-blue-grey-400: #78909c;\n  --md-blue-grey-500: #607d8b;\n  --md-blue-grey-600: #546e7a;\n  --md-blue-grey-700: #455a64;\n  --md-blue-grey-800: #37474f;\n  --md-blue-grey-900: #263238;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Spinner {\n  position: absolute;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  z-index: 10;\n  left: 0;\n  top: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-layout-color0);\n  outline: none;\n}\n\n.jp-SpinnerContent {\n  font-size: 10px;\n  margin: 50px auto;\n  text-indent: -9999em;\n  width: 3em;\n  height: 3em;\n  border-radius: 50%;\n  background: var(--jp-brand-color3);\n  background: linear-gradient(\n    to right,\n    #f37626 10%,\n    rgba(255, 255, 255, 0) 42%\n  );\n  position: relative;\n  animation: load3 1s infinite linear, fadeIn 1s;\n}\n\n.jp-SpinnerContent:before {\n  width: 50%;\n  height: 50%;\n  background: #f37626;\n  border-radius: 100% 0 0 0;\n  position: absolute;\n  top: 0;\n  left: 0;\n  content: '';\n}\n\n.jp-SpinnerContent:after {\n  background: var(--jp-layout-color0);\n  width: 75%;\n  height: 75%;\n  border-radius: 50%;\n  content: '';\n  margin: auto;\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n}\n\n@keyframes fadeIn {\n  0% {\n    opacity: 0;\n  }\n  100% {\n    opacity: 1;\n  }\n}\n\n@keyframes load3 {\n  0% {\n    transform: rotate(0deg);\n  }\n  100% {\n    transform: rotate(360deg);\n  }\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\nbutton.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: none;\n  box-sizing: border-box;\n  text-align: center;\n  line-height: 32px;\n  height: 32px;\n  padding: 0px 12px;\n  letter-spacing: 0.8px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput.jp-mod-styled {\n  background: var(--jp-input-background);\n  height: 28px;\n  box-sizing: border-box;\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n  padding-left: 7px;\n  padding-right: 7px;\n  font-size: var(--jp-ui-font-size2);\n  color: var(--jp-ui-font-color0);\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput[type='checkbox'].jp-mod-styled {\n  appearance: checkbox;\n  -webkit-appearance: checkbox;\n  -moz-appearance: checkbox;\n  height: auto;\n}\n\ninput.jp-mod-styled:focus {\n  border: var(--jp-border-width) solid var(--md-blue-500);\n  box-shadow: inset 0 0 4px var(--md-blue-300);\n}\n\n.jp-FileDialog-Checkbox {\n  margin-top: 35px;\n  display: flex;\n  flex-direction: row;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-FileDialog-Checkbox > label {\n  flex: 1 1 auto;\n}\n\n.jp-select-wrapper {\n  display: flex;\n  position: relative;\n  flex-direction: column;\n  padding: 1px;\n  background-color: var(--jp-layout-color1);\n  height: 28px;\n  box-sizing: border-box;\n  margin-bottom: 12px;\n}\n\n.jp-select-wrapper.jp-mod-focused select.jp-mod-styled {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-input-active-background);\n}\n\nselect.jp-mod-styled:hover {\n  background-color: var(--jp-layout-color1);\n  cursor: pointer;\n  color: var(--jp-ui-font-color0);\n  background-color: var(--jp-input-hover-background);\n  box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.5);\n}\n\nselect.jp-mod-styled {\n  flex: 1 1 auto;\n  height: 32px;\n  width: 100%;\n  font-size: var(--jp-ui-font-size2);\n  background: var(--jp-input-background);\n  color: var(--jp-ui-font-color0);\n  padding: 0 25px 0 8px;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-toolbar-height: calc(\n    28px + var(--jp-border-width)\n  ); /* leave 28px for content */\n}\n\n.jp-Toolbar {\n  color: var(--jp-ui-font-color1);\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  border-bottom: var(--jp-border-width) solid var(--jp-toolbar-border-color);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  background: var(--jp-toolbar-background);\n  min-height: var(--jp-toolbar-micro-height);\n  padding: 2px;\n  z-index: 1;\n  overflow-x: auto;\n}\n\n/* Toolbar items */\n\n.jp-Toolbar > .jp-Toolbar-item.jp-Toolbar-spacer {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\n.jp-Toolbar-item.jp-Toolbar-kernelStatus {\n  display: inline-block;\n  width: 32px;\n  background-repeat: no-repeat;\n  background-position: center;\n  background-size: 16px;\n}\n\n.jp-Toolbar > .jp-Toolbar-item {\n  flex: 0 0 auto;\n  display: flex;\n  padding-left: 1px;\n  padding-right: 1px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: var(--jp-private-toolbar-height);\n  height: 100%;\n}\n\n/* Toolbar buttons */\n\n/* This is the div we use to wrap the react component into a Widget */\ndiv.jp-ToolbarButton {\n  color: transparent;\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px;\n  margin: 0px;\n}\n\nbutton.jp-ToolbarButtonComponent {\n  background: var(--jp-layout-color1);\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px 6px;\n  margin: 0px;\n  height: 24px;\n  border-radius: var(--jp-border-radius);\n  display: flex;\n  align-items: center;\n  text-align: center;\n  font-size: 14px;\n  min-width: unset;\n  min-height: unset;\n}\n\nbutton.jp-ToolbarButtonComponent:disabled {\n  opacity: 0.4;\n}\n\nbutton.jp-ToolbarButtonComponent span {\n  padding: 0px;\n  flex: 0 0 auto;\n}\n\nbutton.jp-ToolbarButtonComponent .jp-ToolbarButtonComponent-label {\n  font-size: var(--jp-ui-font-size1);\n  line-height: 100%;\n  padding-left: 2px;\n  color: var(--jp-ui-font-color1);\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar.jp-Toolbar-micro {\n  padding: 0;\n  min-height: 0;\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar {\n  border: none;\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ body.p-mod-override-cursor *, /* </DEPRECATED> */\nbody.lm-mod-override-cursor * {\n  cursor: inherit !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-JSONEditor {\n  display: flex;\n  flex-direction: column;\n  width: 100%;\n}\n\n.jp-JSONEditor-host {\n  flex: 1 1 auto;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  background: var(--jp-layout-color0);\n  min-height: 50px;\n  padding: 1px;\n}\n\n.jp-JSONEditor.jp-mod-error .jp-JSONEditor-host {\n  border-color: red;\n  outline-color: red;\n}\n\n.jp-JSONEditor-header {\n  display: flex;\n  flex: 1 0 auto;\n  padding: 0 0 0 12px;\n}\n\n.jp-JSONEditor-header label {\n  flex: 0 0 auto;\n}\n\n.jp-JSONEditor-commitButton {\n  height: 16px;\n  width: 16px;\n  background-size: 18px;\n  background-repeat: no-repeat;\n  background-position: center;\n}\n\n.jp-JSONEditor-host.jp-mod-focused {\n  background-color: var(--jp-input-active-background);\n  border: 1px solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n.jp-Editor.jp-mod-dropTarget {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n/* BASICS */\n\n.CodeMirror {\n  /* Set height, width, borders, and global font properties here */\n  font-family: monospace;\n  height: 300px;\n  color: black;\n  direction: ltr;\n}\n\n/* PADDING */\n\n.CodeMirror-lines {\n  padding: 4px 0; /* Vertical padding around content */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  padding: 0 4px; /* Horizontal padding of content */\n}\n\n.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  background-color: white; /* The little square between H and V scrollbars */\n}\n\n/* GUTTER */\n\n.CodeMirror-gutters {\n  border-right: 1px solid #ddd;\n  background-color: #f7f7f7;\n  white-space: nowrap;\n}\n.CodeMirror-linenumbers {}\n.CodeMirror-linenumber {\n  padding: 0 3px 0 5px;\n  min-width: 20px;\n  text-align: right;\n  color: #999;\n  white-space: nowrap;\n}\n\n.CodeMirror-guttermarker { color: black; }\n.CodeMirror-guttermarker-subtle { color: #999; }\n\n/* CURSOR */\n\n.CodeMirror-cursor {\n  border-left: 1px solid black;\n  border-right: none;\n  width: 0;\n}\n/* Shown when moving in bi-directional text */\n.CodeMirror div.CodeMirror-secondarycursor {\n  border-left: 1px solid silver;\n}\n.cm-fat-cursor .CodeMirror-cursor {\n  width: auto;\n  border: 0 !important;\n  background: #7e7;\n}\n.cm-fat-cursor div.CodeMirror-cursors {\n  z-index: 1;\n}\n.cm-fat-cursor-mark {\n  background-color: rgba(20, 255, 20, 0.5);\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n}\n.cm-animate-fat-cursor {\n  width: auto;\n  border: 0;\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n  background-color: #7e7;\n}\n@-moz-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@-webkit-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n\n/* Can style cursor different in overwrite (non-insert) mode */\n.CodeMirror-overwrite .CodeMirror-cursor {}\n\n.cm-tab { display: inline-block; text-decoration: inherit; }\n\n.CodeMirror-rulers {\n  position: absolute;\n  left: 0; right: 0; top: -50px; bottom: 0;\n  overflow: hidden;\n}\n.CodeMirror-ruler {\n  border-left: 1px solid #ccc;\n  top: 0; bottom: 0;\n  position: absolute;\n}\n\n/* DEFAULT THEME */\n\n.cm-s-default .cm-header {color: blue;}\n.cm-s-default .cm-quote {color: #090;}\n.cm-negative {color: #d44;}\n.cm-positive {color: #292;}\n.cm-header, .cm-strong {font-weight: bold;}\n.cm-em {font-style: italic;}\n.cm-link {text-decoration: underline;}\n.cm-strikethrough {text-decoration: line-through;}\n\n.cm-s-default .cm-keyword {color: #708;}\n.cm-s-default .cm-atom {color: #219;}\n.cm-s-default .cm-number {color: #164;}\n.cm-s-default .cm-def {color: #00f;}\n.cm-s-default .cm-variable,\n.cm-s-default .cm-punctuation,\n.cm-s-default .cm-property,\n.cm-s-default .cm-operator {}\n.cm-s-default .cm-variable-2 {color: #05a;}\n.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}\n.cm-s-default .cm-comment {color: #a50;}\n.cm-s-default .cm-string {color: #a11;}\n.cm-s-default .cm-string-2 {color: #f50;}\n.cm-s-default .cm-meta {color: #555;}\n.cm-s-default .cm-qualifier {color: #555;}\n.cm-s-default .cm-builtin {color: #30a;}\n.cm-s-default .cm-bracket {color: #997;}\n.cm-s-default .cm-tag {color: #170;}\n.cm-s-default .cm-attribute {color: #00c;}\n.cm-s-default .cm-hr {color: #999;}\n.cm-s-default .cm-link {color: #00c;}\n\n.cm-s-default .cm-error {color: #f00;}\n.cm-invalidchar {color: #f00;}\n\n.CodeMirror-composing { border-bottom: 2px solid; }\n\n/* Default styles for common addons */\n\ndiv.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}\ndiv.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}\n.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }\n.CodeMirror-activeline-background {background: #e8f2ff;}\n\n/* STOP */\n\n/* The rest of this file contains styles related to the mechanics of\n   the editor. You probably shouldn't touch them. */\n\n.CodeMirror {\n  position: relative;\n  overflow: hidden;\n  background: white;\n}\n\n.CodeMirror-scroll {\n  overflow: scroll !important; /* Things will break if this is overridden */\n  /* 50px is the magic margin used to hide the element's real scrollbars */\n  /* See overflow: hidden in .CodeMirror */\n  margin-bottom: -50px; margin-right: -50px;\n  padding-bottom: 50px;\n  height: 100%;\n  outline: none; /* Prevent dragging from highlighting the element */\n  position: relative;\n}\n.CodeMirror-sizer {\n  position: relative;\n  border-right: 50px solid transparent;\n}\n\n/* The fake, visible scrollbars. Used to force redraw during scrolling\n   before actual scrolling happens, thus preventing shaking and\n   flickering artifacts. */\n.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  position: absolute;\n  z-index: 6;\n  display: none;\n  outline: none;\n}\n.CodeMirror-vscrollbar {\n  right: 0; top: 0;\n  overflow-x: hidden;\n  overflow-y: scroll;\n}\n.CodeMirror-hscrollbar {\n  bottom: 0; left: 0;\n  overflow-y: hidden;\n  overflow-x: scroll;\n}\n.CodeMirror-scrollbar-filler {\n  right: 0; bottom: 0;\n}\n.CodeMirror-gutter-filler {\n  left: 0; bottom: 0;\n}\n\n.CodeMirror-gutters {\n  position: absolute; left: 0; top: 0;\n  min-height: 100%;\n  z-index: 3;\n}\n.CodeMirror-gutter {\n  white-space: normal;\n  height: 100%;\n  display: inline-block;\n  vertical-align: top;\n  margin-bottom: -50px;\n}\n.CodeMirror-gutter-wrapper {\n  position: absolute;\n  z-index: 4;\n  background: none !important;\n  border: none !important;\n}\n.CodeMirror-gutter-background {\n  position: absolute;\n  top: 0; bottom: 0;\n  z-index: 4;\n}\n.CodeMirror-gutter-elt {\n  position: absolute;\n  cursor: default;\n  z-index: 4;\n}\n.CodeMirror-gutter-wrapper ::selection { background-color: transparent }\n.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }\n\n.CodeMirror-lines {\n  cursor: text;\n  min-height: 1px; /* prevents collapsing before first draw */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  /* Reset some styles that the rest of the page might have set */\n  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;\n  border-width: 0;\n  background: transparent;\n  font-family: inherit;\n  font-size: inherit;\n  margin: 0;\n  white-space: pre;\n  word-wrap: normal;\n  line-height: inherit;\n  color: inherit;\n  z-index: 2;\n  position: relative;\n  overflow: visible;\n  -webkit-tap-highlight-color: transparent;\n  -webkit-font-variant-ligatures: contextual;\n  font-variant-ligatures: contextual;\n}\n.CodeMirror-wrap pre.CodeMirror-line,\n.CodeMirror-wrap pre.CodeMirror-line-like {\n  word-wrap: break-word;\n  white-space: pre-wrap;\n  word-break: normal;\n}\n\n.CodeMirror-linebackground {\n  position: absolute;\n  left: 0; right: 0; top: 0; bottom: 0;\n  z-index: 0;\n}\n\n.CodeMirror-linewidget {\n  position: relative;\n  z-index: 2;\n  padding: 0.1px; /* Force widget margins to stay inside of the container */\n}\n\n.CodeMirror-widget {}\n\n.CodeMirror-rtl pre { direction: rtl; }\n\n.CodeMirror-code {\n  outline: none;\n}\n\n/* Force content-box sizing for the elements where we expect it */\n.CodeMirror-scroll,\n.CodeMirror-sizer,\n.CodeMirror-gutter,\n.CodeMirror-gutters,\n.CodeMirror-linenumber {\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n}\n\n.CodeMirror-measure {\n  position: absolute;\n  width: 100%;\n  height: 0;\n  overflow: hidden;\n  visibility: hidden;\n}\n\n.CodeMirror-cursor {\n  position: absolute;\n  pointer-events: none;\n}\n.CodeMirror-measure pre { position: static; }\n\ndiv.CodeMirror-cursors {\n  visibility: hidden;\n  position: relative;\n  z-index: 3;\n}\ndiv.CodeMirror-dragcursors {\n  visibility: visible;\n}\n\n.CodeMirror-focused div.CodeMirror-cursors {\n  visibility: visible;\n}\n\n.CodeMirror-selected { background: #d9d9d9; }\n.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }\n.CodeMirror-crosshair { cursor: crosshair; }\n.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }\n.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }\n\n.cm-searching {\n  background-color: #ffa;\n  background-color: rgba(255, 255, 0, .4);\n}\n\n/* Used to force a border model for a node */\n.cm-force-border { padding-right: .1px; }\n\n@media print {\n  /* Hide the cursor when printing */\n  .CodeMirror div.CodeMirror-cursors {\n    visibility: hidden;\n  }\n}\n\n/* See issue #2901 */\n.cm-tab-wrap-hack:after { content: ''; }\n\n/* Help users use markselection to safely style text background */\nspan.CodeMirror-selectedtext { background: none; }\n\n.CodeMirror-dialog {\n  position: absolute;\n  left: 0; right: 0;\n  background: inherit;\n  z-index: 15;\n  padding: .1em .8em;\n  overflow: hidden;\n  color: inherit;\n}\n\n.CodeMirror-dialog-top {\n  border-bottom: 1px solid #eee;\n  top: 0;\n}\n\n.CodeMirror-dialog-bottom {\n  border-top: 1px solid #eee;\n  bottom: 0;\n}\n\n.CodeMirror-dialog input {\n  border: none;\n  outline: none;\n  background: transparent;\n  width: 20em;\n  color: inherit;\n  font-family: monospace;\n}\n\n.CodeMirror-dialog button {\n  font-size: 70%;\n}\n\n.CodeMirror-foldmarker {\n  color: blue;\n  text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;\n  font-family: arial;\n  line-height: .3;\n  cursor: pointer;\n}\n.CodeMirror-foldgutter {\n  width: .7em;\n}\n.CodeMirror-foldgutter-open,\n.CodeMirror-foldgutter-folded {\n  cursor: pointer;\n}\n.CodeMirror-foldgutter-open:after {\n  content: \"\\25BE\";\n}\n.CodeMirror-foldgutter-folded:after {\n  content: \"\\25B8\";\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.CodeMirror {\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  border: 0;\n  border-radius: 0;\n  height: auto;\n  /* Changed to auto to autogrow */\n}\n\n.CodeMirror pre {\n  padding: 0 var(--jp-code-padding);\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-dialog {\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* This causes https://github.com/jupyter/jupyterlab/issues/522 */\n/* May not cause it not because we changed it! */\n.CodeMirror-lines {\n  padding: var(--jp-code-padding) 0;\n}\n\n.CodeMirror-linenumber {\n  padding: 0 8px;\n}\n\n.jp-CodeMirrorEditor {\n  cursor: text;\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n\n/* When zoomed out 67% and 33% on a screen of 1440 width x 900 height */\n@media screen and (min-width: 2138px) and (max-width: 4319px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width1) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n/* When zoomed out less than 33% */\n@media screen and (min-width: 4320px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width2) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n.CodeMirror.jp-mod-readOnly .CodeMirror-cursor {\n  display: none;\n}\n\n.CodeMirror-gutters {\n  border-right: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-layout-color0);\n}\n\n.jp-CollaboratorCursor {\n  border-left: 5px solid transparent;\n  border-right: 5px solid transparent;\n  border-top: none;\n  border-bottom: 3px solid;\n  background-clip: content-box;\n  margin-left: -5px;\n  margin-right: -5px;\n}\n\n.CodeMirror-selectedtext.cm-searching {\n  background-color: var(--jp-search-selected-match-background-color) !important;\n  color: var(--jp-search-selected-match-color) !important;\n}\n\n.cm-searching {\n  background-color: var(\n    --jp-search-unselected-match-background-color\n  ) !important;\n  color: var(--jp-search-unselected-match-color) !important;\n}\n\n.CodeMirror-focused .CodeMirror-selected {\n  background-color: var(--jp-editor-selected-focused-background);\n}\n\n.CodeMirror-selected {\n  background-color: var(--jp-editor-selected-background);\n}\n\n.jp-CollaboratorCursor-hover {\n  position: absolute;\n  z-index: 1;\n  transform: translateX(-50%);\n  color: white;\n  border-radius: 3px;\n  padding-left: 4px;\n  padding-right: 4px;\n  padding-top: 1px;\n  padding-bottom: 1px;\n  text-align: center;\n  font-size: var(--jp-ui-font-size1);\n  white-space: nowrap;\n}\n\n.jp-CodeMirror-ruler {\n  border-left: 1px dashed var(--jp-border-color2);\n}\n\n/**\n * Here is our jupyter theme for CodeMirror syntax highlighting\n * This is used in our marked.js syntax highlighting and CodeMirror itself\n * The string \"jupyter\" is set in ../codemirror/widget.DEFAULT_CODEMIRROR_THEME\n * This came from the classic notebook, which came form highlight.js/GitHub\n */\n\n/**\n * CodeMirror themes are handling the background/color in this way. This works\n * fine for CodeMirror editors outside the notebook, but the notebook styles\n * these things differently.\n */\n.CodeMirror.cm-s-jupyter {\n  background: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* In the notebook, we want this styling to be handled by its container */\n.jp-CodeConsole .CodeMirror.cm-s-jupyter,\n.jp-Notebook .CodeMirror.cm-s-jupyter {\n  background: transparent;\n}\n\n.cm-s-jupyter .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n.cm-s-jupyter span.cm-keyword {\n  color: var(--jp-mirror-editor-keyword-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-atom {\n  color: var(--jp-mirror-editor-atom-color);\n}\n.cm-s-jupyter span.cm-number {\n  color: var(--jp-mirror-editor-number-color);\n}\n.cm-s-jupyter span.cm-def {\n  color: var(--jp-mirror-editor-def-color);\n}\n.cm-s-jupyter span.cm-variable {\n  color: var(--jp-mirror-editor-variable-color);\n}\n.cm-s-jupyter span.cm-variable-2 {\n  color: var(--jp-mirror-editor-variable-2-color);\n}\n.cm-s-jupyter span.cm-variable-3 {\n  color: var(--jp-mirror-editor-variable-3-color);\n}\n.cm-s-jupyter span.cm-punctuation {\n  color: var(--jp-mirror-editor-punctuation-color);\n}\n.cm-s-jupyter span.cm-property {\n  color: var(--jp-mirror-editor-property-color);\n}\n.cm-s-jupyter span.cm-operator {\n  color: var(--jp-mirror-editor-operator-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-comment {\n  color: var(--jp-mirror-editor-comment-color);\n  font-style: italic;\n}\n.cm-s-jupyter span.cm-string {\n  color: var(--jp-mirror-editor-string-color);\n}\n.cm-s-jupyter span.cm-string-2 {\n  color: var(--jp-mirror-editor-string-2-color);\n}\n.cm-s-jupyter span.cm-meta {\n  color: var(--jp-mirror-editor-meta-color);\n}\n.cm-s-jupyter span.cm-qualifier {\n  color: var(--jp-mirror-editor-qualifier-color);\n}\n.cm-s-jupyter span.cm-builtin {\n  color: var(--jp-mirror-editor-builtin-color);\n}\n.cm-s-jupyter span.cm-bracket {\n  color: var(--jp-mirror-editor-bracket-color);\n}\n.cm-s-jupyter span.cm-tag {\n  color: var(--jp-mirror-editor-tag-color);\n}\n.cm-s-jupyter span.cm-attribute {\n  color: var(--jp-mirror-editor-attribute-color);\n}\n.cm-s-jupyter span.cm-header {\n  color: var(--jp-mirror-editor-header-color);\n}\n.cm-s-jupyter span.cm-quote {\n  color: var(--jp-mirror-editor-quote-color);\n}\n.cm-s-jupyter span.cm-link {\n  color: var(--jp-mirror-editor-link-color);\n}\n.cm-s-jupyter span.cm-error {\n  color: var(--jp-mirror-editor-error-color);\n}\n.cm-s-jupyter span.cm-hr {\n  color: #999;\n}\n\n.cm-s-jupyter span.cm-tab {\n  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);\n  background-position: right;\n  background-repeat: no-repeat;\n}\n\n.cm-s-jupyter .CodeMirror-activeline-background,\n.cm-s-jupyter .CodeMirror-gutter {\n  background-color: var(--jp-layout-color2);\n}\n\n/* Styles for shared cursors (remote cursor locations and selected ranges) */\n.jp-CodeMirrorEditor .remote-caret {\n  position: relative;\n  border-left: 2px solid black;\n  margin-left: -1px;\n  margin-right: -1px;\n  box-sizing: border-box;\n}\n\n.jp-CodeMirrorEditor .remote-caret > div {\n  white-space: nowrap;\n  position: absolute;\n  top: -1.15em;\n  padding-bottom: 0.05em;\n  left: -2px;\n  font-size: 0.95em;\n  background-color: rgb(250, 129, 0);\n  font-family: var(--jp-ui-font-family);\n  font-weight: bold;\n  line-height: normal;\n  user-select: none;\n  color: white;\n  padding-left: 2px;\n  padding-right: 2px;\n  z-index: 3;\n  transition: opacity 0.3s ease-in-out;\n}\n\n.jp-CodeMirrorEditor .remote-caret.hide-name > div {\n  transition-delay: 0.7s;\n  opacity: 0;\n}\n\n.jp-CodeMirrorEditor .remote-caret:hover > div {\n  opacity: 1;\n  transition-delay: 0s;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| RenderedText\n|----------------------------------------------------------------------------*/\n\n:root {\n  /* This is the padding value to fill the gaps between lines containing spans with background color. */\n  --jp-private-code-span-padding: calc(\n    (var(--jp-code-line-height) - 1) * var(--jp-code-font-size) / 2\n  );\n}\n\n.jp-RenderedText {\n  text-align: left;\n  padding-left: var(--jp-code-padding);\n  line-height: var(--jp-code-line-height);\n  font-family: var(--jp-code-font-family);\n}\n\n.jp-RenderedText pre,\n.jp-RenderedJavaScript pre,\n.jp-RenderedHTMLCommon pre {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-code-font-size);\n  border: none;\n  margin: 0px;\n  padding: 0px;\n}\n\n.jp-RenderedText pre a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* console foregrounds and backgrounds */\n.jp-RenderedText pre .ansi-black-fg {\n  color: #3e424d;\n}\n.jp-RenderedText pre .ansi-red-fg {\n  color: #e75c58;\n}\n.jp-RenderedText pre .ansi-green-fg {\n  color: #00a250;\n}\n.jp-RenderedText pre .ansi-yellow-fg {\n  color: #ddb62b;\n}\n.jp-RenderedText pre .ansi-blue-fg {\n  color: #208ffb;\n}\n.jp-RenderedText pre .ansi-magenta-fg {\n  color: #d160c4;\n}\n.jp-RenderedText pre .ansi-cyan-fg {\n  color: #60c6c8;\n}\n.jp-RenderedText pre .ansi-white-fg {\n  color: #c5c1b4;\n}\n\n.jp-RenderedText pre .ansi-black-bg {\n  background-color: #3e424d;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-bg {\n  background-color: #e75c58;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-bg {\n  background-color: #00a250;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-bg {\n  background-color: #ddb62b;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-bg {\n  background-color: #208ffb;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-bg {\n  background-color: #d160c4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-bg {\n  background-color: #60c6c8;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-bg {\n  background-color: #c5c1b4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-black-intense-fg {\n  color: #282c36;\n}\n.jp-RenderedText pre .ansi-red-intense-fg {\n  color: #b22b31;\n}\n.jp-RenderedText pre .ansi-green-intense-fg {\n  color: #007427;\n}\n.jp-RenderedText pre .ansi-yellow-intense-fg {\n  color: #b27d12;\n}\n.jp-RenderedText pre .ansi-blue-intense-fg {\n  color: #0065ca;\n}\n.jp-RenderedText pre .ansi-magenta-intense-fg {\n  color: #a03196;\n}\n.jp-RenderedText pre .ansi-cyan-intense-fg {\n  color: #258f8f;\n}\n.jp-RenderedText pre .ansi-white-intense-fg {\n  color: #a1a6b2;\n}\n\n.jp-RenderedText pre .ansi-black-intense-bg {\n  background-color: #282c36;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-intense-bg {\n  background-color: #b22b31;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-intense-bg {\n  background-color: #007427;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-intense-bg {\n  background-color: #b27d12;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-intense-bg {\n  background-color: #0065ca;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-intense-bg {\n  background-color: #a03196;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-intense-bg {\n  background-color: #258f8f;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-intense-bg {\n  background-color: #a1a6b2;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-default-inverse-fg {\n  color: var(--jp-ui-inverse-font-color0);\n}\n.jp-RenderedText pre .ansi-default-inverse-bg {\n  background-color: var(--jp-inverse-layout-color0);\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-bold {\n  font-weight: bold;\n}\n.jp-RenderedText pre .ansi-underline {\n  text-decoration: underline;\n}\n\n.jp-RenderedText[data-mime-type='application/vnd.jupyter.stderr'] {\n  background: var(--jp-rendermime-error-background);\n  padding-top: var(--jp-code-padding);\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedLatex\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedLatex {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n}\n\n/* Left-justify outputs.*/\n.jp-OutputArea-output.jp-RenderedLatex {\n  padding: var(--jp-code-padding);\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedHTML\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedHTMLCommon {\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-content-font-family);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n  /* Give a bit more R padding on Markdown text to keep line lengths reasonable */\n  padding-right: 20px;\n}\n\n.jp-RenderedHTMLCommon em {\n  font-style: italic;\n}\n\n.jp-RenderedHTMLCommon strong {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon u {\n  text-decoration: underline;\n}\n\n.jp-RenderedHTMLCommon a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* Headings */\n\n.jp-RenderedHTMLCommon h1,\n.jp-RenderedHTMLCommon h2,\n.jp-RenderedHTMLCommon h3,\n.jp-RenderedHTMLCommon h4,\n.jp-RenderedHTMLCommon h5,\n.jp-RenderedHTMLCommon h6 {\n  line-height: var(--jp-content-heading-line-height);\n  font-weight: var(--jp-content-heading-font-weight);\n  font-style: normal;\n  margin: var(--jp-content-heading-margin-top) 0\n    var(--jp-content-heading-margin-bottom) 0;\n}\n\n.jp-RenderedHTMLCommon h1:first-child,\n.jp-RenderedHTMLCommon h2:first-child,\n.jp-RenderedHTMLCommon h3:first-child,\n.jp-RenderedHTMLCommon h4:first-child,\n.jp-RenderedHTMLCommon h5:first-child,\n.jp-RenderedHTMLCommon h6:first-child {\n  margin-top: calc(0.5 * var(--jp-content-heading-margin-top));\n}\n\n.jp-RenderedHTMLCommon h1:last-child,\n.jp-RenderedHTMLCommon h2:last-child,\n.jp-RenderedHTMLCommon h3:last-child,\n.jp-RenderedHTMLCommon h4:last-child,\n.jp-RenderedHTMLCommon h5:last-child,\n.jp-RenderedHTMLCommon h6:last-child {\n  margin-bottom: calc(0.5 * var(--jp-content-heading-margin-bottom));\n}\n\n.jp-RenderedHTMLCommon h1 {\n  font-size: var(--jp-content-font-size5);\n}\n\n.jp-RenderedHTMLCommon h2 {\n  font-size: var(--jp-content-font-size4);\n}\n\n.jp-RenderedHTMLCommon h3 {\n  font-size: var(--jp-content-font-size3);\n}\n\n.jp-RenderedHTMLCommon h4 {\n  font-size: var(--jp-content-font-size2);\n}\n\n.jp-RenderedHTMLCommon h5 {\n  font-size: var(--jp-content-font-size1);\n}\n\n.jp-RenderedHTMLCommon h6 {\n  font-size: var(--jp-content-font-size0);\n}\n\n/* Lists */\n\n.jp-RenderedHTMLCommon ul:not(.list-inline),\n.jp-RenderedHTMLCommon ol:not(.list-inline) {\n  padding-left: 2em;\n}\n\n.jp-RenderedHTMLCommon ul {\n  list-style: disc;\n}\n\n.jp-RenderedHTMLCommon ul ul {\n  list-style: square;\n}\n\n.jp-RenderedHTMLCommon ul ul ul {\n  list-style: circle;\n}\n\n.jp-RenderedHTMLCommon ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol ol {\n  list-style: upper-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol {\n  list-style: lower-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol {\n  list-style: lower-roman;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol,\n.jp-RenderedHTMLCommon ul {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon ul ul,\n.jp-RenderedHTMLCommon ul ol,\n.jp-RenderedHTMLCommon ol ul,\n.jp-RenderedHTMLCommon ol ol {\n  margin-bottom: 0em;\n}\n\n.jp-RenderedHTMLCommon hr {\n  color: var(--jp-border-color2);\n  background-color: var(--jp-border-color1);\n  margin-top: 1em;\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon > pre {\n  margin: 1.5em 2em;\n}\n\n.jp-RenderedHTMLCommon pre,\n.jp-RenderedHTMLCommon code {\n  border: 0;\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  line-height: var(--jp-code-line-height);\n  padding: 0;\n  white-space: pre-wrap;\n}\n\n.jp-RenderedHTMLCommon :not(pre) > code {\n  background-color: var(--jp-layout-color2);\n  padding: 1px 5px;\n}\n\n/* Tables */\n\n.jp-RenderedHTMLCommon table {\n  border-collapse: collapse;\n  border-spacing: 0;\n  border: none;\n  color: var(--jp-ui-font-color1);\n  font-size: 12px;\n  table-layout: fixed;\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.jp-RenderedHTMLCommon thead {\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  vertical-align: bottom;\n}\n\n.jp-RenderedHTMLCommon td,\n.jp-RenderedHTMLCommon th,\n.jp-RenderedHTMLCommon tr {\n  vertical-align: middle;\n  padding: 0.5em 0.5em;\n  line-height: normal;\n  white-space: normal;\n  max-width: none;\n  border: none;\n}\n\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon td,\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon th {\n  max-width: none;\n}\n\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon td,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon th,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon tr {\n  text-align: right;\n}\n\n.jp-RenderedHTMLCommon th {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(odd) {\n  background: var(--jp-layout-color0);\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(even) {\n  background: var(--jp-rendermime-table-row-background);\n}\n\n.jp-RenderedHTMLCommon tbody tr:hover {\n  background: var(--jp-rendermime-table-row-hover-background);\n}\n\n.jp-RenderedHTMLCommon table {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon p {\n  text-align: left;\n  margin: 0px;\n}\n\n.jp-RenderedHTMLCommon p {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon img {\n  -moz-force-broken-image-icon: 1;\n}\n\n/* Restrict to direct children as other images could be nested in other content. */\n.jp-RenderedHTMLCommon > img {\n  display: block;\n  margin-left: 0;\n  margin-right: 0;\n  margin-bottom: 1em;\n}\n\n/* Change color behind transparent images if they need it... */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-light-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-dark-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n/* ...or leave it untouched if they don't */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-dark-background {\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-light-background {\n}\n\n.jp-RenderedHTMLCommon img,\n.jp-RenderedImage img,\n.jp-RenderedHTMLCommon svg,\n.jp-RenderedSVG svg {\n  max-width: 100%;\n  height: auto;\n}\n\n.jp-RenderedHTMLCommon img.jp-mod-unconfined,\n.jp-RenderedImage img.jp-mod-unconfined,\n.jp-RenderedHTMLCommon svg.jp-mod-unconfined,\n.jp-RenderedSVG svg.jp-mod-unconfined {\n  max-width: none;\n}\n\n.jp-RenderedHTMLCommon .alert {\n  padding: var(--jp-notebook-padding);\n  border: var(--jp-border-width) solid transparent;\n  border-radius: var(--jp-border-radius);\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon .alert-info {\n  color: var(--jp-info-color0);\n  background-color: var(--jp-info-color3);\n  border-color: var(--jp-info-color2);\n}\n.jp-RenderedHTMLCommon .alert-info hr {\n  border-color: var(--jp-info-color3);\n}\n.jp-RenderedHTMLCommon .alert-info > p:last-child,\n.jp-RenderedHTMLCommon .alert-info > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-warning {\n  color: var(--jp-warn-color0);\n  background-color: var(--jp-warn-color3);\n  border-color: var(--jp-warn-color2);\n}\n.jp-RenderedHTMLCommon .alert-warning hr {\n  border-color: var(--jp-warn-color3);\n}\n.jp-RenderedHTMLCommon .alert-warning > p:last-child,\n.jp-RenderedHTMLCommon .alert-warning > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-success {\n  color: var(--jp-success-color0);\n  background-color: var(--jp-success-color3);\n  border-color: var(--jp-success-color2);\n}\n.jp-RenderedHTMLCommon .alert-success hr {\n  border-color: var(--jp-success-color3);\n}\n.jp-RenderedHTMLCommon .alert-success > p:last-child,\n.jp-RenderedHTMLCommon .alert-success > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-danger {\n  color: var(--jp-error-color0);\n  background-color: var(--jp-error-color3);\n  border-color: var(--jp-error-color2);\n}\n.jp-RenderedHTMLCommon .alert-danger hr {\n  border-color: var(--jp-error-color3);\n}\n.jp-RenderedHTMLCommon .alert-danger > p:last-child,\n.jp-RenderedHTMLCommon .alert-danger > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon blockquote {\n  margin: 1em 2em;\n  padding: 0 1em;\n  border-left: 5px solid var(--jp-border-color2);\n}\n\na.jp-InternalAnchorLink {\n  visibility: hidden;\n  margin-left: 8px;\n  color: var(--md-blue-800);\n}\n\nh1:hover .jp-InternalAnchorLink,\nh2:hover .jp-InternalAnchorLink,\nh3:hover .jp-InternalAnchorLink,\nh4:hover .jp-InternalAnchorLink,\nh5:hover .jp-InternalAnchorLink,\nh6:hover .jp-InternalAnchorLink {\n  visibility: visible;\n}\n\n.jp-RenderedHTMLCommon kbd {\n  background-color: var(--jp-rendermime-table-row-background);\n  border: 1px solid var(--jp-border-color0);\n  border-bottom-color: var(--jp-border-color2);\n  border-radius: 3px;\n  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n  display: inline-block;\n  font-size: 0.8em;\n  line-height: 1em;\n  padding: 0.2em 0.5em;\n}\n\n/* Most direct children of .jp-RenderedHTMLCommon have a margin-bottom of 1.0.\n * At the bottom of cells this is a bit too much as there is also spacing\n * between cells. Going all the way to 0 gets too tight between markdown and\n * code cells.\n */\n.jp-RenderedHTMLCommon > *:last-child {\n  margin-bottom: 0.5em;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MimeDocument {\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-filebrowser-button-height: 28px;\n  --jp-private-filebrowser-button-width: 48px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser {\n  display: flex;\n  flex-direction: column;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  border-bottom: none;\n  height: auto;\n  margin: var(--jp-toolbar-header-margin);\n  box-shadow: none;\n}\n\n.jp-BreadCrumbs {\n  flex: 0 0 auto;\n  margin: 8px 12px 8px 12px;\n}\n\n.jp-BreadCrumbs-item {\n  margin: 0px 2px;\n  padding: 0px 2px;\n  border-radius: var(--jp-border-radius);\n  cursor: pointer;\n}\n\n.jp-BreadCrumbs-item:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-BreadCrumbs-item:first-child {\n  margin-left: 0px;\n}\n\n.jp-BreadCrumbs-item.jp-mod-dropTarget {\n  background-color: var(--jp-brand-color2);\n  opacity: 0.7;\n}\n\n/*-----------------------------------------------------------------------------\n| Buttons\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  padding: 0px;\n  margin: 8px 12px 0px 12px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  justify-content: flex-start;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-Toolbar-item {\n  flex: 0 0 auto;\n  padding-left: 0px;\n  padding-right: 2px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-ToolbarButtonComponent {\n  width: 40px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent {\n  width: 72px;\n  background: var(--jp-brand-color1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent:focus-visible {\n  background-color: var(--jp-brand-color0);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent\n  .jp-icon3 {\n  fill: white;\n}\n\n/*-----------------------------------------------------------------------------\n| Other styles\n|----------------------------------------------------------------------------*/\n\n.jp-FileDialog.jp-mod-conflict input {\n  color: var(--jp-error-color1);\n}\n\n.jp-FileDialog .jp-new-name-title {\n  margin-top: 12px;\n}\n\n.jp-LastModified-hidden {\n  display: none;\n}\n\n.jp-FileBrowser-filterBox {\n  padding: 0px;\n  flex: 0 0 auto;\n  margin: 8px 12px 0px 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| DirListing\n|----------------------------------------------------------------------------*/\n\n.jp-DirListing {\n  flex: 1 1 auto;\n  display: flex;\n  flex-direction: column;\n  outline: 0;\n}\n\n.jp-DirListing:focus-visible {\n  border: 1px solid var(--jp-brand-color1);\n}\n\n.jp-DirListing-header {\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n  border-top: var(--jp-border-width) solid var(--jp-border-color2);\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  z-index: 2;\n}\n\n.jp-DirListing-headerItem {\n  padding: 4px 12px 2px 12px;\n  font-weight: 500;\n}\n\n.jp-DirListing-headerItem:hover {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-headerItem.jp-id-name {\n  flex: 1 0 84px;\n}\n\n.jp-DirListing-headerItem.jp-id-modified {\n  flex: 0 0 112px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n}\n\n.jp-id-narrow {\n  display: none;\n  flex: 0 0 5px;\n  padding: 4px 4px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n  color: var(--jp-border-color2);\n}\n\n.jp-DirListing-narrow .jp-id-narrow {\n  display: block;\n}\n\n.jp-DirListing-narrow .jp-id-modified,\n.jp-DirListing-narrow .jp-DirListing-itemModified {\n  display: none;\n}\n\n.jp-DirListing-headerItem.jp-mod-selected {\n  font-weight: 600;\n}\n\n/* increase specificity to override bundled default */\n.jp-DirListing-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-DirListing-content mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.jp-DirListing-content .jp-DirListing-item.jp-mod-selected mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n/* Style the directory listing content when a user drops a file to upload */\n.jp-DirListing.jp-mod-native-drop .jp-DirListing-content {\n  outline: 5px dashed rgba(128, 128, 128, 0.5);\n  outline-offset: -10px;\n  cursor: copy;\n}\n\n.jp-DirListing-item {\n  display: flex;\n  flex-direction: row;\n  padding: 4px 12px;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n.jp-DirListing-item[data-is-dot] {\n  opacity: 75%;\n}\n\n.jp-DirListing-item.jp-mod-selected {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.jp-DirListing-item.jp-mod-dropTarget {\n  background: var(--jp-brand-color3);\n}\n\n.jp-DirListing-item:hover:not(.jp-mod-selected) {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-itemIcon {\n  flex: 0 0 20px;\n  margin-right: 4px;\n}\n\n.jp-DirListing-itemText {\n  flex: 1 0 64px;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  user-select: none;\n}\n\n.jp-DirListing-itemModified {\n  flex: 0 0 125px;\n  text-align: right;\n}\n\n.jp-DirListing-editor {\n  flex: 1 0 64px;\n  outline: none;\n  border: none;\n}\n\n.jp-DirListing-item.jp-mod-running .jp-DirListing-itemIcon:before {\n  color: var(--jp-success-color1);\n  content: '\\25CF';\n  font-size: 8px;\n  position: absolute;\n  left: -8px;\n}\n\n.jp-DirListing-item.jp-mod-running.jp-mod-selected\n  .jp-DirListing-itemIcon:before {\n  color: var(--jp-ui-inverse-font-color1);\n}\n\n.jp-DirListing-item.lm-mod-drag-image,\n.jp-DirListing-item.jp-mod-selected.lm-mod-drag-image {\n  font-size: var(--jp-ui-font-size1);\n  padding-left: 4px;\n  margin-left: 4px;\n  width: 160px;\n  background-color: var(--jp-ui-inverse-font-color2);\n  box-shadow: var(--jp-elevation-z2);\n  border-radius: 0px;\n  color: var(--jp-ui-font-color1);\n  transform: translateX(-40%) translateY(-58%);\n}\n\n.jp-DirListing-deadSpace {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-Document {\n  min-width: 120px;\n  min-height: 120px;\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n}\n\n/*-----------------------------------------------------------------------------\n| Main OutputArea\n| OutputArea has a list of Outputs\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea {\n  overflow-y: auto;\n}\n\n.jp-OutputArea-child {\n  display: flex;\n  flex-direction: row;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child {\n  flex-direction: column;\n}\n\n.jp-OutputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-outprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n.jp-OutputArea-output {\n  height: auto;\n  overflow: auto;\n  user-select: text;\n  -moz-user-select: text;\n  -webkit-user-select: text;\n  -ms-user-select: text;\n}\n\n.jp-OutputArea-child .jp-OutputArea-output {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  margin-left: var(--jp-notebook-padding);\n}\n\n/**\n * Isolated output.\n */\n.jp-OutputArea-output.jp-mod-isolated {\n  width: 100%;\n  display: block;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n/* pre */\n\n.jp-OutputArea-output pre {\n  border: none;\n  margin: 0px;\n  padding: 0px;\n  overflow-x: auto;\n  overflow-y: auto;\n  word-break: break-all;\n  word-wrap: break-word;\n  white-space: pre-wrap;\n}\n\n/* tables */\n\n.jp-OutputArea-output.jp-RenderedHTMLCommon table {\n  margin-left: 0;\n  margin-right: 0;\n}\n\n/* description lists */\n\n.jp-OutputArea-output dl,\n.jp-OutputArea-output dt,\n.jp-OutputArea-output dd {\n  display: block;\n}\n\n.jp-OutputArea-output dl {\n  width: 100%;\n  overflow: hidden;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dt {\n  font-weight: bold;\n  float: left;\n  width: 20%;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dd {\n  float: left;\n  width: 80%;\n  padding: 0;\n  margin: 0;\n}\n\n/* Hide the gutter in case of\n *  - nested output areas (e.g. in the case of output widgets)\n *  - mirrored output areas\n */\n.jp-OutputArea .jp-OutputArea .jp-OutputArea-prompt {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| executeResult is added to any Output-result for the display of the object\n| returned by a cell\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  margin-left: 0px;\n  flex: 1 1 auto;\n}\n\n/* Text output with the Out[] prompt needs a top padding to match the\n * alignment of the Out[] prompt itself.\n */\n.jp-OutputArea-executeResult .jp-RenderedText.jp-OutputArea-output {\n  padding-top: var(--jp-code-padding);\n  border-top: var(--jp-border-width) solid transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| The Stdin output\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-stdin {\n  line-height: var(--jp-code-line-height);\n  padding-top: var(--jp-code-padding);\n  display: flex;\n}\n\n.jp-Stdin-prompt {\n  color: var(--jp-content-font-color0);\n  padding-right: var(--jp-code-padding);\n  vertical-align: baseline;\n  flex: 0 0 auto;\n}\n\n.jp-Stdin-input {\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  color: inherit;\n  background-color: inherit;\n  width: 42%;\n  min-width: 200px;\n  /* make sure input baseline aligns with prompt */\n  vertical-align: baseline;\n  /* padding + margin = 0.5em between prompt and cursor */\n  padding: 0em 0.25em;\n  margin: 0em 0.25em;\n  flex: 0 0 70%;\n}\n\n.jp-Stdin-input:focus {\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Output Area View\n|----------------------------------------------------------------------------*/\n\n.jp-LinkedOutputView .jp-OutputArea {\n  height: 100%;\n  display: block;\n}\n\n.jp-LinkedOutputView .jp-OutputArea-output:only-child {\n  height: 100%;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapser {\n  flex: 0 0 var(--jp-cell-collapser-width);\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n  border-radius: var(--jp-border-radius);\n  opacity: 1;\n}\n\n.jp-Collapser-child {\n  display: block;\n  width: 100%;\n  box-sizing: border-box;\n  /* height: 100% doesn't work because the height of its parent is computed from content */\n  position: absolute;\n  top: 0px;\n  bottom: 0px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Header/Footer\n|----------------------------------------------------------------------------*/\n\n/* Hidden by zero height by default */\n.jp-CellHeader,\n.jp-CellFooter {\n  height: 0px;\n  width: 100%;\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Input\n|----------------------------------------------------------------------------*/\n\n/* All input areas */\n.jp-InputArea {\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n}\n\nbody[data-format='mobile'] .jp-InputArea {\n  flex-direction: column;\n}\n\n.jp-InputArea-editor {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  /* This is the non-active, default styling */\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  border-radius: 0px;\n  background: var(--jp-cell-editor-background);\n}\n\nbody[data-format='mobile'] .jp-InputArea-editor {\n  margin-left: var(--jp-notebook-padding);\n}\n\n.jp-InputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-inprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  opacity: var(--jp-cell-prompt-opacity);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-InputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Placeholder {\n  display: flex;\n  flex-direction: row;\n  flex: 1 1 auto;\n}\n\n.jp-Placeholder-prompt {\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content {\n  flex: 1 1 auto;\n  border: none;\n  background: transparent;\n  height: 20px;\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon {\n  width: 32px;\n  height: 16px;\n  border: 1px solid transparent;\n  border-radius: var(--jp-border-radius);\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon:hover {\n  border: 1px solid var(--jp-border-color1);\n  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);\n  background-color: var(--jp-layout-color0);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-cell-scrolling-output-offset: 5px;\n}\n\n/*-----------------------------------------------------------------------------\n| Cell\n|----------------------------------------------------------------------------*/\n\n.jp-Cell {\n  padding: var(--jp-cell-padding);\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Common input/output\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-inputWrapper,\n.jp-Cell-outputWrapper {\n  display: flex;\n  flex-direction: row;\n  padding: 0px;\n  margin: 0px;\n  /* Added to reveal the box-shadow on the input and output collapsers. */\n  overflow: visible;\n}\n\n/* Only input/output areas inside cells */\n.jp-Cell-inputArea,\n.jp-Cell-outputArea {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Collapser\n|----------------------------------------------------------------------------*/\n\n/* Make the output collapser disappear when there is not output, but do so\n * in a manner that leaves it in the layout and preserves its width.\n */\n.jp-Cell.jp-mod-noOutputs .jp-Cell-outputCollapser {\n  border: none !important;\n  background: transparent !important;\n}\n\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputCollapser {\n  min-height: var(--jp-cell-collapser-min-height);\n}\n\n/*-----------------------------------------------------------------------------\n| Output\n|----------------------------------------------------------------------------*/\n\n/* Put a space between input and output when there IS output */\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputWrapper {\n  margin-top: 5px;\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-Cell-outputArea {\n  overflow-y: auto;\n  max-height: 200px;\n  box-shadow: inset 0 0 6px 2px rgba(0, 0, 0, 0.3);\n  margin-left: var(--jp-private-cell-scrolling-output-offset);\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  flex: 0 0\n    calc(\n      var(--jp-cell-prompt-width) -\n        var(--jp-private-cell-scrolling-output-offset)\n    );\n}\n\n/*-----------------------------------------------------------------------------\n| CodeCell\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| MarkdownCell\n|----------------------------------------------------------------------------*/\n\n.jp-MarkdownOutput {\n  flex: 1 1 auto;\n  margin-top: 0;\n  margin-bottom: 0;\n  padding-left: var(--jp-code-padding);\n}\n\n.jp-MarkdownOutput.jp-RenderedHTMLCommon {\n  overflow: auto;\n}\n\n.jp-showHiddenCellsButton {\n  margin-left: calc(var(--jp-cell-prompt-width) + 2 * var(--jp-code-padding));\n  margin-top: var(--jp-code-padding);\n  border: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-border-color3) !important;\n  color: var(--jp-content-font-color0) !important;\n}\n\n.jp-showHiddenCellsButton:hover {\n  background-color: var(--jp-border-color2) !important;\n}\n\n.jp-collapseHeadingButton {\n  display: none;\n}\n\n.jp-MarkdownCell:hover .jp-collapseHeadingButton {\n  display: flex;\n  min-height: var(--jp-cell-collapser-min-height);\n  position: absolute;\n  right: 0;\n  top: 0;\n  bottom: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n\n/*-----------------------------------------------------------------------------\n| Styles\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel-toolbar {\n  padding: 2px;\n}\n\n.jp-Toolbar-item.jp-Notebook-toolbarCellType .jp-select-wrapper.jp-mod-focused {\n  border: none;\n  box-shadow: none;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown select {\n  height: 24px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: 14px;\n  border-radius: 0;\n  display: block;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown span {\n  top: 5px !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-notebook-dragImage-width: 304px;\n  --jp-private-notebook-dragImage-height: 36px;\n  --jp-private-notebook-selected-color: var(--md-blue-400);\n  --jp-private-notebook-active-color: var(--md-green-400);\n}\n\n/*-----------------------------------------------------------------------------\n| Imports\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Notebook\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel {\n  display: block;\n  height: 100%;\n}\n\n.jp-NotebookPanel.jp-Document {\n  min-width: 240px;\n  min-height: 120px;\n}\n\n.jp-Notebook {\n  padding: var(--jp-notebook-padding);\n  outline: none;\n  overflow: auto;\n  background: var(--jp-layout-color0);\n}\n\n.jp-Notebook.jp-mod-scrollPastEnd::after {\n  display: block;\n  content: '';\n  min-height: var(--jp-notebook-scroll-padding);\n}\n\n.jp-MainAreaWidget-ContainStrict .jp-Notebook * {\n  contain: strict;\n}\n\n.jp-Notebook-render * {\n  contain: none !important;\n}\n\n.jp-Notebook .jp-Cell {\n  overflow: visible;\n}\n\n.jp-Notebook .jp-Cell .jp-InputPrompt {\n  cursor: move;\n  float: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook state related styling\n|\n| The notebook and cells each have states, here are the possibilities:\n|\n| - Notebook\n|   - Command\n|   - Edit\n| - Cell\n|   - None\n|   - Active (only one can be active)\n|   - Selected (the cells actions are applied to)\n|   - Multiselected (when multiple selected, the cursor)\n|   - No outputs\n|----------------------------------------------------------------------------*/\n\n/* Command or edit modes */\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-InputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-OutputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n/* cell is active */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser {\n  background: var(--jp-brand-color1);\n}\n\n/* cell is dirty */\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt {\n  color: var(--jp-warn-color1);\n}\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt:before {\n  color: var(--jp-warn-color1);\n  content: '•';\n}\n\n.jp-Notebook .jp-Cell.jp-mod-active.jp-mod-dirty .jp-Collapser {\n  background: var(--jp-warn-color1);\n}\n\n/* collapser is hovered */\n.jp-Notebook .jp-Cell .jp-Collapser:hover {\n  box-shadow: var(--jp-elevation-z2);\n  background: var(--jp-brand-color1);\n  opacity: var(--jp-cell-collapser-not-active-hover-opacity);\n}\n\n/* cell is active and collapser is hovered */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser:hover {\n  background: var(--jp-brand-color0);\n  opacity: 1;\n}\n\n/* Command mode */\n\n.jp-Notebook.jp-mod-commandMode .jp-Cell.jp-mod-selected {\n  background: var(--jp-notebook-multiselected-color);\n}\n\n.jp-Notebook.jp-mod-commandMode\n  .jp-Cell.jp-mod-active.jp-mod-selected:not(.jp-mod-multiSelected) {\n  background: transparent;\n}\n\n/* Edit mode */\n\n.jp-Notebook.jp-mod-editMode .jp-Cell.jp-mod-active .jp-InputArea-editor {\n  border: var(--jp-border-width) solid var(--jp-cell-editor-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-cell-editor-active-background);\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook drag and drop\n|----------------------------------------------------------------------------*/\n\n.jp-Notebook-cell.jp-mod-dropSource {\n  opacity: 0.5;\n}\n\n.jp-Notebook-cell.jp-mod-dropTarget,\n.jp-Notebook.jp-mod-commandMode\n  .jp-Notebook-cell.jp-mod-active.jp-mod-selected.jp-mod-dropTarget {\n  border-top-color: var(--jp-private-notebook-selected-color);\n  border-top-style: solid;\n  border-top-width: 2px;\n}\n\n.jp-dragImage {\n  display: block;\n  flex-direction: row;\n  width: var(--jp-private-notebook-dragImage-width);\n  height: var(--jp-private-notebook-dragImage-height);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background);\n  overflow: visible;\n}\n\n.jp-dragImage-singlePrompt {\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n.jp-dragImage .jp-dragImage-content {\n  flex: 1 1 auto;\n  z-index: 2;\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  line-height: var(--jp-code-line-height);\n  padding: var(--jp-code-padding);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background-color);\n  color: var(--jp-content-font-color3);\n  text-align: left;\n  margin: 4px 4px 4px 0px;\n}\n\n.jp-dragImage .jp-dragImage-prompt {\n  flex: 0 0 auto;\n  min-width: 36px;\n  color: var(--jp-cell-inprompt-font-color);\n  padding: var(--jp-code-padding);\n  padding-left: 12px;\n  font-family: var(--jp-cell-prompt-font-family);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: 1.9;\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n}\n\n.jp-dragImage-multipleBack {\n  z-index: -1;\n  position: absolute;\n  height: 32px;\n  width: 300px;\n  top: 8px;\n  left: 8px;\n  background: var(--jp-layout-color2);\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n/*-----------------------------------------------------------------------------\n| Cell toolbar\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookTools {\n  display: block;\n  min-width: var(--jp-sidebar-min-width);\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n    * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  overflow: auto;\n}\n\n.jp-NotebookTools-tool {\n  padding: 0px 12px 0 12px;\n}\n\n.jp-ActiveCellTool {\n  padding: 12px;\n  background-color: var(--jp-layout-color1);\n  border-top: none !important;\n}\n\n.jp-ActiveCellTool .jp-InputArea-prompt {\n  flex: 0 0 auto;\n  padding-left: 0px;\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor {\n  flex: 1 1 auto;\n  background: var(--jp-cell-editor-background);\n  border-color: var(--jp-cell-editor-border-color);\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor .CodeMirror {\n  background: transparent;\n}\n\n.jp-MetadataEditorTool {\n  flex-direction: column;\n  padding: 12px 0px 12px 0px;\n}\n\n.jp-RankedPanel > :not(:first-child) {\n  margin-top: 12px;\n}\n\n.jp-KeySelector select.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n}\n\n.jp-KeySelector label,\n.jp-MetadataEditorTool label {\n  line-height: 1.4;\n}\n\n.jp-NotebookTools .jp-select-wrapper {\n  margin-top: 4px;\n  margin-bottom: 0px;\n}\n\n.jp-NotebookTools .jp-Collapse {\n  margin-top: 16px;\n}\n\n/*-----------------------------------------------------------------------------\n| Presentation Mode (.jp-mod-presentationMode)\n|----------------------------------------------------------------------------*/\n\n.jp-mod-presentationMode .jp-Notebook {\n  --jp-content-font-size1: var(--jp-content-presentation-font-size1);\n  --jp-code-font-size: var(--jp-code-presentation-font-size);\n}\n\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-InputPrompt,\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-OutputPrompt {\n  flex: 0 0 110px;\n}\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-Placeholder {\n  padding-left: 55px;\n}\n\n.jp-Cell-Placeholder-wrapper {\n  background: #fff;\n  border: 1px solid;\n  border-color: #e5e6e9 #dfe0e4 #d0d1d5;\n  border-radius: 4px;\n  -webkit-border-radius: 4px;\n  margin: 10px 15px;\n}\n\n.jp-Cell-Placeholder-wrapper-inner {\n  padding: 15px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body {\n  background-repeat: repeat;\n  background-size: 50% auto;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  background: #f6f7f8;\n  background-image: -webkit-linear-gradient(\n    left,\n    #f6f7f8 0%,\n    #edeef1 20%,\n    #f6f7f8 40%,\n    #f6f7f8 100%\n  );\n  background-repeat: no-repeat;\n  background-size: 800px 104px;\n  height: 104px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  position: absolute;\n  right: 15px;\n  left: 15px;\n  top: 15px;\n}\n\ndiv.jp-Cell-Placeholder-h1 {\n  top: 20px;\n  height: 20px;\n  left: 15px;\n  width: 150px;\n}\n\ndiv.jp-Cell-Placeholder-h2 {\n  left: 15px;\n  top: 50px;\n  height: 10px;\n  width: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-1,\ndiv.jp-Cell-Placeholder-content-2,\ndiv.jp-Cell-Placeholder-content-3 {\n  left: 15px;\n  right: 15px;\n  height: 10px;\n}\n\ndiv.jp-Cell-Placeholder-content-1 {\n  top: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-2 {\n  top: 120px;\n}\n\ndiv.jp-Cell-Placeholder-content-3 {\n  top: 140px;\n}\n\n</style>\n\n    <style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\nThe following CSS variables define the main, public API for styling JupyterLab.\nThese variables should be used by all plugins wherever possible. In other\nwords, plugins should not define custom colors, sizes, etc unless absolutely\nnecessary. This enables users to change the visual theme of JupyterLab\nby changing these variables.\n\nMany variables appear in an ordered sequence (0,1,2,3). These sequences\nare designed to work well together, so for example, `--jp-border-color1` should\nbe used with `--jp-layout-color1`. The numbers have the following meanings:\n\n* 0: super-primary, reserved for special emphasis\n* 1: primary, most important under normal situations\n* 2: secondary, next most important under normal situations\n* 3: tertiary, next most important under normal situations\n\nThroughout JupyterLab, we are mostly following principles from Google's\nMaterial Design when selecting colors. We are not, however, following\nall of MD as it is not optimized for dense, information rich UIs.\n*/\n\n:root {\n  /* Elevation\n   *\n   * We style box-shadows using Material Design's idea of elevation. These particular numbers are taken from here:\n   *\n   * https://github.com/material-components/material-components-web\n   * https://material-components-web.appspot.com/elevation.html\n   */\n\n  --jp-shadow-base-lightness: 0;\n  --jp-shadow-umbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.2\n  );\n  --jp-shadow-penumbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.14\n  );\n  --jp-shadow-ambient-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.12\n  );\n  --jp-elevation-z0: none;\n  --jp-elevation-z1: 0px 2px 1px -1px var(--jp-shadow-umbra-color),\n    0px 1px 1px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 3px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z2: 0px 3px 1px -2px var(--jp-shadow-umbra-color),\n    0px 2px 2px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 5px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z4: 0px 2px 4px -1px var(--jp-shadow-umbra-color),\n    0px 4px 5px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 10px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z6: 0px 3px 5px -1px var(--jp-shadow-umbra-color),\n    0px 6px 10px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 18px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z8: 0px 5px 5px -3px var(--jp-shadow-umbra-color),\n    0px 8px 10px 1px var(--jp-shadow-penumbra-color),\n    0px 3px 14px 2px var(--jp-shadow-ambient-color);\n  --jp-elevation-z12: 0px 7px 8px -4px var(--jp-shadow-umbra-color),\n    0px 12px 17px 2px var(--jp-shadow-penumbra-color),\n    0px 5px 22px 4px var(--jp-shadow-ambient-color);\n  --jp-elevation-z16: 0px 8px 10px -5px var(--jp-shadow-umbra-color),\n    0px 16px 24px 2px var(--jp-shadow-penumbra-color),\n    0px 6px 30px 5px var(--jp-shadow-ambient-color);\n  --jp-elevation-z20: 0px 10px 13px -6px var(--jp-shadow-umbra-color),\n    0px 20px 31px 3px var(--jp-shadow-penumbra-color),\n    0px 8px 38px 7px var(--jp-shadow-ambient-color);\n  --jp-elevation-z24: 0px 11px 15px -7px var(--jp-shadow-umbra-color),\n    0px 24px 38px 3px var(--jp-shadow-penumbra-color),\n    0px 9px 46px 8px var(--jp-shadow-ambient-color);\n\n  /* Borders\n   *\n   * The following variables, specify the visual styling of borders in JupyterLab.\n   */\n\n  --jp-border-width: 1px;\n  --jp-border-color0: var(--md-grey-400);\n  --jp-border-color1: var(--md-grey-400);\n  --jp-border-color2: var(--md-grey-300);\n  --jp-border-color3: var(--md-grey-200);\n  --jp-border-radius: 2px;\n\n  /* UI Fonts\n   *\n   * The UI font CSS variables are used for the typography all of the JupyterLab\n   * user interface elements that are not directly user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-ui-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-ui-font-scale-factor: 1.2;\n  --jp-ui-font-size0: 0.83333em;\n  --jp-ui-font-size1: 13px; /* Base font size */\n  --jp-ui-font-size2: 1.2em;\n  --jp-ui-font-size3: 1.44em;\n\n  --jp-ui-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica,\n    Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';\n\n  /*\n   * Use these font colors against the corresponding main layout colors.\n   * In a light theme, these go from dark to light.\n   */\n\n  /* Defaults use Material Design specification */\n  --jp-ui-font-color0: rgba(0, 0, 0, 1);\n  --jp-ui-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-ui-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-ui-font-color3: rgba(0, 0, 0, 0.38);\n\n  /*\n   * Use these against the brand/accent/warn/error colors.\n   * These will typically go from light to darker, in both a dark and light theme.\n   */\n\n  --jp-ui-inverse-font-color0: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color1: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color2: rgba(255, 255, 255, 0.7);\n  --jp-ui-inverse-font-color3: rgba(255, 255, 255, 0.5);\n\n  /* Content Fonts\n   *\n   * Content font variables are used for typography of user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-content-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-content-line-height: 1.6;\n  --jp-content-font-scale-factor: 1.2;\n  --jp-content-font-size0: 0.83333em;\n  --jp-content-font-size1: 14px; /* Base font size */\n  --jp-content-font-size2: 1.2em;\n  --jp-content-font-size3: 1.44em;\n  --jp-content-font-size4: 1.728em;\n  --jp-content-font-size5: 2.0736em;\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-content-presentation-font-size1: 17px;\n\n  --jp-content-heading-line-height: 1;\n  --jp-content-heading-margin-top: 1.2em;\n  --jp-content-heading-margin-bottom: 0.8em;\n  --jp-content-heading-font-weight: 500;\n\n  /* Defaults use Material Design specification */\n  --jp-content-font-color0: rgba(0, 0, 0, 1);\n  --jp-content-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-content-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-content-font-color3: rgba(0, 0, 0, 0.38);\n\n  --jp-content-link-color: var(--md-blue-700);\n\n  --jp-content-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',\n    Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',\n    'Segoe UI Symbol';\n\n  /*\n   * Code Fonts\n   *\n   * Code font variables are used for typography of code and other monospaces content.\n   */\n\n  --jp-code-font-size: 13px;\n  --jp-code-line-height: 1.3077; /* 17px for 13px base */\n  --jp-code-padding: 5px; /* 5px for 13px base, codemirror highlighting needs integer px value */\n  --jp-code-font-family-default: Menlo, Consolas, 'DejaVu Sans Mono', monospace;\n  --jp-code-font-family: var(--jp-code-font-family-default);\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-code-presentation-font-size: 16px;\n\n  /* may need to tweak cursor width if you change font size */\n  --jp-code-cursor-width0: 1.4px;\n  --jp-code-cursor-width1: 2px;\n  --jp-code-cursor-width2: 4px;\n\n  /* Layout\n   *\n   * The following are the main layout colors use in JupyterLab. In a light\n   * theme these would go from light to dark.\n   */\n\n  --jp-layout-color0: white;\n  --jp-layout-color1: white;\n  --jp-layout-color2: var(--md-grey-200);\n  --jp-layout-color3: var(--md-grey-400);\n  --jp-layout-color4: var(--md-grey-600);\n\n  /* Inverse Layout\n   *\n   * The following are the inverse layout colors use in JupyterLab. In a light\n   * theme these would go from dark to light.\n   */\n\n  --jp-inverse-layout-color0: #111111;\n  --jp-inverse-layout-color1: var(--md-grey-900);\n  --jp-inverse-layout-color2: var(--md-grey-800);\n  --jp-inverse-layout-color3: var(--md-grey-700);\n  --jp-inverse-layout-color4: var(--md-grey-600);\n\n  /* Brand/accent */\n\n  --jp-brand-color0: var(--md-blue-900);\n  --jp-brand-color1: var(--md-blue-700);\n  --jp-brand-color2: var(--md-blue-300);\n  --jp-brand-color3: var(--md-blue-100);\n  --jp-brand-color4: var(--md-blue-50);\n\n  --jp-accent-color0: var(--md-green-900);\n  --jp-accent-color1: var(--md-green-700);\n  --jp-accent-color2: var(--md-green-300);\n  --jp-accent-color3: var(--md-green-100);\n\n  /* State colors (warn, error, success, info) */\n\n  --jp-warn-color0: var(--md-orange-900);\n  --jp-warn-color1: var(--md-orange-700);\n  --jp-warn-color2: var(--md-orange-300);\n  --jp-warn-color3: var(--md-orange-100);\n\n  --jp-error-color0: var(--md-red-900);\n  --jp-error-color1: var(--md-red-700);\n  --jp-error-color2: var(--md-red-300);\n  --jp-error-color3: var(--md-red-100);\n\n  --jp-success-color0: var(--md-green-900);\n  --jp-success-color1: var(--md-green-700);\n  --jp-success-color2: var(--md-green-300);\n  --jp-success-color3: var(--md-green-100);\n\n  --jp-info-color0: var(--md-cyan-900);\n  --jp-info-color1: var(--md-cyan-700);\n  --jp-info-color2: var(--md-cyan-300);\n  --jp-info-color3: var(--md-cyan-100);\n\n  /* Cell specific styles */\n\n  --jp-cell-padding: 5px;\n\n  --jp-cell-collapser-width: 8px;\n  --jp-cell-collapser-min-height: 20px;\n  --jp-cell-collapser-not-active-hover-opacity: 0.6;\n\n  --jp-cell-editor-background: var(--md-grey-100);\n  --jp-cell-editor-border-color: var(--md-grey-300);\n  --jp-cell-editor-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-cell-editor-active-background: var(--jp-layout-color0);\n  --jp-cell-editor-active-border-color: var(--jp-brand-color1);\n\n  --jp-cell-prompt-width: 64px;\n  --jp-cell-prompt-font-family: var(--jp-code-font-family-default);\n  --jp-cell-prompt-letter-spacing: 0px;\n  --jp-cell-prompt-opacity: 1;\n  --jp-cell-prompt-not-active-opacity: 0.5;\n  --jp-cell-prompt-not-active-font-color: var(--md-grey-700);\n  /* A custom blend of MD grey and blue 600\n   * See https://meyerweb.com/eric/tools/color-blend/#546E7A:1E88E5:5:hex */\n  --jp-cell-inprompt-font-color: #307fc1;\n  /* A custom blend of MD grey and orange 600\n   * https://meyerweb.com/eric/tools/color-blend/#546E7A:F4511E:5:hex */\n  --jp-cell-outprompt-font-color: #bf5b3d;\n\n  /* Notebook specific styles */\n\n  --jp-notebook-padding: 10px;\n  --jp-notebook-select-background: var(--jp-layout-color1);\n  --jp-notebook-multiselected-color: var(--md-blue-50);\n\n  /* The scroll padding is calculated to fill enough space at the bottom of the\n  notebook to show one single-line cell (with appropriate padding) at the top\n  when the notebook is scrolled all the way to the bottom. We also subtract one\n  pixel so that no scrollbar appears if we have just one single-line cell in the\n  notebook. This padding is to enable a 'scroll past end' feature in a notebook.\n  */\n  --jp-notebook-scroll-padding: calc(\n    100% - var(--jp-code-font-size) * var(--jp-code-line-height) -\n      var(--jp-code-padding) - var(--jp-cell-padding) - 1px\n  );\n\n  /* Rendermime styles */\n\n  --jp-rendermime-error-background: #fdd;\n  --jp-rendermime-table-row-background: var(--md-grey-100);\n  --jp-rendermime-table-row-hover-background: var(--md-light-blue-50);\n\n  /* Dialog specific styles */\n\n  --jp-dialog-background: rgba(0, 0, 0, 0.25);\n\n  /* Console specific styles */\n\n  --jp-console-padding: 10px;\n\n  /* Toolbar specific styles */\n\n  --jp-toolbar-border-color: var(--jp-border-color1);\n  --jp-toolbar-micro-height: 8px;\n  --jp-toolbar-background: var(--jp-layout-color1);\n  --jp-toolbar-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.24);\n  --jp-toolbar-header-margin: 4px 4px 0px 4px;\n  --jp-toolbar-active-background: var(--md-grey-300);\n\n  /* Statusbar specific styles */\n\n  --jp-statusbar-height: 24px;\n\n  /* Input field styles */\n\n  --jp-input-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-input-active-background: var(--jp-layout-color1);\n  --jp-input-hover-background: var(--jp-layout-color1);\n  --jp-input-background: var(--md-grey-100);\n  --jp-input-border-color: var(--jp-border-color1);\n  --jp-input-active-border-color: var(--jp-brand-color1);\n  --jp-input-active-box-shadow-color: rgba(19, 124, 189, 0.3);\n\n  /* General editor styles */\n\n  --jp-editor-selected-background: #d9d9d9;\n  --jp-editor-selected-focused-background: #d7d4f0;\n  --jp-editor-cursor-color: var(--jp-ui-font-color0);\n\n  /* Code mirror specific styles */\n\n  --jp-mirror-editor-keyword-color: #008000;\n  --jp-mirror-editor-atom-color: #88f;\n  --jp-mirror-editor-number-color: #080;\n  --jp-mirror-editor-def-color: #00f;\n  --jp-mirror-editor-variable-color: var(--md-grey-900);\n  --jp-mirror-editor-variable-2-color: #05a;\n  --jp-mirror-editor-variable-3-color: #085;\n  --jp-mirror-editor-punctuation-color: #05a;\n  --jp-mirror-editor-property-color: #05a;\n  --jp-mirror-editor-operator-color: #aa22ff;\n  --jp-mirror-editor-comment-color: #408080;\n  --jp-mirror-editor-string-color: #ba2121;\n  --jp-mirror-editor-string-2-color: #708;\n  --jp-mirror-editor-meta-color: #aa22ff;\n  --jp-mirror-editor-qualifier-color: #555;\n  --jp-mirror-editor-builtin-color: #008000;\n  --jp-mirror-editor-bracket-color: #997;\n  --jp-mirror-editor-tag-color: #170;\n  --jp-mirror-editor-attribute-color: #00c;\n  --jp-mirror-editor-header-color: blue;\n  --jp-mirror-editor-quote-color: #090;\n  --jp-mirror-editor-link-color: #00c;\n  --jp-mirror-editor-error-color: #f00;\n  --jp-mirror-editor-hr-color: #999;\n\n  /* Vega extension styles */\n\n  --jp-vega-background: white;\n\n  /* Sidebar-related styles */\n\n  --jp-sidebar-min-width: 250px;\n\n  /* Search-related styles */\n\n  --jp-search-toggle-off-opacity: 0.5;\n  --jp-search-toggle-hover-opacity: 0.8;\n  --jp-search-toggle-on-opacity: 1;\n  --jp-search-selected-match-background-color: rgb(245, 200, 0);\n  --jp-search-selected-match-color: black;\n  --jp-search-unselected-match-background-color: var(\n    --jp-inverse-layout-color0\n  );\n  --jp-search-unselected-match-color: var(--jp-ui-inverse-font-color0);\n\n  /* Icon colors that work well with light or dark backgrounds */\n  --jp-icon-contrast-color0: var(--md-purple-600);\n  --jp-icon-contrast-color1: var(--md-green-600);\n  --jp-icon-contrast-color2: var(--md-pink-600);\n  --jp-icon-contrast-color3: var(--md-blue-600);\n}\n</style>\n\n<style type=\"text/css\">\n/* Force rendering true colors when outputing to pdf */\n* {\n  -webkit-print-color-adjust: exact;\n}\n\n/* Misc */\na.anchor-link {\n  display: none;\n}\n\n/* Input area styling */\n.jp-InputArea {\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  overflow: hidden;\n}\n\n.CodeMirror.cm-s-jupyter .highlight pre {\n/* weird, but --jp-code-padding defined to be 5px but 4px horizontal padding is hardcoded for pre.CodeMirror-line */\n  padding: var(--jp-code-padding) 4px;\n  margin: 0;\n\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit;\n  color: inherit;\n\n}\n\n.jp-OutputArea-output pre {\n  line-height: inherit;\n  font-family: inherit;\n}\n\n.jp-RenderedText pre {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-code-font-size);\n}\n\n/* Using table instead of flexbox so that we can use break-inside property */\n/* CSS rules under this comment should not be required anymore after we move to the JupyterLab 4.0 CSS */\n\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  min-width: calc(\n    var(--jp-cell-prompt-width) - var(--jp-private-cell-scrolling-output-offset)\n  );\n}\n\n.jp-OutputArea-child {\n  display: table;\n  width: 100%;\n}\n\n.jp-OutputPrompt {\n  display: table-cell;\n  vertical-align: top;\n  min-width: var(--jp-cell-prompt-width);\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  display: table-row;\n}\n\n.jp-OutputArea-output {\n  display: table-cell;\n  width: 100%;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  display: table-row;\n}\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  width: 100%;\n}\n\n/* Hiding the collapser by default */\n.jp-Collapser {\n  display: none;\n}\n\n@page {\n    margin: 0.5in; /* Margin for each printed piece of paper */\n}\n\n@media print {\n  .jp-Cell-inputWrapper,\n  .jp-Cell-outputWrapper {\n    display: block;\n  }\n\n  .jp-OutputArea-child {\n    break-inside: avoid-page;\n  }\n}\n</style>\n\n<!-- Load mathjax -->\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/latest.js?config=TeX-AMS_CHTML-full,Safe\"> </script>\n    <!-- MathJax configuration -->\n    <script type=\"text/x-mathjax-config\">\n    init_mathjax = function() {\n        if (window.MathJax) {\n        // MathJax loaded\n            MathJax.Hub.Config({\n                TeX: {\n                    equationNumbers: {\n                    autoNumber: \"AMS\",\n                    useLabelIds: true\n                    }\n                },\n                tex2jax: {\n                    inlineMath: [ ['$','$'], [\"\\\\(\",\"\\\\)\"] ],\n                    displayMath: [ ['$$','$$'], [\"\\\\[\",\"\\\\]\"] ],\n                    processEscapes: true,\n                    processEnvironments: true\n                },\n                displayAlign: 'center',\n                CommonHTML: {\n                    linebreaks: {\n                    automatic: true\n                    }\n                }\n            });\n\n            MathJax.Hub.Queue([\"Typeset\", MathJax.Hub]);\n        }\n    }\n    init_mathjax();\n    </script>\n    <!-- End of mathjax configuration --></head>\n<body class=\"jp-Notebook\" data-jp-theme-light=\"true\" data-jp-theme-name=\"JupyterLab Light\">\n<div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[1]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Prelude</span><span class=\"w\"> </span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Class</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Enumerator</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Weighted</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Sampler.Strict</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Numeric.Log</span>\n\n<span class=\"kt\">:</span><span class=\"n\">l</span><span class=\"w\"> </span><span class=\"o\">../</span><span class=\"n\">plotting</span><span class=\"o\">.</span><span class=\"n\">hs</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Distributions-over-anything\">Distributions over <strong>anything</strong><a class=\"anchor-link\" href=\"#Distributions-over-anything\">&#182;</a></h1><p>In Monad-Bayes, you can have distributions over absolutely any kind of value, of any type. Below, you can see a distribution over histograms, and a distribution over plots.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[2]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">unnormalizedDistribution</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Measure</span><span class=\"w\"> </span><span class=\"kt\">Double</span>\n<span class=\"nf\">unnormalizedDistribution</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span>\n<span class=\"w\">    </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">bernoulli</span><span class=\"w\"> </span><span class=\"mf\">0.5</span>\n<span class=\"w\">    </span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kr\">if</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"kr\">then</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">-</span><span class=\"mi\">2</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"kr\">else</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"mi\">1</span>\n<span class=\"w\">    </span><span class=\"n\">factor</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">normalPdf</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"mi\">4</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">)</span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"n\">y</span>\n<span class=\"w\">    </span>\n<span class=\"nf\">distributionOverWeightedSamples</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Distribution</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Log</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span>\n<span class=\"nf\">distributionOverWeightedSamples</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">runWeightedT</span><span class=\"w\"> </span><span class=\"n\">unnormalizedDistribution</span>\n<span class=\"w\">    </span>\n<span class=\"nf\">iidDistribution</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Distribution</span><span class=\"w\"> </span><span class=\"p\">[(</span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Log</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)]</span>\n<span class=\"nf\">iidDistribution</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">100000</span><span class=\"w\"> </span><span class=\"n\">distributionOverWeightedSamples</span>\n<span class=\"w\">    </span>\n<span class=\"nf\">histogramDistribution</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Distribution</span><span class=\"w\"> </span><span class=\"kt\">Histogram</span>\n<span class=\"nf\">histogramDistribution</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">histogram</span><span class=\"w\"> </span><span class=\"mi\">500</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">iidDistribution</span>\n<span class=\"w\">    </span>\n<span class=\"nf\">plotDistribution</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Distribution</span><span class=\"w\"> </span><span class=\"kt\">Plot</span>\n<span class=\"nf\">plotDistribution</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">plot</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">histogramToList</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">histogramDistribution</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p><code>unnormalizedDistribution</code> is an (unnormalized) distribution that we want to plot.</p>\n<p><code>distributionOverWeightedSamples</code> is a distribution over pairs of samples from <code>unnormalizedDistribution</code> and their density.</p>\n<p><code>iidDistribution</code> is a distribution over 100000 iid draws from <code>distributionOverWeightedSamples</code>.</p>\n<p><code>histogramDistribution</code> is a distribution over histograms, each corresponding to a possible list of iid samples.</p>\n<p><code>plotDistribution</code> is a distribution over plots (i.e. 2D visualizations that can be rendered in a notebook), each corresponding to a possible histogram.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[3]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">sampler</span><span class=\"w\"> </span><span class=\"n\">plotDistribution</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n<div class=\"jp-OutputArea-child\">\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAb0AAAG/CAYAAADM5glPAAAAAXNSR0IArs4c6QAAIABJREFUeF7tfQmYFNXV9umZgYFhlU1WlxkJRMcFRIgrEhASRFwiGCCfE5cvRqLxM5pgJGpcgsCn4hIgov5BJQYVoiB+LBEJOBMJMmEiKqKArCqbDCDMwCz9P7d6eq/l3uq6p6un33oeFelT99R9z7nnrXPuUoFgMBgkXEAACAABIAAEsgCBAEgvC6yMLgIBIAAEgICBAEgPjgAEgAAQAAJZgwBIL2tMjY4CASAABIAASA8+AASAABAAAlmDAEgva0yNjgIBIAAEgABIDz4ABIAAEAACWYOANtK76aabaPPmzZSXl2eA+eSTT9IZZ5xBEyZMoHXr1lFtbS1NnjyZBgwYkDVgo6NAAAgAASCQXgS0kd7FF19M8+fPp06dOkV6+M4779Ds2bNpzpw5tGvXLho5ciSVl5enFwFoBwJAAAgAgaxBQBvpnXnmmfT888/Tli1bjGyusLCQ7r//furVqxeNGzfOALhfv360bNkyateuXdYAjo4CASAABIBA+hDQRnpDhw41SK2oqIimTZtGzz77LP3lL3+h4cOH04gRI4weDxkyhGbOnEk9e/ak0tJSKisri0OiY8eOdOmll6YPHWgGAkAACACBjERAHDYm+Cfx0kZ6sYrmzZtHK1asoLZt21JxcTGNGTPG+Ll///60ePFiat++vSmoU6ZMMeYAOS+RmYqslOvi1if6xa2TWx/6qM97uW3JrQ++o8d3/GRHLaRXV1dH9957L02aNIlyc3ONTO/w4cN07rnn0oIFC2jWrFm0b98+I9OrqKiwRBmk1zgc0E8OrwdR/heJdATndOiE7+jxWG5cufXZ+aoW0hMKH330UXrrrbeoc+fOBuG9/vrr1Lp1ayopKaHKykqD9AQpDho0CKTHmFkicDWOIJIOO6ZDp5+CpR7PyY4XJj/ZURvpCQepqamh48ePU4sWLeL8paqqipo1a0aBQMDWj5Dp6Rlm3A7IrQ/BWY/fAFc9uGJ88OKqlfRS7QpIL1UEze/nHmTc+hCc9fgNcNWDK8YHL64gvQS8uR2QWx8CF+8A06Mt1Cp8Rw+63Lhy60uH7/ipjyA9kJ6eyBHTqp8cXldns6GP2R4s4TvuEfDT+ADpgfTce7LknX5yeMlHVhbLhj6C9JTdQuqGbPAdP/URpAfSkxqYqQj5yeFT6YfdvdnQR5CeHu/JBt/xUx9BeiA9PSMZ5U3g6gECfgqWHnTHtAn0UQ+yVriC9EB6ejwOpAdcPUAAhOABiCZNcOPKrc+uKgHSA+npGVUgPeDqAQJ+CpYedAeZni4QFYgdpAfS0+6GCFx6IAaujQNX2JHXjiA9kJ4ej0OmB1w9QACE4AGIClmQHm3+2lMK0gPp6fLzSLsIXHogbky4/uHl0iSQJoy9gLZv28r61RO7uSA9VvQXIWRDH0F6ID1dfg7S04xsYyK9q3/3OtXW1cch9sYjo0B6mnyI23e49dm9vID0QHqahlW0WT85vK7OZkMfdWZBID2+b3jqtKPV+PLT+ADpgfR08QAyPc3I+imQpNpVkB5IL1UfSrwf+/QkEeUOJNz6sv0tT9INlMWywY46fQekB9JTHnQON4D0JBHlDl7c+nQGLr+WNj76Yo/poxWf2knSK5zFssGOOn0HpAfScx5lahIgPUm8uIMXtz6dgcuvpDdv5QZ6ccmHcY937cDvUskPzpL0CmexbLCjTt8xI71HfzaIdn/9NXXt2jXOAN89uYOzQVKQ4LYltz6ddvRrDIh9LszpJViJ2wG59WWjw4P0UmAApvFhRnq3jOxLzy78d9wTXHRmDxJbGXRe3GOSW182xgCQns2I4XZAbn3Z6PAgPe8oQpe/JpFegIiCyc8N0vPGlrrsiEwvRftMmTKFJkyYkGIrardnszOoISUvzY1pIrGD9ORt5SSpy5YgPczpOfme6u+Y05NETNegzoQ3IEmIlMW4MQXpKZtI+gZdtgTpgfSknVBSEKSXIlCStyuL6Qoidg/CrZNbH0hP2Q2lb9BlS5AeSE/aCSUFQXopAiV5u7KYriCSjaS37+BRmvP3j4yuHz58mFq1amX8uXvHVli9qeyZ5jfo8leQHkjPIxeNNAPSk0RU16BGeVP/oBakd8Pkt+Kg7tCmgC4//zSQnqT/O4npGh8gPf3jI9a2uuyYCXEOWxYSrJTNzuAU8Nz+zoUpSM+theTv02VLkB5IT94L5SSR6cnhRLoGdSa8AUlCpCzGgenLy9bTzr2H6J8f7USmp2wh+Rt02RKkB9KT90I5SZCeHE4gPUmcVMR0BcrYZxCk99qKT5IeC+VNFUs5y+qyJUgPpOfsfWoSID1JvHQNamR6egc1SE/SwVMU0zU+QHp6x0ei2XXZMRPiHOb0MKeXYhh0vp1jgIH0nO3ghYQuW4L0QHpe+GdsG8j0JBHVNagz4Q1IEiJlMQ5M3ZBe+WdfUX19/FlXd133PTq1S1tf9jHdb+tCvy5bgvRAesqDzuEGkJ4koroGNUhP76B2S3pffFUZZ5qnfzkMpGczVnSND5Ce3vGR7hcmXX5jF9ZBeiC9CALcDsihD6Qn6eApiumyJUgPpJeiaybdnjbSe+mll2jevHm0cOFCWr9+PY0bN446dQp9vLNv3740depUy77iwGmv3SDUnq7Alc5sFqSnx1d0ZAgbt++n595eZzRd+W01BeuDtPfgUQrGVprxlQWtBm2MMUDWV7UuZNmxYwfdcssttGfPHlq7di0tX76c5s+fTzNmzJAyKEhPCiZlocbo8CA9ZTdwdYMXviNI7+6Z74T0C6YLCIZLuEB6ruwje5MXdpTVlY4XbTudWknvmmuuoUceeYSuv/56g/QE4a1cuZIGDhxIBQUFNHToUMrNzUWmV4jShsoAMpMF6aWKoNz9XgRLkF481l5gKme9qBS3Tm59aSG9mTNnGgjfcMMNdNFFFxmk9+abb9L06dNp7NixVFFRQZs3b6ZFixYZcqWlpVRWVpZku1GjRqnaE/JZiMDba3fRsnVfJvW8bYumdPEZneitNfEntQw5uwtt2HmQdu0/GnfPb645g7q1L8hCBPm6vHX3tzRt4YaQQsVMr09hO/rp4CK+h4WmjEUgGAxSUVGyr2jJ9ERZ84orrqBp06ZRTU0N3X777TR37lzq06dPHIDFxcW0YsUK6tixoymwKG/q8Tfuty4Ofcj09PhKYqte2BKZHjI9Dm9lXcgiSE+UMsVVW1tLTz/9ND3++OPGp14CgQANGzaMqqurqXfv3rRx40bKz88H6XF4QYMOLwKXyuNy6APpqVjEvawXtkyF9E7p3IYGnnNypAPXDvyu+85Y3OlFH1UeilufeDZundz67PqoJdOLNbggt3B5c/v27TR69Gjq0aMHiT+PHz+eSkpKLP0DmZ7K0JGX5XZADn0gPXn7pyLphS3dkJ7ZupaxQ4ppzOAzUumO6b1e9FHlobj1gfRE4ZP5OnToELVs2ZJycnJsNYP09BiGe5Bx6APp6fEVv5Q3QXre2pdjTMY+Mbe+tGZ6qZgKpJcKetb3cjugbn1Hqmvo1Xc/oTfe+zSp03ZfWRDHkOFEFjUf88KWyPTiMfcCUzUrorzJnunJGgikJ4uUmhz3INOtb8xDb9C3VcdNQQDpqfmGk7QXthSkd1fMPj0xz590JaR2yPScLKP2uxd2VNHIrQ+ZnoJ1uI3Dra8x1vNBegoOnqKoF/6KTA+ZXopuKHU76+pNqSeSEEKmJwGSCxEvApeKWt364klPFC6imUNeTg4VdjuBPtuxP+6Rxao/lDdVrBiS9cKWID2Qnrrnqd8B0pPEzItBLanKsyCios+rwKWiUzemdqQnnvM7Pdonkd7IC79D/9m0m7btPhjXFXxlwd6yXtgSpAfSU4kfbmVBepLIeTGoJVWB9FSAspF1Q3oiH8wJhA4Eib1AeiA9xACPBmZMM9yY2r3ca9+nlwp8KG+mgp71vdwOqFufLOkFKUiBmNKnGUIgPZCebn9NRJhbX2Os9ph5LTI9Sf7gdkBufY3R4UF6ks7tgZisv/77s68pdgvw26s3Gdo7ti2g9z/aRQe+rQo9jeTZm1i96YHx0ph5yfqNl70E6UmiyW0cbn0gPZPl8TG+gUzPm0xPkN4Df14ZbcziU0EgPW8WB0mGt4gYd9zh1ofypoJHcBuHWx9ID6SnMBySRGX9FaQnj7IspvItOkty6+TWB9Jz9gG8ASlgpCqq2+Hlypv7KLSZAaSnar9YeVlbgvTkUZbFVL5FZ0lundz6QHrOPgDSU8BIVVS3w8uR3n7CQhZVyyXLy9oSpCePtSym8i06S3Lr5NYH0nP2AZCeAkaqorodHqSnahH38rK2BOnJYyyLqXyLzpLcOrn1gfScfQCkp4CRqqhuhwfpqVrEvbysLUF68hjLYirforMkt05ufSA9Zx8A6SlgpCqq0+Hf+ufn9OKSD+lYTW3DY8UfQyb+sqBZEzpaXYPypqrhTORlbWlOesm2wepNrN70wC1Nm7DyVWxOT4BLdlB7ZShufXZvQF71KbEdnX184rV/0Yp1W2NUmgTWCB1ic3qqNpa1JUhPHmlZTOVbdJbk1smtD5mesw8g01PASFVUp8N7TXpP3jaUTunS1uhirjinTPLS2UerR/CzTpCepON4dIi3vLaQJLfvcOsD6Sl4BLdxuPU1NodXJ70ccQyIo0fcd/3F1P+7XR3lwgLZYEcV3wHpSbsOOwGp2FG+F/aSfhofKG8m2IrbONz6GpvDg/QKvYpLUu3I+itITwrOtGRdjS0GqFZCQHogPfnR6VJSNlC6aR6kB9Jz4zd29+j0VzO93PpAerGnwnrtPSm2h68spAigxe3cg0ynPpBe4yM94wzqhCo0Dpz2NhboHJN+J3Zkesj0vB1NJq3pHGAgPZCe1w6s01/9TgheYxlujxtTu2wWpAfS0+XnkXa9dPh3yr+gpWs2R9r+av+3dPDIsZg+OG1ZwEKWVAwua8tU5vSQ6aViIbl7Ze0o15qzFLc+kJ6zTbQEaBm1fnIGmed1I+NlH0seXUjfHGr4FpvxMImFryAFAoGkL6ILydDZmyA9NzZUfWMH6cmj7OX4kNXKrZNbH0hP1hOyfP+KAkxKol46vAzphYgw+QLpKZnNVFjWliA9eaxlMZVv0VmSWye3PpCesw8g01PASFXUS4fnIr12rZvT7HuuMLJGmcvLPsrosxvUsve7kZPtpxTpCWjrxaqVeIwTy5uiYG2Wn48dUkxjBp/hphu298j20SvF3PrS4Tt+6iPm9BI8l9s43Poy3eG5SE/gtHDSaJCey/HhJemJR8DqTa8oNtQOd9zh1odMT8FfuI3DrS/THR6kF3VmP/sOB+kN619Ew84LrV7t2b2dwii3F+XGlVtfpscAWUNb4YpMz+WbrCzwTnJweCeE4n/nJL1ze3Wh3//0EqkHzAY7qgRLDtILG2boeYV0+zXnSdlJRojbltz6VOwog5eMjJ/6CNID6cn4bEoyXjo8SC/bMr1QYdOsvAnScz8svRyTMk/BrQ/lTRmrNMhwG4dbX6a+5a3d+BVt3L6fFpR9RlXHjjdYS4TC5C0LXqzeFAqQ6SUPHFl/XfKvzTT9zbXRBgwzJeyhlFrI4kx6g889lW698lzKb5KrMNKtRWX76ImyNMyvZWoMUMUb5U1JxODwkkApiHmBqSC9B2evMtEK0lMwRcqisra88t7XqN4guZj3E+P/Y9ZhekR6QsPEn1xI3zuje8r9y3ZC8ARAk0Zk/cZL/WkjvZdeeonmzZtHCxcuJHHM54QJE2jdunVUW1tLkydPpgEDBlj2E2dveukC0ba4HdALfSA991mXl14ka0uQnjzqspjKt+gsya2TW5/dy4vWOb0dO3bQLbfcQnv27KG1a9fSO++8Q7Nnz6Y5c+bQrl27aOTIkVReXg7SK/Tn+YnOQ0dOwguHB+mB9Oy+gohMT24shqW8GJMqGrn1pY30rrnmGnrkkUfo+uuvN0jv/vvvp169etG4ceMMvPr160fLli2jdu3Mlxsj01NxK3lZbgf0Ql86SK9Zfh51bFNAD/z0EjrxhBa2AHvRR3kLhiT9plPMuYavX/9puVHZiVyROT2UNxPt7Dc7qvqhjLyf+qgt05s5c6aBxQ033EAXXXSRQXrjx4+n4cOH04gRI4zfhgwZQkKuZ8+eVFpaSmVlZUn4jRo1SgZTyDRyBD7ZcZCeXfKZSS/1zemFld3/47Oofav8Ro5w6t373zc+pp37jpo3pJn0br7sNDrzlBNS7wRaaDQIiJeuoqKipP5oIT1R1rziiito2rRpVFNTQ7fffjvNnTvXmNsrLi6mMWPGGA/Sv39/Wrx4MbVv394UaGR6evyP+63LC33pyPTC6J/Qqjnl5oSOyjr9lA706x+fn2QYL/qoam2/6fyfPy6jzbsOJHUjeqwYFrKY2dhvdlT1Qxl5P/VRG+nNnz/fwEIsWHn66afp8ccfp4KCAlqwYAHNmjWL9u3bZ2R6FRUVlpiB9GTcSV2G2wG90JdO0otF+JKzTwLpWcxBg/TUx6K4w4vxoaqZWye3PjtctZBerAGqq6sj5c36+noqKSmhyspKg/QmTZpEgwYNAulhIYvjmAXpJUPkp0Aing6k5+jGpgJ+s6O7Xtjf5ac+aic9MyiqqqqoWbNmjof5ItPT4X78b5ZeODxID6SH1ZvexQMvxqTK03DrS2umpwJMoixILxX0rO/ldkAv9HlLegIbuxBqjR3Km1uo0Iflzb49u9CJ7eJX2F50Znc6q+hE5UHkhb+qKOXWl46Sqp/6mJZMT9YhQHqySKnJcTugF/pe/8cGemnphyYd1b96M1YpSM+fpHdK57a09evKOP/4w82XgvQsQoMXY1Il6nDrQ6anYB1u43Dry9S3vJH3vho6ujH2Mo5yBOkpuHfKonb+qn1OL+HoztjOgPTUTMsdd7j1gfQU/IHbONz6MpH03nxvI/2/xRVJpBc0Tt9P/Ka2dWQ0l1dwDiJCppfGTM/mUwsgPTU/5o473PpAegr+wG0cbn2ZSHoPv/QerdnwZZIVQXrWBKTg8kqiac30EknPyPJDl9hHWVdXj/KmpDW54w63PpCepCNkIiEodC0iyu2AbvS98s7Hkedd9Z9ttGvfYZBeAgJucHXjL7H3+Ir0HDqDOT1rgLh9h1sfSE9hpHMbh1tfphD7y8vW02srPrG1HDK9LM/0QHoKkS1elDvucOsD6Sm4BrdxuPWB9BLnABWcA3N6tqeHaF/IYjanF17dFFPqDFsUmR4yPbPtNdiykOaSEUjPfGAi03MmY7/5TlpIzwYmkB5ID6TnHEfYz8HzW+CSgEhZxE0fo6SnuhpTVV6tO83z8+jWK8+lQX1OibvRTR/VNCdL+00nSM+dRf1mR3e9sL/LT31EpodMT4ePp0wIfiU90bFfjR4A0jPxGpCeu6HkJ0Jw1wPnu/zUR5AeSM/ZY1OUcOPw6SS98EJ4q4PKQHqFph4B0nM3UNyMD3eaondx6+TWJ3pqpROkB9JLdfw43u/G4dNJek4dAumB9Jx8ROV3N+NDpX0zWW6d3PpAegoewm0cbn12zqAAk5Komz6C9JwhdoOrc6vu52aMTG/nNw1Hw0Xb8ewjsjYnspg9NRayWNuS23e49YH0FEY6t3G49YH0UtuyIPBDppec6f11+ce0ZM1m+ubgUZCeQrxJx3hMh04/xTmUN1HeVByi6uJuHB6ZnjPObnB1btVdpveXv39Ec1d8TFQfBOkpguwnOyo+urS4n/oI0gPpSTuuW0E3Dg/Sc0bbDa7OrYL0uHHl1odML5j0wZZUx4Vn9+N7ep5BGdcQ9yBzow+k52x7N7g6twrS48aVWx9ID6SXcYSgK3Cl2q7V/W4GNUjP2RpucHVuVZ70amqjXzWYu/xjem3lJyhvugA43XZ08cjKt/ipjyhvoryp7MCqN7hxeJCeM8pucHVuVZ70Sj/cTlP++n70BrG6EnN6yhCn247KD+ziBj/1EaQH0nPhwmq3uHF4kJ4zxm5wdW41E0nP/Og5bFmwtiW373DrsyvhgvRAeqnGQcf7VR1+w7Z99NBL79G3R48TkepZmqryjo+fJIAtC6EtC/7J9EB6ql6sOiZV20+U59YH0lOwGLdxuPXZOYMCTEqiqn0UpPebPy1v0KFKYqrySl0xhEF6ID11r/FP1pUJMcALfK3iDjI9ZHpe+JdtGyA9PRCr4urFU8Tq9Humd+eo/tTrpA7UrUMrpa5z48qtD6SH1ZtxA4LbAbn1ZYLDI9OTi9Hp9h2/k55A8aIze9CEsRfIAdogxY0rt75MiAFKBrMQRqYniSK3A3LrywSHB+nJOWu6fQekJ2cnJ6l029Hp+bz43U99RHkT5U0vfBrlzS1byOwrzTrBTXcgAel5Y91029GbXti34qc+gvRAetp9Xsbhjx6roXWffW08y669h+nlv69veC7VhSmq8urdx0KWzFjIgvKmtW/LjEn1keEffXYVLZAeSM9L3zZtS2aACdK77vd/M7lflcRU5dW7D9ID6al7TWYQgpf9im1LJgZ4rRtzepKIchuHW5/dG5AkRMpiMn0E6SnDavllaPWW5O8I27L6eC0t+2AzPbeoInpz2k5ksX7RwUIWc9vKjEl5r3CW5NaHTM/ZJhEJbuNw6wPp4Xt6CsMhSTSW9EY9MI+IBNM1XGkjPesegfRAeokIoLyZgAg3CXHr8zPpjf79fArEBlHDNqrlSlV5dQq49JyT6LRu7SI3XnlRr7RmXeo9cH+HP0kPmZ6qRbnjDre+tGR6ixcvpsmTJ1PTpk2pTZs29PLLL9OmTZto3Lhx1KlTJ8NGffv2palTp1raC58WUnVlOXluB5TRJ8qbmUJ6sSh3aFNAf77niiwnvQbSSVumB9KTG/lRKZkxqdqmnTy3vrSQ3rBhw+jVV1+ltm3b0q233koXXHABde3alebPn08zZsyQwhOkJwWTshC3A8roA+kpmzGtRCvm9PxT3gTpqXqPzJhUbTPrSS8MQG1tLY0aNYpuu+02qqyspJUrV9LAgQOpoKCAhg4dSrm5ucj0CkOr4bguPzo8SE/d+tx2jH17jic9ZHrq1ktf1mWXBaXSD5AeEb3yyis0ceJEuvTSS+mFF16ghQsX0vTp02ns2LFUUVFBmzdvpkWLFhlYlZaWUllZWRJugjBxNX4Eqmvq6DezyzNiTi/WGm1bNKUHx57d+A2U0MNjDfYKLWQR/wRD/0nL9/SsM70+he3op4OLss4+6DCROGGzqCjZ9toXsgjFd999N3Xp0sX4b+xVXFxMK1asoI4dO5raCOVNPa7LnSHI6MuETC9IwSRSbtuyGb088cq0lhr1eIl5q+YLWfxHeg1PRPlN86hNi3yjM0POPZXGDD7DES4Zf3VsREGAWx8yPQ0HTh8/fpxGjBhhZHFiIcuzzz5Ln3/+OQ0ZMoQCgQCJ+b7q6mrq3bs3bdy4kfLzQ06ZeIH0FEaOgij3IJPRlwmkZwYxSM+fmV6Y9GJtNnZIMUivARCZMakQUhxFufXZEbu2TO+pp56iuXPnUvfu3Wn79u3GopacnBwaPXo09ejRw/i78ePHU0lJiSVgID1HX3IlwO2AMvpAeuqmlMFVvVX7OzIt0wPp2WfsXvuHVXvp9NXEZ9JGekJRXV0dHTlyhFq3bh2n99ChQ9SyZUuDBO0ukJ4el+R2QBl9mUp6zZrm0Y8G9qb+pzTPqgOn4xey+Le8CdID6bGSXqohG6SXKoKZ4/C+Ir2gWJQRc9KIgxl+MKCIfnhWuywlvfCLq78WsqC8KZex64kwya3KvPh6/SxWOrVmeql2AqSXKoIgvVgEQgtRJI4hA+lZOl5yeTNzSG/oeYX0wwFFcafpmHWUO0Bz6xN95tbJrc+ujyC9BK/nNg63Pr86PDI99RccLt/5w8ultHPvYeMBa2pqqEmTJjRmyBn0v3/9J5HxEiEuP2Z6yfnetNsuA+mB9MRrrT8vZHp67MIVLMNPL6MPpKduaxlc1VtNvkOQ3upPdsX98Osx54P0vAA3DQTk1xdfj+CMNIPypiSiXIFEhRAkH11azI99BOlJm89xUKu3ZH8HSM9rROPb4x6PID0N+/S8chFkel4hmd5B5jSo563cYHwt/e/lW/xxIgvm9OIcBqSnZxzixTc9uGJOLwF3pwDttZm49fnxLU+Q3otLPiSzE0/S8mmhRNJzIMHGvnoTpOf1qE/vS6gfY4AOhFHelESVm4S49fnR4X1Peg6+A9ITAGEhi2SISRJDDHCLnP19ID1JXLkdkFsfSA9bFiSHQkQMmZ4qYmryiAFqeMlKg/QkkeJ2QG59ID2QnuRQSCC9nXG3XXL2SbTqP9t9vmUhuaenn9yBpvx8sC0E3GOSW58fY4CqT8rIg/RkUErD8mE4PBHKm5LOmSDG5TtmmV7oUcRuJz/v00vGtXVBPv3lvqtAelu2sJ4gxOWrsYYF6UnGFW7jcOvz41teppPeOT1PpHNOaknXDD7X+IoI18XlOyA9vRblsqMMIejqqZ/6iNWbaXp7Dqv1kzOky+EznfTCuC2cNBqk55OPyJqdvSnshEwv5K3ccYdbn10fQXogPV1cF2nXyeFBeu5M4ISru1aT70Km5xWS5u1w2RGZXggBkB5IT++IlnirBOm5MwFXsEwkvei2RczpubNc/F1cdgTpgfRM/ZXbAbn1+bG0AdJzFzq5fAek584+sndx2RGkB9ID6cmOyhTlnAY1SM8dwE64umvVubyJTM8rZEPtcNkRpAfSA+l5O3YtW3Ma1CA9d4ZwwtVdqyA9LlzDSHPrSwfR+qmPmNNLGOPcxuHW50eHB+m5oycu30F50519ZO/isiMyPWR6yPRkR2WKck6DGqTnDmAnXN21ikyPC1dkel55qHk7VnZEpodMT6/nScxZgPTcmYArOCPTc2cf2bu47IhMD5keMj3ZUZminNWg/tOCcuMgq81fHqCN2/f799NCkv3+7Os7AAAgAElEQVTPls3pmbyQpWWzpvT4L4ZELNq1Q6sk63KTELc+P05xSA4xJTFkepJwcTsgtz4/ObwgvbdXb4pYxrff05P0HZAeEfn8RJZYU/bp2ZkeunEgSE/Sv1MR81OcQ3kT5c1UfFnqXrtMD6QnBWFaqxKNqbwJ0gshwE1C3Prs+gjSA+m5j7qSd4L0JIFSFOMKJI2D9EQhPf4w8HNOO5EevulSZHqKfudGnMtXY58N5U1JS3Ebh1ufX97y1m78ihaUbqSKTbtR3pT0zUQxLt9pHKSXDDJIr9Cl56nfxuWrID1122R12u8CLqlbzBxekN5Ds1cZC1nCF+b0pOCMCHEFEpCeml1UpbnsKEMIqs8uK++nPqK8ifKmrN+6lgPpuYbO9kauQALS02O/cKtcdgTphRAA6YH09I5oi0lzZHqpw84RLLd+XUnPLVpHH27eE83Ig0Shb+Vm3lcWYlFHeRPlzdRHocctTJkyhSZMmOBxq/bNcQSSdL5xCd1+6CNIL3W35rDj0jWbafoba+PL0CC91I0X0wKHHRMfmFsntz67OIdMD5mepwPYrDGUN/VAzBFIQHp6bIcX3/ThCtID6Wn3PpCeHohBemFck7cjiOpr7CIpMwugvInypqcjc/HixTR58mRq2rQptWnThl5++WVq1qyZUa5ct24d1dbWGr8PGDDAUi/Km56aJNIYR7B0epNFeTN123LYEZle6nZyaoHDjihvRhHQlukNGzaMXn31VWrbti3deuutdMEFF1CXLl1o9uzZNGfOHNq1axeNHDmSysvLQXqFfG9cmNPLcc4BoodLOsWruN8b4zFkID0lF3AlDNJzBZvjTWnbnC4yulGjRtFtt91GK1eupF69etG4ceOMB+7Xrx8tW7aM2rVrZ9oBZHqOdnUlwD3IsqO8GaAObZrH2eOu6wZQ8amdXNlI5iYOO4L0ZCyRmgyHHZHpMWR6QsUrr7xCEydOpEsvvZReeOEFg/iGDx9OI0aMMJ5gyJAhNHPmTOrZsyeVlpZSWVlZkvcIwsTV+BD4ZMdBmrXks0a0OT15Fun2Eb3otC6tM9p4/9ywh14r3dYoV2/26taaxg/vldH2wcNbIxAMBqmoqChJQFt5M6xJKL777ruN0uaBAweouLiYxowZY/zcv39/EnN/7du3R6bH6L3cb5bZkuklLp149GeDkOmJYrLY4mBUlcP7+hqWmIj3BNuvMohBEXqZMP5tuToFC1lUw4cfYoDqM6vKs5Y3jx8/bmRzixYtMhayPPvss/T555/ToEGDaMGCBTRr1izat2+fkelVVFRY9gXlTVUzy8n7weEb30KW5IgM0gv5I0jPflxyj0fxNNw6ufXZ9VFbpvfUU0/R3LlzqXv37rR9+3ZjUctJJ51EJSUlVFlZaZDepEmTDCK0ukB6ciSmKsXtgMj0VC0kJ89hR8zpydkiFSkOOyY+H7dObn1pIT2htK6ujo4cOUKtW8fPa1RVVRnbFwKhs4xAeli9GcoIjDJWok8kl67CDhOST1yNqSpv4n4qqzcjm8EC4lC/uMaQ6fk708vNCVCzpnk07bah1KV9y4jtuAM0tz5kemLSzacXMj09huEeZI0604tUNRtfefObQ1V06xP/R1XHahvlQpbw6Jp19+UgPT2hJm0vEmnL9FLFEaSXKoLm94P0HN7zVDK9Rk56JZMWGBWZuE9ANZKzN0F6fPuDuWMOSE+BO7iNw63PL6WNRrOQBaTXMLoEEzqtxvTX6k2QHkhPgRp4RJHp6cGZm2hR3sxMO4ryJjI9PbaLbZV7PPrlxVc3sqxbFrzqDEjPKyTj2+EeZCC9zLRj4yE968VNwjKY09Pjn34ldm1bFryAEaTnBYrJbYD0MKcn41mNh/TsewvSk/GG1GS4Yw7m9BTsxW0cbn1+KW1gTk/BKS1EdfrOnL9/RPsqj9Dy8i+wkCV1U9m2oNOOVoq5dXLrA+kpOC23cbj1gfQ8/spCI1zIsnH7fpq36lNa/fFO4zgVrN5UCCAuRLM1BriASukWzOlJwsXtgNz60k16/7d6E731z8+p+ngt7T94NPMPnG6kpHf3zOWhTzCB9CQjh3uxbIsB7pFSuxOkJ4kXtwNy6/MD6c1cEPqGYuJ27ow8kQWk1zCysGVBMsQkiWVbDHCLk+p9ID1JxLgdkFsfSA/lTaehIMqbyPSycw+bk2+4/d1PcQ6rNxOsyG0cbn0gPQ2kZ3weJ7ndTD17M9tI7+bLz6G2LZvRwHNONqIB95jk1pftfQTpgfTcvrxJ3xce1GIJ/PJ/b6WXln7YuMqbIL3Q/F/GnMiSvG/v6ot7043DzwbpSY9qNUE/ETtID6Sn5r0upMMOv+/gUbph8luRFhrNnB5ID6TnYlyEb/ETIaTQDdtb/dRHkB5IT5efR9oVDl/6+RF6d90XtP9gVcPfi48IiaUr0StjF7KA9EB6KYwiPxFCCt0A6XkBHk5k8QLF5Da4B1mY9F7/xydxD4NMLzX76rJj45/TQ3lTl+9YeTS3Prt5S2R6yPRSi7wSd4P0JEByIaIrkID0tlAh44edddnRzqW4dXLrA+kpBBRu43Drs3MGBZiUREF6SnBJC+vyHZAeSE/aCSUFdfmqG2JHpodMT9Jt3YuB9Nxj52ZQp6otG0mvVUFTumfsBXRW0YnYspCqA5ncD9KTBBVzepJAKYpxOyBIT9FAkuK67Hjd79+go8dqGvExZOafGvrDzZeC9CR9T1VMl6+6eSlEpodMT9V/leUbPekFE74I3oBQpm1O3777oPHkd89YTlXHa0F6yp7u7gY/EYK7Hjjf5ac+gvRAes4em6JEoye9RrJlofTD7TTlr+83nIoqjJ4dB06H3RuZXooD3eZ2kJ4ktihvSgKlKMbtgNlEeqFtGOLfRO1aN6dWzZvSBcXd6YoLepKYN/Ly8tqO2UN6KG967TtOfs2tTzyPlU5kesj0nPw15d+zifSswHrlvqtBeollYMdjywSa0deIYOLGzgjYySRmKWrcA9LjJiFufSA9hbDNbRxufXbOoACTkihIjwikJ7gmYe4TpGeMo2yJAZx7H0F6CiGa2wG59aVjkIH0QHqhj1CA9MxCUbbEAJCeBBFhTk8CJBci3IMMpAfSA+lZD1Tu8ZiuF1+QnkSwBulJgORChHuQgfRAeiA9kB5ITyJYg/QkQHIhAtKL/baDCYCiDBcIrcB0vCLzUvYfp8WcHsqbVr7EPR6R6QWNQrsvL5CeHrNwDzJkekS5OQEaO6SYRg863TOjem1HbFnAiSyeOWdCQ177qsxzYsuCDEppWEnlJ2eQhEhZDKQXguy/hp4J0qOYjBirNw2/yJYYgPKmROhEpicBkgsR7kEG0vMv6T35+pqIB+058C2t/2JvFpzIgn166YgBGUF6M2bMoF69etHgwYOVQ+uqVavovvvuo/z8fGrVqhXNmTOHNm3aROPGjaNOnToZ7fXt25emTp1q2TZITxl2qRvS4fDiy+nZ9hHZRGP4MdP77/99m77+5tuGRw2TQXg+s7EeQ2ZOek3ycuhvD49iz7y4x2M6sks/9dH2RJb777+fHn74YRo9ejQ98cQT1K1bN6mgKoSGDx9Ozz33nHHPHXfcQX369KEePXrQ/PnzSZCpzAXSk0FJXYbbAZHp+TfTA+lFx09eXg69AdJTDygSd3DHHDtityU9scZFZGj33HMPHTp0iAQJXnzxxZEufu9735PoLlFJSQldd911VFVVRStXrqSBAwdSQUEBDR06lHJzc5HpMX6lOV1vecj0/DmnB9ID6UkF8RSFMob0wv08cuQIDRs2jMrKyuK6LrPw84UXXqClS5fSa6+9Rm+++SZNnz6dxo4dSxUVFbR582ZatGiR0WZpaWlS++LvR40alSLcuD3dCHyx+1t6Y/UO2rYnXEYLPVHi+YhB46jmxK0C5qUocX9IPnGrgKq8CToatiwILZf360ZD+3RNtzni9D8090Paf/hYw99ld3kzNzdAT9zYz1f2wcO4R0DwU1FRUVIDjgdOl5eX05133mkQ0s033xyX6f3kJz+xfaJ7772XDhw4QM888wzl5eUlyRYXF9OKFSuoY8eOpu2gvOne4HZ3cr91LX//Q3py4acNB/1GnyzbSA9zev48hiy8Z0tsK/nZFX1p3759dNWgPtSmRb6eAZjQKvd4FOq5dXLrs+ujLen98Y9/pF/+8pfGghMxD9e/f39pJ5g2bRrt3r2bJk+eHLlnyZIlFAgEjKyxurqaevfuTRs3bjQWu5hdID1puJUEuR0QpBcyD0jPn6RnNnjm/O4qkJ5SVLEX5o45rknvwQcfpA4dOtCtt95KOTmijCR/tWzZ0li8Ep6zu/baa2nkyJHGohixoGX79u00fvx4Y77P6gLpyeOtIqnbAef9Y0PDl7dDT7V11x5a89l+ZHo+3KcXN6cXKetm5+rN2DEE0lOJKM6yumOO2RP4anO6WBQjSNGJSEF6zs7kRkK3AwrSe3HphwmPlvyFM5Q33Vgveo8XdsRCFnMbgPRS883Eu73wVdUn8hXpyT48SE8WKTU53Q4I0jO3R/P8PGrWNI8GnN6NfnFV6gsmvLAjSE/YKnnx03WDTqefDD1TbWC5lPbCjqqquXVy6xN4gPQkvYLbONz67JxBEiJHsSTSM2IKMr0wcD8YUATSE2D45hiyZNIr6taOnrztMkdf90KgMcYAZHouPQOZnkvgHG7TPciQ6dkbAKTXsF4SpGc4iu7xaOaN3Dq59SHTU+AObuNw6+MYZCA9kF4sAsb6GF9/OR2ZnkKIdCXqpzjnuE/PVQ89ugmZnkdAJjSj2wFBeiA9kJ782NU9HpHpxSMA0mMmBD/XuuWHqb0kSA+kB9KTH00gPXmsVCSxkEUSLW4H5NaH8qb9F84NN9F0DFnYBTGnhzm92HDUGGOAn1/ukekh05N8HZAXQ6aHTA+Znvx4AenJY6UiiUxPEi1uB+TWh0wPmV7sUMA+PSO1j/lwbggdbFmQDJiSYn6Kc8j0kOlJuq28GDI9ZHrI9OTHi58IQf6p1ST91EeQHkhPzXslpEF6ID2QnsRAaRDxEyHIP7WapJ/6CNID6al5r4Q0SA+kl+mkd3LntvT7n4Y+mN2hTYGE17sX8RMhuO+F/Z1+6iNID6TnqZ//4skldOjIMar8tjqhXRxDFgYEqzf9unoz2Uen3XYZndatnadjJLExPxGCro76qY8gPZCep35+05RFtKfyiEmbID2Qnl+/pxf7xfjwJ2VD1gLpeRMeQHqSOOJEFkmgFMV0OmCY9MT50mK7W/QC6YH0QHpmQ1XneLQKDdw6ufWJfmPLgiQxcBuHW5+dM0hCZCuGTM8ZRZQ3/VfeDFCAgsZnH5DpOXuwuoSf4hzKmyhvqnuwzR0gPWc4QXogvVgv8RMhOHuvOwk/9RGkB9Jz58UWd4H0nOEE6YH0QHrO4yRVCZQ3JRHkfiPh1ofyJk5kET5Q/tlXtOXLA/TGqo10uOp4w+iIXdAh/ipoTMwGAqL0F72iR5OG5+gaZB2/j+ffOT2UNyUDpEsxP8U5ZHrI9Fy6sfltyPSc4fRDpidI7/d/XpXwsCA9zOk5+68bCZCeJGpYvSkJlKKYTgcE6TkbA6SH8ibKm87jJFUJlDclEdRJCGaPwK0P5U2UN8PlTWR64REp1m1i9aZkiHQl5qc4h/ImypuunNjqJmR6znAi00Omh0zPeZykKoFMTxJB7jcSbn3I9NKR6YkVHtHrtG4n0I8Hn04DvttN0ivNxVLxneXrvqAnX1uDOT0DAWR6KTmixM2p+KpE86YiID1J5LiNw60PpJcO0kt2vt9df1FaSe/Kia9SfX3ic2EhS+JClvFXnUvdOrQygDr9lI6Ulyv8x9urscUAM3T81EeUNxMsxG0cbn0gPZCe8AGQXmz2bZ3pxYaHNx4ZBdJzyfd+inMgPZCeSzc2vy1pTi9yCCfO3oxF7IbhZ9MZp3Q0/qpti2Z0YrsWynZIJZCA9EB6hYWFyj7n9oZUfNVrnSA9kJ5bn4q774NPv6TVn+yi9/6zg6qO15i0CdIzQEmGgZ7/9QiQXozHGJvfIwl5CDDj3ybYhW4Ll2WjjViKmsoj0/MkCNg0AtKTRBj79CSBUhTT4YCC9B568T2bJwHpgfQy70QWlDcVg4uFuI6Y4/RkWMjihFDD79zG4dYnuqlDJ0hPYq4QmR4RxeDkeGxZFDBkepIBTFJMRwywU82tzy7OobyJ8qbkMLEXA+mB9IwaZL2oTcZv0YiWK5HpmY0iPxGCJ8HApBE/9RGkB9LzxM9BeplDess+2EJ/fOODhI/8xs6NhUkLB06jvOlJeNBSXXJ6Mvby5qpVq+i+++6j/Px8atWqFc2ZM4eaNWtGEyZMoHXr1lFtbS1NnjyZBgwYYPnsmNNzMqu733W8dd014x36bMd+zOk5mcQHC1n+8HKpsego+cI+vcR9eiA9J4eW+11HzHHSzE56w4cPp+eee466detGd9xxB/Xp04e6d+9Os2fPNghw165dNHLkSCovLwfpMS4d1jWnd8VvX3XwQSxkMQAC6UW/Tu5YDo0Chjk9pxCv9js3CXHrS/ucXklJCV133XW0evVq6tWrF40bN86wUL9+/WjZsmXUrl07U4sh01NzZFlpHQ4I0suc8iYyvcQtDtiyIBs73MrpiDlOz8Ke6YUf6IUXXqClS5fSa6+9RuPHjyeRAY4YMcL4eciQITRz5kzq2bMnlZaWUllZWVI/Ro0a5dQ3/O4DBO547gNkenGfWrWAwyTTu/+6s6h963w2Kz6/7HNav63SRB/Km3blzSdu6ke5OfGLdNiMBkXKCASDQSoqKkq6T+tClnvvvZcOHDhAzzzzDOXl5dHEiROpuLiYxowZYzxI//79afHixdS+fXtkesomdX+DjrcuZHruM717x11I7Vo3p14nmY8DK0u7tSMyPWR6bn3HbdTh1peW8ua0adNo9+7dxmKV8PX222/TggULaNasWbRv3z4j06uoqLDEEeVNty5mf58OBwTpKZCeybL+Hw38Lv30B2cpGdytHUF6ID23vqPkoDHC3PrSQnotW7Y0Fq/k5uYaXb/22muN8qaY36usrDRIb9KkSTRo0CCQHhayGD4QbPjES7xDJB8xFf49JJ9INqryZlW+5L1mlk4aWYyhSnrx8h3bFNCvrhtAxad2ko4rbgMJSA+k59Z3pJ0zQZBbX1pIzw6cqqoqY/tCIGETa+I9yPTcuhgyPTMEzElSI+mZ8a8NST76s0EgPfHyk9azN8X3lszn7fCVBffxKOtJTxY6kJ4sUmpyOhwQ5c3UMj1hQZBeyI/TS3oNX3U3GVIgPbU4EyutI+Y4PU3aVm86PZjd7yC9VNCzvleHA4L0QHo4hszdeNUxHp2ehFsntz7flTedDBL+HaQni5SanA4HBOmB9EB6auMwLK1jPDo9CbdObn0gPScPiPmd2zjc+uycQQGmJFGQHkgPpOduBDWWGGDXez/1Ues+PXcuEL0LmV6qCJrfr8MBQXpuSS+6aOLEEwro9FM60q9GW59H68U8SXT1ZvIqxtAiDhw4bTZyMKfnPh7piDlOT4M5PSeEGn7nNg63PmR6EuRkrKSQPHnDoy0LYfe8+KyT6DdjzpfyVre+gy0L2LLg1nekHNNEiFsfypsKluI2Drc+kF72kt43h6roz4v/Qx99sZf2HTxqMipwDBm+sqAQLBVE/RTnUN5MMBy3cbj1gfSym/RKHl1o9qGHhlEA0gPpKTCZgqif4hxID6Sn4LrWopjTkyBTAZ9pOTRaSm1d0JRuHnEODepziqNdZAJJbZ3YbB26RKZ309RFID3jYPDY8jW+suDobCkKyPhqiiqSbsecniSi3Mbh1odMT4Kc0jinJ+wjFrJ4RXrTXv8XvfvvrTHeHw7wZgMCmV440zM7TGfM4DNo7JBiyUgiL9ZYYoBdj/3UR2R6yPTkR6eNJDI9CTK1zPTigT35xNZ0Qqvmxl/e8MOzqbDrCabIywSSZNIz/Y5tQ/sgPTvSO+e0E+nhmy71ZLzENiJjR6+Vcuvk1mf3cg/SA+mlNJ62fHnAuP+OZ5Y5tIMvpxsAKa72fOr2oR6Q3hdx5TyTT/qB9ChgHF8O0kspHFjeDNKTxBX79CSBUhTz0gH/b/UmmrmgXOIJQHrpJb2chhQvNrQnmg2ZHkhPYii7EPEy5siqx5yeJFLcxuHWZ5f2S0IUJwbSIyLj+3jelTdjAfYu04s+HzI954UsZnN6KG+6iRChe/wU51DeRHnTvScTEUgPpBdyIEH8YSziN/ZHv5ogqCTm5cBRPlwPbshOLdk6maKsib3hWR1Wb4L0UgoLSTeD9CTxRHlTEihFMS8dEKQH0gPpKQ7ANL9opyPz8jLmyKKN8qYkUtzG4dbntcOD9NRILxggCiiUQ1HeDOVsxr/TnOmdVdSJ7rv+4kgkadY0TzKq2ItlegyQAcFPfUR5M81vXX5yBhnnTZQB6YH0Gn2mZ1LrvOriXnTT8HPcDBlfl/486ZBJI36KcyA9kF5Kfg7SA+mB9FIaQr5a5JFaT6zvBulJIos5PUmgFMW8dECQnv9Ib+OO/RGPmLv8Y1q78auGfXoiZcHm9NC2BPtjyOIkkOkpRphkcS9jjuzDYE5PEilu43Dr0zKnt7Dc7pzeBuSxT08AwTGn97dVnxpfU4i/ovhjy4IC6VmAhfKmZEBtEPNTnEN5E+VNNe9NkI7N9OyXiYP0QHoZumUBmV5KMcLrF23Zh0GmJ4kU9xsJtz4vHXBv5VF64P+tpB17DzmUzcyLaok0GDRW6SV+vNVsx1R4FknIJ24KV5U3cQyNB04j08vAfXogPcnoiTm9lIHCnF7KEJo24BXRCtK7ccpbER3I9EJzZnYXSA+kl+gfXo1HJ9+L/Z1bJ7c+u5d7lDdR3lQZK3GyID31A6RBeiA9kJ7rkKN0I8qbknBxv5Fw6/OqvPnS0vW09etK+uDTL5HpKWw2VyW9nt3bU1HXtvSLq/slebCV72Ahi90KVQGjwkIWM3EiGtT3FLr6ol6GTU7t0lYyupiLZWoMUOm0n/qITA+ZnorvRmQF6b3+j0/i7kV50/vypgD4B/2LQHrpPJElzJEmc3sXntmD7hl7gasxFL7JT4SQUkdsbvZTH0F6ID1Xfg7Sa4BN8ft4qpkeSM8Hx5CB9FzFiNibQHqSEGIhiyRQimJeOCBIz0vSs15xqkJ6s976Nx2prqHtuw/Spl2hj/tGL+zTi2LhsryJTE8x0kTFvYg5qsoxpyeJGLdxuPUJGLzQCdLzJ+m99c/PLTwdpJca6QUbpgLjt9SgvCkXWL2IOXKanIkW5U2UN1V9yZAH6YH0QiwgVmOKqxF/Tw/lTVcxIvYmkJ4khChvSgKlKJaqA67Z8CW9u24bla3fblFAM3sgnMhiUIPpp4Xsy5u9erSn7h1bx4HapmU+DezVigoLCyMvIRWbvqbPd36DTM/2fNEGgnZz9ibKm4qRxjnrct2gxI3s5c26ujp67LHHaP78+bRmzRrjEdevX0/jxo2jTp06Gf/ft29fmjp1quXjg/QkLOtCJFXS+/GDf6Mj1bUNS7+jD4DVm25XbzqTXuwh0gLxay7pHUd6V058jerF1gnLC+XNKDSY00s1BqiGHW594vnYSW/69OnUuXNnuuOOO2jnzp0GRsuXLzdIcMaMGVKYgfSkYFIWStUBr/v93+joMZCeAbwnqzdBerFObJwCF9nDjtWbygNc4oZUY4CEijgRbn1pIb1wj7t37x4hPUF4K1eupIEDB1JBQQENHTqUcnNzkek1lKhUHcmtfKoOOPqBeVR1vB6ZHkgPc3rYpycVhlKNOVJKEoTYMz0z0nvzzTdJZIBjx46liooK2rx5My1atMgQLS0tpbKysqS+jRo1yk1/cY9GBH7z53I6Viuyk/hyGsqbesqbp3RqQVv3HImz6PfP6kxXDugR+bs7X1iL8mYMQva+6F1585zCdnTD4CKNow1Nu0UgGAxSUVGybbSv3ozN9BIfvri4mFasWEEdO3Y07RfKm27NbX+f27eulRXb6J8f76LVH++gerEiA6TnfXnTJFqLhSyY0wstAkpwuQZHTy4Pc5EetizIxSi3MUeudXMpX2R6S5YsoUAgQMOGDaPq6mrq3bs3bdy4kfLz80F6qVhX8V63DihI77FXVzdEnsRP+jidd+hMktn7aSHM6cW6MOb0FAe0C3G3McCFKuMWbn12OrVlenfddReVl5fT+++/T+effz5dffXVxj+jR4+mHj160Pbt22n8+PFUUlJiiSMyPbcupi/TA+klYIuFLNFsK4JF/AbuKIll+EdksWXBdUDKCtKzQ+fQoUPUsmVLyskJb2w1lwbpufYx2xvdOiAyPRNYfUJ6Iye+SkGxtijuio3S2LIQhca7OT2UN+VilNuYI9e6z8qbqTw0SC8V9KzvdeuAIL1MI73Y5wXpgfSiCLiNAW4jEre+tJQ33YITex9IzwsUk9tw64AgPZCeQMAoVxoVTBxDhkxPLka5jTlyrSPTSwUn9glXPzmDE3AgPf+TnvWSGGR6yPSQ6QkEtC1kcQqgMr8j05NBSV3GLdGC9PxDer1P7kBNqJZatGhhPNTqDbuMxAukF7IRtizYxwW3MUA92oTu4NaH8qaCpbiNw60vFQcE6aWH9Hp2b0ef7xTfx4tufm+Sl0s1tXVJDwTSA+nJhDvuuMOtD6Qn4wUNMtzG4dYH0kveX5jMHJFJK2fP0bx6M0piibmLeS4D0gPpOTstf+blpziH8maCh3Abh1sfSA+kZ136C1NmeJ+dqJcGjQMlYg9Yw0KWaNDAQhYZiuUnWWR6cnZJS+0ZpBc1Dk5kSXZUZHr+/spCn54n0o3Dz6ETWjWnNi3MT5ZyCj+ZFAOc+mL1u5/6iEwPmZ60H2NOj39OT4b0YjM3lDd5y5thj5jzu6tAejaRBKQnGWaxelMSKHEanZkAACAASURBVEUxtw4I0gPpCQRQ3kz2A5CefRByG3MUQ1uceNoOnE7loUF6qaBnfa9bBwTpgfRAeubjCqQH0vMkWoP0PIExqRE3pHekuoZWVWyjGQvK8ZWFWER9sHoT5c30fVoI5U25GOUm5si1rP5yjzk9zOlJ+ZYgvR8/+LcG2YTT8hv+Fh+R9f4jspjT8/dCFpCeVPjA5nQ5mIiQ6ckipSbn5q0LpGeBMTK96ItQFn5aCKQnF3vcxBy5lpHppYoT+xuJn5zBDjyQHkgvjAAWsiT7Aub0MKeXMvmIBpDpeQKjZ3N6KG+a2EN7pheg0NZw6xNZMKeHOT3VSMH9ss2tT+CB1ZuSXsFtHG59ds6ATC9cqfPRMWQBcSq8eC6QXtBy0hikJxneImLccYdbH0hPwSO4jcOtD6SXYceQgfSM1cIG34H0FCKZv8qNfopzWL2Z4BvcxuHWB9JrDKQnMtGc0C7xhBwQJ7KEBjTXp4XC4QNzev4iWWR6Cu9H3CTErQ+k10hIj6L9wJweypsKIc4Q5Y473PpAegoewW0cbn1uHR6rNy2cSPdCFtPyZvw+SZAeN+lF9YVXsn7npHZU2OWEiJP84qp+0lEnU2KAdIdMBP3UR5Q3Ud6U8mWQHkgvjAC2LCSTXqx3DD2vkG6/5jypceX2JVS6cQtBbhLi1odMT8FDuI3Drc/tINt94Fu6eerbDUjiRJaISyHTi/pE1mxOB+kphNS0lFNBegoW4iYhbn1uSe/XM5fTp9v3gfQSfQmkB9ILf3O3AQlkeskB109xDuVNlDdtXwmO19QZv9/73ArauGM/SA+kh08LRQ4LiP3MUtQxQHogPYU8K14UJ7K4hs72RpW3rhunvEV7K48mtIfyJsqbAoGwHzT8GeVNwy1AeiA915EbpOcaOpCeCQJBY5MztixY72ELz1WF63VBI5UJBEIHoYUvLGTBnJ5qZFJ50VZt20oex5BJIsltHG59AgYVncj0HBwHc3rRkjcyPWR6FsNFJeZIhmpHMZCeI0QhAW7jcOtT6eM/P9pBT/9tLR2pOo7yppX/gPSylPRExUAkwiITjncOlDdR3pSkm2QxlDddQ+dJefNPC8rp7dWbTAuFZFImxEdkNXxEFpvTfXj2ZnQuE6QnF6P89HKP1ZsJNuM2Drc+lUwPpCcxoJHpIdNDpuc4UPwU50B6ID1LhwXpOY7l0MnG9Q0HQMct9zC/V3wpIJAkb31MtCGf9GkhHEMWj246jiFDeVNidEREsoL06urq6LHHHqP58+fTmjVrIvXvCRMm0Lp166i2tpYmT55MAwYMsMQO5U0Vt5KXlXVAkJ4EpiA9ZHoJC4Lbt25OP7uiL11Q3F3CgfjXEahUe6Q6ICEkG3MkmpIWYV/IMn36dOrcuTPdcccdtHPnTuNB33nnHZo9ezbNmTOHdu3aRSNHjqTy8nKQXmGhtCG9EJR1QJCeBNogPZCeyS6Y3467EKQXM3xkY47EiJMWYSe98JN17949Qnr3338/9erVi8aNG2f83K9fP1q2bBm1a9fOtCPI9KTtqyQo64AgPQlYQXogPZCe40CRjTmODSkI+IL0xo8fT8OHD6cRI0YYjz5kyBCaOXMm9ezZk0pLS6msrCypS6NGjVLoJkS9QuDj7ZX0wt83UZ2Yf0q6cCJLBBKQHkjPhPRuHHIanX1q9FNDXo1LtCOPgFhZW1RUlHSD9oUssZnexIkTqbi4mMaMGWM8SP/+/Wnx4sXUvn17ZHrytkxZUuat6+rfvU51dfUWSzNAeiA9gUA2H0MWs5AFmZ5jTJKJOY6NKAr4ItN7++23acGCBTRr1izat2+fkelVVFRYdgXlTUUrS4rLOOAVv33VWJhovvMMpAfSA+kZCIjN6SA9x8gjE3McG1EUYCe9u+66y1ik8v7779P5559PV199Nd1+++1UUlJClZWVBulNmjSJBg0aBNLz4UIWkF7C5isrL0V5E+VNE9K75Yq+1KdnZwObnJwAdWnf0jLO+YkQFHlFWtxPfdRe3jRDpaqqipo1a2YcZGt3IdOT9iklQRkHBOmB9Iw8HwdOh8od4bKH4RYJJ7LkNHxiyKI2Muvuy0F6W7ZQoU9e7tNCerIRGqQni5SaHEjP4biw6GcEnIFFpodML0J65u4C0vPXXkSQXoKfyhCCcySUl+DWJ55MRicyPWR6yPSifC6X6YH0rCKfTMyRj5pykuxzenKPZS+FTM8LFJPbkHFAkB5ID6TnDekN6VdId/zoPMzpobzpHNBBes4YuZFwIr3dB47QzVMXYfWmDLgob6K86VDePLFdC3r+16G9yWaX03iUcUNVGW6d3PrsKloob6K8mTReHnrxPfrg0y9BejKRBKQH0rMivYZiQW5OgDq0KTBwMiM/PxGCjMu7kfFTH0F6IL0IAnsrj9L/zn2fduw5RN9WHQfpyYxukB5IzyHTC7tR0ya5NP+ha5O8yk+EIOPybmT81EeQHkgvjvRunPJW5P+xOV1ieIP0QHogPceBAtJzhCgkgDk9SaAUxawcUGR6ID3jmA0ihz2kcW8G+J5eaO9a5AUgfhGQAaexgTvhJB9HeYFy6NXL+LflW1iav6cH0nOMQCA9R4hAepIQuRID6WGfnvXxcoJZwqSFzenGAJPenG4/HPPycuiNh5MP0PcTIbgKKBI3+amPKG+ivInyZuKgRaYXLVniRBZ3pGeSlYL0/PHdUJAeSA+kB9KLkpyR5SHTiyuYusn0QHpxowqZnkQ6jDk9SZBciKG8ifImypux845izjAQnjmMq2i6Lm+C9EB6LmIzFrK4AU3iHpAeSA+kB9LjPAAamZ5EYEamJwmSCzEzB3xp6Xr6ZNte+viLvZEWsWVBAlxsWYiWRh1XY2bR6k1kesj0JMJHkgi2LLhBzfkeK9J7/R+fxN0M0nPGMrpM3+Sjaia3i2X3gaQtDslL7sO3GvJGWhZrjXjySPzF/NTQqJS9XTGnJ9DGnJ6E7yuIINOTBAukJwmUohhID+VNlDdR3kR5UzFwcoiD9PSgbEV6r634JG5PNjI9CfxR3kR502xzOsqbKG9KhA+UN92A5OKeWNLbd/Co0cL8lZ/Sovc/R3nTqG3hRJaQI2BzehgG5e/pgfRAei5iM1ZvugFN4p4w6ZVv/Irmr/qU1m/ZkzBnFGoEmZ4EmMj0kOkh03McKJjTc4QoJIDypiRQimJhB1xZsY0ee3V1w93JFAfSkwAWpAfSA+k5DhSQniNEID1JiFyJgfSwkAULWTQuZEnYmREepDiGDMeQOQZsZHqOELkSAOmB9EB6ID2s3nQVPvXeBNLTgy9ID6QH0gPpgfT0xNeUWgXppQSf5c0gPZAeSA+kB9LTE19TahWklxJ8IL0EBILGkcISJ6dgy0J0cQo+LaT+aaGEOb3wC0ZuboB+O/ZCA9vvntSe2rRsZvzZT4s89EQcf/URnxZKsDK3A3Lrix1kWL1pMcRBeiC9mA8sKX9E1mIhS6y3zZl4JUhPF8M2tGsVW0F6IL0GBLBlIeIKID2QnhekVx/bSHygAelpZjybDBqkB9ID6SWOP5AeSM8r0rOopoP0QHqmCGBOT49jYCELFrJgIQvDQhaR6YH0fDdviUwPmV7Dh1SSRydOZJF46cCJLNGsEN/TC2ERntMD6UUGUDrXLiSOYpAeSA+kh/JmlLiME1fDWRAOnI6QWPgN0IAmzGribPIgBRKPIQPpJb0tgvQkXqCFCMqbkkApigkHbN+pK/3zo500Y0E5SA+kB9KjgLGhJURoKX5E1oz0xDxxzPWHmwdRy4KmVNj1BGxZUIxfsuK+WL25fv16GjduHHXq1Ml47r59+9LUqVMt+wDSkzWvmpxwhmf/vpU+2bo3JtihvBlBEQtZon6BfXru9+nFlTeTJwvO7dWZxg05k3KPVxLnRnFhXO7Mi1ufXR9Zy5vLly+n+fPn04wZM6SiNEhPCiZlIZAeFrJgIQvnQhbrjXtP/OIykJ5yBJO7wReZniC8lStX0sCBA6mgoICGDh1Kubm5yPQK+U8fn7H0C9q4bV/D9I35oMRCFonBhYUs0awQC1lCWCSVN2PHV/zrxp2jv0entKlHpicx1FRFfEF6b775Jk2fPp3Gjh1LFRUVtHnzZlq0aJHRl9LSUiorK0vq16hRo1T7CnkJBKYt3EBbd3+L8qYZVihvorzp6T69KOklTO1R0yY59MO+XWnw2V0kRi1EVBAQi4yKioqSbmEtbyZqLy4uphUrVlDHjh1N+4LypoqJ5WXFG5CR6W3fB9ID6cUgIIIzVm+Gk7VIATQMS/i/yqs340kvEFtZJaLze3eke0u+Lz+APZDknmPj1icg8kWmt2TJEgoEAjRs2DCqrq6m3r1708aNGyk/Px+k54EjyzSx9euD9Jcl5bRh57d08EgVSA+kB9Iz1m3qXL0J0sta0tu+fTuNHj2aevToQeLP48ePp5KSEstYjUxPhsbUZK6ftJC+OXzUGOTRC3N6cSiivInypsbyJjI9tZjlVtoXmV744Q8dOkQtW7aknByxTN76Aum5Nbf1fYL0DhwWGV7sMhWQHkgvtqiHzemRSmYsLChvug5IWZvpqSIG0lNFzFkepIfv6dmvysWcXizPGSNKw5xeLKnm5gQov2kefad7O3r4pkudB7EHEtwkxK1PQOSrTE/WZiA9WaTs5Z752weGwDeHquk/m3dTTW0dMj07yFDeRHlTZ3kz8diyBrTPOe1EkJ43Ic9oBaQnCSb3GwmHvodefI8++PTLBARQ3rR0CZAeSA+kJxkx5cQ44lzik4D05GzTKI/niZJeLNGB9EB6iQhgy4KeszcTVm8i05OMxqmJgfQk8eN+I9Gt7+3Vm2hB6Ub6an94I3oYCJAeSA+kF0KAecsCSE8yGqcmBtKTxE83Ccmm4JKP6ygmSO9PxpcUEi+QHkgPpAfScwwhnghwx1Xx0CA9SdNxG0e3PpBe1PBB440eqzexejNuQ4JvMr2mTXLp+qFn0pUX9ZKMVu7FdMcd7pd7MyRAepL+0dicAaQH0gshEKU6kJ4/SU9Y6ebLzwHpScZqJzGQnhNCDb83FtJ7cemHtHj1JjpWW0+1xhYFlDeR6YVO+Afp+Zf0xgw+g4b1jx6S3L51c8nIpSbWWOKcXa9BepI+0VicQZDevH9siOyrBemJ5Qoob4L0BAI+I73wpxcSzidrmpdL8x++VjJyqYk1ljgH0lOzu6l0JjvDPyq20fote2jzlwdo/6EqqjxcDdKLsTJID5leyB18RnoWcSsvNyeyWb1Hx1bUpmUzDyJcqIlMjnOyICDTk0Qqk51BkN7jr66O62ni8I7+iNWbli6BzekN0ASJgkHjyyixnz6NwhPef9ZAJPiIbJRTxXqpeqLQuimJfXqGTKDho87Jnjln4pUgPckYHhYD6UkClqmkd6S6hha9/xnNWfZR3JssSC9qeGR6yPR8menFfmk94Vt7Ye8F6UkG8BgxkJ4kZplMej9+8G/RN/SGTweB9EB6IQSwejPWE+JTqjRvTgfpSUZnNTGQniReID3zAmg8fKqfIooPuuG2ElcRhjKxxFdda9o2z9xU5U0cA+VNlDc5z94E6UlGZzUxkJ4kXiA9kJ4xB5P4pU8r/4nMY0lseheFZzFtUy/aj5W3IWohb1QlredgE38xr5Ah08uITM/CjVDelAzgKG96B5R6S3J3eEWyYk4P5U2BOTI9kJ7dXkQzH/FRedOM9AJEbQryjQVF4Xexn488ly4o7i4XZEykvIo7sg/ArU88FzI9SetwG8crfSC9sIFBeiC9xkB6Mfm7yWkCvx13IUjPIaaD9Bo56X24ZQ9NfG5FdC4GC1mSLI7Vm1i9GXIKn+3Ti53Ti2R6VqQXeqXp2qEltWzelC45q4erY8u8etmWDKvs+wKR6claJgM3bW79upJ++fSy0FagyG6q6KDG6s3YmRycyJI4Oxg/NMLeEs4VsU8vjiMjgym6PzEo9jEmfiooicQc9ukpkV68xdye1QnSUyAFTtEpU6bQhAkTOFWyv5Gk6nyC9G5/akl4FywyPczpJa1/DTkFFrLEvv74dstCQqbntKYKpGdNDyhvSlJnqiQkqSYilqo+kF7izD/m9DCn15jm9BpWEsceiRMTZEB6ID1VzkmST5WEVB9ARl9NrTjPKHQtXrOZ3i3fGnp3DxAdr6ml7XsOItOLIATSA+mB9JzikEzccWpD5XdufeLZkOlJWojbODL6Pt66l+559l2jB+YhPXGzOOb0zMyNhSxYyBLyi0xayGKf6eXl5ND0O39AXTu0koxwITGZuKPUoIMwtz6QnoL1uI0jo8+c9GIHLkgvamJkesj0sifTE37/7F3DQXomMR6ZniTxyZCQZFNSYjL6/vjGB7R0zRZkegmI4hiy5MxNZrUuPiLbeDI9MSRu/9F5JD42e+53ukjFHGR6Ys2tTy+s3gwZ5toH5tOx47UgPZBeAwLxmT2OIUumemtib1zlzfCQuPKiXiQWtcheMi/bsm3JyHHrQ3lTxioNMtzGsdI34dl36ZOte5OeHHN6sYVMs313KG+ivJlF5c0Gdj+hVXPq1LbAGBw/6F9EQ/qdahv1/BLnFEKzsijKm5KQpdsZlq7ZTH9f+wVt33OIqo7VgPSU992B9EB6WUJ6Fpv4fnLZmXTJ2T2oS3vrxS3pjnOS4TglMZCeJHzpdobrJy2gA4erE07Vj81uzD6ujIUsTgiFilo4kUXggDm9RjCnZxjRemVntw6t6M5RA6jXSe1NI1+645xkOE5JDKQnCV86nOHlVTtpw7Z9xhMePVZLwaDYl2f+jRGUN1HeDC25j/oH5vSycE7PgfTEKGnWNI/ym+RFBswZp3ak009ub5zVmY44V1hYKBmFvRED6UniyOEMYgvC2+9vMp7o22+/pW17jtI334rsLnyJMw/Fh9SSHxqkB9ID6SWOC5BeOIMPVTRiX4Pig0inEwro4RsHUvWhvcRJQhxxNdErfEF6YqGoOEtz3bp1VFtbS5MnT6YBAwZY0lFjXb0Zu+/OfMoKpOe+XIk5PczpZcGcnm2mZ7d2NRB9lw6QsdVh7JAz6LJ+erOwrCW9d955h2bPnk1z5syhXbt20ciRI6m8vLzRkN6eyiM0Z9lHcf2pDwbpZ1f0oYdmr6SDR2uo8nA1HasRJcyQmJHQJW0aAemB9BL9A19OF2Ml8iGRuFGGTC9+vFh8fj1SFg/lg6EARBTICVCT3ByjYN6kSQ4VdW1HJ53Y2vj5uyd3oIvOOkmyTmYtlrWkd//991OvXr1o3LhxBjr9+vWjZcuWUbt27UzR4sj0xKKRtRu/iujftHUXBZoW0NlFJ9KeyqPG3xfk51Hz/Fz6YMNX1CQvx1hoUltbT/sOHqXdlUeMQzDr60PnY9bUif/GkJbwrTDDiS8fU8BYUBG+LMuVKG82QKSauanKm7ie09H2sbeIQFxvRA6riBwfnsVLTpK8zTNHXopAeiC9GFeyzPQSF7VZ+02E9WJjTUO74lzfYDD0pfZIbhgIUmGXdsZLe/XxWmqSl2tkiu3aNKfjtfXUvnUBnXlqBzp2vI4OHz1GLZs3oeb5TUgsqtm5cyddcO4ZtGLdtqQB169XF2pV0DRlYk1swBflzfHjx9Pw4cNpxIgRxvMNGTKEZs6cST179qTS0lIqKyuLe+4mTZpQTU3ysn0v0Tlen0v1MZNnNcEcqg3mUn5OHdXU54ZehoJEOYE64++NQ57rc42/q6Vc8YNBY3mBYOSbdrV1RHXBXIPaggHxBlVPeYE6ap5TS01y6ig/p56aBkKbzXEBASAABHQhIGKV2dU0p46O14cWuRwP5lJNMCRXVZ9nxK3a+hzKD4RibzCQS02phoLBHMrJIaoN5lB1XR7l5tQZvxfk1FJtMGDEwKY5tVQXDFA95VBOIEi5gSA1CYTkRMyrbtAZ+0ziPhEfvb46duxIN954Y1KzgSDjiSwTJ06k4uJiGjNmjPEg/fv3p8WLF1P79ubLajkyvUREuHVy6xP95dbJrQ999Dp8RNvjtiW3PviOHt/xkx1ZSe/tt9+mBQsW0KxZs2jfvn1GpldRUWGJsp+A0uMK/ASEQa3Hktngq/Ad+I5bBPw0PlhJT8x7lZSUUGVlpUF6kyZNokGDBoH0mL8Oz+2A3PoQnN2GJuf7uG3JrQ++4+wDbiT8ZEdW0guDVVVVRc2aNaOAmCCzufwElBtDy9yDPsqgpC7DjSu3vnQE53TozAZc0Uf18S1zhxWuaSE9mQcWMmJxy0UXXSQr7okct05ufenAFX30xDWTGgGujQNX2JHXjr4mPT1QoFUgAASAABDIVgRAetlqefQbCAABIJCFCID0stDo6DIQAAJAIFsRyEjS++ijj+h//ud/Ijbbu3cvPfHEEzR48GBP7Pjhhx/Sr371KxILbs4//3x67LHHPGnXqpHnnnuOnn/+eWrVKvT9qxtuuCFyao1WxUQkDgzo3r073XvvvVpVVVdX080330x79uwxDtm+5557jGPodF6rVq2i++67j/Lz8w1sxfF3zZs316mSNmzYQLfeeiv993//tzYbitXPov2DBw8aC8KE73Tq1Elrv4TOO+64g1q3bk3PPPOMVl2i8S+//JJuuukmEtuIjx07Zhxi0bt3b616xZ5hcR5w06ZNqU2bNvTyyy9r9xfRITE2ROx6+OGH6fvf/77WPgpMN2/eTHl5oY3pTz75pLF3WufFEU//8pe/0J///OdIN3bs2GEccdmyZcukrmUk6cX24vDhw0bwFA4rAoAX1wUXXECvv/46devWzXCKn/3sZ1RQEPoqsY5LBOYzzzyTRo8eraN5yzYXLlxobFTnIPY33niDNm7caJDd119/bSxQ2rQp9KUJXZc4/Ue8UAg7ioDdp08f+ulPf6pLHR0/ftx4YTnxxBPpO9/5Dv385z/Xout3v/sdnXLKKcZLhPBTQe66iUjgJ0hn5cqVNHfuXC39im30wQcfNILxj370IxK+I/b3inN7dV7Dhg2jV199ldq2bWu8uIg48F//9V86VRpt33XXXfT+++8bL57h06p0Kb344otp/vz52l+SYp+fO56uXbuW/vjHP1r6S8aTnsjIhLOKf7y4xBlx4i1anB4j3tp/+MMfGpmQzuv222+nc845xyDWoqIi46Qa3df+/ftp7NixdNtttxmBTHc2G9sf8QYmMvX33ntPdzcj7Yv9odddd51xDJ7u65FHHqEOHTpoI71LLrmE/vrXvxpkLrJmEVTE27TuS6wyFMGEg/Ri+yLe4MVYnDp1qu4uGu2LL8CMGjXKGBteVY+sHlyMAUG0IiMRL4K6SU+8XIvKgDiXUnzhRvfnhbjjqagMCJsJTMUxZGaX70nvqquuinvuLl26GKUOce3evdsI3MuXL1ceDKJEKt6YY6/LLrvMcIRrrrnGKIuJNz7xXzHYRRBL9RLBIjFg3Hnnncah2yIdFyfUiGAmjHb33Xenqs643wo/8QYrdHz11Vckvn7hFelZ9XHgwIHG81x66aXGgHvttdfoe9/7nid9FHYU9oy9XnjhhcjxduLPS5cuNXR6cVn5zi9+8Qujed2kd/rpp9OaNWsipZuTTz6Ztm1LPsjXi77GtpEO0vvggw+MLH3RokWWB9N72c9XXnnFeOEVfir8JkccNqnpOnLkiDE+RSYrfIaD9IYOHWoc9C9erqdNm0bPPvssXXjhhZp6SCSyLl3x1OyhRUVAjI0//OEPln3yPemJenfsJZxQ1NzFJTomyOiWW25RNpo4HUaUo2IvUecW9W6R6YmSkbjEgBNv1qLMkuol3iDFP7GX6EvswBIn1QiC+Pjjj1NVZ9xvhp84Dk7Mb4kMUziIyLzEXMapp56ask6ZPooALYhd9FHMt6V6CTuGv3IRbitc6hYlowMHDhjlv/A8Rqr6rHwn3L5u0hNBat68eSReAI8ePWq8qK1fvz7Vbjnez016IoAJu4kXQau3dseHdiEgsgXxQijw9erl0+wxRGwR8UuUHMXRjCILEyXxE044wcVTq98ifGjFihU0ffp09Zsl7xBTGrriqdkjiMRFVCPE13ysLt+Tnh22YvCLyWYvU3QRQM877zyDDERAFmQXJj5JOyuLiXlD8cYn5mnEB3ZFjf/dd99Vbkf2BjF/8K9//csQ//TTT+mzzz4zXiDE3J6uS7xRCiISZca6ujqDYAXphRfv6NAr3mRFNUAQOuelm/R+/etfG/OTosohMiDxEhOufujsJyfpCf984IEHjCxI9+IjgZkY96K0KPAUL6LCXz///HPPKiBmdhHzseK7ouISekUcE5WlHj16aDGjGHfiJVAc/5ibm2tkemJNhPjkm66LM56KzPnss892XCuQ0aTXuXNnoywoPkHk5SUmegURiRVc4gsQL774opfNJ7UlSm/CGU877TTaunWrEcD69u2rVWe48SVLlnha3rR6aFFGFQt1xCIPsTJPzJWKAa7zEvMkghzEABfXtddea8zT6LpEtiWyZ5HJCp/s2rWrsQBD+JGXl1gIJL5UIsrvYlWlePHTPe8sMvNvvvnGCNKivCoWmoRL1l72LdzW5ZdfTtu3b4+UqMXYEHNROq+nnnrKmH4QWArdYl5IvIhyXGKBF0d589FHH6W33nqLROwUhCeIV/iRzosrnoqXaJEpO60VyGjS02koUcISS6U53jJFP0RJ5dChQ54HSJ0YuWlbDDSBqVelRjfP0FjuEaVNnauKGwtOKv0Q2ZDIGMTWjMZ6iW+UigysRYsWbF3kjqd2HQPpsZkdioAAEAACQCDdCID00m0B6AcCQAAIAAE2BEB6bFBDERAAAkAACKQbAZBeui0A/UAACAABIMCGAEiPDWooAgJAAAgAgXQjANJLtwWgHwgAASAABNgQAOmxQQ1FQCB1BMRpE2LDvdgnJ07yEWdvik3c4mABsQ8RFxAAAvYIgPTgIUAggxAoKyszjsUTx3OJz0KJq4Z7GQAAAVBJREFUg7vFpm1xHijXRuoMgguPCgSSEADpwSmAQIYhII6pE4chv/TSS8ZhvuKw8NjvS2ZYd/C4QIAVAZAeK9xQBgRSR0AcIi4+RSXOTBXnxIqzVHV+DSD1J0YLQMA/CID0/GMLPAkQkEJAHCF17rnnGiVNcei6OGswEAhI3QshIJDtCID0st0D0P+MQ0Ac1P3444/T008/bXy25U9/+pOrz2tlXMfxwEDAAwRAeh6AiCaAABcCFRUV1L9/f+Ojo7/5zW/ohhtuMD6/I74sLr7/hgsIAAF7BEB68BAgkCEIiA/0ijk88UUO8UVq8aUK8bmf3r17G5/5EZ+JwQUEgABIDz4ABIAAEAACQMBAAJkeHAEIAAEgAASyBgGQXtaYGh0FAkAACAABkB58AAgAASAABLIGAZBe1pgaHQUCQAAIAAGQHnwACAABIAAEsgaB/w8S3c5wqSYezwAAAABJRU5ErkJggg==\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n</body>\n\n\n\n\n\n\n\n</html>\n"
  },
  {
    "path": "docs/docs/notebooks/Introduction.html",
    "content": "<!DOCTYPE html>\n<html>\n<head><meta charset=\"utf-8\" />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n<title>Introduction</title><script src=\"https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js\"></script>\n\n\n\n\n<style type=\"text/css\">\n    pre { line-height: 125%; }\ntd.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\nspan.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\ntd.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\nspan.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.highlight .hll { background-color: var(--jp-cell-editor-active-background) }\n.highlight { background: var(--jp-cell-editor-background); color: var(--jp-mirror-editor-variable-color) }\n.highlight .c { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment */\n.highlight .err { color: var(--jp-mirror-editor-error-color) } /* Error */\n.highlight .k { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword */\n.highlight .o { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator */\n.highlight .p { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation */\n.highlight .ch { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Hashbang */\n.highlight .cm { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Multiline */\n.highlight .cp { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Preproc */\n.highlight .cpf { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.PreprocFile */\n.highlight .c1 { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Single */\n.highlight .cs { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Special */\n.highlight .kc { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Constant */\n.highlight .kd { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Declaration */\n.highlight .kn { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Namespace */\n.highlight .kp { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Pseudo */\n.highlight .kr { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Reserved */\n.highlight .kt { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Type */\n.highlight .m { color: var(--jp-mirror-editor-number-color) } /* Literal.Number */\n.highlight .s { color: var(--jp-mirror-editor-string-color) } /* Literal.String */\n.highlight .ow { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator.Word */\n.highlight .w { color: var(--jp-mirror-editor-variable-color) } /* Text.Whitespace */\n.highlight .mb { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Bin */\n.highlight .mf { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Float */\n.highlight .mh { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Hex */\n.highlight .mi { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer */\n.highlight .mo { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Oct */\n.highlight .sa { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Affix */\n.highlight .sb { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Backtick */\n.highlight .sc { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Char */\n.highlight .dl { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Delimiter */\n.highlight .sd { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Doc */\n.highlight .s2 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Double */\n.highlight .se { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Escape */\n.highlight .sh { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Heredoc */\n.highlight .si { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Interpol */\n.highlight .sx { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Other */\n.highlight .sr { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Regex */\n.highlight .s1 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Single */\n.highlight .ss { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Symbol */\n.highlight .il { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer.Long */\n  </style>\n\n\n\n<style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\n * Mozilla scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n[data-jp-theme-scrollbars='true'] {\n  scrollbar-color: rgb(var(--jp-scrollbar-thumb-color))\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar. These selectors\n * will match lower in the tree, and so will override the above */\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n  scrollbar-width: thin;\n}\n\n/*\n * Webkit scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-corner {\n  background: var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-thumb {\n  background: rgb(var(--jp-scrollbar-thumb-color));\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-right: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-bottom: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar */\n\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-corner,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-corner {\n  background-color: transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-thumb,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid transparent;\n  border-right: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid transparent;\n  border-bottom: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny::-webkit-scrollbar,\n.jp-scrollbar-tiny::-webkit-scrollbar-corner {\n  background-color: transparent;\n  height: 4px;\n  width: 4px;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:horizontal {\n  border-left: 0px solid transparent;\n  border-right: 0px solid transparent;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:vertical {\n  border-top: 0px solid transparent;\n  border-bottom: 0px solid transparent;\n}\n\n/*\n * Phosphor\n */\n\n.lm-ScrollBar[data-orientation='horizontal'] {\n  min-height: 16px;\n  max-height: 16px;\n  min-width: 45px;\n  border-top: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] {\n  min-width: 16px;\n  max-width: 16px;\n  min-height: 45px;\n  border-left: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar-button {\n  background-color: #f0f0f0;\n  background-position: center center;\n  min-height: 15px;\n  max-height: 15px;\n  min-width: 15px;\n  max-width: 15px;\n}\n\n.lm-ScrollBar-button:hover {\n  background-color: #dadada;\n}\n\n.lm-ScrollBar-button.lm-mod-active {\n  background-color: #cdcdcd;\n}\n\n.lm-ScrollBar-track {\n  background: #f0f0f0;\n}\n\n.lm-ScrollBar-thumb {\n  background: #cdcdcd;\n}\n\n.lm-ScrollBar-thumb:hover {\n  background: #bababa;\n}\n\n.lm-ScrollBar-thumb.lm-mod-active {\n  background: #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal'] .lm-ScrollBar-thumb {\n  height: 100%;\n  min-width: 15px;\n  border-left: 1px solid #a0a0a0;\n  border-right: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] .lm-ScrollBar-thumb {\n  width: 100%;\n  min-height: 15px;\n  border-top: 1px solid #a0a0a0;\n  border-bottom: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-left);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-right);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-up);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-down);\n  background-size: 17px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Widget, /* </DEPRECATED> */\n.lm-Widget {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  cursor: default;\n}\n\n\n/* <DEPRECATED> */ .p-Widget.p-mod-hidden, /* </DEPRECATED> */\n.lm-Widget.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-CommandPalette, /* </DEPRECATED> */\n.lm-CommandPalette {\n  display: flex;\n  flex-direction: column;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-search, /* </DEPRECATED> */\n.lm-CommandPalette-search {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-content, /* </DEPRECATED> */\n.lm-CommandPalette-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  min-height: 0;\n  overflow: auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-header, /* </DEPRECATED> */\n.lm-CommandPalette-header {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-item, /* </DEPRECATED> */\n.lm-CommandPalette-item {\n  display: flex;\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemIcon, /* </DEPRECATED> */\n.lm-CommandPalette-itemIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemContent, /* </DEPRECATED> */\n.lm-CommandPalette-itemContent {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemShortcut, /* </DEPRECATED> */\n.lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemLabel, /* </DEPRECATED> */\n.lm-CommandPalette-itemLabel {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.lm-close-icon {\n\tborder:1px solid transparent;\n  background-color: transparent;\n  position: absolute;\n\tz-index:1;\n\tright:3%;\n\ttop: 0;\n\tbottom: 0;\n\tmargin: auto;\n\tpadding: 7px 0;\n\tdisplay: none;\n\tvertical-align: middle;\n  outline: 0;\n  cursor: pointer;\n}\n.lm-close-icon:after {\n\tcontent: \"X\";\n\tdisplay: block;\n\twidth: 15px;\n\theight: 15px;\n\ttext-align: center;\n\tcolor:#000;\n\tfont-weight: normal;\n\tfont-size: 12px;\n\tcursor: pointer;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-DockPanel, /* </DEPRECATED> */\n.lm-DockPanel {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-widget, /* </DEPRECATED> */\n.lm-DockPanel-widget {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-tabBar, /* </DEPRECATED> */\n.lm-DockPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle, /* </DEPRECATED> */\n.lm-DockPanel-handle {\n  z-index: 2;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle:after, /* </DEPRECATED> */\n.lm-DockPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal'] {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical'] {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal']:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical']:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay, /* </DEPRECATED> */\n.lm-DockPanel-overlay {\n  z-index: 3;\n  box-sizing: border-box;\n  pointer-events: none;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-overlay.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Menu, /* </DEPRECATED> */\n.lm-Menu {\n  z-index: 10000;\n  position: absolute;\n  white-space: nowrap;\n  overflow-x: hidden;\n  overflow-y: auto;\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-content, /* </DEPRECATED> */\n.lm-Menu-content {\n  margin: 0;\n  padding: 0;\n  display: table;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-item, /* </DEPRECATED> */\n.lm-Menu-item {\n  display: table-row;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-item.p-mod-hidden,\n.p-Menu-item.p-mod-collapsed,\n/* </DEPRECATED> */\n.lm-Menu-item.lm-mod-hidden,\n.lm-Menu-item.lm-mod-collapsed {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-itemIcon,\n.p-Menu-itemSubmenuIcon,\n/* </DEPRECATED> */\n.lm-Menu-itemIcon,\n.lm-Menu-itemSubmenuIcon {\n  display: table-cell;\n  text-align: center;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemLabel, /* </DEPRECATED> */\n.lm-Menu-itemLabel {\n  display: table-cell;\n  text-align: left;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemShortcut, /* </DEPRECATED> */\n.lm-Menu-itemShortcut {\n  display: table-cell;\n  text-align: right;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-MenuBar, /* </DEPRECATED> */\n.lm-MenuBar {\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-MenuBar-content, /* </DEPRECATED> */\n.lm-MenuBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex-direction: row;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p--MenuBar-item, /* </DEPRECATED> */\n.lm-MenuBar-item {\n  box-sizing: border-box;\n}\n\n\n/* <DEPRECATED> */\n.p-MenuBar-itemIcon,\n.p-MenuBar-itemLabel,\n/* </DEPRECATED> */\n.lm-MenuBar-itemIcon,\n.lm-MenuBar-itemLabel {\n  display: inline-block;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-ScrollBar, /* </DEPRECATED> */\n.lm-ScrollBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='horizontal'] {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='vertical'] {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-button, /* </DEPRECATED> */\n.lm-ScrollBar-button {\n  box-sizing: border-box;\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-track, /* </DEPRECATED> */\n.lm-ScrollBar-track {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  flex: 1 1 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-thumb, /* </DEPRECATED> */\n.lm-ScrollBar-thumb {\n  box-sizing: border-box;\n  position: absolute;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-SplitPanel-child, /* </DEPRECATED> */\n.lm-SplitPanel-child {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle, /* </DEPRECATED> */\n.lm-SplitPanel-handle {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-SplitPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle:after, /* </DEPRECATED> */\n.lm-SplitPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabBar, /* </DEPRECATED> */\n.lm-TabBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='horizontal'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] {\n  flex-direction: row;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='vertical'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] {\n  flex-direction: column;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-content, /* </DEPRECATED> */\n.lm-TabBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex: 1 1 auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='horizontal'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] > .lm-TabBar-content {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='vertical'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] > .lm-TabBar-content {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar-tab {\n  display: flex;\n  flex-direction: row;\n  box-sizing: border-box;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar-tabIcon,\n.p-TabBar-tabCloseIcon,\n/* </DEPRECATED> */\n.lm-TabBar-tabIcon,\n.lm-TabBar-tabCloseIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tabLabel, /* </DEPRECATED> */\n.lm-TabBar-tabLabel {\n  flex: 1 1 auto;\n  overflow: hidden;\n  white-space: nowrap;\n}\n\n\n.lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab.p-mod-hidden, /* </DEPRECATED> */\n.lm-TabBar-tab.lm-mod-hidden {\n  display: none !important;\n}\n\n\n.lm-TabBar-addButton.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar.p-mod-dragging .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab {\n  position: relative;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='horizontal'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='horizontal'] .lm-TabBar-tab {\n  left: 0;\n  transition: left 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='vertical'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='vertical'] .lm-TabBar-tab {\n  top: 0;\n  transition: top 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging .p-TabBar-tab.p-mod-dragging,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab.lm-mod-dragging {\n  transition: none;\n}\n\n.lm-TabBar-tabLabel .lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n  background: inherit;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabPanel-tabBar, /* </DEPRECATED> */\n.lm-TabPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-TabPanel-stackedPanel, /* </DEPRECATED> */\n.lm-TabPanel-stackedPanel {\n  z-index: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n@charset \"UTF-8\";\nhtml{\n  -webkit-box-sizing:border-box;\n          box-sizing:border-box; }\n\n*,\n*::before,\n*::after{\n  -webkit-box-sizing:inherit;\n          box-sizing:inherit; }\n\nbody{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none;\n  color:#182026;\n  font-family:-apple-system, \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Open Sans\", \"Helvetica Neue\", \"Icons16\", sans-serif; }\n\np{\n  margin-bottom:10px;\n  margin-top:0; }\n\nsmall{\n  font-size:12px; }\n\nstrong{\n  font-weight:600; }\n\n::-moz-selection{\n  background:rgba(125, 188, 255, 0.6); }\n\n::selection{\n  background:rgba(125, 188, 255, 0.6); }\n.bp3-heading{\n  color:#182026;\n  font-weight:600;\n  margin:0 0 10px;\n  padding:0; }\n  .bp3-dark .bp3-heading{\n    color:#f5f8fa; }\n\nh1.bp3-heading, .bp3-running-text h1{\n  font-size:36px;\n  line-height:40px; }\n\nh2.bp3-heading, .bp3-running-text h2{\n  font-size:28px;\n  line-height:32px; }\n\nh3.bp3-heading, .bp3-running-text h3{\n  font-size:22px;\n  line-height:25px; }\n\nh4.bp3-heading, .bp3-running-text h4{\n  font-size:18px;\n  line-height:21px; }\n\nh5.bp3-heading, .bp3-running-text h5{\n  font-size:16px;\n  line-height:19px; }\n\nh6.bp3-heading, .bp3-running-text h6{\n  font-size:14px;\n  line-height:16px; }\n.bp3-ui-text{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none; }\n\n.bp3-monospace-text{\n  font-family:monospace;\n  text-transform:none; }\n\n.bp3-text-muted{\n  color:#5c7080; }\n  .bp3-dark .bp3-text-muted{\n    color:#a7b6c2; }\n\n.bp3-text-disabled{\n  color:rgba(92, 112, 128, 0.6); }\n  .bp3-dark .bp3-text-disabled{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-text-overflow-ellipsis{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal; }\n.bp3-running-text{\n  font-size:14px;\n  line-height:1.5; }\n  .bp3-running-text h1{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h1{\n      color:#f5f8fa; }\n  .bp3-running-text h2{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h2{\n      color:#f5f8fa; }\n  .bp3-running-text h3{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h3{\n      color:#f5f8fa; }\n  .bp3-running-text h4{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h4{\n      color:#f5f8fa; }\n  .bp3-running-text h5{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h5{\n      color:#f5f8fa; }\n  .bp3-running-text h6{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h6{\n      color:#f5f8fa; }\n  .bp3-running-text hr{\n    border:none;\n    border-bottom:1px solid rgba(16, 22, 26, 0.15);\n    margin:20px 0; }\n    .bp3-dark .bp3-running-text hr{\n      border-color:rgba(255, 255, 255, 0.15); }\n  .bp3-running-text p{\n    margin:0 0 10px;\n    padding:0; }\n\n.bp3-text-large{\n  font-size:16px; }\n\n.bp3-text-small{\n  font-size:12px; }\na{\n  color:#106ba3;\n  text-decoration:none; }\n  a:hover{\n    color:#106ba3;\n    cursor:pointer;\n    text-decoration:underline; }\n  a .bp3-icon, a .bp3-icon-standard, a .bp3-icon-large{\n    color:inherit; }\n  a code,\n  .bp3-dark a code{\n    color:inherit; }\n  .bp3-dark a,\n  .bp3-dark a:hover{\n    color:#48aff0; }\n    .bp3-dark a .bp3-icon, .bp3-dark a .bp3-icon-standard, .bp3-dark a .bp3-icon-large,\n    .bp3-dark a:hover .bp3-icon,\n    .bp3-dark a:hover .bp3-icon-standard,\n    .bp3-dark a:hover .bp3-icon-large{\n      color:inherit; }\n.bp3-running-text code, .bp3-code{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  font-size:smaller;\n  padding:2px 5px; }\n  .bp3-dark .bp3-running-text code, .bp3-running-text .bp3-dark code, .bp3-dark .bp3-code{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n  .bp3-running-text a > code, a > .bp3-code{\n    color:#137cbd; }\n    .bp3-dark .bp3-running-text a > code, .bp3-running-text .bp3-dark a > code, .bp3-dark a > .bp3-code{\n      color:inherit; }\n\n.bp3-running-text pre, .bp3-code-block{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n  color:#182026;\n  display:block;\n  font-size:13px;\n  line-height:1.4;\n  margin:10px 0;\n  padding:13px 15px 12px;\n  word-break:break-all;\n  word-wrap:break-word; }\n  .bp3-dark .bp3-running-text pre, .bp3-running-text .bp3-dark pre, .bp3-dark .bp3-code-block{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n  .bp3-running-text pre > code, .bp3-code-block > code{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit;\n    font-size:inherit;\n    padding:0; }\n\n.bp3-running-text kbd, .bp3-key{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-family:inherit;\n  font-size:12px;\n  height:24px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  line-height:24px;\n  min-width:24px;\n  padding:3px 6px;\n  vertical-align:middle; }\n  .bp3-running-text kbd .bp3-icon, .bp3-key .bp3-icon, .bp3-running-text kbd .bp3-icon-standard, .bp3-key .bp3-icon-standard, .bp3-running-text kbd .bp3-icon-large, .bp3-key .bp3-icon-large{\n    margin-right:5px; }\n  .bp3-dark .bp3-running-text kbd, .bp3-running-text .bp3-dark kbd, .bp3-dark .bp3-key{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n.bp3-running-text blockquote, .bp3-blockquote{\n  border-left:solid 4px rgba(167, 182, 194, 0.5);\n  margin:0 0 10px;\n  padding:0 20px; }\n  .bp3-dark .bp3-running-text blockquote, .bp3-running-text .bp3-dark blockquote, .bp3-dark .bp3-blockquote{\n    border-color:rgba(115, 134, 148, 0.5); }\n.bp3-running-text ul,\n.bp3-running-text ol, .bp3-list{\n  margin:10px 0;\n  padding-left:30px; }\n  .bp3-running-text ul li:not(:last-child), .bp3-running-text ol li:not(:last-child), .bp3-list li:not(:last-child){\n    margin-bottom:5px; }\n  .bp3-running-text ul ol, .bp3-running-text ol ol, .bp3-list ol,\n  .bp3-running-text ul ul,\n  .bp3-running-text ol ul,\n  .bp3-list ul{\n    margin-top:5px; }\n\n.bp3-list-unstyled{\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-list-unstyled li{\n    padding:0; }\n.bp3-rtl{\n  text-align:right; }\n\n.bp3-dark{\n  color:#f5f8fa; }\n\n:focus{\n  outline:rgba(19, 124, 189, 0.6) auto 2px;\n  outline-offset:2px;\n  -moz-outline-radius:6px; }\n\n.bp3-focus-disabled :focus{\n  outline:none !important; }\n  .bp3-focus-disabled :focus ~ .bp3-control-indicator{\n    outline:none !important; }\n\n.bp3-alert{\n  max-width:400px;\n  padding:20px; }\n\n.bp3-alert-body{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-alert-body .bp3-icon{\n    font-size:40px;\n    margin-right:20px;\n    margin-top:0; }\n\n.bp3-alert-contents{\n  word-break:break-word; }\n\n.bp3-alert-footer{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:reverse;\n      -ms-flex-direction:row-reverse;\n          flex-direction:row-reverse;\n  margin-top:10px; }\n  .bp3-alert-footer .bp3-button{\n    margin-left:10px; }\n.bp3-breadcrumbs{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  cursor:default;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:wrap;\n      flex-wrap:wrap;\n  height:30px;\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-breadcrumbs > li{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n    .bp3-breadcrumbs > li::after{\n      background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z' fill='%235C7080'/%3e%3c/svg%3e\");\n      content:\"\";\n      display:block;\n      height:16px;\n      margin:0 5px;\n      width:16px; }\n    .bp3-breadcrumbs > li:last-of-type::after{\n      display:none; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumb-current,\n.bp3-breadcrumbs-collapsed{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-size:16px; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumbs-collapsed{\n  color:#5c7080; }\n\n.bp3-breadcrumb:hover{\n  text-decoration:none; }\n\n.bp3-breadcrumb.bp3-disabled{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-breadcrumb .bp3-icon{\n  margin-right:5px; }\n\n.bp3-breadcrumb-current{\n  color:inherit;\n  font-weight:600; }\n  .bp3-breadcrumb-current .bp3-input{\n    font-size:inherit;\n    font-weight:inherit;\n    vertical-align:baseline; }\n\n.bp3-breadcrumbs-collapsed{\n  background:#ced9e0;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  margin-right:2px;\n  padding:1px 5px;\n  vertical-align:text-bottom; }\n  .bp3-breadcrumbs-collapsed::before{\n    background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cg fill='%235C7080'%3e%3ccircle cx='2' cy='8.03' r='2'/%3e%3ccircle cx='14' cy='8.03' r='2'/%3e%3ccircle cx='8' cy='8.03' r='2'/%3e%3c/g%3e%3c/svg%3e\") center no-repeat;\n    content:\"\";\n    display:block;\n    height:16px;\n    width:16px; }\n  .bp3-breadcrumbs-collapsed:hover{\n    background:#bfccd6;\n    color:#182026;\n    text-decoration:none; }\n\n.bp3-dark .bp3-breadcrumb,\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumbs > li::after{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumb.bp3-disabled{\n  color:rgba(167, 182, 194, 0.6); }\n\n.bp3-dark .bp3-breadcrumb-current{\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-breadcrumbs-collapsed:hover{\n    background:rgba(16, 22, 26, 0.6);\n    color:#f5f8fa; }\n.bp3-button{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  min-height:30px;\n  min-width:30px; }\n  .bp3-button > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-button > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-button::before,\n  .bp3-button > *{\n    margin-right:7px; }\n  .bp3-button:empty::before,\n  .bp3-button > :last-child{\n    margin-right:0; }\n  .bp3-button:empty{\n    padding:0 !important; }\n  .bp3-button:disabled, .bp3-button.bp3-disabled{\n    cursor:not-allowed; }\n  .bp3-button.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button.bp3-align-right,\n  .bp3-align-right .bp3-button{\n    text-align:right; }\n  .bp3-button.bp3-align-left,\n  .bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026; }\n    .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active:hover, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-button.bp3-intent-primary{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover, .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover{\n      background-color:#106ba3;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      background-color:#0e5a8a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:disabled, .bp3-button.bp3-intent-primary.bp3-disabled{\n      background-color:rgba(19, 124, 189, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-success{\n    background-color:#0f9960;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover, .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover{\n      background-color:#0d8050;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      background-color:#0a6640;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:disabled, .bp3-button.bp3-intent-success.bp3-disabled{\n      background-color:rgba(15, 153, 96, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-warning{\n    background-color:#d9822b;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover, .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover{\n      background-color:#bf7326;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      background-color:#a66321;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:disabled, .bp3-button.bp3-intent-warning.bp3-disabled{\n      background-color:rgba(217, 130, 43, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-danger{\n    background-color:#db3737;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover, .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover{\n      background-color:#c23030;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      background-color:#a82a2a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:disabled, .bp3-button.bp3-intent-danger.bp3-disabled{\n      background-color:rgba(219, 55, 55, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n    stroke:#ffffff; }\n  .bp3-button.bp3-large,\n  .bp3-large .bp3-button{\n    min-height:40px;\n    min-width:40px;\n    font-size:16px;\n    padding:5px 15px; }\n    .bp3-button.bp3-large::before,\n    .bp3-button.bp3-large > *,\n    .bp3-large .bp3-button::before,\n    .bp3-large .bp3-button > *{\n      margin-right:10px; }\n    .bp3-button.bp3-large:empty::before,\n    .bp3-button.bp3-large > :last-child,\n    .bp3-large .bp3-button:empty::before,\n    .bp3-large .bp3-button > :last-child{\n      margin-right:0; }\n  .bp3-button.bp3-small,\n  .bp3-small .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-button.bp3-loading{\n    position:relative; }\n    .bp3-button.bp3-loading[class*=\"bp3-icon-\"]::before{\n      visibility:hidden; }\n    .bp3-button.bp3-loading .bp3-button-spinner{\n      margin:0;\n      position:absolute; }\n    .bp3-button.bp3-loading > :not(.bp3-button-spinner){\n      visibility:hidden; }\n  .bp3-button[class*=\"bp3-icon-\"]::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    color:#5c7080; }\n  .bp3-button .bp3-icon, .bp3-button .bp3-icon-standard, .bp3-button .bp3-icon-large{\n    color:#5c7080; }\n    .bp3-button .bp3-icon.bp3-align-right, .bp3-button .bp3-icon-standard.bp3-align-right, .bp3-button .bp3-icon-large.bp3-align-right{\n      margin-left:7px; }\n  .bp3-button .bp3-icon:first-child:last-child,\n  .bp3-button .bp3-spinner + .bp3-icon:last-child{\n    margin:0 -7px; }\n  .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"])[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n      color:#a7b6c2; }\n  .bp3-dark .bp3-button[class*=\"bp3-intent-\"]{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:hover{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.3); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n      stroke:#8a9ba8; }\n  .bp3-button:disabled::before,\n  .bp3-button:disabled .bp3-icon, .bp3-button:disabled .bp3-icon-standard, .bp3-button:disabled .bp3-icon-large, .bp3-button.bp3-disabled::before,\n  .bp3-button.bp3-disabled .bp3-icon, .bp3-button.bp3-disabled .bp3-icon-standard, .bp3-button.bp3-disabled .bp3-icon-large, .bp3-button[class*=\"bp3-intent-\"]::before,\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-icon, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-standard, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-large{\n    color:inherit !important; }\n  .bp3-button.bp3-minimal{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button.bp3-minimal:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-minimal:active, .bp3-button.bp3-minimal.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-minimal:disabled, .bp3-button.bp3-minimal:disabled:hover, .bp3-button.bp3-minimal.bp3-disabled, .bp3-button.bp3-minimal.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-minimal{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-minimal:hover, .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-minimal:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-minimal:disabled, .bp3-dark .bp3-button.bp3-minimal:disabled:hover, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover, .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover, .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover, .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover, .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button.bp3-outlined{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    border:1px solid rgba(24, 32, 38, 0.2);\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box; }\n    .bp3-button.bp3-outlined:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-outlined:active, .bp3-button.bp3-outlined.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-outlined:hover, .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-outlined:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover, .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover, .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover, .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover, .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      border-color:rgba(92, 112, 128, 0.1); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      border-color:rgba(255, 255, 255, 0.4); }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        border-color:rgba(255, 255, 255, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      border-color:rgba(16, 107, 163, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        border-color:rgba(16, 107, 163, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        border-color:rgba(72, 175, 240, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          border-color:rgba(72, 175, 240, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      border-color:rgba(13, 128, 80, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        border-color:rgba(13, 128, 80, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        border-color:rgba(61, 204, 145, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          border-color:rgba(61, 204, 145, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      border-color:rgba(191, 115, 38, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        border-color:rgba(191, 115, 38, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        border-color:rgba(255, 179, 102, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          border-color:rgba(255, 179, 102, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      border-color:rgba(194, 48, 48, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        border-color:rgba(194, 48, 48, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        border-color:rgba(255, 115, 115, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          border-color:rgba(255, 115, 115, 0.2); }\n\na.bp3-button{\n  text-align:center;\n  text-decoration:none;\n  -webkit-transition:none;\n  transition:none; }\n  a.bp3-button, a.bp3-button:hover, a.bp3-button:active{\n    color:#182026; }\n  a.bp3-button.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6); }\n\n.bp3-button-text{\n  -webkit-box-flex:0;\n      -ms-flex:0 1 auto;\n          flex:0 1 auto; }\n\n.bp3-button.bp3-align-left .bp3-button-text, .bp3-button.bp3-align-right .bp3-button-text,\n.bp3-button-group.bp3-align-left .bp3-button-text,\n.bp3-button-group.bp3-align-right .bp3-button-text{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto; }\n.bp3-button-group{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex; }\n  .bp3-button-group .bp3-button{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    position:relative;\n    z-index:4; }\n    .bp3-button-group .bp3-button:focus{\n      z-index:5; }\n    .bp3-button-group .bp3-button:hover{\n      z-index:6; }\n    .bp3-button-group .bp3-button:active, .bp3-button-group .bp3-button.bp3-active{\n      z-index:7; }\n    .bp3-button-group .bp3-button:disabled, .bp3-button-group .bp3-button.bp3-disabled{\n      z-index:3; }\n    .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]{\n      z-index:9; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:focus{\n        z-index:10; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:hover{\n        z-index:11; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n        z-index:12; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n        z-index:8; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:first-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:first-child){\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    border-bottom-right-radius:0;\n    border-top-right-radius:0;\n    margin-right:-1px; }\n  .bp3-button-group.bp3-minimal .bp3-button{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button-group.bp3-minimal .bp3-button{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button-group .bp3-popover-wrapper,\n  .bp3-button-group .bp3-popover-target{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button-group .bp3-button.bp3-fill,\n  .bp3-button-group.bp3-fill .bp3-button:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-vertical{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column;\n    vertical-align:top; }\n    .bp3-button-group.bp3-vertical.bp3-fill{\n      height:100%;\n      width:unset; }\n    .bp3-button-group.bp3-vertical .bp3-button{\n      margin-right:0 !important;\n      width:100%; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:first-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:first-child{\n      border-radius:3px 3px 0 0; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:last-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:last-child{\n      border-radius:0 0 3px 3px; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:not(:last-child){\n      margin-bottom:-1px; }\n  .bp3-button-group.bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    margin-right:1px; }\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-button:not(:last-child){\n    margin-bottom:1px; }\n.bp3-callout{\n  font-size:14px;\n  line-height:1.5;\n  background-color:rgba(138, 155, 168, 0.15);\n  border-radius:3px;\n  padding:10px 12px 9px;\n  position:relative;\n  width:100%; }\n  .bp3-callout[class*=\"bp3-icon-\"]{\n    padding-left:40px; }\n    .bp3-callout[class*=\"bp3-icon-\"]::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout.bp3-callout-icon{\n    padding-left:40px; }\n    .bp3-callout.bp3-callout-icon > .bp3-icon:first-child{\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout .bp3-heading{\n    line-height:20px;\n    margin-bottom:5px;\n    margin-top:0; }\n    .bp3-callout .bp3-heading:last-child{\n      margin-bottom:0; }\n  .bp3-dark .bp3-callout{\n    background-color:rgba(138, 155, 168, 0.2); }\n    .bp3-dark .bp3-callout[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n  .bp3-callout.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15); }\n    .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-primary .bp3-heading{\n      color:#106ba3; }\n    .bp3-dark .bp3-callout.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-primary .bp3-heading{\n        color:#48aff0; }\n  .bp3-callout.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15); }\n    .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-success .bp3-heading{\n      color:#0d8050; }\n    .bp3-dark .bp3-callout.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-success .bp3-heading{\n        color:#3dcc91; }\n  .bp3-callout.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15); }\n    .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-warning .bp3-heading{\n      color:#bf7326; }\n    .bp3-dark .bp3-callout.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-warning .bp3-heading{\n        color:#ffb366; }\n  .bp3-callout.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15); }\n    .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-danger .bp3-heading{\n      color:#c23030; }\n    .bp3-dark .bp3-callout.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-danger .bp3-heading{\n        color:#ff7373; }\n  .bp3-running-text .bp3-callout{\n    margin:20px 0; }\n.bp3-card{\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n  padding:20px;\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-card.bp3-dark,\n  .bp3-dark .bp3-card{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-0{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n  .bp3-elevation-0.bp3-dark,\n  .bp3-dark .bp3-elevation-0{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-1{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-1.bp3-dark,\n  .bp3-dark .bp3-elevation-1{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-2{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-2.bp3-dark,\n  .bp3-dark .bp3-elevation-2{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-3{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-3.bp3-dark,\n  .bp3-dark .bp3-elevation-3{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-4{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-4.bp3-dark,\n  .bp3-dark .bp3-elevation-4{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:hover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  cursor:pointer; }\n  .bp3-card.bp3-interactive:hover.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:hover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:active{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  opacity:0.9;\n  -webkit-transition-duration:0;\n          transition-duration:0; }\n  .bp3-card.bp3-interactive:active.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:active{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-collapse{\n  height:0;\n  overflow-y:hidden;\n  -webkit-transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-collapse .bp3-collapse-body{\n    -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-collapse .bp3-collapse-body[aria-hidden=\"true\"]{\n      display:none; }\n\n.bp3-context-menu .bp3-popover-target{\n  display:block; }\n\n.bp3-context-menu-popover-target{\n  position:fixed; }\n\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-dialog-container{\n  opacity:1;\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  min-height:100%;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  width:100%; }\n  .bp3-dialog-container.bp3-overlay-enter > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5); }\n  .bp3-dialog-container.bp3-overlay-enter-active > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear-active > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-dialog-container.bp3-overlay-exit > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-dialog-container.bp3-overlay-exit-active > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n\n.bp3-dialog{\n  background:#ebf1f5;\n  border-radius:6px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:30px 0;\n  padding-bottom:20px;\n  pointer-events:all;\n  -webkit-user-select:text;\n     -moz-user-select:text;\n      -ms-user-select:text;\n          user-select:text;\n  width:500px; }\n  .bp3-dialog:focus{\n    outline:0; }\n  .bp3-dialog.bp3-dark,\n  .bp3-dark .bp3-dialog{\n    background:#293742;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-dialog-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:6px 6px 0 0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding-left:20px;\n  padding-right:5px;\n  z-index:30; }\n  .bp3-dialog-header .bp3-icon-large,\n  .bp3-dialog-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-dialog-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-dialog-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-dialog-header{\n    background:#30404d;\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-dialog-header .bp3-icon-large,\n    .bp3-dark .bp3-dialog-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-dialog-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  margin:20px; }\n\n.bp3-dialog-footer{\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  margin:0 20px; }\n\n.bp3-dialog-footer-actions{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:end;\n      -ms-flex-pack:end;\n          justify-content:flex-end; }\n  .bp3-dialog-footer-actions .bp3-button{\n    margin-left:10px; }\n.bp3-multistep-dialog-panels{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n\n.bp3-multistep-dialog-left-panel{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column; }\n  .bp3-dark .bp3-multistep-dialog-left-panel{\n    background:#202b33; }\n\n.bp3-multistep-dialog-right-panel{\n  background-color:#f5f8fa;\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  border-radius:0 0 6px 0;\n  -webkit-box-flex:3;\n      -ms-flex:3;\n          flex:3;\n  min-width:0; }\n  .bp3-dark .bp3-multistep-dialog-right-panel{\n    background-color:#293742;\n    border-left:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-multistep-dialog-footer{\n  background-color:#ffffff;\n  border-radius:0 0 6px 0;\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  padding:10px; }\n  .bp3-dark .bp3-multistep-dialog-footer{\n    background:#30404d;\n    border-top:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-dialog-step-container{\n  background-color:#f5f8fa;\n  border-bottom:1px solid rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-dialog-step-container{\n    background:#293742;\n    border-bottom:1px solid rgba(16, 22, 26, 0.4); }\n  .bp3-dialog-step-container.bp3-dialog-step-viewed{\n    background-color:#ffffff; }\n    .bp3-dark .bp3-dialog-step-container.bp3-dialog-step-viewed{\n      background:#30404d; }\n\n.bp3-dialog-step{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#f5f8fa;\n  border-radius:6px;\n  cursor:not-allowed;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:4px;\n  padding:6px 14px; }\n  .bp3-dark .bp3-dialog-step{\n    background:#293742; }\n  .bp3-dialog-step-viewed .bp3-dialog-step{\n    background-color:#ffffff;\n    cursor:pointer; }\n    .bp3-dark .bp3-dialog-step-viewed .bp3-dialog-step{\n      background:#30404d; }\n  .bp3-dialog-step:hover{\n    background-color:#f5f8fa; }\n    .bp3-dark .bp3-dialog-step:hover{\n      background:#293742; }\n\n.bp3-dialog-step-icon{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:rgba(92, 112, 128, 0.6);\n  border-radius:50%;\n  color:#ffffff;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:25px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  width:25px; }\n  .bp3-dark .bp3-dialog-step-icon{\n    background-color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#2b95d6; }\n  .bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#8a9ba8; }\n\n.bp3-dialog-step-title{\n  color:rgba(92, 112, 128, 0.6);\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  padding-left:10px; }\n  .bp3-dark .bp3-dialog-step-title{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-title{\n    color:#2b95d6; }\n  .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n    color:#182026; }\n    .bp3-dark .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n      color:#f5f8fa; }\n.bp3-drawer{\n  background:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0;\n  padding:0; }\n  .bp3-drawer:focus{\n    outline:0; }\n  .bp3-drawer.bp3-position-top{\n    height:50%;\n    left:0;\n    right:0;\n    top:0; }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter, .bp3-drawer.bp3-position-top.bp3-overlay-appear{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter-active, .bp3-drawer.bp3-position-top.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit-active{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-bottom{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter-active, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-left{\n    bottom:0;\n    left:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter, .bp3-drawer.bp3-position-left.bp3-overlay-appear{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter-active, .bp3-drawer.bp3-position-left.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit-active{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-right{\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter, .bp3-drawer.bp3-position-right.bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter-active, .bp3-drawer.bp3-position-right.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right):not(.bp3-vertical){\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right).bp3-vertical{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-dark,\n  .bp3-dark .bp3-drawer{\n    background:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-drawer-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border-radius:0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding:5px;\n  padding-left:20px;\n  position:relative; }\n  .bp3-drawer-header .bp3-icon-large,\n  .bp3-drawer-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-drawer-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-drawer-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-drawer-header{\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-drawer-header .bp3-icon-large,\n    .bp3-dark .bp3-drawer-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-drawer-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  overflow:auto; }\n\n.bp3-drawer-footer{\n  -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  padding:10px 20px;\n  position:relative; }\n  .bp3-dark .bp3-drawer-footer{\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4); }\n.bp3-editable-text{\n  cursor:text;\n  display:inline-block;\n  max-width:100%;\n  position:relative;\n  vertical-align:top;\n  white-space:nowrap; }\n  .bp3-editable-text::before{\n    bottom:-3px;\n    left:-3px;\n    position:absolute;\n    right:-3px;\n    top:-3px;\n    border-radius:3px;\n    content:\"\";\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#137cbd; }\n  .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4); }\n  .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#0f9960; }\n  .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4); }\n  .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#d9822b; }\n  .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4); }\n  .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#db3737; }\n  .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4); }\n  .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-dark .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#48aff0; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4);\n            box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#3dcc91; }\n  .bp3-dark .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4);\n            box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#ffb366; }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#ff7373; }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-editable-text-input,\n.bp3-editable-text-content{\n  color:inherit;\n  display:inherit;\n  font:inherit;\n  letter-spacing:inherit;\n  max-width:inherit;\n  min-width:inherit;\n  position:relative;\n  resize:none;\n  text-transform:inherit;\n  vertical-align:top; }\n\n.bp3-editable-text-input{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0;\n  white-space:pre-wrap;\n  width:100%; }\n  .bp3-editable-text-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:focus{\n    outline:none; }\n  .bp3-editable-text-input::-ms-clear{\n    display:none; }\n\n.bp3-editable-text-content{\n  overflow:hidden;\n  padding-right:2px;\n  text-overflow:ellipsis;\n  white-space:pre; }\n  .bp3-editable-text-editing > .bp3-editable-text-content{\n    left:0;\n    position:absolute;\n    visibility:hidden; }\n  .bp3-editable-text-placeholder > .bp3-editable-text-content{\n    color:rgba(92, 112, 128, 0.6); }\n    .bp3-dark .bp3-editable-text-placeholder > .bp3-editable-text-content{\n      color:rgba(167, 182, 194, 0.6); }\n\n.bp3-editable-text.bp3-multiline{\n  display:block; }\n  .bp3-editable-text.bp3-multiline .bp3-editable-text-content{\n    overflow:auto;\n    white-space:pre-wrap;\n    word-wrap:break-word; }\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-control-group{\n  -webkit-transform:translateZ(0);\n          transform:translateZ(0);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:stretch;\n      -ms-flex-align:stretch;\n          align-items:stretch; }\n  .bp3-control-group > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select,\n  .bp3-control-group .bp3-input,\n  .bp3-control-group .bp3-select{\n    position:relative; }\n  .bp3-control-group .bp3-input{\n    border-radius:inherit;\n    z-index:2; }\n    .bp3-control-group .bp3-input:focus{\n      border-radius:3px;\n      z-index:14; }\n    .bp3-control-group .bp3-input[class*=\"bp3-intent\"]{\n      z-index:13; }\n      .bp3-control-group .bp3-input[class*=\"bp3-intent\"]:focus{\n        z-index:15; }\n    .bp3-control-group .bp3-input[readonly], .bp3-control-group .bp3-input:disabled, .bp3-control-group .bp3-input.bp3-disabled{\n      z-index:1; }\n  .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input{\n    z-index:13; }\n    .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input:focus{\n      z-index:15; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select select,\n  .bp3-control-group .bp3-select select{\n    -webkit-transform:translateZ(0);\n            transform:translateZ(0);\n    border-radius:inherit;\n    z-index:4; }\n    .bp3-control-group .bp3-button:focus,\n    .bp3-control-group .bp3-html-select select:focus,\n    .bp3-control-group .bp3-select select:focus{\n      z-index:5; }\n    .bp3-control-group .bp3-button:hover,\n    .bp3-control-group .bp3-html-select select:hover,\n    .bp3-control-group .bp3-select select:hover{\n      z-index:6; }\n    .bp3-control-group .bp3-button:active,\n    .bp3-control-group .bp3-html-select select:active,\n    .bp3-control-group .bp3-select select:active{\n      z-index:7; }\n    .bp3-control-group .bp3-button[readonly], .bp3-control-group .bp3-button:disabled, .bp3-control-group .bp3-button.bp3-disabled,\n    .bp3-control-group .bp3-html-select select[readonly],\n    .bp3-control-group .bp3-html-select select:disabled,\n    .bp3-control-group .bp3-html-select select.bp3-disabled,\n    .bp3-control-group .bp3-select select[readonly],\n    .bp3-control-group .bp3-select select:disabled,\n    .bp3-control-group .bp3-select select.bp3-disabled{\n      z-index:3; }\n    .bp3-control-group .bp3-button[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]{\n      z-index:9; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:focus{\n        z-index:10; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:hover{\n        z-index:11; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:active{\n        z-index:12; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"][readonly], .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:disabled, .bp3-control-group .bp3-button[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"].bp3-disabled{\n        z-index:8; }\n  .bp3-control-group .bp3-input-group > .bp3-icon,\n  .bp3-control-group .bp3-input-group > .bp3-button,\n  .bp3-control-group .bp3-input-group > .bp3-input-left-container,\n  .bp3-control-group .bp3-input-group > .bp3-input-action{\n    z-index:16; }\n  .bp3-control-group .bp3-select::after,\n  .bp3-control-group .bp3-html-select::after,\n  .bp3-control-group .bp3-select > .bp3-icon,\n  .bp3-control-group .bp3-html-select > .bp3-icon{\n    z-index:17; }\n  .bp3-control-group .bp3-select:focus-within{\n    z-index:5; }\n  .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:-1px; }\n  .bp3-control-group:not(.bp3-vertical) > .bp3-divider:not(:first-child){\n    margin-left:6px; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:0; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > .bp3-button + .bp3-button{\n    margin-left:1px; }\n  .bp3-control-group .bp3-popover-wrapper,\n  .bp3-control-group .bp3-popover-target{\n    border-radius:inherit; }\n  .bp3-control-group > :first-child{\n    border-radius:3px 0 0 3px; }\n  .bp3-control-group > :last-child{\n    border-radius:0 3px 3px 0;\n    margin-right:0; }\n  .bp3-control-group > :only-child{\n    border-radius:3px;\n    margin-right:0; }\n  .bp3-control-group .bp3-input-group .bp3-button{\n    border-radius:3px; }\n  .bp3-control-group .bp3-numeric-input:not(:first-child) .bp3-input-group{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-control-group.bp3-fill{\n    width:100%; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-fill > *:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-vertical{\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-control-group.bp3-vertical > *{\n      margin-top:-1px; }\n    .bp3-control-group.bp3-vertical > :first-child{\n      border-radius:3px 3px 0 0;\n      margin-top:0; }\n    .bp3-control-group.bp3-vertical > :last-child{\n      border-radius:0 0 3px 3px; }\n.bp3-control{\n  cursor:pointer;\n  display:block;\n  margin-bottom:10px;\n  position:relative;\n  text-transform:none; }\n  .bp3-control input:checked ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control input:checked ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control:not(.bp3-align-right){\n    padding-left:26px; }\n    .bp3-control:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-26px; }\n  .bp3-control.bp3-align-right{\n    padding-right:26px; }\n    .bp3-control.bp3-align-right .bp3-control-indicator{\n      margin-right:-26px; }\n  .bp3-control.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-control.bp3-inline{\n    display:inline-block;\n    margin-right:20px; }\n  .bp3-control input{\n    left:0;\n    opacity:0;\n    position:absolute;\n    top:0;\n    z-index:-1; }\n  .bp3-control .bp3-control-indicator{\n    background-clip:padding-box;\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    border:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    cursor:pointer;\n    display:inline-block;\n    font-size:16px;\n    height:1em;\n    margin-right:10px;\n    margin-top:-3px;\n    position:relative;\n    -webkit-user-select:none;\n       -moz-user-select:none;\n        -ms-user-select:none;\n            user-select:none;\n    vertical-align:middle;\n    width:1em; }\n    .bp3-control .bp3-control-indicator::before{\n      content:\"\";\n      display:block;\n      height:1em;\n      width:1em; }\n  .bp3-control:hover .bp3-control-indicator{\n    background-color:#ebf1f5; }\n  .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n    background:#d8e1e8;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    cursor:not-allowed; }\n  .bp3-control input:focus ~ .bp3-control-indicator{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:2px;\n    -moz-outline-radius:6px; }\n  .bp3-control.bp3-align-right .bp3-control-indicator{\n    float:right;\n    margin-left:10px;\n    margin-top:1px; }\n  .bp3-control.bp3-large{\n    font-size:16px; }\n    .bp3-control.bp3-large:not(.bp3-align-right){\n      padding-left:30px; }\n      .bp3-control.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n        margin-left:-30px; }\n    .bp3-control.bp3-large.bp3-align-right{\n      padding-right:30px; }\n      .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n        margin-right:-30px; }\n    .bp3-control.bp3-large .bp3-control-indicator{\n      font-size:20px; }\n    .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-top:0; }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control.bp3-checkbox .bp3-control-indicator{\n    border-radius:3px; }\n  .bp3-control.bp3-checkbox input:checked ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0012 5z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-radio .bp3-control-indicator{\n    border-radius:50%; }\n  .bp3-control.bp3-radio input:checked ~ .bp3-control-indicator::before{\n    background-image:radial-gradient(#ffffff, #ffffff 28%, transparent 32%); }\n  .bp3-control.bp3-radio input:checked:disabled ~ .bp3-control-indicator::before{\n    opacity:0.5; }\n  .bp3-control.bp3-radio input:focus ~ .bp3-control-indicator{\n    -moz-outline-radius:16px; }\n  .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(167, 182, 194, 0.5); }\n  .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(115, 134, 148, 0.5); }\n  .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(92, 112, 128, 0.5); }\n  .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5); }\n    .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5); }\n    .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch:not(.bp3-align-right){\n    padding-left:38px; }\n    .bp3-control.bp3-switch:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-38px; }\n  .bp3-control.bp3-switch.bp3-align-right{\n    padding-right:38px; }\n    .bp3-control.bp3-switch.bp3-align-right .bp3-control-indicator{\n      margin-right:-38px; }\n  .bp3-control.bp3-switch .bp3-control-indicator{\n    border:none;\n    border-radius:1.75em;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important;\n    min-width:1.75em;\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:auto; }\n    .bp3-control.bp3-switch .bp3-control-indicator::before{\n      background:#ffffff;\n      border-radius:50%;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n      height:calc(1em - 4px);\n      left:0;\n      margin:2px;\n      position:absolute;\n      -webkit-transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      width:calc(1em - 4px); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    left:calc(100% - 1em); }\n  .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right){\n    padding-left:45px; }\n    .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-45px; }\n  .bp3-control.bp3-switch.bp3-large.bp3-align-right{\n    padding-right:45px; }\n    .bp3-control.bp3-switch.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-right:-45px; }\n  .bp3-dark .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.7); }\n  .bp3-dark .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.9); }\n  .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(57, 75, 89, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-dark .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch .bp3-control-indicator::before{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-control.bp3-switch .bp3-switch-inner-text{\n    font-size:0.7em;\n    text-align:center; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:first-child{\n    line-height:0;\n    margin-left:0.5em;\n    margin-right:1.2em;\n    visibility:hidden; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:last-child{\n    line-height:1em;\n    margin-left:1.2em;\n    margin-right:0.5em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:first-child{\n    line-height:1em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:last-child{\n    line-height:0;\n    visibility:hidden; }\n  .bp3-dark .bp3-control{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-control.bp3-disabled{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-control .bp3-control-indicator{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-control:hover .bp3-control-indicator{\n      background-color:#30404d; }\n    .bp3-dark .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n      background:#202b33;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-control input:disabled ~ .bp3-control-indicator{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      cursor:not-allowed; }\n    .bp3-dark .bp3-control.bp3-checkbox input:disabled:checked ~ .bp3-control-indicator, .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-file-input{\n  cursor:pointer;\n  display:inline-block;\n  height:30px;\n  position:relative; }\n  .bp3-file-input input{\n    margin:0;\n    min-width:200px;\n    opacity:0; }\n    .bp3-file-input input:disabled + .bp3-file-upload-input,\n    .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n      background:rgba(206, 217, 224, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      resize:none; }\n      .bp3-file-input input:disabled + .bp3-file-upload-input::after,\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n        background-color:rgba(206, 217, 224, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(92, 112, 128, 0.6);\n        cursor:not-allowed;\n        outline:none; }\n        .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active:hover,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active:hover{\n          background:rgba(206, 217, 224, 0.7); }\n      .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input, .bp3-dark\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n        background:rgba(57, 75, 89, 0.5);\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after, .bp3-dark\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n          background-color:rgba(57, 75, 89, 0.5);\n          background-image:none;\n          -webkit-box-shadow:none;\n                  box-shadow:none;\n          color:rgba(167, 182, 194, 0.6); }\n          .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-dark\n          .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active{\n            background:rgba(57, 75, 89, 0.7); }\n  .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#182026; }\n  .bp3-dark .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#f5f8fa; }\n  .bp3-file-input.bp3-fill{\n    width:100%; }\n  .bp3-file-input.bp3-large,\n  .bp3-large .bp3-file-input{\n    height:40px; }\n  .bp3-file-input .bp3-file-upload-input-custom-text::after{\n    content:attr(bp3-button-text); }\n\n.bp3-file-upload-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle;\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:rgba(92, 112, 128, 0.6);\n  left:0;\n  padding-right:80px;\n  position:absolute;\n  right:0;\n  top:0;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-file-upload-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:focus, .bp3-file-upload-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-file-upload-input[type=\"search\"], .bp3-file-upload-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-file-upload-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-file-upload-input:disabled, .bp3-file-upload-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-file-upload-input::after{\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026;\n    min-height:24px;\n    min-width:24px;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    border-radius:3px;\n    content:\"Browse\";\n    line-height:24px;\n    margin:3px;\n    position:absolute;\n    right:0;\n    text-align:center;\n    top:0;\n    width:70px; }\n    .bp3-file-upload-input::after:hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-file-upload-input::after:active, .bp3-file-upload-input::after.bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-file-upload-input::after:disabled, .bp3-file-upload-input::after.bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-file-upload-input::after:disabled.bp3-active, .bp3-file-upload-input::after:disabled.bp3-active:hover, .bp3-file-upload-input::after.bp3-disabled.bp3-active, .bp3-file-upload-input::after.bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-file-upload-input:hover::after{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-file-upload-input:active::after{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-large .bp3-file-upload-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px;\n    padding-right:95px; }\n    .bp3-large .bp3-file-upload-input[type=\"search\"], .bp3-large .bp3-file-upload-input.bp3-round{\n      padding:0 15px; }\n    .bp3-large .bp3-file-upload-input::after{\n      min-height:30px;\n      min-width:30px;\n      line-height:30px;\n      margin:5px;\n      width:85px; }\n  .bp3-dark .bp3-file-upload-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:disabled, .bp3-dark .bp3-file-upload-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::after{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n      color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover, .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover{\n        background-color:#30404d;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        background-color:#202b33;\n        background-image:none;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n      .bp3-dark .bp3-file-upload-input::after:disabled, .bp3-dark .bp3-file-upload-input::after.bp3-disabled{\n        background-color:rgba(57, 75, 89, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-upload-input::after:disabled.bp3-active, .bp3-dark .bp3-file-upload-input::after.bp3-disabled.bp3-active{\n          background:rgba(57, 75, 89, 0.7); }\n      .bp3-dark .bp3-file-upload-input::after .bp3-button-spinner .bp3-spinner-head{\n        background:rgba(16, 22, 26, 0.5);\n        stroke:#8a9ba8; }\n    .bp3-dark .bp3-file-upload-input:hover::after{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:active::after{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n.bp3-file-upload-input::after{\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n.bp3-form-group{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0 0 15px; }\n  .bp3-form-group label.bp3-label{\n    margin-bottom:5px; }\n  .bp3-form-group .bp3-control{\n    margin-top:7px; }\n  .bp3-form-group .bp3-form-helper-text{\n    color:#5c7080;\n    font-size:12px;\n    margin-top:5px; }\n  .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#106ba3; }\n  .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#0d8050; }\n  .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#bf7326; }\n  .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#c23030; }\n  .bp3-form-group.bp3-inline{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row; }\n    .bp3-form-group.bp3-inline.bp3-large label.bp3-label{\n      line-height:40px;\n      margin:0 10px 0 0; }\n    .bp3-form-group.bp3-inline label.bp3-label{\n      line-height:30px;\n      margin:0 10px 0 0; }\n  .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-dark .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#48aff0; }\n  .bp3-dark .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#3dcc91; }\n  .bp3-dark .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#ffb366; }\n  .bp3-dark .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#ff7373; }\n  .bp3-dark .bp3-form-group .bp3-form-helper-text{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(167, 182, 194, 0.6) !important; }\n.bp3-input-group{\n  display:block;\n  position:relative; }\n  .bp3-input-group .bp3-input{\n    position:relative;\n    width:100%; }\n    .bp3-input-group .bp3-input:not(:first-child){\n      padding-left:30px; }\n    .bp3-input-group .bp3-input:not(:last-child){\n      padding-right:30px; }\n  .bp3-input-group .bp3-input-action,\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-button,\n  .bp3-input-group > .bp3-icon{\n    position:absolute;\n    top:0; }\n    .bp3-input-group .bp3-input-action:first-child,\n    .bp3-input-group > .bp3-input-left-container:first-child,\n    .bp3-input-group > .bp3-button:first-child,\n    .bp3-input-group > .bp3-icon:first-child{\n      left:0; }\n    .bp3-input-group .bp3-input-action:last-child,\n    .bp3-input-group > .bp3-input-left-container:last-child,\n    .bp3-input-group > .bp3-button:last-child,\n    .bp3-input-group > .bp3-icon:last-child{\n      right:0; }\n  .bp3-input-group .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    margin:3px;\n    padding:0 7px; }\n    .bp3-input-group .bp3-button:empty{\n      padding:0; }\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-icon{\n    z-index:1; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon{\n    color:#5c7080; }\n    .bp3-input-group > .bp3-input-left-container > .bp3-icon:empty,\n    .bp3-input-group > .bp3-icon:empty{\n      font-family:\"Icons16\", sans-serif;\n      font-size:16px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon,\n  .bp3-input-group .bp3-input-action > .bp3-spinner{\n    margin:7px; }\n  .bp3-input-group .bp3-tag{\n    margin:5px; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus),\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n    color:#5c7080; }\n    .bp3-dark .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus), .bp3-dark\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n      color:#a7b6c2; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large{\n      color:#5c7080; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled,\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled{\n    color:rgba(92, 112, 128, 0.6) !important; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-large{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-input-group.bp3-disabled{\n    cursor:not-allowed; }\n    .bp3-input-group.bp3-disabled .bp3-icon{\n      color:rgba(92, 112, 128, 0.6); }\n  .bp3-input-group.bp3-large .bp3-button{\n    min-height:30px;\n    min-width:30px;\n    margin:5px; }\n  .bp3-input-group.bp3-large > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-large > .bp3-icon,\n  .bp3-input-group.bp3-large .bp3-input-action > .bp3-spinner{\n    margin:12px; }\n  .bp3-input-group.bp3-large .bp3-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input-group.bp3-large .bp3-input[type=\"search\"], .bp3-input-group.bp3-large .bp3-input.bp3-round{\n      padding:0 15px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:first-child){\n      padding-left:40px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:last-child){\n      padding-right:40px; }\n  .bp3-input-group.bp3-small .bp3-button{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small .bp3-tag{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-small > .bp3-icon,\n  .bp3-input-group.bp3-small .bp3-input-action > .bp3-spinner{\n    margin:4px; }\n  .bp3-input-group.bp3-small .bp3-input{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input-group.bp3-small .bp3-input[type=\"search\"], .bp3-input-group.bp3-small .bp3-input.bp3-round{\n      padding:0 12px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:first-child){\n      padding-left:24px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:last-child){\n      padding-right:24px; }\n  .bp3-input-group.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-input-group.bp3-round .bp3-button,\n  .bp3-input-group.bp3-round .bp3-input,\n  .bp3-input-group.bp3-round .bp3-tag{\n    border-radius:30px; }\n  .bp3-dark .bp3-input-group .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-input-group.bp3-disabled .bp3-icon{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-input-group.bp3-intent-primary .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input-group.bp3-intent-primary .bp3-input:disabled, .bp3-input-group.bp3-intent-primary .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-primary > .bp3-icon{\n    color:#106ba3; }\n    .bp3-dark .bp3-input-group.bp3-intent-primary > .bp3-icon{\n      color:#48aff0; }\n  .bp3-input-group.bp3-intent-success .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input-group.bp3-intent-success .bp3-input:disabled, .bp3-input-group.bp3-intent-success .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-success > .bp3-icon{\n    color:#0d8050; }\n    .bp3-dark .bp3-input-group.bp3-intent-success > .bp3-icon{\n      color:#3dcc91; }\n  .bp3-input-group.bp3-intent-warning .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input-group.bp3-intent-warning .bp3-input:disabled, .bp3-input-group.bp3-intent-warning .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-warning > .bp3-icon{\n    color:#bf7326; }\n    .bp3-dark .bp3-input-group.bp3-intent-warning > .bp3-icon{\n      color:#ffb366; }\n  .bp3-input-group.bp3-intent-danger .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input-group.bp3-intent-danger .bp3-input:disabled, .bp3-input-group.bp3-intent-danger .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-danger > .bp3-icon{\n    color:#c23030; }\n    .bp3-dark .bp3-input-group.bp3-intent-danger > .bp3-icon{\n      color:#ff7373; }\n.bp3-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle; }\n  .bp3-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:focus, .bp3-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-input[type=\"search\"], .bp3-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-input:disabled, .bp3-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-input.bp3-large{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input.bp3-large[type=\"search\"], .bp3-input.bp3-large.bp3-round{\n      padding:0 15px; }\n  .bp3-input.bp3-small{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input.bp3-small[type=\"search\"], .bp3-input.bp3-small.bp3-round{\n      padding:0 12px; }\n  .bp3-input.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-dark .bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input:disabled, .bp3-dark .bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-input.bp3-intent-primary{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input.bp3-intent-primary:disabled, .bp3-input.bp3-intent-primary.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary:focus{\n        -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n                box-shadow:inset 0 0 0 1px #137cbd; }\n      .bp3-dark .bp3-input.bp3-intent-primary:disabled, .bp3-dark .bp3-input.bp3-intent-primary.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-success{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input.bp3-intent-success:disabled, .bp3-input.bp3-intent-success.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success:focus{\n        -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n                box-shadow:inset 0 0 0 1px #0f9960; }\n      .bp3-dark .bp3-input.bp3-intent-success:disabled, .bp3-dark .bp3-input.bp3-intent-success.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-warning{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input.bp3-intent-warning:disabled, .bp3-input.bp3-intent-warning.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning:focus{\n        -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n                box-shadow:inset 0 0 0 1px #d9822b; }\n      .bp3-dark .bp3-input.bp3-intent-warning:disabled, .bp3-dark .bp3-input.bp3-intent-warning.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-danger{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input.bp3-intent-danger:disabled, .bp3-input.bp3-intent-danger.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger:focus{\n        -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #db3737;\n                box-shadow:inset 0 0 0 1px #db3737; }\n      .bp3-dark .bp3-input.bp3-intent-danger:disabled, .bp3-dark .bp3-input.bp3-intent-danger.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input::-ms-clear{\n    display:none; }\ntextarea.bp3-input{\n  max-width:100%;\n  padding:10px; }\n  textarea.bp3-input, textarea.bp3-input.bp3-large, textarea.bp3-input.bp3-small{\n    height:auto;\n    line-height:inherit; }\n  textarea.bp3-input.bp3-small{\n    padding:8px; }\n  .bp3-dark textarea.bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark textarea.bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input:disabled, .bp3-dark textarea.bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\nlabel.bp3-label{\n  display:block;\n  margin-bottom:15px;\n  margin-top:0; }\n  label.bp3-label .bp3-html-select,\n  label.bp3-label .bp3-input,\n  label.bp3-label .bp3-select,\n  label.bp3-label .bp3-slider,\n  label.bp3-label .bp3-popover-wrapper{\n    display:block;\n    margin-top:5px;\n    text-transform:none; }\n  label.bp3-label .bp3-button-group{\n    margin-top:5px; }\n  label.bp3-label .bp3-select select,\n  label.bp3-label .bp3-html-select select{\n    font-weight:400;\n    vertical-align:top;\n    width:100%; }\n  label.bp3-label.bp3-disabled,\n  label.bp3-label.bp3-disabled .bp3-text-muted{\n    color:rgba(92, 112, 128, 0.6); }\n  label.bp3-label.bp3-inline{\n    line-height:30px; }\n    label.bp3-label.bp3-inline .bp3-html-select,\n    label.bp3-label.bp3-inline .bp3-input,\n    label.bp3-label.bp3-inline .bp3-input-group,\n    label.bp3-label.bp3-inline .bp3-select,\n    label.bp3-label.bp3-inline .bp3-popover-wrapper{\n      display:inline-block;\n      margin:0 0 0 5px;\n      vertical-align:top; }\n    label.bp3-label.bp3-inline .bp3-button-group{\n      margin:0 0 0 5px; }\n    label.bp3-label.bp3-inline .bp3-input-group .bp3-input{\n      margin-left:0; }\n    label.bp3-label.bp3-inline.bp3-large{\n      line-height:40px; }\n  label.bp3-label:not(.bp3-inline) .bp3-popover-target{\n    display:block; }\n  .bp3-dark label.bp3-label{\n    color:#f5f8fa; }\n    .bp3-dark label.bp3-label.bp3-disabled,\n    .bp3-dark label.bp3-label.bp3-disabled .bp3-text-muted{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 14px;\n          flex:1 1 14px;\n  min-height:0;\n  padding:0;\n  width:30px; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:first-child{\n    border-radius:0 3px 0 0; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:last-child{\n    border-radius:0 0 3px 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:first-child{\n  border-radius:3px 0 0 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:last-child{\n  border-radius:0 0 0 3px; }\n\n.bp3-numeric-input.bp3-large .bp3-button-group.bp3-vertical > .bp3-button{\n  width:40px; }\n\nform{\n  display:block; }\n.bp3-html-select select,\n.bp3-select select{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  -moz-appearance:none;\n  -webkit-appearance:none;\n  border-radius:3px;\n  height:30px;\n  padding:0 25px 0 10px;\n  width:100%; }\n  .bp3-html-select select > *, .bp3-select select > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-html-select select > .bp3-fill, .bp3-select select > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-html-select select::before,\n  .bp3-select select::before, .bp3-html-select select > *, .bp3-select select > *{\n    margin-right:7px; }\n  .bp3-html-select select:empty::before,\n  .bp3-select select:empty::before,\n  .bp3-html-select select > :last-child,\n  .bp3-select select > :last-child{\n    margin-right:0; }\n  .bp3-html-select select:hover,\n  .bp3-select select:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-html-select select:active,\n  .bp3-select select:active, .bp3-html-select select.bp3-active,\n  .bp3-select select.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-html-select select:disabled,\n  .bp3-select select:disabled, .bp3-html-select select.bp3-disabled,\n  .bp3-select select.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-html-select select:disabled.bp3-active,\n    .bp3-select select:disabled.bp3-active, .bp3-html-select select:disabled.bp3-active:hover,\n    .bp3-select select:disabled.bp3-active:hover, .bp3-html-select select.bp3-disabled.bp3-active,\n    .bp3-select select.bp3-disabled.bp3-active, .bp3-html-select select.bp3-disabled.bp3-active:hover,\n    .bp3-select select.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n\n.bp3-html-select.bp3-minimal select,\n.bp3-select.bp3-minimal select{\n  background:none;\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  .bp3-html-select.bp3-minimal select:hover,\n  .bp3-select.bp3-minimal select:hover{\n    background:rgba(167, 182, 194, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026;\n    text-decoration:none; }\n  .bp3-html-select.bp3-minimal select:active,\n  .bp3-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal select.bp3-active,\n  .bp3-select.bp3-minimal select.bp3-active{\n    background:rgba(115, 134, 148, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026; }\n  .bp3-html-select.bp3-minimal select:disabled,\n  .bp3-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal select:disabled:hover,\n  .bp3-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal select.bp3-disabled,\n  .bp3-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal select.bp3-disabled:hover,\n  .bp3-select.bp3-minimal select.bp3-disabled:hover{\n    background:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n    .bp3-html-select.bp3-minimal select:disabled.bp3-active,\n    .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active{\n      background:rgba(115, 134, 148, 0.3); }\n  .bp3-dark .bp3-html-select.bp3-minimal select, .bp3-html-select.bp3-minimal .bp3-dark select,\n  .bp3-dark .bp3-select.bp3-minimal select, .bp3-select.bp3-minimal .bp3-dark select{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover, .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover{\n      background:rgba(138, 155, 168, 0.15); }\n    .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:rgba(138, 155, 168, 0.3);\n      color:#f5f8fa; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal .bp3-dark select:disabled,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled, .bp3-select.bp3-minimal .bp3-dark select:disabled, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled:hover, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover{\n      background:none;\n      color:rgba(167, 182, 194, 0.6);\n      cursor:not-allowed; }\n      .bp3-dark .bp3-html-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active{\n        background:rgba(138, 155, 168, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-primary,\n  .bp3-select.bp3-minimal select.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover{\n      background:rgba(19, 124, 189, 0.15);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:rgba(19, 124, 189, 0.3);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled{\n      background:none;\n      color:rgba(16, 107, 163, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active{\n        background:rgba(19, 124, 189, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n      stroke:#106ba3; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary{\n      color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.2);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(72, 175, 240, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-success,\n  .bp3-select.bp3-minimal select.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover{\n      background:rgba(15, 153, 96, 0.15);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:rgba(15, 153, 96, 0.3);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled{\n      background:none;\n      color:rgba(13, 128, 80, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active{\n        background:rgba(15, 153, 96, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n      stroke:#0d8050; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success{\n      color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.2);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(61, 204, 145, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-warning,\n  .bp3-select.bp3-minimal select.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover{\n      background:rgba(217, 130, 43, 0.15);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:rgba(217, 130, 43, 0.3);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled{\n      background:none;\n      color:rgba(191, 115, 38, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active{\n        background:rgba(217, 130, 43, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n      stroke:#bf7326; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning{\n      color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.2);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(255, 179, 102, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-danger,\n  .bp3-select.bp3-minimal select.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover{\n      background:rgba(219, 55, 55, 0.15);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:rgba(219, 55, 55, 0.3);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled{\n      background:none;\n      color:rgba(194, 48, 48, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active{\n        background:rgba(219, 55, 55, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n      stroke:#c23030; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger{\n      color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.2);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(255, 115, 115, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n\n.bp3-html-select.bp3-large select,\n.bp3-select.bp3-large select{\n  font-size:16px;\n  height:40px;\n  padding-right:35px; }\n\n.bp3-dark .bp3-html-select select, .bp3-dark .bp3-select select{\n  background-color:#394b59;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n  color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover, .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    background-color:#202b33;\n    background-image:none;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-html-select select:disabled, .bp3-dark .bp3-select select:disabled, .bp3-dark .bp3-html-select select.bp3-disabled, .bp3-dark .bp3-select select.bp3-disabled{\n    background-color:rgba(57, 75, 89, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-html-select select:disabled.bp3-active, .bp3-dark .bp3-select select:disabled.bp3-active, .bp3-dark .bp3-html-select select.bp3-disabled.bp3-active, .bp3-dark .bp3-select select.bp3-disabled.bp3-active{\n      background:rgba(57, 75, 89, 0.7); }\n  .bp3-dark .bp3-html-select select .bp3-button-spinner .bp3-spinner-head, .bp3-dark .bp3-select select .bp3-button-spinner .bp3-spinner-head{\n    background:rgba(16, 22, 26, 0.5);\n    stroke:#8a9ba8; }\n\n.bp3-html-select select:disabled,\n.bp3-select select:disabled{\n  background-color:rgba(206, 217, 224, 0.5);\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-html-select .bp3-icon,\n.bp3-select .bp3-icon, .bp3-select::after{\n  color:#5c7080;\n  pointer-events:none;\n  position:absolute;\n  right:7px;\n  top:7px; }\n  .bp3-html-select .bp3-disabled.bp3-icon,\n  .bp3-select .bp3-disabled.bp3-icon, .bp3-disabled.bp3-select::after{\n    color:rgba(92, 112, 128, 0.6); }\n.bp3-html-select,\n.bp3-select{\n  display:inline-block;\n  letter-spacing:normal;\n  position:relative;\n  vertical-align:middle; }\n  .bp3-html-select select::-ms-expand,\n  .bp3-select select::-ms-expand{\n    display:none; }\n  .bp3-html-select .bp3-icon,\n  .bp3-select .bp3-icon{\n    color:#5c7080; }\n    .bp3-html-select .bp3-icon:hover,\n    .bp3-select .bp3-icon:hover{\n      color:#182026; }\n    .bp3-dark .bp3-html-select .bp3-icon, .bp3-dark\n    .bp3-select .bp3-icon{\n      color:#a7b6c2; }\n      .bp3-dark .bp3-html-select .bp3-icon:hover, .bp3-dark\n      .bp3-select .bp3-icon:hover{\n        color:#f5f8fa; }\n  .bp3-html-select.bp3-large::after,\n  .bp3-html-select.bp3-large .bp3-icon,\n  .bp3-select.bp3-large::after,\n  .bp3-select.bp3-large .bp3-icon{\n    right:12px;\n    top:12px; }\n  .bp3-html-select.bp3-fill,\n  .bp3-html-select.bp3-fill select,\n  .bp3-select.bp3-fill,\n  .bp3-select.bp3-fill select{\n    width:100%; }\n  .bp3-dark .bp3-html-select option, .bp3-dark\n  .bp3-select option{\n    background-color:#30404d;\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select option:disabled, .bp3-dark\n  .bp3-select option:disabled{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-html-select::after, .bp3-dark\n  .bp3-select::after{\n    color:#a7b6c2; }\n\n.bp3-select::after{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  content:\"\"; }\n.bp3-running-text table, table.bp3-html-table{\n  border-spacing:0;\n  font-size:14px; }\n  .bp3-running-text table th, table.bp3-html-table th,\n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    padding:11px;\n    text-align:left;\n    vertical-align:top; }\n  .bp3-running-text table th, table.bp3-html-table th{\n    color:#182026;\n    font-weight:600; }\n  \n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    color:#182026; }\n  .bp3-running-text table tbody tr:first-child th, table.bp3-html-table tbody tr:first-child th,\n  .bp3-running-text table tbody tr:first-child td,\n  table.bp3-html-table tbody tr:first-child td,\n  .bp3-running-text table tfoot tr:first-child th,\n  table.bp3-html-table tfoot tr:first-child th,\n  .bp3-running-text table tfoot tr:first-child td,\n  table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-running-text table th, .bp3-running-text .bp3-dark table th, .bp3-dark table.bp3-html-table th{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table td, .bp3-running-text .bp3-dark table td, .bp3-dark table.bp3-html-table td{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table tbody tr:first-child th, .bp3-running-text .bp3-dark table tbody tr:first-child th, .bp3-dark table.bp3-html-table tbody tr:first-child th,\n  .bp3-dark .bp3-running-text table tbody tr:first-child td,\n  .bp3-running-text .bp3-dark table tbody tr:first-child td,\n  .bp3-dark table.bp3-html-table tbody tr:first-child td,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child th,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child th,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child th,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child td,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child td,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-condensed th,\ntable.bp3-html-table.bp3-html-table-condensed td, table.bp3-html-table.bp3-small th,\ntable.bp3-html-table.bp3-small td{\n  padding-bottom:6px;\n  padding-top:6px; }\n\ntable.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n  background:rgba(191, 204, 214, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n  -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered tbody tr td,\ntable.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n  -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n  table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n    -webkit-box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-interactive tbody tr:hover td{\n  background-color:rgba(191, 204, 214, 0.3);\n  cursor:pointer; }\n\ntable.bp3-html-table.bp3-interactive tbody tr:active td{\n  background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-dark table.bp3-html-table{ }\n  .bp3-dark table.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n    background:rgba(92, 112, 128, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td,\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n      -webkit-box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15);\n              box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:first-child{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:hover td{\n    background-color:rgba(92, 112, 128, 0.3);\n    cursor:pointer; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:active td{\n    background-color:rgba(92, 112, 128, 0.4); }\n\n.bp3-key-combo{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center; }\n  .bp3-key-combo > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-key-combo > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-key-combo::before,\n  .bp3-key-combo > *{\n    margin-right:5px; }\n  .bp3-key-combo:empty::before,\n  .bp3-key-combo > :last-child{\n    margin-right:0; }\n\n.bp3-hotkey-dialog{\n  padding-bottom:0;\n  top:40px; }\n  .bp3-hotkey-dialog .bp3-dialog-body{\n    margin:0;\n    padding:0; }\n  .bp3-hotkey-dialog .bp3-hotkey-label{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1; }\n\n.bp3-hotkey-column{\n  margin:auto;\n  max-height:80vh;\n  overflow-y:auto;\n  padding:30px; }\n  .bp3-hotkey-column .bp3-heading{\n    margin-bottom:20px; }\n    .bp3-hotkey-column .bp3-heading:not(:first-child){\n      margin-top:40px; }\n\n.bp3-hotkey{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:justify;\n      -ms-flex-pack:justify;\n          justify-content:space-between;\n  margin-left:0;\n  margin-right:0; }\n  .bp3-hotkey:not(:last-child){\n    margin-bottom:10px; }\n.bp3-icon{\n  display:inline-block;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  vertical-align:text-bottom; }\n  .bp3-icon:not(:empty)::before{\n    content:\"\" !important;\n    content:unset !important; }\n  .bp3-icon > svg{\n    display:block; }\n    .bp3-icon > svg:not([fill]){\n      fill:currentColor; }\n\n.bp3-icon.bp3-intent-primary, .bp3-icon-standard.bp3-intent-primary, .bp3-icon-large.bp3-intent-primary{\n  color:#106ba3; }\n  .bp3-dark .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-icon-large.bp3-intent-primary{\n    color:#48aff0; }\n\n.bp3-icon.bp3-intent-success, .bp3-icon-standard.bp3-intent-success, .bp3-icon-large.bp3-intent-success{\n  color:#0d8050; }\n  .bp3-dark .bp3-icon.bp3-intent-success, .bp3-dark .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-icon-large.bp3-intent-success{\n    color:#3dcc91; }\n\n.bp3-icon.bp3-intent-warning, .bp3-icon-standard.bp3-intent-warning, .bp3-icon-large.bp3-intent-warning{\n  color:#bf7326; }\n  .bp3-dark .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-icon-large.bp3-intent-warning{\n    color:#ffb366; }\n\n.bp3-icon.bp3-intent-danger, .bp3-icon-standard.bp3-intent-danger, .bp3-icon-large.bp3-intent-danger{\n  color:#c23030; }\n  .bp3-dark .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-icon-large.bp3-intent-danger{\n    color:#ff7373; }\n\nspan.bp3-icon-standard{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon-large{\n  font-family:\"Icons20\", sans-serif;\n  font-size:20px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon:empty{\n  font-family:\"Icons20\";\n  font-size:inherit;\n  font-style:normal;\n  font-weight:400;\n  line-height:1; }\n  span.bp3-icon:empty::before{\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased; }\n\n.bp3-icon-add::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-artifact::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-folder::before{\n  content:\"\"; }\n\n.bp3-icon-airplane::before{\n  content:\"\"; }\n\n.bp3-icon-align-center::before{\n  content:\"\"; }\n\n.bp3-icon-align-justify::before{\n  content:\"\"; }\n\n.bp3-icon-align-left::before{\n  content:\"\"; }\n\n.bp3-icon-align-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-horizontal-center::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-left::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-top::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-vertical-center::before{\n  content:\"\"; }\n\n.bp3-icon-annotation::before{\n  content:\"\"; }\n\n.bp3-icon-application::before{\n  content:\"\"; }\n\n.bp3-icon-applications::before{\n  content:\"\"; }\n\n.bp3-icon-archive::before{\n  content:\"\"; }\n\n.bp3-icon-arrow-bottom-left::before{\n  content:\"↙\"; }\n\n.bp3-icon-arrow-bottom-right::before{\n  content:\"↘\"; }\n\n.bp3-icon-arrow-down::before{\n  content:\"↓\"; }\n\n.bp3-icon-arrow-left::before{\n  content:\"←\"; }\n\n.bp3-icon-arrow-right::before{\n  content:\"→\"; }\n\n.bp3-icon-arrow-top-left::before{\n  content:\"↖\"; }\n\n.bp3-icon-arrow-top-right::before{\n  content:\"↗\"; }\n\n.bp3-icon-arrow-up::before{\n  content:\"↑\"; }\n\n.bp3-icon-arrows-horizontal::before{\n  content:\"↔\"; }\n\n.bp3-icon-arrows-vertical::before{\n  content:\"↕\"; }\n\n.bp3-icon-asterisk::before{\n  content:\"*\"; }\n\n.bp3-icon-automatic-updates::before{\n  content:\"\"; }\n\n.bp3-icon-badge::before{\n  content:\"\"; }\n\n.bp3-icon-ban-circle::before{\n  content:\"\"; }\n\n.bp3-icon-bank-account::before{\n  content:\"\"; }\n\n.bp3-icon-barcode::before{\n  content:\"\"; }\n\n.bp3-icon-blank::before{\n  content:\"\"; }\n\n.bp3-icon-blocked-person::before{\n  content:\"\"; }\n\n.bp3-icon-bold::before{\n  content:\"\"; }\n\n.bp3-icon-book::before{\n  content:\"\"; }\n\n.bp3-icon-bookmark::before{\n  content:\"\"; }\n\n.bp3-icon-box::before{\n  content:\"\"; }\n\n.bp3-icon-briefcase::before{\n  content:\"\"; }\n\n.bp3-icon-bring-data::before{\n  content:\"\"; }\n\n.bp3-icon-build::before{\n  content:\"\"; }\n\n.bp3-icon-calculator::before{\n  content:\"\"; }\n\n.bp3-icon-calendar::before{\n  content:\"\"; }\n\n.bp3-icon-camera::before{\n  content:\"\"; }\n\n.bp3-icon-caret-down::before{\n  content:\"⌄\"; }\n\n.bp3-icon-caret-left::before{\n  content:\"〈\"; }\n\n.bp3-icon-caret-right::before{\n  content:\"〉\"; }\n\n.bp3-icon-caret-up::before{\n  content:\"⌃\"; }\n\n.bp3-icon-cell-tower::before{\n  content:\"\"; }\n\n.bp3-icon-changes::before{\n  content:\"\"; }\n\n.bp3-icon-chart::before{\n  content:\"\"; }\n\n.bp3-icon-chat::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-backward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-forward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-circle::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-down::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-left::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-right::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-up::before{\n  content:\"\"; }\n\n.bp3-icon-citation::before{\n  content:\"\"; }\n\n.bp3-icon-clean::before{\n  content:\"\"; }\n\n.bp3-icon-clipboard::before{\n  content:\"\"; }\n\n.bp3-icon-cloud::before{\n  content:\"☁\"; }\n\n.bp3-icon-cloud-download::before{\n  content:\"\"; }\n\n.bp3-icon-cloud-upload::before{\n  content:\"\"; }\n\n.bp3-icon-code::before{\n  content:\"\"; }\n\n.bp3-icon-code-block::before{\n  content:\"\"; }\n\n.bp3-icon-cog::before{\n  content:\"\"; }\n\n.bp3-icon-collapse-all::before{\n  content:\"\"; }\n\n.bp3-icon-column-layout::before{\n  content:\"\"; }\n\n.bp3-icon-comment::before{\n  content:\"\"; }\n\n.bp3-icon-comparison::before{\n  content:\"\"; }\n\n.bp3-icon-compass::before{\n  content:\"\"; }\n\n.bp3-icon-compressed::before{\n  content:\"\"; }\n\n.bp3-icon-confirm::before{\n  content:\"\"; }\n\n.bp3-icon-console::before{\n  content:\"\"; }\n\n.bp3-icon-contrast::before{\n  content:\"\"; }\n\n.bp3-icon-control::before{\n  content:\"\"; }\n\n.bp3-icon-credit-card::before{\n  content:\"\"; }\n\n.bp3-icon-cross::before{\n  content:\"✗\"; }\n\n.bp3-icon-crown::before{\n  content:\"\"; }\n\n.bp3-icon-cube::before{\n  content:\"\"; }\n\n.bp3-icon-cube-add::before{\n  content:\"\"; }\n\n.bp3-icon-cube-remove::before{\n  content:\"\"; }\n\n.bp3-icon-curved-range-chart::before{\n  content:\"\"; }\n\n.bp3-icon-cut::before{\n  content:\"\"; }\n\n.bp3-icon-dashboard::before{\n  content:\"\"; }\n\n.bp3-icon-data-lineage::before{\n  content:\"\"; }\n\n.bp3-icon-database::before{\n  content:\"\"; }\n\n.bp3-icon-delete::before{\n  content:\"\"; }\n\n.bp3-icon-delta::before{\n  content:\"Δ\"; }\n\n.bp3-icon-derive-column::before{\n  content:\"\"; }\n\n.bp3-icon-desktop::before{\n  content:\"\"; }\n\n.bp3-icon-diagnosis::before{\n  content:\"\"; }\n\n.bp3-icon-diagram-tree::before{\n  content:\"\"; }\n\n.bp3-icon-direction-left::before{\n  content:\"\"; }\n\n.bp3-icon-direction-right::before{\n  content:\"\"; }\n\n.bp3-icon-disable::before{\n  content:\"\"; }\n\n.bp3-icon-document::before{\n  content:\"\"; }\n\n.bp3-icon-document-open::before{\n  content:\"\"; }\n\n.bp3-icon-document-share::before{\n  content:\"\"; }\n\n.bp3-icon-dollar::before{\n  content:\"$\"; }\n\n.bp3-icon-dot::before{\n  content:\"•\"; }\n\n.bp3-icon-double-caret-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-double-caret-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-doughnut-chart::before{\n  content:\"\"; }\n\n.bp3-icon-download::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-draw::before{\n  content:\"\"; }\n\n.bp3-icon-drive-time::before{\n  content:\"\"; }\n\n.bp3-icon-duplicate::before{\n  content:\"\"; }\n\n.bp3-icon-edit::before{\n  content:\"✎\"; }\n\n.bp3-icon-eject::before{\n  content:\"⏏\"; }\n\n.bp3-icon-endorsed::before{\n  content:\"\"; }\n\n.bp3-icon-envelope::before{\n  content:\"✉\"; }\n\n.bp3-icon-equals::before{\n  content:\"\"; }\n\n.bp3-icon-eraser::before{\n  content:\"\"; }\n\n.bp3-icon-error::before{\n  content:\"\"; }\n\n.bp3-icon-euro::before{\n  content:\"€\"; }\n\n.bp3-icon-exchange::before{\n  content:\"\"; }\n\n.bp3-icon-exclude-row::before{\n  content:\"\"; }\n\n.bp3-icon-expand-all::before{\n  content:\"\"; }\n\n.bp3-icon-export::before{\n  content:\"\"; }\n\n.bp3-icon-eye-off::before{\n  content:\"\"; }\n\n.bp3-icon-eye-on::before{\n  content:\"\"; }\n\n.bp3-icon-eye-open::before{\n  content:\"\"; }\n\n.bp3-icon-fast-backward::before{\n  content:\"\"; }\n\n.bp3-icon-fast-forward::before{\n  content:\"\"; }\n\n.bp3-icon-feed::before{\n  content:\"\"; }\n\n.bp3-icon-feed-subscribed::before{\n  content:\"\"; }\n\n.bp3-icon-film::before{\n  content:\"\"; }\n\n.bp3-icon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-filter-keep::before{\n  content:\"\"; }\n\n.bp3-icon-filter-list::before{\n  content:\"\"; }\n\n.bp3-icon-filter-open::before{\n  content:\"\"; }\n\n.bp3-icon-filter-remove::before{\n  content:\"\"; }\n\n.bp3-icon-flag::before{\n  content:\"⚑\"; }\n\n.bp3-icon-flame::before{\n  content:\"\"; }\n\n.bp3-icon-flash::before{\n  content:\"\"; }\n\n.bp3-icon-floppy-disk::before{\n  content:\"\"; }\n\n.bp3-icon-flow-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flow-end::before{\n  content:\"\"; }\n\n.bp3-icon-flow-linear::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flows::before{\n  content:\"\"; }\n\n.bp3-icon-folder-close::before{\n  content:\"\"; }\n\n.bp3-icon-folder-new::before{\n  content:\"\"; }\n\n.bp3-icon-folder-open::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared-open::before{\n  content:\"\"; }\n\n.bp3-icon-follower::before{\n  content:\"\"; }\n\n.bp3-icon-following::before{\n  content:\"\"; }\n\n.bp3-icon-font::before{\n  content:\"\"; }\n\n.bp3-icon-fork::before{\n  content:\"\"; }\n\n.bp3-icon-form::before{\n  content:\"\"; }\n\n.bp3-icon-full-circle::before{\n  content:\"\"; }\n\n.bp3-icon-full-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-fullscreen::before{\n  content:\"\"; }\n\n.bp3-icon-function::before{\n  content:\"\"; }\n\n.bp3-icon-gantt-chart::before{\n  content:\"\"; }\n\n.bp3-icon-geolocation::before{\n  content:\"\"; }\n\n.bp3-icon-geosearch::before{\n  content:\"\"; }\n\n.bp3-icon-git-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-commit::before{\n  content:\"\"; }\n\n.bp3-icon-git-merge::before{\n  content:\"\"; }\n\n.bp3-icon-git-new-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-pull::before{\n  content:\"\"; }\n\n.bp3-icon-git-push::before{\n  content:\"\"; }\n\n.bp3-icon-git-repo::before{\n  content:\"\"; }\n\n.bp3-icon-glass::before{\n  content:\"\"; }\n\n.bp3-icon-globe::before{\n  content:\"\"; }\n\n.bp3-icon-globe-network::before{\n  content:\"\"; }\n\n.bp3-icon-graph::before{\n  content:\"\"; }\n\n.bp3-icon-graph-remove::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-grid::before{\n  content:\"\"; }\n\n.bp3-icon-grid-view::before{\n  content:\"\"; }\n\n.bp3-icon-group-objects::before{\n  content:\"\"; }\n\n.bp3-icon-grouped-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-hand::before{\n  content:\"\"; }\n\n.bp3-icon-hand-down::before{\n  content:\"\"; }\n\n.bp3-icon-hand-left::before{\n  content:\"\"; }\n\n.bp3-icon-hand-right::before{\n  content:\"\"; }\n\n.bp3-icon-hand-up::before{\n  content:\"\"; }\n\n.bp3-icon-header::before{\n  content:\"\"; }\n\n.bp3-icon-header-one::before{\n  content:\"\"; }\n\n.bp3-icon-header-two::before{\n  content:\"\"; }\n\n.bp3-icon-headset::before{\n  content:\"\"; }\n\n.bp3-icon-heart::before{\n  content:\"♥\"; }\n\n.bp3-icon-heart-broken::before{\n  content:\"\"; }\n\n.bp3-icon-heat-grid::before{\n  content:\"\"; }\n\n.bp3-icon-heatmap::before{\n  content:\"\"; }\n\n.bp3-icon-help::before{\n  content:\"?\"; }\n\n.bp3-icon-helper-management::before{\n  content:\"\"; }\n\n.bp3-icon-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-history::before{\n  content:\"\"; }\n\n.bp3-icon-home::before{\n  content:\"⌂\"; }\n\n.bp3-icon-horizontal-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-id-number::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-left::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-right::before{\n  content:\"\"; }\n\n.bp3-icon-import::before{\n  content:\"\"; }\n\n.bp3-icon-inbox::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-geo::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-search::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-update::before{\n  content:\"\"; }\n\n.bp3-icon-info-sign::before{\n  content:\"ℹ\"; }\n\n.bp3-icon-inheritance::before{\n  content:\"\"; }\n\n.bp3-icon-inner-join::before{\n  content:\"\"; }\n\n.bp3-icon-insert::before{\n  content:\"\"; }\n\n.bp3-icon-intersection::before{\n  content:\"\"; }\n\n.bp3-icon-ip-address::before{\n  content:\"\"; }\n\n.bp3-icon-issue::before{\n  content:\"\"; }\n\n.bp3-icon-issue-closed::before{\n  content:\"\"; }\n\n.bp3-icon-issue-new::before{\n  content:\"\"; }\n\n.bp3-icon-italic::before{\n  content:\"\"; }\n\n.bp3-icon-join-table::before{\n  content:\"\"; }\n\n.bp3-icon-key::before{\n  content:\"\"; }\n\n.bp3-icon-key-backspace::before{\n  content:\"\"; }\n\n.bp3-icon-key-command::before{\n  content:\"\"; }\n\n.bp3-icon-key-control::before{\n  content:\"\"; }\n\n.bp3-icon-key-delete::before{\n  content:\"\"; }\n\n.bp3-icon-key-enter::before{\n  content:\"\"; }\n\n.bp3-icon-key-escape::before{\n  content:\"\"; }\n\n.bp3-icon-key-option::before{\n  content:\"\"; }\n\n.bp3-icon-key-shift::before{\n  content:\"\"; }\n\n.bp3-icon-key-tab::before{\n  content:\"\"; }\n\n.bp3-icon-known-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-lab-test::before{\n  content:\"\"; }\n\n.bp3-icon-label::before{\n  content:\"\"; }\n\n.bp3-icon-layer::before{\n  content:\"\"; }\n\n.bp3-icon-layers::before{\n  content:\"\"; }\n\n.bp3-icon-layout::before{\n  content:\"\"; }\n\n.bp3-icon-layout-auto::before{\n  content:\"\"; }\n\n.bp3-icon-layout-balloon::before{\n  content:\"\"; }\n\n.bp3-icon-layout-circle::before{\n  content:\"\"; }\n\n.bp3-icon-layout-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-group-by::before{\n  content:\"\"; }\n\n.bp3-icon-layout-hierarchy::before{\n  content:\"\"; }\n\n.bp3-icon-layout-linear::before{\n  content:\"\"; }\n\n.bp3-icon-layout-skew-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-sorted-clusters::before{\n  content:\"\"; }\n\n.bp3-icon-learning::before{\n  content:\"\"; }\n\n.bp3-icon-left-join::before{\n  content:\"\"; }\n\n.bp3-icon-less-than::before{\n  content:\"\"; }\n\n.bp3-icon-less-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-lifesaver::before{\n  content:\"\"; }\n\n.bp3-icon-lightbulb::before{\n  content:\"\"; }\n\n.bp3-icon-link::before{\n  content:\"\"; }\n\n.bp3-icon-list::before{\n  content:\"☰\"; }\n\n.bp3-icon-list-columns::before{\n  content:\"\"; }\n\n.bp3-icon-list-detail-view::before{\n  content:\"\"; }\n\n.bp3-icon-locate::before{\n  content:\"\"; }\n\n.bp3-icon-lock::before{\n  content:\"\"; }\n\n.bp3-icon-log-in::before{\n  content:\"\"; }\n\n.bp3-icon-log-out::before{\n  content:\"\"; }\n\n.bp3-icon-manual::before{\n  content:\"\"; }\n\n.bp3-icon-manually-entered-data::before{\n  content:\"\"; }\n\n.bp3-icon-map::before{\n  content:\"\"; }\n\n.bp3-icon-map-create::before{\n  content:\"\"; }\n\n.bp3-icon-map-marker::before{\n  content:\"\"; }\n\n.bp3-icon-maximize::before{\n  content:\"\"; }\n\n.bp3-icon-media::before{\n  content:\"\"; }\n\n.bp3-icon-menu::before{\n  content:\"\"; }\n\n.bp3-icon-menu-closed::before{\n  content:\"\"; }\n\n.bp3-icon-menu-open::before{\n  content:\"\"; }\n\n.bp3-icon-merge-columns::before{\n  content:\"\"; }\n\n.bp3-icon-merge-links::before{\n  content:\"\"; }\n\n.bp3-icon-minimize::before{\n  content:\"\"; }\n\n.bp3-icon-minus::before{\n  content:\"−\"; }\n\n.bp3-icon-mobile-phone::before{\n  content:\"\"; }\n\n.bp3-icon-mobile-video::before{\n  content:\"\"; }\n\n.bp3-icon-moon::before{\n  content:\"\"; }\n\n.bp3-icon-more::before{\n  content:\"\"; }\n\n.bp3-icon-mountain::before{\n  content:\"\"; }\n\n.bp3-icon-move::before{\n  content:\"\"; }\n\n.bp3-icon-mugshot::before{\n  content:\"\"; }\n\n.bp3-icon-multi-select::before{\n  content:\"\"; }\n\n.bp3-icon-music::before{\n  content:\"\"; }\n\n.bp3-icon-new-drawing::before{\n  content:\"\"; }\n\n.bp3-icon-new-grid-item::before{\n  content:\"\"; }\n\n.bp3-icon-new-layer::before{\n  content:\"\"; }\n\n.bp3-icon-new-layers::before{\n  content:\"\"; }\n\n.bp3-icon-new-link::before{\n  content:\"\"; }\n\n.bp3-icon-new-object::before{\n  content:\"\"; }\n\n.bp3-icon-new-person::before{\n  content:\"\"; }\n\n.bp3-icon-new-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-new-text-box::before{\n  content:\"\"; }\n\n.bp3-icon-ninja::before{\n  content:\"\"; }\n\n.bp3-icon-not-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-notifications::before{\n  content:\"\"; }\n\n.bp3-icon-notifications-updated::before{\n  content:\"\"; }\n\n.bp3-icon-numbered-list::before{\n  content:\"\"; }\n\n.bp3-icon-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-office::before{\n  content:\"\"; }\n\n.bp3-icon-offline::before{\n  content:\"\"; }\n\n.bp3-icon-oil-field::before{\n  content:\"\"; }\n\n.bp3-icon-one-column::before{\n  content:\"\"; }\n\n.bp3-icon-outdated::before{\n  content:\"\"; }\n\n.bp3-icon-page-layout::before{\n  content:\"\"; }\n\n.bp3-icon-panel-stats::before{\n  content:\"\"; }\n\n.bp3-icon-panel-table::before{\n  content:\"\"; }\n\n.bp3-icon-paperclip::before{\n  content:\"\"; }\n\n.bp3-icon-paragraph::before{\n  content:\"\"; }\n\n.bp3-icon-path::before{\n  content:\"\"; }\n\n.bp3-icon-path-search::before{\n  content:\"\"; }\n\n.bp3-icon-pause::before{\n  content:\"\"; }\n\n.bp3-icon-people::before{\n  content:\"\"; }\n\n.bp3-icon-percentage::before{\n  content:\"\"; }\n\n.bp3-icon-person::before{\n  content:\"\"; }\n\n.bp3-icon-phone::before{\n  content:\"☎\"; }\n\n.bp3-icon-pie-chart::before{\n  content:\"\"; }\n\n.bp3-icon-pin::before{\n  content:\"\"; }\n\n.bp3-icon-pivot::before{\n  content:\"\"; }\n\n.bp3-icon-pivot-table::before{\n  content:\"\"; }\n\n.bp3-icon-play::before{\n  content:\"\"; }\n\n.bp3-icon-plus::before{\n  content:\"+\"; }\n\n.bp3-icon-polygon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-power::before{\n  content:\"\"; }\n\n.bp3-icon-predictive-analysis::before{\n  content:\"\"; }\n\n.bp3-icon-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-presentation::before{\n  content:\"\"; }\n\n.bp3-icon-print::before{\n  content:\"⎙\"; }\n\n.bp3-icon-projects::before{\n  content:\"\"; }\n\n.bp3-icon-properties::before{\n  content:\"\"; }\n\n.bp3-icon-property::before{\n  content:\"\"; }\n\n.bp3-icon-publish-function::before{\n  content:\"\"; }\n\n.bp3-icon-pulse::before{\n  content:\"\"; }\n\n.bp3-icon-random::before{\n  content:\"\"; }\n\n.bp3-icon-record::before{\n  content:\"\"; }\n\n.bp3-icon-redo::before{\n  content:\"\"; }\n\n.bp3-icon-refresh::before{\n  content:\"\"; }\n\n.bp3-icon-regression-chart::before{\n  content:\"\"; }\n\n.bp3-icon-remove::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-repeat::before{\n  content:\"\"; }\n\n.bp3-icon-reset::before{\n  content:\"\"; }\n\n.bp3-icon-resolve::before{\n  content:\"\"; }\n\n.bp3-icon-rig::before{\n  content:\"\"; }\n\n.bp3-icon-right-join::before{\n  content:\"\"; }\n\n.bp3-icon-ring::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-document::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-page::before{\n  content:\"\"; }\n\n.bp3-icon-satellite::before{\n  content:\"\"; }\n\n.bp3-icon-saved::before{\n  content:\"\"; }\n\n.bp3-icon-scatter-plot::before{\n  content:\"\"; }\n\n.bp3-icon-search::before{\n  content:\"\"; }\n\n.bp3-icon-search-around::before{\n  content:\"\"; }\n\n.bp3-icon-search-template::before{\n  content:\"\"; }\n\n.bp3-icon-search-text::before{\n  content:\"\"; }\n\n.bp3-icon-segmented-control::before{\n  content:\"\"; }\n\n.bp3-icon-select::before{\n  content:\"\"; }\n\n.bp3-icon-selection::before{\n  content:\"⦿\"; }\n\n.bp3-icon-send-to::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-graph::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-map::before{\n  content:\"\"; }\n\n.bp3-icon-series-add::before{\n  content:\"\"; }\n\n.bp3-icon-series-configuration::before{\n  content:\"\"; }\n\n.bp3-icon-series-derived::before{\n  content:\"\"; }\n\n.bp3-icon-series-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-series-search::before{\n  content:\"\"; }\n\n.bp3-icon-settings::before{\n  content:\"\"; }\n\n.bp3-icon-share::before{\n  content:\"\"; }\n\n.bp3-icon-shield::before{\n  content:\"\"; }\n\n.bp3-icon-shop::before{\n  content:\"\"; }\n\n.bp3-icon-shopping-cart::before{\n  content:\"\"; }\n\n.bp3-icon-signal-search::before{\n  content:\"\"; }\n\n.bp3-icon-sim-card::before{\n  content:\"\"; }\n\n.bp3-icon-slash::before{\n  content:\"\"; }\n\n.bp3-icon-small-cross::before{\n  content:\"\"; }\n\n.bp3-icon-small-minus::before{\n  content:\"\"; }\n\n.bp3-icon-small-plus::before{\n  content:\"\"; }\n\n.bp3-icon-small-tick::before{\n  content:\"\"; }\n\n.bp3-icon-snowflake::before{\n  content:\"\"; }\n\n.bp3-icon-social-media::before{\n  content:\"\"; }\n\n.bp3-icon-sort::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-asc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-split-columns::before{\n  content:\"\"; }\n\n.bp3-icon-square::before{\n  content:\"\"; }\n\n.bp3-icon-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-star::before{\n  content:\"★\"; }\n\n.bp3-icon-star-empty::before{\n  content:\"☆\"; }\n\n.bp3-icon-step-backward::before{\n  content:\"\"; }\n\n.bp3-icon-step-chart::before{\n  content:\"\"; }\n\n.bp3-icon-step-forward::before{\n  content:\"\"; }\n\n.bp3-icon-stop::before{\n  content:\"\"; }\n\n.bp3-icon-stopwatch::before{\n  content:\"\"; }\n\n.bp3-icon-strikethrough::before{\n  content:\"\"; }\n\n.bp3-icon-style::before{\n  content:\"\"; }\n\n.bp3-icon-swap-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-swap-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-circle::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-cross::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-diamond::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-square::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-down::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-up::before{\n  content:\"\"; }\n\n.bp3-icon-tag::before{\n  content:\"\"; }\n\n.bp3-icon-take-action::before{\n  content:\"\"; }\n\n.bp3-icon-taxi::before{\n  content:\"\"; }\n\n.bp3-icon-text-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-th::before{\n  content:\"\"; }\n\n.bp3-icon-th-derived::before{\n  content:\"\"; }\n\n.bp3-icon-th-disconnect::before{\n  content:\"\"; }\n\n.bp3-icon-th-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-th-list::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-down::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-up::before{\n  content:\"\"; }\n\n.bp3-icon-tick::before{\n  content:\"✓\"; }\n\n.bp3-icon-tick-circle::before{\n  content:\"\"; }\n\n.bp3-icon-time::before{\n  content:\"⏲\"; }\n\n.bp3-icon-timeline-area-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-events::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-line-chart::before{\n  content:\"\"; }\n\n.bp3-icon-tint::before{\n  content:\"\"; }\n\n.bp3-icon-torch::before{\n  content:\"\"; }\n\n.bp3-icon-tractor::before{\n  content:\"\"; }\n\n.bp3-icon-train::before{\n  content:\"\"; }\n\n.bp3-icon-translate::before{\n  content:\"\"; }\n\n.bp3-icon-trash::before{\n  content:\"\"; }\n\n.bp3-icon-tree::before{\n  content:\"\"; }\n\n.bp3-icon-trending-down::before{\n  content:\"\"; }\n\n.bp3-icon-trending-up::before{\n  content:\"\"; }\n\n.bp3-icon-truck::before{\n  content:\"\"; }\n\n.bp3-icon-two-columns::before{\n  content:\"\"; }\n\n.bp3-icon-unarchive::before{\n  content:\"\"; }\n\n.bp3-icon-underline::before{\n  content:\"⎁\"; }\n\n.bp3-icon-undo::before{\n  content:\"⎌\"; }\n\n.bp3-icon-ungroup-objects::before{\n  content:\"\"; }\n\n.bp3-icon-unknown-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-unlock::before{\n  content:\"\"; }\n\n.bp3-icon-unpin::before{\n  content:\"\"; }\n\n.bp3-icon-unresolve::before{\n  content:\"\"; }\n\n.bp3-icon-updated::before{\n  content:\"\"; }\n\n.bp3-icon-upload::before{\n  content:\"\"; }\n\n.bp3-icon-user::before{\n  content:\"\"; }\n\n.bp3-icon-variable::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-video::before{\n  content:\"\"; }\n\n.bp3-icon-volume-down::before{\n  content:\"\"; }\n\n.bp3-icon-volume-off::before{\n  content:\"\"; }\n\n.bp3-icon-volume-up::before{\n  content:\"\"; }\n\n.bp3-icon-walk::before{\n  content:\"\"; }\n\n.bp3-icon-warning-sign::before{\n  content:\"\"; }\n\n.bp3-icon-waterfall-chart::before{\n  content:\"\"; }\n\n.bp3-icon-widget::before{\n  content:\"\"; }\n\n.bp3-icon-widget-button::before{\n  content:\"\"; }\n\n.bp3-icon-widget-footer::before{\n  content:\"\"; }\n\n.bp3-icon-widget-header::before{\n  content:\"\"; }\n\n.bp3-icon-wrench::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-in::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-out::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-to-fit::before{\n  content:\"\"; }\n.bp3-submenu > .bp3-popover-wrapper{\n  display:block; }\n\n.bp3-submenu .bp3-popover-target{\n  display:block; }\n  .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{ }\n\n.bp3-submenu.bp3-popover{\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0 5px; }\n  .bp3-submenu.bp3-popover > .bp3-popover-content{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-submenu.bp3-popover, .bp3-submenu.bp3-popover.bp3-dark{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-dark .bp3-submenu.bp3-popover > .bp3-popover-content, .bp3-submenu.bp3-popover.bp3-dark > .bp3-popover-content{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n.bp3-menu{\n  background:#ffffff;\n  border-radius:3px;\n  color:#182026;\n  list-style:none;\n  margin:0;\n  min-width:180px;\n  padding:5px;\n  text-align:left; }\n\n.bp3-menu-divider{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px; }\n  .bp3-dark .bp3-menu-divider{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-menu-item{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  border-radius:2px;\n  color:inherit;\n  line-height:20px;\n  padding:5px 7px;\n  text-decoration:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-menu-item > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-menu-item > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > *{\n    margin-right:7px; }\n  .bp3-menu-item:empty::before,\n  .bp3-menu-item > :last-child{\n    margin-right:0; }\n  .bp3-menu-item > .bp3-fill{\n    word-break:break-word; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    background-color:rgba(167, 182, 194, 0.3);\n    cursor:pointer;\n    text-decoration:none; }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-dark .bp3-menu-item{\n    color:inherit; }\n    .bp3-dark .bp3-menu-item:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n      background-color:rgba(138, 155, 168, 0.15);\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-disabled{\n      background-color:inherit;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-menu-item.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-primary::before, .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary:active, .bp3-menu-item.bp3-intent-primary:active::before, .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-success::before, .bp3-menu-item.bp3-intent-success::after,\n    .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-menu-item.bp3-intent-success:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success:active, .bp3-menu-item.bp3-intent-success:active::before, .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-warning::before, .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning:active, .bp3-menu-item.bp3-intent-warning:active::before, .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-danger::before, .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger:active, .bp3-menu-item.bp3-intent-danger:active::before, .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    margin-right:7px; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > .bp3-icon{\n    color:#5c7080;\n    margin-top:2px; }\n  .bp3-menu-item .bp3-menu-item-label{\n    color:#5c7080; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    color:inherit; }\n  .bp3-menu-item.bp3-active, .bp3-menu-item:active{\n    background-color:rgba(115, 134, 148, 0.3); }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit !important;\n    color:rgba(92, 112, 128, 0.6) !important;\n    cursor:not-allowed !important;\n    outline:none !important; }\n    .bp3-menu-item.bp3-disabled::before,\n    .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-large .bp3-menu-item{\n    font-size:16px;\n    line-height:22px;\n    padding:9px 7px; }\n    .bp3-large .bp3-menu-item .bp3-icon{\n      margin-top:3px; }\n    .bp3-large .bp3-menu-item::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      margin-right:10px;\n      margin-top:1px; }\n\nbutton.bp3-menu-item{\n  background:none;\n  border:none;\n  text-align:left;\n  width:100%; }\n.bp3-menu-header{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px;\n  cursor:default;\n  padding-left:2px; }\n  .bp3-dark .bp3-menu-header{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n  .bp3-menu-header:first-of-type{\n    border-top:none; }\n  .bp3-menu-header > h6{\n    color:#182026;\n    font-weight:600;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    line-height:17px;\n    margin:0;\n    padding:10px 7px 0 1px; }\n    .bp3-dark .bp3-menu-header > h6{\n      color:#f5f8fa; }\n  .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n  .bp3-large .bp3-menu-header > h6{\n    font-size:18px;\n    padding-bottom:5px;\n    padding-top:15px; }\n  .bp3-large .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n\n.bp3-dark .bp3-menu{\n  background:#30404d;\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-menu-item{ }\n  .bp3-dark .bp3-menu-item.bp3-intent-primary{\n    color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary::before, .bp3-dark .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary:active, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-success{\n    color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success::before, .bp3-dark .bp3-menu-item.bp3-intent-success::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success:active, .bp3-dark .bp3-menu-item.bp3-intent-success:active::before, .bp3-dark .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-warning{\n    color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning::before, .bp3-dark .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning:active, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-danger{\n    color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger::before, .bp3-dark .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger:active, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item::before,\n  .bp3-dark .bp3-menu-item > .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item .bp3-menu-item-label{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item.bp3-active, .bp3-dark .bp3-menu-item:active{\n    background-color:rgba(138, 155, 168, 0.3); }\n  .bp3-dark .bp3-menu-item.bp3-disabled{\n    color:rgba(167, 182, 194, 0.6) !important; }\n    .bp3-dark .bp3-menu-item.bp3-disabled::before,\n    .bp3-dark .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-dark .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(167, 182, 194, 0.6) !important; }\n\n.bp3-dark .bp3-menu-divider,\n.bp3-dark .bp3-menu-header{\n  border-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-dark .bp3-menu-header > h6{\n  color:#f5f8fa; }\n\n.bp3-label .bp3-menu{\n  margin-top:5px; }\n.bp3-navbar{\n  background-color:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  height:50px;\n  padding:0 15px;\n  position:relative;\n  width:100%;\n  z-index:10; }\n  .bp3-navbar.bp3-dark,\n  .bp3-dark .bp3-navbar{\n    background-color:#394b59; }\n  .bp3-navbar.bp3-dark{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-navbar{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-navbar.bp3-fixed-top{\n    left:0;\n    position:fixed;\n    right:0;\n    top:0; }\n\n.bp3-navbar-heading{\n  font-size:16px;\n  margin-right:15px; }\n\n.bp3-navbar-group{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:50px; }\n  .bp3-navbar-group.bp3-align-left{\n    float:left; }\n  .bp3-navbar-group.bp3-align-right{\n    float:right; }\n\n.bp3-navbar-divider{\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  height:20px;\n  margin:0 10px; }\n  .bp3-dark .bp3-navbar-divider{\n    border-left-color:rgba(255, 255, 255, 0.15); }\n.bp3-non-ideal-state{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  height:100%;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  text-align:center;\n  width:100%; }\n  .bp3-non-ideal-state > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-non-ideal-state > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-non-ideal-state::before,\n  .bp3-non-ideal-state > *{\n    margin-bottom:20px; }\n  .bp3-non-ideal-state:empty::before,\n  .bp3-non-ideal-state > :last-child{\n    margin-bottom:0; }\n  .bp3-non-ideal-state > *{\n    max-width:400px; }\n\n.bp3-non-ideal-state-visual{\n  color:rgba(92, 112, 128, 0.6);\n  font-size:60px; }\n  .bp3-dark .bp3-non-ideal-state-visual{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-overflow-list{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:nowrap;\n      flex-wrap:nowrap;\n  min-width:0; }\n\n.bp3-overflow-list-spacer{\n  -ms-flex-negative:1;\n      flex-shrink:1;\n  width:1px; }\n\nbody.bp3-overlay-open{\n  overflow:hidden; }\n\n.bp3-overlay{\n  bottom:0;\n  left:0;\n  position:static;\n  right:0;\n  top:0;\n  z-index:20; }\n  .bp3-overlay:not(.bp3-overlay-open){\n    pointer-events:none; }\n  .bp3-overlay.bp3-overlay-container{\n    overflow:hidden;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-scroll-container{\n    overflow:auto;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-scroll-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-inline{\n    display:inline;\n    overflow:visible; }\n\n.bp3-overlay-content{\n  position:fixed;\n  z-index:20; }\n  .bp3-overlay-inline .bp3-overlay-content,\n  .bp3-overlay-scroll-container .bp3-overlay-content{\n    position:absolute; }\n\n.bp3-overlay-backdrop{\n  bottom:0;\n  left:0;\n  position:fixed;\n  right:0;\n  top:0;\n  opacity:1;\n  background-color:rgba(16, 22, 26, 0.7);\n  overflow:auto;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  z-index:20; }\n  .bp3-overlay-backdrop.bp3-overlay-enter, .bp3-overlay-backdrop.bp3-overlay-appear{\n    opacity:0; }\n  .bp3-overlay-backdrop.bp3-overlay-enter-active, .bp3-overlay-backdrop.bp3-overlay-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop.bp3-overlay-exit{\n    opacity:1; }\n  .bp3-overlay-backdrop.bp3-overlay-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop:focus{\n    outline:none; }\n  .bp3-overlay-inline .bp3-overlay-backdrop{\n    position:absolute; }\n.bp3-panel-stack{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-view{\n    background-color:#30404d; }\n  .bp3-panel-stack-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter, .bp3-panel-stack-push .bp3-panel-stack-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter-active, .bp3-panel-stack-push .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter, .bp3-panel-stack-pop .bp3-panel-stack-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter-active, .bp3-panel-stack-pop .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-panel-stack2{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack2-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack2-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack2-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack2-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack2-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack2-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-view{\n    background-color:#30404d; }\n  .bp3-panel-stack2-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter, .bp3-panel-stack2-push .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter-active, .bp3-panel-stack2-push .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter, .bp3-panel-stack2-pop .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter-active, .bp3-panel-stack2-pop .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-popover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  border-radius:3px;\n  display:inline-block;\n  z-index:20; }\n  .bp3-popover .bp3-popover-arrow{\n    height:30px;\n    position:absolute;\n    width:30px; }\n    .bp3-popover .bp3-popover-arrow::before{\n      height:20px;\n      margin:5px;\n      width:20px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover{\n    margin-bottom:17px;\n    margin-top:-17px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n      bottom:-11px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover{\n    margin-left:17px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n      left:-11px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover{\n    margin-top:17px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n      top:-11px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover{\n    margin-left:-17px;\n    margin-right:17px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n      right:-11px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-popover > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-popover > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n    top:-0.3934px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n    right:-0.3934px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n    left:-0.3934px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n    bottom:-0.3934px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-popover .bp3-popover-content{\n    background:#ffffff;\n    color:inherit; }\n  .bp3-popover .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-popover .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-popover .bp3-popover-arrow-fill{\n    fill:#ffffff; }\n  .bp3-popover-enter > .bp3-popover, .bp3-popover-appear > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3); }\n  .bp3-popover-enter-active > .bp3-popover, .bp3-popover-appear-active > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover-exit > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover .bp3-popover-content{\n    border-radius:3px;\n    position:relative; }\n  .bp3-popover.bp3-popover-content-sizing .bp3-popover-content{\n    max-width:350px;\n    padding:20px; }\n  .bp3-popover-target + .bp3-overlay .bp3-popover.bp3-popover-content-sizing{\n    width:350px; }\n  .bp3-popover.bp3-minimal{\n    margin:0 !important; }\n    .bp3-popover.bp3-minimal .bp3-popover-arrow{\n      display:none; }\n    .bp3-popover.bp3-minimal.bp3-popover{\n      -webkit-transform:scale(1);\n              transform:scale(1); }\n      .bp3-popover-enter > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-enter-active > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n      .bp3-popover-exit > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-exit-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover.bp3-dark,\n  .bp3-dark .bp3-popover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-popover .bp3-popover-content{\n      background:#30404d;\n      color:inherit; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-popover .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-fill{\n      fill:#30404d; }\n\n.bp3-popover-arrow::before{\n  border-radius:2px;\n  content:\"\";\n  display:block;\n  position:absolute;\n  -webkit-transform:rotate(45deg);\n          transform:rotate(45deg); }\n\n.bp3-tether-pinned .bp3-popover-arrow{\n  display:none; }\n\n.bp3-popover-backdrop{\n  background:rgba(255, 255, 255, 0); }\n\n.bp3-transition-container{\n  opacity:1;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  z-index:20; }\n  .bp3-transition-container.bp3-popover-enter, .bp3-transition-container.bp3-popover-appear{\n    opacity:0; }\n  .bp3-transition-container.bp3-popover-enter-active, .bp3-transition-container.bp3-popover-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container.bp3-popover-exit{\n    opacity:1; }\n  .bp3-transition-container.bp3-popover-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container:focus{\n    outline:none; }\n  .bp3-transition-container.bp3-popover-leave .bp3-popover-content{\n    pointer-events:none; }\n  .bp3-transition-container[data-x-out-of-boundaries]{\n    display:none; }\n\nspan.bp3-popover-target{\n  display:inline-block; }\n\n.bp3-popover-wrapper.bp3-fill{\n  width:100%; }\n\n.bp3-portal{\n  left:0;\n  position:absolute;\n  right:0;\n  top:0; }\n@-webkit-keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n@keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n\n.bp3-progress-bar{\n  background:rgba(92, 112, 128, 0.2);\n  border-radius:40px;\n  display:block;\n  height:8px;\n  overflow:hidden;\n  position:relative;\n  width:100%; }\n  .bp3-progress-bar .bp3-progress-meter{\n    background:linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%);\n    background-color:rgba(92, 112, 128, 0.8);\n    background-size:30px 30px;\n    border-radius:40px;\n    height:100%;\n    position:absolute;\n    -webkit-transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:100%; }\n  .bp3-progress-bar:not(.bp3-no-animation):not(.bp3-no-stripes) .bp3-progress-meter{\n    animation:linear-progress-bar-stripes 300ms linear infinite reverse; }\n  .bp3-progress-bar.bp3-no-stripes .bp3-progress-meter{\n    background-image:none; }\n\n.bp3-dark .bp3-progress-bar{\n  background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-progress-bar .bp3-progress-meter{\n    background-color:#8a9ba8; }\n\n.bp3-progress-bar.bp3-intent-primary .bp3-progress-meter{\n  background-color:#137cbd; }\n\n.bp3-progress-bar.bp3-intent-success .bp3-progress-meter{\n  background-color:#0f9960; }\n\n.bp3-progress-bar.bp3-intent-warning .bp3-progress-meter{\n  background-color:#d9822b; }\n\n.bp3-progress-bar.bp3-intent-danger .bp3-progress-meter{\n  background-color:#db3737; }\n@-webkit-keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n@keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n.bp3-skeleton{\n  -webkit-animation:1000ms linear infinite alternate skeleton-glow;\n          animation:1000ms linear infinite alternate skeleton-glow;\n  background:rgba(206, 217, 224, 0.2);\n  background-clip:padding-box !important;\n  border-color:rgba(206, 217, 224, 0.2) !important;\n  border-radius:2px;\n  -webkit-box-shadow:none !important;\n          box-shadow:none !important;\n  color:transparent !important;\n  cursor:default;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-skeleton::before, .bp3-skeleton::after,\n  .bp3-skeleton *{\n    visibility:hidden !important; }\n.bp3-slider{\n  height:40px;\n  min-width:150px;\n  width:100%;\n  cursor:default;\n  outline:none;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-slider:hover{\n    cursor:pointer; }\n  .bp3-slider:active{\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-slider.bp3-disabled{\n    cursor:not-allowed;\n    opacity:0.5; }\n  .bp3-slider.bp3-slider-unlabeled{\n    height:16px; }\n\n.bp3-slider-track,\n.bp3-slider-progress{\n  height:6px;\n  left:0;\n  right:0;\n  top:5px;\n  position:absolute; }\n\n.bp3-slider-track{\n  border-radius:3px;\n  overflow:hidden; }\n\n.bp3-slider-progress{\n  background:rgba(92, 112, 128, 0.2); }\n  .bp3-dark .bp3-slider-progress{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-slider-progress.bp3-intent-primary{\n    background-color:#137cbd; }\n  .bp3-slider-progress.bp3-intent-success{\n    background-color:#0f9960; }\n  .bp3-slider-progress.bp3-intent-warning{\n    background-color:#d9822b; }\n  .bp3-slider-progress.bp3-intent-danger{\n    background-color:#db3737; }\n\n.bp3-slider-handle{\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n  cursor:pointer;\n  height:16px;\n  left:0;\n  position:absolute;\n  top:0;\n  width:16px; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-slider-handle:active, .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-slider-handle:disabled, .bp3-slider-handle.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-slider-handle:disabled.bp3-active, .bp3-slider-handle:disabled.bp3-active:hover, .bp3-slider-handle.bp3-disabled.bp3-active, .bp3-slider-handle.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n  .bp3-slider-handle:focus{\n    z-index:1; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n    cursor:-webkit-grab;\n    cursor:grab;\n    z-index:2; }\n  .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-disabled .bp3-slider-handle{\n    background:#bfccd6;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    pointer-events:none; }\n  .bp3-dark .bp3-slider-handle{\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover, .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-slider-handle:disabled, .bp3-dark .bp3-slider-handle.bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-slider-handle:disabled.bp3-active, .bp3-dark .bp3-slider-handle.bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-slider-handle .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-slider-handle, .bp3-dark .bp3-slider-handle:hover{\n      background-color:#394b59; }\n    .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#293742; }\n  .bp3-dark .bp3-disabled .bp3-slider-handle{\n    background:#5c7080;\n    border-color:#5c7080;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-slider-handle .bp3-slider-label{\n    background:#394b59;\n    border-radius:3px;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n    color:#f5f8fa;\n    margin-left:8px; }\n    .bp3-dark .bp3-slider-handle .bp3-slider-label{\n      background:#e1e8ed;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n      color:#394b59; }\n    .bp3-disabled .bp3-slider-handle .bp3-slider-label{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-slider-handle.bp3-start, .bp3-slider-handle.bp3-end{\n    width:8px; }\n  .bp3-slider-handle.bp3-start{\n    border-bottom-right-radius:0;\n    border-top-right-radius:0; }\n  .bp3-slider-handle.bp3-end{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0;\n    margin-left:8px; }\n    .bp3-slider-handle.bp3-end .bp3-slider-label{\n      margin-left:0; }\n\n.bp3-slider-label{\n  -webkit-transform:translate(-50%, 20px);\n          transform:translate(-50%, 20px);\n  display:inline-block;\n  font-size:12px;\n  line-height:1;\n  padding:2px 5px;\n  position:absolute;\n  vertical-align:top; }\n\n.bp3-slider.bp3-vertical{\n  height:150px;\n  min-width:40px;\n  width:40px; }\n  .bp3-slider.bp3-vertical .bp3-slider-track,\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    bottom:0;\n    height:auto;\n    left:5px;\n    top:0;\n    width:6px; }\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    top:auto; }\n  .bp3-slider.bp3-vertical .bp3-slider-label{\n    -webkit-transform:translate(20px, 50%);\n            transform:translate(20px, 50%); }\n  .bp3-slider.bp3-vertical .bp3-slider-handle{\n    top:auto; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle .bp3-slider-label{\n      margin-left:0;\n      margin-top:-8px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end, .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      height:8px;\n      margin-left:0;\n      width:16px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      border-bottom-right-radius:3px;\n      border-top-left-radius:0; }\n      .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start .bp3-slider-label{\n        -webkit-transform:translate(20px);\n                transform:translate(20px); }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end{\n      border-bottom-left-radius:0;\n      border-bottom-right-radius:0;\n      border-top-left-radius:3px;\n      margin-bottom:8px; }\n\n@-webkit-keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n@keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n.bp3-spinner{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  overflow:visible;\n  vertical-align:middle; }\n  .bp3-spinner svg{\n    display:block; }\n  .bp3-spinner path{\n    fill-opacity:0; }\n  .bp3-spinner .bp3-spinner-head{\n    stroke:rgba(92, 112, 128, 0.8);\n    stroke-linecap:round;\n    -webkit-transform-origin:center;\n            transform-origin:center;\n    -webkit-transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-spinner .bp3-spinner-track{\n    stroke:rgba(92, 112, 128, 0.2); }\n\n.bp3-spinner-animation{\n  -webkit-animation:pt-spinner-animation 500ms linear infinite;\n          animation:pt-spinner-animation 500ms linear infinite; }\n  .bp3-no-spin > .bp3-spinner-animation{\n    -webkit-animation:none;\n            animation:none; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-head{\n  stroke:#8a9ba8; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-track{\n  stroke:rgba(16, 22, 26, 0.5); }\n\n.bp3-spinner.bp3-intent-primary .bp3-spinner-head{\n  stroke:#137cbd; }\n\n.bp3-spinner.bp3-intent-success .bp3-spinner-head{\n  stroke:#0f9960; }\n\n.bp3-spinner.bp3-intent-warning .bp3-spinner-head{\n  stroke:#d9822b; }\n\n.bp3-spinner.bp3-intent-danger .bp3-spinner-head{\n  stroke:#db3737; }\n.bp3-tabs.bp3-vertical{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-list{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab{\n      border-radius:3px;\n      padding:0 10px;\n      width:100%; }\n      .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab[aria-selected=\"true\"]{\n        background-color:rgba(19, 124, 189, 0.2);\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n      background-color:rgba(19, 124, 189, 0.2);\n      border-radius:3px;\n      bottom:0;\n      height:auto;\n      left:0;\n      right:0;\n      top:0; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-panel{\n    margin-top:0;\n    padding-left:20px; }\n\n.bp3-tab-list{\n  -webkit-box-align:end;\n      -ms-flex-align:end;\n          align-items:flex-end;\n  border:none;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  list-style:none;\n  margin:0;\n  padding:0;\n  position:relative; }\n  .bp3-tab-list > *:not(:last-child){\n    margin-right:20px; }\n\n.bp3-tab{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:#182026;\n  cursor:pointer;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  font-size:14px;\n  line-height:30px;\n  max-width:100%;\n  position:relative;\n  vertical-align:top; }\n  .bp3-tab a{\n    color:inherit;\n    display:block;\n    text-decoration:none; }\n  .bp3-tab-indicator-wrapper ~ .bp3-tab{\n    background-color:transparent !important;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important; }\n  .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-tab[aria-selected=\"true\"]{\n    border-radius:0;\n    -webkit-box-shadow:inset 0 -3px 0 #106ba3;\n            box-shadow:inset 0 -3px 0 #106ba3; }\n  .bp3-tab[aria-selected=\"true\"], .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#106ba3; }\n  .bp3-tab:focus{\n    -moz-outline-radius:0; }\n  .bp3-large > .bp3-tab{\n    font-size:16px;\n    line-height:40px; }\n\n.bp3-tab-panel{\n  margin-top:20px; }\n  .bp3-tab-panel[aria-hidden=\"true\"]{\n    display:none; }\n\n.bp3-tab-indicator-wrapper{\n  left:0;\n  pointer-events:none;\n  position:absolute;\n  top:0;\n  -webkit-transform:translateX(0), translateY(0);\n          transform:translateX(0), translateY(0);\n  -webkit-transition:height, width, -webkit-transform;\n  transition:height, width, -webkit-transform;\n  transition:height, transform, width;\n  transition:height, transform, width, -webkit-transform;\n  -webkit-transition-duration:200ms;\n          transition-duration:200ms;\n  -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n          transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n    background-color:#106ba3;\n    bottom:0;\n    height:3px;\n    left:0;\n    position:absolute;\n    right:0; }\n  .bp3-tab-indicator-wrapper.bp3-no-animation{\n    -webkit-transition:none;\n    transition:none; }\n\n.bp3-dark .bp3-tab{\n  color:#f5f8fa; }\n  .bp3-dark .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"]{\n    -webkit-box-shadow:inset 0 -3px 0 #48aff0;\n            box-shadow:inset 0 -3px 0 #48aff0; }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"], .bp3-dark .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#48aff0; }\n\n.bp3-dark .bp3-tab-indicator{\n  background-color:#48aff0; }\n\n.bp3-flex-expander{\n  -webkit-box-flex:1;\n      -ms-flex:1 1;\n          flex:1 1; }\n.bp3-tag{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#5c7080;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:#f5f8fa;\n  font-size:12px;\n  line-height:16px;\n  max-width:100%;\n  min-height:20px;\n  min-width:20px;\n  padding:2px 6px;\n  position:relative; }\n  .bp3-tag.bp3-interactive{\n    cursor:pointer; }\n    .bp3-tag.bp3-interactive:hover{\n      background-color:rgba(92, 112, 128, 0.85); }\n    .bp3-tag.bp3-interactive.bp3-active, .bp3-tag.bp3-interactive:active{\n      background-color:rgba(92, 112, 128, 0.7); }\n  .bp3-tag > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag::before,\n  .bp3-tag > *{\n    margin-right:4px; }\n  .bp3-tag:empty::before,\n  .bp3-tag > :last-child{\n    margin-right:0; }\n  .bp3-tag:focus{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:0;\n    -moz-outline-radius:6px; }\n  .bp3-tag.bp3-round{\n    border-radius:30px;\n    padding-left:8px;\n    padding-right:8px; }\n  .bp3-dark .bp3-tag{\n    background-color:#bfccd6;\n    color:#182026; }\n    .bp3-dark .bp3-tag.bp3-interactive{\n      cursor:pointer; }\n      .bp3-dark .bp3-tag.bp3-interactive:hover{\n        background-color:rgba(191, 204, 214, 0.85); }\n      .bp3-dark .bp3-tag.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-interactive:active{\n        background-color:rgba(191, 204, 214, 0.7); }\n    .bp3-dark .bp3-tag > .bp3-icon, .bp3-dark .bp3-tag .bp3-icon-standard, .bp3-dark .bp3-tag .bp3-icon-large{\n      fill:currentColor; }\n  .bp3-tag > .bp3-icon, .bp3-tag .bp3-icon-standard, .bp3-tag .bp3-icon-large{\n    fill:#ffffff; }\n  .bp3-tag.bp3-large,\n  .bp3-large .bp3-tag{\n    font-size:14px;\n    line-height:20px;\n    min-height:30px;\n    min-width:30px;\n    padding:5px 10px; }\n    .bp3-tag.bp3-large::before,\n    .bp3-tag.bp3-large > *,\n    .bp3-large .bp3-tag::before,\n    .bp3-large .bp3-tag > *{\n      margin-right:7px; }\n    .bp3-tag.bp3-large:empty::before,\n    .bp3-tag.bp3-large > :last-child,\n    .bp3-large .bp3-tag:empty::before,\n    .bp3-large .bp3-tag > :last-child{\n      margin-right:0; }\n    .bp3-tag.bp3-large.bp3-round,\n    .bp3-large .bp3-tag.bp3-round{\n      padding-left:12px;\n      padding-right:12px; }\n  .bp3-tag.bp3-intent-primary{\n    background:#137cbd;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.85); }\n      .bp3-tag.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.7); }\n  .bp3-tag.bp3-intent-success{\n    background:#0f9960;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.85); }\n      .bp3-tag.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.7); }\n  .bp3-tag.bp3-intent-warning{\n    background:#d9822b;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.85); }\n      .bp3-tag.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.7); }\n  .bp3-tag.bp3-intent-danger{\n    background:#db3737;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.85); }\n      .bp3-tag.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.7); }\n  .bp3-tag.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-tag.bp3-minimal > .bp3-icon, .bp3-tag.bp3-minimal .bp3-icon-standard, .bp3-tag.bp3-minimal .bp3-icon-large{\n    fill:#5c7080; }\n  .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n    background-color:rgba(138, 155, 168, 0.2);\n    color:#182026; }\n    .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n        background-color:rgba(92, 112, 128, 0.3); }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n        background-color:rgba(92, 112, 128, 0.4); }\n    .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n      color:#f5f8fa; }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n          background-color:rgba(191, 204, 214, 0.3); }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n          background-color:rgba(191, 204, 214, 0.4); }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) > .bp3-icon, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n        fill:#a7b6c2; }\n  .bp3-tag.bp3-minimal.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15);\n    color:#106ba3; }\n    .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-primary > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-large{\n      fill:#137cbd; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25);\n      color:#48aff0; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n          background-color:rgba(19, 124, 189, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n          background-color:rgba(19, 124, 189, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15);\n    color:#0d8050; }\n    .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-success > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-large{\n      fill:#0f9960; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25);\n      color:#3dcc91; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n          background-color:rgba(15, 153, 96, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n          background-color:rgba(15, 153, 96, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15);\n    color:#bf7326; }\n    .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-warning > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-large{\n      fill:#d9822b; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25);\n      color:#ffb366; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n          background-color:rgba(217, 130, 43, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n          background-color:rgba(217, 130, 43, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15);\n    color:#c23030; }\n    .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-danger > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-large{\n      fill:#db3737; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25);\n      color:#ff7373; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n          background-color:rgba(219, 55, 55, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n          background-color:rgba(219, 55, 55, 0.45); }\n\n.bp3-tag-remove{\n  background:none;\n  border:none;\n  color:inherit;\n  cursor:pointer;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin-bottom:-2px;\n  margin-right:-6px !important;\n  margin-top:-2px;\n  opacity:0.5;\n  padding:2px;\n  padding-left:0; }\n  .bp3-tag-remove:hover{\n    background:none;\n    opacity:0.8;\n    text-decoration:none; }\n  .bp3-tag-remove:active{\n    opacity:1; }\n  .bp3-tag-remove:empty::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    content:\"\"; }\n  .bp3-large .bp3-tag-remove{\n    margin-right:-10px !important;\n    padding:0 5px 0 0; }\n    .bp3-large .bp3-tag-remove:empty::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1; }\n.bp3-tag-input{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  cursor:text;\n  height:auto;\n  line-height:inherit;\n  min-height:30px;\n  padding-left:5px;\n  padding-right:0; }\n  .bp3-tag-input > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag-input > .bp3-tag-input-values{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag-input .bp3-tag-input-icon{\n    color:#5c7080;\n    margin-left:2px;\n    margin-right:7px;\n    margin-top:7px; }\n  .bp3-tag-input .bp3-tag-input-values{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row;\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    -ms-flex-item-align:stretch;\n        align-self:stretch;\n    -ms-flex-wrap:wrap;\n        flex-wrap:wrap;\n    margin-right:7px;\n    margin-top:5px;\n    min-width:0; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      -webkit-box-flex:0;\n          -ms-flex-positive:0;\n              flex-grow:0;\n      -ms-flex-negative:0;\n          flex-shrink:0; }\n    .bp3-tag-input .bp3-tag-input-values > .bp3-fill{\n      -webkit-box-flex:1;\n          -ms-flex-positive:1;\n              flex-grow:1;\n      -ms-flex-negative:1;\n          flex-shrink:1; }\n    .bp3-tag-input .bp3-tag-input-values::before,\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-right:5px; }\n    .bp3-tag-input .bp3-tag-input-values:empty::before,\n    .bp3-tag-input .bp3-tag-input-values > :last-child{\n      margin-right:0; }\n    .bp3-tag-input .bp3-tag-input-values:first-child .bp3-input-ghost:first-child{\n      padding-left:5px; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-bottom:5px; }\n  .bp3-tag-input .bp3-tag{\n    overflow-wrap:break-word; }\n    .bp3-tag-input .bp3-tag.bp3-active{\n      outline:rgba(19, 124, 189, 0.6) auto 2px;\n      outline-offset:0;\n      -moz-outline-radius:6px; }\n  .bp3-tag-input .bp3-input-ghost{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:20px;\n    width:80px; }\n    .bp3-tag-input .bp3-input-ghost:disabled, .bp3-tag-input .bp3-input-ghost.bp3-disabled{\n      cursor:not-allowed; }\n  .bp3-tag-input .bp3-button,\n  .bp3-tag-input .bp3-spinner{\n    margin:3px;\n    margin-left:0; }\n  .bp3-tag-input .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-tag-input.bp3-large{\n    height:auto;\n    min-height:40px; }\n    .bp3-tag-input.bp3-large::before,\n    .bp3-tag-input.bp3-large > *{\n      margin-right:10px; }\n    .bp3-tag-input.bp3-large:empty::before,\n    .bp3-tag-input.bp3-large > :last-child{\n      margin-right:0; }\n    .bp3-tag-input.bp3-large .bp3-tag-input-icon{\n      margin-left:5px;\n      margin-top:10px; }\n    .bp3-tag-input.bp3-large .bp3-input-ghost{\n      line-height:30px; }\n    .bp3-tag-input.bp3-large .bp3-button{\n      min-height:30px;\n      min-width:30px;\n      padding:5px 10px;\n      margin:5px;\n      margin-left:0; }\n    .bp3-tag-input.bp3-large .bp3-spinner{\n      margin:8px;\n      margin-left:0; }\n  .bp3-tag-input.bp3-active{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-tag-input .bp3-tag-input-icon, .bp3-tag-input.bp3-dark .bp3-tag-input-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-tag-input .bp3-input-ghost, .bp3-tag-input.bp3-dark .bp3-input-ghost{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-webkit-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-moz-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost:-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tag-input.bp3-active, .bp3-tag-input.bp3-dark.bp3-active{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-primary, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-success, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-warning, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-danger, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-input-ghost{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0; }\n  .bp3-input-ghost::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:focus{\n    outline:none !important; }\n.bp3-toast{\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:20px 0 0;\n  max-width:500px;\n  min-width:300px;\n  pointer-events:all;\n  position:relative !important; }\n  .bp3-toast.bp3-toast-enter, .bp3-toast.bp3-toast-appear{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active, .bp3-toast.bp3-toast-appear-active{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-enter ~ .bp3-toast, .bp3-toast.bp3-toast-appear ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active ~ .bp3-toast, .bp3-toast.bp3-toast-appear-active ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-exit{\n    opacity:1;\n    -webkit-filter:blur(0);\n            filter:blur(0); }\n  .bp3-toast.bp3-toast-exit-active{\n    opacity:0;\n    -webkit-filter:blur(10px);\n            filter:blur(10px);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:opacity, filter;\n    transition-property:opacity, filter, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast.bp3-toast-exit ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0); }\n  .bp3-toast.bp3-toast-exit-active ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px);\n    -webkit-transition-delay:50ms;\n            transition-delay:50ms;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast .bp3-button-group{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    padding:5px;\n    padding-left:0; }\n  .bp3-toast > .bp3-icon{\n    color:#5c7080;\n    margin:12px;\n    margin-right:0; }\n  .bp3-toast.bp3-dark,\n  .bp3-dark .bp3-toast{\n    background-color:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-toast.bp3-dark > .bp3-icon,\n    .bp3-dark .bp3-toast > .bp3-icon{\n      color:#a7b6c2; }\n  .bp3-toast[class*=\"bp3-intent-\"] a{\n    color:rgba(255, 255, 255, 0.7); }\n    .bp3-toast[class*=\"bp3-intent-\"] a:hover{\n      color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] > .bp3-icon{\n    color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::before,\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button .bp3-icon, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    color:rgba(255, 255, 255, 0.7) !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:focus{\n    outline-color:rgba(255, 255, 255, 0.5); }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:hover{\n    background-color:rgba(255, 255, 255, 0.15) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    background-color:rgba(255, 255, 255, 0.3) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::after{\n    background:rgba(255, 255, 255, 0.3) !important; }\n  .bp3-toast.bp3-intent-primary{\n    background-color:#137cbd;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-success{\n    background-color:#0f9960;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-warning{\n    background-color:#d9822b;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-danger{\n    background-color:#db3737;\n    color:#ffffff; }\n\n.bp3-toast-message{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  padding:11px;\n  word-break:break-word; }\n\n.bp3-toast-container{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box !important;\n  display:-ms-flexbox !important;\n  display:flex !important;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  left:0;\n  overflow:hidden;\n  padding:0 20px 20px;\n  pointer-events:none;\n  right:0;\n  z-index:40; }\n  .bp3-toast-container.bp3-toast-container-in-portal{\n    position:fixed; }\n  .bp3-toast-container.bp3-toast-container-inline{\n    position:absolute; }\n  .bp3-toast-container.bp3-toast-container-top{\n    top:0; }\n  .bp3-toast-container.bp3-toast-container-bottom{\n    bottom:0;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:reverse;\n        -ms-flex-direction:column-reverse;\n            flex-direction:column-reverse;\n    top:auto; }\n  .bp3-toast-container.bp3-toast-container-left{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start; }\n  .bp3-toast-container.bp3-toast-container-right{\n    -webkit-box-align:end;\n        -ms-flex-align:end;\n            align-items:flex-end; }\n\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active) ~ .bp3-toast, .bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active) ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-exit-active ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-leave-active ~ .bp3-toast{\n  -webkit-transform:translateY(60px);\n          transform:translateY(60px); }\n.bp3-tooltip{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1); }\n  .bp3-tooltip .bp3-popover-arrow{\n    height:22px;\n    position:absolute;\n    width:22px; }\n    .bp3-tooltip .bp3-popover-arrow::before{\n      height:14px;\n      margin:4px;\n      width:14px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip{\n    margin-bottom:11px;\n    margin-top:-11px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n      bottom:-8px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip{\n    margin-left:11px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n      left:-8px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip{\n    margin-top:11px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n      top:-8px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip{\n    margin-left:-11px;\n    margin-right:11px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n      right:-8px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-tooltip > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-tooltip > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n    top:-0.22183px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n    right:-0.22183px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n    left:-0.22183px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n    bottom:-0.22183px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-tooltip .bp3-popover-content{\n    background:#394b59;\n    color:#f5f8fa; }\n  .bp3-tooltip .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-tooltip .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-tooltip .bp3-popover-arrow-fill{\n    fill:#394b59; }\n  .bp3-popover-enter > .bp3-tooltip, .bp3-popover-appear > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8); }\n  .bp3-popover-enter-active > .bp3-tooltip, .bp3-popover-appear-active > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover-exit > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tooltip .bp3-popover-content{\n    padding:10px 12px; }\n  .bp3-tooltip.bp3-dark,\n  .bp3-dark .bp3-tooltip{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-tooltip .bp3-popover-content{\n      background:#e1e8ed;\n      color:#394b59; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-fill{\n      fill:#e1e8ed; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-content{\n    background:#137cbd;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-arrow-fill{\n    fill:#137cbd; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-content{\n    background:#0f9960;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-arrow-fill{\n    fill:#0f9960; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-content{\n    background:#d9822b;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-arrow-fill{\n    fill:#d9822b; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-content{\n    background:#db3737;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-arrow-fill{\n    fill:#db3737; }\n\n.bp3-tooltip-indicator{\n  border-bottom:dotted 1px;\n  cursor:help; }\n.bp3-tree .bp3-icon, .bp3-tree .bp3-icon-standard, .bp3-tree .bp3-icon-large{\n  color:#5c7080; }\n  .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-tree .bp3-icon.bp3-intent-success, .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-tree-node-list{\n  list-style:none;\n  margin:0;\n  padding-left:0; }\n\n.bp3-tree-root{\n  background-color:transparent;\n  cursor:default;\n  padding-left:0;\n  position:relative; }\n\n.bp3-tree-node-content-0{\n  padding-left:0px; }\n\n.bp3-tree-node-content-1{\n  padding-left:23px; }\n\n.bp3-tree-node-content-2{\n  padding-left:46px; }\n\n.bp3-tree-node-content-3{\n  padding-left:69px; }\n\n.bp3-tree-node-content-4{\n  padding-left:92px; }\n\n.bp3-tree-node-content-5{\n  padding-left:115px; }\n\n.bp3-tree-node-content-6{\n  padding-left:138px; }\n\n.bp3-tree-node-content-7{\n  padding-left:161px; }\n\n.bp3-tree-node-content-8{\n  padding-left:184px; }\n\n.bp3-tree-node-content-9{\n  padding-left:207px; }\n\n.bp3-tree-node-content-10{\n  padding-left:230px; }\n\n.bp3-tree-node-content-11{\n  padding-left:253px; }\n\n.bp3-tree-node-content-12{\n  padding-left:276px; }\n\n.bp3-tree-node-content-13{\n  padding-left:299px; }\n\n.bp3-tree-node-content-14{\n  padding-left:322px; }\n\n.bp3-tree-node-content-15{\n  padding-left:345px; }\n\n.bp3-tree-node-content-16{\n  padding-left:368px; }\n\n.bp3-tree-node-content-17{\n  padding-left:391px; }\n\n.bp3-tree-node-content-18{\n  padding-left:414px; }\n\n.bp3-tree-node-content-19{\n  padding-left:437px; }\n\n.bp3-tree-node-content-20{\n  padding-left:460px; }\n\n.bp3-tree-node-content{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:30px;\n  padding-right:5px;\n  width:100%; }\n  .bp3-tree-node-content:hover{\n    background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-tree-node-caret,\n.bp3-tree-node-caret-none{\n  min-width:30px; }\n\n.bp3-tree-node-caret{\n  color:#5c7080;\n  cursor:pointer;\n  padding:7px;\n  -webkit-transform:rotate(0deg);\n          transform:rotate(0deg);\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tree-node-caret:hover{\n    color:#182026; }\n  .bp3-dark .bp3-tree-node-caret{\n    color:#a7b6c2; }\n    .bp3-dark .bp3-tree-node-caret:hover{\n      color:#f5f8fa; }\n  .bp3-tree-node-caret.bp3-tree-node-caret-open{\n    -webkit-transform:rotate(90deg);\n            transform:rotate(90deg); }\n  .bp3-tree-node-caret.bp3-icon-standard::before{\n    content:\"\"; }\n\n.bp3-tree-node-icon{\n  margin-right:7px;\n  position:relative; }\n\n.bp3-tree-node-label{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-label span{\n    display:inline; }\n\n.bp3-tree-node-secondary-label{\n  padding:0 5px;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-secondary-label .bp3-popover-wrapper,\n  .bp3-tree-node-secondary-label .bp3-popover-target{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-content{\n  background-color:inherit;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-caret,\n.bp3-tree-node.bp3-disabled .bp3-tree-node-icon{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content,\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-standard, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-large{\n    color:#ffffff; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret::before{\n    color:rgba(255, 255, 255, 0.7); }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret:hover::before{\n    color:#ffffff; }\n\n.bp3-dark .bp3-tree-node-content:hover{\n  background-color:rgba(92, 112, 128, 0.3); }\n\n.bp3-dark .bp3-tree .bp3-icon, .bp3-dark .bp3-tree .bp3-icon-standard, .bp3-dark .bp3-tree .bp3-icon-large{\n  color:#a7b6c2; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-dark .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n.bp3-omnibar{\n  -webkit-filter:blur(0);\n          filter:blur(0);\n  opacity:1;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  left:calc(50% - 250px);\n  top:20vh;\n  width:500px;\n  z-index:21; }\n  .bp3-omnibar.bp3-overlay-enter, .bp3-omnibar.bp3-overlay-appear{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2; }\n  .bp3-omnibar.bp3-overlay-enter-active, .bp3-omnibar.bp3-overlay-appear-active{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar.bp3-overlay-exit{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1; }\n  .bp3-omnibar.bp3-overlay-exit-active{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar .bp3-input{\n    background-color:transparent;\n    border-radius:0; }\n    .bp3-omnibar .bp3-input, .bp3-omnibar .bp3-input:focus{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-omnibar .bp3-menu{\n    background-color:transparent;\n    border-radius:0;\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n    max-height:calc(60vh - 40px);\n    overflow:auto; }\n    .bp3-omnibar .bp3-menu:empty{\n      display:none; }\n  .bp3-dark .bp3-omnibar, .bp3-omnibar.bp3-dark{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-omnibar-overlay .bp3-overlay-backdrop{\n  background-color:rgba(16, 22, 26, 0.2); }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n\n.bp3-multi-select{\n  min-width:150px; }\n\n.bp3-multi-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto; }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* This file was auto-generated by ensureUiComponents() in @jupyterlab/buildutils */\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n/* Icons urls */\n\n:root {\n  --jp-icon-add: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDEzaC02djZoLTJ2LTZINXYtMmg2VjVoMnY2aDZ2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-bug: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0yMCA4aC0yLjgxYy0uNDUtLjc4LTEuMDctMS40NS0xLjgyLTEuOTZMMTcgNC40MSAxNS41OSAzbC0yLjE3IDIuMTdDMTIuOTYgNS4wNiAxMi40OSA1IDEyIDVjLS40OSAwLS45Ni4wNi0xLjQxLjE3TDguNDEgMyA3IDQuNDFsMS42MiAxLjYzQzcuODggNi41NSA3LjI2IDcuMjIgNi44MSA4SDR2MmgyLjA5Yy0uMDUuMzMtLjA5LjY2LS4wOSAxdjFINHYyaDJ2MWMwIC4zNC4wNC42Ny4wOSAxSDR2MmgyLjgxYzEuMDQgMS43OSAyLjk3IDMgNS4xOSAzczQuMTUtMS4yMSA1LjE5LTNIMjB2LTJoLTIuMDljLjA1LS4zMy4wOS0uNjYuMDktMXYtMWgydi0yaC0ydi0xYzAtLjM0LS4wNC0uNjctLjA5LTFIMjBWOHptLTYgOGgtNHYtMmg0djJ6bTAtNGgtNHYtMmg0djJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-build: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE0LjkgMTcuNDVDMTYuMjUgMTcuNDUgMTcuMzUgMTYuMzUgMTcuMzUgMTVDMTcuMzUgMTMuNjUgMTYuMjUgMTIuNTUgMTQuOSAxMi41NUMxMy41NCAxMi41NSAxMi40NSAxMy42NSAxMi40NSAxNUMxMi40NSAxNi4zNSAxMy41NCAxNy40NSAxNC45IDE3LjQ1Wk0yMC4xIDE1LjY4TDIxLjU4IDE2Ljg0QzIxLjcxIDE2Ljk1IDIxLjc1IDE3LjEzIDIxLjY2IDE3LjI5TDIwLjI2IDE5LjcxQzIwLjE3IDE5Ljg2IDIwIDE5LjkyIDE5LjgzIDE5Ljg2TDE4LjA5IDE5LjE2QzE3LjczIDE5LjQ0IDE3LjMzIDE5LjY3IDE2LjkxIDE5Ljg1TDE2LjY0IDIxLjdDMTYuNjIgMjEuODcgMTYuNDcgMjIgMTYuMyAyMkgxMy41QzEzLjMyIDIyIDEzLjE4IDIxLjg3IDEzLjE1IDIxLjdMMTIuODkgMTkuODVDMTIuNDYgMTkuNjcgMTIuMDcgMTkuNDQgMTEuNzEgMTkuMTZMOS45NjAwMiAxOS44NkM5LjgxMDAyIDE5LjkyIDkuNjIwMDIgMTkuODYgOS41NDAwMiAxOS43MUw4LjE0MDAyIDE3LjI5QzguMDUwMDIgMTcuMTMgOC4wOTAwMiAxNi45NSA4LjIyMDAyIDE2Ljg0TDkuNzAwMDIgMTUuNjhMOS42NTAwMSAxNUw5LjcwMDAyIDE0LjMxTDguMjIwMDIgMTMuMTZDOC4wOTAwMiAxMy4wNSA4LjA1MDAyIDEyLjg2IDguMTQwMDIgMTIuNzFMOS41NDAwMiAxMC4yOUM5LjYyMDAyIDEwLjEzIDkuODEwMDIgMTAuMDcgOS45NjAwMiAxMC4xM0wxMS43MSAxMC44NEMxMi4wNyAxMC41NiAxMi40NiAxMC4zMiAxMi44OSAxMC4xNUwxMy4xNSA4LjI4OTk4QzEzLjE4IDguMTI5OTggMTMuMzIgNy45OTk5OCAxMy41IDcuOTk5OThIMTYuM0MxNi40NyA3Ljk5OTk4IDE2LjYyIDguMTI5OTggMTYuNjQgOC4yODk5OEwxNi45MSAxMC4xNUMxNy4zMyAxMC4zMiAxNy43MyAxMC41NiAxOC4wOSAxMC44NEwxOS44MyAxMC4xM0MyMCAxMC4wNyAyMC4xNyAxMC4xMyAyMC4yNiAxMC4yOUwyMS42NiAxMi43MUMyMS43NSAxMi44NiAyMS43MSAxMy4wNSAyMS41OCAxMy4xNkwyMC4xIDE0LjMxTDIwLjE1IDE1TDIwLjEgMTUuNjhaIi8+CiAgICA8cGF0aCBkPSJNNy4zMjk2NiA3LjQ0NDU0QzguMDgzMSA3LjAwOTU0IDguMzM5MzIgNi4wNTMzMiA3LjkwNDMyIDUuMjk5ODhDNy40NjkzMiA0LjU0NjQzIDYuNTA4MSA0LjI4MTU2IDUuNzU0NjYgNC43MTY1NkM1LjM5MTc2IDQuOTI2MDggNS4xMjY5NSA1LjI3MTE4IDUuMDE4NDkgNS42NzU5NEM0LjkxMDA0IDYuMDgwNzEgNC45NjY4MiA2LjUxMTk4IDUuMTc2MzQgNi44NzQ4OEM1LjYxMTM0IDcuNjI4MzIgNi41NzYyMiA3Ljg3OTU0IDcuMzI5NjYgNy40NDQ1NFpNOS42NTcxOCA0Ljc5NTkzTDEwLjg2NzIgNC45NTE3OUMxMC45NjI4IDQuOTc3NDEgMTEuMDQwMiA1LjA3MTMzIDExLjAzODIgNS4xODc5M0wxMS4wMzg4IDYuOTg4OTNDMTEuMDQ1NSA3LjEwMDU0IDEwLjk2MTYgNy4xOTUxOCAxMC44NTUgNy4yMTA1NEw5LjY2MDAxIDcuMzgwODNMOS4yMzkxNSA4LjEzMTg4TDkuNjY5NjEgOS4yNTc0NUM5LjcwNzI5IDkuMzYyNzEgOS42NjkzNCA5LjQ3Njk5IDkuNTc0MDggOS41MzE5OUw4LjAxNTIzIDEwLjQzMkM3LjkxMTMxIDEwLjQ5MiA3Ljc5MzM3IDEwLjQ2NzcgNy43MjEwNSAxMC4zODI0TDYuOTg3NDggOS40MzE4OEw2LjEwOTMxIDkuNDMwODNMNS4zNDcwNCAxMC4zOTA1QzUuMjg5MDkgMTAuNDcwMiA1LjE3MzgzIDEwLjQ5MDUgNS4wNzE4NyAxMC40MzM5TDMuNTEyNDUgOS41MzI5M0MzLjQxMDQ5IDkuNDc2MzMgMy4zNzY0NyA5LjM1NzQxIDMuNDEwNzUgOS4yNTY3OUwzLjg2MzQ3IDguMTQwOTNMMy42MTc0OSA3Ljc3NDg4TDMuNDIzNDcgNy4zNzg4M0wyLjIzMDc1IDcuMjEyOTdDMi4xMjY0NyA3LjE5MjM1IDIuMDQwNDkgNy4xMDM0MiAyLjA0MjQ1IDYuOTg2ODJMMi4wNDE4NyA1LjE4NTgyQzIuMDQzODMgNS4wNjkyMiAyLjExOTA5IDQuOTc5NTggMi4yMTcwNCA0Ljk2OTIyTDMuNDIwNjUgNC43OTM5M0wzLjg2NzQ5IDQuMDI3ODhMMy40MTEwNSAyLjkxNzMxQzMuMzczMzcgMi44MTIwNCAzLjQxMTMxIDIuNjk3NzYgMy41MTUyMyAyLjYzNzc2TDUuMDc0MDggMS43Mzc3NkM1LjE2OTM0IDEuNjgyNzYgNS4yODcyOSAxLjcwNzA0IDUuMzU5NjEgMS43OTIzMUw2LjExOTE1IDIuNzI3ODhMNi45ODAwMSAyLjczODkzTDcuNzI0OTYgMS43ODkyMkM3Ljc5MTU2IDEuNzA0NTggNy45MTU0OCAxLjY3OTIyIDguMDA4NzkgMS43NDA4Mkw5LjU2ODIxIDIuNjQxODJDOS42NzAxNyAyLjY5ODQyIDkuNzEyODUgMi44MTIzNCA5LjY4NzIzIDIuOTA3OTdMOS4yMTcxOCA0LjAzMzgzTDkuNDYzMTYgNC4zOTk4OEw5LjY1NzE4IDQuNzk1OTNaIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iOS45LDEzLjYgMy42LDcuNCA0LjQsNi42IDkuOSwxMi4yIDE1LjQsNi43IDE2LjEsNy40ICIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNS45TDksOS43bDMuOC0zLjhsMS4yLDEuMmwtNC45LDVsLTQuOS01TDUuMiw1Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNy41TDksMTEuMmwzLjgtMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-left: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik0xMC44LDEyLjhMNy4xLDlsMy44LTMuOGwwLDcuNkgxMC44eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-right: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik03LjIsNS4yTDEwLjksOWwtMy44LDMuOFY1LjJINy4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-up-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iMTUuNCwxMy4zIDkuOSw3LjcgNC40LDEzLjIgMy42LDEyLjUgOS45LDYuMyAxNi4xLDEyLjYgIi8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-up: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik01LjIsMTAuNUw5LDYuOGwzLjgsMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-case-sensitive: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgogIDxnIGNsYXNzPSJqcC1pY29uLWFjY2VudDIiIGZpbGw9IiNGRkYiPgogICAgPHBhdGggZD0iTTcuNiw4aDAuOWwzLjUsOGgtMS4xTDEwLDE0SDZsLTAuOSwySDRMNy42LDh6IE04LDkuMUw2LjQsMTNoMy4yTDgsOS4xeiIvPgogICAgPHBhdGggZD0iTTE2LjYsOS44Yy0wLjIsMC4xLTAuNCwwLjEtMC43LDAuMWMtMC4yLDAtMC40LTAuMS0wLjYtMC4yYy0wLjEtMC4xLTAuMi0wLjQtMC4yLTAuNyBjLTAuMywwLjMtMC42LDAuNS0wLjksMC43Yy0wLjMsMC4xLTAuNywwLjItMS4xLDAuMmMtMC4zLDAtMC41LDAtMC43LTAuMWMtMC4yLTAuMS0wLjQtMC4yLTAuNi0wLjNjLTAuMi0wLjEtMC4zLTAuMy0wLjQtMC41IGMtMC4xLTAuMi0wLjEtMC40LTAuMS0wLjdjMC0wLjMsMC4xLTAuNiwwLjItMC44YzAuMS0wLjIsMC4zLTAuNCwwLjQtMC41QzEyLDcsMTIuMiw2LjksMTIuNSw2LjhjMC4yLTAuMSwwLjUtMC4xLDAuNy0wLjIgYzAuMy0wLjEsMC41LTAuMSwwLjctMC4xYzAuMiwwLDAuNC0wLjEsMC42LTAuMWMwLjIsMCwwLjMtMC4xLDAuNC0wLjJjMC4xLTAuMSwwLjItMC4yLDAuMi0wLjRjMC0xLTEuMS0xLTEuMy0xIGMtMC40LDAtMS40LDAtMS40LDEuMmgtMC45YzAtMC40LDAuMS0wLjcsMC4yLTFjMC4xLTAuMiwwLjMtMC40LDAuNS0wLjZjMC4yLTAuMiwwLjUtMC4zLDAuOC0wLjNDMTMuMyw0LDEzLjYsNCwxMy45LDQgYzAuMywwLDAuNSwwLDAuOCwwLjFjMC4zLDAsMC41LDAuMSwwLjcsMC4yYzAuMiwwLjEsMC40LDAuMywwLjUsMC41QzE2LDUsMTYsNS4yLDE2LDUuNnYyLjljMCwwLjIsMCwwLjQsMCwwLjUgYzAsMC4xLDAuMSwwLjIsMC4zLDAuMmMwLjEsMCwwLjIsMCwwLjMsMFY5Ljh6IE0xNS4yLDYuOWMtMS4yLDAuNi0zLjEsMC4yLTMuMSwxLjRjMCwxLjQsMy4xLDEsMy4xLTAuNVY2Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-check: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik05IDE2LjE3TDQuODMgMTJsLTEuNDIgMS40MUw5IDE5IDIxIDdsLTEuNDEtMS40MXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-circle-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDJDNi40NyAyIDIgNi40NyAyIDEyczQuNDcgMTAgMTAgMTAgMTAtNC40NyAxMC0xMFMxNy41MyAyIDEyIDJ6bTAgMThjLTQuNDEgMC04LTMuNTktOC04czMuNTktOCA4LTggOCAzLjU5IDggOC0zLjU5IDgtOCA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-circle: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjgiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-clear: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8bWFzayBpZD0iZG9udXRIb2xlIj4KICAgIDxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0id2hpdGUiIC8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSI4IiBmaWxsPSJibGFjayIvPgogIDwvbWFzaz4KCiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxyZWN0IGhlaWdodD0iMTgiIHdpZHRoPSIyIiB4PSIxMSIgeT0iMyIgdHJhbnNmb3JtPSJyb3RhdGUoMzE1LCAxMiwgMTIpIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIgbWFzaz0idXJsKCNkb251dEhvbGUpIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-close: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1ub25lIGpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIGpwLWljb24zLWhvdmVyIiBmaWxsPSJub25lIj4KICAgIDxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjExIi8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIGpwLWljb24tYWNjZW50Mi1ob3ZlciIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMTkgNi40MUwxNy41OSA1IDEyIDEwLjU5IDYuNDEgNSA1IDYuNDEgMTAuNTkgMTIgNSAxNy41OSA2LjQxIDE5IDEyIDEzLjQxIDE3LjU5IDE5IDE5IDE3LjU5IDEzLjQxIDEyeiIvPgogIDwvZz4KCiAgPGcgY2xhc3M9ImpwLWljb24tbm9uZSBqcC1pY29uLWJ1c3kiIGZpbGw9Im5vbmUiPgogICAgPGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-code: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTExLjQgMTguNkw2LjggMTRMMTEuNCA5LjRMMTAgOEw0IDE0TDEwIDIwTDExLjQgMTguNlpNMTYuNiAxOC42TDIxLjIgMTRMMTYuNiA5LjRMMTggOEwyNCAxNEwxOCAyMEwxNi42IDE4LjZWMTguNloiLz4KCTwvZz4KPC9zdmc+Cg==);\n  --jp-icon-console: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwMCAyMDAiPgogIDxnIGNsYXNzPSJqcC1pY29uLWJyYW5kMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMjg4RDEiPgogICAgPHBhdGggZD0iTTIwIDE5LjhoMTYwdjE1OS45SDIweiIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNmZmYiPgogICAgPHBhdGggZD0iTTEwNSAxMjcuM2g0MHYxMi44aC00MHpNNTEuMSA3N0w3NCA5OS45bC0yMy4zIDIzLjMgMTAuNSAxMC41IDIzLjMtMjMuM0w5NSA5OS45IDg0LjUgODkuNCA2MS42IDY2LjV6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-copy: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTExLjksMUgzLjJDMi40LDEsMS43LDEuNywxLjcsMi41djEwLjJoMS41VjIuNWg4LjdWMXogTTE0LjEsMy45aC04Yy0wLjgsMC0xLjUsMC43LTEuNSwxLjV2MTAuMmMwLDAuOCwwLjcsMS41LDEuNSwxLjVoOCBjMC44LDAsMS41LTAuNywxLjUtMS41VjUuNEMxNS41LDQuNiwxNC45LDMuOSwxNC4xLDMuOXogTTE0LjEsMTUuNWgtOFY1LjRoOFYxNS41eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-copyright: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDI0IDI0IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCI+CiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0xMS44OCw5LjE0YzEuMjgsMC4wNiwxLjYxLDEuMTUsMS42MywxLjY2aDEuNzljLTAuMDgtMS45OC0xLjQ5LTMuMTktMy40NS0zLjE5QzkuNjQsNy42MSw4LDksOCwxMi4xNCBjMCwxLjk0LDAuOTMsNC4yNCwzLjg0LDQuMjRjMi4yMiwwLDMuNDEtMS42NSwzLjQ0LTIuOTVoLTEuNzljLTAuMDMsMC41OS0wLjQ1LDEuMzgtMS42MywxLjQ0QzEwLjU1LDE0LjgzLDEwLDEzLjgxLDEwLDEyLjE0IEMxMCw5LjI1LDExLjI4LDkuMTYsMTEuODgsOS4xNHogTTEyLDJDNi40OCwyLDIsNi40OCwyLDEyczQuNDgsMTAsMTAsMTBzMTAtNC40OCwxMC0xMFMxNy41MiwyLDEyLDJ6IE0xMiwyMGMtNC40MSwwLTgtMy41OS04LTggczMuNTktOCw4LThzOCwzLjU5LDgsOFMxNi40MSwyMCwxMiwyMHoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-cut: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkuNjQgNy42NGMuMjMtLjUuMzYtMS4wNS4zNi0xLjY0IDAtMi4yMS0xLjc5LTQtNC00UzIgMy43OSAyIDZzMS43OSA0IDQgNGMuNTkgMCAxLjE0LS4xMyAxLjY0LS4zNkwxMCAxMmwtMi4zNiAyLjM2QzcuMTQgMTQuMTMgNi41OSAxNCA2IDE0Yy0yLjIxIDAtNCAxLjc5LTQgNHMxLjc5IDQgNCA0IDQtMS43OSA0LTRjMC0uNTktLjEzLTEuMTQtLjM2LTEuNjRMMTIgMTRsNyA3aDN2LTFMOS42NCA3LjY0ek02IDhjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTAgMTJjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTYtNy41Yy0uMjggMC0uNS0uMjItLjUtLjVzLjIyLS41LjUtLjUuNS4yMi41LjUtLjIyLjUtLjUuNXpNMTkgM2wtNiA2IDIgMiA3LTdWM3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-download: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDloLTRWM0g5djZINWw3IDcgNy03ek01IDE4djJoMTR2LTJINXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-edit: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMgMTcuMjVWMjFoMy43NUwxNy44MSA5Ljk0bC0zLjc1LTMuNzVMMyAxNy4yNXpNMjAuNzEgNy4wNGMuMzktLjM5LjM5LTEuMDIgMC0xLjQxbC0yLjM0LTIuMzRjLS4zOS0uMzktMS4wMi0uMzktMS40MSAwbC0xLjgzIDEuODMgMy43NSAzLjc1IDEuODMtMS44M3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-ellipses: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iNSIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxOSIgY3k9IjEyIiByPSIyIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-extension: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwLjUgMTFIMTlWN2MwLTEuMS0uOS0yLTItMmgtNFYzLjVDMTMgMi4xMiAxMS44OCAxIDEwLjUgMVM4IDIuMTIgOCAzLjVWNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAydjMuOEgzLjVjMS40OSAwIDIuNyAxLjIxIDIuNyAyLjdzLTEuMjEgMi43LTIuNyAyLjdIMlYyMGMwIDEuMS45IDIgMiAyaDMuOHYtMS41YzAtMS40OSAxLjIxLTIuNyAyLjctMi43IDEuNDkgMCAyLjcgMS4yMSAyLjcgMi43VjIySDE3YzEuMSAwIDItLjkgMi0ydi00aDEuNWMxLjM4IDAgMi41LTEuMTIgMi41LTIuNVMyMS44OCAxMSAyMC41IDExeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-fast-forward: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTQgMThsOC41LTZMNCA2djEyem05LTEydjEybDguNS02TDEzIDZ6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-file-upload: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkgMTZoNnYtNmg0bC03LTctNyA3aDR6bS00IDJoMTR2Mkg1eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-file: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuMyA4LjJsLTUuNS01LjVjLS4zLS4zLS43LS41LTEuMi0uNUgzLjljLS44LjEtMS42LjktMS42IDEuOHYxNC4xYzAgLjkuNyAxLjYgMS42IDEuNmgxNC4yYy45IDAgMS42LS43IDEuNi0xLjZWOS40Yy4xLS41LS4xLS45LS40LTEuMnptLTUuOC0zLjNsMy40IDMuNmgtMy40VjQuOXptMy45IDEyLjdINC43Yy0uMSAwLS4yIDAtLjItLjJWNC43YzAtLjIuMS0uMy4yLS4zaDcuMnY0LjRzMCAuOC4zIDEuMWMuMy4zIDEuMS4zIDEuMS4zaDQuM3Y3LjJzLS4xLjItLjIuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-filter-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEwIDE4aDR2LTJoLTR2MnpNMyA2djJoMThWNkgzem0zIDdoMTJ2LTJINnYyeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY4YzAtMS4xLS45LTItMi0yaC04bC0yLTJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-html5: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMDAiIGQ9Ik0xMDguNCAwaDIzdjIyLjhoMjEuMlYwaDIzdjY5aC0yM1Y0NmgtMjF2MjNoLTIzLjJNMjA2IDIzaC0yMC4zVjBoNjMuN3YyM0gyMjl2NDZoLTIzbTUzLjUtNjloMjQuMWwxNC44IDI0LjNMMzEzLjIgMGgyNC4xdjY5aC0yM1YzNC44bC0xNi4xIDI0LjgtMTYuMS0yNC44VjY5aC0yMi42bTg5LjItNjloMjN2NDYuMmgzMi42VjY5aC01NS42Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI2U0NGQyNiIgZD0iTTEwNy42IDQ3MWwtMzMtMzcwLjRoMzYyLjhsLTMzIDM3MC4yTDI1NS43IDUxMiIvPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNmMTY1MjkiIGQ9Ik0yNTYgNDgwLjVWMTMxaDE0OC4zTDM3NiA0NDciLz4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNlYmViZWIiIGQ9Ik0xNDIgMTc2LjNoMTE0djQ1LjRoLTY0LjJsNC4yIDQ2LjVoNjB2NDUuM0gxNTQuNG0yIDIyLjhIMjAybDMuMiAzNi4zIDUwLjggMTMuNnY0Ny40bC05My4yLTI2Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIiBmaWxsPSIjZmZmIiBkPSJNMzY5LjYgMTc2LjNIMjU1Ljh2NDUuNGgxMDkuNm0tNC4xIDQ2LjVIMjU1Ljh2NDUuNGg1NmwtNS4zIDU5LTUwLjcgMTMuNnY0Ny4ybDkzLTI1LjgiLz4KPC9zdmc+Cg==);\n  --jp-icon-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1icmFuZDQganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNGRkYiIGQ9Ik0yLjIgMi4yaDE3LjV2MTcuNUgyLjJ6Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzNGNTFCNSIgZD0iTTIuMiAyLjJ2MTcuNWgxNy41bC4xLTE3LjVIMi4yem0xMi4xIDIuMmMxLjIgMCAyLjIgMSAyLjIgMi4ycy0xIDIuMi0yLjIgMi4yLTIuMi0xLTIuMi0yLjIgMS0yLjIgMi4yLTIuMnpNNC40IDE3LjZsMy4zLTguOCAzLjMgNi42IDIuMi0zLjIgNC40IDUuNEg0LjR6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-inspector: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY2YzAtMS4xLS45LTItMi0yem0tNSAxNEg0di00aDExdjR6bTAtNUg0VjloMTF2NHptNSA1aC00VjloNHY5eiIvPgo8L3N2Zz4K);\n  --jp-icon-json: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNGOUE4MjUiPgogICAgPHBhdGggZD0iTTIwLjIgMTEuOGMtMS42IDAtMS43LjUtMS43IDEgMCAuNC4xLjkuMSAxLjMuMS41LjEuOS4xIDEuMyAwIDEuNy0xLjQgMi4zLTMuNSAyLjNoLS45di0xLjloLjVjMS4xIDAgMS40IDAgMS40LS44IDAtLjMgMC0uNi0uMS0xIDAtLjQtLjEtLjgtLjEtMS4yIDAtMS4zIDAtMS44IDEuMy0yLTEuMy0uMi0xLjMtLjctMS4zLTIgMC0uNC4xLS44LjEtMS4yLjEtLjQuMS0uNy4xLTEgMC0uOC0uNC0uNy0xLjQtLjhoLS41VjQuMWguOWMyLjIgMCAzLjUuNyAzLjUgMi4zIDAgLjQtLjEuOS0uMSAxLjMtLjEuNS0uMS45LS4xIDEuMyAwIC41LjIgMSAxLjcgMXYxLjh6TTEuOCAxMC4xYzEuNiAwIDEuNy0uNSAxLjctMSAwLS40LS4xLS45LS4xLTEuMy0uMS0uNS0uMS0uOS0uMS0xLjMgMC0xLjYgMS40LTIuMyAzLjUtMi4zaC45djEuOWgtLjVjLTEgMC0xLjQgMC0xLjQuOCAwIC4zIDAgLjYuMSAxIDAgLjIuMS42LjEgMSAwIDEuMyAwIDEuOC0xLjMgMkM2IDExLjIgNiAxMS43IDYgMTNjMCAuNC0uMS44LS4xIDEuMi0uMS4zLS4xLjctLjEgMSAwIC44LjMuOCAxLjQuOGguNXYxLjloLS45Yy0yLjEgMC0zLjUtLjYtMy41LTIuMyAwLS40LjEtLjkuMS0xLjMuMS0uNS4xLS45LjEtMS4zIDAtLjUtLjItMS0xLjctMXYtMS45eiIvPgogICAgPGNpcmNsZSBjeD0iMTEiIGN5PSIxMy44IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY3g9IjExIiBjeT0iOC4yIiByPSIyLjEiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-julia: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDMyNSAzMDAiPgogIDxnIGNsYXNzPSJqcC1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjY2IzYzMzIj4KICAgIDxwYXRoIGQ9Ik0gMTUwLjg5ODQzOCAyMjUgQyAxNTAuODk4NDM4IDI2Ni40MjE4NzUgMTE3LjMyMDMxMiAzMDAgNzUuODk4NDM4IDMwMCBDIDM0LjQ3NjU2MiAzMDAgMC44OTg0MzggMjY2LjQyMTg3NSAwLjg5ODQzOCAyMjUgQyAwLjg5ODQzOCAxODMuNTc4MTI1IDM0LjQ3NjU2MiAxNTAgNzUuODk4NDM4IDE1MCBDIDExNy4zMjAzMTIgMTUwIDE1MC44OTg0MzggMTgzLjU3ODEyNSAxNTAuODk4NDM4IDIyNSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzM4OTgyNiI+CiAgICA8cGF0aCBkPSJNIDIzNy41IDc1IEMgMjM3LjUgMTE2LjQyMTg3NSAyMDMuOTIxODc1IDE1MCAxNjIuNSAxNTAgQyAxMjEuMDc4MTI1IDE1MCA4Ny41IDExNi40MjE4NzUgODcuNSA3NSBDIDg3LjUgMzMuNTc4MTI1IDEyMS4wNzgxMjUgMCAxNjIuNSAwIEMgMjAzLjkyMTg3NSAwIDIzNy41IDMzLjU3ODEyNSAyMzcuNSA3NSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzk1NThiMiI+CiAgICA8cGF0aCBkPSJNIDMyNC4xMDE1NjIgMjI1IEMgMzI0LjEwMTU2MiAyNjYuNDIxODc1IDI5MC41MjM0MzggMzAwIDI0OS4xMDE1NjIgMzAwIEMgMjA3LjY3OTY4OCAzMDAgMTc0LjEwMTU2MiAyNjYuNDIxODc1IDE3NC4xMDE1NjIgMjI1IEMgMTc0LjEwMTU2MiAxODMuNTc4MTI1IDIwNy42Nzk2ODggMTUwIDI0OS4xMDE1NjIgMTUwIEMgMjkwLjUyMzQzOCAxNTAgMzI0LjEwMTU2MiAxODMuNTc4MTI1IDMyNC4xMDE1NjIgMjI1Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-jupyter-favicon: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUyIiBoZWlnaHQ9IjE2NSIgdmlld0JveD0iMCAwIDE1MiAxNjUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA3ODk0NywgMTEwLjU4MjkyNykiIGQ9Ik03NS45NDIyODQyLDI5LjU4MDQ1NjEgQzQzLjMwMjM5NDcsMjkuNTgwNDU2MSAxNC43OTY3ODMyLDE3LjY1MzQ2MzQgMCwwIEM1LjUxMDgzMjExLDE1Ljg0MDY4MjkgMTUuNzgxNTM4OSwyOS41NjY3NzMyIDI5LjM5MDQ5NDcsMzkuMjc4NDE3MSBDNDIuOTk5Nyw0OC45ODk4NTM3IDU5LjI3MzcsNTQuMjA2NzgwNSA3NS45NjA1Nzg5LDU0LjIwNjc4MDUgQzkyLjY0NzQ1NzksNTQuMjA2NzgwNSAxMDguOTIxNDU4LDQ4Ljk4OTg1MzcgMTIyLjUzMDY2MywzOS4yNzg0MTcxIEMxMzYuMTM5NDUzLDI5LjU2Njc3MzIgMTQ2LjQxMDI4NCwxNS44NDA2ODI5IDE1MS45MjExNTgsMCBDMTM3LjA4Nzg2OCwxNy42NTM0NjM0IDEwOC41ODI1ODksMjkuNTgwNDU2MSA3NS45NDIyODQyLDI5LjU4MDQ1NjEgTDc1Ljk0MjI4NDIsMjkuNTgwNDU2MSBaIiAvPgogICAgPHBhdGggdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMzczNjgsIDAuNzA0ODc4KSIgZD0iTTc1Ljk3ODQ1NzksMjQuNjI2NDA3MyBDMTA4LjYxODc2MywyNC42MjY0MDczIDEzNy4xMjQ0NTgsMzYuNTUzNDQxNSAxNTEuOTIxMTU4LDU0LjIwNjc4MDUgQzE0Ni40MTAyODQsMzguMzY2MjIyIDEzNi4xMzk0NTMsMjQuNjQwMTMxNyAxMjIuNTMwNjYzLDE0LjkyODQ4NzggQzEwOC45MjE0NTgsNS4yMTY4NDM5IDkyLjY0NzQ1NzksMCA3NS45NjA1Nzg5LDAgQzU5LjI3MzcsMCA0Mi45OTk3LDUuMjE2ODQzOSAyOS4zOTA0OTQ3LDE0LjkyODQ4NzggQzE1Ljc4MTUzODksMjQuNjQwMTMxNyA1LjUxMDgzMjExLDM4LjM2NjIyMiAwLDU0LjIwNjc4MDUgQzE0LjgzMzA4MTYsMzYuNTg5OTI5MyA0My4zMzg1Njg0LDI0LjYyNjQwNzMgNzUuOTc4NDU3OSwyNC42MjY0MDczIEw3NS45Nzg0NTc5LDI0LjYyNjQwNzMgWiIgLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-jupyter: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzkiIGhlaWdodD0iNTEiIHZpZXdCb3g9IjAgMCAzOSA1MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTYzOCAtMjI4MSkiPgogICAgPGcgY2xhc3M9ImpwLWljb24td2FybjAiIGZpbGw9IiNGMzc3MjYiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5Ljc0IDIzMTEuOTgpIiBkPSJNIDE4LjI2NDYgNy4xMzQxMUMgMTAuNDE0NSA3LjEzNDExIDMuNTU4NzIgNC4yNTc2IDAgMEMgMS4zMjUzOSAzLjgyMDQgMy43OTU1NiA3LjEzMDgxIDcuMDY4NiA5LjQ3MzAzQyAxMC4zNDE3IDExLjgxNTIgMTQuMjU1NyAxMy4wNzM0IDE4LjI2OSAxMy4wNzM0QyAyMi4yODIzIDEzLjA3MzQgMjYuMTk2MyAxMS44MTUyIDI5LjQ2OTQgOS40NzMwM0MgMzIuNzQyNCA3LjEzMDgxIDM1LjIxMjYgMy44MjA0IDM2LjUzOCAwQyAzMi45NzA1IDQuMjU3NiAyNi4xMTQ4IDcuMTM0MTEgMTguMjY0NiA3LjEzNDExWiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5LjczIDIyODUuNDgpIiBkPSJNIDE4LjI3MzMgNS45MzkzMUMgMjYuMTIzNSA1LjkzOTMxIDMyLjk3OTMgOC44MTU4MyAzNi41MzggMTMuMDczNEMgMzUuMjEyNiA5LjI1MzAzIDMyLjc0MjQgNS45NDI2MiAyOS40Njk0IDMuNjAwNEMgMjYuMTk2MyAxLjI1ODE4IDIyLjI4MjMgMCAxOC4yNjkgMEMgMTQuMjU1NyAwIDEwLjM0MTcgMS4yNTgxOCA3LjA2ODYgMy42MDA0QyAzLjc5NTU2IDUuOTQyNjIgMS4zMjUzOSA5LjI1MzAzIDAgMTMuMDczNEMgMy41Njc0NSA4LjgyNDYzIDEwLjQyMzIgNS45MzkzMSAxOC4yNzMzIDUuOTM5MzFaIi8+CiAgICA8L2c+CiAgICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjY5LjMgMjI4MS4zMSkiIGQ9Ik0gNS44OTM1MyAyLjg0NEMgNS45MTg4OSAzLjQzMTY1IDUuNzcwODUgNC4wMTM2NyA1LjQ2ODE1IDQuNTE2NDVDIDUuMTY1NDUgNS4wMTkyMiA0LjcyMTY4IDUuNDIwMTUgNC4xOTI5OSA1LjY2ODUxQyAzLjY2NDMgNS45MTY4OCAzLjA3NDQ0IDYuMDAxNTEgMi40OTgwNSA1LjkxMTcxQyAxLjkyMTY2IDUuODIxOSAxLjM4NDYzIDUuNTYxNyAwLjk1NDg5OCA1LjE2NDAxQyAwLjUyNTE3IDQuNzY2MzMgMC4yMjIwNTYgNC4yNDkwMyAwLjA4MzkwMzcgMy42Nzc1N0MgLTAuMDU0MjQ4MyAzLjEwNjExIC0wLjAyMTIzIDIuNTA2MTcgMC4xNzg3ODEgMS45NTM2NEMgMC4zNzg3OTMgMS40MDExIDAuNzM2ODA5IDAuOTIwODE3IDEuMjA3NTQgMC41NzM1MzhDIDEuNjc4MjYgMC4yMjYyNTkgMi4yNDA1NSAwLjAyNzU5MTkgMi44MjMyNiAwLjAwMjY3MjI5QyAzLjYwMzg5IC0wLjAzMDcxMTUgNC4zNjU3MyAwLjI0OTc4OSA0Ljk0MTQyIDAuNzgyNTUxQyA1LjUxNzExIDEuMzE1MzEgNS44NTk1NiAyLjA1Njc2IDUuODkzNTMgMi44NDRaIi8+CiAgICAgIDxwYXRoIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE2MzkuOCAyMzIzLjgxKSIgZD0iTSA3LjQyNzg5IDMuNTgzMzhDIDcuNDYwMDggNC4zMjQzIDcuMjczNTUgNS4wNTgxOSA2Ljg5MTkzIDUuNjkyMTNDIDYuNTEwMzEgNi4zMjYwNyA1Ljk1MDc1IDYuODMxNTYgNS4yODQxMSA3LjE0NDZDIDQuNjE3NDcgNy40NTc2MyAzLjg3MzcxIDcuNTY0MTQgMy4xNDcwMiA3LjQ1MDYzQyAyLjQyMDMyIDcuMzM3MTIgMS43NDMzNiA3LjAwODcgMS4yMDE4NCA2LjUwNjk1QyAwLjY2MDMyOCA2LjAwNTIgMC4yNzg2MSA1LjM1MjY4IDAuMTA1MDE3IDQuNjMyMDJDIC0wLjA2ODU3NTcgMy45MTEzNSAtMC4wMjYyMzYxIDMuMTU0OTQgMC4yMjY2NzUgMi40NTg1NkMgMC40Nzk1ODcgMS43NjIxNyAwLjkzMTY5NyAxLjE1NzEzIDEuNTI1NzYgMC43MjAwMzNDIDIuMTE5ODMgMC4yODI5MzUgMi44MjkxNCAwLjAzMzQzOTUgMy41NjM4OSAwLjAwMzEzMzQ0QyA0LjU0NjY3IC0wLjAzNzQwMzMgNS41MDUyOSAwLjMxNjcwNiA2LjIyOTYxIDAuOTg3ODM1QyA2Ljk1MzkzIDEuNjU4OTYgNy4zODQ4NCAyLjU5MjM1IDcuNDI3ODkgMy41ODMzOEwgNy40Mjc4OSAzLjU4MzM4WiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM4LjM2IDIyODYuMDYpIiBkPSJNIDIuMjc0NzEgNC4zOTYyOUMgMS44NDM2MyA0LjQxNTA4IDEuNDE2NzEgNC4zMDQ0NSAxLjA0Nzk5IDQuMDc4NDNDIDAuNjc5MjY4IDMuODUyNCAwLjM4NTMyOCAzLjUyMTE0IDAuMjAzMzcxIDMuMTI2NTZDIDAuMDIxNDEzNiAyLjczMTk4IC0wLjA0MDM3OTggMi4yOTE4MyAwLjAyNTgxMTYgMS44NjE4MUMgMC4wOTIwMDMxIDEuNDMxOCAwLjI4MzIwNCAxLjAzMTI2IDAuNTc1MjEzIDAuNzEwODgzQyAwLjg2NzIyMiAwLjM5MDUxIDEuMjQ2OTEgMC4xNjQ3MDggMS42NjYyMiAwLjA2MjA1OTJDIDIuMDg1NTMgLTAuMDQwNTg5NyAyLjUyNTYxIC0wLjAxNTQ3MTQgMi45MzA3NiAwLjEzNDIzNUMgMy4zMzU5MSAwLjI4Mzk0MSAzLjY4NzkyIDAuNTUxNTA1IDMuOTQyMjIgMC45MDMwNkMgNC4xOTY1MiAxLjI1NDYyIDQuMzQxNjkgMS42NzQzNiA0LjM1OTM1IDIuMTA5MTZDIDQuMzgyOTkgMi42OTEwNyA0LjE3Njc4IDMuMjU4NjkgMy43ODU5NyAzLjY4NzQ2QyAzLjM5NTE2IDQuMTE2MjQgMi44NTE2NiA0LjM3MTE2IDIuMjc0NzEgNC4zOTYyOUwgMi4yNzQ3MSA0LjM5NjI5WiIvPgogICAgPC9nPgogIDwvZz4+Cjwvc3ZnPgo=);\n  --jp-icon-jupyterlab-wordmark: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIHZpZXdCb3g9IjAgMCAxODYwLjggNDc1Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0RTRFNEUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ4MC4xMzY0MDEsIDY0LjI3MTQ5MykiPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMDAwMDAsIDU4Ljg3NTU2NikiPgogICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA4NzYwMywgMC4xNDAyOTQpIj4KICAgICAgICA8cGF0aCBkPSJNLTQyNi45LDE2OS44YzAsNDguNy0zLjcsNjQuNy0xMy42LDc2LjRjLTEwLjgsMTAtMjUsMTUuNS0zOS43LDE1LjVsMy43LDI5IGMyMi44LDAuMyw0NC44LTcuOSw2MS45LTIzLjFjMTcuOC0xOC41LDI0LTQ0LjEsMjQtODMuM1YwSC00Mjd2MTcwLjFMLTQyNi45LDE2OS44TC00MjYuOSwxNjkuOHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTU1LjA0NTI5NiwgNTYuODM3MTA0KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuNTYyNDUzLCAxLjc5OTg0MikiPgogICAgICAgIDxwYXRoIGQ9Ik0tMzEyLDE0OGMwLDIxLDAsMzkuNSwxLjcsNTUuNGgtMzEuOGwtMi4xLTMzLjNoLTAuOGMtNi43LDExLjYtMTYuNCwyMS4zLTI4LDI3LjkgYy0xMS42LDYuNi0yNC44LDEwLTM4LjIsOS44Yy0zMS40LDAtNjktMTcuNy02OS04OVYwaDM2LjR2MTEyLjdjMCwzOC43LDExLjYsNjQuNyw0NC42LDY0LjdjMTAuMy0wLjIsMjAuNC0zLjUsMjguOS05LjQgYzguNS01LjksMTUuMS0xNC4zLDE4LjktMjMuOWMyLjItNi4xLDMuMy0xMi41LDMuMy0xOC45VjAuMmgzNi40VjE0OEgtMzEyTC0zMTIsMTQ4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzOTAuMDEzMzIyLCA1My40Nzk2MzgpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS43MDY0NTgsIDAuMjMxNDI1KSI+CiAgICAgICAgPHBhdGggZD0iTS00NzguNiw3MS40YzAtMjYtMC44LTQ3LTEuNy02Ni43aDMyLjdsMS43LDM0LjhoMC44YzcuMS0xMi41LDE3LjUtMjIuOCwzMC4xLTI5LjcgYzEyLjUtNywyNi43LTEwLjMsNDEtOS44YzQ4LjMsMCw4NC43LDQxLjcsODQuNywxMDMuM2MwLDczLjEtNDMuNywxMDkuMi05MSwxMDkuMmMtMTIuMSwwLjUtMjQuMi0yLjItMzUtNy44IGMtMTAuOC01LjYtMTkuOS0xMy45LTI2LjYtMjQuMmgtMC44VjI5MWgtMzZ2LTIyMEwtNDc4LjYsNzEuNEwtNDc4LjYsNzEuNHogTS00NDIuNiwxMjUuNmMwLjEsNS4xLDAuNiwxMC4xLDEuNywxNS4xIGMzLDEyLjMsOS45LDIzLjMsMTkuOCwzMS4xYzkuOSw3LjgsMjIuMSwxMi4xLDM0LjcsMTIuMWMzOC41LDAsNjAuNy0zMS45LDYwLjctNzguNWMwLTQwLjctMjEuMS03NS42LTU5LjUtNzUuNiBjLTEyLjksMC40LTI1LjMsNS4xLTM1LjMsMTMuNGMtOS45LDguMy0xNi45LDE5LjctMTkuNiwzMi40Yy0xLjUsNC45LTIuMywxMC0yLjUsMTUuMVYxMjUuNkwtNDQyLjYsMTI1LjZMLTQ0Mi42LDEyNS42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MDYuNzQwNzI2LCA1Ni44MzcxMDQpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC43NTEyMjYsIDEuOTg5Mjk5KSI+CiAgICAgICAgPHBhdGggZD0iTS00NDAuOCwwbDQzLjcsMTIwLjFjNC41LDEzLjQsOS41LDI5LjQsMTIuOCw0MS43aDAuOGMzLjctMTIuMiw3LjktMjcuNywxMi44LTQyLjQgbDM5LjctMTE5LjJoMzguNUwtMzQ2LjksMTQ1Yy0yNiw2OS43LTQzLjcsMTA1LjQtNjguNiwxMjcuMmMtMTIuNSwxMS43LTI3LjksMjAtNDQuNiwyMy45bC05LjEtMzEuMSBjMTEuNy0zLjksMjIuNS0xMC4xLDMxLjgtMTguMWMxMy4yLTExLjEsMjMuNy0yNS4yLDMwLjYtNDEuMmMxLjUtMi44LDIuNS01LjcsMi45LTguOGMtMC4zLTMuMy0xLjItNi42LTIuNS05LjdMLTQ4MC4yLDAuMSBoMzkuN0wtNDQwLjgsMEwtNDQwLjgsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODIyLjc0ODEwNCwgMC4wMDAwMDApIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS40NjQwNTAsIDAuMzc4OTE0KSI+CiAgICAgICAgPHBhdGggZD0iTS00MTMuNywwdjU4LjNoNTJ2MjguMmgtNTJWMTk2YzAsMjUsNywzOS41LDI3LjMsMzkuNWM3LjEsMC4xLDE0LjItMC43LDIxLjEtMi41IGwxLjcsMjcuN2MtMTAuMywzLjctMjEuMyw1LjQtMzIuMiw1Yy03LjMsMC40LTE0LjYtMC43LTIxLjMtMy40Yy02LjgtMi43LTEyLjktNi44LTE3LjktMTIuMWMtMTAuMy0xMC45LTE0LjEtMjktMTQuMS01Mi45IFY4Ni41aC0zMVY1OC4zaDMxVjkuNkwtNDEzLjcsMEwtNDEzLjcsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOTc0LjQzMzI4NiwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuOTkwMDM0LCAwLjYxMDMzOSkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDQ1LjgsMTEzYzAuOCw1MCwzMi4yLDcwLjYsNjguNiw3MC42YzE5LDAuNiwzNy45LTMsNTUuMy0xMC41bDYuMiwyNi40IGMtMjAuOSw4LjktNDMuNSwxMy4xLTY2LjIsMTIuNmMtNjEuNSwwLTk4LjMtNDEuMi05OC4zLTEwMi41Qy00ODAuMiw0OC4yLTQ0NC43LDAtMzg2LjUsMGM2NS4yLDAsODIuNyw1OC4zLDgyLjcsOTUuNyBjLTAuMSw1LjgtMC41LDExLjUtMS4yLDE3LjJoLTE0MC42SC00NDUuOEwtNDQ1LjgsMTEzeiBNLTMzOS4yLDg2LjZjMC40LTIzLjUtOS41LTYwLjEtNTAuNC02MC4xIGMtMzYuOCwwLTUyLjgsMzQuNC01NS43LDYwLjFILTMzOS4yTC0zMzkuMiw4Ni42TC0zMzkuMiw4Ni42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjAxLjk2MTA1OCwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuMTc5NjQwLCAwLjcwNTA2OCkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDc4LjYsNjhjMC0yMy45LTAuNC00NC41LTEuNy02My40aDMxLjhsMS4yLDM5LjloMS43YzkuMS0yNy4zLDMxLTQ0LjUsNTUuMy00NC41IGMzLjUtMC4xLDcsMC40LDEwLjMsMS4ydjM0LjhjLTQuMS0wLjktOC4yLTEuMy0xMi40LTEuMmMtMjUuNiwwLTQzLjcsMTkuNy00OC43LDQ3LjRjLTEsNS43LTEuNiwxMS41LTEuNywxNy4ydjEwOC4zaC0zNlY2OCBMLTQ3OC42LDY4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCBkPSJNMTM1Mi4zLDMyNi4yaDM3VjI4aC0zN1YzMjYuMnogTTE2MDQuOCwzMjYuMmMtMi41LTEzLjktMy40LTMxLjEtMy40LTQ4Ljd2LTc2IGMwLTQwLjctMTUuMS04My4xLTc3LjMtODMuMWMtMjUuNiwwLTUwLDcuMS02Ni44LDE4LjFsOC40LDI0LjRjMTQuMy05LjIsMzQtMTUuMSw1My0xNS4xYzQxLjYsMCw0Ni4yLDMwLjIsNDYuMiw0N3Y0LjIgYy03OC42LTAuNC0xMjIuMywyNi41LTEyMi4zLDc1LjZjMCwyOS40LDIxLDU4LjQsNjIuMiw1OC40YzI5LDAsNTAuOS0xNC4zLDYyLjItMzAuMmgxLjNsMi45LDI1LjZIMTYwNC44eiBNMTU2NS43LDI1Ny43IGMwLDMuOC0wLjgsOC0yLjEsMTEuOGMtNS45LDE3LjItMjIuNywzNC00OS4yLDM0Yy0xOC45LDAtMzQuOS0xMS4zLTM0LjktMzUuM2MwLTM5LjUsNDUuOC00Ni42LDg2LjItNDUuOFYyNTcuN3ogTTE2OTguNSwzMjYuMiBsMS43LTMzLjZoMS4zYzE1LjEsMjYuOSwzOC43LDM4LjIsNjguMSwzOC4yYzQ1LjQsMCw5MS4yLTM2LjEsOTEuMi0xMDguOGMwLjQtNjEuNy0zNS4zLTEwMy43LTg1LjctMTAzLjcgYy0zMi44LDAtNTYuMywxNC43LTY5LjMsMzcuNGgtMC44VjI4aC0zNi42djI0NS43YzAsMTguMS0wLjgsMzguNi0xLjcsNTIuNUgxNjk4LjV6IE0xNzA0LjgsMjA4LjJjMC01LjksMS4zLTEwLjksMi4xLTE1LjEgYzcuNi0yOC4xLDMxLjEtNDUuNCw1Ni4zLTQ1LjRjMzkuNSwwLDYwLjUsMzQuOSw2MC41LDc1LjZjMCw0Ni42LTIzLjEsNzguMS02MS44LDc4LjFjLTI2LjksMC00OC4zLTE3LjYtNTUuNS00My4zIGMtMC44LTQuMi0xLjctOC44LTEuNy0xMy40VjIwOC4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgZmlsbD0iIzYxNjE2MSIgZD0iTTE1IDlIOXY2aDZWOXptLTIgNGgtMnYtMmgydjJ6bTgtMlY5aC0yVjdjMC0xLjEtLjktMi0yLTJoLTJWM2gtMnYyaC0yVjNIOXYySDdjLTEuMSAwLTIgLjktMiAydjJIM3YyaDJ2MkgzdjJoMnYyYzAgMS4xLjkgMiAyIDJoMnYyaDJ2LTJoMnYyaDJ2LTJoMmMxLjEgMCAyLS45IDItMnYtMmgydi0yaC0ydi0yaDJ6bS00IDZIN1Y3aDEwdjEweiIvPgo8L3N2Zz4K);\n  --jp-icon-keyboard: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMTdjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY3YzAtMS4xLS45LTItMi0yem0tOSAzaDJ2MmgtMlY4em0wIDNoMnYyaC0ydi0yek04IDhoMnYySDhWOHptMCAzaDJ2Mkg4di0yem0tMSAySDV2LTJoMnYyem0wLTNINVY4aDJ2MnptOSA3SDh2LTJoOHYyem0wLTRoLTJ2LTJoMnYyem0wLTNoLTJWOGgydjJ6bTMgM2gtMnYtMmgydjJ6bTAtM2gtMlY4aDJ2MnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-launcher: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkgMTlINVY1aDdWM0g1YTIgMiAwIDAwLTIgMnYxNGEyIDIgMCAwMDIgMmgxNGMxLjEgMCAyLS45IDItMnYtN2gtMnY3ek0xNCAzdjJoMy41OWwtOS44MyA5LjgzIDEuNDEgMS40MUwxOSA2LjQxVjEwaDJWM2gtN3oiLz4KPC9zdmc+Cg==);\n  --jp-icon-line-form: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGZpbGw9IndoaXRlIiBkPSJNNS44OCA0LjEyTDEzLjc2IDEybC03Ljg4IDcuODhMOCAyMmwxMC0xMEw4IDJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-link: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMuOSAxMmMwLTEuNzEgMS4zOS0zLjEgMy4xLTMuMWg0VjdIN2MtMi43NiAwLTUgMi4yNC01IDVzMi4yNCA1IDUgNWg0di0xLjlIN2MtMS43MSAwLTMuMS0xLjM5LTMuMS0zLjF6TTggMTNoOHYtMkg4djJ6bTktNmgtNHYxLjloNGMxLjcxIDAgMy4xIDEuMzkgMy4xIDMuMXMtMS4zOSAzLjEtMy4xIDMuMWgtNFYxN2g0YzIuNzYgMCA1LTIuMjQgNS01cy0yLjI0LTUtNS01eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiM2MTYxNjEiIGQ9Ik0xOSA1djE0SDVWNWgxNG0xLjEtMkgzLjljLS41IDAtLjkuNC0uOS45djE2LjJjMCAuNC40LjkuOS45aDE2LjJjLjQgMCAuOS0uNS45LS45VjMuOWMwLS41LS41LS45LS45LS45ek0xMSA3aDZ2MmgtNlY3em0wIDRoNnYyaC02di0yem0wIDRoNnYyaC02ek03IDdoMnYySDd6bTAgNGgydjJIN3ptMCA0aDJ2Mkg3eiIvPgo8L3N2Zz4=);\n  --jp-icon-listings-info: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MC45NzggNTAuOTc4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MC45NzggNTAuOTc4OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+Cgk8Zz4KCQk8cGF0aCBzdHlsZT0iZmlsbDojMDEwMDAyOyIgZD0iTTQzLjUyLDcuNDU4QzM4LjcxMSwyLjY0OCwzMi4zMDcsMCwyNS40ODksMEMxOC42NywwLDEyLjI2NiwyLjY0OCw3LjQ1OCw3LjQ1OAoJCQljLTkuOTQzLDkuOTQxLTkuOTQzLDI2LjExOSwwLDM2LjA2MmM0LjgwOSw0LjgwOSwxMS4yMTIsNy40NTYsMTguMDMxLDcuNDU4YzAsMCwwLjAwMSwwLDAuMDAyLDAKCQkJYzYuODE2LDAsMTMuMjIxLTIuNjQ4LDE4LjAyOS03LjQ1OGM0LjgwOS00LjgwOSw3LjQ1Ny0xMS4yMTIsNy40NTctMTguMDNDNTAuOTc3LDE4LjY3LDQ4LjMyOCwxMi4yNjYsNDMuNTIsNy40NTh6CgkJCSBNNDIuMTA2LDQyLjEwNWMtNC40MzIsNC40MzEtMTAuMzMyLDYuODcyLTE2LjYxNSw2Ljg3MmgtMC4wMDJjLTYuMjg1LTAuMDAxLTEyLjE4Ny0yLjQ0MS0xNi42MTctNi44NzIKCQkJYy05LjE2Mi05LjE2My05LjE2Mi0yNC4wNzEsMC0zMy4yMzNDMTMuMzAzLDQuNDQsMTkuMjA0LDIsMjUuNDg5LDJjNi4yODQsMCwxMi4xODYsMi40NCwxNi42MTcsNi44NzIKCQkJYzQuNDMxLDQuNDMxLDYuODcxLDEwLjMzMiw2Ljg3MSwxNi42MTdDNDguOTc3LDMxLjc3Miw0Ni41MzYsMzcuNjc1LDQyLjEwNiw0Mi4xMDV6Ii8+CgkJPHBhdGggc3R5bGU9ImZpbGw6IzAxMDAwMjsiIGQ9Ik0yMy41NzgsMzIuMjE4Yy0wLjAyMy0xLjczNCwwLjE0My0zLjA1OSwwLjQ5Ni0zLjk3MmMwLjM1My0wLjkxMywxLjExLTEuOTk3LDIuMjcyLTMuMjUzCgkJCWMwLjQ2OC0wLjUzNiwwLjkyMy0xLjA2MiwxLjM2Ny0xLjU3NWMwLjYyNi0wLjc1MywxLjEwNC0xLjQ3OCwxLjQzNi0yLjE3NWMwLjMzMS0wLjcwNywwLjQ5NS0xLjU0MSwwLjQ5NS0yLjUKCQkJYzAtMS4wOTYtMC4yNi0yLjA4OC0wLjc3OS0yLjk3OWMtMC41NjUtMC44NzktMS41MDEtMS4zMzYtMi44MDYtMS4zNjljLTEuODAyLDAuMDU3LTIuOTg1LDAuNjY3LTMuNTUsMS44MzIKCQkJYy0wLjMwMSwwLjUzNS0wLjUwMywxLjE0MS0wLjYwNywxLjgxNGMtMC4xMzksMC43MDctMC4yMDcsMS40MzItMC4yMDcsMi4xNzRoLTIuOTM3Yy0wLjA5MS0yLjIwOCwwLjQwNy00LjExNCwxLjQ5My01LjcxOQoJCQljMS4wNjItMS42NCwyLjg1NS0yLjQ4MSw1LjM3OC0yLjUyN2MyLjE2LDAuMDIzLDMuODc0LDAuNjA4LDUuMTQxLDEuNzU4YzEuMjc4LDEuMTYsMS45MjksMi43NjQsMS45NSw0LjgxMQoJCQljMCwxLjE0Mi0wLjEzNywyLjExMS0wLjQxLDIuOTExYy0wLjMwOSwwLjg0NS0wLjczMSwxLjU5My0xLjI2OCwyLjI0M2MtMC40OTIsMC42NS0xLjA2OCwxLjMxOC0xLjczLDIuMDAyCgkJCWMtMC42NSwwLjY5Ny0xLjMxMywxLjQ3OS0xLjk4NywyLjM0NmMtMC4yMzksMC4zNzctMC40MjksMC43NzctMC41NjUsMS4xOTljLTAuMTYsMC45NTktMC4yMTcsMS45NTEtMC4xNzEsMi45NzkKCQkJQzI2LjU4OSwzMi4yMTgsMjMuNTc4LDMyLjIxOCwyMy41NzgsMzIuMjE4eiBNMjMuNTc4LDM4LjIydi0zLjQ4NGgzLjA3NnYzLjQ4NEgyMy41Nzh6Ii8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-markdown: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjN0IxRkEyIiBkPSJNNSAxNC45aDEybC02LjEgNnptOS40LTYuOGMwLTEuMy0uMS0yLjktLjEtNC41LS40IDEuNC0uOSAyLjktMS4zIDQuM2wtMS4zIDQuM2gtMkw4LjUgNy45Yy0uNC0xLjMtLjctMi45LTEtNC4zLS4xIDEuNi0uMSAzLjItLjIgNC42TDcgMTIuNEg0LjhsLjctMTFoMy4zTDEwIDVjLjQgMS4yLjcgMi43IDEgMy45LjMtMS4yLjctMi42IDEtMy45bDEuMi0zLjdoMy4zbC42IDExaC0yLjRsLS4zLTQuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-new-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwIDZoLThsLTItMkg0Yy0xLjExIDAtMS45OS44OS0xLjk5IDJMMiAxOGMwIDEuMTEuODkgMiAyIDJoMTZjMS4xMSAwIDItLjg5IDItMlY4YzAtMS4xMS0uODktMi0yLTJ6bS0xIDhoLTN2M2gtMnYtM2gtM3YtMmgzVjloMnYzaDN2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-not-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI1IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMTkgMTcuMTg0NCAyLjk2OTY4IDE0LjMwMzIgMS44NjA5NCAxMS40NDA5WiIvPgogICAgPHBhdGggY2xhc3M9ImpwLWljb24yIiBzdHJva2U9IiMzMzMzMzMiIHN0cm9rZS13aWR0aD0iMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOS4zMTU5MiA5LjMyMDMxKSIgZD0iTTcuMzY4NDIgMEwwIDcuMzY0NzkiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDkuMzE1OTIgMTYuNjgzNikgc2NhbGUoMSAtMSkiIGQ9Ik03LjM2ODQyIDBMMCA3LjM2NDc5Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-notebook: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNFRjZDMDAiPgogICAgPHBhdGggZD0iTTE4LjcgMy4zdjE1LjRIMy4zVjMuM2gxNS40bTEuNS0xLjVIMS44djE4LjNoMTguM2wuMS0xOC4zeiIvPgogICAgPHBhdGggZD0iTTE2LjUgMTYuNWwtNS40LTQuMy01LjYgNC4zdi0xMWgxMXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-numbering: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTQgMTlINlYxOS41SDVWMjAuNUg2VjIxSDRWMjJIN1YxOEg0VjE5Wk01IDEwSDZWNkg0VjdINVYxMFpNNCAxM0g1LjhMNCAxNS4xVjE2SDdWMTVINS4yTDcgMTIuOVYxMkg0VjEzWk05IDdWOUgyM1Y3SDlaTTkgMjFIMjNWMTlIOVYyMVpNOSAxNUgyM1YxM0g5VjE1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-offline-bolt: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDIuMDJjLTUuNTEgMC05Ljk4IDQuNDctOS45OCA5Ljk4czQuNDcgOS45OCA5Ljk4IDkuOTggOS45OC00LjQ3IDkuOTgtOS45OFMxNy41MSAyLjAyIDEyIDIuMDJ6TTExLjQ4IDIwdi02LjI2SDhMMTMgNHY2LjI2aDMuMzVMMTEuNDggMjB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-palette: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE4IDEzVjIwSDRWNkg5LjAyQzkuMDcgNS4yOSA5LjI0IDQuNjIgOS41IDRINEMyLjkgNCAyIDQuOSAyIDZWMjBDMiAyMS4xIDIuOSAyMiA0IDIySDE4QzE5LjEgMjIgMjAgMjEuMSAyMCAyMFYxNUwxOCAxM1pNMTkuMyA4Ljg5QzE5Ljc0IDguMTkgMjAgNy4zOCAyMCA2LjVDMjAgNC4wMSAxNy45OSAyIDE1LjUgMkMxMy4wMSAyIDExIDQuMDEgMTEgNi41QzExIDguOTkgMTMuMDEgMTEgMTUuNDkgMTFDMTYuMzcgMTEgMTcuMTkgMTAuNzQgMTcuODggMTAuM0wyMSAxMy40MkwyMi40MiAxMkwxOS4zIDguODlaTTE1LjUgOUMxNC4xMiA5IDEzIDcuODggMTMgNi41QzEzIDUuMTIgMTQuMTIgNCAxNS41IDRDMTYuODggNCAxOCA1LjEyIDE4IDYuNUMxOCA3Ljg4IDE2Ljg4IDkgMTUuNSA5WiIvPgogICAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDZIOS4wMTg5NEM5LjAwNjM5IDYuMTY1MDIgOSA2LjMzMTc2IDkgNi41QzkgOC44MTU3NyAxMC4yMTEgMTAuODQ4NyAxMi4wMzQzIDEySDlWMTRIMTZWMTIuOTgxMUMxNi41NzAzIDEyLjkzNzcgMTcuMTIgMTIuODIwNyAxNy42Mzk2IDEyLjYzOTZMMTggMTNWMjBINFY2Wk04IDhINlYxMEg4VjhaTTYgMTJIOFYxNEg2VjEyWk04IDE2SDZWMThIOFYxNlpNOSAxNkgxNlYxOEg5VjE2WiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-paste: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE5IDJoLTQuMThDMTQuNC44NCAxMy4zIDAgMTIgMGMtMS4zIDAtMi40Ljg0LTIuODIgMkg1Yy0xLjEgMC0yIC45LTIgMnYxNmMwIDEuMS45IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjRjMC0xLjEtLjktMi0yLTJ6bS03IDBjLjU1IDAgMSAuNDUgMSAxcy0uNDUgMS0xIDEtMS0uNDUtMS0xIC40NS0xIDEtMXptNyAxOEg1VjRoMnYzaDEwVjRoMnYxNnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-pdf: url(data:image/svg+xml;base64,PHN2ZwogICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMiAyMiIgd2lkdGg9IjE2Ij4KICAgIDxwYXRoIHRyYW5zZm9ybT0icm90YXRlKDQ1KSIgY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI0ZGMkEyQSIKICAgICAgIGQ9Im0gMjIuMzQ0MzY5LC0zLjAxNjM2NDIgaCA1LjYzODYwNCB2IDEuNTc5MjQzMyBoIC0zLjU0OTIyNyB2IDEuNTA4NjkyOTkgaCAzLjMzNzU3NiBWIDEuNjUwODE1NCBoIC0zLjMzNzU3NiB2IDMuNDM1MjYxMyBoIC0yLjA4OTM3NyB6IG0gLTcuMTM2NDQ0LDEuNTc5MjQzMyB2IDQuOTQzOTU0MyBoIDAuNzQ4OTIgcSAxLjI4MDc2MSwwIDEuOTUzNzAzLC0wLjYzNDk1MzUgMC42NzgzNjksLTAuNjM0OTUzNSAwLjY3ODM2OSwtMS44NDUxNjQxIDAsLTEuMjA0NzgzNTUgLTAuNjcyOTQyLC0xLjgzNDMxMDExIC0wLjY3Mjk0MiwtMC42Mjk1MjY1OSAtMS45NTkxMywtMC42Mjk1MjY1OSB6IG0gLTIuMDg5Mzc3LC0xLjU3OTI0MzMgaCAyLjIwMzM0MyBxIDEuODQ1MTY0LDAgMi43NDYwMzksMC4yNjU5MjA3IDAuOTA2MzAxLDAuMjYwNDkzNyAxLjU1MjEwOCwwLjg5MDAyMDMgMC41Njk4MywwLjU0ODEyMjMgMC44NDY2MDUsMS4yNjQ0ODAwNiAwLjI3Njc3NCwwLjcxNjM1NzgxIDAuMjc2Nzc0LDEuNjIyNjU4OTQgMCwwLjkxNzE1NTEgLTAuMjc2Nzc0LDEuNjM4OTM5OSAtMC4yNzY3NzUsMC43MTYzNTc4IC0wLjg0NjYwNSwxLjI2NDQ4IC0wLjY1MTIzNCwwLjYyOTUyNjYgLTEuNTYyOTYyLDAuODk1NDQ3MyAtMC45MTE3MjgsMC4yNjA0OTM3IC0yLjczNTE4NSwwLjI2MDQ5MzcgaCAtMi4yMDMzNDMgeiBtIC04LjE0NTg1NjUsMCBoIDMuNDY3ODIzIHEgMS41NDY2ODE2LDAgMi4zNzE1Nzg1LDAuNjg5MjIzIDAuODMwMzI0LDAuNjgzNzk2MSAwLjgzMDMyNCwxLjk1MzcwMzE0IDAsMS4yNzUzMzM5NyAtMC44MzAzMjQsMS45NjQ1NTcwNiBRIDkuOTg3MTk2MSwyLjI3NDkxNSA4LjQ0MDUxNDUsMi4yNzQ5MTUgSCA3LjA2MjA2ODQgViA1LjA4NjA3NjcgSCA0Ljk3MjY5MTUgWiBtIDIuMDg5Mzc2OSwxLjUxNDExOTkgdiAyLjI2MzAzOTQzIGggMS4xNTU5NDEgcSAwLjYwNzgxODgsMCAwLjkzODg2MjksLTAuMjkzMDU1NDcgMC4zMzEwNDQxLC0wLjI5ODQ4MjQxIDAuMzMxMDQ0MSwtMC44NDExNzc3MiAwLC0wLjU0MjY5NTMxIC0wLjMzMTA0NDEsLTAuODM1NzUwNzQgLTAuMzMxMDQ0MSwtMC4yOTMwNTU1IC0wLjkzODg2MjksLTAuMjkzMDU1NSB6IgovPgo8L3N2Zz4K);\n  --jp-icon-python: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMEQ0N0ExIj4KICAgIDxwYXRoIGQ9Ik0xMS4xIDYuOVY1LjhINi45YzAtLjUgMC0xLjMuMi0xLjYuNC0uNy44LTEuMSAxLjctMS40IDEuNy0uMyAyLjUtLjMgMy45LS4xIDEgLjEgMS45LjkgMS45IDEuOXY0LjJjMCAuNS0uOSAxLjYtMiAxLjZIOC44Yy0xLjUgMC0yLjQgMS40LTIuNCAyLjh2Mi4ySDQuN0MzLjUgMTUuMSAzIDE0IDMgMTMuMVY5Yy0uMS0xIC42LTIgMS44LTIgMS41LS4xIDYuMy0uMSA2LjMtLjF6Ii8+CiAgICA8cGF0aCBkPSJNMTAuOSAxNS4xdjEuMWg0LjJjMCAuNSAwIDEuMy0uMiAxLjYtLjQuNy0uOCAxLjEtMS43IDEuNC0xLjcuMy0yLjUuMy0zLjkuMS0xLS4xLTEuOS0uOS0xLjktMS45di00LjJjMC0uNS45LTEuNiAyLTEuNmgzLjhjMS41IDAgMi40LTEuNCAyLjQtMi44VjYuNmgxLjdDMTguNSA2LjkgMTkgOCAxOSA4LjlWMTNjMCAxLS43IDIuMS0xLjkgMi4xaC02LjJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-r-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjE5NkYzIiBkPSJNNC40IDIuNWMxLjItLjEgMi45LS4zIDQuOS0uMyAyLjUgMCA0LjEuNCA1LjIgMS4zIDEgLjcgMS41IDEuOSAxLjUgMy41IDAgMi0xLjQgMy41LTIuOSA0LjEgMS4yLjQgMS43IDEuNiAyLjIgMyAuNiAxLjkgMSAzLjkgMS4zIDQuNmgtMy44Yy0uMy0uNC0uOC0xLjctMS4yLTMuN3MtMS4yLTIuNi0yLjYtMi42aC0uOXY2LjRINC40VjIuNXptMy43IDYuOWgxLjRjMS45IDAgMi45LS45IDIuOS0yLjNzLTEtMi4zLTIuOC0yLjNjLS43IDAtMS4zIDAtMS42LjJ2NC41aC4xdi0uMXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-react: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMTUwIDE1MCA1NDEuOSAyOTUuMyI+CiAgPGcgY2xhc3M9ImpwLWljb24tYnJhbmQyIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzYxREFGQiI+CiAgICA8cGF0aCBkPSJNNjY2LjMgMjk2LjVjMC0zMi41LTQwLjctNjMuMy0xMDMuMS04Mi40IDE0LjQtNjMuNiA4LTExNC4yLTIwLjItMTMwLjQtNi41LTMuOC0xNC4xLTUuNi0yMi40LTUuNnYyMi4zYzQuNiAwIDguMy45IDExLjQgMi42IDEzLjYgNy44IDE5LjUgMzcuNSAxNC45IDc1LjctMS4xIDkuNC0yLjkgMTkuMy01LjEgMjkuNC0xOS42LTQuOC00MS04LjUtNjMuNS0xMC45LTEzLjUtMTguNS0yNy41LTM1LjMtNDEuNi01MCAzMi42LTMwLjMgNjMuMi00Ni45IDg0LTQ2LjlWNzhjLTI3LjUgMC02My41IDE5LjYtOTkuOSA1My42LTM2LjQtMzMuOC03Mi40LTUzLjItOTkuOS01My4ydjIyLjNjMjAuNyAwIDUxLjQgMTYuNSA4NCA0Ni42LTE0IDE0LjctMjggMzEuNC00MS4zIDQ5LjktMjIuNiAyLjQtNDQgNi4xLTYzLjYgMTEtMi4zLTEwLTQtMTkuNy01LjItMjktNC43LTM4LjIgMS4xLTY3LjkgMTQuNi03NS44IDMtMS44IDYuOS0yLjYgMTEuNS0yLjZWNzguNWMtOC40IDAtMTYgMS44LTIyLjYgNS42LTI4LjEgMTYuMi0zNC40IDY2LjctMTkuOSAxMzAuMS02Mi4yIDE5LjItMTAyLjcgNDkuOS0xMDIuNyA4Mi4zIDAgMzIuNSA0MC43IDYzLjMgMTAzLjEgODIuNC0xNC40IDYzLjYtOCAxMTQuMiAyMC4yIDEzMC40IDYuNSAzLjggMTQuMSA1LjYgMjIuNSA1LjYgMjcuNSAwIDYzLjUtMTkuNiA5OS45LTUzLjYgMzYuNCAzMy44IDcyLjQgNTMuMiA5OS45IDUzLjIgOC40IDAgMTYtMS44IDIyLjYtNS42IDI4LjEtMTYuMiAzNC40LTY2LjcgMTkuOS0xMzAuMSA2Mi0xOS4xIDEwMi41LTQ5LjkgMTAyLjUtODIuM3ptLTEzMC4yLTY2LjdjLTMuNyAxMi45LTguMyAyNi4yLTEzLjUgMzkuNS00LjEtOC04LjQtMTYtMTMuMS0yNC00LjYtOC05LjUtMTUuOC0xNC40LTIzLjQgMTQuMiAyLjEgMjcuOSA0LjcgNDEgNy45em0tNDUuOCAxMDYuNWMtNy44IDEzLjUtMTUuOCAyNi4zLTI0LjEgMzguMi0xNC45IDEuMy0zMCAyLTQ1LjIgMi0xNS4xIDAtMzAuMi0uNy00NS0xLjktOC4zLTExLjktMTYuNC0yNC42LTI0LjItMzgtNy42LTEzLjEtMTQuNS0yNi40LTIwLjgtMzkuOCA2LjItMTMuNCAxMy4yLTI2LjggMjAuNy0zOS45IDcuOC0xMy41IDE1LjgtMjYuMyAyNC4xLTM4LjIgMTQuOS0xLjMgMzAtMiA0NS4yLTIgMTUuMSAwIDMwLjIuNyA0NSAxLjkgOC4zIDExLjkgMTYuNCAyNC42IDI0LjIgMzggNy42IDEzLjEgMTQuNSAyNi40IDIwLjggMzkuOC02LjMgMTMuNC0xMy4yIDI2LjgtMjAuNyAzOS45em0zMi4zLTEzYzUuNCAxMy40IDEwIDI2LjggMTMuOCAzOS44LTEzLjEgMy4yLTI2LjkgNS45LTQxLjIgOCA0LjktNy43IDkuOC0xNS42IDE0LjQtMjMuNyA0LjYtOCA4LjktMTYuMSAxMy0yNC4xek00MjEuMiA0MzBjLTkuMy05LjYtMTguNi0yMC4zLTI3LjgtMzIgOSAuNCAxOC4yLjcgMjcuNS43IDkuNCAwIDE4LjctLjIgMjcuOC0uNy05IDExLjctMTguMyAyMi40LTI3LjUgMzJ6bS03NC40LTU4LjljLTE0LjItMi4xLTI3LjktNC43LTQxLTcuOSAzLjctMTIuOSA4LjMtMjYuMiAxMy41LTM5LjUgNC4xIDggOC40IDE2IDEzLjEgMjQgNC43IDggOS41IDE1LjggMTQuNCAyMy40ek00MjAuNyAxNjNjOS4zIDkuNiAxOC42IDIwLjMgMjcuOCAzMi05LS40LTE4LjItLjctMjcuNS0uNy05LjQgMC0xOC43LjItMjcuOC43IDktMTEuNyAxOC4zLTIyLjQgMjcuNS0zMnptLTc0IDU4LjljLTQuOSA3LjctOS44IDE1LjYtMTQuNCAyMy43LTQuNiA4LTguOSAxNi0xMyAyNC01LjQtMTMuNC0xMC0yNi44LTEzLjgtMzkuOCAxMy4xLTMuMSAyNi45LTUuOCA0MS4yLTcuOXptLTkwLjUgMTI1LjJjLTM1LjQtMTUuMS01OC4zLTM0LjktNTguMy01MC42IDAtMTUuNyAyMi45LTM1LjYgNTguMy01MC42IDguNi0zLjcgMTgtNyAyNy43LTEwLjEgNS43IDE5LjYgMTMuMiA0MCAyMi41IDYwLjktOS4yIDIwLjgtMTYuNiA0MS4xLTIyLjIgNjAuNi05LjktMy4xLTE5LjMtNi41LTI4LTEwLjJ6TTMxMCA0OTBjLTEzLjYtNy44LTE5LjUtMzcuNS0xNC45LTc1LjcgMS4xLTkuNCAyLjktMTkuMyA1LjEtMjkuNCAxOS42IDQuOCA0MSA4LjUgNjMuNSAxMC45IDEzLjUgMTguNSAyNy41IDM1LjMgNDEuNiA1MC0zMi42IDMwLjMtNjMuMiA0Ni45LTg0IDQ2LjktNC41LS4xLTguMy0xLTExLjMtMi43em0yMzcuMi03Ni4yYzQuNyAzOC4yLTEuMSA2Ny45LTE0LjYgNzUuOC0zIDEuOC02LjkgMi42LTExLjUgMi42LTIwLjcgMC01MS40LTE2LjUtODQtNDYuNiAxNC0xNC43IDI4LTMxLjQgNDEuMy00OS45IDIyLjYtMi40IDQ0LTYuMSA2My42LTExIDIuMyAxMC4xIDQuMSAxOS44IDUuMiAyOS4xem0zOC41LTY2LjdjLTguNiAzLjctMTggNy0yNy43IDEwLjEtNS43LTE5LjYtMTMuMi00MC0yMi41LTYwLjkgOS4yLTIwLjggMTYuNi00MS4xIDIyLjItNjAuNiA5LjkgMy4xIDE5LjMgNi41IDI4LjEgMTAuMiAzNS40IDE1LjEgNTguMyAzNC45IDU4LjMgNTAuNi0uMSAxNS43LTIzIDM1LjYtNTguNCA1MC42ek0zMjAuOCA3OC40eiIvPgogICAgPGNpcmNsZSBjeD0iNDIwLjkiIGN5PSIyOTYuNSIgcj0iNDUuNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-redo: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTE4LjQgMTAuNkMxNi41NSA4Ljk5IDE0LjE1IDggMTEuNSA4Yy00LjY1IDAtOC41OCAzLjAzLTkuOTYgNy4yMkwzLjkgMTZjMS4wNS0zLjE5IDQuMDUtNS41IDcuNi01LjUgMS45NSAwIDMuNzMuNzIgNS4xMiAxLjg4TDEzIDE2aDlWN2wtMy42IDMuNnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-refresh: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTkgMTMuNWMtMi40OSAwLTQuNS0yLjAxLTQuNS00LjVTNi41MSA0LjUgOSA0LjVjMS4yNCAwIDIuMzYuNTIgMy4xNyAxLjMzTDEwIDhoNVYzbC0xLjc2IDEuNzZDMTIuMTUgMy42OCAxMC42NiAzIDkgMyA1LjY5IDMgMy4wMSA1LjY5IDMuMDEgOVM1LjY5IDE1IDkgMTVjMi45NyAwIDUuNDMtMi4xNiA1LjktNWgtMS41MmMtLjQ2IDItMi4yNCAzLjUtNC4zOCAzLjV6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-regex: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi1hY2NlbnQyIiBmaWxsPSIjRkZGIj4KICAgIDxjaXJjbGUgY2xhc3M9InN0MiIgY3g9IjUuNSIgY3k9IjE0LjUiIHI9IjEuNSIvPgogICAgPHJlY3QgeD0iMTIiIHk9IjQiIGNsYXNzPSJzdDIiIHdpZHRoPSIxIiBoZWlnaHQ9IjgiLz4KICAgIDxyZWN0IHg9IjguNSIgeT0iNy41IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjg2NiAtMC41IDAuNSAwLjg2NiAtMi4zMjU1IDcuMzIxOSkiIGNsYXNzPSJzdDIiIHdpZHRoPSI4IiBoZWlnaHQ9IjEiLz4KICAgIDxyZWN0IHg9IjEyIiB5PSI0IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjUgLTAuODY2IDAuODY2IDAuNSAtMC42Nzc5IDE0LjgyNTIpIiBjbGFzcz0ic3QyIiB3aWR0aD0iMSIgaGVpZ2h0PSI4Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-run: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTggNXYxNGwxMS03eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-running: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptOTYgMzI4YzAgOC44LTcuMiAxNi0xNiAxNkgxNzZjLTguOCAwLTE2LTcuMi0xNi0xNlYxNzZjMC04LjggNy4yLTE2IDE2LTE2aDE2MGM4LjggMCAxNiA3LjIgMTYgMTZ2MTYweiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-save: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE3IDNINWMtMS4xMSAwLTIgLjktMiAydjE0YzAgMS4xLjg5IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjdsLTQtNHptLTUgMTZjLTEuNjYgMC0zLTEuMzQtMy0zczEuMzQtMyAzLTMgMyAxLjM0IDMgMy0xLjM0IDMtMyAzem0zLTEwSDVWNWgxMHY0eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-search: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjEsMTAuOWgtMC43bC0wLjItMC4yYzAuOC0wLjksMS4zLTIuMiwxLjMtMy41YzAtMy0yLjQtNS40LTUuNC01LjRTMS44LDQuMiwxLjgsNy4xczIuNCw1LjQsNS40LDUuNCBjMS4zLDAsMi41LTAuNSwzLjUtMS4zbDAuMiwwLjJ2MC43bDQuMSw0LjFsMS4yLTEuMkwxMi4xLDEwLjl6IE03LjEsMTAuOWMtMi4xLDAtMy43LTEuNy0zLjctMy43czEuNy0zLjcsMy43LTMuN3MzLjcsMS43LDMuNywzLjcgUzkuMiwxMC45LDcuMSwxMC45eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-settings: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuNDMgMTIuOThjLjA0LS4zMi4wNy0uNjQuMDctLjk4cy0uMDMtLjY2LS4wNy0uOThsMi4xMS0xLjY1Yy4xOS0uMTUuMjQtLjQyLjEyLS42NGwtMi0zLjQ2Yy0uMTItLjIyLS4zOS0uMy0uNjEtLjIybC0yLjQ5IDFjLS41Mi0uNC0xLjA4LS43My0xLjY5LS45OGwtLjM4LTIuNjVBLjQ4OC40ODggMCAwMDE0IDJoLTRjLS4yNSAwLS40Ni4xOC0uNDkuNDJsLS4zOCAyLjY1Yy0uNjEuMjUtMS4xNy41OS0xLjY5Ljk4bC0yLjQ5LTFjLS4yMy0uMDktLjQ5IDAtLjYxLjIybC0yIDMuNDZjLS4xMy4yMi0uMDcuNDkuMTIuNjRsMi4xMSAxLjY1Yy0uMDQuMzItLjA3LjY1LS4wNy45OHMuMDMuNjYuMDcuOThsLTIuMTEgMS42NWMtLjE5LjE1LS4yNC40Mi0uMTIuNjRsMiAzLjQ2Yy4xMi4yMi4zOS4zLjYxLjIybDIuNDktMWMuNTIuNCAxLjA4LjczIDEuNjkuOThsLjM4IDIuNjVjLjAzLjI0LjI0LjQyLjQ5LjQyaDRjLjI1IDAgLjQ2LS4xOC40OS0uNDJsLjM4LTIuNjVjLjYxLS4yNSAxLjE3LS41OSAxLjY5LS45OGwyLjQ5IDFjLjIzLjA5LjQ5IDAgLjYxLS4yMmwyLTMuNDZjLjEyLS4yMi4wNy0uNDktLjEyLS42NGwtMi4xMS0xLjY1ek0xMiAxNS41Yy0xLjkzIDAtMy41LTEuNTctMy41LTMuNXMxLjU3LTMuNSAzLjUtMy41IDMuNSAxLjU3IDMuNSAzLjUtMS41NyAzLjUtMy41IDMuNXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-spreadsheet: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNENBRjUwIiBkPSJNMi4yIDIuMnYxNy42aDE3LjZWMi4ySDIuMnptMTUuNCA3LjdoLTUuNVY0LjRoNS41djUuNXpNOS45IDQuNHY1LjVINC40VjQuNGg1LjV6bS01LjUgNy43aDUuNXY1LjVINC40di01LjV6bTcuNyA1LjV2LTUuNWg1LjV2NS41aC01LjV6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-stop: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik02IDZoMTJ2MTJINnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tab: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIxIDNIM2MtMS4xIDAtMiAuOS0yIDJ2MTRjMCAxLjEuOSAyIDIgMmgxOGMxLjEgMCAyLS45IDItMlY1YzAtMS4xLS45LTItMi0yem0wIDE2SDNWNWgxMHY0aDh2MTB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-table-rows: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMSw4SDNWNGgxOFY4eiBNMjEsMTBIM3Y0aDE4VjEweiBNMjEsMTZIM3Y0aDE4VjE2eiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-tag: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCA0MyAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTI4LjgzMzIgMTIuMzM0TDMyLjk5OTggMTYuNTAwN0wzNy4xNjY1IDEyLjMzNEgyOC44MzMyWiIvPgoJCTxwYXRoIGQ9Ik0xNi4yMDk1IDIxLjYxMDRDMTUuNjg3MyAyMi4xMjk5IDE0Ljg0NDMgMjIuMTI5OSAxNC4zMjQ4IDIxLjYxMDRMNi45ODI5IDE0LjcyNDVDNi41NzI0IDE0LjMzOTQgNi4wODMxMyAxMy42MDk4IDYuMDQ3ODYgMTMuMDQ4MkM1Ljk1MzQ3IDExLjUyODggNi4wMjAwMiA4LjYxOTQ0IDYuMDY2MjEgNy4wNzY5NUM2LjA4MjgxIDYuNTE0NzcgNi41NTU0OCA2LjA0MzQ3IDcuMTE4MDQgNi4wMzA1NUM5LjA4ODYzIDUuOTg0NzMgMTMuMjYzOCA1LjkzNTc5IDEzLjY1MTggNi4zMjQyNUwyMS43MzY5IDEzLjYzOUMyMi4yNTYgMTQuMTU4NSAyMS43ODUxIDE1LjQ3MjQgMjEuMjYyIDE1Ljk5NDZMMTYuMjA5NSAyMS42MTA0Wk05Ljc3NTg1IDguMjY1QzkuMzM1NTEgNy44MjU2NiA4LjYyMzUxIDcuODI1NjYgOC4xODI4IDguMjY1QzcuNzQzNDYgOC43MDU3MSA3Ljc0MzQ2IDkuNDE3MzMgOC4xODI4IDkuODU2NjdDOC42MjM4MiAxMC4yOTY0IDkuMzM1ODIgMTAuMjk2NCA5Ljc3NTg1IDkuODU2NjdDMTAuMjE1NiA5LjQxNzMzIDEwLjIxNTYgOC43MDUzMyA5Ljc3NTg1IDguMjY1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-terminal: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiA+CiAgICA8cmVjdCBjbGFzcz0ianAtaWNvbjIganAtaWNvbi1zZWxlY3RhYmxlIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMikiIGZpbGw9IiMzMzMzMzMiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uLWFjY2VudDIganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGQ9Ik01LjA1NjY0IDguNzYxNzJDNS4wNTY2NCA4LjU5NzY2IDUuMDMxMjUgOC40NTMxMiA0Ljk4MDQ3IDguMzI4MTJDNC45MzM1OSA4LjE5OTIyIDQuODU1NDcgOC4wODIwMyA0Ljc0NjA5IDcuOTc2NTZDNC42NDA2MiA3Ljg3MTA5IDQuNSA3Ljc3NTM5IDQuMzI0MjIgNy42ODk0NUM0LjE1MjM0IDcuNTk5NjEgMy45NDMzNiA3LjUxMTcyIDMuNjk3MjcgNy40MjU3OEMzLjMwMjczIDcuMjg1MTYgMi45NDMzNiA3LjEzNjcyIDIuNjE5MTQgNi45ODA0N0MyLjI5NDkyIDYuODI0MjIgMi4wMTc1OCA2LjY0MjU4IDEuNzg3MTEgNi40MzU1NUMxLjU2MDU1IDYuMjI4NTIgMS4zODQ3NyA1Ljk4ODI4IDEuMjU5NzcgNS43MTQ4NEMxLjEzNDc3IDUuNDM3NSAxLjA3MjI3IDUuMTA5MzggMS4wNzIyNyA0LjczMDQ3QzEuMDcyMjcgNC4zOTg0NCAxLjEyODkxIDQuMDk1NyAxLjI0MjE5IDMuODIyMjdDMS4zNTU0NyAzLjU0NDkyIDEuNTE1NjIgMy4zMDQ2OSAxLjcyMjY2IDMuMTAxNTZDMS45Mjk2OSAyLjg5ODQ0IDIuMTc5NjkgMi43MzQzNyAyLjQ3MjY2IDIuNjA5MzhDMi43NjU2MiAyLjQ4NDM4IDMuMDkxOCAyLjQwNDMgMy40NTExNyAyLjM2OTE0VjEuMTA5MzhINC4zODg2N1YyLjM4MDg2QzQuNzQwMjMgMi40Mjc3MyA1LjA1NjY0IDIuNTIzNDQgNS4zMzc4OSAyLjY2Nzk3QzUuNjE5MTQgMi44MTI1IDUuODU3NDIgMy4wMDE5NSA2LjA1MjczIDMuMjM2MzNDNi4yNTE5NSAzLjQ2NjggNi40MDQzIDMuNzQwMjMgNi41MDk3NyA0LjA1NjY0QzYuNjE5MTQgNC4zNjkxNCA2LjY3MzgzIDQuNzIwNyA2LjY3MzgzIDUuMTExMzNINS4wNDQ5MkM1LjA0NDkyIDQuNjM4NjcgNC45Mzc1IDQuMjgxMjUgNC43MjI2NiA0LjAzOTA2QzQuNTA3ODEgMy43OTI5NyA0LjIxNjggMy42Njk5MiAzLjg0OTYxIDMuNjY5OTJDMy42NTAzOSAzLjY2OTkyIDMuNDc2NTYgMy42OTcyNyAzLjMyODEyIDMuNzUxOTVDMy4xODM1OSAzLjgwMjczIDMuMDY0NDUgMy44NzY5NSAyLjk3MDcgMy45NzQ2MUMyLjg3Njk1IDQuMDY4MzYgMi44MDY2NCA0LjE3OTY5IDIuNzU5NzcgNC4zMDg1OUMyLjcxNjggNC40Mzc1IDIuNjk1MzEgNC41NzgxMiAyLjY5NTMxIDQuNzMwNDdDMi42OTUzMSA0Ljg4MjgxIDIuNzE2OCA1LjAxOTUzIDIuNzU5NzcgNS4xNDA2MkMyLjgwNjY0IDUuMjU3ODEgMi44ODI4MSA1LjM2NzE5IDIuOTg4MjggNS40Njg3NUMzLjA5NzY2IDUuNTcwMzEgMy4yNDAyMyA1LjY2Nzk3IDMuNDE2MDIgNS43NjE3MkMzLjU5MTggNS44NTE1NiAzLjgxMDU1IDUuOTQzMzYgNC4wNzIyNyA2LjAzNzExQzQuNDY2OCA2LjE4NTU1IDQuODI0MjIgNi4zMzk4NCA1LjE0NDUzIDYuNUM1LjQ2NDg0IDYuNjU2MjUgNS43MzgyOCA2LjgzOTg0IDUuOTY0ODQgNy4wNTA3OEM2LjE5NTMxIDcuMjU3ODEgNi4zNzEwOSA3LjUgNi40OTIxOSA3Ljc3NzM0QzYuNjE3MTkgOC4wNTA3OCA2LjY3OTY5IDguMzc1IDYuNjc5NjkgOC43NUM2LjY3OTY5IDkuMDkzNzUgNi42MjMwNSA5LjQwNDMgNi41MDk3NyA5LjY4MTY0QzYuMzk2NDggOS45NTUwOCA2LjIzNDM4IDEwLjE5MTQgNi4wMjM0NCAxMC4zOTA2QzUuODEyNSAxMC41ODk4IDUuNTU4NTkgMTAuNzUgNS4yNjE3MiAxMC44NzExQzQuOTY0ODQgMTAuOTg4MyA0LjYzMjgxIDExLjA2NDUgNC4yNjU2MiAxMS4wOTk2VjEyLjI0OEgzLjMzMzk4VjExLjA5OTZDMy4wMDE5NSAxMS4wNjg0IDIuNjc5NjkgMTAuOTk2MSAyLjM2NzE5IDEwLjg4MjhDMi4wNTQ2OSAxMC43NjU2IDEuNzc3MzQgMTAuNTk3NyAxLjUzNTE2IDEwLjM3ODlDMS4yOTY4OCAxMC4xNjAyIDEuMTA1NDcgOS44ODQ3NyAwLjk2MDkzOCA5LjU1MjczQzAuODE2NDA2IDkuMjE2OCAwLjc0NDE0MSA4LjgxNDQ1IDAuNzQ0MTQxIDguMzQ1N0gyLjM3ODkxQzIuMzc4OTEgOC42MjY5NSAyLjQxOTkyIDguODYzMjggMi41MDE5NSA5LjA1NDY5QzIuNTgzOTggOS4yNDIxOSAyLjY4OTQ1IDkuMzkyNTggMi44MTgzNiA5LjUwNTg2QzIuOTUxMTcgOS42MTUyMyAzLjEwMTU2IDkuNjkzMzYgMy4yNjk1MyA5Ljc0MDIzQzMuNDM3NSA5Ljc4NzExIDMuNjA5MzggOS44MTA1NSAzLjc4NTE2IDkuODEwNTVDNC4yMDMxMiA5LjgxMDU1IDQuNTE5NTMgOS43MTI4OSA0LjczNDM4IDkuNTE3NThDNC45NDkyMiA5LjMyMjI3IDUuMDU2NjQgOS4wNzAzMSA1LjA1NjY0IDguNzYxNzJaTTEzLjQxOCAxMi4yNzE1SDguMDc0MjJWMTFIMTMuNDE4VjEyLjI3MTVaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzLjk1MjY0IDYpIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);\n  --jp-icon-text-editor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTUgMTVIM3YyaDEydi0yem0wLThIM3YyaDEyVjd6TTMgMTNoMTh2LTJIM3Yyem0wIDhoMTh2LTJIM3Yyek0zIDN2MmgxOFYzSDN6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-toc: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik03LDVIMjFWN0g3VjVNNywxM1YxMUgyMVYxM0g3TTQsNC41QTEuNSwxLjUgMCAwLDEgNS41LDZBMS41LDEuNSAwIDAsMSA0LDcuNUExLjUsMS41IDAgMCwxIDIuNSw2QTEuNSwxLjUgMCAwLDEgNCw0LjVNNCwxMC41QTEuNSwxLjUgMCAwLDEgNS41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMy41QTEuNSwxLjUgMCAwLDEgMi41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMC41TTcsMTlWMTdIMjFWMTlIN000LDE2LjVBMS41LDEuNSAwIDAsMSA1LjUsMThBMS41LDEuNSAwIDAsMSA0LDE5LjVBMS41LDEuNSAwIDAsMSAyLjUsMThBMS41LDEuNSAwIDAsMSA0LDE2LjVaIiAvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tree-view: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMiAxMVYzaC03djNIOVYzSDJ2OGg3VjhoMnYxMGg0djNoN3YtOGgtN3YzaC0yVjhoMnYzeiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMiAxNy4xODQ0IDIuOTY5NjggMTQuMzAzMiAxLjg2MDk0IDExLjQ0MDlaIi8+CiAgICA8cGF0aCBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiMzMzMzMzMiIHN0cm9rZT0iIzMzMzMzMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA5Ljg2NzE5KSIgZD0iTTIuODYwMTUgNC44NjUzNUwwLjcyNjU0OSAyLjk5OTU5TDAgMy42MzA0NUwyLjg2MDE1IDYuMTMxNTdMOCAwLjYzMDg3Mkw3LjI3ODU3IDBMMi44NjAxNSA0Ljg2NTM1WiIvPgo8L3N2Zz4K);\n  --jp-icon-undo: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjUgOGMtMi42NSAwLTUuMDUuOTktNi45IDIuNkwyIDd2OWg5bC0zLjYyLTMuNjJjMS4zOS0xLjE2IDMuMTYtMS44OCA1LjEyLTEuODggMy41NCAwIDYuNTUgMi4zMSA3LjYgNS41bDIuMzctLjc4QzIxLjA4IDExLjAzIDE3LjE1IDggMTIuNSA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-vega: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbjEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjEyMTIxIj4KICAgIDxwYXRoIGQ9Ik0xMC42IDUuNGwyLjItMy4ySDIuMnY3LjNsNC02LjZ6Ii8+CiAgICA8cGF0aCBkPSJNMTUuOCAyLjJsLTQuNCA2LjZMNyA2LjNsLTQuOCA4djUuNWgxNy42VjIuMmgtNHptLTcgMTUuNEg1LjV2LTQuNGgzLjN2NC40em00LjQgMEg5LjhWOS44aDMuNHY3Ljh6bTQuNCAwaC0zLjRWNi41aDMuNHYxMS4xeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-yaml: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1jb250cmFzdDIganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjRDgxQjYwIj4KICAgIDxwYXRoIGQ9Ik03LjIgMTguNnYtNS40TDMgNS42aDMuM2wxLjQgMy4xYy4zLjkuNiAxLjYgMSAyLjUuMy0uOC42LTEuNiAxLTIuNWwxLjQtMy4xaDMuNGwtNC40IDcuNnY1LjVsLTIuOS0uMXoiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxNi41IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxMSIgcj0iMi4xIi8+CiAgPC9nPgo8L3N2Zz4K);\n}\n\n/* Icon CSS class declarations */\n\n.jp-AddIcon {\n  background-image: var(--jp-icon-add);\n}\n.jp-BugIcon {\n  background-image: var(--jp-icon-bug);\n}\n.jp-BuildIcon {\n  background-image: var(--jp-icon-build);\n}\n.jp-CaretDownEmptyIcon {\n  background-image: var(--jp-icon-caret-down-empty);\n}\n.jp-CaretDownEmptyThinIcon {\n  background-image: var(--jp-icon-caret-down-empty-thin);\n}\n.jp-CaretDownIcon {\n  background-image: var(--jp-icon-caret-down);\n}\n.jp-CaretLeftIcon {\n  background-image: var(--jp-icon-caret-left);\n}\n.jp-CaretRightIcon {\n  background-image: var(--jp-icon-caret-right);\n}\n.jp-CaretUpEmptyThinIcon {\n  background-image: var(--jp-icon-caret-up-empty-thin);\n}\n.jp-CaretUpIcon {\n  background-image: var(--jp-icon-caret-up);\n}\n.jp-CaseSensitiveIcon {\n  background-image: var(--jp-icon-case-sensitive);\n}\n.jp-CheckIcon {\n  background-image: var(--jp-icon-check);\n}\n.jp-CircleEmptyIcon {\n  background-image: var(--jp-icon-circle-empty);\n}\n.jp-CircleIcon {\n  background-image: var(--jp-icon-circle);\n}\n.jp-ClearIcon {\n  background-image: var(--jp-icon-clear);\n}\n.jp-CloseIcon {\n  background-image: var(--jp-icon-close);\n}\n.jp-CodeIcon {\n  background-image: var(--jp-icon-code);\n}\n.jp-ConsoleIcon {\n  background-image: var(--jp-icon-console);\n}\n.jp-CopyIcon {\n  background-image: var(--jp-icon-copy);\n}\n.jp-CopyrightIcon {\n  background-image: var(--jp-icon-copyright);\n}\n.jp-CutIcon {\n  background-image: var(--jp-icon-cut);\n}\n.jp-DownloadIcon {\n  background-image: var(--jp-icon-download);\n}\n.jp-EditIcon {\n  background-image: var(--jp-icon-edit);\n}\n.jp-EllipsesIcon {\n  background-image: var(--jp-icon-ellipses);\n}\n.jp-ExtensionIcon {\n  background-image: var(--jp-icon-extension);\n}\n.jp-FastForwardIcon {\n  background-image: var(--jp-icon-fast-forward);\n}\n.jp-FileIcon {\n  background-image: var(--jp-icon-file);\n}\n.jp-FileUploadIcon {\n  background-image: var(--jp-icon-file-upload);\n}\n.jp-FilterListIcon {\n  background-image: var(--jp-icon-filter-list);\n}\n.jp-FolderIcon {\n  background-image: var(--jp-icon-folder);\n}\n.jp-Html5Icon {\n  background-image: var(--jp-icon-html5);\n}\n.jp-ImageIcon {\n  background-image: var(--jp-icon-image);\n}\n.jp-InspectorIcon {\n  background-image: var(--jp-icon-inspector);\n}\n.jp-JsonIcon {\n  background-image: var(--jp-icon-json);\n}\n.jp-JuliaIcon {\n  background-image: var(--jp-icon-julia);\n}\n.jp-JupyterFaviconIcon {\n  background-image: var(--jp-icon-jupyter-favicon);\n}\n.jp-JupyterIcon {\n  background-image: var(--jp-icon-jupyter);\n}\n.jp-JupyterlabWordmarkIcon {\n  background-image: var(--jp-icon-jupyterlab-wordmark);\n}\n.jp-KernelIcon {\n  background-image: var(--jp-icon-kernel);\n}\n.jp-KeyboardIcon {\n  background-image: var(--jp-icon-keyboard);\n}\n.jp-LauncherIcon {\n  background-image: var(--jp-icon-launcher);\n}\n.jp-LineFormIcon {\n  background-image: var(--jp-icon-line-form);\n}\n.jp-LinkIcon {\n  background-image: var(--jp-icon-link);\n}\n.jp-ListIcon {\n  background-image: var(--jp-icon-list);\n}\n.jp-ListingsInfoIcon {\n  background-image: var(--jp-icon-listings-info);\n}\n.jp-MarkdownIcon {\n  background-image: var(--jp-icon-markdown);\n}\n.jp-NewFolderIcon {\n  background-image: var(--jp-icon-new-folder);\n}\n.jp-NotTrustedIcon {\n  background-image: var(--jp-icon-not-trusted);\n}\n.jp-NotebookIcon {\n  background-image: var(--jp-icon-notebook);\n}\n.jp-NumberingIcon {\n  background-image: var(--jp-icon-numbering);\n}\n.jp-OfflineBoltIcon {\n  background-image: var(--jp-icon-offline-bolt);\n}\n.jp-PaletteIcon {\n  background-image: var(--jp-icon-palette);\n}\n.jp-PasteIcon {\n  background-image: var(--jp-icon-paste);\n}\n.jp-PdfIcon {\n  background-image: var(--jp-icon-pdf);\n}\n.jp-PythonIcon {\n  background-image: var(--jp-icon-python);\n}\n.jp-RKernelIcon {\n  background-image: var(--jp-icon-r-kernel);\n}\n.jp-ReactIcon {\n  background-image: var(--jp-icon-react);\n}\n.jp-RedoIcon {\n  background-image: var(--jp-icon-redo);\n}\n.jp-RefreshIcon {\n  background-image: var(--jp-icon-refresh);\n}\n.jp-RegexIcon {\n  background-image: var(--jp-icon-regex);\n}\n.jp-RunIcon {\n  background-image: var(--jp-icon-run);\n}\n.jp-RunningIcon {\n  background-image: var(--jp-icon-running);\n}\n.jp-SaveIcon {\n  background-image: var(--jp-icon-save);\n}\n.jp-SearchIcon {\n  background-image: var(--jp-icon-search);\n}\n.jp-SettingsIcon {\n  background-image: var(--jp-icon-settings);\n}\n.jp-SpreadsheetIcon {\n  background-image: var(--jp-icon-spreadsheet);\n}\n.jp-StopIcon {\n  background-image: var(--jp-icon-stop);\n}\n.jp-TabIcon {\n  background-image: var(--jp-icon-tab);\n}\n.jp-TableRowsIcon {\n  background-image: var(--jp-icon-table-rows);\n}\n.jp-TagIcon {\n  background-image: var(--jp-icon-tag);\n}\n.jp-TerminalIcon {\n  background-image: var(--jp-icon-terminal);\n}\n.jp-TextEditorIcon {\n  background-image: var(--jp-icon-text-editor);\n}\n.jp-TocIcon {\n  background-image: var(--jp-icon-toc);\n}\n.jp-TreeViewIcon {\n  background-image: var(--jp-icon-tree-view);\n}\n.jp-TrustedIcon {\n  background-image: var(--jp-icon-trusted);\n}\n.jp-UndoIcon {\n  background-image: var(--jp-icon-undo);\n}\n.jp-VegaIcon {\n  background-image: var(--jp-icon-vega);\n}\n.jp-YamlIcon {\n  background-image: var(--jp-icon-yaml);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n.jp-Icon,\n.jp-MaterialIcon {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-cover {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: cover;\n}\n\n/**\n * (DEPRECATED) Support for specific CSS icon sizes\n */\n\n.jp-Icon-16 {\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-18 {\n  background-size: 18px;\n  min-width: 18px;\n  min-height: 18px;\n}\n\n.jp-Icon-20 {\n  background-size: 20px;\n  min-width: 20px;\n  min-height: 20px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for icons as inline SVG HTMLElements\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n/* recolor the accent elements of an icon */\n.jp-icon-accent0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-accent1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-accent2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-accent3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-accent4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-accent0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-accent1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-accent2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-accent3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-accent4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n/* set the color of an icon to transparent */\n.jp-icon-none[fill] {\n  fill: none;\n}\n\n.jp-icon-none[stroke] {\n  stroke: none;\n}\n/* brand icon colors. Same for light and dark */\n.jp-icon-brand0[fill] {\n  fill: var(--jp-brand-color0);\n}\n.jp-icon-brand1[fill] {\n  fill: var(--jp-brand-color1);\n}\n.jp-icon-brand2[fill] {\n  fill: var(--jp-brand-color2);\n}\n.jp-icon-brand3[fill] {\n  fill: var(--jp-brand-color3);\n}\n.jp-icon-brand4[fill] {\n  fill: var(--jp-brand-color4);\n}\n\n.jp-icon-brand0[stroke] {\n  stroke: var(--jp-brand-color0);\n}\n.jp-icon-brand1[stroke] {\n  stroke: var(--jp-brand-color1);\n}\n.jp-icon-brand2[stroke] {\n  stroke: var(--jp-brand-color2);\n}\n.jp-icon-brand3[stroke] {\n  stroke: var(--jp-brand-color3);\n}\n.jp-icon-brand4[stroke] {\n  stroke: var(--jp-brand-color4);\n}\n/* warn icon colors. Same for light and dark */\n.jp-icon-warn0[fill] {\n  fill: var(--jp-warn-color0);\n}\n.jp-icon-warn1[fill] {\n  fill: var(--jp-warn-color1);\n}\n.jp-icon-warn2[fill] {\n  fill: var(--jp-warn-color2);\n}\n.jp-icon-warn3[fill] {\n  fill: var(--jp-warn-color3);\n}\n\n.jp-icon-warn0[stroke] {\n  stroke: var(--jp-warn-color0);\n}\n.jp-icon-warn1[stroke] {\n  stroke: var(--jp-warn-color1);\n}\n.jp-icon-warn2[stroke] {\n  stroke: var(--jp-warn-color2);\n}\n.jp-icon-warn3[stroke] {\n  stroke: var(--jp-warn-color3);\n}\n/* icon colors that contrast well with each other and most backgrounds */\n.jp-icon-contrast0[fill] {\n  fill: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[fill] {\n  fill: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[fill] {\n  fill: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[fill] {\n  fill: var(--jp-icon-contrast-color3);\n}\n\n.jp-icon-contrast0[stroke] {\n  stroke: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[stroke] {\n  stroke: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[stroke] {\n  stroke: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[stroke] {\n  stroke: var(--jp-icon-contrast-color3);\n}\n\n/* CSS for icons in selected items in the settings editor */\n#setting-editor .jp-PluginList .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n#setting-editor\n  .jp-PluginList\n  .jp-mod-selected\n  .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected filebrowser listing items */\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected tabs in the sidebar tab manager */\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable-inverse[fill] {\n  fill: #fff;\n}\n\n/**\n * TODO: come up with non css-hack solution for showing the busy icon on top\n *  of the close icon\n * CSS for complex behavior of close icon of tabs in the sidebar tab manager\n */\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty.jp-mod-active\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: #fff;\n}\n\n/**\n* TODO: come up with non css-hack solution for showing the busy icon on top\n*  of the close icon\n* CSS for complex behavior of close icon of tabs in the main area tabbar\n*/\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n/* CSS for icons in status bar */\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n/* special handling for splash icon CSS. While the theme CSS reloads during\n   splash, the splash icon can loose theming. To prevent that, we set a\n   default for its color variable */\n:root {\n  --jp-warn-color0: var(--md-orange-700);\n}\n\n/* not sure what to do with this one, used in filebrowser listing */\n.jp-DragIcon {\n  margin-right: 4px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for alt colors for icons as inline SVG HTMLElements\n */\n\n/* alt recolor the primary elements of an icon */\n.jp-icon-alt .jp-icon0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-alt .jp-icon0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* alt recolor the accent elements of an icon */\n.jp-icon-alt .jp-icon-accent0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-alt .jp-icon-accent0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-icon-hoverShow:not(:hover) svg {\n  display: none !important;\n}\n\n/**\n * Support for hover colors for icons as inline SVG HTMLElements\n */\n\n/**\n * regular colors\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon-hover :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/* recolor the accent elements of an icon */\n.jp-icon-hover :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* set the color of an icon to transparent */\n.jp-icon-hover :hover .jp-icon-none-hover[fill] {\n  fill: none;\n}\n\n.jp-icon-hover :hover .jp-icon-none-hover[stroke] {\n  stroke: none;\n}\n\n/**\n * inverse colors\n */\n\n/* inverse recolor the primary elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* inverse recolor the accent elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-switch {\n  display: flex;\n  align-items: center;\n  padding-left: 4px;\n  padding-right: 4px;\n  font-size: var(--jp-ui-font-size1);\n  background-color: transparent;\n  color: var(--jp-ui-font-color1);\n  border: none;\n  height: 20px;\n}\n\n.jp-switch:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-switch-label {\n  margin-right: 5px;\n}\n\n.jp-switch-track {\n  cursor: pointer;\n  background-color: var(--jp-border-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 34px;\n  height: 16px;\n  width: 35px;\n  position: relative;\n}\n\n.jp-switch-track::before {\n  content: '';\n  position: absolute;\n  height: 10px;\n  width: 10px;\n  margin: 3px;\n  left: 0px;\n  background-color: var(--jp-ui-inverse-font-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 50%;\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track {\n  background-color: var(--jp-warn-color0);\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track::before {\n  /* track width (35) - margins (3 + 3) - thumb width (10) */\n  left: 19px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* Sibling imports */\n\n/* Override Blueprint's _reset.scss styles */\nhtml {\n  box-sizing: unset;\n}\n\n*,\n*::before,\n*::after {\n  box-sizing: unset;\n}\n\nbody {\n  color: unset;\n  font-family: var(--jp-ui-font-family);\n}\n\np {\n  margin-top: unset;\n  margin-bottom: unset;\n}\n\nsmall {\n  font-size: unset;\n}\n\nstrong {\n  font-weight: unset;\n}\n\n/* Override Blueprint's _typography.scss styles */\na {\n  text-decoration: unset;\n  color: unset;\n}\na:hover {\n  text-decoration: unset;\n  color: unset;\n}\n\n/* Override Blueprint's _accessibility.scss styles */\n:focus {\n  outline: unset;\n  outline-offset: unset;\n  -moz-outline-radius: unset;\n}\n\n/* Styles for ui-components */\n.jp-Button {\n  border-radius: var(--jp-border-radius);\n  padding: 0px 12px;\n  font-size: var(--jp-ui-font-size1);\n}\n\n/* Use our own theme for hover styles */\nbutton.jp-Button.bp3-button.bp3-minimal:hover {\n  background-color: var(--jp-layout-color2);\n}\n.jp-Button.minimal {\n  color: unset !important;\n}\n\n.jp-Button.jp-ToolbarButtonComponent {\n  text-transform: none;\n}\n\n.jp-InputGroup input {\n  box-sizing: border-box;\n  border-radius: 0;\n  background-color: transparent;\n  color: var(--jp-ui-font-color0);\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.jp-InputGroup input:focus {\n  box-shadow: inset 0 0 0 var(--jp-border-width)\n      var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-InputGroup input::placeholder,\ninput::placeholder {\n  color: var(--jp-ui-font-color3);\n}\n\n.jp-BPIcon {\n  display: inline-block;\n  vertical-align: middle;\n  margin: auto;\n}\n\n/* Stop blueprint futzing with our icon fills */\n.bp3-icon.jp-BPIcon > svg:not([fill]) {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n.jp-InputGroupAction {\n  padding: 6px;\n}\n\n.jp-HTMLSelect.jp-DefaultStyle select {\n  background-color: initial;\n  border: none;\n  border-radius: 0;\n  box-shadow: none;\n  color: var(--jp-ui-font-color0);\n  display: block;\n  font-size: var(--jp-ui-font-size1);\n  height: 24px;\n  line-height: 14px;\n  padding: 0 25px 0 10px;\n  text-align: left;\n  -moz-appearance: none;\n  -webkit-appearance: none;\n}\n\n/* Use our own theme for hover and option styles */\n.jp-HTMLSelect.jp-DefaultStyle select:hover,\n.jp-HTMLSelect.jp-DefaultStyle select > option {\n  background-color: var(--jp-layout-color2);\n  color: var(--jp-ui-font-color0);\n}\nselect {\n  box-sizing: border-box;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapse {\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  border-top: 1px solid var(--jp-border-color2);\n  border-bottom: 1px solid var(--jp-border-color2);\n}\n\n.jp-Collapse-header {\n  padding: 1px 12px;\n  color: var(--jp-ui-font-color1);\n  background-color: var(--jp-layout-color1);\n  font-size: var(--jp-ui-font-size2);\n}\n\n.jp-Collapse-header:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-Collapse-contents {\n  padding: 0px 12px 0px 12px;\n  background-color: var(--jp-layout-color1);\n  color: var(--jp-ui-font-color1);\n  overflow: auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-commandpalette-search-height: 28px;\n}\n\n/*-----------------------------------------------------------------------------\n| Overall styles\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette {\n  padding-bottom: 0px;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Modal variant\n|----------------------------------------------------------------------------*/\n\n.jp-ModalCommandPalette {\n  position: absolute;\n  z-index: 10000;\n  top: 38px;\n  left: 30%;\n  margin: 0;\n  padding: 4px;\n  width: 40%;\n  box-shadow: var(--jp-elevation-z4);\n  border-radius: 4px;\n  background: var(--jp-layout-color0);\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette {\n  max-height: 40vh;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-close-icon::after {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-header {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-item {\n  margin-left: 4px;\n  margin-right: 4px;\n}\n\n.jp-ModalCommandPalette\n  .lm-CommandPalette\n  .lm-CommandPalette-item.lm-mod-disabled {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Search\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-search {\n  padding: 4px;\n  background-color: var(--jp-layout-color1);\n  z-index: 2;\n}\n\n.lm-CommandPalette-wrapper {\n  overflow: overlay;\n  padding: 0px 9px;\n  background-color: var(--jp-input-active-background);\n  height: 30px;\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.lm-CommandPalette.lm-mod-focused .lm-CommandPalette-wrapper {\n  box-shadow: inset 0 0 0 1px var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-SearchIconGroup {\n  color: white;\n  background-color: var(--jp-brand-color1);\n  position: absolute;\n  top: 4px;\n  right: 4px;\n  padding: 5px 5px 1px 5px;\n}\n\n.jp-SearchIconGroup svg {\n  height: 20px;\n  width: 20px;\n}\n\n.jp-SearchIconGroup .jp-icon3[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-input {\n  background: transparent;\n  width: calc(100% - 18px);\n  float: left;\n  border: none;\n  outline: none;\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  line-height: var(--jp-private-commandpalette-search-height);\n}\n\n.lm-CommandPalette-input::-webkit-input-placeholder,\n.lm-CommandPalette-input::-moz-placeholder,\n.lm-CommandPalette-input:-ms-input-placeholder {\n  color: var(--jp-ui-font-color2);\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Results\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-header:first-child {\n  margin-top: 0px;\n}\n\n.lm-CommandPalette-header {\n  border-bottom: solid var(--jp-border-width) var(--jp-border-color2);\n  color: var(--jp-ui-font-color1);\n  cursor: pointer;\n  display: flex;\n  font-size: var(--jp-ui-font-size0);\n  font-weight: 600;\n  letter-spacing: 1px;\n  margin-top: 8px;\n  padding: 8px 0 8px 12px;\n  text-transform: uppercase;\n}\n\n.lm-CommandPalette-header.lm-mod-active {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-header > mark {\n  background-color: transparent;\n  font-weight: bold;\n  color: var(--jp-ui-font-color1);\n}\n\n.lm-CommandPalette-item {\n  padding: 4px 12px 4px 4px;\n  color: var(--jp-ui-font-color1);\n  font-size: var(--jp-ui-font-size1);\n  font-weight: 400;\n  display: flex;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item.lm-mod-active {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .jp-icon-selectable[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active:hover:not(.lm-mod-disabled) {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item:hover:not(.lm-mod-active):not(.lm-mod-disabled) {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-itemContent {\n  overflow: hidden;\n}\n\n.lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled mark {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemIcon {\n  margin: 0 4px 0 0;\n  position: relative;\n  width: 16px;\n  top: 2px;\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled .lm-CommandPalette-itemIcon {\n  opacity: 0.6;\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-itemCaption {\n  display: none;\n}\n\n.lm-CommandPalette-content {\n  background-color: var(--jp-layout-color1);\n}\n\n.lm-CommandPalette-content:empty:after {\n  content: 'No results';\n  margin: auto;\n  margin-top: 20px;\n  width: 100px;\n  display: block;\n  font-size: var(--jp-ui-font-size2);\n  font-family: var(--jp-ui-font-family);\n  font-weight: lighter;\n}\n\n.lm-CommandPalette-emptyMessage {\n  text-align: center;\n  margin-top: 24px;\n  line-height: 1.32;\n  padding: 0px 8px;\n  color: var(--jp-content-font-color3);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Dialog {\n  position: absolute;\n  z-index: 10000;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  top: 0px;\n  left: 0px;\n  margin: 0;\n  padding: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-dialog-background);\n}\n\n.jp-Dialog-content {\n  display: flex;\n  flex-direction: column;\n  margin-left: auto;\n  margin-right: auto;\n  background: var(--jp-layout-color1);\n  padding: 24px;\n  padding-bottom: 12px;\n  min-width: 300px;\n  min-height: 150px;\n  max-width: 1000px;\n  max-height: 500px;\n  box-sizing: border-box;\n  box-shadow: var(--jp-elevation-z20);\n  word-wrap: break-word;\n  border-radius: var(--jp-border-radius);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color1);\n  resize: both;\n}\n\n.jp-Dialog-button {\n  overflow: visible;\n}\n\nbutton.jp-Dialog-button:focus {\n  outline: 1px solid var(--jp-brand-color1);\n  outline-offset: 4px;\n  -moz-outline-radius: 0px;\n}\n\nbutton.jp-Dialog-button:focus::-moz-focus-inner {\n  border: 0;\n}\n\nbutton.jp-Dialog-close-button {\n  padding: 0;\n  height: 100%;\n  min-width: unset;\n  min-height: unset;\n}\n\n.jp-Dialog-header {\n  display: flex;\n  justify-content: space-between;\n  flex: 0 0 auto;\n  padding-bottom: 12px;\n  font-size: var(--jp-ui-font-size3);\n  font-weight: 400;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-body {\n  display: flex;\n  flex-direction: column;\n  flex: 1 1 auto;\n  font-size: var(--jp-ui-font-size1);\n  background: var(--jp-layout-color1);\n  overflow: auto;\n}\n\n.jp-Dialog-footer {\n  display: flex;\n  flex-direction: row;\n  justify-content: flex-end;\n  flex: 0 0 auto;\n  margin-left: -12px;\n  margin-right: -12px;\n  padding: 12px;\n}\n\n.jp-Dialog-title {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.jp-Dialog-body > .jp-select-wrapper {\n  width: 100%;\n}\n\n.jp-Dialog-body > button {\n  padding: 0px 16px;\n}\n\n.jp-Dialog-body > label {\n  line-height: 1.4;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-button.jp-mod-styled:not(:last-child) {\n  margin-right: 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-HoverBox {\n  position: fixed;\n}\n\n.jp-HoverBox.jp-mod-outofview {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-IFrame {\n  width: 100%;\n  height: 100%;\n}\n\n.jp-IFrame > iframe {\n  border: none;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-IFrame {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-IFrame:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n.jp-Input-Boolean-Dialog {\n  flex-direction: row-reverse;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-Input-Boolean-Dialog > label {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MainAreaWidget > :focus {\n  outline: none;\n}\n\n/**\n * google-material-color v1.2.6\n * https://github.com/danlevan/google-material-color\n */\n:root {\n  --md-red-50: #ffebee;\n  --md-red-100: #ffcdd2;\n  --md-red-200: #ef9a9a;\n  --md-red-300: #e57373;\n  --md-red-400: #ef5350;\n  --md-red-500: #f44336;\n  --md-red-600: #e53935;\n  --md-red-700: #d32f2f;\n  --md-red-800: #c62828;\n  --md-red-900: #b71c1c;\n  --md-red-A100: #ff8a80;\n  --md-red-A200: #ff5252;\n  --md-red-A400: #ff1744;\n  --md-red-A700: #d50000;\n\n  --md-pink-50: #fce4ec;\n  --md-pink-100: #f8bbd0;\n  --md-pink-200: #f48fb1;\n  --md-pink-300: #f06292;\n  --md-pink-400: #ec407a;\n  --md-pink-500: #e91e63;\n  --md-pink-600: #d81b60;\n  --md-pink-700: #c2185b;\n  --md-pink-800: #ad1457;\n  --md-pink-900: #880e4f;\n  --md-pink-A100: #ff80ab;\n  --md-pink-A200: #ff4081;\n  --md-pink-A400: #f50057;\n  --md-pink-A700: #c51162;\n\n  --md-purple-50: #f3e5f5;\n  --md-purple-100: #e1bee7;\n  --md-purple-200: #ce93d8;\n  --md-purple-300: #ba68c8;\n  --md-purple-400: #ab47bc;\n  --md-purple-500: #9c27b0;\n  --md-purple-600: #8e24aa;\n  --md-purple-700: #7b1fa2;\n  --md-purple-800: #6a1b9a;\n  --md-purple-900: #4a148c;\n  --md-purple-A100: #ea80fc;\n  --md-purple-A200: #e040fb;\n  --md-purple-A400: #d500f9;\n  --md-purple-A700: #aa00ff;\n\n  --md-deep-purple-50: #ede7f6;\n  --md-deep-purple-100: #d1c4e9;\n  --md-deep-purple-200: #b39ddb;\n  --md-deep-purple-300: #9575cd;\n  --md-deep-purple-400: #7e57c2;\n  --md-deep-purple-500: #673ab7;\n  --md-deep-purple-600: #5e35b1;\n  --md-deep-purple-700: #512da8;\n  --md-deep-purple-800: #4527a0;\n  --md-deep-purple-900: #311b92;\n  --md-deep-purple-A100: #b388ff;\n  --md-deep-purple-A200: #7c4dff;\n  --md-deep-purple-A400: #651fff;\n  --md-deep-purple-A700: #6200ea;\n\n  --md-indigo-50: #e8eaf6;\n  --md-indigo-100: #c5cae9;\n  --md-indigo-200: #9fa8da;\n  --md-indigo-300: #7986cb;\n  --md-indigo-400: #5c6bc0;\n  --md-indigo-500: #3f51b5;\n  --md-indigo-600: #3949ab;\n  --md-indigo-700: #303f9f;\n  --md-indigo-800: #283593;\n  --md-indigo-900: #1a237e;\n  --md-indigo-A100: #8c9eff;\n  --md-indigo-A200: #536dfe;\n  --md-indigo-A400: #3d5afe;\n  --md-indigo-A700: #304ffe;\n\n  --md-blue-50: #e3f2fd;\n  --md-blue-100: #bbdefb;\n  --md-blue-200: #90caf9;\n  --md-blue-300: #64b5f6;\n  --md-blue-400: #42a5f5;\n  --md-blue-500: #2196f3;\n  --md-blue-600: #1e88e5;\n  --md-blue-700: #1976d2;\n  --md-blue-800: #1565c0;\n  --md-blue-900: #0d47a1;\n  --md-blue-A100: #82b1ff;\n  --md-blue-A200: #448aff;\n  --md-blue-A400: #2979ff;\n  --md-blue-A700: #2962ff;\n\n  --md-light-blue-50: #e1f5fe;\n  --md-light-blue-100: #b3e5fc;\n  --md-light-blue-200: #81d4fa;\n  --md-light-blue-300: #4fc3f7;\n  --md-light-blue-400: #29b6f6;\n  --md-light-blue-500: #03a9f4;\n  --md-light-blue-600: #039be5;\n  --md-light-blue-700: #0288d1;\n  --md-light-blue-800: #0277bd;\n  --md-light-blue-900: #01579b;\n  --md-light-blue-A100: #80d8ff;\n  --md-light-blue-A200: #40c4ff;\n  --md-light-blue-A400: #00b0ff;\n  --md-light-blue-A700: #0091ea;\n\n  --md-cyan-50: #e0f7fa;\n  --md-cyan-100: #b2ebf2;\n  --md-cyan-200: #80deea;\n  --md-cyan-300: #4dd0e1;\n  --md-cyan-400: #26c6da;\n  --md-cyan-500: #00bcd4;\n  --md-cyan-600: #00acc1;\n  --md-cyan-700: #0097a7;\n  --md-cyan-800: #00838f;\n  --md-cyan-900: #006064;\n  --md-cyan-A100: #84ffff;\n  --md-cyan-A200: #18ffff;\n  --md-cyan-A400: #00e5ff;\n  --md-cyan-A700: #00b8d4;\n\n  --md-teal-50: #e0f2f1;\n  --md-teal-100: #b2dfdb;\n  --md-teal-200: #80cbc4;\n  --md-teal-300: #4db6ac;\n  --md-teal-400: #26a69a;\n  --md-teal-500: #009688;\n  --md-teal-600: #00897b;\n  --md-teal-700: #00796b;\n  --md-teal-800: #00695c;\n  --md-teal-900: #004d40;\n  --md-teal-A100: #a7ffeb;\n  --md-teal-A200: #64ffda;\n  --md-teal-A400: #1de9b6;\n  --md-teal-A700: #00bfa5;\n\n  --md-green-50: #e8f5e9;\n  --md-green-100: #c8e6c9;\n  --md-green-200: #a5d6a7;\n  --md-green-300: #81c784;\n  --md-green-400: #66bb6a;\n  --md-green-500: #4caf50;\n  --md-green-600: #43a047;\n  --md-green-700: #388e3c;\n  --md-green-800: #2e7d32;\n  --md-green-900: #1b5e20;\n  --md-green-A100: #b9f6ca;\n  --md-green-A200: #69f0ae;\n  --md-green-A400: #00e676;\n  --md-green-A700: #00c853;\n\n  --md-light-green-50: #f1f8e9;\n  --md-light-green-100: #dcedc8;\n  --md-light-green-200: #c5e1a5;\n  --md-light-green-300: #aed581;\n  --md-light-green-400: #9ccc65;\n  --md-light-green-500: #8bc34a;\n  --md-light-green-600: #7cb342;\n  --md-light-green-700: #689f38;\n  --md-light-green-800: #558b2f;\n  --md-light-green-900: #33691e;\n  --md-light-green-A100: #ccff90;\n  --md-light-green-A200: #b2ff59;\n  --md-light-green-A400: #76ff03;\n  --md-light-green-A700: #64dd17;\n\n  --md-lime-50: #f9fbe7;\n  --md-lime-100: #f0f4c3;\n  --md-lime-200: #e6ee9c;\n  --md-lime-300: #dce775;\n  --md-lime-400: #d4e157;\n  --md-lime-500: #cddc39;\n  --md-lime-600: #c0ca33;\n  --md-lime-700: #afb42b;\n  --md-lime-800: #9e9d24;\n  --md-lime-900: #827717;\n  --md-lime-A100: #f4ff81;\n  --md-lime-A200: #eeff41;\n  --md-lime-A400: #c6ff00;\n  --md-lime-A700: #aeea00;\n\n  --md-yellow-50: #fffde7;\n  --md-yellow-100: #fff9c4;\n  --md-yellow-200: #fff59d;\n  --md-yellow-300: #fff176;\n  --md-yellow-400: #ffee58;\n  --md-yellow-500: #ffeb3b;\n  --md-yellow-600: #fdd835;\n  --md-yellow-700: #fbc02d;\n  --md-yellow-800: #f9a825;\n  --md-yellow-900: #f57f17;\n  --md-yellow-A100: #ffff8d;\n  --md-yellow-A200: #ffff00;\n  --md-yellow-A400: #ffea00;\n  --md-yellow-A700: #ffd600;\n\n  --md-amber-50: #fff8e1;\n  --md-amber-100: #ffecb3;\n  --md-amber-200: #ffe082;\n  --md-amber-300: #ffd54f;\n  --md-amber-400: #ffca28;\n  --md-amber-500: #ffc107;\n  --md-amber-600: #ffb300;\n  --md-amber-700: #ffa000;\n  --md-amber-800: #ff8f00;\n  --md-amber-900: #ff6f00;\n  --md-amber-A100: #ffe57f;\n  --md-amber-A200: #ffd740;\n  --md-amber-A400: #ffc400;\n  --md-amber-A700: #ffab00;\n\n  --md-orange-50: #fff3e0;\n  --md-orange-100: #ffe0b2;\n  --md-orange-200: #ffcc80;\n  --md-orange-300: #ffb74d;\n  --md-orange-400: #ffa726;\n  --md-orange-500: #ff9800;\n  --md-orange-600: #fb8c00;\n  --md-orange-700: #f57c00;\n  --md-orange-800: #ef6c00;\n  --md-orange-900: #e65100;\n  --md-orange-A100: #ffd180;\n  --md-orange-A200: #ffab40;\n  --md-orange-A400: #ff9100;\n  --md-orange-A700: #ff6d00;\n\n  --md-deep-orange-50: #fbe9e7;\n  --md-deep-orange-100: #ffccbc;\n  --md-deep-orange-200: #ffab91;\n  --md-deep-orange-300: #ff8a65;\n  --md-deep-orange-400: #ff7043;\n  --md-deep-orange-500: #ff5722;\n  --md-deep-orange-600: #f4511e;\n  --md-deep-orange-700: #e64a19;\n  --md-deep-orange-800: #d84315;\n  --md-deep-orange-900: #bf360c;\n  --md-deep-orange-A100: #ff9e80;\n  --md-deep-orange-A200: #ff6e40;\n  --md-deep-orange-A400: #ff3d00;\n  --md-deep-orange-A700: #dd2c00;\n\n  --md-brown-50: #efebe9;\n  --md-brown-100: #d7ccc8;\n  --md-brown-200: #bcaaa4;\n  --md-brown-300: #a1887f;\n  --md-brown-400: #8d6e63;\n  --md-brown-500: #795548;\n  --md-brown-600: #6d4c41;\n  --md-brown-700: #5d4037;\n  --md-brown-800: #4e342e;\n  --md-brown-900: #3e2723;\n\n  --md-grey-50: #fafafa;\n  --md-grey-100: #f5f5f5;\n  --md-grey-200: #eeeeee;\n  --md-grey-300: #e0e0e0;\n  --md-grey-400: #bdbdbd;\n  --md-grey-500: #9e9e9e;\n  --md-grey-600: #757575;\n  --md-grey-700: #616161;\n  --md-grey-800: #424242;\n  --md-grey-900: #212121;\n\n  --md-blue-grey-50: #eceff1;\n  --md-blue-grey-100: #cfd8dc;\n  --md-blue-grey-200: #b0bec5;\n  --md-blue-grey-300: #90a4ae;\n  --md-blue-grey-400: #78909c;\n  --md-blue-grey-500: #607d8b;\n  --md-blue-grey-600: #546e7a;\n  --md-blue-grey-700: #455a64;\n  --md-blue-grey-800: #37474f;\n  --md-blue-grey-900: #263238;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Spinner {\n  position: absolute;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  z-index: 10;\n  left: 0;\n  top: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-layout-color0);\n  outline: none;\n}\n\n.jp-SpinnerContent {\n  font-size: 10px;\n  margin: 50px auto;\n  text-indent: -9999em;\n  width: 3em;\n  height: 3em;\n  border-radius: 50%;\n  background: var(--jp-brand-color3);\n  background: linear-gradient(\n    to right,\n    #f37626 10%,\n    rgba(255, 255, 255, 0) 42%\n  );\n  position: relative;\n  animation: load3 1s infinite linear, fadeIn 1s;\n}\n\n.jp-SpinnerContent:before {\n  width: 50%;\n  height: 50%;\n  background: #f37626;\n  border-radius: 100% 0 0 0;\n  position: absolute;\n  top: 0;\n  left: 0;\n  content: '';\n}\n\n.jp-SpinnerContent:after {\n  background: var(--jp-layout-color0);\n  width: 75%;\n  height: 75%;\n  border-radius: 50%;\n  content: '';\n  margin: auto;\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n}\n\n@keyframes fadeIn {\n  0% {\n    opacity: 0;\n  }\n  100% {\n    opacity: 1;\n  }\n}\n\n@keyframes load3 {\n  0% {\n    transform: rotate(0deg);\n  }\n  100% {\n    transform: rotate(360deg);\n  }\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\nbutton.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: none;\n  box-sizing: border-box;\n  text-align: center;\n  line-height: 32px;\n  height: 32px;\n  padding: 0px 12px;\n  letter-spacing: 0.8px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput.jp-mod-styled {\n  background: var(--jp-input-background);\n  height: 28px;\n  box-sizing: border-box;\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n  padding-left: 7px;\n  padding-right: 7px;\n  font-size: var(--jp-ui-font-size2);\n  color: var(--jp-ui-font-color0);\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput[type='checkbox'].jp-mod-styled {\n  appearance: checkbox;\n  -webkit-appearance: checkbox;\n  -moz-appearance: checkbox;\n  height: auto;\n}\n\ninput.jp-mod-styled:focus {\n  border: var(--jp-border-width) solid var(--md-blue-500);\n  box-shadow: inset 0 0 4px var(--md-blue-300);\n}\n\n.jp-FileDialog-Checkbox {\n  margin-top: 35px;\n  display: flex;\n  flex-direction: row;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-FileDialog-Checkbox > label {\n  flex: 1 1 auto;\n}\n\n.jp-select-wrapper {\n  display: flex;\n  position: relative;\n  flex-direction: column;\n  padding: 1px;\n  background-color: var(--jp-layout-color1);\n  height: 28px;\n  box-sizing: border-box;\n  margin-bottom: 12px;\n}\n\n.jp-select-wrapper.jp-mod-focused select.jp-mod-styled {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-input-active-background);\n}\n\nselect.jp-mod-styled:hover {\n  background-color: var(--jp-layout-color1);\n  cursor: pointer;\n  color: var(--jp-ui-font-color0);\n  background-color: var(--jp-input-hover-background);\n  box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.5);\n}\n\nselect.jp-mod-styled {\n  flex: 1 1 auto;\n  height: 32px;\n  width: 100%;\n  font-size: var(--jp-ui-font-size2);\n  background: var(--jp-input-background);\n  color: var(--jp-ui-font-color0);\n  padding: 0 25px 0 8px;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-toolbar-height: calc(\n    28px + var(--jp-border-width)\n  ); /* leave 28px for content */\n}\n\n.jp-Toolbar {\n  color: var(--jp-ui-font-color1);\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  border-bottom: var(--jp-border-width) solid var(--jp-toolbar-border-color);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  background: var(--jp-toolbar-background);\n  min-height: var(--jp-toolbar-micro-height);\n  padding: 2px;\n  z-index: 1;\n  overflow-x: auto;\n}\n\n/* Toolbar items */\n\n.jp-Toolbar > .jp-Toolbar-item.jp-Toolbar-spacer {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\n.jp-Toolbar-item.jp-Toolbar-kernelStatus {\n  display: inline-block;\n  width: 32px;\n  background-repeat: no-repeat;\n  background-position: center;\n  background-size: 16px;\n}\n\n.jp-Toolbar > .jp-Toolbar-item {\n  flex: 0 0 auto;\n  display: flex;\n  padding-left: 1px;\n  padding-right: 1px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: var(--jp-private-toolbar-height);\n  height: 100%;\n}\n\n/* Toolbar buttons */\n\n/* This is the div we use to wrap the react component into a Widget */\ndiv.jp-ToolbarButton {\n  color: transparent;\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px;\n  margin: 0px;\n}\n\nbutton.jp-ToolbarButtonComponent {\n  background: var(--jp-layout-color1);\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px 6px;\n  margin: 0px;\n  height: 24px;\n  border-radius: var(--jp-border-radius);\n  display: flex;\n  align-items: center;\n  text-align: center;\n  font-size: 14px;\n  min-width: unset;\n  min-height: unset;\n}\n\nbutton.jp-ToolbarButtonComponent:disabled {\n  opacity: 0.4;\n}\n\nbutton.jp-ToolbarButtonComponent span {\n  padding: 0px;\n  flex: 0 0 auto;\n}\n\nbutton.jp-ToolbarButtonComponent .jp-ToolbarButtonComponent-label {\n  font-size: var(--jp-ui-font-size1);\n  line-height: 100%;\n  padding-left: 2px;\n  color: var(--jp-ui-font-color1);\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar.jp-Toolbar-micro {\n  padding: 0;\n  min-height: 0;\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar {\n  border: none;\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ body.p-mod-override-cursor *, /* </DEPRECATED> */\nbody.lm-mod-override-cursor * {\n  cursor: inherit !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-JSONEditor {\n  display: flex;\n  flex-direction: column;\n  width: 100%;\n}\n\n.jp-JSONEditor-host {\n  flex: 1 1 auto;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  background: var(--jp-layout-color0);\n  min-height: 50px;\n  padding: 1px;\n}\n\n.jp-JSONEditor.jp-mod-error .jp-JSONEditor-host {\n  border-color: red;\n  outline-color: red;\n}\n\n.jp-JSONEditor-header {\n  display: flex;\n  flex: 1 0 auto;\n  padding: 0 0 0 12px;\n}\n\n.jp-JSONEditor-header label {\n  flex: 0 0 auto;\n}\n\n.jp-JSONEditor-commitButton {\n  height: 16px;\n  width: 16px;\n  background-size: 18px;\n  background-repeat: no-repeat;\n  background-position: center;\n}\n\n.jp-JSONEditor-host.jp-mod-focused {\n  background-color: var(--jp-input-active-background);\n  border: 1px solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n.jp-Editor.jp-mod-dropTarget {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n/* BASICS */\n\n.CodeMirror {\n  /* Set height, width, borders, and global font properties here */\n  font-family: monospace;\n  height: 300px;\n  color: black;\n  direction: ltr;\n}\n\n/* PADDING */\n\n.CodeMirror-lines {\n  padding: 4px 0; /* Vertical padding around content */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  padding: 0 4px; /* Horizontal padding of content */\n}\n\n.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  background-color: white; /* The little square between H and V scrollbars */\n}\n\n/* GUTTER */\n\n.CodeMirror-gutters {\n  border-right: 1px solid #ddd;\n  background-color: #f7f7f7;\n  white-space: nowrap;\n}\n.CodeMirror-linenumbers {}\n.CodeMirror-linenumber {\n  padding: 0 3px 0 5px;\n  min-width: 20px;\n  text-align: right;\n  color: #999;\n  white-space: nowrap;\n}\n\n.CodeMirror-guttermarker { color: black; }\n.CodeMirror-guttermarker-subtle { color: #999; }\n\n/* CURSOR */\n\n.CodeMirror-cursor {\n  border-left: 1px solid black;\n  border-right: none;\n  width: 0;\n}\n/* Shown when moving in bi-directional text */\n.CodeMirror div.CodeMirror-secondarycursor {\n  border-left: 1px solid silver;\n}\n.cm-fat-cursor .CodeMirror-cursor {\n  width: auto;\n  border: 0 !important;\n  background: #7e7;\n}\n.cm-fat-cursor div.CodeMirror-cursors {\n  z-index: 1;\n}\n.cm-fat-cursor-mark {\n  background-color: rgba(20, 255, 20, 0.5);\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n}\n.cm-animate-fat-cursor {\n  width: auto;\n  border: 0;\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n  background-color: #7e7;\n}\n@-moz-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@-webkit-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n\n/* Can style cursor different in overwrite (non-insert) mode */\n.CodeMirror-overwrite .CodeMirror-cursor {}\n\n.cm-tab { display: inline-block; text-decoration: inherit; }\n\n.CodeMirror-rulers {\n  position: absolute;\n  left: 0; right: 0; top: -50px; bottom: 0;\n  overflow: hidden;\n}\n.CodeMirror-ruler {\n  border-left: 1px solid #ccc;\n  top: 0; bottom: 0;\n  position: absolute;\n}\n\n/* DEFAULT THEME */\n\n.cm-s-default .cm-header {color: blue;}\n.cm-s-default .cm-quote {color: #090;}\n.cm-negative {color: #d44;}\n.cm-positive {color: #292;}\n.cm-header, .cm-strong {font-weight: bold;}\n.cm-em {font-style: italic;}\n.cm-link {text-decoration: underline;}\n.cm-strikethrough {text-decoration: line-through;}\n\n.cm-s-default .cm-keyword {color: #708;}\n.cm-s-default .cm-atom {color: #219;}\n.cm-s-default .cm-number {color: #164;}\n.cm-s-default .cm-def {color: #00f;}\n.cm-s-default .cm-variable,\n.cm-s-default .cm-punctuation,\n.cm-s-default .cm-property,\n.cm-s-default .cm-operator {}\n.cm-s-default .cm-variable-2 {color: #05a;}\n.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}\n.cm-s-default .cm-comment {color: #a50;}\n.cm-s-default .cm-string {color: #a11;}\n.cm-s-default .cm-string-2 {color: #f50;}\n.cm-s-default .cm-meta {color: #555;}\n.cm-s-default .cm-qualifier {color: #555;}\n.cm-s-default .cm-builtin {color: #30a;}\n.cm-s-default .cm-bracket {color: #997;}\n.cm-s-default .cm-tag {color: #170;}\n.cm-s-default .cm-attribute {color: #00c;}\n.cm-s-default .cm-hr {color: #999;}\n.cm-s-default .cm-link {color: #00c;}\n\n.cm-s-default .cm-error {color: #f00;}\n.cm-invalidchar {color: #f00;}\n\n.CodeMirror-composing { border-bottom: 2px solid; }\n\n/* Default styles for common addons */\n\ndiv.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}\ndiv.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}\n.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }\n.CodeMirror-activeline-background {background: #e8f2ff;}\n\n/* STOP */\n\n/* The rest of this file contains styles related to the mechanics of\n   the editor. You probably shouldn't touch them. */\n\n.CodeMirror {\n  position: relative;\n  overflow: hidden;\n  background: white;\n}\n\n.CodeMirror-scroll {\n  overflow: scroll !important; /* Things will break if this is overridden */\n  /* 50px is the magic margin used to hide the element's real scrollbars */\n  /* See overflow: hidden in .CodeMirror */\n  margin-bottom: -50px; margin-right: -50px;\n  padding-bottom: 50px;\n  height: 100%;\n  outline: none; /* Prevent dragging from highlighting the element */\n  position: relative;\n}\n.CodeMirror-sizer {\n  position: relative;\n  border-right: 50px solid transparent;\n}\n\n/* The fake, visible scrollbars. Used to force redraw during scrolling\n   before actual scrolling happens, thus preventing shaking and\n   flickering artifacts. */\n.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  position: absolute;\n  z-index: 6;\n  display: none;\n  outline: none;\n}\n.CodeMirror-vscrollbar {\n  right: 0; top: 0;\n  overflow-x: hidden;\n  overflow-y: scroll;\n}\n.CodeMirror-hscrollbar {\n  bottom: 0; left: 0;\n  overflow-y: hidden;\n  overflow-x: scroll;\n}\n.CodeMirror-scrollbar-filler {\n  right: 0; bottom: 0;\n}\n.CodeMirror-gutter-filler {\n  left: 0; bottom: 0;\n}\n\n.CodeMirror-gutters {\n  position: absolute; left: 0; top: 0;\n  min-height: 100%;\n  z-index: 3;\n}\n.CodeMirror-gutter {\n  white-space: normal;\n  height: 100%;\n  display: inline-block;\n  vertical-align: top;\n  margin-bottom: -50px;\n}\n.CodeMirror-gutter-wrapper {\n  position: absolute;\n  z-index: 4;\n  background: none !important;\n  border: none !important;\n}\n.CodeMirror-gutter-background {\n  position: absolute;\n  top: 0; bottom: 0;\n  z-index: 4;\n}\n.CodeMirror-gutter-elt {\n  position: absolute;\n  cursor: default;\n  z-index: 4;\n}\n.CodeMirror-gutter-wrapper ::selection { background-color: transparent }\n.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }\n\n.CodeMirror-lines {\n  cursor: text;\n  min-height: 1px; /* prevents collapsing before first draw */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  /* Reset some styles that the rest of the page might have set */\n  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;\n  border-width: 0;\n  background: transparent;\n  font-family: inherit;\n  font-size: inherit;\n  margin: 0;\n  white-space: pre;\n  word-wrap: normal;\n  line-height: inherit;\n  color: inherit;\n  z-index: 2;\n  position: relative;\n  overflow: visible;\n  -webkit-tap-highlight-color: transparent;\n  -webkit-font-variant-ligatures: contextual;\n  font-variant-ligatures: contextual;\n}\n.CodeMirror-wrap pre.CodeMirror-line,\n.CodeMirror-wrap pre.CodeMirror-line-like {\n  word-wrap: break-word;\n  white-space: pre-wrap;\n  word-break: normal;\n}\n\n.CodeMirror-linebackground {\n  position: absolute;\n  left: 0; right: 0; top: 0; bottom: 0;\n  z-index: 0;\n}\n\n.CodeMirror-linewidget {\n  position: relative;\n  z-index: 2;\n  padding: 0.1px; /* Force widget margins to stay inside of the container */\n}\n\n.CodeMirror-widget {}\n\n.CodeMirror-rtl pre { direction: rtl; }\n\n.CodeMirror-code {\n  outline: none;\n}\n\n/* Force content-box sizing for the elements where we expect it */\n.CodeMirror-scroll,\n.CodeMirror-sizer,\n.CodeMirror-gutter,\n.CodeMirror-gutters,\n.CodeMirror-linenumber {\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n}\n\n.CodeMirror-measure {\n  position: absolute;\n  width: 100%;\n  height: 0;\n  overflow: hidden;\n  visibility: hidden;\n}\n\n.CodeMirror-cursor {\n  position: absolute;\n  pointer-events: none;\n}\n.CodeMirror-measure pre { position: static; }\n\ndiv.CodeMirror-cursors {\n  visibility: hidden;\n  position: relative;\n  z-index: 3;\n}\ndiv.CodeMirror-dragcursors {\n  visibility: visible;\n}\n\n.CodeMirror-focused div.CodeMirror-cursors {\n  visibility: visible;\n}\n\n.CodeMirror-selected { background: #d9d9d9; }\n.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }\n.CodeMirror-crosshair { cursor: crosshair; }\n.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }\n.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }\n\n.cm-searching {\n  background-color: #ffa;\n  background-color: rgba(255, 255, 0, .4);\n}\n\n/* Used to force a border model for a node */\n.cm-force-border { padding-right: .1px; }\n\n@media print {\n  /* Hide the cursor when printing */\n  .CodeMirror div.CodeMirror-cursors {\n    visibility: hidden;\n  }\n}\n\n/* See issue #2901 */\n.cm-tab-wrap-hack:after { content: ''; }\n\n/* Help users use markselection to safely style text background */\nspan.CodeMirror-selectedtext { background: none; }\n\n.CodeMirror-dialog {\n  position: absolute;\n  left: 0; right: 0;\n  background: inherit;\n  z-index: 15;\n  padding: .1em .8em;\n  overflow: hidden;\n  color: inherit;\n}\n\n.CodeMirror-dialog-top {\n  border-bottom: 1px solid #eee;\n  top: 0;\n}\n\n.CodeMirror-dialog-bottom {\n  border-top: 1px solid #eee;\n  bottom: 0;\n}\n\n.CodeMirror-dialog input {\n  border: none;\n  outline: none;\n  background: transparent;\n  width: 20em;\n  color: inherit;\n  font-family: monospace;\n}\n\n.CodeMirror-dialog button {\n  font-size: 70%;\n}\n\n.CodeMirror-foldmarker {\n  color: blue;\n  text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;\n  font-family: arial;\n  line-height: .3;\n  cursor: pointer;\n}\n.CodeMirror-foldgutter {\n  width: .7em;\n}\n.CodeMirror-foldgutter-open,\n.CodeMirror-foldgutter-folded {\n  cursor: pointer;\n}\n.CodeMirror-foldgutter-open:after {\n  content: \"\\25BE\";\n}\n.CodeMirror-foldgutter-folded:after {\n  content: \"\\25B8\";\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.CodeMirror {\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  border: 0;\n  border-radius: 0;\n  height: auto;\n  /* Changed to auto to autogrow */\n}\n\n.CodeMirror pre {\n  padding: 0 var(--jp-code-padding);\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-dialog {\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* This causes https://github.com/jupyter/jupyterlab/issues/522 */\n/* May not cause it not because we changed it! */\n.CodeMirror-lines {\n  padding: var(--jp-code-padding) 0;\n}\n\n.CodeMirror-linenumber {\n  padding: 0 8px;\n}\n\n.jp-CodeMirrorEditor {\n  cursor: text;\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n\n/* When zoomed out 67% and 33% on a screen of 1440 width x 900 height */\n@media screen and (min-width: 2138px) and (max-width: 4319px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width1) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n/* When zoomed out less than 33% */\n@media screen and (min-width: 4320px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width2) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n.CodeMirror.jp-mod-readOnly .CodeMirror-cursor {\n  display: none;\n}\n\n.CodeMirror-gutters {\n  border-right: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-layout-color0);\n}\n\n.jp-CollaboratorCursor {\n  border-left: 5px solid transparent;\n  border-right: 5px solid transparent;\n  border-top: none;\n  border-bottom: 3px solid;\n  background-clip: content-box;\n  margin-left: -5px;\n  margin-right: -5px;\n}\n\n.CodeMirror-selectedtext.cm-searching {\n  background-color: var(--jp-search-selected-match-background-color) !important;\n  color: var(--jp-search-selected-match-color) !important;\n}\n\n.cm-searching {\n  background-color: var(\n    --jp-search-unselected-match-background-color\n  ) !important;\n  color: var(--jp-search-unselected-match-color) !important;\n}\n\n.CodeMirror-focused .CodeMirror-selected {\n  background-color: var(--jp-editor-selected-focused-background);\n}\n\n.CodeMirror-selected {\n  background-color: var(--jp-editor-selected-background);\n}\n\n.jp-CollaboratorCursor-hover {\n  position: absolute;\n  z-index: 1;\n  transform: translateX(-50%);\n  color: white;\n  border-radius: 3px;\n  padding-left: 4px;\n  padding-right: 4px;\n  padding-top: 1px;\n  padding-bottom: 1px;\n  text-align: center;\n  font-size: var(--jp-ui-font-size1);\n  white-space: nowrap;\n}\n\n.jp-CodeMirror-ruler {\n  border-left: 1px dashed var(--jp-border-color2);\n}\n\n/**\n * Here is our jupyter theme for CodeMirror syntax highlighting\n * This is used in our marked.js syntax highlighting and CodeMirror itself\n * The string \"jupyter\" is set in ../codemirror/widget.DEFAULT_CODEMIRROR_THEME\n * This came from the classic notebook, which came form highlight.js/GitHub\n */\n\n/**\n * CodeMirror themes are handling the background/color in this way. This works\n * fine for CodeMirror editors outside the notebook, but the notebook styles\n * these things differently.\n */\n.CodeMirror.cm-s-jupyter {\n  background: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* In the notebook, we want this styling to be handled by its container */\n.jp-CodeConsole .CodeMirror.cm-s-jupyter,\n.jp-Notebook .CodeMirror.cm-s-jupyter {\n  background: transparent;\n}\n\n.cm-s-jupyter .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n.cm-s-jupyter span.cm-keyword {\n  color: var(--jp-mirror-editor-keyword-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-atom {\n  color: var(--jp-mirror-editor-atom-color);\n}\n.cm-s-jupyter span.cm-number {\n  color: var(--jp-mirror-editor-number-color);\n}\n.cm-s-jupyter span.cm-def {\n  color: var(--jp-mirror-editor-def-color);\n}\n.cm-s-jupyter span.cm-variable {\n  color: var(--jp-mirror-editor-variable-color);\n}\n.cm-s-jupyter span.cm-variable-2 {\n  color: var(--jp-mirror-editor-variable-2-color);\n}\n.cm-s-jupyter span.cm-variable-3 {\n  color: var(--jp-mirror-editor-variable-3-color);\n}\n.cm-s-jupyter span.cm-punctuation {\n  color: var(--jp-mirror-editor-punctuation-color);\n}\n.cm-s-jupyter span.cm-property {\n  color: var(--jp-mirror-editor-property-color);\n}\n.cm-s-jupyter span.cm-operator {\n  color: var(--jp-mirror-editor-operator-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-comment {\n  color: var(--jp-mirror-editor-comment-color);\n  font-style: italic;\n}\n.cm-s-jupyter span.cm-string {\n  color: var(--jp-mirror-editor-string-color);\n}\n.cm-s-jupyter span.cm-string-2 {\n  color: var(--jp-mirror-editor-string-2-color);\n}\n.cm-s-jupyter span.cm-meta {\n  color: var(--jp-mirror-editor-meta-color);\n}\n.cm-s-jupyter span.cm-qualifier {\n  color: var(--jp-mirror-editor-qualifier-color);\n}\n.cm-s-jupyter span.cm-builtin {\n  color: var(--jp-mirror-editor-builtin-color);\n}\n.cm-s-jupyter span.cm-bracket {\n  color: var(--jp-mirror-editor-bracket-color);\n}\n.cm-s-jupyter span.cm-tag {\n  color: var(--jp-mirror-editor-tag-color);\n}\n.cm-s-jupyter span.cm-attribute {\n  color: var(--jp-mirror-editor-attribute-color);\n}\n.cm-s-jupyter span.cm-header {\n  color: var(--jp-mirror-editor-header-color);\n}\n.cm-s-jupyter span.cm-quote {\n  color: var(--jp-mirror-editor-quote-color);\n}\n.cm-s-jupyter span.cm-link {\n  color: var(--jp-mirror-editor-link-color);\n}\n.cm-s-jupyter span.cm-error {\n  color: var(--jp-mirror-editor-error-color);\n}\n.cm-s-jupyter span.cm-hr {\n  color: #999;\n}\n\n.cm-s-jupyter span.cm-tab {\n  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);\n  background-position: right;\n  background-repeat: no-repeat;\n}\n\n.cm-s-jupyter .CodeMirror-activeline-background,\n.cm-s-jupyter .CodeMirror-gutter {\n  background-color: var(--jp-layout-color2);\n}\n\n/* Styles for shared cursors (remote cursor locations and selected ranges) */\n.jp-CodeMirrorEditor .remote-caret {\n  position: relative;\n  border-left: 2px solid black;\n  margin-left: -1px;\n  margin-right: -1px;\n  box-sizing: border-box;\n}\n\n.jp-CodeMirrorEditor .remote-caret > div {\n  white-space: nowrap;\n  position: absolute;\n  top: -1.15em;\n  padding-bottom: 0.05em;\n  left: -2px;\n  font-size: 0.95em;\n  background-color: rgb(250, 129, 0);\n  font-family: var(--jp-ui-font-family);\n  font-weight: bold;\n  line-height: normal;\n  user-select: none;\n  color: white;\n  padding-left: 2px;\n  padding-right: 2px;\n  z-index: 3;\n  transition: opacity 0.3s ease-in-out;\n}\n\n.jp-CodeMirrorEditor .remote-caret.hide-name > div {\n  transition-delay: 0.7s;\n  opacity: 0;\n}\n\n.jp-CodeMirrorEditor .remote-caret:hover > div {\n  opacity: 1;\n  transition-delay: 0s;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| RenderedText\n|----------------------------------------------------------------------------*/\n\n:root {\n  /* This is the padding value to fill the gaps between lines containing spans with background color. */\n  --jp-private-code-span-padding: calc(\n    (var(--jp-code-line-height) - 1) * var(--jp-code-font-size) / 2\n  );\n}\n\n.jp-RenderedText {\n  text-align: left;\n  padding-left: var(--jp-code-padding);\n  line-height: var(--jp-code-line-height);\n  font-family: var(--jp-code-font-family);\n}\n\n.jp-RenderedText pre,\n.jp-RenderedJavaScript pre,\n.jp-RenderedHTMLCommon pre {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-code-font-size);\n  border: none;\n  margin: 0px;\n  padding: 0px;\n}\n\n.jp-RenderedText pre a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* console foregrounds and backgrounds */\n.jp-RenderedText pre .ansi-black-fg {\n  color: #3e424d;\n}\n.jp-RenderedText pre .ansi-red-fg {\n  color: #e75c58;\n}\n.jp-RenderedText pre .ansi-green-fg {\n  color: #00a250;\n}\n.jp-RenderedText pre .ansi-yellow-fg {\n  color: #ddb62b;\n}\n.jp-RenderedText pre .ansi-blue-fg {\n  color: #208ffb;\n}\n.jp-RenderedText pre .ansi-magenta-fg {\n  color: #d160c4;\n}\n.jp-RenderedText pre .ansi-cyan-fg {\n  color: #60c6c8;\n}\n.jp-RenderedText pre .ansi-white-fg {\n  color: #c5c1b4;\n}\n\n.jp-RenderedText pre .ansi-black-bg {\n  background-color: #3e424d;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-bg {\n  background-color: #e75c58;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-bg {\n  background-color: #00a250;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-bg {\n  background-color: #ddb62b;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-bg {\n  background-color: #208ffb;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-bg {\n  background-color: #d160c4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-bg {\n  background-color: #60c6c8;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-bg {\n  background-color: #c5c1b4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-black-intense-fg {\n  color: #282c36;\n}\n.jp-RenderedText pre .ansi-red-intense-fg {\n  color: #b22b31;\n}\n.jp-RenderedText pre .ansi-green-intense-fg {\n  color: #007427;\n}\n.jp-RenderedText pre .ansi-yellow-intense-fg {\n  color: #b27d12;\n}\n.jp-RenderedText pre .ansi-blue-intense-fg {\n  color: #0065ca;\n}\n.jp-RenderedText pre .ansi-magenta-intense-fg {\n  color: #a03196;\n}\n.jp-RenderedText pre .ansi-cyan-intense-fg {\n  color: #258f8f;\n}\n.jp-RenderedText pre .ansi-white-intense-fg {\n  color: #a1a6b2;\n}\n\n.jp-RenderedText pre .ansi-black-intense-bg {\n  background-color: #282c36;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-intense-bg {\n  background-color: #b22b31;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-intense-bg {\n  background-color: #007427;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-intense-bg {\n  background-color: #b27d12;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-intense-bg {\n  background-color: #0065ca;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-intense-bg {\n  background-color: #a03196;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-intense-bg {\n  background-color: #258f8f;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-intense-bg {\n  background-color: #a1a6b2;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-default-inverse-fg {\n  color: var(--jp-ui-inverse-font-color0);\n}\n.jp-RenderedText pre .ansi-default-inverse-bg {\n  background-color: var(--jp-inverse-layout-color0);\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-bold {\n  font-weight: bold;\n}\n.jp-RenderedText pre .ansi-underline {\n  text-decoration: underline;\n}\n\n.jp-RenderedText[data-mime-type='application/vnd.jupyter.stderr'] {\n  background: var(--jp-rendermime-error-background);\n  padding-top: var(--jp-code-padding);\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedLatex\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedLatex {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n}\n\n/* Left-justify outputs.*/\n.jp-OutputArea-output.jp-RenderedLatex {\n  padding: var(--jp-code-padding);\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedHTML\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedHTMLCommon {\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-content-font-family);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n  /* Give a bit more R padding on Markdown text to keep line lengths reasonable */\n  padding-right: 20px;\n}\n\n.jp-RenderedHTMLCommon em {\n  font-style: italic;\n}\n\n.jp-RenderedHTMLCommon strong {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon u {\n  text-decoration: underline;\n}\n\n.jp-RenderedHTMLCommon a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* Headings */\n\n.jp-RenderedHTMLCommon h1,\n.jp-RenderedHTMLCommon h2,\n.jp-RenderedHTMLCommon h3,\n.jp-RenderedHTMLCommon h4,\n.jp-RenderedHTMLCommon h5,\n.jp-RenderedHTMLCommon h6 {\n  line-height: var(--jp-content-heading-line-height);\n  font-weight: var(--jp-content-heading-font-weight);\n  font-style: normal;\n  margin: var(--jp-content-heading-margin-top) 0\n    var(--jp-content-heading-margin-bottom) 0;\n}\n\n.jp-RenderedHTMLCommon h1:first-child,\n.jp-RenderedHTMLCommon h2:first-child,\n.jp-RenderedHTMLCommon h3:first-child,\n.jp-RenderedHTMLCommon h4:first-child,\n.jp-RenderedHTMLCommon h5:first-child,\n.jp-RenderedHTMLCommon h6:first-child {\n  margin-top: calc(0.5 * var(--jp-content-heading-margin-top));\n}\n\n.jp-RenderedHTMLCommon h1:last-child,\n.jp-RenderedHTMLCommon h2:last-child,\n.jp-RenderedHTMLCommon h3:last-child,\n.jp-RenderedHTMLCommon h4:last-child,\n.jp-RenderedHTMLCommon h5:last-child,\n.jp-RenderedHTMLCommon h6:last-child {\n  margin-bottom: calc(0.5 * var(--jp-content-heading-margin-bottom));\n}\n\n.jp-RenderedHTMLCommon h1 {\n  font-size: var(--jp-content-font-size5);\n}\n\n.jp-RenderedHTMLCommon h2 {\n  font-size: var(--jp-content-font-size4);\n}\n\n.jp-RenderedHTMLCommon h3 {\n  font-size: var(--jp-content-font-size3);\n}\n\n.jp-RenderedHTMLCommon h4 {\n  font-size: var(--jp-content-font-size2);\n}\n\n.jp-RenderedHTMLCommon h5 {\n  font-size: var(--jp-content-font-size1);\n}\n\n.jp-RenderedHTMLCommon h6 {\n  font-size: var(--jp-content-font-size0);\n}\n\n/* Lists */\n\n.jp-RenderedHTMLCommon ul:not(.list-inline),\n.jp-RenderedHTMLCommon ol:not(.list-inline) {\n  padding-left: 2em;\n}\n\n.jp-RenderedHTMLCommon ul {\n  list-style: disc;\n}\n\n.jp-RenderedHTMLCommon ul ul {\n  list-style: square;\n}\n\n.jp-RenderedHTMLCommon ul ul ul {\n  list-style: circle;\n}\n\n.jp-RenderedHTMLCommon ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol ol {\n  list-style: upper-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol {\n  list-style: lower-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol {\n  list-style: lower-roman;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol,\n.jp-RenderedHTMLCommon ul {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon ul ul,\n.jp-RenderedHTMLCommon ul ol,\n.jp-RenderedHTMLCommon ol ul,\n.jp-RenderedHTMLCommon ol ol {\n  margin-bottom: 0em;\n}\n\n.jp-RenderedHTMLCommon hr {\n  color: var(--jp-border-color2);\n  background-color: var(--jp-border-color1);\n  margin-top: 1em;\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon > pre {\n  margin: 1.5em 2em;\n}\n\n.jp-RenderedHTMLCommon pre,\n.jp-RenderedHTMLCommon code {\n  border: 0;\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  line-height: var(--jp-code-line-height);\n  padding: 0;\n  white-space: pre-wrap;\n}\n\n.jp-RenderedHTMLCommon :not(pre) > code {\n  background-color: var(--jp-layout-color2);\n  padding: 1px 5px;\n}\n\n/* Tables */\n\n.jp-RenderedHTMLCommon table {\n  border-collapse: collapse;\n  border-spacing: 0;\n  border: none;\n  color: var(--jp-ui-font-color1);\n  font-size: 12px;\n  table-layout: fixed;\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.jp-RenderedHTMLCommon thead {\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  vertical-align: bottom;\n}\n\n.jp-RenderedHTMLCommon td,\n.jp-RenderedHTMLCommon th,\n.jp-RenderedHTMLCommon tr {\n  vertical-align: middle;\n  padding: 0.5em 0.5em;\n  line-height: normal;\n  white-space: normal;\n  max-width: none;\n  border: none;\n}\n\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon td,\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon th {\n  max-width: none;\n}\n\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon td,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon th,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon tr {\n  text-align: right;\n}\n\n.jp-RenderedHTMLCommon th {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(odd) {\n  background: var(--jp-layout-color0);\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(even) {\n  background: var(--jp-rendermime-table-row-background);\n}\n\n.jp-RenderedHTMLCommon tbody tr:hover {\n  background: var(--jp-rendermime-table-row-hover-background);\n}\n\n.jp-RenderedHTMLCommon table {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon p {\n  text-align: left;\n  margin: 0px;\n}\n\n.jp-RenderedHTMLCommon p {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon img {\n  -moz-force-broken-image-icon: 1;\n}\n\n/* Restrict to direct children as other images could be nested in other content. */\n.jp-RenderedHTMLCommon > img {\n  display: block;\n  margin-left: 0;\n  margin-right: 0;\n  margin-bottom: 1em;\n}\n\n/* Change color behind transparent images if they need it... */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-light-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-dark-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n/* ...or leave it untouched if they don't */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-dark-background {\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-light-background {\n}\n\n.jp-RenderedHTMLCommon img,\n.jp-RenderedImage img,\n.jp-RenderedHTMLCommon svg,\n.jp-RenderedSVG svg {\n  max-width: 100%;\n  height: auto;\n}\n\n.jp-RenderedHTMLCommon img.jp-mod-unconfined,\n.jp-RenderedImage img.jp-mod-unconfined,\n.jp-RenderedHTMLCommon svg.jp-mod-unconfined,\n.jp-RenderedSVG svg.jp-mod-unconfined {\n  max-width: none;\n}\n\n.jp-RenderedHTMLCommon .alert {\n  padding: var(--jp-notebook-padding);\n  border: var(--jp-border-width) solid transparent;\n  border-radius: var(--jp-border-radius);\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon .alert-info {\n  color: var(--jp-info-color0);\n  background-color: var(--jp-info-color3);\n  border-color: var(--jp-info-color2);\n}\n.jp-RenderedHTMLCommon .alert-info hr {\n  border-color: var(--jp-info-color3);\n}\n.jp-RenderedHTMLCommon .alert-info > p:last-child,\n.jp-RenderedHTMLCommon .alert-info > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-warning {\n  color: var(--jp-warn-color0);\n  background-color: var(--jp-warn-color3);\n  border-color: var(--jp-warn-color2);\n}\n.jp-RenderedHTMLCommon .alert-warning hr {\n  border-color: var(--jp-warn-color3);\n}\n.jp-RenderedHTMLCommon .alert-warning > p:last-child,\n.jp-RenderedHTMLCommon .alert-warning > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-success {\n  color: var(--jp-success-color0);\n  background-color: var(--jp-success-color3);\n  border-color: var(--jp-success-color2);\n}\n.jp-RenderedHTMLCommon .alert-success hr {\n  border-color: var(--jp-success-color3);\n}\n.jp-RenderedHTMLCommon .alert-success > p:last-child,\n.jp-RenderedHTMLCommon .alert-success > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-danger {\n  color: var(--jp-error-color0);\n  background-color: var(--jp-error-color3);\n  border-color: var(--jp-error-color2);\n}\n.jp-RenderedHTMLCommon .alert-danger hr {\n  border-color: var(--jp-error-color3);\n}\n.jp-RenderedHTMLCommon .alert-danger > p:last-child,\n.jp-RenderedHTMLCommon .alert-danger > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon blockquote {\n  margin: 1em 2em;\n  padding: 0 1em;\n  border-left: 5px solid var(--jp-border-color2);\n}\n\na.jp-InternalAnchorLink {\n  visibility: hidden;\n  margin-left: 8px;\n  color: var(--md-blue-800);\n}\n\nh1:hover .jp-InternalAnchorLink,\nh2:hover .jp-InternalAnchorLink,\nh3:hover .jp-InternalAnchorLink,\nh4:hover .jp-InternalAnchorLink,\nh5:hover .jp-InternalAnchorLink,\nh6:hover .jp-InternalAnchorLink {\n  visibility: visible;\n}\n\n.jp-RenderedHTMLCommon kbd {\n  background-color: var(--jp-rendermime-table-row-background);\n  border: 1px solid var(--jp-border-color0);\n  border-bottom-color: var(--jp-border-color2);\n  border-radius: 3px;\n  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n  display: inline-block;\n  font-size: 0.8em;\n  line-height: 1em;\n  padding: 0.2em 0.5em;\n}\n\n/* Most direct children of .jp-RenderedHTMLCommon have a margin-bottom of 1.0.\n * At the bottom of cells this is a bit too much as there is also spacing\n * between cells. Going all the way to 0 gets too tight between markdown and\n * code cells.\n */\n.jp-RenderedHTMLCommon > *:last-child {\n  margin-bottom: 0.5em;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MimeDocument {\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-filebrowser-button-height: 28px;\n  --jp-private-filebrowser-button-width: 48px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser {\n  display: flex;\n  flex-direction: column;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  border-bottom: none;\n  height: auto;\n  margin: var(--jp-toolbar-header-margin);\n  box-shadow: none;\n}\n\n.jp-BreadCrumbs {\n  flex: 0 0 auto;\n  margin: 8px 12px 8px 12px;\n}\n\n.jp-BreadCrumbs-item {\n  margin: 0px 2px;\n  padding: 0px 2px;\n  border-radius: var(--jp-border-radius);\n  cursor: pointer;\n}\n\n.jp-BreadCrumbs-item:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-BreadCrumbs-item:first-child {\n  margin-left: 0px;\n}\n\n.jp-BreadCrumbs-item.jp-mod-dropTarget {\n  background-color: var(--jp-brand-color2);\n  opacity: 0.7;\n}\n\n/*-----------------------------------------------------------------------------\n| Buttons\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  padding: 0px;\n  margin: 8px 12px 0px 12px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  justify-content: flex-start;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-Toolbar-item {\n  flex: 0 0 auto;\n  padding-left: 0px;\n  padding-right: 2px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-ToolbarButtonComponent {\n  width: 40px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent {\n  width: 72px;\n  background: var(--jp-brand-color1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent:focus-visible {\n  background-color: var(--jp-brand-color0);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent\n  .jp-icon3 {\n  fill: white;\n}\n\n/*-----------------------------------------------------------------------------\n| Other styles\n|----------------------------------------------------------------------------*/\n\n.jp-FileDialog.jp-mod-conflict input {\n  color: var(--jp-error-color1);\n}\n\n.jp-FileDialog .jp-new-name-title {\n  margin-top: 12px;\n}\n\n.jp-LastModified-hidden {\n  display: none;\n}\n\n.jp-FileBrowser-filterBox {\n  padding: 0px;\n  flex: 0 0 auto;\n  margin: 8px 12px 0px 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| DirListing\n|----------------------------------------------------------------------------*/\n\n.jp-DirListing {\n  flex: 1 1 auto;\n  display: flex;\n  flex-direction: column;\n  outline: 0;\n}\n\n.jp-DirListing:focus-visible {\n  border: 1px solid var(--jp-brand-color1);\n}\n\n.jp-DirListing-header {\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n  border-top: var(--jp-border-width) solid var(--jp-border-color2);\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  z-index: 2;\n}\n\n.jp-DirListing-headerItem {\n  padding: 4px 12px 2px 12px;\n  font-weight: 500;\n}\n\n.jp-DirListing-headerItem:hover {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-headerItem.jp-id-name {\n  flex: 1 0 84px;\n}\n\n.jp-DirListing-headerItem.jp-id-modified {\n  flex: 0 0 112px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n}\n\n.jp-id-narrow {\n  display: none;\n  flex: 0 0 5px;\n  padding: 4px 4px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n  color: var(--jp-border-color2);\n}\n\n.jp-DirListing-narrow .jp-id-narrow {\n  display: block;\n}\n\n.jp-DirListing-narrow .jp-id-modified,\n.jp-DirListing-narrow .jp-DirListing-itemModified {\n  display: none;\n}\n\n.jp-DirListing-headerItem.jp-mod-selected {\n  font-weight: 600;\n}\n\n/* increase specificity to override bundled default */\n.jp-DirListing-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-DirListing-content mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.jp-DirListing-content .jp-DirListing-item.jp-mod-selected mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n/* Style the directory listing content when a user drops a file to upload */\n.jp-DirListing.jp-mod-native-drop .jp-DirListing-content {\n  outline: 5px dashed rgba(128, 128, 128, 0.5);\n  outline-offset: -10px;\n  cursor: copy;\n}\n\n.jp-DirListing-item {\n  display: flex;\n  flex-direction: row;\n  padding: 4px 12px;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n.jp-DirListing-item[data-is-dot] {\n  opacity: 75%;\n}\n\n.jp-DirListing-item.jp-mod-selected {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.jp-DirListing-item.jp-mod-dropTarget {\n  background: var(--jp-brand-color3);\n}\n\n.jp-DirListing-item:hover:not(.jp-mod-selected) {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-itemIcon {\n  flex: 0 0 20px;\n  margin-right: 4px;\n}\n\n.jp-DirListing-itemText {\n  flex: 1 0 64px;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  user-select: none;\n}\n\n.jp-DirListing-itemModified {\n  flex: 0 0 125px;\n  text-align: right;\n}\n\n.jp-DirListing-editor {\n  flex: 1 0 64px;\n  outline: none;\n  border: none;\n}\n\n.jp-DirListing-item.jp-mod-running .jp-DirListing-itemIcon:before {\n  color: var(--jp-success-color1);\n  content: '\\25CF';\n  font-size: 8px;\n  position: absolute;\n  left: -8px;\n}\n\n.jp-DirListing-item.jp-mod-running.jp-mod-selected\n  .jp-DirListing-itemIcon:before {\n  color: var(--jp-ui-inverse-font-color1);\n}\n\n.jp-DirListing-item.lm-mod-drag-image,\n.jp-DirListing-item.jp-mod-selected.lm-mod-drag-image {\n  font-size: var(--jp-ui-font-size1);\n  padding-left: 4px;\n  margin-left: 4px;\n  width: 160px;\n  background-color: var(--jp-ui-inverse-font-color2);\n  box-shadow: var(--jp-elevation-z2);\n  border-radius: 0px;\n  color: var(--jp-ui-font-color1);\n  transform: translateX(-40%) translateY(-58%);\n}\n\n.jp-DirListing-deadSpace {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-Document {\n  min-width: 120px;\n  min-height: 120px;\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n}\n\n/*-----------------------------------------------------------------------------\n| Main OutputArea\n| OutputArea has a list of Outputs\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea {\n  overflow-y: auto;\n}\n\n.jp-OutputArea-child {\n  display: flex;\n  flex-direction: row;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child {\n  flex-direction: column;\n}\n\n.jp-OutputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-outprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n.jp-OutputArea-output {\n  height: auto;\n  overflow: auto;\n  user-select: text;\n  -moz-user-select: text;\n  -webkit-user-select: text;\n  -ms-user-select: text;\n}\n\n.jp-OutputArea-child .jp-OutputArea-output {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  margin-left: var(--jp-notebook-padding);\n}\n\n/**\n * Isolated output.\n */\n.jp-OutputArea-output.jp-mod-isolated {\n  width: 100%;\n  display: block;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n/* pre */\n\n.jp-OutputArea-output pre {\n  border: none;\n  margin: 0px;\n  padding: 0px;\n  overflow-x: auto;\n  overflow-y: auto;\n  word-break: break-all;\n  word-wrap: break-word;\n  white-space: pre-wrap;\n}\n\n/* tables */\n\n.jp-OutputArea-output.jp-RenderedHTMLCommon table {\n  margin-left: 0;\n  margin-right: 0;\n}\n\n/* description lists */\n\n.jp-OutputArea-output dl,\n.jp-OutputArea-output dt,\n.jp-OutputArea-output dd {\n  display: block;\n}\n\n.jp-OutputArea-output dl {\n  width: 100%;\n  overflow: hidden;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dt {\n  font-weight: bold;\n  float: left;\n  width: 20%;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dd {\n  float: left;\n  width: 80%;\n  padding: 0;\n  margin: 0;\n}\n\n/* Hide the gutter in case of\n *  - nested output areas (e.g. in the case of output widgets)\n *  - mirrored output areas\n */\n.jp-OutputArea .jp-OutputArea .jp-OutputArea-prompt {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| executeResult is added to any Output-result for the display of the object\n| returned by a cell\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  margin-left: 0px;\n  flex: 1 1 auto;\n}\n\n/* Text output with the Out[] prompt needs a top padding to match the\n * alignment of the Out[] prompt itself.\n */\n.jp-OutputArea-executeResult .jp-RenderedText.jp-OutputArea-output {\n  padding-top: var(--jp-code-padding);\n  border-top: var(--jp-border-width) solid transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| The Stdin output\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-stdin {\n  line-height: var(--jp-code-line-height);\n  padding-top: var(--jp-code-padding);\n  display: flex;\n}\n\n.jp-Stdin-prompt {\n  color: var(--jp-content-font-color0);\n  padding-right: var(--jp-code-padding);\n  vertical-align: baseline;\n  flex: 0 0 auto;\n}\n\n.jp-Stdin-input {\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  color: inherit;\n  background-color: inherit;\n  width: 42%;\n  min-width: 200px;\n  /* make sure input baseline aligns with prompt */\n  vertical-align: baseline;\n  /* padding + margin = 0.5em between prompt and cursor */\n  padding: 0em 0.25em;\n  margin: 0em 0.25em;\n  flex: 0 0 70%;\n}\n\n.jp-Stdin-input:focus {\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Output Area View\n|----------------------------------------------------------------------------*/\n\n.jp-LinkedOutputView .jp-OutputArea {\n  height: 100%;\n  display: block;\n}\n\n.jp-LinkedOutputView .jp-OutputArea-output:only-child {\n  height: 100%;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapser {\n  flex: 0 0 var(--jp-cell-collapser-width);\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n  border-radius: var(--jp-border-radius);\n  opacity: 1;\n}\n\n.jp-Collapser-child {\n  display: block;\n  width: 100%;\n  box-sizing: border-box;\n  /* height: 100% doesn't work because the height of its parent is computed from content */\n  position: absolute;\n  top: 0px;\n  bottom: 0px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Header/Footer\n|----------------------------------------------------------------------------*/\n\n/* Hidden by zero height by default */\n.jp-CellHeader,\n.jp-CellFooter {\n  height: 0px;\n  width: 100%;\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Input\n|----------------------------------------------------------------------------*/\n\n/* All input areas */\n.jp-InputArea {\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n}\n\nbody[data-format='mobile'] .jp-InputArea {\n  flex-direction: column;\n}\n\n.jp-InputArea-editor {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  /* This is the non-active, default styling */\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  border-radius: 0px;\n  background: var(--jp-cell-editor-background);\n}\n\nbody[data-format='mobile'] .jp-InputArea-editor {\n  margin-left: var(--jp-notebook-padding);\n}\n\n.jp-InputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-inprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  opacity: var(--jp-cell-prompt-opacity);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-InputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Placeholder {\n  display: flex;\n  flex-direction: row;\n  flex: 1 1 auto;\n}\n\n.jp-Placeholder-prompt {\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content {\n  flex: 1 1 auto;\n  border: none;\n  background: transparent;\n  height: 20px;\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon {\n  width: 32px;\n  height: 16px;\n  border: 1px solid transparent;\n  border-radius: var(--jp-border-radius);\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon:hover {\n  border: 1px solid var(--jp-border-color1);\n  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);\n  background-color: var(--jp-layout-color0);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-cell-scrolling-output-offset: 5px;\n}\n\n/*-----------------------------------------------------------------------------\n| Cell\n|----------------------------------------------------------------------------*/\n\n.jp-Cell {\n  padding: var(--jp-cell-padding);\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Common input/output\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-inputWrapper,\n.jp-Cell-outputWrapper {\n  display: flex;\n  flex-direction: row;\n  padding: 0px;\n  margin: 0px;\n  /* Added to reveal the box-shadow on the input and output collapsers. */\n  overflow: visible;\n}\n\n/* Only input/output areas inside cells */\n.jp-Cell-inputArea,\n.jp-Cell-outputArea {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Collapser\n|----------------------------------------------------------------------------*/\n\n/* Make the output collapser disappear when there is not output, but do so\n * in a manner that leaves it in the layout and preserves its width.\n */\n.jp-Cell.jp-mod-noOutputs .jp-Cell-outputCollapser {\n  border: none !important;\n  background: transparent !important;\n}\n\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputCollapser {\n  min-height: var(--jp-cell-collapser-min-height);\n}\n\n/*-----------------------------------------------------------------------------\n| Output\n|----------------------------------------------------------------------------*/\n\n/* Put a space between input and output when there IS output */\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputWrapper {\n  margin-top: 5px;\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-Cell-outputArea {\n  overflow-y: auto;\n  max-height: 200px;\n  box-shadow: inset 0 0 6px 2px rgba(0, 0, 0, 0.3);\n  margin-left: var(--jp-private-cell-scrolling-output-offset);\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  flex: 0 0\n    calc(\n      var(--jp-cell-prompt-width) -\n        var(--jp-private-cell-scrolling-output-offset)\n    );\n}\n\n/*-----------------------------------------------------------------------------\n| CodeCell\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| MarkdownCell\n|----------------------------------------------------------------------------*/\n\n.jp-MarkdownOutput {\n  flex: 1 1 auto;\n  margin-top: 0;\n  margin-bottom: 0;\n  padding-left: var(--jp-code-padding);\n}\n\n.jp-MarkdownOutput.jp-RenderedHTMLCommon {\n  overflow: auto;\n}\n\n.jp-showHiddenCellsButton {\n  margin-left: calc(var(--jp-cell-prompt-width) + 2 * var(--jp-code-padding));\n  margin-top: var(--jp-code-padding);\n  border: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-border-color3) !important;\n  color: var(--jp-content-font-color0) !important;\n}\n\n.jp-showHiddenCellsButton:hover {\n  background-color: var(--jp-border-color2) !important;\n}\n\n.jp-collapseHeadingButton {\n  display: none;\n}\n\n.jp-MarkdownCell:hover .jp-collapseHeadingButton {\n  display: flex;\n  min-height: var(--jp-cell-collapser-min-height);\n  position: absolute;\n  right: 0;\n  top: 0;\n  bottom: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n\n/*-----------------------------------------------------------------------------\n| Styles\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel-toolbar {\n  padding: 2px;\n}\n\n.jp-Toolbar-item.jp-Notebook-toolbarCellType .jp-select-wrapper.jp-mod-focused {\n  border: none;\n  box-shadow: none;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown select {\n  height: 24px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: 14px;\n  border-radius: 0;\n  display: block;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown span {\n  top: 5px !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-notebook-dragImage-width: 304px;\n  --jp-private-notebook-dragImage-height: 36px;\n  --jp-private-notebook-selected-color: var(--md-blue-400);\n  --jp-private-notebook-active-color: var(--md-green-400);\n}\n\n/*-----------------------------------------------------------------------------\n| Imports\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Notebook\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel {\n  display: block;\n  height: 100%;\n}\n\n.jp-NotebookPanel.jp-Document {\n  min-width: 240px;\n  min-height: 120px;\n}\n\n.jp-Notebook {\n  padding: var(--jp-notebook-padding);\n  outline: none;\n  overflow: auto;\n  background: var(--jp-layout-color0);\n}\n\n.jp-Notebook.jp-mod-scrollPastEnd::after {\n  display: block;\n  content: '';\n  min-height: var(--jp-notebook-scroll-padding);\n}\n\n.jp-MainAreaWidget-ContainStrict .jp-Notebook * {\n  contain: strict;\n}\n\n.jp-Notebook-render * {\n  contain: none !important;\n}\n\n.jp-Notebook .jp-Cell {\n  overflow: visible;\n}\n\n.jp-Notebook .jp-Cell .jp-InputPrompt {\n  cursor: move;\n  float: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook state related styling\n|\n| The notebook and cells each have states, here are the possibilities:\n|\n| - Notebook\n|   - Command\n|   - Edit\n| - Cell\n|   - None\n|   - Active (only one can be active)\n|   - Selected (the cells actions are applied to)\n|   - Multiselected (when multiple selected, the cursor)\n|   - No outputs\n|----------------------------------------------------------------------------*/\n\n/* Command or edit modes */\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-InputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-OutputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n/* cell is active */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser {\n  background: var(--jp-brand-color1);\n}\n\n/* cell is dirty */\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt {\n  color: var(--jp-warn-color1);\n}\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt:before {\n  color: var(--jp-warn-color1);\n  content: '•';\n}\n\n.jp-Notebook .jp-Cell.jp-mod-active.jp-mod-dirty .jp-Collapser {\n  background: var(--jp-warn-color1);\n}\n\n/* collapser is hovered */\n.jp-Notebook .jp-Cell .jp-Collapser:hover {\n  box-shadow: var(--jp-elevation-z2);\n  background: var(--jp-brand-color1);\n  opacity: var(--jp-cell-collapser-not-active-hover-opacity);\n}\n\n/* cell is active and collapser is hovered */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser:hover {\n  background: var(--jp-brand-color0);\n  opacity: 1;\n}\n\n/* Command mode */\n\n.jp-Notebook.jp-mod-commandMode .jp-Cell.jp-mod-selected {\n  background: var(--jp-notebook-multiselected-color);\n}\n\n.jp-Notebook.jp-mod-commandMode\n  .jp-Cell.jp-mod-active.jp-mod-selected:not(.jp-mod-multiSelected) {\n  background: transparent;\n}\n\n/* Edit mode */\n\n.jp-Notebook.jp-mod-editMode .jp-Cell.jp-mod-active .jp-InputArea-editor {\n  border: var(--jp-border-width) solid var(--jp-cell-editor-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-cell-editor-active-background);\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook drag and drop\n|----------------------------------------------------------------------------*/\n\n.jp-Notebook-cell.jp-mod-dropSource {\n  opacity: 0.5;\n}\n\n.jp-Notebook-cell.jp-mod-dropTarget,\n.jp-Notebook.jp-mod-commandMode\n  .jp-Notebook-cell.jp-mod-active.jp-mod-selected.jp-mod-dropTarget {\n  border-top-color: var(--jp-private-notebook-selected-color);\n  border-top-style: solid;\n  border-top-width: 2px;\n}\n\n.jp-dragImage {\n  display: block;\n  flex-direction: row;\n  width: var(--jp-private-notebook-dragImage-width);\n  height: var(--jp-private-notebook-dragImage-height);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background);\n  overflow: visible;\n}\n\n.jp-dragImage-singlePrompt {\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n.jp-dragImage .jp-dragImage-content {\n  flex: 1 1 auto;\n  z-index: 2;\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  line-height: var(--jp-code-line-height);\n  padding: var(--jp-code-padding);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background-color);\n  color: var(--jp-content-font-color3);\n  text-align: left;\n  margin: 4px 4px 4px 0px;\n}\n\n.jp-dragImage .jp-dragImage-prompt {\n  flex: 0 0 auto;\n  min-width: 36px;\n  color: var(--jp-cell-inprompt-font-color);\n  padding: var(--jp-code-padding);\n  padding-left: 12px;\n  font-family: var(--jp-cell-prompt-font-family);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: 1.9;\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n}\n\n.jp-dragImage-multipleBack {\n  z-index: -1;\n  position: absolute;\n  height: 32px;\n  width: 300px;\n  top: 8px;\n  left: 8px;\n  background: var(--jp-layout-color2);\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n/*-----------------------------------------------------------------------------\n| Cell toolbar\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookTools {\n  display: block;\n  min-width: var(--jp-sidebar-min-width);\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n    * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  overflow: auto;\n}\n\n.jp-NotebookTools-tool {\n  padding: 0px 12px 0 12px;\n}\n\n.jp-ActiveCellTool {\n  padding: 12px;\n  background-color: var(--jp-layout-color1);\n  border-top: none !important;\n}\n\n.jp-ActiveCellTool .jp-InputArea-prompt {\n  flex: 0 0 auto;\n  padding-left: 0px;\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor {\n  flex: 1 1 auto;\n  background: var(--jp-cell-editor-background);\n  border-color: var(--jp-cell-editor-border-color);\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor .CodeMirror {\n  background: transparent;\n}\n\n.jp-MetadataEditorTool {\n  flex-direction: column;\n  padding: 12px 0px 12px 0px;\n}\n\n.jp-RankedPanel > :not(:first-child) {\n  margin-top: 12px;\n}\n\n.jp-KeySelector select.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n}\n\n.jp-KeySelector label,\n.jp-MetadataEditorTool label {\n  line-height: 1.4;\n}\n\n.jp-NotebookTools .jp-select-wrapper {\n  margin-top: 4px;\n  margin-bottom: 0px;\n}\n\n.jp-NotebookTools .jp-Collapse {\n  margin-top: 16px;\n}\n\n/*-----------------------------------------------------------------------------\n| Presentation Mode (.jp-mod-presentationMode)\n|----------------------------------------------------------------------------*/\n\n.jp-mod-presentationMode .jp-Notebook {\n  --jp-content-font-size1: var(--jp-content-presentation-font-size1);\n  --jp-code-font-size: var(--jp-code-presentation-font-size);\n}\n\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-InputPrompt,\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-OutputPrompt {\n  flex: 0 0 110px;\n}\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-Placeholder {\n  padding-left: 55px;\n}\n\n.jp-Cell-Placeholder-wrapper {\n  background: #fff;\n  border: 1px solid;\n  border-color: #e5e6e9 #dfe0e4 #d0d1d5;\n  border-radius: 4px;\n  -webkit-border-radius: 4px;\n  margin: 10px 15px;\n}\n\n.jp-Cell-Placeholder-wrapper-inner {\n  padding: 15px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body {\n  background-repeat: repeat;\n  background-size: 50% auto;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  background: #f6f7f8;\n  background-image: -webkit-linear-gradient(\n    left,\n    #f6f7f8 0%,\n    #edeef1 20%,\n    #f6f7f8 40%,\n    #f6f7f8 100%\n  );\n  background-repeat: no-repeat;\n  background-size: 800px 104px;\n  height: 104px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  position: absolute;\n  right: 15px;\n  left: 15px;\n  top: 15px;\n}\n\ndiv.jp-Cell-Placeholder-h1 {\n  top: 20px;\n  height: 20px;\n  left: 15px;\n  width: 150px;\n}\n\ndiv.jp-Cell-Placeholder-h2 {\n  left: 15px;\n  top: 50px;\n  height: 10px;\n  width: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-1,\ndiv.jp-Cell-Placeholder-content-2,\ndiv.jp-Cell-Placeholder-content-3 {\n  left: 15px;\n  right: 15px;\n  height: 10px;\n}\n\ndiv.jp-Cell-Placeholder-content-1 {\n  top: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-2 {\n  top: 120px;\n}\n\ndiv.jp-Cell-Placeholder-content-3 {\n  top: 140px;\n}\n\n</style>\n\n    <style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\nThe following CSS variables define the main, public API for styling JupyterLab.\nThese variables should be used by all plugins wherever possible. In other\nwords, plugins should not define custom colors, sizes, etc unless absolutely\nnecessary. This enables users to change the visual theme of JupyterLab\nby changing these variables.\n\nMany variables appear in an ordered sequence (0,1,2,3). These sequences\nare designed to work well together, so for example, `--jp-border-color1` should\nbe used with `--jp-layout-color1`. The numbers have the following meanings:\n\n* 0: super-primary, reserved for special emphasis\n* 1: primary, most important under normal situations\n* 2: secondary, next most important under normal situations\n* 3: tertiary, next most important under normal situations\n\nThroughout JupyterLab, we are mostly following principles from Google's\nMaterial Design when selecting colors. We are not, however, following\nall of MD as it is not optimized for dense, information rich UIs.\n*/\n\n:root {\n  /* Elevation\n   *\n   * We style box-shadows using Material Design's idea of elevation. These particular numbers are taken from here:\n   *\n   * https://github.com/material-components/material-components-web\n   * https://material-components-web.appspot.com/elevation.html\n   */\n\n  --jp-shadow-base-lightness: 0;\n  --jp-shadow-umbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.2\n  );\n  --jp-shadow-penumbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.14\n  );\n  --jp-shadow-ambient-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.12\n  );\n  --jp-elevation-z0: none;\n  --jp-elevation-z1: 0px 2px 1px -1px var(--jp-shadow-umbra-color),\n    0px 1px 1px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 3px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z2: 0px 3px 1px -2px var(--jp-shadow-umbra-color),\n    0px 2px 2px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 5px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z4: 0px 2px 4px -1px var(--jp-shadow-umbra-color),\n    0px 4px 5px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 10px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z6: 0px 3px 5px -1px var(--jp-shadow-umbra-color),\n    0px 6px 10px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 18px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z8: 0px 5px 5px -3px var(--jp-shadow-umbra-color),\n    0px 8px 10px 1px var(--jp-shadow-penumbra-color),\n    0px 3px 14px 2px var(--jp-shadow-ambient-color);\n  --jp-elevation-z12: 0px 7px 8px -4px var(--jp-shadow-umbra-color),\n    0px 12px 17px 2px var(--jp-shadow-penumbra-color),\n    0px 5px 22px 4px var(--jp-shadow-ambient-color);\n  --jp-elevation-z16: 0px 8px 10px -5px var(--jp-shadow-umbra-color),\n    0px 16px 24px 2px var(--jp-shadow-penumbra-color),\n    0px 6px 30px 5px var(--jp-shadow-ambient-color);\n  --jp-elevation-z20: 0px 10px 13px -6px var(--jp-shadow-umbra-color),\n    0px 20px 31px 3px var(--jp-shadow-penumbra-color),\n    0px 8px 38px 7px var(--jp-shadow-ambient-color);\n  --jp-elevation-z24: 0px 11px 15px -7px var(--jp-shadow-umbra-color),\n    0px 24px 38px 3px var(--jp-shadow-penumbra-color),\n    0px 9px 46px 8px var(--jp-shadow-ambient-color);\n\n  /* Borders\n   *\n   * The following variables, specify the visual styling of borders in JupyterLab.\n   */\n\n  --jp-border-width: 1px;\n  --jp-border-color0: var(--md-grey-400);\n  --jp-border-color1: var(--md-grey-400);\n  --jp-border-color2: var(--md-grey-300);\n  --jp-border-color3: var(--md-grey-200);\n  --jp-border-radius: 2px;\n\n  /* UI Fonts\n   *\n   * The UI font CSS variables are used for the typography all of the JupyterLab\n   * user interface elements that are not directly user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-ui-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-ui-font-scale-factor: 1.2;\n  --jp-ui-font-size0: 0.83333em;\n  --jp-ui-font-size1: 13px; /* Base font size */\n  --jp-ui-font-size2: 1.2em;\n  --jp-ui-font-size3: 1.44em;\n\n  --jp-ui-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica,\n    Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';\n\n  /*\n   * Use these font colors against the corresponding main layout colors.\n   * In a light theme, these go from dark to light.\n   */\n\n  /* Defaults use Material Design specification */\n  --jp-ui-font-color0: rgba(0, 0, 0, 1);\n  --jp-ui-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-ui-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-ui-font-color3: rgba(0, 0, 0, 0.38);\n\n  /*\n   * Use these against the brand/accent/warn/error colors.\n   * These will typically go from light to darker, in both a dark and light theme.\n   */\n\n  --jp-ui-inverse-font-color0: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color1: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color2: rgba(255, 255, 255, 0.7);\n  --jp-ui-inverse-font-color3: rgba(255, 255, 255, 0.5);\n\n  /* Content Fonts\n   *\n   * Content font variables are used for typography of user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-content-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-content-line-height: 1.6;\n  --jp-content-font-scale-factor: 1.2;\n  --jp-content-font-size0: 0.83333em;\n  --jp-content-font-size1: 14px; /* Base font size */\n  --jp-content-font-size2: 1.2em;\n  --jp-content-font-size3: 1.44em;\n  --jp-content-font-size4: 1.728em;\n  --jp-content-font-size5: 2.0736em;\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-content-presentation-font-size1: 17px;\n\n  --jp-content-heading-line-height: 1;\n  --jp-content-heading-margin-top: 1.2em;\n  --jp-content-heading-margin-bottom: 0.8em;\n  --jp-content-heading-font-weight: 500;\n\n  /* Defaults use Material Design specification */\n  --jp-content-font-color0: rgba(0, 0, 0, 1);\n  --jp-content-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-content-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-content-font-color3: rgba(0, 0, 0, 0.38);\n\n  --jp-content-link-color: var(--md-blue-700);\n\n  --jp-content-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',\n    Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',\n    'Segoe UI Symbol';\n\n  /*\n   * Code Fonts\n   *\n   * Code font variables are used for typography of code and other monospaces content.\n   */\n\n  --jp-code-font-size: 13px;\n  --jp-code-line-height: 1.3077; /* 17px for 13px base */\n  --jp-code-padding: 5px; /* 5px for 13px base, codemirror highlighting needs integer px value */\n  --jp-code-font-family-default: Menlo, Consolas, 'DejaVu Sans Mono', monospace;\n  --jp-code-font-family: var(--jp-code-font-family-default);\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-code-presentation-font-size: 16px;\n\n  /* may need to tweak cursor width if you change font size */\n  --jp-code-cursor-width0: 1.4px;\n  --jp-code-cursor-width1: 2px;\n  --jp-code-cursor-width2: 4px;\n\n  /* Layout\n   *\n   * The following are the main layout colors use in JupyterLab. In a light\n   * theme these would go from light to dark.\n   */\n\n  --jp-layout-color0: white;\n  --jp-layout-color1: white;\n  --jp-layout-color2: var(--md-grey-200);\n  --jp-layout-color3: var(--md-grey-400);\n  --jp-layout-color4: var(--md-grey-600);\n\n  /* Inverse Layout\n   *\n   * The following are the inverse layout colors use in JupyterLab. In a light\n   * theme these would go from dark to light.\n   */\n\n  --jp-inverse-layout-color0: #111111;\n  --jp-inverse-layout-color1: var(--md-grey-900);\n  --jp-inverse-layout-color2: var(--md-grey-800);\n  --jp-inverse-layout-color3: var(--md-grey-700);\n  --jp-inverse-layout-color4: var(--md-grey-600);\n\n  /* Brand/accent */\n\n  --jp-brand-color0: var(--md-blue-900);\n  --jp-brand-color1: var(--md-blue-700);\n  --jp-brand-color2: var(--md-blue-300);\n  --jp-brand-color3: var(--md-blue-100);\n  --jp-brand-color4: var(--md-blue-50);\n\n  --jp-accent-color0: var(--md-green-900);\n  --jp-accent-color1: var(--md-green-700);\n  --jp-accent-color2: var(--md-green-300);\n  --jp-accent-color3: var(--md-green-100);\n\n  /* State colors (warn, error, success, info) */\n\n  --jp-warn-color0: var(--md-orange-900);\n  --jp-warn-color1: var(--md-orange-700);\n  --jp-warn-color2: var(--md-orange-300);\n  --jp-warn-color3: var(--md-orange-100);\n\n  --jp-error-color0: var(--md-red-900);\n  --jp-error-color1: var(--md-red-700);\n  --jp-error-color2: var(--md-red-300);\n  --jp-error-color3: var(--md-red-100);\n\n  --jp-success-color0: var(--md-green-900);\n  --jp-success-color1: var(--md-green-700);\n  --jp-success-color2: var(--md-green-300);\n  --jp-success-color3: var(--md-green-100);\n\n  --jp-info-color0: var(--md-cyan-900);\n  --jp-info-color1: var(--md-cyan-700);\n  --jp-info-color2: var(--md-cyan-300);\n  --jp-info-color3: var(--md-cyan-100);\n\n  /* Cell specific styles */\n\n  --jp-cell-padding: 5px;\n\n  --jp-cell-collapser-width: 8px;\n  --jp-cell-collapser-min-height: 20px;\n  --jp-cell-collapser-not-active-hover-opacity: 0.6;\n\n  --jp-cell-editor-background: var(--md-grey-100);\n  --jp-cell-editor-border-color: var(--md-grey-300);\n  --jp-cell-editor-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-cell-editor-active-background: var(--jp-layout-color0);\n  --jp-cell-editor-active-border-color: var(--jp-brand-color1);\n\n  --jp-cell-prompt-width: 64px;\n  --jp-cell-prompt-font-family: var(--jp-code-font-family-default);\n  --jp-cell-prompt-letter-spacing: 0px;\n  --jp-cell-prompt-opacity: 1;\n  --jp-cell-prompt-not-active-opacity: 0.5;\n  --jp-cell-prompt-not-active-font-color: var(--md-grey-700);\n  /* A custom blend of MD grey and blue 600\n   * See https://meyerweb.com/eric/tools/color-blend/#546E7A:1E88E5:5:hex */\n  --jp-cell-inprompt-font-color: #307fc1;\n  /* A custom blend of MD grey and orange 600\n   * https://meyerweb.com/eric/tools/color-blend/#546E7A:F4511E:5:hex */\n  --jp-cell-outprompt-font-color: #bf5b3d;\n\n  /* Notebook specific styles */\n\n  --jp-notebook-padding: 10px;\n  --jp-notebook-select-background: var(--jp-layout-color1);\n  --jp-notebook-multiselected-color: var(--md-blue-50);\n\n  /* The scroll padding is calculated to fill enough space at the bottom of the\n  notebook to show one single-line cell (with appropriate padding) at the top\n  when the notebook is scrolled all the way to the bottom. We also subtract one\n  pixel so that no scrollbar appears if we have just one single-line cell in the\n  notebook. This padding is to enable a 'scroll past end' feature in a notebook.\n  */\n  --jp-notebook-scroll-padding: calc(\n    100% - var(--jp-code-font-size) * var(--jp-code-line-height) -\n      var(--jp-code-padding) - var(--jp-cell-padding) - 1px\n  );\n\n  /* Rendermime styles */\n\n  --jp-rendermime-error-background: #fdd;\n  --jp-rendermime-table-row-background: var(--md-grey-100);\n  --jp-rendermime-table-row-hover-background: var(--md-light-blue-50);\n\n  /* Dialog specific styles */\n\n  --jp-dialog-background: rgba(0, 0, 0, 0.25);\n\n  /* Console specific styles */\n\n  --jp-console-padding: 10px;\n\n  /* Toolbar specific styles */\n\n  --jp-toolbar-border-color: var(--jp-border-color1);\n  --jp-toolbar-micro-height: 8px;\n  --jp-toolbar-background: var(--jp-layout-color1);\n  --jp-toolbar-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.24);\n  --jp-toolbar-header-margin: 4px 4px 0px 4px;\n  --jp-toolbar-active-background: var(--md-grey-300);\n\n  /* Statusbar specific styles */\n\n  --jp-statusbar-height: 24px;\n\n  /* Input field styles */\n\n  --jp-input-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-input-active-background: var(--jp-layout-color1);\n  --jp-input-hover-background: var(--jp-layout-color1);\n  --jp-input-background: var(--md-grey-100);\n  --jp-input-border-color: var(--jp-border-color1);\n  --jp-input-active-border-color: var(--jp-brand-color1);\n  --jp-input-active-box-shadow-color: rgba(19, 124, 189, 0.3);\n\n  /* General editor styles */\n\n  --jp-editor-selected-background: #d9d9d9;\n  --jp-editor-selected-focused-background: #d7d4f0;\n  --jp-editor-cursor-color: var(--jp-ui-font-color0);\n\n  /* Code mirror specific styles */\n\n  --jp-mirror-editor-keyword-color: #008000;\n  --jp-mirror-editor-atom-color: #88f;\n  --jp-mirror-editor-number-color: #080;\n  --jp-mirror-editor-def-color: #00f;\n  --jp-mirror-editor-variable-color: var(--md-grey-900);\n  --jp-mirror-editor-variable-2-color: #05a;\n  --jp-mirror-editor-variable-3-color: #085;\n  --jp-mirror-editor-punctuation-color: #05a;\n  --jp-mirror-editor-property-color: #05a;\n  --jp-mirror-editor-operator-color: #aa22ff;\n  --jp-mirror-editor-comment-color: #408080;\n  --jp-mirror-editor-string-color: #ba2121;\n  --jp-mirror-editor-string-2-color: #708;\n  --jp-mirror-editor-meta-color: #aa22ff;\n  --jp-mirror-editor-qualifier-color: #555;\n  --jp-mirror-editor-builtin-color: #008000;\n  --jp-mirror-editor-bracket-color: #997;\n  --jp-mirror-editor-tag-color: #170;\n  --jp-mirror-editor-attribute-color: #00c;\n  --jp-mirror-editor-header-color: blue;\n  --jp-mirror-editor-quote-color: #090;\n  --jp-mirror-editor-link-color: #00c;\n  --jp-mirror-editor-error-color: #f00;\n  --jp-mirror-editor-hr-color: #999;\n\n  /* Vega extension styles */\n\n  --jp-vega-background: white;\n\n  /* Sidebar-related styles */\n\n  --jp-sidebar-min-width: 250px;\n\n  /* Search-related styles */\n\n  --jp-search-toggle-off-opacity: 0.5;\n  --jp-search-toggle-hover-opacity: 0.8;\n  --jp-search-toggle-on-opacity: 1;\n  --jp-search-selected-match-background-color: rgb(245, 200, 0);\n  --jp-search-selected-match-color: black;\n  --jp-search-unselected-match-background-color: var(\n    --jp-inverse-layout-color0\n  );\n  --jp-search-unselected-match-color: var(--jp-ui-inverse-font-color0);\n\n  /* Icon colors that work well with light or dark backgrounds */\n  --jp-icon-contrast-color0: var(--md-purple-600);\n  --jp-icon-contrast-color1: var(--md-green-600);\n  --jp-icon-contrast-color2: var(--md-pink-600);\n  --jp-icon-contrast-color3: var(--md-blue-600);\n}\n</style>\n\n<style type=\"text/css\">\n/* Force rendering true colors when outputing to pdf */\n* {\n  -webkit-print-color-adjust: exact;\n}\n\n/* Misc */\na.anchor-link {\n  display: none;\n}\n\n.highlight  {\n  margin: 0.4em;\n}\n\n/* Input area styling */\n.jp-InputArea {\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  overflow: hidden;\n}\n\n.CodeMirror pre {\n  margin: 0;\n  padding: 0;\n}\n\n/* Using table instead of flexbox so that we can use break-inside property */\n/* CSS rules under this comment should not be required anymore after we move to the JupyterLab 4.0 CSS */\n\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  min-width: calc(\n    var(--jp-cell-prompt-width) - var(--jp-private-cell-scrolling-output-offset)\n  );\n}\n\n.jp-OutputArea-child {\n  display: table;\n  width: 100%;\n}\n\n.jp-OutputPrompt {\n  display: table-cell;\n  vertical-align: top;\n  min-width: var(--jp-cell-prompt-width);\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  display: table-row;\n}\n\n.jp-OutputArea-output {\n  display: table-cell;\n  width: 100%;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  display: table-row;\n}\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  width: 100%;\n}\n\n/* Hiding the collapser by default */\n.jp-Collapser {\n  display: none;\n}\n\n@media print {\n  .jp-Cell-inputWrapper,\n  .jp-Cell-outputWrapper {\n    display: block;\n  }\n\n  .jp-OutputArea-child {\n    break-inside: avoid-page;\n  }\n}\n</style>\n\n<!-- Load mathjax -->\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/latest.js?config=TeX-AMS_CHTML-full,Safe\"> </script>\n    <!-- MathJax configuration -->\n    <script type=\"text/x-mathjax-config\">\n    init_mathjax = function() {\n        if (window.MathJax) {\n        // MathJax loaded\n            MathJax.Hub.Config({\n                TeX: {\n                    equationNumbers: {\n                    autoNumber: \"AMS\",\n                    useLabelIds: true\n                    }\n                },\n                tex2jax: {\n                    inlineMath: [ ['$','$'], [\"\\\\(\",\"\\\\)\"] ],\n                    displayMath: [ ['$$','$$'], [\"\\\\[\",\"\\\\]\"] ],\n                    processEscapes: true,\n                    processEnvironments: true\n                },\n                displayAlign: 'center',\n                CommonHTML: {\n                    linebreaks: {\n                    automatic: true\n                    }\n                }\n            });\n\n            MathJax.Hub.Queue([\"Typeset\", MathJax.Hub]);\n        }\n    }\n    init_mathjax();\n    </script>\n    <!-- End of mathjax configuration --></head>\n<body class=\"jp-Notebook\" data-jp-theme-light=\"true\" data-jp-theme-name=\"JupyterLab Light\">\n<div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[1]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">ImportQualifiedPost</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">FlexibleContexts</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">BlockArguments</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">TupleSections</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">FlexibleContexts</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">OverloadedStrings</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">LambdaCase</span><span class=\"w\"></span>\n\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Arrow</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">first</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Text</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">pack</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Numeric.Log</span><span class=\"w\"></span>\n\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Class</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Enumerator</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Weighted</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Sampler.Strict</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Integrator</span><span class=\"w\"></span>\n\n<span class=\"kt\">:</span><span class=\"n\">l</span><span class=\"w\"> </span><span class=\"o\">../</span><span class=\"n\">plotting</span><span class=\"o\">.</span><span class=\"n\">hs</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Introduction-to-Monad-Bayes\">Introduction to Monad-Bayes<a class=\"anchor-link\" href=\"#Introduction-to-Monad-Bayes\">&#182;</a></h1><p>This serves as an interactive alternative to the user guide. This isn't intended as a tutorial to Haskell, but if you're familiar with probabilistic programming, the general flow of the code should look familiar.</p>\n<p>To get a sense of how probabilistic programming with monad-bayes works, consider the following:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[2]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadMeasure</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"w\"></span>\n<span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"n\">observation</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">mean</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">uniformD</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"o\">-</span><span class=\"mi\">1</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">factor</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">normalPdf</span><span class=\"w\"> </span><span class=\"n\">mean</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"> </span><span class=\"n\">observation</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"n\">mean</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>The idea of monad-bayes, and probabilistic programming languages in general is to define distributions as programs. <code>model</code> corresponds to the distribution that you would express mathematically as:</p>\n$$ P(m | o) = \\frac{P(m)P(o|m)}{P(o)} = \\frac{1/3 * \\mathbb{N}(o; m, 1)}{\\sum_{m' \\in \\{-1,0,1\\}} 1/3 * \\mathbb{N}(o; m', 1) } $$<p>As a program, you can think of <code>model</code> as doing the following:</p>\n<ul>\n<li>first draw from the prior over possible values of <code>mean</code> (that's the line <code>mean &lt;- uniformD [-1, 0, 1]</code>)</li>\n<li><p>then score a draw higher according to the likelihood placed on <code>observation</code> (the argument to <code>model</code>) by a normal with $\\mu$=<code>mean</code></p>\n</li>\n<li><p>then return the <code>mean</code></p>\n</li>\n</ul>\n<p>To orient you on the relationship between the mathematical view of a distribution and the programming one, here are some notes:</p>\n<ul>\n<li>a distribution over values of type <code>a</code> has type <code>MonadMeasure m =&gt; m a</code></li>\n<li>a joint distribution over values of types <code>a</code> and <code>b</code> is a distribution over a tuple: <code>MonadMeasure m =&gt; m (a, b)</code></li>\n<li>a conditional distribution over values of type <code>a</code> conditioned on values of type <code>b</code> is a function into a distribution: \n  <code>MonadMeasure m =&gt; b -&gt; m a</code></li>\n</ul>\n<p>For example, if the value observed is $0.3$, then we can calculate the distribution over the mean:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[3]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">inferredDistribution</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">enumerator</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"> </span><span class=\"mf\">0.3</span><span class=\"w\"></span>\n<span class=\"nf\">inferredDistribution</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[(0.0,0.44090549839518783),(1.0,0.36098289073731515),(-1.0,0.198111610867497)]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[4]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">first</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">show</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">inferredDistribution</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>To produce this plot, we performed <em>inference</em>, to obtain the exact form of the distribution represented by <code>model</code>. Because the only random variable in <code>model</code> had a support that was small and discrete (the set $\\{-1, 0, 1\\}$), performing this inference exactly was straightforward.</p>\n<p><code>enumerate</code> is an exact inference method offered by monad-bayes targeted as discrete distributions.</p>\n<p>You are encouraged to change <code>model</code> in a number of ways and observe how the results change:</p>\n<ul>\n<li>try changing the prior (currently <code>uniformD [-1, 0, 1]</code>)</li>\n<li>try changing the score (currently <code>factor (normalPdf mean 1 observation)</code>)</li>\n<li>try changing the types of the observation and latent variable (i.e. <code>mean</code>)</li>\n</ul>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Distributions-as-programs\">Distributions as programs<a class=\"anchor-link\" href=\"#Distributions-as-programs\">&#182;</a></h1><p>If you are familiar with Haskell, then it should be clear that the class of distributions you can express in this way is very broad, since we have monadic control flow. For example, you could build:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[5]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">lengthDist</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadMeasure</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"kt\">Int</span><span class=\"w\"></span>\n<span class=\"nf\">lengthDist</span><span class=\"w\"> </span><span class=\"n\">observation</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">means</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">3</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">model</span><span class=\"w\"> </span><span class=\"n\">observation</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">length</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">filter</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">&gt;=</span><span class=\"mi\">1</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">means</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Exact-inference-for-continuous-distributions\">Exact inference for continuous distributions<a class=\"anchor-link\" href=\"#Exact-inference-for-continuous-distributions\">&#182;</a></h1><p><code>enumerate</code> only works for discrete random variables (like categorical or bernoulli distributions).</p>\n<p>For continuous distributions, there is almost a (near) exact inference algorithm, which performs numerical integration. It is defined in <code>Control.Monad.Bayes.Integrator</code>, which also provides <code>histogram</code>:</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>Given an observation, this is the probability on how many (out of 3) independent draws from the posterior of the model conditioned on the observation will be greater or equal to 1. Consider the hassle of defining this with an equation, and you'll see why probabilistic programming is appealing as a way of accelerating modelling and inference.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[6]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">enumerator</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">lengthDist</span><span class=\"w\"> </span><span class=\"mf\">0.5</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[(1,0.4228030765220977),(2,0.3090938161626379),(0,0.19278121201287118),(3,7.532189530239404e-2)]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[7]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.List</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Ord</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Data.Text</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">T</span><span class=\"w\"></span>\n\n<span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">Control</span><span class=\"o\">.</span><span class=\"kt\">Monad</span><span class=\"o\">.</span><span class=\"kt\">Bayes</span><span class=\"o\">.</span><span class=\"kt\">Integrator</span><span class=\"o\">.</span><span class=\"n\">histogram</span><span class=\"w\"> </span><span class=\"mi\">45</span><span class=\"w\"> </span><span class=\"mf\">0.2</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAcUAAAG/CAYAAAApeMwjAAAAAXNSR0IArs4c6QAAIABJREFUeF7tnX9wVcd5/l8hyUgJsR3hH4MdNTFEyKkUXGNJuCnUEaixTTH12AVXQIamtScYklYhJHhCTceNw+C0zaTCNi0tDaNCqRsyDvkCcqhc1zFKXEeycDFBih27OBF2FNUjYxthWZa+swsiuujeu2f33T1399zn/ANXZ989ez77vPuc3XPuuQWjo6OjhA0EQAAEQAAEQIAKYIpQAQiAAAiAAAicIQBThBJAAARAAARA4CwBmCKkAAIgAAIgAAIwRWgABEAABEAABFIJYKYIRYAACIAACIAAZorQAAiAAAiAAAjEMFMU3/JYv349dXV10fDwMG3evJnmzJmTcuQjR45QU1MTFRYWUkVFBTU3N9N7771Hd911F50+fZpOnjxJn/3sZ+nWW29Fn4EACIAACIBALAScLJ+2tbXRjh07aOfOndTb20uLFy+mzs7OlBOaN28ebd++nWbOnElr1qyh+fPnS1N88skn6aGHHqI333yTZs2aRS+//HIsIHAQEAABEAABEHBiihs3bqTKykpavny5JFxTU0MHDx6ksrIy+VnMHquqqqinp0d+3rdvn9wvyt9333303e9+l7q7u+lzn/sc/eAHP0AvgQAIgAAIgEAsBJyY4urVq2nhwoW0aNEieRINDQ20detWuUwqtr6+Prm/o6NDfj506JDcL2aXS5cupTfeeINee+01uv/+++m22247V6a9vT0FyqWXXkqf/OQnYwGFg4AACIAACCSHgLjNN2PGjAkn5MQUN2zYQNXV1dTY2CgPWFdXR62trTR16lT5eWhoSC6Nitmg2A4cOCD3i6XUgYEBuvfee2WZj3/843T48GEqLS1N2xMPPPCAvHfp6/bSSy/R9OnTfW0eoX28rvGB3yt9J9OexG9cdiH6l9e94Jen/JyY4v79+2nv3r20bds26u/vlzNFYW6Dg4NUVFRExcXF8sGbPXv2UHl5Oa1bt45qa2vphRdeoPe///30hS98gcZc/LnnnqMPfOADMEWmQNOF+zCoZzsttE/d6f/a9jztfvxoSsHGBVW0rKEag7oaX9YS0B8PYKj8nJjiyMgIrVy5Us76hClu2rSJ6uvradWqVTR37lxasWIFiaXQtWvX0rRp0+RMsKWlhV5/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qNXNeoVDFYXeWborDVOEKXJNTxUPU3SbvyEu78IU3WkC9xSZbGGKMEWVqXH3wxSZSZolPNRJAUzRnSZgiky2MEWYItf0VPEwRWaSwhTdATSpGV/JMKH265gQruTwlQzzpytxUaG+qIAp8saQJPLDTNGdJjBTZLLFoK4e1PGVDPOLBpU8Q7hoDPGenYp7XPvxlYy4SI87DpKKBx2mCFNULX9y9ydxpsPLOnvRoY5/mCna08CEmkIVhUMkE6o+drw/7eE+9uFL5Ewby6fmMyHwU19UqPSHmZj5aBDq+AdTNO9zZWSoolCemMUCWP4zNz3RDeDnlh9M0TzZQx3/YIrmfa6MDFUUyhOzWACDuttBHTNtc77IX16ih8rPiSmOjo7S+vXrqauri4aHh2nz5s00Z86cFMJHjhyhpqYmKiwspIqKCmpubpb/P3bsGN19991011130fLly7P2Cp4+DV+0MEXzQRszRfXyKOeeY6iDOm9UsBcdKj8nptjW1kY7duygnTt3Um9vLy1evJg6OztTaM+bN4+2b99OM2fOpDVr1tD8+fPplltuoc985jN0+eWXy7+vWrUKpmhPo17e84QpwhR3P340RZuNC6poWUO1/BvH1LjxoQ7qDocMrapD5efEFDdu3EiVlZXnZno1NTV08OBBKisrk1DF7LGqqop6enrk53379sn9YrYotvvvv58uueQSmKKWBPUL+yBamCJMEaaon7siwof8zdbyUNvnxBRXr15NCxcupEWLFklmDQ0NtHXrVrlMKra+vj65v6OjQ34+dOiQ3L9r166MpijKtLe3T+iDJUuWmCkKUV4QaO3spceePZHSlptmX0E3X3el/Bv2g08u9eFFkqARTgiI23wzZsyYULcTU9ywYQNVV1dTY2OjPGBdXR21trbS1KlT5eehoSGaNWsWdXd3y88HDhyQ+7ds2YKZopPuT1+pD1dymClipoiZolnS+5C/mClG7Lv9+/fT3r17adu2bdTf3y9niocPH6bBwUEqKiqi4uJi+eDNnj17qLy8nNatW0e1tbV0xx13wBQjMrZRzIekginCFGGKZtnsQ/7CFCP23cjICK1cuZIGBgakKW7atInq6+vlPcK5c+fSihUr5FLo2rVradq0aVRaWkotLS1y5vj5z3+ejh8/Lo3ziiuukOZ60UUXpT0ynj6N2CEZivmQVDBFmCJM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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>This will work for any distribution in principle, but in practice it is unfeasibly slow for complex distributions. That said, quite a few interesting distributions can be expressed, like this mixture of Gaussians:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[8]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">model2</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">p</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">bernoulli</span><span class=\"w\"> </span><span class=\"mf\">0.2</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"kr\">if</span><span class=\"w\"> </span><span class=\"n\">p</span><span class=\"w\"> </span><span class=\"kr\">then</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">10</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"> </span><span class=\"kr\">else</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">-</span><span class=\"mi\">5</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"mi\">5</span><span class=\"w\"></span>\n\n<span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">Control</span><span class=\"o\">.</span><span class=\"kt\">Monad</span><span class=\"o\">.</span><span class=\"kt\">Bayes</span><span class=\"o\">.</span><span class=\"kt\">Integrator</span><span class=\"o\">.</span><span class=\"n\">histogram</span><span class=\"w\"> </span><span class=\"mi\">250</span><span class=\"w\"> </span><span class=\"mf\">0.2</span><span class=\"w\"> </span><span class=\"n\">model2</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>Or this normal distribution restricted to the positive reals (i.e. $p(x) \\propto N(x;0,4)\\cdot I[x&gt;0]$)</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[9]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">model3</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadMeasure</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"w\"></span>\n<span class=\"nf\">model3</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n\n<span class=\"w\">    </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"mi\">4</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">condition</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"o\">&gt;</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"></span>\n\n<span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">Control</span><span class=\"o\">.</span><span class=\"kt\">Monad</span><span class=\"o\">.</span><span class=\"kt\">Bayes</span><span class=\"o\">.</span><span class=\"kt\">Integrator</span><span class=\"o\">.</span><span class=\"n\">histogram</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"> </span><span class=\"mf\">0.5</span><span class=\"w\"> </span><span class=\"n\">model3</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>Or this unusual distribution with $p(x) \\propto N(x;0,4)*e^{cos(x)}$:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[10]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">model4</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadMeasure</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"w\"></span>\n<span class=\"nf\">model4</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n\n<span class=\"w\">    </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"mi\">10</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">factor</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">Exp</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">cos</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"></span>\n\n<span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">Control</span><span class=\"o\">.</span><span class=\"kt\">Monad</span><span class=\"o\">.</span><span class=\"kt\">Bayes</span><span class=\"o\">.</span><span class=\"kt\">Integrator</span><span class=\"o\">.</span><span class=\"n\">histogram</span><span class=\"w\"> </span><span class=\"mi\">400</span><span class=\"w\"> </span><span class=\"mf\">0.1</span><span class=\"w\"> </span><span class=\"n\">model4</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>We can also plot CDFs, as in:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[11]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">plotCdf</span><span class=\"w\"> </span><span class=\"mi\">70</span><span class=\"w\"> </span><span class=\"mf\">0.1</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"> </span><span class=\"o\">+</span><span class=\"w\"> </span><span class=\"n\">gamma</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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fNXt6R/72MfSvtc0nR++RwG15XnCCScgBAoYVSDuOSo2lZ/RqOMMBVAABVAg1goAv1iHl8GhAAqgAApMpQDwY16gAAqgAArknALAL+dCzoBRAAVQAAWAH3MABVAABVAg5xQAfjkXcgaMAiiAAigA/JgDKBBBBdR7SN966y1RL1NWbztS7/ZULx1QL3j4sz/7swiOiFNGAbcKAD+3etMbChhRoKenR9SLrdXr5dRPZNXX13svGVDvk1W/9MCBAigwvQLAjxmCAhFVQP1si3o7TUtLi1xxxRXeS90VBDlQAAXSKwD80muEBQqEUgH1svff+73f895pW1VV5f1+mdoC5UABFEivAPBLrxEWKBBKBdQvVZx33nneVqf6hQf1O2Z5eXmhPFdOCgXCpgDwC1tEOB8U8KmAelu9+rHRpqYmWbp0qfz7v/+7fOMb3/DZGjMUyG0FgF9ux5/RR1SBjRs3yoIFC7wf7Pzud78rX/va17yfl9q6dav3+34cKIAC0ysA/JghKBAxBUZHR71rfGNjY95vQc6YMUPeeecdKS8vly996UuiftOMAwVQAPgxB1AABVAABVAgQQEqPyYECqAACqBAzikA/HIu5AwYBVAABVAA+DEHUAAFUAAFck4B4JdzIWfAKIACKIACwI85gAIogAIokHMK/H8eXyfYQ9db4QAAAABJRU5ErkJggg==\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Expressing-distributions-with-code\">Expressing distributions with code<a class=\"anchor-link\" href=\"#Expressing-distributions-with-code\">&#182;</a></h1><p>If you are familiar with Haskell, then it should be clear that the class of distributions you can express by writing probabilistic programs is very broad, since <code>m</code> is a monad. For example, you can use <code>fmap</code> to apply a function to the support of the distribution, like:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[22]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">mapped</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadMeasure</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"kt\">Bool</span><span class=\"w\"></span>\n<span class=\"nf\">mapped</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">&gt;</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">model</span><span class=\"w\"> </span><span class=\"mf\">0.5</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>And you can use the standard set of monadic and applicative combinators, like <code>when</code>, <code>filterM</code> or <code>replicateM</code>:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[23]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">lengthDist</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadMeasure</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"kt\">Int</span><span class=\"w\"></span>\n<span class=\"nf\">lengthDist</span><span class=\"w\"> </span><span class=\"n\">observation</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">means</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">3</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">model</span><span class=\"w\"> </span><span class=\"n\">observation</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">length</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">filter</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">&gt;=</span><span class=\"mi\">1</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">means</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>Given an observation, this is the probability on how many (out of 3) independent draws from the posterior of the model conditioned on the observation will be greater or equal to 1. Consider the hassle of defining this with an equation, and you'll see why probabilistic programming is appealing as a way of accelerating modelling and inference.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[24]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">enumerate</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">lengthDist</span><span class=\"w\"> </span><span class=\"mf\">0.5</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[(1,0.4228030765220977),(2,0.3090938161626379),(0,0.19278121201287118),(3,7.532189530239404e-2)]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[25]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">first</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">show</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">enumerate</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">lengthDist</span><span class=\"w\"> </span><span class=\"mf\">0.99</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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o6CHLymdcRiiDmeiYIgm9gAF2IQMl5NAD/t6vPrqq+/5sJi0vO1CCwWvIWqRXn8cOsT1s0tlJgU4FVrpH4se6WecSgQ6xFRoMTZtBDDEtKFdtjAFWIezbxT08CWlMw5D1OFMFI5MTewBCrAJGTgytSXDVfXgyNSoWElOiw5RR10MUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM85Ehzg7OysFBQWSm5u76l1fuHBBNm3aJDk5OZfH+Mxzgw8fPiz79+/XIUqUdRHAENeFLeVJFOCUkaV1AnqkFW/Ki2fUEKempqSpqUny8vJkfHxc2tvbpbm5edlNvPHGG3L27Fm5/fbb5fvf/7588IMfFJ95Vy6CIaa8L9QnYIg6yCnAOpx9o6CHLymdcRk1xK6uLpmZmZHOzk6ZnJyU8vJycV1fYWHh5bt/9tln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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[26]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">first</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">show</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">enumerator</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">lengthDist</span><span class=\"w\"> </span><span class=\"mf\">0.001</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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xzj/BMwCcbl197jT3Q3m5+endDbunalX3kVyh5gSPpPB2gueQDTRIfiw4aytovWhnY9x/gmYB6L/U1g5I49M00147fm1FzyBaOMIHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLR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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>Exact sampling is pretty limited. For models with continuous random variables, or large discrete ones, it is a no-go.</p>\n<p>The broader goal is to be able to define your distribution of interest, like <code>model</code>, and then apply different inference technique, usually approximate, to it. This is what monad-bayes (and other probabilistic programming languages) enable. See the following tutorials for details.</p>\n\n</div>\n</div>\n</div>\n</div>\n</body>\n\n\n\n\n\n\n\n</html>\n"
  },
  {
    "path": "docs/docs/notebooks/Ising.html",
    "content": "<!DOCTYPE html>\n<html>\n<head><meta charset=\"utf-8\" />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n<title>Ising</title><script src=\"https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js\"></script>\n\n\n\n\n<style type=\"text/css\">\n    pre { line-height: 125%; }\ntd.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\nspan.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\ntd.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\nspan.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.highlight .hll { background-color: var(--jp-cell-editor-active-background) }\n.highlight { background: var(--jp-cell-editor-background); color: var(--jp-mirror-editor-variable-color) }\n.highlight .c { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment */\n.highlight .err { color: var(--jp-mirror-editor-error-color) } /* Error */\n.highlight .k { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword */\n.highlight .o { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator */\n.highlight .p { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation */\n.highlight .ch { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Hashbang */\n.highlight .cm { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Multiline */\n.highlight .cp { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Preproc */\n.highlight .cpf { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.PreprocFile */\n.highlight .c1 { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Single */\n.highlight .cs { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Special */\n.highlight .kc { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Constant */\n.highlight .kd { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Declaration */\n.highlight .kn { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Namespace */\n.highlight .kp { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Pseudo */\n.highlight .kr { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Reserved */\n.highlight .kt { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Type */\n.highlight .m { color: var(--jp-mirror-editor-number-color) } /* Literal.Number */\n.highlight .s { color: var(--jp-mirror-editor-string-color) } /* Literal.String */\n.highlight .ow { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator.Word */\n.highlight .pm { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation.Marker */\n.highlight .w { color: var(--jp-mirror-editor-variable-color) } /* Text.Whitespace */\n.highlight .mb { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Bin */\n.highlight .mf { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Float */\n.highlight .mh { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Hex */\n.highlight .mi { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer */\n.highlight .mo { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Oct */\n.highlight .sa { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Affix */\n.highlight .sb { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Backtick */\n.highlight .sc { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Char */\n.highlight .dl { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Delimiter */\n.highlight .sd { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Doc */\n.highlight .s2 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Double */\n.highlight .se { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Escape */\n.highlight .sh { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Heredoc */\n.highlight .si { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Interpol */\n.highlight .sx { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Other */\n.highlight .sr { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Regex */\n.highlight .s1 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Single */\n.highlight .ss { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Symbol */\n.highlight .il { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer.Long */\n  </style>\n\n\n\n<style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\n * Mozilla scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n[data-jp-theme-scrollbars='true'] {\n  scrollbar-color: rgb(var(--jp-scrollbar-thumb-color))\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar. These selectors\n * will match lower in the tree, and so will override the above */\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n  scrollbar-width: thin;\n}\n\n/*\n * Webkit scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-corner {\n  background: var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-thumb {\n  background: rgb(var(--jp-scrollbar-thumb-color));\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-right: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-bottom: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar */\n\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-corner,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-corner {\n  background-color: transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-thumb,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid transparent;\n  border-right: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid transparent;\n  border-bottom: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny::-webkit-scrollbar,\n.jp-scrollbar-tiny::-webkit-scrollbar-corner {\n  background-color: transparent;\n  height: 4px;\n  width: 4px;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:horizontal {\n  border-left: 0px solid transparent;\n  border-right: 0px solid transparent;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:vertical {\n  border-top: 0px solid transparent;\n  border-bottom: 0px solid transparent;\n}\n\n/*\n * Phosphor\n */\n\n.lm-ScrollBar[data-orientation='horizontal'] {\n  min-height: 16px;\n  max-height: 16px;\n  min-width: 45px;\n  border-top: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] {\n  min-width: 16px;\n  max-width: 16px;\n  min-height: 45px;\n  border-left: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar-button {\n  background-color: #f0f0f0;\n  background-position: center center;\n  min-height: 15px;\n  max-height: 15px;\n  min-width: 15px;\n  max-width: 15px;\n}\n\n.lm-ScrollBar-button:hover {\n  background-color: #dadada;\n}\n\n.lm-ScrollBar-button.lm-mod-active {\n  background-color: #cdcdcd;\n}\n\n.lm-ScrollBar-track {\n  background: #f0f0f0;\n}\n\n.lm-ScrollBar-thumb {\n  background: #cdcdcd;\n}\n\n.lm-ScrollBar-thumb:hover {\n  background: #bababa;\n}\n\n.lm-ScrollBar-thumb.lm-mod-active {\n  background: #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal'] .lm-ScrollBar-thumb {\n  height: 100%;\n  min-width: 15px;\n  border-left: 1px solid #a0a0a0;\n  border-right: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] .lm-ScrollBar-thumb {\n  width: 100%;\n  min-height: 15px;\n  border-top: 1px solid #a0a0a0;\n  border-bottom: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-left);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-right);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-up);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-down);\n  background-size: 17px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Widget, /* </DEPRECATED> */\n.lm-Widget {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  cursor: default;\n}\n\n\n/* <DEPRECATED> */ .p-Widget.p-mod-hidden, /* </DEPRECATED> */\n.lm-Widget.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-CommandPalette, /* </DEPRECATED> */\n.lm-CommandPalette {\n  display: flex;\n  flex-direction: column;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-search, /* </DEPRECATED> */\n.lm-CommandPalette-search {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-content, /* </DEPRECATED> */\n.lm-CommandPalette-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  min-height: 0;\n  overflow: auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-header, /* </DEPRECATED> */\n.lm-CommandPalette-header {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-item, /* </DEPRECATED> */\n.lm-CommandPalette-item {\n  display: flex;\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemIcon, /* </DEPRECATED> */\n.lm-CommandPalette-itemIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemContent, /* </DEPRECATED> */\n.lm-CommandPalette-itemContent {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemShortcut, /* </DEPRECATED> */\n.lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemLabel, /* </DEPRECATED> */\n.lm-CommandPalette-itemLabel {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.lm-close-icon {\n\tborder:1px solid transparent;\n  background-color: transparent;\n  position: absolute;\n\tz-index:1;\n\tright:3%;\n\ttop: 0;\n\tbottom: 0;\n\tmargin: auto;\n\tpadding: 7px 0;\n\tdisplay: none;\n\tvertical-align: middle;\n  outline: 0;\n  cursor: pointer;\n}\n.lm-close-icon:after {\n\tcontent: \"X\";\n\tdisplay: block;\n\twidth: 15px;\n\theight: 15px;\n\ttext-align: center;\n\tcolor:#000;\n\tfont-weight: normal;\n\tfont-size: 12px;\n\tcursor: pointer;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-DockPanel, /* </DEPRECATED> */\n.lm-DockPanel {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-widget, /* </DEPRECATED> */\n.lm-DockPanel-widget {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-tabBar, /* </DEPRECATED> */\n.lm-DockPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle, /* </DEPRECATED> */\n.lm-DockPanel-handle {\n  z-index: 2;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle:after, /* </DEPRECATED> */\n.lm-DockPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal'] {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical'] {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal']:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical']:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay, /* </DEPRECATED> */\n.lm-DockPanel-overlay {\n  z-index: 3;\n  box-sizing: border-box;\n  pointer-events: none;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-overlay.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Menu, /* </DEPRECATED> */\n.lm-Menu {\n  z-index: 10000;\n  position: absolute;\n  white-space: nowrap;\n  overflow-x: hidden;\n  overflow-y: auto;\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-content, /* </DEPRECATED> */\n.lm-Menu-content {\n  margin: 0;\n  padding: 0;\n  display: table;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-item, /* </DEPRECATED> */\n.lm-Menu-item {\n  display: table-row;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-item.p-mod-hidden,\n.p-Menu-item.p-mod-collapsed,\n/* </DEPRECATED> */\n.lm-Menu-item.lm-mod-hidden,\n.lm-Menu-item.lm-mod-collapsed {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-itemIcon,\n.p-Menu-itemSubmenuIcon,\n/* </DEPRECATED> */\n.lm-Menu-itemIcon,\n.lm-Menu-itemSubmenuIcon {\n  display: table-cell;\n  text-align: center;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemLabel, /* </DEPRECATED> */\n.lm-Menu-itemLabel {\n  display: table-cell;\n  text-align: left;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemShortcut, /* </DEPRECATED> */\n.lm-Menu-itemShortcut {\n  display: table-cell;\n  text-align: right;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-MenuBar, /* </DEPRECATED> */\n.lm-MenuBar {\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-MenuBar-content, /* </DEPRECATED> */\n.lm-MenuBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex-direction: row;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p--MenuBar-item, /* </DEPRECATED> */\n.lm-MenuBar-item {\n  box-sizing: border-box;\n}\n\n\n/* <DEPRECATED> */\n.p-MenuBar-itemIcon,\n.p-MenuBar-itemLabel,\n/* </DEPRECATED> */\n.lm-MenuBar-itemIcon,\n.lm-MenuBar-itemLabel {\n  display: inline-block;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-ScrollBar, /* </DEPRECATED> */\n.lm-ScrollBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='horizontal'] {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='vertical'] {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-button, /* </DEPRECATED> */\n.lm-ScrollBar-button {\n  box-sizing: border-box;\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-track, /* </DEPRECATED> */\n.lm-ScrollBar-track {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  flex: 1 1 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-thumb, /* </DEPRECATED> */\n.lm-ScrollBar-thumb {\n  box-sizing: border-box;\n  position: absolute;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-SplitPanel-child, /* </DEPRECATED> */\n.lm-SplitPanel-child {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle, /* </DEPRECATED> */\n.lm-SplitPanel-handle {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-SplitPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle:after, /* </DEPRECATED> */\n.lm-SplitPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabBar, /* </DEPRECATED> */\n.lm-TabBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='horizontal'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] {\n  flex-direction: row;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='vertical'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] {\n  flex-direction: column;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-content, /* </DEPRECATED> */\n.lm-TabBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex: 1 1 auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='horizontal'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] > .lm-TabBar-content {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='vertical'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] > .lm-TabBar-content {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar-tab {\n  display: flex;\n  flex-direction: row;\n  box-sizing: border-box;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar-tabIcon,\n.p-TabBar-tabCloseIcon,\n/* </DEPRECATED> */\n.lm-TabBar-tabIcon,\n.lm-TabBar-tabCloseIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tabLabel, /* </DEPRECATED> */\n.lm-TabBar-tabLabel {\n  flex: 1 1 auto;\n  overflow: hidden;\n  white-space: nowrap;\n}\n\n\n.lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab.p-mod-hidden, /* </DEPRECATED> */\n.lm-TabBar-tab.lm-mod-hidden {\n  display: none !important;\n}\n\n\n.lm-TabBar-addButton.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar.p-mod-dragging .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab {\n  position: relative;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='horizontal'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='horizontal'] .lm-TabBar-tab {\n  left: 0;\n  transition: left 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='vertical'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='vertical'] .lm-TabBar-tab {\n  top: 0;\n  transition: top 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging .p-TabBar-tab.p-mod-dragging,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab.lm-mod-dragging {\n  transition: none;\n}\n\n.lm-TabBar-tabLabel .lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n  background: inherit;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabPanel-tabBar, /* </DEPRECATED> */\n.lm-TabPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-TabPanel-stackedPanel, /* </DEPRECATED> */\n.lm-TabPanel-stackedPanel {\n  z-index: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n@charset \"UTF-8\";\nhtml{\n  -webkit-box-sizing:border-box;\n          box-sizing:border-box; }\n\n*,\n*::before,\n*::after{\n  -webkit-box-sizing:inherit;\n          box-sizing:inherit; }\n\nbody{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none;\n  color:#182026;\n  font-family:-apple-system, \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Open Sans\", \"Helvetica Neue\", \"Icons16\", sans-serif; }\n\np{\n  margin-bottom:10px;\n  margin-top:0; }\n\nsmall{\n  font-size:12px; }\n\nstrong{\n  font-weight:600; }\n\n::-moz-selection{\n  background:rgba(125, 188, 255, 0.6); }\n\n::selection{\n  background:rgba(125, 188, 255, 0.6); }\n.bp3-heading{\n  color:#182026;\n  font-weight:600;\n  margin:0 0 10px;\n  padding:0; }\n  .bp3-dark .bp3-heading{\n    color:#f5f8fa; }\n\nh1.bp3-heading, .bp3-running-text h1{\n  font-size:36px;\n  line-height:40px; }\n\nh2.bp3-heading, .bp3-running-text h2{\n  font-size:28px;\n  line-height:32px; }\n\nh3.bp3-heading, .bp3-running-text h3{\n  font-size:22px;\n  line-height:25px; }\n\nh4.bp3-heading, .bp3-running-text h4{\n  font-size:18px;\n  line-height:21px; }\n\nh5.bp3-heading, .bp3-running-text h5{\n  font-size:16px;\n  line-height:19px; }\n\nh6.bp3-heading, .bp3-running-text h6{\n  font-size:14px;\n  line-height:16px; }\n.bp3-ui-text{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none; }\n\n.bp3-monospace-text{\n  font-family:monospace;\n  text-transform:none; }\n\n.bp3-text-muted{\n  color:#5c7080; }\n  .bp3-dark .bp3-text-muted{\n    color:#a7b6c2; }\n\n.bp3-text-disabled{\n  color:rgba(92, 112, 128, 0.6); }\n  .bp3-dark .bp3-text-disabled{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-text-overflow-ellipsis{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal; }\n.bp3-running-text{\n  font-size:14px;\n  line-height:1.5; }\n  .bp3-running-text h1{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h1{\n      color:#f5f8fa; }\n  .bp3-running-text h2{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h2{\n      color:#f5f8fa; }\n  .bp3-running-text h3{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h3{\n      color:#f5f8fa; }\n  .bp3-running-text h4{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h4{\n      color:#f5f8fa; }\n  .bp3-running-text h5{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h5{\n      color:#f5f8fa; }\n  .bp3-running-text h6{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h6{\n      color:#f5f8fa; }\n  .bp3-running-text hr{\n    border:none;\n    border-bottom:1px solid rgba(16, 22, 26, 0.15);\n    margin:20px 0; }\n    .bp3-dark .bp3-running-text hr{\n      border-color:rgba(255, 255, 255, 0.15); }\n  .bp3-running-text p{\n    margin:0 0 10px;\n    padding:0; }\n\n.bp3-text-large{\n  font-size:16px; }\n\n.bp3-text-small{\n  font-size:12px; }\na{\n  color:#106ba3;\n  text-decoration:none; }\n  a:hover{\n    color:#106ba3;\n    cursor:pointer;\n    text-decoration:underline; }\n  a .bp3-icon, a .bp3-icon-standard, a .bp3-icon-large{\n    color:inherit; }\n  a code,\n  .bp3-dark a code{\n    color:inherit; }\n  .bp3-dark a,\n  .bp3-dark a:hover{\n    color:#48aff0; }\n    .bp3-dark a .bp3-icon, .bp3-dark a .bp3-icon-standard, .bp3-dark a .bp3-icon-large,\n    .bp3-dark a:hover .bp3-icon,\n    .bp3-dark a:hover .bp3-icon-standard,\n    .bp3-dark a:hover .bp3-icon-large{\n      color:inherit; }\n.bp3-running-text code, .bp3-code{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  font-size:smaller;\n  padding:2px 5px; }\n  .bp3-dark .bp3-running-text code, .bp3-running-text .bp3-dark code, .bp3-dark .bp3-code{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n  .bp3-running-text a > code, a > .bp3-code{\n    color:#137cbd; }\n    .bp3-dark .bp3-running-text a > code, .bp3-running-text .bp3-dark a > code, .bp3-dark a > .bp3-code{\n      color:inherit; }\n\n.bp3-running-text pre, .bp3-code-block{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n  color:#182026;\n  display:block;\n  font-size:13px;\n  line-height:1.4;\n  margin:10px 0;\n  padding:13px 15px 12px;\n  word-break:break-all;\n  word-wrap:break-word; }\n  .bp3-dark .bp3-running-text pre, .bp3-running-text .bp3-dark pre, .bp3-dark .bp3-code-block{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n  .bp3-running-text pre > code, .bp3-code-block > code{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit;\n    font-size:inherit;\n    padding:0; }\n\n.bp3-running-text kbd, .bp3-key{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-family:inherit;\n  font-size:12px;\n  height:24px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  line-height:24px;\n  min-width:24px;\n  padding:3px 6px;\n  vertical-align:middle; }\n  .bp3-running-text kbd .bp3-icon, .bp3-key .bp3-icon, .bp3-running-text kbd .bp3-icon-standard, .bp3-key .bp3-icon-standard, .bp3-running-text kbd .bp3-icon-large, .bp3-key .bp3-icon-large{\n    margin-right:5px; }\n  .bp3-dark .bp3-running-text kbd, .bp3-running-text .bp3-dark kbd, .bp3-dark .bp3-key{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n.bp3-running-text blockquote, .bp3-blockquote{\n  border-left:solid 4px rgba(167, 182, 194, 0.5);\n  margin:0 0 10px;\n  padding:0 20px; }\n  .bp3-dark .bp3-running-text blockquote, .bp3-running-text .bp3-dark blockquote, .bp3-dark .bp3-blockquote{\n    border-color:rgba(115, 134, 148, 0.5); }\n.bp3-running-text ul,\n.bp3-running-text ol, .bp3-list{\n  margin:10px 0;\n  padding-left:30px; }\n  .bp3-running-text ul li:not(:last-child), .bp3-running-text ol li:not(:last-child), .bp3-list li:not(:last-child){\n    margin-bottom:5px; }\n  .bp3-running-text ul ol, .bp3-running-text ol ol, .bp3-list ol,\n  .bp3-running-text ul ul,\n  .bp3-running-text ol ul,\n  .bp3-list ul{\n    margin-top:5px; }\n\n.bp3-list-unstyled{\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-list-unstyled li{\n    padding:0; }\n.bp3-rtl{\n  text-align:right; }\n\n.bp3-dark{\n  color:#f5f8fa; }\n\n:focus{\n  outline:rgba(19, 124, 189, 0.6) auto 2px;\n  outline-offset:2px;\n  -moz-outline-radius:6px; }\n\n.bp3-focus-disabled :focus{\n  outline:none !important; }\n  .bp3-focus-disabled :focus ~ .bp3-control-indicator{\n    outline:none !important; }\n\n.bp3-alert{\n  max-width:400px;\n  padding:20px; }\n\n.bp3-alert-body{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-alert-body .bp3-icon{\n    font-size:40px;\n    margin-right:20px;\n    margin-top:0; }\n\n.bp3-alert-contents{\n  word-break:break-word; }\n\n.bp3-alert-footer{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:reverse;\n      -ms-flex-direction:row-reverse;\n          flex-direction:row-reverse;\n  margin-top:10px; }\n  .bp3-alert-footer .bp3-button{\n    margin-left:10px; }\n.bp3-breadcrumbs{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  cursor:default;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:wrap;\n      flex-wrap:wrap;\n  height:30px;\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-breadcrumbs > li{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n    .bp3-breadcrumbs > li::after{\n      background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z' fill='%235C7080'/%3e%3c/svg%3e\");\n      content:\"\";\n      display:block;\n      height:16px;\n      margin:0 5px;\n      width:16px; }\n    .bp3-breadcrumbs > li:last-of-type::after{\n      display:none; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumb-current,\n.bp3-breadcrumbs-collapsed{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-size:16px; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumbs-collapsed{\n  color:#5c7080; }\n\n.bp3-breadcrumb:hover{\n  text-decoration:none; }\n\n.bp3-breadcrumb.bp3-disabled{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-breadcrumb .bp3-icon{\n  margin-right:5px; }\n\n.bp3-breadcrumb-current{\n  color:inherit;\n  font-weight:600; }\n  .bp3-breadcrumb-current .bp3-input{\n    font-size:inherit;\n    font-weight:inherit;\n    vertical-align:baseline; }\n\n.bp3-breadcrumbs-collapsed{\n  background:#ced9e0;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  margin-right:2px;\n  padding:1px 5px;\n  vertical-align:text-bottom; }\n  .bp3-breadcrumbs-collapsed::before{\n    background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cg fill='%235C7080'%3e%3ccircle cx='2' cy='8.03' r='2'/%3e%3ccircle cx='14' cy='8.03' r='2'/%3e%3ccircle cx='8' cy='8.03' r='2'/%3e%3c/g%3e%3c/svg%3e\") center no-repeat;\n    content:\"\";\n    display:block;\n    height:16px;\n    width:16px; }\n  .bp3-breadcrumbs-collapsed:hover{\n    background:#bfccd6;\n    color:#182026;\n    text-decoration:none; }\n\n.bp3-dark .bp3-breadcrumb,\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumbs > li::after{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumb.bp3-disabled{\n  color:rgba(167, 182, 194, 0.6); }\n\n.bp3-dark .bp3-breadcrumb-current{\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-breadcrumbs-collapsed:hover{\n    background:rgba(16, 22, 26, 0.6);\n    color:#f5f8fa; }\n.bp3-button{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  min-height:30px;\n  min-width:30px; }\n  .bp3-button > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-button > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-button::before,\n  .bp3-button > *{\n    margin-right:7px; }\n  .bp3-button:empty::before,\n  .bp3-button > :last-child{\n    margin-right:0; }\n  .bp3-button:empty{\n    padding:0 !important; }\n  .bp3-button:disabled, .bp3-button.bp3-disabled{\n    cursor:not-allowed; }\n  .bp3-button.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button.bp3-align-right,\n  .bp3-align-right .bp3-button{\n    text-align:right; }\n  .bp3-button.bp3-align-left,\n  .bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026; }\n    .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active:hover, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-button.bp3-intent-primary{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover, .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover{\n      background-color:#106ba3;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      background-color:#0e5a8a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:disabled, .bp3-button.bp3-intent-primary.bp3-disabled{\n      background-color:rgba(19, 124, 189, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-success{\n    background-color:#0f9960;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover, .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover{\n      background-color:#0d8050;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      background-color:#0a6640;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:disabled, .bp3-button.bp3-intent-success.bp3-disabled{\n      background-color:rgba(15, 153, 96, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-warning{\n    background-color:#d9822b;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover, .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover{\n      background-color:#bf7326;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      background-color:#a66321;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:disabled, .bp3-button.bp3-intent-warning.bp3-disabled{\n      background-color:rgba(217, 130, 43, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-danger{\n    background-color:#db3737;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover, .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover{\n      background-color:#c23030;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      background-color:#a82a2a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:disabled, .bp3-button.bp3-intent-danger.bp3-disabled{\n      background-color:rgba(219, 55, 55, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n    stroke:#ffffff; }\n  .bp3-button.bp3-large,\n  .bp3-large .bp3-button{\n    min-height:40px;\n    min-width:40px;\n    font-size:16px;\n    padding:5px 15px; }\n    .bp3-button.bp3-large::before,\n    .bp3-button.bp3-large > *,\n    .bp3-large .bp3-button::before,\n    .bp3-large .bp3-button > *{\n      margin-right:10px; }\n    .bp3-button.bp3-large:empty::before,\n    .bp3-button.bp3-large > :last-child,\n    .bp3-large .bp3-button:empty::before,\n    .bp3-large .bp3-button > :last-child{\n      margin-right:0; }\n  .bp3-button.bp3-small,\n  .bp3-small .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-button.bp3-loading{\n    position:relative; }\n    .bp3-button.bp3-loading[class*=\"bp3-icon-\"]::before{\n      visibility:hidden; }\n    .bp3-button.bp3-loading .bp3-button-spinner{\n      margin:0;\n      position:absolute; }\n    .bp3-button.bp3-loading > :not(.bp3-button-spinner){\n      visibility:hidden; }\n  .bp3-button[class*=\"bp3-icon-\"]::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    color:#5c7080; }\n  .bp3-button .bp3-icon, .bp3-button .bp3-icon-standard, .bp3-button .bp3-icon-large{\n    color:#5c7080; }\n    .bp3-button .bp3-icon.bp3-align-right, .bp3-button .bp3-icon-standard.bp3-align-right, .bp3-button .bp3-icon-large.bp3-align-right{\n      margin-left:7px; }\n  .bp3-button .bp3-icon:first-child:last-child,\n  .bp3-button .bp3-spinner + .bp3-icon:last-child{\n    margin:0 -7px; }\n  .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"])[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n      color:#a7b6c2; }\n  .bp3-dark .bp3-button[class*=\"bp3-intent-\"]{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:hover{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.3); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n      stroke:#8a9ba8; }\n  .bp3-button:disabled::before,\n  .bp3-button:disabled .bp3-icon, .bp3-button:disabled .bp3-icon-standard, .bp3-button:disabled .bp3-icon-large, .bp3-button.bp3-disabled::before,\n  .bp3-button.bp3-disabled .bp3-icon, .bp3-button.bp3-disabled .bp3-icon-standard, .bp3-button.bp3-disabled .bp3-icon-large, .bp3-button[class*=\"bp3-intent-\"]::before,\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-icon, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-standard, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-large{\n    color:inherit !important; }\n  .bp3-button.bp3-minimal{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button.bp3-minimal:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-minimal:active, .bp3-button.bp3-minimal.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-minimal:disabled, .bp3-button.bp3-minimal:disabled:hover, .bp3-button.bp3-minimal.bp3-disabled, .bp3-button.bp3-minimal.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-minimal{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-minimal:hover, .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-minimal:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-minimal:disabled, .bp3-dark .bp3-button.bp3-minimal:disabled:hover, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover, .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover, .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover, .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover, .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button.bp3-outlined{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    border:1px solid rgba(24, 32, 38, 0.2);\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box; }\n    .bp3-button.bp3-outlined:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-outlined:active, .bp3-button.bp3-outlined.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-outlined:hover, .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-outlined:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover, .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover, .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover, .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover, .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      border-color:rgba(92, 112, 128, 0.1); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      border-color:rgba(255, 255, 255, 0.4); }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        border-color:rgba(255, 255, 255, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      border-color:rgba(16, 107, 163, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        border-color:rgba(16, 107, 163, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        border-color:rgba(72, 175, 240, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          border-color:rgba(72, 175, 240, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      border-color:rgba(13, 128, 80, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        border-color:rgba(13, 128, 80, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        border-color:rgba(61, 204, 145, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          border-color:rgba(61, 204, 145, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      border-color:rgba(191, 115, 38, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        border-color:rgba(191, 115, 38, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        border-color:rgba(255, 179, 102, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          border-color:rgba(255, 179, 102, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      border-color:rgba(194, 48, 48, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        border-color:rgba(194, 48, 48, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        border-color:rgba(255, 115, 115, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          border-color:rgba(255, 115, 115, 0.2); }\n\na.bp3-button{\n  text-align:center;\n  text-decoration:none;\n  -webkit-transition:none;\n  transition:none; }\n  a.bp3-button, a.bp3-button:hover, a.bp3-button:active{\n    color:#182026; }\n  a.bp3-button.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6); }\n\n.bp3-button-text{\n  -webkit-box-flex:0;\n      -ms-flex:0 1 auto;\n          flex:0 1 auto; }\n\n.bp3-button.bp3-align-left .bp3-button-text, .bp3-button.bp3-align-right .bp3-button-text,\n.bp3-button-group.bp3-align-left .bp3-button-text,\n.bp3-button-group.bp3-align-right .bp3-button-text{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto; }\n.bp3-button-group{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex; }\n  .bp3-button-group .bp3-button{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    position:relative;\n    z-index:4; }\n    .bp3-button-group .bp3-button:focus{\n      z-index:5; }\n    .bp3-button-group .bp3-button:hover{\n      z-index:6; }\n    .bp3-button-group .bp3-button:active, .bp3-button-group .bp3-button.bp3-active{\n      z-index:7; }\n    .bp3-button-group .bp3-button:disabled, .bp3-button-group .bp3-button.bp3-disabled{\n      z-index:3; }\n    .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]{\n      z-index:9; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:focus{\n        z-index:10; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:hover{\n        z-index:11; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n        z-index:12; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n        z-index:8; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:first-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:first-child){\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    border-bottom-right-radius:0;\n    border-top-right-radius:0;\n    margin-right:-1px; }\n  .bp3-button-group.bp3-minimal .bp3-button{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button-group.bp3-minimal .bp3-button{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button-group .bp3-popover-wrapper,\n  .bp3-button-group .bp3-popover-target{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button-group .bp3-button.bp3-fill,\n  .bp3-button-group.bp3-fill .bp3-button:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-vertical{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column;\n    vertical-align:top; }\n    .bp3-button-group.bp3-vertical.bp3-fill{\n      height:100%;\n      width:unset; }\n    .bp3-button-group.bp3-vertical .bp3-button{\n      margin-right:0 !important;\n      width:100%; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:first-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:first-child{\n      border-radius:3px 3px 0 0; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:last-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:last-child{\n      border-radius:0 0 3px 3px; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:not(:last-child){\n      margin-bottom:-1px; }\n  .bp3-button-group.bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    margin-right:1px; }\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-button:not(:last-child){\n    margin-bottom:1px; }\n.bp3-callout{\n  font-size:14px;\n  line-height:1.5;\n  background-color:rgba(138, 155, 168, 0.15);\n  border-radius:3px;\n  padding:10px 12px 9px;\n  position:relative;\n  width:100%; }\n  .bp3-callout[class*=\"bp3-icon-\"]{\n    padding-left:40px; }\n    .bp3-callout[class*=\"bp3-icon-\"]::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout.bp3-callout-icon{\n    padding-left:40px; }\n    .bp3-callout.bp3-callout-icon > .bp3-icon:first-child{\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout .bp3-heading{\n    line-height:20px;\n    margin-bottom:5px;\n    margin-top:0; }\n    .bp3-callout .bp3-heading:last-child{\n      margin-bottom:0; }\n  .bp3-dark .bp3-callout{\n    background-color:rgba(138, 155, 168, 0.2); }\n    .bp3-dark .bp3-callout[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n  .bp3-callout.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15); }\n    .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-primary .bp3-heading{\n      color:#106ba3; }\n    .bp3-dark .bp3-callout.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-primary .bp3-heading{\n        color:#48aff0; }\n  .bp3-callout.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15); }\n    .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-success .bp3-heading{\n      color:#0d8050; }\n    .bp3-dark .bp3-callout.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-success .bp3-heading{\n        color:#3dcc91; }\n  .bp3-callout.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15); }\n    .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-warning .bp3-heading{\n      color:#bf7326; }\n    .bp3-dark .bp3-callout.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-warning .bp3-heading{\n        color:#ffb366; }\n  .bp3-callout.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15); }\n    .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-danger .bp3-heading{\n      color:#c23030; }\n    .bp3-dark .bp3-callout.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-danger .bp3-heading{\n        color:#ff7373; }\n  .bp3-running-text .bp3-callout{\n    margin:20px 0; }\n.bp3-card{\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n  padding:20px;\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-card.bp3-dark,\n  .bp3-dark .bp3-card{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-0{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n  .bp3-elevation-0.bp3-dark,\n  .bp3-dark .bp3-elevation-0{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-1{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-1.bp3-dark,\n  .bp3-dark .bp3-elevation-1{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-2{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-2.bp3-dark,\n  .bp3-dark .bp3-elevation-2{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-3{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-3.bp3-dark,\n  .bp3-dark .bp3-elevation-3{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-4{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-4.bp3-dark,\n  .bp3-dark .bp3-elevation-4{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:hover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  cursor:pointer; }\n  .bp3-card.bp3-interactive:hover.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:hover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:active{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  opacity:0.9;\n  -webkit-transition-duration:0;\n          transition-duration:0; }\n  .bp3-card.bp3-interactive:active.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:active{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-collapse{\n  height:0;\n  overflow-y:hidden;\n  -webkit-transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-collapse .bp3-collapse-body{\n    -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-collapse .bp3-collapse-body[aria-hidden=\"true\"]{\n      display:none; }\n\n.bp3-context-menu .bp3-popover-target{\n  display:block; }\n\n.bp3-context-menu-popover-target{\n  position:fixed; }\n\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-dialog-container{\n  opacity:1;\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  min-height:100%;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  width:100%; }\n  .bp3-dialog-container.bp3-overlay-enter > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5); }\n  .bp3-dialog-container.bp3-overlay-enter-active > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear-active > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-dialog-container.bp3-overlay-exit > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-dialog-container.bp3-overlay-exit-active > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n\n.bp3-dialog{\n  background:#ebf1f5;\n  border-radius:6px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:30px 0;\n  padding-bottom:20px;\n  pointer-events:all;\n  -webkit-user-select:text;\n     -moz-user-select:text;\n      -ms-user-select:text;\n          user-select:text;\n  width:500px; }\n  .bp3-dialog:focus{\n    outline:0; }\n  .bp3-dialog.bp3-dark,\n  .bp3-dark .bp3-dialog{\n    background:#293742;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-dialog-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:6px 6px 0 0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding-left:20px;\n  padding-right:5px;\n  z-index:30; }\n  .bp3-dialog-header .bp3-icon-large,\n  .bp3-dialog-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-dialog-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-dialog-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-dialog-header{\n    background:#30404d;\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-dialog-header .bp3-icon-large,\n    .bp3-dark .bp3-dialog-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-dialog-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  margin:20px; }\n\n.bp3-dialog-footer{\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  margin:0 20px; }\n\n.bp3-dialog-footer-actions{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:end;\n      -ms-flex-pack:end;\n          justify-content:flex-end; }\n  .bp3-dialog-footer-actions .bp3-button{\n    margin-left:10px; }\n.bp3-multistep-dialog-panels{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n\n.bp3-multistep-dialog-left-panel{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column; }\n  .bp3-dark .bp3-multistep-dialog-left-panel{\n    background:#202b33; }\n\n.bp3-multistep-dialog-right-panel{\n  background-color:#f5f8fa;\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  border-radius:0 0 6px 0;\n  -webkit-box-flex:3;\n      -ms-flex:3;\n          flex:3;\n  min-width:0; }\n  .bp3-dark .bp3-multistep-dialog-right-panel{\n    background-color:#293742;\n    border-left:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-multistep-dialog-footer{\n  background-color:#ffffff;\n  border-radius:0 0 6px 0;\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  padding:10px; }\n  .bp3-dark .bp3-multistep-dialog-footer{\n    background:#30404d;\n    border-top:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-dialog-step-container{\n  background-color:#f5f8fa;\n  border-bottom:1px solid rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-dialog-step-container{\n    background:#293742;\n    border-bottom:1px solid rgba(16, 22, 26, 0.4); }\n  .bp3-dialog-step-container.bp3-dialog-step-viewed{\n    background-color:#ffffff; }\n    .bp3-dark .bp3-dialog-step-container.bp3-dialog-step-viewed{\n      background:#30404d; }\n\n.bp3-dialog-step{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#f5f8fa;\n  border-radius:6px;\n  cursor:not-allowed;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:4px;\n  padding:6px 14px; }\n  .bp3-dark .bp3-dialog-step{\n    background:#293742; }\n  .bp3-dialog-step-viewed .bp3-dialog-step{\n    background-color:#ffffff;\n    cursor:pointer; }\n    .bp3-dark .bp3-dialog-step-viewed .bp3-dialog-step{\n      background:#30404d; }\n  .bp3-dialog-step:hover{\n    background-color:#f5f8fa; }\n    .bp3-dark .bp3-dialog-step:hover{\n      background:#293742; }\n\n.bp3-dialog-step-icon{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:rgba(92, 112, 128, 0.6);\n  border-radius:50%;\n  color:#ffffff;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:25px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  width:25px; }\n  .bp3-dark .bp3-dialog-step-icon{\n    background-color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#2b95d6; }\n  .bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#8a9ba8; }\n\n.bp3-dialog-step-title{\n  color:rgba(92, 112, 128, 0.6);\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  padding-left:10px; }\n  .bp3-dark .bp3-dialog-step-title{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-title{\n    color:#2b95d6; }\n  .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n    color:#182026; }\n    .bp3-dark .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n      color:#f5f8fa; }\n.bp3-drawer{\n  background:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0;\n  padding:0; }\n  .bp3-drawer:focus{\n    outline:0; }\n  .bp3-drawer.bp3-position-top{\n    height:50%;\n    left:0;\n    right:0;\n    top:0; }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter, .bp3-drawer.bp3-position-top.bp3-overlay-appear{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter-active, .bp3-drawer.bp3-position-top.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit-active{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-bottom{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter-active, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-left{\n    bottom:0;\n    left:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter, .bp3-drawer.bp3-position-left.bp3-overlay-appear{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter-active, .bp3-drawer.bp3-position-left.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit-active{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-right{\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter, .bp3-drawer.bp3-position-right.bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter-active, .bp3-drawer.bp3-position-right.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right):not(.bp3-vertical){\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right).bp3-vertical{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-dark,\n  .bp3-dark .bp3-drawer{\n    background:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-drawer-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border-radius:0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding:5px;\n  padding-left:20px;\n  position:relative; }\n  .bp3-drawer-header .bp3-icon-large,\n  .bp3-drawer-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-drawer-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-drawer-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-drawer-header{\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-drawer-header .bp3-icon-large,\n    .bp3-dark .bp3-drawer-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-drawer-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  overflow:auto; }\n\n.bp3-drawer-footer{\n  -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  padding:10px 20px;\n  position:relative; }\n  .bp3-dark .bp3-drawer-footer{\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4); }\n.bp3-editable-text{\n  cursor:text;\n  display:inline-block;\n  max-width:100%;\n  position:relative;\n  vertical-align:top;\n  white-space:nowrap; }\n  .bp3-editable-text::before{\n    bottom:-3px;\n    left:-3px;\n    position:absolute;\n    right:-3px;\n    top:-3px;\n    border-radius:3px;\n    content:\"\";\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#137cbd; }\n  .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4); }\n  .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#0f9960; }\n  .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4); }\n  .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#d9822b; }\n  .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4); }\n  .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#db3737; }\n  .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4); }\n  .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-dark .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#48aff0; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4);\n            box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#3dcc91; }\n  .bp3-dark .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4);\n            box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#ffb366; }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#ff7373; }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-editable-text-input,\n.bp3-editable-text-content{\n  color:inherit;\n  display:inherit;\n  font:inherit;\n  letter-spacing:inherit;\n  max-width:inherit;\n  min-width:inherit;\n  position:relative;\n  resize:none;\n  text-transform:inherit;\n  vertical-align:top; }\n\n.bp3-editable-text-input{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0;\n  white-space:pre-wrap;\n  width:100%; }\n  .bp3-editable-text-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:focus{\n    outline:none; }\n  .bp3-editable-text-input::-ms-clear{\n    display:none; }\n\n.bp3-editable-text-content{\n  overflow:hidden;\n  padding-right:2px;\n  text-overflow:ellipsis;\n  white-space:pre; }\n  .bp3-editable-text-editing > .bp3-editable-text-content{\n    left:0;\n    position:absolute;\n    visibility:hidden; }\n  .bp3-editable-text-placeholder > .bp3-editable-text-content{\n    color:rgba(92, 112, 128, 0.6); }\n    .bp3-dark .bp3-editable-text-placeholder > .bp3-editable-text-content{\n      color:rgba(167, 182, 194, 0.6); }\n\n.bp3-editable-text.bp3-multiline{\n  display:block; }\n  .bp3-editable-text.bp3-multiline .bp3-editable-text-content{\n    overflow:auto;\n    white-space:pre-wrap;\n    word-wrap:break-word; }\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-control-group{\n  -webkit-transform:translateZ(0);\n          transform:translateZ(0);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:stretch;\n      -ms-flex-align:stretch;\n          align-items:stretch; }\n  .bp3-control-group > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select,\n  .bp3-control-group .bp3-input,\n  .bp3-control-group .bp3-select{\n    position:relative; }\n  .bp3-control-group .bp3-input{\n    border-radius:inherit;\n    z-index:2; }\n    .bp3-control-group .bp3-input:focus{\n      border-radius:3px;\n      z-index:14; }\n    .bp3-control-group .bp3-input[class*=\"bp3-intent\"]{\n      z-index:13; }\n      .bp3-control-group .bp3-input[class*=\"bp3-intent\"]:focus{\n        z-index:15; }\n    .bp3-control-group .bp3-input[readonly], .bp3-control-group .bp3-input:disabled, .bp3-control-group .bp3-input.bp3-disabled{\n      z-index:1; }\n  .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input{\n    z-index:13; }\n    .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input:focus{\n      z-index:15; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select select,\n  .bp3-control-group .bp3-select select{\n    -webkit-transform:translateZ(0);\n            transform:translateZ(0);\n    border-radius:inherit;\n    z-index:4; }\n    .bp3-control-group .bp3-button:focus,\n    .bp3-control-group .bp3-html-select select:focus,\n    .bp3-control-group .bp3-select select:focus{\n      z-index:5; }\n    .bp3-control-group .bp3-button:hover,\n    .bp3-control-group .bp3-html-select select:hover,\n    .bp3-control-group .bp3-select select:hover{\n      z-index:6; }\n    .bp3-control-group .bp3-button:active,\n    .bp3-control-group .bp3-html-select select:active,\n    .bp3-control-group .bp3-select select:active{\n      z-index:7; }\n    .bp3-control-group .bp3-button[readonly], .bp3-control-group .bp3-button:disabled, .bp3-control-group .bp3-button.bp3-disabled,\n    .bp3-control-group .bp3-html-select select[readonly],\n    .bp3-control-group .bp3-html-select select:disabled,\n    .bp3-control-group .bp3-html-select select.bp3-disabled,\n    .bp3-control-group .bp3-select select[readonly],\n    .bp3-control-group .bp3-select select:disabled,\n    .bp3-control-group .bp3-select select.bp3-disabled{\n      z-index:3; }\n    .bp3-control-group .bp3-button[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]{\n      z-index:9; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:focus{\n        z-index:10; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:hover{\n        z-index:11; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:active{\n        z-index:12; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"][readonly], .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:disabled, .bp3-control-group .bp3-button[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"].bp3-disabled{\n        z-index:8; }\n  .bp3-control-group .bp3-input-group > .bp3-icon,\n  .bp3-control-group .bp3-input-group > .bp3-button,\n  .bp3-control-group .bp3-input-group > .bp3-input-left-container,\n  .bp3-control-group .bp3-input-group > .bp3-input-action{\n    z-index:16; }\n  .bp3-control-group .bp3-select::after,\n  .bp3-control-group .bp3-html-select::after,\n  .bp3-control-group .bp3-select > .bp3-icon,\n  .bp3-control-group .bp3-html-select > .bp3-icon{\n    z-index:17; }\n  .bp3-control-group .bp3-select:focus-within{\n    z-index:5; }\n  .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:-1px; }\n  .bp3-control-group:not(.bp3-vertical) > .bp3-divider:not(:first-child){\n    margin-left:6px; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:0; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > .bp3-button + .bp3-button{\n    margin-left:1px; }\n  .bp3-control-group .bp3-popover-wrapper,\n  .bp3-control-group .bp3-popover-target{\n    border-radius:inherit; }\n  .bp3-control-group > :first-child{\n    border-radius:3px 0 0 3px; }\n  .bp3-control-group > :last-child{\n    border-radius:0 3px 3px 0;\n    margin-right:0; }\n  .bp3-control-group > :only-child{\n    border-radius:3px;\n    margin-right:0; }\n  .bp3-control-group .bp3-input-group .bp3-button{\n    border-radius:3px; }\n  .bp3-control-group .bp3-numeric-input:not(:first-child) .bp3-input-group{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-control-group.bp3-fill{\n    width:100%; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-fill > *:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-vertical{\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-control-group.bp3-vertical > *{\n      margin-top:-1px; }\n    .bp3-control-group.bp3-vertical > :first-child{\n      border-radius:3px 3px 0 0;\n      margin-top:0; }\n    .bp3-control-group.bp3-vertical > :last-child{\n      border-radius:0 0 3px 3px; }\n.bp3-control{\n  cursor:pointer;\n  display:block;\n  margin-bottom:10px;\n  position:relative;\n  text-transform:none; }\n  .bp3-control input:checked ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control input:checked ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control:not(.bp3-align-right){\n    padding-left:26px; }\n    .bp3-control:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-26px; }\n  .bp3-control.bp3-align-right{\n    padding-right:26px; }\n    .bp3-control.bp3-align-right .bp3-control-indicator{\n      margin-right:-26px; }\n  .bp3-control.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-control.bp3-inline{\n    display:inline-block;\n    margin-right:20px; }\n  .bp3-control input{\n    left:0;\n    opacity:0;\n    position:absolute;\n    top:0;\n    z-index:-1; }\n  .bp3-control .bp3-control-indicator{\n    background-clip:padding-box;\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    border:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    cursor:pointer;\n    display:inline-block;\n    font-size:16px;\n    height:1em;\n    margin-right:10px;\n    margin-top:-3px;\n    position:relative;\n    -webkit-user-select:none;\n       -moz-user-select:none;\n        -ms-user-select:none;\n            user-select:none;\n    vertical-align:middle;\n    width:1em; }\n    .bp3-control .bp3-control-indicator::before{\n      content:\"\";\n      display:block;\n      height:1em;\n      width:1em; }\n  .bp3-control:hover .bp3-control-indicator{\n    background-color:#ebf1f5; }\n  .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n    background:#d8e1e8;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    cursor:not-allowed; }\n  .bp3-control input:focus ~ .bp3-control-indicator{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:2px;\n    -moz-outline-radius:6px; }\n  .bp3-control.bp3-align-right .bp3-control-indicator{\n    float:right;\n    margin-left:10px;\n    margin-top:1px; }\n  .bp3-control.bp3-large{\n    font-size:16px; }\n    .bp3-control.bp3-large:not(.bp3-align-right){\n      padding-left:30px; }\n      .bp3-control.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n        margin-left:-30px; }\n    .bp3-control.bp3-large.bp3-align-right{\n      padding-right:30px; }\n      .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n        margin-right:-30px; }\n    .bp3-control.bp3-large .bp3-control-indicator{\n      font-size:20px; }\n    .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-top:0; }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control.bp3-checkbox .bp3-control-indicator{\n    border-radius:3px; }\n  .bp3-control.bp3-checkbox input:checked ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0012 5z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-radio .bp3-control-indicator{\n    border-radius:50%; }\n  .bp3-control.bp3-radio input:checked ~ .bp3-control-indicator::before{\n    background-image:radial-gradient(#ffffff, #ffffff 28%, transparent 32%); }\n  .bp3-control.bp3-radio input:checked:disabled ~ .bp3-control-indicator::before{\n    opacity:0.5; }\n  .bp3-control.bp3-radio input:focus ~ .bp3-control-indicator{\n    -moz-outline-radius:16px; }\n  .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(167, 182, 194, 0.5); }\n  .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(115, 134, 148, 0.5); }\n  .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(92, 112, 128, 0.5); }\n  .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5); }\n    .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5); }\n    .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch:not(.bp3-align-right){\n    padding-left:38px; }\n    .bp3-control.bp3-switch:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-38px; }\n  .bp3-control.bp3-switch.bp3-align-right{\n    padding-right:38px; }\n    .bp3-control.bp3-switch.bp3-align-right .bp3-control-indicator{\n      margin-right:-38px; }\n  .bp3-control.bp3-switch .bp3-control-indicator{\n    border:none;\n    border-radius:1.75em;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important;\n    min-width:1.75em;\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:auto; }\n    .bp3-control.bp3-switch .bp3-control-indicator::before{\n      background:#ffffff;\n      border-radius:50%;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n      height:calc(1em - 4px);\n      left:0;\n      margin:2px;\n      position:absolute;\n      -webkit-transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      width:calc(1em - 4px); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    left:calc(100% - 1em); }\n  .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right){\n    padding-left:45px; }\n    .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-45px; }\n  .bp3-control.bp3-switch.bp3-large.bp3-align-right{\n    padding-right:45px; }\n    .bp3-control.bp3-switch.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-right:-45px; }\n  .bp3-dark .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.7); }\n  .bp3-dark .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.9); }\n  .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(57, 75, 89, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-dark .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch .bp3-control-indicator::before{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-control.bp3-switch .bp3-switch-inner-text{\n    font-size:0.7em;\n    text-align:center; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:first-child{\n    line-height:0;\n    margin-left:0.5em;\n    margin-right:1.2em;\n    visibility:hidden; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:last-child{\n    line-height:1em;\n    margin-left:1.2em;\n    margin-right:0.5em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:first-child{\n    line-height:1em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:last-child{\n    line-height:0;\n    visibility:hidden; }\n  .bp3-dark .bp3-control{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-control.bp3-disabled{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-control .bp3-control-indicator{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-control:hover .bp3-control-indicator{\n      background-color:#30404d; }\n    .bp3-dark .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n      background:#202b33;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-control input:disabled ~ .bp3-control-indicator{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      cursor:not-allowed; }\n    .bp3-dark .bp3-control.bp3-checkbox input:disabled:checked ~ .bp3-control-indicator, .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-file-input{\n  cursor:pointer;\n  display:inline-block;\n  height:30px;\n  position:relative; }\n  .bp3-file-input input{\n    margin:0;\n    min-width:200px;\n    opacity:0; }\n    .bp3-file-input input:disabled + .bp3-file-upload-input,\n    .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n      background:rgba(206, 217, 224, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      resize:none; }\n      .bp3-file-input input:disabled + .bp3-file-upload-input::after,\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n        background-color:rgba(206, 217, 224, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(92, 112, 128, 0.6);\n        cursor:not-allowed;\n        outline:none; }\n        .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active:hover,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active:hover{\n          background:rgba(206, 217, 224, 0.7); }\n      .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input, .bp3-dark\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n        background:rgba(57, 75, 89, 0.5);\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after, .bp3-dark\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n          background-color:rgba(57, 75, 89, 0.5);\n          background-image:none;\n          -webkit-box-shadow:none;\n                  box-shadow:none;\n          color:rgba(167, 182, 194, 0.6); }\n          .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-dark\n          .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active{\n            background:rgba(57, 75, 89, 0.7); }\n  .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#182026; }\n  .bp3-dark .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#f5f8fa; }\n  .bp3-file-input.bp3-fill{\n    width:100%; }\n  .bp3-file-input.bp3-large,\n  .bp3-large .bp3-file-input{\n    height:40px; }\n  .bp3-file-input .bp3-file-upload-input-custom-text::after{\n    content:attr(bp3-button-text); }\n\n.bp3-file-upload-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle;\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:rgba(92, 112, 128, 0.6);\n  left:0;\n  padding-right:80px;\n  position:absolute;\n  right:0;\n  top:0;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-file-upload-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:focus, .bp3-file-upload-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-file-upload-input[type=\"search\"], .bp3-file-upload-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-file-upload-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-file-upload-input:disabled, .bp3-file-upload-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-file-upload-input::after{\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026;\n    min-height:24px;\n    min-width:24px;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    border-radius:3px;\n    content:\"Browse\";\n    line-height:24px;\n    margin:3px;\n    position:absolute;\n    right:0;\n    text-align:center;\n    top:0;\n    width:70px; }\n    .bp3-file-upload-input::after:hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-file-upload-input::after:active, .bp3-file-upload-input::after.bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-file-upload-input::after:disabled, .bp3-file-upload-input::after.bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-file-upload-input::after:disabled.bp3-active, .bp3-file-upload-input::after:disabled.bp3-active:hover, .bp3-file-upload-input::after.bp3-disabled.bp3-active, .bp3-file-upload-input::after.bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-file-upload-input:hover::after{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-file-upload-input:active::after{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-large .bp3-file-upload-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px;\n    padding-right:95px; }\n    .bp3-large .bp3-file-upload-input[type=\"search\"], .bp3-large .bp3-file-upload-input.bp3-round{\n      padding:0 15px; }\n    .bp3-large .bp3-file-upload-input::after{\n      min-height:30px;\n      min-width:30px;\n      line-height:30px;\n      margin:5px;\n      width:85px; }\n  .bp3-dark .bp3-file-upload-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:disabled, .bp3-dark .bp3-file-upload-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::after{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n      color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover, .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover{\n        background-color:#30404d;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        background-color:#202b33;\n        background-image:none;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n      .bp3-dark .bp3-file-upload-input::after:disabled, .bp3-dark .bp3-file-upload-input::after.bp3-disabled{\n        background-color:rgba(57, 75, 89, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-upload-input::after:disabled.bp3-active, .bp3-dark .bp3-file-upload-input::after.bp3-disabled.bp3-active{\n          background:rgba(57, 75, 89, 0.7); }\n      .bp3-dark .bp3-file-upload-input::after .bp3-button-spinner .bp3-spinner-head{\n        background:rgba(16, 22, 26, 0.5);\n        stroke:#8a9ba8; }\n    .bp3-dark .bp3-file-upload-input:hover::after{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:active::after{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n.bp3-file-upload-input::after{\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n.bp3-form-group{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0 0 15px; }\n  .bp3-form-group label.bp3-label{\n    margin-bottom:5px; }\n  .bp3-form-group .bp3-control{\n    margin-top:7px; }\n  .bp3-form-group .bp3-form-helper-text{\n    color:#5c7080;\n    font-size:12px;\n    margin-top:5px; }\n  .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#106ba3; }\n  .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#0d8050; }\n  .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#bf7326; }\n  .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#c23030; }\n  .bp3-form-group.bp3-inline{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row; }\n    .bp3-form-group.bp3-inline.bp3-large label.bp3-label{\n      line-height:40px;\n      margin:0 10px 0 0; }\n    .bp3-form-group.bp3-inline label.bp3-label{\n      line-height:30px;\n      margin:0 10px 0 0; }\n  .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-dark .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#48aff0; }\n  .bp3-dark .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#3dcc91; }\n  .bp3-dark .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#ffb366; }\n  .bp3-dark .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#ff7373; }\n  .bp3-dark .bp3-form-group .bp3-form-helper-text{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(167, 182, 194, 0.6) !important; }\n.bp3-input-group{\n  display:block;\n  position:relative; }\n  .bp3-input-group .bp3-input{\n    position:relative;\n    width:100%; }\n    .bp3-input-group .bp3-input:not(:first-child){\n      padding-left:30px; }\n    .bp3-input-group .bp3-input:not(:last-child){\n      padding-right:30px; }\n  .bp3-input-group .bp3-input-action,\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-button,\n  .bp3-input-group > .bp3-icon{\n    position:absolute;\n    top:0; }\n    .bp3-input-group .bp3-input-action:first-child,\n    .bp3-input-group > .bp3-input-left-container:first-child,\n    .bp3-input-group > .bp3-button:first-child,\n    .bp3-input-group > .bp3-icon:first-child{\n      left:0; }\n    .bp3-input-group .bp3-input-action:last-child,\n    .bp3-input-group > .bp3-input-left-container:last-child,\n    .bp3-input-group > .bp3-button:last-child,\n    .bp3-input-group > .bp3-icon:last-child{\n      right:0; }\n  .bp3-input-group .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    margin:3px;\n    padding:0 7px; }\n    .bp3-input-group .bp3-button:empty{\n      padding:0; }\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-icon{\n    z-index:1; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon{\n    color:#5c7080; }\n    .bp3-input-group > .bp3-input-left-container > .bp3-icon:empty,\n    .bp3-input-group > .bp3-icon:empty{\n      font-family:\"Icons16\", sans-serif;\n      font-size:16px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon,\n  .bp3-input-group .bp3-input-action > .bp3-spinner{\n    margin:7px; }\n  .bp3-input-group .bp3-tag{\n    margin:5px; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus),\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n    color:#5c7080; }\n    .bp3-dark .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus), .bp3-dark\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n      color:#a7b6c2; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large{\n      color:#5c7080; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled,\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled{\n    color:rgba(92, 112, 128, 0.6) !important; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-large{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-input-group.bp3-disabled{\n    cursor:not-allowed; }\n    .bp3-input-group.bp3-disabled .bp3-icon{\n      color:rgba(92, 112, 128, 0.6); }\n  .bp3-input-group.bp3-large .bp3-button{\n    min-height:30px;\n    min-width:30px;\n    margin:5px; }\n  .bp3-input-group.bp3-large > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-large > .bp3-icon,\n  .bp3-input-group.bp3-large .bp3-input-action > .bp3-spinner{\n    margin:12px; }\n  .bp3-input-group.bp3-large .bp3-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input-group.bp3-large .bp3-input[type=\"search\"], .bp3-input-group.bp3-large .bp3-input.bp3-round{\n      padding:0 15px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:first-child){\n      padding-left:40px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:last-child){\n      padding-right:40px; }\n  .bp3-input-group.bp3-small .bp3-button{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small .bp3-tag{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-small > .bp3-icon,\n  .bp3-input-group.bp3-small .bp3-input-action > .bp3-spinner{\n    margin:4px; }\n  .bp3-input-group.bp3-small .bp3-input{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input-group.bp3-small .bp3-input[type=\"search\"], .bp3-input-group.bp3-small .bp3-input.bp3-round{\n      padding:0 12px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:first-child){\n      padding-left:24px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:last-child){\n      padding-right:24px; }\n  .bp3-input-group.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-input-group.bp3-round .bp3-button,\n  .bp3-input-group.bp3-round .bp3-input,\n  .bp3-input-group.bp3-round .bp3-tag{\n    border-radius:30px; }\n  .bp3-dark .bp3-input-group .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-input-group.bp3-disabled .bp3-icon{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-input-group.bp3-intent-primary .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input-group.bp3-intent-primary .bp3-input:disabled, .bp3-input-group.bp3-intent-primary .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-primary > .bp3-icon{\n    color:#106ba3; }\n    .bp3-dark .bp3-input-group.bp3-intent-primary > .bp3-icon{\n      color:#48aff0; }\n  .bp3-input-group.bp3-intent-success .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input-group.bp3-intent-success .bp3-input:disabled, .bp3-input-group.bp3-intent-success .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-success > .bp3-icon{\n    color:#0d8050; }\n    .bp3-dark .bp3-input-group.bp3-intent-success > .bp3-icon{\n      color:#3dcc91; }\n  .bp3-input-group.bp3-intent-warning .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input-group.bp3-intent-warning .bp3-input:disabled, .bp3-input-group.bp3-intent-warning .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-warning > .bp3-icon{\n    color:#bf7326; }\n    .bp3-dark .bp3-input-group.bp3-intent-warning > .bp3-icon{\n      color:#ffb366; }\n  .bp3-input-group.bp3-intent-danger .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input-group.bp3-intent-danger .bp3-input:disabled, .bp3-input-group.bp3-intent-danger .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-danger > .bp3-icon{\n    color:#c23030; }\n    .bp3-dark .bp3-input-group.bp3-intent-danger > .bp3-icon{\n      color:#ff7373; }\n.bp3-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle; }\n  .bp3-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:focus, .bp3-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-input[type=\"search\"], .bp3-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-input:disabled, .bp3-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-input.bp3-large{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input.bp3-large[type=\"search\"], .bp3-input.bp3-large.bp3-round{\n      padding:0 15px; }\n  .bp3-input.bp3-small{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input.bp3-small[type=\"search\"], .bp3-input.bp3-small.bp3-round{\n      padding:0 12px; }\n  .bp3-input.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-dark .bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input:disabled, .bp3-dark .bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-input.bp3-intent-primary{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input.bp3-intent-primary:disabled, .bp3-input.bp3-intent-primary.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary:focus{\n        -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n                box-shadow:inset 0 0 0 1px #137cbd; }\n      .bp3-dark .bp3-input.bp3-intent-primary:disabled, .bp3-dark .bp3-input.bp3-intent-primary.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-success{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input.bp3-intent-success:disabled, .bp3-input.bp3-intent-success.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success:focus{\n        -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n                box-shadow:inset 0 0 0 1px #0f9960; }\n      .bp3-dark .bp3-input.bp3-intent-success:disabled, .bp3-dark .bp3-input.bp3-intent-success.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-warning{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input.bp3-intent-warning:disabled, .bp3-input.bp3-intent-warning.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning:focus{\n        -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n                box-shadow:inset 0 0 0 1px #d9822b; }\n      .bp3-dark .bp3-input.bp3-intent-warning:disabled, .bp3-dark .bp3-input.bp3-intent-warning.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-danger{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input.bp3-intent-danger:disabled, .bp3-input.bp3-intent-danger.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger:focus{\n        -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #db3737;\n                box-shadow:inset 0 0 0 1px #db3737; }\n      .bp3-dark .bp3-input.bp3-intent-danger:disabled, .bp3-dark .bp3-input.bp3-intent-danger.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input::-ms-clear{\n    display:none; }\ntextarea.bp3-input{\n  max-width:100%;\n  padding:10px; }\n  textarea.bp3-input, textarea.bp3-input.bp3-large, textarea.bp3-input.bp3-small{\n    height:auto;\n    line-height:inherit; }\n  textarea.bp3-input.bp3-small{\n    padding:8px; }\n  .bp3-dark textarea.bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark textarea.bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input:disabled, .bp3-dark textarea.bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\nlabel.bp3-label{\n  display:block;\n  margin-bottom:15px;\n  margin-top:0; }\n  label.bp3-label .bp3-html-select,\n  label.bp3-label .bp3-input,\n  label.bp3-label .bp3-select,\n  label.bp3-label .bp3-slider,\n  label.bp3-label .bp3-popover-wrapper{\n    display:block;\n    margin-top:5px;\n    text-transform:none; }\n  label.bp3-label .bp3-button-group{\n    margin-top:5px; }\n  label.bp3-label .bp3-select select,\n  label.bp3-label .bp3-html-select select{\n    font-weight:400;\n    vertical-align:top;\n    width:100%; }\n  label.bp3-label.bp3-disabled,\n  label.bp3-label.bp3-disabled .bp3-text-muted{\n    color:rgba(92, 112, 128, 0.6); }\n  label.bp3-label.bp3-inline{\n    line-height:30px; }\n    label.bp3-label.bp3-inline .bp3-html-select,\n    label.bp3-label.bp3-inline .bp3-input,\n    label.bp3-label.bp3-inline .bp3-input-group,\n    label.bp3-label.bp3-inline .bp3-select,\n    label.bp3-label.bp3-inline .bp3-popover-wrapper{\n      display:inline-block;\n      margin:0 0 0 5px;\n      vertical-align:top; }\n    label.bp3-label.bp3-inline .bp3-button-group{\n      margin:0 0 0 5px; }\n    label.bp3-label.bp3-inline .bp3-input-group .bp3-input{\n      margin-left:0; }\n    label.bp3-label.bp3-inline.bp3-large{\n      line-height:40px; }\n  label.bp3-label:not(.bp3-inline) .bp3-popover-target{\n    display:block; }\n  .bp3-dark label.bp3-label{\n    color:#f5f8fa; }\n    .bp3-dark label.bp3-label.bp3-disabled,\n    .bp3-dark label.bp3-label.bp3-disabled .bp3-text-muted{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 14px;\n          flex:1 1 14px;\n  min-height:0;\n  padding:0;\n  width:30px; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:first-child{\n    border-radius:0 3px 0 0; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:last-child{\n    border-radius:0 0 3px 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:first-child{\n  border-radius:3px 0 0 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:last-child{\n  border-radius:0 0 0 3px; }\n\n.bp3-numeric-input.bp3-large .bp3-button-group.bp3-vertical > .bp3-button{\n  width:40px; }\n\nform{\n  display:block; }\n.bp3-html-select select,\n.bp3-select select{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  -moz-appearance:none;\n  -webkit-appearance:none;\n  border-radius:3px;\n  height:30px;\n  padding:0 25px 0 10px;\n  width:100%; }\n  .bp3-html-select select > *, .bp3-select select > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-html-select select > .bp3-fill, .bp3-select select > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-html-select select::before,\n  .bp3-select select::before, .bp3-html-select select > *, .bp3-select select > *{\n    margin-right:7px; }\n  .bp3-html-select select:empty::before,\n  .bp3-select select:empty::before,\n  .bp3-html-select select > :last-child,\n  .bp3-select select > :last-child{\n    margin-right:0; }\n  .bp3-html-select select:hover,\n  .bp3-select select:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-html-select select:active,\n  .bp3-select select:active, .bp3-html-select select.bp3-active,\n  .bp3-select select.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-html-select select:disabled,\n  .bp3-select select:disabled, .bp3-html-select select.bp3-disabled,\n  .bp3-select select.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-html-select select:disabled.bp3-active,\n    .bp3-select select:disabled.bp3-active, .bp3-html-select select:disabled.bp3-active:hover,\n    .bp3-select select:disabled.bp3-active:hover, .bp3-html-select select.bp3-disabled.bp3-active,\n    .bp3-select select.bp3-disabled.bp3-active, .bp3-html-select select.bp3-disabled.bp3-active:hover,\n    .bp3-select select.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n\n.bp3-html-select.bp3-minimal select,\n.bp3-select.bp3-minimal select{\n  background:none;\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  .bp3-html-select.bp3-minimal select:hover,\n  .bp3-select.bp3-minimal select:hover{\n    background:rgba(167, 182, 194, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026;\n    text-decoration:none; }\n  .bp3-html-select.bp3-minimal select:active,\n  .bp3-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal select.bp3-active,\n  .bp3-select.bp3-minimal select.bp3-active{\n    background:rgba(115, 134, 148, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026; }\n  .bp3-html-select.bp3-minimal select:disabled,\n  .bp3-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal select:disabled:hover,\n  .bp3-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal select.bp3-disabled,\n  .bp3-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal select.bp3-disabled:hover,\n  .bp3-select.bp3-minimal select.bp3-disabled:hover{\n    background:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n    .bp3-html-select.bp3-minimal select:disabled.bp3-active,\n    .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active{\n      background:rgba(115, 134, 148, 0.3); }\n  .bp3-dark .bp3-html-select.bp3-minimal select, .bp3-html-select.bp3-minimal .bp3-dark select,\n  .bp3-dark .bp3-select.bp3-minimal select, .bp3-select.bp3-minimal .bp3-dark select{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover, .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover{\n      background:rgba(138, 155, 168, 0.15); }\n    .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:rgba(138, 155, 168, 0.3);\n      color:#f5f8fa; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal .bp3-dark select:disabled,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled, .bp3-select.bp3-minimal .bp3-dark select:disabled, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled:hover, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover{\n      background:none;\n      color:rgba(167, 182, 194, 0.6);\n      cursor:not-allowed; }\n      .bp3-dark .bp3-html-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active{\n        background:rgba(138, 155, 168, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-primary,\n  .bp3-select.bp3-minimal select.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover{\n      background:rgba(19, 124, 189, 0.15);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:rgba(19, 124, 189, 0.3);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled{\n      background:none;\n      color:rgba(16, 107, 163, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active{\n        background:rgba(19, 124, 189, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n      stroke:#106ba3; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary{\n      color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.2);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(72, 175, 240, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-success,\n  .bp3-select.bp3-minimal select.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover{\n      background:rgba(15, 153, 96, 0.15);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:rgba(15, 153, 96, 0.3);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled{\n      background:none;\n      color:rgba(13, 128, 80, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active{\n        background:rgba(15, 153, 96, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n      stroke:#0d8050; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success{\n      color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.2);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(61, 204, 145, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-warning,\n  .bp3-select.bp3-minimal select.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover{\n      background:rgba(217, 130, 43, 0.15);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:rgba(217, 130, 43, 0.3);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled{\n      background:none;\n      color:rgba(191, 115, 38, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active{\n        background:rgba(217, 130, 43, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n      stroke:#bf7326; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning{\n      color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.2);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(255, 179, 102, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-danger,\n  .bp3-select.bp3-minimal select.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover{\n      background:rgba(219, 55, 55, 0.15);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:rgba(219, 55, 55, 0.3);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled{\n      background:none;\n      color:rgba(194, 48, 48, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active{\n        background:rgba(219, 55, 55, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n      stroke:#c23030; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger{\n      color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.2);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(255, 115, 115, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n\n.bp3-html-select.bp3-large select,\n.bp3-select.bp3-large select{\n  font-size:16px;\n  height:40px;\n  padding-right:35px; }\n\n.bp3-dark .bp3-html-select select, .bp3-dark .bp3-select select{\n  background-color:#394b59;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n  color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover, .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    background-color:#202b33;\n    background-image:none;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-html-select select:disabled, .bp3-dark .bp3-select select:disabled, .bp3-dark .bp3-html-select select.bp3-disabled, .bp3-dark .bp3-select select.bp3-disabled{\n    background-color:rgba(57, 75, 89, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-html-select select:disabled.bp3-active, .bp3-dark .bp3-select select:disabled.bp3-active, .bp3-dark .bp3-html-select select.bp3-disabled.bp3-active, .bp3-dark .bp3-select select.bp3-disabled.bp3-active{\n      background:rgba(57, 75, 89, 0.7); }\n  .bp3-dark .bp3-html-select select .bp3-button-spinner .bp3-spinner-head, .bp3-dark .bp3-select select .bp3-button-spinner .bp3-spinner-head{\n    background:rgba(16, 22, 26, 0.5);\n    stroke:#8a9ba8; }\n\n.bp3-html-select select:disabled,\n.bp3-select select:disabled{\n  background-color:rgba(206, 217, 224, 0.5);\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-html-select .bp3-icon,\n.bp3-select .bp3-icon, .bp3-select::after{\n  color:#5c7080;\n  pointer-events:none;\n  position:absolute;\n  right:7px;\n  top:7px; }\n  .bp3-html-select .bp3-disabled.bp3-icon,\n  .bp3-select .bp3-disabled.bp3-icon, .bp3-disabled.bp3-select::after{\n    color:rgba(92, 112, 128, 0.6); }\n.bp3-html-select,\n.bp3-select{\n  display:inline-block;\n  letter-spacing:normal;\n  position:relative;\n  vertical-align:middle; }\n  .bp3-html-select select::-ms-expand,\n  .bp3-select select::-ms-expand{\n    display:none; }\n  .bp3-html-select .bp3-icon,\n  .bp3-select .bp3-icon{\n    color:#5c7080; }\n    .bp3-html-select .bp3-icon:hover,\n    .bp3-select .bp3-icon:hover{\n      color:#182026; }\n    .bp3-dark .bp3-html-select .bp3-icon, .bp3-dark\n    .bp3-select .bp3-icon{\n      color:#a7b6c2; }\n      .bp3-dark .bp3-html-select .bp3-icon:hover, .bp3-dark\n      .bp3-select .bp3-icon:hover{\n        color:#f5f8fa; }\n  .bp3-html-select.bp3-large::after,\n  .bp3-html-select.bp3-large .bp3-icon,\n  .bp3-select.bp3-large::after,\n  .bp3-select.bp3-large .bp3-icon{\n    right:12px;\n    top:12px; }\n  .bp3-html-select.bp3-fill,\n  .bp3-html-select.bp3-fill select,\n  .bp3-select.bp3-fill,\n  .bp3-select.bp3-fill select{\n    width:100%; }\n  .bp3-dark .bp3-html-select option, .bp3-dark\n  .bp3-select option{\n    background-color:#30404d;\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select option:disabled, .bp3-dark\n  .bp3-select option:disabled{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-html-select::after, .bp3-dark\n  .bp3-select::after{\n    color:#a7b6c2; }\n\n.bp3-select::after{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  content:\"\"; }\n.bp3-running-text table, table.bp3-html-table{\n  border-spacing:0;\n  font-size:14px; }\n  .bp3-running-text table th, table.bp3-html-table th,\n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    padding:11px;\n    text-align:left;\n    vertical-align:top; }\n  .bp3-running-text table th, table.bp3-html-table th{\n    color:#182026;\n    font-weight:600; }\n  \n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    color:#182026; }\n  .bp3-running-text table tbody tr:first-child th, table.bp3-html-table tbody tr:first-child th,\n  .bp3-running-text table tbody tr:first-child td,\n  table.bp3-html-table tbody tr:first-child td,\n  .bp3-running-text table tfoot tr:first-child th,\n  table.bp3-html-table tfoot tr:first-child th,\n  .bp3-running-text table tfoot tr:first-child td,\n  table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-running-text table th, .bp3-running-text .bp3-dark table th, .bp3-dark table.bp3-html-table th{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table td, .bp3-running-text .bp3-dark table td, .bp3-dark table.bp3-html-table td{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table tbody tr:first-child th, .bp3-running-text .bp3-dark table tbody tr:first-child th, .bp3-dark table.bp3-html-table tbody tr:first-child th,\n  .bp3-dark .bp3-running-text table tbody tr:first-child td,\n  .bp3-running-text .bp3-dark table tbody tr:first-child td,\n  .bp3-dark table.bp3-html-table tbody tr:first-child td,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child th,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child th,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child th,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child td,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child td,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-condensed th,\ntable.bp3-html-table.bp3-html-table-condensed td, table.bp3-html-table.bp3-small th,\ntable.bp3-html-table.bp3-small td{\n  padding-bottom:6px;\n  padding-top:6px; }\n\ntable.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n  background:rgba(191, 204, 214, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n  -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered tbody tr td,\ntable.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n  -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n  table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n    -webkit-box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-interactive tbody tr:hover td{\n  background-color:rgba(191, 204, 214, 0.3);\n  cursor:pointer; }\n\ntable.bp3-html-table.bp3-interactive tbody tr:active td{\n  background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-dark table.bp3-html-table{ }\n  .bp3-dark table.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n    background:rgba(92, 112, 128, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td,\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n      -webkit-box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15);\n              box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:first-child{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:hover td{\n    background-color:rgba(92, 112, 128, 0.3);\n    cursor:pointer; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:active td{\n    background-color:rgba(92, 112, 128, 0.4); }\n\n.bp3-key-combo{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center; }\n  .bp3-key-combo > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-key-combo > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-key-combo::before,\n  .bp3-key-combo > *{\n    margin-right:5px; }\n  .bp3-key-combo:empty::before,\n  .bp3-key-combo > :last-child{\n    margin-right:0; }\n\n.bp3-hotkey-dialog{\n  padding-bottom:0;\n  top:40px; }\n  .bp3-hotkey-dialog .bp3-dialog-body{\n    margin:0;\n    padding:0; }\n  .bp3-hotkey-dialog .bp3-hotkey-label{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1; }\n\n.bp3-hotkey-column{\n  margin:auto;\n  max-height:80vh;\n  overflow-y:auto;\n  padding:30px; }\n  .bp3-hotkey-column .bp3-heading{\n    margin-bottom:20px; }\n    .bp3-hotkey-column .bp3-heading:not(:first-child){\n      margin-top:40px; }\n\n.bp3-hotkey{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:justify;\n      -ms-flex-pack:justify;\n          justify-content:space-between;\n  margin-left:0;\n  margin-right:0; }\n  .bp3-hotkey:not(:last-child){\n    margin-bottom:10px; }\n.bp3-icon{\n  display:inline-block;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  vertical-align:text-bottom; }\n  .bp3-icon:not(:empty)::before{\n    content:\"\" !important;\n    content:unset !important; }\n  .bp3-icon > svg{\n    display:block; }\n    .bp3-icon > svg:not([fill]){\n      fill:currentColor; }\n\n.bp3-icon.bp3-intent-primary, .bp3-icon-standard.bp3-intent-primary, .bp3-icon-large.bp3-intent-primary{\n  color:#106ba3; }\n  .bp3-dark .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-icon-large.bp3-intent-primary{\n    color:#48aff0; }\n\n.bp3-icon.bp3-intent-success, .bp3-icon-standard.bp3-intent-success, .bp3-icon-large.bp3-intent-success{\n  color:#0d8050; }\n  .bp3-dark .bp3-icon.bp3-intent-success, .bp3-dark .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-icon-large.bp3-intent-success{\n    color:#3dcc91; }\n\n.bp3-icon.bp3-intent-warning, .bp3-icon-standard.bp3-intent-warning, .bp3-icon-large.bp3-intent-warning{\n  color:#bf7326; }\n  .bp3-dark .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-icon-large.bp3-intent-warning{\n    color:#ffb366; }\n\n.bp3-icon.bp3-intent-danger, .bp3-icon-standard.bp3-intent-danger, .bp3-icon-large.bp3-intent-danger{\n  color:#c23030; }\n  .bp3-dark .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-icon-large.bp3-intent-danger{\n    color:#ff7373; }\n\nspan.bp3-icon-standard{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon-large{\n  font-family:\"Icons20\", sans-serif;\n  font-size:20px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon:empty{\n  font-family:\"Icons20\";\n  font-size:inherit;\n  font-style:normal;\n  font-weight:400;\n  line-height:1; }\n  span.bp3-icon:empty::before{\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased; }\n\n.bp3-icon-add::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-artifact::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-folder::before{\n  content:\"\"; }\n\n.bp3-icon-airplane::before{\n  content:\"\"; }\n\n.bp3-icon-align-center::before{\n  content:\"\"; }\n\n.bp3-icon-align-justify::before{\n  content:\"\"; }\n\n.bp3-icon-align-left::before{\n  content:\"\"; }\n\n.bp3-icon-align-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-horizontal-center::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-left::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-top::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-vertical-center::before{\n  content:\"\"; }\n\n.bp3-icon-annotation::before{\n  content:\"\"; }\n\n.bp3-icon-application::before{\n  content:\"\"; }\n\n.bp3-icon-applications::before{\n  content:\"\"; }\n\n.bp3-icon-archive::before{\n  content:\"\"; }\n\n.bp3-icon-arrow-bottom-left::before{\n  content:\"↙\"; }\n\n.bp3-icon-arrow-bottom-right::before{\n  content:\"↘\"; }\n\n.bp3-icon-arrow-down::before{\n  content:\"↓\"; }\n\n.bp3-icon-arrow-left::before{\n  content:\"←\"; }\n\n.bp3-icon-arrow-right::before{\n  content:\"→\"; }\n\n.bp3-icon-arrow-top-left::before{\n  content:\"↖\"; }\n\n.bp3-icon-arrow-top-right::before{\n  content:\"↗\"; }\n\n.bp3-icon-arrow-up::before{\n  content:\"↑\"; }\n\n.bp3-icon-arrows-horizontal::before{\n  content:\"↔\"; }\n\n.bp3-icon-arrows-vertical::before{\n  content:\"↕\"; }\n\n.bp3-icon-asterisk::before{\n  content:\"*\"; }\n\n.bp3-icon-automatic-updates::before{\n  content:\"\"; }\n\n.bp3-icon-badge::before{\n  content:\"\"; }\n\n.bp3-icon-ban-circle::before{\n  content:\"\"; }\n\n.bp3-icon-bank-account::before{\n  content:\"\"; }\n\n.bp3-icon-barcode::before{\n  content:\"\"; }\n\n.bp3-icon-blank::before{\n  content:\"\"; }\n\n.bp3-icon-blocked-person::before{\n  content:\"\"; }\n\n.bp3-icon-bold::before{\n  content:\"\"; }\n\n.bp3-icon-book::before{\n  content:\"\"; }\n\n.bp3-icon-bookmark::before{\n  content:\"\"; }\n\n.bp3-icon-box::before{\n  content:\"\"; }\n\n.bp3-icon-briefcase::before{\n  content:\"\"; }\n\n.bp3-icon-bring-data::before{\n  content:\"\"; }\n\n.bp3-icon-build::before{\n  content:\"\"; }\n\n.bp3-icon-calculator::before{\n  content:\"\"; }\n\n.bp3-icon-calendar::before{\n  content:\"\"; }\n\n.bp3-icon-camera::before{\n  content:\"\"; }\n\n.bp3-icon-caret-down::before{\n  content:\"⌄\"; }\n\n.bp3-icon-caret-left::before{\n  content:\"〈\"; }\n\n.bp3-icon-caret-right::before{\n  content:\"〉\"; }\n\n.bp3-icon-caret-up::before{\n  content:\"⌃\"; }\n\n.bp3-icon-cell-tower::before{\n  content:\"\"; }\n\n.bp3-icon-changes::before{\n  content:\"\"; }\n\n.bp3-icon-chart::before{\n  content:\"\"; }\n\n.bp3-icon-chat::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-backward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-forward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-circle::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-down::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-left::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-right::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-up::before{\n  content:\"\"; }\n\n.bp3-icon-citation::before{\n  content:\"\"; }\n\n.bp3-icon-clean::before{\n  content:\"\"; }\n\n.bp3-icon-clipboard::before{\n  content:\"\"; }\n\n.bp3-icon-cloud::before{\n  content:\"☁\"; }\n\n.bp3-icon-cloud-download::before{\n  content:\"\"; }\n\n.bp3-icon-cloud-upload::before{\n  content:\"\"; }\n\n.bp3-icon-code::before{\n  content:\"\"; }\n\n.bp3-icon-code-block::before{\n  content:\"\"; }\n\n.bp3-icon-cog::before{\n  content:\"\"; }\n\n.bp3-icon-collapse-all::before{\n  content:\"\"; }\n\n.bp3-icon-column-layout::before{\n  content:\"\"; }\n\n.bp3-icon-comment::before{\n  content:\"\"; }\n\n.bp3-icon-comparison::before{\n  content:\"\"; }\n\n.bp3-icon-compass::before{\n  content:\"\"; }\n\n.bp3-icon-compressed::before{\n  content:\"\"; }\n\n.bp3-icon-confirm::before{\n  content:\"\"; }\n\n.bp3-icon-console::before{\n  content:\"\"; }\n\n.bp3-icon-contrast::before{\n  content:\"\"; }\n\n.bp3-icon-control::before{\n  content:\"\"; }\n\n.bp3-icon-credit-card::before{\n  content:\"\"; }\n\n.bp3-icon-cross::before{\n  content:\"✗\"; }\n\n.bp3-icon-crown::before{\n  content:\"\"; }\n\n.bp3-icon-cube::before{\n  content:\"\"; }\n\n.bp3-icon-cube-add::before{\n  content:\"\"; }\n\n.bp3-icon-cube-remove::before{\n  content:\"\"; }\n\n.bp3-icon-curved-range-chart::before{\n  content:\"\"; }\n\n.bp3-icon-cut::before{\n  content:\"\"; }\n\n.bp3-icon-dashboard::before{\n  content:\"\"; }\n\n.bp3-icon-data-lineage::before{\n  content:\"\"; }\n\n.bp3-icon-database::before{\n  content:\"\"; }\n\n.bp3-icon-delete::before{\n  content:\"\"; }\n\n.bp3-icon-delta::before{\n  content:\"Δ\"; }\n\n.bp3-icon-derive-column::before{\n  content:\"\"; }\n\n.bp3-icon-desktop::before{\n  content:\"\"; }\n\n.bp3-icon-diagnosis::before{\n  content:\"\"; }\n\n.bp3-icon-diagram-tree::before{\n  content:\"\"; }\n\n.bp3-icon-direction-left::before{\n  content:\"\"; }\n\n.bp3-icon-direction-right::before{\n  content:\"\"; }\n\n.bp3-icon-disable::before{\n  content:\"\"; }\n\n.bp3-icon-document::before{\n  content:\"\"; }\n\n.bp3-icon-document-open::before{\n  content:\"\"; }\n\n.bp3-icon-document-share::before{\n  content:\"\"; }\n\n.bp3-icon-dollar::before{\n  content:\"$\"; }\n\n.bp3-icon-dot::before{\n  content:\"•\"; }\n\n.bp3-icon-double-caret-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-double-caret-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-doughnut-chart::before{\n  content:\"\"; }\n\n.bp3-icon-download::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-draw::before{\n  content:\"\"; }\n\n.bp3-icon-drive-time::before{\n  content:\"\"; }\n\n.bp3-icon-duplicate::before{\n  content:\"\"; }\n\n.bp3-icon-edit::before{\n  content:\"✎\"; }\n\n.bp3-icon-eject::before{\n  content:\"⏏\"; }\n\n.bp3-icon-endorsed::before{\n  content:\"\"; }\n\n.bp3-icon-envelope::before{\n  content:\"✉\"; }\n\n.bp3-icon-equals::before{\n  content:\"\"; }\n\n.bp3-icon-eraser::before{\n  content:\"\"; }\n\n.bp3-icon-error::before{\n  content:\"\"; }\n\n.bp3-icon-euro::before{\n  content:\"€\"; }\n\n.bp3-icon-exchange::before{\n  content:\"\"; }\n\n.bp3-icon-exclude-row::before{\n  content:\"\"; }\n\n.bp3-icon-expand-all::before{\n  content:\"\"; }\n\n.bp3-icon-export::before{\n  content:\"\"; }\n\n.bp3-icon-eye-off::before{\n  content:\"\"; }\n\n.bp3-icon-eye-on::before{\n  content:\"\"; }\n\n.bp3-icon-eye-open::before{\n  content:\"\"; }\n\n.bp3-icon-fast-backward::before{\n  content:\"\"; }\n\n.bp3-icon-fast-forward::before{\n  content:\"\"; }\n\n.bp3-icon-feed::before{\n  content:\"\"; }\n\n.bp3-icon-feed-subscribed::before{\n  content:\"\"; }\n\n.bp3-icon-film::before{\n  content:\"\"; }\n\n.bp3-icon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-filter-keep::before{\n  content:\"\"; }\n\n.bp3-icon-filter-list::before{\n  content:\"\"; }\n\n.bp3-icon-filter-open::before{\n  content:\"\"; }\n\n.bp3-icon-filter-remove::before{\n  content:\"\"; }\n\n.bp3-icon-flag::before{\n  content:\"⚑\"; }\n\n.bp3-icon-flame::before{\n  content:\"\"; }\n\n.bp3-icon-flash::before{\n  content:\"\"; }\n\n.bp3-icon-floppy-disk::before{\n  content:\"\"; }\n\n.bp3-icon-flow-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flow-end::before{\n  content:\"\"; }\n\n.bp3-icon-flow-linear::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flows::before{\n  content:\"\"; }\n\n.bp3-icon-folder-close::before{\n  content:\"\"; }\n\n.bp3-icon-folder-new::before{\n  content:\"\"; }\n\n.bp3-icon-folder-open::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared-open::before{\n  content:\"\"; }\n\n.bp3-icon-follower::before{\n  content:\"\"; }\n\n.bp3-icon-following::before{\n  content:\"\"; }\n\n.bp3-icon-font::before{\n  content:\"\"; }\n\n.bp3-icon-fork::before{\n  content:\"\"; }\n\n.bp3-icon-form::before{\n  content:\"\"; }\n\n.bp3-icon-full-circle::before{\n  content:\"\"; }\n\n.bp3-icon-full-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-fullscreen::before{\n  content:\"\"; }\n\n.bp3-icon-function::before{\n  content:\"\"; }\n\n.bp3-icon-gantt-chart::before{\n  content:\"\"; }\n\n.bp3-icon-geolocation::before{\n  content:\"\"; }\n\n.bp3-icon-geosearch::before{\n  content:\"\"; }\n\n.bp3-icon-git-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-commit::before{\n  content:\"\"; }\n\n.bp3-icon-git-merge::before{\n  content:\"\"; }\n\n.bp3-icon-git-new-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-pull::before{\n  content:\"\"; }\n\n.bp3-icon-git-push::before{\n  content:\"\"; }\n\n.bp3-icon-git-repo::before{\n  content:\"\"; }\n\n.bp3-icon-glass::before{\n  content:\"\"; }\n\n.bp3-icon-globe::before{\n  content:\"\"; }\n\n.bp3-icon-globe-network::before{\n  content:\"\"; }\n\n.bp3-icon-graph::before{\n  content:\"\"; }\n\n.bp3-icon-graph-remove::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-grid::before{\n  content:\"\"; }\n\n.bp3-icon-grid-view::before{\n  content:\"\"; }\n\n.bp3-icon-group-objects::before{\n  content:\"\"; }\n\n.bp3-icon-grouped-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-hand::before{\n  content:\"\"; }\n\n.bp3-icon-hand-down::before{\n  content:\"\"; }\n\n.bp3-icon-hand-left::before{\n  content:\"\"; }\n\n.bp3-icon-hand-right::before{\n  content:\"\"; }\n\n.bp3-icon-hand-up::before{\n  content:\"\"; }\n\n.bp3-icon-header::before{\n  content:\"\"; }\n\n.bp3-icon-header-one::before{\n  content:\"\"; }\n\n.bp3-icon-header-two::before{\n  content:\"\"; }\n\n.bp3-icon-headset::before{\n  content:\"\"; }\n\n.bp3-icon-heart::before{\n  content:\"♥\"; }\n\n.bp3-icon-heart-broken::before{\n  content:\"\"; }\n\n.bp3-icon-heat-grid::before{\n  content:\"\"; }\n\n.bp3-icon-heatmap::before{\n  content:\"\"; }\n\n.bp3-icon-help::before{\n  content:\"?\"; }\n\n.bp3-icon-helper-management::before{\n  content:\"\"; }\n\n.bp3-icon-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-history::before{\n  content:\"\"; }\n\n.bp3-icon-home::before{\n  content:\"⌂\"; }\n\n.bp3-icon-horizontal-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-id-number::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-left::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-right::before{\n  content:\"\"; }\n\n.bp3-icon-import::before{\n  content:\"\"; }\n\n.bp3-icon-inbox::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-geo::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-search::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-update::before{\n  content:\"\"; }\n\n.bp3-icon-info-sign::before{\n  content:\"ℹ\"; }\n\n.bp3-icon-inheritance::before{\n  content:\"\"; }\n\n.bp3-icon-inner-join::before{\n  content:\"\"; }\n\n.bp3-icon-insert::before{\n  content:\"\"; }\n\n.bp3-icon-intersection::before{\n  content:\"\"; }\n\n.bp3-icon-ip-address::before{\n  content:\"\"; }\n\n.bp3-icon-issue::before{\n  content:\"\"; }\n\n.bp3-icon-issue-closed::before{\n  content:\"\"; }\n\n.bp3-icon-issue-new::before{\n  content:\"\"; }\n\n.bp3-icon-italic::before{\n  content:\"\"; }\n\n.bp3-icon-join-table::before{\n  content:\"\"; }\n\n.bp3-icon-key::before{\n  content:\"\"; }\n\n.bp3-icon-key-backspace::before{\n  content:\"\"; }\n\n.bp3-icon-key-command::before{\n  content:\"\"; }\n\n.bp3-icon-key-control::before{\n  content:\"\"; }\n\n.bp3-icon-key-delete::before{\n  content:\"\"; }\n\n.bp3-icon-key-enter::before{\n  content:\"\"; }\n\n.bp3-icon-key-escape::before{\n  content:\"\"; }\n\n.bp3-icon-key-option::before{\n  content:\"\"; }\n\n.bp3-icon-key-shift::before{\n  content:\"\"; }\n\n.bp3-icon-key-tab::before{\n  content:\"\"; }\n\n.bp3-icon-known-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-lab-test::before{\n  content:\"\"; }\n\n.bp3-icon-label::before{\n  content:\"\"; }\n\n.bp3-icon-layer::before{\n  content:\"\"; }\n\n.bp3-icon-layers::before{\n  content:\"\"; }\n\n.bp3-icon-layout::before{\n  content:\"\"; }\n\n.bp3-icon-layout-auto::before{\n  content:\"\"; }\n\n.bp3-icon-layout-balloon::before{\n  content:\"\"; }\n\n.bp3-icon-layout-circle::before{\n  content:\"\"; }\n\n.bp3-icon-layout-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-group-by::before{\n  content:\"\"; }\n\n.bp3-icon-layout-hierarchy::before{\n  content:\"\"; }\n\n.bp3-icon-layout-linear::before{\n  content:\"\"; }\n\n.bp3-icon-layout-skew-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-sorted-clusters::before{\n  content:\"\"; }\n\n.bp3-icon-learning::before{\n  content:\"\"; }\n\n.bp3-icon-left-join::before{\n  content:\"\"; }\n\n.bp3-icon-less-than::before{\n  content:\"\"; }\n\n.bp3-icon-less-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-lifesaver::before{\n  content:\"\"; }\n\n.bp3-icon-lightbulb::before{\n  content:\"\"; }\n\n.bp3-icon-link::before{\n  content:\"\"; }\n\n.bp3-icon-list::before{\n  content:\"☰\"; }\n\n.bp3-icon-list-columns::before{\n  content:\"\"; }\n\n.bp3-icon-list-detail-view::before{\n  content:\"\"; }\n\n.bp3-icon-locate::before{\n  content:\"\"; }\n\n.bp3-icon-lock::before{\n  content:\"\"; }\n\n.bp3-icon-log-in::before{\n  content:\"\"; }\n\n.bp3-icon-log-out::before{\n  content:\"\"; }\n\n.bp3-icon-manual::before{\n  content:\"\"; }\n\n.bp3-icon-manually-entered-data::before{\n  content:\"\"; }\n\n.bp3-icon-map::before{\n  content:\"\"; }\n\n.bp3-icon-map-create::before{\n  content:\"\"; }\n\n.bp3-icon-map-marker::before{\n  content:\"\"; }\n\n.bp3-icon-maximize::before{\n  content:\"\"; }\n\n.bp3-icon-media::before{\n  content:\"\"; }\n\n.bp3-icon-menu::before{\n  content:\"\"; }\n\n.bp3-icon-menu-closed::before{\n  content:\"\"; }\n\n.bp3-icon-menu-open::before{\n  content:\"\"; }\n\n.bp3-icon-merge-columns::before{\n  content:\"\"; }\n\n.bp3-icon-merge-links::before{\n  content:\"\"; }\n\n.bp3-icon-minimize::before{\n  content:\"\"; }\n\n.bp3-icon-minus::before{\n  content:\"−\"; }\n\n.bp3-icon-mobile-phone::before{\n  content:\"\"; }\n\n.bp3-icon-mobile-video::before{\n  content:\"\"; }\n\n.bp3-icon-moon::before{\n  content:\"\"; }\n\n.bp3-icon-more::before{\n  content:\"\"; }\n\n.bp3-icon-mountain::before{\n  content:\"\"; }\n\n.bp3-icon-move::before{\n  content:\"\"; }\n\n.bp3-icon-mugshot::before{\n  content:\"\"; }\n\n.bp3-icon-multi-select::before{\n  content:\"\"; }\n\n.bp3-icon-music::before{\n  content:\"\"; }\n\n.bp3-icon-new-drawing::before{\n  content:\"\"; }\n\n.bp3-icon-new-grid-item::before{\n  content:\"\"; }\n\n.bp3-icon-new-layer::before{\n  content:\"\"; }\n\n.bp3-icon-new-layers::before{\n  content:\"\"; }\n\n.bp3-icon-new-link::before{\n  content:\"\"; }\n\n.bp3-icon-new-object::before{\n  content:\"\"; }\n\n.bp3-icon-new-person::before{\n  content:\"\"; }\n\n.bp3-icon-new-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-new-text-box::before{\n  content:\"\"; }\n\n.bp3-icon-ninja::before{\n  content:\"\"; }\n\n.bp3-icon-not-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-notifications::before{\n  content:\"\"; }\n\n.bp3-icon-notifications-updated::before{\n  content:\"\"; }\n\n.bp3-icon-numbered-list::before{\n  content:\"\"; }\n\n.bp3-icon-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-office::before{\n  content:\"\"; }\n\n.bp3-icon-offline::before{\n  content:\"\"; }\n\n.bp3-icon-oil-field::before{\n  content:\"\"; }\n\n.bp3-icon-one-column::before{\n  content:\"\"; }\n\n.bp3-icon-outdated::before{\n  content:\"\"; }\n\n.bp3-icon-page-layout::before{\n  content:\"\"; }\n\n.bp3-icon-panel-stats::before{\n  content:\"\"; }\n\n.bp3-icon-panel-table::before{\n  content:\"\"; }\n\n.bp3-icon-paperclip::before{\n  content:\"\"; }\n\n.bp3-icon-paragraph::before{\n  content:\"\"; }\n\n.bp3-icon-path::before{\n  content:\"\"; }\n\n.bp3-icon-path-search::before{\n  content:\"\"; }\n\n.bp3-icon-pause::before{\n  content:\"\"; }\n\n.bp3-icon-people::before{\n  content:\"\"; }\n\n.bp3-icon-percentage::before{\n  content:\"\"; }\n\n.bp3-icon-person::before{\n  content:\"\"; }\n\n.bp3-icon-phone::before{\n  content:\"☎\"; }\n\n.bp3-icon-pie-chart::before{\n  content:\"\"; }\n\n.bp3-icon-pin::before{\n  content:\"\"; }\n\n.bp3-icon-pivot::before{\n  content:\"\"; }\n\n.bp3-icon-pivot-table::before{\n  content:\"\"; }\n\n.bp3-icon-play::before{\n  content:\"\"; }\n\n.bp3-icon-plus::before{\n  content:\"+\"; }\n\n.bp3-icon-polygon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-power::before{\n  content:\"\"; }\n\n.bp3-icon-predictive-analysis::before{\n  content:\"\"; }\n\n.bp3-icon-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-presentation::before{\n  content:\"\"; }\n\n.bp3-icon-print::before{\n  content:\"⎙\"; }\n\n.bp3-icon-projects::before{\n  content:\"\"; }\n\n.bp3-icon-properties::before{\n  content:\"\"; }\n\n.bp3-icon-property::before{\n  content:\"\"; }\n\n.bp3-icon-publish-function::before{\n  content:\"\"; }\n\n.bp3-icon-pulse::before{\n  content:\"\"; }\n\n.bp3-icon-random::before{\n  content:\"\"; }\n\n.bp3-icon-record::before{\n  content:\"\"; }\n\n.bp3-icon-redo::before{\n  content:\"\"; }\n\n.bp3-icon-refresh::before{\n  content:\"\"; }\n\n.bp3-icon-regression-chart::before{\n  content:\"\"; }\n\n.bp3-icon-remove::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-repeat::before{\n  content:\"\"; }\n\n.bp3-icon-reset::before{\n  content:\"\"; }\n\n.bp3-icon-resolve::before{\n  content:\"\"; }\n\n.bp3-icon-rig::before{\n  content:\"\"; }\n\n.bp3-icon-right-join::before{\n  content:\"\"; }\n\n.bp3-icon-ring::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-document::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-page::before{\n  content:\"\"; }\n\n.bp3-icon-satellite::before{\n  content:\"\"; }\n\n.bp3-icon-saved::before{\n  content:\"\"; }\n\n.bp3-icon-scatter-plot::before{\n  content:\"\"; }\n\n.bp3-icon-search::before{\n  content:\"\"; }\n\n.bp3-icon-search-around::before{\n  content:\"\"; }\n\n.bp3-icon-search-template::before{\n  content:\"\"; }\n\n.bp3-icon-search-text::before{\n  content:\"\"; }\n\n.bp3-icon-segmented-control::before{\n  content:\"\"; }\n\n.bp3-icon-select::before{\n  content:\"\"; }\n\n.bp3-icon-selection::before{\n  content:\"⦿\"; }\n\n.bp3-icon-send-to::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-graph::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-map::before{\n  content:\"\"; }\n\n.bp3-icon-series-add::before{\n  content:\"\"; }\n\n.bp3-icon-series-configuration::before{\n  content:\"\"; }\n\n.bp3-icon-series-derived::before{\n  content:\"\"; }\n\n.bp3-icon-series-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-series-search::before{\n  content:\"\"; }\n\n.bp3-icon-settings::before{\n  content:\"\"; }\n\n.bp3-icon-share::before{\n  content:\"\"; }\n\n.bp3-icon-shield::before{\n  content:\"\"; }\n\n.bp3-icon-shop::before{\n  content:\"\"; }\n\n.bp3-icon-shopping-cart::before{\n  content:\"\"; }\n\n.bp3-icon-signal-search::before{\n  content:\"\"; }\n\n.bp3-icon-sim-card::before{\n  content:\"\"; }\n\n.bp3-icon-slash::before{\n  content:\"\"; }\n\n.bp3-icon-small-cross::before{\n  content:\"\"; }\n\n.bp3-icon-small-minus::before{\n  content:\"\"; }\n\n.bp3-icon-small-plus::before{\n  content:\"\"; }\n\n.bp3-icon-small-tick::before{\n  content:\"\"; }\n\n.bp3-icon-snowflake::before{\n  content:\"\"; }\n\n.bp3-icon-social-media::before{\n  content:\"\"; }\n\n.bp3-icon-sort::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-asc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-split-columns::before{\n  content:\"\"; }\n\n.bp3-icon-square::before{\n  content:\"\"; }\n\n.bp3-icon-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-star::before{\n  content:\"★\"; }\n\n.bp3-icon-star-empty::before{\n  content:\"☆\"; }\n\n.bp3-icon-step-backward::before{\n  content:\"\"; }\n\n.bp3-icon-step-chart::before{\n  content:\"\"; }\n\n.bp3-icon-step-forward::before{\n  content:\"\"; }\n\n.bp3-icon-stop::before{\n  content:\"\"; }\n\n.bp3-icon-stopwatch::before{\n  content:\"\"; }\n\n.bp3-icon-strikethrough::before{\n  content:\"\"; }\n\n.bp3-icon-style::before{\n  content:\"\"; }\n\n.bp3-icon-swap-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-swap-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-circle::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-cross::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-diamond::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-square::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-down::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-up::before{\n  content:\"\"; }\n\n.bp3-icon-tag::before{\n  content:\"\"; }\n\n.bp3-icon-take-action::before{\n  content:\"\"; }\n\n.bp3-icon-taxi::before{\n  content:\"\"; }\n\n.bp3-icon-text-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-th::before{\n  content:\"\"; }\n\n.bp3-icon-th-derived::before{\n  content:\"\"; }\n\n.bp3-icon-th-disconnect::before{\n  content:\"\"; }\n\n.bp3-icon-th-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-th-list::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-down::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-up::before{\n  content:\"\"; }\n\n.bp3-icon-tick::before{\n  content:\"✓\"; }\n\n.bp3-icon-tick-circle::before{\n  content:\"\"; }\n\n.bp3-icon-time::before{\n  content:\"⏲\"; }\n\n.bp3-icon-timeline-area-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-events::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-line-chart::before{\n  content:\"\"; }\n\n.bp3-icon-tint::before{\n  content:\"\"; }\n\n.bp3-icon-torch::before{\n  content:\"\"; }\n\n.bp3-icon-tractor::before{\n  content:\"\"; }\n\n.bp3-icon-train::before{\n  content:\"\"; }\n\n.bp3-icon-translate::before{\n  content:\"\"; }\n\n.bp3-icon-trash::before{\n  content:\"\"; }\n\n.bp3-icon-tree::before{\n  content:\"\"; }\n\n.bp3-icon-trending-down::before{\n  content:\"\"; }\n\n.bp3-icon-trending-up::before{\n  content:\"\"; }\n\n.bp3-icon-truck::before{\n  content:\"\"; }\n\n.bp3-icon-two-columns::before{\n  content:\"\"; }\n\n.bp3-icon-unarchive::before{\n  content:\"\"; }\n\n.bp3-icon-underline::before{\n  content:\"⎁\"; }\n\n.bp3-icon-undo::before{\n  content:\"⎌\"; }\n\n.bp3-icon-ungroup-objects::before{\n  content:\"\"; }\n\n.bp3-icon-unknown-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-unlock::before{\n  content:\"\"; }\n\n.bp3-icon-unpin::before{\n  content:\"\"; }\n\n.bp3-icon-unresolve::before{\n  content:\"\"; }\n\n.bp3-icon-updated::before{\n  content:\"\"; }\n\n.bp3-icon-upload::before{\n  content:\"\"; }\n\n.bp3-icon-user::before{\n  content:\"\"; }\n\n.bp3-icon-variable::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-video::before{\n  content:\"\"; }\n\n.bp3-icon-volume-down::before{\n  content:\"\"; }\n\n.bp3-icon-volume-off::before{\n  content:\"\"; }\n\n.bp3-icon-volume-up::before{\n  content:\"\"; }\n\n.bp3-icon-walk::before{\n  content:\"\"; }\n\n.bp3-icon-warning-sign::before{\n  content:\"\"; }\n\n.bp3-icon-waterfall-chart::before{\n  content:\"\"; }\n\n.bp3-icon-widget::before{\n  content:\"\"; }\n\n.bp3-icon-widget-button::before{\n  content:\"\"; }\n\n.bp3-icon-widget-footer::before{\n  content:\"\"; }\n\n.bp3-icon-widget-header::before{\n  content:\"\"; }\n\n.bp3-icon-wrench::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-in::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-out::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-to-fit::before{\n  content:\"\"; }\n.bp3-submenu > .bp3-popover-wrapper{\n  display:block; }\n\n.bp3-submenu .bp3-popover-target{\n  display:block; }\n  .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{ }\n\n.bp3-submenu.bp3-popover{\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0 5px; }\n  .bp3-submenu.bp3-popover > .bp3-popover-content{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-submenu.bp3-popover, .bp3-submenu.bp3-popover.bp3-dark{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-dark .bp3-submenu.bp3-popover > .bp3-popover-content, .bp3-submenu.bp3-popover.bp3-dark > .bp3-popover-content{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n.bp3-menu{\n  background:#ffffff;\n  border-radius:3px;\n  color:#182026;\n  list-style:none;\n  margin:0;\n  min-width:180px;\n  padding:5px;\n  text-align:left; }\n\n.bp3-menu-divider{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px; }\n  .bp3-dark .bp3-menu-divider{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-menu-item{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  border-radius:2px;\n  color:inherit;\n  line-height:20px;\n  padding:5px 7px;\n  text-decoration:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-menu-item > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-menu-item > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > *{\n    margin-right:7px; }\n  .bp3-menu-item:empty::before,\n  .bp3-menu-item > :last-child{\n    margin-right:0; }\n  .bp3-menu-item > .bp3-fill{\n    word-break:break-word; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    background-color:rgba(167, 182, 194, 0.3);\n    cursor:pointer;\n    text-decoration:none; }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-dark .bp3-menu-item{\n    color:inherit; }\n    .bp3-dark .bp3-menu-item:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n      background-color:rgba(138, 155, 168, 0.15);\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-disabled{\n      background-color:inherit;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-menu-item.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-primary::before, .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary:active, .bp3-menu-item.bp3-intent-primary:active::before, .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-success::before, .bp3-menu-item.bp3-intent-success::after,\n    .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-menu-item.bp3-intent-success:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success:active, .bp3-menu-item.bp3-intent-success:active::before, .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-warning::before, .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning:active, .bp3-menu-item.bp3-intent-warning:active::before, .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-danger::before, .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger:active, .bp3-menu-item.bp3-intent-danger:active::before, .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    margin-right:7px; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > .bp3-icon{\n    color:#5c7080;\n    margin-top:2px; }\n  .bp3-menu-item .bp3-menu-item-label{\n    color:#5c7080; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    color:inherit; }\n  .bp3-menu-item.bp3-active, .bp3-menu-item:active{\n    background-color:rgba(115, 134, 148, 0.3); }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit !important;\n    color:rgba(92, 112, 128, 0.6) !important;\n    cursor:not-allowed !important;\n    outline:none !important; }\n    .bp3-menu-item.bp3-disabled::before,\n    .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-large .bp3-menu-item{\n    font-size:16px;\n    line-height:22px;\n    padding:9px 7px; }\n    .bp3-large .bp3-menu-item .bp3-icon{\n      margin-top:3px; }\n    .bp3-large .bp3-menu-item::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      margin-right:10px;\n      margin-top:1px; }\n\nbutton.bp3-menu-item{\n  background:none;\n  border:none;\n  text-align:left;\n  width:100%; }\n.bp3-menu-header{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px;\n  cursor:default;\n  padding-left:2px; }\n  .bp3-dark .bp3-menu-header{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n  .bp3-menu-header:first-of-type{\n    border-top:none; }\n  .bp3-menu-header > h6{\n    color:#182026;\n    font-weight:600;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    line-height:17px;\n    margin:0;\n    padding:10px 7px 0 1px; }\n    .bp3-dark .bp3-menu-header > h6{\n      color:#f5f8fa; }\n  .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n  .bp3-large .bp3-menu-header > h6{\n    font-size:18px;\n    padding-bottom:5px;\n    padding-top:15px; }\n  .bp3-large .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n\n.bp3-dark .bp3-menu{\n  background:#30404d;\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-menu-item{ }\n  .bp3-dark .bp3-menu-item.bp3-intent-primary{\n    color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary::before, .bp3-dark .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary:active, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-success{\n    color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success::before, .bp3-dark .bp3-menu-item.bp3-intent-success::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success:active, .bp3-dark .bp3-menu-item.bp3-intent-success:active::before, .bp3-dark .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-warning{\n    color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning::before, .bp3-dark .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning:active, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-danger{\n    color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger::before, .bp3-dark .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger:active, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item::before,\n  .bp3-dark .bp3-menu-item > .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item .bp3-menu-item-label{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item.bp3-active, .bp3-dark .bp3-menu-item:active{\n    background-color:rgba(138, 155, 168, 0.3); }\n  .bp3-dark .bp3-menu-item.bp3-disabled{\n    color:rgba(167, 182, 194, 0.6) !important; }\n    .bp3-dark .bp3-menu-item.bp3-disabled::before,\n    .bp3-dark .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-dark .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(167, 182, 194, 0.6) !important; }\n\n.bp3-dark .bp3-menu-divider,\n.bp3-dark .bp3-menu-header{\n  border-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-dark .bp3-menu-header > h6{\n  color:#f5f8fa; }\n\n.bp3-label .bp3-menu{\n  margin-top:5px; }\n.bp3-navbar{\n  background-color:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  height:50px;\n  padding:0 15px;\n  position:relative;\n  width:100%;\n  z-index:10; }\n  .bp3-navbar.bp3-dark,\n  .bp3-dark .bp3-navbar{\n    background-color:#394b59; }\n  .bp3-navbar.bp3-dark{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-navbar{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-navbar.bp3-fixed-top{\n    left:0;\n    position:fixed;\n    right:0;\n    top:0; }\n\n.bp3-navbar-heading{\n  font-size:16px;\n  margin-right:15px; }\n\n.bp3-navbar-group{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:50px; }\n  .bp3-navbar-group.bp3-align-left{\n    float:left; }\n  .bp3-navbar-group.bp3-align-right{\n    float:right; }\n\n.bp3-navbar-divider{\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  height:20px;\n  margin:0 10px; }\n  .bp3-dark .bp3-navbar-divider{\n    border-left-color:rgba(255, 255, 255, 0.15); }\n.bp3-non-ideal-state{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  height:100%;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  text-align:center;\n  width:100%; }\n  .bp3-non-ideal-state > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-non-ideal-state > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-non-ideal-state::before,\n  .bp3-non-ideal-state > *{\n    margin-bottom:20px; }\n  .bp3-non-ideal-state:empty::before,\n  .bp3-non-ideal-state > :last-child{\n    margin-bottom:0; }\n  .bp3-non-ideal-state > *{\n    max-width:400px; }\n\n.bp3-non-ideal-state-visual{\n  color:rgba(92, 112, 128, 0.6);\n  font-size:60px; }\n  .bp3-dark .bp3-non-ideal-state-visual{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-overflow-list{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:nowrap;\n      flex-wrap:nowrap;\n  min-width:0; }\n\n.bp3-overflow-list-spacer{\n  -ms-flex-negative:1;\n      flex-shrink:1;\n  width:1px; }\n\nbody.bp3-overlay-open{\n  overflow:hidden; }\n\n.bp3-overlay{\n  bottom:0;\n  left:0;\n  position:static;\n  right:0;\n  top:0;\n  z-index:20; }\n  .bp3-overlay:not(.bp3-overlay-open){\n    pointer-events:none; }\n  .bp3-overlay.bp3-overlay-container{\n    overflow:hidden;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-scroll-container{\n    overflow:auto;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-scroll-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-inline{\n    display:inline;\n    overflow:visible; }\n\n.bp3-overlay-content{\n  position:fixed;\n  z-index:20; }\n  .bp3-overlay-inline .bp3-overlay-content,\n  .bp3-overlay-scroll-container .bp3-overlay-content{\n    position:absolute; }\n\n.bp3-overlay-backdrop{\n  bottom:0;\n  left:0;\n  position:fixed;\n  right:0;\n  top:0;\n  opacity:1;\n  background-color:rgba(16, 22, 26, 0.7);\n  overflow:auto;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  z-index:20; }\n  .bp3-overlay-backdrop.bp3-overlay-enter, .bp3-overlay-backdrop.bp3-overlay-appear{\n    opacity:0; }\n  .bp3-overlay-backdrop.bp3-overlay-enter-active, .bp3-overlay-backdrop.bp3-overlay-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop.bp3-overlay-exit{\n    opacity:1; }\n  .bp3-overlay-backdrop.bp3-overlay-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop:focus{\n    outline:none; }\n  .bp3-overlay-inline .bp3-overlay-backdrop{\n    position:absolute; }\n.bp3-panel-stack{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-view{\n    background-color:#30404d; }\n  .bp3-panel-stack-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter, .bp3-panel-stack-push .bp3-panel-stack-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter-active, .bp3-panel-stack-push .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter, .bp3-panel-stack-pop .bp3-panel-stack-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter-active, .bp3-panel-stack-pop .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-panel-stack2{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack2-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack2-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack2-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack2-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack2-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack2-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-view{\n    background-color:#30404d; }\n  .bp3-panel-stack2-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter, .bp3-panel-stack2-push .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter-active, .bp3-panel-stack2-push .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter, .bp3-panel-stack2-pop .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter-active, .bp3-panel-stack2-pop .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-popover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  border-radius:3px;\n  display:inline-block;\n  z-index:20; }\n  .bp3-popover .bp3-popover-arrow{\n    height:30px;\n    position:absolute;\n    width:30px; }\n    .bp3-popover .bp3-popover-arrow::before{\n      height:20px;\n      margin:5px;\n      width:20px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover{\n    margin-bottom:17px;\n    margin-top:-17px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n      bottom:-11px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover{\n    margin-left:17px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n      left:-11px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover{\n    margin-top:17px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n      top:-11px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover{\n    margin-left:-17px;\n    margin-right:17px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n      right:-11px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-popover > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-popover > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n    top:-0.3934px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n    right:-0.3934px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n    left:-0.3934px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n    bottom:-0.3934px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-popover .bp3-popover-content{\n    background:#ffffff;\n    color:inherit; }\n  .bp3-popover .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-popover .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-popover .bp3-popover-arrow-fill{\n    fill:#ffffff; }\n  .bp3-popover-enter > .bp3-popover, .bp3-popover-appear > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3); }\n  .bp3-popover-enter-active > .bp3-popover, .bp3-popover-appear-active > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover-exit > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover .bp3-popover-content{\n    border-radius:3px;\n    position:relative; }\n  .bp3-popover.bp3-popover-content-sizing .bp3-popover-content{\n    max-width:350px;\n    padding:20px; }\n  .bp3-popover-target + .bp3-overlay .bp3-popover.bp3-popover-content-sizing{\n    width:350px; }\n  .bp3-popover.bp3-minimal{\n    margin:0 !important; }\n    .bp3-popover.bp3-minimal .bp3-popover-arrow{\n      display:none; }\n    .bp3-popover.bp3-minimal.bp3-popover{\n      -webkit-transform:scale(1);\n              transform:scale(1); }\n      .bp3-popover-enter > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-enter-active > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n      .bp3-popover-exit > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-exit-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover.bp3-dark,\n  .bp3-dark .bp3-popover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-popover .bp3-popover-content{\n      background:#30404d;\n      color:inherit; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-popover .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-fill{\n      fill:#30404d; }\n\n.bp3-popover-arrow::before{\n  border-radius:2px;\n  content:\"\";\n  display:block;\n  position:absolute;\n  -webkit-transform:rotate(45deg);\n          transform:rotate(45deg); }\n\n.bp3-tether-pinned .bp3-popover-arrow{\n  display:none; }\n\n.bp3-popover-backdrop{\n  background:rgba(255, 255, 255, 0); }\n\n.bp3-transition-container{\n  opacity:1;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  z-index:20; }\n  .bp3-transition-container.bp3-popover-enter, .bp3-transition-container.bp3-popover-appear{\n    opacity:0; }\n  .bp3-transition-container.bp3-popover-enter-active, .bp3-transition-container.bp3-popover-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container.bp3-popover-exit{\n    opacity:1; }\n  .bp3-transition-container.bp3-popover-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container:focus{\n    outline:none; }\n  .bp3-transition-container.bp3-popover-leave .bp3-popover-content{\n    pointer-events:none; }\n  .bp3-transition-container[data-x-out-of-boundaries]{\n    display:none; }\n\nspan.bp3-popover-target{\n  display:inline-block; }\n\n.bp3-popover-wrapper.bp3-fill{\n  width:100%; }\n\n.bp3-portal{\n  left:0;\n  position:absolute;\n  right:0;\n  top:0; }\n@-webkit-keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n@keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n\n.bp3-progress-bar{\n  background:rgba(92, 112, 128, 0.2);\n  border-radius:40px;\n  display:block;\n  height:8px;\n  overflow:hidden;\n  position:relative;\n  width:100%; }\n  .bp3-progress-bar .bp3-progress-meter{\n    background:linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%);\n    background-color:rgba(92, 112, 128, 0.8);\n    background-size:30px 30px;\n    border-radius:40px;\n    height:100%;\n    position:absolute;\n    -webkit-transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:100%; }\n  .bp3-progress-bar:not(.bp3-no-animation):not(.bp3-no-stripes) .bp3-progress-meter{\n    animation:linear-progress-bar-stripes 300ms linear infinite reverse; }\n  .bp3-progress-bar.bp3-no-stripes .bp3-progress-meter{\n    background-image:none; }\n\n.bp3-dark .bp3-progress-bar{\n  background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-progress-bar .bp3-progress-meter{\n    background-color:#8a9ba8; }\n\n.bp3-progress-bar.bp3-intent-primary .bp3-progress-meter{\n  background-color:#137cbd; }\n\n.bp3-progress-bar.bp3-intent-success .bp3-progress-meter{\n  background-color:#0f9960; }\n\n.bp3-progress-bar.bp3-intent-warning .bp3-progress-meter{\n  background-color:#d9822b; }\n\n.bp3-progress-bar.bp3-intent-danger .bp3-progress-meter{\n  background-color:#db3737; }\n@-webkit-keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n@keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n.bp3-skeleton{\n  -webkit-animation:1000ms linear infinite alternate skeleton-glow;\n          animation:1000ms linear infinite alternate skeleton-glow;\n  background:rgba(206, 217, 224, 0.2);\n  background-clip:padding-box !important;\n  border-color:rgba(206, 217, 224, 0.2) !important;\n  border-radius:2px;\n  -webkit-box-shadow:none !important;\n          box-shadow:none !important;\n  color:transparent !important;\n  cursor:default;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-skeleton::before, .bp3-skeleton::after,\n  .bp3-skeleton *{\n    visibility:hidden !important; }\n.bp3-slider{\n  height:40px;\n  min-width:150px;\n  width:100%;\n  cursor:default;\n  outline:none;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-slider:hover{\n    cursor:pointer; }\n  .bp3-slider:active{\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-slider.bp3-disabled{\n    cursor:not-allowed;\n    opacity:0.5; }\n  .bp3-slider.bp3-slider-unlabeled{\n    height:16px; }\n\n.bp3-slider-track,\n.bp3-slider-progress{\n  height:6px;\n  left:0;\n  right:0;\n  top:5px;\n  position:absolute; }\n\n.bp3-slider-track{\n  border-radius:3px;\n  overflow:hidden; }\n\n.bp3-slider-progress{\n  background:rgba(92, 112, 128, 0.2); }\n  .bp3-dark .bp3-slider-progress{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-slider-progress.bp3-intent-primary{\n    background-color:#137cbd; }\n  .bp3-slider-progress.bp3-intent-success{\n    background-color:#0f9960; }\n  .bp3-slider-progress.bp3-intent-warning{\n    background-color:#d9822b; }\n  .bp3-slider-progress.bp3-intent-danger{\n    background-color:#db3737; }\n\n.bp3-slider-handle{\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n  cursor:pointer;\n  height:16px;\n  left:0;\n  position:absolute;\n  top:0;\n  width:16px; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-slider-handle:active, .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-slider-handle:disabled, .bp3-slider-handle.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-slider-handle:disabled.bp3-active, .bp3-slider-handle:disabled.bp3-active:hover, .bp3-slider-handle.bp3-disabled.bp3-active, .bp3-slider-handle.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n  .bp3-slider-handle:focus{\n    z-index:1; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n    cursor:-webkit-grab;\n    cursor:grab;\n    z-index:2; }\n  .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-disabled .bp3-slider-handle{\n    background:#bfccd6;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    pointer-events:none; }\n  .bp3-dark .bp3-slider-handle{\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover, .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-slider-handle:disabled, .bp3-dark .bp3-slider-handle.bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-slider-handle:disabled.bp3-active, .bp3-dark .bp3-slider-handle.bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-slider-handle .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-slider-handle, .bp3-dark .bp3-slider-handle:hover{\n      background-color:#394b59; }\n    .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#293742; }\n  .bp3-dark .bp3-disabled .bp3-slider-handle{\n    background:#5c7080;\n    border-color:#5c7080;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-slider-handle .bp3-slider-label{\n    background:#394b59;\n    border-radius:3px;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n    color:#f5f8fa;\n    margin-left:8px; }\n    .bp3-dark .bp3-slider-handle .bp3-slider-label{\n      background:#e1e8ed;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n      color:#394b59; }\n    .bp3-disabled .bp3-slider-handle .bp3-slider-label{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-slider-handle.bp3-start, .bp3-slider-handle.bp3-end{\n    width:8px; }\n  .bp3-slider-handle.bp3-start{\n    border-bottom-right-radius:0;\n    border-top-right-radius:0; }\n  .bp3-slider-handle.bp3-end{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0;\n    margin-left:8px; }\n    .bp3-slider-handle.bp3-end .bp3-slider-label{\n      margin-left:0; }\n\n.bp3-slider-label{\n  -webkit-transform:translate(-50%, 20px);\n          transform:translate(-50%, 20px);\n  display:inline-block;\n  font-size:12px;\n  line-height:1;\n  padding:2px 5px;\n  position:absolute;\n  vertical-align:top; }\n\n.bp3-slider.bp3-vertical{\n  height:150px;\n  min-width:40px;\n  width:40px; }\n  .bp3-slider.bp3-vertical .bp3-slider-track,\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    bottom:0;\n    height:auto;\n    left:5px;\n    top:0;\n    width:6px; }\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    top:auto; }\n  .bp3-slider.bp3-vertical .bp3-slider-label{\n    -webkit-transform:translate(20px, 50%);\n            transform:translate(20px, 50%); }\n  .bp3-slider.bp3-vertical .bp3-slider-handle{\n    top:auto; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle .bp3-slider-label{\n      margin-left:0;\n      margin-top:-8px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end, .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      height:8px;\n      margin-left:0;\n      width:16px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      border-bottom-right-radius:3px;\n      border-top-left-radius:0; }\n      .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start .bp3-slider-label{\n        -webkit-transform:translate(20px);\n                transform:translate(20px); }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end{\n      border-bottom-left-radius:0;\n      border-bottom-right-radius:0;\n      border-top-left-radius:3px;\n      margin-bottom:8px; }\n\n@-webkit-keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n@keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n.bp3-spinner{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  overflow:visible;\n  vertical-align:middle; }\n  .bp3-spinner svg{\n    display:block; }\n  .bp3-spinner path{\n    fill-opacity:0; }\n  .bp3-spinner .bp3-spinner-head{\n    stroke:rgba(92, 112, 128, 0.8);\n    stroke-linecap:round;\n    -webkit-transform-origin:center;\n            transform-origin:center;\n    -webkit-transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-spinner .bp3-spinner-track{\n    stroke:rgba(92, 112, 128, 0.2); }\n\n.bp3-spinner-animation{\n  -webkit-animation:pt-spinner-animation 500ms linear infinite;\n          animation:pt-spinner-animation 500ms linear infinite; }\n  .bp3-no-spin > .bp3-spinner-animation{\n    -webkit-animation:none;\n            animation:none; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-head{\n  stroke:#8a9ba8; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-track{\n  stroke:rgba(16, 22, 26, 0.5); }\n\n.bp3-spinner.bp3-intent-primary .bp3-spinner-head{\n  stroke:#137cbd; }\n\n.bp3-spinner.bp3-intent-success .bp3-spinner-head{\n  stroke:#0f9960; }\n\n.bp3-spinner.bp3-intent-warning .bp3-spinner-head{\n  stroke:#d9822b; }\n\n.bp3-spinner.bp3-intent-danger .bp3-spinner-head{\n  stroke:#db3737; }\n.bp3-tabs.bp3-vertical{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-list{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab{\n      border-radius:3px;\n      padding:0 10px;\n      width:100%; }\n      .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab[aria-selected=\"true\"]{\n        background-color:rgba(19, 124, 189, 0.2);\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n      background-color:rgba(19, 124, 189, 0.2);\n      border-radius:3px;\n      bottom:0;\n      height:auto;\n      left:0;\n      right:0;\n      top:0; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-panel{\n    margin-top:0;\n    padding-left:20px; }\n\n.bp3-tab-list{\n  -webkit-box-align:end;\n      -ms-flex-align:end;\n          align-items:flex-end;\n  border:none;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  list-style:none;\n  margin:0;\n  padding:0;\n  position:relative; }\n  .bp3-tab-list > *:not(:last-child){\n    margin-right:20px; }\n\n.bp3-tab{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:#182026;\n  cursor:pointer;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  font-size:14px;\n  line-height:30px;\n  max-width:100%;\n  position:relative;\n  vertical-align:top; }\n  .bp3-tab a{\n    color:inherit;\n    display:block;\n    text-decoration:none; }\n  .bp3-tab-indicator-wrapper ~ .bp3-tab{\n    background-color:transparent !important;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important; }\n  .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-tab[aria-selected=\"true\"]{\n    border-radius:0;\n    -webkit-box-shadow:inset 0 -3px 0 #106ba3;\n            box-shadow:inset 0 -3px 0 #106ba3; }\n  .bp3-tab[aria-selected=\"true\"], .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#106ba3; }\n  .bp3-tab:focus{\n    -moz-outline-radius:0; }\n  .bp3-large > .bp3-tab{\n    font-size:16px;\n    line-height:40px; }\n\n.bp3-tab-panel{\n  margin-top:20px; }\n  .bp3-tab-panel[aria-hidden=\"true\"]{\n    display:none; }\n\n.bp3-tab-indicator-wrapper{\n  left:0;\n  pointer-events:none;\n  position:absolute;\n  top:0;\n  -webkit-transform:translateX(0), translateY(0);\n          transform:translateX(0), translateY(0);\n  -webkit-transition:height, width, -webkit-transform;\n  transition:height, width, -webkit-transform;\n  transition:height, transform, width;\n  transition:height, transform, width, -webkit-transform;\n  -webkit-transition-duration:200ms;\n          transition-duration:200ms;\n  -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n          transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n    background-color:#106ba3;\n    bottom:0;\n    height:3px;\n    left:0;\n    position:absolute;\n    right:0; }\n  .bp3-tab-indicator-wrapper.bp3-no-animation{\n    -webkit-transition:none;\n    transition:none; }\n\n.bp3-dark .bp3-tab{\n  color:#f5f8fa; }\n  .bp3-dark .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"]{\n    -webkit-box-shadow:inset 0 -3px 0 #48aff0;\n            box-shadow:inset 0 -3px 0 #48aff0; }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"], .bp3-dark .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#48aff0; }\n\n.bp3-dark .bp3-tab-indicator{\n  background-color:#48aff0; }\n\n.bp3-flex-expander{\n  -webkit-box-flex:1;\n      -ms-flex:1 1;\n          flex:1 1; }\n.bp3-tag{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#5c7080;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:#f5f8fa;\n  font-size:12px;\n  line-height:16px;\n  max-width:100%;\n  min-height:20px;\n  min-width:20px;\n  padding:2px 6px;\n  position:relative; }\n  .bp3-tag.bp3-interactive{\n    cursor:pointer; }\n    .bp3-tag.bp3-interactive:hover{\n      background-color:rgba(92, 112, 128, 0.85); }\n    .bp3-tag.bp3-interactive.bp3-active, .bp3-tag.bp3-interactive:active{\n      background-color:rgba(92, 112, 128, 0.7); }\n  .bp3-tag > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag::before,\n  .bp3-tag > *{\n    margin-right:4px; }\n  .bp3-tag:empty::before,\n  .bp3-tag > :last-child{\n    margin-right:0; }\n  .bp3-tag:focus{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:0;\n    -moz-outline-radius:6px; }\n  .bp3-tag.bp3-round{\n    border-radius:30px;\n    padding-left:8px;\n    padding-right:8px; }\n  .bp3-dark .bp3-tag{\n    background-color:#bfccd6;\n    color:#182026; }\n    .bp3-dark .bp3-tag.bp3-interactive{\n      cursor:pointer; }\n      .bp3-dark .bp3-tag.bp3-interactive:hover{\n        background-color:rgba(191, 204, 214, 0.85); }\n      .bp3-dark .bp3-tag.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-interactive:active{\n        background-color:rgba(191, 204, 214, 0.7); }\n    .bp3-dark .bp3-tag > .bp3-icon, .bp3-dark .bp3-tag .bp3-icon-standard, .bp3-dark .bp3-tag .bp3-icon-large{\n      fill:currentColor; }\n  .bp3-tag > .bp3-icon, .bp3-tag .bp3-icon-standard, .bp3-tag .bp3-icon-large{\n    fill:#ffffff; }\n  .bp3-tag.bp3-large,\n  .bp3-large .bp3-tag{\n    font-size:14px;\n    line-height:20px;\n    min-height:30px;\n    min-width:30px;\n    padding:5px 10px; }\n    .bp3-tag.bp3-large::before,\n    .bp3-tag.bp3-large > *,\n    .bp3-large .bp3-tag::before,\n    .bp3-large .bp3-tag > *{\n      margin-right:7px; }\n    .bp3-tag.bp3-large:empty::before,\n    .bp3-tag.bp3-large > :last-child,\n    .bp3-large .bp3-tag:empty::before,\n    .bp3-large .bp3-tag > :last-child{\n      margin-right:0; }\n    .bp3-tag.bp3-large.bp3-round,\n    .bp3-large .bp3-tag.bp3-round{\n      padding-left:12px;\n      padding-right:12px; }\n  .bp3-tag.bp3-intent-primary{\n    background:#137cbd;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.85); }\n      .bp3-tag.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.7); }\n  .bp3-tag.bp3-intent-success{\n    background:#0f9960;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.85); }\n      .bp3-tag.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.7); }\n  .bp3-tag.bp3-intent-warning{\n    background:#d9822b;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.85); }\n      .bp3-tag.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.7); }\n  .bp3-tag.bp3-intent-danger{\n    background:#db3737;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.85); }\n      .bp3-tag.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.7); }\n  .bp3-tag.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-tag.bp3-minimal > .bp3-icon, .bp3-tag.bp3-minimal .bp3-icon-standard, .bp3-tag.bp3-minimal .bp3-icon-large{\n    fill:#5c7080; }\n  .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n    background-color:rgba(138, 155, 168, 0.2);\n    color:#182026; }\n    .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n        background-color:rgba(92, 112, 128, 0.3); }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n        background-color:rgba(92, 112, 128, 0.4); }\n    .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n      color:#f5f8fa; }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n          background-color:rgba(191, 204, 214, 0.3); }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n          background-color:rgba(191, 204, 214, 0.4); }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) > .bp3-icon, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n        fill:#a7b6c2; }\n  .bp3-tag.bp3-minimal.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15);\n    color:#106ba3; }\n    .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-primary > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-large{\n      fill:#137cbd; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25);\n      color:#48aff0; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n          background-color:rgba(19, 124, 189, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n          background-color:rgba(19, 124, 189, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15);\n    color:#0d8050; }\n    .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-success > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-large{\n      fill:#0f9960; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25);\n      color:#3dcc91; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n          background-color:rgba(15, 153, 96, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n          background-color:rgba(15, 153, 96, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15);\n    color:#bf7326; }\n    .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-warning > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-large{\n      fill:#d9822b; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25);\n      color:#ffb366; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n          background-color:rgba(217, 130, 43, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n          background-color:rgba(217, 130, 43, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15);\n    color:#c23030; }\n    .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-danger > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-large{\n      fill:#db3737; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25);\n      color:#ff7373; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n          background-color:rgba(219, 55, 55, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n          background-color:rgba(219, 55, 55, 0.45); }\n\n.bp3-tag-remove{\n  background:none;\n  border:none;\n  color:inherit;\n  cursor:pointer;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin-bottom:-2px;\n  margin-right:-6px !important;\n  margin-top:-2px;\n  opacity:0.5;\n  padding:2px;\n  padding-left:0; }\n  .bp3-tag-remove:hover{\n    background:none;\n    opacity:0.8;\n    text-decoration:none; }\n  .bp3-tag-remove:active{\n    opacity:1; }\n  .bp3-tag-remove:empty::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    content:\"\"; }\n  .bp3-large .bp3-tag-remove{\n    margin-right:-10px !important;\n    padding:0 5px 0 0; }\n    .bp3-large .bp3-tag-remove:empty::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1; }\n.bp3-tag-input{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  cursor:text;\n  height:auto;\n  line-height:inherit;\n  min-height:30px;\n  padding-left:5px;\n  padding-right:0; }\n  .bp3-tag-input > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag-input > .bp3-tag-input-values{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag-input .bp3-tag-input-icon{\n    color:#5c7080;\n    margin-left:2px;\n    margin-right:7px;\n    margin-top:7px; }\n  .bp3-tag-input .bp3-tag-input-values{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row;\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    -ms-flex-item-align:stretch;\n        align-self:stretch;\n    -ms-flex-wrap:wrap;\n        flex-wrap:wrap;\n    margin-right:7px;\n    margin-top:5px;\n    min-width:0; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      -webkit-box-flex:0;\n          -ms-flex-positive:0;\n              flex-grow:0;\n      -ms-flex-negative:0;\n          flex-shrink:0; }\n    .bp3-tag-input .bp3-tag-input-values > .bp3-fill{\n      -webkit-box-flex:1;\n          -ms-flex-positive:1;\n              flex-grow:1;\n      -ms-flex-negative:1;\n          flex-shrink:1; }\n    .bp3-tag-input .bp3-tag-input-values::before,\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-right:5px; }\n    .bp3-tag-input .bp3-tag-input-values:empty::before,\n    .bp3-tag-input .bp3-tag-input-values > :last-child{\n      margin-right:0; }\n    .bp3-tag-input .bp3-tag-input-values:first-child .bp3-input-ghost:first-child{\n      padding-left:5px; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-bottom:5px; }\n  .bp3-tag-input .bp3-tag{\n    overflow-wrap:break-word; }\n    .bp3-tag-input .bp3-tag.bp3-active{\n      outline:rgba(19, 124, 189, 0.6) auto 2px;\n      outline-offset:0;\n      -moz-outline-radius:6px; }\n  .bp3-tag-input .bp3-input-ghost{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:20px;\n    width:80px; }\n    .bp3-tag-input .bp3-input-ghost:disabled, .bp3-tag-input .bp3-input-ghost.bp3-disabled{\n      cursor:not-allowed; }\n  .bp3-tag-input .bp3-button,\n  .bp3-tag-input .bp3-spinner{\n    margin:3px;\n    margin-left:0; }\n  .bp3-tag-input .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-tag-input.bp3-large{\n    height:auto;\n    min-height:40px; }\n    .bp3-tag-input.bp3-large::before,\n    .bp3-tag-input.bp3-large > *{\n      margin-right:10px; }\n    .bp3-tag-input.bp3-large:empty::before,\n    .bp3-tag-input.bp3-large > :last-child{\n      margin-right:0; }\n    .bp3-tag-input.bp3-large .bp3-tag-input-icon{\n      margin-left:5px;\n      margin-top:10px; }\n    .bp3-tag-input.bp3-large .bp3-input-ghost{\n      line-height:30px; }\n    .bp3-tag-input.bp3-large .bp3-button{\n      min-height:30px;\n      min-width:30px;\n      padding:5px 10px;\n      margin:5px;\n      margin-left:0; }\n    .bp3-tag-input.bp3-large .bp3-spinner{\n      margin:8px;\n      margin-left:0; }\n  .bp3-tag-input.bp3-active{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-tag-input .bp3-tag-input-icon, .bp3-tag-input.bp3-dark .bp3-tag-input-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-tag-input .bp3-input-ghost, .bp3-tag-input.bp3-dark .bp3-input-ghost{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-webkit-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-moz-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost:-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tag-input.bp3-active, .bp3-tag-input.bp3-dark.bp3-active{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-primary, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-success, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-warning, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-danger, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-input-ghost{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0; }\n  .bp3-input-ghost::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:focus{\n    outline:none !important; }\n.bp3-toast{\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:20px 0 0;\n  max-width:500px;\n  min-width:300px;\n  pointer-events:all;\n  position:relative !important; }\n  .bp3-toast.bp3-toast-enter, .bp3-toast.bp3-toast-appear{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active, .bp3-toast.bp3-toast-appear-active{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-enter ~ .bp3-toast, .bp3-toast.bp3-toast-appear ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active ~ .bp3-toast, .bp3-toast.bp3-toast-appear-active ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-exit{\n    opacity:1;\n    -webkit-filter:blur(0);\n            filter:blur(0); }\n  .bp3-toast.bp3-toast-exit-active{\n    opacity:0;\n    -webkit-filter:blur(10px);\n            filter:blur(10px);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:opacity, filter;\n    transition-property:opacity, filter, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast.bp3-toast-exit ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0); }\n  .bp3-toast.bp3-toast-exit-active ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px);\n    -webkit-transition-delay:50ms;\n            transition-delay:50ms;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast .bp3-button-group{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    padding:5px;\n    padding-left:0; }\n  .bp3-toast > .bp3-icon{\n    color:#5c7080;\n    margin:12px;\n    margin-right:0; }\n  .bp3-toast.bp3-dark,\n  .bp3-dark .bp3-toast{\n    background-color:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-toast.bp3-dark > .bp3-icon,\n    .bp3-dark .bp3-toast > .bp3-icon{\n      color:#a7b6c2; }\n  .bp3-toast[class*=\"bp3-intent-\"] a{\n    color:rgba(255, 255, 255, 0.7); }\n    .bp3-toast[class*=\"bp3-intent-\"] a:hover{\n      color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] > .bp3-icon{\n    color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::before,\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button .bp3-icon, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    color:rgba(255, 255, 255, 0.7) !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:focus{\n    outline-color:rgba(255, 255, 255, 0.5); }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:hover{\n    background-color:rgba(255, 255, 255, 0.15) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    background-color:rgba(255, 255, 255, 0.3) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::after{\n    background:rgba(255, 255, 255, 0.3) !important; }\n  .bp3-toast.bp3-intent-primary{\n    background-color:#137cbd;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-success{\n    background-color:#0f9960;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-warning{\n    background-color:#d9822b;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-danger{\n    background-color:#db3737;\n    color:#ffffff; }\n\n.bp3-toast-message{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  padding:11px;\n  word-break:break-word; }\n\n.bp3-toast-container{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box !important;\n  display:-ms-flexbox !important;\n  display:flex !important;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  left:0;\n  overflow:hidden;\n  padding:0 20px 20px;\n  pointer-events:none;\n  right:0;\n  z-index:40; }\n  .bp3-toast-container.bp3-toast-container-in-portal{\n    position:fixed; }\n  .bp3-toast-container.bp3-toast-container-inline{\n    position:absolute; }\n  .bp3-toast-container.bp3-toast-container-top{\n    top:0; }\n  .bp3-toast-container.bp3-toast-container-bottom{\n    bottom:0;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:reverse;\n        -ms-flex-direction:column-reverse;\n            flex-direction:column-reverse;\n    top:auto; }\n  .bp3-toast-container.bp3-toast-container-left{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start; }\n  .bp3-toast-container.bp3-toast-container-right{\n    -webkit-box-align:end;\n        -ms-flex-align:end;\n            align-items:flex-end; }\n\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active) ~ .bp3-toast, .bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active) ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-exit-active ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-leave-active ~ .bp3-toast{\n  -webkit-transform:translateY(60px);\n          transform:translateY(60px); }\n.bp3-tooltip{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1); }\n  .bp3-tooltip .bp3-popover-arrow{\n    height:22px;\n    position:absolute;\n    width:22px; }\n    .bp3-tooltip .bp3-popover-arrow::before{\n      height:14px;\n      margin:4px;\n      width:14px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip{\n    margin-bottom:11px;\n    margin-top:-11px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n      bottom:-8px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip{\n    margin-left:11px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n      left:-8px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip{\n    margin-top:11px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n      top:-8px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip{\n    margin-left:-11px;\n    margin-right:11px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n      right:-8px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-tooltip > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-tooltip > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n    top:-0.22183px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n    right:-0.22183px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n    left:-0.22183px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n    bottom:-0.22183px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-tooltip .bp3-popover-content{\n    background:#394b59;\n    color:#f5f8fa; }\n  .bp3-tooltip .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-tooltip .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-tooltip .bp3-popover-arrow-fill{\n    fill:#394b59; }\n  .bp3-popover-enter > .bp3-tooltip, .bp3-popover-appear > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8); }\n  .bp3-popover-enter-active > .bp3-tooltip, .bp3-popover-appear-active > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover-exit > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tooltip .bp3-popover-content{\n    padding:10px 12px; }\n  .bp3-tooltip.bp3-dark,\n  .bp3-dark .bp3-tooltip{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-tooltip .bp3-popover-content{\n      background:#e1e8ed;\n      color:#394b59; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-fill{\n      fill:#e1e8ed; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-content{\n    background:#137cbd;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-arrow-fill{\n    fill:#137cbd; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-content{\n    background:#0f9960;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-arrow-fill{\n    fill:#0f9960; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-content{\n    background:#d9822b;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-arrow-fill{\n    fill:#d9822b; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-content{\n    background:#db3737;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-arrow-fill{\n    fill:#db3737; }\n\n.bp3-tooltip-indicator{\n  border-bottom:dotted 1px;\n  cursor:help; }\n.bp3-tree .bp3-icon, .bp3-tree .bp3-icon-standard, .bp3-tree .bp3-icon-large{\n  color:#5c7080; }\n  .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-tree .bp3-icon.bp3-intent-success, .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-tree-node-list{\n  list-style:none;\n  margin:0;\n  padding-left:0; }\n\n.bp3-tree-root{\n  background-color:transparent;\n  cursor:default;\n  padding-left:0;\n  position:relative; }\n\n.bp3-tree-node-content-0{\n  padding-left:0px; }\n\n.bp3-tree-node-content-1{\n  padding-left:23px; }\n\n.bp3-tree-node-content-2{\n  padding-left:46px; }\n\n.bp3-tree-node-content-3{\n  padding-left:69px; }\n\n.bp3-tree-node-content-4{\n  padding-left:92px; }\n\n.bp3-tree-node-content-5{\n  padding-left:115px; }\n\n.bp3-tree-node-content-6{\n  padding-left:138px; }\n\n.bp3-tree-node-content-7{\n  padding-left:161px; }\n\n.bp3-tree-node-content-8{\n  padding-left:184px; }\n\n.bp3-tree-node-content-9{\n  padding-left:207px; }\n\n.bp3-tree-node-content-10{\n  padding-left:230px; }\n\n.bp3-tree-node-content-11{\n  padding-left:253px; }\n\n.bp3-tree-node-content-12{\n  padding-left:276px; }\n\n.bp3-tree-node-content-13{\n  padding-left:299px; }\n\n.bp3-tree-node-content-14{\n  padding-left:322px; }\n\n.bp3-tree-node-content-15{\n  padding-left:345px; }\n\n.bp3-tree-node-content-16{\n  padding-left:368px; }\n\n.bp3-tree-node-content-17{\n  padding-left:391px; }\n\n.bp3-tree-node-content-18{\n  padding-left:414px; }\n\n.bp3-tree-node-content-19{\n  padding-left:437px; }\n\n.bp3-tree-node-content-20{\n  padding-left:460px; }\n\n.bp3-tree-node-content{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:30px;\n  padding-right:5px;\n  width:100%; }\n  .bp3-tree-node-content:hover{\n    background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-tree-node-caret,\n.bp3-tree-node-caret-none{\n  min-width:30px; }\n\n.bp3-tree-node-caret{\n  color:#5c7080;\n  cursor:pointer;\n  padding:7px;\n  -webkit-transform:rotate(0deg);\n          transform:rotate(0deg);\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tree-node-caret:hover{\n    color:#182026; }\n  .bp3-dark .bp3-tree-node-caret{\n    color:#a7b6c2; }\n    .bp3-dark .bp3-tree-node-caret:hover{\n      color:#f5f8fa; }\n  .bp3-tree-node-caret.bp3-tree-node-caret-open{\n    -webkit-transform:rotate(90deg);\n            transform:rotate(90deg); }\n  .bp3-tree-node-caret.bp3-icon-standard::before{\n    content:\"\"; }\n\n.bp3-tree-node-icon{\n  margin-right:7px;\n  position:relative; }\n\n.bp3-tree-node-label{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-label span{\n    display:inline; }\n\n.bp3-tree-node-secondary-label{\n  padding:0 5px;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-secondary-label .bp3-popover-wrapper,\n  .bp3-tree-node-secondary-label .bp3-popover-target{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-content{\n  background-color:inherit;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-caret,\n.bp3-tree-node.bp3-disabled .bp3-tree-node-icon{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content,\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-standard, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-large{\n    color:#ffffff; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret::before{\n    color:rgba(255, 255, 255, 0.7); }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret:hover::before{\n    color:#ffffff; }\n\n.bp3-dark .bp3-tree-node-content:hover{\n  background-color:rgba(92, 112, 128, 0.3); }\n\n.bp3-dark .bp3-tree .bp3-icon, .bp3-dark .bp3-tree .bp3-icon-standard, .bp3-dark .bp3-tree .bp3-icon-large{\n  color:#a7b6c2; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-dark .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n.bp3-omnibar{\n  -webkit-filter:blur(0);\n          filter:blur(0);\n  opacity:1;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  left:calc(50% - 250px);\n  top:20vh;\n  width:500px;\n  z-index:21; }\n  .bp3-omnibar.bp3-overlay-enter, .bp3-omnibar.bp3-overlay-appear{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2; }\n  .bp3-omnibar.bp3-overlay-enter-active, .bp3-omnibar.bp3-overlay-appear-active{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar.bp3-overlay-exit{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1; }\n  .bp3-omnibar.bp3-overlay-exit-active{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar .bp3-input{\n    background-color:transparent;\n    border-radius:0; }\n    .bp3-omnibar .bp3-input, .bp3-omnibar .bp3-input:focus{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-omnibar .bp3-menu{\n    background-color:transparent;\n    border-radius:0;\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n    max-height:calc(60vh - 40px);\n    overflow:auto; }\n    .bp3-omnibar .bp3-menu:empty{\n      display:none; }\n  .bp3-dark .bp3-omnibar, .bp3-omnibar.bp3-dark{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-omnibar-overlay .bp3-overlay-backdrop{\n  background-color:rgba(16, 22, 26, 0.2); }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n\n.bp3-multi-select{\n  min-width:150px; }\n\n.bp3-multi-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto; }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* This file was auto-generated by ensureUiComponents() in @jupyterlab/buildutils */\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n/* Icons urls */\n\n:root {\n  --jp-icon-add: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDEzaC02djZoLTJ2LTZINXYtMmg2VjVoMnY2aDZ2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-bug: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0yMCA4aC0yLjgxYy0uNDUtLjc4LTEuMDctMS40NS0xLjgyLTEuOTZMMTcgNC40MSAxNS41OSAzbC0yLjE3IDIuMTdDMTIuOTYgNS4wNiAxMi40OSA1IDEyIDVjLS40OSAwLS45Ni4wNi0xLjQxLjE3TDguNDEgMyA3IDQuNDFsMS42MiAxLjYzQzcuODggNi41NSA3LjI2IDcuMjIgNi44MSA4SDR2MmgyLjA5Yy0uMDUuMzMtLjA5LjY2LS4wOSAxdjFINHYyaDJ2MWMwIC4zNC4wNC42Ny4wOSAxSDR2MmgyLjgxYzEuMDQgMS43OSAyLjk3IDMgNS4xOSAzczQuMTUtMS4yMSA1LjE5LTNIMjB2LTJoLTIuMDljLjA1LS4zMy4wOS0uNjYuMDktMXYtMWgydi0yaC0ydi0xYzAtLjM0LS4wNC0uNjctLjA5LTFIMjBWOHptLTYgOGgtNHYtMmg0djJ6bTAtNGgtNHYtMmg0djJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-build: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE0LjkgMTcuNDVDMTYuMjUgMTcuNDUgMTcuMzUgMTYuMzUgMTcuMzUgMTVDMTcuMzUgMTMuNjUgMTYuMjUgMTIuNTUgMTQuOSAxMi41NUMxMy41NCAxMi41NSAxMi40NSAxMy42NSAxMi40NSAxNUMxMi40NSAxNi4zNSAxMy41NCAxNy40NSAxNC45IDE3LjQ1Wk0yMC4xIDE1LjY4TDIxLjU4IDE2Ljg0QzIxLjcxIDE2Ljk1IDIxLjc1IDE3LjEzIDIxLjY2IDE3LjI5TDIwLjI2IDE5LjcxQzIwLjE3IDE5Ljg2IDIwIDE5LjkyIDE5LjgzIDE5Ljg2TDE4LjA5IDE5LjE2QzE3LjczIDE5LjQ0IDE3LjMzIDE5LjY3IDE2LjkxIDE5Ljg1TDE2LjY0IDIxLjdDMTYuNjIgMjEuODcgMTYuNDcgMjIgMTYuMyAyMkgxMy41QzEzLjMyIDIyIDEzLjE4IDIxLjg3IDEzLjE1IDIxLjdMMTIuODkgMTkuODVDMTIuNDYgMTkuNjcgMTIuMDcgMTkuNDQgMTEuNzEgMTkuMTZMOS45NjAwMiAxOS44NkM5LjgxMDAyIDE5LjkyIDkuNjIwMDIgMTkuODYgOS41NDAwMiAxOS43MUw4LjE0MDAyIDE3LjI5QzguMDUwMDIgMTcuMTMgOC4wOTAwMiAxNi45NSA4LjIyMDAyIDE2Ljg0TDkuNzAwMDIgMTUuNjhMOS42NTAwMSAxNUw5LjcwMDAyIDE0LjMxTDguMjIwMDIgMTMuMTZDOC4wOTAwMiAxMy4wNSA4LjA1MDAyIDEyLjg2IDguMTQwMDIgMTIuNzFMOS41NDAwMiAxMC4yOUM5LjYyMDAyIDEwLjEzIDkuODEwMDIgMTAuMDcgOS45NjAwMiAxMC4xM0wxMS43MSAxMC44NEMxMi4wNyAxMC41NiAxMi40NiAxMC4zMiAxMi44OSAxMC4xNUwxMy4xNSA4LjI4OTk4QzEzLjE4IDguMTI5OTggMTMuMzIgNy45OTk5OCAxMy41IDcuOTk5OThIMTYuM0MxNi40NyA3Ljk5OTk4IDE2LjYyIDguMTI5OTggMTYuNjQgOC4yODk5OEwxNi45MSAxMC4xNUMxNy4zMyAxMC4zMiAxNy43MyAxMC41NiAxOC4wOSAxMC44NEwxOS44MyAxMC4xM0MyMCAxMC4wNyAyMC4xNyAxMC4xMyAyMC4yNiAxMC4yOUwyMS42NiAxMi43MUMyMS43NSAxMi44NiAyMS43MSAxMy4wNSAyMS41OCAxMy4xNkwyMC4xIDE0LjMxTDIwLjE1IDE1TDIwLjEgMTUuNjhaIi8+CiAgICA8cGF0aCBkPSJNNy4zMjk2NiA3LjQ0NDU0QzguMDgzMSA3LjAwOTU0IDguMzM5MzIgNi4wNTMzMiA3LjkwNDMyIDUuMjk5ODhDNy40NjkzMiA0LjU0NjQzIDYuNTA4MSA0LjI4MTU2IDUuNzU0NjYgNC43MTY1NkM1LjM5MTc2IDQuOTI2MDggNS4xMjY5NSA1LjI3MTE4IDUuMDE4NDkgNS42NzU5NEM0LjkxMDA0IDYuMDgwNzEgNC45NjY4MiA2LjUxMTk4IDUuMTc2MzQgNi44NzQ4OEM1LjYxMTM0IDcuNjI4MzIgNi41NzYyMiA3Ljg3OTU0IDcuMzI5NjYgNy40NDQ1NFpNOS42NTcxOCA0Ljc5NTkzTDEwLjg2NzIgNC45NTE3OUMxMC45NjI4IDQuOTc3NDEgMTEuMDQwMiA1LjA3MTMzIDExLjAzODIgNS4xODc5M0wxMS4wMzg4IDYuOTg4OTNDMTEuMDQ1NSA3LjEwMDU0IDEwLjk2MTYgNy4xOTUxOCAxMC44NTUgNy4yMTA1NEw5LjY2MDAxIDcuMzgwODNMOS4yMzkxNSA4LjEzMTg4TDkuNjY5NjEgOS4yNTc0NUM5LjcwNzI5IDkuMzYyNzEgOS42NjkzNCA5LjQ3Njk5IDkuNTc0MDggOS41MzE5OUw4LjAxNTIzIDEwLjQzMkM3LjkxMTMxIDEwLjQ5MiA3Ljc5MzM3IDEwLjQ2NzcgNy43MjEwNSAxMC4zODI0TDYuOTg3NDggOS40MzE4OEw2LjEwOTMxIDkuNDMwODNMNS4zNDcwNCAxMC4zOTA1QzUuMjg5MDkgMTAuNDcwMiA1LjE3MzgzIDEwLjQ5MDUgNS4wNzE4NyAxMC40MzM5TDMuNTEyNDUgOS41MzI5M0MzLjQxMDQ5IDkuNDc2MzMgMy4zNzY0NyA5LjM1NzQxIDMuNDEwNzUgOS4yNTY3OUwzLjg2MzQ3IDguMTQwOTNMMy42MTc0OSA3Ljc3NDg4TDMuNDIzNDcgNy4zNzg4M0wyLjIzMDc1IDcuMjEyOTdDMi4xMjY0NyA3LjE5MjM1IDIuMDQwNDkgNy4xMDM0MiAyLjA0MjQ1IDYuOTg2ODJMMi4wNDE4NyA1LjE4NTgyQzIuMDQzODMgNS4wNjkyMiAyLjExOTA5IDQuOTc5NTggMi4yMTcwNCA0Ljk2OTIyTDMuNDIwNjUgNC43OTM5M0wzLjg2NzQ5IDQuMDI3ODhMMy40MTEwNSAyLjkxNzMxQzMuMzczMzcgMi44MTIwNCAzLjQxMTMxIDIuNjk3NzYgMy41MTUyMyAyLjYzNzc2TDUuMDc0MDggMS43Mzc3NkM1LjE2OTM0IDEuNjgyNzYgNS4yODcyOSAxLjcwNzA0IDUuMzU5NjEgMS43OTIzMUw2LjExOTE1IDIuNzI3ODhMNi45ODAwMSAyLjczODkzTDcuNzI0OTYgMS43ODkyMkM3Ljc5MTU2IDEuNzA0NTggNy45MTU0OCAxLjY3OTIyIDguMDA4NzkgMS43NDA4Mkw5LjU2ODIxIDIuNjQxODJDOS42NzAxNyAyLjY5ODQyIDkuNzEyODUgMi44MTIzNCA5LjY4NzIzIDIuOTA3OTdMOS4yMTcxOCA0LjAzMzgzTDkuNDYzMTYgNC4zOTk4OEw5LjY1NzE4IDQuNzk1OTNaIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iOS45LDEzLjYgMy42LDcuNCA0LjQsNi42IDkuOSwxMi4yIDE1LjQsNi43IDE2LjEsNy40ICIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNS45TDksOS43bDMuOC0zLjhsMS4yLDEuMmwtNC45LDVsLTQuOS01TDUuMiw1Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNy41TDksMTEuMmwzLjgtMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-left: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik0xMC44LDEyLjhMNy4xLDlsMy44LTMuOGwwLDcuNkgxMC44eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-right: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik03LjIsNS4yTDEwLjksOWwtMy44LDMuOFY1LjJINy4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-up-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iMTUuNCwxMy4zIDkuOSw3LjcgNC40LDEzLjIgMy42LDEyLjUgOS45LDYuMyAxNi4xLDEyLjYgIi8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-up: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik01LjIsMTAuNUw5LDYuOGwzLjgsMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-case-sensitive: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgogIDxnIGNsYXNzPSJqcC1pY29uLWFjY2VudDIiIGZpbGw9IiNGRkYiPgogICAgPHBhdGggZD0iTTcuNiw4aDAuOWwzLjUsOGgtMS4xTDEwLDE0SDZsLTAuOSwySDRMNy42LDh6IE04LDkuMUw2LjQsMTNoMy4yTDgsOS4xeiIvPgogICAgPHBhdGggZD0iTTE2LjYsOS44Yy0wLjIsMC4xLTAuNCwwLjEtMC43LDAuMWMtMC4yLDAtMC40LTAuMS0wLjYtMC4yYy0wLjEtMC4xLTAuMi0wLjQtMC4yLTAuNyBjLTAuMywwLjMtMC42LDAuNS0wLjksMC43Yy0wLjMsMC4xLTAuNywwLjItMS4xLDAuMmMtMC4zLDAtMC41LDAtMC43LTAuMWMtMC4yLTAuMS0wLjQtMC4yLTAuNi0wLjNjLTAuMi0wLjEtMC4zLTAuMy0wLjQtMC41IGMtMC4xLTAuMi0wLjEtMC40LTAuMS0wLjdjMC0wLjMsMC4xLTAuNiwwLjItMC44YzAuMS0wLjIsMC4zLTAuNCwwLjQtMC41QzEyLDcsMTIuMiw2LjksMTIuNSw2LjhjMC4yLTAuMSwwLjUtMC4xLDAuNy0wLjIgYzAuMy0wLjEsMC41LTAuMSwwLjctMC4xYzAuMiwwLDAuNC0wLjEsMC42LTAuMWMwLjIsMCwwLjMtMC4xLDAuNC0wLjJjMC4xLTAuMSwwLjItMC4yLDAuMi0wLjRjMC0xLTEuMS0xLTEuMy0xIGMtMC40LDAtMS40LDAtMS40LDEuMmgtMC45YzAtMC40LDAuMS0wLjcsMC4yLTFjMC4xLTAuMiwwLjMtMC40LDAuNS0wLjZjMC4yLTAuMiwwLjUtMC4zLDAuOC0wLjNDMTMuMyw0LDEzLjYsNCwxMy45LDQgYzAuMywwLDAuNSwwLDAuOCwwLjFjMC4zLDAsMC41LDAuMSwwLjcsMC4yYzAuMiwwLjEsMC40LDAuMywwLjUsMC41QzE2LDUsMTYsNS4yLDE2LDUuNnYyLjljMCwwLjIsMCwwLjQsMCwwLjUgYzAsMC4xLDAuMSwwLjIsMC4zLDAuMmMwLjEsMCwwLjIsMCwwLjMsMFY5Ljh6IE0xNS4yLDYuOWMtMS4yLDAuNi0zLjEsMC4yLTMuMSwxLjRjMCwxLjQsMy4xLDEsMy4xLTAuNVY2Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-check: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik05IDE2LjE3TDQuODMgMTJsLTEuNDIgMS40MUw5IDE5IDIxIDdsLTEuNDEtMS40MXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-circle-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDJDNi40NyAyIDIgNi40NyAyIDEyczQuNDcgMTAgMTAgMTAgMTAtNC40NyAxMC0xMFMxNy41MyAyIDEyIDJ6bTAgMThjLTQuNDEgMC04LTMuNTktOC04czMuNTktOCA4LTggOCAzLjU5IDggOC0zLjU5IDgtOCA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-circle: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjgiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-clear: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8bWFzayBpZD0iZG9udXRIb2xlIj4KICAgIDxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0id2hpdGUiIC8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSI4IiBmaWxsPSJibGFjayIvPgogIDwvbWFzaz4KCiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxyZWN0IGhlaWdodD0iMTgiIHdpZHRoPSIyIiB4PSIxMSIgeT0iMyIgdHJhbnNmb3JtPSJyb3RhdGUoMzE1LCAxMiwgMTIpIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIgbWFzaz0idXJsKCNkb251dEhvbGUpIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-close: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1ub25lIGpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIGpwLWljb24zLWhvdmVyIiBmaWxsPSJub25lIj4KICAgIDxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjExIi8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIGpwLWljb24tYWNjZW50Mi1ob3ZlciIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMTkgNi40MUwxNy41OSA1IDEyIDEwLjU5IDYuNDEgNSA1IDYuNDEgMTAuNTkgMTIgNSAxNy41OSA2LjQxIDE5IDEyIDEzLjQxIDE3LjU5IDE5IDE5IDE3LjU5IDEzLjQxIDEyeiIvPgogIDwvZz4KCiAgPGcgY2xhc3M9ImpwLWljb24tbm9uZSBqcC1pY29uLWJ1c3kiIGZpbGw9Im5vbmUiPgogICAgPGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-code: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTExLjQgMTguNkw2LjggMTRMMTEuNCA5LjRMMTAgOEw0IDE0TDEwIDIwTDExLjQgMTguNlpNMTYuNiAxOC42TDIxLjIgMTRMMTYuNiA5LjRMMTggOEwyNCAxNEwxOCAyMEwxNi42IDE4LjZWMTguNloiLz4KCTwvZz4KPC9zdmc+Cg==);\n  --jp-icon-console: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwMCAyMDAiPgogIDxnIGNsYXNzPSJqcC1pY29uLWJyYW5kMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMjg4RDEiPgogICAgPHBhdGggZD0iTTIwIDE5LjhoMTYwdjE1OS45SDIweiIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNmZmYiPgogICAgPHBhdGggZD0iTTEwNSAxMjcuM2g0MHYxMi44aC00MHpNNTEuMSA3N0w3NCA5OS45bC0yMy4zIDIzLjMgMTAuNSAxMC41IDIzLjMtMjMuM0w5NSA5OS45IDg0LjUgODkuNCA2MS42IDY2LjV6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-copy: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTExLjksMUgzLjJDMi40LDEsMS43LDEuNywxLjcsMi41djEwLjJoMS41VjIuNWg4LjdWMXogTTE0LjEsMy45aC04Yy0wLjgsMC0xLjUsMC43LTEuNSwxLjV2MTAuMmMwLDAuOCwwLjcsMS41LDEuNSwxLjVoOCBjMC44LDAsMS41LTAuNywxLjUtMS41VjUuNEMxNS41LDQuNiwxNC45LDMuOSwxNC4xLDMuOXogTTE0LjEsMTUuNWgtOFY1LjRoOFYxNS41eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-copyright: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDI0IDI0IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCI+CiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0xMS44OCw5LjE0YzEuMjgsMC4wNiwxLjYxLDEuMTUsMS42MywxLjY2aDEuNzljLTAuMDgtMS45OC0xLjQ5LTMuMTktMy40NS0zLjE5QzkuNjQsNy42MSw4LDksOCwxMi4xNCBjMCwxLjk0LDAuOTMsNC4yNCwzLjg0LDQuMjRjMi4yMiwwLDMuNDEtMS42NSwzLjQ0LTIuOTVoLTEuNzljLTAuMDMsMC41OS0wLjQ1LDEuMzgtMS42MywxLjQ0QzEwLjU1LDE0LjgzLDEwLDEzLjgxLDEwLDEyLjE0IEMxMCw5LjI1LDExLjI4LDkuMTYsMTEuODgsOS4xNHogTTEyLDJDNi40OCwyLDIsNi40OCwyLDEyczQuNDgsMTAsMTAsMTBzMTAtNC40OCwxMC0xMFMxNy41MiwyLDEyLDJ6IE0xMiwyMGMtNC40MSwwLTgtMy41OS04LTggczMuNTktOCw4LThzOCwzLjU5LDgsOFMxNi40MSwyMCwxMiwyMHoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-cut: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkuNjQgNy42NGMuMjMtLjUuMzYtMS4wNS4zNi0xLjY0IDAtMi4yMS0xLjc5LTQtNC00UzIgMy43OSAyIDZzMS43OSA0IDQgNGMuNTkgMCAxLjE0LS4xMyAxLjY0LS4zNkwxMCAxMmwtMi4zNiAyLjM2QzcuMTQgMTQuMTMgNi41OSAxNCA2IDE0Yy0yLjIxIDAtNCAxLjc5LTQgNHMxLjc5IDQgNCA0IDQtMS43OSA0LTRjMC0uNTktLjEzLTEuMTQtLjM2LTEuNjRMMTIgMTRsNyA3aDN2LTFMOS42NCA3LjY0ek02IDhjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTAgMTJjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTYtNy41Yy0uMjggMC0uNS0uMjItLjUtLjVzLjIyLS41LjUtLjUuNS4yMi41LjUtLjIyLjUtLjUuNXpNMTkgM2wtNiA2IDIgMiA3LTdWM3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-download: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDloLTRWM0g5djZINWw3IDcgNy03ek01IDE4djJoMTR2LTJINXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-edit: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMgMTcuMjVWMjFoMy43NUwxNy44MSA5Ljk0bC0zLjc1LTMuNzVMMyAxNy4yNXpNMjAuNzEgNy4wNGMuMzktLjM5LjM5LTEuMDIgMC0xLjQxbC0yLjM0LTIuMzRjLS4zOS0uMzktMS4wMi0uMzktMS40MSAwbC0xLjgzIDEuODMgMy43NSAzLjc1IDEuODMtMS44M3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-ellipses: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iNSIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxOSIgY3k9IjEyIiByPSIyIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-extension: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwLjUgMTFIMTlWN2MwLTEuMS0uOS0yLTItMmgtNFYzLjVDMTMgMi4xMiAxMS44OCAxIDEwLjUgMVM4IDIuMTIgOCAzLjVWNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAydjMuOEgzLjVjMS40OSAwIDIuNyAxLjIxIDIuNyAyLjdzLTEuMjEgMi43LTIuNyAyLjdIMlYyMGMwIDEuMS45IDIgMiAyaDMuOHYtMS41YzAtMS40OSAxLjIxLTIuNyAyLjctMi43IDEuNDkgMCAyLjcgMS4yMSAyLjcgMi43VjIySDE3YzEuMSAwIDItLjkgMi0ydi00aDEuNWMxLjM4IDAgMi41LTEuMTIgMi41LTIuNVMyMS44OCAxMSAyMC41IDExeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-fast-forward: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTQgMThsOC41LTZMNCA2djEyem05LTEydjEybDguNS02TDEzIDZ6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-file-upload: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkgMTZoNnYtNmg0bC03LTctNyA3aDR6bS00IDJoMTR2Mkg1eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-file: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuMyA4LjJsLTUuNS01LjVjLS4zLS4zLS43LS41LTEuMi0uNUgzLjljLS44LjEtMS42LjktMS42IDEuOHYxNC4xYzAgLjkuNyAxLjYgMS42IDEuNmgxNC4yYy45IDAgMS42LS43IDEuNi0xLjZWOS40Yy4xLS41LS4xLS45LS40LTEuMnptLTUuOC0zLjNsMy40IDMuNmgtMy40VjQuOXptMy45IDEyLjdINC43Yy0uMSAwLS4yIDAtLjItLjJWNC43YzAtLjIuMS0uMy4yLS4zaDcuMnY0LjRzMCAuOC4zIDEuMWMuMy4zIDEuMS4zIDEuMS4zaDQuM3Y3LjJzLS4xLjItLjIuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-filter-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEwIDE4aDR2LTJoLTR2MnpNMyA2djJoMThWNkgzem0zIDdoMTJ2LTJINnYyeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY4YzAtMS4xLS45LTItMi0yaC04bC0yLTJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-html5: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMDAiIGQ9Ik0xMDguNCAwaDIzdjIyLjhoMjEuMlYwaDIzdjY5aC0yM1Y0NmgtMjF2MjNoLTIzLjJNMjA2IDIzaC0yMC4zVjBoNjMuN3YyM0gyMjl2NDZoLTIzbTUzLjUtNjloMjQuMWwxNC44IDI0LjNMMzEzLjIgMGgyNC4xdjY5aC0yM1YzNC44bC0xNi4xIDI0LjgtMTYuMS0yNC44VjY5aC0yMi42bTg5LjItNjloMjN2NDYuMmgzMi42VjY5aC01NS42Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI2U0NGQyNiIgZD0iTTEwNy42IDQ3MWwtMzMtMzcwLjRoMzYyLjhsLTMzIDM3MC4yTDI1NS43IDUxMiIvPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNmMTY1MjkiIGQ9Ik0yNTYgNDgwLjVWMTMxaDE0OC4zTDM3NiA0NDciLz4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNlYmViZWIiIGQ9Ik0xNDIgMTc2LjNoMTE0djQ1LjRoLTY0LjJsNC4yIDQ2LjVoNjB2NDUuM0gxNTQuNG0yIDIyLjhIMjAybDMuMiAzNi4zIDUwLjggMTMuNnY0Ny40bC05My4yLTI2Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIiBmaWxsPSIjZmZmIiBkPSJNMzY5LjYgMTc2LjNIMjU1Ljh2NDUuNGgxMDkuNm0tNC4xIDQ2LjVIMjU1Ljh2NDUuNGg1NmwtNS4zIDU5LTUwLjcgMTMuNnY0Ny4ybDkzLTI1LjgiLz4KPC9zdmc+Cg==);\n  --jp-icon-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1icmFuZDQganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNGRkYiIGQ9Ik0yLjIgMi4yaDE3LjV2MTcuNUgyLjJ6Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzNGNTFCNSIgZD0iTTIuMiAyLjJ2MTcuNWgxNy41bC4xLTE3LjVIMi4yem0xMi4xIDIuMmMxLjIgMCAyLjIgMSAyLjIgMi4ycy0xIDIuMi0yLjIgMi4yLTIuMi0xLTIuMi0yLjIgMS0yLjIgMi4yLTIuMnpNNC40IDE3LjZsMy4zLTguOCAzLjMgNi42IDIuMi0zLjIgNC40IDUuNEg0LjR6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-inspector: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY2YzAtMS4xLS45LTItMi0yem0tNSAxNEg0di00aDExdjR6bTAtNUg0VjloMTF2NHptNSA1aC00VjloNHY5eiIvPgo8L3N2Zz4K);\n  --jp-icon-json: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNGOUE4MjUiPgogICAgPHBhdGggZD0iTTIwLjIgMTEuOGMtMS42IDAtMS43LjUtMS43IDEgMCAuNC4xLjkuMSAxLjMuMS41LjEuOS4xIDEuMyAwIDEuNy0xLjQgMi4zLTMuNSAyLjNoLS45di0xLjloLjVjMS4xIDAgMS40IDAgMS40LS44IDAtLjMgMC0uNi0uMS0xIDAtLjQtLjEtLjgtLjEtMS4yIDAtMS4zIDAtMS44IDEuMy0yLTEuMy0uMi0xLjMtLjctMS4zLTIgMC0uNC4xLS44LjEtMS4yLjEtLjQuMS0uNy4xLTEgMC0uOC0uNC0uNy0xLjQtLjhoLS41VjQuMWguOWMyLjIgMCAzLjUuNyAzLjUgMi4zIDAgLjQtLjEuOS0uMSAxLjMtLjEuNS0uMS45LS4xIDEuMyAwIC41LjIgMSAxLjcgMXYxLjh6TTEuOCAxMC4xYzEuNiAwIDEuNy0uNSAxLjctMSAwLS40LS4xLS45LS4xLTEuMy0uMS0uNS0uMS0uOS0uMS0xLjMgMC0xLjYgMS40LTIuMyAzLjUtMi4zaC45djEuOWgtLjVjLTEgMC0xLjQgMC0xLjQuOCAwIC4zIDAgLjYuMSAxIDAgLjIuMS42LjEgMSAwIDEuMyAwIDEuOC0xLjMgMkM2IDExLjIgNiAxMS43IDYgMTNjMCAuNC0uMS44LS4xIDEuMi0uMS4zLS4xLjctLjEgMSAwIC44LjMuOCAxLjQuOGguNXYxLjloLS45Yy0yLjEgMC0zLjUtLjYtMy41LTIuMyAwLS40LjEtLjkuMS0xLjMuMS0uNS4xLS45LjEtMS4zIDAtLjUtLjItMS0xLjctMXYtMS45eiIvPgogICAgPGNpcmNsZSBjeD0iMTEiIGN5PSIxMy44IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY3g9IjExIiBjeT0iOC4yIiByPSIyLjEiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-julia: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDMyNSAzMDAiPgogIDxnIGNsYXNzPSJqcC1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjY2IzYzMzIj4KICAgIDxwYXRoIGQ9Ik0gMTUwLjg5ODQzOCAyMjUgQyAxNTAuODk4NDM4IDI2Ni40MjE4NzUgMTE3LjMyMDMxMiAzMDAgNzUuODk4NDM4IDMwMCBDIDM0LjQ3NjU2MiAzMDAgMC44OTg0MzggMjY2LjQyMTg3NSAwLjg5ODQzOCAyMjUgQyAwLjg5ODQzOCAxODMuNTc4MTI1IDM0LjQ3NjU2MiAxNTAgNzUuODk4NDM4IDE1MCBDIDExNy4zMjAzMTIgMTUwIDE1MC44OTg0MzggMTgzLjU3ODEyNSAxNTAuODk4NDM4IDIyNSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzM4OTgyNiI+CiAgICA8cGF0aCBkPSJNIDIzNy41IDc1IEMgMjM3LjUgMTE2LjQyMTg3NSAyMDMuOTIxODc1IDE1MCAxNjIuNSAxNTAgQyAxMjEuMDc4MTI1IDE1MCA4Ny41IDExNi40MjE4NzUgODcuNSA3NSBDIDg3LjUgMzMuNTc4MTI1IDEyMS4wNzgxMjUgMCAxNjIuNSAwIEMgMjAzLjkyMTg3NSAwIDIzNy41IDMzLjU3ODEyNSAyMzcuNSA3NSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzk1NThiMiI+CiAgICA8cGF0aCBkPSJNIDMyNC4xMDE1NjIgMjI1IEMgMzI0LjEwMTU2MiAyNjYuNDIxODc1IDI5MC41MjM0MzggMzAwIDI0OS4xMDE1NjIgMzAwIEMgMjA3LjY3OTY4OCAzMDAgMTc0LjEwMTU2MiAyNjYuNDIxODc1IDE3NC4xMDE1NjIgMjI1IEMgMTc0LjEwMTU2MiAxODMuNTc4MTI1IDIwNy42Nzk2ODggMTUwIDI0OS4xMDE1NjIgMTUwIEMgMjkwLjUyMzQzOCAxNTAgMzI0LjEwMTU2MiAxODMuNTc4MTI1IDMyNC4xMDE1NjIgMjI1Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-jupyter-favicon: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUyIiBoZWlnaHQ9IjE2NSIgdmlld0JveD0iMCAwIDE1MiAxNjUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA3ODk0NywgMTEwLjU4MjkyNykiIGQ9Ik03NS45NDIyODQyLDI5LjU4MDQ1NjEgQzQzLjMwMjM5NDcsMjkuNTgwNDU2MSAxNC43OTY3ODMyLDE3LjY1MzQ2MzQgMCwwIEM1LjUxMDgzMjExLDE1Ljg0MDY4MjkgMTUuNzgxNTM4OSwyOS41NjY3NzMyIDI5LjM5MDQ5NDcsMzkuMjc4NDE3MSBDNDIuOTk5Nyw0OC45ODk4NTM3IDU5LjI3MzcsNTQuMjA2NzgwNSA3NS45NjA1Nzg5LDU0LjIwNjc4MDUgQzkyLjY0NzQ1NzksNTQuMjA2NzgwNSAxMDguOTIxNDU4LDQ4Ljk4OTg1MzcgMTIyLjUzMDY2MywzOS4yNzg0MTcxIEMxMzYuMTM5NDUzLDI5LjU2Njc3MzIgMTQ2LjQxMDI4NCwxNS44NDA2ODI5IDE1MS45MjExNTgsMCBDMTM3LjA4Nzg2OCwxNy42NTM0NjM0IDEwOC41ODI1ODksMjkuNTgwNDU2MSA3NS45NDIyODQyLDI5LjU4MDQ1NjEgTDc1Ljk0MjI4NDIsMjkuNTgwNDU2MSBaIiAvPgogICAgPHBhdGggdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMzczNjgsIDAuNzA0ODc4KSIgZD0iTTc1Ljk3ODQ1NzksMjQuNjI2NDA3MyBDMTA4LjYxODc2MywyNC42MjY0MDczIDEzNy4xMjQ0NTgsMzYuNTUzNDQxNSAxNTEuOTIxMTU4LDU0LjIwNjc4MDUgQzE0Ni40MTAyODQsMzguMzY2MjIyIDEzNi4xMzk0NTMsMjQuNjQwMTMxNyAxMjIuNTMwNjYzLDE0LjkyODQ4NzggQzEwOC45MjE0NTgsNS4yMTY4NDM5IDkyLjY0NzQ1NzksMCA3NS45NjA1Nzg5LDAgQzU5LjI3MzcsMCA0Mi45OTk3LDUuMjE2ODQzOSAyOS4zOTA0OTQ3LDE0LjkyODQ4NzggQzE1Ljc4MTUzODksMjQuNjQwMTMxNyA1LjUxMDgzMjExLDM4LjM2NjIyMiAwLDU0LjIwNjc4MDUgQzE0LjgzMzA4MTYsMzYuNTg5OTI5MyA0My4zMzg1Njg0LDI0LjYyNjQwNzMgNzUuOTc4NDU3OSwyNC42MjY0MDczIEw3NS45Nzg0NTc5LDI0LjYyNjQwNzMgWiIgLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-jupyter: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzkiIGhlaWdodD0iNTEiIHZpZXdCb3g9IjAgMCAzOSA1MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTYzOCAtMjI4MSkiPgogICAgPGcgY2xhc3M9ImpwLWljb24td2FybjAiIGZpbGw9IiNGMzc3MjYiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5Ljc0IDIzMTEuOTgpIiBkPSJNIDE4LjI2NDYgNy4xMzQxMUMgMTAuNDE0NSA3LjEzNDExIDMuNTU4NzIgNC4yNTc2IDAgMEMgMS4zMjUzOSAzLjgyMDQgMy43OTU1NiA3LjEzMDgxIDcuMDY4NiA5LjQ3MzAzQyAxMC4zNDE3IDExLjgxNTIgMTQuMjU1NyAxMy4wNzM0IDE4LjI2OSAxMy4wNzM0QyAyMi4yODIzIDEzLjA3MzQgMjYuMTk2MyAxMS44MTUyIDI5LjQ2OTQgOS40NzMwM0MgMzIuNzQyNCA3LjEzMDgxIDM1LjIxMjYgMy44MjA0IDM2LjUzOCAwQyAzMi45NzA1IDQuMjU3NiAyNi4xMTQ4IDcuMTM0MTEgMTguMjY0NiA3LjEzNDExWiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5LjczIDIyODUuNDgpIiBkPSJNIDE4LjI3MzMgNS45MzkzMUMgMjYuMTIzNSA1LjkzOTMxIDMyLjk3OTMgOC44MTU4MyAzNi41MzggMTMuMDczNEMgMzUuMjEyNiA5LjI1MzAzIDMyLjc0MjQgNS45NDI2MiAyOS40Njk0IDMuNjAwNEMgMjYuMTk2MyAxLjI1ODE4IDIyLjI4MjMgMCAxOC4yNjkgMEMgMTQuMjU1NyAwIDEwLjM0MTcgMS4yNTgxOCA3LjA2ODYgMy42MDA0QyAzLjc5NTU2IDUuOTQyNjIgMS4zMjUzOSA5LjI1MzAzIDAgMTMuMDczNEMgMy41Njc0NSA4LjgyNDYzIDEwLjQyMzIgNS45MzkzMSAxOC4yNzMzIDUuOTM5MzFaIi8+CiAgICA8L2c+CiAgICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjY5LjMgMjI4MS4zMSkiIGQ9Ik0gNS44OTM1MyAyLjg0NEMgNS45MTg4OSAzLjQzMTY1IDUuNzcwODUgNC4wMTM2NyA1LjQ2ODE1IDQuNTE2NDVDIDUuMTY1NDUgNS4wMTkyMiA0LjcyMTY4IDUuNDIwMTUgNC4xOTI5OSA1LjY2ODUxQyAzLjY2NDMgNS45MTY4OCAzLjA3NDQ0IDYuMDAxNTEgMi40OTgwNSA1LjkxMTcxQyAxLjkyMTY2IDUuODIxOSAxLjM4NDYzIDUuNTYxNyAwLjk1NDg5OCA1LjE2NDAxQyAwLjUyNTE3IDQuNzY2MzMgMC4yMjIwNTYgNC4yNDkwMyAwLjA4MzkwMzcgMy42Nzc1N0MgLTAuMDU0MjQ4MyAzLjEwNjExIC0wLjAyMTIzIDIuNTA2MTcgMC4xNzg3ODEgMS45NTM2NEMgMC4zNzg3OTMgMS40MDExIDAuNzM2ODA5IDAuOTIwODE3IDEuMjA3NTQgMC41NzM1MzhDIDEuNjc4MjYgMC4yMjYyNTkgMi4yNDA1NSAwLjAyNzU5MTkgMi44MjMyNiAwLjAwMjY3MjI5QyAzLjYwMzg5IC0wLjAzMDcxMTUgNC4zNjU3MyAwLjI0OTc4OSA0Ljk0MTQyIDAuNzgyNTUxQyA1LjUxNzExIDEuMzE1MzEgNS44NTk1NiAyLjA1Njc2IDUuODkzNTMgMi44NDRaIi8+CiAgICAgIDxwYXRoIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE2MzkuOCAyMzIzLjgxKSIgZD0iTSA3LjQyNzg5IDMuNTgzMzhDIDcuNDYwMDggNC4zMjQzIDcuMjczNTUgNS4wNTgxOSA2Ljg5MTkzIDUuNjkyMTNDIDYuNTEwMzEgNi4zMjYwNyA1Ljk1MDc1IDYuODMxNTYgNS4yODQxMSA3LjE0NDZDIDQuNjE3NDcgNy40NTc2MyAzLjg3MzcxIDcuNTY0MTQgMy4xNDcwMiA3LjQ1MDYzQyAyLjQyMDMyIDcuMzM3MTIgMS43NDMzNiA3LjAwODcgMS4yMDE4NCA2LjUwNjk1QyAwLjY2MDMyOCA2LjAwNTIgMC4yNzg2MSA1LjM1MjY4IDAuMTA1MDE3IDQuNjMyMDJDIC0wLjA2ODU3NTcgMy45MTEzNSAtMC4wMjYyMzYxIDMuMTU0OTQgMC4yMjY2NzUgMi40NTg1NkMgMC40Nzk1ODcgMS43NjIxNyAwLjkzMTY5NyAxLjE1NzEzIDEuNTI1NzYgMC43MjAwMzNDIDIuMTE5ODMgMC4yODI5MzUgMi44MjkxNCAwLjAzMzQzOTUgMy41NjM4OSAwLjAwMzEzMzQ0QyA0LjU0NjY3IC0wLjAzNzQwMzMgNS41MDUyOSAwLjMxNjcwNiA2LjIyOTYxIDAuOTg3ODM1QyA2Ljk1MzkzIDEuNjU4OTYgNy4zODQ4NCAyLjU5MjM1IDcuNDI3ODkgMy41ODMzOEwgNy40Mjc4OSAzLjU4MzM4WiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM4LjM2IDIyODYuMDYpIiBkPSJNIDIuMjc0NzEgNC4zOTYyOUMgMS44NDM2MyA0LjQxNTA4IDEuNDE2NzEgNC4zMDQ0NSAxLjA0Nzk5IDQuMDc4NDNDIDAuNjc5MjY4IDMuODUyNCAwLjM4NTMyOCAzLjUyMTE0IDAuMjAzMzcxIDMuMTI2NTZDIDAuMDIxNDEzNiAyLjczMTk4IC0wLjA0MDM3OTggMi4yOTE4MyAwLjAyNTgxMTYgMS44NjE4MUMgMC4wOTIwMDMxIDEuNDMxOCAwLjI4MzIwNCAxLjAzMTI2IDAuNTc1MjEzIDAuNzEwODgzQyAwLjg2NzIyMiAwLjM5MDUxIDEuMjQ2OTEgMC4xNjQ3MDggMS42NjYyMiAwLjA2MjA1OTJDIDIuMDg1NTMgLTAuMDQwNTg5NyAyLjUyNTYxIC0wLjAxNTQ3MTQgMi45MzA3NiAwLjEzNDIzNUMgMy4zMzU5MSAwLjI4Mzk0MSAzLjY4NzkyIDAuNTUxNTA1IDMuOTQyMjIgMC45MDMwNkMgNC4xOTY1MiAxLjI1NDYyIDQuMzQxNjkgMS42NzQzNiA0LjM1OTM1IDIuMTA5MTZDIDQuMzgyOTkgMi42OTEwNyA0LjE3Njc4IDMuMjU4NjkgMy43ODU5NyAzLjY4NzQ2QyAzLjM5NTE2IDQuMTE2MjQgMi44NTE2NiA0LjM3MTE2IDIuMjc0NzEgNC4zOTYyOUwgMi4yNzQ3MSA0LjM5NjI5WiIvPgogICAgPC9nPgogIDwvZz4+Cjwvc3ZnPgo=);\n  --jp-icon-jupyterlab-wordmark: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIHZpZXdCb3g9IjAgMCAxODYwLjggNDc1Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0RTRFNEUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ4MC4xMzY0MDEsIDY0LjI3MTQ5MykiPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMDAwMDAsIDU4Ljg3NTU2NikiPgogICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA4NzYwMywgMC4xNDAyOTQpIj4KICAgICAgICA8cGF0aCBkPSJNLTQyNi45LDE2OS44YzAsNDguNy0zLjcsNjQuNy0xMy42LDc2LjRjLTEwLjgsMTAtMjUsMTUuNS0zOS43LDE1LjVsMy43LDI5IGMyMi44LDAuMyw0NC44LTcuOSw2MS45LTIzLjFjMTcuOC0xOC41LDI0LTQ0LjEsMjQtODMuM1YwSC00Mjd2MTcwLjFMLTQyNi45LDE2OS44TC00MjYuOSwxNjkuOHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTU1LjA0NTI5NiwgNTYuODM3MTA0KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuNTYyNDUzLCAxLjc5OTg0MikiPgogICAgICAgIDxwYXRoIGQ9Ik0tMzEyLDE0OGMwLDIxLDAsMzkuNSwxLjcsNTUuNGgtMzEuOGwtMi4xLTMzLjNoLTAuOGMtNi43LDExLjYtMTYuNCwyMS4zLTI4LDI3LjkgYy0xMS42LDYuNi0yNC44LDEwLTM4LjIsOS44Yy0zMS40LDAtNjktMTcuNy02OS04OVYwaDM2LjR2MTEyLjdjMCwzOC43LDExLjYsNjQuNyw0NC42LDY0LjdjMTAuMy0wLjIsMjAuNC0zLjUsMjguOS05LjQgYzguNS01LjksMTUuMS0xNC4zLDE4LjktMjMuOWMyLjItNi4xLDMuMy0xMi41LDMuMy0xOC45VjAuMmgzNi40VjE0OEgtMzEyTC0zMTIsMTQ4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzOTAuMDEzMzIyLCA1My40Nzk2MzgpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS43MDY0NTgsIDAuMjMxNDI1KSI+CiAgICAgICAgPHBhdGggZD0iTS00NzguNiw3MS40YzAtMjYtMC44LTQ3LTEuNy02Ni43aDMyLjdsMS43LDM0LjhoMC44YzcuMS0xMi41LDE3LjUtMjIuOCwzMC4xLTI5LjcgYzEyLjUtNywyNi43LTEwLjMsNDEtOS44YzQ4LjMsMCw4NC43LDQxLjcsODQuNywxMDMuM2MwLDczLjEtNDMuNywxMDkuMi05MSwxMDkuMmMtMTIuMSwwLjUtMjQuMi0yLjItMzUtNy44IGMtMTAuOC01LjYtMTkuOS0xMy45LTI2LjYtMjQuMmgtMC44VjI5MWgtMzZ2LTIyMEwtNDc4LjYsNzEuNEwtNDc4LjYsNzEuNHogTS00NDIuNiwxMjUuNmMwLjEsNS4xLDAuNiwxMC4xLDEuNywxNS4xIGMzLDEyLjMsOS45LDIzLjMsMTkuOCwzMS4xYzkuOSw3LjgsMjIuMSwxMi4xLDM0LjcsMTIuMWMzOC41LDAsNjAuNy0zMS45LDYwLjctNzguNWMwLTQwLjctMjEuMS03NS42LTU5LjUtNzUuNiBjLTEyLjksMC40LTI1LjMsNS4xLTM1LjMsMTMuNGMtOS45LDguMy0xNi45LDE5LjctMTkuNiwzMi40Yy0xLjUsNC45LTIuMywxMC0yLjUsMTUuMVYxMjUuNkwtNDQyLjYsMTI1LjZMLTQ0Mi42LDEyNS42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MDYuNzQwNzI2LCA1Ni44MzcxMDQpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC43NTEyMjYsIDEuOTg5Mjk5KSI+CiAgICAgICAgPHBhdGggZD0iTS00NDAuOCwwbDQzLjcsMTIwLjFjNC41LDEzLjQsOS41LDI5LjQsMTIuOCw0MS43aDAuOGMzLjctMTIuMiw3LjktMjcuNywxMi44LTQyLjQgbDM5LjctMTE5LjJoMzguNUwtMzQ2LjksMTQ1Yy0yNiw2OS43LTQzLjcsMTA1LjQtNjguNiwxMjcuMmMtMTIuNSwxMS43LTI3LjksMjAtNDQuNiwyMy45bC05LjEtMzEuMSBjMTEuNy0zLjksMjIuNS0xMC4xLDMxLjgtMTguMWMxMy4yLTExLjEsMjMuNy0yNS4yLDMwLjYtNDEuMmMxLjUtMi44LDIuNS01LjcsMi45LTguOGMtMC4zLTMuMy0xLjItNi42LTIuNS05LjdMLTQ4MC4yLDAuMSBoMzkuN0wtNDQwLjgsMEwtNDQwLjgsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODIyLjc0ODEwNCwgMC4wMDAwMDApIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS40NjQwNTAsIDAuMzc4OTE0KSI+CiAgICAgICAgPHBhdGggZD0iTS00MTMuNywwdjU4LjNoNTJ2MjguMmgtNTJWMTk2YzAsMjUsNywzOS41LDI3LjMsMzkuNWM3LjEsMC4xLDE0LjItMC43LDIxLjEtMi41IGwxLjcsMjcuN2MtMTAuMywzLjctMjEuMyw1LjQtMzIuMiw1Yy03LjMsMC40LTE0LjYtMC43LTIxLjMtMy40Yy02LjgtMi43LTEyLjktNi44LTE3LjktMTIuMWMtMTAuMy0xMC45LTE0LjEtMjktMTQuMS01Mi45IFY4Ni41aC0zMVY1OC4zaDMxVjkuNkwtNDEzLjcsMEwtNDEzLjcsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOTc0LjQzMzI4NiwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuOTkwMDM0LCAwLjYxMDMzOSkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDQ1LjgsMTEzYzAuOCw1MCwzMi4yLDcwLjYsNjguNiw3MC42YzE5LDAuNiwzNy45LTMsNTUuMy0xMC41bDYuMiwyNi40IGMtMjAuOSw4LjktNDMuNSwxMy4xLTY2LjIsMTIuNmMtNjEuNSwwLTk4LjMtNDEuMi05OC4zLTEwMi41Qy00ODAuMiw0OC4yLTQ0NC43LDAtMzg2LjUsMGM2NS4yLDAsODIuNyw1OC4zLDgyLjcsOTUuNyBjLTAuMSw1LjgtMC41LDExLjUtMS4yLDE3LjJoLTE0MC42SC00NDUuOEwtNDQ1LjgsMTEzeiBNLTMzOS4yLDg2LjZjMC40LTIzLjUtOS41LTYwLjEtNTAuNC02MC4xIGMtMzYuOCwwLTUyLjgsMzQuNC01NS43LDYwLjFILTMzOS4yTC0zMzkuMiw4Ni42TC0zMzkuMiw4Ni42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjAxLjk2MTA1OCwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuMTc5NjQwLCAwLjcwNTA2OCkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDc4LjYsNjhjMC0yMy45LTAuNC00NC41LTEuNy02My40aDMxLjhsMS4yLDM5LjloMS43YzkuMS0yNy4zLDMxLTQ0LjUsNTUuMy00NC41IGMzLjUtMC4xLDcsMC40LDEwLjMsMS4ydjM0LjhjLTQuMS0wLjktOC4yLTEuMy0xMi40LTEuMmMtMjUuNiwwLTQzLjcsMTkuNy00OC43LDQ3LjRjLTEsNS43LTEuNiwxMS41LTEuNywxNy4ydjEwOC4zaC0zNlY2OCBMLTQ3OC42LDY4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCBkPSJNMTM1Mi4zLDMyNi4yaDM3VjI4aC0zN1YzMjYuMnogTTE2MDQuOCwzMjYuMmMtMi41LTEzLjktMy40LTMxLjEtMy40LTQ4Ljd2LTc2IGMwLTQwLjctMTUuMS04My4xLTc3LjMtODMuMWMtMjUuNiwwLTUwLDcuMS02Ni44LDE4LjFsOC40LDI0LjRjMTQuMy05LjIsMzQtMTUuMSw1My0xNS4xYzQxLjYsMCw0Ni4yLDMwLjIsNDYuMiw0N3Y0LjIgYy03OC42LTAuNC0xMjIuMywyNi41LTEyMi4zLDc1LjZjMCwyOS40LDIxLDU4LjQsNjIuMiw1OC40YzI5LDAsNTAuOS0xNC4zLDYyLjItMzAuMmgxLjNsMi45LDI1LjZIMTYwNC44eiBNMTU2NS43LDI1Ny43IGMwLDMuOC0wLjgsOC0yLjEsMTEuOGMtNS45LDE3LjItMjIuNywzNC00OS4yLDM0Yy0xOC45LDAtMzQuOS0xMS4zLTM0LjktMzUuM2MwLTM5LjUsNDUuOC00Ni42LDg2LjItNDUuOFYyNTcuN3ogTTE2OTguNSwzMjYuMiBsMS43LTMzLjZoMS4zYzE1LjEsMjYuOSwzOC43LDM4LjIsNjguMSwzOC4yYzQ1LjQsMCw5MS4yLTM2LjEsOTEuMi0xMDguOGMwLjQtNjEuNy0zNS4zLTEwMy43LTg1LjctMTAzLjcgYy0zMi44LDAtNTYuMywxNC43LTY5LjMsMzcuNGgtMC44VjI4aC0zNi42djI0NS43YzAsMTguMS0wLjgsMzguNi0xLjcsNTIuNUgxNjk4LjV6IE0xNzA0LjgsMjA4LjJjMC01LjksMS4zLTEwLjksMi4xLTE1LjEgYzcuNi0yOC4xLDMxLjEtNDUuNCw1Ni4zLTQ1LjRjMzkuNSwwLDYwLjUsMzQuOSw2MC41LDc1LjZjMCw0Ni42LTIzLjEsNzguMS02MS44LDc4LjFjLTI2LjksMC00OC4zLTE3LjYtNTUuNS00My4zIGMtMC44LTQuMi0xLjctOC44LTEuNy0xMy40VjIwOC4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgZmlsbD0iIzYxNjE2MSIgZD0iTTE1IDlIOXY2aDZWOXptLTIgNGgtMnYtMmgydjJ6bTgtMlY5aC0yVjdjMC0xLjEtLjktMi0yLTJoLTJWM2gtMnYyaC0yVjNIOXYySDdjLTEuMSAwLTIgLjktMiAydjJIM3YyaDJ2MkgzdjJoMnYyYzAgMS4xLjkgMiAyIDJoMnYyaDJ2LTJoMnYyaDJ2LTJoMmMxLjEgMCAyLS45IDItMnYtMmgydi0yaC0ydi0yaDJ6bS00IDZIN1Y3aDEwdjEweiIvPgo8L3N2Zz4K);\n  --jp-icon-keyboard: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMTdjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY3YzAtMS4xLS45LTItMi0yem0tOSAzaDJ2MmgtMlY4em0wIDNoMnYyaC0ydi0yek04IDhoMnYySDhWOHptMCAzaDJ2Mkg4di0yem0tMSAySDV2LTJoMnYyem0wLTNINVY4aDJ2MnptOSA3SDh2LTJoOHYyem0wLTRoLTJ2LTJoMnYyem0wLTNoLTJWOGgydjJ6bTMgM2gtMnYtMmgydjJ6bTAtM2gtMlY4aDJ2MnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-launcher: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkgMTlINVY1aDdWM0g1YTIgMiAwIDAwLTIgMnYxNGEyIDIgMCAwMDIgMmgxNGMxLjEgMCAyLS45IDItMnYtN2gtMnY3ek0xNCAzdjJoMy41OWwtOS44MyA5LjgzIDEuNDEgMS40MUwxOSA2LjQxVjEwaDJWM2gtN3oiLz4KPC9zdmc+Cg==);\n  --jp-icon-line-form: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGZpbGw9IndoaXRlIiBkPSJNNS44OCA0LjEyTDEzLjc2IDEybC03Ljg4IDcuODhMOCAyMmwxMC0xMEw4IDJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-link: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMuOSAxMmMwLTEuNzEgMS4zOS0zLjEgMy4xLTMuMWg0VjdIN2MtMi43NiAwLTUgMi4yNC01IDVzMi4yNCA1IDUgNWg0di0xLjlIN2MtMS43MSAwLTMuMS0xLjM5LTMuMS0zLjF6TTggMTNoOHYtMkg4djJ6bTktNmgtNHYxLjloNGMxLjcxIDAgMy4xIDEuMzkgMy4xIDMuMXMtMS4zOSAzLjEtMy4xIDMuMWgtNFYxN2g0YzIuNzYgMCA1LTIuMjQgNS01cy0yLjI0LTUtNS01eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiM2MTYxNjEiIGQ9Ik0xOSA1djE0SDVWNWgxNG0xLjEtMkgzLjljLS41IDAtLjkuNC0uOS45djE2LjJjMCAuNC40LjkuOS45aDE2LjJjLjQgMCAuOS0uNS45LS45VjMuOWMwLS41LS41LS45LS45LS45ek0xMSA3aDZ2MmgtNlY3em0wIDRoNnYyaC02di0yem0wIDRoNnYyaC02ek03IDdoMnYySDd6bTAgNGgydjJIN3ptMCA0aDJ2Mkg3eiIvPgo8L3N2Zz4=);\n  --jp-icon-listings-info: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MC45NzggNTAuOTc4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MC45NzggNTAuOTc4OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+Cgk8Zz4KCQk8cGF0aCBzdHlsZT0iZmlsbDojMDEwMDAyOyIgZD0iTTQzLjUyLDcuNDU4QzM4LjcxMSwyLjY0OCwzMi4zMDcsMCwyNS40ODksMEMxOC42NywwLDEyLjI2NiwyLjY0OCw3LjQ1OCw3LjQ1OAoJCQljLTkuOTQzLDkuOTQxLTkuOTQzLDI2LjExOSwwLDM2LjA2MmM0LjgwOSw0LjgwOSwxMS4yMTIsNy40NTYsMTguMDMxLDcuNDU4YzAsMCwwLjAwMSwwLDAuMDAyLDAKCQkJYzYuODE2LDAsMTMuMjIxLTIuNjQ4LDE4LjAyOS03LjQ1OGM0LjgwOS00LjgwOSw3LjQ1Ny0xMS4yMTIsNy40NTctMTguMDNDNTAuOTc3LDE4LjY3LDQ4LjMyOCwxMi4yNjYsNDMuNTIsNy40NTh6CgkJCSBNNDIuMTA2LDQyLjEwNWMtNC40MzIsNC40MzEtMTAuMzMyLDYuODcyLTE2LjYxNSw2Ljg3MmgtMC4wMDJjLTYuMjg1LTAuMDAxLTEyLjE4Ny0yLjQ0MS0xNi42MTctNi44NzIKCQkJYy05LjE2Mi05LjE2My05LjE2Mi0yNC4wNzEsMC0zMy4yMzNDMTMuMzAzLDQuNDQsMTkuMjA0LDIsMjUuNDg5LDJjNi4yODQsMCwxMi4xODYsMi40NCwxNi42MTcsNi44NzIKCQkJYzQuNDMxLDQuNDMxLDYuODcxLDEwLjMzMiw2Ljg3MSwxNi42MTdDNDguOTc3LDMxLjc3Miw0Ni41MzYsMzcuNjc1LDQyLjEwNiw0Mi4xMDV6Ii8+CgkJPHBhdGggc3R5bGU9ImZpbGw6IzAxMDAwMjsiIGQ9Ik0yMy41NzgsMzIuMjE4Yy0wLjAyMy0xLjczNCwwLjE0My0zLjA1OSwwLjQ5Ni0zLjk3MmMwLjM1My0wLjkxMywxLjExLTEuOTk3LDIuMjcyLTMuMjUzCgkJCWMwLjQ2OC0wLjUzNiwwLjkyMy0xLjA2MiwxLjM2Ny0xLjU3NWMwLjYyNi0wLjc1MywxLjEwNC0xLjQ3OCwxLjQzNi0yLjE3NWMwLjMzMS0wLjcwNywwLjQ5NS0xLjU0MSwwLjQ5NS0yLjUKCQkJYzAtMS4wOTYtMC4yNi0yLjA4OC0wLjc3OS0yLjk3OWMtMC41NjUtMC44NzktMS41MDEtMS4zMzYtMi44MDYtMS4zNjljLTEuODAyLDAuMDU3LTIuOTg1LDAuNjY3LTMuNTUsMS44MzIKCQkJYy0wLjMwMSwwLjUzNS0wLjUwMywxLjE0MS0wLjYwNywxLjgxNGMtMC4xMzksMC43MDctMC4yMDcsMS40MzItMC4yMDcsMi4xNzRoLTIuOTM3Yy0wLjA5MS0yLjIwOCwwLjQwNy00LjExNCwxLjQ5My01LjcxOQoJCQljMS4wNjItMS42NCwyLjg1NS0yLjQ4MSw1LjM3OC0yLjUyN2MyLjE2LDAuMDIzLDMuODc0LDAuNjA4LDUuMTQxLDEuNzU4YzEuMjc4LDEuMTYsMS45MjksMi43NjQsMS45NSw0LjgxMQoJCQljMCwxLjE0Mi0wLjEzNywyLjExMS0wLjQxLDIuOTExYy0wLjMwOSwwLjg0NS0wLjczMSwxLjU5My0xLjI2OCwyLjI0M2MtMC40OTIsMC42NS0xLjA2OCwxLjMxOC0xLjczLDIuMDAyCgkJCWMtMC42NSwwLjY5Ny0xLjMxMywxLjQ3OS0xLjk4NywyLjM0NmMtMC4yMzksMC4zNzctMC40MjksMC43NzctMC41NjUsMS4xOTljLTAuMTYsMC45NTktMC4yMTcsMS45NTEtMC4xNzEsMi45NzkKCQkJQzI2LjU4OSwzMi4yMTgsMjMuNTc4LDMyLjIxOCwyMy41NzgsMzIuMjE4eiBNMjMuNTc4LDM4LjIydi0zLjQ4NGgzLjA3NnYzLjQ4NEgyMy41Nzh6Ii8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-markdown: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjN0IxRkEyIiBkPSJNNSAxNC45aDEybC02LjEgNnptOS40LTYuOGMwLTEuMy0uMS0yLjktLjEtNC41LS40IDEuNC0uOSAyLjktMS4zIDQuM2wtMS4zIDQuM2gtMkw4LjUgNy45Yy0uNC0xLjMtLjctMi45LTEtNC4zLS4xIDEuNi0uMSAzLjItLjIgNC42TDcgMTIuNEg0LjhsLjctMTFoMy4zTDEwIDVjLjQgMS4yLjcgMi43IDEgMy45LjMtMS4yLjctMi42IDEtMy45bDEuMi0zLjdoMy4zbC42IDExaC0yLjRsLS4zLTQuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-new-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwIDZoLThsLTItMkg0Yy0xLjExIDAtMS45OS44OS0xLjk5IDJMMiAxOGMwIDEuMTEuODkgMiAyIDJoMTZjMS4xMSAwIDItLjg5IDItMlY4YzAtMS4xMS0uODktMi0yLTJ6bS0xIDhoLTN2M2gtMnYtM2gtM3YtMmgzVjloMnYzaDN2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-not-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI1IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMTkgMTcuMTg0NCAyLjk2OTY4IDE0LjMwMzIgMS44NjA5NCAxMS40NDA5WiIvPgogICAgPHBhdGggY2xhc3M9ImpwLWljb24yIiBzdHJva2U9IiMzMzMzMzMiIHN0cm9rZS13aWR0aD0iMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOS4zMTU5MiA5LjMyMDMxKSIgZD0iTTcuMzY4NDIgMEwwIDcuMzY0NzkiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDkuMzE1OTIgMTYuNjgzNikgc2NhbGUoMSAtMSkiIGQ9Ik03LjM2ODQyIDBMMCA3LjM2NDc5Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-notebook: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNFRjZDMDAiPgogICAgPHBhdGggZD0iTTE4LjcgMy4zdjE1LjRIMy4zVjMuM2gxNS40bTEuNS0xLjVIMS44djE4LjNoMTguM2wuMS0xOC4zeiIvPgogICAgPHBhdGggZD0iTTE2LjUgMTYuNWwtNS40LTQuMy01LjYgNC4zdi0xMWgxMXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-numbering: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTQgMTlINlYxOS41SDVWMjAuNUg2VjIxSDRWMjJIN1YxOEg0VjE5Wk01IDEwSDZWNkg0VjdINVYxMFpNNCAxM0g1LjhMNCAxNS4xVjE2SDdWMTVINS4yTDcgMTIuOVYxMkg0VjEzWk05IDdWOUgyM1Y3SDlaTTkgMjFIMjNWMTlIOVYyMVpNOSAxNUgyM1YxM0g5VjE1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-offline-bolt: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDIuMDJjLTUuNTEgMC05Ljk4IDQuNDctOS45OCA5Ljk4czQuNDcgOS45OCA5Ljk4IDkuOTggOS45OC00LjQ3IDkuOTgtOS45OFMxNy41MSAyLjAyIDEyIDIuMDJ6TTExLjQ4IDIwdi02LjI2SDhMMTMgNHY2LjI2aDMuMzVMMTEuNDggMjB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-palette: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE4IDEzVjIwSDRWNkg5LjAyQzkuMDcgNS4yOSA5LjI0IDQuNjIgOS41IDRINEMyLjkgNCAyIDQuOSAyIDZWMjBDMiAyMS4xIDIuOSAyMiA0IDIySDE4QzE5LjEgMjIgMjAgMjEuMSAyMCAyMFYxNUwxOCAxM1pNMTkuMyA4Ljg5QzE5Ljc0IDguMTkgMjAgNy4zOCAyMCA2LjVDMjAgNC4wMSAxNy45OSAyIDE1LjUgMkMxMy4wMSAyIDExIDQuMDEgMTEgNi41QzExIDguOTkgMTMuMDEgMTEgMTUuNDkgMTFDMTYuMzcgMTEgMTcuMTkgMTAuNzQgMTcuODggMTAuM0wyMSAxMy40MkwyMi40MiAxMkwxOS4zIDguODlaTTE1LjUgOUMxNC4xMiA5IDEzIDcuODggMTMgNi41QzEzIDUuMTIgMTQuMTIgNCAxNS41IDRDMTYuODggNCAxOCA1LjEyIDE4IDYuNUMxOCA3Ljg4IDE2Ljg4IDkgMTUuNSA5WiIvPgogICAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDZIOS4wMTg5NEM5LjAwNjM5IDYuMTY1MDIgOSA2LjMzMTc2IDkgNi41QzkgOC44MTU3NyAxMC4yMTEgMTAuODQ4NyAxMi4wMzQzIDEySDlWMTRIMTZWMTIuOTgxMUMxNi41NzAzIDEyLjkzNzcgMTcuMTIgMTIuODIwNyAxNy42Mzk2IDEyLjYzOTZMMTggMTNWMjBINFY2Wk04IDhINlYxMEg4VjhaTTYgMTJIOFYxNEg2VjEyWk04IDE2SDZWMThIOFYxNlpNOSAxNkgxNlYxOEg5VjE2WiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-paste: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE5IDJoLTQuMThDMTQuNC44NCAxMy4zIDAgMTIgMGMtMS4zIDAtMi40Ljg0LTIuODIgMkg1Yy0xLjEgMC0yIC45LTIgMnYxNmMwIDEuMS45IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjRjMC0xLjEtLjktMi0yLTJ6bS03IDBjLjU1IDAgMSAuNDUgMSAxcy0uNDUgMS0xIDEtMS0uNDUtMS0xIC40NS0xIDEtMXptNyAxOEg1VjRoMnYzaDEwVjRoMnYxNnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-pdf: url(data:image/svg+xml;base64,PHN2ZwogICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMiAyMiIgd2lkdGg9IjE2Ij4KICAgIDxwYXRoIHRyYW5zZm9ybT0icm90YXRlKDQ1KSIgY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI0ZGMkEyQSIKICAgICAgIGQ9Im0gMjIuMzQ0MzY5LC0zLjAxNjM2NDIgaCA1LjYzODYwNCB2IDEuNTc5MjQzMyBoIC0zLjU0OTIyNyB2IDEuNTA4NjkyOTkgaCAzLjMzNzU3NiBWIDEuNjUwODE1NCBoIC0zLjMzNzU3NiB2IDMuNDM1MjYxMyBoIC0yLjA4OTM3NyB6IG0gLTcuMTM2NDQ0LDEuNTc5MjQzMyB2IDQuOTQzOTU0MyBoIDAuNzQ4OTIgcSAxLjI4MDc2MSwwIDEuOTUzNzAzLC0wLjYzNDk1MzUgMC42NzgzNjksLTAuNjM0OTUzNSAwLjY3ODM2OSwtMS44NDUxNjQxIDAsLTEuMjA0NzgzNTUgLTAuNjcyOTQyLC0xLjgzNDMxMDExIC0wLjY3Mjk0MiwtMC42Mjk1MjY1OSAtMS45NTkxMywtMC42Mjk1MjY1OSB6IG0gLTIuMDg5Mzc3LC0xLjU3OTI0MzMgaCAyLjIwMzM0MyBxIDEuODQ1MTY0LDAgMi43NDYwMzksMC4yNjU5MjA3IDAuOTA2MzAxLDAuMjYwNDkzNyAxLjU1MjEwOCwwLjg5MDAyMDMgMC41Njk4MywwLjU0ODEyMjMgMC44NDY2MDUsMS4yNjQ0ODAwNiAwLjI3Njc3NCwwLjcxNjM1NzgxIDAuMjc2Nzc0LDEuNjIyNjU4OTQgMCwwLjkxNzE1NTEgLTAuMjc2Nzc0LDEuNjM4OTM5OSAtMC4yNzY3NzUsMC43MTYzNTc4IC0wLjg0NjYwNSwxLjI2NDQ4IC0wLjY1MTIzNCwwLjYyOTUyNjYgLTEuNTYyOTYyLDAuODk1NDQ3MyAtMC45MTE3MjgsMC4yNjA0OTM3IC0yLjczNTE4NSwwLjI2MDQ5MzcgaCAtMi4yMDMzNDMgeiBtIC04LjE0NTg1NjUsMCBoIDMuNDY3ODIzIHEgMS41NDY2ODE2LDAgMi4zNzE1Nzg1LDAuNjg5MjIzIDAuODMwMzI0LDAuNjgzNzk2MSAwLjgzMDMyNCwxLjk1MzcwMzE0IDAsMS4yNzUzMzM5NyAtMC44MzAzMjQsMS45NjQ1NTcwNiBRIDkuOTg3MTk2MSwyLjI3NDkxNSA4LjQ0MDUxNDUsMi4yNzQ5MTUgSCA3LjA2MjA2ODQgViA1LjA4NjA3NjcgSCA0Ljk3MjY5MTUgWiBtIDIuMDg5Mzc2OSwxLjUxNDExOTkgdiAyLjI2MzAzOTQzIGggMS4xNTU5NDEgcSAwLjYwNzgxODgsMCAwLjkzODg2MjksLTAuMjkzMDU1NDcgMC4zMzEwNDQxLC0wLjI5ODQ4MjQxIDAuMzMxMDQ0MSwtMC44NDExNzc3MiAwLC0wLjU0MjY5NTMxIC0wLjMzMTA0NDEsLTAuODM1NzUwNzQgLTAuMzMxMDQ0MSwtMC4yOTMwNTU1IC0wLjkzODg2MjksLTAuMjkzMDU1NSB6IgovPgo8L3N2Zz4K);\n  --jp-icon-python: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMEQ0N0ExIj4KICAgIDxwYXRoIGQ9Ik0xMS4xIDYuOVY1LjhINi45YzAtLjUgMC0xLjMuMi0xLjYuNC0uNy44LTEuMSAxLjctMS40IDEuNy0uMyAyLjUtLjMgMy45LS4xIDEgLjEgMS45LjkgMS45IDEuOXY0LjJjMCAuNS0uOSAxLjYtMiAxLjZIOC44Yy0xLjUgMC0yLjQgMS40LTIuNCAyLjh2Mi4ySDQuN0MzLjUgMTUuMSAzIDE0IDMgMTMuMVY5Yy0uMS0xIC42LTIgMS44LTIgMS41LS4xIDYuMy0uMSA2LjMtLjF6Ii8+CiAgICA8cGF0aCBkPSJNMTAuOSAxNS4xdjEuMWg0LjJjMCAuNSAwIDEuMy0uMiAxLjYtLjQuNy0uOCAxLjEtMS43IDEuNC0xLjcuMy0yLjUuMy0zLjkuMS0xLS4xLTEuOS0uOS0xLjktMS45di00LjJjMC0uNS45LTEuNiAyLTEuNmgzLjhjMS41IDAgMi40LTEuNCAyLjQtMi44VjYuNmgxLjdDMTguNSA2LjkgMTkgOCAxOSA4LjlWMTNjMCAxLS43IDIuMS0xLjkgMi4xaC02LjJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-r-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjE5NkYzIiBkPSJNNC40IDIuNWMxLjItLjEgMi45LS4zIDQuOS0uMyAyLjUgMCA0LjEuNCA1LjIgMS4zIDEgLjcgMS41IDEuOSAxLjUgMy41IDAgMi0xLjQgMy41LTIuOSA0LjEgMS4yLjQgMS43IDEuNiAyLjIgMyAuNiAxLjkgMSAzLjkgMS4zIDQuNmgtMy44Yy0uMy0uNC0uOC0xLjctMS4yLTMuN3MtMS4yLTIuNi0yLjYtMi42aC0uOXY2LjRINC40VjIuNXptMy43IDYuOWgxLjRjMS45IDAgMi45LS45IDIuOS0yLjNzLTEtMi4zLTIuOC0yLjNjLS43IDAtMS4zIDAtMS42LjJ2NC41aC4xdi0uMXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-react: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMTUwIDE1MCA1NDEuOSAyOTUuMyI+CiAgPGcgY2xhc3M9ImpwLWljb24tYnJhbmQyIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzYxREFGQiI+CiAgICA8cGF0aCBkPSJNNjY2LjMgMjk2LjVjMC0zMi41LTQwLjctNjMuMy0xMDMuMS04Mi40IDE0LjQtNjMuNiA4LTExNC4yLTIwLjItMTMwLjQtNi41LTMuOC0xNC4xLTUuNi0yMi40LTUuNnYyMi4zYzQuNiAwIDguMy45IDExLjQgMi42IDEzLjYgNy44IDE5LjUgMzcuNSAxNC45IDc1LjctMS4xIDkuNC0yLjkgMTkuMy01LjEgMjkuNC0xOS42LTQuOC00MS04LjUtNjMuNS0xMC45LTEzLjUtMTguNS0yNy41LTM1LjMtNDEuNi01MCAzMi42LTMwLjMgNjMuMi00Ni45IDg0LTQ2LjlWNzhjLTI3LjUgMC02My41IDE5LjYtOTkuOSA1My42LTM2LjQtMzMuOC03Mi40LTUzLjItOTkuOS01My4ydjIyLjNjMjAuNyAwIDUxLjQgMTYuNSA4NCA0Ni42LTE0IDE0LjctMjggMzEuNC00MS4zIDQ5LjktMjIuNiAyLjQtNDQgNi4xLTYzLjYgMTEtMi4zLTEwLTQtMTkuNy01LjItMjktNC43LTM4LjIgMS4xLTY3LjkgMTQuNi03NS44IDMtMS44IDYuOS0yLjYgMTEuNS0yLjZWNzguNWMtOC40IDAtMTYgMS44LTIyLjYgNS42LTI4LjEgMTYuMi0zNC40IDY2LjctMTkuOSAxMzAuMS02Mi4yIDE5LjItMTAyLjcgNDkuOS0xMDIuNyA4Mi4zIDAgMzIuNSA0MC43IDYzLjMgMTAzLjEgODIuNC0xNC40IDYzLjYtOCAxMTQuMiAyMC4yIDEzMC40IDYuNSAzLjggMTQuMSA1LjYgMjIuNSA1LjYgMjcuNSAwIDYzLjUtMTkuNiA5OS45LTUzLjYgMzYuNCAzMy44IDcyLjQgNTMuMiA5OS45IDUzLjIgOC40IDAgMTYtMS44IDIyLjYtNS42IDI4LjEtMTYuMiAzNC40LTY2LjcgMTkuOS0xMzAuMSA2Mi0xOS4xIDEwMi41LTQ5LjkgMTAyLjUtODIuM3ptLTEzMC4yLTY2LjdjLTMuNyAxMi45LTguMyAyNi4yLTEzLjUgMzkuNS00LjEtOC04LjQtMTYtMTMuMS0yNC00LjYtOC05LjUtMTUuOC0xNC40LTIzLjQgMTQuMiAyLjEgMjcuOSA0LjcgNDEgNy45em0tNDUuOCAxMDYuNWMtNy44IDEzLjUtMTUuOCAyNi4zLTI0LjEgMzguMi0xNC45IDEuMy0zMCAyLTQ1LjIgMi0xNS4xIDAtMzAuMi0uNy00NS0xLjktOC4zLTExLjktMTYuNC0yNC42LTI0LjItMzgtNy42LTEzLjEtMTQuNS0yNi40LTIwLjgtMzkuOCA2LjItMTMuNCAxMy4yLTI2LjggMjAuNy0zOS45IDcuOC0xMy41IDE1LjgtMjYuMyAyNC4xLTM4LjIgMTQuOS0xLjMgMzAtMiA0NS4yLTIgMTUuMSAwIDMwLjIuNyA0NSAxLjkgOC4zIDExLjkgMTYuNCAyNC42IDI0LjIgMzggNy42IDEzLjEgMTQuNSAyNi40IDIwLjggMzkuOC02LjMgMTMuNC0xMy4yIDI2LjgtMjAuNyAzOS45em0zMi4zLTEzYzUuNCAxMy40IDEwIDI2LjggMTMuOCAzOS44LTEzLjEgMy4yLTI2LjkgNS45LTQxLjIgOCA0LjktNy43IDkuOC0xNS42IDE0LjQtMjMuNyA0LjYtOCA4LjktMTYuMSAxMy0yNC4xek00MjEuMiA0MzBjLTkuMy05LjYtMTguNi0yMC4zLTI3LjgtMzIgOSAuNCAxOC4yLjcgMjcuNS43IDkuNCAwIDE4LjctLjIgMjcuOC0uNy05IDExLjctMTguMyAyMi40LTI3LjUgMzJ6bS03NC40LTU4LjljLTE0LjItMi4xLTI3LjktNC43LTQxLTcuOSAzLjctMTIuOSA4LjMtMjYuMiAxMy41LTM5LjUgNC4xIDggOC40IDE2IDEzLjEgMjQgNC43IDggOS41IDE1LjggMTQuNCAyMy40ek00MjAuNyAxNjNjOS4zIDkuNiAxOC42IDIwLjMgMjcuOCAzMi05LS40LTE4LjItLjctMjcuNS0uNy05LjQgMC0xOC43LjItMjcuOC43IDktMTEuNyAxOC4zLTIyLjQgMjcuNS0zMnptLTc0IDU4LjljLTQuOSA3LjctOS44IDE1LjYtMTQuNCAyMy43LTQuNiA4LTguOSAxNi0xMyAyNC01LjQtMTMuNC0xMC0yNi44LTEzLjgtMzkuOCAxMy4xLTMuMSAyNi45LTUuOCA0MS4yLTcuOXptLTkwLjUgMTI1LjJjLTM1LjQtMTUuMS01OC4zLTM0LjktNTguMy01MC42IDAtMTUuNyAyMi45LTM1LjYgNTguMy01MC42IDguNi0zLjcgMTgtNyAyNy43LTEwLjEgNS43IDE5LjYgMTMuMiA0MCAyMi41IDYwLjktOS4yIDIwLjgtMTYuNiA0MS4xLTIyLjIgNjAuNi05LjktMy4xLTE5LjMtNi41LTI4LTEwLjJ6TTMxMCA0OTBjLTEzLjYtNy44LTE5LjUtMzcuNS0xNC45LTc1LjcgMS4xLTkuNCAyLjktMTkuMyA1LjEtMjkuNCAxOS42IDQuOCA0MSA4LjUgNjMuNSAxMC45IDEzLjUgMTguNSAyNy41IDM1LjMgNDEuNiA1MC0zMi42IDMwLjMtNjMuMiA0Ni45LTg0IDQ2LjktNC41LS4xLTguMy0xLTExLjMtMi43em0yMzcuMi03Ni4yYzQuNyAzOC4yLTEuMSA2Ny45LTE0LjYgNzUuOC0zIDEuOC02LjkgMi42LTExLjUgMi42LTIwLjcgMC01MS40LTE2LjUtODQtNDYuNiAxNC0xNC43IDI4LTMxLjQgNDEuMy00OS45IDIyLjYtMi40IDQ0LTYuMSA2My42LTExIDIuMyAxMC4xIDQuMSAxOS44IDUuMiAyOS4xem0zOC41LTY2LjdjLTguNiAzLjctMTggNy0yNy43IDEwLjEtNS43LTE5LjYtMTMuMi00MC0yMi41LTYwLjkgOS4yLTIwLjggMTYuNi00MS4xIDIyLjItNjAuNiA5LjkgMy4xIDE5LjMgNi41IDI4LjEgMTAuMiAzNS40IDE1LjEgNTguMyAzNC45IDU4LjMgNTAuNi0uMSAxNS43LTIzIDM1LjYtNTguNCA1MC42ek0zMjAuOCA3OC40eiIvPgogICAgPGNpcmNsZSBjeD0iNDIwLjkiIGN5PSIyOTYuNSIgcj0iNDUuNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-redo: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTE4LjQgMTAuNkMxNi41NSA4Ljk5IDE0LjE1IDggMTEuNSA4Yy00LjY1IDAtOC41OCAzLjAzLTkuOTYgNy4yMkwzLjkgMTZjMS4wNS0zLjE5IDQuMDUtNS41IDcuNi01LjUgMS45NSAwIDMuNzMuNzIgNS4xMiAxLjg4TDEzIDE2aDlWN2wtMy42IDMuNnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-refresh: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTkgMTMuNWMtMi40OSAwLTQuNS0yLjAxLTQuNS00LjVTNi41MSA0LjUgOSA0LjVjMS4yNCAwIDIuMzYuNTIgMy4xNyAxLjMzTDEwIDhoNVYzbC0xLjc2IDEuNzZDMTIuMTUgMy42OCAxMC42NiAzIDkgMyA1LjY5IDMgMy4wMSA1LjY5IDMuMDEgOVM1LjY5IDE1IDkgMTVjMi45NyAwIDUuNDMtMi4xNiA1LjktNWgtMS41MmMtLjQ2IDItMi4yNCAzLjUtNC4zOCAzLjV6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-regex: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi1hY2NlbnQyIiBmaWxsPSIjRkZGIj4KICAgIDxjaXJjbGUgY2xhc3M9InN0MiIgY3g9IjUuNSIgY3k9IjE0LjUiIHI9IjEuNSIvPgogICAgPHJlY3QgeD0iMTIiIHk9IjQiIGNsYXNzPSJzdDIiIHdpZHRoPSIxIiBoZWlnaHQ9IjgiLz4KICAgIDxyZWN0IHg9IjguNSIgeT0iNy41IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjg2NiAtMC41IDAuNSAwLjg2NiAtMi4zMjU1IDcuMzIxOSkiIGNsYXNzPSJzdDIiIHdpZHRoPSI4IiBoZWlnaHQ9IjEiLz4KICAgIDxyZWN0IHg9IjEyIiB5PSI0IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjUgLTAuODY2IDAuODY2IDAuNSAtMC42Nzc5IDE0LjgyNTIpIiBjbGFzcz0ic3QyIiB3aWR0aD0iMSIgaGVpZ2h0PSI4Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-run: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTggNXYxNGwxMS03eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-running: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptOTYgMzI4YzAgOC44LTcuMiAxNi0xNiAxNkgxNzZjLTguOCAwLTE2LTcuMi0xNi0xNlYxNzZjMC04LjggNy4yLTE2IDE2LTE2aDE2MGM4LjggMCAxNiA3LjIgMTYgMTZ2MTYweiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-save: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE3IDNINWMtMS4xMSAwLTIgLjktMiAydjE0YzAgMS4xLjg5IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjdsLTQtNHptLTUgMTZjLTEuNjYgMC0zLTEuMzQtMy0zczEuMzQtMyAzLTMgMyAxLjM0IDMgMy0xLjM0IDMtMyAzem0zLTEwSDVWNWgxMHY0eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-search: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjEsMTAuOWgtMC43bC0wLjItMC4yYzAuOC0wLjksMS4zLTIuMiwxLjMtMy41YzAtMy0yLjQtNS40LTUuNC01LjRTMS44LDQuMiwxLjgsNy4xczIuNCw1LjQsNS40LDUuNCBjMS4zLDAsMi41LTAuNSwzLjUtMS4zbDAuMiwwLjJ2MC43bDQuMSw0LjFsMS4yLTEuMkwxMi4xLDEwLjl6IE03LjEsMTAuOWMtMi4xLDAtMy43LTEuNy0zLjctMy43czEuNy0zLjcsMy43LTMuN3MzLjcsMS43LDMuNywzLjcgUzkuMiwxMC45LDcuMSwxMC45eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-settings: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuNDMgMTIuOThjLjA0LS4zMi4wNy0uNjQuMDctLjk4cy0uMDMtLjY2LS4wNy0uOThsMi4xMS0xLjY1Yy4xOS0uMTUuMjQtLjQyLjEyLS42NGwtMi0zLjQ2Yy0uMTItLjIyLS4zOS0uMy0uNjEtLjIybC0yLjQ5IDFjLS41Mi0uNC0xLjA4LS43My0xLjY5LS45OGwtLjM4LTIuNjVBLjQ4OC40ODggMCAwMDE0IDJoLTRjLS4yNSAwLS40Ni4xOC0uNDkuNDJsLS4zOCAyLjY1Yy0uNjEuMjUtMS4xNy41OS0xLjY5Ljk4bC0yLjQ5LTFjLS4yMy0uMDktLjQ5IDAtLjYxLjIybC0yIDMuNDZjLS4xMy4yMi0uMDcuNDkuMTIuNjRsMi4xMSAxLjY1Yy0uMDQuMzItLjA3LjY1LS4wNy45OHMuMDMuNjYuMDcuOThsLTIuMTEgMS42NWMtLjE5LjE1LS4yNC40Mi0uMTIuNjRsMiAzLjQ2Yy4xMi4yMi4zOS4zLjYxLjIybDIuNDktMWMuNTIuNCAxLjA4LjczIDEuNjkuOThsLjM4IDIuNjVjLjAzLjI0LjI0LjQyLjQ5LjQyaDRjLjI1IDAgLjQ2LS4xOC40OS0uNDJsLjM4LTIuNjVjLjYxLS4yNSAxLjE3LS41OSAxLjY5LS45OGwyLjQ5IDFjLjIzLjA5LjQ5IDAgLjYxLS4yMmwyLTMuNDZjLjEyLS4yMi4wNy0uNDktLjEyLS42NGwtMi4xMS0xLjY1ek0xMiAxNS41Yy0xLjkzIDAtMy41LTEuNTctMy41LTMuNXMxLjU3LTMuNSAzLjUtMy41IDMuNSAxLjU3IDMuNSAzLjUtMS41NyAzLjUtMy41IDMuNXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-spreadsheet: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNENBRjUwIiBkPSJNMi4yIDIuMnYxNy42aDE3LjZWMi4ySDIuMnptMTUuNCA3LjdoLTUuNVY0LjRoNS41djUuNXpNOS45IDQuNHY1LjVINC40VjQuNGg1LjV6bS01LjUgNy43aDUuNXY1LjVINC40di01LjV6bTcuNyA1LjV2LTUuNWg1LjV2NS41aC01LjV6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-stop: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik02IDZoMTJ2MTJINnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tab: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIxIDNIM2MtMS4xIDAtMiAuOS0yIDJ2MTRjMCAxLjEuOSAyIDIgMmgxOGMxLjEgMCAyLS45IDItMlY1YzAtMS4xLS45LTItMi0yem0wIDE2SDNWNWgxMHY0aDh2MTB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-table-rows: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMSw4SDNWNGgxOFY4eiBNMjEsMTBIM3Y0aDE4VjEweiBNMjEsMTZIM3Y0aDE4VjE2eiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-tag: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCA0MyAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTI4LjgzMzIgMTIuMzM0TDMyLjk5OTggMTYuNTAwN0wzNy4xNjY1IDEyLjMzNEgyOC44MzMyWiIvPgoJCTxwYXRoIGQ9Ik0xNi4yMDk1IDIxLjYxMDRDMTUuNjg3MyAyMi4xMjk5IDE0Ljg0NDMgMjIuMTI5OSAxNC4zMjQ4IDIxLjYxMDRMNi45ODI5IDE0LjcyNDVDNi41NzI0IDE0LjMzOTQgNi4wODMxMyAxMy42MDk4IDYuMDQ3ODYgMTMuMDQ4MkM1Ljk1MzQ3IDExLjUyODggNi4wMjAwMiA4LjYxOTQ0IDYuMDY2MjEgNy4wNzY5NUM2LjA4MjgxIDYuNTE0NzcgNi41NTU0OCA2LjA0MzQ3IDcuMTE4MDQgNi4wMzA1NUM5LjA4ODYzIDUuOTg0NzMgMTMuMjYzOCA1LjkzNTc5IDEzLjY1MTggNi4zMjQyNUwyMS43MzY5IDEzLjYzOUMyMi4yNTYgMTQuMTU4NSAyMS43ODUxIDE1LjQ3MjQgMjEuMjYyIDE1Ljk5NDZMMTYuMjA5NSAyMS42MTA0Wk05Ljc3NTg1IDguMjY1QzkuMzM1NTEgNy44MjU2NiA4LjYyMzUxIDcuODI1NjYgOC4xODI4IDguMjY1QzcuNzQzNDYgOC43MDU3MSA3Ljc0MzQ2IDkuNDE3MzMgOC4xODI4IDkuODU2NjdDOC42MjM4MiAxMC4yOTY0IDkuMzM1ODIgMTAuMjk2NCA5Ljc3NTg1IDkuODU2NjdDMTAuMjE1NiA5LjQxNzMzIDEwLjIxNTYgOC43MDUzMyA5Ljc3NTg1IDguMjY1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-terminal: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiA+CiAgICA8cmVjdCBjbGFzcz0ianAtaWNvbjIganAtaWNvbi1zZWxlY3RhYmxlIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMikiIGZpbGw9IiMzMzMzMzMiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uLWFjY2VudDIganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGQ9Ik01LjA1NjY0IDguNzYxNzJDNS4wNTY2NCA4LjU5NzY2IDUuMDMxMjUgOC40NTMxMiA0Ljk4MDQ3IDguMzI4MTJDNC45MzM1OSA4LjE5OTIyIDQuODU1NDcgOC4wODIwMyA0Ljc0NjA5IDcuOTc2NTZDNC42NDA2MiA3Ljg3MTA5IDQuNSA3Ljc3NTM5IDQuMzI0MjIgNy42ODk0NUM0LjE1MjM0IDcuNTk5NjEgMy45NDMzNiA3LjUxMTcyIDMuNjk3MjcgNy40MjU3OEMzLjMwMjczIDcuMjg1MTYgMi45NDMzNiA3LjEzNjcyIDIuNjE5MTQgNi45ODA0N0MyLjI5NDkyIDYuODI0MjIgMi4wMTc1OCA2LjY0MjU4IDEuNzg3MTEgNi40MzU1NUMxLjU2MDU1IDYuMjI4NTIgMS4zODQ3NyA1Ljk4ODI4IDEuMjU5NzcgNS43MTQ4NEMxLjEzNDc3IDUuNDM3NSAxLjA3MjI3IDUuMTA5MzggMS4wNzIyNyA0LjczMDQ3QzEuMDcyMjcgNC4zOTg0NCAxLjEyODkxIDQuMDk1NyAxLjI0MjE5IDMuODIyMjdDMS4zNTU0NyAzLjU0NDkyIDEuNTE1NjIgMy4zMDQ2OSAxLjcyMjY2IDMuMTAxNTZDMS45Mjk2OSAyLjg5ODQ0IDIuMTc5NjkgMi43MzQzNyAyLjQ3MjY2IDIuNjA5MzhDMi43NjU2MiAyLjQ4NDM4IDMuMDkxOCAyLjQwNDMgMy40NTExNyAyLjM2OTE0VjEuMTA5MzhINC4zODg2N1YyLjM4MDg2QzQuNzQwMjMgMi40Mjc3MyA1LjA1NjY0IDIuNTIzNDQgNS4zMzc4OSAyLjY2Nzk3QzUuNjE5MTQgMi44MTI1IDUuODU3NDIgMy4wMDE5NSA2LjA1MjczIDMuMjM2MzNDNi4yNTE5NSAzLjQ2NjggNi40MDQzIDMuNzQwMjMgNi41MDk3NyA0LjA1NjY0QzYuNjE5MTQgNC4zNjkxNCA2LjY3MzgzIDQuNzIwNyA2LjY3MzgzIDUuMTExMzNINS4wNDQ5MkM1LjA0NDkyIDQuNjM4NjcgNC45Mzc1IDQuMjgxMjUgNC43MjI2NiA0LjAzOTA2QzQuNTA3ODEgMy43OTI5NyA0LjIxNjggMy42Njk5MiAzLjg0OTYxIDMuNjY5OTJDMy42NTAzOSAzLjY2OTkyIDMuNDc2NTYgMy42OTcyNyAzLjMyODEyIDMuNzUxOTVDMy4xODM1OSAzLjgwMjczIDMuMDY0NDUgMy44NzY5NSAyLjk3MDcgMy45NzQ2MUMyLjg3Njk1IDQuMDY4MzYgMi44MDY2NCA0LjE3OTY5IDIuNzU5NzcgNC4zMDg1OUMyLjcxNjggNC40Mzc1IDIuNjk1MzEgNC41NzgxMiAyLjY5NTMxIDQuNzMwNDdDMi42OTUzMSA0Ljg4MjgxIDIuNzE2OCA1LjAxOTUzIDIuNzU5NzcgNS4xNDA2MkMyLjgwNjY0IDUuMjU3ODEgMi44ODI4MSA1LjM2NzE5IDIuOTg4MjggNS40Njg3NUMzLjA5NzY2IDUuNTcwMzEgMy4yNDAyMyA1LjY2Nzk3IDMuNDE2MDIgNS43NjE3MkMzLjU5MTggNS44NTE1NiAzLjgxMDU1IDUuOTQzMzYgNC4wNzIyNyA2LjAzNzExQzQuNDY2OCA2LjE4NTU1IDQuODI0MjIgNi4zMzk4NCA1LjE0NDUzIDYuNUM1LjQ2NDg0IDYuNjU2MjUgNS43MzgyOCA2LjgzOTg0IDUuOTY0ODQgNy4wNTA3OEM2LjE5NTMxIDcuMjU3ODEgNi4zNzEwOSA3LjUgNi40OTIxOSA3Ljc3NzM0QzYuNjE3MTkgOC4wNTA3OCA2LjY3OTY5IDguMzc1IDYuNjc5NjkgOC43NUM2LjY3OTY5IDkuMDkzNzUgNi42MjMwNSA5LjQwNDMgNi41MDk3NyA5LjY4MTY0QzYuMzk2NDggOS45NTUwOCA2LjIzNDM4IDEwLjE5MTQgNi4wMjM0NCAxMC4zOTA2QzUuODEyNSAxMC41ODk4IDUuNTU4NTkgMTAuNzUgNS4yNjE3MiAxMC44NzExQzQuOTY0ODQgMTAuOTg4MyA0LjYzMjgxIDExLjA2NDUgNC4yNjU2MiAxMS4wOTk2VjEyLjI0OEgzLjMzMzk4VjExLjA5OTZDMy4wMDE5NSAxMS4wNjg0IDIuNjc5NjkgMTAuOTk2MSAyLjM2NzE5IDEwLjg4MjhDMi4wNTQ2OSAxMC43NjU2IDEuNzc3MzQgMTAuNTk3NyAxLjUzNTE2IDEwLjM3ODlDMS4yOTY4OCAxMC4xNjAyIDEuMTA1NDcgOS44ODQ3NyAwLjk2MDkzOCA5LjU1MjczQzAuODE2NDA2IDkuMjE2OCAwLjc0NDE0MSA4LjgxNDQ1IDAuNzQ0MTQxIDguMzQ1N0gyLjM3ODkxQzIuMzc4OTEgOC42MjY5NSAyLjQxOTkyIDguODYzMjggMi41MDE5NSA5LjA1NDY5QzIuNTgzOTggOS4yNDIxOSAyLjY4OTQ1IDkuMzkyNTggMi44MTgzNiA5LjUwNTg2QzIuOTUxMTcgOS42MTUyMyAzLjEwMTU2IDkuNjkzMzYgMy4yNjk1MyA5Ljc0MDIzQzMuNDM3NSA5Ljc4NzExIDMuNjA5MzggOS44MTA1NSAzLjc4NTE2IDkuODEwNTVDNC4yMDMxMiA5LjgxMDU1IDQuNTE5NTMgOS43MTI4OSA0LjczNDM4IDkuNTE3NThDNC45NDkyMiA5LjMyMjI3IDUuMDU2NjQgOS4wNzAzMSA1LjA1NjY0IDguNzYxNzJaTTEzLjQxOCAxMi4yNzE1SDguMDc0MjJWMTFIMTMuNDE4VjEyLjI3MTVaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzLjk1MjY0IDYpIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);\n  --jp-icon-text-editor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTUgMTVIM3YyaDEydi0yem0wLThIM3YyaDEyVjd6TTMgMTNoMTh2LTJIM3Yyem0wIDhoMTh2LTJIM3Yyek0zIDN2MmgxOFYzSDN6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-toc: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik03LDVIMjFWN0g3VjVNNywxM1YxMUgyMVYxM0g3TTQsNC41QTEuNSwxLjUgMCAwLDEgNS41LDZBMS41LDEuNSAwIDAsMSA0LDcuNUExLjUsMS41IDAgMCwxIDIuNSw2QTEuNSwxLjUgMCAwLDEgNCw0LjVNNCwxMC41QTEuNSwxLjUgMCAwLDEgNS41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMy41QTEuNSwxLjUgMCAwLDEgMi41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMC41TTcsMTlWMTdIMjFWMTlIN000LDE2LjVBMS41LDEuNSAwIDAsMSA1LjUsMThBMS41LDEuNSAwIDAsMSA0LDE5LjVBMS41LDEuNSAwIDAsMSAyLjUsMThBMS41LDEuNSAwIDAsMSA0LDE2LjVaIiAvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tree-view: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMiAxMVYzaC03djNIOVYzSDJ2OGg3VjhoMnYxMGg0djNoN3YtOGgtN3YzaC0yVjhoMnYzeiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMiAxNy4xODQ0IDIuOTY5NjggMTQuMzAzMiAxLjg2MDk0IDExLjQ0MDlaIi8+CiAgICA8cGF0aCBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiMzMzMzMzMiIHN0cm9rZT0iIzMzMzMzMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA5Ljg2NzE5KSIgZD0iTTIuODYwMTUgNC44NjUzNUwwLjcyNjU0OSAyLjk5OTU5TDAgMy42MzA0NUwyLjg2MDE1IDYuMTMxNTdMOCAwLjYzMDg3Mkw3LjI3ODU3IDBMMi44NjAxNSA0Ljg2NTM1WiIvPgo8L3N2Zz4K);\n  --jp-icon-undo: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjUgOGMtMi42NSAwLTUuMDUuOTktNi45IDIuNkwyIDd2OWg5bC0zLjYyLTMuNjJjMS4zOS0xLjE2IDMuMTYtMS44OCA1LjEyLTEuODggMy41NCAwIDYuNTUgMi4zMSA3LjYgNS41bDIuMzctLjc4QzIxLjA4IDExLjAzIDE3LjE1IDggMTIuNSA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-vega: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbjEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjEyMTIxIj4KICAgIDxwYXRoIGQ9Ik0xMC42IDUuNGwyLjItMy4ySDIuMnY3LjNsNC02LjZ6Ii8+CiAgICA8cGF0aCBkPSJNMTUuOCAyLjJsLTQuNCA2LjZMNyA2LjNsLTQuOCA4djUuNWgxNy42VjIuMmgtNHptLTcgMTUuNEg1LjV2LTQuNGgzLjN2NC40em00LjQgMEg5LjhWOS44aDMuNHY3Ljh6bTQuNCAwaC0zLjRWNi41aDMuNHYxMS4xeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-yaml: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1jb250cmFzdDIganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjRDgxQjYwIj4KICAgIDxwYXRoIGQ9Ik03LjIgMTguNnYtNS40TDMgNS42aDMuM2wxLjQgMy4xYy4zLjkuNiAxLjYgMSAyLjUuMy0uOC42LTEuNiAxLTIuNWwxLjQtMy4xaDMuNGwtNC40IDcuNnY1LjVsLTIuOS0uMXoiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxNi41IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxMSIgcj0iMi4xIi8+CiAgPC9nPgo8L3N2Zz4K);\n}\n\n/* Icon CSS class declarations */\n\n.jp-AddIcon {\n  background-image: var(--jp-icon-add);\n}\n.jp-BugIcon {\n  background-image: var(--jp-icon-bug);\n}\n.jp-BuildIcon {\n  background-image: var(--jp-icon-build);\n}\n.jp-CaretDownEmptyIcon {\n  background-image: var(--jp-icon-caret-down-empty);\n}\n.jp-CaretDownEmptyThinIcon {\n  background-image: var(--jp-icon-caret-down-empty-thin);\n}\n.jp-CaretDownIcon {\n  background-image: var(--jp-icon-caret-down);\n}\n.jp-CaretLeftIcon {\n  background-image: var(--jp-icon-caret-left);\n}\n.jp-CaretRightIcon {\n  background-image: var(--jp-icon-caret-right);\n}\n.jp-CaretUpEmptyThinIcon {\n  background-image: var(--jp-icon-caret-up-empty-thin);\n}\n.jp-CaretUpIcon {\n  background-image: var(--jp-icon-caret-up);\n}\n.jp-CaseSensitiveIcon {\n  background-image: var(--jp-icon-case-sensitive);\n}\n.jp-CheckIcon {\n  background-image: var(--jp-icon-check);\n}\n.jp-CircleEmptyIcon {\n  background-image: var(--jp-icon-circle-empty);\n}\n.jp-CircleIcon {\n  background-image: var(--jp-icon-circle);\n}\n.jp-ClearIcon {\n  background-image: var(--jp-icon-clear);\n}\n.jp-CloseIcon {\n  background-image: var(--jp-icon-close);\n}\n.jp-CodeIcon {\n  background-image: var(--jp-icon-code);\n}\n.jp-ConsoleIcon {\n  background-image: var(--jp-icon-console);\n}\n.jp-CopyIcon {\n  background-image: var(--jp-icon-copy);\n}\n.jp-CopyrightIcon {\n  background-image: var(--jp-icon-copyright);\n}\n.jp-CutIcon {\n  background-image: var(--jp-icon-cut);\n}\n.jp-DownloadIcon {\n  background-image: var(--jp-icon-download);\n}\n.jp-EditIcon {\n  background-image: var(--jp-icon-edit);\n}\n.jp-EllipsesIcon {\n  background-image: var(--jp-icon-ellipses);\n}\n.jp-ExtensionIcon {\n  background-image: var(--jp-icon-extension);\n}\n.jp-FastForwardIcon {\n  background-image: var(--jp-icon-fast-forward);\n}\n.jp-FileIcon {\n  background-image: var(--jp-icon-file);\n}\n.jp-FileUploadIcon {\n  background-image: var(--jp-icon-file-upload);\n}\n.jp-FilterListIcon {\n  background-image: var(--jp-icon-filter-list);\n}\n.jp-FolderIcon {\n  background-image: var(--jp-icon-folder);\n}\n.jp-Html5Icon {\n  background-image: var(--jp-icon-html5);\n}\n.jp-ImageIcon {\n  background-image: var(--jp-icon-image);\n}\n.jp-InspectorIcon {\n  background-image: var(--jp-icon-inspector);\n}\n.jp-JsonIcon {\n  background-image: var(--jp-icon-json);\n}\n.jp-JuliaIcon {\n  background-image: var(--jp-icon-julia);\n}\n.jp-JupyterFaviconIcon {\n  background-image: var(--jp-icon-jupyter-favicon);\n}\n.jp-JupyterIcon {\n  background-image: var(--jp-icon-jupyter);\n}\n.jp-JupyterlabWordmarkIcon {\n  background-image: var(--jp-icon-jupyterlab-wordmark);\n}\n.jp-KernelIcon {\n  background-image: var(--jp-icon-kernel);\n}\n.jp-KeyboardIcon {\n  background-image: var(--jp-icon-keyboard);\n}\n.jp-LauncherIcon {\n  background-image: var(--jp-icon-launcher);\n}\n.jp-LineFormIcon {\n  background-image: var(--jp-icon-line-form);\n}\n.jp-LinkIcon {\n  background-image: var(--jp-icon-link);\n}\n.jp-ListIcon {\n  background-image: var(--jp-icon-list);\n}\n.jp-ListingsInfoIcon {\n  background-image: var(--jp-icon-listings-info);\n}\n.jp-MarkdownIcon {\n  background-image: var(--jp-icon-markdown);\n}\n.jp-NewFolderIcon {\n  background-image: var(--jp-icon-new-folder);\n}\n.jp-NotTrustedIcon {\n  background-image: var(--jp-icon-not-trusted);\n}\n.jp-NotebookIcon {\n  background-image: var(--jp-icon-notebook);\n}\n.jp-NumberingIcon {\n  background-image: var(--jp-icon-numbering);\n}\n.jp-OfflineBoltIcon {\n  background-image: var(--jp-icon-offline-bolt);\n}\n.jp-PaletteIcon {\n  background-image: var(--jp-icon-palette);\n}\n.jp-PasteIcon {\n  background-image: var(--jp-icon-paste);\n}\n.jp-PdfIcon {\n  background-image: var(--jp-icon-pdf);\n}\n.jp-PythonIcon {\n  background-image: var(--jp-icon-python);\n}\n.jp-RKernelIcon {\n  background-image: var(--jp-icon-r-kernel);\n}\n.jp-ReactIcon {\n  background-image: var(--jp-icon-react);\n}\n.jp-RedoIcon {\n  background-image: var(--jp-icon-redo);\n}\n.jp-RefreshIcon {\n  background-image: var(--jp-icon-refresh);\n}\n.jp-RegexIcon {\n  background-image: var(--jp-icon-regex);\n}\n.jp-RunIcon {\n  background-image: var(--jp-icon-run);\n}\n.jp-RunningIcon {\n  background-image: var(--jp-icon-running);\n}\n.jp-SaveIcon {\n  background-image: var(--jp-icon-save);\n}\n.jp-SearchIcon {\n  background-image: var(--jp-icon-search);\n}\n.jp-SettingsIcon {\n  background-image: var(--jp-icon-settings);\n}\n.jp-SpreadsheetIcon {\n  background-image: var(--jp-icon-spreadsheet);\n}\n.jp-StopIcon {\n  background-image: var(--jp-icon-stop);\n}\n.jp-TabIcon {\n  background-image: var(--jp-icon-tab);\n}\n.jp-TableRowsIcon {\n  background-image: var(--jp-icon-table-rows);\n}\n.jp-TagIcon {\n  background-image: var(--jp-icon-tag);\n}\n.jp-TerminalIcon {\n  background-image: var(--jp-icon-terminal);\n}\n.jp-TextEditorIcon {\n  background-image: var(--jp-icon-text-editor);\n}\n.jp-TocIcon {\n  background-image: var(--jp-icon-toc);\n}\n.jp-TreeViewIcon {\n  background-image: var(--jp-icon-tree-view);\n}\n.jp-TrustedIcon {\n  background-image: var(--jp-icon-trusted);\n}\n.jp-UndoIcon {\n  background-image: var(--jp-icon-undo);\n}\n.jp-VegaIcon {\n  background-image: var(--jp-icon-vega);\n}\n.jp-YamlIcon {\n  background-image: var(--jp-icon-yaml);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n.jp-Icon,\n.jp-MaterialIcon {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-cover {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: cover;\n}\n\n/**\n * (DEPRECATED) Support for specific CSS icon sizes\n */\n\n.jp-Icon-16 {\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-18 {\n  background-size: 18px;\n  min-width: 18px;\n  min-height: 18px;\n}\n\n.jp-Icon-20 {\n  background-size: 20px;\n  min-width: 20px;\n  min-height: 20px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for icons as inline SVG HTMLElements\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n/* recolor the accent elements of an icon */\n.jp-icon-accent0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-accent1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-accent2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-accent3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-accent4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-accent0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-accent1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-accent2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-accent3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-accent4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n/* set the color of an icon to transparent */\n.jp-icon-none[fill] {\n  fill: none;\n}\n\n.jp-icon-none[stroke] {\n  stroke: none;\n}\n/* brand icon colors. Same for light and dark */\n.jp-icon-brand0[fill] {\n  fill: var(--jp-brand-color0);\n}\n.jp-icon-brand1[fill] {\n  fill: var(--jp-brand-color1);\n}\n.jp-icon-brand2[fill] {\n  fill: var(--jp-brand-color2);\n}\n.jp-icon-brand3[fill] {\n  fill: var(--jp-brand-color3);\n}\n.jp-icon-brand4[fill] {\n  fill: var(--jp-brand-color4);\n}\n\n.jp-icon-brand0[stroke] {\n  stroke: var(--jp-brand-color0);\n}\n.jp-icon-brand1[stroke] {\n  stroke: var(--jp-brand-color1);\n}\n.jp-icon-brand2[stroke] {\n  stroke: var(--jp-brand-color2);\n}\n.jp-icon-brand3[stroke] {\n  stroke: var(--jp-brand-color3);\n}\n.jp-icon-brand4[stroke] {\n  stroke: var(--jp-brand-color4);\n}\n/* warn icon colors. Same for light and dark */\n.jp-icon-warn0[fill] {\n  fill: var(--jp-warn-color0);\n}\n.jp-icon-warn1[fill] {\n  fill: var(--jp-warn-color1);\n}\n.jp-icon-warn2[fill] {\n  fill: var(--jp-warn-color2);\n}\n.jp-icon-warn3[fill] {\n  fill: var(--jp-warn-color3);\n}\n\n.jp-icon-warn0[stroke] {\n  stroke: var(--jp-warn-color0);\n}\n.jp-icon-warn1[stroke] {\n  stroke: var(--jp-warn-color1);\n}\n.jp-icon-warn2[stroke] {\n  stroke: var(--jp-warn-color2);\n}\n.jp-icon-warn3[stroke] {\n  stroke: var(--jp-warn-color3);\n}\n/* icon colors that contrast well with each other and most backgrounds */\n.jp-icon-contrast0[fill] {\n  fill: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[fill] {\n  fill: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[fill] {\n  fill: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[fill] {\n  fill: var(--jp-icon-contrast-color3);\n}\n\n.jp-icon-contrast0[stroke] {\n  stroke: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[stroke] {\n  stroke: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[stroke] {\n  stroke: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[stroke] {\n  stroke: var(--jp-icon-contrast-color3);\n}\n\n/* CSS for icons in selected items in the settings editor */\n#setting-editor .jp-PluginList .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n#setting-editor\n  .jp-PluginList\n  .jp-mod-selected\n  .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected filebrowser listing items */\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected tabs in the sidebar tab manager */\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable-inverse[fill] {\n  fill: #fff;\n}\n\n/**\n * TODO: come up with non css-hack solution for showing the busy icon on top\n *  of the close icon\n * CSS for complex behavior of close icon of tabs in the sidebar tab manager\n */\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty.jp-mod-active\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: #fff;\n}\n\n/**\n* TODO: come up with non css-hack solution for showing the busy icon on top\n*  of the close icon\n* CSS for complex behavior of close icon of tabs in the main area tabbar\n*/\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n/* CSS for icons in status bar */\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n/* special handling for splash icon CSS. While the theme CSS reloads during\n   splash, the splash icon can loose theming. To prevent that, we set a\n   default for its color variable */\n:root {\n  --jp-warn-color0: var(--md-orange-700);\n}\n\n/* not sure what to do with this one, used in filebrowser listing */\n.jp-DragIcon {\n  margin-right: 4px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for alt colors for icons as inline SVG HTMLElements\n */\n\n/* alt recolor the primary elements of an icon */\n.jp-icon-alt .jp-icon0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-alt .jp-icon0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* alt recolor the accent elements of an icon */\n.jp-icon-alt .jp-icon-accent0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-alt .jp-icon-accent0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-icon-hoverShow:not(:hover) svg {\n  display: none !important;\n}\n\n/**\n * Support for hover colors for icons as inline SVG HTMLElements\n */\n\n/**\n * regular colors\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon-hover :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/* recolor the accent elements of an icon */\n.jp-icon-hover :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* set the color of an icon to transparent */\n.jp-icon-hover :hover .jp-icon-none-hover[fill] {\n  fill: none;\n}\n\n.jp-icon-hover :hover .jp-icon-none-hover[stroke] {\n  stroke: none;\n}\n\n/**\n * inverse colors\n */\n\n/* inverse recolor the primary elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* inverse recolor the accent elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-switch {\n  display: flex;\n  align-items: center;\n  padding-left: 4px;\n  padding-right: 4px;\n  font-size: var(--jp-ui-font-size1);\n  background-color: transparent;\n  color: var(--jp-ui-font-color1);\n  border: none;\n  height: 20px;\n}\n\n.jp-switch:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-switch-label {\n  margin-right: 5px;\n}\n\n.jp-switch-track {\n  cursor: pointer;\n  background-color: var(--jp-border-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 34px;\n  height: 16px;\n  width: 35px;\n  position: relative;\n}\n\n.jp-switch-track::before {\n  content: '';\n  position: absolute;\n  height: 10px;\n  width: 10px;\n  margin: 3px;\n  left: 0px;\n  background-color: var(--jp-ui-inverse-font-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 50%;\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track {\n  background-color: var(--jp-warn-color0);\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track::before {\n  /* track width (35) - margins (3 + 3) - thumb width (10) */\n  left: 19px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* Sibling imports */\n\n/* Override Blueprint's _reset.scss styles */\nhtml {\n  box-sizing: unset;\n}\n\n*,\n*::before,\n*::after {\n  box-sizing: unset;\n}\n\nbody {\n  color: unset;\n  font-family: var(--jp-ui-font-family);\n}\n\np {\n  margin-top: unset;\n  margin-bottom: unset;\n}\n\nsmall {\n  font-size: unset;\n}\n\nstrong {\n  font-weight: unset;\n}\n\n/* Override Blueprint's _typography.scss styles */\na {\n  text-decoration: unset;\n  color: unset;\n}\na:hover {\n  text-decoration: unset;\n  color: unset;\n}\n\n/* Override Blueprint's _accessibility.scss styles */\n:focus {\n  outline: unset;\n  outline-offset: unset;\n  -moz-outline-radius: unset;\n}\n\n/* Styles for ui-components */\n.jp-Button {\n  border-radius: var(--jp-border-radius);\n  padding: 0px 12px;\n  font-size: var(--jp-ui-font-size1);\n}\n\n/* Use our own theme for hover styles */\nbutton.jp-Button.bp3-button.bp3-minimal:hover {\n  background-color: var(--jp-layout-color2);\n}\n.jp-Button.minimal {\n  color: unset !important;\n}\n\n.jp-Button.jp-ToolbarButtonComponent {\n  text-transform: none;\n}\n\n.jp-InputGroup input {\n  box-sizing: border-box;\n  border-radius: 0;\n  background-color: transparent;\n  color: var(--jp-ui-font-color0);\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.jp-InputGroup input:focus {\n  box-shadow: inset 0 0 0 var(--jp-border-width)\n      var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-InputGroup input::placeholder,\ninput::placeholder {\n  color: var(--jp-ui-font-color3);\n}\n\n.jp-BPIcon {\n  display: inline-block;\n  vertical-align: middle;\n  margin: auto;\n}\n\n/* Stop blueprint futzing with our icon fills */\n.bp3-icon.jp-BPIcon > svg:not([fill]) {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n.jp-InputGroupAction {\n  padding: 6px;\n}\n\n.jp-HTMLSelect.jp-DefaultStyle select {\n  background-color: initial;\n  border: none;\n  border-radius: 0;\n  box-shadow: none;\n  color: var(--jp-ui-font-color0);\n  display: block;\n  font-size: var(--jp-ui-font-size1);\n  height: 24px;\n  line-height: 14px;\n  padding: 0 25px 0 10px;\n  text-align: left;\n  -moz-appearance: none;\n  -webkit-appearance: none;\n}\n\n/* Use our own theme for hover and option styles */\n.jp-HTMLSelect.jp-DefaultStyle select:hover,\n.jp-HTMLSelect.jp-DefaultStyle select > option {\n  background-color: var(--jp-layout-color2);\n  color: var(--jp-ui-font-color0);\n}\nselect {\n  box-sizing: border-box;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapse {\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  border-top: 1px solid var(--jp-border-color2);\n  border-bottom: 1px solid var(--jp-border-color2);\n}\n\n.jp-Collapse-header {\n  padding: 1px 12px;\n  color: var(--jp-ui-font-color1);\n  background-color: var(--jp-layout-color1);\n  font-size: var(--jp-ui-font-size2);\n}\n\n.jp-Collapse-header:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-Collapse-contents {\n  padding: 0px 12px 0px 12px;\n  background-color: var(--jp-layout-color1);\n  color: var(--jp-ui-font-color1);\n  overflow: auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-commandpalette-search-height: 28px;\n}\n\n/*-----------------------------------------------------------------------------\n| Overall styles\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette {\n  padding-bottom: 0px;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Modal variant\n|----------------------------------------------------------------------------*/\n\n.jp-ModalCommandPalette {\n  position: absolute;\n  z-index: 10000;\n  top: 38px;\n  left: 30%;\n  margin: 0;\n  padding: 4px;\n  width: 40%;\n  box-shadow: var(--jp-elevation-z4);\n  border-radius: 4px;\n  background: var(--jp-layout-color0);\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette {\n  max-height: 40vh;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-close-icon::after {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-header {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-item {\n  margin-left: 4px;\n  margin-right: 4px;\n}\n\n.jp-ModalCommandPalette\n  .lm-CommandPalette\n  .lm-CommandPalette-item.lm-mod-disabled {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Search\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-search {\n  padding: 4px;\n  background-color: var(--jp-layout-color1);\n  z-index: 2;\n}\n\n.lm-CommandPalette-wrapper {\n  overflow: overlay;\n  padding: 0px 9px;\n  background-color: var(--jp-input-active-background);\n  height: 30px;\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.lm-CommandPalette.lm-mod-focused .lm-CommandPalette-wrapper {\n  box-shadow: inset 0 0 0 1px var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-SearchIconGroup {\n  color: white;\n  background-color: var(--jp-brand-color1);\n  position: absolute;\n  top: 4px;\n  right: 4px;\n  padding: 5px 5px 1px 5px;\n}\n\n.jp-SearchIconGroup svg {\n  height: 20px;\n  width: 20px;\n}\n\n.jp-SearchIconGroup .jp-icon3[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-input {\n  background: transparent;\n  width: calc(100% - 18px);\n  float: left;\n  border: none;\n  outline: none;\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  line-height: var(--jp-private-commandpalette-search-height);\n}\n\n.lm-CommandPalette-input::-webkit-input-placeholder,\n.lm-CommandPalette-input::-moz-placeholder,\n.lm-CommandPalette-input:-ms-input-placeholder {\n  color: var(--jp-ui-font-color2);\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Results\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-header:first-child {\n  margin-top: 0px;\n}\n\n.lm-CommandPalette-header {\n  border-bottom: solid var(--jp-border-width) var(--jp-border-color2);\n  color: var(--jp-ui-font-color1);\n  cursor: pointer;\n  display: flex;\n  font-size: var(--jp-ui-font-size0);\n  font-weight: 600;\n  letter-spacing: 1px;\n  margin-top: 8px;\n  padding: 8px 0 8px 12px;\n  text-transform: uppercase;\n}\n\n.lm-CommandPalette-header.lm-mod-active {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-header > mark {\n  background-color: transparent;\n  font-weight: bold;\n  color: var(--jp-ui-font-color1);\n}\n\n.lm-CommandPalette-item {\n  padding: 4px 12px 4px 4px;\n  color: var(--jp-ui-font-color1);\n  font-size: var(--jp-ui-font-size1);\n  font-weight: 400;\n  display: flex;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item.lm-mod-active {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .jp-icon-selectable[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active:hover:not(.lm-mod-disabled) {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item:hover:not(.lm-mod-active):not(.lm-mod-disabled) {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-itemContent {\n  overflow: hidden;\n}\n\n.lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled mark {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemIcon {\n  margin: 0 4px 0 0;\n  position: relative;\n  width: 16px;\n  top: 2px;\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled .lm-CommandPalette-itemIcon {\n  opacity: 0.6;\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-itemCaption {\n  display: none;\n}\n\n.lm-CommandPalette-content {\n  background-color: var(--jp-layout-color1);\n}\n\n.lm-CommandPalette-content:empty:after {\n  content: 'No results';\n  margin: auto;\n  margin-top: 20px;\n  width: 100px;\n  display: block;\n  font-size: var(--jp-ui-font-size2);\n  font-family: var(--jp-ui-font-family);\n  font-weight: lighter;\n}\n\n.lm-CommandPalette-emptyMessage {\n  text-align: center;\n  margin-top: 24px;\n  line-height: 1.32;\n  padding: 0px 8px;\n  color: var(--jp-content-font-color3);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Dialog {\n  position: absolute;\n  z-index: 10000;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  top: 0px;\n  left: 0px;\n  margin: 0;\n  padding: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-dialog-background);\n}\n\n.jp-Dialog-content {\n  display: flex;\n  flex-direction: column;\n  margin-left: auto;\n  margin-right: auto;\n  background: var(--jp-layout-color1);\n  padding: 24px;\n  padding-bottom: 12px;\n  min-width: 300px;\n  min-height: 150px;\n  max-width: 1000px;\n  max-height: 500px;\n  box-sizing: border-box;\n  box-shadow: var(--jp-elevation-z20);\n  word-wrap: break-word;\n  border-radius: var(--jp-border-radius);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color1);\n  resize: both;\n}\n\n.jp-Dialog-button {\n  overflow: visible;\n}\n\nbutton.jp-Dialog-button:focus {\n  outline: 1px solid var(--jp-brand-color1);\n  outline-offset: 4px;\n  -moz-outline-radius: 0px;\n}\n\nbutton.jp-Dialog-button:focus::-moz-focus-inner {\n  border: 0;\n}\n\nbutton.jp-Dialog-close-button {\n  padding: 0;\n  height: 100%;\n  min-width: unset;\n  min-height: unset;\n}\n\n.jp-Dialog-header {\n  display: flex;\n  justify-content: space-between;\n  flex: 0 0 auto;\n  padding-bottom: 12px;\n  font-size: var(--jp-ui-font-size3);\n  font-weight: 400;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-body {\n  display: flex;\n  flex-direction: column;\n  flex: 1 1 auto;\n  font-size: var(--jp-ui-font-size1);\n  background: var(--jp-layout-color1);\n  overflow: auto;\n}\n\n.jp-Dialog-footer {\n  display: flex;\n  flex-direction: row;\n  justify-content: flex-end;\n  flex: 0 0 auto;\n  margin-left: -12px;\n  margin-right: -12px;\n  padding: 12px;\n}\n\n.jp-Dialog-title {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.jp-Dialog-body > .jp-select-wrapper {\n  width: 100%;\n}\n\n.jp-Dialog-body > button {\n  padding: 0px 16px;\n}\n\n.jp-Dialog-body > label {\n  line-height: 1.4;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-button.jp-mod-styled:not(:last-child) {\n  margin-right: 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-HoverBox {\n  position: fixed;\n}\n\n.jp-HoverBox.jp-mod-outofview {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-IFrame {\n  width: 100%;\n  height: 100%;\n}\n\n.jp-IFrame > iframe {\n  border: none;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-IFrame {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-IFrame:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n.jp-Input-Boolean-Dialog {\n  flex-direction: row-reverse;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-Input-Boolean-Dialog > label {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MainAreaWidget > :focus {\n  outline: none;\n}\n\n/**\n * google-material-color v1.2.6\n * https://github.com/danlevan/google-material-color\n */\n:root {\n  --md-red-50: #ffebee;\n  --md-red-100: #ffcdd2;\n  --md-red-200: #ef9a9a;\n  --md-red-300: #e57373;\n  --md-red-400: #ef5350;\n  --md-red-500: #f44336;\n  --md-red-600: #e53935;\n  --md-red-700: #d32f2f;\n  --md-red-800: #c62828;\n  --md-red-900: #b71c1c;\n  --md-red-A100: #ff8a80;\n  --md-red-A200: #ff5252;\n  --md-red-A400: #ff1744;\n  --md-red-A700: #d50000;\n\n  --md-pink-50: #fce4ec;\n  --md-pink-100: #f8bbd0;\n  --md-pink-200: #f48fb1;\n  --md-pink-300: #f06292;\n  --md-pink-400: #ec407a;\n  --md-pink-500: #e91e63;\n  --md-pink-600: #d81b60;\n  --md-pink-700: #c2185b;\n  --md-pink-800: #ad1457;\n  --md-pink-900: #880e4f;\n  --md-pink-A100: #ff80ab;\n  --md-pink-A200: #ff4081;\n  --md-pink-A400: #f50057;\n  --md-pink-A700: #c51162;\n\n  --md-purple-50: #f3e5f5;\n  --md-purple-100: #e1bee7;\n  --md-purple-200: #ce93d8;\n  --md-purple-300: #ba68c8;\n  --md-purple-400: #ab47bc;\n  --md-purple-500: #9c27b0;\n  --md-purple-600: #8e24aa;\n  --md-purple-700: #7b1fa2;\n  --md-purple-800: #6a1b9a;\n  --md-purple-900: #4a148c;\n  --md-purple-A100: #ea80fc;\n  --md-purple-A200: #e040fb;\n  --md-purple-A400: #d500f9;\n  --md-purple-A700: #aa00ff;\n\n  --md-deep-purple-50: #ede7f6;\n  --md-deep-purple-100: #d1c4e9;\n  --md-deep-purple-200: #b39ddb;\n  --md-deep-purple-300: #9575cd;\n  --md-deep-purple-400: #7e57c2;\n  --md-deep-purple-500: #673ab7;\n  --md-deep-purple-600: #5e35b1;\n  --md-deep-purple-700: #512da8;\n  --md-deep-purple-800: #4527a0;\n  --md-deep-purple-900: #311b92;\n  --md-deep-purple-A100: #b388ff;\n  --md-deep-purple-A200: #7c4dff;\n  --md-deep-purple-A400: #651fff;\n  --md-deep-purple-A700: #6200ea;\n\n  --md-indigo-50: #e8eaf6;\n  --md-indigo-100: #c5cae9;\n  --md-indigo-200: #9fa8da;\n  --md-indigo-300: #7986cb;\n  --md-indigo-400: #5c6bc0;\n  --md-indigo-500: #3f51b5;\n  --md-indigo-600: #3949ab;\n  --md-indigo-700: #303f9f;\n  --md-indigo-800: #283593;\n  --md-indigo-900: #1a237e;\n  --md-indigo-A100: #8c9eff;\n  --md-indigo-A200: #536dfe;\n  --md-indigo-A400: #3d5afe;\n  --md-indigo-A700: #304ffe;\n\n  --md-blue-50: #e3f2fd;\n  --md-blue-100: #bbdefb;\n  --md-blue-200: #90caf9;\n  --md-blue-300: #64b5f6;\n  --md-blue-400: #42a5f5;\n  --md-blue-500: #2196f3;\n  --md-blue-600: #1e88e5;\n  --md-blue-700: #1976d2;\n  --md-blue-800: #1565c0;\n  --md-blue-900: #0d47a1;\n  --md-blue-A100: #82b1ff;\n  --md-blue-A200: #448aff;\n  --md-blue-A400: #2979ff;\n  --md-blue-A700: #2962ff;\n\n  --md-light-blue-50: #e1f5fe;\n  --md-light-blue-100: #b3e5fc;\n  --md-light-blue-200: #81d4fa;\n  --md-light-blue-300: #4fc3f7;\n  --md-light-blue-400: #29b6f6;\n  --md-light-blue-500: #03a9f4;\n  --md-light-blue-600: #039be5;\n  --md-light-blue-700: #0288d1;\n  --md-light-blue-800: #0277bd;\n  --md-light-blue-900: #01579b;\n  --md-light-blue-A100: #80d8ff;\n  --md-light-blue-A200: #40c4ff;\n  --md-light-blue-A400: #00b0ff;\n  --md-light-blue-A700: #0091ea;\n\n  --md-cyan-50: #e0f7fa;\n  --md-cyan-100: #b2ebf2;\n  --md-cyan-200: #80deea;\n  --md-cyan-300: #4dd0e1;\n  --md-cyan-400: #26c6da;\n  --md-cyan-500: #00bcd4;\n  --md-cyan-600: #00acc1;\n  --md-cyan-700: #0097a7;\n  --md-cyan-800: #00838f;\n  --md-cyan-900: #006064;\n  --md-cyan-A100: #84ffff;\n  --md-cyan-A200: #18ffff;\n  --md-cyan-A400: #00e5ff;\n  --md-cyan-A700: #00b8d4;\n\n  --md-teal-50: #e0f2f1;\n  --md-teal-100: #b2dfdb;\n  --md-teal-200: #80cbc4;\n  --md-teal-300: #4db6ac;\n  --md-teal-400: #26a69a;\n  --md-teal-500: #009688;\n  --md-teal-600: #00897b;\n  --md-teal-700: #00796b;\n  --md-teal-800: #00695c;\n  --md-teal-900: #004d40;\n  --md-teal-A100: #a7ffeb;\n  --md-teal-A200: #64ffda;\n  --md-teal-A400: #1de9b6;\n  --md-teal-A700: #00bfa5;\n\n  --md-green-50: #e8f5e9;\n  --md-green-100: #c8e6c9;\n  --md-green-200: #a5d6a7;\n  --md-green-300: #81c784;\n  --md-green-400: #66bb6a;\n  --md-green-500: #4caf50;\n  --md-green-600: #43a047;\n  --md-green-700: #388e3c;\n  --md-green-800: #2e7d32;\n  --md-green-900: #1b5e20;\n  --md-green-A100: #b9f6ca;\n  --md-green-A200: #69f0ae;\n  --md-green-A400: #00e676;\n  --md-green-A700: #00c853;\n\n  --md-light-green-50: #f1f8e9;\n  --md-light-green-100: #dcedc8;\n  --md-light-green-200: #c5e1a5;\n  --md-light-green-300: #aed581;\n  --md-light-green-400: #9ccc65;\n  --md-light-green-500: #8bc34a;\n  --md-light-green-600: #7cb342;\n  --md-light-green-700: #689f38;\n  --md-light-green-800: #558b2f;\n  --md-light-green-900: #33691e;\n  --md-light-green-A100: #ccff90;\n  --md-light-green-A200: #b2ff59;\n  --md-light-green-A400: #76ff03;\n  --md-light-green-A700: #64dd17;\n\n  --md-lime-50: #f9fbe7;\n  --md-lime-100: #f0f4c3;\n  --md-lime-200: #e6ee9c;\n  --md-lime-300: #dce775;\n  --md-lime-400: #d4e157;\n  --md-lime-500: #cddc39;\n  --md-lime-600: #c0ca33;\n  --md-lime-700: #afb42b;\n  --md-lime-800: #9e9d24;\n  --md-lime-900: #827717;\n  --md-lime-A100: #f4ff81;\n  --md-lime-A200: #eeff41;\n  --md-lime-A400: #c6ff00;\n  --md-lime-A700: #aeea00;\n\n  --md-yellow-50: #fffde7;\n  --md-yellow-100: #fff9c4;\n  --md-yellow-200: #fff59d;\n  --md-yellow-300: #fff176;\n  --md-yellow-400: #ffee58;\n  --md-yellow-500: #ffeb3b;\n  --md-yellow-600: #fdd835;\n  --md-yellow-700: #fbc02d;\n  --md-yellow-800: #f9a825;\n  --md-yellow-900: #f57f17;\n  --md-yellow-A100: #ffff8d;\n  --md-yellow-A200: #ffff00;\n  --md-yellow-A400: #ffea00;\n  --md-yellow-A700: #ffd600;\n\n  --md-amber-50: #fff8e1;\n  --md-amber-100: #ffecb3;\n  --md-amber-200: #ffe082;\n  --md-amber-300: #ffd54f;\n  --md-amber-400: #ffca28;\n  --md-amber-500: #ffc107;\n  --md-amber-600: #ffb300;\n  --md-amber-700: #ffa000;\n  --md-amber-800: #ff8f00;\n  --md-amber-900: #ff6f00;\n  --md-amber-A100: #ffe57f;\n  --md-amber-A200: #ffd740;\n  --md-amber-A400: #ffc400;\n  --md-amber-A700: #ffab00;\n\n  --md-orange-50: #fff3e0;\n  --md-orange-100: #ffe0b2;\n  --md-orange-200: #ffcc80;\n  --md-orange-300: #ffb74d;\n  --md-orange-400: #ffa726;\n  --md-orange-500: #ff9800;\n  --md-orange-600: #fb8c00;\n  --md-orange-700: #f57c00;\n  --md-orange-800: #ef6c00;\n  --md-orange-900: #e65100;\n  --md-orange-A100: #ffd180;\n  --md-orange-A200: #ffab40;\n  --md-orange-A400: #ff9100;\n  --md-orange-A700: #ff6d00;\n\n  --md-deep-orange-50: #fbe9e7;\n  --md-deep-orange-100: #ffccbc;\n  --md-deep-orange-200: #ffab91;\n  --md-deep-orange-300: #ff8a65;\n  --md-deep-orange-400: #ff7043;\n  --md-deep-orange-500: #ff5722;\n  --md-deep-orange-600: #f4511e;\n  --md-deep-orange-700: #e64a19;\n  --md-deep-orange-800: #d84315;\n  --md-deep-orange-900: #bf360c;\n  --md-deep-orange-A100: #ff9e80;\n  --md-deep-orange-A200: #ff6e40;\n  --md-deep-orange-A400: #ff3d00;\n  --md-deep-orange-A700: #dd2c00;\n\n  --md-brown-50: #efebe9;\n  --md-brown-100: #d7ccc8;\n  --md-brown-200: #bcaaa4;\n  --md-brown-300: #a1887f;\n  --md-brown-400: #8d6e63;\n  --md-brown-500: #795548;\n  --md-brown-600: #6d4c41;\n  --md-brown-700: #5d4037;\n  --md-brown-800: #4e342e;\n  --md-brown-900: #3e2723;\n\n  --md-grey-50: #fafafa;\n  --md-grey-100: #f5f5f5;\n  --md-grey-200: #eeeeee;\n  --md-grey-300: #e0e0e0;\n  --md-grey-400: #bdbdbd;\n  --md-grey-500: #9e9e9e;\n  --md-grey-600: #757575;\n  --md-grey-700: #616161;\n  --md-grey-800: #424242;\n  --md-grey-900: #212121;\n\n  --md-blue-grey-50: #eceff1;\n  --md-blue-grey-100: #cfd8dc;\n  --md-blue-grey-200: #b0bec5;\n  --md-blue-grey-300: #90a4ae;\n  --md-blue-grey-400: #78909c;\n  --md-blue-grey-500: #607d8b;\n  --md-blue-grey-600: #546e7a;\n  --md-blue-grey-700: #455a64;\n  --md-blue-grey-800: #37474f;\n  --md-blue-grey-900: #263238;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Spinner {\n  position: absolute;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  z-index: 10;\n  left: 0;\n  top: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-layout-color0);\n  outline: none;\n}\n\n.jp-SpinnerContent {\n  font-size: 10px;\n  margin: 50px auto;\n  text-indent: -9999em;\n  width: 3em;\n  height: 3em;\n  border-radius: 50%;\n  background: var(--jp-brand-color3);\n  background: linear-gradient(\n    to right,\n    #f37626 10%,\n    rgba(255, 255, 255, 0) 42%\n  );\n  position: relative;\n  animation: load3 1s infinite linear, fadeIn 1s;\n}\n\n.jp-SpinnerContent:before {\n  width: 50%;\n  height: 50%;\n  background: #f37626;\n  border-radius: 100% 0 0 0;\n  position: absolute;\n  top: 0;\n  left: 0;\n  content: '';\n}\n\n.jp-SpinnerContent:after {\n  background: var(--jp-layout-color0);\n  width: 75%;\n  height: 75%;\n  border-radius: 50%;\n  content: '';\n  margin: auto;\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n}\n\n@keyframes fadeIn {\n  0% {\n    opacity: 0;\n  }\n  100% {\n    opacity: 1;\n  }\n}\n\n@keyframes load3 {\n  0% {\n    transform: rotate(0deg);\n  }\n  100% {\n    transform: rotate(360deg);\n  }\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\nbutton.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: none;\n  box-sizing: border-box;\n  text-align: center;\n  line-height: 32px;\n  height: 32px;\n  padding: 0px 12px;\n  letter-spacing: 0.8px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput.jp-mod-styled {\n  background: var(--jp-input-background);\n  height: 28px;\n  box-sizing: border-box;\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n  padding-left: 7px;\n  padding-right: 7px;\n  font-size: var(--jp-ui-font-size2);\n  color: var(--jp-ui-font-color0);\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput[type='checkbox'].jp-mod-styled {\n  appearance: checkbox;\n  -webkit-appearance: checkbox;\n  -moz-appearance: checkbox;\n  height: auto;\n}\n\ninput.jp-mod-styled:focus {\n  border: var(--jp-border-width) solid var(--md-blue-500);\n  box-shadow: inset 0 0 4px var(--md-blue-300);\n}\n\n.jp-FileDialog-Checkbox {\n  margin-top: 35px;\n  display: flex;\n  flex-direction: row;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-FileDialog-Checkbox > label {\n  flex: 1 1 auto;\n}\n\n.jp-select-wrapper {\n  display: flex;\n  position: relative;\n  flex-direction: column;\n  padding: 1px;\n  background-color: var(--jp-layout-color1);\n  height: 28px;\n  box-sizing: border-box;\n  margin-bottom: 12px;\n}\n\n.jp-select-wrapper.jp-mod-focused select.jp-mod-styled {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-input-active-background);\n}\n\nselect.jp-mod-styled:hover {\n  background-color: var(--jp-layout-color1);\n  cursor: pointer;\n  color: var(--jp-ui-font-color0);\n  background-color: var(--jp-input-hover-background);\n  box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.5);\n}\n\nselect.jp-mod-styled {\n  flex: 1 1 auto;\n  height: 32px;\n  width: 100%;\n  font-size: var(--jp-ui-font-size2);\n  background: var(--jp-input-background);\n  color: var(--jp-ui-font-color0);\n  padding: 0 25px 0 8px;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-toolbar-height: calc(\n    28px + var(--jp-border-width)\n  ); /* leave 28px for content */\n}\n\n.jp-Toolbar {\n  color: var(--jp-ui-font-color1);\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  border-bottom: var(--jp-border-width) solid var(--jp-toolbar-border-color);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  background: var(--jp-toolbar-background);\n  min-height: var(--jp-toolbar-micro-height);\n  padding: 2px;\n  z-index: 1;\n  overflow-x: auto;\n}\n\n/* Toolbar items */\n\n.jp-Toolbar > .jp-Toolbar-item.jp-Toolbar-spacer {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\n.jp-Toolbar-item.jp-Toolbar-kernelStatus {\n  display: inline-block;\n  width: 32px;\n  background-repeat: no-repeat;\n  background-position: center;\n  background-size: 16px;\n}\n\n.jp-Toolbar > .jp-Toolbar-item {\n  flex: 0 0 auto;\n  display: flex;\n  padding-left: 1px;\n  padding-right: 1px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: var(--jp-private-toolbar-height);\n  height: 100%;\n}\n\n/* Toolbar buttons */\n\n/* This is the div we use to wrap the react component into a Widget */\ndiv.jp-ToolbarButton {\n  color: transparent;\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px;\n  margin: 0px;\n}\n\nbutton.jp-ToolbarButtonComponent {\n  background: var(--jp-layout-color1);\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px 6px;\n  margin: 0px;\n  height: 24px;\n  border-radius: var(--jp-border-radius);\n  display: flex;\n  align-items: center;\n  text-align: center;\n  font-size: 14px;\n  min-width: unset;\n  min-height: unset;\n}\n\nbutton.jp-ToolbarButtonComponent:disabled {\n  opacity: 0.4;\n}\n\nbutton.jp-ToolbarButtonComponent span {\n  padding: 0px;\n  flex: 0 0 auto;\n}\n\nbutton.jp-ToolbarButtonComponent .jp-ToolbarButtonComponent-label {\n  font-size: var(--jp-ui-font-size1);\n  line-height: 100%;\n  padding-left: 2px;\n  color: var(--jp-ui-font-color1);\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar.jp-Toolbar-micro {\n  padding: 0;\n  min-height: 0;\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar {\n  border: none;\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ body.p-mod-override-cursor *, /* </DEPRECATED> */\nbody.lm-mod-override-cursor * {\n  cursor: inherit !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-JSONEditor {\n  display: flex;\n  flex-direction: column;\n  width: 100%;\n}\n\n.jp-JSONEditor-host {\n  flex: 1 1 auto;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  background: var(--jp-layout-color0);\n  min-height: 50px;\n  padding: 1px;\n}\n\n.jp-JSONEditor.jp-mod-error .jp-JSONEditor-host {\n  border-color: red;\n  outline-color: red;\n}\n\n.jp-JSONEditor-header {\n  display: flex;\n  flex: 1 0 auto;\n  padding: 0 0 0 12px;\n}\n\n.jp-JSONEditor-header label {\n  flex: 0 0 auto;\n}\n\n.jp-JSONEditor-commitButton {\n  height: 16px;\n  width: 16px;\n  background-size: 18px;\n  background-repeat: no-repeat;\n  background-position: center;\n}\n\n.jp-JSONEditor-host.jp-mod-focused {\n  background-color: var(--jp-input-active-background);\n  border: 1px solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n.jp-Editor.jp-mod-dropTarget {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n/* BASICS */\n\n.CodeMirror {\n  /* Set height, width, borders, and global font properties here */\n  font-family: monospace;\n  height: 300px;\n  color: black;\n  direction: ltr;\n}\n\n/* PADDING */\n\n.CodeMirror-lines {\n  padding: 4px 0; /* Vertical padding around content */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  padding: 0 4px; /* Horizontal padding of content */\n}\n\n.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  background-color: white; /* The little square between H and V scrollbars */\n}\n\n/* GUTTER */\n\n.CodeMirror-gutters {\n  border-right: 1px solid #ddd;\n  background-color: #f7f7f7;\n  white-space: nowrap;\n}\n.CodeMirror-linenumbers {}\n.CodeMirror-linenumber {\n  padding: 0 3px 0 5px;\n  min-width: 20px;\n  text-align: right;\n  color: #999;\n  white-space: nowrap;\n}\n\n.CodeMirror-guttermarker { color: black; }\n.CodeMirror-guttermarker-subtle { color: #999; }\n\n/* CURSOR */\n\n.CodeMirror-cursor {\n  border-left: 1px solid black;\n  border-right: none;\n  width: 0;\n}\n/* Shown when moving in bi-directional text */\n.CodeMirror div.CodeMirror-secondarycursor {\n  border-left: 1px solid silver;\n}\n.cm-fat-cursor .CodeMirror-cursor {\n  width: auto;\n  border: 0 !important;\n  background: #7e7;\n}\n.cm-fat-cursor div.CodeMirror-cursors {\n  z-index: 1;\n}\n.cm-fat-cursor-mark {\n  background-color: rgba(20, 255, 20, 0.5);\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n}\n.cm-animate-fat-cursor {\n  width: auto;\n  border: 0;\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n  background-color: #7e7;\n}\n@-moz-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@-webkit-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n\n/* Can style cursor different in overwrite (non-insert) mode */\n.CodeMirror-overwrite .CodeMirror-cursor {}\n\n.cm-tab { display: inline-block; text-decoration: inherit; }\n\n.CodeMirror-rulers {\n  position: absolute;\n  left: 0; right: 0; top: -50px; bottom: 0;\n  overflow: hidden;\n}\n.CodeMirror-ruler {\n  border-left: 1px solid #ccc;\n  top: 0; bottom: 0;\n  position: absolute;\n}\n\n/* DEFAULT THEME */\n\n.cm-s-default .cm-header {color: blue;}\n.cm-s-default .cm-quote {color: #090;}\n.cm-negative {color: #d44;}\n.cm-positive {color: #292;}\n.cm-header, .cm-strong {font-weight: bold;}\n.cm-em {font-style: italic;}\n.cm-link {text-decoration: underline;}\n.cm-strikethrough {text-decoration: line-through;}\n\n.cm-s-default .cm-keyword {color: #708;}\n.cm-s-default .cm-atom {color: #219;}\n.cm-s-default .cm-number {color: #164;}\n.cm-s-default .cm-def {color: #00f;}\n.cm-s-default .cm-variable,\n.cm-s-default .cm-punctuation,\n.cm-s-default .cm-property,\n.cm-s-default .cm-operator {}\n.cm-s-default .cm-variable-2 {color: #05a;}\n.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}\n.cm-s-default .cm-comment {color: #a50;}\n.cm-s-default .cm-string {color: #a11;}\n.cm-s-default .cm-string-2 {color: #f50;}\n.cm-s-default .cm-meta {color: #555;}\n.cm-s-default .cm-qualifier {color: #555;}\n.cm-s-default .cm-builtin {color: #30a;}\n.cm-s-default .cm-bracket {color: #997;}\n.cm-s-default .cm-tag {color: #170;}\n.cm-s-default .cm-attribute {color: #00c;}\n.cm-s-default .cm-hr {color: #999;}\n.cm-s-default .cm-link {color: #00c;}\n\n.cm-s-default .cm-error {color: #f00;}\n.cm-invalidchar {color: #f00;}\n\n.CodeMirror-composing { border-bottom: 2px solid; }\n\n/* Default styles for common addons */\n\ndiv.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}\ndiv.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}\n.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }\n.CodeMirror-activeline-background {background: #e8f2ff;}\n\n/* STOP */\n\n/* The rest of this file contains styles related to the mechanics of\n   the editor. You probably shouldn't touch them. */\n\n.CodeMirror {\n  position: relative;\n  overflow: hidden;\n  background: white;\n}\n\n.CodeMirror-scroll {\n  overflow: scroll !important; /* Things will break if this is overridden */\n  /* 50px is the magic margin used to hide the element's real scrollbars */\n  /* See overflow: hidden in .CodeMirror */\n  margin-bottom: -50px; margin-right: -50px;\n  padding-bottom: 50px;\n  height: 100%;\n  outline: none; /* Prevent dragging from highlighting the element */\n  position: relative;\n}\n.CodeMirror-sizer {\n  position: relative;\n  border-right: 50px solid transparent;\n}\n\n/* The fake, visible scrollbars. Used to force redraw during scrolling\n   before actual scrolling happens, thus preventing shaking and\n   flickering artifacts. */\n.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  position: absolute;\n  z-index: 6;\n  display: none;\n  outline: none;\n}\n.CodeMirror-vscrollbar {\n  right: 0; top: 0;\n  overflow-x: hidden;\n  overflow-y: scroll;\n}\n.CodeMirror-hscrollbar {\n  bottom: 0; left: 0;\n  overflow-y: hidden;\n  overflow-x: scroll;\n}\n.CodeMirror-scrollbar-filler {\n  right: 0; bottom: 0;\n}\n.CodeMirror-gutter-filler {\n  left: 0; bottom: 0;\n}\n\n.CodeMirror-gutters {\n  position: absolute; left: 0; top: 0;\n  min-height: 100%;\n  z-index: 3;\n}\n.CodeMirror-gutter {\n  white-space: normal;\n  height: 100%;\n  display: inline-block;\n  vertical-align: top;\n  margin-bottom: -50px;\n}\n.CodeMirror-gutter-wrapper {\n  position: absolute;\n  z-index: 4;\n  background: none !important;\n  border: none !important;\n}\n.CodeMirror-gutter-background {\n  position: absolute;\n  top: 0; bottom: 0;\n  z-index: 4;\n}\n.CodeMirror-gutter-elt {\n  position: absolute;\n  cursor: default;\n  z-index: 4;\n}\n.CodeMirror-gutter-wrapper ::selection { background-color: transparent }\n.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }\n\n.CodeMirror-lines {\n  cursor: text;\n  min-height: 1px; /* prevents collapsing before first draw */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  /* Reset some styles that the rest of the page might have set */\n  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;\n  border-width: 0;\n  background: transparent;\n  font-family: inherit;\n  font-size: inherit;\n  margin: 0;\n  white-space: pre;\n  word-wrap: normal;\n  line-height: inherit;\n  color: inherit;\n  z-index: 2;\n  position: relative;\n  overflow: visible;\n  -webkit-tap-highlight-color: transparent;\n  -webkit-font-variant-ligatures: contextual;\n  font-variant-ligatures: contextual;\n}\n.CodeMirror-wrap pre.CodeMirror-line,\n.CodeMirror-wrap pre.CodeMirror-line-like {\n  word-wrap: break-word;\n  white-space: pre-wrap;\n  word-break: normal;\n}\n\n.CodeMirror-linebackground {\n  position: absolute;\n  left: 0; right: 0; top: 0; bottom: 0;\n  z-index: 0;\n}\n\n.CodeMirror-linewidget {\n  position: relative;\n  z-index: 2;\n  padding: 0.1px; /* Force widget margins to stay inside of the container */\n}\n\n.CodeMirror-widget {}\n\n.CodeMirror-rtl pre { direction: rtl; }\n\n.CodeMirror-code {\n  outline: none;\n}\n\n/* Force content-box sizing for the elements where we expect it */\n.CodeMirror-scroll,\n.CodeMirror-sizer,\n.CodeMirror-gutter,\n.CodeMirror-gutters,\n.CodeMirror-linenumber {\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n}\n\n.CodeMirror-measure {\n  position: absolute;\n  width: 100%;\n  height: 0;\n  overflow: hidden;\n  visibility: hidden;\n}\n\n.CodeMirror-cursor {\n  position: absolute;\n  pointer-events: none;\n}\n.CodeMirror-measure pre { position: static; }\n\ndiv.CodeMirror-cursors {\n  visibility: hidden;\n  position: relative;\n  z-index: 3;\n}\ndiv.CodeMirror-dragcursors {\n  visibility: visible;\n}\n\n.CodeMirror-focused div.CodeMirror-cursors {\n  visibility: visible;\n}\n\n.CodeMirror-selected { background: #d9d9d9; }\n.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }\n.CodeMirror-crosshair { cursor: crosshair; }\n.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }\n.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }\n\n.cm-searching {\n  background-color: #ffa;\n  background-color: rgba(255, 255, 0, .4);\n}\n\n/* Used to force a border model for a node */\n.cm-force-border { padding-right: .1px; }\n\n@media print {\n  /* Hide the cursor when printing */\n  .CodeMirror div.CodeMirror-cursors {\n    visibility: hidden;\n  }\n}\n\n/* See issue #2901 */\n.cm-tab-wrap-hack:after { content: ''; }\n\n/* Help users use markselection to safely style text background */\nspan.CodeMirror-selectedtext { background: none; }\n\n.CodeMirror-dialog {\n  position: absolute;\n  left: 0; right: 0;\n  background: inherit;\n  z-index: 15;\n  padding: .1em .8em;\n  overflow: hidden;\n  color: inherit;\n}\n\n.CodeMirror-dialog-top {\n  border-bottom: 1px solid #eee;\n  top: 0;\n}\n\n.CodeMirror-dialog-bottom {\n  border-top: 1px solid #eee;\n  bottom: 0;\n}\n\n.CodeMirror-dialog input {\n  border: none;\n  outline: none;\n  background: transparent;\n  width: 20em;\n  color: inherit;\n  font-family: monospace;\n}\n\n.CodeMirror-dialog button {\n  font-size: 70%;\n}\n\n.CodeMirror-foldmarker {\n  color: blue;\n  text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;\n  font-family: arial;\n  line-height: .3;\n  cursor: pointer;\n}\n.CodeMirror-foldgutter {\n  width: .7em;\n}\n.CodeMirror-foldgutter-open,\n.CodeMirror-foldgutter-folded {\n  cursor: pointer;\n}\n.CodeMirror-foldgutter-open:after {\n  content: \"\\25BE\";\n}\n.CodeMirror-foldgutter-folded:after {\n  content: \"\\25B8\";\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.CodeMirror {\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  border: 0;\n  border-radius: 0;\n  height: auto;\n  /* Changed to auto to autogrow */\n}\n\n.CodeMirror pre {\n  padding: 0 var(--jp-code-padding);\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-dialog {\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* This causes https://github.com/jupyter/jupyterlab/issues/522 */\n/* May not cause it not because we changed it! */\n.CodeMirror-lines {\n  padding: var(--jp-code-padding) 0;\n}\n\n.CodeMirror-linenumber {\n  padding: 0 8px;\n}\n\n.jp-CodeMirrorEditor {\n  cursor: text;\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n\n/* When zoomed out 67% and 33% on a screen of 1440 width x 900 height */\n@media screen and (min-width: 2138px) and (max-width: 4319px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width1) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n/* When zoomed out less than 33% */\n@media screen and (min-width: 4320px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width2) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n.CodeMirror.jp-mod-readOnly .CodeMirror-cursor {\n  display: none;\n}\n\n.CodeMirror-gutters {\n  border-right: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-layout-color0);\n}\n\n.jp-CollaboratorCursor {\n  border-left: 5px solid transparent;\n  border-right: 5px solid transparent;\n  border-top: none;\n  border-bottom: 3px solid;\n  background-clip: content-box;\n  margin-left: -5px;\n  margin-right: -5px;\n}\n\n.CodeMirror-selectedtext.cm-searching {\n  background-color: var(--jp-search-selected-match-background-color) !important;\n  color: var(--jp-search-selected-match-color) !important;\n}\n\n.cm-searching {\n  background-color: var(\n    --jp-search-unselected-match-background-color\n  ) !important;\n  color: var(--jp-search-unselected-match-color) !important;\n}\n\n.CodeMirror-focused .CodeMirror-selected {\n  background-color: var(--jp-editor-selected-focused-background);\n}\n\n.CodeMirror-selected {\n  background-color: var(--jp-editor-selected-background);\n}\n\n.jp-CollaboratorCursor-hover {\n  position: absolute;\n  z-index: 1;\n  transform: translateX(-50%);\n  color: white;\n  border-radius: 3px;\n  padding-left: 4px;\n  padding-right: 4px;\n  padding-top: 1px;\n  padding-bottom: 1px;\n  text-align: center;\n  font-size: var(--jp-ui-font-size1);\n  white-space: nowrap;\n}\n\n.jp-CodeMirror-ruler {\n  border-left: 1px dashed var(--jp-border-color2);\n}\n\n/**\n * Here is our jupyter theme for CodeMirror syntax highlighting\n * This is used in our marked.js syntax highlighting and CodeMirror itself\n * The string \"jupyter\" is set in ../codemirror/widget.DEFAULT_CODEMIRROR_THEME\n * This came from the classic notebook, which came form highlight.js/GitHub\n */\n\n/**\n * CodeMirror themes are handling the background/color in this way. This works\n * fine for CodeMirror editors outside the notebook, but the notebook styles\n * these things differently.\n */\n.CodeMirror.cm-s-jupyter {\n  background: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* In the notebook, we want this styling to be handled by its container */\n.jp-CodeConsole .CodeMirror.cm-s-jupyter,\n.jp-Notebook .CodeMirror.cm-s-jupyter {\n  background: transparent;\n}\n\n.cm-s-jupyter .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n.cm-s-jupyter span.cm-keyword {\n  color: var(--jp-mirror-editor-keyword-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-atom {\n  color: var(--jp-mirror-editor-atom-color);\n}\n.cm-s-jupyter span.cm-number {\n  color: var(--jp-mirror-editor-number-color);\n}\n.cm-s-jupyter span.cm-def {\n  color: var(--jp-mirror-editor-def-color);\n}\n.cm-s-jupyter span.cm-variable {\n  color: var(--jp-mirror-editor-variable-color);\n}\n.cm-s-jupyter span.cm-variable-2 {\n  color: var(--jp-mirror-editor-variable-2-color);\n}\n.cm-s-jupyter span.cm-variable-3 {\n  color: var(--jp-mirror-editor-variable-3-color);\n}\n.cm-s-jupyter span.cm-punctuation {\n  color: var(--jp-mirror-editor-punctuation-color);\n}\n.cm-s-jupyter span.cm-property {\n  color: var(--jp-mirror-editor-property-color);\n}\n.cm-s-jupyter span.cm-operator {\n  color: var(--jp-mirror-editor-operator-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-comment {\n  color: var(--jp-mirror-editor-comment-color);\n  font-style: italic;\n}\n.cm-s-jupyter span.cm-string {\n  color: var(--jp-mirror-editor-string-color);\n}\n.cm-s-jupyter span.cm-string-2 {\n  color: var(--jp-mirror-editor-string-2-color);\n}\n.cm-s-jupyter span.cm-meta {\n  color: var(--jp-mirror-editor-meta-color);\n}\n.cm-s-jupyter span.cm-qualifier {\n  color: var(--jp-mirror-editor-qualifier-color);\n}\n.cm-s-jupyter span.cm-builtin {\n  color: var(--jp-mirror-editor-builtin-color);\n}\n.cm-s-jupyter span.cm-bracket {\n  color: var(--jp-mirror-editor-bracket-color);\n}\n.cm-s-jupyter span.cm-tag {\n  color: var(--jp-mirror-editor-tag-color);\n}\n.cm-s-jupyter span.cm-attribute {\n  color: var(--jp-mirror-editor-attribute-color);\n}\n.cm-s-jupyter span.cm-header {\n  color: var(--jp-mirror-editor-header-color);\n}\n.cm-s-jupyter span.cm-quote {\n  color: var(--jp-mirror-editor-quote-color);\n}\n.cm-s-jupyter span.cm-link {\n  color: var(--jp-mirror-editor-link-color);\n}\n.cm-s-jupyter span.cm-error {\n  color: var(--jp-mirror-editor-error-color);\n}\n.cm-s-jupyter span.cm-hr {\n  color: #999;\n}\n\n.cm-s-jupyter span.cm-tab {\n  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);\n  background-position: right;\n  background-repeat: no-repeat;\n}\n\n.cm-s-jupyter .CodeMirror-activeline-background,\n.cm-s-jupyter .CodeMirror-gutter {\n  background-color: var(--jp-layout-color2);\n}\n\n/* Styles for shared cursors (remote cursor locations and selected ranges) */\n.jp-CodeMirrorEditor .remote-caret {\n  position: relative;\n  border-left: 2px solid black;\n  margin-left: -1px;\n  margin-right: -1px;\n  box-sizing: border-box;\n}\n\n.jp-CodeMirrorEditor .remote-caret > div {\n  white-space: nowrap;\n  position: absolute;\n  top: -1.15em;\n  padding-bottom: 0.05em;\n  left: -2px;\n  font-size: 0.95em;\n  background-color: rgb(250, 129, 0);\n  font-family: var(--jp-ui-font-family);\n  font-weight: bold;\n  line-height: normal;\n  user-select: none;\n  color: white;\n  padding-left: 2px;\n  padding-right: 2px;\n  z-index: 3;\n  transition: opacity 0.3s ease-in-out;\n}\n\n.jp-CodeMirrorEditor .remote-caret.hide-name > div {\n  transition-delay: 0.7s;\n  opacity: 0;\n}\n\n.jp-CodeMirrorEditor .remote-caret:hover > div {\n  opacity: 1;\n  transition-delay: 0s;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| RenderedText\n|----------------------------------------------------------------------------*/\n\n:root {\n  /* This is the padding value to fill the gaps between lines containing spans with background color. */\n  --jp-private-code-span-padding: calc(\n    (var(--jp-code-line-height) - 1) * var(--jp-code-font-size) / 2\n  );\n}\n\n.jp-RenderedText {\n  text-align: left;\n  padding-left: var(--jp-code-padding);\n  line-height: var(--jp-code-line-height);\n  font-family: var(--jp-code-font-family);\n}\n\n.jp-RenderedText pre,\n.jp-RenderedJavaScript pre,\n.jp-RenderedHTMLCommon pre {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-code-font-size);\n  border: none;\n  margin: 0px;\n  padding: 0px;\n}\n\n.jp-RenderedText pre a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* console foregrounds and backgrounds */\n.jp-RenderedText pre .ansi-black-fg {\n  color: #3e424d;\n}\n.jp-RenderedText pre .ansi-red-fg {\n  color: #e75c58;\n}\n.jp-RenderedText pre .ansi-green-fg {\n  color: #00a250;\n}\n.jp-RenderedText pre .ansi-yellow-fg {\n  color: #ddb62b;\n}\n.jp-RenderedText pre .ansi-blue-fg {\n  color: #208ffb;\n}\n.jp-RenderedText pre .ansi-magenta-fg {\n  color: #d160c4;\n}\n.jp-RenderedText pre .ansi-cyan-fg {\n  color: #60c6c8;\n}\n.jp-RenderedText pre .ansi-white-fg {\n  color: #c5c1b4;\n}\n\n.jp-RenderedText pre .ansi-black-bg {\n  background-color: #3e424d;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-bg {\n  background-color: #e75c58;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-bg {\n  background-color: #00a250;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-bg {\n  background-color: #ddb62b;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-bg {\n  background-color: #208ffb;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-bg {\n  background-color: #d160c4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-bg {\n  background-color: #60c6c8;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-bg {\n  background-color: #c5c1b4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-black-intense-fg {\n  color: #282c36;\n}\n.jp-RenderedText pre .ansi-red-intense-fg {\n  color: #b22b31;\n}\n.jp-RenderedText pre .ansi-green-intense-fg {\n  color: #007427;\n}\n.jp-RenderedText pre .ansi-yellow-intense-fg {\n  color: #b27d12;\n}\n.jp-RenderedText pre .ansi-blue-intense-fg {\n  color: #0065ca;\n}\n.jp-RenderedText pre .ansi-magenta-intense-fg {\n  color: #a03196;\n}\n.jp-RenderedText pre .ansi-cyan-intense-fg {\n  color: #258f8f;\n}\n.jp-RenderedText pre .ansi-white-intense-fg {\n  color: #a1a6b2;\n}\n\n.jp-RenderedText pre .ansi-black-intense-bg {\n  background-color: #282c36;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-intense-bg {\n  background-color: #b22b31;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-intense-bg {\n  background-color: #007427;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-intense-bg {\n  background-color: #b27d12;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-intense-bg {\n  background-color: #0065ca;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-intense-bg {\n  background-color: #a03196;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-intense-bg {\n  background-color: #258f8f;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-intense-bg {\n  background-color: #a1a6b2;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-default-inverse-fg {\n  color: var(--jp-ui-inverse-font-color0);\n}\n.jp-RenderedText pre .ansi-default-inverse-bg {\n  background-color: var(--jp-inverse-layout-color0);\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-bold {\n  font-weight: bold;\n}\n.jp-RenderedText pre .ansi-underline {\n  text-decoration: underline;\n}\n\n.jp-RenderedText[data-mime-type='application/vnd.jupyter.stderr'] {\n  background: var(--jp-rendermime-error-background);\n  padding-top: var(--jp-code-padding);\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedLatex\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedLatex {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n}\n\n/* Left-justify outputs.*/\n.jp-OutputArea-output.jp-RenderedLatex {\n  padding: var(--jp-code-padding);\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedHTML\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedHTMLCommon {\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-content-font-family);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n  /* Give a bit more R padding on Markdown text to keep line lengths reasonable */\n  padding-right: 20px;\n}\n\n.jp-RenderedHTMLCommon em {\n  font-style: italic;\n}\n\n.jp-RenderedHTMLCommon strong {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon u {\n  text-decoration: underline;\n}\n\n.jp-RenderedHTMLCommon a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* Headings */\n\n.jp-RenderedHTMLCommon h1,\n.jp-RenderedHTMLCommon h2,\n.jp-RenderedHTMLCommon h3,\n.jp-RenderedHTMLCommon h4,\n.jp-RenderedHTMLCommon h5,\n.jp-RenderedHTMLCommon h6 {\n  line-height: var(--jp-content-heading-line-height);\n  font-weight: var(--jp-content-heading-font-weight);\n  font-style: normal;\n  margin: var(--jp-content-heading-margin-top) 0\n    var(--jp-content-heading-margin-bottom) 0;\n}\n\n.jp-RenderedHTMLCommon h1:first-child,\n.jp-RenderedHTMLCommon h2:first-child,\n.jp-RenderedHTMLCommon h3:first-child,\n.jp-RenderedHTMLCommon h4:first-child,\n.jp-RenderedHTMLCommon h5:first-child,\n.jp-RenderedHTMLCommon h6:first-child {\n  margin-top: calc(0.5 * var(--jp-content-heading-margin-top));\n}\n\n.jp-RenderedHTMLCommon h1:last-child,\n.jp-RenderedHTMLCommon h2:last-child,\n.jp-RenderedHTMLCommon h3:last-child,\n.jp-RenderedHTMLCommon h4:last-child,\n.jp-RenderedHTMLCommon h5:last-child,\n.jp-RenderedHTMLCommon h6:last-child {\n  margin-bottom: calc(0.5 * var(--jp-content-heading-margin-bottom));\n}\n\n.jp-RenderedHTMLCommon h1 {\n  font-size: var(--jp-content-font-size5);\n}\n\n.jp-RenderedHTMLCommon h2 {\n  font-size: var(--jp-content-font-size4);\n}\n\n.jp-RenderedHTMLCommon h3 {\n  font-size: var(--jp-content-font-size3);\n}\n\n.jp-RenderedHTMLCommon h4 {\n  font-size: var(--jp-content-font-size2);\n}\n\n.jp-RenderedHTMLCommon h5 {\n  font-size: var(--jp-content-font-size1);\n}\n\n.jp-RenderedHTMLCommon h6 {\n  font-size: var(--jp-content-font-size0);\n}\n\n/* Lists */\n\n.jp-RenderedHTMLCommon ul:not(.list-inline),\n.jp-RenderedHTMLCommon ol:not(.list-inline) {\n  padding-left: 2em;\n}\n\n.jp-RenderedHTMLCommon ul {\n  list-style: disc;\n}\n\n.jp-RenderedHTMLCommon ul ul {\n  list-style: square;\n}\n\n.jp-RenderedHTMLCommon ul ul ul {\n  list-style: circle;\n}\n\n.jp-RenderedHTMLCommon ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol ol {\n  list-style: upper-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol {\n  list-style: lower-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol {\n  list-style: lower-roman;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol,\n.jp-RenderedHTMLCommon ul {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon ul ul,\n.jp-RenderedHTMLCommon ul ol,\n.jp-RenderedHTMLCommon ol ul,\n.jp-RenderedHTMLCommon ol ol {\n  margin-bottom: 0em;\n}\n\n.jp-RenderedHTMLCommon hr {\n  color: var(--jp-border-color2);\n  background-color: var(--jp-border-color1);\n  margin-top: 1em;\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon > pre {\n  margin: 1.5em 2em;\n}\n\n.jp-RenderedHTMLCommon pre,\n.jp-RenderedHTMLCommon code {\n  border: 0;\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  line-height: var(--jp-code-line-height);\n  padding: 0;\n  white-space: pre-wrap;\n}\n\n.jp-RenderedHTMLCommon :not(pre) > code {\n  background-color: var(--jp-layout-color2);\n  padding: 1px 5px;\n}\n\n/* Tables */\n\n.jp-RenderedHTMLCommon table {\n  border-collapse: collapse;\n  border-spacing: 0;\n  border: none;\n  color: var(--jp-ui-font-color1);\n  font-size: 12px;\n  table-layout: fixed;\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.jp-RenderedHTMLCommon thead {\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  vertical-align: bottom;\n}\n\n.jp-RenderedHTMLCommon td,\n.jp-RenderedHTMLCommon th,\n.jp-RenderedHTMLCommon tr {\n  vertical-align: middle;\n  padding: 0.5em 0.5em;\n  line-height: normal;\n  white-space: normal;\n  max-width: none;\n  border: none;\n}\n\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon td,\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon th {\n  max-width: none;\n}\n\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon td,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon th,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon tr {\n  text-align: right;\n}\n\n.jp-RenderedHTMLCommon th {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(odd) {\n  background: var(--jp-layout-color0);\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(even) {\n  background: var(--jp-rendermime-table-row-background);\n}\n\n.jp-RenderedHTMLCommon tbody tr:hover {\n  background: var(--jp-rendermime-table-row-hover-background);\n}\n\n.jp-RenderedHTMLCommon table {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon p {\n  text-align: left;\n  margin: 0px;\n}\n\n.jp-RenderedHTMLCommon p {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon img {\n  -moz-force-broken-image-icon: 1;\n}\n\n/* Restrict to direct children as other images could be nested in other content. */\n.jp-RenderedHTMLCommon > img {\n  display: block;\n  margin-left: 0;\n  margin-right: 0;\n  margin-bottom: 1em;\n}\n\n/* Change color behind transparent images if they need it... */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-light-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-dark-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n/* ...or leave it untouched if they don't */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-dark-background {\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-light-background {\n}\n\n.jp-RenderedHTMLCommon img,\n.jp-RenderedImage img,\n.jp-RenderedHTMLCommon svg,\n.jp-RenderedSVG svg {\n  max-width: 100%;\n  height: auto;\n}\n\n.jp-RenderedHTMLCommon img.jp-mod-unconfined,\n.jp-RenderedImage img.jp-mod-unconfined,\n.jp-RenderedHTMLCommon svg.jp-mod-unconfined,\n.jp-RenderedSVG svg.jp-mod-unconfined {\n  max-width: none;\n}\n\n.jp-RenderedHTMLCommon .alert {\n  padding: var(--jp-notebook-padding);\n  border: var(--jp-border-width) solid transparent;\n  border-radius: var(--jp-border-radius);\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon .alert-info {\n  color: var(--jp-info-color0);\n  background-color: var(--jp-info-color3);\n  border-color: var(--jp-info-color2);\n}\n.jp-RenderedHTMLCommon .alert-info hr {\n  border-color: var(--jp-info-color3);\n}\n.jp-RenderedHTMLCommon .alert-info > p:last-child,\n.jp-RenderedHTMLCommon .alert-info > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-warning {\n  color: var(--jp-warn-color0);\n  background-color: var(--jp-warn-color3);\n  border-color: var(--jp-warn-color2);\n}\n.jp-RenderedHTMLCommon .alert-warning hr {\n  border-color: var(--jp-warn-color3);\n}\n.jp-RenderedHTMLCommon .alert-warning > p:last-child,\n.jp-RenderedHTMLCommon .alert-warning > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-success {\n  color: var(--jp-success-color0);\n  background-color: var(--jp-success-color3);\n  border-color: var(--jp-success-color2);\n}\n.jp-RenderedHTMLCommon .alert-success hr {\n  border-color: var(--jp-success-color3);\n}\n.jp-RenderedHTMLCommon .alert-success > p:last-child,\n.jp-RenderedHTMLCommon .alert-success > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-danger {\n  color: var(--jp-error-color0);\n  background-color: var(--jp-error-color3);\n  border-color: var(--jp-error-color2);\n}\n.jp-RenderedHTMLCommon .alert-danger hr {\n  border-color: var(--jp-error-color3);\n}\n.jp-RenderedHTMLCommon .alert-danger > p:last-child,\n.jp-RenderedHTMLCommon .alert-danger > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon blockquote {\n  margin: 1em 2em;\n  padding: 0 1em;\n  border-left: 5px solid var(--jp-border-color2);\n}\n\na.jp-InternalAnchorLink {\n  visibility: hidden;\n  margin-left: 8px;\n  color: var(--md-blue-800);\n}\n\nh1:hover .jp-InternalAnchorLink,\nh2:hover .jp-InternalAnchorLink,\nh3:hover .jp-InternalAnchorLink,\nh4:hover .jp-InternalAnchorLink,\nh5:hover .jp-InternalAnchorLink,\nh6:hover .jp-InternalAnchorLink {\n  visibility: visible;\n}\n\n.jp-RenderedHTMLCommon kbd {\n  background-color: var(--jp-rendermime-table-row-background);\n  border: 1px solid var(--jp-border-color0);\n  border-bottom-color: var(--jp-border-color2);\n  border-radius: 3px;\n  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n  display: inline-block;\n  font-size: 0.8em;\n  line-height: 1em;\n  padding: 0.2em 0.5em;\n}\n\n/* Most direct children of .jp-RenderedHTMLCommon have a margin-bottom of 1.0.\n * At the bottom of cells this is a bit too much as there is also spacing\n * between cells. Going all the way to 0 gets too tight between markdown and\n * code cells.\n */\n.jp-RenderedHTMLCommon > *:last-child {\n  margin-bottom: 0.5em;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MimeDocument {\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-filebrowser-button-height: 28px;\n  --jp-private-filebrowser-button-width: 48px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser {\n  display: flex;\n  flex-direction: column;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  border-bottom: none;\n  height: auto;\n  margin: var(--jp-toolbar-header-margin);\n  box-shadow: none;\n}\n\n.jp-BreadCrumbs {\n  flex: 0 0 auto;\n  margin: 8px 12px 8px 12px;\n}\n\n.jp-BreadCrumbs-item {\n  margin: 0px 2px;\n  padding: 0px 2px;\n  border-radius: var(--jp-border-radius);\n  cursor: pointer;\n}\n\n.jp-BreadCrumbs-item:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-BreadCrumbs-item:first-child {\n  margin-left: 0px;\n}\n\n.jp-BreadCrumbs-item.jp-mod-dropTarget {\n  background-color: var(--jp-brand-color2);\n  opacity: 0.7;\n}\n\n/*-----------------------------------------------------------------------------\n| Buttons\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  padding: 0px;\n  margin: 8px 12px 0px 12px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  justify-content: flex-start;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-Toolbar-item {\n  flex: 0 0 auto;\n  padding-left: 0px;\n  padding-right: 2px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-ToolbarButtonComponent {\n  width: 40px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent {\n  width: 72px;\n  background: var(--jp-brand-color1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent:focus-visible {\n  background-color: var(--jp-brand-color0);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent\n  .jp-icon3 {\n  fill: white;\n}\n\n/*-----------------------------------------------------------------------------\n| Other styles\n|----------------------------------------------------------------------------*/\n\n.jp-FileDialog.jp-mod-conflict input {\n  color: var(--jp-error-color1);\n}\n\n.jp-FileDialog .jp-new-name-title {\n  margin-top: 12px;\n}\n\n.jp-LastModified-hidden {\n  display: none;\n}\n\n.jp-FileBrowser-filterBox {\n  padding: 0px;\n  flex: 0 0 auto;\n  margin: 8px 12px 0px 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| DirListing\n|----------------------------------------------------------------------------*/\n\n.jp-DirListing {\n  flex: 1 1 auto;\n  display: flex;\n  flex-direction: column;\n  outline: 0;\n}\n\n.jp-DirListing:focus-visible {\n  border: 1px solid var(--jp-brand-color1);\n}\n\n.jp-DirListing-header {\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n  border-top: var(--jp-border-width) solid var(--jp-border-color2);\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  z-index: 2;\n}\n\n.jp-DirListing-headerItem {\n  padding: 4px 12px 2px 12px;\n  font-weight: 500;\n}\n\n.jp-DirListing-headerItem:hover {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-headerItem.jp-id-name {\n  flex: 1 0 84px;\n}\n\n.jp-DirListing-headerItem.jp-id-modified {\n  flex: 0 0 112px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n}\n\n.jp-id-narrow {\n  display: none;\n  flex: 0 0 5px;\n  padding: 4px 4px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n  color: var(--jp-border-color2);\n}\n\n.jp-DirListing-narrow .jp-id-narrow {\n  display: block;\n}\n\n.jp-DirListing-narrow .jp-id-modified,\n.jp-DirListing-narrow .jp-DirListing-itemModified {\n  display: none;\n}\n\n.jp-DirListing-headerItem.jp-mod-selected {\n  font-weight: 600;\n}\n\n/* increase specificity to override bundled default */\n.jp-DirListing-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-DirListing-content mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.jp-DirListing-content .jp-DirListing-item.jp-mod-selected mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n/* Style the directory listing content when a user drops a file to upload */\n.jp-DirListing.jp-mod-native-drop .jp-DirListing-content {\n  outline: 5px dashed rgba(128, 128, 128, 0.5);\n  outline-offset: -10px;\n  cursor: copy;\n}\n\n.jp-DirListing-item {\n  display: flex;\n  flex-direction: row;\n  padding: 4px 12px;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n.jp-DirListing-item[data-is-dot] {\n  opacity: 75%;\n}\n\n.jp-DirListing-item.jp-mod-selected {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.jp-DirListing-item.jp-mod-dropTarget {\n  background: var(--jp-brand-color3);\n}\n\n.jp-DirListing-item:hover:not(.jp-mod-selected) {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-itemIcon {\n  flex: 0 0 20px;\n  margin-right: 4px;\n}\n\n.jp-DirListing-itemText {\n  flex: 1 0 64px;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  user-select: none;\n}\n\n.jp-DirListing-itemModified {\n  flex: 0 0 125px;\n  text-align: right;\n}\n\n.jp-DirListing-editor {\n  flex: 1 0 64px;\n  outline: none;\n  border: none;\n}\n\n.jp-DirListing-item.jp-mod-running .jp-DirListing-itemIcon:before {\n  color: var(--jp-success-color1);\n  content: '\\25CF';\n  font-size: 8px;\n  position: absolute;\n  left: -8px;\n}\n\n.jp-DirListing-item.jp-mod-running.jp-mod-selected\n  .jp-DirListing-itemIcon:before {\n  color: var(--jp-ui-inverse-font-color1);\n}\n\n.jp-DirListing-item.lm-mod-drag-image,\n.jp-DirListing-item.jp-mod-selected.lm-mod-drag-image {\n  font-size: var(--jp-ui-font-size1);\n  padding-left: 4px;\n  margin-left: 4px;\n  width: 160px;\n  background-color: var(--jp-ui-inverse-font-color2);\n  box-shadow: var(--jp-elevation-z2);\n  border-radius: 0px;\n  color: var(--jp-ui-font-color1);\n  transform: translateX(-40%) translateY(-58%);\n}\n\n.jp-DirListing-deadSpace {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-Document {\n  min-width: 120px;\n  min-height: 120px;\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n}\n\n/*-----------------------------------------------------------------------------\n| Main OutputArea\n| OutputArea has a list of Outputs\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea {\n  overflow-y: auto;\n}\n\n.jp-OutputArea-child {\n  display: flex;\n  flex-direction: row;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child {\n  flex-direction: column;\n}\n\n.jp-OutputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-outprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n.jp-OutputArea-output {\n  height: auto;\n  overflow: auto;\n  user-select: text;\n  -moz-user-select: text;\n  -webkit-user-select: text;\n  -ms-user-select: text;\n}\n\n.jp-OutputArea-child .jp-OutputArea-output {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  margin-left: var(--jp-notebook-padding);\n}\n\n/**\n * Isolated output.\n */\n.jp-OutputArea-output.jp-mod-isolated {\n  width: 100%;\n  display: block;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n/* pre */\n\n.jp-OutputArea-output pre {\n  border: none;\n  margin: 0px;\n  padding: 0px;\n  overflow-x: auto;\n  overflow-y: auto;\n  word-break: break-all;\n  word-wrap: break-word;\n  white-space: pre-wrap;\n}\n\n/* tables */\n\n.jp-OutputArea-output.jp-RenderedHTMLCommon table {\n  margin-left: 0;\n  margin-right: 0;\n}\n\n/* description lists */\n\n.jp-OutputArea-output dl,\n.jp-OutputArea-output dt,\n.jp-OutputArea-output dd {\n  display: block;\n}\n\n.jp-OutputArea-output dl {\n  width: 100%;\n  overflow: hidden;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dt {\n  font-weight: bold;\n  float: left;\n  width: 20%;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dd {\n  float: left;\n  width: 80%;\n  padding: 0;\n  margin: 0;\n}\n\n/* Hide the gutter in case of\n *  - nested output areas (e.g. in the case of output widgets)\n *  - mirrored output areas\n */\n.jp-OutputArea .jp-OutputArea .jp-OutputArea-prompt {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| executeResult is added to any Output-result for the display of the object\n| returned by a cell\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  margin-left: 0px;\n  flex: 1 1 auto;\n}\n\n/* Text output with the Out[] prompt needs a top padding to match the\n * alignment of the Out[] prompt itself.\n */\n.jp-OutputArea-executeResult .jp-RenderedText.jp-OutputArea-output {\n  padding-top: var(--jp-code-padding);\n  border-top: var(--jp-border-width) solid transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| The Stdin output\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-stdin {\n  line-height: var(--jp-code-line-height);\n  padding-top: var(--jp-code-padding);\n  display: flex;\n}\n\n.jp-Stdin-prompt {\n  color: var(--jp-content-font-color0);\n  padding-right: var(--jp-code-padding);\n  vertical-align: baseline;\n  flex: 0 0 auto;\n}\n\n.jp-Stdin-input {\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  color: inherit;\n  background-color: inherit;\n  width: 42%;\n  min-width: 200px;\n  /* make sure input baseline aligns with prompt */\n  vertical-align: baseline;\n  /* padding + margin = 0.5em between prompt and cursor */\n  padding: 0em 0.25em;\n  margin: 0em 0.25em;\n  flex: 0 0 70%;\n}\n\n.jp-Stdin-input:focus {\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Output Area View\n|----------------------------------------------------------------------------*/\n\n.jp-LinkedOutputView .jp-OutputArea {\n  height: 100%;\n  display: block;\n}\n\n.jp-LinkedOutputView .jp-OutputArea-output:only-child {\n  height: 100%;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapser {\n  flex: 0 0 var(--jp-cell-collapser-width);\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n  border-radius: var(--jp-border-radius);\n  opacity: 1;\n}\n\n.jp-Collapser-child {\n  display: block;\n  width: 100%;\n  box-sizing: border-box;\n  /* height: 100% doesn't work because the height of its parent is computed from content */\n  position: absolute;\n  top: 0px;\n  bottom: 0px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Header/Footer\n|----------------------------------------------------------------------------*/\n\n/* Hidden by zero height by default */\n.jp-CellHeader,\n.jp-CellFooter {\n  height: 0px;\n  width: 100%;\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Input\n|----------------------------------------------------------------------------*/\n\n/* All input areas */\n.jp-InputArea {\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n}\n\nbody[data-format='mobile'] .jp-InputArea {\n  flex-direction: column;\n}\n\n.jp-InputArea-editor {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  /* This is the non-active, default styling */\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  border-radius: 0px;\n  background: var(--jp-cell-editor-background);\n}\n\nbody[data-format='mobile'] .jp-InputArea-editor {\n  margin-left: var(--jp-notebook-padding);\n}\n\n.jp-InputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-inprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  opacity: var(--jp-cell-prompt-opacity);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-InputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Placeholder {\n  display: flex;\n  flex-direction: row;\n  flex: 1 1 auto;\n}\n\n.jp-Placeholder-prompt {\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content {\n  flex: 1 1 auto;\n  border: none;\n  background: transparent;\n  height: 20px;\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon {\n  width: 32px;\n  height: 16px;\n  border: 1px solid transparent;\n  border-radius: var(--jp-border-radius);\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon:hover {\n  border: 1px solid var(--jp-border-color1);\n  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);\n  background-color: var(--jp-layout-color0);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-cell-scrolling-output-offset: 5px;\n}\n\n/*-----------------------------------------------------------------------------\n| Cell\n|----------------------------------------------------------------------------*/\n\n.jp-Cell {\n  padding: var(--jp-cell-padding);\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Common input/output\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-inputWrapper,\n.jp-Cell-outputWrapper {\n  display: flex;\n  flex-direction: row;\n  padding: 0px;\n  margin: 0px;\n  /* Added to reveal the box-shadow on the input and output collapsers. */\n  overflow: visible;\n}\n\n/* Only input/output areas inside cells */\n.jp-Cell-inputArea,\n.jp-Cell-outputArea {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Collapser\n|----------------------------------------------------------------------------*/\n\n/* Make the output collapser disappear when there is not output, but do so\n * in a manner that leaves it in the layout and preserves its width.\n */\n.jp-Cell.jp-mod-noOutputs .jp-Cell-outputCollapser {\n  border: none !important;\n  background: transparent !important;\n}\n\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputCollapser {\n  min-height: var(--jp-cell-collapser-min-height);\n}\n\n/*-----------------------------------------------------------------------------\n| Output\n|----------------------------------------------------------------------------*/\n\n/* Put a space between input and output when there IS output */\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputWrapper {\n  margin-top: 5px;\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-Cell-outputArea {\n  overflow-y: auto;\n  max-height: 200px;\n  box-shadow: inset 0 0 6px 2px rgba(0, 0, 0, 0.3);\n  margin-left: var(--jp-private-cell-scrolling-output-offset);\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  flex: 0 0\n    calc(\n      var(--jp-cell-prompt-width) -\n        var(--jp-private-cell-scrolling-output-offset)\n    );\n}\n\n/*-----------------------------------------------------------------------------\n| CodeCell\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| MarkdownCell\n|----------------------------------------------------------------------------*/\n\n.jp-MarkdownOutput {\n  flex: 1 1 auto;\n  margin-top: 0;\n  margin-bottom: 0;\n  padding-left: var(--jp-code-padding);\n}\n\n.jp-MarkdownOutput.jp-RenderedHTMLCommon {\n  overflow: auto;\n}\n\n.jp-showHiddenCellsButton {\n  margin-left: calc(var(--jp-cell-prompt-width) + 2 * var(--jp-code-padding));\n  margin-top: var(--jp-code-padding);\n  border: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-border-color3) !important;\n  color: var(--jp-content-font-color0) !important;\n}\n\n.jp-showHiddenCellsButton:hover {\n  background-color: var(--jp-border-color2) !important;\n}\n\n.jp-collapseHeadingButton {\n  display: none;\n}\n\n.jp-MarkdownCell:hover .jp-collapseHeadingButton {\n  display: flex;\n  min-height: var(--jp-cell-collapser-min-height);\n  position: absolute;\n  right: 0;\n  top: 0;\n  bottom: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n\n/*-----------------------------------------------------------------------------\n| Styles\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel-toolbar {\n  padding: 2px;\n}\n\n.jp-Toolbar-item.jp-Notebook-toolbarCellType .jp-select-wrapper.jp-mod-focused {\n  border: none;\n  box-shadow: none;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown select {\n  height: 24px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: 14px;\n  border-radius: 0;\n  display: block;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown span {\n  top: 5px !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-notebook-dragImage-width: 304px;\n  --jp-private-notebook-dragImage-height: 36px;\n  --jp-private-notebook-selected-color: var(--md-blue-400);\n  --jp-private-notebook-active-color: var(--md-green-400);\n}\n\n/*-----------------------------------------------------------------------------\n| Imports\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Notebook\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel {\n  display: block;\n  height: 100%;\n}\n\n.jp-NotebookPanel.jp-Document {\n  min-width: 240px;\n  min-height: 120px;\n}\n\n.jp-Notebook {\n  padding: var(--jp-notebook-padding);\n  outline: none;\n  overflow: auto;\n  background: var(--jp-layout-color0);\n}\n\n.jp-Notebook.jp-mod-scrollPastEnd::after {\n  display: block;\n  content: '';\n  min-height: var(--jp-notebook-scroll-padding);\n}\n\n.jp-MainAreaWidget-ContainStrict .jp-Notebook * {\n  contain: strict;\n}\n\n.jp-Notebook-render * {\n  contain: none !important;\n}\n\n.jp-Notebook .jp-Cell {\n  overflow: visible;\n}\n\n.jp-Notebook .jp-Cell .jp-InputPrompt {\n  cursor: move;\n  float: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook state related styling\n|\n| The notebook and cells each have states, here are the possibilities:\n|\n| - Notebook\n|   - Command\n|   - Edit\n| - Cell\n|   - None\n|   - Active (only one can be active)\n|   - Selected (the cells actions are applied to)\n|   - Multiselected (when multiple selected, the cursor)\n|   - No outputs\n|----------------------------------------------------------------------------*/\n\n/* Command or edit modes */\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-InputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-OutputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n/* cell is active */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser {\n  background: var(--jp-brand-color1);\n}\n\n/* cell is dirty */\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt {\n  color: var(--jp-warn-color1);\n}\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt:before {\n  color: var(--jp-warn-color1);\n  content: '•';\n}\n\n.jp-Notebook .jp-Cell.jp-mod-active.jp-mod-dirty .jp-Collapser {\n  background: var(--jp-warn-color1);\n}\n\n/* collapser is hovered */\n.jp-Notebook .jp-Cell .jp-Collapser:hover {\n  box-shadow: var(--jp-elevation-z2);\n  background: var(--jp-brand-color1);\n  opacity: var(--jp-cell-collapser-not-active-hover-opacity);\n}\n\n/* cell is active and collapser is hovered */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser:hover {\n  background: var(--jp-brand-color0);\n  opacity: 1;\n}\n\n/* Command mode */\n\n.jp-Notebook.jp-mod-commandMode .jp-Cell.jp-mod-selected {\n  background: var(--jp-notebook-multiselected-color);\n}\n\n.jp-Notebook.jp-mod-commandMode\n  .jp-Cell.jp-mod-active.jp-mod-selected:not(.jp-mod-multiSelected) {\n  background: transparent;\n}\n\n/* Edit mode */\n\n.jp-Notebook.jp-mod-editMode .jp-Cell.jp-mod-active .jp-InputArea-editor {\n  border: var(--jp-border-width) solid var(--jp-cell-editor-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-cell-editor-active-background);\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook drag and drop\n|----------------------------------------------------------------------------*/\n\n.jp-Notebook-cell.jp-mod-dropSource {\n  opacity: 0.5;\n}\n\n.jp-Notebook-cell.jp-mod-dropTarget,\n.jp-Notebook.jp-mod-commandMode\n  .jp-Notebook-cell.jp-mod-active.jp-mod-selected.jp-mod-dropTarget {\n  border-top-color: var(--jp-private-notebook-selected-color);\n  border-top-style: solid;\n  border-top-width: 2px;\n}\n\n.jp-dragImage {\n  display: block;\n  flex-direction: row;\n  width: var(--jp-private-notebook-dragImage-width);\n  height: var(--jp-private-notebook-dragImage-height);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background);\n  overflow: visible;\n}\n\n.jp-dragImage-singlePrompt {\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n.jp-dragImage .jp-dragImage-content {\n  flex: 1 1 auto;\n  z-index: 2;\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  line-height: var(--jp-code-line-height);\n  padding: var(--jp-code-padding);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background-color);\n  color: var(--jp-content-font-color3);\n  text-align: left;\n  margin: 4px 4px 4px 0px;\n}\n\n.jp-dragImage .jp-dragImage-prompt {\n  flex: 0 0 auto;\n  min-width: 36px;\n  color: var(--jp-cell-inprompt-font-color);\n  padding: var(--jp-code-padding);\n  padding-left: 12px;\n  font-family: var(--jp-cell-prompt-font-family);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: 1.9;\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n}\n\n.jp-dragImage-multipleBack {\n  z-index: -1;\n  position: absolute;\n  height: 32px;\n  width: 300px;\n  top: 8px;\n  left: 8px;\n  background: var(--jp-layout-color2);\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n/*-----------------------------------------------------------------------------\n| Cell toolbar\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookTools {\n  display: block;\n  min-width: var(--jp-sidebar-min-width);\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n    * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  overflow: auto;\n}\n\n.jp-NotebookTools-tool {\n  padding: 0px 12px 0 12px;\n}\n\n.jp-ActiveCellTool {\n  padding: 12px;\n  background-color: var(--jp-layout-color1);\n  border-top: none !important;\n}\n\n.jp-ActiveCellTool .jp-InputArea-prompt {\n  flex: 0 0 auto;\n  padding-left: 0px;\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor {\n  flex: 1 1 auto;\n  background: var(--jp-cell-editor-background);\n  border-color: var(--jp-cell-editor-border-color);\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor .CodeMirror {\n  background: transparent;\n}\n\n.jp-MetadataEditorTool {\n  flex-direction: column;\n  padding: 12px 0px 12px 0px;\n}\n\n.jp-RankedPanel > :not(:first-child) {\n  margin-top: 12px;\n}\n\n.jp-KeySelector select.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n}\n\n.jp-KeySelector label,\n.jp-MetadataEditorTool label {\n  line-height: 1.4;\n}\n\n.jp-NotebookTools .jp-select-wrapper {\n  margin-top: 4px;\n  margin-bottom: 0px;\n}\n\n.jp-NotebookTools .jp-Collapse {\n  margin-top: 16px;\n}\n\n/*-----------------------------------------------------------------------------\n| Presentation Mode (.jp-mod-presentationMode)\n|----------------------------------------------------------------------------*/\n\n.jp-mod-presentationMode .jp-Notebook {\n  --jp-content-font-size1: var(--jp-content-presentation-font-size1);\n  --jp-code-font-size: var(--jp-code-presentation-font-size);\n}\n\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-InputPrompt,\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-OutputPrompt {\n  flex: 0 0 110px;\n}\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-Placeholder {\n  padding-left: 55px;\n}\n\n.jp-Cell-Placeholder-wrapper {\n  background: #fff;\n  border: 1px solid;\n  border-color: #e5e6e9 #dfe0e4 #d0d1d5;\n  border-radius: 4px;\n  -webkit-border-radius: 4px;\n  margin: 10px 15px;\n}\n\n.jp-Cell-Placeholder-wrapper-inner {\n  padding: 15px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body {\n  background-repeat: repeat;\n  background-size: 50% auto;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  background: #f6f7f8;\n  background-image: -webkit-linear-gradient(\n    left,\n    #f6f7f8 0%,\n    #edeef1 20%,\n    #f6f7f8 40%,\n    #f6f7f8 100%\n  );\n  background-repeat: no-repeat;\n  background-size: 800px 104px;\n  height: 104px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  position: absolute;\n  right: 15px;\n  left: 15px;\n  top: 15px;\n}\n\ndiv.jp-Cell-Placeholder-h1 {\n  top: 20px;\n  height: 20px;\n  left: 15px;\n  width: 150px;\n}\n\ndiv.jp-Cell-Placeholder-h2 {\n  left: 15px;\n  top: 50px;\n  height: 10px;\n  width: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-1,\ndiv.jp-Cell-Placeholder-content-2,\ndiv.jp-Cell-Placeholder-content-3 {\n  left: 15px;\n  right: 15px;\n  height: 10px;\n}\n\ndiv.jp-Cell-Placeholder-content-1 {\n  top: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-2 {\n  top: 120px;\n}\n\ndiv.jp-Cell-Placeholder-content-3 {\n  top: 140px;\n}\n\n</style>\n\n    <style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\nThe following CSS variables define the main, public API for styling JupyterLab.\nThese variables should be used by all plugins wherever possible. In other\nwords, plugins should not define custom colors, sizes, etc unless absolutely\nnecessary. This enables users to change the visual theme of JupyterLab\nby changing these variables.\n\nMany variables appear in an ordered sequence (0,1,2,3). These sequences\nare designed to work well together, so for example, `--jp-border-color1` should\nbe used with `--jp-layout-color1`. The numbers have the following meanings:\n\n* 0: super-primary, reserved for special emphasis\n* 1: primary, most important under normal situations\n* 2: secondary, next most important under normal situations\n* 3: tertiary, next most important under normal situations\n\nThroughout JupyterLab, we are mostly following principles from Google's\nMaterial Design when selecting colors. We are not, however, following\nall of MD as it is not optimized for dense, information rich UIs.\n*/\n\n:root {\n  /* Elevation\n   *\n   * We style box-shadows using Material Design's idea of elevation. These particular numbers are taken from here:\n   *\n   * https://github.com/material-components/material-components-web\n   * https://material-components-web.appspot.com/elevation.html\n   */\n\n  --jp-shadow-base-lightness: 0;\n  --jp-shadow-umbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.2\n  );\n  --jp-shadow-penumbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.14\n  );\n  --jp-shadow-ambient-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.12\n  );\n  --jp-elevation-z0: none;\n  --jp-elevation-z1: 0px 2px 1px -1px var(--jp-shadow-umbra-color),\n    0px 1px 1px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 3px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z2: 0px 3px 1px -2px var(--jp-shadow-umbra-color),\n    0px 2px 2px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 5px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z4: 0px 2px 4px -1px var(--jp-shadow-umbra-color),\n    0px 4px 5px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 10px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z6: 0px 3px 5px -1px var(--jp-shadow-umbra-color),\n    0px 6px 10px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 18px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z8: 0px 5px 5px -3px var(--jp-shadow-umbra-color),\n    0px 8px 10px 1px var(--jp-shadow-penumbra-color),\n    0px 3px 14px 2px var(--jp-shadow-ambient-color);\n  --jp-elevation-z12: 0px 7px 8px -4px var(--jp-shadow-umbra-color),\n    0px 12px 17px 2px var(--jp-shadow-penumbra-color),\n    0px 5px 22px 4px var(--jp-shadow-ambient-color);\n  --jp-elevation-z16: 0px 8px 10px -5px var(--jp-shadow-umbra-color),\n    0px 16px 24px 2px var(--jp-shadow-penumbra-color),\n    0px 6px 30px 5px var(--jp-shadow-ambient-color);\n  --jp-elevation-z20: 0px 10px 13px -6px var(--jp-shadow-umbra-color),\n    0px 20px 31px 3px var(--jp-shadow-penumbra-color),\n    0px 8px 38px 7px var(--jp-shadow-ambient-color);\n  --jp-elevation-z24: 0px 11px 15px -7px var(--jp-shadow-umbra-color),\n    0px 24px 38px 3px var(--jp-shadow-penumbra-color),\n    0px 9px 46px 8px var(--jp-shadow-ambient-color);\n\n  /* Borders\n   *\n   * The following variables, specify the visual styling of borders in JupyterLab.\n   */\n\n  --jp-border-width: 1px;\n  --jp-border-color0: var(--md-grey-400);\n  --jp-border-color1: var(--md-grey-400);\n  --jp-border-color2: var(--md-grey-300);\n  --jp-border-color3: var(--md-grey-200);\n  --jp-border-radius: 2px;\n\n  /* UI Fonts\n   *\n   * The UI font CSS variables are used for the typography all of the JupyterLab\n   * user interface elements that are not directly user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-ui-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-ui-font-scale-factor: 1.2;\n  --jp-ui-font-size0: 0.83333em;\n  --jp-ui-font-size1: 13px; /* Base font size */\n  --jp-ui-font-size2: 1.2em;\n  --jp-ui-font-size3: 1.44em;\n\n  --jp-ui-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica,\n    Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';\n\n  /*\n   * Use these font colors against the corresponding main layout colors.\n   * In a light theme, these go from dark to light.\n   */\n\n  /* Defaults use Material Design specification */\n  --jp-ui-font-color0: rgba(0, 0, 0, 1);\n  --jp-ui-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-ui-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-ui-font-color3: rgba(0, 0, 0, 0.38);\n\n  /*\n   * Use these against the brand/accent/warn/error colors.\n   * These will typically go from light to darker, in both a dark and light theme.\n   */\n\n  --jp-ui-inverse-font-color0: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color1: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color2: rgba(255, 255, 255, 0.7);\n  --jp-ui-inverse-font-color3: rgba(255, 255, 255, 0.5);\n\n  /* Content Fonts\n   *\n   * Content font variables are used for typography of user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-content-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-content-line-height: 1.6;\n  --jp-content-font-scale-factor: 1.2;\n  --jp-content-font-size0: 0.83333em;\n  --jp-content-font-size1: 14px; /* Base font size */\n  --jp-content-font-size2: 1.2em;\n  --jp-content-font-size3: 1.44em;\n  --jp-content-font-size4: 1.728em;\n  --jp-content-font-size5: 2.0736em;\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-content-presentation-font-size1: 17px;\n\n  --jp-content-heading-line-height: 1;\n  --jp-content-heading-margin-top: 1.2em;\n  --jp-content-heading-margin-bottom: 0.8em;\n  --jp-content-heading-font-weight: 500;\n\n  /* Defaults use Material Design specification */\n  --jp-content-font-color0: rgba(0, 0, 0, 1);\n  --jp-content-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-content-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-content-font-color3: rgba(0, 0, 0, 0.38);\n\n  --jp-content-link-color: var(--md-blue-700);\n\n  --jp-content-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',\n    Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',\n    'Segoe UI Symbol';\n\n  /*\n   * Code Fonts\n   *\n   * Code font variables are used for typography of code and other monospaces content.\n   */\n\n  --jp-code-font-size: 13px;\n  --jp-code-line-height: 1.3077; /* 17px for 13px base */\n  --jp-code-padding: 5px; /* 5px for 13px base, codemirror highlighting needs integer px value */\n  --jp-code-font-family-default: Menlo, Consolas, 'DejaVu Sans Mono', monospace;\n  --jp-code-font-family: var(--jp-code-font-family-default);\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-code-presentation-font-size: 16px;\n\n  /* may need to tweak cursor width if you change font size */\n  --jp-code-cursor-width0: 1.4px;\n  --jp-code-cursor-width1: 2px;\n  --jp-code-cursor-width2: 4px;\n\n  /* Layout\n   *\n   * The following are the main layout colors use in JupyterLab. In a light\n   * theme these would go from light to dark.\n   */\n\n  --jp-layout-color0: white;\n  --jp-layout-color1: white;\n  --jp-layout-color2: var(--md-grey-200);\n  --jp-layout-color3: var(--md-grey-400);\n  --jp-layout-color4: var(--md-grey-600);\n\n  /* Inverse Layout\n   *\n   * The following are the inverse layout colors use in JupyterLab. In a light\n   * theme these would go from dark to light.\n   */\n\n  --jp-inverse-layout-color0: #111111;\n  --jp-inverse-layout-color1: var(--md-grey-900);\n  --jp-inverse-layout-color2: var(--md-grey-800);\n  --jp-inverse-layout-color3: var(--md-grey-700);\n  --jp-inverse-layout-color4: var(--md-grey-600);\n\n  /* Brand/accent */\n\n  --jp-brand-color0: var(--md-blue-900);\n  --jp-brand-color1: var(--md-blue-700);\n  --jp-brand-color2: var(--md-blue-300);\n  --jp-brand-color3: var(--md-blue-100);\n  --jp-brand-color4: var(--md-blue-50);\n\n  --jp-accent-color0: var(--md-green-900);\n  --jp-accent-color1: var(--md-green-700);\n  --jp-accent-color2: var(--md-green-300);\n  --jp-accent-color3: var(--md-green-100);\n\n  /* State colors (warn, error, success, info) */\n\n  --jp-warn-color0: var(--md-orange-900);\n  --jp-warn-color1: var(--md-orange-700);\n  --jp-warn-color2: var(--md-orange-300);\n  --jp-warn-color3: var(--md-orange-100);\n\n  --jp-error-color0: var(--md-red-900);\n  --jp-error-color1: var(--md-red-700);\n  --jp-error-color2: var(--md-red-300);\n  --jp-error-color3: var(--md-red-100);\n\n  --jp-success-color0: var(--md-green-900);\n  --jp-success-color1: var(--md-green-700);\n  --jp-success-color2: var(--md-green-300);\n  --jp-success-color3: var(--md-green-100);\n\n  --jp-info-color0: var(--md-cyan-900);\n  --jp-info-color1: var(--md-cyan-700);\n  --jp-info-color2: var(--md-cyan-300);\n  --jp-info-color3: var(--md-cyan-100);\n\n  /* Cell specific styles */\n\n  --jp-cell-padding: 5px;\n\n  --jp-cell-collapser-width: 8px;\n  --jp-cell-collapser-min-height: 20px;\n  --jp-cell-collapser-not-active-hover-opacity: 0.6;\n\n  --jp-cell-editor-background: var(--md-grey-100);\n  --jp-cell-editor-border-color: var(--md-grey-300);\n  --jp-cell-editor-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-cell-editor-active-background: var(--jp-layout-color0);\n  --jp-cell-editor-active-border-color: var(--jp-brand-color1);\n\n  --jp-cell-prompt-width: 64px;\n  --jp-cell-prompt-font-family: var(--jp-code-font-family-default);\n  --jp-cell-prompt-letter-spacing: 0px;\n  --jp-cell-prompt-opacity: 1;\n  --jp-cell-prompt-not-active-opacity: 0.5;\n  --jp-cell-prompt-not-active-font-color: var(--md-grey-700);\n  /* A custom blend of MD grey and blue 600\n   * See https://meyerweb.com/eric/tools/color-blend/#546E7A:1E88E5:5:hex */\n  --jp-cell-inprompt-font-color: #307fc1;\n  /* A custom blend of MD grey and orange 600\n   * https://meyerweb.com/eric/tools/color-blend/#546E7A:F4511E:5:hex */\n  --jp-cell-outprompt-font-color: #bf5b3d;\n\n  /* Notebook specific styles */\n\n  --jp-notebook-padding: 10px;\n  --jp-notebook-select-background: var(--jp-layout-color1);\n  --jp-notebook-multiselected-color: var(--md-blue-50);\n\n  /* The scroll padding is calculated to fill enough space at the bottom of the\n  notebook to show one single-line cell (with appropriate padding) at the top\n  when the notebook is scrolled all the way to the bottom. We also subtract one\n  pixel so that no scrollbar appears if we have just one single-line cell in the\n  notebook. This padding is to enable a 'scroll past end' feature in a notebook.\n  */\n  --jp-notebook-scroll-padding: calc(\n    100% - var(--jp-code-font-size) * var(--jp-code-line-height) -\n      var(--jp-code-padding) - var(--jp-cell-padding) - 1px\n  );\n\n  /* Rendermime styles */\n\n  --jp-rendermime-error-background: #fdd;\n  --jp-rendermime-table-row-background: var(--md-grey-100);\n  --jp-rendermime-table-row-hover-background: var(--md-light-blue-50);\n\n  /* Dialog specific styles */\n\n  --jp-dialog-background: rgba(0, 0, 0, 0.25);\n\n  /* Console specific styles */\n\n  --jp-console-padding: 10px;\n\n  /* Toolbar specific styles */\n\n  --jp-toolbar-border-color: var(--jp-border-color1);\n  --jp-toolbar-micro-height: 8px;\n  --jp-toolbar-background: var(--jp-layout-color1);\n  --jp-toolbar-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.24);\n  --jp-toolbar-header-margin: 4px 4px 0px 4px;\n  --jp-toolbar-active-background: var(--md-grey-300);\n\n  /* Statusbar specific styles */\n\n  --jp-statusbar-height: 24px;\n\n  /* Input field styles */\n\n  --jp-input-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-input-active-background: var(--jp-layout-color1);\n  --jp-input-hover-background: var(--jp-layout-color1);\n  --jp-input-background: var(--md-grey-100);\n  --jp-input-border-color: var(--jp-border-color1);\n  --jp-input-active-border-color: var(--jp-brand-color1);\n  --jp-input-active-box-shadow-color: rgba(19, 124, 189, 0.3);\n\n  /* General editor styles */\n\n  --jp-editor-selected-background: #d9d9d9;\n  --jp-editor-selected-focused-background: #d7d4f0;\n  --jp-editor-cursor-color: var(--jp-ui-font-color0);\n\n  /* Code mirror specific styles */\n\n  --jp-mirror-editor-keyword-color: #008000;\n  --jp-mirror-editor-atom-color: #88f;\n  --jp-mirror-editor-number-color: #080;\n  --jp-mirror-editor-def-color: #00f;\n  --jp-mirror-editor-variable-color: var(--md-grey-900);\n  --jp-mirror-editor-variable-2-color: #05a;\n  --jp-mirror-editor-variable-3-color: #085;\n  --jp-mirror-editor-punctuation-color: #05a;\n  --jp-mirror-editor-property-color: #05a;\n  --jp-mirror-editor-operator-color: #aa22ff;\n  --jp-mirror-editor-comment-color: #408080;\n  --jp-mirror-editor-string-color: #ba2121;\n  --jp-mirror-editor-string-2-color: #708;\n  --jp-mirror-editor-meta-color: #aa22ff;\n  --jp-mirror-editor-qualifier-color: #555;\n  --jp-mirror-editor-builtin-color: #008000;\n  --jp-mirror-editor-bracket-color: #997;\n  --jp-mirror-editor-tag-color: #170;\n  --jp-mirror-editor-attribute-color: #00c;\n  --jp-mirror-editor-header-color: blue;\n  --jp-mirror-editor-quote-color: #090;\n  --jp-mirror-editor-link-color: #00c;\n  --jp-mirror-editor-error-color: #f00;\n  --jp-mirror-editor-hr-color: #999;\n\n  /* Vega extension styles */\n\n  --jp-vega-background: white;\n\n  /* Sidebar-related styles */\n\n  --jp-sidebar-min-width: 250px;\n\n  /* Search-related styles */\n\n  --jp-search-toggle-off-opacity: 0.5;\n  --jp-search-toggle-hover-opacity: 0.8;\n  --jp-search-toggle-on-opacity: 1;\n  --jp-search-selected-match-background-color: rgb(245, 200, 0);\n  --jp-search-selected-match-color: black;\n  --jp-search-unselected-match-background-color: var(\n    --jp-inverse-layout-color0\n  );\n  --jp-search-unselected-match-color: var(--jp-ui-inverse-font-color0);\n\n  /* Icon colors that work well with light or dark backgrounds */\n  --jp-icon-contrast-color0: var(--md-purple-600);\n  --jp-icon-contrast-color1: var(--md-green-600);\n  --jp-icon-contrast-color2: var(--md-pink-600);\n  --jp-icon-contrast-color3: var(--md-blue-600);\n}\n</style>\n\n<style type=\"text/css\">\n/* Force rendering true colors when outputing to pdf */\n* {\n  -webkit-print-color-adjust: exact;\n}\n\n/* Misc */\na.anchor-link {\n  display: none;\n}\n\n/* Input area styling */\n.jp-InputArea {\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  overflow: hidden;\n}\n\n.CodeMirror.cm-s-jupyter .highlight pre {\n/* weird, but --jp-code-padding defined to be 5px but 4px horizontal padding is hardcoded for pre.CodeMirror-line */\n  padding: var(--jp-code-padding) 4px;\n  margin: 0;\n\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit;\n  color: inherit;\n\n}\n\n.jp-OutputArea-output pre {\n  line-height: inherit;\n  font-family: inherit;\n}\n\n.jp-RenderedText pre {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-code-font-size);\n}\n\n/* Using table instead of flexbox so that we can use break-inside property */\n/* CSS rules under this comment should not be required anymore after we move to the JupyterLab 4.0 CSS */\n\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  min-width: calc(\n    var(--jp-cell-prompt-width) - var(--jp-private-cell-scrolling-output-offset)\n  );\n}\n\n.jp-OutputArea-child {\n  display: table;\n  width: 100%;\n}\n\n.jp-OutputPrompt {\n  display: table-cell;\n  vertical-align: top;\n  min-width: var(--jp-cell-prompt-width);\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  display: table-row;\n}\n\n.jp-OutputArea-output {\n  display: table-cell;\n  width: 100%;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  display: table-row;\n}\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  width: 100%;\n}\n\n/* Hiding the collapser by default */\n.jp-Collapser {\n  display: none;\n}\n\n@page {\n    margin: 0.5in; /* Margin for each printed piece of paper */\n}\n\n@media print {\n  .jp-Cell-inputWrapper,\n  .jp-Cell-outputWrapper {\n    display: block;\n  }\n\n  .jp-OutputArea-child {\n    break-inside: avoid-page;\n  }\n}\n</style>\n\n<!-- Load mathjax -->\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/latest.js?config=TeX-AMS_CHTML-full,Safe\"> </script>\n    <!-- MathJax configuration -->\n    <script type=\"text/x-mathjax-config\">\n    init_mathjax = function() {\n        if (window.MathJax) {\n        // MathJax loaded\n            MathJax.Hub.Config({\n                TeX: {\n                    equationNumbers: {\n                    autoNumber: \"AMS\",\n                    useLabelIds: true\n                    }\n                },\n                tex2jax: {\n                    inlineMath: [ ['$','$'], [\"\\\\(\",\"\\\\)\"] ],\n                    displayMath: [ ['$$','$$'], [\"\\\\[\",\"\\\\]\"] ],\n                    processEscapes: true,\n                    processEnvironments: true\n                },\n                displayAlign: 'center',\n                CommonHTML: {\n                    linebreaks: {\n                    automatic: true\n                    }\n                }\n            });\n\n            MathJax.Hub.Queue([\"Typeset\", MathJax.Hub]);\n        }\n    }\n    init_mathjax();\n    </script>\n    <!-- End of mathjax configuration --></head>\n<body class=\"jp-Notebook\" data-jp-theme-light=\"true\" data-jp-theme-name=\"JupyterLab Light\">\n<div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[1]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">TypeFamilies</span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">GeneralizedNewtypeDeriving</span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">DeriveTraversable</span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">TypeSynonymInstances</span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">FlexibleInstances</span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">ApplicativeDo</span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">LambdaCase</span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">TupleSections</span>\n\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Graphics.Gloss.Interface.IO.Simulate</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">simulateIO</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Display</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">FullScreen</span><span class=\"p\">))</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Graphics.Gloss</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">white</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Picture</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Text</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Polygon</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Color</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Circle</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Pictures</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"nf\">simulate</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Rectangle</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Rectangle</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"nf\">black</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"nf\">red</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"nf\">translate</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Class</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">MonadDistribution</span><span class=\"p\">(</span><span class=\"nf\">bernoulli</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"nf\">uniformD</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"nf\">random</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"nf\">normal</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"nf\">factor</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">MonadMeasure</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Sampler.Strict</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">sampler</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"nf\">sampleIOfixed</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Traced</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">mh</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"nf\">mhStep</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Weighted</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Functor.Compose</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Compose</span><span class=\"p\">(</span><span class=\"o\">..</span><span class=\"p\">))</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Data.Vector</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">V</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Bool</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">bool</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Distributive</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Distributive</span><span class=\"p\">(</span><span class=\"o\">..</span><span class=\"p\">))</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Functor.Rep</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Representable</span><span class=\"p\">(</span><span class=\"o\">..</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"nf\">distributeRep</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"nf\">ifoldMapRep</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Functor.Identity</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Identity</span><span class=\"p\">(</span><span class=\"o\">..</span><span class=\"p\">))</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Arrow</span><span class=\"w\"> </span><span class=\"p\">((</span><span class=\"o\">***</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"kt\">Arrow</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">first</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"nf\">second</span><span class=\"p\">))</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Comonad.Representable.Store</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Store</span><span class=\"p\">(</span><span class=\"o\">..</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"kt\">StoreT</span><span class=\"p\">(</span><span class=\"o\">..</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"nf\">store</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"nf\">experiment</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"nf\">runStore</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Comonad</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Comonad</span><span class=\"p\">(</span><span class=\"o\">..</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">=&gt;&gt;</span><span class=\"p\">))</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Graphics.Gloss.Data.Color</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Color</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">filterM</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Debug.Trace</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">trace</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Monoid</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Sum</span><span class=\"p\">(</span><span class=\"kt\">Sum</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"nf\">getSum</span><span class=\"p\">))</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Inference.SMC</span><span class=\"w\"> </span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Population</span><span class=\"w\"> </span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Pipes.Prelude</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">P</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Pipes</span><span class=\"w\"> </span><span class=\"p\">((</span><span class=\"o\">&gt;-&gt;</span><span class=\"p\">))</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Graphics.Gloss.Interface.IO.Animate</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">animateIO</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.IORef</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">newIORef</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"nf\">writeIORef</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">GHC.IORef</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">readIORef</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Pipes</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">P</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Concurrent</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">forkIO</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"nf\">threadDelay</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.IO.Class</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Sampler.Strict</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>The Ising model is a famous model in statistical mechanics. See the wonderful <a href=\"https://jaan.io/how-does-physics-connect-machine-learning/\">https://jaan.io/how-does-physics-connect-machine-learning/</a>. Basically, it's a big grid of squares, each of which can be in one of two states. We can assign an &quot;interaction energy&quot; between adjacent states, which says how much they like to be in similar or different states. A configuration of the whole grid (i.e. choosing a setting for each square) determines a global energy, and in turn, a distribution (the Boltzmann distribution) over grids.</p>\n<p>The code borrows heavily from the excellent <a href=\"https://chrispenner.ca/posts/conways-game-of-life\">https://chrispenner.ca/posts/conways-game-of-life</a> which uses a representable store comonad to perform efficient local updates to a grid. The approach should extend easily to similar models with different topologies.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[2]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">------</span>\n<span class=\"c1\">-- Define a board as a length 20 array of length 20 arrays</span>\n<span class=\"c1\">-- Define a grid as a board and a pointer to a square</span>\n<span class=\"c1\">------</span>\n\n<span class=\"c1\">-- | Grid a ~ ([[a]], (Int, Int))</span>\n<span class=\"kr\">type</span><span class=\"w\"> </span><span class=\"kt\">Grid</span><span class=\"w\"> </span><span class=\"n\">a</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">Store</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Compose</span><span class=\"w\"> </span><span class=\"kt\">VBounded</span><span class=\"w\"> </span><span class=\"kt\">VBounded</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">a</span>\n\n<span class=\"kr\">type</span><span class=\"w\"> </span><span class=\"kt\">Table</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">Compose</span><span class=\"w\"> </span><span class=\"kt\">VBounded</span><span class=\"w\"> </span><span class=\"kt\">VBounded</span>\n\n<span class=\"c1\">-- | VBounded a ~ [a]</span>\n<span class=\"kr\">newtype</span><span class=\"w\"> </span><span class=\"kt\">VBounded</span><span class=\"w\"> </span><span class=\"n\">a</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">VBounded</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"n\">a</span><span class=\"p\">)</span>\n<span class=\"w\">  </span><span class=\"kr\">deriving</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Eq</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Show</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Functor</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Foldable</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Traversable</span><span class=\"p\">)</span>\n\n<span class=\"kr\">instance</span><span class=\"w\"> </span><span class=\"kt\">Distributive</span><span class=\"w\"> </span><span class=\"kt\">VBounded</span><span class=\"w\"> </span><span class=\"kr\">where</span>\n<span class=\"w\">  </span><span class=\"n\">distribute</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">distributeRep</span>\n\n<span class=\"c1\">-- | size of the Ising grid</span>\n<span class=\"nf\">gridSize</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Int</span>\n<span class=\"nf\">gridSize</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">40</span>\n\n<span class=\"c1\">-- | you can view a grid as a function from indices to square values</span>\n<span class=\"c1\">-- or as an array of square values.</span>\n<span class=\"c1\">-- These two structures are isomorphic, as witnessed by: </span>\n<span class=\"c1\">-- index . tabulate === id === tabulate . index</span>\n<span class=\"kr\">instance</span><span class=\"w\"> </span><span class=\"kt\">Representable</span><span class=\"w\"> </span><span class=\"kt\">VBounded</span><span class=\"w\"> </span><span class=\"kr\">where</span>\n<span class=\"w\">  </span><span class=\"kr\">type</span><span class=\"w\"> </span><span class=\"kt\">Rep</span><span class=\"w\"> </span><span class=\"kt\">VBounded</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">Int</span>\n<span class=\"w\">  </span><span class=\"n\">index</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">VBounded</span><span class=\"w\"> </span><span class=\"n\">v</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">i</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">v</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.!</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">i</span><span class=\"w\"> </span><span class=\"p\">`</span><span class=\"n\">mod</span><span class=\"p\">`</span><span class=\"w\"> </span><span class=\"n\">gridSize</span><span class=\"p\">)</span>\n<span class=\"w\">  </span><span class=\"n\">tabulate</span><span class=\"w\"> </span><span class=\"n\">desc</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">VBounded</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"n\">generate</span><span class=\"w\"> </span><span class=\"n\">gridSize</span><span class=\"w\"> </span><span class=\"n\">desc</span>\n\n<span class=\"c1\">-- | make a grid</span>\n<span class=\"nf\">mkGrid</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"p\">[(</span><span class=\"kt\">Int</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Int</span><span class=\"p\">)]</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kt\">Grid</span><span class=\"w\"> </span><span class=\"kt\">Bool</span>\n<span class=\"nf\">mkGrid</span><span class=\"w\"> </span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">store</span><span class=\"w\"> </span><span class=\"p\">(`</span><span class=\"n\">elem</span><span class=\"p\">`</span><span class=\"w\"> </span><span class=\"n\">xs</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">)</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Approach-1:-calculate-the-energy-and-perform-Markov-Chain-Monte-Carlo\">Approach 1: calculate the energy and perform Markov Chain Monte Carlo<a class=\"anchor-link\" href=\"#Approach-1:-calculate-the-energy-and-perform-Markov-Chain-Monte-Carlo\">&#182;</a></h1><p>There are two ways we can simulate an Ising model. The first is to define a distribution over grids directly, by drawing from a uniform prior, and adding a factor statement for the energy. One can then sample from this distribution using MCMC, and indeed, the MCMC chain will look like a time-evolving Ising model. Which is very cool!</p>\n<p>Let's do that first:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[3]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- | calculate the energy of a particular square in the grid </span>\n<span class=\"c1\">-- (which depends on the rest of the grid, in particular its neighbours)</span>\n<span class=\"nf\">interactionEnergy</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Grid</span><span class=\"w\"> </span><span class=\"kt\">Bool</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kt\">Int</span>\n<span class=\"nf\">interactionEnergy</span><span class=\"w\"> </span><span class=\"n\">g</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">numNeighboursSame</span>\n<span class=\"w\">  </span><span class=\"kr\">where</span>\n<span class=\"w\">    </span><span class=\"n\">numNeighboursSame</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">length</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">filter</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">==</span><span class=\"n\">color</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">neighbours</span><span class=\"p\">)</span>\n<span class=\"w\">    </span><span class=\"n\">color</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">extract</span><span class=\"w\"> </span><span class=\"n\">g</span>\n<span class=\"w\">    </span><span class=\"n\">neighbours</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">experiment</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"n\">s</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">addCoords</span><span class=\"w\"> </span><span class=\"n\">s</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">neighbourCoords</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">g</span>\n<span class=\"w\">    </span><span class=\"n\">addCoords</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x&#39;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y&#39;</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"o\">+</span><span class=\"w\"> </span><span class=\"n\">x&#39;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"o\">+</span><span class=\"w\"> </span><span class=\"n\">y&#39;</span><span class=\"p\">)</span>\n<span class=\"w\">    </span><span class=\"n\">neighbourCoords</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">[(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">|</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"o\">-</span><span class=\"mi\">1</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">],</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"o\">-</span><span class=\"mi\">1</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">],</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">/=</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">)]</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[4]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- | The prior is uniform over all configurations of the grid</span>\n<span class=\"c1\">-- We score states based on their energy</span>\n<span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadMeasure</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Grid</span><span class=\"w\"> </span><span class=\"kt\">Bool</span><span class=\"p\">)</span>\n<span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span>\n<span class=\"w\">    </span><span class=\"kr\">let</span><span class=\"w\"> </span><span class=\"n\">allCoords</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">[(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">|</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"mi\">0</span><span class=\"o\">..</span><span class=\"n\">gridSize</span><span class=\"o\">-</span><span class=\"mi\">1</span><span class=\"p\">],</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"mi\">0</span><span class=\"o\">..</span><span class=\"n\">gridSize</span><span class=\"o\">-</span><span class=\"mi\">1</span><span class=\"p\">]]</span>\n<span class=\"w\">    </span><span class=\"n\">coords</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">filterM</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">const</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">bernoulli</span><span class=\"w\"> </span><span class=\"mf\">0.5</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">allCoords</span>\n<span class=\"w\">    </span><span class=\"kr\">let</span><span class=\"w\"> </span><span class=\"n\">grid</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">mkGrid</span><span class=\"w\"> </span><span class=\"n\">coords</span>\n<span class=\"w\">        </span><span class=\"kt\">StoreT</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Identity</span><span class=\"w\"> </span><span class=\"n\">energy</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"kr\">_</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">extend</span><span class=\"w\"> </span><span class=\"n\">interactionEnergy</span><span class=\"w\"> </span><span class=\"n\">grid</span>\n<span class=\"w\">        </span><span class=\"n\">score</span><span class=\"w\">  </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">getSum</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">foldMap</span><span class=\"w\"> </span><span class=\"kt\">Sum</span><span class=\"w\"> </span><span class=\"n\">energy</span>\n<span class=\"w\">    </span><span class=\"n\">factor</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">exp</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">fromIntegral</span><span class=\"w\"> </span><span class=\"n\">score</span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"n\">grid</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[5]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">---</span>\n<span class=\"c1\">-- render a grid into ascii using an indexed fold</span>\n<span class=\"c1\">---</span>\n\n<span class=\"nf\">display</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Grid</span><span class=\"w\"> </span><span class=\"kt\">Bool</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kt\">String</span>\n<span class=\"nf\">display</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">StoreT</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Identity</span><span class=\"w\"> </span><span class=\"n\">grid</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"kr\">_</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">ifoldMapRep</span><span class=\"w\"> </span><span class=\"n\">match</span><span class=\"w\"> </span><span class=\"n\">grid</span><span class=\"w\"> </span><span class=\"kr\">where</span>\n<span class=\"w\">    </span><span class=\"n\">match</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kr\">_</span><span class=\"p\">,</span><span class=\"n\">n</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">b</span><span class=\"w\"> </span>\n<span class=\"w\">        </span><span class=\"o\">|</span><span class=\"w\"> </span><span class=\"n\">n</span><span class=\"o\">==</span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"s\">&quot;</span><span class=\"se\">\\n</span><span class=\"s\">|&quot;</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">showB</span><span class=\"w\"> </span><span class=\"n\">b</span>\n<span class=\"w\">        </span><span class=\"o\">|</span><span class=\"w\"> </span><span class=\"n\">n</span><span class=\"o\">==</span><span class=\"n\">gridSize</span><span class=\"o\">-</span><span class=\"mi\">1</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"s\">&quot;|&quot;</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">showB</span><span class=\"w\"> </span><span class=\"n\">b</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"s\">&quot;|&quot;</span>\n<span class=\"w\">        </span><span class=\"o\">|</span><span class=\"w\"> </span><span class=\"n\">otherwise</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"s\">&quot;|&quot;</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">showB</span><span class=\"w\"> </span><span class=\"n\">b</span>\n<span class=\"w\">    </span><span class=\"n\">showB</span><span class=\"w\"> </span><span class=\"kt\">True</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"s\">&quot;X&quot;</span>\n<span class=\"w\">    </span><span class=\"n\">showB</span><span class=\"w\"> </span><span class=\"kt\">False</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"s\">&quot;O&quot;</span>\n<span class=\"w\">    </span>\n<span class=\"nf\">samples</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span>\n<span class=\"w\">  </span><span class=\"n\">s</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampler</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">unweighted</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">mh</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"w\"> </span><span class=\"n\">model</span>\n<span class=\"w\">  </span><span class=\"n\">mapM_</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">putStrLn</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"s\">&quot;</span><span class=\"se\">\\n\\n</span><span class=\"s\">&quot;</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">display</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">reverse</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">take</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"w\"> </span><span class=\"n\">s</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[6]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">samples</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n<div class=\"jp-OutputArea-child\">\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>\n\n\n|X|O|O|X|X|O|X|X|X|O|X|O|X|O|O|X|O|O|X|X|X|O|O|X|X|O|O|X|O|O|X|O|O|X|X|X|X|O|O|X|\n|X|O|X|O|X|O|X|O|X|O|O|X|O|O|X|X|X|X|X|O|X|O|X|X|O|X|X|X|X|X|X|O|X|O|X|O|X|X|O|X|\n|O|O|O|X|X|X|X|O|X|O|O|X|X|O|O|X|O|X|X|X|O|X|X|O|X|O|O|O|O|O|O|X|O|O|X|O|O|X|X|O|\n|X|X|X|X|X|O|O|O|O|O|O|X|O|X|X|X|X|X|O|O|O|O|X|X|X|X|X|O|X|O|X|O|X|X|X|X|X|X|O|O|\n|X|O|O|X|X|O|X|O|O|O|O|O|O|O|X|X|X|O|O|X|O|X|O|O|O|X|O|X|X|O|X|O|X|O|O|X|O|O|X|O|\n|O|O|O|O|X|O|O|X|X|O|X|X|X|X|O|O|X|O|O|X|X|O|O|X|O|X|X|O|X|X|X|O|X|X|X|X|O|O|O|O|\n|O|O|O|O|X|O|X|O|X|O|O|O|X|O|O|O|X|O|X|O|O|X|X|X|O|X|O|O|X|O|O|O|O|X|X|X|X|X|O|X|\n|X|O|O|O|X|X|X|X|X|X|O|X|X|X|X|O|O|O|X|X|X|X|O|O|O|X|X|O|O|X|O|X|X|O|X|O|O|O|X|O|\n|O|X|O|O|X|X|O|X|O|X|O|O|X|X|O|X|X|X|O|X|X|X|O|X|O|X|O|O|X|X|O|O|O|O|O|O|X|O|X|O|\n|O|X|O|X|O|O|O|O|O|X|O|X|O|O|O|O|O|O|X|O|X|X|X|O|O|O|O|O|X|X|O|O|O|O|X|O|X|X|O|O|\n|O|O|O|X|O|X|O|O|O|O|X|X|X|X|X|O|X|X|X|X|X|X|X|O|X|O|O|O|X|X|X|O|X|O|X|O|O|X|X|X|\n|X|O|X|O|O|X|O|O|O|X|X|X|X|X|X|O|X|X|O|O|X|O|O|X|X|X|X|O|O|O|O|X|X|X|O|X|X|X|X|O|\n|O|X|X|O|O|X|X|X|O|X|O|O|O|O|O|X|O|O|X|X|O|O|O|X|O|O|X|X|O|O|X|O|O|X|X|O|X|X|X|X|\n|O|O|X|O|X|O|X|O|X|X|X|O|O|X|O|O|X|X|X|X|X|X|O|X|X|O|X|O|X|O|X|O|O|X|O|O|O|X|X|X|\n|O|X|X|X|O|O|O|O|O|X|O|X|X|O|X|O|X|O|O|X|O|X|X|O|O|X|O|X|X|O|O|X|O|X|O|O|O|X|X|O|\n|O|O|X|O|O|X|O|O|O|X|O|X|X|O|X|O|X|O|X|X|X|X|O|X|X|X|O|X|X|X|X|X|X|X|X|O|O|O|X|X|\n|O|O|X|X|O|O|O|X|O|O|X|O|O|X|X|X|X|O|X|X|O|O|X|O|O|O|X|X|X|X|X|O|O|O|O|O|O|O|X|X|\n|X|O|O|X|O|O|X|X|O|O|X|X|X|X|X|X|X|O|O|O|O|O|X|X|O|O|O|O|O|O|O|O|X|X|O|X|O|X|O|X|\n|O|O|O|O|O|O|O|X|X|O|O|X|X|X|X|X|O|X|O|O|X|X|O|O|O|O|X|O|X|O|X|O|X|O|X|O|X|O|O|O|\n|X|X|X|O|X|O|X|X|O|O|X|O|O|O|X|O|O|O|X|X|O|X|X|O|O|O|X|O|O|O|X|X|O|O|X|O|O|O|O|O|\n|X|X|O|O|O|X|O|O|O|X|O|O|X|X|O|O|X|X|O|X|X|X|O|X|O|O|X|X|O|O|X|X|X|O|X|X|X|X|X|O|\n|X|O|X|X|O|X|O|X|O|O|O|X|X|O|O|X|O|O|X|O|O|O|O|O|X|X|X|X|O|X|X|O|O|X|O|O|O|X|X|O|\n|X|O|X|X|X|X|O|O|X|X|O|X|O|X|O|X|X|X|O|X|X|O|O|X|O|X|O|X|X|X|O|X|X|X|X|O|X|O|O|O|\n|X|X|X|X|X|O|X|X|X|X|X|O|X|O|O|X|X|X|X|O|X|O|O|O|O|X|X|X|O|X|O|O|O|O|O|O|X|X|X|O|\n|O|X|O|X|O|O|X|X|O|O|O|X|O|X|O|X|O|O|O|X|O|X|O|X|X|X|O|O|X|O|O|O|O|O|O|O|O|O|O|X|\n|X|O|X|O|X|X|X|X|O|X|O|O|X|O|O|X|X|X|X|X|X|O|O|O|X|O|O|X|O|X|X|O|X|X|O|O|O|O|O|O|\n|O|O|X|X|X|X|O|O|O|O|O|O|O|O|X|X|O|X|X|O|X|X|X|X|X|X|X|O|X|X|O|O|X|O|X|X|X|X|X|X|\n|X|O|O|X|X|X|X|X|X|O|X|O|O|O|O|X|O|O|O|O|X|X|O|O|O|O|O|X|X|O|X|X|O|O|X|X|X|X|O|O|\n|O|O|X|X|O|O|X|O|O|O|O|O|X|X|X|O|O|O|O|X|O|X|X|X|O|O|X|O|X|X|X|O|X|X|O|O|O|X|O|O|\n|X|O|O|X|O|O|O|O|X|X|X|O|X|X|X|O|X|O|O|X|O|X|O|X|O|O|X|X|O|O|O|X|O|X|O|X|O|O|O|X|\n|O|X|O|X|X|X|O|X|X|X|O|O|O|X|X|O|X|O|X|O|O|X|X|X|O|X|O|O|O|X|X|X|O|X|O|O|O|X|O|X|\n|O|O|O|X|O|O|O|O|O|O|X|O|O|X|X|X|O|O|O|O|O|O|X|X|O|X|X|X|X|O|X|X|O|O|O|X|O|O|O|O|\n|X|O|O|O|X|X|X|X|O|X|X|O|O|O|X|X|X|X|O|O|O|X|X|X|O|X|O|O|X|X|X|O|X|X|X|X|X|O|O|O|\n|X|O|X|O|X|O|X|O|O|X|O|O|X|X|O|X|X|O|X|X|O|X|X|O|O|O|O|X|O|X|O|O|X|O|O|O|X|O|O|O|\n|O|X|O|O|O|O|O|O|X|X|O|X|X|X|O|X|X|X|X|X|X|O|O|O|X|X|X|X|O|O|O|X|O|O|O|O|O|O|X|O|\n|O|O|X|X|X|O|O|O|X|O|O|X|X|X|O|X|O|O|O|O|X|X|X|X|O|O|O|X|O|O|O|O|X|O|X|O|O|X|O|O|\n|O|O|X|X|O|X|O|X|O|X|O|X|O|X|O|X|O|X|O|X|O|O|O|O|X|X|X|O|X|O|X|O|O|X|X|O|O|O|X|X|\n|X|X|X|O|O|X|X|X|O|O|O|O|X|X|X|X|O|X|X|O|O|O|X|O|O|X|X|X|X|X|X|X|O|O|O|X|O|O|O|O|\n|X|O|O|X|X|X|O|O|O|O|O|X|X|X|X|X|X|O|O|X|O|X|X|X|X|O|O|X|O|O|X|X|X|X|X|O|X|X|O|O|\n|O|O|X|O|O|O|X|X|O|X|O|X|O|X|X|X|X|O|X|X|O|X|O|X|X|X|O|X|O|O|O|O|X|X|X|X|X|O|O|X|\n\n\n\n|X|O|O|X|X|O|X|X|X|O|X|O|X|O|O|X|O|O|X|X|X|O|O|X|X|O|O|X|O|O|X|O|O|X|X|X|X|O|O|X|\n|X|O|X|O|X|O|X|O|X|O|O|X|O|O|X|X|X|X|X|O|X|O|X|X|O|X|X|X|X|X|X|O|X|O|X|O|X|X|O|X|\n|O|O|O|X|X|X|X|X|X|O|O|X|X|O|O|X|O|X|X|X|O|X|X|O|X|O|O|O|O|O|O|X|O|O|X|O|O|X|X|O|\n|X|X|X|X|X|O|O|O|O|O|O|X|O|X|X|X|X|X|O|O|O|O|X|X|X|X|X|O|X|O|X|O|X|X|X|X|X|X|O|O|\n|X|O|O|X|X|O|X|O|O|O|O|O|O|O|X|X|X|O|O|X|O|X|O|O|O|X|O|X|X|O|X|O|X|O|O|X|O|O|X|O|\n|O|O|O|O|X|O|O|X|X|O|X|X|X|X|O|O|X|O|O|X|X|O|O|X|O|X|X|O|X|X|X|O|X|X|X|X|O|O|O|O|\n|O|O|O|O|X|O|X|O|X|O|O|O|X|O|O|O|X|O|X|O|O|X|X|X|O|X|O|O|X|O|O|O|O|X|X|X|X|X|O|X|\n|X|O|O|O|X|X|X|X|X|X|O|X|X|X|X|O|O|O|X|X|X|X|O|O|O|X|X|O|O|X|O|X|X|O|X|O|O|O|X|O|\n|O|X|O|O|X|X|O|X|O|X|O|O|X|X|O|X|X|X|O|X|X|X|O|X|O|X|O|O|X|X|O|O|O|O|O|O|X|O|X|O|\n|O|X|O|X|O|O|O|O|O|X|O|X|O|O|O|O|O|O|X|O|X|X|X|O|O|O|O|O|X|X|O|O|O|O|X|O|X|X|O|O|\n|O|O|O|X|O|X|O|O|O|O|X|X|X|X|X|O|X|X|X|X|X|X|X|O|X|O|O|O|X|X|X|O|X|O|X|O|O|X|X|X|\n|X|O|X|O|O|X|O|O|O|X|X|X|X|X|X|O|X|X|O|O|X|O|O|X|X|X|X|O|O|O|O|X|X|X|O|X|X|X|X|O|\n|O|X|X|O|O|X|X|X|O|X|O|O|O|O|O|X|O|O|X|X|O|O|O|X|O|O|X|X|O|O|X|O|O|X|X|O|X|X|X|X|\n|O|O|X|O|X|O|X|O|X|X|X|O|O|X|O|O|X|X|X|X|X|X|O|X|X|O|X|O|X|O|X|O|O|X|O|O|O|X|X|X|\n|O|X|X|X|O|O|O|O|O|X|O|X|X|O|X|O|X|O|O|X|O|X|X|O|O|X|O|X|X|O|O|X|O|X|O|O|O|X|X|O|\n|O|O|X|O|O|X|O|O|O|X|O|X|X|O|X|O|X|O|X|X|X|X|O|X|X|X|O|X|X|X|X|X|X|X|X|O|O|O|X|X|\n|O|O|X|X|O|O|O|X|O|O|X|O|O|X|X|X|X|O|X|X|O|O|X|O|O|O|X|X|X|X|X|O|O|O|O|O|O|O|X|X|\n|X|O|O|X|O|O|X|X|O|O|X|X|X|X|X|X|X|O|O|O|O|O|X|X|O|O|O|O|O|O|O|O|X|X|O|X|O|X|O|X|\n|O|O|O|O|O|O|O|X|X|O|O|X|X|X|X|X|O|X|O|O|X|X|O|O|O|O|X|O|X|O|X|O|X|O|X|O|X|O|O|O|\n|X|X|X|O|X|O|X|X|O|O|X|O|O|O|X|O|O|O|X|X|O|X|X|O|O|O|X|O|O|O|X|X|O|O|X|O|O|O|O|O|\n|X|X|O|O|O|X|O|O|O|X|O|O|X|X|O|O|X|X|O|X|X|X|O|X|O|O|X|X|O|O|X|X|X|O|X|X|X|X|X|O|\n|X|O|X|X|O|X|O|X|O|O|O|X|X|O|O|X|O|O|X|O|O|O|O|O|X|X|X|X|O|X|X|O|O|X|O|O|O|X|X|O|\n|X|O|X|X|X|X|O|O|X|X|O|X|O|X|O|X|X|X|O|X|X|O|O|X|O|X|O|X|X|X|O|X|X|X|X|O|X|O|O|O|\n|X|X|X|X|X|O|X|X|X|X|X|O|X|O|O|X|X|X|X|O|X|O|O|O|O|X|X|X|O|X|O|O|O|O|O|O|X|X|X|O|\n|O|X|O|X|O|O|X|X|O|O|O|X|O|X|O|X|O|O|O|X|O|X|O|X|X|X|O|O|X|O|O|O|O|O|O|O|O|O|O|X|\n|X|O|X|O|X|X|X|X|O|X|O|O|X|O|O|X|X|X|X|X|X|O|O|O|X|O|O|X|O|X|X|O|X|X|O|O|O|O|O|O|\n|O|O|X|X|X|X|O|O|O|O|O|O|O|O|X|X|O|X|X|O|X|X|X|X|X|X|X|O|X|X|O|O|X|O|X|X|X|X|X|X|\n|X|O|O|X|X|X|X|X|X|O|X|O|O|O|O|X|O|O|O|O|X|X|O|O|O|O|O|X|X|O|X|X|O|O|X|X|X|X|O|O|\n|O|O|X|X|O|O|X|O|O|O|O|O|X|X|X|O|O|O|O|X|O|X|X|X|O|O|X|O|X|X|X|O|X|X|O|O|O|X|O|O|\n|X|O|O|X|O|O|O|O|X|X|X|O|X|X|X|O|X|O|O|X|O|X|O|X|O|O|X|X|O|O|O|X|O|X|O|X|O|O|O|X|\n|O|X|O|X|X|X|O|X|X|X|O|O|O|X|X|O|X|O|X|O|O|X|X|X|O|X|O|O|O|X|X|X|O|X|O|O|O|X|O|X|\n|O|O|O|X|O|O|O|O|O|O|X|O|O|X|X|X|O|O|O|O|O|O|X|X|O|X|X|X|X|O|X|X|O|O|O|X|O|O|O|O|\n|X|O|O|O|X|X|X|X|O|X|X|O|O|O|X|X|X|X|O|O|O|X|X|X|O|X|O|O|X|X|X|O|X|X|X|X|X|O|O|O|\n|X|O|X|O|X|O|X|O|O|X|O|O|X|X|O|X|X|O|X|X|O|X|X|O|O|O|O|X|O|X|O|O|X|O|O|O|X|O|O|O|\n|O|X|O|O|O|O|O|O|X|X|O|X|X|X|O|X|X|X|X|X|X|O|O|O|X|X|X|X|O|O|O|X|O|O|O|O|O|O|X|O|\n|O|O|X|X|X|O|O|O|X|O|O|X|X|X|O|X|O|O|O|O|X|X|X|X|O|O|O|X|O|O|O|O|X|O|X|O|O|X|O|O|\n|O|O|X|X|O|X|O|X|O|X|O|X|O|X|O|X|O|X|O|X|O|O|O|O|X|X|X|O|X|O|X|O|O|X|X|O|O|O|X|X|\n|X|X|X|O|O|X|X|X|O|O|O|O|X|X|X|X|O|X|X|O|O|O|X|O|O|X|X|X|X|X|X|X|O|O|O|X|O|O|O|O|\n|X|O|O|X|X|X|O|O|O|O|O|X|X|X|X|X|X|O|O|X|O|X|X|X|X|O|O|X|O|O|X|X|X|X|X|O|X|X|O|O|\n|O|O|X|O|O|O|X|X|O|X|O|X|O|X|X|X|X|O|X|X|O|X|O|X|X|X|O|X|O|O|O|O|X|X|X|X|X|O|O|X|</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Approach-2:-perform-the-stochastic-evolution-directly\">Approach 2: perform the stochastic evolution directly<a class=\"anchor-link\" href=\"#Approach-2:-perform-the-stochastic-evolution-directly\">&#182;</a></h1><p>Instead of indirectly obtaining the Ising model time evolution as a Markov Chain over a model, we can also just directly write the kernel which moves from one state of a grid to the next, stochastically. We express the chain as a stream (a <code>Producer</code>) and display that.</p>\n<p>The one subtlety is that we need a function <code>Store (m a) -&gt; m (Store a)</code>, i.e. a <code>Traversable</code> instance for <code>Store</code>, so that we can expand local stochasticity to global stochasticity.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[7]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kr\">instance</span><span class=\"w\"> </span><span class=\"kt\">Foldable</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Store</span><span class=\"w\"> </span><span class=\"n\">g</span><span class=\"p\">)</span>\n<span class=\"kr\">instance</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Traversable</span><span class=\"w\"> </span><span class=\"n\">g</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Representable</span><span class=\"w\"> </span><span class=\"n\">g</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Functor</span><span class=\"w\"> </span><span class=\"n\">g</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">Traversable</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Store</span><span class=\"w\"> </span><span class=\"n\">g</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"kr\">where</span>\n<span class=\"w\">  </span><span class=\"n\">sequenceA</span><span class=\"w\"> </span><span class=\"n\">g</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">uncurry</span><span class=\"w\"> </span><span class=\"n\">store</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">first</span><span class=\"w\"> </span><span class=\"n\">index</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">distributed</span><span class=\"w\"> </span><span class=\"n\">g</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"kr\">where</span>\n<span class=\"w\">    </span><span class=\"n\">distributed</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Representable</span><span class=\"w\"> </span><span class=\"n\">g</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Traversable</span><span class=\"w\"> </span><span class=\"n\">g</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Applicative</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">Store</span><span class=\"w\"> </span><span class=\"n\">g</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"n\">a</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">g</span><span class=\"w\"> </span><span class=\"n\">a</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Rep</span><span class=\"w\"> </span><span class=\"n\">g</span><span class=\"p\">)</span>\n<span class=\"w\">    </span><span class=\"n\">distributed</span><span class=\"w\">  </span><span class=\"n\">g</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">grab</span><span class=\"w\"> </span><span class=\"o\">$</span>\n<span class=\"w\">      </span><span class=\"n\">first</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">sequenceA</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">tabulate</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">$</span>\n<span class=\"w\">      </span><span class=\"n\">runStore</span><span class=\"w\"> </span><span class=\"n\">g</span>\n<span class=\"w\">    </span><span class=\"n\">grab</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">ma</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">b</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">(,</span><span class=\"n\">b</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">ma</span>\n\n<span class=\"nf\">step</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\">  </span><span class=\"kt\">Grid</span><span class=\"w\"> </span><span class=\"kt\">Bool</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Grid</span><span class=\"w\"> </span><span class=\"kt\">Bool</span><span class=\"p\">)</span>\n<span class=\"nf\">step</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">sequence</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">extend</span><span class=\"w\"> </span><span class=\"n\">rule</span><span class=\"w\"> </span>\n\n<span class=\"nf\">rule</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">Grid</span><span class=\"w\"> </span><span class=\"kt\">Bool</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"kt\">Bool</span>\n<span class=\"nf\">rule</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">experiment</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">uniformD</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">neighbours</span><span class=\"p\">)</span>\n<span class=\"w\">  </span><span class=\"kr\">where</span>\n<span class=\"w\">    </span><span class=\"n\">neighbours</span><span class=\"w\"> </span><span class=\"n\">s</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">addCoords</span><span class=\"w\"> </span><span class=\"n\">s</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">neighbourCoords</span>\n<span class=\"w\">    </span><span class=\"n\">addCoords</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x&#39;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y&#39;</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"o\">+</span><span class=\"w\"> </span><span class=\"n\">x&#39;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"o\">+</span><span class=\"w\"> </span><span class=\"n\">y&#39;</span><span class=\"p\">)</span>\n<span class=\"w\">    </span><span class=\"n\">neighbourCoords</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">[(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">|</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"o\">-</span><span class=\"mi\">1</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">],</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"o\">-</span><span class=\"mi\">1</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">],</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">/=</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">)]</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[8]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">steps</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"kt\">Producer</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Grid</span><span class=\"w\"> </span><span class=\"kt\">Bool</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"nb\">()</span>\n<span class=\"nf\">steps</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">unfoldr</span>\n<span class=\"w\">          </span><span class=\"p\">(</span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Right</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">y</span><span class=\"p\">,</span><span class=\"n\">y</span><span class=\"p\">)))</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">step</span><span class=\"p\">)</span>\n<span class=\"w\">          </span><span class=\"p\">(</span><span class=\"n\">mkGrid</span><span class=\"w\"> </span><span class=\"p\">[(</span><span class=\"n\">m</span><span class=\"p\">,</span><span class=\"n\">n</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">|</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"mi\">0</span><span class=\"o\">..</span><span class=\"mi\">10</span><span class=\"p\">],</span><span class=\"w\"> </span><span class=\"n\">n</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"mi\">0</span><span class=\"o\">..</span><span class=\"mi\">20</span><span class=\"p\">]])</span>\n<span class=\"w\">          </span>\n\n<span class=\"nf\">sampler</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">runEffect</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">steps</span><span class=\"w\"> </span><span class=\"o\">&gt;-&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">drop</span><span class=\"w\"> </span><span class=\"mi\">50</span><span class=\"w\"> </span><span class=\"o\">&gt;-&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">mapM</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">liftIO</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">putStrLn</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">display</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&gt;-&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">take</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"w\"> </span><span class=\"o\">&gt;-&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">drain</span><span class=\"p\">)</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n<div class=\"jp-OutputArea-child\">\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>\n|X|X|O|O|O|O|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|\n|X|O|O|O|O|O|O|O|O|O|X|O|O|X|O|X|X|X|O|X|O|X|O|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|X|O|X|X|O|O|X|X|X|X|X|X|X|X|X|X|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|X|O|O|O|O|X|O|X|X|O|X|X|X|X|O|O|O|O|X|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|\n|O|O|O|O|O|X|X|X|X|X|X|X|O|O|O|X|X|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|X|O|\n|O|O|O|O|X|X|X|O|X|X|X|X|X|X|X|O|O|X|X|X|O|O|O|O|O|O|O|O|O|X|O|X|X|O|O|O|X|O|O|O|\n|O|O|O|O|X|X|O|X|O|X|X|X|X|X|X|O|X|X|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|O|\n|O|O|X|O|X|X|X|X|X|X|X|X|X|O|X|X|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|X|X|O|O|O|O|O|\n|O|O|O|X|O|O|X|X|X|X|X|X|O|X|X|X|O|X|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|O|\n|O|O|X|O|O|O|O|O|O|O|O|X|X|O|O|X|X|O|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|X|X|X|X|X|X|X|O|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|\n|O|O|O|O|O|O|O|O|O|O|X|O|O|X|X|X|O|O|X|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|\n|O|O|O|O|O|O|O|O|O|O|O|X|X|O|X|X|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|X|\n|X|O|O|O|O|O|O|O|O|O|X|O|O|O|X|X|X|O|X|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|X|O|O|O|O|O|O|O|O|O|X|O|X|X|X|X|O|O|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|X|O|X|O|O|O|O|O|O|O|O|X|O|X|X|O|X|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|\n|O|X|O|O|O|O|O|O|O|O|O|O|O|O|X|O|X|O|O|O|O|O|O|O|X|O|O|O|O|O|O|O|O|O|O|X|X|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|O|O|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|X|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|X|X|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|X|X|X|X|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|X|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|X|O|X|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|X|O|O|X|O|X|X|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|X|O|O|O|O|O|O|O|O|X|O|O|O|O|O|X|X|O|O|O|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|X|X|X|O|O|O|O|O|O|O|O|X|O|X|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n\n|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|O|X|X|O|O|O|X|O|O|X|X|O|O|O|O|O|O|O|O|O|O|O|O|O|X|\n|O|X|O|O|O|O|X|O|O|X|O|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|\n|O|X|O|O|O|O|O|X|O|X|O|X|X|O|O|O|O|X|O|O|O|O|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|X|\n|O|O|O|O|X|O|X|O|X|X|O|X|X|X|O|X|X|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|\n|O|O|O|O|O|O|X|X|O|O|O|X|X|O|X|O|O|X|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|X|O|X|\n|O|O|O|O|X|X|X|X|O|X|X|X|O|O|O|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|X|O|X|X|X|O|\n|O|O|O|O|O|X|X|O|X|X|X|X|X|X|X|X|O|X|X|O|O|O|O|O|O|O|O|O|O|O|X|O|O|X|O|O|O|O|O|O|\n|O|O|O|O|O|O|X|X|X|O|X|X|O|X|X|X|X|O|X|X|O|O|X|O|O|O|O|O|O|O|O|O|O|X|O|X|O|O|O|O|\n|O|O|O|O|O|O|X|X|X|X|X|X|X|X|X|O|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|X|O|X|O|O|X|O|X|X|X|X|O|X|O|X|O|X|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|\n|O|O|O|X|O|O|O|O|X|O|X|X|O|X|X|X|O|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|\n|O|O|O|O|O|O|O|O|O|X|O|X|X|X|X|X|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|\n|X|O|O|O|O|O|O|O|O|O|X|O|O|X|X|X|X|O|O|X|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|X|X|O|X|O|X|O|O|X|X|X|X|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|X|O|X|O|O|O|O|O|O|O|O|O|X|O|X|X|X|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|X|\n|O|O|O|O|O|O|O|O|O|O|X|X|O|O|O|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|\n|O|X|O|X|O|O|O|O|O|O|O|O|O|X|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|X|\n|O|O|O|O|O|O|O|O|O|X|O|X|X|O|O|X|X|O|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|X|X|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|X|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|X|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|X|X|X|O|X|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|X|X|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|X|X|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|X|X|O|X|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|X|X|O|O|O|X|X|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|O|O|X|O|O|O|O|O|X|X|X|X|O|O|O|O|O|X|O|O|X|O|X|O|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|\n|X|O|O|O|O|O|O|O|O|X|O|O|O|O|O|O|O|O|O|X|O|O|X|O|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n</body>\n\n\n\n\n\n\n\n</html>\n"
  },
  {
    "path": "docs/docs/notebooks/Lazy.html",
    "content": "<!DOCTYPE html>\n<html>\n<head><meta charset=\"utf-8\" />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n<title>Lazy</title><script src=\"https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js\"></script>\n\n\n\n\n<style type=\"text/css\">\n    pre { line-height: 125%; }\ntd.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\nspan.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\ntd.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\nspan.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.highlight .hll { background-color: var(--jp-cell-editor-active-background) }\n.highlight { background: var(--jp-cell-editor-background); color: var(--jp-mirror-editor-variable-color) }\n.highlight .c { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment */\n.highlight .err { color: var(--jp-mirror-editor-error-color) } /* Error */\n.highlight .k { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword */\n.highlight .o { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator */\n.highlight .p { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation */\n.highlight .ch { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Hashbang */\n.highlight .cm { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Multiline */\n.highlight .cp { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Preproc */\n.highlight .cpf { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.PreprocFile */\n.highlight .c1 { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Single */\n.highlight .cs { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Special */\n.highlight .kc { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Constant */\n.highlight .kd { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Declaration */\n.highlight .kn { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Namespace */\n.highlight .kp { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Pseudo */\n.highlight .kr { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Reserved */\n.highlight .kt { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Type */\n.highlight .m { color: var(--jp-mirror-editor-number-color) } /* Literal.Number */\n.highlight .s { color: var(--jp-mirror-editor-string-color) } /* Literal.String */\n.highlight .ow { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator.Word */\n.highlight .w { color: var(--jp-mirror-editor-variable-color) } /* Text.Whitespace */\n.highlight .mb { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Bin */\n.highlight .mf { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Float */\n.highlight .mh { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Hex */\n.highlight .mi { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer */\n.highlight .mo { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Oct */\n.highlight .sa { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Affix */\n.highlight .sb { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Backtick */\n.highlight .sc { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Char */\n.highlight .dl { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Delimiter */\n.highlight .sd { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Doc */\n.highlight .s2 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Double */\n.highlight .se { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Escape */\n.highlight .sh { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Heredoc */\n.highlight .si { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Interpol */\n.highlight .sx { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Other */\n.highlight .sr { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Regex */\n.highlight .s1 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Single */\n.highlight .ss { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Symbol */\n.highlight .il { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer.Long */\n  </style>\n\n\n\n<style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\n * Mozilla scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n[data-jp-theme-scrollbars='true'] {\n  scrollbar-color: rgb(var(--jp-scrollbar-thumb-color))\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar. These selectors\n * will match lower in the tree, and so will override the above */\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n  scrollbar-width: thin;\n}\n\n/*\n * Webkit scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-corner {\n  background: var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-thumb {\n  background: rgb(var(--jp-scrollbar-thumb-color));\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-right: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-bottom: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar */\n\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-corner,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-corner {\n  background-color: transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-thumb,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid transparent;\n  border-right: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid transparent;\n  border-bottom: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny::-webkit-scrollbar,\n.jp-scrollbar-tiny::-webkit-scrollbar-corner {\n  background-color: transparent;\n  height: 4px;\n  width: 4px;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:horizontal {\n  border-left: 0px solid transparent;\n  border-right: 0px solid transparent;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:vertical {\n  border-top: 0px solid transparent;\n  border-bottom: 0px solid transparent;\n}\n\n/*\n * Phosphor\n */\n\n.lm-ScrollBar[data-orientation='horizontal'] {\n  min-height: 16px;\n  max-height: 16px;\n  min-width: 45px;\n  border-top: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] {\n  min-width: 16px;\n  max-width: 16px;\n  min-height: 45px;\n  border-left: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar-button {\n  background-color: #f0f0f0;\n  background-position: center center;\n  min-height: 15px;\n  max-height: 15px;\n  min-width: 15px;\n  max-width: 15px;\n}\n\n.lm-ScrollBar-button:hover {\n  background-color: #dadada;\n}\n\n.lm-ScrollBar-button.lm-mod-active {\n  background-color: #cdcdcd;\n}\n\n.lm-ScrollBar-track {\n  background: #f0f0f0;\n}\n\n.lm-ScrollBar-thumb {\n  background: #cdcdcd;\n}\n\n.lm-ScrollBar-thumb:hover {\n  background: #bababa;\n}\n\n.lm-ScrollBar-thumb.lm-mod-active {\n  background: #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal'] .lm-ScrollBar-thumb {\n  height: 100%;\n  min-width: 15px;\n  border-left: 1px solid #a0a0a0;\n  border-right: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] .lm-ScrollBar-thumb {\n  width: 100%;\n  min-height: 15px;\n  border-top: 1px solid #a0a0a0;\n  border-bottom: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-left);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-right);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-up);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-down);\n  background-size: 17px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Widget, /* </DEPRECATED> */\n.lm-Widget {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  cursor: default;\n}\n\n\n/* <DEPRECATED> */ .p-Widget.p-mod-hidden, /* </DEPRECATED> */\n.lm-Widget.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-CommandPalette, /* </DEPRECATED> */\n.lm-CommandPalette {\n  display: flex;\n  flex-direction: column;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-search, /* </DEPRECATED> */\n.lm-CommandPalette-search {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-content, /* </DEPRECATED> */\n.lm-CommandPalette-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  min-height: 0;\n  overflow: auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-header, /* </DEPRECATED> */\n.lm-CommandPalette-header {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-item, /* </DEPRECATED> */\n.lm-CommandPalette-item {\n  display: flex;\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemIcon, /* </DEPRECATED> */\n.lm-CommandPalette-itemIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemContent, /* </DEPRECATED> */\n.lm-CommandPalette-itemContent {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemShortcut, /* </DEPRECATED> */\n.lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemLabel, /* </DEPRECATED> */\n.lm-CommandPalette-itemLabel {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.lm-close-icon {\n\tborder:1px solid transparent;\n  background-color: transparent;\n  position: absolute;\n\tz-index:1;\n\tright:3%;\n\ttop: 0;\n\tbottom: 0;\n\tmargin: auto;\n\tpadding: 7px 0;\n\tdisplay: none;\n\tvertical-align: middle;\n  outline: 0;\n  cursor: pointer;\n}\n.lm-close-icon:after {\n\tcontent: \"X\";\n\tdisplay: block;\n\twidth: 15px;\n\theight: 15px;\n\ttext-align: center;\n\tcolor:#000;\n\tfont-weight: normal;\n\tfont-size: 12px;\n\tcursor: pointer;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-DockPanel, /* </DEPRECATED> */\n.lm-DockPanel {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-widget, /* </DEPRECATED> */\n.lm-DockPanel-widget {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-tabBar, /* </DEPRECATED> */\n.lm-DockPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle, /* </DEPRECATED> */\n.lm-DockPanel-handle {\n  z-index: 2;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle:after, /* </DEPRECATED> */\n.lm-DockPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal'] {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical'] {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal']:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical']:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay, /* </DEPRECATED> */\n.lm-DockPanel-overlay {\n  z-index: 3;\n  box-sizing: border-box;\n  pointer-events: none;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-overlay.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Menu, /* </DEPRECATED> */\n.lm-Menu {\n  z-index: 10000;\n  position: absolute;\n  white-space: nowrap;\n  overflow-x: hidden;\n  overflow-y: auto;\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-content, /* </DEPRECATED> */\n.lm-Menu-content {\n  margin: 0;\n  padding: 0;\n  display: table;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-item, /* </DEPRECATED> */\n.lm-Menu-item {\n  display: table-row;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-item.p-mod-hidden,\n.p-Menu-item.p-mod-collapsed,\n/* </DEPRECATED> */\n.lm-Menu-item.lm-mod-hidden,\n.lm-Menu-item.lm-mod-collapsed {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-itemIcon,\n.p-Menu-itemSubmenuIcon,\n/* </DEPRECATED> */\n.lm-Menu-itemIcon,\n.lm-Menu-itemSubmenuIcon {\n  display: table-cell;\n  text-align: center;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemLabel, /* </DEPRECATED> */\n.lm-Menu-itemLabel {\n  display: table-cell;\n  text-align: left;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemShortcut, /* </DEPRECATED> */\n.lm-Menu-itemShortcut {\n  display: table-cell;\n  text-align: right;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-MenuBar, /* </DEPRECATED> */\n.lm-MenuBar {\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-MenuBar-content, /* </DEPRECATED> */\n.lm-MenuBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex-direction: row;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p--MenuBar-item, /* </DEPRECATED> */\n.lm-MenuBar-item {\n  box-sizing: border-box;\n}\n\n\n/* <DEPRECATED> */\n.p-MenuBar-itemIcon,\n.p-MenuBar-itemLabel,\n/* </DEPRECATED> */\n.lm-MenuBar-itemIcon,\n.lm-MenuBar-itemLabel {\n  display: inline-block;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-ScrollBar, /* </DEPRECATED> */\n.lm-ScrollBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='horizontal'] {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='vertical'] {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-button, /* </DEPRECATED> */\n.lm-ScrollBar-button {\n  box-sizing: border-box;\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-track, /* </DEPRECATED> */\n.lm-ScrollBar-track {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  flex: 1 1 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-thumb, /* </DEPRECATED> */\n.lm-ScrollBar-thumb {\n  box-sizing: border-box;\n  position: absolute;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-SplitPanel-child, /* </DEPRECATED> */\n.lm-SplitPanel-child {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle, /* </DEPRECATED> */\n.lm-SplitPanel-handle {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-SplitPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle:after, /* </DEPRECATED> */\n.lm-SplitPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabBar, /* </DEPRECATED> */\n.lm-TabBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='horizontal'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] {\n  flex-direction: row;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='vertical'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] {\n  flex-direction: column;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-content, /* </DEPRECATED> */\n.lm-TabBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex: 1 1 auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='horizontal'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] > .lm-TabBar-content {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='vertical'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] > .lm-TabBar-content {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar-tab {\n  display: flex;\n  flex-direction: row;\n  box-sizing: border-box;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar-tabIcon,\n.p-TabBar-tabCloseIcon,\n/* </DEPRECATED> */\n.lm-TabBar-tabIcon,\n.lm-TabBar-tabCloseIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tabLabel, /* </DEPRECATED> */\n.lm-TabBar-tabLabel {\n  flex: 1 1 auto;\n  overflow: hidden;\n  white-space: nowrap;\n}\n\n\n.lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab.p-mod-hidden, /* </DEPRECATED> */\n.lm-TabBar-tab.lm-mod-hidden {\n  display: none !important;\n}\n\n\n.lm-TabBar-addButton.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar.p-mod-dragging .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab {\n  position: relative;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='horizontal'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='horizontal'] .lm-TabBar-tab {\n  left: 0;\n  transition: left 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='vertical'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='vertical'] .lm-TabBar-tab {\n  top: 0;\n  transition: top 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging .p-TabBar-tab.p-mod-dragging,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab.lm-mod-dragging {\n  transition: none;\n}\n\n.lm-TabBar-tabLabel .lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n  background: inherit;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabPanel-tabBar, /* </DEPRECATED> */\n.lm-TabPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-TabPanel-stackedPanel, /* </DEPRECATED> */\n.lm-TabPanel-stackedPanel {\n  z-index: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n@charset \"UTF-8\";\nhtml{\n  -webkit-box-sizing:border-box;\n          box-sizing:border-box; }\n\n*,\n*::before,\n*::after{\n  -webkit-box-sizing:inherit;\n          box-sizing:inherit; }\n\nbody{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none;\n  color:#182026;\n  font-family:-apple-system, \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Open Sans\", \"Helvetica Neue\", \"Icons16\", sans-serif; }\n\np{\n  margin-bottom:10px;\n  margin-top:0; }\n\nsmall{\n  font-size:12px; }\n\nstrong{\n  font-weight:600; }\n\n::-moz-selection{\n  background:rgba(125, 188, 255, 0.6); }\n\n::selection{\n  background:rgba(125, 188, 255, 0.6); }\n.bp3-heading{\n  color:#182026;\n  font-weight:600;\n  margin:0 0 10px;\n  padding:0; }\n  .bp3-dark .bp3-heading{\n    color:#f5f8fa; }\n\nh1.bp3-heading, .bp3-running-text h1{\n  font-size:36px;\n  line-height:40px; }\n\nh2.bp3-heading, .bp3-running-text h2{\n  font-size:28px;\n  line-height:32px; }\n\nh3.bp3-heading, .bp3-running-text h3{\n  font-size:22px;\n  line-height:25px; }\n\nh4.bp3-heading, .bp3-running-text h4{\n  font-size:18px;\n  line-height:21px; }\n\nh5.bp3-heading, .bp3-running-text h5{\n  font-size:16px;\n  line-height:19px; }\n\nh6.bp3-heading, .bp3-running-text h6{\n  font-size:14px;\n  line-height:16px; }\n.bp3-ui-text{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none; }\n\n.bp3-monospace-text{\n  font-family:monospace;\n  text-transform:none; }\n\n.bp3-text-muted{\n  color:#5c7080; }\n  .bp3-dark .bp3-text-muted{\n    color:#a7b6c2; }\n\n.bp3-text-disabled{\n  color:rgba(92, 112, 128, 0.6); }\n  .bp3-dark .bp3-text-disabled{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-text-overflow-ellipsis{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal; }\n.bp3-running-text{\n  font-size:14px;\n  line-height:1.5; }\n  .bp3-running-text h1{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h1{\n      color:#f5f8fa; }\n  .bp3-running-text h2{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h2{\n      color:#f5f8fa; }\n  .bp3-running-text h3{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h3{\n      color:#f5f8fa; }\n  .bp3-running-text h4{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h4{\n      color:#f5f8fa; }\n  .bp3-running-text h5{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h5{\n      color:#f5f8fa; }\n  .bp3-running-text h6{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h6{\n      color:#f5f8fa; }\n  .bp3-running-text hr{\n    border:none;\n    border-bottom:1px solid rgba(16, 22, 26, 0.15);\n    margin:20px 0; }\n    .bp3-dark .bp3-running-text hr{\n      border-color:rgba(255, 255, 255, 0.15); }\n  .bp3-running-text p{\n    margin:0 0 10px;\n    padding:0; }\n\n.bp3-text-large{\n  font-size:16px; }\n\n.bp3-text-small{\n  font-size:12px; }\na{\n  color:#106ba3;\n  text-decoration:none; }\n  a:hover{\n    color:#106ba3;\n    cursor:pointer;\n    text-decoration:underline; }\n  a .bp3-icon, a .bp3-icon-standard, a .bp3-icon-large{\n    color:inherit; }\n  a code,\n  .bp3-dark a code{\n    color:inherit; }\n  .bp3-dark a,\n  .bp3-dark a:hover{\n    color:#48aff0; }\n    .bp3-dark a .bp3-icon, .bp3-dark a .bp3-icon-standard, .bp3-dark a .bp3-icon-large,\n    .bp3-dark a:hover .bp3-icon,\n    .bp3-dark a:hover .bp3-icon-standard,\n    .bp3-dark a:hover .bp3-icon-large{\n      color:inherit; }\n.bp3-running-text code, .bp3-code{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  font-size:smaller;\n  padding:2px 5px; }\n  .bp3-dark .bp3-running-text code, .bp3-running-text .bp3-dark code, .bp3-dark .bp3-code{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n  .bp3-running-text a > code, a > .bp3-code{\n    color:#137cbd; }\n    .bp3-dark .bp3-running-text a > code, .bp3-running-text .bp3-dark a > code, .bp3-dark a > .bp3-code{\n      color:inherit; }\n\n.bp3-running-text pre, .bp3-code-block{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n  color:#182026;\n  display:block;\n  font-size:13px;\n  line-height:1.4;\n  margin:10px 0;\n  padding:13px 15px 12px;\n  word-break:break-all;\n  word-wrap:break-word; }\n  .bp3-dark .bp3-running-text pre, .bp3-running-text .bp3-dark pre, .bp3-dark .bp3-code-block{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n  .bp3-running-text pre > code, .bp3-code-block > code{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit;\n    font-size:inherit;\n    padding:0; }\n\n.bp3-running-text kbd, .bp3-key{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-family:inherit;\n  font-size:12px;\n  height:24px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  line-height:24px;\n  min-width:24px;\n  padding:3px 6px;\n  vertical-align:middle; }\n  .bp3-running-text kbd .bp3-icon, .bp3-key .bp3-icon, .bp3-running-text kbd .bp3-icon-standard, .bp3-key .bp3-icon-standard, .bp3-running-text kbd .bp3-icon-large, .bp3-key .bp3-icon-large{\n    margin-right:5px; }\n  .bp3-dark .bp3-running-text kbd, .bp3-running-text .bp3-dark kbd, .bp3-dark .bp3-key{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n.bp3-running-text blockquote, .bp3-blockquote{\n  border-left:solid 4px rgba(167, 182, 194, 0.5);\n  margin:0 0 10px;\n  padding:0 20px; }\n  .bp3-dark .bp3-running-text blockquote, .bp3-running-text .bp3-dark blockquote, .bp3-dark .bp3-blockquote{\n    border-color:rgba(115, 134, 148, 0.5); }\n.bp3-running-text ul,\n.bp3-running-text ol, .bp3-list{\n  margin:10px 0;\n  padding-left:30px; }\n  .bp3-running-text ul li:not(:last-child), .bp3-running-text ol li:not(:last-child), .bp3-list li:not(:last-child){\n    margin-bottom:5px; }\n  .bp3-running-text ul ol, .bp3-running-text ol ol, .bp3-list ol,\n  .bp3-running-text ul ul,\n  .bp3-running-text ol ul,\n  .bp3-list ul{\n    margin-top:5px; }\n\n.bp3-list-unstyled{\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-list-unstyled li{\n    padding:0; }\n.bp3-rtl{\n  text-align:right; }\n\n.bp3-dark{\n  color:#f5f8fa; }\n\n:focus{\n  outline:rgba(19, 124, 189, 0.6) auto 2px;\n  outline-offset:2px;\n  -moz-outline-radius:6px; }\n\n.bp3-focus-disabled :focus{\n  outline:none !important; }\n  .bp3-focus-disabled :focus ~ .bp3-control-indicator{\n    outline:none !important; }\n\n.bp3-alert{\n  max-width:400px;\n  padding:20px; }\n\n.bp3-alert-body{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-alert-body .bp3-icon{\n    font-size:40px;\n    margin-right:20px;\n    margin-top:0; }\n\n.bp3-alert-contents{\n  word-break:break-word; }\n\n.bp3-alert-footer{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:reverse;\n      -ms-flex-direction:row-reverse;\n          flex-direction:row-reverse;\n  margin-top:10px; }\n  .bp3-alert-footer .bp3-button{\n    margin-left:10px; }\n.bp3-breadcrumbs{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  cursor:default;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:wrap;\n      flex-wrap:wrap;\n  height:30px;\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-breadcrumbs > li{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n    .bp3-breadcrumbs > li::after{\n      background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z' fill='%235C7080'/%3e%3c/svg%3e\");\n      content:\"\";\n      display:block;\n      height:16px;\n      margin:0 5px;\n      width:16px; }\n    .bp3-breadcrumbs > li:last-of-type::after{\n      display:none; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumb-current,\n.bp3-breadcrumbs-collapsed{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-size:16px; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumbs-collapsed{\n  color:#5c7080; }\n\n.bp3-breadcrumb:hover{\n  text-decoration:none; }\n\n.bp3-breadcrumb.bp3-disabled{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-breadcrumb .bp3-icon{\n  margin-right:5px; }\n\n.bp3-breadcrumb-current{\n  color:inherit;\n  font-weight:600; }\n  .bp3-breadcrumb-current .bp3-input{\n    font-size:inherit;\n    font-weight:inherit;\n    vertical-align:baseline; }\n\n.bp3-breadcrumbs-collapsed{\n  background:#ced9e0;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  margin-right:2px;\n  padding:1px 5px;\n  vertical-align:text-bottom; }\n  .bp3-breadcrumbs-collapsed::before{\n    background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cg fill='%235C7080'%3e%3ccircle cx='2' cy='8.03' r='2'/%3e%3ccircle cx='14' cy='8.03' r='2'/%3e%3ccircle cx='8' cy='8.03' r='2'/%3e%3c/g%3e%3c/svg%3e\") center no-repeat;\n    content:\"\";\n    display:block;\n    height:16px;\n    width:16px; }\n  .bp3-breadcrumbs-collapsed:hover{\n    background:#bfccd6;\n    color:#182026;\n    text-decoration:none; }\n\n.bp3-dark .bp3-breadcrumb,\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumbs > li::after{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumb.bp3-disabled{\n  color:rgba(167, 182, 194, 0.6); }\n\n.bp3-dark .bp3-breadcrumb-current{\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-breadcrumbs-collapsed:hover{\n    background:rgba(16, 22, 26, 0.6);\n    color:#f5f8fa; }\n.bp3-button{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  min-height:30px;\n  min-width:30px; }\n  .bp3-button > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-button > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-button::before,\n  .bp3-button > *{\n    margin-right:7px; }\n  .bp3-button:empty::before,\n  .bp3-button > :last-child{\n    margin-right:0; }\n  .bp3-button:empty{\n    padding:0 !important; }\n  .bp3-button:disabled, .bp3-button.bp3-disabled{\n    cursor:not-allowed; }\n  .bp3-button.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button.bp3-align-right,\n  .bp3-align-right .bp3-button{\n    text-align:right; }\n  .bp3-button.bp3-align-left,\n  .bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026; }\n    .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active:hover, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-button.bp3-intent-primary{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover, .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover{\n      background-color:#106ba3;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      background-color:#0e5a8a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:disabled, .bp3-button.bp3-intent-primary.bp3-disabled{\n      background-color:rgba(19, 124, 189, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-success{\n    background-color:#0f9960;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover, .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover{\n      background-color:#0d8050;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      background-color:#0a6640;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:disabled, .bp3-button.bp3-intent-success.bp3-disabled{\n      background-color:rgba(15, 153, 96, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-warning{\n    background-color:#d9822b;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover, .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover{\n      background-color:#bf7326;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      background-color:#a66321;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:disabled, .bp3-button.bp3-intent-warning.bp3-disabled{\n      background-color:rgba(217, 130, 43, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-danger{\n    background-color:#db3737;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover, .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover{\n      background-color:#c23030;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      background-color:#a82a2a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:disabled, .bp3-button.bp3-intent-danger.bp3-disabled{\n      background-color:rgba(219, 55, 55, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n    stroke:#ffffff; }\n  .bp3-button.bp3-large,\n  .bp3-large .bp3-button{\n    min-height:40px;\n    min-width:40px;\n    font-size:16px;\n    padding:5px 15px; }\n    .bp3-button.bp3-large::before,\n    .bp3-button.bp3-large > *,\n    .bp3-large .bp3-button::before,\n    .bp3-large .bp3-button > *{\n      margin-right:10px; }\n    .bp3-button.bp3-large:empty::before,\n    .bp3-button.bp3-large > :last-child,\n    .bp3-large .bp3-button:empty::before,\n    .bp3-large .bp3-button > :last-child{\n      margin-right:0; }\n  .bp3-button.bp3-small,\n  .bp3-small .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-button.bp3-loading{\n    position:relative; }\n    .bp3-button.bp3-loading[class*=\"bp3-icon-\"]::before{\n      visibility:hidden; }\n    .bp3-button.bp3-loading .bp3-button-spinner{\n      margin:0;\n      position:absolute; }\n    .bp3-button.bp3-loading > :not(.bp3-button-spinner){\n      visibility:hidden; }\n  .bp3-button[class*=\"bp3-icon-\"]::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    color:#5c7080; }\n  .bp3-button .bp3-icon, .bp3-button .bp3-icon-standard, .bp3-button .bp3-icon-large{\n    color:#5c7080; }\n    .bp3-button .bp3-icon.bp3-align-right, .bp3-button .bp3-icon-standard.bp3-align-right, .bp3-button .bp3-icon-large.bp3-align-right{\n      margin-left:7px; }\n  .bp3-button .bp3-icon:first-child:last-child,\n  .bp3-button .bp3-spinner + .bp3-icon:last-child{\n    margin:0 -7px; }\n  .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"])[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n      color:#a7b6c2; }\n  .bp3-dark .bp3-button[class*=\"bp3-intent-\"]{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:hover{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.3); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n      stroke:#8a9ba8; }\n  .bp3-button:disabled::before,\n  .bp3-button:disabled .bp3-icon, .bp3-button:disabled .bp3-icon-standard, .bp3-button:disabled .bp3-icon-large, .bp3-button.bp3-disabled::before,\n  .bp3-button.bp3-disabled .bp3-icon, .bp3-button.bp3-disabled .bp3-icon-standard, .bp3-button.bp3-disabled .bp3-icon-large, .bp3-button[class*=\"bp3-intent-\"]::before,\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-icon, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-standard, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-large{\n    color:inherit !important; }\n  .bp3-button.bp3-minimal{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button.bp3-minimal:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-minimal:active, .bp3-button.bp3-minimal.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-minimal:disabled, .bp3-button.bp3-minimal:disabled:hover, .bp3-button.bp3-minimal.bp3-disabled, .bp3-button.bp3-minimal.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-minimal{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-minimal:hover, .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-minimal:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-minimal:disabled, .bp3-dark .bp3-button.bp3-minimal:disabled:hover, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover, .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover, .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover, .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover, .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button.bp3-outlined{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    border:1px solid rgba(24, 32, 38, 0.2);\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box; }\n    .bp3-button.bp3-outlined:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-outlined:active, .bp3-button.bp3-outlined.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-outlined:hover, .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-outlined:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover, .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover, .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover, .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover, .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      border-color:rgba(92, 112, 128, 0.1); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      border-color:rgba(255, 255, 255, 0.4); }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        border-color:rgba(255, 255, 255, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      border-color:rgba(16, 107, 163, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        border-color:rgba(16, 107, 163, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        border-color:rgba(72, 175, 240, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          border-color:rgba(72, 175, 240, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      border-color:rgba(13, 128, 80, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        border-color:rgba(13, 128, 80, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        border-color:rgba(61, 204, 145, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          border-color:rgba(61, 204, 145, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      border-color:rgba(191, 115, 38, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        border-color:rgba(191, 115, 38, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        border-color:rgba(255, 179, 102, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          border-color:rgba(255, 179, 102, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      border-color:rgba(194, 48, 48, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        border-color:rgba(194, 48, 48, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        border-color:rgba(255, 115, 115, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          border-color:rgba(255, 115, 115, 0.2); }\n\na.bp3-button{\n  text-align:center;\n  text-decoration:none;\n  -webkit-transition:none;\n  transition:none; }\n  a.bp3-button, a.bp3-button:hover, a.bp3-button:active{\n    color:#182026; }\n  a.bp3-button.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6); }\n\n.bp3-button-text{\n  -webkit-box-flex:0;\n      -ms-flex:0 1 auto;\n          flex:0 1 auto; }\n\n.bp3-button.bp3-align-left .bp3-button-text, .bp3-button.bp3-align-right .bp3-button-text,\n.bp3-button-group.bp3-align-left .bp3-button-text,\n.bp3-button-group.bp3-align-right .bp3-button-text{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto; }\n.bp3-button-group{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex; }\n  .bp3-button-group .bp3-button{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    position:relative;\n    z-index:4; }\n    .bp3-button-group .bp3-button:focus{\n      z-index:5; }\n    .bp3-button-group .bp3-button:hover{\n      z-index:6; }\n    .bp3-button-group .bp3-button:active, .bp3-button-group .bp3-button.bp3-active{\n      z-index:7; }\n    .bp3-button-group .bp3-button:disabled, .bp3-button-group .bp3-button.bp3-disabled{\n      z-index:3; }\n    .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]{\n      z-index:9; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:focus{\n        z-index:10; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:hover{\n        z-index:11; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n        z-index:12; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n        z-index:8; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:first-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:first-child){\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    border-bottom-right-radius:0;\n    border-top-right-radius:0;\n    margin-right:-1px; }\n  .bp3-button-group.bp3-minimal .bp3-button{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button-group.bp3-minimal .bp3-button{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button-group .bp3-popover-wrapper,\n  .bp3-button-group .bp3-popover-target{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button-group .bp3-button.bp3-fill,\n  .bp3-button-group.bp3-fill .bp3-button:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-vertical{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column;\n    vertical-align:top; }\n    .bp3-button-group.bp3-vertical.bp3-fill{\n      height:100%;\n      width:unset; }\n    .bp3-button-group.bp3-vertical .bp3-button{\n      margin-right:0 !important;\n      width:100%; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:first-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:first-child{\n      border-radius:3px 3px 0 0; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:last-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:last-child{\n      border-radius:0 0 3px 3px; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:not(:last-child){\n      margin-bottom:-1px; }\n  .bp3-button-group.bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    margin-right:1px; }\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-button:not(:last-child){\n    margin-bottom:1px; }\n.bp3-callout{\n  font-size:14px;\n  line-height:1.5;\n  background-color:rgba(138, 155, 168, 0.15);\n  border-radius:3px;\n  padding:10px 12px 9px;\n  position:relative;\n  width:100%; }\n  .bp3-callout[class*=\"bp3-icon-\"]{\n    padding-left:40px; }\n    .bp3-callout[class*=\"bp3-icon-\"]::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout.bp3-callout-icon{\n    padding-left:40px; }\n    .bp3-callout.bp3-callout-icon > .bp3-icon:first-child{\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout .bp3-heading{\n    line-height:20px;\n    margin-bottom:5px;\n    margin-top:0; }\n    .bp3-callout .bp3-heading:last-child{\n      margin-bottom:0; }\n  .bp3-dark .bp3-callout{\n    background-color:rgba(138, 155, 168, 0.2); }\n    .bp3-dark .bp3-callout[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n  .bp3-callout.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15); }\n    .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-primary .bp3-heading{\n      color:#106ba3; }\n    .bp3-dark .bp3-callout.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-primary .bp3-heading{\n        color:#48aff0; }\n  .bp3-callout.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15); }\n    .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-success .bp3-heading{\n      color:#0d8050; }\n    .bp3-dark .bp3-callout.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-success .bp3-heading{\n        color:#3dcc91; }\n  .bp3-callout.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15); }\n    .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-warning .bp3-heading{\n      color:#bf7326; }\n    .bp3-dark .bp3-callout.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-warning .bp3-heading{\n        color:#ffb366; }\n  .bp3-callout.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15); }\n    .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-danger .bp3-heading{\n      color:#c23030; }\n    .bp3-dark .bp3-callout.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-danger .bp3-heading{\n        color:#ff7373; }\n  .bp3-running-text .bp3-callout{\n    margin:20px 0; }\n.bp3-card{\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n  padding:20px;\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-card.bp3-dark,\n  .bp3-dark .bp3-card{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-0{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n  .bp3-elevation-0.bp3-dark,\n  .bp3-dark .bp3-elevation-0{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-1{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-1.bp3-dark,\n  .bp3-dark .bp3-elevation-1{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-2{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-2.bp3-dark,\n  .bp3-dark .bp3-elevation-2{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-3{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-3.bp3-dark,\n  .bp3-dark .bp3-elevation-3{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-4{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-4.bp3-dark,\n  .bp3-dark .bp3-elevation-4{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:hover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  cursor:pointer; }\n  .bp3-card.bp3-interactive:hover.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:hover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:active{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  opacity:0.9;\n  -webkit-transition-duration:0;\n          transition-duration:0; }\n  .bp3-card.bp3-interactive:active.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:active{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-collapse{\n  height:0;\n  overflow-y:hidden;\n  -webkit-transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-collapse .bp3-collapse-body{\n    -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-collapse .bp3-collapse-body[aria-hidden=\"true\"]{\n      display:none; }\n\n.bp3-context-menu .bp3-popover-target{\n  display:block; }\n\n.bp3-context-menu-popover-target{\n  position:fixed; }\n\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-dialog-container{\n  opacity:1;\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  min-height:100%;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  width:100%; }\n  .bp3-dialog-container.bp3-overlay-enter > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5); }\n  .bp3-dialog-container.bp3-overlay-enter-active > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear-active > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-dialog-container.bp3-overlay-exit > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-dialog-container.bp3-overlay-exit-active > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n\n.bp3-dialog{\n  background:#ebf1f5;\n  border-radius:6px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:30px 0;\n  padding-bottom:20px;\n  pointer-events:all;\n  -webkit-user-select:text;\n     -moz-user-select:text;\n      -ms-user-select:text;\n          user-select:text;\n  width:500px; }\n  .bp3-dialog:focus{\n    outline:0; }\n  .bp3-dialog.bp3-dark,\n  .bp3-dark .bp3-dialog{\n    background:#293742;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-dialog-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:6px 6px 0 0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding-left:20px;\n  padding-right:5px;\n  z-index:30; }\n  .bp3-dialog-header .bp3-icon-large,\n  .bp3-dialog-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-dialog-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-dialog-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-dialog-header{\n    background:#30404d;\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-dialog-header .bp3-icon-large,\n    .bp3-dark .bp3-dialog-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-dialog-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  margin:20px; }\n\n.bp3-dialog-footer{\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  margin:0 20px; }\n\n.bp3-dialog-footer-actions{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:end;\n      -ms-flex-pack:end;\n          justify-content:flex-end; }\n  .bp3-dialog-footer-actions .bp3-button{\n    margin-left:10px; }\n.bp3-multistep-dialog-panels{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n\n.bp3-multistep-dialog-left-panel{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column; }\n  .bp3-dark .bp3-multistep-dialog-left-panel{\n    background:#202b33; }\n\n.bp3-multistep-dialog-right-panel{\n  background-color:#f5f8fa;\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  border-radius:0 0 6px 0;\n  -webkit-box-flex:3;\n      -ms-flex:3;\n          flex:3;\n  min-width:0; }\n  .bp3-dark .bp3-multistep-dialog-right-panel{\n    background-color:#293742;\n    border-left:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-multistep-dialog-footer{\n  background-color:#ffffff;\n  border-radius:0 0 6px 0;\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  padding:10px; }\n  .bp3-dark .bp3-multistep-dialog-footer{\n    background:#30404d;\n    border-top:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-dialog-step-container{\n  background-color:#f5f8fa;\n  border-bottom:1px solid rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-dialog-step-container{\n    background:#293742;\n    border-bottom:1px solid rgba(16, 22, 26, 0.4); }\n  .bp3-dialog-step-container.bp3-dialog-step-viewed{\n    background-color:#ffffff; }\n    .bp3-dark .bp3-dialog-step-container.bp3-dialog-step-viewed{\n      background:#30404d; }\n\n.bp3-dialog-step{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#f5f8fa;\n  border-radius:6px;\n  cursor:not-allowed;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:4px;\n  padding:6px 14px; }\n  .bp3-dark .bp3-dialog-step{\n    background:#293742; }\n  .bp3-dialog-step-viewed .bp3-dialog-step{\n    background-color:#ffffff;\n    cursor:pointer; }\n    .bp3-dark .bp3-dialog-step-viewed .bp3-dialog-step{\n      background:#30404d; }\n  .bp3-dialog-step:hover{\n    background-color:#f5f8fa; }\n    .bp3-dark .bp3-dialog-step:hover{\n      background:#293742; }\n\n.bp3-dialog-step-icon{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:rgba(92, 112, 128, 0.6);\n  border-radius:50%;\n  color:#ffffff;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:25px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  width:25px; }\n  .bp3-dark .bp3-dialog-step-icon{\n    background-color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#2b95d6; }\n  .bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#8a9ba8; }\n\n.bp3-dialog-step-title{\n  color:rgba(92, 112, 128, 0.6);\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  padding-left:10px; }\n  .bp3-dark .bp3-dialog-step-title{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-title{\n    color:#2b95d6; }\n  .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n    color:#182026; }\n    .bp3-dark .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n      color:#f5f8fa; }\n.bp3-drawer{\n  background:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0;\n  padding:0; }\n  .bp3-drawer:focus{\n    outline:0; }\n  .bp3-drawer.bp3-position-top{\n    height:50%;\n    left:0;\n    right:0;\n    top:0; }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter, .bp3-drawer.bp3-position-top.bp3-overlay-appear{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter-active, .bp3-drawer.bp3-position-top.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit-active{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-bottom{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter-active, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-left{\n    bottom:0;\n    left:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter, .bp3-drawer.bp3-position-left.bp3-overlay-appear{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter-active, .bp3-drawer.bp3-position-left.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit-active{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-right{\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter, .bp3-drawer.bp3-position-right.bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter-active, .bp3-drawer.bp3-position-right.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right):not(.bp3-vertical){\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right).bp3-vertical{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-dark,\n  .bp3-dark .bp3-drawer{\n    background:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-drawer-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border-radius:0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding:5px;\n  padding-left:20px;\n  position:relative; }\n  .bp3-drawer-header .bp3-icon-large,\n  .bp3-drawer-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-drawer-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-drawer-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-drawer-header{\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-drawer-header .bp3-icon-large,\n    .bp3-dark .bp3-drawer-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-drawer-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  overflow:auto; }\n\n.bp3-drawer-footer{\n  -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  padding:10px 20px;\n  position:relative; }\n  .bp3-dark .bp3-drawer-footer{\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4); }\n.bp3-editable-text{\n  cursor:text;\n  display:inline-block;\n  max-width:100%;\n  position:relative;\n  vertical-align:top;\n  white-space:nowrap; }\n  .bp3-editable-text::before{\n    bottom:-3px;\n    left:-3px;\n    position:absolute;\n    right:-3px;\n    top:-3px;\n    border-radius:3px;\n    content:\"\";\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#137cbd; }\n  .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4); }\n  .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#0f9960; }\n  .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4); }\n  .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#d9822b; }\n  .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4); }\n  .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#db3737; }\n  .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4); }\n  .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-dark .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#48aff0; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4);\n            box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#3dcc91; }\n  .bp3-dark .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4);\n            box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#ffb366; }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#ff7373; }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-editable-text-input,\n.bp3-editable-text-content{\n  color:inherit;\n  display:inherit;\n  font:inherit;\n  letter-spacing:inherit;\n  max-width:inherit;\n  min-width:inherit;\n  position:relative;\n  resize:none;\n  text-transform:inherit;\n  vertical-align:top; }\n\n.bp3-editable-text-input{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0;\n  white-space:pre-wrap;\n  width:100%; }\n  .bp3-editable-text-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:focus{\n    outline:none; }\n  .bp3-editable-text-input::-ms-clear{\n    display:none; }\n\n.bp3-editable-text-content{\n  overflow:hidden;\n  padding-right:2px;\n  text-overflow:ellipsis;\n  white-space:pre; }\n  .bp3-editable-text-editing > .bp3-editable-text-content{\n    left:0;\n    position:absolute;\n    visibility:hidden; }\n  .bp3-editable-text-placeholder > .bp3-editable-text-content{\n    color:rgba(92, 112, 128, 0.6); }\n    .bp3-dark .bp3-editable-text-placeholder > .bp3-editable-text-content{\n      color:rgba(167, 182, 194, 0.6); }\n\n.bp3-editable-text.bp3-multiline{\n  display:block; }\n  .bp3-editable-text.bp3-multiline .bp3-editable-text-content{\n    overflow:auto;\n    white-space:pre-wrap;\n    word-wrap:break-word; }\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-control-group{\n  -webkit-transform:translateZ(0);\n          transform:translateZ(0);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:stretch;\n      -ms-flex-align:stretch;\n          align-items:stretch; }\n  .bp3-control-group > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select,\n  .bp3-control-group .bp3-input,\n  .bp3-control-group .bp3-select{\n    position:relative; }\n  .bp3-control-group .bp3-input{\n    border-radius:inherit;\n    z-index:2; }\n    .bp3-control-group .bp3-input:focus{\n      border-radius:3px;\n      z-index:14; }\n    .bp3-control-group .bp3-input[class*=\"bp3-intent\"]{\n      z-index:13; }\n      .bp3-control-group .bp3-input[class*=\"bp3-intent\"]:focus{\n        z-index:15; }\n    .bp3-control-group .bp3-input[readonly], .bp3-control-group .bp3-input:disabled, .bp3-control-group .bp3-input.bp3-disabled{\n      z-index:1; }\n  .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input{\n    z-index:13; }\n    .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input:focus{\n      z-index:15; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select select,\n  .bp3-control-group .bp3-select select{\n    -webkit-transform:translateZ(0);\n            transform:translateZ(0);\n    border-radius:inherit;\n    z-index:4; }\n    .bp3-control-group .bp3-button:focus,\n    .bp3-control-group .bp3-html-select select:focus,\n    .bp3-control-group .bp3-select select:focus{\n      z-index:5; }\n    .bp3-control-group .bp3-button:hover,\n    .bp3-control-group .bp3-html-select select:hover,\n    .bp3-control-group .bp3-select select:hover{\n      z-index:6; }\n    .bp3-control-group .bp3-button:active,\n    .bp3-control-group .bp3-html-select select:active,\n    .bp3-control-group .bp3-select select:active{\n      z-index:7; }\n    .bp3-control-group .bp3-button[readonly], .bp3-control-group .bp3-button:disabled, .bp3-control-group .bp3-button.bp3-disabled,\n    .bp3-control-group .bp3-html-select select[readonly],\n    .bp3-control-group .bp3-html-select select:disabled,\n    .bp3-control-group .bp3-html-select select.bp3-disabled,\n    .bp3-control-group .bp3-select select[readonly],\n    .bp3-control-group .bp3-select select:disabled,\n    .bp3-control-group .bp3-select select.bp3-disabled{\n      z-index:3; }\n    .bp3-control-group .bp3-button[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]{\n      z-index:9; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:focus{\n        z-index:10; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:hover{\n        z-index:11; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:active{\n        z-index:12; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"][readonly], .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:disabled, .bp3-control-group .bp3-button[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"].bp3-disabled{\n        z-index:8; }\n  .bp3-control-group .bp3-input-group > .bp3-icon,\n  .bp3-control-group .bp3-input-group > .bp3-button,\n  .bp3-control-group .bp3-input-group > .bp3-input-left-container,\n  .bp3-control-group .bp3-input-group > .bp3-input-action{\n    z-index:16; }\n  .bp3-control-group .bp3-select::after,\n  .bp3-control-group .bp3-html-select::after,\n  .bp3-control-group .bp3-select > .bp3-icon,\n  .bp3-control-group .bp3-html-select > .bp3-icon{\n    z-index:17; }\n  .bp3-control-group .bp3-select:focus-within{\n    z-index:5; }\n  .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:-1px; }\n  .bp3-control-group:not(.bp3-vertical) > .bp3-divider:not(:first-child){\n    margin-left:6px; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:0; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > .bp3-button + .bp3-button{\n    margin-left:1px; }\n  .bp3-control-group .bp3-popover-wrapper,\n  .bp3-control-group .bp3-popover-target{\n    border-radius:inherit; }\n  .bp3-control-group > :first-child{\n    border-radius:3px 0 0 3px; }\n  .bp3-control-group > :last-child{\n    border-radius:0 3px 3px 0;\n    margin-right:0; }\n  .bp3-control-group > :only-child{\n    border-radius:3px;\n    margin-right:0; }\n  .bp3-control-group .bp3-input-group .bp3-button{\n    border-radius:3px; }\n  .bp3-control-group .bp3-numeric-input:not(:first-child) .bp3-input-group{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-control-group.bp3-fill{\n    width:100%; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-fill > *:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-vertical{\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-control-group.bp3-vertical > *{\n      margin-top:-1px; }\n    .bp3-control-group.bp3-vertical > :first-child{\n      border-radius:3px 3px 0 0;\n      margin-top:0; }\n    .bp3-control-group.bp3-vertical > :last-child{\n      border-radius:0 0 3px 3px; }\n.bp3-control{\n  cursor:pointer;\n  display:block;\n  margin-bottom:10px;\n  position:relative;\n  text-transform:none; }\n  .bp3-control input:checked ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control input:checked ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control:not(.bp3-align-right){\n    padding-left:26px; }\n    .bp3-control:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-26px; }\n  .bp3-control.bp3-align-right{\n    padding-right:26px; }\n    .bp3-control.bp3-align-right .bp3-control-indicator{\n      margin-right:-26px; }\n  .bp3-control.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-control.bp3-inline{\n    display:inline-block;\n    margin-right:20px; }\n  .bp3-control input{\n    left:0;\n    opacity:0;\n    position:absolute;\n    top:0;\n    z-index:-1; }\n  .bp3-control .bp3-control-indicator{\n    background-clip:padding-box;\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    border:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    cursor:pointer;\n    display:inline-block;\n    font-size:16px;\n    height:1em;\n    margin-right:10px;\n    margin-top:-3px;\n    position:relative;\n    -webkit-user-select:none;\n       -moz-user-select:none;\n        -ms-user-select:none;\n            user-select:none;\n    vertical-align:middle;\n    width:1em; }\n    .bp3-control .bp3-control-indicator::before{\n      content:\"\";\n      display:block;\n      height:1em;\n      width:1em; }\n  .bp3-control:hover .bp3-control-indicator{\n    background-color:#ebf1f5; }\n  .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n    background:#d8e1e8;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    cursor:not-allowed; }\n  .bp3-control input:focus ~ .bp3-control-indicator{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:2px;\n    -moz-outline-radius:6px; }\n  .bp3-control.bp3-align-right .bp3-control-indicator{\n    float:right;\n    margin-left:10px;\n    margin-top:1px; }\n  .bp3-control.bp3-large{\n    font-size:16px; }\n    .bp3-control.bp3-large:not(.bp3-align-right){\n      padding-left:30px; }\n      .bp3-control.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n        margin-left:-30px; }\n    .bp3-control.bp3-large.bp3-align-right{\n      padding-right:30px; }\n      .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n        margin-right:-30px; }\n    .bp3-control.bp3-large .bp3-control-indicator{\n      font-size:20px; }\n    .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-top:0; }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control.bp3-checkbox .bp3-control-indicator{\n    border-radius:3px; }\n  .bp3-control.bp3-checkbox input:checked ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0012 5z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-radio .bp3-control-indicator{\n    border-radius:50%; }\n  .bp3-control.bp3-radio input:checked ~ .bp3-control-indicator::before{\n    background-image:radial-gradient(#ffffff, #ffffff 28%, transparent 32%); }\n  .bp3-control.bp3-radio input:checked:disabled ~ .bp3-control-indicator::before{\n    opacity:0.5; }\n  .bp3-control.bp3-radio input:focus ~ .bp3-control-indicator{\n    -moz-outline-radius:16px; }\n  .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(167, 182, 194, 0.5); }\n  .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(115, 134, 148, 0.5); }\n  .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(92, 112, 128, 0.5); }\n  .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5); }\n    .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5); }\n    .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch:not(.bp3-align-right){\n    padding-left:38px; }\n    .bp3-control.bp3-switch:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-38px; }\n  .bp3-control.bp3-switch.bp3-align-right{\n    padding-right:38px; }\n    .bp3-control.bp3-switch.bp3-align-right .bp3-control-indicator{\n      margin-right:-38px; }\n  .bp3-control.bp3-switch .bp3-control-indicator{\n    border:none;\n    border-radius:1.75em;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important;\n    min-width:1.75em;\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:auto; }\n    .bp3-control.bp3-switch .bp3-control-indicator::before{\n      background:#ffffff;\n      border-radius:50%;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n      height:calc(1em - 4px);\n      left:0;\n      margin:2px;\n      position:absolute;\n      -webkit-transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      width:calc(1em - 4px); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    left:calc(100% - 1em); }\n  .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right){\n    padding-left:45px; }\n    .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-45px; }\n  .bp3-control.bp3-switch.bp3-large.bp3-align-right{\n    padding-right:45px; }\n    .bp3-control.bp3-switch.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-right:-45px; }\n  .bp3-dark .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.7); }\n  .bp3-dark .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.9); }\n  .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(57, 75, 89, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-dark .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch .bp3-control-indicator::before{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-control.bp3-switch .bp3-switch-inner-text{\n    font-size:0.7em;\n    text-align:center; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:first-child{\n    line-height:0;\n    margin-left:0.5em;\n    margin-right:1.2em;\n    visibility:hidden; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:last-child{\n    line-height:1em;\n    margin-left:1.2em;\n    margin-right:0.5em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:first-child{\n    line-height:1em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:last-child{\n    line-height:0;\n    visibility:hidden; }\n  .bp3-dark .bp3-control{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-control.bp3-disabled{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-control .bp3-control-indicator{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-control:hover .bp3-control-indicator{\n      background-color:#30404d; }\n    .bp3-dark .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n      background:#202b33;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-control input:disabled ~ .bp3-control-indicator{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      cursor:not-allowed; }\n    .bp3-dark .bp3-control.bp3-checkbox input:disabled:checked ~ .bp3-control-indicator, .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-file-input{\n  cursor:pointer;\n  display:inline-block;\n  height:30px;\n  position:relative; }\n  .bp3-file-input input{\n    margin:0;\n    min-width:200px;\n    opacity:0; }\n    .bp3-file-input input:disabled + .bp3-file-upload-input,\n    .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n      background:rgba(206, 217, 224, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      resize:none; }\n      .bp3-file-input input:disabled + .bp3-file-upload-input::after,\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n        background-color:rgba(206, 217, 224, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(92, 112, 128, 0.6);\n        cursor:not-allowed;\n        outline:none; }\n        .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active:hover,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active:hover{\n          background:rgba(206, 217, 224, 0.7); }\n      .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input, .bp3-dark\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n        background:rgba(57, 75, 89, 0.5);\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after, .bp3-dark\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n          background-color:rgba(57, 75, 89, 0.5);\n          background-image:none;\n          -webkit-box-shadow:none;\n                  box-shadow:none;\n          color:rgba(167, 182, 194, 0.6); }\n          .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-dark\n          .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active{\n            background:rgba(57, 75, 89, 0.7); }\n  .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#182026; }\n  .bp3-dark .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#f5f8fa; }\n  .bp3-file-input.bp3-fill{\n    width:100%; }\n  .bp3-file-input.bp3-large,\n  .bp3-large .bp3-file-input{\n    height:40px; }\n  .bp3-file-input .bp3-file-upload-input-custom-text::after{\n    content:attr(bp3-button-text); }\n\n.bp3-file-upload-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle;\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:rgba(92, 112, 128, 0.6);\n  left:0;\n  padding-right:80px;\n  position:absolute;\n  right:0;\n  top:0;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-file-upload-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:focus, .bp3-file-upload-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-file-upload-input[type=\"search\"], .bp3-file-upload-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-file-upload-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-file-upload-input:disabled, .bp3-file-upload-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-file-upload-input::after{\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026;\n    min-height:24px;\n    min-width:24px;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    border-radius:3px;\n    content:\"Browse\";\n    line-height:24px;\n    margin:3px;\n    position:absolute;\n    right:0;\n    text-align:center;\n    top:0;\n    width:70px; }\n    .bp3-file-upload-input::after:hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-file-upload-input::after:active, .bp3-file-upload-input::after.bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-file-upload-input::after:disabled, .bp3-file-upload-input::after.bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-file-upload-input::after:disabled.bp3-active, .bp3-file-upload-input::after:disabled.bp3-active:hover, .bp3-file-upload-input::after.bp3-disabled.bp3-active, .bp3-file-upload-input::after.bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-file-upload-input:hover::after{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-file-upload-input:active::after{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-large .bp3-file-upload-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px;\n    padding-right:95px; }\n    .bp3-large .bp3-file-upload-input[type=\"search\"], .bp3-large .bp3-file-upload-input.bp3-round{\n      padding:0 15px; }\n    .bp3-large .bp3-file-upload-input::after{\n      min-height:30px;\n      min-width:30px;\n      line-height:30px;\n      margin:5px;\n      width:85px; }\n  .bp3-dark .bp3-file-upload-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:disabled, .bp3-dark .bp3-file-upload-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::after{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n      color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover, .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover{\n        background-color:#30404d;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        background-color:#202b33;\n        background-image:none;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n      .bp3-dark .bp3-file-upload-input::after:disabled, .bp3-dark .bp3-file-upload-input::after.bp3-disabled{\n        background-color:rgba(57, 75, 89, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-upload-input::after:disabled.bp3-active, .bp3-dark .bp3-file-upload-input::after.bp3-disabled.bp3-active{\n          background:rgba(57, 75, 89, 0.7); }\n      .bp3-dark .bp3-file-upload-input::after .bp3-button-spinner .bp3-spinner-head{\n        background:rgba(16, 22, 26, 0.5);\n        stroke:#8a9ba8; }\n    .bp3-dark .bp3-file-upload-input:hover::after{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:active::after{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n.bp3-file-upload-input::after{\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n.bp3-form-group{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0 0 15px; }\n  .bp3-form-group label.bp3-label{\n    margin-bottom:5px; }\n  .bp3-form-group .bp3-control{\n    margin-top:7px; }\n  .bp3-form-group .bp3-form-helper-text{\n    color:#5c7080;\n    font-size:12px;\n    margin-top:5px; }\n  .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#106ba3; }\n  .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#0d8050; }\n  .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#bf7326; }\n  .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#c23030; }\n  .bp3-form-group.bp3-inline{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row; }\n    .bp3-form-group.bp3-inline.bp3-large label.bp3-label{\n      line-height:40px;\n      margin:0 10px 0 0; }\n    .bp3-form-group.bp3-inline label.bp3-label{\n      line-height:30px;\n      margin:0 10px 0 0; }\n  .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-dark .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#48aff0; }\n  .bp3-dark .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#3dcc91; }\n  .bp3-dark .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#ffb366; }\n  .bp3-dark .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#ff7373; }\n  .bp3-dark .bp3-form-group .bp3-form-helper-text{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(167, 182, 194, 0.6) !important; }\n.bp3-input-group{\n  display:block;\n  position:relative; }\n  .bp3-input-group .bp3-input{\n    position:relative;\n    width:100%; }\n    .bp3-input-group .bp3-input:not(:first-child){\n      padding-left:30px; }\n    .bp3-input-group .bp3-input:not(:last-child){\n      padding-right:30px; }\n  .bp3-input-group .bp3-input-action,\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-button,\n  .bp3-input-group > .bp3-icon{\n    position:absolute;\n    top:0; }\n    .bp3-input-group .bp3-input-action:first-child,\n    .bp3-input-group > .bp3-input-left-container:first-child,\n    .bp3-input-group > .bp3-button:first-child,\n    .bp3-input-group > .bp3-icon:first-child{\n      left:0; }\n    .bp3-input-group .bp3-input-action:last-child,\n    .bp3-input-group > .bp3-input-left-container:last-child,\n    .bp3-input-group > .bp3-button:last-child,\n    .bp3-input-group > .bp3-icon:last-child{\n      right:0; }\n  .bp3-input-group .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    margin:3px;\n    padding:0 7px; }\n    .bp3-input-group .bp3-button:empty{\n      padding:0; }\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-icon{\n    z-index:1; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon{\n    color:#5c7080; }\n    .bp3-input-group > .bp3-input-left-container > .bp3-icon:empty,\n    .bp3-input-group > .bp3-icon:empty{\n      font-family:\"Icons16\", sans-serif;\n      font-size:16px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon,\n  .bp3-input-group .bp3-input-action > .bp3-spinner{\n    margin:7px; }\n  .bp3-input-group .bp3-tag{\n    margin:5px; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus),\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n    color:#5c7080; }\n    .bp3-dark .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus), .bp3-dark\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n      color:#a7b6c2; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large{\n      color:#5c7080; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled,\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled{\n    color:rgba(92, 112, 128, 0.6) !important; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-large{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-input-group.bp3-disabled{\n    cursor:not-allowed; }\n    .bp3-input-group.bp3-disabled .bp3-icon{\n      color:rgba(92, 112, 128, 0.6); }\n  .bp3-input-group.bp3-large .bp3-button{\n    min-height:30px;\n    min-width:30px;\n    margin:5px; }\n  .bp3-input-group.bp3-large > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-large > .bp3-icon,\n  .bp3-input-group.bp3-large .bp3-input-action > .bp3-spinner{\n    margin:12px; }\n  .bp3-input-group.bp3-large .bp3-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input-group.bp3-large .bp3-input[type=\"search\"], .bp3-input-group.bp3-large .bp3-input.bp3-round{\n      padding:0 15px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:first-child){\n      padding-left:40px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:last-child){\n      padding-right:40px; }\n  .bp3-input-group.bp3-small .bp3-button{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small .bp3-tag{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-small > .bp3-icon,\n  .bp3-input-group.bp3-small .bp3-input-action > .bp3-spinner{\n    margin:4px; }\n  .bp3-input-group.bp3-small .bp3-input{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input-group.bp3-small .bp3-input[type=\"search\"], .bp3-input-group.bp3-small .bp3-input.bp3-round{\n      padding:0 12px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:first-child){\n      padding-left:24px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:last-child){\n      padding-right:24px; }\n  .bp3-input-group.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-input-group.bp3-round .bp3-button,\n  .bp3-input-group.bp3-round .bp3-input,\n  .bp3-input-group.bp3-round .bp3-tag{\n    border-radius:30px; }\n  .bp3-dark .bp3-input-group .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-input-group.bp3-disabled .bp3-icon{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-input-group.bp3-intent-primary .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input-group.bp3-intent-primary .bp3-input:disabled, .bp3-input-group.bp3-intent-primary .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-primary > .bp3-icon{\n    color:#106ba3; }\n    .bp3-dark .bp3-input-group.bp3-intent-primary > .bp3-icon{\n      color:#48aff0; }\n  .bp3-input-group.bp3-intent-success .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input-group.bp3-intent-success .bp3-input:disabled, .bp3-input-group.bp3-intent-success .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-success > .bp3-icon{\n    color:#0d8050; }\n    .bp3-dark .bp3-input-group.bp3-intent-success > .bp3-icon{\n      color:#3dcc91; }\n  .bp3-input-group.bp3-intent-warning .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input-group.bp3-intent-warning .bp3-input:disabled, .bp3-input-group.bp3-intent-warning .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-warning > .bp3-icon{\n    color:#bf7326; }\n    .bp3-dark .bp3-input-group.bp3-intent-warning > .bp3-icon{\n      color:#ffb366; }\n  .bp3-input-group.bp3-intent-danger .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input-group.bp3-intent-danger .bp3-input:disabled, .bp3-input-group.bp3-intent-danger .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-danger > .bp3-icon{\n    color:#c23030; }\n    .bp3-dark .bp3-input-group.bp3-intent-danger > .bp3-icon{\n      color:#ff7373; }\n.bp3-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle; }\n  .bp3-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:focus, .bp3-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-input[type=\"search\"], .bp3-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-input:disabled, .bp3-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-input.bp3-large{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input.bp3-large[type=\"search\"], .bp3-input.bp3-large.bp3-round{\n      padding:0 15px; }\n  .bp3-input.bp3-small{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input.bp3-small[type=\"search\"], .bp3-input.bp3-small.bp3-round{\n      padding:0 12px; }\n  .bp3-input.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-dark .bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input:disabled, .bp3-dark .bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-input.bp3-intent-primary{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input.bp3-intent-primary:disabled, .bp3-input.bp3-intent-primary.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary:focus{\n        -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n                box-shadow:inset 0 0 0 1px #137cbd; }\n      .bp3-dark .bp3-input.bp3-intent-primary:disabled, .bp3-dark .bp3-input.bp3-intent-primary.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-success{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input.bp3-intent-success:disabled, .bp3-input.bp3-intent-success.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success:focus{\n        -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n                box-shadow:inset 0 0 0 1px #0f9960; }\n      .bp3-dark .bp3-input.bp3-intent-success:disabled, .bp3-dark .bp3-input.bp3-intent-success.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-warning{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input.bp3-intent-warning:disabled, .bp3-input.bp3-intent-warning.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning:focus{\n        -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n                box-shadow:inset 0 0 0 1px #d9822b; }\n      .bp3-dark .bp3-input.bp3-intent-warning:disabled, .bp3-dark .bp3-input.bp3-intent-warning.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-danger{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input.bp3-intent-danger:disabled, .bp3-input.bp3-intent-danger.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger:focus{\n        -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #db3737;\n                box-shadow:inset 0 0 0 1px #db3737; }\n      .bp3-dark .bp3-input.bp3-intent-danger:disabled, .bp3-dark .bp3-input.bp3-intent-danger.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input::-ms-clear{\n    display:none; }\ntextarea.bp3-input{\n  max-width:100%;\n  padding:10px; }\n  textarea.bp3-input, textarea.bp3-input.bp3-large, textarea.bp3-input.bp3-small{\n    height:auto;\n    line-height:inherit; }\n  textarea.bp3-input.bp3-small{\n    padding:8px; }\n  .bp3-dark textarea.bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark textarea.bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input:disabled, .bp3-dark textarea.bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\nlabel.bp3-label{\n  display:block;\n  margin-bottom:15px;\n  margin-top:0; }\n  label.bp3-label .bp3-html-select,\n  label.bp3-label .bp3-input,\n  label.bp3-label .bp3-select,\n  label.bp3-label .bp3-slider,\n  label.bp3-label .bp3-popover-wrapper{\n    display:block;\n    margin-top:5px;\n    text-transform:none; }\n  label.bp3-label .bp3-button-group{\n    margin-top:5px; }\n  label.bp3-label .bp3-select select,\n  label.bp3-label .bp3-html-select select{\n    font-weight:400;\n    vertical-align:top;\n    width:100%; }\n  label.bp3-label.bp3-disabled,\n  label.bp3-label.bp3-disabled .bp3-text-muted{\n    color:rgba(92, 112, 128, 0.6); }\n  label.bp3-label.bp3-inline{\n    line-height:30px; }\n    label.bp3-label.bp3-inline .bp3-html-select,\n    label.bp3-label.bp3-inline .bp3-input,\n    label.bp3-label.bp3-inline .bp3-input-group,\n    label.bp3-label.bp3-inline .bp3-select,\n    label.bp3-label.bp3-inline .bp3-popover-wrapper{\n      display:inline-block;\n      margin:0 0 0 5px;\n      vertical-align:top; }\n    label.bp3-label.bp3-inline .bp3-button-group{\n      margin:0 0 0 5px; }\n    label.bp3-label.bp3-inline .bp3-input-group .bp3-input{\n      margin-left:0; }\n    label.bp3-label.bp3-inline.bp3-large{\n      line-height:40px; }\n  label.bp3-label:not(.bp3-inline) .bp3-popover-target{\n    display:block; }\n  .bp3-dark label.bp3-label{\n    color:#f5f8fa; }\n    .bp3-dark label.bp3-label.bp3-disabled,\n    .bp3-dark label.bp3-label.bp3-disabled .bp3-text-muted{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 14px;\n          flex:1 1 14px;\n  min-height:0;\n  padding:0;\n  width:30px; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:first-child{\n    border-radius:0 3px 0 0; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:last-child{\n    border-radius:0 0 3px 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:first-child{\n  border-radius:3px 0 0 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:last-child{\n  border-radius:0 0 0 3px; }\n\n.bp3-numeric-input.bp3-large .bp3-button-group.bp3-vertical > .bp3-button{\n  width:40px; }\n\nform{\n  display:block; }\n.bp3-html-select select,\n.bp3-select select{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  -moz-appearance:none;\n  -webkit-appearance:none;\n  border-radius:3px;\n  height:30px;\n  padding:0 25px 0 10px;\n  width:100%; }\n  .bp3-html-select select > *, .bp3-select select > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-html-select select > .bp3-fill, .bp3-select select > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-html-select select::before,\n  .bp3-select select::before, .bp3-html-select select > *, .bp3-select select > *{\n    margin-right:7px; }\n  .bp3-html-select select:empty::before,\n  .bp3-select select:empty::before,\n  .bp3-html-select select > :last-child,\n  .bp3-select select > :last-child{\n    margin-right:0; }\n  .bp3-html-select select:hover,\n  .bp3-select select:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-html-select select:active,\n  .bp3-select select:active, .bp3-html-select select.bp3-active,\n  .bp3-select select.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-html-select select:disabled,\n  .bp3-select select:disabled, .bp3-html-select select.bp3-disabled,\n  .bp3-select select.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-html-select select:disabled.bp3-active,\n    .bp3-select select:disabled.bp3-active, .bp3-html-select select:disabled.bp3-active:hover,\n    .bp3-select select:disabled.bp3-active:hover, .bp3-html-select select.bp3-disabled.bp3-active,\n    .bp3-select select.bp3-disabled.bp3-active, .bp3-html-select select.bp3-disabled.bp3-active:hover,\n    .bp3-select select.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n\n.bp3-html-select.bp3-minimal select,\n.bp3-select.bp3-minimal select{\n  background:none;\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  .bp3-html-select.bp3-minimal select:hover,\n  .bp3-select.bp3-minimal select:hover{\n    background:rgba(167, 182, 194, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026;\n    text-decoration:none; }\n  .bp3-html-select.bp3-minimal select:active,\n  .bp3-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal select.bp3-active,\n  .bp3-select.bp3-minimal select.bp3-active{\n    background:rgba(115, 134, 148, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026; }\n  .bp3-html-select.bp3-minimal select:disabled,\n  .bp3-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal select:disabled:hover,\n  .bp3-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal select.bp3-disabled,\n  .bp3-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal select.bp3-disabled:hover,\n  .bp3-select.bp3-minimal select.bp3-disabled:hover{\n    background:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n    .bp3-html-select.bp3-minimal select:disabled.bp3-active,\n    .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active{\n      background:rgba(115, 134, 148, 0.3); }\n  .bp3-dark .bp3-html-select.bp3-minimal select, .bp3-html-select.bp3-minimal .bp3-dark select,\n  .bp3-dark .bp3-select.bp3-minimal select, .bp3-select.bp3-minimal .bp3-dark select{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover, .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover{\n      background:rgba(138, 155, 168, 0.15); }\n    .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:rgba(138, 155, 168, 0.3);\n      color:#f5f8fa; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal .bp3-dark select:disabled,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled, .bp3-select.bp3-minimal .bp3-dark select:disabled, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled:hover, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover{\n      background:none;\n      color:rgba(167, 182, 194, 0.6);\n      cursor:not-allowed; }\n      .bp3-dark .bp3-html-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active{\n        background:rgba(138, 155, 168, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-primary,\n  .bp3-select.bp3-minimal select.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover{\n      background:rgba(19, 124, 189, 0.15);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:rgba(19, 124, 189, 0.3);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled{\n      background:none;\n      color:rgba(16, 107, 163, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active{\n        background:rgba(19, 124, 189, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n      stroke:#106ba3; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary{\n      color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.2);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(72, 175, 240, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-success,\n  .bp3-select.bp3-minimal select.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover{\n      background:rgba(15, 153, 96, 0.15);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:rgba(15, 153, 96, 0.3);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled{\n      background:none;\n      color:rgba(13, 128, 80, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active{\n        background:rgba(15, 153, 96, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n      stroke:#0d8050; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success{\n      color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.2);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(61, 204, 145, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-warning,\n  .bp3-select.bp3-minimal select.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover{\n      background:rgba(217, 130, 43, 0.15);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:rgba(217, 130, 43, 0.3);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled{\n      background:none;\n      color:rgba(191, 115, 38, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active{\n        background:rgba(217, 130, 43, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n      stroke:#bf7326; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning{\n      color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.2);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(255, 179, 102, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-danger,\n  .bp3-select.bp3-minimal select.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover{\n      background:rgba(219, 55, 55, 0.15);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:rgba(219, 55, 55, 0.3);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled{\n      background:none;\n      color:rgba(194, 48, 48, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active{\n        background:rgba(219, 55, 55, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n      stroke:#c23030; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger{\n      color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.2);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(255, 115, 115, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n\n.bp3-html-select.bp3-large select,\n.bp3-select.bp3-large select{\n  font-size:16px;\n  height:40px;\n  padding-right:35px; }\n\n.bp3-dark .bp3-html-select select, .bp3-dark .bp3-select select{\n  background-color:#394b59;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n  color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover, .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    background-color:#202b33;\n    background-image:none;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-html-select select:disabled, .bp3-dark .bp3-select select:disabled, .bp3-dark .bp3-html-select select.bp3-disabled, .bp3-dark .bp3-select select.bp3-disabled{\n    background-color:rgba(57, 75, 89, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-html-select select:disabled.bp3-active, .bp3-dark .bp3-select select:disabled.bp3-active, .bp3-dark .bp3-html-select select.bp3-disabled.bp3-active, .bp3-dark .bp3-select select.bp3-disabled.bp3-active{\n      background:rgba(57, 75, 89, 0.7); }\n  .bp3-dark .bp3-html-select select .bp3-button-spinner .bp3-spinner-head, .bp3-dark .bp3-select select .bp3-button-spinner .bp3-spinner-head{\n    background:rgba(16, 22, 26, 0.5);\n    stroke:#8a9ba8; }\n\n.bp3-html-select select:disabled,\n.bp3-select select:disabled{\n  background-color:rgba(206, 217, 224, 0.5);\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-html-select .bp3-icon,\n.bp3-select .bp3-icon, .bp3-select::after{\n  color:#5c7080;\n  pointer-events:none;\n  position:absolute;\n  right:7px;\n  top:7px; }\n  .bp3-html-select .bp3-disabled.bp3-icon,\n  .bp3-select .bp3-disabled.bp3-icon, .bp3-disabled.bp3-select::after{\n    color:rgba(92, 112, 128, 0.6); }\n.bp3-html-select,\n.bp3-select{\n  display:inline-block;\n  letter-spacing:normal;\n  position:relative;\n  vertical-align:middle; }\n  .bp3-html-select select::-ms-expand,\n  .bp3-select select::-ms-expand{\n    display:none; }\n  .bp3-html-select .bp3-icon,\n  .bp3-select .bp3-icon{\n    color:#5c7080; }\n    .bp3-html-select .bp3-icon:hover,\n    .bp3-select .bp3-icon:hover{\n      color:#182026; }\n    .bp3-dark .bp3-html-select .bp3-icon, .bp3-dark\n    .bp3-select .bp3-icon{\n      color:#a7b6c2; }\n      .bp3-dark .bp3-html-select .bp3-icon:hover, .bp3-dark\n      .bp3-select .bp3-icon:hover{\n        color:#f5f8fa; }\n  .bp3-html-select.bp3-large::after,\n  .bp3-html-select.bp3-large .bp3-icon,\n  .bp3-select.bp3-large::after,\n  .bp3-select.bp3-large .bp3-icon{\n    right:12px;\n    top:12px; }\n  .bp3-html-select.bp3-fill,\n  .bp3-html-select.bp3-fill select,\n  .bp3-select.bp3-fill,\n  .bp3-select.bp3-fill select{\n    width:100%; }\n  .bp3-dark .bp3-html-select option, .bp3-dark\n  .bp3-select option{\n    background-color:#30404d;\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select option:disabled, .bp3-dark\n  .bp3-select option:disabled{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-html-select::after, .bp3-dark\n  .bp3-select::after{\n    color:#a7b6c2; }\n\n.bp3-select::after{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  content:\"\"; }\n.bp3-running-text table, table.bp3-html-table{\n  border-spacing:0;\n  font-size:14px; }\n  .bp3-running-text table th, table.bp3-html-table th,\n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    padding:11px;\n    text-align:left;\n    vertical-align:top; }\n  .bp3-running-text table th, table.bp3-html-table th{\n    color:#182026;\n    font-weight:600; }\n  \n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    color:#182026; }\n  .bp3-running-text table tbody tr:first-child th, table.bp3-html-table tbody tr:first-child th,\n  .bp3-running-text table tbody tr:first-child td,\n  table.bp3-html-table tbody tr:first-child td,\n  .bp3-running-text table tfoot tr:first-child th,\n  table.bp3-html-table tfoot tr:first-child th,\n  .bp3-running-text table tfoot tr:first-child td,\n  table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-running-text table th, .bp3-running-text .bp3-dark table th, .bp3-dark table.bp3-html-table th{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table td, .bp3-running-text .bp3-dark table td, .bp3-dark table.bp3-html-table td{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table tbody tr:first-child th, .bp3-running-text .bp3-dark table tbody tr:first-child th, .bp3-dark table.bp3-html-table tbody tr:first-child th,\n  .bp3-dark .bp3-running-text table tbody tr:first-child td,\n  .bp3-running-text .bp3-dark table tbody tr:first-child td,\n  .bp3-dark table.bp3-html-table tbody tr:first-child td,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child th,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child th,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child th,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child td,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child td,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-condensed th,\ntable.bp3-html-table.bp3-html-table-condensed td, table.bp3-html-table.bp3-small th,\ntable.bp3-html-table.bp3-small td{\n  padding-bottom:6px;\n  padding-top:6px; }\n\ntable.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n  background:rgba(191, 204, 214, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n  -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered tbody tr td,\ntable.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n  -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n  table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n    -webkit-box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-interactive tbody tr:hover td{\n  background-color:rgba(191, 204, 214, 0.3);\n  cursor:pointer; }\n\ntable.bp3-html-table.bp3-interactive tbody tr:active td{\n  background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-dark table.bp3-html-table{ }\n  .bp3-dark table.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n    background:rgba(92, 112, 128, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td,\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n      -webkit-box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15);\n              box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:first-child{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:hover td{\n    background-color:rgba(92, 112, 128, 0.3);\n    cursor:pointer; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:active td{\n    background-color:rgba(92, 112, 128, 0.4); }\n\n.bp3-key-combo{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center; }\n  .bp3-key-combo > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-key-combo > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-key-combo::before,\n  .bp3-key-combo > *{\n    margin-right:5px; }\n  .bp3-key-combo:empty::before,\n  .bp3-key-combo > :last-child{\n    margin-right:0; }\n\n.bp3-hotkey-dialog{\n  padding-bottom:0;\n  top:40px; }\n  .bp3-hotkey-dialog .bp3-dialog-body{\n    margin:0;\n    padding:0; }\n  .bp3-hotkey-dialog .bp3-hotkey-label{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1; }\n\n.bp3-hotkey-column{\n  margin:auto;\n  max-height:80vh;\n  overflow-y:auto;\n  padding:30px; }\n  .bp3-hotkey-column .bp3-heading{\n    margin-bottom:20px; }\n    .bp3-hotkey-column .bp3-heading:not(:first-child){\n      margin-top:40px; }\n\n.bp3-hotkey{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:justify;\n      -ms-flex-pack:justify;\n          justify-content:space-between;\n  margin-left:0;\n  margin-right:0; }\n  .bp3-hotkey:not(:last-child){\n    margin-bottom:10px; }\n.bp3-icon{\n  display:inline-block;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  vertical-align:text-bottom; }\n  .bp3-icon:not(:empty)::before{\n    content:\"\" !important;\n    content:unset !important; }\n  .bp3-icon > svg{\n    display:block; }\n    .bp3-icon > svg:not([fill]){\n      fill:currentColor; }\n\n.bp3-icon.bp3-intent-primary, .bp3-icon-standard.bp3-intent-primary, .bp3-icon-large.bp3-intent-primary{\n  color:#106ba3; }\n  .bp3-dark .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-icon-large.bp3-intent-primary{\n    color:#48aff0; }\n\n.bp3-icon.bp3-intent-success, .bp3-icon-standard.bp3-intent-success, .bp3-icon-large.bp3-intent-success{\n  color:#0d8050; }\n  .bp3-dark .bp3-icon.bp3-intent-success, .bp3-dark .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-icon-large.bp3-intent-success{\n    color:#3dcc91; }\n\n.bp3-icon.bp3-intent-warning, .bp3-icon-standard.bp3-intent-warning, .bp3-icon-large.bp3-intent-warning{\n  color:#bf7326; }\n  .bp3-dark .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-icon-large.bp3-intent-warning{\n    color:#ffb366; }\n\n.bp3-icon.bp3-intent-danger, .bp3-icon-standard.bp3-intent-danger, .bp3-icon-large.bp3-intent-danger{\n  color:#c23030; }\n  .bp3-dark .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-icon-large.bp3-intent-danger{\n    color:#ff7373; }\n\nspan.bp3-icon-standard{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon-large{\n  font-family:\"Icons20\", sans-serif;\n  font-size:20px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon:empty{\n  font-family:\"Icons20\";\n  font-size:inherit;\n  font-style:normal;\n  font-weight:400;\n  line-height:1; }\n  span.bp3-icon:empty::before{\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased; }\n\n.bp3-icon-add::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-artifact::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-folder::before{\n  content:\"\"; }\n\n.bp3-icon-airplane::before{\n  content:\"\"; }\n\n.bp3-icon-align-center::before{\n  content:\"\"; }\n\n.bp3-icon-align-justify::before{\n  content:\"\"; }\n\n.bp3-icon-align-left::before{\n  content:\"\"; }\n\n.bp3-icon-align-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-horizontal-center::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-left::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-top::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-vertical-center::before{\n  content:\"\"; }\n\n.bp3-icon-annotation::before{\n  content:\"\"; }\n\n.bp3-icon-application::before{\n  content:\"\"; }\n\n.bp3-icon-applications::before{\n  content:\"\"; }\n\n.bp3-icon-archive::before{\n  content:\"\"; }\n\n.bp3-icon-arrow-bottom-left::before{\n  content:\"↙\"; }\n\n.bp3-icon-arrow-bottom-right::before{\n  content:\"↘\"; }\n\n.bp3-icon-arrow-down::before{\n  content:\"↓\"; }\n\n.bp3-icon-arrow-left::before{\n  content:\"←\"; }\n\n.bp3-icon-arrow-right::before{\n  content:\"→\"; }\n\n.bp3-icon-arrow-top-left::before{\n  content:\"↖\"; }\n\n.bp3-icon-arrow-top-right::before{\n  content:\"↗\"; }\n\n.bp3-icon-arrow-up::before{\n  content:\"↑\"; }\n\n.bp3-icon-arrows-horizontal::before{\n  content:\"↔\"; }\n\n.bp3-icon-arrows-vertical::before{\n  content:\"↕\"; }\n\n.bp3-icon-asterisk::before{\n  content:\"*\"; }\n\n.bp3-icon-automatic-updates::before{\n  content:\"\"; }\n\n.bp3-icon-badge::before{\n  content:\"\"; }\n\n.bp3-icon-ban-circle::before{\n  content:\"\"; }\n\n.bp3-icon-bank-account::before{\n  content:\"\"; }\n\n.bp3-icon-barcode::before{\n  content:\"\"; }\n\n.bp3-icon-blank::before{\n  content:\"\"; }\n\n.bp3-icon-blocked-person::before{\n  content:\"\"; }\n\n.bp3-icon-bold::before{\n  content:\"\"; }\n\n.bp3-icon-book::before{\n  content:\"\"; }\n\n.bp3-icon-bookmark::before{\n  content:\"\"; }\n\n.bp3-icon-box::before{\n  content:\"\"; }\n\n.bp3-icon-briefcase::before{\n  content:\"\"; }\n\n.bp3-icon-bring-data::before{\n  content:\"\"; }\n\n.bp3-icon-build::before{\n  content:\"\"; }\n\n.bp3-icon-calculator::before{\n  content:\"\"; }\n\n.bp3-icon-calendar::before{\n  content:\"\"; }\n\n.bp3-icon-camera::before{\n  content:\"\"; }\n\n.bp3-icon-caret-down::before{\n  content:\"⌄\"; }\n\n.bp3-icon-caret-left::before{\n  content:\"〈\"; }\n\n.bp3-icon-caret-right::before{\n  content:\"〉\"; }\n\n.bp3-icon-caret-up::before{\n  content:\"⌃\"; }\n\n.bp3-icon-cell-tower::before{\n  content:\"\"; }\n\n.bp3-icon-changes::before{\n  content:\"\"; }\n\n.bp3-icon-chart::before{\n  content:\"\"; }\n\n.bp3-icon-chat::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-backward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-forward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-circle::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-down::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-left::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-right::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-up::before{\n  content:\"\"; }\n\n.bp3-icon-citation::before{\n  content:\"\"; }\n\n.bp3-icon-clean::before{\n  content:\"\"; }\n\n.bp3-icon-clipboard::before{\n  content:\"\"; }\n\n.bp3-icon-cloud::before{\n  content:\"☁\"; }\n\n.bp3-icon-cloud-download::before{\n  content:\"\"; }\n\n.bp3-icon-cloud-upload::before{\n  content:\"\"; }\n\n.bp3-icon-code::before{\n  content:\"\"; }\n\n.bp3-icon-code-block::before{\n  content:\"\"; }\n\n.bp3-icon-cog::before{\n  content:\"\"; }\n\n.bp3-icon-collapse-all::before{\n  content:\"\"; }\n\n.bp3-icon-column-layout::before{\n  content:\"\"; }\n\n.bp3-icon-comment::before{\n  content:\"\"; }\n\n.bp3-icon-comparison::before{\n  content:\"\"; }\n\n.bp3-icon-compass::before{\n  content:\"\"; }\n\n.bp3-icon-compressed::before{\n  content:\"\"; }\n\n.bp3-icon-confirm::before{\n  content:\"\"; }\n\n.bp3-icon-console::before{\n  content:\"\"; }\n\n.bp3-icon-contrast::before{\n  content:\"\"; }\n\n.bp3-icon-control::before{\n  content:\"\"; }\n\n.bp3-icon-credit-card::before{\n  content:\"\"; }\n\n.bp3-icon-cross::before{\n  content:\"✗\"; }\n\n.bp3-icon-crown::before{\n  content:\"\"; }\n\n.bp3-icon-cube::before{\n  content:\"\"; }\n\n.bp3-icon-cube-add::before{\n  content:\"\"; }\n\n.bp3-icon-cube-remove::before{\n  content:\"\"; }\n\n.bp3-icon-curved-range-chart::before{\n  content:\"\"; }\n\n.bp3-icon-cut::before{\n  content:\"\"; }\n\n.bp3-icon-dashboard::before{\n  content:\"\"; }\n\n.bp3-icon-data-lineage::before{\n  content:\"\"; }\n\n.bp3-icon-database::before{\n  content:\"\"; }\n\n.bp3-icon-delete::before{\n  content:\"\"; }\n\n.bp3-icon-delta::before{\n  content:\"Δ\"; }\n\n.bp3-icon-derive-column::before{\n  content:\"\"; }\n\n.bp3-icon-desktop::before{\n  content:\"\"; }\n\n.bp3-icon-diagnosis::before{\n  content:\"\"; }\n\n.bp3-icon-diagram-tree::before{\n  content:\"\"; }\n\n.bp3-icon-direction-left::before{\n  content:\"\"; }\n\n.bp3-icon-direction-right::before{\n  content:\"\"; }\n\n.bp3-icon-disable::before{\n  content:\"\"; }\n\n.bp3-icon-document::before{\n  content:\"\"; }\n\n.bp3-icon-document-open::before{\n  content:\"\"; }\n\n.bp3-icon-document-share::before{\n  content:\"\"; }\n\n.bp3-icon-dollar::before{\n  content:\"$\"; }\n\n.bp3-icon-dot::before{\n  content:\"•\"; }\n\n.bp3-icon-double-caret-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-double-caret-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-doughnut-chart::before{\n  content:\"\"; }\n\n.bp3-icon-download::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-draw::before{\n  content:\"\"; }\n\n.bp3-icon-drive-time::before{\n  content:\"\"; }\n\n.bp3-icon-duplicate::before{\n  content:\"\"; }\n\n.bp3-icon-edit::before{\n  content:\"✎\"; }\n\n.bp3-icon-eject::before{\n  content:\"⏏\"; }\n\n.bp3-icon-endorsed::before{\n  content:\"\"; }\n\n.bp3-icon-envelope::before{\n  content:\"✉\"; }\n\n.bp3-icon-equals::before{\n  content:\"\"; }\n\n.bp3-icon-eraser::before{\n  content:\"\"; }\n\n.bp3-icon-error::before{\n  content:\"\"; }\n\n.bp3-icon-euro::before{\n  content:\"€\"; }\n\n.bp3-icon-exchange::before{\n  content:\"\"; }\n\n.bp3-icon-exclude-row::before{\n  content:\"\"; }\n\n.bp3-icon-expand-all::before{\n  content:\"\"; }\n\n.bp3-icon-export::before{\n  content:\"\"; }\n\n.bp3-icon-eye-off::before{\n  content:\"\"; }\n\n.bp3-icon-eye-on::before{\n  content:\"\"; }\n\n.bp3-icon-eye-open::before{\n  content:\"\"; }\n\n.bp3-icon-fast-backward::before{\n  content:\"\"; }\n\n.bp3-icon-fast-forward::before{\n  content:\"\"; }\n\n.bp3-icon-feed::before{\n  content:\"\"; }\n\n.bp3-icon-feed-subscribed::before{\n  content:\"\"; }\n\n.bp3-icon-film::before{\n  content:\"\"; }\n\n.bp3-icon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-filter-keep::before{\n  content:\"\"; }\n\n.bp3-icon-filter-list::before{\n  content:\"\"; }\n\n.bp3-icon-filter-open::before{\n  content:\"\"; }\n\n.bp3-icon-filter-remove::before{\n  content:\"\"; }\n\n.bp3-icon-flag::before{\n  content:\"⚑\"; }\n\n.bp3-icon-flame::before{\n  content:\"\"; }\n\n.bp3-icon-flash::before{\n  content:\"\"; }\n\n.bp3-icon-floppy-disk::before{\n  content:\"\"; }\n\n.bp3-icon-flow-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flow-end::before{\n  content:\"\"; }\n\n.bp3-icon-flow-linear::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flows::before{\n  content:\"\"; }\n\n.bp3-icon-folder-close::before{\n  content:\"\"; }\n\n.bp3-icon-folder-new::before{\n  content:\"\"; }\n\n.bp3-icon-folder-open::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared-open::before{\n  content:\"\"; }\n\n.bp3-icon-follower::before{\n  content:\"\"; }\n\n.bp3-icon-following::before{\n  content:\"\"; }\n\n.bp3-icon-font::before{\n  content:\"\"; }\n\n.bp3-icon-fork::before{\n  content:\"\"; }\n\n.bp3-icon-form::before{\n  content:\"\"; }\n\n.bp3-icon-full-circle::before{\n  content:\"\"; }\n\n.bp3-icon-full-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-fullscreen::before{\n  content:\"\"; }\n\n.bp3-icon-function::before{\n  content:\"\"; }\n\n.bp3-icon-gantt-chart::before{\n  content:\"\"; }\n\n.bp3-icon-geolocation::before{\n  content:\"\"; }\n\n.bp3-icon-geosearch::before{\n  content:\"\"; }\n\n.bp3-icon-git-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-commit::before{\n  content:\"\"; }\n\n.bp3-icon-git-merge::before{\n  content:\"\"; }\n\n.bp3-icon-git-new-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-pull::before{\n  content:\"\"; }\n\n.bp3-icon-git-push::before{\n  content:\"\"; }\n\n.bp3-icon-git-repo::before{\n  content:\"\"; }\n\n.bp3-icon-glass::before{\n  content:\"\"; }\n\n.bp3-icon-globe::before{\n  content:\"\"; }\n\n.bp3-icon-globe-network::before{\n  content:\"\"; }\n\n.bp3-icon-graph::before{\n  content:\"\"; }\n\n.bp3-icon-graph-remove::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-grid::before{\n  content:\"\"; }\n\n.bp3-icon-grid-view::before{\n  content:\"\"; }\n\n.bp3-icon-group-objects::before{\n  content:\"\"; }\n\n.bp3-icon-grouped-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-hand::before{\n  content:\"\"; }\n\n.bp3-icon-hand-down::before{\n  content:\"\"; }\n\n.bp3-icon-hand-left::before{\n  content:\"\"; }\n\n.bp3-icon-hand-right::before{\n  content:\"\"; }\n\n.bp3-icon-hand-up::before{\n  content:\"\"; }\n\n.bp3-icon-header::before{\n  content:\"\"; }\n\n.bp3-icon-header-one::before{\n  content:\"\"; }\n\n.bp3-icon-header-two::before{\n  content:\"\"; }\n\n.bp3-icon-headset::before{\n  content:\"\"; }\n\n.bp3-icon-heart::before{\n  content:\"♥\"; }\n\n.bp3-icon-heart-broken::before{\n  content:\"\"; }\n\n.bp3-icon-heat-grid::before{\n  content:\"\"; }\n\n.bp3-icon-heatmap::before{\n  content:\"\"; }\n\n.bp3-icon-help::before{\n  content:\"?\"; }\n\n.bp3-icon-helper-management::before{\n  content:\"\"; }\n\n.bp3-icon-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-history::before{\n  content:\"\"; }\n\n.bp3-icon-home::before{\n  content:\"⌂\"; }\n\n.bp3-icon-horizontal-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-id-number::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-left::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-right::before{\n  content:\"\"; }\n\n.bp3-icon-import::before{\n  content:\"\"; }\n\n.bp3-icon-inbox::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-geo::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-search::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-update::before{\n  content:\"\"; }\n\n.bp3-icon-info-sign::before{\n  content:\"ℹ\"; }\n\n.bp3-icon-inheritance::before{\n  content:\"\"; }\n\n.bp3-icon-inner-join::before{\n  content:\"\"; }\n\n.bp3-icon-insert::before{\n  content:\"\"; }\n\n.bp3-icon-intersection::before{\n  content:\"\"; }\n\n.bp3-icon-ip-address::before{\n  content:\"\"; }\n\n.bp3-icon-issue::before{\n  content:\"\"; }\n\n.bp3-icon-issue-closed::before{\n  content:\"\"; }\n\n.bp3-icon-issue-new::before{\n  content:\"\"; }\n\n.bp3-icon-italic::before{\n  content:\"\"; }\n\n.bp3-icon-join-table::before{\n  content:\"\"; }\n\n.bp3-icon-key::before{\n  content:\"\"; }\n\n.bp3-icon-key-backspace::before{\n  content:\"\"; }\n\n.bp3-icon-key-command::before{\n  content:\"\"; }\n\n.bp3-icon-key-control::before{\n  content:\"\"; }\n\n.bp3-icon-key-delete::before{\n  content:\"\"; }\n\n.bp3-icon-key-enter::before{\n  content:\"\"; }\n\n.bp3-icon-key-escape::before{\n  content:\"\"; }\n\n.bp3-icon-key-option::before{\n  content:\"\"; }\n\n.bp3-icon-key-shift::before{\n  content:\"\"; }\n\n.bp3-icon-key-tab::before{\n  content:\"\"; }\n\n.bp3-icon-known-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-lab-test::before{\n  content:\"\"; }\n\n.bp3-icon-label::before{\n  content:\"\"; }\n\n.bp3-icon-layer::before{\n  content:\"\"; }\n\n.bp3-icon-layers::before{\n  content:\"\"; }\n\n.bp3-icon-layout::before{\n  content:\"\"; }\n\n.bp3-icon-layout-auto::before{\n  content:\"\"; }\n\n.bp3-icon-layout-balloon::before{\n  content:\"\"; }\n\n.bp3-icon-layout-circle::before{\n  content:\"\"; }\n\n.bp3-icon-layout-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-group-by::before{\n  content:\"\"; }\n\n.bp3-icon-layout-hierarchy::before{\n  content:\"\"; }\n\n.bp3-icon-layout-linear::before{\n  content:\"\"; }\n\n.bp3-icon-layout-skew-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-sorted-clusters::before{\n  content:\"\"; }\n\n.bp3-icon-learning::before{\n  content:\"\"; }\n\n.bp3-icon-left-join::before{\n  content:\"\"; }\n\n.bp3-icon-less-than::before{\n  content:\"\"; }\n\n.bp3-icon-less-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-lifesaver::before{\n  content:\"\"; }\n\n.bp3-icon-lightbulb::before{\n  content:\"\"; }\n\n.bp3-icon-link::before{\n  content:\"\"; }\n\n.bp3-icon-list::before{\n  content:\"☰\"; }\n\n.bp3-icon-list-columns::before{\n  content:\"\"; }\n\n.bp3-icon-list-detail-view::before{\n  content:\"\"; }\n\n.bp3-icon-locate::before{\n  content:\"\"; }\n\n.bp3-icon-lock::before{\n  content:\"\"; }\n\n.bp3-icon-log-in::before{\n  content:\"\"; }\n\n.bp3-icon-log-out::before{\n  content:\"\"; }\n\n.bp3-icon-manual::before{\n  content:\"\"; }\n\n.bp3-icon-manually-entered-data::before{\n  content:\"\"; }\n\n.bp3-icon-map::before{\n  content:\"\"; }\n\n.bp3-icon-map-create::before{\n  content:\"\"; }\n\n.bp3-icon-map-marker::before{\n  content:\"\"; }\n\n.bp3-icon-maximize::before{\n  content:\"\"; }\n\n.bp3-icon-media::before{\n  content:\"\"; }\n\n.bp3-icon-menu::before{\n  content:\"\"; }\n\n.bp3-icon-menu-closed::before{\n  content:\"\"; }\n\n.bp3-icon-menu-open::before{\n  content:\"\"; }\n\n.bp3-icon-merge-columns::before{\n  content:\"\"; }\n\n.bp3-icon-merge-links::before{\n  content:\"\"; }\n\n.bp3-icon-minimize::before{\n  content:\"\"; }\n\n.bp3-icon-minus::before{\n  content:\"−\"; }\n\n.bp3-icon-mobile-phone::before{\n  content:\"\"; }\n\n.bp3-icon-mobile-video::before{\n  content:\"\"; }\n\n.bp3-icon-moon::before{\n  content:\"\"; }\n\n.bp3-icon-more::before{\n  content:\"\"; }\n\n.bp3-icon-mountain::before{\n  content:\"\"; }\n\n.bp3-icon-move::before{\n  content:\"\"; }\n\n.bp3-icon-mugshot::before{\n  content:\"\"; }\n\n.bp3-icon-multi-select::before{\n  content:\"\"; }\n\n.bp3-icon-music::before{\n  content:\"\"; }\n\n.bp3-icon-new-drawing::before{\n  content:\"\"; }\n\n.bp3-icon-new-grid-item::before{\n  content:\"\"; }\n\n.bp3-icon-new-layer::before{\n  content:\"\"; }\n\n.bp3-icon-new-layers::before{\n  content:\"\"; }\n\n.bp3-icon-new-link::before{\n  content:\"\"; }\n\n.bp3-icon-new-object::before{\n  content:\"\"; }\n\n.bp3-icon-new-person::before{\n  content:\"\"; }\n\n.bp3-icon-new-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-new-text-box::before{\n  content:\"\"; }\n\n.bp3-icon-ninja::before{\n  content:\"\"; }\n\n.bp3-icon-not-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-notifications::before{\n  content:\"\"; }\n\n.bp3-icon-notifications-updated::before{\n  content:\"\"; }\n\n.bp3-icon-numbered-list::before{\n  content:\"\"; }\n\n.bp3-icon-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-office::before{\n  content:\"\"; }\n\n.bp3-icon-offline::before{\n  content:\"\"; }\n\n.bp3-icon-oil-field::before{\n  content:\"\"; }\n\n.bp3-icon-one-column::before{\n  content:\"\"; }\n\n.bp3-icon-outdated::before{\n  content:\"\"; }\n\n.bp3-icon-page-layout::before{\n  content:\"\"; }\n\n.bp3-icon-panel-stats::before{\n  content:\"\"; }\n\n.bp3-icon-panel-table::before{\n  content:\"\"; }\n\n.bp3-icon-paperclip::before{\n  content:\"\"; }\n\n.bp3-icon-paragraph::before{\n  content:\"\"; }\n\n.bp3-icon-path::before{\n  content:\"\"; }\n\n.bp3-icon-path-search::before{\n  content:\"\"; }\n\n.bp3-icon-pause::before{\n  content:\"\"; }\n\n.bp3-icon-people::before{\n  content:\"\"; }\n\n.bp3-icon-percentage::before{\n  content:\"\"; }\n\n.bp3-icon-person::before{\n  content:\"\"; }\n\n.bp3-icon-phone::before{\n  content:\"☎\"; }\n\n.bp3-icon-pie-chart::before{\n  content:\"\"; }\n\n.bp3-icon-pin::before{\n  content:\"\"; }\n\n.bp3-icon-pivot::before{\n  content:\"\"; }\n\n.bp3-icon-pivot-table::before{\n  content:\"\"; }\n\n.bp3-icon-play::before{\n  content:\"\"; }\n\n.bp3-icon-plus::before{\n  content:\"+\"; }\n\n.bp3-icon-polygon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-power::before{\n  content:\"\"; }\n\n.bp3-icon-predictive-analysis::before{\n  content:\"\"; }\n\n.bp3-icon-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-presentation::before{\n  content:\"\"; }\n\n.bp3-icon-print::before{\n  content:\"⎙\"; }\n\n.bp3-icon-projects::before{\n  content:\"\"; }\n\n.bp3-icon-properties::before{\n  content:\"\"; }\n\n.bp3-icon-property::before{\n  content:\"\"; }\n\n.bp3-icon-publish-function::before{\n  content:\"\"; }\n\n.bp3-icon-pulse::before{\n  content:\"\"; }\n\n.bp3-icon-random::before{\n  content:\"\"; }\n\n.bp3-icon-record::before{\n  content:\"\"; }\n\n.bp3-icon-redo::before{\n  content:\"\"; }\n\n.bp3-icon-refresh::before{\n  content:\"\"; }\n\n.bp3-icon-regression-chart::before{\n  content:\"\"; }\n\n.bp3-icon-remove::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-repeat::before{\n  content:\"\"; }\n\n.bp3-icon-reset::before{\n  content:\"\"; }\n\n.bp3-icon-resolve::before{\n  content:\"\"; }\n\n.bp3-icon-rig::before{\n  content:\"\"; }\n\n.bp3-icon-right-join::before{\n  content:\"\"; }\n\n.bp3-icon-ring::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-document::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-page::before{\n  content:\"\"; }\n\n.bp3-icon-satellite::before{\n  content:\"\"; }\n\n.bp3-icon-saved::before{\n  content:\"\"; }\n\n.bp3-icon-scatter-plot::before{\n  content:\"\"; }\n\n.bp3-icon-search::before{\n  content:\"\"; }\n\n.bp3-icon-search-around::before{\n  content:\"\"; }\n\n.bp3-icon-search-template::before{\n  content:\"\"; }\n\n.bp3-icon-search-text::before{\n  content:\"\"; }\n\n.bp3-icon-segmented-control::before{\n  content:\"\"; }\n\n.bp3-icon-select::before{\n  content:\"\"; }\n\n.bp3-icon-selection::before{\n  content:\"⦿\"; }\n\n.bp3-icon-send-to::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-graph::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-map::before{\n  content:\"\"; }\n\n.bp3-icon-series-add::before{\n  content:\"\"; }\n\n.bp3-icon-series-configuration::before{\n  content:\"\"; }\n\n.bp3-icon-series-derived::before{\n  content:\"\"; }\n\n.bp3-icon-series-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-series-search::before{\n  content:\"\"; }\n\n.bp3-icon-settings::before{\n  content:\"\"; }\n\n.bp3-icon-share::before{\n  content:\"\"; }\n\n.bp3-icon-shield::before{\n  content:\"\"; }\n\n.bp3-icon-shop::before{\n  content:\"\"; }\n\n.bp3-icon-shopping-cart::before{\n  content:\"\"; }\n\n.bp3-icon-signal-search::before{\n  content:\"\"; }\n\n.bp3-icon-sim-card::before{\n  content:\"\"; }\n\n.bp3-icon-slash::before{\n  content:\"\"; }\n\n.bp3-icon-small-cross::before{\n  content:\"\"; }\n\n.bp3-icon-small-minus::before{\n  content:\"\"; }\n\n.bp3-icon-small-plus::before{\n  content:\"\"; }\n\n.bp3-icon-small-tick::before{\n  content:\"\"; }\n\n.bp3-icon-snowflake::before{\n  content:\"\"; }\n\n.bp3-icon-social-media::before{\n  content:\"\"; }\n\n.bp3-icon-sort::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-asc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-split-columns::before{\n  content:\"\"; }\n\n.bp3-icon-square::before{\n  content:\"\"; }\n\n.bp3-icon-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-star::before{\n  content:\"★\"; }\n\n.bp3-icon-star-empty::before{\n  content:\"☆\"; }\n\n.bp3-icon-step-backward::before{\n  content:\"\"; }\n\n.bp3-icon-step-chart::before{\n  content:\"\"; }\n\n.bp3-icon-step-forward::before{\n  content:\"\"; }\n\n.bp3-icon-stop::before{\n  content:\"\"; }\n\n.bp3-icon-stopwatch::before{\n  content:\"\"; }\n\n.bp3-icon-strikethrough::before{\n  content:\"\"; }\n\n.bp3-icon-style::before{\n  content:\"\"; }\n\n.bp3-icon-swap-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-swap-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-circle::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-cross::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-diamond::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-square::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-down::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-up::before{\n  content:\"\"; }\n\n.bp3-icon-tag::before{\n  content:\"\"; }\n\n.bp3-icon-take-action::before{\n  content:\"\"; }\n\n.bp3-icon-taxi::before{\n  content:\"\"; }\n\n.bp3-icon-text-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-th::before{\n  content:\"\"; }\n\n.bp3-icon-th-derived::before{\n  content:\"\"; }\n\n.bp3-icon-th-disconnect::before{\n  content:\"\"; }\n\n.bp3-icon-th-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-th-list::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-down::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-up::before{\n  content:\"\"; }\n\n.bp3-icon-tick::before{\n  content:\"✓\"; }\n\n.bp3-icon-tick-circle::before{\n  content:\"\"; }\n\n.bp3-icon-time::before{\n  content:\"⏲\"; }\n\n.bp3-icon-timeline-area-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-events::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-line-chart::before{\n  content:\"\"; }\n\n.bp3-icon-tint::before{\n  content:\"\"; }\n\n.bp3-icon-torch::before{\n  content:\"\"; }\n\n.bp3-icon-tractor::before{\n  content:\"\"; }\n\n.bp3-icon-train::before{\n  content:\"\"; }\n\n.bp3-icon-translate::before{\n  content:\"\"; }\n\n.bp3-icon-trash::before{\n  content:\"\"; }\n\n.bp3-icon-tree::before{\n  content:\"\"; }\n\n.bp3-icon-trending-down::before{\n  content:\"\"; }\n\n.bp3-icon-trending-up::before{\n  content:\"\"; }\n\n.bp3-icon-truck::before{\n  content:\"\"; }\n\n.bp3-icon-two-columns::before{\n  content:\"\"; }\n\n.bp3-icon-unarchive::before{\n  content:\"\"; }\n\n.bp3-icon-underline::before{\n  content:\"⎁\"; }\n\n.bp3-icon-undo::before{\n  content:\"⎌\"; }\n\n.bp3-icon-ungroup-objects::before{\n  content:\"\"; }\n\n.bp3-icon-unknown-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-unlock::before{\n  content:\"\"; }\n\n.bp3-icon-unpin::before{\n  content:\"\"; }\n\n.bp3-icon-unresolve::before{\n  content:\"\"; }\n\n.bp3-icon-updated::before{\n  content:\"\"; }\n\n.bp3-icon-upload::before{\n  content:\"\"; }\n\n.bp3-icon-user::before{\n  content:\"\"; }\n\n.bp3-icon-variable::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-video::before{\n  content:\"\"; }\n\n.bp3-icon-volume-down::before{\n  content:\"\"; }\n\n.bp3-icon-volume-off::before{\n  content:\"\"; }\n\n.bp3-icon-volume-up::before{\n  content:\"\"; }\n\n.bp3-icon-walk::before{\n  content:\"\"; }\n\n.bp3-icon-warning-sign::before{\n  content:\"\"; }\n\n.bp3-icon-waterfall-chart::before{\n  content:\"\"; }\n\n.bp3-icon-widget::before{\n  content:\"\"; }\n\n.bp3-icon-widget-button::before{\n  content:\"\"; }\n\n.bp3-icon-widget-footer::before{\n  content:\"\"; }\n\n.bp3-icon-widget-header::before{\n  content:\"\"; }\n\n.bp3-icon-wrench::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-in::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-out::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-to-fit::before{\n  content:\"\"; }\n.bp3-submenu > .bp3-popover-wrapper{\n  display:block; }\n\n.bp3-submenu .bp3-popover-target{\n  display:block; }\n  .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{ }\n\n.bp3-submenu.bp3-popover{\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0 5px; }\n  .bp3-submenu.bp3-popover > .bp3-popover-content{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-submenu.bp3-popover, .bp3-submenu.bp3-popover.bp3-dark{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-dark .bp3-submenu.bp3-popover > .bp3-popover-content, .bp3-submenu.bp3-popover.bp3-dark > .bp3-popover-content{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n.bp3-menu{\n  background:#ffffff;\n  border-radius:3px;\n  color:#182026;\n  list-style:none;\n  margin:0;\n  min-width:180px;\n  padding:5px;\n  text-align:left; }\n\n.bp3-menu-divider{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px; }\n  .bp3-dark .bp3-menu-divider{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-menu-item{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  border-radius:2px;\n  color:inherit;\n  line-height:20px;\n  padding:5px 7px;\n  text-decoration:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-menu-item > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-menu-item > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > *{\n    margin-right:7px; }\n  .bp3-menu-item:empty::before,\n  .bp3-menu-item > :last-child{\n    margin-right:0; }\n  .bp3-menu-item > .bp3-fill{\n    word-break:break-word; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    background-color:rgba(167, 182, 194, 0.3);\n    cursor:pointer;\n    text-decoration:none; }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-dark .bp3-menu-item{\n    color:inherit; }\n    .bp3-dark .bp3-menu-item:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n      background-color:rgba(138, 155, 168, 0.15);\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-disabled{\n      background-color:inherit;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-menu-item.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-primary::before, .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary:active, .bp3-menu-item.bp3-intent-primary:active::before, .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-success::before, .bp3-menu-item.bp3-intent-success::after,\n    .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-menu-item.bp3-intent-success:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success:active, .bp3-menu-item.bp3-intent-success:active::before, .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-warning::before, .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning:active, .bp3-menu-item.bp3-intent-warning:active::before, .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-danger::before, .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger:active, .bp3-menu-item.bp3-intent-danger:active::before, .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    margin-right:7px; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > .bp3-icon{\n    color:#5c7080;\n    margin-top:2px; }\n  .bp3-menu-item .bp3-menu-item-label{\n    color:#5c7080; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    color:inherit; }\n  .bp3-menu-item.bp3-active, .bp3-menu-item:active{\n    background-color:rgba(115, 134, 148, 0.3); }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit !important;\n    color:rgba(92, 112, 128, 0.6) !important;\n    cursor:not-allowed !important;\n    outline:none !important; }\n    .bp3-menu-item.bp3-disabled::before,\n    .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-large .bp3-menu-item{\n    font-size:16px;\n    line-height:22px;\n    padding:9px 7px; }\n    .bp3-large .bp3-menu-item .bp3-icon{\n      margin-top:3px; }\n    .bp3-large .bp3-menu-item::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      margin-right:10px;\n      margin-top:1px; }\n\nbutton.bp3-menu-item{\n  background:none;\n  border:none;\n  text-align:left;\n  width:100%; }\n.bp3-menu-header{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px;\n  cursor:default;\n  padding-left:2px; }\n  .bp3-dark .bp3-menu-header{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n  .bp3-menu-header:first-of-type{\n    border-top:none; }\n  .bp3-menu-header > h6{\n    color:#182026;\n    font-weight:600;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    line-height:17px;\n    margin:0;\n    padding:10px 7px 0 1px; }\n    .bp3-dark .bp3-menu-header > h6{\n      color:#f5f8fa; }\n  .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n  .bp3-large .bp3-menu-header > h6{\n    font-size:18px;\n    padding-bottom:5px;\n    padding-top:15px; }\n  .bp3-large .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n\n.bp3-dark .bp3-menu{\n  background:#30404d;\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-menu-item{ }\n  .bp3-dark .bp3-menu-item.bp3-intent-primary{\n    color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary::before, .bp3-dark .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary:active, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-success{\n    color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success::before, .bp3-dark .bp3-menu-item.bp3-intent-success::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success:active, .bp3-dark .bp3-menu-item.bp3-intent-success:active::before, .bp3-dark .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-warning{\n    color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning::before, .bp3-dark .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning:active, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-danger{\n    color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger::before, .bp3-dark .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger:active, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item::before,\n  .bp3-dark .bp3-menu-item > .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item .bp3-menu-item-label{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item.bp3-active, .bp3-dark .bp3-menu-item:active{\n    background-color:rgba(138, 155, 168, 0.3); }\n  .bp3-dark .bp3-menu-item.bp3-disabled{\n    color:rgba(167, 182, 194, 0.6) !important; }\n    .bp3-dark .bp3-menu-item.bp3-disabled::before,\n    .bp3-dark .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-dark .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(167, 182, 194, 0.6) !important; }\n\n.bp3-dark .bp3-menu-divider,\n.bp3-dark .bp3-menu-header{\n  border-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-dark .bp3-menu-header > h6{\n  color:#f5f8fa; }\n\n.bp3-label .bp3-menu{\n  margin-top:5px; }\n.bp3-navbar{\n  background-color:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  height:50px;\n  padding:0 15px;\n  position:relative;\n  width:100%;\n  z-index:10; }\n  .bp3-navbar.bp3-dark,\n  .bp3-dark .bp3-navbar{\n    background-color:#394b59; }\n  .bp3-navbar.bp3-dark{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-navbar{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-navbar.bp3-fixed-top{\n    left:0;\n    position:fixed;\n    right:0;\n    top:0; }\n\n.bp3-navbar-heading{\n  font-size:16px;\n  margin-right:15px; }\n\n.bp3-navbar-group{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:50px; }\n  .bp3-navbar-group.bp3-align-left{\n    float:left; }\n  .bp3-navbar-group.bp3-align-right{\n    float:right; }\n\n.bp3-navbar-divider{\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  height:20px;\n  margin:0 10px; }\n  .bp3-dark .bp3-navbar-divider{\n    border-left-color:rgba(255, 255, 255, 0.15); }\n.bp3-non-ideal-state{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  height:100%;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  text-align:center;\n  width:100%; }\n  .bp3-non-ideal-state > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-non-ideal-state > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-non-ideal-state::before,\n  .bp3-non-ideal-state > *{\n    margin-bottom:20px; }\n  .bp3-non-ideal-state:empty::before,\n  .bp3-non-ideal-state > :last-child{\n    margin-bottom:0; }\n  .bp3-non-ideal-state > *{\n    max-width:400px; }\n\n.bp3-non-ideal-state-visual{\n  color:rgba(92, 112, 128, 0.6);\n  font-size:60px; }\n  .bp3-dark .bp3-non-ideal-state-visual{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-overflow-list{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:nowrap;\n      flex-wrap:nowrap;\n  min-width:0; }\n\n.bp3-overflow-list-spacer{\n  -ms-flex-negative:1;\n      flex-shrink:1;\n  width:1px; }\n\nbody.bp3-overlay-open{\n  overflow:hidden; }\n\n.bp3-overlay{\n  bottom:0;\n  left:0;\n  position:static;\n  right:0;\n  top:0;\n  z-index:20; }\n  .bp3-overlay:not(.bp3-overlay-open){\n    pointer-events:none; }\n  .bp3-overlay.bp3-overlay-container{\n    overflow:hidden;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-scroll-container{\n    overflow:auto;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-scroll-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-inline{\n    display:inline;\n    overflow:visible; }\n\n.bp3-overlay-content{\n  position:fixed;\n  z-index:20; }\n  .bp3-overlay-inline .bp3-overlay-content,\n  .bp3-overlay-scroll-container .bp3-overlay-content{\n    position:absolute; }\n\n.bp3-overlay-backdrop{\n  bottom:0;\n  left:0;\n  position:fixed;\n  right:0;\n  top:0;\n  opacity:1;\n  background-color:rgba(16, 22, 26, 0.7);\n  overflow:auto;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  z-index:20; }\n  .bp3-overlay-backdrop.bp3-overlay-enter, .bp3-overlay-backdrop.bp3-overlay-appear{\n    opacity:0; }\n  .bp3-overlay-backdrop.bp3-overlay-enter-active, .bp3-overlay-backdrop.bp3-overlay-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop.bp3-overlay-exit{\n    opacity:1; }\n  .bp3-overlay-backdrop.bp3-overlay-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop:focus{\n    outline:none; }\n  .bp3-overlay-inline .bp3-overlay-backdrop{\n    position:absolute; }\n.bp3-panel-stack{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-view{\n    background-color:#30404d; }\n  .bp3-panel-stack-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter, .bp3-panel-stack-push .bp3-panel-stack-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter-active, .bp3-panel-stack-push .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter, .bp3-panel-stack-pop .bp3-panel-stack-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter-active, .bp3-panel-stack-pop .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-panel-stack2{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack2-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack2-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack2-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack2-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack2-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack2-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-view{\n    background-color:#30404d; }\n  .bp3-panel-stack2-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter, .bp3-panel-stack2-push .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter-active, .bp3-panel-stack2-push .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter, .bp3-panel-stack2-pop .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter-active, .bp3-panel-stack2-pop .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-popover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  border-radius:3px;\n  display:inline-block;\n  z-index:20; }\n  .bp3-popover .bp3-popover-arrow{\n    height:30px;\n    position:absolute;\n    width:30px; }\n    .bp3-popover .bp3-popover-arrow::before{\n      height:20px;\n      margin:5px;\n      width:20px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover{\n    margin-bottom:17px;\n    margin-top:-17px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n      bottom:-11px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover{\n    margin-left:17px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n      left:-11px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover{\n    margin-top:17px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n      top:-11px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover{\n    margin-left:-17px;\n    margin-right:17px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n      right:-11px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-popover > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-popover > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n    top:-0.3934px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n    right:-0.3934px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n    left:-0.3934px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n    bottom:-0.3934px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-popover .bp3-popover-content{\n    background:#ffffff;\n    color:inherit; }\n  .bp3-popover .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-popover .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-popover .bp3-popover-arrow-fill{\n    fill:#ffffff; }\n  .bp3-popover-enter > .bp3-popover, .bp3-popover-appear > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3); }\n  .bp3-popover-enter-active > .bp3-popover, .bp3-popover-appear-active > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover-exit > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover .bp3-popover-content{\n    border-radius:3px;\n    position:relative; }\n  .bp3-popover.bp3-popover-content-sizing .bp3-popover-content{\n    max-width:350px;\n    padding:20px; }\n  .bp3-popover-target + .bp3-overlay .bp3-popover.bp3-popover-content-sizing{\n    width:350px; }\n  .bp3-popover.bp3-minimal{\n    margin:0 !important; }\n    .bp3-popover.bp3-minimal .bp3-popover-arrow{\n      display:none; }\n    .bp3-popover.bp3-minimal.bp3-popover{\n      -webkit-transform:scale(1);\n              transform:scale(1); }\n      .bp3-popover-enter > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-enter-active > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n      .bp3-popover-exit > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-exit-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover.bp3-dark,\n  .bp3-dark .bp3-popover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-popover .bp3-popover-content{\n      background:#30404d;\n      color:inherit; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-popover .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-fill{\n      fill:#30404d; }\n\n.bp3-popover-arrow::before{\n  border-radius:2px;\n  content:\"\";\n  display:block;\n  position:absolute;\n  -webkit-transform:rotate(45deg);\n          transform:rotate(45deg); }\n\n.bp3-tether-pinned .bp3-popover-arrow{\n  display:none; }\n\n.bp3-popover-backdrop{\n  background:rgba(255, 255, 255, 0); }\n\n.bp3-transition-container{\n  opacity:1;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  z-index:20; }\n  .bp3-transition-container.bp3-popover-enter, .bp3-transition-container.bp3-popover-appear{\n    opacity:0; }\n  .bp3-transition-container.bp3-popover-enter-active, .bp3-transition-container.bp3-popover-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container.bp3-popover-exit{\n    opacity:1; }\n  .bp3-transition-container.bp3-popover-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container:focus{\n    outline:none; }\n  .bp3-transition-container.bp3-popover-leave .bp3-popover-content{\n    pointer-events:none; }\n  .bp3-transition-container[data-x-out-of-boundaries]{\n    display:none; }\n\nspan.bp3-popover-target{\n  display:inline-block; }\n\n.bp3-popover-wrapper.bp3-fill{\n  width:100%; }\n\n.bp3-portal{\n  left:0;\n  position:absolute;\n  right:0;\n  top:0; }\n@-webkit-keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n@keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n\n.bp3-progress-bar{\n  background:rgba(92, 112, 128, 0.2);\n  border-radius:40px;\n  display:block;\n  height:8px;\n  overflow:hidden;\n  position:relative;\n  width:100%; }\n  .bp3-progress-bar .bp3-progress-meter{\n    background:linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%);\n    background-color:rgba(92, 112, 128, 0.8);\n    background-size:30px 30px;\n    border-radius:40px;\n    height:100%;\n    position:absolute;\n    -webkit-transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:100%; }\n  .bp3-progress-bar:not(.bp3-no-animation):not(.bp3-no-stripes) .bp3-progress-meter{\n    animation:linear-progress-bar-stripes 300ms linear infinite reverse; }\n  .bp3-progress-bar.bp3-no-stripes .bp3-progress-meter{\n    background-image:none; }\n\n.bp3-dark .bp3-progress-bar{\n  background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-progress-bar .bp3-progress-meter{\n    background-color:#8a9ba8; }\n\n.bp3-progress-bar.bp3-intent-primary .bp3-progress-meter{\n  background-color:#137cbd; }\n\n.bp3-progress-bar.bp3-intent-success .bp3-progress-meter{\n  background-color:#0f9960; }\n\n.bp3-progress-bar.bp3-intent-warning .bp3-progress-meter{\n  background-color:#d9822b; }\n\n.bp3-progress-bar.bp3-intent-danger .bp3-progress-meter{\n  background-color:#db3737; }\n@-webkit-keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n@keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n.bp3-skeleton{\n  -webkit-animation:1000ms linear infinite alternate skeleton-glow;\n          animation:1000ms linear infinite alternate skeleton-glow;\n  background:rgba(206, 217, 224, 0.2);\n  background-clip:padding-box !important;\n  border-color:rgba(206, 217, 224, 0.2) !important;\n  border-radius:2px;\n  -webkit-box-shadow:none !important;\n          box-shadow:none !important;\n  color:transparent !important;\n  cursor:default;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-skeleton::before, .bp3-skeleton::after,\n  .bp3-skeleton *{\n    visibility:hidden !important; }\n.bp3-slider{\n  height:40px;\n  min-width:150px;\n  width:100%;\n  cursor:default;\n  outline:none;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-slider:hover{\n    cursor:pointer; }\n  .bp3-slider:active{\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-slider.bp3-disabled{\n    cursor:not-allowed;\n    opacity:0.5; }\n  .bp3-slider.bp3-slider-unlabeled{\n    height:16px; }\n\n.bp3-slider-track,\n.bp3-slider-progress{\n  height:6px;\n  left:0;\n  right:0;\n  top:5px;\n  position:absolute; }\n\n.bp3-slider-track{\n  border-radius:3px;\n  overflow:hidden; }\n\n.bp3-slider-progress{\n  background:rgba(92, 112, 128, 0.2); }\n  .bp3-dark .bp3-slider-progress{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-slider-progress.bp3-intent-primary{\n    background-color:#137cbd; }\n  .bp3-slider-progress.bp3-intent-success{\n    background-color:#0f9960; }\n  .bp3-slider-progress.bp3-intent-warning{\n    background-color:#d9822b; }\n  .bp3-slider-progress.bp3-intent-danger{\n    background-color:#db3737; }\n\n.bp3-slider-handle{\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n  cursor:pointer;\n  height:16px;\n  left:0;\n  position:absolute;\n  top:0;\n  width:16px; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-slider-handle:active, .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-slider-handle:disabled, .bp3-slider-handle.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-slider-handle:disabled.bp3-active, .bp3-slider-handle:disabled.bp3-active:hover, .bp3-slider-handle.bp3-disabled.bp3-active, .bp3-slider-handle.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n  .bp3-slider-handle:focus{\n    z-index:1; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n    cursor:-webkit-grab;\n    cursor:grab;\n    z-index:2; }\n  .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-disabled .bp3-slider-handle{\n    background:#bfccd6;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    pointer-events:none; }\n  .bp3-dark .bp3-slider-handle{\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover, .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-slider-handle:disabled, .bp3-dark .bp3-slider-handle.bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-slider-handle:disabled.bp3-active, .bp3-dark .bp3-slider-handle.bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-slider-handle .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-slider-handle, .bp3-dark .bp3-slider-handle:hover{\n      background-color:#394b59; }\n    .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#293742; }\n  .bp3-dark .bp3-disabled .bp3-slider-handle{\n    background:#5c7080;\n    border-color:#5c7080;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-slider-handle .bp3-slider-label{\n    background:#394b59;\n    border-radius:3px;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n    color:#f5f8fa;\n    margin-left:8px; }\n    .bp3-dark .bp3-slider-handle .bp3-slider-label{\n      background:#e1e8ed;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n      color:#394b59; }\n    .bp3-disabled .bp3-slider-handle .bp3-slider-label{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-slider-handle.bp3-start, .bp3-slider-handle.bp3-end{\n    width:8px; }\n  .bp3-slider-handle.bp3-start{\n    border-bottom-right-radius:0;\n    border-top-right-radius:0; }\n  .bp3-slider-handle.bp3-end{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0;\n    margin-left:8px; }\n    .bp3-slider-handle.bp3-end .bp3-slider-label{\n      margin-left:0; }\n\n.bp3-slider-label{\n  -webkit-transform:translate(-50%, 20px);\n          transform:translate(-50%, 20px);\n  display:inline-block;\n  font-size:12px;\n  line-height:1;\n  padding:2px 5px;\n  position:absolute;\n  vertical-align:top; }\n\n.bp3-slider.bp3-vertical{\n  height:150px;\n  min-width:40px;\n  width:40px; }\n  .bp3-slider.bp3-vertical .bp3-slider-track,\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    bottom:0;\n    height:auto;\n    left:5px;\n    top:0;\n    width:6px; }\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    top:auto; }\n  .bp3-slider.bp3-vertical .bp3-slider-label{\n    -webkit-transform:translate(20px, 50%);\n            transform:translate(20px, 50%); }\n  .bp3-slider.bp3-vertical .bp3-slider-handle{\n    top:auto; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle .bp3-slider-label{\n      margin-left:0;\n      margin-top:-8px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end, .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      height:8px;\n      margin-left:0;\n      width:16px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      border-bottom-right-radius:3px;\n      border-top-left-radius:0; }\n      .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start .bp3-slider-label{\n        -webkit-transform:translate(20px);\n                transform:translate(20px); }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end{\n      border-bottom-left-radius:0;\n      border-bottom-right-radius:0;\n      border-top-left-radius:3px;\n      margin-bottom:8px; }\n\n@-webkit-keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n@keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n.bp3-spinner{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  overflow:visible;\n  vertical-align:middle; }\n  .bp3-spinner svg{\n    display:block; }\n  .bp3-spinner path{\n    fill-opacity:0; }\n  .bp3-spinner .bp3-spinner-head{\n    stroke:rgba(92, 112, 128, 0.8);\n    stroke-linecap:round;\n    -webkit-transform-origin:center;\n            transform-origin:center;\n    -webkit-transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-spinner .bp3-spinner-track{\n    stroke:rgba(92, 112, 128, 0.2); }\n\n.bp3-spinner-animation{\n  -webkit-animation:pt-spinner-animation 500ms linear infinite;\n          animation:pt-spinner-animation 500ms linear infinite; }\n  .bp3-no-spin > .bp3-spinner-animation{\n    -webkit-animation:none;\n            animation:none; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-head{\n  stroke:#8a9ba8; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-track{\n  stroke:rgba(16, 22, 26, 0.5); }\n\n.bp3-spinner.bp3-intent-primary .bp3-spinner-head{\n  stroke:#137cbd; }\n\n.bp3-spinner.bp3-intent-success .bp3-spinner-head{\n  stroke:#0f9960; }\n\n.bp3-spinner.bp3-intent-warning .bp3-spinner-head{\n  stroke:#d9822b; }\n\n.bp3-spinner.bp3-intent-danger .bp3-spinner-head{\n  stroke:#db3737; }\n.bp3-tabs.bp3-vertical{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-list{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab{\n      border-radius:3px;\n      padding:0 10px;\n      width:100%; }\n      .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab[aria-selected=\"true\"]{\n        background-color:rgba(19, 124, 189, 0.2);\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n      background-color:rgba(19, 124, 189, 0.2);\n      border-radius:3px;\n      bottom:0;\n      height:auto;\n      left:0;\n      right:0;\n      top:0; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-panel{\n    margin-top:0;\n    padding-left:20px; }\n\n.bp3-tab-list{\n  -webkit-box-align:end;\n      -ms-flex-align:end;\n          align-items:flex-end;\n  border:none;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  list-style:none;\n  margin:0;\n  padding:0;\n  position:relative; }\n  .bp3-tab-list > *:not(:last-child){\n    margin-right:20px; }\n\n.bp3-tab{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:#182026;\n  cursor:pointer;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  font-size:14px;\n  line-height:30px;\n  max-width:100%;\n  position:relative;\n  vertical-align:top; }\n  .bp3-tab a{\n    color:inherit;\n    display:block;\n    text-decoration:none; }\n  .bp3-tab-indicator-wrapper ~ .bp3-tab{\n    background-color:transparent !important;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important; }\n  .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-tab[aria-selected=\"true\"]{\n    border-radius:0;\n    -webkit-box-shadow:inset 0 -3px 0 #106ba3;\n            box-shadow:inset 0 -3px 0 #106ba3; }\n  .bp3-tab[aria-selected=\"true\"], .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#106ba3; }\n  .bp3-tab:focus{\n    -moz-outline-radius:0; }\n  .bp3-large > .bp3-tab{\n    font-size:16px;\n    line-height:40px; }\n\n.bp3-tab-panel{\n  margin-top:20px; }\n  .bp3-tab-panel[aria-hidden=\"true\"]{\n    display:none; }\n\n.bp3-tab-indicator-wrapper{\n  left:0;\n  pointer-events:none;\n  position:absolute;\n  top:0;\n  -webkit-transform:translateX(0), translateY(0);\n          transform:translateX(0), translateY(0);\n  -webkit-transition:height, width, -webkit-transform;\n  transition:height, width, -webkit-transform;\n  transition:height, transform, width;\n  transition:height, transform, width, -webkit-transform;\n  -webkit-transition-duration:200ms;\n          transition-duration:200ms;\n  -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n          transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n    background-color:#106ba3;\n    bottom:0;\n    height:3px;\n    left:0;\n    position:absolute;\n    right:0; }\n  .bp3-tab-indicator-wrapper.bp3-no-animation{\n    -webkit-transition:none;\n    transition:none; }\n\n.bp3-dark .bp3-tab{\n  color:#f5f8fa; }\n  .bp3-dark .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"]{\n    -webkit-box-shadow:inset 0 -3px 0 #48aff0;\n            box-shadow:inset 0 -3px 0 #48aff0; }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"], .bp3-dark .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#48aff0; }\n\n.bp3-dark .bp3-tab-indicator{\n  background-color:#48aff0; }\n\n.bp3-flex-expander{\n  -webkit-box-flex:1;\n      -ms-flex:1 1;\n          flex:1 1; }\n.bp3-tag{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#5c7080;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:#f5f8fa;\n  font-size:12px;\n  line-height:16px;\n  max-width:100%;\n  min-height:20px;\n  min-width:20px;\n  padding:2px 6px;\n  position:relative; }\n  .bp3-tag.bp3-interactive{\n    cursor:pointer; }\n    .bp3-tag.bp3-interactive:hover{\n      background-color:rgba(92, 112, 128, 0.85); }\n    .bp3-tag.bp3-interactive.bp3-active, .bp3-tag.bp3-interactive:active{\n      background-color:rgba(92, 112, 128, 0.7); }\n  .bp3-tag > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag::before,\n  .bp3-tag > *{\n    margin-right:4px; }\n  .bp3-tag:empty::before,\n  .bp3-tag > :last-child{\n    margin-right:0; }\n  .bp3-tag:focus{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:0;\n    -moz-outline-radius:6px; }\n  .bp3-tag.bp3-round{\n    border-radius:30px;\n    padding-left:8px;\n    padding-right:8px; }\n  .bp3-dark .bp3-tag{\n    background-color:#bfccd6;\n    color:#182026; }\n    .bp3-dark .bp3-tag.bp3-interactive{\n      cursor:pointer; }\n      .bp3-dark .bp3-tag.bp3-interactive:hover{\n        background-color:rgba(191, 204, 214, 0.85); }\n      .bp3-dark .bp3-tag.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-interactive:active{\n        background-color:rgba(191, 204, 214, 0.7); }\n    .bp3-dark .bp3-tag > .bp3-icon, .bp3-dark .bp3-tag .bp3-icon-standard, .bp3-dark .bp3-tag .bp3-icon-large{\n      fill:currentColor; }\n  .bp3-tag > .bp3-icon, .bp3-tag .bp3-icon-standard, .bp3-tag .bp3-icon-large{\n    fill:#ffffff; }\n  .bp3-tag.bp3-large,\n  .bp3-large .bp3-tag{\n    font-size:14px;\n    line-height:20px;\n    min-height:30px;\n    min-width:30px;\n    padding:5px 10px; }\n    .bp3-tag.bp3-large::before,\n    .bp3-tag.bp3-large > *,\n    .bp3-large .bp3-tag::before,\n    .bp3-large .bp3-tag > *{\n      margin-right:7px; }\n    .bp3-tag.bp3-large:empty::before,\n    .bp3-tag.bp3-large > :last-child,\n    .bp3-large .bp3-tag:empty::before,\n    .bp3-large .bp3-tag > :last-child{\n      margin-right:0; }\n    .bp3-tag.bp3-large.bp3-round,\n    .bp3-large .bp3-tag.bp3-round{\n      padding-left:12px;\n      padding-right:12px; }\n  .bp3-tag.bp3-intent-primary{\n    background:#137cbd;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.85); }\n      .bp3-tag.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.7); }\n  .bp3-tag.bp3-intent-success{\n    background:#0f9960;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.85); }\n      .bp3-tag.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.7); }\n  .bp3-tag.bp3-intent-warning{\n    background:#d9822b;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.85); }\n      .bp3-tag.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.7); }\n  .bp3-tag.bp3-intent-danger{\n    background:#db3737;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.85); }\n      .bp3-tag.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.7); }\n  .bp3-tag.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-tag.bp3-minimal > .bp3-icon, .bp3-tag.bp3-minimal .bp3-icon-standard, .bp3-tag.bp3-minimal .bp3-icon-large{\n    fill:#5c7080; }\n  .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n    background-color:rgba(138, 155, 168, 0.2);\n    color:#182026; }\n    .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n        background-color:rgba(92, 112, 128, 0.3); }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n        background-color:rgba(92, 112, 128, 0.4); }\n    .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n      color:#f5f8fa; }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n          background-color:rgba(191, 204, 214, 0.3); }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n          background-color:rgba(191, 204, 214, 0.4); }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) > .bp3-icon, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n        fill:#a7b6c2; }\n  .bp3-tag.bp3-minimal.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15);\n    color:#106ba3; }\n    .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-primary > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-large{\n      fill:#137cbd; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25);\n      color:#48aff0; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n          background-color:rgba(19, 124, 189, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n          background-color:rgba(19, 124, 189, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15);\n    color:#0d8050; }\n    .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-success > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-large{\n      fill:#0f9960; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25);\n      color:#3dcc91; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n          background-color:rgba(15, 153, 96, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n          background-color:rgba(15, 153, 96, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15);\n    color:#bf7326; }\n    .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-warning > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-large{\n      fill:#d9822b; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25);\n      color:#ffb366; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n          background-color:rgba(217, 130, 43, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n          background-color:rgba(217, 130, 43, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15);\n    color:#c23030; }\n    .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-danger > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-large{\n      fill:#db3737; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25);\n      color:#ff7373; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n          background-color:rgba(219, 55, 55, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n          background-color:rgba(219, 55, 55, 0.45); }\n\n.bp3-tag-remove{\n  background:none;\n  border:none;\n  color:inherit;\n  cursor:pointer;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin-bottom:-2px;\n  margin-right:-6px !important;\n  margin-top:-2px;\n  opacity:0.5;\n  padding:2px;\n  padding-left:0; }\n  .bp3-tag-remove:hover{\n    background:none;\n    opacity:0.8;\n    text-decoration:none; }\n  .bp3-tag-remove:active{\n    opacity:1; }\n  .bp3-tag-remove:empty::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    content:\"\"; }\n  .bp3-large .bp3-tag-remove{\n    margin-right:-10px !important;\n    padding:0 5px 0 0; }\n    .bp3-large .bp3-tag-remove:empty::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1; }\n.bp3-tag-input{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  cursor:text;\n  height:auto;\n  line-height:inherit;\n  min-height:30px;\n  padding-left:5px;\n  padding-right:0; }\n  .bp3-tag-input > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag-input > .bp3-tag-input-values{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag-input .bp3-tag-input-icon{\n    color:#5c7080;\n    margin-left:2px;\n    margin-right:7px;\n    margin-top:7px; }\n  .bp3-tag-input .bp3-tag-input-values{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row;\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    -ms-flex-item-align:stretch;\n        align-self:stretch;\n    -ms-flex-wrap:wrap;\n        flex-wrap:wrap;\n    margin-right:7px;\n    margin-top:5px;\n    min-width:0; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      -webkit-box-flex:0;\n          -ms-flex-positive:0;\n              flex-grow:0;\n      -ms-flex-negative:0;\n          flex-shrink:0; }\n    .bp3-tag-input .bp3-tag-input-values > .bp3-fill{\n      -webkit-box-flex:1;\n          -ms-flex-positive:1;\n              flex-grow:1;\n      -ms-flex-negative:1;\n          flex-shrink:1; }\n    .bp3-tag-input .bp3-tag-input-values::before,\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-right:5px; }\n    .bp3-tag-input .bp3-tag-input-values:empty::before,\n    .bp3-tag-input .bp3-tag-input-values > :last-child{\n      margin-right:0; }\n    .bp3-tag-input .bp3-tag-input-values:first-child .bp3-input-ghost:first-child{\n      padding-left:5px; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-bottom:5px; }\n  .bp3-tag-input .bp3-tag{\n    overflow-wrap:break-word; }\n    .bp3-tag-input .bp3-tag.bp3-active{\n      outline:rgba(19, 124, 189, 0.6) auto 2px;\n      outline-offset:0;\n      -moz-outline-radius:6px; }\n  .bp3-tag-input .bp3-input-ghost{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:20px;\n    width:80px; }\n    .bp3-tag-input .bp3-input-ghost:disabled, .bp3-tag-input .bp3-input-ghost.bp3-disabled{\n      cursor:not-allowed; }\n  .bp3-tag-input .bp3-button,\n  .bp3-tag-input .bp3-spinner{\n    margin:3px;\n    margin-left:0; }\n  .bp3-tag-input .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-tag-input.bp3-large{\n    height:auto;\n    min-height:40px; }\n    .bp3-tag-input.bp3-large::before,\n    .bp3-tag-input.bp3-large > *{\n      margin-right:10px; }\n    .bp3-tag-input.bp3-large:empty::before,\n    .bp3-tag-input.bp3-large > :last-child{\n      margin-right:0; }\n    .bp3-tag-input.bp3-large .bp3-tag-input-icon{\n      margin-left:5px;\n      margin-top:10px; }\n    .bp3-tag-input.bp3-large .bp3-input-ghost{\n      line-height:30px; }\n    .bp3-tag-input.bp3-large .bp3-button{\n      min-height:30px;\n      min-width:30px;\n      padding:5px 10px;\n      margin:5px;\n      margin-left:0; }\n    .bp3-tag-input.bp3-large .bp3-spinner{\n      margin:8px;\n      margin-left:0; }\n  .bp3-tag-input.bp3-active{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-tag-input .bp3-tag-input-icon, .bp3-tag-input.bp3-dark .bp3-tag-input-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-tag-input .bp3-input-ghost, .bp3-tag-input.bp3-dark .bp3-input-ghost{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-webkit-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-moz-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost:-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tag-input.bp3-active, .bp3-tag-input.bp3-dark.bp3-active{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-primary, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-success, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-warning, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-danger, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-input-ghost{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0; }\n  .bp3-input-ghost::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:focus{\n    outline:none !important; }\n.bp3-toast{\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:20px 0 0;\n  max-width:500px;\n  min-width:300px;\n  pointer-events:all;\n  position:relative !important; }\n  .bp3-toast.bp3-toast-enter, .bp3-toast.bp3-toast-appear{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active, .bp3-toast.bp3-toast-appear-active{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-enter ~ .bp3-toast, .bp3-toast.bp3-toast-appear ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active ~ .bp3-toast, .bp3-toast.bp3-toast-appear-active ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-exit{\n    opacity:1;\n    -webkit-filter:blur(0);\n            filter:blur(0); }\n  .bp3-toast.bp3-toast-exit-active{\n    opacity:0;\n    -webkit-filter:blur(10px);\n            filter:blur(10px);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:opacity, filter;\n    transition-property:opacity, filter, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast.bp3-toast-exit ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0); }\n  .bp3-toast.bp3-toast-exit-active ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px);\n    -webkit-transition-delay:50ms;\n            transition-delay:50ms;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast .bp3-button-group{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    padding:5px;\n    padding-left:0; }\n  .bp3-toast > .bp3-icon{\n    color:#5c7080;\n    margin:12px;\n    margin-right:0; }\n  .bp3-toast.bp3-dark,\n  .bp3-dark .bp3-toast{\n    background-color:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-toast.bp3-dark > .bp3-icon,\n    .bp3-dark .bp3-toast > .bp3-icon{\n      color:#a7b6c2; }\n  .bp3-toast[class*=\"bp3-intent-\"] a{\n    color:rgba(255, 255, 255, 0.7); }\n    .bp3-toast[class*=\"bp3-intent-\"] a:hover{\n      color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] > .bp3-icon{\n    color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::before,\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button .bp3-icon, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    color:rgba(255, 255, 255, 0.7) !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:focus{\n    outline-color:rgba(255, 255, 255, 0.5); }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:hover{\n    background-color:rgba(255, 255, 255, 0.15) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    background-color:rgba(255, 255, 255, 0.3) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::after{\n    background:rgba(255, 255, 255, 0.3) !important; }\n  .bp3-toast.bp3-intent-primary{\n    background-color:#137cbd;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-success{\n    background-color:#0f9960;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-warning{\n    background-color:#d9822b;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-danger{\n    background-color:#db3737;\n    color:#ffffff; }\n\n.bp3-toast-message{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  padding:11px;\n  word-break:break-word; }\n\n.bp3-toast-container{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box !important;\n  display:-ms-flexbox !important;\n  display:flex !important;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  left:0;\n  overflow:hidden;\n  padding:0 20px 20px;\n  pointer-events:none;\n  right:0;\n  z-index:40; }\n  .bp3-toast-container.bp3-toast-container-in-portal{\n    position:fixed; }\n  .bp3-toast-container.bp3-toast-container-inline{\n    position:absolute; }\n  .bp3-toast-container.bp3-toast-container-top{\n    top:0; }\n  .bp3-toast-container.bp3-toast-container-bottom{\n    bottom:0;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:reverse;\n        -ms-flex-direction:column-reverse;\n            flex-direction:column-reverse;\n    top:auto; }\n  .bp3-toast-container.bp3-toast-container-left{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start; }\n  .bp3-toast-container.bp3-toast-container-right{\n    -webkit-box-align:end;\n        -ms-flex-align:end;\n            align-items:flex-end; }\n\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active) ~ .bp3-toast, .bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active) ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-exit-active ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-leave-active ~ .bp3-toast{\n  -webkit-transform:translateY(60px);\n          transform:translateY(60px); }\n.bp3-tooltip{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1); }\n  .bp3-tooltip .bp3-popover-arrow{\n    height:22px;\n    position:absolute;\n    width:22px; }\n    .bp3-tooltip .bp3-popover-arrow::before{\n      height:14px;\n      margin:4px;\n      width:14px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip{\n    margin-bottom:11px;\n    margin-top:-11px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n      bottom:-8px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip{\n    margin-left:11px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n      left:-8px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip{\n    margin-top:11px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n      top:-8px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip{\n    margin-left:-11px;\n    margin-right:11px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n      right:-8px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-tooltip > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-tooltip > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n    top:-0.22183px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n    right:-0.22183px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n    left:-0.22183px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n    bottom:-0.22183px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-tooltip .bp3-popover-content{\n    background:#394b59;\n    color:#f5f8fa; }\n  .bp3-tooltip .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-tooltip .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-tooltip .bp3-popover-arrow-fill{\n    fill:#394b59; }\n  .bp3-popover-enter > .bp3-tooltip, .bp3-popover-appear > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8); }\n  .bp3-popover-enter-active > .bp3-tooltip, .bp3-popover-appear-active > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover-exit > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tooltip .bp3-popover-content{\n    padding:10px 12px; }\n  .bp3-tooltip.bp3-dark,\n  .bp3-dark .bp3-tooltip{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-tooltip .bp3-popover-content{\n      background:#e1e8ed;\n      color:#394b59; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-fill{\n      fill:#e1e8ed; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-content{\n    background:#137cbd;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-arrow-fill{\n    fill:#137cbd; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-content{\n    background:#0f9960;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-arrow-fill{\n    fill:#0f9960; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-content{\n    background:#d9822b;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-arrow-fill{\n    fill:#d9822b; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-content{\n    background:#db3737;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-arrow-fill{\n    fill:#db3737; }\n\n.bp3-tooltip-indicator{\n  border-bottom:dotted 1px;\n  cursor:help; }\n.bp3-tree .bp3-icon, .bp3-tree .bp3-icon-standard, .bp3-tree .bp3-icon-large{\n  color:#5c7080; }\n  .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-tree .bp3-icon.bp3-intent-success, .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-tree-node-list{\n  list-style:none;\n  margin:0;\n  padding-left:0; }\n\n.bp3-tree-root{\n  background-color:transparent;\n  cursor:default;\n  padding-left:0;\n  position:relative; }\n\n.bp3-tree-node-content-0{\n  padding-left:0px; }\n\n.bp3-tree-node-content-1{\n  padding-left:23px; }\n\n.bp3-tree-node-content-2{\n  padding-left:46px; }\n\n.bp3-tree-node-content-3{\n  padding-left:69px; }\n\n.bp3-tree-node-content-4{\n  padding-left:92px; }\n\n.bp3-tree-node-content-5{\n  padding-left:115px; }\n\n.bp3-tree-node-content-6{\n  padding-left:138px; }\n\n.bp3-tree-node-content-7{\n  padding-left:161px; }\n\n.bp3-tree-node-content-8{\n  padding-left:184px; }\n\n.bp3-tree-node-content-9{\n  padding-left:207px; }\n\n.bp3-tree-node-content-10{\n  padding-left:230px; }\n\n.bp3-tree-node-content-11{\n  padding-left:253px; }\n\n.bp3-tree-node-content-12{\n  padding-left:276px; }\n\n.bp3-tree-node-content-13{\n  padding-left:299px; }\n\n.bp3-tree-node-content-14{\n  padding-left:322px; }\n\n.bp3-tree-node-content-15{\n  padding-left:345px; }\n\n.bp3-tree-node-content-16{\n  padding-left:368px; }\n\n.bp3-tree-node-content-17{\n  padding-left:391px; }\n\n.bp3-tree-node-content-18{\n  padding-left:414px; }\n\n.bp3-tree-node-content-19{\n  padding-left:437px; }\n\n.bp3-tree-node-content-20{\n  padding-left:460px; }\n\n.bp3-tree-node-content{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:30px;\n  padding-right:5px;\n  width:100%; }\n  .bp3-tree-node-content:hover{\n    background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-tree-node-caret,\n.bp3-tree-node-caret-none{\n  min-width:30px; }\n\n.bp3-tree-node-caret{\n  color:#5c7080;\n  cursor:pointer;\n  padding:7px;\n  -webkit-transform:rotate(0deg);\n          transform:rotate(0deg);\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tree-node-caret:hover{\n    color:#182026; }\n  .bp3-dark .bp3-tree-node-caret{\n    color:#a7b6c2; }\n    .bp3-dark .bp3-tree-node-caret:hover{\n      color:#f5f8fa; }\n  .bp3-tree-node-caret.bp3-tree-node-caret-open{\n    -webkit-transform:rotate(90deg);\n            transform:rotate(90deg); }\n  .bp3-tree-node-caret.bp3-icon-standard::before{\n    content:\"\"; }\n\n.bp3-tree-node-icon{\n  margin-right:7px;\n  position:relative; }\n\n.bp3-tree-node-label{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-label span{\n    display:inline; }\n\n.bp3-tree-node-secondary-label{\n  padding:0 5px;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-secondary-label .bp3-popover-wrapper,\n  .bp3-tree-node-secondary-label .bp3-popover-target{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-content{\n  background-color:inherit;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-caret,\n.bp3-tree-node.bp3-disabled .bp3-tree-node-icon{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content,\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-standard, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-large{\n    color:#ffffff; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret::before{\n    color:rgba(255, 255, 255, 0.7); }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret:hover::before{\n    color:#ffffff; }\n\n.bp3-dark .bp3-tree-node-content:hover{\n  background-color:rgba(92, 112, 128, 0.3); }\n\n.bp3-dark .bp3-tree .bp3-icon, .bp3-dark .bp3-tree .bp3-icon-standard, .bp3-dark .bp3-tree .bp3-icon-large{\n  color:#a7b6c2; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-dark .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n.bp3-omnibar{\n  -webkit-filter:blur(0);\n          filter:blur(0);\n  opacity:1;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  left:calc(50% - 250px);\n  top:20vh;\n  width:500px;\n  z-index:21; }\n  .bp3-omnibar.bp3-overlay-enter, .bp3-omnibar.bp3-overlay-appear{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2; }\n  .bp3-omnibar.bp3-overlay-enter-active, .bp3-omnibar.bp3-overlay-appear-active{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar.bp3-overlay-exit{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1; }\n  .bp3-omnibar.bp3-overlay-exit-active{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar .bp3-input{\n    background-color:transparent;\n    border-radius:0; }\n    .bp3-omnibar .bp3-input, .bp3-omnibar .bp3-input:focus{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-omnibar .bp3-menu{\n    background-color:transparent;\n    border-radius:0;\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n    max-height:calc(60vh - 40px);\n    overflow:auto; }\n    .bp3-omnibar .bp3-menu:empty{\n      display:none; }\n  .bp3-dark .bp3-omnibar, .bp3-omnibar.bp3-dark{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-omnibar-overlay .bp3-overlay-backdrop{\n  background-color:rgba(16, 22, 26, 0.2); }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n\n.bp3-multi-select{\n  min-width:150px; }\n\n.bp3-multi-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto; }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* This file was auto-generated by ensureUiComponents() in @jupyterlab/buildutils */\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n/* Icons urls */\n\n:root {\n  --jp-icon-add: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDEzaC02djZoLTJ2LTZINXYtMmg2VjVoMnY2aDZ2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-bug: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0yMCA4aC0yLjgxYy0uNDUtLjc4LTEuMDctMS40NS0xLjgyLTEuOTZMMTcgNC40MSAxNS41OSAzbC0yLjE3IDIuMTdDMTIuOTYgNS4wNiAxMi40OSA1IDEyIDVjLS40OSAwLS45Ni4wNi0xLjQxLjE3TDguNDEgMyA3IDQuNDFsMS42MiAxLjYzQzcuODggNi41NSA3LjI2IDcuMjIgNi44MSA4SDR2MmgyLjA5Yy0uMDUuMzMtLjA5LjY2LS4wOSAxdjFINHYyaDJ2MWMwIC4zNC4wNC42Ny4wOSAxSDR2MmgyLjgxYzEuMDQgMS43OSAyLjk3IDMgNS4xOSAzczQuMTUtMS4yMSA1LjE5LTNIMjB2LTJoLTIuMDljLjA1LS4zMy4wOS0uNjYuMDktMXYtMWgydi0yaC0ydi0xYzAtLjM0LS4wNC0uNjctLjA5LTFIMjBWOHptLTYgOGgtNHYtMmg0djJ6bTAtNGgtNHYtMmg0djJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-build: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE0LjkgMTcuNDVDMTYuMjUgMTcuNDUgMTcuMzUgMTYuMzUgMTcuMzUgMTVDMTcuMzUgMTMuNjUgMTYuMjUgMTIuNTUgMTQuOSAxMi41NUMxMy41NCAxMi41NSAxMi40NSAxMy42NSAxMi40NSAxNUMxMi40NSAxNi4zNSAxMy41NCAxNy40NSAxNC45IDE3LjQ1Wk0yMC4xIDE1LjY4TDIxLjU4IDE2Ljg0QzIxLjcxIDE2Ljk1IDIxLjc1IDE3LjEzIDIxLjY2IDE3LjI5TDIwLjI2IDE5LjcxQzIwLjE3IDE5Ljg2IDIwIDE5LjkyIDE5LjgzIDE5Ljg2TDE4LjA5IDE5LjE2QzE3LjczIDE5LjQ0IDE3LjMzIDE5LjY3IDE2LjkxIDE5Ljg1TDE2LjY0IDIxLjdDMTYuNjIgMjEuODcgMTYuNDcgMjIgMTYuMyAyMkgxMy41QzEzLjMyIDIyIDEzLjE4IDIxLjg3IDEzLjE1IDIxLjdMMTIuODkgMTkuODVDMTIuNDYgMTkuNjcgMTIuMDcgMTkuNDQgMTEuNzEgMTkuMTZMOS45NjAwMiAxOS44NkM5LjgxMDAyIDE5LjkyIDkuNjIwMDIgMTkuODYgOS41NDAwMiAxOS43MUw4LjE0MDAyIDE3LjI5QzguMDUwMDIgMTcuMTMgOC4wOTAwMiAxNi45NSA4LjIyMDAyIDE2Ljg0TDkuNzAwMDIgMTUuNjhMOS42NTAwMSAxNUw5LjcwMDAyIDE0LjMxTDguMjIwMDIgMTMuMTZDOC4wOTAwMiAxMy4wNSA4LjA1MDAyIDEyLjg2IDguMTQwMDIgMTIuNzFMOS41NDAwMiAxMC4yOUM5LjYyMDAyIDEwLjEzIDkuODEwMDIgMTAuMDcgOS45NjAwMiAxMC4xM0wxMS43MSAxMC44NEMxMi4wNyAxMC41NiAxMi40NiAxMC4zMiAxMi44OSAxMC4xNUwxMy4xNSA4LjI4OTk4QzEzLjE4IDguMTI5OTggMTMuMzIgNy45OTk5OCAxMy41IDcuOTk5OThIMTYuM0MxNi40NyA3Ljk5OTk4IDE2LjYyIDguMTI5OTggMTYuNjQgOC4yODk5OEwxNi45MSAxMC4xNUMxNy4zMyAxMC4zMiAxNy43MyAxMC41NiAxOC4wOSAxMC44NEwxOS44MyAxMC4xM0MyMCAxMC4wNyAyMC4xNyAxMC4xMyAyMC4yNiAxMC4yOUwyMS42NiAxMi43MUMyMS43NSAxMi44NiAyMS43MSAxMy4wNSAyMS41OCAxMy4xNkwyMC4xIDE0LjMxTDIwLjE1IDE1TDIwLjEgMTUuNjhaIi8+CiAgICA8cGF0aCBkPSJNNy4zMjk2NiA3LjQ0NDU0QzguMDgzMSA3LjAwOTU0IDguMzM5MzIgNi4wNTMzMiA3LjkwNDMyIDUuMjk5ODhDNy40NjkzMiA0LjU0NjQzIDYuNTA4MSA0LjI4MTU2IDUuNzU0NjYgNC43MTY1NkM1LjM5MTc2IDQuOTI2MDggNS4xMjY5NSA1LjI3MTE4IDUuMDE4NDkgNS42NzU5NEM0LjkxMDA0IDYuMDgwNzEgNC45NjY4MiA2LjUxMTk4IDUuMTc2MzQgNi44NzQ4OEM1LjYxMTM0IDcuNjI4MzIgNi41NzYyMiA3Ljg3OTU0IDcuMzI5NjYgNy40NDQ1NFpNOS42NTcxOCA0Ljc5NTkzTDEwLjg2NzIgNC45NTE3OUMxMC45NjI4IDQuOTc3NDEgMTEuMDQwMiA1LjA3MTMzIDExLjAzODIgNS4xODc5M0wxMS4wMzg4IDYuOTg4OTNDMTEuMDQ1NSA3LjEwMDU0IDEwLjk2MTYgNy4xOTUxOCAxMC44NTUgNy4yMTA1NEw5LjY2MDAxIDcuMzgwODNMOS4yMzkxNSA4LjEzMTg4TDkuNjY5NjEgOS4yNTc0NUM5LjcwNzI5IDkuMzYyNzEgOS42NjkzNCA5LjQ3Njk5IDkuNTc0MDggOS41MzE5OUw4LjAxNTIzIDEwLjQzMkM3LjkxMTMxIDEwLjQ5MiA3Ljc5MzM3IDEwLjQ2NzcgNy43MjEwNSAxMC4zODI0TDYuOTg3NDggOS40MzE4OEw2LjEwOTMxIDkuNDMwODNMNS4zNDcwNCAxMC4zOTA1QzUuMjg5MDkgMTAuNDcwMiA1LjE3MzgzIDEwLjQ5MDUgNS4wNzE4NyAxMC40MzM5TDMuNTEyNDUgOS41MzI5M0MzLjQxMDQ5IDkuNDc2MzMgMy4zNzY0NyA5LjM1NzQxIDMuNDEwNzUgOS4yNTY3OUwzLjg2MzQ3IDguMTQwOTNMMy42MTc0OSA3Ljc3NDg4TDMuNDIzNDcgNy4zNzg4M0wyLjIzMDc1IDcuMjEyOTdDMi4xMjY0NyA3LjE5MjM1IDIuMDQwNDkgNy4xMDM0MiAyLjA0MjQ1IDYuOTg2ODJMMi4wNDE4NyA1LjE4NTgyQzIuMDQzODMgNS4wNjkyMiAyLjExOTA5IDQuOTc5NTggMi4yMTcwNCA0Ljk2OTIyTDMuNDIwNjUgNC43OTM5M0wzLjg2NzQ5IDQuMDI3ODhMMy40MTEwNSAyLjkxNzMxQzMuMzczMzcgMi44MTIwNCAzLjQxMTMxIDIuNjk3NzYgMy41MTUyMyAyLjYzNzc2TDUuMDc0MDggMS43Mzc3NkM1LjE2OTM0IDEuNjgyNzYgNS4yODcyOSAxLjcwNzA0IDUuMzU5NjEgMS43OTIzMUw2LjExOTE1IDIuNzI3ODhMNi45ODAwMSAyLjczODkzTDcuNzI0OTYgMS43ODkyMkM3Ljc5MTU2IDEuNzA0NTggNy45MTU0OCAxLjY3OTIyIDguMDA4NzkgMS43NDA4Mkw5LjU2ODIxIDIuNjQxODJDOS42NzAxNyAyLjY5ODQyIDkuNzEyODUgMi44MTIzNCA5LjY4NzIzIDIuOTA3OTdMOS4yMTcxOCA0LjAzMzgzTDkuNDYzMTYgNC4zOTk4OEw5LjY1NzE4IDQuNzk1OTNaIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iOS45LDEzLjYgMy42LDcuNCA0LjQsNi42IDkuOSwxMi4yIDE1LjQsNi43IDE2LjEsNy40ICIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNS45TDksOS43bDMuOC0zLjhsMS4yLDEuMmwtNC45LDVsLTQuOS01TDUuMiw1Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNy41TDksMTEuMmwzLjgtMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-left: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik0xMC44LDEyLjhMNy4xLDlsMy44LTMuOGwwLDcuNkgxMC44eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-right: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik03LjIsNS4yTDEwLjksOWwtMy44LDMuOFY1LjJINy4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-up-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iMTUuNCwxMy4zIDkuOSw3LjcgNC40LDEzLjIgMy42LDEyLjUgOS45LDYuMyAxNi4xLDEyLjYgIi8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-up: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik01LjIsMTAuNUw5LDYuOGwzLjgsMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-case-sensitive: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgogIDxnIGNsYXNzPSJqcC1pY29uLWFjY2VudDIiIGZpbGw9IiNGRkYiPgogICAgPHBhdGggZD0iTTcuNiw4aDAuOWwzLjUsOGgtMS4xTDEwLDE0SDZsLTAuOSwySDRMNy42LDh6IE04LDkuMUw2LjQsMTNoMy4yTDgsOS4xeiIvPgogICAgPHBhdGggZD0iTTE2LjYsOS44Yy0wLjIsMC4xLTAuNCwwLjEtMC43LDAuMWMtMC4yLDAtMC40LTAuMS0wLjYtMC4yYy0wLjEtMC4xLTAuMi0wLjQtMC4yLTAuNyBjLTAuMywwLjMtMC42LDAuNS0wLjksMC43Yy0wLjMsMC4xLTAuNywwLjItMS4xLDAuMmMtMC4zLDAtMC41LDAtMC43LTAuMWMtMC4yLTAuMS0wLjQtMC4yLTAuNi0wLjNjLTAuMi0wLjEtMC4zLTAuMy0wLjQtMC41IGMtMC4xLTAuMi0wLjEtMC40LTAuMS0wLjdjMC0wLjMsMC4xLTAuNiwwLjItMC44YzAuMS0wLjIsMC4zLTAuNCwwLjQtMC41QzEyLDcsMTIuMiw2LjksMTIuNSw2LjhjMC4yLTAuMSwwLjUtMC4xLDAuNy0wLjIgYzAuMy0wLjEsMC41LTAuMSwwLjctMC4xYzAuMiwwLDAuNC0wLjEsMC42LTAuMWMwLjIsMCwwLjMtMC4xLDAuNC0wLjJjMC4xLTAuMSwwLjItMC4yLDAuMi0wLjRjMC0xLTEuMS0xLTEuMy0xIGMtMC40LDAtMS40LDAtMS40LDEuMmgtMC45YzAtMC40LDAuMS0wLjcsMC4yLTFjMC4xLTAuMiwwLjMtMC40LDAuNS0wLjZjMC4yLTAuMiwwLjUtMC4zLDAuOC0wLjNDMTMuMyw0LDEzLjYsNCwxMy45LDQgYzAuMywwLDAuNSwwLDAuOCwwLjFjMC4zLDAsMC41LDAuMSwwLjcsMC4yYzAuMiwwLjEsMC40LDAuMywwLjUsMC41QzE2LDUsMTYsNS4yLDE2LDUuNnYyLjljMCwwLjIsMCwwLjQsMCwwLjUgYzAsMC4xLDAuMSwwLjIsMC4zLDAuMmMwLjEsMCwwLjIsMCwwLjMsMFY5Ljh6IE0xNS4yLDYuOWMtMS4yLDAuNi0zLjEsMC4yLTMuMSwxLjRjMCwxLjQsMy4xLDEsMy4xLTAuNVY2Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-check: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik05IDE2LjE3TDQuODMgMTJsLTEuNDIgMS40MUw5IDE5IDIxIDdsLTEuNDEtMS40MXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-circle-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDJDNi40NyAyIDIgNi40NyAyIDEyczQuNDcgMTAgMTAgMTAgMTAtNC40NyAxMC0xMFMxNy41MyAyIDEyIDJ6bTAgMThjLTQuNDEgMC04LTMuNTktOC04czMuNTktOCA4LTggOCAzLjU5IDggOC0zLjU5IDgtOCA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-circle: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjgiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-clear: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8bWFzayBpZD0iZG9udXRIb2xlIj4KICAgIDxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0id2hpdGUiIC8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSI4IiBmaWxsPSJibGFjayIvPgogIDwvbWFzaz4KCiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxyZWN0IGhlaWdodD0iMTgiIHdpZHRoPSIyIiB4PSIxMSIgeT0iMyIgdHJhbnNmb3JtPSJyb3RhdGUoMzE1LCAxMiwgMTIpIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIgbWFzaz0idXJsKCNkb251dEhvbGUpIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-close: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1ub25lIGpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIGpwLWljb24zLWhvdmVyIiBmaWxsPSJub25lIj4KICAgIDxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjExIi8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIGpwLWljb24tYWNjZW50Mi1ob3ZlciIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMTkgNi40MUwxNy41OSA1IDEyIDEwLjU5IDYuNDEgNSA1IDYuNDEgMTAuNTkgMTIgNSAxNy41OSA2LjQxIDE5IDEyIDEzLjQxIDE3LjU5IDE5IDE5IDE3LjU5IDEzLjQxIDEyeiIvPgogIDwvZz4KCiAgPGcgY2xhc3M9ImpwLWljb24tbm9uZSBqcC1pY29uLWJ1c3kiIGZpbGw9Im5vbmUiPgogICAgPGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-code: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTExLjQgMTguNkw2LjggMTRMMTEuNCA5LjRMMTAgOEw0IDE0TDEwIDIwTDExLjQgMTguNlpNMTYuNiAxOC42TDIxLjIgMTRMMTYuNiA5LjRMMTggOEwyNCAxNEwxOCAyMEwxNi42IDE4LjZWMTguNloiLz4KCTwvZz4KPC9zdmc+Cg==);\n  --jp-icon-console: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwMCAyMDAiPgogIDxnIGNsYXNzPSJqcC1pY29uLWJyYW5kMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMjg4RDEiPgogICAgPHBhdGggZD0iTTIwIDE5LjhoMTYwdjE1OS45SDIweiIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNmZmYiPgogICAgPHBhdGggZD0iTTEwNSAxMjcuM2g0MHYxMi44aC00MHpNNTEuMSA3N0w3NCA5OS45bC0yMy4zIDIzLjMgMTAuNSAxMC41IDIzLjMtMjMuM0w5NSA5OS45IDg0LjUgODkuNCA2MS42IDY2LjV6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-copy: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTExLjksMUgzLjJDMi40LDEsMS43LDEuNywxLjcsMi41djEwLjJoMS41VjIuNWg4LjdWMXogTTE0LjEsMy45aC04Yy0wLjgsMC0xLjUsMC43LTEuNSwxLjV2MTAuMmMwLDAuOCwwLjcsMS41LDEuNSwxLjVoOCBjMC44LDAsMS41LTAuNywxLjUtMS41VjUuNEMxNS41LDQuNiwxNC45LDMuOSwxNC4xLDMuOXogTTE0LjEsMTUuNWgtOFY1LjRoOFYxNS41eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-copyright: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDI0IDI0IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCI+CiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0xMS44OCw5LjE0YzEuMjgsMC4wNiwxLjYxLDEuMTUsMS42MywxLjY2aDEuNzljLTAuMDgtMS45OC0xLjQ5LTMuMTktMy40NS0zLjE5QzkuNjQsNy42MSw4LDksOCwxMi4xNCBjMCwxLjk0LDAuOTMsNC4yNCwzLjg0LDQuMjRjMi4yMiwwLDMuNDEtMS42NSwzLjQ0LTIuOTVoLTEuNzljLTAuMDMsMC41OS0wLjQ1LDEuMzgtMS42MywxLjQ0QzEwLjU1LDE0LjgzLDEwLDEzLjgxLDEwLDEyLjE0IEMxMCw5LjI1LDExLjI4LDkuMTYsMTEuODgsOS4xNHogTTEyLDJDNi40OCwyLDIsNi40OCwyLDEyczQuNDgsMTAsMTAsMTBzMTAtNC40OCwxMC0xMFMxNy41MiwyLDEyLDJ6IE0xMiwyMGMtNC40MSwwLTgtMy41OS04LTggczMuNTktOCw4LThzOCwzLjU5LDgsOFMxNi40MSwyMCwxMiwyMHoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-cut: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkuNjQgNy42NGMuMjMtLjUuMzYtMS4wNS4zNi0xLjY0IDAtMi4yMS0xLjc5LTQtNC00UzIgMy43OSAyIDZzMS43OSA0IDQgNGMuNTkgMCAxLjE0LS4xMyAxLjY0LS4zNkwxMCAxMmwtMi4zNiAyLjM2QzcuMTQgMTQuMTMgNi41OSAxNCA2IDE0Yy0yLjIxIDAtNCAxLjc5LTQgNHMxLjc5IDQgNCA0IDQtMS43OSA0LTRjMC0uNTktLjEzLTEuMTQtLjM2LTEuNjRMMTIgMTRsNyA3aDN2LTFMOS42NCA3LjY0ek02IDhjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTAgMTJjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTYtNy41Yy0uMjggMC0uNS0uMjItLjUtLjVzLjIyLS41LjUtLjUuNS4yMi41LjUtLjIyLjUtLjUuNXpNMTkgM2wtNiA2IDIgMiA3LTdWM3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-download: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDloLTRWM0g5djZINWw3IDcgNy03ek01IDE4djJoMTR2LTJINXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-edit: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMgMTcuMjVWMjFoMy43NUwxNy44MSA5Ljk0bC0zLjc1LTMuNzVMMyAxNy4yNXpNMjAuNzEgNy4wNGMuMzktLjM5LjM5LTEuMDIgMC0xLjQxbC0yLjM0LTIuMzRjLS4zOS0uMzktMS4wMi0uMzktMS40MSAwbC0xLjgzIDEuODMgMy43NSAzLjc1IDEuODMtMS44M3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-ellipses: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iNSIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxOSIgY3k9IjEyIiByPSIyIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-extension: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwLjUgMTFIMTlWN2MwLTEuMS0uOS0yLTItMmgtNFYzLjVDMTMgMi4xMiAxMS44OCAxIDEwLjUgMVM4IDIuMTIgOCAzLjVWNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAydjMuOEgzLjVjMS40OSAwIDIuNyAxLjIxIDIuNyAyLjdzLTEuMjEgMi43LTIuNyAyLjdIMlYyMGMwIDEuMS45IDIgMiAyaDMuOHYtMS41YzAtMS40OSAxLjIxLTIuNyAyLjctMi43IDEuNDkgMCAyLjcgMS4yMSAyLjcgMi43VjIySDE3YzEuMSAwIDItLjkgMi0ydi00aDEuNWMxLjM4IDAgMi41LTEuMTIgMi41LTIuNVMyMS44OCAxMSAyMC41IDExeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-fast-forward: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTQgMThsOC41LTZMNCA2djEyem05LTEydjEybDguNS02TDEzIDZ6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-file-upload: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkgMTZoNnYtNmg0bC03LTctNyA3aDR6bS00IDJoMTR2Mkg1eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-file: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuMyA4LjJsLTUuNS01LjVjLS4zLS4zLS43LS41LTEuMi0uNUgzLjljLS44LjEtMS42LjktMS42IDEuOHYxNC4xYzAgLjkuNyAxLjYgMS42IDEuNmgxNC4yYy45IDAgMS42LS43IDEuNi0xLjZWOS40Yy4xLS41LS4xLS45LS40LTEuMnptLTUuOC0zLjNsMy40IDMuNmgtMy40VjQuOXptMy45IDEyLjdINC43Yy0uMSAwLS4yIDAtLjItLjJWNC43YzAtLjIuMS0uMy4yLS4zaDcuMnY0LjRzMCAuOC4zIDEuMWMuMy4zIDEuMS4zIDEuMS4zaDQuM3Y3LjJzLS4xLjItLjIuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-filter-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEwIDE4aDR2LTJoLTR2MnpNMyA2djJoMThWNkgzem0zIDdoMTJ2LTJINnYyeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY4YzAtMS4xLS45LTItMi0yaC04bC0yLTJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-html5: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMDAiIGQ9Ik0xMDguNCAwaDIzdjIyLjhoMjEuMlYwaDIzdjY5aC0yM1Y0NmgtMjF2MjNoLTIzLjJNMjA2IDIzaC0yMC4zVjBoNjMuN3YyM0gyMjl2NDZoLTIzbTUzLjUtNjloMjQuMWwxNC44IDI0LjNMMzEzLjIgMGgyNC4xdjY5aC0yM1YzNC44bC0xNi4xIDI0LjgtMTYuMS0yNC44VjY5aC0yMi42bTg5LjItNjloMjN2NDYuMmgzMi42VjY5aC01NS42Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI2U0NGQyNiIgZD0iTTEwNy42IDQ3MWwtMzMtMzcwLjRoMzYyLjhsLTMzIDM3MC4yTDI1NS43IDUxMiIvPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNmMTY1MjkiIGQ9Ik0yNTYgNDgwLjVWMTMxaDE0OC4zTDM3NiA0NDciLz4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNlYmViZWIiIGQ9Ik0xNDIgMTc2LjNoMTE0djQ1LjRoLTY0LjJsNC4yIDQ2LjVoNjB2NDUuM0gxNTQuNG0yIDIyLjhIMjAybDMuMiAzNi4zIDUwLjggMTMuNnY0Ny40bC05My4yLTI2Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIiBmaWxsPSIjZmZmIiBkPSJNMzY5LjYgMTc2LjNIMjU1Ljh2NDUuNGgxMDkuNm0tNC4xIDQ2LjVIMjU1Ljh2NDUuNGg1NmwtNS4zIDU5LTUwLjcgMTMuNnY0Ny4ybDkzLTI1LjgiLz4KPC9zdmc+Cg==);\n  --jp-icon-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1icmFuZDQganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNGRkYiIGQ9Ik0yLjIgMi4yaDE3LjV2MTcuNUgyLjJ6Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzNGNTFCNSIgZD0iTTIuMiAyLjJ2MTcuNWgxNy41bC4xLTE3LjVIMi4yem0xMi4xIDIuMmMxLjIgMCAyLjIgMSAyLjIgMi4ycy0xIDIuMi0yLjIgMi4yLTIuMi0xLTIuMi0yLjIgMS0yLjIgMi4yLTIuMnpNNC40IDE3LjZsMy4zLTguOCAzLjMgNi42IDIuMi0zLjIgNC40IDUuNEg0LjR6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-inspector: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY2YzAtMS4xLS45LTItMi0yem0tNSAxNEg0di00aDExdjR6bTAtNUg0VjloMTF2NHptNSA1aC00VjloNHY5eiIvPgo8L3N2Zz4K);\n  --jp-icon-json: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNGOUE4MjUiPgogICAgPHBhdGggZD0iTTIwLjIgMTEuOGMtMS42IDAtMS43LjUtMS43IDEgMCAuNC4xLjkuMSAxLjMuMS41LjEuOS4xIDEuMyAwIDEuNy0xLjQgMi4zLTMuNSAyLjNoLS45di0xLjloLjVjMS4xIDAgMS40IDAgMS40LS44IDAtLjMgMC0uNi0uMS0xIDAtLjQtLjEtLjgtLjEtMS4yIDAtMS4zIDAtMS44IDEuMy0yLTEuMy0uMi0xLjMtLjctMS4zLTIgMC0uNC4xLS44LjEtMS4yLjEtLjQuMS0uNy4xLTEgMC0uOC0uNC0uNy0xLjQtLjhoLS41VjQuMWguOWMyLjIgMCAzLjUuNyAzLjUgMi4zIDAgLjQtLjEuOS0uMSAxLjMtLjEuNS0uMS45LS4xIDEuMyAwIC41LjIgMSAxLjcgMXYxLjh6TTEuOCAxMC4xYzEuNiAwIDEuNy0uNSAxLjctMSAwLS40LS4xLS45LS4xLTEuMy0uMS0uNS0uMS0uOS0uMS0xLjMgMC0xLjYgMS40LTIuMyAzLjUtMi4zaC45djEuOWgtLjVjLTEgMC0xLjQgMC0xLjQuOCAwIC4zIDAgLjYuMSAxIDAgLjIuMS42LjEgMSAwIDEuMyAwIDEuOC0xLjMgMkM2IDExLjIgNiAxMS43IDYgMTNjMCAuNC0uMS44LS4xIDEuMi0uMS4zLS4xLjctLjEgMSAwIC44LjMuOCAxLjQuOGguNXYxLjloLS45Yy0yLjEgMC0zLjUtLjYtMy41LTIuMyAwLS40LjEtLjkuMS0xLjMuMS0uNS4xLS45LjEtMS4zIDAtLjUtLjItMS0xLjctMXYtMS45eiIvPgogICAgPGNpcmNsZSBjeD0iMTEiIGN5PSIxMy44IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY3g9IjExIiBjeT0iOC4yIiByPSIyLjEiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-julia: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDMyNSAzMDAiPgogIDxnIGNsYXNzPSJqcC1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjY2IzYzMzIj4KICAgIDxwYXRoIGQ9Ik0gMTUwLjg5ODQzOCAyMjUgQyAxNTAuODk4NDM4IDI2Ni40MjE4NzUgMTE3LjMyMDMxMiAzMDAgNzUuODk4NDM4IDMwMCBDIDM0LjQ3NjU2MiAzMDAgMC44OTg0MzggMjY2LjQyMTg3NSAwLjg5ODQzOCAyMjUgQyAwLjg5ODQzOCAxODMuNTc4MTI1IDM0LjQ3NjU2MiAxNTAgNzUuODk4NDM4IDE1MCBDIDExNy4zMjAzMTIgMTUwIDE1MC44OTg0MzggMTgzLjU3ODEyNSAxNTAuODk4NDM4IDIyNSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzM4OTgyNiI+CiAgICA8cGF0aCBkPSJNIDIzNy41IDc1IEMgMjM3LjUgMTE2LjQyMTg3NSAyMDMuOTIxODc1IDE1MCAxNjIuNSAxNTAgQyAxMjEuMDc4MTI1IDE1MCA4Ny41IDExNi40MjE4NzUgODcuNSA3NSBDIDg3LjUgMzMuNTc4MTI1IDEyMS4wNzgxMjUgMCAxNjIuNSAwIEMgMjAzLjkyMTg3NSAwIDIzNy41IDMzLjU3ODEyNSAyMzcuNSA3NSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzk1NThiMiI+CiAgICA8cGF0aCBkPSJNIDMyNC4xMDE1NjIgMjI1IEMgMzI0LjEwMTU2MiAyNjYuNDIxODc1IDI5MC41MjM0MzggMzAwIDI0OS4xMDE1NjIgMzAwIEMgMjA3LjY3OTY4OCAzMDAgMTc0LjEwMTU2MiAyNjYuNDIxODc1IDE3NC4xMDE1NjIgMjI1IEMgMTc0LjEwMTU2MiAxODMuNTc4MTI1IDIwNy42Nzk2ODggMTUwIDI0OS4xMDE1NjIgMTUwIEMgMjkwLjUyMzQzOCAxNTAgMzI0LjEwMTU2MiAxODMuNTc4MTI1IDMyNC4xMDE1NjIgMjI1Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-jupyter-favicon: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUyIiBoZWlnaHQ9IjE2NSIgdmlld0JveD0iMCAwIDE1MiAxNjUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA3ODk0NywgMTEwLjU4MjkyNykiIGQ9Ik03NS45NDIyODQyLDI5LjU4MDQ1NjEgQzQzLjMwMjM5NDcsMjkuNTgwNDU2MSAxNC43OTY3ODMyLDE3LjY1MzQ2MzQgMCwwIEM1LjUxMDgzMjExLDE1Ljg0MDY4MjkgMTUuNzgxNTM4OSwyOS41NjY3NzMyIDI5LjM5MDQ5NDcsMzkuMjc4NDE3MSBDNDIuOTk5Nyw0OC45ODk4NTM3IDU5LjI3MzcsNTQuMjA2NzgwNSA3NS45NjA1Nzg5LDU0LjIwNjc4MDUgQzkyLjY0NzQ1NzksNTQuMjA2NzgwNSAxMDguOTIxNDU4LDQ4Ljk4OTg1MzcgMTIyLjUzMDY2MywzOS4yNzg0MTcxIEMxMzYuMTM5NDUzLDI5LjU2Njc3MzIgMTQ2LjQxMDI4NCwxNS44NDA2ODI5IDE1MS45MjExNTgsMCBDMTM3LjA4Nzg2OCwxNy42NTM0NjM0IDEwOC41ODI1ODksMjkuNTgwNDU2MSA3NS45NDIyODQyLDI5LjU4MDQ1NjEgTDc1Ljk0MjI4NDIsMjkuNTgwNDU2MSBaIiAvPgogICAgPHBhdGggdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMzczNjgsIDAuNzA0ODc4KSIgZD0iTTc1Ljk3ODQ1NzksMjQuNjI2NDA3MyBDMTA4LjYxODc2MywyNC42MjY0MDczIDEzNy4xMjQ0NTgsMzYuNTUzNDQxNSAxNTEuOTIxMTU4LDU0LjIwNjc4MDUgQzE0Ni40MTAyODQsMzguMzY2MjIyIDEzNi4xMzk0NTMsMjQuNjQwMTMxNyAxMjIuNTMwNjYzLDE0LjkyODQ4NzggQzEwOC45MjE0NTgsNS4yMTY4NDM5IDkyLjY0NzQ1NzksMCA3NS45NjA1Nzg5LDAgQzU5LjI3MzcsMCA0Mi45OTk3LDUuMjE2ODQzOSAyOS4zOTA0OTQ3LDE0LjkyODQ4NzggQzE1Ljc4MTUzODksMjQuNjQwMTMxNyA1LjUxMDgzMjExLDM4LjM2NjIyMiAwLDU0LjIwNjc4MDUgQzE0LjgzMzA4MTYsMzYuNTg5OTI5MyA0My4zMzg1Njg0LDI0LjYyNjQwNzMgNzUuOTc4NDU3OSwyNC42MjY0MDczIEw3NS45Nzg0NTc5LDI0LjYyNjQwNzMgWiIgLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-jupyter: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzkiIGhlaWdodD0iNTEiIHZpZXdCb3g9IjAgMCAzOSA1MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTYzOCAtMjI4MSkiPgogICAgPGcgY2xhc3M9ImpwLWljb24td2FybjAiIGZpbGw9IiNGMzc3MjYiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5Ljc0IDIzMTEuOTgpIiBkPSJNIDE4LjI2NDYgNy4xMzQxMUMgMTAuNDE0NSA3LjEzNDExIDMuNTU4NzIgNC4yNTc2IDAgMEMgMS4zMjUzOSAzLjgyMDQgMy43OTU1NiA3LjEzMDgxIDcuMDY4NiA5LjQ3MzAzQyAxMC4zNDE3IDExLjgxNTIgMTQuMjU1NyAxMy4wNzM0IDE4LjI2OSAxMy4wNzM0QyAyMi4yODIzIDEzLjA3MzQgMjYuMTk2MyAxMS44MTUyIDI5LjQ2OTQgOS40NzMwM0MgMzIuNzQyNCA3LjEzMDgxIDM1LjIxMjYgMy44MjA0IDM2LjUzOCAwQyAzMi45NzA1IDQuMjU3NiAyNi4xMTQ4IDcuMTM0MTEgMTguMjY0NiA3LjEzNDExWiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5LjczIDIyODUuNDgpIiBkPSJNIDE4LjI3MzMgNS45MzkzMUMgMjYuMTIzNSA1LjkzOTMxIDMyLjk3OTMgOC44MTU4MyAzNi41MzggMTMuMDczNEMgMzUuMjEyNiA5LjI1MzAzIDMyLjc0MjQgNS45NDI2MiAyOS40Njk0IDMuNjAwNEMgMjYuMTk2MyAxLjI1ODE4IDIyLjI4MjMgMCAxOC4yNjkgMEMgMTQuMjU1NyAwIDEwLjM0MTcgMS4yNTgxOCA3LjA2ODYgMy42MDA0QyAzLjc5NTU2IDUuOTQyNjIgMS4zMjUzOSA5LjI1MzAzIDAgMTMuMDczNEMgMy41Njc0NSA4LjgyNDYzIDEwLjQyMzIgNS45MzkzMSAxOC4yNzMzIDUuOTM5MzFaIi8+CiAgICA8L2c+CiAgICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjY5LjMgMjI4MS4zMSkiIGQ9Ik0gNS44OTM1MyAyLjg0NEMgNS45MTg4OSAzLjQzMTY1IDUuNzcwODUgNC4wMTM2NyA1LjQ2ODE1IDQuNTE2NDVDIDUuMTY1NDUgNS4wMTkyMiA0LjcyMTY4IDUuNDIwMTUgNC4xOTI5OSA1LjY2ODUxQyAzLjY2NDMgNS45MTY4OCAzLjA3NDQ0IDYuMDAxNTEgMi40OTgwNSA1LjkxMTcxQyAxLjkyMTY2IDUuODIxOSAxLjM4NDYzIDUuNTYxNyAwLjk1NDg5OCA1LjE2NDAxQyAwLjUyNTE3IDQuNzY2MzMgMC4yMjIwNTYgNC4yNDkwMyAwLjA4MzkwMzcgMy42Nzc1N0MgLTAuMDU0MjQ4MyAzLjEwNjExIC0wLjAyMTIzIDIuNTA2MTcgMC4xNzg3ODEgMS45NTM2NEMgMC4zNzg3OTMgMS40MDExIDAuNzM2ODA5IDAuOTIwODE3IDEuMjA3NTQgMC41NzM1MzhDIDEuNjc4MjYgMC4yMjYyNTkgMi4yNDA1NSAwLjAyNzU5MTkgMi44MjMyNiAwLjAwMjY3MjI5QyAzLjYwMzg5IC0wLjAzMDcxMTUgNC4zNjU3MyAwLjI0OTc4OSA0Ljk0MTQyIDAuNzgyNTUxQyA1LjUxNzExIDEuMzE1MzEgNS44NTk1NiAyLjA1Njc2IDUuODkzNTMgMi44NDRaIi8+CiAgICAgIDxwYXRoIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE2MzkuOCAyMzIzLjgxKSIgZD0iTSA3LjQyNzg5IDMuNTgzMzhDIDcuNDYwMDggNC4zMjQzIDcuMjczNTUgNS4wNTgxOSA2Ljg5MTkzIDUuNjkyMTNDIDYuNTEwMzEgNi4zMjYwNyA1Ljk1MDc1IDYuODMxNTYgNS4yODQxMSA3LjE0NDZDIDQuNjE3NDcgNy40NTc2MyAzLjg3MzcxIDcuNTY0MTQgMy4xNDcwMiA3LjQ1MDYzQyAyLjQyMDMyIDcuMzM3MTIgMS43NDMzNiA3LjAwODcgMS4yMDE4NCA2LjUwNjk1QyAwLjY2MDMyOCA2LjAwNTIgMC4yNzg2MSA1LjM1MjY4IDAuMTA1MDE3IDQuNjMyMDJDIC0wLjA2ODU3NTcgMy45MTEzNSAtMC4wMjYyMzYxIDMuMTU0OTQgMC4yMjY2NzUgMi40NTg1NkMgMC40Nzk1ODcgMS43NjIxNyAwLjkzMTY5NyAxLjE1NzEzIDEuNTI1NzYgMC43MjAwMzNDIDIuMTE5ODMgMC4yODI5MzUgMi44MjkxNCAwLjAzMzQzOTUgMy41NjM4OSAwLjAwMzEzMzQ0QyA0LjU0NjY3IC0wLjAzNzQwMzMgNS41MDUyOSAwLjMxNjcwNiA2LjIyOTYxIDAuOTg3ODM1QyA2Ljk1MzkzIDEuNjU4OTYgNy4zODQ4NCAyLjU5MjM1IDcuNDI3ODkgMy41ODMzOEwgNy40Mjc4OSAzLjU4MzM4WiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM4LjM2IDIyODYuMDYpIiBkPSJNIDIuMjc0NzEgNC4zOTYyOUMgMS44NDM2MyA0LjQxNTA4IDEuNDE2NzEgNC4zMDQ0NSAxLjA0Nzk5IDQuMDc4NDNDIDAuNjc5MjY4IDMuODUyNCAwLjM4NTMyOCAzLjUyMTE0IDAuMjAzMzcxIDMuMTI2NTZDIDAuMDIxNDEzNiAyLjczMTk4IC0wLjA0MDM3OTggMi4yOTE4MyAwLjAyNTgxMTYgMS44NjE4MUMgMC4wOTIwMDMxIDEuNDMxOCAwLjI4MzIwNCAxLjAzMTI2IDAuNTc1MjEzIDAuNzEwODgzQyAwLjg2NzIyMiAwLjM5MDUxIDEuMjQ2OTEgMC4xNjQ3MDggMS42NjYyMiAwLjA2MjA1OTJDIDIuMDg1NTMgLTAuMDQwNTg5NyAyLjUyNTYxIC0wLjAxNTQ3MTQgMi45MzA3NiAwLjEzNDIzNUMgMy4zMzU5MSAwLjI4Mzk0MSAzLjY4NzkyIDAuNTUxNTA1IDMuOTQyMjIgMC45MDMwNkMgNC4xOTY1MiAxLjI1NDYyIDQuMzQxNjkgMS42NzQzNiA0LjM1OTM1IDIuMTA5MTZDIDQuMzgyOTkgMi42OTEwNyA0LjE3Njc4IDMuMjU4NjkgMy43ODU5NyAzLjY4NzQ2QyAzLjM5NTE2IDQuMTE2MjQgMi44NTE2NiA0LjM3MTE2IDIuMjc0NzEgNC4zOTYyOUwgMi4yNzQ3MSA0LjM5NjI5WiIvPgogICAgPC9nPgogIDwvZz4+Cjwvc3ZnPgo=);\n  --jp-icon-jupyterlab-wordmark: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIHZpZXdCb3g9IjAgMCAxODYwLjggNDc1Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0RTRFNEUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ4MC4xMzY0MDEsIDY0LjI3MTQ5MykiPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMDAwMDAsIDU4Ljg3NTU2NikiPgogICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA4NzYwMywgMC4xNDAyOTQpIj4KICAgICAgICA8cGF0aCBkPSJNLTQyNi45LDE2OS44YzAsNDguNy0zLjcsNjQuNy0xMy42LDc2LjRjLTEwLjgsMTAtMjUsMTUuNS0zOS43LDE1LjVsMy43LDI5IGMyMi44LDAuMyw0NC44LTcuOSw2MS45LTIzLjFjMTcuOC0xOC41LDI0LTQ0LjEsMjQtODMuM1YwSC00Mjd2MTcwLjFMLTQyNi45LDE2OS44TC00MjYuOSwxNjkuOHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTU1LjA0NTI5NiwgNTYuODM3MTA0KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuNTYyNDUzLCAxLjc5OTg0MikiPgogICAgICAgIDxwYXRoIGQ9Ik0tMzEyLDE0OGMwLDIxLDAsMzkuNSwxLjcsNTUuNGgtMzEuOGwtMi4xLTMzLjNoLTAuOGMtNi43LDExLjYtMTYuNCwyMS4zLTI4LDI3LjkgYy0xMS42LDYuNi0yNC44LDEwLTM4LjIsOS44Yy0zMS40LDAtNjktMTcuNy02OS04OVYwaDM2LjR2MTEyLjdjMCwzOC43LDExLjYsNjQuNyw0NC42LDY0LjdjMTAuMy0wLjIsMjAuNC0zLjUsMjguOS05LjQgYzguNS01LjksMTUuMS0xNC4zLDE4LjktMjMuOWMyLjItNi4xLDMuMy0xMi41LDMuMy0xOC45VjAuMmgzNi40VjE0OEgtMzEyTC0zMTIsMTQ4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzOTAuMDEzMzIyLCA1My40Nzk2MzgpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS43MDY0NTgsIDAuMjMxNDI1KSI+CiAgICAgICAgPHBhdGggZD0iTS00NzguNiw3MS40YzAtMjYtMC44LTQ3LTEuNy02Ni43aDMyLjdsMS43LDM0LjhoMC44YzcuMS0xMi41LDE3LjUtMjIuOCwzMC4xLTI5LjcgYzEyLjUtNywyNi43LTEwLjMsNDEtOS44YzQ4LjMsMCw4NC43LDQxLjcsODQuNywxMDMuM2MwLDczLjEtNDMuNywxMDkuMi05MSwxMDkuMmMtMTIuMSwwLjUtMjQuMi0yLjItMzUtNy44IGMtMTAuOC01LjYtMTkuOS0xMy45LTI2LjYtMjQuMmgtMC44VjI5MWgtMzZ2LTIyMEwtNDc4LjYsNzEuNEwtNDc4LjYsNzEuNHogTS00NDIuNiwxMjUuNmMwLjEsNS4xLDAuNiwxMC4xLDEuNywxNS4xIGMzLDEyLjMsOS45LDIzLjMsMTkuOCwzMS4xYzkuOSw3LjgsMjIuMSwxMi4xLDM0LjcsMTIuMWMzOC41LDAsNjAuNy0zMS45LDYwLjctNzguNWMwLTQwLjctMjEuMS03NS42LTU5LjUtNzUuNiBjLTEyLjksMC40LTI1LjMsNS4xLTM1LjMsMTMuNGMtOS45LDguMy0xNi45LDE5LjctMTkuNiwzMi40Yy0xLjUsNC45LTIuMywxMC0yLjUsMTUuMVYxMjUuNkwtNDQyLjYsMTI1LjZMLTQ0Mi42LDEyNS42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MDYuNzQwNzI2LCA1Ni44MzcxMDQpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC43NTEyMjYsIDEuOTg5Mjk5KSI+CiAgICAgICAgPHBhdGggZD0iTS00NDAuOCwwbDQzLjcsMTIwLjFjNC41LDEzLjQsOS41LDI5LjQsMTIuOCw0MS43aDAuOGMzLjctMTIuMiw3LjktMjcuNywxMi44LTQyLjQgbDM5LjctMTE5LjJoMzguNUwtMzQ2LjksMTQ1Yy0yNiw2OS43LTQzLjcsMTA1LjQtNjguNiwxMjcuMmMtMTIuNSwxMS43LTI3LjksMjAtNDQuNiwyMy45bC05LjEtMzEuMSBjMTEuNy0zLjksMjIuNS0xMC4xLDMxLjgtMTguMWMxMy4yLTExLjEsMjMuNy0yNS4yLDMwLjYtNDEuMmMxLjUtMi44LDIuNS01LjcsMi45LTguOGMtMC4zLTMuMy0xLjItNi42LTIuNS05LjdMLTQ4MC4yLDAuMSBoMzkuN0wtNDQwLjgsMEwtNDQwLjgsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODIyLjc0ODEwNCwgMC4wMDAwMDApIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS40NjQwNTAsIDAuMzc4OTE0KSI+CiAgICAgICAgPHBhdGggZD0iTS00MTMuNywwdjU4LjNoNTJ2MjguMmgtNTJWMTk2YzAsMjUsNywzOS41LDI3LjMsMzkuNWM3LjEsMC4xLDE0LjItMC43LDIxLjEtMi41IGwxLjcsMjcuN2MtMTAuMywzLjctMjEuMyw1LjQtMzIuMiw1Yy03LjMsMC40LTE0LjYtMC43LTIxLjMtMy40Yy02LjgtMi43LTEyLjktNi44LTE3LjktMTIuMWMtMTAuMy0xMC45LTE0LjEtMjktMTQuMS01Mi45IFY4Ni41aC0zMVY1OC4zaDMxVjkuNkwtNDEzLjcsMEwtNDEzLjcsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOTc0LjQzMzI4NiwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuOTkwMDM0LCAwLjYxMDMzOSkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDQ1LjgsMTEzYzAuOCw1MCwzMi4yLDcwLjYsNjguNiw3MC42YzE5LDAuNiwzNy45LTMsNTUuMy0xMC41bDYuMiwyNi40IGMtMjAuOSw4LjktNDMuNSwxMy4xLTY2LjIsMTIuNmMtNjEuNSwwLTk4LjMtNDEuMi05OC4zLTEwMi41Qy00ODAuMiw0OC4yLTQ0NC43LDAtMzg2LjUsMGM2NS4yLDAsODIuNyw1OC4zLDgyLjcsOTUuNyBjLTAuMSw1LjgtMC41LDExLjUtMS4yLDE3LjJoLTE0MC42SC00NDUuOEwtNDQ1LjgsMTEzeiBNLTMzOS4yLDg2LjZjMC40LTIzLjUtOS41LTYwLjEtNTAuNC02MC4xIGMtMzYuOCwwLTUyLjgsMzQuNC01NS43LDYwLjFILTMzOS4yTC0zMzkuMiw4Ni42TC0zMzkuMiw4Ni42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjAxLjk2MTA1OCwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuMTc5NjQwLCAwLjcwNTA2OCkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDc4LjYsNjhjMC0yMy45LTAuNC00NC41LTEuNy02My40aDMxLjhsMS4yLDM5LjloMS43YzkuMS0yNy4zLDMxLTQ0LjUsNTUuMy00NC41IGMzLjUtMC4xLDcsMC40LDEwLjMsMS4ydjM0LjhjLTQuMS0wLjktOC4yLTEuMy0xMi40LTEuMmMtMjUuNiwwLTQzLjcsMTkuNy00OC43LDQ3LjRjLTEsNS43LTEuNiwxMS41LTEuNywxNy4ydjEwOC4zaC0zNlY2OCBMLTQ3OC42LDY4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCBkPSJNMTM1Mi4zLDMyNi4yaDM3VjI4aC0zN1YzMjYuMnogTTE2MDQuOCwzMjYuMmMtMi41LTEzLjktMy40LTMxLjEtMy40LTQ4Ljd2LTc2IGMwLTQwLjctMTUuMS04My4xLTc3LjMtODMuMWMtMjUuNiwwLTUwLDcuMS02Ni44LDE4LjFsOC40LDI0LjRjMTQuMy05LjIsMzQtMTUuMSw1My0xNS4xYzQxLjYsMCw0Ni4yLDMwLjIsNDYuMiw0N3Y0LjIgYy03OC42LTAuNC0xMjIuMywyNi41LTEyMi4zLDc1LjZjMCwyOS40LDIxLDU4LjQsNjIuMiw1OC40YzI5LDAsNTAuOS0xNC4zLDYyLjItMzAuMmgxLjNsMi45LDI1LjZIMTYwNC44eiBNMTU2NS43LDI1Ny43IGMwLDMuOC0wLjgsOC0yLjEsMTEuOGMtNS45LDE3LjItMjIuNywzNC00OS4yLDM0Yy0xOC45LDAtMzQuOS0xMS4zLTM0LjktMzUuM2MwLTM5LjUsNDUuOC00Ni42LDg2LjItNDUuOFYyNTcuN3ogTTE2OTguNSwzMjYuMiBsMS43LTMzLjZoMS4zYzE1LjEsMjYuOSwzOC43LDM4LjIsNjguMSwzOC4yYzQ1LjQsMCw5MS4yLTM2LjEsOTEuMi0xMDguOGMwLjQtNjEuNy0zNS4zLTEwMy43LTg1LjctMTAzLjcgYy0zMi44LDAtNTYuMywxNC43LTY5LjMsMzcuNGgtMC44VjI4aC0zNi42djI0NS43YzAsMTguMS0wLjgsMzguNi0xLjcsNTIuNUgxNjk4LjV6IE0xNzA0LjgsMjA4LjJjMC01LjksMS4zLTEwLjksMi4xLTE1LjEgYzcuNi0yOC4xLDMxLjEtNDUuNCw1Ni4zLTQ1LjRjMzkuNSwwLDYwLjUsMzQuOSw2MC41LDc1LjZjMCw0Ni42LTIzLjEsNzguMS02MS44LDc4LjFjLTI2LjksMC00OC4zLTE3LjYtNTUuNS00My4zIGMtMC44LTQuMi0xLjctOC44LTEuNy0xMy40VjIwOC4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgZmlsbD0iIzYxNjE2MSIgZD0iTTE1IDlIOXY2aDZWOXptLTIgNGgtMnYtMmgydjJ6bTgtMlY5aC0yVjdjMC0xLjEtLjktMi0yLTJoLTJWM2gtMnYyaC0yVjNIOXYySDdjLTEuMSAwLTIgLjktMiAydjJIM3YyaDJ2MkgzdjJoMnYyYzAgMS4xLjkgMiAyIDJoMnYyaDJ2LTJoMnYyaDJ2LTJoMmMxLjEgMCAyLS45IDItMnYtMmgydi0yaC0ydi0yaDJ6bS00IDZIN1Y3aDEwdjEweiIvPgo8L3N2Zz4K);\n  --jp-icon-keyboard: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMTdjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY3YzAtMS4xLS45LTItMi0yem0tOSAzaDJ2MmgtMlY4em0wIDNoMnYyaC0ydi0yek04IDhoMnYySDhWOHptMCAzaDJ2Mkg4di0yem0tMSAySDV2LTJoMnYyem0wLTNINVY4aDJ2MnptOSA3SDh2LTJoOHYyem0wLTRoLTJ2LTJoMnYyem0wLTNoLTJWOGgydjJ6bTMgM2gtMnYtMmgydjJ6bTAtM2gtMlY4aDJ2MnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-launcher: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkgMTlINVY1aDdWM0g1YTIgMiAwIDAwLTIgMnYxNGEyIDIgMCAwMDIgMmgxNGMxLjEgMCAyLS45IDItMnYtN2gtMnY3ek0xNCAzdjJoMy41OWwtOS44MyA5LjgzIDEuNDEgMS40MUwxOSA2LjQxVjEwaDJWM2gtN3oiLz4KPC9zdmc+Cg==);\n  --jp-icon-line-form: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGZpbGw9IndoaXRlIiBkPSJNNS44OCA0LjEyTDEzLjc2IDEybC03Ljg4IDcuODhMOCAyMmwxMC0xMEw4IDJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-link: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMuOSAxMmMwLTEuNzEgMS4zOS0zLjEgMy4xLTMuMWg0VjdIN2MtMi43NiAwLTUgMi4yNC01IDVzMi4yNCA1IDUgNWg0di0xLjlIN2MtMS43MSAwLTMuMS0xLjM5LTMuMS0zLjF6TTggMTNoOHYtMkg4djJ6bTktNmgtNHYxLjloNGMxLjcxIDAgMy4xIDEuMzkgMy4xIDMuMXMtMS4zOSAzLjEtMy4xIDMuMWgtNFYxN2g0YzIuNzYgMCA1LTIuMjQgNS01cy0yLjI0LTUtNS01eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiM2MTYxNjEiIGQ9Ik0xOSA1djE0SDVWNWgxNG0xLjEtMkgzLjljLS41IDAtLjkuNC0uOS45djE2LjJjMCAuNC40LjkuOS45aDE2LjJjLjQgMCAuOS0uNS45LS45VjMuOWMwLS41LS41LS45LS45LS45ek0xMSA3aDZ2MmgtNlY3em0wIDRoNnYyaC02di0yem0wIDRoNnYyaC02ek03IDdoMnYySDd6bTAgNGgydjJIN3ptMCA0aDJ2Mkg3eiIvPgo8L3N2Zz4=);\n  --jp-icon-listings-info: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MC45NzggNTAuOTc4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MC45NzggNTAuOTc4OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+Cgk8Zz4KCQk8cGF0aCBzdHlsZT0iZmlsbDojMDEwMDAyOyIgZD0iTTQzLjUyLDcuNDU4QzM4LjcxMSwyLjY0OCwzMi4zMDcsMCwyNS40ODksMEMxOC42NywwLDEyLjI2NiwyLjY0OCw3LjQ1OCw3LjQ1OAoJCQljLTkuOTQzLDkuOTQxLTkuOTQzLDI2LjExOSwwLDM2LjA2MmM0LjgwOSw0LjgwOSwxMS4yMTIsNy40NTYsMTguMDMxLDcuNDU4YzAsMCwwLjAwMSwwLDAuMDAyLDAKCQkJYzYuODE2LDAsMTMuMjIxLTIuNjQ4LDE4LjAyOS03LjQ1OGM0LjgwOS00LjgwOSw3LjQ1Ny0xMS4yMTIsNy40NTctMTguMDNDNTAuOTc3LDE4LjY3LDQ4LjMyOCwxMi4yNjYsNDMuNTIsNy40NTh6CgkJCSBNNDIuMTA2LDQyLjEwNWMtNC40MzIsNC40MzEtMTAuMzMyLDYuODcyLTE2LjYxNSw2Ljg3MmgtMC4wMDJjLTYuMjg1LTAuMDAxLTEyLjE4Ny0yLjQ0MS0xNi42MTctNi44NzIKCQkJYy05LjE2Mi05LjE2My05LjE2Mi0yNC4wNzEsMC0zMy4yMzNDMTMuMzAzLDQuNDQsMTkuMjA0LDIsMjUuNDg5LDJjNi4yODQsMCwxMi4xODYsMi40NCwxNi42MTcsNi44NzIKCQkJYzQuNDMxLDQuNDMxLDYuODcxLDEwLjMzMiw2Ljg3MSwxNi42MTdDNDguOTc3LDMxLjc3Miw0Ni41MzYsMzcuNjc1LDQyLjEwNiw0Mi4xMDV6Ii8+CgkJPHBhdGggc3R5bGU9ImZpbGw6IzAxMDAwMjsiIGQ9Ik0yMy41NzgsMzIuMjE4Yy0wLjAyMy0xLjczNCwwLjE0My0zLjA1OSwwLjQ5Ni0zLjk3MmMwLjM1My0wLjkxMywxLjExLTEuOTk3LDIuMjcyLTMuMjUzCgkJCWMwLjQ2OC0wLjUzNiwwLjkyMy0xLjA2MiwxLjM2Ny0xLjU3NWMwLjYyNi0wLjc1MywxLjEwNC0xLjQ3OCwxLjQzNi0yLjE3NWMwLjMzMS0wLjcwNywwLjQ5NS0xLjU0MSwwLjQ5NS0yLjUKCQkJYzAtMS4wOTYtMC4yNi0yLjA4OC0wLjc3OS0yLjk3OWMtMC41NjUtMC44NzktMS41MDEtMS4zMzYtMi44MDYtMS4zNjljLTEuODAyLDAuMDU3LTIuOTg1LDAuNjY3LTMuNTUsMS44MzIKCQkJYy0wLjMwMSwwLjUzNS0wLjUwMywxLjE0MS0wLjYwNywxLjgxNGMtMC4xMzksMC43MDctMC4yMDcsMS40MzItMC4yMDcsMi4xNzRoLTIuOTM3Yy0wLjA5MS0yLjIwOCwwLjQwNy00LjExNCwxLjQ5My01LjcxOQoJCQljMS4wNjItMS42NCwyLjg1NS0yLjQ4MSw1LjM3OC0yLjUyN2MyLjE2LDAuMDIzLDMuODc0LDAuNjA4LDUuMTQxLDEuNzU4YzEuMjc4LDEuMTYsMS45MjksMi43NjQsMS45NSw0LjgxMQoJCQljMCwxLjE0Mi0wLjEzNywyLjExMS0wLjQxLDIuOTExYy0wLjMwOSwwLjg0NS0wLjczMSwxLjU5My0xLjI2OCwyLjI0M2MtMC40OTIsMC42NS0xLjA2OCwxLjMxOC0xLjczLDIuMDAyCgkJCWMtMC42NSwwLjY5Ny0xLjMxMywxLjQ3OS0xLjk4NywyLjM0NmMtMC4yMzksMC4zNzctMC40MjksMC43NzctMC41NjUsMS4xOTljLTAuMTYsMC45NTktMC4yMTcsMS45NTEtMC4xNzEsMi45NzkKCQkJQzI2LjU4OSwzMi4yMTgsMjMuNTc4LDMyLjIxOCwyMy41NzgsMzIuMjE4eiBNMjMuNTc4LDM4LjIydi0zLjQ4NGgzLjA3NnYzLjQ4NEgyMy41Nzh6Ii8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-markdown: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjN0IxRkEyIiBkPSJNNSAxNC45aDEybC02LjEgNnptOS40LTYuOGMwLTEuMy0uMS0yLjktLjEtNC41LS40IDEuNC0uOSAyLjktMS4zIDQuM2wtMS4zIDQuM2gtMkw4LjUgNy45Yy0uNC0xLjMtLjctMi45LTEtNC4zLS4xIDEuNi0uMSAzLjItLjIgNC42TDcgMTIuNEg0LjhsLjctMTFoMy4zTDEwIDVjLjQgMS4yLjcgMi43IDEgMy45LjMtMS4yLjctMi42IDEtMy45bDEuMi0zLjdoMy4zbC42IDExaC0yLjRsLS4zLTQuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-new-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwIDZoLThsLTItMkg0Yy0xLjExIDAtMS45OS44OS0xLjk5IDJMMiAxOGMwIDEuMTEuODkgMiAyIDJoMTZjMS4xMSAwIDItLjg5IDItMlY4YzAtMS4xMS0uODktMi0yLTJ6bS0xIDhoLTN2M2gtMnYtM2gtM3YtMmgzVjloMnYzaDN2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-not-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI1IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMTkgMTcuMTg0NCAyLjk2OTY4IDE0LjMwMzIgMS44NjA5NCAxMS40NDA5WiIvPgogICAgPHBhdGggY2xhc3M9ImpwLWljb24yIiBzdHJva2U9IiMzMzMzMzMiIHN0cm9rZS13aWR0aD0iMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOS4zMTU5MiA5LjMyMDMxKSIgZD0iTTcuMzY4NDIgMEwwIDcuMzY0NzkiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDkuMzE1OTIgMTYuNjgzNikgc2NhbGUoMSAtMSkiIGQ9Ik03LjM2ODQyIDBMMCA3LjM2NDc5Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-notebook: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNFRjZDMDAiPgogICAgPHBhdGggZD0iTTE4LjcgMy4zdjE1LjRIMy4zVjMuM2gxNS40bTEuNS0xLjVIMS44djE4LjNoMTguM2wuMS0xOC4zeiIvPgogICAgPHBhdGggZD0iTTE2LjUgMTYuNWwtNS40LTQuMy01LjYgNC4zdi0xMWgxMXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-numbering: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTQgMTlINlYxOS41SDVWMjAuNUg2VjIxSDRWMjJIN1YxOEg0VjE5Wk01IDEwSDZWNkg0VjdINVYxMFpNNCAxM0g1LjhMNCAxNS4xVjE2SDdWMTVINS4yTDcgMTIuOVYxMkg0VjEzWk05IDdWOUgyM1Y3SDlaTTkgMjFIMjNWMTlIOVYyMVpNOSAxNUgyM1YxM0g5VjE1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-offline-bolt: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDIuMDJjLTUuNTEgMC05Ljk4IDQuNDctOS45OCA5Ljk4czQuNDcgOS45OCA5Ljk4IDkuOTggOS45OC00LjQ3IDkuOTgtOS45OFMxNy41MSAyLjAyIDEyIDIuMDJ6TTExLjQ4IDIwdi02LjI2SDhMMTMgNHY2LjI2aDMuMzVMMTEuNDggMjB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-palette: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE4IDEzVjIwSDRWNkg5LjAyQzkuMDcgNS4yOSA5LjI0IDQuNjIgOS41IDRINEMyLjkgNCAyIDQuOSAyIDZWMjBDMiAyMS4xIDIuOSAyMiA0IDIySDE4QzE5LjEgMjIgMjAgMjEuMSAyMCAyMFYxNUwxOCAxM1pNMTkuMyA4Ljg5QzE5Ljc0IDguMTkgMjAgNy4zOCAyMCA2LjVDMjAgNC4wMSAxNy45OSAyIDE1LjUgMkMxMy4wMSAyIDExIDQuMDEgMTEgNi41QzExIDguOTkgMTMuMDEgMTEgMTUuNDkgMTFDMTYuMzcgMTEgMTcuMTkgMTAuNzQgMTcuODggMTAuM0wyMSAxMy40MkwyMi40MiAxMkwxOS4zIDguODlaTTE1LjUgOUMxNC4xMiA5IDEzIDcuODggMTMgNi41QzEzIDUuMTIgMTQuMTIgNCAxNS41IDRDMTYuODggNCAxOCA1LjEyIDE4IDYuNUMxOCA3Ljg4IDE2Ljg4IDkgMTUuNSA5WiIvPgogICAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDZIOS4wMTg5NEM5LjAwNjM5IDYuMTY1MDIgOSA2LjMzMTc2IDkgNi41QzkgOC44MTU3NyAxMC4yMTEgMTAuODQ4NyAxMi4wMzQzIDEySDlWMTRIMTZWMTIuOTgxMUMxNi41NzAzIDEyLjkzNzcgMTcuMTIgMTIuODIwNyAxNy42Mzk2IDEyLjYzOTZMMTggMTNWMjBINFY2Wk04IDhINlYxMEg4VjhaTTYgMTJIOFYxNEg2VjEyWk04IDE2SDZWMThIOFYxNlpNOSAxNkgxNlYxOEg5VjE2WiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-paste: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE5IDJoLTQuMThDMTQuNC44NCAxMy4zIDAgMTIgMGMtMS4zIDAtMi40Ljg0LTIuODIgMkg1Yy0xLjEgMC0yIC45LTIgMnYxNmMwIDEuMS45IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjRjMC0xLjEtLjktMi0yLTJ6bS03IDBjLjU1IDAgMSAuNDUgMSAxcy0uNDUgMS0xIDEtMS0uNDUtMS0xIC40NS0xIDEtMXptNyAxOEg1VjRoMnYzaDEwVjRoMnYxNnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-pdf: url(data:image/svg+xml;base64,PHN2ZwogICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMiAyMiIgd2lkdGg9IjE2Ij4KICAgIDxwYXRoIHRyYW5zZm9ybT0icm90YXRlKDQ1KSIgY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI0ZGMkEyQSIKICAgICAgIGQ9Im0gMjIuMzQ0MzY5LC0zLjAxNjM2NDIgaCA1LjYzODYwNCB2IDEuNTc5MjQzMyBoIC0zLjU0OTIyNyB2IDEuNTA4NjkyOTkgaCAzLjMzNzU3NiBWIDEuNjUwODE1NCBoIC0zLjMzNzU3NiB2IDMuNDM1MjYxMyBoIC0yLjA4OTM3NyB6IG0gLTcuMTM2NDQ0LDEuNTc5MjQzMyB2IDQuOTQzOTU0MyBoIDAuNzQ4OTIgcSAxLjI4MDc2MSwwIDEuOTUzNzAzLC0wLjYzNDk1MzUgMC42NzgzNjksLTAuNjM0OTUzNSAwLjY3ODM2OSwtMS44NDUxNjQxIDAsLTEuMjA0NzgzNTUgLTAuNjcyOTQyLC0xLjgzNDMxMDExIC0wLjY3Mjk0MiwtMC42Mjk1MjY1OSAtMS45NTkxMywtMC42Mjk1MjY1OSB6IG0gLTIuMDg5Mzc3LC0xLjU3OTI0MzMgaCAyLjIwMzM0MyBxIDEuODQ1MTY0LDAgMi43NDYwMzksMC4yNjU5MjA3IDAuOTA2MzAxLDAuMjYwNDkzNyAxLjU1MjEwOCwwLjg5MDAyMDMgMC41Njk4MywwLjU0ODEyMjMgMC44NDY2MDUsMS4yNjQ0ODAwNiAwLjI3Njc3NCwwLjcxNjM1NzgxIDAuMjc2Nzc0LDEuNjIyNjU4OTQgMCwwLjkxNzE1NTEgLTAuMjc2Nzc0LDEuNjM4OTM5OSAtMC4yNzY3NzUsMC43MTYzNTc4IC0wLjg0NjYwNSwxLjI2NDQ4IC0wLjY1MTIzNCwwLjYyOTUyNjYgLTEuNTYyOTYyLDAuODk1NDQ3MyAtMC45MTE3MjgsMC4yNjA0OTM3IC0yLjczNTE4NSwwLjI2MDQ5MzcgaCAtMi4yMDMzNDMgeiBtIC04LjE0NTg1NjUsMCBoIDMuNDY3ODIzIHEgMS41NDY2ODE2LDAgMi4zNzE1Nzg1LDAuNjg5MjIzIDAuODMwMzI0LDAuNjgzNzk2MSAwLjgzMDMyNCwxLjk1MzcwMzE0IDAsMS4yNzUzMzM5NyAtMC44MzAzMjQsMS45NjQ1NTcwNiBRIDkuOTg3MTk2MSwyLjI3NDkxNSA4LjQ0MDUxNDUsMi4yNzQ5MTUgSCA3LjA2MjA2ODQgViA1LjA4NjA3NjcgSCA0Ljk3MjY5MTUgWiBtIDIuMDg5Mzc2OSwxLjUxNDExOTkgdiAyLjI2MzAzOTQzIGggMS4xNTU5NDEgcSAwLjYwNzgxODgsMCAwLjkzODg2MjksLTAuMjkzMDU1NDcgMC4zMzEwNDQxLC0wLjI5ODQ4MjQxIDAuMzMxMDQ0MSwtMC44NDExNzc3MiAwLC0wLjU0MjY5NTMxIC0wLjMzMTA0NDEsLTAuODM1NzUwNzQgLTAuMzMxMDQ0MSwtMC4yOTMwNTU1IC0wLjkzODg2MjksLTAuMjkzMDU1NSB6IgovPgo8L3N2Zz4K);\n  --jp-icon-python: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMEQ0N0ExIj4KICAgIDxwYXRoIGQ9Ik0xMS4xIDYuOVY1LjhINi45YzAtLjUgMC0xLjMuMi0xLjYuNC0uNy44LTEuMSAxLjctMS40IDEuNy0uMyAyLjUtLjMgMy45LS4xIDEgLjEgMS45LjkgMS45IDEuOXY0LjJjMCAuNS0uOSAxLjYtMiAxLjZIOC44Yy0xLjUgMC0yLjQgMS40LTIuNCAyLjh2Mi4ySDQuN0MzLjUgMTUuMSAzIDE0IDMgMTMuMVY5Yy0uMS0xIC42LTIgMS44LTIgMS41LS4xIDYuMy0uMSA2LjMtLjF6Ii8+CiAgICA8cGF0aCBkPSJNMTAuOSAxNS4xdjEuMWg0LjJjMCAuNSAwIDEuMy0uMiAxLjYtLjQuNy0uOCAxLjEtMS43IDEuNC0xLjcuMy0yLjUuMy0zLjkuMS0xLS4xLTEuOS0uOS0xLjktMS45di00LjJjMC0uNS45LTEuNiAyLTEuNmgzLjhjMS41IDAgMi40LTEuNCAyLjQtMi44VjYuNmgxLjdDMTguNSA2LjkgMTkgOCAxOSA4LjlWMTNjMCAxLS43IDIuMS0xLjkgMi4xaC02LjJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-r-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjE5NkYzIiBkPSJNNC40IDIuNWMxLjItLjEgMi45LS4zIDQuOS0uMyAyLjUgMCA0LjEuNCA1LjIgMS4zIDEgLjcgMS41IDEuOSAxLjUgMy41IDAgMi0xLjQgMy41LTIuOSA0LjEgMS4yLjQgMS43IDEuNiAyLjIgMyAuNiAxLjkgMSAzLjkgMS4zIDQuNmgtMy44Yy0uMy0uNC0uOC0xLjctMS4yLTMuN3MtMS4yLTIuNi0yLjYtMi42aC0uOXY2LjRINC40VjIuNXptMy43IDYuOWgxLjRjMS45IDAgMi45LS45IDIuOS0yLjNzLTEtMi4zLTIuOC0yLjNjLS43IDAtMS4zIDAtMS42LjJ2NC41aC4xdi0uMXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-react: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMTUwIDE1MCA1NDEuOSAyOTUuMyI+CiAgPGcgY2xhc3M9ImpwLWljb24tYnJhbmQyIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzYxREFGQiI+CiAgICA8cGF0aCBkPSJNNjY2LjMgMjk2LjVjMC0zMi41LTQwLjctNjMuMy0xMDMuMS04Mi40IDE0LjQtNjMuNiA4LTExNC4yLTIwLjItMTMwLjQtNi41LTMuOC0xNC4xLTUuNi0yMi40LTUuNnYyMi4zYzQuNiAwIDguMy45IDExLjQgMi42IDEzLjYgNy44IDE5LjUgMzcuNSAxNC45IDc1LjctMS4xIDkuNC0yLjkgMTkuMy01LjEgMjkuNC0xOS42LTQuOC00MS04LjUtNjMuNS0xMC45LTEzLjUtMTguNS0yNy41LTM1LjMtNDEuNi01MCAzMi42LTMwLjMgNjMuMi00Ni45IDg0LTQ2LjlWNzhjLTI3LjUgMC02My41IDE5LjYtOTkuOSA1My42LTM2LjQtMzMuOC03Mi40LTUzLjItOTkuOS01My4ydjIyLjNjMjAuNyAwIDUxLjQgMTYuNSA4NCA0Ni42LTE0IDE0LjctMjggMzEuNC00MS4zIDQ5LjktMjIuNiAyLjQtNDQgNi4xLTYzLjYgMTEtMi4zLTEwLTQtMTkuNy01LjItMjktNC43LTM4LjIgMS4xLTY3LjkgMTQuNi03NS44IDMtMS44IDYuOS0yLjYgMTEuNS0yLjZWNzguNWMtOC40IDAtMTYgMS44LTIyLjYgNS42LTI4LjEgMTYuMi0zNC40IDY2LjctMTkuOSAxMzAuMS02Mi4yIDE5LjItMTAyLjcgNDkuOS0xMDIuNyA4Mi4zIDAgMzIuNSA0MC43IDYzLjMgMTAzLjEgODIuNC0xNC40IDYzLjYtOCAxMTQuMiAyMC4yIDEzMC40IDYuNSAzLjggMTQuMSA1LjYgMjIuNSA1LjYgMjcuNSAwIDYzLjUtMTkuNiA5OS45LTUzLjYgMzYuNCAzMy44IDcyLjQgNTMuMiA5OS45IDUzLjIgOC40IDAgMTYtMS44IDIyLjYtNS42IDI4LjEtMTYuMiAzNC40LTY2LjcgMTkuOS0xMzAuMSA2Mi0xOS4xIDEwMi41LTQ5LjkgMTAyLjUtODIuM3ptLTEzMC4yLTY2LjdjLTMuNyAxMi45LTguMyAyNi4yLTEzLjUgMzkuNS00LjEtOC04LjQtMTYtMTMuMS0yNC00LjYtOC05LjUtMTUuOC0xNC40LTIzLjQgMTQuMiAyLjEgMjcuOSA0LjcgNDEgNy45em0tNDUuOCAxMDYuNWMtNy44IDEzLjUtMTUuOCAyNi4zLTI0LjEgMzguMi0xNC45IDEuMy0zMCAyLTQ1LjIgMi0xNS4xIDAtMzAuMi0uNy00NS0xLjktOC4zLTExLjktMTYuNC0yNC42LTI0LjItMzgtNy42LTEzLjEtMTQuNS0yNi40LTIwLjgtMzkuOCA2LjItMTMuNCAxMy4yLTI2LjggMjAuNy0zOS45IDcuOC0xMy41IDE1LjgtMjYuMyAyNC4xLTM4LjIgMTQuOS0xLjMgMzAtMiA0NS4yLTIgMTUuMSAwIDMwLjIuNyA0NSAxLjkgOC4zIDExLjkgMTYuNCAyNC42IDI0LjIgMzggNy42IDEzLjEgMTQuNSAyNi40IDIwLjggMzkuOC02LjMgMTMuNC0xMy4yIDI2LjgtMjAuNyAzOS45em0zMi4zLTEzYzUuNCAxMy40IDEwIDI2LjggMTMuOCAzOS44LTEzLjEgMy4yLTI2LjkgNS45LTQxLjIgOCA0LjktNy43IDkuOC0xNS42IDE0LjQtMjMuNyA0LjYtOCA4LjktMTYuMSAxMy0yNC4xek00MjEuMiA0MzBjLTkuMy05LjYtMTguNi0yMC4zLTI3LjgtMzIgOSAuNCAxOC4yLjcgMjcuNS43IDkuNCAwIDE4LjctLjIgMjcuOC0uNy05IDExLjctMTguMyAyMi40LTI3LjUgMzJ6bS03NC40LTU4LjljLTE0LjItMi4xLTI3LjktNC43LTQxLTcuOSAzLjctMTIuOSA4LjMtMjYuMiAxMy41LTM5LjUgNC4xIDggOC40IDE2IDEzLjEgMjQgNC43IDggOS41IDE1LjggMTQuNCAyMy40ek00MjAuNyAxNjNjOS4zIDkuNiAxOC42IDIwLjMgMjcuOCAzMi05LS40LTE4LjItLjctMjcuNS0uNy05LjQgMC0xOC43LjItMjcuOC43IDktMTEuNyAxOC4zLTIyLjQgMjcuNS0zMnptLTc0IDU4LjljLTQuOSA3LjctOS44IDE1LjYtMTQuNCAyMy43LTQuNiA4LTguOSAxNi0xMyAyNC01LjQtMTMuNC0xMC0yNi44LTEzLjgtMzkuOCAxMy4xLTMuMSAyNi45LTUuOCA0MS4yLTcuOXptLTkwLjUgMTI1LjJjLTM1LjQtMTUuMS01OC4zLTM0LjktNTguMy01MC42IDAtMTUuNyAyMi45LTM1LjYgNTguMy01MC42IDguNi0zLjcgMTgtNyAyNy43LTEwLjEgNS43IDE5LjYgMTMuMiA0MCAyMi41IDYwLjktOS4yIDIwLjgtMTYuNiA0MS4xLTIyLjIgNjAuNi05LjktMy4xLTE5LjMtNi41LTI4LTEwLjJ6TTMxMCA0OTBjLTEzLjYtNy44LTE5LjUtMzcuNS0xNC45LTc1LjcgMS4xLTkuNCAyLjktMTkuMyA1LjEtMjkuNCAxOS42IDQuOCA0MSA4LjUgNjMuNSAxMC45IDEzLjUgMTguNSAyNy41IDM1LjMgNDEuNiA1MC0zMi42IDMwLjMtNjMuMiA0Ni45LTg0IDQ2LjktNC41LS4xLTguMy0xLTExLjMtMi43em0yMzcuMi03Ni4yYzQuNyAzOC4yLTEuMSA2Ny45LTE0LjYgNzUuOC0zIDEuOC02LjkgMi42LTExLjUgMi42LTIwLjcgMC01MS40LTE2LjUtODQtNDYuNiAxNC0xNC43IDI4LTMxLjQgNDEuMy00OS45IDIyLjYtMi40IDQ0LTYuMSA2My42LTExIDIuMyAxMC4xIDQuMSAxOS44IDUuMiAyOS4xem0zOC41LTY2LjdjLTguNiAzLjctMTggNy0yNy43IDEwLjEtNS43LTE5LjYtMTMuMi00MC0yMi41LTYwLjkgOS4yLTIwLjggMTYuNi00MS4xIDIyLjItNjAuNiA5LjkgMy4xIDE5LjMgNi41IDI4LjEgMTAuMiAzNS40IDE1LjEgNTguMyAzNC45IDU4LjMgNTAuNi0uMSAxNS43LTIzIDM1LjYtNTguNCA1MC42ek0zMjAuOCA3OC40eiIvPgogICAgPGNpcmNsZSBjeD0iNDIwLjkiIGN5PSIyOTYuNSIgcj0iNDUuNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-redo: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTE4LjQgMTAuNkMxNi41NSA4Ljk5IDE0LjE1IDggMTEuNSA4Yy00LjY1IDAtOC41OCAzLjAzLTkuOTYgNy4yMkwzLjkgMTZjMS4wNS0zLjE5IDQuMDUtNS41IDcuNi01LjUgMS45NSAwIDMuNzMuNzIgNS4xMiAxLjg4TDEzIDE2aDlWN2wtMy42IDMuNnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-refresh: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTkgMTMuNWMtMi40OSAwLTQuNS0yLjAxLTQuNS00LjVTNi41MSA0LjUgOSA0LjVjMS4yNCAwIDIuMzYuNTIgMy4xNyAxLjMzTDEwIDhoNVYzbC0xLjc2IDEuNzZDMTIuMTUgMy42OCAxMC42NiAzIDkgMyA1LjY5IDMgMy4wMSA1LjY5IDMuMDEgOVM1LjY5IDE1IDkgMTVjMi45NyAwIDUuNDMtMi4xNiA1LjktNWgtMS41MmMtLjQ2IDItMi4yNCAzLjUtNC4zOCAzLjV6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-regex: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi1hY2NlbnQyIiBmaWxsPSIjRkZGIj4KICAgIDxjaXJjbGUgY2xhc3M9InN0MiIgY3g9IjUuNSIgY3k9IjE0LjUiIHI9IjEuNSIvPgogICAgPHJlY3QgeD0iMTIiIHk9IjQiIGNsYXNzPSJzdDIiIHdpZHRoPSIxIiBoZWlnaHQ9IjgiLz4KICAgIDxyZWN0IHg9IjguNSIgeT0iNy41IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjg2NiAtMC41IDAuNSAwLjg2NiAtMi4zMjU1IDcuMzIxOSkiIGNsYXNzPSJzdDIiIHdpZHRoPSI4IiBoZWlnaHQ9IjEiLz4KICAgIDxyZWN0IHg9IjEyIiB5PSI0IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjUgLTAuODY2IDAuODY2IDAuNSAtMC42Nzc5IDE0LjgyNTIpIiBjbGFzcz0ic3QyIiB3aWR0aD0iMSIgaGVpZ2h0PSI4Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-run: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTggNXYxNGwxMS03eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-running: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptOTYgMzI4YzAgOC44LTcuMiAxNi0xNiAxNkgxNzZjLTguOCAwLTE2LTcuMi0xNi0xNlYxNzZjMC04LjggNy4yLTE2IDE2LTE2aDE2MGM4LjggMCAxNiA3LjIgMTYgMTZ2MTYweiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-save: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE3IDNINWMtMS4xMSAwLTIgLjktMiAydjE0YzAgMS4xLjg5IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjdsLTQtNHptLTUgMTZjLTEuNjYgMC0zLTEuMzQtMy0zczEuMzQtMyAzLTMgMyAxLjM0IDMgMy0xLjM0IDMtMyAzem0zLTEwSDVWNWgxMHY0eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-search: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjEsMTAuOWgtMC43bC0wLjItMC4yYzAuOC0wLjksMS4zLTIuMiwxLjMtMy41YzAtMy0yLjQtNS40LTUuNC01LjRTMS44LDQuMiwxLjgsNy4xczIuNCw1LjQsNS40LDUuNCBjMS4zLDAsMi41LTAuNSwzLjUtMS4zbDAuMiwwLjJ2MC43bDQuMSw0LjFsMS4yLTEuMkwxMi4xLDEwLjl6IE03LjEsMTAuOWMtMi4xLDAtMy43LTEuNy0zLjctMy43czEuNy0zLjcsMy43LTMuN3MzLjcsMS43LDMuNywzLjcgUzkuMiwxMC45LDcuMSwxMC45eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-settings: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuNDMgMTIuOThjLjA0LS4zMi4wNy0uNjQuMDctLjk4cy0uMDMtLjY2LS4wNy0uOThsMi4xMS0xLjY1Yy4xOS0uMTUuMjQtLjQyLjEyLS42NGwtMi0zLjQ2Yy0uMTItLjIyLS4zOS0uMy0uNjEtLjIybC0yLjQ5IDFjLS41Mi0uNC0xLjA4LS43My0xLjY5LS45OGwtLjM4LTIuNjVBLjQ4OC40ODggMCAwMDE0IDJoLTRjLS4yNSAwLS40Ni4xOC0uNDkuNDJsLS4zOCAyLjY1Yy0uNjEuMjUtMS4xNy41OS0xLjY5Ljk4bC0yLjQ5LTFjLS4yMy0uMDktLjQ5IDAtLjYxLjIybC0yIDMuNDZjLS4xMy4yMi0uMDcuNDkuMTIuNjRsMi4xMSAxLjY1Yy0uMDQuMzItLjA3LjY1LS4wNy45OHMuMDMuNjYuMDcuOThsLTIuMTEgMS42NWMtLjE5LjE1LS4yNC40Mi0uMTIuNjRsMiAzLjQ2Yy4xMi4yMi4zOS4zLjYxLjIybDIuNDktMWMuNTIuNCAxLjA4LjczIDEuNjkuOThsLjM4IDIuNjVjLjAzLjI0LjI0LjQyLjQ5LjQyaDRjLjI1IDAgLjQ2LS4xOC40OS0uNDJsLjM4LTIuNjVjLjYxLS4yNSAxLjE3LS41OSAxLjY5LS45OGwyLjQ5IDFjLjIzLjA5LjQ5IDAgLjYxLS4yMmwyLTMuNDZjLjEyLS4yMi4wNy0uNDktLjEyLS42NGwtMi4xMS0xLjY1ek0xMiAxNS41Yy0xLjkzIDAtMy41LTEuNTctMy41LTMuNXMxLjU3LTMuNSAzLjUtMy41IDMuNSAxLjU3IDMuNSAzLjUtMS41NyAzLjUtMy41IDMuNXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-spreadsheet: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNENBRjUwIiBkPSJNMi4yIDIuMnYxNy42aDE3LjZWMi4ySDIuMnptMTUuNCA3LjdoLTUuNVY0LjRoNS41djUuNXpNOS45IDQuNHY1LjVINC40VjQuNGg1LjV6bS01LjUgNy43aDUuNXY1LjVINC40di01LjV6bTcuNyA1LjV2LTUuNWg1LjV2NS41aC01LjV6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-stop: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik02IDZoMTJ2MTJINnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tab: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIxIDNIM2MtMS4xIDAtMiAuOS0yIDJ2MTRjMCAxLjEuOSAyIDIgMmgxOGMxLjEgMCAyLS45IDItMlY1YzAtMS4xLS45LTItMi0yem0wIDE2SDNWNWgxMHY0aDh2MTB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-table-rows: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMSw4SDNWNGgxOFY4eiBNMjEsMTBIM3Y0aDE4VjEweiBNMjEsMTZIM3Y0aDE4VjE2eiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-tag: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCA0MyAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTI4LjgzMzIgMTIuMzM0TDMyLjk5OTggMTYuNTAwN0wzNy4xNjY1IDEyLjMzNEgyOC44MzMyWiIvPgoJCTxwYXRoIGQ9Ik0xNi4yMDk1IDIxLjYxMDRDMTUuNjg3MyAyMi4xMjk5IDE0Ljg0NDMgMjIuMTI5OSAxNC4zMjQ4IDIxLjYxMDRMNi45ODI5IDE0LjcyNDVDNi41NzI0IDE0LjMzOTQgNi4wODMxMyAxMy42MDk4IDYuMDQ3ODYgMTMuMDQ4MkM1Ljk1MzQ3IDExLjUyODggNi4wMjAwMiA4LjYxOTQ0IDYuMDY2MjEgNy4wNzY5NUM2LjA4MjgxIDYuNTE0NzcgNi41NTU0OCA2LjA0MzQ3IDcuMTE4MDQgNi4wMzA1NUM5LjA4ODYzIDUuOTg0NzMgMTMuMjYzOCA1LjkzNTc5IDEzLjY1MTggNi4zMjQyNUwyMS43MzY5IDEzLjYzOUMyMi4yNTYgMTQuMTU4NSAyMS43ODUxIDE1LjQ3MjQgMjEuMjYyIDE1Ljk5NDZMMTYuMjA5NSAyMS42MTA0Wk05Ljc3NTg1IDguMjY1QzkuMzM1NTEgNy44MjU2NiA4LjYyMzUxIDcuODI1NjYgOC4xODI4IDguMjY1QzcuNzQzNDYgOC43MDU3MSA3Ljc0MzQ2IDkuNDE3MzMgOC4xODI4IDkuODU2NjdDOC42MjM4MiAxMC4yOTY0IDkuMzM1ODIgMTAuMjk2NCA5Ljc3NTg1IDkuODU2NjdDMTAuMjE1NiA5LjQxNzMzIDEwLjIxNTYgOC43MDUzMyA5Ljc3NTg1IDguMjY1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-terminal: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiA+CiAgICA8cmVjdCBjbGFzcz0ianAtaWNvbjIganAtaWNvbi1zZWxlY3RhYmxlIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMikiIGZpbGw9IiMzMzMzMzMiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uLWFjY2VudDIganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGQ9Ik01LjA1NjY0IDguNzYxNzJDNS4wNTY2NCA4LjU5NzY2IDUuMDMxMjUgOC40NTMxMiA0Ljk4MDQ3IDguMzI4MTJDNC45MzM1OSA4LjE5OTIyIDQuODU1NDcgOC4wODIwMyA0Ljc0NjA5IDcuOTc2NTZDNC42NDA2MiA3Ljg3MTA5IDQuNSA3Ljc3NTM5IDQuMzI0MjIgNy42ODk0NUM0LjE1MjM0IDcuNTk5NjEgMy45NDMzNiA3LjUxMTcyIDMuNjk3MjcgNy40MjU3OEMzLjMwMjczIDcuMjg1MTYgMi45NDMzNiA3LjEzNjcyIDIuNjE5MTQgNi45ODA0N0MyLjI5NDkyIDYuODI0MjIgMi4wMTc1OCA2LjY0MjU4IDEuNzg3MTEgNi40MzU1NUMxLjU2MDU1IDYuMjI4NTIgMS4zODQ3NyA1Ljk4ODI4IDEuMjU5NzcgNS43MTQ4NEMxLjEzNDc3IDUuNDM3NSAxLjA3MjI3IDUuMTA5MzggMS4wNzIyNyA0LjczMDQ3QzEuMDcyMjcgNC4zOTg0NCAxLjEyODkxIDQuMDk1NyAxLjI0MjE5IDMuODIyMjdDMS4zNTU0NyAzLjU0NDkyIDEuNTE1NjIgMy4zMDQ2OSAxLjcyMjY2IDMuMTAxNTZDMS45Mjk2OSAyLjg5ODQ0IDIuMTc5NjkgMi43MzQzNyAyLjQ3MjY2IDIuNjA5MzhDMi43NjU2MiAyLjQ4NDM4IDMuMDkxOCAyLjQwNDMgMy40NTExNyAyLjM2OTE0VjEuMTA5MzhINC4zODg2N1YyLjM4MDg2QzQuNzQwMjMgMi40Mjc3MyA1LjA1NjY0IDIuNTIzNDQgNS4zMzc4OSAyLjY2Nzk3QzUuNjE5MTQgMi44MTI1IDUuODU3NDIgMy4wMDE5NSA2LjA1MjczIDMuMjM2MzNDNi4yNTE5NSAzLjQ2NjggNi40MDQzIDMuNzQwMjMgNi41MDk3NyA0LjA1NjY0QzYuNjE5MTQgNC4zNjkxNCA2LjY3MzgzIDQuNzIwNyA2LjY3MzgzIDUuMTExMzNINS4wNDQ5MkM1LjA0NDkyIDQuNjM4NjcgNC45Mzc1IDQuMjgxMjUgNC43MjI2NiA0LjAzOTA2QzQuNTA3ODEgMy43OTI5NyA0LjIxNjggMy42Njk5MiAzLjg0OTYxIDMuNjY5OTJDMy42NTAzOSAzLjY2OTkyIDMuNDc2NTYgMy42OTcyNyAzLjMyODEyIDMuNzUxOTVDMy4xODM1OSAzLjgwMjczIDMuMDY0NDUgMy44NzY5NSAyLjk3MDcgMy45NzQ2MUMyLjg3Njk1IDQuMDY4MzYgMi44MDY2NCA0LjE3OTY5IDIuNzU5NzcgNC4zMDg1OUMyLjcxNjggNC40Mzc1IDIuNjk1MzEgNC41NzgxMiAyLjY5NTMxIDQuNzMwNDdDMi42OTUzMSA0Ljg4MjgxIDIuNzE2OCA1LjAxOTUzIDIuNzU5NzcgNS4xNDA2MkMyLjgwNjY0IDUuMjU3ODEgMi44ODI4MSA1LjM2NzE5IDIuOTg4MjggNS40Njg3NUMzLjA5NzY2IDUuNTcwMzEgMy4yNDAyMyA1LjY2Nzk3IDMuNDE2MDIgNS43NjE3MkMzLjU5MTggNS44NTE1NiAzLjgxMDU1IDUuOTQzMzYgNC4wNzIyNyA2LjAzNzExQzQuNDY2OCA2LjE4NTU1IDQuODI0MjIgNi4zMzk4NCA1LjE0NDUzIDYuNUM1LjQ2NDg0IDYuNjU2MjUgNS43MzgyOCA2LjgzOTg0IDUuOTY0ODQgNy4wNTA3OEM2LjE5NTMxIDcuMjU3ODEgNi4zNzEwOSA3LjUgNi40OTIxOSA3Ljc3NzM0QzYuNjE3MTkgOC4wNTA3OCA2LjY3OTY5IDguMzc1IDYuNjc5NjkgOC43NUM2LjY3OTY5IDkuMDkzNzUgNi42MjMwNSA5LjQwNDMgNi41MDk3NyA5LjY4MTY0QzYuMzk2NDggOS45NTUwOCA2LjIzNDM4IDEwLjE5MTQgNi4wMjM0NCAxMC4zOTA2QzUuODEyNSAxMC41ODk4IDUuNTU4NTkgMTAuNzUgNS4yNjE3MiAxMC44NzExQzQuOTY0ODQgMTAuOTg4MyA0LjYzMjgxIDExLjA2NDUgNC4yNjU2MiAxMS4wOTk2VjEyLjI0OEgzLjMzMzk4VjExLjA5OTZDMy4wMDE5NSAxMS4wNjg0IDIuNjc5NjkgMTAuOTk2MSAyLjM2NzE5IDEwLjg4MjhDMi4wNTQ2OSAxMC43NjU2IDEuNzc3MzQgMTAuNTk3NyAxLjUzNTE2IDEwLjM3ODlDMS4yOTY4OCAxMC4xNjAyIDEuMTA1NDcgOS44ODQ3NyAwLjk2MDkzOCA5LjU1MjczQzAuODE2NDA2IDkuMjE2OCAwLjc0NDE0MSA4LjgxNDQ1IDAuNzQ0MTQxIDguMzQ1N0gyLjM3ODkxQzIuMzc4OTEgOC42MjY5NSAyLjQxOTkyIDguODYzMjggMi41MDE5NSA5LjA1NDY5QzIuNTgzOTggOS4yNDIxOSAyLjY4OTQ1IDkuMzkyNTggMi44MTgzNiA5LjUwNTg2QzIuOTUxMTcgOS42MTUyMyAzLjEwMTU2IDkuNjkzMzYgMy4yNjk1MyA5Ljc0MDIzQzMuNDM3NSA5Ljc4NzExIDMuNjA5MzggOS44MTA1NSAzLjc4NTE2IDkuODEwNTVDNC4yMDMxMiA5LjgxMDU1IDQuNTE5NTMgOS43MTI4OSA0LjczNDM4IDkuNTE3NThDNC45NDkyMiA5LjMyMjI3IDUuMDU2NjQgOS4wNzAzMSA1LjA1NjY0IDguNzYxNzJaTTEzLjQxOCAxMi4yNzE1SDguMDc0MjJWMTFIMTMuNDE4VjEyLjI3MTVaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzLjk1MjY0IDYpIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);\n  --jp-icon-text-editor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTUgMTVIM3YyaDEydi0yem0wLThIM3YyaDEyVjd6TTMgMTNoMTh2LTJIM3Yyem0wIDhoMTh2LTJIM3Yyek0zIDN2MmgxOFYzSDN6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-toc: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik03LDVIMjFWN0g3VjVNNywxM1YxMUgyMVYxM0g3TTQsNC41QTEuNSwxLjUgMCAwLDEgNS41LDZBMS41LDEuNSAwIDAsMSA0LDcuNUExLjUsMS41IDAgMCwxIDIuNSw2QTEuNSwxLjUgMCAwLDEgNCw0LjVNNCwxMC41QTEuNSwxLjUgMCAwLDEgNS41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMy41QTEuNSwxLjUgMCAwLDEgMi41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMC41TTcsMTlWMTdIMjFWMTlIN000LDE2LjVBMS41LDEuNSAwIDAsMSA1LjUsMThBMS41LDEuNSAwIDAsMSA0LDE5LjVBMS41LDEuNSAwIDAsMSAyLjUsMThBMS41LDEuNSAwIDAsMSA0LDE2LjVaIiAvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tree-view: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMiAxMVYzaC03djNIOVYzSDJ2OGg3VjhoMnYxMGg0djNoN3YtOGgtN3YzaC0yVjhoMnYzeiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMiAxNy4xODQ0IDIuOTY5NjggMTQuMzAzMiAxLjg2MDk0IDExLjQ0MDlaIi8+CiAgICA8cGF0aCBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiMzMzMzMzMiIHN0cm9rZT0iIzMzMzMzMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA5Ljg2NzE5KSIgZD0iTTIuODYwMTUgNC44NjUzNUwwLjcyNjU0OSAyLjk5OTU5TDAgMy42MzA0NUwyLjg2MDE1IDYuMTMxNTdMOCAwLjYzMDg3Mkw3LjI3ODU3IDBMMi44NjAxNSA0Ljg2NTM1WiIvPgo8L3N2Zz4K);\n  --jp-icon-undo: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjUgOGMtMi42NSAwLTUuMDUuOTktNi45IDIuNkwyIDd2OWg5bC0zLjYyLTMuNjJjMS4zOS0xLjE2IDMuMTYtMS44OCA1LjEyLTEuODggMy41NCAwIDYuNTUgMi4zMSA3LjYgNS41bDIuMzctLjc4QzIxLjA4IDExLjAzIDE3LjE1IDggMTIuNSA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-vega: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbjEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjEyMTIxIj4KICAgIDxwYXRoIGQ9Ik0xMC42IDUuNGwyLjItMy4ySDIuMnY3LjNsNC02LjZ6Ii8+CiAgICA8cGF0aCBkPSJNMTUuOCAyLjJsLTQuNCA2LjZMNyA2LjNsLTQuOCA4djUuNWgxNy42VjIuMmgtNHptLTcgMTUuNEg1LjV2LTQuNGgzLjN2NC40em00LjQgMEg5LjhWOS44aDMuNHY3Ljh6bTQuNCAwaC0zLjRWNi41aDMuNHYxMS4xeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-yaml: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1jb250cmFzdDIganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjRDgxQjYwIj4KICAgIDxwYXRoIGQ9Ik03LjIgMTguNnYtNS40TDMgNS42aDMuM2wxLjQgMy4xYy4zLjkuNiAxLjYgMSAyLjUuMy0uOC42LTEuNiAxLTIuNWwxLjQtMy4xaDMuNGwtNC40IDcuNnY1LjVsLTIuOS0uMXoiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxNi41IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxMSIgcj0iMi4xIi8+CiAgPC9nPgo8L3N2Zz4K);\n}\n\n/* Icon CSS class declarations */\n\n.jp-AddIcon {\n  background-image: var(--jp-icon-add);\n}\n.jp-BugIcon {\n  background-image: var(--jp-icon-bug);\n}\n.jp-BuildIcon {\n  background-image: var(--jp-icon-build);\n}\n.jp-CaretDownEmptyIcon {\n  background-image: var(--jp-icon-caret-down-empty);\n}\n.jp-CaretDownEmptyThinIcon {\n  background-image: var(--jp-icon-caret-down-empty-thin);\n}\n.jp-CaretDownIcon {\n  background-image: var(--jp-icon-caret-down);\n}\n.jp-CaretLeftIcon {\n  background-image: var(--jp-icon-caret-left);\n}\n.jp-CaretRightIcon {\n  background-image: var(--jp-icon-caret-right);\n}\n.jp-CaretUpEmptyThinIcon {\n  background-image: var(--jp-icon-caret-up-empty-thin);\n}\n.jp-CaretUpIcon {\n  background-image: var(--jp-icon-caret-up);\n}\n.jp-CaseSensitiveIcon {\n  background-image: var(--jp-icon-case-sensitive);\n}\n.jp-CheckIcon {\n  background-image: var(--jp-icon-check);\n}\n.jp-CircleEmptyIcon {\n  background-image: var(--jp-icon-circle-empty);\n}\n.jp-CircleIcon {\n  background-image: var(--jp-icon-circle);\n}\n.jp-ClearIcon {\n  background-image: var(--jp-icon-clear);\n}\n.jp-CloseIcon {\n  background-image: var(--jp-icon-close);\n}\n.jp-CodeIcon {\n  background-image: var(--jp-icon-code);\n}\n.jp-ConsoleIcon {\n  background-image: var(--jp-icon-console);\n}\n.jp-CopyIcon {\n  background-image: var(--jp-icon-copy);\n}\n.jp-CopyrightIcon {\n  background-image: var(--jp-icon-copyright);\n}\n.jp-CutIcon {\n  background-image: var(--jp-icon-cut);\n}\n.jp-DownloadIcon {\n  background-image: var(--jp-icon-download);\n}\n.jp-EditIcon {\n  background-image: var(--jp-icon-edit);\n}\n.jp-EllipsesIcon {\n  background-image: var(--jp-icon-ellipses);\n}\n.jp-ExtensionIcon {\n  background-image: var(--jp-icon-extension);\n}\n.jp-FastForwardIcon {\n  background-image: var(--jp-icon-fast-forward);\n}\n.jp-FileIcon {\n  background-image: var(--jp-icon-file);\n}\n.jp-FileUploadIcon {\n  background-image: var(--jp-icon-file-upload);\n}\n.jp-FilterListIcon {\n  background-image: var(--jp-icon-filter-list);\n}\n.jp-FolderIcon {\n  background-image: var(--jp-icon-folder);\n}\n.jp-Html5Icon {\n  background-image: var(--jp-icon-html5);\n}\n.jp-ImageIcon {\n  background-image: var(--jp-icon-image);\n}\n.jp-InspectorIcon {\n  background-image: var(--jp-icon-inspector);\n}\n.jp-JsonIcon {\n  background-image: var(--jp-icon-json);\n}\n.jp-JuliaIcon {\n  background-image: var(--jp-icon-julia);\n}\n.jp-JupyterFaviconIcon {\n  background-image: var(--jp-icon-jupyter-favicon);\n}\n.jp-JupyterIcon {\n  background-image: var(--jp-icon-jupyter);\n}\n.jp-JupyterlabWordmarkIcon {\n  background-image: var(--jp-icon-jupyterlab-wordmark);\n}\n.jp-KernelIcon {\n  background-image: var(--jp-icon-kernel);\n}\n.jp-KeyboardIcon {\n  background-image: var(--jp-icon-keyboard);\n}\n.jp-LauncherIcon {\n  background-image: var(--jp-icon-launcher);\n}\n.jp-LineFormIcon {\n  background-image: var(--jp-icon-line-form);\n}\n.jp-LinkIcon {\n  background-image: var(--jp-icon-link);\n}\n.jp-ListIcon {\n  background-image: var(--jp-icon-list);\n}\n.jp-ListingsInfoIcon {\n  background-image: var(--jp-icon-listings-info);\n}\n.jp-MarkdownIcon {\n  background-image: var(--jp-icon-markdown);\n}\n.jp-NewFolderIcon {\n  background-image: var(--jp-icon-new-folder);\n}\n.jp-NotTrustedIcon {\n  background-image: var(--jp-icon-not-trusted);\n}\n.jp-NotebookIcon {\n  background-image: var(--jp-icon-notebook);\n}\n.jp-NumberingIcon {\n  background-image: var(--jp-icon-numbering);\n}\n.jp-OfflineBoltIcon {\n  background-image: var(--jp-icon-offline-bolt);\n}\n.jp-PaletteIcon {\n  background-image: var(--jp-icon-palette);\n}\n.jp-PasteIcon {\n  background-image: var(--jp-icon-paste);\n}\n.jp-PdfIcon {\n  background-image: var(--jp-icon-pdf);\n}\n.jp-PythonIcon {\n  background-image: var(--jp-icon-python);\n}\n.jp-RKernelIcon {\n  background-image: var(--jp-icon-r-kernel);\n}\n.jp-ReactIcon {\n  background-image: var(--jp-icon-react);\n}\n.jp-RedoIcon {\n  background-image: var(--jp-icon-redo);\n}\n.jp-RefreshIcon {\n  background-image: var(--jp-icon-refresh);\n}\n.jp-RegexIcon {\n  background-image: var(--jp-icon-regex);\n}\n.jp-RunIcon {\n  background-image: var(--jp-icon-run);\n}\n.jp-RunningIcon {\n  background-image: var(--jp-icon-running);\n}\n.jp-SaveIcon {\n  background-image: var(--jp-icon-save);\n}\n.jp-SearchIcon {\n  background-image: var(--jp-icon-search);\n}\n.jp-SettingsIcon {\n  background-image: var(--jp-icon-settings);\n}\n.jp-SpreadsheetIcon {\n  background-image: var(--jp-icon-spreadsheet);\n}\n.jp-StopIcon {\n  background-image: var(--jp-icon-stop);\n}\n.jp-TabIcon {\n  background-image: var(--jp-icon-tab);\n}\n.jp-TableRowsIcon {\n  background-image: var(--jp-icon-table-rows);\n}\n.jp-TagIcon {\n  background-image: var(--jp-icon-tag);\n}\n.jp-TerminalIcon {\n  background-image: var(--jp-icon-terminal);\n}\n.jp-TextEditorIcon {\n  background-image: var(--jp-icon-text-editor);\n}\n.jp-TocIcon {\n  background-image: var(--jp-icon-toc);\n}\n.jp-TreeViewIcon {\n  background-image: var(--jp-icon-tree-view);\n}\n.jp-TrustedIcon {\n  background-image: var(--jp-icon-trusted);\n}\n.jp-UndoIcon {\n  background-image: var(--jp-icon-undo);\n}\n.jp-VegaIcon {\n  background-image: var(--jp-icon-vega);\n}\n.jp-YamlIcon {\n  background-image: var(--jp-icon-yaml);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n.jp-Icon,\n.jp-MaterialIcon {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-cover {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: cover;\n}\n\n/**\n * (DEPRECATED) Support for specific CSS icon sizes\n */\n\n.jp-Icon-16 {\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-18 {\n  background-size: 18px;\n  min-width: 18px;\n  min-height: 18px;\n}\n\n.jp-Icon-20 {\n  background-size: 20px;\n  min-width: 20px;\n  min-height: 20px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for icons as inline SVG HTMLElements\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n/* recolor the accent elements of an icon */\n.jp-icon-accent0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-accent1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-accent2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-accent3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-accent4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-accent0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-accent1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-accent2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-accent3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-accent4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n/* set the color of an icon to transparent */\n.jp-icon-none[fill] {\n  fill: none;\n}\n\n.jp-icon-none[stroke] {\n  stroke: none;\n}\n/* brand icon colors. Same for light and dark */\n.jp-icon-brand0[fill] {\n  fill: var(--jp-brand-color0);\n}\n.jp-icon-brand1[fill] {\n  fill: var(--jp-brand-color1);\n}\n.jp-icon-brand2[fill] {\n  fill: var(--jp-brand-color2);\n}\n.jp-icon-brand3[fill] {\n  fill: var(--jp-brand-color3);\n}\n.jp-icon-brand4[fill] {\n  fill: var(--jp-brand-color4);\n}\n\n.jp-icon-brand0[stroke] {\n  stroke: var(--jp-brand-color0);\n}\n.jp-icon-brand1[stroke] {\n  stroke: var(--jp-brand-color1);\n}\n.jp-icon-brand2[stroke] {\n  stroke: var(--jp-brand-color2);\n}\n.jp-icon-brand3[stroke] {\n  stroke: var(--jp-brand-color3);\n}\n.jp-icon-brand4[stroke] {\n  stroke: var(--jp-brand-color4);\n}\n/* warn icon colors. Same for light and dark */\n.jp-icon-warn0[fill] {\n  fill: var(--jp-warn-color0);\n}\n.jp-icon-warn1[fill] {\n  fill: var(--jp-warn-color1);\n}\n.jp-icon-warn2[fill] {\n  fill: var(--jp-warn-color2);\n}\n.jp-icon-warn3[fill] {\n  fill: var(--jp-warn-color3);\n}\n\n.jp-icon-warn0[stroke] {\n  stroke: var(--jp-warn-color0);\n}\n.jp-icon-warn1[stroke] {\n  stroke: var(--jp-warn-color1);\n}\n.jp-icon-warn2[stroke] {\n  stroke: var(--jp-warn-color2);\n}\n.jp-icon-warn3[stroke] {\n  stroke: var(--jp-warn-color3);\n}\n/* icon colors that contrast well with each other and most backgrounds */\n.jp-icon-contrast0[fill] {\n  fill: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[fill] {\n  fill: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[fill] {\n  fill: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[fill] {\n  fill: var(--jp-icon-contrast-color3);\n}\n\n.jp-icon-contrast0[stroke] {\n  stroke: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[stroke] {\n  stroke: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[stroke] {\n  stroke: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[stroke] {\n  stroke: var(--jp-icon-contrast-color3);\n}\n\n/* CSS for icons in selected items in the settings editor */\n#setting-editor .jp-PluginList .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n#setting-editor\n  .jp-PluginList\n  .jp-mod-selected\n  .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected filebrowser listing items */\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected tabs in the sidebar tab manager */\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable-inverse[fill] {\n  fill: #fff;\n}\n\n/**\n * TODO: come up with non css-hack solution for showing the busy icon on top\n *  of the close icon\n * CSS for complex behavior of close icon of tabs in the sidebar tab manager\n */\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty.jp-mod-active\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: #fff;\n}\n\n/**\n* TODO: come up with non css-hack solution for showing the busy icon on top\n*  of the close icon\n* CSS for complex behavior of close icon of tabs in the main area tabbar\n*/\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n/* CSS for icons in status bar */\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n/* special handling for splash icon CSS. While the theme CSS reloads during\n   splash, the splash icon can loose theming. To prevent that, we set a\n   default for its color variable */\n:root {\n  --jp-warn-color0: var(--md-orange-700);\n}\n\n/* not sure what to do with this one, used in filebrowser listing */\n.jp-DragIcon {\n  margin-right: 4px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for alt colors for icons as inline SVG HTMLElements\n */\n\n/* alt recolor the primary elements of an icon */\n.jp-icon-alt .jp-icon0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-alt .jp-icon0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* alt recolor the accent elements of an icon */\n.jp-icon-alt .jp-icon-accent0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-alt .jp-icon-accent0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-icon-hoverShow:not(:hover) svg {\n  display: none !important;\n}\n\n/**\n * Support for hover colors for icons as inline SVG HTMLElements\n */\n\n/**\n * regular colors\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon-hover :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/* recolor the accent elements of an icon */\n.jp-icon-hover :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* set the color of an icon to transparent */\n.jp-icon-hover :hover .jp-icon-none-hover[fill] {\n  fill: none;\n}\n\n.jp-icon-hover :hover .jp-icon-none-hover[stroke] {\n  stroke: none;\n}\n\n/**\n * inverse colors\n */\n\n/* inverse recolor the primary elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* inverse recolor the accent elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-switch {\n  display: flex;\n  align-items: center;\n  padding-left: 4px;\n  padding-right: 4px;\n  font-size: var(--jp-ui-font-size1);\n  background-color: transparent;\n  color: var(--jp-ui-font-color1);\n  border: none;\n  height: 20px;\n}\n\n.jp-switch:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-switch-label {\n  margin-right: 5px;\n}\n\n.jp-switch-track {\n  cursor: pointer;\n  background-color: var(--jp-border-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 34px;\n  height: 16px;\n  width: 35px;\n  position: relative;\n}\n\n.jp-switch-track::before {\n  content: '';\n  position: absolute;\n  height: 10px;\n  width: 10px;\n  margin: 3px;\n  left: 0px;\n  background-color: var(--jp-ui-inverse-font-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 50%;\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track {\n  background-color: var(--jp-warn-color0);\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track::before {\n  /* track width (35) - margins (3 + 3) - thumb width (10) */\n  left: 19px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* Sibling imports */\n\n/* Override Blueprint's _reset.scss styles */\nhtml {\n  box-sizing: unset;\n}\n\n*,\n*::before,\n*::after {\n  box-sizing: unset;\n}\n\nbody {\n  color: unset;\n  font-family: var(--jp-ui-font-family);\n}\n\np {\n  margin-top: unset;\n  margin-bottom: unset;\n}\n\nsmall {\n  font-size: unset;\n}\n\nstrong {\n  font-weight: unset;\n}\n\n/* Override Blueprint's _typography.scss styles */\na {\n  text-decoration: unset;\n  color: unset;\n}\na:hover {\n  text-decoration: unset;\n  color: unset;\n}\n\n/* Override Blueprint's _accessibility.scss styles */\n:focus {\n  outline: unset;\n  outline-offset: unset;\n  -moz-outline-radius: unset;\n}\n\n/* Styles for ui-components */\n.jp-Button {\n  border-radius: var(--jp-border-radius);\n  padding: 0px 12px;\n  font-size: var(--jp-ui-font-size1);\n}\n\n/* Use our own theme for hover styles */\nbutton.jp-Button.bp3-button.bp3-minimal:hover {\n  background-color: var(--jp-layout-color2);\n}\n.jp-Button.minimal {\n  color: unset !important;\n}\n\n.jp-Button.jp-ToolbarButtonComponent {\n  text-transform: none;\n}\n\n.jp-InputGroup input {\n  box-sizing: border-box;\n  border-radius: 0;\n  background-color: transparent;\n  color: var(--jp-ui-font-color0);\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.jp-InputGroup input:focus {\n  box-shadow: inset 0 0 0 var(--jp-border-width)\n      var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-InputGroup input::placeholder,\ninput::placeholder {\n  color: var(--jp-ui-font-color3);\n}\n\n.jp-BPIcon {\n  display: inline-block;\n  vertical-align: middle;\n  margin: auto;\n}\n\n/* Stop blueprint futzing with our icon fills */\n.bp3-icon.jp-BPIcon > svg:not([fill]) {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n.jp-InputGroupAction {\n  padding: 6px;\n}\n\n.jp-HTMLSelect.jp-DefaultStyle select {\n  background-color: initial;\n  border: none;\n  border-radius: 0;\n  box-shadow: none;\n  color: var(--jp-ui-font-color0);\n  display: block;\n  font-size: var(--jp-ui-font-size1);\n  height: 24px;\n  line-height: 14px;\n  padding: 0 25px 0 10px;\n  text-align: left;\n  -moz-appearance: none;\n  -webkit-appearance: none;\n}\n\n/* Use our own theme for hover and option styles */\n.jp-HTMLSelect.jp-DefaultStyle select:hover,\n.jp-HTMLSelect.jp-DefaultStyle select > option {\n  background-color: var(--jp-layout-color2);\n  color: var(--jp-ui-font-color0);\n}\nselect {\n  box-sizing: border-box;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapse {\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  border-top: 1px solid var(--jp-border-color2);\n  border-bottom: 1px solid var(--jp-border-color2);\n}\n\n.jp-Collapse-header {\n  padding: 1px 12px;\n  color: var(--jp-ui-font-color1);\n  background-color: var(--jp-layout-color1);\n  font-size: var(--jp-ui-font-size2);\n}\n\n.jp-Collapse-header:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-Collapse-contents {\n  padding: 0px 12px 0px 12px;\n  background-color: var(--jp-layout-color1);\n  color: var(--jp-ui-font-color1);\n  overflow: auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-commandpalette-search-height: 28px;\n}\n\n/*-----------------------------------------------------------------------------\n| Overall styles\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette {\n  padding-bottom: 0px;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Modal variant\n|----------------------------------------------------------------------------*/\n\n.jp-ModalCommandPalette {\n  position: absolute;\n  z-index: 10000;\n  top: 38px;\n  left: 30%;\n  margin: 0;\n  padding: 4px;\n  width: 40%;\n  box-shadow: var(--jp-elevation-z4);\n  border-radius: 4px;\n  background: var(--jp-layout-color0);\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette {\n  max-height: 40vh;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-close-icon::after {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-header {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-item {\n  margin-left: 4px;\n  margin-right: 4px;\n}\n\n.jp-ModalCommandPalette\n  .lm-CommandPalette\n  .lm-CommandPalette-item.lm-mod-disabled {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Search\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-search {\n  padding: 4px;\n  background-color: var(--jp-layout-color1);\n  z-index: 2;\n}\n\n.lm-CommandPalette-wrapper {\n  overflow: overlay;\n  padding: 0px 9px;\n  background-color: var(--jp-input-active-background);\n  height: 30px;\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.lm-CommandPalette.lm-mod-focused .lm-CommandPalette-wrapper {\n  box-shadow: inset 0 0 0 1px var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-SearchIconGroup {\n  color: white;\n  background-color: var(--jp-brand-color1);\n  position: absolute;\n  top: 4px;\n  right: 4px;\n  padding: 5px 5px 1px 5px;\n}\n\n.jp-SearchIconGroup svg {\n  height: 20px;\n  width: 20px;\n}\n\n.jp-SearchIconGroup .jp-icon3[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-input {\n  background: transparent;\n  width: calc(100% - 18px);\n  float: left;\n  border: none;\n  outline: none;\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  line-height: var(--jp-private-commandpalette-search-height);\n}\n\n.lm-CommandPalette-input::-webkit-input-placeholder,\n.lm-CommandPalette-input::-moz-placeholder,\n.lm-CommandPalette-input:-ms-input-placeholder {\n  color: var(--jp-ui-font-color2);\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Results\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-header:first-child {\n  margin-top: 0px;\n}\n\n.lm-CommandPalette-header {\n  border-bottom: solid var(--jp-border-width) var(--jp-border-color2);\n  color: var(--jp-ui-font-color1);\n  cursor: pointer;\n  display: flex;\n  font-size: var(--jp-ui-font-size0);\n  font-weight: 600;\n  letter-spacing: 1px;\n  margin-top: 8px;\n  padding: 8px 0 8px 12px;\n  text-transform: uppercase;\n}\n\n.lm-CommandPalette-header.lm-mod-active {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-header > mark {\n  background-color: transparent;\n  font-weight: bold;\n  color: var(--jp-ui-font-color1);\n}\n\n.lm-CommandPalette-item {\n  padding: 4px 12px 4px 4px;\n  color: var(--jp-ui-font-color1);\n  font-size: var(--jp-ui-font-size1);\n  font-weight: 400;\n  display: flex;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item.lm-mod-active {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .jp-icon-selectable[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active:hover:not(.lm-mod-disabled) {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item:hover:not(.lm-mod-active):not(.lm-mod-disabled) {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-itemContent {\n  overflow: hidden;\n}\n\n.lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled mark {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemIcon {\n  margin: 0 4px 0 0;\n  position: relative;\n  width: 16px;\n  top: 2px;\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled .lm-CommandPalette-itemIcon {\n  opacity: 0.6;\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-itemCaption {\n  display: none;\n}\n\n.lm-CommandPalette-content {\n  background-color: var(--jp-layout-color1);\n}\n\n.lm-CommandPalette-content:empty:after {\n  content: 'No results';\n  margin: auto;\n  margin-top: 20px;\n  width: 100px;\n  display: block;\n  font-size: var(--jp-ui-font-size2);\n  font-family: var(--jp-ui-font-family);\n  font-weight: lighter;\n}\n\n.lm-CommandPalette-emptyMessage {\n  text-align: center;\n  margin-top: 24px;\n  line-height: 1.32;\n  padding: 0px 8px;\n  color: var(--jp-content-font-color3);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Dialog {\n  position: absolute;\n  z-index: 10000;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  top: 0px;\n  left: 0px;\n  margin: 0;\n  padding: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-dialog-background);\n}\n\n.jp-Dialog-content {\n  display: flex;\n  flex-direction: column;\n  margin-left: auto;\n  margin-right: auto;\n  background: var(--jp-layout-color1);\n  padding: 24px;\n  padding-bottom: 12px;\n  min-width: 300px;\n  min-height: 150px;\n  max-width: 1000px;\n  max-height: 500px;\n  box-sizing: border-box;\n  box-shadow: var(--jp-elevation-z20);\n  word-wrap: break-word;\n  border-radius: var(--jp-border-radius);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color1);\n  resize: both;\n}\n\n.jp-Dialog-button {\n  overflow: visible;\n}\n\nbutton.jp-Dialog-button:focus {\n  outline: 1px solid var(--jp-brand-color1);\n  outline-offset: 4px;\n  -moz-outline-radius: 0px;\n}\n\nbutton.jp-Dialog-button:focus::-moz-focus-inner {\n  border: 0;\n}\n\nbutton.jp-Dialog-close-button {\n  padding: 0;\n  height: 100%;\n  min-width: unset;\n  min-height: unset;\n}\n\n.jp-Dialog-header {\n  display: flex;\n  justify-content: space-between;\n  flex: 0 0 auto;\n  padding-bottom: 12px;\n  font-size: var(--jp-ui-font-size3);\n  font-weight: 400;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-body {\n  display: flex;\n  flex-direction: column;\n  flex: 1 1 auto;\n  font-size: var(--jp-ui-font-size1);\n  background: var(--jp-layout-color1);\n  overflow: auto;\n}\n\n.jp-Dialog-footer {\n  display: flex;\n  flex-direction: row;\n  justify-content: flex-end;\n  flex: 0 0 auto;\n  margin-left: -12px;\n  margin-right: -12px;\n  padding: 12px;\n}\n\n.jp-Dialog-title {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.jp-Dialog-body > .jp-select-wrapper {\n  width: 100%;\n}\n\n.jp-Dialog-body > button {\n  padding: 0px 16px;\n}\n\n.jp-Dialog-body > label {\n  line-height: 1.4;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-button.jp-mod-styled:not(:last-child) {\n  margin-right: 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-HoverBox {\n  position: fixed;\n}\n\n.jp-HoverBox.jp-mod-outofview {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-IFrame {\n  width: 100%;\n  height: 100%;\n}\n\n.jp-IFrame > iframe {\n  border: none;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-IFrame {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-IFrame:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n.jp-Input-Boolean-Dialog {\n  flex-direction: row-reverse;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-Input-Boolean-Dialog > label {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MainAreaWidget > :focus {\n  outline: none;\n}\n\n/**\n * google-material-color v1.2.6\n * https://github.com/danlevan/google-material-color\n */\n:root {\n  --md-red-50: #ffebee;\n  --md-red-100: #ffcdd2;\n  --md-red-200: #ef9a9a;\n  --md-red-300: #e57373;\n  --md-red-400: #ef5350;\n  --md-red-500: #f44336;\n  --md-red-600: #e53935;\n  --md-red-700: #d32f2f;\n  --md-red-800: #c62828;\n  --md-red-900: #b71c1c;\n  --md-red-A100: #ff8a80;\n  --md-red-A200: #ff5252;\n  --md-red-A400: #ff1744;\n  --md-red-A700: #d50000;\n\n  --md-pink-50: #fce4ec;\n  --md-pink-100: #f8bbd0;\n  --md-pink-200: #f48fb1;\n  --md-pink-300: #f06292;\n  --md-pink-400: #ec407a;\n  --md-pink-500: #e91e63;\n  --md-pink-600: #d81b60;\n  --md-pink-700: #c2185b;\n  --md-pink-800: #ad1457;\n  --md-pink-900: #880e4f;\n  --md-pink-A100: #ff80ab;\n  --md-pink-A200: #ff4081;\n  --md-pink-A400: #f50057;\n  --md-pink-A700: #c51162;\n\n  --md-purple-50: #f3e5f5;\n  --md-purple-100: #e1bee7;\n  --md-purple-200: #ce93d8;\n  --md-purple-300: #ba68c8;\n  --md-purple-400: #ab47bc;\n  --md-purple-500: #9c27b0;\n  --md-purple-600: #8e24aa;\n  --md-purple-700: #7b1fa2;\n  --md-purple-800: #6a1b9a;\n  --md-purple-900: #4a148c;\n  --md-purple-A100: #ea80fc;\n  --md-purple-A200: #e040fb;\n  --md-purple-A400: #d500f9;\n  --md-purple-A700: #aa00ff;\n\n  --md-deep-purple-50: #ede7f6;\n  --md-deep-purple-100: #d1c4e9;\n  --md-deep-purple-200: #b39ddb;\n  --md-deep-purple-300: #9575cd;\n  --md-deep-purple-400: #7e57c2;\n  --md-deep-purple-500: #673ab7;\n  --md-deep-purple-600: #5e35b1;\n  --md-deep-purple-700: #512da8;\n  --md-deep-purple-800: #4527a0;\n  --md-deep-purple-900: #311b92;\n  --md-deep-purple-A100: #b388ff;\n  --md-deep-purple-A200: #7c4dff;\n  --md-deep-purple-A400: #651fff;\n  --md-deep-purple-A700: #6200ea;\n\n  --md-indigo-50: #e8eaf6;\n  --md-indigo-100: #c5cae9;\n  --md-indigo-200: #9fa8da;\n  --md-indigo-300: #7986cb;\n  --md-indigo-400: #5c6bc0;\n  --md-indigo-500: #3f51b5;\n  --md-indigo-600: #3949ab;\n  --md-indigo-700: #303f9f;\n  --md-indigo-800: #283593;\n  --md-indigo-900: #1a237e;\n  --md-indigo-A100: #8c9eff;\n  --md-indigo-A200: #536dfe;\n  --md-indigo-A400: #3d5afe;\n  --md-indigo-A700: #304ffe;\n\n  --md-blue-50: #e3f2fd;\n  --md-blue-100: #bbdefb;\n  --md-blue-200: #90caf9;\n  --md-blue-300: #64b5f6;\n  --md-blue-400: #42a5f5;\n  --md-blue-500: #2196f3;\n  --md-blue-600: #1e88e5;\n  --md-blue-700: #1976d2;\n  --md-blue-800: #1565c0;\n  --md-blue-900: #0d47a1;\n  --md-blue-A100: #82b1ff;\n  --md-blue-A200: #448aff;\n  --md-blue-A400: #2979ff;\n  --md-blue-A700: #2962ff;\n\n  --md-light-blue-50: #e1f5fe;\n  --md-light-blue-100: #b3e5fc;\n  --md-light-blue-200: #81d4fa;\n  --md-light-blue-300: #4fc3f7;\n  --md-light-blue-400: #29b6f6;\n  --md-light-blue-500: #03a9f4;\n  --md-light-blue-600: #039be5;\n  --md-light-blue-700: #0288d1;\n  --md-light-blue-800: #0277bd;\n  --md-light-blue-900: #01579b;\n  --md-light-blue-A100: #80d8ff;\n  --md-light-blue-A200: #40c4ff;\n  --md-light-blue-A400: #00b0ff;\n  --md-light-blue-A700: #0091ea;\n\n  --md-cyan-50: #e0f7fa;\n  --md-cyan-100: #b2ebf2;\n  --md-cyan-200: #80deea;\n  --md-cyan-300: #4dd0e1;\n  --md-cyan-400: #26c6da;\n  --md-cyan-500: #00bcd4;\n  --md-cyan-600: #00acc1;\n  --md-cyan-700: #0097a7;\n  --md-cyan-800: #00838f;\n  --md-cyan-900: #006064;\n  --md-cyan-A100: #84ffff;\n  --md-cyan-A200: #18ffff;\n  --md-cyan-A400: #00e5ff;\n  --md-cyan-A700: #00b8d4;\n\n  --md-teal-50: #e0f2f1;\n  --md-teal-100: #b2dfdb;\n  --md-teal-200: #80cbc4;\n  --md-teal-300: #4db6ac;\n  --md-teal-400: #26a69a;\n  --md-teal-500: #009688;\n  --md-teal-600: #00897b;\n  --md-teal-700: #00796b;\n  --md-teal-800: #00695c;\n  --md-teal-900: #004d40;\n  --md-teal-A100: #a7ffeb;\n  --md-teal-A200: #64ffda;\n  --md-teal-A400: #1de9b6;\n  --md-teal-A700: #00bfa5;\n\n  --md-green-50: #e8f5e9;\n  --md-green-100: #c8e6c9;\n  --md-green-200: #a5d6a7;\n  --md-green-300: #81c784;\n  --md-green-400: #66bb6a;\n  --md-green-500: #4caf50;\n  --md-green-600: #43a047;\n  --md-green-700: #388e3c;\n  --md-green-800: #2e7d32;\n  --md-green-900: #1b5e20;\n  --md-green-A100: #b9f6ca;\n  --md-green-A200: #69f0ae;\n  --md-green-A400: #00e676;\n  --md-green-A700: #00c853;\n\n  --md-light-green-50: #f1f8e9;\n  --md-light-green-100: #dcedc8;\n  --md-light-green-200: #c5e1a5;\n  --md-light-green-300: #aed581;\n  --md-light-green-400: #9ccc65;\n  --md-light-green-500: #8bc34a;\n  --md-light-green-600: #7cb342;\n  --md-light-green-700: #689f38;\n  --md-light-green-800: #558b2f;\n  --md-light-green-900: #33691e;\n  --md-light-green-A100: #ccff90;\n  --md-light-green-A200: #b2ff59;\n  --md-light-green-A400: #76ff03;\n  --md-light-green-A700: #64dd17;\n\n  --md-lime-50: #f9fbe7;\n  --md-lime-100: #f0f4c3;\n  --md-lime-200: #e6ee9c;\n  --md-lime-300: #dce775;\n  --md-lime-400: #d4e157;\n  --md-lime-500: #cddc39;\n  --md-lime-600: #c0ca33;\n  --md-lime-700: #afb42b;\n  --md-lime-800: #9e9d24;\n  --md-lime-900: #827717;\n  --md-lime-A100: #f4ff81;\n  --md-lime-A200: #eeff41;\n  --md-lime-A400: #c6ff00;\n  --md-lime-A700: #aeea00;\n\n  --md-yellow-50: #fffde7;\n  --md-yellow-100: #fff9c4;\n  --md-yellow-200: #fff59d;\n  --md-yellow-300: #fff176;\n  --md-yellow-400: #ffee58;\n  --md-yellow-500: #ffeb3b;\n  --md-yellow-600: #fdd835;\n  --md-yellow-700: #fbc02d;\n  --md-yellow-800: #f9a825;\n  --md-yellow-900: #f57f17;\n  --md-yellow-A100: #ffff8d;\n  --md-yellow-A200: #ffff00;\n  --md-yellow-A400: #ffea00;\n  --md-yellow-A700: #ffd600;\n\n  --md-amber-50: #fff8e1;\n  --md-amber-100: #ffecb3;\n  --md-amber-200: #ffe082;\n  --md-amber-300: #ffd54f;\n  --md-amber-400: #ffca28;\n  --md-amber-500: #ffc107;\n  --md-amber-600: #ffb300;\n  --md-amber-700: #ffa000;\n  --md-amber-800: #ff8f00;\n  --md-amber-900: #ff6f00;\n  --md-amber-A100: #ffe57f;\n  --md-amber-A200: #ffd740;\n  --md-amber-A400: #ffc400;\n  --md-amber-A700: #ffab00;\n\n  --md-orange-50: #fff3e0;\n  --md-orange-100: #ffe0b2;\n  --md-orange-200: #ffcc80;\n  --md-orange-300: #ffb74d;\n  --md-orange-400: #ffa726;\n  --md-orange-500: #ff9800;\n  --md-orange-600: #fb8c00;\n  --md-orange-700: #f57c00;\n  --md-orange-800: #ef6c00;\n  --md-orange-900: #e65100;\n  --md-orange-A100: #ffd180;\n  --md-orange-A200: #ffab40;\n  --md-orange-A400: #ff9100;\n  --md-orange-A700: #ff6d00;\n\n  --md-deep-orange-50: #fbe9e7;\n  --md-deep-orange-100: #ffccbc;\n  --md-deep-orange-200: #ffab91;\n  --md-deep-orange-300: #ff8a65;\n  --md-deep-orange-400: #ff7043;\n  --md-deep-orange-500: #ff5722;\n  --md-deep-orange-600: #f4511e;\n  --md-deep-orange-700: #e64a19;\n  --md-deep-orange-800: #d84315;\n  --md-deep-orange-900: #bf360c;\n  --md-deep-orange-A100: #ff9e80;\n  --md-deep-orange-A200: #ff6e40;\n  --md-deep-orange-A400: #ff3d00;\n  --md-deep-orange-A700: #dd2c00;\n\n  --md-brown-50: #efebe9;\n  --md-brown-100: #d7ccc8;\n  --md-brown-200: #bcaaa4;\n  --md-brown-300: #a1887f;\n  --md-brown-400: #8d6e63;\n  --md-brown-500: #795548;\n  --md-brown-600: #6d4c41;\n  --md-brown-700: #5d4037;\n  --md-brown-800: #4e342e;\n  --md-brown-900: #3e2723;\n\n  --md-grey-50: #fafafa;\n  --md-grey-100: #f5f5f5;\n  --md-grey-200: #eeeeee;\n  --md-grey-300: #e0e0e0;\n  --md-grey-400: #bdbdbd;\n  --md-grey-500: #9e9e9e;\n  --md-grey-600: #757575;\n  --md-grey-700: #616161;\n  --md-grey-800: #424242;\n  --md-grey-900: #212121;\n\n  --md-blue-grey-50: #eceff1;\n  --md-blue-grey-100: #cfd8dc;\n  --md-blue-grey-200: #b0bec5;\n  --md-blue-grey-300: #90a4ae;\n  --md-blue-grey-400: #78909c;\n  --md-blue-grey-500: #607d8b;\n  --md-blue-grey-600: #546e7a;\n  --md-blue-grey-700: #455a64;\n  --md-blue-grey-800: #37474f;\n  --md-blue-grey-900: #263238;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Spinner {\n  position: absolute;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  z-index: 10;\n  left: 0;\n  top: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-layout-color0);\n  outline: none;\n}\n\n.jp-SpinnerContent {\n  font-size: 10px;\n  margin: 50px auto;\n  text-indent: -9999em;\n  width: 3em;\n  height: 3em;\n  border-radius: 50%;\n  background: var(--jp-brand-color3);\n  background: linear-gradient(\n    to right,\n    #f37626 10%,\n    rgba(255, 255, 255, 0) 42%\n  );\n  position: relative;\n  animation: load3 1s infinite linear, fadeIn 1s;\n}\n\n.jp-SpinnerContent:before {\n  width: 50%;\n  height: 50%;\n  background: #f37626;\n  border-radius: 100% 0 0 0;\n  position: absolute;\n  top: 0;\n  left: 0;\n  content: '';\n}\n\n.jp-SpinnerContent:after {\n  background: var(--jp-layout-color0);\n  width: 75%;\n  height: 75%;\n  border-radius: 50%;\n  content: '';\n  margin: auto;\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n}\n\n@keyframes fadeIn {\n  0% {\n    opacity: 0;\n  }\n  100% {\n    opacity: 1;\n  }\n}\n\n@keyframes load3 {\n  0% {\n    transform: rotate(0deg);\n  }\n  100% {\n    transform: rotate(360deg);\n  }\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\nbutton.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: none;\n  box-sizing: border-box;\n  text-align: center;\n  line-height: 32px;\n  height: 32px;\n  padding: 0px 12px;\n  letter-spacing: 0.8px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput.jp-mod-styled {\n  background: var(--jp-input-background);\n  height: 28px;\n  box-sizing: border-box;\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n  padding-left: 7px;\n  padding-right: 7px;\n  font-size: var(--jp-ui-font-size2);\n  color: var(--jp-ui-font-color0);\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput[type='checkbox'].jp-mod-styled {\n  appearance: checkbox;\n  -webkit-appearance: checkbox;\n  -moz-appearance: checkbox;\n  height: auto;\n}\n\ninput.jp-mod-styled:focus {\n  border: var(--jp-border-width) solid var(--md-blue-500);\n  box-shadow: inset 0 0 4px var(--md-blue-300);\n}\n\n.jp-FileDialog-Checkbox {\n  margin-top: 35px;\n  display: flex;\n  flex-direction: row;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-FileDialog-Checkbox > label {\n  flex: 1 1 auto;\n}\n\n.jp-select-wrapper {\n  display: flex;\n  position: relative;\n  flex-direction: column;\n  padding: 1px;\n  background-color: var(--jp-layout-color1);\n  height: 28px;\n  box-sizing: border-box;\n  margin-bottom: 12px;\n}\n\n.jp-select-wrapper.jp-mod-focused select.jp-mod-styled {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-input-active-background);\n}\n\nselect.jp-mod-styled:hover {\n  background-color: var(--jp-layout-color1);\n  cursor: pointer;\n  color: var(--jp-ui-font-color0);\n  background-color: var(--jp-input-hover-background);\n  box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.5);\n}\n\nselect.jp-mod-styled {\n  flex: 1 1 auto;\n  height: 32px;\n  width: 100%;\n  font-size: var(--jp-ui-font-size2);\n  background: var(--jp-input-background);\n  color: var(--jp-ui-font-color0);\n  padding: 0 25px 0 8px;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-toolbar-height: calc(\n    28px + var(--jp-border-width)\n  ); /* leave 28px for content */\n}\n\n.jp-Toolbar {\n  color: var(--jp-ui-font-color1);\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  border-bottom: var(--jp-border-width) solid var(--jp-toolbar-border-color);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  background: var(--jp-toolbar-background);\n  min-height: var(--jp-toolbar-micro-height);\n  padding: 2px;\n  z-index: 1;\n  overflow-x: auto;\n}\n\n/* Toolbar items */\n\n.jp-Toolbar > .jp-Toolbar-item.jp-Toolbar-spacer {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\n.jp-Toolbar-item.jp-Toolbar-kernelStatus {\n  display: inline-block;\n  width: 32px;\n  background-repeat: no-repeat;\n  background-position: center;\n  background-size: 16px;\n}\n\n.jp-Toolbar > .jp-Toolbar-item {\n  flex: 0 0 auto;\n  display: flex;\n  padding-left: 1px;\n  padding-right: 1px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: var(--jp-private-toolbar-height);\n  height: 100%;\n}\n\n/* Toolbar buttons */\n\n/* This is the div we use to wrap the react component into a Widget */\ndiv.jp-ToolbarButton {\n  color: transparent;\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px;\n  margin: 0px;\n}\n\nbutton.jp-ToolbarButtonComponent {\n  background: var(--jp-layout-color1);\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px 6px;\n  margin: 0px;\n  height: 24px;\n  border-radius: var(--jp-border-radius);\n  display: flex;\n  align-items: center;\n  text-align: center;\n  font-size: 14px;\n  min-width: unset;\n  min-height: unset;\n}\n\nbutton.jp-ToolbarButtonComponent:disabled {\n  opacity: 0.4;\n}\n\nbutton.jp-ToolbarButtonComponent span {\n  padding: 0px;\n  flex: 0 0 auto;\n}\n\nbutton.jp-ToolbarButtonComponent .jp-ToolbarButtonComponent-label {\n  font-size: var(--jp-ui-font-size1);\n  line-height: 100%;\n  padding-left: 2px;\n  color: var(--jp-ui-font-color1);\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar.jp-Toolbar-micro {\n  padding: 0;\n  min-height: 0;\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar {\n  border: none;\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ body.p-mod-override-cursor *, /* </DEPRECATED> */\nbody.lm-mod-override-cursor * {\n  cursor: inherit !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-JSONEditor {\n  display: flex;\n  flex-direction: column;\n  width: 100%;\n}\n\n.jp-JSONEditor-host {\n  flex: 1 1 auto;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  background: var(--jp-layout-color0);\n  min-height: 50px;\n  padding: 1px;\n}\n\n.jp-JSONEditor.jp-mod-error .jp-JSONEditor-host {\n  border-color: red;\n  outline-color: red;\n}\n\n.jp-JSONEditor-header {\n  display: flex;\n  flex: 1 0 auto;\n  padding: 0 0 0 12px;\n}\n\n.jp-JSONEditor-header label {\n  flex: 0 0 auto;\n}\n\n.jp-JSONEditor-commitButton {\n  height: 16px;\n  width: 16px;\n  background-size: 18px;\n  background-repeat: no-repeat;\n  background-position: center;\n}\n\n.jp-JSONEditor-host.jp-mod-focused {\n  background-color: var(--jp-input-active-background);\n  border: 1px solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n.jp-Editor.jp-mod-dropTarget {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n/* BASICS */\n\n.CodeMirror {\n  /* Set height, width, borders, and global font properties here */\n  font-family: monospace;\n  height: 300px;\n  color: black;\n  direction: ltr;\n}\n\n/* PADDING */\n\n.CodeMirror-lines {\n  padding: 4px 0; /* Vertical padding around content */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  padding: 0 4px; /* Horizontal padding of content */\n}\n\n.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  background-color: white; /* The little square between H and V scrollbars */\n}\n\n/* GUTTER */\n\n.CodeMirror-gutters {\n  border-right: 1px solid #ddd;\n  background-color: #f7f7f7;\n  white-space: nowrap;\n}\n.CodeMirror-linenumbers {}\n.CodeMirror-linenumber {\n  padding: 0 3px 0 5px;\n  min-width: 20px;\n  text-align: right;\n  color: #999;\n  white-space: nowrap;\n}\n\n.CodeMirror-guttermarker { color: black; }\n.CodeMirror-guttermarker-subtle { color: #999; }\n\n/* CURSOR */\n\n.CodeMirror-cursor {\n  border-left: 1px solid black;\n  border-right: none;\n  width: 0;\n}\n/* Shown when moving in bi-directional text */\n.CodeMirror div.CodeMirror-secondarycursor {\n  border-left: 1px solid silver;\n}\n.cm-fat-cursor .CodeMirror-cursor {\n  width: auto;\n  border: 0 !important;\n  background: #7e7;\n}\n.cm-fat-cursor div.CodeMirror-cursors {\n  z-index: 1;\n}\n.cm-fat-cursor-mark {\n  background-color: rgba(20, 255, 20, 0.5);\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n}\n.cm-animate-fat-cursor {\n  width: auto;\n  border: 0;\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n  background-color: #7e7;\n}\n@-moz-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@-webkit-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n\n/* Can style cursor different in overwrite (non-insert) mode */\n.CodeMirror-overwrite .CodeMirror-cursor {}\n\n.cm-tab { display: inline-block; text-decoration: inherit; }\n\n.CodeMirror-rulers {\n  position: absolute;\n  left: 0; right: 0; top: -50px; bottom: 0;\n  overflow: hidden;\n}\n.CodeMirror-ruler {\n  border-left: 1px solid #ccc;\n  top: 0; bottom: 0;\n  position: absolute;\n}\n\n/* DEFAULT THEME */\n\n.cm-s-default .cm-header {color: blue;}\n.cm-s-default .cm-quote {color: #090;}\n.cm-negative {color: #d44;}\n.cm-positive {color: #292;}\n.cm-header, .cm-strong {font-weight: bold;}\n.cm-em {font-style: italic;}\n.cm-link {text-decoration: underline;}\n.cm-strikethrough {text-decoration: line-through;}\n\n.cm-s-default .cm-keyword {color: #708;}\n.cm-s-default .cm-atom {color: #219;}\n.cm-s-default .cm-number {color: #164;}\n.cm-s-default .cm-def {color: #00f;}\n.cm-s-default .cm-variable,\n.cm-s-default .cm-punctuation,\n.cm-s-default .cm-property,\n.cm-s-default .cm-operator {}\n.cm-s-default .cm-variable-2 {color: #05a;}\n.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}\n.cm-s-default .cm-comment {color: #a50;}\n.cm-s-default .cm-string {color: #a11;}\n.cm-s-default .cm-string-2 {color: #f50;}\n.cm-s-default .cm-meta {color: #555;}\n.cm-s-default .cm-qualifier {color: #555;}\n.cm-s-default .cm-builtin {color: #30a;}\n.cm-s-default .cm-bracket {color: #997;}\n.cm-s-default .cm-tag {color: #170;}\n.cm-s-default .cm-attribute {color: #00c;}\n.cm-s-default .cm-hr {color: #999;}\n.cm-s-default .cm-link {color: #00c;}\n\n.cm-s-default .cm-error {color: #f00;}\n.cm-invalidchar {color: #f00;}\n\n.CodeMirror-composing { border-bottom: 2px solid; }\n\n/* Default styles for common addons */\n\ndiv.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}\ndiv.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}\n.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }\n.CodeMirror-activeline-background {background: #e8f2ff;}\n\n/* STOP */\n\n/* The rest of this file contains styles related to the mechanics of\n   the editor. You probably shouldn't touch them. */\n\n.CodeMirror {\n  position: relative;\n  overflow: hidden;\n  background: white;\n}\n\n.CodeMirror-scroll {\n  overflow: scroll !important; /* Things will break if this is overridden */\n  /* 50px is the magic margin used to hide the element's real scrollbars */\n  /* See overflow: hidden in .CodeMirror */\n  margin-bottom: -50px; margin-right: -50px;\n  padding-bottom: 50px;\n  height: 100%;\n  outline: none; /* Prevent dragging from highlighting the element */\n  position: relative;\n}\n.CodeMirror-sizer {\n  position: relative;\n  border-right: 50px solid transparent;\n}\n\n/* The fake, visible scrollbars. Used to force redraw during scrolling\n   before actual scrolling happens, thus preventing shaking and\n   flickering artifacts. */\n.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  position: absolute;\n  z-index: 6;\n  display: none;\n  outline: none;\n}\n.CodeMirror-vscrollbar {\n  right: 0; top: 0;\n  overflow-x: hidden;\n  overflow-y: scroll;\n}\n.CodeMirror-hscrollbar {\n  bottom: 0; left: 0;\n  overflow-y: hidden;\n  overflow-x: scroll;\n}\n.CodeMirror-scrollbar-filler {\n  right: 0; bottom: 0;\n}\n.CodeMirror-gutter-filler {\n  left: 0; bottom: 0;\n}\n\n.CodeMirror-gutters {\n  position: absolute; left: 0; top: 0;\n  min-height: 100%;\n  z-index: 3;\n}\n.CodeMirror-gutter {\n  white-space: normal;\n  height: 100%;\n  display: inline-block;\n  vertical-align: top;\n  margin-bottom: -50px;\n}\n.CodeMirror-gutter-wrapper {\n  position: absolute;\n  z-index: 4;\n  background: none !important;\n  border: none !important;\n}\n.CodeMirror-gutter-background {\n  position: absolute;\n  top: 0; bottom: 0;\n  z-index: 4;\n}\n.CodeMirror-gutter-elt {\n  position: absolute;\n  cursor: default;\n  z-index: 4;\n}\n.CodeMirror-gutter-wrapper ::selection { background-color: transparent }\n.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }\n\n.CodeMirror-lines {\n  cursor: text;\n  min-height: 1px; /* prevents collapsing before first draw */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  /* Reset some styles that the rest of the page might have set */\n  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;\n  border-width: 0;\n  background: transparent;\n  font-family: inherit;\n  font-size: inherit;\n  margin: 0;\n  white-space: pre;\n  word-wrap: normal;\n  line-height: inherit;\n  color: inherit;\n  z-index: 2;\n  position: relative;\n  overflow: visible;\n  -webkit-tap-highlight-color: transparent;\n  -webkit-font-variant-ligatures: contextual;\n  font-variant-ligatures: contextual;\n}\n.CodeMirror-wrap pre.CodeMirror-line,\n.CodeMirror-wrap pre.CodeMirror-line-like {\n  word-wrap: break-word;\n  white-space: pre-wrap;\n  word-break: normal;\n}\n\n.CodeMirror-linebackground {\n  position: absolute;\n  left: 0; right: 0; top: 0; bottom: 0;\n  z-index: 0;\n}\n\n.CodeMirror-linewidget {\n  position: relative;\n  z-index: 2;\n  padding: 0.1px; /* Force widget margins to stay inside of the container */\n}\n\n.CodeMirror-widget {}\n\n.CodeMirror-rtl pre { direction: rtl; }\n\n.CodeMirror-code {\n  outline: none;\n}\n\n/* Force content-box sizing for the elements where we expect it */\n.CodeMirror-scroll,\n.CodeMirror-sizer,\n.CodeMirror-gutter,\n.CodeMirror-gutters,\n.CodeMirror-linenumber {\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n}\n\n.CodeMirror-measure {\n  position: absolute;\n  width: 100%;\n  height: 0;\n  overflow: hidden;\n  visibility: hidden;\n}\n\n.CodeMirror-cursor {\n  position: absolute;\n  pointer-events: none;\n}\n.CodeMirror-measure pre { position: static; }\n\ndiv.CodeMirror-cursors {\n  visibility: hidden;\n  position: relative;\n  z-index: 3;\n}\ndiv.CodeMirror-dragcursors {\n  visibility: visible;\n}\n\n.CodeMirror-focused div.CodeMirror-cursors {\n  visibility: visible;\n}\n\n.CodeMirror-selected { background: #d9d9d9; }\n.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }\n.CodeMirror-crosshair { cursor: crosshair; }\n.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }\n.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }\n\n.cm-searching {\n  background-color: #ffa;\n  background-color: rgba(255, 255, 0, .4);\n}\n\n/* Used to force a border model for a node */\n.cm-force-border { padding-right: .1px; }\n\n@media print {\n  /* Hide the cursor when printing */\n  .CodeMirror div.CodeMirror-cursors {\n    visibility: hidden;\n  }\n}\n\n/* See issue #2901 */\n.cm-tab-wrap-hack:after { content: ''; }\n\n/* Help users use markselection to safely style text background */\nspan.CodeMirror-selectedtext { background: none; }\n\n.CodeMirror-dialog {\n  position: absolute;\n  left: 0; right: 0;\n  background: inherit;\n  z-index: 15;\n  padding: .1em .8em;\n  overflow: hidden;\n  color: inherit;\n}\n\n.CodeMirror-dialog-top {\n  border-bottom: 1px solid #eee;\n  top: 0;\n}\n\n.CodeMirror-dialog-bottom {\n  border-top: 1px solid #eee;\n  bottom: 0;\n}\n\n.CodeMirror-dialog input {\n  border: none;\n  outline: none;\n  background: transparent;\n  width: 20em;\n  color: inherit;\n  font-family: monospace;\n}\n\n.CodeMirror-dialog button {\n  font-size: 70%;\n}\n\n.CodeMirror-foldmarker {\n  color: blue;\n  text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;\n  font-family: arial;\n  line-height: .3;\n  cursor: pointer;\n}\n.CodeMirror-foldgutter {\n  width: .7em;\n}\n.CodeMirror-foldgutter-open,\n.CodeMirror-foldgutter-folded {\n  cursor: pointer;\n}\n.CodeMirror-foldgutter-open:after {\n  content: \"\\25BE\";\n}\n.CodeMirror-foldgutter-folded:after {\n  content: \"\\25B8\";\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.CodeMirror {\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  border: 0;\n  border-radius: 0;\n  height: auto;\n  /* Changed to auto to autogrow */\n}\n\n.CodeMirror pre {\n  padding: 0 var(--jp-code-padding);\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-dialog {\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* This causes https://github.com/jupyter/jupyterlab/issues/522 */\n/* May not cause it not because we changed it! */\n.CodeMirror-lines {\n  padding: var(--jp-code-padding) 0;\n}\n\n.CodeMirror-linenumber {\n  padding: 0 8px;\n}\n\n.jp-CodeMirrorEditor {\n  cursor: text;\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n\n/* When zoomed out 67% and 33% on a screen of 1440 width x 900 height */\n@media screen and (min-width: 2138px) and (max-width: 4319px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width1) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n/* When zoomed out less than 33% */\n@media screen and (min-width: 4320px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width2) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n.CodeMirror.jp-mod-readOnly .CodeMirror-cursor {\n  display: none;\n}\n\n.CodeMirror-gutters {\n  border-right: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-layout-color0);\n}\n\n.jp-CollaboratorCursor {\n  border-left: 5px solid transparent;\n  border-right: 5px solid transparent;\n  border-top: none;\n  border-bottom: 3px solid;\n  background-clip: content-box;\n  margin-left: -5px;\n  margin-right: -5px;\n}\n\n.CodeMirror-selectedtext.cm-searching {\n  background-color: var(--jp-search-selected-match-background-color) !important;\n  color: var(--jp-search-selected-match-color) !important;\n}\n\n.cm-searching {\n  background-color: var(\n    --jp-search-unselected-match-background-color\n  ) !important;\n  color: var(--jp-search-unselected-match-color) !important;\n}\n\n.CodeMirror-focused .CodeMirror-selected {\n  background-color: var(--jp-editor-selected-focused-background);\n}\n\n.CodeMirror-selected {\n  background-color: var(--jp-editor-selected-background);\n}\n\n.jp-CollaboratorCursor-hover {\n  position: absolute;\n  z-index: 1;\n  transform: translateX(-50%);\n  color: white;\n  border-radius: 3px;\n  padding-left: 4px;\n  padding-right: 4px;\n  padding-top: 1px;\n  padding-bottom: 1px;\n  text-align: center;\n  font-size: var(--jp-ui-font-size1);\n  white-space: nowrap;\n}\n\n.jp-CodeMirror-ruler {\n  border-left: 1px dashed var(--jp-border-color2);\n}\n\n/**\n * Here is our jupyter theme for CodeMirror syntax highlighting\n * This is used in our marked.js syntax highlighting and CodeMirror itself\n * The string \"jupyter\" is set in ../codemirror/widget.DEFAULT_CODEMIRROR_THEME\n * This came from the classic notebook, which came form highlight.js/GitHub\n */\n\n/**\n * CodeMirror themes are handling the background/color in this way. This works\n * fine for CodeMirror editors outside the notebook, but the notebook styles\n * these things differently.\n */\n.CodeMirror.cm-s-jupyter {\n  background: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* In the notebook, we want this styling to be handled by its container */\n.jp-CodeConsole .CodeMirror.cm-s-jupyter,\n.jp-Notebook .CodeMirror.cm-s-jupyter {\n  background: transparent;\n}\n\n.cm-s-jupyter .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n.cm-s-jupyter span.cm-keyword {\n  color: var(--jp-mirror-editor-keyword-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-atom {\n  color: var(--jp-mirror-editor-atom-color);\n}\n.cm-s-jupyter span.cm-number {\n  color: var(--jp-mirror-editor-number-color);\n}\n.cm-s-jupyter span.cm-def {\n  color: var(--jp-mirror-editor-def-color);\n}\n.cm-s-jupyter span.cm-variable {\n  color: var(--jp-mirror-editor-variable-color);\n}\n.cm-s-jupyter span.cm-variable-2 {\n  color: var(--jp-mirror-editor-variable-2-color);\n}\n.cm-s-jupyter span.cm-variable-3 {\n  color: var(--jp-mirror-editor-variable-3-color);\n}\n.cm-s-jupyter span.cm-punctuation {\n  color: var(--jp-mirror-editor-punctuation-color);\n}\n.cm-s-jupyter span.cm-property {\n  color: var(--jp-mirror-editor-property-color);\n}\n.cm-s-jupyter span.cm-operator {\n  color: var(--jp-mirror-editor-operator-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-comment {\n  color: var(--jp-mirror-editor-comment-color);\n  font-style: italic;\n}\n.cm-s-jupyter span.cm-string {\n  color: var(--jp-mirror-editor-string-color);\n}\n.cm-s-jupyter span.cm-string-2 {\n  color: var(--jp-mirror-editor-string-2-color);\n}\n.cm-s-jupyter span.cm-meta {\n  color: var(--jp-mirror-editor-meta-color);\n}\n.cm-s-jupyter span.cm-qualifier {\n  color: var(--jp-mirror-editor-qualifier-color);\n}\n.cm-s-jupyter span.cm-builtin {\n  color: var(--jp-mirror-editor-builtin-color);\n}\n.cm-s-jupyter span.cm-bracket {\n  color: var(--jp-mirror-editor-bracket-color);\n}\n.cm-s-jupyter span.cm-tag {\n  color: var(--jp-mirror-editor-tag-color);\n}\n.cm-s-jupyter span.cm-attribute {\n  color: var(--jp-mirror-editor-attribute-color);\n}\n.cm-s-jupyter span.cm-header {\n  color: var(--jp-mirror-editor-header-color);\n}\n.cm-s-jupyter span.cm-quote {\n  color: var(--jp-mirror-editor-quote-color);\n}\n.cm-s-jupyter span.cm-link {\n  color: var(--jp-mirror-editor-link-color);\n}\n.cm-s-jupyter span.cm-error {\n  color: var(--jp-mirror-editor-error-color);\n}\n.cm-s-jupyter span.cm-hr {\n  color: #999;\n}\n\n.cm-s-jupyter span.cm-tab {\n  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);\n  background-position: right;\n  background-repeat: no-repeat;\n}\n\n.cm-s-jupyter .CodeMirror-activeline-background,\n.cm-s-jupyter .CodeMirror-gutter {\n  background-color: var(--jp-layout-color2);\n}\n\n/* Styles for shared cursors (remote cursor locations and selected ranges) */\n.jp-CodeMirrorEditor .remote-caret {\n  position: relative;\n  border-left: 2px solid black;\n  margin-left: -1px;\n  margin-right: -1px;\n  box-sizing: border-box;\n}\n\n.jp-CodeMirrorEditor .remote-caret > div {\n  white-space: nowrap;\n  position: absolute;\n  top: -1.15em;\n  padding-bottom: 0.05em;\n  left: -2px;\n  font-size: 0.95em;\n  background-color: rgb(250, 129, 0);\n  font-family: var(--jp-ui-font-family);\n  font-weight: bold;\n  line-height: normal;\n  user-select: none;\n  color: white;\n  padding-left: 2px;\n  padding-right: 2px;\n  z-index: 3;\n  transition: opacity 0.3s ease-in-out;\n}\n\n.jp-CodeMirrorEditor .remote-caret.hide-name > div {\n  transition-delay: 0.7s;\n  opacity: 0;\n}\n\n.jp-CodeMirrorEditor .remote-caret:hover > div {\n  opacity: 1;\n  transition-delay: 0s;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| RenderedText\n|----------------------------------------------------------------------------*/\n\n:root {\n  /* This is the padding value to fill the gaps between lines containing spans with background color. */\n  --jp-private-code-span-padding: calc(\n    (var(--jp-code-line-height) - 1) * var(--jp-code-font-size) / 2\n  );\n}\n\n.jp-RenderedText {\n  text-align: left;\n  padding-left: var(--jp-code-padding);\n  line-height: var(--jp-code-line-height);\n  font-family: var(--jp-code-font-family);\n}\n\n.jp-RenderedText pre,\n.jp-RenderedJavaScript pre,\n.jp-RenderedHTMLCommon pre {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-code-font-size);\n  border: none;\n  margin: 0px;\n  padding: 0px;\n}\n\n.jp-RenderedText pre a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* console foregrounds and backgrounds */\n.jp-RenderedText pre .ansi-black-fg {\n  color: #3e424d;\n}\n.jp-RenderedText pre .ansi-red-fg {\n  color: #e75c58;\n}\n.jp-RenderedText pre .ansi-green-fg {\n  color: #00a250;\n}\n.jp-RenderedText pre .ansi-yellow-fg {\n  color: #ddb62b;\n}\n.jp-RenderedText pre .ansi-blue-fg {\n  color: #208ffb;\n}\n.jp-RenderedText pre .ansi-magenta-fg {\n  color: #d160c4;\n}\n.jp-RenderedText pre .ansi-cyan-fg {\n  color: #60c6c8;\n}\n.jp-RenderedText pre .ansi-white-fg {\n  color: #c5c1b4;\n}\n\n.jp-RenderedText pre .ansi-black-bg {\n  background-color: #3e424d;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-bg {\n  background-color: #e75c58;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-bg {\n  background-color: #00a250;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-bg {\n  background-color: #ddb62b;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-bg {\n  background-color: #208ffb;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-bg {\n  background-color: #d160c4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-bg {\n  background-color: #60c6c8;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-bg {\n  background-color: #c5c1b4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-black-intense-fg {\n  color: #282c36;\n}\n.jp-RenderedText pre .ansi-red-intense-fg {\n  color: #b22b31;\n}\n.jp-RenderedText pre .ansi-green-intense-fg {\n  color: #007427;\n}\n.jp-RenderedText pre .ansi-yellow-intense-fg {\n  color: #b27d12;\n}\n.jp-RenderedText pre .ansi-blue-intense-fg {\n  color: #0065ca;\n}\n.jp-RenderedText pre .ansi-magenta-intense-fg {\n  color: #a03196;\n}\n.jp-RenderedText pre .ansi-cyan-intense-fg {\n  color: #258f8f;\n}\n.jp-RenderedText pre .ansi-white-intense-fg {\n  color: #a1a6b2;\n}\n\n.jp-RenderedText pre .ansi-black-intense-bg {\n  background-color: #282c36;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-intense-bg {\n  background-color: #b22b31;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-intense-bg {\n  background-color: #007427;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-intense-bg {\n  background-color: #b27d12;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-intense-bg {\n  background-color: #0065ca;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-intense-bg {\n  background-color: #a03196;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-intense-bg {\n  background-color: #258f8f;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-intense-bg {\n  background-color: #a1a6b2;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-default-inverse-fg {\n  color: var(--jp-ui-inverse-font-color0);\n}\n.jp-RenderedText pre .ansi-default-inverse-bg {\n  background-color: var(--jp-inverse-layout-color0);\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-bold {\n  font-weight: bold;\n}\n.jp-RenderedText pre .ansi-underline {\n  text-decoration: underline;\n}\n\n.jp-RenderedText[data-mime-type='application/vnd.jupyter.stderr'] {\n  background: var(--jp-rendermime-error-background);\n  padding-top: var(--jp-code-padding);\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedLatex\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedLatex {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n}\n\n/* Left-justify outputs.*/\n.jp-OutputArea-output.jp-RenderedLatex {\n  padding: var(--jp-code-padding);\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedHTML\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedHTMLCommon {\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-content-font-family);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n  /* Give a bit more R padding on Markdown text to keep line lengths reasonable */\n  padding-right: 20px;\n}\n\n.jp-RenderedHTMLCommon em {\n  font-style: italic;\n}\n\n.jp-RenderedHTMLCommon strong {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon u {\n  text-decoration: underline;\n}\n\n.jp-RenderedHTMLCommon a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* Headings */\n\n.jp-RenderedHTMLCommon h1,\n.jp-RenderedHTMLCommon h2,\n.jp-RenderedHTMLCommon h3,\n.jp-RenderedHTMLCommon h4,\n.jp-RenderedHTMLCommon h5,\n.jp-RenderedHTMLCommon h6 {\n  line-height: var(--jp-content-heading-line-height);\n  font-weight: var(--jp-content-heading-font-weight);\n  font-style: normal;\n  margin: var(--jp-content-heading-margin-top) 0\n    var(--jp-content-heading-margin-bottom) 0;\n}\n\n.jp-RenderedHTMLCommon h1:first-child,\n.jp-RenderedHTMLCommon h2:first-child,\n.jp-RenderedHTMLCommon h3:first-child,\n.jp-RenderedHTMLCommon h4:first-child,\n.jp-RenderedHTMLCommon h5:first-child,\n.jp-RenderedHTMLCommon h6:first-child {\n  margin-top: calc(0.5 * var(--jp-content-heading-margin-top));\n}\n\n.jp-RenderedHTMLCommon h1:last-child,\n.jp-RenderedHTMLCommon h2:last-child,\n.jp-RenderedHTMLCommon h3:last-child,\n.jp-RenderedHTMLCommon h4:last-child,\n.jp-RenderedHTMLCommon h5:last-child,\n.jp-RenderedHTMLCommon h6:last-child {\n  margin-bottom: calc(0.5 * var(--jp-content-heading-margin-bottom));\n}\n\n.jp-RenderedHTMLCommon h1 {\n  font-size: var(--jp-content-font-size5);\n}\n\n.jp-RenderedHTMLCommon h2 {\n  font-size: var(--jp-content-font-size4);\n}\n\n.jp-RenderedHTMLCommon h3 {\n  font-size: var(--jp-content-font-size3);\n}\n\n.jp-RenderedHTMLCommon h4 {\n  font-size: var(--jp-content-font-size2);\n}\n\n.jp-RenderedHTMLCommon h5 {\n  font-size: var(--jp-content-font-size1);\n}\n\n.jp-RenderedHTMLCommon h6 {\n  font-size: var(--jp-content-font-size0);\n}\n\n/* Lists */\n\n.jp-RenderedHTMLCommon ul:not(.list-inline),\n.jp-RenderedHTMLCommon ol:not(.list-inline) {\n  padding-left: 2em;\n}\n\n.jp-RenderedHTMLCommon ul {\n  list-style: disc;\n}\n\n.jp-RenderedHTMLCommon ul ul {\n  list-style: square;\n}\n\n.jp-RenderedHTMLCommon ul ul ul {\n  list-style: circle;\n}\n\n.jp-RenderedHTMLCommon ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol ol {\n  list-style: upper-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol {\n  list-style: lower-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol {\n  list-style: lower-roman;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol,\n.jp-RenderedHTMLCommon ul {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon ul ul,\n.jp-RenderedHTMLCommon ul ol,\n.jp-RenderedHTMLCommon ol ul,\n.jp-RenderedHTMLCommon ol ol {\n  margin-bottom: 0em;\n}\n\n.jp-RenderedHTMLCommon hr {\n  color: var(--jp-border-color2);\n  background-color: var(--jp-border-color1);\n  margin-top: 1em;\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon > pre {\n  margin: 1.5em 2em;\n}\n\n.jp-RenderedHTMLCommon pre,\n.jp-RenderedHTMLCommon code {\n  border: 0;\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  line-height: var(--jp-code-line-height);\n  padding: 0;\n  white-space: pre-wrap;\n}\n\n.jp-RenderedHTMLCommon :not(pre) > code {\n  background-color: var(--jp-layout-color2);\n  padding: 1px 5px;\n}\n\n/* Tables */\n\n.jp-RenderedHTMLCommon table {\n  border-collapse: collapse;\n  border-spacing: 0;\n  border: none;\n  color: var(--jp-ui-font-color1);\n  font-size: 12px;\n  table-layout: fixed;\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.jp-RenderedHTMLCommon thead {\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  vertical-align: bottom;\n}\n\n.jp-RenderedHTMLCommon td,\n.jp-RenderedHTMLCommon th,\n.jp-RenderedHTMLCommon tr {\n  vertical-align: middle;\n  padding: 0.5em 0.5em;\n  line-height: normal;\n  white-space: normal;\n  max-width: none;\n  border: none;\n}\n\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon td,\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon th {\n  max-width: none;\n}\n\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon td,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon th,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon tr {\n  text-align: right;\n}\n\n.jp-RenderedHTMLCommon th {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(odd) {\n  background: var(--jp-layout-color0);\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(even) {\n  background: var(--jp-rendermime-table-row-background);\n}\n\n.jp-RenderedHTMLCommon tbody tr:hover {\n  background: var(--jp-rendermime-table-row-hover-background);\n}\n\n.jp-RenderedHTMLCommon table {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon p {\n  text-align: left;\n  margin: 0px;\n}\n\n.jp-RenderedHTMLCommon p {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon img {\n  -moz-force-broken-image-icon: 1;\n}\n\n/* Restrict to direct children as other images could be nested in other content. */\n.jp-RenderedHTMLCommon > img {\n  display: block;\n  margin-left: 0;\n  margin-right: 0;\n  margin-bottom: 1em;\n}\n\n/* Change color behind transparent images if they need it... */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-light-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-dark-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n/* ...or leave it untouched if they don't */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-dark-background {\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-light-background {\n}\n\n.jp-RenderedHTMLCommon img,\n.jp-RenderedImage img,\n.jp-RenderedHTMLCommon svg,\n.jp-RenderedSVG svg {\n  max-width: 100%;\n  height: auto;\n}\n\n.jp-RenderedHTMLCommon img.jp-mod-unconfined,\n.jp-RenderedImage img.jp-mod-unconfined,\n.jp-RenderedHTMLCommon svg.jp-mod-unconfined,\n.jp-RenderedSVG svg.jp-mod-unconfined {\n  max-width: none;\n}\n\n.jp-RenderedHTMLCommon .alert {\n  padding: var(--jp-notebook-padding);\n  border: var(--jp-border-width) solid transparent;\n  border-radius: var(--jp-border-radius);\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon .alert-info {\n  color: var(--jp-info-color0);\n  background-color: var(--jp-info-color3);\n  border-color: var(--jp-info-color2);\n}\n.jp-RenderedHTMLCommon .alert-info hr {\n  border-color: var(--jp-info-color3);\n}\n.jp-RenderedHTMLCommon .alert-info > p:last-child,\n.jp-RenderedHTMLCommon .alert-info > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-warning {\n  color: var(--jp-warn-color0);\n  background-color: var(--jp-warn-color3);\n  border-color: var(--jp-warn-color2);\n}\n.jp-RenderedHTMLCommon .alert-warning hr {\n  border-color: var(--jp-warn-color3);\n}\n.jp-RenderedHTMLCommon .alert-warning > p:last-child,\n.jp-RenderedHTMLCommon .alert-warning > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-success {\n  color: var(--jp-success-color0);\n  background-color: var(--jp-success-color3);\n  border-color: var(--jp-success-color2);\n}\n.jp-RenderedHTMLCommon .alert-success hr {\n  border-color: var(--jp-success-color3);\n}\n.jp-RenderedHTMLCommon .alert-success > p:last-child,\n.jp-RenderedHTMLCommon .alert-success > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-danger {\n  color: var(--jp-error-color0);\n  background-color: var(--jp-error-color3);\n  border-color: var(--jp-error-color2);\n}\n.jp-RenderedHTMLCommon .alert-danger hr {\n  border-color: var(--jp-error-color3);\n}\n.jp-RenderedHTMLCommon .alert-danger > p:last-child,\n.jp-RenderedHTMLCommon .alert-danger > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon blockquote {\n  margin: 1em 2em;\n  padding: 0 1em;\n  border-left: 5px solid var(--jp-border-color2);\n}\n\na.jp-InternalAnchorLink {\n  visibility: hidden;\n  margin-left: 8px;\n  color: var(--md-blue-800);\n}\n\nh1:hover .jp-InternalAnchorLink,\nh2:hover .jp-InternalAnchorLink,\nh3:hover .jp-InternalAnchorLink,\nh4:hover .jp-InternalAnchorLink,\nh5:hover .jp-InternalAnchorLink,\nh6:hover .jp-InternalAnchorLink {\n  visibility: visible;\n}\n\n.jp-RenderedHTMLCommon kbd {\n  background-color: var(--jp-rendermime-table-row-background);\n  border: 1px solid var(--jp-border-color0);\n  border-bottom-color: var(--jp-border-color2);\n  border-radius: 3px;\n  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n  display: inline-block;\n  font-size: 0.8em;\n  line-height: 1em;\n  padding: 0.2em 0.5em;\n}\n\n/* Most direct children of .jp-RenderedHTMLCommon have a margin-bottom of 1.0.\n * At the bottom of cells this is a bit too much as there is also spacing\n * between cells. Going all the way to 0 gets too tight between markdown and\n * code cells.\n */\n.jp-RenderedHTMLCommon > *:last-child {\n  margin-bottom: 0.5em;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MimeDocument {\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-filebrowser-button-height: 28px;\n  --jp-private-filebrowser-button-width: 48px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser {\n  display: flex;\n  flex-direction: column;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  border-bottom: none;\n  height: auto;\n  margin: var(--jp-toolbar-header-margin);\n  box-shadow: none;\n}\n\n.jp-BreadCrumbs {\n  flex: 0 0 auto;\n  margin: 8px 12px 8px 12px;\n}\n\n.jp-BreadCrumbs-item {\n  margin: 0px 2px;\n  padding: 0px 2px;\n  border-radius: var(--jp-border-radius);\n  cursor: pointer;\n}\n\n.jp-BreadCrumbs-item:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-BreadCrumbs-item:first-child {\n  margin-left: 0px;\n}\n\n.jp-BreadCrumbs-item.jp-mod-dropTarget {\n  background-color: var(--jp-brand-color2);\n  opacity: 0.7;\n}\n\n/*-----------------------------------------------------------------------------\n| Buttons\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  padding: 0px;\n  margin: 8px 12px 0px 12px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  justify-content: flex-start;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-Toolbar-item {\n  flex: 0 0 auto;\n  padding-left: 0px;\n  padding-right: 2px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-ToolbarButtonComponent {\n  width: 40px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent {\n  width: 72px;\n  background: var(--jp-brand-color1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent:focus-visible {\n  background-color: var(--jp-brand-color0);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent\n  .jp-icon3 {\n  fill: white;\n}\n\n/*-----------------------------------------------------------------------------\n| Other styles\n|----------------------------------------------------------------------------*/\n\n.jp-FileDialog.jp-mod-conflict input {\n  color: var(--jp-error-color1);\n}\n\n.jp-FileDialog .jp-new-name-title {\n  margin-top: 12px;\n}\n\n.jp-LastModified-hidden {\n  display: none;\n}\n\n.jp-FileBrowser-filterBox {\n  padding: 0px;\n  flex: 0 0 auto;\n  margin: 8px 12px 0px 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| DirListing\n|----------------------------------------------------------------------------*/\n\n.jp-DirListing {\n  flex: 1 1 auto;\n  display: flex;\n  flex-direction: column;\n  outline: 0;\n}\n\n.jp-DirListing:focus-visible {\n  border: 1px solid var(--jp-brand-color1);\n}\n\n.jp-DirListing-header {\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n  border-top: var(--jp-border-width) solid var(--jp-border-color2);\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  z-index: 2;\n}\n\n.jp-DirListing-headerItem {\n  padding: 4px 12px 2px 12px;\n  font-weight: 500;\n}\n\n.jp-DirListing-headerItem:hover {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-headerItem.jp-id-name {\n  flex: 1 0 84px;\n}\n\n.jp-DirListing-headerItem.jp-id-modified {\n  flex: 0 0 112px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n}\n\n.jp-id-narrow {\n  display: none;\n  flex: 0 0 5px;\n  padding: 4px 4px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n  color: var(--jp-border-color2);\n}\n\n.jp-DirListing-narrow .jp-id-narrow {\n  display: block;\n}\n\n.jp-DirListing-narrow .jp-id-modified,\n.jp-DirListing-narrow .jp-DirListing-itemModified {\n  display: none;\n}\n\n.jp-DirListing-headerItem.jp-mod-selected {\n  font-weight: 600;\n}\n\n/* increase specificity to override bundled default */\n.jp-DirListing-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-DirListing-content mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.jp-DirListing-content .jp-DirListing-item.jp-mod-selected mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n/* Style the directory listing content when a user drops a file to upload */\n.jp-DirListing.jp-mod-native-drop .jp-DirListing-content {\n  outline: 5px dashed rgba(128, 128, 128, 0.5);\n  outline-offset: -10px;\n  cursor: copy;\n}\n\n.jp-DirListing-item {\n  display: flex;\n  flex-direction: row;\n  padding: 4px 12px;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n.jp-DirListing-item[data-is-dot] {\n  opacity: 75%;\n}\n\n.jp-DirListing-item.jp-mod-selected {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.jp-DirListing-item.jp-mod-dropTarget {\n  background: var(--jp-brand-color3);\n}\n\n.jp-DirListing-item:hover:not(.jp-mod-selected) {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-itemIcon {\n  flex: 0 0 20px;\n  margin-right: 4px;\n}\n\n.jp-DirListing-itemText {\n  flex: 1 0 64px;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  user-select: none;\n}\n\n.jp-DirListing-itemModified {\n  flex: 0 0 125px;\n  text-align: right;\n}\n\n.jp-DirListing-editor {\n  flex: 1 0 64px;\n  outline: none;\n  border: none;\n}\n\n.jp-DirListing-item.jp-mod-running .jp-DirListing-itemIcon:before {\n  color: var(--jp-success-color1);\n  content: '\\25CF';\n  font-size: 8px;\n  position: absolute;\n  left: -8px;\n}\n\n.jp-DirListing-item.jp-mod-running.jp-mod-selected\n  .jp-DirListing-itemIcon:before {\n  color: var(--jp-ui-inverse-font-color1);\n}\n\n.jp-DirListing-item.lm-mod-drag-image,\n.jp-DirListing-item.jp-mod-selected.lm-mod-drag-image {\n  font-size: var(--jp-ui-font-size1);\n  padding-left: 4px;\n  margin-left: 4px;\n  width: 160px;\n  background-color: var(--jp-ui-inverse-font-color2);\n  box-shadow: var(--jp-elevation-z2);\n  border-radius: 0px;\n  color: var(--jp-ui-font-color1);\n  transform: translateX(-40%) translateY(-58%);\n}\n\n.jp-DirListing-deadSpace {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-Document {\n  min-width: 120px;\n  min-height: 120px;\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n}\n\n/*-----------------------------------------------------------------------------\n| Main OutputArea\n| OutputArea has a list of Outputs\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea {\n  overflow-y: auto;\n}\n\n.jp-OutputArea-child {\n  display: flex;\n  flex-direction: row;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child {\n  flex-direction: column;\n}\n\n.jp-OutputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-outprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n.jp-OutputArea-output {\n  height: auto;\n  overflow: auto;\n  user-select: text;\n  -moz-user-select: text;\n  -webkit-user-select: text;\n  -ms-user-select: text;\n}\n\n.jp-OutputArea-child .jp-OutputArea-output {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  margin-left: var(--jp-notebook-padding);\n}\n\n/**\n * Isolated output.\n */\n.jp-OutputArea-output.jp-mod-isolated {\n  width: 100%;\n  display: block;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n/* pre */\n\n.jp-OutputArea-output pre {\n  border: none;\n  margin: 0px;\n  padding: 0px;\n  overflow-x: auto;\n  overflow-y: auto;\n  word-break: break-all;\n  word-wrap: break-word;\n  white-space: pre-wrap;\n}\n\n/* tables */\n\n.jp-OutputArea-output.jp-RenderedHTMLCommon table {\n  margin-left: 0;\n  margin-right: 0;\n}\n\n/* description lists */\n\n.jp-OutputArea-output dl,\n.jp-OutputArea-output dt,\n.jp-OutputArea-output dd {\n  display: block;\n}\n\n.jp-OutputArea-output dl {\n  width: 100%;\n  overflow: hidden;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dt {\n  font-weight: bold;\n  float: left;\n  width: 20%;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dd {\n  float: left;\n  width: 80%;\n  padding: 0;\n  margin: 0;\n}\n\n/* Hide the gutter in case of\n *  - nested output areas (e.g. in the case of output widgets)\n *  - mirrored output areas\n */\n.jp-OutputArea .jp-OutputArea .jp-OutputArea-prompt {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| executeResult is added to any Output-result for the display of the object\n| returned by a cell\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  margin-left: 0px;\n  flex: 1 1 auto;\n}\n\n/* Text output with the Out[] prompt needs a top padding to match the\n * alignment of the Out[] prompt itself.\n */\n.jp-OutputArea-executeResult .jp-RenderedText.jp-OutputArea-output {\n  padding-top: var(--jp-code-padding);\n  border-top: var(--jp-border-width) solid transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| The Stdin output\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-stdin {\n  line-height: var(--jp-code-line-height);\n  padding-top: var(--jp-code-padding);\n  display: flex;\n}\n\n.jp-Stdin-prompt {\n  color: var(--jp-content-font-color0);\n  padding-right: var(--jp-code-padding);\n  vertical-align: baseline;\n  flex: 0 0 auto;\n}\n\n.jp-Stdin-input {\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  color: inherit;\n  background-color: inherit;\n  width: 42%;\n  min-width: 200px;\n  /* make sure input baseline aligns with prompt */\n  vertical-align: baseline;\n  /* padding + margin = 0.5em between prompt and cursor */\n  padding: 0em 0.25em;\n  margin: 0em 0.25em;\n  flex: 0 0 70%;\n}\n\n.jp-Stdin-input:focus {\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Output Area View\n|----------------------------------------------------------------------------*/\n\n.jp-LinkedOutputView .jp-OutputArea {\n  height: 100%;\n  display: block;\n}\n\n.jp-LinkedOutputView .jp-OutputArea-output:only-child {\n  height: 100%;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapser {\n  flex: 0 0 var(--jp-cell-collapser-width);\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n  border-radius: var(--jp-border-radius);\n  opacity: 1;\n}\n\n.jp-Collapser-child {\n  display: block;\n  width: 100%;\n  box-sizing: border-box;\n  /* height: 100% doesn't work because the height of its parent is computed from content */\n  position: absolute;\n  top: 0px;\n  bottom: 0px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Header/Footer\n|----------------------------------------------------------------------------*/\n\n/* Hidden by zero height by default */\n.jp-CellHeader,\n.jp-CellFooter {\n  height: 0px;\n  width: 100%;\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Input\n|----------------------------------------------------------------------------*/\n\n/* All input areas */\n.jp-InputArea {\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n}\n\nbody[data-format='mobile'] .jp-InputArea {\n  flex-direction: column;\n}\n\n.jp-InputArea-editor {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  /* This is the non-active, default styling */\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  border-radius: 0px;\n  background: var(--jp-cell-editor-background);\n}\n\nbody[data-format='mobile'] .jp-InputArea-editor {\n  margin-left: var(--jp-notebook-padding);\n}\n\n.jp-InputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-inprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  opacity: var(--jp-cell-prompt-opacity);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-InputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Placeholder {\n  display: flex;\n  flex-direction: row;\n  flex: 1 1 auto;\n}\n\n.jp-Placeholder-prompt {\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content {\n  flex: 1 1 auto;\n  border: none;\n  background: transparent;\n  height: 20px;\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon {\n  width: 32px;\n  height: 16px;\n  border: 1px solid transparent;\n  border-radius: var(--jp-border-radius);\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon:hover {\n  border: 1px solid var(--jp-border-color1);\n  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);\n  background-color: var(--jp-layout-color0);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-cell-scrolling-output-offset: 5px;\n}\n\n/*-----------------------------------------------------------------------------\n| Cell\n|----------------------------------------------------------------------------*/\n\n.jp-Cell {\n  padding: var(--jp-cell-padding);\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Common input/output\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-inputWrapper,\n.jp-Cell-outputWrapper {\n  display: flex;\n  flex-direction: row;\n  padding: 0px;\n  margin: 0px;\n  /* Added to reveal the box-shadow on the input and output collapsers. */\n  overflow: visible;\n}\n\n/* Only input/output areas inside cells */\n.jp-Cell-inputArea,\n.jp-Cell-outputArea {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Collapser\n|----------------------------------------------------------------------------*/\n\n/* Make the output collapser disappear when there is not output, but do so\n * in a manner that leaves it in the layout and preserves its width.\n */\n.jp-Cell.jp-mod-noOutputs .jp-Cell-outputCollapser {\n  border: none !important;\n  background: transparent !important;\n}\n\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputCollapser {\n  min-height: var(--jp-cell-collapser-min-height);\n}\n\n/*-----------------------------------------------------------------------------\n| Output\n|----------------------------------------------------------------------------*/\n\n/* Put a space between input and output when there IS output */\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputWrapper {\n  margin-top: 5px;\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-Cell-outputArea {\n  overflow-y: auto;\n  max-height: 200px;\n  box-shadow: inset 0 0 6px 2px rgba(0, 0, 0, 0.3);\n  margin-left: var(--jp-private-cell-scrolling-output-offset);\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  flex: 0 0\n    calc(\n      var(--jp-cell-prompt-width) -\n        var(--jp-private-cell-scrolling-output-offset)\n    );\n}\n\n/*-----------------------------------------------------------------------------\n| CodeCell\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| MarkdownCell\n|----------------------------------------------------------------------------*/\n\n.jp-MarkdownOutput {\n  flex: 1 1 auto;\n  margin-top: 0;\n  margin-bottom: 0;\n  padding-left: var(--jp-code-padding);\n}\n\n.jp-MarkdownOutput.jp-RenderedHTMLCommon {\n  overflow: auto;\n}\n\n.jp-showHiddenCellsButton {\n  margin-left: calc(var(--jp-cell-prompt-width) + 2 * var(--jp-code-padding));\n  margin-top: var(--jp-code-padding);\n  border: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-border-color3) !important;\n  color: var(--jp-content-font-color0) !important;\n}\n\n.jp-showHiddenCellsButton:hover {\n  background-color: var(--jp-border-color2) !important;\n}\n\n.jp-collapseHeadingButton {\n  display: none;\n}\n\n.jp-MarkdownCell:hover .jp-collapseHeadingButton {\n  display: flex;\n  min-height: var(--jp-cell-collapser-min-height);\n  position: absolute;\n  right: 0;\n  top: 0;\n  bottom: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n\n/*-----------------------------------------------------------------------------\n| Styles\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel-toolbar {\n  padding: 2px;\n}\n\n.jp-Toolbar-item.jp-Notebook-toolbarCellType .jp-select-wrapper.jp-mod-focused {\n  border: none;\n  box-shadow: none;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown select {\n  height: 24px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: 14px;\n  border-radius: 0;\n  display: block;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown span {\n  top: 5px !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-notebook-dragImage-width: 304px;\n  --jp-private-notebook-dragImage-height: 36px;\n  --jp-private-notebook-selected-color: var(--md-blue-400);\n  --jp-private-notebook-active-color: var(--md-green-400);\n}\n\n/*-----------------------------------------------------------------------------\n| Imports\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Notebook\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel {\n  display: block;\n  height: 100%;\n}\n\n.jp-NotebookPanel.jp-Document {\n  min-width: 240px;\n  min-height: 120px;\n}\n\n.jp-Notebook {\n  padding: var(--jp-notebook-padding);\n  outline: none;\n  overflow: auto;\n  background: var(--jp-layout-color0);\n}\n\n.jp-Notebook.jp-mod-scrollPastEnd::after {\n  display: block;\n  content: '';\n  min-height: var(--jp-notebook-scroll-padding);\n}\n\n.jp-MainAreaWidget-ContainStrict .jp-Notebook * {\n  contain: strict;\n}\n\n.jp-Notebook-render * {\n  contain: none !important;\n}\n\n.jp-Notebook .jp-Cell {\n  overflow: visible;\n}\n\n.jp-Notebook .jp-Cell .jp-InputPrompt {\n  cursor: move;\n  float: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook state related styling\n|\n| The notebook and cells each have states, here are the possibilities:\n|\n| - Notebook\n|   - Command\n|   - Edit\n| - Cell\n|   - None\n|   - Active (only one can be active)\n|   - Selected (the cells actions are applied to)\n|   - Multiselected (when multiple selected, the cursor)\n|   - No outputs\n|----------------------------------------------------------------------------*/\n\n/* Command or edit modes */\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-InputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-OutputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n/* cell is active */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser {\n  background: var(--jp-brand-color1);\n}\n\n/* cell is dirty */\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt {\n  color: var(--jp-warn-color1);\n}\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt:before {\n  color: var(--jp-warn-color1);\n  content: '•';\n}\n\n.jp-Notebook .jp-Cell.jp-mod-active.jp-mod-dirty .jp-Collapser {\n  background: var(--jp-warn-color1);\n}\n\n/* collapser is hovered */\n.jp-Notebook .jp-Cell .jp-Collapser:hover {\n  box-shadow: var(--jp-elevation-z2);\n  background: var(--jp-brand-color1);\n  opacity: var(--jp-cell-collapser-not-active-hover-opacity);\n}\n\n/* cell is active and collapser is hovered */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser:hover {\n  background: var(--jp-brand-color0);\n  opacity: 1;\n}\n\n/* Command mode */\n\n.jp-Notebook.jp-mod-commandMode .jp-Cell.jp-mod-selected {\n  background: var(--jp-notebook-multiselected-color);\n}\n\n.jp-Notebook.jp-mod-commandMode\n  .jp-Cell.jp-mod-active.jp-mod-selected:not(.jp-mod-multiSelected) {\n  background: transparent;\n}\n\n/* Edit mode */\n\n.jp-Notebook.jp-mod-editMode .jp-Cell.jp-mod-active .jp-InputArea-editor {\n  border: var(--jp-border-width) solid var(--jp-cell-editor-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-cell-editor-active-background);\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook drag and drop\n|----------------------------------------------------------------------------*/\n\n.jp-Notebook-cell.jp-mod-dropSource {\n  opacity: 0.5;\n}\n\n.jp-Notebook-cell.jp-mod-dropTarget,\n.jp-Notebook.jp-mod-commandMode\n  .jp-Notebook-cell.jp-mod-active.jp-mod-selected.jp-mod-dropTarget {\n  border-top-color: var(--jp-private-notebook-selected-color);\n  border-top-style: solid;\n  border-top-width: 2px;\n}\n\n.jp-dragImage {\n  display: block;\n  flex-direction: row;\n  width: var(--jp-private-notebook-dragImage-width);\n  height: var(--jp-private-notebook-dragImage-height);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background);\n  overflow: visible;\n}\n\n.jp-dragImage-singlePrompt {\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n.jp-dragImage .jp-dragImage-content {\n  flex: 1 1 auto;\n  z-index: 2;\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  line-height: var(--jp-code-line-height);\n  padding: var(--jp-code-padding);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background-color);\n  color: var(--jp-content-font-color3);\n  text-align: left;\n  margin: 4px 4px 4px 0px;\n}\n\n.jp-dragImage .jp-dragImage-prompt {\n  flex: 0 0 auto;\n  min-width: 36px;\n  color: var(--jp-cell-inprompt-font-color);\n  padding: var(--jp-code-padding);\n  padding-left: 12px;\n  font-family: var(--jp-cell-prompt-font-family);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: 1.9;\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n}\n\n.jp-dragImage-multipleBack {\n  z-index: -1;\n  position: absolute;\n  height: 32px;\n  width: 300px;\n  top: 8px;\n  left: 8px;\n  background: var(--jp-layout-color2);\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n/*-----------------------------------------------------------------------------\n| Cell toolbar\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookTools {\n  display: block;\n  min-width: var(--jp-sidebar-min-width);\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n    * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  overflow: auto;\n}\n\n.jp-NotebookTools-tool {\n  padding: 0px 12px 0 12px;\n}\n\n.jp-ActiveCellTool {\n  padding: 12px;\n  background-color: var(--jp-layout-color1);\n  border-top: none !important;\n}\n\n.jp-ActiveCellTool .jp-InputArea-prompt {\n  flex: 0 0 auto;\n  padding-left: 0px;\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor {\n  flex: 1 1 auto;\n  background: var(--jp-cell-editor-background);\n  border-color: var(--jp-cell-editor-border-color);\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor .CodeMirror {\n  background: transparent;\n}\n\n.jp-MetadataEditorTool {\n  flex-direction: column;\n  padding: 12px 0px 12px 0px;\n}\n\n.jp-RankedPanel > :not(:first-child) {\n  margin-top: 12px;\n}\n\n.jp-KeySelector select.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n}\n\n.jp-KeySelector label,\n.jp-MetadataEditorTool label {\n  line-height: 1.4;\n}\n\n.jp-NotebookTools .jp-select-wrapper {\n  margin-top: 4px;\n  margin-bottom: 0px;\n}\n\n.jp-NotebookTools .jp-Collapse {\n  margin-top: 16px;\n}\n\n/*-----------------------------------------------------------------------------\n| Presentation Mode (.jp-mod-presentationMode)\n|----------------------------------------------------------------------------*/\n\n.jp-mod-presentationMode .jp-Notebook {\n  --jp-content-font-size1: var(--jp-content-presentation-font-size1);\n  --jp-code-font-size: var(--jp-code-presentation-font-size);\n}\n\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-InputPrompt,\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-OutputPrompt {\n  flex: 0 0 110px;\n}\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-Placeholder {\n  padding-left: 55px;\n}\n\n.jp-Cell-Placeholder-wrapper {\n  background: #fff;\n  border: 1px solid;\n  border-color: #e5e6e9 #dfe0e4 #d0d1d5;\n  border-radius: 4px;\n  -webkit-border-radius: 4px;\n  margin: 10px 15px;\n}\n\n.jp-Cell-Placeholder-wrapper-inner {\n  padding: 15px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body {\n  background-repeat: repeat;\n  background-size: 50% auto;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  background: #f6f7f8;\n  background-image: -webkit-linear-gradient(\n    left,\n    #f6f7f8 0%,\n    #edeef1 20%,\n    #f6f7f8 40%,\n    #f6f7f8 100%\n  );\n  background-repeat: no-repeat;\n  background-size: 800px 104px;\n  height: 104px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  position: absolute;\n  right: 15px;\n  left: 15px;\n  top: 15px;\n}\n\ndiv.jp-Cell-Placeholder-h1 {\n  top: 20px;\n  height: 20px;\n  left: 15px;\n  width: 150px;\n}\n\ndiv.jp-Cell-Placeholder-h2 {\n  left: 15px;\n  top: 50px;\n  height: 10px;\n  width: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-1,\ndiv.jp-Cell-Placeholder-content-2,\ndiv.jp-Cell-Placeholder-content-3 {\n  left: 15px;\n  right: 15px;\n  height: 10px;\n}\n\ndiv.jp-Cell-Placeholder-content-1 {\n  top: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-2 {\n  top: 120px;\n}\n\ndiv.jp-Cell-Placeholder-content-3 {\n  top: 140px;\n}\n\n</style>\n\n    <style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\nThe following CSS variables define the main, public API for styling JupyterLab.\nThese variables should be used by all plugins wherever possible. In other\nwords, plugins should not define custom colors, sizes, etc unless absolutely\nnecessary. This enables users to change the visual theme of JupyterLab\nby changing these variables.\n\nMany variables appear in an ordered sequence (0,1,2,3). These sequences\nare designed to work well together, so for example, `--jp-border-color1` should\nbe used with `--jp-layout-color1`. The numbers have the following meanings:\n\n* 0: super-primary, reserved for special emphasis\n* 1: primary, most important under normal situations\n* 2: secondary, next most important under normal situations\n* 3: tertiary, next most important under normal situations\n\nThroughout JupyterLab, we are mostly following principles from Google's\nMaterial Design when selecting colors. We are not, however, following\nall of MD as it is not optimized for dense, information rich UIs.\n*/\n\n:root {\n  /* Elevation\n   *\n   * We style box-shadows using Material Design's idea of elevation. These particular numbers are taken from here:\n   *\n   * https://github.com/material-components/material-components-web\n   * https://material-components-web.appspot.com/elevation.html\n   */\n\n  --jp-shadow-base-lightness: 0;\n  --jp-shadow-umbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.2\n  );\n  --jp-shadow-penumbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.14\n  );\n  --jp-shadow-ambient-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.12\n  );\n  --jp-elevation-z0: none;\n  --jp-elevation-z1: 0px 2px 1px -1px var(--jp-shadow-umbra-color),\n    0px 1px 1px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 3px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z2: 0px 3px 1px -2px var(--jp-shadow-umbra-color),\n    0px 2px 2px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 5px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z4: 0px 2px 4px -1px var(--jp-shadow-umbra-color),\n    0px 4px 5px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 10px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z6: 0px 3px 5px -1px var(--jp-shadow-umbra-color),\n    0px 6px 10px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 18px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z8: 0px 5px 5px -3px var(--jp-shadow-umbra-color),\n    0px 8px 10px 1px var(--jp-shadow-penumbra-color),\n    0px 3px 14px 2px var(--jp-shadow-ambient-color);\n  --jp-elevation-z12: 0px 7px 8px -4px var(--jp-shadow-umbra-color),\n    0px 12px 17px 2px var(--jp-shadow-penumbra-color),\n    0px 5px 22px 4px var(--jp-shadow-ambient-color);\n  --jp-elevation-z16: 0px 8px 10px -5px var(--jp-shadow-umbra-color),\n    0px 16px 24px 2px var(--jp-shadow-penumbra-color),\n    0px 6px 30px 5px var(--jp-shadow-ambient-color);\n  --jp-elevation-z20: 0px 10px 13px -6px var(--jp-shadow-umbra-color),\n    0px 20px 31px 3px var(--jp-shadow-penumbra-color),\n    0px 8px 38px 7px var(--jp-shadow-ambient-color);\n  --jp-elevation-z24: 0px 11px 15px -7px var(--jp-shadow-umbra-color),\n    0px 24px 38px 3px var(--jp-shadow-penumbra-color),\n    0px 9px 46px 8px var(--jp-shadow-ambient-color);\n\n  /* Borders\n   *\n   * The following variables, specify the visual styling of borders in JupyterLab.\n   */\n\n  --jp-border-width: 1px;\n  --jp-border-color0: var(--md-grey-400);\n  --jp-border-color1: var(--md-grey-400);\n  --jp-border-color2: var(--md-grey-300);\n  --jp-border-color3: var(--md-grey-200);\n  --jp-border-radius: 2px;\n\n  /* UI Fonts\n   *\n   * The UI font CSS variables are used for the typography all of the JupyterLab\n   * user interface elements that are not directly user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-ui-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-ui-font-scale-factor: 1.2;\n  --jp-ui-font-size0: 0.83333em;\n  --jp-ui-font-size1: 13px; /* Base font size */\n  --jp-ui-font-size2: 1.2em;\n  --jp-ui-font-size3: 1.44em;\n\n  --jp-ui-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica,\n    Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';\n\n  /*\n   * Use these font colors against the corresponding main layout colors.\n   * In a light theme, these go from dark to light.\n   */\n\n  /* Defaults use Material Design specification */\n  --jp-ui-font-color0: rgba(0, 0, 0, 1);\n  --jp-ui-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-ui-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-ui-font-color3: rgba(0, 0, 0, 0.38);\n\n  /*\n   * Use these against the brand/accent/warn/error colors.\n   * These will typically go from light to darker, in both a dark and light theme.\n   */\n\n  --jp-ui-inverse-font-color0: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color1: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color2: rgba(255, 255, 255, 0.7);\n  --jp-ui-inverse-font-color3: rgba(255, 255, 255, 0.5);\n\n  /* Content Fonts\n   *\n   * Content font variables are used for typography of user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-content-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-content-line-height: 1.6;\n  --jp-content-font-scale-factor: 1.2;\n  --jp-content-font-size0: 0.83333em;\n  --jp-content-font-size1: 14px; /* Base font size */\n  --jp-content-font-size2: 1.2em;\n  --jp-content-font-size3: 1.44em;\n  --jp-content-font-size4: 1.728em;\n  --jp-content-font-size5: 2.0736em;\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-content-presentation-font-size1: 17px;\n\n  --jp-content-heading-line-height: 1;\n  --jp-content-heading-margin-top: 1.2em;\n  --jp-content-heading-margin-bottom: 0.8em;\n  --jp-content-heading-font-weight: 500;\n\n  /* Defaults use Material Design specification */\n  --jp-content-font-color0: rgba(0, 0, 0, 1);\n  --jp-content-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-content-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-content-font-color3: rgba(0, 0, 0, 0.38);\n\n  --jp-content-link-color: var(--md-blue-700);\n\n  --jp-content-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',\n    Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',\n    'Segoe UI Symbol';\n\n  /*\n   * Code Fonts\n   *\n   * Code font variables are used for typography of code and other monospaces content.\n   */\n\n  --jp-code-font-size: 13px;\n  --jp-code-line-height: 1.3077; /* 17px for 13px base */\n  --jp-code-padding: 5px; /* 5px for 13px base, codemirror highlighting needs integer px value */\n  --jp-code-font-family-default: Menlo, Consolas, 'DejaVu Sans Mono', monospace;\n  --jp-code-font-family: var(--jp-code-font-family-default);\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-code-presentation-font-size: 16px;\n\n  /* may need to tweak cursor width if you change font size */\n  --jp-code-cursor-width0: 1.4px;\n  --jp-code-cursor-width1: 2px;\n  --jp-code-cursor-width2: 4px;\n\n  /* Layout\n   *\n   * The following are the main layout colors use in JupyterLab. In a light\n   * theme these would go from light to dark.\n   */\n\n  --jp-layout-color0: white;\n  --jp-layout-color1: white;\n  --jp-layout-color2: var(--md-grey-200);\n  --jp-layout-color3: var(--md-grey-400);\n  --jp-layout-color4: var(--md-grey-600);\n\n  /* Inverse Layout\n   *\n   * The following are the inverse layout colors use in JupyterLab. In a light\n   * theme these would go from dark to light.\n   */\n\n  --jp-inverse-layout-color0: #111111;\n  --jp-inverse-layout-color1: var(--md-grey-900);\n  --jp-inverse-layout-color2: var(--md-grey-800);\n  --jp-inverse-layout-color3: var(--md-grey-700);\n  --jp-inverse-layout-color4: var(--md-grey-600);\n\n  /* Brand/accent */\n\n  --jp-brand-color0: var(--md-blue-900);\n  --jp-brand-color1: var(--md-blue-700);\n  --jp-brand-color2: var(--md-blue-300);\n  --jp-brand-color3: var(--md-blue-100);\n  --jp-brand-color4: var(--md-blue-50);\n\n  --jp-accent-color0: var(--md-green-900);\n  --jp-accent-color1: var(--md-green-700);\n  --jp-accent-color2: var(--md-green-300);\n  --jp-accent-color3: var(--md-green-100);\n\n  /* State colors (warn, error, success, info) */\n\n  --jp-warn-color0: var(--md-orange-900);\n  --jp-warn-color1: var(--md-orange-700);\n  --jp-warn-color2: var(--md-orange-300);\n  --jp-warn-color3: var(--md-orange-100);\n\n  --jp-error-color0: var(--md-red-900);\n  --jp-error-color1: var(--md-red-700);\n  --jp-error-color2: var(--md-red-300);\n  --jp-error-color3: var(--md-red-100);\n\n  --jp-success-color0: var(--md-green-900);\n  --jp-success-color1: var(--md-green-700);\n  --jp-success-color2: var(--md-green-300);\n  --jp-success-color3: var(--md-green-100);\n\n  --jp-info-color0: var(--md-cyan-900);\n  --jp-info-color1: var(--md-cyan-700);\n  --jp-info-color2: var(--md-cyan-300);\n  --jp-info-color3: var(--md-cyan-100);\n\n  /* Cell specific styles */\n\n  --jp-cell-padding: 5px;\n\n  --jp-cell-collapser-width: 8px;\n  --jp-cell-collapser-min-height: 20px;\n  --jp-cell-collapser-not-active-hover-opacity: 0.6;\n\n  --jp-cell-editor-background: var(--md-grey-100);\n  --jp-cell-editor-border-color: var(--md-grey-300);\n  --jp-cell-editor-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-cell-editor-active-background: var(--jp-layout-color0);\n  --jp-cell-editor-active-border-color: var(--jp-brand-color1);\n\n  --jp-cell-prompt-width: 64px;\n  --jp-cell-prompt-font-family: var(--jp-code-font-family-default);\n  --jp-cell-prompt-letter-spacing: 0px;\n  --jp-cell-prompt-opacity: 1;\n  --jp-cell-prompt-not-active-opacity: 0.5;\n  --jp-cell-prompt-not-active-font-color: var(--md-grey-700);\n  /* A custom blend of MD grey and blue 600\n   * See https://meyerweb.com/eric/tools/color-blend/#546E7A:1E88E5:5:hex */\n  --jp-cell-inprompt-font-color: #307fc1;\n  /* A custom blend of MD grey and orange 600\n   * https://meyerweb.com/eric/tools/color-blend/#546E7A:F4511E:5:hex */\n  --jp-cell-outprompt-font-color: #bf5b3d;\n\n  /* Notebook specific styles */\n\n  --jp-notebook-padding: 10px;\n  --jp-notebook-select-background: var(--jp-layout-color1);\n  --jp-notebook-multiselected-color: var(--md-blue-50);\n\n  /* The scroll padding is calculated to fill enough space at the bottom of the\n  notebook to show one single-line cell (with appropriate padding) at the top\n  when the notebook is scrolled all the way to the bottom. We also subtract one\n  pixel so that no scrollbar appears if we have just one single-line cell in the\n  notebook. This padding is to enable a 'scroll past end' feature in a notebook.\n  */\n  --jp-notebook-scroll-padding: calc(\n    100% - var(--jp-code-font-size) * var(--jp-code-line-height) -\n      var(--jp-code-padding) - var(--jp-cell-padding) - 1px\n  );\n\n  /* Rendermime styles */\n\n  --jp-rendermime-error-background: #fdd;\n  --jp-rendermime-table-row-background: var(--md-grey-100);\n  --jp-rendermime-table-row-hover-background: var(--md-light-blue-50);\n\n  /* Dialog specific styles */\n\n  --jp-dialog-background: rgba(0, 0, 0, 0.25);\n\n  /* Console specific styles */\n\n  --jp-console-padding: 10px;\n\n  /* Toolbar specific styles */\n\n  --jp-toolbar-border-color: var(--jp-border-color1);\n  --jp-toolbar-micro-height: 8px;\n  --jp-toolbar-background: var(--jp-layout-color1);\n  --jp-toolbar-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.24);\n  --jp-toolbar-header-margin: 4px 4px 0px 4px;\n  --jp-toolbar-active-background: var(--md-grey-300);\n\n  /* Statusbar specific styles */\n\n  --jp-statusbar-height: 24px;\n\n  /* Input field styles */\n\n  --jp-input-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-input-active-background: var(--jp-layout-color1);\n  --jp-input-hover-background: var(--jp-layout-color1);\n  --jp-input-background: var(--md-grey-100);\n  --jp-input-border-color: var(--jp-border-color1);\n  --jp-input-active-border-color: var(--jp-brand-color1);\n  --jp-input-active-box-shadow-color: rgba(19, 124, 189, 0.3);\n\n  /* General editor styles */\n\n  --jp-editor-selected-background: #d9d9d9;\n  --jp-editor-selected-focused-background: #d7d4f0;\n  --jp-editor-cursor-color: var(--jp-ui-font-color0);\n\n  /* Code mirror specific styles */\n\n  --jp-mirror-editor-keyword-color: #008000;\n  --jp-mirror-editor-atom-color: #88f;\n  --jp-mirror-editor-number-color: #080;\n  --jp-mirror-editor-def-color: #00f;\n  --jp-mirror-editor-variable-color: var(--md-grey-900);\n  --jp-mirror-editor-variable-2-color: #05a;\n  --jp-mirror-editor-variable-3-color: #085;\n  --jp-mirror-editor-punctuation-color: #05a;\n  --jp-mirror-editor-property-color: #05a;\n  --jp-mirror-editor-operator-color: #aa22ff;\n  --jp-mirror-editor-comment-color: #408080;\n  --jp-mirror-editor-string-color: #ba2121;\n  --jp-mirror-editor-string-2-color: #708;\n  --jp-mirror-editor-meta-color: #aa22ff;\n  --jp-mirror-editor-qualifier-color: #555;\n  --jp-mirror-editor-builtin-color: #008000;\n  --jp-mirror-editor-bracket-color: #997;\n  --jp-mirror-editor-tag-color: #170;\n  --jp-mirror-editor-attribute-color: #00c;\n  --jp-mirror-editor-header-color: blue;\n  --jp-mirror-editor-quote-color: #090;\n  --jp-mirror-editor-link-color: #00c;\n  --jp-mirror-editor-error-color: #f00;\n  --jp-mirror-editor-hr-color: #999;\n\n  /* Vega extension styles */\n\n  --jp-vega-background: white;\n\n  /* Sidebar-related styles */\n\n  --jp-sidebar-min-width: 250px;\n\n  /* Search-related styles */\n\n  --jp-search-toggle-off-opacity: 0.5;\n  --jp-search-toggle-hover-opacity: 0.8;\n  --jp-search-toggle-on-opacity: 1;\n  --jp-search-selected-match-background-color: rgb(245, 200, 0);\n  --jp-search-selected-match-color: black;\n  --jp-search-unselected-match-background-color: var(\n    --jp-inverse-layout-color0\n  );\n  --jp-search-unselected-match-color: var(--jp-ui-inverse-font-color0);\n\n  /* Icon colors that work well with light or dark backgrounds */\n  --jp-icon-contrast-color0: var(--md-purple-600);\n  --jp-icon-contrast-color1: var(--md-green-600);\n  --jp-icon-contrast-color2: var(--md-pink-600);\n  --jp-icon-contrast-color3: var(--md-blue-600);\n}\n</style>\n\n<style type=\"text/css\">\n/* Force rendering true colors when outputing to pdf */\n* {\n  -webkit-print-color-adjust: exact;\n}\n\n/* Misc */\na.anchor-link {\n  display: none;\n}\n\n.highlight  {\n  margin: 0.4em;\n}\n\n/* Input area styling */\n.jp-InputArea {\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  overflow: hidden;\n}\n\n.CodeMirror pre {\n  margin: 0;\n  padding: 0;\n}\n\n/* Using table instead of flexbox so that we can use break-inside property */\n/* CSS rules under this comment should not be required anymore after we move to the JupyterLab 4.0 CSS */\n\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  min-width: calc(\n    var(--jp-cell-prompt-width) - var(--jp-private-cell-scrolling-output-offset)\n  );\n}\n\n.jp-OutputArea-child {\n  display: table;\n  width: 100%;\n}\n\n.jp-OutputPrompt {\n  display: table-cell;\n  vertical-align: top;\n  min-width: var(--jp-cell-prompt-width);\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  display: table-row;\n}\n\n.jp-OutputArea-output {\n  display: table-cell;\n  width: 100%;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  display: table-row;\n}\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  width: 100%;\n}\n\n/* Hiding the collapser by default */\n.jp-Collapser {\n  display: none;\n}\n\n@media print {\n  .jp-Cell-inputWrapper,\n  .jp-Cell-outputWrapper {\n    display: block;\n  }\n\n  .jp-OutputArea-child {\n    break-inside: avoid-page;\n  }\n}\n</style>\n\n<!-- Load mathjax -->\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/latest.js?config=TeX-AMS_CHTML-full,Safe\"> </script>\n    <!-- MathJax configuration -->\n    <script type=\"text/x-mathjax-config\">\n    init_mathjax = function() {\n        if (window.MathJax) {\n        // MathJax loaded\n            MathJax.Hub.Config({\n                TeX: {\n                    equationNumbers: {\n                    autoNumber: \"AMS\",\n                    useLabelIds: true\n                    }\n                },\n                tex2jax: {\n                    inlineMath: [ ['$','$'], [\"\\\\(\",\"\\\\)\"] ],\n                    displayMath: [ ['$$','$$'], [\"\\\\[\",\"\\\\]\"] ],\n                    processEscapes: true,\n                    processEnvironments: true\n                },\n                displayAlign: 'center',\n                CommonHTML: {\n                    linebreaks: {\n                    automatic: true\n                    }\n                }\n            });\n\n            MathJax.Hub.Queue([\"Typeset\", MathJax.Hub]);\n        }\n    }\n    init_mathjax();\n    </script>\n    <!-- End of mathjax configuration --></head>\n<body class=\"jp-Notebook\" data-jp-theme-light=\"true\" data-jp-theme-name=\"JupyterLab Light\">\n<div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[1]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Sampler.Lazy</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">Lazy</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Inference.Lazy.MH</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">Lazy</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Inference.Lazy.WIS</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">Lazy</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Sampler.Strict</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">Strict</span><span class=\"w\"></span>\n\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Class</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Data.Text</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">T</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Numeric.Log</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Arrow</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">first</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"nf\">second</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Statistics.Distribution</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Statistics.Distribution.Poisson</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">S</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Enumerator</span><span class=\"w\"></span>\n\n<span class=\"kt\">:</span><span class=\"n\">l</span><span class=\"w\"> </span><span class=\"o\">../</span><span class=\"n\">plotting</span><span class=\"o\">.</span><span class=\"n\">hs</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Lazy-Sampling\">Lazy Sampling<a class=\"anchor-link\" href=\"#Lazy-Sampling\">&#182;</a></h1><p>The sampler defined in <code>Control.Monad.Bayes.Sampler.Strict</code> fares poorly with infinite data structures. For example, <code>finiteList</code> defined below is a distribution over a small finite set, but because it is defined as the marginal of an infinite list, running it with a strict sampling monad will not terminate.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[2]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">finiteList</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Double</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">finiteList</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">infiniteList</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sequence</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">repeat</span><span class=\"w\"> </span><span class=\"n\">random</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">take</span><span class=\"w\"> </span><span class=\"mi\">3</span><span class=\"w\"> </span><span class=\"n\">infiniteList</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[3]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- Code below will not terminate:</span><span class=\"w\"></span>\n<span class=\"c1\">-- Strict.sampler finiteList</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>One solution is to use a streaming library, such as <code>pipes</code>, and indeed this proves useful in many situations. But another is to define a lazy sampler, which is the approach taken by <a href=\"https://lazyppl.bitbucket.io/\">LazyPPL</a>.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[4]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kt\">Lazy</span><span class=\"o\">.</span><span class=\"n\">sampler</span><span class=\"w\"> </span><span class=\"n\">finiteList</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[0.8503508027827793,0.21861861054454101,0.975152268854938]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p><code>Control.Monad.Bayes.Sampler.Lazy</code> is simply a port of LazyPPL, with some refactoring. In particular, what LazyPPL calls the <code>Prob</code> monad, we now call <code>Sampler</code>, and <code>Meas</code> is built modularly as <code>Weighted Sampler</code>.</p>\n<p>LazyPPL also comes with a number of inference algorithms that make special use of the sampler's laziness, including weighted importance sampling and Metropolis-Hastings. Monad-Bayes has these also, as shown below:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[5]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadMeasure</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"kt\">Bool</span><span class=\"w\"></span>\n<span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">  </span><span class=\"c1\">-- Prior belief: it is Sunday with prob. 1/7</span><span class=\"w\"></span>\n<span class=\"w\">  </span><span class=\"n\">sunday</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">bernoulli</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"mi\">1</span><span class=\"o\">/</span><span class=\"mi\">7</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">  </span><span class=\"c1\">-- I know the rates of buses on the different days:</span><span class=\"w\"></span>\n<span class=\"w\">  </span><span class=\"kr\">let</span><span class=\"w\"> </span><span class=\"n\">rate</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">if</span><span class=\"w\"> </span><span class=\"n\">sunday</span><span class=\"w\"> </span><span class=\"kr\">then</span><span class=\"w\"> </span><span class=\"mi\">3</span><span class=\"w\"> </span><span class=\"kr\">else</span><span class=\"w\"> </span><span class=\"mi\">10</span><span class=\"w\"> </span>\n<span class=\"w\">  </span><span class=\"c1\">-- observe 4 buses</span><span class=\"w\"></span>\n<span class=\"w\">  </span><span class=\"n\">factor</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">Exp</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">logProbability</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">S</span><span class=\"o\">.</span><span class=\"n\">poisson</span><span class=\"w\"> </span><span class=\"n\">rate</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"mi\">4</span><span class=\"w\"></span>\n<span class=\"w\">  </span><span class=\"c1\">-- score $ poissonPdf rate 4</span><span class=\"w\"></span>\n<span class=\"w\">  </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"n\">sunday</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[6]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">xws</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"kt\">Lazy</span><span class=\"o\">.</span><span class=\"n\">lwis</span><span class=\"w\"> </span><span class=\"mi\">10000</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[7]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">first</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">show</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">toEmpirical</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">take</span><span class=\"w\"> </span><span class=\"mi\">10000</span><span class=\"w\"> </span><span class=\"n\">xws</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[8]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">xws</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"kt\">Lazy</span><span class=\"o\">.</span><span class=\"n\">mh</span><span class=\"w\"> </span><span class=\"mf\">0.5</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"></span>\n\n<span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">first</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">show</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">toEmpirical</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">take</span><span class=\"w\"> </span><span class=\"mi\">10000</span><span class=\"w\"> </span><span class=\"n\">xws</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n</body>\n\n\n\n\n\n\n\n</html>\n"
  },
  {
    "path": "docs/docs/notebooks/Lenses.html",
    "content": "<!DOCTYPE html>\n<html>\n<head><meta charset=\"utf-8\" />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n<title>Lenses</title><script src=\"https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js\"></script>\n\n\n\n\n<style type=\"text/css\">\n    pre { line-height: 125%; }\ntd.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\nspan.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\ntd.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\nspan.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.highlight .hll { background-color: var(--jp-cell-editor-active-background) }\n.highlight { background: var(--jp-cell-editor-background); color: var(--jp-mirror-editor-variable-color) }\n.highlight .c { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment */\n.highlight .err { color: var(--jp-mirror-editor-error-color) } /* Error */\n.highlight .k { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword */\n.highlight .o { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator */\n.highlight .p { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation */\n.highlight .ch { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Hashbang */\n.highlight .cm { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Multiline */\n.highlight .cp { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Preproc */\n.highlight .cpf { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.PreprocFile */\n.highlight .c1 { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Single */\n.highlight .cs { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Special */\n.highlight .kc { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Constant */\n.highlight .kd { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Declaration */\n.highlight .kn { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Namespace */\n.highlight .kp { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Pseudo */\n.highlight .kr { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Reserved */\n.highlight .kt { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Type */\n.highlight .m { color: var(--jp-mirror-editor-number-color) } /* Literal.Number */\n.highlight .s { color: var(--jp-mirror-editor-string-color) } /* Literal.String */\n.highlight .ow { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator.Word */\n.highlight .pm { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation.Marker */\n.highlight .w { color: var(--jp-mirror-editor-variable-color) } /* Text.Whitespace */\n.highlight .mb { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Bin */\n.highlight .mf { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Float */\n.highlight .mh { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Hex */\n.highlight .mi { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer */\n.highlight .mo { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Oct */\n.highlight .sa { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Affix */\n.highlight .sb { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Backtick */\n.highlight .sc { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Char */\n.highlight .dl { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Delimiter */\n.highlight .sd { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Doc */\n.highlight .s2 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Double */\n.highlight .se { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Escape */\n.highlight .sh { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Heredoc */\n.highlight .si { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Interpol */\n.highlight .sx { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Other */\n.highlight .sr { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Regex */\n.highlight .s1 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Single */\n.highlight .ss { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Symbol */\n.highlight .il { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer.Long */\n  </style>\n\n\n\n<style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\n * Mozilla scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n[data-jp-theme-scrollbars='true'] {\n  scrollbar-color: rgb(var(--jp-scrollbar-thumb-color))\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar. These selectors\n * will match lower in the tree, and so will override the above */\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n  scrollbar-width: thin;\n}\n\n/*\n * Webkit scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-corner {\n  background: var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-thumb {\n  background: rgb(var(--jp-scrollbar-thumb-color));\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-right: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-bottom: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar */\n\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-corner,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-corner {\n  background-color: transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-thumb,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid transparent;\n  border-right: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid transparent;\n  border-bottom: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny::-webkit-scrollbar,\n.jp-scrollbar-tiny::-webkit-scrollbar-corner {\n  background-color: transparent;\n  height: 4px;\n  width: 4px;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:horizontal {\n  border-left: 0px solid transparent;\n  border-right: 0px solid transparent;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:vertical {\n  border-top: 0px solid transparent;\n  border-bottom: 0px solid transparent;\n}\n\n/*\n * Phosphor\n */\n\n.lm-ScrollBar[data-orientation='horizontal'] {\n  min-height: 16px;\n  max-height: 16px;\n  min-width: 45px;\n  border-top: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] {\n  min-width: 16px;\n  max-width: 16px;\n  min-height: 45px;\n  border-left: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar-button {\n  background-color: #f0f0f0;\n  background-position: center center;\n  min-height: 15px;\n  max-height: 15px;\n  min-width: 15px;\n  max-width: 15px;\n}\n\n.lm-ScrollBar-button:hover {\n  background-color: #dadada;\n}\n\n.lm-ScrollBar-button.lm-mod-active {\n  background-color: #cdcdcd;\n}\n\n.lm-ScrollBar-track {\n  background: #f0f0f0;\n}\n\n.lm-ScrollBar-thumb {\n  background: #cdcdcd;\n}\n\n.lm-ScrollBar-thumb:hover {\n  background: #bababa;\n}\n\n.lm-ScrollBar-thumb.lm-mod-active {\n  background: #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal'] .lm-ScrollBar-thumb {\n  height: 100%;\n  min-width: 15px;\n  border-left: 1px solid #a0a0a0;\n  border-right: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] .lm-ScrollBar-thumb {\n  width: 100%;\n  min-height: 15px;\n  border-top: 1px solid #a0a0a0;\n  border-bottom: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-left);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-right);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-up);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-down);\n  background-size: 17px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Widget, /* </DEPRECATED> */\n.lm-Widget {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  cursor: default;\n}\n\n\n/* <DEPRECATED> */ .p-Widget.p-mod-hidden, /* </DEPRECATED> */\n.lm-Widget.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-CommandPalette, /* </DEPRECATED> */\n.lm-CommandPalette {\n  display: flex;\n  flex-direction: column;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-search, /* </DEPRECATED> */\n.lm-CommandPalette-search {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-content, /* </DEPRECATED> */\n.lm-CommandPalette-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  min-height: 0;\n  overflow: auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-header, /* </DEPRECATED> */\n.lm-CommandPalette-header {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-item, /* </DEPRECATED> */\n.lm-CommandPalette-item {\n  display: flex;\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemIcon, /* </DEPRECATED> */\n.lm-CommandPalette-itemIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemContent, /* </DEPRECATED> */\n.lm-CommandPalette-itemContent {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemShortcut, /* </DEPRECATED> */\n.lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemLabel, /* </DEPRECATED> */\n.lm-CommandPalette-itemLabel {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.lm-close-icon {\n\tborder:1px solid transparent;\n  background-color: transparent;\n  position: absolute;\n\tz-index:1;\n\tright:3%;\n\ttop: 0;\n\tbottom: 0;\n\tmargin: auto;\n\tpadding: 7px 0;\n\tdisplay: none;\n\tvertical-align: middle;\n  outline: 0;\n  cursor: pointer;\n}\n.lm-close-icon:after {\n\tcontent: \"X\";\n\tdisplay: block;\n\twidth: 15px;\n\theight: 15px;\n\ttext-align: center;\n\tcolor:#000;\n\tfont-weight: normal;\n\tfont-size: 12px;\n\tcursor: pointer;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-DockPanel, /* </DEPRECATED> */\n.lm-DockPanel {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-widget, /* </DEPRECATED> */\n.lm-DockPanel-widget {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-tabBar, /* </DEPRECATED> */\n.lm-DockPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle, /* </DEPRECATED> */\n.lm-DockPanel-handle {\n  z-index: 2;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle:after, /* </DEPRECATED> */\n.lm-DockPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal'] {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical'] {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal']:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical']:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay, /* </DEPRECATED> */\n.lm-DockPanel-overlay {\n  z-index: 3;\n  box-sizing: border-box;\n  pointer-events: none;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-overlay.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Menu, /* </DEPRECATED> */\n.lm-Menu {\n  z-index: 10000;\n  position: absolute;\n  white-space: nowrap;\n  overflow-x: hidden;\n  overflow-y: auto;\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-content, /* </DEPRECATED> */\n.lm-Menu-content {\n  margin: 0;\n  padding: 0;\n  display: table;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-item, /* </DEPRECATED> */\n.lm-Menu-item {\n  display: table-row;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-item.p-mod-hidden,\n.p-Menu-item.p-mod-collapsed,\n/* </DEPRECATED> */\n.lm-Menu-item.lm-mod-hidden,\n.lm-Menu-item.lm-mod-collapsed {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-itemIcon,\n.p-Menu-itemSubmenuIcon,\n/* </DEPRECATED> */\n.lm-Menu-itemIcon,\n.lm-Menu-itemSubmenuIcon {\n  display: table-cell;\n  text-align: center;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemLabel, /* </DEPRECATED> */\n.lm-Menu-itemLabel {\n  display: table-cell;\n  text-align: left;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemShortcut, /* </DEPRECATED> */\n.lm-Menu-itemShortcut {\n  display: table-cell;\n  text-align: right;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-MenuBar, /* </DEPRECATED> */\n.lm-MenuBar {\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-MenuBar-content, /* </DEPRECATED> */\n.lm-MenuBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex-direction: row;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p--MenuBar-item, /* </DEPRECATED> */\n.lm-MenuBar-item {\n  box-sizing: border-box;\n}\n\n\n/* <DEPRECATED> */\n.p-MenuBar-itemIcon,\n.p-MenuBar-itemLabel,\n/* </DEPRECATED> */\n.lm-MenuBar-itemIcon,\n.lm-MenuBar-itemLabel {\n  display: inline-block;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-ScrollBar, /* </DEPRECATED> */\n.lm-ScrollBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='horizontal'] {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='vertical'] {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-button, /* </DEPRECATED> */\n.lm-ScrollBar-button {\n  box-sizing: border-box;\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-track, /* </DEPRECATED> */\n.lm-ScrollBar-track {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  flex: 1 1 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-thumb, /* </DEPRECATED> */\n.lm-ScrollBar-thumb {\n  box-sizing: border-box;\n  position: absolute;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-SplitPanel-child, /* </DEPRECATED> */\n.lm-SplitPanel-child {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle, /* </DEPRECATED> */\n.lm-SplitPanel-handle {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-SplitPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle:after, /* </DEPRECATED> */\n.lm-SplitPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabBar, /* </DEPRECATED> */\n.lm-TabBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='horizontal'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] {\n  flex-direction: row;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='vertical'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] {\n  flex-direction: column;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-content, /* </DEPRECATED> */\n.lm-TabBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex: 1 1 auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='horizontal'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] > .lm-TabBar-content {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='vertical'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] > .lm-TabBar-content {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar-tab {\n  display: flex;\n  flex-direction: row;\n  box-sizing: border-box;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar-tabIcon,\n.p-TabBar-tabCloseIcon,\n/* </DEPRECATED> */\n.lm-TabBar-tabIcon,\n.lm-TabBar-tabCloseIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tabLabel, /* </DEPRECATED> */\n.lm-TabBar-tabLabel {\n  flex: 1 1 auto;\n  overflow: hidden;\n  white-space: nowrap;\n}\n\n\n.lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab.p-mod-hidden, /* </DEPRECATED> */\n.lm-TabBar-tab.lm-mod-hidden {\n  display: none !important;\n}\n\n\n.lm-TabBar-addButton.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar.p-mod-dragging .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab {\n  position: relative;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='horizontal'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='horizontal'] .lm-TabBar-tab {\n  left: 0;\n  transition: left 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='vertical'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='vertical'] .lm-TabBar-tab {\n  top: 0;\n  transition: top 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging .p-TabBar-tab.p-mod-dragging,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab.lm-mod-dragging {\n  transition: none;\n}\n\n.lm-TabBar-tabLabel .lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n  background: inherit;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabPanel-tabBar, /* </DEPRECATED> */\n.lm-TabPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-TabPanel-stackedPanel, /* </DEPRECATED> */\n.lm-TabPanel-stackedPanel {\n  z-index: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n@charset \"UTF-8\";\nhtml{\n  -webkit-box-sizing:border-box;\n          box-sizing:border-box; }\n\n*,\n*::before,\n*::after{\n  -webkit-box-sizing:inherit;\n          box-sizing:inherit; }\n\nbody{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none;\n  color:#182026;\n  font-family:-apple-system, \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Open Sans\", \"Helvetica Neue\", \"Icons16\", sans-serif; }\n\np{\n  margin-bottom:10px;\n  margin-top:0; }\n\nsmall{\n  font-size:12px; }\n\nstrong{\n  font-weight:600; }\n\n::-moz-selection{\n  background:rgba(125, 188, 255, 0.6); }\n\n::selection{\n  background:rgba(125, 188, 255, 0.6); }\n.bp3-heading{\n  color:#182026;\n  font-weight:600;\n  margin:0 0 10px;\n  padding:0; }\n  .bp3-dark .bp3-heading{\n    color:#f5f8fa; }\n\nh1.bp3-heading, .bp3-running-text h1{\n  font-size:36px;\n  line-height:40px; }\n\nh2.bp3-heading, .bp3-running-text h2{\n  font-size:28px;\n  line-height:32px; }\n\nh3.bp3-heading, .bp3-running-text h3{\n  font-size:22px;\n  line-height:25px; }\n\nh4.bp3-heading, .bp3-running-text h4{\n  font-size:18px;\n  line-height:21px; }\n\nh5.bp3-heading, .bp3-running-text h5{\n  font-size:16px;\n  line-height:19px; }\n\nh6.bp3-heading, .bp3-running-text h6{\n  font-size:14px;\n  line-height:16px; }\n.bp3-ui-text{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none; }\n\n.bp3-monospace-text{\n  font-family:monospace;\n  text-transform:none; }\n\n.bp3-text-muted{\n  color:#5c7080; }\n  .bp3-dark .bp3-text-muted{\n    color:#a7b6c2; }\n\n.bp3-text-disabled{\n  color:rgba(92, 112, 128, 0.6); }\n  .bp3-dark .bp3-text-disabled{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-text-overflow-ellipsis{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal; }\n.bp3-running-text{\n  font-size:14px;\n  line-height:1.5; }\n  .bp3-running-text h1{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h1{\n      color:#f5f8fa; }\n  .bp3-running-text h2{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h2{\n      color:#f5f8fa; }\n  .bp3-running-text h3{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h3{\n      color:#f5f8fa; }\n  .bp3-running-text h4{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h4{\n      color:#f5f8fa; }\n  .bp3-running-text h5{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h5{\n      color:#f5f8fa; }\n  .bp3-running-text h6{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h6{\n      color:#f5f8fa; }\n  .bp3-running-text hr{\n    border:none;\n    border-bottom:1px solid rgba(16, 22, 26, 0.15);\n    margin:20px 0; }\n    .bp3-dark .bp3-running-text hr{\n      border-color:rgba(255, 255, 255, 0.15); }\n  .bp3-running-text p{\n    margin:0 0 10px;\n    padding:0; }\n\n.bp3-text-large{\n  font-size:16px; }\n\n.bp3-text-small{\n  font-size:12px; }\na{\n  color:#106ba3;\n  text-decoration:none; }\n  a:hover{\n    color:#106ba3;\n    cursor:pointer;\n    text-decoration:underline; }\n  a .bp3-icon, a .bp3-icon-standard, a .bp3-icon-large{\n    color:inherit; }\n  a code,\n  .bp3-dark a code{\n    color:inherit; }\n  .bp3-dark a,\n  .bp3-dark a:hover{\n    color:#48aff0; }\n    .bp3-dark a .bp3-icon, .bp3-dark a .bp3-icon-standard, .bp3-dark a .bp3-icon-large,\n    .bp3-dark a:hover .bp3-icon,\n    .bp3-dark a:hover .bp3-icon-standard,\n    .bp3-dark a:hover .bp3-icon-large{\n      color:inherit; }\n.bp3-running-text code, .bp3-code{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  font-size:smaller;\n  padding:2px 5px; }\n  .bp3-dark .bp3-running-text code, .bp3-running-text .bp3-dark code, .bp3-dark .bp3-code{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n  .bp3-running-text a > code, a > .bp3-code{\n    color:#137cbd; }\n    .bp3-dark .bp3-running-text a > code, .bp3-running-text .bp3-dark a > code, .bp3-dark a > .bp3-code{\n      color:inherit; }\n\n.bp3-running-text pre, .bp3-code-block{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n  color:#182026;\n  display:block;\n  font-size:13px;\n  line-height:1.4;\n  margin:10px 0;\n  padding:13px 15px 12px;\n  word-break:break-all;\n  word-wrap:break-word; }\n  .bp3-dark .bp3-running-text pre, .bp3-running-text .bp3-dark pre, .bp3-dark .bp3-code-block{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n  .bp3-running-text pre > code, .bp3-code-block > code{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit;\n    font-size:inherit;\n    padding:0; }\n\n.bp3-running-text kbd, .bp3-key{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-family:inherit;\n  font-size:12px;\n  height:24px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  line-height:24px;\n  min-width:24px;\n  padding:3px 6px;\n  vertical-align:middle; }\n  .bp3-running-text kbd .bp3-icon, .bp3-key .bp3-icon, .bp3-running-text kbd .bp3-icon-standard, .bp3-key .bp3-icon-standard, .bp3-running-text kbd .bp3-icon-large, .bp3-key .bp3-icon-large{\n    margin-right:5px; }\n  .bp3-dark .bp3-running-text kbd, .bp3-running-text .bp3-dark kbd, .bp3-dark .bp3-key{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n.bp3-running-text blockquote, .bp3-blockquote{\n  border-left:solid 4px rgba(167, 182, 194, 0.5);\n  margin:0 0 10px;\n  padding:0 20px; }\n  .bp3-dark .bp3-running-text blockquote, .bp3-running-text .bp3-dark blockquote, .bp3-dark .bp3-blockquote{\n    border-color:rgba(115, 134, 148, 0.5); }\n.bp3-running-text ul,\n.bp3-running-text ol, .bp3-list{\n  margin:10px 0;\n  padding-left:30px; }\n  .bp3-running-text ul li:not(:last-child), .bp3-running-text ol li:not(:last-child), .bp3-list li:not(:last-child){\n    margin-bottom:5px; }\n  .bp3-running-text ul ol, .bp3-running-text ol ol, .bp3-list ol,\n  .bp3-running-text ul ul,\n  .bp3-running-text ol ul,\n  .bp3-list ul{\n    margin-top:5px; }\n\n.bp3-list-unstyled{\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-list-unstyled li{\n    padding:0; }\n.bp3-rtl{\n  text-align:right; }\n\n.bp3-dark{\n  color:#f5f8fa; }\n\n:focus{\n  outline:rgba(19, 124, 189, 0.6) auto 2px;\n  outline-offset:2px;\n  -moz-outline-radius:6px; }\n\n.bp3-focus-disabled :focus{\n  outline:none !important; }\n  .bp3-focus-disabled :focus ~ .bp3-control-indicator{\n    outline:none !important; }\n\n.bp3-alert{\n  max-width:400px;\n  padding:20px; }\n\n.bp3-alert-body{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-alert-body .bp3-icon{\n    font-size:40px;\n    margin-right:20px;\n    margin-top:0; }\n\n.bp3-alert-contents{\n  word-break:break-word; }\n\n.bp3-alert-footer{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:reverse;\n      -ms-flex-direction:row-reverse;\n          flex-direction:row-reverse;\n  margin-top:10px; }\n  .bp3-alert-footer .bp3-button{\n    margin-left:10px; }\n.bp3-breadcrumbs{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  cursor:default;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:wrap;\n      flex-wrap:wrap;\n  height:30px;\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-breadcrumbs > li{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n    .bp3-breadcrumbs > li::after{\n      background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z' fill='%235C7080'/%3e%3c/svg%3e\");\n      content:\"\";\n      display:block;\n      height:16px;\n      margin:0 5px;\n      width:16px; }\n    .bp3-breadcrumbs > li:last-of-type::after{\n      display:none; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumb-current,\n.bp3-breadcrumbs-collapsed{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-size:16px; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumbs-collapsed{\n  color:#5c7080; }\n\n.bp3-breadcrumb:hover{\n  text-decoration:none; }\n\n.bp3-breadcrumb.bp3-disabled{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-breadcrumb .bp3-icon{\n  margin-right:5px; }\n\n.bp3-breadcrumb-current{\n  color:inherit;\n  font-weight:600; }\n  .bp3-breadcrumb-current .bp3-input{\n    font-size:inherit;\n    font-weight:inherit;\n    vertical-align:baseline; }\n\n.bp3-breadcrumbs-collapsed{\n  background:#ced9e0;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  margin-right:2px;\n  padding:1px 5px;\n  vertical-align:text-bottom; }\n  .bp3-breadcrumbs-collapsed::before{\n    background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cg fill='%235C7080'%3e%3ccircle cx='2' cy='8.03' r='2'/%3e%3ccircle cx='14' cy='8.03' r='2'/%3e%3ccircle cx='8' cy='8.03' r='2'/%3e%3c/g%3e%3c/svg%3e\") center no-repeat;\n    content:\"\";\n    display:block;\n    height:16px;\n    width:16px; }\n  .bp3-breadcrumbs-collapsed:hover{\n    background:#bfccd6;\n    color:#182026;\n    text-decoration:none; }\n\n.bp3-dark .bp3-breadcrumb,\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumbs > li::after{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumb.bp3-disabled{\n  color:rgba(167, 182, 194, 0.6); }\n\n.bp3-dark .bp3-breadcrumb-current{\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-breadcrumbs-collapsed:hover{\n    background:rgba(16, 22, 26, 0.6);\n    color:#f5f8fa; }\n.bp3-button{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  min-height:30px;\n  min-width:30px; }\n  .bp3-button > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-button > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-button::before,\n  .bp3-button > *{\n    margin-right:7px; }\n  .bp3-button:empty::before,\n  .bp3-button > :last-child{\n    margin-right:0; }\n  .bp3-button:empty{\n    padding:0 !important; }\n  .bp3-button:disabled, .bp3-button.bp3-disabled{\n    cursor:not-allowed; }\n  .bp3-button.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button.bp3-align-right,\n  .bp3-align-right .bp3-button{\n    text-align:right; }\n  .bp3-button.bp3-align-left,\n  .bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026; }\n    .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active:hover, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-button.bp3-intent-primary{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover, .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover{\n      background-color:#106ba3;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      background-color:#0e5a8a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:disabled, .bp3-button.bp3-intent-primary.bp3-disabled{\n      background-color:rgba(19, 124, 189, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-success{\n    background-color:#0f9960;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover, .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover{\n      background-color:#0d8050;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      background-color:#0a6640;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:disabled, .bp3-button.bp3-intent-success.bp3-disabled{\n      background-color:rgba(15, 153, 96, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-warning{\n    background-color:#d9822b;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover, .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover{\n      background-color:#bf7326;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      background-color:#a66321;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:disabled, .bp3-button.bp3-intent-warning.bp3-disabled{\n      background-color:rgba(217, 130, 43, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-danger{\n    background-color:#db3737;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover, .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover{\n      background-color:#c23030;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      background-color:#a82a2a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:disabled, .bp3-button.bp3-intent-danger.bp3-disabled{\n      background-color:rgba(219, 55, 55, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n    stroke:#ffffff; }\n  .bp3-button.bp3-large,\n  .bp3-large .bp3-button{\n    min-height:40px;\n    min-width:40px;\n    font-size:16px;\n    padding:5px 15px; }\n    .bp3-button.bp3-large::before,\n    .bp3-button.bp3-large > *,\n    .bp3-large .bp3-button::before,\n    .bp3-large .bp3-button > *{\n      margin-right:10px; }\n    .bp3-button.bp3-large:empty::before,\n    .bp3-button.bp3-large > :last-child,\n    .bp3-large .bp3-button:empty::before,\n    .bp3-large .bp3-button > :last-child{\n      margin-right:0; }\n  .bp3-button.bp3-small,\n  .bp3-small .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-button.bp3-loading{\n    position:relative; }\n    .bp3-button.bp3-loading[class*=\"bp3-icon-\"]::before{\n      visibility:hidden; }\n    .bp3-button.bp3-loading .bp3-button-spinner{\n      margin:0;\n      position:absolute; }\n    .bp3-button.bp3-loading > :not(.bp3-button-spinner){\n      visibility:hidden; }\n  .bp3-button[class*=\"bp3-icon-\"]::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    color:#5c7080; }\n  .bp3-button .bp3-icon, .bp3-button .bp3-icon-standard, .bp3-button .bp3-icon-large{\n    color:#5c7080; }\n    .bp3-button .bp3-icon.bp3-align-right, .bp3-button .bp3-icon-standard.bp3-align-right, .bp3-button .bp3-icon-large.bp3-align-right{\n      margin-left:7px; }\n  .bp3-button .bp3-icon:first-child:last-child,\n  .bp3-button .bp3-spinner + .bp3-icon:last-child{\n    margin:0 -7px; }\n  .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"])[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n      color:#a7b6c2; }\n  .bp3-dark .bp3-button[class*=\"bp3-intent-\"]{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:hover{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.3); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n      stroke:#8a9ba8; }\n  .bp3-button:disabled::before,\n  .bp3-button:disabled .bp3-icon, .bp3-button:disabled .bp3-icon-standard, .bp3-button:disabled .bp3-icon-large, .bp3-button.bp3-disabled::before,\n  .bp3-button.bp3-disabled .bp3-icon, .bp3-button.bp3-disabled .bp3-icon-standard, .bp3-button.bp3-disabled .bp3-icon-large, .bp3-button[class*=\"bp3-intent-\"]::before,\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-icon, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-standard, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-large{\n    color:inherit !important; }\n  .bp3-button.bp3-minimal{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button.bp3-minimal:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-minimal:active, .bp3-button.bp3-minimal.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-minimal:disabled, .bp3-button.bp3-minimal:disabled:hover, .bp3-button.bp3-minimal.bp3-disabled, .bp3-button.bp3-minimal.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-minimal{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-minimal:hover, .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-minimal:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-minimal:disabled, .bp3-dark .bp3-button.bp3-minimal:disabled:hover, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover, .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover, .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover, .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover, .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button.bp3-outlined{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    border:1px solid rgba(24, 32, 38, 0.2);\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box; }\n    .bp3-button.bp3-outlined:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-outlined:active, .bp3-button.bp3-outlined.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-outlined:hover, .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-outlined:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover, .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover, .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover, .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover, .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      border-color:rgba(92, 112, 128, 0.1); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      border-color:rgba(255, 255, 255, 0.4); }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        border-color:rgba(255, 255, 255, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      border-color:rgba(16, 107, 163, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        border-color:rgba(16, 107, 163, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        border-color:rgba(72, 175, 240, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          border-color:rgba(72, 175, 240, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      border-color:rgba(13, 128, 80, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        border-color:rgba(13, 128, 80, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        border-color:rgba(61, 204, 145, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          border-color:rgba(61, 204, 145, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      border-color:rgba(191, 115, 38, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        border-color:rgba(191, 115, 38, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        border-color:rgba(255, 179, 102, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          border-color:rgba(255, 179, 102, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      border-color:rgba(194, 48, 48, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        border-color:rgba(194, 48, 48, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        border-color:rgba(255, 115, 115, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          border-color:rgba(255, 115, 115, 0.2); }\n\na.bp3-button{\n  text-align:center;\n  text-decoration:none;\n  -webkit-transition:none;\n  transition:none; }\n  a.bp3-button, a.bp3-button:hover, a.bp3-button:active{\n    color:#182026; }\n  a.bp3-button.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6); }\n\n.bp3-button-text{\n  -webkit-box-flex:0;\n      -ms-flex:0 1 auto;\n          flex:0 1 auto; }\n\n.bp3-button.bp3-align-left .bp3-button-text, .bp3-button.bp3-align-right .bp3-button-text,\n.bp3-button-group.bp3-align-left .bp3-button-text,\n.bp3-button-group.bp3-align-right .bp3-button-text{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto; }\n.bp3-button-group{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex; }\n  .bp3-button-group .bp3-button{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    position:relative;\n    z-index:4; }\n    .bp3-button-group .bp3-button:focus{\n      z-index:5; }\n    .bp3-button-group .bp3-button:hover{\n      z-index:6; }\n    .bp3-button-group .bp3-button:active, .bp3-button-group .bp3-button.bp3-active{\n      z-index:7; }\n    .bp3-button-group .bp3-button:disabled, .bp3-button-group .bp3-button.bp3-disabled{\n      z-index:3; }\n    .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]{\n      z-index:9; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:focus{\n        z-index:10; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:hover{\n        z-index:11; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n        z-index:12; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n        z-index:8; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:first-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:first-child){\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    border-bottom-right-radius:0;\n    border-top-right-radius:0;\n    margin-right:-1px; }\n  .bp3-button-group.bp3-minimal .bp3-button{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button-group.bp3-minimal .bp3-button{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button-group .bp3-popover-wrapper,\n  .bp3-button-group .bp3-popover-target{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button-group .bp3-button.bp3-fill,\n  .bp3-button-group.bp3-fill .bp3-button:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-vertical{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column;\n    vertical-align:top; }\n    .bp3-button-group.bp3-vertical.bp3-fill{\n      height:100%;\n      width:unset; }\n    .bp3-button-group.bp3-vertical .bp3-button{\n      margin-right:0 !important;\n      width:100%; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:first-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:first-child{\n      border-radius:3px 3px 0 0; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:last-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:last-child{\n      border-radius:0 0 3px 3px; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:not(:last-child){\n      margin-bottom:-1px; }\n  .bp3-button-group.bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    margin-right:1px; }\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-button:not(:last-child){\n    margin-bottom:1px; }\n.bp3-callout{\n  font-size:14px;\n  line-height:1.5;\n  background-color:rgba(138, 155, 168, 0.15);\n  border-radius:3px;\n  padding:10px 12px 9px;\n  position:relative;\n  width:100%; }\n  .bp3-callout[class*=\"bp3-icon-\"]{\n    padding-left:40px; }\n    .bp3-callout[class*=\"bp3-icon-\"]::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout.bp3-callout-icon{\n    padding-left:40px; }\n    .bp3-callout.bp3-callout-icon > .bp3-icon:first-child{\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout .bp3-heading{\n    line-height:20px;\n    margin-bottom:5px;\n    margin-top:0; }\n    .bp3-callout .bp3-heading:last-child{\n      margin-bottom:0; }\n  .bp3-dark .bp3-callout{\n    background-color:rgba(138, 155, 168, 0.2); }\n    .bp3-dark .bp3-callout[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n  .bp3-callout.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15); }\n    .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-primary .bp3-heading{\n      color:#106ba3; }\n    .bp3-dark .bp3-callout.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-primary .bp3-heading{\n        color:#48aff0; }\n  .bp3-callout.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15); }\n    .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-success .bp3-heading{\n      color:#0d8050; }\n    .bp3-dark .bp3-callout.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-success .bp3-heading{\n        color:#3dcc91; }\n  .bp3-callout.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15); }\n    .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-warning .bp3-heading{\n      color:#bf7326; }\n    .bp3-dark .bp3-callout.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-warning .bp3-heading{\n        color:#ffb366; }\n  .bp3-callout.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15); }\n    .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-danger .bp3-heading{\n      color:#c23030; }\n    .bp3-dark .bp3-callout.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-danger .bp3-heading{\n        color:#ff7373; }\n  .bp3-running-text .bp3-callout{\n    margin:20px 0; }\n.bp3-card{\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n  padding:20px;\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-card.bp3-dark,\n  .bp3-dark .bp3-card{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-0{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n  .bp3-elevation-0.bp3-dark,\n  .bp3-dark .bp3-elevation-0{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-1{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-1.bp3-dark,\n  .bp3-dark .bp3-elevation-1{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-2{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-2.bp3-dark,\n  .bp3-dark .bp3-elevation-2{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-3{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-3.bp3-dark,\n  .bp3-dark .bp3-elevation-3{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-4{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-4.bp3-dark,\n  .bp3-dark .bp3-elevation-4{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:hover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  cursor:pointer; }\n  .bp3-card.bp3-interactive:hover.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:hover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:active{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  opacity:0.9;\n  -webkit-transition-duration:0;\n          transition-duration:0; }\n  .bp3-card.bp3-interactive:active.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:active{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-collapse{\n  height:0;\n  overflow-y:hidden;\n  -webkit-transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-collapse .bp3-collapse-body{\n    -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-collapse .bp3-collapse-body[aria-hidden=\"true\"]{\n      display:none; }\n\n.bp3-context-menu .bp3-popover-target{\n  display:block; }\n\n.bp3-context-menu-popover-target{\n  position:fixed; }\n\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-dialog-container{\n  opacity:1;\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  min-height:100%;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  width:100%; }\n  .bp3-dialog-container.bp3-overlay-enter > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5); }\n  .bp3-dialog-container.bp3-overlay-enter-active > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear-active > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-dialog-container.bp3-overlay-exit > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-dialog-container.bp3-overlay-exit-active > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n\n.bp3-dialog{\n  background:#ebf1f5;\n  border-radius:6px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:30px 0;\n  padding-bottom:20px;\n  pointer-events:all;\n  -webkit-user-select:text;\n     -moz-user-select:text;\n      -ms-user-select:text;\n          user-select:text;\n  width:500px; }\n  .bp3-dialog:focus{\n    outline:0; }\n  .bp3-dialog.bp3-dark,\n  .bp3-dark .bp3-dialog{\n    background:#293742;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-dialog-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:6px 6px 0 0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding-left:20px;\n  padding-right:5px;\n  z-index:30; }\n  .bp3-dialog-header .bp3-icon-large,\n  .bp3-dialog-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-dialog-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-dialog-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-dialog-header{\n    background:#30404d;\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-dialog-header .bp3-icon-large,\n    .bp3-dark .bp3-dialog-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-dialog-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  margin:20px; }\n\n.bp3-dialog-footer{\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  margin:0 20px; }\n\n.bp3-dialog-footer-actions{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:end;\n      -ms-flex-pack:end;\n          justify-content:flex-end; }\n  .bp3-dialog-footer-actions .bp3-button{\n    margin-left:10px; }\n.bp3-multistep-dialog-panels{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n\n.bp3-multistep-dialog-left-panel{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column; }\n  .bp3-dark .bp3-multistep-dialog-left-panel{\n    background:#202b33; }\n\n.bp3-multistep-dialog-right-panel{\n  background-color:#f5f8fa;\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  border-radius:0 0 6px 0;\n  -webkit-box-flex:3;\n      -ms-flex:3;\n          flex:3;\n  min-width:0; }\n  .bp3-dark .bp3-multistep-dialog-right-panel{\n    background-color:#293742;\n    border-left:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-multistep-dialog-footer{\n  background-color:#ffffff;\n  border-radius:0 0 6px 0;\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  padding:10px; }\n  .bp3-dark .bp3-multistep-dialog-footer{\n    background:#30404d;\n    border-top:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-dialog-step-container{\n  background-color:#f5f8fa;\n  border-bottom:1px solid rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-dialog-step-container{\n    background:#293742;\n    border-bottom:1px solid rgba(16, 22, 26, 0.4); }\n  .bp3-dialog-step-container.bp3-dialog-step-viewed{\n    background-color:#ffffff; }\n    .bp3-dark .bp3-dialog-step-container.bp3-dialog-step-viewed{\n      background:#30404d; }\n\n.bp3-dialog-step{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#f5f8fa;\n  border-radius:6px;\n  cursor:not-allowed;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:4px;\n  padding:6px 14px; }\n  .bp3-dark .bp3-dialog-step{\n    background:#293742; }\n  .bp3-dialog-step-viewed .bp3-dialog-step{\n    background-color:#ffffff;\n    cursor:pointer; }\n    .bp3-dark .bp3-dialog-step-viewed .bp3-dialog-step{\n      background:#30404d; }\n  .bp3-dialog-step:hover{\n    background-color:#f5f8fa; }\n    .bp3-dark .bp3-dialog-step:hover{\n      background:#293742; }\n\n.bp3-dialog-step-icon{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:rgba(92, 112, 128, 0.6);\n  border-radius:50%;\n  color:#ffffff;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:25px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  width:25px; }\n  .bp3-dark .bp3-dialog-step-icon{\n    background-color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#2b95d6; }\n  .bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#8a9ba8; }\n\n.bp3-dialog-step-title{\n  color:rgba(92, 112, 128, 0.6);\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  padding-left:10px; }\n  .bp3-dark .bp3-dialog-step-title{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-title{\n    color:#2b95d6; }\n  .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n    color:#182026; }\n    .bp3-dark .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n      color:#f5f8fa; }\n.bp3-drawer{\n  background:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0;\n  padding:0; }\n  .bp3-drawer:focus{\n    outline:0; }\n  .bp3-drawer.bp3-position-top{\n    height:50%;\n    left:0;\n    right:0;\n    top:0; }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter, .bp3-drawer.bp3-position-top.bp3-overlay-appear{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter-active, .bp3-drawer.bp3-position-top.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit-active{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-bottom{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter-active, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-left{\n    bottom:0;\n    left:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter, .bp3-drawer.bp3-position-left.bp3-overlay-appear{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter-active, .bp3-drawer.bp3-position-left.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit-active{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-right{\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter, .bp3-drawer.bp3-position-right.bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter-active, .bp3-drawer.bp3-position-right.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right):not(.bp3-vertical){\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right).bp3-vertical{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-dark,\n  .bp3-dark .bp3-drawer{\n    background:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-drawer-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border-radius:0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding:5px;\n  padding-left:20px;\n  position:relative; }\n  .bp3-drawer-header .bp3-icon-large,\n  .bp3-drawer-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-drawer-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-drawer-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-drawer-header{\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-drawer-header .bp3-icon-large,\n    .bp3-dark .bp3-drawer-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-drawer-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  overflow:auto; }\n\n.bp3-drawer-footer{\n  -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  padding:10px 20px;\n  position:relative; }\n  .bp3-dark .bp3-drawer-footer{\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4); }\n.bp3-editable-text{\n  cursor:text;\n  display:inline-block;\n  max-width:100%;\n  position:relative;\n  vertical-align:top;\n  white-space:nowrap; }\n  .bp3-editable-text::before{\n    bottom:-3px;\n    left:-3px;\n    position:absolute;\n    right:-3px;\n    top:-3px;\n    border-radius:3px;\n    content:\"\";\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#137cbd; }\n  .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4); }\n  .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#0f9960; }\n  .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4); }\n  .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#d9822b; }\n  .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4); }\n  .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#db3737; }\n  .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4); }\n  .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-dark .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#48aff0; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4);\n            box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#3dcc91; }\n  .bp3-dark .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4);\n            box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#ffb366; }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#ff7373; }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-editable-text-input,\n.bp3-editable-text-content{\n  color:inherit;\n  display:inherit;\n  font:inherit;\n  letter-spacing:inherit;\n  max-width:inherit;\n  min-width:inherit;\n  position:relative;\n  resize:none;\n  text-transform:inherit;\n  vertical-align:top; }\n\n.bp3-editable-text-input{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0;\n  white-space:pre-wrap;\n  width:100%; }\n  .bp3-editable-text-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:focus{\n    outline:none; }\n  .bp3-editable-text-input::-ms-clear{\n    display:none; }\n\n.bp3-editable-text-content{\n  overflow:hidden;\n  padding-right:2px;\n  text-overflow:ellipsis;\n  white-space:pre; }\n  .bp3-editable-text-editing > .bp3-editable-text-content{\n    left:0;\n    position:absolute;\n    visibility:hidden; }\n  .bp3-editable-text-placeholder > .bp3-editable-text-content{\n    color:rgba(92, 112, 128, 0.6); }\n    .bp3-dark .bp3-editable-text-placeholder > .bp3-editable-text-content{\n      color:rgba(167, 182, 194, 0.6); }\n\n.bp3-editable-text.bp3-multiline{\n  display:block; }\n  .bp3-editable-text.bp3-multiline .bp3-editable-text-content{\n    overflow:auto;\n    white-space:pre-wrap;\n    word-wrap:break-word; }\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-control-group{\n  -webkit-transform:translateZ(0);\n          transform:translateZ(0);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:stretch;\n      -ms-flex-align:stretch;\n          align-items:stretch; }\n  .bp3-control-group > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select,\n  .bp3-control-group .bp3-input,\n  .bp3-control-group .bp3-select{\n    position:relative; }\n  .bp3-control-group .bp3-input{\n    border-radius:inherit;\n    z-index:2; }\n    .bp3-control-group .bp3-input:focus{\n      border-radius:3px;\n      z-index:14; }\n    .bp3-control-group .bp3-input[class*=\"bp3-intent\"]{\n      z-index:13; }\n      .bp3-control-group .bp3-input[class*=\"bp3-intent\"]:focus{\n        z-index:15; }\n    .bp3-control-group .bp3-input[readonly], .bp3-control-group .bp3-input:disabled, .bp3-control-group .bp3-input.bp3-disabled{\n      z-index:1; }\n  .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input{\n    z-index:13; }\n    .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input:focus{\n      z-index:15; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select select,\n  .bp3-control-group .bp3-select select{\n    -webkit-transform:translateZ(0);\n            transform:translateZ(0);\n    border-radius:inherit;\n    z-index:4; }\n    .bp3-control-group .bp3-button:focus,\n    .bp3-control-group .bp3-html-select select:focus,\n    .bp3-control-group .bp3-select select:focus{\n      z-index:5; }\n    .bp3-control-group .bp3-button:hover,\n    .bp3-control-group .bp3-html-select select:hover,\n    .bp3-control-group .bp3-select select:hover{\n      z-index:6; }\n    .bp3-control-group .bp3-button:active,\n    .bp3-control-group .bp3-html-select select:active,\n    .bp3-control-group .bp3-select select:active{\n      z-index:7; }\n    .bp3-control-group .bp3-button[readonly], .bp3-control-group .bp3-button:disabled, .bp3-control-group .bp3-button.bp3-disabled,\n    .bp3-control-group .bp3-html-select select[readonly],\n    .bp3-control-group .bp3-html-select select:disabled,\n    .bp3-control-group .bp3-html-select select.bp3-disabled,\n    .bp3-control-group .bp3-select select[readonly],\n    .bp3-control-group .bp3-select select:disabled,\n    .bp3-control-group .bp3-select select.bp3-disabled{\n      z-index:3; }\n    .bp3-control-group .bp3-button[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]{\n      z-index:9; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:focus{\n        z-index:10; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:hover{\n        z-index:11; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:active{\n        z-index:12; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"][readonly], .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:disabled, .bp3-control-group .bp3-button[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"].bp3-disabled{\n        z-index:8; }\n  .bp3-control-group .bp3-input-group > .bp3-icon,\n  .bp3-control-group .bp3-input-group > .bp3-button,\n  .bp3-control-group .bp3-input-group > .bp3-input-left-container,\n  .bp3-control-group .bp3-input-group > .bp3-input-action{\n    z-index:16; }\n  .bp3-control-group .bp3-select::after,\n  .bp3-control-group .bp3-html-select::after,\n  .bp3-control-group .bp3-select > .bp3-icon,\n  .bp3-control-group .bp3-html-select > .bp3-icon{\n    z-index:17; }\n  .bp3-control-group .bp3-select:focus-within{\n    z-index:5; }\n  .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:-1px; }\n  .bp3-control-group:not(.bp3-vertical) > .bp3-divider:not(:first-child){\n    margin-left:6px; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:0; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > .bp3-button + .bp3-button{\n    margin-left:1px; }\n  .bp3-control-group .bp3-popover-wrapper,\n  .bp3-control-group .bp3-popover-target{\n    border-radius:inherit; }\n  .bp3-control-group > :first-child{\n    border-radius:3px 0 0 3px; }\n  .bp3-control-group > :last-child{\n    border-radius:0 3px 3px 0;\n    margin-right:0; }\n  .bp3-control-group > :only-child{\n    border-radius:3px;\n    margin-right:0; }\n  .bp3-control-group .bp3-input-group .bp3-button{\n    border-radius:3px; }\n  .bp3-control-group .bp3-numeric-input:not(:first-child) .bp3-input-group{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-control-group.bp3-fill{\n    width:100%; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-fill > *:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-vertical{\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-control-group.bp3-vertical > *{\n      margin-top:-1px; }\n    .bp3-control-group.bp3-vertical > :first-child{\n      border-radius:3px 3px 0 0;\n      margin-top:0; }\n    .bp3-control-group.bp3-vertical > :last-child{\n      border-radius:0 0 3px 3px; }\n.bp3-control{\n  cursor:pointer;\n  display:block;\n  margin-bottom:10px;\n  position:relative;\n  text-transform:none; }\n  .bp3-control input:checked ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control input:checked ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control:not(.bp3-align-right){\n    padding-left:26px; }\n    .bp3-control:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-26px; }\n  .bp3-control.bp3-align-right{\n    padding-right:26px; }\n    .bp3-control.bp3-align-right .bp3-control-indicator{\n      margin-right:-26px; }\n  .bp3-control.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-control.bp3-inline{\n    display:inline-block;\n    margin-right:20px; }\n  .bp3-control input{\n    left:0;\n    opacity:0;\n    position:absolute;\n    top:0;\n    z-index:-1; }\n  .bp3-control .bp3-control-indicator{\n    background-clip:padding-box;\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    border:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    cursor:pointer;\n    display:inline-block;\n    font-size:16px;\n    height:1em;\n    margin-right:10px;\n    margin-top:-3px;\n    position:relative;\n    -webkit-user-select:none;\n       -moz-user-select:none;\n        -ms-user-select:none;\n            user-select:none;\n    vertical-align:middle;\n    width:1em; }\n    .bp3-control .bp3-control-indicator::before{\n      content:\"\";\n      display:block;\n      height:1em;\n      width:1em; }\n  .bp3-control:hover .bp3-control-indicator{\n    background-color:#ebf1f5; }\n  .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n    background:#d8e1e8;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    cursor:not-allowed; }\n  .bp3-control input:focus ~ .bp3-control-indicator{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:2px;\n    -moz-outline-radius:6px; }\n  .bp3-control.bp3-align-right .bp3-control-indicator{\n    float:right;\n    margin-left:10px;\n    margin-top:1px; }\n  .bp3-control.bp3-large{\n    font-size:16px; }\n    .bp3-control.bp3-large:not(.bp3-align-right){\n      padding-left:30px; }\n      .bp3-control.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n        margin-left:-30px; }\n    .bp3-control.bp3-large.bp3-align-right{\n      padding-right:30px; }\n      .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n        margin-right:-30px; }\n    .bp3-control.bp3-large .bp3-control-indicator{\n      font-size:20px; }\n    .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-top:0; }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control.bp3-checkbox .bp3-control-indicator{\n    border-radius:3px; }\n  .bp3-control.bp3-checkbox input:checked ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0012 5z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-radio .bp3-control-indicator{\n    border-radius:50%; }\n  .bp3-control.bp3-radio input:checked ~ .bp3-control-indicator::before{\n    background-image:radial-gradient(#ffffff, #ffffff 28%, transparent 32%); }\n  .bp3-control.bp3-radio input:checked:disabled ~ .bp3-control-indicator::before{\n    opacity:0.5; }\n  .bp3-control.bp3-radio input:focus ~ .bp3-control-indicator{\n    -moz-outline-radius:16px; }\n  .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(167, 182, 194, 0.5); }\n  .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(115, 134, 148, 0.5); }\n  .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(92, 112, 128, 0.5); }\n  .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5); }\n    .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5); }\n    .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch:not(.bp3-align-right){\n    padding-left:38px; }\n    .bp3-control.bp3-switch:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-38px; }\n  .bp3-control.bp3-switch.bp3-align-right{\n    padding-right:38px; }\n    .bp3-control.bp3-switch.bp3-align-right .bp3-control-indicator{\n      margin-right:-38px; }\n  .bp3-control.bp3-switch .bp3-control-indicator{\n    border:none;\n    border-radius:1.75em;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important;\n    min-width:1.75em;\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:auto; }\n    .bp3-control.bp3-switch .bp3-control-indicator::before{\n      background:#ffffff;\n      border-radius:50%;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n      height:calc(1em - 4px);\n      left:0;\n      margin:2px;\n      position:absolute;\n      -webkit-transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      width:calc(1em - 4px); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    left:calc(100% - 1em); }\n  .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right){\n    padding-left:45px; }\n    .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-45px; }\n  .bp3-control.bp3-switch.bp3-large.bp3-align-right{\n    padding-right:45px; }\n    .bp3-control.bp3-switch.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-right:-45px; }\n  .bp3-dark .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.7); }\n  .bp3-dark .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.9); }\n  .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(57, 75, 89, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-dark .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch .bp3-control-indicator::before{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-control.bp3-switch .bp3-switch-inner-text{\n    font-size:0.7em;\n    text-align:center; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:first-child{\n    line-height:0;\n    margin-left:0.5em;\n    margin-right:1.2em;\n    visibility:hidden; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:last-child{\n    line-height:1em;\n    margin-left:1.2em;\n    margin-right:0.5em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:first-child{\n    line-height:1em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:last-child{\n    line-height:0;\n    visibility:hidden; }\n  .bp3-dark .bp3-control{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-control.bp3-disabled{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-control .bp3-control-indicator{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-control:hover .bp3-control-indicator{\n      background-color:#30404d; }\n    .bp3-dark .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n      background:#202b33;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-control input:disabled ~ .bp3-control-indicator{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      cursor:not-allowed; }\n    .bp3-dark .bp3-control.bp3-checkbox input:disabled:checked ~ .bp3-control-indicator, .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-file-input{\n  cursor:pointer;\n  display:inline-block;\n  height:30px;\n  position:relative; }\n  .bp3-file-input input{\n    margin:0;\n    min-width:200px;\n    opacity:0; }\n    .bp3-file-input input:disabled + .bp3-file-upload-input,\n    .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n      background:rgba(206, 217, 224, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      resize:none; }\n      .bp3-file-input input:disabled + .bp3-file-upload-input::after,\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n        background-color:rgba(206, 217, 224, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(92, 112, 128, 0.6);\n        cursor:not-allowed;\n        outline:none; }\n        .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active:hover,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active:hover{\n          background:rgba(206, 217, 224, 0.7); }\n      .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input, .bp3-dark\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n        background:rgba(57, 75, 89, 0.5);\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after, .bp3-dark\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n          background-color:rgba(57, 75, 89, 0.5);\n          background-image:none;\n          -webkit-box-shadow:none;\n                  box-shadow:none;\n          color:rgba(167, 182, 194, 0.6); }\n          .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-dark\n          .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active{\n            background:rgba(57, 75, 89, 0.7); }\n  .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#182026; }\n  .bp3-dark .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#f5f8fa; }\n  .bp3-file-input.bp3-fill{\n    width:100%; }\n  .bp3-file-input.bp3-large,\n  .bp3-large .bp3-file-input{\n    height:40px; }\n  .bp3-file-input .bp3-file-upload-input-custom-text::after{\n    content:attr(bp3-button-text); }\n\n.bp3-file-upload-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle;\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:rgba(92, 112, 128, 0.6);\n  left:0;\n  padding-right:80px;\n  position:absolute;\n  right:0;\n  top:0;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-file-upload-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:focus, .bp3-file-upload-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-file-upload-input[type=\"search\"], .bp3-file-upload-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-file-upload-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-file-upload-input:disabled, .bp3-file-upload-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-file-upload-input::after{\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026;\n    min-height:24px;\n    min-width:24px;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    border-radius:3px;\n    content:\"Browse\";\n    line-height:24px;\n    margin:3px;\n    position:absolute;\n    right:0;\n    text-align:center;\n    top:0;\n    width:70px; }\n    .bp3-file-upload-input::after:hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-file-upload-input::after:active, .bp3-file-upload-input::after.bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-file-upload-input::after:disabled, .bp3-file-upload-input::after.bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-file-upload-input::after:disabled.bp3-active, .bp3-file-upload-input::after:disabled.bp3-active:hover, .bp3-file-upload-input::after.bp3-disabled.bp3-active, .bp3-file-upload-input::after.bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-file-upload-input:hover::after{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-file-upload-input:active::after{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-large .bp3-file-upload-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px;\n    padding-right:95px; }\n    .bp3-large .bp3-file-upload-input[type=\"search\"], .bp3-large .bp3-file-upload-input.bp3-round{\n      padding:0 15px; }\n    .bp3-large .bp3-file-upload-input::after{\n      min-height:30px;\n      min-width:30px;\n      line-height:30px;\n      margin:5px;\n      width:85px; }\n  .bp3-dark .bp3-file-upload-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:disabled, .bp3-dark .bp3-file-upload-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::after{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n      color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover, .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover{\n        background-color:#30404d;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        background-color:#202b33;\n        background-image:none;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n      .bp3-dark .bp3-file-upload-input::after:disabled, .bp3-dark .bp3-file-upload-input::after.bp3-disabled{\n        background-color:rgba(57, 75, 89, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-upload-input::after:disabled.bp3-active, .bp3-dark .bp3-file-upload-input::after.bp3-disabled.bp3-active{\n          background:rgba(57, 75, 89, 0.7); }\n      .bp3-dark .bp3-file-upload-input::after .bp3-button-spinner .bp3-spinner-head{\n        background:rgba(16, 22, 26, 0.5);\n        stroke:#8a9ba8; }\n    .bp3-dark .bp3-file-upload-input:hover::after{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:active::after{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n.bp3-file-upload-input::after{\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n.bp3-form-group{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0 0 15px; }\n  .bp3-form-group label.bp3-label{\n    margin-bottom:5px; }\n  .bp3-form-group .bp3-control{\n    margin-top:7px; }\n  .bp3-form-group .bp3-form-helper-text{\n    color:#5c7080;\n    font-size:12px;\n    margin-top:5px; }\n  .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#106ba3; }\n  .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#0d8050; }\n  .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#bf7326; }\n  .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#c23030; }\n  .bp3-form-group.bp3-inline{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row; }\n    .bp3-form-group.bp3-inline.bp3-large label.bp3-label{\n      line-height:40px;\n      margin:0 10px 0 0; }\n    .bp3-form-group.bp3-inline label.bp3-label{\n      line-height:30px;\n      margin:0 10px 0 0; }\n  .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-dark .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#48aff0; }\n  .bp3-dark .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#3dcc91; }\n  .bp3-dark .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#ffb366; }\n  .bp3-dark .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#ff7373; }\n  .bp3-dark .bp3-form-group .bp3-form-helper-text{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(167, 182, 194, 0.6) !important; }\n.bp3-input-group{\n  display:block;\n  position:relative; }\n  .bp3-input-group .bp3-input{\n    position:relative;\n    width:100%; }\n    .bp3-input-group .bp3-input:not(:first-child){\n      padding-left:30px; }\n    .bp3-input-group .bp3-input:not(:last-child){\n      padding-right:30px; }\n  .bp3-input-group .bp3-input-action,\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-button,\n  .bp3-input-group > .bp3-icon{\n    position:absolute;\n    top:0; }\n    .bp3-input-group .bp3-input-action:first-child,\n    .bp3-input-group > .bp3-input-left-container:first-child,\n    .bp3-input-group > .bp3-button:first-child,\n    .bp3-input-group > .bp3-icon:first-child{\n      left:0; }\n    .bp3-input-group .bp3-input-action:last-child,\n    .bp3-input-group > .bp3-input-left-container:last-child,\n    .bp3-input-group > .bp3-button:last-child,\n    .bp3-input-group > .bp3-icon:last-child{\n      right:0; }\n  .bp3-input-group .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    margin:3px;\n    padding:0 7px; }\n    .bp3-input-group .bp3-button:empty{\n      padding:0; }\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-icon{\n    z-index:1; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon{\n    color:#5c7080; }\n    .bp3-input-group > .bp3-input-left-container > .bp3-icon:empty,\n    .bp3-input-group > .bp3-icon:empty{\n      font-family:\"Icons16\", sans-serif;\n      font-size:16px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon,\n  .bp3-input-group .bp3-input-action > .bp3-spinner{\n    margin:7px; }\n  .bp3-input-group .bp3-tag{\n    margin:5px; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus),\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n    color:#5c7080; }\n    .bp3-dark .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus), .bp3-dark\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n      color:#a7b6c2; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large{\n      color:#5c7080; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled,\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled{\n    color:rgba(92, 112, 128, 0.6) !important; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-large{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-input-group.bp3-disabled{\n    cursor:not-allowed; }\n    .bp3-input-group.bp3-disabled .bp3-icon{\n      color:rgba(92, 112, 128, 0.6); }\n  .bp3-input-group.bp3-large .bp3-button{\n    min-height:30px;\n    min-width:30px;\n    margin:5px; }\n  .bp3-input-group.bp3-large > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-large > .bp3-icon,\n  .bp3-input-group.bp3-large .bp3-input-action > .bp3-spinner{\n    margin:12px; }\n  .bp3-input-group.bp3-large .bp3-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input-group.bp3-large .bp3-input[type=\"search\"], .bp3-input-group.bp3-large .bp3-input.bp3-round{\n      padding:0 15px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:first-child){\n      padding-left:40px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:last-child){\n      padding-right:40px; }\n  .bp3-input-group.bp3-small .bp3-button{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small .bp3-tag{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-small > .bp3-icon,\n  .bp3-input-group.bp3-small .bp3-input-action > .bp3-spinner{\n    margin:4px; }\n  .bp3-input-group.bp3-small .bp3-input{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input-group.bp3-small .bp3-input[type=\"search\"], .bp3-input-group.bp3-small .bp3-input.bp3-round{\n      padding:0 12px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:first-child){\n      padding-left:24px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:last-child){\n      padding-right:24px; }\n  .bp3-input-group.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-input-group.bp3-round .bp3-button,\n  .bp3-input-group.bp3-round .bp3-input,\n  .bp3-input-group.bp3-round .bp3-tag{\n    border-radius:30px; }\n  .bp3-dark .bp3-input-group .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-input-group.bp3-disabled .bp3-icon{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-input-group.bp3-intent-primary .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input-group.bp3-intent-primary .bp3-input:disabled, .bp3-input-group.bp3-intent-primary .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-primary > .bp3-icon{\n    color:#106ba3; }\n    .bp3-dark .bp3-input-group.bp3-intent-primary > .bp3-icon{\n      color:#48aff0; }\n  .bp3-input-group.bp3-intent-success .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input-group.bp3-intent-success .bp3-input:disabled, .bp3-input-group.bp3-intent-success .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-success > .bp3-icon{\n    color:#0d8050; }\n    .bp3-dark .bp3-input-group.bp3-intent-success > .bp3-icon{\n      color:#3dcc91; }\n  .bp3-input-group.bp3-intent-warning .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input-group.bp3-intent-warning .bp3-input:disabled, .bp3-input-group.bp3-intent-warning .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-warning > .bp3-icon{\n    color:#bf7326; }\n    .bp3-dark .bp3-input-group.bp3-intent-warning > .bp3-icon{\n      color:#ffb366; }\n  .bp3-input-group.bp3-intent-danger .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input-group.bp3-intent-danger .bp3-input:disabled, .bp3-input-group.bp3-intent-danger .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-danger > .bp3-icon{\n    color:#c23030; }\n    .bp3-dark .bp3-input-group.bp3-intent-danger > .bp3-icon{\n      color:#ff7373; }\n.bp3-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle; }\n  .bp3-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:focus, .bp3-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-input[type=\"search\"], .bp3-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-input:disabled, .bp3-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-input.bp3-large{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input.bp3-large[type=\"search\"], .bp3-input.bp3-large.bp3-round{\n      padding:0 15px; }\n  .bp3-input.bp3-small{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input.bp3-small[type=\"search\"], .bp3-input.bp3-small.bp3-round{\n      padding:0 12px; }\n  .bp3-input.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-dark .bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input:disabled, .bp3-dark .bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-input.bp3-intent-primary{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input.bp3-intent-primary:disabled, .bp3-input.bp3-intent-primary.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary:focus{\n        -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n                box-shadow:inset 0 0 0 1px #137cbd; }\n      .bp3-dark .bp3-input.bp3-intent-primary:disabled, .bp3-dark .bp3-input.bp3-intent-primary.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-success{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input.bp3-intent-success:disabled, .bp3-input.bp3-intent-success.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success:focus{\n        -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n                box-shadow:inset 0 0 0 1px #0f9960; }\n      .bp3-dark .bp3-input.bp3-intent-success:disabled, .bp3-dark .bp3-input.bp3-intent-success.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-warning{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input.bp3-intent-warning:disabled, .bp3-input.bp3-intent-warning.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning:focus{\n        -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n                box-shadow:inset 0 0 0 1px #d9822b; }\n      .bp3-dark .bp3-input.bp3-intent-warning:disabled, .bp3-dark .bp3-input.bp3-intent-warning.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-danger{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input.bp3-intent-danger:disabled, .bp3-input.bp3-intent-danger.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger:focus{\n        -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #db3737;\n                box-shadow:inset 0 0 0 1px #db3737; }\n      .bp3-dark .bp3-input.bp3-intent-danger:disabled, .bp3-dark .bp3-input.bp3-intent-danger.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input::-ms-clear{\n    display:none; }\ntextarea.bp3-input{\n  max-width:100%;\n  padding:10px; }\n  textarea.bp3-input, textarea.bp3-input.bp3-large, textarea.bp3-input.bp3-small{\n    height:auto;\n    line-height:inherit; }\n  textarea.bp3-input.bp3-small{\n    padding:8px; }\n  .bp3-dark textarea.bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark textarea.bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input:disabled, .bp3-dark textarea.bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\nlabel.bp3-label{\n  display:block;\n  margin-bottom:15px;\n  margin-top:0; }\n  label.bp3-label .bp3-html-select,\n  label.bp3-label .bp3-input,\n  label.bp3-label .bp3-select,\n  label.bp3-label .bp3-slider,\n  label.bp3-label .bp3-popover-wrapper{\n    display:block;\n    margin-top:5px;\n    text-transform:none; }\n  label.bp3-label .bp3-button-group{\n    margin-top:5px; }\n  label.bp3-label .bp3-select select,\n  label.bp3-label .bp3-html-select select{\n    font-weight:400;\n    vertical-align:top;\n    width:100%; }\n  label.bp3-label.bp3-disabled,\n  label.bp3-label.bp3-disabled .bp3-text-muted{\n    color:rgba(92, 112, 128, 0.6); }\n  label.bp3-label.bp3-inline{\n    line-height:30px; }\n    label.bp3-label.bp3-inline .bp3-html-select,\n    label.bp3-label.bp3-inline .bp3-input,\n    label.bp3-label.bp3-inline .bp3-input-group,\n    label.bp3-label.bp3-inline .bp3-select,\n    label.bp3-label.bp3-inline .bp3-popover-wrapper{\n      display:inline-block;\n      margin:0 0 0 5px;\n      vertical-align:top; }\n    label.bp3-label.bp3-inline .bp3-button-group{\n      margin:0 0 0 5px; }\n    label.bp3-label.bp3-inline .bp3-input-group .bp3-input{\n      margin-left:0; }\n    label.bp3-label.bp3-inline.bp3-large{\n      line-height:40px; }\n  label.bp3-label:not(.bp3-inline) .bp3-popover-target{\n    display:block; }\n  .bp3-dark label.bp3-label{\n    color:#f5f8fa; }\n    .bp3-dark label.bp3-label.bp3-disabled,\n    .bp3-dark label.bp3-label.bp3-disabled .bp3-text-muted{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 14px;\n          flex:1 1 14px;\n  min-height:0;\n  padding:0;\n  width:30px; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:first-child{\n    border-radius:0 3px 0 0; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:last-child{\n    border-radius:0 0 3px 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:first-child{\n  border-radius:3px 0 0 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:last-child{\n  border-radius:0 0 0 3px; }\n\n.bp3-numeric-input.bp3-large .bp3-button-group.bp3-vertical > .bp3-button{\n  width:40px; }\n\nform{\n  display:block; }\n.bp3-html-select select,\n.bp3-select select{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  -moz-appearance:none;\n  -webkit-appearance:none;\n  border-radius:3px;\n  height:30px;\n  padding:0 25px 0 10px;\n  width:100%; }\n  .bp3-html-select select > *, .bp3-select select > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-html-select select > .bp3-fill, .bp3-select select > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-html-select select::before,\n  .bp3-select select::before, .bp3-html-select select > *, .bp3-select select > *{\n    margin-right:7px; }\n  .bp3-html-select select:empty::before,\n  .bp3-select select:empty::before,\n  .bp3-html-select select > :last-child,\n  .bp3-select select > :last-child{\n    margin-right:0; }\n  .bp3-html-select select:hover,\n  .bp3-select select:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-html-select select:active,\n  .bp3-select select:active, .bp3-html-select select.bp3-active,\n  .bp3-select select.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-html-select select:disabled,\n  .bp3-select select:disabled, .bp3-html-select select.bp3-disabled,\n  .bp3-select select.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-html-select select:disabled.bp3-active,\n    .bp3-select select:disabled.bp3-active, .bp3-html-select select:disabled.bp3-active:hover,\n    .bp3-select select:disabled.bp3-active:hover, .bp3-html-select select.bp3-disabled.bp3-active,\n    .bp3-select select.bp3-disabled.bp3-active, .bp3-html-select select.bp3-disabled.bp3-active:hover,\n    .bp3-select select.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n\n.bp3-html-select.bp3-minimal select,\n.bp3-select.bp3-minimal select{\n  background:none;\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  .bp3-html-select.bp3-minimal select:hover,\n  .bp3-select.bp3-minimal select:hover{\n    background:rgba(167, 182, 194, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026;\n    text-decoration:none; }\n  .bp3-html-select.bp3-minimal select:active,\n  .bp3-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal select.bp3-active,\n  .bp3-select.bp3-minimal select.bp3-active{\n    background:rgba(115, 134, 148, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026; }\n  .bp3-html-select.bp3-minimal select:disabled,\n  .bp3-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal select:disabled:hover,\n  .bp3-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal select.bp3-disabled,\n  .bp3-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal select.bp3-disabled:hover,\n  .bp3-select.bp3-minimal select.bp3-disabled:hover{\n    background:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n    .bp3-html-select.bp3-minimal select:disabled.bp3-active,\n    .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active{\n      background:rgba(115, 134, 148, 0.3); }\n  .bp3-dark .bp3-html-select.bp3-minimal select, .bp3-html-select.bp3-minimal .bp3-dark select,\n  .bp3-dark .bp3-select.bp3-minimal select, .bp3-select.bp3-minimal .bp3-dark select{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover, .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover{\n      background:rgba(138, 155, 168, 0.15); }\n    .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:rgba(138, 155, 168, 0.3);\n      color:#f5f8fa; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal .bp3-dark select:disabled,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled, .bp3-select.bp3-minimal .bp3-dark select:disabled, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled:hover, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover{\n      background:none;\n      color:rgba(167, 182, 194, 0.6);\n      cursor:not-allowed; }\n      .bp3-dark .bp3-html-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active{\n        background:rgba(138, 155, 168, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-primary,\n  .bp3-select.bp3-minimal select.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover{\n      background:rgba(19, 124, 189, 0.15);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:rgba(19, 124, 189, 0.3);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled{\n      background:none;\n      color:rgba(16, 107, 163, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active{\n        background:rgba(19, 124, 189, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n      stroke:#106ba3; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary{\n      color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.2);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(72, 175, 240, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-success,\n  .bp3-select.bp3-minimal select.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover{\n      background:rgba(15, 153, 96, 0.15);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:rgba(15, 153, 96, 0.3);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled{\n      background:none;\n      color:rgba(13, 128, 80, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active{\n        background:rgba(15, 153, 96, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n      stroke:#0d8050; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success{\n      color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.2);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(61, 204, 145, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-warning,\n  .bp3-select.bp3-minimal select.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover{\n      background:rgba(217, 130, 43, 0.15);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:rgba(217, 130, 43, 0.3);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled{\n      background:none;\n      color:rgba(191, 115, 38, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active{\n        background:rgba(217, 130, 43, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n      stroke:#bf7326; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning{\n      color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.2);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(255, 179, 102, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-danger,\n  .bp3-select.bp3-minimal select.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover{\n      background:rgba(219, 55, 55, 0.15);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:rgba(219, 55, 55, 0.3);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled{\n      background:none;\n      color:rgba(194, 48, 48, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active{\n        background:rgba(219, 55, 55, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n      stroke:#c23030; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger{\n      color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.2);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(255, 115, 115, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n\n.bp3-html-select.bp3-large select,\n.bp3-select.bp3-large select{\n  font-size:16px;\n  height:40px;\n  padding-right:35px; }\n\n.bp3-dark .bp3-html-select select, .bp3-dark .bp3-select select{\n  background-color:#394b59;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n  color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover, .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    background-color:#202b33;\n    background-image:none;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-html-select select:disabled, .bp3-dark .bp3-select select:disabled, .bp3-dark .bp3-html-select select.bp3-disabled, .bp3-dark .bp3-select select.bp3-disabled{\n    background-color:rgba(57, 75, 89, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-html-select select:disabled.bp3-active, .bp3-dark .bp3-select select:disabled.bp3-active, .bp3-dark .bp3-html-select select.bp3-disabled.bp3-active, .bp3-dark .bp3-select select.bp3-disabled.bp3-active{\n      background:rgba(57, 75, 89, 0.7); }\n  .bp3-dark .bp3-html-select select .bp3-button-spinner .bp3-spinner-head, .bp3-dark .bp3-select select .bp3-button-spinner .bp3-spinner-head{\n    background:rgba(16, 22, 26, 0.5);\n    stroke:#8a9ba8; }\n\n.bp3-html-select select:disabled,\n.bp3-select select:disabled{\n  background-color:rgba(206, 217, 224, 0.5);\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-html-select .bp3-icon,\n.bp3-select .bp3-icon, .bp3-select::after{\n  color:#5c7080;\n  pointer-events:none;\n  position:absolute;\n  right:7px;\n  top:7px; }\n  .bp3-html-select .bp3-disabled.bp3-icon,\n  .bp3-select .bp3-disabled.bp3-icon, .bp3-disabled.bp3-select::after{\n    color:rgba(92, 112, 128, 0.6); }\n.bp3-html-select,\n.bp3-select{\n  display:inline-block;\n  letter-spacing:normal;\n  position:relative;\n  vertical-align:middle; }\n  .bp3-html-select select::-ms-expand,\n  .bp3-select select::-ms-expand{\n    display:none; }\n  .bp3-html-select .bp3-icon,\n  .bp3-select .bp3-icon{\n    color:#5c7080; }\n    .bp3-html-select .bp3-icon:hover,\n    .bp3-select .bp3-icon:hover{\n      color:#182026; }\n    .bp3-dark .bp3-html-select .bp3-icon, .bp3-dark\n    .bp3-select .bp3-icon{\n      color:#a7b6c2; }\n      .bp3-dark .bp3-html-select .bp3-icon:hover, .bp3-dark\n      .bp3-select .bp3-icon:hover{\n        color:#f5f8fa; }\n  .bp3-html-select.bp3-large::after,\n  .bp3-html-select.bp3-large .bp3-icon,\n  .bp3-select.bp3-large::after,\n  .bp3-select.bp3-large .bp3-icon{\n    right:12px;\n    top:12px; }\n  .bp3-html-select.bp3-fill,\n  .bp3-html-select.bp3-fill select,\n  .bp3-select.bp3-fill,\n  .bp3-select.bp3-fill select{\n    width:100%; }\n  .bp3-dark .bp3-html-select option, .bp3-dark\n  .bp3-select option{\n    background-color:#30404d;\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select option:disabled, .bp3-dark\n  .bp3-select option:disabled{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-html-select::after, .bp3-dark\n  .bp3-select::after{\n    color:#a7b6c2; }\n\n.bp3-select::after{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  content:\"\"; }\n.bp3-running-text table, table.bp3-html-table{\n  border-spacing:0;\n  font-size:14px; }\n  .bp3-running-text table th, table.bp3-html-table th,\n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    padding:11px;\n    text-align:left;\n    vertical-align:top; }\n  .bp3-running-text table th, table.bp3-html-table th{\n    color:#182026;\n    font-weight:600; }\n  \n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    color:#182026; }\n  .bp3-running-text table tbody tr:first-child th, table.bp3-html-table tbody tr:first-child th,\n  .bp3-running-text table tbody tr:first-child td,\n  table.bp3-html-table tbody tr:first-child td,\n  .bp3-running-text table tfoot tr:first-child th,\n  table.bp3-html-table tfoot tr:first-child th,\n  .bp3-running-text table tfoot tr:first-child td,\n  table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-running-text table th, .bp3-running-text .bp3-dark table th, .bp3-dark table.bp3-html-table th{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table td, .bp3-running-text .bp3-dark table td, .bp3-dark table.bp3-html-table td{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table tbody tr:first-child th, .bp3-running-text .bp3-dark table tbody tr:first-child th, .bp3-dark table.bp3-html-table tbody tr:first-child th,\n  .bp3-dark .bp3-running-text table tbody tr:first-child td,\n  .bp3-running-text .bp3-dark table tbody tr:first-child td,\n  .bp3-dark table.bp3-html-table tbody tr:first-child td,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child th,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child th,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child th,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child td,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child td,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-condensed th,\ntable.bp3-html-table.bp3-html-table-condensed td, table.bp3-html-table.bp3-small th,\ntable.bp3-html-table.bp3-small td{\n  padding-bottom:6px;\n  padding-top:6px; }\n\ntable.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n  background:rgba(191, 204, 214, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n  -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered tbody tr td,\ntable.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n  -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n  table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n    -webkit-box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-interactive tbody tr:hover td{\n  background-color:rgba(191, 204, 214, 0.3);\n  cursor:pointer; }\n\ntable.bp3-html-table.bp3-interactive tbody tr:active td{\n  background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-dark table.bp3-html-table{ }\n  .bp3-dark table.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n    background:rgba(92, 112, 128, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td,\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n      -webkit-box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15);\n              box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:first-child{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:hover td{\n    background-color:rgba(92, 112, 128, 0.3);\n    cursor:pointer; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:active td{\n    background-color:rgba(92, 112, 128, 0.4); }\n\n.bp3-key-combo{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center; }\n  .bp3-key-combo > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-key-combo > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-key-combo::before,\n  .bp3-key-combo > *{\n    margin-right:5px; }\n  .bp3-key-combo:empty::before,\n  .bp3-key-combo > :last-child{\n    margin-right:0; }\n\n.bp3-hotkey-dialog{\n  padding-bottom:0;\n  top:40px; }\n  .bp3-hotkey-dialog .bp3-dialog-body{\n    margin:0;\n    padding:0; }\n  .bp3-hotkey-dialog .bp3-hotkey-label{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1; }\n\n.bp3-hotkey-column{\n  margin:auto;\n  max-height:80vh;\n  overflow-y:auto;\n  padding:30px; }\n  .bp3-hotkey-column .bp3-heading{\n    margin-bottom:20px; }\n    .bp3-hotkey-column .bp3-heading:not(:first-child){\n      margin-top:40px; }\n\n.bp3-hotkey{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:justify;\n      -ms-flex-pack:justify;\n          justify-content:space-between;\n  margin-left:0;\n  margin-right:0; }\n  .bp3-hotkey:not(:last-child){\n    margin-bottom:10px; }\n.bp3-icon{\n  display:inline-block;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  vertical-align:text-bottom; }\n  .bp3-icon:not(:empty)::before{\n    content:\"\" !important;\n    content:unset !important; }\n  .bp3-icon > svg{\n    display:block; }\n    .bp3-icon > svg:not([fill]){\n      fill:currentColor; }\n\n.bp3-icon.bp3-intent-primary, .bp3-icon-standard.bp3-intent-primary, .bp3-icon-large.bp3-intent-primary{\n  color:#106ba3; }\n  .bp3-dark .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-icon-large.bp3-intent-primary{\n    color:#48aff0; }\n\n.bp3-icon.bp3-intent-success, .bp3-icon-standard.bp3-intent-success, .bp3-icon-large.bp3-intent-success{\n  color:#0d8050; }\n  .bp3-dark .bp3-icon.bp3-intent-success, .bp3-dark .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-icon-large.bp3-intent-success{\n    color:#3dcc91; }\n\n.bp3-icon.bp3-intent-warning, .bp3-icon-standard.bp3-intent-warning, .bp3-icon-large.bp3-intent-warning{\n  color:#bf7326; }\n  .bp3-dark .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-icon-large.bp3-intent-warning{\n    color:#ffb366; }\n\n.bp3-icon.bp3-intent-danger, .bp3-icon-standard.bp3-intent-danger, .bp3-icon-large.bp3-intent-danger{\n  color:#c23030; }\n  .bp3-dark .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-icon-large.bp3-intent-danger{\n    color:#ff7373; }\n\nspan.bp3-icon-standard{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon-large{\n  font-family:\"Icons20\", sans-serif;\n  font-size:20px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon:empty{\n  font-family:\"Icons20\";\n  font-size:inherit;\n  font-style:normal;\n  font-weight:400;\n  line-height:1; }\n  span.bp3-icon:empty::before{\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased; }\n\n.bp3-icon-add::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-artifact::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-folder::before{\n  content:\"\"; }\n\n.bp3-icon-airplane::before{\n  content:\"\"; }\n\n.bp3-icon-align-center::before{\n  content:\"\"; }\n\n.bp3-icon-align-justify::before{\n  content:\"\"; }\n\n.bp3-icon-align-left::before{\n  content:\"\"; }\n\n.bp3-icon-align-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-horizontal-center::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-left::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-top::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-vertical-center::before{\n  content:\"\"; }\n\n.bp3-icon-annotation::before{\n  content:\"\"; }\n\n.bp3-icon-application::before{\n  content:\"\"; }\n\n.bp3-icon-applications::before{\n  content:\"\"; }\n\n.bp3-icon-archive::before{\n  content:\"\"; }\n\n.bp3-icon-arrow-bottom-left::before{\n  content:\"↙\"; }\n\n.bp3-icon-arrow-bottom-right::before{\n  content:\"↘\"; }\n\n.bp3-icon-arrow-down::before{\n  content:\"↓\"; }\n\n.bp3-icon-arrow-left::before{\n  content:\"←\"; }\n\n.bp3-icon-arrow-right::before{\n  content:\"→\"; }\n\n.bp3-icon-arrow-top-left::before{\n  content:\"↖\"; }\n\n.bp3-icon-arrow-top-right::before{\n  content:\"↗\"; }\n\n.bp3-icon-arrow-up::before{\n  content:\"↑\"; }\n\n.bp3-icon-arrows-horizontal::before{\n  content:\"↔\"; }\n\n.bp3-icon-arrows-vertical::before{\n  content:\"↕\"; }\n\n.bp3-icon-asterisk::before{\n  content:\"*\"; }\n\n.bp3-icon-automatic-updates::before{\n  content:\"\"; }\n\n.bp3-icon-badge::before{\n  content:\"\"; }\n\n.bp3-icon-ban-circle::before{\n  content:\"\"; }\n\n.bp3-icon-bank-account::before{\n  content:\"\"; }\n\n.bp3-icon-barcode::before{\n  content:\"\"; }\n\n.bp3-icon-blank::before{\n  content:\"\"; }\n\n.bp3-icon-blocked-person::before{\n  content:\"\"; }\n\n.bp3-icon-bold::before{\n  content:\"\"; }\n\n.bp3-icon-book::before{\n  content:\"\"; }\n\n.bp3-icon-bookmark::before{\n  content:\"\"; }\n\n.bp3-icon-box::before{\n  content:\"\"; }\n\n.bp3-icon-briefcase::before{\n  content:\"\"; }\n\n.bp3-icon-bring-data::before{\n  content:\"\"; }\n\n.bp3-icon-build::before{\n  content:\"\"; }\n\n.bp3-icon-calculator::before{\n  content:\"\"; }\n\n.bp3-icon-calendar::before{\n  content:\"\"; }\n\n.bp3-icon-camera::before{\n  content:\"\"; }\n\n.bp3-icon-caret-down::before{\n  content:\"⌄\"; }\n\n.bp3-icon-caret-left::before{\n  content:\"〈\"; }\n\n.bp3-icon-caret-right::before{\n  content:\"〉\"; }\n\n.bp3-icon-caret-up::before{\n  content:\"⌃\"; }\n\n.bp3-icon-cell-tower::before{\n  content:\"\"; }\n\n.bp3-icon-changes::before{\n  content:\"\"; }\n\n.bp3-icon-chart::before{\n  content:\"\"; }\n\n.bp3-icon-chat::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-backward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-forward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-circle::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-down::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-left::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-right::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-up::before{\n  content:\"\"; }\n\n.bp3-icon-citation::before{\n  content:\"\"; }\n\n.bp3-icon-clean::before{\n  content:\"\"; }\n\n.bp3-icon-clipboard::before{\n  content:\"\"; }\n\n.bp3-icon-cloud::before{\n  content:\"☁\"; }\n\n.bp3-icon-cloud-download::before{\n  content:\"\"; }\n\n.bp3-icon-cloud-upload::before{\n  content:\"\"; }\n\n.bp3-icon-code::before{\n  content:\"\"; }\n\n.bp3-icon-code-block::before{\n  content:\"\"; }\n\n.bp3-icon-cog::before{\n  content:\"\"; }\n\n.bp3-icon-collapse-all::before{\n  content:\"\"; }\n\n.bp3-icon-column-layout::before{\n  content:\"\"; }\n\n.bp3-icon-comment::before{\n  content:\"\"; }\n\n.bp3-icon-comparison::before{\n  content:\"\"; }\n\n.bp3-icon-compass::before{\n  content:\"\"; }\n\n.bp3-icon-compressed::before{\n  content:\"\"; }\n\n.bp3-icon-confirm::before{\n  content:\"\"; }\n\n.bp3-icon-console::before{\n  content:\"\"; }\n\n.bp3-icon-contrast::before{\n  content:\"\"; }\n\n.bp3-icon-control::before{\n  content:\"\"; }\n\n.bp3-icon-credit-card::before{\n  content:\"\"; }\n\n.bp3-icon-cross::before{\n  content:\"✗\"; }\n\n.bp3-icon-crown::before{\n  content:\"\"; }\n\n.bp3-icon-cube::before{\n  content:\"\"; }\n\n.bp3-icon-cube-add::before{\n  content:\"\"; }\n\n.bp3-icon-cube-remove::before{\n  content:\"\"; }\n\n.bp3-icon-curved-range-chart::before{\n  content:\"\"; }\n\n.bp3-icon-cut::before{\n  content:\"\"; }\n\n.bp3-icon-dashboard::before{\n  content:\"\"; }\n\n.bp3-icon-data-lineage::before{\n  content:\"\"; }\n\n.bp3-icon-database::before{\n  content:\"\"; }\n\n.bp3-icon-delete::before{\n  content:\"\"; }\n\n.bp3-icon-delta::before{\n  content:\"Δ\"; }\n\n.bp3-icon-derive-column::before{\n  content:\"\"; }\n\n.bp3-icon-desktop::before{\n  content:\"\"; }\n\n.bp3-icon-diagnosis::before{\n  content:\"\"; }\n\n.bp3-icon-diagram-tree::before{\n  content:\"\"; }\n\n.bp3-icon-direction-left::before{\n  content:\"\"; }\n\n.bp3-icon-direction-right::before{\n  content:\"\"; }\n\n.bp3-icon-disable::before{\n  content:\"\"; }\n\n.bp3-icon-document::before{\n  content:\"\"; }\n\n.bp3-icon-document-open::before{\n  content:\"\"; }\n\n.bp3-icon-document-share::before{\n  content:\"\"; }\n\n.bp3-icon-dollar::before{\n  content:\"$\"; }\n\n.bp3-icon-dot::before{\n  content:\"•\"; }\n\n.bp3-icon-double-caret-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-double-caret-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-doughnut-chart::before{\n  content:\"\"; }\n\n.bp3-icon-download::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-draw::before{\n  content:\"\"; }\n\n.bp3-icon-drive-time::before{\n  content:\"\"; }\n\n.bp3-icon-duplicate::before{\n  content:\"\"; }\n\n.bp3-icon-edit::before{\n  content:\"✎\"; }\n\n.bp3-icon-eject::before{\n  content:\"⏏\"; }\n\n.bp3-icon-endorsed::before{\n  content:\"\"; }\n\n.bp3-icon-envelope::before{\n  content:\"✉\"; }\n\n.bp3-icon-equals::before{\n  content:\"\"; }\n\n.bp3-icon-eraser::before{\n  content:\"\"; }\n\n.bp3-icon-error::before{\n  content:\"\"; }\n\n.bp3-icon-euro::before{\n  content:\"€\"; }\n\n.bp3-icon-exchange::before{\n  content:\"\"; }\n\n.bp3-icon-exclude-row::before{\n  content:\"\"; }\n\n.bp3-icon-expand-all::before{\n  content:\"\"; }\n\n.bp3-icon-export::before{\n  content:\"\"; }\n\n.bp3-icon-eye-off::before{\n  content:\"\"; }\n\n.bp3-icon-eye-on::before{\n  content:\"\"; }\n\n.bp3-icon-eye-open::before{\n  content:\"\"; }\n\n.bp3-icon-fast-backward::before{\n  content:\"\"; }\n\n.bp3-icon-fast-forward::before{\n  content:\"\"; }\n\n.bp3-icon-feed::before{\n  content:\"\"; }\n\n.bp3-icon-feed-subscribed::before{\n  content:\"\"; }\n\n.bp3-icon-film::before{\n  content:\"\"; }\n\n.bp3-icon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-filter-keep::before{\n  content:\"\"; }\n\n.bp3-icon-filter-list::before{\n  content:\"\"; }\n\n.bp3-icon-filter-open::before{\n  content:\"\"; }\n\n.bp3-icon-filter-remove::before{\n  content:\"\"; }\n\n.bp3-icon-flag::before{\n  content:\"⚑\"; }\n\n.bp3-icon-flame::before{\n  content:\"\"; }\n\n.bp3-icon-flash::before{\n  content:\"\"; }\n\n.bp3-icon-floppy-disk::before{\n  content:\"\"; }\n\n.bp3-icon-flow-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flow-end::before{\n  content:\"\"; }\n\n.bp3-icon-flow-linear::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flows::before{\n  content:\"\"; }\n\n.bp3-icon-folder-close::before{\n  content:\"\"; }\n\n.bp3-icon-folder-new::before{\n  content:\"\"; }\n\n.bp3-icon-folder-open::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared-open::before{\n  content:\"\"; }\n\n.bp3-icon-follower::before{\n  content:\"\"; }\n\n.bp3-icon-following::before{\n  content:\"\"; }\n\n.bp3-icon-font::before{\n  content:\"\"; }\n\n.bp3-icon-fork::before{\n  content:\"\"; }\n\n.bp3-icon-form::before{\n  content:\"\"; }\n\n.bp3-icon-full-circle::before{\n  content:\"\"; }\n\n.bp3-icon-full-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-fullscreen::before{\n  content:\"\"; }\n\n.bp3-icon-function::before{\n  content:\"\"; }\n\n.bp3-icon-gantt-chart::before{\n  content:\"\"; }\n\n.bp3-icon-geolocation::before{\n  content:\"\"; }\n\n.bp3-icon-geosearch::before{\n  content:\"\"; }\n\n.bp3-icon-git-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-commit::before{\n  content:\"\"; }\n\n.bp3-icon-git-merge::before{\n  content:\"\"; }\n\n.bp3-icon-git-new-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-pull::before{\n  content:\"\"; }\n\n.bp3-icon-git-push::before{\n  content:\"\"; }\n\n.bp3-icon-git-repo::before{\n  content:\"\"; }\n\n.bp3-icon-glass::before{\n  content:\"\"; }\n\n.bp3-icon-globe::before{\n  content:\"\"; }\n\n.bp3-icon-globe-network::before{\n  content:\"\"; }\n\n.bp3-icon-graph::before{\n  content:\"\"; }\n\n.bp3-icon-graph-remove::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-grid::before{\n  content:\"\"; }\n\n.bp3-icon-grid-view::before{\n  content:\"\"; }\n\n.bp3-icon-group-objects::before{\n  content:\"\"; }\n\n.bp3-icon-grouped-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-hand::before{\n  content:\"\"; }\n\n.bp3-icon-hand-down::before{\n  content:\"\"; }\n\n.bp3-icon-hand-left::before{\n  content:\"\"; }\n\n.bp3-icon-hand-right::before{\n  content:\"\"; }\n\n.bp3-icon-hand-up::before{\n  content:\"\"; }\n\n.bp3-icon-header::before{\n  content:\"\"; }\n\n.bp3-icon-header-one::before{\n  content:\"\"; }\n\n.bp3-icon-header-two::before{\n  content:\"\"; }\n\n.bp3-icon-headset::before{\n  content:\"\"; }\n\n.bp3-icon-heart::before{\n  content:\"♥\"; }\n\n.bp3-icon-heart-broken::before{\n  content:\"\"; }\n\n.bp3-icon-heat-grid::before{\n  content:\"\"; }\n\n.bp3-icon-heatmap::before{\n  content:\"\"; }\n\n.bp3-icon-help::before{\n  content:\"?\"; }\n\n.bp3-icon-helper-management::before{\n  content:\"\"; }\n\n.bp3-icon-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-history::before{\n  content:\"\"; }\n\n.bp3-icon-home::before{\n  content:\"⌂\"; }\n\n.bp3-icon-horizontal-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-id-number::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-left::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-right::before{\n  content:\"\"; }\n\n.bp3-icon-import::before{\n  content:\"\"; }\n\n.bp3-icon-inbox::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-geo::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-search::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-update::before{\n  content:\"\"; }\n\n.bp3-icon-info-sign::before{\n  content:\"ℹ\"; }\n\n.bp3-icon-inheritance::before{\n  content:\"\"; }\n\n.bp3-icon-inner-join::before{\n  content:\"\"; }\n\n.bp3-icon-insert::before{\n  content:\"\"; }\n\n.bp3-icon-intersection::before{\n  content:\"\"; }\n\n.bp3-icon-ip-address::before{\n  content:\"\"; }\n\n.bp3-icon-issue::before{\n  content:\"\"; }\n\n.bp3-icon-issue-closed::before{\n  content:\"\"; }\n\n.bp3-icon-issue-new::before{\n  content:\"\"; }\n\n.bp3-icon-italic::before{\n  content:\"\"; }\n\n.bp3-icon-join-table::before{\n  content:\"\"; }\n\n.bp3-icon-key::before{\n  content:\"\"; }\n\n.bp3-icon-key-backspace::before{\n  content:\"\"; }\n\n.bp3-icon-key-command::before{\n  content:\"\"; }\n\n.bp3-icon-key-control::before{\n  content:\"\"; }\n\n.bp3-icon-key-delete::before{\n  content:\"\"; }\n\n.bp3-icon-key-enter::before{\n  content:\"\"; }\n\n.bp3-icon-key-escape::before{\n  content:\"\"; }\n\n.bp3-icon-key-option::before{\n  content:\"\"; }\n\n.bp3-icon-key-shift::before{\n  content:\"\"; }\n\n.bp3-icon-key-tab::before{\n  content:\"\"; }\n\n.bp3-icon-known-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-lab-test::before{\n  content:\"\"; }\n\n.bp3-icon-label::before{\n  content:\"\"; }\n\n.bp3-icon-layer::before{\n  content:\"\"; }\n\n.bp3-icon-layers::before{\n  content:\"\"; }\n\n.bp3-icon-layout::before{\n  content:\"\"; }\n\n.bp3-icon-layout-auto::before{\n  content:\"\"; }\n\n.bp3-icon-layout-balloon::before{\n  content:\"\"; }\n\n.bp3-icon-layout-circle::before{\n  content:\"\"; }\n\n.bp3-icon-layout-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-group-by::before{\n  content:\"\"; }\n\n.bp3-icon-layout-hierarchy::before{\n  content:\"\"; }\n\n.bp3-icon-layout-linear::before{\n  content:\"\"; }\n\n.bp3-icon-layout-skew-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-sorted-clusters::before{\n  content:\"\"; }\n\n.bp3-icon-learning::before{\n  content:\"\"; }\n\n.bp3-icon-left-join::before{\n  content:\"\"; }\n\n.bp3-icon-less-than::before{\n  content:\"\"; }\n\n.bp3-icon-less-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-lifesaver::before{\n  content:\"\"; }\n\n.bp3-icon-lightbulb::before{\n  content:\"\"; }\n\n.bp3-icon-link::before{\n  content:\"\"; }\n\n.bp3-icon-list::before{\n  content:\"☰\"; }\n\n.bp3-icon-list-columns::before{\n  content:\"\"; }\n\n.bp3-icon-list-detail-view::before{\n  content:\"\"; }\n\n.bp3-icon-locate::before{\n  content:\"\"; }\n\n.bp3-icon-lock::before{\n  content:\"\"; }\n\n.bp3-icon-log-in::before{\n  content:\"\"; }\n\n.bp3-icon-log-out::before{\n  content:\"\"; }\n\n.bp3-icon-manual::before{\n  content:\"\"; }\n\n.bp3-icon-manually-entered-data::before{\n  content:\"\"; }\n\n.bp3-icon-map::before{\n  content:\"\"; }\n\n.bp3-icon-map-create::before{\n  content:\"\"; }\n\n.bp3-icon-map-marker::before{\n  content:\"\"; }\n\n.bp3-icon-maximize::before{\n  content:\"\"; }\n\n.bp3-icon-media::before{\n  content:\"\"; }\n\n.bp3-icon-menu::before{\n  content:\"\"; }\n\n.bp3-icon-menu-closed::before{\n  content:\"\"; }\n\n.bp3-icon-menu-open::before{\n  content:\"\"; }\n\n.bp3-icon-merge-columns::before{\n  content:\"\"; }\n\n.bp3-icon-merge-links::before{\n  content:\"\"; }\n\n.bp3-icon-minimize::before{\n  content:\"\"; }\n\n.bp3-icon-minus::before{\n  content:\"−\"; }\n\n.bp3-icon-mobile-phone::before{\n  content:\"\"; }\n\n.bp3-icon-mobile-video::before{\n  content:\"\"; }\n\n.bp3-icon-moon::before{\n  content:\"\"; }\n\n.bp3-icon-more::before{\n  content:\"\"; }\n\n.bp3-icon-mountain::before{\n  content:\"\"; }\n\n.bp3-icon-move::before{\n  content:\"\"; }\n\n.bp3-icon-mugshot::before{\n  content:\"\"; }\n\n.bp3-icon-multi-select::before{\n  content:\"\"; }\n\n.bp3-icon-music::before{\n  content:\"\"; }\n\n.bp3-icon-new-drawing::before{\n  content:\"\"; }\n\n.bp3-icon-new-grid-item::before{\n  content:\"\"; }\n\n.bp3-icon-new-layer::before{\n  content:\"\"; }\n\n.bp3-icon-new-layers::before{\n  content:\"\"; }\n\n.bp3-icon-new-link::before{\n  content:\"\"; }\n\n.bp3-icon-new-object::before{\n  content:\"\"; }\n\n.bp3-icon-new-person::before{\n  content:\"\"; }\n\n.bp3-icon-new-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-new-text-box::before{\n  content:\"\"; }\n\n.bp3-icon-ninja::before{\n  content:\"\"; }\n\n.bp3-icon-not-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-notifications::before{\n  content:\"\"; }\n\n.bp3-icon-notifications-updated::before{\n  content:\"\"; }\n\n.bp3-icon-numbered-list::before{\n  content:\"\"; }\n\n.bp3-icon-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-office::before{\n  content:\"\"; }\n\n.bp3-icon-offline::before{\n  content:\"\"; }\n\n.bp3-icon-oil-field::before{\n  content:\"\"; }\n\n.bp3-icon-one-column::before{\n  content:\"\"; }\n\n.bp3-icon-outdated::before{\n  content:\"\"; }\n\n.bp3-icon-page-layout::before{\n  content:\"\"; }\n\n.bp3-icon-panel-stats::before{\n  content:\"\"; }\n\n.bp3-icon-panel-table::before{\n  content:\"\"; }\n\n.bp3-icon-paperclip::before{\n  content:\"\"; }\n\n.bp3-icon-paragraph::before{\n  content:\"\"; }\n\n.bp3-icon-path::before{\n  content:\"\"; }\n\n.bp3-icon-path-search::before{\n  content:\"\"; }\n\n.bp3-icon-pause::before{\n  content:\"\"; }\n\n.bp3-icon-people::before{\n  content:\"\"; }\n\n.bp3-icon-percentage::before{\n  content:\"\"; }\n\n.bp3-icon-person::before{\n  content:\"\"; }\n\n.bp3-icon-phone::before{\n  content:\"☎\"; }\n\n.bp3-icon-pie-chart::before{\n  content:\"\"; }\n\n.bp3-icon-pin::before{\n  content:\"\"; }\n\n.bp3-icon-pivot::before{\n  content:\"\"; }\n\n.bp3-icon-pivot-table::before{\n  content:\"\"; }\n\n.bp3-icon-play::before{\n  content:\"\"; }\n\n.bp3-icon-plus::before{\n  content:\"+\"; }\n\n.bp3-icon-polygon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-power::before{\n  content:\"\"; }\n\n.bp3-icon-predictive-analysis::before{\n  content:\"\"; }\n\n.bp3-icon-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-presentation::before{\n  content:\"\"; }\n\n.bp3-icon-print::before{\n  content:\"⎙\"; }\n\n.bp3-icon-projects::before{\n  content:\"\"; }\n\n.bp3-icon-properties::before{\n  content:\"\"; }\n\n.bp3-icon-property::before{\n  content:\"\"; }\n\n.bp3-icon-publish-function::before{\n  content:\"\"; }\n\n.bp3-icon-pulse::before{\n  content:\"\"; }\n\n.bp3-icon-random::before{\n  content:\"\"; }\n\n.bp3-icon-record::before{\n  content:\"\"; }\n\n.bp3-icon-redo::before{\n  content:\"\"; }\n\n.bp3-icon-refresh::before{\n  content:\"\"; }\n\n.bp3-icon-regression-chart::before{\n  content:\"\"; }\n\n.bp3-icon-remove::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-repeat::before{\n  content:\"\"; }\n\n.bp3-icon-reset::before{\n  content:\"\"; }\n\n.bp3-icon-resolve::before{\n  content:\"\"; }\n\n.bp3-icon-rig::before{\n  content:\"\"; }\n\n.bp3-icon-right-join::before{\n  content:\"\"; }\n\n.bp3-icon-ring::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-document::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-page::before{\n  content:\"\"; }\n\n.bp3-icon-satellite::before{\n  content:\"\"; }\n\n.bp3-icon-saved::before{\n  content:\"\"; }\n\n.bp3-icon-scatter-plot::before{\n  content:\"\"; }\n\n.bp3-icon-search::before{\n  content:\"\"; }\n\n.bp3-icon-search-around::before{\n  content:\"\"; }\n\n.bp3-icon-search-template::before{\n  content:\"\"; }\n\n.bp3-icon-search-text::before{\n  content:\"\"; }\n\n.bp3-icon-segmented-control::before{\n  content:\"\"; }\n\n.bp3-icon-select::before{\n  content:\"\"; }\n\n.bp3-icon-selection::before{\n  content:\"⦿\"; }\n\n.bp3-icon-send-to::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-graph::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-map::before{\n  content:\"\"; }\n\n.bp3-icon-series-add::before{\n  content:\"\"; }\n\n.bp3-icon-series-configuration::before{\n  content:\"\"; }\n\n.bp3-icon-series-derived::before{\n  content:\"\"; }\n\n.bp3-icon-series-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-series-search::before{\n  content:\"\"; }\n\n.bp3-icon-settings::before{\n  content:\"\"; }\n\n.bp3-icon-share::before{\n  content:\"\"; }\n\n.bp3-icon-shield::before{\n  content:\"\"; }\n\n.bp3-icon-shop::before{\n  content:\"\"; }\n\n.bp3-icon-shopping-cart::before{\n  content:\"\"; }\n\n.bp3-icon-signal-search::before{\n  content:\"\"; }\n\n.bp3-icon-sim-card::before{\n  content:\"\"; }\n\n.bp3-icon-slash::before{\n  content:\"\"; }\n\n.bp3-icon-small-cross::before{\n  content:\"\"; }\n\n.bp3-icon-small-minus::before{\n  content:\"\"; }\n\n.bp3-icon-small-plus::before{\n  content:\"\"; }\n\n.bp3-icon-small-tick::before{\n  content:\"\"; }\n\n.bp3-icon-snowflake::before{\n  content:\"\"; }\n\n.bp3-icon-social-media::before{\n  content:\"\"; }\n\n.bp3-icon-sort::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-asc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-split-columns::before{\n  content:\"\"; }\n\n.bp3-icon-square::before{\n  content:\"\"; }\n\n.bp3-icon-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-star::before{\n  content:\"★\"; }\n\n.bp3-icon-star-empty::before{\n  content:\"☆\"; }\n\n.bp3-icon-step-backward::before{\n  content:\"\"; }\n\n.bp3-icon-step-chart::before{\n  content:\"\"; }\n\n.bp3-icon-step-forward::before{\n  content:\"\"; }\n\n.bp3-icon-stop::before{\n  content:\"\"; }\n\n.bp3-icon-stopwatch::before{\n  content:\"\"; }\n\n.bp3-icon-strikethrough::before{\n  content:\"\"; }\n\n.bp3-icon-style::before{\n  content:\"\"; }\n\n.bp3-icon-swap-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-swap-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-circle::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-cross::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-diamond::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-square::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-down::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-up::before{\n  content:\"\"; }\n\n.bp3-icon-tag::before{\n  content:\"\"; }\n\n.bp3-icon-take-action::before{\n  content:\"\"; }\n\n.bp3-icon-taxi::before{\n  content:\"\"; }\n\n.bp3-icon-text-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-th::before{\n  content:\"\"; }\n\n.bp3-icon-th-derived::before{\n  content:\"\"; }\n\n.bp3-icon-th-disconnect::before{\n  content:\"\"; }\n\n.bp3-icon-th-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-th-list::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-down::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-up::before{\n  content:\"\"; }\n\n.bp3-icon-tick::before{\n  content:\"✓\"; }\n\n.bp3-icon-tick-circle::before{\n  content:\"\"; }\n\n.bp3-icon-time::before{\n  content:\"⏲\"; }\n\n.bp3-icon-timeline-area-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-events::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-line-chart::before{\n  content:\"\"; }\n\n.bp3-icon-tint::before{\n  content:\"\"; }\n\n.bp3-icon-torch::before{\n  content:\"\"; }\n\n.bp3-icon-tractor::before{\n  content:\"\"; }\n\n.bp3-icon-train::before{\n  content:\"\"; }\n\n.bp3-icon-translate::before{\n  content:\"\"; }\n\n.bp3-icon-trash::before{\n  content:\"\"; }\n\n.bp3-icon-tree::before{\n  content:\"\"; }\n\n.bp3-icon-trending-down::before{\n  content:\"\"; }\n\n.bp3-icon-trending-up::before{\n  content:\"\"; }\n\n.bp3-icon-truck::before{\n  content:\"\"; }\n\n.bp3-icon-two-columns::before{\n  content:\"\"; }\n\n.bp3-icon-unarchive::before{\n  content:\"\"; }\n\n.bp3-icon-underline::before{\n  content:\"⎁\"; }\n\n.bp3-icon-undo::before{\n  content:\"⎌\"; }\n\n.bp3-icon-ungroup-objects::before{\n  content:\"\"; }\n\n.bp3-icon-unknown-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-unlock::before{\n  content:\"\"; }\n\n.bp3-icon-unpin::before{\n  content:\"\"; }\n\n.bp3-icon-unresolve::before{\n  content:\"\"; }\n\n.bp3-icon-updated::before{\n  content:\"\"; }\n\n.bp3-icon-upload::before{\n  content:\"\"; }\n\n.bp3-icon-user::before{\n  content:\"\"; }\n\n.bp3-icon-variable::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-video::before{\n  content:\"\"; }\n\n.bp3-icon-volume-down::before{\n  content:\"\"; }\n\n.bp3-icon-volume-off::before{\n  content:\"\"; }\n\n.bp3-icon-volume-up::before{\n  content:\"\"; }\n\n.bp3-icon-walk::before{\n  content:\"\"; }\n\n.bp3-icon-warning-sign::before{\n  content:\"\"; }\n\n.bp3-icon-waterfall-chart::before{\n  content:\"\"; }\n\n.bp3-icon-widget::before{\n  content:\"\"; }\n\n.bp3-icon-widget-button::before{\n  content:\"\"; }\n\n.bp3-icon-widget-footer::before{\n  content:\"\"; }\n\n.bp3-icon-widget-header::before{\n  content:\"\"; }\n\n.bp3-icon-wrench::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-in::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-out::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-to-fit::before{\n  content:\"\"; }\n.bp3-submenu > .bp3-popover-wrapper{\n  display:block; }\n\n.bp3-submenu .bp3-popover-target{\n  display:block; }\n  .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{ }\n\n.bp3-submenu.bp3-popover{\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0 5px; }\n  .bp3-submenu.bp3-popover > .bp3-popover-content{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-submenu.bp3-popover, .bp3-submenu.bp3-popover.bp3-dark{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-dark .bp3-submenu.bp3-popover > .bp3-popover-content, .bp3-submenu.bp3-popover.bp3-dark > .bp3-popover-content{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n.bp3-menu{\n  background:#ffffff;\n  border-radius:3px;\n  color:#182026;\n  list-style:none;\n  margin:0;\n  min-width:180px;\n  padding:5px;\n  text-align:left; }\n\n.bp3-menu-divider{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px; }\n  .bp3-dark .bp3-menu-divider{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-menu-item{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  border-radius:2px;\n  color:inherit;\n  line-height:20px;\n  padding:5px 7px;\n  text-decoration:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-menu-item > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-menu-item > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > *{\n    margin-right:7px; }\n  .bp3-menu-item:empty::before,\n  .bp3-menu-item > :last-child{\n    margin-right:0; }\n  .bp3-menu-item > .bp3-fill{\n    word-break:break-word; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    background-color:rgba(167, 182, 194, 0.3);\n    cursor:pointer;\n    text-decoration:none; }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-dark .bp3-menu-item{\n    color:inherit; }\n    .bp3-dark .bp3-menu-item:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n      background-color:rgba(138, 155, 168, 0.15);\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-disabled{\n      background-color:inherit;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-menu-item.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-primary::before, .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary:active, .bp3-menu-item.bp3-intent-primary:active::before, .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-success::before, .bp3-menu-item.bp3-intent-success::after,\n    .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-menu-item.bp3-intent-success:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success:active, .bp3-menu-item.bp3-intent-success:active::before, .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-warning::before, .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning:active, .bp3-menu-item.bp3-intent-warning:active::before, .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-danger::before, .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger:active, .bp3-menu-item.bp3-intent-danger:active::before, .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    margin-right:7px; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > .bp3-icon{\n    color:#5c7080;\n    margin-top:2px; }\n  .bp3-menu-item .bp3-menu-item-label{\n    color:#5c7080; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    color:inherit; }\n  .bp3-menu-item.bp3-active, .bp3-menu-item:active{\n    background-color:rgba(115, 134, 148, 0.3); }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit !important;\n    color:rgba(92, 112, 128, 0.6) !important;\n    cursor:not-allowed !important;\n    outline:none !important; }\n    .bp3-menu-item.bp3-disabled::before,\n    .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-large .bp3-menu-item{\n    font-size:16px;\n    line-height:22px;\n    padding:9px 7px; }\n    .bp3-large .bp3-menu-item .bp3-icon{\n      margin-top:3px; }\n    .bp3-large .bp3-menu-item::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      margin-right:10px;\n      margin-top:1px; }\n\nbutton.bp3-menu-item{\n  background:none;\n  border:none;\n  text-align:left;\n  width:100%; }\n.bp3-menu-header{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px;\n  cursor:default;\n  padding-left:2px; }\n  .bp3-dark .bp3-menu-header{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n  .bp3-menu-header:first-of-type{\n    border-top:none; }\n  .bp3-menu-header > h6{\n    color:#182026;\n    font-weight:600;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    line-height:17px;\n    margin:0;\n    padding:10px 7px 0 1px; }\n    .bp3-dark .bp3-menu-header > h6{\n      color:#f5f8fa; }\n  .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n  .bp3-large .bp3-menu-header > h6{\n    font-size:18px;\n    padding-bottom:5px;\n    padding-top:15px; }\n  .bp3-large .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n\n.bp3-dark .bp3-menu{\n  background:#30404d;\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-menu-item{ }\n  .bp3-dark .bp3-menu-item.bp3-intent-primary{\n    color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary::before, .bp3-dark .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary:active, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-success{\n    color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success::before, .bp3-dark .bp3-menu-item.bp3-intent-success::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success:active, .bp3-dark .bp3-menu-item.bp3-intent-success:active::before, .bp3-dark .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-warning{\n    color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning::before, .bp3-dark .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning:active, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-danger{\n    color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger::before, .bp3-dark .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger:active, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item::before,\n  .bp3-dark .bp3-menu-item > .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item .bp3-menu-item-label{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item.bp3-active, .bp3-dark .bp3-menu-item:active{\n    background-color:rgba(138, 155, 168, 0.3); }\n  .bp3-dark .bp3-menu-item.bp3-disabled{\n    color:rgba(167, 182, 194, 0.6) !important; }\n    .bp3-dark .bp3-menu-item.bp3-disabled::before,\n    .bp3-dark .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-dark .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(167, 182, 194, 0.6) !important; }\n\n.bp3-dark .bp3-menu-divider,\n.bp3-dark .bp3-menu-header{\n  border-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-dark .bp3-menu-header > h6{\n  color:#f5f8fa; }\n\n.bp3-label .bp3-menu{\n  margin-top:5px; }\n.bp3-navbar{\n  background-color:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  height:50px;\n  padding:0 15px;\n  position:relative;\n  width:100%;\n  z-index:10; }\n  .bp3-navbar.bp3-dark,\n  .bp3-dark .bp3-navbar{\n    background-color:#394b59; }\n  .bp3-navbar.bp3-dark{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-navbar{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-navbar.bp3-fixed-top{\n    left:0;\n    position:fixed;\n    right:0;\n    top:0; }\n\n.bp3-navbar-heading{\n  font-size:16px;\n  margin-right:15px; }\n\n.bp3-navbar-group{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:50px; }\n  .bp3-navbar-group.bp3-align-left{\n    float:left; }\n  .bp3-navbar-group.bp3-align-right{\n    float:right; }\n\n.bp3-navbar-divider{\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  height:20px;\n  margin:0 10px; }\n  .bp3-dark .bp3-navbar-divider{\n    border-left-color:rgba(255, 255, 255, 0.15); }\n.bp3-non-ideal-state{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  height:100%;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  text-align:center;\n  width:100%; }\n  .bp3-non-ideal-state > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-non-ideal-state > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-non-ideal-state::before,\n  .bp3-non-ideal-state > *{\n    margin-bottom:20px; }\n  .bp3-non-ideal-state:empty::before,\n  .bp3-non-ideal-state > :last-child{\n    margin-bottom:0; }\n  .bp3-non-ideal-state > *{\n    max-width:400px; }\n\n.bp3-non-ideal-state-visual{\n  color:rgba(92, 112, 128, 0.6);\n  font-size:60px; }\n  .bp3-dark .bp3-non-ideal-state-visual{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-overflow-list{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:nowrap;\n      flex-wrap:nowrap;\n  min-width:0; }\n\n.bp3-overflow-list-spacer{\n  -ms-flex-negative:1;\n      flex-shrink:1;\n  width:1px; }\n\nbody.bp3-overlay-open{\n  overflow:hidden; }\n\n.bp3-overlay{\n  bottom:0;\n  left:0;\n  position:static;\n  right:0;\n  top:0;\n  z-index:20; }\n  .bp3-overlay:not(.bp3-overlay-open){\n    pointer-events:none; }\n  .bp3-overlay.bp3-overlay-container{\n    overflow:hidden;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-scroll-container{\n    overflow:auto;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-scroll-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-inline{\n    display:inline;\n    overflow:visible; }\n\n.bp3-overlay-content{\n  position:fixed;\n  z-index:20; }\n  .bp3-overlay-inline .bp3-overlay-content,\n  .bp3-overlay-scroll-container .bp3-overlay-content{\n    position:absolute; }\n\n.bp3-overlay-backdrop{\n  bottom:0;\n  left:0;\n  position:fixed;\n  right:0;\n  top:0;\n  opacity:1;\n  background-color:rgba(16, 22, 26, 0.7);\n  overflow:auto;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  z-index:20; }\n  .bp3-overlay-backdrop.bp3-overlay-enter, .bp3-overlay-backdrop.bp3-overlay-appear{\n    opacity:0; }\n  .bp3-overlay-backdrop.bp3-overlay-enter-active, .bp3-overlay-backdrop.bp3-overlay-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop.bp3-overlay-exit{\n    opacity:1; }\n  .bp3-overlay-backdrop.bp3-overlay-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop:focus{\n    outline:none; }\n  .bp3-overlay-inline .bp3-overlay-backdrop{\n    position:absolute; }\n.bp3-panel-stack{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-view{\n    background-color:#30404d; }\n  .bp3-panel-stack-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter, .bp3-panel-stack-push .bp3-panel-stack-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter-active, .bp3-panel-stack-push .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter, .bp3-panel-stack-pop .bp3-panel-stack-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter-active, .bp3-panel-stack-pop .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-panel-stack2{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack2-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack2-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack2-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack2-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack2-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack2-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-view{\n    background-color:#30404d; }\n  .bp3-panel-stack2-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter, .bp3-panel-stack2-push .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter-active, .bp3-panel-stack2-push .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter, .bp3-panel-stack2-pop .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter-active, .bp3-panel-stack2-pop .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-popover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  border-radius:3px;\n  display:inline-block;\n  z-index:20; }\n  .bp3-popover .bp3-popover-arrow{\n    height:30px;\n    position:absolute;\n    width:30px; }\n    .bp3-popover .bp3-popover-arrow::before{\n      height:20px;\n      margin:5px;\n      width:20px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover{\n    margin-bottom:17px;\n    margin-top:-17px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n      bottom:-11px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover{\n    margin-left:17px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n      left:-11px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover{\n    margin-top:17px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n      top:-11px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover{\n    margin-left:-17px;\n    margin-right:17px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n      right:-11px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-popover > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-popover > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n    top:-0.3934px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n    right:-0.3934px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n    left:-0.3934px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n    bottom:-0.3934px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-popover .bp3-popover-content{\n    background:#ffffff;\n    color:inherit; }\n  .bp3-popover .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-popover .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-popover .bp3-popover-arrow-fill{\n    fill:#ffffff; }\n  .bp3-popover-enter > .bp3-popover, .bp3-popover-appear > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3); }\n  .bp3-popover-enter-active > .bp3-popover, .bp3-popover-appear-active > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover-exit > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover .bp3-popover-content{\n    border-radius:3px;\n    position:relative; }\n  .bp3-popover.bp3-popover-content-sizing .bp3-popover-content{\n    max-width:350px;\n    padding:20px; }\n  .bp3-popover-target + .bp3-overlay .bp3-popover.bp3-popover-content-sizing{\n    width:350px; }\n  .bp3-popover.bp3-minimal{\n    margin:0 !important; }\n    .bp3-popover.bp3-minimal .bp3-popover-arrow{\n      display:none; }\n    .bp3-popover.bp3-minimal.bp3-popover{\n      -webkit-transform:scale(1);\n              transform:scale(1); }\n      .bp3-popover-enter > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-enter-active > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n      .bp3-popover-exit > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-exit-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover.bp3-dark,\n  .bp3-dark .bp3-popover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-popover .bp3-popover-content{\n      background:#30404d;\n      color:inherit; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-popover .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-fill{\n      fill:#30404d; }\n\n.bp3-popover-arrow::before{\n  border-radius:2px;\n  content:\"\";\n  display:block;\n  position:absolute;\n  -webkit-transform:rotate(45deg);\n          transform:rotate(45deg); }\n\n.bp3-tether-pinned .bp3-popover-arrow{\n  display:none; }\n\n.bp3-popover-backdrop{\n  background:rgba(255, 255, 255, 0); }\n\n.bp3-transition-container{\n  opacity:1;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  z-index:20; }\n  .bp3-transition-container.bp3-popover-enter, .bp3-transition-container.bp3-popover-appear{\n    opacity:0; }\n  .bp3-transition-container.bp3-popover-enter-active, .bp3-transition-container.bp3-popover-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container.bp3-popover-exit{\n    opacity:1; }\n  .bp3-transition-container.bp3-popover-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container:focus{\n    outline:none; }\n  .bp3-transition-container.bp3-popover-leave .bp3-popover-content{\n    pointer-events:none; }\n  .bp3-transition-container[data-x-out-of-boundaries]{\n    display:none; }\n\nspan.bp3-popover-target{\n  display:inline-block; }\n\n.bp3-popover-wrapper.bp3-fill{\n  width:100%; }\n\n.bp3-portal{\n  left:0;\n  position:absolute;\n  right:0;\n  top:0; }\n@-webkit-keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n@keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n\n.bp3-progress-bar{\n  background:rgba(92, 112, 128, 0.2);\n  border-radius:40px;\n  display:block;\n  height:8px;\n  overflow:hidden;\n  position:relative;\n  width:100%; }\n  .bp3-progress-bar .bp3-progress-meter{\n    background:linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%);\n    background-color:rgba(92, 112, 128, 0.8);\n    background-size:30px 30px;\n    border-radius:40px;\n    height:100%;\n    position:absolute;\n    -webkit-transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:100%; }\n  .bp3-progress-bar:not(.bp3-no-animation):not(.bp3-no-stripes) .bp3-progress-meter{\n    animation:linear-progress-bar-stripes 300ms linear infinite reverse; }\n  .bp3-progress-bar.bp3-no-stripes .bp3-progress-meter{\n    background-image:none; }\n\n.bp3-dark .bp3-progress-bar{\n  background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-progress-bar .bp3-progress-meter{\n    background-color:#8a9ba8; }\n\n.bp3-progress-bar.bp3-intent-primary .bp3-progress-meter{\n  background-color:#137cbd; }\n\n.bp3-progress-bar.bp3-intent-success .bp3-progress-meter{\n  background-color:#0f9960; }\n\n.bp3-progress-bar.bp3-intent-warning .bp3-progress-meter{\n  background-color:#d9822b; }\n\n.bp3-progress-bar.bp3-intent-danger .bp3-progress-meter{\n  background-color:#db3737; }\n@-webkit-keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n@keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n.bp3-skeleton{\n  -webkit-animation:1000ms linear infinite alternate skeleton-glow;\n          animation:1000ms linear infinite alternate skeleton-glow;\n  background:rgba(206, 217, 224, 0.2);\n  background-clip:padding-box !important;\n  border-color:rgba(206, 217, 224, 0.2) !important;\n  border-radius:2px;\n  -webkit-box-shadow:none !important;\n          box-shadow:none !important;\n  color:transparent !important;\n  cursor:default;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-skeleton::before, .bp3-skeleton::after,\n  .bp3-skeleton *{\n    visibility:hidden !important; }\n.bp3-slider{\n  height:40px;\n  min-width:150px;\n  width:100%;\n  cursor:default;\n  outline:none;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-slider:hover{\n    cursor:pointer; }\n  .bp3-slider:active{\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-slider.bp3-disabled{\n    cursor:not-allowed;\n    opacity:0.5; }\n  .bp3-slider.bp3-slider-unlabeled{\n    height:16px; }\n\n.bp3-slider-track,\n.bp3-slider-progress{\n  height:6px;\n  left:0;\n  right:0;\n  top:5px;\n  position:absolute; }\n\n.bp3-slider-track{\n  border-radius:3px;\n  overflow:hidden; }\n\n.bp3-slider-progress{\n  background:rgba(92, 112, 128, 0.2); }\n  .bp3-dark .bp3-slider-progress{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-slider-progress.bp3-intent-primary{\n    background-color:#137cbd; }\n  .bp3-slider-progress.bp3-intent-success{\n    background-color:#0f9960; }\n  .bp3-slider-progress.bp3-intent-warning{\n    background-color:#d9822b; }\n  .bp3-slider-progress.bp3-intent-danger{\n    background-color:#db3737; }\n\n.bp3-slider-handle{\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n  cursor:pointer;\n  height:16px;\n  left:0;\n  position:absolute;\n  top:0;\n  width:16px; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-slider-handle:active, .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-slider-handle:disabled, .bp3-slider-handle.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-slider-handle:disabled.bp3-active, .bp3-slider-handle:disabled.bp3-active:hover, .bp3-slider-handle.bp3-disabled.bp3-active, .bp3-slider-handle.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n  .bp3-slider-handle:focus{\n    z-index:1; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n    cursor:-webkit-grab;\n    cursor:grab;\n    z-index:2; }\n  .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-disabled .bp3-slider-handle{\n    background:#bfccd6;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    pointer-events:none; }\n  .bp3-dark .bp3-slider-handle{\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover, .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-slider-handle:disabled, .bp3-dark .bp3-slider-handle.bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-slider-handle:disabled.bp3-active, .bp3-dark .bp3-slider-handle.bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-slider-handle .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-slider-handle, .bp3-dark .bp3-slider-handle:hover{\n      background-color:#394b59; }\n    .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#293742; }\n  .bp3-dark .bp3-disabled .bp3-slider-handle{\n    background:#5c7080;\n    border-color:#5c7080;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-slider-handle .bp3-slider-label{\n    background:#394b59;\n    border-radius:3px;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n    color:#f5f8fa;\n    margin-left:8px; }\n    .bp3-dark .bp3-slider-handle .bp3-slider-label{\n      background:#e1e8ed;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n      color:#394b59; }\n    .bp3-disabled .bp3-slider-handle .bp3-slider-label{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-slider-handle.bp3-start, .bp3-slider-handle.bp3-end{\n    width:8px; }\n  .bp3-slider-handle.bp3-start{\n    border-bottom-right-radius:0;\n    border-top-right-radius:0; }\n  .bp3-slider-handle.bp3-end{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0;\n    margin-left:8px; }\n    .bp3-slider-handle.bp3-end .bp3-slider-label{\n      margin-left:0; }\n\n.bp3-slider-label{\n  -webkit-transform:translate(-50%, 20px);\n          transform:translate(-50%, 20px);\n  display:inline-block;\n  font-size:12px;\n  line-height:1;\n  padding:2px 5px;\n  position:absolute;\n  vertical-align:top; }\n\n.bp3-slider.bp3-vertical{\n  height:150px;\n  min-width:40px;\n  width:40px; }\n  .bp3-slider.bp3-vertical .bp3-slider-track,\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    bottom:0;\n    height:auto;\n    left:5px;\n    top:0;\n    width:6px; }\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    top:auto; }\n  .bp3-slider.bp3-vertical .bp3-slider-label{\n    -webkit-transform:translate(20px, 50%);\n            transform:translate(20px, 50%); }\n  .bp3-slider.bp3-vertical .bp3-slider-handle{\n    top:auto; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle .bp3-slider-label{\n      margin-left:0;\n      margin-top:-8px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end, .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      height:8px;\n      margin-left:0;\n      width:16px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      border-bottom-right-radius:3px;\n      border-top-left-radius:0; }\n      .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start .bp3-slider-label{\n        -webkit-transform:translate(20px);\n                transform:translate(20px); }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end{\n      border-bottom-left-radius:0;\n      border-bottom-right-radius:0;\n      border-top-left-radius:3px;\n      margin-bottom:8px; }\n\n@-webkit-keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n@keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n.bp3-spinner{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  overflow:visible;\n  vertical-align:middle; }\n  .bp3-spinner svg{\n    display:block; }\n  .bp3-spinner path{\n    fill-opacity:0; }\n  .bp3-spinner .bp3-spinner-head{\n    stroke:rgba(92, 112, 128, 0.8);\n    stroke-linecap:round;\n    -webkit-transform-origin:center;\n            transform-origin:center;\n    -webkit-transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-spinner .bp3-spinner-track{\n    stroke:rgba(92, 112, 128, 0.2); }\n\n.bp3-spinner-animation{\n  -webkit-animation:pt-spinner-animation 500ms linear infinite;\n          animation:pt-spinner-animation 500ms linear infinite; }\n  .bp3-no-spin > .bp3-spinner-animation{\n    -webkit-animation:none;\n            animation:none; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-head{\n  stroke:#8a9ba8; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-track{\n  stroke:rgba(16, 22, 26, 0.5); }\n\n.bp3-spinner.bp3-intent-primary .bp3-spinner-head{\n  stroke:#137cbd; }\n\n.bp3-spinner.bp3-intent-success .bp3-spinner-head{\n  stroke:#0f9960; }\n\n.bp3-spinner.bp3-intent-warning .bp3-spinner-head{\n  stroke:#d9822b; }\n\n.bp3-spinner.bp3-intent-danger .bp3-spinner-head{\n  stroke:#db3737; }\n.bp3-tabs.bp3-vertical{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-list{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab{\n      border-radius:3px;\n      padding:0 10px;\n      width:100%; }\n      .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab[aria-selected=\"true\"]{\n        background-color:rgba(19, 124, 189, 0.2);\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n      background-color:rgba(19, 124, 189, 0.2);\n      border-radius:3px;\n      bottom:0;\n      height:auto;\n      left:0;\n      right:0;\n      top:0; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-panel{\n    margin-top:0;\n    padding-left:20px; }\n\n.bp3-tab-list{\n  -webkit-box-align:end;\n      -ms-flex-align:end;\n          align-items:flex-end;\n  border:none;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  list-style:none;\n  margin:0;\n  padding:0;\n  position:relative; }\n  .bp3-tab-list > *:not(:last-child){\n    margin-right:20px; }\n\n.bp3-tab{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:#182026;\n  cursor:pointer;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  font-size:14px;\n  line-height:30px;\n  max-width:100%;\n  position:relative;\n  vertical-align:top; }\n  .bp3-tab a{\n    color:inherit;\n    display:block;\n    text-decoration:none; }\n  .bp3-tab-indicator-wrapper ~ .bp3-tab{\n    background-color:transparent !important;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important; }\n  .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-tab[aria-selected=\"true\"]{\n    border-radius:0;\n    -webkit-box-shadow:inset 0 -3px 0 #106ba3;\n            box-shadow:inset 0 -3px 0 #106ba3; }\n  .bp3-tab[aria-selected=\"true\"], .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#106ba3; }\n  .bp3-tab:focus{\n    -moz-outline-radius:0; }\n  .bp3-large > .bp3-tab{\n    font-size:16px;\n    line-height:40px; }\n\n.bp3-tab-panel{\n  margin-top:20px; }\n  .bp3-tab-panel[aria-hidden=\"true\"]{\n    display:none; }\n\n.bp3-tab-indicator-wrapper{\n  left:0;\n  pointer-events:none;\n  position:absolute;\n  top:0;\n  -webkit-transform:translateX(0), translateY(0);\n          transform:translateX(0), translateY(0);\n  -webkit-transition:height, width, -webkit-transform;\n  transition:height, width, -webkit-transform;\n  transition:height, transform, width;\n  transition:height, transform, width, -webkit-transform;\n  -webkit-transition-duration:200ms;\n          transition-duration:200ms;\n  -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n          transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n    background-color:#106ba3;\n    bottom:0;\n    height:3px;\n    left:0;\n    position:absolute;\n    right:0; }\n  .bp3-tab-indicator-wrapper.bp3-no-animation{\n    -webkit-transition:none;\n    transition:none; }\n\n.bp3-dark .bp3-tab{\n  color:#f5f8fa; }\n  .bp3-dark .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"]{\n    -webkit-box-shadow:inset 0 -3px 0 #48aff0;\n            box-shadow:inset 0 -3px 0 #48aff0; }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"], .bp3-dark .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#48aff0; }\n\n.bp3-dark .bp3-tab-indicator{\n  background-color:#48aff0; }\n\n.bp3-flex-expander{\n  -webkit-box-flex:1;\n      -ms-flex:1 1;\n          flex:1 1; }\n.bp3-tag{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#5c7080;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:#f5f8fa;\n  font-size:12px;\n  line-height:16px;\n  max-width:100%;\n  min-height:20px;\n  min-width:20px;\n  padding:2px 6px;\n  position:relative; }\n  .bp3-tag.bp3-interactive{\n    cursor:pointer; }\n    .bp3-tag.bp3-interactive:hover{\n      background-color:rgba(92, 112, 128, 0.85); }\n    .bp3-tag.bp3-interactive.bp3-active, .bp3-tag.bp3-interactive:active{\n      background-color:rgba(92, 112, 128, 0.7); }\n  .bp3-tag > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag::before,\n  .bp3-tag > *{\n    margin-right:4px; }\n  .bp3-tag:empty::before,\n  .bp3-tag > :last-child{\n    margin-right:0; }\n  .bp3-tag:focus{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:0;\n    -moz-outline-radius:6px; }\n  .bp3-tag.bp3-round{\n    border-radius:30px;\n    padding-left:8px;\n    padding-right:8px; }\n  .bp3-dark .bp3-tag{\n    background-color:#bfccd6;\n    color:#182026; }\n    .bp3-dark .bp3-tag.bp3-interactive{\n      cursor:pointer; }\n      .bp3-dark .bp3-tag.bp3-interactive:hover{\n        background-color:rgba(191, 204, 214, 0.85); }\n      .bp3-dark .bp3-tag.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-interactive:active{\n        background-color:rgba(191, 204, 214, 0.7); }\n    .bp3-dark .bp3-tag > .bp3-icon, .bp3-dark .bp3-tag .bp3-icon-standard, .bp3-dark .bp3-tag .bp3-icon-large{\n      fill:currentColor; }\n  .bp3-tag > .bp3-icon, .bp3-tag .bp3-icon-standard, .bp3-tag .bp3-icon-large{\n    fill:#ffffff; }\n  .bp3-tag.bp3-large,\n  .bp3-large .bp3-tag{\n    font-size:14px;\n    line-height:20px;\n    min-height:30px;\n    min-width:30px;\n    padding:5px 10px; }\n    .bp3-tag.bp3-large::before,\n    .bp3-tag.bp3-large > *,\n    .bp3-large .bp3-tag::before,\n    .bp3-large .bp3-tag > *{\n      margin-right:7px; }\n    .bp3-tag.bp3-large:empty::before,\n    .bp3-tag.bp3-large > :last-child,\n    .bp3-large .bp3-tag:empty::before,\n    .bp3-large .bp3-tag > :last-child{\n      margin-right:0; }\n    .bp3-tag.bp3-large.bp3-round,\n    .bp3-large .bp3-tag.bp3-round{\n      padding-left:12px;\n      padding-right:12px; }\n  .bp3-tag.bp3-intent-primary{\n    background:#137cbd;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.85); }\n      .bp3-tag.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.7); }\n  .bp3-tag.bp3-intent-success{\n    background:#0f9960;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.85); }\n      .bp3-tag.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.7); }\n  .bp3-tag.bp3-intent-warning{\n    background:#d9822b;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.85); }\n      .bp3-tag.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.7); }\n  .bp3-tag.bp3-intent-danger{\n    background:#db3737;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.85); }\n      .bp3-tag.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.7); }\n  .bp3-tag.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-tag.bp3-minimal > .bp3-icon, .bp3-tag.bp3-minimal .bp3-icon-standard, .bp3-tag.bp3-minimal .bp3-icon-large{\n    fill:#5c7080; }\n  .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n    background-color:rgba(138, 155, 168, 0.2);\n    color:#182026; }\n    .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n        background-color:rgba(92, 112, 128, 0.3); }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n        background-color:rgba(92, 112, 128, 0.4); }\n    .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n      color:#f5f8fa; }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n          background-color:rgba(191, 204, 214, 0.3); }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n          background-color:rgba(191, 204, 214, 0.4); }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) > .bp3-icon, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n        fill:#a7b6c2; }\n  .bp3-tag.bp3-minimal.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15);\n    color:#106ba3; }\n    .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-primary > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-large{\n      fill:#137cbd; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25);\n      color:#48aff0; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n          background-color:rgba(19, 124, 189, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n          background-color:rgba(19, 124, 189, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15);\n    color:#0d8050; }\n    .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-success > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-large{\n      fill:#0f9960; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25);\n      color:#3dcc91; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n          background-color:rgba(15, 153, 96, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n          background-color:rgba(15, 153, 96, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15);\n    color:#bf7326; }\n    .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-warning > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-large{\n      fill:#d9822b; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25);\n      color:#ffb366; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n          background-color:rgba(217, 130, 43, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n          background-color:rgba(217, 130, 43, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15);\n    color:#c23030; }\n    .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-danger > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-large{\n      fill:#db3737; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25);\n      color:#ff7373; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n          background-color:rgba(219, 55, 55, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n          background-color:rgba(219, 55, 55, 0.45); }\n\n.bp3-tag-remove{\n  background:none;\n  border:none;\n  color:inherit;\n  cursor:pointer;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin-bottom:-2px;\n  margin-right:-6px !important;\n  margin-top:-2px;\n  opacity:0.5;\n  padding:2px;\n  padding-left:0; }\n  .bp3-tag-remove:hover{\n    background:none;\n    opacity:0.8;\n    text-decoration:none; }\n  .bp3-tag-remove:active{\n    opacity:1; }\n  .bp3-tag-remove:empty::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    content:\"\"; }\n  .bp3-large .bp3-tag-remove{\n    margin-right:-10px !important;\n    padding:0 5px 0 0; }\n    .bp3-large .bp3-tag-remove:empty::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1; }\n.bp3-tag-input{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  cursor:text;\n  height:auto;\n  line-height:inherit;\n  min-height:30px;\n  padding-left:5px;\n  padding-right:0; }\n  .bp3-tag-input > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag-input > .bp3-tag-input-values{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag-input .bp3-tag-input-icon{\n    color:#5c7080;\n    margin-left:2px;\n    margin-right:7px;\n    margin-top:7px; }\n  .bp3-tag-input .bp3-tag-input-values{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row;\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    -ms-flex-item-align:stretch;\n        align-self:stretch;\n    -ms-flex-wrap:wrap;\n        flex-wrap:wrap;\n    margin-right:7px;\n    margin-top:5px;\n    min-width:0; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      -webkit-box-flex:0;\n          -ms-flex-positive:0;\n              flex-grow:0;\n      -ms-flex-negative:0;\n          flex-shrink:0; }\n    .bp3-tag-input .bp3-tag-input-values > .bp3-fill{\n      -webkit-box-flex:1;\n          -ms-flex-positive:1;\n              flex-grow:1;\n      -ms-flex-negative:1;\n          flex-shrink:1; }\n    .bp3-tag-input .bp3-tag-input-values::before,\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-right:5px; }\n    .bp3-tag-input .bp3-tag-input-values:empty::before,\n    .bp3-tag-input .bp3-tag-input-values > :last-child{\n      margin-right:0; }\n    .bp3-tag-input .bp3-tag-input-values:first-child .bp3-input-ghost:first-child{\n      padding-left:5px; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-bottom:5px; }\n  .bp3-tag-input .bp3-tag{\n    overflow-wrap:break-word; }\n    .bp3-tag-input .bp3-tag.bp3-active{\n      outline:rgba(19, 124, 189, 0.6) auto 2px;\n      outline-offset:0;\n      -moz-outline-radius:6px; }\n  .bp3-tag-input .bp3-input-ghost{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:20px;\n    width:80px; }\n    .bp3-tag-input .bp3-input-ghost:disabled, .bp3-tag-input .bp3-input-ghost.bp3-disabled{\n      cursor:not-allowed; }\n  .bp3-tag-input .bp3-button,\n  .bp3-tag-input .bp3-spinner{\n    margin:3px;\n    margin-left:0; }\n  .bp3-tag-input .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-tag-input.bp3-large{\n    height:auto;\n    min-height:40px; }\n    .bp3-tag-input.bp3-large::before,\n    .bp3-tag-input.bp3-large > *{\n      margin-right:10px; }\n    .bp3-tag-input.bp3-large:empty::before,\n    .bp3-tag-input.bp3-large > :last-child{\n      margin-right:0; }\n    .bp3-tag-input.bp3-large .bp3-tag-input-icon{\n      margin-left:5px;\n      margin-top:10px; }\n    .bp3-tag-input.bp3-large .bp3-input-ghost{\n      line-height:30px; }\n    .bp3-tag-input.bp3-large .bp3-button{\n      min-height:30px;\n      min-width:30px;\n      padding:5px 10px;\n      margin:5px;\n      margin-left:0; }\n    .bp3-tag-input.bp3-large .bp3-spinner{\n      margin:8px;\n      margin-left:0; }\n  .bp3-tag-input.bp3-active{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-tag-input .bp3-tag-input-icon, .bp3-tag-input.bp3-dark .bp3-tag-input-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-tag-input .bp3-input-ghost, .bp3-tag-input.bp3-dark .bp3-input-ghost{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-webkit-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-moz-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost:-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tag-input.bp3-active, .bp3-tag-input.bp3-dark.bp3-active{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-primary, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-success, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-warning, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-danger, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-input-ghost{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0; }\n  .bp3-input-ghost::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:focus{\n    outline:none !important; }\n.bp3-toast{\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:20px 0 0;\n  max-width:500px;\n  min-width:300px;\n  pointer-events:all;\n  position:relative !important; }\n  .bp3-toast.bp3-toast-enter, .bp3-toast.bp3-toast-appear{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active, .bp3-toast.bp3-toast-appear-active{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-enter ~ .bp3-toast, .bp3-toast.bp3-toast-appear ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active ~ .bp3-toast, .bp3-toast.bp3-toast-appear-active ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-exit{\n    opacity:1;\n    -webkit-filter:blur(0);\n            filter:blur(0); }\n  .bp3-toast.bp3-toast-exit-active{\n    opacity:0;\n    -webkit-filter:blur(10px);\n            filter:blur(10px);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:opacity, filter;\n    transition-property:opacity, filter, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast.bp3-toast-exit ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0); }\n  .bp3-toast.bp3-toast-exit-active ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px);\n    -webkit-transition-delay:50ms;\n            transition-delay:50ms;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast .bp3-button-group{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    padding:5px;\n    padding-left:0; }\n  .bp3-toast > .bp3-icon{\n    color:#5c7080;\n    margin:12px;\n    margin-right:0; }\n  .bp3-toast.bp3-dark,\n  .bp3-dark .bp3-toast{\n    background-color:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-toast.bp3-dark > .bp3-icon,\n    .bp3-dark .bp3-toast > .bp3-icon{\n      color:#a7b6c2; }\n  .bp3-toast[class*=\"bp3-intent-\"] a{\n    color:rgba(255, 255, 255, 0.7); }\n    .bp3-toast[class*=\"bp3-intent-\"] a:hover{\n      color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] > .bp3-icon{\n    color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::before,\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button .bp3-icon, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    color:rgba(255, 255, 255, 0.7) !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:focus{\n    outline-color:rgba(255, 255, 255, 0.5); }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:hover{\n    background-color:rgba(255, 255, 255, 0.15) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    background-color:rgba(255, 255, 255, 0.3) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::after{\n    background:rgba(255, 255, 255, 0.3) !important; }\n  .bp3-toast.bp3-intent-primary{\n    background-color:#137cbd;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-success{\n    background-color:#0f9960;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-warning{\n    background-color:#d9822b;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-danger{\n    background-color:#db3737;\n    color:#ffffff; }\n\n.bp3-toast-message{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  padding:11px;\n  word-break:break-word; }\n\n.bp3-toast-container{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box !important;\n  display:-ms-flexbox !important;\n  display:flex !important;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  left:0;\n  overflow:hidden;\n  padding:0 20px 20px;\n  pointer-events:none;\n  right:0;\n  z-index:40; }\n  .bp3-toast-container.bp3-toast-container-in-portal{\n    position:fixed; }\n  .bp3-toast-container.bp3-toast-container-inline{\n    position:absolute; }\n  .bp3-toast-container.bp3-toast-container-top{\n    top:0; }\n  .bp3-toast-container.bp3-toast-container-bottom{\n    bottom:0;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:reverse;\n        -ms-flex-direction:column-reverse;\n            flex-direction:column-reverse;\n    top:auto; }\n  .bp3-toast-container.bp3-toast-container-left{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start; }\n  .bp3-toast-container.bp3-toast-container-right{\n    -webkit-box-align:end;\n        -ms-flex-align:end;\n            align-items:flex-end; }\n\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active) ~ .bp3-toast, .bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active) ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-exit-active ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-leave-active ~ .bp3-toast{\n  -webkit-transform:translateY(60px);\n          transform:translateY(60px); }\n.bp3-tooltip{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1); }\n  .bp3-tooltip .bp3-popover-arrow{\n    height:22px;\n    position:absolute;\n    width:22px; }\n    .bp3-tooltip .bp3-popover-arrow::before{\n      height:14px;\n      margin:4px;\n      width:14px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip{\n    margin-bottom:11px;\n    margin-top:-11px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n      bottom:-8px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip{\n    margin-left:11px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n      left:-8px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip{\n    margin-top:11px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n      top:-8px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip{\n    margin-left:-11px;\n    margin-right:11px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n      right:-8px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-tooltip > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-tooltip > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n    top:-0.22183px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n    right:-0.22183px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n    left:-0.22183px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n    bottom:-0.22183px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-tooltip .bp3-popover-content{\n    background:#394b59;\n    color:#f5f8fa; }\n  .bp3-tooltip .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-tooltip .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-tooltip .bp3-popover-arrow-fill{\n    fill:#394b59; }\n  .bp3-popover-enter > .bp3-tooltip, .bp3-popover-appear > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8); }\n  .bp3-popover-enter-active > .bp3-tooltip, .bp3-popover-appear-active > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover-exit > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tooltip .bp3-popover-content{\n    padding:10px 12px; }\n  .bp3-tooltip.bp3-dark,\n  .bp3-dark .bp3-tooltip{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-tooltip .bp3-popover-content{\n      background:#e1e8ed;\n      color:#394b59; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-fill{\n      fill:#e1e8ed; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-content{\n    background:#137cbd;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-arrow-fill{\n    fill:#137cbd; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-content{\n    background:#0f9960;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-arrow-fill{\n    fill:#0f9960; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-content{\n    background:#d9822b;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-arrow-fill{\n    fill:#d9822b; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-content{\n    background:#db3737;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-arrow-fill{\n    fill:#db3737; }\n\n.bp3-tooltip-indicator{\n  border-bottom:dotted 1px;\n  cursor:help; }\n.bp3-tree .bp3-icon, .bp3-tree .bp3-icon-standard, .bp3-tree .bp3-icon-large{\n  color:#5c7080; }\n  .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-tree .bp3-icon.bp3-intent-success, .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-tree-node-list{\n  list-style:none;\n  margin:0;\n  padding-left:0; }\n\n.bp3-tree-root{\n  background-color:transparent;\n  cursor:default;\n  padding-left:0;\n  position:relative; }\n\n.bp3-tree-node-content-0{\n  padding-left:0px; }\n\n.bp3-tree-node-content-1{\n  padding-left:23px; }\n\n.bp3-tree-node-content-2{\n  padding-left:46px; }\n\n.bp3-tree-node-content-3{\n  padding-left:69px; }\n\n.bp3-tree-node-content-4{\n  padding-left:92px; }\n\n.bp3-tree-node-content-5{\n  padding-left:115px; }\n\n.bp3-tree-node-content-6{\n  padding-left:138px; }\n\n.bp3-tree-node-content-7{\n  padding-left:161px; }\n\n.bp3-tree-node-content-8{\n  padding-left:184px; }\n\n.bp3-tree-node-content-9{\n  padding-left:207px; }\n\n.bp3-tree-node-content-10{\n  padding-left:230px; }\n\n.bp3-tree-node-content-11{\n  padding-left:253px; }\n\n.bp3-tree-node-content-12{\n  padding-left:276px; }\n\n.bp3-tree-node-content-13{\n  padding-left:299px; }\n\n.bp3-tree-node-content-14{\n  padding-left:322px; }\n\n.bp3-tree-node-content-15{\n  padding-left:345px; }\n\n.bp3-tree-node-content-16{\n  padding-left:368px; }\n\n.bp3-tree-node-content-17{\n  padding-left:391px; }\n\n.bp3-tree-node-content-18{\n  padding-left:414px; }\n\n.bp3-tree-node-content-19{\n  padding-left:437px; }\n\n.bp3-tree-node-content-20{\n  padding-left:460px; }\n\n.bp3-tree-node-content{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:30px;\n  padding-right:5px;\n  width:100%; }\n  .bp3-tree-node-content:hover{\n    background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-tree-node-caret,\n.bp3-tree-node-caret-none{\n  min-width:30px; }\n\n.bp3-tree-node-caret{\n  color:#5c7080;\n  cursor:pointer;\n  padding:7px;\n  -webkit-transform:rotate(0deg);\n          transform:rotate(0deg);\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tree-node-caret:hover{\n    color:#182026; }\n  .bp3-dark .bp3-tree-node-caret{\n    color:#a7b6c2; }\n    .bp3-dark .bp3-tree-node-caret:hover{\n      color:#f5f8fa; }\n  .bp3-tree-node-caret.bp3-tree-node-caret-open{\n    -webkit-transform:rotate(90deg);\n            transform:rotate(90deg); }\n  .bp3-tree-node-caret.bp3-icon-standard::before{\n    content:\"\"; }\n\n.bp3-tree-node-icon{\n  margin-right:7px;\n  position:relative; }\n\n.bp3-tree-node-label{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-label span{\n    display:inline; }\n\n.bp3-tree-node-secondary-label{\n  padding:0 5px;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-secondary-label .bp3-popover-wrapper,\n  .bp3-tree-node-secondary-label .bp3-popover-target{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-content{\n  background-color:inherit;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-caret,\n.bp3-tree-node.bp3-disabled .bp3-tree-node-icon{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content,\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-standard, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-large{\n    color:#ffffff; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret::before{\n    color:rgba(255, 255, 255, 0.7); }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret:hover::before{\n    color:#ffffff; }\n\n.bp3-dark .bp3-tree-node-content:hover{\n  background-color:rgba(92, 112, 128, 0.3); }\n\n.bp3-dark .bp3-tree .bp3-icon, .bp3-dark .bp3-tree .bp3-icon-standard, .bp3-dark .bp3-tree .bp3-icon-large{\n  color:#a7b6c2; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-dark .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n.bp3-omnibar{\n  -webkit-filter:blur(0);\n          filter:blur(0);\n  opacity:1;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  left:calc(50% - 250px);\n  top:20vh;\n  width:500px;\n  z-index:21; }\n  .bp3-omnibar.bp3-overlay-enter, .bp3-omnibar.bp3-overlay-appear{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2; }\n  .bp3-omnibar.bp3-overlay-enter-active, .bp3-omnibar.bp3-overlay-appear-active{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar.bp3-overlay-exit{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1; }\n  .bp3-omnibar.bp3-overlay-exit-active{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar .bp3-input{\n    background-color:transparent;\n    border-radius:0; }\n    .bp3-omnibar .bp3-input, .bp3-omnibar .bp3-input:focus{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-omnibar .bp3-menu{\n    background-color:transparent;\n    border-radius:0;\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n    max-height:calc(60vh - 40px);\n    overflow:auto; }\n    .bp3-omnibar .bp3-menu:empty{\n      display:none; }\n  .bp3-dark .bp3-omnibar, .bp3-omnibar.bp3-dark{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-omnibar-overlay .bp3-overlay-backdrop{\n  background-color:rgba(16, 22, 26, 0.2); }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n\n.bp3-multi-select{\n  min-width:150px; }\n\n.bp3-multi-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto; }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* This file was auto-generated by ensureUiComponents() in @jupyterlab/buildutils */\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n/* Icons urls */\n\n:root {\n  --jp-icon-add: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDEzaC02djZoLTJ2LTZINXYtMmg2VjVoMnY2aDZ2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-bug: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0yMCA4aC0yLjgxYy0uNDUtLjc4LTEuMDctMS40NS0xLjgyLTEuOTZMMTcgNC40MSAxNS41OSAzbC0yLjE3IDIuMTdDMTIuOTYgNS4wNiAxMi40OSA1IDEyIDVjLS40OSAwLS45Ni4wNi0xLjQxLjE3TDguNDEgMyA3IDQuNDFsMS42MiAxLjYzQzcuODggNi41NSA3LjI2IDcuMjIgNi44MSA4SDR2MmgyLjA5Yy0uMDUuMzMtLjA5LjY2LS4wOSAxdjFINHYyaDJ2MWMwIC4zNC4wNC42Ny4wOSAxSDR2MmgyLjgxYzEuMDQgMS43OSAyLjk3IDMgNS4xOSAzczQuMTUtMS4yMSA1LjE5LTNIMjB2LTJoLTIuMDljLjA1LS4zMy4wOS0uNjYuMDktMXYtMWgydi0yaC0ydi0xYzAtLjM0LS4wNC0uNjctLjA5LTFIMjBWOHptLTYgOGgtNHYtMmg0djJ6bTAtNGgtNHYtMmg0djJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-build: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE0LjkgMTcuNDVDMTYuMjUgMTcuNDUgMTcuMzUgMTYuMzUgMTcuMzUgMTVDMTcuMzUgMTMuNjUgMTYuMjUgMTIuNTUgMTQuOSAxMi41NUMxMy41NCAxMi41NSAxMi40NSAxMy42NSAxMi40NSAxNUMxMi40NSAxNi4zNSAxMy41NCAxNy40NSAxNC45IDE3LjQ1Wk0yMC4xIDE1LjY4TDIxLjU4IDE2Ljg0QzIxLjcxIDE2Ljk1IDIxLjc1IDE3LjEzIDIxLjY2IDE3LjI5TDIwLjI2IDE5LjcxQzIwLjE3IDE5Ljg2IDIwIDE5LjkyIDE5LjgzIDE5Ljg2TDE4LjA5IDE5LjE2QzE3LjczIDE5LjQ0IDE3LjMzIDE5LjY3IDE2LjkxIDE5Ljg1TDE2LjY0IDIxLjdDMTYuNjIgMjEuODcgMTYuNDcgMjIgMTYuMyAyMkgxMy41QzEzLjMyIDIyIDEzLjE4IDIxLjg3IDEzLjE1IDIxLjdMMTIuODkgMTkuODVDMTIuNDYgMTkuNjcgMTIuMDcgMTkuNDQgMTEuNzEgMTkuMTZMOS45NjAwMiAxOS44NkM5LjgxMDAyIDE5LjkyIDkuNjIwMDIgMTkuODYgOS41NDAwMiAxOS43MUw4LjE0MDAyIDE3LjI5QzguMDUwMDIgMTcuMTMgOC4wOTAwMiAxNi45NSA4LjIyMDAyIDE2Ljg0TDkuNzAwMDIgMTUuNjhMOS42NTAwMSAxNUw5LjcwMDAyIDE0LjMxTDguMjIwMDIgMTMuMTZDOC4wOTAwMiAxMy4wNSA4LjA1MDAyIDEyLjg2IDguMTQwMDIgMTIuNzFMOS41NDAwMiAxMC4yOUM5LjYyMDAyIDEwLjEzIDkuODEwMDIgMTAuMDcgOS45NjAwMiAxMC4xM0wxMS43MSAxMC44NEMxMi4wNyAxMC41NiAxMi40NiAxMC4zMiAxMi44OSAxMC4xNUwxMy4xNSA4LjI4OTk4QzEzLjE4IDguMTI5OTggMTMuMzIgNy45OTk5OCAxMy41IDcuOTk5OThIMTYuM0MxNi40NyA3Ljk5OTk4IDE2LjYyIDguMTI5OTggMTYuNjQgOC4yODk5OEwxNi45MSAxMC4xNUMxNy4zMyAxMC4zMiAxNy43MyAxMC41NiAxOC4wOSAxMC44NEwxOS44MyAxMC4xM0MyMCAxMC4wNyAyMC4xNyAxMC4xMyAyMC4yNiAxMC4yOUwyMS42NiAxMi43MUMyMS43NSAxMi44NiAyMS43MSAxMy4wNSAyMS41OCAxMy4xNkwyMC4xIDE0LjMxTDIwLjE1IDE1TDIwLjEgMTUuNjhaIi8+CiAgICA8cGF0aCBkPSJNNy4zMjk2NiA3LjQ0NDU0QzguMDgzMSA3LjAwOTU0IDguMzM5MzIgNi4wNTMzMiA3LjkwNDMyIDUuMjk5ODhDNy40NjkzMiA0LjU0NjQzIDYuNTA4MSA0LjI4MTU2IDUuNzU0NjYgNC43MTY1NkM1LjM5MTc2IDQuOTI2MDggNS4xMjY5NSA1LjI3MTE4IDUuMDE4NDkgNS42NzU5NEM0LjkxMDA0IDYuMDgwNzEgNC45NjY4MiA2LjUxMTk4IDUuMTc2MzQgNi44NzQ4OEM1LjYxMTM0IDcuNjI4MzIgNi41NzYyMiA3Ljg3OTU0IDcuMzI5NjYgNy40NDQ1NFpNOS42NTcxOCA0Ljc5NTkzTDEwLjg2NzIgNC45NTE3OUMxMC45NjI4IDQuOTc3NDEgMTEuMDQwMiA1LjA3MTMzIDExLjAzODIgNS4xODc5M0wxMS4wMzg4IDYuOTg4OTNDMTEuMDQ1NSA3LjEwMDU0IDEwLjk2MTYgNy4xOTUxOCAxMC44NTUgNy4yMTA1NEw5LjY2MDAxIDcuMzgwODNMOS4yMzkxNSA4LjEzMTg4TDkuNjY5NjEgOS4yNTc0NUM5LjcwNzI5IDkuMzYyNzEgOS42NjkzNCA5LjQ3Njk5IDkuNTc0MDggOS41MzE5OUw4LjAxNTIzIDEwLjQzMkM3LjkxMTMxIDEwLjQ5MiA3Ljc5MzM3IDEwLjQ2NzcgNy43MjEwNSAxMC4zODI0TDYuOTg3NDggOS40MzE4OEw2LjEwOTMxIDkuNDMwODNMNS4zNDcwNCAxMC4zOTA1QzUuMjg5MDkgMTAuNDcwMiA1LjE3MzgzIDEwLjQ5MDUgNS4wNzE4NyAxMC40MzM5TDMuNTEyNDUgOS41MzI5M0MzLjQxMDQ5IDkuNDc2MzMgMy4zNzY0NyA5LjM1NzQxIDMuNDEwNzUgOS4yNTY3OUwzLjg2MzQ3IDguMTQwOTNMMy42MTc0OSA3Ljc3NDg4TDMuNDIzNDcgNy4zNzg4M0wyLjIzMDc1IDcuMjEyOTdDMi4xMjY0NyA3LjE5MjM1IDIuMDQwNDkgNy4xMDM0MiAyLjA0MjQ1IDYuOTg2ODJMMi4wNDE4NyA1LjE4NTgyQzIuMDQzODMgNS4wNjkyMiAyLjExOTA5IDQuOTc5NTggMi4yMTcwNCA0Ljk2OTIyTDMuNDIwNjUgNC43OTM5M0wzLjg2NzQ5IDQuMDI3ODhMMy40MTEwNSAyLjkxNzMxQzMuMzczMzcgMi44MTIwNCAzLjQxMTMxIDIuNjk3NzYgMy41MTUyMyAyLjYzNzc2TDUuMDc0MDggMS43Mzc3NkM1LjE2OTM0IDEuNjgyNzYgNS4yODcyOSAxLjcwNzA0IDUuMzU5NjEgMS43OTIzMUw2LjExOTE1IDIuNzI3ODhMNi45ODAwMSAyLjczODkzTDcuNzI0OTYgMS43ODkyMkM3Ljc5MTU2IDEuNzA0NTggNy45MTU0OCAxLjY3OTIyIDguMDA4NzkgMS43NDA4Mkw5LjU2ODIxIDIuNjQxODJDOS42NzAxNyAyLjY5ODQyIDkuNzEyODUgMi44MTIzNCA5LjY4NzIzIDIuOTA3OTdMOS4yMTcxOCA0LjAzMzgzTDkuNDYzMTYgNC4zOTk4OEw5LjY1NzE4IDQuNzk1OTNaIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iOS45LDEzLjYgMy42LDcuNCA0LjQsNi42IDkuOSwxMi4yIDE1LjQsNi43IDE2LjEsNy40ICIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNS45TDksOS43bDMuOC0zLjhsMS4yLDEuMmwtNC45LDVsLTQuOS01TDUuMiw1Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNy41TDksMTEuMmwzLjgtMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-left: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik0xMC44LDEyLjhMNy4xLDlsMy44LTMuOGwwLDcuNkgxMC44eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-right: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik03LjIsNS4yTDEwLjksOWwtMy44LDMuOFY1LjJINy4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-up-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iMTUuNCwxMy4zIDkuOSw3LjcgNC40LDEzLjIgMy42LDEyLjUgOS45LDYuMyAxNi4xLDEyLjYgIi8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-up: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik01LjIsMTAuNUw5LDYuOGwzLjgsMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-case-sensitive: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgogIDxnIGNsYXNzPSJqcC1pY29uLWFjY2VudDIiIGZpbGw9IiNGRkYiPgogICAgPHBhdGggZD0iTTcuNiw4aDAuOWwzLjUsOGgtMS4xTDEwLDE0SDZsLTAuOSwySDRMNy42LDh6IE04LDkuMUw2LjQsMTNoMy4yTDgsOS4xeiIvPgogICAgPHBhdGggZD0iTTE2LjYsOS44Yy0wLjIsMC4xLTAuNCwwLjEtMC43LDAuMWMtMC4yLDAtMC40LTAuMS0wLjYtMC4yYy0wLjEtMC4xLTAuMi0wLjQtMC4yLTAuNyBjLTAuMywwLjMtMC42LDAuNS0wLjksMC43Yy0wLjMsMC4xLTAuNywwLjItMS4xLDAuMmMtMC4zLDAtMC41LDAtMC43LTAuMWMtMC4yLTAuMS0wLjQtMC4yLTAuNi0wLjNjLTAuMi0wLjEtMC4zLTAuMy0wLjQtMC41IGMtMC4xLTAuMi0wLjEtMC40LTAuMS0wLjdjMC0wLjMsMC4xLTAuNiwwLjItMC44YzAuMS0wLjIsMC4zLTAuNCwwLjQtMC41QzEyLDcsMTIuMiw2LjksMTIuNSw2LjhjMC4yLTAuMSwwLjUtMC4xLDAuNy0wLjIgYzAuMy0wLjEsMC41LTAuMSwwLjctMC4xYzAuMiwwLDAuNC0wLjEsMC42LTAuMWMwLjIsMCwwLjMtMC4xLDAuNC0wLjJjMC4xLTAuMSwwLjItMC4yLDAuMi0wLjRjMC0xLTEuMS0xLTEuMy0xIGMtMC40LDAtMS40LDAtMS40LDEuMmgtMC45YzAtMC40LDAuMS0wLjcsMC4yLTFjMC4xLTAuMiwwLjMtMC40LDAuNS0wLjZjMC4yLTAuMiwwLjUtMC4zLDAuOC0wLjNDMTMuMyw0LDEzLjYsNCwxMy45LDQgYzAuMywwLDAuNSwwLDAuOCwwLjFjMC4zLDAsMC41LDAuMSwwLjcsMC4yYzAuMiwwLjEsMC40LDAuMywwLjUsMC41QzE2LDUsMTYsNS4yLDE2LDUuNnYyLjljMCwwLjIsMCwwLjQsMCwwLjUgYzAsMC4xLDAuMSwwLjIsMC4zLDAuMmMwLjEsMCwwLjIsMCwwLjMsMFY5Ljh6IE0xNS4yLDYuOWMtMS4yLDAuNi0zLjEsMC4yLTMuMSwxLjRjMCwxLjQsMy4xLDEsMy4xLTAuNVY2Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-check: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik05IDE2LjE3TDQuODMgMTJsLTEuNDIgMS40MUw5IDE5IDIxIDdsLTEuNDEtMS40MXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-circle-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDJDNi40NyAyIDIgNi40NyAyIDEyczQuNDcgMTAgMTAgMTAgMTAtNC40NyAxMC0xMFMxNy41MyAyIDEyIDJ6bTAgMThjLTQuNDEgMC04LTMuNTktOC04czMuNTktOCA4LTggOCAzLjU5IDggOC0zLjU5IDgtOCA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-circle: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjgiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-clear: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8bWFzayBpZD0iZG9udXRIb2xlIj4KICAgIDxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0id2hpdGUiIC8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSI4IiBmaWxsPSJibGFjayIvPgogIDwvbWFzaz4KCiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxyZWN0IGhlaWdodD0iMTgiIHdpZHRoPSIyIiB4PSIxMSIgeT0iMyIgdHJhbnNmb3JtPSJyb3RhdGUoMzE1LCAxMiwgMTIpIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIgbWFzaz0idXJsKCNkb251dEhvbGUpIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-close: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1ub25lIGpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIGpwLWljb24zLWhvdmVyIiBmaWxsPSJub25lIj4KICAgIDxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjExIi8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIGpwLWljb24tYWNjZW50Mi1ob3ZlciIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMTkgNi40MUwxNy41OSA1IDEyIDEwLjU5IDYuNDEgNSA1IDYuNDEgMTAuNTkgMTIgNSAxNy41OSA2LjQxIDE5IDEyIDEzLjQxIDE3LjU5IDE5IDE5IDE3LjU5IDEzLjQxIDEyeiIvPgogIDwvZz4KCiAgPGcgY2xhc3M9ImpwLWljb24tbm9uZSBqcC1pY29uLWJ1c3kiIGZpbGw9Im5vbmUiPgogICAgPGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-code: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTExLjQgMTguNkw2LjggMTRMMTEuNCA5LjRMMTAgOEw0IDE0TDEwIDIwTDExLjQgMTguNlpNMTYuNiAxOC42TDIxLjIgMTRMMTYuNiA5LjRMMTggOEwyNCAxNEwxOCAyMEwxNi42IDE4LjZWMTguNloiLz4KCTwvZz4KPC9zdmc+Cg==);\n  --jp-icon-console: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwMCAyMDAiPgogIDxnIGNsYXNzPSJqcC1pY29uLWJyYW5kMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMjg4RDEiPgogICAgPHBhdGggZD0iTTIwIDE5LjhoMTYwdjE1OS45SDIweiIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNmZmYiPgogICAgPHBhdGggZD0iTTEwNSAxMjcuM2g0MHYxMi44aC00MHpNNTEuMSA3N0w3NCA5OS45bC0yMy4zIDIzLjMgMTAuNSAxMC41IDIzLjMtMjMuM0w5NSA5OS45IDg0LjUgODkuNCA2MS42IDY2LjV6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-copy: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTExLjksMUgzLjJDMi40LDEsMS43LDEuNywxLjcsMi41djEwLjJoMS41VjIuNWg4LjdWMXogTTE0LjEsMy45aC04Yy0wLjgsMC0xLjUsMC43LTEuNSwxLjV2MTAuMmMwLDAuOCwwLjcsMS41LDEuNSwxLjVoOCBjMC44LDAsMS41LTAuNywxLjUtMS41VjUuNEMxNS41LDQuNiwxNC45LDMuOSwxNC4xLDMuOXogTTE0LjEsMTUuNWgtOFY1LjRoOFYxNS41eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-copyright: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDI0IDI0IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCI+CiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0xMS44OCw5LjE0YzEuMjgsMC4wNiwxLjYxLDEuMTUsMS42MywxLjY2aDEuNzljLTAuMDgtMS45OC0xLjQ5LTMuMTktMy40NS0zLjE5QzkuNjQsNy42MSw4LDksOCwxMi4xNCBjMCwxLjk0LDAuOTMsNC4yNCwzLjg0LDQuMjRjMi4yMiwwLDMuNDEtMS42NSwzLjQ0LTIuOTVoLTEuNzljLTAuMDMsMC41OS0wLjQ1LDEuMzgtMS42MywxLjQ0QzEwLjU1LDE0LjgzLDEwLDEzLjgxLDEwLDEyLjE0IEMxMCw5LjI1LDExLjI4LDkuMTYsMTEuODgsOS4xNHogTTEyLDJDNi40OCwyLDIsNi40OCwyLDEyczQuNDgsMTAsMTAsMTBzMTAtNC40OCwxMC0xMFMxNy41MiwyLDEyLDJ6IE0xMiwyMGMtNC40MSwwLTgtMy41OS04LTggczMuNTktOCw4LThzOCwzLjU5LDgsOFMxNi40MSwyMCwxMiwyMHoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-cut: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkuNjQgNy42NGMuMjMtLjUuMzYtMS4wNS4zNi0xLjY0IDAtMi4yMS0xLjc5LTQtNC00UzIgMy43OSAyIDZzMS43OSA0IDQgNGMuNTkgMCAxLjE0LS4xMyAxLjY0LS4zNkwxMCAxMmwtMi4zNiAyLjM2QzcuMTQgMTQuMTMgNi41OSAxNCA2IDE0Yy0yLjIxIDAtNCAxLjc5LTQgNHMxLjc5IDQgNCA0IDQtMS43OSA0LTRjMC0uNTktLjEzLTEuMTQtLjM2LTEuNjRMMTIgMTRsNyA3aDN2LTFMOS42NCA3LjY0ek02IDhjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTAgMTJjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTYtNy41Yy0uMjggMC0uNS0uMjItLjUtLjVzLjIyLS41LjUtLjUuNS4yMi41LjUtLjIyLjUtLjUuNXpNMTkgM2wtNiA2IDIgMiA3LTdWM3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-download: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDloLTRWM0g5djZINWw3IDcgNy03ek01IDE4djJoMTR2LTJINXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-edit: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMgMTcuMjVWMjFoMy43NUwxNy44MSA5Ljk0bC0zLjc1LTMuNzVMMyAxNy4yNXpNMjAuNzEgNy4wNGMuMzktLjM5LjM5LTEuMDIgMC0xLjQxbC0yLjM0LTIuMzRjLS4zOS0uMzktMS4wMi0uMzktMS40MSAwbC0xLjgzIDEuODMgMy43NSAzLjc1IDEuODMtMS44M3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-ellipses: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iNSIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxOSIgY3k9IjEyIiByPSIyIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-extension: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwLjUgMTFIMTlWN2MwLTEuMS0uOS0yLTItMmgtNFYzLjVDMTMgMi4xMiAxMS44OCAxIDEwLjUgMVM4IDIuMTIgOCAzLjVWNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAydjMuOEgzLjVjMS40OSAwIDIuNyAxLjIxIDIuNyAyLjdzLTEuMjEgMi43LTIuNyAyLjdIMlYyMGMwIDEuMS45IDIgMiAyaDMuOHYtMS41YzAtMS40OSAxLjIxLTIuNyAyLjctMi43IDEuNDkgMCAyLjcgMS4yMSAyLjcgMi43VjIySDE3YzEuMSAwIDItLjkgMi0ydi00aDEuNWMxLjM4IDAgMi41LTEuMTIgMi41LTIuNVMyMS44OCAxMSAyMC41IDExeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-fast-forward: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTQgMThsOC41LTZMNCA2djEyem05LTEydjEybDguNS02TDEzIDZ6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-file-upload: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkgMTZoNnYtNmg0bC03LTctNyA3aDR6bS00IDJoMTR2Mkg1eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-file: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuMyA4LjJsLTUuNS01LjVjLS4zLS4zLS43LS41LTEuMi0uNUgzLjljLS44LjEtMS42LjktMS42IDEuOHYxNC4xYzAgLjkuNyAxLjYgMS42IDEuNmgxNC4yYy45IDAgMS42LS43IDEuNi0xLjZWOS40Yy4xLS41LS4xLS45LS40LTEuMnptLTUuOC0zLjNsMy40IDMuNmgtMy40VjQuOXptMy45IDEyLjdINC43Yy0uMSAwLS4yIDAtLjItLjJWNC43YzAtLjIuMS0uMy4yLS4zaDcuMnY0LjRzMCAuOC4zIDEuMWMuMy4zIDEuMS4zIDEuMS4zaDQuM3Y3LjJzLS4xLjItLjIuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-filter-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEwIDE4aDR2LTJoLTR2MnpNMyA2djJoMThWNkgzem0zIDdoMTJ2LTJINnYyeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY4YzAtMS4xLS45LTItMi0yaC04bC0yLTJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-html5: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMDAiIGQ9Ik0xMDguNCAwaDIzdjIyLjhoMjEuMlYwaDIzdjY5aC0yM1Y0NmgtMjF2MjNoLTIzLjJNMjA2IDIzaC0yMC4zVjBoNjMuN3YyM0gyMjl2NDZoLTIzbTUzLjUtNjloMjQuMWwxNC44IDI0LjNMMzEzLjIgMGgyNC4xdjY5aC0yM1YzNC44bC0xNi4xIDI0LjgtMTYuMS0yNC44VjY5aC0yMi42bTg5LjItNjloMjN2NDYuMmgzMi42VjY5aC01NS42Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI2U0NGQyNiIgZD0iTTEwNy42IDQ3MWwtMzMtMzcwLjRoMzYyLjhsLTMzIDM3MC4yTDI1NS43IDUxMiIvPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNmMTY1MjkiIGQ9Ik0yNTYgNDgwLjVWMTMxaDE0OC4zTDM3NiA0NDciLz4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNlYmViZWIiIGQ9Ik0xNDIgMTc2LjNoMTE0djQ1LjRoLTY0LjJsNC4yIDQ2LjVoNjB2NDUuM0gxNTQuNG0yIDIyLjhIMjAybDMuMiAzNi4zIDUwLjggMTMuNnY0Ny40bC05My4yLTI2Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIiBmaWxsPSIjZmZmIiBkPSJNMzY5LjYgMTc2LjNIMjU1Ljh2NDUuNGgxMDkuNm0tNC4xIDQ2LjVIMjU1Ljh2NDUuNGg1NmwtNS4zIDU5LTUwLjcgMTMuNnY0Ny4ybDkzLTI1LjgiLz4KPC9zdmc+Cg==);\n  --jp-icon-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1icmFuZDQganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNGRkYiIGQ9Ik0yLjIgMi4yaDE3LjV2MTcuNUgyLjJ6Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzNGNTFCNSIgZD0iTTIuMiAyLjJ2MTcuNWgxNy41bC4xLTE3LjVIMi4yem0xMi4xIDIuMmMxLjIgMCAyLjIgMSAyLjIgMi4ycy0xIDIuMi0yLjIgMi4yLTIuMi0xLTIuMi0yLjIgMS0yLjIgMi4yLTIuMnpNNC40IDE3LjZsMy4zLTguOCAzLjMgNi42IDIuMi0zLjIgNC40IDUuNEg0LjR6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-inspector: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY2YzAtMS4xLS45LTItMi0yem0tNSAxNEg0di00aDExdjR6bTAtNUg0VjloMTF2NHptNSA1aC00VjloNHY5eiIvPgo8L3N2Zz4K);\n  --jp-icon-json: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNGOUE4MjUiPgogICAgPHBhdGggZD0iTTIwLjIgMTEuOGMtMS42IDAtMS43LjUtMS43IDEgMCAuNC4xLjkuMSAxLjMuMS41LjEuOS4xIDEuMyAwIDEuNy0xLjQgMi4zLTMuNSAyLjNoLS45di0xLjloLjVjMS4xIDAgMS40IDAgMS40LS44IDAtLjMgMC0uNi0uMS0xIDAtLjQtLjEtLjgtLjEtMS4yIDAtMS4zIDAtMS44IDEuMy0yLTEuMy0uMi0xLjMtLjctMS4zLTIgMC0uNC4xLS44LjEtMS4yLjEtLjQuMS0uNy4xLTEgMC0uOC0uNC0uNy0xLjQtLjhoLS41VjQuMWguOWMyLjIgMCAzLjUuNyAzLjUgMi4zIDAgLjQtLjEuOS0uMSAxLjMtLjEuNS0uMS45LS4xIDEuMyAwIC41LjIgMSAxLjcgMXYxLjh6TTEuOCAxMC4xYzEuNiAwIDEuNy0uNSAxLjctMSAwLS40LS4xLS45LS4xLTEuMy0uMS0uNS0uMS0uOS0uMS0xLjMgMC0xLjYgMS40LTIuMyAzLjUtMi4zaC45djEuOWgtLjVjLTEgMC0xLjQgMC0xLjQuOCAwIC4zIDAgLjYuMSAxIDAgLjIuMS42LjEgMSAwIDEuMyAwIDEuOC0xLjMgMkM2IDExLjIgNiAxMS43IDYgMTNjMCAuNC0uMS44LS4xIDEuMi0uMS4zLS4xLjctLjEgMSAwIC44LjMuOCAxLjQuOGguNXYxLjloLS45Yy0yLjEgMC0zLjUtLjYtMy41LTIuMyAwLS40LjEtLjkuMS0xLjMuMS0uNS4xLS45LjEtMS4zIDAtLjUtLjItMS0xLjctMXYtMS45eiIvPgogICAgPGNpcmNsZSBjeD0iMTEiIGN5PSIxMy44IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY3g9IjExIiBjeT0iOC4yIiByPSIyLjEiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-julia: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDMyNSAzMDAiPgogIDxnIGNsYXNzPSJqcC1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjY2IzYzMzIj4KICAgIDxwYXRoIGQ9Ik0gMTUwLjg5ODQzOCAyMjUgQyAxNTAuODk4NDM4IDI2Ni40MjE4NzUgMTE3LjMyMDMxMiAzMDAgNzUuODk4NDM4IDMwMCBDIDM0LjQ3NjU2MiAzMDAgMC44OTg0MzggMjY2LjQyMTg3NSAwLjg5ODQzOCAyMjUgQyAwLjg5ODQzOCAxODMuNTc4MTI1IDM0LjQ3NjU2MiAxNTAgNzUuODk4NDM4IDE1MCBDIDExNy4zMjAzMTIgMTUwIDE1MC44OTg0MzggMTgzLjU3ODEyNSAxNTAuODk4NDM4IDIyNSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzM4OTgyNiI+CiAgICA8cGF0aCBkPSJNIDIzNy41IDc1IEMgMjM3LjUgMTE2LjQyMTg3NSAyMDMuOTIxODc1IDE1MCAxNjIuNSAxNTAgQyAxMjEuMDc4MTI1IDE1MCA4Ny41IDExNi40MjE4NzUgODcuNSA3NSBDIDg3LjUgMzMuNTc4MTI1IDEyMS4wNzgxMjUgMCAxNjIuNSAwIEMgMjAzLjkyMTg3NSAwIDIzNy41IDMzLjU3ODEyNSAyMzcuNSA3NSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzk1NThiMiI+CiAgICA8cGF0aCBkPSJNIDMyNC4xMDE1NjIgMjI1IEMgMzI0LjEwMTU2MiAyNjYuNDIxODc1IDI5MC41MjM0MzggMzAwIDI0OS4xMDE1NjIgMzAwIEMgMjA3LjY3OTY4OCAzMDAgMTc0LjEwMTU2MiAyNjYuNDIxODc1IDE3NC4xMDE1NjIgMjI1IEMgMTc0LjEwMTU2MiAxODMuNTc4MTI1IDIwNy42Nzk2ODggMTUwIDI0OS4xMDE1NjIgMTUwIEMgMjkwLjUyMzQzOCAxNTAgMzI0LjEwMTU2MiAxODMuNTc4MTI1IDMyNC4xMDE1NjIgMjI1Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-jupyter-favicon: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUyIiBoZWlnaHQ9IjE2NSIgdmlld0JveD0iMCAwIDE1MiAxNjUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA3ODk0NywgMTEwLjU4MjkyNykiIGQ9Ik03NS45NDIyODQyLDI5LjU4MDQ1NjEgQzQzLjMwMjM5NDcsMjkuNTgwNDU2MSAxNC43OTY3ODMyLDE3LjY1MzQ2MzQgMCwwIEM1LjUxMDgzMjExLDE1Ljg0MDY4MjkgMTUuNzgxNTM4OSwyOS41NjY3NzMyIDI5LjM5MDQ5NDcsMzkuMjc4NDE3MSBDNDIuOTk5Nyw0OC45ODk4NTM3IDU5LjI3MzcsNTQuMjA2NzgwNSA3NS45NjA1Nzg5LDU0LjIwNjc4MDUgQzkyLjY0NzQ1NzksNTQuMjA2NzgwNSAxMDguOTIxNDU4LDQ4Ljk4OTg1MzcgMTIyLjUzMDY2MywzOS4yNzg0MTcxIEMxMzYuMTM5NDUzLDI5LjU2Njc3MzIgMTQ2LjQxMDI4NCwxNS44NDA2ODI5IDE1MS45MjExNTgsMCBDMTM3LjA4Nzg2OCwxNy42NTM0NjM0IDEwOC41ODI1ODksMjkuNTgwNDU2MSA3NS45NDIyODQyLDI5LjU4MDQ1NjEgTDc1Ljk0MjI4NDIsMjkuNTgwNDU2MSBaIiAvPgogICAgPHBhdGggdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMzczNjgsIDAuNzA0ODc4KSIgZD0iTTc1Ljk3ODQ1NzksMjQuNjI2NDA3MyBDMTA4LjYxODc2MywyNC42MjY0MDczIDEzNy4xMjQ0NTgsMzYuNTUzNDQxNSAxNTEuOTIxMTU4LDU0LjIwNjc4MDUgQzE0Ni40MTAyODQsMzguMzY2MjIyIDEzNi4xMzk0NTMsMjQuNjQwMTMxNyAxMjIuNTMwNjYzLDE0LjkyODQ4NzggQzEwOC45MjE0NTgsNS4yMTY4NDM5IDkyLjY0NzQ1NzksMCA3NS45NjA1Nzg5LDAgQzU5LjI3MzcsMCA0Mi45OTk3LDUuMjE2ODQzOSAyOS4zOTA0OTQ3LDE0LjkyODQ4NzggQzE1Ljc4MTUzODksMjQuNjQwMTMxNyA1LjUxMDgzMjExLDM4LjM2NjIyMiAwLDU0LjIwNjc4MDUgQzE0LjgzMzA4MTYsMzYuNTg5OTI5MyA0My4zMzg1Njg0LDI0LjYyNjQwNzMgNzUuOTc4NDU3OSwyNC42MjY0MDczIEw3NS45Nzg0NTc5LDI0LjYyNjQwNzMgWiIgLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-jupyter: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzkiIGhlaWdodD0iNTEiIHZpZXdCb3g9IjAgMCAzOSA1MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTYzOCAtMjI4MSkiPgogICAgPGcgY2xhc3M9ImpwLWljb24td2FybjAiIGZpbGw9IiNGMzc3MjYiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5Ljc0IDIzMTEuOTgpIiBkPSJNIDE4LjI2NDYgNy4xMzQxMUMgMTAuNDE0NSA3LjEzNDExIDMuNTU4NzIgNC4yNTc2IDAgMEMgMS4zMjUzOSAzLjgyMDQgMy43OTU1NiA3LjEzMDgxIDcuMDY4NiA5LjQ3MzAzQyAxMC4zNDE3IDExLjgxNTIgMTQuMjU1NyAxMy4wNzM0IDE4LjI2OSAxMy4wNzM0QyAyMi4yODIzIDEzLjA3MzQgMjYuMTk2MyAxMS44MTUyIDI5LjQ2OTQgOS40NzMwM0MgMzIuNzQyNCA3LjEzMDgxIDM1LjIxMjYgMy44MjA0IDM2LjUzOCAwQyAzMi45NzA1IDQuMjU3NiAyNi4xMTQ4IDcuMTM0MTEgMTguMjY0NiA3LjEzNDExWiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5LjczIDIyODUuNDgpIiBkPSJNIDE4LjI3MzMgNS45MzkzMUMgMjYuMTIzNSA1LjkzOTMxIDMyLjk3OTMgOC44MTU4MyAzNi41MzggMTMuMDczNEMgMzUuMjEyNiA5LjI1MzAzIDMyLjc0MjQgNS45NDI2MiAyOS40Njk0IDMuNjAwNEMgMjYuMTk2MyAxLjI1ODE4IDIyLjI4MjMgMCAxOC4yNjkgMEMgMTQuMjU1NyAwIDEwLjM0MTcgMS4yNTgxOCA3LjA2ODYgMy42MDA0QyAzLjc5NTU2IDUuOTQyNjIgMS4zMjUzOSA5LjI1MzAzIDAgMTMuMDczNEMgMy41Njc0NSA4LjgyNDYzIDEwLjQyMzIgNS45MzkzMSAxOC4yNzMzIDUuOTM5MzFaIi8+CiAgICA8L2c+CiAgICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjY5LjMgMjI4MS4zMSkiIGQ9Ik0gNS44OTM1MyAyLjg0NEMgNS45MTg4OSAzLjQzMTY1IDUuNzcwODUgNC4wMTM2NyA1LjQ2ODE1IDQuNTE2NDVDIDUuMTY1NDUgNS4wMTkyMiA0LjcyMTY4IDUuNDIwMTUgNC4xOTI5OSA1LjY2ODUxQyAzLjY2NDMgNS45MTY4OCAzLjA3NDQ0IDYuMDAxNTEgMi40OTgwNSA1LjkxMTcxQyAxLjkyMTY2IDUuODIxOSAxLjM4NDYzIDUuNTYxNyAwLjk1NDg5OCA1LjE2NDAxQyAwLjUyNTE3IDQuNzY2MzMgMC4yMjIwNTYgNC4yNDkwMyAwLjA4MzkwMzcgMy42Nzc1N0MgLTAuMDU0MjQ4MyAzLjEwNjExIC0wLjAyMTIzIDIuNTA2MTcgMC4xNzg3ODEgMS45NTM2NEMgMC4zNzg3OTMgMS40MDExIDAuNzM2ODA5IDAuOTIwODE3IDEuMjA3NTQgMC41NzM1MzhDIDEuNjc4MjYgMC4yMjYyNTkgMi4yNDA1NSAwLjAyNzU5MTkgMi44MjMyNiAwLjAwMjY3MjI5QyAzLjYwMzg5IC0wLjAzMDcxMTUgNC4zNjU3MyAwLjI0OTc4OSA0Ljk0MTQyIDAuNzgyNTUxQyA1LjUxNzExIDEuMzE1MzEgNS44NTk1NiAyLjA1Njc2IDUuODkzNTMgMi44NDRaIi8+CiAgICAgIDxwYXRoIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE2MzkuOCAyMzIzLjgxKSIgZD0iTSA3LjQyNzg5IDMuNTgzMzhDIDcuNDYwMDggNC4zMjQzIDcuMjczNTUgNS4wNTgxOSA2Ljg5MTkzIDUuNjkyMTNDIDYuNTEwMzEgNi4zMjYwNyA1Ljk1MDc1IDYuODMxNTYgNS4yODQxMSA3LjE0NDZDIDQuNjE3NDcgNy40NTc2MyAzLjg3MzcxIDcuNTY0MTQgMy4xNDcwMiA3LjQ1MDYzQyAyLjQyMDMyIDcuMzM3MTIgMS43NDMzNiA3LjAwODcgMS4yMDE4NCA2LjUwNjk1QyAwLjY2MDMyOCA2LjAwNTIgMC4yNzg2MSA1LjM1MjY4IDAuMTA1MDE3IDQuNjMyMDJDIC0wLjA2ODU3NTcgMy45MTEzNSAtMC4wMjYyMzYxIDMuMTU0OTQgMC4yMjY2NzUgMi40NTg1NkMgMC40Nzk1ODcgMS43NjIxNyAwLjkzMTY5NyAxLjE1NzEzIDEuNTI1NzYgMC43MjAwMzNDIDIuMTE5ODMgMC4yODI5MzUgMi44MjkxNCAwLjAzMzQzOTUgMy41NjM4OSAwLjAwMzEzMzQ0QyA0LjU0NjY3IC0wLjAzNzQwMzMgNS41MDUyOSAwLjMxNjcwNiA2LjIyOTYxIDAuOTg3ODM1QyA2Ljk1MzkzIDEuNjU4OTYgNy4zODQ4NCAyLjU5MjM1IDcuNDI3ODkgMy41ODMzOEwgNy40Mjc4OSAzLjU4MzM4WiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM4LjM2IDIyODYuMDYpIiBkPSJNIDIuMjc0NzEgNC4zOTYyOUMgMS44NDM2MyA0LjQxNTA4IDEuNDE2NzEgNC4zMDQ0NSAxLjA0Nzk5IDQuMDc4NDNDIDAuNjc5MjY4IDMuODUyNCAwLjM4NTMyOCAzLjUyMTE0IDAuMjAzMzcxIDMuMTI2NTZDIDAuMDIxNDEzNiAyLjczMTk4IC0wLjA0MDM3OTggMi4yOTE4MyAwLjAyNTgxMTYgMS44NjE4MUMgMC4wOTIwMDMxIDEuNDMxOCAwLjI4MzIwNCAxLjAzMTI2IDAuNTc1MjEzIDAuNzEwODgzQyAwLjg2NzIyMiAwLjM5MDUxIDEuMjQ2OTEgMC4xNjQ3MDggMS42NjYyMiAwLjA2MjA1OTJDIDIuMDg1NTMgLTAuMDQwNTg5NyAyLjUyNTYxIC0wLjAxNTQ3MTQgMi45MzA3NiAwLjEzNDIzNUMgMy4zMzU5MSAwLjI4Mzk0MSAzLjY4NzkyIDAuNTUxNTA1IDMuOTQyMjIgMC45MDMwNkMgNC4xOTY1MiAxLjI1NDYyIDQuMzQxNjkgMS42NzQzNiA0LjM1OTM1IDIuMTA5MTZDIDQuMzgyOTkgMi42OTEwNyA0LjE3Njc4IDMuMjU4NjkgMy43ODU5NyAzLjY4NzQ2QyAzLjM5NTE2IDQuMTE2MjQgMi44NTE2NiA0LjM3MTE2IDIuMjc0NzEgNC4zOTYyOUwgMi4yNzQ3MSA0LjM5NjI5WiIvPgogICAgPC9nPgogIDwvZz4+Cjwvc3ZnPgo=);\n  --jp-icon-jupyterlab-wordmark: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIHZpZXdCb3g9IjAgMCAxODYwLjggNDc1Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0RTRFNEUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ4MC4xMzY0MDEsIDY0LjI3MTQ5MykiPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMDAwMDAsIDU4Ljg3NTU2NikiPgogICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA4NzYwMywgMC4xNDAyOTQpIj4KICAgICAgICA8cGF0aCBkPSJNLTQyNi45LDE2OS44YzAsNDguNy0zLjcsNjQuNy0xMy42LDc2LjRjLTEwLjgsMTAtMjUsMTUuNS0zOS43LDE1LjVsMy43LDI5IGMyMi44LDAuMyw0NC44LTcuOSw2MS45LTIzLjFjMTcuOC0xOC41LDI0LTQ0LjEsMjQtODMuM1YwSC00Mjd2MTcwLjFMLTQyNi45LDE2OS44TC00MjYuOSwxNjkuOHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTU1LjA0NTI5NiwgNTYuODM3MTA0KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuNTYyNDUzLCAxLjc5OTg0MikiPgogICAgICAgIDxwYXRoIGQ9Ik0tMzEyLDE0OGMwLDIxLDAsMzkuNSwxLjcsNTUuNGgtMzEuOGwtMi4xLTMzLjNoLTAuOGMtNi43LDExLjYtMTYuNCwyMS4zLTI4LDI3LjkgYy0xMS42LDYuNi0yNC44LDEwLTM4LjIsOS44Yy0zMS40LDAtNjktMTcuNy02OS04OVYwaDM2LjR2MTEyLjdjMCwzOC43LDExLjYsNjQuNyw0NC42LDY0LjdjMTAuMy0wLjIsMjAuNC0zLjUsMjguOS05LjQgYzguNS01LjksMTUuMS0xNC4zLDE4LjktMjMuOWMyLjItNi4xLDMuMy0xMi41LDMuMy0xOC45VjAuMmgzNi40VjE0OEgtMzEyTC0zMTIsMTQ4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzOTAuMDEzMzIyLCA1My40Nzk2MzgpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS43MDY0NTgsIDAuMjMxNDI1KSI+CiAgICAgICAgPHBhdGggZD0iTS00NzguNiw3MS40YzAtMjYtMC44LTQ3LTEuNy02Ni43aDMyLjdsMS43LDM0LjhoMC44YzcuMS0xMi41LDE3LjUtMjIuOCwzMC4xLTI5LjcgYzEyLjUtNywyNi43LTEwLjMsNDEtOS44YzQ4LjMsMCw4NC43LDQxLjcsODQuNywxMDMuM2MwLDczLjEtNDMuNywxMDkuMi05MSwxMDkuMmMtMTIuMSwwLjUtMjQuMi0yLjItMzUtNy44IGMtMTAuOC01LjYtMTkuOS0xMy45LTI2LjYtMjQuMmgtMC44VjI5MWgtMzZ2LTIyMEwtNDc4LjYsNzEuNEwtNDc4LjYsNzEuNHogTS00NDIuNiwxMjUuNmMwLjEsNS4xLDAuNiwxMC4xLDEuNywxNS4xIGMzLDEyLjMsOS45LDIzLjMsMTkuOCwzMS4xYzkuOSw3LjgsMjIuMSwxMi4xLDM0LjcsMTIuMWMzOC41LDAsNjAuNy0zMS45LDYwLjctNzguNWMwLTQwLjctMjEuMS03NS42LTU5LjUtNzUuNiBjLTEyLjksMC40LTI1LjMsNS4xLTM1LjMsMTMuNGMtOS45LDguMy0xNi45LDE5LjctMTkuNiwzMi40Yy0xLjUsNC45LTIuMywxMC0yLjUsMTUuMVYxMjUuNkwtNDQyLjYsMTI1LjZMLTQ0Mi42LDEyNS42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MDYuNzQwNzI2LCA1Ni44MzcxMDQpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC43NTEyMjYsIDEuOTg5Mjk5KSI+CiAgICAgICAgPHBhdGggZD0iTS00NDAuOCwwbDQzLjcsMTIwLjFjNC41LDEzLjQsOS41LDI5LjQsMTIuOCw0MS43aDAuOGMzLjctMTIuMiw3LjktMjcuNywxMi44LTQyLjQgbDM5LjctMTE5LjJoMzguNUwtMzQ2LjksMTQ1Yy0yNiw2OS43LTQzLjcsMTA1LjQtNjguNiwxMjcuMmMtMTIuNSwxMS43LTI3LjksMjAtNDQuNiwyMy45bC05LjEtMzEuMSBjMTEuNy0zLjksMjIuNS0xMC4xLDMxLjgtMTguMWMxMy4yLTExLjEsMjMuNy0yNS4yLDMwLjYtNDEuMmMxLjUtMi44LDIuNS01LjcsMi45LTguOGMtMC4zLTMuMy0xLjItNi42LTIuNS05LjdMLTQ4MC4yLDAuMSBoMzkuN0wtNDQwLjgsMEwtNDQwLjgsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODIyLjc0ODEwNCwgMC4wMDAwMDApIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS40NjQwNTAsIDAuMzc4OTE0KSI+CiAgICAgICAgPHBhdGggZD0iTS00MTMuNywwdjU4LjNoNTJ2MjguMmgtNTJWMTk2YzAsMjUsNywzOS41LDI3LjMsMzkuNWM3LjEsMC4xLDE0LjItMC43LDIxLjEtMi41IGwxLjcsMjcuN2MtMTAuMywzLjctMjEuMyw1LjQtMzIuMiw1Yy03LjMsMC40LTE0LjYtMC43LTIxLjMtMy40Yy02LjgtMi43LTEyLjktNi44LTE3LjktMTIuMWMtMTAuMy0xMC45LTE0LjEtMjktMTQuMS01Mi45IFY4Ni41aC0zMVY1OC4zaDMxVjkuNkwtNDEzLjcsMEwtNDEzLjcsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOTc0LjQzMzI4NiwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuOTkwMDM0LCAwLjYxMDMzOSkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDQ1LjgsMTEzYzAuOCw1MCwzMi4yLDcwLjYsNjguNiw3MC42YzE5LDAuNiwzNy45LTMsNTUuMy0xMC41bDYuMiwyNi40IGMtMjAuOSw4LjktNDMuNSwxMy4xLTY2LjIsMTIuNmMtNjEuNSwwLTk4LjMtNDEuMi05OC4zLTEwMi41Qy00ODAuMiw0OC4yLTQ0NC43LDAtMzg2LjUsMGM2NS4yLDAsODIuNyw1OC4zLDgyLjcsOTUuNyBjLTAuMSw1LjgtMC41LDExLjUtMS4yLDE3LjJoLTE0MC42SC00NDUuOEwtNDQ1LjgsMTEzeiBNLTMzOS4yLDg2LjZjMC40LTIzLjUtOS41LTYwLjEtNTAuNC02MC4xIGMtMzYuOCwwLTUyLjgsMzQuNC01NS43LDYwLjFILTMzOS4yTC0zMzkuMiw4Ni42TC0zMzkuMiw4Ni42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjAxLjk2MTA1OCwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuMTc5NjQwLCAwLjcwNTA2OCkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDc4LjYsNjhjMC0yMy45LTAuNC00NC41LTEuNy02My40aDMxLjhsMS4yLDM5LjloMS43YzkuMS0yNy4zLDMxLTQ0LjUsNTUuMy00NC41IGMzLjUtMC4xLDcsMC40LDEwLjMsMS4ydjM0LjhjLTQuMS0wLjktOC4yLTEuMy0xMi40LTEuMmMtMjUuNiwwLTQzLjcsMTkuNy00OC43LDQ3LjRjLTEsNS43LTEuNiwxMS41LTEuNywxNy4ydjEwOC4zaC0zNlY2OCBMLTQ3OC42LDY4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCBkPSJNMTM1Mi4zLDMyNi4yaDM3VjI4aC0zN1YzMjYuMnogTTE2MDQuOCwzMjYuMmMtMi41LTEzLjktMy40LTMxLjEtMy40LTQ4Ljd2LTc2IGMwLTQwLjctMTUuMS04My4xLTc3LjMtODMuMWMtMjUuNiwwLTUwLDcuMS02Ni44LDE4LjFsOC40LDI0LjRjMTQuMy05LjIsMzQtMTUuMSw1My0xNS4xYzQxLjYsMCw0Ni4yLDMwLjIsNDYuMiw0N3Y0LjIgYy03OC42LTAuNC0xMjIuMywyNi41LTEyMi4zLDc1LjZjMCwyOS40LDIxLDU4LjQsNjIuMiw1OC40YzI5LDAsNTAuOS0xNC4zLDYyLjItMzAuMmgxLjNsMi45LDI1LjZIMTYwNC44eiBNMTU2NS43LDI1Ny43IGMwLDMuOC0wLjgsOC0yLjEsMTEuOGMtNS45LDE3LjItMjIuNywzNC00OS4yLDM0Yy0xOC45LDAtMzQuOS0xMS4zLTM0LjktMzUuM2MwLTM5LjUsNDUuOC00Ni42LDg2LjItNDUuOFYyNTcuN3ogTTE2OTguNSwzMjYuMiBsMS43LTMzLjZoMS4zYzE1LjEsMjYuOSwzOC43LDM4LjIsNjguMSwzOC4yYzQ1LjQsMCw5MS4yLTM2LjEsOTEuMi0xMDguOGMwLjQtNjEuNy0zNS4zLTEwMy43LTg1LjctMTAzLjcgYy0zMi44LDAtNTYuMywxNC43LTY5LjMsMzcuNGgtMC44VjI4aC0zNi42djI0NS43YzAsMTguMS0wLjgsMzguNi0xLjcsNTIuNUgxNjk4LjV6IE0xNzA0LjgsMjA4LjJjMC01LjksMS4zLTEwLjksMi4xLTE1LjEgYzcuNi0yOC4xLDMxLjEtNDUuNCw1Ni4zLTQ1LjRjMzkuNSwwLDYwLjUsMzQuOSw2MC41LDc1LjZjMCw0Ni42LTIzLjEsNzguMS02MS44LDc4LjFjLTI2LjksMC00OC4zLTE3LjYtNTUuNS00My4zIGMtMC44LTQuMi0xLjctOC44LTEuNy0xMy40VjIwOC4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgZmlsbD0iIzYxNjE2MSIgZD0iTTE1IDlIOXY2aDZWOXptLTIgNGgtMnYtMmgydjJ6bTgtMlY5aC0yVjdjMC0xLjEtLjktMi0yLTJoLTJWM2gtMnYyaC0yVjNIOXYySDdjLTEuMSAwLTIgLjktMiAydjJIM3YyaDJ2MkgzdjJoMnYyYzAgMS4xLjkgMiAyIDJoMnYyaDJ2LTJoMnYyaDJ2LTJoMmMxLjEgMCAyLS45IDItMnYtMmgydi0yaC0ydi0yaDJ6bS00IDZIN1Y3aDEwdjEweiIvPgo8L3N2Zz4K);\n  --jp-icon-keyboard: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMTdjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY3YzAtMS4xLS45LTItMi0yem0tOSAzaDJ2MmgtMlY4em0wIDNoMnYyaC0ydi0yek04IDhoMnYySDhWOHptMCAzaDJ2Mkg4di0yem0tMSAySDV2LTJoMnYyem0wLTNINVY4aDJ2MnptOSA3SDh2LTJoOHYyem0wLTRoLTJ2LTJoMnYyem0wLTNoLTJWOGgydjJ6bTMgM2gtMnYtMmgydjJ6bTAtM2gtMlY4aDJ2MnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-launcher: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkgMTlINVY1aDdWM0g1YTIgMiAwIDAwLTIgMnYxNGEyIDIgMCAwMDIgMmgxNGMxLjEgMCAyLS45IDItMnYtN2gtMnY3ek0xNCAzdjJoMy41OWwtOS44MyA5LjgzIDEuNDEgMS40MUwxOSA2LjQxVjEwaDJWM2gtN3oiLz4KPC9zdmc+Cg==);\n  --jp-icon-line-form: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGZpbGw9IndoaXRlIiBkPSJNNS44OCA0LjEyTDEzLjc2IDEybC03Ljg4IDcuODhMOCAyMmwxMC0xMEw4IDJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-link: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMuOSAxMmMwLTEuNzEgMS4zOS0zLjEgMy4xLTMuMWg0VjdIN2MtMi43NiAwLTUgMi4yNC01IDVzMi4yNCA1IDUgNWg0di0xLjlIN2MtMS43MSAwLTMuMS0xLjM5LTMuMS0zLjF6TTggMTNoOHYtMkg4djJ6bTktNmgtNHYxLjloNGMxLjcxIDAgMy4xIDEuMzkgMy4xIDMuMXMtMS4zOSAzLjEtMy4xIDMuMWgtNFYxN2g0YzIuNzYgMCA1LTIuMjQgNS01cy0yLjI0LTUtNS01eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiM2MTYxNjEiIGQ9Ik0xOSA1djE0SDVWNWgxNG0xLjEtMkgzLjljLS41IDAtLjkuNC0uOS45djE2LjJjMCAuNC40LjkuOS45aDE2LjJjLjQgMCAuOS0uNS45LS45VjMuOWMwLS41LS41LS45LS45LS45ek0xMSA3aDZ2MmgtNlY3em0wIDRoNnYyaC02di0yem0wIDRoNnYyaC02ek03IDdoMnYySDd6bTAgNGgydjJIN3ptMCA0aDJ2Mkg3eiIvPgo8L3N2Zz4=);\n  --jp-icon-listings-info: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MC45NzggNTAuOTc4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MC45NzggNTAuOTc4OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+Cgk8Zz4KCQk8cGF0aCBzdHlsZT0iZmlsbDojMDEwMDAyOyIgZD0iTTQzLjUyLDcuNDU4QzM4LjcxMSwyLjY0OCwzMi4zMDcsMCwyNS40ODksMEMxOC42NywwLDEyLjI2NiwyLjY0OCw3LjQ1OCw3LjQ1OAoJCQljLTkuOTQzLDkuOTQxLTkuOTQzLDI2LjExOSwwLDM2LjA2MmM0LjgwOSw0LjgwOSwxMS4yMTIsNy40NTYsMTguMDMxLDcuNDU4YzAsMCwwLjAwMSwwLDAuMDAyLDAKCQkJYzYuODE2LDAsMTMuMjIxLTIuNjQ4LDE4LjAyOS03LjQ1OGM0LjgwOS00LjgwOSw3LjQ1Ny0xMS4yMTIsNy40NTctMTguMDNDNTAuOTc3LDE4LjY3LDQ4LjMyOCwxMi4yNjYsNDMuNTIsNy40NTh6CgkJCSBNNDIuMTA2LDQyLjEwNWMtNC40MzIsNC40MzEtMTAuMzMyLDYuODcyLTE2LjYxNSw2Ljg3MmgtMC4wMDJjLTYuMjg1LTAuMDAxLTEyLjE4Ny0yLjQ0MS0xNi42MTctNi44NzIKCQkJYy05LjE2Mi05LjE2My05LjE2Mi0yNC4wNzEsMC0zMy4yMzNDMTMuMzAzLDQuNDQsMTkuMjA0LDIsMjUuNDg5LDJjNi4yODQsMCwxMi4xODYsMi40NCwxNi42MTcsNi44NzIKCQkJYzQuNDMxLDQuNDMxLDYuODcxLDEwLjMzMiw2Ljg3MSwxNi42MTdDNDguOTc3LDMxLjc3Miw0Ni41MzYsMzcuNjc1LDQyLjEwNiw0Mi4xMDV6Ii8+CgkJPHBhdGggc3R5bGU9ImZpbGw6IzAxMDAwMjsiIGQ9Ik0yMy41NzgsMzIuMjE4Yy0wLjAyMy0xLjczNCwwLjE0My0zLjA1OSwwLjQ5Ni0zLjk3MmMwLjM1My0wLjkxMywxLjExLTEuOTk3LDIuMjcyLTMuMjUzCgkJCWMwLjQ2OC0wLjUzNiwwLjkyMy0xLjA2MiwxLjM2Ny0xLjU3NWMwLjYyNi0wLjc1MywxLjEwNC0xLjQ3OCwxLjQzNi0yLjE3NWMwLjMzMS0wLjcwNywwLjQ5NS0xLjU0MSwwLjQ5NS0yLjUKCQkJYzAtMS4wOTYtMC4yNi0yLjA4OC0wLjc3OS0yLjk3OWMtMC41NjUtMC44NzktMS41MDEtMS4zMzYtMi44MDYtMS4zNjljLTEuODAyLDAuMDU3LTIuOTg1LDAuNjY3LTMuNTUsMS44MzIKCQkJYy0wLjMwMSwwLjUzNS0wLjUwMywxLjE0MS0wLjYwNywxLjgxNGMtMC4xMzksMC43MDctMC4yMDcsMS40MzItMC4yMDcsMi4xNzRoLTIuOTM3Yy0wLjA5MS0yLjIwOCwwLjQwNy00LjExNCwxLjQ5My01LjcxOQoJCQljMS4wNjItMS42NCwyLjg1NS0yLjQ4MSw1LjM3OC0yLjUyN2MyLjE2LDAuMDIzLDMuODc0LDAuNjA4LDUuMTQxLDEuNzU4YzEuMjc4LDEuMTYsMS45MjksMi43NjQsMS45NSw0LjgxMQoJCQljMCwxLjE0Mi0wLjEzNywyLjExMS0wLjQxLDIuOTExYy0wLjMwOSwwLjg0NS0wLjczMSwxLjU5My0xLjI2OCwyLjI0M2MtMC40OTIsMC42NS0xLjA2OCwxLjMxOC0xLjczLDIuMDAyCgkJCWMtMC42NSwwLjY5Ny0xLjMxMywxLjQ3OS0xLjk4NywyLjM0NmMtMC4yMzksMC4zNzctMC40MjksMC43NzctMC41NjUsMS4xOTljLTAuMTYsMC45NTktMC4yMTcsMS45NTEtMC4xNzEsMi45NzkKCQkJQzI2LjU4OSwzMi4yMTgsMjMuNTc4LDMyLjIxOCwyMy41NzgsMzIuMjE4eiBNMjMuNTc4LDM4LjIydi0zLjQ4NGgzLjA3NnYzLjQ4NEgyMy41Nzh6Ii8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-markdown: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjN0IxRkEyIiBkPSJNNSAxNC45aDEybC02LjEgNnptOS40LTYuOGMwLTEuMy0uMS0yLjktLjEtNC41LS40IDEuNC0uOSAyLjktMS4zIDQuM2wtMS4zIDQuM2gtMkw4LjUgNy45Yy0uNC0xLjMtLjctMi45LTEtNC4zLS4xIDEuNi0uMSAzLjItLjIgNC42TDcgMTIuNEg0LjhsLjctMTFoMy4zTDEwIDVjLjQgMS4yLjcgMi43IDEgMy45LjMtMS4yLjctMi42IDEtMy45bDEuMi0zLjdoMy4zbC42IDExaC0yLjRsLS4zLTQuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-new-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwIDZoLThsLTItMkg0Yy0xLjExIDAtMS45OS44OS0xLjk5IDJMMiAxOGMwIDEuMTEuODkgMiAyIDJoMTZjMS4xMSAwIDItLjg5IDItMlY4YzAtMS4xMS0uODktMi0yLTJ6bS0xIDhoLTN2M2gtMnYtM2gtM3YtMmgzVjloMnYzaDN2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-not-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI1IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMTkgMTcuMTg0NCAyLjk2OTY4IDE0LjMwMzIgMS44NjA5NCAxMS40NDA5WiIvPgogICAgPHBhdGggY2xhc3M9ImpwLWljb24yIiBzdHJva2U9IiMzMzMzMzMiIHN0cm9rZS13aWR0aD0iMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOS4zMTU5MiA5LjMyMDMxKSIgZD0iTTcuMzY4NDIgMEwwIDcuMzY0NzkiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDkuMzE1OTIgMTYuNjgzNikgc2NhbGUoMSAtMSkiIGQ9Ik03LjM2ODQyIDBMMCA3LjM2NDc5Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-notebook: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNFRjZDMDAiPgogICAgPHBhdGggZD0iTTE4LjcgMy4zdjE1LjRIMy4zVjMuM2gxNS40bTEuNS0xLjVIMS44djE4LjNoMTguM2wuMS0xOC4zeiIvPgogICAgPHBhdGggZD0iTTE2LjUgMTYuNWwtNS40LTQuMy01LjYgNC4zdi0xMWgxMXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-numbering: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTQgMTlINlYxOS41SDVWMjAuNUg2VjIxSDRWMjJIN1YxOEg0VjE5Wk01IDEwSDZWNkg0VjdINVYxMFpNNCAxM0g1LjhMNCAxNS4xVjE2SDdWMTVINS4yTDcgMTIuOVYxMkg0VjEzWk05IDdWOUgyM1Y3SDlaTTkgMjFIMjNWMTlIOVYyMVpNOSAxNUgyM1YxM0g5VjE1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-offline-bolt: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDIuMDJjLTUuNTEgMC05Ljk4IDQuNDctOS45OCA5Ljk4czQuNDcgOS45OCA5Ljk4IDkuOTggOS45OC00LjQ3IDkuOTgtOS45OFMxNy41MSAyLjAyIDEyIDIuMDJ6TTExLjQ4IDIwdi02LjI2SDhMMTMgNHY2LjI2aDMuMzVMMTEuNDggMjB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-palette: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE4IDEzVjIwSDRWNkg5LjAyQzkuMDcgNS4yOSA5LjI0IDQuNjIgOS41IDRINEMyLjkgNCAyIDQuOSAyIDZWMjBDMiAyMS4xIDIuOSAyMiA0IDIySDE4QzE5LjEgMjIgMjAgMjEuMSAyMCAyMFYxNUwxOCAxM1pNMTkuMyA4Ljg5QzE5Ljc0IDguMTkgMjAgNy4zOCAyMCA2LjVDMjAgNC4wMSAxNy45OSAyIDE1LjUgMkMxMy4wMSAyIDExIDQuMDEgMTEgNi41QzExIDguOTkgMTMuMDEgMTEgMTUuNDkgMTFDMTYuMzcgMTEgMTcuMTkgMTAuNzQgMTcuODggMTAuM0wyMSAxMy40MkwyMi40MiAxMkwxOS4zIDguODlaTTE1LjUgOUMxNC4xMiA5IDEzIDcuODggMTMgNi41QzEzIDUuMTIgMTQuMTIgNCAxNS41IDRDMTYuODggNCAxOCA1LjEyIDE4IDYuNUMxOCA3Ljg4IDE2Ljg4IDkgMTUuNSA5WiIvPgogICAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDZIOS4wMTg5NEM5LjAwNjM5IDYuMTY1MDIgOSA2LjMzMTc2IDkgNi41QzkgOC44MTU3NyAxMC4yMTEgMTAuODQ4NyAxMi4wMzQzIDEySDlWMTRIMTZWMTIuOTgxMUMxNi41NzAzIDEyLjkzNzcgMTcuMTIgMTIuODIwNyAxNy42Mzk2IDEyLjYzOTZMMTggMTNWMjBINFY2Wk04IDhINlYxMEg4VjhaTTYgMTJIOFYxNEg2VjEyWk04IDE2SDZWMThIOFYxNlpNOSAxNkgxNlYxOEg5VjE2WiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-paste: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE5IDJoLTQuMThDMTQuNC44NCAxMy4zIDAgMTIgMGMtMS4zIDAtMi40Ljg0LTIuODIgMkg1Yy0xLjEgMC0yIC45LTIgMnYxNmMwIDEuMS45IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjRjMC0xLjEtLjktMi0yLTJ6bS03IDBjLjU1IDAgMSAuNDUgMSAxcy0uNDUgMS0xIDEtMS0uNDUtMS0xIC40NS0xIDEtMXptNyAxOEg1VjRoMnYzaDEwVjRoMnYxNnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-pdf: url(data:image/svg+xml;base64,PHN2ZwogICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMiAyMiIgd2lkdGg9IjE2Ij4KICAgIDxwYXRoIHRyYW5zZm9ybT0icm90YXRlKDQ1KSIgY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI0ZGMkEyQSIKICAgICAgIGQ9Im0gMjIuMzQ0MzY5LC0zLjAxNjM2NDIgaCA1LjYzODYwNCB2IDEuNTc5MjQzMyBoIC0zLjU0OTIyNyB2IDEuNTA4NjkyOTkgaCAzLjMzNzU3NiBWIDEuNjUwODE1NCBoIC0zLjMzNzU3NiB2IDMuNDM1MjYxMyBoIC0yLjA4OTM3NyB6IG0gLTcuMTM2NDQ0LDEuNTc5MjQzMyB2IDQuOTQzOTU0MyBoIDAuNzQ4OTIgcSAxLjI4MDc2MSwwIDEuOTUzNzAzLC0wLjYzNDk1MzUgMC42NzgzNjksLTAuNjM0OTUzNSAwLjY3ODM2OSwtMS44NDUxNjQxIDAsLTEuMjA0NzgzNTUgLTAuNjcyOTQyLC0xLjgzNDMxMDExIC0wLjY3Mjk0MiwtMC42Mjk1MjY1OSAtMS45NTkxMywtMC42Mjk1MjY1OSB6IG0gLTIuMDg5Mzc3LC0xLjU3OTI0MzMgaCAyLjIwMzM0MyBxIDEuODQ1MTY0LDAgMi43NDYwMzksMC4yNjU5MjA3IDAuOTA2MzAxLDAuMjYwNDkzNyAxLjU1MjEwOCwwLjg5MDAyMDMgMC41Njk4MywwLjU0ODEyMjMgMC44NDY2MDUsMS4yNjQ0ODAwNiAwLjI3Njc3NCwwLjcxNjM1NzgxIDAuMjc2Nzc0LDEuNjIyNjU4OTQgMCwwLjkxNzE1NTEgLTAuMjc2Nzc0LDEuNjM4OTM5OSAtMC4yNzY3NzUsMC43MTYzNTc4IC0wLjg0NjYwNSwxLjI2NDQ4IC0wLjY1MTIzNCwwLjYyOTUyNjYgLTEuNTYyOTYyLDAuODk1NDQ3MyAtMC45MTE3MjgsMC4yNjA0OTM3IC0yLjczNTE4NSwwLjI2MDQ5MzcgaCAtMi4yMDMzNDMgeiBtIC04LjE0NTg1NjUsMCBoIDMuNDY3ODIzIHEgMS41NDY2ODE2LDAgMi4zNzE1Nzg1LDAuNjg5MjIzIDAuODMwMzI0LDAuNjgzNzk2MSAwLjgzMDMyNCwxLjk1MzcwMzE0IDAsMS4yNzUzMzM5NyAtMC44MzAzMjQsMS45NjQ1NTcwNiBRIDkuOTg3MTk2MSwyLjI3NDkxNSA4LjQ0MDUxNDUsMi4yNzQ5MTUgSCA3LjA2MjA2ODQgViA1LjA4NjA3NjcgSCA0Ljk3MjY5MTUgWiBtIDIuMDg5Mzc2OSwxLjUxNDExOTkgdiAyLjI2MzAzOTQzIGggMS4xNTU5NDEgcSAwLjYwNzgxODgsMCAwLjkzODg2MjksLTAuMjkzMDU1NDcgMC4zMzEwNDQxLC0wLjI5ODQ4MjQxIDAuMzMxMDQ0MSwtMC44NDExNzc3MiAwLC0wLjU0MjY5NTMxIC0wLjMzMTA0NDEsLTAuODM1NzUwNzQgLTAuMzMxMDQ0MSwtMC4yOTMwNTU1IC0wLjkzODg2MjksLTAuMjkzMDU1NSB6IgovPgo8L3N2Zz4K);\n  --jp-icon-python: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMEQ0N0ExIj4KICAgIDxwYXRoIGQ9Ik0xMS4xIDYuOVY1LjhINi45YzAtLjUgMC0xLjMuMi0xLjYuNC0uNy44LTEuMSAxLjctMS40IDEuNy0uMyAyLjUtLjMgMy45LS4xIDEgLjEgMS45LjkgMS45IDEuOXY0LjJjMCAuNS0uOSAxLjYtMiAxLjZIOC44Yy0xLjUgMC0yLjQgMS40LTIuNCAyLjh2Mi4ySDQuN0MzLjUgMTUuMSAzIDE0IDMgMTMuMVY5Yy0uMS0xIC42LTIgMS44LTIgMS41LS4xIDYuMy0uMSA2LjMtLjF6Ii8+CiAgICA8cGF0aCBkPSJNMTAuOSAxNS4xdjEuMWg0LjJjMCAuNSAwIDEuMy0uMiAxLjYtLjQuNy0uOCAxLjEtMS43IDEuNC0xLjcuMy0yLjUuMy0zLjkuMS0xLS4xLTEuOS0uOS0xLjktMS45di00LjJjMC0uNS45LTEuNiAyLTEuNmgzLjhjMS41IDAgMi40LTEuNCAyLjQtMi44VjYuNmgxLjdDMTguNSA2LjkgMTkgOCAxOSA4LjlWMTNjMCAxLS43IDIuMS0xLjkgMi4xaC02LjJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-r-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjE5NkYzIiBkPSJNNC40IDIuNWMxLjItLjEgMi45LS4zIDQuOS0uMyAyLjUgMCA0LjEuNCA1LjIgMS4zIDEgLjcgMS41IDEuOSAxLjUgMy41IDAgMi0xLjQgMy41LTIuOSA0LjEgMS4yLjQgMS43IDEuNiAyLjIgMyAuNiAxLjkgMSAzLjkgMS4zIDQuNmgtMy44Yy0uMy0uNC0uOC0xLjctMS4yLTMuN3MtMS4yLTIuNi0yLjYtMi42aC0uOXY2LjRINC40VjIuNXptMy43IDYuOWgxLjRjMS45IDAgMi45LS45IDIuOS0yLjNzLTEtMi4zLTIuOC0yLjNjLS43IDAtMS4zIDAtMS42LjJ2NC41aC4xdi0uMXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-react: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMTUwIDE1MCA1NDEuOSAyOTUuMyI+CiAgPGcgY2xhc3M9ImpwLWljb24tYnJhbmQyIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzYxREFGQiI+CiAgICA8cGF0aCBkPSJNNjY2LjMgMjk2LjVjMC0zMi41LTQwLjctNjMuMy0xMDMuMS04Mi40IDE0LjQtNjMuNiA4LTExNC4yLTIwLjItMTMwLjQtNi41LTMuOC0xNC4xLTUuNi0yMi40LTUuNnYyMi4zYzQuNiAwIDguMy45IDExLjQgMi42IDEzLjYgNy44IDE5LjUgMzcuNSAxNC45IDc1LjctMS4xIDkuNC0yLjkgMTkuMy01LjEgMjkuNC0xOS42LTQuOC00MS04LjUtNjMuNS0xMC45LTEzLjUtMTguNS0yNy41LTM1LjMtNDEuNi01MCAzMi42LTMwLjMgNjMuMi00Ni45IDg0LTQ2LjlWNzhjLTI3LjUgMC02My41IDE5LjYtOTkuOSA1My42LTM2LjQtMzMuOC03Mi40LTUzLjItOTkuOS01My4ydjIyLjNjMjAuNyAwIDUxLjQgMTYuNSA4NCA0Ni42LTE0IDE0LjctMjggMzEuNC00MS4zIDQ5LjktMjIuNiAyLjQtNDQgNi4xLTYzLjYgMTEtMi4zLTEwLTQtMTkuNy01LjItMjktNC43LTM4LjIgMS4xLTY3LjkgMTQuNi03NS44IDMtMS44IDYuOS0yLjYgMTEuNS0yLjZWNzguNWMtOC40IDAtMTYgMS44LTIyLjYgNS42LTI4LjEgMTYuMi0zNC40IDY2LjctMTkuOSAxMzAuMS02Mi4yIDE5LjItMTAyLjcgNDkuOS0xMDIuNyA4Mi4zIDAgMzIuNSA0MC43IDYzLjMgMTAzLjEgODIuNC0xNC40IDYzLjYtOCAxMTQuMiAyMC4yIDEzMC40IDYuNSAzLjggMTQuMSA1LjYgMjIuNSA1LjYgMjcuNSAwIDYzLjUtMTkuNiA5OS45LTUzLjYgMzYuNCAzMy44IDcyLjQgNTMuMiA5OS45IDUzLjIgOC40IDAgMTYtMS44IDIyLjYtNS42IDI4LjEtMTYuMiAzNC40LTY2LjcgMTkuOS0xMzAuMSA2Mi0xOS4xIDEwMi41LTQ5LjkgMTAyLjUtODIuM3ptLTEzMC4yLTY2LjdjLTMuNyAxMi45LTguMyAyNi4yLTEzLjUgMzkuNS00LjEtOC04LjQtMTYtMTMuMS0yNC00LjYtOC05LjUtMTUuOC0xNC40LTIzLjQgMTQuMiAyLjEgMjcuOSA0LjcgNDEgNy45em0tNDUuOCAxMDYuNWMtNy44IDEzLjUtMTUuOCAyNi4zLTI0LjEgMzguMi0xNC45IDEuMy0zMCAyLTQ1LjIgMi0xNS4xIDAtMzAuMi0uNy00NS0xLjktOC4zLTExLjktMTYuNC0yNC42LTI0LjItMzgtNy42LTEzLjEtMTQuNS0yNi40LTIwLjgtMzkuOCA2LjItMTMuNCAxMy4yLTI2LjggMjAuNy0zOS45IDcuOC0xMy41IDE1LjgtMjYuMyAyNC4xLTM4LjIgMTQuOS0xLjMgMzAtMiA0NS4yLTIgMTUuMSAwIDMwLjIuNyA0NSAxLjkgOC4zIDExLjkgMTYuNCAyNC42IDI0LjIgMzggNy42IDEzLjEgMTQuNSAyNi40IDIwLjggMzkuOC02LjMgMTMuNC0xMy4yIDI2LjgtMjAuNyAzOS45em0zMi4zLTEzYzUuNCAxMy40IDEwIDI2LjggMTMuOCAzOS44LTEzLjEgMy4yLTI2LjkgNS45LTQxLjIgOCA0LjktNy43IDkuOC0xNS42IDE0LjQtMjMuNyA0LjYtOCA4LjktMTYuMSAxMy0yNC4xek00MjEuMiA0MzBjLTkuMy05LjYtMTguNi0yMC4zLTI3LjgtMzIgOSAuNCAxOC4yLjcgMjcuNS43IDkuNCAwIDE4LjctLjIgMjcuOC0uNy05IDExLjctMTguMyAyMi40LTI3LjUgMzJ6bS03NC40LTU4LjljLTE0LjItMi4xLTI3LjktNC43LTQxLTcuOSAzLjctMTIuOSA4LjMtMjYuMiAxMy41LTM5LjUgNC4xIDggOC40IDE2IDEzLjEgMjQgNC43IDggOS41IDE1LjggMTQuNCAyMy40ek00MjAuNyAxNjNjOS4zIDkuNiAxOC42IDIwLjMgMjcuOCAzMi05LS40LTE4LjItLjctMjcuNS0uNy05LjQgMC0xOC43LjItMjcuOC43IDktMTEuNyAxOC4zLTIyLjQgMjcuNS0zMnptLTc0IDU4LjljLTQuOSA3LjctOS44IDE1LjYtMTQuNCAyMy43LTQuNiA4LTguOSAxNi0xMyAyNC01LjQtMTMuNC0xMC0yNi44LTEzLjgtMzkuOCAxMy4xLTMuMSAyNi45LTUuOCA0MS4yLTcuOXptLTkwLjUgMTI1LjJjLTM1LjQtMTUuMS01OC4zLTM0LjktNTguMy01MC42IDAtMTUuNyAyMi45LTM1LjYgNTguMy01MC42IDguNi0zLjcgMTgtNyAyNy43LTEwLjEgNS43IDE5LjYgMTMuMiA0MCAyMi41IDYwLjktOS4yIDIwLjgtMTYuNiA0MS4xLTIyLjIgNjAuNi05LjktMy4xLTE5LjMtNi41LTI4LTEwLjJ6TTMxMCA0OTBjLTEzLjYtNy44LTE5LjUtMzcuNS0xNC45LTc1LjcgMS4xLTkuNCAyLjktMTkuMyA1LjEtMjkuNCAxOS42IDQuOCA0MSA4LjUgNjMuNSAxMC45IDEzLjUgMTguNSAyNy41IDM1LjMgNDEuNiA1MC0zMi42IDMwLjMtNjMuMiA0Ni45LTg0IDQ2LjktNC41LS4xLTguMy0xLTExLjMtMi43em0yMzcuMi03Ni4yYzQuNyAzOC4yLTEuMSA2Ny45LTE0LjYgNzUuOC0zIDEuOC02LjkgMi42LTExLjUgMi42LTIwLjcgMC01MS40LTE2LjUtODQtNDYuNiAxNC0xNC43IDI4LTMxLjQgNDEuMy00OS45IDIyLjYtMi40IDQ0LTYuMSA2My42LTExIDIuMyAxMC4xIDQuMSAxOS44IDUuMiAyOS4xem0zOC41LTY2LjdjLTguNiAzLjctMTggNy0yNy43IDEwLjEtNS43LTE5LjYtMTMuMi00MC0yMi41LTYwLjkgOS4yLTIwLjggMTYuNi00MS4xIDIyLjItNjAuNiA5LjkgMy4xIDE5LjMgNi41IDI4LjEgMTAuMiAzNS40IDE1LjEgNTguMyAzNC45IDU4LjMgNTAuNi0uMSAxNS43LTIzIDM1LjYtNTguNCA1MC42ek0zMjAuOCA3OC40eiIvPgogICAgPGNpcmNsZSBjeD0iNDIwLjkiIGN5PSIyOTYuNSIgcj0iNDUuNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-redo: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTE4LjQgMTAuNkMxNi41NSA4Ljk5IDE0LjE1IDggMTEuNSA4Yy00LjY1IDAtOC41OCAzLjAzLTkuOTYgNy4yMkwzLjkgMTZjMS4wNS0zLjE5IDQuMDUtNS41IDcuNi01LjUgMS45NSAwIDMuNzMuNzIgNS4xMiAxLjg4TDEzIDE2aDlWN2wtMy42IDMuNnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-refresh: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTkgMTMuNWMtMi40OSAwLTQuNS0yLjAxLTQuNS00LjVTNi41MSA0LjUgOSA0LjVjMS4yNCAwIDIuMzYuNTIgMy4xNyAxLjMzTDEwIDhoNVYzbC0xLjc2IDEuNzZDMTIuMTUgMy42OCAxMC42NiAzIDkgMyA1LjY5IDMgMy4wMSA1LjY5IDMuMDEgOVM1LjY5IDE1IDkgMTVjMi45NyAwIDUuNDMtMi4xNiA1LjktNWgtMS41MmMtLjQ2IDItMi4yNCAzLjUtNC4zOCAzLjV6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-regex: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi1hY2NlbnQyIiBmaWxsPSIjRkZGIj4KICAgIDxjaXJjbGUgY2xhc3M9InN0MiIgY3g9IjUuNSIgY3k9IjE0LjUiIHI9IjEuNSIvPgogICAgPHJlY3QgeD0iMTIiIHk9IjQiIGNsYXNzPSJzdDIiIHdpZHRoPSIxIiBoZWlnaHQ9IjgiLz4KICAgIDxyZWN0IHg9IjguNSIgeT0iNy41IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjg2NiAtMC41IDAuNSAwLjg2NiAtMi4zMjU1IDcuMzIxOSkiIGNsYXNzPSJzdDIiIHdpZHRoPSI4IiBoZWlnaHQ9IjEiLz4KICAgIDxyZWN0IHg9IjEyIiB5PSI0IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjUgLTAuODY2IDAuODY2IDAuNSAtMC42Nzc5IDE0LjgyNTIpIiBjbGFzcz0ic3QyIiB3aWR0aD0iMSIgaGVpZ2h0PSI4Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-run: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTggNXYxNGwxMS03eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-running: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptOTYgMzI4YzAgOC44LTcuMiAxNi0xNiAxNkgxNzZjLTguOCAwLTE2LTcuMi0xNi0xNlYxNzZjMC04LjggNy4yLTE2IDE2LTE2aDE2MGM4LjggMCAxNiA3LjIgMTYgMTZ2MTYweiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-save: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE3IDNINWMtMS4xMSAwLTIgLjktMiAydjE0YzAgMS4xLjg5IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjdsLTQtNHptLTUgMTZjLTEuNjYgMC0zLTEuMzQtMy0zczEuMzQtMyAzLTMgMyAxLjM0IDMgMy0xLjM0IDMtMyAzem0zLTEwSDVWNWgxMHY0eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-search: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjEsMTAuOWgtMC43bC0wLjItMC4yYzAuOC0wLjksMS4zLTIuMiwxLjMtMy41YzAtMy0yLjQtNS40LTUuNC01LjRTMS44LDQuMiwxLjgsNy4xczIuNCw1LjQsNS40LDUuNCBjMS4zLDAsMi41LTAuNSwzLjUtMS4zbDAuMiwwLjJ2MC43bDQuMSw0LjFsMS4yLTEuMkwxMi4xLDEwLjl6IE03LjEsMTAuOWMtMi4xLDAtMy43LTEuNy0zLjctMy43czEuNy0zLjcsMy43LTMuN3MzLjcsMS43LDMuNywzLjcgUzkuMiwxMC45LDcuMSwxMC45eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-settings: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuNDMgMTIuOThjLjA0LS4zMi4wNy0uNjQuMDctLjk4cy0uMDMtLjY2LS4wNy0uOThsMi4xMS0xLjY1Yy4xOS0uMTUuMjQtLjQyLjEyLS42NGwtMi0zLjQ2Yy0uMTItLjIyLS4zOS0uMy0uNjEtLjIybC0yLjQ5IDFjLS41Mi0uNC0xLjA4LS43My0xLjY5LS45OGwtLjM4LTIuNjVBLjQ4OC40ODggMCAwMDE0IDJoLTRjLS4yNSAwLS40Ni4xOC0uNDkuNDJsLS4zOCAyLjY1Yy0uNjEuMjUtMS4xNy41OS0xLjY5Ljk4bC0yLjQ5LTFjLS4yMy0uMDktLjQ5IDAtLjYxLjIybC0yIDMuNDZjLS4xMy4yMi0uMDcuNDkuMTIuNjRsMi4xMSAxLjY1Yy0uMDQuMzItLjA3LjY1LS4wNy45OHMuMDMuNjYuMDcuOThsLTIuMTEgMS42NWMtLjE5LjE1LS4yNC40Mi0uMTIuNjRsMiAzLjQ2Yy4xMi4yMi4zOS4zLjYxLjIybDIuNDktMWMuNTIuNCAxLjA4LjczIDEuNjkuOThsLjM4IDIuNjVjLjAzLjI0LjI0LjQyLjQ5LjQyaDRjLjI1IDAgLjQ2LS4xOC40OS0uNDJsLjM4LTIuNjVjLjYxLS4yNSAxLjE3LS41OSAxLjY5LS45OGwyLjQ5IDFjLjIzLjA5LjQ5IDAgLjYxLS4yMmwyLTMuNDZjLjEyLS4yMi4wNy0uNDktLjEyLS42NGwtMi4xMS0xLjY1ek0xMiAxNS41Yy0xLjkzIDAtMy41LTEuNTctMy41LTMuNXMxLjU3LTMuNSAzLjUtMy41IDMuNSAxLjU3IDMuNSAzLjUtMS41NyAzLjUtMy41IDMuNXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-spreadsheet: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNENBRjUwIiBkPSJNMi4yIDIuMnYxNy42aDE3LjZWMi4ySDIuMnptMTUuNCA3LjdoLTUuNVY0LjRoNS41djUuNXpNOS45IDQuNHY1LjVINC40VjQuNGg1LjV6bS01LjUgNy43aDUuNXY1LjVINC40di01LjV6bTcuNyA1LjV2LTUuNWg1LjV2NS41aC01LjV6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-stop: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik02IDZoMTJ2MTJINnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tab: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIxIDNIM2MtMS4xIDAtMiAuOS0yIDJ2MTRjMCAxLjEuOSAyIDIgMmgxOGMxLjEgMCAyLS45IDItMlY1YzAtMS4xLS45LTItMi0yem0wIDE2SDNWNWgxMHY0aDh2MTB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-table-rows: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMSw4SDNWNGgxOFY4eiBNMjEsMTBIM3Y0aDE4VjEweiBNMjEsMTZIM3Y0aDE4VjE2eiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-tag: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCA0MyAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTI4LjgzMzIgMTIuMzM0TDMyLjk5OTggMTYuNTAwN0wzNy4xNjY1IDEyLjMzNEgyOC44MzMyWiIvPgoJCTxwYXRoIGQ9Ik0xNi4yMDk1IDIxLjYxMDRDMTUuNjg3MyAyMi4xMjk5IDE0Ljg0NDMgMjIuMTI5OSAxNC4zMjQ4IDIxLjYxMDRMNi45ODI5IDE0LjcyNDVDNi41NzI0IDE0LjMzOTQgNi4wODMxMyAxMy42MDk4IDYuMDQ3ODYgMTMuMDQ4MkM1Ljk1MzQ3IDExLjUyODggNi4wMjAwMiA4LjYxOTQ0IDYuMDY2MjEgNy4wNzY5NUM2LjA4MjgxIDYuNTE0NzcgNi41NTU0OCA2LjA0MzQ3IDcuMTE4MDQgNi4wMzA1NUM5LjA4ODYzIDUuOTg0NzMgMTMuMjYzOCA1LjkzNTc5IDEzLjY1MTggNi4zMjQyNUwyMS43MzY5IDEzLjYzOUMyMi4yNTYgMTQuMTU4NSAyMS43ODUxIDE1LjQ3MjQgMjEuMjYyIDE1Ljk5NDZMMTYuMjA5NSAyMS42MTA0Wk05Ljc3NTg1IDguMjY1QzkuMzM1NTEgNy44MjU2NiA4LjYyMzUxIDcuODI1NjYgOC4xODI4IDguMjY1QzcuNzQzNDYgOC43MDU3MSA3Ljc0MzQ2IDkuNDE3MzMgOC4xODI4IDkuODU2NjdDOC42MjM4MiAxMC4yOTY0IDkuMzM1ODIgMTAuMjk2NCA5Ljc3NTg1IDkuODU2NjdDMTAuMjE1NiA5LjQxNzMzIDEwLjIxNTYgOC43MDUzMyA5Ljc3NTg1IDguMjY1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-terminal: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiA+CiAgICA8cmVjdCBjbGFzcz0ianAtaWNvbjIganAtaWNvbi1zZWxlY3RhYmxlIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMikiIGZpbGw9IiMzMzMzMzMiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uLWFjY2VudDIganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGQ9Ik01LjA1NjY0IDguNzYxNzJDNS4wNTY2NCA4LjU5NzY2IDUuMDMxMjUgOC40NTMxMiA0Ljk4MDQ3IDguMzI4MTJDNC45MzM1OSA4LjE5OTIyIDQuODU1NDcgOC4wODIwMyA0Ljc0NjA5IDcuOTc2NTZDNC42NDA2MiA3Ljg3MTA5IDQuNSA3Ljc3NTM5IDQuMzI0MjIgNy42ODk0NUM0LjE1MjM0IDcuNTk5NjEgMy45NDMzNiA3LjUxMTcyIDMuNjk3MjcgNy40MjU3OEMzLjMwMjczIDcuMjg1MTYgMi45NDMzNiA3LjEzNjcyIDIuNjE5MTQgNi45ODA0N0MyLjI5NDkyIDYuODI0MjIgMi4wMTc1OCA2LjY0MjU4IDEuNzg3MTEgNi40MzU1NUMxLjU2MDU1IDYuMjI4NTIgMS4zODQ3NyA1Ljk4ODI4IDEuMjU5NzcgNS43MTQ4NEMxLjEzNDc3IDUuNDM3NSAxLjA3MjI3IDUuMTA5MzggMS4wNzIyNyA0LjczMDQ3QzEuMDcyMjcgNC4zOTg0NCAxLjEyODkxIDQuMDk1NyAxLjI0MjE5IDMuODIyMjdDMS4zNTU0NyAzLjU0NDkyIDEuNTE1NjIgMy4zMDQ2OSAxLjcyMjY2IDMuMTAxNTZDMS45Mjk2OSAyLjg5ODQ0IDIuMTc5NjkgMi43MzQzNyAyLjQ3MjY2IDIuNjA5MzhDMi43NjU2MiAyLjQ4NDM4IDMuMDkxOCAyLjQwNDMgMy40NTExNyAyLjM2OTE0VjEuMTA5MzhINC4zODg2N1YyLjM4MDg2QzQuNzQwMjMgMi40Mjc3MyA1LjA1NjY0IDIuNTIzNDQgNS4zMzc4OSAyLjY2Nzk3QzUuNjE5MTQgMi44MTI1IDUuODU3NDIgMy4wMDE5NSA2LjA1MjczIDMuMjM2MzNDNi4yNTE5NSAzLjQ2NjggNi40MDQzIDMuNzQwMjMgNi41MDk3NyA0LjA1NjY0QzYuNjE5MTQgNC4zNjkxNCA2LjY3MzgzIDQuNzIwNyA2LjY3MzgzIDUuMTExMzNINS4wNDQ5MkM1LjA0NDkyIDQuNjM4NjcgNC45Mzc1IDQuMjgxMjUgNC43MjI2NiA0LjAzOTA2QzQuNTA3ODEgMy43OTI5NyA0LjIxNjggMy42Njk5MiAzLjg0OTYxIDMuNjY5OTJDMy42NTAzOSAzLjY2OTkyIDMuNDc2NTYgMy42OTcyNyAzLjMyODEyIDMuNzUxOTVDMy4xODM1OSAzLjgwMjczIDMuMDY0NDUgMy44NzY5NSAyLjk3MDcgMy45NzQ2MUMyLjg3Njk1IDQuMDY4MzYgMi44MDY2NCA0LjE3OTY5IDIuNzU5NzcgNC4zMDg1OUMyLjcxNjggNC40Mzc1IDIuNjk1MzEgNC41NzgxMiAyLjY5NTMxIDQuNzMwNDdDMi42OTUzMSA0Ljg4MjgxIDIuNzE2OCA1LjAxOTUzIDIuNzU5NzcgNS4xNDA2MkMyLjgwNjY0IDUuMjU3ODEgMi44ODI4MSA1LjM2NzE5IDIuOTg4MjggNS40Njg3NUMzLjA5NzY2IDUuNTcwMzEgMy4yNDAyMyA1LjY2Nzk3IDMuNDE2MDIgNS43NjE3MkMzLjU5MTggNS44NTE1NiAzLjgxMDU1IDUuOTQzMzYgNC4wNzIyNyA2LjAzNzExQzQuNDY2OCA2LjE4NTU1IDQuODI0MjIgNi4zMzk4NCA1LjE0NDUzIDYuNUM1LjQ2NDg0IDYuNjU2MjUgNS43MzgyOCA2LjgzOTg0IDUuOTY0ODQgNy4wNTA3OEM2LjE5NTMxIDcuMjU3ODEgNi4zNzEwOSA3LjUgNi40OTIxOSA3Ljc3NzM0QzYuNjE3MTkgOC4wNTA3OCA2LjY3OTY5IDguMzc1IDYuNjc5NjkgOC43NUM2LjY3OTY5IDkuMDkzNzUgNi42MjMwNSA5LjQwNDMgNi41MDk3NyA5LjY4MTY0QzYuMzk2NDggOS45NTUwOCA2LjIzNDM4IDEwLjE5MTQgNi4wMjM0NCAxMC4zOTA2QzUuODEyNSAxMC41ODk4IDUuNTU4NTkgMTAuNzUgNS4yNjE3MiAxMC44NzExQzQuOTY0ODQgMTAuOTg4MyA0LjYzMjgxIDExLjA2NDUgNC4yNjU2MiAxMS4wOTk2VjEyLjI0OEgzLjMzMzk4VjExLjA5OTZDMy4wMDE5NSAxMS4wNjg0IDIuNjc5NjkgMTAuOTk2MSAyLjM2NzE5IDEwLjg4MjhDMi4wNTQ2OSAxMC43NjU2IDEuNzc3MzQgMTAuNTk3NyAxLjUzNTE2IDEwLjM3ODlDMS4yOTY4OCAxMC4xNjAyIDEuMTA1NDcgOS44ODQ3NyAwLjk2MDkzOCA5LjU1MjczQzAuODE2NDA2IDkuMjE2OCAwLjc0NDE0MSA4LjgxNDQ1IDAuNzQ0MTQxIDguMzQ1N0gyLjM3ODkxQzIuMzc4OTEgOC42MjY5NSAyLjQxOTkyIDguODYzMjggMi41MDE5NSA5LjA1NDY5QzIuNTgzOTggOS4yNDIxOSAyLjY4OTQ1IDkuMzkyNTggMi44MTgzNiA5LjUwNTg2QzIuOTUxMTcgOS42MTUyMyAzLjEwMTU2IDkuNjkzMzYgMy4yNjk1MyA5Ljc0MDIzQzMuNDM3NSA5Ljc4NzExIDMuNjA5MzggOS44MTA1NSAzLjc4NTE2IDkuODEwNTVDNC4yMDMxMiA5LjgxMDU1IDQuNTE5NTMgOS43MTI4OSA0LjczNDM4IDkuNTE3NThDNC45NDkyMiA5LjMyMjI3IDUuMDU2NjQgOS4wNzAzMSA1LjA1NjY0IDguNzYxNzJaTTEzLjQxOCAxMi4yNzE1SDguMDc0MjJWMTFIMTMuNDE4VjEyLjI3MTVaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzLjk1MjY0IDYpIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);\n  --jp-icon-text-editor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTUgMTVIM3YyaDEydi0yem0wLThIM3YyaDEyVjd6TTMgMTNoMTh2LTJIM3Yyem0wIDhoMTh2LTJIM3Yyek0zIDN2MmgxOFYzSDN6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-toc: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik03LDVIMjFWN0g3VjVNNywxM1YxMUgyMVYxM0g3TTQsNC41QTEuNSwxLjUgMCAwLDEgNS41LDZBMS41LDEuNSAwIDAsMSA0LDcuNUExLjUsMS41IDAgMCwxIDIuNSw2QTEuNSwxLjUgMCAwLDEgNCw0LjVNNCwxMC41QTEuNSwxLjUgMCAwLDEgNS41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMy41QTEuNSwxLjUgMCAwLDEgMi41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMC41TTcsMTlWMTdIMjFWMTlIN000LDE2LjVBMS41LDEuNSAwIDAsMSA1LjUsMThBMS41LDEuNSAwIDAsMSA0LDE5LjVBMS41LDEuNSAwIDAsMSAyLjUsMThBMS41LDEuNSAwIDAsMSA0LDE2LjVaIiAvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tree-view: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMiAxMVYzaC03djNIOVYzSDJ2OGg3VjhoMnYxMGg0djNoN3YtOGgtN3YzaC0yVjhoMnYzeiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMiAxNy4xODQ0IDIuOTY5NjggMTQuMzAzMiAxLjg2MDk0IDExLjQ0MDlaIi8+CiAgICA8cGF0aCBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiMzMzMzMzMiIHN0cm9rZT0iIzMzMzMzMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA5Ljg2NzE5KSIgZD0iTTIuODYwMTUgNC44NjUzNUwwLjcyNjU0OSAyLjk5OTU5TDAgMy42MzA0NUwyLjg2MDE1IDYuMTMxNTdMOCAwLjYzMDg3Mkw3LjI3ODU3IDBMMi44NjAxNSA0Ljg2NTM1WiIvPgo8L3N2Zz4K);\n  --jp-icon-undo: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjUgOGMtMi42NSAwLTUuMDUuOTktNi45IDIuNkwyIDd2OWg5bC0zLjYyLTMuNjJjMS4zOS0xLjE2IDMuMTYtMS44OCA1LjEyLTEuODggMy41NCAwIDYuNTUgMi4zMSA3LjYgNS41bDIuMzctLjc4QzIxLjA4IDExLjAzIDE3LjE1IDggMTIuNSA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-vega: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbjEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjEyMTIxIj4KICAgIDxwYXRoIGQ9Ik0xMC42IDUuNGwyLjItMy4ySDIuMnY3LjNsNC02LjZ6Ii8+CiAgICA8cGF0aCBkPSJNMTUuOCAyLjJsLTQuNCA2LjZMNyA2LjNsLTQuOCA4djUuNWgxNy42VjIuMmgtNHptLTcgMTUuNEg1LjV2LTQuNGgzLjN2NC40em00LjQgMEg5LjhWOS44aDMuNHY3Ljh6bTQuNCAwaC0zLjRWNi41aDMuNHYxMS4xeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-yaml: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1jb250cmFzdDIganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjRDgxQjYwIj4KICAgIDxwYXRoIGQ9Ik03LjIgMTguNnYtNS40TDMgNS42aDMuM2wxLjQgMy4xYy4zLjkuNiAxLjYgMSAyLjUuMy0uOC42LTEuNiAxLTIuNWwxLjQtMy4xaDMuNGwtNC40IDcuNnY1LjVsLTIuOS0uMXoiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxNi41IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxMSIgcj0iMi4xIi8+CiAgPC9nPgo8L3N2Zz4K);\n}\n\n/* Icon CSS class declarations */\n\n.jp-AddIcon {\n  background-image: var(--jp-icon-add);\n}\n.jp-BugIcon {\n  background-image: var(--jp-icon-bug);\n}\n.jp-BuildIcon {\n  background-image: var(--jp-icon-build);\n}\n.jp-CaretDownEmptyIcon {\n  background-image: var(--jp-icon-caret-down-empty);\n}\n.jp-CaretDownEmptyThinIcon {\n  background-image: var(--jp-icon-caret-down-empty-thin);\n}\n.jp-CaretDownIcon {\n  background-image: var(--jp-icon-caret-down);\n}\n.jp-CaretLeftIcon {\n  background-image: var(--jp-icon-caret-left);\n}\n.jp-CaretRightIcon {\n  background-image: var(--jp-icon-caret-right);\n}\n.jp-CaretUpEmptyThinIcon {\n  background-image: var(--jp-icon-caret-up-empty-thin);\n}\n.jp-CaretUpIcon {\n  background-image: var(--jp-icon-caret-up);\n}\n.jp-CaseSensitiveIcon {\n  background-image: var(--jp-icon-case-sensitive);\n}\n.jp-CheckIcon {\n  background-image: var(--jp-icon-check);\n}\n.jp-CircleEmptyIcon {\n  background-image: var(--jp-icon-circle-empty);\n}\n.jp-CircleIcon {\n  background-image: var(--jp-icon-circle);\n}\n.jp-ClearIcon {\n  background-image: var(--jp-icon-clear);\n}\n.jp-CloseIcon {\n  background-image: var(--jp-icon-close);\n}\n.jp-CodeIcon {\n  background-image: var(--jp-icon-code);\n}\n.jp-ConsoleIcon {\n  background-image: var(--jp-icon-console);\n}\n.jp-CopyIcon {\n  background-image: var(--jp-icon-copy);\n}\n.jp-CopyrightIcon {\n  background-image: var(--jp-icon-copyright);\n}\n.jp-CutIcon {\n  background-image: var(--jp-icon-cut);\n}\n.jp-DownloadIcon {\n  background-image: var(--jp-icon-download);\n}\n.jp-EditIcon {\n  background-image: var(--jp-icon-edit);\n}\n.jp-EllipsesIcon {\n  background-image: var(--jp-icon-ellipses);\n}\n.jp-ExtensionIcon {\n  background-image: var(--jp-icon-extension);\n}\n.jp-FastForwardIcon {\n  background-image: var(--jp-icon-fast-forward);\n}\n.jp-FileIcon {\n  background-image: var(--jp-icon-file);\n}\n.jp-FileUploadIcon {\n  background-image: var(--jp-icon-file-upload);\n}\n.jp-FilterListIcon {\n  background-image: var(--jp-icon-filter-list);\n}\n.jp-FolderIcon {\n  background-image: var(--jp-icon-folder);\n}\n.jp-Html5Icon {\n  background-image: var(--jp-icon-html5);\n}\n.jp-ImageIcon {\n  background-image: var(--jp-icon-image);\n}\n.jp-InspectorIcon {\n  background-image: var(--jp-icon-inspector);\n}\n.jp-JsonIcon {\n  background-image: var(--jp-icon-json);\n}\n.jp-JuliaIcon {\n  background-image: var(--jp-icon-julia);\n}\n.jp-JupyterFaviconIcon {\n  background-image: var(--jp-icon-jupyter-favicon);\n}\n.jp-JupyterIcon {\n  background-image: var(--jp-icon-jupyter);\n}\n.jp-JupyterlabWordmarkIcon {\n  background-image: var(--jp-icon-jupyterlab-wordmark);\n}\n.jp-KernelIcon {\n  background-image: var(--jp-icon-kernel);\n}\n.jp-KeyboardIcon {\n  background-image: var(--jp-icon-keyboard);\n}\n.jp-LauncherIcon {\n  background-image: var(--jp-icon-launcher);\n}\n.jp-LineFormIcon {\n  background-image: var(--jp-icon-line-form);\n}\n.jp-LinkIcon {\n  background-image: var(--jp-icon-link);\n}\n.jp-ListIcon {\n  background-image: var(--jp-icon-list);\n}\n.jp-ListingsInfoIcon {\n  background-image: var(--jp-icon-listings-info);\n}\n.jp-MarkdownIcon {\n  background-image: var(--jp-icon-markdown);\n}\n.jp-NewFolderIcon {\n  background-image: var(--jp-icon-new-folder);\n}\n.jp-NotTrustedIcon {\n  background-image: var(--jp-icon-not-trusted);\n}\n.jp-NotebookIcon {\n  background-image: var(--jp-icon-notebook);\n}\n.jp-NumberingIcon {\n  background-image: var(--jp-icon-numbering);\n}\n.jp-OfflineBoltIcon {\n  background-image: var(--jp-icon-offline-bolt);\n}\n.jp-PaletteIcon {\n  background-image: var(--jp-icon-palette);\n}\n.jp-PasteIcon {\n  background-image: var(--jp-icon-paste);\n}\n.jp-PdfIcon {\n  background-image: var(--jp-icon-pdf);\n}\n.jp-PythonIcon {\n  background-image: var(--jp-icon-python);\n}\n.jp-RKernelIcon {\n  background-image: var(--jp-icon-r-kernel);\n}\n.jp-ReactIcon {\n  background-image: var(--jp-icon-react);\n}\n.jp-RedoIcon {\n  background-image: var(--jp-icon-redo);\n}\n.jp-RefreshIcon {\n  background-image: var(--jp-icon-refresh);\n}\n.jp-RegexIcon {\n  background-image: var(--jp-icon-regex);\n}\n.jp-RunIcon {\n  background-image: var(--jp-icon-run);\n}\n.jp-RunningIcon {\n  background-image: var(--jp-icon-running);\n}\n.jp-SaveIcon {\n  background-image: var(--jp-icon-save);\n}\n.jp-SearchIcon {\n  background-image: var(--jp-icon-search);\n}\n.jp-SettingsIcon {\n  background-image: var(--jp-icon-settings);\n}\n.jp-SpreadsheetIcon {\n  background-image: var(--jp-icon-spreadsheet);\n}\n.jp-StopIcon {\n  background-image: var(--jp-icon-stop);\n}\n.jp-TabIcon {\n  background-image: var(--jp-icon-tab);\n}\n.jp-TableRowsIcon {\n  background-image: var(--jp-icon-table-rows);\n}\n.jp-TagIcon {\n  background-image: var(--jp-icon-tag);\n}\n.jp-TerminalIcon {\n  background-image: var(--jp-icon-terminal);\n}\n.jp-TextEditorIcon {\n  background-image: var(--jp-icon-text-editor);\n}\n.jp-TocIcon {\n  background-image: var(--jp-icon-toc);\n}\n.jp-TreeViewIcon {\n  background-image: var(--jp-icon-tree-view);\n}\n.jp-TrustedIcon {\n  background-image: var(--jp-icon-trusted);\n}\n.jp-UndoIcon {\n  background-image: var(--jp-icon-undo);\n}\n.jp-VegaIcon {\n  background-image: var(--jp-icon-vega);\n}\n.jp-YamlIcon {\n  background-image: var(--jp-icon-yaml);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n.jp-Icon,\n.jp-MaterialIcon {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-cover {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: cover;\n}\n\n/**\n * (DEPRECATED) Support for specific CSS icon sizes\n */\n\n.jp-Icon-16 {\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-18 {\n  background-size: 18px;\n  min-width: 18px;\n  min-height: 18px;\n}\n\n.jp-Icon-20 {\n  background-size: 20px;\n  min-width: 20px;\n  min-height: 20px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for icons as inline SVG HTMLElements\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n/* recolor the accent elements of an icon */\n.jp-icon-accent0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-accent1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-accent2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-accent3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-accent4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-accent0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-accent1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-accent2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-accent3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-accent4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n/* set the color of an icon to transparent */\n.jp-icon-none[fill] {\n  fill: none;\n}\n\n.jp-icon-none[stroke] {\n  stroke: none;\n}\n/* brand icon colors. Same for light and dark */\n.jp-icon-brand0[fill] {\n  fill: var(--jp-brand-color0);\n}\n.jp-icon-brand1[fill] {\n  fill: var(--jp-brand-color1);\n}\n.jp-icon-brand2[fill] {\n  fill: var(--jp-brand-color2);\n}\n.jp-icon-brand3[fill] {\n  fill: var(--jp-brand-color3);\n}\n.jp-icon-brand4[fill] {\n  fill: var(--jp-brand-color4);\n}\n\n.jp-icon-brand0[stroke] {\n  stroke: var(--jp-brand-color0);\n}\n.jp-icon-brand1[stroke] {\n  stroke: var(--jp-brand-color1);\n}\n.jp-icon-brand2[stroke] {\n  stroke: var(--jp-brand-color2);\n}\n.jp-icon-brand3[stroke] {\n  stroke: var(--jp-brand-color3);\n}\n.jp-icon-brand4[stroke] {\n  stroke: var(--jp-brand-color4);\n}\n/* warn icon colors. Same for light and dark */\n.jp-icon-warn0[fill] {\n  fill: var(--jp-warn-color0);\n}\n.jp-icon-warn1[fill] {\n  fill: var(--jp-warn-color1);\n}\n.jp-icon-warn2[fill] {\n  fill: var(--jp-warn-color2);\n}\n.jp-icon-warn3[fill] {\n  fill: var(--jp-warn-color3);\n}\n\n.jp-icon-warn0[stroke] {\n  stroke: var(--jp-warn-color0);\n}\n.jp-icon-warn1[stroke] {\n  stroke: var(--jp-warn-color1);\n}\n.jp-icon-warn2[stroke] {\n  stroke: var(--jp-warn-color2);\n}\n.jp-icon-warn3[stroke] {\n  stroke: var(--jp-warn-color3);\n}\n/* icon colors that contrast well with each other and most backgrounds */\n.jp-icon-contrast0[fill] {\n  fill: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[fill] {\n  fill: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[fill] {\n  fill: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[fill] {\n  fill: var(--jp-icon-contrast-color3);\n}\n\n.jp-icon-contrast0[stroke] {\n  stroke: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[stroke] {\n  stroke: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[stroke] {\n  stroke: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[stroke] {\n  stroke: var(--jp-icon-contrast-color3);\n}\n\n/* CSS for icons in selected items in the settings editor */\n#setting-editor .jp-PluginList .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n#setting-editor\n  .jp-PluginList\n  .jp-mod-selected\n  .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected filebrowser listing items */\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected tabs in the sidebar tab manager */\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable-inverse[fill] {\n  fill: #fff;\n}\n\n/**\n * TODO: come up with non css-hack solution for showing the busy icon on top\n *  of the close icon\n * CSS for complex behavior of close icon of tabs in the sidebar tab manager\n */\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty.jp-mod-active\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: #fff;\n}\n\n/**\n* TODO: come up with non css-hack solution for showing the busy icon on top\n*  of the close icon\n* CSS for complex behavior of close icon of tabs in the main area tabbar\n*/\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n/* CSS for icons in status bar */\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n/* special handling for splash icon CSS. While the theme CSS reloads during\n   splash, the splash icon can loose theming. To prevent that, we set a\n   default for its color variable */\n:root {\n  --jp-warn-color0: var(--md-orange-700);\n}\n\n/* not sure what to do with this one, used in filebrowser listing */\n.jp-DragIcon {\n  margin-right: 4px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for alt colors for icons as inline SVG HTMLElements\n */\n\n/* alt recolor the primary elements of an icon */\n.jp-icon-alt .jp-icon0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-alt .jp-icon0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* alt recolor the accent elements of an icon */\n.jp-icon-alt .jp-icon-accent0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-alt .jp-icon-accent0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-icon-hoverShow:not(:hover) svg {\n  display: none !important;\n}\n\n/**\n * Support for hover colors for icons as inline SVG HTMLElements\n */\n\n/**\n * regular colors\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon-hover :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/* recolor the accent elements of an icon */\n.jp-icon-hover :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* set the color of an icon to transparent */\n.jp-icon-hover :hover .jp-icon-none-hover[fill] {\n  fill: none;\n}\n\n.jp-icon-hover :hover .jp-icon-none-hover[stroke] {\n  stroke: none;\n}\n\n/**\n * inverse colors\n */\n\n/* inverse recolor the primary elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* inverse recolor the accent elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-switch {\n  display: flex;\n  align-items: center;\n  padding-left: 4px;\n  padding-right: 4px;\n  font-size: var(--jp-ui-font-size1);\n  background-color: transparent;\n  color: var(--jp-ui-font-color1);\n  border: none;\n  height: 20px;\n}\n\n.jp-switch:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-switch-label {\n  margin-right: 5px;\n}\n\n.jp-switch-track {\n  cursor: pointer;\n  background-color: var(--jp-border-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 34px;\n  height: 16px;\n  width: 35px;\n  position: relative;\n}\n\n.jp-switch-track::before {\n  content: '';\n  position: absolute;\n  height: 10px;\n  width: 10px;\n  margin: 3px;\n  left: 0px;\n  background-color: var(--jp-ui-inverse-font-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 50%;\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track {\n  background-color: var(--jp-warn-color0);\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track::before {\n  /* track width (35) - margins (3 + 3) - thumb width (10) */\n  left: 19px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* Sibling imports */\n\n/* Override Blueprint's _reset.scss styles */\nhtml {\n  box-sizing: unset;\n}\n\n*,\n*::before,\n*::after {\n  box-sizing: unset;\n}\n\nbody {\n  color: unset;\n  font-family: var(--jp-ui-font-family);\n}\n\np {\n  margin-top: unset;\n  margin-bottom: unset;\n}\n\nsmall {\n  font-size: unset;\n}\n\nstrong {\n  font-weight: unset;\n}\n\n/* Override Blueprint's _typography.scss styles */\na {\n  text-decoration: unset;\n  color: unset;\n}\na:hover {\n  text-decoration: unset;\n  color: unset;\n}\n\n/* Override Blueprint's _accessibility.scss styles */\n:focus {\n  outline: unset;\n  outline-offset: unset;\n  -moz-outline-radius: unset;\n}\n\n/* Styles for ui-components */\n.jp-Button {\n  border-radius: var(--jp-border-radius);\n  padding: 0px 12px;\n  font-size: var(--jp-ui-font-size1);\n}\n\n/* Use our own theme for hover styles */\nbutton.jp-Button.bp3-button.bp3-minimal:hover {\n  background-color: var(--jp-layout-color2);\n}\n.jp-Button.minimal {\n  color: unset !important;\n}\n\n.jp-Button.jp-ToolbarButtonComponent {\n  text-transform: none;\n}\n\n.jp-InputGroup input {\n  box-sizing: border-box;\n  border-radius: 0;\n  background-color: transparent;\n  color: var(--jp-ui-font-color0);\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.jp-InputGroup input:focus {\n  box-shadow: inset 0 0 0 var(--jp-border-width)\n      var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-InputGroup input::placeholder,\ninput::placeholder {\n  color: var(--jp-ui-font-color3);\n}\n\n.jp-BPIcon {\n  display: inline-block;\n  vertical-align: middle;\n  margin: auto;\n}\n\n/* Stop blueprint futzing with our icon fills */\n.bp3-icon.jp-BPIcon > svg:not([fill]) {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n.jp-InputGroupAction {\n  padding: 6px;\n}\n\n.jp-HTMLSelect.jp-DefaultStyle select {\n  background-color: initial;\n  border: none;\n  border-radius: 0;\n  box-shadow: none;\n  color: var(--jp-ui-font-color0);\n  display: block;\n  font-size: var(--jp-ui-font-size1);\n  height: 24px;\n  line-height: 14px;\n  padding: 0 25px 0 10px;\n  text-align: left;\n  -moz-appearance: none;\n  -webkit-appearance: none;\n}\n\n/* Use our own theme for hover and option styles */\n.jp-HTMLSelect.jp-DefaultStyle select:hover,\n.jp-HTMLSelect.jp-DefaultStyle select > option {\n  background-color: var(--jp-layout-color2);\n  color: var(--jp-ui-font-color0);\n}\nselect {\n  box-sizing: border-box;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapse {\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  border-top: 1px solid var(--jp-border-color2);\n  border-bottom: 1px solid var(--jp-border-color2);\n}\n\n.jp-Collapse-header {\n  padding: 1px 12px;\n  color: var(--jp-ui-font-color1);\n  background-color: var(--jp-layout-color1);\n  font-size: var(--jp-ui-font-size2);\n}\n\n.jp-Collapse-header:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-Collapse-contents {\n  padding: 0px 12px 0px 12px;\n  background-color: var(--jp-layout-color1);\n  color: var(--jp-ui-font-color1);\n  overflow: auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-commandpalette-search-height: 28px;\n}\n\n/*-----------------------------------------------------------------------------\n| Overall styles\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette {\n  padding-bottom: 0px;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Modal variant\n|----------------------------------------------------------------------------*/\n\n.jp-ModalCommandPalette {\n  position: absolute;\n  z-index: 10000;\n  top: 38px;\n  left: 30%;\n  margin: 0;\n  padding: 4px;\n  width: 40%;\n  box-shadow: var(--jp-elevation-z4);\n  border-radius: 4px;\n  background: var(--jp-layout-color0);\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette {\n  max-height: 40vh;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-close-icon::after {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-header {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-item {\n  margin-left: 4px;\n  margin-right: 4px;\n}\n\n.jp-ModalCommandPalette\n  .lm-CommandPalette\n  .lm-CommandPalette-item.lm-mod-disabled {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Search\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-search {\n  padding: 4px;\n  background-color: var(--jp-layout-color1);\n  z-index: 2;\n}\n\n.lm-CommandPalette-wrapper {\n  overflow: overlay;\n  padding: 0px 9px;\n  background-color: var(--jp-input-active-background);\n  height: 30px;\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.lm-CommandPalette.lm-mod-focused .lm-CommandPalette-wrapper {\n  box-shadow: inset 0 0 0 1px var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-SearchIconGroup {\n  color: white;\n  background-color: var(--jp-brand-color1);\n  position: absolute;\n  top: 4px;\n  right: 4px;\n  padding: 5px 5px 1px 5px;\n}\n\n.jp-SearchIconGroup svg {\n  height: 20px;\n  width: 20px;\n}\n\n.jp-SearchIconGroup .jp-icon3[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-input {\n  background: transparent;\n  width: calc(100% - 18px);\n  float: left;\n  border: none;\n  outline: none;\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  line-height: var(--jp-private-commandpalette-search-height);\n}\n\n.lm-CommandPalette-input::-webkit-input-placeholder,\n.lm-CommandPalette-input::-moz-placeholder,\n.lm-CommandPalette-input:-ms-input-placeholder {\n  color: var(--jp-ui-font-color2);\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Results\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-header:first-child {\n  margin-top: 0px;\n}\n\n.lm-CommandPalette-header {\n  border-bottom: solid var(--jp-border-width) var(--jp-border-color2);\n  color: var(--jp-ui-font-color1);\n  cursor: pointer;\n  display: flex;\n  font-size: var(--jp-ui-font-size0);\n  font-weight: 600;\n  letter-spacing: 1px;\n  margin-top: 8px;\n  padding: 8px 0 8px 12px;\n  text-transform: uppercase;\n}\n\n.lm-CommandPalette-header.lm-mod-active {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-header > mark {\n  background-color: transparent;\n  font-weight: bold;\n  color: var(--jp-ui-font-color1);\n}\n\n.lm-CommandPalette-item {\n  padding: 4px 12px 4px 4px;\n  color: var(--jp-ui-font-color1);\n  font-size: var(--jp-ui-font-size1);\n  font-weight: 400;\n  display: flex;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item.lm-mod-active {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .jp-icon-selectable[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active:hover:not(.lm-mod-disabled) {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item:hover:not(.lm-mod-active):not(.lm-mod-disabled) {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-itemContent {\n  overflow: hidden;\n}\n\n.lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled mark {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemIcon {\n  margin: 0 4px 0 0;\n  position: relative;\n  width: 16px;\n  top: 2px;\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled .lm-CommandPalette-itemIcon {\n  opacity: 0.6;\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-itemCaption {\n  display: none;\n}\n\n.lm-CommandPalette-content {\n  background-color: var(--jp-layout-color1);\n}\n\n.lm-CommandPalette-content:empty:after {\n  content: 'No results';\n  margin: auto;\n  margin-top: 20px;\n  width: 100px;\n  display: block;\n  font-size: var(--jp-ui-font-size2);\n  font-family: var(--jp-ui-font-family);\n  font-weight: lighter;\n}\n\n.lm-CommandPalette-emptyMessage {\n  text-align: center;\n  margin-top: 24px;\n  line-height: 1.32;\n  padding: 0px 8px;\n  color: var(--jp-content-font-color3);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Dialog {\n  position: absolute;\n  z-index: 10000;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  top: 0px;\n  left: 0px;\n  margin: 0;\n  padding: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-dialog-background);\n}\n\n.jp-Dialog-content {\n  display: flex;\n  flex-direction: column;\n  margin-left: auto;\n  margin-right: auto;\n  background: var(--jp-layout-color1);\n  padding: 24px;\n  padding-bottom: 12px;\n  min-width: 300px;\n  min-height: 150px;\n  max-width: 1000px;\n  max-height: 500px;\n  box-sizing: border-box;\n  box-shadow: var(--jp-elevation-z20);\n  word-wrap: break-word;\n  border-radius: var(--jp-border-radius);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color1);\n  resize: both;\n}\n\n.jp-Dialog-button {\n  overflow: visible;\n}\n\nbutton.jp-Dialog-button:focus {\n  outline: 1px solid var(--jp-brand-color1);\n  outline-offset: 4px;\n  -moz-outline-radius: 0px;\n}\n\nbutton.jp-Dialog-button:focus::-moz-focus-inner {\n  border: 0;\n}\n\nbutton.jp-Dialog-close-button {\n  padding: 0;\n  height: 100%;\n  min-width: unset;\n  min-height: unset;\n}\n\n.jp-Dialog-header {\n  display: flex;\n  justify-content: space-between;\n  flex: 0 0 auto;\n  padding-bottom: 12px;\n  font-size: var(--jp-ui-font-size3);\n  font-weight: 400;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-body {\n  display: flex;\n  flex-direction: column;\n  flex: 1 1 auto;\n  font-size: var(--jp-ui-font-size1);\n  background: var(--jp-layout-color1);\n  overflow: auto;\n}\n\n.jp-Dialog-footer {\n  display: flex;\n  flex-direction: row;\n  justify-content: flex-end;\n  flex: 0 0 auto;\n  margin-left: -12px;\n  margin-right: -12px;\n  padding: 12px;\n}\n\n.jp-Dialog-title {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.jp-Dialog-body > .jp-select-wrapper {\n  width: 100%;\n}\n\n.jp-Dialog-body > button {\n  padding: 0px 16px;\n}\n\n.jp-Dialog-body > label {\n  line-height: 1.4;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-button.jp-mod-styled:not(:last-child) {\n  margin-right: 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-HoverBox {\n  position: fixed;\n}\n\n.jp-HoverBox.jp-mod-outofview {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-IFrame {\n  width: 100%;\n  height: 100%;\n}\n\n.jp-IFrame > iframe {\n  border: none;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-IFrame {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-IFrame:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n.jp-Input-Boolean-Dialog {\n  flex-direction: row-reverse;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-Input-Boolean-Dialog > label {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MainAreaWidget > :focus {\n  outline: none;\n}\n\n/**\n * google-material-color v1.2.6\n * https://github.com/danlevan/google-material-color\n */\n:root {\n  --md-red-50: #ffebee;\n  --md-red-100: #ffcdd2;\n  --md-red-200: #ef9a9a;\n  --md-red-300: #e57373;\n  --md-red-400: #ef5350;\n  --md-red-500: #f44336;\n  --md-red-600: #e53935;\n  --md-red-700: #d32f2f;\n  --md-red-800: #c62828;\n  --md-red-900: #b71c1c;\n  --md-red-A100: #ff8a80;\n  --md-red-A200: #ff5252;\n  --md-red-A400: #ff1744;\n  --md-red-A700: #d50000;\n\n  --md-pink-50: #fce4ec;\n  --md-pink-100: #f8bbd0;\n  --md-pink-200: #f48fb1;\n  --md-pink-300: #f06292;\n  --md-pink-400: #ec407a;\n  --md-pink-500: #e91e63;\n  --md-pink-600: #d81b60;\n  --md-pink-700: #c2185b;\n  --md-pink-800: #ad1457;\n  --md-pink-900: #880e4f;\n  --md-pink-A100: #ff80ab;\n  --md-pink-A200: #ff4081;\n  --md-pink-A400: #f50057;\n  --md-pink-A700: #c51162;\n\n  --md-purple-50: #f3e5f5;\n  --md-purple-100: #e1bee7;\n  --md-purple-200: #ce93d8;\n  --md-purple-300: #ba68c8;\n  --md-purple-400: #ab47bc;\n  --md-purple-500: #9c27b0;\n  --md-purple-600: #8e24aa;\n  --md-purple-700: #7b1fa2;\n  --md-purple-800: #6a1b9a;\n  --md-purple-900: #4a148c;\n  --md-purple-A100: #ea80fc;\n  --md-purple-A200: #e040fb;\n  --md-purple-A400: #d500f9;\n  --md-purple-A700: #aa00ff;\n\n  --md-deep-purple-50: #ede7f6;\n  --md-deep-purple-100: #d1c4e9;\n  --md-deep-purple-200: #b39ddb;\n  --md-deep-purple-300: #9575cd;\n  --md-deep-purple-400: #7e57c2;\n  --md-deep-purple-500: #673ab7;\n  --md-deep-purple-600: #5e35b1;\n  --md-deep-purple-700: #512da8;\n  --md-deep-purple-800: #4527a0;\n  --md-deep-purple-900: #311b92;\n  --md-deep-purple-A100: #b388ff;\n  --md-deep-purple-A200: #7c4dff;\n  --md-deep-purple-A400: #651fff;\n  --md-deep-purple-A700: #6200ea;\n\n  --md-indigo-50: #e8eaf6;\n  --md-indigo-100: #c5cae9;\n  --md-indigo-200: #9fa8da;\n  --md-indigo-300: #7986cb;\n  --md-indigo-400: #5c6bc0;\n  --md-indigo-500: #3f51b5;\n  --md-indigo-600: #3949ab;\n  --md-indigo-700: #303f9f;\n  --md-indigo-800: #283593;\n  --md-indigo-900: #1a237e;\n  --md-indigo-A100: #8c9eff;\n  --md-indigo-A200: #536dfe;\n  --md-indigo-A400: #3d5afe;\n  --md-indigo-A700: #304ffe;\n\n  --md-blue-50: #e3f2fd;\n  --md-blue-100: #bbdefb;\n  --md-blue-200: #90caf9;\n  --md-blue-300: #64b5f6;\n  --md-blue-400: #42a5f5;\n  --md-blue-500: #2196f3;\n  --md-blue-600: #1e88e5;\n  --md-blue-700: #1976d2;\n  --md-blue-800: #1565c0;\n  --md-blue-900: #0d47a1;\n  --md-blue-A100: #82b1ff;\n  --md-blue-A200: #448aff;\n  --md-blue-A400: #2979ff;\n  --md-blue-A700: #2962ff;\n\n  --md-light-blue-50: #e1f5fe;\n  --md-light-blue-100: #b3e5fc;\n  --md-light-blue-200: #81d4fa;\n  --md-light-blue-300: #4fc3f7;\n  --md-light-blue-400: #29b6f6;\n  --md-light-blue-500: #03a9f4;\n  --md-light-blue-600: #039be5;\n  --md-light-blue-700: #0288d1;\n  --md-light-blue-800: #0277bd;\n  --md-light-blue-900: #01579b;\n  --md-light-blue-A100: #80d8ff;\n  --md-light-blue-A200: #40c4ff;\n  --md-light-blue-A400: #00b0ff;\n  --md-light-blue-A700: #0091ea;\n\n  --md-cyan-50: #e0f7fa;\n  --md-cyan-100: #b2ebf2;\n  --md-cyan-200: #80deea;\n  --md-cyan-300: #4dd0e1;\n  --md-cyan-400: #26c6da;\n  --md-cyan-500: #00bcd4;\n  --md-cyan-600: #00acc1;\n  --md-cyan-700: #0097a7;\n  --md-cyan-800: #00838f;\n  --md-cyan-900: #006064;\n  --md-cyan-A100: #84ffff;\n  --md-cyan-A200: #18ffff;\n  --md-cyan-A400: #00e5ff;\n  --md-cyan-A700: #00b8d4;\n\n  --md-teal-50: #e0f2f1;\n  --md-teal-100: #b2dfdb;\n  --md-teal-200: #80cbc4;\n  --md-teal-300: #4db6ac;\n  --md-teal-400: #26a69a;\n  --md-teal-500: #009688;\n  --md-teal-600: #00897b;\n  --md-teal-700: #00796b;\n  --md-teal-800: #00695c;\n  --md-teal-900: #004d40;\n  --md-teal-A100: #a7ffeb;\n  --md-teal-A200: #64ffda;\n  --md-teal-A400: #1de9b6;\n  --md-teal-A700: #00bfa5;\n\n  --md-green-50: #e8f5e9;\n  --md-green-100: #c8e6c9;\n  --md-green-200: #a5d6a7;\n  --md-green-300: #81c784;\n  --md-green-400: #66bb6a;\n  --md-green-500: #4caf50;\n  --md-green-600: #43a047;\n  --md-green-700: #388e3c;\n  --md-green-800: #2e7d32;\n  --md-green-900: #1b5e20;\n  --md-green-A100: #b9f6ca;\n  --md-green-A200: #69f0ae;\n  --md-green-A400: #00e676;\n  --md-green-A700: #00c853;\n\n  --md-light-green-50: #f1f8e9;\n  --md-light-green-100: #dcedc8;\n  --md-light-green-200: #c5e1a5;\n  --md-light-green-300: #aed581;\n  --md-light-green-400: #9ccc65;\n  --md-light-green-500: #8bc34a;\n  --md-light-green-600: #7cb342;\n  --md-light-green-700: #689f38;\n  --md-light-green-800: #558b2f;\n  --md-light-green-900: #33691e;\n  --md-light-green-A100: #ccff90;\n  --md-light-green-A200: #b2ff59;\n  --md-light-green-A400: #76ff03;\n  --md-light-green-A700: #64dd17;\n\n  --md-lime-50: #f9fbe7;\n  --md-lime-100: #f0f4c3;\n  --md-lime-200: #e6ee9c;\n  --md-lime-300: #dce775;\n  --md-lime-400: #d4e157;\n  --md-lime-500: #cddc39;\n  --md-lime-600: #c0ca33;\n  --md-lime-700: #afb42b;\n  --md-lime-800: #9e9d24;\n  --md-lime-900: #827717;\n  --md-lime-A100: #f4ff81;\n  --md-lime-A200: #eeff41;\n  --md-lime-A400: #c6ff00;\n  --md-lime-A700: #aeea00;\n\n  --md-yellow-50: #fffde7;\n  --md-yellow-100: #fff9c4;\n  --md-yellow-200: #fff59d;\n  --md-yellow-300: #fff176;\n  --md-yellow-400: #ffee58;\n  --md-yellow-500: #ffeb3b;\n  --md-yellow-600: #fdd835;\n  --md-yellow-700: #fbc02d;\n  --md-yellow-800: #f9a825;\n  --md-yellow-900: #f57f17;\n  --md-yellow-A100: #ffff8d;\n  --md-yellow-A200: #ffff00;\n  --md-yellow-A400: #ffea00;\n  --md-yellow-A700: #ffd600;\n\n  --md-amber-50: #fff8e1;\n  --md-amber-100: #ffecb3;\n  --md-amber-200: #ffe082;\n  --md-amber-300: #ffd54f;\n  --md-amber-400: #ffca28;\n  --md-amber-500: #ffc107;\n  --md-amber-600: #ffb300;\n  --md-amber-700: #ffa000;\n  --md-amber-800: #ff8f00;\n  --md-amber-900: #ff6f00;\n  --md-amber-A100: #ffe57f;\n  --md-amber-A200: #ffd740;\n  --md-amber-A400: #ffc400;\n  --md-amber-A700: #ffab00;\n\n  --md-orange-50: #fff3e0;\n  --md-orange-100: #ffe0b2;\n  --md-orange-200: #ffcc80;\n  --md-orange-300: #ffb74d;\n  --md-orange-400: #ffa726;\n  --md-orange-500: #ff9800;\n  --md-orange-600: #fb8c00;\n  --md-orange-700: #f57c00;\n  --md-orange-800: #ef6c00;\n  --md-orange-900: #e65100;\n  --md-orange-A100: #ffd180;\n  --md-orange-A200: #ffab40;\n  --md-orange-A400: #ff9100;\n  --md-orange-A700: #ff6d00;\n\n  --md-deep-orange-50: #fbe9e7;\n  --md-deep-orange-100: #ffccbc;\n  --md-deep-orange-200: #ffab91;\n  --md-deep-orange-300: #ff8a65;\n  --md-deep-orange-400: #ff7043;\n  --md-deep-orange-500: #ff5722;\n  --md-deep-orange-600: #f4511e;\n  --md-deep-orange-700: #e64a19;\n  --md-deep-orange-800: #d84315;\n  --md-deep-orange-900: #bf360c;\n  --md-deep-orange-A100: #ff9e80;\n  --md-deep-orange-A200: #ff6e40;\n  --md-deep-orange-A400: #ff3d00;\n  --md-deep-orange-A700: #dd2c00;\n\n  --md-brown-50: #efebe9;\n  --md-brown-100: #d7ccc8;\n  --md-brown-200: #bcaaa4;\n  --md-brown-300: #a1887f;\n  --md-brown-400: #8d6e63;\n  --md-brown-500: #795548;\n  --md-brown-600: #6d4c41;\n  --md-brown-700: #5d4037;\n  --md-brown-800: #4e342e;\n  --md-brown-900: #3e2723;\n\n  --md-grey-50: #fafafa;\n  --md-grey-100: #f5f5f5;\n  --md-grey-200: #eeeeee;\n  --md-grey-300: #e0e0e0;\n  --md-grey-400: #bdbdbd;\n  --md-grey-500: #9e9e9e;\n  --md-grey-600: #757575;\n  --md-grey-700: #616161;\n  --md-grey-800: #424242;\n  --md-grey-900: #212121;\n\n  --md-blue-grey-50: #eceff1;\n  --md-blue-grey-100: #cfd8dc;\n  --md-blue-grey-200: #b0bec5;\n  --md-blue-grey-300: #90a4ae;\n  --md-blue-grey-400: #78909c;\n  --md-blue-grey-500: #607d8b;\n  --md-blue-grey-600: #546e7a;\n  --md-blue-grey-700: #455a64;\n  --md-blue-grey-800: #37474f;\n  --md-blue-grey-900: #263238;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Spinner {\n  position: absolute;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  z-index: 10;\n  left: 0;\n  top: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-layout-color0);\n  outline: none;\n}\n\n.jp-SpinnerContent {\n  font-size: 10px;\n  margin: 50px auto;\n  text-indent: -9999em;\n  width: 3em;\n  height: 3em;\n  border-radius: 50%;\n  background: var(--jp-brand-color3);\n  background: linear-gradient(\n    to right,\n    #f37626 10%,\n    rgba(255, 255, 255, 0) 42%\n  );\n  position: relative;\n  animation: load3 1s infinite linear, fadeIn 1s;\n}\n\n.jp-SpinnerContent:before {\n  width: 50%;\n  height: 50%;\n  background: #f37626;\n  border-radius: 100% 0 0 0;\n  position: absolute;\n  top: 0;\n  left: 0;\n  content: '';\n}\n\n.jp-SpinnerContent:after {\n  background: var(--jp-layout-color0);\n  width: 75%;\n  height: 75%;\n  border-radius: 50%;\n  content: '';\n  margin: auto;\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n}\n\n@keyframes fadeIn {\n  0% {\n    opacity: 0;\n  }\n  100% {\n    opacity: 1;\n  }\n}\n\n@keyframes load3 {\n  0% {\n    transform: rotate(0deg);\n  }\n  100% {\n    transform: rotate(360deg);\n  }\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\nbutton.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: none;\n  box-sizing: border-box;\n  text-align: center;\n  line-height: 32px;\n  height: 32px;\n  padding: 0px 12px;\n  letter-spacing: 0.8px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput.jp-mod-styled {\n  background: var(--jp-input-background);\n  height: 28px;\n  box-sizing: border-box;\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n  padding-left: 7px;\n  padding-right: 7px;\n  font-size: var(--jp-ui-font-size2);\n  color: var(--jp-ui-font-color0);\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput[type='checkbox'].jp-mod-styled {\n  appearance: checkbox;\n  -webkit-appearance: checkbox;\n  -moz-appearance: checkbox;\n  height: auto;\n}\n\ninput.jp-mod-styled:focus {\n  border: var(--jp-border-width) solid var(--md-blue-500);\n  box-shadow: inset 0 0 4px var(--md-blue-300);\n}\n\n.jp-FileDialog-Checkbox {\n  margin-top: 35px;\n  display: flex;\n  flex-direction: row;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-FileDialog-Checkbox > label {\n  flex: 1 1 auto;\n}\n\n.jp-select-wrapper {\n  display: flex;\n  position: relative;\n  flex-direction: column;\n  padding: 1px;\n  background-color: var(--jp-layout-color1);\n  height: 28px;\n  box-sizing: border-box;\n  margin-bottom: 12px;\n}\n\n.jp-select-wrapper.jp-mod-focused select.jp-mod-styled {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-input-active-background);\n}\n\nselect.jp-mod-styled:hover {\n  background-color: var(--jp-layout-color1);\n  cursor: pointer;\n  color: var(--jp-ui-font-color0);\n  background-color: var(--jp-input-hover-background);\n  box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.5);\n}\n\nselect.jp-mod-styled {\n  flex: 1 1 auto;\n  height: 32px;\n  width: 100%;\n  font-size: var(--jp-ui-font-size2);\n  background: var(--jp-input-background);\n  color: var(--jp-ui-font-color0);\n  padding: 0 25px 0 8px;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-toolbar-height: calc(\n    28px + var(--jp-border-width)\n  ); /* leave 28px for content */\n}\n\n.jp-Toolbar {\n  color: var(--jp-ui-font-color1);\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  border-bottom: var(--jp-border-width) solid var(--jp-toolbar-border-color);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  background: var(--jp-toolbar-background);\n  min-height: var(--jp-toolbar-micro-height);\n  padding: 2px;\n  z-index: 1;\n  overflow-x: auto;\n}\n\n/* Toolbar items */\n\n.jp-Toolbar > .jp-Toolbar-item.jp-Toolbar-spacer {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\n.jp-Toolbar-item.jp-Toolbar-kernelStatus {\n  display: inline-block;\n  width: 32px;\n  background-repeat: no-repeat;\n  background-position: center;\n  background-size: 16px;\n}\n\n.jp-Toolbar > .jp-Toolbar-item {\n  flex: 0 0 auto;\n  display: flex;\n  padding-left: 1px;\n  padding-right: 1px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: var(--jp-private-toolbar-height);\n  height: 100%;\n}\n\n/* Toolbar buttons */\n\n/* This is the div we use to wrap the react component into a Widget */\ndiv.jp-ToolbarButton {\n  color: transparent;\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px;\n  margin: 0px;\n}\n\nbutton.jp-ToolbarButtonComponent {\n  background: var(--jp-layout-color1);\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px 6px;\n  margin: 0px;\n  height: 24px;\n  border-radius: var(--jp-border-radius);\n  display: flex;\n  align-items: center;\n  text-align: center;\n  font-size: 14px;\n  min-width: unset;\n  min-height: unset;\n}\n\nbutton.jp-ToolbarButtonComponent:disabled {\n  opacity: 0.4;\n}\n\nbutton.jp-ToolbarButtonComponent span {\n  padding: 0px;\n  flex: 0 0 auto;\n}\n\nbutton.jp-ToolbarButtonComponent .jp-ToolbarButtonComponent-label {\n  font-size: var(--jp-ui-font-size1);\n  line-height: 100%;\n  padding-left: 2px;\n  color: var(--jp-ui-font-color1);\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar.jp-Toolbar-micro {\n  padding: 0;\n  min-height: 0;\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar {\n  border: none;\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ body.p-mod-override-cursor *, /* </DEPRECATED> */\nbody.lm-mod-override-cursor * {\n  cursor: inherit !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-JSONEditor {\n  display: flex;\n  flex-direction: column;\n  width: 100%;\n}\n\n.jp-JSONEditor-host {\n  flex: 1 1 auto;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  background: var(--jp-layout-color0);\n  min-height: 50px;\n  padding: 1px;\n}\n\n.jp-JSONEditor.jp-mod-error .jp-JSONEditor-host {\n  border-color: red;\n  outline-color: red;\n}\n\n.jp-JSONEditor-header {\n  display: flex;\n  flex: 1 0 auto;\n  padding: 0 0 0 12px;\n}\n\n.jp-JSONEditor-header label {\n  flex: 0 0 auto;\n}\n\n.jp-JSONEditor-commitButton {\n  height: 16px;\n  width: 16px;\n  background-size: 18px;\n  background-repeat: no-repeat;\n  background-position: center;\n}\n\n.jp-JSONEditor-host.jp-mod-focused {\n  background-color: var(--jp-input-active-background);\n  border: 1px solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n.jp-Editor.jp-mod-dropTarget {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n/* BASICS */\n\n.CodeMirror {\n  /* Set height, width, borders, and global font properties here */\n  font-family: monospace;\n  height: 300px;\n  color: black;\n  direction: ltr;\n}\n\n/* PADDING */\n\n.CodeMirror-lines {\n  padding: 4px 0; /* Vertical padding around content */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  padding: 0 4px; /* Horizontal padding of content */\n}\n\n.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  background-color: white; /* The little square between H and V scrollbars */\n}\n\n/* GUTTER */\n\n.CodeMirror-gutters {\n  border-right: 1px solid #ddd;\n  background-color: #f7f7f7;\n  white-space: nowrap;\n}\n.CodeMirror-linenumbers {}\n.CodeMirror-linenumber {\n  padding: 0 3px 0 5px;\n  min-width: 20px;\n  text-align: right;\n  color: #999;\n  white-space: nowrap;\n}\n\n.CodeMirror-guttermarker { color: black; }\n.CodeMirror-guttermarker-subtle { color: #999; }\n\n/* CURSOR */\n\n.CodeMirror-cursor {\n  border-left: 1px solid black;\n  border-right: none;\n  width: 0;\n}\n/* Shown when moving in bi-directional text */\n.CodeMirror div.CodeMirror-secondarycursor {\n  border-left: 1px solid silver;\n}\n.cm-fat-cursor .CodeMirror-cursor {\n  width: auto;\n  border: 0 !important;\n  background: #7e7;\n}\n.cm-fat-cursor div.CodeMirror-cursors {\n  z-index: 1;\n}\n.cm-fat-cursor-mark {\n  background-color: rgba(20, 255, 20, 0.5);\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n}\n.cm-animate-fat-cursor {\n  width: auto;\n  border: 0;\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n  background-color: #7e7;\n}\n@-moz-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@-webkit-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n\n/* Can style cursor different in overwrite (non-insert) mode */\n.CodeMirror-overwrite .CodeMirror-cursor {}\n\n.cm-tab { display: inline-block; text-decoration: inherit; }\n\n.CodeMirror-rulers {\n  position: absolute;\n  left: 0; right: 0; top: -50px; bottom: 0;\n  overflow: hidden;\n}\n.CodeMirror-ruler {\n  border-left: 1px solid #ccc;\n  top: 0; bottom: 0;\n  position: absolute;\n}\n\n/* DEFAULT THEME */\n\n.cm-s-default .cm-header {color: blue;}\n.cm-s-default .cm-quote {color: #090;}\n.cm-negative {color: #d44;}\n.cm-positive {color: #292;}\n.cm-header, .cm-strong {font-weight: bold;}\n.cm-em {font-style: italic;}\n.cm-link {text-decoration: underline;}\n.cm-strikethrough {text-decoration: line-through;}\n\n.cm-s-default .cm-keyword {color: #708;}\n.cm-s-default .cm-atom {color: #219;}\n.cm-s-default .cm-number {color: #164;}\n.cm-s-default .cm-def {color: #00f;}\n.cm-s-default .cm-variable,\n.cm-s-default .cm-punctuation,\n.cm-s-default .cm-property,\n.cm-s-default .cm-operator {}\n.cm-s-default .cm-variable-2 {color: #05a;}\n.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}\n.cm-s-default .cm-comment {color: #a50;}\n.cm-s-default .cm-string {color: #a11;}\n.cm-s-default .cm-string-2 {color: #f50;}\n.cm-s-default .cm-meta {color: #555;}\n.cm-s-default .cm-qualifier {color: #555;}\n.cm-s-default .cm-builtin {color: #30a;}\n.cm-s-default .cm-bracket {color: #997;}\n.cm-s-default .cm-tag {color: #170;}\n.cm-s-default .cm-attribute {color: #00c;}\n.cm-s-default .cm-hr {color: #999;}\n.cm-s-default .cm-link {color: #00c;}\n\n.cm-s-default .cm-error {color: #f00;}\n.cm-invalidchar {color: #f00;}\n\n.CodeMirror-composing { border-bottom: 2px solid; }\n\n/* Default styles for common addons */\n\ndiv.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}\ndiv.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}\n.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }\n.CodeMirror-activeline-background {background: #e8f2ff;}\n\n/* STOP */\n\n/* The rest of this file contains styles related to the mechanics of\n   the editor. You probably shouldn't touch them. */\n\n.CodeMirror {\n  position: relative;\n  overflow: hidden;\n  background: white;\n}\n\n.CodeMirror-scroll {\n  overflow: scroll !important; /* Things will break if this is overridden */\n  /* 50px is the magic margin used to hide the element's real scrollbars */\n  /* See overflow: hidden in .CodeMirror */\n  margin-bottom: -50px; margin-right: -50px;\n  padding-bottom: 50px;\n  height: 100%;\n  outline: none; /* Prevent dragging from highlighting the element */\n  position: relative;\n}\n.CodeMirror-sizer {\n  position: relative;\n  border-right: 50px solid transparent;\n}\n\n/* The fake, visible scrollbars. Used to force redraw during scrolling\n   before actual scrolling happens, thus preventing shaking and\n   flickering artifacts. */\n.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  position: absolute;\n  z-index: 6;\n  display: none;\n  outline: none;\n}\n.CodeMirror-vscrollbar {\n  right: 0; top: 0;\n  overflow-x: hidden;\n  overflow-y: scroll;\n}\n.CodeMirror-hscrollbar {\n  bottom: 0; left: 0;\n  overflow-y: hidden;\n  overflow-x: scroll;\n}\n.CodeMirror-scrollbar-filler {\n  right: 0; bottom: 0;\n}\n.CodeMirror-gutter-filler {\n  left: 0; bottom: 0;\n}\n\n.CodeMirror-gutters {\n  position: absolute; left: 0; top: 0;\n  min-height: 100%;\n  z-index: 3;\n}\n.CodeMirror-gutter {\n  white-space: normal;\n  height: 100%;\n  display: inline-block;\n  vertical-align: top;\n  margin-bottom: -50px;\n}\n.CodeMirror-gutter-wrapper {\n  position: absolute;\n  z-index: 4;\n  background: none !important;\n  border: none !important;\n}\n.CodeMirror-gutter-background {\n  position: absolute;\n  top: 0; bottom: 0;\n  z-index: 4;\n}\n.CodeMirror-gutter-elt {\n  position: absolute;\n  cursor: default;\n  z-index: 4;\n}\n.CodeMirror-gutter-wrapper ::selection { background-color: transparent }\n.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }\n\n.CodeMirror-lines {\n  cursor: text;\n  min-height: 1px; /* prevents collapsing before first draw */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  /* Reset some styles that the rest of the page might have set */\n  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;\n  border-width: 0;\n  background: transparent;\n  font-family: inherit;\n  font-size: inherit;\n  margin: 0;\n  white-space: pre;\n  word-wrap: normal;\n  line-height: inherit;\n  color: inherit;\n  z-index: 2;\n  position: relative;\n  overflow: visible;\n  -webkit-tap-highlight-color: transparent;\n  -webkit-font-variant-ligatures: contextual;\n  font-variant-ligatures: contextual;\n}\n.CodeMirror-wrap pre.CodeMirror-line,\n.CodeMirror-wrap pre.CodeMirror-line-like {\n  word-wrap: break-word;\n  white-space: pre-wrap;\n  word-break: normal;\n}\n\n.CodeMirror-linebackground {\n  position: absolute;\n  left: 0; right: 0; top: 0; bottom: 0;\n  z-index: 0;\n}\n\n.CodeMirror-linewidget {\n  position: relative;\n  z-index: 2;\n  padding: 0.1px; /* Force widget margins to stay inside of the container */\n}\n\n.CodeMirror-widget {}\n\n.CodeMirror-rtl pre { direction: rtl; }\n\n.CodeMirror-code {\n  outline: none;\n}\n\n/* Force content-box sizing for the elements where we expect it */\n.CodeMirror-scroll,\n.CodeMirror-sizer,\n.CodeMirror-gutter,\n.CodeMirror-gutters,\n.CodeMirror-linenumber {\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n}\n\n.CodeMirror-measure {\n  position: absolute;\n  width: 100%;\n  height: 0;\n  overflow: hidden;\n  visibility: hidden;\n}\n\n.CodeMirror-cursor {\n  position: absolute;\n  pointer-events: none;\n}\n.CodeMirror-measure pre { position: static; }\n\ndiv.CodeMirror-cursors {\n  visibility: hidden;\n  position: relative;\n  z-index: 3;\n}\ndiv.CodeMirror-dragcursors {\n  visibility: visible;\n}\n\n.CodeMirror-focused div.CodeMirror-cursors {\n  visibility: visible;\n}\n\n.CodeMirror-selected { background: #d9d9d9; }\n.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }\n.CodeMirror-crosshair { cursor: crosshair; }\n.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }\n.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }\n\n.cm-searching {\n  background-color: #ffa;\n  background-color: rgba(255, 255, 0, .4);\n}\n\n/* Used to force a border model for a node */\n.cm-force-border { padding-right: .1px; }\n\n@media print {\n  /* Hide the cursor when printing */\n  .CodeMirror div.CodeMirror-cursors {\n    visibility: hidden;\n  }\n}\n\n/* See issue #2901 */\n.cm-tab-wrap-hack:after { content: ''; }\n\n/* Help users use markselection to safely style text background */\nspan.CodeMirror-selectedtext { background: none; }\n\n.CodeMirror-dialog {\n  position: absolute;\n  left: 0; right: 0;\n  background: inherit;\n  z-index: 15;\n  padding: .1em .8em;\n  overflow: hidden;\n  color: inherit;\n}\n\n.CodeMirror-dialog-top {\n  border-bottom: 1px solid #eee;\n  top: 0;\n}\n\n.CodeMirror-dialog-bottom {\n  border-top: 1px solid #eee;\n  bottom: 0;\n}\n\n.CodeMirror-dialog input {\n  border: none;\n  outline: none;\n  background: transparent;\n  width: 20em;\n  color: inherit;\n  font-family: monospace;\n}\n\n.CodeMirror-dialog button {\n  font-size: 70%;\n}\n\n.CodeMirror-foldmarker {\n  color: blue;\n  text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;\n  font-family: arial;\n  line-height: .3;\n  cursor: pointer;\n}\n.CodeMirror-foldgutter {\n  width: .7em;\n}\n.CodeMirror-foldgutter-open,\n.CodeMirror-foldgutter-folded {\n  cursor: pointer;\n}\n.CodeMirror-foldgutter-open:after {\n  content: \"\\25BE\";\n}\n.CodeMirror-foldgutter-folded:after {\n  content: \"\\25B8\";\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.CodeMirror {\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  border: 0;\n  border-radius: 0;\n  height: auto;\n  /* Changed to auto to autogrow */\n}\n\n.CodeMirror pre {\n  padding: 0 var(--jp-code-padding);\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-dialog {\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* This causes https://github.com/jupyter/jupyterlab/issues/522 */\n/* May not cause it not because we changed it! */\n.CodeMirror-lines {\n  padding: var(--jp-code-padding) 0;\n}\n\n.CodeMirror-linenumber {\n  padding: 0 8px;\n}\n\n.jp-CodeMirrorEditor {\n  cursor: text;\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n\n/* When zoomed out 67% and 33% on a screen of 1440 width x 900 height */\n@media screen and (min-width: 2138px) and (max-width: 4319px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width1) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n/* When zoomed out less than 33% */\n@media screen and (min-width: 4320px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width2) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n.CodeMirror.jp-mod-readOnly .CodeMirror-cursor {\n  display: none;\n}\n\n.CodeMirror-gutters {\n  border-right: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-layout-color0);\n}\n\n.jp-CollaboratorCursor {\n  border-left: 5px solid transparent;\n  border-right: 5px solid transparent;\n  border-top: none;\n  border-bottom: 3px solid;\n  background-clip: content-box;\n  margin-left: -5px;\n  margin-right: -5px;\n}\n\n.CodeMirror-selectedtext.cm-searching {\n  background-color: var(--jp-search-selected-match-background-color) !important;\n  color: var(--jp-search-selected-match-color) !important;\n}\n\n.cm-searching {\n  background-color: var(\n    --jp-search-unselected-match-background-color\n  ) !important;\n  color: var(--jp-search-unselected-match-color) !important;\n}\n\n.CodeMirror-focused .CodeMirror-selected {\n  background-color: var(--jp-editor-selected-focused-background);\n}\n\n.CodeMirror-selected {\n  background-color: var(--jp-editor-selected-background);\n}\n\n.jp-CollaboratorCursor-hover {\n  position: absolute;\n  z-index: 1;\n  transform: translateX(-50%);\n  color: white;\n  border-radius: 3px;\n  padding-left: 4px;\n  padding-right: 4px;\n  padding-top: 1px;\n  padding-bottom: 1px;\n  text-align: center;\n  font-size: var(--jp-ui-font-size1);\n  white-space: nowrap;\n}\n\n.jp-CodeMirror-ruler {\n  border-left: 1px dashed var(--jp-border-color2);\n}\n\n/**\n * Here is our jupyter theme for CodeMirror syntax highlighting\n * This is used in our marked.js syntax highlighting and CodeMirror itself\n * The string \"jupyter\" is set in ../codemirror/widget.DEFAULT_CODEMIRROR_THEME\n * This came from the classic notebook, which came form highlight.js/GitHub\n */\n\n/**\n * CodeMirror themes are handling the background/color in this way. This works\n * fine for CodeMirror editors outside the notebook, but the notebook styles\n * these things differently.\n */\n.CodeMirror.cm-s-jupyter {\n  background: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* In the notebook, we want this styling to be handled by its container */\n.jp-CodeConsole .CodeMirror.cm-s-jupyter,\n.jp-Notebook .CodeMirror.cm-s-jupyter {\n  background: transparent;\n}\n\n.cm-s-jupyter .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n.cm-s-jupyter span.cm-keyword {\n  color: var(--jp-mirror-editor-keyword-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-atom {\n  color: var(--jp-mirror-editor-atom-color);\n}\n.cm-s-jupyter span.cm-number {\n  color: var(--jp-mirror-editor-number-color);\n}\n.cm-s-jupyter span.cm-def {\n  color: var(--jp-mirror-editor-def-color);\n}\n.cm-s-jupyter span.cm-variable {\n  color: var(--jp-mirror-editor-variable-color);\n}\n.cm-s-jupyter span.cm-variable-2 {\n  color: var(--jp-mirror-editor-variable-2-color);\n}\n.cm-s-jupyter span.cm-variable-3 {\n  color: var(--jp-mirror-editor-variable-3-color);\n}\n.cm-s-jupyter span.cm-punctuation {\n  color: var(--jp-mirror-editor-punctuation-color);\n}\n.cm-s-jupyter span.cm-property {\n  color: var(--jp-mirror-editor-property-color);\n}\n.cm-s-jupyter span.cm-operator {\n  color: var(--jp-mirror-editor-operator-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-comment {\n  color: var(--jp-mirror-editor-comment-color);\n  font-style: italic;\n}\n.cm-s-jupyter span.cm-string {\n  color: var(--jp-mirror-editor-string-color);\n}\n.cm-s-jupyter span.cm-string-2 {\n  color: var(--jp-mirror-editor-string-2-color);\n}\n.cm-s-jupyter span.cm-meta {\n  color: var(--jp-mirror-editor-meta-color);\n}\n.cm-s-jupyter span.cm-qualifier {\n  color: var(--jp-mirror-editor-qualifier-color);\n}\n.cm-s-jupyter span.cm-builtin {\n  color: var(--jp-mirror-editor-builtin-color);\n}\n.cm-s-jupyter span.cm-bracket {\n  color: var(--jp-mirror-editor-bracket-color);\n}\n.cm-s-jupyter span.cm-tag {\n  color: var(--jp-mirror-editor-tag-color);\n}\n.cm-s-jupyter span.cm-attribute {\n  color: var(--jp-mirror-editor-attribute-color);\n}\n.cm-s-jupyter span.cm-header {\n  color: var(--jp-mirror-editor-header-color);\n}\n.cm-s-jupyter span.cm-quote {\n  color: var(--jp-mirror-editor-quote-color);\n}\n.cm-s-jupyter span.cm-link {\n  color: var(--jp-mirror-editor-link-color);\n}\n.cm-s-jupyter span.cm-error {\n  color: var(--jp-mirror-editor-error-color);\n}\n.cm-s-jupyter span.cm-hr {\n  color: #999;\n}\n\n.cm-s-jupyter span.cm-tab {\n  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);\n  background-position: right;\n  background-repeat: no-repeat;\n}\n\n.cm-s-jupyter .CodeMirror-activeline-background,\n.cm-s-jupyter .CodeMirror-gutter {\n  background-color: var(--jp-layout-color2);\n}\n\n/* Styles for shared cursors (remote cursor locations and selected ranges) */\n.jp-CodeMirrorEditor .remote-caret {\n  position: relative;\n  border-left: 2px solid black;\n  margin-left: -1px;\n  margin-right: -1px;\n  box-sizing: border-box;\n}\n\n.jp-CodeMirrorEditor .remote-caret > div {\n  white-space: nowrap;\n  position: absolute;\n  top: -1.15em;\n  padding-bottom: 0.05em;\n  left: -2px;\n  font-size: 0.95em;\n  background-color: rgb(250, 129, 0);\n  font-family: var(--jp-ui-font-family);\n  font-weight: bold;\n  line-height: normal;\n  user-select: none;\n  color: white;\n  padding-left: 2px;\n  padding-right: 2px;\n  z-index: 3;\n  transition: opacity 0.3s ease-in-out;\n}\n\n.jp-CodeMirrorEditor .remote-caret.hide-name > div {\n  transition-delay: 0.7s;\n  opacity: 0;\n}\n\n.jp-CodeMirrorEditor .remote-caret:hover > div {\n  opacity: 1;\n  transition-delay: 0s;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| RenderedText\n|----------------------------------------------------------------------------*/\n\n:root {\n  /* This is the padding value to fill the gaps between lines containing spans with background color. */\n  --jp-private-code-span-padding: calc(\n    (var(--jp-code-line-height) - 1) * var(--jp-code-font-size) / 2\n  );\n}\n\n.jp-RenderedText {\n  text-align: left;\n  padding-left: var(--jp-code-padding);\n  line-height: var(--jp-code-line-height);\n  font-family: var(--jp-code-font-family);\n}\n\n.jp-RenderedText pre,\n.jp-RenderedJavaScript pre,\n.jp-RenderedHTMLCommon pre {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-code-font-size);\n  border: none;\n  margin: 0px;\n  padding: 0px;\n}\n\n.jp-RenderedText pre a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* console foregrounds and backgrounds */\n.jp-RenderedText pre .ansi-black-fg {\n  color: #3e424d;\n}\n.jp-RenderedText pre .ansi-red-fg {\n  color: #e75c58;\n}\n.jp-RenderedText pre .ansi-green-fg {\n  color: #00a250;\n}\n.jp-RenderedText pre .ansi-yellow-fg {\n  color: #ddb62b;\n}\n.jp-RenderedText pre .ansi-blue-fg {\n  color: #208ffb;\n}\n.jp-RenderedText pre .ansi-magenta-fg {\n  color: #d160c4;\n}\n.jp-RenderedText pre .ansi-cyan-fg {\n  color: #60c6c8;\n}\n.jp-RenderedText pre .ansi-white-fg {\n  color: #c5c1b4;\n}\n\n.jp-RenderedText pre .ansi-black-bg {\n  background-color: #3e424d;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-bg {\n  background-color: #e75c58;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-bg {\n  background-color: #00a250;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-bg {\n  background-color: #ddb62b;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-bg {\n  background-color: #208ffb;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-bg {\n  background-color: #d160c4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-bg {\n  background-color: #60c6c8;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-bg {\n  background-color: #c5c1b4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-black-intense-fg {\n  color: #282c36;\n}\n.jp-RenderedText pre .ansi-red-intense-fg {\n  color: #b22b31;\n}\n.jp-RenderedText pre .ansi-green-intense-fg {\n  color: #007427;\n}\n.jp-RenderedText pre .ansi-yellow-intense-fg {\n  color: #b27d12;\n}\n.jp-RenderedText pre .ansi-blue-intense-fg {\n  color: #0065ca;\n}\n.jp-RenderedText pre .ansi-magenta-intense-fg {\n  color: #a03196;\n}\n.jp-RenderedText pre .ansi-cyan-intense-fg {\n  color: #258f8f;\n}\n.jp-RenderedText pre .ansi-white-intense-fg {\n  color: #a1a6b2;\n}\n\n.jp-RenderedText pre .ansi-black-intense-bg {\n  background-color: #282c36;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-intense-bg {\n  background-color: #b22b31;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-intense-bg {\n  background-color: #007427;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-intense-bg {\n  background-color: #b27d12;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-intense-bg {\n  background-color: #0065ca;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-intense-bg {\n  background-color: #a03196;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-intense-bg {\n  background-color: #258f8f;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-intense-bg {\n  background-color: #a1a6b2;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-default-inverse-fg {\n  color: var(--jp-ui-inverse-font-color0);\n}\n.jp-RenderedText pre .ansi-default-inverse-bg {\n  background-color: var(--jp-inverse-layout-color0);\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-bold {\n  font-weight: bold;\n}\n.jp-RenderedText pre .ansi-underline {\n  text-decoration: underline;\n}\n\n.jp-RenderedText[data-mime-type='application/vnd.jupyter.stderr'] {\n  background: var(--jp-rendermime-error-background);\n  padding-top: var(--jp-code-padding);\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedLatex\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedLatex {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n}\n\n/* Left-justify outputs.*/\n.jp-OutputArea-output.jp-RenderedLatex {\n  padding: var(--jp-code-padding);\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedHTML\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedHTMLCommon {\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-content-font-family);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n  /* Give a bit more R padding on Markdown text to keep line lengths reasonable */\n  padding-right: 20px;\n}\n\n.jp-RenderedHTMLCommon em {\n  font-style: italic;\n}\n\n.jp-RenderedHTMLCommon strong {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon u {\n  text-decoration: underline;\n}\n\n.jp-RenderedHTMLCommon a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* Headings */\n\n.jp-RenderedHTMLCommon h1,\n.jp-RenderedHTMLCommon h2,\n.jp-RenderedHTMLCommon h3,\n.jp-RenderedHTMLCommon h4,\n.jp-RenderedHTMLCommon h5,\n.jp-RenderedHTMLCommon h6 {\n  line-height: var(--jp-content-heading-line-height);\n  font-weight: var(--jp-content-heading-font-weight);\n  font-style: normal;\n  margin: var(--jp-content-heading-margin-top) 0\n    var(--jp-content-heading-margin-bottom) 0;\n}\n\n.jp-RenderedHTMLCommon h1:first-child,\n.jp-RenderedHTMLCommon h2:first-child,\n.jp-RenderedHTMLCommon h3:first-child,\n.jp-RenderedHTMLCommon h4:first-child,\n.jp-RenderedHTMLCommon h5:first-child,\n.jp-RenderedHTMLCommon h6:first-child {\n  margin-top: calc(0.5 * var(--jp-content-heading-margin-top));\n}\n\n.jp-RenderedHTMLCommon h1:last-child,\n.jp-RenderedHTMLCommon h2:last-child,\n.jp-RenderedHTMLCommon h3:last-child,\n.jp-RenderedHTMLCommon h4:last-child,\n.jp-RenderedHTMLCommon h5:last-child,\n.jp-RenderedHTMLCommon h6:last-child {\n  margin-bottom: calc(0.5 * var(--jp-content-heading-margin-bottom));\n}\n\n.jp-RenderedHTMLCommon h1 {\n  font-size: var(--jp-content-font-size5);\n}\n\n.jp-RenderedHTMLCommon h2 {\n  font-size: var(--jp-content-font-size4);\n}\n\n.jp-RenderedHTMLCommon h3 {\n  font-size: var(--jp-content-font-size3);\n}\n\n.jp-RenderedHTMLCommon h4 {\n  font-size: var(--jp-content-font-size2);\n}\n\n.jp-RenderedHTMLCommon h5 {\n  font-size: var(--jp-content-font-size1);\n}\n\n.jp-RenderedHTMLCommon h6 {\n  font-size: var(--jp-content-font-size0);\n}\n\n/* Lists */\n\n.jp-RenderedHTMLCommon ul:not(.list-inline),\n.jp-RenderedHTMLCommon ol:not(.list-inline) {\n  padding-left: 2em;\n}\n\n.jp-RenderedHTMLCommon ul {\n  list-style: disc;\n}\n\n.jp-RenderedHTMLCommon ul ul {\n  list-style: square;\n}\n\n.jp-RenderedHTMLCommon ul ul ul {\n  list-style: circle;\n}\n\n.jp-RenderedHTMLCommon ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol ol {\n  list-style: upper-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol {\n  list-style: lower-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol {\n  list-style: lower-roman;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol,\n.jp-RenderedHTMLCommon ul {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon ul ul,\n.jp-RenderedHTMLCommon ul ol,\n.jp-RenderedHTMLCommon ol ul,\n.jp-RenderedHTMLCommon ol ol {\n  margin-bottom: 0em;\n}\n\n.jp-RenderedHTMLCommon hr {\n  color: var(--jp-border-color2);\n  background-color: var(--jp-border-color1);\n  margin-top: 1em;\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon > pre {\n  margin: 1.5em 2em;\n}\n\n.jp-RenderedHTMLCommon pre,\n.jp-RenderedHTMLCommon code {\n  border: 0;\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  line-height: var(--jp-code-line-height);\n  padding: 0;\n  white-space: pre-wrap;\n}\n\n.jp-RenderedHTMLCommon :not(pre) > code {\n  background-color: var(--jp-layout-color2);\n  padding: 1px 5px;\n}\n\n/* Tables */\n\n.jp-RenderedHTMLCommon table {\n  border-collapse: collapse;\n  border-spacing: 0;\n  border: none;\n  color: var(--jp-ui-font-color1);\n  font-size: 12px;\n  table-layout: fixed;\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.jp-RenderedHTMLCommon thead {\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  vertical-align: bottom;\n}\n\n.jp-RenderedHTMLCommon td,\n.jp-RenderedHTMLCommon th,\n.jp-RenderedHTMLCommon tr {\n  vertical-align: middle;\n  padding: 0.5em 0.5em;\n  line-height: normal;\n  white-space: normal;\n  max-width: none;\n  border: none;\n}\n\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon td,\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon th {\n  max-width: none;\n}\n\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon td,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon th,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon tr {\n  text-align: right;\n}\n\n.jp-RenderedHTMLCommon th {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(odd) {\n  background: var(--jp-layout-color0);\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(even) {\n  background: var(--jp-rendermime-table-row-background);\n}\n\n.jp-RenderedHTMLCommon tbody tr:hover {\n  background: var(--jp-rendermime-table-row-hover-background);\n}\n\n.jp-RenderedHTMLCommon table {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon p {\n  text-align: left;\n  margin: 0px;\n}\n\n.jp-RenderedHTMLCommon p {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon img {\n  -moz-force-broken-image-icon: 1;\n}\n\n/* Restrict to direct children as other images could be nested in other content. */\n.jp-RenderedHTMLCommon > img {\n  display: block;\n  margin-left: 0;\n  margin-right: 0;\n  margin-bottom: 1em;\n}\n\n/* Change color behind transparent images if they need it... */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-light-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-dark-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n/* ...or leave it untouched if they don't */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-dark-background {\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-light-background {\n}\n\n.jp-RenderedHTMLCommon img,\n.jp-RenderedImage img,\n.jp-RenderedHTMLCommon svg,\n.jp-RenderedSVG svg {\n  max-width: 100%;\n  height: auto;\n}\n\n.jp-RenderedHTMLCommon img.jp-mod-unconfined,\n.jp-RenderedImage img.jp-mod-unconfined,\n.jp-RenderedHTMLCommon svg.jp-mod-unconfined,\n.jp-RenderedSVG svg.jp-mod-unconfined {\n  max-width: none;\n}\n\n.jp-RenderedHTMLCommon .alert {\n  padding: var(--jp-notebook-padding);\n  border: var(--jp-border-width) solid transparent;\n  border-radius: var(--jp-border-radius);\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon .alert-info {\n  color: var(--jp-info-color0);\n  background-color: var(--jp-info-color3);\n  border-color: var(--jp-info-color2);\n}\n.jp-RenderedHTMLCommon .alert-info hr {\n  border-color: var(--jp-info-color3);\n}\n.jp-RenderedHTMLCommon .alert-info > p:last-child,\n.jp-RenderedHTMLCommon .alert-info > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-warning {\n  color: var(--jp-warn-color0);\n  background-color: var(--jp-warn-color3);\n  border-color: var(--jp-warn-color2);\n}\n.jp-RenderedHTMLCommon .alert-warning hr {\n  border-color: var(--jp-warn-color3);\n}\n.jp-RenderedHTMLCommon .alert-warning > p:last-child,\n.jp-RenderedHTMLCommon .alert-warning > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-success {\n  color: var(--jp-success-color0);\n  background-color: var(--jp-success-color3);\n  border-color: var(--jp-success-color2);\n}\n.jp-RenderedHTMLCommon .alert-success hr {\n  border-color: var(--jp-success-color3);\n}\n.jp-RenderedHTMLCommon .alert-success > p:last-child,\n.jp-RenderedHTMLCommon .alert-success > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-danger {\n  color: var(--jp-error-color0);\n  background-color: var(--jp-error-color3);\n  border-color: var(--jp-error-color2);\n}\n.jp-RenderedHTMLCommon .alert-danger hr {\n  border-color: var(--jp-error-color3);\n}\n.jp-RenderedHTMLCommon .alert-danger > p:last-child,\n.jp-RenderedHTMLCommon .alert-danger > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon blockquote {\n  margin: 1em 2em;\n  padding: 0 1em;\n  border-left: 5px solid var(--jp-border-color2);\n}\n\na.jp-InternalAnchorLink {\n  visibility: hidden;\n  margin-left: 8px;\n  color: var(--md-blue-800);\n}\n\nh1:hover .jp-InternalAnchorLink,\nh2:hover .jp-InternalAnchorLink,\nh3:hover .jp-InternalAnchorLink,\nh4:hover .jp-InternalAnchorLink,\nh5:hover .jp-InternalAnchorLink,\nh6:hover .jp-InternalAnchorLink {\n  visibility: visible;\n}\n\n.jp-RenderedHTMLCommon kbd {\n  background-color: var(--jp-rendermime-table-row-background);\n  border: 1px solid var(--jp-border-color0);\n  border-bottom-color: var(--jp-border-color2);\n  border-radius: 3px;\n  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n  display: inline-block;\n  font-size: 0.8em;\n  line-height: 1em;\n  padding: 0.2em 0.5em;\n}\n\n/* Most direct children of .jp-RenderedHTMLCommon have a margin-bottom of 1.0.\n * At the bottom of cells this is a bit too much as there is also spacing\n * between cells. Going all the way to 0 gets too tight between markdown and\n * code cells.\n */\n.jp-RenderedHTMLCommon > *:last-child {\n  margin-bottom: 0.5em;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MimeDocument {\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-filebrowser-button-height: 28px;\n  --jp-private-filebrowser-button-width: 48px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser {\n  display: flex;\n  flex-direction: column;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  border-bottom: none;\n  height: auto;\n  margin: var(--jp-toolbar-header-margin);\n  box-shadow: none;\n}\n\n.jp-BreadCrumbs {\n  flex: 0 0 auto;\n  margin: 8px 12px 8px 12px;\n}\n\n.jp-BreadCrumbs-item {\n  margin: 0px 2px;\n  padding: 0px 2px;\n  border-radius: var(--jp-border-radius);\n  cursor: pointer;\n}\n\n.jp-BreadCrumbs-item:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-BreadCrumbs-item:first-child {\n  margin-left: 0px;\n}\n\n.jp-BreadCrumbs-item.jp-mod-dropTarget {\n  background-color: var(--jp-brand-color2);\n  opacity: 0.7;\n}\n\n/*-----------------------------------------------------------------------------\n| Buttons\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  padding: 0px;\n  margin: 8px 12px 0px 12px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  justify-content: flex-start;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-Toolbar-item {\n  flex: 0 0 auto;\n  padding-left: 0px;\n  padding-right: 2px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-ToolbarButtonComponent {\n  width: 40px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent {\n  width: 72px;\n  background: var(--jp-brand-color1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent:focus-visible {\n  background-color: var(--jp-brand-color0);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent\n  .jp-icon3 {\n  fill: white;\n}\n\n/*-----------------------------------------------------------------------------\n| Other styles\n|----------------------------------------------------------------------------*/\n\n.jp-FileDialog.jp-mod-conflict input {\n  color: var(--jp-error-color1);\n}\n\n.jp-FileDialog .jp-new-name-title {\n  margin-top: 12px;\n}\n\n.jp-LastModified-hidden {\n  display: none;\n}\n\n.jp-FileBrowser-filterBox {\n  padding: 0px;\n  flex: 0 0 auto;\n  margin: 8px 12px 0px 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| DirListing\n|----------------------------------------------------------------------------*/\n\n.jp-DirListing {\n  flex: 1 1 auto;\n  display: flex;\n  flex-direction: column;\n  outline: 0;\n}\n\n.jp-DirListing:focus-visible {\n  border: 1px solid var(--jp-brand-color1);\n}\n\n.jp-DirListing-header {\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n  border-top: var(--jp-border-width) solid var(--jp-border-color2);\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  z-index: 2;\n}\n\n.jp-DirListing-headerItem {\n  padding: 4px 12px 2px 12px;\n  font-weight: 500;\n}\n\n.jp-DirListing-headerItem:hover {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-headerItem.jp-id-name {\n  flex: 1 0 84px;\n}\n\n.jp-DirListing-headerItem.jp-id-modified {\n  flex: 0 0 112px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n}\n\n.jp-id-narrow {\n  display: none;\n  flex: 0 0 5px;\n  padding: 4px 4px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n  color: var(--jp-border-color2);\n}\n\n.jp-DirListing-narrow .jp-id-narrow {\n  display: block;\n}\n\n.jp-DirListing-narrow .jp-id-modified,\n.jp-DirListing-narrow .jp-DirListing-itemModified {\n  display: none;\n}\n\n.jp-DirListing-headerItem.jp-mod-selected {\n  font-weight: 600;\n}\n\n/* increase specificity to override bundled default */\n.jp-DirListing-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-DirListing-content mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.jp-DirListing-content .jp-DirListing-item.jp-mod-selected mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n/* Style the directory listing content when a user drops a file to upload */\n.jp-DirListing.jp-mod-native-drop .jp-DirListing-content {\n  outline: 5px dashed rgba(128, 128, 128, 0.5);\n  outline-offset: -10px;\n  cursor: copy;\n}\n\n.jp-DirListing-item {\n  display: flex;\n  flex-direction: row;\n  padding: 4px 12px;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n.jp-DirListing-item[data-is-dot] {\n  opacity: 75%;\n}\n\n.jp-DirListing-item.jp-mod-selected {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.jp-DirListing-item.jp-mod-dropTarget {\n  background: var(--jp-brand-color3);\n}\n\n.jp-DirListing-item:hover:not(.jp-mod-selected) {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-itemIcon {\n  flex: 0 0 20px;\n  margin-right: 4px;\n}\n\n.jp-DirListing-itemText {\n  flex: 1 0 64px;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  user-select: none;\n}\n\n.jp-DirListing-itemModified {\n  flex: 0 0 125px;\n  text-align: right;\n}\n\n.jp-DirListing-editor {\n  flex: 1 0 64px;\n  outline: none;\n  border: none;\n}\n\n.jp-DirListing-item.jp-mod-running .jp-DirListing-itemIcon:before {\n  color: var(--jp-success-color1);\n  content: '\\25CF';\n  font-size: 8px;\n  position: absolute;\n  left: -8px;\n}\n\n.jp-DirListing-item.jp-mod-running.jp-mod-selected\n  .jp-DirListing-itemIcon:before {\n  color: var(--jp-ui-inverse-font-color1);\n}\n\n.jp-DirListing-item.lm-mod-drag-image,\n.jp-DirListing-item.jp-mod-selected.lm-mod-drag-image {\n  font-size: var(--jp-ui-font-size1);\n  padding-left: 4px;\n  margin-left: 4px;\n  width: 160px;\n  background-color: var(--jp-ui-inverse-font-color2);\n  box-shadow: var(--jp-elevation-z2);\n  border-radius: 0px;\n  color: var(--jp-ui-font-color1);\n  transform: translateX(-40%) translateY(-58%);\n}\n\n.jp-DirListing-deadSpace {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-Document {\n  min-width: 120px;\n  min-height: 120px;\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n}\n\n/*-----------------------------------------------------------------------------\n| Main OutputArea\n| OutputArea has a list of Outputs\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea {\n  overflow-y: auto;\n}\n\n.jp-OutputArea-child {\n  display: flex;\n  flex-direction: row;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child {\n  flex-direction: column;\n}\n\n.jp-OutputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-outprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n.jp-OutputArea-output {\n  height: auto;\n  overflow: auto;\n  user-select: text;\n  -moz-user-select: text;\n  -webkit-user-select: text;\n  -ms-user-select: text;\n}\n\n.jp-OutputArea-child .jp-OutputArea-output {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  margin-left: var(--jp-notebook-padding);\n}\n\n/**\n * Isolated output.\n */\n.jp-OutputArea-output.jp-mod-isolated {\n  width: 100%;\n  display: block;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n/* pre */\n\n.jp-OutputArea-output pre {\n  border: none;\n  margin: 0px;\n  padding: 0px;\n  overflow-x: auto;\n  overflow-y: auto;\n  word-break: break-all;\n  word-wrap: break-word;\n  white-space: pre-wrap;\n}\n\n/* tables */\n\n.jp-OutputArea-output.jp-RenderedHTMLCommon table {\n  margin-left: 0;\n  margin-right: 0;\n}\n\n/* description lists */\n\n.jp-OutputArea-output dl,\n.jp-OutputArea-output dt,\n.jp-OutputArea-output dd {\n  display: block;\n}\n\n.jp-OutputArea-output dl {\n  width: 100%;\n  overflow: hidden;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dt {\n  font-weight: bold;\n  float: left;\n  width: 20%;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dd {\n  float: left;\n  width: 80%;\n  padding: 0;\n  margin: 0;\n}\n\n/* Hide the gutter in case of\n *  - nested output areas (e.g. in the case of output widgets)\n *  - mirrored output areas\n */\n.jp-OutputArea .jp-OutputArea .jp-OutputArea-prompt {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| executeResult is added to any Output-result for the display of the object\n| returned by a cell\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  margin-left: 0px;\n  flex: 1 1 auto;\n}\n\n/* Text output with the Out[] prompt needs a top padding to match the\n * alignment of the Out[] prompt itself.\n */\n.jp-OutputArea-executeResult .jp-RenderedText.jp-OutputArea-output {\n  padding-top: var(--jp-code-padding);\n  border-top: var(--jp-border-width) solid transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| The Stdin output\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-stdin {\n  line-height: var(--jp-code-line-height);\n  padding-top: var(--jp-code-padding);\n  display: flex;\n}\n\n.jp-Stdin-prompt {\n  color: var(--jp-content-font-color0);\n  padding-right: var(--jp-code-padding);\n  vertical-align: baseline;\n  flex: 0 0 auto;\n}\n\n.jp-Stdin-input {\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  color: inherit;\n  background-color: inherit;\n  width: 42%;\n  min-width: 200px;\n  /* make sure input baseline aligns with prompt */\n  vertical-align: baseline;\n  /* padding + margin = 0.5em between prompt and cursor */\n  padding: 0em 0.25em;\n  margin: 0em 0.25em;\n  flex: 0 0 70%;\n}\n\n.jp-Stdin-input:focus {\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Output Area View\n|----------------------------------------------------------------------------*/\n\n.jp-LinkedOutputView .jp-OutputArea {\n  height: 100%;\n  display: block;\n}\n\n.jp-LinkedOutputView .jp-OutputArea-output:only-child {\n  height: 100%;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapser {\n  flex: 0 0 var(--jp-cell-collapser-width);\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n  border-radius: var(--jp-border-radius);\n  opacity: 1;\n}\n\n.jp-Collapser-child {\n  display: block;\n  width: 100%;\n  box-sizing: border-box;\n  /* height: 100% doesn't work because the height of its parent is computed from content */\n  position: absolute;\n  top: 0px;\n  bottom: 0px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Header/Footer\n|----------------------------------------------------------------------------*/\n\n/* Hidden by zero height by default */\n.jp-CellHeader,\n.jp-CellFooter {\n  height: 0px;\n  width: 100%;\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Input\n|----------------------------------------------------------------------------*/\n\n/* All input areas */\n.jp-InputArea {\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n}\n\nbody[data-format='mobile'] .jp-InputArea {\n  flex-direction: column;\n}\n\n.jp-InputArea-editor {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  /* This is the non-active, default styling */\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  border-radius: 0px;\n  background: var(--jp-cell-editor-background);\n}\n\nbody[data-format='mobile'] .jp-InputArea-editor {\n  margin-left: var(--jp-notebook-padding);\n}\n\n.jp-InputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-inprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  opacity: var(--jp-cell-prompt-opacity);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-InputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Placeholder {\n  display: flex;\n  flex-direction: row;\n  flex: 1 1 auto;\n}\n\n.jp-Placeholder-prompt {\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content {\n  flex: 1 1 auto;\n  border: none;\n  background: transparent;\n  height: 20px;\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon {\n  width: 32px;\n  height: 16px;\n  border: 1px solid transparent;\n  border-radius: var(--jp-border-radius);\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon:hover {\n  border: 1px solid var(--jp-border-color1);\n  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);\n  background-color: var(--jp-layout-color0);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-cell-scrolling-output-offset: 5px;\n}\n\n/*-----------------------------------------------------------------------------\n| Cell\n|----------------------------------------------------------------------------*/\n\n.jp-Cell {\n  padding: var(--jp-cell-padding);\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Common input/output\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-inputWrapper,\n.jp-Cell-outputWrapper {\n  display: flex;\n  flex-direction: row;\n  padding: 0px;\n  margin: 0px;\n  /* Added to reveal the box-shadow on the input and output collapsers. */\n  overflow: visible;\n}\n\n/* Only input/output areas inside cells */\n.jp-Cell-inputArea,\n.jp-Cell-outputArea {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Collapser\n|----------------------------------------------------------------------------*/\n\n/* Make the output collapser disappear when there is not output, but do so\n * in a manner that leaves it in the layout and preserves its width.\n */\n.jp-Cell.jp-mod-noOutputs .jp-Cell-outputCollapser {\n  border: none !important;\n  background: transparent !important;\n}\n\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputCollapser {\n  min-height: var(--jp-cell-collapser-min-height);\n}\n\n/*-----------------------------------------------------------------------------\n| Output\n|----------------------------------------------------------------------------*/\n\n/* Put a space between input and output when there IS output */\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputWrapper {\n  margin-top: 5px;\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-Cell-outputArea {\n  overflow-y: auto;\n  max-height: 200px;\n  box-shadow: inset 0 0 6px 2px rgba(0, 0, 0, 0.3);\n  margin-left: var(--jp-private-cell-scrolling-output-offset);\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  flex: 0 0\n    calc(\n      var(--jp-cell-prompt-width) -\n        var(--jp-private-cell-scrolling-output-offset)\n    );\n}\n\n/*-----------------------------------------------------------------------------\n| CodeCell\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| MarkdownCell\n|----------------------------------------------------------------------------*/\n\n.jp-MarkdownOutput {\n  flex: 1 1 auto;\n  margin-top: 0;\n  margin-bottom: 0;\n  padding-left: var(--jp-code-padding);\n}\n\n.jp-MarkdownOutput.jp-RenderedHTMLCommon {\n  overflow: auto;\n}\n\n.jp-showHiddenCellsButton {\n  margin-left: calc(var(--jp-cell-prompt-width) + 2 * var(--jp-code-padding));\n  margin-top: var(--jp-code-padding);\n  border: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-border-color3) !important;\n  color: var(--jp-content-font-color0) !important;\n}\n\n.jp-showHiddenCellsButton:hover {\n  background-color: var(--jp-border-color2) !important;\n}\n\n.jp-collapseHeadingButton {\n  display: none;\n}\n\n.jp-MarkdownCell:hover .jp-collapseHeadingButton {\n  display: flex;\n  min-height: var(--jp-cell-collapser-min-height);\n  position: absolute;\n  right: 0;\n  top: 0;\n  bottom: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n\n/*-----------------------------------------------------------------------------\n| Styles\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel-toolbar {\n  padding: 2px;\n}\n\n.jp-Toolbar-item.jp-Notebook-toolbarCellType .jp-select-wrapper.jp-mod-focused {\n  border: none;\n  box-shadow: none;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown select {\n  height: 24px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: 14px;\n  border-radius: 0;\n  display: block;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown span {\n  top: 5px !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-notebook-dragImage-width: 304px;\n  --jp-private-notebook-dragImage-height: 36px;\n  --jp-private-notebook-selected-color: var(--md-blue-400);\n  --jp-private-notebook-active-color: var(--md-green-400);\n}\n\n/*-----------------------------------------------------------------------------\n| Imports\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Notebook\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel {\n  display: block;\n  height: 100%;\n}\n\n.jp-NotebookPanel.jp-Document {\n  min-width: 240px;\n  min-height: 120px;\n}\n\n.jp-Notebook {\n  padding: var(--jp-notebook-padding);\n  outline: none;\n  overflow: auto;\n  background: var(--jp-layout-color0);\n}\n\n.jp-Notebook.jp-mod-scrollPastEnd::after {\n  display: block;\n  content: '';\n  min-height: var(--jp-notebook-scroll-padding);\n}\n\n.jp-MainAreaWidget-ContainStrict .jp-Notebook * {\n  contain: strict;\n}\n\n.jp-Notebook-render * {\n  contain: none !important;\n}\n\n.jp-Notebook .jp-Cell {\n  overflow: visible;\n}\n\n.jp-Notebook .jp-Cell .jp-InputPrompt {\n  cursor: move;\n  float: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook state related styling\n|\n| The notebook and cells each have states, here are the possibilities:\n|\n| - Notebook\n|   - Command\n|   - Edit\n| - Cell\n|   - None\n|   - Active (only one can be active)\n|   - Selected (the cells actions are applied to)\n|   - Multiselected (when multiple selected, the cursor)\n|   - No outputs\n|----------------------------------------------------------------------------*/\n\n/* Command or edit modes */\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-InputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-OutputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n/* cell is active */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser {\n  background: var(--jp-brand-color1);\n}\n\n/* cell is dirty */\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt {\n  color: var(--jp-warn-color1);\n}\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt:before {\n  color: var(--jp-warn-color1);\n  content: '•';\n}\n\n.jp-Notebook .jp-Cell.jp-mod-active.jp-mod-dirty .jp-Collapser {\n  background: var(--jp-warn-color1);\n}\n\n/* collapser is hovered */\n.jp-Notebook .jp-Cell .jp-Collapser:hover {\n  box-shadow: var(--jp-elevation-z2);\n  background: var(--jp-brand-color1);\n  opacity: var(--jp-cell-collapser-not-active-hover-opacity);\n}\n\n/* cell is active and collapser is hovered */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser:hover {\n  background: var(--jp-brand-color0);\n  opacity: 1;\n}\n\n/* Command mode */\n\n.jp-Notebook.jp-mod-commandMode .jp-Cell.jp-mod-selected {\n  background: var(--jp-notebook-multiselected-color);\n}\n\n.jp-Notebook.jp-mod-commandMode\n  .jp-Cell.jp-mod-active.jp-mod-selected:not(.jp-mod-multiSelected) {\n  background: transparent;\n}\n\n/* Edit mode */\n\n.jp-Notebook.jp-mod-editMode .jp-Cell.jp-mod-active .jp-InputArea-editor {\n  border: var(--jp-border-width) solid var(--jp-cell-editor-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-cell-editor-active-background);\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook drag and drop\n|----------------------------------------------------------------------------*/\n\n.jp-Notebook-cell.jp-mod-dropSource {\n  opacity: 0.5;\n}\n\n.jp-Notebook-cell.jp-mod-dropTarget,\n.jp-Notebook.jp-mod-commandMode\n  .jp-Notebook-cell.jp-mod-active.jp-mod-selected.jp-mod-dropTarget {\n  border-top-color: var(--jp-private-notebook-selected-color);\n  border-top-style: solid;\n  border-top-width: 2px;\n}\n\n.jp-dragImage {\n  display: block;\n  flex-direction: row;\n  width: var(--jp-private-notebook-dragImage-width);\n  height: var(--jp-private-notebook-dragImage-height);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background);\n  overflow: visible;\n}\n\n.jp-dragImage-singlePrompt {\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n.jp-dragImage .jp-dragImage-content {\n  flex: 1 1 auto;\n  z-index: 2;\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  line-height: var(--jp-code-line-height);\n  padding: var(--jp-code-padding);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background-color);\n  color: var(--jp-content-font-color3);\n  text-align: left;\n  margin: 4px 4px 4px 0px;\n}\n\n.jp-dragImage .jp-dragImage-prompt {\n  flex: 0 0 auto;\n  min-width: 36px;\n  color: var(--jp-cell-inprompt-font-color);\n  padding: var(--jp-code-padding);\n  padding-left: 12px;\n  font-family: var(--jp-cell-prompt-font-family);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: 1.9;\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n}\n\n.jp-dragImage-multipleBack {\n  z-index: -1;\n  position: absolute;\n  height: 32px;\n  width: 300px;\n  top: 8px;\n  left: 8px;\n  background: var(--jp-layout-color2);\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n/*-----------------------------------------------------------------------------\n| Cell toolbar\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookTools {\n  display: block;\n  min-width: var(--jp-sidebar-min-width);\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n    * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  overflow: auto;\n}\n\n.jp-NotebookTools-tool {\n  padding: 0px 12px 0 12px;\n}\n\n.jp-ActiveCellTool {\n  padding: 12px;\n  background-color: var(--jp-layout-color1);\n  border-top: none !important;\n}\n\n.jp-ActiveCellTool .jp-InputArea-prompt {\n  flex: 0 0 auto;\n  padding-left: 0px;\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor {\n  flex: 1 1 auto;\n  background: var(--jp-cell-editor-background);\n  border-color: var(--jp-cell-editor-border-color);\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor .CodeMirror {\n  background: transparent;\n}\n\n.jp-MetadataEditorTool {\n  flex-direction: column;\n  padding: 12px 0px 12px 0px;\n}\n\n.jp-RankedPanel > :not(:first-child) {\n  margin-top: 12px;\n}\n\n.jp-KeySelector select.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n}\n\n.jp-KeySelector label,\n.jp-MetadataEditorTool label {\n  line-height: 1.4;\n}\n\n.jp-NotebookTools .jp-select-wrapper {\n  margin-top: 4px;\n  margin-bottom: 0px;\n}\n\n.jp-NotebookTools .jp-Collapse {\n  margin-top: 16px;\n}\n\n/*-----------------------------------------------------------------------------\n| Presentation Mode (.jp-mod-presentationMode)\n|----------------------------------------------------------------------------*/\n\n.jp-mod-presentationMode .jp-Notebook {\n  --jp-content-font-size1: var(--jp-content-presentation-font-size1);\n  --jp-code-font-size: var(--jp-code-presentation-font-size);\n}\n\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-InputPrompt,\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-OutputPrompt {\n  flex: 0 0 110px;\n}\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-Placeholder {\n  padding-left: 55px;\n}\n\n.jp-Cell-Placeholder-wrapper {\n  background: #fff;\n  border: 1px solid;\n  border-color: #e5e6e9 #dfe0e4 #d0d1d5;\n  border-radius: 4px;\n  -webkit-border-radius: 4px;\n  margin: 10px 15px;\n}\n\n.jp-Cell-Placeholder-wrapper-inner {\n  padding: 15px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body {\n  background-repeat: repeat;\n  background-size: 50% auto;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  background: #f6f7f8;\n  background-image: -webkit-linear-gradient(\n    left,\n    #f6f7f8 0%,\n    #edeef1 20%,\n    #f6f7f8 40%,\n    #f6f7f8 100%\n  );\n  background-repeat: no-repeat;\n  background-size: 800px 104px;\n  height: 104px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  position: absolute;\n  right: 15px;\n  left: 15px;\n  top: 15px;\n}\n\ndiv.jp-Cell-Placeholder-h1 {\n  top: 20px;\n  height: 20px;\n  left: 15px;\n  width: 150px;\n}\n\ndiv.jp-Cell-Placeholder-h2 {\n  left: 15px;\n  top: 50px;\n  height: 10px;\n  width: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-1,\ndiv.jp-Cell-Placeholder-content-2,\ndiv.jp-Cell-Placeholder-content-3 {\n  left: 15px;\n  right: 15px;\n  height: 10px;\n}\n\ndiv.jp-Cell-Placeholder-content-1 {\n  top: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-2 {\n  top: 120px;\n}\n\ndiv.jp-Cell-Placeholder-content-3 {\n  top: 140px;\n}\n\n</style>\n\n    <style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\nThe following CSS variables define the main, public API for styling JupyterLab.\nThese variables should be used by all plugins wherever possible. In other\nwords, plugins should not define custom colors, sizes, etc unless absolutely\nnecessary. This enables users to change the visual theme of JupyterLab\nby changing these variables.\n\nMany variables appear in an ordered sequence (0,1,2,3). These sequences\nare designed to work well together, so for example, `--jp-border-color1` should\nbe used with `--jp-layout-color1`. The numbers have the following meanings:\n\n* 0: super-primary, reserved for special emphasis\n* 1: primary, most important under normal situations\n* 2: secondary, next most important under normal situations\n* 3: tertiary, next most important under normal situations\n\nThroughout JupyterLab, we are mostly following principles from Google's\nMaterial Design when selecting colors. We are not, however, following\nall of MD as it is not optimized for dense, information rich UIs.\n*/\n\n:root {\n  /* Elevation\n   *\n   * We style box-shadows using Material Design's idea of elevation. These particular numbers are taken from here:\n   *\n   * https://github.com/material-components/material-components-web\n   * https://material-components-web.appspot.com/elevation.html\n   */\n\n  --jp-shadow-base-lightness: 0;\n  --jp-shadow-umbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.2\n  );\n  --jp-shadow-penumbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.14\n  );\n  --jp-shadow-ambient-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.12\n  );\n  --jp-elevation-z0: none;\n  --jp-elevation-z1: 0px 2px 1px -1px var(--jp-shadow-umbra-color),\n    0px 1px 1px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 3px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z2: 0px 3px 1px -2px var(--jp-shadow-umbra-color),\n    0px 2px 2px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 5px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z4: 0px 2px 4px -1px var(--jp-shadow-umbra-color),\n    0px 4px 5px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 10px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z6: 0px 3px 5px -1px var(--jp-shadow-umbra-color),\n    0px 6px 10px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 18px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z8: 0px 5px 5px -3px var(--jp-shadow-umbra-color),\n    0px 8px 10px 1px var(--jp-shadow-penumbra-color),\n    0px 3px 14px 2px var(--jp-shadow-ambient-color);\n  --jp-elevation-z12: 0px 7px 8px -4px var(--jp-shadow-umbra-color),\n    0px 12px 17px 2px var(--jp-shadow-penumbra-color),\n    0px 5px 22px 4px var(--jp-shadow-ambient-color);\n  --jp-elevation-z16: 0px 8px 10px -5px var(--jp-shadow-umbra-color),\n    0px 16px 24px 2px var(--jp-shadow-penumbra-color),\n    0px 6px 30px 5px var(--jp-shadow-ambient-color);\n  --jp-elevation-z20: 0px 10px 13px -6px var(--jp-shadow-umbra-color),\n    0px 20px 31px 3px var(--jp-shadow-penumbra-color),\n    0px 8px 38px 7px var(--jp-shadow-ambient-color);\n  --jp-elevation-z24: 0px 11px 15px -7px var(--jp-shadow-umbra-color),\n    0px 24px 38px 3px var(--jp-shadow-penumbra-color),\n    0px 9px 46px 8px var(--jp-shadow-ambient-color);\n\n  /* Borders\n   *\n   * The following variables, specify the visual styling of borders in JupyterLab.\n   */\n\n  --jp-border-width: 1px;\n  --jp-border-color0: var(--md-grey-400);\n  --jp-border-color1: var(--md-grey-400);\n  --jp-border-color2: var(--md-grey-300);\n  --jp-border-color3: var(--md-grey-200);\n  --jp-border-radius: 2px;\n\n  /* UI Fonts\n   *\n   * The UI font CSS variables are used for the typography all of the JupyterLab\n   * user interface elements that are not directly user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-ui-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-ui-font-scale-factor: 1.2;\n  --jp-ui-font-size0: 0.83333em;\n  --jp-ui-font-size1: 13px; /* Base font size */\n  --jp-ui-font-size2: 1.2em;\n  --jp-ui-font-size3: 1.44em;\n\n  --jp-ui-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica,\n    Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';\n\n  /*\n   * Use these font colors against the corresponding main layout colors.\n   * In a light theme, these go from dark to light.\n   */\n\n  /* Defaults use Material Design specification */\n  --jp-ui-font-color0: rgba(0, 0, 0, 1);\n  --jp-ui-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-ui-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-ui-font-color3: rgba(0, 0, 0, 0.38);\n\n  /*\n   * Use these against the brand/accent/warn/error colors.\n   * These will typically go from light to darker, in both a dark and light theme.\n   */\n\n  --jp-ui-inverse-font-color0: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color1: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color2: rgba(255, 255, 255, 0.7);\n  --jp-ui-inverse-font-color3: rgba(255, 255, 255, 0.5);\n\n  /* Content Fonts\n   *\n   * Content font variables are used for typography of user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-content-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-content-line-height: 1.6;\n  --jp-content-font-scale-factor: 1.2;\n  --jp-content-font-size0: 0.83333em;\n  --jp-content-font-size1: 14px; /* Base font size */\n  --jp-content-font-size2: 1.2em;\n  --jp-content-font-size3: 1.44em;\n  --jp-content-font-size4: 1.728em;\n  --jp-content-font-size5: 2.0736em;\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-content-presentation-font-size1: 17px;\n\n  --jp-content-heading-line-height: 1;\n  --jp-content-heading-margin-top: 1.2em;\n  --jp-content-heading-margin-bottom: 0.8em;\n  --jp-content-heading-font-weight: 500;\n\n  /* Defaults use Material Design specification */\n  --jp-content-font-color0: rgba(0, 0, 0, 1);\n  --jp-content-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-content-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-content-font-color3: rgba(0, 0, 0, 0.38);\n\n  --jp-content-link-color: var(--md-blue-700);\n\n  --jp-content-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',\n    Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',\n    'Segoe UI Symbol';\n\n  /*\n   * Code Fonts\n   *\n   * Code font variables are used for typography of code and other monospaces content.\n   */\n\n  --jp-code-font-size: 13px;\n  --jp-code-line-height: 1.3077; /* 17px for 13px base */\n  --jp-code-padding: 5px; /* 5px for 13px base, codemirror highlighting needs integer px value */\n  --jp-code-font-family-default: Menlo, Consolas, 'DejaVu Sans Mono', monospace;\n  --jp-code-font-family: var(--jp-code-font-family-default);\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-code-presentation-font-size: 16px;\n\n  /* may need to tweak cursor width if you change font size */\n  --jp-code-cursor-width0: 1.4px;\n  --jp-code-cursor-width1: 2px;\n  --jp-code-cursor-width2: 4px;\n\n  /* Layout\n   *\n   * The following are the main layout colors use in JupyterLab. In a light\n   * theme these would go from light to dark.\n   */\n\n  --jp-layout-color0: white;\n  --jp-layout-color1: white;\n  --jp-layout-color2: var(--md-grey-200);\n  --jp-layout-color3: var(--md-grey-400);\n  --jp-layout-color4: var(--md-grey-600);\n\n  /* Inverse Layout\n   *\n   * The following are the inverse layout colors use in JupyterLab. In a light\n   * theme these would go from dark to light.\n   */\n\n  --jp-inverse-layout-color0: #111111;\n  --jp-inverse-layout-color1: var(--md-grey-900);\n  --jp-inverse-layout-color2: var(--md-grey-800);\n  --jp-inverse-layout-color3: var(--md-grey-700);\n  --jp-inverse-layout-color4: var(--md-grey-600);\n\n  /* Brand/accent */\n\n  --jp-brand-color0: var(--md-blue-900);\n  --jp-brand-color1: var(--md-blue-700);\n  --jp-brand-color2: var(--md-blue-300);\n  --jp-brand-color3: var(--md-blue-100);\n  --jp-brand-color4: var(--md-blue-50);\n\n  --jp-accent-color0: var(--md-green-900);\n  --jp-accent-color1: var(--md-green-700);\n  --jp-accent-color2: var(--md-green-300);\n  --jp-accent-color3: var(--md-green-100);\n\n  /* State colors (warn, error, success, info) */\n\n  --jp-warn-color0: var(--md-orange-900);\n  --jp-warn-color1: var(--md-orange-700);\n  --jp-warn-color2: var(--md-orange-300);\n  --jp-warn-color3: var(--md-orange-100);\n\n  --jp-error-color0: var(--md-red-900);\n  --jp-error-color1: var(--md-red-700);\n  --jp-error-color2: var(--md-red-300);\n  --jp-error-color3: var(--md-red-100);\n\n  --jp-success-color0: var(--md-green-900);\n  --jp-success-color1: var(--md-green-700);\n  --jp-success-color2: var(--md-green-300);\n  --jp-success-color3: var(--md-green-100);\n\n  --jp-info-color0: var(--md-cyan-900);\n  --jp-info-color1: var(--md-cyan-700);\n  --jp-info-color2: var(--md-cyan-300);\n  --jp-info-color3: var(--md-cyan-100);\n\n  /* Cell specific styles */\n\n  --jp-cell-padding: 5px;\n\n  --jp-cell-collapser-width: 8px;\n  --jp-cell-collapser-min-height: 20px;\n  --jp-cell-collapser-not-active-hover-opacity: 0.6;\n\n  --jp-cell-editor-background: var(--md-grey-100);\n  --jp-cell-editor-border-color: var(--md-grey-300);\n  --jp-cell-editor-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-cell-editor-active-background: var(--jp-layout-color0);\n  --jp-cell-editor-active-border-color: var(--jp-brand-color1);\n\n  --jp-cell-prompt-width: 64px;\n  --jp-cell-prompt-font-family: var(--jp-code-font-family-default);\n  --jp-cell-prompt-letter-spacing: 0px;\n  --jp-cell-prompt-opacity: 1;\n  --jp-cell-prompt-not-active-opacity: 0.5;\n  --jp-cell-prompt-not-active-font-color: var(--md-grey-700);\n  /* A custom blend of MD grey and blue 600\n   * See https://meyerweb.com/eric/tools/color-blend/#546E7A:1E88E5:5:hex */\n  --jp-cell-inprompt-font-color: #307fc1;\n  /* A custom blend of MD grey and orange 600\n   * https://meyerweb.com/eric/tools/color-blend/#546E7A:F4511E:5:hex */\n  --jp-cell-outprompt-font-color: #bf5b3d;\n\n  /* Notebook specific styles */\n\n  --jp-notebook-padding: 10px;\n  --jp-notebook-select-background: var(--jp-layout-color1);\n  --jp-notebook-multiselected-color: var(--md-blue-50);\n\n  /* The scroll padding is calculated to fill enough space at the bottom of the\n  notebook to show one single-line cell (with appropriate padding) at the top\n  when the notebook is scrolled all the way to the bottom. We also subtract one\n  pixel so that no scrollbar appears if we have just one single-line cell in the\n  notebook. This padding is to enable a 'scroll past end' feature in a notebook.\n  */\n  --jp-notebook-scroll-padding: calc(\n    100% - var(--jp-code-font-size) * var(--jp-code-line-height) -\n      var(--jp-code-padding) - var(--jp-cell-padding) - 1px\n  );\n\n  /* Rendermime styles */\n\n  --jp-rendermime-error-background: #fdd;\n  --jp-rendermime-table-row-background: var(--md-grey-100);\n  --jp-rendermime-table-row-hover-background: var(--md-light-blue-50);\n\n  /* Dialog specific styles */\n\n  --jp-dialog-background: rgba(0, 0, 0, 0.25);\n\n  /* Console specific styles */\n\n  --jp-console-padding: 10px;\n\n  /* Toolbar specific styles */\n\n  --jp-toolbar-border-color: var(--jp-border-color1);\n  --jp-toolbar-micro-height: 8px;\n  --jp-toolbar-background: var(--jp-layout-color1);\n  --jp-toolbar-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.24);\n  --jp-toolbar-header-margin: 4px 4px 0px 4px;\n  --jp-toolbar-active-background: var(--md-grey-300);\n\n  /* Statusbar specific styles */\n\n  --jp-statusbar-height: 24px;\n\n  /* Input field styles */\n\n  --jp-input-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-input-active-background: var(--jp-layout-color1);\n  --jp-input-hover-background: var(--jp-layout-color1);\n  --jp-input-background: var(--md-grey-100);\n  --jp-input-border-color: var(--jp-border-color1);\n  --jp-input-active-border-color: var(--jp-brand-color1);\n  --jp-input-active-box-shadow-color: rgba(19, 124, 189, 0.3);\n\n  /* General editor styles */\n\n  --jp-editor-selected-background: #d9d9d9;\n  --jp-editor-selected-focused-background: #d7d4f0;\n  --jp-editor-cursor-color: var(--jp-ui-font-color0);\n\n  /* Code mirror specific styles */\n\n  --jp-mirror-editor-keyword-color: #008000;\n  --jp-mirror-editor-atom-color: #88f;\n  --jp-mirror-editor-number-color: #080;\n  --jp-mirror-editor-def-color: #00f;\n  --jp-mirror-editor-variable-color: var(--md-grey-900);\n  --jp-mirror-editor-variable-2-color: #05a;\n  --jp-mirror-editor-variable-3-color: #085;\n  --jp-mirror-editor-punctuation-color: #05a;\n  --jp-mirror-editor-property-color: #05a;\n  --jp-mirror-editor-operator-color: #aa22ff;\n  --jp-mirror-editor-comment-color: #408080;\n  --jp-mirror-editor-string-color: #ba2121;\n  --jp-mirror-editor-string-2-color: #708;\n  --jp-mirror-editor-meta-color: #aa22ff;\n  --jp-mirror-editor-qualifier-color: #555;\n  --jp-mirror-editor-builtin-color: #008000;\n  --jp-mirror-editor-bracket-color: #997;\n  --jp-mirror-editor-tag-color: #170;\n  --jp-mirror-editor-attribute-color: #00c;\n  --jp-mirror-editor-header-color: blue;\n  --jp-mirror-editor-quote-color: #090;\n  --jp-mirror-editor-link-color: #00c;\n  --jp-mirror-editor-error-color: #f00;\n  --jp-mirror-editor-hr-color: #999;\n\n  /* Vega extension styles */\n\n  --jp-vega-background: white;\n\n  /* Sidebar-related styles */\n\n  --jp-sidebar-min-width: 250px;\n\n  /* Search-related styles */\n\n  --jp-search-toggle-off-opacity: 0.5;\n  --jp-search-toggle-hover-opacity: 0.8;\n  --jp-search-toggle-on-opacity: 1;\n  --jp-search-selected-match-background-color: rgb(245, 200, 0);\n  --jp-search-selected-match-color: black;\n  --jp-search-unselected-match-background-color: var(\n    --jp-inverse-layout-color0\n  );\n  --jp-search-unselected-match-color: var(--jp-ui-inverse-font-color0);\n\n  /* Icon colors that work well with light or dark backgrounds */\n  --jp-icon-contrast-color0: var(--md-purple-600);\n  --jp-icon-contrast-color1: var(--md-green-600);\n  --jp-icon-contrast-color2: var(--md-pink-600);\n  --jp-icon-contrast-color3: var(--md-blue-600);\n}\n</style>\n\n<style type=\"text/css\">\n/* Force rendering true colors when outputing to pdf */\n* {\n  -webkit-print-color-adjust: exact;\n}\n\n/* Misc */\na.anchor-link {\n  display: none;\n}\n\n/* Input area styling */\n.jp-InputArea {\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  overflow: hidden;\n}\n\n.CodeMirror.cm-s-jupyter .highlight pre {\n/* weird, but --jp-code-padding defined to be 5px but 4px horizontal padding is hardcoded for pre.CodeMirror-line */\n  padding: var(--jp-code-padding) 4px;\n  margin: 0;\n\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit;\n  color: inherit;\n\n}\n\n.jp-OutputArea-output pre {\n  line-height: inherit;\n  font-family: inherit;\n}\n\n.jp-RenderedText pre {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-code-font-size);\n}\n\n/* Using table instead of flexbox so that we can use break-inside property */\n/* CSS rules under this comment should not be required anymore after we move to the JupyterLab 4.0 CSS */\n\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  min-width: calc(\n    var(--jp-cell-prompt-width) - var(--jp-private-cell-scrolling-output-offset)\n  );\n}\n\n.jp-OutputArea-child {\n  display: table;\n  width: 100%;\n}\n\n.jp-OutputPrompt {\n  display: table-cell;\n  vertical-align: top;\n  min-width: var(--jp-cell-prompt-width);\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  display: table-row;\n}\n\n.jp-OutputArea-output {\n  display: table-cell;\n  width: 100%;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  display: table-row;\n}\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  width: 100%;\n}\n\n/* Hiding the collapser by default */\n.jp-Collapser {\n  display: none;\n}\n\n@page {\n    margin: 0.5in; /* Margin for each printed piece of paper */\n}\n\n@media print {\n  .jp-Cell-inputWrapper,\n  .jp-Cell-outputWrapper {\n    display: block;\n  }\n\n  .jp-OutputArea-child {\n    break-inside: avoid-page;\n  }\n}\n</style>\n\n<!-- Load mathjax -->\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/latest.js?config=TeX-AMS_CHTML-full,Safe\"> </script>\n    <!-- MathJax configuration -->\n    <script type=\"text/x-mathjax-config\">\n    init_mathjax = function() {\n        if (window.MathJax) {\n        // MathJax loaded\n            MathJax.Hub.Config({\n                TeX: {\n                    equationNumbers: {\n                    autoNumber: \"AMS\",\n                    useLabelIds: true\n                    }\n                },\n                tex2jax: {\n                    inlineMath: [ ['$','$'], [\"\\\\(\",\"\\\\)\"] ],\n                    displayMath: [ ['$$','$$'], [\"\\\\[\",\"\\\\]\"] ],\n                    processEscapes: true,\n                    processEnvironments: true\n                },\n                displayAlign: 'center',\n                CommonHTML: {\n                    linebreaks: {\n                    automatic: true\n                    }\n                }\n            });\n\n            MathJax.Hub.Queue([\"Typeset\", MathJax.Hub]);\n        }\n    }\n    init_mathjax();\n    </script>\n    <!-- End of mathjax configuration --></head>\n<body class=\"jp-Notebook\" data-jp-theme-light=\"true\" data-jp-theme-name=\"JupyterLab Light\">\n\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Lenses-and-probability\">Lenses and probability<a class=\"anchor-link\" href=\"#Lenses-and-probability\">&#182;</a></h1>\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[1]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">BlockArguments</span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">LambdaCase</span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">OverloadedStrings</span>\n\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Aeson.Lens</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Lens</span><span class=\"w\"> </span><span class=\"k\">hiding</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">nth</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">#</span><span class=\"p\">))</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Aeson</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Maybe</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">fromMaybe</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Class</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Sampler.Strict</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Weighted</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Monoid</span><span class=\"w\"> </span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Data.ByteString.Lazy</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">B</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Text.Pretty.Simple</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Data.Text</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">T</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>Lenses are <em>getters</em> and <em>setters</em>, i.e. ways of extracting a value from inside a data structure or updating that value.</p>\n<p>Because of their type in the Haskell <code>lens</code> library, namely <code>forall f. (a -&gt; f b) -&gt; (c -&gt; f d)</code>, we can specialize <code>f</code> to <code>MonadDistribution m =&gt; m</code>, and so use any lens to <strong>probabilistically update</strong> a data structure's elements in complex ways.</p>\n<p>As an example of how easy and extensible this, we provide some examples using lenses to manipulate a JSON file. This relies on the <code>aeson</code> and <code>lens-aeson</code> packages.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[2]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">json</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">fromMaybe</span><span class=\"w\"> </span><span class=\"n\">undefined</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">decode</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"kt\">B</span><span class=\"o\">.</span><span class=\"n\">readFile</span><span class=\"w\"> </span><span class=\"s\">&quot;../file.json&quot;</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">IO</span><span class=\"w\"> </span><span class=\"kt\">Value</span>\n\n<span class=\"nf\">pPrintCustom</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">pPrintOpt</span><span class=\"w\"> </span><span class=\"kt\">CheckColorTty</span><span class=\"w\"> </span><span class=\"n\">defaultOutputOptionsNoColor</span><span class=\"w\"> </span><span class=\"p\">{</span><span class=\"n\">outputOptionsCompact</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">True</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">outputOptionsIndentAmount</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"p\">}</span><span class=\"w\"> </span>\n<span class=\"nf\">pPrintCustom</span><span class=\"w\"> </span><span class=\"n\">json</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n<div class=\"jp-OutputArea-child\">\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>Object\n  ( fromList\n    [\n      ( &#34;address&#34;\n      , Object\n        ( fromList\n          [ ( &#34;id&#34;, Number 5.4 ), ( &#34;streetAddress&#34;, String &#34;21 2nd Street&#34; ) ]\n        )\n      )\n    ,\n      ( &#34;age&#34;, Number 27.0 )\n    ,\n      ( &#34;height&#34;, Number 1.5 )\n    ,\n      ( &#34;isAlive&#34;, Bool True )\n    ,\n      ( &#34;name&#34;, String &#34;John&#34; )\n    ]\n  )</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>For example, if I have a function that randomly flips a boolean or a function that puts noise into a string, like</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[3]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">randomlyFlip</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">Bool</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"kt\">Bool</span>\n<span class=\"nf\">randomlyFlip</span><span class=\"w\"> </span><span class=\"kt\">True</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">bernoulli</span><span class=\"w\"> </span><span class=\"mf\">0.01</span>\n<span class=\"nf\">randomlyFlip</span><span class=\"w\"> </span><span class=\"kt\">False</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">bernoulli</span><span class=\"w\"> </span><span class=\"mf\">0.9</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[4]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">noisifyString</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"kt\">Text</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"kt\">Text</span>\n<span class=\"nf\">noisifyString</span><span class=\"w\"> </span><span class=\"n\">t</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">forM</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">unpack</span><span class=\"w\"> </span><span class=\"n\">t</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"nf\">\\</span><span class=\"n\">letter</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kr\">do</span>\n<span class=\"w\">    </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">bernoulli</span><span class=\"w\"> </span><span class=\"mf\">0.2</span>\n<span class=\"w\">    </span><span class=\"kr\">if</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"kr\">then</span><span class=\"w\"> </span><span class=\"n\">uniformD</span><span class=\"w\"> </span><span class=\"s\">&quot;abcdefghijklmnopqrstuvwxyz&quot;</span><span class=\"w\"> </span><span class=\"kr\">else</span><span class=\"w\"> </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"n\">letter</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>then I can use it to update the &quot;isAlive&quot; value as follows, using the lens <code>(_Object . traverse . _Bool)</code> which points to the json object's list of element's boolean element:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[5]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">pPrintCustom</span><span class=\"w\"> </span><span class=\"o\">=&lt;&lt;</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"p\">((</span><span class=\"n\">_Object</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">traverse</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">_Bool</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">randomlyFlip</span><span class=\"w\"> </span><span class=\"n\">json</span><span class=\"p\">)</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n<div class=\"jp-OutputArea-child\">\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>Object\n  ( fromList\n    [\n      ( &#34;address&#34;\n      , Object\n        ( fromList\n          [ ( &#34;id&#34;, Number 5.4 ), ( &#34;streetAddress&#34;, String &#34;21 2nd Street&#34; ) ]\n        )\n      )\n    ,\n      ( &#34;age&#34;, Number 27.0 )\n    ,\n      ( &#34;height&#34;, Number 1.5 )\n    ,\n      ( &#34;isAlive&#34;, Bool False )\n    ,\n      ( &#34;name&#34;, String &#34;John&#34; )\n    ]\n  )</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>Using the <code>Plated</code> instance of json values, I can do more powerful operations, like updating all doubles, bools and strings at arbitrarily nested positions in the json</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[6]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">jsonDist</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Distribution</span><span class=\"w\"> </span><span class=\"kt\">Value</span>\n<span class=\"nf\">jsonDist</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"p\">((</span><span class=\"n\">transformM</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">_Double</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"kr\">case</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"mf\">0.001</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&gt;=&gt;</span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"n\">transformM</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">_Bool</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">randomlyFlip</span><span class=\"w\"> </span><span class=\"o\">&gt;=&gt;</span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"n\">transformM</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">_String</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">noisifyString</span>\n<span class=\"w\">    </span><span class=\"p\">)</span>\n<span class=\"w\">    </span><span class=\"n\">json</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[7]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">pPrintCustom</span><span class=\"w\"> </span><span class=\"o\">=&lt;&lt;</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">unweighted</span><span class=\"w\"> </span><span class=\"n\">jsonDist</span><span class=\"p\">)</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n<div class=\"jp-OutputArea-child\">\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>Object\n  ( fromList\n    [\n      ( &#34;address&#34;\n      , Object\n        ( fromList\n          [\n            ( &#34;id&#34;, Number 5.398324403347256605911752558313310146331787109375 )\n          ,\n            ( &#34;streetAddress&#34;, String &#34;21 fnd Stredt&#34; )\n          ]\n        )\n      )\n    ,\n      ( &#34;age&#34;, Number 27.001264842576262026341282762587070465087890625 )\n    ,\n      ( &#34;height&#34;\n      , Number 1.5021398495523310412380624256911687552928924560546875\n      )\n    ,\n      ( &#34;isAlive&#34;, Bool False )\n    ,\n      ( &#34;name&#34;, String &#34;lohn&#34; )\n    ]\n  )</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n</body>\n\n\n\n\n\n\n\n</html>\n"
  },
  {
    "path": "docs/docs/notebooks/MCMC.html",
    "content": "<!DOCTYPE html>\n<html>\n<head><meta charset=\"utf-8\" />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n<title>MCMC</title><script src=\"https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js\"></script>\n\n\n\n\n<style type=\"text/css\">\n    pre { line-height: 125%; }\ntd.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\nspan.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\ntd.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\nspan.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.highlight .hll { background-color: var(--jp-cell-editor-active-background) }\n.highlight { background: var(--jp-cell-editor-background); color: var(--jp-mirror-editor-variable-color) }\n.highlight .c { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment */\n.highlight .err { color: var(--jp-mirror-editor-error-color) } /* Error */\n.highlight .k { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword */\n.highlight .o { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator */\n.highlight .p { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation */\n.highlight .ch { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Hashbang */\n.highlight .cm { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Multiline */\n.highlight .cp { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Preproc */\n.highlight .cpf { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.PreprocFile */\n.highlight .c1 { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Single */\n.highlight .cs { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Special */\n.highlight .kc { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Constant */\n.highlight .kd { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Declaration */\n.highlight .kn { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Namespace */\n.highlight .kp { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Pseudo */\n.highlight .kr { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Reserved */\n.highlight .kt { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Type */\n.highlight .m { color: var(--jp-mirror-editor-number-color) } /* Literal.Number */\n.highlight .s { color: var(--jp-mirror-editor-string-color) } /* Literal.String */\n.highlight .ow { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator.Word */\n.highlight .w { color: var(--jp-mirror-editor-variable-color) } /* Text.Whitespace */\n.highlight .mb { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Bin */\n.highlight .mf { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Float */\n.highlight .mh { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Hex */\n.highlight .mi { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer */\n.highlight .mo { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Oct */\n.highlight .sa { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Affix */\n.highlight .sb { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Backtick */\n.highlight .sc { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Char */\n.highlight .dl { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Delimiter */\n.highlight .sd { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Doc */\n.highlight .s2 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Double */\n.highlight .se { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Escape */\n.highlight .sh { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Heredoc */\n.highlight .si { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Interpol */\n.highlight .sx { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Other */\n.highlight .sr { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Regex */\n.highlight .s1 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Single */\n.highlight .ss { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Symbol */\n.highlight .il { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer.Long */\n  </style>\n\n\n\n<style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\n * Mozilla scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n[data-jp-theme-scrollbars='true'] {\n  scrollbar-color: rgb(var(--jp-scrollbar-thumb-color))\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar. These selectors\n * will match lower in the tree, and so will override the above */\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n  scrollbar-width: thin;\n}\n\n/*\n * Webkit scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-corner {\n  background: var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-thumb {\n  background: rgb(var(--jp-scrollbar-thumb-color));\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-right: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-bottom: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar */\n\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-corner,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-corner {\n  background-color: transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-thumb,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid transparent;\n  border-right: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid transparent;\n  border-bottom: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny::-webkit-scrollbar,\n.jp-scrollbar-tiny::-webkit-scrollbar-corner {\n  background-color: transparent;\n  height: 4px;\n  width: 4px;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:horizontal {\n  border-left: 0px solid transparent;\n  border-right: 0px solid transparent;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:vertical {\n  border-top: 0px solid transparent;\n  border-bottom: 0px solid transparent;\n}\n\n/*\n * Phosphor\n */\n\n.lm-ScrollBar[data-orientation='horizontal'] {\n  min-height: 16px;\n  max-height: 16px;\n  min-width: 45px;\n  border-top: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] {\n  min-width: 16px;\n  max-width: 16px;\n  min-height: 45px;\n  border-left: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar-button {\n  background-color: #f0f0f0;\n  background-position: center center;\n  min-height: 15px;\n  max-height: 15px;\n  min-width: 15px;\n  max-width: 15px;\n}\n\n.lm-ScrollBar-button:hover {\n  background-color: #dadada;\n}\n\n.lm-ScrollBar-button.lm-mod-active {\n  background-color: #cdcdcd;\n}\n\n.lm-ScrollBar-track {\n  background: #f0f0f0;\n}\n\n.lm-ScrollBar-thumb {\n  background: #cdcdcd;\n}\n\n.lm-ScrollBar-thumb:hover {\n  background: #bababa;\n}\n\n.lm-ScrollBar-thumb.lm-mod-active {\n  background: #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal'] .lm-ScrollBar-thumb {\n  height: 100%;\n  min-width: 15px;\n  border-left: 1px solid #a0a0a0;\n  border-right: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] .lm-ScrollBar-thumb {\n  width: 100%;\n  min-height: 15px;\n  border-top: 1px solid #a0a0a0;\n  border-bottom: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-left);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-right);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-up);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-down);\n  background-size: 17px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Widget, /* </DEPRECATED> */\n.lm-Widget {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  cursor: default;\n}\n\n\n/* <DEPRECATED> */ .p-Widget.p-mod-hidden, /* </DEPRECATED> */\n.lm-Widget.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-CommandPalette, /* </DEPRECATED> */\n.lm-CommandPalette {\n  display: flex;\n  flex-direction: column;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-search, /* </DEPRECATED> */\n.lm-CommandPalette-search {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-content, /* </DEPRECATED> */\n.lm-CommandPalette-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  min-height: 0;\n  overflow: auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-header, /* </DEPRECATED> */\n.lm-CommandPalette-header {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-item, /* </DEPRECATED> */\n.lm-CommandPalette-item {\n  display: flex;\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemIcon, /* </DEPRECATED> */\n.lm-CommandPalette-itemIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemContent, /* </DEPRECATED> */\n.lm-CommandPalette-itemContent {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemShortcut, /* </DEPRECATED> */\n.lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemLabel, /* </DEPRECATED> */\n.lm-CommandPalette-itemLabel {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.lm-close-icon {\n\tborder:1px solid transparent;\n  background-color: transparent;\n  position: absolute;\n\tz-index:1;\n\tright:3%;\n\ttop: 0;\n\tbottom: 0;\n\tmargin: auto;\n\tpadding: 7px 0;\n\tdisplay: none;\n\tvertical-align: middle;\n  outline: 0;\n  cursor: pointer;\n}\n.lm-close-icon:after {\n\tcontent: \"X\";\n\tdisplay: block;\n\twidth: 15px;\n\theight: 15px;\n\ttext-align: center;\n\tcolor:#000;\n\tfont-weight: normal;\n\tfont-size: 12px;\n\tcursor: pointer;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-DockPanel, /* </DEPRECATED> */\n.lm-DockPanel {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-widget, /* </DEPRECATED> */\n.lm-DockPanel-widget {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-tabBar, /* </DEPRECATED> */\n.lm-DockPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle, /* </DEPRECATED> */\n.lm-DockPanel-handle {\n  z-index: 2;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle:after, /* </DEPRECATED> */\n.lm-DockPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal'] {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical'] {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal']:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical']:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay, /* </DEPRECATED> */\n.lm-DockPanel-overlay {\n  z-index: 3;\n  box-sizing: border-box;\n  pointer-events: none;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-overlay.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Menu, /* </DEPRECATED> */\n.lm-Menu {\n  z-index: 10000;\n  position: absolute;\n  white-space: nowrap;\n  overflow-x: hidden;\n  overflow-y: auto;\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-content, /* </DEPRECATED> */\n.lm-Menu-content {\n  margin: 0;\n  padding: 0;\n  display: table;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-item, /* </DEPRECATED> */\n.lm-Menu-item {\n  display: table-row;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-item.p-mod-hidden,\n.p-Menu-item.p-mod-collapsed,\n/* </DEPRECATED> */\n.lm-Menu-item.lm-mod-hidden,\n.lm-Menu-item.lm-mod-collapsed {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-itemIcon,\n.p-Menu-itemSubmenuIcon,\n/* </DEPRECATED> */\n.lm-Menu-itemIcon,\n.lm-Menu-itemSubmenuIcon {\n  display: table-cell;\n  text-align: center;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemLabel, /* </DEPRECATED> */\n.lm-Menu-itemLabel {\n  display: table-cell;\n  text-align: left;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemShortcut, /* </DEPRECATED> */\n.lm-Menu-itemShortcut {\n  display: table-cell;\n  text-align: right;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-MenuBar, /* </DEPRECATED> */\n.lm-MenuBar {\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-MenuBar-content, /* </DEPRECATED> */\n.lm-MenuBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex-direction: row;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p--MenuBar-item, /* </DEPRECATED> */\n.lm-MenuBar-item {\n  box-sizing: border-box;\n}\n\n\n/* <DEPRECATED> */\n.p-MenuBar-itemIcon,\n.p-MenuBar-itemLabel,\n/* </DEPRECATED> */\n.lm-MenuBar-itemIcon,\n.lm-MenuBar-itemLabel {\n  display: inline-block;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-ScrollBar, /* </DEPRECATED> */\n.lm-ScrollBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='horizontal'] {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='vertical'] {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-button, /* </DEPRECATED> */\n.lm-ScrollBar-button {\n  box-sizing: border-box;\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-track, /* </DEPRECATED> */\n.lm-ScrollBar-track {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  flex: 1 1 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-thumb, /* </DEPRECATED> */\n.lm-ScrollBar-thumb {\n  box-sizing: border-box;\n  position: absolute;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-SplitPanel-child, /* </DEPRECATED> */\n.lm-SplitPanel-child {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle, /* </DEPRECATED> */\n.lm-SplitPanel-handle {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-SplitPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle:after, /* </DEPRECATED> */\n.lm-SplitPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabBar, /* </DEPRECATED> */\n.lm-TabBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='horizontal'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] {\n  flex-direction: row;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='vertical'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] {\n  flex-direction: column;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-content, /* </DEPRECATED> */\n.lm-TabBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex: 1 1 auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='horizontal'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] > .lm-TabBar-content {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='vertical'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] > .lm-TabBar-content {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar-tab {\n  display: flex;\n  flex-direction: row;\n  box-sizing: border-box;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar-tabIcon,\n.p-TabBar-tabCloseIcon,\n/* </DEPRECATED> */\n.lm-TabBar-tabIcon,\n.lm-TabBar-tabCloseIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tabLabel, /* </DEPRECATED> */\n.lm-TabBar-tabLabel {\n  flex: 1 1 auto;\n  overflow: hidden;\n  white-space: nowrap;\n}\n\n\n.lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab.p-mod-hidden, /* </DEPRECATED> */\n.lm-TabBar-tab.lm-mod-hidden {\n  display: none !important;\n}\n\n\n.lm-TabBar-addButton.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar.p-mod-dragging .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab {\n  position: relative;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='horizontal'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='horizontal'] .lm-TabBar-tab {\n  left: 0;\n  transition: left 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='vertical'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='vertical'] .lm-TabBar-tab {\n  top: 0;\n  transition: top 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging .p-TabBar-tab.p-mod-dragging,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab.lm-mod-dragging {\n  transition: none;\n}\n\n.lm-TabBar-tabLabel .lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n  background: inherit;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabPanel-tabBar, /* </DEPRECATED> */\n.lm-TabPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-TabPanel-stackedPanel, /* </DEPRECATED> */\n.lm-TabPanel-stackedPanel {\n  z-index: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n@charset \"UTF-8\";\nhtml{\n  -webkit-box-sizing:border-box;\n          box-sizing:border-box; }\n\n*,\n*::before,\n*::after{\n  -webkit-box-sizing:inherit;\n          box-sizing:inherit; }\n\nbody{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none;\n  color:#182026;\n  font-family:-apple-system, \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Open Sans\", \"Helvetica Neue\", \"Icons16\", sans-serif; }\n\np{\n  margin-bottom:10px;\n  margin-top:0; }\n\nsmall{\n  font-size:12px; }\n\nstrong{\n  font-weight:600; }\n\n::-moz-selection{\n  background:rgba(125, 188, 255, 0.6); }\n\n::selection{\n  background:rgba(125, 188, 255, 0.6); }\n.bp3-heading{\n  color:#182026;\n  font-weight:600;\n  margin:0 0 10px;\n  padding:0; }\n  .bp3-dark .bp3-heading{\n    color:#f5f8fa; }\n\nh1.bp3-heading, .bp3-running-text h1{\n  font-size:36px;\n  line-height:40px; }\n\nh2.bp3-heading, .bp3-running-text h2{\n  font-size:28px;\n  line-height:32px; }\n\nh3.bp3-heading, .bp3-running-text h3{\n  font-size:22px;\n  line-height:25px; }\n\nh4.bp3-heading, .bp3-running-text h4{\n  font-size:18px;\n  line-height:21px; }\n\nh5.bp3-heading, .bp3-running-text h5{\n  font-size:16px;\n  line-height:19px; }\n\nh6.bp3-heading, .bp3-running-text h6{\n  font-size:14px;\n  line-height:16px; }\n.bp3-ui-text{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none; }\n\n.bp3-monospace-text{\n  font-family:monospace;\n  text-transform:none; }\n\n.bp3-text-muted{\n  color:#5c7080; }\n  .bp3-dark .bp3-text-muted{\n    color:#a7b6c2; }\n\n.bp3-text-disabled{\n  color:rgba(92, 112, 128, 0.6); }\n  .bp3-dark .bp3-text-disabled{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-text-overflow-ellipsis{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal; }\n.bp3-running-text{\n  font-size:14px;\n  line-height:1.5; }\n  .bp3-running-text h1{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h1{\n      color:#f5f8fa; }\n  .bp3-running-text h2{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h2{\n      color:#f5f8fa; }\n  .bp3-running-text h3{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h3{\n      color:#f5f8fa; }\n  .bp3-running-text h4{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h4{\n      color:#f5f8fa; }\n  .bp3-running-text h5{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h5{\n      color:#f5f8fa; }\n  .bp3-running-text h6{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h6{\n      color:#f5f8fa; }\n  .bp3-running-text hr{\n    border:none;\n    border-bottom:1px solid rgba(16, 22, 26, 0.15);\n    margin:20px 0; }\n    .bp3-dark .bp3-running-text hr{\n      border-color:rgba(255, 255, 255, 0.15); }\n  .bp3-running-text p{\n    margin:0 0 10px;\n    padding:0; }\n\n.bp3-text-large{\n  font-size:16px; }\n\n.bp3-text-small{\n  font-size:12px; }\na{\n  color:#106ba3;\n  text-decoration:none; }\n  a:hover{\n    color:#106ba3;\n    cursor:pointer;\n    text-decoration:underline; }\n  a .bp3-icon, a .bp3-icon-standard, a .bp3-icon-large{\n    color:inherit; }\n  a code,\n  .bp3-dark a code{\n    color:inherit; }\n  .bp3-dark a,\n  .bp3-dark a:hover{\n    color:#48aff0; }\n    .bp3-dark a .bp3-icon, .bp3-dark a .bp3-icon-standard, .bp3-dark a .bp3-icon-large,\n    .bp3-dark a:hover .bp3-icon,\n    .bp3-dark a:hover .bp3-icon-standard,\n    .bp3-dark a:hover .bp3-icon-large{\n      color:inherit; }\n.bp3-running-text code, .bp3-code{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  font-size:smaller;\n  padding:2px 5px; }\n  .bp3-dark .bp3-running-text code, .bp3-running-text .bp3-dark code, .bp3-dark .bp3-code{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n  .bp3-running-text a > code, a > .bp3-code{\n    color:#137cbd; }\n    .bp3-dark .bp3-running-text a > code, .bp3-running-text .bp3-dark a > code, .bp3-dark a > .bp3-code{\n      color:inherit; }\n\n.bp3-running-text pre, .bp3-code-block{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n  color:#182026;\n  display:block;\n  font-size:13px;\n  line-height:1.4;\n  margin:10px 0;\n  padding:13px 15px 12px;\n  word-break:break-all;\n  word-wrap:break-word; }\n  .bp3-dark .bp3-running-text pre, .bp3-running-text .bp3-dark pre, .bp3-dark .bp3-code-block{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n  .bp3-running-text pre > code, .bp3-code-block > code{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit;\n    font-size:inherit;\n    padding:0; }\n\n.bp3-running-text kbd, .bp3-key{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-family:inherit;\n  font-size:12px;\n  height:24px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  line-height:24px;\n  min-width:24px;\n  padding:3px 6px;\n  vertical-align:middle; }\n  .bp3-running-text kbd .bp3-icon, .bp3-key .bp3-icon, .bp3-running-text kbd .bp3-icon-standard, .bp3-key .bp3-icon-standard, .bp3-running-text kbd .bp3-icon-large, .bp3-key .bp3-icon-large{\n    margin-right:5px; }\n  .bp3-dark .bp3-running-text kbd, .bp3-running-text .bp3-dark kbd, .bp3-dark .bp3-key{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n.bp3-running-text blockquote, .bp3-blockquote{\n  border-left:solid 4px rgba(167, 182, 194, 0.5);\n  margin:0 0 10px;\n  padding:0 20px; }\n  .bp3-dark .bp3-running-text blockquote, .bp3-running-text .bp3-dark blockquote, .bp3-dark .bp3-blockquote{\n    border-color:rgba(115, 134, 148, 0.5); }\n.bp3-running-text ul,\n.bp3-running-text ol, .bp3-list{\n  margin:10px 0;\n  padding-left:30px; }\n  .bp3-running-text ul li:not(:last-child), .bp3-running-text ol li:not(:last-child), .bp3-list li:not(:last-child){\n    margin-bottom:5px; }\n  .bp3-running-text ul ol, .bp3-running-text ol ol, .bp3-list ol,\n  .bp3-running-text ul ul,\n  .bp3-running-text ol ul,\n  .bp3-list ul{\n    margin-top:5px; }\n\n.bp3-list-unstyled{\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-list-unstyled li{\n    padding:0; }\n.bp3-rtl{\n  text-align:right; }\n\n.bp3-dark{\n  color:#f5f8fa; }\n\n:focus{\n  outline:rgba(19, 124, 189, 0.6) auto 2px;\n  outline-offset:2px;\n  -moz-outline-radius:6px; }\n\n.bp3-focus-disabled :focus{\n  outline:none !important; }\n  .bp3-focus-disabled :focus ~ .bp3-control-indicator{\n    outline:none !important; }\n\n.bp3-alert{\n  max-width:400px;\n  padding:20px; }\n\n.bp3-alert-body{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-alert-body .bp3-icon{\n    font-size:40px;\n    margin-right:20px;\n    margin-top:0; }\n\n.bp3-alert-contents{\n  word-break:break-word; }\n\n.bp3-alert-footer{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:reverse;\n      -ms-flex-direction:row-reverse;\n          flex-direction:row-reverse;\n  margin-top:10px; }\n  .bp3-alert-footer .bp3-button{\n    margin-left:10px; }\n.bp3-breadcrumbs{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  cursor:default;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:wrap;\n      flex-wrap:wrap;\n  height:30px;\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-breadcrumbs > li{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n    .bp3-breadcrumbs > li::after{\n      background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z' fill='%235C7080'/%3e%3c/svg%3e\");\n      content:\"\";\n      display:block;\n      height:16px;\n      margin:0 5px;\n      width:16px; }\n    .bp3-breadcrumbs > li:last-of-type::after{\n      display:none; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumb-current,\n.bp3-breadcrumbs-collapsed{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-size:16px; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumbs-collapsed{\n  color:#5c7080; }\n\n.bp3-breadcrumb:hover{\n  text-decoration:none; }\n\n.bp3-breadcrumb.bp3-disabled{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-breadcrumb .bp3-icon{\n  margin-right:5px; }\n\n.bp3-breadcrumb-current{\n  color:inherit;\n  font-weight:600; }\n  .bp3-breadcrumb-current .bp3-input{\n    font-size:inherit;\n    font-weight:inherit;\n    vertical-align:baseline; }\n\n.bp3-breadcrumbs-collapsed{\n  background:#ced9e0;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  margin-right:2px;\n  padding:1px 5px;\n  vertical-align:text-bottom; }\n  .bp3-breadcrumbs-collapsed::before{\n    background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cg fill='%235C7080'%3e%3ccircle cx='2' cy='8.03' r='2'/%3e%3ccircle cx='14' cy='8.03' r='2'/%3e%3ccircle cx='8' cy='8.03' r='2'/%3e%3c/g%3e%3c/svg%3e\") center no-repeat;\n    content:\"\";\n    display:block;\n    height:16px;\n    width:16px; }\n  .bp3-breadcrumbs-collapsed:hover{\n    background:#bfccd6;\n    color:#182026;\n    text-decoration:none; }\n\n.bp3-dark .bp3-breadcrumb,\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumbs > li::after{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumb.bp3-disabled{\n  color:rgba(167, 182, 194, 0.6); }\n\n.bp3-dark .bp3-breadcrumb-current{\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-breadcrumbs-collapsed:hover{\n    background:rgba(16, 22, 26, 0.6);\n    color:#f5f8fa; }\n.bp3-button{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  min-height:30px;\n  min-width:30px; }\n  .bp3-button > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-button > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-button::before,\n  .bp3-button > *{\n    margin-right:7px; }\n  .bp3-button:empty::before,\n  .bp3-button > :last-child{\n    margin-right:0; }\n  .bp3-button:empty{\n    padding:0 !important; }\n  .bp3-button:disabled, .bp3-button.bp3-disabled{\n    cursor:not-allowed; }\n  .bp3-button.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button.bp3-align-right,\n  .bp3-align-right .bp3-button{\n    text-align:right; }\n  .bp3-button.bp3-align-left,\n  .bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026; }\n    .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active:hover, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-button.bp3-intent-primary{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover, .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover{\n      background-color:#106ba3;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      background-color:#0e5a8a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:disabled, .bp3-button.bp3-intent-primary.bp3-disabled{\n      background-color:rgba(19, 124, 189, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-success{\n    background-color:#0f9960;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover, .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover{\n      background-color:#0d8050;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      background-color:#0a6640;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:disabled, .bp3-button.bp3-intent-success.bp3-disabled{\n      background-color:rgba(15, 153, 96, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-warning{\n    background-color:#d9822b;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover, .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover{\n      background-color:#bf7326;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      background-color:#a66321;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:disabled, .bp3-button.bp3-intent-warning.bp3-disabled{\n      background-color:rgba(217, 130, 43, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-danger{\n    background-color:#db3737;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover, .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover{\n      background-color:#c23030;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      background-color:#a82a2a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:disabled, .bp3-button.bp3-intent-danger.bp3-disabled{\n      background-color:rgba(219, 55, 55, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n    stroke:#ffffff; }\n  .bp3-button.bp3-large,\n  .bp3-large .bp3-button{\n    min-height:40px;\n    min-width:40px;\n    font-size:16px;\n    padding:5px 15px; }\n    .bp3-button.bp3-large::before,\n    .bp3-button.bp3-large > *,\n    .bp3-large .bp3-button::before,\n    .bp3-large .bp3-button > *{\n      margin-right:10px; }\n    .bp3-button.bp3-large:empty::before,\n    .bp3-button.bp3-large > :last-child,\n    .bp3-large .bp3-button:empty::before,\n    .bp3-large .bp3-button > :last-child{\n      margin-right:0; }\n  .bp3-button.bp3-small,\n  .bp3-small .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-button.bp3-loading{\n    position:relative; }\n    .bp3-button.bp3-loading[class*=\"bp3-icon-\"]::before{\n      visibility:hidden; }\n    .bp3-button.bp3-loading .bp3-button-spinner{\n      margin:0;\n      position:absolute; }\n    .bp3-button.bp3-loading > :not(.bp3-button-spinner){\n      visibility:hidden; }\n  .bp3-button[class*=\"bp3-icon-\"]::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    color:#5c7080; }\n  .bp3-button .bp3-icon, .bp3-button .bp3-icon-standard, .bp3-button .bp3-icon-large{\n    color:#5c7080; }\n    .bp3-button .bp3-icon.bp3-align-right, .bp3-button .bp3-icon-standard.bp3-align-right, .bp3-button .bp3-icon-large.bp3-align-right{\n      margin-left:7px; }\n  .bp3-button .bp3-icon:first-child:last-child,\n  .bp3-button .bp3-spinner + .bp3-icon:last-child{\n    margin:0 -7px; }\n  .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"])[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n      color:#a7b6c2; }\n  .bp3-dark .bp3-button[class*=\"bp3-intent-\"]{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:hover{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.3); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n      stroke:#8a9ba8; }\n  .bp3-button:disabled::before,\n  .bp3-button:disabled .bp3-icon, .bp3-button:disabled .bp3-icon-standard, .bp3-button:disabled .bp3-icon-large, .bp3-button.bp3-disabled::before,\n  .bp3-button.bp3-disabled .bp3-icon, .bp3-button.bp3-disabled .bp3-icon-standard, .bp3-button.bp3-disabled .bp3-icon-large, .bp3-button[class*=\"bp3-intent-\"]::before,\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-icon, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-standard, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-large{\n    color:inherit !important; }\n  .bp3-button.bp3-minimal{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button.bp3-minimal:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-minimal:active, .bp3-button.bp3-minimal.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-minimal:disabled, .bp3-button.bp3-minimal:disabled:hover, .bp3-button.bp3-minimal.bp3-disabled, .bp3-button.bp3-minimal.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-minimal{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-minimal:hover, .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-minimal:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-minimal:disabled, .bp3-dark .bp3-button.bp3-minimal:disabled:hover, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover, .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover, .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover, .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover, .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button.bp3-outlined{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    border:1px solid rgba(24, 32, 38, 0.2);\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box; }\n    .bp3-button.bp3-outlined:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-outlined:active, .bp3-button.bp3-outlined.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-outlined:hover, .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-outlined:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover, .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover, .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover, .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover, .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      border-color:rgba(92, 112, 128, 0.1); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      border-color:rgba(255, 255, 255, 0.4); }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        border-color:rgba(255, 255, 255, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      border-color:rgba(16, 107, 163, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        border-color:rgba(16, 107, 163, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        border-color:rgba(72, 175, 240, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          border-color:rgba(72, 175, 240, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      border-color:rgba(13, 128, 80, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        border-color:rgba(13, 128, 80, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        border-color:rgba(61, 204, 145, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          border-color:rgba(61, 204, 145, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      border-color:rgba(191, 115, 38, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        border-color:rgba(191, 115, 38, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        border-color:rgba(255, 179, 102, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          border-color:rgba(255, 179, 102, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      border-color:rgba(194, 48, 48, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        border-color:rgba(194, 48, 48, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        border-color:rgba(255, 115, 115, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          border-color:rgba(255, 115, 115, 0.2); }\n\na.bp3-button{\n  text-align:center;\n  text-decoration:none;\n  -webkit-transition:none;\n  transition:none; }\n  a.bp3-button, a.bp3-button:hover, a.bp3-button:active{\n    color:#182026; }\n  a.bp3-button.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6); }\n\n.bp3-button-text{\n  -webkit-box-flex:0;\n      -ms-flex:0 1 auto;\n          flex:0 1 auto; }\n\n.bp3-button.bp3-align-left .bp3-button-text, .bp3-button.bp3-align-right .bp3-button-text,\n.bp3-button-group.bp3-align-left .bp3-button-text,\n.bp3-button-group.bp3-align-right .bp3-button-text{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto; }\n.bp3-button-group{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex; }\n  .bp3-button-group .bp3-button{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    position:relative;\n    z-index:4; }\n    .bp3-button-group .bp3-button:focus{\n      z-index:5; }\n    .bp3-button-group .bp3-button:hover{\n      z-index:6; }\n    .bp3-button-group .bp3-button:active, .bp3-button-group .bp3-button.bp3-active{\n      z-index:7; }\n    .bp3-button-group .bp3-button:disabled, .bp3-button-group .bp3-button.bp3-disabled{\n      z-index:3; }\n    .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]{\n      z-index:9; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:focus{\n        z-index:10; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:hover{\n        z-index:11; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n        z-index:12; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n        z-index:8; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:first-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:first-child){\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    border-bottom-right-radius:0;\n    border-top-right-radius:0;\n    margin-right:-1px; }\n  .bp3-button-group.bp3-minimal .bp3-button{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button-group.bp3-minimal .bp3-button{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button-group .bp3-popover-wrapper,\n  .bp3-button-group .bp3-popover-target{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button-group .bp3-button.bp3-fill,\n  .bp3-button-group.bp3-fill .bp3-button:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-vertical{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column;\n    vertical-align:top; }\n    .bp3-button-group.bp3-vertical.bp3-fill{\n      height:100%;\n      width:unset; }\n    .bp3-button-group.bp3-vertical .bp3-button{\n      margin-right:0 !important;\n      width:100%; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:first-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:first-child{\n      border-radius:3px 3px 0 0; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:last-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:last-child{\n      border-radius:0 0 3px 3px; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:not(:last-child){\n      margin-bottom:-1px; }\n  .bp3-button-group.bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    margin-right:1px; }\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-button:not(:last-child){\n    margin-bottom:1px; }\n.bp3-callout{\n  font-size:14px;\n  line-height:1.5;\n  background-color:rgba(138, 155, 168, 0.15);\n  border-radius:3px;\n  padding:10px 12px 9px;\n  position:relative;\n  width:100%; }\n  .bp3-callout[class*=\"bp3-icon-\"]{\n    padding-left:40px; }\n    .bp3-callout[class*=\"bp3-icon-\"]::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout.bp3-callout-icon{\n    padding-left:40px; }\n    .bp3-callout.bp3-callout-icon > .bp3-icon:first-child{\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout .bp3-heading{\n    line-height:20px;\n    margin-bottom:5px;\n    margin-top:0; }\n    .bp3-callout .bp3-heading:last-child{\n      margin-bottom:0; }\n  .bp3-dark .bp3-callout{\n    background-color:rgba(138, 155, 168, 0.2); }\n    .bp3-dark .bp3-callout[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n  .bp3-callout.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15); }\n    .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-primary .bp3-heading{\n      color:#106ba3; }\n    .bp3-dark .bp3-callout.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-primary .bp3-heading{\n        color:#48aff0; }\n  .bp3-callout.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15); }\n    .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-success .bp3-heading{\n      color:#0d8050; }\n    .bp3-dark .bp3-callout.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-success .bp3-heading{\n        color:#3dcc91; }\n  .bp3-callout.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15); }\n    .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-warning .bp3-heading{\n      color:#bf7326; }\n    .bp3-dark .bp3-callout.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-warning .bp3-heading{\n        color:#ffb366; }\n  .bp3-callout.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15); }\n    .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-danger .bp3-heading{\n      color:#c23030; }\n    .bp3-dark .bp3-callout.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-danger .bp3-heading{\n        color:#ff7373; }\n  .bp3-running-text .bp3-callout{\n    margin:20px 0; }\n.bp3-card{\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n  padding:20px;\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-card.bp3-dark,\n  .bp3-dark .bp3-card{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-0{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n  .bp3-elevation-0.bp3-dark,\n  .bp3-dark .bp3-elevation-0{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-1{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-1.bp3-dark,\n  .bp3-dark .bp3-elevation-1{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-2{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-2.bp3-dark,\n  .bp3-dark .bp3-elevation-2{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-3{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-3.bp3-dark,\n  .bp3-dark .bp3-elevation-3{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-4{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-4.bp3-dark,\n  .bp3-dark .bp3-elevation-4{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:hover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  cursor:pointer; }\n  .bp3-card.bp3-interactive:hover.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:hover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:active{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  opacity:0.9;\n  -webkit-transition-duration:0;\n          transition-duration:0; }\n  .bp3-card.bp3-interactive:active.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:active{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-collapse{\n  height:0;\n  overflow-y:hidden;\n  -webkit-transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-collapse .bp3-collapse-body{\n    -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-collapse .bp3-collapse-body[aria-hidden=\"true\"]{\n      display:none; }\n\n.bp3-context-menu .bp3-popover-target{\n  display:block; }\n\n.bp3-context-menu-popover-target{\n  position:fixed; }\n\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-dialog-container{\n  opacity:1;\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  min-height:100%;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  width:100%; }\n  .bp3-dialog-container.bp3-overlay-enter > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5); }\n  .bp3-dialog-container.bp3-overlay-enter-active > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear-active > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-dialog-container.bp3-overlay-exit > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-dialog-container.bp3-overlay-exit-active > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n\n.bp3-dialog{\n  background:#ebf1f5;\n  border-radius:6px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:30px 0;\n  padding-bottom:20px;\n  pointer-events:all;\n  -webkit-user-select:text;\n     -moz-user-select:text;\n      -ms-user-select:text;\n          user-select:text;\n  width:500px; }\n  .bp3-dialog:focus{\n    outline:0; }\n  .bp3-dialog.bp3-dark,\n  .bp3-dark .bp3-dialog{\n    background:#293742;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-dialog-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:6px 6px 0 0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding-left:20px;\n  padding-right:5px;\n  z-index:30; }\n  .bp3-dialog-header .bp3-icon-large,\n  .bp3-dialog-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-dialog-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-dialog-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-dialog-header{\n    background:#30404d;\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-dialog-header .bp3-icon-large,\n    .bp3-dark .bp3-dialog-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-dialog-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  margin:20px; }\n\n.bp3-dialog-footer{\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  margin:0 20px; }\n\n.bp3-dialog-footer-actions{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:end;\n      -ms-flex-pack:end;\n          justify-content:flex-end; }\n  .bp3-dialog-footer-actions .bp3-button{\n    margin-left:10px; }\n.bp3-multistep-dialog-panels{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n\n.bp3-multistep-dialog-left-panel{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column; }\n  .bp3-dark .bp3-multistep-dialog-left-panel{\n    background:#202b33; }\n\n.bp3-multistep-dialog-right-panel{\n  background-color:#f5f8fa;\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  border-radius:0 0 6px 0;\n  -webkit-box-flex:3;\n      -ms-flex:3;\n          flex:3;\n  min-width:0; }\n  .bp3-dark .bp3-multistep-dialog-right-panel{\n    background-color:#293742;\n    border-left:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-multistep-dialog-footer{\n  background-color:#ffffff;\n  border-radius:0 0 6px 0;\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  padding:10px; }\n  .bp3-dark .bp3-multistep-dialog-footer{\n    background:#30404d;\n    border-top:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-dialog-step-container{\n  background-color:#f5f8fa;\n  border-bottom:1px solid rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-dialog-step-container{\n    background:#293742;\n    border-bottom:1px solid rgba(16, 22, 26, 0.4); }\n  .bp3-dialog-step-container.bp3-dialog-step-viewed{\n    background-color:#ffffff; }\n    .bp3-dark .bp3-dialog-step-container.bp3-dialog-step-viewed{\n      background:#30404d; }\n\n.bp3-dialog-step{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#f5f8fa;\n  border-radius:6px;\n  cursor:not-allowed;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:4px;\n  padding:6px 14px; }\n  .bp3-dark .bp3-dialog-step{\n    background:#293742; }\n  .bp3-dialog-step-viewed .bp3-dialog-step{\n    background-color:#ffffff;\n    cursor:pointer; }\n    .bp3-dark .bp3-dialog-step-viewed .bp3-dialog-step{\n      background:#30404d; }\n  .bp3-dialog-step:hover{\n    background-color:#f5f8fa; }\n    .bp3-dark .bp3-dialog-step:hover{\n      background:#293742; }\n\n.bp3-dialog-step-icon{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:rgba(92, 112, 128, 0.6);\n  border-radius:50%;\n  color:#ffffff;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:25px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  width:25px; }\n  .bp3-dark .bp3-dialog-step-icon{\n    background-color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#2b95d6; }\n  .bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#8a9ba8; }\n\n.bp3-dialog-step-title{\n  color:rgba(92, 112, 128, 0.6);\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  padding-left:10px; }\n  .bp3-dark .bp3-dialog-step-title{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-title{\n    color:#2b95d6; }\n  .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n    color:#182026; }\n    .bp3-dark .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n      color:#f5f8fa; }\n.bp3-drawer{\n  background:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0;\n  padding:0; }\n  .bp3-drawer:focus{\n    outline:0; }\n  .bp3-drawer.bp3-position-top{\n    height:50%;\n    left:0;\n    right:0;\n    top:0; }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter, .bp3-drawer.bp3-position-top.bp3-overlay-appear{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter-active, .bp3-drawer.bp3-position-top.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit-active{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-bottom{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter-active, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-left{\n    bottom:0;\n    left:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter, .bp3-drawer.bp3-position-left.bp3-overlay-appear{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter-active, .bp3-drawer.bp3-position-left.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit-active{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-right{\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter, .bp3-drawer.bp3-position-right.bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter-active, .bp3-drawer.bp3-position-right.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right):not(.bp3-vertical){\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right).bp3-vertical{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-dark,\n  .bp3-dark .bp3-drawer{\n    background:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-drawer-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border-radius:0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding:5px;\n  padding-left:20px;\n  position:relative; }\n  .bp3-drawer-header .bp3-icon-large,\n  .bp3-drawer-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-drawer-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-drawer-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-drawer-header{\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-drawer-header .bp3-icon-large,\n    .bp3-dark .bp3-drawer-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-drawer-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  overflow:auto; }\n\n.bp3-drawer-footer{\n  -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  padding:10px 20px;\n  position:relative; }\n  .bp3-dark .bp3-drawer-footer{\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4); }\n.bp3-editable-text{\n  cursor:text;\n  display:inline-block;\n  max-width:100%;\n  position:relative;\n  vertical-align:top;\n  white-space:nowrap; }\n  .bp3-editable-text::before{\n    bottom:-3px;\n    left:-3px;\n    position:absolute;\n    right:-3px;\n    top:-3px;\n    border-radius:3px;\n    content:\"\";\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#137cbd; }\n  .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4); }\n  .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#0f9960; }\n  .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4); }\n  .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#d9822b; }\n  .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4); }\n  .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#db3737; }\n  .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4); }\n  .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-dark .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#48aff0; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4);\n            box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#3dcc91; }\n  .bp3-dark .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4);\n            box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#ffb366; }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#ff7373; }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-editable-text-input,\n.bp3-editable-text-content{\n  color:inherit;\n  display:inherit;\n  font:inherit;\n  letter-spacing:inherit;\n  max-width:inherit;\n  min-width:inherit;\n  position:relative;\n  resize:none;\n  text-transform:inherit;\n  vertical-align:top; }\n\n.bp3-editable-text-input{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0;\n  white-space:pre-wrap;\n  width:100%; }\n  .bp3-editable-text-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:focus{\n    outline:none; }\n  .bp3-editable-text-input::-ms-clear{\n    display:none; }\n\n.bp3-editable-text-content{\n  overflow:hidden;\n  padding-right:2px;\n  text-overflow:ellipsis;\n  white-space:pre; }\n  .bp3-editable-text-editing > .bp3-editable-text-content{\n    left:0;\n    position:absolute;\n    visibility:hidden; }\n  .bp3-editable-text-placeholder > .bp3-editable-text-content{\n    color:rgba(92, 112, 128, 0.6); }\n    .bp3-dark .bp3-editable-text-placeholder > .bp3-editable-text-content{\n      color:rgba(167, 182, 194, 0.6); }\n\n.bp3-editable-text.bp3-multiline{\n  display:block; }\n  .bp3-editable-text.bp3-multiline .bp3-editable-text-content{\n    overflow:auto;\n    white-space:pre-wrap;\n    word-wrap:break-word; }\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-control-group{\n  -webkit-transform:translateZ(0);\n          transform:translateZ(0);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:stretch;\n      -ms-flex-align:stretch;\n          align-items:stretch; }\n  .bp3-control-group > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select,\n  .bp3-control-group .bp3-input,\n  .bp3-control-group .bp3-select{\n    position:relative; }\n  .bp3-control-group .bp3-input{\n    border-radius:inherit;\n    z-index:2; }\n    .bp3-control-group .bp3-input:focus{\n      border-radius:3px;\n      z-index:14; }\n    .bp3-control-group .bp3-input[class*=\"bp3-intent\"]{\n      z-index:13; }\n      .bp3-control-group .bp3-input[class*=\"bp3-intent\"]:focus{\n        z-index:15; }\n    .bp3-control-group .bp3-input[readonly], .bp3-control-group .bp3-input:disabled, .bp3-control-group .bp3-input.bp3-disabled{\n      z-index:1; }\n  .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input{\n    z-index:13; }\n    .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input:focus{\n      z-index:15; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select select,\n  .bp3-control-group .bp3-select select{\n    -webkit-transform:translateZ(0);\n            transform:translateZ(0);\n    border-radius:inherit;\n    z-index:4; }\n    .bp3-control-group .bp3-button:focus,\n    .bp3-control-group .bp3-html-select select:focus,\n    .bp3-control-group .bp3-select select:focus{\n      z-index:5; }\n    .bp3-control-group .bp3-button:hover,\n    .bp3-control-group .bp3-html-select select:hover,\n    .bp3-control-group .bp3-select select:hover{\n      z-index:6; }\n    .bp3-control-group .bp3-button:active,\n    .bp3-control-group .bp3-html-select select:active,\n    .bp3-control-group .bp3-select select:active{\n      z-index:7; }\n    .bp3-control-group .bp3-button[readonly], .bp3-control-group .bp3-button:disabled, .bp3-control-group .bp3-button.bp3-disabled,\n    .bp3-control-group .bp3-html-select select[readonly],\n    .bp3-control-group .bp3-html-select select:disabled,\n    .bp3-control-group .bp3-html-select select.bp3-disabled,\n    .bp3-control-group .bp3-select select[readonly],\n    .bp3-control-group .bp3-select select:disabled,\n    .bp3-control-group .bp3-select select.bp3-disabled{\n      z-index:3; }\n    .bp3-control-group .bp3-button[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]{\n      z-index:9; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:focus{\n        z-index:10; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:hover{\n        z-index:11; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:active{\n        z-index:12; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"][readonly], .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:disabled, .bp3-control-group .bp3-button[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"].bp3-disabled{\n        z-index:8; }\n  .bp3-control-group .bp3-input-group > .bp3-icon,\n  .bp3-control-group .bp3-input-group > .bp3-button,\n  .bp3-control-group .bp3-input-group > .bp3-input-left-container,\n  .bp3-control-group .bp3-input-group > .bp3-input-action{\n    z-index:16; }\n  .bp3-control-group .bp3-select::after,\n  .bp3-control-group .bp3-html-select::after,\n  .bp3-control-group .bp3-select > .bp3-icon,\n  .bp3-control-group .bp3-html-select > .bp3-icon{\n    z-index:17; }\n  .bp3-control-group .bp3-select:focus-within{\n    z-index:5; }\n  .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:-1px; }\n  .bp3-control-group:not(.bp3-vertical) > .bp3-divider:not(:first-child){\n    margin-left:6px; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:0; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > .bp3-button + .bp3-button{\n    margin-left:1px; }\n  .bp3-control-group .bp3-popover-wrapper,\n  .bp3-control-group .bp3-popover-target{\n    border-radius:inherit; }\n  .bp3-control-group > :first-child{\n    border-radius:3px 0 0 3px; }\n  .bp3-control-group > :last-child{\n    border-radius:0 3px 3px 0;\n    margin-right:0; }\n  .bp3-control-group > :only-child{\n    border-radius:3px;\n    margin-right:0; }\n  .bp3-control-group .bp3-input-group .bp3-button{\n    border-radius:3px; }\n  .bp3-control-group .bp3-numeric-input:not(:first-child) .bp3-input-group{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-control-group.bp3-fill{\n    width:100%; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-fill > *:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-vertical{\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-control-group.bp3-vertical > *{\n      margin-top:-1px; }\n    .bp3-control-group.bp3-vertical > :first-child{\n      border-radius:3px 3px 0 0;\n      margin-top:0; }\n    .bp3-control-group.bp3-vertical > :last-child{\n      border-radius:0 0 3px 3px; }\n.bp3-control{\n  cursor:pointer;\n  display:block;\n  margin-bottom:10px;\n  position:relative;\n  text-transform:none; }\n  .bp3-control input:checked ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control input:checked ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control:not(.bp3-align-right){\n    padding-left:26px; }\n    .bp3-control:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-26px; }\n  .bp3-control.bp3-align-right{\n    padding-right:26px; }\n    .bp3-control.bp3-align-right .bp3-control-indicator{\n      margin-right:-26px; }\n  .bp3-control.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-control.bp3-inline{\n    display:inline-block;\n    margin-right:20px; }\n  .bp3-control input{\n    left:0;\n    opacity:0;\n    position:absolute;\n    top:0;\n    z-index:-1; }\n  .bp3-control .bp3-control-indicator{\n    background-clip:padding-box;\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    border:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    cursor:pointer;\n    display:inline-block;\n    font-size:16px;\n    height:1em;\n    margin-right:10px;\n    margin-top:-3px;\n    position:relative;\n    -webkit-user-select:none;\n       -moz-user-select:none;\n        -ms-user-select:none;\n            user-select:none;\n    vertical-align:middle;\n    width:1em; }\n    .bp3-control .bp3-control-indicator::before{\n      content:\"\";\n      display:block;\n      height:1em;\n      width:1em; }\n  .bp3-control:hover .bp3-control-indicator{\n    background-color:#ebf1f5; }\n  .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n    background:#d8e1e8;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    cursor:not-allowed; }\n  .bp3-control input:focus ~ .bp3-control-indicator{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:2px;\n    -moz-outline-radius:6px; }\n  .bp3-control.bp3-align-right .bp3-control-indicator{\n    float:right;\n    margin-left:10px;\n    margin-top:1px; }\n  .bp3-control.bp3-large{\n    font-size:16px; }\n    .bp3-control.bp3-large:not(.bp3-align-right){\n      padding-left:30px; }\n      .bp3-control.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n        margin-left:-30px; }\n    .bp3-control.bp3-large.bp3-align-right{\n      padding-right:30px; }\n      .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n        margin-right:-30px; }\n    .bp3-control.bp3-large .bp3-control-indicator{\n      font-size:20px; }\n    .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-top:0; }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control.bp3-checkbox .bp3-control-indicator{\n    border-radius:3px; }\n  .bp3-control.bp3-checkbox input:checked ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0012 5z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-radio .bp3-control-indicator{\n    border-radius:50%; }\n  .bp3-control.bp3-radio input:checked ~ .bp3-control-indicator::before{\n    background-image:radial-gradient(#ffffff, #ffffff 28%, transparent 32%); }\n  .bp3-control.bp3-radio input:checked:disabled ~ .bp3-control-indicator::before{\n    opacity:0.5; }\n  .bp3-control.bp3-radio input:focus ~ .bp3-control-indicator{\n    -moz-outline-radius:16px; }\n  .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(167, 182, 194, 0.5); }\n  .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(115, 134, 148, 0.5); }\n  .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(92, 112, 128, 0.5); }\n  .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5); }\n    .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5); }\n    .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch:not(.bp3-align-right){\n    padding-left:38px; }\n    .bp3-control.bp3-switch:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-38px; }\n  .bp3-control.bp3-switch.bp3-align-right{\n    padding-right:38px; }\n    .bp3-control.bp3-switch.bp3-align-right .bp3-control-indicator{\n      margin-right:-38px; }\n  .bp3-control.bp3-switch .bp3-control-indicator{\n    border:none;\n    border-radius:1.75em;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important;\n    min-width:1.75em;\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:auto; }\n    .bp3-control.bp3-switch .bp3-control-indicator::before{\n      background:#ffffff;\n      border-radius:50%;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n      height:calc(1em - 4px);\n      left:0;\n      margin:2px;\n      position:absolute;\n      -webkit-transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      width:calc(1em - 4px); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    left:calc(100% - 1em); }\n  .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right){\n    padding-left:45px; }\n    .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-45px; }\n  .bp3-control.bp3-switch.bp3-large.bp3-align-right{\n    padding-right:45px; }\n    .bp3-control.bp3-switch.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-right:-45px; }\n  .bp3-dark .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.7); }\n  .bp3-dark .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.9); }\n  .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(57, 75, 89, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-dark .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch .bp3-control-indicator::before{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-control.bp3-switch .bp3-switch-inner-text{\n    font-size:0.7em;\n    text-align:center; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:first-child{\n    line-height:0;\n    margin-left:0.5em;\n    margin-right:1.2em;\n    visibility:hidden; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:last-child{\n    line-height:1em;\n    margin-left:1.2em;\n    margin-right:0.5em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:first-child{\n    line-height:1em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:last-child{\n    line-height:0;\n    visibility:hidden; }\n  .bp3-dark .bp3-control{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-control.bp3-disabled{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-control .bp3-control-indicator{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-control:hover .bp3-control-indicator{\n      background-color:#30404d; }\n    .bp3-dark .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n      background:#202b33;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-control input:disabled ~ .bp3-control-indicator{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      cursor:not-allowed; }\n    .bp3-dark .bp3-control.bp3-checkbox input:disabled:checked ~ .bp3-control-indicator, .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-file-input{\n  cursor:pointer;\n  display:inline-block;\n  height:30px;\n  position:relative; }\n  .bp3-file-input input{\n    margin:0;\n    min-width:200px;\n    opacity:0; }\n    .bp3-file-input input:disabled + .bp3-file-upload-input,\n    .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n      background:rgba(206, 217, 224, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      resize:none; }\n      .bp3-file-input input:disabled + .bp3-file-upload-input::after,\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n        background-color:rgba(206, 217, 224, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(92, 112, 128, 0.6);\n        cursor:not-allowed;\n        outline:none; }\n        .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active:hover,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active:hover{\n          background:rgba(206, 217, 224, 0.7); }\n      .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input, .bp3-dark\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n        background:rgba(57, 75, 89, 0.5);\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after, .bp3-dark\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n          background-color:rgba(57, 75, 89, 0.5);\n          background-image:none;\n          -webkit-box-shadow:none;\n                  box-shadow:none;\n          color:rgba(167, 182, 194, 0.6); }\n          .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-dark\n          .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active{\n            background:rgba(57, 75, 89, 0.7); }\n  .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#182026; }\n  .bp3-dark .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#f5f8fa; }\n  .bp3-file-input.bp3-fill{\n    width:100%; }\n  .bp3-file-input.bp3-large,\n  .bp3-large .bp3-file-input{\n    height:40px; }\n  .bp3-file-input .bp3-file-upload-input-custom-text::after{\n    content:attr(bp3-button-text); }\n\n.bp3-file-upload-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle;\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:rgba(92, 112, 128, 0.6);\n  left:0;\n  padding-right:80px;\n  position:absolute;\n  right:0;\n  top:0;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-file-upload-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:focus, .bp3-file-upload-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-file-upload-input[type=\"search\"], .bp3-file-upload-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-file-upload-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-file-upload-input:disabled, .bp3-file-upload-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-file-upload-input::after{\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026;\n    min-height:24px;\n    min-width:24px;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    border-radius:3px;\n    content:\"Browse\";\n    line-height:24px;\n    margin:3px;\n    position:absolute;\n    right:0;\n    text-align:center;\n    top:0;\n    width:70px; }\n    .bp3-file-upload-input::after:hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-file-upload-input::after:active, .bp3-file-upload-input::after.bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-file-upload-input::after:disabled, .bp3-file-upload-input::after.bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-file-upload-input::after:disabled.bp3-active, .bp3-file-upload-input::after:disabled.bp3-active:hover, .bp3-file-upload-input::after.bp3-disabled.bp3-active, .bp3-file-upload-input::after.bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-file-upload-input:hover::after{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-file-upload-input:active::after{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-large .bp3-file-upload-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px;\n    padding-right:95px; }\n    .bp3-large .bp3-file-upload-input[type=\"search\"], .bp3-large .bp3-file-upload-input.bp3-round{\n      padding:0 15px; }\n    .bp3-large .bp3-file-upload-input::after{\n      min-height:30px;\n      min-width:30px;\n      line-height:30px;\n      margin:5px;\n      width:85px; }\n  .bp3-dark .bp3-file-upload-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:disabled, .bp3-dark .bp3-file-upload-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::after{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n      color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover, .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover{\n        background-color:#30404d;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        background-color:#202b33;\n        background-image:none;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n      .bp3-dark .bp3-file-upload-input::after:disabled, .bp3-dark .bp3-file-upload-input::after.bp3-disabled{\n        background-color:rgba(57, 75, 89, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-upload-input::after:disabled.bp3-active, .bp3-dark .bp3-file-upload-input::after.bp3-disabled.bp3-active{\n          background:rgba(57, 75, 89, 0.7); }\n      .bp3-dark .bp3-file-upload-input::after .bp3-button-spinner .bp3-spinner-head{\n        background:rgba(16, 22, 26, 0.5);\n        stroke:#8a9ba8; }\n    .bp3-dark .bp3-file-upload-input:hover::after{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:active::after{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n.bp3-file-upload-input::after{\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n.bp3-form-group{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0 0 15px; }\n  .bp3-form-group label.bp3-label{\n    margin-bottom:5px; }\n  .bp3-form-group .bp3-control{\n    margin-top:7px; }\n  .bp3-form-group .bp3-form-helper-text{\n    color:#5c7080;\n    font-size:12px;\n    margin-top:5px; }\n  .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#106ba3; }\n  .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#0d8050; }\n  .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#bf7326; }\n  .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#c23030; }\n  .bp3-form-group.bp3-inline{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row; }\n    .bp3-form-group.bp3-inline.bp3-large label.bp3-label{\n      line-height:40px;\n      margin:0 10px 0 0; }\n    .bp3-form-group.bp3-inline label.bp3-label{\n      line-height:30px;\n      margin:0 10px 0 0; }\n  .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-dark .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#48aff0; }\n  .bp3-dark .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#3dcc91; }\n  .bp3-dark .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#ffb366; }\n  .bp3-dark .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#ff7373; }\n  .bp3-dark .bp3-form-group .bp3-form-helper-text{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(167, 182, 194, 0.6) !important; }\n.bp3-input-group{\n  display:block;\n  position:relative; }\n  .bp3-input-group .bp3-input{\n    position:relative;\n    width:100%; }\n    .bp3-input-group .bp3-input:not(:first-child){\n      padding-left:30px; }\n    .bp3-input-group .bp3-input:not(:last-child){\n      padding-right:30px; }\n  .bp3-input-group .bp3-input-action,\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-button,\n  .bp3-input-group > .bp3-icon{\n    position:absolute;\n    top:0; }\n    .bp3-input-group .bp3-input-action:first-child,\n    .bp3-input-group > .bp3-input-left-container:first-child,\n    .bp3-input-group > .bp3-button:first-child,\n    .bp3-input-group > .bp3-icon:first-child{\n      left:0; }\n    .bp3-input-group .bp3-input-action:last-child,\n    .bp3-input-group > .bp3-input-left-container:last-child,\n    .bp3-input-group > .bp3-button:last-child,\n    .bp3-input-group > .bp3-icon:last-child{\n      right:0; }\n  .bp3-input-group .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    margin:3px;\n    padding:0 7px; }\n    .bp3-input-group .bp3-button:empty{\n      padding:0; }\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-icon{\n    z-index:1; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon{\n    color:#5c7080; }\n    .bp3-input-group > .bp3-input-left-container > .bp3-icon:empty,\n    .bp3-input-group > .bp3-icon:empty{\n      font-family:\"Icons16\", sans-serif;\n      font-size:16px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon,\n  .bp3-input-group .bp3-input-action > .bp3-spinner{\n    margin:7px; }\n  .bp3-input-group .bp3-tag{\n    margin:5px; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus),\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n    color:#5c7080; }\n    .bp3-dark .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus), .bp3-dark\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n      color:#a7b6c2; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large{\n      color:#5c7080; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled,\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled{\n    color:rgba(92, 112, 128, 0.6) !important; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-large{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-input-group.bp3-disabled{\n    cursor:not-allowed; }\n    .bp3-input-group.bp3-disabled .bp3-icon{\n      color:rgba(92, 112, 128, 0.6); }\n  .bp3-input-group.bp3-large .bp3-button{\n    min-height:30px;\n    min-width:30px;\n    margin:5px; }\n  .bp3-input-group.bp3-large > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-large > .bp3-icon,\n  .bp3-input-group.bp3-large .bp3-input-action > .bp3-spinner{\n    margin:12px; }\n  .bp3-input-group.bp3-large .bp3-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input-group.bp3-large .bp3-input[type=\"search\"], .bp3-input-group.bp3-large .bp3-input.bp3-round{\n      padding:0 15px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:first-child){\n      padding-left:40px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:last-child){\n      padding-right:40px; }\n  .bp3-input-group.bp3-small .bp3-button{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small .bp3-tag{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-small > .bp3-icon,\n  .bp3-input-group.bp3-small .bp3-input-action > .bp3-spinner{\n    margin:4px; }\n  .bp3-input-group.bp3-small .bp3-input{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input-group.bp3-small .bp3-input[type=\"search\"], .bp3-input-group.bp3-small .bp3-input.bp3-round{\n      padding:0 12px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:first-child){\n      padding-left:24px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:last-child){\n      padding-right:24px; }\n  .bp3-input-group.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-input-group.bp3-round .bp3-button,\n  .bp3-input-group.bp3-round .bp3-input,\n  .bp3-input-group.bp3-round .bp3-tag{\n    border-radius:30px; }\n  .bp3-dark .bp3-input-group .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-input-group.bp3-disabled .bp3-icon{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-input-group.bp3-intent-primary .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input-group.bp3-intent-primary .bp3-input:disabled, .bp3-input-group.bp3-intent-primary .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-primary > .bp3-icon{\n    color:#106ba3; }\n    .bp3-dark .bp3-input-group.bp3-intent-primary > .bp3-icon{\n      color:#48aff0; }\n  .bp3-input-group.bp3-intent-success .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input-group.bp3-intent-success .bp3-input:disabled, .bp3-input-group.bp3-intent-success .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-success > .bp3-icon{\n    color:#0d8050; }\n    .bp3-dark .bp3-input-group.bp3-intent-success > .bp3-icon{\n      color:#3dcc91; }\n  .bp3-input-group.bp3-intent-warning .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input-group.bp3-intent-warning .bp3-input:disabled, .bp3-input-group.bp3-intent-warning .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-warning > .bp3-icon{\n    color:#bf7326; }\n    .bp3-dark .bp3-input-group.bp3-intent-warning > .bp3-icon{\n      color:#ffb366; }\n  .bp3-input-group.bp3-intent-danger .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input-group.bp3-intent-danger .bp3-input:disabled, .bp3-input-group.bp3-intent-danger .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-danger > .bp3-icon{\n    color:#c23030; }\n    .bp3-dark .bp3-input-group.bp3-intent-danger > .bp3-icon{\n      color:#ff7373; }\n.bp3-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle; }\n  .bp3-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:focus, .bp3-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-input[type=\"search\"], .bp3-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-input:disabled, .bp3-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-input.bp3-large{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input.bp3-large[type=\"search\"], .bp3-input.bp3-large.bp3-round{\n      padding:0 15px; }\n  .bp3-input.bp3-small{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input.bp3-small[type=\"search\"], .bp3-input.bp3-small.bp3-round{\n      padding:0 12px; }\n  .bp3-input.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-dark .bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input:disabled, .bp3-dark .bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-input.bp3-intent-primary{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input.bp3-intent-primary:disabled, .bp3-input.bp3-intent-primary.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary:focus{\n        -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n                box-shadow:inset 0 0 0 1px #137cbd; }\n      .bp3-dark .bp3-input.bp3-intent-primary:disabled, .bp3-dark .bp3-input.bp3-intent-primary.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-success{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input.bp3-intent-success:disabled, .bp3-input.bp3-intent-success.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success:focus{\n        -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n                box-shadow:inset 0 0 0 1px #0f9960; }\n      .bp3-dark .bp3-input.bp3-intent-success:disabled, .bp3-dark .bp3-input.bp3-intent-success.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-warning{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input.bp3-intent-warning:disabled, .bp3-input.bp3-intent-warning.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning:focus{\n        -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n                box-shadow:inset 0 0 0 1px #d9822b; }\n      .bp3-dark .bp3-input.bp3-intent-warning:disabled, .bp3-dark .bp3-input.bp3-intent-warning.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-danger{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input.bp3-intent-danger:disabled, .bp3-input.bp3-intent-danger.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger:focus{\n        -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #db3737;\n                box-shadow:inset 0 0 0 1px #db3737; }\n      .bp3-dark .bp3-input.bp3-intent-danger:disabled, .bp3-dark .bp3-input.bp3-intent-danger.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input::-ms-clear{\n    display:none; }\ntextarea.bp3-input{\n  max-width:100%;\n  padding:10px; }\n  textarea.bp3-input, textarea.bp3-input.bp3-large, textarea.bp3-input.bp3-small{\n    height:auto;\n    line-height:inherit; }\n  textarea.bp3-input.bp3-small{\n    padding:8px; }\n  .bp3-dark textarea.bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark textarea.bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input:disabled, .bp3-dark textarea.bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\nlabel.bp3-label{\n  display:block;\n  margin-bottom:15px;\n  margin-top:0; }\n  label.bp3-label .bp3-html-select,\n  label.bp3-label .bp3-input,\n  label.bp3-label .bp3-select,\n  label.bp3-label .bp3-slider,\n  label.bp3-label .bp3-popover-wrapper{\n    display:block;\n    margin-top:5px;\n    text-transform:none; }\n  label.bp3-label .bp3-button-group{\n    margin-top:5px; }\n  label.bp3-label .bp3-select select,\n  label.bp3-label .bp3-html-select select{\n    font-weight:400;\n    vertical-align:top;\n    width:100%; }\n  label.bp3-label.bp3-disabled,\n  label.bp3-label.bp3-disabled .bp3-text-muted{\n    color:rgba(92, 112, 128, 0.6); }\n  label.bp3-label.bp3-inline{\n    line-height:30px; }\n    label.bp3-label.bp3-inline .bp3-html-select,\n    label.bp3-label.bp3-inline .bp3-input,\n    label.bp3-label.bp3-inline .bp3-input-group,\n    label.bp3-label.bp3-inline .bp3-select,\n    label.bp3-label.bp3-inline .bp3-popover-wrapper{\n      display:inline-block;\n      margin:0 0 0 5px;\n      vertical-align:top; }\n    label.bp3-label.bp3-inline .bp3-button-group{\n      margin:0 0 0 5px; }\n    label.bp3-label.bp3-inline .bp3-input-group .bp3-input{\n      margin-left:0; }\n    label.bp3-label.bp3-inline.bp3-large{\n      line-height:40px; }\n  label.bp3-label:not(.bp3-inline) .bp3-popover-target{\n    display:block; }\n  .bp3-dark label.bp3-label{\n    color:#f5f8fa; }\n    .bp3-dark label.bp3-label.bp3-disabled,\n    .bp3-dark label.bp3-label.bp3-disabled .bp3-text-muted{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 14px;\n          flex:1 1 14px;\n  min-height:0;\n  padding:0;\n  width:30px; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:first-child{\n    border-radius:0 3px 0 0; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:last-child{\n    border-radius:0 0 3px 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:first-child{\n  border-radius:3px 0 0 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:last-child{\n  border-radius:0 0 0 3px; }\n\n.bp3-numeric-input.bp3-large .bp3-button-group.bp3-vertical > .bp3-button{\n  width:40px; }\n\nform{\n  display:block; }\n.bp3-html-select select,\n.bp3-select select{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  -moz-appearance:none;\n  -webkit-appearance:none;\n  border-radius:3px;\n  height:30px;\n  padding:0 25px 0 10px;\n  width:100%; }\n  .bp3-html-select select > *, .bp3-select select > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-html-select select > .bp3-fill, .bp3-select select > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-html-select select::before,\n  .bp3-select select::before, .bp3-html-select select > *, .bp3-select select > *{\n    margin-right:7px; }\n  .bp3-html-select select:empty::before,\n  .bp3-select select:empty::before,\n  .bp3-html-select select > :last-child,\n  .bp3-select select > :last-child{\n    margin-right:0; }\n  .bp3-html-select select:hover,\n  .bp3-select select:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-html-select select:active,\n  .bp3-select select:active, .bp3-html-select select.bp3-active,\n  .bp3-select select.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-html-select select:disabled,\n  .bp3-select select:disabled, .bp3-html-select select.bp3-disabled,\n  .bp3-select select.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-html-select select:disabled.bp3-active,\n    .bp3-select select:disabled.bp3-active, .bp3-html-select select:disabled.bp3-active:hover,\n    .bp3-select select:disabled.bp3-active:hover, .bp3-html-select select.bp3-disabled.bp3-active,\n    .bp3-select select.bp3-disabled.bp3-active, .bp3-html-select select.bp3-disabled.bp3-active:hover,\n    .bp3-select select.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n\n.bp3-html-select.bp3-minimal select,\n.bp3-select.bp3-minimal select{\n  background:none;\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  .bp3-html-select.bp3-minimal select:hover,\n  .bp3-select.bp3-minimal select:hover{\n    background:rgba(167, 182, 194, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026;\n    text-decoration:none; }\n  .bp3-html-select.bp3-minimal select:active,\n  .bp3-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal select.bp3-active,\n  .bp3-select.bp3-minimal select.bp3-active{\n    background:rgba(115, 134, 148, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026; }\n  .bp3-html-select.bp3-minimal select:disabled,\n  .bp3-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal select:disabled:hover,\n  .bp3-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal select.bp3-disabled,\n  .bp3-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal select.bp3-disabled:hover,\n  .bp3-select.bp3-minimal select.bp3-disabled:hover{\n    background:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n    .bp3-html-select.bp3-minimal select:disabled.bp3-active,\n    .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active{\n      background:rgba(115, 134, 148, 0.3); }\n  .bp3-dark .bp3-html-select.bp3-minimal select, .bp3-html-select.bp3-minimal .bp3-dark select,\n  .bp3-dark .bp3-select.bp3-minimal select, .bp3-select.bp3-minimal .bp3-dark select{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover, .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover{\n      background:rgba(138, 155, 168, 0.15); }\n    .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:rgba(138, 155, 168, 0.3);\n      color:#f5f8fa; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal .bp3-dark select:disabled,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled, .bp3-select.bp3-minimal .bp3-dark select:disabled, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled:hover, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover{\n      background:none;\n      color:rgba(167, 182, 194, 0.6);\n      cursor:not-allowed; }\n      .bp3-dark .bp3-html-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active{\n        background:rgba(138, 155, 168, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-primary,\n  .bp3-select.bp3-minimal select.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover{\n      background:rgba(19, 124, 189, 0.15);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:rgba(19, 124, 189, 0.3);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled{\n      background:none;\n      color:rgba(16, 107, 163, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active{\n        background:rgba(19, 124, 189, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n      stroke:#106ba3; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary{\n      color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.2);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(72, 175, 240, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-success,\n  .bp3-select.bp3-minimal select.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover{\n      background:rgba(15, 153, 96, 0.15);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:rgba(15, 153, 96, 0.3);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled{\n      background:none;\n      color:rgba(13, 128, 80, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active{\n        background:rgba(15, 153, 96, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n      stroke:#0d8050; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success{\n      color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.2);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(61, 204, 145, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-warning,\n  .bp3-select.bp3-minimal select.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover{\n      background:rgba(217, 130, 43, 0.15);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:rgba(217, 130, 43, 0.3);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled{\n      background:none;\n      color:rgba(191, 115, 38, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active{\n        background:rgba(217, 130, 43, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n      stroke:#bf7326; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning{\n      color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.2);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(255, 179, 102, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-danger,\n  .bp3-select.bp3-minimal select.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover{\n      background:rgba(219, 55, 55, 0.15);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:rgba(219, 55, 55, 0.3);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled{\n      background:none;\n      color:rgba(194, 48, 48, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active{\n        background:rgba(219, 55, 55, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n      stroke:#c23030; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger{\n      color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.2);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(255, 115, 115, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n\n.bp3-html-select.bp3-large select,\n.bp3-select.bp3-large select{\n  font-size:16px;\n  height:40px;\n  padding-right:35px; }\n\n.bp3-dark .bp3-html-select select, .bp3-dark .bp3-select select{\n  background-color:#394b59;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n  color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover, .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    background-color:#202b33;\n    background-image:none;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-html-select select:disabled, .bp3-dark .bp3-select select:disabled, .bp3-dark .bp3-html-select select.bp3-disabled, .bp3-dark .bp3-select select.bp3-disabled{\n    background-color:rgba(57, 75, 89, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-html-select select:disabled.bp3-active, .bp3-dark .bp3-select select:disabled.bp3-active, .bp3-dark .bp3-html-select select.bp3-disabled.bp3-active, .bp3-dark .bp3-select select.bp3-disabled.bp3-active{\n      background:rgba(57, 75, 89, 0.7); }\n  .bp3-dark .bp3-html-select select .bp3-button-spinner .bp3-spinner-head, .bp3-dark .bp3-select select .bp3-button-spinner .bp3-spinner-head{\n    background:rgba(16, 22, 26, 0.5);\n    stroke:#8a9ba8; }\n\n.bp3-html-select select:disabled,\n.bp3-select select:disabled{\n  background-color:rgba(206, 217, 224, 0.5);\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-html-select .bp3-icon,\n.bp3-select .bp3-icon, .bp3-select::after{\n  color:#5c7080;\n  pointer-events:none;\n  position:absolute;\n  right:7px;\n  top:7px; }\n  .bp3-html-select .bp3-disabled.bp3-icon,\n  .bp3-select .bp3-disabled.bp3-icon, .bp3-disabled.bp3-select::after{\n    color:rgba(92, 112, 128, 0.6); }\n.bp3-html-select,\n.bp3-select{\n  display:inline-block;\n  letter-spacing:normal;\n  position:relative;\n  vertical-align:middle; }\n  .bp3-html-select select::-ms-expand,\n  .bp3-select select::-ms-expand{\n    display:none; }\n  .bp3-html-select .bp3-icon,\n  .bp3-select .bp3-icon{\n    color:#5c7080; }\n    .bp3-html-select .bp3-icon:hover,\n    .bp3-select .bp3-icon:hover{\n      color:#182026; }\n    .bp3-dark .bp3-html-select .bp3-icon, .bp3-dark\n    .bp3-select .bp3-icon{\n      color:#a7b6c2; }\n      .bp3-dark .bp3-html-select .bp3-icon:hover, .bp3-dark\n      .bp3-select .bp3-icon:hover{\n        color:#f5f8fa; }\n  .bp3-html-select.bp3-large::after,\n  .bp3-html-select.bp3-large .bp3-icon,\n  .bp3-select.bp3-large::after,\n  .bp3-select.bp3-large .bp3-icon{\n    right:12px;\n    top:12px; }\n  .bp3-html-select.bp3-fill,\n  .bp3-html-select.bp3-fill select,\n  .bp3-select.bp3-fill,\n  .bp3-select.bp3-fill select{\n    width:100%; }\n  .bp3-dark .bp3-html-select option, .bp3-dark\n  .bp3-select option{\n    background-color:#30404d;\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select option:disabled, .bp3-dark\n  .bp3-select option:disabled{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-html-select::after, .bp3-dark\n  .bp3-select::after{\n    color:#a7b6c2; }\n\n.bp3-select::after{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  content:\"\"; }\n.bp3-running-text table, table.bp3-html-table{\n  border-spacing:0;\n  font-size:14px; }\n  .bp3-running-text table th, table.bp3-html-table th,\n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    padding:11px;\n    text-align:left;\n    vertical-align:top; }\n  .bp3-running-text table th, table.bp3-html-table th{\n    color:#182026;\n    font-weight:600; }\n  \n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    color:#182026; }\n  .bp3-running-text table tbody tr:first-child th, table.bp3-html-table tbody tr:first-child th,\n  .bp3-running-text table tbody tr:first-child td,\n  table.bp3-html-table tbody tr:first-child td,\n  .bp3-running-text table tfoot tr:first-child th,\n  table.bp3-html-table tfoot tr:first-child th,\n  .bp3-running-text table tfoot tr:first-child td,\n  table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-running-text table th, .bp3-running-text .bp3-dark table th, .bp3-dark table.bp3-html-table th{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table td, .bp3-running-text .bp3-dark table td, .bp3-dark table.bp3-html-table td{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table tbody tr:first-child th, .bp3-running-text .bp3-dark table tbody tr:first-child th, .bp3-dark table.bp3-html-table tbody tr:first-child th,\n  .bp3-dark .bp3-running-text table tbody tr:first-child td,\n  .bp3-running-text .bp3-dark table tbody tr:first-child td,\n  .bp3-dark table.bp3-html-table tbody tr:first-child td,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child th,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child th,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child th,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child td,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child td,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-condensed th,\ntable.bp3-html-table.bp3-html-table-condensed td, table.bp3-html-table.bp3-small th,\ntable.bp3-html-table.bp3-small td{\n  padding-bottom:6px;\n  padding-top:6px; }\n\ntable.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n  background:rgba(191, 204, 214, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n  -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered tbody tr td,\ntable.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n  -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n  table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n    -webkit-box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-interactive tbody tr:hover td{\n  background-color:rgba(191, 204, 214, 0.3);\n  cursor:pointer; }\n\ntable.bp3-html-table.bp3-interactive tbody tr:active td{\n  background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-dark table.bp3-html-table{ }\n  .bp3-dark table.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n    background:rgba(92, 112, 128, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td,\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n      -webkit-box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15);\n              box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:first-child{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:hover td{\n    background-color:rgba(92, 112, 128, 0.3);\n    cursor:pointer; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:active td{\n    background-color:rgba(92, 112, 128, 0.4); }\n\n.bp3-key-combo{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center; }\n  .bp3-key-combo > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-key-combo > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-key-combo::before,\n  .bp3-key-combo > *{\n    margin-right:5px; }\n  .bp3-key-combo:empty::before,\n  .bp3-key-combo > :last-child{\n    margin-right:0; }\n\n.bp3-hotkey-dialog{\n  padding-bottom:0;\n  top:40px; }\n  .bp3-hotkey-dialog .bp3-dialog-body{\n    margin:0;\n    padding:0; }\n  .bp3-hotkey-dialog .bp3-hotkey-label{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1; }\n\n.bp3-hotkey-column{\n  margin:auto;\n  max-height:80vh;\n  overflow-y:auto;\n  padding:30px; }\n  .bp3-hotkey-column .bp3-heading{\n    margin-bottom:20px; }\n    .bp3-hotkey-column .bp3-heading:not(:first-child){\n      margin-top:40px; }\n\n.bp3-hotkey{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:justify;\n      -ms-flex-pack:justify;\n          justify-content:space-between;\n  margin-left:0;\n  margin-right:0; }\n  .bp3-hotkey:not(:last-child){\n    margin-bottom:10px; }\n.bp3-icon{\n  display:inline-block;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  vertical-align:text-bottom; }\n  .bp3-icon:not(:empty)::before{\n    content:\"\" !important;\n    content:unset !important; }\n  .bp3-icon > svg{\n    display:block; }\n    .bp3-icon > svg:not([fill]){\n      fill:currentColor; }\n\n.bp3-icon.bp3-intent-primary, .bp3-icon-standard.bp3-intent-primary, .bp3-icon-large.bp3-intent-primary{\n  color:#106ba3; }\n  .bp3-dark .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-icon-large.bp3-intent-primary{\n    color:#48aff0; }\n\n.bp3-icon.bp3-intent-success, .bp3-icon-standard.bp3-intent-success, .bp3-icon-large.bp3-intent-success{\n  color:#0d8050; }\n  .bp3-dark .bp3-icon.bp3-intent-success, .bp3-dark .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-icon-large.bp3-intent-success{\n    color:#3dcc91; }\n\n.bp3-icon.bp3-intent-warning, .bp3-icon-standard.bp3-intent-warning, .bp3-icon-large.bp3-intent-warning{\n  color:#bf7326; }\n  .bp3-dark .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-icon-large.bp3-intent-warning{\n    color:#ffb366; }\n\n.bp3-icon.bp3-intent-danger, .bp3-icon-standard.bp3-intent-danger, .bp3-icon-large.bp3-intent-danger{\n  color:#c23030; }\n  .bp3-dark .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-icon-large.bp3-intent-danger{\n    color:#ff7373; }\n\nspan.bp3-icon-standard{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon-large{\n  font-family:\"Icons20\", sans-serif;\n  font-size:20px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon:empty{\n  font-family:\"Icons20\";\n  font-size:inherit;\n  font-style:normal;\n  font-weight:400;\n  line-height:1; }\n  span.bp3-icon:empty::before{\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased; }\n\n.bp3-icon-add::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-artifact::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-folder::before{\n  content:\"\"; }\n\n.bp3-icon-airplane::before{\n  content:\"\"; }\n\n.bp3-icon-align-center::before{\n  content:\"\"; }\n\n.bp3-icon-align-justify::before{\n  content:\"\"; }\n\n.bp3-icon-align-left::before{\n  content:\"\"; }\n\n.bp3-icon-align-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-horizontal-center::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-left::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-top::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-vertical-center::before{\n  content:\"\"; }\n\n.bp3-icon-annotation::before{\n  content:\"\"; }\n\n.bp3-icon-application::before{\n  content:\"\"; }\n\n.bp3-icon-applications::before{\n  content:\"\"; }\n\n.bp3-icon-archive::before{\n  content:\"\"; }\n\n.bp3-icon-arrow-bottom-left::before{\n  content:\"↙\"; }\n\n.bp3-icon-arrow-bottom-right::before{\n  content:\"↘\"; }\n\n.bp3-icon-arrow-down::before{\n  content:\"↓\"; }\n\n.bp3-icon-arrow-left::before{\n  content:\"←\"; }\n\n.bp3-icon-arrow-right::before{\n  content:\"→\"; }\n\n.bp3-icon-arrow-top-left::before{\n  content:\"↖\"; }\n\n.bp3-icon-arrow-top-right::before{\n  content:\"↗\"; }\n\n.bp3-icon-arrow-up::before{\n  content:\"↑\"; }\n\n.bp3-icon-arrows-horizontal::before{\n  content:\"↔\"; }\n\n.bp3-icon-arrows-vertical::before{\n  content:\"↕\"; }\n\n.bp3-icon-asterisk::before{\n  content:\"*\"; }\n\n.bp3-icon-automatic-updates::before{\n  content:\"\"; }\n\n.bp3-icon-badge::before{\n  content:\"\"; }\n\n.bp3-icon-ban-circle::before{\n  content:\"\"; }\n\n.bp3-icon-bank-account::before{\n  content:\"\"; }\n\n.bp3-icon-barcode::before{\n  content:\"\"; }\n\n.bp3-icon-blank::before{\n  content:\"\"; }\n\n.bp3-icon-blocked-person::before{\n  content:\"\"; }\n\n.bp3-icon-bold::before{\n  content:\"\"; }\n\n.bp3-icon-book::before{\n  content:\"\"; }\n\n.bp3-icon-bookmark::before{\n  content:\"\"; }\n\n.bp3-icon-box::before{\n  content:\"\"; }\n\n.bp3-icon-briefcase::before{\n  content:\"\"; }\n\n.bp3-icon-bring-data::before{\n  content:\"\"; }\n\n.bp3-icon-build::before{\n  content:\"\"; }\n\n.bp3-icon-calculator::before{\n  content:\"\"; }\n\n.bp3-icon-calendar::before{\n  content:\"\"; }\n\n.bp3-icon-camera::before{\n  content:\"\"; }\n\n.bp3-icon-caret-down::before{\n  content:\"⌄\"; }\n\n.bp3-icon-caret-left::before{\n  content:\"〈\"; }\n\n.bp3-icon-caret-right::before{\n  content:\"〉\"; }\n\n.bp3-icon-caret-up::before{\n  content:\"⌃\"; }\n\n.bp3-icon-cell-tower::before{\n  content:\"\"; }\n\n.bp3-icon-changes::before{\n  content:\"\"; }\n\n.bp3-icon-chart::before{\n  content:\"\"; }\n\n.bp3-icon-chat::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-backward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-forward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-circle::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-down::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-left::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-right::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-up::before{\n  content:\"\"; }\n\n.bp3-icon-citation::before{\n  content:\"\"; }\n\n.bp3-icon-clean::before{\n  content:\"\"; }\n\n.bp3-icon-clipboard::before{\n  content:\"\"; }\n\n.bp3-icon-cloud::before{\n  content:\"☁\"; }\n\n.bp3-icon-cloud-download::before{\n  content:\"\"; }\n\n.bp3-icon-cloud-upload::before{\n  content:\"\"; }\n\n.bp3-icon-code::before{\n  content:\"\"; }\n\n.bp3-icon-code-block::before{\n  content:\"\"; }\n\n.bp3-icon-cog::before{\n  content:\"\"; }\n\n.bp3-icon-collapse-all::before{\n  content:\"\"; }\n\n.bp3-icon-column-layout::before{\n  content:\"\"; }\n\n.bp3-icon-comment::before{\n  content:\"\"; }\n\n.bp3-icon-comparison::before{\n  content:\"\"; }\n\n.bp3-icon-compass::before{\n  content:\"\"; }\n\n.bp3-icon-compressed::before{\n  content:\"\"; }\n\n.bp3-icon-confirm::before{\n  content:\"\"; }\n\n.bp3-icon-console::before{\n  content:\"\"; }\n\n.bp3-icon-contrast::before{\n  content:\"\"; }\n\n.bp3-icon-control::before{\n  content:\"\"; }\n\n.bp3-icon-credit-card::before{\n  content:\"\"; }\n\n.bp3-icon-cross::before{\n  content:\"✗\"; }\n\n.bp3-icon-crown::before{\n  content:\"\"; }\n\n.bp3-icon-cube::before{\n  content:\"\"; }\n\n.bp3-icon-cube-add::before{\n  content:\"\"; }\n\n.bp3-icon-cube-remove::before{\n  content:\"\"; }\n\n.bp3-icon-curved-range-chart::before{\n  content:\"\"; }\n\n.bp3-icon-cut::before{\n  content:\"\"; }\n\n.bp3-icon-dashboard::before{\n  content:\"\"; }\n\n.bp3-icon-data-lineage::before{\n  content:\"\"; }\n\n.bp3-icon-database::before{\n  content:\"\"; }\n\n.bp3-icon-delete::before{\n  content:\"\"; }\n\n.bp3-icon-delta::before{\n  content:\"Δ\"; }\n\n.bp3-icon-derive-column::before{\n  content:\"\"; }\n\n.bp3-icon-desktop::before{\n  content:\"\"; }\n\n.bp3-icon-diagnosis::before{\n  content:\"\"; }\n\n.bp3-icon-diagram-tree::before{\n  content:\"\"; }\n\n.bp3-icon-direction-left::before{\n  content:\"\"; }\n\n.bp3-icon-direction-right::before{\n  content:\"\"; }\n\n.bp3-icon-disable::before{\n  content:\"\"; }\n\n.bp3-icon-document::before{\n  content:\"\"; }\n\n.bp3-icon-document-open::before{\n  content:\"\"; }\n\n.bp3-icon-document-share::before{\n  content:\"\"; }\n\n.bp3-icon-dollar::before{\n  content:\"$\"; }\n\n.bp3-icon-dot::before{\n  content:\"•\"; }\n\n.bp3-icon-double-caret-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-double-caret-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-doughnut-chart::before{\n  content:\"\"; }\n\n.bp3-icon-download::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-draw::before{\n  content:\"\"; }\n\n.bp3-icon-drive-time::before{\n  content:\"\"; }\n\n.bp3-icon-duplicate::before{\n  content:\"\"; }\n\n.bp3-icon-edit::before{\n  content:\"✎\"; }\n\n.bp3-icon-eject::before{\n  content:\"⏏\"; }\n\n.bp3-icon-endorsed::before{\n  content:\"\"; }\n\n.bp3-icon-envelope::before{\n  content:\"✉\"; }\n\n.bp3-icon-equals::before{\n  content:\"\"; }\n\n.bp3-icon-eraser::before{\n  content:\"\"; }\n\n.bp3-icon-error::before{\n  content:\"\"; }\n\n.bp3-icon-euro::before{\n  content:\"€\"; }\n\n.bp3-icon-exchange::before{\n  content:\"\"; }\n\n.bp3-icon-exclude-row::before{\n  content:\"\"; }\n\n.bp3-icon-expand-all::before{\n  content:\"\"; }\n\n.bp3-icon-export::before{\n  content:\"\"; }\n\n.bp3-icon-eye-off::before{\n  content:\"\"; }\n\n.bp3-icon-eye-on::before{\n  content:\"\"; }\n\n.bp3-icon-eye-open::before{\n  content:\"\"; }\n\n.bp3-icon-fast-backward::before{\n  content:\"\"; }\n\n.bp3-icon-fast-forward::before{\n  content:\"\"; }\n\n.bp3-icon-feed::before{\n  content:\"\"; }\n\n.bp3-icon-feed-subscribed::before{\n  content:\"\"; }\n\n.bp3-icon-film::before{\n  content:\"\"; }\n\n.bp3-icon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-filter-keep::before{\n  content:\"\"; }\n\n.bp3-icon-filter-list::before{\n  content:\"\"; }\n\n.bp3-icon-filter-open::before{\n  content:\"\"; }\n\n.bp3-icon-filter-remove::before{\n  content:\"\"; }\n\n.bp3-icon-flag::before{\n  content:\"⚑\"; }\n\n.bp3-icon-flame::before{\n  content:\"\"; }\n\n.bp3-icon-flash::before{\n  content:\"\"; }\n\n.bp3-icon-floppy-disk::before{\n  content:\"\"; }\n\n.bp3-icon-flow-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flow-end::before{\n  content:\"\"; }\n\n.bp3-icon-flow-linear::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flows::before{\n  content:\"\"; }\n\n.bp3-icon-folder-close::before{\n  content:\"\"; }\n\n.bp3-icon-folder-new::before{\n  content:\"\"; }\n\n.bp3-icon-folder-open::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared-open::before{\n  content:\"\"; }\n\n.bp3-icon-follower::before{\n  content:\"\"; }\n\n.bp3-icon-following::before{\n  content:\"\"; }\n\n.bp3-icon-font::before{\n  content:\"\"; }\n\n.bp3-icon-fork::before{\n  content:\"\"; }\n\n.bp3-icon-form::before{\n  content:\"\"; }\n\n.bp3-icon-full-circle::before{\n  content:\"\"; }\n\n.bp3-icon-full-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-fullscreen::before{\n  content:\"\"; }\n\n.bp3-icon-function::before{\n  content:\"\"; }\n\n.bp3-icon-gantt-chart::before{\n  content:\"\"; }\n\n.bp3-icon-geolocation::before{\n  content:\"\"; }\n\n.bp3-icon-geosearch::before{\n  content:\"\"; }\n\n.bp3-icon-git-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-commit::before{\n  content:\"\"; }\n\n.bp3-icon-git-merge::before{\n  content:\"\"; }\n\n.bp3-icon-git-new-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-pull::before{\n  content:\"\"; }\n\n.bp3-icon-git-push::before{\n  content:\"\"; }\n\n.bp3-icon-git-repo::before{\n  content:\"\"; }\n\n.bp3-icon-glass::before{\n  content:\"\"; }\n\n.bp3-icon-globe::before{\n  content:\"\"; }\n\n.bp3-icon-globe-network::before{\n  content:\"\"; }\n\n.bp3-icon-graph::before{\n  content:\"\"; }\n\n.bp3-icon-graph-remove::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-grid::before{\n  content:\"\"; }\n\n.bp3-icon-grid-view::before{\n  content:\"\"; }\n\n.bp3-icon-group-objects::before{\n  content:\"\"; }\n\n.bp3-icon-grouped-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-hand::before{\n  content:\"\"; }\n\n.bp3-icon-hand-down::before{\n  content:\"\"; }\n\n.bp3-icon-hand-left::before{\n  content:\"\"; }\n\n.bp3-icon-hand-right::before{\n  content:\"\"; }\n\n.bp3-icon-hand-up::before{\n  content:\"\"; }\n\n.bp3-icon-header::before{\n  content:\"\"; }\n\n.bp3-icon-header-one::before{\n  content:\"\"; }\n\n.bp3-icon-header-two::before{\n  content:\"\"; }\n\n.bp3-icon-headset::before{\n  content:\"\"; }\n\n.bp3-icon-heart::before{\n  content:\"♥\"; }\n\n.bp3-icon-heart-broken::before{\n  content:\"\"; }\n\n.bp3-icon-heat-grid::before{\n  content:\"\"; }\n\n.bp3-icon-heatmap::before{\n  content:\"\"; }\n\n.bp3-icon-help::before{\n  content:\"?\"; }\n\n.bp3-icon-helper-management::before{\n  content:\"\"; }\n\n.bp3-icon-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-history::before{\n  content:\"\"; }\n\n.bp3-icon-home::before{\n  content:\"⌂\"; }\n\n.bp3-icon-horizontal-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-id-number::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-left::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-right::before{\n  content:\"\"; }\n\n.bp3-icon-import::before{\n  content:\"\"; }\n\n.bp3-icon-inbox::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-geo::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-search::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-update::before{\n  content:\"\"; }\n\n.bp3-icon-info-sign::before{\n  content:\"ℹ\"; }\n\n.bp3-icon-inheritance::before{\n  content:\"\"; }\n\n.bp3-icon-inner-join::before{\n  content:\"\"; }\n\n.bp3-icon-insert::before{\n  content:\"\"; }\n\n.bp3-icon-intersection::before{\n  content:\"\"; }\n\n.bp3-icon-ip-address::before{\n  content:\"\"; }\n\n.bp3-icon-issue::before{\n  content:\"\"; }\n\n.bp3-icon-issue-closed::before{\n  content:\"\"; }\n\n.bp3-icon-issue-new::before{\n  content:\"\"; }\n\n.bp3-icon-italic::before{\n  content:\"\"; }\n\n.bp3-icon-join-table::before{\n  content:\"\"; }\n\n.bp3-icon-key::before{\n  content:\"\"; }\n\n.bp3-icon-key-backspace::before{\n  content:\"\"; }\n\n.bp3-icon-key-command::before{\n  content:\"\"; }\n\n.bp3-icon-key-control::before{\n  content:\"\"; }\n\n.bp3-icon-key-delete::before{\n  content:\"\"; }\n\n.bp3-icon-key-enter::before{\n  content:\"\"; }\n\n.bp3-icon-key-escape::before{\n  content:\"\"; }\n\n.bp3-icon-key-option::before{\n  content:\"\"; }\n\n.bp3-icon-key-shift::before{\n  content:\"\"; }\n\n.bp3-icon-key-tab::before{\n  content:\"\"; }\n\n.bp3-icon-known-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-lab-test::before{\n  content:\"\"; }\n\n.bp3-icon-label::before{\n  content:\"\"; }\n\n.bp3-icon-layer::before{\n  content:\"\"; }\n\n.bp3-icon-layers::before{\n  content:\"\"; }\n\n.bp3-icon-layout::before{\n  content:\"\"; }\n\n.bp3-icon-layout-auto::before{\n  content:\"\"; }\n\n.bp3-icon-layout-balloon::before{\n  content:\"\"; }\n\n.bp3-icon-layout-circle::before{\n  content:\"\"; }\n\n.bp3-icon-layout-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-group-by::before{\n  content:\"\"; }\n\n.bp3-icon-layout-hierarchy::before{\n  content:\"\"; }\n\n.bp3-icon-layout-linear::before{\n  content:\"\"; }\n\n.bp3-icon-layout-skew-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-sorted-clusters::before{\n  content:\"\"; }\n\n.bp3-icon-learning::before{\n  content:\"\"; }\n\n.bp3-icon-left-join::before{\n  content:\"\"; }\n\n.bp3-icon-less-than::before{\n  content:\"\"; }\n\n.bp3-icon-less-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-lifesaver::before{\n  content:\"\"; }\n\n.bp3-icon-lightbulb::before{\n  content:\"\"; }\n\n.bp3-icon-link::before{\n  content:\"\"; }\n\n.bp3-icon-list::before{\n  content:\"☰\"; }\n\n.bp3-icon-list-columns::before{\n  content:\"\"; }\n\n.bp3-icon-list-detail-view::before{\n  content:\"\"; }\n\n.bp3-icon-locate::before{\n  content:\"\"; }\n\n.bp3-icon-lock::before{\n  content:\"\"; }\n\n.bp3-icon-log-in::before{\n  content:\"\"; }\n\n.bp3-icon-log-out::before{\n  content:\"\"; }\n\n.bp3-icon-manual::before{\n  content:\"\"; }\n\n.bp3-icon-manually-entered-data::before{\n  content:\"\"; }\n\n.bp3-icon-map::before{\n  content:\"\"; }\n\n.bp3-icon-map-create::before{\n  content:\"\"; }\n\n.bp3-icon-map-marker::before{\n  content:\"\"; }\n\n.bp3-icon-maximize::before{\n  content:\"\"; }\n\n.bp3-icon-media::before{\n  content:\"\"; }\n\n.bp3-icon-menu::before{\n  content:\"\"; }\n\n.bp3-icon-menu-closed::before{\n  content:\"\"; }\n\n.bp3-icon-menu-open::before{\n  content:\"\"; }\n\n.bp3-icon-merge-columns::before{\n  content:\"\"; }\n\n.bp3-icon-merge-links::before{\n  content:\"\"; }\n\n.bp3-icon-minimize::before{\n  content:\"\"; }\n\n.bp3-icon-minus::before{\n  content:\"−\"; }\n\n.bp3-icon-mobile-phone::before{\n  content:\"\"; }\n\n.bp3-icon-mobile-video::before{\n  content:\"\"; }\n\n.bp3-icon-moon::before{\n  content:\"\"; }\n\n.bp3-icon-more::before{\n  content:\"\"; }\n\n.bp3-icon-mountain::before{\n  content:\"\"; }\n\n.bp3-icon-move::before{\n  content:\"\"; }\n\n.bp3-icon-mugshot::before{\n  content:\"\"; }\n\n.bp3-icon-multi-select::before{\n  content:\"\"; }\n\n.bp3-icon-music::before{\n  content:\"\"; }\n\n.bp3-icon-new-drawing::before{\n  content:\"\"; }\n\n.bp3-icon-new-grid-item::before{\n  content:\"\"; }\n\n.bp3-icon-new-layer::before{\n  content:\"\"; }\n\n.bp3-icon-new-layers::before{\n  content:\"\"; }\n\n.bp3-icon-new-link::before{\n  content:\"\"; }\n\n.bp3-icon-new-object::before{\n  content:\"\"; }\n\n.bp3-icon-new-person::before{\n  content:\"\"; }\n\n.bp3-icon-new-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-new-text-box::before{\n  content:\"\"; }\n\n.bp3-icon-ninja::before{\n  content:\"\"; }\n\n.bp3-icon-not-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-notifications::before{\n  content:\"\"; }\n\n.bp3-icon-notifications-updated::before{\n  content:\"\"; }\n\n.bp3-icon-numbered-list::before{\n  content:\"\"; }\n\n.bp3-icon-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-office::before{\n  content:\"\"; }\n\n.bp3-icon-offline::before{\n  content:\"\"; }\n\n.bp3-icon-oil-field::before{\n  content:\"\"; }\n\n.bp3-icon-one-column::before{\n  content:\"\"; }\n\n.bp3-icon-outdated::before{\n  content:\"\"; }\n\n.bp3-icon-page-layout::before{\n  content:\"\"; }\n\n.bp3-icon-panel-stats::before{\n  content:\"\"; }\n\n.bp3-icon-panel-table::before{\n  content:\"\"; }\n\n.bp3-icon-paperclip::before{\n  content:\"\"; }\n\n.bp3-icon-paragraph::before{\n  content:\"\"; }\n\n.bp3-icon-path::before{\n  content:\"\"; }\n\n.bp3-icon-path-search::before{\n  content:\"\"; }\n\n.bp3-icon-pause::before{\n  content:\"\"; }\n\n.bp3-icon-people::before{\n  content:\"\"; }\n\n.bp3-icon-percentage::before{\n  content:\"\"; }\n\n.bp3-icon-person::before{\n  content:\"\"; }\n\n.bp3-icon-phone::before{\n  content:\"☎\"; }\n\n.bp3-icon-pie-chart::before{\n  content:\"\"; }\n\n.bp3-icon-pin::before{\n  content:\"\"; }\n\n.bp3-icon-pivot::before{\n  content:\"\"; }\n\n.bp3-icon-pivot-table::before{\n  content:\"\"; }\n\n.bp3-icon-play::before{\n  content:\"\"; }\n\n.bp3-icon-plus::before{\n  content:\"+\"; }\n\n.bp3-icon-polygon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-power::before{\n  content:\"\"; }\n\n.bp3-icon-predictive-analysis::before{\n  content:\"\"; }\n\n.bp3-icon-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-presentation::before{\n  content:\"\"; }\n\n.bp3-icon-print::before{\n  content:\"⎙\"; }\n\n.bp3-icon-projects::before{\n  content:\"\"; }\n\n.bp3-icon-properties::before{\n  content:\"\"; }\n\n.bp3-icon-property::before{\n  content:\"\"; }\n\n.bp3-icon-publish-function::before{\n  content:\"\"; }\n\n.bp3-icon-pulse::before{\n  content:\"\"; }\n\n.bp3-icon-random::before{\n  content:\"\"; }\n\n.bp3-icon-record::before{\n  content:\"\"; }\n\n.bp3-icon-redo::before{\n  content:\"\"; }\n\n.bp3-icon-refresh::before{\n  content:\"\"; }\n\n.bp3-icon-regression-chart::before{\n  content:\"\"; }\n\n.bp3-icon-remove::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-repeat::before{\n  content:\"\"; }\n\n.bp3-icon-reset::before{\n  content:\"\"; }\n\n.bp3-icon-resolve::before{\n  content:\"\"; }\n\n.bp3-icon-rig::before{\n  content:\"\"; }\n\n.bp3-icon-right-join::before{\n  content:\"\"; }\n\n.bp3-icon-ring::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-document::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-page::before{\n  content:\"\"; }\n\n.bp3-icon-satellite::before{\n  content:\"\"; }\n\n.bp3-icon-saved::before{\n  content:\"\"; }\n\n.bp3-icon-scatter-plot::before{\n  content:\"\"; }\n\n.bp3-icon-search::before{\n  content:\"\"; }\n\n.bp3-icon-search-around::before{\n  content:\"\"; }\n\n.bp3-icon-search-template::before{\n  content:\"\"; }\n\n.bp3-icon-search-text::before{\n  content:\"\"; }\n\n.bp3-icon-segmented-control::before{\n  content:\"\"; }\n\n.bp3-icon-select::before{\n  content:\"\"; }\n\n.bp3-icon-selection::before{\n  content:\"⦿\"; }\n\n.bp3-icon-send-to::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-graph::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-map::before{\n  content:\"\"; }\n\n.bp3-icon-series-add::before{\n  content:\"\"; }\n\n.bp3-icon-series-configuration::before{\n  content:\"\"; }\n\n.bp3-icon-series-derived::before{\n  content:\"\"; }\n\n.bp3-icon-series-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-series-search::before{\n  content:\"\"; }\n\n.bp3-icon-settings::before{\n  content:\"\"; }\n\n.bp3-icon-share::before{\n  content:\"\"; }\n\n.bp3-icon-shield::before{\n  content:\"\"; }\n\n.bp3-icon-shop::before{\n  content:\"\"; }\n\n.bp3-icon-shopping-cart::before{\n  content:\"\"; }\n\n.bp3-icon-signal-search::before{\n  content:\"\"; }\n\n.bp3-icon-sim-card::before{\n  content:\"\"; }\n\n.bp3-icon-slash::before{\n  content:\"\"; }\n\n.bp3-icon-small-cross::before{\n  content:\"\"; }\n\n.bp3-icon-small-minus::before{\n  content:\"\"; }\n\n.bp3-icon-small-plus::before{\n  content:\"\"; }\n\n.bp3-icon-small-tick::before{\n  content:\"\"; }\n\n.bp3-icon-snowflake::before{\n  content:\"\"; }\n\n.bp3-icon-social-media::before{\n  content:\"\"; }\n\n.bp3-icon-sort::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-asc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-split-columns::before{\n  content:\"\"; }\n\n.bp3-icon-square::before{\n  content:\"\"; }\n\n.bp3-icon-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-star::before{\n  content:\"★\"; }\n\n.bp3-icon-star-empty::before{\n  content:\"☆\"; }\n\n.bp3-icon-step-backward::before{\n  content:\"\"; }\n\n.bp3-icon-step-chart::before{\n  content:\"\"; }\n\n.bp3-icon-step-forward::before{\n  content:\"\"; }\n\n.bp3-icon-stop::before{\n  content:\"\"; }\n\n.bp3-icon-stopwatch::before{\n  content:\"\"; }\n\n.bp3-icon-strikethrough::before{\n  content:\"\"; }\n\n.bp3-icon-style::before{\n  content:\"\"; }\n\n.bp3-icon-swap-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-swap-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-circle::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-cross::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-diamond::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-square::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-down::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-up::before{\n  content:\"\"; }\n\n.bp3-icon-tag::before{\n  content:\"\"; }\n\n.bp3-icon-take-action::before{\n  content:\"\"; }\n\n.bp3-icon-taxi::before{\n  content:\"\"; }\n\n.bp3-icon-text-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-th::before{\n  content:\"\"; }\n\n.bp3-icon-th-derived::before{\n  content:\"\"; }\n\n.bp3-icon-th-disconnect::before{\n  content:\"\"; }\n\n.bp3-icon-th-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-th-list::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-down::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-up::before{\n  content:\"\"; }\n\n.bp3-icon-tick::before{\n  content:\"✓\"; }\n\n.bp3-icon-tick-circle::before{\n  content:\"\"; }\n\n.bp3-icon-time::before{\n  content:\"⏲\"; }\n\n.bp3-icon-timeline-area-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-events::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-line-chart::before{\n  content:\"\"; }\n\n.bp3-icon-tint::before{\n  content:\"\"; }\n\n.bp3-icon-torch::before{\n  content:\"\"; }\n\n.bp3-icon-tractor::before{\n  content:\"\"; }\n\n.bp3-icon-train::before{\n  content:\"\"; }\n\n.bp3-icon-translate::before{\n  content:\"\"; }\n\n.bp3-icon-trash::before{\n  content:\"\"; }\n\n.bp3-icon-tree::before{\n  content:\"\"; }\n\n.bp3-icon-trending-down::before{\n  content:\"\"; }\n\n.bp3-icon-trending-up::before{\n  content:\"\"; }\n\n.bp3-icon-truck::before{\n  content:\"\"; }\n\n.bp3-icon-two-columns::before{\n  content:\"\"; }\n\n.bp3-icon-unarchive::before{\n  content:\"\"; }\n\n.bp3-icon-underline::before{\n  content:\"⎁\"; }\n\n.bp3-icon-undo::before{\n  content:\"⎌\"; }\n\n.bp3-icon-ungroup-objects::before{\n  content:\"\"; }\n\n.bp3-icon-unknown-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-unlock::before{\n  content:\"\"; }\n\n.bp3-icon-unpin::before{\n  content:\"\"; }\n\n.bp3-icon-unresolve::before{\n  content:\"\"; }\n\n.bp3-icon-updated::before{\n  content:\"\"; }\n\n.bp3-icon-upload::before{\n  content:\"\"; }\n\n.bp3-icon-user::before{\n  content:\"\"; }\n\n.bp3-icon-variable::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-video::before{\n  content:\"\"; }\n\n.bp3-icon-volume-down::before{\n  content:\"\"; }\n\n.bp3-icon-volume-off::before{\n  content:\"\"; }\n\n.bp3-icon-volume-up::before{\n  content:\"\"; }\n\n.bp3-icon-walk::before{\n  content:\"\"; }\n\n.bp3-icon-warning-sign::before{\n  content:\"\"; }\n\n.bp3-icon-waterfall-chart::before{\n  content:\"\"; }\n\n.bp3-icon-widget::before{\n  content:\"\"; }\n\n.bp3-icon-widget-button::before{\n  content:\"\"; }\n\n.bp3-icon-widget-footer::before{\n  content:\"\"; }\n\n.bp3-icon-widget-header::before{\n  content:\"\"; }\n\n.bp3-icon-wrench::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-in::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-out::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-to-fit::before{\n  content:\"\"; }\n.bp3-submenu > .bp3-popover-wrapper{\n  display:block; }\n\n.bp3-submenu .bp3-popover-target{\n  display:block; }\n  .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{ }\n\n.bp3-submenu.bp3-popover{\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0 5px; }\n  .bp3-submenu.bp3-popover > .bp3-popover-content{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-submenu.bp3-popover, .bp3-submenu.bp3-popover.bp3-dark{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-dark .bp3-submenu.bp3-popover > .bp3-popover-content, .bp3-submenu.bp3-popover.bp3-dark > .bp3-popover-content{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n.bp3-menu{\n  background:#ffffff;\n  border-radius:3px;\n  color:#182026;\n  list-style:none;\n  margin:0;\n  min-width:180px;\n  padding:5px;\n  text-align:left; }\n\n.bp3-menu-divider{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px; }\n  .bp3-dark .bp3-menu-divider{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-menu-item{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  border-radius:2px;\n  color:inherit;\n  line-height:20px;\n  padding:5px 7px;\n  text-decoration:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-menu-item > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-menu-item > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > *{\n    margin-right:7px; }\n  .bp3-menu-item:empty::before,\n  .bp3-menu-item > :last-child{\n    margin-right:0; }\n  .bp3-menu-item > .bp3-fill{\n    word-break:break-word; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    background-color:rgba(167, 182, 194, 0.3);\n    cursor:pointer;\n    text-decoration:none; }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-dark .bp3-menu-item{\n    color:inherit; }\n    .bp3-dark .bp3-menu-item:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n      background-color:rgba(138, 155, 168, 0.15);\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-disabled{\n      background-color:inherit;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-menu-item.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-primary::before, .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary:active, .bp3-menu-item.bp3-intent-primary:active::before, .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-success::before, .bp3-menu-item.bp3-intent-success::after,\n    .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-menu-item.bp3-intent-success:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success:active, .bp3-menu-item.bp3-intent-success:active::before, .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-warning::before, .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning:active, .bp3-menu-item.bp3-intent-warning:active::before, .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-danger::before, .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger:active, .bp3-menu-item.bp3-intent-danger:active::before, .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    margin-right:7px; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > .bp3-icon{\n    color:#5c7080;\n    margin-top:2px; }\n  .bp3-menu-item .bp3-menu-item-label{\n    color:#5c7080; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    color:inherit; }\n  .bp3-menu-item.bp3-active, .bp3-menu-item:active{\n    background-color:rgba(115, 134, 148, 0.3); }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit !important;\n    color:rgba(92, 112, 128, 0.6) !important;\n    cursor:not-allowed !important;\n    outline:none !important; }\n    .bp3-menu-item.bp3-disabled::before,\n    .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-large .bp3-menu-item{\n    font-size:16px;\n    line-height:22px;\n    padding:9px 7px; }\n    .bp3-large .bp3-menu-item .bp3-icon{\n      margin-top:3px; }\n    .bp3-large .bp3-menu-item::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      margin-right:10px;\n      margin-top:1px; }\n\nbutton.bp3-menu-item{\n  background:none;\n  border:none;\n  text-align:left;\n  width:100%; }\n.bp3-menu-header{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px;\n  cursor:default;\n  padding-left:2px; }\n  .bp3-dark .bp3-menu-header{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n  .bp3-menu-header:first-of-type{\n    border-top:none; }\n  .bp3-menu-header > h6{\n    color:#182026;\n    font-weight:600;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    line-height:17px;\n    margin:0;\n    padding:10px 7px 0 1px; }\n    .bp3-dark .bp3-menu-header > h6{\n      color:#f5f8fa; }\n  .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n  .bp3-large .bp3-menu-header > h6{\n    font-size:18px;\n    padding-bottom:5px;\n    padding-top:15px; }\n  .bp3-large .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n\n.bp3-dark .bp3-menu{\n  background:#30404d;\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-menu-item{ }\n  .bp3-dark .bp3-menu-item.bp3-intent-primary{\n    color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary::before, .bp3-dark .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary:active, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-success{\n    color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success::before, .bp3-dark .bp3-menu-item.bp3-intent-success::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success:active, .bp3-dark .bp3-menu-item.bp3-intent-success:active::before, .bp3-dark .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-warning{\n    color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning::before, .bp3-dark .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning:active, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-danger{\n    color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger::before, .bp3-dark .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger:active, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item::before,\n  .bp3-dark .bp3-menu-item > .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item .bp3-menu-item-label{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item.bp3-active, .bp3-dark .bp3-menu-item:active{\n    background-color:rgba(138, 155, 168, 0.3); }\n  .bp3-dark .bp3-menu-item.bp3-disabled{\n    color:rgba(167, 182, 194, 0.6) !important; }\n    .bp3-dark .bp3-menu-item.bp3-disabled::before,\n    .bp3-dark .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-dark .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(167, 182, 194, 0.6) !important; }\n\n.bp3-dark .bp3-menu-divider,\n.bp3-dark .bp3-menu-header{\n  border-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-dark .bp3-menu-header > h6{\n  color:#f5f8fa; }\n\n.bp3-label .bp3-menu{\n  margin-top:5px; }\n.bp3-navbar{\n  background-color:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  height:50px;\n  padding:0 15px;\n  position:relative;\n  width:100%;\n  z-index:10; }\n  .bp3-navbar.bp3-dark,\n  .bp3-dark .bp3-navbar{\n    background-color:#394b59; }\n  .bp3-navbar.bp3-dark{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-navbar{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-navbar.bp3-fixed-top{\n    left:0;\n    position:fixed;\n    right:0;\n    top:0; }\n\n.bp3-navbar-heading{\n  font-size:16px;\n  margin-right:15px; }\n\n.bp3-navbar-group{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:50px; }\n  .bp3-navbar-group.bp3-align-left{\n    float:left; }\n  .bp3-navbar-group.bp3-align-right{\n    float:right; }\n\n.bp3-navbar-divider{\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  height:20px;\n  margin:0 10px; }\n  .bp3-dark .bp3-navbar-divider{\n    border-left-color:rgba(255, 255, 255, 0.15); }\n.bp3-non-ideal-state{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  height:100%;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  text-align:center;\n  width:100%; }\n  .bp3-non-ideal-state > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-non-ideal-state > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-non-ideal-state::before,\n  .bp3-non-ideal-state > *{\n    margin-bottom:20px; }\n  .bp3-non-ideal-state:empty::before,\n  .bp3-non-ideal-state > :last-child{\n    margin-bottom:0; }\n  .bp3-non-ideal-state > *{\n    max-width:400px; }\n\n.bp3-non-ideal-state-visual{\n  color:rgba(92, 112, 128, 0.6);\n  font-size:60px; }\n  .bp3-dark .bp3-non-ideal-state-visual{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-overflow-list{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:nowrap;\n      flex-wrap:nowrap;\n  min-width:0; }\n\n.bp3-overflow-list-spacer{\n  -ms-flex-negative:1;\n      flex-shrink:1;\n  width:1px; }\n\nbody.bp3-overlay-open{\n  overflow:hidden; }\n\n.bp3-overlay{\n  bottom:0;\n  left:0;\n  position:static;\n  right:0;\n  top:0;\n  z-index:20; }\n  .bp3-overlay:not(.bp3-overlay-open){\n    pointer-events:none; }\n  .bp3-overlay.bp3-overlay-container{\n    overflow:hidden;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-scroll-container{\n    overflow:auto;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-scroll-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-inline{\n    display:inline;\n    overflow:visible; }\n\n.bp3-overlay-content{\n  position:fixed;\n  z-index:20; }\n  .bp3-overlay-inline .bp3-overlay-content,\n  .bp3-overlay-scroll-container .bp3-overlay-content{\n    position:absolute; }\n\n.bp3-overlay-backdrop{\n  bottom:0;\n  left:0;\n  position:fixed;\n  right:0;\n  top:0;\n  opacity:1;\n  background-color:rgba(16, 22, 26, 0.7);\n  overflow:auto;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  z-index:20; }\n  .bp3-overlay-backdrop.bp3-overlay-enter, .bp3-overlay-backdrop.bp3-overlay-appear{\n    opacity:0; }\n  .bp3-overlay-backdrop.bp3-overlay-enter-active, .bp3-overlay-backdrop.bp3-overlay-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop.bp3-overlay-exit{\n    opacity:1; }\n  .bp3-overlay-backdrop.bp3-overlay-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop:focus{\n    outline:none; }\n  .bp3-overlay-inline .bp3-overlay-backdrop{\n    position:absolute; }\n.bp3-panel-stack{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-view{\n    background-color:#30404d; }\n  .bp3-panel-stack-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter, .bp3-panel-stack-push .bp3-panel-stack-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter-active, .bp3-panel-stack-push .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter, .bp3-panel-stack-pop .bp3-panel-stack-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter-active, .bp3-panel-stack-pop .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-panel-stack2{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack2-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack2-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack2-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack2-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack2-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack2-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-view{\n    background-color:#30404d; }\n  .bp3-panel-stack2-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter, .bp3-panel-stack2-push .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter-active, .bp3-panel-stack2-push .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter, .bp3-panel-stack2-pop .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter-active, .bp3-panel-stack2-pop .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-popover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  border-radius:3px;\n  display:inline-block;\n  z-index:20; }\n  .bp3-popover .bp3-popover-arrow{\n    height:30px;\n    position:absolute;\n    width:30px; }\n    .bp3-popover .bp3-popover-arrow::before{\n      height:20px;\n      margin:5px;\n      width:20px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover{\n    margin-bottom:17px;\n    margin-top:-17px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n      bottom:-11px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover{\n    margin-left:17px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n      left:-11px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover{\n    margin-top:17px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n      top:-11px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover{\n    margin-left:-17px;\n    margin-right:17px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n      right:-11px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-popover > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-popover > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n    top:-0.3934px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n    right:-0.3934px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n    left:-0.3934px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n    bottom:-0.3934px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-popover .bp3-popover-content{\n    background:#ffffff;\n    color:inherit; }\n  .bp3-popover .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-popover .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-popover .bp3-popover-arrow-fill{\n    fill:#ffffff; }\n  .bp3-popover-enter > .bp3-popover, .bp3-popover-appear > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3); }\n  .bp3-popover-enter-active > .bp3-popover, .bp3-popover-appear-active > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover-exit > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover .bp3-popover-content{\n    border-radius:3px;\n    position:relative; }\n  .bp3-popover.bp3-popover-content-sizing .bp3-popover-content{\n    max-width:350px;\n    padding:20px; }\n  .bp3-popover-target + .bp3-overlay .bp3-popover.bp3-popover-content-sizing{\n    width:350px; }\n  .bp3-popover.bp3-minimal{\n    margin:0 !important; }\n    .bp3-popover.bp3-minimal .bp3-popover-arrow{\n      display:none; }\n    .bp3-popover.bp3-minimal.bp3-popover{\n      -webkit-transform:scale(1);\n              transform:scale(1); }\n      .bp3-popover-enter > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-enter-active > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n      .bp3-popover-exit > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-exit-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover.bp3-dark,\n  .bp3-dark .bp3-popover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-popover .bp3-popover-content{\n      background:#30404d;\n      color:inherit; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-popover .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-fill{\n      fill:#30404d; }\n\n.bp3-popover-arrow::before{\n  border-radius:2px;\n  content:\"\";\n  display:block;\n  position:absolute;\n  -webkit-transform:rotate(45deg);\n          transform:rotate(45deg); }\n\n.bp3-tether-pinned .bp3-popover-arrow{\n  display:none; }\n\n.bp3-popover-backdrop{\n  background:rgba(255, 255, 255, 0); }\n\n.bp3-transition-container{\n  opacity:1;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  z-index:20; }\n  .bp3-transition-container.bp3-popover-enter, .bp3-transition-container.bp3-popover-appear{\n    opacity:0; }\n  .bp3-transition-container.bp3-popover-enter-active, .bp3-transition-container.bp3-popover-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container.bp3-popover-exit{\n    opacity:1; }\n  .bp3-transition-container.bp3-popover-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container:focus{\n    outline:none; }\n  .bp3-transition-container.bp3-popover-leave .bp3-popover-content{\n    pointer-events:none; }\n  .bp3-transition-container[data-x-out-of-boundaries]{\n    display:none; }\n\nspan.bp3-popover-target{\n  display:inline-block; }\n\n.bp3-popover-wrapper.bp3-fill{\n  width:100%; }\n\n.bp3-portal{\n  left:0;\n  position:absolute;\n  right:0;\n  top:0; }\n@-webkit-keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n@keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n\n.bp3-progress-bar{\n  background:rgba(92, 112, 128, 0.2);\n  border-radius:40px;\n  display:block;\n  height:8px;\n  overflow:hidden;\n  position:relative;\n  width:100%; }\n  .bp3-progress-bar .bp3-progress-meter{\n    background:linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%);\n    background-color:rgba(92, 112, 128, 0.8);\n    background-size:30px 30px;\n    border-radius:40px;\n    height:100%;\n    position:absolute;\n    -webkit-transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:100%; }\n  .bp3-progress-bar:not(.bp3-no-animation):not(.bp3-no-stripes) .bp3-progress-meter{\n    animation:linear-progress-bar-stripes 300ms linear infinite reverse; }\n  .bp3-progress-bar.bp3-no-stripes .bp3-progress-meter{\n    background-image:none; }\n\n.bp3-dark .bp3-progress-bar{\n  background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-progress-bar .bp3-progress-meter{\n    background-color:#8a9ba8; }\n\n.bp3-progress-bar.bp3-intent-primary .bp3-progress-meter{\n  background-color:#137cbd; }\n\n.bp3-progress-bar.bp3-intent-success .bp3-progress-meter{\n  background-color:#0f9960; }\n\n.bp3-progress-bar.bp3-intent-warning .bp3-progress-meter{\n  background-color:#d9822b; }\n\n.bp3-progress-bar.bp3-intent-danger .bp3-progress-meter{\n  background-color:#db3737; }\n@-webkit-keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n@keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n.bp3-skeleton{\n  -webkit-animation:1000ms linear infinite alternate skeleton-glow;\n          animation:1000ms linear infinite alternate skeleton-glow;\n  background:rgba(206, 217, 224, 0.2);\n  background-clip:padding-box !important;\n  border-color:rgba(206, 217, 224, 0.2) !important;\n  border-radius:2px;\n  -webkit-box-shadow:none !important;\n          box-shadow:none !important;\n  color:transparent !important;\n  cursor:default;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-skeleton::before, .bp3-skeleton::after,\n  .bp3-skeleton *{\n    visibility:hidden !important; }\n.bp3-slider{\n  height:40px;\n  min-width:150px;\n  width:100%;\n  cursor:default;\n  outline:none;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-slider:hover{\n    cursor:pointer; }\n  .bp3-slider:active{\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-slider.bp3-disabled{\n    cursor:not-allowed;\n    opacity:0.5; }\n  .bp3-slider.bp3-slider-unlabeled{\n    height:16px; }\n\n.bp3-slider-track,\n.bp3-slider-progress{\n  height:6px;\n  left:0;\n  right:0;\n  top:5px;\n  position:absolute; }\n\n.bp3-slider-track{\n  border-radius:3px;\n  overflow:hidden; }\n\n.bp3-slider-progress{\n  background:rgba(92, 112, 128, 0.2); }\n  .bp3-dark .bp3-slider-progress{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-slider-progress.bp3-intent-primary{\n    background-color:#137cbd; }\n  .bp3-slider-progress.bp3-intent-success{\n    background-color:#0f9960; }\n  .bp3-slider-progress.bp3-intent-warning{\n    background-color:#d9822b; }\n  .bp3-slider-progress.bp3-intent-danger{\n    background-color:#db3737; }\n\n.bp3-slider-handle{\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n  cursor:pointer;\n  height:16px;\n  left:0;\n  position:absolute;\n  top:0;\n  width:16px; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-slider-handle:active, .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-slider-handle:disabled, .bp3-slider-handle.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-slider-handle:disabled.bp3-active, .bp3-slider-handle:disabled.bp3-active:hover, .bp3-slider-handle.bp3-disabled.bp3-active, .bp3-slider-handle.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n  .bp3-slider-handle:focus{\n    z-index:1; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n    cursor:-webkit-grab;\n    cursor:grab;\n    z-index:2; }\n  .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-disabled .bp3-slider-handle{\n    background:#bfccd6;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    pointer-events:none; }\n  .bp3-dark .bp3-slider-handle{\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover, .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-slider-handle:disabled, .bp3-dark .bp3-slider-handle.bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-slider-handle:disabled.bp3-active, .bp3-dark .bp3-slider-handle.bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-slider-handle .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-slider-handle, .bp3-dark .bp3-slider-handle:hover{\n      background-color:#394b59; }\n    .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#293742; }\n  .bp3-dark .bp3-disabled .bp3-slider-handle{\n    background:#5c7080;\n    border-color:#5c7080;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-slider-handle .bp3-slider-label{\n    background:#394b59;\n    border-radius:3px;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n    color:#f5f8fa;\n    margin-left:8px; }\n    .bp3-dark .bp3-slider-handle .bp3-slider-label{\n      background:#e1e8ed;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n      color:#394b59; }\n    .bp3-disabled .bp3-slider-handle .bp3-slider-label{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-slider-handle.bp3-start, .bp3-slider-handle.bp3-end{\n    width:8px; }\n  .bp3-slider-handle.bp3-start{\n    border-bottom-right-radius:0;\n    border-top-right-radius:0; }\n  .bp3-slider-handle.bp3-end{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0;\n    margin-left:8px; }\n    .bp3-slider-handle.bp3-end .bp3-slider-label{\n      margin-left:0; }\n\n.bp3-slider-label{\n  -webkit-transform:translate(-50%, 20px);\n          transform:translate(-50%, 20px);\n  display:inline-block;\n  font-size:12px;\n  line-height:1;\n  padding:2px 5px;\n  position:absolute;\n  vertical-align:top; }\n\n.bp3-slider.bp3-vertical{\n  height:150px;\n  min-width:40px;\n  width:40px; }\n  .bp3-slider.bp3-vertical .bp3-slider-track,\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    bottom:0;\n    height:auto;\n    left:5px;\n    top:0;\n    width:6px; }\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    top:auto; }\n  .bp3-slider.bp3-vertical .bp3-slider-label{\n    -webkit-transform:translate(20px, 50%);\n            transform:translate(20px, 50%); }\n  .bp3-slider.bp3-vertical .bp3-slider-handle{\n    top:auto; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle .bp3-slider-label{\n      margin-left:0;\n      margin-top:-8px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end, .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      height:8px;\n      margin-left:0;\n      width:16px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      border-bottom-right-radius:3px;\n      border-top-left-radius:0; }\n      .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start .bp3-slider-label{\n        -webkit-transform:translate(20px);\n                transform:translate(20px); }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end{\n      border-bottom-left-radius:0;\n      border-bottom-right-radius:0;\n      border-top-left-radius:3px;\n      margin-bottom:8px; }\n\n@-webkit-keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n@keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n.bp3-spinner{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  overflow:visible;\n  vertical-align:middle; }\n  .bp3-spinner svg{\n    display:block; }\n  .bp3-spinner path{\n    fill-opacity:0; }\n  .bp3-spinner .bp3-spinner-head{\n    stroke:rgba(92, 112, 128, 0.8);\n    stroke-linecap:round;\n    -webkit-transform-origin:center;\n            transform-origin:center;\n    -webkit-transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-spinner .bp3-spinner-track{\n    stroke:rgba(92, 112, 128, 0.2); }\n\n.bp3-spinner-animation{\n  -webkit-animation:pt-spinner-animation 500ms linear infinite;\n          animation:pt-spinner-animation 500ms linear infinite; }\n  .bp3-no-spin > .bp3-spinner-animation{\n    -webkit-animation:none;\n            animation:none; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-head{\n  stroke:#8a9ba8; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-track{\n  stroke:rgba(16, 22, 26, 0.5); }\n\n.bp3-spinner.bp3-intent-primary .bp3-spinner-head{\n  stroke:#137cbd; }\n\n.bp3-spinner.bp3-intent-success .bp3-spinner-head{\n  stroke:#0f9960; }\n\n.bp3-spinner.bp3-intent-warning .bp3-spinner-head{\n  stroke:#d9822b; }\n\n.bp3-spinner.bp3-intent-danger .bp3-spinner-head{\n  stroke:#db3737; }\n.bp3-tabs.bp3-vertical{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-list{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab{\n      border-radius:3px;\n      padding:0 10px;\n      width:100%; }\n      .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab[aria-selected=\"true\"]{\n        background-color:rgba(19, 124, 189, 0.2);\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n      background-color:rgba(19, 124, 189, 0.2);\n      border-radius:3px;\n      bottom:0;\n      height:auto;\n      left:0;\n      right:0;\n      top:0; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-panel{\n    margin-top:0;\n    padding-left:20px; }\n\n.bp3-tab-list{\n  -webkit-box-align:end;\n      -ms-flex-align:end;\n          align-items:flex-end;\n  border:none;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  list-style:none;\n  margin:0;\n  padding:0;\n  position:relative; }\n  .bp3-tab-list > *:not(:last-child){\n    margin-right:20px; }\n\n.bp3-tab{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:#182026;\n  cursor:pointer;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  font-size:14px;\n  line-height:30px;\n  max-width:100%;\n  position:relative;\n  vertical-align:top; }\n  .bp3-tab a{\n    color:inherit;\n    display:block;\n    text-decoration:none; }\n  .bp3-tab-indicator-wrapper ~ .bp3-tab{\n    background-color:transparent !important;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important; }\n  .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-tab[aria-selected=\"true\"]{\n    border-radius:0;\n    -webkit-box-shadow:inset 0 -3px 0 #106ba3;\n            box-shadow:inset 0 -3px 0 #106ba3; }\n  .bp3-tab[aria-selected=\"true\"], .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#106ba3; }\n  .bp3-tab:focus{\n    -moz-outline-radius:0; }\n  .bp3-large > .bp3-tab{\n    font-size:16px;\n    line-height:40px; }\n\n.bp3-tab-panel{\n  margin-top:20px; }\n  .bp3-tab-panel[aria-hidden=\"true\"]{\n    display:none; }\n\n.bp3-tab-indicator-wrapper{\n  left:0;\n  pointer-events:none;\n  position:absolute;\n  top:0;\n  -webkit-transform:translateX(0), translateY(0);\n          transform:translateX(0), translateY(0);\n  -webkit-transition:height, width, -webkit-transform;\n  transition:height, width, -webkit-transform;\n  transition:height, transform, width;\n  transition:height, transform, width, -webkit-transform;\n  -webkit-transition-duration:200ms;\n          transition-duration:200ms;\n  -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n          transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n    background-color:#106ba3;\n    bottom:0;\n    height:3px;\n    left:0;\n    position:absolute;\n    right:0; }\n  .bp3-tab-indicator-wrapper.bp3-no-animation{\n    -webkit-transition:none;\n    transition:none; }\n\n.bp3-dark .bp3-tab{\n  color:#f5f8fa; }\n  .bp3-dark .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"]{\n    -webkit-box-shadow:inset 0 -3px 0 #48aff0;\n            box-shadow:inset 0 -3px 0 #48aff0; }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"], .bp3-dark .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#48aff0; }\n\n.bp3-dark .bp3-tab-indicator{\n  background-color:#48aff0; }\n\n.bp3-flex-expander{\n  -webkit-box-flex:1;\n      -ms-flex:1 1;\n          flex:1 1; }\n.bp3-tag{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#5c7080;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:#f5f8fa;\n  font-size:12px;\n  line-height:16px;\n  max-width:100%;\n  min-height:20px;\n  min-width:20px;\n  padding:2px 6px;\n  position:relative; }\n  .bp3-tag.bp3-interactive{\n    cursor:pointer; }\n    .bp3-tag.bp3-interactive:hover{\n      background-color:rgba(92, 112, 128, 0.85); }\n    .bp3-tag.bp3-interactive.bp3-active, .bp3-tag.bp3-interactive:active{\n      background-color:rgba(92, 112, 128, 0.7); }\n  .bp3-tag > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag::before,\n  .bp3-tag > *{\n    margin-right:4px; }\n  .bp3-tag:empty::before,\n  .bp3-tag > :last-child{\n    margin-right:0; }\n  .bp3-tag:focus{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:0;\n    -moz-outline-radius:6px; }\n  .bp3-tag.bp3-round{\n    border-radius:30px;\n    padding-left:8px;\n    padding-right:8px; }\n  .bp3-dark .bp3-tag{\n    background-color:#bfccd6;\n    color:#182026; }\n    .bp3-dark .bp3-tag.bp3-interactive{\n      cursor:pointer; }\n      .bp3-dark .bp3-tag.bp3-interactive:hover{\n        background-color:rgba(191, 204, 214, 0.85); }\n      .bp3-dark .bp3-tag.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-interactive:active{\n        background-color:rgba(191, 204, 214, 0.7); }\n    .bp3-dark .bp3-tag > .bp3-icon, .bp3-dark .bp3-tag .bp3-icon-standard, .bp3-dark .bp3-tag .bp3-icon-large{\n      fill:currentColor; }\n  .bp3-tag > .bp3-icon, .bp3-tag .bp3-icon-standard, .bp3-tag .bp3-icon-large{\n    fill:#ffffff; }\n  .bp3-tag.bp3-large,\n  .bp3-large .bp3-tag{\n    font-size:14px;\n    line-height:20px;\n    min-height:30px;\n    min-width:30px;\n    padding:5px 10px; }\n    .bp3-tag.bp3-large::before,\n    .bp3-tag.bp3-large > *,\n    .bp3-large .bp3-tag::before,\n    .bp3-large .bp3-tag > *{\n      margin-right:7px; }\n    .bp3-tag.bp3-large:empty::before,\n    .bp3-tag.bp3-large > :last-child,\n    .bp3-large .bp3-tag:empty::before,\n    .bp3-large .bp3-tag > :last-child{\n      margin-right:0; }\n    .bp3-tag.bp3-large.bp3-round,\n    .bp3-large .bp3-tag.bp3-round{\n      padding-left:12px;\n      padding-right:12px; }\n  .bp3-tag.bp3-intent-primary{\n    background:#137cbd;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.85); }\n      .bp3-tag.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.7); }\n  .bp3-tag.bp3-intent-success{\n    background:#0f9960;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.85); }\n      .bp3-tag.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.7); }\n  .bp3-tag.bp3-intent-warning{\n    background:#d9822b;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.85); }\n      .bp3-tag.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.7); }\n  .bp3-tag.bp3-intent-danger{\n    background:#db3737;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.85); }\n      .bp3-tag.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.7); }\n  .bp3-tag.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-tag.bp3-minimal > .bp3-icon, .bp3-tag.bp3-minimal .bp3-icon-standard, .bp3-tag.bp3-minimal .bp3-icon-large{\n    fill:#5c7080; }\n  .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n    background-color:rgba(138, 155, 168, 0.2);\n    color:#182026; }\n    .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n        background-color:rgba(92, 112, 128, 0.3); }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n        background-color:rgba(92, 112, 128, 0.4); }\n    .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n      color:#f5f8fa; }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n          background-color:rgba(191, 204, 214, 0.3); }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n          background-color:rgba(191, 204, 214, 0.4); }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) > .bp3-icon, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n        fill:#a7b6c2; }\n  .bp3-tag.bp3-minimal.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15);\n    color:#106ba3; }\n    .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-primary > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-large{\n      fill:#137cbd; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25);\n      color:#48aff0; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n          background-color:rgba(19, 124, 189, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n          background-color:rgba(19, 124, 189, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15);\n    color:#0d8050; }\n    .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-success > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-large{\n      fill:#0f9960; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25);\n      color:#3dcc91; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n          background-color:rgba(15, 153, 96, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n          background-color:rgba(15, 153, 96, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15);\n    color:#bf7326; }\n    .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-warning > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-large{\n      fill:#d9822b; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25);\n      color:#ffb366; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n          background-color:rgba(217, 130, 43, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n          background-color:rgba(217, 130, 43, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15);\n    color:#c23030; }\n    .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-danger > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-large{\n      fill:#db3737; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25);\n      color:#ff7373; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n          background-color:rgba(219, 55, 55, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n          background-color:rgba(219, 55, 55, 0.45); }\n\n.bp3-tag-remove{\n  background:none;\n  border:none;\n  color:inherit;\n  cursor:pointer;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin-bottom:-2px;\n  margin-right:-6px !important;\n  margin-top:-2px;\n  opacity:0.5;\n  padding:2px;\n  padding-left:0; }\n  .bp3-tag-remove:hover{\n    background:none;\n    opacity:0.8;\n    text-decoration:none; }\n  .bp3-tag-remove:active{\n    opacity:1; }\n  .bp3-tag-remove:empty::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    content:\"\"; }\n  .bp3-large .bp3-tag-remove{\n    margin-right:-10px !important;\n    padding:0 5px 0 0; }\n    .bp3-large .bp3-tag-remove:empty::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1; }\n.bp3-tag-input{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  cursor:text;\n  height:auto;\n  line-height:inherit;\n  min-height:30px;\n  padding-left:5px;\n  padding-right:0; }\n  .bp3-tag-input > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag-input > .bp3-tag-input-values{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag-input .bp3-tag-input-icon{\n    color:#5c7080;\n    margin-left:2px;\n    margin-right:7px;\n    margin-top:7px; }\n  .bp3-tag-input .bp3-tag-input-values{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row;\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    -ms-flex-item-align:stretch;\n        align-self:stretch;\n    -ms-flex-wrap:wrap;\n        flex-wrap:wrap;\n    margin-right:7px;\n    margin-top:5px;\n    min-width:0; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      -webkit-box-flex:0;\n          -ms-flex-positive:0;\n              flex-grow:0;\n      -ms-flex-negative:0;\n          flex-shrink:0; }\n    .bp3-tag-input .bp3-tag-input-values > .bp3-fill{\n      -webkit-box-flex:1;\n          -ms-flex-positive:1;\n              flex-grow:1;\n      -ms-flex-negative:1;\n          flex-shrink:1; }\n    .bp3-tag-input .bp3-tag-input-values::before,\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-right:5px; }\n    .bp3-tag-input .bp3-tag-input-values:empty::before,\n    .bp3-tag-input .bp3-tag-input-values > :last-child{\n      margin-right:0; }\n    .bp3-tag-input .bp3-tag-input-values:first-child .bp3-input-ghost:first-child{\n      padding-left:5px; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-bottom:5px; }\n  .bp3-tag-input .bp3-tag{\n    overflow-wrap:break-word; }\n    .bp3-tag-input .bp3-tag.bp3-active{\n      outline:rgba(19, 124, 189, 0.6) auto 2px;\n      outline-offset:0;\n      -moz-outline-radius:6px; }\n  .bp3-tag-input .bp3-input-ghost{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:20px;\n    width:80px; }\n    .bp3-tag-input .bp3-input-ghost:disabled, .bp3-tag-input .bp3-input-ghost.bp3-disabled{\n      cursor:not-allowed; }\n  .bp3-tag-input .bp3-button,\n  .bp3-tag-input .bp3-spinner{\n    margin:3px;\n    margin-left:0; }\n  .bp3-tag-input .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-tag-input.bp3-large{\n    height:auto;\n    min-height:40px; }\n    .bp3-tag-input.bp3-large::before,\n    .bp3-tag-input.bp3-large > *{\n      margin-right:10px; }\n    .bp3-tag-input.bp3-large:empty::before,\n    .bp3-tag-input.bp3-large > :last-child{\n      margin-right:0; }\n    .bp3-tag-input.bp3-large .bp3-tag-input-icon{\n      margin-left:5px;\n      margin-top:10px; }\n    .bp3-tag-input.bp3-large .bp3-input-ghost{\n      line-height:30px; }\n    .bp3-tag-input.bp3-large .bp3-button{\n      min-height:30px;\n      min-width:30px;\n      padding:5px 10px;\n      margin:5px;\n      margin-left:0; }\n    .bp3-tag-input.bp3-large .bp3-spinner{\n      margin:8px;\n      margin-left:0; }\n  .bp3-tag-input.bp3-active{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-tag-input .bp3-tag-input-icon, .bp3-tag-input.bp3-dark .bp3-tag-input-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-tag-input .bp3-input-ghost, .bp3-tag-input.bp3-dark .bp3-input-ghost{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-webkit-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-moz-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost:-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tag-input.bp3-active, .bp3-tag-input.bp3-dark.bp3-active{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-primary, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-success, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-warning, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-danger, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-input-ghost{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0; }\n  .bp3-input-ghost::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:focus{\n    outline:none !important; }\n.bp3-toast{\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:20px 0 0;\n  max-width:500px;\n  min-width:300px;\n  pointer-events:all;\n  position:relative !important; }\n  .bp3-toast.bp3-toast-enter, .bp3-toast.bp3-toast-appear{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active, .bp3-toast.bp3-toast-appear-active{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-enter ~ .bp3-toast, .bp3-toast.bp3-toast-appear ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active ~ .bp3-toast, .bp3-toast.bp3-toast-appear-active ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-exit{\n    opacity:1;\n    -webkit-filter:blur(0);\n            filter:blur(0); }\n  .bp3-toast.bp3-toast-exit-active{\n    opacity:0;\n    -webkit-filter:blur(10px);\n            filter:blur(10px);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:opacity, filter;\n    transition-property:opacity, filter, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast.bp3-toast-exit ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0); }\n  .bp3-toast.bp3-toast-exit-active ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px);\n    -webkit-transition-delay:50ms;\n            transition-delay:50ms;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast .bp3-button-group{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    padding:5px;\n    padding-left:0; }\n  .bp3-toast > .bp3-icon{\n    color:#5c7080;\n    margin:12px;\n    margin-right:0; }\n  .bp3-toast.bp3-dark,\n  .bp3-dark .bp3-toast{\n    background-color:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-toast.bp3-dark > .bp3-icon,\n    .bp3-dark .bp3-toast > .bp3-icon{\n      color:#a7b6c2; }\n  .bp3-toast[class*=\"bp3-intent-\"] a{\n    color:rgba(255, 255, 255, 0.7); }\n    .bp3-toast[class*=\"bp3-intent-\"] a:hover{\n      color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] > .bp3-icon{\n    color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::before,\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button .bp3-icon, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    color:rgba(255, 255, 255, 0.7) !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:focus{\n    outline-color:rgba(255, 255, 255, 0.5); }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:hover{\n    background-color:rgba(255, 255, 255, 0.15) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    background-color:rgba(255, 255, 255, 0.3) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::after{\n    background:rgba(255, 255, 255, 0.3) !important; }\n  .bp3-toast.bp3-intent-primary{\n    background-color:#137cbd;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-success{\n    background-color:#0f9960;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-warning{\n    background-color:#d9822b;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-danger{\n    background-color:#db3737;\n    color:#ffffff; }\n\n.bp3-toast-message{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  padding:11px;\n  word-break:break-word; }\n\n.bp3-toast-container{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box !important;\n  display:-ms-flexbox !important;\n  display:flex !important;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  left:0;\n  overflow:hidden;\n  padding:0 20px 20px;\n  pointer-events:none;\n  right:0;\n  z-index:40; }\n  .bp3-toast-container.bp3-toast-container-in-portal{\n    position:fixed; }\n  .bp3-toast-container.bp3-toast-container-inline{\n    position:absolute; }\n  .bp3-toast-container.bp3-toast-container-top{\n    top:0; }\n  .bp3-toast-container.bp3-toast-container-bottom{\n    bottom:0;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:reverse;\n        -ms-flex-direction:column-reverse;\n            flex-direction:column-reverse;\n    top:auto; }\n  .bp3-toast-container.bp3-toast-container-left{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start; }\n  .bp3-toast-container.bp3-toast-container-right{\n    -webkit-box-align:end;\n        -ms-flex-align:end;\n            align-items:flex-end; }\n\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active) ~ .bp3-toast, .bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active) ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-exit-active ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-leave-active ~ .bp3-toast{\n  -webkit-transform:translateY(60px);\n          transform:translateY(60px); }\n.bp3-tooltip{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1); }\n  .bp3-tooltip .bp3-popover-arrow{\n    height:22px;\n    position:absolute;\n    width:22px; }\n    .bp3-tooltip .bp3-popover-arrow::before{\n      height:14px;\n      margin:4px;\n      width:14px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip{\n    margin-bottom:11px;\n    margin-top:-11px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n      bottom:-8px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip{\n    margin-left:11px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n      left:-8px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip{\n    margin-top:11px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n      top:-8px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip{\n    margin-left:-11px;\n    margin-right:11px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n      right:-8px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-tooltip > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-tooltip > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n    top:-0.22183px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n    right:-0.22183px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n    left:-0.22183px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n    bottom:-0.22183px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-tooltip .bp3-popover-content{\n    background:#394b59;\n    color:#f5f8fa; }\n  .bp3-tooltip .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-tooltip .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-tooltip .bp3-popover-arrow-fill{\n    fill:#394b59; }\n  .bp3-popover-enter > .bp3-tooltip, .bp3-popover-appear > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8); }\n  .bp3-popover-enter-active > .bp3-tooltip, .bp3-popover-appear-active > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover-exit > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tooltip .bp3-popover-content{\n    padding:10px 12px; }\n  .bp3-tooltip.bp3-dark,\n  .bp3-dark .bp3-tooltip{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-tooltip .bp3-popover-content{\n      background:#e1e8ed;\n      color:#394b59; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-fill{\n      fill:#e1e8ed; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-content{\n    background:#137cbd;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-arrow-fill{\n    fill:#137cbd; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-content{\n    background:#0f9960;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-arrow-fill{\n    fill:#0f9960; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-content{\n    background:#d9822b;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-arrow-fill{\n    fill:#d9822b; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-content{\n    background:#db3737;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-arrow-fill{\n    fill:#db3737; }\n\n.bp3-tooltip-indicator{\n  border-bottom:dotted 1px;\n  cursor:help; }\n.bp3-tree .bp3-icon, .bp3-tree .bp3-icon-standard, .bp3-tree .bp3-icon-large{\n  color:#5c7080; }\n  .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-tree .bp3-icon.bp3-intent-success, .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-tree-node-list{\n  list-style:none;\n  margin:0;\n  padding-left:0; }\n\n.bp3-tree-root{\n  background-color:transparent;\n  cursor:default;\n  padding-left:0;\n  position:relative; }\n\n.bp3-tree-node-content-0{\n  padding-left:0px; }\n\n.bp3-tree-node-content-1{\n  padding-left:23px; }\n\n.bp3-tree-node-content-2{\n  padding-left:46px; }\n\n.bp3-tree-node-content-3{\n  padding-left:69px; }\n\n.bp3-tree-node-content-4{\n  padding-left:92px; }\n\n.bp3-tree-node-content-5{\n  padding-left:115px; }\n\n.bp3-tree-node-content-6{\n  padding-left:138px; }\n\n.bp3-tree-node-content-7{\n  padding-left:161px; }\n\n.bp3-tree-node-content-8{\n  padding-left:184px; }\n\n.bp3-tree-node-content-9{\n  padding-left:207px; }\n\n.bp3-tree-node-content-10{\n  padding-left:230px; }\n\n.bp3-tree-node-content-11{\n  padding-left:253px; }\n\n.bp3-tree-node-content-12{\n  padding-left:276px; }\n\n.bp3-tree-node-content-13{\n  padding-left:299px; }\n\n.bp3-tree-node-content-14{\n  padding-left:322px; }\n\n.bp3-tree-node-content-15{\n  padding-left:345px; }\n\n.bp3-tree-node-content-16{\n  padding-left:368px; }\n\n.bp3-tree-node-content-17{\n  padding-left:391px; }\n\n.bp3-tree-node-content-18{\n  padding-left:414px; }\n\n.bp3-tree-node-content-19{\n  padding-left:437px; }\n\n.bp3-tree-node-content-20{\n  padding-left:460px; }\n\n.bp3-tree-node-content{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:30px;\n  padding-right:5px;\n  width:100%; }\n  .bp3-tree-node-content:hover{\n    background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-tree-node-caret,\n.bp3-tree-node-caret-none{\n  min-width:30px; }\n\n.bp3-tree-node-caret{\n  color:#5c7080;\n  cursor:pointer;\n  padding:7px;\n  -webkit-transform:rotate(0deg);\n          transform:rotate(0deg);\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tree-node-caret:hover{\n    color:#182026; }\n  .bp3-dark .bp3-tree-node-caret{\n    color:#a7b6c2; }\n    .bp3-dark .bp3-tree-node-caret:hover{\n      color:#f5f8fa; }\n  .bp3-tree-node-caret.bp3-tree-node-caret-open{\n    -webkit-transform:rotate(90deg);\n            transform:rotate(90deg); }\n  .bp3-tree-node-caret.bp3-icon-standard::before{\n    content:\"\"; }\n\n.bp3-tree-node-icon{\n  margin-right:7px;\n  position:relative; }\n\n.bp3-tree-node-label{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-label span{\n    display:inline; }\n\n.bp3-tree-node-secondary-label{\n  padding:0 5px;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-secondary-label .bp3-popover-wrapper,\n  .bp3-tree-node-secondary-label .bp3-popover-target{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-content{\n  background-color:inherit;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-caret,\n.bp3-tree-node.bp3-disabled .bp3-tree-node-icon{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content,\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-standard, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-large{\n    color:#ffffff; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret::before{\n    color:rgba(255, 255, 255, 0.7); }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret:hover::before{\n    color:#ffffff; }\n\n.bp3-dark .bp3-tree-node-content:hover{\n  background-color:rgba(92, 112, 128, 0.3); }\n\n.bp3-dark .bp3-tree .bp3-icon, .bp3-dark .bp3-tree .bp3-icon-standard, .bp3-dark .bp3-tree .bp3-icon-large{\n  color:#a7b6c2; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-dark .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n.bp3-omnibar{\n  -webkit-filter:blur(0);\n          filter:blur(0);\n  opacity:1;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  left:calc(50% - 250px);\n  top:20vh;\n  width:500px;\n  z-index:21; }\n  .bp3-omnibar.bp3-overlay-enter, .bp3-omnibar.bp3-overlay-appear{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2; }\n  .bp3-omnibar.bp3-overlay-enter-active, .bp3-omnibar.bp3-overlay-appear-active{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar.bp3-overlay-exit{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1; }\n  .bp3-omnibar.bp3-overlay-exit-active{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar .bp3-input{\n    background-color:transparent;\n    border-radius:0; }\n    .bp3-omnibar .bp3-input, .bp3-omnibar .bp3-input:focus{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-omnibar .bp3-menu{\n    background-color:transparent;\n    border-radius:0;\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n    max-height:calc(60vh - 40px);\n    overflow:auto; }\n    .bp3-omnibar .bp3-menu:empty{\n      display:none; }\n  .bp3-dark .bp3-omnibar, .bp3-omnibar.bp3-dark{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-omnibar-overlay .bp3-overlay-backdrop{\n  background-color:rgba(16, 22, 26, 0.2); }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n\n.bp3-multi-select{\n  min-width:150px; }\n\n.bp3-multi-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto; }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* This file was auto-generated by ensureUiComponents() in @jupyterlab/buildutils */\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n/* Icons urls */\n\n:root {\n  --jp-icon-add: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDEzaC02djZoLTJ2LTZINXYtMmg2VjVoMnY2aDZ2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-bug: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0yMCA4aC0yLjgxYy0uNDUtLjc4LTEuMDctMS40NS0xLjgyLTEuOTZMMTcgNC40MSAxNS41OSAzbC0yLjE3IDIuMTdDMTIuOTYgNS4wNiAxMi40OSA1IDEyIDVjLS40OSAwLS45Ni4wNi0xLjQxLjE3TDguNDEgMyA3IDQuNDFsMS42MiAxLjYzQzcuODggNi41NSA3LjI2IDcuMjIgNi44MSA4SDR2MmgyLjA5Yy0uMDUuMzMtLjA5LjY2LS4wOSAxdjFINHYyaDJ2MWMwIC4zNC4wNC42Ny4wOSAxSDR2MmgyLjgxYzEuMDQgMS43OSAyLjk3IDMgNS4xOSAzczQuMTUtMS4yMSA1LjE5LTNIMjB2LTJoLTIuMDljLjA1LS4zMy4wOS0uNjYuMDktMXYtMWgydi0yaC0ydi0xYzAtLjM0LS4wNC0uNjctLjA5LTFIMjBWOHptLTYgOGgtNHYtMmg0djJ6bTAtNGgtNHYtMmg0djJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-build: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE0LjkgMTcuNDVDMTYuMjUgMTcuNDUgMTcuMzUgMTYuMzUgMTcuMzUgMTVDMTcuMzUgMTMuNjUgMTYuMjUgMTIuNTUgMTQuOSAxMi41NUMxMy41NCAxMi41NSAxMi40NSAxMy42NSAxMi40NSAxNUMxMi40NSAxNi4zNSAxMy41NCAxNy40NSAxNC45IDE3LjQ1Wk0yMC4xIDE1LjY4TDIxLjU4IDE2Ljg0QzIxLjcxIDE2Ljk1IDIxLjc1IDE3LjEzIDIxLjY2IDE3LjI5TDIwLjI2IDE5LjcxQzIwLjE3IDE5Ljg2IDIwIDE5LjkyIDE5LjgzIDE5Ljg2TDE4LjA5IDE5LjE2QzE3LjczIDE5LjQ0IDE3LjMzIDE5LjY3IDE2LjkxIDE5Ljg1TDE2LjY0IDIxLjdDMTYuNjIgMjEuODcgMTYuNDcgMjIgMTYuMyAyMkgxMy41QzEzLjMyIDIyIDEzLjE4IDIxLjg3IDEzLjE1IDIxLjdMMTIuODkgMTkuODVDMTIuNDYgMTkuNjcgMTIuMDcgMTkuNDQgMTEuNzEgMTkuMTZMOS45NjAwMiAxOS44NkM5LjgxMDAyIDE5LjkyIDkuNjIwMDIgMTkuODYgOS41NDAwMiAxOS43MUw4LjE0MDAyIDE3LjI5QzguMDUwMDIgMTcuMTMgOC4wOTAwMiAxNi45NSA4LjIyMDAyIDE2Ljg0TDkuNzAwMDIgMTUuNjhMOS42NTAwMSAxNUw5LjcwMDAyIDE0LjMxTDguMjIwMDIgMTMuMTZDOC4wOTAwMiAxMy4wNSA4LjA1MDAyIDEyLjg2IDguMTQwMDIgMTIuNzFMOS41NDAwMiAxMC4yOUM5LjYyMDAyIDEwLjEzIDkuODEwMDIgMTAuMDcgOS45NjAwMiAxMC4xM0wxMS43MSAxMC44NEMxMi4wNyAxMC41NiAxMi40NiAxMC4zMiAxMi44OSAxMC4xNUwxMy4xNSA4LjI4OTk4QzEzLjE4IDguMTI5OTggMTMuMzIgNy45OTk5OCAxMy41IDcuOTk5OThIMTYuM0MxNi40NyA3Ljk5OTk4IDE2LjYyIDguMTI5OTggMTYuNjQgOC4yODk5OEwxNi45MSAxMC4xNUMxNy4zMyAxMC4zMiAxNy43MyAxMC41NiAxOC4wOSAxMC44NEwxOS44MyAxMC4xM0MyMCAxMC4wNyAyMC4xNyAxMC4xMyAyMC4yNiAxMC4yOUwyMS42NiAxMi43MUMyMS43NSAxMi44NiAyMS43MSAxMy4wNSAyMS41OCAxMy4xNkwyMC4xIDE0LjMxTDIwLjE1IDE1TDIwLjEgMTUuNjhaIi8+CiAgICA8cGF0aCBkPSJNNy4zMjk2NiA3LjQ0NDU0QzguMDgzMSA3LjAwOTU0IDguMzM5MzIgNi4wNTMzMiA3LjkwNDMyIDUuMjk5ODhDNy40NjkzMiA0LjU0NjQzIDYuNTA4MSA0LjI4MTU2IDUuNzU0NjYgNC43MTY1NkM1LjM5MTc2IDQuOTI2MDggNS4xMjY5NSA1LjI3MTE4IDUuMDE4NDkgNS42NzU5NEM0LjkxMDA0IDYuMDgwNzEgNC45NjY4MiA2LjUxMTk4IDUuMTc2MzQgNi44NzQ4OEM1LjYxMTM0IDcuNjI4MzIgNi41NzYyMiA3Ljg3OTU0IDcuMzI5NjYgNy40NDQ1NFpNOS42NTcxOCA0Ljc5NTkzTDEwLjg2NzIgNC45NTE3OUMxMC45NjI4IDQuOTc3NDEgMTEuMDQwMiA1LjA3MTMzIDExLjAzODIgNS4xODc5M0wxMS4wMzg4IDYuOTg4OTNDMTEuMDQ1NSA3LjEwMDU0IDEwLjk2MTYgNy4xOTUxOCAxMC44NTUgNy4yMTA1NEw5LjY2MDAxIDcuMzgwODNMOS4yMzkxNSA4LjEzMTg4TDkuNjY5NjEgOS4yNTc0NUM5LjcwNzI5IDkuMzYyNzEgOS42NjkzNCA5LjQ3Njk5IDkuNTc0MDggOS41MzE5OUw4LjAxNTIzIDEwLjQzMkM3LjkxMTMxIDEwLjQ5MiA3Ljc5MzM3IDEwLjQ2NzcgNy43MjEwNSAxMC4zODI0TDYuOTg3NDggOS40MzE4OEw2LjEwOTMxIDkuNDMwODNMNS4zNDcwNCAxMC4zOTA1QzUuMjg5MDkgMTAuNDcwMiA1LjE3MzgzIDEwLjQ5MDUgNS4wNzE4NyAxMC40MzM5TDMuNTEyNDUgOS41MzI5M0MzLjQxMDQ5IDkuNDc2MzMgMy4zNzY0NyA5LjM1NzQxIDMuNDEwNzUgOS4yNTY3OUwzLjg2MzQ3IDguMTQwOTNMMy42MTc0OSA3Ljc3NDg4TDMuNDIzNDcgNy4zNzg4M0wyLjIzMDc1IDcuMjEyOTdDMi4xMjY0NyA3LjE5MjM1IDIuMDQwNDkgNy4xMDM0MiAyLjA0MjQ1IDYuOTg2ODJMMi4wNDE4NyA1LjE4NTgyQzIuMDQzODMgNS4wNjkyMiAyLjExOTA5IDQuOTc5NTggMi4yMTcwNCA0Ljk2OTIyTDMuNDIwNjUgNC43OTM5M0wzLjg2NzQ5IDQuMDI3ODhMMy40MTEwNSAyLjkxNzMxQzMuMzczMzcgMi44MTIwNCAzLjQxMTMxIDIuNjk3NzYgMy41MTUyMyAyLjYzNzc2TDUuMDc0MDggMS43Mzc3NkM1LjE2OTM0IDEuNjgyNzYgNS4yODcyOSAxLjcwNzA0IDUuMzU5NjEgMS43OTIzMUw2LjExOTE1IDIuNzI3ODhMNi45ODAwMSAyLjczODkzTDcuNzI0OTYgMS43ODkyMkM3Ljc5MTU2IDEuNzA0NTggNy45MTU0OCAxLjY3OTIyIDguMDA4NzkgMS43NDA4Mkw5LjU2ODIxIDIuNjQxODJDOS42NzAxNyAyLjY5ODQyIDkuNzEyODUgMi44MTIzNCA5LjY4NzIzIDIuOTA3OTdMOS4yMTcxOCA0LjAzMzgzTDkuNDYzMTYgNC4zOTk4OEw5LjY1NzE4IDQuNzk1OTNaIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iOS45LDEzLjYgMy42LDcuNCA0LjQsNi42IDkuOSwxMi4yIDE1LjQsNi43IDE2LjEsNy40ICIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNS45TDksOS43bDMuOC0zLjhsMS4yLDEuMmwtNC45LDVsLTQuOS01TDUuMiw1Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNy41TDksMTEuMmwzLjgtMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-left: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik0xMC44LDEyLjhMNy4xLDlsMy44LTMuOGwwLDcuNkgxMC44eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-right: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik03LjIsNS4yTDEwLjksOWwtMy44LDMuOFY1LjJINy4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-up-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iMTUuNCwxMy4zIDkuOSw3LjcgNC40LDEzLjIgMy42LDEyLjUgOS45LDYuMyAxNi4xLDEyLjYgIi8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-up: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik01LjIsMTAuNUw5LDYuOGwzLjgsMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-case-sensitive: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgogIDxnIGNsYXNzPSJqcC1pY29uLWFjY2VudDIiIGZpbGw9IiNGRkYiPgogICAgPHBhdGggZD0iTTcuNiw4aDAuOWwzLjUsOGgtMS4xTDEwLDE0SDZsLTAuOSwySDRMNy42LDh6IE04LDkuMUw2LjQsMTNoMy4yTDgsOS4xeiIvPgogICAgPHBhdGggZD0iTTE2LjYsOS44Yy0wLjIsMC4xLTAuNCwwLjEtMC43LDAuMWMtMC4yLDAtMC40LTAuMS0wLjYtMC4yYy0wLjEtMC4xLTAuMi0wLjQtMC4yLTAuNyBjLTAuMywwLjMtMC42LDAuNS0wLjksMC43Yy0wLjMsMC4xLTAuNywwLjItMS4xLDAuMmMtMC4zLDAtMC41LDAtMC43LTAuMWMtMC4yLTAuMS0wLjQtMC4yLTAuNi0wLjNjLTAuMi0wLjEtMC4zLTAuMy0wLjQtMC41IGMtMC4xLTAuMi0wLjEtMC40LTAuMS0wLjdjMC0wLjMsMC4xLTAuNiwwLjItMC44YzAuMS0wLjIsMC4zLTAuNCwwLjQtMC41QzEyLDcsMTIuMiw2LjksMTIuNSw2LjhjMC4yLTAuMSwwLjUtMC4xLDAuNy0wLjIgYzAuMy0wLjEsMC41LTAuMSwwLjctMC4xYzAuMiwwLDAuNC0wLjEsMC42LTAuMWMwLjIsMCwwLjMtMC4xLDAuNC0wLjJjMC4xLTAuMSwwLjItMC4yLDAuMi0wLjRjMC0xLTEuMS0xLTEuMy0xIGMtMC40LDAtMS40LDAtMS40LDEuMmgtMC45YzAtMC40LDAuMS0wLjcsMC4yLTFjMC4xLTAuMiwwLjMtMC40LDAuNS0wLjZjMC4yLTAuMiwwLjUtMC4zLDAuOC0wLjNDMTMuMyw0LDEzLjYsNCwxMy45LDQgYzAuMywwLDAuNSwwLDAuOCwwLjFjMC4zLDAsMC41LDAuMSwwLjcsMC4yYzAuMiwwLjEsMC40LDAuMywwLjUsMC41QzE2LDUsMTYsNS4yLDE2LDUuNnYyLjljMCwwLjIsMCwwLjQsMCwwLjUgYzAsMC4xLDAuMSwwLjIsMC4zLDAuMmMwLjEsMCwwLjIsMCwwLjMsMFY5Ljh6IE0xNS4yLDYuOWMtMS4yLDAuNi0zLjEsMC4yLTMuMSwxLjRjMCwxLjQsMy4xLDEsMy4xLTAuNVY2Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-check: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik05IDE2LjE3TDQuODMgMTJsLTEuNDIgMS40MUw5IDE5IDIxIDdsLTEuNDEtMS40MXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-circle-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDJDNi40NyAyIDIgNi40NyAyIDEyczQuNDcgMTAgMTAgMTAgMTAtNC40NyAxMC0xMFMxNy41MyAyIDEyIDJ6bTAgMThjLTQuNDEgMC04LTMuNTktOC04czMuNTktOCA4LTggOCAzLjU5IDggOC0zLjU5IDgtOCA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-circle: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjgiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-clear: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8bWFzayBpZD0iZG9udXRIb2xlIj4KICAgIDxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0id2hpdGUiIC8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSI4IiBmaWxsPSJibGFjayIvPgogIDwvbWFzaz4KCiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxyZWN0IGhlaWdodD0iMTgiIHdpZHRoPSIyIiB4PSIxMSIgeT0iMyIgdHJhbnNmb3JtPSJyb3RhdGUoMzE1LCAxMiwgMTIpIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIgbWFzaz0idXJsKCNkb251dEhvbGUpIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-close: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1ub25lIGpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIGpwLWljb24zLWhvdmVyIiBmaWxsPSJub25lIj4KICAgIDxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjExIi8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIGpwLWljb24tYWNjZW50Mi1ob3ZlciIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMTkgNi40MUwxNy41OSA1IDEyIDEwLjU5IDYuNDEgNSA1IDYuNDEgMTAuNTkgMTIgNSAxNy41OSA2LjQxIDE5IDEyIDEzLjQxIDE3LjU5IDE5IDE5IDE3LjU5IDEzLjQxIDEyeiIvPgogIDwvZz4KCiAgPGcgY2xhc3M9ImpwLWljb24tbm9uZSBqcC1pY29uLWJ1c3kiIGZpbGw9Im5vbmUiPgogICAgPGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-code: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTExLjQgMTguNkw2LjggMTRMMTEuNCA5LjRMMTAgOEw0IDE0TDEwIDIwTDExLjQgMTguNlpNMTYuNiAxOC42TDIxLjIgMTRMMTYuNiA5LjRMMTggOEwyNCAxNEwxOCAyMEwxNi42IDE4LjZWMTguNloiLz4KCTwvZz4KPC9zdmc+Cg==);\n  --jp-icon-console: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwMCAyMDAiPgogIDxnIGNsYXNzPSJqcC1pY29uLWJyYW5kMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMjg4RDEiPgogICAgPHBhdGggZD0iTTIwIDE5LjhoMTYwdjE1OS45SDIweiIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNmZmYiPgogICAgPHBhdGggZD0iTTEwNSAxMjcuM2g0MHYxMi44aC00MHpNNTEuMSA3N0w3NCA5OS45bC0yMy4zIDIzLjMgMTAuNSAxMC41IDIzLjMtMjMuM0w5NSA5OS45IDg0LjUgODkuNCA2MS42IDY2LjV6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-copy: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTExLjksMUgzLjJDMi40LDEsMS43LDEuNywxLjcsMi41djEwLjJoMS41VjIuNWg4LjdWMXogTTE0LjEsMy45aC04Yy0wLjgsMC0xLjUsMC43LTEuNSwxLjV2MTAuMmMwLDAuOCwwLjcsMS41LDEuNSwxLjVoOCBjMC44LDAsMS41LTAuNywxLjUtMS41VjUuNEMxNS41LDQuNiwxNC45LDMuOSwxNC4xLDMuOXogTTE0LjEsMTUuNWgtOFY1LjRoOFYxNS41eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-copyright: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDI0IDI0IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCI+CiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0xMS44OCw5LjE0YzEuMjgsMC4wNiwxLjYxLDEuMTUsMS42MywxLjY2aDEuNzljLTAuMDgtMS45OC0xLjQ5LTMuMTktMy40NS0zLjE5QzkuNjQsNy42MSw4LDksOCwxMi4xNCBjMCwxLjk0LDAuOTMsNC4yNCwzLjg0LDQuMjRjMi4yMiwwLDMuNDEtMS42NSwzLjQ0LTIuOTVoLTEuNzljLTAuMDMsMC41OS0wLjQ1LDEuMzgtMS42MywxLjQ0QzEwLjU1LDE0LjgzLDEwLDEzLjgxLDEwLDEyLjE0IEMxMCw5LjI1LDExLjI4LDkuMTYsMTEuODgsOS4xNHogTTEyLDJDNi40OCwyLDIsNi40OCwyLDEyczQuNDgsMTAsMTAsMTBzMTAtNC40OCwxMC0xMFMxNy41MiwyLDEyLDJ6IE0xMiwyMGMtNC40MSwwLTgtMy41OS04LTggczMuNTktOCw4LThzOCwzLjU5LDgsOFMxNi40MSwyMCwxMiwyMHoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-cut: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkuNjQgNy42NGMuMjMtLjUuMzYtMS4wNS4zNi0xLjY0IDAtMi4yMS0xLjc5LTQtNC00UzIgMy43OSAyIDZzMS43OSA0IDQgNGMuNTkgMCAxLjE0LS4xMyAxLjY0LS4zNkwxMCAxMmwtMi4zNiAyLjM2QzcuMTQgMTQuMTMgNi41OSAxNCA2IDE0Yy0yLjIxIDAtNCAxLjc5LTQgNHMxLjc5IDQgNCA0IDQtMS43OSA0LTRjMC0uNTktLjEzLTEuMTQtLjM2LTEuNjRMMTIgMTRsNyA3aDN2LTFMOS42NCA3LjY0ek02IDhjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTAgMTJjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTYtNy41Yy0uMjggMC0uNS0uMjItLjUtLjVzLjIyLS41LjUtLjUuNS4yMi41LjUtLjIyLjUtLjUuNXpNMTkgM2wtNiA2IDIgMiA3LTdWM3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-download: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDloLTRWM0g5djZINWw3IDcgNy03ek01IDE4djJoMTR2LTJINXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-edit: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMgMTcuMjVWMjFoMy43NUwxNy44MSA5Ljk0bC0zLjc1LTMuNzVMMyAxNy4yNXpNMjAuNzEgNy4wNGMuMzktLjM5LjM5LTEuMDIgMC0xLjQxbC0yLjM0LTIuMzRjLS4zOS0uMzktMS4wMi0uMzktMS40MSAwbC0xLjgzIDEuODMgMy43NSAzLjc1IDEuODMtMS44M3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-ellipses: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iNSIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxOSIgY3k9IjEyIiByPSIyIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-extension: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwLjUgMTFIMTlWN2MwLTEuMS0uOS0yLTItMmgtNFYzLjVDMTMgMi4xMiAxMS44OCAxIDEwLjUgMVM4IDIuMTIgOCAzLjVWNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAydjMuOEgzLjVjMS40OSAwIDIuNyAxLjIxIDIuNyAyLjdzLTEuMjEgMi43LTIuNyAyLjdIMlYyMGMwIDEuMS45IDIgMiAyaDMuOHYtMS41YzAtMS40OSAxLjIxLTIuNyAyLjctMi43IDEuNDkgMCAyLjcgMS4yMSAyLjcgMi43VjIySDE3YzEuMSAwIDItLjkgMi0ydi00aDEuNWMxLjM4IDAgMi41LTEuMTIgMi41LTIuNVMyMS44OCAxMSAyMC41IDExeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-fast-forward: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTQgMThsOC41LTZMNCA2djEyem05LTEydjEybDguNS02TDEzIDZ6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-file-upload: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkgMTZoNnYtNmg0bC03LTctNyA3aDR6bS00IDJoMTR2Mkg1eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-file: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuMyA4LjJsLTUuNS01LjVjLS4zLS4zLS43LS41LTEuMi0uNUgzLjljLS44LjEtMS42LjktMS42IDEuOHYxNC4xYzAgLjkuNyAxLjYgMS42IDEuNmgxNC4yYy45IDAgMS42LS43IDEuNi0xLjZWOS40Yy4xLS41LS4xLS45LS40LTEuMnptLTUuOC0zLjNsMy40IDMuNmgtMy40VjQuOXptMy45IDEyLjdINC43Yy0uMSAwLS4yIDAtLjItLjJWNC43YzAtLjIuMS0uMy4yLS4zaDcuMnY0LjRzMCAuOC4zIDEuMWMuMy4zIDEuMS4zIDEuMS4zaDQuM3Y3LjJzLS4xLjItLjIuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-filter-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEwIDE4aDR2LTJoLTR2MnpNMyA2djJoMThWNkgzem0zIDdoMTJ2LTJINnYyeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY4YzAtMS4xLS45LTItMi0yaC04bC0yLTJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-html5: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMDAiIGQ9Ik0xMDguNCAwaDIzdjIyLjhoMjEuMlYwaDIzdjY5aC0yM1Y0NmgtMjF2MjNoLTIzLjJNMjA2IDIzaC0yMC4zVjBoNjMuN3YyM0gyMjl2NDZoLTIzbTUzLjUtNjloMjQuMWwxNC44IDI0LjNMMzEzLjIgMGgyNC4xdjY5aC0yM1YzNC44bC0xNi4xIDI0LjgtMTYuMS0yNC44VjY5aC0yMi42bTg5LjItNjloMjN2NDYuMmgzMi42VjY5aC01NS42Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI2U0NGQyNiIgZD0iTTEwNy42IDQ3MWwtMzMtMzcwLjRoMzYyLjhsLTMzIDM3MC4yTDI1NS43IDUxMiIvPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNmMTY1MjkiIGQ9Ik0yNTYgNDgwLjVWMTMxaDE0OC4zTDM3NiA0NDciLz4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNlYmViZWIiIGQ9Ik0xNDIgMTc2LjNoMTE0djQ1LjRoLTY0LjJsNC4yIDQ2LjVoNjB2NDUuM0gxNTQuNG0yIDIyLjhIMjAybDMuMiAzNi4zIDUwLjggMTMuNnY0Ny40bC05My4yLTI2Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIiBmaWxsPSIjZmZmIiBkPSJNMzY5LjYgMTc2LjNIMjU1Ljh2NDUuNGgxMDkuNm0tNC4xIDQ2LjVIMjU1Ljh2NDUuNGg1NmwtNS4zIDU5LTUwLjcgMTMuNnY0Ny4ybDkzLTI1LjgiLz4KPC9zdmc+Cg==);\n  --jp-icon-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1icmFuZDQganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNGRkYiIGQ9Ik0yLjIgMi4yaDE3LjV2MTcuNUgyLjJ6Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzNGNTFCNSIgZD0iTTIuMiAyLjJ2MTcuNWgxNy41bC4xLTE3LjVIMi4yem0xMi4xIDIuMmMxLjIgMCAyLjIgMSAyLjIgMi4ycy0xIDIuMi0yLjIgMi4yLTIuMi0xLTIuMi0yLjIgMS0yLjIgMi4yLTIuMnpNNC40IDE3LjZsMy4zLTguOCAzLjMgNi42IDIuMi0zLjIgNC40IDUuNEg0LjR6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-inspector: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY2YzAtMS4xLS45LTItMi0yem0tNSAxNEg0di00aDExdjR6bTAtNUg0VjloMTF2NHptNSA1aC00VjloNHY5eiIvPgo8L3N2Zz4K);\n  --jp-icon-json: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNGOUE4MjUiPgogICAgPHBhdGggZD0iTTIwLjIgMTEuOGMtMS42IDAtMS43LjUtMS43IDEgMCAuNC4xLjkuMSAxLjMuMS41LjEuOS4xIDEuMyAwIDEuNy0xLjQgMi4zLTMuNSAyLjNoLS45di0xLjloLjVjMS4xIDAgMS40IDAgMS40LS44IDAtLjMgMC0uNi0uMS0xIDAtLjQtLjEtLjgtLjEtMS4yIDAtMS4zIDAtMS44IDEuMy0yLTEuMy0uMi0xLjMtLjctMS4zLTIgMC0uNC4xLS44LjEtMS4yLjEtLjQuMS0uNy4xLTEgMC0uOC0uNC0uNy0xLjQtLjhoLS41VjQuMWguOWMyLjIgMCAzLjUuNyAzLjUgMi4zIDAgLjQtLjEuOS0uMSAxLjMtLjEuNS0uMS45LS4xIDEuMyAwIC41LjIgMSAxLjcgMXYxLjh6TTEuOCAxMC4xYzEuNiAwIDEuNy0uNSAxLjctMSAwLS40LS4xLS45LS4xLTEuMy0uMS0uNS0uMS0uOS0uMS0xLjMgMC0xLjYgMS40LTIuMyAzLjUtMi4zaC45djEuOWgtLjVjLTEgMC0xLjQgMC0xLjQuOCAwIC4zIDAgLjYuMSAxIDAgLjIuMS42LjEgMSAwIDEuMyAwIDEuOC0xLjMgMkM2IDExLjIgNiAxMS43IDYgMTNjMCAuNC0uMS44LS4xIDEuMi0uMS4zLS4xLjctLjEgMSAwIC44LjMuOCAxLjQuOGguNXYxLjloLS45Yy0yLjEgMC0zLjUtLjYtMy41LTIuMyAwLS40LjEtLjkuMS0xLjMuMS0uNS4xLS45LjEtMS4zIDAtLjUtLjItMS0xLjctMXYtMS45eiIvPgogICAgPGNpcmNsZSBjeD0iMTEiIGN5PSIxMy44IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY3g9IjExIiBjeT0iOC4yIiByPSIyLjEiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-julia: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDMyNSAzMDAiPgogIDxnIGNsYXNzPSJqcC1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjY2IzYzMzIj4KICAgIDxwYXRoIGQ9Ik0gMTUwLjg5ODQzOCAyMjUgQyAxNTAuODk4NDM4IDI2Ni40MjE4NzUgMTE3LjMyMDMxMiAzMDAgNzUuODk4NDM4IDMwMCBDIDM0LjQ3NjU2MiAzMDAgMC44OTg0MzggMjY2LjQyMTg3NSAwLjg5ODQzOCAyMjUgQyAwLjg5ODQzOCAxODMuNTc4MTI1IDM0LjQ3NjU2MiAxNTAgNzUuODk4NDM4IDE1MCBDIDExNy4zMjAzMTIgMTUwIDE1MC44OTg0MzggMTgzLjU3ODEyNSAxNTAuODk4NDM4IDIyNSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzM4OTgyNiI+CiAgICA8cGF0aCBkPSJNIDIzNy41IDc1IEMgMjM3LjUgMTE2LjQyMTg3NSAyMDMuOTIxODc1IDE1MCAxNjIuNSAxNTAgQyAxMjEuMDc4MTI1IDE1MCA4Ny41IDExNi40MjE4NzUgODcuNSA3NSBDIDg3LjUgMzMuNTc4MTI1IDEyMS4wNzgxMjUgMCAxNjIuNSAwIEMgMjAzLjkyMTg3NSAwIDIzNy41IDMzLjU3ODEyNSAyMzcuNSA3NSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzk1NThiMiI+CiAgICA8cGF0aCBkPSJNIDMyNC4xMDE1NjIgMjI1IEMgMzI0LjEwMTU2MiAyNjYuNDIxODc1IDI5MC41MjM0MzggMzAwIDI0OS4xMDE1NjIgMzAwIEMgMjA3LjY3OTY4OCAzMDAgMTc0LjEwMTU2MiAyNjYuNDIxODc1IDE3NC4xMDE1NjIgMjI1IEMgMTc0LjEwMTU2MiAxODMuNTc4MTI1IDIwNy42Nzk2ODggMTUwIDI0OS4xMDE1NjIgMTUwIEMgMjkwLjUyMzQzOCAxNTAgMzI0LjEwMTU2MiAxODMuNTc4MTI1IDMyNC4xMDE1NjIgMjI1Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-jupyter-favicon: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUyIiBoZWlnaHQ9IjE2NSIgdmlld0JveD0iMCAwIDE1MiAxNjUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA3ODk0NywgMTEwLjU4MjkyNykiIGQ9Ik03NS45NDIyODQyLDI5LjU4MDQ1NjEgQzQzLjMwMjM5NDcsMjkuNTgwNDU2MSAxNC43OTY3ODMyLDE3LjY1MzQ2MzQgMCwwIEM1LjUxMDgzMjExLDE1Ljg0MDY4MjkgMTUuNzgxNTM4OSwyOS41NjY3NzMyIDI5LjM5MDQ5NDcsMzkuMjc4NDE3MSBDNDIuOTk5Nyw0OC45ODk4NTM3IDU5LjI3MzcsNTQuMjA2NzgwNSA3NS45NjA1Nzg5LDU0LjIwNjc4MDUgQzkyLjY0NzQ1NzksNTQuMjA2NzgwNSAxMDguOTIxNDU4LDQ4Ljk4OTg1MzcgMTIyLjUzMDY2MywzOS4yNzg0MTcxIEMxMzYuMTM5NDUzLDI5LjU2Njc3MzIgMTQ2LjQxMDI4NCwxNS44NDA2ODI5IDE1MS45MjExNTgsMCBDMTM3LjA4Nzg2OCwxNy42NTM0NjM0IDEwOC41ODI1ODksMjkuNTgwNDU2MSA3NS45NDIyODQyLDI5LjU4MDQ1NjEgTDc1Ljk0MjI4NDIsMjkuNTgwNDU2MSBaIiAvPgogICAgPHBhdGggdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMzczNjgsIDAuNzA0ODc4KSIgZD0iTTc1Ljk3ODQ1NzksMjQuNjI2NDA3MyBDMTA4LjYxODc2MywyNC42MjY0MDczIDEzNy4xMjQ0NTgsMzYuNTUzNDQxNSAxNTEuOTIxMTU4LDU0LjIwNjc4MDUgQzE0Ni40MTAyODQsMzguMzY2MjIyIDEzNi4xMzk0NTMsMjQuNjQwMTMxNyAxMjIuNTMwNjYzLDE0LjkyODQ4NzggQzEwOC45MjE0NTgsNS4yMTY4NDM5IDkyLjY0NzQ1NzksMCA3NS45NjA1Nzg5LDAgQzU5LjI3MzcsMCA0Mi45OTk3LDUuMjE2ODQzOSAyOS4zOTA0OTQ3LDE0LjkyODQ4NzggQzE1Ljc4MTUzODksMjQuNjQwMTMxNyA1LjUxMDgzMjExLDM4LjM2NjIyMiAwLDU0LjIwNjc4MDUgQzE0LjgzMzA4MTYsMzYuNTg5OTI5MyA0My4zMzg1Njg0LDI0LjYyNjQwNzMgNzUuOTc4NDU3OSwyNC42MjY0MDczIEw3NS45Nzg0NTc5LDI0LjYyNjQwNzMgWiIgLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-jupyter: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzkiIGhlaWdodD0iNTEiIHZpZXdCb3g9IjAgMCAzOSA1MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTYzOCAtMjI4MSkiPgogICAgPGcgY2xhc3M9ImpwLWljb24td2FybjAiIGZpbGw9IiNGMzc3MjYiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5Ljc0IDIzMTEuOTgpIiBkPSJNIDE4LjI2NDYgNy4xMzQxMUMgMTAuNDE0NSA3LjEzNDExIDMuNTU4NzIgNC4yNTc2IDAgMEMgMS4zMjUzOSAzLjgyMDQgMy43OTU1NiA3LjEzMDgxIDcuMDY4NiA5LjQ3MzAzQyAxMC4zNDE3IDExLjgxNTIgMTQuMjU1NyAxMy4wNzM0IDE4LjI2OSAxMy4wNzM0QyAyMi4yODIzIDEzLjA3MzQgMjYuMTk2MyAxMS44MTUyIDI5LjQ2OTQgOS40NzMwM0MgMzIuNzQyNCA3LjEzMDgxIDM1LjIxMjYgMy44MjA0IDM2LjUzOCAwQyAzMi45NzA1IDQuMjU3NiAyNi4xMTQ4IDcuMTM0MTEgMTguMjY0NiA3LjEzNDExWiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5LjczIDIyODUuNDgpIiBkPSJNIDE4LjI3MzMgNS45MzkzMUMgMjYuMTIzNSA1LjkzOTMxIDMyLjk3OTMgOC44MTU4MyAzNi41MzggMTMuMDczNEMgMzUuMjEyNiA5LjI1MzAzIDMyLjc0MjQgNS45NDI2MiAyOS40Njk0IDMuNjAwNEMgMjYuMTk2MyAxLjI1ODE4IDIyLjI4MjMgMCAxOC4yNjkgMEMgMTQuMjU1NyAwIDEwLjM0MTcgMS4yNTgxOCA3LjA2ODYgMy42MDA0QyAzLjc5NTU2IDUuOTQyNjIgMS4zMjUzOSA5LjI1MzAzIDAgMTMuMDczNEMgMy41Njc0NSA4LjgyNDYzIDEwLjQyMzIgNS45MzkzMSAxOC4yNzMzIDUuOTM5MzFaIi8+CiAgICA8L2c+CiAgICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjY5LjMgMjI4MS4zMSkiIGQ9Ik0gNS44OTM1MyAyLjg0NEMgNS45MTg4OSAzLjQzMTY1IDUuNzcwODUgNC4wMTM2NyA1LjQ2ODE1IDQuNTE2NDVDIDUuMTY1NDUgNS4wMTkyMiA0LjcyMTY4IDUuNDIwMTUgNC4xOTI5OSA1LjY2ODUxQyAzLjY2NDMgNS45MTY4OCAzLjA3NDQ0IDYuMDAxNTEgMi40OTgwNSA1LjkxMTcxQyAxLjkyMTY2IDUuODIxOSAxLjM4NDYzIDUuNTYxNyAwLjk1NDg5OCA1LjE2NDAxQyAwLjUyNTE3IDQuNzY2MzMgMC4yMjIwNTYgNC4yNDkwMyAwLjA4MzkwMzcgMy42Nzc1N0MgLTAuMDU0MjQ4MyAzLjEwNjExIC0wLjAyMTIzIDIuNTA2MTcgMC4xNzg3ODEgMS45NTM2NEMgMC4zNzg3OTMgMS40MDExIDAuNzM2ODA5IDAuOTIwODE3IDEuMjA3NTQgMC41NzM1MzhDIDEuNjc4MjYgMC4yMjYyNTkgMi4yNDA1NSAwLjAyNzU5MTkgMi44MjMyNiAwLjAwMjY3MjI5QyAzLjYwMzg5IC0wLjAzMDcxMTUgNC4zNjU3MyAwLjI0OTc4OSA0Ljk0MTQyIDAuNzgyNTUxQyA1LjUxNzExIDEuMzE1MzEgNS44NTk1NiAyLjA1Njc2IDUuODkzNTMgMi44NDRaIi8+CiAgICAgIDxwYXRoIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE2MzkuOCAyMzIzLjgxKSIgZD0iTSA3LjQyNzg5IDMuNTgzMzhDIDcuNDYwMDggNC4zMjQzIDcuMjczNTUgNS4wNTgxOSA2Ljg5MTkzIDUuNjkyMTNDIDYuNTEwMzEgNi4zMjYwNyA1Ljk1MDc1IDYuODMxNTYgNS4yODQxMSA3LjE0NDZDIDQuNjE3NDcgNy40NTc2MyAzLjg3MzcxIDcuNTY0MTQgMy4xNDcwMiA3LjQ1MDYzQyAyLjQyMDMyIDcuMzM3MTIgMS43NDMzNiA3LjAwODcgMS4yMDE4NCA2LjUwNjk1QyAwLjY2MDMyOCA2LjAwNTIgMC4yNzg2MSA1LjM1MjY4IDAuMTA1MDE3IDQuNjMyMDJDIC0wLjA2ODU3NTcgMy45MTEzNSAtMC4wMjYyMzYxIDMuMTU0OTQgMC4yMjY2NzUgMi40NTg1NkMgMC40Nzk1ODcgMS43NjIxNyAwLjkzMTY5NyAxLjE1NzEzIDEuNTI1NzYgMC43MjAwMzNDIDIuMTE5ODMgMC4yODI5MzUgMi44MjkxNCAwLjAzMzQzOTUgMy41NjM4OSAwLjAwMzEzMzQ0QyA0LjU0NjY3IC0wLjAzNzQwMzMgNS41MDUyOSAwLjMxNjcwNiA2LjIyOTYxIDAuOTg3ODM1QyA2Ljk1MzkzIDEuNjU4OTYgNy4zODQ4NCAyLjU5MjM1IDcuNDI3ODkgMy41ODMzOEwgNy40Mjc4OSAzLjU4MzM4WiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM4LjM2IDIyODYuMDYpIiBkPSJNIDIuMjc0NzEgNC4zOTYyOUMgMS44NDM2MyA0LjQxNTA4IDEuNDE2NzEgNC4zMDQ0NSAxLjA0Nzk5IDQuMDc4NDNDIDAuNjc5MjY4IDMuODUyNCAwLjM4NTMyOCAzLjUyMTE0IDAuMjAzMzcxIDMuMTI2NTZDIDAuMDIxNDEzNiAyLjczMTk4IC0wLjA0MDM3OTggMi4yOTE4MyAwLjAyNTgxMTYgMS44NjE4MUMgMC4wOTIwMDMxIDEuNDMxOCAwLjI4MzIwNCAxLjAzMTI2IDAuNTc1MjEzIDAuNzEwODgzQyAwLjg2NzIyMiAwLjM5MDUxIDEuMjQ2OTEgMC4xNjQ3MDggMS42NjYyMiAwLjA2MjA1OTJDIDIuMDg1NTMgLTAuMDQwNTg5NyAyLjUyNTYxIC0wLjAxNTQ3MTQgMi45MzA3NiAwLjEzNDIzNUMgMy4zMzU5MSAwLjI4Mzk0MSAzLjY4NzkyIDAuNTUxNTA1IDMuOTQyMjIgMC45MDMwNkMgNC4xOTY1MiAxLjI1NDYyIDQuMzQxNjkgMS42NzQzNiA0LjM1OTM1IDIuMTA5MTZDIDQuMzgyOTkgMi42OTEwNyA0LjE3Njc4IDMuMjU4NjkgMy43ODU5NyAzLjY4NzQ2QyAzLjM5NTE2IDQuMTE2MjQgMi44NTE2NiA0LjM3MTE2IDIuMjc0NzEgNC4zOTYyOUwgMi4yNzQ3MSA0LjM5NjI5WiIvPgogICAgPC9nPgogIDwvZz4+Cjwvc3ZnPgo=);\n  --jp-icon-jupyterlab-wordmark: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIHZpZXdCb3g9IjAgMCAxODYwLjggNDc1Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0RTRFNEUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ4MC4xMzY0MDEsIDY0LjI3MTQ5MykiPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMDAwMDAsIDU4Ljg3NTU2NikiPgogICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA4NzYwMywgMC4xNDAyOTQpIj4KICAgICAgICA8cGF0aCBkPSJNLTQyNi45LDE2OS44YzAsNDguNy0zLjcsNjQuNy0xMy42LDc2LjRjLTEwLjgsMTAtMjUsMTUuNS0zOS43LDE1LjVsMy43LDI5IGMyMi44LDAuMyw0NC44LTcuOSw2MS45LTIzLjFjMTcuOC0xOC41LDI0LTQ0LjEsMjQtODMuM1YwSC00Mjd2MTcwLjFMLTQyNi45LDE2OS44TC00MjYuOSwxNjkuOHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTU1LjA0NTI5NiwgNTYuODM3MTA0KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuNTYyNDUzLCAxLjc5OTg0MikiPgogICAgICAgIDxwYXRoIGQ9Ik0tMzEyLDE0OGMwLDIxLDAsMzkuNSwxLjcsNTUuNGgtMzEuOGwtMi4xLTMzLjNoLTAuOGMtNi43LDExLjYtMTYuNCwyMS4zLTI4LDI3LjkgYy0xMS42LDYuNi0yNC44LDEwLTM4LjIsOS44Yy0zMS40LDAtNjktMTcuNy02OS04OVYwaDM2LjR2MTEyLjdjMCwzOC43LDExLjYsNjQuNyw0NC42LDY0LjdjMTAuMy0wLjIsMjAuNC0zLjUsMjguOS05LjQgYzguNS01LjksMTUuMS0xNC4zLDE4LjktMjMuOWMyLjItNi4xLDMuMy0xMi41LDMuMy0xOC45VjAuMmgzNi40VjE0OEgtMzEyTC0zMTIsMTQ4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzOTAuMDEzMzIyLCA1My40Nzk2MzgpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS43MDY0NTgsIDAuMjMxNDI1KSI+CiAgICAgICAgPHBhdGggZD0iTS00NzguNiw3MS40YzAtMjYtMC44LTQ3LTEuNy02Ni43aDMyLjdsMS43LDM0LjhoMC44YzcuMS0xMi41LDE3LjUtMjIuOCwzMC4xLTI5LjcgYzEyLjUtNywyNi43LTEwLjMsNDEtOS44YzQ4LjMsMCw4NC43LDQxLjcsODQuNywxMDMuM2MwLDczLjEtNDMuNywxMDkuMi05MSwxMDkuMmMtMTIuMSwwLjUtMjQuMi0yLjItMzUtNy44IGMtMTAuOC01LjYtMTkuOS0xMy45LTI2LjYtMjQuMmgtMC44VjI5MWgtMzZ2LTIyMEwtNDc4LjYsNzEuNEwtNDc4LjYsNzEuNHogTS00NDIuNiwxMjUuNmMwLjEsNS4xLDAuNiwxMC4xLDEuNywxNS4xIGMzLDEyLjMsOS45LDIzLjMsMTkuOCwzMS4xYzkuOSw3LjgsMjIuMSwxMi4xLDM0LjcsMTIuMWMzOC41LDAsNjAuNy0zMS45LDYwLjctNzguNWMwLTQwLjctMjEuMS03NS42LTU5LjUtNzUuNiBjLTEyLjksMC40LTI1LjMsNS4xLTM1LjMsMTMuNGMtOS45LDguMy0xNi45LDE5LjctMTkuNiwzMi40Yy0xLjUsNC45LTIuMywxMC0yLjUsMTUuMVYxMjUuNkwtNDQyLjYsMTI1LjZMLTQ0Mi42LDEyNS42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MDYuNzQwNzI2LCA1Ni44MzcxMDQpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC43NTEyMjYsIDEuOTg5Mjk5KSI+CiAgICAgICAgPHBhdGggZD0iTS00NDAuOCwwbDQzLjcsMTIwLjFjNC41LDEzLjQsOS41LDI5LjQsMTIuOCw0MS43aDAuOGMzLjctMTIuMiw3LjktMjcuNywxMi44LTQyLjQgbDM5LjctMTE5LjJoMzguNUwtMzQ2LjksMTQ1Yy0yNiw2OS43LTQzLjcsMTA1LjQtNjguNiwxMjcuMmMtMTIuNSwxMS43LTI3LjksMjAtNDQuNiwyMy45bC05LjEtMzEuMSBjMTEuNy0zLjksMjIuNS0xMC4xLDMxLjgtMTguMWMxMy4yLTExLjEsMjMuNy0yNS4yLDMwLjYtNDEuMmMxLjUtMi44LDIuNS01LjcsMi45LTguOGMtMC4zLTMuMy0xLjItNi42LTIuNS05LjdMLTQ4MC4yLDAuMSBoMzkuN0wtNDQwLjgsMEwtNDQwLjgsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODIyLjc0ODEwNCwgMC4wMDAwMDApIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS40NjQwNTAsIDAuMzc4OTE0KSI+CiAgICAgICAgPHBhdGggZD0iTS00MTMuNywwdjU4LjNoNTJ2MjguMmgtNTJWMTk2YzAsMjUsNywzOS41LDI3LjMsMzkuNWM3LjEsMC4xLDE0LjItMC43LDIxLjEtMi41IGwxLjcsMjcuN2MtMTAuMywzLjctMjEuMyw1LjQtMzIuMiw1Yy03LjMsMC40LTE0LjYtMC43LTIxLjMtMy40Yy02LjgtMi43LTEyLjktNi44LTE3LjktMTIuMWMtMTAuMy0xMC45LTE0LjEtMjktMTQuMS01Mi45IFY4Ni41aC0zMVY1OC4zaDMxVjkuNkwtNDEzLjcsMEwtNDEzLjcsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOTc0LjQzMzI4NiwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuOTkwMDM0LCAwLjYxMDMzOSkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDQ1LjgsMTEzYzAuOCw1MCwzMi4yLDcwLjYsNjguNiw3MC42YzE5LDAuNiwzNy45LTMsNTUuMy0xMC41bDYuMiwyNi40IGMtMjAuOSw4LjktNDMuNSwxMy4xLTY2LjIsMTIuNmMtNjEuNSwwLTk4LjMtNDEuMi05OC4zLTEwMi41Qy00ODAuMiw0OC4yLTQ0NC43LDAtMzg2LjUsMGM2NS4yLDAsODIuNyw1OC4zLDgyLjcsOTUuNyBjLTAuMSw1LjgtMC41LDExLjUtMS4yLDE3LjJoLTE0MC42SC00NDUuOEwtNDQ1LjgsMTEzeiBNLTMzOS4yLDg2LjZjMC40LTIzLjUtOS41LTYwLjEtNTAuNC02MC4xIGMtMzYuOCwwLTUyLjgsMzQuNC01NS43LDYwLjFILTMzOS4yTC0zMzkuMiw4Ni42TC0zMzkuMiw4Ni42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjAxLjk2MTA1OCwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuMTc5NjQwLCAwLjcwNTA2OCkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDc4LjYsNjhjMC0yMy45LTAuNC00NC41LTEuNy02My40aDMxLjhsMS4yLDM5LjloMS43YzkuMS0yNy4zLDMxLTQ0LjUsNTUuMy00NC41IGMzLjUtMC4xLDcsMC40LDEwLjMsMS4ydjM0LjhjLTQuMS0wLjktOC4yLTEuMy0xMi40LTEuMmMtMjUuNiwwLTQzLjcsMTkuNy00OC43LDQ3LjRjLTEsNS43LTEuNiwxMS41LTEuNywxNy4ydjEwOC4zaC0zNlY2OCBMLTQ3OC42LDY4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCBkPSJNMTM1Mi4zLDMyNi4yaDM3VjI4aC0zN1YzMjYuMnogTTE2MDQuOCwzMjYuMmMtMi41LTEzLjktMy40LTMxLjEtMy40LTQ4Ljd2LTc2IGMwLTQwLjctMTUuMS04My4xLTc3LjMtODMuMWMtMjUuNiwwLTUwLDcuMS02Ni44LDE4LjFsOC40LDI0LjRjMTQuMy05LjIsMzQtMTUuMSw1My0xNS4xYzQxLjYsMCw0Ni4yLDMwLjIsNDYuMiw0N3Y0LjIgYy03OC42LTAuNC0xMjIuMywyNi41LTEyMi4zLDc1LjZjMCwyOS40LDIxLDU4LjQsNjIuMiw1OC40YzI5LDAsNTAuOS0xNC4zLDYyLjItMzAuMmgxLjNsMi45LDI1LjZIMTYwNC44eiBNMTU2NS43LDI1Ny43IGMwLDMuOC0wLjgsOC0yLjEsMTEuOGMtNS45LDE3LjItMjIuNywzNC00OS4yLDM0Yy0xOC45LDAtMzQuOS0xMS4zLTM0LjktMzUuM2MwLTM5LjUsNDUuOC00Ni42LDg2LjItNDUuOFYyNTcuN3ogTTE2OTguNSwzMjYuMiBsMS43LTMzLjZoMS4zYzE1LjEsMjYuOSwzOC43LDM4LjIsNjguMSwzOC4yYzQ1LjQsMCw5MS4yLTM2LjEsOTEuMi0xMDguOGMwLjQtNjEuNy0zNS4zLTEwMy43LTg1LjctMTAzLjcgYy0zMi44LDAtNTYuMywxNC43LTY5LjMsMzcuNGgtMC44VjI4aC0zNi42djI0NS43YzAsMTguMS0wLjgsMzguNi0xLjcsNTIuNUgxNjk4LjV6IE0xNzA0LjgsMjA4LjJjMC01LjksMS4zLTEwLjksMi4xLTE1LjEgYzcuNi0yOC4xLDMxLjEtNDUuNCw1Ni4zLTQ1LjRjMzkuNSwwLDYwLjUsMzQuOSw2MC41LDc1LjZjMCw0Ni42LTIzLjEsNzguMS02MS44LDc4LjFjLTI2LjksMC00OC4zLTE3LjYtNTUuNS00My4zIGMtMC44LTQuMi0xLjctOC44LTEuNy0xMy40VjIwOC4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgZmlsbD0iIzYxNjE2MSIgZD0iTTE1IDlIOXY2aDZWOXptLTIgNGgtMnYtMmgydjJ6bTgtMlY5aC0yVjdjMC0xLjEtLjktMi0yLTJoLTJWM2gtMnYyaC0yVjNIOXYySDdjLTEuMSAwLTIgLjktMiAydjJIM3YyaDJ2MkgzdjJoMnYyYzAgMS4xLjkgMiAyIDJoMnYyaDJ2LTJoMnYyaDJ2LTJoMmMxLjEgMCAyLS45IDItMnYtMmgydi0yaC0ydi0yaDJ6bS00IDZIN1Y3aDEwdjEweiIvPgo8L3N2Zz4K);\n  --jp-icon-keyboard: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMTdjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY3YzAtMS4xLS45LTItMi0yem0tOSAzaDJ2MmgtMlY4em0wIDNoMnYyaC0ydi0yek04IDhoMnYySDhWOHptMCAzaDJ2Mkg4di0yem0tMSAySDV2LTJoMnYyem0wLTNINVY4aDJ2MnptOSA3SDh2LTJoOHYyem0wLTRoLTJ2LTJoMnYyem0wLTNoLTJWOGgydjJ6bTMgM2gtMnYtMmgydjJ6bTAtM2gtMlY4aDJ2MnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-launcher: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkgMTlINVY1aDdWM0g1YTIgMiAwIDAwLTIgMnYxNGEyIDIgMCAwMDIgMmgxNGMxLjEgMCAyLS45IDItMnYtN2gtMnY3ek0xNCAzdjJoMy41OWwtOS44MyA5LjgzIDEuNDEgMS40MUwxOSA2LjQxVjEwaDJWM2gtN3oiLz4KPC9zdmc+Cg==);\n  --jp-icon-line-form: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGZpbGw9IndoaXRlIiBkPSJNNS44OCA0LjEyTDEzLjc2IDEybC03Ljg4IDcuODhMOCAyMmwxMC0xMEw4IDJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-link: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMuOSAxMmMwLTEuNzEgMS4zOS0zLjEgMy4xLTMuMWg0VjdIN2MtMi43NiAwLTUgMi4yNC01IDVzMi4yNCA1IDUgNWg0di0xLjlIN2MtMS43MSAwLTMuMS0xLjM5LTMuMS0zLjF6TTggMTNoOHYtMkg4djJ6bTktNmgtNHYxLjloNGMxLjcxIDAgMy4xIDEuMzkgMy4xIDMuMXMtMS4zOSAzLjEtMy4xIDMuMWgtNFYxN2g0YzIuNzYgMCA1LTIuMjQgNS01cy0yLjI0LTUtNS01eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiM2MTYxNjEiIGQ9Ik0xOSA1djE0SDVWNWgxNG0xLjEtMkgzLjljLS41IDAtLjkuNC0uOS45djE2LjJjMCAuNC40LjkuOS45aDE2LjJjLjQgMCAuOS0uNS45LS45VjMuOWMwLS41LS41LS45LS45LS45ek0xMSA3aDZ2MmgtNlY3em0wIDRoNnYyaC02di0yem0wIDRoNnYyaC02ek03IDdoMnYySDd6bTAgNGgydjJIN3ptMCA0aDJ2Mkg3eiIvPgo8L3N2Zz4=);\n  --jp-icon-listings-info: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MC45NzggNTAuOTc4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MC45NzggNTAuOTc4OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+Cgk8Zz4KCQk8cGF0aCBzdHlsZT0iZmlsbDojMDEwMDAyOyIgZD0iTTQzLjUyLDcuNDU4QzM4LjcxMSwyLjY0OCwzMi4zMDcsMCwyNS40ODksMEMxOC42NywwLDEyLjI2NiwyLjY0OCw3LjQ1OCw3LjQ1OAoJCQljLTkuOTQzLDkuOTQxLTkuOTQzLDI2LjExOSwwLDM2LjA2MmM0LjgwOSw0LjgwOSwxMS4yMTIsNy40NTYsMTguMDMxLDcuNDU4YzAsMCwwLjAwMSwwLDAuMDAyLDAKCQkJYzYuODE2LDAsMTMuMjIxLTIuNjQ4LDE4LjAyOS03LjQ1OGM0LjgwOS00LjgwOSw3LjQ1Ny0xMS4yMTIsNy40NTctMTguMDNDNTAuOTc3LDE4LjY3LDQ4LjMyOCwxMi4yNjYsNDMuNTIsNy40NTh6CgkJCSBNNDIuMTA2LDQyLjEwNWMtNC40MzIsNC40MzEtMTAuMzMyLDYuODcyLTE2LjYxNSw2Ljg3MmgtMC4wMDJjLTYuMjg1LTAuMDAxLTEyLjE4Ny0yLjQ0MS0xNi42MTctNi44NzIKCQkJYy05LjE2Mi05LjE2My05LjE2Mi0yNC4wNzEsMC0zMy4yMzNDMTMuMzAzLDQuNDQsMTkuMjA0LDIsMjUuNDg5LDJjNi4yODQsMCwxMi4xODYsMi40NCwxNi42MTcsNi44NzIKCQkJYzQuNDMxLDQuNDMxLDYuODcxLDEwLjMzMiw2Ljg3MSwxNi42MTdDNDguOTc3LDMxLjc3Miw0Ni41MzYsMzcuNjc1LDQyLjEwNiw0Mi4xMDV6Ii8+CgkJPHBhdGggc3R5bGU9ImZpbGw6IzAxMDAwMjsiIGQ9Ik0yMy41NzgsMzIuMjE4Yy0wLjAyMy0xLjczNCwwLjE0My0zLjA1OSwwLjQ5Ni0zLjk3MmMwLjM1My0wLjkxMywxLjExLTEuOTk3LDIuMjcyLTMuMjUzCgkJCWMwLjQ2OC0wLjUzNiwwLjkyMy0xLjA2MiwxLjM2Ny0xLjU3NWMwLjYyNi0wLjc1MywxLjEwNC0xLjQ3OCwxLjQzNi0yLjE3NWMwLjMzMS0wLjcwNywwLjQ5NS0xLjU0MSwwLjQ5NS0yLjUKCQkJYzAtMS4wOTYtMC4yNi0yLjA4OC0wLjc3OS0yLjk3OWMtMC41NjUtMC44NzktMS41MDEtMS4zMzYtMi44MDYtMS4zNjljLTEuODAyLDAuMDU3LTIuOTg1LDAuNjY3LTMuNTUsMS44MzIKCQkJYy0wLjMwMSwwLjUzNS0wLjUwMywxLjE0MS0wLjYwNywxLjgxNGMtMC4xMzksMC43MDctMC4yMDcsMS40MzItMC4yMDcsMi4xNzRoLTIuOTM3Yy0wLjA5MS0yLjIwOCwwLjQwNy00LjExNCwxLjQ5My01LjcxOQoJCQljMS4wNjItMS42NCwyLjg1NS0yLjQ4MSw1LjM3OC0yLjUyN2MyLjE2LDAuMDIzLDMuODc0LDAuNjA4LDUuMTQxLDEuNzU4YzEuMjc4LDEuMTYsMS45MjksMi43NjQsMS45NSw0LjgxMQoJCQljMCwxLjE0Mi0wLjEzNywyLjExMS0wLjQxLDIuOTExYy0wLjMwOSwwLjg0NS0wLjczMSwxLjU5My0xLjI2OCwyLjI0M2MtMC40OTIsMC42NS0xLjA2OCwxLjMxOC0xLjczLDIuMDAyCgkJCWMtMC42NSwwLjY5Ny0xLjMxMywxLjQ3OS0xLjk4NywyLjM0NmMtMC4yMzksMC4zNzctMC40MjksMC43NzctMC41NjUsMS4xOTljLTAuMTYsMC45NTktMC4yMTcsMS45NTEtMC4xNzEsMi45NzkKCQkJQzI2LjU4OSwzMi4yMTgsMjMuNTc4LDMyLjIxOCwyMy41NzgsMzIuMjE4eiBNMjMuNTc4LDM4LjIydi0zLjQ4NGgzLjA3NnYzLjQ4NEgyMy41Nzh6Ii8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-markdown: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjN0IxRkEyIiBkPSJNNSAxNC45aDEybC02LjEgNnptOS40LTYuOGMwLTEuMy0uMS0yLjktLjEtNC41LS40IDEuNC0uOSAyLjktMS4zIDQuM2wtMS4zIDQuM2gtMkw4LjUgNy45Yy0uNC0xLjMtLjctMi45LTEtNC4zLS4xIDEuNi0uMSAzLjItLjIgNC42TDcgMTIuNEg0LjhsLjctMTFoMy4zTDEwIDVjLjQgMS4yLjcgMi43IDEgMy45LjMtMS4yLjctMi42IDEtMy45bDEuMi0zLjdoMy4zbC42IDExaC0yLjRsLS4zLTQuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-new-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwIDZoLThsLTItMkg0Yy0xLjExIDAtMS45OS44OS0xLjk5IDJMMiAxOGMwIDEuMTEuODkgMiAyIDJoMTZjMS4xMSAwIDItLjg5IDItMlY4YzAtMS4xMS0uODktMi0yLTJ6bS0xIDhoLTN2M2gtMnYtM2gtM3YtMmgzVjloMnYzaDN2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-not-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI1IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMTkgMTcuMTg0NCAyLjk2OTY4IDE0LjMwMzIgMS44NjA5NCAxMS40NDA5WiIvPgogICAgPHBhdGggY2xhc3M9ImpwLWljb24yIiBzdHJva2U9IiMzMzMzMzMiIHN0cm9rZS13aWR0aD0iMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOS4zMTU5MiA5LjMyMDMxKSIgZD0iTTcuMzY4NDIgMEwwIDcuMzY0NzkiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDkuMzE1OTIgMTYuNjgzNikgc2NhbGUoMSAtMSkiIGQ9Ik03LjM2ODQyIDBMMCA3LjM2NDc5Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-notebook: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNFRjZDMDAiPgogICAgPHBhdGggZD0iTTE4LjcgMy4zdjE1LjRIMy4zVjMuM2gxNS40bTEuNS0xLjVIMS44djE4LjNoMTguM2wuMS0xOC4zeiIvPgogICAgPHBhdGggZD0iTTE2LjUgMTYuNWwtNS40LTQuMy01LjYgNC4zdi0xMWgxMXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-numbering: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTQgMTlINlYxOS41SDVWMjAuNUg2VjIxSDRWMjJIN1YxOEg0VjE5Wk01IDEwSDZWNkg0VjdINVYxMFpNNCAxM0g1LjhMNCAxNS4xVjE2SDdWMTVINS4yTDcgMTIuOVYxMkg0VjEzWk05IDdWOUgyM1Y3SDlaTTkgMjFIMjNWMTlIOVYyMVpNOSAxNUgyM1YxM0g5VjE1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-offline-bolt: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDIuMDJjLTUuNTEgMC05Ljk4IDQuNDctOS45OCA5Ljk4czQuNDcgOS45OCA5Ljk4IDkuOTggOS45OC00LjQ3IDkuOTgtOS45OFMxNy41MSAyLjAyIDEyIDIuMDJ6TTExLjQ4IDIwdi02LjI2SDhMMTMgNHY2LjI2aDMuMzVMMTEuNDggMjB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-palette: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE4IDEzVjIwSDRWNkg5LjAyQzkuMDcgNS4yOSA5LjI0IDQuNjIgOS41IDRINEMyLjkgNCAyIDQuOSAyIDZWMjBDMiAyMS4xIDIuOSAyMiA0IDIySDE4QzE5LjEgMjIgMjAgMjEuMSAyMCAyMFYxNUwxOCAxM1pNMTkuMyA4Ljg5QzE5Ljc0IDguMTkgMjAgNy4zOCAyMCA2LjVDMjAgNC4wMSAxNy45OSAyIDE1LjUgMkMxMy4wMSAyIDExIDQuMDEgMTEgNi41QzExIDguOTkgMTMuMDEgMTEgMTUuNDkgMTFDMTYuMzcgMTEgMTcuMTkgMTAuNzQgMTcuODggMTAuM0wyMSAxMy40MkwyMi40MiAxMkwxOS4zIDguODlaTTE1LjUgOUMxNC4xMiA5IDEzIDcuODggMTMgNi41QzEzIDUuMTIgMTQuMTIgNCAxNS41IDRDMTYuODggNCAxOCA1LjEyIDE4IDYuNUMxOCA3Ljg4IDE2Ljg4IDkgMTUuNSA5WiIvPgogICAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDZIOS4wMTg5NEM5LjAwNjM5IDYuMTY1MDIgOSA2LjMzMTc2IDkgNi41QzkgOC44MTU3NyAxMC4yMTEgMTAuODQ4NyAxMi4wMzQzIDEySDlWMTRIMTZWMTIuOTgxMUMxNi41NzAzIDEyLjkzNzcgMTcuMTIgMTIuODIwNyAxNy42Mzk2IDEyLjYzOTZMMTggMTNWMjBINFY2Wk04IDhINlYxMEg4VjhaTTYgMTJIOFYxNEg2VjEyWk04IDE2SDZWMThIOFYxNlpNOSAxNkgxNlYxOEg5VjE2WiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-paste: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE5IDJoLTQuMThDMTQuNC44NCAxMy4zIDAgMTIgMGMtMS4zIDAtMi40Ljg0LTIuODIgMkg1Yy0xLjEgMC0yIC45LTIgMnYxNmMwIDEuMS45IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjRjMC0xLjEtLjktMi0yLTJ6bS03IDBjLjU1IDAgMSAuNDUgMSAxcy0uNDUgMS0xIDEtMS0uNDUtMS0xIC40NS0xIDEtMXptNyAxOEg1VjRoMnYzaDEwVjRoMnYxNnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-pdf: url(data:image/svg+xml;base64,PHN2ZwogICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMiAyMiIgd2lkdGg9IjE2Ij4KICAgIDxwYXRoIHRyYW5zZm9ybT0icm90YXRlKDQ1KSIgY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI0ZGMkEyQSIKICAgICAgIGQ9Im0gMjIuMzQ0MzY5LC0zLjAxNjM2NDIgaCA1LjYzODYwNCB2IDEuNTc5MjQzMyBoIC0zLjU0OTIyNyB2IDEuNTA4NjkyOTkgaCAzLjMzNzU3NiBWIDEuNjUwODE1NCBoIC0zLjMzNzU3NiB2IDMuNDM1MjYxMyBoIC0yLjA4OTM3NyB6IG0gLTcuMTM2NDQ0LDEuNTc5MjQzMyB2IDQuOTQzOTU0MyBoIDAuNzQ4OTIgcSAxLjI4MDc2MSwwIDEuOTUzNzAzLC0wLjYzNDk1MzUgMC42NzgzNjksLTAuNjM0OTUzNSAwLjY3ODM2OSwtMS44NDUxNjQxIDAsLTEuMjA0NzgzNTUgLTAuNjcyOTQyLC0xLjgzNDMxMDExIC0wLjY3Mjk0MiwtMC42Mjk1MjY1OSAtMS45NTkxMywtMC42Mjk1MjY1OSB6IG0gLTIuMDg5Mzc3LC0xLjU3OTI0MzMgaCAyLjIwMzM0MyBxIDEuODQ1MTY0LDAgMi43NDYwMzksMC4yNjU5MjA3IDAuOTA2MzAxLDAuMjYwNDkzNyAxLjU1MjEwOCwwLjg5MDAyMDMgMC41Njk4MywwLjU0ODEyMjMgMC44NDY2MDUsMS4yNjQ0ODAwNiAwLjI3Njc3NCwwLjcxNjM1NzgxIDAuMjc2Nzc0LDEuNjIyNjU4OTQgMCwwLjkxNzE1NTEgLTAuMjc2Nzc0LDEuNjM4OTM5OSAtMC4yNzY3NzUsMC43MTYzNTc4IC0wLjg0NjYwNSwxLjI2NDQ4IC0wLjY1MTIzNCwwLjYyOTUyNjYgLTEuNTYyOTYyLDAuODk1NDQ3MyAtMC45MTE3MjgsMC4yNjA0OTM3IC0yLjczNTE4NSwwLjI2MDQ5MzcgaCAtMi4yMDMzNDMgeiBtIC04LjE0NTg1NjUsMCBoIDMuNDY3ODIzIHEgMS41NDY2ODE2LDAgMi4zNzE1Nzg1LDAuNjg5MjIzIDAuODMwMzI0LDAuNjgzNzk2MSAwLjgzMDMyNCwxLjk1MzcwMzE0IDAsMS4yNzUzMzM5NyAtMC44MzAzMjQsMS45NjQ1NTcwNiBRIDkuOTg3MTk2MSwyLjI3NDkxNSA4LjQ0MDUxNDUsMi4yNzQ5MTUgSCA3LjA2MjA2ODQgViA1LjA4NjA3NjcgSCA0Ljk3MjY5MTUgWiBtIDIuMDg5Mzc2OSwxLjUxNDExOTkgdiAyLjI2MzAzOTQzIGggMS4xNTU5NDEgcSAwLjYwNzgxODgsMCAwLjkzODg2MjksLTAuMjkzMDU1NDcgMC4zMzEwNDQxLC0wLjI5ODQ4MjQxIDAuMzMxMDQ0MSwtMC44NDExNzc3MiAwLC0wLjU0MjY5NTMxIC0wLjMzMTA0NDEsLTAuODM1NzUwNzQgLTAuMzMxMDQ0MSwtMC4yOTMwNTU1IC0wLjkzODg2MjksLTAuMjkzMDU1NSB6IgovPgo8L3N2Zz4K);\n  --jp-icon-python: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMEQ0N0ExIj4KICAgIDxwYXRoIGQ9Ik0xMS4xIDYuOVY1LjhINi45YzAtLjUgMC0xLjMuMi0xLjYuNC0uNy44LTEuMSAxLjctMS40IDEuNy0uMyAyLjUtLjMgMy45LS4xIDEgLjEgMS45LjkgMS45IDEuOXY0LjJjMCAuNS0uOSAxLjYtMiAxLjZIOC44Yy0xLjUgMC0yLjQgMS40LTIuNCAyLjh2Mi4ySDQuN0MzLjUgMTUuMSAzIDE0IDMgMTMuMVY5Yy0uMS0xIC42LTIgMS44LTIgMS41LS4xIDYuMy0uMSA2LjMtLjF6Ii8+CiAgICA8cGF0aCBkPSJNMTAuOSAxNS4xdjEuMWg0LjJjMCAuNSAwIDEuMy0uMiAxLjYtLjQuNy0uOCAxLjEtMS43IDEuNC0xLjcuMy0yLjUuMy0zLjkuMS0xLS4xLTEuOS0uOS0xLjktMS45di00LjJjMC0uNS45LTEuNiAyLTEuNmgzLjhjMS41IDAgMi40LTEuNCAyLjQtMi44VjYuNmgxLjdDMTguNSA2LjkgMTkgOCAxOSA4LjlWMTNjMCAxLS43IDIuMS0xLjkgMi4xaC02LjJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-r-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjE5NkYzIiBkPSJNNC40IDIuNWMxLjItLjEgMi45LS4zIDQuOS0uMyAyLjUgMCA0LjEuNCA1LjIgMS4zIDEgLjcgMS41IDEuOSAxLjUgMy41IDAgMi0xLjQgMy41LTIuOSA0LjEgMS4yLjQgMS43IDEuNiAyLjIgMyAuNiAxLjkgMSAzLjkgMS4zIDQuNmgtMy44Yy0uMy0uNC0uOC0xLjctMS4yLTMuN3MtMS4yLTIuNi0yLjYtMi42aC0uOXY2LjRINC40VjIuNXptMy43IDYuOWgxLjRjMS45IDAgMi45LS45IDIuOS0yLjNzLTEtMi4zLTIuOC0yLjNjLS43IDAtMS4zIDAtMS42LjJ2NC41aC4xdi0uMXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-react: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMTUwIDE1MCA1NDEuOSAyOTUuMyI+CiAgPGcgY2xhc3M9ImpwLWljb24tYnJhbmQyIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzYxREFGQiI+CiAgICA8cGF0aCBkPSJNNjY2LjMgMjk2LjVjMC0zMi41LTQwLjctNjMuMy0xMDMuMS04Mi40IDE0LjQtNjMuNiA4LTExNC4yLTIwLjItMTMwLjQtNi41LTMuOC0xNC4xLTUuNi0yMi40LTUuNnYyMi4zYzQuNiAwIDguMy45IDExLjQgMi42IDEzLjYgNy44IDE5LjUgMzcuNSAxNC45IDc1LjctMS4xIDkuNC0yLjkgMTkuMy01LjEgMjkuNC0xOS42LTQuOC00MS04LjUtNjMuNS0xMC45LTEzLjUtMTguNS0yNy41LTM1LjMtNDEuNi01MCAzMi42LTMwLjMgNjMuMi00Ni45IDg0LTQ2LjlWNzhjLTI3LjUgMC02My41IDE5LjYtOTkuOSA1My42LTM2LjQtMzMuOC03Mi40LTUzLjItOTkuOS01My4ydjIyLjNjMjAuNyAwIDUxLjQgMTYuNSA4NCA0Ni42LTE0IDE0LjctMjggMzEuNC00MS4zIDQ5LjktMjIuNiAyLjQtNDQgNi4xLTYzLjYgMTEtMi4zLTEwLTQtMTkuNy01LjItMjktNC43LTM4LjIgMS4xLTY3LjkgMTQuNi03NS44IDMtMS44IDYuOS0yLjYgMTEuNS0yLjZWNzguNWMtOC40IDAtMTYgMS44LTIyLjYgNS42LTI4LjEgMTYuMi0zNC40IDY2LjctMTkuOSAxMzAuMS02Mi4yIDE5LjItMTAyLjcgNDkuOS0xMDIuNyA4Mi4zIDAgMzIuNSA0MC43IDYzLjMgMTAzLjEgODIuNC0xNC40IDYzLjYtOCAxMTQuMiAyMC4yIDEzMC40IDYuNSAzLjggMTQuMSA1LjYgMjIuNSA1LjYgMjcuNSAwIDYzLjUtMTkuNiA5OS45LTUzLjYgMzYuNCAzMy44IDcyLjQgNTMuMiA5OS45IDUzLjIgOC40IDAgMTYtMS44IDIyLjYtNS42IDI4LjEtMTYuMiAzNC40LTY2LjcgMTkuOS0xMzAuMSA2Mi0xOS4xIDEwMi41LTQ5LjkgMTAyLjUtODIuM3ptLTEzMC4yLTY2LjdjLTMuNyAxMi45LTguMyAyNi4yLTEzLjUgMzkuNS00LjEtOC04LjQtMTYtMTMuMS0yNC00LjYtOC05LjUtMTUuOC0xNC40LTIzLjQgMTQuMiAyLjEgMjcuOSA0LjcgNDEgNy45em0tNDUuOCAxMDYuNWMtNy44IDEzLjUtMTUuOCAyNi4zLTI0LjEgMzguMi0xNC45IDEuMy0zMCAyLTQ1LjIgMi0xNS4xIDAtMzAuMi0uNy00NS0xLjktOC4zLTExLjktMTYuNC0yNC42LTI0LjItMzgtNy42LTEzLjEtMTQuNS0yNi40LTIwLjgtMzkuOCA2LjItMTMuNCAxMy4yLTI2LjggMjAuNy0zOS45IDcuOC0xMy41IDE1LjgtMjYuMyAyNC4xLTM4LjIgMTQuOS0xLjMgMzAtMiA0NS4yLTIgMTUuMSAwIDMwLjIuNyA0NSAxLjkgOC4zIDExLjkgMTYuNCAyNC42IDI0LjIgMzggNy42IDEzLjEgMTQuNSAyNi40IDIwLjggMzkuOC02LjMgMTMuNC0xMy4yIDI2LjgtMjAuNyAzOS45em0zMi4zLTEzYzUuNCAxMy40IDEwIDI2LjggMTMuOCAzOS44LTEzLjEgMy4yLTI2LjkgNS45LTQxLjIgOCA0LjktNy43IDkuOC0xNS42IDE0LjQtMjMuNyA0LjYtOCA4LjktMTYuMSAxMy0yNC4xek00MjEuMiA0MzBjLTkuMy05LjYtMTguNi0yMC4zLTI3LjgtMzIgOSAuNCAxOC4yLjcgMjcuNS43IDkuNCAwIDE4LjctLjIgMjcuOC0uNy05IDExLjctMTguMyAyMi40LTI3LjUgMzJ6bS03NC40LTU4LjljLTE0LjItMi4xLTI3LjktNC43LTQxLTcuOSAzLjctMTIuOSA4LjMtMjYuMiAxMy41LTM5LjUgNC4xIDggOC40IDE2IDEzLjEgMjQgNC43IDggOS41IDE1LjggMTQuNCAyMy40ek00MjAuNyAxNjNjOS4zIDkuNiAxOC42IDIwLjMgMjcuOCAzMi05LS40LTE4LjItLjctMjcuNS0uNy05LjQgMC0xOC43LjItMjcuOC43IDktMTEuNyAxOC4zLTIyLjQgMjcuNS0zMnptLTc0IDU4LjljLTQuOSA3LjctOS44IDE1LjYtMTQuNCAyMy43LTQuNiA4LTguOSAxNi0xMyAyNC01LjQtMTMuNC0xMC0yNi44LTEzLjgtMzkuOCAxMy4xLTMuMSAyNi45LTUuOCA0MS4yLTcuOXptLTkwLjUgMTI1LjJjLTM1LjQtMTUuMS01OC4zLTM0LjktNTguMy01MC42IDAtMTUuNyAyMi45LTM1LjYgNTguMy01MC42IDguNi0zLjcgMTgtNyAyNy43LTEwLjEgNS43IDE5LjYgMTMuMiA0MCAyMi41IDYwLjktOS4yIDIwLjgtMTYuNiA0MS4xLTIyLjIgNjAuNi05LjktMy4xLTE5LjMtNi41LTI4LTEwLjJ6TTMxMCA0OTBjLTEzLjYtNy44LTE5LjUtMzcuNS0xNC45LTc1LjcgMS4xLTkuNCAyLjktMTkuMyA1LjEtMjkuNCAxOS42IDQuOCA0MSA4LjUgNjMuNSAxMC45IDEzLjUgMTguNSAyNy41IDM1LjMgNDEuNiA1MC0zMi42IDMwLjMtNjMuMiA0Ni45LTg0IDQ2LjktNC41LS4xLTguMy0xLTExLjMtMi43em0yMzcuMi03Ni4yYzQuNyAzOC4yLTEuMSA2Ny45LTE0LjYgNzUuOC0zIDEuOC02LjkgMi42LTExLjUgMi42LTIwLjcgMC01MS40LTE2LjUtODQtNDYuNiAxNC0xNC43IDI4LTMxLjQgNDEuMy00OS45IDIyLjYtMi40IDQ0LTYuMSA2My42LTExIDIuMyAxMC4xIDQuMSAxOS44IDUuMiAyOS4xem0zOC41LTY2LjdjLTguNiAzLjctMTggNy0yNy43IDEwLjEtNS43LTE5LjYtMTMuMi00MC0yMi41LTYwLjkgOS4yLTIwLjggMTYuNi00MS4xIDIyLjItNjAuNiA5LjkgMy4xIDE5LjMgNi41IDI4LjEgMTAuMiAzNS40IDE1LjEgNTguMyAzNC45IDU4LjMgNTAuNi0uMSAxNS43LTIzIDM1LjYtNTguNCA1MC42ek0zMjAuOCA3OC40eiIvPgogICAgPGNpcmNsZSBjeD0iNDIwLjkiIGN5PSIyOTYuNSIgcj0iNDUuNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-redo: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTE4LjQgMTAuNkMxNi41NSA4Ljk5IDE0LjE1IDggMTEuNSA4Yy00LjY1IDAtOC41OCAzLjAzLTkuOTYgNy4yMkwzLjkgMTZjMS4wNS0zLjE5IDQuMDUtNS41IDcuNi01LjUgMS45NSAwIDMuNzMuNzIgNS4xMiAxLjg4TDEzIDE2aDlWN2wtMy42IDMuNnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-refresh: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTkgMTMuNWMtMi40OSAwLTQuNS0yLjAxLTQuNS00LjVTNi41MSA0LjUgOSA0LjVjMS4yNCAwIDIuMzYuNTIgMy4xNyAxLjMzTDEwIDhoNVYzbC0xLjc2IDEuNzZDMTIuMTUgMy42OCAxMC42NiAzIDkgMyA1LjY5IDMgMy4wMSA1LjY5IDMuMDEgOVM1LjY5IDE1IDkgMTVjMi45NyAwIDUuNDMtMi4xNiA1LjktNWgtMS41MmMtLjQ2IDItMi4yNCAzLjUtNC4zOCAzLjV6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-regex: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi1hY2NlbnQyIiBmaWxsPSIjRkZGIj4KICAgIDxjaXJjbGUgY2xhc3M9InN0MiIgY3g9IjUuNSIgY3k9IjE0LjUiIHI9IjEuNSIvPgogICAgPHJlY3QgeD0iMTIiIHk9IjQiIGNsYXNzPSJzdDIiIHdpZHRoPSIxIiBoZWlnaHQ9IjgiLz4KICAgIDxyZWN0IHg9IjguNSIgeT0iNy41IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjg2NiAtMC41IDAuNSAwLjg2NiAtMi4zMjU1IDcuMzIxOSkiIGNsYXNzPSJzdDIiIHdpZHRoPSI4IiBoZWlnaHQ9IjEiLz4KICAgIDxyZWN0IHg9IjEyIiB5PSI0IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjUgLTAuODY2IDAuODY2IDAuNSAtMC42Nzc5IDE0LjgyNTIpIiBjbGFzcz0ic3QyIiB3aWR0aD0iMSIgaGVpZ2h0PSI4Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-run: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTggNXYxNGwxMS03eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-running: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptOTYgMzI4YzAgOC44LTcuMiAxNi0xNiAxNkgxNzZjLTguOCAwLTE2LTcuMi0xNi0xNlYxNzZjMC04LjggNy4yLTE2IDE2LTE2aDE2MGM4LjggMCAxNiA3LjIgMTYgMTZ2MTYweiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-save: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE3IDNINWMtMS4xMSAwLTIgLjktMiAydjE0YzAgMS4xLjg5IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjdsLTQtNHptLTUgMTZjLTEuNjYgMC0zLTEuMzQtMy0zczEuMzQtMyAzLTMgMyAxLjM0IDMgMy0xLjM0IDMtMyAzem0zLTEwSDVWNWgxMHY0eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-search: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjEsMTAuOWgtMC43bC0wLjItMC4yYzAuOC0wLjksMS4zLTIuMiwxLjMtMy41YzAtMy0yLjQtNS40LTUuNC01LjRTMS44LDQuMiwxLjgsNy4xczIuNCw1LjQsNS40LDUuNCBjMS4zLDAsMi41LTAuNSwzLjUtMS4zbDAuMiwwLjJ2MC43bDQuMSw0LjFsMS4yLTEuMkwxMi4xLDEwLjl6IE03LjEsMTAuOWMtMi4xLDAtMy43LTEuNy0zLjctMy43czEuNy0zLjcsMy43LTMuN3MzLjcsMS43LDMuNywzLjcgUzkuMiwxMC45LDcuMSwxMC45eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-settings: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuNDMgMTIuOThjLjA0LS4zMi4wNy0uNjQuMDctLjk4cy0uMDMtLjY2LS4wNy0uOThsMi4xMS0xLjY1Yy4xOS0uMTUuMjQtLjQyLjEyLS42NGwtMi0zLjQ2Yy0uMTItLjIyLS4zOS0uMy0uNjEtLjIybC0yLjQ5IDFjLS41Mi0uNC0xLjA4LS43My0xLjY5LS45OGwtLjM4LTIuNjVBLjQ4OC40ODggMCAwMDE0IDJoLTRjLS4yNSAwLS40Ni4xOC0uNDkuNDJsLS4zOCAyLjY1Yy0uNjEuMjUtMS4xNy41OS0xLjY5Ljk4bC0yLjQ5LTFjLS4yMy0uMDktLjQ5IDAtLjYxLjIybC0yIDMuNDZjLS4xMy4yMi0uMDcuNDkuMTIuNjRsMi4xMSAxLjY1Yy0uMDQuMzItLjA3LjY1LS4wNy45OHMuMDMuNjYuMDcuOThsLTIuMTEgMS42NWMtLjE5LjE1LS4yNC40Mi0uMTIuNjRsMiAzLjQ2Yy4xMi4yMi4zOS4zLjYxLjIybDIuNDktMWMuNTIuNCAxLjA4LjczIDEuNjkuOThsLjM4IDIuNjVjLjAzLjI0LjI0LjQyLjQ5LjQyaDRjLjI1IDAgLjQ2LS4xOC40OS0uNDJsLjM4LTIuNjVjLjYxLS4yNSAxLjE3LS41OSAxLjY5LS45OGwyLjQ5IDFjLjIzLjA5LjQ5IDAgLjYxLS4yMmwyLTMuNDZjLjEyLS4yMi4wNy0uNDktLjEyLS42NGwtMi4xMS0xLjY1ek0xMiAxNS41Yy0xLjkzIDAtMy41LTEuNTctMy41LTMuNXMxLjU3LTMuNSAzLjUtMy41IDMuNSAxLjU3IDMuNSAzLjUtMS41NyAzLjUtMy41IDMuNXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-spreadsheet: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNENBRjUwIiBkPSJNMi4yIDIuMnYxNy42aDE3LjZWMi4ySDIuMnptMTUuNCA3LjdoLTUuNVY0LjRoNS41djUuNXpNOS45IDQuNHY1LjVINC40VjQuNGg1LjV6bS01LjUgNy43aDUuNXY1LjVINC40di01LjV6bTcuNyA1LjV2LTUuNWg1LjV2NS41aC01LjV6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-stop: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik02IDZoMTJ2MTJINnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tab: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIxIDNIM2MtMS4xIDAtMiAuOS0yIDJ2MTRjMCAxLjEuOSAyIDIgMmgxOGMxLjEgMCAyLS45IDItMlY1YzAtMS4xLS45LTItMi0yem0wIDE2SDNWNWgxMHY0aDh2MTB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-table-rows: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMSw4SDNWNGgxOFY4eiBNMjEsMTBIM3Y0aDE4VjEweiBNMjEsMTZIM3Y0aDE4VjE2eiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-tag: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCA0MyAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTI4LjgzMzIgMTIuMzM0TDMyLjk5OTggMTYuNTAwN0wzNy4xNjY1IDEyLjMzNEgyOC44MzMyWiIvPgoJCTxwYXRoIGQ9Ik0xNi4yMDk1IDIxLjYxMDRDMTUuNjg3MyAyMi4xMjk5IDE0Ljg0NDMgMjIuMTI5OSAxNC4zMjQ4IDIxLjYxMDRMNi45ODI5IDE0LjcyNDVDNi41NzI0IDE0LjMzOTQgNi4wODMxMyAxMy42MDk4IDYuMDQ3ODYgMTMuMDQ4MkM1Ljk1MzQ3IDExLjUyODggNi4wMjAwMiA4LjYxOTQ0IDYuMDY2MjEgNy4wNzY5NUM2LjA4MjgxIDYuNTE0NzcgNi41NTU0OCA2LjA0MzQ3IDcuMTE4MDQgNi4wMzA1NUM5LjA4ODYzIDUuOTg0NzMgMTMuMjYzOCA1LjkzNTc5IDEzLjY1MTggNi4zMjQyNUwyMS43MzY5IDEzLjYzOUMyMi4yNTYgMTQuMTU4NSAyMS43ODUxIDE1LjQ3MjQgMjEuMjYyIDE1Ljk5NDZMMTYuMjA5NSAyMS42MTA0Wk05Ljc3NTg1IDguMjY1QzkuMzM1NTEgNy44MjU2NiA4LjYyMzUxIDcuODI1NjYgOC4xODI4IDguMjY1QzcuNzQzNDYgOC43MDU3MSA3Ljc0MzQ2IDkuNDE3MzMgOC4xODI4IDkuODU2NjdDOC42MjM4MiAxMC4yOTY0IDkuMzM1ODIgMTAuMjk2NCA5Ljc3NTg1IDkuODU2NjdDMTAuMjE1NiA5LjQxNzMzIDEwLjIxNTYgOC43MDUzMyA5Ljc3NTg1IDguMjY1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-terminal: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiA+CiAgICA8cmVjdCBjbGFzcz0ianAtaWNvbjIganAtaWNvbi1zZWxlY3RhYmxlIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMikiIGZpbGw9IiMzMzMzMzMiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uLWFjY2VudDIganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGQ9Ik01LjA1NjY0IDguNzYxNzJDNS4wNTY2NCA4LjU5NzY2IDUuMDMxMjUgOC40NTMxMiA0Ljk4MDQ3IDguMzI4MTJDNC45MzM1OSA4LjE5OTIyIDQuODU1NDcgOC4wODIwMyA0Ljc0NjA5IDcuOTc2NTZDNC42NDA2MiA3Ljg3MTA5IDQuNSA3Ljc3NTM5IDQuMzI0MjIgNy42ODk0NUM0LjE1MjM0IDcuNTk5NjEgMy45NDMzNiA3LjUxMTcyIDMuNjk3MjcgNy40MjU3OEMzLjMwMjczIDcuMjg1MTYgMi45NDMzNiA3LjEzNjcyIDIuNjE5MTQgNi45ODA0N0MyLjI5NDkyIDYuODI0MjIgMi4wMTc1OCA2LjY0MjU4IDEuNzg3MTEgNi40MzU1NUMxLjU2MDU1IDYuMjI4NTIgMS4zODQ3NyA1Ljk4ODI4IDEuMjU5NzcgNS43MTQ4NEMxLjEzNDc3IDUuNDM3NSAxLjA3MjI3IDUuMTA5MzggMS4wNzIyNyA0LjczMDQ3QzEuMDcyMjcgNC4zOTg0NCAxLjEyODkxIDQuMDk1NyAxLjI0MjE5IDMuODIyMjdDMS4zNTU0NyAzLjU0NDkyIDEuNTE1NjIgMy4zMDQ2OSAxLjcyMjY2IDMuMTAxNTZDMS45Mjk2OSAyLjg5ODQ0IDIuMTc5NjkgMi43MzQzNyAyLjQ3MjY2IDIuNjA5MzhDMi43NjU2MiAyLjQ4NDM4IDMuMDkxOCAyLjQwNDMgMy40NTExNyAyLjM2OTE0VjEuMTA5MzhINC4zODg2N1YyLjM4MDg2QzQuNzQwMjMgMi40Mjc3MyA1LjA1NjY0IDIuNTIzNDQgNS4zMzc4OSAyLjY2Nzk3QzUuNjE5MTQgMi44MTI1IDUuODU3NDIgMy4wMDE5NSA2LjA1MjczIDMuMjM2MzNDNi4yNTE5NSAzLjQ2NjggNi40MDQzIDMuNzQwMjMgNi41MDk3NyA0LjA1NjY0QzYuNjE5MTQgNC4zNjkxNCA2LjY3MzgzIDQuNzIwNyA2LjY3MzgzIDUuMTExMzNINS4wNDQ5MkM1LjA0NDkyIDQuNjM4NjcgNC45Mzc1IDQuMjgxMjUgNC43MjI2NiA0LjAzOTA2QzQuNTA3ODEgMy43OTI5NyA0LjIxNjggMy42Njk5MiAzLjg0OTYxIDMuNjY5OTJDMy42NTAzOSAzLjY2OTkyIDMuNDc2NTYgMy42OTcyNyAzLjMyODEyIDMuNzUxOTVDMy4xODM1OSAzLjgwMjczIDMuMDY0NDUgMy44NzY5NSAyLjk3MDcgMy45NzQ2MUMyLjg3Njk1IDQuMDY4MzYgMi44MDY2NCA0LjE3OTY5IDIuNzU5NzcgNC4zMDg1OUMyLjcxNjggNC40Mzc1IDIuNjk1MzEgNC41NzgxMiAyLjY5NTMxIDQuNzMwNDdDMi42OTUzMSA0Ljg4MjgxIDIuNzE2OCA1LjAxOTUzIDIuNzU5NzcgNS4xNDA2MkMyLjgwNjY0IDUuMjU3ODEgMi44ODI4MSA1LjM2NzE5IDIuOTg4MjggNS40Njg3NUMzLjA5NzY2IDUuNTcwMzEgMy4yNDAyMyA1LjY2Nzk3IDMuNDE2MDIgNS43NjE3MkMzLjU5MTggNS44NTE1NiAzLjgxMDU1IDUuOTQzMzYgNC4wNzIyNyA2LjAzNzExQzQuNDY2OCA2LjE4NTU1IDQuODI0MjIgNi4zMzk4NCA1LjE0NDUzIDYuNUM1LjQ2NDg0IDYuNjU2MjUgNS43MzgyOCA2LjgzOTg0IDUuOTY0ODQgNy4wNTA3OEM2LjE5NTMxIDcuMjU3ODEgNi4zNzEwOSA3LjUgNi40OTIxOSA3Ljc3NzM0QzYuNjE3MTkgOC4wNTA3OCA2LjY3OTY5IDguMzc1IDYuNjc5NjkgOC43NUM2LjY3OTY5IDkuMDkzNzUgNi42MjMwNSA5LjQwNDMgNi41MDk3NyA5LjY4MTY0QzYuMzk2NDggOS45NTUwOCA2LjIzNDM4IDEwLjE5MTQgNi4wMjM0NCAxMC4zOTA2QzUuODEyNSAxMC41ODk4IDUuNTU4NTkgMTAuNzUgNS4yNjE3MiAxMC44NzExQzQuOTY0ODQgMTAuOTg4MyA0LjYzMjgxIDExLjA2NDUgNC4yNjU2MiAxMS4wOTk2VjEyLjI0OEgzLjMzMzk4VjExLjA5OTZDMy4wMDE5NSAxMS4wNjg0IDIuNjc5NjkgMTAuOTk2MSAyLjM2NzE5IDEwLjg4MjhDMi4wNTQ2OSAxMC43NjU2IDEuNzc3MzQgMTAuNTk3NyAxLjUzNTE2IDEwLjM3ODlDMS4yOTY4OCAxMC4xNjAyIDEuMTA1NDcgOS44ODQ3NyAwLjk2MDkzOCA5LjU1MjczQzAuODE2NDA2IDkuMjE2OCAwLjc0NDE0MSA4LjgxNDQ1IDAuNzQ0MTQxIDguMzQ1N0gyLjM3ODkxQzIuMzc4OTEgOC42MjY5NSAyLjQxOTkyIDguODYzMjggMi41MDE5NSA5LjA1NDY5QzIuNTgzOTggOS4yNDIxOSAyLjY4OTQ1IDkuMzkyNTggMi44MTgzNiA5LjUwNTg2QzIuOTUxMTcgOS42MTUyMyAzLjEwMTU2IDkuNjkzMzYgMy4yNjk1MyA5Ljc0MDIzQzMuNDM3NSA5Ljc4NzExIDMuNjA5MzggOS44MTA1NSAzLjc4NTE2IDkuODEwNTVDNC4yMDMxMiA5LjgxMDU1IDQuNTE5NTMgOS43MTI4OSA0LjczNDM4IDkuNTE3NThDNC45NDkyMiA5LjMyMjI3IDUuMDU2NjQgOS4wNzAzMSA1LjA1NjY0IDguNzYxNzJaTTEzLjQxOCAxMi4yNzE1SDguMDc0MjJWMTFIMTMuNDE4VjEyLjI3MTVaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzLjk1MjY0IDYpIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);\n  --jp-icon-text-editor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTUgMTVIM3YyaDEydi0yem0wLThIM3YyaDEyVjd6TTMgMTNoMTh2LTJIM3Yyem0wIDhoMTh2LTJIM3Yyek0zIDN2MmgxOFYzSDN6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-toc: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik03LDVIMjFWN0g3VjVNNywxM1YxMUgyMVYxM0g3TTQsNC41QTEuNSwxLjUgMCAwLDEgNS41LDZBMS41LDEuNSAwIDAsMSA0LDcuNUExLjUsMS41IDAgMCwxIDIuNSw2QTEuNSwxLjUgMCAwLDEgNCw0LjVNNCwxMC41QTEuNSwxLjUgMCAwLDEgNS41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMy41QTEuNSwxLjUgMCAwLDEgMi41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMC41TTcsMTlWMTdIMjFWMTlIN000LDE2LjVBMS41LDEuNSAwIDAsMSA1LjUsMThBMS41LDEuNSAwIDAsMSA0LDE5LjVBMS41LDEuNSAwIDAsMSAyLjUsMThBMS41LDEuNSAwIDAsMSA0LDE2LjVaIiAvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tree-view: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMiAxMVYzaC03djNIOVYzSDJ2OGg3VjhoMnYxMGg0djNoN3YtOGgtN3YzaC0yVjhoMnYzeiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMiAxNy4xODQ0IDIuOTY5NjggMTQuMzAzMiAxLjg2MDk0IDExLjQ0MDlaIi8+CiAgICA8cGF0aCBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiMzMzMzMzMiIHN0cm9rZT0iIzMzMzMzMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA5Ljg2NzE5KSIgZD0iTTIuODYwMTUgNC44NjUzNUwwLjcyNjU0OSAyLjk5OTU5TDAgMy42MzA0NUwyLjg2MDE1IDYuMTMxNTdMOCAwLjYzMDg3Mkw3LjI3ODU3IDBMMi44NjAxNSA0Ljg2NTM1WiIvPgo8L3N2Zz4K);\n  --jp-icon-undo: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjUgOGMtMi42NSAwLTUuMDUuOTktNi45IDIuNkwyIDd2OWg5bC0zLjYyLTMuNjJjMS4zOS0xLjE2IDMuMTYtMS44OCA1LjEyLTEuODggMy41NCAwIDYuNTUgMi4zMSA3LjYgNS41bDIuMzctLjc4QzIxLjA4IDExLjAzIDE3LjE1IDggMTIuNSA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-vega: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbjEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjEyMTIxIj4KICAgIDxwYXRoIGQ9Ik0xMC42IDUuNGwyLjItMy4ySDIuMnY3LjNsNC02LjZ6Ii8+CiAgICA8cGF0aCBkPSJNMTUuOCAyLjJsLTQuNCA2LjZMNyA2LjNsLTQuOCA4djUuNWgxNy42VjIuMmgtNHptLTcgMTUuNEg1LjV2LTQuNGgzLjN2NC40em00LjQgMEg5LjhWOS44aDMuNHY3Ljh6bTQuNCAwaC0zLjRWNi41aDMuNHYxMS4xeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-yaml: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1jb250cmFzdDIganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjRDgxQjYwIj4KICAgIDxwYXRoIGQ9Ik03LjIgMTguNnYtNS40TDMgNS42aDMuM2wxLjQgMy4xYy4zLjkuNiAxLjYgMSAyLjUuMy0uOC42LTEuNiAxLTIuNWwxLjQtMy4xaDMuNGwtNC40IDcuNnY1LjVsLTIuOS0uMXoiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxNi41IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxMSIgcj0iMi4xIi8+CiAgPC9nPgo8L3N2Zz4K);\n}\n\n/* Icon CSS class declarations */\n\n.jp-AddIcon {\n  background-image: var(--jp-icon-add);\n}\n.jp-BugIcon {\n  background-image: var(--jp-icon-bug);\n}\n.jp-BuildIcon {\n  background-image: var(--jp-icon-build);\n}\n.jp-CaretDownEmptyIcon {\n  background-image: var(--jp-icon-caret-down-empty);\n}\n.jp-CaretDownEmptyThinIcon {\n  background-image: var(--jp-icon-caret-down-empty-thin);\n}\n.jp-CaretDownIcon {\n  background-image: var(--jp-icon-caret-down);\n}\n.jp-CaretLeftIcon {\n  background-image: var(--jp-icon-caret-left);\n}\n.jp-CaretRightIcon {\n  background-image: var(--jp-icon-caret-right);\n}\n.jp-CaretUpEmptyThinIcon {\n  background-image: var(--jp-icon-caret-up-empty-thin);\n}\n.jp-CaretUpIcon {\n  background-image: var(--jp-icon-caret-up);\n}\n.jp-CaseSensitiveIcon {\n  background-image: var(--jp-icon-case-sensitive);\n}\n.jp-CheckIcon {\n  background-image: var(--jp-icon-check);\n}\n.jp-CircleEmptyIcon {\n  background-image: var(--jp-icon-circle-empty);\n}\n.jp-CircleIcon {\n  background-image: var(--jp-icon-circle);\n}\n.jp-ClearIcon {\n  background-image: var(--jp-icon-clear);\n}\n.jp-CloseIcon {\n  background-image: var(--jp-icon-close);\n}\n.jp-CodeIcon {\n  background-image: var(--jp-icon-code);\n}\n.jp-ConsoleIcon {\n  background-image: var(--jp-icon-console);\n}\n.jp-CopyIcon {\n  background-image: var(--jp-icon-copy);\n}\n.jp-CopyrightIcon {\n  background-image: var(--jp-icon-copyright);\n}\n.jp-CutIcon {\n  background-image: var(--jp-icon-cut);\n}\n.jp-DownloadIcon {\n  background-image: var(--jp-icon-download);\n}\n.jp-EditIcon {\n  background-image: var(--jp-icon-edit);\n}\n.jp-EllipsesIcon {\n  background-image: var(--jp-icon-ellipses);\n}\n.jp-ExtensionIcon {\n  background-image: var(--jp-icon-extension);\n}\n.jp-FastForwardIcon {\n  background-image: var(--jp-icon-fast-forward);\n}\n.jp-FileIcon {\n  background-image: var(--jp-icon-file);\n}\n.jp-FileUploadIcon {\n  background-image: var(--jp-icon-file-upload);\n}\n.jp-FilterListIcon {\n  background-image: var(--jp-icon-filter-list);\n}\n.jp-FolderIcon {\n  background-image: var(--jp-icon-folder);\n}\n.jp-Html5Icon {\n  background-image: var(--jp-icon-html5);\n}\n.jp-ImageIcon {\n  background-image: var(--jp-icon-image);\n}\n.jp-InspectorIcon {\n  background-image: var(--jp-icon-inspector);\n}\n.jp-JsonIcon {\n  background-image: var(--jp-icon-json);\n}\n.jp-JuliaIcon {\n  background-image: var(--jp-icon-julia);\n}\n.jp-JupyterFaviconIcon {\n  background-image: var(--jp-icon-jupyter-favicon);\n}\n.jp-JupyterIcon {\n  background-image: var(--jp-icon-jupyter);\n}\n.jp-JupyterlabWordmarkIcon {\n  background-image: var(--jp-icon-jupyterlab-wordmark);\n}\n.jp-KernelIcon {\n  background-image: var(--jp-icon-kernel);\n}\n.jp-KeyboardIcon {\n  background-image: var(--jp-icon-keyboard);\n}\n.jp-LauncherIcon {\n  background-image: var(--jp-icon-launcher);\n}\n.jp-LineFormIcon {\n  background-image: var(--jp-icon-line-form);\n}\n.jp-LinkIcon {\n  background-image: var(--jp-icon-link);\n}\n.jp-ListIcon {\n  background-image: var(--jp-icon-list);\n}\n.jp-ListingsInfoIcon {\n  background-image: var(--jp-icon-listings-info);\n}\n.jp-MarkdownIcon {\n  background-image: var(--jp-icon-markdown);\n}\n.jp-NewFolderIcon {\n  background-image: var(--jp-icon-new-folder);\n}\n.jp-NotTrustedIcon {\n  background-image: var(--jp-icon-not-trusted);\n}\n.jp-NotebookIcon {\n  background-image: var(--jp-icon-notebook);\n}\n.jp-NumberingIcon {\n  background-image: var(--jp-icon-numbering);\n}\n.jp-OfflineBoltIcon {\n  background-image: var(--jp-icon-offline-bolt);\n}\n.jp-PaletteIcon {\n  background-image: var(--jp-icon-palette);\n}\n.jp-PasteIcon {\n  background-image: var(--jp-icon-paste);\n}\n.jp-PdfIcon {\n  background-image: var(--jp-icon-pdf);\n}\n.jp-PythonIcon {\n  background-image: var(--jp-icon-python);\n}\n.jp-RKernelIcon {\n  background-image: var(--jp-icon-r-kernel);\n}\n.jp-ReactIcon {\n  background-image: var(--jp-icon-react);\n}\n.jp-RedoIcon {\n  background-image: var(--jp-icon-redo);\n}\n.jp-RefreshIcon {\n  background-image: var(--jp-icon-refresh);\n}\n.jp-RegexIcon {\n  background-image: var(--jp-icon-regex);\n}\n.jp-RunIcon {\n  background-image: var(--jp-icon-run);\n}\n.jp-RunningIcon {\n  background-image: var(--jp-icon-running);\n}\n.jp-SaveIcon {\n  background-image: var(--jp-icon-save);\n}\n.jp-SearchIcon {\n  background-image: var(--jp-icon-search);\n}\n.jp-SettingsIcon {\n  background-image: var(--jp-icon-settings);\n}\n.jp-SpreadsheetIcon {\n  background-image: var(--jp-icon-spreadsheet);\n}\n.jp-StopIcon {\n  background-image: var(--jp-icon-stop);\n}\n.jp-TabIcon {\n  background-image: var(--jp-icon-tab);\n}\n.jp-TableRowsIcon {\n  background-image: var(--jp-icon-table-rows);\n}\n.jp-TagIcon {\n  background-image: var(--jp-icon-tag);\n}\n.jp-TerminalIcon {\n  background-image: var(--jp-icon-terminal);\n}\n.jp-TextEditorIcon {\n  background-image: var(--jp-icon-text-editor);\n}\n.jp-TocIcon {\n  background-image: var(--jp-icon-toc);\n}\n.jp-TreeViewIcon {\n  background-image: var(--jp-icon-tree-view);\n}\n.jp-TrustedIcon {\n  background-image: var(--jp-icon-trusted);\n}\n.jp-UndoIcon {\n  background-image: var(--jp-icon-undo);\n}\n.jp-VegaIcon {\n  background-image: var(--jp-icon-vega);\n}\n.jp-YamlIcon {\n  background-image: var(--jp-icon-yaml);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n.jp-Icon,\n.jp-MaterialIcon {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-cover {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: cover;\n}\n\n/**\n * (DEPRECATED) Support for specific CSS icon sizes\n */\n\n.jp-Icon-16 {\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-18 {\n  background-size: 18px;\n  min-width: 18px;\n  min-height: 18px;\n}\n\n.jp-Icon-20 {\n  background-size: 20px;\n  min-width: 20px;\n  min-height: 20px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for icons as inline SVG HTMLElements\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n/* recolor the accent elements of an icon */\n.jp-icon-accent0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-accent1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-accent2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-accent3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-accent4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-accent0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-accent1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-accent2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-accent3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-accent4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n/* set the color of an icon to transparent */\n.jp-icon-none[fill] {\n  fill: none;\n}\n\n.jp-icon-none[stroke] {\n  stroke: none;\n}\n/* brand icon colors. Same for light and dark */\n.jp-icon-brand0[fill] {\n  fill: var(--jp-brand-color0);\n}\n.jp-icon-brand1[fill] {\n  fill: var(--jp-brand-color1);\n}\n.jp-icon-brand2[fill] {\n  fill: var(--jp-brand-color2);\n}\n.jp-icon-brand3[fill] {\n  fill: var(--jp-brand-color3);\n}\n.jp-icon-brand4[fill] {\n  fill: var(--jp-brand-color4);\n}\n\n.jp-icon-brand0[stroke] {\n  stroke: var(--jp-brand-color0);\n}\n.jp-icon-brand1[stroke] {\n  stroke: var(--jp-brand-color1);\n}\n.jp-icon-brand2[stroke] {\n  stroke: var(--jp-brand-color2);\n}\n.jp-icon-brand3[stroke] {\n  stroke: var(--jp-brand-color3);\n}\n.jp-icon-brand4[stroke] {\n  stroke: var(--jp-brand-color4);\n}\n/* warn icon colors. Same for light and dark */\n.jp-icon-warn0[fill] {\n  fill: var(--jp-warn-color0);\n}\n.jp-icon-warn1[fill] {\n  fill: var(--jp-warn-color1);\n}\n.jp-icon-warn2[fill] {\n  fill: var(--jp-warn-color2);\n}\n.jp-icon-warn3[fill] {\n  fill: var(--jp-warn-color3);\n}\n\n.jp-icon-warn0[stroke] {\n  stroke: var(--jp-warn-color0);\n}\n.jp-icon-warn1[stroke] {\n  stroke: var(--jp-warn-color1);\n}\n.jp-icon-warn2[stroke] {\n  stroke: var(--jp-warn-color2);\n}\n.jp-icon-warn3[stroke] {\n  stroke: var(--jp-warn-color3);\n}\n/* icon colors that contrast well with each other and most backgrounds */\n.jp-icon-contrast0[fill] {\n  fill: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[fill] {\n  fill: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[fill] {\n  fill: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[fill] {\n  fill: var(--jp-icon-contrast-color3);\n}\n\n.jp-icon-contrast0[stroke] {\n  stroke: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[stroke] {\n  stroke: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[stroke] {\n  stroke: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[stroke] {\n  stroke: var(--jp-icon-contrast-color3);\n}\n\n/* CSS for icons in selected items in the settings editor */\n#setting-editor .jp-PluginList .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n#setting-editor\n  .jp-PluginList\n  .jp-mod-selected\n  .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected filebrowser listing items */\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected tabs in the sidebar tab manager */\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable-inverse[fill] {\n  fill: #fff;\n}\n\n/**\n * TODO: come up with non css-hack solution for showing the busy icon on top\n *  of the close icon\n * CSS for complex behavior of close icon of tabs in the sidebar tab manager\n */\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty.jp-mod-active\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: #fff;\n}\n\n/**\n* TODO: come up with non css-hack solution for showing the busy icon on top\n*  of the close icon\n* CSS for complex behavior of close icon of tabs in the main area tabbar\n*/\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n/* CSS for icons in status bar */\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n/* special handling for splash icon CSS. While the theme CSS reloads during\n   splash, the splash icon can loose theming. To prevent that, we set a\n   default for its color variable */\n:root {\n  --jp-warn-color0: var(--md-orange-700);\n}\n\n/* not sure what to do with this one, used in filebrowser listing */\n.jp-DragIcon {\n  margin-right: 4px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for alt colors for icons as inline SVG HTMLElements\n */\n\n/* alt recolor the primary elements of an icon */\n.jp-icon-alt .jp-icon0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-alt .jp-icon0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* alt recolor the accent elements of an icon */\n.jp-icon-alt .jp-icon-accent0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-alt .jp-icon-accent0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-icon-hoverShow:not(:hover) svg {\n  display: none !important;\n}\n\n/**\n * Support for hover colors for icons as inline SVG HTMLElements\n */\n\n/**\n * regular colors\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon-hover :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/* recolor the accent elements of an icon */\n.jp-icon-hover :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* set the color of an icon to transparent */\n.jp-icon-hover :hover .jp-icon-none-hover[fill] {\n  fill: none;\n}\n\n.jp-icon-hover :hover .jp-icon-none-hover[stroke] {\n  stroke: none;\n}\n\n/**\n * inverse colors\n */\n\n/* inverse recolor the primary elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* inverse recolor the accent elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-switch {\n  display: flex;\n  align-items: center;\n  padding-left: 4px;\n  padding-right: 4px;\n  font-size: var(--jp-ui-font-size1);\n  background-color: transparent;\n  color: var(--jp-ui-font-color1);\n  border: none;\n  height: 20px;\n}\n\n.jp-switch:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-switch-label {\n  margin-right: 5px;\n}\n\n.jp-switch-track {\n  cursor: pointer;\n  background-color: var(--jp-border-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 34px;\n  height: 16px;\n  width: 35px;\n  position: relative;\n}\n\n.jp-switch-track::before {\n  content: '';\n  position: absolute;\n  height: 10px;\n  width: 10px;\n  margin: 3px;\n  left: 0px;\n  background-color: var(--jp-ui-inverse-font-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 50%;\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track {\n  background-color: var(--jp-warn-color0);\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track::before {\n  /* track width (35) - margins (3 + 3) - thumb width (10) */\n  left: 19px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* Sibling imports */\n\n/* Override Blueprint's _reset.scss styles */\nhtml {\n  box-sizing: unset;\n}\n\n*,\n*::before,\n*::after {\n  box-sizing: unset;\n}\n\nbody {\n  color: unset;\n  font-family: var(--jp-ui-font-family);\n}\n\np {\n  margin-top: unset;\n  margin-bottom: unset;\n}\n\nsmall {\n  font-size: unset;\n}\n\nstrong {\n  font-weight: unset;\n}\n\n/* Override Blueprint's _typography.scss styles */\na {\n  text-decoration: unset;\n  color: unset;\n}\na:hover {\n  text-decoration: unset;\n  color: unset;\n}\n\n/* Override Blueprint's _accessibility.scss styles */\n:focus {\n  outline: unset;\n  outline-offset: unset;\n  -moz-outline-radius: unset;\n}\n\n/* Styles for ui-components */\n.jp-Button {\n  border-radius: var(--jp-border-radius);\n  padding: 0px 12px;\n  font-size: var(--jp-ui-font-size1);\n}\n\n/* Use our own theme for hover styles */\nbutton.jp-Button.bp3-button.bp3-minimal:hover {\n  background-color: var(--jp-layout-color2);\n}\n.jp-Button.minimal {\n  color: unset !important;\n}\n\n.jp-Button.jp-ToolbarButtonComponent {\n  text-transform: none;\n}\n\n.jp-InputGroup input {\n  box-sizing: border-box;\n  border-radius: 0;\n  background-color: transparent;\n  color: var(--jp-ui-font-color0);\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.jp-InputGroup input:focus {\n  box-shadow: inset 0 0 0 var(--jp-border-width)\n      var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-InputGroup input::placeholder,\ninput::placeholder {\n  color: var(--jp-ui-font-color3);\n}\n\n.jp-BPIcon {\n  display: inline-block;\n  vertical-align: middle;\n  margin: auto;\n}\n\n/* Stop blueprint futzing with our icon fills */\n.bp3-icon.jp-BPIcon > svg:not([fill]) {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n.jp-InputGroupAction {\n  padding: 6px;\n}\n\n.jp-HTMLSelect.jp-DefaultStyle select {\n  background-color: initial;\n  border: none;\n  border-radius: 0;\n  box-shadow: none;\n  color: var(--jp-ui-font-color0);\n  display: block;\n  font-size: var(--jp-ui-font-size1);\n  height: 24px;\n  line-height: 14px;\n  padding: 0 25px 0 10px;\n  text-align: left;\n  -moz-appearance: none;\n  -webkit-appearance: none;\n}\n\n/* Use our own theme for hover and option styles */\n.jp-HTMLSelect.jp-DefaultStyle select:hover,\n.jp-HTMLSelect.jp-DefaultStyle select > option {\n  background-color: var(--jp-layout-color2);\n  color: var(--jp-ui-font-color0);\n}\nselect {\n  box-sizing: border-box;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapse {\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  border-top: 1px solid var(--jp-border-color2);\n  border-bottom: 1px solid var(--jp-border-color2);\n}\n\n.jp-Collapse-header {\n  padding: 1px 12px;\n  color: var(--jp-ui-font-color1);\n  background-color: var(--jp-layout-color1);\n  font-size: var(--jp-ui-font-size2);\n}\n\n.jp-Collapse-header:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-Collapse-contents {\n  padding: 0px 12px 0px 12px;\n  background-color: var(--jp-layout-color1);\n  color: var(--jp-ui-font-color1);\n  overflow: auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-commandpalette-search-height: 28px;\n}\n\n/*-----------------------------------------------------------------------------\n| Overall styles\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette {\n  padding-bottom: 0px;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Modal variant\n|----------------------------------------------------------------------------*/\n\n.jp-ModalCommandPalette {\n  position: absolute;\n  z-index: 10000;\n  top: 38px;\n  left: 30%;\n  margin: 0;\n  padding: 4px;\n  width: 40%;\n  box-shadow: var(--jp-elevation-z4);\n  border-radius: 4px;\n  background: var(--jp-layout-color0);\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette {\n  max-height: 40vh;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-close-icon::after {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-header {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-item {\n  margin-left: 4px;\n  margin-right: 4px;\n}\n\n.jp-ModalCommandPalette\n  .lm-CommandPalette\n  .lm-CommandPalette-item.lm-mod-disabled {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Search\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-search {\n  padding: 4px;\n  background-color: var(--jp-layout-color1);\n  z-index: 2;\n}\n\n.lm-CommandPalette-wrapper {\n  overflow: overlay;\n  padding: 0px 9px;\n  background-color: var(--jp-input-active-background);\n  height: 30px;\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.lm-CommandPalette.lm-mod-focused .lm-CommandPalette-wrapper {\n  box-shadow: inset 0 0 0 1px var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-SearchIconGroup {\n  color: white;\n  background-color: var(--jp-brand-color1);\n  position: absolute;\n  top: 4px;\n  right: 4px;\n  padding: 5px 5px 1px 5px;\n}\n\n.jp-SearchIconGroup svg {\n  height: 20px;\n  width: 20px;\n}\n\n.jp-SearchIconGroup .jp-icon3[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-input {\n  background: transparent;\n  width: calc(100% - 18px);\n  float: left;\n  border: none;\n  outline: none;\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  line-height: var(--jp-private-commandpalette-search-height);\n}\n\n.lm-CommandPalette-input::-webkit-input-placeholder,\n.lm-CommandPalette-input::-moz-placeholder,\n.lm-CommandPalette-input:-ms-input-placeholder {\n  color: var(--jp-ui-font-color2);\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Results\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-header:first-child {\n  margin-top: 0px;\n}\n\n.lm-CommandPalette-header {\n  border-bottom: solid var(--jp-border-width) var(--jp-border-color2);\n  color: var(--jp-ui-font-color1);\n  cursor: pointer;\n  display: flex;\n  font-size: var(--jp-ui-font-size0);\n  font-weight: 600;\n  letter-spacing: 1px;\n  margin-top: 8px;\n  padding: 8px 0 8px 12px;\n  text-transform: uppercase;\n}\n\n.lm-CommandPalette-header.lm-mod-active {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-header > mark {\n  background-color: transparent;\n  font-weight: bold;\n  color: var(--jp-ui-font-color1);\n}\n\n.lm-CommandPalette-item {\n  padding: 4px 12px 4px 4px;\n  color: var(--jp-ui-font-color1);\n  font-size: var(--jp-ui-font-size1);\n  font-weight: 400;\n  display: flex;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item.lm-mod-active {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .jp-icon-selectable[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active:hover:not(.lm-mod-disabled) {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item:hover:not(.lm-mod-active):not(.lm-mod-disabled) {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-itemContent {\n  overflow: hidden;\n}\n\n.lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled mark {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemIcon {\n  margin: 0 4px 0 0;\n  position: relative;\n  width: 16px;\n  top: 2px;\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled .lm-CommandPalette-itemIcon {\n  opacity: 0.6;\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-itemCaption {\n  display: none;\n}\n\n.lm-CommandPalette-content {\n  background-color: var(--jp-layout-color1);\n}\n\n.lm-CommandPalette-content:empty:after {\n  content: 'No results';\n  margin: auto;\n  margin-top: 20px;\n  width: 100px;\n  display: block;\n  font-size: var(--jp-ui-font-size2);\n  font-family: var(--jp-ui-font-family);\n  font-weight: lighter;\n}\n\n.lm-CommandPalette-emptyMessage {\n  text-align: center;\n  margin-top: 24px;\n  line-height: 1.32;\n  padding: 0px 8px;\n  color: var(--jp-content-font-color3);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Dialog {\n  position: absolute;\n  z-index: 10000;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  top: 0px;\n  left: 0px;\n  margin: 0;\n  padding: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-dialog-background);\n}\n\n.jp-Dialog-content {\n  display: flex;\n  flex-direction: column;\n  margin-left: auto;\n  margin-right: auto;\n  background: var(--jp-layout-color1);\n  padding: 24px;\n  padding-bottom: 12px;\n  min-width: 300px;\n  min-height: 150px;\n  max-width: 1000px;\n  max-height: 500px;\n  box-sizing: border-box;\n  box-shadow: var(--jp-elevation-z20);\n  word-wrap: break-word;\n  border-radius: var(--jp-border-radius);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color1);\n  resize: both;\n}\n\n.jp-Dialog-button {\n  overflow: visible;\n}\n\nbutton.jp-Dialog-button:focus {\n  outline: 1px solid var(--jp-brand-color1);\n  outline-offset: 4px;\n  -moz-outline-radius: 0px;\n}\n\nbutton.jp-Dialog-button:focus::-moz-focus-inner {\n  border: 0;\n}\n\nbutton.jp-Dialog-close-button {\n  padding: 0;\n  height: 100%;\n  min-width: unset;\n  min-height: unset;\n}\n\n.jp-Dialog-header {\n  display: flex;\n  justify-content: space-between;\n  flex: 0 0 auto;\n  padding-bottom: 12px;\n  font-size: var(--jp-ui-font-size3);\n  font-weight: 400;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-body {\n  display: flex;\n  flex-direction: column;\n  flex: 1 1 auto;\n  font-size: var(--jp-ui-font-size1);\n  background: var(--jp-layout-color1);\n  overflow: auto;\n}\n\n.jp-Dialog-footer {\n  display: flex;\n  flex-direction: row;\n  justify-content: flex-end;\n  flex: 0 0 auto;\n  margin-left: -12px;\n  margin-right: -12px;\n  padding: 12px;\n}\n\n.jp-Dialog-title {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.jp-Dialog-body > .jp-select-wrapper {\n  width: 100%;\n}\n\n.jp-Dialog-body > button {\n  padding: 0px 16px;\n}\n\n.jp-Dialog-body > label {\n  line-height: 1.4;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-button.jp-mod-styled:not(:last-child) {\n  margin-right: 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-HoverBox {\n  position: fixed;\n}\n\n.jp-HoverBox.jp-mod-outofview {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-IFrame {\n  width: 100%;\n  height: 100%;\n}\n\n.jp-IFrame > iframe {\n  border: none;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-IFrame {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-IFrame:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n.jp-Input-Boolean-Dialog {\n  flex-direction: row-reverse;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-Input-Boolean-Dialog > label {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MainAreaWidget > :focus {\n  outline: none;\n}\n\n/**\n * google-material-color v1.2.6\n * https://github.com/danlevan/google-material-color\n */\n:root {\n  --md-red-50: #ffebee;\n  --md-red-100: #ffcdd2;\n  --md-red-200: #ef9a9a;\n  --md-red-300: #e57373;\n  --md-red-400: #ef5350;\n  --md-red-500: #f44336;\n  --md-red-600: #e53935;\n  --md-red-700: #d32f2f;\n  --md-red-800: #c62828;\n  --md-red-900: #b71c1c;\n  --md-red-A100: #ff8a80;\n  --md-red-A200: #ff5252;\n  --md-red-A400: #ff1744;\n  --md-red-A700: #d50000;\n\n  --md-pink-50: #fce4ec;\n  --md-pink-100: #f8bbd0;\n  --md-pink-200: #f48fb1;\n  --md-pink-300: #f06292;\n  --md-pink-400: #ec407a;\n  --md-pink-500: #e91e63;\n  --md-pink-600: #d81b60;\n  --md-pink-700: #c2185b;\n  --md-pink-800: #ad1457;\n  --md-pink-900: #880e4f;\n  --md-pink-A100: #ff80ab;\n  --md-pink-A200: #ff4081;\n  --md-pink-A400: #f50057;\n  --md-pink-A700: #c51162;\n\n  --md-purple-50: #f3e5f5;\n  --md-purple-100: #e1bee7;\n  --md-purple-200: #ce93d8;\n  --md-purple-300: #ba68c8;\n  --md-purple-400: #ab47bc;\n  --md-purple-500: #9c27b0;\n  --md-purple-600: #8e24aa;\n  --md-purple-700: #7b1fa2;\n  --md-purple-800: #6a1b9a;\n  --md-purple-900: #4a148c;\n  --md-purple-A100: #ea80fc;\n  --md-purple-A200: #e040fb;\n  --md-purple-A400: #d500f9;\n  --md-purple-A700: #aa00ff;\n\n  --md-deep-purple-50: #ede7f6;\n  --md-deep-purple-100: #d1c4e9;\n  --md-deep-purple-200: #b39ddb;\n  --md-deep-purple-300: #9575cd;\n  --md-deep-purple-400: #7e57c2;\n  --md-deep-purple-500: #673ab7;\n  --md-deep-purple-600: #5e35b1;\n  --md-deep-purple-700: #512da8;\n  --md-deep-purple-800: #4527a0;\n  --md-deep-purple-900: #311b92;\n  --md-deep-purple-A100: #b388ff;\n  --md-deep-purple-A200: #7c4dff;\n  --md-deep-purple-A400: #651fff;\n  --md-deep-purple-A700: #6200ea;\n\n  --md-indigo-50: #e8eaf6;\n  --md-indigo-100: #c5cae9;\n  --md-indigo-200: #9fa8da;\n  --md-indigo-300: #7986cb;\n  --md-indigo-400: #5c6bc0;\n  --md-indigo-500: #3f51b5;\n  --md-indigo-600: #3949ab;\n  --md-indigo-700: #303f9f;\n  --md-indigo-800: #283593;\n  --md-indigo-900: #1a237e;\n  --md-indigo-A100: #8c9eff;\n  --md-indigo-A200: #536dfe;\n  --md-indigo-A400: #3d5afe;\n  --md-indigo-A700: #304ffe;\n\n  --md-blue-50: #e3f2fd;\n  --md-blue-100: #bbdefb;\n  --md-blue-200: #90caf9;\n  --md-blue-300: #64b5f6;\n  --md-blue-400: #42a5f5;\n  --md-blue-500: #2196f3;\n  --md-blue-600: #1e88e5;\n  --md-blue-700: #1976d2;\n  --md-blue-800: #1565c0;\n  --md-blue-900: #0d47a1;\n  --md-blue-A100: #82b1ff;\n  --md-blue-A200: #448aff;\n  --md-blue-A400: #2979ff;\n  --md-blue-A700: #2962ff;\n\n  --md-light-blue-50: #e1f5fe;\n  --md-light-blue-100: #b3e5fc;\n  --md-light-blue-200: #81d4fa;\n  --md-light-blue-300: #4fc3f7;\n  --md-light-blue-400: #29b6f6;\n  --md-light-blue-500: #03a9f4;\n  --md-light-blue-600: #039be5;\n  --md-light-blue-700: #0288d1;\n  --md-light-blue-800: #0277bd;\n  --md-light-blue-900: #01579b;\n  --md-light-blue-A100: #80d8ff;\n  --md-light-blue-A200: #40c4ff;\n  --md-light-blue-A400: #00b0ff;\n  --md-light-blue-A700: #0091ea;\n\n  --md-cyan-50: #e0f7fa;\n  --md-cyan-100: #b2ebf2;\n  --md-cyan-200: #80deea;\n  --md-cyan-300: #4dd0e1;\n  --md-cyan-400: #26c6da;\n  --md-cyan-500: #00bcd4;\n  --md-cyan-600: #00acc1;\n  --md-cyan-700: #0097a7;\n  --md-cyan-800: #00838f;\n  --md-cyan-900: #006064;\n  --md-cyan-A100: #84ffff;\n  --md-cyan-A200: #18ffff;\n  --md-cyan-A400: #00e5ff;\n  --md-cyan-A700: #00b8d4;\n\n  --md-teal-50: #e0f2f1;\n  --md-teal-100: #b2dfdb;\n  --md-teal-200: #80cbc4;\n  --md-teal-300: #4db6ac;\n  --md-teal-400: #26a69a;\n  --md-teal-500: #009688;\n  --md-teal-600: #00897b;\n  --md-teal-700: #00796b;\n  --md-teal-800: #00695c;\n  --md-teal-900: #004d40;\n  --md-teal-A100: #a7ffeb;\n  --md-teal-A200: #64ffda;\n  --md-teal-A400: #1de9b6;\n  --md-teal-A700: #00bfa5;\n\n  --md-green-50: #e8f5e9;\n  --md-green-100: #c8e6c9;\n  --md-green-200: #a5d6a7;\n  --md-green-300: #81c784;\n  --md-green-400: #66bb6a;\n  --md-green-500: #4caf50;\n  --md-green-600: #43a047;\n  --md-green-700: #388e3c;\n  --md-green-800: #2e7d32;\n  --md-green-900: #1b5e20;\n  --md-green-A100: #b9f6ca;\n  --md-green-A200: #69f0ae;\n  --md-green-A400: #00e676;\n  --md-green-A700: #00c853;\n\n  --md-light-green-50: #f1f8e9;\n  --md-light-green-100: #dcedc8;\n  --md-light-green-200: #c5e1a5;\n  --md-light-green-300: #aed581;\n  --md-light-green-400: #9ccc65;\n  --md-light-green-500: #8bc34a;\n  --md-light-green-600: #7cb342;\n  --md-light-green-700: #689f38;\n  --md-light-green-800: #558b2f;\n  --md-light-green-900: #33691e;\n  --md-light-green-A100: #ccff90;\n  --md-light-green-A200: #b2ff59;\n  --md-light-green-A400: #76ff03;\n  --md-light-green-A700: #64dd17;\n\n  --md-lime-50: #f9fbe7;\n  --md-lime-100: #f0f4c3;\n  --md-lime-200: #e6ee9c;\n  --md-lime-300: #dce775;\n  --md-lime-400: #d4e157;\n  --md-lime-500: #cddc39;\n  --md-lime-600: #c0ca33;\n  --md-lime-700: #afb42b;\n  --md-lime-800: #9e9d24;\n  --md-lime-900: #827717;\n  --md-lime-A100: #f4ff81;\n  --md-lime-A200: #eeff41;\n  --md-lime-A400: #c6ff00;\n  --md-lime-A700: #aeea00;\n\n  --md-yellow-50: #fffde7;\n  --md-yellow-100: #fff9c4;\n  --md-yellow-200: #fff59d;\n  --md-yellow-300: #fff176;\n  --md-yellow-400: #ffee58;\n  --md-yellow-500: #ffeb3b;\n  --md-yellow-600: #fdd835;\n  --md-yellow-700: #fbc02d;\n  --md-yellow-800: #f9a825;\n  --md-yellow-900: #f57f17;\n  --md-yellow-A100: #ffff8d;\n  --md-yellow-A200: #ffff00;\n  --md-yellow-A400: #ffea00;\n  --md-yellow-A700: #ffd600;\n\n  --md-amber-50: #fff8e1;\n  --md-amber-100: #ffecb3;\n  --md-amber-200: #ffe082;\n  --md-amber-300: #ffd54f;\n  --md-amber-400: #ffca28;\n  --md-amber-500: #ffc107;\n  --md-amber-600: #ffb300;\n  --md-amber-700: #ffa000;\n  --md-amber-800: #ff8f00;\n  --md-amber-900: #ff6f00;\n  --md-amber-A100: #ffe57f;\n  --md-amber-A200: #ffd740;\n  --md-amber-A400: #ffc400;\n  --md-amber-A700: #ffab00;\n\n  --md-orange-50: #fff3e0;\n  --md-orange-100: #ffe0b2;\n  --md-orange-200: #ffcc80;\n  --md-orange-300: #ffb74d;\n  --md-orange-400: #ffa726;\n  --md-orange-500: #ff9800;\n  --md-orange-600: #fb8c00;\n  --md-orange-700: #f57c00;\n  --md-orange-800: #ef6c00;\n  --md-orange-900: #e65100;\n  --md-orange-A100: #ffd180;\n  --md-orange-A200: #ffab40;\n  --md-orange-A400: #ff9100;\n  --md-orange-A700: #ff6d00;\n\n  --md-deep-orange-50: #fbe9e7;\n  --md-deep-orange-100: #ffccbc;\n  --md-deep-orange-200: #ffab91;\n  --md-deep-orange-300: #ff8a65;\n  --md-deep-orange-400: #ff7043;\n  --md-deep-orange-500: #ff5722;\n  --md-deep-orange-600: #f4511e;\n  --md-deep-orange-700: #e64a19;\n  --md-deep-orange-800: #d84315;\n  --md-deep-orange-900: #bf360c;\n  --md-deep-orange-A100: #ff9e80;\n  --md-deep-orange-A200: #ff6e40;\n  --md-deep-orange-A400: #ff3d00;\n  --md-deep-orange-A700: #dd2c00;\n\n  --md-brown-50: #efebe9;\n  --md-brown-100: #d7ccc8;\n  --md-brown-200: #bcaaa4;\n  --md-brown-300: #a1887f;\n  --md-brown-400: #8d6e63;\n  --md-brown-500: #795548;\n  --md-brown-600: #6d4c41;\n  --md-brown-700: #5d4037;\n  --md-brown-800: #4e342e;\n  --md-brown-900: #3e2723;\n\n  --md-grey-50: #fafafa;\n  --md-grey-100: #f5f5f5;\n  --md-grey-200: #eeeeee;\n  --md-grey-300: #e0e0e0;\n  --md-grey-400: #bdbdbd;\n  --md-grey-500: #9e9e9e;\n  --md-grey-600: #757575;\n  --md-grey-700: #616161;\n  --md-grey-800: #424242;\n  --md-grey-900: #212121;\n\n  --md-blue-grey-50: #eceff1;\n  --md-blue-grey-100: #cfd8dc;\n  --md-blue-grey-200: #b0bec5;\n  --md-blue-grey-300: #90a4ae;\n  --md-blue-grey-400: #78909c;\n  --md-blue-grey-500: #607d8b;\n  --md-blue-grey-600: #546e7a;\n  --md-blue-grey-700: #455a64;\n  --md-blue-grey-800: #37474f;\n  --md-blue-grey-900: #263238;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Spinner {\n  position: absolute;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  z-index: 10;\n  left: 0;\n  top: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-layout-color0);\n  outline: none;\n}\n\n.jp-SpinnerContent {\n  font-size: 10px;\n  margin: 50px auto;\n  text-indent: -9999em;\n  width: 3em;\n  height: 3em;\n  border-radius: 50%;\n  background: var(--jp-brand-color3);\n  background: linear-gradient(\n    to right,\n    #f37626 10%,\n    rgba(255, 255, 255, 0) 42%\n  );\n  position: relative;\n  animation: load3 1s infinite linear, fadeIn 1s;\n}\n\n.jp-SpinnerContent:before {\n  width: 50%;\n  height: 50%;\n  background: #f37626;\n  border-radius: 100% 0 0 0;\n  position: absolute;\n  top: 0;\n  left: 0;\n  content: '';\n}\n\n.jp-SpinnerContent:after {\n  background: var(--jp-layout-color0);\n  width: 75%;\n  height: 75%;\n  border-radius: 50%;\n  content: '';\n  margin: auto;\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n}\n\n@keyframes fadeIn {\n  0% {\n    opacity: 0;\n  }\n  100% {\n    opacity: 1;\n  }\n}\n\n@keyframes load3 {\n  0% {\n    transform: rotate(0deg);\n  }\n  100% {\n    transform: rotate(360deg);\n  }\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\nbutton.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: none;\n  box-sizing: border-box;\n  text-align: center;\n  line-height: 32px;\n  height: 32px;\n  padding: 0px 12px;\n  letter-spacing: 0.8px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput.jp-mod-styled {\n  background: var(--jp-input-background);\n  height: 28px;\n  box-sizing: border-box;\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n  padding-left: 7px;\n  padding-right: 7px;\n  font-size: var(--jp-ui-font-size2);\n  color: var(--jp-ui-font-color0);\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput[type='checkbox'].jp-mod-styled {\n  appearance: checkbox;\n  -webkit-appearance: checkbox;\n  -moz-appearance: checkbox;\n  height: auto;\n}\n\ninput.jp-mod-styled:focus {\n  border: var(--jp-border-width) solid var(--md-blue-500);\n  box-shadow: inset 0 0 4px var(--md-blue-300);\n}\n\n.jp-FileDialog-Checkbox {\n  margin-top: 35px;\n  display: flex;\n  flex-direction: row;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-FileDialog-Checkbox > label {\n  flex: 1 1 auto;\n}\n\n.jp-select-wrapper {\n  display: flex;\n  position: relative;\n  flex-direction: column;\n  padding: 1px;\n  background-color: var(--jp-layout-color1);\n  height: 28px;\n  box-sizing: border-box;\n  margin-bottom: 12px;\n}\n\n.jp-select-wrapper.jp-mod-focused select.jp-mod-styled {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-input-active-background);\n}\n\nselect.jp-mod-styled:hover {\n  background-color: var(--jp-layout-color1);\n  cursor: pointer;\n  color: var(--jp-ui-font-color0);\n  background-color: var(--jp-input-hover-background);\n  box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.5);\n}\n\nselect.jp-mod-styled {\n  flex: 1 1 auto;\n  height: 32px;\n  width: 100%;\n  font-size: var(--jp-ui-font-size2);\n  background: var(--jp-input-background);\n  color: var(--jp-ui-font-color0);\n  padding: 0 25px 0 8px;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-toolbar-height: calc(\n    28px + var(--jp-border-width)\n  ); /* leave 28px for content */\n}\n\n.jp-Toolbar {\n  color: var(--jp-ui-font-color1);\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  border-bottom: var(--jp-border-width) solid var(--jp-toolbar-border-color);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  background: var(--jp-toolbar-background);\n  min-height: var(--jp-toolbar-micro-height);\n  padding: 2px;\n  z-index: 1;\n  overflow-x: auto;\n}\n\n/* Toolbar items */\n\n.jp-Toolbar > .jp-Toolbar-item.jp-Toolbar-spacer {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\n.jp-Toolbar-item.jp-Toolbar-kernelStatus {\n  display: inline-block;\n  width: 32px;\n  background-repeat: no-repeat;\n  background-position: center;\n  background-size: 16px;\n}\n\n.jp-Toolbar > .jp-Toolbar-item {\n  flex: 0 0 auto;\n  display: flex;\n  padding-left: 1px;\n  padding-right: 1px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: var(--jp-private-toolbar-height);\n  height: 100%;\n}\n\n/* Toolbar buttons */\n\n/* This is the div we use to wrap the react component into a Widget */\ndiv.jp-ToolbarButton {\n  color: transparent;\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px;\n  margin: 0px;\n}\n\nbutton.jp-ToolbarButtonComponent {\n  background: var(--jp-layout-color1);\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px 6px;\n  margin: 0px;\n  height: 24px;\n  border-radius: var(--jp-border-radius);\n  display: flex;\n  align-items: center;\n  text-align: center;\n  font-size: 14px;\n  min-width: unset;\n  min-height: unset;\n}\n\nbutton.jp-ToolbarButtonComponent:disabled {\n  opacity: 0.4;\n}\n\nbutton.jp-ToolbarButtonComponent span {\n  padding: 0px;\n  flex: 0 0 auto;\n}\n\nbutton.jp-ToolbarButtonComponent .jp-ToolbarButtonComponent-label {\n  font-size: var(--jp-ui-font-size1);\n  line-height: 100%;\n  padding-left: 2px;\n  color: var(--jp-ui-font-color1);\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar.jp-Toolbar-micro {\n  padding: 0;\n  min-height: 0;\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar {\n  border: none;\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ body.p-mod-override-cursor *, /* </DEPRECATED> */\nbody.lm-mod-override-cursor * {\n  cursor: inherit !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-JSONEditor {\n  display: flex;\n  flex-direction: column;\n  width: 100%;\n}\n\n.jp-JSONEditor-host {\n  flex: 1 1 auto;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  background: var(--jp-layout-color0);\n  min-height: 50px;\n  padding: 1px;\n}\n\n.jp-JSONEditor.jp-mod-error .jp-JSONEditor-host {\n  border-color: red;\n  outline-color: red;\n}\n\n.jp-JSONEditor-header {\n  display: flex;\n  flex: 1 0 auto;\n  padding: 0 0 0 12px;\n}\n\n.jp-JSONEditor-header label {\n  flex: 0 0 auto;\n}\n\n.jp-JSONEditor-commitButton {\n  height: 16px;\n  width: 16px;\n  background-size: 18px;\n  background-repeat: no-repeat;\n  background-position: center;\n}\n\n.jp-JSONEditor-host.jp-mod-focused {\n  background-color: var(--jp-input-active-background);\n  border: 1px solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n.jp-Editor.jp-mod-dropTarget {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n/* BASICS */\n\n.CodeMirror {\n  /* Set height, width, borders, and global font properties here */\n  font-family: monospace;\n  height: 300px;\n  color: black;\n  direction: ltr;\n}\n\n/* PADDING */\n\n.CodeMirror-lines {\n  padding: 4px 0; /* Vertical padding around content */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  padding: 0 4px; /* Horizontal padding of content */\n}\n\n.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  background-color: white; /* The little square between H and V scrollbars */\n}\n\n/* GUTTER */\n\n.CodeMirror-gutters {\n  border-right: 1px solid #ddd;\n  background-color: #f7f7f7;\n  white-space: nowrap;\n}\n.CodeMirror-linenumbers {}\n.CodeMirror-linenumber {\n  padding: 0 3px 0 5px;\n  min-width: 20px;\n  text-align: right;\n  color: #999;\n  white-space: nowrap;\n}\n\n.CodeMirror-guttermarker { color: black; }\n.CodeMirror-guttermarker-subtle { color: #999; }\n\n/* CURSOR */\n\n.CodeMirror-cursor {\n  border-left: 1px solid black;\n  border-right: none;\n  width: 0;\n}\n/* Shown when moving in bi-directional text */\n.CodeMirror div.CodeMirror-secondarycursor {\n  border-left: 1px solid silver;\n}\n.cm-fat-cursor .CodeMirror-cursor {\n  width: auto;\n  border: 0 !important;\n  background: #7e7;\n}\n.cm-fat-cursor div.CodeMirror-cursors {\n  z-index: 1;\n}\n.cm-fat-cursor-mark {\n  background-color: rgba(20, 255, 20, 0.5);\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n}\n.cm-animate-fat-cursor {\n  width: auto;\n  border: 0;\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n  background-color: #7e7;\n}\n@-moz-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@-webkit-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n\n/* Can style cursor different in overwrite (non-insert) mode */\n.CodeMirror-overwrite .CodeMirror-cursor {}\n\n.cm-tab { display: inline-block; text-decoration: inherit; }\n\n.CodeMirror-rulers {\n  position: absolute;\n  left: 0; right: 0; top: -50px; bottom: 0;\n  overflow: hidden;\n}\n.CodeMirror-ruler {\n  border-left: 1px solid #ccc;\n  top: 0; bottom: 0;\n  position: absolute;\n}\n\n/* DEFAULT THEME */\n\n.cm-s-default .cm-header {color: blue;}\n.cm-s-default .cm-quote {color: #090;}\n.cm-negative {color: #d44;}\n.cm-positive {color: #292;}\n.cm-header, .cm-strong {font-weight: bold;}\n.cm-em {font-style: italic;}\n.cm-link {text-decoration: underline;}\n.cm-strikethrough {text-decoration: line-through;}\n\n.cm-s-default .cm-keyword {color: #708;}\n.cm-s-default .cm-atom {color: #219;}\n.cm-s-default .cm-number {color: #164;}\n.cm-s-default .cm-def {color: #00f;}\n.cm-s-default .cm-variable,\n.cm-s-default .cm-punctuation,\n.cm-s-default .cm-property,\n.cm-s-default .cm-operator {}\n.cm-s-default .cm-variable-2 {color: #05a;}\n.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}\n.cm-s-default .cm-comment {color: #a50;}\n.cm-s-default .cm-string {color: #a11;}\n.cm-s-default .cm-string-2 {color: #f50;}\n.cm-s-default .cm-meta {color: #555;}\n.cm-s-default .cm-qualifier {color: #555;}\n.cm-s-default .cm-builtin {color: #30a;}\n.cm-s-default .cm-bracket {color: #997;}\n.cm-s-default .cm-tag {color: #170;}\n.cm-s-default .cm-attribute {color: #00c;}\n.cm-s-default .cm-hr {color: #999;}\n.cm-s-default .cm-link {color: #00c;}\n\n.cm-s-default .cm-error {color: #f00;}\n.cm-invalidchar {color: #f00;}\n\n.CodeMirror-composing { border-bottom: 2px solid; }\n\n/* Default styles for common addons */\n\ndiv.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}\ndiv.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}\n.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }\n.CodeMirror-activeline-background {background: #e8f2ff;}\n\n/* STOP */\n\n/* The rest of this file contains styles related to the mechanics of\n   the editor. You probably shouldn't touch them. */\n\n.CodeMirror {\n  position: relative;\n  overflow: hidden;\n  background: white;\n}\n\n.CodeMirror-scroll {\n  overflow: scroll !important; /* Things will break if this is overridden */\n  /* 50px is the magic margin used to hide the element's real scrollbars */\n  /* See overflow: hidden in .CodeMirror */\n  margin-bottom: -50px; margin-right: -50px;\n  padding-bottom: 50px;\n  height: 100%;\n  outline: none; /* Prevent dragging from highlighting the element */\n  position: relative;\n}\n.CodeMirror-sizer {\n  position: relative;\n  border-right: 50px solid transparent;\n}\n\n/* The fake, visible scrollbars. Used to force redraw during scrolling\n   before actual scrolling happens, thus preventing shaking and\n   flickering artifacts. */\n.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  position: absolute;\n  z-index: 6;\n  display: none;\n  outline: none;\n}\n.CodeMirror-vscrollbar {\n  right: 0; top: 0;\n  overflow-x: hidden;\n  overflow-y: scroll;\n}\n.CodeMirror-hscrollbar {\n  bottom: 0; left: 0;\n  overflow-y: hidden;\n  overflow-x: scroll;\n}\n.CodeMirror-scrollbar-filler {\n  right: 0; bottom: 0;\n}\n.CodeMirror-gutter-filler {\n  left: 0; bottom: 0;\n}\n\n.CodeMirror-gutters {\n  position: absolute; left: 0; top: 0;\n  min-height: 100%;\n  z-index: 3;\n}\n.CodeMirror-gutter {\n  white-space: normal;\n  height: 100%;\n  display: inline-block;\n  vertical-align: top;\n  margin-bottom: -50px;\n}\n.CodeMirror-gutter-wrapper {\n  position: absolute;\n  z-index: 4;\n  background: none !important;\n  border: none !important;\n}\n.CodeMirror-gutter-background {\n  position: absolute;\n  top: 0; bottom: 0;\n  z-index: 4;\n}\n.CodeMirror-gutter-elt {\n  position: absolute;\n  cursor: default;\n  z-index: 4;\n}\n.CodeMirror-gutter-wrapper ::selection { background-color: transparent }\n.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }\n\n.CodeMirror-lines {\n  cursor: text;\n  min-height: 1px; /* prevents collapsing before first draw */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  /* Reset some styles that the rest of the page might have set */\n  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;\n  border-width: 0;\n  background: transparent;\n  font-family: inherit;\n  font-size: inherit;\n  margin: 0;\n  white-space: pre;\n  word-wrap: normal;\n  line-height: inherit;\n  color: inherit;\n  z-index: 2;\n  position: relative;\n  overflow: visible;\n  -webkit-tap-highlight-color: transparent;\n  -webkit-font-variant-ligatures: contextual;\n  font-variant-ligatures: contextual;\n}\n.CodeMirror-wrap pre.CodeMirror-line,\n.CodeMirror-wrap pre.CodeMirror-line-like {\n  word-wrap: break-word;\n  white-space: pre-wrap;\n  word-break: normal;\n}\n\n.CodeMirror-linebackground {\n  position: absolute;\n  left: 0; right: 0; top: 0; bottom: 0;\n  z-index: 0;\n}\n\n.CodeMirror-linewidget {\n  position: relative;\n  z-index: 2;\n  padding: 0.1px; /* Force widget margins to stay inside of the container */\n}\n\n.CodeMirror-widget {}\n\n.CodeMirror-rtl pre { direction: rtl; }\n\n.CodeMirror-code {\n  outline: none;\n}\n\n/* Force content-box sizing for the elements where we expect it */\n.CodeMirror-scroll,\n.CodeMirror-sizer,\n.CodeMirror-gutter,\n.CodeMirror-gutters,\n.CodeMirror-linenumber {\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n}\n\n.CodeMirror-measure {\n  position: absolute;\n  width: 100%;\n  height: 0;\n  overflow: hidden;\n  visibility: hidden;\n}\n\n.CodeMirror-cursor {\n  position: absolute;\n  pointer-events: none;\n}\n.CodeMirror-measure pre { position: static; }\n\ndiv.CodeMirror-cursors {\n  visibility: hidden;\n  position: relative;\n  z-index: 3;\n}\ndiv.CodeMirror-dragcursors {\n  visibility: visible;\n}\n\n.CodeMirror-focused div.CodeMirror-cursors {\n  visibility: visible;\n}\n\n.CodeMirror-selected { background: #d9d9d9; }\n.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }\n.CodeMirror-crosshair { cursor: crosshair; }\n.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }\n.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }\n\n.cm-searching {\n  background-color: #ffa;\n  background-color: rgba(255, 255, 0, .4);\n}\n\n/* Used to force a border model for a node */\n.cm-force-border { padding-right: .1px; }\n\n@media print {\n  /* Hide the cursor when printing */\n  .CodeMirror div.CodeMirror-cursors {\n    visibility: hidden;\n  }\n}\n\n/* See issue #2901 */\n.cm-tab-wrap-hack:after { content: ''; }\n\n/* Help users use markselection to safely style text background */\nspan.CodeMirror-selectedtext { background: none; }\n\n.CodeMirror-dialog {\n  position: absolute;\n  left: 0; right: 0;\n  background: inherit;\n  z-index: 15;\n  padding: .1em .8em;\n  overflow: hidden;\n  color: inherit;\n}\n\n.CodeMirror-dialog-top {\n  border-bottom: 1px solid #eee;\n  top: 0;\n}\n\n.CodeMirror-dialog-bottom {\n  border-top: 1px solid #eee;\n  bottom: 0;\n}\n\n.CodeMirror-dialog input {\n  border: none;\n  outline: none;\n  background: transparent;\n  width: 20em;\n  color: inherit;\n  font-family: monospace;\n}\n\n.CodeMirror-dialog button {\n  font-size: 70%;\n}\n\n.CodeMirror-foldmarker {\n  color: blue;\n  text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;\n  font-family: arial;\n  line-height: .3;\n  cursor: pointer;\n}\n.CodeMirror-foldgutter {\n  width: .7em;\n}\n.CodeMirror-foldgutter-open,\n.CodeMirror-foldgutter-folded {\n  cursor: pointer;\n}\n.CodeMirror-foldgutter-open:after {\n  content: \"\\25BE\";\n}\n.CodeMirror-foldgutter-folded:after {\n  content: \"\\25B8\";\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.CodeMirror {\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  border: 0;\n  border-radius: 0;\n  height: auto;\n  /* Changed to auto to autogrow */\n}\n\n.CodeMirror pre {\n  padding: 0 var(--jp-code-padding);\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-dialog {\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* This causes https://github.com/jupyter/jupyterlab/issues/522 */\n/* May not cause it not because we changed it! */\n.CodeMirror-lines {\n  padding: var(--jp-code-padding) 0;\n}\n\n.CodeMirror-linenumber {\n  padding: 0 8px;\n}\n\n.jp-CodeMirrorEditor {\n  cursor: text;\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n\n/* When zoomed out 67% and 33% on a screen of 1440 width x 900 height */\n@media screen and (min-width: 2138px) and (max-width: 4319px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width1) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n/* When zoomed out less than 33% */\n@media screen and (min-width: 4320px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width2) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n.CodeMirror.jp-mod-readOnly .CodeMirror-cursor {\n  display: none;\n}\n\n.CodeMirror-gutters {\n  border-right: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-layout-color0);\n}\n\n.jp-CollaboratorCursor {\n  border-left: 5px solid transparent;\n  border-right: 5px solid transparent;\n  border-top: none;\n  border-bottom: 3px solid;\n  background-clip: content-box;\n  margin-left: -5px;\n  margin-right: -5px;\n}\n\n.CodeMirror-selectedtext.cm-searching {\n  background-color: var(--jp-search-selected-match-background-color) !important;\n  color: var(--jp-search-selected-match-color) !important;\n}\n\n.cm-searching {\n  background-color: var(\n    --jp-search-unselected-match-background-color\n  ) !important;\n  color: var(--jp-search-unselected-match-color) !important;\n}\n\n.CodeMirror-focused .CodeMirror-selected {\n  background-color: var(--jp-editor-selected-focused-background);\n}\n\n.CodeMirror-selected {\n  background-color: var(--jp-editor-selected-background);\n}\n\n.jp-CollaboratorCursor-hover {\n  position: absolute;\n  z-index: 1;\n  transform: translateX(-50%);\n  color: white;\n  border-radius: 3px;\n  padding-left: 4px;\n  padding-right: 4px;\n  padding-top: 1px;\n  padding-bottom: 1px;\n  text-align: center;\n  font-size: var(--jp-ui-font-size1);\n  white-space: nowrap;\n}\n\n.jp-CodeMirror-ruler {\n  border-left: 1px dashed var(--jp-border-color2);\n}\n\n/**\n * Here is our jupyter theme for CodeMirror syntax highlighting\n * This is used in our marked.js syntax highlighting and CodeMirror itself\n * The string \"jupyter\" is set in ../codemirror/widget.DEFAULT_CODEMIRROR_THEME\n * This came from the classic notebook, which came form highlight.js/GitHub\n */\n\n/**\n * CodeMirror themes are handling the background/color in this way. This works\n * fine for CodeMirror editors outside the notebook, but the notebook styles\n * these things differently.\n */\n.CodeMirror.cm-s-jupyter {\n  background: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* In the notebook, we want this styling to be handled by its container */\n.jp-CodeConsole .CodeMirror.cm-s-jupyter,\n.jp-Notebook .CodeMirror.cm-s-jupyter {\n  background: transparent;\n}\n\n.cm-s-jupyter .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n.cm-s-jupyter span.cm-keyword {\n  color: var(--jp-mirror-editor-keyword-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-atom {\n  color: var(--jp-mirror-editor-atom-color);\n}\n.cm-s-jupyter span.cm-number {\n  color: var(--jp-mirror-editor-number-color);\n}\n.cm-s-jupyter span.cm-def {\n  color: var(--jp-mirror-editor-def-color);\n}\n.cm-s-jupyter span.cm-variable {\n  color: var(--jp-mirror-editor-variable-color);\n}\n.cm-s-jupyter span.cm-variable-2 {\n  color: var(--jp-mirror-editor-variable-2-color);\n}\n.cm-s-jupyter span.cm-variable-3 {\n  color: var(--jp-mirror-editor-variable-3-color);\n}\n.cm-s-jupyter span.cm-punctuation {\n  color: var(--jp-mirror-editor-punctuation-color);\n}\n.cm-s-jupyter span.cm-property {\n  color: var(--jp-mirror-editor-property-color);\n}\n.cm-s-jupyter span.cm-operator {\n  color: var(--jp-mirror-editor-operator-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-comment {\n  color: var(--jp-mirror-editor-comment-color);\n  font-style: italic;\n}\n.cm-s-jupyter span.cm-string {\n  color: var(--jp-mirror-editor-string-color);\n}\n.cm-s-jupyter span.cm-string-2 {\n  color: var(--jp-mirror-editor-string-2-color);\n}\n.cm-s-jupyter span.cm-meta {\n  color: var(--jp-mirror-editor-meta-color);\n}\n.cm-s-jupyter span.cm-qualifier {\n  color: var(--jp-mirror-editor-qualifier-color);\n}\n.cm-s-jupyter span.cm-builtin {\n  color: var(--jp-mirror-editor-builtin-color);\n}\n.cm-s-jupyter span.cm-bracket {\n  color: var(--jp-mirror-editor-bracket-color);\n}\n.cm-s-jupyter span.cm-tag {\n  color: var(--jp-mirror-editor-tag-color);\n}\n.cm-s-jupyter span.cm-attribute {\n  color: var(--jp-mirror-editor-attribute-color);\n}\n.cm-s-jupyter span.cm-header {\n  color: var(--jp-mirror-editor-header-color);\n}\n.cm-s-jupyter span.cm-quote {\n  color: var(--jp-mirror-editor-quote-color);\n}\n.cm-s-jupyter span.cm-link {\n  color: var(--jp-mirror-editor-link-color);\n}\n.cm-s-jupyter span.cm-error {\n  color: var(--jp-mirror-editor-error-color);\n}\n.cm-s-jupyter span.cm-hr {\n  color: #999;\n}\n\n.cm-s-jupyter span.cm-tab {\n  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);\n  background-position: right;\n  background-repeat: no-repeat;\n}\n\n.cm-s-jupyter .CodeMirror-activeline-background,\n.cm-s-jupyter .CodeMirror-gutter {\n  background-color: var(--jp-layout-color2);\n}\n\n/* Styles for shared cursors (remote cursor locations and selected ranges) */\n.jp-CodeMirrorEditor .remote-caret {\n  position: relative;\n  border-left: 2px solid black;\n  margin-left: -1px;\n  margin-right: -1px;\n  box-sizing: border-box;\n}\n\n.jp-CodeMirrorEditor .remote-caret > div {\n  white-space: nowrap;\n  position: absolute;\n  top: -1.15em;\n  padding-bottom: 0.05em;\n  left: -2px;\n  font-size: 0.95em;\n  background-color: rgb(250, 129, 0);\n  font-family: var(--jp-ui-font-family);\n  font-weight: bold;\n  line-height: normal;\n  user-select: none;\n  color: white;\n  padding-left: 2px;\n  padding-right: 2px;\n  z-index: 3;\n  transition: opacity 0.3s ease-in-out;\n}\n\n.jp-CodeMirrorEditor .remote-caret.hide-name > div {\n  transition-delay: 0.7s;\n  opacity: 0;\n}\n\n.jp-CodeMirrorEditor .remote-caret:hover > div {\n  opacity: 1;\n  transition-delay: 0s;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| RenderedText\n|----------------------------------------------------------------------------*/\n\n:root {\n  /* This is the padding value to fill the gaps between lines containing spans with background color. */\n  --jp-private-code-span-padding: calc(\n    (var(--jp-code-line-height) - 1) * var(--jp-code-font-size) / 2\n  );\n}\n\n.jp-RenderedText {\n  text-align: left;\n  padding-left: var(--jp-code-padding);\n  line-height: var(--jp-code-line-height);\n  font-family: var(--jp-code-font-family);\n}\n\n.jp-RenderedText pre,\n.jp-RenderedJavaScript pre,\n.jp-RenderedHTMLCommon pre {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-code-font-size);\n  border: none;\n  margin: 0px;\n  padding: 0px;\n}\n\n.jp-RenderedText pre a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* console foregrounds and backgrounds */\n.jp-RenderedText pre .ansi-black-fg {\n  color: #3e424d;\n}\n.jp-RenderedText pre .ansi-red-fg {\n  color: #e75c58;\n}\n.jp-RenderedText pre .ansi-green-fg {\n  color: #00a250;\n}\n.jp-RenderedText pre .ansi-yellow-fg {\n  color: #ddb62b;\n}\n.jp-RenderedText pre .ansi-blue-fg {\n  color: #208ffb;\n}\n.jp-RenderedText pre .ansi-magenta-fg {\n  color: #d160c4;\n}\n.jp-RenderedText pre .ansi-cyan-fg {\n  color: #60c6c8;\n}\n.jp-RenderedText pre .ansi-white-fg {\n  color: #c5c1b4;\n}\n\n.jp-RenderedText pre .ansi-black-bg {\n  background-color: #3e424d;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-bg {\n  background-color: #e75c58;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-bg {\n  background-color: #00a250;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-bg {\n  background-color: #ddb62b;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-bg {\n  background-color: #208ffb;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-bg {\n  background-color: #d160c4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-bg {\n  background-color: #60c6c8;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-bg {\n  background-color: #c5c1b4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-black-intense-fg {\n  color: #282c36;\n}\n.jp-RenderedText pre .ansi-red-intense-fg {\n  color: #b22b31;\n}\n.jp-RenderedText pre .ansi-green-intense-fg {\n  color: #007427;\n}\n.jp-RenderedText pre .ansi-yellow-intense-fg {\n  color: #b27d12;\n}\n.jp-RenderedText pre .ansi-blue-intense-fg {\n  color: #0065ca;\n}\n.jp-RenderedText pre .ansi-magenta-intense-fg {\n  color: #a03196;\n}\n.jp-RenderedText pre .ansi-cyan-intense-fg {\n  color: #258f8f;\n}\n.jp-RenderedText pre .ansi-white-intense-fg {\n  color: #a1a6b2;\n}\n\n.jp-RenderedText pre .ansi-black-intense-bg {\n  background-color: #282c36;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-intense-bg {\n  background-color: #b22b31;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-intense-bg {\n  background-color: #007427;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-intense-bg {\n  background-color: #b27d12;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-intense-bg {\n  background-color: #0065ca;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-intense-bg {\n  background-color: #a03196;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-intense-bg {\n  background-color: #258f8f;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-intense-bg {\n  background-color: #a1a6b2;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-default-inverse-fg {\n  color: var(--jp-ui-inverse-font-color0);\n}\n.jp-RenderedText pre .ansi-default-inverse-bg {\n  background-color: var(--jp-inverse-layout-color0);\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-bold {\n  font-weight: bold;\n}\n.jp-RenderedText pre .ansi-underline {\n  text-decoration: underline;\n}\n\n.jp-RenderedText[data-mime-type='application/vnd.jupyter.stderr'] {\n  background: var(--jp-rendermime-error-background);\n  padding-top: var(--jp-code-padding);\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedLatex\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedLatex {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n}\n\n/* Left-justify outputs.*/\n.jp-OutputArea-output.jp-RenderedLatex {\n  padding: var(--jp-code-padding);\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedHTML\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedHTMLCommon {\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-content-font-family);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n  /* Give a bit more R padding on Markdown text to keep line lengths reasonable */\n  padding-right: 20px;\n}\n\n.jp-RenderedHTMLCommon em {\n  font-style: italic;\n}\n\n.jp-RenderedHTMLCommon strong {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon u {\n  text-decoration: underline;\n}\n\n.jp-RenderedHTMLCommon a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* Headings */\n\n.jp-RenderedHTMLCommon h1,\n.jp-RenderedHTMLCommon h2,\n.jp-RenderedHTMLCommon h3,\n.jp-RenderedHTMLCommon h4,\n.jp-RenderedHTMLCommon h5,\n.jp-RenderedHTMLCommon h6 {\n  line-height: var(--jp-content-heading-line-height);\n  font-weight: var(--jp-content-heading-font-weight);\n  font-style: normal;\n  margin: var(--jp-content-heading-margin-top) 0\n    var(--jp-content-heading-margin-bottom) 0;\n}\n\n.jp-RenderedHTMLCommon h1:first-child,\n.jp-RenderedHTMLCommon h2:first-child,\n.jp-RenderedHTMLCommon h3:first-child,\n.jp-RenderedHTMLCommon h4:first-child,\n.jp-RenderedHTMLCommon h5:first-child,\n.jp-RenderedHTMLCommon h6:first-child {\n  margin-top: calc(0.5 * var(--jp-content-heading-margin-top));\n}\n\n.jp-RenderedHTMLCommon h1:last-child,\n.jp-RenderedHTMLCommon h2:last-child,\n.jp-RenderedHTMLCommon h3:last-child,\n.jp-RenderedHTMLCommon h4:last-child,\n.jp-RenderedHTMLCommon h5:last-child,\n.jp-RenderedHTMLCommon h6:last-child {\n  margin-bottom: calc(0.5 * var(--jp-content-heading-margin-bottom));\n}\n\n.jp-RenderedHTMLCommon h1 {\n  font-size: var(--jp-content-font-size5);\n}\n\n.jp-RenderedHTMLCommon h2 {\n  font-size: var(--jp-content-font-size4);\n}\n\n.jp-RenderedHTMLCommon h3 {\n  font-size: var(--jp-content-font-size3);\n}\n\n.jp-RenderedHTMLCommon h4 {\n  font-size: var(--jp-content-font-size2);\n}\n\n.jp-RenderedHTMLCommon h5 {\n  font-size: var(--jp-content-font-size1);\n}\n\n.jp-RenderedHTMLCommon h6 {\n  font-size: var(--jp-content-font-size0);\n}\n\n/* Lists */\n\n.jp-RenderedHTMLCommon ul:not(.list-inline),\n.jp-RenderedHTMLCommon ol:not(.list-inline) {\n  padding-left: 2em;\n}\n\n.jp-RenderedHTMLCommon ul {\n  list-style: disc;\n}\n\n.jp-RenderedHTMLCommon ul ul {\n  list-style: square;\n}\n\n.jp-RenderedHTMLCommon ul ul ul {\n  list-style: circle;\n}\n\n.jp-RenderedHTMLCommon ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol ol {\n  list-style: upper-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol {\n  list-style: lower-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol {\n  list-style: lower-roman;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol,\n.jp-RenderedHTMLCommon ul {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon ul ul,\n.jp-RenderedHTMLCommon ul ol,\n.jp-RenderedHTMLCommon ol ul,\n.jp-RenderedHTMLCommon ol ol {\n  margin-bottom: 0em;\n}\n\n.jp-RenderedHTMLCommon hr {\n  color: var(--jp-border-color2);\n  background-color: var(--jp-border-color1);\n  margin-top: 1em;\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon > pre {\n  margin: 1.5em 2em;\n}\n\n.jp-RenderedHTMLCommon pre,\n.jp-RenderedHTMLCommon code {\n  border: 0;\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  line-height: var(--jp-code-line-height);\n  padding: 0;\n  white-space: pre-wrap;\n}\n\n.jp-RenderedHTMLCommon :not(pre) > code {\n  background-color: var(--jp-layout-color2);\n  padding: 1px 5px;\n}\n\n/* Tables */\n\n.jp-RenderedHTMLCommon table {\n  border-collapse: collapse;\n  border-spacing: 0;\n  border: none;\n  color: var(--jp-ui-font-color1);\n  font-size: 12px;\n  table-layout: fixed;\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.jp-RenderedHTMLCommon thead {\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  vertical-align: bottom;\n}\n\n.jp-RenderedHTMLCommon td,\n.jp-RenderedHTMLCommon th,\n.jp-RenderedHTMLCommon tr {\n  vertical-align: middle;\n  padding: 0.5em 0.5em;\n  line-height: normal;\n  white-space: normal;\n  max-width: none;\n  border: none;\n}\n\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon td,\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon th {\n  max-width: none;\n}\n\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon td,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon th,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon tr {\n  text-align: right;\n}\n\n.jp-RenderedHTMLCommon th {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(odd) {\n  background: var(--jp-layout-color0);\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(even) {\n  background: var(--jp-rendermime-table-row-background);\n}\n\n.jp-RenderedHTMLCommon tbody tr:hover {\n  background: var(--jp-rendermime-table-row-hover-background);\n}\n\n.jp-RenderedHTMLCommon table {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon p {\n  text-align: left;\n  margin: 0px;\n}\n\n.jp-RenderedHTMLCommon p {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon img {\n  -moz-force-broken-image-icon: 1;\n}\n\n/* Restrict to direct children as other images could be nested in other content. */\n.jp-RenderedHTMLCommon > img {\n  display: block;\n  margin-left: 0;\n  margin-right: 0;\n  margin-bottom: 1em;\n}\n\n/* Change color behind transparent images if they need it... */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-light-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-dark-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n/* ...or leave it untouched if they don't */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-dark-background {\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-light-background {\n}\n\n.jp-RenderedHTMLCommon img,\n.jp-RenderedImage img,\n.jp-RenderedHTMLCommon svg,\n.jp-RenderedSVG svg {\n  max-width: 100%;\n  height: auto;\n}\n\n.jp-RenderedHTMLCommon img.jp-mod-unconfined,\n.jp-RenderedImage img.jp-mod-unconfined,\n.jp-RenderedHTMLCommon svg.jp-mod-unconfined,\n.jp-RenderedSVG svg.jp-mod-unconfined {\n  max-width: none;\n}\n\n.jp-RenderedHTMLCommon .alert {\n  padding: var(--jp-notebook-padding);\n  border: var(--jp-border-width) solid transparent;\n  border-radius: var(--jp-border-radius);\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon .alert-info {\n  color: var(--jp-info-color0);\n  background-color: var(--jp-info-color3);\n  border-color: var(--jp-info-color2);\n}\n.jp-RenderedHTMLCommon .alert-info hr {\n  border-color: var(--jp-info-color3);\n}\n.jp-RenderedHTMLCommon .alert-info > p:last-child,\n.jp-RenderedHTMLCommon .alert-info > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-warning {\n  color: var(--jp-warn-color0);\n  background-color: var(--jp-warn-color3);\n  border-color: var(--jp-warn-color2);\n}\n.jp-RenderedHTMLCommon .alert-warning hr {\n  border-color: var(--jp-warn-color3);\n}\n.jp-RenderedHTMLCommon .alert-warning > p:last-child,\n.jp-RenderedHTMLCommon .alert-warning > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-success {\n  color: var(--jp-success-color0);\n  background-color: var(--jp-success-color3);\n  border-color: var(--jp-success-color2);\n}\n.jp-RenderedHTMLCommon .alert-success hr {\n  border-color: var(--jp-success-color3);\n}\n.jp-RenderedHTMLCommon .alert-success > p:last-child,\n.jp-RenderedHTMLCommon .alert-success > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-danger {\n  color: var(--jp-error-color0);\n  background-color: var(--jp-error-color3);\n  border-color: var(--jp-error-color2);\n}\n.jp-RenderedHTMLCommon .alert-danger hr {\n  border-color: var(--jp-error-color3);\n}\n.jp-RenderedHTMLCommon .alert-danger > p:last-child,\n.jp-RenderedHTMLCommon .alert-danger > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon blockquote {\n  margin: 1em 2em;\n  padding: 0 1em;\n  border-left: 5px solid var(--jp-border-color2);\n}\n\na.jp-InternalAnchorLink {\n  visibility: hidden;\n  margin-left: 8px;\n  color: var(--md-blue-800);\n}\n\nh1:hover .jp-InternalAnchorLink,\nh2:hover .jp-InternalAnchorLink,\nh3:hover .jp-InternalAnchorLink,\nh4:hover .jp-InternalAnchorLink,\nh5:hover .jp-InternalAnchorLink,\nh6:hover .jp-InternalAnchorLink {\n  visibility: visible;\n}\n\n.jp-RenderedHTMLCommon kbd {\n  background-color: var(--jp-rendermime-table-row-background);\n  border: 1px solid var(--jp-border-color0);\n  border-bottom-color: var(--jp-border-color2);\n  border-radius: 3px;\n  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n  display: inline-block;\n  font-size: 0.8em;\n  line-height: 1em;\n  padding: 0.2em 0.5em;\n}\n\n/* Most direct children of .jp-RenderedHTMLCommon have a margin-bottom of 1.0.\n * At the bottom of cells this is a bit too much as there is also spacing\n * between cells. Going all the way to 0 gets too tight between markdown and\n * code cells.\n */\n.jp-RenderedHTMLCommon > *:last-child {\n  margin-bottom: 0.5em;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MimeDocument {\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-filebrowser-button-height: 28px;\n  --jp-private-filebrowser-button-width: 48px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser {\n  display: flex;\n  flex-direction: column;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  border-bottom: none;\n  height: auto;\n  margin: var(--jp-toolbar-header-margin);\n  box-shadow: none;\n}\n\n.jp-BreadCrumbs {\n  flex: 0 0 auto;\n  margin: 8px 12px 8px 12px;\n}\n\n.jp-BreadCrumbs-item {\n  margin: 0px 2px;\n  padding: 0px 2px;\n  border-radius: var(--jp-border-radius);\n  cursor: pointer;\n}\n\n.jp-BreadCrumbs-item:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-BreadCrumbs-item:first-child {\n  margin-left: 0px;\n}\n\n.jp-BreadCrumbs-item.jp-mod-dropTarget {\n  background-color: var(--jp-brand-color2);\n  opacity: 0.7;\n}\n\n/*-----------------------------------------------------------------------------\n| Buttons\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  padding: 0px;\n  margin: 8px 12px 0px 12px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  justify-content: flex-start;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-Toolbar-item {\n  flex: 0 0 auto;\n  padding-left: 0px;\n  padding-right: 2px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-ToolbarButtonComponent {\n  width: 40px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent {\n  width: 72px;\n  background: var(--jp-brand-color1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent:focus-visible {\n  background-color: var(--jp-brand-color0);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent\n  .jp-icon3 {\n  fill: white;\n}\n\n/*-----------------------------------------------------------------------------\n| Other styles\n|----------------------------------------------------------------------------*/\n\n.jp-FileDialog.jp-mod-conflict input {\n  color: var(--jp-error-color1);\n}\n\n.jp-FileDialog .jp-new-name-title {\n  margin-top: 12px;\n}\n\n.jp-LastModified-hidden {\n  display: none;\n}\n\n.jp-FileBrowser-filterBox {\n  padding: 0px;\n  flex: 0 0 auto;\n  margin: 8px 12px 0px 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| DirListing\n|----------------------------------------------------------------------------*/\n\n.jp-DirListing {\n  flex: 1 1 auto;\n  display: flex;\n  flex-direction: column;\n  outline: 0;\n}\n\n.jp-DirListing:focus-visible {\n  border: 1px solid var(--jp-brand-color1);\n}\n\n.jp-DirListing-header {\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n  border-top: var(--jp-border-width) solid var(--jp-border-color2);\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  z-index: 2;\n}\n\n.jp-DirListing-headerItem {\n  padding: 4px 12px 2px 12px;\n  font-weight: 500;\n}\n\n.jp-DirListing-headerItem:hover {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-headerItem.jp-id-name {\n  flex: 1 0 84px;\n}\n\n.jp-DirListing-headerItem.jp-id-modified {\n  flex: 0 0 112px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n}\n\n.jp-id-narrow {\n  display: none;\n  flex: 0 0 5px;\n  padding: 4px 4px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n  color: var(--jp-border-color2);\n}\n\n.jp-DirListing-narrow .jp-id-narrow {\n  display: block;\n}\n\n.jp-DirListing-narrow .jp-id-modified,\n.jp-DirListing-narrow .jp-DirListing-itemModified {\n  display: none;\n}\n\n.jp-DirListing-headerItem.jp-mod-selected {\n  font-weight: 600;\n}\n\n/* increase specificity to override bundled default */\n.jp-DirListing-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-DirListing-content mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.jp-DirListing-content .jp-DirListing-item.jp-mod-selected mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n/* Style the directory listing content when a user drops a file to upload */\n.jp-DirListing.jp-mod-native-drop .jp-DirListing-content {\n  outline: 5px dashed rgba(128, 128, 128, 0.5);\n  outline-offset: -10px;\n  cursor: copy;\n}\n\n.jp-DirListing-item {\n  display: flex;\n  flex-direction: row;\n  padding: 4px 12px;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n.jp-DirListing-item[data-is-dot] {\n  opacity: 75%;\n}\n\n.jp-DirListing-item.jp-mod-selected {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.jp-DirListing-item.jp-mod-dropTarget {\n  background: var(--jp-brand-color3);\n}\n\n.jp-DirListing-item:hover:not(.jp-mod-selected) {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-itemIcon {\n  flex: 0 0 20px;\n  margin-right: 4px;\n}\n\n.jp-DirListing-itemText {\n  flex: 1 0 64px;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  user-select: none;\n}\n\n.jp-DirListing-itemModified {\n  flex: 0 0 125px;\n  text-align: right;\n}\n\n.jp-DirListing-editor {\n  flex: 1 0 64px;\n  outline: none;\n  border: none;\n}\n\n.jp-DirListing-item.jp-mod-running .jp-DirListing-itemIcon:before {\n  color: var(--jp-success-color1);\n  content: '\\25CF';\n  font-size: 8px;\n  position: absolute;\n  left: -8px;\n}\n\n.jp-DirListing-item.jp-mod-running.jp-mod-selected\n  .jp-DirListing-itemIcon:before {\n  color: var(--jp-ui-inverse-font-color1);\n}\n\n.jp-DirListing-item.lm-mod-drag-image,\n.jp-DirListing-item.jp-mod-selected.lm-mod-drag-image {\n  font-size: var(--jp-ui-font-size1);\n  padding-left: 4px;\n  margin-left: 4px;\n  width: 160px;\n  background-color: var(--jp-ui-inverse-font-color2);\n  box-shadow: var(--jp-elevation-z2);\n  border-radius: 0px;\n  color: var(--jp-ui-font-color1);\n  transform: translateX(-40%) translateY(-58%);\n}\n\n.jp-DirListing-deadSpace {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-Document {\n  min-width: 120px;\n  min-height: 120px;\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n}\n\n/*-----------------------------------------------------------------------------\n| Main OutputArea\n| OutputArea has a list of Outputs\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea {\n  overflow-y: auto;\n}\n\n.jp-OutputArea-child {\n  display: flex;\n  flex-direction: row;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child {\n  flex-direction: column;\n}\n\n.jp-OutputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-outprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n.jp-OutputArea-output {\n  height: auto;\n  overflow: auto;\n  user-select: text;\n  -moz-user-select: text;\n  -webkit-user-select: text;\n  -ms-user-select: text;\n}\n\n.jp-OutputArea-child .jp-OutputArea-output {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  margin-left: var(--jp-notebook-padding);\n}\n\n/**\n * Isolated output.\n */\n.jp-OutputArea-output.jp-mod-isolated {\n  width: 100%;\n  display: block;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n/* pre */\n\n.jp-OutputArea-output pre {\n  border: none;\n  margin: 0px;\n  padding: 0px;\n  overflow-x: auto;\n  overflow-y: auto;\n  word-break: break-all;\n  word-wrap: break-word;\n  white-space: pre-wrap;\n}\n\n/* tables */\n\n.jp-OutputArea-output.jp-RenderedHTMLCommon table {\n  margin-left: 0;\n  margin-right: 0;\n}\n\n/* description lists */\n\n.jp-OutputArea-output dl,\n.jp-OutputArea-output dt,\n.jp-OutputArea-output dd {\n  display: block;\n}\n\n.jp-OutputArea-output dl {\n  width: 100%;\n  overflow: hidden;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dt {\n  font-weight: bold;\n  float: left;\n  width: 20%;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dd {\n  float: left;\n  width: 80%;\n  padding: 0;\n  margin: 0;\n}\n\n/* Hide the gutter in case of\n *  - nested output areas (e.g. in the case of output widgets)\n *  - mirrored output areas\n */\n.jp-OutputArea .jp-OutputArea .jp-OutputArea-prompt {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| executeResult is added to any Output-result for the display of the object\n| returned by a cell\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  margin-left: 0px;\n  flex: 1 1 auto;\n}\n\n/* Text output with the Out[] prompt needs a top padding to match the\n * alignment of the Out[] prompt itself.\n */\n.jp-OutputArea-executeResult .jp-RenderedText.jp-OutputArea-output {\n  padding-top: var(--jp-code-padding);\n  border-top: var(--jp-border-width) solid transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| The Stdin output\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-stdin {\n  line-height: var(--jp-code-line-height);\n  padding-top: var(--jp-code-padding);\n  display: flex;\n}\n\n.jp-Stdin-prompt {\n  color: var(--jp-content-font-color0);\n  padding-right: var(--jp-code-padding);\n  vertical-align: baseline;\n  flex: 0 0 auto;\n}\n\n.jp-Stdin-input {\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  color: inherit;\n  background-color: inherit;\n  width: 42%;\n  min-width: 200px;\n  /* make sure input baseline aligns with prompt */\n  vertical-align: baseline;\n  /* padding + margin = 0.5em between prompt and cursor */\n  padding: 0em 0.25em;\n  margin: 0em 0.25em;\n  flex: 0 0 70%;\n}\n\n.jp-Stdin-input:focus {\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Output Area View\n|----------------------------------------------------------------------------*/\n\n.jp-LinkedOutputView .jp-OutputArea {\n  height: 100%;\n  display: block;\n}\n\n.jp-LinkedOutputView .jp-OutputArea-output:only-child {\n  height: 100%;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapser {\n  flex: 0 0 var(--jp-cell-collapser-width);\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n  border-radius: var(--jp-border-radius);\n  opacity: 1;\n}\n\n.jp-Collapser-child {\n  display: block;\n  width: 100%;\n  box-sizing: border-box;\n  /* height: 100% doesn't work because the height of its parent is computed from content */\n  position: absolute;\n  top: 0px;\n  bottom: 0px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Header/Footer\n|----------------------------------------------------------------------------*/\n\n/* Hidden by zero height by default */\n.jp-CellHeader,\n.jp-CellFooter {\n  height: 0px;\n  width: 100%;\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Input\n|----------------------------------------------------------------------------*/\n\n/* All input areas */\n.jp-InputArea {\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n}\n\nbody[data-format='mobile'] .jp-InputArea {\n  flex-direction: column;\n}\n\n.jp-InputArea-editor {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  /* This is the non-active, default styling */\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  border-radius: 0px;\n  background: var(--jp-cell-editor-background);\n}\n\nbody[data-format='mobile'] .jp-InputArea-editor {\n  margin-left: var(--jp-notebook-padding);\n}\n\n.jp-InputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-inprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  opacity: var(--jp-cell-prompt-opacity);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-InputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Placeholder {\n  display: flex;\n  flex-direction: row;\n  flex: 1 1 auto;\n}\n\n.jp-Placeholder-prompt {\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content {\n  flex: 1 1 auto;\n  border: none;\n  background: transparent;\n  height: 20px;\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon {\n  width: 32px;\n  height: 16px;\n  border: 1px solid transparent;\n  border-radius: var(--jp-border-radius);\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon:hover {\n  border: 1px solid var(--jp-border-color1);\n  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);\n  background-color: var(--jp-layout-color0);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-cell-scrolling-output-offset: 5px;\n}\n\n/*-----------------------------------------------------------------------------\n| Cell\n|----------------------------------------------------------------------------*/\n\n.jp-Cell {\n  padding: var(--jp-cell-padding);\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Common input/output\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-inputWrapper,\n.jp-Cell-outputWrapper {\n  display: flex;\n  flex-direction: row;\n  padding: 0px;\n  margin: 0px;\n  /* Added to reveal the box-shadow on the input and output collapsers. */\n  overflow: visible;\n}\n\n/* Only input/output areas inside cells */\n.jp-Cell-inputArea,\n.jp-Cell-outputArea {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Collapser\n|----------------------------------------------------------------------------*/\n\n/* Make the output collapser disappear when there is not output, but do so\n * in a manner that leaves it in the layout and preserves its width.\n */\n.jp-Cell.jp-mod-noOutputs .jp-Cell-outputCollapser {\n  border: none !important;\n  background: transparent !important;\n}\n\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputCollapser {\n  min-height: var(--jp-cell-collapser-min-height);\n}\n\n/*-----------------------------------------------------------------------------\n| Output\n|----------------------------------------------------------------------------*/\n\n/* Put a space between input and output when there IS output */\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputWrapper {\n  margin-top: 5px;\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-Cell-outputArea {\n  overflow-y: auto;\n  max-height: 200px;\n  box-shadow: inset 0 0 6px 2px rgba(0, 0, 0, 0.3);\n  margin-left: var(--jp-private-cell-scrolling-output-offset);\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  flex: 0 0\n    calc(\n      var(--jp-cell-prompt-width) -\n        var(--jp-private-cell-scrolling-output-offset)\n    );\n}\n\n/*-----------------------------------------------------------------------------\n| CodeCell\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| MarkdownCell\n|----------------------------------------------------------------------------*/\n\n.jp-MarkdownOutput {\n  flex: 1 1 auto;\n  margin-top: 0;\n  margin-bottom: 0;\n  padding-left: var(--jp-code-padding);\n}\n\n.jp-MarkdownOutput.jp-RenderedHTMLCommon {\n  overflow: auto;\n}\n\n.jp-showHiddenCellsButton {\n  margin-left: calc(var(--jp-cell-prompt-width) + 2 * var(--jp-code-padding));\n  margin-top: var(--jp-code-padding);\n  border: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-border-color3) !important;\n  color: var(--jp-content-font-color0) !important;\n}\n\n.jp-showHiddenCellsButton:hover {\n  background-color: var(--jp-border-color2) !important;\n}\n\n.jp-collapseHeadingButton {\n  display: none;\n}\n\n.jp-MarkdownCell:hover .jp-collapseHeadingButton {\n  display: flex;\n  min-height: var(--jp-cell-collapser-min-height);\n  position: absolute;\n  right: 0;\n  top: 0;\n  bottom: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n\n/*-----------------------------------------------------------------------------\n| Styles\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel-toolbar {\n  padding: 2px;\n}\n\n.jp-Toolbar-item.jp-Notebook-toolbarCellType .jp-select-wrapper.jp-mod-focused {\n  border: none;\n  box-shadow: none;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown select {\n  height: 24px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: 14px;\n  border-radius: 0;\n  display: block;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown span {\n  top: 5px !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-notebook-dragImage-width: 304px;\n  --jp-private-notebook-dragImage-height: 36px;\n  --jp-private-notebook-selected-color: var(--md-blue-400);\n  --jp-private-notebook-active-color: var(--md-green-400);\n}\n\n/*-----------------------------------------------------------------------------\n| Imports\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Notebook\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel {\n  display: block;\n  height: 100%;\n}\n\n.jp-NotebookPanel.jp-Document {\n  min-width: 240px;\n  min-height: 120px;\n}\n\n.jp-Notebook {\n  padding: var(--jp-notebook-padding);\n  outline: none;\n  overflow: auto;\n  background: var(--jp-layout-color0);\n}\n\n.jp-Notebook.jp-mod-scrollPastEnd::after {\n  display: block;\n  content: '';\n  min-height: var(--jp-notebook-scroll-padding);\n}\n\n.jp-MainAreaWidget-ContainStrict .jp-Notebook * {\n  contain: strict;\n}\n\n.jp-Notebook-render * {\n  contain: none !important;\n}\n\n.jp-Notebook .jp-Cell {\n  overflow: visible;\n}\n\n.jp-Notebook .jp-Cell .jp-InputPrompt {\n  cursor: move;\n  float: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook state related styling\n|\n| The notebook and cells each have states, here are the possibilities:\n|\n| - Notebook\n|   - Command\n|   - Edit\n| - Cell\n|   - None\n|   - Active (only one can be active)\n|   - Selected (the cells actions are applied to)\n|   - Multiselected (when multiple selected, the cursor)\n|   - No outputs\n|----------------------------------------------------------------------------*/\n\n/* Command or edit modes */\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-InputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-OutputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n/* cell is active */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser {\n  background: var(--jp-brand-color1);\n}\n\n/* cell is dirty */\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt {\n  color: var(--jp-warn-color1);\n}\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt:before {\n  color: var(--jp-warn-color1);\n  content: '•';\n}\n\n.jp-Notebook .jp-Cell.jp-mod-active.jp-mod-dirty .jp-Collapser {\n  background: var(--jp-warn-color1);\n}\n\n/* collapser is hovered */\n.jp-Notebook .jp-Cell .jp-Collapser:hover {\n  box-shadow: var(--jp-elevation-z2);\n  background: var(--jp-brand-color1);\n  opacity: var(--jp-cell-collapser-not-active-hover-opacity);\n}\n\n/* cell is active and collapser is hovered */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser:hover {\n  background: var(--jp-brand-color0);\n  opacity: 1;\n}\n\n/* Command mode */\n\n.jp-Notebook.jp-mod-commandMode .jp-Cell.jp-mod-selected {\n  background: var(--jp-notebook-multiselected-color);\n}\n\n.jp-Notebook.jp-mod-commandMode\n  .jp-Cell.jp-mod-active.jp-mod-selected:not(.jp-mod-multiSelected) {\n  background: transparent;\n}\n\n/* Edit mode */\n\n.jp-Notebook.jp-mod-editMode .jp-Cell.jp-mod-active .jp-InputArea-editor {\n  border: var(--jp-border-width) solid var(--jp-cell-editor-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-cell-editor-active-background);\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook drag and drop\n|----------------------------------------------------------------------------*/\n\n.jp-Notebook-cell.jp-mod-dropSource {\n  opacity: 0.5;\n}\n\n.jp-Notebook-cell.jp-mod-dropTarget,\n.jp-Notebook.jp-mod-commandMode\n  .jp-Notebook-cell.jp-mod-active.jp-mod-selected.jp-mod-dropTarget {\n  border-top-color: var(--jp-private-notebook-selected-color);\n  border-top-style: solid;\n  border-top-width: 2px;\n}\n\n.jp-dragImage {\n  display: block;\n  flex-direction: row;\n  width: var(--jp-private-notebook-dragImage-width);\n  height: var(--jp-private-notebook-dragImage-height);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background);\n  overflow: visible;\n}\n\n.jp-dragImage-singlePrompt {\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n.jp-dragImage .jp-dragImage-content {\n  flex: 1 1 auto;\n  z-index: 2;\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  line-height: var(--jp-code-line-height);\n  padding: var(--jp-code-padding);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background-color);\n  color: var(--jp-content-font-color3);\n  text-align: left;\n  margin: 4px 4px 4px 0px;\n}\n\n.jp-dragImage .jp-dragImage-prompt {\n  flex: 0 0 auto;\n  min-width: 36px;\n  color: var(--jp-cell-inprompt-font-color);\n  padding: var(--jp-code-padding);\n  padding-left: 12px;\n  font-family: var(--jp-cell-prompt-font-family);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: 1.9;\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n}\n\n.jp-dragImage-multipleBack {\n  z-index: -1;\n  position: absolute;\n  height: 32px;\n  width: 300px;\n  top: 8px;\n  left: 8px;\n  background: var(--jp-layout-color2);\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n/*-----------------------------------------------------------------------------\n| Cell toolbar\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookTools {\n  display: block;\n  min-width: var(--jp-sidebar-min-width);\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n    * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  overflow: auto;\n}\n\n.jp-NotebookTools-tool {\n  padding: 0px 12px 0 12px;\n}\n\n.jp-ActiveCellTool {\n  padding: 12px;\n  background-color: var(--jp-layout-color1);\n  border-top: none !important;\n}\n\n.jp-ActiveCellTool .jp-InputArea-prompt {\n  flex: 0 0 auto;\n  padding-left: 0px;\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor {\n  flex: 1 1 auto;\n  background: var(--jp-cell-editor-background);\n  border-color: var(--jp-cell-editor-border-color);\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor .CodeMirror {\n  background: transparent;\n}\n\n.jp-MetadataEditorTool {\n  flex-direction: column;\n  padding: 12px 0px 12px 0px;\n}\n\n.jp-RankedPanel > :not(:first-child) {\n  margin-top: 12px;\n}\n\n.jp-KeySelector select.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n}\n\n.jp-KeySelector label,\n.jp-MetadataEditorTool label {\n  line-height: 1.4;\n}\n\n.jp-NotebookTools .jp-select-wrapper {\n  margin-top: 4px;\n  margin-bottom: 0px;\n}\n\n.jp-NotebookTools .jp-Collapse {\n  margin-top: 16px;\n}\n\n/*-----------------------------------------------------------------------------\n| Presentation Mode (.jp-mod-presentationMode)\n|----------------------------------------------------------------------------*/\n\n.jp-mod-presentationMode .jp-Notebook {\n  --jp-content-font-size1: var(--jp-content-presentation-font-size1);\n  --jp-code-font-size: var(--jp-code-presentation-font-size);\n}\n\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-InputPrompt,\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-OutputPrompt {\n  flex: 0 0 110px;\n}\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-Placeholder {\n  padding-left: 55px;\n}\n\n.jp-Cell-Placeholder-wrapper {\n  background: #fff;\n  border: 1px solid;\n  border-color: #e5e6e9 #dfe0e4 #d0d1d5;\n  border-radius: 4px;\n  -webkit-border-radius: 4px;\n  margin: 10px 15px;\n}\n\n.jp-Cell-Placeholder-wrapper-inner {\n  padding: 15px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body {\n  background-repeat: repeat;\n  background-size: 50% auto;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  background: #f6f7f8;\n  background-image: -webkit-linear-gradient(\n    left,\n    #f6f7f8 0%,\n    #edeef1 20%,\n    #f6f7f8 40%,\n    #f6f7f8 100%\n  );\n  background-repeat: no-repeat;\n  background-size: 800px 104px;\n  height: 104px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  position: absolute;\n  right: 15px;\n  left: 15px;\n  top: 15px;\n}\n\ndiv.jp-Cell-Placeholder-h1 {\n  top: 20px;\n  height: 20px;\n  left: 15px;\n  width: 150px;\n}\n\ndiv.jp-Cell-Placeholder-h2 {\n  left: 15px;\n  top: 50px;\n  height: 10px;\n  width: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-1,\ndiv.jp-Cell-Placeholder-content-2,\ndiv.jp-Cell-Placeholder-content-3 {\n  left: 15px;\n  right: 15px;\n  height: 10px;\n}\n\ndiv.jp-Cell-Placeholder-content-1 {\n  top: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-2 {\n  top: 120px;\n}\n\ndiv.jp-Cell-Placeholder-content-3 {\n  top: 140px;\n}\n\n</style>\n\n    <style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\nThe following CSS variables define the main, public API for styling JupyterLab.\nThese variables should be used by all plugins wherever possible. In other\nwords, plugins should not define custom colors, sizes, etc unless absolutely\nnecessary. This enables users to change the visual theme of JupyterLab\nby changing these variables.\n\nMany variables appear in an ordered sequence (0,1,2,3). These sequences\nare designed to work well together, so for example, `--jp-border-color1` should\nbe used with `--jp-layout-color1`. The numbers have the following meanings:\n\n* 0: super-primary, reserved for special emphasis\n* 1: primary, most important under normal situations\n* 2: secondary, next most important under normal situations\n* 3: tertiary, next most important under normal situations\n\nThroughout JupyterLab, we are mostly following principles from Google's\nMaterial Design when selecting colors. We are not, however, following\nall of MD as it is not optimized for dense, information rich UIs.\n*/\n\n:root {\n  /* Elevation\n   *\n   * We style box-shadows using Material Design's idea of elevation. These particular numbers are taken from here:\n   *\n   * https://github.com/material-components/material-components-web\n   * https://material-components-web.appspot.com/elevation.html\n   */\n\n  --jp-shadow-base-lightness: 0;\n  --jp-shadow-umbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.2\n  );\n  --jp-shadow-penumbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.14\n  );\n  --jp-shadow-ambient-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.12\n  );\n  --jp-elevation-z0: none;\n  --jp-elevation-z1: 0px 2px 1px -1px var(--jp-shadow-umbra-color),\n    0px 1px 1px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 3px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z2: 0px 3px 1px -2px var(--jp-shadow-umbra-color),\n    0px 2px 2px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 5px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z4: 0px 2px 4px -1px var(--jp-shadow-umbra-color),\n    0px 4px 5px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 10px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z6: 0px 3px 5px -1px var(--jp-shadow-umbra-color),\n    0px 6px 10px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 18px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z8: 0px 5px 5px -3px var(--jp-shadow-umbra-color),\n    0px 8px 10px 1px var(--jp-shadow-penumbra-color),\n    0px 3px 14px 2px var(--jp-shadow-ambient-color);\n  --jp-elevation-z12: 0px 7px 8px -4px var(--jp-shadow-umbra-color),\n    0px 12px 17px 2px var(--jp-shadow-penumbra-color),\n    0px 5px 22px 4px var(--jp-shadow-ambient-color);\n  --jp-elevation-z16: 0px 8px 10px -5px var(--jp-shadow-umbra-color),\n    0px 16px 24px 2px var(--jp-shadow-penumbra-color),\n    0px 6px 30px 5px var(--jp-shadow-ambient-color);\n  --jp-elevation-z20: 0px 10px 13px -6px var(--jp-shadow-umbra-color),\n    0px 20px 31px 3px var(--jp-shadow-penumbra-color),\n    0px 8px 38px 7px var(--jp-shadow-ambient-color);\n  --jp-elevation-z24: 0px 11px 15px -7px var(--jp-shadow-umbra-color),\n    0px 24px 38px 3px var(--jp-shadow-penumbra-color),\n    0px 9px 46px 8px var(--jp-shadow-ambient-color);\n\n  /* Borders\n   *\n   * The following variables, specify the visual styling of borders in JupyterLab.\n   */\n\n  --jp-border-width: 1px;\n  --jp-border-color0: var(--md-grey-400);\n  --jp-border-color1: var(--md-grey-400);\n  --jp-border-color2: var(--md-grey-300);\n  --jp-border-color3: var(--md-grey-200);\n  --jp-border-radius: 2px;\n\n  /* UI Fonts\n   *\n   * The UI font CSS variables are used for the typography all of the JupyterLab\n   * user interface elements that are not directly user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-ui-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-ui-font-scale-factor: 1.2;\n  --jp-ui-font-size0: 0.83333em;\n  --jp-ui-font-size1: 13px; /* Base font size */\n  --jp-ui-font-size2: 1.2em;\n  --jp-ui-font-size3: 1.44em;\n\n  --jp-ui-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica,\n    Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';\n\n  /*\n   * Use these font colors against the corresponding main layout colors.\n   * In a light theme, these go from dark to light.\n   */\n\n  /* Defaults use Material Design specification */\n  --jp-ui-font-color0: rgba(0, 0, 0, 1);\n  --jp-ui-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-ui-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-ui-font-color3: rgba(0, 0, 0, 0.38);\n\n  /*\n   * Use these against the brand/accent/warn/error colors.\n   * These will typically go from light to darker, in both a dark and light theme.\n   */\n\n  --jp-ui-inverse-font-color0: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color1: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color2: rgba(255, 255, 255, 0.7);\n  --jp-ui-inverse-font-color3: rgba(255, 255, 255, 0.5);\n\n  /* Content Fonts\n   *\n   * Content font variables are used for typography of user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-content-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-content-line-height: 1.6;\n  --jp-content-font-scale-factor: 1.2;\n  --jp-content-font-size0: 0.83333em;\n  --jp-content-font-size1: 14px; /* Base font size */\n  --jp-content-font-size2: 1.2em;\n  --jp-content-font-size3: 1.44em;\n  --jp-content-font-size4: 1.728em;\n  --jp-content-font-size5: 2.0736em;\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-content-presentation-font-size1: 17px;\n\n  --jp-content-heading-line-height: 1;\n  --jp-content-heading-margin-top: 1.2em;\n  --jp-content-heading-margin-bottom: 0.8em;\n  --jp-content-heading-font-weight: 500;\n\n  /* Defaults use Material Design specification */\n  --jp-content-font-color0: rgba(0, 0, 0, 1);\n  --jp-content-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-content-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-content-font-color3: rgba(0, 0, 0, 0.38);\n\n  --jp-content-link-color: var(--md-blue-700);\n\n  --jp-content-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',\n    Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',\n    'Segoe UI Symbol';\n\n  /*\n   * Code Fonts\n   *\n   * Code font variables are used for typography of code and other monospaces content.\n   */\n\n  --jp-code-font-size: 13px;\n  --jp-code-line-height: 1.3077; /* 17px for 13px base */\n  --jp-code-padding: 5px; /* 5px for 13px base, codemirror highlighting needs integer px value */\n  --jp-code-font-family-default: Menlo, Consolas, 'DejaVu Sans Mono', monospace;\n  --jp-code-font-family: var(--jp-code-font-family-default);\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-code-presentation-font-size: 16px;\n\n  /* may need to tweak cursor width if you change font size */\n  --jp-code-cursor-width0: 1.4px;\n  --jp-code-cursor-width1: 2px;\n  --jp-code-cursor-width2: 4px;\n\n  /* Layout\n   *\n   * The following are the main layout colors use in JupyterLab. In a light\n   * theme these would go from light to dark.\n   */\n\n  --jp-layout-color0: white;\n  --jp-layout-color1: white;\n  --jp-layout-color2: var(--md-grey-200);\n  --jp-layout-color3: var(--md-grey-400);\n  --jp-layout-color4: var(--md-grey-600);\n\n  /* Inverse Layout\n   *\n   * The following are the inverse layout colors use in JupyterLab. In a light\n   * theme these would go from dark to light.\n   */\n\n  --jp-inverse-layout-color0: #111111;\n  --jp-inverse-layout-color1: var(--md-grey-900);\n  --jp-inverse-layout-color2: var(--md-grey-800);\n  --jp-inverse-layout-color3: var(--md-grey-700);\n  --jp-inverse-layout-color4: var(--md-grey-600);\n\n  /* Brand/accent */\n\n  --jp-brand-color0: var(--md-blue-900);\n  --jp-brand-color1: var(--md-blue-700);\n  --jp-brand-color2: var(--md-blue-300);\n  --jp-brand-color3: var(--md-blue-100);\n  --jp-brand-color4: var(--md-blue-50);\n\n  --jp-accent-color0: var(--md-green-900);\n  --jp-accent-color1: var(--md-green-700);\n  --jp-accent-color2: var(--md-green-300);\n  --jp-accent-color3: var(--md-green-100);\n\n  /* State colors (warn, error, success, info) */\n\n  --jp-warn-color0: var(--md-orange-900);\n  --jp-warn-color1: var(--md-orange-700);\n  --jp-warn-color2: var(--md-orange-300);\n  --jp-warn-color3: var(--md-orange-100);\n\n  --jp-error-color0: var(--md-red-900);\n  --jp-error-color1: var(--md-red-700);\n  --jp-error-color2: var(--md-red-300);\n  --jp-error-color3: var(--md-red-100);\n\n  --jp-success-color0: var(--md-green-900);\n  --jp-success-color1: var(--md-green-700);\n  --jp-success-color2: var(--md-green-300);\n  --jp-success-color3: var(--md-green-100);\n\n  --jp-info-color0: var(--md-cyan-900);\n  --jp-info-color1: var(--md-cyan-700);\n  --jp-info-color2: var(--md-cyan-300);\n  --jp-info-color3: var(--md-cyan-100);\n\n  /* Cell specific styles */\n\n  --jp-cell-padding: 5px;\n\n  --jp-cell-collapser-width: 8px;\n  --jp-cell-collapser-min-height: 20px;\n  --jp-cell-collapser-not-active-hover-opacity: 0.6;\n\n  --jp-cell-editor-background: var(--md-grey-100);\n  --jp-cell-editor-border-color: var(--md-grey-300);\n  --jp-cell-editor-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-cell-editor-active-background: var(--jp-layout-color0);\n  --jp-cell-editor-active-border-color: var(--jp-brand-color1);\n\n  --jp-cell-prompt-width: 64px;\n  --jp-cell-prompt-font-family: var(--jp-code-font-family-default);\n  --jp-cell-prompt-letter-spacing: 0px;\n  --jp-cell-prompt-opacity: 1;\n  --jp-cell-prompt-not-active-opacity: 0.5;\n  --jp-cell-prompt-not-active-font-color: var(--md-grey-700);\n  /* A custom blend of MD grey and blue 600\n   * See https://meyerweb.com/eric/tools/color-blend/#546E7A:1E88E5:5:hex */\n  --jp-cell-inprompt-font-color: #307fc1;\n  /* A custom blend of MD grey and orange 600\n   * https://meyerweb.com/eric/tools/color-blend/#546E7A:F4511E:5:hex */\n  --jp-cell-outprompt-font-color: #bf5b3d;\n\n  /* Notebook specific styles */\n\n  --jp-notebook-padding: 10px;\n  --jp-notebook-select-background: var(--jp-layout-color1);\n  --jp-notebook-multiselected-color: var(--md-blue-50);\n\n  /* The scroll padding is calculated to fill enough space at the bottom of the\n  notebook to show one single-line cell (with appropriate padding) at the top\n  when the notebook is scrolled all the way to the bottom. We also subtract one\n  pixel so that no scrollbar appears if we have just one single-line cell in the\n  notebook. This padding is to enable a 'scroll past end' feature in a notebook.\n  */\n  --jp-notebook-scroll-padding: calc(\n    100% - var(--jp-code-font-size) * var(--jp-code-line-height) -\n      var(--jp-code-padding) - var(--jp-cell-padding) - 1px\n  );\n\n  /* Rendermime styles */\n\n  --jp-rendermime-error-background: #fdd;\n  --jp-rendermime-table-row-background: var(--md-grey-100);\n  --jp-rendermime-table-row-hover-background: var(--md-light-blue-50);\n\n  /* Dialog specific styles */\n\n  --jp-dialog-background: rgba(0, 0, 0, 0.25);\n\n  /* Console specific styles */\n\n  --jp-console-padding: 10px;\n\n  /* Toolbar specific styles */\n\n  --jp-toolbar-border-color: var(--jp-border-color1);\n  --jp-toolbar-micro-height: 8px;\n  --jp-toolbar-background: var(--jp-layout-color1);\n  --jp-toolbar-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.24);\n  --jp-toolbar-header-margin: 4px 4px 0px 4px;\n  --jp-toolbar-active-background: var(--md-grey-300);\n\n  /* Statusbar specific styles */\n\n  --jp-statusbar-height: 24px;\n\n  /* Input field styles */\n\n  --jp-input-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-input-active-background: var(--jp-layout-color1);\n  --jp-input-hover-background: var(--jp-layout-color1);\n  --jp-input-background: var(--md-grey-100);\n  --jp-input-border-color: var(--jp-border-color1);\n  --jp-input-active-border-color: var(--jp-brand-color1);\n  --jp-input-active-box-shadow-color: rgba(19, 124, 189, 0.3);\n\n  /* General editor styles */\n\n  --jp-editor-selected-background: #d9d9d9;\n  --jp-editor-selected-focused-background: #d7d4f0;\n  --jp-editor-cursor-color: var(--jp-ui-font-color0);\n\n  /* Code mirror specific styles */\n\n  --jp-mirror-editor-keyword-color: #008000;\n  --jp-mirror-editor-atom-color: #88f;\n  --jp-mirror-editor-number-color: #080;\n  --jp-mirror-editor-def-color: #00f;\n  --jp-mirror-editor-variable-color: var(--md-grey-900);\n  --jp-mirror-editor-variable-2-color: #05a;\n  --jp-mirror-editor-variable-3-color: #085;\n  --jp-mirror-editor-punctuation-color: #05a;\n  --jp-mirror-editor-property-color: #05a;\n  --jp-mirror-editor-operator-color: #aa22ff;\n  --jp-mirror-editor-comment-color: #408080;\n  --jp-mirror-editor-string-color: #ba2121;\n  --jp-mirror-editor-string-2-color: #708;\n  --jp-mirror-editor-meta-color: #aa22ff;\n  --jp-mirror-editor-qualifier-color: #555;\n  --jp-mirror-editor-builtin-color: #008000;\n  --jp-mirror-editor-bracket-color: #997;\n  --jp-mirror-editor-tag-color: #170;\n  --jp-mirror-editor-attribute-color: #00c;\n  --jp-mirror-editor-header-color: blue;\n  --jp-mirror-editor-quote-color: #090;\n  --jp-mirror-editor-link-color: #00c;\n  --jp-mirror-editor-error-color: #f00;\n  --jp-mirror-editor-hr-color: #999;\n\n  /* Vega extension styles */\n\n  --jp-vega-background: white;\n\n  /* Sidebar-related styles */\n\n  --jp-sidebar-min-width: 250px;\n\n  /* Search-related styles */\n\n  --jp-search-toggle-off-opacity: 0.5;\n  --jp-search-toggle-hover-opacity: 0.8;\n  --jp-search-toggle-on-opacity: 1;\n  --jp-search-selected-match-background-color: rgb(245, 200, 0);\n  --jp-search-selected-match-color: black;\n  --jp-search-unselected-match-background-color: var(\n    --jp-inverse-layout-color0\n  );\n  --jp-search-unselected-match-color: var(--jp-ui-inverse-font-color0);\n\n  /* Icon colors that work well with light or dark backgrounds */\n  --jp-icon-contrast-color0: var(--md-purple-600);\n  --jp-icon-contrast-color1: var(--md-green-600);\n  --jp-icon-contrast-color2: var(--md-pink-600);\n  --jp-icon-contrast-color3: var(--md-blue-600);\n}\n</style>\n\n<style type=\"text/css\">\n/* Force rendering true colors when outputing to pdf */\n* {\n  -webkit-print-color-adjust: exact;\n}\n\n/* Misc */\na.anchor-link {\n  display: none;\n}\n\n.highlight  {\n  margin: 0.4em;\n}\n\n/* Input area styling */\n.jp-InputArea {\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  overflow: hidden;\n}\n\n.CodeMirror pre {\n  margin: 0;\n  padding: 0;\n}\n\n/* Using table instead of flexbox so that we can use break-inside property */\n/* CSS rules under this comment should not be required anymore after we move to the JupyterLab 4.0 CSS */\n\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  min-width: calc(\n    var(--jp-cell-prompt-width) - var(--jp-private-cell-scrolling-output-offset)\n  );\n}\n\n.jp-OutputArea-child {\n  display: table;\n  width: 100%;\n}\n\n.jp-OutputPrompt {\n  display: table-cell;\n  vertical-align: top;\n  min-width: var(--jp-cell-prompt-width);\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  display: table-row;\n}\n\n.jp-OutputArea-output {\n  display: table-cell;\n  width: 100%;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  display: table-row;\n}\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  width: 100%;\n}\n\n/* Hiding the collapser by default */\n.jp-Collapser {\n  display: none;\n}\n\n@media print {\n  .jp-Cell-inputWrapper,\n  .jp-Cell-outputWrapper {\n    display: block;\n  }\n\n  .jp-OutputArea-child {\n    break-inside: avoid-page;\n  }\n}\n</style>\n\n<!-- Load mathjax -->\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/latest.js?config=TeX-AMS_CHTML-full,Safe\"> </script>\n    <!-- MathJax configuration -->\n    <script type=\"text/x-mathjax-config\">\n    init_mathjax = function() {\n        if (window.MathJax) {\n        // MathJax loaded\n            MathJax.Hub.Config({\n                TeX: {\n                    equationNumbers: {\n                    autoNumber: \"AMS\",\n                    useLabelIds: true\n                    }\n                },\n                tex2jax: {\n                    inlineMath: [ ['$','$'], [\"\\\\(\",\"\\\\)\"] ],\n                    displayMath: [ ['$$','$$'], [\"\\\\[\",\"\\\\]\"] ],\n                    processEscapes: true,\n                    processEnvironments: true\n                },\n                displayAlign: 'center',\n                CommonHTML: {\n                    linebreaks: {\n                    automatic: true\n                    }\n                }\n            });\n\n            MathJax.Hub.Queue([\"Typeset\", MathJax.Hub]);\n        }\n    }\n    init_mathjax();\n    </script>\n    <!-- End of mathjax configuration --></head>\n<body class=\"jp-Notebook\" data-jp-theme-light=\"true\" data-jp-theme-name=\"JupyterLab Light\">\n<div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[1]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">ImportQualifiedPost</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">FlexibleContexts</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">BlockArguments</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">TupleSections</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">FlexibleContexts</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">OverloadedStrings</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">LambdaCase</span><span class=\"w\"></span>\n\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Data.Text</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">T</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Arrow</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">first</span><span class=\"p\">,</span><span class=\"nf\">second</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Graphics.Vega.VegaLite</span><span class=\"w\"> </span><span class=\"k\">hiding</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">density</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Graphics.Vega.VegaLite</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">VL</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">IHaskell.Display.Hvega</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">vlShow</span><span class=\"p\">)</span><span class=\"w\"></span>\n\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Class</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Enumerator</span><span class=\"w\"></span>\n\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Weighted</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Sampler.Strict</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Traced.Static</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Inference.MCMC</span><span class=\"w\"></span>\n\n<span class=\"kt\">:</span><span class=\"n\">l</span><span class=\"w\"> </span><span class=\"o\">../</span><span class=\"n\">plotting</span><span class=\"o\">.</span><span class=\"n\">hs</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"MCMC\">MCMC<a class=\"anchor-link\" href=\"#MCMC\">&#182;</a></h1><p>Following <a href=\"https://en.wikipedia.org/wiki/Markov_chain_Monte_Carlo\">wikipedia</a>:</p>\n<blockquote><p>Markov chain Monte Carlo (MCMC) is a powerful class of methods to sample from probability distributions known only up to an (unknown) normalization constant.</p>\n</blockquote>\n<p>Markov Chain is a stochastic process where new state depends only on the previous state (Markov property for discrete-time process). Transition between states is governed by transition kernell $T$. In the limit of long simulation, probability distribution of steps of the Markov process converges to the stationary distribution $\\pi_{\\star}$. Reasonable  assumptions of existence of the stationary distribution, non-periodicy of MC and availibility of all states must be held.</p>\n<p>If we want to <strong>sample</strong> from a complicated distribution $\\pi$, we can construct a Markov process which stationary distribution $\\pi_{\\star} = \\pi$. The question is how to construct transition kernell to achieve $\\pi$ as a stationary distribution.</p>\n<h2 id=\"Metropolis-Hastings\">Metropolis-Hastings<a class=\"anchor-link\" href=\"#Metropolis-Hastings\">&#182;</a></h2><p>MH is a classical and most widely use algorithm with many flavours. Here we present a general outline.</p>\n<p>The algoritm is used to generate next point of the Markov Chain, namely $x_{i+1}$, in the space state.\nMH algorithms consist of proposal and acceptance/rejection steps:</p>\n<ol>\n<li><p><strong>Proposal</strong>: draw next candidate\\\n We construct transition kernel:</p>\n<p>$$ \n T(x_{i+1}|x_{i}) = q(x_{i+1}|x_{i})\\times p_{acc}(x_{i+1}|x_{i})\n $$\n where $q$ is proposal distribution for the next state of the chain and $p_{acc}$ is probability of sample being accepted.</p>\n<p>Proposal distribution $q$ should be simple to draw from, for example uniform distribution around current point $\\mathcal{U}(x_i - \\delta, x_{i}+\\delta)$, where $\\delta$ is a small positive number.</p>\n</li>\n<li><p><strong>Acceptance/rejection</strong> assess if the candidate might have been drawn from sampled distribution $\\pi$\\\n Having symmetric proposal distribution and adding constraint of microscopic reversibility on the transition kernell:</p>\n<p>$$ \n \\pi(x_{i})T(x_{i+1}|x_{i}) = \\pi(x_{i+1})T(x_{i}|x_{i+1})\n $$</p>\n<p>we have acceptance probability:\n $$\n p_{acc}(x_{i+1}|x_{i}) = min\\left\\{1, \\frac{\\pi_{x+1}}{\\pi_{x}}\\right\\}\n $$</p>\n</li>\n</ol>\n<p>For details on MCMC see the series of blog posts starting with <a href=\"https://www.tweag.io/blog/2019-10-25-mcmc-intro1/\">https://www.tweag.io/blog/2019-10-25-mcmc-intro1/</a> or an online book <a href=\"https://bookdown.org/rdpeng/advstatcomp/markov-chain-monte-carlo.html\">https://bookdown.org/rdpeng/advstatcomp/markov-chain-monte-carlo.html</a>.</p>\n<h2 id=\"monad-bayes-implementation\"><code>monad-bayes</code> implementation<a class=\"anchor-link\" href=\"#monad-bayes-implementation\">&#182;</a></h2><p>There are several versions of Metropolis-Hastings algorith for MCMC defined in monad-bayes. The standard version is found in <code>Control.Monad.Bayes.Inference.MCMC</code> - Traced MH.\nImplementatio of a single step of of MH algorithm is <code>mhTransWithBool</code>.</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Linear-regression\">Linear regression<a class=\"anchor-link\" href=\"#Linear-regression\">&#182;</a></h1><p>We'll start with the example of a simple regression. Function <code>regressionData</code> defines a distribution of a linear regression values given a list of arguments.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[2]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">paramPriorRegression</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">slope</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">intercept</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">noise</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">gamma</span><span class=\"w\"> </span><span class=\"mi\">4</span><span class=\"w\"> </span><span class=\"mi\">4</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">slope</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">intercept</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">noise</span><span class=\"p\">)</span><span class=\"w\"></span>\n\n\n<span class=\"nf\">regressionData</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Traversable</span><span class=\"w\"> </span><span class=\"n\">t</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"n\">t</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">t</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">))</span><span class=\"w\"></span>\n<span class=\"nf\">regressionData</span><span class=\"w\"> </span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"n\">slope</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">intercept</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">noise</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">paramPriorRegression</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">forM</span><span class=\"w\"> </span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"nf\">\\</span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"o\">*</span><span class=\"n\">slope</span><span class=\"w\"> </span><span class=\"o\">+</span><span class=\"w\"> </span><span class=\"n\">intercept</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">sqrt</span><span class=\"w\"> </span><span class=\"n\">noise</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[3]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">range</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"o\">-</span><span class=\"mi\">10</span><span class=\"p\">,</span><span class=\"o\">-</span><span class=\"mf\">9.9</span><span class=\"o\">..</span><span class=\"mi\">10</span><span class=\"p\">]</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Double</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">regressionSamples</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">regressionData</span><span class=\"w\"> </span><span class=\"n\">range</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[4]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">regressionSamples</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Prelude</span><span class=\"o\">.</span><span class=\"n\">repeat</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"s\">&quot;N/A&quot;</span><span class=\"p\">))</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>Function<code>regression</code> computes paramteres of the model, namely <code>(slope, intercept, noise)</code> and their score.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[5]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">regression</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">MonadMeasure</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Double</span><span class=\"p\">]</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Double</span><span class=\"p\">]</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"nf\">regression</span><span class=\"w\"> </span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"n\">ys</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">params</span><span class=\"o\">@</span><span class=\"p\">(</span><span class=\"n\">slope</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">intercept</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">noise</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">paramPriorRegression</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">forM_</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"n\">ys</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"nf\">\\</span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">factor</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">normalPdf</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">slope</span><span class=\"w\"> </span><span class=\"o\">*</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"o\">+</span><span class=\"w\"> </span><span class=\"n\">intercept</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">sqrt</span><span class=\"w\"> </span><span class=\"n\">noise</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">slope</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">intercept</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">noise</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[6]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">mcmcConfig</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">MCMCConfig</span><span class=\"w\"> </span><span class=\"p\">{</span><span class=\"n\">numMCMCSteps</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">1000</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">numBurnIn</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">proposal</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">SingleSiteMH</span><span class=\"p\">}</span><span class=\"w\"></span>\n<span class=\"nf\">mhRunsRegression</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">unweighted</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">mcmc</span><span class=\"w\"> </span><span class=\"n\">mcmcConfig</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">uncurry</span><span class=\"w\"> </span><span class=\"n\">regression</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">unzip</span><span class=\"w\"> </span><span class=\"n\">regressionSamples</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre></pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>MCMC solver puts new points at the beginning of the list. Last (in the list, so first from the simulation start) <code>numBurnIn</code> points are removed as distributions from which they were drawn are not considered convergent to the stationary distribution $\\pi$.</p>\n<p>Let's se how the intercept and slope evolve during the simulations:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[7]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">print</span><span class=\"w\"> </span><span class=\"s\">&quot;Slope&quot;</span><span class=\"w\"></span>\n<span class=\"nf\">l</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">length</span><span class=\"w\"> </span><span class=\"n\">mhRunsRegression</span><span class=\"w\"></span>\n<span class=\"nf\">xs</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">reverse</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">fromIntegral</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"mi\">1</span><span class=\"o\">..</span><span class=\"n\">l</span><span class=\"p\">]</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"p\">[</span><span class=\"kt\">Double</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">xs</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"kr\">_</span><span class=\"p\">,</span><span class=\"kr\">_</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">mhRunsRegression</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>&#34;Slope&#34;</pre>\n</div>\n\n</div>\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[8]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">print</span><span class=\"w\"> </span><span class=\"s\">&quot;Intercept&quot;</span><span class=\"w\"></span>\n<span class=\"nf\">l</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">length</span><span class=\"w\"> </span><span class=\"n\">mhRunsRegression</span><span class=\"w\"></span>\n<span class=\"nf\">xs</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">reverse</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">fromIntegral</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"mi\">1</span><span class=\"o\">..</span><span class=\"n\">l</span><span class=\"p\">]</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"p\">[</span><span class=\"kt\">Double</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">xs</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"p\">(</span><span class=\"kr\">_</span><span class=\"p\">,</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"kr\">_</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">mhRunsRegression</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>&#34;Intercept&#34;</pre>\n</div>\n\n</div>\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>This is a sample from the MCMC walk. Since this is an easy inference problem, it wasn't hard to generate good samples.</p>\n<p>We can also view the posterior predictive, as follows:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[9]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">posteriorPredictive</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadMeasure</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Double</span><span class=\"p\">]</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Double</span><span class=\"p\">]</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Double</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">posteriorPredictive</span><span class=\"w\"> </span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"n\">ys</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"n\">slope</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">intercept</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">noise</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">regression</span><span class=\"w\"> </span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"n\">ys</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">forM</span><span class=\"w\"> </span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"nf\">\\</span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">            </span><span class=\"kr\">let</span><span class=\"w\"> </span><span class=\"n\">y&#39;</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"o\">*</span><span class=\"w\"> </span><span class=\"n\">slope</span><span class=\"w\"> </span><span class=\"o\">+</span><span class=\"w\"> </span><span class=\"n\">intercept</span><span class=\"w\"></span>\n<span class=\"w\">            </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"n\">y&#39;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">sqrt</span><span class=\"w\"> </span><span class=\"n\">noise</span><span class=\"p\">)</span><span class=\"w\"></span>\n\n\n<span class=\"nf\">predictive</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">head</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">unweighted</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">mcmc</span><span class=\"w\"> </span><span class=\"n\">mcmcConfig</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">uncurry</span><span class=\"w\"> </span><span class=\"n\">posteriorPredictive</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">unzip</span><span class=\"w\"> </span><span class=\"n\">regressionSamples</span><span class=\"p\">))</span><span class=\"w\"></span>\n<span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">second</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">show</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">range</span><span class=\"w\"> </span><span class=\"n\">predictive</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Prelude</span><span class=\"o\">.</span><span class=\"n\">repeat</span><span class=\"w\"> </span><span class=\"s\">&quot;N/A&quot;</span><span class=\"p\">)))</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Linear-regression-with-outliers\">Linear regression with outliers<a class=\"anchor-link\" href=\"#Linear-regression-with-outliers\">&#182;</a></h1><p>Inspired by the tutorials on probabilistic programming language Gen (<a href=\"https://www.gen.dev/tutorials/iterative-inference/tutorial\">https://www.gen.dev/tutorials/iterative-inference/tutorial</a>), we'll make the inference problem harder by using the example of a regression with outliers. The idea is that each datapoint $(x,y)$ has $y$ either linearly dependent on $x$, or randomly sampler (an outlier). So the goal of inference is to <em>jointly</em> work out what the linear relationship is and which points flout it.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[10]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">paramPrior</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">slope</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">intercept</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">noise</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">gamma</span><span class=\"w\"> </span><span class=\"mi\">4</span><span class=\"w\"> </span><span class=\"mi\">4</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">prob_outlier</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">uniform</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"mf\">0.5</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">slope</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">intercept</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">noise</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">prob_outlier</span><span class=\"p\">)</span><span class=\"w\"></span>\n\n<span class=\"nf\">forward</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">slope</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">intercept</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">noise</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">probOutlier</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">isOutlier</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">bernoulli</span><span class=\"w\"> </span><span class=\"n\">probOutlier</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"kr\">let</span><span class=\"w\"> </span><span class=\"n\">meanParams</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">if</span><span class=\"w\"> </span><span class=\"n\">isOutlier</span><span class=\"w\"></span>\n<span class=\"w\">                    </span><span class=\"kr\">then</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">20</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">                    </span><span class=\"kr\">else</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"o\">*</span><span class=\"n\">slope</span><span class=\"w\"> </span><span class=\"o\">+</span><span class=\"w\"> </span><span class=\"n\">intercept</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">sqrt</span><span class=\"w\"> </span><span class=\"n\">noise</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">meanParams</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">isOutlier</span><span class=\"p\">)</span><span class=\"w\"></span>\n\n<span class=\"nf\">regressionWithOutliersData</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Traversable</span><span class=\"w\"> </span><span class=\"n\">t</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"n\">t</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">t</span><span class=\"w\"> </span><span class=\"p\">((</span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"kt\">Bool</span><span class=\"p\">))</span><span class=\"w\"></span>\n<span class=\"nf\">regressionWithOutliersData</span><span class=\"w\"> </span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">params</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">paramPrior</span><span class=\"w\"></span>\n\n<span class=\"w\">    </span><span class=\"n\">forM</span><span class=\"w\"> </span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"nf\">\\</span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"p\">((</span><span class=\"n\">mu</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">std</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"n\">isOutlier</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">forward</span><span class=\"w\"> </span><span class=\"n\">params</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"n\">mu</span><span class=\"w\"> </span><span class=\"n\">std</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">((</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"n\">isOutlier</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>This is our model. It describes a process for getting $y$ from $x$. Specifically, you start by drawing values for the slope $s$, bias $b$ and noise $n$. Then for each input $x$, you flip a coin. If it lands one way, you draw a $y$ value from a normal with mean $x*slope + bias$ and std $n$, and otherwise you draw from a centered normal with large variance.</p>\n<p>Given a list of $x$ values, this gives a distribution over lists of $y$ values, from which we can sample:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[11]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">range</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"o\">-</span><span class=\"mi\">10</span><span class=\"p\">,</span><span class=\"o\">-</span><span class=\"mf\">9.9</span><span class=\"o\">..</span><span class=\"mi\">10</span><span class=\"p\">]</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Double</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">samples</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">regressionWithOutliersData</span><span class=\"w\"> </span><span class=\"n\">range</span><span class=\"w\"></span>\n<span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">second</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">show</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"n\">samples</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<!-- This is our dataset, with outliers shown in orange.\n\nGiven this dataset of $(x,y)$ pairs, we now consider the problem of inference. That is, we want to infer the slope, bias, noise and *for each datapoint*, whether it's an outlier.\n\nOur first attempt will be to average a large number of samples, weighted by how likely they are. TODO: add the conditioning\n -->\n</div>\n</div>\n</div>\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<!-- Why did this result in a bad guess? Simply because there are so many more bad guesses than good ones, so that even if you weight the good guesses higher, if you have almost none, then it doesn't matter.\n\nThe classic solution to this problem (the solution space is too large for independent sampling) is to use a Markov Chain method, where each sample depends on the last. You can do so in a clever way, to obtain unbiased samples from the true posterior distribution in the limit of a sufficiently long chain. Monad-bayes implements the standard Markov Chain Monte Carlo approach with Metropolis Hastings transitions.\n\nHere's how it goes: -->\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[12]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">regressionWithOutliers</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">MonadMeasure</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"p\">[</span><span class=\"kt\">Double</span><span class=\"p\">]</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Double</span><span class=\"p\">]</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">((</span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Bool</span><span class=\"p\">])</span><span class=\"w\"></span>\n<span class=\"nf\">regressionWithOutliers</span><span class=\"w\"> </span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"n\">ys</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">params</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">paramPrior</span><span class=\"w\"></span>\n<span class=\"w\">    </span>\n<span class=\"w\">    </span><span class=\"n\">outliers</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">forM</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">xs</span><span class=\"w\"> </span><span class=\"n\">ys</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"nf\">\\</span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"p\">((</span><span class=\"n\">mu</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">std</span><span class=\"p\">),</span><span class=\"w\"> </span><span class=\"n\">isOutlier</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">forward</span><span class=\"w\"> </span><span class=\"n\">params</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">factor</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">normalPdf</span><span class=\"w\"> </span><span class=\"n\">mu</span><span class=\"w\"> </span><span class=\"n\">std</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"n\">isOutlier</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">params</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">outliers</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[13]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">mhRuns</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">unweighted</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">mcmc</span><span class=\"w\"> </span><span class=\"n\">mcmcConfig</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">regressionWithOutliers</span><span class=\"w\"> </span><span class=\"n\">range</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">snd</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">fst</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">samples</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre></pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[14]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">outlierProb</span><span class=\"w\"> </span><span class=\"n\">s</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\">  </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"o\">/</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"o\">+</span><span class=\"n\">y</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span>\n<span class=\"w\">  </span><span class=\"n\">foldr</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"p\">(</span><span class=\"kr\">_</span><span class=\"p\">,</span><span class=\"n\">lb</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">li</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"w\"> </span><span class=\"kr\">if</span><span class=\"w\"> </span><span class=\"n\">b</span><span class=\"w\"> </span><span class=\"kr\">then</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">num1</span><span class=\"o\">+</span><span class=\"mi\">1</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">num2</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"kr\">else</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">num1</span><span class=\"p\">,</span><span class=\"n\">num2</span><span class=\"o\">+</span><span class=\"mi\">1</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">|</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">b</span><span class=\"p\">,(</span><span class=\"n\">num1</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">num2</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">lb</span><span class=\"w\"> </span><span class=\"n\">li</span><span class=\"p\">])</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"kt\">Prelude</span><span class=\"o\">.</span><span class=\"n\">repeat</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"mi\">0</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"n\">s</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[15]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">plot</span><span class=\"w\">  </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">take</span><span class=\"w\"> </span><span class=\"mi\">5000</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">fst</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">samples</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">outlierProb</span><span class=\"w\"> </span><span class=\"n\">mhRuns</span><span class=\"p\">))</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>Running MCMC gives us a list of samples. The results make sense: points that are very near the line are probably not outliers and ones very far are.</p>\n<p>It would be nice to make our approach more sample efficient though. The <code>SingleSiteMH</code> proposal is very naive. Two ways to improve on this would be to use customizable proposals, as in <code>Gen</code>, or to use Hamiltonian Monte Carlo as in <code>Stan</code>.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[&nbsp;]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n</body>\n\n\n\n\n\n\n\n</html>\n"
  },
  {
    "path": "docs/docs/notebooks/Parsing.html",
    "content": "<!DOCTYPE html>\n<html>\n<head><meta charset=\"utf-8\" />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n<title>Parsing</title><script src=\"https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js\"></script>\n\n\n\n\n<style type=\"text/css\">\n    pre { line-height: 125%; }\ntd.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\nspan.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\ntd.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\nspan.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.highlight .hll { background-color: var(--jp-cell-editor-active-background) }\n.highlight { background: var(--jp-cell-editor-background); color: var(--jp-mirror-editor-variable-color) }\n.highlight .c { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment */\n.highlight .err { color: var(--jp-mirror-editor-error-color) } /* Error */\n.highlight .k { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword */\n.highlight .o { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator */\n.highlight .p { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation */\n.highlight .ch { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Hashbang */\n.highlight .cm { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Multiline */\n.highlight .cp { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Preproc */\n.highlight .cpf { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.PreprocFile */\n.highlight .c1 { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Single */\n.highlight .cs { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Special */\n.highlight .kc { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Constant */\n.highlight .kd { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Declaration */\n.highlight .kn { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Namespace */\n.highlight .kp { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Pseudo */\n.highlight .kr { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Reserved */\n.highlight .kt { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Type */\n.highlight .m { color: var(--jp-mirror-editor-number-color) } /* Literal.Number */\n.highlight .s { color: var(--jp-mirror-editor-string-color) } /* Literal.String */\n.highlight .ow { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator.Word */\n.highlight .pm { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation.Marker */\n.highlight .w { color: var(--jp-mirror-editor-variable-color) } /* Text.Whitespace */\n.highlight .mb { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Bin */\n.highlight .mf { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Float */\n.highlight .mh { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Hex */\n.highlight .mi { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer */\n.highlight .mo { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Oct */\n.highlight .sa { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Affix */\n.highlight .sb { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Backtick */\n.highlight .sc { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Char */\n.highlight .dl { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Delimiter */\n.highlight .sd { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Doc */\n.highlight .s2 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Double */\n.highlight .se { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Escape */\n.highlight .sh { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Heredoc */\n.highlight .si { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Interpol */\n.highlight .sx { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Other */\n.highlight .sr { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Regex */\n.highlight .s1 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Single */\n.highlight .ss { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Symbol */\n.highlight .il { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer.Long */\n  </style>\n\n\n\n<style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\n * Mozilla scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n[data-jp-theme-scrollbars='true'] {\n  scrollbar-color: rgb(var(--jp-scrollbar-thumb-color))\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar. These selectors\n * will match lower in the tree, and so will override the above */\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n  scrollbar-width: thin;\n}\n\n/*\n * Webkit scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-corner {\n  background: var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-thumb {\n  background: rgb(var(--jp-scrollbar-thumb-color));\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-right: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-bottom: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar */\n\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-corner,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-corner {\n  background-color: transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-thumb,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid transparent;\n  border-right: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid transparent;\n  border-bottom: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny::-webkit-scrollbar,\n.jp-scrollbar-tiny::-webkit-scrollbar-corner {\n  background-color: transparent;\n  height: 4px;\n  width: 4px;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:horizontal {\n  border-left: 0px solid transparent;\n  border-right: 0px solid transparent;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:vertical {\n  border-top: 0px solid transparent;\n  border-bottom: 0px solid transparent;\n}\n\n/*\n * Phosphor\n */\n\n.lm-ScrollBar[data-orientation='horizontal'] {\n  min-height: 16px;\n  max-height: 16px;\n  min-width: 45px;\n  border-top: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] {\n  min-width: 16px;\n  max-width: 16px;\n  min-height: 45px;\n  border-left: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar-button {\n  background-color: #f0f0f0;\n  background-position: center center;\n  min-height: 15px;\n  max-height: 15px;\n  min-width: 15px;\n  max-width: 15px;\n}\n\n.lm-ScrollBar-button:hover {\n  background-color: #dadada;\n}\n\n.lm-ScrollBar-button.lm-mod-active {\n  background-color: #cdcdcd;\n}\n\n.lm-ScrollBar-track {\n  background: #f0f0f0;\n}\n\n.lm-ScrollBar-thumb {\n  background: #cdcdcd;\n}\n\n.lm-ScrollBar-thumb:hover {\n  background: #bababa;\n}\n\n.lm-ScrollBar-thumb.lm-mod-active {\n  background: #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal'] .lm-ScrollBar-thumb {\n  height: 100%;\n  min-width: 15px;\n  border-left: 1px solid #a0a0a0;\n  border-right: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] .lm-ScrollBar-thumb {\n  width: 100%;\n  min-height: 15px;\n  border-top: 1px solid #a0a0a0;\n  border-bottom: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-left);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-right);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-up);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-down);\n  background-size: 17px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Widget, /* </DEPRECATED> */\n.lm-Widget {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  cursor: default;\n}\n\n\n/* <DEPRECATED> */ .p-Widget.p-mod-hidden, /* </DEPRECATED> */\n.lm-Widget.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-CommandPalette, /* </DEPRECATED> */\n.lm-CommandPalette {\n  display: flex;\n  flex-direction: column;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-search, /* </DEPRECATED> */\n.lm-CommandPalette-search {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-content, /* </DEPRECATED> */\n.lm-CommandPalette-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  min-height: 0;\n  overflow: auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-header, /* </DEPRECATED> */\n.lm-CommandPalette-header {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-item, /* </DEPRECATED> */\n.lm-CommandPalette-item {\n  display: flex;\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemIcon, /* </DEPRECATED> */\n.lm-CommandPalette-itemIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemContent, /* </DEPRECATED> */\n.lm-CommandPalette-itemContent {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemShortcut, /* </DEPRECATED> */\n.lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemLabel, /* </DEPRECATED> */\n.lm-CommandPalette-itemLabel {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.lm-close-icon {\n\tborder:1px solid transparent;\n  background-color: transparent;\n  position: absolute;\n\tz-index:1;\n\tright:3%;\n\ttop: 0;\n\tbottom: 0;\n\tmargin: auto;\n\tpadding: 7px 0;\n\tdisplay: none;\n\tvertical-align: middle;\n  outline: 0;\n  cursor: pointer;\n}\n.lm-close-icon:after {\n\tcontent: \"X\";\n\tdisplay: block;\n\twidth: 15px;\n\theight: 15px;\n\ttext-align: center;\n\tcolor:#000;\n\tfont-weight: normal;\n\tfont-size: 12px;\n\tcursor: pointer;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-DockPanel, /* </DEPRECATED> */\n.lm-DockPanel {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-widget, /* </DEPRECATED> */\n.lm-DockPanel-widget {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-tabBar, /* </DEPRECATED> */\n.lm-DockPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle, /* </DEPRECATED> */\n.lm-DockPanel-handle {\n  z-index: 2;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle:after, /* </DEPRECATED> */\n.lm-DockPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal'] {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical'] {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal']:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical']:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay, /* </DEPRECATED> */\n.lm-DockPanel-overlay {\n  z-index: 3;\n  box-sizing: border-box;\n  pointer-events: none;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-overlay.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Menu, /* </DEPRECATED> */\n.lm-Menu {\n  z-index: 10000;\n  position: absolute;\n  white-space: nowrap;\n  overflow-x: hidden;\n  overflow-y: auto;\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-content, /* </DEPRECATED> */\n.lm-Menu-content {\n  margin: 0;\n  padding: 0;\n  display: table;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-item, /* </DEPRECATED> */\n.lm-Menu-item {\n  display: table-row;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-item.p-mod-hidden,\n.p-Menu-item.p-mod-collapsed,\n/* </DEPRECATED> */\n.lm-Menu-item.lm-mod-hidden,\n.lm-Menu-item.lm-mod-collapsed {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-itemIcon,\n.p-Menu-itemSubmenuIcon,\n/* </DEPRECATED> */\n.lm-Menu-itemIcon,\n.lm-Menu-itemSubmenuIcon {\n  display: table-cell;\n  text-align: center;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemLabel, /* </DEPRECATED> */\n.lm-Menu-itemLabel {\n  display: table-cell;\n  text-align: left;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemShortcut, /* </DEPRECATED> */\n.lm-Menu-itemShortcut {\n  display: table-cell;\n  text-align: right;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-MenuBar, /* </DEPRECATED> */\n.lm-MenuBar {\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-MenuBar-content, /* </DEPRECATED> */\n.lm-MenuBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex-direction: row;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p--MenuBar-item, /* </DEPRECATED> */\n.lm-MenuBar-item {\n  box-sizing: border-box;\n}\n\n\n/* <DEPRECATED> */\n.p-MenuBar-itemIcon,\n.p-MenuBar-itemLabel,\n/* </DEPRECATED> */\n.lm-MenuBar-itemIcon,\n.lm-MenuBar-itemLabel {\n  display: inline-block;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-ScrollBar, /* </DEPRECATED> */\n.lm-ScrollBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='horizontal'] {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='vertical'] {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-button, /* </DEPRECATED> */\n.lm-ScrollBar-button {\n  box-sizing: border-box;\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-track, /* </DEPRECATED> */\n.lm-ScrollBar-track {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  flex: 1 1 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-thumb, /* </DEPRECATED> */\n.lm-ScrollBar-thumb {\n  box-sizing: border-box;\n  position: absolute;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-SplitPanel-child, /* </DEPRECATED> */\n.lm-SplitPanel-child {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle, /* </DEPRECATED> */\n.lm-SplitPanel-handle {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-SplitPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle:after, /* </DEPRECATED> */\n.lm-SplitPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabBar, /* </DEPRECATED> */\n.lm-TabBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='horizontal'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] {\n  flex-direction: row;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='vertical'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] {\n  flex-direction: column;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-content, /* </DEPRECATED> */\n.lm-TabBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex: 1 1 auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='horizontal'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] > .lm-TabBar-content {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='vertical'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] > .lm-TabBar-content {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar-tab {\n  display: flex;\n  flex-direction: row;\n  box-sizing: border-box;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar-tabIcon,\n.p-TabBar-tabCloseIcon,\n/* </DEPRECATED> */\n.lm-TabBar-tabIcon,\n.lm-TabBar-tabCloseIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tabLabel, /* </DEPRECATED> */\n.lm-TabBar-tabLabel {\n  flex: 1 1 auto;\n  overflow: hidden;\n  white-space: nowrap;\n}\n\n\n.lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab.p-mod-hidden, /* </DEPRECATED> */\n.lm-TabBar-tab.lm-mod-hidden {\n  display: none !important;\n}\n\n\n.lm-TabBar-addButton.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar.p-mod-dragging .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab {\n  position: relative;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='horizontal'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='horizontal'] .lm-TabBar-tab {\n  left: 0;\n  transition: left 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='vertical'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='vertical'] .lm-TabBar-tab {\n  top: 0;\n  transition: top 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging .p-TabBar-tab.p-mod-dragging,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab.lm-mod-dragging {\n  transition: none;\n}\n\n.lm-TabBar-tabLabel .lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n  background: inherit;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabPanel-tabBar, /* </DEPRECATED> */\n.lm-TabPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-TabPanel-stackedPanel, /* </DEPRECATED> */\n.lm-TabPanel-stackedPanel {\n  z-index: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n@charset \"UTF-8\";\nhtml{\n  -webkit-box-sizing:border-box;\n          box-sizing:border-box; }\n\n*,\n*::before,\n*::after{\n  -webkit-box-sizing:inherit;\n          box-sizing:inherit; }\n\nbody{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none;\n  color:#182026;\n  font-family:-apple-system, \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Open Sans\", \"Helvetica Neue\", \"Icons16\", sans-serif; }\n\np{\n  margin-bottom:10px;\n  margin-top:0; }\n\nsmall{\n  font-size:12px; }\n\nstrong{\n  font-weight:600; }\n\n::-moz-selection{\n  background:rgba(125, 188, 255, 0.6); }\n\n::selection{\n  background:rgba(125, 188, 255, 0.6); }\n.bp3-heading{\n  color:#182026;\n  font-weight:600;\n  margin:0 0 10px;\n  padding:0; }\n  .bp3-dark .bp3-heading{\n    color:#f5f8fa; }\n\nh1.bp3-heading, .bp3-running-text h1{\n  font-size:36px;\n  line-height:40px; }\n\nh2.bp3-heading, .bp3-running-text h2{\n  font-size:28px;\n  line-height:32px; }\n\nh3.bp3-heading, .bp3-running-text h3{\n  font-size:22px;\n  line-height:25px; }\n\nh4.bp3-heading, .bp3-running-text h4{\n  font-size:18px;\n  line-height:21px; }\n\nh5.bp3-heading, .bp3-running-text h5{\n  font-size:16px;\n  line-height:19px; }\n\nh6.bp3-heading, .bp3-running-text h6{\n  font-size:14px;\n  line-height:16px; }\n.bp3-ui-text{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none; }\n\n.bp3-monospace-text{\n  font-family:monospace;\n  text-transform:none; }\n\n.bp3-text-muted{\n  color:#5c7080; }\n  .bp3-dark .bp3-text-muted{\n    color:#a7b6c2; }\n\n.bp3-text-disabled{\n  color:rgba(92, 112, 128, 0.6); }\n  .bp3-dark .bp3-text-disabled{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-text-overflow-ellipsis{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal; }\n.bp3-running-text{\n  font-size:14px;\n  line-height:1.5; }\n  .bp3-running-text h1{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h1{\n      color:#f5f8fa; }\n  .bp3-running-text h2{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h2{\n      color:#f5f8fa; }\n  .bp3-running-text h3{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h3{\n      color:#f5f8fa; }\n  .bp3-running-text h4{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h4{\n      color:#f5f8fa; }\n  .bp3-running-text h5{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h5{\n      color:#f5f8fa; }\n  .bp3-running-text h6{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h6{\n      color:#f5f8fa; }\n  .bp3-running-text hr{\n    border:none;\n    border-bottom:1px solid rgba(16, 22, 26, 0.15);\n    margin:20px 0; }\n    .bp3-dark .bp3-running-text hr{\n      border-color:rgba(255, 255, 255, 0.15); }\n  .bp3-running-text p{\n    margin:0 0 10px;\n    padding:0; }\n\n.bp3-text-large{\n  font-size:16px; }\n\n.bp3-text-small{\n  font-size:12px; }\na{\n  color:#106ba3;\n  text-decoration:none; }\n  a:hover{\n    color:#106ba3;\n    cursor:pointer;\n    text-decoration:underline; }\n  a .bp3-icon, a .bp3-icon-standard, a .bp3-icon-large{\n    color:inherit; }\n  a code,\n  .bp3-dark a code{\n    color:inherit; }\n  .bp3-dark a,\n  .bp3-dark a:hover{\n    color:#48aff0; }\n    .bp3-dark a .bp3-icon, .bp3-dark a .bp3-icon-standard, .bp3-dark a .bp3-icon-large,\n    .bp3-dark a:hover .bp3-icon,\n    .bp3-dark a:hover .bp3-icon-standard,\n    .bp3-dark a:hover .bp3-icon-large{\n      color:inherit; }\n.bp3-running-text code, .bp3-code{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  font-size:smaller;\n  padding:2px 5px; }\n  .bp3-dark .bp3-running-text code, .bp3-running-text .bp3-dark code, .bp3-dark .bp3-code{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n  .bp3-running-text a > code, a > .bp3-code{\n    color:#137cbd; }\n    .bp3-dark .bp3-running-text a > code, .bp3-running-text .bp3-dark a > code, .bp3-dark a > .bp3-code{\n      color:inherit; }\n\n.bp3-running-text pre, .bp3-code-block{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n  color:#182026;\n  display:block;\n  font-size:13px;\n  line-height:1.4;\n  margin:10px 0;\n  padding:13px 15px 12px;\n  word-break:break-all;\n  word-wrap:break-word; }\n  .bp3-dark .bp3-running-text pre, .bp3-running-text .bp3-dark pre, .bp3-dark .bp3-code-block{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n  .bp3-running-text pre > code, .bp3-code-block > code{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit;\n    font-size:inherit;\n    padding:0; }\n\n.bp3-running-text kbd, .bp3-key{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-family:inherit;\n  font-size:12px;\n  height:24px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  line-height:24px;\n  min-width:24px;\n  padding:3px 6px;\n  vertical-align:middle; }\n  .bp3-running-text kbd .bp3-icon, .bp3-key .bp3-icon, .bp3-running-text kbd .bp3-icon-standard, .bp3-key .bp3-icon-standard, .bp3-running-text kbd .bp3-icon-large, .bp3-key .bp3-icon-large{\n    margin-right:5px; }\n  .bp3-dark .bp3-running-text kbd, .bp3-running-text .bp3-dark kbd, .bp3-dark .bp3-key{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n.bp3-running-text blockquote, .bp3-blockquote{\n  border-left:solid 4px rgba(167, 182, 194, 0.5);\n  margin:0 0 10px;\n  padding:0 20px; }\n  .bp3-dark .bp3-running-text blockquote, .bp3-running-text .bp3-dark blockquote, .bp3-dark .bp3-blockquote{\n    border-color:rgba(115, 134, 148, 0.5); }\n.bp3-running-text ul,\n.bp3-running-text ol, .bp3-list{\n  margin:10px 0;\n  padding-left:30px; }\n  .bp3-running-text ul li:not(:last-child), .bp3-running-text ol li:not(:last-child), .bp3-list li:not(:last-child){\n    margin-bottom:5px; }\n  .bp3-running-text ul ol, .bp3-running-text ol ol, .bp3-list ol,\n  .bp3-running-text ul ul,\n  .bp3-running-text ol ul,\n  .bp3-list ul{\n    margin-top:5px; }\n\n.bp3-list-unstyled{\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-list-unstyled li{\n    padding:0; }\n.bp3-rtl{\n  text-align:right; }\n\n.bp3-dark{\n  color:#f5f8fa; }\n\n:focus{\n  outline:rgba(19, 124, 189, 0.6) auto 2px;\n  outline-offset:2px;\n  -moz-outline-radius:6px; }\n\n.bp3-focus-disabled :focus{\n  outline:none !important; }\n  .bp3-focus-disabled :focus ~ .bp3-control-indicator{\n    outline:none !important; }\n\n.bp3-alert{\n  max-width:400px;\n  padding:20px; }\n\n.bp3-alert-body{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-alert-body .bp3-icon{\n    font-size:40px;\n    margin-right:20px;\n    margin-top:0; }\n\n.bp3-alert-contents{\n  word-break:break-word; }\n\n.bp3-alert-footer{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:reverse;\n      -ms-flex-direction:row-reverse;\n          flex-direction:row-reverse;\n  margin-top:10px; }\n  .bp3-alert-footer .bp3-button{\n    margin-left:10px; }\n.bp3-breadcrumbs{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  cursor:default;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:wrap;\n      flex-wrap:wrap;\n  height:30px;\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-breadcrumbs > li{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n    .bp3-breadcrumbs > li::after{\n      background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z' fill='%235C7080'/%3e%3c/svg%3e\");\n      content:\"\";\n      display:block;\n      height:16px;\n      margin:0 5px;\n      width:16px; }\n    .bp3-breadcrumbs > li:last-of-type::after{\n      display:none; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumb-current,\n.bp3-breadcrumbs-collapsed{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-size:16px; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumbs-collapsed{\n  color:#5c7080; }\n\n.bp3-breadcrumb:hover{\n  text-decoration:none; }\n\n.bp3-breadcrumb.bp3-disabled{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-breadcrumb .bp3-icon{\n  margin-right:5px; }\n\n.bp3-breadcrumb-current{\n  color:inherit;\n  font-weight:600; }\n  .bp3-breadcrumb-current .bp3-input{\n    font-size:inherit;\n    font-weight:inherit;\n    vertical-align:baseline; }\n\n.bp3-breadcrumbs-collapsed{\n  background:#ced9e0;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  margin-right:2px;\n  padding:1px 5px;\n  vertical-align:text-bottom; }\n  .bp3-breadcrumbs-collapsed::before{\n    background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cg fill='%235C7080'%3e%3ccircle cx='2' cy='8.03' r='2'/%3e%3ccircle cx='14' cy='8.03' r='2'/%3e%3ccircle cx='8' cy='8.03' r='2'/%3e%3c/g%3e%3c/svg%3e\") center no-repeat;\n    content:\"\";\n    display:block;\n    height:16px;\n    width:16px; }\n  .bp3-breadcrumbs-collapsed:hover{\n    background:#bfccd6;\n    color:#182026;\n    text-decoration:none; }\n\n.bp3-dark .bp3-breadcrumb,\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumbs > li::after{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumb.bp3-disabled{\n  color:rgba(167, 182, 194, 0.6); }\n\n.bp3-dark .bp3-breadcrumb-current{\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-breadcrumbs-collapsed:hover{\n    background:rgba(16, 22, 26, 0.6);\n    color:#f5f8fa; }\n.bp3-button{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  min-height:30px;\n  min-width:30px; }\n  .bp3-button > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-button > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-button::before,\n  .bp3-button > *{\n    margin-right:7px; }\n  .bp3-button:empty::before,\n  .bp3-button > :last-child{\n    margin-right:0; }\n  .bp3-button:empty{\n    padding:0 !important; }\n  .bp3-button:disabled, .bp3-button.bp3-disabled{\n    cursor:not-allowed; }\n  .bp3-button.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button.bp3-align-right,\n  .bp3-align-right .bp3-button{\n    text-align:right; }\n  .bp3-button.bp3-align-left,\n  .bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026; }\n    .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active:hover, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-button.bp3-intent-primary{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover, .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover{\n      background-color:#106ba3;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      background-color:#0e5a8a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:disabled, .bp3-button.bp3-intent-primary.bp3-disabled{\n      background-color:rgba(19, 124, 189, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-success{\n    background-color:#0f9960;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover, .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover{\n      background-color:#0d8050;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      background-color:#0a6640;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:disabled, .bp3-button.bp3-intent-success.bp3-disabled{\n      background-color:rgba(15, 153, 96, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-warning{\n    background-color:#d9822b;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover, .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover{\n      background-color:#bf7326;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      background-color:#a66321;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:disabled, .bp3-button.bp3-intent-warning.bp3-disabled{\n      background-color:rgba(217, 130, 43, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-danger{\n    background-color:#db3737;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover, .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover{\n      background-color:#c23030;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      background-color:#a82a2a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:disabled, .bp3-button.bp3-intent-danger.bp3-disabled{\n      background-color:rgba(219, 55, 55, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n    stroke:#ffffff; }\n  .bp3-button.bp3-large,\n  .bp3-large .bp3-button{\n    min-height:40px;\n    min-width:40px;\n    font-size:16px;\n    padding:5px 15px; }\n    .bp3-button.bp3-large::before,\n    .bp3-button.bp3-large > *,\n    .bp3-large .bp3-button::before,\n    .bp3-large .bp3-button > *{\n      margin-right:10px; }\n    .bp3-button.bp3-large:empty::before,\n    .bp3-button.bp3-large > :last-child,\n    .bp3-large .bp3-button:empty::before,\n    .bp3-large .bp3-button > :last-child{\n      margin-right:0; }\n  .bp3-button.bp3-small,\n  .bp3-small .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-button.bp3-loading{\n    position:relative; }\n    .bp3-button.bp3-loading[class*=\"bp3-icon-\"]::before{\n      visibility:hidden; }\n    .bp3-button.bp3-loading .bp3-button-spinner{\n      margin:0;\n      position:absolute; }\n    .bp3-button.bp3-loading > :not(.bp3-button-spinner){\n      visibility:hidden; }\n  .bp3-button[class*=\"bp3-icon-\"]::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    color:#5c7080; }\n  .bp3-button .bp3-icon, .bp3-button .bp3-icon-standard, .bp3-button .bp3-icon-large{\n    color:#5c7080; }\n    .bp3-button .bp3-icon.bp3-align-right, .bp3-button .bp3-icon-standard.bp3-align-right, .bp3-button .bp3-icon-large.bp3-align-right{\n      margin-left:7px; }\n  .bp3-button .bp3-icon:first-child:last-child,\n  .bp3-button .bp3-spinner + .bp3-icon:last-child{\n    margin:0 -7px; }\n  .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"])[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n      color:#a7b6c2; }\n  .bp3-dark .bp3-button[class*=\"bp3-intent-\"]{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:hover{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.3); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n      stroke:#8a9ba8; }\n  .bp3-button:disabled::before,\n  .bp3-button:disabled .bp3-icon, .bp3-button:disabled .bp3-icon-standard, .bp3-button:disabled .bp3-icon-large, .bp3-button.bp3-disabled::before,\n  .bp3-button.bp3-disabled .bp3-icon, .bp3-button.bp3-disabled .bp3-icon-standard, .bp3-button.bp3-disabled .bp3-icon-large, .bp3-button[class*=\"bp3-intent-\"]::before,\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-icon, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-standard, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-large{\n    color:inherit !important; }\n  .bp3-button.bp3-minimal{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button.bp3-minimal:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-minimal:active, .bp3-button.bp3-minimal.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-minimal:disabled, .bp3-button.bp3-minimal:disabled:hover, .bp3-button.bp3-minimal.bp3-disabled, .bp3-button.bp3-minimal.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-minimal{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-minimal:hover, .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-minimal:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-minimal:disabled, .bp3-dark .bp3-button.bp3-minimal:disabled:hover, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover, .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover, .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover, .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover, .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button.bp3-outlined{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    border:1px solid rgba(24, 32, 38, 0.2);\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box; }\n    .bp3-button.bp3-outlined:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-outlined:active, .bp3-button.bp3-outlined.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-outlined:hover, .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-outlined:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover, .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover, .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover, .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover, .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      border-color:rgba(92, 112, 128, 0.1); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      border-color:rgba(255, 255, 255, 0.4); }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        border-color:rgba(255, 255, 255, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      border-color:rgba(16, 107, 163, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        border-color:rgba(16, 107, 163, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        border-color:rgba(72, 175, 240, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          border-color:rgba(72, 175, 240, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      border-color:rgba(13, 128, 80, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        border-color:rgba(13, 128, 80, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        border-color:rgba(61, 204, 145, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          border-color:rgba(61, 204, 145, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      border-color:rgba(191, 115, 38, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        border-color:rgba(191, 115, 38, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        border-color:rgba(255, 179, 102, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          border-color:rgba(255, 179, 102, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      border-color:rgba(194, 48, 48, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        border-color:rgba(194, 48, 48, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        border-color:rgba(255, 115, 115, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          border-color:rgba(255, 115, 115, 0.2); }\n\na.bp3-button{\n  text-align:center;\n  text-decoration:none;\n  -webkit-transition:none;\n  transition:none; }\n  a.bp3-button, a.bp3-button:hover, a.bp3-button:active{\n    color:#182026; }\n  a.bp3-button.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6); }\n\n.bp3-button-text{\n  -webkit-box-flex:0;\n      -ms-flex:0 1 auto;\n          flex:0 1 auto; }\n\n.bp3-button.bp3-align-left .bp3-button-text, .bp3-button.bp3-align-right .bp3-button-text,\n.bp3-button-group.bp3-align-left .bp3-button-text,\n.bp3-button-group.bp3-align-right .bp3-button-text{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto; }\n.bp3-button-group{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex; }\n  .bp3-button-group .bp3-button{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    position:relative;\n    z-index:4; }\n    .bp3-button-group .bp3-button:focus{\n      z-index:5; }\n    .bp3-button-group .bp3-button:hover{\n      z-index:6; }\n    .bp3-button-group .bp3-button:active, .bp3-button-group .bp3-button.bp3-active{\n      z-index:7; }\n    .bp3-button-group .bp3-button:disabled, .bp3-button-group .bp3-button.bp3-disabled{\n      z-index:3; }\n    .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]{\n      z-index:9; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:focus{\n        z-index:10; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:hover{\n        z-index:11; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n        z-index:12; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n        z-index:8; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:first-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:first-child){\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    border-bottom-right-radius:0;\n    border-top-right-radius:0;\n    margin-right:-1px; }\n  .bp3-button-group.bp3-minimal .bp3-button{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button-group.bp3-minimal .bp3-button{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button-group .bp3-popover-wrapper,\n  .bp3-button-group .bp3-popover-target{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button-group .bp3-button.bp3-fill,\n  .bp3-button-group.bp3-fill .bp3-button:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-vertical{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column;\n    vertical-align:top; }\n    .bp3-button-group.bp3-vertical.bp3-fill{\n      height:100%;\n      width:unset; }\n    .bp3-button-group.bp3-vertical .bp3-button{\n      margin-right:0 !important;\n      width:100%; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:first-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:first-child{\n      border-radius:3px 3px 0 0; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:last-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:last-child{\n      border-radius:0 0 3px 3px; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:not(:last-child){\n      margin-bottom:-1px; }\n  .bp3-button-group.bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    margin-right:1px; }\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-button:not(:last-child){\n    margin-bottom:1px; }\n.bp3-callout{\n  font-size:14px;\n  line-height:1.5;\n  background-color:rgba(138, 155, 168, 0.15);\n  border-radius:3px;\n  padding:10px 12px 9px;\n  position:relative;\n  width:100%; }\n  .bp3-callout[class*=\"bp3-icon-\"]{\n    padding-left:40px; }\n    .bp3-callout[class*=\"bp3-icon-\"]::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout.bp3-callout-icon{\n    padding-left:40px; }\n    .bp3-callout.bp3-callout-icon > .bp3-icon:first-child{\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout .bp3-heading{\n    line-height:20px;\n    margin-bottom:5px;\n    margin-top:0; }\n    .bp3-callout .bp3-heading:last-child{\n      margin-bottom:0; }\n  .bp3-dark .bp3-callout{\n    background-color:rgba(138, 155, 168, 0.2); }\n    .bp3-dark .bp3-callout[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n  .bp3-callout.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15); }\n    .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-primary .bp3-heading{\n      color:#106ba3; }\n    .bp3-dark .bp3-callout.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-primary .bp3-heading{\n        color:#48aff0; }\n  .bp3-callout.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15); }\n    .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-success .bp3-heading{\n      color:#0d8050; }\n    .bp3-dark .bp3-callout.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-success .bp3-heading{\n        color:#3dcc91; }\n  .bp3-callout.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15); }\n    .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-warning .bp3-heading{\n      color:#bf7326; }\n    .bp3-dark .bp3-callout.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-warning .bp3-heading{\n        color:#ffb366; }\n  .bp3-callout.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15); }\n    .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-danger .bp3-heading{\n      color:#c23030; }\n    .bp3-dark .bp3-callout.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-danger .bp3-heading{\n        color:#ff7373; }\n  .bp3-running-text .bp3-callout{\n    margin:20px 0; }\n.bp3-card{\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n  padding:20px;\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-card.bp3-dark,\n  .bp3-dark .bp3-card{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-0{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n  .bp3-elevation-0.bp3-dark,\n  .bp3-dark .bp3-elevation-0{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-1{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-1.bp3-dark,\n  .bp3-dark .bp3-elevation-1{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-2{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-2.bp3-dark,\n  .bp3-dark .bp3-elevation-2{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-3{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-3.bp3-dark,\n  .bp3-dark .bp3-elevation-3{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-4{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-4.bp3-dark,\n  .bp3-dark .bp3-elevation-4{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:hover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  cursor:pointer; }\n  .bp3-card.bp3-interactive:hover.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:hover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:active{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  opacity:0.9;\n  -webkit-transition-duration:0;\n          transition-duration:0; }\n  .bp3-card.bp3-interactive:active.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:active{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-collapse{\n  height:0;\n  overflow-y:hidden;\n  -webkit-transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-collapse .bp3-collapse-body{\n    -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-collapse .bp3-collapse-body[aria-hidden=\"true\"]{\n      display:none; }\n\n.bp3-context-menu .bp3-popover-target{\n  display:block; }\n\n.bp3-context-menu-popover-target{\n  position:fixed; }\n\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-dialog-container{\n  opacity:1;\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  min-height:100%;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  width:100%; }\n  .bp3-dialog-container.bp3-overlay-enter > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5); }\n  .bp3-dialog-container.bp3-overlay-enter-active > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear-active > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-dialog-container.bp3-overlay-exit > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-dialog-container.bp3-overlay-exit-active > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n\n.bp3-dialog{\n  background:#ebf1f5;\n  border-radius:6px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:30px 0;\n  padding-bottom:20px;\n  pointer-events:all;\n  -webkit-user-select:text;\n     -moz-user-select:text;\n      -ms-user-select:text;\n          user-select:text;\n  width:500px; }\n  .bp3-dialog:focus{\n    outline:0; }\n  .bp3-dialog.bp3-dark,\n  .bp3-dark .bp3-dialog{\n    background:#293742;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-dialog-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:6px 6px 0 0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding-left:20px;\n  padding-right:5px;\n  z-index:30; }\n  .bp3-dialog-header .bp3-icon-large,\n  .bp3-dialog-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-dialog-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-dialog-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-dialog-header{\n    background:#30404d;\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-dialog-header .bp3-icon-large,\n    .bp3-dark .bp3-dialog-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-dialog-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  margin:20px; }\n\n.bp3-dialog-footer{\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  margin:0 20px; }\n\n.bp3-dialog-footer-actions{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:end;\n      -ms-flex-pack:end;\n          justify-content:flex-end; }\n  .bp3-dialog-footer-actions .bp3-button{\n    margin-left:10px; }\n.bp3-multistep-dialog-panels{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n\n.bp3-multistep-dialog-left-panel{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column; }\n  .bp3-dark .bp3-multistep-dialog-left-panel{\n    background:#202b33; }\n\n.bp3-multistep-dialog-right-panel{\n  background-color:#f5f8fa;\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  border-radius:0 0 6px 0;\n  -webkit-box-flex:3;\n      -ms-flex:3;\n          flex:3;\n  min-width:0; }\n  .bp3-dark .bp3-multistep-dialog-right-panel{\n    background-color:#293742;\n    border-left:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-multistep-dialog-footer{\n  background-color:#ffffff;\n  border-radius:0 0 6px 0;\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  padding:10px; }\n  .bp3-dark .bp3-multistep-dialog-footer{\n    background:#30404d;\n    border-top:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-dialog-step-container{\n  background-color:#f5f8fa;\n  border-bottom:1px solid rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-dialog-step-container{\n    background:#293742;\n    border-bottom:1px solid rgba(16, 22, 26, 0.4); }\n  .bp3-dialog-step-container.bp3-dialog-step-viewed{\n    background-color:#ffffff; }\n    .bp3-dark .bp3-dialog-step-container.bp3-dialog-step-viewed{\n      background:#30404d; }\n\n.bp3-dialog-step{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#f5f8fa;\n  border-radius:6px;\n  cursor:not-allowed;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:4px;\n  padding:6px 14px; }\n  .bp3-dark .bp3-dialog-step{\n    background:#293742; }\n  .bp3-dialog-step-viewed .bp3-dialog-step{\n    background-color:#ffffff;\n    cursor:pointer; }\n    .bp3-dark .bp3-dialog-step-viewed .bp3-dialog-step{\n      background:#30404d; }\n  .bp3-dialog-step:hover{\n    background-color:#f5f8fa; }\n    .bp3-dark .bp3-dialog-step:hover{\n      background:#293742; }\n\n.bp3-dialog-step-icon{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:rgba(92, 112, 128, 0.6);\n  border-radius:50%;\n  color:#ffffff;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:25px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  width:25px; }\n  .bp3-dark .bp3-dialog-step-icon{\n    background-color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#2b95d6; }\n  .bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#8a9ba8; }\n\n.bp3-dialog-step-title{\n  color:rgba(92, 112, 128, 0.6);\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  padding-left:10px; }\n  .bp3-dark .bp3-dialog-step-title{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-title{\n    color:#2b95d6; }\n  .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n    color:#182026; }\n    .bp3-dark .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n      color:#f5f8fa; }\n.bp3-drawer{\n  background:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0;\n  padding:0; }\n  .bp3-drawer:focus{\n    outline:0; }\n  .bp3-drawer.bp3-position-top{\n    height:50%;\n    left:0;\n    right:0;\n    top:0; }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter, .bp3-drawer.bp3-position-top.bp3-overlay-appear{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter-active, .bp3-drawer.bp3-position-top.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit-active{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-bottom{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter-active, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-left{\n    bottom:0;\n    left:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter, .bp3-drawer.bp3-position-left.bp3-overlay-appear{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter-active, .bp3-drawer.bp3-position-left.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit-active{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-right{\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter, .bp3-drawer.bp3-position-right.bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter-active, .bp3-drawer.bp3-position-right.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right):not(.bp3-vertical){\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right).bp3-vertical{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-dark,\n  .bp3-dark .bp3-drawer{\n    background:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-drawer-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border-radius:0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding:5px;\n  padding-left:20px;\n  position:relative; }\n  .bp3-drawer-header .bp3-icon-large,\n  .bp3-drawer-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-drawer-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-drawer-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-drawer-header{\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-drawer-header .bp3-icon-large,\n    .bp3-dark .bp3-drawer-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-drawer-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  overflow:auto; }\n\n.bp3-drawer-footer{\n  -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  padding:10px 20px;\n  position:relative; }\n  .bp3-dark .bp3-drawer-footer{\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4); }\n.bp3-editable-text{\n  cursor:text;\n  display:inline-block;\n  max-width:100%;\n  position:relative;\n  vertical-align:top;\n  white-space:nowrap; }\n  .bp3-editable-text::before{\n    bottom:-3px;\n    left:-3px;\n    position:absolute;\n    right:-3px;\n    top:-3px;\n    border-radius:3px;\n    content:\"\";\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#137cbd; }\n  .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4); }\n  .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#0f9960; }\n  .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4); }\n  .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#d9822b; }\n  .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4); }\n  .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#db3737; }\n  .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4); }\n  .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-dark .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#48aff0; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4);\n            box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#3dcc91; }\n  .bp3-dark .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4);\n            box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#ffb366; }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#ff7373; }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-editable-text-input,\n.bp3-editable-text-content{\n  color:inherit;\n  display:inherit;\n  font:inherit;\n  letter-spacing:inherit;\n  max-width:inherit;\n  min-width:inherit;\n  position:relative;\n  resize:none;\n  text-transform:inherit;\n  vertical-align:top; }\n\n.bp3-editable-text-input{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0;\n  white-space:pre-wrap;\n  width:100%; }\n  .bp3-editable-text-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:focus{\n    outline:none; }\n  .bp3-editable-text-input::-ms-clear{\n    display:none; }\n\n.bp3-editable-text-content{\n  overflow:hidden;\n  padding-right:2px;\n  text-overflow:ellipsis;\n  white-space:pre; }\n  .bp3-editable-text-editing > .bp3-editable-text-content{\n    left:0;\n    position:absolute;\n    visibility:hidden; }\n  .bp3-editable-text-placeholder > .bp3-editable-text-content{\n    color:rgba(92, 112, 128, 0.6); }\n    .bp3-dark .bp3-editable-text-placeholder > .bp3-editable-text-content{\n      color:rgba(167, 182, 194, 0.6); }\n\n.bp3-editable-text.bp3-multiline{\n  display:block; }\n  .bp3-editable-text.bp3-multiline .bp3-editable-text-content{\n    overflow:auto;\n    white-space:pre-wrap;\n    word-wrap:break-word; }\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-control-group{\n  -webkit-transform:translateZ(0);\n          transform:translateZ(0);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:stretch;\n      -ms-flex-align:stretch;\n          align-items:stretch; }\n  .bp3-control-group > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select,\n  .bp3-control-group .bp3-input,\n  .bp3-control-group .bp3-select{\n    position:relative; }\n  .bp3-control-group .bp3-input{\n    border-radius:inherit;\n    z-index:2; }\n    .bp3-control-group .bp3-input:focus{\n      border-radius:3px;\n      z-index:14; }\n    .bp3-control-group .bp3-input[class*=\"bp3-intent\"]{\n      z-index:13; }\n      .bp3-control-group .bp3-input[class*=\"bp3-intent\"]:focus{\n        z-index:15; }\n    .bp3-control-group .bp3-input[readonly], .bp3-control-group .bp3-input:disabled, .bp3-control-group .bp3-input.bp3-disabled{\n      z-index:1; }\n  .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input{\n    z-index:13; }\n    .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input:focus{\n      z-index:15; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select select,\n  .bp3-control-group .bp3-select select{\n    -webkit-transform:translateZ(0);\n            transform:translateZ(0);\n    border-radius:inherit;\n    z-index:4; }\n    .bp3-control-group .bp3-button:focus,\n    .bp3-control-group .bp3-html-select select:focus,\n    .bp3-control-group .bp3-select select:focus{\n      z-index:5; }\n    .bp3-control-group .bp3-button:hover,\n    .bp3-control-group .bp3-html-select select:hover,\n    .bp3-control-group .bp3-select select:hover{\n      z-index:6; }\n    .bp3-control-group .bp3-button:active,\n    .bp3-control-group .bp3-html-select select:active,\n    .bp3-control-group .bp3-select select:active{\n      z-index:7; }\n    .bp3-control-group .bp3-button[readonly], .bp3-control-group .bp3-button:disabled, .bp3-control-group .bp3-button.bp3-disabled,\n    .bp3-control-group .bp3-html-select select[readonly],\n    .bp3-control-group .bp3-html-select select:disabled,\n    .bp3-control-group .bp3-html-select select.bp3-disabled,\n    .bp3-control-group .bp3-select select[readonly],\n    .bp3-control-group .bp3-select select:disabled,\n    .bp3-control-group .bp3-select select.bp3-disabled{\n      z-index:3; }\n    .bp3-control-group .bp3-button[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]{\n      z-index:9; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:focus{\n        z-index:10; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:hover{\n        z-index:11; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:active{\n        z-index:12; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"][readonly], .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:disabled, .bp3-control-group .bp3-button[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"].bp3-disabled{\n        z-index:8; }\n  .bp3-control-group .bp3-input-group > .bp3-icon,\n  .bp3-control-group .bp3-input-group > .bp3-button,\n  .bp3-control-group .bp3-input-group > .bp3-input-left-container,\n  .bp3-control-group .bp3-input-group > .bp3-input-action{\n    z-index:16; }\n  .bp3-control-group .bp3-select::after,\n  .bp3-control-group .bp3-html-select::after,\n  .bp3-control-group .bp3-select > .bp3-icon,\n  .bp3-control-group .bp3-html-select > .bp3-icon{\n    z-index:17; }\n  .bp3-control-group .bp3-select:focus-within{\n    z-index:5; }\n  .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:-1px; }\n  .bp3-control-group:not(.bp3-vertical) > .bp3-divider:not(:first-child){\n    margin-left:6px; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:0; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > .bp3-button + .bp3-button{\n    margin-left:1px; }\n  .bp3-control-group .bp3-popover-wrapper,\n  .bp3-control-group .bp3-popover-target{\n    border-radius:inherit; }\n  .bp3-control-group > :first-child{\n    border-radius:3px 0 0 3px; }\n  .bp3-control-group > :last-child{\n    border-radius:0 3px 3px 0;\n    margin-right:0; }\n  .bp3-control-group > :only-child{\n    border-radius:3px;\n    margin-right:0; }\n  .bp3-control-group .bp3-input-group .bp3-button{\n    border-radius:3px; }\n  .bp3-control-group .bp3-numeric-input:not(:first-child) .bp3-input-group{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-control-group.bp3-fill{\n    width:100%; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-fill > *:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-vertical{\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-control-group.bp3-vertical > *{\n      margin-top:-1px; }\n    .bp3-control-group.bp3-vertical > :first-child{\n      border-radius:3px 3px 0 0;\n      margin-top:0; }\n    .bp3-control-group.bp3-vertical > :last-child{\n      border-radius:0 0 3px 3px; }\n.bp3-control{\n  cursor:pointer;\n  display:block;\n  margin-bottom:10px;\n  position:relative;\n  text-transform:none; }\n  .bp3-control input:checked ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control input:checked ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control:not(.bp3-align-right){\n    padding-left:26px; }\n    .bp3-control:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-26px; }\n  .bp3-control.bp3-align-right{\n    padding-right:26px; }\n    .bp3-control.bp3-align-right .bp3-control-indicator{\n      margin-right:-26px; }\n  .bp3-control.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-control.bp3-inline{\n    display:inline-block;\n    margin-right:20px; }\n  .bp3-control input{\n    left:0;\n    opacity:0;\n    position:absolute;\n    top:0;\n    z-index:-1; }\n  .bp3-control .bp3-control-indicator{\n    background-clip:padding-box;\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    border:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    cursor:pointer;\n    display:inline-block;\n    font-size:16px;\n    height:1em;\n    margin-right:10px;\n    margin-top:-3px;\n    position:relative;\n    -webkit-user-select:none;\n       -moz-user-select:none;\n        -ms-user-select:none;\n            user-select:none;\n    vertical-align:middle;\n    width:1em; }\n    .bp3-control .bp3-control-indicator::before{\n      content:\"\";\n      display:block;\n      height:1em;\n      width:1em; }\n  .bp3-control:hover .bp3-control-indicator{\n    background-color:#ebf1f5; }\n  .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n    background:#d8e1e8;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    cursor:not-allowed; }\n  .bp3-control input:focus ~ .bp3-control-indicator{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:2px;\n    -moz-outline-radius:6px; }\n  .bp3-control.bp3-align-right .bp3-control-indicator{\n    float:right;\n    margin-left:10px;\n    margin-top:1px; }\n  .bp3-control.bp3-large{\n    font-size:16px; }\n    .bp3-control.bp3-large:not(.bp3-align-right){\n      padding-left:30px; }\n      .bp3-control.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n        margin-left:-30px; }\n    .bp3-control.bp3-large.bp3-align-right{\n      padding-right:30px; }\n      .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n        margin-right:-30px; }\n    .bp3-control.bp3-large .bp3-control-indicator{\n      font-size:20px; }\n    .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-top:0; }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control.bp3-checkbox .bp3-control-indicator{\n    border-radius:3px; }\n  .bp3-control.bp3-checkbox input:checked ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0012 5z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-radio .bp3-control-indicator{\n    border-radius:50%; }\n  .bp3-control.bp3-radio input:checked ~ .bp3-control-indicator::before{\n    background-image:radial-gradient(#ffffff, #ffffff 28%, transparent 32%); }\n  .bp3-control.bp3-radio input:checked:disabled ~ .bp3-control-indicator::before{\n    opacity:0.5; }\n  .bp3-control.bp3-radio input:focus ~ .bp3-control-indicator{\n    -moz-outline-radius:16px; }\n  .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(167, 182, 194, 0.5); }\n  .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(115, 134, 148, 0.5); }\n  .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(92, 112, 128, 0.5); }\n  .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5); }\n    .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5); }\n    .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch:not(.bp3-align-right){\n    padding-left:38px; }\n    .bp3-control.bp3-switch:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-38px; }\n  .bp3-control.bp3-switch.bp3-align-right{\n    padding-right:38px; }\n    .bp3-control.bp3-switch.bp3-align-right .bp3-control-indicator{\n      margin-right:-38px; }\n  .bp3-control.bp3-switch .bp3-control-indicator{\n    border:none;\n    border-radius:1.75em;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important;\n    min-width:1.75em;\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:auto; }\n    .bp3-control.bp3-switch .bp3-control-indicator::before{\n      background:#ffffff;\n      border-radius:50%;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n      height:calc(1em - 4px);\n      left:0;\n      margin:2px;\n      position:absolute;\n      -webkit-transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      width:calc(1em - 4px); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    left:calc(100% - 1em); }\n  .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right){\n    padding-left:45px; }\n    .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-45px; }\n  .bp3-control.bp3-switch.bp3-large.bp3-align-right{\n    padding-right:45px; }\n    .bp3-control.bp3-switch.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-right:-45px; }\n  .bp3-dark .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.7); }\n  .bp3-dark .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.9); }\n  .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(57, 75, 89, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-dark .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch .bp3-control-indicator::before{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-control.bp3-switch .bp3-switch-inner-text{\n    font-size:0.7em;\n    text-align:center; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:first-child{\n    line-height:0;\n    margin-left:0.5em;\n    margin-right:1.2em;\n    visibility:hidden; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:last-child{\n    line-height:1em;\n    margin-left:1.2em;\n    margin-right:0.5em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:first-child{\n    line-height:1em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:last-child{\n    line-height:0;\n    visibility:hidden; }\n  .bp3-dark .bp3-control{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-control.bp3-disabled{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-control .bp3-control-indicator{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-control:hover .bp3-control-indicator{\n      background-color:#30404d; }\n    .bp3-dark .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n      background:#202b33;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-control input:disabled ~ .bp3-control-indicator{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      cursor:not-allowed; }\n    .bp3-dark .bp3-control.bp3-checkbox input:disabled:checked ~ .bp3-control-indicator, .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-file-input{\n  cursor:pointer;\n  display:inline-block;\n  height:30px;\n  position:relative; }\n  .bp3-file-input input{\n    margin:0;\n    min-width:200px;\n    opacity:0; }\n    .bp3-file-input input:disabled + .bp3-file-upload-input,\n    .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n      background:rgba(206, 217, 224, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      resize:none; }\n      .bp3-file-input input:disabled + .bp3-file-upload-input::after,\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n        background-color:rgba(206, 217, 224, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(92, 112, 128, 0.6);\n        cursor:not-allowed;\n        outline:none; }\n        .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active:hover,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active:hover{\n          background:rgba(206, 217, 224, 0.7); }\n      .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input, .bp3-dark\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n        background:rgba(57, 75, 89, 0.5);\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after, .bp3-dark\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n          background-color:rgba(57, 75, 89, 0.5);\n          background-image:none;\n          -webkit-box-shadow:none;\n                  box-shadow:none;\n          color:rgba(167, 182, 194, 0.6); }\n          .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-dark\n          .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active{\n            background:rgba(57, 75, 89, 0.7); }\n  .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#182026; }\n  .bp3-dark .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#f5f8fa; }\n  .bp3-file-input.bp3-fill{\n    width:100%; }\n  .bp3-file-input.bp3-large,\n  .bp3-large .bp3-file-input{\n    height:40px; }\n  .bp3-file-input .bp3-file-upload-input-custom-text::after{\n    content:attr(bp3-button-text); }\n\n.bp3-file-upload-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle;\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:rgba(92, 112, 128, 0.6);\n  left:0;\n  padding-right:80px;\n  position:absolute;\n  right:0;\n  top:0;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-file-upload-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:focus, .bp3-file-upload-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-file-upload-input[type=\"search\"], .bp3-file-upload-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-file-upload-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-file-upload-input:disabled, .bp3-file-upload-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-file-upload-input::after{\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026;\n    min-height:24px;\n    min-width:24px;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    border-radius:3px;\n    content:\"Browse\";\n    line-height:24px;\n    margin:3px;\n    position:absolute;\n    right:0;\n    text-align:center;\n    top:0;\n    width:70px; }\n    .bp3-file-upload-input::after:hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-file-upload-input::after:active, .bp3-file-upload-input::after.bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-file-upload-input::after:disabled, .bp3-file-upload-input::after.bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-file-upload-input::after:disabled.bp3-active, .bp3-file-upload-input::after:disabled.bp3-active:hover, .bp3-file-upload-input::after.bp3-disabled.bp3-active, .bp3-file-upload-input::after.bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-file-upload-input:hover::after{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-file-upload-input:active::after{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-large .bp3-file-upload-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px;\n    padding-right:95px; }\n    .bp3-large .bp3-file-upload-input[type=\"search\"], .bp3-large .bp3-file-upload-input.bp3-round{\n      padding:0 15px; }\n    .bp3-large .bp3-file-upload-input::after{\n      min-height:30px;\n      min-width:30px;\n      line-height:30px;\n      margin:5px;\n      width:85px; }\n  .bp3-dark .bp3-file-upload-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:disabled, .bp3-dark .bp3-file-upload-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::after{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n      color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover, .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover{\n        background-color:#30404d;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        background-color:#202b33;\n        background-image:none;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n      .bp3-dark .bp3-file-upload-input::after:disabled, .bp3-dark .bp3-file-upload-input::after.bp3-disabled{\n        background-color:rgba(57, 75, 89, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-upload-input::after:disabled.bp3-active, .bp3-dark .bp3-file-upload-input::after.bp3-disabled.bp3-active{\n          background:rgba(57, 75, 89, 0.7); }\n      .bp3-dark .bp3-file-upload-input::after .bp3-button-spinner .bp3-spinner-head{\n        background:rgba(16, 22, 26, 0.5);\n        stroke:#8a9ba8; }\n    .bp3-dark .bp3-file-upload-input:hover::after{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:active::after{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n.bp3-file-upload-input::after{\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n.bp3-form-group{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0 0 15px; }\n  .bp3-form-group label.bp3-label{\n    margin-bottom:5px; }\n  .bp3-form-group .bp3-control{\n    margin-top:7px; }\n  .bp3-form-group .bp3-form-helper-text{\n    color:#5c7080;\n    font-size:12px;\n    margin-top:5px; }\n  .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#106ba3; }\n  .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#0d8050; }\n  .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#bf7326; }\n  .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#c23030; }\n  .bp3-form-group.bp3-inline{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row; }\n    .bp3-form-group.bp3-inline.bp3-large label.bp3-label{\n      line-height:40px;\n      margin:0 10px 0 0; }\n    .bp3-form-group.bp3-inline label.bp3-label{\n      line-height:30px;\n      margin:0 10px 0 0; }\n  .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-dark .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#48aff0; }\n  .bp3-dark .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#3dcc91; }\n  .bp3-dark .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#ffb366; }\n  .bp3-dark .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#ff7373; }\n  .bp3-dark .bp3-form-group .bp3-form-helper-text{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(167, 182, 194, 0.6) !important; }\n.bp3-input-group{\n  display:block;\n  position:relative; }\n  .bp3-input-group .bp3-input{\n    position:relative;\n    width:100%; }\n    .bp3-input-group .bp3-input:not(:first-child){\n      padding-left:30px; }\n    .bp3-input-group .bp3-input:not(:last-child){\n      padding-right:30px; }\n  .bp3-input-group .bp3-input-action,\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-button,\n  .bp3-input-group > .bp3-icon{\n    position:absolute;\n    top:0; }\n    .bp3-input-group .bp3-input-action:first-child,\n    .bp3-input-group > .bp3-input-left-container:first-child,\n    .bp3-input-group > .bp3-button:first-child,\n    .bp3-input-group > .bp3-icon:first-child{\n      left:0; }\n    .bp3-input-group .bp3-input-action:last-child,\n    .bp3-input-group > .bp3-input-left-container:last-child,\n    .bp3-input-group > .bp3-button:last-child,\n    .bp3-input-group > .bp3-icon:last-child{\n      right:0; }\n  .bp3-input-group .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    margin:3px;\n    padding:0 7px; }\n    .bp3-input-group .bp3-button:empty{\n      padding:0; }\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-icon{\n    z-index:1; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon{\n    color:#5c7080; }\n    .bp3-input-group > .bp3-input-left-container > .bp3-icon:empty,\n    .bp3-input-group > .bp3-icon:empty{\n      font-family:\"Icons16\", sans-serif;\n      font-size:16px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon,\n  .bp3-input-group .bp3-input-action > .bp3-spinner{\n    margin:7px; }\n  .bp3-input-group .bp3-tag{\n    margin:5px; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus),\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n    color:#5c7080; }\n    .bp3-dark .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus), .bp3-dark\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n      color:#a7b6c2; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large{\n      color:#5c7080; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled,\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled{\n    color:rgba(92, 112, 128, 0.6) !important; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-large{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-input-group.bp3-disabled{\n    cursor:not-allowed; }\n    .bp3-input-group.bp3-disabled .bp3-icon{\n      color:rgba(92, 112, 128, 0.6); }\n  .bp3-input-group.bp3-large .bp3-button{\n    min-height:30px;\n    min-width:30px;\n    margin:5px; }\n  .bp3-input-group.bp3-large > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-large > .bp3-icon,\n  .bp3-input-group.bp3-large .bp3-input-action > .bp3-spinner{\n    margin:12px; }\n  .bp3-input-group.bp3-large .bp3-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input-group.bp3-large .bp3-input[type=\"search\"], .bp3-input-group.bp3-large .bp3-input.bp3-round{\n      padding:0 15px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:first-child){\n      padding-left:40px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:last-child){\n      padding-right:40px; }\n  .bp3-input-group.bp3-small .bp3-button{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small .bp3-tag{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-small > .bp3-icon,\n  .bp3-input-group.bp3-small .bp3-input-action > .bp3-spinner{\n    margin:4px; }\n  .bp3-input-group.bp3-small .bp3-input{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input-group.bp3-small .bp3-input[type=\"search\"], .bp3-input-group.bp3-small .bp3-input.bp3-round{\n      padding:0 12px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:first-child){\n      padding-left:24px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:last-child){\n      padding-right:24px; }\n  .bp3-input-group.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-input-group.bp3-round .bp3-button,\n  .bp3-input-group.bp3-round .bp3-input,\n  .bp3-input-group.bp3-round .bp3-tag{\n    border-radius:30px; }\n  .bp3-dark .bp3-input-group .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-input-group.bp3-disabled .bp3-icon{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-input-group.bp3-intent-primary .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input-group.bp3-intent-primary .bp3-input:disabled, .bp3-input-group.bp3-intent-primary .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-primary > .bp3-icon{\n    color:#106ba3; }\n    .bp3-dark .bp3-input-group.bp3-intent-primary > .bp3-icon{\n      color:#48aff0; }\n  .bp3-input-group.bp3-intent-success .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input-group.bp3-intent-success .bp3-input:disabled, .bp3-input-group.bp3-intent-success .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-success > .bp3-icon{\n    color:#0d8050; }\n    .bp3-dark .bp3-input-group.bp3-intent-success > .bp3-icon{\n      color:#3dcc91; }\n  .bp3-input-group.bp3-intent-warning .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input-group.bp3-intent-warning .bp3-input:disabled, .bp3-input-group.bp3-intent-warning .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-warning > .bp3-icon{\n    color:#bf7326; }\n    .bp3-dark .bp3-input-group.bp3-intent-warning > .bp3-icon{\n      color:#ffb366; }\n  .bp3-input-group.bp3-intent-danger .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input-group.bp3-intent-danger .bp3-input:disabled, .bp3-input-group.bp3-intent-danger .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-danger > .bp3-icon{\n    color:#c23030; }\n    .bp3-dark .bp3-input-group.bp3-intent-danger > .bp3-icon{\n      color:#ff7373; }\n.bp3-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle; }\n  .bp3-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:focus, .bp3-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-input[type=\"search\"], .bp3-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-input:disabled, .bp3-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-input.bp3-large{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input.bp3-large[type=\"search\"], .bp3-input.bp3-large.bp3-round{\n      padding:0 15px; }\n  .bp3-input.bp3-small{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input.bp3-small[type=\"search\"], .bp3-input.bp3-small.bp3-round{\n      padding:0 12px; }\n  .bp3-input.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-dark .bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input:disabled, .bp3-dark .bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-input.bp3-intent-primary{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input.bp3-intent-primary:disabled, .bp3-input.bp3-intent-primary.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary:focus{\n        -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n                box-shadow:inset 0 0 0 1px #137cbd; }\n      .bp3-dark .bp3-input.bp3-intent-primary:disabled, .bp3-dark .bp3-input.bp3-intent-primary.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-success{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input.bp3-intent-success:disabled, .bp3-input.bp3-intent-success.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success:focus{\n        -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n                box-shadow:inset 0 0 0 1px #0f9960; }\n      .bp3-dark .bp3-input.bp3-intent-success:disabled, .bp3-dark .bp3-input.bp3-intent-success.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-warning{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input.bp3-intent-warning:disabled, .bp3-input.bp3-intent-warning.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning:focus{\n        -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n                box-shadow:inset 0 0 0 1px #d9822b; }\n      .bp3-dark .bp3-input.bp3-intent-warning:disabled, .bp3-dark .bp3-input.bp3-intent-warning.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-danger{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input.bp3-intent-danger:disabled, .bp3-input.bp3-intent-danger.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger:focus{\n        -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #db3737;\n                box-shadow:inset 0 0 0 1px #db3737; }\n      .bp3-dark .bp3-input.bp3-intent-danger:disabled, .bp3-dark .bp3-input.bp3-intent-danger.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input::-ms-clear{\n    display:none; }\ntextarea.bp3-input{\n  max-width:100%;\n  padding:10px; }\n  textarea.bp3-input, textarea.bp3-input.bp3-large, textarea.bp3-input.bp3-small{\n    height:auto;\n    line-height:inherit; }\n  textarea.bp3-input.bp3-small{\n    padding:8px; }\n  .bp3-dark textarea.bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark textarea.bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input:disabled, .bp3-dark textarea.bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\nlabel.bp3-label{\n  display:block;\n  margin-bottom:15px;\n  margin-top:0; }\n  label.bp3-label .bp3-html-select,\n  label.bp3-label .bp3-input,\n  label.bp3-label .bp3-select,\n  label.bp3-label .bp3-slider,\n  label.bp3-label .bp3-popover-wrapper{\n    display:block;\n    margin-top:5px;\n    text-transform:none; }\n  label.bp3-label .bp3-button-group{\n    margin-top:5px; }\n  label.bp3-label .bp3-select select,\n  label.bp3-label .bp3-html-select select{\n    font-weight:400;\n    vertical-align:top;\n    width:100%; }\n  label.bp3-label.bp3-disabled,\n  label.bp3-label.bp3-disabled .bp3-text-muted{\n    color:rgba(92, 112, 128, 0.6); }\n  label.bp3-label.bp3-inline{\n    line-height:30px; }\n    label.bp3-label.bp3-inline .bp3-html-select,\n    label.bp3-label.bp3-inline .bp3-input,\n    label.bp3-label.bp3-inline .bp3-input-group,\n    label.bp3-label.bp3-inline .bp3-select,\n    label.bp3-label.bp3-inline .bp3-popover-wrapper{\n      display:inline-block;\n      margin:0 0 0 5px;\n      vertical-align:top; }\n    label.bp3-label.bp3-inline .bp3-button-group{\n      margin:0 0 0 5px; }\n    label.bp3-label.bp3-inline .bp3-input-group .bp3-input{\n      margin-left:0; }\n    label.bp3-label.bp3-inline.bp3-large{\n      line-height:40px; }\n  label.bp3-label:not(.bp3-inline) .bp3-popover-target{\n    display:block; }\n  .bp3-dark label.bp3-label{\n    color:#f5f8fa; }\n    .bp3-dark label.bp3-label.bp3-disabled,\n    .bp3-dark label.bp3-label.bp3-disabled .bp3-text-muted{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 14px;\n          flex:1 1 14px;\n  min-height:0;\n  padding:0;\n  width:30px; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:first-child{\n    border-radius:0 3px 0 0; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:last-child{\n    border-radius:0 0 3px 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:first-child{\n  border-radius:3px 0 0 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:last-child{\n  border-radius:0 0 0 3px; }\n\n.bp3-numeric-input.bp3-large .bp3-button-group.bp3-vertical > .bp3-button{\n  width:40px; }\n\nform{\n  display:block; }\n.bp3-html-select select,\n.bp3-select select{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  -moz-appearance:none;\n  -webkit-appearance:none;\n  border-radius:3px;\n  height:30px;\n  padding:0 25px 0 10px;\n  width:100%; }\n  .bp3-html-select select > *, .bp3-select select > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-html-select select > .bp3-fill, .bp3-select select > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-html-select select::before,\n  .bp3-select select::before, .bp3-html-select select > *, .bp3-select select > *{\n    margin-right:7px; }\n  .bp3-html-select select:empty::before,\n  .bp3-select select:empty::before,\n  .bp3-html-select select > :last-child,\n  .bp3-select select > :last-child{\n    margin-right:0; }\n  .bp3-html-select select:hover,\n  .bp3-select select:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-html-select select:active,\n  .bp3-select select:active, .bp3-html-select select.bp3-active,\n  .bp3-select select.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-html-select select:disabled,\n  .bp3-select select:disabled, .bp3-html-select select.bp3-disabled,\n  .bp3-select select.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-html-select select:disabled.bp3-active,\n    .bp3-select select:disabled.bp3-active, .bp3-html-select select:disabled.bp3-active:hover,\n    .bp3-select select:disabled.bp3-active:hover, .bp3-html-select select.bp3-disabled.bp3-active,\n    .bp3-select select.bp3-disabled.bp3-active, .bp3-html-select select.bp3-disabled.bp3-active:hover,\n    .bp3-select select.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n\n.bp3-html-select.bp3-minimal select,\n.bp3-select.bp3-minimal select{\n  background:none;\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  .bp3-html-select.bp3-minimal select:hover,\n  .bp3-select.bp3-minimal select:hover{\n    background:rgba(167, 182, 194, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026;\n    text-decoration:none; }\n  .bp3-html-select.bp3-minimal select:active,\n  .bp3-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal select.bp3-active,\n  .bp3-select.bp3-minimal select.bp3-active{\n    background:rgba(115, 134, 148, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026; }\n  .bp3-html-select.bp3-minimal select:disabled,\n  .bp3-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal select:disabled:hover,\n  .bp3-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal select.bp3-disabled,\n  .bp3-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal select.bp3-disabled:hover,\n  .bp3-select.bp3-minimal select.bp3-disabled:hover{\n    background:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n    .bp3-html-select.bp3-minimal select:disabled.bp3-active,\n    .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active{\n      background:rgba(115, 134, 148, 0.3); }\n  .bp3-dark .bp3-html-select.bp3-minimal select, .bp3-html-select.bp3-minimal .bp3-dark select,\n  .bp3-dark .bp3-select.bp3-minimal select, .bp3-select.bp3-minimal .bp3-dark select{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover, .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover{\n      background:rgba(138, 155, 168, 0.15); }\n    .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:rgba(138, 155, 168, 0.3);\n      color:#f5f8fa; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal .bp3-dark select:disabled,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled, .bp3-select.bp3-minimal .bp3-dark select:disabled, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled:hover, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover{\n      background:none;\n      color:rgba(167, 182, 194, 0.6);\n      cursor:not-allowed; }\n      .bp3-dark .bp3-html-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active{\n        background:rgba(138, 155, 168, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-primary,\n  .bp3-select.bp3-minimal select.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover{\n      background:rgba(19, 124, 189, 0.15);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:rgba(19, 124, 189, 0.3);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled{\n      background:none;\n      color:rgba(16, 107, 163, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active{\n        background:rgba(19, 124, 189, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n      stroke:#106ba3; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary{\n      color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.2);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(72, 175, 240, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-success,\n  .bp3-select.bp3-minimal select.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover{\n      background:rgba(15, 153, 96, 0.15);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:rgba(15, 153, 96, 0.3);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled{\n      background:none;\n      color:rgba(13, 128, 80, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active{\n        background:rgba(15, 153, 96, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n      stroke:#0d8050; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success{\n      color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.2);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(61, 204, 145, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-warning,\n  .bp3-select.bp3-minimal select.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover{\n      background:rgba(217, 130, 43, 0.15);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:rgba(217, 130, 43, 0.3);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled{\n      background:none;\n      color:rgba(191, 115, 38, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active{\n        background:rgba(217, 130, 43, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n      stroke:#bf7326; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning{\n      color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.2);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(255, 179, 102, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-danger,\n  .bp3-select.bp3-minimal select.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover{\n      background:rgba(219, 55, 55, 0.15);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:rgba(219, 55, 55, 0.3);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled{\n      background:none;\n      color:rgba(194, 48, 48, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active{\n        background:rgba(219, 55, 55, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n      stroke:#c23030; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger{\n      color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.2);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(255, 115, 115, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n\n.bp3-html-select.bp3-large select,\n.bp3-select.bp3-large select{\n  font-size:16px;\n  height:40px;\n  padding-right:35px; }\n\n.bp3-dark .bp3-html-select select, .bp3-dark .bp3-select select{\n  background-color:#394b59;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n  color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover, .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    background-color:#202b33;\n    background-image:none;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-html-select select:disabled, .bp3-dark .bp3-select select:disabled, .bp3-dark .bp3-html-select select.bp3-disabled, .bp3-dark .bp3-select select.bp3-disabled{\n    background-color:rgba(57, 75, 89, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-html-select select:disabled.bp3-active, .bp3-dark .bp3-select select:disabled.bp3-active, .bp3-dark .bp3-html-select select.bp3-disabled.bp3-active, .bp3-dark .bp3-select select.bp3-disabled.bp3-active{\n      background:rgba(57, 75, 89, 0.7); }\n  .bp3-dark .bp3-html-select select .bp3-button-spinner .bp3-spinner-head, .bp3-dark .bp3-select select .bp3-button-spinner .bp3-spinner-head{\n    background:rgba(16, 22, 26, 0.5);\n    stroke:#8a9ba8; }\n\n.bp3-html-select select:disabled,\n.bp3-select select:disabled{\n  background-color:rgba(206, 217, 224, 0.5);\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-html-select .bp3-icon,\n.bp3-select .bp3-icon, .bp3-select::after{\n  color:#5c7080;\n  pointer-events:none;\n  position:absolute;\n  right:7px;\n  top:7px; }\n  .bp3-html-select .bp3-disabled.bp3-icon,\n  .bp3-select .bp3-disabled.bp3-icon, .bp3-disabled.bp3-select::after{\n    color:rgba(92, 112, 128, 0.6); }\n.bp3-html-select,\n.bp3-select{\n  display:inline-block;\n  letter-spacing:normal;\n  position:relative;\n  vertical-align:middle; }\n  .bp3-html-select select::-ms-expand,\n  .bp3-select select::-ms-expand{\n    display:none; }\n  .bp3-html-select .bp3-icon,\n  .bp3-select .bp3-icon{\n    color:#5c7080; }\n    .bp3-html-select .bp3-icon:hover,\n    .bp3-select .bp3-icon:hover{\n      color:#182026; }\n    .bp3-dark .bp3-html-select .bp3-icon, .bp3-dark\n    .bp3-select .bp3-icon{\n      color:#a7b6c2; }\n      .bp3-dark .bp3-html-select .bp3-icon:hover, .bp3-dark\n      .bp3-select .bp3-icon:hover{\n        color:#f5f8fa; }\n  .bp3-html-select.bp3-large::after,\n  .bp3-html-select.bp3-large .bp3-icon,\n  .bp3-select.bp3-large::after,\n  .bp3-select.bp3-large .bp3-icon{\n    right:12px;\n    top:12px; }\n  .bp3-html-select.bp3-fill,\n  .bp3-html-select.bp3-fill select,\n  .bp3-select.bp3-fill,\n  .bp3-select.bp3-fill select{\n    width:100%; }\n  .bp3-dark .bp3-html-select option, .bp3-dark\n  .bp3-select option{\n    background-color:#30404d;\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select option:disabled, .bp3-dark\n  .bp3-select option:disabled{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-html-select::after, .bp3-dark\n  .bp3-select::after{\n    color:#a7b6c2; }\n\n.bp3-select::after{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  content:\"\"; }\n.bp3-running-text table, table.bp3-html-table{\n  border-spacing:0;\n  font-size:14px; }\n  .bp3-running-text table th, table.bp3-html-table th,\n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    padding:11px;\n    text-align:left;\n    vertical-align:top; }\n  .bp3-running-text table th, table.bp3-html-table th{\n    color:#182026;\n    font-weight:600; }\n  \n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    color:#182026; }\n  .bp3-running-text table tbody tr:first-child th, table.bp3-html-table tbody tr:first-child th,\n  .bp3-running-text table tbody tr:first-child td,\n  table.bp3-html-table tbody tr:first-child td,\n  .bp3-running-text table tfoot tr:first-child th,\n  table.bp3-html-table tfoot tr:first-child th,\n  .bp3-running-text table tfoot tr:first-child td,\n  table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-running-text table th, .bp3-running-text .bp3-dark table th, .bp3-dark table.bp3-html-table th{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table td, .bp3-running-text .bp3-dark table td, .bp3-dark table.bp3-html-table td{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table tbody tr:first-child th, .bp3-running-text .bp3-dark table tbody tr:first-child th, .bp3-dark table.bp3-html-table tbody tr:first-child th,\n  .bp3-dark .bp3-running-text table tbody tr:first-child td,\n  .bp3-running-text .bp3-dark table tbody tr:first-child td,\n  .bp3-dark table.bp3-html-table tbody tr:first-child td,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child th,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child th,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child th,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child td,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child td,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-condensed th,\ntable.bp3-html-table.bp3-html-table-condensed td, table.bp3-html-table.bp3-small th,\ntable.bp3-html-table.bp3-small td{\n  padding-bottom:6px;\n  padding-top:6px; }\n\ntable.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n  background:rgba(191, 204, 214, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n  -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered tbody tr td,\ntable.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n  -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n  table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n    -webkit-box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-interactive tbody tr:hover td{\n  background-color:rgba(191, 204, 214, 0.3);\n  cursor:pointer; }\n\ntable.bp3-html-table.bp3-interactive tbody tr:active td{\n  background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-dark table.bp3-html-table{ }\n  .bp3-dark table.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n    background:rgba(92, 112, 128, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td,\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n      -webkit-box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15);\n              box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:first-child{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:hover td{\n    background-color:rgba(92, 112, 128, 0.3);\n    cursor:pointer; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:active td{\n    background-color:rgba(92, 112, 128, 0.4); }\n\n.bp3-key-combo{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center; }\n  .bp3-key-combo > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-key-combo > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-key-combo::before,\n  .bp3-key-combo > *{\n    margin-right:5px; }\n  .bp3-key-combo:empty::before,\n  .bp3-key-combo > :last-child{\n    margin-right:0; }\n\n.bp3-hotkey-dialog{\n  padding-bottom:0;\n  top:40px; }\n  .bp3-hotkey-dialog .bp3-dialog-body{\n    margin:0;\n    padding:0; }\n  .bp3-hotkey-dialog .bp3-hotkey-label{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1; }\n\n.bp3-hotkey-column{\n  margin:auto;\n  max-height:80vh;\n  overflow-y:auto;\n  padding:30px; }\n  .bp3-hotkey-column .bp3-heading{\n    margin-bottom:20px; }\n    .bp3-hotkey-column .bp3-heading:not(:first-child){\n      margin-top:40px; }\n\n.bp3-hotkey{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:justify;\n      -ms-flex-pack:justify;\n          justify-content:space-between;\n  margin-left:0;\n  margin-right:0; }\n  .bp3-hotkey:not(:last-child){\n    margin-bottom:10px; }\n.bp3-icon{\n  display:inline-block;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  vertical-align:text-bottom; }\n  .bp3-icon:not(:empty)::before{\n    content:\"\" !important;\n    content:unset !important; }\n  .bp3-icon > svg{\n    display:block; }\n    .bp3-icon > svg:not([fill]){\n      fill:currentColor; }\n\n.bp3-icon.bp3-intent-primary, .bp3-icon-standard.bp3-intent-primary, .bp3-icon-large.bp3-intent-primary{\n  color:#106ba3; }\n  .bp3-dark .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-icon-large.bp3-intent-primary{\n    color:#48aff0; }\n\n.bp3-icon.bp3-intent-success, .bp3-icon-standard.bp3-intent-success, .bp3-icon-large.bp3-intent-success{\n  color:#0d8050; }\n  .bp3-dark .bp3-icon.bp3-intent-success, .bp3-dark .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-icon-large.bp3-intent-success{\n    color:#3dcc91; }\n\n.bp3-icon.bp3-intent-warning, .bp3-icon-standard.bp3-intent-warning, .bp3-icon-large.bp3-intent-warning{\n  color:#bf7326; }\n  .bp3-dark .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-icon-large.bp3-intent-warning{\n    color:#ffb366; }\n\n.bp3-icon.bp3-intent-danger, .bp3-icon-standard.bp3-intent-danger, .bp3-icon-large.bp3-intent-danger{\n  color:#c23030; }\n  .bp3-dark .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-icon-large.bp3-intent-danger{\n    color:#ff7373; }\n\nspan.bp3-icon-standard{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon-large{\n  font-family:\"Icons20\", sans-serif;\n  font-size:20px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon:empty{\n  font-family:\"Icons20\";\n  font-size:inherit;\n  font-style:normal;\n  font-weight:400;\n  line-height:1; }\n  span.bp3-icon:empty::before{\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased; }\n\n.bp3-icon-add::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-artifact::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-folder::before{\n  content:\"\"; }\n\n.bp3-icon-airplane::before{\n  content:\"\"; }\n\n.bp3-icon-align-center::before{\n  content:\"\"; }\n\n.bp3-icon-align-justify::before{\n  content:\"\"; }\n\n.bp3-icon-align-left::before{\n  content:\"\"; }\n\n.bp3-icon-align-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-horizontal-center::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-left::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-top::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-vertical-center::before{\n  content:\"\"; }\n\n.bp3-icon-annotation::before{\n  content:\"\"; }\n\n.bp3-icon-application::before{\n  content:\"\"; }\n\n.bp3-icon-applications::before{\n  content:\"\"; }\n\n.bp3-icon-archive::before{\n  content:\"\"; }\n\n.bp3-icon-arrow-bottom-left::before{\n  content:\"↙\"; }\n\n.bp3-icon-arrow-bottom-right::before{\n  content:\"↘\"; }\n\n.bp3-icon-arrow-down::before{\n  content:\"↓\"; }\n\n.bp3-icon-arrow-left::before{\n  content:\"←\"; }\n\n.bp3-icon-arrow-right::before{\n  content:\"→\"; }\n\n.bp3-icon-arrow-top-left::before{\n  content:\"↖\"; }\n\n.bp3-icon-arrow-top-right::before{\n  content:\"↗\"; }\n\n.bp3-icon-arrow-up::before{\n  content:\"↑\"; }\n\n.bp3-icon-arrows-horizontal::before{\n  content:\"↔\"; }\n\n.bp3-icon-arrows-vertical::before{\n  content:\"↕\"; }\n\n.bp3-icon-asterisk::before{\n  content:\"*\"; }\n\n.bp3-icon-automatic-updates::before{\n  content:\"\"; }\n\n.bp3-icon-badge::before{\n  content:\"\"; }\n\n.bp3-icon-ban-circle::before{\n  content:\"\"; }\n\n.bp3-icon-bank-account::before{\n  content:\"\"; }\n\n.bp3-icon-barcode::before{\n  content:\"\"; }\n\n.bp3-icon-blank::before{\n  content:\"\"; }\n\n.bp3-icon-blocked-person::before{\n  content:\"\"; }\n\n.bp3-icon-bold::before{\n  content:\"\"; }\n\n.bp3-icon-book::before{\n  content:\"\"; }\n\n.bp3-icon-bookmark::before{\n  content:\"\"; }\n\n.bp3-icon-box::before{\n  content:\"\"; }\n\n.bp3-icon-briefcase::before{\n  content:\"\"; }\n\n.bp3-icon-bring-data::before{\n  content:\"\"; }\n\n.bp3-icon-build::before{\n  content:\"\"; }\n\n.bp3-icon-calculator::before{\n  content:\"\"; }\n\n.bp3-icon-calendar::before{\n  content:\"\"; }\n\n.bp3-icon-camera::before{\n  content:\"\"; }\n\n.bp3-icon-caret-down::before{\n  content:\"⌄\"; }\n\n.bp3-icon-caret-left::before{\n  content:\"〈\"; }\n\n.bp3-icon-caret-right::before{\n  content:\"〉\"; }\n\n.bp3-icon-caret-up::before{\n  content:\"⌃\"; }\n\n.bp3-icon-cell-tower::before{\n  content:\"\"; }\n\n.bp3-icon-changes::before{\n  content:\"\"; }\n\n.bp3-icon-chart::before{\n  content:\"\"; }\n\n.bp3-icon-chat::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-backward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-forward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-circle::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-down::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-left::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-right::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-up::before{\n  content:\"\"; }\n\n.bp3-icon-citation::before{\n  content:\"\"; }\n\n.bp3-icon-clean::before{\n  content:\"\"; }\n\n.bp3-icon-clipboard::before{\n  content:\"\"; }\n\n.bp3-icon-cloud::before{\n  content:\"☁\"; }\n\n.bp3-icon-cloud-download::before{\n  content:\"\"; }\n\n.bp3-icon-cloud-upload::before{\n  content:\"\"; }\n\n.bp3-icon-code::before{\n  content:\"\"; }\n\n.bp3-icon-code-block::before{\n  content:\"\"; }\n\n.bp3-icon-cog::before{\n  content:\"\"; }\n\n.bp3-icon-collapse-all::before{\n  content:\"\"; }\n\n.bp3-icon-column-layout::before{\n  content:\"\"; }\n\n.bp3-icon-comment::before{\n  content:\"\"; }\n\n.bp3-icon-comparison::before{\n  content:\"\"; }\n\n.bp3-icon-compass::before{\n  content:\"\"; }\n\n.bp3-icon-compressed::before{\n  content:\"\"; }\n\n.bp3-icon-confirm::before{\n  content:\"\"; }\n\n.bp3-icon-console::before{\n  content:\"\"; }\n\n.bp3-icon-contrast::before{\n  content:\"\"; }\n\n.bp3-icon-control::before{\n  content:\"\"; }\n\n.bp3-icon-credit-card::before{\n  content:\"\"; }\n\n.bp3-icon-cross::before{\n  content:\"✗\"; }\n\n.bp3-icon-crown::before{\n  content:\"\"; }\n\n.bp3-icon-cube::before{\n  content:\"\"; }\n\n.bp3-icon-cube-add::before{\n  content:\"\"; }\n\n.bp3-icon-cube-remove::before{\n  content:\"\"; }\n\n.bp3-icon-curved-range-chart::before{\n  content:\"\"; }\n\n.bp3-icon-cut::before{\n  content:\"\"; }\n\n.bp3-icon-dashboard::before{\n  content:\"\"; }\n\n.bp3-icon-data-lineage::before{\n  content:\"\"; }\n\n.bp3-icon-database::before{\n  content:\"\"; }\n\n.bp3-icon-delete::before{\n  content:\"\"; }\n\n.bp3-icon-delta::before{\n  content:\"Δ\"; }\n\n.bp3-icon-derive-column::before{\n  content:\"\"; }\n\n.bp3-icon-desktop::before{\n  content:\"\"; }\n\n.bp3-icon-diagnosis::before{\n  content:\"\"; }\n\n.bp3-icon-diagram-tree::before{\n  content:\"\"; }\n\n.bp3-icon-direction-left::before{\n  content:\"\"; }\n\n.bp3-icon-direction-right::before{\n  content:\"\"; }\n\n.bp3-icon-disable::before{\n  content:\"\"; }\n\n.bp3-icon-document::before{\n  content:\"\"; }\n\n.bp3-icon-document-open::before{\n  content:\"\"; }\n\n.bp3-icon-document-share::before{\n  content:\"\"; }\n\n.bp3-icon-dollar::before{\n  content:\"$\"; }\n\n.bp3-icon-dot::before{\n  content:\"•\"; }\n\n.bp3-icon-double-caret-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-double-caret-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-doughnut-chart::before{\n  content:\"\"; }\n\n.bp3-icon-download::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-draw::before{\n  content:\"\"; }\n\n.bp3-icon-drive-time::before{\n  content:\"\"; }\n\n.bp3-icon-duplicate::before{\n  content:\"\"; }\n\n.bp3-icon-edit::before{\n  content:\"✎\"; }\n\n.bp3-icon-eject::before{\n  content:\"⏏\"; }\n\n.bp3-icon-endorsed::before{\n  content:\"\"; }\n\n.bp3-icon-envelope::before{\n  content:\"✉\"; }\n\n.bp3-icon-equals::before{\n  content:\"\"; }\n\n.bp3-icon-eraser::before{\n  content:\"\"; }\n\n.bp3-icon-error::before{\n  content:\"\"; }\n\n.bp3-icon-euro::before{\n  content:\"€\"; }\n\n.bp3-icon-exchange::before{\n  content:\"\"; }\n\n.bp3-icon-exclude-row::before{\n  content:\"\"; }\n\n.bp3-icon-expand-all::before{\n  content:\"\"; }\n\n.bp3-icon-export::before{\n  content:\"\"; }\n\n.bp3-icon-eye-off::before{\n  content:\"\"; }\n\n.bp3-icon-eye-on::before{\n  content:\"\"; }\n\n.bp3-icon-eye-open::before{\n  content:\"\"; }\n\n.bp3-icon-fast-backward::before{\n  content:\"\"; }\n\n.bp3-icon-fast-forward::before{\n  content:\"\"; }\n\n.bp3-icon-feed::before{\n  content:\"\"; }\n\n.bp3-icon-feed-subscribed::before{\n  content:\"\"; }\n\n.bp3-icon-film::before{\n  content:\"\"; }\n\n.bp3-icon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-filter-keep::before{\n  content:\"\"; }\n\n.bp3-icon-filter-list::before{\n  content:\"\"; }\n\n.bp3-icon-filter-open::before{\n  content:\"\"; }\n\n.bp3-icon-filter-remove::before{\n  content:\"\"; }\n\n.bp3-icon-flag::before{\n  content:\"⚑\"; }\n\n.bp3-icon-flame::before{\n  content:\"\"; }\n\n.bp3-icon-flash::before{\n  content:\"\"; }\n\n.bp3-icon-floppy-disk::before{\n  content:\"\"; }\n\n.bp3-icon-flow-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flow-end::before{\n  content:\"\"; }\n\n.bp3-icon-flow-linear::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flows::before{\n  content:\"\"; }\n\n.bp3-icon-folder-close::before{\n  content:\"\"; }\n\n.bp3-icon-folder-new::before{\n  content:\"\"; }\n\n.bp3-icon-folder-open::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared-open::before{\n  content:\"\"; }\n\n.bp3-icon-follower::before{\n  content:\"\"; }\n\n.bp3-icon-following::before{\n  content:\"\"; }\n\n.bp3-icon-font::before{\n  content:\"\"; }\n\n.bp3-icon-fork::before{\n  content:\"\"; }\n\n.bp3-icon-form::before{\n  content:\"\"; }\n\n.bp3-icon-full-circle::before{\n  content:\"\"; }\n\n.bp3-icon-full-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-fullscreen::before{\n  content:\"\"; }\n\n.bp3-icon-function::before{\n  content:\"\"; }\n\n.bp3-icon-gantt-chart::before{\n  content:\"\"; }\n\n.bp3-icon-geolocation::before{\n  content:\"\"; }\n\n.bp3-icon-geosearch::before{\n  content:\"\"; }\n\n.bp3-icon-git-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-commit::before{\n  content:\"\"; }\n\n.bp3-icon-git-merge::before{\n  content:\"\"; }\n\n.bp3-icon-git-new-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-pull::before{\n  content:\"\"; }\n\n.bp3-icon-git-push::before{\n  content:\"\"; }\n\n.bp3-icon-git-repo::before{\n  content:\"\"; }\n\n.bp3-icon-glass::before{\n  content:\"\"; }\n\n.bp3-icon-globe::before{\n  content:\"\"; }\n\n.bp3-icon-globe-network::before{\n  content:\"\"; }\n\n.bp3-icon-graph::before{\n  content:\"\"; }\n\n.bp3-icon-graph-remove::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-grid::before{\n  content:\"\"; }\n\n.bp3-icon-grid-view::before{\n  content:\"\"; }\n\n.bp3-icon-group-objects::before{\n  content:\"\"; }\n\n.bp3-icon-grouped-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-hand::before{\n  content:\"\"; }\n\n.bp3-icon-hand-down::before{\n  content:\"\"; }\n\n.bp3-icon-hand-left::before{\n  content:\"\"; }\n\n.bp3-icon-hand-right::before{\n  content:\"\"; }\n\n.bp3-icon-hand-up::before{\n  content:\"\"; }\n\n.bp3-icon-header::before{\n  content:\"\"; }\n\n.bp3-icon-header-one::before{\n  content:\"\"; }\n\n.bp3-icon-header-two::before{\n  content:\"\"; }\n\n.bp3-icon-headset::before{\n  content:\"\"; }\n\n.bp3-icon-heart::before{\n  content:\"♥\"; }\n\n.bp3-icon-heart-broken::before{\n  content:\"\"; }\n\n.bp3-icon-heat-grid::before{\n  content:\"\"; }\n\n.bp3-icon-heatmap::before{\n  content:\"\"; }\n\n.bp3-icon-help::before{\n  content:\"?\"; }\n\n.bp3-icon-helper-management::before{\n  content:\"\"; }\n\n.bp3-icon-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-history::before{\n  content:\"\"; }\n\n.bp3-icon-home::before{\n  content:\"⌂\"; }\n\n.bp3-icon-horizontal-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-id-number::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-left::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-right::before{\n  content:\"\"; }\n\n.bp3-icon-import::before{\n  content:\"\"; }\n\n.bp3-icon-inbox::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-geo::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-search::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-update::before{\n  content:\"\"; }\n\n.bp3-icon-info-sign::before{\n  content:\"ℹ\"; }\n\n.bp3-icon-inheritance::before{\n  content:\"\"; }\n\n.bp3-icon-inner-join::before{\n  content:\"\"; }\n\n.bp3-icon-insert::before{\n  content:\"\"; }\n\n.bp3-icon-intersection::before{\n  content:\"\"; }\n\n.bp3-icon-ip-address::before{\n  content:\"\"; }\n\n.bp3-icon-issue::before{\n  content:\"\"; }\n\n.bp3-icon-issue-closed::before{\n  content:\"\"; }\n\n.bp3-icon-issue-new::before{\n  content:\"\"; }\n\n.bp3-icon-italic::before{\n  content:\"\"; }\n\n.bp3-icon-join-table::before{\n  content:\"\"; }\n\n.bp3-icon-key::before{\n  content:\"\"; }\n\n.bp3-icon-key-backspace::before{\n  content:\"\"; }\n\n.bp3-icon-key-command::before{\n  content:\"\"; }\n\n.bp3-icon-key-control::before{\n  content:\"\"; }\n\n.bp3-icon-key-delete::before{\n  content:\"\"; }\n\n.bp3-icon-key-enter::before{\n  content:\"\"; }\n\n.bp3-icon-key-escape::before{\n  content:\"\"; }\n\n.bp3-icon-key-option::before{\n  content:\"\"; }\n\n.bp3-icon-key-shift::before{\n  content:\"\"; }\n\n.bp3-icon-key-tab::before{\n  content:\"\"; }\n\n.bp3-icon-known-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-lab-test::before{\n  content:\"\"; }\n\n.bp3-icon-label::before{\n  content:\"\"; }\n\n.bp3-icon-layer::before{\n  content:\"\"; }\n\n.bp3-icon-layers::before{\n  content:\"\"; }\n\n.bp3-icon-layout::before{\n  content:\"\"; }\n\n.bp3-icon-layout-auto::before{\n  content:\"\"; }\n\n.bp3-icon-layout-balloon::before{\n  content:\"\"; }\n\n.bp3-icon-layout-circle::before{\n  content:\"\"; }\n\n.bp3-icon-layout-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-group-by::before{\n  content:\"\"; }\n\n.bp3-icon-layout-hierarchy::before{\n  content:\"\"; }\n\n.bp3-icon-layout-linear::before{\n  content:\"\"; }\n\n.bp3-icon-layout-skew-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-sorted-clusters::before{\n  content:\"\"; }\n\n.bp3-icon-learning::before{\n  content:\"\"; }\n\n.bp3-icon-left-join::before{\n  content:\"\"; }\n\n.bp3-icon-less-than::before{\n  content:\"\"; }\n\n.bp3-icon-less-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-lifesaver::before{\n  content:\"\"; }\n\n.bp3-icon-lightbulb::before{\n  content:\"\"; }\n\n.bp3-icon-link::before{\n  content:\"\"; }\n\n.bp3-icon-list::before{\n  content:\"☰\"; }\n\n.bp3-icon-list-columns::before{\n  content:\"\"; }\n\n.bp3-icon-list-detail-view::before{\n  content:\"\"; }\n\n.bp3-icon-locate::before{\n  content:\"\"; }\n\n.bp3-icon-lock::before{\n  content:\"\"; }\n\n.bp3-icon-log-in::before{\n  content:\"\"; }\n\n.bp3-icon-log-out::before{\n  content:\"\"; }\n\n.bp3-icon-manual::before{\n  content:\"\"; }\n\n.bp3-icon-manually-entered-data::before{\n  content:\"\"; }\n\n.bp3-icon-map::before{\n  content:\"\"; }\n\n.bp3-icon-map-create::before{\n  content:\"\"; }\n\n.bp3-icon-map-marker::before{\n  content:\"\"; }\n\n.bp3-icon-maximize::before{\n  content:\"\"; }\n\n.bp3-icon-media::before{\n  content:\"\"; }\n\n.bp3-icon-menu::before{\n  content:\"\"; }\n\n.bp3-icon-menu-closed::before{\n  content:\"\"; }\n\n.bp3-icon-menu-open::before{\n  content:\"\"; }\n\n.bp3-icon-merge-columns::before{\n  content:\"\"; }\n\n.bp3-icon-merge-links::before{\n  content:\"\"; }\n\n.bp3-icon-minimize::before{\n  content:\"\"; }\n\n.bp3-icon-minus::before{\n  content:\"−\"; }\n\n.bp3-icon-mobile-phone::before{\n  content:\"\"; }\n\n.bp3-icon-mobile-video::before{\n  content:\"\"; }\n\n.bp3-icon-moon::before{\n  content:\"\"; }\n\n.bp3-icon-more::before{\n  content:\"\"; }\n\n.bp3-icon-mountain::before{\n  content:\"\"; }\n\n.bp3-icon-move::before{\n  content:\"\"; }\n\n.bp3-icon-mugshot::before{\n  content:\"\"; }\n\n.bp3-icon-multi-select::before{\n  content:\"\"; }\n\n.bp3-icon-music::before{\n  content:\"\"; }\n\n.bp3-icon-new-drawing::before{\n  content:\"\"; }\n\n.bp3-icon-new-grid-item::before{\n  content:\"\"; }\n\n.bp3-icon-new-layer::before{\n  content:\"\"; }\n\n.bp3-icon-new-layers::before{\n  content:\"\"; }\n\n.bp3-icon-new-link::before{\n  content:\"\"; }\n\n.bp3-icon-new-object::before{\n  content:\"\"; }\n\n.bp3-icon-new-person::before{\n  content:\"\"; }\n\n.bp3-icon-new-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-new-text-box::before{\n  content:\"\"; }\n\n.bp3-icon-ninja::before{\n  content:\"\"; }\n\n.bp3-icon-not-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-notifications::before{\n  content:\"\"; }\n\n.bp3-icon-notifications-updated::before{\n  content:\"\"; }\n\n.bp3-icon-numbered-list::before{\n  content:\"\"; }\n\n.bp3-icon-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-office::before{\n  content:\"\"; }\n\n.bp3-icon-offline::before{\n  content:\"\"; }\n\n.bp3-icon-oil-field::before{\n  content:\"\"; }\n\n.bp3-icon-one-column::before{\n  content:\"\"; }\n\n.bp3-icon-outdated::before{\n  content:\"\"; }\n\n.bp3-icon-page-layout::before{\n  content:\"\"; }\n\n.bp3-icon-panel-stats::before{\n  content:\"\"; }\n\n.bp3-icon-panel-table::before{\n  content:\"\"; }\n\n.bp3-icon-paperclip::before{\n  content:\"\"; }\n\n.bp3-icon-paragraph::before{\n  content:\"\"; }\n\n.bp3-icon-path::before{\n  content:\"\"; }\n\n.bp3-icon-path-search::before{\n  content:\"\"; }\n\n.bp3-icon-pause::before{\n  content:\"\"; }\n\n.bp3-icon-people::before{\n  content:\"\"; }\n\n.bp3-icon-percentage::before{\n  content:\"\"; }\n\n.bp3-icon-person::before{\n  content:\"\"; }\n\n.bp3-icon-phone::before{\n  content:\"☎\"; }\n\n.bp3-icon-pie-chart::before{\n  content:\"\"; }\n\n.bp3-icon-pin::before{\n  content:\"\"; }\n\n.bp3-icon-pivot::before{\n  content:\"\"; }\n\n.bp3-icon-pivot-table::before{\n  content:\"\"; }\n\n.bp3-icon-play::before{\n  content:\"\"; }\n\n.bp3-icon-plus::before{\n  content:\"+\"; }\n\n.bp3-icon-polygon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-power::before{\n  content:\"\"; }\n\n.bp3-icon-predictive-analysis::before{\n  content:\"\"; }\n\n.bp3-icon-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-presentation::before{\n  content:\"\"; }\n\n.bp3-icon-print::before{\n  content:\"⎙\"; }\n\n.bp3-icon-projects::before{\n  content:\"\"; }\n\n.bp3-icon-properties::before{\n  content:\"\"; }\n\n.bp3-icon-property::before{\n  content:\"\"; }\n\n.bp3-icon-publish-function::before{\n  content:\"\"; }\n\n.bp3-icon-pulse::before{\n  content:\"\"; }\n\n.bp3-icon-random::before{\n  content:\"\"; }\n\n.bp3-icon-record::before{\n  content:\"\"; }\n\n.bp3-icon-redo::before{\n  content:\"\"; }\n\n.bp3-icon-refresh::before{\n  content:\"\"; }\n\n.bp3-icon-regression-chart::before{\n  content:\"\"; }\n\n.bp3-icon-remove::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-repeat::before{\n  content:\"\"; }\n\n.bp3-icon-reset::before{\n  content:\"\"; }\n\n.bp3-icon-resolve::before{\n  content:\"\"; }\n\n.bp3-icon-rig::before{\n  content:\"\"; }\n\n.bp3-icon-right-join::before{\n  content:\"\"; }\n\n.bp3-icon-ring::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-document::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-page::before{\n  content:\"\"; }\n\n.bp3-icon-satellite::before{\n  content:\"\"; }\n\n.bp3-icon-saved::before{\n  content:\"\"; }\n\n.bp3-icon-scatter-plot::before{\n  content:\"\"; }\n\n.bp3-icon-search::before{\n  content:\"\"; }\n\n.bp3-icon-search-around::before{\n  content:\"\"; }\n\n.bp3-icon-search-template::before{\n  content:\"\"; }\n\n.bp3-icon-search-text::before{\n  content:\"\"; }\n\n.bp3-icon-segmented-control::before{\n  content:\"\"; }\n\n.bp3-icon-select::before{\n  content:\"\"; }\n\n.bp3-icon-selection::before{\n  content:\"⦿\"; }\n\n.bp3-icon-send-to::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-graph::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-map::before{\n  content:\"\"; }\n\n.bp3-icon-series-add::before{\n  content:\"\"; }\n\n.bp3-icon-series-configuration::before{\n  content:\"\"; }\n\n.bp3-icon-series-derived::before{\n  content:\"\"; }\n\n.bp3-icon-series-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-series-search::before{\n  content:\"\"; }\n\n.bp3-icon-settings::before{\n  content:\"\"; }\n\n.bp3-icon-share::before{\n  content:\"\"; }\n\n.bp3-icon-shield::before{\n  content:\"\"; }\n\n.bp3-icon-shop::before{\n  content:\"\"; }\n\n.bp3-icon-shopping-cart::before{\n  content:\"\"; }\n\n.bp3-icon-signal-search::before{\n  content:\"\"; }\n\n.bp3-icon-sim-card::before{\n  content:\"\"; }\n\n.bp3-icon-slash::before{\n  content:\"\"; }\n\n.bp3-icon-small-cross::before{\n  content:\"\"; }\n\n.bp3-icon-small-minus::before{\n  content:\"\"; }\n\n.bp3-icon-small-plus::before{\n  content:\"\"; }\n\n.bp3-icon-small-tick::before{\n  content:\"\"; }\n\n.bp3-icon-snowflake::before{\n  content:\"\"; }\n\n.bp3-icon-social-media::before{\n  content:\"\"; }\n\n.bp3-icon-sort::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-asc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-split-columns::before{\n  content:\"\"; }\n\n.bp3-icon-square::before{\n  content:\"\"; }\n\n.bp3-icon-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-star::before{\n  content:\"★\"; }\n\n.bp3-icon-star-empty::before{\n  content:\"☆\"; }\n\n.bp3-icon-step-backward::before{\n  content:\"\"; }\n\n.bp3-icon-step-chart::before{\n  content:\"\"; }\n\n.bp3-icon-step-forward::before{\n  content:\"\"; }\n\n.bp3-icon-stop::before{\n  content:\"\"; }\n\n.bp3-icon-stopwatch::before{\n  content:\"\"; }\n\n.bp3-icon-strikethrough::before{\n  content:\"\"; }\n\n.bp3-icon-style::before{\n  content:\"\"; }\n\n.bp3-icon-swap-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-swap-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-circle::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-cross::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-diamond::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-square::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-down::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-up::before{\n  content:\"\"; }\n\n.bp3-icon-tag::before{\n  content:\"\"; }\n\n.bp3-icon-take-action::before{\n  content:\"\"; }\n\n.bp3-icon-taxi::before{\n  content:\"\"; }\n\n.bp3-icon-text-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-th::before{\n  content:\"\"; }\n\n.bp3-icon-th-derived::before{\n  content:\"\"; }\n\n.bp3-icon-th-disconnect::before{\n  content:\"\"; }\n\n.bp3-icon-th-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-th-list::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-down::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-up::before{\n  content:\"\"; }\n\n.bp3-icon-tick::before{\n  content:\"✓\"; }\n\n.bp3-icon-tick-circle::before{\n  content:\"\"; }\n\n.bp3-icon-time::before{\n  content:\"⏲\"; }\n\n.bp3-icon-timeline-area-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-events::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-line-chart::before{\n  content:\"\"; }\n\n.bp3-icon-tint::before{\n  content:\"\"; }\n\n.bp3-icon-torch::before{\n  content:\"\"; }\n\n.bp3-icon-tractor::before{\n  content:\"\"; }\n\n.bp3-icon-train::before{\n  content:\"\"; }\n\n.bp3-icon-translate::before{\n  content:\"\"; }\n\n.bp3-icon-trash::before{\n  content:\"\"; }\n\n.bp3-icon-tree::before{\n  content:\"\"; }\n\n.bp3-icon-trending-down::before{\n  content:\"\"; }\n\n.bp3-icon-trending-up::before{\n  content:\"\"; }\n\n.bp3-icon-truck::before{\n  content:\"\"; }\n\n.bp3-icon-two-columns::before{\n  content:\"\"; }\n\n.bp3-icon-unarchive::before{\n  content:\"\"; }\n\n.bp3-icon-underline::before{\n  content:\"⎁\"; }\n\n.bp3-icon-undo::before{\n  content:\"⎌\"; }\n\n.bp3-icon-ungroup-objects::before{\n  content:\"\"; }\n\n.bp3-icon-unknown-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-unlock::before{\n  content:\"\"; }\n\n.bp3-icon-unpin::before{\n  content:\"\"; }\n\n.bp3-icon-unresolve::before{\n  content:\"\"; }\n\n.bp3-icon-updated::before{\n  content:\"\"; }\n\n.bp3-icon-upload::before{\n  content:\"\"; }\n\n.bp3-icon-user::before{\n  content:\"\"; }\n\n.bp3-icon-variable::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-video::before{\n  content:\"\"; }\n\n.bp3-icon-volume-down::before{\n  content:\"\"; }\n\n.bp3-icon-volume-off::before{\n  content:\"\"; }\n\n.bp3-icon-volume-up::before{\n  content:\"\"; }\n\n.bp3-icon-walk::before{\n  content:\"\"; }\n\n.bp3-icon-warning-sign::before{\n  content:\"\"; }\n\n.bp3-icon-waterfall-chart::before{\n  content:\"\"; }\n\n.bp3-icon-widget::before{\n  content:\"\"; }\n\n.bp3-icon-widget-button::before{\n  content:\"\"; }\n\n.bp3-icon-widget-footer::before{\n  content:\"\"; }\n\n.bp3-icon-widget-header::before{\n  content:\"\"; }\n\n.bp3-icon-wrench::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-in::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-out::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-to-fit::before{\n  content:\"\"; }\n.bp3-submenu > .bp3-popover-wrapper{\n  display:block; }\n\n.bp3-submenu .bp3-popover-target{\n  display:block; }\n  .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{ }\n\n.bp3-submenu.bp3-popover{\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0 5px; }\n  .bp3-submenu.bp3-popover > .bp3-popover-content{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-submenu.bp3-popover, .bp3-submenu.bp3-popover.bp3-dark{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-dark .bp3-submenu.bp3-popover > .bp3-popover-content, .bp3-submenu.bp3-popover.bp3-dark > .bp3-popover-content{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n.bp3-menu{\n  background:#ffffff;\n  border-radius:3px;\n  color:#182026;\n  list-style:none;\n  margin:0;\n  min-width:180px;\n  padding:5px;\n  text-align:left; }\n\n.bp3-menu-divider{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px; }\n  .bp3-dark .bp3-menu-divider{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-menu-item{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  border-radius:2px;\n  color:inherit;\n  line-height:20px;\n  padding:5px 7px;\n  text-decoration:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-menu-item > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-menu-item > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > *{\n    margin-right:7px; }\n  .bp3-menu-item:empty::before,\n  .bp3-menu-item > :last-child{\n    margin-right:0; }\n  .bp3-menu-item > .bp3-fill{\n    word-break:break-word; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    background-color:rgba(167, 182, 194, 0.3);\n    cursor:pointer;\n    text-decoration:none; }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-dark .bp3-menu-item{\n    color:inherit; }\n    .bp3-dark .bp3-menu-item:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n      background-color:rgba(138, 155, 168, 0.15);\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-disabled{\n      background-color:inherit;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-menu-item.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-primary::before, .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary:active, .bp3-menu-item.bp3-intent-primary:active::before, .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-success::before, .bp3-menu-item.bp3-intent-success::after,\n    .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-menu-item.bp3-intent-success:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success:active, .bp3-menu-item.bp3-intent-success:active::before, .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-warning::before, .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning:active, .bp3-menu-item.bp3-intent-warning:active::before, .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-danger::before, .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger:active, .bp3-menu-item.bp3-intent-danger:active::before, .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    margin-right:7px; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > .bp3-icon{\n    color:#5c7080;\n    margin-top:2px; }\n  .bp3-menu-item .bp3-menu-item-label{\n    color:#5c7080; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    color:inherit; }\n  .bp3-menu-item.bp3-active, .bp3-menu-item:active{\n    background-color:rgba(115, 134, 148, 0.3); }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit !important;\n    color:rgba(92, 112, 128, 0.6) !important;\n    cursor:not-allowed !important;\n    outline:none !important; }\n    .bp3-menu-item.bp3-disabled::before,\n    .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-large .bp3-menu-item{\n    font-size:16px;\n    line-height:22px;\n    padding:9px 7px; }\n    .bp3-large .bp3-menu-item .bp3-icon{\n      margin-top:3px; }\n    .bp3-large .bp3-menu-item::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      margin-right:10px;\n      margin-top:1px; }\n\nbutton.bp3-menu-item{\n  background:none;\n  border:none;\n  text-align:left;\n  width:100%; }\n.bp3-menu-header{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px;\n  cursor:default;\n  padding-left:2px; }\n  .bp3-dark .bp3-menu-header{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n  .bp3-menu-header:first-of-type{\n    border-top:none; }\n  .bp3-menu-header > h6{\n    color:#182026;\n    font-weight:600;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    line-height:17px;\n    margin:0;\n    padding:10px 7px 0 1px; }\n    .bp3-dark .bp3-menu-header > h6{\n      color:#f5f8fa; }\n  .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n  .bp3-large .bp3-menu-header > h6{\n    font-size:18px;\n    padding-bottom:5px;\n    padding-top:15px; }\n  .bp3-large .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n\n.bp3-dark .bp3-menu{\n  background:#30404d;\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-menu-item{ }\n  .bp3-dark .bp3-menu-item.bp3-intent-primary{\n    color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary::before, .bp3-dark .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary:active, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-success{\n    color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success::before, .bp3-dark .bp3-menu-item.bp3-intent-success::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success:active, .bp3-dark .bp3-menu-item.bp3-intent-success:active::before, .bp3-dark .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-warning{\n    color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning::before, .bp3-dark .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning:active, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-danger{\n    color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger::before, .bp3-dark .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger:active, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item::before,\n  .bp3-dark .bp3-menu-item > .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item .bp3-menu-item-label{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item.bp3-active, .bp3-dark .bp3-menu-item:active{\n    background-color:rgba(138, 155, 168, 0.3); }\n  .bp3-dark .bp3-menu-item.bp3-disabled{\n    color:rgba(167, 182, 194, 0.6) !important; }\n    .bp3-dark .bp3-menu-item.bp3-disabled::before,\n    .bp3-dark .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-dark .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(167, 182, 194, 0.6) !important; }\n\n.bp3-dark .bp3-menu-divider,\n.bp3-dark .bp3-menu-header{\n  border-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-dark .bp3-menu-header > h6{\n  color:#f5f8fa; }\n\n.bp3-label .bp3-menu{\n  margin-top:5px; }\n.bp3-navbar{\n  background-color:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  height:50px;\n  padding:0 15px;\n  position:relative;\n  width:100%;\n  z-index:10; }\n  .bp3-navbar.bp3-dark,\n  .bp3-dark .bp3-navbar{\n    background-color:#394b59; }\n  .bp3-navbar.bp3-dark{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-navbar{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-navbar.bp3-fixed-top{\n    left:0;\n    position:fixed;\n    right:0;\n    top:0; }\n\n.bp3-navbar-heading{\n  font-size:16px;\n  margin-right:15px; }\n\n.bp3-navbar-group{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:50px; }\n  .bp3-navbar-group.bp3-align-left{\n    float:left; }\n  .bp3-navbar-group.bp3-align-right{\n    float:right; }\n\n.bp3-navbar-divider{\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  height:20px;\n  margin:0 10px; }\n  .bp3-dark .bp3-navbar-divider{\n    border-left-color:rgba(255, 255, 255, 0.15); }\n.bp3-non-ideal-state{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  height:100%;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  text-align:center;\n  width:100%; }\n  .bp3-non-ideal-state > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-non-ideal-state > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-non-ideal-state::before,\n  .bp3-non-ideal-state > *{\n    margin-bottom:20px; }\n  .bp3-non-ideal-state:empty::before,\n  .bp3-non-ideal-state > :last-child{\n    margin-bottom:0; }\n  .bp3-non-ideal-state > *{\n    max-width:400px; }\n\n.bp3-non-ideal-state-visual{\n  color:rgba(92, 112, 128, 0.6);\n  font-size:60px; }\n  .bp3-dark .bp3-non-ideal-state-visual{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-overflow-list{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:nowrap;\n      flex-wrap:nowrap;\n  min-width:0; }\n\n.bp3-overflow-list-spacer{\n  -ms-flex-negative:1;\n      flex-shrink:1;\n  width:1px; }\n\nbody.bp3-overlay-open{\n  overflow:hidden; }\n\n.bp3-overlay{\n  bottom:0;\n  left:0;\n  position:static;\n  right:0;\n  top:0;\n  z-index:20; }\n  .bp3-overlay:not(.bp3-overlay-open){\n    pointer-events:none; }\n  .bp3-overlay.bp3-overlay-container{\n    overflow:hidden;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-scroll-container{\n    overflow:auto;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-scroll-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-inline{\n    display:inline;\n    overflow:visible; }\n\n.bp3-overlay-content{\n  position:fixed;\n  z-index:20; }\n  .bp3-overlay-inline .bp3-overlay-content,\n  .bp3-overlay-scroll-container .bp3-overlay-content{\n    position:absolute; }\n\n.bp3-overlay-backdrop{\n  bottom:0;\n  left:0;\n  position:fixed;\n  right:0;\n  top:0;\n  opacity:1;\n  background-color:rgba(16, 22, 26, 0.7);\n  overflow:auto;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  z-index:20; }\n  .bp3-overlay-backdrop.bp3-overlay-enter, .bp3-overlay-backdrop.bp3-overlay-appear{\n    opacity:0; }\n  .bp3-overlay-backdrop.bp3-overlay-enter-active, .bp3-overlay-backdrop.bp3-overlay-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop.bp3-overlay-exit{\n    opacity:1; }\n  .bp3-overlay-backdrop.bp3-overlay-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop:focus{\n    outline:none; }\n  .bp3-overlay-inline .bp3-overlay-backdrop{\n    position:absolute; }\n.bp3-panel-stack{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-view{\n    background-color:#30404d; }\n  .bp3-panel-stack-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter, .bp3-panel-stack-push .bp3-panel-stack-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter-active, .bp3-panel-stack-push .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter, .bp3-panel-stack-pop .bp3-panel-stack-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter-active, .bp3-panel-stack-pop .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-panel-stack2{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack2-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack2-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack2-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack2-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack2-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack2-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-view{\n    background-color:#30404d; }\n  .bp3-panel-stack2-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter, .bp3-panel-stack2-push .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter-active, .bp3-panel-stack2-push .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter, .bp3-panel-stack2-pop .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter-active, .bp3-panel-stack2-pop .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-popover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  border-radius:3px;\n  display:inline-block;\n  z-index:20; }\n  .bp3-popover .bp3-popover-arrow{\n    height:30px;\n    position:absolute;\n    width:30px; }\n    .bp3-popover .bp3-popover-arrow::before{\n      height:20px;\n      margin:5px;\n      width:20px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover{\n    margin-bottom:17px;\n    margin-top:-17px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n      bottom:-11px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover{\n    margin-left:17px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n      left:-11px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover{\n    margin-top:17px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n      top:-11px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover{\n    margin-left:-17px;\n    margin-right:17px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n      right:-11px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-popover > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-popover > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n    top:-0.3934px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n    right:-0.3934px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n    left:-0.3934px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n    bottom:-0.3934px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-popover .bp3-popover-content{\n    background:#ffffff;\n    color:inherit; }\n  .bp3-popover .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-popover .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-popover .bp3-popover-arrow-fill{\n    fill:#ffffff; }\n  .bp3-popover-enter > .bp3-popover, .bp3-popover-appear > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3); }\n  .bp3-popover-enter-active > .bp3-popover, .bp3-popover-appear-active > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover-exit > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover .bp3-popover-content{\n    border-radius:3px;\n    position:relative; }\n  .bp3-popover.bp3-popover-content-sizing .bp3-popover-content{\n    max-width:350px;\n    padding:20px; }\n  .bp3-popover-target + .bp3-overlay .bp3-popover.bp3-popover-content-sizing{\n    width:350px; }\n  .bp3-popover.bp3-minimal{\n    margin:0 !important; }\n    .bp3-popover.bp3-minimal .bp3-popover-arrow{\n      display:none; }\n    .bp3-popover.bp3-minimal.bp3-popover{\n      -webkit-transform:scale(1);\n              transform:scale(1); }\n      .bp3-popover-enter > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-enter-active > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n      .bp3-popover-exit > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-exit-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover.bp3-dark,\n  .bp3-dark .bp3-popover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-popover .bp3-popover-content{\n      background:#30404d;\n      color:inherit; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-popover .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-fill{\n      fill:#30404d; }\n\n.bp3-popover-arrow::before{\n  border-radius:2px;\n  content:\"\";\n  display:block;\n  position:absolute;\n  -webkit-transform:rotate(45deg);\n          transform:rotate(45deg); }\n\n.bp3-tether-pinned .bp3-popover-arrow{\n  display:none; }\n\n.bp3-popover-backdrop{\n  background:rgba(255, 255, 255, 0); }\n\n.bp3-transition-container{\n  opacity:1;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  z-index:20; }\n  .bp3-transition-container.bp3-popover-enter, .bp3-transition-container.bp3-popover-appear{\n    opacity:0; }\n  .bp3-transition-container.bp3-popover-enter-active, .bp3-transition-container.bp3-popover-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container.bp3-popover-exit{\n    opacity:1; }\n  .bp3-transition-container.bp3-popover-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container:focus{\n    outline:none; }\n  .bp3-transition-container.bp3-popover-leave .bp3-popover-content{\n    pointer-events:none; }\n  .bp3-transition-container[data-x-out-of-boundaries]{\n    display:none; }\n\nspan.bp3-popover-target{\n  display:inline-block; }\n\n.bp3-popover-wrapper.bp3-fill{\n  width:100%; }\n\n.bp3-portal{\n  left:0;\n  position:absolute;\n  right:0;\n  top:0; }\n@-webkit-keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n@keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n\n.bp3-progress-bar{\n  background:rgba(92, 112, 128, 0.2);\n  border-radius:40px;\n  display:block;\n  height:8px;\n  overflow:hidden;\n  position:relative;\n  width:100%; }\n  .bp3-progress-bar .bp3-progress-meter{\n    background:linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%);\n    background-color:rgba(92, 112, 128, 0.8);\n    background-size:30px 30px;\n    border-radius:40px;\n    height:100%;\n    position:absolute;\n    -webkit-transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:100%; }\n  .bp3-progress-bar:not(.bp3-no-animation):not(.bp3-no-stripes) .bp3-progress-meter{\n    animation:linear-progress-bar-stripes 300ms linear infinite reverse; }\n  .bp3-progress-bar.bp3-no-stripes .bp3-progress-meter{\n    background-image:none; }\n\n.bp3-dark .bp3-progress-bar{\n  background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-progress-bar .bp3-progress-meter{\n    background-color:#8a9ba8; }\n\n.bp3-progress-bar.bp3-intent-primary .bp3-progress-meter{\n  background-color:#137cbd; }\n\n.bp3-progress-bar.bp3-intent-success .bp3-progress-meter{\n  background-color:#0f9960; }\n\n.bp3-progress-bar.bp3-intent-warning .bp3-progress-meter{\n  background-color:#d9822b; }\n\n.bp3-progress-bar.bp3-intent-danger .bp3-progress-meter{\n  background-color:#db3737; }\n@-webkit-keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n@keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n.bp3-skeleton{\n  -webkit-animation:1000ms linear infinite alternate skeleton-glow;\n          animation:1000ms linear infinite alternate skeleton-glow;\n  background:rgba(206, 217, 224, 0.2);\n  background-clip:padding-box !important;\n  border-color:rgba(206, 217, 224, 0.2) !important;\n  border-radius:2px;\n  -webkit-box-shadow:none !important;\n          box-shadow:none !important;\n  color:transparent !important;\n  cursor:default;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-skeleton::before, .bp3-skeleton::after,\n  .bp3-skeleton *{\n    visibility:hidden !important; }\n.bp3-slider{\n  height:40px;\n  min-width:150px;\n  width:100%;\n  cursor:default;\n  outline:none;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-slider:hover{\n    cursor:pointer; }\n  .bp3-slider:active{\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-slider.bp3-disabled{\n    cursor:not-allowed;\n    opacity:0.5; }\n  .bp3-slider.bp3-slider-unlabeled{\n    height:16px; }\n\n.bp3-slider-track,\n.bp3-slider-progress{\n  height:6px;\n  left:0;\n  right:0;\n  top:5px;\n  position:absolute; }\n\n.bp3-slider-track{\n  border-radius:3px;\n  overflow:hidden; }\n\n.bp3-slider-progress{\n  background:rgba(92, 112, 128, 0.2); }\n  .bp3-dark .bp3-slider-progress{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-slider-progress.bp3-intent-primary{\n    background-color:#137cbd; }\n  .bp3-slider-progress.bp3-intent-success{\n    background-color:#0f9960; }\n  .bp3-slider-progress.bp3-intent-warning{\n    background-color:#d9822b; }\n  .bp3-slider-progress.bp3-intent-danger{\n    background-color:#db3737; }\n\n.bp3-slider-handle{\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n  cursor:pointer;\n  height:16px;\n  left:0;\n  position:absolute;\n  top:0;\n  width:16px; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-slider-handle:active, .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-slider-handle:disabled, .bp3-slider-handle.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-slider-handle:disabled.bp3-active, .bp3-slider-handle:disabled.bp3-active:hover, .bp3-slider-handle.bp3-disabled.bp3-active, .bp3-slider-handle.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n  .bp3-slider-handle:focus{\n    z-index:1; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n    cursor:-webkit-grab;\n    cursor:grab;\n    z-index:2; }\n  .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-disabled .bp3-slider-handle{\n    background:#bfccd6;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    pointer-events:none; }\n  .bp3-dark .bp3-slider-handle{\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover, .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-slider-handle:disabled, .bp3-dark .bp3-slider-handle.bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-slider-handle:disabled.bp3-active, .bp3-dark .bp3-slider-handle.bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-slider-handle .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-slider-handle, .bp3-dark .bp3-slider-handle:hover{\n      background-color:#394b59; }\n    .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#293742; }\n  .bp3-dark .bp3-disabled .bp3-slider-handle{\n    background:#5c7080;\n    border-color:#5c7080;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-slider-handle .bp3-slider-label{\n    background:#394b59;\n    border-radius:3px;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n    color:#f5f8fa;\n    margin-left:8px; }\n    .bp3-dark .bp3-slider-handle .bp3-slider-label{\n      background:#e1e8ed;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n      color:#394b59; }\n    .bp3-disabled .bp3-slider-handle .bp3-slider-label{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-slider-handle.bp3-start, .bp3-slider-handle.bp3-end{\n    width:8px; }\n  .bp3-slider-handle.bp3-start{\n    border-bottom-right-radius:0;\n    border-top-right-radius:0; }\n  .bp3-slider-handle.bp3-end{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0;\n    margin-left:8px; }\n    .bp3-slider-handle.bp3-end .bp3-slider-label{\n      margin-left:0; }\n\n.bp3-slider-label{\n  -webkit-transform:translate(-50%, 20px);\n          transform:translate(-50%, 20px);\n  display:inline-block;\n  font-size:12px;\n  line-height:1;\n  padding:2px 5px;\n  position:absolute;\n  vertical-align:top; }\n\n.bp3-slider.bp3-vertical{\n  height:150px;\n  min-width:40px;\n  width:40px; }\n  .bp3-slider.bp3-vertical .bp3-slider-track,\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    bottom:0;\n    height:auto;\n    left:5px;\n    top:0;\n    width:6px; }\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    top:auto; }\n  .bp3-slider.bp3-vertical .bp3-slider-label{\n    -webkit-transform:translate(20px, 50%);\n            transform:translate(20px, 50%); }\n  .bp3-slider.bp3-vertical .bp3-slider-handle{\n    top:auto; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle .bp3-slider-label{\n      margin-left:0;\n      margin-top:-8px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end, .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      height:8px;\n      margin-left:0;\n      width:16px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      border-bottom-right-radius:3px;\n      border-top-left-radius:0; }\n      .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start .bp3-slider-label{\n        -webkit-transform:translate(20px);\n                transform:translate(20px); }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end{\n      border-bottom-left-radius:0;\n      border-bottom-right-radius:0;\n      border-top-left-radius:3px;\n      margin-bottom:8px; }\n\n@-webkit-keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n@keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n.bp3-spinner{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  overflow:visible;\n  vertical-align:middle; }\n  .bp3-spinner svg{\n    display:block; }\n  .bp3-spinner path{\n    fill-opacity:0; }\n  .bp3-spinner .bp3-spinner-head{\n    stroke:rgba(92, 112, 128, 0.8);\n    stroke-linecap:round;\n    -webkit-transform-origin:center;\n            transform-origin:center;\n    -webkit-transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-spinner .bp3-spinner-track{\n    stroke:rgba(92, 112, 128, 0.2); }\n\n.bp3-spinner-animation{\n  -webkit-animation:pt-spinner-animation 500ms linear infinite;\n          animation:pt-spinner-animation 500ms linear infinite; }\n  .bp3-no-spin > .bp3-spinner-animation{\n    -webkit-animation:none;\n            animation:none; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-head{\n  stroke:#8a9ba8; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-track{\n  stroke:rgba(16, 22, 26, 0.5); }\n\n.bp3-spinner.bp3-intent-primary .bp3-spinner-head{\n  stroke:#137cbd; }\n\n.bp3-spinner.bp3-intent-success .bp3-spinner-head{\n  stroke:#0f9960; }\n\n.bp3-spinner.bp3-intent-warning .bp3-spinner-head{\n  stroke:#d9822b; }\n\n.bp3-spinner.bp3-intent-danger .bp3-spinner-head{\n  stroke:#db3737; }\n.bp3-tabs.bp3-vertical{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-list{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab{\n      border-radius:3px;\n      padding:0 10px;\n      width:100%; }\n      .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab[aria-selected=\"true\"]{\n        background-color:rgba(19, 124, 189, 0.2);\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n      background-color:rgba(19, 124, 189, 0.2);\n      border-radius:3px;\n      bottom:0;\n      height:auto;\n      left:0;\n      right:0;\n      top:0; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-panel{\n    margin-top:0;\n    padding-left:20px; }\n\n.bp3-tab-list{\n  -webkit-box-align:end;\n      -ms-flex-align:end;\n          align-items:flex-end;\n  border:none;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  list-style:none;\n  margin:0;\n  padding:0;\n  position:relative; }\n  .bp3-tab-list > *:not(:last-child){\n    margin-right:20px; }\n\n.bp3-tab{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:#182026;\n  cursor:pointer;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  font-size:14px;\n  line-height:30px;\n  max-width:100%;\n  position:relative;\n  vertical-align:top; }\n  .bp3-tab a{\n    color:inherit;\n    display:block;\n    text-decoration:none; }\n  .bp3-tab-indicator-wrapper ~ .bp3-tab{\n    background-color:transparent !important;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important; }\n  .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-tab[aria-selected=\"true\"]{\n    border-radius:0;\n    -webkit-box-shadow:inset 0 -3px 0 #106ba3;\n            box-shadow:inset 0 -3px 0 #106ba3; }\n  .bp3-tab[aria-selected=\"true\"], .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#106ba3; }\n  .bp3-tab:focus{\n    -moz-outline-radius:0; }\n  .bp3-large > .bp3-tab{\n    font-size:16px;\n    line-height:40px; }\n\n.bp3-tab-panel{\n  margin-top:20px; }\n  .bp3-tab-panel[aria-hidden=\"true\"]{\n    display:none; }\n\n.bp3-tab-indicator-wrapper{\n  left:0;\n  pointer-events:none;\n  position:absolute;\n  top:0;\n  -webkit-transform:translateX(0), translateY(0);\n          transform:translateX(0), translateY(0);\n  -webkit-transition:height, width, -webkit-transform;\n  transition:height, width, -webkit-transform;\n  transition:height, transform, width;\n  transition:height, transform, width, -webkit-transform;\n  -webkit-transition-duration:200ms;\n          transition-duration:200ms;\n  -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n          transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n    background-color:#106ba3;\n    bottom:0;\n    height:3px;\n    left:0;\n    position:absolute;\n    right:0; }\n  .bp3-tab-indicator-wrapper.bp3-no-animation{\n    -webkit-transition:none;\n    transition:none; }\n\n.bp3-dark .bp3-tab{\n  color:#f5f8fa; }\n  .bp3-dark .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"]{\n    -webkit-box-shadow:inset 0 -3px 0 #48aff0;\n            box-shadow:inset 0 -3px 0 #48aff0; }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"], .bp3-dark .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#48aff0; }\n\n.bp3-dark .bp3-tab-indicator{\n  background-color:#48aff0; }\n\n.bp3-flex-expander{\n  -webkit-box-flex:1;\n      -ms-flex:1 1;\n          flex:1 1; }\n.bp3-tag{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#5c7080;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:#f5f8fa;\n  font-size:12px;\n  line-height:16px;\n  max-width:100%;\n  min-height:20px;\n  min-width:20px;\n  padding:2px 6px;\n  position:relative; }\n  .bp3-tag.bp3-interactive{\n    cursor:pointer; }\n    .bp3-tag.bp3-interactive:hover{\n      background-color:rgba(92, 112, 128, 0.85); }\n    .bp3-tag.bp3-interactive.bp3-active, .bp3-tag.bp3-interactive:active{\n      background-color:rgba(92, 112, 128, 0.7); }\n  .bp3-tag > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag::before,\n  .bp3-tag > *{\n    margin-right:4px; }\n  .bp3-tag:empty::before,\n  .bp3-tag > :last-child{\n    margin-right:0; }\n  .bp3-tag:focus{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:0;\n    -moz-outline-radius:6px; }\n  .bp3-tag.bp3-round{\n    border-radius:30px;\n    padding-left:8px;\n    padding-right:8px; }\n  .bp3-dark .bp3-tag{\n    background-color:#bfccd6;\n    color:#182026; }\n    .bp3-dark .bp3-tag.bp3-interactive{\n      cursor:pointer; }\n      .bp3-dark .bp3-tag.bp3-interactive:hover{\n        background-color:rgba(191, 204, 214, 0.85); }\n      .bp3-dark .bp3-tag.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-interactive:active{\n        background-color:rgba(191, 204, 214, 0.7); }\n    .bp3-dark .bp3-tag > .bp3-icon, .bp3-dark .bp3-tag .bp3-icon-standard, .bp3-dark .bp3-tag .bp3-icon-large{\n      fill:currentColor; }\n  .bp3-tag > .bp3-icon, .bp3-tag .bp3-icon-standard, .bp3-tag .bp3-icon-large{\n    fill:#ffffff; }\n  .bp3-tag.bp3-large,\n  .bp3-large .bp3-tag{\n    font-size:14px;\n    line-height:20px;\n    min-height:30px;\n    min-width:30px;\n    padding:5px 10px; }\n    .bp3-tag.bp3-large::before,\n    .bp3-tag.bp3-large > *,\n    .bp3-large .bp3-tag::before,\n    .bp3-large .bp3-tag > *{\n      margin-right:7px; }\n    .bp3-tag.bp3-large:empty::before,\n    .bp3-tag.bp3-large > :last-child,\n    .bp3-large .bp3-tag:empty::before,\n    .bp3-large .bp3-tag > :last-child{\n      margin-right:0; }\n    .bp3-tag.bp3-large.bp3-round,\n    .bp3-large .bp3-tag.bp3-round{\n      padding-left:12px;\n      padding-right:12px; }\n  .bp3-tag.bp3-intent-primary{\n    background:#137cbd;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.85); }\n      .bp3-tag.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.7); }\n  .bp3-tag.bp3-intent-success{\n    background:#0f9960;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.85); }\n      .bp3-tag.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.7); }\n  .bp3-tag.bp3-intent-warning{\n    background:#d9822b;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.85); }\n      .bp3-tag.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.7); }\n  .bp3-tag.bp3-intent-danger{\n    background:#db3737;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.85); }\n      .bp3-tag.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.7); }\n  .bp3-tag.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-tag.bp3-minimal > .bp3-icon, .bp3-tag.bp3-minimal .bp3-icon-standard, .bp3-tag.bp3-minimal .bp3-icon-large{\n    fill:#5c7080; }\n  .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n    background-color:rgba(138, 155, 168, 0.2);\n    color:#182026; }\n    .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n        background-color:rgba(92, 112, 128, 0.3); }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n        background-color:rgba(92, 112, 128, 0.4); }\n    .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n      color:#f5f8fa; }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n          background-color:rgba(191, 204, 214, 0.3); }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n          background-color:rgba(191, 204, 214, 0.4); }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) > .bp3-icon, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n        fill:#a7b6c2; }\n  .bp3-tag.bp3-minimal.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15);\n    color:#106ba3; }\n    .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-primary > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-large{\n      fill:#137cbd; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25);\n      color:#48aff0; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n          background-color:rgba(19, 124, 189, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n          background-color:rgba(19, 124, 189, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15);\n    color:#0d8050; }\n    .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-success > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-large{\n      fill:#0f9960; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25);\n      color:#3dcc91; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n          background-color:rgba(15, 153, 96, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n          background-color:rgba(15, 153, 96, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15);\n    color:#bf7326; }\n    .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-warning > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-large{\n      fill:#d9822b; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25);\n      color:#ffb366; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n          background-color:rgba(217, 130, 43, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n          background-color:rgba(217, 130, 43, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15);\n    color:#c23030; }\n    .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-danger > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-large{\n      fill:#db3737; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25);\n      color:#ff7373; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n          background-color:rgba(219, 55, 55, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n          background-color:rgba(219, 55, 55, 0.45); }\n\n.bp3-tag-remove{\n  background:none;\n  border:none;\n  color:inherit;\n  cursor:pointer;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin-bottom:-2px;\n  margin-right:-6px !important;\n  margin-top:-2px;\n  opacity:0.5;\n  padding:2px;\n  padding-left:0; }\n  .bp3-tag-remove:hover{\n    background:none;\n    opacity:0.8;\n    text-decoration:none; }\n  .bp3-tag-remove:active{\n    opacity:1; }\n  .bp3-tag-remove:empty::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    content:\"\"; }\n  .bp3-large .bp3-tag-remove{\n    margin-right:-10px !important;\n    padding:0 5px 0 0; }\n    .bp3-large .bp3-tag-remove:empty::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1; }\n.bp3-tag-input{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  cursor:text;\n  height:auto;\n  line-height:inherit;\n  min-height:30px;\n  padding-left:5px;\n  padding-right:0; }\n  .bp3-tag-input > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag-input > .bp3-tag-input-values{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag-input .bp3-tag-input-icon{\n    color:#5c7080;\n    margin-left:2px;\n    margin-right:7px;\n    margin-top:7px; }\n  .bp3-tag-input .bp3-tag-input-values{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row;\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    -ms-flex-item-align:stretch;\n        align-self:stretch;\n    -ms-flex-wrap:wrap;\n        flex-wrap:wrap;\n    margin-right:7px;\n    margin-top:5px;\n    min-width:0; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      -webkit-box-flex:0;\n          -ms-flex-positive:0;\n              flex-grow:0;\n      -ms-flex-negative:0;\n          flex-shrink:0; }\n    .bp3-tag-input .bp3-tag-input-values > .bp3-fill{\n      -webkit-box-flex:1;\n          -ms-flex-positive:1;\n              flex-grow:1;\n      -ms-flex-negative:1;\n          flex-shrink:1; }\n    .bp3-tag-input .bp3-tag-input-values::before,\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-right:5px; }\n    .bp3-tag-input .bp3-tag-input-values:empty::before,\n    .bp3-tag-input .bp3-tag-input-values > :last-child{\n      margin-right:0; }\n    .bp3-tag-input .bp3-tag-input-values:first-child .bp3-input-ghost:first-child{\n      padding-left:5px; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-bottom:5px; }\n  .bp3-tag-input .bp3-tag{\n    overflow-wrap:break-word; }\n    .bp3-tag-input .bp3-tag.bp3-active{\n      outline:rgba(19, 124, 189, 0.6) auto 2px;\n      outline-offset:0;\n      -moz-outline-radius:6px; }\n  .bp3-tag-input .bp3-input-ghost{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:20px;\n    width:80px; }\n    .bp3-tag-input .bp3-input-ghost:disabled, .bp3-tag-input .bp3-input-ghost.bp3-disabled{\n      cursor:not-allowed; }\n  .bp3-tag-input .bp3-button,\n  .bp3-tag-input .bp3-spinner{\n    margin:3px;\n    margin-left:0; }\n  .bp3-tag-input .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-tag-input.bp3-large{\n    height:auto;\n    min-height:40px; }\n    .bp3-tag-input.bp3-large::before,\n    .bp3-tag-input.bp3-large > *{\n      margin-right:10px; }\n    .bp3-tag-input.bp3-large:empty::before,\n    .bp3-tag-input.bp3-large > :last-child{\n      margin-right:0; }\n    .bp3-tag-input.bp3-large .bp3-tag-input-icon{\n      margin-left:5px;\n      margin-top:10px; }\n    .bp3-tag-input.bp3-large .bp3-input-ghost{\n      line-height:30px; }\n    .bp3-tag-input.bp3-large .bp3-button{\n      min-height:30px;\n      min-width:30px;\n      padding:5px 10px;\n      margin:5px;\n      margin-left:0; }\n    .bp3-tag-input.bp3-large .bp3-spinner{\n      margin:8px;\n      margin-left:0; }\n  .bp3-tag-input.bp3-active{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-tag-input .bp3-tag-input-icon, .bp3-tag-input.bp3-dark .bp3-tag-input-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-tag-input .bp3-input-ghost, .bp3-tag-input.bp3-dark .bp3-input-ghost{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-webkit-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-moz-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost:-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tag-input.bp3-active, .bp3-tag-input.bp3-dark.bp3-active{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-primary, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-success, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-warning, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-danger, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-input-ghost{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0; }\n  .bp3-input-ghost::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:focus{\n    outline:none !important; }\n.bp3-toast{\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:20px 0 0;\n  max-width:500px;\n  min-width:300px;\n  pointer-events:all;\n  position:relative !important; }\n  .bp3-toast.bp3-toast-enter, .bp3-toast.bp3-toast-appear{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active, .bp3-toast.bp3-toast-appear-active{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-enter ~ .bp3-toast, .bp3-toast.bp3-toast-appear ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active ~ .bp3-toast, .bp3-toast.bp3-toast-appear-active ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-exit{\n    opacity:1;\n    -webkit-filter:blur(0);\n            filter:blur(0); }\n  .bp3-toast.bp3-toast-exit-active{\n    opacity:0;\n    -webkit-filter:blur(10px);\n            filter:blur(10px);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:opacity, filter;\n    transition-property:opacity, filter, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast.bp3-toast-exit ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0); }\n  .bp3-toast.bp3-toast-exit-active ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px);\n    -webkit-transition-delay:50ms;\n            transition-delay:50ms;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast .bp3-button-group{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    padding:5px;\n    padding-left:0; }\n  .bp3-toast > .bp3-icon{\n    color:#5c7080;\n    margin:12px;\n    margin-right:0; }\n  .bp3-toast.bp3-dark,\n  .bp3-dark .bp3-toast{\n    background-color:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-toast.bp3-dark > .bp3-icon,\n    .bp3-dark .bp3-toast > .bp3-icon{\n      color:#a7b6c2; }\n  .bp3-toast[class*=\"bp3-intent-\"] a{\n    color:rgba(255, 255, 255, 0.7); }\n    .bp3-toast[class*=\"bp3-intent-\"] a:hover{\n      color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] > .bp3-icon{\n    color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::before,\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button .bp3-icon, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    color:rgba(255, 255, 255, 0.7) !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:focus{\n    outline-color:rgba(255, 255, 255, 0.5); }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:hover{\n    background-color:rgba(255, 255, 255, 0.15) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    background-color:rgba(255, 255, 255, 0.3) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::after{\n    background:rgba(255, 255, 255, 0.3) !important; }\n  .bp3-toast.bp3-intent-primary{\n    background-color:#137cbd;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-success{\n    background-color:#0f9960;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-warning{\n    background-color:#d9822b;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-danger{\n    background-color:#db3737;\n    color:#ffffff; }\n\n.bp3-toast-message{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  padding:11px;\n  word-break:break-word; }\n\n.bp3-toast-container{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box !important;\n  display:-ms-flexbox !important;\n  display:flex !important;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  left:0;\n  overflow:hidden;\n  padding:0 20px 20px;\n  pointer-events:none;\n  right:0;\n  z-index:40; }\n  .bp3-toast-container.bp3-toast-container-in-portal{\n    position:fixed; }\n  .bp3-toast-container.bp3-toast-container-inline{\n    position:absolute; }\n  .bp3-toast-container.bp3-toast-container-top{\n    top:0; }\n  .bp3-toast-container.bp3-toast-container-bottom{\n    bottom:0;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:reverse;\n        -ms-flex-direction:column-reverse;\n            flex-direction:column-reverse;\n    top:auto; }\n  .bp3-toast-container.bp3-toast-container-left{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start; }\n  .bp3-toast-container.bp3-toast-container-right{\n    -webkit-box-align:end;\n        -ms-flex-align:end;\n            align-items:flex-end; }\n\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active) ~ .bp3-toast, .bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active) ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-exit-active ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-leave-active ~ .bp3-toast{\n  -webkit-transform:translateY(60px);\n          transform:translateY(60px); }\n.bp3-tooltip{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1); }\n  .bp3-tooltip .bp3-popover-arrow{\n    height:22px;\n    position:absolute;\n    width:22px; }\n    .bp3-tooltip .bp3-popover-arrow::before{\n      height:14px;\n      margin:4px;\n      width:14px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip{\n    margin-bottom:11px;\n    margin-top:-11px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n      bottom:-8px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip{\n    margin-left:11px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n      left:-8px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip{\n    margin-top:11px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n      top:-8px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip{\n    margin-left:-11px;\n    margin-right:11px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n      right:-8px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-tooltip > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-tooltip > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n    top:-0.22183px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n    right:-0.22183px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n    left:-0.22183px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n    bottom:-0.22183px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-tooltip .bp3-popover-content{\n    background:#394b59;\n    color:#f5f8fa; }\n  .bp3-tooltip .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-tooltip .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-tooltip .bp3-popover-arrow-fill{\n    fill:#394b59; }\n  .bp3-popover-enter > .bp3-tooltip, .bp3-popover-appear > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8); }\n  .bp3-popover-enter-active > .bp3-tooltip, .bp3-popover-appear-active > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover-exit > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tooltip .bp3-popover-content{\n    padding:10px 12px; }\n  .bp3-tooltip.bp3-dark,\n  .bp3-dark .bp3-tooltip{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-tooltip .bp3-popover-content{\n      background:#e1e8ed;\n      color:#394b59; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-fill{\n      fill:#e1e8ed; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-content{\n    background:#137cbd;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-arrow-fill{\n    fill:#137cbd; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-content{\n    background:#0f9960;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-arrow-fill{\n    fill:#0f9960; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-content{\n    background:#d9822b;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-arrow-fill{\n    fill:#d9822b; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-content{\n    background:#db3737;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-arrow-fill{\n    fill:#db3737; }\n\n.bp3-tooltip-indicator{\n  border-bottom:dotted 1px;\n  cursor:help; }\n.bp3-tree .bp3-icon, .bp3-tree .bp3-icon-standard, .bp3-tree .bp3-icon-large{\n  color:#5c7080; }\n  .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-tree .bp3-icon.bp3-intent-success, .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-tree-node-list{\n  list-style:none;\n  margin:0;\n  padding-left:0; }\n\n.bp3-tree-root{\n  background-color:transparent;\n  cursor:default;\n  padding-left:0;\n  position:relative; }\n\n.bp3-tree-node-content-0{\n  padding-left:0px; }\n\n.bp3-tree-node-content-1{\n  padding-left:23px; }\n\n.bp3-tree-node-content-2{\n  padding-left:46px; }\n\n.bp3-tree-node-content-3{\n  padding-left:69px; }\n\n.bp3-tree-node-content-4{\n  padding-left:92px; }\n\n.bp3-tree-node-content-5{\n  padding-left:115px; }\n\n.bp3-tree-node-content-6{\n  padding-left:138px; }\n\n.bp3-tree-node-content-7{\n  padding-left:161px; }\n\n.bp3-tree-node-content-8{\n  padding-left:184px; }\n\n.bp3-tree-node-content-9{\n  padding-left:207px; }\n\n.bp3-tree-node-content-10{\n  padding-left:230px; }\n\n.bp3-tree-node-content-11{\n  padding-left:253px; }\n\n.bp3-tree-node-content-12{\n  padding-left:276px; }\n\n.bp3-tree-node-content-13{\n  padding-left:299px; }\n\n.bp3-tree-node-content-14{\n  padding-left:322px; }\n\n.bp3-tree-node-content-15{\n  padding-left:345px; }\n\n.bp3-tree-node-content-16{\n  padding-left:368px; }\n\n.bp3-tree-node-content-17{\n  padding-left:391px; }\n\n.bp3-tree-node-content-18{\n  padding-left:414px; }\n\n.bp3-tree-node-content-19{\n  padding-left:437px; }\n\n.bp3-tree-node-content-20{\n  padding-left:460px; }\n\n.bp3-tree-node-content{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:30px;\n  padding-right:5px;\n  width:100%; }\n  .bp3-tree-node-content:hover{\n    background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-tree-node-caret,\n.bp3-tree-node-caret-none{\n  min-width:30px; }\n\n.bp3-tree-node-caret{\n  color:#5c7080;\n  cursor:pointer;\n  padding:7px;\n  -webkit-transform:rotate(0deg);\n          transform:rotate(0deg);\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tree-node-caret:hover{\n    color:#182026; }\n  .bp3-dark .bp3-tree-node-caret{\n    color:#a7b6c2; }\n    .bp3-dark .bp3-tree-node-caret:hover{\n      color:#f5f8fa; }\n  .bp3-tree-node-caret.bp3-tree-node-caret-open{\n    -webkit-transform:rotate(90deg);\n            transform:rotate(90deg); }\n  .bp3-tree-node-caret.bp3-icon-standard::before{\n    content:\"\"; }\n\n.bp3-tree-node-icon{\n  margin-right:7px;\n  position:relative; }\n\n.bp3-tree-node-label{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-label span{\n    display:inline; }\n\n.bp3-tree-node-secondary-label{\n  padding:0 5px;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-secondary-label .bp3-popover-wrapper,\n  .bp3-tree-node-secondary-label .bp3-popover-target{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-content{\n  background-color:inherit;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-caret,\n.bp3-tree-node.bp3-disabled .bp3-tree-node-icon{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content,\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-standard, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-large{\n    color:#ffffff; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret::before{\n    color:rgba(255, 255, 255, 0.7); }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret:hover::before{\n    color:#ffffff; }\n\n.bp3-dark .bp3-tree-node-content:hover{\n  background-color:rgba(92, 112, 128, 0.3); }\n\n.bp3-dark .bp3-tree .bp3-icon, .bp3-dark .bp3-tree .bp3-icon-standard, .bp3-dark .bp3-tree .bp3-icon-large{\n  color:#a7b6c2; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-dark .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n.bp3-omnibar{\n  -webkit-filter:blur(0);\n          filter:blur(0);\n  opacity:1;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  left:calc(50% - 250px);\n  top:20vh;\n  width:500px;\n  z-index:21; }\n  .bp3-omnibar.bp3-overlay-enter, .bp3-omnibar.bp3-overlay-appear{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2; }\n  .bp3-omnibar.bp3-overlay-enter-active, .bp3-omnibar.bp3-overlay-appear-active{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar.bp3-overlay-exit{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1; }\n  .bp3-omnibar.bp3-overlay-exit-active{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar .bp3-input{\n    background-color:transparent;\n    border-radius:0; }\n    .bp3-omnibar .bp3-input, .bp3-omnibar .bp3-input:focus{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-omnibar .bp3-menu{\n    background-color:transparent;\n    border-radius:0;\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n    max-height:calc(60vh - 40px);\n    overflow:auto; }\n    .bp3-omnibar .bp3-menu:empty{\n      display:none; }\n  .bp3-dark .bp3-omnibar, .bp3-omnibar.bp3-dark{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-omnibar-overlay .bp3-overlay-backdrop{\n  background-color:rgba(16, 22, 26, 0.2); }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n\n.bp3-multi-select{\n  min-width:150px; }\n\n.bp3-multi-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto; }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* This file was auto-generated by ensureUiComponents() in @jupyterlab/buildutils */\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n/* Icons urls */\n\n:root {\n  --jp-icon-add: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDEzaC02djZoLTJ2LTZINXYtMmg2VjVoMnY2aDZ2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-bug: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0yMCA4aC0yLjgxYy0uNDUtLjc4LTEuMDctMS40NS0xLjgyLTEuOTZMMTcgNC40MSAxNS41OSAzbC0yLjE3IDIuMTdDMTIuOTYgNS4wNiAxMi40OSA1IDEyIDVjLS40OSAwLS45Ni4wNi0xLjQxLjE3TDguNDEgMyA3IDQuNDFsMS42MiAxLjYzQzcuODggNi41NSA3LjI2IDcuMjIgNi44MSA4SDR2MmgyLjA5Yy0uMDUuMzMtLjA5LjY2LS4wOSAxdjFINHYyaDJ2MWMwIC4zNC4wNC42Ny4wOSAxSDR2MmgyLjgxYzEuMDQgMS43OSAyLjk3IDMgNS4xOSAzczQuMTUtMS4yMSA1LjE5LTNIMjB2LTJoLTIuMDljLjA1LS4zMy4wOS0uNjYuMDktMXYtMWgydi0yaC0ydi0xYzAtLjM0LS4wNC0uNjctLjA5LTFIMjBWOHptLTYgOGgtNHYtMmg0djJ6bTAtNGgtNHYtMmg0djJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-build: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE0LjkgMTcuNDVDMTYuMjUgMTcuNDUgMTcuMzUgMTYuMzUgMTcuMzUgMTVDMTcuMzUgMTMuNjUgMTYuMjUgMTIuNTUgMTQuOSAxMi41NUMxMy41NCAxMi41NSAxMi40NSAxMy42NSAxMi40NSAxNUMxMi40NSAxNi4zNSAxMy41NCAxNy40NSAxNC45IDE3LjQ1Wk0yMC4xIDE1LjY4TDIxLjU4IDE2Ljg0QzIxLjcxIDE2Ljk1IDIxLjc1IDE3LjEzIDIxLjY2IDE3LjI5TDIwLjI2IDE5LjcxQzIwLjE3IDE5Ljg2IDIwIDE5LjkyIDE5LjgzIDE5Ljg2TDE4LjA5IDE5LjE2QzE3LjczIDE5LjQ0IDE3LjMzIDE5LjY3IDE2LjkxIDE5Ljg1TDE2LjY0IDIxLjdDMTYuNjIgMjEuODcgMTYuNDcgMjIgMTYuMyAyMkgxMy41QzEzLjMyIDIyIDEzLjE4IDIxLjg3IDEzLjE1IDIxLjdMMTIuODkgMTkuODVDMTIuNDYgMTkuNjcgMTIuMDcgMTkuNDQgMTEuNzEgMTkuMTZMOS45NjAwMiAxOS44NkM5LjgxMDAyIDE5LjkyIDkuNjIwMDIgMTkuODYgOS41NDAwMiAxOS43MUw4LjE0MDAyIDE3LjI5QzguMDUwMDIgMTcuMTMgOC4wOTAwMiAxNi45NSA4LjIyMDAyIDE2Ljg0TDkuNzAwMDIgMTUuNjhMOS42NTAwMSAxNUw5LjcwMDAyIDE0LjMxTDguMjIwMDIgMTMuMTZDOC4wOTAwMiAxMy4wNSA4LjA1MDAyIDEyLjg2IDguMTQwMDIgMTIuNzFMOS41NDAwMiAxMC4yOUM5LjYyMDAyIDEwLjEzIDkuODEwMDIgMTAuMDcgOS45NjAwMiAxMC4xM0wxMS43MSAxMC44NEMxMi4wNyAxMC41NiAxMi40NiAxMC4zMiAxMi44OSAxMC4xNUwxMy4xNSA4LjI4OTk4QzEzLjE4IDguMTI5OTggMTMuMzIgNy45OTk5OCAxMy41IDcuOTk5OThIMTYuM0MxNi40NyA3Ljk5OTk4IDE2LjYyIDguMTI5OTggMTYuNjQgOC4yODk5OEwxNi45MSAxMC4xNUMxNy4zMyAxMC4zMiAxNy43MyAxMC41NiAxOC4wOSAxMC44NEwxOS44MyAxMC4xM0MyMCAxMC4wNyAyMC4xNyAxMC4xMyAyMC4yNiAxMC4yOUwyMS42NiAxMi43MUMyMS43NSAxMi44NiAyMS43MSAxMy4wNSAyMS41OCAxMy4xNkwyMC4xIDE0LjMxTDIwLjE1IDE1TDIwLjEgMTUuNjhaIi8+CiAgICA8cGF0aCBkPSJNNy4zMjk2NiA3LjQ0NDU0QzguMDgzMSA3LjAwOTU0IDguMzM5MzIgNi4wNTMzMiA3LjkwNDMyIDUuMjk5ODhDNy40NjkzMiA0LjU0NjQzIDYuNTA4MSA0LjI4MTU2IDUuNzU0NjYgNC43MTY1NkM1LjM5MTc2IDQuOTI2MDggNS4xMjY5NSA1LjI3MTE4IDUuMDE4NDkgNS42NzU5NEM0LjkxMDA0IDYuMDgwNzEgNC45NjY4MiA2LjUxMTk4IDUuMTc2MzQgNi44NzQ4OEM1LjYxMTM0IDcuNjI4MzIgNi41NzYyMiA3Ljg3OTU0IDcuMzI5NjYgNy40NDQ1NFpNOS42NTcxOCA0Ljc5NTkzTDEwLjg2NzIgNC45NTE3OUMxMC45NjI4IDQuOTc3NDEgMTEuMDQwMiA1LjA3MTMzIDExLjAzODIgNS4xODc5M0wxMS4wMzg4IDYuOTg4OTNDMTEuMDQ1NSA3LjEwMDU0IDEwLjk2MTYgNy4xOTUxOCAxMC44NTUgNy4yMTA1NEw5LjY2MDAxIDcuMzgwODNMOS4yMzkxNSA4LjEzMTg4TDkuNjY5NjEgOS4yNTc0NUM5LjcwNzI5IDkuMzYyNzEgOS42NjkzNCA5LjQ3Njk5IDkuNTc0MDggOS41MzE5OUw4LjAxNTIzIDEwLjQzMkM3LjkxMTMxIDEwLjQ5MiA3Ljc5MzM3IDEwLjQ2NzcgNy43MjEwNSAxMC4zODI0TDYuOTg3NDggOS40MzE4OEw2LjEwOTMxIDkuNDMwODNMNS4zNDcwNCAxMC4zOTA1QzUuMjg5MDkgMTAuNDcwMiA1LjE3MzgzIDEwLjQ5MDUgNS4wNzE4NyAxMC40MzM5TDMuNTEyNDUgOS41MzI5M0MzLjQxMDQ5IDkuNDc2MzMgMy4zNzY0NyA5LjM1NzQxIDMuNDEwNzUgOS4yNTY3OUwzLjg2MzQ3IDguMTQwOTNMMy42MTc0OSA3Ljc3NDg4TDMuNDIzNDcgNy4zNzg4M0wyLjIzMDc1IDcuMjEyOTdDMi4xMjY0NyA3LjE5MjM1IDIuMDQwNDkgNy4xMDM0MiAyLjA0MjQ1IDYuOTg2ODJMMi4wNDE4NyA1LjE4NTgyQzIuMDQzODMgNS4wNjkyMiAyLjExOTA5IDQuOTc5NTggMi4yMTcwNCA0Ljk2OTIyTDMuNDIwNjUgNC43OTM5M0wzLjg2NzQ5IDQuMDI3ODhMMy40MTEwNSAyLjkxNzMxQzMuMzczMzcgMi44MTIwNCAzLjQxMTMxIDIuNjk3NzYgMy41MTUyMyAyLjYzNzc2TDUuMDc0MDggMS43Mzc3NkM1LjE2OTM0IDEuNjgyNzYgNS4yODcyOSAxLjcwNzA0IDUuMzU5NjEgMS43OTIzMUw2LjExOTE1IDIuNzI3ODhMNi45ODAwMSAyLjczODkzTDcuNzI0OTYgMS43ODkyMkM3Ljc5MTU2IDEuNzA0NTggNy45MTU0OCAxLjY3OTIyIDguMDA4NzkgMS43NDA4Mkw5LjU2ODIxIDIuNjQxODJDOS42NzAxNyAyLjY5ODQyIDkuNzEyODUgMi44MTIzNCA5LjY4NzIzIDIuOTA3OTdMOS4yMTcxOCA0LjAzMzgzTDkuNDYzMTYgNC4zOTk4OEw5LjY1NzE4IDQuNzk1OTNaIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iOS45LDEzLjYgMy42LDcuNCA0LjQsNi42IDkuOSwxMi4yIDE1LjQsNi43IDE2LjEsNy40ICIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNS45TDksOS43bDMuOC0zLjhsMS4yLDEuMmwtNC45LDVsLTQuOS01TDUuMiw1Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNy41TDksMTEuMmwzLjgtMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-left: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik0xMC44LDEyLjhMNy4xLDlsMy44LTMuOGwwLDcuNkgxMC44eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-right: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik03LjIsNS4yTDEwLjksOWwtMy44LDMuOFY1LjJINy4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-up-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iMTUuNCwxMy4zIDkuOSw3LjcgNC40LDEzLjIgMy42LDEyLjUgOS45LDYuMyAxNi4xLDEyLjYgIi8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-up: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik01LjIsMTAuNUw5LDYuOGwzLjgsMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-case-sensitive: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgogIDxnIGNsYXNzPSJqcC1pY29uLWFjY2VudDIiIGZpbGw9IiNGRkYiPgogICAgPHBhdGggZD0iTTcuNiw4aDAuOWwzLjUsOGgtMS4xTDEwLDE0SDZsLTAuOSwySDRMNy42LDh6IE04LDkuMUw2LjQsMTNoMy4yTDgsOS4xeiIvPgogICAgPHBhdGggZD0iTTE2LjYsOS44Yy0wLjIsMC4xLTAuNCwwLjEtMC43LDAuMWMtMC4yLDAtMC40LTAuMS0wLjYtMC4yYy0wLjEtMC4xLTAuMi0wLjQtMC4yLTAuNyBjLTAuMywwLjMtMC42LDAuNS0wLjksMC43Yy0wLjMsMC4xLTAuNywwLjItMS4xLDAuMmMtMC4zLDAtMC41LDAtMC43LTAuMWMtMC4yLTAuMS0wLjQtMC4yLTAuNi0wLjNjLTAuMi0wLjEtMC4zLTAuMy0wLjQtMC41IGMtMC4xLTAuMi0wLjEtMC40LTAuMS0wLjdjMC0wLjMsMC4xLTAuNiwwLjItMC44YzAuMS0wLjIsMC4zLTAuNCwwLjQtMC41QzEyLDcsMTIuMiw2LjksMTIuNSw2LjhjMC4yLTAuMSwwLjUtMC4xLDAuNy0wLjIgYzAuMy0wLjEsMC41LTAuMSwwLjctMC4xYzAuMiwwLDAuNC0wLjEsMC42LTAuMWMwLjIsMCwwLjMtMC4xLDAuNC0wLjJjMC4xLTAuMSwwLjItMC4yLDAuMi0wLjRjMC0xLTEuMS0xLTEuMy0xIGMtMC40LDAtMS40LDAtMS40LDEuMmgtMC45YzAtMC40LDAuMS0wLjcsMC4yLTFjMC4xLTAuMiwwLjMtMC40LDAuNS0wLjZjMC4yLTAuMiwwLjUtMC4zLDAuOC0wLjNDMTMuMyw0LDEzLjYsNCwxMy45LDQgYzAuMywwLDAuNSwwLDAuOCwwLjFjMC4zLDAsMC41LDAuMSwwLjcsMC4yYzAuMiwwLjEsMC40LDAuMywwLjUsMC41QzE2LDUsMTYsNS4yLDE2LDUuNnYyLjljMCwwLjIsMCwwLjQsMCwwLjUgYzAsMC4xLDAuMSwwLjIsMC4zLDAuMmMwLjEsMCwwLjIsMCwwLjMsMFY5Ljh6IE0xNS4yLDYuOWMtMS4yLDAuNi0zLjEsMC4yLTMuMSwxLjRjMCwxLjQsMy4xLDEsMy4xLTAuNVY2Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-check: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik05IDE2LjE3TDQuODMgMTJsLTEuNDIgMS40MUw5IDE5IDIxIDdsLTEuNDEtMS40MXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-circle-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDJDNi40NyAyIDIgNi40NyAyIDEyczQuNDcgMTAgMTAgMTAgMTAtNC40NyAxMC0xMFMxNy41MyAyIDEyIDJ6bTAgMThjLTQuNDEgMC04LTMuNTktOC04czMuNTktOCA4LTggOCAzLjU5IDggOC0zLjU5IDgtOCA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-circle: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjgiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-clear: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8bWFzayBpZD0iZG9udXRIb2xlIj4KICAgIDxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0id2hpdGUiIC8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSI4IiBmaWxsPSJibGFjayIvPgogIDwvbWFzaz4KCiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxyZWN0IGhlaWdodD0iMTgiIHdpZHRoPSIyIiB4PSIxMSIgeT0iMyIgdHJhbnNmb3JtPSJyb3RhdGUoMzE1LCAxMiwgMTIpIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIgbWFzaz0idXJsKCNkb251dEhvbGUpIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-close: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1ub25lIGpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIGpwLWljb24zLWhvdmVyIiBmaWxsPSJub25lIj4KICAgIDxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjExIi8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIGpwLWljb24tYWNjZW50Mi1ob3ZlciIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMTkgNi40MUwxNy41OSA1IDEyIDEwLjU5IDYuNDEgNSA1IDYuNDEgMTAuNTkgMTIgNSAxNy41OSA2LjQxIDE5IDEyIDEzLjQxIDE3LjU5IDE5IDE5IDE3LjU5IDEzLjQxIDEyeiIvPgogIDwvZz4KCiAgPGcgY2xhc3M9ImpwLWljb24tbm9uZSBqcC1pY29uLWJ1c3kiIGZpbGw9Im5vbmUiPgogICAgPGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-code: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTExLjQgMTguNkw2LjggMTRMMTEuNCA5LjRMMTAgOEw0IDE0TDEwIDIwTDExLjQgMTguNlpNMTYuNiAxOC42TDIxLjIgMTRMMTYuNiA5LjRMMTggOEwyNCAxNEwxOCAyMEwxNi42IDE4LjZWMTguNloiLz4KCTwvZz4KPC9zdmc+Cg==);\n  --jp-icon-console: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwMCAyMDAiPgogIDxnIGNsYXNzPSJqcC1pY29uLWJyYW5kMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMjg4RDEiPgogICAgPHBhdGggZD0iTTIwIDE5LjhoMTYwdjE1OS45SDIweiIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNmZmYiPgogICAgPHBhdGggZD0iTTEwNSAxMjcuM2g0MHYxMi44aC00MHpNNTEuMSA3N0w3NCA5OS45bC0yMy4zIDIzLjMgMTAuNSAxMC41IDIzLjMtMjMuM0w5NSA5OS45IDg0LjUgODkuNCA2MS42IDY2LjV6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-copy: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTExLjksMUgzLjJDMi40LDEsMS43LDEuNywxLjcsMi41djEwLjJoMS41VjIuNWg4LjdWMXogTTE0LjEsMy45aC04Yy0wLjgsMC0xLjUsMC43LTEuNSwxLjV2MTAuMmMwLDAuOCwwLjcsMS41LDEuNSwxLjVoOCBjMC44LDAsMS41LTAuNywxLjUtMS41VjUuNEMxNS41LDQuNiwxNC45LDMuOSwxNC4xLDMuOXogTTE0LjEsMTUuNWgtOFY1LjRoOFYxNS41eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-copyright: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDI0IDI0IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCI+CiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0xMS44OCw5LjE0YzEuMjgsMC4wNiwxLjYxLDEuMTUsMS42MywxLjY2aDEuNzljLTAuMDgtMS45OC0xLjQ5LTMuMTktMy40NS0zLjE5QzkuNjQsNy42MSw4LDksOCwxMi4xNCBjMCwxLjk0LDAuOTMsNC4yNCwzLjg0LDQuMjRjMi4yMiwwLDMuNDEtMS42NSwzLjQ0LTIuOTVoLTEuNzljLTAuMDMsMC41OS0wLjQ1LDEuMzgtMS42MywxLjQ0QzEwLjU1LDE0LjgzLDEwLDEzLjgxLDEwLDEyLjE0IEMxMCw5LjI1LDExLjI4LDkuMTYsMTEuODgsOS4xNHogTTEyLDJDNi40OCwyLDIsNi40OCwyLDEyczQuNDgsMTAsMTAsMTBzMTAtNC40OCwxMC0xMFMxNy41MiwyLDEyLDJ6IE0xMiwyMGMtNC40MSwwLTgtMy41OS04LTggczMuNTktOCw4LThzOCwzLjU5LDgsOFMxNi40MSwyMCwxMiwyMHoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-cut: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkuNjQgNy42NGMuMjMtLjUuMzYtMS4wNS4zNi0xLjY0IDAtMi4yMS0xLjc5LTQtNC00UzIgMy43OSAyIDZzMS43OSA0IDQgNGMuNTkgMCAxLjE0LS4xMyAxLjY0LS4zNkwxMCAxMmwtMi4zNiAyLjM2QzcuMTQgMTQuMTMgNi41OSAxNCA2IDE0Yy0yLjIxIDAtNCAxLjc5LTQgNHMxLjc5IDQgNCA0IDQtMS43OSA0LTRjMC0uNTktLjEzLTEuMTQtLjM2LTEuNjRMMTIgMTRsNyA3aDN2LTFMOS42NCA3LjY0ek02IDhjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTAgMTJjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTYtNy41Yy0uMjggMC0uNS0uMjItLjUtLjVzLjIyLS41LjUtLjUuNS4yMi41LjUtLjIyLjUtLjUuNXpNMTkgM2wtNiA2IDIgMiA3LTdWM3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-download: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDloLTRWM0g5djZINWw3IDcgNy03ek01IDE4djJoMTR2LTJINXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-edit: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMgMTcuMjVWMjFoMy43NUwxNy44MSA5Ljk0bC0zLjc1LTMuNzVMMyAxNy4yNXpNMjAuNzEgNy4wNGMuMzktLjM5LjM5LTEuMDIgMC0xLjQxbC0yLjM0LTIuMzRjLS4zOS0uMzktMS4wMi0uMzktMS40MSAwbC0xLjgzIDEuODMgMy43NSAzLjc1IDEuODMtMS44M3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-ellipses: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iNSIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxOSIgY3k9IjEyIiByPSIyIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-extension: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwLjUgMTFIMTlWN2MwLTEuMS0uOS0yLTItMmgtNFYzLjVDMTMgMi4xMiAxMS44OCAxIDEwLjUgMVM4IDIuMTIgOCAzLjVWNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAydjMuOEgzLjVjMS40OSAwIDIuNyAxLjIxIDIuNyAyLjdzLTEuMjEgMi43LTIuNyAyLjdIMlYyMGMwIDEuMS45IDIgMiAyaDMuOHYtMS41YzAtMS40OSAxLjIxLTIuNyAyLjctMi43IDEuNDkgMCAyLjcgMS4yMSAyLjcgMi43VjIySDE3YzEuMSAwIDItLjkgMi0ydi00aDEuNWMxLjM4IDAgMi41LTEuMTIgMi41LTIuNVMyMS44OCAxMSAyMC41IDExeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-fast-forward: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTQgMThsOC41LTZMNCA2djEyem05LTEydjEybDguNS02TDEzIDZ6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-file-upload: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkgMTZoNnYtNmg0bC03LTctNyA3aDR6bS00IDJoMTR2Mkg1eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-file: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuMyA4LjJsLTUuNS01LjVjLS4zLS4zLS43LS41LTEuMi0uNUgzLjljLS44LjEtMS42LjktMS42IDEuOHYxNC4xYzAgLjkuNyAxLjYgMS42IDEuNmgxNC4yYy45IDAgMS42LS43IDEuNi0xLjZWOS40Yy4xLS41LS4xLS45LS40LTEuMnptLTUuOC0zLjNsMy40IDMuNmgtMy40VjQuOXptMy45IDEyLjdINC43Yy0uMSAwLS4yIDAtLjItLjJWNC43YzAtLjIuMS0uMy4yLS4zaDcuMnY0LjRzMCAuOC4zIDEuMWMuMy4zIDEuMS4zIDEuMS4zaDQuM3Y3LjJzLS4xLjItLjIuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-filter-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEwIDE4aDR2LTJoLTR2MnpNMyA2djJoMThWNkgzem0zIDdoMTJ2LTJINnYyeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY4YzAtMS4xLS45LTItMi0yaC04bC0yLTJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-html5: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMDAiIGQ9Ik0xMDguNCAwaDIzdjIyLjhoMjEuMlYwaDIzdjY5aC0yM1Y0NmgtMjF2MjNoLTIzLjJNMjA2IDIzaC0yMC4zVjBoNjMuN3YyM0gyMjl2NDZoLTIzbTUzLjUtNjloMjQuMWwxNC44IDI0LjNMMzEzLjIgMGgyNC4xdjY5aC0yM1YzNC44bC0xNi4xIDI0LjgtMTYuMS0yNC44VjY5aC0yMi42bTg5LjItNjloMjN2NDYuMmgzMi42VjY5aC01NS42Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI2U0NGQyNiIgZD0iTTEwNy42IDQ3MWwtMzMtMzcwLjRoMzYyLjhsLTMzIDM3MC4yTDI1NS43IDUxMiIvPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNmMTY1MjkiIGQ9Ik0yNTYgNDgwLjVWMTMxaDE0OC4zTDM3NiA0NDciLz4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNlYmViZWIiIGQ9Ik0xNDIgMTc2LjNoMTE0djQ1LjRoLTY0LjJsNC4yIDQ2LjVoNjB2NDUuM0gxNTQuNG0yIDIyLjhIMjAybDMuMiAzNi4zIDUwLjggMTMuNnY0Ny40bC05My4yLTI2Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIiBmaWxsPSIjZmZmIiBkPSJNMzY5LjYgMTc2LjNIMjU1Ljh2NDUuNGgxMDkuNm0tNC4xIDQ2LjVIMjU1Ljh2NDUuNGg1NmwtNS4zIDU5LTUwLjcgMTMuNnY0Ny4ybDkzLTI1LjgiLz4KPC9zdmc+Cg==);\n  --jp-icon-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1icmFuZDQganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNGRkYiIGQ9Ik0yLjIgMi4yaDE3LjV2MTcuNUgyLjJ6Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzNGNTFCNSIgZD0iTTIuMiAyLjJ2MTcuNWgxNy41bC4xLTE3LjVIMi4yem0xMi4xIDIuMmMxLjIgMCAyLjIgMSAyLjIgMi4ycy0xIDIuMi0yLjIgMi4yLTIuMi0xLTIuMi0yLjIgMS0yLjIgMi4yLTIuMnpNNC40IDE3LjZsMy4zLTguOCAzLjMgNi42IDIuMi0zLjIgNC40IDUuNEg0LjR6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-inspector: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY2YzAtMS4xLS45LTItMi0yem0tNSAxNEg0di00aDExdjR6bTAtNUg0VjloMTF2NHptNSA1aC00VjloNHY5eiIvPgo8L3N2Zz4K);\n  --jp-icon-json: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNGOUE4MjUiPgogICAgPHBhdGggZD0iTTIwLjIgMTEuOGMtMS42IDAtMS43LjUtMS43IDEgMCAuNC4xLjkuMSAxLjMuMS41LjEuOS4xIDEuMyAwIDEuNy0xLjQgMi4zLTMuNSAyLjNoLS45di0xLjloLjVjMS4xIDAgMS40IDAgMS40LS44IDAtLjMgMC0uNi0uMS0xIDAtLjQtLjEtLjgtLjEtMS4yIDAtMS4zIDAtMS44IDEuMy0yLTEuMy0uMi0xLjMtLjctMS4zLTIgMC0uNC4xLS44LjEtMS4yLjEtLjQuMS0uNy4xLTEgMC0uOC0uNC0uNy0xLjQtLjhoLS41VjQuMWguOWMyLjIgMCAzLjUuNyAzLjUgMi4zIDAgLjQtLjEuOS0uMSAxLjMtLjEuNS0uMS45LS4xIDEuMyAwIC41LjIgMSAxLjcgMXYxLjh6TTEuOCAxMC4xYzEuNiAwIDEuNy0uNSAxLjctMSAwLS40LS4xLS45LS4xLTEuMy0uMS0uNS0uMS0uOS0uMS0xLjMgMC0xLjYgMS40LTIuMyAzLjUtMi4zaC45djEuOWgtLjVjLTEgMC0xLjQgMC0xLjQuOCAwIC4zIDAgLjYuMSAxIDAgLjIuMS42LjEgMSAwIDEuMyAwIDEuOC0xLjMgMkM2IDExLjIgNiAxMS43IDYgMTNjMCAuNC0uMS44LS4xIDEuMi0uMS4zLS4xLjctLjEgMSAwIC44LjMuOCAxLjQuOGguNXYxLjloLS45Yy0yLjEgMC0zLjUtLjYtMy41LTIuMyAwLS40LjEtLjkuMS0xLjMuMS0uNS4xLS45LjEtMS4zIDAtLjUtLjItMS0xLjctMXYtMS45eiIvPgogICAgPGNpcmNsZSBjeD0iMTEiIGN5PSIxMy44IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY3g9IjExIiBjeT0iOC4yIiByPSIyLjEiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-julia: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDMyNSAzMDAiPgogIDxnIGNsYXNzPSJqcC1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjY2IzYzMzIj4KICAgIDxwYXRoIGQ9Ik0gMTUwLjg5ODQzOCAyMjUgQyAxNTAuODk4NDM4IDI2Ni40MjE4NzUgMTE3LjMyMDMxMiAzMDAgNzUuODk4NDM4IDMwMCBDIDM0LjQ3NjU2MiAzMDAgMC44OTg0MzggMjY2LjQyMTg3NSAwLjg5ODQzOCAyMjUgQyAwLjg5ODQzOCAxODMuNTc4MTI1IDM0LjQ3NjU2MiAxNTAgNzUuODk4NDM4IDE1MCBDIDExNy4zMjAzMTIgMTUwIDE1MC44OTg0MzggMTgzLjU3ODEyNSAxNTAuODk4NDM4IDIyNSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzM4OTgyNiI+CiAgICA8cGF0aCBkPSJNIDIzNy41IDc1IEMgMjM3LjUgMTE2LjQyMTg3NSAyMDMuOTIxODc1IDE1MCAxNjIuNSAxNTAgQyAxMjEuMDc4MTI1IDE1MCA4Ny41IDExNi40MjE4NzUgODcuNSA3NSBDIDg3LjUgMzMuNTc4MTI1IDEyMS4wNzgxMjUgMCAxNjIuNSAwIEMgMjAzLjkyMTg3NSAwIDIzNy41IDMzLjU3ODEyNSAyMzcuNSA3NSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzk1NThiMiI+CiAgICA8cGF0aCBkPSJNIDMyNC4xMDE1NjIgMjI1IEMgMzI0LjEwMTU2MiAyNjYuNDIxODc1IDI5MC41MjM0MzggMzAwIDI0OS4xMDE1NjIgMzAwIEMgMjA3LjY3OTY4OCAzMDAgMTc0LjEwMTU2MiAyNjYuNDIxODc1IDE3NC4xMDE1NjIgMjI1IEMgMTc0LjEwMTU2MiAxODMuNTc4MTI1IDIwNy42Nzk2ODggMTUwIDI0OS4xMDE1NjIgMTUwIEMgMjkwLjUyMzQzOCAxNTAgMzI0LjEwMTU2MiAxODMuNTc4MTI1IDMyNC4xMDE1NjIgMjI1Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-jupyter-favicon: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUyIiBoZWlnaHQ9IjE2NSIgdmlld0JveD0iMCAwIDE1MiAxNjUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA3ODk0NywgMTEwLjU4MjkyNykiIGQ9Ik03NS45NDIyODQyLDI5LjU4MDQ1NjEgQzQzLjMwMjM5NDcsMjkuNTgwNDU2MSAxNC43OTY3ODMyLDE3LjY1MzQ2MzQgMCwwIEM1LjUxMDgzMjExLDE1Ljg0MDY4MjkgMTUuNzgxNTM4OSwyOS41NjY3NzMyIDI5LjM5MDQ5NDcsMzkuMjc4NDE3MSBDNDIuOTk5Nyw0OC45ODk4NTM3IDU5LjI3MzcsNTQuMjA2NzgwNSA3NS45NjA1Nzg5LDU0LjIwNjc4MDUgQzkyLjY0NzQ1NzksNTQuMjA2NzgwNSAxMDguOTIxNDU4LDQ4Ljk4OTg1MzcgMTIyLjUzMDY2MywzOS4yNzg0MTcxIEMxMzYuMTM5NDUzLDI5LjU2Njc3MzIgMTQ2LjQxMDI4NCwxNS44NDA2ODI5IDE1MS45MjExNTgsMCBDMTM3LjA4Nzg2OCwxNy42NTM0NjM0IDEwOC41ODI1ODksMjkuNTgwNDU2MSA3NS45NDIyODQyLDI5LjU4MDQ1NjEgTDc1Ljk0MjI4NDIsMjkuNTgwNDU2MSBaIiAvPgogICAgPHBhdGggdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMzczNjgsIDAuNzA0ODc4KSIgZD0iTTc1Ljk3ODQ1NzksMjQuNjI2NDA3MyBDMTA4LjYxODc2MywyNC42MjY0MDczIDEzNy4xMjQ0NTgsMzYuNTUzNDQxNSAxNTEuOTIxMTU4LDU0LjIwNjc4MDUgQzE0Ni40MTAyODQsMzguMzY2MjIyIDEzNi4xMzk0NTMsMjQuNjQwMTMxNyAxMjIuNTMwNjYzLDE0LjkyODQ4NzggQzEwOC45MjE0NTgsNS4yMTY4NDM5IDkyLjY0NzQ1NzksMCA3NS45NjA1Nzg5LDAgQzU5LjI3MzcsMCA0Mi45OTk3LDUuMjE2ODQzOSAyOS4zOTA0OTQ3LDE0LjkyODQ4NzggQzE1Ljc4MTUzODksMjQuNjQwMTMxNyA1LjUxMDgzMjExLDM4LjM2NjIyMiAwLDU0LjIwNjc4MDUgQzE0LjgzMzA4MTYsMzYuNTg5OTI5MyA0My4zMzg1Njg0LDI0LjYyNjQwNzMgNzUuOTc4NDU3OSwyNC42MjY0MDczIEw3NS45Nzg0NTc5LDI0LjYyNjQwNzMgWiIgLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-jupyter: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzkiIGhlaWdodD0iNTEiIHZpZXdCb3g9IjAgMCAzOSA1MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTYzOCAtMjI4MSkiPgogICAgPGcgY2xhc3M9ImpwLWljb24td2FybjAiIGZpbGw9IiNGMzc3MjYiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5Ljc0IDIzMTEuOTgpIiBkPSJNIDE4LjI2NDYgNy4xMzQxMUMgMTAuNDE0NSA3LjEzNDExIDMuNTU4NzIgNC4yNTc2IDAgMEMgMS4zMjUzOSAzLjgyMDQgMy43OTU1NiA3LjEzMDgxIDcuMDY4NiA5LjQ3MzAzQyAxMC4zNDE3IDExLjgxNTIgMTQuMjU1NyAxMy4wNzM0IDE4LjI2OSAxMy4wNzM0QyAyMi4yODIzIDEzLjA3MzQgMjYuMTk2MyAxMS44MTUyIDI5LjQ2OTQgOS40NzMwM0MgMzIuNzQyNCA3LjEzMDgxIDM1LjIxMjYgMy44MjA0IDM2LjUzOCAwQyAzMi45NzA1IDQuMjU3NiAyNi4xMTQ4IDcuMTM0MTEgMTguMjY0NiA3LjEzNDExWiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5LjczIDIyODUuNDgpIiBkPSJNIDE4LjI3MzMgNS45MzkzMUMgMjYuMTIzNSA1LjkzOTMxIDMyLjk3OTMgOC44MTU4MyAzNi41MzggMTMuMDczNEMgMzUuMjEyNiA5LjI1MzAzIDMyLjc0MjQgNS45NDI2MiAyOS40Njk0IDMuNjAwNEMgMjYuMTk2MyAxLjI1ODE4IDIyLjI4MjMgMCAxOC4yNjkgMEMgMTQuMjU1NyAwIDEwLjM0MTcgMS4yNTgxOCA3LjA2ODYgMy42MDA0QyAzLjc5NTU2IDUuOTQyNjIgMS4zMjUzOSA5LjI1MzAzIDAgMTMuMDczNEMgMy41Njc0NSA4LjgyNDYzIDEwLjQyMzIgNS45MzkzMSAxOC4yNzMzIDUuOTM5MzFaIi8+CiAgICA8L2c+CiAgICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjY5LjMgMjI4MS4zMSkiIGQ9Ik0gNS44OTM1MyAyLjg0NEMgNS45MTg4OSAzLjQzMTY1IDUuNzcwODUgNC4wMTM2NyA1LjQ2ODE1IDQuNTE2NDVDIDUuMTY1NDUgNS4wMTkyMiA0LjcyMTY4IDUuNDIwMTUgNC4xOTI5OSA1LjY2ODUxQyAzLjY2NDMgNS45MTY4OCAzLjA3NDQ0IDYuMDAxNTEgMi40OTgwNSA1LjkxMTcxQyAxLjkyMTY2IDUuODIxOSAxLjM4NDYzIDUuNTYxNyAwLjk1NDg5OCA1LjE2NDAxQyAwLjUyNTE3IDQuNzY2MzMgMC4yMjIwNTYgNC4yNDkwMyAwLjA4MzkwMzcgMy42Nzc1N0MgLTAuMDU0MjQ4MyAzLjEwNjExIC0wLjAyMTIzIDIuNTA2MTcgMC4xNzg3ODEgMS45NTM2NEMgMC4zNzg3OTMgMS40MDExIDAuNzM2ODA5IDAuOTIwODE3IDEuMjA3NTQgMC41NzM1MzhDIDEuNjc4MjYgMC4yMjYyNTkgMi4yNDA1NSAwLjAyNzU5MTkgMi44MjMyNiAwLjAwMjY3MjI5QyAzLjYwMzg5IC0wLjAzMDcxMTUgNC4zNjU3MyAwLjI0OTc4OSA0Ljk0MTQyIDAuNzgyNTUxQyA1LjUxNzExIDEuMzE1MzEgNS44NTk1NiAyLjA1Njc2IDUuODkzNTMgMi44NDRaIi8+CiAgICAgIDxwYXRoIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE2MzkuOCAyMzIzLjgxKSIgZD0iTSA3LjQyNzg5IDMuNTgzMzhDIDcuNDYwMDggNC4zMjQzIDcuMjczNTUgNS4wNTgxOSA2Ljg5MTkzIDUuNjkyMTNDIDYuNTEwMzEgNi4zMjYwNyA1Ljk1MDc1IDYuODMxNTYgNS4yODQxMSA3LjE0NDZDIDQuNjE3NDcgNy40NTc2MyAzLjg3MzcxIDcuNTY0MTQgMy4xNDcwMiA3LjQ1MDYzQyAyLjQyMDMyIDcuMzM3MTIgMS43NDMzNiA3LjAwODcgMS4yMDE4NCA2LjUwNjk1QyAwLjY2MDMyOCA2LjAwNTIgMC4yNzg2MSA1LjM1MjY4IDAuMTA1MDE3IDQuNjMyMDJDIC0wLjA2ODU3NTcgMy45MTEzNSAtMC4wMjYyMzYxIDMuMTU0OTQgMC4yMjY2NzUgMi40NTg1NkMgMC40Nzk1ODcgMS43NjIxNyAwLjkzMTY5NyAxLjE1NzEzIDEuNTI1NzYgMC43MjAwMzNDIDIuMTE5ODMgMC4yODI5MzUgMi44MjkxNCAwLjAzMzQzOTUgMy41NjM4OSAwLjAwMzEzMzQ0QyA0LjU0NjY3IC0wLjAzNzQwMzMgNS41MDUyOSAwLjMxNjcwNiA2LjIyOTYxIDAuOTg3ODM1QyA2Ljk1MzkzIDEuNjU4OTYgNy4zODQ4NCAyLjU5MjM1IDcuNDI3ODkgMy41ODMzOEwgNy40Mjc4OSAzLjU4MzM4WiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM4LjM2IDIyODYuMDYpIiBkPSJNIDIuMjc0NzEgNC4zOTYyOUMgMS44NDM2MyA0LjQxNTA4IDEuNDE2NzEgNC4zMDQ0NSAxLjA0Nzk5IDQuMDc4NDNDIDAuNjc5MjY4IDMuODUyNCAwLjM4NTMyOCAzLjUyMTE0IDAuMjAzMzcxIDMuMTI2NTZDIDAuMDIxNDEzNiAyLjczMTk4IC0wLjA0MDM3OTggMi4yOTE4MyAwLjAyNTgxMTYgMS44NjE4MUMgMC4wOTIwMDMxIDEuNDMxOCAwLjI4MzIwNCAxLjAzMTI2IDAuNTc1MjEzIDAuNzEwODgzQyAwLjg2NzIyMiAwLjM5MDUxIDEuMjQ2OTEgMC4xNjQ3MDggMS42NjYyMiAwLjA2MjA1OTJDIDIuMDg1NTMgLTAuMDQwNTg5NyAyLjUyNTYxIC0wLjAxNTQ3MTQgMi45MzA3NiAwLjEzNDIzNUMgMy4zMzU5MSAwLjI4Mzk0MSAzLjY4NzkyIDAuNTUxNTA1IDMuOTQyMjIgMC45MDMwNkMgNC4xOTY1MiAxLjI1NDYyIDQuMzQxNjkgMS42NzQzNiA0LjM1OTM1IDIuMTA5MTZDIDQuMzgyOTkgMi42OTEwNyA0LjE3Njc4IDMuMjU4NjkgMy43ODU5NyAzLjY4NzQ2QyAzLjM5NTE2IDQuMTE2MjQgMi44NTE2NiA0LjM3MTE2IDIuMjc0NzEgNC4zOTYyOUwgMi4yNzQ3MSA0LjM5NjI5WiIvPgogICAgPC9nPgogIDwvZz4+Cjwvc3ZnPgo=);\n  --jp-icon-jupyterlab-wordmark: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIHZpZXdCb3g9IjAgMCAxODYwLjggNDc1Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0RTRFNEUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ4MC4xMzY0MDEsIDY0LjI3MTQ5MykiPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMDAwMDAsIDU4Ljg3NTU2NikiPgogICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA4NzYwMywgMC4xNDAyOTQpIj4KICAgICAgICA8cGF0aCBkPSJNLTQyNi45LDE2OS44YzAsNDguNy0zLjcsNjQuNy0xMy42LDc2LjRjLTEwLjgsMTAtMjUsMTUuNS0zOS43LDE1LjVsMy43LDI5IGMyMi44LDAuMyw0NC44LTcuOSw2MS45LTIzLjFjMTcuOC0xOC41LDI0LTQ0LjEsMjQtODMuM1YwSC00Mjd2MTcwLjFMLTQyNi45LDE2OS44TC00MjYuOSwxNjkuOHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTU1LjA0NTI5NiwgNTYuODM3MTA0KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuNTYyNDUzLCAxLjc5OTg0MikiPgogICAgICAgIDxwYXRoIGQ9Ik0tMzEyLDE0OGMwLDIxLDAsMzkuNSwxLjcsNTUuNGgtMzEuOGwtMi4xLTMzLjNoLTAuOGMtNi43LDExLjYtMTYuNCwyMS4zLTI4LDI3LjkgYy0xMS42LDYuNi0yNC44LDEwLTM4LjIsOS44Yy0zMS40LDAtNjktMTcuNy02OS04OVYwaDM2LjR2MTEyLjdjMCwzOC43LDExLjYsNjQuNyw0NC42LDY0LjdjMTAuMy0wLjIsMjAuNC0zLjUsMjguOS05LjQgYzguNS01LjksMTUuMS0xNC4zLDE4LjktMjMuOWMyLjItNi4xLDMuMy0xMi41LDMuMy0xOC45VjAuMmgzNi40VjE0OEgtMzEyTC0zMTIsMTQ4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzOTAuMDEzMzIyLCA1My40Nzk2MzgpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS43MDY0NTgsIDAuMjMxNDI1KSI+CiAgICAgICAgPHBhdGggZD0iTS00NzguNiw3MS40YzAtMjYtMC44LTQ3LTEuNy02Ni43aDMyLjdsMS43LDM0LjhoMC44YzcuMS0xMi41LDE3LjUtMjIuOCwzMC4xLTI5LjcgYzEyLjUtNywyNi43LTEwLjMsNDEtOS44YzQ4LjMsMCw4NC43LDQxLjcsODQuNywxMDMuM2MwLDczLjEtNDMuNywxMDkuMi05MSwxMDkuMmMtMTIuMSwwLjUtMjQuMi0yLjItMzUtNy44IGMtMTAuOC01LjYtMTkuOS0xMy45LTI2LjYtMjQuMmgtMC44VjI5MWgtMzZ2LTIyMEwtNDc4LjYsNzEuNEwtNDc4LjYsNzEuNHogTS00NDIuNiwxMjUuNmMwLjEsNS4xLDAuNiwxMC4xLDEuNywxNS4xIGMzLDEyLjMsOS45LDIzLjMsMTkuOCwzMS4xYzkuOSw3LjgsMjIuMSwxMi4xLDM0LjcsMTIuMWMzOC41LDAsNjAuNy0zMS45LDYwLjctNzguNWMwLTQwLjctMjEuMS03NS42LTU5LjUtNzUuNiBjLTEyLjksMC40LTI1LjMsNS4xLTM1LjMsMTMuNGMtOS45LDguMy0xNi45LDE5LjctMTkuNiwzMi40Yy0xLjUsNC45LTIuMywxMC0yLjUsMTUuMVYxMjUuNkwtNDQyLjYsMTI1LjZMLTQ0Mi42LDEyNS42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MDYuNzQwNzI2LCA1Ni44MzcxMDQpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC43NTEyMjYsIDEuOTg5Mjk5KSI+CiAgICAgICAgPHBhdGggZD0iTS00NDAuOCwwbDQzLjcsMTIwLjFjNC41LDEzLjQsOS41LDI5LjQsMTIuOCw0MS43aDAuOGMzLjctMTIuMiw3LjktMjcuNywxMi44LTQyLjQgbDM5LjctMTE5LjJoMzguNUwtMzQ2LjksMTQ1Yy0yNiw2OS43LTQzLjcsMTA1LjQtNjguNiwxMjcuMmMtMTIuNSwxMS43LTI3LjksMjAtNDQuNiwyMy45bC05LjEtMzEuMSBjMTEuNy0zLjksMjIuNS0xMC4xLDMxLjgtMTguMWMxMy4yLTExLjEsMjMuNy0yNS4yLDMwLjYtNDEuMmMxLjUtMi44LDIuNS01LjcsMi45LTguOGMtMC4zLTMuMy0xLjItNi42LTIuNS05LjdMLTQ4MC4yLDAuMSBoMzkuN0wtNDQwLjgsMEwtNDQwLjgsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODIyLjc0ODEwNCwgMC4wMDAwMDApIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS40NjQwNTAsIDAuMzc4OTE0KSI+CiAgICAgICAgPHBhdGggZD0iTS00MTMuNywwdjU4LjNoNTJ2MjguMmgtNTJWMTk2YzAsMjUsNywzOS41LDI3LjMsMzkuNWM3LjEsMC4xLDE0LjItMC43LDIxLjEtMi41IGwxLjcsMjcuN2MtMTAuMywzLjctMjEuMyw1LjQtMzIuMiw1Yy03LjMsMC40LTE0LjYtMC43LTIxLjMtMy40Yy02LjgtMi43LTEyLjktNi44LTE3LjktMTIuMWMtMTAuMy0xMC45LTE0LjEtMjktMTQuMS01Mi45IFY4Ni41aC0zMVY1OC4zaDMxVjkuNkwtNDEzLjcsMEwtNDEzLjcsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOTc0LjQzMzI4NiwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuOTkwMDM0LCAwLjYxMDMzOSkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDQ1LjgsMTEzYzAuOCw1MCwzMi4yLDcwLjYsNjguNiw3MC42YzE5LDAuNiwzNy45LTMsNTUuMy0xMC41bDYuMiwyNi40IGMtMjAuOSw4LjktNDMuNSwxMy4xLTY2LjIsMTIuNmMtNjEuNSwwLTk4LjMtNDEuMi05OC4zLTEwMi41Qy00ODAuMiw0OC4yLTQ0NC43LDAtMzg2LjUsMGM2NS4yLDAsODIuNyw1OC4zLDgyLjcsOTUuNyBjLTAuMSw1LjgtMC41LDExLjUtMS4yLDE3LjJoLTE0MC42SC00NDUuOEwtNDQ1LjgsMTEzeiBNLTMzOS4yLDg2LjZjMC40LTIzLjUtOS41LTYwLjEtNTAuNC02MC4xIGMtMzYuOCwwLTUyLjgsMzQuNC01NS43LDYwLjFILTMzOS4yTC0zMzkuMiw4Ni42TC0zMzkuMiw4Ni42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjAxLjk2MTA1OCwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuMTc5NjQwLCAwLjcwNTA2OCkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDc4LjYsNjhjMC0yMy45LTAuNC00NC41LTEuNy02My40aDMxLjhsMS4yLDM5LjloMS43YzkuMS0yNy4zLDMxLTQ0LjUsNTUuMy00NC41IGMzLjUtMC4xLDcsMC40LDEwLjMsMS4ydjM0LjhjLTQuMS0wLjktOC4yLTEuMy0xMi40LTEuMmMtMjUuNiwwLTQzLjcsMTkuNy00OC43LDQ3LjRjLTEsNS43LTEuNiwxMS41LTEuNywxNy4ydjEwOC4zaC0zNlY2OCBMLTQ3OC42LDY4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCBkPSJNMTM1Mi4zLDMyNi4yaDM3VjI4aC0zN1YzMjYuMnogTTE2MDQuOCwzMjYuMmMtMi41LTEzLjktMy40LTMxLjEtMy40LTQ4Ljd2LTc2IGMwLTQwLjctMTUuMS04My4xLTc3LjMtODMuMWMtMjUuNiwwLTUwLDcuMS02Ni44LDE4LjFsOC40LDI0LjRjMTQuMy05LjIsMzQtMTUuMSw1My0xNS4xYzQxLjYsMCw0Ni4yLDMwLjIsNDYuMiw0N3Y0LjIgYy03OC42LTAuNC0xMjIuMywyNi41LTEyMi4zLDc1LjZjMCwyOS40LDIxLDU4LjQsNjIuMiw1OC40YzI5LDAsNTAuOS0xNC4zLDYyLjItMzAuMmgxLjNsMi45LDI1LjZIMTYwNC44eiBNMTU2NS43LDI1Ny43IGMwLDMuOC0wLjgsOC0yLjEsMTEuOGMtNS45LDE3LjItMjIuNywzNC00OS4yLDM0Yy0xOC45LDAtMzQuOS0xMS4zLTM0LjktMzUuM2MwLTM5LjUsNDUuOC00Ni42LDg2LjItNDUuOFYyNTcuN3ogTTE2OTguNSwzMjYuMiBsMS43LTMzLjZoMS4zYzE1LjEsMjYuOSwzOC43LDM4LjIsNjguMSwzOC4yYzQ1LjQsMCw5MS4yLTM2LjEsOTEuMi0xMDguOGMwLjQtNjEuNy0zNS4zLTEwMy43LTg1LjctMTAzLjcgYy0zMi44LDAtNTYuMywxNC43LTY5LjMsMzcuNGgtMC44VjI4aC0zNi42djI0NS43YzAsMTguMS0wLjgsMzguNi0xLjcsNTIuNUgxNjk4LjV6IE0xNzA0LjgsMjA4LjJjMC01LjksMS4zLTEwLjksMi4xLTE1LjEgYzcuNi0yOC4xLDMxLjEtNDUuNCw1Ni4zLTQ1LjRjMzkuNSwwLDYwLjUsMzQuOSw2MC41LDc1LjZjMCw0Ni42LTIzLjEsNzguMS02MS44LDc4LjFjLTI2LjksMC00OC4zLTE3LjYtNTUuNS00My4zIGMtMC44LTQuMi0xLjctOC44LTEuNy0xMy40VjIwOC4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgZmlsbD0iIzYxNjE2MSIgZD0iTTE1IDlIOXY2aDZWOXptLTIgNGgtMnYtMmgydjJ6bTgtMlY5aC0yVjdjMC0xLjEtLjktMi0yLTJoLTJWM2gtMnYyaC0yVjNIOXYySDdjLTEuMSAwLTIgLjktMiAydjJIM3YyaDJ2MkgzdjJoMnYyYzAgMS4xLjkgMiAyIDJoMnYyaDJ2LTJoMnYyaDJ2LTJoMmMxLjEgMCAyLS45IDItMnYtMmgydi0yaC0ydi0yaDJ6bS00IDZIN1Y3aDEwdjEweiIvPgo8L3N2Zz4K);\n  --jp-icon-keyboard: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMTdjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY3YzAtMS4xLS45LTItMi0yem0tOSAzaDJ2MmgtMlY4em0wIDNoMnYyaC0ydi0yek04IDhoMnYySDhWOHptMCAzaDJ2Mkg4di0yem0tMSAySDV2LTJoMnYyem0wLTNINVY4aDJ2MnptOSA3SDh2LTJoOHYyem0wLTRoLTJ2LTJoMnYyem0wLTNoLTJWOGgydjJ6bTMgM2gtMnYtMmgydjJ6bTAtM2gtMlY4aDJ2MnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-launcher: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkgMTlINVY1aDdWM0g1YTIgMiAwIDAwLTIgMnYxNGEyIDIgMCAwMDIgMmgxNGMxLjEgMCAyLS45IDItMnYtN2gtMnY3ek0xNCAzdjJoMy41OWwtOS44MyA5LjgzIDEuNDEgMS40MUwxOSA2LjQxVjEwaDJWM2gtN3oiLz4KPC9zdmc+Cg==);\n  --jp-icon-line-form: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGZpbGw9IndoaXRlIiBkPSJNNS44OCA0LjEyTDEzLjc2IDEybC03Ljg4IDcuODhMOCAyMmwxMC0xMEw4IDJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-link: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMuOSAxMmMwLTEuNzEgMS4zOS0zLjEgMy4xLTMuMWg0VjdIN2MtMi43NiAwLTUgMi4yNC01IDVzMi4yNCA1IDUgNWg0di0xLjlIN2MtMS43MSAwLTMuMS0xLjM5LTMuMS0zLjF6TTggMTNoOHYtMkg4djJ6bTktNmgtNHYxLjloNGMxLjcxIDAgMy4xIDEuMzkgMy4xIDMuMXMtMS4zOSAzLjEtMy4xIDMuMWgtNFYxN2g0YzIuNzYgMCA1LTIuMjQgNS01cy0yLjI0LTUtNS01eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiM2MTYxNjEiIGQ9Ik0xOSA1djE0SDVWNWgxNG0xLjEtMkgzLjljLS41IDAtLjkuNC0uOS45djE2LjJjMCAuNC40LjkuOS45aDE2LjJjLjQgMCAuOS0uNS45LS45VjMuOWMwLS41LS41LS45LS45LS45ek0xMSA3aDZ2MmgtNlY3em0wIDRoNnYyaC02di0yem0wIDRoNnYyaC02ek03IDdoMnYySDd6bTAgNGgydjJIN3ptMCA0aDJ2Mkg3eiIvPgo8L3N2Zz4=);\n  --jp-icon-listings-info: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MC45NzggNTAuOTc4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MC45NzggNTAuOTc4OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+Cgk8Zz4KCQk8cGF0aCBzdHlsZT0iZmlsbDojMDEwMDAyOyIgZD0iTTQzLjUyLDcuNDU4QzM4LjcxMSwyLjY0OCwzMi4zMDcsMCwyNS40ODksMEMxOC42NywwLDEyLjI2NiwyLjY0OCw3LjQ1OCw3LjQ1OAoJCQljLTkuOTQzLDkuOTQxLTkuOTQzLDI2LjExOSwwLDM2LjA2MmM0LjgwOSw0LjgwOSwxMS4yMTIsNy40NTYsMTguMDMxLDcuNDU4YzAsMCwwLjAwMSwwLDAuMDAyLDAKCQkJYzYuODE2LDAsMTMuMjIxLTIuNjQ4LDE4LjAyOS03LjQ1OGM0LjgwOS00LjgwOSw3LjQ1Ny0xMS4yMTIsNy40NTctMTguMDNDNTAuOTc3LDE4LjY3LDQ4LjMyOCwxMi4yNjYsNDMuNTIsNy40NTh6CgkJCSBNNDIuMTA2LDQyLjEwNWMtNC40MzIsNC40MzEtMTAuMzMyLDYuODcyLTE2LjYxNSw2Ljg3MmgtMC4wMDJjLTYuMjg1LTAuMDAxLTEyLjE4Ny0yLjQ0MS0xNi42MTctNi44NzIKCQkJYy05LjE2Mi05LjE2My05LjE2Mi0yNC4wNzEsMC0zMy4yMzNDMTMuMzAzLDQuNDQsMTkuMjA0LDIsMjUuNDg5LDJjNi4yODQsMCwxMi4xODYsMi40NCwxNi42MTcsNi44NzIKCQkJYzQuNDMxLDQuNDMxLDYuODcxLDEwLjMzMiw2Ljg3MSwxNi42MTdDNDguOTc3LDMxLjc3Miw0Ni41MzYsMzcuNjc1LDQyLjEwNiw0Mi4xMDV6Ii8+CgkJPHBhdGggc3R5bGU9ImZpbGw6IzAxMDAwMjsiIGQ9Ik0yMy41NzgsMzIuMjE4Yy0wLjAyMy0xLjczNCwwLjE0My0zLjA1OSwwLjQ5Ni0zLjk3MmMwLjM1My0wLjkxMywxLjExLTEuOTk3LDIuMjcyLTMuMjUzCgkJCWMwLjQ2OC0wLjUzNiwwLjkyMy0xLjA2MiwxLjM2Ny0xLjU3NWMwLjYyNi0wLjc1MywxLjEwNC0xLjQ3OCwxLjQzNi0yLjE3NWMwLjMzMS0wLjcwNywwLjQ5NS0xLjU0MSwwLjQ5NS0yLjUKCQkJYzAtMS4wOTYtMC4yNi0yLjA4OC0wLjc3OS0yLjk3OWMtMC41NjUtMC44NzktMS41MDEtMS4zMzYtMi44MDYtMS4zNjljLTEuODAyLDAuMDU3LTIuOTg1LDAuNjY3LTMuNTUsMS44MzIKCQkJYy0wLjMwMSwwLjUzNS0wLjUwMywxLjE0MS0wLjYwNywxLjgxNGMtMC4xMzksMC43MDctMC4yMDcsMS40MzItMC4yMDcsMi4xNzRoLTIuOTM3Yy0wLjA5MS0yLjIwOCwwLjQwNy00LjExNCwxLjQ5My01LjcxOQoJCQljMS4wNjItMS42NCwyLjg1NS0yLjQ4MSw1LjM3OC0yLjUyN2MyLjE2LDAuMDIzLDMuODc0LDAuNjA4LDUuMTQxLDEuNzU4YzEuMjc4LDEuMTYsMS45MjksMi43NjQsMS45NSw0LjgxMQoJCQljMCwxLjE0Mi0wLjEzNywyLjExMS0wLjQxLDIuOTExYy0wLjMwOSwwLjg0NS0wLjczMSwxLjU5My0xLjI2OCwyLjI0M2MtMC40OTIsMC42NS0xLjA2OCwxLjMxOC0xLjczLDIuMDAyCgkJCWMtMC42NSwwLjY5Ny0xLjMxMywxLjQ3OS0xLjk4NywyLjM0NmMtMC4yMzksMC4zNzctMC40MjksMC43NzctMC41NjUsMS4xOTljLTAuMTYsMC45NTktMC4yMTcsMS45NTEtMC4xNzEsMi45NzkKCQkJQzI2LjU4OSwzMi4yMTgsMjMuNTc4LDMyLjIxOCwyMy41NzgsMzIuMjE4eiBNMjMuNTc4LDM4LjIydi0zLjQ4NGgzLjA3NnYzLjQ4NEgyMy41Nzh6Ii8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-markdown: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjN0IxRkEyIiBkPSJNNSAxNC45aDEybC02LjEgNnptOS40LTYuOGMwLTEuMy0uMS0yLjktLjEtNC41LS40IDEuNC0uOSAyLjktMS4zIDQuM2wtMS4zIDQuM2gtMkw4LjUgNy45Yy0uNC0xLjMtLjctMi45LTEtNC4zLS4xIDEuNi0uMSAzLjItLjIgNC42TDcgMTIuNEg0LjhsLjctMTFoMy4zTDEwIDVjLjQgMS4yLjcgMi43IDEgMy45LjMtMS4yLjctMi42IDEtMy45bDEuMi0zLjdoMy4zbC42IDExaC0yLjRsLS4zLTQuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-new-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwIDZoLThsLTItMkg0Yy0xLjExIDAtMS45OS44OS0xLjk5IDJMMiAxOGMwIDEuMTEuODkgMiAyIDJoMTZjMS4xMSAwIDItLjg5IDItMlY4YzAtMS4xMS0uODktMi0yLTJ6bS0xIDhoLTN2M2gtMnYtM2gtM3YtMmgzVjloMnYzaDN2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-not-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI1IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMTkgMTcuMTg0NCAyLjk2OTY4IDE0LjMwMzIgMS44NjA5NCAxMS40NDA5WiIvPgogICAgPHBhdGggY2xhc3M9ImpwLWljb24yIiBzdHJva2U9IiMzMzMzMzMiIHN0cm9rZS13aWR0aD0iMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOS4zMTU5MiA5LjMyMDMxKSIgZD0iTTcuMzY4NDIgMEwwIDcuMzY0NzkiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDkuMzE1OTIgMTYuNjgzNikgc2NhbGUoMSAtMSkiIGQ9Ik03LjM2ODQyIDBMMCA3LjM2NDc5Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-notebook: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNFRjZDMDAiPgogICAgPHBhdGggZD0iTTE4LjcgMy4zdjE1LjRIMy4zVjMuM2gxNS40bTEuNS0xLjVIMS44djE4LjNoMTguM2wuMS0xOC4zeiIvPgogICAgPHBhdGggZD0iTTE2LjUgMTYuNWwtNS40LTQuMy01LjYgNC4zdi0xMWgxMXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-numbering: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTQgMTlINlYxOS41SDVWMjAuNUg2VjIxSDRWMjJIN1YxOEg0VjE5Wk01IDEwSDZWNkg0VjdINVYxMFpNNCAxM0g1LjhMNCAxNS4xVjE2SDdWMTVINS4yTDcgMTIuOVYxMkg0VjEzWk05IDdWOUgyM1Y3SDlaTTkgMjFIMjNWMTlIOVYyMVpNOSAxNUgyM1YxM0g5VjE1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-offline-bolt: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDIuMDJjLTUuNTEgMC05Ljk4IDQuNDctOS45OCA5Ljk4czQuNDcgOS45OCA5Ljk4IDkuOTggOS45OC00LjQ3IDkuOTgtOS45OFMxNy41MSAyLjAyIDEyIDIuMDJ6TTExLjQ4IDIwdi02LjI2SDhMMTMgNHY2LjI2aDMuMzVMMTEuNDggMjB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-palette: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE4IDEzVjIwSDRWNkg5LjAyQzkuMDcgNS4yOSA5LjI0IDQuNjIgOS41IDRINEMyLjkgNCAyIDQuOSAyIDZWMjBDMiAyMS4xIDIuOSAyMiA0IDIySDE4QzE5LjEgMjIgMjAgMjEuMSAyMCAyMFYxNUwxOCAxM1pNMTkuMyA4Ljg5QzE5Ljc0IDguMTkgMjAgNy4zOCAyMCA2LjVDMjAgNC4wMSAxNy45OSAyIDE1LjUgMkMxMy4wMSAyIDExIDQuMDEgMTEgNi41QzExIDguOTkgMTMuMDEgMTEgMTUuNDkgMTFDMTYuMzcgMTEgMTcuMTkgMTAuNzQgMTcuODggMTAuM0wyMSAxMy40MkwyMi40MiAxMkwxOS4zIDguODlaTTE1LjUgOUMxNC4xMiA5IDEzIDcuODggMTMgNi41QzEzIDUuMTIgMTQuMTIgNCAxNS41IDRDMTYuODggNCAxOCA1LjEyIDE4IDYuNUMxOCA3Ljg4IDE2Ljg4IDkgMTUuNSA5WiIvPgogICAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDZIOS4wMTg5NEM5LjAwNjM5IDYuMTY1MDIgOSA2LjMzMTc2IDkgNi41QzkgOC44MTU3NyAxMC4yMTEgMTAuODQ4NyAxMi4wMzQzIDEySDlWMTRIMTZWMTIuOTgxMUMxNi41NzAzIDEyLjkzNzcgMTcuMTIgMTIuODIwNyAxNy42Mzk2IDEyLjYzOTZMMTggMTNWMjBINFY2Wk04IDhINlYxMEg4VjhaTTYgMTJIOFYxNEg2VjEyWk04IDE2SDZWMThIOFYxNlpNOSAxNkgxNlYxOEg5VjE2WiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-paste: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE5IDJoLTQuMThDMTQuNC44NCAxMy4zIDAgMTIgMGMtMS4zIDAtMi40Ljg0LTIuODIgMkg1Yy0xLjEgMC0yIC45LTIgMnYxNmMwIDEuMS45IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjRjMC0xLjEtLjktMi0yLTJ6bS03IDBjLjU1IDAgMSAuNDUgMSAxcy0uNDUgMS0xIDEtMS0uNDUtMS0xIC40NS0xIDEtMXptNyAxOEg1VjRoMnYzaDEwVjRoMnYxNnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-pdf: url(data:image/svg+xml;base64,PHN2ZwogICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMiAyMiIgd2lkdGg9IjE2Ij4KICAgIDxwYXRoIHRyYW5zZm9ybT0icm90YXRlKDQ1KSIgY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI0ZGMkEyQSIKICAgICAgIGQ9Im0gMjIuMzQ0MzY5LC0zLjAxNjM2NDIgaCA1LjYzODYwNCB2IDEuNTc5MjQzMyBoIC0zLjU0OTIyNyB2IDEuNTA4NjkyOTkgaCAzLjMzNzU3NiBWIDEuNjUwODE1NCBoIC0zLjMzNzU3NiB2IDMuNDM1MjYxMyBoIC0yLjA4OTM3NyB6IG0gLTcuMTM2NDQ0LDEuNTc5MjQzMyB2IDQuOTQzOTU0MyBoIDAuNzQ4OTIgcSAxLjI4MDc2MSwwIDEuOTUzNzAzLC0wLjYzNDk1MzUgMC42NzgzNjksLTAuNjM0OTUzNSAwLjY3ODM2OSwtMS44NDUxNjQxIDAsLTEuMjA0NzgzNTUgLTAuNjcyOTQyLC0xLjgzNDMxMDExIC0wLjY3Mjk0MiwtMC42Mjk1MjY1OSAtMS45NTkxMywtMC42Mjk1MjY1OSB6IG0gLTIuMDg5Mzc3LC0xLjU3OTI0MzMgaCAyLjIwMzM0MyBxIDEuODQ1MTY0LDAgMi43NDYwMzksMC4yNjU5MjA3IDAuOTA2MzAxLDAuMjYwNDkzNyAxLjU1MjEwOCwwLjg5MDAyMDMgMC41Njk4MywwLjU0ODEyMjMgMC44NDY2MDUsMS4yNjQ0ODAwNiAwLjI3Njc3NCwwLjcxNjM1NzgxIDAuMjc2Nzc0LDEuNjIyNjU4OTQgMCwwLjkxNzE1NTEgLTAuMjc2Nzc0LDEuNjM4OTM5OSAtMC4yNzY3NzUsMC43MTYzNTc4IC0wLjg0NjYwNSwxLjI2NDQ4IC0wLjY1MTIzNCwwLjYyOTUyNjYgLTEuNTYyOTYyLDAuODk1NDQ3MyAtMC45MTE3MjgsMC4yNjA0OTM3IC0yLjczNTE4NSwwLjI2MDQ5MzcgaCAtMi4yMDMzNDMgeiBtIC04LjE0NTg1NjUsMCBoIDMuNDY3ODIzIHEgMS41NDY2ODE2LDAgMi4zNzE1Nzg1LDAuNjg5MjIzIDAuODMwMzI0LDAuNjgzNzk2MSAwLjgzMDMyNCwxLjk1MzcwMzE0IDAsMS4yNzUzMzM5NyAtMC44MzAzMjQsMS45NjQ1NTcwNiBRIDkuOTg3MTk2MSwyLjI3NDkxNSA4LjQ0MDUxNDUsMi4yNzQ5MTUgSCA3LjA2MjA2ODQgViA1LjA4NjA3NjcgSCA0Ljk3MjY5MTUgWiBtIDIuMDg5Mzc2OSwxLjUxNDExOTkgdiAyLjI2MzAzOTQzIGggMS4xNTU5NDEgcSAwLjYwNzgxODgsMCAwLjkzODg2MjksLTAuMjkzMDU1NDcgMC4zMzEwNDQxLC0wLjI5ODQ4MjQxIDAuMzMxMDQ0MSwtMC44NDExNzc3MiAwLC0wLjU0MjY5NTMxIC0wLjMzMTA0NDEsLTAuODM1NzUwNzQgLTAuMzMxMDQ0MSwtMC4yOTMwNTU1IC0wLjkzODg2MjksLTAuMjkzMDU1NSB6IgovPgo8L3N2Zz4K);\n  --jp-icon-python: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMEQ0N0ExIj4KICAgIDxwYXRoIGQ9Ik0xMS4xIDYuOVY1LjhINi45YzAtLjUgMC0xLjMuMi0xLjYuNC0uNy44LTEuMSAxLjctMS40IDEuNy0uMyAyLjUtLjMgMy45LS4xIDEgLjEgMS45LjkgMS45IDEuOXY0LjJjMCAuNS0uOSAxLjYtMiAxLjZIOC44Yy0xLjUgMC0yLjQgMS40LTIuNCAyLjh2Mi4ySDQuN0MzLjUgMTUuMSAzIDE0IDMgMTMuMVY5Yy0uMS0xIC42LTIgMS44LTIgMS41LS4xIDYuMy0uMSA2LjMtLjF6Ii8+CiAgICA8cGF0aCBkPSJNMTAuOSAxNS4xdjEuMWg0LjJjMCAuNSAwIDEuMy0uMiAxLjYtLjQuNy0uOCAxLjEtMS43IDEuNC0xLjcuMy0yLjUuMy0zLjkuMS0xLS4xLTEuOS0uOS0xLjktMS45di00LjJjMC0uNS45LTEuNiAyLTEuNmgzLjhjMS41IDAgMi40LTEuNCAyLjQtMi44VjYuNmgxLjdDMTguNSA2LjkgMTkgOCAxOSA4LjlWMTNjMCAxLS43IDIuMS0xLjkgMi4xaC02LjJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-r-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjE5NkYzIiBkPSJNNC40IDIuNWMxLjItLjEgMi45LS4zIDQuOS0uMyAyLjUgMCA0LjEuNCA1LjIgMS4zIDEgLjcgMS41IDEuOSAxLjUgMy41IDAgMi0xLjQgMy41LTIuOSA0LjEgMS4yLjQgMS43IDEuNiAyLjIgMyAuNiAxLjkgMSAzLjkgMS4zIDQuNmgtMy44Yy0uMy0uNC0uOC0xLjctMS4yLTMuN3MtMS4yLTIuNi0yLjYtMi42aC0uOXY2LjRINC40VjIuNXptMy43IDYuOWgxLjRjMS45IDAgMi45LS45IDIuOS0yLjNzLTEtMi4zLTIuOC0yLjNjLS43IDAtMS4zIDAtMS42LjJ2NC41aC4xdi0uMXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-react: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMTUwIDE1MCA1NDEuOSAyOTUuMyI+CiAgPGcgY2xhc3M9ImpwLWljb24tYnJhbmQyIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzYxREFGQiI+CiAgICA8cGF0aCBkPSJNNjY2LjMgMjk2LjVjMC0zMi41LTQwLjctNjMuMy0xMDMuMS04Mi40IDE0LjQtNjMuNiA4LTExNC4yLTIwLjItMTMwLjQtNi41LTMuOC0xNC4xLTUuNi0yMi40LTUuNnYyMi4zYzQuNiAwIDguMy45IDExLjQgMi42IDEzLjYgNy44IDE5LjUgMzcuNSAxNC45IDc1LjctMS4xIDkuNC0yLjkgMTkuMy01LjEgMjkuNC0xOS42LTQuOC00MS04LjUtNjMuNS0xMC45LTEzLjUtMTguNS0yNy41LTM1LjMtNDEuNi01MCAzMi42LTMwLjMgNjMuMi00Ni45IDg0LTQ2LjlWNzhjLTI3LjUgMC02My41IDE5LjYtOTkuOSA1My42LTM2LjQtMzMuOC03Mi40LTUzLjItOTkuOS01My4ydjIyLjNjMjAuNyAwIDUxLjQgMTYuNSA4NCA0Ni42LTE0IDE0LjctMjggMzEuNC00MS4zIDQ5LjktMjIuNiAyLjQtNDQgNi4xLTYzLjYgMTEtMi4zLTEwLTQtMTkuNy01LjItMjktNC43LTM4LjIgMS4xLTY3LjkgMTQuNi03NS44IDMtMS44IDYuOS0yLjYgMTEuNS0yLjZWNzguNWMtOC40IDAtMTYgMS44LTIyLjYgNS42LTI4LjEgMTYuMi0zNC40IDY2LjctMTkuOSAxMzAuMS02Mi4yIDE5LjItMTAyLjcgNDkuOS0xMDIuNyA4Mi4zIDAgMzIuNSA0MC43IDYzLjMgMTAzLjEgODIuNC0xNC40IDYzLjYtOCAxMTQuMiAyMC4yIDEzMC40IDYuNSAzLjggMTQuMSA1LjYgMjIuNSA1LjYgMjcuNSAwIDYzLjUtMTkuNiA5OS45LTUzLjYgMzYuNCAzMy44IDcyLjQgNTMuMiA5OS45IDUzLjIgOC40IDAgMTYtMS44IDIyLjYtNS42IDI4LjEtMTYuMiAzNC40LTY2LjcgMTkuOS0xMzAuMSA2Mi0xOS4xIDEwMi41LTQ5LjkgMTAyLjUtODIuM3ptLTEzMC4yLTY2LjdjLTMuNyAxMi45LTguMyAyNi4yLTEzLjUgMzkuNS00LjEtOC04LjQtMTYtMTMuMS0yNC00LjYtOC05LjUtMTUuOC0xNC40LTIzLjQgMTQuMiAyLjEgMjcuOSA0LjcgNDEgNy45em0tNDUuOCAxMDYuNWMtNy44IDEzLjUtMTUuOCAyNi4zLTI0LjEgMzguMi0xNC45IDEuMy0zMCAyLTQ1LjIgMi0xNS4xIDAtMzAuMi0uNy00NS0xLjktOC4zLTExLjktMTYuNC0yNC42LTI0LjItMzgtNy42LTEzLjEtMTQuNS0yNi40LTIwLjgtMzkuOCA2LjItMTMuNCAxMy4yLTI2LjggMjAuNy0zOS45IDcuOC0xMy41IDE1LjgtMjYuMyAyNC4xLTM4LjIgMTQuOS0xLjMgMzAtMiA0NS4yLTIgMTUuMSAwIDMwLjIuNyA0NSAxLjkgOC4zIDExLjkgMTYuNCAyNC42IDI0LjIgMzggNy42IDEzLjEgMTQuNSAyNi40IDIwLjggMzkuOC02LjMgMTMuNC0xMy4yIDI2LjgtMjAuNyAzOS45em0zMi4zLTEzYzUuNCAxMy40IDEwIDI2LjggMTMuOCAzOS44LTEzLjEgMy4yLTI2LjkgNS45LTQxLjIgOCA0LjktNy43IDkuOC0xNS42IDE0LjQtMjMuNyA0LjYtOCA4LjktMTYuMSAxMy0yNC4xek00MjEuMiA0MzBjLTkuMy05LjYtMTguNi0yMC4zLTI3LjgtMzIgOSAuNCAxOC4yLjcgMjcuNS43IDkuNCAwIDE4LjctLjIgMjcuOC0uNy05IDExLjctMTguMyAyMi40LTI3LjUgMzJ6bS03NC40LTU4LjljLTE0LjItMi4xLTI3LjktNC43LTQxLTcuOSAzLjctMTIuOSA4LjMtMjYuMiAxMy41LTM5LjUgNC4xIDggOC40IDE2IDEzLjEgMjQgNC43IDggOS41IDE1LjggMTQuNCAyMy40ek00MjAuNyAxNjNjOS4zIDkuNiAxOC42IDIwLjMgMjcuOCAzMi05LS40LTE4LjItLjctMjcuNS0uNy05LjQgMC0xOC43LjItMjcuOC43IDktMTEuNyAxOC4zLTIyLjQgMjcuNS0zMnptLTc0IDU4LjljLTQuOSA3LjctOS44IDE1LjYtMTQuNCAyMy43LTQuNiA4LTguOSAxNi0xMyAyNC01LjQtMTMuNC0xMC0yNi44LTEzLjgtMzkuOCAxMy4xLTMuMSAyNi45LTUuOCA0MS4yLTcuOXptLTkwLjUgMTI1LjJjLTM1LjQtMTUuMS01OC4zLTM0LjktNTguMy01MC42IDAtMTUuNyAyMi45LTM1LjYgNTguMy01MC42IDguNi0zLjcgMTgtNyAyNy43LTEwLjEgNS43IDE5LjYgMTMuMiA0MCAyMi41IDYwLjktOS4yIDIwLjgtMTYuNiA0MS4xLTIyLjIgNjAuNi05LjktMy4xLTE5LjMtNi41LTI4LTEwLjJ6TTMxMCA0OTBjLTEzLjYtNy44LTE5LjUtMzcuNS0xNC45LTc1LjcgMS4xLTkuNCAyLjktMTkuMyA1LjEtMjkuNCAxOS42IDQuOCA0MSA4LjUgNjMuNSAxMC45IDEzLjUgMTguNSAyNy41IDM1LjMgNDEuNiA1MC0zMi42IDMwLjMtNjMuMiA0Ni45LTg0IDQ2LjktNC41LS4xLTguMy0xLTExLjMtMi43em0yMzcuMi03Ni4yYzQuNyAzOC4yLTEuMSA2Ny45LTE0LjYgNzUuOC0zIDEuOC02LjkgMi42LTExLjUgMi42LTIwLjcgMC01MS40LTE2LjUtODQtNDYuNiAxNC0xNC43IDI4LTMxLjQgNDEuMy00OS45IDIyLjYtMi40IDQ0LTYuMSA2My42LTExIDIuMyAxMC4xIDQuMSAxOS44IDUuMiAyOS4xem0zOC41LTY2LjdjLTguNiAzLjctMTggNy0yNy43IDEwLjEtNS43LTE5LjYtMTMuMi00MC0yMi41LTYwLjkgOS4yLTIwLjggMTYuNi00MS4xIDIyLjItNjAuNiA5LjkgMy4xIDE5LjMgNi41IDI4LjEgMTAuMiAzNS40IDE1LjEgNTguMyAzNC45IDU4LjMgNTAuNi0uMSAxNS43LTIzIDM1LjYtNTguNCA1MC42ek0zMjAuOCA3OC40eiIvPgogICAgPGNpcmNsZSBjeD0iNDIwLjkiIGN5PSIyOTYuNSIgcj0iNDUuNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-redo: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTE4LjQgMTAuNkMxNi41NSA4Ljk5IDE0LjE1IDggMTEuNSA4Yy00LjY1IDAtOC41OCAzLjAzLTkuOTYgNy4yMkwzLjkgMTZjMS4wNS0zLjE5IDQuMDUtNS41IDcuNi01LjUgMS45NSAwIDMuNzMuNzIgNS4xMiAxLjg4TDEzIDE2aDlWN2wtMy42IDMuNnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-refresh: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTkgMTMuNWMtMi40OSAwLTQuNS0yLjAxLTQuNS00LjVTNi41MSA0LjUgOSA0LjVjMS4yNCAwIDIuMzYuNTIgMy4xNyAxLjMzTDEwIDhoNVYzbC0xLjc2IDEuNzZDMTIuMTUgMy42OCAxMC42NiAzIDkgMyA1LjY5IDMgMy4wMSA1LjY5IDMuMDEgOVM1LjY5IDE1IDkgMTVjMi45NyAwIDUuNDMtMi4xNiA1LjktNWgtMS41MmMtLjQ2IDItMi4yNCAzLjUtNC4zOCAzLjV6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-regex: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi1hY2NlbnQyIiBmaWxsPSIjRkZGIj4KICAgIDxjaXJjbGUgY2xhc3M9InN0MiIgY3g9IjUuNSIgY3k9IjE0LjUiIHI9IjEuNSIvPgogICAgPHJlY3QgeD0iMTIiIHk9IjQiIGNsYXNzPSJzdDIiIHdpZHRoPSIxIiBoZWlnaHQ9IjgiLz4KICAgIDxyZWN0IHg9IjguNSIgeT0iNy41IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjg2NiAtMC41IDAuNSAwLjg2NiAtMi4zMjU1IDcuMzIxOSkiIGNsYXNzPSJzdDIiIHdpZHRoPSI4IiBoZWlnaHQ9IjEiLz4KICAgIDxyZWN0IHg9IjEyIiB5PSI0IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjUgLTAuODY2IDAuODY2IDAuNSAtMC42Nzc5IDE0LjgyNTIpIiBjbGFzcz0ic3QyIiB3aWR0aD0iMSIgaGVpZ2h0PSI4Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-run: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTggNXYxNGwxMS03eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-running: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptOTYgMzI4YzAgOC44LTcuMiAxNi0xNiAxNkgxNzZjLTguOCAwLTE2LTcuMi0xNi0xNlYxNzZjMC04LjggNy4yLTE2IDE2LTE2aDE2MGM4LjggMCAxNiA3LjIgMTYgMTZ2MTYweiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-save: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE3IDNINWMtMS4xMSAwLTIgLjktMiAydjE0YzAgMS4xLjg5IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjdsLTQtNHptLTUgMTZjLTEuNjYgMC0zLTEuMzQtMy0zczEuMzQtMyAzLTMgMyAxLjM0IDMgMy0xLjM0IDMtMyAzem0zLTEwSDVWNWgxMHY0eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-search: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjEsMTAuOWgtMC43bC0wLjItMC4yYzAuOC0wLjksMS4zLTIuMiwxLjMtMy41YzAtMy0yLjQtNS40LTUuNC01LjRTMS44LDQuMiwxLjgsNy4xczIuNCw1LjQsNS40LDUuNCBjMS4zLDAsMi41LTAuNSwzLjUtMS4zbDAuMiwwLjJ2MC43bDQuMSw0LjFsMS4yLTEuMkwxMi4xLDEwLjl6IE03LjEsMTAuOWMtMi4xLDAtMy43LTEuNy0zLjctMy43czEuNy0zLjcsMy43LTMuN3MzLjcsMS43LDMuNywzLjcgUzkuMiwxMC45LDcuMSwxMC45eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-settings: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuNDMgMTIuOThjLjA0LS4zMi4wNy0uNjQuMDctLjk4cy0uMDMtLjY2LS4wNy0uOThsMi4xMS0xLjY1Yy4xOS0uMTUuMjQtLjQyLjEyLS42NGwtMi0zLjQ2Yy0uMTItLjIyLS4zOS0uMy0uNjEtLjIybC0yLjQ5IDFjLS41Mi0uNC0xLjA4LS43My0xLjY5LS45OGwtLjM4LTIuNjVBLjQ4OC40ODggMCAwMDE0IDJoLTRjLS4yNSAwLS40Ni4xOC0uNDkuNDJsLS4zOCAyLjY1Yy0uNjEuMjUtMS4xNy41OS0xLjY5Ljk4bC0yLjQ5LTFjLS4yMy0uMDktLjQ5IDAtLjYxLjIybC0yIDMuNDZjLS4xMy4yMi0uMDcuNDkuMTIuNjRsMi4xMSAxLjY1Yy0uMDQuMzItLjA3LjY1LS4wNy45OHMuMDMuNjYuMDcuOThsLTIuMTEgMS42NWMtLjE5LjE1LS4yNC40Mi0uMTIuNjRsMiAzLjQ2Yy4xMi4yMi4zOS4zLjYxLjIybDIuNDktMWMuNTIuNCAxLjA4LjczIDEuNjkuOThsLjM4IDIuNjVjLjAzLjI0LjI0LjQyLjQ5LjQyaDRjLjI1IDAgLjQ2LS4xOC40OS0uNDJsLjM4LTIuNjVjLjYxLS4yNSAxLjE3LS41OSAxLjY5LS45OGwyLjQ5IDFjLjIzLjA5LjQ5IDAgLjYxLS4yMmwyLTMuNDZjLjEyLS4yMi4wNy0uNDktLjEyLS42NGwtMi4xMS0xLjY1ek0xMiAxNS41Yy0xLjkzIDAtMy41LTEuNTctMy41LTMuNXMxLjU3LTMuNSAzLjUtMy41IDMuNSAxLjU3IDMuNSAzLjUtMS41NyAzLjUtMy41IDMuNXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-spreadsheet: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNENBRjUwIiBkPSJNMi4yIDIuMnYxNy42aDE3LjZWMi4ySDIuMnptMTUuNCA3LjdoLTUuNVY0LjRoNS41djUuNXpNOS45IDQuNHY1LjVINC40VjQuNGg1LjV6bS01LjUgNy43aDUuNXY1LjVINC40di01LjV6bTcuNyA1LjV2LTUuNWg1LjV2NS41aC01LjV6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-stop: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik02IDZoMTJ2MTJINnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tab: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIxIDNIM2MtMS4xIDAtMiAuOS0yIDJ2MTRjMCAxLjEuOSAyIDIgMmgxOGMxLjEgMCAyLS45IDItMlY1YzAtMS4xLS45LTItMi0yem0wIDE2SDNWNWgxMHY0aDh2MTB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-table-rows: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMSw4SDNWNGgxOFY4eiBNMjEsMTBIM3Y0aDE4VjEweiBNMjEsMTZIM3Y0aDE4VjE2eiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-tag: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCA0MyAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTI4LjgzMzIgMTIuMzM0TDMyLjk5OTggMTYuNTAwN0wzNy4xNjY1IDEyLjMzNEgyOC44MzMyWiIvPgoJCTxwYXRoIGQ9Ik0xNi4yMDk1IDIxLjYxMDRDMTUuNjg3MyAyMi4xMjk5IDE0Ljg0NDMgMjIuMTI5OSAxNC4zMjQ4IDIxLjYxMDRMNi45ODI5IDE0LjcyNDVDNi41NzI0IDE0LjMzOTQgNi4wODMxMyAxMy42MDk4IDYuMDQ3ODYgMTMuMDQ4MkM1Ljk1MzQ3IDExLjUyODggNi4wMjAwMiA4LjYxOTQ0IDYuMDY2MjEgNy4wNzY5NUM2LjA4MjgxIDYuNTE0NzcgNi41NTU0OCA2LjA0MzQ3IDcuMTE4MDQgNi4wMzA1NUM5LjA4ODYzIDUuOTg0NzMgMTMuMjYzOCA1LjkzNTc5IDEzLjY1MTggNi4zMjQyNUwyMS43MzY5IDEzLjYzOUMyMi4yNTYgMTQuMTU4NSAyMS43ODUxIDE1LjQ3MjQgMjEuMjYyIDE1Ljk5NDZMMTYuMjA5NSAyMS42MTA0Wk05Ljc3NTg1IDguMjY1QzkuMzM1NTEgNy44MjU2NiA4LjYyMzUxIDcuODI1NjYgOC4xODI4IDguMjY1QzcuNzQzNDYgOC43MDU3MSA3Ljc0MzQ2IDkuNDE3MzMgOC4xODI4IDkuODU2NjdDOC42MjM4MiAxMC4yOTY0IDkuMzM1ODIgMTAuMjk2NCA5Ljc3NTg1IDkuODU2NjdDMTAuMjE1NiA5LjQxNzMzIDEwLjIxNTYgOC43MDUzMyA5Ljc3NTg1IDguMjY1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-terminal: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiA+CiAgICA8cmVjdCBjbGFzcz0ianAtaWNvbjIganAtaWNvbi1zZWxlY3RhYmxlIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMikiIGZpbGw9IiMzMzMzMzMiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uLWFjY2VudDIganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGQ9Ik01LjA1NjY0IDguNzYxNzJDNS4wNTY2NCA4LjU5NzY2IDUuMDMxMjUgOC40NTMxMiA0Ljk4MDQ3IDguMzI4MTJDNC45MzM1OSA4LjE5OTIyIDQuODU1NDcgOC4wODIwMyA0Ljc0NjA5IDcuOTc2NTZDNC42NDA2MiA3Ljg3MTA5IDQuNSA3Ljc3NTM5IDQuMzI0MjIgNy42ODk0NUM0LjE1MjM0IDcuNTk5NjEgMy45NDMzNiA3LjUxMTcyIDMuNjk3MjcgNy40MjU3OEMzLjMwMjczIDcuMjg1MTYgMi45NDMzNiA3LjEzNjcyIDIuNjE5MTQgNi45ODA0N0MyLjI5NDkyIDYuODI0MjIgMi4wMTc1OCA2LjY0MjU4IDEuNzg3MTEgNi40MzU1NUMxLjU2MDU1IDYuMjI4NTIgMS4zODQ3NyA1Ljk4ODI4IDEuMjU5NzcgNS43MTQ4NEMxLjEzNDc3IDUuNDM3NSAxLjA3MjI3IDUuMTA5MzggMS4wNzIyNyA0LjczMDQ3QzEuMDcyMjcgNC4zOTg0NCAxLjEyODkxIDQuMDk1NyAxLjI0MjE5IDMuODIyMjdDMS4zNTU0NyAzLjU0NDkyIDEuNTE1NjIgMy4zMDQ2OSAxLjcyMjY2IDMuMTAxNTZDMS45Mjk2OSAyLjg5ODQ0IDIuMTc5NjkgMi43MzQzNyAyLjQ3MjY2IDIuNjA5MzhDMi43NjU2MiAyLjQ4NDM4IDMuMDkxOCAyLjQwNDMgMy40NTExNyAyLjM2OTE0VjEuMTA5MzhINC4zODg2N1YyLjM4MDg2QzQuNzQwMjMgMi40Mjc3MyA1LjA1NjY0IDIuNTIzNDQgNS4zMzc4OSAyLjY2Nzk3QzUuNjE5MTQgMi44MTI1IDUuODU3NDIgMy4wMDE5NSA2LjA1MjczIDMuMjM2MzNDNi4yNTE5NSAzLjQ2NjggNi40MDQzIDMuNzQwMjMgNi41MDk3NyA0LjA1NjY0QzYuNjE5MTQgNC4zNjkxNCA2LjY3MzgzIDQuNzIwNyA2LjY3MzgzIDUuMTExMzNINS4wNDQ5MkM1LjA0NDkyIDQuNjM4NjcgNC45Mzc1IDQuMjgxMjUgNC43MjI2NiA0LjAzOTA2QzQuNTA3ODEgMy43OTI5NyA0LjIxNjggMy42Njk5MiAzLjg0OTYxIDMuNjY5OTJDMy42NTAzOSAzLjY2OTkyIDMuNDc2NTYgMy42OTcyNyAzLjMyODEyIDMuNzUxOTVDMy4xODM1OSAzLjgwMjczIDMuMDY0NDUgMy44NzY5NSAyLjk3MDcgMy45NzQ2MUMyLjg3Njk1IDQuMDY4MzYgMi44MDY2NCA0LjE3OTY5IDIuNzU5NzcgNC4zMDg1OUMyLjcxNjggNC40Mzc1IDIuNjk1MzEgNC41NzgxMiAyLjY5NTMxIDQuNzMwNDdDMi42OTUzMSA0Ljg4MjgxIDIuNzE2OCA1LjAxOTUzIDIuNzU5NzcgNS4xNDA2MkMyLjgwNjY0IDUuMjU3ODEgMi44ODI4MSA1LjM2NzE5IDIuOTg4MjggNS40Njg3NUMzLjA5NzY2IDUuNTcwMzEgMy4yNDAyMyA1LjY2Nzk3IDMuNDE2MDIgNS43NjE3MkMzLjU5MTggNS44NTE1NiAzLjgxMDU1IDUuOTQzMzYgNC4wNzIyNyA2LjAzNzExQzQuNDY2OCA2LjE4NTU1IDQuODI0MjIgNi4zMzk4NCA1LjE0NDUzIDYuNUM1LjQ2NDg0IDYuNjU2MjUgNS43MzgyOCA2LjgzOTg0IDUuOTY0ODQgNy4wNTA3OEM2LjE5NTMxIDcuMjU3ODEgNi4zNzEwOSA3LjUgNi40OTIxOSA3Ljc3NzM0QzYuNjE3MTkgOC4wNTA3OCA2LjY3OTY5IDguMzc1IDYuNjc5NjkgOC43NUM2LjY3OTY5IDkuMDkzNzUgNi42MjMwNSA5LjQwNDMgNi41MDk3NyA5LjY4MTY0QzYuMzk2NDggOS45NTUwOCA2LjIzNDM4IDEwLjE5MTQgNi4wMjM0NCAxMC4zOTA2QzUuODEyNSAxMC41ODk4IDUuNTU4NTkgMTAuNzUgNS4yNjE3MiAxMC44NzExQzQuOTY0ODQgMTAuOTg4MyA0LjYzMjgxIDExLjA2NDUgNC4yNjU2MiAxMS4wOTk2VjEyLjI0OEgzLjMzMzk4VjExLjA5OTZDMy4wMDE5NSAxMS4wNjg0IDIuNjc5NjkgMTAuOTk2MSAyLjM2NzE5IDEwLjg4MjhDMi4wNTQ2OSAxMC43NjU2IDEuNzc3MzQgMTAuNTk3NyAxLjUzNTE2IDEwLjM3ODlDMS4yOTY4OCAxMC4xNjAyIDEuMTA1NDcgOS44ODQ3NyAwLjk2MDkzOCA5LjU1MjczQzAuODE2NDA2IDkuMjE2OCAwLjc0NDE0MSA4LjgxNDQ1IDAuNzQ0MTQxIDguMzQ1N0gyLjM3ODkxQzIuMzc4OTEgOC42MjY5NSAyLjQxOTkyIDguODYzMjggMi41MDE5NSA5LjA1NDY5QzIuNTgzOTggOS4yNDIxOSAyLjY4OTQ1IDkuMzkyNTggMi44MTgzNiA5LjUwNTg2QzIuOTUxMTcgOS42MTUyMyAzLjEwMTU2IDkuNjkzMzYgMy4yNjk1MyA5Ljc0MDIzQzMuNDM3NSA5Ljc4NzExIDMuNjA5MzggOS44MTA1NSAzLjc4NTE2IDkuODEwNTVDNC4yMDMxMiA5LjgxMDU1IDQuNTE5NTMgOS43MTI4OSA0LjczNDM4IDkuNTE3NThDNC45NDkyMiA5LjMyMjI3IDUuMDU2NjQgOS4wNzAzMSA1LjA1NjY0IDguNzYxNzJaTTEzLjQxOCAxMi4yNzE1SDguMDc0MjJWMTFIMTMuNDE4VjEyLjI3MTVaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzLjk1MjY0IDYpIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);\n  --jp-icon-text-editor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTUgMTVIM3YyaDEydi0yem0wLThIM3YyaDEyVjd6TTMgMTNoMTh2LTJIM3Yyem0wIDhoMTh2LTJIM3Yyek0zIDN2MmgxOFYzSDN6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-toc: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik03LDVIMjFWN0g3VjVNNywxM1YxMUgyMVYxM0g3TTQsNC41QTEuNSwxLjUgMCAwLDEgNS41LDZBMS41LDEuNSAwIDAsMSA0LDcuNUExLjUsMS41IDAgMCwxIDIuNSw2QTEuNSwxLjUgMCAwLDEgNCw0LjVNNCwxMC41QTEuNSwxLjUgMCAwLDEgNS41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMy41QTEuNSwxLjUgMCAwLDEgMi41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMC41TTcsMTlWMTdIMjFWMTlIN000LDE2LjVBMS41LDEuNSAwIDAsMSA1LjUsMThBMS41LDEuNSAwIDAsMSA0LDE5LjVBMS41LDEuNSAwIDAsMSAyLjUsMThBMS41LDEuNSAwIDAsMSA0LDE2LjVaIiAvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tree-view: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMiAxMVYzaC03djNIOVYzSDJ2OGg3VjhoMnYxMGg0djNoN3YtOGgtN3YzaC0yVjhoMnYzeiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMiAxNy4xODQ0IDIuOTY5NjggMTQuMzAzMiAxLjg2MDk0IDExLjQ0MDlaIi8+CiAgICA8cGF0aCBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiMzMzMzMzMiIHN0cm9rZT0iIzMzMzMzMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA5Ljg2NzE5KSIgZD0iTTIuODYwMTUgNC44NjUzNUwwLjcyNjU0OSAyLjk5OTU5TDAgMy42MzA0NUwyLjg2MDE1IDYuMTMxNTdMOCAwLjYzMDg3Mkw3LjI3ODU3IDBMMi44NjAxNSA0Ljg2NTM1WiIvPgo8L3N2Zz4K);\n  --jp-icon-undo: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjUgOGMtMi42NSAwLTUuMDUuOTktNi45IDIuNkwyIDd2OWg5bC0zLjYyLTMuNjJjMS4zOS0xLjE2IDMuMTYtMS44OCA1LjEyLTEuODggMy41NCAwIDYuNTUgMi4zMSA3LjYgNS41bDIuMzctLjc4QzIxLjA4IDExLjAzIDE3LjE1IDggMTIuNSA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-vega: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbjEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjEyMTIxIj4KICAgIDxwYXRoIGQ9Ik0xMC42IDUuNGwyLjItMy4ySDIuMnY3LjNsNC02LjZ6Ii8+CiAgICA8cGF0aCBkPSJNMTUuOCAyLjJsLTQuNCA2LjZMNyA2LjNsLTQuOCA4djUuNWgxNy42VjIuMmgtNHptLTcgMTUuNEg1LjV2LTQuNGgzLjN2NC40em00LjQgMEg5LjhWOS44aDMuNHY3Ljh6bTQuNCAwaC0zLjRWNi41aDMuNHYxMS4xeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-yaml: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1jb250cmFzdDIganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjRDgxQjYwIj4KICAgIDxwYXRoIGQ9Ik03LjIgMTguNnYtNS40TDMgNS42aDMuM2wxLjQgMy4xYy4zLjkuNiAxLjYgMSAyLjUuMy0uOC42LTEuNiAxLTIuNWwxLjQtMy4xaDMuNGwtNC40IDcuNnY1LjVsLTIuOS0uMXoiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxNi41IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxMSIgcj0iMi4xIi8+CiAgPC9nPgo8L3N2Zz4K);\n}\n\n/* Icon CSS class declarations */\n\n.jp-AddIcon {\n  background-image: var(--jp-icon-add);\n}\n.jp-BugIcon {\n  background-image: var(--jp-icon-bug);\n}\n.jp-BuildIcon {\n  background-image: var(--jp-icon-build);\n}\n.jp-CaretDownEmptyIcon {\n  background-image: var(--jp-icon-caret-down-empty);\n}\n.jp-CaretDownEmptyThinIcon {\n  background-image: var(--jp-icon-caret-down-empty-thin);\n}\n.jp-CaretDownIcon {\n  background-image: var(--jp-icon-caret-down);\n}\n.jp-CaretLeftIcon {\n  background-image: var(--jp-icon-caret-left);\n}\n.jp-CaretRightIcon {\n  background-image: var(--jp-icon-caret-right);\n}\n.jp-CaretUpEmptyThinIcon {\n  background-image: var(--jp-icon-caret-up-empty-thin);\n}\n.jp-CaretUpIcon {\n  background-image: var(--jp-icon-caret-up);\n}\n.jp-CaseSensitiveIcon {\n  background-image: var(--jp-icon-case-sensitive);\n}\n.jp-CheckIcon {\n  background-image: var(--jp-icon-check);\n}\n.jp-CircleEmptyIcon {\n  background-image: var(--jp-icon-circle-empty);\n}\n.jp-CircleIcon {\n  background-image: var(--jp-icon-circle);\n}\n.jp-ClearIcon {\n  background-image: var(--jp-icon-clear);\n}\n.jp-CloseIcon {\n  background-image: var(--jp-icon-close);\n}\n.jp-CodeIcon {\n  background-image: var(--jp-icon-code);\n}\n.jp-ConsoleIcon {\n  background-image: var(--jp-icon-console);\n}\n.jp-CopyIcon {\n  background-image: var(--jp-icon-copy);\n}\n.jp-CopyrightIcon {\n  background-image: var(--jp-icon-copyright);\n}\n.jp-CutIcon {\n  background-image: var(--jp-icon-cut);\n}\n.jp-DownloadIcon {\n  background-image: var(--jp-icon-download);\n}\n.jp-EditIcon {\n  background-image: var(--jp-icon-edit);\n}\n.jp-EllipsesIcon {\n  background-image: var(--jp-icon-ellipses);\n}\n.jp-ExtensionIcon {\n  background-image: var(--jp-icon-extension);\n}\n.jp-FastForwardIcon {\n  background-image: var(--jp-icon-fast-forward);\n}\n.jp-FileIcon {\n  background-image: var(--jp-icon-file);\n}\n.jp-FileUploadIcon {\n  background-image: var(--jp-icon-file-upload);\n}\n.jp-FilterListIcon {\n  background-image: var(--jp-icon-filter-list);\n}\n.jp-FolderIcon {\n  background-image: var(--jp-icon-folder);\n}\n.jp-Html5Icon {\n  background-image: var(--jp-icon-html5);\n}\n.jp-ImageIcon {\n  background-image: var(--jp-icon-image);\n}\n.jp-InspectorIcon {\n  background-image: var(--jp-icon-inspector);\n}\n.jp-JsonIcon {\n  background-image: var(--jp-icon-json);\n}\n.jp-JuliaIcon {\n  background-image: var(--jp-icon-julia);\n}\n.jp-JupyterFaviconIcon {\n  background-image: var(--jp-icon-jupyter-favicon);\n}\n.jp-JupyterIcon {\n  background-image: var(--jp-icon-jupyter);\n}\n.jp-JupyterlabWordmarkIcon {\n  background-image: var(--jp-icon-jupyterlab-wordmark);\n}\n.jp-KernelIcon {\n  background-image: var(--jp-icon-kernel);\n}\n.jp-KeyboardIcon {\n  background-image: var(--jp-icon-keyboard);\n}\n.jp-LauncherIcon {\n  background-image: var(--jp-icon-launcher);\n}\n.jp-LineFormIcon {\n  background-image: var(--jp-icon-line-form);\n}\n.jp-LinkIcon {\n  background-image: var(--jp-icon-link);\n}\n.jp-ListIcon {\n  background-image: var(--jp-icon-list);\n}\n.jp-ListingsInfoIcon {\n  background-image: var(--jp-icon-listings-info);\n}\n.jp-MarkdownIcon {\n  background-image: var(--jp-icon-markdown);\n}\n.jp-NewFolderIcon {\n  background-image: var(--jp-icon-new-folder);\n}\n.jp-NotTrustedIcon {\n  background-image: var(--jp-icon-not-trusted);\n}\n.jp-NotebookIcon {\n  background-image: var(--jp-icon-notebook);\n}\n.jp-NumberingIcon {\n  background-image: var(--jp-icon-numbering);\n}\n.jp-OfflineBoltIcon {\n  background-image: var(--jp-icon-offline-bolt);\n}\n.jp-PaletteIcon {\n  background-image: var(--jp-icon-palette);\n}\n.jp-PasteIcon {\n  background-image: var(--jp-icon-paste);\n}\n.jp-PdfIcon {\n  background-image: var(--jp-icon-pdf);\n}\n.jp-PythonIcon {\n  background-image: var(--jp-icon-python);\n}\n.jp-RKernelIcon {\n  background-image: var(--jp-icon-r-kernel);\n}\n.jp-ReactIcon {\n  background-image: var(--jp-icon-react);\n}\n.jp-RedoIcon {\n  background-image: var(--jp-icon-redo);\n}\n.jp-RefreshIcon {\n  background-image: var(--jp-icon-refresh);\n}\n.jp-RegexIcon {\n  background-image: var(--jp-icon-regex);\n}\n.jp-RunIcon {\n  background-image: var(--jp-icon-run);\n}\n.jp-RunningIcon {\n  background-image: var(--jp-icon-running);\n}\n.jp-SaveIcon {\n  background-image: var(--jp-icon-save);\n}\n.jp-SearchIcon {\n  background-image: var(--jp-icon-search);\n}\n.jp-SettingsIcon {\n  background-image: var(--jp-icon-settings);\n}\n.jp-SpreadsheetIcon {\n  background-image: var(--jp-icon-spreadsheet);\n}\n.jp-StopIcon {\n  background-image: var(--jp-icon-stop);\n}\n.jp-TabIcon {\n  background-image: var(--jp-icon-tab);\n}\n.jp-TableRowsIcon {\n  background-image: var(--jp-icon-table-rows);\n}\n.jp-TagIcon {\n  background-image: var(--jp-icon-tag);\n}\n.jp-TerminalIcon {\n  background-image: var(--jp-icon-terminal);\n}\n.jp-TextEditorIcon {\n  background-image: var(--jp-icon-text-editor);\n}\n.jp-TocIcon {\n  background-image: var(--jp-icon-toc);\n}\n.jp-TreeViewIcon {\n  background-image: var(--jp-icon-tree-view);\n}\n.jp-TrustedIcon {\n  background-image: var(--jp-icon-trusted);\n}\n.jp-UndoIcon {\n  background-image: var(--jp-icon-undo);\n}\n.jp-VegaIcon {\n  background-image: var(--jp-icon-vega);\n}\n.jp-YamlIcon {\n  background-image: var(--jp-icon-yaml);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n.jp-Icon,\n.jp-MaterialIcon {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-cover {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: cover;\n}\n\n/**\n * (DEPRECATED) Support for specific CSS icon sizes\n */\n\n.jp-Icon-16 {\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-18 {\n  background-size: 18px;\n  min-width: 18px;\n  min-height: 18px;\n}\n\n.jp-Icon-20 {\n  background-size: 20px;\n  min-width: 20px;\n  min-height: 20px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for icons as inline SVG HTMLElements\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n/* recolor the accent elements of an icon */\n.jp-icon-accent0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-accent1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-accent2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-accent3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-accent4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-accent0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-accent1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-accent2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-accent3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-accent4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n/* set the color of an icon to transparent */\n.jp-icon-none[fill] {\n  fill: none;\n}\n\n.jp-icon-none[stroke] {\n  stroke: none;\n}\n/* brand icon colors. Same for light and dark */\n.jp-icon-brand0[fill] {\n  fill: var(--jp-brand-color0);\n}\n.jp-icon-brand1[fill] {\n  fill: var(--jp-brand-color1);\n}\n.jp-icon-brand2[fill] {\n  fill: var(--jp-brand-color2);\n}\n.jp-icon-brand3[fill] {\n  fill: var(--jp-brand-color3);\n}\n.jp-icon-brand4[fill] {\n  fill: var(--jp-brand-color4);\n}\n\n.jp-icon-brand0[stroke] {\n  stroke: var(--jp-brand-color0);\n}\n.jp-icon-brand1[stroke] {\n  stroke: var(--jp-brand-color1);\n}\n.jp-icon-brand2[stroke] {\n  stroke: var(--jp-brand-color2);\n}\n.jp-icon-brand3[stroke] {\n  stroke: var(--jp-brand-color3);\n}\n.jp-icon-brand4[stroke] {\n  stroke: var(--jp-brand-color4);\n}\n/* warn icon colors. Same for light and dark */\n.jp-icon-warn0[fill] {\n  fill: var(--jp-warn-color0);\n}\n.jp-icon-warn1[fill] {\n  fill: var(--jp-warn-color1);\n}\n.jp-icon-warn2[fill] {\n  fill: var(--jp-warn-color2);\n}\n.jp-icon-warn3[fill] {\n  fill: var(--jp-warn-color3);\n}\n\n.jp-icon-warn0[stroke] {\n  stroke: var(--jp-warn-color0);\n}\n.jp-icon-warn1[stroke] {\n  stroke: var(--jp-warn-color1);\n}\n.jp-icon-warn2[stroke] {\n  stroke: var(--jp-warn-color2);\n}\n.jp-icon-warn3[stroke] {\n  stroke: var(--jp-warn-color3);\n}\n/* icon colors that contrast well with each other and most backgrounds */\n.jp-icon-contrast0[fill] {\n  fill: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[fill] {\n  fill: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[fill] {\n  fill: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[fill] {\n  fill: var(--jp-icon-contrast-color3);\n}\n\n.jp-icon-contrast0[stroke] {\n  stroke: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[stroke] {\n  stroke: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[stroke] {\n  stroke: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[stroke] {\n  stroke: var(--jp-icon-contrast-color3);\n}\n\n/* CSS for icons in selected items in the settings editor */\n#setting-editor .jp-PluginList .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n#setting-editor\n  .jp-PluginList\n  .jp-mod-selected\n  .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected filebrowser listing items */\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected tabs in the sidebar tab manager */\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable-inverse[fill] {\n  fill: #fff;\n}\n\n/**\n * TODO: come up with non css-hack solution for showing the busy icon on top\n *  of the close icon\n * CSS for complex behavior of close icon of tabs in the sidebar tab manager\n */\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty.jp-mod-active\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: #fff;\n}\n\n/**\n* TODO: come up with non css-hack solution for showing the busy icon on top\n*  of the close icon\n* CSS for complex behavior of close icon of tabs in the main area tabbar\n*/\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n/* CSS for icons in status bar */\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n/* special handling for splash icon CSS. While the theme CSS reloads during\n   splash, the splash icon can loose theming. To prevent that, we set a\n   default for its color variable */\n:root {\n  --jp-warn-color0: var(--md-orange-700);\n}\n\n/* not sure what to do with this one, used in filebrowser listing */\n.jp-DragIcon {\n  margin-right: 4px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for alt colors for icons as inline SVG HTMLElements\n */\n\n/* alt recolor the primary elements of an icon */\n.jp-icon-alt .jp-icon0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-alt .jp-icon0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* alt recolor the accent elements of an icon */\n.jp-icon-alt .jp-icon-accent0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-alt .jp-icon-accent0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-icon-hoverShow:not(:hover) svg {\n  display: none !important;\n}\n\n/**\n * Support for hover colors for icons as inline SVG HTMLElements\n */\n\n/**\n * regular colors\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon-hover :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/* recolor the accent elements of an icon */\n.jp-icon-hover :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* set the color of an icon to transparent */\n.jp-icon-hover :hover .jp-icon-none-hover[fill] {\n  fill: none;\n}\n\n.jp-icon-hover :hover .jp-icon-none-hover[stroke] {\n  stroke: none;\n}\n\n/**\n * inverse colors\n */\n\n/* inverse recolor the primary elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* inverse recolor the accent elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-switch {\n  display: flex;\n  align-items: center;\n  padding-left: 4px;\n  padding-right: 4px;\n  font-size: var(--jp-ui-font-size1);\n  background-color: transparent;\n  color: var(--jp-ui-font-color1);\n  border: none;\n  height: 20px;\n}\n\n.jp-switch:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-switch-label {\n  margin-right: 5px;\n}\n\n.jp-switch-track {\n  cursor: pointer;\n  background-color: var(--jp-border-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 34px;\n  height: 16px;\n  width: 35px;\n  position: relative;\n}\n\n.jp-switch-track::before {\n  content: '';\n  position: absolute;\n  height: 10px;\n  width: 10px;\n  margin: 3px;\n  left: 0px;\n  background-color: var(--jp-ui-inverse-font-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 50%;\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track {\n  background-color: var(--jp-warn-color0);\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track::before {\n  /* track width (35) - margins (3 + 3) - thumb width (10) */\n  left: 19px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* Sibling imports */\n\n/* Override Blueprint's _reset.scss styles */\nhtml {\n  box-sizing: unset;\n}\n\n*,\n*::before,\n*::after {\n  box-sizing: unset;\n}\n\nbody {\n  color: unset;\n  font-family: var(--jp-ui-font-family);\n}\n\np {\n  margin-top: unset;\n  margin-bottom: unset;\n}\n\nsmall {\n  font-size: unset;\n}\n\nstrong {\n  font-weight: unset;\n}\n\n/* Override Blueprint's _typography.scss styles */\na {\n  text-decoration: unset;\n  color: unset;\n}\na:hover {\n  text-decoration: unset;\n  color: unset;\n}\n\n/* Override Blueprint's _accessibility.scss styles */\n:focus {\n  outline: unset;\n  outline-offset: unset;\n  -moz-outline-radius: unset;\n}\n\n/* Styles for ui-components */\n.jp-Button {\n  border-radius: var(--jp-border-radius);\n  padding: 0px 12px;\n  font-size: var(--jp-ui-font-size1);\n}\n\n/* Use our own theme for hover styles */\nbutton.jp-Button.bp3-button.bp3-minimal:hover {\n  background-color: var(--jp-layout-color2);\n}\n.jp-Button.minimal {\n  color: unset !important;\n}\n\n.jp-Button.jp-ToolbarButtonComponent {\n  text-transform: none;\n}\n\n.jp-InputGroup input {\n  box-sizing: border-box;\n  border-radius: 0;\n  background-color: transparent;\n  color: var(--jp-ui-font-color0);\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.jp-InputGroup input:focus {\n  box-shadow: inset 0 0 0 var(--jp-border-width)\n      var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-InputGroup input::placeholder,\ninput::placeholder {\n  color: var(--jp-ui-font-color3);\n}\n\n.jp-BPIcon {\n  display: inline-block;\n  vertical-align: middle;\n  margin: auto;\n}\n\n/* Stop blueprint futzing with our icon fills */\n.bp3-icon.jp-BPIcon > svg:not([fill]) {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n.jp-InputGroupAction {\n  padding: 6px;\n}\n\n.jp-HTMLSelect.jp-DefaultStyle select {\n  background-color: initial;\n  border: none;\n  border-radius: 0;\n  box-shadow: none;\n  color: var(--jp-ui-font-color0);\n  display: block;\n  font-size: var(--jp-ui-font-size1);\n  height: 24px;\n  line-height: 14px;\n  padding: 0 25px 0 10px;\n  text-align: left;\n  -moz-appearance: none;\n  -webkit-appearance: none;\n}\n\n/* Use our own theme for hover and option styles */\n.jp-HTMLSelect.jp-DefaultStyle select:hover,\n.jp-HTMLSelect.jp-DefaultStyle select > option {\n  background-color: var(--jp-layout-color2);\n  color: var(--jp-ui-font-color0);\n}\nselect {\n  box-sizing: border-box;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapse {\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  border-top: 1px solid var(--jp-border-color2);\n  border-bottom: 1px solid var(--jp-border-color2);\n}\n\n.jp-Collapse-header {\n  padding: 1px 12px;\n  color: var(--jp-ui-font-color1);\n  background-color: var(--jp-layout-color1);\n  font-size: var(--jp-ui-font-size2);\n}\n\n.jp-Collapse-header:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-Collapse-contents {\n  padding: 0px 12px 0px 12px;\n  background-color: var(--jp-layout-color1);\n  color: var(--jp-ui-font-color1);\n  overflow: auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-commandpalette-search-height: 28px;\n}\n\n/*-----------------------------------------------------------------------------\n| Overall styles\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette {\n  padding-bottom: 0px;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Modal variant\n|----------------------------------------------------------------------------*/\n\n.jp-ModalCommandPalette {\n  position: absolute;\n  z-index: 10000;\n  top: 38px;\n  left: 30%;\n  margin: 0;\n  padding: 4px;\n  width: 40%;\n  box-shadow: var(--jp-elevation-z4);\n  border-radius: 4px;\n  background: var(--jp-layout-color0);\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette {\n  max-height: 40vh;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-close-icon::after {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-header {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-item {\n  margin-left: 4px;\n  margin-right: 4px;\n}\n\n.jp-ModalCommandPalette\n  .lm-CommandPalette\n  .lm-CommandPalette-item.lm-mod-disabled {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Search\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-search {\n  padding: 4px;\n  background-color: var(--jp-layout-color1);\n  z-index: 2;\n}\n\n.lm-CommandPalette-wrapper {\n  overflow: overlay;\n  padding: 0px 9px;\n  background-color: var(--jp-input-active-background);\n  height: 30px;\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.lm-CommandPalette.lm-mod-focused .lm-CommandPalette-wrapper {\n  box-shadow: inset 0 0 0 1px var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-SearchIconGroup {\n  color: white;\n  background-color: var(--jp-brand-color1);\n  position: absolute;\n  top: 4px;\n  right: 4px;\n  padding: 5px 5px 1px 5px;\n}\n\n.jp-SearchIconGroup svg {\n  height: 20px;\n  width: 20px;\n}\n\n.jp-SearchIconGroup .jp-icon3[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-input {\n  background: transparent;\n  width: calc(100% - 18px);\n  float: left;\n  border: none;\n  outline: none;\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  line-height: var(--jp-private-commandpalette-search-height);\n}\n\n.lm-CommandPalette-input::-webkit-input-placeholder,\n.lm-CommandPalette-input::-moz-placeholder,\n.lm-CommandPalette-input:-ms-input-placeholder {\n  color: var(--jp-ui-font-color2);\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Results\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-header:first-child {\n  margin-top: 0px;\n}\n\n.lm-CommandPalette-header {\n  border-bottom: solid var(--jp-border-width) var(--jp-border-color2);\n  color: var(--jp-ui-font-color1);\n  cursor: pointer;\n  display: flex;\n  font-size: var(--jp-ui-font-size0);\n  font-weight: 600;\n  letter-spacing: 1px;\n  margin-top: 8px;\n  padding: 8px 0 8px 12px;\n  text-transform: uppercase;\n}\n\n.lm-CommandPalette-header.lm-mod-active {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-header > mark {\n  background-color: transparent;\n  font-weight: bold;\n  color: var(--jp-ui-font-color1);\n}\n\n.lm-CommandPalette-item {\n  padding: 4px 12px 4px 4px;\n  color: var(--jp-ui-font-color1);\n  font-size: var(--jp-ui-font-size1);\n  font-weight: 400;\n  display: flex;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item.lm-mod-active {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .jp-icon-selectable[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active:hover:not(.lm-mod-disabled) {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item:hover:not(.lm-mod-active):not(.lm-mod-disabled) {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-itemContent {\n  overflow: hidden;\n}\n\n.lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled mark {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemIcon {\n  margin: 0 4px 0 0;\n  position: relative;\n  width: 16px;\n  top: 2px;\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled .lm-CommandPalette-itemIcon {\n  opacity: 0.6;\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-itemCaption {\n  display: none;\n}\n\n.lm-CommandPalette-content {\n  background-color: var(--jp-layout-color1);\n}\n\n.lm-CommandPalette-content:empty:after {\n  content: 'No results';\n  margin: auto;\n  margin-top: 20px;\n  width: 100px;\n  display: block;\n  font-size: var(--jp-ui-font-size2);\n  font-family: var(--jp-ui-font-family);\n  font-weight: lighter;\n}\n\n.lm-CommandPalette-emptyMessage {\n  text-align: center;\n  margin-top: 24px;\n  line-height: 1.32;\n  padding: 0px 8px;\n  color: var(--jp-content-font-color3);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Dialog {\n  position: absolute;\n  z-index: 10000;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  top: 0px;\n  left: 0px;\n  margin: 0;\n  padding: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-dialog-background);\n}\n\n.jp-Dialog-content {\n  display: flex;\n  flex-direction: column;\n  margin-left: auto;\n  margin-right: auto;\n  background: var(--jp-layout-color1);\n  padding: 24px;\n  padding-bottom: 12px;\n  min-width: 300px;\n  min-height: 150px;\n  max-width: 1000px;\n  max-height: 500px;\n  box-sizing: border-box;\n  box-shadow: var(--jp-elevation-z20);\n  word-wrap: break-word;\n  border-radius: var(--jp-border-radius);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color1);\n  resize: both;\n}\n\n.jp-Dialog-button {\n  overflow: visible;\n}\n\nbutton.jp-Dialog-button:focus {\n  outline: 1px solid var(--jp-brand-color1);\n  outline-offset: 4px;\n  -moz-outline-radius: 0px;\n}\n\nbutton.jp-Dialog-button:focus::-moz-focus-inner {\n  border: 0;\n}\n\nbutton.jp-Dialog-close-button {\n  padding: 0;\n  height: 100%;\n  min-width: unset;\n  min-height: unset;\n}\n\n.jp-Dialog-header {\n  display: flex;\n  justify-content: space-between;\n  flex: 0 0 auto;\n  padding-bottom: 12px;\n  font-size: var(--jp-ui-font-size3);\n  font-weight: 400;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-body {\n  display: flex;\n  flex-direction: column;\n  flex: 1 1 auto;\n  font-size: var(--jp-ui-font-size1);\n  background: var(--jp-layout-color1);\n  overflow: auto;\n}\n\n.jp-Dialog-footer {\n  display: flex;\n  flex-direction: row;\n  justify-content: flex-end;\n  flex: 0 0 auto;\n  margin-left: -12px;\n  margin-right: -12px;\n  padding: 12px;\n}\n\n.jp-Dialog-title {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.jp-Dialog-body > .jp-select-wrapper {\n  width: 100%;\n}\n\n.jp-Dialog-body > button {\n  padding: 0px 16px;\n}\n\n.jp-Dialog-body > label {\n  line-height: 1.4;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-button.jp-mod-styled:not(:last-child) {\n  margin-right: 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-HoverBox {\n  position: fixed;\n}\n\n.jp-HoverBox.jp-mod-outofview {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-IFrame {\n  width: 100%;\n  height: 100%;\n}\n\n.jp-IFrame > iframe {\n  border: none;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-IFrame {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-IFrame:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n.jp-Input-Boolean-Dialog {\n  flex-direction: row-reverse;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-Input-Boolean-Dialog > label {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MainAreaWidget > :focus {\n  outline: none;\n}\n\n/**\n * google-material-color v1.2.6\n * https://github.com/danlevan/google-material-color\n */\n:root {\n  --md-red-50: #ffebee;\n  --md-red-100: #ffcdd2;\n  --md-red-200: #ef9a9a;\n  --md-red-300: #e57373;\n  --md-red-400: #ef5350;\n  --md-red-500: #f44336;\n  --md-red-600: #e53935;\n  --md-red-700: #d32f2f;\n  --md-red-800: #c62828;\n  --md-red-900: #b71c1c;\n  --md-red-A100: #ff8a80;\n  --md-red-A200: #ff5252;\n  --md-red-A400: #ff1744;\n  --md-red-A700: #d50000;\n\n  --md-pink-50: #fce4ec;\n  --md-pink-100: #f8bbd0;\n  --md-pink-200: #f48fb1;\n  --md-pink-300: #f06292;\n  --md-pink-400: #ec407a;\n  --md-pink-500: #e91e63;\n  --md-pink-600: #d81b60;\n  --md-pink-700: #c2185b;\n  --md-pink-800: #ad1457;\n  --md-pink-900: #880e4f;\n  --md-pink-A100: #ff80ab;\n  --md-pink-A200: #ff4081;\n  --md-pink-A400: #f50057;\n  --md-pink-A700: #c51162;\n\n  --md-purple-50: #f3e5f5;\n  --md-purple-100: #e1bee7;\n  --md-purple-200: #ce93d8;\n  --md-purple-300: #ba68c8;\n  --md-purple-400: #ab47bc;\n  --md-purple-500: #9c27b0;\n  --md-purple-600: #8e24aa;\n  --md-purple-700: #7b1fa2;\n  --md-purple-800: #6a1b9a;\n  --md-purple-900: #4a148c;\n  --md-purple-A100: #ea80fc;\n  --md-purple-A200: #e040fb;\n  --md-purple-A400: #d500f9;\n  --md-purple-A700: #aa00ff;\n\n  --md-deep-purple-50: #ede7f6;\n  --md-deep-purple-100: #d1c4e9;\n  --md-deep-purple-200: #b39ddb;\n  --md-deep-purple-300: #9575cd;\n  --md-deep-purple-400: #7e57c2;\n  --md-deep-purple-500: #673ab7;\n  --md-deep-purple-600: #5e35b1;\n  --md-deep-purple-700: #512da8;\n  --md-deep-purple-800: #4527a0;\n  --md-deep-purple-900: #311b92;\n  --md-deep-purple-A100: #b388ff;\n  --md-deep-purple-A200: #7c4dff;\n  --md-deep-purple-A400: #651fff;\n  --md-deep-purple-A700: #6200ea;\n\n  --md-indigo-50: #e8eaf6;\n  --md-indigo-100: #c5cae9;\n  --md-indigo-200: #9fa8da;\n  --md-indigo-300: #7986cb;\n  --md-indigo-400: #5c6bc0;\n  --md-indigo-500: #3f51b5;\n  --md-indigo-600: #3949ab;\n  --md-indigo-700: #303f9f;\n  --md-indigo-800: #283593;\n  --md-indigo-900: #1a237e;\n  --md-indigo-A100: #8c9eff;\n  --md-indigo-A200: #536dfe;\n  --md-indigo-A400: #3d5afe;\n  --md-indigo-A700: #304ffe;\n\n  --md-blue-50: #e3f2fd;\n  --md-blue-100: #bbdefb;\n  --md-blue-200: #90caf9;\n  --md-blue-300: #64b5f6;\n  --md-blue-400: #42a5f5;\n  --md-blue-500: #2196f3;\n  --md-blue-600: #1e88e5;\n  --md-blue-700: #1976d2;\n  --md-blue-800: #1565c0;\n  --md-blue-900: #0d47a1;\n  --md-blue-A100: #82b1ff;\n  --md-blue-A200: #448aff;\n  --md-blue-A400: #2979ff;\n  --md-blue-A700: #2962ff;\n\n  --md-light-blue-50: #e1f5fe;\n  --md-light-blue-100: #b3e5fc;\n  --md-light-blue-200: #81d4fa;\n  --md-light-blue-300: #4fc3f7;\n  --md-light-blue-400: #29b6f6;\n  --md-light-blue-500: #03a9f4;\n  --md-light-blue-600: #039be5;\n  --md-light-blue-700: #0288d1;\n  --md-light-blue-800: #0277bd;\n  --md-light-blue-900: #01579b;\n  --md-light-blue-A100: #80d8ff;\n  --md-light-blue-A200: #40c4ff;\n  --md-light-blue-A400: #00b0ff;\n  --md-light-blue-A700: #0091ea;\n\n  --md-cyan-50: #e0f7fa;\n  --md-cyan-100: #b2ebf2;\n  --md-cyan-200: #80deea;\n  --md-cyan-300: #4dd0e1;\n  --md-cyan-400: #26c6da;\n  --md-cyan-500: #00bcd4;\n  --md-cyan-600: #00acc1;\n  --md-cyan-700: #0097a7;\n  --md-cyan-800: #00838f;\n  --md-cyan-900: #006064;\n  --md-cyan-A100: #84ffff;\n  --md-cyan-A200: #18ffff;\n  --md-cyan-A400: #00e5ff;\n  --md-cyan-A700: #00b8d4;\n\n  --md-teal-50: #e0f2f1;\n  --md-teal-100: #b2dfdb;\n  --md-teal-200: #80cbc4;\n  --md-teal-300: #4db6ac;\n  --md-teal-400: #26a69a;\n  --md-teal-500: #009688;\n  --md-teal-600: #00897b;\n  --md-teal-700: #00796b;\n  --md-teal-800: #00695c;\n  --md-teal-900: #004d40;\n  --md-teal-A100: #a7ffeb;\n  --md-teal-A200: #64ffda;\n  --md-teal-A400: #1de9b6;\n  --md-teal-A700: #00bfa5;\n\n  --md-green-50: #e8f5e9;\n  --md-green-100: #c8e6c9;\n  --md-green-200: #a5d6a7;\n  --md-green-300: #81c784;\n  --md-green-400: #66bb6a;\n  --md-green-500: #4caf50;\n  --md-green-600: #43a047;\n  --md-green-700: #388e3c;\n  --md-green-800: #2e7d32;\n  --md-green-900: #1b5e20;\n  --md-green-A100: #b9f6ca;\n  --md-green-A200: #69f0ae;\n  --md-green-A400: #00e676;\n  --md-green-A700: #00c853;\n\n  --md-light-green-50: #f1f8e9;\n  --md-light-green-100: #dcedc8;\n  --md-light-green-200: #c5e1a5;\n  --md-light-green-300: #aed581;\n  --md-light-green-400: #9ccc65;\n  --md-light-green-500: #8bc34a;\n  --md-light-green-600: #7cb342;\n  --md-light-green-700: #689f38;\n  --md-light-green-800: #558b2f;\n  --md-light-green-900: #33691e;\n  --md-light-green-A100: #ccff90;\n  --md-light-green-A200: #b2ff59;\n  --md-light-green-A400: #76ff03;\n  --md-light-green-A700: #64dd17;\n\n  --md-lime-50: #f9fbe7;\n  --md-lime-100: #f0f4c3;\n  --md-lime-200: #e6ee9c;\n  --md-lime-300: #dce775;\n  --md-lime-400: #d4e157;\n  --md-lime-500: #cddc39;\n  --md-lime-600: #c0ca33;\n  --md-lime-700: #afb42b;\n  --md-lime-800: #9e9d24;\n  --md-lime-900: #827717;\n  --md-lime-A100: #f4ff81;\n  --md-lime-A200: #eeff41;\n  --md-lime-A400: #c6ff00;\n  --md-lime-A700: #aeea00;\n\n  --md-yellow-50: #fffde7;\n  --md-yellow-100: #fff9c4;\n  --md-yellow-200: #fff59d;\n  --md-yellow-300: #fff176;\n  --md-yellow-400: #ffee58;\n  --md-yellow-500: #ffeb3b;\n  --md-yellow-600: #fdd835;\n  --md-yellow-700: #fbc02d;\n  --md-yellow-800: #f9a825;\n  --md-yellow-900: #f57f17;\n  --md-yellow-A100: #ffff8d;\n  --md-yellow-A200: #ffff00;\n  --md-yellow-A400: #ffea00;\n  --md-yellow-A700: #ffd600;\n\n  --md-amber-50: #fff8e1;\n  --md-amber-100: #ffecb3;\n  --md-amber-200: #ffe082;\n  --md-amber-300: #ffd54f;\n  --md-amber-400: #ffca28;\n  --md-amber-500: #ffc107;\n  --md-amber-600: #ffb300;\n  --md-amber-700: #ffa000;\n  --md-amber-800: #ff8f00;\n  --md-amber-900: #ff6f00;\n  --md-amber-A100: #ffe57f;\n  --md-amber-A200: #ffd740;\n  --md-amber-A400: #ffc400;\n  --md-amber-A700: #ffab00;\n\n  --md-orange-50: #fff3e0;\n  --md-orange-100: #ffe0b2;\n  --md-orange-200: #ffcc80;\n  --md-orange-300: #ffb74d;\n  --md-orange-400: #ffa726;\n  --md-orange-500: #ff9800;\n  --md-orange-600: #fb8c00;\n  --md-orange-700: #f57c00;\n  --md-orange-800: #ef6c00;\n  --md-orange-900: #e65100;\n  --md-orange-A100: #ffd180;\n  --md-orange-A200: #ffab40;\n  --md-orange-A400: #ff9100;\n  --md-orange-A700: #ff6d00;\n\n  --md-deep-orange-50: #fbe9e7;\n  --md-deep-orange-100: #ffccbc;\n  --md-deep-orange-200: #ffab91;\n  --md-deep-orange-300: #ff8a65;\n  --md-deep-orange-400: #ff7043;\n  --md-deep-orange-500: #ff5722;\n  --md-deep-orange-600: #f4511e;\n  --md-deep-orange-700: #e64a19;\n  --md-deep-orange-800: #d84315;\n  --md-deep-orange-900: #bf360c;\n  --md-deep-orange-A100: #ff9e80;\n  --md-deep-orange-A200: #ff6e40;\n  --md-deep-orange-A400: #ff3d00;\n  --md-deep-orange-A700: #dd2c00;\n\n  --md-brown-50: #efebe9;\n  --md-brown-100: #d7ccc8;\n  --md-brown-200: #bcaaa4;\n  --md-brown-300: #a1887f;\n  --md-brown-400: #8d6e63;\n  --md-brown-500: #795548;\n  --md-brown-600: #6d4c41;\n  --md-brown-700: #5d4037;\n  --md-brown-800: #4e342e;\n  --md-brown-900: #3e2723;\n\n  --md-grey-50: #fafafa;\n  --md-grey-100: #f5f5f5;\n  --md-grey-200: #eeeeee;\n  --md-grey-300: #e0e0e0;\n  --md-grey-400: #bdbdbd;\n  --md-grey-500: #9e9e9e;\n  --md-grey-600: #757575;\n  --md-grey-700: #616161;\n  --md-grey-800: #424242;\n  --md-grey-900: #212121;\n\n  --md-blue-grey-50: #eceff1;\n  --md-blue-grey-100: #cfd8dc;\n  --md-blue-grey-200: #b0bec5;\n  --md-blue-grey-300: #90a4ae;\n  --md-blue-grey-400: #78909c;\n  --md-blue-grey-500: #607d8b;\n  --md-blue-grey-600: #546e7a;\n  --md-blue-grey-700: #455a64;\n  --md-blue-grey-800: #37474f;\n  --md-blue-grey-900: #263238;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Spinner {\n  position: absolute;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  z-index: 10;\n  left: 0;\n  top: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-layout-color0);\n  outline: none;\n}\n\n.jp-SpinnerContent {\n  font-size: 10px;\n  margin: 50px auto;\n  text-indent: -9999em;\n  width: 3em;\n  height: 3em;\n  border-radius: 50%;\n  background: var(--jp-brand-color3);\n  background: linear-gradient(\n    to right,\n    #f37626 10%,\n    rgba(255, 255, 255, 0) 42%\n  );\n  position: relative;\n  animation: load3 1s infinite linear, fadeIn 1s;\n}\n\n.jp-SpinnerContent:before {\n  width: 50%;\n  height: 50%;\n  background: #f37626;\n  border-radius: 100% 0 0 0;\n  position: absolute;\n  top: 0;\n  left: 0;\n  content: '';\n}\n\n.jp-SpinnerContent:after {\n  background: var(--jp-layout-color0);\n  width: 75%;\n  height: 75%;\n  border-radius: 50%;\n  content: '';\n  margin: auto;\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n}\n\n@keyframes fadeIn {\n  0% {\n    opacity: 0;\n  }\n  100% {\n    opacity: 1;\n  }\n}\n\n@keyframes load3 {\n  0% {\n    transform: rotate(0deg);\n  }\n  100% {\n    transform: rotate(360deg);\n  }\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\nbutton.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: none;\n  box-sizing: border-box;\n  text-align: center;\n  line-height: 32px;\n  height: 32px;\n  padding: 0px 12px;\n  letter-spacing: 0.8px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput.jp-mod-styled {\n  background: var(--jp-input-background);\n  height: 28px;\n  box-sizing: border-box;\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n  padding-left: 7px;\n  padding-right: 7px;\n  font-size: var(--jp-ui-font-size2);\n  color: var(--jp-ui-font-color0);\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput[type='checkbox'].jp-mod-styled {\n  appearance: checkbox;\n  -webkit-appearance: checkbox;\n  -moz-appearance: checkbox;\n  height: auto;\n}\n\ninput.jp-mod-styled:focus {\n  border: var(--jp-border-width) solid var(--md-blue-500);\n  box-shadow: inset 0 0 4px var(--md-blue-300);\n}\n\n.jp-FileDialog-Checkbox {\n  margin-top: 35px;\n  display: flex;\n  flex-direction: row;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-FileDialog-Checkbox > label {\n  flex: 1 1 auto;\n}\n\n.jp-select-wrapper {\n  display: flex;\n  position: relative;\n  flex-direction: column;\n  padding: 1px;\n  background-color: var(--jp-layout-color1);\n  height: 28px;\n  box-sizing: border-box;\n  margin-bottom: 12px;\n}\n\n.jp-select-wrapper.jp-mod-focused select.jp-mod-styled {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-input-active-background);\n}\n\nselect.jp-mod-styled:hover {\n  background-color: var(--jp-layout-color1);\n  cursor: pointer;\n  color: var(--jp-ui-font-color0);\n  background-color: var(--jp-input-hover-background);\n  box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.5);\n}\n\nselect.jp-mod-styled {\n  flex: 1 1 auto;\n  height: 32px;\n  width: 100%;\n  font-size: var(--jp-ui-font-size2);\n  background: var(--jp-input-background);\n  color: var(--jp-ui-font-color0);\n  padding: 0 25px 0 8px;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-toolbar-height: calc(\n    28px + var(--jp-border-width)\n  ); /* leave 28px for content */\n}\n\n.jp-Toolbar {\n  color: var(--jp-ui-font-color1);\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  border-bottom: var(--jp-border-width) solid var(--jp-toolbar-border-color);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  background: var(--jp-toolbar-background);\n  min-height: var(--jp-toolbar-micro-height);\n  padding: 2px;\n  z-index: 1;\n  overflow-x: auto;\n}\n\n/* Toolbar items */\n\n.jp-Toolbar > .jp-Toolbar-item.jp-Toolbar-spacer {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\n.jp-Toolbar-item.jp-Toolbar-kernelStatus {\n  display: inline-block;\n  width: 32px;\n  background-repeat: no-repeat;\n  background-position: center;\n  background-size: 16px;\n}\n\n.jp-Toolbar > .jp-Toolbar-item {\n  flex: 0 0 auto;\n  display: flex;\n  padding-left: 1px;\n  padding-right: 1px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: var(--jp-private-toolbar-height);\n  height: 100%;\n}\n\n/* Toolbar buttons */\n\n/* This is the div we use to wrap the react component into a Widget */\ndiv.jp-ToolbarButton {\n  color: transparent;\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px;\n  margin: 0px;\n}\n\nbutton.jp-ToolbarButtonComponent {\n  background: var(--jp-layout-color1);\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px 6px;\n  margin: 0px;\n  height: 24px;\n  border-radius: var(--jp-border-radius);\n  display: flex;\n  align-items: center;\n  text-align: center;\n  font-size: 14px;\n  min-width: unset;\n  min-height: unset;\n}\n\nbutton.jp-ToolbarButtonComponent:disabled {\n  opacity: 0.4;\n}\n\nbutton.jp-ToolbarButtonComponent span {\n  padding: 0px;\n  flex: 0 0 auto;\n}\n\nbutton.jp-ToolbarButtonComponent .jp-ToolbarButtonComponent-label {\n  font-size: var(--jp-ui-font-size1);\n  line-height: 100%;\n  padding-left: 2px;\n  color: var(--jp-ui-font-color1);\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar.jp-Toolbar-micro {\n  padding: 0;\n  min-height: 0;\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar {\n  border: none;\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ body.p-mod-override-cursor *, /* </DEPRECATED> */\nbody.lm-mod-override-cursor * {\n  cursor: inherit !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-JSONEditor {\n  display: flex;\n  flex-direction: column;\n  width: 100%;\n}\n\n.jp-JSONEditor-host {\n  flex: 1 1 auto;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  background: var(--jp-layout-color0);\n  min-height: 50px;\n  padding: 1px;\n}\n\n.jp-JSONEditor.jp-mod-error .jp-JSONEditor-host {\n  border-color: red;\n  outline-color: red;\n}\n\n.jp-JSONEditor-header {\n  display: flex;\n  flex: 1 0 auto;\n  padding: 0 0 0 12px;\n}\n\n.jp-JSONEditor-header label {\n  flex: 0 0 auto;\n}\n\n.jp-JSONEditor-commitButton {\n  height: 16px;\n  width: 16px;\n  background-size: 18px;\n  background-repeat: no-repeat;\n  background-position: center;\n}\n\n.jp-JSONEditor-host.jp-mod-focused {\n  background-color: var(--jp-input-active-background);\n  border: 1px solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n.jp-Editor.jp-mod-dropTarget {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n/* BASICS */\n\n.CodeMirror {\n  /* Set height, width, borders, and global font properties here */\n  font-family: monospace;\n  height: 300px;\n  color: black;\n  direction: ltr;\n}\n\n/* PADDING */\n\n.CodeMirror-lines {\n  padding: 4px 0; /* Vertical padding around content */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  padding: 0 4px; /* Horizontal padding of content */\n}\n\n.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  background-color: white; /* The little square between H and V scrollbars */\n}\n\n/* GUTTER */\n\n.CodeMirror-gutters {\n  border-right: 1px solid #ddd;\n  background-color: #f7f7f7;\n  white-space: nowrap;\n}\n.CodeMirror-linenumbers {}\n.CodeMirror-linenumber {\n  padding: 0 3px 0 5px;\n  min-width: 20px;\n  text-align: right;\n  color: #999;\n  white-space: nowrap;\n}\n\n.CodeMirror-guttermarker { color: black; }\n.CodeMirror-guttermarker-subtle { color: #999; }\n\n/* CURSOR */\n\n.CodeMirror-cursor {\n  border-left: 1px solid black;\n  border-right: none;\n  width: 0;\n}\n/* Shown when moving in bi-directional text */\n.CodeMirror div.CodeMirror-secondarycursor {\n  border-left: 1px solid silver;\n}\n.cm-fat-cursor .CodeMirror-cursor {\n  width: auto;\n  border: 0 !important;\n  background: #7e7;\n}\n.cm-fat-cursor div.CodeMirror-cursors {\n  z-index: 1;\n}\n.cm-fat-cursor-mark {\n  background-color: rgba(20, 255, 20, 0.5);\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n}\n.cm-animate-fat-cursor {\n  width: auto;\n  border: 0;\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n  background-color: #7e7;\n}\n@-moz-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@-webkit-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n\n/* Can style cursor different in overwrite (non-insert) mode */\n.CodeMirror-overwrite .CodeMirror-cursor {}\n\n.cm-tab { display: inline-block; text-decoration: inherit; }\n\n.CodeMirror-rulers {\n  position: absolute;\n  left: 0; right: 0; top: -50px; bottom: 0;\n  overflow: hidden;\n}\n.CodeMirror-ruler {\n  border-left: 1px solid #ccc;\n  top: 0; bottom: 0;\n  position: absolute;\n}\n\n/* DEFAULT THEME */\n\n.cm-s-default .cm-header {color: blue;}\n.cm-s-default .cm-quote {color: #090;}\n.cm-negative {color: #d44;}\n.cm-positive {color: #292;}\n.cm-header, .cm-strong {font-weight: bold;}\n.cm-em {font-style: italic;}\n.cm-link {text-decoration: underline;}\n.cm-strikethrough {text-decoration: line-through;}\n\n.cm-s-default .cm-keyword {color: #708;}\n.cm-s-default .cm-atom {color: #219;}\n.cm-s-default .cm-number {color: #164;}\n.cm-s-default .cm-def {color: #00f;}\n.cm-s-default .cm-variable,\n.cm-s-default .cm-punctuation,\n.cm-s-default .cm-property,\n.cm-s-default .cm-operator {}\n.cm-s-default .cm-variable-2 {color: #05a;}\n.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}\n.cm-s-default .cm-comment {color: #a50;}\n.cm-s-default .cm-string {color: #a11;}\n.cm-s-default .cm-string-2 {color: #f50;}\n.cm-s-default .cm-meta {color: #555;}\n.cm-s-default .cm-qualifier {color: #555;}\n.cm-s-default .cm-builtin {color: #30a;}\n.cm-s-default .cm-bracket {color: #997;}\n.cm-s-default .cm-tag {color: #170;}\n.cm-s-default .cm-attribute {color: #00c;}\n.cm-s-default .cm-hr {color: #999;}\n.cm-s-default .cm-link {color: #00c;}\n\n.cm-s-default .cm-error {color: #f00;}\n.cm-invalidchar {color: #f00;}\n\n.CodeMirror-composing { border-bottom: 2px solid; }\n\n/* Default styles for common addons */\n\ndiv.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}\ndiv.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}\n.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }\n.CodeMirror-activeline-background {background: #e8f2ff;}\n\n/* STOP */\n\n/* The rest of this file contains styles related to the mechanics of\n   the editor. You probably shouldn't touch them. */\n\n.CodeMirror {\n  position: relative;\n  overflow: hidden;\n  background: white;\n}\n\n.CodeMirror-scroll {\n  overflow: scroll !important; /* Things will break if this is overridden */\n  /* 50px is the magic margin used to hide the element's real scrollbars */\n  /* See overflow: hidden in .CodeMirror */\n  margin-bottom: -50px; margin-right: -50px;\n  padding-bottom: 50px;\n  height: 100%;\n  outline: none; /* Prevent dragging from highlighting the element */\n  position: relative;\n}\n.CodeMirror-sizer {\n  position: relative;\n  border-right: 50px solid transparent;\n}\n\n/* The fake, visible scrollbars. Used to force redraw during scrolling\n   before actual scrolling happens, thus preventing shaking and\n   flickering artifacts. */\n.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  position: absolute;\n  z-index: 6;\n  display: none;\n  outline: none;\n}\n.CodeMirror-vscrollbar {\n  right: 0; top: 0;\n  overflow-x: hidden;\n  overflow-y: scroll;\n}\n.CodeMirror-hscrollbar {\n  bottom: 0; left: 0;\n  overflow-y: hidden;\n  overflow-x: scroll;\n}\n.CodeMirror-scrollbar-filler {\n  right: 0; bottom: 0;\n}\n.CodeMirror-gutter-filler {\n  left: 0; bottom: 0;\n}\n\n.CodeMirror-gutters {\n  position: absolute; left: 0; top: 0;\n  min-height: 100%;\n  z-index: 3;\n}\n.CodeMirror-gutter {\n  white-space: normal;\n  height: 100%;\n  display: inline-block;\n  vertical-align: top;\n  margin-bottom: -50px;\n}\n.CodeMirror-gutter-wrapper {\n  position: absolute;\n  z-index: 4;\n  background: none !important;\n  border: none !important;\n}\n.CodeMirror-gutter-background {\n  position: absolute;\n  top: 0; bottom: 0;\n  z-index: 4;\n}\n.CodeMirror-gutter-elt {\n  position: absolute;\n  cursor: default;\n  z-index: 4;\n}\n.CodeMirror-gutter-wrapper ::selection { background-color: transparent }\n.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }\n\n.CodeMirror-lines {\n  cursor: text;\n  min-height: 1px; /* prevents collapsing before first draw */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  /* Reset some styles that the rest of the page might have set */\n  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;\n  border-width: 0;\n  background: transparent;\n  font-family: inherit;\n  font-size: inherit;\n  margin: 0;\n  white-space: pre;\n  word-wrap: normal;\n  line-height: inherit;\n  color: inherit;\n  z-index: 2;\n  position: relative;\n  overflow: visible;\n  -webkit-tap-highlight-color: transparent;\n  -webkit-font-variant-ligatures: contextual;\n  font-variant-ligatures: contextual;\n}\n.CodeMirror-wrap pre.CodeMirror-line,\n.CodeMirror-wrap pre.CodeMirror-line-like {\n  word-wrap: break-word;\n  white-space: pre-wrap;\n  word-break: normal;\n}\n\n.CodeMirror-linebackground {\n  position: absolute;\n  left: 0; right: 0; top: 0; bottom: 0;\n  z-index: 0;\n}\n\n.CodeMirror-linewidget {\n  position: relative;\n  z-index: 2;\n  padding: 0.1px; /* Force widget margins to stay inside of the container */\n}\n\n.CodeMirror-widget {}\n\n.CodeMirror-rtl pre { direction: rtl; }\n\n.CodeMirror-code {\n  outline: none;\n}\n\n/* Force content-box sizing for the elements where we expect it */\n.CodeMirror-scroll,\n.CodeMirror-sizer,\n.CodeMirror-gutter,\n.CodeMirror-gutters,\n.CodeMirror-linenumber {\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n}\n\n.CodeMirror-measure {\n  position: absolute;\n  width: 100%;\n  height: 0;\n  overflow: hidden;\n  visibility: hidden;\n}\n\n.CodeMirror-cursor {\n  position: absolute;\n  pointer-events: none;\n}\n.CodeMirror-measure pre { position: static; }\n\ndiv.CodeMirror-cursors {\n  visibility: hidden;\n  position: relative;\n  z-index: 3;\n}\ndiv.CodeMirror-dragcursors {\n  visibility: visible;\n}\n\n.CodeMirror-focused div.CodeMirror-cursors {\n  visibility: visible;\n}\n\n.CodeMirror-selected { background: #d9d9d9; }\n.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }\n.CodeMirror-crosshair { cursor: crosshair; }\n.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }\n.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }\n\n.cm-searching {\n  background-color: #ffa;\n  background-color: rgba(255, 255, 0, .4);\n}\n\n/* Used to force a border model for a node */\n.cm-force-border { padding-right: .1px; }\n\n@media print {\n  /* Hide the cursor when printing */\n  .CodeMirror div.CodeMirror-cursors {\n    visibility: hidden;\n  }\n}\n\n/* See issue #2901 */\n.cm-tab-wrap-hack:after { content: ''; }\n\n/* Help users use markselection to safely style text background */\nspan.CodeMirror-selectedtext { background: none; }\n\n.CodeMirror-dialog {\n  position: absolute;\n  left: 0; right: 0;\n  background: inherit;\n  z-index: 15;\n  padding: .1em .8em;\n  overflow: hidden;\n  color: inherit;\n}\n\n.CodeMirror-dialog-top {\n  border-bottom: 1px solid #eee;\n  top: 0;\n}\n\n.CodeMirror-dialog-bottom {\n  border-top: 1px solid #eee;\n  bottom: 0;\n}\n\n.CodeMirror-dialog input {\n  border: none;\n  outline: none;\n  background: transparent;\n  width: 20em;\n  color: inherit;\n  font-family: monospace;\n}\n\n.CodeMirror-dialog button {\n  font-size: 70%;\n}\n\n.CodeMirror-foldmarker {\n  color: blue;\n  text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;\n  font-family: arial;\n  line-height: .3;\n  cursor: pointer;\n}\n.CodeMirror-foldgutter {\n  width: .7em;\n}\n.CodeMirror-foldgutter-open,\n.CodeMirror-foldgutter-folded {\n  cursor: pointer;\n}\n.CodeMirror-foldgutter-open:after {\n  content: \"\\25BE\";\n}\n.CodeMirror-foldgutter-folded:after {\n  content: \"\\25B8\";\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.CodeMirror {\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  border: 0;\n  border-radius: 0;\n  height: auto;\n  /* Changed to auto to autogrow */\n}\n\n.CodeMirror pre {\n  padding: 0 var(--jp-code-padding);\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-dialog {\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* This causes https://github.com/jupyter/jupyterlab/issues/522 */\n/* May not cause it not because we changed it! */\n.CodeMirror-lines {\n  padding: var(--jp-code-padding) 0;\n}\n\n.CodeMirror-linenumber {\n  padding: 0 8px;\n}\n\n.jp-CodeMirrorEditor {\n  cursor: text;\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n\n/* When zoomed out 67% and 33% on a screen of 1440 width x 900 height */\n@media screen and (min-width: 2138px) and (max-width: 4319px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width1) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n/* When zoomed out less than 33% */\n@media screen and (min-width: 4320px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width2) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n.CodeMirror.jp-mod-readOnly .CodeMirror-cursor {\n  display: none;\n}\n\n.CodeMirror-gutters {\n  border-right: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-layout-color0);\n}\n\n.jp-CollaboratorCursor {\n  border-left: 5px solid transparent;\n  border-right: 5px solid transparent;\n  border-top: none;\n  border-bottom: 3px solid;\n  background-clip: content-box;\n  margin-left: -5px;\n  margin-right: -5px;\n}\n\n.CodeMirror-selectedtext.cm-searching {\n  background-color: var(--jp-search-selected-match-background-color) !important;\n  color: var(--jp-search-selected-match-color) !important;\n}\n\n.cm-searching {\n  background-color: var(\n    --jp-search-unselected-match-background-color\n  ) !important;\n  color: var(--jp-search-unselected-match-color) !important;\n}\n\n.CodeMirror-focused .CodeMirror-selected {\n  background-color: var(--jp-editor-selected-focused-background);\n}\n\n.CodeMirror-selected {\n  background-color: var(--jp-editor-selected-background);\n}\n\n.jp-CollaboratorCursor-hover {\n  position: absolute;\n  z-index: 1;\n  transform: translateX(-50%);\n  color: white;\n  border-radius: 3px;\n  padding-left: 4px;\n  padding-right: 4px;\n  padding-top: 1px;\n  padding-bottom: 1px;\n  text-align: center;\n  font-size: var(--jp-ui-font-size1);\n  white-space: nowrap;\n}\n\n.jp-CodeMirror-ruler {\n  border-left: 1px dashed var(--jp-border-color2);\n}\n\n/**\n * Here is our jupyter theme for CodeMirror syntax highlighting\n * This is used in our marked.js syntax highlighting and CodeMirror itself\n * The string \"jupyter\" is set in ../codemirror/widget.DEFAULT_CODEMIRROR_THEME\n * This came from the classic notebook, which came form highlight.js/GitHub\n */\n\n/**\n * CodeMirror themes are handling the background/color in this way. This works\n * fine for CodeMirror editors outside the notebook, but the notebook styles\n * these things differently.\n */\n.CodeMirror.cm-s-jupyter {\n  background: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* In the notebook, we want this styling to be handled by its container */\n.jp-CodeConsole .CodeMirror.cm-s-jupyter,\n.jp-Notebook .CodeMirror.cm-s-jupyter {\n  background: transparent;\n}\n\n.cm-s-jupyter .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n.cm-s-jupyter span.cm-keyword {\n  color: var(--jp-mirror-editor-keyword-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-atom {\n  color: var(--jp-mirror-editor-atom-color);\n}\n.cm-s-jupyter span.cm-number {\n  color: var(--jp-mirror-editor-number-color);\n}\n.cm-s-jupyter span.cm-def {\n  color: var(--jp-mirror-editor-def-color);\n}\n.cm-s-jupyter span.cm-variable {\n  color: var(--jp-mirror-editor-variable-color);\n}\n.cm-s-jupyter span.cm-variable-2 {\n  color: var(--jp-mirror-editor-variable-2-color);\n}\n.cm-s-jupyter span.cm-variable-3 {\n  color: var(--jp-mirror-editor-variable-3-color);\n}\n.cm-s-jupyter span.cm-punctuation {\n  color: var(--jp-mirror-editor-punctuation-color);\n}\n.cm-s-jupyter span.cm-property {\n  color: var(--jp-mirror-editor-property-color);\n}\n.cm-s-jupyter span.cm-operator {\n  color: var(--jp-mirror-editor-operator-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-comment {\n  color: var(--jp-mirror-editor-comment-color);\n  font-style: italic;\n}\n.cm-s-jupyter span.cm-string {\n  color: var(--jp-mirror-editor-string-color);\n}\n.cm-s-jupyter span.cm-string-2 {\n  color: var(--jp-mirror-editor-string-2-color);\n}\n.cm-s-jupyter span.cm-meta {\n  color: var(--jp-mirror-editor-meta-color);\n}\n.cm-s-jupyter span.cm-qualifier {\n  color: var(--jp-mirror-editor-qualifier-color);\n}\n.cm-s-jupyter span.cm-builtin {\n  color: var(--jp-mirror-editor-builtin-color);\n}\n.cm-s-jupyter span.cm-bracket {\n  color: var(--jp-mirror-editor-bracket-color);\n}\n.cm-s-jupyter span.cm-tag {\n  color: var(--jp-mirror-editor-tag-color);\n}\n.cm-s-jupyter span.cm-attribute {\n  color: var(--jp-mirror-editor-attribute-color);\n}\n.cm-s-jupyter span.cm-header {\n  color: var(--jp-mirror-editor-header-color);\n}\n.cm-s-jupyter span.cm-quote {\n  color: var(--jp-mirror-editor-quote-color);\n}\n.cm-s-jupyter span.cm-link {\n  color: var(--jp-mirror-editor-link-color);\n}\n.cm-s-jupyter span.cm-error {\n  color: var(--jp-mirror-editor-error-color);\n}\n.cm-s-jupyter span.cm-hr {\n  color: #999;\n}\n\n.cm-s-jupyter span.cm-tab {\n  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);\n  background-position: right;\n  background-repeat: no-repeat;\n}\n\n.cm-s-jupyter .CodeMirror-activeline-background,\n.cm-s-jupyter .CodeMirror-gutter {\n  background-color: var(--jp-layout-color2);\n}\n\n/* Styles for shared cursors (remote cursor locations and selected ranges) */\n.jp-CodeMirrorEditor .remote-caret {\n  position: relative;\n  border-left: 2px solid black;\n  margin-left: -1px;\n  margin-right: -1px;\n  box-sizing: border-box;\n}\n\n.jp-CodeMirrorEditor .remote-caret > div {\n  white-space: nowrap;\n  position: absolute;\n  top: -1.15em;\n  padding-bottom: 0.05em;\n  left: -2px;\n  font-size: 0.95em;\n  background-color: rgb(250, 129, 0);\n  font-family: var(--jp-ui-font-family);\n  font-weight: bold;\n  line-height: normal;\n  user-select: none;\n  color: white;\n  padding-left: 2px;\n  padding-right: 2px;\n  z-index: 3;\n  transition: opacity 0.3s ease-in-out;\n}\n\n.jp-CodeMirrorEditor .remote-caret.hide-name > div {\n  transition-delay: 0.7s;\n  opacity: 0;\n}\n\n.jp-CodeMirrorEditor .remote-caret:hover > div {\n  opacity: 1;\n  transition-delay: 0s;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| RenderedText\n|----------------------------------------------------------------------------*/\n\n:root {\n  /* This is the padding value to fill the gaps between lines containing spans with background color. */\n  --jp-private-code-span-padding: calc(\n    (var(--jp-code-line-height) - 1) * var(--jp-code-font-size) / 2\n  );\n}\n\n.jp-RenderedText {\n  text-align: left;\n  padding-left: var(--jp-code-padding);\n  line-height: var(--jp-code-line-height);\n  font-family: var(--jp-code-font-family);\n}\n\n.jp-RenderedText pre,\n.jp-RenderedJavaScript pre,\n.jp-RenderedHTMLCommon pre {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-code-font-size);\n  border: none;\n  margin: 0px;\n  padding: 0px;\n}\n\n.jp-RenderedText pre a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* console foregrounds and backgrounds */\n.jp-RenderedText pre .ansi-black-fg {\n  color: #3e424d;\n}\n.jp-RenderedText pre .ansi-red-fg {\n  color: #e75c58;\n}\n.jp-RenderedText pre .ansi-green-fg {\n  color: #00a250;\n}\n.jp-RenderedText pre .ansi-yellow-fg {\n  color: #ddb62b;\n}\n.jp-RenderedText pre .ansi-blue-fg {\n  color: #208ffb;\n}\n.jp-RenderedText pre .ansi-magenta-fg {\n  color: #d160c4;\n}\n.jp-RenderedText pre .ansi-cyan-fg {\n  color: #60c6c8;\n}\n.jp-RenderedText pre .ansi-white-fg {\n  color: #c5c1b4;\n}\n\n.jp-RenderedText pre .ansi-black-bg {\n  background-color: #3e424d;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-bg {\n  background-color: #e75c58;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-bg {\n  background-color: #00a250;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-bg {\n  background-color: #ddb62b;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-bg {\n  background-color: #208ffb;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-bg {\n  background-color: #d160c4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-bg {\n  background-color: #60c6c8;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-bg {\n  background-color: #c5c1b4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-black-intense-fg {\n  color: #282c36;\n}\n.jp-RenderedText pre .ansi-red-intense-fg {\n  color: #b22b31;\n}\n.jp-RenderedText pre .ansi-green-intense-fg {\n  color: #007427;\n}\n.jp-RenderedText pre .ansi-yellow-intense-fg {\n  color: #b27d12;\n}\n.jp-RenderedText pre .ansi-blue-intense-fg {\n  color: #0065ca;\n}\n.jp-RenderedText pre .ansi-magenta-intense-fg {\n  color: #a03196;\n}\n.jp-RenderedText pre .ansi-cyan-intense-fg {\n  color: #258f8f;\n}\n.jp-RenderedText pre .ansi-white-intense-fg {\n  color: #a1a6b2;\n}\n\n.jp-RenderedText pre .ansi-black-intense-bg {\n  background-color: #282c36;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-intense-bg {\n  background-color: #b22b31;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-intense-bg {\n  background-color: #007427;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-intense-bg {\n  background-color: #b27d12;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-intense-bg {\n  background-color: #0065ca;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-intense-bg {\n  background-color: #a03196;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-intense-bg {\n  background-color: #258f8f;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-intense-bg {\n  background-color: #a1a6b2;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-default-inverse-fg {\n  color: var(--jp-ui-inverse-font-color0);\n}\n.jp-RenderedText pre .ansi-default-inverse-bg {\n  background-color: var(--jp-inverse-layout-color0);\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-bold {\n  font-weight: bold;\n}\n.jp-RenderedText pre .ansi-underline {\n  text-decoration: underline;\n}\n\n.jp-RenderedText[data-mime-type='application/vnd.jupyter.stderr'] {\n  background: var(--jp-rendermime-error-background);\n  padding-top: var(--jp-code-padding);\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedLatex\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedLatex {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n}\n\n/* Left-justify outputs.*/\n.jp-OutputArea-output.jp-RenderedLatex {\n  padding: var(--jp-code-padding);\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedHTML\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedHTMLCommon {\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-content-font-family);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n  /* Give a bit more R padding on Markdown text to keep line lengths reasonable */\n  padding-right: 20px;\n}\n\n.jp-RenderedHTMLCommon em {\n  font-style: italic;\n}\n\n.jp-RenderedHTMLCommon strong {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon u {\n  text-decoration: underline;\n}\n\n.jp-RenderedHTMLCommon a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* Headings */\n\n.jp-RenderedHTMLCommon h1,\n.jp-RenderedHTMLCommon h2,\n.jp-RenderedHTMLCommon h3,\n.jp-RenderedHTMLCommon h4,\n.jp-RenderedHTMLCommon h5,\n.jp-RenderedHTMLCommon h6 {\n  line-height: var(--jp-content-heading-line-height);\n  font-weight: var(--jp-content-heading-font-weight);\n  font-style: normal;\n  margin: var(--jp-content-heading-margin-top) 0\n    var(--jp-content-heading-margin-bottom) 0;\n}\n\n.jp-RenderedHTMLCommon h1:first-child,\n.jp-RenderedHTMLCommon h2:first-child,\n.jp-RenderedHTMLCommon h3:first-child,\n.jp-RenderedHTMLCommon h4:first-child,\n.jp-RenderedHTMLCommon h5:first-child,\n.jp-RenderedHTMLCommon h6:first-child {\n  margin-top: calc(0.5 * var(--jp-content-heading-margin-top));\n}\n\n.jp-RenderedHTMLCommon h1:last-child,\n.jp-RenderedHTMLCommon h2:last-child,\n.jp-RenderedHTMLCommon h3:last-child,\n.jp-RenderedHTMLCommon h4:last-child,\n.jp-RenderedHTMLCommon h5:last-child,\n.jp-RenderedHTMLCommon h6:last-child {\n  margin-bottom: calc(0.5 * var(--jp-content-heading-margin-bottom));\n}\n\n.jp-RenderedHTMLCommon h1 {\n  font-size: var(--jp-content-font-size5);\n}\n\n.jp-RenderedHTMLCommon h2 {\n  font-size: var(--jp-content-font-size4);\n}\n\n.jp-RenderedHTMLCommon h3 {\n  font-size: var(--jp-content-font-size3);\n}\n\n.jp-RenderedHTMLCommon h4 {\n  font-size: var(--jp-content-font-size2);\n}\n\n.jp-RenderedHTMLCommon h5 {\n  font-size: var(--jp-content-font-size1);\n}\n\n.jp-RenderedHTMLCommon h6 {\n  font-size: var(--jp-content-font-size0);\n}\n\n/* Lists */\n\n.jp-RenderedHTMLCommon ul:not(.list-inline),\n.jp-RenderedHTMLCommon ol:not(.list-inline) {\n  padding-left: 2em;\n}\n\n.jp-RenderedHTMLCommon ul {\n  list-style: disc;\n}\n\n.jp-RenderedHTMLCommon ul ul {\n  list-style: square;\n}\n\n.jp-RenderedHTMLCommon ul ul ul {\n  list-style: circle;\n}\n\n.jp-RenderedHTMLCommon ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol ol {\n  list-style: upper-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol {\n  list-style: lower-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol {\n  list-style: lower-roman;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol,\n.jp-RenderedHTMLCommon ul {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon ul ul,\n.jp-RenderedHTMLCommon ul ol,\n.jp-RenderedHTMLCommon ol ul,\n.jp-RenderedHTMLCommon ol ol {\n  margin-bottom: 0em;\n}\n\n.jp-RenderedHTMLCommon hr {\n  color: var(--jp-border-color2);\n  background-color: var(--jp-border-color1);\n  margin-top: 1em;\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon > pre {\n  margin: 1.5em 2em;\n}\n\n.jp-RenderedHTMLCommon pre,\n.jp-RenderedHTMLCommon code {\n  border: 0;\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  line-height: var(--jp-code-line-height);\n  padding: 0;\n  white-space: pre-wrap;\n}\n\n.jp-RenderedHTMLCommon :not(pre) > code {\n  background-color: var(--jp-layout-color2);\n  padding: 1px 5px;\n}\n\n/* Tables */\n\n.jp-RenderedHTMLCommon table {\n  border-collapse: collapse;\n  border-spacing: 0;\n  border: none;\n  color: var(--jp-ui-font-color1);\n  font-size: 12px;\n  table-layout: fixed;\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.jp-RenderedHTMLCommon thead {\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  vertical-align: bottom;\n}\n\n.jp-RenderedHTMLCommon td,\n.jp-RenderedHTMLCommon th,\n.jp-RenderedHTMLCommon tr {\n  vertical-align: middle;\n  padding: 0.5em 0.5em;\n  line-height: normal;\n  white-space: normal;\n  max-width: none;\n  border: none;\n}\n\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon td,\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon th {\n  max-width: none;\n}\n\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon td,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon th,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon tr {\n  text-align: right;\n}\n\n.jp-RenderedHTMLCommon th {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(odd) {\n  background: var(--jp-layout-color0);\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(even) {\n  background: var(--jp-rendermime-table-row-background);\n}\n\n.jp-RenderedHTMLCommon tbody tr:hover {\n  background: var(--jp-rendermime-table-row-hover-background);\n}\n\n.jp-RenderedHTMLCommon table {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon p {\n  text-align: left;\n  margin: 0px;\n}\n\n.jp-RenderedHTMLCommon p {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon img {\n  -moz-force-broken-image-icon: 1;\n}\n\n/* Restrict to direct children as other images could be nested in other content. */\n.jp-RenderedHTMLCommon > img {\n  display: block;\n  margin-left: 0;\n  margin-right: 0;\n  margin-bottom: 1em;\n}\n\n/* Change color behind transparent images if they need it... */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-light-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-dark-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n/* ...or leave it untouched if they don't */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-dark-background {\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-light-background {\n}\n\n.jp-RenderedHTMLCommon img,\n.jp-RenderedImage img,\n.jp-RenderedHTMLCommon svg,\n.jp-RenderedSVG svg {\n  max-width: 100%;\n  height: auto;\n}\n\n.jp-RenderedHTMLCommon img.jp-mod-unconfined,\n.jp-RenderedImage img.jp-mod-unconfined,\n.jp-RenderedHTMLCommon svg.jp-mod-unconfined,\n.jp-RenderedSVG svg.jp-mod-unconfined {\n  max-width: none;\n}\n\n.jp-RenderedHTMLCommon .alert {\n  padding: var(--jp-notebook-padding);\n  border: var(--jp-border-width) solid transparent;\n  border-radius: var(--jp-border-radius);\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon .alert-info {\n  color: var(--jp-info-color0);\n  background-color: var(--jp-info-color3);\n  border-color: var(--jp-info-color2);\n}\n.jp-RenderedHTMLCommon .alert-info hr {\n  border-color: var(--jp-info-color3);\n}\n.jp-RenderedHTMLCommon .alert-info > p:last-child,\n.jp-RenderedHTMLCommon .alert-info > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-warning {\n  color: var(--jp-warn-color0);\n  background-color: var(--jp-warn-color3);\n  border-color: var(--jp-warn-color2);\n}\n.jp-RenderedHTMLCommon .alert-warning hr {\n  border-color: var(--jp-warn-color3);\n}\n.jp-RenderedHTMLCommon .alert-warning > p:last-child,\n.jp-RenderedHTMLCommon .alert-warning > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-success {\n  color: var(--jp-success-color0);\n  background-color: var(--jp-success-color3);\n  border-color: var(--jp-success-color2);\n}\n.jp-RenderedHTMLCommon .alert-success hr {\n  border-color: var(--jp-success-color3);\n}\n.jp-RenderedHTMLCommon .alert-success > p:last-child,\n.jp-RenderedHTMLCommon .alert-success > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-danger {\n  color: var(--jp-error-color0);\n  background-color: var(--jp-error-color3);\n  border-color: var(--jp-error-color2);\n}\n.jp-RenderedHTMLCommon .alert-danger hr {\n  border-color: var(--jp-error-color3);\n}\n.jp-RenderedHTMLCommon .alert-danger > p:last-child,\n.jp-RenderedHTMLCommon .alert-danger > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon blockquote {\n  margin: 1em 2em;\n  padding: 0 1em;\n  border-left: 5px solid var(--jp-border-color2);\n}\n\na.jp-InternalAnchorLink {\n  visibility: hidden;\n  margin-left: 8px;\n  color: var(--md-blue-800);\n}\n\nh1:hover .jp-InternalAnchorLink,\nh2:hover .jp-InternalAnchorLink,\nh3:hover .jp-InternalAnchorLink,\nh4:hover .jp-InternalAnchorLink,\nh5:hover .jp-InternalAnchorLink,\nh6:hover .jp-InternalAnchorLink {\n  visibility: visible;\n}\n\n.jp-RenderedHTMLCommon kbd {\n  background-color: var(--jp-rendermime-table-row-background);\n  border: 1px solid var(--jp-border-color0);\n  border-bottom-color: var(--jp-border-color2);\n  border-radius: 3px;\n  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n  display: inline-block;\n  font-size: 0.8em;\n  line-height: 1em;\n  padding: 0.2em 0.5em;\n}\n\n/* Most direct children of .jp-RenderedHTMLCommon have a margin-bottom of 1.0.\n * At the bottom of cells this is a bit too much as there is also spacing\n * between cells. Going all the way to 0 gets too tight between markdown and\n * code cells.\n */\n.jp-RenderedHTMLCommon > *:last-child {\n  margin-bottom: 0.5em;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MimeDocument {\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-filebrowser-button-height: 28px;\n  --jp-private-filebrowser-button-width: 48px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser {\n  display: flex;\n  flex-direction: column;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  border-bottom: none;\n  height: auto;\n  margin: var(--jp-toolbar-header-margin);\n  box-shadow: none;\n}\n\n.jp-BreadCrumbs {\n  flex: 0 0 auto;\n  margin: 8px 12px 8px 12px;\n}\n\n.jp-BreadCrumbs-item {\n  margin: 0px 2px;\n  padding: 0px 2px;\n  border-radius: var(--jp-border-radius);\n  cursor: pointer;\n}\n\n.jp-BreadCrumbs-item:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-BreadCrumbs-item:first-child {\n  margin-left: 0px;\n}\n\n.jp-BreadCrumbs-item.jp-mod-dropTarget {\n  background-color: var(--jp-brand-color2);\n  opacity: 0.7;\n}\n\n/*-----------------------------------------------------------------------------\n| Buttons\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  padding: 0px;\n  margin: 8px 12px 0px 12px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  justify-content: flex-start;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-Toolbar-item {\n  flex: 0 0 auto;\n  padding-left: 0px;\n  padding-right: 2px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-ToolbarButtonComponent {\n  width: 40px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent {\n  width: 72px;\n  background: var(--jp-brand-color1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent:focus-visible {\n  background-color: var(--jp-brand-color0);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent\n  .jp-icon3 {\n  fill: white;\n}\n\n/*-----------------------------------------------------------------------------\n| Other styles\n|----------------------------------------------------------------------------*/\n\n.jp-FileDialog.jp-mod-conflict input {\n  color: var(--jp-error-color1);\n}\n\n.jp-FileDialog .jp-new-name-title {\n  margin-top: 12px;\n}\n\n.jp-LastModified-hidden {\n  display: none;\n}\n\n.jp-FileBrowser-filterBox {\n  padding: 0px;\n  flex: 0 0 auto;\n  margin: 8px 12px 0px 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| DirListing\n|----------------------------------------------------------------------------*/\n\n.jp-DirListing {\n  flex: 1 1 auto;\n  display: flex;\n  flex-direction: column;\n  outline: 0;\n}\n\n.jp-DirListing:focus-visible {\n  border: 1px solid var(--jp-brand-color1);\n}\n\n.jp-DirListing-header {\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n  border-top: var(--jp-border-width) solid var(--jp-border-color2);\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  z-index: 2;\n}\n\n.jp-DirListing-headerItem {\n  padding: 4px 12px 2px 12px;\n  font-weight: 500;\n}\n\n.jp-DirListing-headerItem:hover {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-headerItem.jp-id-name {\n  flex: 1 0 84px;\n}\n\n.jp-DirListing-headerItem.jp-id-modified {\n  flex: 0 0 112px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n}\n\n.jp-id-narrow {\n  display: none;\n  flex: 0 0 5px;\n  padding: 4px 4px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n  color: var(--jp-border-color2);\n}\n\n.jp-DirListing-narrow .jp-id-narrow {\n  display: block;\n}\n\n.jp-DirListing-narrow .jp-id-modified,\n.jp-DirListing-narrow .jp-DirListing-itemModified {\n  display: none;\n}\n\n.jp-DirListing-headerItem.jp-mod-selected {\n  font-weight: 600;\n}\n\n/* increase specificity to override bundled default */\n.jp-DirListing-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-DirListing-content mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.jp-DirListing-content .jp-DirListing-item.jp-mod-selected mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n/* Style the directory listing content when a user drops a file to upload */\n.jp-DirListing.jp-mod-native-drop .jp-DirListing-content {\n  outline: 5px dashed rgba(128, 128, 128, 0.5);\n  outline-offset: -10px;\n  cursor: copy;\n}\n\n.jp-DirListing-item {\n  display: flex;\n  flex-direction: row;\n  padding: 4px 12px;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n.jp-DirListing-item[data-is-dot] {\n  opacity: 75%;\n}\n\n.jp-DirListing-item.jp-mod-selected {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.jp-DirListing-item.jp-mod-dropTarget {\n  background: var(--jp-brand-color3);\n}\n\n.jp-DirListing-item:hover:not(.jp-mod-selected) {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-itemIcon {\n  flex: 0 0 20px;\n  margin-right: 4px;\n}\n\n.jp-DirListing-itemText {\n  flex: 1 0 64px;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  user-select: none;\n}\n\n.jp-DirListing-itemModified {\n  flex: 0 0 125px;\n  text-align: right;\n}\n\n.jp-DirListing-editor {\n  flex: 1 0 64px;\n  outline: none;\n  border: none;\n}\n\n.jp-DirListing-item.jp-mod-running .jp-DirListing-itemIcon:before {\n  color: var(--jp-success-color1);\n  content: '\\25CF';\n  font-size: 8px;\n  position: absolute;\n  left: -8px;\n}\n\n.jp-DirListing-item.jp-mod-running.jp-mod-selected\n  .jp-DirListing-itemIcon:before {\n  color: var(--jp-ui-inverse-font-color1);\n}\n\n.jp-DirListing-item.lm-mod-drag-image,\n.jp-DirListing-item.jp-mod-selected.lm-mod-drag-image {\n  font-size: var(--jp-ui-font-size1);\n  padding-left: 4px;\n  margin-left: 4px;\n  width: 160px;\n  background-color: var(--jp-ui-inverse-font-color2);\n  box-shadow: var(--jp-elevation-z2);\n  border-radius: 0px;\n  color: var(--jp-ui-font-color1);\n  transform: translateX(-40%) translateY(-58%);\n}\n\n.jp-DirListing-deadSpace {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-Document {\n  min-width: 120px;\n  min-height: 120px;\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n}\n\n/*-----------------------------------------------------------------------------\n| Main OutputArea\n| OutputArea has a list of Outputs\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea {\n  overflow-y: auto;\n}\n\n.jp-OutputArea-child {\n  display: flex;\n  flex-direction: row;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child {\n  flex-direction: column;\n}\n\n.jp-OutputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-outprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n.jp-OutputArea-output {\n  height: auto;\n  overflow: auto;\n  user-select: text;\n  -moz-user-select: text;\n  -webkit-user-select: text;\n  -ms-user-select: text;\n}\n\n.jp-OutputArea-child .jp-OutputArea-output {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  margin-left: var(--jp-notebook-padding);\n}\n\n/**\n * Isolated output.\n */\n.jp-OutputArea-output.jp-mod-isolated {\n  width: 100%;\n  display: block;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n/* pre */\n\n.jp-OutputArea-output pre {\n  border: none;\n  margin: 0px;\n  padding: 0px;\n  overflow-x: auto;\n  overflow-y: auto;\n  word-break: break-all;\n  word-wrap: break-word;\n  white-space: pre-wrap;\n}\n\n/* tables */\n\n.jp-OutputArea-output.jp-RenderedHTMLCommon table {\n  margin-left: 0;\n  margin-right: 0;\n}\n\n/* description lists */\n\n.jp-OutputArea-output dl,\n.jp-OutputArea-output dt,\n.jp-OutputArea-output dd {\n  display: block;\n}\n\n.jp-OutputArea-output dl {\n  width: 100%;\n  overflow: hidden;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dt {\n  font-weight: bold;\n  float: left;\n  width: 20%;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dd {\n  float: left;\n  width: 80%;\n  padding: 0;\n  margin: 0;\n}\n\n/* Hide the gutter in case of\n *  - nested output areas (e.g. in the case of output widgets)\n *  - mirrored output areas\n */\n.jp-OutputArea .jp-OutputArea .jp-OutputArea-prompt {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| executeResult is added to any Output-result for the display of the object\n| returned by a cell\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  margin-left: 0px;\n  flex: 1 1 auto;\n}\n\n/* Text output with the Out[] prompt needs a top padding to match the\n * alignment of the Out[] prompt itself.\n */\n.jp-OutputArea-executeResult .jp-RenderedText.jp-OutputArea-output {\n  padding-top: var(--jp-code-padding);\n  border-top: var(--jp-border-width) solid transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| The Stdin output\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-stdin {\n  line-height: var(--jp-code-line-height);\n  padding-top: var(--jp-code-padding);\n  display: flex;\n}\n\n.jp-Stdin-prompt {\n  color: var(--jp-content-font-color0);\n  padding-right: var(--jp-code-padding);\n  vertical-align: baseline;\n  flex: 0 0 auto;\n}\n\n.jp-Stdin-input {\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  color: inherit;\n  background-color: inherit;\n  width: 42%;\n  min-width: 200px;\n  /* make sure input baseline aligns with prompt */\n  vertical-align: baseline;\n  /* padding + margin = 0.5em between prompt and cursor */\n  padding: 0em 0.25em;\n  margin: 0em 0.25em;\n  flex: 0 0 70%;\n}\n\n.jp-Stdin-input:focus {\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Output Area View\n|----------------------------------------------------------------------------*/\n\n.jp-LinkedOutputView .jp-OutputArea {\n  height: 100%;\n  display: block;\n}\n\n.jp-LinkedOutputView .jp-OutputArea-output:only-child {\n  height: 100%;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapser {\n  flex: 0 0 var(--jp-cell-collapser-width);\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n  border-radius: var(--jp-border-radius);\n  opacity: 1;\n}\n\n.jp-Collapser-child {\n  display: block;\n  width: 100%;\n  box-sizing: border-box;\n  /* height: 100% doesn't work because the height of its parent is computed from content */\n  position: absolute;\n  top: 0px;\n  bottom: 0px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Header/Footer\n|----------------------------------------------------------------------------*/\n\n/* Hidden by zero height by default */\n.jp-CellHeader,\n.jp-CellFooter {\n  height: 0px;\n  width: 100%;\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Input\n|----------------------------------------------------------------------------*/\n\n/* All input areas */\n.jp-InputArea {\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n}\n\nbody[data-format='mobile'] .jp-InputArea {\n  flex-direction: column;\n}\n\n.jp-InputArea-editor {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  /* This is the non-active, default styling */\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  border-radius: 0px;\n  background: var(--jp-cell-editor-background);\n}\n\nbody[data-format='mobile'] .jp-InputArea-editor {\n  margin-left: var(--jp-notebook-padding);\n}\n\n.jp-InputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-inprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  opacity: var(--jp-cell-prompt-opacity);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-InputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Placeholder {\n  display: flex;\n  flex-direction: row;\n  flex: 1 1 auto;\n}\n\n.jp-Placeholder-prompt {\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content {\n  flex: 1 1 auto;\n  border: none;\n  background: transparent;\n  height: 20px;\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon {\n  width: 32px;\n  height: 16px;\n  border: 1px solid transparent;\n  border-radius: var(--jp-border-radius);\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon:hover {\n  border: 1px solid var(--jp-border-color1);\n  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);\n  background-color: var(--jp-layout-color0);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-cell-scrolling-output-offset: 5px;\n}\n\n/*-----------------------------------------------------------------------------\n| Cell\n|----------------------------------------------------------------------------*/\n\n.jp-Cell {\n  padding: var(--jp-cell-padding);\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Common input/output\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-inputWrapper,\n.jp-Cell-outputWrapper {\n  display: flex;\n  flex-direction: row;\n  padding: 0px;\n  margin: 0px;\n  /* Added to reveal the box-shadow on the input and output collapsers. */\n  overflow: visible;\n}\n\n/* Only input/output areas inside cells */\n.jp-Cell-inputArea,\n.jp-Cell-outputArea {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Collapser\n|----------------------------------------------------------------------------*/\n\n/* Make the output collapser disappear when there is not output, but do so\n * in a manner that leaves it in the layout and preserves its width.\n */\n.jp-Cell.jp-mod-noOutputs .jp-Cell-outputCollapser {\n  border: none !important;\n  background: transparent !important;\n}\n\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputCollapser {\n  min-height: var(--jp-cell-collapser-min-height);\n}\n\n/*-----------------------------------------------------------------------------\n| Output\n|----------------------------------------------------------------------------*/\n\n/* Put a space between input and output when there IS output */\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputWrapper {\n  margin-top: 5px;\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-Cell-outputArea {\n  overflow-y: auto;\n  max-height: 200px;\n  box-shadow: inset 0 0 6px 2px rgba(0, 0, 0, 0.3);\n  margin-left: var(--jp-private-cell-scrolling-output-offset);\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  flex: 0 0\n    calc(\n      var(--jp-cell-prompt-width) -\n        var(--jp-private-cell-scrolling-output-offset)\n    );\n}\n\n/*-----------------------------------------------------------------------------\n| CodeCell\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| MarkdownCell\n|----------------------------------------------------------------------------*/\n\n.jp-MarkdownOutput {\n  flex: 1 1 auto;\n  margin-top: 0;\n  margin-bottom: 0;\n  padding-left: var(--jp-code-padding);\n}\n\n.jp-MarkdownOutput.jp-RenderedHTMLCommon {\n  overflow: auto;\n}\n\n.jp-showHiddenCellsButton {\n  margin-left: calc(var(--jp-cell-prompt-width) + 2 * var(--jp-code-padding));\n  margin-top: var(--jp-code-padding);\n  border: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-border-color3) !important;\n  color: var(--jp-content-font-color0) !important;\n}\n\n.jp-showHiddenCellsButton:hover {\n  background-color: var(--jp-border-color2) !important;\n}\n\n.jp-collapseHeadingButton {\n  display: none;\n}\n\n.jp-MarkdownCell:hover .jp-collapseHeadingButton {\n  display: flex;\n  min-height: var(--jp-cell-collapser-min-height);\n  position: absolute;\n  right: 0;\n  top: 0;\n  bottom: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n\n/*-----------------------------------------------------------------------------\n| Styles\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel-toolbar {\n  padding: 2px;\n}\n\n.jp-Toolbar-item.jp-Notebook-toolbarCellType .jp-select-wrapper.jp-mod-focused {\n  border: none;\n  box-shadow: none;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown select {\n  height: 24px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: 14px;\n  border-radius: 0;\n  display: block;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown span {\n  top: 5px !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-notebook-dragImage-width: 304px;\n  --jp-private-notebook-dragImage-height: 36px;\n  --jp-private-notebook-selected-color: var(--md-blue-400);\n  --jp-private-notebook-active-color: var(--md-green-400);\n}\n\n/*-----------------------------------------------------------------------------\n| Imports\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Notebook\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel {\n  display: block;\n  height: 100%;\n}\n\n.jp-NotebookPanel.jp-Document {\n  min-width: 240px;\n  min-height: 120px;\n}\n\n.jp-Notebook {\n  padding: var(--jp-notebook-padding);\n  outline: none;\n  overflow: auto;\n  background: var(--jp-layout-color0);\n}\n\n.jp-Notebook.jp-mod-scrollPastEnd::after {\n  display: block;\n  content: '';\n  min-height: var(--jp-notebook-scroll-padding);\n}\n\n.jp-MainAreaWidget-ContainStrict .jp-Notebook * {\n  contain: strict;\n}\n\n.jp-Notebook-render * {\n  contain: none !important;\n}\n\n.jp-Notebook .jp-Cell {\n  overflow: visible;\n}\n\n.jp-Notebook .jp-Cell .jp-InputPrompt {\n  cursor: move;\n  float: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook state related styling\n|\n| The notebook and cells each have states, here are the possibilities:\n|\n| - Notebook\n|   - Command\n|   - Edit\n| - Cell\n|   - None\n|   - Active (only one can be active)\n|   - Selected (the cells actions are applied to)\n|   - Multiselected (when multiple selected, the cursor)\n|   - No outputs\n|----------------------------------------------------------------------------*/\n\n/* Command or edit modes */\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-InputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-OutputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n/* cell is active */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser {\n  background: var(--jp-brand-color1);\n}\n\n/* cell is dirty */\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt {\n  color: var(--jp-warn-color1);\n}\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt:before {\n  color: var(--jp-warn-color1);\n  content: '•';\n}\n\n.jp-Notebook .jp-Cell.jp-mod-active.jp-mod-dirty .jp-Collapser {\n  background: var(--jp-warn-color1);\n}\n\n/* collapser is hovered */\n.jp-Notebook .jp-Cell .jp-Collapser:hover {\n  box-shadow: var(--jp-elevation-z2);\n  background: var(--jp-brand-color1);\n  opacity: var(--jp-cell-collapser-not-active-hover-opacity);\n}\n\n/* cell is active and collapser is hovered */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser:hover {\n  background: var(--jp-brand-color0);\n  opacity: 1;\n}\n\n/* Command mode */\n\n.jp-Notebook.jp-mod-commandMode .jp-Cell.jp-mod-selected {\n  background: var(--jp-notebook-multiselected-color);\n}\n\n.jp-Notebook.jp-mod-commandMode\n  .jp-Cell.jp-mod-active.jp-mod-selected:not(.jp-mod-multiSelected) {\n  background: transparent;\n}\n\n/* Edit mode */\n\n.jp-Notebook.jp-mod-editMode .jp-Cell.jp-mod-active .jp-InputArea-editor {\n  border: var(--jp-border-width) solid var(--jp-cell-editor-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-cell-editor-active-background);\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook drag and drop\n|----------------------------------------------------------------------------*/\n\n.jp-Notebook-cell.jp-mod-dropSource {\n  opacity: 0.5;\n}\n\n.jp-Notebook-cell.jp-mod-dropTarget,\n.jp-Notebook.jp-mod-commandMode\n  .jp-Notebook-cell.jp-mod-active.jp-mod-selected.jp-mod-dropTarget {\n  border-top-color: var(--jp-private-notebook-selected-color);\n  border-top-style: solid;\n  border-top-width: 2px;\n}\n\n.jp-dragImage {\n  display: block;\n  flex-direction: row;\n  width: var(--jp-private-notebook-dragImage-width);\n  height: var(--jp-private-notebook-dragImage-height);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background);\n  overflow: visible;\n}\n\n.jp-dragImage-singlePrompt {\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n.jp-dragImage .jp-dragImage-content {\n  flex: 1 1 auto;\n  z-index: 2;\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  line-height: var(--jp-code-line-height);\n  padding: var(--jp-code-padding);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background-color);\n  color: var(--jp-content-font-color3);\n  text-align: left;\n  margin: 4px 4px 4px 0px;\n}\n\n.jp-dragImage .jp-dragImage-prompt {\n  flex: 0 0 auto;\n  min-width: 36px;\n  color: var(--jp-cell-inprompt-font-color);\n  padding: var(--jp-code-padding);\n  padding-left: 12px;\n  font-family: var(--jp-cell-prompt-font-family);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: 1.9;\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n}\n\n.jp-dragImage-multipleBack {\n  z-index: -1;\n  position: absolute;\n  height: 32px;\n  width: 300px;\n  top: 8px;\n  left: 8px;\n  background: var(--jp-layout-color2);\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n/*-----------------------------------------------------------------------------\n| Cell toolbar\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookTools {\n  display: block;\n  min-width: var(--jp-sidebar-min-width);\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n    * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  overflow: auto;\n}\n\n.jp-NotebookTools-tool {\n  padding: 0px 12px 0 12px;\n}\n\n.jp-ActiveCellTool {\n  padding: 12px;\n  background-color: var(--jp-layout-color1);\n  border-top: none !important;\n}\n\n.jp-ActiveCellTool .jp-InputArea-prompt {\n  flex: 0 0 auto;\n  padding-left: 0px;\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor {\n  flex: 1 1 auto;\n  background: var(--jp-cell-editor-background);\n  border-color: var(--jp-cell-editor-border-color);\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor .CodeMirror {\n  background: transparent;\n}\n\n.jp-MetadataEditorTool {\n  flex-direction: column;\n  padding: 12px 0px 12px 0px;\n}\n\n.jp-RankedPanel > :not(:first-child) {\n  margin-top: 12px;\n}\n\n.jp-KeySelector select.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n}\n\n.jp-KeySelector label,\n.jp-MetadataEditorTool label {\n  line-height: 1.4;\n}\n\n.jp-NotebookTools .jp-select-wrapper {\n  margin-top: 4px;\n  margin-bottom: 0px;\n}\n\n.jp-NotebookTools .jp-Collapse {\n  margin-top: 16px;\n}\n\n/*-----------------------------------------------------------------------------\n| Presentation Mode (.jp-mod-presentationMode)\n|----------------------------------------------------------------------------*/\n\n.jp-mod-presentationMode .jp-Notebook {\n  --jp-content-font-size1: var(--jp-content-presentation-font-size1);\n  --jp-code-font-size: var(--jp-code-presentation-font-size);\n}\n\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-InputPrompt,\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-OutputPrompt {\n  flex: 0 0 110px;\n}\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-Placeholder {\n  padding-left: 55px;\n}\n\n.jp-Cell-Placeholder-wrapper {\n  background: #fff;\n  border: 1px solid;\n  border-color: #e5e6e9 #dfe0e4 #d0d1d5;\n  border-radius: 4px;\n  -webkit-border-radius: 4px;\n  margin: 10px 15px;\n}\n\n.jp-Cell-Placeholder-wrapper-inner {\n  padding: 15px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body {\n  background-repeat: repeat;\n  background-size: 50% auto;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  background: #f6f7f8;\n  background-image: -webkit-linear-gradient(\n    left,\n    #f6f7f8 0%,\n    #edeef1 20%,\n    #f6f7f8 40%,\n    #f6f7f8 100%\n  );\n  background-repeat: no-repeat;\n  background-size: 800px 104px;\n  height: 104px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  position: absolute;\n  right: 15px;\n  left: 15px;\n  top: 15px;\n}\n\ndiv.jp-Cell-Placeholder-h1 {\n  top: 20px;\n  height: 20px;\n  left: 15px;\n  width: 150px;\n}\n\ndiv.jp-Cell-Placeholder-h2 {\n  left: 15px;\n  top: 50px;\n  height: 10px;\n  width: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-1,\ndiv.jp-Cell-Placeholder-content-2,\ndiv.jp-Cell-Placeholder-content-3 {\n  left: 15px;\n  right: 15px;\n  height: 10px;\n}\n\ndiv.jp-Cell-Placeholder-content-1 {\n  top: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-2 {\n  top: 120px;\n}\n\ndiv.jp-Cell-Placeholder-content-3 {\n  top: 140px;\n}\n\n</style>\n\n    <style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\nThe following CSS variables define the main, public API for styling JupyterLab.\nThese variables should be used by all plugins wherever possible. In other\nwords, plugins should not define custom colors, sizes, etc unless absolutely\nnecessary. This enables users to change the visual theme of JupyterLab\nby changing these variables.\n\nMany variables appear in an ordered sequence (0,1,2,3). These sequences\nare designed to work well together, so for example, `--jp-border-color1` should\nbe used with `--jp-layout-color1`. The numbers have the following meanings:\n\n* 0: super-primary, reserved for special emphasis\n* 1: primary, most important under normal situations\n* 2: secondary, next most important under normal situations\n* 3: tertiary, next most important under normal situations\n\nThroughout JupyterLab, we are mostly following principles from Google's\nMaterial Design when selecting colors. We are not, however, following\nall of MD as it is not optimized for dense, information rich UIs.\n*/\n\n:root {\n  /* Elevation\n   *\n   * We style box-shadows using Material Design's idea of elevation. These particular numbers are taken from here:\n   *\n   * https://github.com/material-components/material-components-web\n   * https://material-components-web.appspot.com/elevation.html\n   */\n\n  --jp-shadow-base-lightness: 0;\n  --jp-shadow-umbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.2\n  );\n  --jp-shadow-penumbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.14\n  );\n  --jp-shadow-ambient-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.12\n  );\n  --jp-elevation-z0: none;\n  --jp-elevation-z1: 0px 2px 1px -1px var(--jp-shadow-umbra-color),\n    0px 1px 1px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 3px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z2: 0px 3px 1px -2px var(--jp-shadow-umbra-color),\n    0px 2px 2px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 5px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z4: 0px 2px 4px -1px var(--jp-shadow-umbra-color),\n    0px 4px 5px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 10px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z6: 0px 3px 5px -1px var(--jp-shadow-umbra-color),\n    0px 6px 10px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 18px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z8: 0px 5px 5px -3px var(--jp-shadow-umbra-color),\n    0px 8px 10px 1px var(--jp-shadow-penumbra-color),\n    0px 3px 14px 2px var(--jp-shadow-ambient-color);\n  --jp-elevation-z12: 0px 7px 8px -4px var(--jp-shadow-umbra-color),\n    0px 12px 17px 2px var(--jp-shadow-penumbra-color),\n    0px 5px 22px 4px var(--jp-shadow-ambient-color);\n  --jp-elevation-z16: 0px 8px 10px -5px var(--jp-shadow-umbra-color),\n    0px 16px 24px 2px var(--jp-shadow-penumbra-color),\n    0px 6px 30px 5px var(--jp-shadow-ambient-color);\n  --jp-elevation-z20: 0px 10px 13px -6px var(--jp-shadow-umbra-color),\n    0px 20px 31px 3px var(--jp-shadow-penumbra-color),\n    0px 8px 38px 7px var(--jp-shadow-ambient-color);\n  --jp-elevation-z24: 0px 11px 15px -7px var(--jp-shadow-umbra-color),\n    0px 24px 38px 3px var(--jp-shadow-penumbra-color),\n    0px 9px 46px 8px var(--jp-shadow-ambient-color);\n\n  /* Borders\n   *\n   * The following variables, specify the visual styling of borders in JupyterLab.\n   */\n\n  --jp-border-width: 1px;\n  --jp-border-color0: var(--md-grey-400);\n  --jp-border-color1: var(--md-grey-400);\n  --jp-border-color2: var(--md-grey-300);\n  --jp-border-color3: var(--md-grey-200);\n  --jp-border-radius: 2px;\n\n  /* UI Fonts\n   *\n   * The UI font CSS variables are used for the typography all of the JupyterLab\n   * user interface elements that are not directly user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-ui-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-ui-font-scale-factor: 1.2;\n  --jp-ui-font-size0: 0.83333em;\n  --jp-ui-font-size1: 13px; /* Base font size */\n  --jp-ui-font-size2: 1.2em;\n  --jp-ui-font-size3: 1.44em;\n\n  --jp-ui-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica,\n    Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';\n\n  /*\n   * Use these font colors against the corresponding main layout colors.\n   * In a light theme, these go from dark to light.\n   */\n\n  /* Defaults use Material Design specification */\n  --jp-ui-font-color0: rgba(0, 0, 0, 1);\n  --jp-ui-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-ui-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-ui-font-color3: rgba(0, 0, 0, 0.38);\n\n  /*\n   * Use these against the brand/accent/warn/error colors.\n   * These will typically go from light to darker, in both a dark and light theme.\n   */\n\n  --jp-ui-inverse-font-color0: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color1: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color2: rgba(255, 255, 255, 0.7);\n  --jp-ui-inverse-font-color3: rgba(255, 255, 255, 0.5);\n\n  /* Content Fonts\n   *\n   * Content font variables are used for typography of user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-content-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-content-line-height: 1.6;\n  --jp-content-font-scale-factor: 1.2;\n  --jp-content-font-size0: 0.83333em;\n  --jp-content-font-size1: 14px; /* Base font size */\n  --jp-content-font-size2: 1.2em;\n  --jp-content-font-size3: 1.44em;\n  --jp-content-font-size4: 1.728em;\n  --jp-content-font-size5: 2.0736em;\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-content-presentation-font-size1: 17px;\n\n  --jp-content-heading-line-height: 1;\n  --jp-content-heading-margin-top: 1.2em;\n  --jp-content-heading-margin-bottom: 0.8em;\n  --jp-content-heading-font-weight: 500;\n\n  /* Defaults use Material Design specification */\n  --jp-content-font-color0: rgba(0, 0, 0, 1);\n  --jp-content-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-content-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-content-font-color3: rgba(0, 0, 0, 0.38);\n\n  --jp-content-link-color: var(--md-blue-700);\n\n  --jp-content-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',\n    Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',\n    'Segoe UI Symbol';\n\n  /*\n   * Code Fonts\n   *\n   * Code font variables are used for typography of code and other monospaces content.\n   */\n\n  --jp-code-font-size: 13px;\n  --jp-code-line-height: 1.3077; /* 17px for 13px base */\n  --jp-code-padding: 5px; /* 5px for 13px base, codemirror highlighting needs integer px value */\n  --jp-code-font-family-default: Menlo, Consolas, 'DejaVu Sans Mono', monospace;\n  --jp-code-font-family: var(--jp-code-font-family-default);\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-code-presentation-font-size: 16px;\n\n  /* may need to tweak cursor width if you change font size */\n  --jp-code-cursor-width0: 1.4px;\n  --jp-code-cursor-width1: 2px;\n  --jp-code-cursor-width2: 4px;\n\n  /* Layout\n   *\n   * The following are the main layout colors use in JupyterLab. In a light\n   * theme these would go from light to dark.\n   */\n\n  --jp-layout-color0: white;\n  --jp-layout-color1: white;\n  --jp-layout-color2: var(--md-grey-200);\n  --jp-layout-color3: var(--md-grey-400);\n  --jp-layout-color4: var(--md-grey-600);\n\n  /* Inverse Layout\n   *\n   * The following are the inverse layout colors use in JupyterLab. In a light\n   * theme these would go from dark to light.\n   */\n\n  --jp-inverse-layout-color0: #111111;\n  --jp-inverse-layout-color1: var(--md-grey-900);\n  --jp-inverse-layout-color2: var(--md-grey-800);\n  --jp-inverse-layout-color3: var(--md-grey-700);\n  --jp-inverse-layout-color4: var(--md-grey-600);\n\n  /* Brand/accent */\n\n  --jp-brand-color0: var(--md-blue-900);\n  --jp-brand-color1: var(--md-blue-700);\n  --jp-brand-color2: var(--md-blue-300);\n  --jp-brand-color3: var(--md-blue-100);\n  --jp-brand-color4: var(--md-blue-50);\n\n  --jp-accent-color0: var(--md-green-900);\n  --jp-accent-color1: var(--md-green-700);\n  --jp-accent-color2: var(--md-green-300);\n  --jp-accent-color3: var(--md-green-100);\n\n  /* State colors (warn, error, success, info) */\n\n  --jp-warn-color0: var(--md-orange-900);\n  --jp-warn-color1: var(--md-orange-700);\n  --jp-warn-color2: var(--md-orange-300);\n  --jp-warn-color3: var(--md-orange-100);\n\n  --jp-error-color0: var(--md-red-900);\n  --jp-error-color1: var(--md-red-700);\n  --jp-error-color2: var(--md-red-300);\n  --jp-error-color3: var(--md-red-100);\n\n  --jp-success-color0: var(--md-green-900);\n  --jp-success-color1: var(--md-green-700);\n  --jp-success-color2: var(--md-green-300);\n  --jp-success-color3: var(--md-green-100);\n\n  --jp-info-color0: var(--md-cyan-900);\n  --jp-info-color1: var(--md-cyan-700);\n  --jp-info-color2: var(--md-cyan-300);\n  --jp-info-color3: var(--md-cyan-100);\n\n  /* Cell specific styles */\n\n  --jp-cell-padding: 5px;\n\n  --jp-cell-collapser-width: 8px;\n  --jp-cell-collapser-min-height: 20px;\n  --jp-cell-collapser-not-active-hover-opacity: 0.6;\n\n  --jp-cell-editor-background: var(--md-grey-100);\n  --jp-cell-editor-border-color: var(--md-grey-300);\n  --jp-cell-editor-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-cell-editor-active-background: var(--jp-layout-color0);\n  --jp-cell-editor-active-border-color: var(--jp-brand-color1);\n\n  --jp-cell-prompt-width: 64px;\n  --jp-cell-prompt-font-family: var(--jp-code-font-family-default);\n  --jp-cell-prompt-letter-spacing: 0px;\n  --jp-cell-prompt-opacity: 1;\n  --jp-cell-prompt-not-active-opacity: 0.5;\n  --jp-cell-prompt-not-active-font-color: var(--md-grey-700);\n  /* A custom blend of MD grey and blue 600\n   * See https://meyerweb.com/eric/tools/color-blend/#546E7A:1E88E5:5:hex */\n  --jp-cell-inprompt-font-color: #307fc1;\n  /* A custom blend of MD grey and orange 600\n   * https://meyerweb.com/eric/tools/color-blend/#546E7A:F4511E:5:hex */\n  --jp-cell-outprompt-font-color: #bf5b3d;\n\n  /* Notebook specific styles */\n\n  --jp-notebook-padding: 10px;\n  --jp-notebook-select-background: var(--jp-layout-color1);\n  --jp-notebook-multiselected-color: var(--md-blue-50);\n\n  /* The scroll padding is calculated to fill enough space at the bottom of the\n  notebook to show one single-line cell (with appropriate padding) at the top\n  when the notebook is scrolled all the way to the bottom. We also subtract one\n  pixel so that no scrollbar appears if we have just one single-line cell in the\n  notebook. This padding is to enable a 'scroll past end' feature in a notebook.\n  */\n  --jp-notebook-scroll-padding: calc(\n    100% - var(--jp-code-font-size) * var(--jp-code-line-height) -\n      var(--jp-code-padding) - var(--jp-cell-padding) - 1px\n  );\n\n  /* Rendermime styles */\n\n  --jp-rendermime-error-background: #fdd;\n  --jp-rendermime-table-row-background: var(--md-grey-100);\n  --jp-rendermime-table-row-hover-background: var(--md-light-blue-50);\n\n  /* Dialog specific styles */\n\n  --jp-dialog-background: rgba(0, 0, 0, 0.25);\n\n  /* Console specific styles */\n\n  --jp-console-padding: 10px;\n\n  /* Toolbar specific styles */\n\n  --jp-toolbar-border-color: var(--jp-border-color1);\n  --jp-toolbar-micro-height: 8px;\n  --jp-toolbar-background: var(--jp-layout-color1);\n  --jp-toolbar-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.24);\n  --jp-toolbar-header-margin: 4px 4px 0px 4px;\n  --jp-toolbar-active-background: var(--md-grey-300);\n\n  /* Statusbar specific styles */\n\n  --jp-statusbar-height: 24px;\n\n  /* Input field styles */\n\n  --jp-input-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-input-active-background: var(--jp-layout-color1);\n  --jp-input-hover-background: var(--jp-layout-color1);\n  --jp-input-background: var(--md-grey-100);\n  --jp-input-border-color: var(--jp-border-color1);\n  --jp-input-active-border-color: var(--jp-brand-color1);\n  --jp-input-active-box-shadow-color: rgba(19, 124, 189, 0.3);\n\n  /* General editor styles */\n\n  --jp-editor-selected-background: #d9d9d9;\n  --jp-editor-selected-focused-background: #d7d4f0;\n  --jp-editor-cursor-color: var(--jp-ui-font-color0);\n\n  /* Code mirror specific styles */\n\n  --jp-mirror-editor-keyword-color: #008000;\n  --jp-mirror-editor-atom-color: #88f;\n  --jp-mirror-editor-number-color: #080;\n  --jp-mirror-editor-def-color: #00f;\n  --jp-mirror-editor-variable-color: var(--md-grey-900);\n  --jp-mirror-editor-variable-2-color: #05a;\n  --jp-mirror-editor-variable-3-color: #085;\n  --jp-mirror-editor-punctuation-color: #05a;\n  --jp-mirror-editor-property-color: #05a;\n  --jp-mirror-editor-operator-color: #aa22ff;\n  --jp-mirror-editor-comment-color: #408080;\n  --jp-mirror-editor-string-color: #ba2121;\n  --jp-mirror-editor-string-2-color: #708;\n  --jp-mirror-editor-meta-color: #aa22ff;\n  --jp-mirror-editor-qualifier-color: #555;\n  --jp-mirror-editor-builtin-color: #008000;\n  --jp-mirror-editor-bracket-color: #997;\n  --jp-mirror-editor-tag-color: #170;\n  --jp-mirror-editor-attribute-color: #00c;\n  --jp-mirror-editor-header-color: blue;\n  --jp-mirror-editor-quote-color: #090;\n  --jp-mirror-editor-link-color: #00c;\n  --jp-mirror-editor-error-color: #f00;\n  --jp-mirror-editor-hr-color: #999;\n\n  /* Vega extension styles */\n\n  --jp-vega-background: white;\n\n  /* Sidebar-related styles */\n\n  --jp-sidebar-min-width: 250px;\n\n  /* Search-related styles */\n\n  --jp-search-toggle-off-opacity: 0.5;\n  --jp-search-toggle-hover-opacity: 0.8;\n  --jp-search-toggle-on-opacity: 1;\n  --jp-search-selected-match-background-color: rgb(245, 200, 0);\n  --jp-search-selected-match-color: black;\n  --jp-search-unselected-match-background-color: var(\n    --jp-inverse-layout-color0\n  );\n  --jp-search-unselected-match-color: var(--jp-ui-inverse-font-color0);\n\n  /* Icon colors that work well with light or dark backgrounds */\n  --jp-icon-contrast-color0: var(--md-purple-600);\n  --jp-icon-contrast-color1: var(--md-green-600);\n  --jp-icon-contrast-color2: var(--md-pink-600);\n  --jp-icon-contrast-color3: var(--md-blue-600);\n}\n</style>\n\n<style type=\"text/css\">\n/* Force rendering true colors when outputing to pdf */\n* {\n  -webkit-print-color-adjust: exact;\n}\n\n/* Misc */\na.anchor-link {\n  display: none;\n}\n\n/* Input area styling */\n.jp-InputArea {\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  overflow: hidden;\n}\n\n.CodeMirror.cm-s-jupyter .highlight pre {\n/* weird, but --jp-code-padding defined to be 5px but 4px horizontal padding is hardcoded for pre.CodeMirror-line */\n  padding: var(--jp-code-padding) 4px;\n  margin: 0;\n\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit;\n  color: inherit;\n\n}\n\n.jp-OutputArea-output pre {\n  line-height: inherit;\n  font-family: inherit;\n}\n\n.jp-RenderedText pre {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-code-font-size);\n}\n\n/* Using table instead of flexbox so that we can use break-inside property */\n/* CSS rules under this comment should not be required anymore after we move to the JupyterLab 4.0 CSS */\n\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  min-width: calc(\n    var(--jp-cell-prompt-width) - var(--jp-private-cell-scrolling-output-offset)\n  );\n}\n\n.jp-OutputArea-child {\n  display: table;\n  width: 100%;\n}\n\n.jp-OutputPrompt {\n  display: table-cell;\n  vertical-align: top;\n  min-width: var(--jp-cell-prompt-width);\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  display: table-row;\n}\n\n.jp-OutputArea-output {\n  display: table-cell;\n  width: 100%;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  display: table-row;\n}\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  width: 100%;\n}\n\n/* Hiding the collapser by default */\n.jp-Collapser {\n  display: none;\n}\n\n@page {\n    margin: 0.5in; /* Margin for each printed piece of paper */\n}\n\n@media print {\n  .jp-Cell-inputWrapper,\n  .jp-Cell-outputWrapper {\n    display: block;\n  }\n\n  .jp-OutputArea-child {\n    break-inside: avoid-page;\n  }\n}\n</style>\n\n<!-- Load mathjax -->\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/latest.js?config=TeX-AMS_CHTML-full,Safe\"> </script>\n    <!-- MathJax configuration -->\n    <script type=\"text/x-mathjax-config\">\n    init_mathjax = function() {\n        if (window.MathJax) {\n        // MathJax loaded\n            MathJax.Hub.Config({\n                TeX: {\n                    equationNumbers: {\n                    autoNumber: \"AMS\",\n                    useLabelIds: true\n                    }\n                },\n                tex2jax: {\n                    inlineMath: [ ['$','$'], [\"\\\\(\",\"\\\\)\"] ],\n                    displayMath: [ ['$$','$$'], [\"\\\\[\",\"\\\\]\"] ],\n                    processEscapes: true,\n                    processEnvironments: true\n                },\n                displayAlign: 'center',\n                CommonHTML: {\n                    linebreaks: {\n                    automatic: true\n                    }\n                }\n            });\n\n            MathJax.Hub.Queue([\"Typeset\", MathJax.Hub]);\n        }\n    }\n    init_mathjax();\n    </script>\n    <!-- End of mathjax configuration --></head>\n<body class=\"jp-Notebook\" data-jp-theme-light=\"true\" data-jp-theme-name=\"JupyterLab Light\">\n\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Probabilistic-Parser-Combinators\">Probabilistic Parser Combinators<a class=\"anchor-link\" href=\"#Probabilistic-Parser-Combinators\">&#182;</a></h1>\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[1]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Text.Megaparsec</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Text.Megaparsec.Char</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Char</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Data.Text</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">T</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Class</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Sampler.Strict</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Weighted</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Population</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Enumerator</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Inference.SMC</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Trans</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">lift</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">join</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"nf\">replicateM</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Void</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Enumerator</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Text.Pretty.Simple</span>\n\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">OverloadedStrings</span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">FlexibleContexts</span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">GADTs</span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">LambdaCase</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>Probability interfaces nicely with parser combinators from libraries like <code>megaparsec</code>. A parser in this setting is roughly a function <code>[Char] -&gt; m (a, [Char])</code>, in other words a function which (monadically) strips off a prefix of the input string and returns a result.</p>\n<p>To make this probabilistic, we simply set <code>m</code> to a probability monad. The result of parsing is then a distribution over possible parses (and possible parse failures).</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[2]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">alphabet</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">map</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">:</span><span class=\"w\"> </span><span class=\"kt\">[]</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"sc\">&#39;h&#39;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"sc\">&#39;i&#39;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"sc\">&#39;x&#39;</span><span class=\"p\">]</span>\n\n<span class=\"nf\">noise</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span>\n<span class=\"w\">    </span><span class=\"n\">perturb</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">lift</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">bernoulli</span><span class=\"w\"> </span><span class=\"mf\">0.1</span>\n<span class=\"w\">    </span><span class=\"kr\">if</span><span class=\"w\"> </span><span class=\"n\">perturb</span><span class=\"w\"> </span><span class=\"kr\">then</span><span class=\"w\"> </span><span class=\"n\">lift</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">uniformD</span><span class=\"w\"> </span><span class=\"n\">alphabet</span><span class=\"w\"> </span><span class=\"kr\">else</span><span class=\"w\"> </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"n\">x</span>\n\n<span class=\"nf\">letter</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span>\n<span class=\"w\">    </span><span class=\"n\">true</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\">  </span><span class=\"n\">lift</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">uniformD</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"s\">&quot;h&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"s\">&quot;i&quot;</span><span class=\"p\">,</span><span class=\"s\">&quot;x&quot;</span><span class=\"p\">]</span>\n<span class=\"w\">    </span><span class=\"n\">predicted</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">noise</span><span class=\"w\"> </span><span class=\"n\">true</span>\n<span class=\"w\">    </span><span class=\"n\">observed</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">lookAhead</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">foldr1</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">&lt;|&gt;</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"s\">&quot;h&quot;</span><span class=\"p\">,</span><span class=\"s\">&quot;i&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"s\">&quot;x&quot;</span><span class=\"p\">])</span>\n<span class=\"w\">    </span><span class=\"n\">lift</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">condition</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">predicted</span><span class=\"w\"> </span><span class=\"o\">==</span><span class=\"w\"> </span><span class=\"n\">observed</span>\n<span class=\"w\">    </span><span class=\"n\">string</span><span class=\"w\"> </span><span class=\"n\">observed</span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">head</span><span class=\"w\"> </span><span class=\"n\">true</span><span class=\"w\"> </span>\n<span class=\"w\">    </span>\n<span class=\"nf\">word</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kr\">do</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"n\">wd</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">some</span><span class=\"w\"> </span><span class=\"n\">letter</span>\n<span class=\"w\">    </span><span class=\"n\">lift</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">factor</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kr\">if</span><span class=\"w\"> </span><span class=\"n\">wd</span><span class=\"w\"> </span><span class=\"p\">`</span><span class=\"n\">elem</span><span class=\"p\">`</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"s\">&quot;hi&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"s\">&quot;goodbye&quot;</span><span class=\"p\">]</span><span class=\"w\"> </span><span class=\"kr\">then</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"> </span><span class=\"kr\">else</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">)</span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"n\">wd</span>\n<span class=\"w\">    </span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;*</span><span class=\"w\"> </span><span class=\"n\">eof</span>\n\n<span class=\"nf\">errorBundlePretty&#39;</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">TraversableStream</span><span class=\"w\"> </span><span class=\"n\">s</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">VisualStream</span><span class=\"w\"> </span><span class=\"n\">s</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">ParseErrorBundle</span><span class=\"w\"> </span><span class=\"n\">s</span><span class=\"w\"> </span><span class=\"kt\">Void</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kt\">String</span><span class=\"w\"> </span>\n<span class=\"nf\">errorBundlePretty&#39;</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">errorBundlePretty</span>\n\n\n<span class=\"nf\">run</span><span class=\"w\"> </span><span class=\"n\">parser</span><span class=\"w\"> </span><span class=\"n\">input</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">either</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">errorBundlePretty&#39;</span><span class=\"w\"> </span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">show</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">runParserT</span><span class=\"w\"> </span><span class=\"n\">parser</span><span class=\"w\"> </span><span class=\"s\">&quot;&quot;</span><span class=\"w\"> </span><span class=\"n\">input</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[3]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">pPrintCustom</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">pPrintOpt</span><span class=\"w\"> </span><span class=\"kt\">CheckColorTty</span><span class=\"w\"> </span><span class=\"n\">defaultOutputOptionsNoColor</span><span class=\"w\"> </span><span class=\"p\">{</span><span class=\"n\">outputOptionsCompact</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">True</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">outputOptionsIndentAmount</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"p\">}</span><span class=\"w\"> </span>\n\n<span class=\"nf\">runWordParser</span><span class=\"w\"> </span><span class=\"n\">w</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span>\n<span class=\"w\">    </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampler</span><span class=\"w\"> </span>\n<span class=\"w\">        </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">runPopulationT</span><span class=\"w\"> </span>\n<span class=\"w\">        </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">smc</span><span class=\"w\"> </span><span class=\"kt\">SMCConfig</span><span class=\"w\"> </span><span class=\"p\">{</span><span class=\"n\">numSteps</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">5</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">numParticles</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">3000</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">resampler</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">resampleMultinomial</span><span class=\"p\">}</span><span class=\"w\"> </span>\n<span class=\"w\">        </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">run</span><span class=\"w\"> </span><span class=\"n\">word</span><span class=\"w\"> </span><span class=\"n\">w</span>\n<span class=\"w\">    </span><span class=\"n\">pPrintCustom</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">toEmpiricalWeighted</span><span class=\"w\"> </span><span class=\"n\">x</span>\n<span class=\"w\">    </span>\n<span class=\"nf\">runWordParser</span><span class=\"w\"> </span><span class=\"s\">&quot;hx&quot;</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n<div class=\"jp-OutputArea-child\">\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[\n  ( &#34;&#34;hi&#34;&#34;, 0.7563333333333333 )\n,\n  ( &#34;&#34;hx&#34;&#34;, 0.20799999999999993 )\n,\n  ( &#34;&#34;xx&#34;&#34;, 1.5000000000000038 e- 2 )\n,\n  ( &#34;&#34;hh&#34;&#34;, 1.06666666666667 e- 2 )\n,\n  ( &#34;&#34;ix&#34;&#34;, 1.0000000000000014 e- 2 )\n]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[4]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">runWordParser</span><span class=\"w\"> </span><span class=\"s\">&quot;ii&quot;</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n<div class=\"jp-OutputArea-child\">\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[\n  ( &#34;&#34;hi&#34;&#34;, 0.7813333333333331 )\n,\n  ( &#34;&#34;ii&#34;&#34;, 0.2046666666666667 )\n,\n  ( &#34;&#34;xi&#34;&#34;, 6.66666666666668 e- 3 )\n,\n  ( &#34;&#34;ix&#34;&#34;, 4.333333333333346 e- 3 )\n,\n  ( &#34;&#34;ih&#34;&#34;, 1.6666666666666711 e- 3 )\n,\n  ( &#34;&#34;xh&#34;&#34;, 1.0000000000000028 e- 3 )\n,\n  ( &#34;&#34;xx&#34;&#34;, 3.333333333333342 e- 4 )\n]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[5]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">runWordParser</span><span class=\"w\"> </span><span class=\"s\">&quot;hii&quot;</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n<div class=\"jp-OutputArea-child\">\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[\n  ( &#34;&#34;hii&#34;&#34;, 0.8063333333333336 )\n,\n  ( &#34;&#34;xii&#34;&#34;, 3.9333333333333186 e- 2 )\n,\n  ( &#34;&#34;hhi&#34;&#34;, 3.533333333333321 e- 2 )\n,\n  ( &#34;&#34;hix&#34;&#34;, 2.966666666666659 e- 2 )\n,\n  ( &#34;&#34;hih&#34;&#34;, 2.8999999999999908 e- 2 )\n,\n  ( &#34;&#34;hxi&#34;&#34;, 2.633333333333325 e- 2 )\n,\n  ( &#34;&#34;iii&#34;&#34;, 1.666666666666663 e- 2 )\n,\n  ( &#34;&#34;hxx&#34;&#34;, 4.333333333333327 e- 3 )\n,\n  ( &#34;&#34;xih&#34;&#34;, 3.999999999999995 e- 3 )\n,\n  ( &#34;&#34;ixi&#34;&#34;, 3.6666666666666636 e- 3 )\n,\n  ( &#34;&#34;hhx&#34;&#34;, 2.666666666666665 e- 3 )\n,\n  ( &#34;&#34;xxi&#34;&#34;, 2.3333333333333314 e- 3 )\n,\n  ( &#34;&#34;hhh&#34;&#34;, 3.333333333333324 e- 4 )\n]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n</body>\n\n\n\n\n\n\n\n</html>\n"
  },
  {
    "path": "docs/docs/notebooks/RealTimeInference.html",
    "content": "<!DOCTYPE html>\n<html>\n<head><meta charset=\"utf-8\" />\n\n<title>RealTimeInference</title>\n\n<script src=\"https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js\"></script>\n<script src=\"https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js\"></script>\n\n\n\n<style type=\"text/css\">\n    /*!\n*\n* Twitter Bootstrap\n*\n*/\n/*!\n * Bootstrap v3.3.7 (http://getbootstrap.com)\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\nhtml {\n  font-family: sans-serif;\n  -ms-text-size-adjust: 100%;\n  -webkit-text-size-adjust: 100%;\n}\nbody {\n  margin: 0;\n}\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n  display: block;\n}\naudio,\ncanvas,\nprogress,\nvideo {\n  display: inline-block;\n  vertical-align: baseline;\n}\naudio:not([controls]) {\n  display: none;\n  height: 0;\n}\n[hidden],\ntemplate {\n  display: none;\n}\na {\n  background-color: transparent;\n}\na:active,\na:hover {\n  outline: 0;\n}\nabbr[title] {\n  border-bottom: 1px dotted;\n}\nb,\nstrong {\n  font-weight: bold;\n}\ndfn {\n  font-style: italic;\n}\nh1 {\n  font-size: 2em;\n  margin: 0.67em 0;\n}\nmark {\n  background: #ff0;\n  color: #000;\n}\nsmall {\n  font-size: 80%;\n}\nsub,\nsup {\n  font-size: 75%;\n  line-height: 0;\n  position: relative;\n  vertical-align: baseline;\n}\nsup {\n  top: -0.5em;\n}\nsub {\n  bottom: -0.25em;\n}\nimg {\n  border: 0;\n}\nsvg:not(:root) {\n  overflow: hidden;\n}\nfigure {\n  margin: 1em 40px;\n}\nhr {\n  box-sizing: content-box;\n  height: 0;\n}\npre {\n  overflow: auto;\n}\ncode,\nkbd,\npre,\nsamp {\n  font-family: monospace, monospace;\n  font-size: 1em;\n}\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n  color: inherit;\n  font: inherit;\n  margin: 0;\n}\nbutton {\n  overflow: visible;\n}\nbutton,\nselect {\n  text-transform: none;\n}\nbutton,\nhtml input[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n  -webkit-appearance: button;\n  cursor: pointer;\n}\nbutton[disabled],\nhtml input[disabled] {\n  cursor: default;\n}\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n  border: 0;\n  padding: 0;\n}\ninput {\n  line-height: normal;\n}\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n  box-sizing: border-box;\n  padding: 0;\n}\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n  height: auto;\n}\ninput[type=\"search\"] {\n  -webkit-appearance: textfield;\n  box-sizing: content-box;\n}\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\nfieldset {\n  border: 1px solid #c0c0c0;\n  margin: 0 2px;\n  padding: 0.35em 0.625em 0.75em;\n}\nlegend {\n  border: 0;\n  padding: 0;\n}\ntextarea {\n  overflow: auto;\n}\noptgroup {\n  font-weight: bold;\n}\ntable {\n  border-collapse: collapse;\n  border-spacing: 0;\n}\ntd,\nth {\n  padding: 0;\n}\n/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n@media print {\n  *,\n  *:before,\n  *:after {\n    background: transparent !important;\n    box-shadow: none !important;\n    text-shadow: none !important;\n  }\n  a,\n  a:visited {\n    text-decoration: underline;\n  }\n  a[href]:after {\n    content: \" (\" attr(href) \")\";\n  }\n  abbr[title]:after {\n    content: \" (\" attr(title) \")\";\n  }\n  a[href^=\"#\"]:after,\n  a[href^=\"javascript:\"]:after {\n    content: \"\";\n  }\n  pre,\n  blockquote {\n    border: 1px solid #999;\n    page-break-inside: avoid;\n  }\n  thead {\n    display: table-header-group;\n  }\n  tr,\n  img {\n    page-break-inside: avoid;\n  }\n  img {\n    max-width: 100% !important;\n  }\n  p,\n  h2,\n  h3 {\n    orphans: 3;\n    widows: 3;\n  }\n  h2,\n  h3 {\n    page-break-after: avoid;\n  }\n  .navbar {\n    display: none;\n  }\n  .btn > .caret,\n  .dropup > .btn > .caret {\n    border-top-color: #000 !important;\n  }\n  .label {\n    border: 1px solid #000;\n  }\n  .table {\n    border-collapse: collapse !important;\n  }\n  .table td,\n  .table th {\n    background-color: #fff !important;\n  }\n  .table-bordered th,\n  .table-bordered td {\n    border: 1px solid #ddd !important;\n  }\n}\n@font-face {\n  font-family: 'Glyphicons Halflings';\n  src: url('../components/bootstrap/fonts/glyphicons-halflings-regular.eot');\n  src: url('../components/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.woff') format('woff'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');\n}\n.glyphicon {\n  position: relative;\n  top: 1px;\n  display: inline-block;\n  font-family: 'Glyphicons Halflings';\n  font-style: normal;\n  font-weight: normal;\n  line-height: 1;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n.glyphicon-asterisk:before {\n  content: \"\\002a\";\n}\n.glyphicon-plus:before {\n  content: \"\\002b\";\n}\n.glyphicon-euro:before,\n.glyphicon-eur:before {\n  content: \"\\20ac\";\n}\n.glyphicon-minus:before {\n  content: \"\\2212\";\n}\n.glyphicon-cloud:before {\n  content: \"\\2601\";\n}\n.glyphicon-envelope:before {\n  content: \"\\2709\";\n}\n.glyphicon-pencil:before {\n  content: \"\\270f\";\n}\n.glyphicon-glass:before {\n  content: \"\\e001\";\n}\n.glyphicon-music:before {\n  content: \"\\e002\";\n}\n.glyphicon-search:before {\n  content: \"\\e003\";\n}\n.glyphicon-heart:before {\n  content: \"\\e005\";\n}\n.glyphicon-star:before {\n  content: \"\\e006\";\n}\n.glyphicon-star-empty:before {\n  content: \"\\e007\";\n}\n.glyphicon-user:before {\n  content: \"\\e008\";\n}\n.glyphicon-film:before {\n  content: \"\\e009\";\n}\n.glyphicon-th-large:before {\n  content: \"\\e010\";\n}\n.glyphicon-th:before {\n  content: \"\\e011\";\n}\n.glyphicon-th-list:before {\n  content: \"\\e012\";\n}\n.glyphicon-ok:before {\n  content: \"\\e013\";\n}\n.glyphicon-remove:before {\n  content: \"\\e014\";\n}\n.glyphicon-zoom-in:before {\n  content: \"\\e015\";\n}\n.glyphicon-zoom-out:before {\n  content: \"\\e016\";\n}\n.glyphicon-off:before {\n  content: \"\\e017\";\n}\n.glyphicon-signal:before {\n  content: \"\\e018\";\n}\n.glyphicon-cog:before {\n  content: \"\\e019\";\n}\n.glyphicon-trash:before {\n  content: \"\\e020\";\n}\n.glyphicon-home:before {\n  content: \"\\e021\";\n}\n.glyphicon-file:before {\n  content: \"\\e022\";\n}\n.glyphicon-time:before {\n  content: \"\\e023\";\n}\n.glyphicon-road:before {\n  content: \"\\e024\";\n}\n.glyphicon-download-alt:before {\n  content: \"\\e025\";\n}\n.glyphicon-download:before {\n  content: \"\\e026\";\n}\n.glyphicon-upload:before {\n  content: \"\\e027\";\n}\n.glyphicon-inbox:before {\n  content: \"\\e028\";\n}\n.glyphicon-play-circle:before {\n  content: \"\\e029\";\n}\n.glyphicon-repeat:before {\n  content: \"\\e030\";\n}\n.glyphicon-refresh:before {\n  content: \"\\e031\";\n}\n.glyphicon-list-alt:before {\n  content: \"\\e032\";\n}\n.glyphicon-lock:before {\n  content: \"\\e033\";\n}\n.glyphicon-flag:before {\n  content: \"\\e034\";\n}\n.glyphicon-headphones:before {\n  content: \"\\e035\";\n}\n.glyphicon-volume-off:before {\n  content: \"\\e036\";\n}\n.glyphicon-volume-down:before {\n  content: \"\\e037\";\n}\n.glyphicon-volume-up:before {\n  content: \"\\e038\";\n}\n.glyphicon-qrcode:before {\n  content: \"\\e039\";\n}\n.glyphicon-barcode:before {\n  content: \"\\e040\";\n}\n.glyphicon-tag:before {\n  content: \"\\e041\";\n}\n.glyphicon-tags:before {\n  content: \"\\e042\";\n}\n.glyphicon-book:before {\n  content: \"\\e043\";\n}\n.glyphicon-bookmark:before {\n  content: \"\\e044\";\n}\n.glyphicon-print:before {\n  content: \"\\e045\";\n}\n.glyphicon-camera:before {\n  content: \"\\e046\";\n}\n.glyphicon-font:before {\n  content: \"\\e047\";\n}\n.glyphicon-bold:before {\n  content: \"\\e048\";\n}\n.glyphicon-italic:before {\n  content: \"\\e049\";\n}\n.glyphicon-text-height:before {\n  content: \"\\e050\";\n}\n.glyphicon-text-width:before {\n  content: \"\\e051\";\n}\n.glyphicon-align-left:before {\n  content: \"\\e052\";\n}\n.glyphicon-align-center:before {\n  content: \"\\e053\";\n}\n.glyphicon-align-right:before {\n  content: \"\\e054\";\n}\n.glyphicon-align-justify:before {\n  content: \"\\e055\";\n}\n.glyphicon-list:before {\n  content: \"\\e056\";\n}\n.glyphicon-indent-left:before {\n  content: \"\\e057\";\n}\n.glyphicon-indent-right:before {\n  content: \"\\e058\";\n}\n.glyphicon-facetime-video:before {\n  content: \"\\e059\";\n}\n.glyphicon-picture:before {\n  content: \"\\e060\";\n}\n.glyphicon-map-marker:before {\n  content: \"\\e062\";\n}\n.glyphicon-adjust:before {\n  content: \"\\e063\";\n}\n.glyphicon-tint:before {\n  content: \"\\e064\";\n}\n.glyphicon-edit:before {\n  content: \"\\e065\";\n}\n.glyphicon-share:before {\n  content: \"\\e066\";\n}\n.glyphicon-check:before {\n  content: \"\\e067\";\n}\n.glyphicon-move:before {\n  content: \"\\e068\";\n}\n.glyphicon-step-backward:before {\n  content: \"\\e069\";\n}\n.glyphicon-fast-backward:before {\n  content: \"\\e070\";\n}\n.glyphicon-backward:before {\n  content: \"\\e071\";\n}\n.glyphicon-play:before {\n  content: \"\\e072\";\n}\n.glyphicon-pause:before {\n  content: \"\\e073\";\n}\n.glyphicon-stop:before {\n  content: \"\\e074\";\n}\n.glyphicon-forward:before {\n  content: \"\\e075\";\n}\n.glyphicon-fast-forward:before {\n  content: \"\\e076\";\n}\n.glyphicon-step-forward:before {\n  content: \"\\e077\";\n}\n.glyphicon-eject:before {\n  content: \"\\e078\";\n}\n.glyphicon-chevron-left:before {\n  content: \"\\e079\";\n}\n.glyphicon-chevron-right:before {\n  content: \"\\e080\";\n}\n.glyphicon-plus-sign:before {\n  content: \"\\e081\";\n}\n.glyphicon-minus-sign:before {\n  content: \"\\e082\";\n}\n.glyphicon-remove-sign:before {\n  content: \"\\e083\";\n}\n.glyphicon-ok-sign:before {\n  content: \"\\e084\";\n}\n.glyphicon-question-sign:before {\n  content: \"\\e085\";\n}\n.glyphicon-info-sign:before {\n  content: \"\\e086\";\n}\n.glyphicon-screenshot:before {\n  content: \"\\e087\";\n}\n.glyphicon-remove-circle:before {\n  content: \"\\e088\";\n}\n.glyphicon-ok-circle:before {\n  content: \"\\e089\";\n}\n.glyphicon-ban-circle:before {\n  content: \"\\e090\";\n}\n.glyphicon-arrow-left:before {\n  content: \"\\e091\";\n}\n.glyphicon-arrow-right:before {\n  content: \"\\e092\";\n}\n.glyphicon-arrow-up:before {\n  content: \"\\e093\";\n}\n.glyphicon-arrow-down:before {\n  content: \"\\e094\";\n}\n.glyphicon-share-alt:before {\n  content: \"\\e095\";\n}\n.glyphicon-resize-full:before {\n  content: \"\\e096\";\n}\n.glyphicon-resize-small:before {\n  content: \"\\e097\";\n}\n.glyphicon-exclamation-sign:before {\n  content: \"\\e101\";\n}\n.glyphicon-gift:before {\n  content: \"\\e102\";\n}\n.glyphicon-leaf:before {\n  content: \"\\e103\";\n}\n.glyphicon-fire:before {\n  content: \"\\e104\";\n}\n.glyphicon-eye-open:before {\n  content: \"\\e105\";\n}\n.glyphicon-eye-close:before {\n  content: \"\\e106\";\n}\n.glyphicon-warning-sign:before {\n  content: \"\\e107\";\n}\n.glyphicon-plane:before {\n  content: \"\\e108\";\n}\n.glyphicon-calendar:before {\n  content: \"\\e109\";\n}\n.glyphicon-random:before {\n  content: \"\\e110\";\n}\n.glyphicon-comment:before {\n  content: \"\\e111\";\n}\n.glyphicon-magnet:before {\n  content: \"\\e112\";\n}\n.glyphicon-chevron-up:before {\n  content: \"\\e113\";\n}\n.glyphicon-chevron-down:before {\n  content: \"\\e114\";\n}\n.glyphicon-retweet:before {\n  content: \"\\e115\";\n}\n.glyphicon-shopping-cart:before {\n  content: \"\\e116\";\n}\n.glyphicon-folder-close:before {\n  content: \"\\e117\";\n}\n.glyphicon-folder-open:before {\n  content: \"\\e118\";\n}\n.glyphicon-resize-vertical:before {\n  content: \"\\e119\";\n}\n.glyphicon-resize-horizontal:before {\n  content: \"\\e120\";\n}\n.glyphicon-hdd:before {\n  content: \"\\e121\";\n}\n.glyphicon-bullhorn:before {\n  content: \"\\e122\";\n}\n.glyphicon-bell:before {\n  content: \"\\e123\";\n}\n.glyphicon-certificate:before {\n  content: \"\\e124\";\n}\n.glyphicon-thumbs-up:before {\n  content: \"\\e125\";\n}\n.glyphicon-thumbs-down:before {\n  content: \"\\e126\";\n}\n.glyphicon-hand-right:before {\n  content: \"\\e127\";\n}\n.glyphicon-hand-left:before {\n  content: \"\\e128\";\n}\n.glyphicon-hand-up:before {\n  content: \"\\e129\";\n}\n.glyphicon-hand-down:before {\n  content: \"\\e130\";\n}\n.glyphicon-circle-arrow-right:before {\n  content: \"\\e131\";\n}\n.glyphicon-circle-arrow-left:before {\n  content: \"\\e132\";\n}\n.glyphicon-circle-arrow-up:before {\n  content: \"\\e133\";\n}\n.glyphicon-circle-arrow-down:before {\n  content: \"\\e134\";\n}\n.glyphicon-globe:before {\n  content: \"\\e135\";\n}\n.glyphicon-wrench:before {\n  content: \"\\e136\";\n}\n.glyphicon-tasks:before {\n  content: \"\\e137\";\n}\n.glyphicon-filter:before {\n  content: \"\\e138\";\n}\n.glyphicon-briefcase:before {\n  content: \"\\e139\";\n}\n.glyphicon-fullscreen:before {\n  content: \"\\e140\";\n}\n.glyphicon-dashboard:before {\n  content: \"\\e141\";\n}\n.glyphicon-paperclip:before {\n  content: \"\\e142\";\n}\n.glyphicon-heart-empty:before {\n  content: \"\\e143\";\n}\n.glyphicon-link:before {\n  content: \"\\e144\";\n}\n.glyphicon-phone:before {\n  content: \"\\e145\";\n}\n.glyphicon-pushpin:before {\n  content: \"\\e146\";\n}\n.glyphicon-usd:before {\n  content: \"\\e148\";\n}\n.glyphicon-gbp:before {\n  content: \"\\e149\";\n}\n.glyphicon-sort:before {\n  content: \"\\e150\";\n}\n.glyphicon-sort-by-alphabet:before {\n  content: \"\\e151\";\n}\n.glyphicon-sort-by-alphabet-alt:before {\n  content: \"\\e152\";\n}\n.glyphicon-sort-by-order:before {\n  content: \"\\e153\";\n}\n.glyphicon-sort-by-order-alt:before {\n  content: \"\\e154\";\n}\n.glyphicon-sort-by-attributes:before {\n  content: \"\\e155\";\n}\n.glyphicon-sort-by-attributes-alt:before {\n  content: \"\\e156\";\n}\n.glyphicon-unchecked:before {\n  content: \"\\e157\";\n}\n.glyphicon-expand:before {\n  content: \"\\e158\";\n}\n.glyphicon-collapse-down:before {\n  content: \"\\e159\";\n}\n.glyphicon-collapse-up:before {\n  content: \"\\e160\";\n}\n.glyphicon-log-in:before {\n  content: \"\\e161\";\n}\n.glyphicon-flash:before {\n  content: \"\\e162\";\n}\n.glyphicon-log-out:before {\n  content: \"\\e163\";\n}\n.glyphicon-new-window:before {\n  content: \"\\e164\";\n}\n.glyphicon-record:before {\n  content: \"\\e165\";\n}\n.glyphicon-save:before {\n  content: \"\\e166\";\n}\n.glyphicon-open:before {\n  content: \"\\e167\";\n}\n.glyphicon-saved:before {\n  content: \"\\e168\";\n}\n.glyphicon-import:before {\n  content: \"\\e169\";\n}\n.glyphicon-export:before {\n  content: \"\\e170\";\n}\n.glyphicon-send:before {\n  content: \"\\e171\";\n}\n.glyphicon-floppy-disk:before {\n  content: \"\\e172\";\n}\n.glyphicon-floppy-saved:before {\n  content: \"\\e173\";\n}\n.glyphicon-floppy-remove:before {\n  content: \"\\e174\";\n}\n.glyphicon-floppy-save:before {\n  content: \"\\e175\";\n}\n.glyphicon-floppy-open:before {\n  content: \"\\e176\";\n}\n.glyphicon-credit-card:before {\n  content: \"\\e177\";\n}\n.glyphicon-transfer:before {\n  content: \"\\e178\";\n}\n.glyphicon-cutlery:before {\n  content: \"\\e179\";\n}\n.glyphicon-header:before {\n  content: \"\\e180\";\n}\n.glyphicon-compressed:before {\n  content: \"\\e181\";\n}\n.glyphicon-earphone:before {\n  content: \"\\e182\";\n}\n.glyphicon-phone-alt:before {\n  content: \"\\e183\";\n}\n.glyphicon-tower:before {\n  content: \"\\e184\";\n}\n.glyphicon-stats:before {\n  content: \"\\e185\";\n}\n.glyphicon-sd-video:before {\n  content: \"\\e186\";\n}\n.glyphicon-hd-video:before {\n  content: \"\\e187\";\n}\n.glyphicon-subtitles:before {\n  content: \"\\e188\";\n}\n.glyphicon-sound-stereo:before {\n  content: \"\\e189\";\n}\n.glyphicon-sound-dolby:before {\n  content: \"\\e190\";\n}\n.glyphicon-sound-5-1:before {\n  content: \"\\e191\";\n}\n.glyphicon-sound-6-1:before {\n  content: \"\\e192\";\n}\n.glyphicon-sound-7-1:before {\n  content: \"\\e193\";\n}\n.glyphicon-copyright-mark:before {\n  content: \"\\e194\";\n}\n.glyphicon-registration-mark:before {\n  content: \"\\e195\";\n}\n.glyphicon-cloud-download:before {\n  content: \"\\e197\";\n}\n.glyphicon-cloud-upload:before {\n  content: \"\\e198\";\n}\n.glyphicon-tree-conifer:before {\n  content: \"\\e199\";\n}\n.glyphicon-tree-deciduous:before {\n  content: \"\\e200\";\n}\n.glyphicon-cd:before {\n  content: \"\\e201\";\n}\n.glyphicon-save-file:before {\n  content: \"\\e202\";\n}\n.glyphicon-open-file:before {\n  content: \"\\e203\";\n}\n.glyphicon-level-up:before {\n  content: \"\\e204\";\n}\n.glyphicon-copy:before {\n  content: \"\\e205\";\n}\n.glyphicon-paste:before {\n  content: \"\\e206\";\n}\n.glyphicon-alert:before {\n  content: \"\\e209\";\n}\n.glyphicon-equalizer:before {\n  content: \"\\e210\";\n}\n.glyphicon-king:before {\n  content: \"\\e211\";\n}\n.glyphicon-queen:before {\n  content: \"\\e212\";\n}\n.glyphicon-pawn:before {\n  content: \"\\e213\";\n}\n.glyphicon-bishop:before {\n  content: \"\\e214\";\n}\n.glyphicon-knight:before {\n  content: \"\\e215\";\n}\n.glyphicon-baby-formula:before {\n  content: \"\\e216\";\n}\n.glyphicon-tent:before {\n  content: \"\\26fa\";\n}\n.glyphicon-blackboard:before {\n  content: \"\\e218\";\n}\n.glyphicon-bed:before {\n  content: \"\\e219\";\n}\n.glyphicon-apple:before {\n  content: \"\\f8ff\";\n}\n.glyphicon-erase:before {\n  content: \"\\e221\";\n}\n.glyphicon-hourglass:before {\n  content: \"\\231b\";\n}\n.glyphicon-lamp:before {\n  content: \"\\e223\";\n}\n.glyphicon-duplicate:before {\n  content: \"\\e224\";\n}\n.glyphicon-piggy-bank:before {\n  content: \"\\e225\";\n}\n.glyphicon-scissors:before {\n  content: \"\\e226\";\n}\n.glyphicon-bitcoin:before {\n  content: \"\\e227\";\n}\n.glyphicon-btc:before {\n  content: \"\\e227\";\n}\n.glyphicon-xbt:before {\n  content: \"\\e227\";\n}\n.glyphicon-yen:before {\n  content: \"\\00a5\";\n}\n.glyphicon-jpy:before {\n  content: \"\\00a5\";\n}\n.glyphicon-ruble:before {\n  content: \"\\20bd\";\n}\n.glyphicon-rub:before {\n  content: \"\\20bd\";\n}\n.glyphicon-scale:before {\n  content: \"\\e230\";\n}\n.glyphicon-ice-lolly:before {\n  content: \"\\e231\";\n}\n.glyphicon-ice-lolly-tasted:before {\n  content: \"\\e232\";\n}\n.glyphicon-education:before {\n  content: \"\\e233\";\n}\n.glyphicon-option-horizontal:before {\n  content: \"\\e234\";\n}\n.glyphicon-option-vertical:before {\n  content: \"\\e235\";\n}\n.glyphicon-menu-hamburger:before {\n  content: \"\\e236\";\n}\n.glyphicon-modal-window:before {\n  content: \"\\e237\";\n}\n.glyphicon-oil:before {\n  content: \"\\e238\";\n}\n.glyphicon-grain:before {\n  content: \"\\e239\";\n}\n.glyphicon-sunglasses:before {\n  content: \"\\e240\";\n}\n.glyphicon-text-size:before {\n  content: \"\\e241\";\n}\n.glyphicon-text-color:before {\n  content: \"\\e242\";\n}\n.glyphicon-text-background:before {\n  content: \"\\e243\";\n}\n.glyphicon-object-align-top:before {\n  content: \"\\e244\";\n}\n.glyphicon-object-align-bottom:before {\n  content: \"\\e245\";\n}\n.glyphicon-object-align-horizontal:before {\n  content: \"\\e246\";\n}\n.glyphicon-object-align-left:before {\n  content: \"\\e247\";\n}\n.glyphicon-object-align-vertical:before {\n  content: \"\\e248\";\n}\n.glyphicon-object-align-right:before {\n  content: \"\\e249\";\n}\n.glyphicon-triangle-right:before {\n  content: \"\\e250\";\n}\n.glyphicon-triangle-left:before {\n  content: \"\\e251\";\n}\n.glyphicon-triangle-bottom:before {\n  content: \"\\e252\";\n}\n.glyphicon-triangle-top:before {\n  content: \"\\e253\";\n}\n.glyphicon-console:before {\n  content: \"\\e254\";\n}\n.glyphicon-superscript:before {\n  content: \"\\e255\";\n}\n.glyphicon-subscript:before {\n  content: \"\\e256\";\n}\n.glyphicon-menu-left:before {\n  content: \"\\e257\";\n}\n.glyphicon-menu-right:before {\n  content: \"\\e258\";\n}\n.glyphicon-menu-down:before {\n  content: \"\\e259\";\n}\n.glyphicon-menu-up:before {\n  content: \"\\e260\";\n}\n* {\n  -webkit-box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  box-sizing: border-box;\n}\n*:before,\n*:after {\n  -webkit-box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  box-sizing: border-box;\n}\nhtml {\n  font-size: 10px;\n  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\nbody {\n  font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n  font-size: 13px;\n  line-height: 1.42857143;\n  color: #000;\n  background-color: #fff;\n}\ninput,\nbutton,\nselect,\ntextarea {\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit;\n}\na {\n  color: #337ab7;\n  text-decoration: none;\n}\na:hover,\na:focus {\n  color: #23527c;\n  text-decoration: underline;\n}\na:focus {\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\nfigure {\n  margin: 0;\n}\nimg {\n  vertical-align: middle;\n}\n.img-responsive,\n.thumbnail > img,\n.thumbnail a > img,\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n  display: block;\n  max-width: 100%;\n  height: auto;\n}\n.img-rounded {\n  border-radius: 3px;\n}\n.img-thumbnail {\n  padding: 4px;\n  line-height: 1.42857143;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 2px;\n  -webkit-transition: all 0.2s ease-in-out;\n  -o-transition: all 0.2s ease-in-out;\n  transition: all 0.2s ease-in-out;\n  display: inline-block;\n  max-width: 100%;\n  height: auto;\n}\n.img-circle {\n  border-radius: 50%;\n}\nhr {\n  margin-top: 18px;\n  margin-bottom: 18px;\n  border: 0;\n  border-top: 1px solid #eeeeee;\n}\n.sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  border: 0;\n}\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n  position: static;\n  width: auto;\n  height: auto;\n  margin: 0;\n  overflow: visible;\n  clip: auto;\n}\n[role=\"button\"] {\n  cursor: pointer;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\n.h1,\n.h2,\n.h3,\n.h4,\n.h5,\n.h6 {\n  font-family: inherit;\n  font-weight: 500;\n  line-height: 1.1;\n  color: inherit;\n}\nh1 small,\nh2 small,\nh3 small,\nh4 small,\nh5 small,\nh6 small,\n.h1 small,\n.h2 small,\n.h3 small,\n.h4 small,\n.h5 small,\n.h6 small,\nh1 .small,\nh2 .small,\nh3 .small,\nh4 .small,\nh5 .small,\nh6 .small,\n.h1 .small,\n.h2 .small,\n.h3 .small,\n.h4 .small,\n.h5 .small,\n.h6 .small {\n  font-weight: normal;\n  line-height: 1;\n  color: #777777;\n}\nh1,\n.h1,\nh2,\n.h2,\nh3,\n.h3 {\n  margin-top: 18px;\n  margin-bottom: 9px;\n}\nh1 small,\n.h1 small,\nh2 small,\n.h2 small,\nh3 small,\n.h3 small,\nh1 .small,\n.h1 .small,\nh2 .small,\n.h2 .small,\nh3 .small,\n.h3 .small {\n  font-size: 65%;\n}\nh4,\n.h4,\nh5,\n.h5,\nh6,\n.h6 {\n  margin-top: 9px;\n  margin-bottom: 9px;\n}\nh4 small,\n.h4 small,\nh5 small,\n.h5 small,\nh6 small,\n.h6 small,\nh4 .small,\n.h4 .small,\nh5 .small,\n.h5 .small,\nh6 .small,\n.h6 .small {\n  font-size: 75%;\n}\nh1,\n.h1 {\n  font-size: 33px;\n}\nh2,\n.h2 {\n  font-size: 27px;\n}\nh3,\n.h3 {\n  font-size: 23px;\n}\nh4,\n.h4 {\n  font-size: 17px;\n}\nh5,\n.h5 {\n  font-size: 13px;\n}\nh6,\n.h6 {\n  font-size: 12px;\n}\np {\n  margin: 0 0 9px;\n}\n.lead {\n  margin-bottom: 18px;\n  font-size: 14px;\n  font-weight: 300;\n  line-height: 1.4;\n}\n@media (min-width: 768px) {\n  .lead {\n    font-size: 19.5px;\n  }\n}\nsmall,\n.small {\n  font-size: 92%;\n}\nmark,\n.mark {\n  background-color: #fcf8e3;\n  padding: .2em;\n}\n.text-left {\n  text-align: left;\n}\n.text-right {\n  text-align: right;\n}\n.text-center {\n  text-align: center;\n}\n.text-justify {\n  text-align: justify;\n}\n.text-nowrap {\n  white-space: nowrap;\n}\n.text-lowercase {\n  text-transform: lowercase;\n}\n.text-uppercase {\n  text-transform: uppercase;\n}\n.text-capitalize {\n  text-transform: capitalize;\n}\n.text-muted {\n  color: #777777;\n}\n.text-primary {\n  color: #337ab7;\n}\na.text-primary:hover,\na.text-primary:focus {\n  color: #286090;\n}\n.text-success {\n  color: #3c763d;\n}\na.text-success:hover,\na.text-success:focus {\n  color: #2b542c;\n}\n.text-info {\n  color: #31708f;\n}\na.text-info:hover,\na.text-info:focus {\n  color: #245269;\n}\n.text-warning {\n  color: #8a6d3b;\n}\na.text-warning:hover,\na.text-warning:focus {\n  color: #66512c;\n}\n.text-danger {\n  color: #a94442;\n}\na.text-danger:hover,\na.text-danger:focus {\n  color: #843534;\n}\n.bg-primary {\n  color: #fff;\n  background-color: #337ab7;\n}\na.bg-primary:hover,\na.bg-primary:focus {\n  background-color: #286090;\n}\n.bg-success {\n  background-color: #dff0d8;\n}\na.bg-success:hover,\na.bg-success:focus {\n  background-color: #c1e2b3;\n}\n.bg-info {\n  background-color: #d9edf7;\n}\na.bg-info:hover,\na.bg-info:focus {\n  background-color: #afd9ee;\n}\n.bg-warning {\n  background-color: #fcf8e3;\n}\na.bg-warning:hover,\na.bg-warning:focus {\n  background-color: #f7ecb5;\n}\n.bg-danger {\n  background-color: #f2dede;\n}\na.bg-danger:hover,\na.bg-danger:focus {\n  background-color: #e4b9b9;\n}\n.page-header {\n  padding-bottom: 8px;\n  margin: 36px 0 18px;\n  border-bottom: 1px solid #eeeeee;\n}\nul,\nol {\n  margin-top: 0;\n  margin-bottom: 9px;\n}\nul ul,\nol ul,\nul ol,\nol ol {\n  margin-bottom: 0;\n}\n.list-unstyled {\n  padding-left: 0;\n  list-style: none;\n}\n.list-inline {\n  padding-left: 0;\n  list-style: none;\n  margin-left: -5px;\n}\n.list-inline > li {\n  display: inline-block;\n  padding-left: 5px;\n  padding-right: 5px;\n}\ndl {\n  margin-top: 0;\n  margin-bottom: 18px;\n}\ndt,\ndd {\n  line-height: 1.42857143;\n}\ndt {\n  font-weight: bold;\n}\ndd {\n  margin-left: 0;\n}\n@media (min-width: 541px) {\n  .dl-horizontal dt {\n    float: left;\n    width: 160px;\n    clear: left;\n    text-align: right;\n    overflow: hidden;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n  }\n  .dl-horizontal dd {\n    margin-left: 180px;\n  }\n}\nabbr[title],\nabbr[data-original-title] {\n  cursor: help;\n  border-bottom: 1px dotted #777777;\n}\n.initialism {\n  font-size: 90%;\n  text-transform: uppercase;\n}\nblockquote {\n  padding: 9px 18px;\n  margin: 0 0 18px;\n  font-size: inherit;\n  border-left: 5px solid #eeeeee;\n}\nblockquote p:last-child,\nblockquote ul:last-child,\nblockquote ol:last-child {\n  margin-bottom: 0;\n}\nblockquote footer,\nblockquote small,\nblockquote .small {\n  display: block;\n  font-size: 80%;\n  line-height: 1.42857143;\n  color: #777777;\n}\nblockquote footer:before,\nblockquote small:before,\nblockquote .small:before {\n  content: '\\2014 \\00A0';\n}\n.blockquote-reverse,\nblockquote.pull-right {\n  padding-right: 15px;\n  padding-left: 0;\n  border-right: 5px solid #eeeeee;\n  border-left: 0;\n  text-align: right;\n}\n.blockquote-reverse footer:before,\nblockquote.pull-right footer:before,\n.blockquote-reverse small:before,\nblockquote.pull-right small:before,\n.blockquote-reverse .small:before,\nblockquote.pull-right .small:before {\n  content: '';\n}\n.blockquote-reverse footer:after,\nblockquote.pull-right footer:after,\n.blockquote-reverse small:after,\nblockquote.pull-right small:after,\n.blockquote-reverse .small:after,\nblockquote.pull-right .small:after {\n  content: '\\00A0 \\2014';\n}\naddress {\n  margin-bottom: 18px;\n  font-style: normal;\n  line-height: 1.42857143;\n}\ncode,\nkbd,\npre,\nsamp {\n  font-family: monospace;\n}\ncode {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: #c7254e;\n  background-color: #f9f2f4;\n  border-radius: 2px;\n}\nkbd {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: #888;\n  background-color: transparent;\n  border-radius: 1px;\n  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\nkbd kbd {\n  padding: 0;\n  font-size: 100%;\n  font-weight: bold;\n  box-shadow: none;\n}\npre {\n  display: block;\n  padding: 8.5px;\n  margin: 0 0 9px;\n  font-size: 12px;\n  line-height: 1.42857143;\n  word-break: break-all;\n  word-wrap: break-word;\n  color: #333333;\n  background-color: #f5f5f5;\n  border: 1px solid #ccc;\n  border-radius: 2px;\n}\npre code {\n  padding: 0;\n  font-size: inherit;\n  color: inherit;\n  white-space: pre-wrap;\n  background-color: transparent;\n  border-radius: 0;\n}\n.pre-scrollable {\n  max-height: 340px;\n  overflow-y: scroll;\n}\n.container {\n  margin-right: auto;\n  margin-left: auto;\n  padding-left: 0px;\n  padding-right: 0px;\n}\n@media (min-width: 768px) {\n  .container {\n    width: 768px;\n  }\n}\n@media (min-width: 992px) {\n  .container {\n    width: 940px;\n  }\n}\n@media (min-width: 1200px) {\n  .container {\n    width: 1140px;\n  }\n}\n.container-fluid {\n  margin-right: auto;\n  margin-left: auto;\n  padding-left: 0px;\n  padding-right: 0px;\n}\n.row {\n  margin-left: 0px;\n  margin-right: 0px;\n}\n.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {\n  position: relative;\n  min-height: 1px;\n  padding-left: 0px;\n  padding-right: 0px;\n}\n.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {\n  float: left;\n}\n.col-xs-12 {\n  width: 100%;\n}\n.col-xs-11 {\n  width: 91.66666667%;\n}\n.col-xs-10 {\n  width: 83.33333333%;\n}\n.col-xs-9 {\n  width: 75%;\n}\n.col-xs-8 {\n  width: 66.66666667%;\n}\n.col-xs-7 {\n  width: 58.33333333%;\n}\n.col-xs-6 {\n  width: 50%;\n}\n.col-xs-5 {\n  width: 41.66666667%;\n}\n.col-xs-4 {\n  width: 33.33333333%;\n}\n.col-xs-3 {\n  width: 25%;\n}\n.col-xs-2 {\n  width: 16.66666667%;\n}\n.col-xs-1 {\n  width: 8.33333333%;\n}\n.col-xs-pull-12 {\n  right: 100%;\n}\n.col-xs-pull-11 {\n  right: 91.66666667%;\n}\n.col-xs-pull-10 {\n  right: 83.33333333%;\n}\n.col-xs-pull-9 {\n  right: 75%;\n}\n.col-xs-pull-8 {\n  right: 66.66666667%;\n}\n.col-xs-pull-7 {\n  right: 58.33333333%;\n}\n.col-xs-pull-6 {\n  right: 50%;\n}\n.col-xs-pull-5 {\n  right: 41.66666667%;\n}\n.col-xs-pull-4 {\n  right: 33.33333333%;\n}\n.col-xs-pull-3 {\n  right: 25%;\n}\n.col-xs-pull-2 {\n  right: 16.66666667%;\n}\n.col-xs-pull-1 {\n  right: 8.33333333%;\n}\n.col-xs-pull-0 {\n  right: auto;\n}\n.col-xs-push-12 {\n  left: 100%;\n}\n.col-xs-push-11 {\n  left: 91.66666667%;\n}\n.col-xs-push-10 {\n  left: 83.33333333%;\n}\n.col-xs-push-9 {\n  left: 75%;\n}\n.col-xs-push-8 {\n  left: 66.66666667%;\n}\n.col-xs-push-7 {\n  left: 58.33333333%;\n}\n.col-xs-push-6 {\n  left: 50%;\n}\n.col-xs-push-5 {\n  left: 41.66666667%;\n}\n.col-xs-push-4 {\n  left: 33.33333333%;\n}\n.col-xs-push-3 {\n  left: 25%;\n}\n.col-xs-push-2 {\n  left: 16.66666667%;\n}\n.col-xs-push-1 {\n  left: 8.33333333%;\n}\n.col-xs-push-0 {\n  left: auto;\n}\n.col-xs-offset-12 {\n  margin-left: 100%;\n}\n.col-xs-offset-11 {\n  margin-left: 91.66666667%;\n}\n.col-xs-offset-10 {\n  margin-left: 83.33333333%;\n}\n.col-xs-offset-9 {\n  margin-left: 75%;\n}\n.col-xs-offset-8 {\n  margin-left: 66.66666667%;\n}\n.col-xs-offset-7 {\n  margin-left: 58.33333333%;\n}\n.col-xs-offset-6 {\n  margin-left: 50%;\n}\n.col-xs-offset-5 {\n  margin-left: 41.66666667%;\n}\n.col-xs-offset-4 {\n  margin-left: 33.33333333%;\n}\n.col-xs-offset-3 {\n  margin-left: 25%;\n}\n.col-xs-offset-2 {\n  margin-left: 16.66666667%;\n}\n.col-xs-offset-1 {\n  margin-left: 8.33333333%;\n}\n.col-xs-offset-0 {\n  margin-left: 0%;\n}\n@media (min-width: 768px) {\n  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {\n    float: left;\n  }\n  .col-sm-12 {\n    width: 100%;\n  }\n  .col-sm-11 {\n    width: 91.66666667%;\n  }\n  .col-sm-10 {\n    width: 83.33333333%;\n  }\n  .col-sm-9 {\n    width: 75%;\n  }\n  .col-sm-8 {\n    width: 66.66666667%;\n  }\n  .col-sm-7 {\n    width: 58.33333333%;\n  }\n  .col-sm-6 {\n    width: 50%;\n  }\n  .col-sm-5 {\n    width: 41.66666667%;\n  }\n  .col-sm-4 {\n    width: 33.33333333%;\n  }\n  .col-sm-3 {\n    width: 25%;\n  }\n  .col-sm-2 {\n    width: 16.66666667%;\n  }\n  .col-sm-1 {\n    width: 8.33333333%;\n  }\n  .col-sm-pull-12 {\n    right: 100%;\n  }\n  .col-sm-pull-11 {\n    right: 91.66666667%;\n  }\n  .col-sm-pull-10 {\n    right: 83.33333333%;\n  }\n  .col-sm-pull-9 {\n    right: 75%;\n  }\n  .col-sm-pull-8 {\n    right: 66.66666667%;\n  }\n  .col-sm-pull-7 {\n    right: 58.33333333%;\n  }\n  .col-sm-pull-6 {\n    right: 50%;\n  }\n  .col-sm-pull-5 {\n    right: 41.66666667%;\n  }\n  .col-sm-pull-4 {\n    right: 33.33333333%;\n  }\n  .col-sm-pull-3 {\n    right: 25%;\n  }\n  .col-sm-pull-2 {\n    right: 16.66666667%;\n  }\n  .col-sm-pull-1 {\n    right: 8.33333333%;\n  }\n  .col-sm-pull-0 {\n    right: auto;\n  }\n  .col-sm-push-12 {\n    left: 100%;\n  }\n  .col-sm-push-11 {\n    left: 91.66666667%;\n  }\n  .col-sm-push-10 {\n    left: 83.33333333%;\n  }\n  .col-sm-push-9 {\n    left: 75%;\n  }\n  .col-sm-push-8 {\n    left: 66.66666667%;\n  }\n  .col-sm-push-7 {\n    left: 58.33333333%;\n  }\n  .col-sm-push-6 {\n    left: 50%;\n  }\n  .col-sm-push-5 {\n    left: 41.66666667%;\n  }\n  .col-sm-push-4 {\n    left: 33.33333333%;\n  }\n  .col-sm-push-3 {\n    left: 25%;\n  }\n  .col-sm-push-2 {\n    left: 16.66666667%;\n  }\n  .col-sm-push-1 {\n    left: 8.33333333%;\n  }\n  .col-sm-push-0 {\n    left: auto;\n  }\n  .col-sm-offset-12 {\n    margin-left: 100%;\n  }\n  .col-sm-offset-11 {\n    margin-left: 91.66666667%;\n  }\n  .col-sm-offset-10 {\n    margin-left: 83.33333333%;\n  }\n  .col-sm-offset-9 {\n    margin-left: 75%;\n  }\n  .col-sm-offset-8 {\n    margin-left: 66.66666667%;\n  }\n  .col-sm-offset-7 {\n    margin-left: 58.33333333%;\n  }\n  .col-sm-offset-6 {\n    margin-left: 50%;\n  }\n  .col-sm-offset-5 {\n    margin-left: 41.66666667%;\n  }\n  .col-sm-offset-4 {\n    margin-left: 33.33333333%;\n  }\n  .col-sm-offset-3 {\n    margin-left: 25%;\n  }\n  .col-sm-offset-2 {\n    margin-left: 16.66666667%;\n  }\n  .col-sm-offset-1 {\n    margin-left: 8.33333333%;\n  }\n  .col-sm-offset-0 {\n    margin-left: 0%;\n  }\n}\n@media (min-width: 992px) {\n  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {\n    float: left;\n  }\n  .col-md-12 {\n    width: 100%;\n  }\n  .col-md-11 {\n    width: 91.66666667%;\n  }\n  .col-md-10 {\n    width: 83.33333333%;\n  }\n  .col-md-9 {\n    width: 75%;\n  }\n  .col-md-8 {\n    width: 66.66666667%;\n  }\n  .col-md-7 {\n    width: 58.33333333%;\n  }\n  .col-md-6 {\n    width: 50%;\n  }\n  .col-md-5 {\n    width: 41.66666667%;\n  }\n  .col-md-4 {\n    width: 33.33333333%;\n  }\n  .col-md-3 {\n    width: 25%;\n  }\n  .col-md-2 {\n    width: 16.66666667%;\n  }\n  .col-md-1 {\n    width: 8.33333333%;\n  }\n  .col-md-pull-12 {\n    right: 100%;\n  }\n  .col-md-pull-11 {\n    right: 91.66666667%;\n  }\n  .col-md-pull-10 {\n    right: 83.33333333%;\n  }\n  .col-md-pull-9 {\n    right: 75%;\n  }\n  .col-md-pull-8 {\n    right: 66.66666667%;\n  }\n  .col-md-pull-7 {\n    right: 58.33333333%;\n  }\n  .col-md-pull-6 {\n    right: 50%;\n  }\n  .col-md-pull-5 {\n    right: 41.66666667%;\n  }\n  .col-md-pull-4 {\n    right: 33.33333333%;\n  }\n  .col-md-pull-3 {\n    right: 25%;\n  }\n  .col-md-pull-2 {\n    right: 16.66666667%;\n  }\n  .col-md-pull-1 {\n    right: 8.33333333%;\n  }\n  .col-md-pull-0 {\n    right: auto;\n  }\n  .col-md-push-12 {\n    left: 100%;\n  }\n  .col-md-push-11 {\n    left: 91.66666667%;\n  }\n  .col-md-push-10 {\n    left: 83.33333333%;\n  }\n  .col-md-push-9 {\n    left: 75%;\n  }\n  .col-md-push-8 {\n    left: 66.66666667%;\n  }\n  .col-md-push-7 {\n    left: 58.33333333%;\n  }\n  .col-md-push-6 {\n    left: 50%;\n  }\n  .col-md-push-5 {\n    left: 41.66666667%;\n  }\n  .col-md-push-4 {\n    left: 33.33333333%;\n  }\n  .col-md-push-3 {\n    left: 25%;\n  }\n  .col-md-push-2 {\n    left: 16.66666667%;\n  }\n  .col-md-push-1 {\n    left: 8.33333333%;\n  }\n  .col-md-push-0 {\n    left: auto;\n  }\n  .col-md-offset-12 {\n    margin-left: 100%;\n  }\n  .col-md-offset-11 {\n    margin-left: 91.66666667%;\n  }\n  .col-md-offset-10 {\n    margin-left: 83.33333333%;\n  }\n  .col-md-offset-9 {\n    margin-left: 75%;\n  }\n  .col-md-offset-8 {\n    margin-left: 66.66666667%;\n  }\n  .col-md-offset-7 {\n    margin-left: 58.33333333%;\n  }\n  .col-md-offset-6 {\n    margin-left: 50%;\n  }\n  .col-md-offset-5 {\n    margin-left: 41.66666667%;\n  }\n  .col-md-offset-4 {\n    margin-left: 33.33333333%;\n  }\n  .col-md-offset-3 {\n    margin-left: 25%;\n  }\n  .col-md-offset-2 {\n    margin-left: 16.66666667%;\n  }\n  .col-md-offset-1 {\n    margin-left: 8.33333333%;\n  }\n  .col-md-offset-0 {\n    margin-left: 0%;\n  }\n}\n@media (min-width: 1200px) {\n  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {\n    float: left;\n  }\n  .col-lg-12 {\n    width: 100%;\n  }\n  .col-lg-11 {\n    width: 91.66666667%;\n  }\n  .col-lg-10 {\n    width: 83.33333333%;\n  }\n  .col-lg-9 {\n    width: 75%;\n  }\n  .col-lg-8 {\n    width: 66.66666667%;\n  }\n  .col-lg-7 {\n    width: 58.33333333%;\n  }\n  .col-lg-6 {\n    width: 50%;\n  }\n  .col-lg-5 {\n    width: 41.66666667%;\n  }\n  .col-lg-4 {\n    width: 33.33333333%;\n  }\n  .col-lg-3 {\n    width: 25%;\n  }\n  .col-lg-2 {\n    width: 16.66666667%;\n  }\n  .col-lg-1 {\n    width: 8.33333333%;\n  }\n  .col-lg-pull-12 {\n    right: 100%;\n  }\n  .col-lg-pull-11 {\n    right: 91.66666667%;\n  }\n  .col-lg-pull-10 {\n    right: 83.33333333%;\n  }\n  .col-lg-pull-9 {\n    right: 75%;\n  }\n  .col-lg-pull-8 {\n    right: 66.66666667%;\n  }\n  .col-lg-pull-7 {\n    right: 58.33333333%;\n  }\n  .col-lg-pull-6 {\n    right: 50%;\n  }\n  .col-lg-pull-5 {\n    right: 41.66666667%;\n  }\n  .col-lg-pull-4 {\n    right: 33.33333333%;\n  }\n  .col-lg-pull-3 {\n    right: 25%;\n  }\n  .col-lg-pull-2 {\n    right: 16.66666667%;\n  }\n  .col-lg-pull-1 {\n    right: 8.33333333%;\n  }\n  .col-lg-pull-0 {\n    right: auto;\n  }\n  .col-lg-push-12 {\n    left: 100%;\n  }\n  .col-lg-push-11 {\n    left: 91.66666667%;\n  }\n  .col-lg-push-10 {\n    left: 83.33333333%;\n  }\n  .col-lg-push-9 {\n    left: 75%;\n  }\n  .col-lg-push-8 {\n    left: 66.66666667%;\n  }\n  .col-lg-push-7 {\n    left: 58.33333333%;\n  }\n  .col-lg-push-6 {\n    left: 50%;\n  }\n  .col-lg-push-5 {\n    left: 41.66666667%;\n  }\n  .col-lg-push-4 {\n    left: 33.33333333%;\n  }\n  .col-lg-push-3 {\n    left: 25%;\n  }\n  .col-lg-push-2 {\n    left: 16.66666667%;\n  }\n  .col-lg-push-1 {\n    left: 8.33333333%;\n  }\n  .col-lg-push-0 {\n    left: auto;\n  }\n  .col-lg-offset-12 {\n    margin-left: 100%;\n  }\n  .col-lg-offset-11 {\n    margin-left: 91.66666667%;\n  }\n  .col-lg-offset-10 {\n    margin-left: 83.33333333%;\n  }\n  .col-lg-offset-9 {\n    margin-left: 75%;\n  }\n  .col-lg-offset-8 {\n    margin-left: 66.66666667%;\n  }\n  .col-lg-offset-7 {\n    margin-left: 58.33333333%;\n  }\n  .col-lg-offset-6 {\n    margin-left: 50%;\n  }\n  .col-lg-offset-5 {\n    margin-left: 41.66666667%;\n  }\n  .col-lg-offset-4 {\n    margin-left: 33.33333333%;\n  }\n  .col-lg-offset-3 {\n    margin-left: 25%;\n  }\n  .col-lg-offset-2 {\n    margin-left: 16.66666667%;\n  }\n  .col-lg-offset-1 {\n    margin-left: 8.33333333%;\n  }\n  .col-lg-offset-0 {\n    margin-left: 0%;\n  }\n}\ntable {\n  background-color: transparent;\n}\ncaption {\n  padding-top: 8px;\n  padding-bottom: 8px;\n  color: #777777;\n  text-align: left;\n}\nth {\n  text-align: left;\n}\n.table {\n  width: 100%;\n  max-width: 100%;\n  margin-bottom: 18px;\n}\n.table > thead > tr > th,\n.table > tbody > tr > th,\n.table > tfoot > tr > th,\n.table > thead > tr > td,\n.table > tbody > tr > td,\n.table > tfoot > tr > td {\n  padding: 8px;\n  line-height: 1.42857143;\n  vertical-align: top;\n  border-top: 1px solid #ddd;\n}\n.table > thead > tr > th {\n  vertical-align: bottom;\n  border-bottom: 2px solid #ddd;\n}\n.table > caption + thead > tr:first-child > th,\n.table > colgroup + thead > tr:first-child > th,\n.table > thead:first-child > tr:first-child > th,\n.table > caption + thead > tr:first-child > td,\n.table > colgroup + thead > tr:first-child > td,\n.table > thead:first-child > tr:first-child > td {\n  border-top: 0;\n}\n.table > tbody + tbody {\n  border-top: 2px solid #ddd;\n}\n.table .table {\n  background-color: #fff;\n}\n.table-condensed > thead > tr > th,\n.table-condensed > tbody > tr > th,\n.table-condensed > tfoot > tr > th,\n.table-condensed > thead > tr > td,\n.table-condensed > tbody > tr > td,\n.table-condensed > tfoot > tr > td {\n  padding: 5px;\n}\n.table-bordered {\n  border: 1px solid #ddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > tbody > tr > th,\n.table-bordered > tfoot > tr > th,\n.table-bordered > thead > tr > td,\n.table-bordered > tbody > tr > td,\n.table-bordered > tfoot > tr > td {\n  border: 1px solid #ddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > thead > tr > td {\n  border-bottom-width: 2px;\n}\n.table-striped > tbody > tr:nth-of-type(odd) {\n  background-color: #f9f9f9;\n}\n.table-hover > tbody > tr:hover {\n  background-color: #f5f5f5;\n}\ntable col[class*=\"col-\"] {\n  position: static;\n  float: none;\n  display: table-column;\n}\ntable td[class*=\"col-\"],\ntable th[class*=\"col-\"] {\n  position: static;\n  float: none;\n  display: table-cell;\n}\n.table > thead > tr > td.active,\n.table > tbody > tr > td.active,\n.table > tfoot > tr > td.active,\n.table > thead > tr > th.active,\n.table > tbody > tr > th.active,\n.table > tfoot > tr > th.active,\n.table > thead > tr.active > td,\n.table > tbody > tr.active > td,\n.table > tfoot > tr.active > td,\n.table > thead > tr.active > th,\n.table > tbody > tr.active > th,\n.table > tfoot > tr.active > th {\n  background-color: #f5f5f5;\n}\n.table-hover > tbody > tr > td.active:hover,\n.table-hover > tbody > tr > th.active:hover,\n.table-hover > tbody > tr.active:hover > td,\n.table-hover > tbody > tr:hover > .active,\n.table-hover > tbody > tr.active:hover > th {\n  background-color: #e8e8e8;\n}\n.table > thead > tr > td.success,\n.table > tbody > tr > td.success,\n.table > tfoot > tr > td.success,\n.table > thead > tr > th.success,\n.table > tbody > tr > th.success,\n.table > tfoot > tr > th.success,\n.table > thead > tr.success > td,\n.table > tbody > tr.success > td,\n.table > tfoot > tr.success > td,\n.table > thead > tr.success > th,\n.table > tbody > tr.success > th,\n.table > tfoot > tr.success > th {\n  background-color: #dff0d8;\n}\n.table-hover > tbody > tr > td.success:hover,\n.table-hover > tbody > tr > th.success:hover,\n.table-hover > tbody > tr.success:hover > td,\n.table-hover > tbody > tr:hover > .success,\n.table-hover > tbody > tr.success:hover > th {\n  background-color: #d0e9c6;\n}\n.table > thead > tr > td.info,\n.table > tbody > tr > td.info,\n.table > tfoot > tr > td.info,\n.table > thead > tr > th.info,\n.table > tbody > tr > th.info,\n.table > tfoot > tr > th.info,\n.table > thead > tr.info > td,\n.table > tbody > tr.info > td,\n.table > tfoot > tr.info > td,\n.table > thead > tr.info > th,\n.table > tbody > tr.info > th,\n.table > tfoot > tr.info > th {\n  background-color: #d9edf7;\n}\n.table-hover > tbody > tr > td.info:hover,\n.table-hover > tbody > tr > th.info:hover,\n.table-hover > tbody > tr.info:hover > td,\n.table-hover > tbody > tr:hover > .info,\n.table-hover > tbody > tr.info:hover > th {\n  background-color: #c4e3f3;\n}\n.table > thead > tr > td.warning,\n.table > tbody > tr > td.warning,\n.table > tfoot > tr > td.warning,\n.table > thead > tr > th.warning,\n.table > tbody > tr > th.warning,\n.table > tfoot > tr > th.warning,\n.table > thead > tr.warning > td,\n.table > tbody > tr.warning > td,\n.table > tfoot > tr.warning > td,\n.table > thead > tr.warning > th,\n.table > tbody > tr.warning > th,\n.table > tfoot > tr.warning > th {\n  background-color: #fcf8e3;\n}\n.table-hover > tbody > tr > td.warning:hover,\n.table-hover > tbody > tr > th.warning:hover,\n.table-hover > tbody > tr.warning:hover > td,\n.table-hover > tbody > tr:hover > .warning,\n.table-hover > tbody > tr.warning:hover > th {\n  background-color: #faf2cc;\n}\n.table > thead > tr > td.danger,\n.table > tbody > tr > td.danger,\n.table > tfoot > tr > td.danger,\n.table > thead > tr > th.danger,\n.table > tbody > tr > th.danger,\n.table > tfoot > tr > th.danger,\n.table > thead > tr.danger > td,\n.table > tbody > tr.danger > td,\n.table > tfoot > tr.danger > td,\n.table > thead > tr.danger > th,\n.table > tbody > tr.danger > th,\n.table > tfoot > tr.danger > th {\n  background-color: #f2dede;\n}\n.table-hover > tbody > tr > td.danger:hover,\n.table-hover > tbody > tr > th.danger:hover,\n.table-hover > tbody > tr.danger:hover > td,\n.table-hover > tbody > tr:hover > .danger,\n.table-hover > tbody > tr.danger:hover > th {\n  background-color: #ebcccc;\n}\n.table-responsive {\n  overflow-x: auto;\n  min-height: 0.01%;\n}\n@media screen and (max-width: 767px) {\n  .table-responsive {\n    width: 100%;\n    margin-bottom: 13.5px;\n    overflow-y: hidden;\n    -ms-overflow-style: -ms-autohiding-scrollbar;\n    border: 1px solid #ddd;\n  }\n  .table-responsive > .table {\n    margin-bottom: 0;\n  }\n  .table-responsive > .table > thead > tr > th,\n  .table-responsive > .table > tbody > tr > th,\n  .table-responsive > .table > tfoot > tr > th,\n  .table-responsive > .table > thead > tr > td,\n  .table-responsive > .table > tbody > tr > td,\n  .table-responsive > .table > tfoot > tr > td {\n    white-space: nowrap;\n  }\n  .table-responsive > .table-bordered {\n    border: 0;\n  }\n  .table-responsive > .table-bordered > thead > tr > th:first-child,\n  .table-responsive > .table-bordered > tbody > tr > th:first-child,\n  .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n  .table-responsive > .table-bordered > thead > tr > td:first-child,\n  .table-responsive > .table-bordered > tbody > tr > td:first-child,\n  .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n    border-left: 0;\n  }\n  .table-responsive > .table-bordered > thead > tr > th:last-child,\n  .table-responsive > .table-bordered > tbody > tr > th:last-child,\n  .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n  .table-responsive > .table-bordered > thead > tr > td:last-child,\n  .table-responsive > .table-bordered > tbody > tr > td:last-child,\n  .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n    border-right: 0;\n  }\n  .table-responsive > .table-bordered > tbody > tr:last-child > th,\n  .table-responsive > .table-bordered > tfoot > tr:last-child > th,\n  .table-responsive > .table-bordered > tbody > tr:last-child > td,\n  .table-responsive > .table-bordered > tfoot > tr:last-child > td {\n    border-bottom: 0;\n  }\n}\nfieldset {\n  padding: 0;\n  margin: 0;\n  border: 0;\n  min-width: 0;\n}\nlegend {\n  display: block;\n  width: 100%;\n  padding: 0;\n  margin-bottom: 18px;\n  font-size: 19.5px;\n  line-height: inherit;\n  color: #333333;\n  border: 0;\n  border-bottom: 1px solid #e5e5e5;\n}\nlabel {\n  display: inline-block;\n  max-width: 100%;\n  margin-bottom: 5px;\n  font-weight: bold;\n}\ninput[type=\"search\"] {\n  -webkit-box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  box-sizing: border-box;\n}\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n  margin: 4px 0 0;\n  margin-top: 1px \\9;\n  line-height: normal;\n}\ninput[type=\"file\"] {\n  display: block;\n}\ninput[type=\"range\"] {\n  display: block;\n  width: 100%;\n}\nselect[multiple],\nselect[size] {\n  height: auto;\n}\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\noutput {\n  display: block;\n  padding-top: 7px;\n  font-size: 13px;\n  line-height: 1.42857143;\n  color: #555555;\n}\n.form-control {\n  display: block;\n  width: 100%;\n  height: 32px;\n  padding: 6px 12px;\n  font-size: 13px;\n  line-height: 1.42857143;\n  color: #555555;\n  background-color: #fff;\n  background-image: none;\n  border: 1px solid #ccc;\n  border-radius: 2px;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n}\n.form-control:focus {\n  border-color: #66afe9;\n  outline: 0;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n}\n.form-control::-moz-placeholder {\n  color: #999;\n  opacity: 1;\n}\n.form-control:-ms-input-placeholder {\n  color: #999;\n}\n.form-control::-webkit-input-placeholder {\n  color: #999;\n}\n.form-control::-ms-expand {\n  border: 0;\n  background-color: transparent;\n}\n.form-control[disabled],\n.form-control[readonly],\nfieldset[disabled] .form-control {\n  background-color: #eeeeee;\n  opacity: 1;\n}\n.form-control[disabled],\nfieldset[disabled] .form-control {\n  cursor: not-allowed;\n}\ntextarea.form-control {\n  height: auto;\n}\ninput[type=\"search\"] {\n  -webkit-appearance: none;\n}\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n  input[type=\"date\"].form-control,\n  input[type=\"time\"].form-control,\n  input[type=\"datetime-local\"].form-control,\n  input[type=\"month\"].form-control {\n    line-height: 32px;\n  }\n  input[type=\"date\"].input-sm,\n  input[type=\"time\"].input-sm,\n  input[type=\"datetime-local\"].input-sm,\n  input[type=\"month\"].input-sm,\n  .input-group-sm input[type=\"date\"],\n  .input-group-sm input[type=\"time\"],\n  .input-group-sm input[type=\"datetime-local\"],\n  .input-group-sm input[type=\"month\"] {\n    line-height: 30px;\n  }\n  input[type=\"date\"].input-lg,\n  input[type=\"time\"].input-lg,\n  input[type=\"datetime-local\"].input-lg,\n  input[type=\"month\"].input-lg,\n  .input-group-lg input[type=\"date\"],\n  .input-group-lg input[type=\"time\"],\n  .input-group-lg input[type=\"datetime-local\"],\n  .input-group-lg input[type=\"month\"] {\n    line-height: 45px;\n  }\n}\n.form-group {\n  margin-bottom: 15px;\n}\n.radio,\n.checkbox {\n  position: relative;\n  display: block;\n  margin-top: 10px;\n  margin-bottom: 10px;\n}\n.radio label,\n.checkbox label {\n  min-height: 18px;\n  padding-left: 20px;\n  margin-bottom: 0;\n  font-weight: normal;\n  cursor: pointer;\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n  position: absolute;\n  margin-left: -20px;\n  margin-top: 4px \\9;\n}\n.radio + .radio,\n.checkbox + .checkbox {\n  margin-top: -5px;\n}\n.radio-inline,\n.checkbox-inline {\n  position: relative;\n  display: inline-block;\n  padding-left: 20px;\n  margin-bottom: 0;\n  vertical-align: middle;\n  font-weight: normal;\n  cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n  margin-top: 0;\n  margin-left: 10px;\n}\ninput[type=\"radio\"][disabled],\ninput[type=\"checkbox\"][disabled],\ninput[type=\"radio\"].disabled,\ninput[type=\"checkbox\"].disabled,\nfieldset[disabled] input[type=\"radio\"],\nfieldset[disabled] input[type=\"checkbox\"] {\n  cursor: not-allowed;\n}\n.radio-inline.disabled,\n.checkbox-inline.disabled,\nfieldset[disabled] .radio-inline,\nfieldset[disabled] .checkbox-inline {\n  cursor: not-allowed;\n}\n.radio.disabled label,\n.checkbox.disabled label,\nfieldset[disabled] .radio label,\nfieldset[disabled] .checkbox label {\n  cursor: not-allowed;\n}\n.form-control-static {\n  padding-top: 7px;\n  padding-bottom: 7px;\n  margin-bottom: 0;\n  min-height: 31px;\n}\n.form-control-static.input-lg,\n.form-control-static.input-sm {\n  padding-left: 0;\n  padding-right: 0;\n}\n.input-sm {\n  height: 30px;\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 1px;\n}\nselect.input-sm {\n  height: 30px;\n  line-height: 30px;\n}\ntextarea.input-sm,\nselect[multiple].input-sm {\n  height: auto;\n}\n.form-group-sm .form-control {\n  height: 30px;\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 1px;\n}\n.form-group-sm select.form-control {\n  height: 30px;\n  line-height: 30px;\n}\n.form-group-sm textarea.form-control,\n.form-group-sm select[multiple].form-control {\n  height: auto;\n}\n.form-group-sm .form-control-static {\n  height: 30px;\n  min-height: 30px;\n  padding: 6px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n}\n.input-lg {\n  height: 45px;\n  padding: 10px 16px;\n  font-size: 17px;\n  line-height: 1.3333333;\n  border-radius: 3px;\n}\nselect.input-lg {\n  height: 45px;\n  line-height: 45px;\n}\ntextarea.input-lg,\nselect[multiple].input-lg {\n  height: auto;\n}\n.form-group-lg .form-control {\n  height: 45px;\n  padding: 10px 16px;\n  font-size: 17px;\n  line-height: 1.3333333;\n  border-radius: 3px;\n}\n.form-group-lg select.form-control {\n  height: 45px;\n  line-height: 45px;\n}\n.form-group-lg textarea.form-control,\n.form-group-lg select[multiple].form-control {\n  height: auto;\n}\n.form-group-lg .form-control-static {\n  height: 45px;\n  min-height: 35px;\n  padding: 11px 16px;\n  font-size: 17px;\n  line-height: 1.3333333;\n}\n.has-feedback {\n  position: relative;\n}\n.has-feedback .form-control {\n  padding-right: 40px;\n}\n.form-control-feedback {\n  position: absolute;\n  top: 0;\n  right: 0;\n  z-index: 2;\n  display: block;\n  width: 32px;\n  height: 32px;\n  line-height: 32px;\n  text-align: center;\n  pointer-events: none;\n}\n.input-lg + .form-control-feedback,\n.input-group-lg + .form-control-feedback,\n.form-group-lg .form-control + .form-control-feedback {\n  width: 45px;\n  height: 45px;\n  line-height: 45px;\n}\n.input-sm + .form-control-feedback,\n.input-group-sm + .form-control-feedback,\n.form-group-sm .form-control + .form-control-feedback {\n  width: 30px;\n  height: 30px;\n  line-height: 30px;\n}\n.has-success .help-block,\n.has-success .control-label,\n.has-success .radio,\n.has-success .checkbox,\n.has-success .radio-inline,\n.has-success .checkbox-inline,\n.has-success.radio label,\n.has-success.checkbox label,\n.has-success.radio-inline label,\n.has-success.checkbox-inline label {\n  color: #3c763d;\n}\n.has-success .form-control {\n  border-color: #3c763d;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-success .form-control:focus {\n  border-color: #2b542c;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n}\n.has-success .input-group-addon {\n  color: #3c763d;\n  border-color: #3c763d;\n  background-color: #dff0d8;\n}\n.has-success .form-control-feedback {\n  color: #3c763d;\n}\n.has-warning .help-block,\n.has-warning .control-label,\n.has-warning .radio,\n.has-warning .checkbox,\n.has-warning .radio-inline,\n.has-warning .checkbox-inline,\n.has-warning.radio label,\n.has-warning.checkbox label,\n.has-warning.radio-inline label,\n.has-warning.checkbox-inline label {\n  color: #8a6d3b;\n}\n.has-warning .form-control {\n  border-color: #8a6d3b;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-warning .form-control:focus {\n  border-color: #66512c;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n}\n.has-warning .input-group-addon {\n  color: #8a6d3b;\n  border-color: #8a6d3b;\n  background-color: #fcf8e3;\n}\n.has-warning .form-control-feedback {\n  color: #8a6d3b;\n}\n.has-error .help-block,\n.has-error .control-label,\n.has-error .radio,\n.has-error .checkbox,\n.has-error .radio-inline,\n.has-error .checkbox-inline,\n.has-error.radio label,\n.has-error.checkbox label,\n.has-error.radio-inline label,\n.has-error.checkbox-inline label {\n  color: #a94442;\n}\n.has-error .form-control {\n  border-color: #a94442;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-error .form-control:focus {\n  border-color: #843534;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n}\n.has-error .input-group-addon {\n  color: #a94442;\n  border-color: #a94442;\n  background-color: #f2dede;\n}\n.has-error .form-control-feedback {\n  color: #a94442;\n}\n.has-feedback label ~ .form-control-feedback {\n  top: 23px;\n}\n.has-feedback label.sr-only ~ .form-control-feedback {\n  top: 0;\n}\n.help-block {\n  display: block;\n  margin-top: 5px;\n  margin-bottom: 10px;\n  color: #404040;\n}\n@media (min-width: 768px) {\n  .form-inline .form-group {\n    display: inline-block;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .form-inline .form-control {\n    display: inline-block;\n    width: auto;\n    vertical-align: middle;\n  }\n  .form-inline .form-control-static {\n    display: inline-block;\n  }\n  .form-inline .input-group {\n    display: inline-table;\n    vertical-align: middle;\n  }\n  .form-inline .input-group .input-group-addon,\n  .form-inline .input-group .input-group-btn,\n  .form-inline .input-group .form-control {\n    width: auto;\n  }\n  .form-inline .input-group > .form-control {\n    width: 100%;\n  }\n  .form-inline .control-label {\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .form-inline .radio,\n  .form-inline .checkbox {\n    display: inline-block;\n    margin-top: 0;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .form-inline .radio label,\n  .form-inline .checkbox label {\n    padding-left: 0;\n  }\n  .form-inline .radio input[type=\"radio\"],\n  .form-inline .checkbox input[type=\"checkbox\"] {\n    position: relative;\n    margin-left: 0;\n  }\n  .form-inline .has-feedback .form-control-feedback {\n    top: 0;\n  }\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox,\n.form-horizontal .radio-inline,\n.form-horizontal .checkbox-inline {\n  margin-top: 0;\n  margin-bottom: 0;\n  padding-top: 7px;\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox {\n  min-height: 25px;\n}\n.form-horizontal .form-group {\n  margin-left: 0px;\n  margin-right: 0px;\n}\n@media (min-width: 768px) {\n  .form-horizontal .control-label {\n    text-align: right;\n    margin-bottom: 0;\n    padding-top: 7px;\n  }\n}\n.form-horizontal .has-feedback .form-control-feedback {\n  right: 0px;\n}\n@media (min-width: 768px) {\n  .form-horizontal .form-group-lg .control-label {\n    padding-top: 11px;\n    font-size: 17px;\n  }\n}\n@media (min-width: 768px) {\n  .form-horizontal .form-group-sm .control-label {\n    padding-top: 6px;\n    font-size: 12px;\n  }\n}\n.btn {\n  display: inline-block;\n  margin-bottom: 0;\n  font-weight: normal;\n  text-align: center;\n  vertical-align: middle;\n  touch-action: manipulation;\n  cursor: pointer;\n  background-image: none;\n  border: 1px solid transparent;\n  white-space: nowrap;\n  padding: 6px 12px;\n  font-size: 13px;\n  line-height: 1.42857143;\n  border-radius: 2px;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n.btn:focus,\n.btn:active:focus,\n.btn.active:focus,\n.btn.focus,\n.btn:active.focus,\n.btn.active.focus {\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\n.btn:hover,\n.btn:focus,\n.btn.focus {\n  color: #333;\n  text-decoration: none;\n}\n.btn:active,\n.btn.active {\n  outline: 0;\n  background-image: none;\n  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn.disabled,\n.btn[disabled],\nfieldset[disabled] .btn {\n  cursor: not-allowed;\n  opacity: 0.65;\n  filter: alpha(opacity=65);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\na.btn.disabled,\nfieldset[disabled] a.btn {\n  pointer-events: none;\n}\n.btn-default {\n  color: #333;\n  background-color: #fff;\n  border-color: #ccc;\n}\n.btn-default:focus,\n.btn-default.focus {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #8c8c8c;\n}\n.btn-default:hover {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #adadad;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #adadad;\n}\n.btn-default:active:hover,\n.btn-default.active:hover,\n.open > .dropdown-toggle.btn-default:hover,\n.btn-default:active:focus,\n.btn-default.active:focus,\n.open > .dropdown-toggle.btn-default:focus,\n.btn-default:active.focus,\n.btn-default.active.focus,\n.open > .dropdown-toggle.btn-default.focus {\n  color: #333;\n  background-color: #d4d4d4;\n  border-color: #8c8c8c;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n  background-image: none;\n}\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus {\n  background-color: #fff;\n  border-color: #ccc;\n}\n.btn-default .badge {\n  color: #fff;\n  background-color: #333;\n}\n.btn-primary {\n  color: #fff;\n  background-color: #337ab7;\n  border-color: #2e6da4;\n}\n.btn-primary:focus,\n.btn-primary.focus {\n  color: #fff;\n  background-color: #286090;\n  border-color: #122b40;\n}\n.btn-primary:hover {\n  color: #fff;\n  background-color: #286090;\n  border-color: #204d74;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n  color: #fff;\n  background-color: #286090;\n  border-color: #204d74;\n}\n.btn-primary:active:hover,\n.btn-primary.active:hover,\n.open > .dropdown-toggle.btn-primary:hover,\n.btn-primary:active:focus,\n.btn-primary.active:focus,\n.open > .dropdown-toggle.btn-primary:focus,\n.btn-primary:active.focus,\n.btn-primary.active.focus,\n.open > .dropdown-toggle.btn-primary.focus {\n  color: #fff;\n  background-color: #204d74;\n  border-color: #122b40;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n  background-image: none;\n}\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus {\n  background-color: #337ab7;\n  border-color: #2e6da4;\n}\n.btn-primary .badge {\n  color: #337ab7;\n  background-color: #fff;\n}\n.btn-success {\n  color: #fff;\n  background-color: #5cb85c;\n  border-color: #4cae4c;\n}\n.btn-success:focus,\n.btn-success.focus {\n  color: #fff;\n  background-color: #449d44;\n  border-color: #255625;\n}\n.btn-success:hover {\n  color: #fff;\n  background-color: #449d44;\n  border-color: #398439;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n  color: #fff;\n  background-color: #449d44;\n  border-color: #398439;\n}\n.btn-success:active:hover,\n.btn-success.active:hover,\n.open > .dropdown-toggle.btn-success:hover,\n.btn-success:active:focus,\n.btn-success.active:focus,\n.open > .dropdown-toggle.btn-success:focus,\n.btn-success:active.focus,\n.btn-success.active.focus,\n.open > .dropdown-toggle.btn-success.focus {\n  color: #fff;\n  background-color: #398439;\n  border-color: #255625;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n  background-image: none;\n}\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus {\n  background-color: #5cb85c;\n  border-color: #4cae4c;\n}\n.btn-success .badge {\n  color: #5cb85c;\n  background-color: #fff;\n}\n.btn-info {\n  color: #fff;\n  background-color: #5bc0de;\n  border-color: #46b8da;\n}\n.btn-info:focus,\n.btn-info.focus {\n  color: #fff;\n  background-color: #31b0d5;\n  border-color: #1b6d85;\n}\n.btn-info:hover {\n  color: #fff;\n  background-color: #31b0d5;\n  border-color: #269abc;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n  color: #fff;\n  background-color: #31b0d5;\n  border-color: #269abc;\n}\n.btn-info:active:hover,\n.btn-info.active:hover,\n.open > .dropdown-toggle.btn-info:hover,\n.btn-info:active:focus,\n.btn-info.active:focus,\n.open > .dropdown-toggle.btn-info:focus,\n.btn-info:active.focus,\n.btn-info.active.focus,\n.open > .dropdown-toggle.btn-info.focus {\n  color: #fff;\n  background-color: #269abc;\n  border-color: #1b6d85;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n  background-image: none;\n}\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus {\n  background-color: #5bc0de;\n  border-color: #46b8da;\n}\n.btn-info .badge {\n  color: #5bc0de;\n  background-color: #fff;\n}\n.btn-warning {\n  color: #fff;\n  background-color: #f0ad4e;\n  border-color: #eea236;\n}\n.btn-warning:focus,\n.btn-warning.focus {\n  color: #fff;\n  background-color: #ec971f;\n  border-color: #985f0d;\n}\n.btn-warning:hover {\n  color: #fff;\n  background-color: #ec971f;\n  border-color: #d58512;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n  color: #fff;\n  background-color: #ec971f;\n  border-color: #d58512;\n}\n.btn-warning:active:hover,\n.btn-warning.active:hover,\n.open > .dropdown-toggle.btn-warning:hover,\n.btn-warning:active:focus,\n.btn-warning.active:focus,\n.open > .dropdown-toggle.btn-warning:focus,\n.btn-warning:active.focus,\n.btn-warning.active.focus,\n.open > .dropdown-toggle.btn-warning.focus {\n  color: #fff;\n  background-color: #d58512;\n  border-color: #985f0d;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n  background-image: none;\n}\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus {\n  background-color: #f0ad4e;\n  border-color: #eea236;\n}\n.btn-warning .badge {\n  color: #f0ad4e;\n  background-color: #fff;\n}\n.btn-danger {\n  color: #fff;\n  background-color: #d9534f;\n  border-color: #d43f3a;\n}\n.btn-danger:focus,\n.btn-danger.focus {\n  color: #fff;\n  background-color: #c9302c;\n  border-color: #761c19;\n}\n.btn-danger:hover {\n  color: #fff;\n  background-color: #c9302c;\n  border-color: #ac2925;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n  color: #fff;\n  background-color: #c9302c;\n  border-color: #ac2925;\n}\n.btn-danger:active:hover,\n.btn-danger.active:hover,\n.open > .dropdown-toggle.btn-danger:hover,\n.btn-danger:active:focus,\n.btn-danger.active:focus,\n.open > .dropdown-toggle.btn-danger:focus,\n.btn-danger:active.focus,\n.btn-danger.active.focus,\n.open > .dropdown-toggle.btn-danger.focus {\n  color: #fff;\n  background-color: #ac2925;\n  border-color: #761c19;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n  background-image: none;\n}\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus {\n  background-color: #d9534f;\n  border-color: #d43f3a;\n}\n.btn-danger .badge {\n  color: #d9534f;\n  background-color: #fff;\n}\n.btn-link {\n  color: #337ab7;\n  font-weight: normal;\n  border-radius: 0;\n}\n.btn-link,\n.btn-link:active,\n.btn-link.active,\n.btn-link[disabled],\nfieldset[disabled] .btn-link {\n  background-color: transparent;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.btn-link,\n.btn-link:hover,\n.btn-link:focus,\n.btn-link:active {\n  border-color: transparent;\n}\n.btn-link:hover,\n.btn-link:focus {\n  color: #23527c;\n  text-decoration: underline;\n  background-color: transparent;\n}\n.btn-link[disabled]:hover,\nfieldset[disabled] .btn-link:hover,\n.btn-link[disabled]:focus,\nfieldset[disabled] .btn-link:focus {\n  color: #777777;\n  text-decoration: none;\n}\n.btn-lg,\n.btn-group-lg > .btn {\n  padding: 10px 16px;\n  font-size: 17px;\n  line-height: 1.3333333;\n  border-radius: 3px;\n}\n.btn-sm,\n.btn-group-sm > .btn {\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 1px;\n}\n.btn-xs,\n.btn-group-xs > .btn {\n  padding: 1px 5px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 1px;\n}\n.btn-block {\n  display: block;\n  width: 100%;\n}\n.btn-block + .btn-block {\n  margin-top: 5px;\n}\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n  width: 100%;\n}\n.fade {\n  opacity: 0;\n  -webkit-transition: opacity 0.15s linear;\n  -o-transition: opacity 0.15s linear;\n  transition: opacity 0.15s linear;\n}\n.fade.in {\n  opacity: 1;\n}\n.collapse {\n  display: none;\n}\n.collapse.in {\n  display: block;\n}\ntr.collapse.in {\n  display: table-row;\n}\ntbody.collapse.in {\n  display: table-row-group;\n}\n.collapsing {\n  position: relative;\n  height: 0;\n  overflow: hidden;\n  -webkit-transition-property: height, visibility;\n  transition-property: height, visibility;\n  -webkit-transition-duration: 0.35s;\n  transition-duration: 0.35s;\n  -webkit-transition-timing-function: ease;\n  transition-timing-function: ease;\n}\n.caret {\n  display: inline-block;\n  width: 0;\n  height: 0;\n  margin-left: 2px;\n  vertical-align: middle;\n  border-top: 4px dashed;\n  border-top: 4px solid \\9;\n  border-right: 4px solid transparent;\n  border-left: 4px solid transparent;\n}\n.dropup,\n.dropdown {\n  position: relative;\n}\n.dropdown-toggle:focus {\n  outline: 0;\n}\n.dropdown-menu {\n  position: absolute;\n  top: 100%;\n  left: 0;\n  z-index: 1000;\n  display: none;\n  float: left;\n  min-width: 160px;\n  padding: 5px 0;\n  margin: 2px 0 0;\n  list-style: none;\n  font-size: 13px;\n  text-align: left;\n  background-color: #fff;\n  border: 1px solid #ccc;\n  border: 1px solid rgba(0, 0, 0, 0.15);\n  border-radius: 2px;\n  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n  background-clip: padding-box;\n}\n.dropdown-menu.pull-right {\n  right: 0;\n  left: auto;\n}\n.dropdown-menu .divider {\n  height: 1px;\n  margin: 8px 0;\n  overflow: hidden;\n  background-color: #e5e5e5;\n}\n.dropdown-menu > li > a {\n  display: block;\n  padding: 3px 20px;\n  clear: both;\n  font-weight: normal;\n  line-height: 1.42857143;\n  color: #333333;\n  white-space: nowrap;\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n  text-decoration: none;\n  color: #262626;\n  background-color: #f5f5f5;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n  color: #fff;\n  text-decoration: none;\n  outline: 0;\n  background-color: #337ab7;\n}\n.dropdown-menu > .disabled > a,\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n  color: #777777;\n}\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n  text-decoration: none;\n  background-color: transparent;\n  background-image: none;\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  cursor: not-allowed;\n}\n.open > .dropdown-menu {\n  display: block;\n}\n.open > a {\n  outline: 0;\n}\n.dropdown-menu-right {\n  left: auto;\n  right: 0;\n}\n.dropdown-menu-left {\n  left: 0;\n  right: auto;\n}\n.dropdown-header {\n  display: block;\n  padding: 3px 20px;\n  font-size: 12px;\n  line-height: 1.42857143;\n  color: #777777;\n  white-space: nowrap;\n}\n.dropdown-backdrop {\n  position: fixed;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  top: 0;\n  z-index: 990;\n}\n.pull-right > .dropdown-menu {\n  right: 0;\n  left: auto;\n}\n.dropup .caret,\n.navbar-fixed-bottom .dropdown .caret {\n  border-top: 0;\n  border-bottom: 4px dashed;\n  border-bottom: 4px solid \\9;\n  content: \"\";\n}\n.dropup .dropdown-menu,\n.navbar-fixed-bottom .dropdown .dropdown-menu {\n  top: auto;\n  bottom: 100%;\n  margin-bottom: 2px;\n}\n@media (min-width: 541px) {\n  .navbar-right .dropdown-menu {\n    left: auto;\n    right: 0;\n  }\n  .navbar-right .dropdown-menu-left {\n    left: 0;\n    right: auto;\n  }\n}\n.btn-group,\n.btn-group-vertical {\n  position: relative;\n  display: inline-block;\n  vertical-align: middle;\n}\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n  position: relative;\n  float: left;\n}\n.btn-group > .btn:hover,\n.btn-group-vertical > .btn:hover,\n.btn-group > .btn:focus,\n.btn-group-vertical > .btn:focus,\n.btn-group > .btn:active,\n.btn-group-vertical > .btn:active,\n.btn-group > .btn.active,\n.btn-group-vertical > .btn.active {\n  z-index: 2;\n}\n.btn-group .btn + .btn,\n.btn-group .btn + .btn-group,\n.btn-group .btn-group + .btn,\n.btn-group .btn-group + .btn-group {\n  margin-left: -1px;\n}\n.btn-toolbar {\n  margin-left: -5px;\n}\n.btn-toolbar .btn,\n.btn-toolbar .btn-group,\n.btn-toolbar .input-group {\n  float: left;\n}\n.btn-toolbar > .btn,\n.btn-toolbar > .btn-group,\n.btn-toolbar > .input-group {\n  margin-left: 5px;\n}\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n  border-radius: 0;\n}\n.btn-group > .btn:first-child {\n  margin-left: 0;\n}\n.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\n  border-bottom-right-radius: 0;\n  border-top-right-radius: 0;\n}\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n  border-bottom-left-radius: 0;\n  border-top-left-radius: 0;\n}\n.btn-group > .btn-group {\n  float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n  border-bottom-right-radius: 0;\n  border-top-right-radius: 0;\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  border-bottom-left-radius: 0;\n  border-top-left-radius: 0;\n}\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n  outline: 0;\n}\n.btn-group > .btn + .dropdown-toggle {\n  padding-left: 8px;\n  padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n  padding-left: 12px;\n  padding-right: 12px;\n}\n.btn-group.open .dropdown-toggle {\n  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-group.open .dropdown-toggle.btn-link {\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.btn .caret {\n  margin-left: 0;\n}\n.btn-lg .caret {\n  border-width: 5px 5px 0;\n  border-bottom-width: 0;\n}\n.dropup .btn-lg .caret {\n  border-width: 0 5px 5px;\n}\n.btn-group-vertical > .btn,\n.btn-group-vertical > .btn-group,\n.btn-group-vertical > .btn-group > .btn {\n  display: block;\n  float: none;\n  width: 100%;\n  max-width: 100%;\n}\n.btn-group-vertical > .btn-group > .btn {\n  float: none;\n}\n.btn-group-vertical > .btn + .btn,\n.btn-group-vertical > .btn + .btn-group,\n.btn-group-vertical > .btn-group + .btn,\n.btn-group-vertical > .btn-group + .btn-group {\n  margin-top: -1px;\n  margin-left: 0;\n}\n.btn-group-vertical > .btn:not(:first-child):not(:last-child) {\n  border-radius: 0;\n}\n.btn-group-vertical > .btn:first-child:not(:last-child) {\n  border-top-right-radius: 2px;\n  border-top-left-radius: 2px;\n  border-bottom-right-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn:last-child:not(:first-child) {\n  border-top-right-radius: 0;\n  border-top-left-radius: 0;\n  border-bottom-right-radius: 2px;\n  border-bottom-left-radius: 2px;\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n  border-bottom-right-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  border-top-right-radius: 0;\n  border-top-left-radius: 0;\n}\n.btn-group-justified {\n  display: table;\n  width: 100%;\n  table-layout: fixed;\n  border-collapse: separate;\n}\n.btn-group-justified > .btn,\n.btn-group-justified > .btn-group {\n  float: none;\n  display: table-cell;\n  width: 1%;\n}\n.btn-group-justified > .btn-group .btn {\n  width: 100%;\n}\n.btn-group-justified > .btn-group .dropdown-menu {\n  left: auto;\n}\n[data-toggle=\"buttons\"] > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn input[type=\"checkbox\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"checkbox\"] {\n  position: absolute;\n  clip: rect(0, 0, 0, 0);\n  pointer-events: none;\n}\n.input-group {\n  position: relative;\n  display: table;\n  border-collapse: separate;\n}\n.input-group[class*=\"col-\"] {\n  float: none;\n  padding-left: 0;\n  padding-right: 0;\n}\n.input-group .form-control {\n  position: relative;\n  z-index: 2;\n  float: left;\n  width: 100%;\n  margin-bottom: 0;\n}\n.input-group .form-control:focus {\n  z-index: 3;\n}\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n  height: 45px;\n  padding: 10px 16px;\n  font-size: 17px;\n  line-height: 1.3333333;\n  border-radius: 3px;\n}\nselect.input-group-lg > .form-control,\nselect.input-group-lg > .input-group-addon,\nselect.input-group-lg > .input-group-btn > .btn {\n  height: 45px;\n  line-height: 45px;\n}\ntextarea.input-group-lg > .form-control,\ntextarea.input-group-lg > .input-group-addon,\ntextarea.input-group-lg > .input-group-btn > .btn,\nselect[multiple].input-group-lg > .form-control,\nselect[multiple].input-group-lg > .input-group-addon,\nselect[multiple].input-group-lg > .input-group-btn > .btn {\n  height: auto;\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n  height: 30px;\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 1px;\n}\nselect.input-group-sm > .form-control,\nselect.input-group-sm > .input-group-addon,\nselect.input-group-sm > .input-group-btn > .btn {\n  height: 30px;\n  line-height: 30px;\n}\ntextarea.input-group-sm > .form-control,\ntextarea.input-group-sm > .input-group-addon,\ntextarea.input-group-sm > .input-group-btn > .btn,\nselect[multiple].input-group-sm > .form-control,\nselect[multiple].input-group-sm > .input-group-addon,\nselect[multiple].input-group-sm > .input-group-btn > .btn {\n  height: auto;\n}\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n  display: table-cell;\n}\n.input-group-addon:not(:first-child):not(:last-child),\n.input-group-btn:not(:first-child):not(:last-child),\n.input-group .form-control:not(:first-child):not(:last-child) {\n  border-radius: 0;\n}\n.input-group-addon,\n.input-group-btn {\n  width: 1%;\n  white-space: nowrap;\n  vertical-align: middle;\n}\n.input-group-addon {\n  padding: 6px 12px;\n  font-size: 13px;\n  font-weight: normal;\n  line-height: 1;\n  color: #555555;\n  text-align: center;\n  background-color: #eeeeee;\n  border: 1px solid #ccc;\n  border-radius: 2px;\n}\n.input-group-addon.input-sm {\n  padding: 5px 10px;\n  font-size: 12px;\n  border-radius: 1px;\n}\n.input-group-addon.input-lg {\n  padding: 10px 16px;\n  font-size: 17px;\n  border-radius: 3px;\n}\n.input-group-addon input[type=\"radio\"],\n.input-group-addon input[type=\"checkbox\"] {\n  margin-top: 0;\n}\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n  border-bottom-right-radius: 0;\n  border-top-right-radius: 0;\n}\n.input-group-addon:first-child {\n  border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n  border-bottom-left-radius: 0;\n  border-top-left-radius: 0;\n}\n.input-group-addon:last-child {\n  border-left: 0;\n}\n.input-group-btn {\n  position: relative;\n  font-size: 0;\n  white-space: nowrap;\n}\n.input-group-btn > .btn {\n  position: relative;\n}\n.input-group-btn > .btn + .btn {\n  margin-left: -1px;\n}\n.input-group-btn > .btn:hover,\n.input-group-btn > .btn:focus,\n.input-group-btn > .btn:active {\n  z-index: 2;\n}\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group {\n  margin-right: -1px;\n}\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group {\n  z-index: 2;\n  margin-left: -1px;\n}\n.nav {\n  margin-bottom: 0;\n  padding-left: 0;\n  list-style: none;\n}\n.nav > li {\n  position: relative;\n  display: block;\n}\n.nav > li > a {\n  position: relative;\n  display: block;\n  padding: 10px 15px;\n}\n.nav > li > a:hover,\n.nav > li > a:focus {\n  text-decoration: none;\n  background-color: #eeeeee;\n}\n.nav > li.disabled > a {\n  color: #777777;\n}\n.nav > li.disabled > a:hover,\n.nav > li.disabled > a:focus {\n  color: #777777;\n  text-decoration: none;\n  background-color: transparent;\n  cursor: not-allowed;\n}\n.nav .open > a,\n.nav .open > a:hover,\n.nav .open > a:focus {\n  background-color: #eeeeee;\n  border-color: #337ab7;\n}\n.nav .nav-divider {\n  height: 1px;\n  margin: 8px 0;\n  overflow: hidden;\n  background-color: #e5e5e5;\n}\n.nav > li > a > img {\n  max-width: none;\n}\n.nav-tabs {\n  border-bottom: 1px solid #ddd;\n}\n.nav-tabs > li {\n  float: left;\n  margin-bottom: -1px;\n}\n.nav-tabs > li > a {\n  margin-right: 2px;\n  line-height: 1.42857143;\n  border: 1px solid transparent;\n  border-radius: 2px 2px 0 0;\n}\n.nav-tabs > li > a:hover {\n  border-color: #eeeeee #eeeeee #ddd;\n}\n.nav-tabs > li.active > a,\n.nav-tabs > li.active > a:hover,\n.nav-tabs > li.active > a:focus {\n  color: #555555;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-bottom-color: transparent;\n  cursor: default;\n}\n.nav-tabs.nav-justified {\n  width: 100%;\n  border-bottom: 0;\n}\n.nav-tabs.nav-justified > li {\n  float: none;\n}\n.nav-tabs.nav-justified > li > a {\n  text-align: center;\n  margin-bottom: 5px;\n}\n.nav-tabs.nav-justified > .dropdown .dropdown-menu {\n  top: auto;\n  left: auto;\n}\n@media (min-width: 768px) {\n  .nav-tabs.nav-justified > li {\n    display: table-cell;\n    width: 1%;\n  }\n  .nav-tabs.nav-justified > li > a {\n    margin-bottom: 0;\n  }\n}\n.nav-tabs.nav-justified > li > a {\n  margin-right: 0;\n  border-radius: 2px;\n}\n.nav-tabs.nav-justified > .active > a,\n.nav-tabs.nav-justified > .active > a:hover,\n.nav-tabs.nav-justified > .active > a:focus {\n  border: 1px solid #ddd;\n}\n@media (min-width: 768px) {\n  .nav-tabs.nav-justified > li > a {\n    border-bottom: 1px solid #ddd;\n    border-radius: 2px 2px 0 0;\n  }\n  .nav-tabs.nav-justified > .active > a,\n  .nav-tabs.nav-justified > .active > a:hover,\n  .nav-tabs.nav-justified > .active > a:focus {\n    border-bottom-color: #fff;\n  }\n}\n.nav-pills > li {\n  float: left;\n}\n.nav-pills > li > a {\n  border-radius: 2px;\n}\n.nav-pills > li + li {\n  margin-left: 2px;\n}\n.nav-pills > li.active > a,\n.nav-pills > li.active > a:hover,\n.nav-pills > li.active > a:focus {\n  color: #fff;\n  background-color: #337ab7;\n}\n.nav-stacked > li {\n  float: none;\n}\n.nav-stacked > li + li {\n  margin-top: 2px;\n  margin-left: 0;\n}\n.nav-justified {\n  width: 100%;\n}\n.nav-justified > li {\n  float: none;\n}\n.nav-justified > li > a {\n  text-align: center;\n  margin-bottom: 5px;\n}\n.nav-justified > .dropdown .dropdown-menu {\n  top: auto;\n  left: auto;\n}\n@media (min-width: 768px) {\n  .nav-justified > li {\n    display: table-cell;\n    width: 1%;\n  }\n  .nav-justified > li > a {\n    margin-bottom: 0;\n  }\n}\n.nav-tabs-justified {\n  border-bottom: 0;\n}\n.nav-tabs-justified > li > a {\n  margin-right: 0;\n  border-radius: 2px;\n}\n.nav-tabs-justified > .active > a,\n.nav-tabs-justified > .active > a:hover,\n.nav-tabs-justified > .active > a:focus {\n  border: 1px solid #ddd;\n}\n@media (min-width: 768px) {\n  .nav-tabs-justified > li > a {\n    border-bottom: 1px solid #ddd;\n    border-radius: 2px 2px 0 0;\n  }\n  .nav-tabs-justified > .active > a,\n  .nav-tabs-justified > .active > a:hover,\n  .nav-tabs-justified > .active > a:focus {\n    border-bottom-color: #fff;\n  }\n}\n.tab-content > .tab-pane {\n  display: none;\n}\n.tab-content > .active {\n  display: block;\n}\n.nav-tabs .dropdown-menu {\n  margin-top: -1px;\n  border-top-right-radius: 0;\n  border-top-left-radius: 0;\n}\n.navbar {\n  position: relative;\n  min-height: 30px;\n  margin-bottom: 18px;\n  border: 1px solid transparent;\n}\n@media (min-width: 541px) {\n  .navbar {\n    border-radius: 2px;\n  }\n}\n@media (min-width: 541px) {\n  .navbar-header {\n    float: left;\n  }\n}\n.navbar-collapse {\n  overflow-x: visible;\n  padding-right: 0px;\n  padding-left: 0px;\n  border-top: 1px solid transparent;\n  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);\n  -webkit-overflow-scrolling: touch;\n}\n.navbar-collapse.in {\n  overflow-y: auto;\n}\n@media (min-width: 541px) {\n  .navbar-collapse {\n    width: auto;\n    border-top: 0;\n    box-shadow: none;\n  }\n  .navbar-collapse.collapse {\n    display: block !important;\n    height: auto !important;\n    padding-bottom: 0;\n    overflow: visible !important;\n  }\n  .navbar-collapse.in {\n    overflow-y: visible;\n  }\n  .navbar-fixed-top .navbar-collapse,\n  .navbar-static-top .navbar-collapse,\n  .navbar-fixed-bottom .navbar-collapse {\n    padding-left: 0;\n    padding-right: 0;\n  }\n}\n.navbar-fixed-top .navbar-collapse,\n.navbar-fixed-bottom .navbar-collapse {\n  max-height: 340px;\n}\n@media (max-device-width: 540px) and (orientation: landscape) {\n  .navbar-fixed-top .navbar-collapse,\n  .navbar-fixed-bottom .navbar-collapse {\n    max-height: 200px;\n  }\n}\n.container > .navbar-header,\n.container-fluid > .navbar-header,\n.container > .navbar-collapse,\n.container-fluid > .navbar-collapse {\n  margin-right: 0px;\n  margin-left: 0px;\n}\n@media (min-width: 541px) {\n  .container > .navbar-header,\n  .container-fluid > .navbar-header,\n  .container > .navbar-collapse,\n  .container-fluid > .navbar-collapse {\n    margin-right: 0;\n    margin-left: 0;\n  }\n}\n.navbar-static-top {\n  z-index: 1000;\n  border-width: 0 0 1px;\n}\n@media (min-width: 541px) {\n  .navbar-static-top {\n    border-radius: 0;\n  }\n}\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  position: fixed;\n  right: 0;\n  left: 0;\n  z-index: 1030;\n}\n@media (min-width: 541px) {\n  .navbar-fixed-top,\n  .navbar-fixed-bottom {\n    border-radius: 0;\n  }\n}\n.navbar-fixed-top {\n  top: 0;\n  border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n  bottom: 0;\n  margin-bottom: 0;\n  border-width: 1px 0 0;\n}\n.navbar-brand {\n  float: left;\n  padding: 6px 0px;\n  font-size: 17px;\n  line-height: 18px;\n  height: 30px;\n}\n.navbar-brand:hover,\n.navbar-brand:focus {\n  text-decoration: none;\n}\n.navbar-brand > img {\n  display: block;\n}\n@media (min-width: 541px) {\n  .navbar > .container .navbar-brand,\n  .navbar > .container-fluid .navbar-brand {\n    margin-left: 0px;\n  }\n}\n.navbar-toggle {\n  position: relative;\n  float: right;\n  margin-right: 0px;\n  padding: 9px 10px;\n  margin-top: -2px;\n  margin-bottom: -2px;\n  background-color: transparent;\n  background-image: none;\n  border: 1px solid transparent;\n  border-radius: 2px;\n}\n.navbar-toggle:focus {\n  outline: 0;\n}\n.navbar-toggle .icon-bar {\n  display: block;\n  width: 22px;\n  height: 2px;\n  border-radius: 1px;\n}\n.navbar-toggle .icon-bar + .icon-bar {\n  margin-top: 4px;\n}\n@media (min-width: 541px) {\n  .navbar-toggle {\n    display: none;\n  }\n}\n.navbar-nav {\n  margin: 3px 0px;\n}\n.navbar-nav > li > a {\n  padding-top: 10px;\n  padding-bottom: 10px;\n  line-height: 18px;\n}\n@media (max-width: 540px) {\n  .navbar-nav .open .dropdown-menu {\n    position: static;\n    float: none;\n    width: auto;\n    margin-top: 0;\n    background-color: transparent;\n    border: 0;\n    box-shadow: none;\n  }\n  .navbar-nav .open .dropdown-menu > li > a,\n  .navbar-nav .open .dropdown-menu .dropdown-header {\n    padding: 5px 15px 5px 25px;\n  }\n  .navbar-nav .open .dropdown-menu > li > a {\n    line-height: 18px;\n  }\n  .navbar-nav .open .dropdown-menu > li > a:hover,\n  .navbar-nav .open .dropdown-menu > li > a:focus {\n    background-image: none;\n  }\n}\n@media (min-width: 541px) {\n  .navbar-nav {\n    float: left;\n    margin: 0;\n  }\n  .navbar-nav > li {\n    float: left;\n  }\n  .navbar-nav > li > a {\n    padding-top: 6px;\n    padding-bottom: 6px;\n  }\n}\n.navbar-form {\n  margin-left: 0px;\n  margin-right: 0px;\n  padding: 10px 0px;\n  border-top: 1px solid transparent;\n  border-bottom: 1px solid transparent;\n  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n  margin-top: -1px;\n  margin-bottom: -1px;\n}\n@media (min-width: 768px) {\n  .navbar-form .form-group {\n    display: inline-block;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .navbar-form .form-control {\n    display: inline-block;\n    width: auto;\n    vertical-align: middle;\n  }\n  .navbar-form .form-control-static {\n    display: inline-block;\n  }\n  .navbar-form .input-group {\n    display: inline-table;\n    vertical-align: middle;\n  }\n  .navbar-form .input-group .input-group-addon,\n  .navbar-form .input-group .input-group-btn,\n  .navbar-form .input-group .form-control {\n    width: auto;\n  }\n  .navbar-form .input-group > .form-control {\n    width: 100%;\n  }\n  .navbar-form .control-label {\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .navbar-form .radio,\n  .navbar-form .checkbox {\n    display: inline-block;\n    margin-top: 0;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .navbar-form .radio label,\n  .navbar-form .checkbox label {\n    padding-left: 0;\n  }\n  .navbar-form .radio input[type=\"radio\"],\n  .navbar-form .checkbox input[type=\"checkbox\"] {\n    position: relative;\n    margin-left: 0;\n  }\n  .navbar-form .has-feedback .form-control-feedback {\n    top: 0;\n  }\n}\n@media (max-width: 540px) {\n  .navbar-form .form-group {\n    margin-bottom: 5px;\n  }\n  .navbar-form .form-group:last-child {\n    margin-bottom: 0;\n  }\n}\n@media (min-width: 541px) {\n  .navbar-form {\n    width: auto;\n    border: 0;\n    margin-left: 0;\n    margin-right: 0;\n    padding-top: 0;\n    padding-bottom: 0;\n    -webkit-box-shadow: none;\n    box-shadow: none;\n  }\n}\n.navbar-nav > li > .dropdown-menu {\n  margin-top: 0;\n  border-top-right-radius: 0;\n  border-top-left-radius: 0;\n}\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n  margin-bottom: 0;\n  border-top-right-radius: 2px;\n  border-top-left-radius: 2px;\n  border-bottom-right-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.navbar-btn {\n  margin-top: -1px;\n  margin-bottom: -1px;\n}\n.navbar-btn.btn-sm {\n  margin-top: 0px;\n  margin-bottom: 0px;\n}\n.navbar-btn.btn-xs {\n  margin-top: 4px;\n  margin-bottom: 4px;\n}\n.navbar-text {\n  margin-top: 6px;\n  margin-bottom: 6px;\n}\n@media (min-width: 541px) {\n  .navbar-text {\n    float: left;\n    margin-left: 0px;\n    margin-right: 0px;\n  }\n}\n@media (min-width: 541px) {\n  .navbar-left {\n    float: left !important;\n    float: left;\n  }\n  .navbar-right {\n    float: right !important;\n    float: right;\n    margin-right: 0px;\n  }\n  .navbar-right ~ .navbar-right {\n    margin-right: 0;\n  }\n}\n.navbar-default {\n  background-color: #f8f8f8;\n  border-color: #e7e7e7;\n}\n.navbar-default .navbar-brand {\n  color: #777;\n}\n.navbar-default .navbar-brand:hover,\n.navbar-default .navbar-brand:focus {\n  color: #5e5e5e;\n  background-color: transparent;\n}\n.navbar-default .navbar-text {\n  color: #777;\n}\n.navbar-default .navbar-nav > li > a {\n  color: #777;\n}\n.navbar-default .navbar-nav > li > a:hover,\n.navbar-default .navbar-nav > li > a:focus {\n  color: #333;\n  background-color: transparent;\n}\n.navbar-default .navbar-nav > .active > a,\n.navbar-default .navbar-nav > .active > a:hover,\n.navbar-default .navbar-nav > .active > a:focus {\n  color: #555;\n  background-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .disabled > a,\n.navbar-default .navbar-nav > .disabled > a:hover,\n.navbar-default .navbar-nav > .disabled > a:focus {\n  color: #ccc;\n  background-color: transparent;\n}\n.navbar-default .navbar-toggle {\n  border-color: #ddd;\n}\n.navbar-default .navbar-toggle:hover,\n.navbar-default .navbar-toggle:focus {\n  background-color: #ddd;\n}\n.navbar-default .navbar-toggle .icon-bar {\n  background-color: #888;\n}\n.navbar-default .navbar-collapse,\n.navbar-default .navbar-form {\n  border-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .open > a:hover,\n.navbar-default .navbar-nav > .open > a:focus {\n  background-color: #e7e7e7;\n  color: #555;\n}\n@media (max-width: 540px) {\n  .navbar-default .navbar-nav .open .dropdown-menu > li > a {\n    color: #777;\n  }\n  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,\n  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {\n    color: #333;\n    background-color: transparent;\n  }\n  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,\n  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,\n  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {\n    color: #555;\n    background-color: #e7e7e7;\n  }\n  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,\n  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n    color: #ccc;\n    background-color: transparent;\n  }\n}\n.navbar-default .navbar-link {\n  color: #777;\n}\n.navbar-default .navbar-link:hover {\n  color: #333;\n}\n.navbar-default .btn-link {\n  color: #777;\n}\n.navbar-default .btn-link:hover,\n.navbar-default .btn-link:focus {\n  color: #333;\n}\n.navbar-default .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-default .btn-link:hover,\n.navbar-default .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-default .btn-link:focus {\n  color: #ccc;\n}\n.navbar-inverse {\n  background-color: #222;\n  border-color: #080808;\n}\n.navbar-inverse .navbar-brand {\n  color: #9d9d9d;\n}\n.navbar-inverse .navbar-brand:hover,\n.navbar-inverse .navbar-brand:focus {\n  color: #fff;\n  background-color: transparent;\n}\n.navbar-inverse .navbar-text {\n  color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a {\n  color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a:hover,\n.navbar-inverse .navbar-nav > li > a:focus {\n  color: #fff;\n  background-color: transparent;\n}\n.navbar-inverse .navbar-nav > .active > a,\n.navbar-inverse .navbar-nav > .active > a:hover,\n.navbar-inverse .navbar-nav > .active > a:focus {\n  color: #fff;\n  background-color: #080808;\n}\n.navbar-inverse .navbar-nav > .disabled > a,\n.navbar-inverse .navbar-nav > .disabled > a:hover,\n.navbar-inverse .navbar-nav > .disabled > a:focus {\n  color: #444;\n  background-color: transparent;\n}\n.navbar-inverse .navbar-toggle {\n  border-color: #333;\n}\n.navbar-inverse .navbar-toggle:hover,\n.navbar-inverse .navbar-toggle:focus {\n  background-color: #333;\n}\n.navbar-inverse .navbar-toggle .icon-bar {\n  background-color: #fff;\n}\n.navbar-inverse .navbar-collapse,\n.navbar-inverse .navbar-form {\n  border-color: #101010;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .open > a:hover,\n.navbar-inverse .navbar-nav > .open > a:focus {\n  background-color: #080808;\n  color: #fff;\n}\n@media (max-width: 540px) {\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {\n    border-color: #080808;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {\n    background-color: #080808;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {\n    color: #9d9d9d;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {\n    color: #fff;\n    background-color: transparent;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {\n    color: #fff;\n    background-color: #080808;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n    color: #444;\n    background-color: transparent;\n  }\n}\n.navbar-inverse .navbar-link {\n  color: #9d9d9d;\n}\n.navbar-inverse .navbar-link:hover {\n  color: #fff;\n}\n.navbar-inverse .btn-link {\n  color: #9d9d9d;\n}\n.navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link:focus {\n  color: #fff;\n}\n.navbar-inverse .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-inverse .btn-link:focus {\n  color: #444;\n}\n.breadcrumb {\n  padding: 8px 15px;\n  margin-bottom: 18px;\n  list-style: none;\n  background-color: #f5f5f5;\n  border-radius: 2px;\n}\n.breadcrumb > li {\n  display: inline-block;\n}\n.breadcrumb > li + li:before {\n  content: \"/\\00a0\";\n  padding: 0 5px;\n  color: #5e5e5e;\n}\n.breadcrumb > .active {\n  color: #777777;\n}\n.pagination {\n  display: inline-block;\n  padding-left: 0;\n  margin: 18px 0;\n  border-radius: 2px;\n}\n.pagination > li {\n  display: inline;\n}\n.pagination > li > a,\n.pagination > li > span {\n  position: relative;\n  float: left;\n  padding: 6px 12px;\n  line-height: 1.42857143;\n  text-decoration: none;\n  color: #337ab7;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  margin-left: -1px;\n}\n.pagination > li:first-child > a,\n.pagination > li:first-child > span {\n  margin-left: 0;\n  border-bottom-left-radius: 2px;\n  border-top-left-radius: 2px;\n}\n.pagination > li:last-child > a,\n.pagination > li:last-child > span {\n  border-bottom-right-radius: 2px;\n  border-top-right-radius: 2px;\n}\n.pagination > li > a:hover,\n.pagination > li > span:hover,\n.pagination > li > a:focus,\n.pagination > li > span:focus {\n  z-index: 2;\n  color: #23527c;\n  background-color: #eeeeee;\n  border-color: #ddd;\n}\n.pagination > .active > a,\n.pagination > .active > span,\n.pagination > .active > a:hover,\n.pagination > .active > span:hover,\n.pagination > .active > a:focus,\n.pagination > .active > span:focus {\n  z-index: 3;\n  color: #fff;\n  background-color: #337ab7;\n  border-color: #337ab7;\n  cursor: default;\n}\n.pagination > .disabled > span,\n.pagination > .disabled > span:hover,\n.pagination > .disabled > span:focus,\n.pagination > .disabled > a,\n.pagination > .disabled > a:hover,\n.pagination > .disabled > a:focus {\n  color: #777777;\n  background-color: #fff;\n  border-color: #ddd;\n  cursor: not-allowed;\n}\n.pagination-lg > li > a,\n.pagination-lg > li > span {\n  padding: 10px 16px;\n  font-size: 17px;\n  line-height: 1.3333333;\n}\n.pagination-lg > li:first-child > a,\n.pagination-lg > li:first-child > span {\n  border-bottom-left-radius: 3px;\n  border-top-left-radius: 3px;\n}\n.pagination-lg > li:last-child > a,\n.pagination-lg > li:last-child > span {\n  border-bottom-right-radius: 3px;\n  border-top-right-radius: 3px;\n}\n.pagination-sm > li > a,\n.pagination-sm > li > span {\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n}\n.pagination-sm > li:first-child > a,\n.pagination-sm > li:first-child > span {\n  border-bottom-left-radius: 1px;\n  border-top-left-radius: 1px;\n}\n.pagination-sm > li:last-child > a,\n.pagination-sm > li:last-child > span {\n  border-bottom-right-radius: 1px;\n  border-top-right-radius: 1px;\n}\n.pager {\n  padding-left: 0;\n  margin: 18px 0;\n  list-style: none;\n  text-align: center;\n}\n.pager li {\n  display: inline;\n}\n.pager li > a,\n.pager li > span {\n  display: inline-block;\n  padding: 5px 14px;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 15px;\n}\n.pager li > a:hover,\n.pager li > a:focus {\n  text-decoration: none;\n  background-color: #eeeeee;\n}\n.pager .next > a,\n.pager .next > span {\n  float: right;\n}\n.pager .previous > a,\n.pager .previous > span {\n  float: left;\n}\n.pager .disabled > a,\n.pager .disabled > a:hover,\n.pager .disabled > a:focus,\n.pager .disabled > span {\n  color: #777777;\n  background-color: #fff;\n  cursor: not-allowed;\n}\n.label {\n  display: inline;\n  padding: .2em .6em .3em;\n  font-size: 75%;\n  font-weight: bold;\n  line-height: 1;\n  color: #fff;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: baseline;\n  border-radius: .25em;\n}\na.label:hover,\na.label:focus {\n  color: #fff;\n  text-decoration: none;\n  cursor: pointer;\n}\n.label:empty {\n  display: none;\n}\n.btn .label {\n  position: relative;\n  top: -1px;\n}\n.label-default {\n  background-color: #777777;\n}\n.label-default[href]:hover,\n.label-default[href]:focus {\n  background-color: #5e5e5e;\n}\n.label-primary {\n  background-color: #337ab7;\n}\n.label-primary[href]:hover,\n.label-primary[href]:focus {\n  background-color: #286090;\n}\n.label-success {\n  background-color: #5cb85c;\n}\n.label-success[href]:hover,\n.label-success[href]:focus {\n  background-color: #449d44;\n}\n.label-info {\n  background-color: #5bc0de;\n}\n.label-info[href]:hover,\n.label-info[href]:focus {\n  background-color: #31b0d5;\n}\n.label-warning {\n  background-color: #f0ad4e;\n}\n.label-warning[href]:hover,\n.label-warning[href]:focus {\n  background-color: #ec971f;\n}\n.label-danger {\n  background-color: #d9534f;\n}\n.label-danger[href]:hover,\n.label-danger[href]:focus {\n  background-color: #c9302c;\n}\n.badge {\n  display: inline-block;\n  min-width: 10px;\n  padding: 3px 7px;\n  font-size: 12px;\n  font-weight: bold;\n  color: #fff;\n  line-height: 1;\n  vertical-align: middle;\n  white-space: nowrap;\n  text-align: center;\n  background-color: #777777;\n  border-radius: 10px;\n}\n.badge:empty {\n  display: none;\n}\n.btn .badge {\n  position: relative;\n  top: -1px;\n}\n.btn-xs .badge,\n.btn-group-xs > .btn .badge {\n  top: 0;\n  padding: 1px 5px;\n}\na.badge:hover,\na.badge:focus {\n  color: #fff;\n  text-decoration: none;\n  cursor: pointer;\n}\n.list-group-item.active > .badge,\n.nav-pills > .active > a > .badge {\n  color: #337ab7;\n  background-color: #fff;\n}\n.list-group-item > .badge {\n  float: right;\n}\n.list-group-item > .badge + .badge {\n  margin-right: 5px;\n}\n.nav-pills > li > a > .badge {\n  margin-left: 3px;\n}\n.jumbotron {\n  padding-top: 30px;\n  padding-bottom: 30px;\n  margin-bottom: 30px;\n  color: inherit;\n  background-color: #eeeeee;\n}\n.jumbotron h1,\n.jumbotron .h1 {\n  color: inherit;\n}\n.jumbotron p {\n  margin-bottom: 15px;\n  font-size: 20px;\n  font-weight: 200;\n}\n.jumbotron > hr {\n  border-top-color: #d5d5d5;\n}\n.container .jumbotron,\n.container-fluid .jumbotron {\n  border-radius: 3px;\n  padding-left: 0px;\n  padding-right: 0px;\n}\n.jumbotron .container {\n  max-width: 100%;\n}\n@media screen and (min-width: 768px) {\n  .jumbotron {\n    padding-top: 48px;\n    padding-bottom: 48px;\n  }\n  .container .jumbotron,\n  .container-fluid .jumbotron {\n    padding-left: 60px;\n    padding-right: 60px;\n  }\n  .jumbotron h1,\n  .jumbotron .h1 {\n    font-size: 59px;\n  }\n}\n.thumbnail {\n  display: block;\n  padding: 4px;\n  margin-bottom: 18px;\n  line-height: 1.42857143;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 2px;\n  -webkit-transition: border 0.2s ease-in-out;\n  -o-transition: border 0.2s ease-in-out;\n  transition: border 0.2s ease-in-out;\n}\n.thumbnail > img,\n.thumbnail a > img {\n  margin-left: auto;\n  margin-right: auto;\n}\na.thumbnail:hover,\na.thumbnail:focus,\na.thumbnail.active {\n  border-color: #337ab7;\n}\n.thumbnail .caption {\n  padding: 9px;\n  color: #000;\n}\n.alert {\n  padding: 15px;\n  margin-bottom: 18px;\n  border: 1px solid transparent;\n  border-radius: 2px;\n}\n.alert h4 {\n  margin-top: 0;\n  color: inherit;\n}\n.alert .alert-link {\n  font-weight: bold;\n}\n.alert > p,\n.alert > ul {\n  margin-bottom: 0;\n}\n.alert > p + p {\n  margin-top: 5px;\n}\n.alert-dismissable,\n.alert-dismissible {\n  padding-right: 35px;\n}\n.alert-dismissable .close,\n.alert-dismissible .close {\n  position: relative;\n  top: -2px;\n  right: -21px;\n  color: inherit;\n}\n.alert-success {\n  background-color: #dff0d8;\n  border-color: #d6e9c6;\n  color: #3c763d;\n}\n.alert-success hr {\n  border-top-color: #c9e2b3;\n}\n.alert-success .alert-link {\n  color: #2b542c;\n}\n.alert-info {\n  background-color: #d9edf7;\n  border-color: #bce8f1;\n  color: #31708f;\n}\n.alert-info hr {\n  border-top-color: #a6e1ec;\n}\n.alert-info .alert-link {\n  color: #245269;\n}\n.alert-warning {\n  background-color: #fcf8e3;\n  border-color: #faebcc;\n  color: #8a6d3b;\n}\n.alert-warning hr {\n  border-top-color: #f7e1b5;\n}\n.alert-warning .alert-link {\n  color: #66512c;\n}\n.alert-danger {\n  background-color: #f2dede;\n  border-color: #ebccd1;\n  color: #a94442;\n}\n.alert-danger hr {\n  border-top-color: #e4b9c0;\n}\n.alert-danger .alert-link {\n  color: #843534;\n}\n@-webkit-keyframes progress-bar-stripes {\n  from {\n    background-position: 40px 0;\n  }\n  to {\n    background-position: 0 0;\n  }\n}\n@keyframes progress-bar-stripes {\n  from {\n    background-position: 40px 0;\n  }\n  to {\n    background-position: 0 0;\n  }\n}\n.progress {\n  overflow: hidden;\n  height: 18px;\n  margin-bottom: 18px;\n  background-color: #f5f5f5;\n  border-radius: 2px;\n  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n}\n.progress-bar {\n  float: left;\n  width: 0%;\n  height: 100%;\n  font-size: 12px;\n  line-height: 18px;\n  color: #fff;\n  text-align: center;\n  background-color: #337ab7;\n  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n  -webkit-transition: width 0.6s ease;\n  -o-transition: width 0.6s ease;\n  transition: width 0.6s ease;\n}\n.progress-striped .progress-bar,\n.progress-bar-striped {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-size: 40px 40px;\n}\n.progress.active .progress-bar,\n.progress-bar.active {\n  -webkit-animation: progress-bar-stripes 2s linear infinite;\n  -o-animation: progress-bar-stripes 2s linear infinite;\n  animation: progress-bar-stripes 2s linear infinite;\n}\n.progress-bar-success {\n  background-color: #5cb85c;\n}\n.progress-striped .progress-bar-success {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-info {\n  background-color: #5bc0de;\n}\n.progress-striped .progress-bar-info {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-warning {\n  background-color: #f0ad4e;\n}\n.progress-striped .progress-bar-warning {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-danger {\n  background-color: #d9534f;\n}\n.progress-striped .progress-bar-danger {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.media {\n  margin-top: 15px;\n}\n.media:first-child {\n  margin-top: 0;\n}\n.media,\n.media-body {\n  zoom: 1;\n  overflow: hidden;\n}\n.media-body {\n  width: 10000px;\n}\n.media-object {\n  display: block;\n}\n.media-object.img-thumbnail {\n  max-width: none;\n}\n.media-right,\n.media > .pull-right {\n  padding-left: 10px;\n}\n.media-left,\n.media > .pull-left {\n  padding-right: 10px;\n}\n.media-left,\n.media-right,\n.media-body {\n  display: table-cell;\n  vertical-align: top;\n}\n.media-middle {\n  vertical-align: middle;\n}\n.media-bottom {\n  vertical-align: bottom;\n}\n.media-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n.media-list {\n  padding-left: 0;\n  list-style: none;\n}\n.list-group {\n  margin-bottom: 20px;\n  padding-left: 0;\n}\n.list-group-item {\n  position: relative;\n  display: block;\n  padding: 10px 15px;\n  margin-bottom: -1px;\n  background-color: #fff;\n  border: 1px solid #ddd;\n}\n.list-group-item:first-child {\n  border-top-right-radius: 2px;\n  border-top-left-radius: 2px;\n}\n.list-group-item:last-child {\n  margin-bottom: 0;\n  border-bottom-right-radius: 2px;\n  border-bottom-left-radius: 2px;\n}\na.list-group-item,\nbutton.list-group-item {\n  color: #555;\n}\na.list-group-item .list-group-item-heading,\nbutton.list-group-item .list-group-item-heading {\n  color: #333;\n}\na.list-group-item:hover,\nbutton.list-group-item:hover,\na.list-group-item:focus,\nbutton.list-group-item:focus {\n  text-decoration: none;\n  color: #555;\n  background-color: #f5f5f5;\n}\nbutton.list-group-item {\n  width: 100%;\n  text-align: left;\n}\n.list-group-item.disabled,\n.list-group-item.disabled:hover,\n.list-group-item.disabled:focus {\n  background-color: #eeeeee;\n  color: #777777;\n  cursor: not-allowed;\n}\n.list-group-item.disabled .list-group-item-heading,\n.list-group-item.disabled:hover .list-group-item-heading,\n.list-group-item.disabled:focus .list-group-item-heading {\n  color: inherit;\n}\n.list-group-item.disabled .list-group-item-text,\n.list-group-item.disabled:hover .list-group-item-text,\n.list-group-item.disabled:focus .list-group-item-text {\n  color: #777777;\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n  z-index: 2;\n  color: #fff;\n  background-color: #337ab7;\n  border-color: #337ab7;\n}\n.list-group-item.active .list-group-item-heading,\n.list-group-item.active:hover .list-group-item-heading,\n.list-group-item.active:focus .list-group-item-heading,\n.list-group-item.active .list-group-item-heading > small,\n.list-group-item.active:hover .list-group-item-heading > small,\n.list-group-item.active:focus .list-group-item-heading > small,\n.list-group-item.active .list-group-item-heading > .small,\n.list-group-item.active:hover .list-group-item-heading > .small,\n.list-group-item.active:focus .list-group-item-heading > .small {\n  color: inherit;\n}\n.list-group-item.active .list-group-item-text,\n.list-group-item.active:hover .list-group-item-text,\n.list-group-item.active:focus .list-group-item-text {\n  color: #c7ddef;\n}\n.list-group-item-success {\n  color: #3c763d;\n  background-color: #dff0d8;\n}\na.list-group-item-success,\nbutton.list-group-item-success {\n  color: #3c763d;\n}\na.list-group-item-success .list-group-item-heading,\nbutton.list-group-item-success .list-group-item-heading {\n  color: inherit;\n}\na.list-group-item-success:hover,\nbutton.list-group-item-success:hover,\na.list-group-item-success:focus,\nbutton.list-group-item-success:focus {\n  color: #3c763d;\n  background-color: #d0e9c6;\n}\na.list-group-item-success.active,\nbutton.list-group-item-success.active,\na.list-group-item-success.active:hover,\nbutton.list-group-item-success.active:hover,\na.list-group-item-success.active:focus,\nbutton.list-group-item-success.active:focus {\n  color: #fff;\n  background-color: #3c763d;\n  border-color: #3c763d;\n}\n.list-group-item-info {\n  color: #31708f;\n  background-color: #d9edf7;\n}\na.list-group-item-info,\nbutton.list-group-item-info {\n  color: #31708f;\n}\na.list-group-item-info .list-group-item-heading,\nbutton.list-group-item-info .list-group-item-heading {\n  color: inherit;\n}\na.list-group-item-info:hover,\nbutton.list-group-item-info:hover,\na.list-group-item-info:focus,\nbutton.list-group-item-info:focus {\n  color: #31708f;\n  background-color: #c4e3f3;\n}\na.list-group-item-info.active,\nbutton.list-group-item-info.active,\na.list-group-item-info.active:hover,\nbutton.list-group-item-info.active:hover,\na.list-group-item-info.active:focus,\nbutton.list-group-item-info.active:focus {\n  color: #fff;\n  background-color: #31708f;\n  border-color: #31708f;\n}\n.list-group-item-warning {\n  color: #8a6d3b;\n  background-color: #fcf8e3;\n}\na.list-group-item-warning,\nbutton.list-group-item-warning {\n  color: #8a6d3b;\n}\na.list-group-item-warning .list-group-item-heading,\nbutton.list-group-item-warning .list-group-item-heading {\n  color: inherit;\n}\na.list-group-item-warning:hover,\nbutton.list-group-item-warning:hover,\na.list-group-item-warning:focus,\nbutton.list-group-item-warning:focus {\n  color: #8a6d3b;\n  background-color: #faf2cc;\n}\na.list-group-item-warning.active,\nbutton.list-group-item-warning.active,\na.list-group-item-warning.active:hover,\nbutton.list-group-item-warning.active:hover,\na.list-group-item-warning.active:focus,\nbutton.list-group-item-warning.active:focus {\n  color: #fff;\n  background-color: #8a6d3b;\n  border-color: #8a6d3b;\n}\n.list-group-item-danger {\n  color: #a94442;\n  background-color: #f2dede;\n}\na.list-group-item-danger,\nbutton.list-group-item-danger {\n  color: #a94442;\n}\na.list-group-item-danger .list-group-item-heading,\nbutton.list-group-item-danger .list-group-item-heading {\n  color: inherit;\n}\na.list-group-item-danger:hover,\nbutton.list-group-item-danger:hover,\na.list-group-item-danger:focus,\nbutton.list-group-item-danger:focus {\n  color: #a94442;\n  background-color: #ebcccc;\n}\na.list-group-item-danger.active,\nbutton.list-group-item-danger.active,\na.list-group-item-danger.active:hover,\nbutton.list-group-item-danger.active:hover,\na.list-group-item-danger.active:focus,\nbutton.list-group-item-danger.active:focus {\n  color: #fff;\n  background-color: #a94442;\n  border-color: #a94442;\n}\n.list-group-item-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n.list-group-item-text {\n  margin-bottom: 0;\n  line-height: 1.3;\n}\n.panel {\n  margin-bottom: 18px;\n  background-color: #fff;\n  border: 1px solid transparent;\n  border-radius: 2px;\n  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.panel-body {\n  padding: 15px;\n}\n.panel-heading {\n  padding: 10px 15px;\n  border-bottom: 1px solid transparent;\n  border-top-right-radius: 1px;\n  border-top-left-radius: 1px;\n}\n.panel-heading > .dropdown .dropdown-toggle {\n  color: inherit;\n}\n.panel-title {\n  margin-top: 0;\n  margin-bottom: 0;\n  font-size: 15px;\n  color: inherit;\n}\n.panel-title > a,\n.panel-title > small,\n.panel-title > .small,\n.panel-title > small > a,\n.panel-title > .small > a {\n  color: inherit;\n}\n.panel-footer {\n  padding: 10px 15px;\n  background-color: #f5f5f5;\n  border-top: 1px solid #ddd;\n  border-bottom-right-radius: 1px;\n  border-bottom-left-radius: 1px;\n}\n.panel > .list-group,\n.panel > .panel-collapse > .list-group {\n  margin-bottom: 0;\n}\n.panel > .list-group .list-group-item,\n.panel > .panel-collapse > .list-group .list-group-item {\n  border-width: 1px 0;\n  border-radius: 0;\n}\n.panel > .list-group:first-child .list-group-item:first-child,\n.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {\n  border-top: 0;\n  border-top-right-radius: 1px;\n  border-top-left-radius: 1px;\n}\n.panel > .list-group:last-child .list-group-item:last-child,\n.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {\n  border-bottom: 0;\n  border-bottom-right-radius: 1px;\n  border-bottom-left-radius: 1px;\n}\n.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {\n  border-top-right-radius: 0;\n  border-top-left-radius: 0;\n}\n.panel-heading + .list-group .list-group-item:first-child {\n  border-top-width: 0;\n}\n.list-group + .panel-footer {\n  border-top-width: 0;\n}\n.panel > .table,\n.panel > .table-responsive > .table,\n.panel > .panel-collapse > .table {\n  margin-bottom: 0;\n}\n.panel > .table caption,\n.panel > .table-responsive > .table caption,\n.panel > .panel-collapse > .table caption {\n  padding-left: 15px;\n  padding-right: 15px;\n}\n.panel > .table:first-child,\n.panel > .table-responsive:first-child > .table:first-child {\n  border-top-right-radius: 1px;\n  border-top-left-radius: 1px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {\n  border-top-left-radius: 1px;\n  border-top-right-radius: 1px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {\n  border-top-left-radius: 1px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {\n  border-top-right-radius: 1px;\n}\n.panel > .table:last-child,\n.panel > .table-responsive:last-child > .table:last-child {\n  border-bottom-right-radius: 1px;\n  border-bottom-left-radius: 1px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {\n  border-bottom-left-radius: 1px;\n  border-bottom-right-radius: 1px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {\n  border-bottom-left-radius: 1px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {\n  border-bottom-right-radius: 1px;\n}\n.panel > .panel-body + .table,\n.panel > .panel-body + .table-responsive,\n.panel > .table + .panel-body,\n.panel > .table-responsive + .panel-body {\n  border-top: 1px solid #ddd;\n}\n.panel > .table > tbody:first-child > tr:first-child th,\n.panel > .table > tbody:first-child > tr:first-child td {\n  border-top: 0;\n}\n.panel > .table-bordered,\n.panel > .table-responsive > .table-bordered {\n  border: 0;\n}\n.panel > .table-bordered > thead > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,\n.panel > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-bordered > thead > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,\n.panel > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-bordered > tfoot > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n  border-left: 0;\n}\n.panel > .table-bordered > thead > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,\n.panel > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-bordered > thead > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,\n.panel > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-bordered > tfoot > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n  border-right: 0;\n}\n.panel > .table-bordered > thead > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,\n.panel > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-bordered > thead > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,\n.panel > .table-bordered > tbody > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {\n  border-bottom: 0;\n}\n.panel > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-bordered > tfoot > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {\n  border-bottom: 0;\n}\n.panel > .table-responsive {\n  border: 0;\n  margin-bottom: 0;\n}\n.panel-group {\n  margin-bottom: 18px;\n}\n.panel-group .panel {\n  margin-bottom: 0;\n  border-radius: 2px;\n}\n.panel-group .panel + .panel {\n  margin-top: 5px;\n}\n.panel-group .panel-heading {\n  border-bottom: 0;\n}\n.panel-group .panel-heading + .panel-collapse > .panel-body,\n.panel-group .panel-heading + .panel-collapse > .list-group {\n  border-top: 1px solid #ddd;\n}\n.panel-group .panel-footer {\n  border-top: 0;\n}\n.panel-group .panel-footer + .panel-collapse .panel-body {\n  border-bottom: 1px solid #ddd;\n}\n.panel-default {\n  border-color: #ddd;\n}\n.panel-default > .panel-heading {\n  color: #333333;\n  background-color: #f5f5f5;\n  border-color: #ddd;\n}\n.panel-default > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #ddd;\n}\n.panel-default > .panel-heading .badge {\n  color: #f5f5f5;\n  background-color: #333333;\n}\n.panel-default > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #ddd;\n}\n.panel-primary {\n  border-color: #337ab7;\n}\n.panel-primary > .panel-heading {\n  color: #fff;\n  background-color: #337ab7;\n  border-color: #337ab7;\n}\n.panel-primary > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #337ab7;\n}\n.panel-primary > .panel-heading .badge {\n  color: #337ab7;\n  background-color: #fff;\n}\n.panel-primary > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #337ab7;\n}\n.panel-success {\n  border-color: #d6e9c6;\n}\n.panel-success > .panel-heading {\n  color: #3c763d;\n  background-color: #dff0d8;\n  border-color: #d6e9c6;\n}\n.panel-success > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #d6e9c6;\n}\n.panel-success > .panel-heading .badge {\n  color: #dff0d8;\n  background-color: #3c763d;\n}\n.panel-success > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #d6e9c6;\n}\n.panel-info {\n  border-color: #bce8f1;\n}\n.panel-info > .panel-heading {\n  color: #31708f;\n  background-color: #d9edf7;\n  border-color: #bce8f1;\n}\n.panel-info > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #bce8f1;\n}\n.panel-info > .panel-heading .badge {\n  color: #d9edf7;\n  background-color: #31708f;\n}\n.panel-info > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #bce8f1;\n}\n.panel-warning {\n  border-color: #faebcc;\n}\n.panel-warning > .panel-heading {\n  color: #8a6d3b;\n  background-color: #fcf8e3;\n  border-color: #faebcc;\n}\n.panel-warning > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #faebcc;\n}\n.panel-warning > .panel-heading .badge {\n  color: #fcf8e3;\n  background-color: #8a6d3b;\n}\n.panel-warning > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #faebcc;\n}\n.panel-danger {\n  border-color: #ebccd1;\n}\n.panel-danger > .panel-heading {\n  color: #a94442;\n  background-color: #f2dede;\n  border-color: #ebccd1;\n}\n.panel-danger > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #ebccd1;\n}\n.panel-danger > .panel-heading .badge {\n  color: #f2dede;\n  background-color: #a94442;\n}\n.panel-danger > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #ebccd1;\n}\n.embed-responsive {\n  position: relative;\n  display: block;\n  height: 0;\n  padding: 0;\n  overflow: hidden;\n}\n.embed-responsive .embed-responsive-item,\n.embed-responsive iframe,\n.embed-responsive embed,\n.embed-responsive object,\n.embed-responsive video {\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  height: 100%;\n  width: 100%;\n  border: 0;\n}\n.embed-responsive-16by9 {\n  padding-bottom: 56.25%;\n}\n.embed-responsive-4by3 {\n  padding-bottom: 75%;\n}\n.well {\n  min-height: 20px;\n  padding: 19px;\n  margin-bottom: 20px;\n  background-color: #f5f5f5;\n  border: 1px solid #e3e3e3;\n  border-radius: 2px;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.well blockquote {\n  border-color: #ddd;\n  border-color: rgba(0, 0, 0, 0.15);\n}\n.well-lg {\n  padding: 24px;\n  border-radius: 3px;\n}\n.well-sm {\n  padding: 9px;\n  border-radius: 1px;\n}\n.close {\n  float: right;\n  font-size: 19.5px;\n  font-weight: bold;\n  line-height: 1;\n  color: #000;\n  text-shadow: 0 1px 0 #fff;\n  opacity: 0.2;\n  filter: alpha(opacity=20);\n}\n.close:hover,\n.close:focus {\n  color: #000;\n  text-decoration: none;\n  cursor: pointer;\n  opacity: 0.5;\n  filter: alpha(opacity=50);\n}\nbutton.close {\n  padding: 0;\n  cursor: pointer;\n  background: transparent;\n  border: 0;\n  -webkit-appearance: none;\n}\n.modal-open {\n  overflow: hidden;\n}\n.modal {\n  display: none;\n  overflow: hidden;\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 1050;\n  -webkit-overflow-scrolling: touch;\n  outline: 0;\n}\n.modal.fade .modal-dialog {\n  -webkit-transform: translate(0, -25%);\n  -ms-transform: translate(0, -25%);\n  -o-transform: translate(0, -25%);\n  transform: translate(0, -25%);\n  -webkit-transition: -webkit-transform 0.3s ease-out;\n  -moz-transition: -moz-transform 0.3s ease-out;\n  -o-transition: -o-transform 0.3s ease-out;\n  transition: transform 0.3s ease-out;\n}\n.modal.in .modal-dialog {\n  -webkit-transform: translate(0, 0);\n  -ms-transform: translate(0, 0);\n  -o-transform: translate(0, 0);\n  transform: translate(0, 0);\n}\n.modal-open .modal {\n  overflow-x: hidden;\n  overflow-y: auto;\n}\n.modal-dialog {\n  position: relative;\n  width: auto;\n  margin: 10px;\n}\n.modal-content {\n  position: relative;\n  background-color: #fff;\n  border: 1px solid #999;\n  border: 1px solid rgba(0, 0, 0, 0.2);\n  border-radius: 3px;\n  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n  background-clip: padding-box;\n  outline: 0;\n}\n.modal-backdrop {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 1040;\n  background-color: #000;\n}\n.modal-backdrop.fade {\n  opacity: 0;\n  filter: alpha(opacity=0);\n}\n.modal-backdrop.in {\n  opacity: 0.5;\n  filter: alpha(opacity=50);\n}\n.modal-header {\n  padding: 15px;\n  border-bottom: 1px solid #e5e5e5;\n}\n.modal-header .close {\n  margin-top: -2px;\n}\n.modal-title {\n  margin: 0;\n  line-height: 1.42857143;\n}\n.modal-body {\n  position: relative;\n  padding: 15px;\n}\n.modal-footer {\n  padding: 15px;\n  text-align: right;\n  border-top: 1px solid #e5e5e5;\n}\n.modal-footer .btn + .btn {\n  margin-left: 5px;\n  margin-bottom: 0;\n}\n.modal-footer .btn-group .btn + .btn {\n  margin-left: -1px;\n}\n.modal-footer .btn-block + .btn-block {\n  margin-left: 0;\n}\n.modal-scrollbar-measure {\n  position: absolute;\n  top: -9999px;\n  width: 50px;\n  height: 50px;\n  overflow: scroll;\n}\n@media (min-width: 768px) {\n  .modal-dialog {\n    width: 600px;\n    margin: 30px auto;\n  }\n  .modal-content {\n    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n  }\n  .modal-sm {\n    width: 300px;\n  }\n}\n@media (min-width: 992px) {\n  .modal-lg {\n    width: 900px;\n  }\n}\n.tooltip {\n  position: absolute;\n  z-index: 1070;\n  display: block;\n  font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n  font-style: normal;\n  font-weight: normal;\n  letter-spacing: normal;\n  line-break: auto;\n  line-height: 1.42857143;\n  text-align: left;\n  text-align: start;\n  text-decoration: none;\n  text-shadow: none;\n  text-transform: none;\n  white-space: normal;\n  word-break: normal;\n  word-spacing: normal;\n  word-wrap: normal;\n  font-size: 12px;\n  opacity: 0;\n  filter: alpha(opacity=0);\n}\n.tooltip.in {\n  opacity: 0.9;\n  filter: alpha(opacity=90);\n}\n.tooltip.top {\n  margin-top: -3px;\n  padding: 5px 0;\n}\n.tooltip.right {\n  margin-left: 3px;\n  padding: 0 5px;\n}\n.tooltip.bottom {\n  margin-top: 3px;\n  padding: 5px 0;\n}\n.tooltip.left {\n  margin-left: -3px;\n  padding: 0 5px;\n}\n.tooltip-inner {\n  max-width: 200px;\n  padding: 3px 8px;\n  color: #fff;\n  text-align: center;\n  background-color: #000;\n  border-radius: 2px;\n}\n.tooltip-arrow {\n  position: absolute;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n}\n.tooltip.top .tooltip-arrow {\n  bottom: 0;\n  left: 50%;\n  margin-left: -5px;\n  border-width: 5px 5px 0;\n  border-top-color: #000;\n}\n.tooltip.top-left .tooltip-arrow {\n  bottom: 0;\n  right: 5px;\n  margin-bottom: -5px;\n  border-width: 5px 5px 0;\n  border-top-color: #000;\n}\n.tooltip.top-right .tooltip-arrow {\n  bottom: 0;\n  left: 5px;\n  margin-bottom: -5px;\n  border-width: 5px 5px 0;\n  border-top-color: #000;\n}\n.tooltip.right .tooltip-arrow {\n  top: 50%;\n  left: 0;\n  margin-top: -5px;\n  border-width: 5px 5px 5px 0;\n  border-right-color: #000;\n}\n.tooltip.left .tooltip-arrow {\n  top: 50%;\n  right: 0;\n  margin-top: -5px;\n  border-width: 5px 0 5px 5px;\n  border-left-color: #000;\n}\n.tooltip.bottom .tooltip-arrow {\n  top: 0;\n  left: 50%;\n  margin-left: -5px;\n  border-width: 0 5px 5px;\n  border-bottom-color: #000;\n}\n.tooltip.bottom-left .tooltip-arrow {\n  top: 0;\n  right: 5px;\n  margin-top: -5px;\n  border-width: 0 5px 5px;\n  border-bottom-color: #000;\n}\n.tooltip.bottom-right .tooltip-arrow {\n  top: 0;\n  left: 5px;\n  margin-top: -5px;\n  border-width: 0 5px 5px;\n  border-bottom-color: #000;\n}\n.popover {\n  position: absolute;\n  top: 0;\n  left: 0;\n  z-index: 1060;\n  display: none;\n  max-width: 276px;\n  padding: 1px;\n  font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n  font-style: normal;\n  font-weight: normal;\n  letter-spacing: normal;\n  line-break: auto;\n  line-height: 1.42857143;\n  text-align: left;\n  text-align: start;\n  text-decoration: none;\n  text-shadow: none;\n  text-transform: none;\n  white-space: normal;\n  word-break: normal;\n  word-spacing: normal;\n  word-wrap: normal;\n  font-size: 13px;\n  background-color: #fff;\n  background-clip: padding-box;\n  border: 1px solid #ccc;\n  border: 1px solid rgba(0, 0, 0, 0.2);\n  border-radius: 3px;\n  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n}\n.popover.top {\n  margin-top: -10px;\n}\n.popover.right {\n  margin-left: 10px;\n}\n.popover.bottom {\n  margin-top: 10px;\n}\n.popover.left {\n  margin-left: -10px;\n}\n.popover-title {\n  margin: 0;\n  padding: 8px 14px;\n  font-size: 13px;\n  background-color: #f7f7f7;\n  border-bottom: 1px solid #ebebeb;\n  border-radius: 2px 2px 0 0;\n}\n.popover-content {\n  padding: 9px 14px;\n}\n.popover > .arrow,\n.popover > .arrow:after {\n  position: absolute;\n  display: block;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n}\n.popover > .arrow {\n  border-width: 11px;\n}\n.popover > .arrow:after {\n  border-width: 10px;\n  content: \"\";\n}\n.popover.top > .arrow {\n  left: 50%;\n  margin-left: -11px;\n  border-bottom-width: 0;\n  border-top-color: #999999;\n  border-top-color: rgba(0, 0, 0, 0.25);\n  bottom: -11px;\n}\n.popover.top > .arrow:after {\n  content: \" \";\n  bottom: 1px;\n  margin-left: -10px;\n  border-bottom-width: 0;\n  border-top-color: #fff;\n}\n.popover.right > .arrow {\n  top: 50%;\n  left: -11px;\n  margin-top: -11px;\n  border-left-width: 0;\n  border-right-color: #999999;\n  border-right-color: rgba(0, 0, 0, 0.25);\n}\n.popover.right > .arrow:after {\n  content: \" \";\n  left: 1px;\n  bottom: -10px;\n  border-left-width: 0;\n  border-right-color: #fff;\n}\n.popover.bottom > .arrow {\n  left: 50%;\n  margin-left: -11px;\n  border-top-width: 0;\n  border-bottom-color: #999999;\n  border-bottom-color: rgba(0, 0, 0, 0.25);\n  top: -11px;\n}\n.popover.bottom > .arrow:after {\n  content: \" \";\n  top: 1px;\n  margin-left: -10px;\n  border-top-width: 0;\n  border-bottom-color: #fff;\n}\n.popover.left > .arrow {\n  top: 50%;\n  right: -11px;\n  margin-top: -11px;\n  border-right-width: 0;\n  border-left-color: #999999;\n  border-left-color: rgba(0, 0, 0, 0.25);\n}\n.popover.left > .arrow:after {\n  content: \" \";\n  right: 1px;\n  border-right-width: 0;\n  border-left-color: #fff;\n  bottom: -10px;\n}\n.carousel {\n  position: relative;\n}\n.carousel-inner {\n  position: relative;\n  overflow: hidden;\n  width: 100%;\n}\n.carousel-inner > .item {\n  display: none;\n  position: relative;\n  -webkit-transition: 0.6s ease-in-out left;\n  -o-transition: 0.6s ease-in-out left;\n  transition: 0.6s ease-in-out left;\n}\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n  line-height: 1;\n}\n@media all and (transform-3d), (-webkit-transform-3d) {\n  .carousel-inner > .item {\n    -webkit-transition: -webkit-transform 0.6s ease-in-out;\n    -moz-transition: -moz-transform 0.6s ease-in-out;\n    -o-transition: -o-transform 0.6s ease-in-out;\n    transition: transform 0.6s ease-in-out;\n    -webkit-backface-visibility: hidden;\n    -moz-backface-visibility: hidden;\n    backface-visibility: hidden;\n    -webkit-perspective: 1000px;\n    -moz-perspective: 1000px;\n    perspective: 1000px;\n  }\n  .carousel-inner > .item.next,\n  .carousel-inner > .item.active.right {\n    -webkit-transform: translate3d(100%, 0, 0);\n    transform: translate3d(100%, 0, 0);\n    left: 0;\n  }\n  .carousel-inner > .item.prev,\n  .carousel-inner > .item.active.left {\n    -webkit-transform: translate3d(-100%, 0, 0);\n    transform: translate3d(-100%, 0, 0);\n    left: 0;\n  }\n  .carousel-inner > .item.next.left,\n  .carousel-inner > .item.prev.right,\n  .carousel-inner > .item.active {\n    -webkit-transform: translate3d(0, 0, 0);\n    transform: translate3d(0, 0, 0);\n    left: 0;\n  }\n}\n.carousel-inner > .active,\n.carousel-inner > .next,\n.carousel-inner > .prev {\n  display: block;\n}\n.carousel-inner > .active {\n  left: 0;\n}\n.carousel-inner > .next,\n.carousel-inner > .prev {\n  position: absolute;\n  top: 0;\n  width: 100%;\n}\n.carousel-inner > .next {\n  left: 100%;\n}\n.carousel-inner > .prev {\n  left: -100%;\n}\n.carousel-inner > .next.left,\n.carousel-inner > .prev.right {\n  left: 0;\n}\n.carousel-inner > .active.left {\n  left: -100%;\n}\n.carousel-inner > .active.right {\n  left: 100%;\n}\n.carousel-control {\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  width: 15%;\n  opacity: 0.5;\n  filter: alpha(opacity=50);\n  font-size: 20px;\n  color: #fff;\n  text-align: center;\n  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n  background-color: rgba(0, 0, 0, 0);\n}\n.carousel-control.left {\n  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);\n}\n.carousel-control.right {\n  left: auto;\n  right: 0;\n  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);\n}\n.carousel-control:hover,\n.carousel-control:focus {\n  outline: 0;\n  color: #fff;\n  text-decoration: none;\n  opacity: 0.9;\n  filter: alpha(opacity=90);\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-left,\n.carousel-control .glyphicon-chevron-right {\n  position: absolute;\n  top: 50%;\n  margin-top: -10px;\n  z-index: 5;\n  display: inline-block;\n}\n.carousel-control .icon-prev,\n.carousel-control .glyphicon-chevron-left {\n  left: 50%;\n  margin-left: -10px;\n}\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-right {\n  right: 50%;\n  margin-right: -10px;\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next {\n  width: 20px;\n  height: 20px;\n  line-height: 1;\n  font-family: serif;\n}\n.carousel-control .icon-prev:before {\n  content: '\\2039';\n}\n.carousel-control .icon-next:before {\n  content: '\\203a';\n}\n.carousel-indicators {\n  position: absolute;\n  bottom: 10px;\n  left: 50%;\n  z-index: 15;\n  width: 60%;\n  margin-left: -30%;\n  padding-left: 0;\n  list-style: none;\n  text-align: center;\n}\n.carousel-indicators li {\n  display: inline-block;\n  width: 10px;\n  height: 10px;\n  margin: 1px;\n  text-indent: -999px;\n  border: 1px solid #fff;\n  border-radius: 10px;\n  cursor: pointer;\n  background-color: #000 \\9;\n  background-color: rgba(0, 0, 0, 0);\n}\n.carousel-indicators .active {\n  margin: 0;\n  width: 12px;\n  height: 12px;\n  background-color: #fff;\n}\n.carousel-caption {\n  position: absolute;\n  left: 15%;\n  right: 15%;\n  bottom: 20px;\n  z-index: 10;\n  padding-top: 20px;\n  padding-bottom: 20px;\n  color: #fff;\n  text-align: center;\n  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n}\n.carousel-caption .btn {\n  text-shadow: none;\n}\n@media screen and (min-width: 768px) {\n  .carousel-control .glyphicon-chevron-left,\n  .carousel-control .glyphicon-chevron-right,\n  .carousel-control .icon-prev,\n  .carousel-control .icon-next {\n    width: 30px;\n    height: 30px;\n    margin-top: -10px;\n    font-size: 30px;\n  }\n  .carousel-control .glyphicon-chevron-left,\n  .carousel-control .icon-prev {\n    margin-left: -10px;\n  }\n  .carousel-control .glyphicon-chevron-right,\n  .carousel-control .icon-next {\n    margin-right: -10px;\n  }\n  .carousel-caption {\n    left: 20%;\n    right: 20%;\n    padding-bottom: 30px;\n  }\n  .carousel-indicators {\n    bottom: 20px;\n  }\n}\n.clearfix:before,\n.clearfix:after,\n.dl-horizontal dd:before,\n.dl-horizontal dd:after,\n.container:before,\n.container:after,\n.container-fluid:before,\n.container-fluid:after,\n.row:before,\n.row:after,\n.form-horizontal .form-group:before,\n.form-horizontal .form-group:after,\n.btn-toolbar:before,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:before,\n.btn-group-vertical > .btn-group:after,\n.nav:before,\n.nav:after,\n.navbar:before,\n.navbar:after,\n.navbar-header:before,\n.navbar-header:after,\n.navbar-collapse:before,\n.navbar-collapse:after,\n.pager:before,\n.pager:after,\n.panel-body:before,\n.panel-body:after,\n.modal-header:before,\n.modal-header:after,\n.modal-footer:before,\n.modal-footer:after,\n.item_buttons:before,\n.item_buttons:after {\n  content: \" \";\n  display: table;\n}\n.clearfix:after,\n.dl-horizontal dd:after,\n.container:after,\n.container-fluid:after,\n.row:after,\n.form-horizontal .form-group:after,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:after,\n.nav:after,\n.navbar:after,\n.navbar-header:after,\n.navbar-collapse:after,\n.pager:after,\n.panel-body:after,\n.modal-header:after,\n.modal-footer:after,\n.item_buttons:after {\n  clear: both;\n}\n.center-block {\n  display: block;\n  margin-left: auto;\n  margin-right: auto;\n}\n.pull-right {\n  float: right !important;\n}\n.pull-left {\n  float: left !important;\n}\n.hide {\n  display: none !important;\n}\n.show {\n  display: block !important;\n}\n.invisible {\n  visibility: hidden;\n}\n.text-hide {\n  font: 0/0 a;\n  color: transparent;\n  text-shadow: none;\n  background-color: transparent;\n  border: 0;\n}\n.hidden {\n  display: none !important;\n}\n.affix {\n  position: fixed;\n}\n@-ms-viewport {\n  width: device-width;\n}\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n  display: none !important;\n}\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n  display: none !important;\n}\n@media (max-width: 767px) {\n  .visible-xs {\n    display: block !important;\n  }\n  table.visible-xs {\n    display: table !important;\n  }\n  tr.visible-xs {\n    display: table-row !important;\n  }\n  th.visible-xs,\n  td.visible-xs {\n    display: table-cell !important;\n  }\n}\n@media (max-width: 767px) {\n  .visible-xs-block {\n    display: block !important;\n  }\n}\n@media (max-width: 767px) {\n  .visible-xs-inline {\n    display: inline !important;\n  }\n}\n@media (max-width: 767px) {\n  .visible-xs-inline-block {\n    display: inline-block !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm {\n    display: block !important;\n  }\n  table.visible-sm {\n    display: table !important;\n  }\n  tr.visible-sm {\n    display: table-row !important;\n  }\n  th.visible-sm,\n  td.visible-sm {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm-block {\n    display: block !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm-inline {\n    display: inline !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm-inline-block {\n    display: inline-block !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md {\n    display: block !important;\n  }\n  table.visible-md {\n    display: table !important;\n  }\n  tr.visible-md {\n    display: table-row !important;\n  }\n  th.visible-md,\n  td.visible-md {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md-block {\n    display: block !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md-inline {\n    display: inline !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md-inline-block {\n    display: inline-block !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg {\n    display: block !important;\n  }\n  table.visible-lg {\n    display: table !important;\n  }\n  tr.visible-lg {\n    display: table-row !important;\n  }\n  th.visible-lg,\n  td.visible-lg {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg-block {\n    display: block !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg-inline {\n    display: inline !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg-inline-block {\n    display: inline-block !important;\n  }\n}\n@media (max-width: 767px) {\n  .hidden-xs {\n    display: none !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .hidden-sm {\n    display: none !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .hidden-md {\n    display: none !important;\n  }\n}\n@media (min-width: 1200px) {\n  .hidden-lg {\n    display: none !important;\n  }\n}\n.visible-print {\n  display: none !important;\n}\n@media print {\n  .visible-print {\n    display: block !important;\n  }\n  table.visible-print {\n    display: table !important;\n  }\n  tr.visible-print {\n    display: table-row !important;\n  }\n  th.visible-print,\n  td.visible-print {\n    display: table-cell !important;\n  }\n}\n.visible-print-block {\n  display: none !important;\n}\n@media print {\n  .visible-print-block {\n    display: block !important;\n  }\n}\n.visible-print-inline {\n  display: none !important;\n}\n@media print {\n  .visible-print-inline {\n    display: inline !important;\n  }\n}\n.visible-print-inline-block {\n  display: none !important;\n}\n@media print {\n  .visible-print-inline-block {\n    display: inline-block !important;\n  }\n}\n@media print {\n  .hidden-print {\n    display: none !important;\n  }\n}\n/*!\n*\n* Font Awesome\n*\n*/\n/*!\n *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n/* FONT PATH\n * -------------------------- */\n@font-face {\n  font-family: 'FontAwesome';\n  src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0');\n  src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../components/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');\n  font-weight: normal;\n  font-style: normal;\n}\n.fa {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n/* makes the font 33% larger relative to the icon container */\n.fa-lg {\n  font-size: 1.33333333em;\n  line-height: 0.75em;\n  vertical-align: -15%;\n}\n.fa-2x {\n  font-size: 2em;\n}\n.fa-3x {\n  font-size: 3em;\n}\n.fa-4x {\n  font-size: 4em;\n}\n.fa-5x {\n  font-size: 5em;\n}\n.fa-fw {\n  width: 1.28571429em;\n  text-align: center;\n}\n.fa-ul {\n  padding-left: 0;\n  margin-left: 2.14285714em;\n  list-style-type: none;\n}\n.fa-ul > li {\n  position: relative;\n}\n.fa-li {\n  position: absolute;\n  left: -2.14285714em;\n  width: 2.14285714em;\n  top: 0.14285714em;\n  text-align: center;\n}\n.fa-li.fa-lg {\n  left: -1.85714286em;\n}\n.fa-border {\n  padding: .2em .25em .15em;\n  border: solid 0.08em #eee;\n  border-radius: .1em;\n}\n.fa-pull-left {\n  float: left;\n}\n.fa-pull-right {\n  float: right;\n}\n.fa.fa-pull-left {\n  margin-right: .3em;\n}\n.fa.fa-pull-right {\n  margin-left: .3em;\n}\n/* Deprecated as of 4.4.0 */\n.pull-right {\n  float: right;\n}\n.pull-left {\n  float: left;\n}\n.fa.pull-left {\n  margin-right: .3em;\n}\n.fa.pull-right {\n  margin-left: .3em;\n}\n.fa-spin {\n  -webkit-animation: fa-spin 2s infinite linear;\n  animation: fa-spin 2s infinite linear;\n}\n.fa-pulse {\n  -webkit-animation: fa-spin 1s infinite steps(8);\n  animation: fa-spin 1s infinite steps(8);\n}\n@-webkit-keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n    transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n    transform: rotate(359deg);\n  }\n}\n@keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n    transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n    transform: rotate(359deg);\n  }\n}\n.fa-rotate-90 {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n  -webkit-transform: rotate(90deg);\n  -ms-transform: rotate(90deg);\n  transform: rotate(90deg);\n}\n.fa-rotate-180 {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n  -webkit-transform: rotate(180deg);\n  -ms-transform: rotate(180deg);\n  transform: rotate(180deg);\n}\n.fa-rotate-270 {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n  -webkit-transform: rotate(270deg);\n  -ms-transform: rotate(270deg);\n  transform: rotate(270deg);\n}\n.fa-flip-horizontal {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n  -webkit-transform: scale(-1, 1);\n  -ms-transform: scale(-1, 1);\n  transform: scale(-1, 1);\n}\n.fa-flip-vertical {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n  -webkit-transform: scale(1, -1);\n  -ms-transform: scale(1, -1);\n  transform: scale(1, -1);\n}\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n  filter: none;\n}\n.fa-stack {\n  position: relative;\n  display: inline-block;\n  width: 2em;\n  height: 2em;\n  line-height: 2em;\n  vertical-align: middle;\n}\n.fa-stack-1x,\n.fa-stack-2x {\n  position: absolute;\n  left: 0;\n  width: 100%;\n  text-align: center;\n}\n.fa-stack-1x {\n  line-height: inherit;\n}\n.fa-stack-2x {\n  font-size: 2em;\n}\n.fa-inverse {\n  color: #fff;\n}\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n   readers do not read off random characters that represent icons */\n.fa-glass:before {\n  content: \"\\f000\";\n}\n.fa-music:before {\n  content: \"\\f001\";\n}\n.fa-search:before {\n  content: \"\\f002\";\n}\n.fa-envelope-o:before {\n  content: \"\\f003\";\n}\n.fa-heart:before {\n  content: \"\\f004\";\n}\n.fa-star:before {\n  content: \"\\f005\";\n}\n.fa-star-o:before {\n  content: \"\\f006\";\n}\n.fa-user:before {\n  content: \"\\f007\";\n}\n.fa-film:before {\n  content: \"\\f008\";\n}\n.fa-th-large:before {\n  content: \"\\f009\";\n}\n.fa-th:before {\n  content: \"\\f00a\";\n}\n.fa-th-list:before {\n  content: \"\\f00b\";\n}\n.fa-check:before {\n  content: \"\\f00c\";\n}\n.fa-remove:before,\n.fa-close:before,\n.fa-times:before {\n  content: \"\\f00d\";\n}\n.fa-search-plus:before {\n  content: \"\\f00e\";\n}\n.fa-search-minus:before {\n  content: \"\\f010\";\n}\n.fa-power-off:before {\n  content: \"\\f011\";\n}\n.fa-signal:before {\n  content: \"\\f012\";\n}\n.fa-gear:before,\n.fa-cog:before {\n  content: \"\\f013\";\n}\n.fa-trash-o:before {\n  content: \"\\f014\";\n}\n.fa-home:before {\n  content: \"\\f015\";\n}\n.fa-file-o:before {\n  content: \"\\f016\";\n}\n.fa-clock-o:before {\n  content: \"\\f017\";\n}\n.fa-road:before {\n  content: \"\\f018\";\n}\n.fa-download:before {\n  content: \"\\f019\";\n}\n.fa-arrow-circle-o-down:before {\n  content: \"\\f01a\";\n}\n.fa-arrow-circle-o-up:before {\n  content: \"\\f01b\";\n}\n.fa-inbox:before {\n  content: \"\\f01c\";\n}\n.fa-play-circle-o:before {\n  content: \"\\f01d\";\n}\n.fa-rotate-right:before,\n.fa-repeat:before {\n  content: \"\\f01e\";\n}\n.fa-refresh:before {\n  content: \"\\f021\";\n}\n.fa-list-alt:before {\n  content: \"\\f022\";\n}\n.fa-lock:before {\n  content: \"\\f023\";\n}\n.fa-flag:before {\n  content: \"\\f024\";\n}\n.fa-headphones:before {\n  content: \"\\f025\";\n}\n.fa-volume-off:before {\n  content: \"\\f026\";\n}\n.fa-volume-down:before {\n  content: \"\\f027\";\n}\n.fa-volume-up:before {\n  content: \"\\f028\";\n}\n.fa-qrcode:before {\n  content: \"\\f029\";\n}\n.fa-barcode:before {\n  content: \"\\f02a\";\n}\n.fa-tag:before {\n  content: \"\\f02b\";\n}\n.fa-tags:before {\n  content: \"\\f02c\";\n}\n.fa-book:before {\n  content: \"\\f02d\";\n}\n.fa-bookmark:before {\n  content: \"\\f02e\";\n}\n.fa-print:before {\n  content: \"\\f02f\";\n}\n.fa-camera:before {\n  content: \"\\f030\";\n}\n.fa-font:before {\n  content: \"\\f031\";\n}\n.fa-bold:before {\n  content: \"\\f032\";\n}\n.fa-italic:before {\n  content: \"\\f033\";\n}\n.fa-text-height:before {\n  content: \"\\f034\";\n}\n.fa-text-width:before {\n  content: \"\\f035\";\n}\n.fa-align-left:before {\n  content: \"\\f036\";\n}\n.fa-align-center:before {\n  content: \"\\f037\";\n}\n.fa-align-right:before {\n  content: \"\\f038\";\n}\n.fa-align-justify:before {\n  content: \"\\f039\";\n}\n.fa-list:before {\n  content: \"\\f03a\";\n}\n.fa-dedent:before,\n.fa-outdent:before {\n  content: \"\\f03b\";\n}\n.fa-indent:before {\n  content: \"\\f03c\";\n}\n.fa-video-camera:before {\n  content: \"\\f03d\";\n}\n.fa-photo:before,\n.fa-image:before,\n.fa-picture-o:before {\n  content: \"\\f03e\";\n}\n.fa-pencil:before {\n  content: \"\\f040\";\n}\n.fa-map-marker:before {\n  content: \"\\f041\";\n}\n.fa-adjust:before {\n  content: \"\\f042\";\n}\n.fa-tint:before {\n  content: \"\\f043\";\n}\n.fa-edit:before,\n.fa-pencil-square-o:before {\n  content: \"\\f044\";\n}\n.fa-share-square-o:before {\n  content: \"\\f045\";\n}\n.fa-check-square-o:before {\n  content: \"\\f046\";\n}\n.fa-arrows:before {\n  content: \"\\f047\";\n}\n.fa-step-backward:before {\n  content: \"\\f048\";\n}\n.fa-fast-backward:before {\n  content: \"\\f049\";\n}\n.fa-backward:before {\n  content: \"\\f04a\";\n}\n.fa-play:before {\n  content: \"\\f04b\";\n}\n.fa-pause:before {\n  content: \"\\f04c\";\n}\n.fa-stop:before {\n  content: \"\\f04d\";\n}\n.fa-forward:before {\n  content: \"\\f04e\";\n}\n.fa-fast-forward:before {\n  content: \"\\f050\";\n}\n.fa-step-forward:before {\n  content: \"\\f051\";\n}\n.fa-eject:before {\n  content: \"\\f052\";\n}\n.fa-chevron-left:before {\n  content: \"\\f053\";\n}\n.fa-chevron-right:before {\n  content: \"\\f054\";\n}\n.fa-plus-circle:before {\n  content: \"\\f055\";\n}\n.fa-minus-circle:before {\n  content: \"\\f056\";\n}\n.fa-times-circle:before {\n  content: \"\\f057\";\n}\n.fa-check-circle:before {\n  content: \"\\f058\";\n}\n.fa-question-circle:before {\n  content: \"\\f059\";\n}\n.fa-info-circle:before {\n  content: \"\\f05a\";\n}\n.fa-crosshairs:before {\n  content: \"\\f05b\";\n}\n.fa-times-circle-o:before {\n  content: \"\\f05c\";\n}\n.fa-check-circle-o:before {\n  content: \"\\f05d\";\n}\n.fa-ban:before {\n  content: \"\\f05e\";\n}\n.fa-arrow-left:before {\n  content: \"\\f060\";\n}\n.fa-arrow-right:before {\n  content: \"\\f061\";\n}\n.fa-arrow-up:before {\n  content: \"\\f062\";\n}\n.fa-arrow-down:before {\n  content: \"\\f063\";\n}\n.fa-mail-forward:before,\n.fa-share:before {\n  content: \"\\f064\";\n}\n.fa-expand:before {\n  content: \"\\f065\";\n}\n.fa-compress:before {\n  content: \"\\f066\";\n}\n.fa-plus:before {\n  content: \"\\f067\";\n}\n.fa-minus:before {\n  content: \"\\f068\";\n}\n.fa-asterisk:before {\n  content: \"\\f069\";\n}\n.fa-exclamation-circle:before {\n  content: \"\\f06a\";\n}\n.fa-gift:before {\n  content: \"\\f06b\";\n}\n.fa-leaf:before {\n  content: \"\\f06c\";\n}\n.fa-fire:before {\n  content: \"\\f06d\";\n}\n.fa-eye:before {\n  content: \"\\f06e\";\n}\n.fa-eye-slash:before {\n  content: \"\\f070\";\n}\n.fa-warning:before,\n.fa-exclamation-triangle:before {\n  content: \"\\f071\";\n}\n.fa-plane:before {\n  content: \"\\f072\";\n}\n.fa-calendar:before {\n  content: \"\\f073\";\n}\n.fa-random:before {\n  content: \"\\f074\";\n}\n.fa-comment:before {\n  content: \"\\f075\";\n}\n.fa-magnet:before {\n  content: \"\\f076\";\n}\n.fa-chevron-up:before {\n  content: \"\\f077\";\n}\n.fa-chevron-down:before {\n  content: \"\\f078\";\n}\n.fa-retweet:before {\n  content: \"\\f079\";\n}\n.fa-shopping-cart:before {\n  content: \"\\f07a\";\n}\n.fa-folder:before {\n  content: \"\\f07b\";\n}\n.fa-folder-open:before {\n  content: \"\\f07c\";\n}\n.fa-arrows-v:before {\n  content: \"\\f07d\";\n}\n.fa-arrows-h:before {\n  content: \"\\f07e\";\n}\n.fa-bar-chart-o:before,\n.fa-bar-chart:before {\n  content: \"\\f080\";\n}\n.fa-twitter-square:before {\n  content: \"\\f081\";\n}\n.fa-facebook-square:before {\n  content: \"\\f082\";\n}\n.fa-camera-retro:before {\n  content: \"\\f083\";\n}\n.fa-key:before {\n  content: \"\\f084\";\n}\n.fa-gears:before,\n.fa-cogs:before {\n  content: \"\\f085\";\n}\n.fa-comments:before {\n  content: \"\\f086\";\n}\n.fa-thumbs-o-up:before {\n  content: \"\\f087\";\n}\n.fa-thumbs-o-down:before {\n  content: \"\\f088\";\n}\n.fa-star-half:before {\n  content: \"\\f089\";\n}\n.fa-heart-o:before {\n  content: \"\\f08a\";\n}\n.fa-sign-out:before {\n  content: \"\\f08b\";\n}\n.fa-linkedin-square:before {\n  content: \"\\f08c\";\n}\n.fa-thumb-tack:before {\n  content: \"\\f08d\";\n}\n.fa-external-link:before {\n  content: \"\\f08e\";\n}\n.fa-sign-in:before {\n  content: \"\\f090\";\n}\n.fa-trophy:before {\n  content: \"\\f091\";\n}\n.fa-github-square:before {\n  content: \"\\f092\";\n}\n.fa-upload:before {\n  content: \"\\f093\";\n}\n.fa-lemon-o:before {\n  content: \"\\f094\";\n}\n.fa-phone:before {\n  content: \"\\f095\";\n}\n.fa-square-o:before {\n  content: \"\\f096\";\n}\n.fa-bookmark-o:before {\n  content: \"\\f097\";\n}\n.fa-phone-square:before {\n  content: \"\\f098\";\n}\n.fa-twitter:before {\n  content: \"\\f099\";\n}\n.fa-facebook-f:before,\n.fa-facebook:before {\n  content: \"\\f09a\";\n}\n.fa-github:before {\n  content: \"\\f09b\";\n}\n.fa-unlock:before {\n  content: \"\\f09c\";\n}\n.fa-credit-card:before {\n  content: \"\\f09d\";\n}\n.fa-feed:before,\n.fa-rss:before {\n  content: \"\\f09e\";\n}\n.fa-hdd-o:before {\n  content: \"\\f0a0\";\n}\n.fa-bullhorn:before {\n  content: \"\\f0a1\";\n}\n.fa-bell:before {\n  content: \"\\f0f3\";\n}\n.fa-certificate:before {\n  content: \"\\f0a3\";\n}\n.fa-hand-o-right:before {\n  content: \"\\f0a4\";\n}\n.fa-hand-o-left:before {\n  content: \"\\f0a5\";\n}\n.fa-hand-o-up:before {\n  content: \"\\f0a6\";\n}\n.fa-hand-o-down:before {\n  content: \"\\f0a7\";\n}\n.fa-arrow-circle-left:before {\n  content: \"\\f0a8\";\n}\n.fa-arrow-circle-right:before {\n  content: \"\\f0a9\";\n}\n.fa-arrow-circle-up:before {\n  content: \"\\f0aa\";\n}\n.fa-arrow-circle-down:before {\n  content: \"\\f0ab\";\n}\n.fa-globe:before {\n  content: \"\\f0ac\";\n}\n.fa-wrench:before {\n  content: \"\\f0ad\";\n}\n.fa-tasks:before {\n  content: \"\\f0ae\";\n}\n.fa-filter:before {\n  content: \"\\f0b0\";\n}\n.fa-briefcase:before {\n  content: \"\\f0b1\";\n}\n.fa-arrows-alt:before {\n  content: \"\\f0b2\";\n}\n.fa-group:before,\n.fa-users:before {\n  content: \"\\f0c0\";\n}\n.fa-chain:before,\n.fa-link:before {\n  content: \"\\f0c1\";\n}\n.fa-cloud:before {\n  content: \"\\f0c2\";\n}\n.fa-flask:before {\n  content: \"\\f0c3\";\n}\n.fa-cut:before,\n.fa-scissors:before {\n  content: \"\\f0c4\";\n}\n.fa-copy:before,\n.fa-files-o:before {\n  content: \"\\f0c5\";\n}\n.fa-paperclip:before {\n  content: \"\\f0c6\";\n}\n.fa-save:before,\n.fa-floppy-o:before {\n  content: \"\\f0c7\";\n}\n.fa-square:before {\n  content: \"\\f0c8\";\n}\n.fa-navicon:before,\n.fa-reorder:before,\n.fa-bars:before {\n  content: \"\\f0c9\";\n}\n.fa-list-ul:before {\n  content: \"\\f0ca\";\n}\n.fa-list-ol:before {\n  content: \"\\f0cb\";\n}\n.fa-strikethrough:before {\n  content: \"\\f0cc\";\n}\n.fa-underline:before {\n  content: \"\\f0cd\";\n}\n.fa-table:before {\n  content: \"\\f0ce\";\n}\n.fa-magic:before {\n  content: \"\\f0d0\";\n}\n.fa-truck:before {\n  content: \"\\f0d1\";\n}\n.fa-pinterest:before {\n  content: \"\\f0d2\";\n}\n.fa-pinterest-square:before {\n  content: \"\\f0d3\";\n}\n.fa-google-plus-square:before {\n  content: \"\\f0d4\";\n}\n.fa-google-plus:before {\n  content: \"\\f0d5\";\n}\n.fa-money:before {\n  content: \"\\f0d6\";\n}\n.fa-caret-down:before {\n  content: \"\\f0d7\";\n}\n.fa-caret-up:before {\n  content: \"\\f0d8\";\n}\n.fa-caret-left:before {\n  content: \"\\f0d9\";\n}\n.fa-caret-right:before {\n  content: \"\\f0da\";\n}\n.fa-columns:before {\n  content: \"\\f0db\";\n}\n.fa-unsorted:before,\n.fa-sort:before {\n  content: \"\\f0dc\";\n}\n.fa-sort-down:before,\n.fa-sort-desc:before {\n  content: \"\\f0dd\";\n}\n.fa-sort-up:before,\n.fa-sort-asc:before {\n  content: \"\\f0de\";\n}\n.fa-envelope:before {\n  content: \"\\f0e0\";\n}\n.fa-linkedin:before {\n  content: \"\\f0e1\";\n}\n.fa-rotate-left:before,\n.fa-undo:before {\n  content: \"\\f0e2\";\n}\n.fa-legal:before,\n.fa-gavel:before {\n  content: \"\\f0e3\";\n}\n.fa-dashboard:before,\n.fa-tachometer:before {\n  content: \"\\f0e4\";\n}\n.fa-comment-o:before {\n  content: \"\\f0e5\";\n}\n.fa-comments-o:before {\n  content: \"\\f0e6\";\n}\n.fa-flash:before,\n.fa-bolt:before {\n  content: \"\\f0e7\";\n}\n.fa-sitemap:before {\n  content: \"\\f0e8\";\n}\n.fa-umbrella:before {\n  content: \"\\f0e9\";\n}\n.fa-paste:before,\n.fa-clipboard:before {\n  content: \"\\f0ea\";\n}\n.fa-lightbulb-o:before {\n  content: \"\\f0eb\";\n}\n.fa-exchange:before {\n  content: \"\\f0ec\";\n}\n.fa-cloud-download:before {\n  content: \"\\f0ed\";\n}\n.fa-cloud-upload:before {\n  content: \"\\f0ee\";\n}\n.fa-user-md:before {\n  content: \"\\f0f0\";\n}\n.fa-stethoscope:before {\n  content: \"\\f0f1\";\n}\n.fa-suitcase:before {\n  content: \"\\f0f2\";\n}\n.fa-bell-o:before {\n  content: \"\\f0a2\";\n}\n.fa-coffee:before {\n  content: \"\\f0f4\";\n}\n.fa-cutlery:before {\n  content: \"\\f0f5\";\n}\n.fa-file-text-o:before {\n  content: \"\\f0f6\";\n}\n.fa-building-o:before {\n  content: \"\\f0f7\";\n}\n.fa-hospital-o:before {\n  content: \"\\f0f8\";\n}\n.fa-ambulance:before {\n  content: \"\\f0f9\";\n}\n.fa-medkit:before {\n  content: \"\\f0fa\";\n}\n.fa-fighter-jet:before {\n  content: \"\\f0fb\";\n}\n.fa-beer:before {\n  content: \"\\f0fc\";\n}\n.fa-h-square:before {\n  content: \"\\f0fd\";\n}\n.fa-plus-square:before {\n  content: \"\\f0fe\";\n}\n.fa-angle-double-left:before {\n  content: \"\\f100\";\n}\n.fa-angle-double-right:before {\n  content: \"\\f101\";\n}\n.fa-angle-double-up:before {\n  content: \"\\f102\";\n}\n.fa-angle-double-down:before {\n  content: \"\\f103\";\n}\n.fa-angle-left:before {\n  content: \"\\f104\";\n}\n.fa-angle-right:before {\n  content: \"\\f105\";\n}\n.fa-angle-up:before {\n  content: \"\\f106\";\n}\n.fa-angle-down:before {\n  content: \"\\f107\";\n}\n.fa-desktop:before {\n  content: \"\\f108\";\n}\n.fa-laptop:before {\n  content: \"\\f109\";\n}\n.fa-tablet:before {\n  content: \"\\f10a\";\n}\n.fa-mobile-phone:before,\n.fa-mobile:before {\n  content: \"\\f10b\";\n}\n.fa-circle-o:before {\n  content: \"\\f10c\";\n}\n.fa-quote-left:before {\n  content: \"\\f10d\";\n}\n.fa-quote-right:before {\n  content: \"\\f10e\";\n}\n.fa-spinner:before {\n  content: \"\\f110\";\n}\n.fa-circle:before {\n  content: \"\\f111\";\n}\n.fa-mail-reply:before,\n.fa-reply:before {\n  content: \"\\f112\";\n}\n.fa-github-alt:before {\n  content: \"\\f113\";\n}\n.fa-folder-o:before {\n  content: \"\\f114\";\n}\n.fa-folder-open-o:before {\n  content: \"\\f115\";\n}\n.fa-smile-o:before {\n  content: \"\\f118\";\n}\n.fa-frown-o:before {\n  content: \"\\f119\";\n}\n.fa-meh-o:before {\n  content: \"\\f11a\";\n}\n.fa-gamepad:before {\n  content: \"\\f11b\";\n}\n.fa-keyboard-o:before {\n  content: \"\\f11c\";\n}\n.fa-flag-o:before {\n  content: \"\\f11d\";\n}\n.fa-flag-checkered:before {\n  content: \"\\f11e\";\n}\n.fa-terminal:before {\n  content: \"\\f120\";\n}\n.fa-code:before {\n  content: \"\\f121\";\n}\n.fa-mail-reply-all:before,\n.fa-reply-all:before {\n  content: \"\\f122\";\n}\n.fa-star-half-empty:before,\n.fa-star-half-full:before,\n.fa-star-half-o:before {\n  content: \"\\f123\";\n}\n.fa-location-arrow:before {\n  content: \"\\f124\";\n}\n.fa-crop:before {\n  content: \"\\f125\";\n}\n.fa-code-fork:before {\n  content: \"\\f126\";\n}\n.fa-unlink:before,\n.fa-chain-broken:before {\n  content: \"\\f127\";\n}\n.fa-question:before {\n  content: \"\\f128\";\n}\n.fa-info:before {\n  content: \"\\f129\";\n}\n.fa-exclamation:before {\n  content: \"\\f12a\";\n}\n.fa-superscript:before {\n  content: \"\\f12b\";\n}\n.fa-subscript:before {\n  content: \"\\f12c\";\n}\n.fa-eraser:before {\n  content: \"\\f12d\";\n}\n.fa-puzzle-piece:before {\n  content: \"\\f12e\";\n}\n.fa-microphone:before {\n  content: \"\\f130\";\n}\n.fa-microphone-slash:before {\n  content: \"\\f131\";\n}\n.fa-shield:before {\n  content: \"\\f132\";\n}\n.fa-calendar-o:before {\n  content: \"\\f133\";\n}\n.fa-fire-extinguisher:before {\n  content: \"\\f134\";\n}\n.fa-rocket:before {\n  content: \"\\f135\";\n}\n.fa-maxcdn:before {\n  content: \"\\f136\";\n}\n.fa-chevron-circle-left:before {\n  content: \"\\f137\";\n}\n.fa-chevron-circle-right:before {\n  content: \"\\f138\";\n}\n.fa-chevron-circle-up:before {\n  content: \"\\f139\";\n}\n.fa-chevron-circle-down:before {\n  content: \"\\f13a\";\n}\n.fa-html5:before {\n  content: \"\\f13b\";\n}\n.fa-css3:before {\n  content: \"\\f13c\";\n}\n.fa-anchor:before {\n  content: \"\\f13d\";\n}\n.fa-unlock-alt:before {\n  content: \"\\f13e\";\n}\n.fa-bullseye:before {\n  content: \"\\f140\";\n}\n.fa-ellipsis-h:before {\n  content: \"\\f141\";\n}\n.fa-ellipsis-v:before {\n  content: \"\\f142\";\n}\n.fa-rss-square:before {\n  content: \"\\f143\";\n}\n.fa-play-circle:before {\n  content: \"\\f144\";\n}\n.fa-ticket:before {\n  content: \"\\f145\";\n}\n.fa-minus-square:before {\n  content: \"\\f146\";\n}\n.fa-minus-square-o:before {\n  content: \"\\f147\";\n}\n.fa-level-up:before {\n  content: \"\\f148\";\n}\n.fa-level-down:before {\n  content: \"\\f149\";\n}\n.fa-check-square:before {\n  content: \"\\f14a\";\n}\n.fa-pencil-square:before {\n  content: \"\\f14b\";\n}\n.fa-external-link-square:before {\n  content: \"\\f14c\";\n}\n.fa-share-square:before {\n  content: \"\\f14d\";\n}\n.fa-compass:before {\n  content: \"\\f14e\";\n}\n.fa-toggle-down:before,\n.fa-caret-square-o-down:before {\n  content: \"\\f150\";\n}\n.fa-toggle-up:before,\n.fa-caret-square-o-up:before {\n  content: \"\\f151\";\n}\n.fa-toggle-right:before,\n.fa-caret-square-o-right:before {\n  content: \"\\f152\";\n}\n.fa-euro:before,\n.fa-eur:before {\n  content: \"\\f153\";\n}\n.fa-gbp:before {\n  content: \"\\f154\";\n}\n.fa-dollar:before,\n.fa-usd:before {\n  content: \"\\f155\";\n}\n.fa-rupee:before,\n.fa-inr:before {\n  content: \"\\f156\";\n}\n.fa-cny:before,\n.fa-rmb:before,\n.fa-yen:before,\n.fa-jpy:before {\n  content: \"\\f157\";\n}\n.fa-ruble:before,\n.fa-rouble:before,\n.fa-rub:before {\n  content: \"\\f158\";\n}\n.fa-won:before,\n.fa-krw:before {\n  content: \"\\f159\";\n}\n.fa-bitcoin:before,\n.fa-btc:before {\n  content: \"\\f15a\";\n}\n.fa-file:before {\n  content: \"\\f15b\";\n}\n.fa-file-text:before {\n  content: \"\\f15c\";\n}\n.fa-sort-alpha-asc:before {\n  content: \"\\f15d\";\n}\n.fa-sort-alpha-desc:before {\n  content: \"\\f15e\";\n}\n.fa-sort-amount-asc:before {\n  content: \"\\f160\";\n}\n.fa-sort-amount-desc:before {\n  content: \"\\f161\";\n}\n.fa-sort-numeric-asc:before {\n  content: \"\\f162\";\n}\n.fa-sort-numeric-desc:before {\n  content: \"\\f163\";\n}\n.fa-thumbs-up:before {\n  content: \"\\f164\";\n}\n.fa-thumbs-down:before {\n  content: \"\\f165\";\n}\n.fa-youtube-square:before {\n  content: \"\\f166\";\n}\n.fa-youtube:before {\n  content: \"\\f167\";\n}\n.fa-xing:before {\n  content: \"\\f168\";\n}\n.fa-xing-square:before {\n  content: \"\\f169\";\n}\n.fa-youtube-play:before {\n  content: \"\\f16a\";\n}\n.fa-dropbox:before {\n  content: \"\\f16b\";\n}\n.fa-stack-overflow:before {\n  content: \"\\f16c\";\n}\n.fa-instagram:before {\n  content: \"\\f16d\";\n}\n.fa-flickr:before {\n  content: \"\\f16e\";\n}\n.fa-adn:before {\n  content: \"\\f170\";\n}\n.fa-bitbucket:before {\n  content: \"\\f171\";\n}\n.fa-bitbucket-square:before {\n  content: \"\\f172\";\n}\n.fa-tumblr:before {\n  content: \"\\f173\";\n}\n.fa-tumblr-square:before {\n  content: \"\\f174\";\n}\n.fa-long-arrow-down:before {\n  content: \"\\f175\";\n}\n.fa-long-arrow-up:before {\n  content: \"\\f176\";\n}\n.fa-long-arrow-left:before {\n  content: \"\\f177\";\n}\n.fa-long-arrow-right:before {\n  content: \"\\f178\";\n}\n.fa-apple:before {\n  content: \"\\f179\";\n}\n.fa-windows:before {\n  content: \"\\f17a\";\n}\n.fa-android:before {\n  content: \"\\f17b\";\n}\n.fa-linux:before {\n  content: \"\\f17c\";\n}\n.fa-dribbble:before {\n  content: \"\\f17d\";\n}\n.fa-skype:before {\n  content: \"\\f17e\";\n}\n.fa-foursquare:before {\n  content: \"\\f180\";\n}\n.fa-trello:before {\n  content: \"\\f181\";\n}\n.fa-female:before {\n  content: \"\\f182\";\n}\n.fa-male:before {\n  content: \"\\f183\";\n}\n.fa-gittip:before,\n.fa-gratipay:before {\n  content: \"\\f184\";\n}\n.fa-sun-o:before {\n  content: \"\\f185\";\n}\n.fa-moon-o:before {\n  content: \"\\f186\";\n}\n.fa-archive:before {\n  content: \"\\f187\";\n}\n.fa-bug:before {\n  content: \"\\f188\";\n}\n.fa-vk:before {\n  content: \"\\f189\";\n}\n.fa-weibo:before {\n  content: \"\\f18a\";\n}\n.fa-renren:before {\n  content: \"\\f18b\";\n}\n.fa-pagelines:before {\n  content: \"\\f18c\";\n}\n.fa-stack-exchange:before {\n  content: \"\\f18d\";\n}\n.fa-arrow-circle-o-right:before {\n  content: \"\\f18e\";\n}\n.fa-arrow-circle-o-left:before {\n  content: \"\\f190\";\n}\n.fa-toggle-left:before,\n.fa-caret-square-o-left:before {\n  content: \"\\f191\";\n}\n.fa-dot-circle-o:before {\n  content: \"\\f192\";\n}\n.fa-wheelchair:before {\n  content: \"\\f193\";\n}\n.fa-vimeo-square:before {\n  content: \"\\f194\";\n}\n.fa-turkish-lira:before,\n.fa-try:before {\n  content: \"\\f195\";\n}\n.fa-plus-square-o:before {\n  content: \"\\f196\";\n}\n.fa-space-shuttle:before {\n  content: \"\\f197\";\n}\n.fa-slack:before {\n  content: \"\\f198\";\n}\n.fa-envelope-square:before {\n  content: \"\\f199\";\n}\n.fa-wordpress:before {\n  content: \"\\f19a\";\n}\n.fa-openid:before {\n  content: \"\\f19b\";\n}\n.fa-institution:before,\n.fa-bank:before,\n.fa-university:before {\n  content: \"\\f19c\";\n}\n.fa-mortar-board:before,\n.fa-graduation-cap:before {\n  content: \"\\f19d\";\n}\n.fa-yahoo:before {\n  content: \"\\f19e\";\n}\n.fa-google:before {\n  content: \"\\f1a0\";\n}\n.fa-reddit:before {\n  content: \"\\f1a1\";\n}\n.fa-reddit-square:before {\n  content: \"\\f1a2\";\n}\n.fa-stumbleupon-circle:before {\n  content: \"\\f1a3\";\n}\n.fa-stumbleupon:before {\n  content: \"\\f1a4\";\n}\n.fa-delicious:before {\n  content: \"\\f1a5\";\n}\n.fa-digg:before {\n  content: \"\\f1a6\";\n}\n.fa-pied-piper-pp:before {\n  content: \"\\f1a7\";\n}\n.fa-pied-piper-alt:before {\n  content: \"\\f1a8\";\n}\n.fa-drupal:before {\n  content: \"\\f1a9\";\n}\n.fa-joomla:before {\n  content: \"\\f1aa\";\n}\n.fa-language:before {\n  content: \"\\f1ab\";\n}\n.fa-fax:before {\n  content: \"\\f1ac\";\n}\n.fa-building:before {\n  content: \"\\f1ad\";\n}\n.fa-child:before {\n  content: \"\\f1ae\";\n}\n.fa-paw:before {\n  content: \"\\f1b0\";\n}\n.fa-spoon:before {\n  content: \"\\f1b1\";\n}\n.fa-cube:before {\n  content: \"\\f1b2\";\n}\n.fa-cubes:before {\n  content: \"\\f1b3\";\n}\n.fa-behance:before {\n  content: \"\\f1b4\";\n}\n.fa-behance-square:before {\n  content: \"\\f1b5\";\n}\n.fa-steam:before {\n  content: \"\\f1b6\";\n}\n.fa-steam-square:before {\n  content: \"\\f1b7\";\n}\n.fa-recycle:before {\n  content: \"\\f1b8\";\n}\n.fa-automobile:before,\n.fa-car:before {\n  content: \"\\f1b9\";\n}\n.fa-cab:before,\n.fa-taxi:before {\n  content: \"\\f1ba\";\n}\n.fa-tree:before {\n  content: \"\\f1bb\";\n}\n.fa-spotify:before {\n  content: \"\\f1bc\";\n}\n.fa-deviantart:before {\n  content: \"\\f1bd\";\n}\n.fa-soundcloud:before {\n  content: \"\\f1be\";\n}\n.fa-database:before {\n  content: \"\\f1c0\";\n}\n.fa-file-pdf-o:before {\n  content: \"\\f1c1\";\n}\n.fa-file-word-o:before {\n  content: \"\\f1c2\";\n}\n.fa-file-excel-o:before {\n  content: \"\\f1c3\";\n}\n.fa-file-powerpoint-o:before {\n  content: \"\\f1c4\";\n}\n.fa-file-photo-o:before,\n.fa-file-picture-o:before,\n.fa-file-image-o:before {\n  content: \"\\f1c5\";\n}\n.fa-file-zip-o:before,\n.fa-file-archive-o:before {\n  content: \"\\f1c6\";\n}\n.fa-file-sound-o:before,\n.fa-file-audio-o:before {\n  content: \"\\f1c7\";\n}\n.fa-file-movie-o:before,\n.fa-file-video-o:before {\n  content: \"\\f1c8\";\n}\n.fa-file-code-o:before {\n  content: \"\\f1c9\";\n}\n.fa-vine:before {\n  content: \"\\f1ca\";\n}\n.fa-codepen:before {\n  content: \"\\f1cb\";\n}\n.fa-jsfiddle:before {\n  content: \"\\f1cc\";\n}\n.fa-life-bouy:before,\n.fa-life-buoy:before,\n.fa-life-saver:before,\n.fa-support:before,\n.fa-life-ring:before {\n  content: \"\\f1cd\";\n}\n.fa-circle-o-notch:before {\n  content: \"\\f1ce\";\n}\n.fa-ra:before,\n.fa-resistance:before,\n.fa-rebel:before {\n  content: \"\\f1d0\";\n}\n.fa-ge:before,\n.fa-empire:before {\n  content: \"\\f1d1\";\n}\n.fa-git-square:before {\n  content: \"\\f1d2\";\n}\n.fa-git:before {\n  content: \"\\f1d3\";\n}\n.fa-y-combinator-square:before,\n.fa-yc-square:before,\n.fa-hacker-news:before {\n  content: \"\\f1d4\";\n}\n.fa-tencent-weibo:before {\n  content: \"\\f1d5\";\n}\n.fa-qq:before {\n  content: \"\\f1d6\";\n}\n.fa-wechat:before,\n.fa-weixin:before {\n  content: \"\\f1d7\";\n}\n.fa-send:before,\n.fa-paper-plane:before {\n  content: \"\\f1d8\";\n}\n.fa-send-o:before,\n.fa-paper-plane-o:before {\n  content: \"\\f1d9\";\n}\n.fa-history:before {\n  content: \"\\f1da\";\n}\n.fa-circle-thin:before {\n  content: \"\\f1db\";\n}\n.fa-header:before {\n  content: \"\\f1dc\";\n}\n.fa-paragraph:before {\n  content: \"\\f1dd\";\n}\n.fa-sliders:before {\n  content: \"\\f1de\";\n}\n.fa-share-alt:before {\n  content: \"\\f1e0\";\n}\n.fa-share-alt-square:before {\n  content: \"\\f1e1\";\n}\n.fa-bomb:before {\n  content: \"\\f1e2\";\n}\n.fa-soccer-ball-o:before,\n.fa-futbol-o:before {\n  content: \"\\f1e3\";\n}\n.fa-tty:before {\n  content: \"\\f1e4\";\n}\n.fa-binoculars:before {\n  content: \"\\f1e5\";\n}\n.fa-plug:before {\n  content: \"\\f1e6\";\n}\n.fa-slideshare:before {\n  content: \"\\f1e7\";\n}\n.fa-twitch:before {\n  content: \"\\f1e8\";\n}\n.fa-yelp:before {\n  content: \"\\f1e9\";\n}\n.fa-newspaper-o:before {\n  content: \"\\f1ea\";\n}\n.fa-wifi:before {\n  content: \"\\f1eb\";\n}\n.fa-calculator:before {\n  content: \"\\f1ec\";\n}\n.fa-paypal:before {\n  content: \"\\f1ed\";\n}\n.fa-google-wallet:before {\n  content: \"\\f1ee\";\n}\n.fa-cc-visa:before {\n  content: \"\\f1f0\";\n}\n.fa-cc-mastercard:before {\n  content: \"\\f1f1\";\n}\n.fa-cc-discover:before {\n  content: \"\\f1f2\";\n}\n.fa-cc-amex:before {\n  content: \"\\f1f3\";\n}\n.fa-cc-paypal:before {\n  content: \"\\f1f4\";\n}\n.fa-cc-stripe:before {\n  content: \"\\f1f5\";\n}\n.fa-bell-slash:before {\n  content: \"\\f1f6\";\n}\n.fa-bell-slash-o:before {\n  content: \"\\f1f7\";\n}\n.fa-trash:before {\n  content: \"\\f1f8\";\n}\n.fa-copyright:before {\n  content: \"\\f1f9\";\n}\n.fa-at:before {\n  content: \"\\f1fa\";\n}\n.fa-eyedropper:before {\n  content: \"\\f1fb\";\n}\n.fa-paint-brush:before {\n  content: \"\\f1fc\";\n}\n.fa-birthday-cake:before {\n  content: \"\\f1fd\";\n}\n.fa-area-chart:before {\n  content: \"\\f1fe\";\n}\n.fa-pie-chart:before {\n  content: \"\\f200\";\n}\n.fa-line-chart:before {\n  content: \"\\f201\";\n}\n.fa-lastfm:before {\n  content: \"\\f202\";\n}\n.fa-lastfm-square:before {\n  content: \"\\f203\";\n}\n.fa-toggle-off:before {\n  content: \"\\f204\";\n}\n.fa-toggle-on:before {\n  content: \"\\f205\";\n}\n.fa-bicycle:before {\n  content: \"\\f206\";\n}\n.fa-bus:before {\n  content: \"\\f207\";\n}\n.fa-ioxhost:before {\n  content: \"\\f208\";\n}\n.fa-angellist:before {\n  content: \"\\f209\";\n}\n.fa-cc:before {\n  content: \"\\f20a\";\n}\n.fa-shekel:before,\n.fa-sheqel:before,\n.fa-ils:before {\n  content: \"\\f20b\";\n}\n.fa-meanpath:before {\n  content: \"\\f20c\";\n}\n.fa-buysellads:before {\n  content: \"\\f20d\";\n}\n.fa-connectdevelop:before {\n  content: \"\\f20e\";\n}\n.fa-dashcube:before {\n  content: \"\\f210\";\n}\n.fa-forumbee:before {\n  content: \"\\f211\";\n}\n.fa-leanpub:before {\n  content: \"\\f212\";\n}\n.fa-sellsy:before {\n  content: \"\\f213\";\n}\n.fa-shirtsinbulk:before {\n  content: \"\\f214\";\n}\n.fa-simplybuilt:before {\n  content: \"\\f215\";\n}\n.fa-skyatlas:before {\n  content: \"\\f216\";\n}\n.fa-cart-plus:before {\n  content: \"\\f217\";\n}\n.fa-cart-arrow-down:before {\n  content: \"\\f218\";\n}\n.fa-diamond:before {\n  content: \"\\f219\";\n}\n.fa-ship:before {\n  content: \"\\f21a\";\n}\n.fa-user-secret:before {\n  content: \"\\f21b\";\n}\n.fa-motorcycle:before {\n  content: \"\\f21c\";\n}\n.fa-street-view:before {\n  content: \"\\f21d\";\n}\n.fa-heartbeat:before {\n  content: \"\\f21e\";\n}\n.fa-venus:before {\n  content: \"\\f221\";\n}\n.fa-mars:before {\n  content: \"\\f222\";\n}\n.fa-mercury:before {\n  content: \"\\f223\";\n}\n.fa-intersex:before,\n.fa-transgender:before {\n  content: \"\\f224\";\n}\n.fa-transgender-alt:before {\n  content: \"\\f225\";\n}\n.fa-venus-double:before {\n  content: \"\\f226\";\n}\n.fa-mars-double:before {\n  content: \"\\f227\";\n}\n.fa-venus-mars:before {\n  content: \"\\f228\";\n}\n.fa-mars-stroke:before {\n  content: \"\\f229\";\n}\n.fa-mars-stroke-v:before {\n  content: \"\\f22a\";\n}\n.fa-mars-stroke-h:before {\n  content: \"\\f22b\";\n}\n.fa-neuter:before {\n  content: \"\\f22c\";\n}\n.fa-genderless:before {\n  content: \"\\f22d\";\n}\n.fa-facebook-official:before {\n  content: \"\\f230\";\n}\n.fa-pinterest-p:before {\n  content: \"\\f231\";\n}\n.fa-whatsapp:before {\n  content: \"\\f232\";\n}\n.fa-server:before {\n  content: \"\\f233\";\n}\n.fa-user-plus:before {\n  content: \"\\f234\";\n}\n.fa-user-times:before {\n  content: \"\\f235\";\n}\n.fa-hotel:before,\n.fa-bed:before {\n  content: \"\\f236\";\n}\n.fa-viacoin:before {\n  content: \"\\f237\";\n}\n.fa-train:before {\n  content: \"\\f238\";\n}\n.fa-subway:before {\n  content: \"\\f239\";\n}\n.fa-medium:before {\n  content: \"\\f23a\";\n}\n.fa-yc:before,\n.fa-y-combinator:before {\n  content: \"\\f23b\";\n}\n.fa-optin-monster:before {\n  content: \"\\f23c\";\n}\n.fa-opencart:before {\n  content: \"\\f23d\";\n}\n.fa-expeditedssl:before {\n  content: \"\\f23e\";\n}\n.fa-battery-4:before,\n.fa-battery:before,\n.fa-battery-full:before {\n  content: \"\\f240\";\n}\n.fa-battery-3:before,\n.fa-battery-three-quarters:before {\n  content: \"\\f241\";\n}\n.fa-battery-2:before,\n.fa-battery-half:before {\n  content: \"\\f242\";\n}\n.fa-battery-1:before,\n.fa-battery-quarter:before {\n  content: \"\\f243\";\n}\n.fa-battery-0:before,\n.fa-battery-empty:before {\n  content: \"\\f244\";\n}\n.fa-mouse-pointer:before {\n  content: \"\\f245\";\n}\n.fa-i-cursor:before {\n  content: \"\\f246\";\n}\n.fa-object-group:before {\n  content: \"\\f247\";\n}\n.fa-object-ungroup:before {\n  content: \"\\f248\";\n}\n.fa-sticky-note:before {\n  content: \"\\f249\";\n}\n.fa-sticky-note-o:before {\n  content: \"\\f24a\";\n}\n.fa-cc-jcb:before {\n  content: \"\\f24b\";\n}\n.fa-cc-diners-club:before {\n  content: \"\\f24c\";\n}\n.fa-clone:before {\n  content: \"\\f24d\";\n}\n.fa-balance-scale:before {\n  content: \"\\f24e\";\n}\n.fa-hourglass-o:before {\n  content: \"\\f250\";\n}\n.fa-hourglass-1:before,\n.fa-hourglass-start:before {\n  content: \"\\f251\";\n}\n.fa-hourglass-2:before,\n.fa-hourglass-half:before {\n  content: \"\\f252\";\n}\n.fa-hourglass-3:before,\n.fa-hourglass-end:before {\n  content: \"\\f253\";\n}\n.fa-hourglass:before {\n  content: \"\\f254\";\n}\n.fa-hand-grab-o:before,\n.fa-hand-rock-o:before {\n  content: \"\\f255\";\n}\n.fa-hand-stop-o:before,\n.fa-hand-paper-o:before {\n  content: \"\\f256\";\n}\n.fa-hand-scissors-o:before {\n  content: \"\\f257\";\n}\n.fa-hand-lizard-o:before {\n  content: \"\\f258\";\n}\n.fa-hand-spock-o:before {\n  content: \"\\f259\";\n}\n.fa-hand-pointer-o:before {\n  content: \"\\f25a\";\n}\n.fa-hand-peace-o:before {\n  content: \"\\f25b\";\n}\n.fa-trademark:before {\n  content: \"\\f25c\";\n}\n.fa-registered:before {\n  content: \"\\f25d\";\n}\n.fa-creative-commons:before {\n  content: \"\\f25e\";\n}\n.fa-gg:before {\n  content: \"\\f260\";\n}\n.fa-gg-circle:before {\n  content: \"\\f261\";\n}\n.fa-tripadvisor:before {\n  content: \"\\f262\";\n}\n.fa-odnoklassniki:before {\n  content: \"\\f263\";\n}\n.fa-odnoklassniki-square:before {\n  content: \"\\f264\";\n}\n.fa-get-pocket:before {\n  content: \"\\f265\";\n}\n.fa-wikipedia-w:before {\n  content: \"\\f266\";\n}\n.fa-safari:before {\n  content: \"\\f267\";\n}\n.fa-chrome:before {\n  content: \"\\f268\";\n}\n.fa-firefox:before {\n  content: \"\\f269\";\n}\n.fa-opera:before {\n  content: \"\\f26a\";\n}\n.fa-internet-explorer:before {\n  content: \"\\f26b\";\n}\n.fa-tv:before,\n.fa-television:before {\n  content: \"\\f26c\";\n}\n.fa-contao:before {\n  content: \"\\f26d\";\n}\n.fa-500px:before {\n  content: \"\\f26e\";\n}\n.fa-amazon:before {\n  content: \"\\f270\";\n}\n.fa-calendar-plus-o:before {\n  content: \"\\f271\";\n}\n.fa-calendar-minus-o:before {\n  content: \"\\f272\";\n}\n.fa-calendar-times-o:before {\n  content: \"\\f273\";\n}\n.fa-calendar-check-o:before {\n  content: \"\\f274\";\n}\n.fa-industry:before {\n  content: \"\\f275\";\n}\n.fa-map-pin:before {\n  content: \"\\f276\";\n}\n.fa-map-signs:before {\n  content: \"\\f277\";\n}\n.fa-map-o:before {\n  content: \"\\f278\";\n}\n.fa-map:before {\n  content: \"\\f279\";\n}\n.fa-commenting:before {\n  content: \"\\f27a\";\n}\n.fa-commenting-o:before {\n  content: \"\\f27b\";\n}\n.fa-houzz:before {\n  content: \"\\f27c\";\n}\n.fa-vimeo:before {\n  content: \"\\f27d\";\n}\n.fa-black-tie:before {\n  content: \"\\f27e\";\n}\n.fa-fonticons:before {\n  content: \"\\f280\";\n}\n.fa-reddit-alien:before {\n  content: \"\\f281\";\n}\n.fa-edge:before {\n  content: \"\\f282\";\n}\n.fa-credit-card-alt:before {\n  content: \"\\f283\";\n}\n.fa-codiepie:before {\n  content: \"\\f284\";\n}\n.fa-modx:before {\n  content: \"\\f285\";\n}\n.fa-fort-awesome:before {\n  content: \"\\f286\";\n}\n.fa-usb:before {\n  content: \"\\f287\";\n}\n.fa-product-hunt:before {\n  content: \"\\f288\";\n}\n.fa-mixcloud:before {\n  content: \"\\f289\";\n}\n.fa-scribd:before {\n  content: \"\\f28a\";\n}\n.fa-pause-circle:before {\n  content: \"\\f28b\";\n}\n.fa-pause-circle-o:before {\n  content: \"\\f28c\";\n}\n.fa-stop-circle:before {\n  content: \"\\f28d\";\n}\n.fa-stop-circle-o:before {\n  content: \"\\f28e\";\n}\n.fa-shopping-bag:before {\n  content: \"\\f290\";\n}\n.fa-shopping-basket:before {\n  content: \"\\f291\";\n}\n.fa-hashtag:before {\n  content: \"\\f292\";\n}\n.fa-bluetooth:before {\n  content: \"\\f293\";\n}\n.fa-bluetooth-b:before {\n  content: \"\\f294\";\n}\n.fa-percent:before {\n  content: \"\\f295\";\n}\n.fa-gitlab:before {\n  content: \"\\f296\";\n}\n.fa-wpbeginner:before {\n  content: \"\\f297\";\n}\n.fa-wpforms:before {\n  content: \"\\f298\";\n}\n.fa-envira:before {\n  content: \"\\f299\";\n}\n.fa-universal-access:before {\n  content: \"\\f29a\";\n}\n.fa-wheelchair-alt:before {\n  content: \"\\f29b\";\n}\n.fa-question-circle-o:before {\n  content: \"\\f29c\";\n}\n.fa-blind:before {\n  content: \"\\f29d\";\n}\n.fa-audio-description:before {\n  content: \"\\f29e\";\n}\n.fa-volume-control-phone:before {\n  content: \"\\f2a0\";\n}\n.fa-braille:before {\n  content: \"\\f2a1\";\n}\n.fa-assistive-listening-systems:before {\n  content: \"\\f2a2\";\n}\n.fa-asl-interpreting:before,\n.fa-american-sign-language-interpreting:before {\n  content: \"\\f2a3\";\n}\n.fa-deafness:before,\n.fa-hard-of-hearing:before,\n.fa-deaf:before {\n  content: \"\\f2a4\";\n}\n.fa-glide:before {\n  content: \"\\f2a5\";\n}\n.fa-glide-g:before {\n  content: \"\\f2a6\";\n}\n.fa-signing:before,\n.fa-sign-language:before {\n  content: \"\\f2a7\";\n}\n.fa-low-vision:before {\n  content: \"\\f2a8\";\n}\n.fa-viadeo:before {\n  content: \"\\f2a9\";\n}\n.fa-viadeo-square:before {\n  content: \"\\f2aa\";\n}\n.fa-snapchat:before {\n  content: \"\\f2ab\";\n}\n.fa-snapchat-ghost:before {\n  content: \"\\f2ac\";\n}\n.fa-snapchat-square:before {\n  content: \"\\f2ad\";\n}\n.fa-pied-piper:before {\n  content: \"\\f2ae\";\n}\n.fa-first-order:before {\n  content: \"\\f2b0\";\n}\n.fa-yoast:before {\n  content: \"\\f2b1\";\n}\n.fa-themeisle:before {\n  content: \"\\f2b2\";\n}\n.fa-google-plus-circle:before,\n.fa-google-plus-official:before {\n  content: \"\\f2b3\";\n}\n.fa-fa:before,\n.fa-font-awesome:before {\n  content: \"\\f2b4\";\n}\n.fa-handshake-o:before {\n  content: \"\\f2b5\";\n}\n.fa-envelope-open:before {\n  content: \"\\f2b6\";\n}\n.fa-envelope-open-o:before {\n  content: \"\\f2b7\";\n}\n.fa-linode:before {\n  content: \"\\f2b8\";\n}\n.fa-address-book:before {\n  content: \"\\f2b9\";\n}\n.fa-address-book-o:before {\n  content: \"\\f2ba\";\n}\n.fa-vcard:before,\n.fa-address-card:before {\n  content: \"\\f2bb\";\n}\n.fa-vcard-o:before,\n.fa-address-card-o:before {\n  content: \"\\f2bc\";\n}\n.fa-user-circle:before {\n  content: \"\\f2bd\";\n}\n.fa-user-circle-o:before {\n  content: \"\\f2be\";\n}\n.fa-user-o:before {\n  content: \"\\f2c0\";\n}\n.fa-id-badge:before {\n  content: \"\\f2c1\";\n}\n.fa-drivers-license:before,\n.fa-id-card:before {\n  content: \"\\f2c2\";\n}\n.fa-drivers-license-o:before,\n.fa-id-card-o:before {\n  content: \"\\f2c3\";\n}\n.fa-quora:before {\n  content: \"\\f2c4\";\n}\n.fa-free-code-camp:before {\n  content: \"\\f2c5\";\n}\n.fa-telegram:before {\n  content: \"\\f2c6\";\n}\n.fa-thermometer-4:before,\n.fa-thermometer:before,\n.fa-thermometer-full:before {\n  content: \"\\f2c7\";\n}\n.fa-thermometer-3:before,\n.fa-thermometer-three-quarters:before {\n  content: \"\\f2c8\";\n}\n.fa-thermometer-2:before,\n.fa-thermometer-half:before {\n  content: \"\\f2c9\";\n}\n.fa-thermometer-1:before,\n.fa-thermometer-quarter:before {\n  content: \"\\f2ca\";\n}\n.fa-thermometer-0:before,\n.fa-thermometer-empty:before {\n  content: \"\\f2cb\";\n}\n.fa-shower:before {\n  content: \"\\f2cc\";\n}\n.fa-bathtub:before,\n.fa-s15:before,\n.fa-bath:before {\n  content: \"\\f2cd\";\n}\n.fa-podcast:before {\n  content: \"\\f2ce\";\n}\n.fa-window-maximize:before {\n  content: \"\\f2d0\";\n}\n.fa-window-minimize:before {\n  content: \"\\f2d1\";\n}\n.fa-window-restore:before {\n  content: \"\\f2d2\";\n}\n.fa-times-rectangle:before,\n.fa-window-close:before {\n  content: \"\\f2d3\";\n}\n.fa-times-rectangle-o:before,\n.fa-window-close-o:before {\n  content: \"\\f2d4\";\n}\n.fa-bandcamp:before {\n  content: \"\\f2d5\";\n}\n.fa-grav:before {\n  content: \"\\f2d6\";\n}\n.fa-etsy:before {\n  content: \"\\f2d7\";\n}\n.fa-imdb:before {\n  content: \"\\f2d8\";\n}\n.fa-ravelry:before {\n  content: \"\\f2d9\";\n}\n.fa-eercast:before {\n  content: \"\\f2da\";\n}\n.fa-microchip:before {\n  content: \"\\f2db\";\n}\n.fa-snowflake-o:before {\n  content: \"\\f2dc\";\n}\n.fa-superpowers:before {\n  content: \"\\f2dd\";\n}\n.fa-wpexplorer:before {\n  content: \"\\f2de\";\n}\n.fa-meetup:before {\n  content: \"\\f2e0\";\n}\n.sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  margin: -1px;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  border: 0;\n}\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n  position: static;\n  width: auto;\n  height: auto;\n  margin: 0;\n  overflow: visible;\n  clip: auto;\n}\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n  position: static;\n  width: auto;\n  height: auto;\n  margin: 0;\n  overflow: visible;\n  clip: auto;\n}\n/*!\n*\n* IPython base\n*\n*/\n.modal.fade .modal-dialog {\n  -webkit-transform: translate(0, 0);\n  -ms-transform: translate(0, 0);\n  -o-transform: translate(0, 0);\n  transform: translate(0, 0);\n}\ncode {\n  color: #000;\n}\npre {\n  font-size: inherit;\n  line-height: inherit;\n}\nlabel {\n  font-weight: normal;\n}\n/* Make the page background atleast 100% the height of the view port */\n/* Make the page itself atleast 70% the height of the view port */\n.border-box-sizing {\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n}\n.corner-all {\n  border-radius: 2px;\n}\n.no-padding {\n  padding: 0px;\n}\n/* Flexible box model classes */\n/* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */\n/* This file is a compatability layer.  It allows the usage of flexible box \nmodel layouts accross multiple browsers, including older browsers.  The newest,\nuniversal implementation of the flexible box model is used when available (see\n`Modern browsers` comments below).  Browsers that are known to implement this \nnew spec completely include:\n\n    Firefox 28.0+\n    Chrome 29.0+\n    Internet Explorer 11+ \n    Opera 17.0+\n\nBrowsers not listed, including Safari, are supported via the styling under the\n`Old browsers` comments below.\n*/\n.hbox {\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: horizontal;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: horizontal;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: horizontal;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: row;\n  align-items: stretch;\n}\n.hbox > * {\n  /* Old browsers */\n  -webkit-box-flex: 0;\n  -moz-box-flex: 0;\n  box-flex: 0;\n  /* Modern browsers */\n  flex: none;\n}\n.vbox {\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: vertical;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: vertical;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: vertical;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n}\n.vbox > * {\n  /* Old browsers */\n  -webkit-box-flex: 0;\n  -moz-box-flex: 0;\n  box-flex: 0;\n  /* Modern browsers */\n  flex: none;\n}\n.hbox.reverse,\n.vbox.reverse,\n.reverse {\n  /* Old browsers */\n  -webkit-box-direction: reverse;\n  -moz-box-direction: reverse;\n  box-direction: reverse;\n  /* Modern browsers */\n  flex-direction: row-reverse;\n}\n.hbox.box-flex0,\n.vbox.box-flex0,\n.box-flex0 {\n  /* Old browsers */\n  -webkit-box-flex: 0;\n  -moz-box-flex: 0;\n  box-flex: 0;\n  /* Modern browsers */\n  flex: none;\n  width: auto;\n}\n.hbox.box-flex1,\n.vbox.box-flex1,\n.box-flex1 {\n  /* Old browsers */\n  -webkit-box-flex: 1;\n  -moz-box-flex: 1;\n  box-flex: 1;\n  /* Modern browsers */\n  flex: 1;\n}\n.hbox.box-flex,\n.vbox.box-flex,\n.box-flex {\n  /* Old browsers */\n  /* Old browsers */\n  -webkit-box-flex: 1;\n  -moz-box-flex: 1;\n  box-flex: 1;\n  /* Modern browsers */\n  flex: 1;\n}\n.hbox.box-flex2,\n.vbox.box-flex2,\n.box-flex2 {\n  /* Old browsers */\n  -webkit-box-flex: 2;\n  -moz-box-flex: 2;\n  box-flex: 2;\n  /* Modern browsers */\n  flex: 2;\n}\n.box-group1 {\n  /*  Deprecated */\n  -webkit-box-flex-group: 1;\n  -moz-box-flex-group: 1;\n  box-flex-group: 1;\n}\n.box-group2 {\n  /* Deprecated */\n  -webkit-box-flex-group: 2;\n  -moz-box-flex-group: 2;\n  box-flex-group: 2;\n}\n.hbox.start,\n.vbox.start,\n.start {\n  /* Old browsers */\n  -webkit-box-pack: start;\n  -moz-box-pack: start;\n  box-pack: start;\n  /* Modern browsers */\n  justify-content: flex-start;\n}\n.hbox.end,\n.vbox.end,\n.end {\n  /* Old browsers */\n  -webkit-box-pack: end;\n  -moz-box-pack: end;\n  box-pack: end;\n  /* Modern browsers */\n  justify-content: flex-end;\n}\n.hbox.center,\n.vbox.center,\n.center {\n  /* Old browsers */\n  -webkit-box-pack: center;\n  -moz-box-pack: center;\n  box-pack: center;\n  /* Modern browsers */\n  justify-content: center;\n}\n.hbox.baseline,\n.vbox.baseline,\n.baseline {\n  /* Old browsers */\n  -webkit-box-pack: baseline;\n  -moz-box-pack: baseline;\n  box-pack: baseline;\n  /* Modern browsers */\n  justify-content: baseline;\n}\n.hbox.stretch,\n.vbox.stretch,\n.stretch {\n  /* Old browsers */\n  -webkit-box-pack: stretch;\n  -moz-box-pack: stretch;\n  box-pack: stretch;\n  /* Modern browsers */\n  justify-content: stretch;\n}\n.hbox.align-start,\n.vbox.align-start,\n.align-start {\n  /* Old browsers */\n  -webkit-box-align: start;\n  -moz-box-align: start;\n  box-align: start;\n  /* Modern browsers */\n  align-items: flex-start;\n}\n.hbox.align-end,\n.vbox.align-end,\n.align-end {\n  /* Old browsers */\n  -webkit-box-align: end;\n  -moz-box-align: end;\n  box-align: end;\n  /* Modern browsers */\n  align-items: flex-end;\n}\n.hbox.align-center,\n.vbox.align-center,\n.align-center {\n  /* Old browsers */\n  -webkit-box-align: center;\n  -moz-box-align: center;\n  box-align: center;\n  /* Modern browsers */\n  align-items: center;\n}\n.hbox.align-baseline,\n.vbox.align-baseline,\n.align-baseline {\n  /* Old browsers */\n  -webkit-box-align: baseline;\n  -moz-box-align: baseline;\n  box-align: baseline;\n  /* Modern browsers */\n  align-items: baseline;\n}\n.hbox.align-stretch,\n.vbox.align-stretch,\n.align-stretch {\n  /* Old browsers */\n  -webkit-box-align: stretch;\n  -moz-box-align: stretch;\n  box-align: stretch;\n  /* Modern browsers */\n  align-items: stretch;\n}\ndiv.error {\n  margin: 2em;\n  text-align: center;\n}\ndiv.error > h1 {\n  font-size: 500%;\n  line-height: normal;\n}\ndiv.error > p {\n  font-size: 200%;\n  line-height: normal;\n}\ndiv.traceback-wrapper {\n  text-align: left;\n  max-width: 800px;\n  margin: auto;\n}\ndiv.traceback-wrapper pre.traceback {\n  max-height: 600px;\n  overflow: auto;\n}\n/**\n * Primary styles\n *\n * Author: Jupyter Development Team\n */\nbody {\n  background-color: #fff;\n  /* This makes sure that the body covers the entire window and needs to\n       be in a different element than the display: box in wrapper below */\n  position: absolute;\n  left: 0px;\n  right: 0px;\n  top: 0px;\n  bottom: 0px;\n  overflow: visible;\n}\nbody > #header {\n  /* Initially hidden to prevent FLOUC */\n  display: none;\n  background-color: #fff;\n  /* Display over codemirror */\n  position: relative;\n  z-index: 100;\n}\nbody > #header #header-container {\n  display: flex;\n  flex-direction: row;\n  justify-content: space-between;\n  padding: 5px;\n  padding-bottom: 5px;\n  padding-top: 5px;\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n}\nbody > #header .header-bar {\n  width: 100%;\n  height: 1px;\n  background: #e7e7e7;\n  margin-bottom: -1px;\n}\n@media print {\n  body > #header {\n    display: none !important;\n  }\n}\n#header-spacer {\n  width: 100%;\n  visibility: hidden;\n}\n@media print {\n  #header-spacer {\n    display: none;\n  }\n}\n#ipython_notebook {\n  padding-left: 0px;\n  padding-top: 1px;\n  padding-bottom: 1px;\n}\n[dir=\"rtl\"] #ipython_notebook {\n  margin-right: 10px;\n  margin-left: 0;\n}\n[dir=\"rtl\"] #ipython_notebook.pull-left {\n  float: right !important;\n  float: right;\n}\n.flex-spacer {\n  flex: 1;\n}\n#noscript {\n  width: auto;\n  padding-top: 16px;\n  padding-bottom: 16px;\n  text-align: center;\n  font-size: 22px;\n  color: red;\n  font-weight: bold;\n}\n#ipython_notebook img {\n  height: 28px;\n}\n#site {\n  width: 100%;\n  display: none;\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n  overflow: auto;\n}\n@media print {\n  #site {\n    height: auto !important;\n  }\n}\n/* Smaller buttons */\n.ui-button .ui-button-text {\n  padding: 0.2em 0.8em;\n  font-size: 77%;\n}\ninput.ui-button {\n  padding: 0.3em 0.9em;\n}\nspan#kernel_logo_widget {\n  margin: 0 10px;\n}\nspan#login_widget {\n  float: right;\n}\n[dir=\"rtl\"] span#login_widget {\n  float: left;\n}\nspan#login_widget > .button,\n#logout {\n  color: #333;\n  background-color: #fff;\n  border-color: #ccc;\n}\nspan#login_widget > .button:focus,\n#logout:focus,\nspan#login_widget > .button.focus,\n#logout.focus {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #8c8c8c;\n}\nspan#login_widget > .button:hover,\n#logout:hover {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #adadad;\n}\nspan#login_widget > .button:active,\n#logout:active,\nspan#login_widget > .button.active,\n#logout.active,\n.open > .dropdown-togglespan#login_widget > .button,\n.open > .dropdown-toggle#logout {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #adadad;\n}\nspan#login_widget > .button:active:hover,\n#logout:active:hover,\nspan#login_widget > .button.active:hover,\n#logout.active:hover,\n.open > .dropdown-togglespan#login_widget > .button:hover,\n.open > .dropdown-toggle#logout:hover,\nspan#login_widget > .button:active:focus,\n#logout:active:focus,\nspan#login_widget > .button.active:focus,\n#logout.active:focus,\n.open > .dropdown-togglespan#login_widget > .button:focus,\n.open > .dropdown-toggle#logout:focus,\nspan#login_widget > .button:active.focus,\n#logout:active.focus,\nspan#login_widget > .button.active.focus,\n#logout.active.focus,\n.open > .dropdown-togglespan#login_widget > .button.focus,\n.open > .dropdown-toggle#logout.focus {\n  color: #333;\n  background-color: #d4d4d4;\n  border-color: #8c8c8c;\n}\nspan#login_widget > .button:active,\n#logout:active,\nspan#login_widget > .button.active,\n#logout.active,\n.open > .dropdown-togglespan#login_widget > .button,\n.open > .dropdown-toggle#logout {\n  background-image: none;\n}\nspan#login_widget > .button.disabled:hover,\n#logout.disabled:hover,\nspan#login_widget > .button[disabled]:hover,\n#logout[disabled]:hover,\nfieldset[disabled] span#login_widget > .button:hover,\nfieldset[disabled] #logout:hover,\nspan#login_widget > .button.disabled:focus,\n#logout.disabled:focus,\nspan#login_widget > .button[disabled]:focus,\n#logout[disabled]:focus,\nfieldset[disabled] span#login_widget > .button:focus,\nfieldset[disabled] #logout:focus,\nspan#login_widget > .button.disabled.focus,\n#logout.disabled.focus,\nspan#login_widget > .button[disabled].focus,\n#logout[disabled].focus,\nfieldset[disabled] span#login_widget > .button.focus,\nfieldset[disabled] #logout.focus {\n  background-color: #fff;\n  border-color: #ccc;\n}\nspan#login_widget > .button .badge,\n#logout .badge {\n  color: #fff;\n  background-color: #333;\n}\n.nav-header {\n  text-transform: none;\n}\n#header > span {\n  margin-top: 10px;\n}\n.modal_stretch .modal-dialog {\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: vertical;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: vertical;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: vertical;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  min-height: 80vh;\n}\n.modal_stretch .modal-dialog .modal-body {\n  max-height: calc(100vh - 200px);\n  overflow: auto;\n  flex: 1;\n}\n.modal-header {\n  cursor: move;\n}\n@media (min-width: 768px) {\n  .modal .modal-dialog {\n    width: 700px;\n  }\n}\n@media (min-width: 768px) {\n  select.form-control {\n    margin-left: 12px;\n    margin-right: 12px;\n  }\n}\n/*!\n*\n* IPython auth\n*\n*/\n.center-nav {\n  display: inline-block;\n  margin-bottom: -4px;\n}\n[dir=\"rtl\"] .center-nav form.pull-left {\n  float: right !important;\n  float: right;\n}\n[dir=\"rtl\"] .center-nav .navbar-text {\n  float: right;\n}\n[dir=\"rtl\"] .navbar-inner {\n  text-align: right;\n}\n[dir=\"rtl\"] div.text-left {\n  text-align: right;\n}\n/*!\n*\n* IPython tree view\n*\n*/\n/* We need an invisible input field on top of the sentense*/\n/* \"Drag file onto the list ...\" */\n.alternate_upload {\n  background-color: none;\n  display: inline;\n}\n.alternate_upload.form {\n  padding: 0;\n  margin: 0;\n}\n.alternate_upload input.fileinput {\n  position: absolute;\n  display: block;\n  width: 100%;\n  height: 100%;\n  overflow: hidden;\n  cursor: pointer;\n  opacity: 0;\n  z-index: 2;\n}\n.alternate_upload .btn-xs > input.fileinput {\n  margin: -1px -5px;\n}\n.alternate_upload .btn-upload {\n  position: relative;\n  height: 22px;\n}\n::-webkit-file-upload-button {\n  cursor: pointer;\n}\n/**\n * Primary styles\n *\n * Author: Jupyter Development Team\n */\nul#tabs {\n  margin-bottom: 4px;\n}\nul#tabs a {\n  padding-top: 6px;\n  padding-bottom: 4px;\n}\n[dir=\"rtl\"] ul#tabs.nav-tabs > li {\n  float: right;\n}\n[dir=\"rtl\"] ul#tabs.nav.nav-tabs {\n  padding-right: 0;\n}\nul.breadcrumb a:focus,\nul.breadcrumb a:hover {\n  text-decoration: none;\n}\nul.breadcrumb i.icon-home {\n  font-size: 16px;\n  margin-right: 4px;\n}\nul.breadcrumb span {\n  color: #5e5e5e;\n}\n.list_toolbar {\n  padding: 4px 0 4px 0;\n  vertical-align: middle;\n}\n.list_toolbar .tree-buttons {\n  padding-top: 1px;\n}\n[dir=\"rtl\"] .list_toolbar .tree-buttons .pull-right {\n  float: left !important;\n  float: left;\n}\n[dir=\"rtl\"] .list_toolbar .col-sm-4,\n[dir=\"rtl\"] .list_toolbar .col-sm-8 {\n  float: right;\n}\n.dynamic-buttons {\n  padding-top: 3px;\n  display: inline-block;\n}\n.list_toolbar [class*=\"span\"] {\n  min-height: 24px;\n}\n.list_header {\n  font-weight: bold;\n  background-color: #EEE;\n}\n.list_placeholder {\n  font-weight: bold;\n  padding-top: 4px;\n  padding-bottom: 4px;\n  padding-left: 7px;\n  padding-right: 7px;\n}\n.list_container {\n  margin-top: 4px;\n  margin-bottom: 20px;\n  border: 1px solid #ddd;\n  border-radius: 2px;\n}\n.list_container > div {\n  border-bottom: 1px solid #ddd;\n}\n.list_container > div:hover .list-item {\n  background-color: red;\n}\n.list_container > div:last-child {\n  border: none;\n}\n.list_item:hover .list_item {\n  background-color: #ddd;\n}\n.list_item a {\n  text-decoration: none;\n}\n.list_item:hover {\n  background-color: #fafafa;\n}\n.list_header > div,\n.list_item > div {\n  padding-top: 4px;\n  padding-bottom: 4px;\n  padding-left: 7px;\n  padding-right: 7px;\n  line-height: 22px;\n}\n.list_header > div input,\n.list_item > div input {\n  margin-right: 7px;\n  margin-left: 14px;\n  vertical-align: text-bottom;\n  line-height: 22px;\n  position: relative;\n  top: -1px;\n}\n.list_header > div .item_link,\n.list_item > div .item_link {\n  margin-left: -1px;\n  vertical-align: baseline;\n  line-height: 22px;\n}\n[dir=\"rtl\"] .list_item > div input {\n  margin-right: 0;\n}\n.new-file input[type=checkbox] {\n  visibility: hidden;\n}\n.item_name {\n  line-height: 22px;\n  height: 24px;\n}\n.item_icon {\n  font-size: 14px;\n  color: #5e5e5e;\n  margin-right: 7px;\n  margin-left: 7px;\n  line-height: 22px;\n  vertical-align: baseline;\n}\n.item_modified {\n  margin-right: 7px;\n  margin-left: 7px;\n}\n[dir=\"rtl\"] .item_modified.pull-right {\n  float: left !important;\n  float: left;\n}\n.item_buttons {\n  line-height: 1em;\n  margin-left: -5px;\n}\n.item_buttons .btn,\n.item_buttons .btn-group,\n.item_buttons .input-group {\n  float: left;\n}\n.item_buttons > .btn,\n.item_buttons > .btn-group,\n.item_buttons > .input-group {\n  margin-left: 5px;\n}\n.item_buttons .btn {\n  min-width: 13ex;\n}\n.item_buttons .running-indicator {\n  padding-top: 4px;\n  color: #5cb85c;\n}\n.item_buttons .kernel-name {\n  padding-top: 4px;\n  color: #5bc0de;\n  margin-right: 7px;\n  float: left;\n}\n[dir=\"rtl\"] .item_buttons.pull-right {\n  float: left !important;\n  float: left;\n}\n[dir=\"rtl\"] .item_buttons .kernel-name {\n  margin-left: 7px;\n  float: right;\n}\n.toolbar_info {\n  height: 24px;\n  line-height: 24px;\n}\n.list_item input:not([type=checkbox]) {\n  padding-top: 3px;\n  padding-bottom: 3px;\n  height: 22px;\n  line-height: 14px;\n  margin: 0px;\n}\n.highlight_text {\n  color: blue;\n}\n#project_name {\n  display: inline-block;\n  padding-left: 7px;\n  margin-left: -2px;\n}\n#project_name > .breadcrumb {\n  padding: 0px;\n  margin-bottom: 0px;\n  background-color: transparent;\n  font-weight: bold;\n}\n.sort_button {\n  display: inline-block;\n  padding-left: 7px;\n}\n[dir=\"rtl\"] .sort_button.pull-right {\n  float: left !important;\n  float: left;\n}\n#tree-selector {\n  padding-right: 0px;\n}\n#button-select-all {\n  min-width: 50px;\n}\n[dir=\"rtl\"] #button-select-all.btn {\n  float: right ;\n}\n#select-all {\n  margin-left: 7px;\n  margin-right: 2px;\n  margin-top: 2px;\n  height: 16px;\n}\n[dir=\"rtl\"] #select-all.pull-left {\n  float: right !important;\n  float: right;\n}\n.menu_icon {\n  margin-right: 2px;\n}\n.tab-content .row {\n  margin-left: 0px;\n  margin-right: 0px;\n}\n.folder_icon:before {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  content: \"\\f114\";\n}\n.folder_icon:before.fa-pull-left {\n  margin-right: .3em;\n}\n.folder_icon:before.fa-pull-right {\n  margin-left: .3em;\n}\n.folder_icon:before.pull-left {\n  margin-right: .3em;\n}\n.folder_icon:before.pull-right {\n  margin-left: .3em;\n}\n.notebook_icon:before {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  content: \"\\f02d\";\n  position: relative;\n  top: -1px;\n}\n.notebook_icon:before.fa-pull-left {\n  margin-right: .3em;\n}\n.notebook_icon:before.fa-pull-right {\n  margin-left: .3em;\n}\n.notebook_icon:before.pull-left {\n  margin-right: .3em;\n}\n.notebook_icon:before.pull-right {\n  margin-left: .3em;\n}\n.running_notebook_icon:before {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  content: \"\\f02d\";\n  position: relative;\n  top: -1px;\n  color: #5cb85c;\n}\n.running_notebook_icon:before.fa-pull-left {\n  margin-right: .3em;\n}\n.running_notebook_icon:before.fa-pull-right {\n  margin-left: .3em;\n}\n.running_notebook_icon:before.pull-left {\n  margin-right: .3em;\n}\n.running_notebook_icon:before.pull-right {\n  margin-left: .3em;\n}\n.file_icon:before {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  content: \"\\f016\";\n  position: relative;\n  top: -2px;\n}\n.file_icon:before.fa-pull-left {\n  margin-right: .3em;\n}\n.file_icon:before.fa-pull-right {\n  margin-left: .3em;\n}\n.file_icon:before.pull-left {\n  margin-right: .3em;\n}\n.file_icon:before.pull-right {\n  margin-left: .3em;\n}\n#notebook_toolbar .pull-right {\n  padding-top: 0px;\n  margin-right: -1px;\n}\nul#new-menu {\n  left: auto;\n  right: 0;\n}\n#new-menu .dropdown-header {\n  font-size: 10px;\n  border-bottom: 1px solid #e5e5e5;\n  padding: 0 0 3px;\n  margin: -3px 20px 0;\n}\n.kernel-menu-icon {\n  padding-right: 12px;\n  width: 24px;\n  content: \"\\f096\";\n}\n.kernel-menu-icon:before {\n  content: \"\\f096\";\n}\n.kernel-menu-icon-current:before {\n  content: \"\\f00c\";\n}\n#tab_content {\n  padding-top: 20px;\n}\n#running .panel-group .panel {\n  margin-top: 3px;\n  margin-bottom: 1em;\n}\n#running .panel-group .panel .panel-heading {\n  background-color: #EEE;\n  padding-top: 4px;\n  padding-bottom: 4px;\n  padding-left: 7px;\n  padding-right: 7px;\n  line-height: 22px;\n}\n#running .panel-group .panel .panel-heading a:focus,\n#running .panel-group .panel .panel-heading a:hover {\n  text-decoration: none;\n}\n#running .panel-group .panel .panel-body {\n  padding: 0px;\n}\n#running .panel-group .panel .panel-body .list_container {\n  margin-top: 0px;\n  margin-bottom: 0px;\n  border: 0px;\n  border-radius: 0px;\n}\n#running .panel-group .panel .panel-body .list_container .list_item {\n  border-bottom: 1px solid #ddd;\n}\n#running .panel-group .panel .panel-body .list_container .list_item:last-child {\n  border-bottom: 0px;\n}\n.delete-button {\n  display: none;\n}\n.duplicate-button {\n  display: none;\n}\n.rename-button {\n  display: none;\n}\n.move-button {\n  display: none;\n}\n.download-button {\n  display: none;\n}\n.shutdown-button {\n  display: none;\n}\n.dynamic-instructions {\n  display: inline-block;\n  padding-top: 4px;\n}\n/*!\n*\n* IPython text editor webapp\n*\n*/\n.selected-keymap i.fa {\n  padding: 0px 5px;\n}\n.selected-keymap i.fa:before {\n  content: \"\\f00c\";\n}\n#mode-menu {\n  overflow: auto;\n  max-height: 20em;\n}\n.edit_app #header {\n  -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);\n  box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);\n}\n.edit_app #menubar .navbar {\n  /* Use a negative 1 bottom margin, so the border overlaps the border of the\n    header */\n  margin-bottom: -1px;\n}\n.dirty-indicator {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  width: 20px;\n}\n.dirty-indicator.fa-pull-left {\n  margin-right: .3em;\n}\n.dirty-indicator.fa-pull-right {\n  margin-left: .3em;\n}\n.dirty-indicator.pull-left {\n  margin-right: .3em;\n}\n.dirty-indicator.pull-right {\n  margin-left: .3em;\n}\n.dirty-indicator-dirty {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  width: 20px;\n}\n.dirty-indicator-dirty.fa-pull-left {\n  margin-right: .3em;\n}\n.dirty-indicator-dirty.fa-pull-right {\n  margin-left: .3em;\n}\n.dirty-indicator-dirty.pull-left {\n  margin-right: .3em;\n}\n.dirty-indicator-dirty.pull-right {\n  margin-left: .3em;\n}\n.dirty-indicator-clean {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  width: 20px;\n}\n.dirty-indicator-clean.fa-pull-left {\n  margin-right: .3em;\n}\n.dirty-indicator-clean.fa-pull-right {\n  margin-left: .3em;\n}\n.dirty-indicator-clean.pull-left {\n  margin-right: .3em;\n}\n.dirty-indicator-clean.pull-right {\n  margin-left: .3em;\n}\n.dirty-indicator-clean:before {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  content: \"\\f00c\";\n}\n.dirty-indicator-clean:before.fa-pull-left {\n  margin-right: .3em;\n}\n.dirty-indicator-clean:before.fa-pull-right {\n  margin-left: .3em;\n}\n.dirty-indicator-clean:before.pull-left {\n  margin-right: .3em;\n}\n.dirty-indicator-clean:before.pull-right {\n  margin-left: .3em;\n}\n#filename {\n  font-size: 16pt;\n  display: table;\n  padding: 0px 5px;\n}\n#current-mode {\n  padding-left: 5px;\n  padding-right: 5px;\n}\n#texteditor-backdrop {\n  padding-top: 20px;\n  padding-bottom: 20px;\n}\n@media not print {\n  #texteditor-backdrop {\n    background-color: #EEE;\n  }\n}\n@media print {\n  #texteditor-backdrop #texteditor-container .CodeMirror-gutter,\n  #texteditor-backdrop #texteditor-container .CodeMirror-gutters {\n    background-color: #fff;\n  }\n}\n@media not print {\n  #texteditor-backdrop #texteditor-container .CodeMirror-gutter,\n  #texteditor-backdrop #texteditor-container .CodeMirror-gutters {\n    background-color: #fff;\n  }\n}\n@media not print {\n  #texteditor-backdrop #texteditor-container {\n    padding: 0px;\n    background-color: #fff;\n    -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);\n    box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);\n  }\n}\n.CodeMirror-dialog {\n  background-color: #fff;\n}\n/*!\n*\n* IPython notebook\n*\n*/\n/* CSS font colors for translated ANSI escape sequences */\n/* The color values are a mix of\n   http://www.xcolors.net/dl/baskerville-ivorylight and\n   http://www.xcolors.net/dl/euphrasia */\n.ansi-black-fg {\n  color: #3E424D;\n}\n.ansi-black-bg {\n  background-color: #3E424D;\n}\n.ansi-black-intense-fg {\n  color: #282C36;\n}\n.ansi-black-intense-bg {\n  background-color: #282C36;\n}\n.ansi-red-fg {\n  color: #E75C58;\n}\n.ansi-red-bg {\n  background-color: #E75C58;\n}\n.ansi-red-intense-fg {\n  color: #B22B31;\n}\n.ansi-red-intense-bg {\n  background-color: #B22B31;\n}\n.ansi-green-fg {\n  color: #00A250;\n}\n.ansi-green-bg {\n  background-color: #00A250;\n}\n.ansi-green-intense-fg {\n  color: #007427;\n}\n.ansi-green-intense-bg {\n  background-color: #007427;\n}\n.ansi-yellow-fg {\n  color: #DDB62B;\n}\n.ansi-yellow-bg {\n  background-color: #DDB62B;\n}\n.ansi-yellow-intense-fg {\n  color: #B27D12;\n}\n.ansi-yellow-intense-bg {\n  background-color: #B27D12;\n}\n.ansi-blue-fg {\n  color: #208FFB;\n}\n.ansi-blue-bg {\n  background-color: #208FFB;\n}\n.ansi-blue-intense-fg {\n  color: #0065CA;\n}\n.ansi-blue-intense-bg {\n  background-color: #0065CA;\n}\n.ansi-magenta-fg {\n  color: #D160C4;\n}\n.ansi-magenta-bg {\n  background-color: #D160C4;\n}\n.ansi-magenta-intense-fg {\n  color: #A03196;\n}\n.ansi-magenta-intense-bg {\n  background-color: #A03196;\n}\n.ansi-cyan-fg {\n  color: #60C6C8;\n}\n.ansi-cyan-bg {\n  background-color: #60C6C8;\n}\n.ansi-cyan-intense-fg {\n  color: #258F8F;\n}\n.ansi-cyan-intense-bg {\n  background-color: #258F8F;\n}\n.ansi-white-fg {\n  color: #C5C1B4;\n}\n.ansi-white-bg {\n  background-color: #C5C1B4;\n}\n.ansi-white-intense-fg {\n  color: #A1A6B2;\n}\n.ansi-white-intense-bg {\n  background-color: #A1A6B2;\n}\n.ansi-default-inverse-fg {\n  color: #FFFFFF;\n}\n.ansi-default-inverse-bg {\n  background-color: #000000;\n}\n.ansi-bold {\n  font-weight: bold;\n}\n.ansi-underline {\n  text-decoration: underline;\n}\n/* The following styles are deprecated an will be removed in a future version */\n.ansibold {\n  font-weight: bold;\n}\n.ansi-inverse {\n  outline: 0.5px dotted;\n}\n/* use dark versions for foreground, to improve visibility */\n.ansiblack {\n  color: black;\n}\n.ansired {\n  color: darkred;\n}\n.ansigreen {\n  color: darkgreen;\n}\n.ansiyellow {\n  color: #c4a000;\n}\n.ansiblue {\n  color: darkblue;\n}\n.ansipurple {\n  color: darkviolet;\n}\n.ansicyan {\n  color: steelblue;\n}\n.ansigray {\n  color: gray;\n}\n/* and light for background, for the same reason */\n.ansibgblack {\n  background-color: black;\n}\n.ansibgred {\n  background-color: red;\n}\n.ansibggreen {\n  background-color: green;\n}\n.ansibgyellow {\n  background-color: yellow;\n}\n.ansibgblue {\n  background-color: blue;\n}\n.ansibgpurple {\n  background-color: magenta;\n}\n.ansibgcyan {\n  background-color: cyan;\n}\n.ansibggray {\n  background-color: gray;\n}\ndiv.cell {\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: vertical;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: vertical;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: vertical;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  border-radius: 2px;\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n  border-width: 1px;\n  border-style: solid;\n  border-color: transparent;\n  width: 100%;\n  padding: 5px;\n  /* This acts as a spacer between cells, that is outside the border */\n  margin: 0px;\n  outline: none;\n  position: relative;\n  overflow: visible;\n}\ndiv.cell:before {\n  position: absolute;\n  display: block;\n  top: -1px;\n  left: -1px;\n  width: 5px;\n  height: calc(100% +  2px);\n  content: '';\n  background: transparent;\n}\ndiv.cell.jupyter-soft-selected {\n  border-left-color: #E3F2FD;\n  border-left-width: 1px;\n  padding-left: 5px;\n  border-right-color: #E3F2FD;\n  border-right-width: 1px;\n  background: #E3F2FD;\n}\n@media print {\n  div.cell.jupyter-soft-selected {\n    border-color: transparent;\n  }\n}\ndiv.cell.selected,\ndiv.cell.selected.jupyter-soft-selected {\n  border-color: #ababab;\n}\ndiv.cell.selected:before,\ndiv.cell.selected.jupyter-soft-selected:before {\n  position: absolute;\n  display: block;\n  top: -1px;\n  left: -1px;\n  width: 5px;\n  height: calc(100% +  2px);\n  content: '';\n  background: #42A5F5;\n}\n@media print {\n  div.cell.selected,\n  div.cell.selected.jupyter-soft-selected {\n    border-color: transparent;\n  }\n}\n.edit_mode div.cell.selected {\n  border-color: #66BB6A;\n}\n.edit_mode div.cell.selected:before {\n  position: absolute;\n  display: block;\n  top: -1px;\n  left: -1px;\n  width: 5px;\n  height: calc(100% +  2px);\n  content: '';\n  background: #66BB6A;\n}\n@media print {\n  .edit_mode div.cell.selected {\n    border-color: transparent;\n  }\n}\n.prompt {\n  /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */\n  min-width: 14ex;\n  /* This padding is tuned to match the padding on the CodeMirror editor. */\n  padding: 0.4em;\n  margin: 0px;\n  font-family: monospace;\n  text-align: right;\n  /* This has to match that of the the CodeMirror class line-height below */\n  line-height: 1.21429em;\n  /* Don't highlight prompt number selection */\n  -webkit-touch-callout: none;\n  -webkit-user-select: none;\n  -khtml-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n  /* Use default cursor */\n  cursor: default;\n}\n@media (max-width: 540px) {\n  .prompt {\n    text-align: left;\n  }\n}\ndiv.inner_cell {\n  min-width: 0;\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: vertical;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: vertical;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: vertical;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  /* Old browsers */\n  -webkit-box-flex: 1;\n  -moz-box-flex: 1;\n  box-flex: 1;\n  /* Modern browsers */\n  flex: 1;\n}\n/* input_area and input_prompt must match in top border and margin for alignment */\ndiv.input_area {\n  border: 1px solid #cfcfcf;\n  border-radius: 2px;\n  background: #f7f7f7;\n  line-height: 1.21429em;\n}\n/* This is needed so that empty prompt areas can collapse to zero height when there\n   is no content in the output_subarea and the prompt. The main purpose of this is\n   to make sure that empty JavaScript output_subareas have no height. */\ndiv.prompt:empty {\n  padding-top: 0;\n  padding-bottom: 0;\n}\ndiv.unrecognized_cell {\n  padding: 5px 5px 5px 0px;\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: horizontal;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: horizontal;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: horizontal;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: row;\n  align-items: stretch;\n}\ndiv.unrecognized_cell .inner_cell {\n  border-radius: 2px;\n  padding: 5px;\n  font-weight: bold;\n  color: red;\n  border: 1px solid #cfcfcf;\n  background: #eaeaea;\n}\ndiv.unrecognized_cell .inner_cell a {\n  color: inherit;\n  text-decoration: none;\n}\ndiv.unrecognized_cell .inner_cell a:hover {\n  color: inherit;\n  text-decoration: none;\n}\n@media (max-width: 540px) {\n  div.unrecognized_cell > div.prompt {\n    display: none;\n  }\n}\ndiv.code_cell {\n  /* avoid page breaking on code cells when printing */\n}\n@media print {\n  div.code_cell {\n    page-break-inside: avoid;\n  }\n}\n/* any special styling for code cells that are currently running goes here */\ndiv.input {\n  page-break-inside: avoid;\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: horizontal;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: horizontal;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: horizontal;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: row;\n  align-items: stretch;\n}\n@media (max-width: 540px) {\n  div.input {\n    /* Old browsers */\n    display: -webkit-box;\n    -webkit-box-orient: vertical;\n    -webkit-box-align: stretch;\n    display: -moz-box;\n    -moz-box-orient: vertical;\n    -moz-box-align: stretch;\n    display: box;\n    box-orient: vertical;\n    box-align: stretch;\n    /* Modern browsers */\n    display: flex;\n    flex-direction: column;\n    align-items: stretch;\n  }\n}\n/* input_area and input_prompt must match in top border and margin for alignment */\ndiv.input_prompt {\n  color: #303F9F;\n  border-top: 1px solid transparent;\n}\ndiv.input_area > div.highlight {\n  margin: 0.4em;\n  border: none;\n  padding: 0px;\n  background-color: transparent;\n}\ndiv.input_area > div.highlight > pre {\n  margin: 0px;\n  border: none;\n  padding: 0px;\n  background-color: transparent;\n}\n/* The following gets added to the <head> if it is detected that the user has a\n * monospace font with inconsistent normal/bold/italic height.  See\n * notebookmain.js.  Such fonts will have keywords vertically offset with\n * respect to the rest of the text.  The user should select a better font.\n * See: https://github.com/ipython/ipython/issues/1503\n *\n * .CodeMirror span {\n *      vertical-align: bottom;\n * }\n */\n.CodeMirror {\n  line-height: 1.21429em;\n  /* Changed from 1em to our global default */\n  font-size: 14px;\n  height: auto;\n  /* Changed to auto to autogrow */\n  background: none;\n  /* Changed from white to allow our bg to show through */\n}\n.CodeMirror-scroll {\n  /*  The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/\n  /*  We have found that if it is visible, vertical scrollbars appear with font size changes.*/\n  overflow-y: hidden;\n  overflow-x: auto;\n}\n.CodeMirror-lines {\n  /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */\n  /* we have set a different line-height and want this to scale with that. */\n  /* Note that this should set vertical padding only, since CodeMirror assumes\n       that horizontal padding will be set on CodeMirror pre */\n  padding: 0.4em 0;\n}\n.CodeMirror-linenumber {\n  padding: 0 8px 0 4px;\n}\n.CodeMirror-gutters {\n  border-bottom-left-radius: 2px;\n  border-top-left-radius: 2px;\n}\n.CodeMirror pre {\n  /* In CM3 this went to 4px from 0 in CM2. This sets horizontal padding only,\n    use .CodeMirror-lines for vertical */\n  padding: 0 0.4em;\n  border: 0;\n  border-radius: 0;\n}\n.CodeMirror-cursor {\n  border-left: 1.4px solid black;\n}\n@media screen and (min-width: 2138px) and (max-width: 4319px) {\n  .CodeMirror-cursor {\n    border-left: 2px solid black;\n  }\n}\n@media screen and (min-width: 4320px) {\n  .CodeMirror-cursor {\n    border-left: 4px solid black;\n  }\n}\n/*\n\nOriginal style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>\nAdapted from GitHub theme\n\n*/\n.highlight-base {\n  color: #000;\n}\n.highlight-variable {\n  color: #000;\n}\n.highlight-variable-2 {\n  color: #1a1a1a;\n}\n.highlight-variable-3 {\n  color: #333333;\n}\n.highlight-string {\n  color: #BA2121;\n}\n.highlight-comment {\n  color: #408080;\n  font-style: italic;\n}\n.highlight-number {\n  color: #080;\n}\n.highlight-atom {\n  color: #88F;\n}\n.highlight-keyword {\n  color: #008000;\n  font-weight: bold;\n}\n.highlight-builtin {\n  color: #008000;\n}\n.highlight-error {\n  color: #f00;\n}\n.highlight-operator {\n  color: #AA22FF;\n  font-weight: bold;\n}\n.highlight-meta {\n  color: #AA22FF;\n}\n/* previously not defined, copying from default codemirror */\n.highlight-def {\n  color: #00f;\n}\n.highlight-string-2 {\n  color: #f50;\n}\n.highlight-qualifier {\n  color: #555;\n}\n.highlight-bracket {\n  color: #997;\n}\n.highlight-tag {\n  color: #170;\n}\n.highlight-attribute {\n  color: #00c;\n}\n.highlight-header {\n  color: blue;\n}\n.highlight-quote {\n  color: #090;\n}\n.highlight-link {\n  color: #00c;\n}\n/* apply the same style to codemirror */\n.cm-s-ipython span.cm-keyword {\n  color: #008000;\n  font-weight: bold;\n}\n.cm-s-ipython span.cm-atom {\n  color: #88F;\n}\n.cm-s-ipython span.cm-number {\n  color: #080;\n}\n.cm-s-ipython span.cm-def {\n  color: #00f;\n}\n.cm-s-ipython span.cm-variable {\n  color: #000;\n}\n.cm-s-ipython span.cm-operator {\n  color: #AA22FF;\n  font-weight: bold;\n}\n.cm-s-ipython span.cm-variable-2 {\n  color: #1a1a1a;\n}\n.cm-s-ipython span.cm-variable-3 {\n  color: #333333;\n}\n.cm-s-ipython span.cm-comment {\n  color: #408080;\n  font-style: italic;\n}\n.cm-s-ipython span.cm-string {\n  color: #BA2121;\n}\n.cm-s-ipython span.cm-string-2 {\n  color: #f50;\n}\n.cm-s-ipython span.cm-meta {\n  color: #AA22FF;\n}\n.cm-s-ipython span.cm-qualifier {\n  color: #555;\n}\n.cm-s-ipython span.cm-builtin {\n  color: #008000;\n}\n.cm-s-ipython span.cm-bracket {\n  color: #997;\n}\n.cm-s-ipython span.cm-tag {\n  color: #170;\n}\n.cm-s-ipython span.cm-attribute {\n  color: #00c;\n}\n.cm-s-ipython span.cm-header {\n  color: blue;\n}\n.cm-s-ipython span.cm-quote {\n  color: #090;\n}\n.cm-s-ipython span.cm-link {\n  color: #00c;\n}\n.cm-s-ipython span.cm-error {\n  color: #f00;\n}\n.cm-s-ipython span.cm-tab {\n  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);\n  background-position: right;\n  background-repeat: no-repeat;\n}\ndiv.output_wrapper {\n  /* this position must be relative to enable descendents to be absolute within it */\n  position: relative;\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: vertical;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: vertical;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: vertical;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  z-index: 1;\n}\n/* class for the output area when it should be height-limited */\ndiv.output_scroll {\n  /* ideally, this would be max-height, but FF barfs all over that */\n  height: 24em;\n  /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */\n  width: 100%;\n  overflow: auto;\n  border-radius: 2px;\n  -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);\n  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);\n  display: block;\n}\n/* output div while it is collapsed */\ndiv.output_collapsed {\n  margin: 0px;\n  padding: 0px;\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: vertical;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: vertical;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: vertical;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n}\ndiv.out_prompt_overlay {\n  height: 100%;\n  padding: 0px 0.4em;\n  position: absolute;\n  border-radius: 2px;\n}\ndiv.out_prompt_overlay:hover {\n  /* use inner shadow to get border that is computed the same on WebKit/FF */\n  -webkit-box-shadow: inset 0 0 1px #000;\n  box-shadow: inset 0 0 1px #000;\n  background: rgba(240, 240, 240, 0.5);\n}\ndiv.output_prompt {\n  color: #D84315;\n}\n/* This class is the outer container of all output sections. */\ndiv.output_area {\n  padding: 0px;\n  page-break-inside: avoid;\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: horizontal;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: horizontal;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: horizontal;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: row;\n  align-items: stretch;\n}\ndiv.output_area .MathJax_Display {\n  text-align: left !important;\n}\ndiv.output_area .rendered_html table {\n  margin-left: 0;\n  margin-right: 0;\n}\ndiv.output_area .rendered_html img {\n  margin-left: 0;\n  margin-right: 0;\n}\ndiv.output_area img,\ndiv.output_area svg {\n  max-width: 100%;\n  height: auto;\n}\ndiv.output_area img.unconfined,\ndiv.output_area svg.unconfined {\n  max-width: none;\n}\ndiv.output_area .mglyph > img {\n  max-width: none;\n}\n/* This is needed to protect the pre formating from global settings such\n   as that of bootstrap */\n.output {\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: vertical;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: vertical;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: vertical;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n}\n@media (max-width: 540px) {\n  div.output_area {\n    /* Old browsers */\n    display: -webkit-box;\n    -webkit-box-orient: vertical;\n    -webkit-box-align: stretch;\n    display: -moz-box;\n    -moz-box-orient: vertical;\n    -moz-box-align: stretch;\n    display: box;\n    box-orient: vertical;\n    box-align: stretch;\n    /* Modern browsers */\n    display: flex;\n    flex-direction: column;\n    align-items: stretch;\n  }\n}\ndiv.output_area pre {\n  margin: 0;\n  padding: 1px 0 1px 0;\n  border: 0;\n  vertical-align: baseline;\n  color: black;\n  background-color: transparent;\n  border-radius: 0;\n}\n/* This class is for the output subarea inside the output_area and after\n   the prompt div. */\ndiv.output_subarea {\n  overflow-x: auto;\n  padding: 0.4em;\n  /* Old browsers */\n  -webkit-box-flex: 1;\n  -moz-box-flex: 1;\n  box-flex: 1;\n  /* Modern browsers */\n  flex: 1;\n  max-width: calc(100% - 14ex);\n}\ndiv.output_scroll div.output_subarea {\n  overflow-x: visible;\n}\n/* The rest of the output_* classes are for special styling of the different\n   output types */\n/* all text output has this class: */\ndiv.output_text {\n  text-align: left;\n  color: #000;\n  /* This has to match that of the the CodeMirror class line-height below */\n  line-height: 1.21429em;\n}\n/* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */\ndiv.output_stderr {\n  background: #fdd;\n  /* very light red background for stderr */\n}\ndiv.output_latex {\n  text-align: left;\n}\n/* Empty output_javascript divs should have no height */\ndiv.output_javascript:empty {\n  padding: 0;\n}\n.js-error {\n  color: darkred;\n}\n/* raw_input styles */\ndiv.raw_input_container {\n  line-height: 1.21429em;\n  padding-top: 5px;\n}\npre.raw_input_prompt {\n  /* nothing needed here. */\n}\ninput.raw_input {\n  font-family: monospace;\n  font-size: inherit;\n  color: inherit;\n  width: auto;\n  /* make sure input baseline aligns with prompt */\n  vertical-align: baseline;\n  /* padding + margin = 0.5em between prompt and cursor */\n  padding: 0em 0.25em;\n  margin: 0em 0.25em;\n}\ninput.raw_input:focus {\n  box-shadow: none;\n}\np.p-space {\n  margin-bottom: 10px;\n}\ndiv.output_unrecognized {\n  padding: 5px;\n  font-weight: bold;\n  color: red;\n}\ndiv.output_unrecognized a {\n  color: inherit;\n  text-decoration: none;\n}\ndiv.output_unrecognized a:hover {\n  color: inherit;\n  text-decoration: none;\n}\n.rendered_html {\n  color: #000;\n  /* any extras will just be numbers: */\n}\n.rendered_html em {\n  font-style: italic;\n}\n.rendered_html strong {\n  font-weight: bold;\n}\n.rendered_html u {\n  text-decoration: underline;\n}\n.rendered_html :link {\n  text-decoration: underline;\n}\n.rendered_html :visited {\n  text-decoration: underline;\n}\n.rendered_html h1 {\n  font-size: 185.7%;\n  margin: 1.08em 0 0 0;\n  font-weight: bold;\n  line-height: 1.0;\n}\n.rendered_html h2 {\n  font-size: 157.1%;\n  margin: 1.27em 0 0 0;\n  font-weight: bold;\n  line-height: 1.0;\n}\n.rendered_html h3 {\n  font-size: 128.6%;\n  margin: 1.55em 0 0 0;\n  font-weight: bold;\n  line-height: 1.0;\n}\n.rendered_html h4 {\n  font-size: 100%;\n  margin: 2em 0 0 0;\n  font-weight: bold;\n  line-height: 1.0;\n}\n.rendered_html h5 {\n  font-size: 100%;\n  margin: 2em 0 0 0;\n  font-weight: bold;\n  line-height: 1.0;\n  font-style: italic;\n}\n.rendered_html h6 {\n  font-size: 100%;\n  margin: 2em 0 0 0;\n  font-weight: bold;\n  line-height: 1.0;\n  font-style: italic;\n}\n.rendered_html h1:first-child {\n  margin-top: 0.538em;\n}\n.rendered_html h2:first-child {\n  margin-top: 0.636em;\n}\n.rendered_html h3:first-child {\n  margin-top: 0.777em;\n}\n.rendered_html h4:first-child {\n  margin-top: 1em;\n}\n.rendered_html h5:first-child {\n  margin-top: 1em;\n}\n.rendered_html h6:first-child {\n  margin-top: 1em;\n}\n.rendered_html ul:not(.list-inline),\n.rendered_html ol:not(.list-inline) {\n  padding-left: 2em;\n}\n.rendered_html ul {\n  list-style: disc;\n}\n.rendered_html ul ul {\n  list-style: square;\n  margin-top: 0;\n}\n.rendered_html ul ul ul {\n  list-style: circle;\n}\n.rendered_html ol {\n  list-style: decimal;\n}\n.rendered_html ol ol {\n  list-style: upper-alpha;\n  margin-top: 0;\n}\n.rendered_html ol ol ol {\n  list-style: lower-alpha;\n}\n.rendered_html ol ol ol ol {\n  list-style: lower-roman;\n}\n.rendered_html ol ol ol ol ol {\n  list-style: decimal;\n}\n.rendered_html * + ul {\n  margin-top: 1em;\n}\n.rendered_html * + ol {\n  margin-top: 1em;\n}\n.rendered_html hr {\n  color: black;\n  background-color: black;\n}\n.rendered_html pre {\n  margin: 1em 2em;\n  padding: 0px;\n  background-color: #fff;\n}\n.rendered_html code {\n  background-color: #eff0f1;\n}\n.rendered_html p code {\n  padding: 1px 5px;\n}\n.rendered_html pre code {\n  background-color: #fff;\n}\n.rendered_html pre,\n.rendered_html code {\n  border: 0;\n  color: #000;\n  font-size: 100%;\n}\n.rendered_html blockquote {\n  margin: 1em 2em;\n}\n.rendered_html table {\n  margin-left: auto;\n  margin-right: auto;\n  border: none;\n  border-collapse: collapse;\n  border-spacing: 0;\n  color: black;\n  font-size: 12px;\n  table-layout: fixed;\n}\n.rendered_html thead {\n  border-bottom: 1px solid black;\n  vertical-align: bottom;\n}\n.rendered_html tr,\n.rendered_html th,\n.rendered_html td {\n  text-align: right;\n  vertical-align: middle;\n  padding: 0.5em 0.5em;\n  line-height: normal;\n  white-space: normal;\n  max-width: none;\n  border: none;\n}\n.rendered_html th {\n  font-weight: bold;\n}\n.rendered_html tbody tr:nth-child(odd) {\n  background: #f5f5f5;\n}\n.rendered_html tbody tr:hover {\n  background: rgba(66, 165, 245, 0.2);\n}\n.rendered_html * + table {\n  margin-top: 1em;\n}\n.rendered_html p {\n  text-align: left;\n}\n.rendered_html * + p {\n  margin-top: 1em;\n}\n.rendered_html img {\n  display: block;\n  margin-left: auto;\n  margin-right: auto;\n}\n.rendered_html * + img {\n  margin-top: 1em;\n}\n.rendered_html img,\n.rendered_html svg {\n  max-width: 100%;\n  height: auto;\n}\n.rendered_html img.unconfined,\n.rendered_html svg.unconfined {\n  max-width: none;\n}\n.rendered_html .alert {\n  margin-bottom: initial;\n}\n.rendered_html * + .alert {\n  margin-top: 1em;\n}\n[dir=\"rtl\"] .rendered_html p {\n  text-align: right;\n}\ndiv.text_cell {\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: horizontal;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: horizontal;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: horizontal;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: row;\n  align-items: stretch;\n}\n@media (max-width: 540px) {\n  div.text_cell > div.prompt {\n    display: none;\n  }\n}\ndiv.text_cell_render {\n  /*font-family: \"Helvetica Neue\", Arial, Helvetica, Geneva, sans-serif;*/\n  outline: none;\n  resize: none;\n  width: inherit;\n  border-style: none;\n  padding: 0.5em 0.5em 0.5em 0.4em;\n  color: #000;\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n}\na.anchor-link:link {\n  text-decoration: none;\n  padding: 0px 20px;\n  visibility: hidden;\n}\nh1:hover .anchor-link,\nh2:hover .anchor-link,\nh3:hover .anchor-link,\nh4:hover .anchor-link,\nh5:hover .anchor-link,\nh6:hover .anchor-link {\n  visibility: visible;\n}\n.text_cell.rendered .input_area {\n  display: none;\n}\n.text_cell.rendered .rendered_html {\n  overflow-x: auto;\n  overflow-y: hidden;\n}\n.text_cell.rendered .rendered_html tr,\n.text_cell.rendered .rendered_html th,\n.text_cell.rendered .rendered_html td {\n  max-width: none;\n}\n.text_cell.unrendered .text_cell_render {\n  display: none;\n}\n.text_cell .dropzone .input_area {\n  border: 2px dashed #bababa;\n  margin: -1px;\n}\n.cm-header-1,\n.cm-header-2,\n.cm-header-3,\n.cm-header-4,\n.cm-header-5,\n.cm-header-6 {\n  font-weight: bold;\n  font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n}\n.cm-header-1 {\n  font-size: 185.7%;\n}\n.cm-header-2 {\n  font-size: 157.1%;\n}\n.cm-header-3 {\n  font-size: 128.6%;\n}\n.cm-header-4 {\n  font-size: 110%;\n}\n.cm-header-5 {\n  font-size: 100%;\n  font-style: italic;\n}\n.cm-header-6 {\n  font-size: 100%;\n  font-style: italic;\n}\n/*!\n*\n* IPython notebook webapp\n*\n*/\n@media (max-width: 767px) {\n  .notebook_app {\n    padding-left: 0px;\n    padding-right: 0px;\n  }\n}\n#ipython-main-app {\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n  height: 100%;\n}\ndiv#notebook_panel {\n  margin: 0px;\n  padding: 0px;\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n  height: 100%;\n}\ndiv#notebook {\n  font-size: 14px;\n  line-height: 20px;\n  overflow-y: hidden;\n  overflow-x: auto;\n  width: 100%;\n  /* This spaces the page away from the edge of the notebook area */\n  padding-top: 20px;\n  margin: 0px;\n  outline: none;\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n  min-height: 100%;\n}\n@media not print {\n  #notebook-container {\n    padding: 15px;\n    background-color: #fff;\n    min-height: 0;\n    -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);\n    box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);\n  }\n}\n@media print {\n  #notebook-container {\n    width: 100%;\n  }\n}\ndiv.ui-widget-content {\n  border: 1px solid #ababab;\n  outline: none;\n}\npre.dialog {\n  background-color: #f7f7f7;\n  border: 1px solid #ddd;\n  border-radius: 2px;\n  padding: 0.4em;\n  padding-left: 2em;\n}\np.dialog {\n  padding: 0.2em;\n}\n/* Word-wrap output correctly.  This is the CSS3 spelling, though Firefox seems\n   to not honor it correctly.  Webkit browsers (Chrome, rekonq, Safari) do.\n */\npre,\ncode,\nkbd,\nsamp {\n  white-space: pre-wrap;\n}\n#fonttest {\n  font-family: monospace;\n}\np {\n  margin-bottom: 0;\n}\n.end_space {\n  min-height: 100px;\n  transition: height .2s ease;\n}\n.notebook_app > #header {\n  -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);\n  box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);\n}\n@media not print {\n  .notebook_app {\n    background-color: #EEE;\n  }\n}\nkbd {\n  border-style: solid;\n  border-width: 1px;\n  box-shadow: none;\n  margin: 2px;\n  padding-left: 2px;\n  padding-right: 2px;\n  padding-top: 1px;\n  padding-bottom: 1px;\n}\n.jupyter-keybindings {\n  padding: 1px;\n  line-height: 24px;\n  border-bottom: 1px solid gray;\n}\n.jupyter-keybindings input {\n  margin: 0;\n  padding: 0;\n  border: none;\n}\n.jupyter-keybindings i {\n  padding: 6px;\n}\n.well code {\n  background-color: #ffffff;\n  border-color: #ababab;\n  border-width: 1px;\n  border-style: solid;\n  padding: 2px;\n  padding-top: 1px;\n  padding-bottom: 1px;\n}\n/* CSS for the cell toolbar */\n.celltoolbar {\n  border: thin solid #CFCFCF;\n  border-bottom: none;\n  background: #EEE;\n  border-radius: 2px 2px 0px 0px;\n  width: 100%;\n  height: 29px;\n  padding-right: 4px;\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: horizontal;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: horizontal;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: horizontal;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: row;\n  align-items: stretch;\n  /* Old browsers */\n  -webkit-box-pack: end;\n  -moz-box-pack: end;\n  box-pack: end;\n  /* Modern browsers */\n  justify-content: flex-end;\n  display: -webkit-flex;\n}\n@media print {\n  .celltoolbar {\n    display: none;\n  }\n}\n.ctb_hideshow {\n  display: none;\n  vertical-align: bottom;\n}\n/* ctb_show is added to the ctb_hideshow div to show the cell toolbar.\n   Cell toolbars are only shown when the ctb_global_show class is also set.\n*/\n.ctb_global_show .ctb_show.ctb_hideshow {\n  display: block;\n}\n.ctb_global_show .ctb_show + .input_area,\n.ctb_global_show .ctb_show + div.text_cell_input,\n.ctb_global_show .ctb_show ~ div.text_cell_render {\n  border-top-right-radius: 0px;\n  border-top-left-radius: 0px;\n}\n.ctb_global_show .ctb_show ~ div.text_cell_render {\n  border: 1px solid #cfcfcf;\n}\n.celltoolbar {\n  font-size: 87%;\n  padding-top: 3px;\n}\n.celltoolbar select {\n  display: block;\n  width: 100%;\n  height: 32px;\n  padding: 6px 12px;\n  font-size: 13px;\n  line-height: 1.42857143;\n  color: #555555;\n  background-color: #fff;\n  background-image: none;\n  border: 1px solid #ccc;\n  border-radius: 2px;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n  height: 30px;\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 1px;\n  width: inherit;\n  font-size: inherit;\n  height: 22px;\n  padding: 0px;\n  display: inline-block;\n}\n.celltoolbar select:focus {\n  border-color: #66afe9;\n  outline: 0;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n}\n.celltoolbar select::-moz-placeholder {\n  color: #999;\n  opacity: 1;\n}\n.celltoolbar select:-ms-input-placeholder {\n  color: #999;\n}\n.celltoolbar select::-webkit-input-placeholder {\n  color: #999;\n}\n.celltoolbar select::-ms-expand {\n  border: 0;\n  background-color: transparent;\n}\n.celltoolbar select[disabled],\n.celltoolbar select[readonly],\nfieldset[disabled] .celltoolbar select {\n  background-color: #eeeeee;\n  opacity: 1;\n}\n.celltoolbar select[disabled],\nfieldset[disabled] .celltoolbar select {\n  cursor: not-allowed;\n}\ntextarea.celltoolbar select {\n  height: auto;\n}\nselect.celltoolbar select {\n  height: 30px;\n  line-height: 30px;\n}\ntextarea.celltoolbar select,\nselect[multiple].celltoolbar select {\n  height: auto;\n}\n.celltoolbar label {\n  margin-left: 5px;\n  margin-right: 5px;\n}\n.tags_button_container {\n  width: 100%;\n  display: flex;\n}\n.tag-container {\n  display: flex;\n  flex-direction: row;\n  flex-grow: 1;\n  overflow: hidden;\n  position: relative;\n}\n.tag-container > * {\n  margin: 0 4px;\n}\n.remove-tag-btn {\n  margin-left: 4px;\n}\n.tags-input {\n  display: flex;\n}\n.cell-tag:last-child:after {\n  content: \"\";\n  position: absolute;\n  right: 0;\n  width: 40px;\n  height: 100%;\n  /* Fade to background color of cell toolbar */\n  background: linear-gradient(to right, rgba(0, 0, 0, 0), #EEE);\n}\n.tags-input > * {\n  margin-left: 4px;\n}\n.cell-tag,\n.tags-input input,\n.tags-input button {\n  display: block;\n  width: 100%;\n  height: 32px;\n  padding: 6px 12px;\n  font-size: 13px;\n  line-height: 1.42857143;\n  color: #555555;\n  background-color: #fff;\n  background-image: none;\n  border: 1px solid #ccc;\n  border-radius: 2px;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n  height: 30px;\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 1px;\n  box-shadow: none;\n  width: inherit;\n  font-size: inherit;\n  height: 22px;\n  line-height: 22px;\n  padding: 0px 4px;\n  display: inline-block;\n}\n.cell-tag:focus,\n.tags-input input:focus,\n.tags-input button:focus {\n  border-color: #66afe9;\n  outline: 0;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n}\n.cell-tag::-moz-placeholder,\n.tags-input input::-moz-placeholder,\n.tags-input button::-moz-placeholder {\n  color: #999;\n  opacity: 1;\n}\n.cell-tag:-ms-input-placeholder,\n.tags-input input:-ms-input-placeholder,\n.tags-input button:-ms-input-placeholder {\n  color: #999;\n}\n.cell-tag::-webkit-input-placeholder,\n.tags-input input::-webkit-input-placeholder,\n.tags-input button::-webkit-input-placeholder {\n  color: #999;\n}\n.cell-tag::-ms-expand,\n.tags-input input::-ms-expand,\n.tags-input button::-ms-expand {\n  border: 0;\n  background-color: transparent;\n}\n.cell-tag[disabled],\n.tags-input input[disabled],\n.tags-input button[disabled],\n.cell-tag[readonly],\n.tags-input input[readonly],\n.tags-input button[readonly],\nfieldset[disabled] .cell-tag,\nfieldset[disabled] .tags-input input,\nfieldset[disabled] .tags-input button {\n  background-color: #eeeeee;\n  opacity: 1;\n}\n.cell-tag[disabled],\n.tags-input input[disabled],\n.tags-input button[disabled],\nfieldset[disabled] .cell-tag,\nfieldset[disabled] .tags-input input,\nfieldset[disabled] .tags-input button {\n  cursor: not-allowed;\n}\ntextarea.cell-tag,\ntextarea.tags-input input,\ntextarea.tags-input button {\n  height: auto;\n}\nselect.cell-tag,\nselect.tags-input input,\nselect.tags-input button {\n  height: 30px;\n  line-height: 30px;\n}\ntextarea.cell-tag,\ntextarea.tags-input input,\ntextarea.tags-input button,\nselect[multiple].cell-tag,\nselect[multiple].tags-input input,\nselect[multiple].tags-input button {\n  height: auto;\n}\n.cell-tag,\n.tags-input button {\n  padding: 0px 4px;\n}\n.cell-tag {\n  background-color: #fff;\n  white-space: nowrap;\n}\n.tags-input input[type=text]:focus {\n  outline: none;\n  box-shadow: none;\n  border-color: #ccc;\n}\n.completions {\n  position: absolute;\n  z-index: 110;\n  overflow: hidden;\n  border: 1px solid #ababab;\n  border-radius: 2px;\n  -webkit-box-shadow: 0px 6px 10px -1px #adadad;\n  box-shadow: 0px 6px 10px -1px #adadad;\n  line-height: 1;\n}\n.completions select {\n  background: white;\n  outline: none;\n  border: none;\n  padding: 0px;\n  margin: 0px;\n  overflow: auto;\n  font-family: monospace;\n  font-size: 110%;\n  color: #000;\n  width: auto;\n}\n.completions select option.context {\n  color: #286090;\n}\n#kernel_logo_widget .current_kernel_logo {\n  display: none;\n  margin-top: -1px;\n  margin-bottom: -1px;\n  width: 32px;\n  height: 32px;\n}\n[dir=\"rtl\"] #kernel_logo_widget {\n  float: left !important;\n  float: left;\n}\n.modal .modal-body .move-path {\n  display: flex;\n  flex-direction: row;\n  justify-content: space;\n  align-items: center;\n}\n.modal .modal-body .move-path .server-root {\n  padding-right: 20px;\n}\n.modal .modal-body .move-path .path-input {\n  flex: 1;\n}\n#menubar {\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n  margin-top: 1px;\n}\n#menubar .navbar {\n  border-top: 1px;\n  border-radius: 0px 0px 2px 2px;\n  margin-bottom: 0px;\n}\n#menubar .navbar-toggle {\n  float: left;\n  padding-top: 7px;\n  padding-bottom: 7px;\n  border: none;\n}\n#menubar .navbar-collapse {\n  clear: left;\n}\n[dir=\"rtl\"] #menubar .navbar-toggle {\n  float: right;\n}\n[dir=\"rtl\"] #menubar .navbar-collapse {\n  clear: right;\n}\n[dir=\"rtl\"] #menubar .navbar-nav {\n  float: right;\n}\n[dir=\"rtl\"] #menubar .nav {\n  padding-right: 0px;\n}\n[dir=\"rtl\"] #menubar .navbar-nav > li {\n  float: right;\n}\n[dir=\"rtl\"] #menubar .navbar-right {\n  float: left !important;\n}\n[dir=\"rtl\"] ul.dropdown-menu {\n  text-align: right;\n  left: auto;\n}\n[dir=\"rtl\"] ul#new-menu.dropdown-menu {\n  right: auto;\n  left: 0;\n}\n.nav-wrapper {\n  border-bottom: 1px solid #e7e7e7;\n}\ni.menu-icon {\n  padding-top: 4px;\n}\n[dir=\"rtl\"] i.menu-icon.pull-right {\n  float: left !important;\n  float: left;\n}\nul#help_menu li a {\n  overflow: hidden;\n  padding-right: 2.2em;\n}\nul#help_menu li a i {\n  margin-right: -1.2em;\n}\n[dir=\"rtl\"] ul#help_menu li a {\n  padding-left: 2.2em;\n}\n[dir=\"rtl\"] ul#help_menu li a i {\n  margin-right: 0;\n  margin-left: -1.2em;\n}\n[dir=\"rtl\"] ul#help_menu li a i.pull-right {\n  float: left !important;\n  float: left;\n}\n.dropdown-submenu {\n  position: relative;\n}\n.dropdown-submenu > .dropdown-menu {\n  top: 0;\n  left: 100%;\n  margin-top: -6px;\n  margin-left: -1px;\n}\n[dir=\"rtl\"] .dropdown-submenu > .dropdown-menu {\n  right: 100%;\n  margin-right: -1px;\n}\n.dropdown-submenu:hover > .dropdown-menu {\n  display: block;\n}\n.dropdown-submenu > a:after {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  display: block;\n  content: \"\\f0da\";\n  float: right;\n  color: #333333;\n  margin-top: 2px;\n  margin-right: -10px;\n}\n.dropdown-submenu > a:after.fa-pull-left {\n  margin-right: .3em;\n}\n.dropdown-submenu > a:after.fa-pull-right {\n  margin-left: .3em;\n}\n.dropdown-submenu > a:after.pull-left {\n  margin-right: .3em;\n}\n.dropdown-submenu > a:after.pull-right {\n  margin-left: .3em;\n}\n[dir=\"rtl\"] .dropdown-submenu > a:after {\n  float: left;\n  content: \"\\f0d9\";\n  margin-right: 0;\n  margin-left: -10px;\n}\n.dropdown-submenu:hover > a:after {\n  color: #262626;\n}\n.dropdown-submenu.pull-left {\n  float: none;\n}\n.dropdown-submenu.pull-left > .dropdown-menu {\n  left: -100%;\n  margin-left: 10px;\n}\n#notification_area {\n  float: right !important;\n  float: right;\n  z-index: 10;\n}\n[dir=\"rtl\"] #notification_area {\n  float: left !important;\n  float: left;\n}\n.indicator_area {\n  float: right !important;\n  float: right;\n  color: #777;\n  margin-left: 5px;\n  margin-right: 5px;\n  width: 11px;\n  z-index: 10;\n  text-align: center;\n  width: auto;\n}\n[dir=\"rtl\"] .indicator_area {\n  float: left !important;\n  float: left;\n}\n#kernel_indicator {\n  float: right !important;\n  float: right;\n  color: #777;\n  margin-left: 5px;\n  margin-right: 5px;\n  width: 11px;\n  z-index: 10;\n  text-align: center;\n  width: auto;\n  border-left: 1px solid;\n}\n#kernel_indicator .kernel_indicator_name {\n  padding-left: 5px;\n  padding-right: 5px;\n}\n[dir=\"rtl\"] #kernel_indicator {\n  float: left !important;\n  float: left;\n  border-left: 0;\n  border-right: 1px solid;\n}\n#modal_indicator {\n  float: right !important;\n  float: right;\n  color: #777;\n  margin-left: 5px;\n  margin-right: 5px;\n  width: 11px;\n  z-index: 10;\n  text-align: center;\n  width: auto;\n}\n[dir=\"rtl\"] #modal_indicator {\n  float: left !important;\n  float: left;\n}\n#readonly-indicator {\n  float: right !important;\n  float: right;\n  color: #777;\n  margin-left: 5px;\n  margin-right: 5px;\n  width: 11px;\n  z-index: 10;\n  text-align: center;\n  width: auto;\n  margin-top: 2px;\n  margin-bottom: 0px;\n  margin-left: 0px;\n  margin-right: 0px;\n  display: none;\n}\n.modal_indicator:before {\n  width: 1.28571429em;\n  text-align: center;\n}\n.edit_mode .modal_indicator:before {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  content: \"\\f040\";\n}\n.edit_mode .modal_indicator:before.fa-pull-left {\n  margin-right: .3em;\n}\n.edit_mode .modal_indicator:before.fa-pull-right {\n  margin-left: .3em;\n}\n.edit_mode .modal_indicator:before.pull-left {\n  margin-right: .3em;\n}\n.edit_mode .modal_indicator:before.pull-right {\n  margin-left: .3em;\n}\n.command_mode .modal_indicator:before {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  content: ' ';\n}\n.command_mode .modal_indicator:before.fa-pull-left {\n  margin-right: .3em;\n}\n.command_mode .modal_indicator:before.fa-pull-right {\n  margin-left: .3em;\n}\n.command_mode .modal_indicator:before.pull-left {\n  margin-right: .3em;\n}\n.command_mode .modal_indicator:before.pull-right {\n  margin-left: .3em;\n}\n.kernel_idle_icon:before {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  content: \"\\f10c\";\n}\n.kernel_idle_icon:before.fa-pull-left {\n  margin-right: .3em;\n}\n.kernel_idle_icon:before.fa-pull-right {\n  margin-left: .3em;\n}\n.kernel_idle_icon:before.pull-left {\n  margin-right: .3em;\n}\n.kernel_idle_icon:before.pull-right {\n  margin-left: .3em;\n}\n.kernel_busy_icon:before {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  content: \"\\f111\";\n}\n.kernel_busy_icon:before.fa-pull-left {\n  margin-right: .3em;\n}\n.kernel_busy_icon:before.fa-pull-right {\n  margin-left: .3em;\n}\n.kernel_busy_icon:before.pull-left {\n  margin-right: .3em;\n}\n.kernel_busy_icon:before.pull-right {\n  margin-left: .3em;\n}\n.kernel_dead_icon:before {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  content: \"\\f1e2\";\n}\n.kernel_dead_icon:before.fa-pull-left {\n  margin-right: .3em;\n}\n.kernel_dead_icon:before.fa-pull-right {\n  margin-left: .3em;\n}\n.kernel_dead_icon:before.pull-left {\n  margin-right: .3em;\n}\n.kernel_dead_icon:before.pull-right {\n  margin-left: .3em;\n}\n.kernel_disconnected_icon:before {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  content: \"\\f127\";\n}\n.kernel_disconnected_icon:before.fa-pull-left {\n  margin-right: .3em;\n}\n.kernel_disconnected_icon:before.fa-pull-right {\n  margin-left: .3em;\n}\n.kernel_disconnected_icon:before.pull-left {\n  margin-right: .3em;\n}\n.kernel_disconnected_icon:before.pull-right {\n  margin-left: .3em;\n}\n.notification_widget {\n  color: #777;\n  z-index: 10;\n  background: rgba(240, 240, 240, 0.5);\n  margin-right: 4px;\n  color: #333;\n  background-color: #fff;\n  border-color: #ccc;\n}\n.notification_widget:focus,\n.notification_widget.focus {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #8c8c8c;\n}\n.notification_widget:hover {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #adadad;\n}\n.notification_widget:active,\n.notification_widget.active,\n.open > .dropdown-toggle.notification_widget {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #adadad;\n}\n.notification_widget:active:hover,\n.notification_widget.active:hover,\n.open > .dropdown-toggle.notification_widget:hover,\n.notification_widget:active:focus,\n.notification_widget.active:focus,\n.open > .dropdown-toggle.notification_widget:focus,\n.notification_widget:active.focus,\n.notification_widget.active.focus,\n.open > .dropdown-toggle.notification_widget.focus {\n  color: #333;\n  background-color: #d4d4d4;\n  border-color: #8c8c8c;\n}\n.notification_widget:active,\n.notification_widget.active,\n.open > .dropdown-toggle.notification_widget {\n  background-image: none;\n}\n.notification_widget.disabled:hover,\n.notification_widget[disabled]:hover,\nfieldset[disabled] .notification_widget:hover,\n.notification_widget.disabled:focus,\n.notification_widget[disabled]:focus,\nfieldset[disabled] .notification_widget:focus,\n.notification_widget.disabled.focus,\n.notification_widget[disabled].focus,\nfieldset[disabled] .notification_widget.focus {\n  background-color: #fff;\n  border-color: #ccc;\n}\n.notification_widget .badge {\n  color: #fff;\n  background-color: #333;\n}\n.notification_widget.warning {\n  color: #fff;\n  background-color: #f0ad4e;\n  border-color: #eea236;\n}\n.notification_widget.warning:focus,\n.notification_widget.warning.focus {\n  color: #fff;\n  background-color: #ec971f;\n  border-color: #985f0d;\n}\n.notification_widget.warning:hover {\n  color: #fff;\n  background-color: #ec971f;\n  border-color: #d58512;\n}\n.notification_widget.warning:active,\n.notification_widget.warning.active,\n.open > .dropdown-toggle.notification_widget.warning {\n  color: #fff;\n  background-color: #ec971f;\n  border-color: #d58512;\n}\n.notification_widget.warning:active:hover,\n.notification_widget.warning.active:hover,\n.open > .dropdown-toggle.notification_widget.warning:hover,\n.notification_widget.warning:active:focus,\n.notification_widget.warning.active:focus,\n.open > .dropdown-toggle.notification_widget.warning:focus,\n.notification_widget.warning:active.focus,\n.notification_widget.warning.active.focus,\n.open > .dropdown-toggle.notification_widget.warning.focus {\n  color: #fff;\n  background-color: #d58512;\n  border-color: #985f0d;\n}\n.notification_widget.warning:active,\n.notification_widget.warning.active,\n.open > .dropdown-toggle.notification_widget.warning {\n  background-image: none;\n}\n.notification_widget.warning.disabled:hover,\n.notification_widget.warning[disabled]:hover,\nfieldset[disabled] .notification_widget.warning:hover,\n.notification_widget.warning.disabled:focus,\n.notification_widget.warning[disabled]:focus,\nfieldset[disabled] .notification_widget.warning:focus,\n.notification_widget.warning.disabled.focus,\n.notification_widget.warning[disabled].focus,\nfieldset[disabled] .notification_widget.warning.focus {\n  background-color: #f0ad4e;\n  border-color: #eea236;\n}\n.notification_widget.warning .badge {\n  color: #f0ad4e;\n  background-color: #fff;\n}\n.notification_widget.success {\n  color: #fff;\n  background-color: #5cb85c;\n  border-color: #4cae4c;\n}\n.notification_widget.success:focus,\n.notification_widget.success.focus {\n  color: #fff;\n  background-color: #449d44;\n  border-color: #255625;\n}\n.notification_widget.success:hover {\n  color: #fff;\n  background-color: #449d44;\n  border-color: #398439;\n}\n.notification_widget.success:active,\n.notification_widget.success.active,\n.open > .dropdown-toggle.notification_widget.success {\n  color: #fff;\n  background-color: #449d44;\n  border-color: #398439;\n}\n.notification_widget.success:active:hover,\n.notification_widget.success.active:hover,\n.open > .dropdown-toggle.notification_widget.success:hover,\n.notification_widget.success:active:focus,\n.notification_widget.success.active:focus,\n.open > .dropdown-toggle.notification_widget.success:focus,\n.notification_widget.success:active.focus,\n.notification_widget.success.active.focus,\n.open > .dropdown-toggle.notification_widget.success.focus {\n  color: #fff;\n  background-color: #398439;\n  border-color: #255625;\n}\n.notification_widget.success:active,\n.notification_widget.success.active,\n.open > .dropdown-toggle.notification_widget.success {\n  background-image: none;\n}\n.notification_widget.success.disabled:hover,\n.notification_widget.success[disabled]:hover,\nfieldset[disabled] .notification_widget.success:hover,\n.notification_widget.success.disabled:focus,\n.notification_widget.success[disabled]:focus,\nfieldset[disabled] .notification_widget.success:focus,\n.notification_widget.success.disabled.focus,\n.notification_widget.success[disabled].focus,\nfieldset[disabled] .notification_widget.success.focus {\n  background-color: #5cb85c;\n  border-color: #4cae4c;\n}\n.notification_widget.success .badge {\n  color: #5cb85c;\n  background-color: #fff;\n}\n.notification_widget.info {\n  color: #fff;\n  background-color: #5bc0de;\n  border-color: #46b8da;\n}\n.notification_widget.info:focus,\n.notification_widget.info.focus {\n  color: #fff;\n  background-color: #31b0d5;\n  border-color: #1b6d85;\n}\n.notification_widget.info:hover {\n  color: #fff;\n  background-color: #31b0d5;\n  border-color: #269abc;\n}\n.notification_widget.info:active,\n.notification_widget.info.active,\n.open > .dropdown-toggle.notification_widget.info {\n  color: #fff;\n  background-color: #31b0d5;\n  border-color: #269abc;\n}\n.notification_widget.info:active:hover,\n.notification_widget.info.active:hover,\n.open > .dropdown-toggle.notification_widget.info:hover,\n.notification_widget.info:active:focus,\n.notification_widget.info.active:focus,\n.open > .dropdown-toggle.notification_widget.info:focus,\n.notification_widget.info:active.focus,\n.notification_widget.info.active.focus,\n.open > .dropdown-toggle.notification_widget.info.focus {\n  color: #fff;\n  background-color: #269abc;\n  border-color: #1b6d85;\n}\n.notification_widget.info:active,\n.notification_widget.info.active,\n.open > .dropdown-toggle.notification_widget.info {\n  background-image: none;\n}\n.notification_widget.info.disabled:hover,\n.notification_widget.info[disabled]:hover,\nfieldset[disabled] .notification_widget.info:hover,\n.notification_widget.info.disabled:focus,\n.notification_widget.info[disabled]:focus,\nfieldset[disabled] .notification_widget.info:focus,\n.notification_widget.info.disabled.focus,\n.notification_widget.info[disabled].focus,\nfieldset[disabled] .notification_widget.info.focus {\n  background-color: #5bc0de;\n  border-color: #46b8da;\n}\n.notification_widget.info .badge {\n  color: #5bc0de;\n  background-color: #fff;\n}\n.notification_widget.danger {\n  color: #fff;\n  background-color: #d9534f;\n  border-color: #d43f3a;\n}\n.notification_widget.danger:focus,\n.notification_widget.danger.focus {\n  color: #fff;\n  background-color: #c9302c;\n  border-color: #761c19;\n}\n.notification_widget.danger:hover {\n  color: #fff;\n  background-color: #c9302c;\n  border-color: #ac2925;\n}\n.notification_widget.danger:active,\n.notification_widget.danger.active,\n.open > .dropdown-toggle.notification_widget.danger {\n  color: #fff;\n  background-color: #c9302c;\n  border-color: #ac2925;\n}\n.notification_widget.danger:active:hover,\n.notification_widget.danger.active:hover,\n.open > .dropdown-toggle.notification_widget.danger:hover,\n.notification_widget.danger:active:focus,\n.notification_widget.danger.active:focus,\n.open > .dropdown-toggle.notification_widget.danger:focus,\n.notification_widget.danger:active.focus,\n.notification_widget.danger.active.focus,\n.open > .dropdown-toggle.notification_widget.danger.focus {\n  color: #fff;\n  background-color: #ac2925;\n  border-color: #761c19;\n}\n.notification_widget.danger:active,\n.notification_widget.danger.active,\n.open > .dropdown-toggle.notification_widget.danger {\n  background-image: none;\n}\n.notification_widget.danger.disabled:hover,\n.notification_widget.danger[disabled]:hover,\nfieldset[disabled] .notification_widget.danger:hover,\n.notification_widget.danger.disabled:focus,\n.notification_widget.danger[disabled]:focus,\nfieldset[disabled] .notification_widget.danger:focus,\n.notification_widget.danger.disabled.focus,\n.notification_widget.danger[disabled].focus,\nfieldset[disabled] .notification_widget.danger.focus {\n  background-color: #d9534f;\n  border-color: #d43f3a;\n}\n.notification_widget.danger .badge {\n  color: #d9534f;\n  background-color: #fff;\n}\ndiv#pager {\n  background-color: #fff;\n  font-size: 14px;\n  line-height: 20px;\n  overflow: hidden;\n  display: none;\n  position: fixed;\n  bottom: 0px;\n  width: 100%;\n  max-height: 50%;\n  padding-top: 8px;\n  -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);\n  box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);\n  /* Display over codemirror */\n  z-index: 100;\n  /* Hack which prevents jquery ui resizable from changing top. */\n  top: auto !important;\n}\ndiv#pager pre {\n  line-height: 1.21429em;\n  color: #000;\n  background-color: #f7f7f7;\n  padding: 0.4em;\n}\ndiv#pager #pager-button-area {\n  position: absolute;\n  top: 8px;\n  right: 20px;\n}\ndiv#pager #pager-contents {\n  position: relative;\n  overflow: auto;\n  width: 100%;\n  height: 100%;\n}\ndiv#pager #pager-contents #pager-container {\n  position: relative;\n  padding: 15px 0px;\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n}\ndiv#pager .ui-resizable-handle {\n  top: 0px;\n  height: 8px;\n  background: #f7f7f7;\n  border-top: 1px solid #cfcfcf;\n  border-bottom: 1px solid #cfcfcf;\n  /* This injects handle bars (a short, wide = symbol) for \n        the resize handle. */\n}\ndiv#pager .ui-resizable-handle::after {\n  content: '';\n  top: 2px;\n  left: 50%;\n  height: 3px;\n  width: 30px;\n  margin-left: -15px;\n  position: absolute;\n  border-top: 1px solid #cfcfcf;\n}\n.quickhelp {\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: horizontal;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: horizontal;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: horizontal;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: row;\n  align-items: stretch;\n  line-height: 1.8em;\n}\n.shortcut_key {\n  display: inline-block;\n  width: 21ex;\n  text-align: right;\n  font-family: monospace;\n}\n.shortcut_descr {\n  display: inline-block;\n  /* Old browsers */\n  -webkit-box-flex: 1;\n  -moz-box-flex: 1;\n  box-flex: 1;\n  /* Modern browsers */\n  flex: 1;\n}\nspan.save_widget {\n  height: 30px;\n  margin-top: 4px;\n  display: flex;\n  justify-content: flex-start;\n  align-items: baseline;\n  width: 50%;\n  flex: 1;\n}\nspan.save_widget span.filename {\n  height: 100%;\n  line-height: 1em;\n  margin-left: 16px;\n  border: none;\n  font-size: 146.5%;\n  text-overflow: ellipsis;\n  overflow: hidden;\n  white-space: nowrap;\n  border-radius: 2px;\n}\nspan.save_widget span.filename:hover {\n  background-color: #e6e6e6;\n}\n[dir=\"rtl\"] span.save_widget.pull-left {\n  float: right !important;\n  float: right;\n}\n[dir=\"rtl\"] span.save_widget span.filename {\n  margin-left: 0;\n  margin-right: 16px;\n}\nspan.checkpoint_status,\nspan.autosave_status {\n  font-size: small;\n  white-space: nowrap;\n  padding: 0 5px;\n}\n@media (max-width: 767px) {\n  span.save_widget {\n    font-size: small;\n    padding: 0 0 0 5px;\n  }\n  span.checkpoint_status,\n  span.autosave_status {\n    display: none;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  span.checkpoint_status {\n    display: none;\n  }\n  span.autosave_status {\n    font-size: x-small;\n  }\n}\n.toolbar {\n  padding: 0px;\n  margin-left: -5px;\n  margin-top: 2px;\n  margin-bottom: 5px;\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n}\n.toolbar select,\n.toolbar label {\n  width: auto;\n  vertical-align: middle;\n  margin-right: 2px;\n  margin-bottom: 0px;\n  display: inline;\n  font-size: 92%;\n  margin-left: 0.3em;\n  margin-right: 0.3em;\n  padding: 0px;\n  padding-top: 3px;\n}\n.toolbar .btn {\n  padding: 2px 8px;\n}\n.toolbar .btn-group {\n  margin-top: 0px;\n  margin-left: 5px;\n}\n.toolbar-btn-label {\n  margin-left: 6px;\n}\n#maintoolbar {\n  margin-bottom: -3px;\n  margin-top: -8px;\n  border: 0px;\n  min-height: 27px;\n  margin-left: 0px;\n  padding-top: 11px;\n  padding-bottom: 3px;\n}\n#maintoolbar .navbar-text {\n  float: none;\n  vertical-align: middle;\n  text-align: right;\n  margin-left: 5px;\n  margin-right: 0px;\n  margin-top: 0px;\n}\n.select-xs {\n  height: 24px;\n}\n[dir=\"rtl\"] .btn-group > .btn,\n.btn-group-vertical > .btn {\n  float: right;\n}\n.pulse,\n.dropdown-menu > li > a.pulse,\nli.pulse > a.dropdown-toggle,\nli.pulse.open > a.dropdown-toggle {\n  background-color: #F37626;\n  color: white;\n}\n/**\n * Primary styles\n *\n * Author: Jupyter Development Team\n */\n/** WARNING IF YOU ARE EDITTING THIS FILE, if this is a .css file, It has a lot\n * of chance of beeing generated from the ../less/[samename].less file, you can\n * try to get back the less file by reverting somme commit in history\n **/\n/*\n * We'll try to get something pretty, so we\n * have some strange css to have the scroll bar on\n * the left with fix button on the top right of the tooltip\n */\n@-moz-keyframes fadeOut {\n  from {\n    opacity: 1;\n  }\n  to {\n    opacity: 0;\n  }\n}\n@-webkit-keyframes fadeOut {\n  from {\n    opacity: 1;\n  }\n  to {\n    opacity: 0;\n  }\n}\n@-moz-keyframes fadeIn {\n  from {\n    opacity: 0;\n  }\n  to {\n    opacity: 1;\n  }\n}\n@-webkit-keyframes fadeIn {\n  from {\n    opacity: 0;\n  }\n  to {\n    opacity: 1;\n  }\n}\n/*properties of tooltip after \"expand\"*/\n.bigtooltip {\n  overflow: auto;\n  height: 200px;\n  -webkit-transition-property: height;\n  -webkit-transition-duration: 500ms;\n  -moz-transition-property: height;\n  -moz-transition-duration: 500ms;\n  transition-property: height;\n  transition-duration: 500ms;\n}\n/*properties of tooltip before \"expand\"*/\n.smalltooltip {\n  -webkit-transition-property: height;\n  -webkit-transition-duration: 500ms;\n  -moz-transition-property: height;\n  -moz-transition-duration: 500ms;\n  transition-property: height;\n  transition-duration: 500ms;\n  text-overflow: ellipsis;\n  overflow: hidden;\n  height: 80px;\n}\n.tooltipbuttons {\n  position: absolute;\n  padding-right: 15px;\n  top: 0px;\n  right: 0px;\n}\n.tooltiptext {\n  /*avoid the button to overlap on some docstring*/\n  padding-right: 30px;\n}\n.ipython_tooltip {\n  max-width: 700px;\n  /*fade-in animation when inserted*/\n  -webkit-animation: fadeOut 400ms;\n  -moz-animation: fadeOut 400ms;\n  animation: fadeOut 400ms;\n  -webkit-animation: fadeIn 400ms;\n  -moz-animation: fadeIn 400ms;\n  animation: fadeIn 400ms;\n  vertical-align: middle;\n  background-color: #f7f7f7;\n  overflow: visible;\n  border: #ababab 1px solid;\n  outline: none;\n  padding: 3px;\n  margin: 0px;\n  padding-left: 7px;\n  font-family: monospace;\n  min-height: 50px;\n  -moz-box-shadow: 0px 6px 10px -1px #adadad;\n  -webkit-box-shadow: 0px 6px 10px -1px #adadad;\n  box-shadow: 0px 6px 10px -1px #adadad;\n  border-radius: 2px;\n  position: absolute;\n  z-index: 1000;\n}\n.ipython_tooltip a {\n  float: right;\n}\n.ipython_tooltip .tooltiptext pre {\n  border: 0;\n  border-radius: 0;\n  font-size: 100%;\n  background-color: #f7f7f7;\n}\n.pretooltiparrow {\n  left: 0px;\n  margin: 0px;\n  top: -16px;\n  width: 40px;\n  height: 16px;\n  overflow: hidden;\n  position: absolute;\n}\n.pretooltiparrow:before {\n  background-color: #f7f7f7;\n  border: 1px #ababab solid;\n  z-index: 11;\n  content: \"\";\n  position: absolute;\n  left: 15px;\n  top: 10px;\n  width: 25px;\n  height: 25px;\n  -webkit-transform: rotate(45deg);\n  -moz-transform: rotate(45deg);\n  -ms-transform: rotate(45deg);\n  -o-transform: rotate(45deg);\n}\nul.typeahead-list i {\n  margin-left: -10px;\n  width: 18px;\n}\n[dir=\"rtl\"] ul.typeahead-list i {\n  margin-left: 0;\n  margin-right: -10px;\n}\nul.typeahead-list {\n  max-height: 80vh;\n  overflow: auto;\n}\nul.typeahead-list > li > a {\n  /** Firefox bug **/\n  /* see https://github.com/jupyter/notebook/issues/559 */\n  white-space: normal;\n}\nul.typeahead-list  > li > a.pull-right {\n  float: left !important;\n  float: left;\n}\n[dir=\"rtl\"] .typeahead-list {\n  text-align: right;\n}\n.cmd-palette .modal-body {\n  padding: 7px;\n}\n.cmd-palette form {\n  background: white;\n}\n.cmd-palette input {\n  outline: none;\n}\n.no-shortcut {\n  min-width: 20px;\n  color: transparent;\n}\n[dir=\"rtl\"] .no-shortcut.pull-right {\n  float: left !important;\n  float: left;\n}\n[dir=\"rtl\"] .command-shortcut.pull-right {\n  float: left !important;\n  float: left;\n}\n.command-shortcut:before {\n  content: \"(command mode)\";\n  padding-right: 3px;\n  color: #777777;\n}\n.edit-shortcut:before {\n  content: \"(edit)\";\n  padding-right: 3px;\n  color: #777777;\n}\n[dir=\"rtl\"] .edit-shortcut.pull-right {\n  float: left !important;\n  float: left;\n}\n#find-and-replace #replace-preview .match,\n#find-and-replace #replace-preview .insert {\n  background-color: #BBDEFB;\n  border-color: #90CAF9;\n  border-style: solid;\n  border-width: 1px;\n  border-radius: 0px;\n}\n[dir=\"ltr\"] #find-and-replace .input-group-btn + .form-control {\n  border-left: none;\n}\n[dir=\"rtl\"] #find-and-replace .input-group-btn + .form-control {\n  border-right: none;\n}\n#find-and-replace #replace-preview .replace .match {\n  background-color: #FFCDD2;\n  border-color: #EF9A9A;\n  border-radius: 0px;\n}\n#find-and-replace #replace-preview .replace .insert {\n  background-color: #C8E6C9;\n  border-color: #A5D6A7;\n  border-radius: 0px;\n}\n#find-and-replace #replace-preview {\n  max-height: 60vh;\n  overflow: auto;\n}\n#find-and-replace #replace-preview pre {\n  padding: 5px 10px;\n}\n.terminal-app {\n  background: #EEE;\n}\n.terminal-app #header {\n  background: #fff;\n  -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);\n  box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);\n}\n.terminal-app .terminal {\n  width: 100%;\n  float: left;\n  font-family: monospace;\n  color: white;\n  background: black;\n  padding: 0.4em;\n  border-radius: 2px;\n  -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);\n  box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);\n}\n.terminal-app .terminal,\n.terminal-app .terminal dummy-screen {\n  line-height: 1em;\n  font-size: 14px;\n}\n.terminal-app .terminal .xterm-rows {\n  padding: 10px;\n}\n.terminal-app .terminal-cursor {\n  color: black;\n  background: white;\n}\n.terminal-app #terminado-container {\n  margin-top: 20px;\n}\n/*# sourceMappingURL=style.min.css.map */\n    </style>\n<style type=\"text/css\">\n    pre { line-height: 125%; }\ntd.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\nspan.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\ntd.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\nspan.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.highlight .hll { background-color: #ffffcc }\n.highlight { background: #f8f8f8; }\n.highlight .c { color: #408080; font-style: italic } /* Comment */\n.highlight .err { border: 1px solid #FF0000 } /* Error */\n.highlight .k { color: #008000; font-weight: bold } /* Keyword */\n.highlight .o { color: #666666 } /* Operator */\n.highlight .ch { color: #408080; font-style: italic } /* Comment.Hashbang */\n.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */\n.highlight .cp { color: #BC7A00 } /* Comment.Preproc */\n.highlight .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */\n.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */\n.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */\n.highlight .gd { color: #A00000 } /* Generic.Deleted */\n.highlight .ge { font-style: italic } /* Generic.Emph */\n.highlight .gr { color: #FF0000 } /* Generic.Error */\n.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */\n.highlight .gi { color: #00A000 } /* Generic.Inserted */\n.highlight .go { color: #888888 } /* Generic.Output */\n.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */\n.highlight .gs { font-weight: bold } /* Generic.Strong */\n.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */\n.highlight .gt { color: #0044DD } /* Generic.Traceback */\n.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */\n.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */\n.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */\n.highlight .kp { color: #008000 } /* Keyword.Pseudo */\n.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */\n.highlight .kt { color: #B00040 } /* Keyword.Type */\n.highlight .m { color: #666666 } /* Literal.Number */\n.highlight .s { color: #BA2121 } /* Literal.String */\n.highlight .na { color: #7D9029 } /* Name.Attribute */\n.highlight .nb { color: #008000 } /* Name.Builtin */\n.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */\n.highlight .no { color: #880000 } /* Name.Constant */\n.highlight .nd { color: #AA22FF } /* Name.Decorator */\n.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */\n.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */\n.highlight .nf { color: #0000FF } /* Name.Function */\n.highlight .nl { color: #A0A000 } /* Name.Label */\n.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */\n.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */\n.highlight .nv { color: #19177C } /* Name.Variable */\n.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */\n.highlight .w { color: #bbbbbb } /* Text.Whitespace */\n.highlight .mb { color: #666666 } /* Literal.Number.Bin */\n.highlight .mf { color: #666666 } /* Literal.Number.Float */\n.highlight .mh { color: #666666 } /* Literal.Number.Hex */\n.highlight .mi { color: #666666 } /* Literal.Number.Integer */\n.highlight .mo { color: #666666 } /* Literal.Number.Oct */\n.highlight .sa { color: #BA2121 } /* Literal.String.Affix */\n.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */\n.highlight .sc { color: #BA2121 } /* Literal.String.Char */\n.highlight .dl { color: #BA2121 } /* Literal.String.Delimiter */\n.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */\n.highlight .s2 { color: #BA2121 } /* Literal.String.Double */\n.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */\n.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */\n.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */\n.highlight .sx { color: #008000 } /* Literal.String.Other */\n.highlight .sr { color: #BB6688 } /* Literal.String.Regex */\n.highlight .s1 { color: #BA2121 } /* Literal.String.Single */\n.highlight .ss { color: #19177C } /* Literal.String.Symbol */\n.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */\n.highlight .fm { color: #0000FF } /* Name.Function.Magic */\n.highlight .vc { color: #19177C } /* Name.Variable.Class */\n.highlight .vg { color: #19177C } /* Name.Variable.Global */\n.highlight .vi { color: #19177C } /* Name.Variable.Instance */\n.highlight .vm { color: #19177C } /* Name.Variable.Magic */\n.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */\n    </style>\n\n\n<style type=\"text/css\">\n/* Overrides of notebook CSS for static HTML export */\nbody {\n  overflow: visible;\n  padding: 8px;\n}\n\ndiv#notebook {\n  overflow: visible;\n  border-top: none;\n}@media print {\n  div.cell {\n    display: block;\n    page-break-inside: avoid;\n  } \n  div.output_wrapper { \n    display: block;\n    page-break-inside: avoid; \n  }\n  div.output { \n    display: block;\n    page-break-inside: avoid; \n  }\n}\n</style>\n\n<!-- Custom stylesheet, it must be in the same directory as the html file -->\n<link rel=\"stylesheet\" href=\"custom.css\">\n\n<!-- Loading mathjax macro -->\n<!-- Load mathjax -->\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-AMS_HTML\"></script>\n    <!-- MathJax configuration -->\n    <script type=\"text/x-mathjax-config\">\n    MathJax.Hub.Config({\n        tex2jax: {\n            inlineMath: [ ['$','$'], [\"\\\\(\",\"\\\\)\"] ],\n            displayMath: [ ['$$','$$'], [\"\\\\[\",\"\\\\]\"] ],\n            processEscapes: true,\n            processEnvironments: true\n        },\n        // Center justify equations in code and markdown cells. Elsewhere\n        // we use CSS to left justify single line equations in code cells.\n        displayAlign: 'center',\n        \"HTML-CSS\": {\n            styles: {'.MathJax_Display': {\"margin\": 0}},\n            linebreaks: { automatic: true }\n        }\n    });\n    </script>\n    <!-- End of mathjax configuration --></head>\n<body>\n  <div tabindex=\"-1\" id=\"notebook\" class=\"border-box-sizing\">\n    <div class=\"container\" id=\"notebook-container\">\n\n<div class=\"cell border-box-sizing text_cell rendered\"><div class=\"prompt input_prompt\">\n</div><div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<h1 id=\"Real-time-inference-with-Functional-Reactive-Probabilistic-Programming\">Real-time inference with Functional Reactive Probabilistic Programming<a class=\"anchor-link\" href=\"#Real-time-inference-with-Functional-Reactive-Probabilistic-Programming\">&#182;</a></h1><p><img src=\"https://monad-bayes-site.netlify.app/images/ezgif-3-f3ddcd7da9.gif\" alt=\"text\"></p>\n\n</div>\n</div>\n</div>\n<div class=\"cell border-box-sizing text_cell rendered\"><div class=\"prompt input_prompt\">\n</div><div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<p>In the above gif, the green dots represents a latent variable, the unseen but true position of two agents, which are moving stochastically around a 2D environment. \nWhat the system actually sees are the noisy observations shown in red.\nThe purple swarm is a population of particles from a particle filter.</p>\n\n</div>\n</div>\n</div>\n<div class=\"cell border-box-sizing text_cell rendered\"><div class=\"prompt input_prompt\">\n</div><div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<h2 id=\"The-approach\">The approach<a class=\"anchor-link\" href=\"#The-approach\">&#182;</a></h2><p>In the simulation from which the above gif is made, the inference is performed <strong>in real-time</strong>, using a particle filter.</p>\n<p>It is implemented using a combination of (1) a paradigm for representing Bayesian probability and inference known as <strong>probabilistic programming</strong>, and (2) a paradigm for representing real-time interactive systems known as (functional) <strong>reactive programming</strong>.</p>\n<p>There are several appealing aspects to this approach:</p>\n<ul>\n<li>it offers a natural representation for continuous time stochastic processes. Time is continuous in the sense that you write code that is agnostic to the final sampling rate of the whole system, and so can be arbitrarily fine-grained.</li>\n</ul>\n<ul>\n<li>it decouples the specification of the prior and posterior from the inference algorithm. For example, in the code for the above gif, the model is described by a prior, which is a stochastic process, and the posterior is described by a function from one stochastic process to another, mapping from a stream of observations to a process representing the posterior. </li>\n</ul>\n<ul>\n<li>inference methods can be designed compositionally in a similar manner to standard probabilistic programming languages. For example, we may want to add MH moves at various points, or to adaptively change the population size or resampling rate. These extensions fit naturally into the approach.</li>\n</ul>\n<ul>\n<li>it allows for simulations to be run indefinitely long without concerns about time or space leaks.</li>\n</ul>\n<ul>\n<li>it allows for observations to come from multiple streams, at different rates, or even from user input. For example, the frame rate of the simulation (say 60Hz) need not be the rate at which observations are received and processed. So if inference is slow at times, this can be handled gracefully.</li>\n</ul>\n<ul>\n<li>it allows for action in the loop. For example, one might want to take actions in real time, based on the current belief state, which would in turn influence incoming data.</li>\n</ul>\n\n</div>\n</div>\n</div>\n<div class=\"cell border-box-sizing text_cell rendered\"><div class=\"prompt input_prompt\">\n</div><div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<h1 id=\"What-the-code-looks-like\">What the code looks like<a class=\"anchor-link\" href=\"#What-the-code-looks-like\">&#182;</a></h1><p>The code to produce the above simulation is simple and declarative.</p>\n\n</div>\n</div>\n</div>\n<div class=\"cell border-box-sizing text_cell rendered\"><div class=\"prompt input_prompt\">\n</div><div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<h2 id=\"The-prior\">The prior<a class=\"anchor-link\" href=\"#The-prior\">&#182;</a></h2>\n</div>\n</div>\n</div>\n<div class=\"cell border-box-sizing text_cell rendered\"><div class=\"prompt input_prompt\">\n</div><div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<div class=\"highlight\"><pre><span></span><span class=\"kr\">type</span> <span class=\"kt\">Observation</span> <span class=\"ow\">=</span> <span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span> <span class=\"mi\">2</span> <span class=\"kt\">Double</span>\n<span class=\"kr\">type</span> <span class=\"kt\">Position</span> <span class=\"ow\">=</span> <span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span> <span class=\"mi\">2</span> <span class=\"kt\">Double</span>\n\n<span class=\"nf\">prior</span> <span class=\"ow\">::</span> <span class=\"kt\">StochasticProcess</span> <span class=\"kt\">Position</span>\n<span class=\"nf\">prior</span> <span class=\"ow\">=</span> <span class=\"n\">fmap</span> <span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"n\">fromTuple</span> <span class=\"o\">$</span> <span class=\"n\">model1D</span> <span class=\"o\">&amp;&amp;&amp;</span> <span class=\"n\">model1D</span> <span class=\"kr\">where</span>\n\n    <span class=\"n\">model1D</span> <span class=\"ow\">=</span> <span class=\"n\">proc</span> <span class=\"kr\">_</span> <span class=\"ow\">-&gt;</span> <span class=\"kr\">do</span>\n        <span class=\"n\">acceleration</span> <span class=\"ow\">&lt;-</span> <span class=\"n\">constM</span> <span class=\"p\">(</span><span class=\"n\">normal</span> <span class=\"mi\">0</span> <span class=\"mi\">4</span> <span class=\"p\">)</span> <span class=\"o\">-&lt;</span> <span class=\"nb\">()</span>\n        <span class=\"n\">velocity</span> <span class=\"ow\">&lt;-</span> <span class=\"n\">decayIntegral</span> <span class=\"mi\">2</span> <span class=\"o\">-&lt;</span> <span class=\"n\">acceleration</span> <span class=\"c1\">-- Integral, dying off exponentially</span>\n        <span class=\"n\">position</span> <span class=\"ow\">&lt;-</span> <span class=\"n\">decayIntegral</span> <span class=\"mi\">2</span> <span class=\"o\">-&lt;</span> <span class=\"n\">velocity</span>\n        <span class=\"n\">returnA</span> <span class=\"o\">-&lt;</span> <span class=\"n\">position</span>\n\n    <span class=\"n\">decayIntegral</span> <span class=\"n\">timeConstant</span> <span class=\"ow\">=</span>  <span class=\"n\">average</span> <span class=\"n\">timeConstant</span> <span class=\"o\">&gt;&gt;&gt;</span> <span class=\"n\">arr</span> <span class=\"p\">(</span><span class=\"n\">timeConstant</span> <span class=\"o\">*^</span><span class=\"p\">)</span>\n</pre></div>\n\n</div>\n</div>\n</div>\n<div class=\"cell border-box-sizing text_cell rendered\"><div class=\"prompt input_prompt\">\n</div><div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<p><code>prior</code> describes a stochastic process that serves as the prior about how a (single) dot moves.</p>\n<p>It is built by taking a constantly normally distributed stream of accelerations, and integrating it twice. That gives the circle's movement on one axis, so we join two of these together.</p>\n<p>Note how this is an abstract mathematical object: it is not an event loop for example - it is simply a representation of a stochastic process. But of course we can convert it into something we can run.</p>\n<p>Running it means sampling a single path (extending infinitely forward in time) for the dot, and showing that in real-time. This is also simple:</p>\n\n</div>\n</div>\n</div>\n<div class=\"cell border-box-sizing text_cell rendered\"><div class=\"prompt input_prompt\">\n</div><div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<div class=\"highlight\"><pre><span></span><span class=\"nf\">gloss</span> <span class=\"ow\">::</span> <span class=\"kt\">IO</span> <span class=\"nb\">()</span>\n<span class=\"nf\">gloss</span> <span class=\"ow\">=</span> <span class=\"n\">sampleIO</span> <span class=\"o\">$</span>\n        <span class=\"n\">launchGlossThread</span> <span class=\"n\">defaultSettings</span>\n            <span class=\"p\">{</span> <span class=\"n\">display</span> <span class=\"ow\">=</span> <span class=\"kt\">InWindow</span> <span class=\"s\">&quot;rhine-bayes&quot;</span> <span class=\"p\">(</span><span class=\"mi\">1024</span><span class=\"p\">,</span> <span class=\"mi\">960</span><span class=\"p\">)</span> <span class=\"p\">(</span><span class=\"mi\">10</span><span class=\"p\">,</span> <span class=\"mi\">10</span><span class=\"p\">)</span> <span class=\"p\">}</span> \n        <span class=\"o\">$</span> <span class=\"n\">reactimateCl</span> <span class=\"n\">glossClock</span> <span class=\"n\">proc</span> <span class=\"nb\">()</span> <span class=\"ow\">-&gt;</span> <span class=\"kr\">do</span>\n            <span class=\"n\">actualPosition</span> <span class=\"ow\">&lt;-</span> <span class=\"n\">prior</span> <span class=\"o\">-&lt;</span> <span class=\"nb\">()</span>\n            <span class=\"p\">(</span><span class=\"n\">withSideEffect_</span> <span class=\"p\">(</span><span class=\"n\">lift</span> <span class=\"n\">clearIO</span><span class=\"p\">)</span> <span class=\"o\">&gt;&gt;&gt;</span> <span class=\"n\">visualisation</span><span class=\"p\">)</span> <span class=\"o\">-&lt;</span> <span class=\"kt\">Result</span> <span class=\"p\">{</span> <span class=\"n\">latent</span> <span class=\"ow\">=</span> <span class=\"n\">actualPosition</span> <span class=\"p\">}</span>\n</pre></div>\n\n</div>\n</div>\n</div>\n<div class=\"cell border-box-sizing text_cell rendered\"><div class=\"prompt input_prompt\">\n</div><div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<p><img src=\"https://monad-bayes-site.netlify.app/images/ezgif-3-1920267e5d.gif\" alt=\"text\"></p>\n\n</div>\n</div>\n</div>\n<div class=\"cell border-box-sizing text_cell rendered\"><div class=\"prompt input_prompt\">\n</div><div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<h2 id=\"Generative-model\">Generative model<a class=\"anchor-link\" href=\"#Generative-model\">&#182;</a></h2><p>In standard probabilistic programming, a generative model is a conditional distribution on observations given the latent state, i.e. a function from the latent variable space to distributions over observations.</p>\n<p>In the real-time setting, a generative model is a function from a process on the latent space to a process on observations. Ours looks like this (pointwise Gaussian noise), but significantly more complex examples are possible:</p>\n\n</div>\n</div>\n</div>\n<div class=\"cell border-box-sizing text_cell rendered\"><div class=\"prompt input_prompt\">\n</div><div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<div class=\"highlight\"><pre><span></span><span class=\"nf\">generativeModel</span> <span class=\"ow\">::</span> <span class=\"kt\">StochasticProcessFunction</span> <span class=\"kt\">Position</span> <span class=\"kt\">Observation</span>\n<span class=\"nf\">generativeModel</span> <span class=\"ow\">=</span> <span class=\"n\">proc</span> <span class=\"n\">p</span> <span class=\"ow\">-&gt;</span> <span class=\"kr\">do</span>\n    <span class=\"n\">n</span> <span class=\"ow\">&lt;-</span> <span class=\"n\">fmap</span> <span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"n\">fromTuple</span> <span class=\"o\">$</span> <span class=\"n\">noise</span> <span class=\"o\">&amp;&amp;&amp;</span> <span class=\"n\">noise</span> <span class=\"o\">-&lt;</span> <span class=\"nb\">()</span>\n    <span class=\"n\">returnA</span> <span class=\"o\">-&lt;</span> <span class=\"n\">p</span> <span class=\"o\">+</span> <span class=\"n\">n</span>\n  <span class=\"kr\">where</span> <span class=\"n\">noise</span> <span class=\"ow\">=</span> <span class=\"n\">constM</span> <span class=\"p\">(</span><span class=\"n\">normal</span> <span class=\"mi\">0</span> <span class=\"n\">std</span><span class=\"p\">)</span>\n</pre></div>\n\n</div>\n</div>\n</div>\n<div class=\"cell border-box-sizing text_cell rendered\"><div class=\"prompt input_prompt\">\n</div><div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<p>This generates:</p>\n<p><img src=\"https://monad-bayes-site.netlify.app/images/measurement.gif\" alt=\"text\"></p>\n\n</div>\n</div>\n</div>\n<div class=\"cell border-box-sizing text_cell rendered\"><div class=\"prompt input_prompt\">\n</div><div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<h2 id=\"The-posterior\">The posterior<a class=\"anchor-link\" href=\"#The-posterior\">&#182;</a></h2><p>The posterior is a function from a process over observations to a process over the latent space.</p>\n\n</div>\n</div>\n</div>\n<div class=\"cell border-box-sizing text_cell rendered\"><div class=\"prompt input_prompt\">\n</div><div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<div class=\"highlight\"><pre><span></span><span class=\"nf\">posterior</span> <span class=\"ow\">::</span> <span class=\"kt\">StochasticProcessFunction</span> <span class=\"kt\">Observation</span> <span class=\"kt\">Position</span>\n<span class=\"nf\">posterior</span> <span class=\"ow\">=</span> <span class=\"n\">proc</span> <span class=\"p\">(</span><span class=\"kt\">V2</span> <span class=\"n\">oX</span> <span class=\"n\">oY</span><span class=\"p\">)</span> <span class=\"ow\">-&gt;</span> <span class=\"kr\">do</span>\n  <span class=\"n\">latent</span><span class=\"o\">@</span><span class=\"p\">(</span><span class=\"kt\">V2</span> <span class=\"n\">trueX</span> <span class=\"n\">trueY</span><span class=\"p\">)</span> <span class=\"ow\">&lt;-</span> <span class=\"n\">prior</span> <span class=\"o\">-&lt;</span> <span class=\"nb\">()</span>\n  <span class=\"n\">arrM</span> <span class=\"n\">factor</span> <span class=\"o\">-&lt;</span> <span class=\"n\">normalPdf</span> <span class=\"n\">oY</span> <span class=\"n\">std</span> <span class=\"n\">trueY</span> <span class=\"o\">*</span> <span class=\"n\">normalPdf</span> <span class=\"n\">oX</span> <span class=\"n\">std</span> <span class=\"n\">trueX</span>\n  <span class=\"n\">returnA</span> <span class=\"o\">-&lt;</span> <span class=\"n\">latent</span>\n</pre></div>\n\n</div>\n</div>\n</div>\n<div class=\"cell border-box-sizing text_cell rendered\"><div class=\"prompt input_prompt\">\n</div><div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<p>Also note that it is defined in a way that is familiar to probabilistic programming languages: we draw from the prior, and we reweight (this is the factor statement) in a manner that depends on the data.</p>\n<p>However, the output stochastic process over the position is unnormalized. We need to perform inference to obtain a representation that we can sample from.</p>\n<p>We do this with Sequential Monte Carlo.</p>\n\n</div>\n</div>\n</div>\n<div class=\"cell border-box-sizing text_cell rendered\"><div class=\"prompt input_prompt\">\n</div><div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<div class=\"highlight\"><pre><span></span><span class=\"nf\">inferredPosterior</span> <span class=\"ow\">::</span> <span class=\"kt\">StochasticProcessFunction</span> <span class=\"kt\">Position</span> <span class=\"p\">[(</span><span class=\"kt\">Observation</span><span class=\"p\">,</span> <span class=\"kt\">Weight</span><span class=\"p\">)]</span>\n<span class=\"nf\">inferredPosterior</span> <span class=\"ow\">=</span> <span class=\"n\">onlineSMC</span> <span class=\"mi\">20</span> <span class=\"n\">resampleMultinomial</span> <span class=\"n\">posterior</span>\n</pre></div>\n\n</div>\n</div>\n</div>\n<div class=\"cell border-box-sizing text_cell rendered\"><div class=\"prompt input_prompt\">\n</div><div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<p>Like <code>posterior</code>, <code>inferredPosterior</code> is a function from one stochastic process to another.</p>\n<p>However, the output is now a process whose value at a given time is a list of pairs of observations and weights, i.e. a population of particles!</p>\n<p>This is something we <em>can</em> sample from, and the swarm of purple dots is precisely a visualization of the population. So finally the code to produce the original gif:</p>\n\n</div>\n</div>\n</div>\n<div class=\"cell border-box-sizing text_cell rendered\"><div class=\"prompt input_prompt\">\n</div><div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<div class=\"highlight\"><pre><span></span><span class=\"nf\">gloss</span> <span class=\"ow\">::</span> <span class=\"kt\">IO</span> <span class=\"nb\">()</span>\n<span class=\"nf\">gloss</span> <span class=\"ow\">=</span> <span class=\"n\">sampleIO</span> <span class=\"o\">$</span>\n        <span class=\"n\">launchGlossThread</span> <span class=\"n\">defaultSettings</span>\n            <span class=\"p\">{</span> <span class=\"n\">display</span> <span class=\"ow\">=</span> <span class=\"kt\">InWindow</span> <span class=\"s\">&quot;rhine-bayes&quot;</span> <span class=\"p\">(</span><span class=\"mi\">1024</span><span class=\"p\">,</span> <span class=\"mi\">960</span><span class=\"p\">)</span> <span class=\"p\">(</span><span class=\"mi\">10</span><span class=\"p\">,</span> <span class=\"mi\">10</span><span class=\"p\">)</span> <span class=\"p\">}</span> \n        <span class=\"o\">$</span> <span class=\"n\">reactimateCl</span> <span class=\"n\">glossClock</span> <span class=\"n\">proc</span> <span class=\"nb\">()</span> <span class=\"ow\">-&gt;</span> <span class=\"kr\">do</span>\n            <span class=\"n\">actualPosition</span> <span class=\"ow\">&lt;-</span> <span class=\"n\">prior</span> <span class=\"o\">-&lt;</span> <span class=\"nb\">()</span>\n            <span class=\"n\">measuredPosition</span> <span class=\"ow\">&lt;-</span> <span class=\"n\">generativeModel</span> <span class=\"o\">-&lt;</span> <span class=\"n\">actualPosition</span>\n            <span class=\"n\">samples</span> <span class=\"ow\">&lt;-</span> <span class=\"n\">onlineSMC</span> <span class=\"mi\">100</span> <span class=\"n\">resampleMultinomial</span> <span class=\"n\">posterior</span> <span class=\"o\">-&lt;</span> <span class=\"n\">measuredPosition</span>\n            <span class=\"p\">(</span><span class=\"n\">withSideEffect_</span> <span class=\"p\">(</span><span class=\"n\">lift</span> <span class=\"n\">clearIO</span><span class=\"p\">)</span> <span class=\"o\">&gt;&gt;&gt;</span> <span class=\"n\">visualisation</span><span class=\"p\">)</span> <span class=\"o\">-&lt;</span> <span class=\"kt\">Result</span> <span class=\"p\">{</span> \n                                <span class=\"n\">particles</span> <span class=\"ow\">=</span> <span class=\"n\">samples</span>\n                                <span class=\"p\">,</span> <span class=\"n\">measured</span> <span class=\"ow\">=</span> <span class=\"n\">measuredPosition</span>\n                                <span class=\"p\">,</span> <span class=\"n\">latent</span> <span class=\"ow\">=</span> <span class=\"n\">actualPosition</span>\n                                <span class=\"p\">}</span>\n</pre></div>\n\n</div>\n</div>\n</div>\n<div class=\"cell border-box-sizing text_cell rendered\"><div class=\"prompt input_prompt\">\n</div><div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<p>This code generates a true trajectory of the particle (<code>actualPosition</code>) from the prior. It then uses the <code>generativeModel</code> to create the true observations. These are passed into model, to obtain samples from the particle filter, which are then passed to a visualizing function.</p>\n\n</div>\n</div>\n</div>\n<div class=\"cell border-box-sizing text_cell rendered\"><div class=\"prompt input_prompt\">\n</div><div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<h2 id=\"Under-the-hood\">Under the hood<a class=\"anchor-link\" href=\"#Under-the-hood\">&#182;</a></h2><p>How does this actually work?</p>\n<p>It is based on two libraries. First <code>Monad-Bayes</code>, which is a probabilistic programming library. Second <code>Rhine</code>, which is a functional reactive programming library.</p>\n<p>Monad-bayes is great at handling <em>distributions</em> in a pure and functional manner, but doesn't have a good model of time. However, <code>Rhine</code> is superb at handling <em>time</em> in a pure and functional way, but don't know about distributions.</p>\n<p>As such, it turns out that there is a beautiful synergy between the two libraries (or rather, the conceptual approaches to their domains that they represent).</p>\n<p>More to come...</p>\n\n</div>\n</div>\n</div>\n    </div>\n  </div>\n</body>\n\n \n\n\n</html>\n"
  },
  {
    "path": "docs/docs/notebooks/SMC.html",
    "content": "<!DOCTYPE html>\n<html>\n<head><meta charset=\"utf-8\" />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n<title>SMC</title><script src=\"https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js\"></script>\n\n\n\n\n<style type=\"text/css\">\n    pre { line-height: 125%; }\ntd.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\nspan.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\ntd.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\nspan.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.highlight .hll { background-color: var(--jp-cell-editor-active-background) }\n.highlight { background: var(--jp-cell-editor-background); color: var(--jp-mirror-editor-variable-color) }\n.highlight .c { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment */\n.highlight .err { color: var(--jp-mirror-editor-error-color) } /* Error */\n.highlight .k { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword */\n.highlight .o { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator */\n.highlight .p { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation */\n.highlight .ch { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Hashbang */\n.highlight .cm { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Multiline */\n.highlight .cp { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Preproc */\n.highlight .cpf { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.PreprocFile */\n.highlight .c1 { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Single */\n.highlight .cs { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Special */\n.highlight .kc { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Constant */\n.highlight .kd { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Declaration */\n.highlight .kn { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Namespace */\n.highlight .kp { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Pseudo */\n.highlight .kr { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Reserved */\n.highlight .kt { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Type */\n.highlight .m { color: var(--jp-mirror-editor-number-color) } /* Literal.Number */\n.highlight .s { color: var(--jp-mirror-editor-string-color) } /* Literal.String */\n.highlight .ow { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator.Word */\n.highlight .w { color: var(--jp-mirror-editor-variable-color) } /* Text.Whitespace */\n.highlight .mb { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Bin */\n.highlight .mf { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Float */\n.highlight .mh { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Hex */\n.highlight .mi { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer */\n.highlight .mo { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Oct */\n.highlight .sa { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Affix */\n.highlight .sb { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Backtick */\n.highlight .sc { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Char */\n.highlight .dl { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Delimiter */\n.highlight .sd { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Doc */\n.highlight .s2 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Double */\n.highlight .se { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Escape */\n.highlight .sh { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Heredoc */\n.highlight .si { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Interpol */\n.highlight .sx { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Other */\n.highlight .sr { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Regex */\n.highlight .s1 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Single */\n.highlight .ss { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Symbol */\n.highlight .il { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer.Long */\n  </style>\n\n\n\n<style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\n * Mozilla scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n[data-jp-theme-scrollbars='true'] {\n  scrollbar-color: rgb(var(--jp-scrollbar-thumb-color))\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar. These selectors\n * will match lower in the tree, and so will override the above */\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n  scrollbar-width: thin;\n}\n\n/*\n * Webkit scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-corner {\n  background: var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-thumb {\n  background: rgb(var(--jp-scrollbar-thumb-color));\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-right: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-bottom: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar */\n\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-corner,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-corner {\n  background-color: transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-thumb,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid transparent;\n  border-right: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid transparent;\n  border-bottom: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny::-webkit-scrollbar,\n.jp-scrollbar-tiny::-webkit-scrollbar-corner {\n  background-color: transparent;\n  height: 4px;\n  width: 4px;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:horizontal {\n  border-left: 0px solid transparent;\n  border-right: 0px solid transparent;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:vertical {\n  border-top: 0px solid transparent;\n  border-bottom: 0px solid transparent;\n}\n\n/*\n * Phosphor\n */\n\n.lm-ScrollBar[data-orientation='horizontal'] {\n  min-height: 16px;\n  max-height: 16px;\n  min-width: 45px;\n  border-top: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] {\n  min-width: 16px;\n  max-width: 16px;\n  min-height: 45px;\n  border-left: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar-button {\n  background-color: #f0f0f0;\n  background-position: center center;\n  min-height: 15px;\n  max-height: 15px;\n  min-width: 15px;\n  max-width: 15px;\n}\n\n.lm-ScrollBar-button:hover {\n  background-color: #dadada;\n}\n\n.lm-ScrollBar-button.lm-mod-active {\n  background-color: #cdcdcd;\n}\n\n.lm-ScrollBar-track {\n  background: #f0f0f0;\n}\n\n.lm-ScrollBar-thumb {\n  background: #cdcdcd;\n}\n\n.lm-ScrollBar-thumb:hover {\n  background: #bababa;\n}\n\n.lm-ScrollBar-thumb.lm-mod-active {\n  background: #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal'] .lm-ScrollBar-thumb {\n  height: 100%;\n  min-width: 15px;\n  border-left: 1px solid #a0a0a0;\n  border-right: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] .lm-ScrollBar-thumb {\n  width: 100%;\n  min-height: 15px;\n  border-top: 1px solid #a0a0a0;\n  border-bottom: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-left);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-right);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-up);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-down);\n  background-size: 17px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Widget, /* </DEPRECATED> */\n.lm-Widget {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  cursor: default;\n}\n\n\n/* <DEPRECATED> */ .p-Widget.p-mod-hidden, /* </DEPRECATED> */\n.lm-Widget.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-CommandPalette, /* </DEPRECATED> */\n.lm-CommandPalette {\n  display: flex;\n  flex-direction: column;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-search, /* </DEPRECATED> */\n.lm-CommandPalette-search {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-content, /* </DEPRECATED> */\n.lm-CommandPalette-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  min-height: 0;\n  overflow: auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-header, /* </DEPRECATED> */\n.lm-CommandPalette-header {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-item, /* </DEPRECATED> */\n.lm-CommandPalette-item {\n  display: flex;\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemIcon, /* </DEPRECATED> */\n.lm-CommandPalette-itemIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemContent, /* </DEPRECATED> */\n.lm-CommandPalette-itemContent {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemShortcut, /* </DEPRECATED> */\n.lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemLabel, /* </DEPRECATED> */\n.lm-CommandPalette-itemLabel {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.lm-close-icon {\n\tborder:1px solid transparent;\n  background-color: transparent;\n  position: absolute;\n\tz-index:1;\n\tright:3%;\n\ttop: 0;\n\tbottom: 0;\n\tmargin: auto;\n\tpadding: 7px 0;\n\tdisplay: none;\n\tvertical-align: middle;\n  outline: 0;\n  cursor: pointer;\n}\n.lm-close-icon:after {\n\tcontent: \"X\";\n\tdisplay: block;\n\twidth: 15px;\n\theight: 15px;\n\ttext-align: center;\n\tcolor:#000;\n\tfont-weight: normal;\n\tfont-size: 12px;\n\tcursor: pointer;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-DockPanel, /* </DEPRECATED> */\n.lm-DockPanel {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-widget, /* </DEPRECATED> */\n.lm-DockPanel-widget {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-tabBar, /* </DEPRECATED> */\n.lm-DockPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle, /* </DEPRECATED> */\n.lm-DockPanel-handle {\n  z-index: 2;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle:after, /* </DEPRECATED> */\n.lm-DockPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal'] {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical'] {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal']:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical']:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay, /* </DEPRECATED> */\n.lm-DockPanel-overlay {\n  z-index: 3;\n  box-sizing: border-box;\n  pointer-events: none;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-overlay.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Menu, /* </DEPRECATED> */\n.lm-Menu {\n  z-index: 10000;\n  position: absolute;\n  white-space: nowrap;\n  overflow-x: hidden;\n  overflow-y: auto;\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-content, /* </DEPRECATED> */\n.lm-Menu-content {\n  margin: 0;\n  padding: 0;\n  display: table;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-item, /* </DEPRECATED> */\n.lm-Menu-item {\n  display: table-row;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-item.p-mod-hidden,\n.p-Menu-item.p-mod-collapsed,\n/* </DEPRECATED> */\n.lm-Menu-item.lm-mod-hidden,\n.lm-Menu-item.lm-mod-collapsed {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-itemIcon,\n.p-Menu-itemSubmenuIcon,\n/* </DEPRECATED> */\n.lm-Menu-itemIcon,\n.lm-Menu-itemSubmenuIcon {\n  display: table-cell;\n  text-align: center;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemLabel, /* </DEPRECATED> */\n.lm-Menu-itemLabel {\n  display: table-cell;\n  text-align: left;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemShortcut, /* </DEPRECATED> */\n.lm-Menu-itemShortcut {\n  display: table-cell;\n  text-align: right;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-MenuBar, /* </DEPRECATED> */\n.lm-MenuBar {\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-MenuBar-content, /* </DEPRECATED> */\n.lm-MenuBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex-direction: row;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p--MenuBar-item, /* </DEPRECATED> */\n.lm-MenuBar-item {\n  box-sizing: border-box;\n}\n\n\n/* <DEPRECATED> */\n.p-MenuBar-itemIcon,\n.p-MenuBar-itemLabel,\n/* </DEPRECATED> */\n.lm-MenuBar-itemIcon,\n.lm-MenuBar-itemLabel {\n  display: inline-block;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-ScrollBar, /* </DEPRECATED> */\n.lm-ScrollBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='horizontal'] {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='vertical'] {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-button, /* </DEPRECATED> */\n.lm-ScrollBar-button {\n  box-sizing: border-box;\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-track, /* </DEPRECATED> */\n.lm-ScrollBar-track {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  flex: 1 1 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-thumb, /* </DEPRECATED> */\n.lm-ScrollBar-thumb {\n  box-sizing: border-box;\n  position: absolute;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-SplitPanel-child, /* </DEPRECATED> */\n.lm-SplitPanel-child {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle, /* </DEPRECATED> */\n.lm-SplitPanel-handle {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-SplitPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle:after, /* </DEPRECATED> */\n.lm-SplitPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabBar, /* </DEPRECATED> */\n.lm-TabBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='horizontal'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] {\n  flex-direction: row;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='vertical'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] {\n  flex-direction: column;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-content, /* </DEPRECATED> */\n.lm-TabBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex: 1 1 auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='horizontal'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] > .lm-TabBar-content {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='vertical'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] > .lm-TabBar-content {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar-tab {\n  display: flex;\n  flex-direction: row;\n  box-sizing: border-box;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar-tabIcon,\n.p-TabBar-tabCloseIcon,\n/* </DEPRECATED> */\n.lm-TabBar-tabIcon,\n.lm-TabBar-tabCloseIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tabLabel, /* </DEPRECATED> */\n.lm-TabBar-tabLabel {\n  flex: 1 1 auto;\n  overflow: hidden;\n  white-space: nowrap;\n}\n\n\n.lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab.p-mod-hidden, /* </DEPRECATED> */\n.lm-TabBar-tab.lm-mod-hidden {\n  display: none !important;\n}\n\n\n.lm-TabBar-addButton.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar.p-mod-dragging .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab {\n  position: relative;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='horizontal'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='horizontal'] .lm-TabBar-tab {\n  left: 0;\n  transition: left 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='vertical'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='vertical'] .lm-TabBar-tab {\n  top: 0;\n  transition: top 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging .p-TabBar-tab.p-mod-dragging,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab.lm-mod-dragging {\n  transition: none;\n}\n\n.lm-TabBar-tabLabel .lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n  background: inherit;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabPanel-tabBar, /* </DEPRECATED> */\n.lm-TabPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-TabPanel-stackedPanel, /* </DEPRECATED> */\n.lm-TabPanel-stackedPanel {\n  z-index: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n@charset \"UTF-8\";\nhtml{\n  -webkit-box-sizing:border-box;\n          box-sizing:border-box; }\n\n*,\n*::before,\n*::after{\n  -webkit-box-sizing:inherit;\n          box-sizing:inherit; }\n\nbody{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none;\n  color:#182026;\n  font-family:-apple-system, \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Open Sans\", \"Helvetica Neue\", \"Icons16\", sans-serif; }\n\np{\n  margin-bottom:10px;\n  margin-top:0; }\n\nsmall{\n  font-size:12px; }\n\nstrong{\n  font-weight:600; }\n\n::-moz-selection{\n  background:rgba(125, 188, 255, 0.6); }\n\n::selection{\n  background:rgba(125, 188, 255, 0.6); }\n.bp3-heading{\n  color:#182026;\n  font-weight:600;\n  margin:0 0 10px;\n  padding:0; }\n  .bp3-dark .bp3-heading{\n    color:#f5f8fa; }\n\nh1.bp3-heading, .bp3-running-text h1{\n  font-size:36px;\n  line-height:40px; }\n\nh2.bp3-heading, .bp3-running-text h2{\n  font-size:28px;\n  line-height:32px; }\n\nh3.bp3-heading, .bp3-running-text h3{\n  font-size:22px;\n  line-height:25px; }\n\nh4.bp3-heading, .bp3-running-text h4{\n  font-size:18px;\n  line-height:21px; }\n\nh5.bp3-heading, .bp3-running-text h5{\n  font-size:16px;\n  line-height:19px; }\n\nh6.bp3-heading, .bp3-running-text h6{\n  font-size:14px;\n  line-height:16px; }\n.bp3-ui-text{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none; }\n\n.bp3-monospace-text{\n  font-family:monospace;\n  text-transform:none; }\n\n.bp3-text-muted{\n  color:#5c7080; }\n  .bp3-dark .bp3-text-muted{\n    color:#a7b6c2; }\n\n.bp3-text-disabled{\n  color:rgba(92, 112, 128, 0.6); }\n  .bp3-dark .bp3-text-disabled{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-text-overflow-ellipsis{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal; }\n.bp3-running-text{\n  font-size:14px;\n  line-height:1.5; }\n  .bp3-running-text h1{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h1{\n      color:#f5f8fa; }\n  .bp3-running-text h2{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h2{\n      color:#f5f8fa; }\n  .bp3-running-text h3{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h3{\n      color:#f5f8fa; }\n  .bp3-running-text h4{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h4{\n      color:#f5f8fa; }\n  .bp3-running-text h5{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h5{\n      color:#f5f8fa; }\n  .bp3-running-text h6{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h6{\n      color:#f5f8fa; }\n  .bp3-running-text hr{\n    border:none;\n    border-bottom:1px solid rgba(16, 22, 26, 0.15);\n    margin:20px 0; }\n    .bp3-dark .bp3-running-text hr{\n      border-color:rgba(255, 255, 255, 0.15); }\n  .bp3-running-text p{\n    margin:0 0 10px;\n    padding:0; }\n\n.bp3-text-large{\n  font-size:16px; }\n\n.bp3-text-small{\n  font-size:12px; }\na{\n  color:#106ba3;\n  text-decoration:none; }\n  a:hover{\n    color:#106ba3;\n    cursor:pointer;\n    text-decoration:underline; }\n  a .bp3-icon, a .bp3-icon-standard, a .bp3-icon-large{\n    color:inherit; }\n  a code,\n  .bp3-dark a code{\n    color:inherit; }\n  .bp3-dark a,\n  .bp3-dark a:hover{\n    color:#48aff0; }\n    .bp3-dark a .bp3-icon, .bp3-dark a .bp3-icon-standard, .bp3-dark a .bp3-icon-large,\n    .bp3-dark a:hover .bp3-icon,\n    .bp3-dark a:hover .bp3-icon-standard,\n    .bp3-dark a:hover .bp3-icon-large{\n      color:inherit; }\n.bp3-running-text code, .bp3-code{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  font-size:smaller;\n  padding:2px 5px; }\n  .bp3-dark .bp3-running-text code, .bp3-running-text .bp3-dark code, .bp3-dark .bp3-code{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n  .bp3-running-text a > code, a > .bp3-code{\n    color:#137cbd; }\n    .bp3-dark .bp3-running-text a > code, .bp3-running-text .bp3-dark a > code, .bp3-dark a > .bp3-code{\n      color:inherit; }\n\n.bp3-running-text pre, .bp3-code-block{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n  color:#182026;\n  display:block;\n  font-size:13px;\n  line-height:1.4;\n  margin:10px 0;\n  padding:13px 15px 12px;\n  word-break:break-all;\n  word-wrap:break-word; }\n  .bp3-dark .bp3-running-text pre, .bp3-running-text .bp3-dark pre, .bp3-dark .bp3-code-block{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n  .bp3-running-text pre > code, .bp3-code-block > code{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit;\n    font-size:inherit;\n    padding:0; }\n\n.bp3-running-text kbd, .bp3-key{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-family:inherit;\n  font-size:12px;\n  height:24px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  line-height:24px;\n  min-width:24px;\n  padding:3px 6px;\n  vertical-align:middle; }\n  .bp3-running-text kbd .bp3-icon, .bp3-key .bp3-icon, .bp3-running-text kbd .bp3-icon-standard, .bp3-key .bp3-icon-standard, .bp3-running-text kbd .bp3-icon-large, .bp3-key .bp3-icon-large{\n    margin-right:5px; }\n  .bp3-dark .bp3-running-text kbd, .bp3-running-text .bp3-dark kbd, .bp3-dark .bp3-key{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n.bp3-running-text blockquote, .bp3-blockquote{\n  border-left:solid 4px rgba(167, 182, 194, 0.5);\n  margin:0 0 10px;\n  padding:0 20px; }\n  .bp3-dark .bp3-running-text blockquote, .bp3-running-text .bp3-dark blockquote, .bp3-dark .bp3-blockquote{\n    border-color:rgba(115, 134, 148, 0.5); }\n.bp3-running-text ul,\n.bp3-running-text ol, .bp3-list{\n  margin:10px 0;\n  padding-left:30px; }\n  .bp3-running-text ul li:not(:last-child), .bp3-running-text ol li:not(:last-child), .bp3-list li:not(:last-child){\n    margin-bottom:5px; }\n  .bp3-running-text ul ol, .bp3-running-text ol ol, .bp3-list ol,\n  .bp3-running-text ul ul,\n  .bp3-running-text ol ul,\n  .bp3-list ul{\n    margin-top:5px; }\n\n.bp3-list-unstyled{\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-list-unstyled li{\n    padding:0; }\n.bp3-rtl{\n  text-align:right; }\n\n.bp3-dark{\n  color:#f5f8fa; }\n\n:focus{\n  outline:rgba(19, 124, 189, 0.6) auto 2px;\n  outline-offset:2px;\n  -moz-outline-radius:6px; }\n\n.bp3-focus-disabled :focus{\n  outline:none !important; }\n  .bp3-focus-disabled :focus ~ .bp3-control-indicator{\n    outline:none !important; }\n\n.bp3-alert{\n  max-width:400px;\n  padding:20px; }\n\n.bp3-alert-body{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-alert-body .bp3-icon{\n    font-size:40px;\n    margin-right:20px;\n    margin-top:0; }\n\n.bp3-alert-contents{\n  word-break:break-word; }\n\n.bp3-alert-footer{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:reverse;\n      -ms-flex-direction:row-reverse;\n          flex-direction:row-reverse;\n  margin-top:10px; }\n  .bp3-alert-footer .bp3-button{\n    margin-left:10px; }\n.bp3-breadcrumbs{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  cursor:default;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:wrap;\n      flex-wrap:wrap;\n  height:30px;\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-breadcrumbs > li{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n    .bp3-breadcrumbs > li::after{\n      background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z' fill='%235C7080'/%3e%3c/svg%3e\");\n      content:\"\";\n      display:block;\n      height:16px;\n      margin:0 5px;\n      width:16px; }\n    .bp3-breadcrumbs > li:last-of-type::after{\n      display:none; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumb-current,\n.bp3-breadcrumbs-collapsed{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-size:16px; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumbs-collapsed{\n  color:#5c7080; }\n\n.bp3-breadcrumb:hover{\n  text-decoration:none; }\n\n.bp3-breadcrumb.bp3-disabled{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-breadcrumb .bp3-icon{\n  margin-right:5px; }\n\n.bp3-breadcrumb-current{\n  color:inherit;\n  font-weight:600; }\n  .bp3-breadcrumb-current .bp3-input{\n    font-size:inherit;\n    font-weight:inherit;\n    vertical-align:baseline; }\n\n.bp3-breadcrumbs-collapsed{\n  background:#ced9e0;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  margin-right:2px;\n  padding:1px 5px;\n  vertical-align:text-bottom; }\n  .bp3-breadcrumbs-collapsed::before{\n    background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cg fill='%235C7080'%3e%3ccircle cx='2' cy='8.03' r='2'/%3e%3ccircle cx='14' cy='8.03' r='2'/%3e%3ccircle cx='8' cy='8.03' r='2'/%3e%3c/g%3e%3c/svg%3e\") center no-repeat;\n    content:\"\";\n    display:block;\n    height:16px;\n    width:16px; }\n  .bp3-breadcrumbs-collapsed:hover{\n    background:#bfccd6;\n    color:#182026;\n    text-decoration:none; }\n\n.bp3-dark .bp3-breadcrumb,\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumbs > li::after{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumb.bp3-disabled{\n  color:rgba(167, 182, 194, 0.6); }\n\n.bp3-dark .bp3-breadcrumb-current{\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-breadcrumbs-collapsed:hover{\n    background:rgba(16, 22, 26, 0.6);\n    color:#f5f8fa; }\n.bp3-button{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  min-height:30px;\n  min-width:30px; }\n  .bp3-button > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-button > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-button::before,\n  .bp3-button > *{\n    margin-right:7px; }\n  .bp3-button:empty::before,\n  .bp3-button > :last-child{\n    margin-right:0; }\n  .bp3-button:empty{\n    padding:0 !important; }\n  .bp3-button:disabled, .bp3-button.bp3-disabled{\n    cursor:not-allowed; }\n  .bp3-button.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button.bp3-align-right,\n  .bp3-align-right .bp3-button{\n    text-align:right; }\n  .bp3-button.bp3-align-left,\n  .bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026; }\n    .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active:hover, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-button.bp3-intent-primary{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover, .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover{\n      background-color:#106ba3;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      background-color:#0e5a8a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:disabled, .bp3-button.bp3-intent-primary.bp3-disabled{\n      background-color:rgba(19, 124, 189, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-success{\n    background-color:#0f9960;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover, .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover{\n      background-color:#0d8050;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      background-color:#0a6640;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:disabled, .bp3-button.bp3-intent-success.bp3-disabled{\n      background-color:rgba(15, 153, 96, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-warning{\n    background-color:#d9822b;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover, .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover{\n      background-color:#bf7326;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      background-color:#a66321;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:disabled, .bp3-button.bp3-intent-warning.bp3-disabled{\n      background-color:rgba(217, 130, 43, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-danger{\n    background-color:#db3737;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover, .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover{\n      background-color:#c23030;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      background-color:#a82a2a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:disabled, .bp3-button.bp3-intent-danger.bp3-disabled{\n      background-color:rgba(219, 55, 55, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n    stroke:#ffffff; }\n  .bp3-button.bp3-large,\n  .bp3-large .bp3-button{\n    min-height:40px;\n    min-width:40px;\n    font-size:16px;\n    padding:5px 15px; }\n    .bp3-button.bp3-large::before,\n    .bp3-button.bp3-large > *,\n    .bp3-large .bp3-button::before,\n    .bp3-large .bp3-button > *{\n      margin-right:10px; }\n    .bp3-button.bp3-large:empty::before,\n    .bp3-button.bp3-large > :last-child,\n    .bp3-large .bp3-button:empty::before,\n    .bp3-large .bp3-button > :last-child{\n      margin-right:0; }\n  .bp3-button.bp3-small,\n  .bp3-small .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-button.bp3-loading{\n    position:relative; }\n    .bp3-button.bp3-loading[class*=\"bp3-icon-\"]::before{\n      visibility:hidden; }\n    .bp3-button.bp3-loading .bp3-button-spinner{\n      margin:0;\n      position:absolute; }\n    .bp3-button.bp3-loading > :not(.bp3-button-spinner){\n      visibility:hidden; }\n  .bp3-button[class*=\"bp3-icon-\"]::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    color:#5c7080; }\n  .bp3-button .bp3-icon, .bp3-button .bp3-icon-standard, .bp3-button .bp3-icon-large{\n    color:#5c7080; }\n    .bp3-button .bp3-icon.bp3-align-right, .bp3-button .bp3-icon-standard.bp3-align-right, .bp3-button .bp3-icon-large.bp3-align-right{\n      margin-left:7px; }\n  .bp3-button .bp3-icon:first-child:last-child,\n  .bp3-button .bp3-spinner + .bp3-icon:last-child{\n    margin:0 -7px; }\n  .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"])[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n      color:#a7b6c2; }\n  .bp3-dark .bp3-button[class*=\"bp3-intent-\"]{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:hover{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.3); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n      stroke:#8a9ba8; }\n  .bp3-button:disabled::before,\n  .bp3-button:disabled .bp3-icon, .bp3-button:disabled .bp3-icon-standard, .bp3-button:disabled .bp3-icon-large, .bp3-button.bp3-disabled::before,\n  .bp3-button.bp3-disabled .bp3-icon, .bp3-button.bp3-disabled .bp3-icon-standard, .bp3-button.bp3-disabled .bp3-icon-large, .bp3-button[class*=\"bp3-intent-\"]::before,\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-icon, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-standard, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-large{\n    color:inherit !important; }\n  .bp3-button.bp3-minimal{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button.bp3-minimal:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-minimal:active, .bp3-button.bp3-minimal.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-minimal:disabled, .bp3-button.bp3-minimal:disabled:hover, .bp3-button.bp3-minimal.bp3-disabled, .bp3-button.bp3-minimal.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-minimal{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-minimal:hover, .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-minimal:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-minimal:disabled, .bp3-dark .bp3-button.bp3-minimal:disabled:hover, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover, .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover, .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover, .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover, .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button.bp3-outlined{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    border:1px solid rgba(24, 32, 38, 0.2);\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box; }\n    .bp3-button.bp3-outlined:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-outlined:active, .bp3-button.bp3-outlined.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-outlined:hover, .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-outlined:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover, .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover, .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover, .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover, .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      border-color:rgba(92, 112, 128, 0.1); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      border-color:rgba(255, 255, 255, 0.4); }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        border-color:rgba(255, 255, 255, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      border-color:rgba(16, 107, 163, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        border-color:rgba(16, 107, 163, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        border-color:rgba(72, 175, 240, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          border-color:rgba(72, 175, 240, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      border-color:rgba(13, 128, 80, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        border-color:rgba(13, 128, 80, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        border-color:rgba(61, 204, 145, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          border-color:rgba(61, 204, 145, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      border-color:rgba(191, 115, 38, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        border-color:rgba(191, 115, 38, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        border-color:rgba(255, 179, 102, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          border-color:rgba(255, 179, 102, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      border-color:rgba(194, 48, 48, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        border-color:rgba(194, 48, 48, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        border-color:rgba(255, 115, 115, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          border-color:rgba(255, 115, 115, 0.2); }\n\na.bp3-button{\n  text-align:center;\n  text-decoration:none;\n  -webkit-transition:none;\n  transition:none; }\n  a.bp3-button, a.bp3-button:hover, a.bp3-button:active{\n    color:#182026; }\n  a.bp3-button.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6); }\n\n.bp3-button-text{\n  -webkit-box-flex:0;\n      -ms-flex:0 1 auto;\n          flex:0 1 auto; }\n\n.bp3-button.bp3-align-left .bp3-button-text, .bp3-button.bp3-align-right .bp3-button-text,\n.bp3-button-group.bp3-align-left .bp3-button-text,\n.bp3-button-group.bp3-align-right .bp3-button-text{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto; }\n.bp3-button-group{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex; }\n  .bp3-button-group .bp3-button{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    position:relative;\n    z-index:4; }\n    .bp3-button-group .bp3-button:focus{\n      z-index:5; }\n    .bp3-button-group .bp3-button:hover{\n      z-index:6; }\n    .bp3-button-group .bp3-button:active, .bp3-button-group .bp3-button.bp3-active{\n      z-index:7; }\n    .bp3-button-group .bp3-button:disabled, .bp3-button-group .bp3-button.bp3-disabled{\n      z-index:3; }\n    .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]{\n      z-index:9; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:focus{\n        z-index:10; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:hover{\n        z-index:11; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n        z-index:12; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n        z-index:8; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:first-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:first-child){\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    border-bottom-right-radius:0;\n    border-top-right-radius:0;\n    margin-right:-1px; }\n  .bp3-button-group.bp3-minimal .bp3-button{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button-group.bp3-minimal .bp3-button{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button-group .bp3-popover-wrapper,\n  .bp3-button-group .bp3-popover-target{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button-group .bp3-button.bp3-fill,\n  .bp3-button-group.bp3-fill .bp3-button:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-vertical{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column;\n    vertical-align:top; }\n    .bp3-button-group.bp3-vertical.bp3-fill{\n      height:100%;\n      width:unset; }\n    .bp3-button-group.bp3-vertical .bp3-button{\n      margin-right:0 !important;\n      width:100%; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:first-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:first-child{\n      border-radius:3px 3px 0 0; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:last-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:last-child{\n      border-radius:0 0 3px 3px; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:not(:last-child){\n      margin-bottom:-1px; }\n  .bp3-button-group.bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    margin-right:1px; }\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-button:not(:last-child){\n    margin-bottom:1px; }\n.bp3-callout{\n  font-size:14px;\n  line-height:1.5;\n  background-color:rgba(138, 155, 168, 0.15);\n  border-radius:3px;\n  padding:10px 12px 9px;\n  position:relative;\n  width:100%; }\n  .bp3-callout[class*=\"bp3-icon-\"]{\n    padding-left:40px; }\n    .bp3-callout[class*=\"bp3-icon-\"]::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout.bp3-callout-icon{\n    padding-left:40px; }\n    .bp3-callout.bp3-callout-icon > .bp3-icon:first-child{\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout .bp3-heading{\n    line-height:20px;\n    margin-bottom:5px;\n    margin-top:0; }\n    .bp3-callout .bp3-heading:last-child{\n      margin-bottom:0; }\n  .bp3-dark .bp3-callout{\n    background-color:rgba(138, 155, 168, 0.2); }\n    .bp3-dark .bp3-callout[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n  .bp3-callout.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15); }\n    .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-primary .bp3-heading{\n      color:#106ba3; }\n    .bp3-dark .bp3-callout.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-primary .bp3-heading{\n        color:#48aff0; }\n  .bp3-callout.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15); }\n    .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-success .bp3-heading{\n      color:#0d8050; }\n    .bp3-dark .bp3-callout.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-success .bp3-heading{\n        color:#3dcc91; }\n  .bp3-callout.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15); }\n    .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-warning .bp3-heading{\n      color:#bf7326; }\n    .bp3-dark .bp3-callout.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-warning .bp3-heading{\n        color:#ffb366; }\n  .bp3-callout.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15); }\n    .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-danger .bp3-heading{\n      color:#c23030; }\n    .bp3-dark .bp3-callout.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-danger .bp3-heading{\n        color:#ff7373; }\n  .bp3-running-text .bp3-callout{\n    margin:20px 0; }\n.bp3-card{\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n  padding:20px;\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-card.bp3-dark,\n  .bp3-dark .bp3-card{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-0{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n  .bp3-elevation-0.bp3-dark,\n  .bp3-dark .bp3-elevation-0{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-1{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-1.bp3-dark,\n  .bp3-dark .bp3-elevation-1{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-2{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-2.bp3-dark,\n  .bp3-dark .bp3-elevation-2{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-3{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-3.bp3-dark,\n  .bp3-dark .bp3-elevation-3{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-4{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-4.bp3-dark,\n  .bp3-dark .bp3-elevation-4{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:hover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  cursor:pointer; }\n  .bp3-card.bp3-interactive:hover.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:hover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:active{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  opacity:0.9;\n  -webkit-transition-duration:0;\n          transition-duration:0; }\n  .bp3-card.bp3-interactive:active.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:active{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-collapse{\n  height:0;\n  overflow-y:hidden;\n  -webkit-transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-collapse .bp3-collapse-body{\n    -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-collapse .bp3-collapse-body[aria-hidden=\"true\"]{\n      display:none; }\n\n.bp3-context-menu .bp3-popover-target{\n  display:block; }\n\n.bp3-context-menu-popover-target{\n  position:fixed; }\n\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-dialog-container{\n  opacity:1;\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  min-height:100%;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  width:100%; }\n  .bp3-dialog-container.bp3-overlay-enter > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5); }\n  .bp3-dialog-container.bp3-overlay-enter-active > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear-active > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-dialog-container.bp3-overlay-exit > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-dialog-container.bp3-overlay-exit-active > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n\n.bp3-dialog{\n  background:#ebf1f5;\n  border-radius:6px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:30px 0;\n  padding-bottom:20px;\n  pointer-events:all;\n  -webkit-user-select:text;\n     -moz-user-select:text;\n      -ms-user-select:text;\n          user-select:text;\n  width:500px; }\n  .bp3-dialog:focus{\n    outline:0; }\n  .bp3-dialog.bp3-dark,\n  .bp3-dark .bp3-dialog{\n    background:#293742;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-dialog-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:6px 6px 0 0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding-left:20px;\n  padding-right:5px;\n  z-index:30; }\n  .bp3-dialog-header .bp3-icon-large,\n  .bp3-dialog-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-dialog-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-dialog-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-dialog-header{\n    background:#30404d;\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-dialog-header .bp3-icon-large,\n    .bp3-dark .bp3-dialog-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-dialog-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  margin:20px; }\n\n.bp3-dialog-footer{\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  margin:0 20px; }\n\n.bp3-dialog-footer-actions{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:end;\n      -ms-flex-pack:end;\n          justify-content:flex-end; }\n  .bp3-dialog-footer-actions .bp3-button{\n    margin-left:10px; }\n.bp3-multistep-dialog-panels{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n\n.bp3-multistep-dialog-left-panel{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column; }\n  .bp3-dark .bp3-multistep-dialog-left-panel{\n    background:#202b33; }\n\n.bp3-multistep-dialog-right-panel{\n  background-color:#f5f8fa;\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  border-radius:0 0 6px 0;\n  -webkit-box-flex:3;\n      -ms-flex:3;\n          flex:3;\n  min-width:0; }\n  .bp3-dark .bp3-multistep-dialog-right-panel{\n    background-color:#293742;\n    border-left:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-multistep-dialog-footer{\n  background-color:#ffffff;\n  border-radius:0 0 6px 0;\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  padding:10px; }\n  .bp3-dark .bp3-multistep-dialog-footer{\n    background:#30404d;\n    border-top:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-dialog-step-container{\n  background-color:#f5f8fa;\n  border-bottom:1px solid rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-dialog-step-container{\n    background:#293742;\n    border-bottom:1px solid rgba(16, 22, 26, 0.4); }\n  .bp3-dialog-step-container.bp3-dialog-step-viewed{\n    background-color:#ffffff; }\n    .bp3-dark .bp3-dialog-step-container.bp3-dialog-step-viewed{\n      background:#30404d; }\n\n.bp3-dialog-step{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#f5f8fa;\n  border-radius:6px;\n  cursor:not-allowed;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:4px;\n  padding:6px 14px; }\n  .bp3-dark .bp3-dialog-step{\n    background:#293742; }\n  .bp3-dialog-step-viewed .bp3-dialog-step{\n    background-color:#ffffff;\n    cursor:pointer; }\n    .bp3-dark .bp3-dialog-step-viewed .bp3-dialog-step{\n      background:#30404d; }\n  .bp3-dialog-step:hover{\n    background-color:#f5f8fa; }\n    .bp3-dark .bp3-dialog-step:hover{\n      background:#293742; }\n\n.bp3-dialog-step-icon{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:rgba(92, 112, 128, 0.6);\n  border-radius:50%;\n  color:#ffffff;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:25px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  width:25px; }\n  .bp3-dark .bp3-dialog-step-icon{\n    background-color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#2b95d6; }\n  .bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#8a9ba8; }\n\n.bp3-dialog-step-title{\n  color:rgba(92, 112, 128, 0.6);\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  padding-left:10px; }\n  .bp3-dark .bp3-dialog-step-title{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-title{\n    color:#2b95d6; }\n  .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n    color:#182026; }\n    .bp3-dark .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n      color:#f5f8fa; }\n.bp3-drawer{\n  background:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0;\n  padding:0; }\n  .bp3-drawer:focus{\n    outline:0; }\n  .bp3-drawer.bp3-position-top{\n    height:50%;\n    left:0;\n    right:0;\n    top:0; }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter, .bp3-drawer.bp3-position-top.bp3-overlay-appear{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter-active, .bp3-drawer.bp3-position-top.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit-active{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-bottom{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter-active, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-left{\n    bottom:0;\n    left:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter, .bp3-drawer.bp3-position-left.bp3-overlay-appear{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter-active, .bp3-drawer.bp3-position-left.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit-active{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-right{\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter, .bp3-drawer.bp3-position-right.bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter-active, .bp3-drawer.bp3-position-right.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right):not(.bp3-vertical){\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right).bp3-vertical{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-dark,\n  .bp3-dark .bp3-drawer{\n    background:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-drawer-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border-radius:0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding:5px;\n  padding-left:20px;\n  position:relative; }\n  .bp3-drawer-header .bp3-icon-large,\n  .bp3-drawer-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-drawer-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-drawer-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-drawer-header{\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-drawer-header .bp3-icon-large,\n    .bp3-dark .bp3-drawer-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-drawer-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  overflow:auto; }\n\n.bp3-drawer-footer{\n  -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  padding:10px 20px;\n  position:relative; }\n  .bp3-dark .bp3-drawer-footer{\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4); }\n.bp3-editable-text{\n  cursor:text;\n  display:inline-block;\n  max-width:100%;\n  position:relative;\n  vertical-align:top;\n  white-space:nowrap; }\n  .bp3-editable-text::before{\n    bottom:-3px;\n    left:-3px;\n    position:absolute;\n    right:-3px;\n    top:-3px;\n    border-radius:3px;\n    content:\"\";\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#137cbd; }\n  .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4); }\n  .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#0f9960; }\n  .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4); }\n  .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#d9822b; }\n  .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4); }\n  .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#db3737; }\n  .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4); }\n  .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-dark .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#48aff0; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4);\n            box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#3dcc91; }\n  .bp3-dark .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4);\n            box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#ffb366; }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#ff7373; }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-editable-text-input,\n.bp3-editable-text-content{\n  color:inherit;\n  display:inherit;\n  font:inherit;\n  letter-spacing:inherit;\n  max-width:inherit;\n  min-width:inherit;\n  position:relative;\n  resize:none;\n  text-transform:inherit;\n  vertical-align:top; }\n\n.bp3-editable-text-input{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0;\n  white-space:pre-wrap;\n  width:100%; }\n  .bp3-editable-text-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:focus{\n    outline:none; }\n  .bp3-editable-text-input::-ms-clear{\n    display:none; }\n\n.bp3-editable-text-content{\n  overflow:hidden;\n  padding-right:2px;\n  text-overflow:ellipsis;\n  white-space:pre; }\n  .bp3-editable-text-editing > .bp3-editable-text-content{\n    left:0;\n    position:absolute;\n    visibility:hidden; }\n  .bp3-editable-text-placeholder > .bp3-editable-text-content{\n    color:rgba(92, 112, 128, 0.6); }\n    .bp3-dark .bp3-editable-text-placeholder > .bp3-editable-text-content{\n      color:rgba(167, 182, 194, 0.6); }\n\n.bp3-editable-text.bp3-multiline{\n  display:block; }\n  .bp3-editable-text.bp3-multiline .bp3-editable-text-content{\n    overflow:auto;\n    white-space:pre-wrap;\n    word-wrap:break-word; }\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-control-group{\n  -webkit-transform:translateZ(0);\n          transform:translateZ(0);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:stretch;\n      -ms-flex-align:stretch;\n          align-items:stretch; }\n  .bp3-control-group > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select,\n  .bp3-control-group .bp3-input,\n  .bp3-control-group .bp3-select{\n    position:relative; }\n  .bp3-control-group .bp3-input{\n    border-radius:inherit;\n    z-index:2; }\n    .bp3-control-group .bp3-input:focus{\n      border-radius:3px;\n      z-index:14; }\n    .bp3-control-group .bp3-input[class*=\"bp3-intent\"]{\n      z-index:13; }\n      .bp3-control-group .bp3-input[class*=\"bp3-intent\"]:focus{\n        z-index:15; }\n    .bp3-control-group .bp3-input[readonly], .bp3-control-group .bp3-input:disabled, .bp3-control-group .bp3-input.bp3-disabled{\n      z-index:1; }\n  .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input{\n    z-index:13; }\n    .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input:focus{\n      z-index:15; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select select,\n  .bp3-control-group .bp3-select select{\n    -webkit-transform:translateZ(0);\n            transform:translateZ(0);\n    border-radius:inherit;\n    z-index:4; }\n    .bp3-control-group .bp3-button:focus,\n    .bp3-control-group .bp3-html-select select:focus,\n    .bp3-control-group .bp3-select select:focus{\n      z-index:5; }\n    .bp3-control-group .bp3-button:hover,\n    .bp3-control-group .bp3-html-select select:hover,\n    .bp3-control-group .bp3-select select:hover{\n      z-index:6; }\n    .bp3-control-group .bp3-button:active,\n    .bp3-control-group .bp3-html-select select:active,\n    .bp3-control-group .bp3-select select:active{\n      z-index:7; }\n    .bp3-control-group .bp3-button[readonly], .bp3-control-group .bp3-button:disabled, .bp3-control-group .bp3-button.bp3-disabled,\n    .bp3-control-group .bp3-html-select select[readonly],\n    .bp3-control-group .bp3-html-select select:disabled,\n    .bp3-control-group .bp3-html-select select.bp3-disabled,\n    .bp3-control-group .bp3-select select[readonly],\n    .bp3-control-group .bp3-select select:disabled,\n    .bp3-control-group .bp3-select select.bp3-disabled{\n      z-index:3; }\n    .bp3-control-group .bp3-button[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]{\n      z-index:9; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:focus{\n        z-index:10; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:hover{\n        z-index:11; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:active{\n        z-index:12; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"][readonly], .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:disabled, .bp3-control-group .bp3-button[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"].bp3-disabled{\n        z-index:8; }\n  .bp3-control-group .bp3-input-group > .bp3-icon,\n  .bp3-control-group .bp3-input-group > .bp3-button,\n  .bp3-control-group .bp3-input-group > .bp3-input-left-container,\n  .bp3-control-group .bp3-input-group > .bp3-input-action{\n    z-index:16; }\n  .bp3-control-group .bp3-select::after,\n  .bp3-control-group .bp3-html-select::after,\n  .bp3-control-group .bp3-select > .bp3-icon,\n  .bp3-control-group .bp3-html-select > .bp3-icon{\n    z-index:17; }\n  .bp3-control-group .bp3-select:focus-within{\n    z-index:5; }\n  .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:-1px; }\n  .bp3-control-group:not(.bp3-vertical) > .bp3-divider:not(:first-child){\n    margin-left:6px; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:0; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > .bp3-button + .bp3-button{\n    margin-left:1px; }\n  .bp3-control-group .bp3-popover-wrapper,\n  .bp3-control-group .bp3-popover-target{\n    border-radius:inherit; }\n  .bp3-control-group > :first-child{\n    border-radius:3px 0 0 3px; }\n  .bp3-control-group > :last-child{\n    border-radius:0 3px 3px 0;\n    margin-right:0; }\n  .bp3-control-group > :only-child{\n    border-radius:3px;\n    margin-right:0; }\n  .bp3-control-group .bp3-input-group .bp3-button{\n    border-radius:3px; }\n  .bp3-control-group .bp3-numeric-input:not(:first-child) .bp3-input-group{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-control-group.bp3-fill{\n    width:100%; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-fill > *:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-vertical{\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-control-group.bp3-vertical > *{\n      margin-top:-1px; }\n    .bp3-control-group.bp3-vertical > :first-child{\n      border-radius:3px 3px 0 0;\n      margin-top:0; }\n    .bp3-control-group.bp3-vertical > :last-child{\n      border-radius:0 0 3px 3px; }\n.bp3-control{\n  cursor:pointer;\n  display:block;\n  margin-bottom:10px;\n  position:relative;\n  text-transform:none; }\n  .bp3-control input:checked ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control input:checked ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control:not(.bp3-align-right){\n    padding-left:26px; }\n    .bp3-control:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-26px; }\n  .bp3-control.bp3-align-right{\n    padding-right:26px; }\n    .bp3-control.bp3-align-right .bp3-control-indicator{\n      margin-right:-26px; }\n  .bp3-control.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-control.bp3-inline{\n    display:inline-block;\n    margin-right:20px; }\n  .bp3-control input{\n    left:0;\n    opacity:0;\n    position:absolute;\n    top:0;\n    z-index:-1; }\n  .bp3-control .bp3-control-indicator{\n    background-clip:padding-box;\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    border:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    cursor:pointer;\n    display:inline-block;\n    font-size:16px;\n    height:1em;\n    margin-right:10px;\n    margin-top:-3px;\n    position:relative;\n    -webkit-user-select:none;\n       -moz-user-select:none;\n        -ms-user-select:none;\n            user-select:none;\n    vertical-align:middle;\n    width:1em; }\n    .bp3-control .bp3-control-indicator::before{\n      content:\"\";\n      display:block;\n      height:1em;\n      width:1em; }\n  .bp3-control:hover .bp3-control-indicator{\n    background-color:#ebf1f5; }\n  .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n    background:#d8e1e8;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    cursor:not-allowed; }\n  .bp3-control input:focus ~ .bp3-control-indicator{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:2px;\n    -moz-outline-radius:6px; }\n  .bp3-control.bp3-align-right .bp3-control-indicator{\n    float:right;\n    margin-left:10px;\n    margin-top:1px; }\n  .bp3-control.bp3-large{\n    font-size:16px; }\n    .bp3-control.bp3-large:not(.bp3-align-right){\n      padding-left:30px; }\n      .bp3-control.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n        margin-left:-30px; }\n    .bp3-control.bp3-large.bp3-align-right{\n      padding-right:30px; }\n      .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n        margin-right:-30px; }\n    .bp3-control.bp3-large .bp3-control-indicator{\n      font-size:20px; }\n    .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-top:0; }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control.bp3-checkbox .bp3-control-indicator{\n    border-radius:3px; }\n  .bp3-control.bp3-checkbox input:checked ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0012 5z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-radio .bp3-control-indicator{\n    border-radius:50%; }\n  .bp3-control.bp3-radio input:checked ~ .bp3-control-indicator::before{\n    background-image:radial-gradient(#ffffff, #ffffff 28%, transparent 32%); }\n  .bp3-control.bp3-radio input:checked:disabled ~ .bp3-control-indicator::before{\n    opacity:0.5; }\n  .bp3-control.bp3-radio input:focus ~ .bp3-control-indicator{\n    -moz-outline-radius:16px; }\n  .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(167, 182, 194, 0.5); }\n  .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(115, 134, 148, 0.5); }\n  .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(92, 112, 128, 0.5); }\n  .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5); }\n    .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5); }\n    .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch:not(.bp3-align-right){\n    padding-left:38px; }\n    .bp3-control.bp3-switch:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-38px; }\n  .bp3-control.bp3-switch.bp3-align-right{\n    padding-right:38px; }\n    .bp3-control.bp3-switch.bp3-align-right .bp3-control-indicator{\n      margin-right:-38px; }\n  .bp3-control.bp3-switch .bp3-control-indicator{\n    border:none;\n    border-radius:1.75em;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important;\n    min-width:1.75em;\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:auto; }\n    .bp3-control.bp3-switch .bp3-control-indicator::before{\n      background:#ffffff;\n      border-radius:50%;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n      height:calc(1em - 4px);\n      left:0;\n      margin:2px;\n      position:absolute;\n      -webkit-transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      width:calc(1em - 4px); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    left:calc(100% - 1em); }\n  .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right){\n    padding-left:45px; }\n    .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-45px; }\n  .bp3-control.bp3-switch.bp3-large.bp3-align-right{\n    padding-right:45px; }\n    .bp3-control.bp3-switch.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-right:-45px; }\n  .bp3-dark .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.7); }\n  .bp3-dark .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.9); }\n  .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(57, 75, 89, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-dark .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch .bp3-control-indicator::before{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-control.bp3-switch .bp3-switch-inner-text{\n    font-size:0.7em;\n    text-align:center; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:first-child{\n    line-height:0;\n    margin-left:0.5em;\n    margin-right:1.2em;\n    visibility:hidden; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:last-child{\n    line-height:1em;\n    margin-left:1.2em;\n    margin-right:0.5em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:first-child{\n    line-height:1em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:last-child{\n    line-height:0;\n    visibility:hidden; }\n  .bp3-dark .bp3-control{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-control.bp3-disabled{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-control .bp3-control-indicator{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-control:hover .bp3-control-indicator{\n      background-color:#30404d; }\n    .bp3-dark .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n      background:#202b33;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-control input:disabled ~ .bp3-control-indicator{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      cursor:not-allowed; }\n    .bp3-dark .bp3-control.bp3-checkbox input:disabled:checked ~ .bp3-control-indicator, .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-file-input{\n  cursor:pointer;\n  display:inline-block;\n  height:30px;\n  position:relative; }\n  .bp3-file-input input{\n    margin:0;\n    min-width:200px;\n    opacity:0; }\n    .bp3-file-input input:disabled + .bp3-file-upload-input,\n    .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n      background:rgba(206, 217, 224, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      resize:none; }\n      .bp3-file-input input:disabled + .bp3-file-upload-input::after,\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n        background-color:rgba(206, 217, 224, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(92, 112, 128, 0.6);\n        cursor:not-allowed;\n        outline:none; }\n        .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active:hover,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active:hover{\n          background:rgba(206, 217, 224, 0.7); }\n      .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input, .bp3-dark\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n        background:rgba(57, 75, 89, 0.5);\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after, .bp3-dark\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n          background-color:rgba(57, 75, 89, 0.5);\n          background-image:none;\n          -webkit-box-shadow:none;\n                  box-shadow:none;\n          color:rgba(167, 182, 194, 0.6); }\n          .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-dark\n          .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active{\n            background:rgba(57, 75, 89, 0.7); }\n  .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#182026; }\n  .bp3-dark .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#f5f8fa; }\n  .bp3-file-input.bp3-fill{\n    width:100%; }\n  .bp3-file-input.bp3-large,\n  .bp3-large .bp3-file-input{\n    height:40px; }\n  .bp3-file-input .bp3-file-upload-input-custom-text::after{\n    content:attr(bp3-button-text); }\n\n.bp3-file-upload-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle;\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:rgba(92, 112, 128, 0.6);\n  left:0;\n  padding-right:80px;\n  position:absolute;\n  right:0;\n  top:0;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-file-upload-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:focus, .bp3-file-upload-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-file-upload-input[type=\"search\"], .bp3-file-upload-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-file-upload-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-file-upload-input:disabled, .bp3-file-upload-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-file-upload-input::after{\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026;\n    min-height:24px;\n    min-width:24px;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    border-radius:3px;\n    content:\"Browse\";\n    line-height:24px;\n    margin:3px;\n    position:absolute;\n    right:0;\n    text-align:center;\n    top:0;\n    width:70px; }\n    .bp3-file-upload-input::after:hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-file-upload-input::after:active, .bp3-file-upload-input::after.bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-file-upload-input::after:disabled, .bp3-file-upload-input::after.bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-file-upload-input::after:disabled.bp3-active, .bp3-file-upload-input::after:disabled.bp3-active:hover, .bp3-file-upload-input::after.bp3-disabled.bp3-active, .bp3-file-upload-input::after.bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-file-upload-input:hover::after{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-file-upload-input:active::after{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-large .bp3-file-upload-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px;\n    padding-right:95px; }\n    .bp3-large .bp3-file-upload-input[type=\"search\"], .bp3-large .bp3-file-upload-input.bp3-round{\n      padding:0 15px; }\n    .bp3-large .bp3-file-upload-input::after{\n      min-height:30px;\n      min-width:30px;\n      line-height:30px;\n      margin:5px;\n      width:85px; }\n  .bp3-dark .bp3-file-upload-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:disabled, .bp3-dark .bp3-file-upload-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::after{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n      color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover, .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover{\n        background-color:#30404d;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        background-color:#202b33;\n        background-image:none;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n      .bp3-dark .bp3-file-upload-input::after:disabled, .bp3-dark .bp3-file-upload-input::after.bp3-disabled{\n        background-color:rgba(57, 75, 89, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-upload-input::after:disabled.bp3-active, .bp3-dark .bp3-file-upload-input::after.bp3-disabled.bp3-active{\n          background:rgba(57, 75, 89, 0.7); }\n      .bp3-dark .bp3-file-upload-input::after .bp3-button-spinner .bp3-spinner-head{\n        background:rgba(16, 22, 26, 0.5);\n        stroke:#8a9ba8; }\n    .bp3-dark .bp3-file-upload-input:hover::after{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:active::after{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n.bp3-file-upload-input::after{\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n.bp3-form-group{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0 0 15px; }\n  .bp3-form-group label.bp3-label{\n    margin-bottom:5px; }\n  .bp3-form-group .bp3-control{\n    margin-top:7px; }\n  .bp3-form-group .bp3-form-helper-text{\n    color:#5c7080;\n    font-size:12px;\n    margin-top:5px; }\n  .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#106ba3; }\n  .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#0d8050; }\n  .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#bf7326; }\n  .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#c23030; }\n  .bp3-form-group.bp3-inline{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row; }\n    .bp3-form-group.bp3-inline.bp3-large label.bp3-label{\n      line-height:40px;\n      margin:0 10px 0 0; }\n    .bp3-form-group.bp3-inline label.bp3-label{\n      line-height:30px;\n      margin:0 10px 0 0; }\n  .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-dark .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#48aff0; }\n  .bp3-dark .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#3dcc91; }\n  .bp3-dark .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#ffb366; }\n  .bp3-dark .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#ff7373; }\n  .bp3-dark .bp3-form-group .bp3-form-helper-text{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(167, 182, 194, 0.6) !important; }\n.bp3-input-group{\n  display:block;\n  position:relative; }\n  .bp3-input-group .bp3-input{\n    position:relative;\n    width:100%; }\n    .bp3-input-group .bp3-input:not(:first-child){\n      padding-left:30px; }\n    .bp3-input-group .bp3-input:not(:last-child){\n      padding-right:30px; }\n  .bp3-input-group .bp3-input-action,\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-button,\n  .bp3-input-group > .bp3-icon{\n    position:absolute;\n    top:0; }\n    .bp3-input-group .bp3-input-action:first-child,\n    .bp3-input-group > .bp3-input-left-container:first-child,\n    .bp3-input-group > .bp3-button:first-child,\n    .bp3-input-group > .bp3-icon:first-child{\n      left:0; }\n    .bp3-input-group .bp3-input-action:last-child,\n    .bp3-input-group > .bp3-input-left-container:last-child,\n    .bp3-input-group > .bp3-button:last-child,\n    .bp3-input-group > .bp3-icon:last-child{\n      right:0; }\n  .bp3-input-group .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    margin:3px;\n    padding:0 7px; }\n    .bp3-input-group .bp3-button:empty{\n      padding:0; }\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-icon{\n    z-index:1; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon{\n    color:#5c7080; }\n    .bp3-input-group > .bp3-input-left-container > .bp3-icon:empty,\n    .bp3-input-group > .bp3-icon:empty{\n      font-family:\"Icons16\", sans-serif;\n      font-size:16px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon,\n  .bp3-input-group .bp3-input-action > .bp3-spinner{\n    margin:7px; }\n  .bp3-input-group .bp3-tag{\n    margin:5px; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus),\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n    color:#5c7080; }\n    .bp3-dark .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus), .bp3-dark\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n      color:#a7b6c2; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large{\n      color:#5c7080; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled,\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled{\n    color:rgba(92, 112, 128, 0.6) !important; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-large{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-input-group.bp3-disabled{\n    cursor:not-allowed; }\n    .bp3-input-group.bp3-disabled .bp3-icon{\n      color:rgba(92, 112, 128, 0.6); }\n  .bp3-input-group.bp3-large .bp3-button{\n    min-height:30px;\n    min-width:30px;\n    margin:5px; }\n  .bp3-input-group.bp3-large > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-large > .bp3-icon,\n  .bp3-input-group.bp3-large .bp3-input-action > .bp3-spinner{\n    margin:12px; }\n  .bp3-input-group.bp3-large .bp3-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input-group.bp3-large .bp3-input[type=\"search\"], .bp3-input-group.bp3-large .bp3-input.bp3-round{\n      padding:0 15px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:first-child){\n      padding-left:40px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:last-child){\n      padding-right:40px; }\n  .bp3-input-group.bp3-small .bp3-button{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small .bp3-tag{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-small > .bp3-icon,\n  .bp3-input-group.bp3-small .bp3-input-action > .bp3-spinner{\n    margin:4px; }\n  .bp3-input-group.bp3-small .bp3-input{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input-group.bp3-small .bp3-input[type=\"search\"], .bp3-input-group.bp3-small .bp3-input.bp3-round{\n      padding:0 12px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:first-child){\n      padding-left:24px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:last-child){\n      padding-right:24px; }\n  .bp3-input-group.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-input-group.bp3-round .bp3-button,\n  .bp3-input-group.bp3-round .bp3-input,\n  .bp3-input-group.bp3-round .bp3-tag{\n    border-radius:30px; }\n  .bp3-dark .bp3-input-group .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-input-group.bp3-disabled .bp3-icon{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-input-group.bp3-intent-primary .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input-group.bp3-intent-primary .bp3-input:disabled, .bp3-input-group.bp3-intent-primary .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-primary > .bp3-icon{\n    color:#106ba3; }\n    .bp3-dark .bp3-input-group.bp3-intent-primary > .bp3-icon{\n      color:#48aff0; }\n  .bp3-input-group.bp3-intent-success .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input-group.bp3-intent-success .bp3-input:disabled, .bp3-input-group.bp3-intent-success .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-success > .bp3-icon{\n    color:#0d8050; }\n    .bp3-dark .bp3-input-group.bp3-intent-success > .bp3-icon{\n      color:#3dcc91; }\n  .bp3-input-group.bp3-intent-warning .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input-group.bp3-intent-warning .bp3-input:disabled, .bp3-input-group.bp3-intent-warning .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-warning > .bp3-icon{\n    color:#bf7326; }\n    .bp3-dark .bp3-input-group.bp3-intent-warning > .bp3-icon{\n      color:#ffb366; }\n  .bp3-input-group.bp3-intent-danger .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input-group.bp3-intent-danger .bp3-input:disabled, .bp3-input-group.bp3-intent-danger .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-danger > .bp3-icon{\n    color:#c23030; }\n    .bp3-dark .bp3-input-group.bp3-intent-danger > .bp3-icon{\n      color:#ff7373; }\n.bp3-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle; }\n  .bp3-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:focus, .bp3-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-input[type=\"search\"], .bp3-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-input:disabled, .bp3-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-input.bp3-large{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input.bp3-large[type=\"search\"], .bp3-input.bp3-large.bp3-round{\n      padding:0 15px; }\n  .bp3-input.bp3-small{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input.bp3-small[type=\"search\"], .bp3-input.bp3-small.bp3-round{\n      padding:0 12px; }\n  .bp3-input.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-dark .bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input:disabled, .bp3-dark .bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-input.bp3-intent-primary{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input.bp3-intent-primary:disabled, .bp3-input.bp3-intent-primary.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary:focus{\n        -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n                box-shadow:inset 0 0 0 1px #137cbd; }\n      .bp3-dark .bp3-input.bp3-intent-primary:disabled, .bp3-dark .bp3-input.bp3-intent-primary.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-success{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input.bp3-intent-success:disabled, .bp3-input.bp3-intent-success.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success:focus{\n        -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n                box-shadow:inset 0 0 0 1px #0f9960; }\n      .bp3-dark .bp3-input.bp3-intent-success:disabled, .bp3-dark .bp3-input.bp3-intent-success.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-warning{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input.bp3-intent-warning:disabled, .bp3-input.bp3-intent-warning.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning:focus{\n        -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n                box-shadow:inset 0 0 0 1px #d9822b; }\n      .bp3-dark .bp3-input.bp3-intent-warning:disabled, .bp3-dark .bp3-input.bp3-intent-warning.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-danger{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input.bp3-intent-danger:disabled, .bp3-input.bp3-intent-danger.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger:focus{\n        -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #db3737;\n                box-shadow:inset 0 0 0 1px #db3737; }\n      .bp3-dark .bp3-input.bp3-intent-danger:disabled, .bp3-dark .bp3-input.bp3-intent-danger.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input::-ms-clear{\n    display:none; }\ntextarea.bp3-input{\n  max-width:100%;\n  padding:10px; }\n  textarea.bp3-input, textarea.bp3-input.bp3-large, textarea.bp3-input.bp3-small{\n    height:auto;\n    line-height:inherit; }\n  textarea.bp3-input.bp3-small{\n    padding:8px; }\n  .bp3-dark textarea.bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark textarea.bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input:disabled, .bp3-dark textarea.bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\nlabel.bp3-label{\n  display:block;\n  margin-bottom:15px;\n  margin-top:0; }\n  label.bp3-label .bp3-html-select,\n  label.bp3-label .bp3-input,\n  label.bp3-label .bp3-select,\n  label.bp3-label .bp3-slider,\n  label.bp3-label .bp3-popover-wrapper{\n    display:block;\n    margin-top:5px;\n    text-transform:none; }\n  label.bp3-label .bp3-button-group{\n    margin-top:5px; }\n  label.bp3-label .bp3-select select,\n  label.bp3-label .bp3-html-select select{\n    font-weight:400;\n    vertical-align:top;\n    width:100%; }\n  label.bp3-label.bp3-disabled,\n  label.bp3-label.bp3-disabled .bp3-text-muted{\n    color:rgba(92, 112, 128, 0.6); }\n  label.bp3-label.bp3-inline{\n    line-height:30px; }\n    label.bp3-label.bp3-inline .bp3-html-select,\n    label.bp3-label.bp3-inline .bp3-input,\n    label.bp3-label.bp3-inline .bp3-input-group,\n    label.bp3-label.bp3-inline .bp3-select,\n    label.bp3-label.bp3-inline .bp3-popover-wrapper{\n      display:inline-block;\n      margin:0 0 0 5px;\n      vertical-align:top; }\n    label.bp3-label.bp3-inline .bp3-button-group{\n      margin:0 0 0 5px; }\n    label.bp3-label.bp3-inline .bp3-input-group .bp3-input{\n      margin-left:0; }\n    label.bp3-label.bp3-inline.bp3-large{\n      line-height:40px; }\n  label.bp3-label:not(.bp3-inline) .bp3-popover-target{\n    display:block; }\n  .bp3-dark label.bp3-label{\n    color:#f5f8fa; }\n    .bp3-dark label.bp3-label.bp3-disabled,\n    .bp3-dark label.bp3-label.bp3-disabled .bp3-text-muted{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 14px;\n          flex:1 1 14px;\n  min-height:0;\n  padding:0;\n  width:30px; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:first-child{\n    border-radius:0 3px 0 0; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:last-child{\n    border-radius:0 0 3px 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:first-child{\n  border-radius:3px 0 0 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:last-child{\n  border-radius:0 0 0 3px; }\n\n.bp3-numeric-input.bp3-large .bp3-button-group.bp3-vertical > .bp3-button{\n  width:40px; }\n\nform{\n  display:block; }\n.bp3-html-select select,\n.bp3-select select{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  -moz-appearance:none;\n  -webkit-appearance:none;\n  border-radius:3px;\n  height:30px;\n  padding:0 25px 0 10px;\n  width:100%; }\n  .bp3-html-select select > *, .bp3-select select > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-html-select select > .bp3-fill, .bp3-select select > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-html-select select::before,\n  .bp3-select select::before, .bp3-html-select select > *, .bp3-select select > *{\n    margin-right:7px; }\n  .bp3-html-select select:empty::before,\n  .bp3-select select:empty::before,\n  .bp3-html-select select > :last-child,\n  .bp3-select select > :last-child{\n    margin-right:0; }\n  .bp3-html-select select:hover,\n  .bp3-select select:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-html-select select:active,\n  .bp3-select select:active, .bp3-html-select select.bp3-active,\n  .bp3-select select.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-html-select select:disabled,\n  .bp3-select select:disabled, .bp3-html-select select.bp3-disabled,\n  .bp3-select select.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-html-select select:disabled.bp3-active,\n    .bp3-select select:disabled.bp3-active, .bp3-html-select select:disabled.bp3-active:hover,\n    .bp3-select select:disabled.bp3-active:hover, .bp3-html-select select.bp3-disabled.bp3-active,\n    .bp3-select select.bp3-disabled.bp3-active, .bp3-html-select select.bp3-disabled.bp3-active:hover,\n    .bp3-select select.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n\n.bp3-html-select.bp3-minimal select,\n.bp3-select.bp3-minimal select{\n  background:none;\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  .bp3-html-select.bp3-minimal select:hover,\n  .bp3-select.bp3-minimal select:hover{\n    background:rgba(167, 182, 194, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026;\n    text-decoration:none; }\n  .bp3-html-select.bp3-minimal select:active,\n  .bp3-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal select.bp3-active,\n  .bp3-select.bp3-minimal select.bp3-active{\n    background:rgba(115, 134, 148, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026; }\n  .bp3-html-select.bp3-minimal select:disabled,\n  .bp3-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal select:disabled:hover,\n  .bp3-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal select.bp3-disabled,\n  .bp3-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal select.bp3-disabled:hover,\n  .bp3-select.bp3-minimal select.bp3-disabled:hover{\n    background:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n    .bp3-html-select.bp3-minimal select:disabled.bp3-active,\n    .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active{\n      background:rgba(115, 134, 148, 0.3); }\n  .bp3-dark .bp3-html-select.bp3-minimal select, .bp3-html-select.bp3-minimal .bp3-dark select,\n  .bp3-dark .bp3-select.bp3-minimal select, .bp3-select.bp3-minimal .bp3-dark select{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover, .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover{\n      background:rgba(138, 155, 168, 0.15); }\n    .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:rgba(138, 155, 168, 0.3);\n      color:#f5f8fa; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal .bp3-dark select:disabled,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled, .bp3-select.bp3-minimal .bp3-dark select:disabled, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled:hover, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover{\n      background:none;\n      color:rgba(167, 182, 194, 0.6);\n      cursor:not-allowed; }\n      .bp3-dark .bp3-html-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active{\n        background:rgba(138, 155, 168, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-primary,\n  .bp3-select.bp3-minimal select.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover{\n      background:rgba(19, 124, 189, 0.15);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:rgba(19, 124, 189, 0.3);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled{\n      background:none;\n      color:rgba(16, 107, 163, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active{\n        background:rgba(19, 124, 189, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n      stroke:#106ba3; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary{\n      color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.2);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(72, 175, 240, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-success,\n  .bp3-select.bp3-minimal select.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover{\n      background:rgba(15, 153, 96, 0.15);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:rgba(15, 153, 96, 0.3);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled{\n      background:none;\n      color:rgba(13, 128, 80, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active{\n        background:rgba(15, 153, 96, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n      stroke:#0d8050; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success{\n      color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.2);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(61, 204, 145, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-warning,\n  .bp3-select.bp3-minimal select.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover{\n      background:rgba(217, 130, 43, 0.15);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:rgba(217, 130, 43, 0.3);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled{\n      background:none;\n      color:rgba(191, 115, 38, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active{\n        background:rgba(217, 130, 43, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n      stroke:#bf7326; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning{\n      color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.2);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(255, 179, 102, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-danger,\n  .bp3-select.bp3-minimal select.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover{\n      background:rgba(219, 55, 55, 0.15);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:rgba(219, 55, 55, 0.3);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled{\n      background:none;\n      color:rgba(194, 48, 48, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active{\n        background:rgba(219, 55, 55, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n      stroke:#c23030; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger{\n      color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.2);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(255, 115, 115, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n\n.bp3-html-select.bp3-large select,\n.bp3-select.bp3-large select{\n  font-size:16px;\n  height:40px;\n  padding-right:35px; }\n\n.bp3-dark .bp3-html-select select, .bp3-dark .bp3-select select{\n  background-color:#394b59;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n  color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover, .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    background-color:#202b33;\n    background-image:none;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-html-select select:disabled, .bp3-dark .bp3-select select:disabled, .bp3-dark .bp3-html-select select.bp3-disabled, .bp3-dark .bp3-select select.bp3-disabled{\n    background-color:rgba(57, 75, 89, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-html-select select:disabled.bp3-active, .bp3-dark .bp3-select select:disabled.bp3-active, .bp3-dark .bp3-html-select select.bp3-disabled.bp3-active, .bp3-dark .bp3-select select.bp3-disabled.bp3-active{\n      background:rgba(57, 75, 89, 0.7); }\n  .bp3-dark .bp3-html-select select .bp3-button-spinner .bp3-spinner-head, .bp3-dark .bp3-select select .bp3-button-spinner .bp3-spinner-head{\n    background:rgba(16, 22, 26, 0.5);\n    stroke:#8a9ba8; }\n\n.bp3-html-select select:disabled,\n.bp3-select select:disabled{\n  background-color:rgba(206, 217, 224, 0.5);\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-html-select .bp3-icon,\n.bp3-select .bp3-icon, .bp3-select::after{\n  color:#5c7080;\n  pointer-events:none;\n  position:absolute;\n  right:7px;\n  top:7px; }\n  .bp3-html-select .bp3-disabled.bp3-icon,\n  .bp3-select .bp3-disabled.bp3-icon, .bp3-disabled.bp3-select::after{\n    color:rgba(92, 112, 128, 0.6); }\n.bp3-html-select,\n.bp3-select{\n  display:inline-block;\n  letter-spacing:normal;\n  position:relative;\n  vertical-align:middle; }\n  .bp3-html-select select::-ms-expand,\n  .bp3-select select::-ms-expand{\n    display:none; }\n  .bp3-html-select .bp3-icon,\n  .bp3-select .bp3-icon{\n    color:#5c7080; }\n    .bp3-html-select .bp3-icon:hover,\n    .bp3-select .bp3-icon:hover{\n      color:#182026; }\n    .bp3-dark .bp3-html-select .bp3-icon, .bp3-dark\n    .bp3-select .bp3-icon{\n      color:#a7b6c2; }\n      .bp3-dark .bp3-html-select .bp3-icon:hover, .bp3-dark\n      .bp3-select .bp3-icon:hover{\n        color:#f5f8fa; }\n  .bp3-html-select.bp3-large::after,\n  .bp3-html-select.bp3-large .bp3-icon,\n  .bp3-select.bp3-large::after,\n  .bp3-select.bp3-large .bp3-icon{\n    right:12px;\n    top:12px; }\n  .bp3-html-select.bp3-fill,\n  .bp3-html-select.bp3-fill select,\n  .bp3-select.bp3-fill,\n  .bp3-select.bp3-fill select{\n    width:100%; }\n  .bp3-dark .bp3-html-select option, .bp3-dark\n  .bp3-select option{\n    background-color:#30404d;\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select option:disabled, .bp3-dark\n  .bp3-select option:disabled{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-html-select::after, .bp3-dark\n  .bp3-select::after{\n    color:#a7b6c2; }\n\n.bp3-select::after{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  content:\"\"; }\n.bp3-running-text table, table.bp3-html-table{\n  border-spacing:0;\n  font-size:14px; }\n  .bp3-running-text table th, table.bp3-html-table th,\n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    padding:11px;\n    text-align:left;\n    vertical-align:top; }\n  .bp3-running-text table th, table.bp3-html-table th{\n    color:#182026;\n    font-weight:600; }\n  \n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    color:#182026; }\n  .bp3-running-text table tbody tr:first-child th, table.bp3-html-table tbody tr:first-child th,\n  .bp3-running-text table tbody tr:first-child td,\n  table.bp3-html-table tbody tr:first-child td,\n  .bp3-running-text table tfoot tr:first-child th,\n  table.bp3-html-table tfoot tr:first-child th,\n  .bp3-running-text table tfoot tr:first-child td,\n  table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-running-text table th, .bp3-running-text .bp3-dark table th, .bp3-dark table.bp3-html-table th{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table td, .bp3-running-text .bp3-dark table td, .bp3-dark table.bp3-html-table td{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table tbody tr:first-child th, .bp3-running-text .bp3-dark table tbody tr:first-child th, .bp3-dark table.bp3-html-table tbody tr:first-child th,\n  .bp3-dark .bp3-running-text table tbody tr:first-child td,\n  .bp3-running-text .bp3-dark table tbody tr:first-child td,\n  .bp3-dark table.bp3-html-table tbody tr:first-child td,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child th,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child th,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child th,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child td,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child td,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-condensed th,\ntable.bp3-html-table.bp3-html-table-condensed td, table.bp3-html-table.bp3-small th,\ntable.bp3-html-table.bp3-small td{\n  padding-bottom:6px;\n  padding-top:6px; }\n\ntable.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n  background:rgba(191, 204, 214, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n  -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered tbody tr td,\ntable.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n  -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n  table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n    -webkit-box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-interactive tbody tr:hover td{\n  background-color:rgba(191, 204, 214, 0.3);\n  cursor:pointer; }\n\ntable.bp3-html-table.bp3-interactive tbody tr:active td{\n  background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-dark table.bp3-html-table{ }\n  .bp3-dark table.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n    background:rgba(92, 112, 128, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td,\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n      -webkit-box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15);\n              box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:first-child{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:hover td{\n    background-color:rgba(92, 112, 128, 0.3);\n    cursor:pointer; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:active td{\n    background-color:rgba(92, 112, 128, 0.4); }\n\n.bp3-key-combo{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center; }\n  .bp3-key-combo > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-key-combo > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-key-combo::before,\n  .bp3-key-combo > *{\n    margin-right:5px; }\n  .bp3-key-combo:empty::before,\n  .bp3-key-combo > :last-child{\n    margin-right:0; }\n\n.bp3-hotkey-dialog{\n  padding-bottom:0;\n  top:40px; }\n  .bp3-hotkey-dialog .bp3-dialog-body{\n    margin:0;\n    padding:0; }\n  .bp3-hotkey-dialog .bp3-hotkey-label{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1; }\n\n.bp3-hotkey-column{\n  margin:auto;\n  max-height:80vh;\n  overflow-y:auto;\n  padding:30px; }\n  .bp3-hotkey-column .bp3-heading{\n    margin-bottom:20px; }\n    .bp3-hotkey-column .bp3-heading:not(:first-child){\n      margin-top:40px; }\n\n.bp3-hotkey{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:justify;\n      -ms-flex-pack:justify;\n          justify-content:space-between;\n  margin-left:0;\n  margin-right:0; }\n  .bp3-hotkey:not(:last-child){\n    margin-bottom:10px; }\n.bp3-icon{\n  display:inline-block;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  vertical-align:text-bottom; }\n  .bp3-icon:not(:empty)::before{\n    content:\"\" !important;\n    content:unset !important; }\n  .bp3-icon > svg{\n    display:block; }\n    .bp3-icon > svg:not([fill]){\n      fill:currentColor; }\n\n.bp3-icon.bp3-intent-primary, .bp3-icon-standard.bp3-intent-primary, .bp3-icon-large.bp3-intent-primary{\n  color:#106ba3; }\n  .bp3-dark .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-icon-large.bp3-intent-primary{\n    color:#48aff0; }\n\n.bp3-icon.bp3-intent-success, .bp3-icon-standard.bp3-intent-success, .bp3-icon-large.bp3-intent-success{\n  color:#0d8050; }\n  .bp3-dark .bp3-icon.bp3-intent-success, .bp3-dark .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-icon-large.bp3-intent-success{\n    color:#3dcc91; }\n\n.bp3-icon.bp3-intent-warning, .bp3-icon-standard.bp3-intent-warning, .bp3-icon-large.bp3-intent-warning{\n  color:#bf7326; }\n  .bp3-dark .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-icon-large.bp3-intent-warning{\n    color:#ffb366; }\n\n.bp3-icon.bp3-intent-danger, .bp3-icon-standard.bp3-intent-danger, .bp3-icon-large.bp3-intent-danger{\n  color:#c23030; }\n  .bp3-dark .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-icon-large.bp3-intent-danger{\n    color:#ff7373; }\n\nspan.bp3-icon-standard{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon-large{\n  font-family:\"Icons20\", sans-serif;\n  font-size:20px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon:empty{\n  font-family:\"Icons20\";\n  font-size:inherit;\n  font-style:normal;\n  font-weight:400;\n  line-height:1; }\n  span.bp3-icon:empty::before{\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased; }\n\n.bp3-icon-add::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-artifact::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-folder::before{\n  content:\"\"; }\n\n.bp3-icon-airplane::before{\n  content:\"\"; }\n\n.bp3-icon-align-center::before{\n  content:\"\"; }\n\n.bp3-icon-align-justify::before{\n  content:\"\"; }\n\n.bp3-icon-align-left::before{\n  content:\"\"; }\n\n.bp3-icon-align-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-horizontal-center::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-left::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-top::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-vertical-center::before{\n  content:\"\"; }\n\n.bp3-icon-annotation::before{\n  content:\"\"; }\n\n.bp3-icon-application::before{\n  content:\"\"; }\n\n.bp3-icon-applications::before{\n  content:\"\"; }\n\n.bp3-icon-archive::before{\n  content:\"\"; }\n\n.bp3-icon-arrow-bottom-left::before{\n  content:\"↙\"; }\n\n.bp3-icon-arrow-bottom-right::before{\n  content:\"↘\"; }\n\n.bp3-icon-arrow-down::before{\n  content:\"↓\"; }\n\n.bp3-icon-arrow-left::before{\n  content:\"←\"; }\n\n.bp3-icon-arrow-right::before{\n  content:\"→\"; }\n\n.bp3-icon-arrow-top-left::before{\n  content:\"↖\"; }\n\n.bp3-icon-arrow-top-right::before{\n  content:\"↗\"; }\n\n.bp3-icon-arrow-up::before{\n  content:\"↑\"; }\n\n.bp3-icon-arrows-horizontal::before{\n  content:\"↔\"; }\n\n.bp3-icon-arrows-vertical::before{\n  content:\"↕\"; }\n\n.bp3-icon-asterisk::before{\n  content:\"*\"; }\n\n.bp3-icon-automatic-updates::before{\n  content:\"\"; }\n\n.bp3-icon-badge::before{\n  content:\"\"; }\n\n.bp3-icon-ban-circle::before{\n  content:\"\"; }\n\n.bp3-icon-bank-account::before{\n  content:\"\"; }\n\n.bp3-icon-barcode::before{\n  content:\"\"; }\n\n.bp3-icon-blank::before{\n  content:\"\"; }\n\n.bp3-icon-blocked-person::before{\n  content:\"\"; }\n\n.bp3-icon-bold::before{\n  content:\"\"; }\n\n.bp3-icon-book::before{\n  content:\"\"; }\n\n.bp3-icon-bookmark::before{\n  content:\"\"; }\n\n.bp3-icon-box::before{\n  content:\"\"; }\n\n.bp3-icon-briefcase::before{\n  content:\"\"; }\n\n.bp3-icon-bring-data::before{\n  content:\"\"; }\n\n.bp3-icon-build::before{\n  content:\"\"; }\n\n.bp3-icon-calculator::before{\n  content:\"\"; }\n\n.bp3-icon-calendar::before{\n  content:\"\"; }\n\n.bp3-icon-camera::before{\n  content:\"\"; }\n\n.bp3-icon-caret-down::before{\n  content:\"⌄\"; }\n\n.bp3-icon-caret-left::before{\n  content:\"〈\"; }\n\n.bp3-icon-caret-right::before{\n  content:\"〉\"; }\n\n.bp3-icon-caret-up::before{\n  content:\"⌃\"; }\n\n.bp3-icon-cell-tower::before{\n  content:\"\"; }\n\n.bp3-icon-changes::before{\n  content:\"\"; }\n\n.bp3-icon-chart::before{\n  content:\"\"; }\n\n.bp3-icon-chat::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-backward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-forward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-circle::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-down::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-left::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-right::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-up::before{\n  content:\"\"; }\n\n.bp3-icon-citation::before{\n  content:\"\"; }\n\n.bp3-icon-clean::before{\n  content:\"\"; }\n\n.bp3-icon-clipboard::before{\n  content:\"\"; }\n\n.bp3-icon-cloud::before{\n  content:\"☁\"; }\n\n.bp3-icon-cloud-download::before{\n  content:\"\"; }\n\n.bp3-icon-cloud-upload::before{\n  content:\"\"; }\n\n.bp3-icon-code::before{\n  content:\"\"; }\n\n.bp3-icon-code-block::before{\n  content:\"\"; }\n\n.bp3-icon-cog::before{\n  content:\"\"; }\n\n.bp3-icon-collapse-all::before{\n  content:\"\"; }\n\n.bp3-icon-column-layout::before{\n  content:\"\"; }\n\n.bp3-icon-comment::before{\n  content:\"\"; }\n\n.bp3-icon-comparison::before{\n  content:\"\"; }\n\n.bp3-icon-compass::before{\n  content:\"\"; }\n\n.bp3-icon-compressed::before{\n  content:\"\"; }\n\n.bp3-icon-confirm::before{\n  content:\"\"; }\n\n.bp3-icon-console::before{\n  content:\"\"; }\n\n.bp3-icon-contrast::before{\n  content:\"\"; }\n\n.bp3-icon-control::before{\n  content:\"\"; }\n\n.bp3-icon-credit-card::before{\n  content:\"\"; }\n\n.bp3-icon-cross::before{\n  content:\"✗\"; }\n\n.bp3-icon-crown::before{\n  content:\"\"; }\n\n.bp3-icon-cube::before{\n  content:\"\"; }\n\n.bp3-icon-cube-add::before{\n  content:\"\"; }\n\n.bp3-icon-cube-remove::before{\n  content:\"\"; }\n\n.bp3-icon-curved-range-chart::before{\n  content:\"\"; }\n\n.bp3-icon-cut::before{\n  content:\"\"; }\n\n.bp3-icon-dashboard::before{\n  content:\"\"; }\n\n.bp3-icon-data-lineage::before{\n  content:\"\"; }\n\n.bp3-icon-database::before{\n  content:\"\"; }\n\n.bp3-icon-delete::before{\n  content:\"\"; }\n\n.bp3-icon-delta::before{\n  content:\"Δ\"; }\n\n.bp3-icon-derive-column::before{\n  content:\"\"; }\n\n.bp3-icon-desktop::before{\n  content:\"\"; }\n\n.bp3-icon-diagnosis::before{\n  content:\"\"; }\n\n.bp3-icon-diagram-tree::before{\n  content:\"\"; }\n\n.bp3-icon-direction-left::before{\n  content:\"\"; }\n\n.bp3-icon-direction-right::before{\n  content:\"\"; }\n\n.bp3-icon-disable::before{\n  content:\"\"; }\n\n.bp3-icon-document::before{\n  content:\"\"; }\n\n.bp3-icon-document-open::before{\n  content:\"\"; }\n\n.bp3-icon-document-share::before{\n  content:\"\"; }\n\n.bp3-icon-dollar::before{\n  content:\"$\"; }\n\n.bp3-icon-dot::before{\n  content:\"•\"; }\n\n.bp3-icon-double-caret-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-double-caret-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-doughnut-chart::before{\n  content:\"\"; }\n\n.bp3-icon-download::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-draw::before{\n  content:\"\"; }\n\n.bp3-icon-drive-time::before{\n  content:\"\"; }\n\n.bp3-icon-duplicate::before{\n  content:\"\"; }\n\n.bp3-icon-edit::before{\n  content:\"✎\"; }\n\n.bp3-icon-eject::before{\n  content:\"⏏\"; }\n\n.bp3-icon-endorsed::before{\n  content:\"\"; }\n\n.bp3-icon-envelope::before{\n  content:\"✉\"; }\n\n.bp3-icon-equals::before{\n  content:\"\"; }\n\n.bp3-icon-eraser::before{\n  content:\"\"; }\n\n.bp3-icon-error::before{\n  content:\"\"; }\n\n.bp3-icon-euro::before{\n  content:\"€\"; }\n\n.bp3-icon-exchange::before{\n  content:\"\"; }\n\n.bp3-icon-exclude-row::before{\n  content:\"\"; }\n\n.bp3-icon-expand-all::before{\n  content:\"\"; }\n\n.bp3-icon-export::before{\n  content:\"\"; }\n\n.bp3-icon-eye-off::before{\n  content:\"\"; }\n\n.bp3-icon-eye-on::before{\n  content:\"\"; }\n\n.bp3-icon-eye-open::before{\n  content:\"\"; }\n\n.bp3-icon-fast-backward::before{\n  content:\"\"; }\n\n.bp3-icon-fast-forward::before{\n  content:\"\"; }\n\n.bp3-icon-feed::before{\n  content:\"\"; }\n\n.bp3-icon-feed-subscribed::before{\n  content:\"\"; }\n\n.bp3-icon-film::before{\n  content:\"\"; }\n\n.bp3-icon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-filter-keep::before{\n  content:\"\"; }\n\n.bp3-icon-filter-list::before{\n  content:\"\"; }\n\n.bp3-icon-filter-open::before{\n  content:\"\"; }\n\n.bp3-icon-filter-remove::before{\n  content:\"\"; }\n\n.bp3-icon-flag::before{\n  content:\"⚑\"; }\n\n.bp3-icon-flame::before{\n  content:\"\"; }\n\n.bp3-icon-flash::before{\n  content:\"\"; }\n\n.bp3-icon-floppy-disk::before{\n  content:\"\"; }\n\n.bp3-icon-flow-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flow-end::before{\n  content:\"\"; }\n\n.bp3-icon-flow-linear::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flows::before{\n  content:\"\"; }\n\n.bp3-icon-folder-close::before{\n  content:\"\"; }\n\n.bp3-icon-folder-new::before{\n  content:\"\"; }\n\n.bp3-icon-folder-open::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared-open::before{\n  content:\"\"; }\n\n.bp3-icon-follower::before{\n  content:\"\"; }\n\n.bp3-icon-following::before{\n  content:\"\"; }\n\n.bp3-icon-font::before{\n  content:\"\"; }\n\n.bp3-icon-fork::before{\n  content:\"\"; }\n\n.bp3-icon-form::before{\n  content:\"\"; }\n\n.bp3-icon-full-circle::before{\n  content:\"\"; }\n\n.bp3-icon-full-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-fullscreen::before{\n  content:\"\"; }\n\n.bp3-icon-function::before{\n  content:\"\"; }\n\n.bp3-icon-gantt-chart::before{\n  content:\"\"; }\n\n.bp3-icon-geolocation::before{\n  content:\"\"; }\n\n.bp3-icon-geosearch::before{\n  content:\"\"; }\n\n.bp3-icon-git-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-commit::before{\n  content:\"\"; }\n\n.bp3-icon-git-merge::before{\n  content:\"\"; }\n\n.bp3-icon-git-new-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-pull::before{\n  content:\"\"; }\n\n.bp3-icon-git-push::before{\n  content:\"\"; }\n\n.bp3-icon-git-repo::before{\n  content:\"\"; }\n\n.bp3-icon-glass::before{\n  content:\"\"; }\n\n.bp3-icon-globe::before{\n  content:\"\"; }\n\n.bp3-icon-globe-network::before{\n  content:\"\"; }\n\n.bp3-icon-graph::before{\n  content:\"\"; }\n\n.bp3-icon-graph-remove::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-grid::before{\n  content:\"\"; }\n\n.bp3-icon-grid-view::before{\n  content:\"\"; }\n\n.bp3-icon-group-objects::before{\n  content:\"\"; }\n\n.bp3-icon-grouped-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-hand::before{\n  content:\"\"; }\n\n.bp3-icon-hand-down::before{\n  content:\"\"; }\n\n.bp3-icon-hand-left::before{\n  content:\"\"; }\n\n.bp3-icon-hand-right::before{\n  content:\"\"; }\n\n.bp3-icon-hand-up::before{\n  content:\"\"; }\n\n.bp3-icon-header::before{\n  content:\"\"; }\n\n.bp3-icon-header-one::before{\n  content:\"\"; }\n\n.bp3-icon-header-two::before{\n  content:\"\"; }\n\n.bp3-icon-headset::before{\n  content:\"\"; }\n\n.bp3-icon-heart::before{\n  content:\"♥\"; }\n\n.bp3-icon-heart-broken::before{\n  content:\"\"; }\n\n.bp3-icon-heat-grid::before{\n  content:\"\"; }\n\n.bp3-icon-heatmap::before{\n  content:\"\"; }\n\n.bp3-icon-help::before{\n  content:\"?\"; }\n\n.bp3-icon-helper-management::before{\n  content:\"\"; }\n\n.bp3-icon-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-history::before{\n  content:\"\"; }\n\n.bp3-icon-home::before{\n  content:\"⌂\"; }\n\n.bp3-icon-horizontal-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-id-number::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-left::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-right::before{\n  content:\"\"; }\n\n.bp3-icon-import::before{\n  content:\"\"; }\n\n.bp3-icon-inbox::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-geo::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-search::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-update::before{\n  content:\"\"; }\n\n.bp3-icon-info-sign::before{\n  content:\"ℹ\"; }\n\n.bp3-icon-inheritance::before{\n  content:\"\"; }\n\n.bp3-icon-inner-join::before{\n  content:\"\"; }\n\n.bp3-icon-insert::before{\n  content:\"\"; }\n\n.bp3-icon-intersection::before{\n  content:\"\"; }\n\n.bp3-icon-ip-address::before{\n  content:\"\"; }\n\n.bp3-icon-issue::before{\n  content:\"\"; }\n\n.bp3-icon-issue-closed::before{\n  content:\"\"; }\n\n.bp3-icon-issue-new::before{\n  content:\"\"; }\n\n.bp3-icon-italic::before{\n  content:\"\"; }\n\n.bp3-icon-join-table::before{\n  content:\"\"; }\n\n.bp3-icon-key::before{\n  content:\"\"; }\n\n.bp3-icon-key-backspace::before{\n  content:\"\"; }\n\n.bp3-icon-key-command::before{\n  content:\"\"; }\n\n.bp3-icon-key-control::before{\n  content:\"\"; }\n\n.bp3-icon-key-delete::before{\n  content:\"\"; }\n\n.bp3-icon-key-enter::before{\n  content:\"\"; }\n\n.bp3-icon-key-escape::before{\n  content:\"\"; }\n\n.bp3-icon-key-option::before{\n  content:\"\"; }\n\n.bp3-icon-key-shift::before{\n  content:\"\"; }\n\n.bp3-icon-key-tab::before{\n  content:\"\"; }\n\n.bp3-icon-known-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-lab-test::before{\n  content:\"\"; }\n\n.bp3-icon-label::before{\n  content:\"\"; }\n\n.bp3-icon-layer::before{\n  content:\"\"; }\n\n.bp3-icon-layers::before{\n  content:\"\"; }\n\n.bp3-icon-layout::before{\n  content:\"\"; }\n\n.bp3-icon-layout-auto::before{\n  content:\"\"; }\n\n.bp3-icon-layout-balloon::before{\n  content:\"\"; }\n\n.bp3-icon-layout-circle::before{\n  content:\"\"; }\n\n.bp3-icon-layout-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-group-by::before{\n  content:\"\"; }\n\n.bp3-icon-layout-hierarchy::before{\n  content:\"\"; }\n\n.bp3-icon-layout-linear::before{\n  content:\"\"; }\n\n.bp3-icon-layout-skew-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-sorted-clusters::before{\n  content:\"\"; }\n\n.bp3-icon-learning::before{\n  content:\"\"; }\n\n.bp3-icon-left-join::before{\n  content:\"\"; }\n\n.bp3-icon-less-than::before{\n  content:\"\"; }\n\n.bp3-icon-less-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-lifesaver::before{\n  content:\"\"; }\n\n.bp3-icon-lightbulb::before{\n  content:\"\"; }\n\n.bp3-icon-link::before{\n  content:\"\"; }\n\n.bp3-icon-list::before{\n  content:\"☰\"; }\n\n.bp3-icon-list-columns::before{\n  content:\"\"; }\n\n.bp3-icon-list-detail-view::before{\n  content:\"\"; }\n\n.bp3-icon-locate::before{\n  content:\"\"; }\n\n.bp3-icon-lock::before{\n  content:\"\"; }\n\n.bp3-icon-log-in::before{\n  content:\"\"; }\n\n.bp3-icon-log-out::before{\n  content:\"\"; }\n\n.bp3-icon-manual::before{\n  content:\"\"; }\n\n.bp3-icon-manually-entered-data::before{\n  content:\"\"; }\n\n.bp3-icon-map::before{\n  content:\"\"; }\n\n.bp3-icon-map-create::before{\n  content:\"\"; }\n\n.bp3-icon-map-marker::before{\n  content:\"\"; }\n\n.bp3-icon-maximize::before{\n  content:\"\"; }\n\n.bp3-icon-media::before{\n  content:\"\"; }\n\n.bp3-icon-menu::before{\n  content:\"\"; }\n\n.bp3-icon-menu-closed::before{\n  content:\"\"; }\n\n.bp3-icon-menu-open::before{\n  content:\"\"; }\n\n.bp3-icon-merge-columns::before{\n  content:\"\"; }\n\n.bp3-icon-merge-links::before{\n  content:\"\"; }\n\n.bp3-icon-minimize::before{\n  content:\"\"; }\n\n.bp3-icon-minus::before{\n  content:\"−\"; }\n\n.bp3-icon-mobile-phone::before{\n  content:\"\"; }\n\n.bp3-icon-mobile-video::before{\n  content:\"\"; }\n\n.bp3-icon-moon::before{\n  content:\"\"; }\n\n.bp3-icon-more::before{\n  content:\"\"; }\n\n.bp3-icon-mountain::before{\n  content:\"\"; }\n\n.bp3-icon-move::before{\n  content:\"\"; }\n\n.bp3-icon-mugshot::before{\n  content:\"\"; }\n\n.bp3-icon-multi-select::before{\n  content:\"\"; }\n\n.bp3-icon-music::before{\n  content:\"\"; }\n\n.bp3-icon-new-drawing::before{\n  content:\"\"; }\n\n.bp3-icon-new-grid-item::before{\n  content:\"\"; }\n\n.bp3-icon-new-layer::before{\n  content:\"\"; }\n\n.bp3-icon-new-layers::before{\n  content:\"\"; }\n\n.bp3-icon-new-link::before{\n  content:\"\"; }\n\n.bp3-icon-new-object::before{\n  content:\"\"; }\n\n.bp3-icon-new-person::before{\n  content:\"\"; }\n\n.bp3-icon-new-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-new-text-box::before{\n  content:\"\"; }\n\n.bp3-icon-ninja::before{\n  content:\"\"; }\n\n.bp3-icon-not-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-notifications::before{\n  content:\"\"; }\n\n.bp3-icon-notifications-updated::before{\n  content:\"\"; }\n\n.bp3-icon-numbered-list::before{\n  content:\"\"; }\n\n.bp3-icon-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-office::before{\n  content:\"\"; }\n\n.bp3-icon-offline::before{\n  content:\"\"; }\n\n.bp3-icon-oil-field::before{\n  content:\"\"; }\n\n.bp3-icon-one-column::before{\n  content:\"\"; }\n\n.bp3-icon-outdated::before{\n  content:\"\"; }\n\n.bp3-icon-page-layout::before{\n  content:\"\"; }\n\n.bp3-icon-panel-stats::before{\n  content:\"\"; }\n\n.bp3-icon-panel-table::before{\n  content:\"\"; }\n\n.bp3-icon-paperclip::before{\n  content:\"\"; }\n\n.bp3-icon-paragraph::before{\n  content:\"\"; }\n\n.bp3-icon-path::before{\n  content:\"\"; }\n\n.bp3-icon-path-search::before{\n  content:\"\"; }\n\n.bp3-icon-pause::before{\n  content:\"\"; }\n\n.bp3-icon-people::before{\n  content:\"\"; }\n\n.bp3-icon-percentage::before{\n  content:\"\"; }\n\n.bp3-icon-person::before{\n  content:\"\"; }\n\n.bp3-icon-phone::before{\n  content:\"☎\"; }\n\n.bp3-icon-pie-chart::before{\n  content:\"\"; }\n\n.bp3-icon-pin::before{\n  content:\"\"; }\n\n.bp3-icon-pivot::before{\n  content:\"\"; }\n\n.bp3-icon-pivot-table::before{\n  content:\"\"; }\n\n.bp3-icon-play::before{\n  content:\"\"; }\n\n.bp3-icon-plus::before{\n  content:\"+\"; }\n\n.bp3-icon-polygon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-power::before{\n  content:\"\"; }\n\n.bp3-icon-predictive-analysis::before{\n  content:\"\"; }\n\n.bp3-icon-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-presentation::before{\n  content:\"\"; }\n\n.bp3-icon-print::before{\n  content:\"⎙\"; }\n\n.bp3-icon-projects::before{\n  content:\"\"; }\n\n.bp3-icon-properties::before{\n  content:\"\"; }\n\n.bp3-icon-property::before{\n  content:\"\"; }\n\n.bp3-icon-publish-function::before{\n  content:\"\"; }\n\n.bp3-icon-pulse::before{\n  content:\"\"; }\n\n.bp3-icon-random::before{\n  content:\"\"; }\n\n.bp3-icon-record::before{\n  content:\"\"; }\n\n.bp3-icon-redo::before{\n  content:\"\"; }\n\n.bp3-icon-refresh::before{\n  content:\"\"; }\n\n.bp3-icon-regression-chart::before{\n  content:\"\"; }\n\n.bp3-icon-remove::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-repeat::before{\n  content:\"\"; }\n\n.bp3-icon-reset::before{\n  content:\"\"; }\n\n.bp3-icon-resolve::before{\n  content:\"\"; }\n\n.bp3-icon-rig::before{\n  content:\"\"; }\n\n.bp3-icon-right-join::before{\n  content:\"\"; }\n\n.bp3-icon-ring::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-document::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-page::before{\n  content:\"\"; }\n\n.bp3-icon-satellite::before{\n  content:\"\"; }\n\n.bp3-icon-saved::before{\n  content:\"\"; }\n\n.bp3-icon-scatter-plot::before{\n  content:\"\"; }\n\n.bp3-icon-search::before{\n  content:\"\"; }\n\n.bp3-icon-search-around::before{\n  content:\"\"; }\n\n.bp3-icon-search-template::before{\n  content:\"\"; }\n\n.bp3-icon-search-text::before{\n  content:\"\"; }\n\n.bp3-icon-segmented-control::before{\n  content:\"\"; }\n\n.bp3-icon-select::before{\n  content:\"\"; }\n\n.bp3-icon-selection::before{\n  content:\"⦿\"; }\n\n.bp3-icon-send-to::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-graph::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-map::before{\n  content:\"\"; }\n\n.bp3-icon-series-add::before{\n  content:\"\"; }\n\n.bp3-icon-series-configuration::before{\n  content:\"\"; }\n\n.bp3-icon-series-derived::before{\n  content:\"\"; }\n\n.bp3-icon-series-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-series-search::before{\n  content:\"\"; }\n\n.bp3-icon-settings::before{\n  content:\"\"; }\n\n.bp3-icon-share::before{\n  content:\"\"; }\n\n.bp3-icon-shield::before{\n  content:\"\"; }\n\n.bp3-icon-shop::before{\n  content:\"\"; }\n\n.bp3-icon-shopping-cart::before{\n  content:\"\"; }\n\n.bp3-icon-signal-search::before{\n  content:\"\"; }\n\n.bp3-icon-sim-card::before{\n  content:\"\"; }\n\n.bp3-icon-slash::before{\n  content:\"\"; }\n\n.bp3-icon-small-cross::before{\n  content:\"\"; }\n\n.bp3-icon-small-minus::before{\n  content:\"\"; }\n\n.bp3-icon-small-plus::before{\n  content:\"\"; }\n\n.bp3-icon-small-tick::before{\n  content:\"\"; }\n\n.bp3-icon-snowflake::before{\n  content:\"\"; }\n\n.bp3-icon-social-media::before{\n  content:\"\"; }\n\n.bp3-icon-sort::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-asc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-split-columns::before{\n  content:\"\"; }\n\n.bp3-icon-square::before{\n  content:\"\"; }\n\n.bp3-icon-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-star::before{\n  content:\"★\"; }\n\n.bp3-icon-star-empty::before{\n  content:\"☆\"; }\n\n.bp3-icon-step-backward::before{\n  content:\"\"; }\n\n.bp3-icon-step-chart::before{\n  content:\"\"; }\n\n.bp3-icon-step-forward::before{\n  content:\"\"; }\n\n.bp3-icon-stop::before{\n  content:\"\"; }\n\n.bp3-icon-stopwatch::before{\n  content:\"\"; }\n\n.bp3-icon-strikethrough::before{\n  content:\"\"; }\n\n.bp3-icon-style::before{\n  content:\"\"; }\n\n.bp3-icon-swap-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-swap-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-circle::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-cross::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-diamond::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-square::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-down::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-up::before{\n  content:\"\"; }\n\n.bp3-icon-tag::before{\n  content:\"\"; }\n\n.bp3-icon-take-action::before{\n  content:\"\"; }\n\n.bp3-icon-taxi::before{\n  content:\"\"; }\n\n.bp3-icon-text-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-th::before{\n  content:\"\"; }\n\n.bp3-icon-th-derived::before{\n  content:\"\"; }\n\n.bp3-icon-th-disconnect::before{\n  content:\"\"; }\n\n.bp3-icon-th-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-th-list::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-down::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-up::before{\n  content:\"\"; }\n\n.bp3-icon-tick::before{\n  content:\"✓\"; }\n\n.bp3-icon-tick-circle::before{\n  content:\"\"; }\n\n.bp3-icon-time::before{\n  content:\"⏲\"; }\n\n.bp3-icon-timeline-area-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-events::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-line-chart::before{\n  content:\"\"; }\n\n.bp3-icon-tint::before{\n  content:\"\"; }\n\n.bp3-icon-torch::before{\n  content:\"\"; }\n\n.bp3-icon-tractor::before{\n  content:\"\"; }\n\n.bp3-icon-train::before{\n  content:\"\"; }\n\n.bp3-icon-translate::before{\n  content:\"\"; }\n\n.bp3-icon-trash::before{\n  content:\"\"; }\n\n.bp3-icon-tree::before{\n  content:\"\"; }\n\n.bp3-icon-trending-down::before{\n  content:\"\"; }\n\n.bp3-icon-trending-up::before{\n  content:\"\"; }\n\n.bp3-icon-truck::before{\n  content:\"\"; }\n\n.bp3-icon-two-columns::before{\n  content:\"\"; }\n\n.bp3-icon-unarchive::before{\n  content:\"\"; }\n\n.bp3-icon-underline::before{\n  content:\"⎁\"; }\n\n.bp3-icon-undo::before{\n  content:\"⎌\"; }\n\n.bp3-icon-ungroup-objects::before{\n  content:\"\"; }\n\n.bp3-icon-unknown-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-unlock::before{\n  content:\"\"; }\n\n.bp3-icon-unpin::before{\n  content:\"\"; }\n\n.bp3-icon-unresolve::before{\n  content:\"\"; }\n\n.bp3-icon-updated::before{\n  content:\"\"; }\n\n.bp3-icon-upload::before{\n  content:\"\"; }\n\n.bp3-icon-user::before{\n  content:\"\"; }\n\n.bp3-icon-variable::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-video::before{\n  content:\"\"; }\n\n.bp3-icon-volume-down::before{\n  content:\"\"; }\n\n.bp3-icon-volume-off::before{\n  content:\"\"; }\n\n.bp3-icon-volume-up::before{\n  content:\"\"; }\n\n.bp3-icon-walk::before{\n  content:\"\"; }\n\n.bp3-icon-warning-sign::before{\n  content:\"\"; }\n\n.bp3-icon-waterfall-chart::before{\n  content:\"\"; }\n\n.bp3-icon-widget::before{\n  content:\"\"; }\n\n.bp3-icon-widget-button::before{\n  content:\"\"; }\n\n.bp3-icon-widget-footer::before{\n  content:\"\"; }\n\n.bp3-icon-widget-header::before{\n  content:\"\"; }\n\n.bp3-icon-wrench::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-in::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-out::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-to-fit::before{\n  content:\"\"; }\n.bp3-submenu > .bp3-popover-wrapper{\n  display:block; }\n\n.bp3-submenu .bp3-popover-target{\n  display:block; }\n  .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{ }\n\n.bp3-submenu.bp3-popover{\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0 5px; }\n  .bp3-submenu.bp3-popover > .bp3-popover-content{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-submenu.bp3-popover, .bp3-submenu.bp3-popover.bp3-dark{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-dark .bp3-submenu.bp3-popover > .bp3-popover-content, .bp3-submenu.bp3-popover.bp3-dark > .bp3-popover-content{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n.bp3-menu{\n  background:#ffffff;\n  border-radius:3px;\n  color:#182026;\n  list-style:none;\n  margin:0;\n  min-width:180px;\n  padding:5px;\n  text-align:left; }\n\n.bp3-menu-divider{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px; }\n  .bp3-dark .bp3-menu-divider{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-menu-item{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  border-radius:2px;\n  color:inherit;\n  line-height:20px;\n  padding:5px 7px;\n  text-decoration:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-menu-item > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-menu-item > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > *{\n    margin-right:7px; }\n  .bp3-menu-item:empty::before,\n  .bp3-menu-item > :last-child{\n    margin-right:0; }\n  .bp3-menu-item > .bp3-fill{\n    word-break:break-word; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    background-color:rgba(167, 182, 194, 0.3);\n    cursor:pointer;\n    text-decoration:none; }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-dark .bp3-menu-item{\n    color:inherit; }\n    .bp3-dark .bp3-menu-item:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n      background-color:rgba(138, 155, 168, 0.15);\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-disabled{\n      background-color:inherit;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-menu-item.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-primary::before, .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary:active, .bp3-menu-item.bp3-intent-primary:active::before, .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-success::before, .bp3-menu-item.bp3-intent-success::after,\n    .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-menu-item.bp3-intent-success:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success:active, .bp3-menu-item.bp3-intent-success:active::before, .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-warning::before, .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning:active, .bp3-menu-item.bp3-intent-warning:active::before, .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-danger::before, .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger:active, .bp3-menu-item.bp3-intent-danger:active::before, .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    margin-right:7px; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > .bp3-icon{\n    color:#5c7080;\n    margin-top:2px; }\n  .bp3-menu-item .bp3-menu-item-label{\n    color:#5c7080; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    color:inherit; }\n  .bp3-menu-item.bp3-active, .bp3-menu-item:active{\n    background-color:rgba(115, 134, 148, 0.3); }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit !important;\n    color:rgba(92, 112, 128, 0.6) !important;\n    cursor:not-allowed !important;\n    outline:none !important; }\n    .bp3-menu-item.bp3-disabled::before,\n    .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-large .bp3-menu-item{\n    font-size:16px;\n    line-height:22px;\n    padding:9px 7px; }\n    .bp3-large .bp3-menu-item .bp3-icon{\n      margin-top:3px; }\n    .bp3-large .bp3-menu-item::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      margin-right:10px;\n      margin-top:1px; }\n\nbutton.bp3-menu-item{\n  background:none;\n  border:none;\n  text-align:left;\n  width:100%; }\n.bp3-menu-header{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px;\n  cursor:default;\n  padding-left:2px; }\n  .bp3-dark .bp3-menu-header{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n  .bp3-menu-header:first-of-type{\n    border-top:none; }\n  .bp3-menu-header > h6{\n    color:#182026;\n    font-weight:600;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    line-height:17px;\n    margin:0;\n    padding:10px 7px 0 1px; }\n    .bp3-dark .bp3-menu-header > h6{\n      color:#f5f8fa; }\n  .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n  .bp3-large .bp3-menu-header > h6{\n    font-size:18px;\n    padding-bottom:5px;\n    padding-top:15px; }\n  .bp3-large .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n\n.bp3-dark .bp3-menu{\n  background:#30404d;\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-menu-item{ }\n  .bp3-dark .bp3-menu-item.bp3-intent-primary{\n    color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary::before, .bp3-dark .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary:active, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-success{\n    color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success::before, .bp3-dark .bp3-menu-item.bp3-intent-success::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success:active, .bp3-dark .bp3-menu-item.bp3-intent-success:active::before, .bp3-dark .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-warning{\n    color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning::before, .bp3-dark .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning:active, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-danger{\n    color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger::before, .bp3-dark .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger:active, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item::before,\n  .bp3-dark .bp3-menu-item > .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item .bp3-menu-item-label{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item.bp3-active, .bp3-dark .bp3-menu-item:active{\n    background-color:rgba(138, 155, 168, 0.3); }\n  .bp3-dark .bp3-menu-item.bp3-disabled{\n    color:rgba(167, 182, 194, 0.6) !important; }\n    .bp3-dark .bp3-menu-item.bp3-disabled::before,\n    .bp3-dark .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-dark .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(167, 182, 194, 0.6) !important; }\n\n.bp3-dark .bp3-menu-divider,\n.bp3-dark .bp3-menu-header{\n  border-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-dark .bp3-menu-header > h6{\n  color:#f5f8fa; }\n\n.bp3-label .bp3-menu{\n  margin-top:5px; }\n.bp3-navbar{\n  background-color:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  height:50px;\n  padding:0 15px;\n  position:relative;\n  width:100%;\n  z-index:10; }\n  .bp3-navbar.bp3-dark,\n  .bp3-dark .bp3-navbar{\n    background-color:#394b59; }\n  .bp3-navbar.bp3-dark{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-navbar{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-navbar.bp3-fixed-top{\n    left:0;\n    position:fixed;\n    right:0;\n    top:0; }\n\n.bp3-navbar-heading{\n  font-size:16px;\n  margin-right:15px; }\n\n.bp3-navbar-group{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:50px; }\n  .bp3-navbar-group.bp3-align-left{\n    float:left; }\n  .bp3-navbar-group.bp3-align-right{\n    float:right; }\n\n.bp3-navbar-divider{\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  height:20px;\n  margin:0 10px; }\n  .bp3-dark .bp3-navbar-divider{\n    border-left-color:rgba(255, 255, 255, 0.15); }\n.bp3-non-ideal-state{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  height:100%;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  text-align:center;\n  width:100%; }\n  .bp3-non-ideal-state > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-non-ideal-state > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-non-ideal-state::before,\n  .bp3-non-ideal-state > *{\n    margin-bottom:20px; }\n  .bp3-non-ideal-state:empty::before,\n  .bp3-non-ideal-state > :last-child{\n    margin-bottom:0; }\n  .bp3-non-ideal-state > *{\n    max-width:400px; }\n\n.bp3-non-ideal-state-visual{\n  color:rgba(92, 112, 128, 0.6);\n  font-size:60px; }\n  .bp3-dark .bp3-non-ideal-state-visual{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-overflow-list{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:nowrap;\n      flex-wrap:nowrap;\n  min-width:0; }\n\n.bp3-overflow-list-spacer{\n  -ms-flex-negative:1;\n      flex-shrink:1;\n  width:1px; }\n\nbody.bp3-overlay-open{\n  overflow:hidden; }\n\n.bp3-overlay{\n  bottom:0;\n  left:0;\n  position:static;\n  right:0;\n  top:0;\n  z-index:20; }\n  .bp3-overlay:not(.bp3-overlay-open){\n    pointer-events:none; }\n  .bp3-overlay.bp3-overlay-container{\n    overflow:hidden;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-scroll-container{\n    overflow:auto;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-scroll-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-inline{\n    display:inline;\n    overflow:visible; }\n\n.bp3-overlay-content{\n  position:fixed;\n  z-index:20; }\n  .bp3-overlay-inline .bp3-overlay-content,\n  .bp3-overlay-scroll-container .bp3-overlay-content{\n    position:absolute; }\n\n.bp3-overlay-backdrop{\n  bottom:0;\n  left:0;\n  position:fixed;\n  right:0;\n  top:0;\n  opacity:1;\n  background-color:rgba(16, 22, 26, 0.7);\n  overflow:auto;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  z-index:20; }\n  .bp3-overlay-backdrop.bp3-overlay-enter, .bp3-overlay-backdrop.bp3-overlay-appear{\n    opacity:0; }\n  .bp3-overlay-backdrop.bp3-overlay-enter-active, .bp3-overlay-backdrop.bp3-overlay-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop.bp3-overlay-exit{\n    opacity:1; }\n  .bp3-overlay-backdrop.bp3-overlay-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop:focus{\n    outline:none; }\n  .bp3-overlay-inline .bp3-overlay-backdrop{\n    position:absolute; }\n.bp3-panel-stack{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-view{\n    background-color:#30404d; }\n  .bp3-panel-stack-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter, .bp3-panel-stack-push .bp3-panel-stack-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter-active, .bp3-panel-stack-push .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter, .bp3-panel-stack-pop .bp3-panel-stack-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter-active, .bp3-panel-stack-pop .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-panel-stack2{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack2-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack2-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack2-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack2-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack2-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack2-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-view{\n    background-color:#30404d; }\n  .bp3-panel-stack2-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter, .bp3-panel-stack2-push .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter-active, .bp3-panel-stack2-push .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter, .bp3-panel-stack2-pop .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter-active, .bp3-panel-stack2-pop .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-popover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  border-radius:3px;\n  display:inline-block;\n  z-index:20; }\n  .bp3-popover .bp3-popover-arrow{\n    height:30px;\n    position:absolute;\n    width:30px; }\n    .bp3-popover .bp3-popover-arrow::before{\n      height:20px;\n      margin:5px;\n      width:20px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover{\n    margin-bottom:17px;\n    margin-top:-17px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n      bottom:-11px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover{\n    margin-left:17px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n      left:-11px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover{\n    margin-top:17px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n      top:-11px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover{\n    margin-left:-17px;\n    margin-right:17px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n      right:-11px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-popover > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-popover > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n    top:-0.3934px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n    right:-0.3934px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n    left:-0.3934px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n    bottom:-0.3934px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-popover .bp3-popover-content{\n    background:#ffffff;\n    color:inherit; }\n  .bp3-popover .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-popover .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-popover .bp3-popover-arrow-fill{\n    fill:#ffffff; }\n  .bp3-popover-enter > .bp3-popover, .bp3-popover-appear > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3); }\n  .bp3-popover-enter-active > .bp3-popover, .bp3-popover-appear-active > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover-exit > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover .bp3-popover-content{\n    border-radius:3px;\n    position:relative; }\n  .bp3-popover.bp3-popover-content-sizing .bp3-popover-content{\n    max-width:350px;\n    padding:20px; }\n  .bp3-popover-target + .bp3-overlay .bp3-popover.bp3-popover-content-sizing{\n    width:350px; }\n  .bp3-popover.bp3-minimal{\n    margin:0 !important; }\n    .bp3-popover.bp3-minimal .bp3-popover-arrow{\n      display:none; }\n    .bp3-popover.bp3-minimal.bp3-popover{\n      -webkit-transform:scale(1);\n              transform:scale(1); }\n      .bp3-popover-enter > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-enter-active > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n      .bp3-popover-exit > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-exit-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover.bp3-dark,\n  .bp3-dark .bp3-popover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-popover .bp3-popover-content{\n      background:#30404d;\n      color:inherit; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-popover .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-fill{\n      fill:#30404d; }\n\n.bp3-popover-arrow::before{\n  border-radius:2px;\n  content:\"\";\n  display:block;\n  position:absolute;\n  -webkit-transform:rotate(45deg);\n          transform:rotate(45deg); }\n\n.bp3-tether-pinned .bp3-popover-arrow{\n  display:none; }\n\n.bp3-popover-backdrop{\n  background:rgba(255, 255, 255, 0); }\n\n.bp3-transition-container{\n  opacity:1;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  z-index:20; }\n  .bp3-transition-container.bp3-popover-enter, .bp3-transition-container.bp3-popover-appear{\n    opacity:0; }\n  .bp3-transition-container.bp3-popover-enter-active, .bp3-transition-container.bp3-popover-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container.bp3-popover-exit{\n    opacity:1; }\n  .bp3-transition-container.bp3-popover-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container:focus{\n    outline:none; }\n  .bp3-transition-container.bp3-popover-leave .bp3-popover-content{\n    pointer-events:none; }\n  .bp3-transition-container[data-x-out-of-boundaries]{\n    display:none; }\n\nspan.bp3-popover-target{\n  display:inline-block; }\n\n.bp3-popover-wrapper.bp3-fill{\n  width:100%; }\n\n.bp3-portal{\n  left:0;\n  position:absolute;\n  right:0;\n  top:0; }\n@-webkit-keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n@keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n\n.bp3-progress-bar{\n  background:rgba(92, 112, 128, 0.2);\n  border-radius:40px;\n  display:block;\n  height:8px;\n  overflow:hidden;\n  position:relative;\n  width:100%; }\n  .bp3-progress-bar .bp3-progress-meter{\n    background:linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%);\n    background-color:rgba(92, 112, 128, 0.8);\n    background-size:30px 30px;\n    border-radius:40px;\n    height:100%;\n    position:absolute;\n    -webkit-transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:100%; }\n  .bp3-progress-bar:not(.bp3-no-animation):not(.bp3-no-stripes) .bp3-progress-meter{\n    animation:linear-progress-bar-stripes 300ms linear infinite reverse; }\n  .bp3-progress-bar.bp3-no-stripes .bp3-progress-meter{\n    background-image:none; }\n\n.bp3-dark .bp3-progress-bar{\n  background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-progress-bar .bp3-progress-meter{\n    background-color:#8a9ba8; }\n\n.bp3-progress-bar.bp3-intent-primary .bp3-progress-meter{\n  background-color:#137cbd; }\n\n.bp3-progress-bar.bp3-intent-success .bp3-progress-meter{\n  background-color:#0f9960; }\n\n.bp3-progress-bar.bp3-intent-warning .bp3-progress-meter{\n  background-color:#d9822b; }\n\n.bp3-progress-bar.bp3-intent-danger .bp3-progress-meter{\n  background-color:#db3737; }\n@-webkit-keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n@keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n.bp3-skeleton{\n  -webkit-animation:1000ms linear infinite alternate skeleton-glow;\n          animation:1000ms linear infinite alternate skeleton-glow;\n  background:rgba(206, 217, 224, 0.2);\n  background-clip:padding-box !important;\n  border-color:rgba(206, 217, 224, 0.2) !important;\n  border-radius:2px;\n  -webkit-box-shadow:none !important;\n          box-shadow:none !important;\n  color:transparent !important;\n  cursor:default;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-skeleton::before, .bp3-skeleton::after,\n  .bp3-skeleton *{\n    visibility:hidden !important; }\n.bp3-slider{\n  height:40px;\n  min-width:150px;\n  width:100%;\n  cursor:default;\n  outline:none;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-slider:hover{\n    cursor:pointer; }\n  .bp3-slider:active{\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-slider.bp3-disabled{\n    cursor:not-allowed;\n    opacity:0.5; }\n  .bp3-slider.bp3-slider-unlabeled{\n    height:16px; }\n\n.bp3-slider-track,\n.bp3-slider-progress{\n  height:6px;\n  left:0;\n  right:0;\n  top:5px;\n  position:absolute; }\n\n.bp3-slider-track{\n  border-radius:3px;\n  overflow:hidden; }\n\n.bp3-slider-progress{\n  background:rgba(92, 112, 128, 0.2); }\n  .bp3-dark .bp3-slider-progress{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-slider-progress.bp3-intent-primary{\n    background-color:#137cbd; }\n  .bp3-slider-progress.bp3-intent-success{\n    background-color:#0f9960; }\n  .bp3-slider-progress.bp3-intent-warning{\n    background-color:#d9822b; }\n  .bp3-slider-progress.bp3-intent-danger{\n    background-color:#db3737; }\n\n.bp3-slider-handle{\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n  cursor:pointer;\n  height:16px;\n  left:0;\n  position:absolute;\n  top:0;\n  width:16px; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-slider-handle:active, .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-slider-handle:disabled, .bp3-slider-handle.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-slider-handle:disabled.bp3-active, .bp3-slider-handle:disabled.bp3-active:hover, .bp3-slider-handle.bp3-disabled.bp3-active, .bp3-slider-handle.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n  .bp3-slider-handle:focus{\n    z-index:1; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n    cursor:-webkit-grab;\n    cursor:grab;\n    z-index:2; }\n  .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-disabled .bp3-slider-handle{\n    background:#bfccd6;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    pointer-events:none; }\n  .bp3-dark .bp3-slider-handle{\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover, .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-slider-handle:disabled, .bp3-dark .bp3-slider-handle.bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-slider-handle:disabled.bp3-active, .bp3-dark .bp3-slider-handle.bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-slider-handle .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-slider-handle, .bp3-dark .bp3-slider-handle:hover{\n      background-color:#394b59; }\n    .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#293742; }\n  .bp3-dark .bp3-disabled .bp3-slider-handle{\n    background:#5c7080;\n    border-color:#5c7080;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-slider-handle .bp3-slider-label{\n    background:#394b59;\n    border-radius:3px;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n    color:#f5f8fa;\n    margin-left:8px; }\n    .bp3-dark .bp3-slider-handle .bp3-slider-label{\n      background:#e1e8ed;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n      color:#394b59; }\n    .bp3-disabled .bp3-slider-handle .bp3-slider-label{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-slider-handle.bp3-start, .bp3-slider-handle.bp3-end{\n    width:8px; }\n  .bp3-slider-handle.bp3-start{\n    border-bottom-right-radius:0;\n    border-top-right-radius:0; }\n  .bp3-slider-handle.bp3-end{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0;\n    margin-left:8px; }\n    .bp3-slider-handle.bp3-end .bp3-slider-label{\n      margin-left:0; }\n\n.bp3-slider-label{\n  -webkit-transform:translate(-50%, 20px);\n          transform:translate(-50%, 20px);\n  display:inline-block;\n  font-size:12px;\n  line-height:1;\n  padding:2px 5px;\n  position:absolute;\n  vertical-align:top; }\n\n.bp3-slider.bp3-vertical{\n  height:150px;\n  min-width:40px;\n  width:40px; }\n  .bp3-slider.bp3-vertical .bp3-slider-track,\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    bottom:0;\n    height:auto;\n    left:5px;\n    top:0;\n    width:6px; }\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    top:auto; }\n  .bp3-slider.bp3-vertical .bp3-slider-label{\n    -webkit-transform:translate(20px, 50%);\n            transform:translate(20px, 50%); }\n  .bp3-slider.bp3-vertical .bp3-slider-handle{\n    top:auto; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle .bp3-slider-label{\n      margin-left:0;\n      margin-top:-8px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end, .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      height:8px;\n      margin-left:0;\n      width:16px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      border-bottom-right-radius:3px;\n      border-top-left-radius:0; }\n      .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start .bp3-slider-label{\n        -webkit-transform:translate(20px);\n                transform:translate(20px); }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end{\n      border-bottom-left-radius:0;\n      border-bottom-right-radius:0;\n      border-top-left-radius:3px;\n      margin-bottom:8px; }\n\n@-webkit-keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n@keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n.bp3-spinner{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  overflow:visible;\n  vertical-align:middle; }\n  .bp3-spinner svg{\n    display:block; }\n  .bp3-spinner path{\n    fill-opacity:0; }\n  .bp3-spinner .bp3-spinner-head{\n    stroke:rgba(92, 112, 128, 0.8);\n    stroke-linecap:round;\n    -webkit-transform-origin:center;\n            transform-origin:center;\n    -webkit-transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-spinner .bp3-spinner-track{\n    stroke:rgba(92, 112, 128, 0.2); }\n\n.bp3-spinner-animation{\n  -webkit-animation:pt-spinner-animation 500ms linear infinite;\n          animation:pt-spinner-animation 500ms linear infinite; }\n  .bp3-no-spin > .bp3-spinner-animation{\n    -webkit-animation:none;\n            animation:none; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-head{\n  stroke:#8a9ba8; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-track{\n  stroke:rgba(16, 22, 26, 0.5); }\n\n.bp3-spinner.bp3-intent-primary .bp3-spinner-head{\n  stroke:#137cbd; }\n\n.bp3-spinner.bp3-intent-success .bp3-spinner-head{\n  stroke:#0f9960; }\n\n.bp3-spinner.bp3-intent-warning .bp3-spinner-head{\n  stroke:#d9822b; }\n\n.bp3-spinner.bp3-intent-danger .bp3-spinner-head{\n  stroke:#db3737; }\n.bp3-tabs.bp3-vertical{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-list{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab{\n      border-radius:3px;\n      padding:0 10px;\n      width:100%; }\n      .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab[aria-selected=\"true\"]{\n        background-color:rgba(19, 124, 189, 0.2);\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n      background-color:rgba(19, 124, 189, 0.2);\n      border-radius:3px;\n      bottom:0;\n      height:auto;\n      left:0;\n      right:0;\n      top:0; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-panel{\n    margin-top:0;\n    padding-left:20px; }\n\n.bp3-tab-list{\n  -webkit-box-align:end;\n      -ms-flex-align:end;\n          align-items:flex-end;\n  border:none;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  list-style:none;\n  margin:0;\n  padding:0;\n  position:relative; }\n  .bp3-tab-list > *:not(:last-child){\n    margin-right:20px; }\n\n.bp3-tab{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:#182026;\n  cursor:pointer;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  font-size:14px;\n  line-height:30px;\n  max-width:100%;\n  position:relative;\n  vertical-align:top; }\n  .bp3-tab a{\n    color:inherit;\n    display:block;\n    text-decoration:none; }\n  .bp3-tab-indicator-wrapper ~ .bp3-tab{\n    background-color:transparent !important;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important; }\n  .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-tab[aria-selected=\"true\"]{\n    border-radius:0;\n    -webkit-box-shadow:inset 0 -3px 0 #106ba3;\n            box-shadow:inset 0 -3px 0 #106ba3; }\n  .bp3-tab[aria-selected=\"true\"], .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#106ba3; }\n  .bp3-tab:focus{\n    -moz-outline-radius:0; }\n  .bp3-large > .bp3-tab{\n    font-size:16px;\n    line-height:40px; }\n\n.bp3-tab-panel{\n  margin-top:20px; }\n  .bp3-tab-panel[aria-hidden=\"true\"]{\n    display:none; }\n\n.bp3-tab-indicator-wrapper{\n  left:0;\n  pointer-events:none;\n  position:absolute;\n  top:0;\n  -webkit-transform:translateX(0), translateY(0);\n          transform:translateX(0), translateY(0);\n  -webkit-transition:height, width, -webkit-transform;\n  transition:height, width, -webkit-transform;\n  transition:height, transform, width;\n  transition:height, transform, width, -webkit-transform;\n  -webkit-transition-duration:200ms;\n          transition-duration:200ms;\n  -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n          transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n    background-color:#106ba3;\n    bottom:0;\n    height:3px;\n    left:0;\n    position:absolute;\n    right:0; }\n  .bp3-tab-indicator-wrapper.bp3-no-animation{\n    -webkit-transition:none;\n    transition:none; }\n\n.bp3-dark .bp3-tab{\n  color:#f5f8fa; }\n  .bp3-dark .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"]{\n    -webkit-box-shadow:inset 0 -3px 0 #48aff0;\n            box-shadow:inset 0 -3px 0 #48aff0; }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"], .bp3-dark .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#48aff0; }\n\n.bp3-dark .bp3-tab-indicator{\n  background-color:#48aff0; }\n\n.bp3-flex-expander{\n  -webkit-box-flex:1;\n      -ms-flex:1 1;\n          flex:1 1; }\n.bp3-tag{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#5c7080;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:#f5f8fa;\n  font-size:12px;\n  line-height:16px;\n  max-width:100%;\n  min-height:20px;\n  min-width:20px;\n  padding:2px 6px;\n  position:relative; }\n  .bp3-tag.bp3-interactive{\n    cursor:pointer; }\n    .bp3-tag.bp3-interactive:hover{\n      background-color:rgba(92, 112, 128, 0.85); }\n    .bp3-tag.bp3-interactive.bp3-active, .bp3-tag.bp3-interactive:active{\n      background-color:rgba(92, 112, 128, 0.7); }\n  .bp3-tag > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag::before,\n  .bp3-tag > *{\n    margin-right:4px; }\n  .bp3-tag:empty::before,\n  .bp3-tag > :last-child{\n    margin-right:0; }\n  .bp3-tag:focus{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:0;\n    -moz-outline-radius:6px; }\n  .bp3-tag.bp3-round{\n    border-radius:30px;\n    padding-left:8px;\n    padding-right:8px; }\n  .bp3-dark .bp3-tag{\n    background-color:#bfccd6;\n    color:#182026; }\n    .bp3-dark .bp3-tag.bp3-interactive{\n      cursor:pointer; }\n      .bp3-dark .bp3-tag.bp3-interactive:hover{\n        background-color:rgba(191, 204, 214, 0.85); }\n      .bp3-dark .bp3-tag.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-interactive:active{\n        background-color:rgba(191, 204, 214, 0.7); }\n    .bp3-dark .bp3-tag > .bp3-icon, .bp3-dark .bp3-tag .bp3-icon-standard, .bp3-dark .bp3-tag .bp3-icon-large{\n      fill:currentColor; }\n  .bp3-tag > .bp3-icon, .bp3-tag .bp3-icon-standard, .bp3-tag .bp3-icon-large{\n    fill:#ffffff; }\n  .bp3-tag.bp3-large,\n  .bp3-large .bp3-tag{\n    font-size:14px;\n    line-height:20px;\n    min-height:30px;\n    min-width:30px;\n    padding:5px 10px; }\n    .bp3-tag.bp3-large::before,\n    .bp3-tag.bp3-large > *,\n    .bp3-large .bp3-tag::before,\n    .bp3-large .bp3-tag > *{\n      margin-right:7px; }\n    .bp3-tag.bp3-large:empty::before,\n    .bp3-tag.bp3-large > :last-child,\n    .bp3-large .bp3-tag:empty::before,\n    .bp3-large .bp3-tag > :last-child{\n      margin-right:0; }\n    .bp3-tag.bp3-large.bp3-round,\n    .bp3-large .bp3-tag.bp3-round{\n      padding-left:12px;\n      padding-right:12px; }\n  .bp3-tag.bp3-intent-primary{\n    background:#137cbd;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.85); }\n      .bp3-tag.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.7); }\n  .bp3-tag.bp3-intent-success{\n    background:#0f9960;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.85); }\n      .bp3-tag.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.7); }\n  .bp3-tag.bp3-intent-warning{\n    background:#d9822b;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.85); }\n      .bp3-tag.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.7); }\n  .bp3-tag.bp3-intent-danger{\n    background:#db3737;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.85); }\n      .bp3-tag.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.7); }\n  .bp3-tag.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-tag.bp3-minimal > .bp3-icon, .bp3-tag.bp3-minimal .bp3-icon-standard, .bp3-tag.bp3-minimal .bp3-icon-large{\n    fill:#5c7080; }\n  .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n    background-color:rgba(138, 155, 168, 0.2);\n    color:#182026; }\n    .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n        background-color:rgba(92, 112, 128, 0.3); }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n        background-color:rgba(92, 112, 128, 0.4); }\n    .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n      color:#f5f8fa; }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n          background-color:rgba(191, 204, 214, 0.3); }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n          background-color:rgba(191, 204, 214, 0.4); }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) > .bp3-icon, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n        fill:#a7b6c2; }\n  .bp3-tag.bp3-minimal.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15);\n    color:#106ba3; }\n    .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-primary > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-large{\n      fill:#137cbd; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25);\n      color:#48aff0; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n          background-color:rgba(19, 124, 189, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n          background-color:rgba(19, 124, 189, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15);\n    color:#0d8050; }\n    .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-success > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-large{\n      fill:#0f9960; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25);\n      color:#3dcc91; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n          background-color:rgba(15, 153, 96, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n          background-color:rgba(15, 153, 96, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15);\n    color:#bf7326; }\n    .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-warning > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-large{\n      fill:#d9822b; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25);\n      color:#ffb366; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n          background-color:rgba(217, 130, 43, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n          background-color:rgba(217, 130, 43, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15);\n    color:#c23030; }\n    .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-danger > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-large{\n      fill:#db3737; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25);\n      color:#ff7373; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n          background-color:rgba(219, 55, 55, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n          background-color:rgba(219, 55, 55, 0.45); }\n\n.bp3-tag-remove{\n  background:none;\n  border:none;\n  color:inherit;\n  cursor:pointer;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin-bottom:-2px;\n  margin-right:-6px !important;\n  margin-top:-2px;\n  opacity:0.5;\n  padding:2px;\n  padding-left:0; }\n  .bp3-tag-remove:hover{\n    background:none;\n    opacity:0.8;\n    text-decoration:none; }\n  .bp3-tag-remove:active{\n    opacity:1; }\n  .bp3-tag-remove:empty::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    content:\"\"; }\n  .bp3-large .bp3-tag-remove{\n    margin-right:-10px !important;\n    padding:0 5px 0 0; }\n    .bp3-large .bp3-tag-remove:empty::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1; }\n.bp3-tag-input{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  cursor:text;\n  height:auto;\n  line-height:inherit;\n  min-height:30px;\n  padding-left:5px;\n  padding-right:0; }\n  .bp3-tag-input > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag-input > .bp3-tag-input-values{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag-input .bp3-tag-input-icon{\n    color:#5c7080;\n    margin-left:2px;\n    margin-right:7px;\n    margin-top:7px; }\n  .bp3-tag-input .bp3-tag-input-values{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row;\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    -ms-flex-item-align:stretch;\n        align-self:stretch;\n    -ms-flex-wrap:wrap;\n        flex-wrap:wrap;\n    margin-right:7px;\n    margin-top:5px;\n    min-width:0; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      -webkit-box-flex:0;\n          -ms-flex-positive:0;\n              flex-grow:0;\n      -ms-flex-negative:0;\n          flex-shrink:0; }\n    .bp3-tag-input .bp3-tag-input-values > .bp3-fill{\n      -webkit-box-flex:1;\n          -ms-flex-positive:1;\n              flex-grow:1;\n      -ms-flex-negative:1;\n          flex-shrink:1; }\n    .bp3-tag-input .bp3-tag-input-values::before,\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-right:5px; }\n    .bp3-tag-input .bp3-tag-input-values:empty::before,\n    .bp3-tag-input .bp3-tag-input-values > :last-child{\n      margin-right:0; }\n    .bp3-tag-input .bp3-tag-input-values:first-child .bp3-input-ghost:first-child{\n      padding-left:5px; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-bottom:5px; }\n  .bp3-tag-input .bp3-tag{\n    overflow-wrap:break-word; }\n    .bp3-tag-input .bp3-tag.bp3-active{\n      outline:rgba(19, 124, 189, 0.6) auto 2px;\n      outline-offset:0;\n      -moz-outline-radius:6px; }\n  .bp3-tag-input .bp3-input-ghost{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:20px;\n    width:80px; }\n    .bp3-tag-input .bp3-input-ghost:disabled, .bp3-tag-input .bp3-input-ghost.bp3-disabled{\n      cursor:not-allowed; }\n  .bp3-tag-input .bp3-button,\n  .bp3-tag-input .bp3-spinner{\n    margin:3px;\n    margin-left:0; }\n  .bp3-tag-input .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-tag-input.bp3-large{\n    height:auto;\n    min-height:40px; }\n    .bp3-tag-input.bp3-large::before,\n    .bp3-tag-input.bp3-large > *{\n      margin-right:10px; }\n    .bp3-tag-input.bp3-large:empty::before,\n    .bp3-tag-input.bp3-large > :last-child{\n      margin-right:0; }\n    .bp3-tag-input.bp3-large .bp3-tag-input-icon{\n      margin-left:5px;\n      margin-top:10px; }\n    .bp3-tag-input.bp3-large .bp3-input-ghost{\n      line-height:30px; }\n    .bp3-tag-input.bp3-large .bp3-button{\n      min-height:30px;\n      min-width:30px;\n      padding:5px 10px;\n      margin:5px;\n      margin-left:0; }\n    .bp3-tag-input.bp3-large .bp3-spinner{\n      margin:8px;\n      margin-left:0; }\n  .bp3-tag-input.bp3-active{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-tag-input .bp3-tag-input-icon, .bp3-tag-input.bp3-dark .bp3-tag-input-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-tag-input .bp3-input-ghost, .bp3-tag-input.bp3-dark .bp3-input-ghost{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-webkit-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-moz-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost:-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tag-input.bp3-active, .bp3-tag-input.bp3-dark.bp3-active{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-primary, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-success, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-warning, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-danger, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-input-ghost{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0; }\n  .bp3-input-ghost::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:focus{\n    outline:none !important; }\n.bp3-toast{\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:20px 0 0;\n  max-width:500px;\n  min-width:300px;\n  pointer-events:all;\n  position:relative !important; }\n  .bp3-toast.bp3-toast-enter, .bp3-toast.bp3-toast-appear{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active, .bp3-toast.bp3-toast-appear-active{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-enter ~ .bp3-toast, .bp3-toast.bp3-toast-appear ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active ~ .bp3-toast, .bp3-toast.bp3-toast-appear-active ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-exit{\n    opacity:1;\n    -webkit-filter:blur(0);\n            filter:blur(0); }\n  .bp3-toast.bp3-toast-exit-active{\n    opacity:0;\n    -webkit-filter:blur(10px);\n            filter:blur(10px);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:opacity, filter;\n    transition-property:opacity, filter, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast.bp3-toast-exit ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0); }\n  .bp3-toast.bp3-toast-exit-active ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px);\n    -webkit-transition-delay:50ms;\n            transition-delay:50ms;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast .bp3-button-group{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    padding:5px;\n    padding-left:0; }\n  .bp3-toast > .bp3-icon{\n    color:#5c7080;\n    margin:12px;\n    margin-right:0; }\n  .bp3-toast.bp3-dark,\n  .bp3-dark .bp3-toast{\n    background-color:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-toast.bp3-dark > .bp3-icon,\n    .bp3-dark .bp3-toast > .bp3-icon{\n      color:#a7b6c2; }\n  .bp3-toast[class*=\"bp3-intent-\"] a{\n    color:rgba(255, 255, 255, 0.7); }\n    .bp3-toast[class*=\"bp3-intent-\"] a:hover{\n      color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] > .bp3-icon{\n    color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::before,\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button .bp3-icon, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    color:rgba(255, 255, 255, 0.7) !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:focus{\n    outline-color:rgba(255, 255, 255, 0.5); }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:hover{\n    background-color:rgba(255, 255, 255, 0.15) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    background-color:rgba(255, 255, 255, 0.3) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::after{\n    background:rgba(255, 255, 255, 0.3) !important; }\n  .bp3-toast.bp3-intent-primary{\n    background-color:#137cbd;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-success{\n    background-color:#0f9960;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-warning{\n    background-color:#d9822b;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-danger{\n    background-color:#db3737;\n    color:#ffffff; }\n\n.bp3-toast-message{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  padding:11px;\n  word-break:break-word; }\n\n.bp3-toast-container{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box !important;\n  display:-ms-flexbox !important;\n  display:flex !important;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  left:0;\n  overflow:hidden;\n  padding:0 20px 20px;\n  pointer-events:none;\n  right:0;\n  z-index:40; }\n  .bp3-toast-container.bp3-toast-container-in-portal{\n    position:fixed; }\n  .bp3-toast-container.bp3-toast-container-inline{\n    position:absolute; }\n  .bp3-toast-container.bp3-toast-container-top{\n    top:0; }\n  .bp3-toast-container.bp3-toast-container-bottom{\n    bottom:0;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:reverse;\n        -ms-flex-direction:column-reverse;\n            flex-direction:column-reverse;\n    top:auto; }\n  .bp3-toast-container.bp3-toast-container-left{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start; }\n  .bp3-toast-container.bp3-toast-container-right{\n    -webkit-box-align:end;\n        -ms-flex-align:end;\n            align-items:flex-end; }\n\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active) ~ .bp3-toast, .bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active) ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-exit-active ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-leave-active ~ .bp3-toast{\n  -webkit-transform:translateY(60px);\n          transform:translateY(60px); }\n.bp3-tooltip{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1); }\n  .bp3-tooltip .bp3-popover-arrow{\n    height:22px;\n    position:absolute;\n    width:22px; }\n    .bp3-tooltip .bp3-popover-arrow::before{\n      height:14px;\n      margin:4px;\n      width:14px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip{\n    margin-bottom:11px;\n    margin-top:-11px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n      bottom:-8px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip{\n    margin-left:11px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n      left:-8px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip{\n    margin-top:11px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n      top:-8px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip{\n    margin-left:-11px;\n    margin-right:11px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n      right:-8px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-tooltip > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-tooltip > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n    top:-0.22183px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n    right:-0.22183px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n    left:-0.22183px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n    bottom:-0.22183px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-tooltip .bp3-popover-content{\n    background:#394b59;\n    color:#f5f8fa; }\n  .bp3-tooltip .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-tooltip .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-tooltip .bp3-popover-arrow-fill{\n    fill:#394b59; }\n  .bp3-popover-enter > .bp3-tooltip, .bp3-popover-appear > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8); }\n  .bp3-popover-enter-active > .bp3-tooltip, .bp3-popover-appear-active > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover-exit > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tooltip .bp3-popover-content{\n    padding:10px 12px; }\n  .bp3-tooltip.bp3-dark,\n  .bp3-dark .bp3-tooltip{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-tooltip .bp3-popover-content{\n      background:#e1e8ed;\n      color:#394b59; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-fill{\n      fill:#e1e8ed; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-content{\n    background:#137cbd;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-arrow-fill{\n    fill:#137cbd; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-content{\n    background:#0f9960;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-arrow-fill{\n    fill:#0f9960; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-content{\n    background:#d9822b;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-arrow-fill{\n    fill:#d9822b; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-content{\n    background:#db3737;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-arrow-fill{\n    fill:#db3737; }\n\n.bp3-tooltip-indicator{\n  border-bottom:dotted 1px;\n  cursor:help; }\n.bp3-tree .bp3-icon, .bp3-tree .bp3-icon-standard, .bp3-tree .bp3-icon-large{\n  color:#5c7080; }\n  .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-tree .bp3-icon.bp3-intent-success, .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-tree-node-list{\n  list-style:none;\n  margin:0;\n  padding-left:0; }\n\n.bp3-tree-root{\n  background-color:transparent;\n  cursor:default;\n  padding-left:0;\n  position:relative; }\n\n.bp3-tree-node-content-0{\n  padding-left:0px; }\n\n.bp3-tree-node-content-1{\n  padding-left:23px; }\n\n.bp3-tree-node-content-2{\n  padding-left:46px; }\n\n.bp3-tree-node-content-3{\n  padding-left:69px; }\n\n.bp3-tree-node-content-4{\n  padding-left:92px; }\n\n.bp3-tree-node-content-5{\n  padding-left:115px; }\n\n.bp3-tree-node-content-6{\n  padding-left:138px; }\n\n.bp3-tree-node-content-7{\n  padding-left:161px; }\n\n.bp3-tree-node-content-8{\n  padding-left:184px; }\n\n.bp3-tree-node-content-9{\n  padding-left:207px; }\n\n.bp3-tree-node-content-10{\n  padding-left:230px; }\n\n.bp3-tree-node-content-11{\n  padding-left:253px; }\n\n.bp3-tree-node-content-12{\n  padding-left:276px; }\n\n.bp3-tree-node-content-13{\n  padding-left:299px; }\n\n.bp3-tree-node-content-14{\n  padding-left:322px; }\n\n.bp3-tree-node-content-15{\n  padding-left:345px; }\n\n.bp3-tree-node-content-16{\n  padding-left:368px; }\n\n.bp3-tree-node-content-17{\n  padding-left:391px; }\n\n.bp3-tree-node-content-18{\n  padding-left:414px; }\n\n.bp3-tree-node-content-19{\n  padding-left:437px; }\n\n.bp3-tree-node-content-20{\n  padding-left:460px; }\n\n.bp3-tree-node-content{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:30px;\n  padding-right:5px;\n  width:100%; }\n  .bp3-tree-node-content:hover{\n    background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-tree-node-caret,\n.bp3-tree-node-caret-none{\n  min-width:30px; }\n\n.bp3-tree-node-caret{\n  color:#5c7080;\n  cursor:pointer;\n  padding:7px;\n  -webkit-transform:rotate(0deg);\n          transform:rotate(0deg);\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tree-node-caret:hover{\n    color:#182026; }\n  .bp3-dark .bp3-tree-node-caret{\n    color:#a7b6c2; }\n    .bp3-dark .bp3-tree-node-caret:hover{\n      color:#f5f8fa; }\n  .bp3-tree-node-caret.bp3-tree-node-caret-open{\n    -webkit-transform:rotate(90deg);\n            transform:rotate(90deg); }\n  .bp3-tree-node-caret.bp3-icon-standard::before{\n    content:\"\"; }\n\n.bp3-tree-node-icon{\n  margin-right:7px;\n  position:relative; }\n\n.bp3-tree-node-label{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-label span{\n    display:inline; }\n\n.bp3-tree-node-secondary-label{\n  padding:0 5px;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-secondary-label .bp3-popover-wrapper,\n  .bp3-tree-node-secondary-label .bp3-popover-target{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-content{\n  background-color:inherit;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-caret,\n.bp3-tree-node.bp3-disabled .bp3-tree-node-icon{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content,\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-standard, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-large{\n    color:#ffffff; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret::before{\n    color:rgba(255, 255, 255, 0.7); }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret:hover::before{\n    color:#ffffff; }\n\n.bp3-dark .bp3-tree-node-content:hover{\n  background-color:rgba(92, 112, 128, 0.3); }\n\n.bp3-dark .bp3-tree .bp3-icon, .bp3-dark .bp3-tree .bp3-icon-standard, .bp3-dark .bp3-tree .bp3-icon-large{\n  color:#a7b6c2; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-dark .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n.bp3-omnibar{\n  -webkit-filter:blur(0);\n          filter:blur(0);\n  opacity:1;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  left:calc(50% - 250px);\n  top:20vh;\n  width:500px;\n  z-index:21; }\n  .bp3-omnibar.bp3-overlay-enter, .bp3-omnibar.bp3-overlay-appear{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2; }\n  .bp3-omnibar.bp3-overlay-enter-active, .bp3-omnibar.bp3-overlay-appear-active{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar.bp3-overlay-exit{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1; }\n  .bp3-omnibar.bp3-overlay-exit-active{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar .bp3-input{\n    background-color:transparent;\n    border-radius:0; }\n    .bp3-omnibar .bp3-input, .bp3-omnibar .bp3-input:focus{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-omnibar .bp3-menu{\n    background-color:transparent;\n    border-radius:0;\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n    max-height:calc(60vh - 40px);\n    overflow:auto; }\n    .bp3-omnibar .bp3-menu:empty{\n      display:none; }\n  .bp3-dark .bp3-omnibar, .bp3-omnibar.bp3-dark{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-omnibar-overlay .bp3-overlay-backdrop{\n  background-color:rgba(16, 22, 26, 0.2); }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n\n.bp3-multi-select{\n  min-width:150px; }\n\n.bp3-multi-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto; }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* This file was auto-generated by ensureUiComponents() in @jupyterlab/buildutils */\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n/* Icons urls */\n\n:root {\n  --jp-icon-add: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDEzaC02djZoLTJ2LTZINXYtMmg2VjVoMnY2aDZ2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-bug: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0yMCA4aC0yLjgxYy0uNDUtLjc4LTEuMDctMS40NS0xLjgyLTEuOTZMMTcgNC40MSAxNS41OSAzbC0yLjE3IDIuMTdDMTIuOTYgNS4wNiAxMi40OSA1IDEyIDVjLS40OSAwLS45Ni4wNi0xLjQxLjE3TDguNDEgMyA3IDQuNDFsMS42MiAxLjYzQzcuODggNi41NSA3LjI2IDcuMjIgNi44MSA4SDR2MmgyLjA5Yy0uMDUuMzMtLjA5LjY2LS4wOSAxdjFINHYyaDJ2MWMwIC4zNC4wNC42Ny4wOSAxSDR2MmgyLjgxYzEuMDQgMS43OSAyLjk3IDMgNS4xOSAzczQuMTUtMS4yMSA1LjE5LTNIMjB2LTJoLTIuMDljLjA1LS4zMy4wOS0uNjYuMDktMXYtMWgydi0yaC0ydi0xYzAtLjM0LS4wNC0uNjctLjA5LTFIMjBWOHptLTYgOGgtNHYtMmg0djJ6bTAtNGgtNHYtMmg0djJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-build: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE0LjkgMTcuNDVDMTYuMjUgMTcuNDUgMTcuMzUgMTYuMzUgMTcuMzUgMTVDMTcuMzUgMTMuNjUgMTYuMjUgMTIuNTUgMTQuOSAxMi41NUMxMy41NCAxMi41NSAxMi40NSAxMy42NSAxMi40NSAxNUMxMi40NSAxNi4zNSAxMy41NCAxNy40NSAxNC45IDE3LjQ1Wk0yMC4xIDE1LjY4TDIxLjU4IDE2Ljg0QzIxLjcxIDE2Ljk1IDIxLjc1IDE3LjEzIDIxLjY2IDE3LjI5TDIwLjI2IDE5LjcxQzIwLjE3IDE5Ljg2IDIwIDE5LjkyIDE5LjgzIDE5Ljg2TDE4LjA5IDE5LjE2QzE3LjczIDE5LjQ0IDE3LjMzIDE5LjY3IDE2LjkxIDE5Ljg1TDE2LjY0IDIxLjdDMTYuNjIgMjEuODcgMTYuNDcgMjIgMTYuMyAyMkgxMy41QzEzLjMyIDIyIDEzLjE4IDIxLjg3IDEzLjE1IDIxLjdMMTIuODkgMTkuODVDMTIuNDYgMTkuNjcgMTIuMDcgMTkuNDQgMTEuNzEgMTkuMTZMOS45NjAwMiAxOS44NkM5LjgxMDAyIDE5LjkyIDkuNjIwMDIgMTkuODYgOS41NDAwMiAxOS43MUw4LjE0MDAyIDE3LjI5QzguMDUwMDIgMTcuMTMgOC4wOTAwMiAxNi45NSA4LjIyMDAyIDE2Ljg0TDkuNzAwMDIgMTUuNjhMOS42NTAwMSAxNUw5LjcwMDAyIDE0LjMxTDguMjIwMDIgMTMuMTZDOC4wOTAwMiAxMy4wNSA4LjA1MDAyIDEyLjg2IDguMTQwMDIgMTIuNzFMOS41NDAwMiAxMC4yOUM5LjYyMDAyIDEwLjEzIDkuODEwMDIgMTAuMDcgOS45NjAwMiAxMC4xM0wxMS43MSAxMC44NEMxMi4wNyAxMC41NiAxMi40NiAxMC4zMiAxMi44OSAxMC4xNUwxMy4xNSA4LjI4OTk4QzEzLjE4IDguMTI5OTggMTMuMzIgNy45OTk5OCAxMy41IDcuOTk5OThIMTYuM0MxNi40NyA3Ljk5OTk4IDE2LjYyIDguMTI5OTggMTYuNjQgOC4yODk5OEwxNi45MSAxMC4xNUMxNy4zMyAxMC4zMiAxNy43MyAxMC41NiAxOC4wOSAxMC44NEwxOS44MyAxMC4xM0MyMCAxMC4wNyAyMC4xNyAxMC4xMyAyMC4yNiAxMC4yOUwyMS42NiAxMi43MUMyMS43NSAxMi44NiAyMS43MSAxMy4wNSAyMS41OCAxMy4xNkwyMC4xIDE0LjMxTDIwLjE1IDE1TDIwLjEgMTUuNjhaIi8+CiAgICA8cGF0aCBkPSJNNy4zMjk2NiA3LjQ0NDU0QzguMDgzMSA3LjAwOTU0IDguMzM5MzIgNi4wNTMzMiA3LjkwNDMyIDUuMjk5ODhDNy40NjkzMiA0LjU0NjQzIDYuNTA4MSA0LjI4MTU2IDUuNzU0NjYgNC43MTY1NkM1LjM5MTc2IDQuOTI2MDggNS4xMjY5NSA1LjI3MTE4IDUuMDE4NDkgNS42NzU5NEM0LjkxMDA0IDYuMDgwNzEgNC45NjY4MiA2LjUxMTk4IDUuMTc2MzQgNi44NzQ4OEM1LjYxMTM0IDcuNjI4MzIgNi41NzYyMiA3Ljg3OTU0IDcuMzI5NjYgNy40NDQ1NFpNOS42NTcxOCA0Ljc5NTkzTDEwLjg2NzIgNC45NTE3OUMxMC45NjI4IDQuOTc3NDEgMTEuMDQwMiA1LjA3MTMzIDExLjAzODIgNS4xODc5M0wxMS4wMzg4IDYuOTg4OTNDMTEuMDQ1NSA3LjEwMDU0IDEwLjk2MTYgNy4xOTUxOCAxMC44NTUgNy4yMTA1NEw5LjY2MDAxIDcuMzgwODNMOS4yMzkxNSA4LjEzMTg4TDkuNjY5NjEgOS4yNTc0NUM5LjcwNzI5IDkuMzYyNzEgOS42NjkzNCA5LjQ3Njk5IDkuNTc0MDggOS41MzE5OUw4LjAxNTIzIDEwLjQzMkM3LjkxMTMxIDEwLjQ5MiA3Ljc5MzM3IDEwLjQ2NzcgNy43MjEwNSAxMC4zODI0TDYuOTg3NDggOS40MzE4OEw2LjEwOTMxIDkuNDMwODNMNS4zNDcwNCAxMC4zOTA1QzUuMjg5MDkgMTAuNDcwMiA1LjE3MzgzIDEwLjQ5MDUgNS4wNzE4NyAxMC40MzM5TDMuNTEyNDUgOS41MzI5M0MzLjQxMDQ5IDkuNDc2MzMgMy4zNzY0NyA5LjM1NzQxIDMuNDEwNzUgOS4yNTY3OUwzLjg2MzQ3IDguMTQwOTNMMy42MTc0OSA3Ljc3NDg4TDMuNDIzNDcgNy4zNzg4M0wyLjIzMDc1IDcuMjEyOTdDMi4xMjY0NyA3LjE5MjM1IDIuMDQwNDkgNy4xMDM0MiAyLjA0MjQ1IDYuOTg2ODJMMi4wNDE4NyA1LjE4NTgyQzIuMDQzODMgNS4wNjkyMiAyLjExOTA5IDQuOTc5NTggMi4yMTcwNCA0Ljk2OTIyTDMuNDIwNjUgNC43OTM5M0wzLjg2NzQ5IDQuMDI3ODhMMy40MTEwNSAyLjkxNzMxQzMuMzczMzcgMi44MTIwNCAzLjQxMTMxIDIuNjk3NzYgMy41MTUyMyAyLjYzNzc2TDUuMDc0MDggMS43Mzc3NkM1LjE2OTM0IDEuNjgyNzYgNS4yODcyOSAxLjcwNzA0IDUuMzU5NjEgMS43OTIzMUw2LjExOTE1IDIuNzI3ODhMNi45ODAwMSAyLjczODkzTDcuNzI0OTYgMS43ODkyMkM3Ljc5MTU2IDEuNzA0NTggNy45MTU0OCAxLjY3OTIyIDguMDA4NzkgMS43NDA4Mkw5LjU2ODIxIDIuNjQxODJDOS42NzAxNyAyLjY5ODQyIDkuNzEyODUgMi44MTIzNCA5LjY4NzIzIDIuOTA3OTdMOS4yMTcxOCA0LjAzMzgzTDkuNDYzMTYgNC4zOTk4OEw5LjY1NzE4IDQuNzk1OTNaIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iOS45LDEzLjYgMy42LDcuNCA0LjQsNi42IDkuOSwxMi4yIDE1LjQsNi43IDE2LjEsNy40ICIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNS45TDksOS43bDMuOC0zLjhsMS4yLDEuMmwtNC45LDVsLTQuOS01TDUuMiw1Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNy41TDksMTEuMmwzLjgtMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-left: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik0xMC44LDEyLjhMNy4xLDlsMy44LTMuOGwwLDcuNkgxMC44eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-right: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik03LjIsNS4yTDEwLjksOWwtMy44LDMuOFY1LjJINy4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-up-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iMTUuNCwxMy4zIDkuOSw3LjcgNC40LDEzLjIgMy42LDEyLjUgOS45LDYuMyAxNi4xLDEyLjYgIi8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-up: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik01LjIsMTAuNUw5LDYuOGwzLjgsMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-case-sensitive: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgogIDxnIGNsYXNzPSJqcC1pY29uLWFjY2VudDIiIGZpbGw9IiNGRkYiPgogICAgPHBhdGggZD0iTTcuNiw4aDAuOWwzLjUsOGgtMS4xTDEwLDE0SDZsLTAuOSwySDRMNy42LDh6IE04LDkuMUw2LjQsMTNoMy4yTDgsOS4xeiIvPgogICAgPHBhdGggZD0iTTE2LjYsOS44Yy0wLjIsMC4xLTAuNCwwLjEtMC43LDAuMWMtMC4yLDAtMC40LTAuMS0wLjYtMC4yYy0wLjEtMC4xLTAuMi0wLjQtMC4yLTAuNyBjLTAuMywwLjMtMC42LDAuNS0wLjksMC43Yy0wLjMsMC4xLTAuNywwLjItMS4xLDAuMmMtMC4zLDAtMC41LDAtMC43LTAuMWMtMC4yLTAuMS0wLjQtMC4yLTAuNi0wLjNjLTAuMi0wLjEtMC4zLTAuMy0wLjQtMC41IGMtMC4xLTAuMi0wLjEtMC40LTAuMS0wLjdjMC0wLjMsMC4xLTAuNiwwLjItMC44YzAuMS0wLjIsMC4zLTAuNCwwLjQtMC41QzEyLDcsMTIuMiw2LjksMTIuNSw2LjhjMC4yLTAuMSwwLjUtMC4xLDAuNy0wLjIgYzAuMy0wLjEsMC41LTAuMSwwLjctMC4xYzAuMiwwLDAuNC0wLjEsMC42LTAuMWMwLjIsMCwwLjMtMC4xLDAuNC0wLjJjMC4xLTAuMSwwLjItMC4yLDAuMi0wLjRjMC0xLTEuMS0xLTEuMy0xIGMtMC40LDAtMS40LDAtMS40LDEuMmgtMC45YzAtMC40LDAuMS0wLjcsMC4yLTFjMC4xLTAuMiwwLjMtMC40LDAuNS0wLjZjMC4yLTAuMiwwLjUtMC4zLDAuOC0wLjNDMTMuMyw0LDEzLjYsNCwxMy45LDQgYzAuMywwLDAuNSwwLDAuOCwwLjFjMC4zLDAsMC41LDAuMSwwLjcsMC4yYzAuMiwwLjEsMC40LDAuMywwLjUsMC41QzE2LDUsMTYsNS4yLDE2LDUuNnYyLjljMCwwLjIsMCwwLjQsMCwwLjUgYzAsMC4xLDAuMSwwLjIsMC4zLDAuMmMwLjEsMCwwLjIsMCwwLjMsMFY5Ljh6IE0xNS4yLDYuOWMtMS4yLDAuNi0zLjEsMC4yLTMuMSwxLjRjMCwxLjQsMy4xLDEsMy4xLTAuNVY2Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-check: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik05IDE2LjE3TDQuODMgMTJsLTEuNDIgMS40MUw5IDE5IDIxIDdsLTEuNDEtMS40MXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-circle-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDJDNi40NyAyIDIgNi40NyAyIDEyczQuNDcgMTAgMTAgMTAgMTAtNC40NyAxMC0xMFMxNy41MyAyIDEyIDJ6bTAgMThjLTQuNDEgMC04LTMuNTktOC04czMuNTktOCA4LTggOCAzLjU5IDggOC0zLjU5IDgtOCA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-circle: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjgiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-clear: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8bWFzayBpZD0iZG9udXRIb2xlIj4KICAgIDxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0id2hpdGUiIC8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSI4IiBmaWxsPSJibGFjayIvPgogIDwvbWFzaz4KCiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxyZWN0IGhlaWdodD0iMTgiIHdpZHRoPSIyIiB4PSIxMSIgeT0iMyIgdHJhbnNmb3JtPSJyb3RhdGUoMzE1LCAxMiwgMTIpIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIgbWFzaz0idXJsKCNkb251dEhvbGUpIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-close: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1ub25lIGpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIGpwLWljb24zLWhvdmVyIiBmaWxsPSJub25lIj4KICAgIDxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjExIi8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIGpwLWljb24tYWNjZW50Mi1ob3ZlciIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMTkgNi40MUwxNy41OSA1IDEyIDEwLjU5IDYuNDEgNSA1IDYuNDEgMTAuNTkgMTIgNSAxNy41OSA2LjQxIDE5IDEyIDEzLjQxIDE3LjU5IDE5IDE5IDE3LjU5IDEzLjQxIDEyeiIvPgogIDwvZz4KCiAgPGcgY2xhc3M9ImpwLWljb24tbm9uZSBqcC1pY29uLWJ1c3kiIGZpbGw9Im5vbmUiPgogICAgPGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-code: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTExLjQgMTguNkw2LjggMTRMMTEuNCA5LjRMMTAgOEw0IDE0TDEwIDIwTDExLjQgMTguNlpNMTYuNiAxOC42TDIxLjIgMTRMMTYuNiA5LjRMMTggOEwyNCAxNEwxOCAyMEwxNi42IDE4LjZWMTguNloiLz4KCTwvZz4KPC9zdmc+Cg==);\n  --jp-icon-console: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwMCAyMDAiPgogIDxnIGNsYXNzPSJqcC1pY29uLWJyYW5kMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMjg4RDEiPgogICAgPHBhdGggZD0iTTIwIDE5LjhoMTYwdjE1OS45SDIweiIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNmZmYiPgogICAgPHBhdGggZD0iTTEwNSAxMjcuM2g0MHYxMi44aC00MHpNNTEuMSA3N0w3NCA5OS45bC0yMy4zIDIzLjMgMTAuNSAxMC41IDIzLjMtMjMuM0w5NSA5OS45IDg0LjUgODkuNCA2MS42IDY2LjV6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-copy: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTExLjksMUgzLjJDMi40LDEsMS43LDEuNywxLjcsMi41djEwLjJoMS41VjIuNWg4LjdWMXogTTE0LjEsMy45aC04Yy0wLjgsMC0xLjUsMC43LTEuNSwxLjV2MTAuMmMwLDAuOCwwLjcsMS41LDEuNSwxLjVoOCBjMC44LDAsMS41LTAuNywxLjUtMS41VjUuNEMxNS41LDQuNiwxNC45LDMuOSwxNC4xLDMuOXogTTE0LjEsMTUuNWgtOFY1LjRoOFYxNS41eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-copyright: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDI0IDI0IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCI+CiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0xMS44OCw5LjE0YzEuMjgsMC4wNiwxLjYxLDEuMTUsMS42MywxLjY2aDEuNzljLTAuMDgtMS45OC0xLjQ5LTMuMTktMy40NS0zLjE5QzkuNjQsNy42MSw4LDksOCwxMi4xNCBjMCwxLjk0LDAuOTMsNC4yNCwzLjg0LDQuMjRjMi4yMiwwLDMuNDEtMS42NSwzLjQ0LTIuOTVoLTEuNzljLTAuMDMsMC41OS0wLjQ1LDEuMzgtMS42MywxLjQ0QzEwLjU1LDE0LjgzLDEwLDEzLjgxLDEwLDEyLjE0IEMxMCw5LjI1LDExLjI4LDkuMTYsMTEuODgsOS4xNHogTTEyLDJDNi40OCwyLDIsNi40OCwyLDEyczQuNDgsMTAsMTAsMTBzMTAtNC40OCwxMC0xMFMxNy41MiwyLDEyLDJ6IE0xMiwyMGMtNC40MSwwLTgtMy41OS04LTggczMuNTktOCw4LThzOCwzLjU5LDgsOFMxNi40MSwyMCwxMiwyMHoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-cut: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkuNjQgNy42NGMuMjMtLjUuMzYtMS4wNS4zNi0xLjY0IDAtMi4yMS0xLjc5LTQtNC00UzIgMy43OSAyIDZzMS43OSA0IDQgNGMuNTkgMCAxLjE0LS4xMyAxLjY0LS4zNkwxMCAxMmwtMi4zNiAyLjM2QzcuMTQgMTQuMTMgNi41OSAxNCA2IDE0Yy0yLjIxIDAtNCAxLjc5LTQgNHMxLjc5IDQgNCA0IDQtMS43OSA0LTRjMC0uNTktLjEzLTEuMTQtLjM2LTEuNjRMMTIgMTRsNyA3aDN2LTFMOS42NCA3LjY0ek02IDhjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTAgMTJjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTYtNy41Yy0uMjggMC0uNS0uMjItLjUtLjVzLjIyLS41LjUtLjUuNS4yMi41LjUtLjIyLjUtLjUuNXpNMTkgM2wtNiA2IDIgMiA3LTdWM3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-download: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDloLTRWM0g5djZINWw3IDcgNy03ek01IDE4djJoMTR2LTJINXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-edit: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMgMTcuMjVWMjFoMy43NUwxNy44MSA5Ljk0bC0zLjc1LTMuNzVMMyAxNy4yNXpNMjAuNzEgNy4wNGMuMzktLjM5LjM5LTEuMDIgMC0xLjQxbC0yLjM0LTIuMzRjLS4zOS0uMzktMS4wMi0uMzktMS40MSAwbC0xLjgzIDEuODMgMy43NSAzLjc1IDEuODMtMS44M3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-ellipses: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iNSIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxOSIgY3k9IjEyIiByPSIyIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-extension: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwLjUgMTFIMTlWN2MwLTEuMS0uOS0yLTItMmgtNFYzLjVDMTMgMi4xMiAxMS44OCAxIDEwLjUgMVM4IDIuMTIgOCAzLjVWNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAydjMuOEgzLjVjMS40OSAwIDIuNyAxLjIxIDIuNyAyLjdzLTEuMjEgMi43LTIuNyAyLjdIMlYyMGMwIDEuMS45IDIgMiAyaDMuOHYtMS41YzAtMS40OSAxLjIxLTIuNyAyLjctMi43IDEuNDkgMCAyLjcgMS4yMSAyLjcgMi43VjIySDE3YzEuMSAwIDItLjkgMi0ydi00aDEuNWMxLjM4IDAgMi41LTEuMTIgMi41LTIuNVMyMS44OCAxMSAyMC41IDExeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-fast-forward: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTQgMThsOC41LTZMNCA2djEyem05LTEydjEybDguNS02TDEzIDZ6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-file-upload: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkgMTZoNnYtNmg0bC03LTctNyA3aDR6bS00IDJoMTR2Mkg1eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-file: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuMyA4LjJsLTUuNS01LjVjLS4zLS4zLS43LS41LTEuMi0uNUgzLjljLS44LjEtMS42LjktMS42IDEuOHYxNC4xYzAgLjkuNyAxLjYgMS42IDEuNmgxNC4yYy45IDAgMS42LS43IDEuNi0xLjZWOS40Yy4xLS41LS4xLS45LS40LTEuMnptLTUuOC0zLjNsMy40IDMuNmgtMy40VjQuOXptMy45IDEyLjdINC43Yy0uMSAwLS4yIDAtLjItLjJWNC43YzAtLjIuMS0uMy4yLS4zaDcuMnY0LjRzMCAuOC4zIDEuMWMuMy4zIDEuMS4zIDEuMS4zaDQuM3Y3LjJzLS4xLjItLjIuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-filter-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEwIDE4aDR2LTJoLTR2MnpNMyA2djJoMThWNkgzem0zIDdoMTJ2LTJINnYyeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY4YzAtMS4xLS45LTItMi0yaC04bC0yLTJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-html5: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMDAiIGQ9Ik0xMDguNCAwaDIzdjIyLjhoMjEuMlYwaDIzdjY5aC0yM1Y0NmgtMjF2MjNoLTIzLjJNMjA2IDIzaC0yMC4zVjBoNjMuN3YyM0gyMjl2NDZoLTIzbTUzLjUtNjloMjQuMWwxNC44IDI0LjNMMzEzLjIgMGgyNC4xdjY5aC0yM1YzNC44bC0xNi4xIDI0LjgtMTYuMS0yNC44VjY5aC0yMi42bTg5LjItNjloMjN2NDYuMmgzMi42VjY5aC01NS42Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI2U0NGQyNiIgZD0iTTEwNy42IDQ3MWwtMzMtMzcwLjRoMzYyLjhsLTMzIDM3MC4yTDI1NS43IDUxMiIvPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNmMTY1MjkiIGQ9Ik0yNTYgNDgwLjVWMTMxaDE0OC4zTDM3NiA0NDciLz4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNlYmViZWIiIGQ9Ik0xNDIgMTc2LjNoMTE0djQ1LjRoLTY0LjJsNC4yIDQ2LjVoNjB2NDUuM0gxNTQuNG0yIDIyLjhIMjAybDMuMiAzNi4zIDUwLjggMTMuNnY0Ny40bC05My4yLTI2Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIiBmaWxsPSIjZmZmIiBkPSJNMzY5LjYgMTc2LjNIMjU1Ljh2NDUuNGgxMDkuNm0tNC4xIDQ2LjVIMjU1Ljh2NDUuNGg1NmwtNS4zIDU5LTUwLjcgMTMuNnY0Ny4ybDkzLTI1LjgiLz4KPC9zdmc+Cg==);\n  --jp-icon-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1icmFuZDQganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNGRkYiIGQ9Ik0yLjIgMi4yaDE3LjV2MTcuNUgyLjJ6Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzNGNTFCNSIgZD0iTTIuMiAyLjJ2MTcuNWgxNy41bC4xLTE3LjVIMi4yem0xMi4xIDIuMmMxLjIgMCAyLjIgMSAyLjIgMi4ycy0xIDIuMi0yLjIgMi4yLTIuMi0xLTIuMi0yLjIgMS0yLjIgMi4yLTIuMnpNNC40IDE3LjZsMy4zLTguOCAzLjMgNi42IDIuMi0zLjIgNC40IDUuNEg0LjR6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-inspector: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY2YzAtMS4xLS45LTItMi0yem0tNSAxNEg0di00aDExdjR6bTAtNUg0VjloMTF2NHptNSA1aC00VjloNHY5eiIvPgo8L3N2Zz4K);\n  --jp-icon-json: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNGOUE4MjUiPgogICAgPHBhdGggZD0iTTIwLjIgMTEuOGMtMS42IDAtMS43LjUtMS43IDEgMCAuNC4xLjkuMSAxLjMuMS41LjEuOS4xIDEuMyAwIDEuNy0xLjQgMi4zLTMuNSAyLjNoLS45di0xLjloLjVjMS4xIDAgMS40IDAgMS40LS44IDAtLjMgMC0uNi0uMS0xIDAtLjQtLjEtLjgtLjEtMS4yIDAtMS4zIDAtMS44IDEuMy0yLTEuMy0uMi0xLjMtLjctMS4zLTIgMC0uNC4xLS44LjEtMS4yLjEtLjQuMS0uNy4xLTEgMC0uOC0uNC0uNy0xLjQtLjhoLS41VjQuMWguOWMyLjIgMCAzLjUuNyAzLjUgMi4zIDAgLjQtLjEuOS0uMSAxLjMtLjEuNS0uMS45LS4xIDEuMyAwIC41LjIgMSAxLjcgMXYxLjh6TTEuOCAxMC4xYzEuNiAwIDEuNy0uNSAxLjctMSAwLS40LS4xLS45LS4xLTEuMy0uMS0uNS0uMS0uOS0uMS0xLjMgMC0xLjYgMS40LTIuMyAzLjUtMi4zaC45djEuOWgtLjVjLTEgMC0xLjQgMC0xLjQuOCAwIC4zIDAgLjYuMSAxIDAgLjIuMS42LjEgMSAwIDEuMyAwIDEuOC0xLjMgMkM2IDExLjIgNiAxMS43IDYgMTNjMCAuNC0uMS44LS4xIDEuMi0uMS4zLS4xLjctLjEgMSAwIC44LjMuOCAxLjQuOGguNXYxLjloLS45Yy0yLjEgMC0zLjUtLjYtMy41LTIuMyAwLS40LjEtLjkuMS0xLjMuMS0uNS4xLS45LjEtMS4zIDAtLjUtLjItMS0xLjctMXYtMS45eiIvPgogICAgPGNpcmNsZSBjeD0iMTEiIGN5PSIxMy44IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY3g9IjExIiBjeT0iOC4yIiByPSIyLjEiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-julia: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDMyNSAzMDAiPgogIDxnIGNsYXNzPSJqcC1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjY2IzYzMzIj4KICAgIDxwYXRoIGQ9Ik0gMTUwLjg5ODQzOCAyMjUgQyAxNTAuODk4NDM4IDI2Ni40MjE4NzUgMTE3LjMyMDMxMiAzMDAgNzUuODk4NDM4IDMwMCBDIDM0LjQ3NjU2MiAzMDAgMC44OTg0MzggMjY2LjQyMTg3NSAwLjg5ODQzOCAyMjUgQyAwLjg5ODQzOCAxODMuNTc4MTI1IDM0LjQ3NjU2MiAxNTAgNzUuODk4NDM4IDE1MCBDIDExNy4zMjAzMTIgMTUwIDE1MC44OTg0MzggMTgzLjU3ODEyNSAxNTAuODk4NDM4IDIyNSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzM4OTgyNiI+CiAgICA8cGF0aCBkPSJNIDIzNy41IDc1IEMgMjM3LjUgMTE2LjQyMTg3NSAyMDMuOTIxODc1IDE1MCAxNjIuNSAxNTAgQyAxMjEuMDc4MTI1IDE1MCA4Ny41IDExNi40MjE4NzUgODcuNSA3NSBDIDg3LjUgMzMuNTc4MTI1IDEyMS4wNzgxMjUgMCAxNjIuNSAwIEMgMjAzLjkyMTg3NSAwIDIzNy41IDMzLjU3ODEyNSAyMzcuNSA3NSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzk1NThiMiI+CiAgICA8cGF0aCBkPSJNIDMyNC4xMDE1NjIgMjI1IEMgMzI0LjEwMTU2MiAyNjYuNDIxODc1IDI5MC41MjM0MzggMzAwIDI0OS4xMDE1NjIgMzAwIEMgMjA3LjY3OTY4OCAzMDAgMTc0LjEwMTU2MiAyNjYuNDIxODc1IDE3NC4xMDE1NjIgMjI1IEMgMTc0LjEwMTU2MiAxODMuNTc4MTI1IDIwNy42Nzk2ODggMTUwIDI0OS4xMDE1NjIgMTUwIEMgMjkwLjUyMzQzOCAxNTAgMzI0LjEwMTU2MiAxODMuNTc4MTI1IDMyNC4xMDE1NjIgMjI1Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-jupyter-favicon: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUyIiBoZWlnaHQ9IjE2NSIgdmlld0JveD0iMCAwIDE1MiAxNjUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA3ODk0NywgMTEwLjU4MjkyNykiIGQ9Ik03NS45NDIyODQyLDI5LjU4MDQ1NjEgQzQzLjMwMjM5NDcsMjkuNTgwNDU2MSAxNC43OTY3ODMyLDE3LjY1MzQ2MzQgMCwwIEM1LjUxMDgzMjExLDE1Ljg0MDY4MjkgMTUuNzgxNTM4OSwyOS41NjY3NzMyIDI5LjM5MDQ5NDcsMzkuMjc4NDE3MSBDNDIuOTk5Nyw0OC45ODk4NTM3IDU5LjI3MzcsNTQuMjA2NzgwNSA3NS45NjA1Nzg5LDU0LjIwNjc4MDUgQzkyLjY0NzQ1NzksNTQuMjA2NzgwNSAxMDguOTIxNDU4LDQ4Ljk4OTg1MzcgMTIyLjUzMDY2MywzOS4yNzg0MTcxIEMxMzYuMTM5NDUzLDI5LjU2Njc3MzIgMTQ2LjQxMDI4NCwxNS44NDA2ODI5IDE1MS45MjExNTgsMCBDMTM3LjA4Nzg2OCwxNy42NTM0NjM0IDEwOC41ODI1ODksMjkuNTgwNDU2MSA3NS45NDIyODQyLDI5LjU4MDQ1NjEgTDc1Ljk0MjI4NDIsMjkuNTgwNDU2MSBaIiAvPgogICAgPHBhdGggdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMzczNjgsIDAuNzA0ODc4KSIgZD0iTTc1Ljk3ODQ1NzksMjQuNjI2NDA3MyBDMTA4LjYxODc2MywyNC42MjY0MDczIDEzNy4xMjQ0NTgsMzYuNTUzNDQxNSAxNTEuOTIxMTU4LDU0LjIwNjc4MDUgQzE0Ni40MTAyODQsMzguMzY2MjIyIDEzNi4xMzk0NTMsMjQuNjQwMTMxNyAxMjIuNTMwNjYzLDE0LjkyODQ4NzggQzEwOC45MjE0NTgsNS4yMTY4NDM5IDkyLjY0NzQ1NzksMCA3NS45NjA1Nzg5LDAgQzU5LjI3MzcsMCA0Mi45OTk3LDUuMjE2ODQzOSAyOS4zOTA0OTQ3LDE0LjkyODQ4NzggQzE1Ljc4MTUzODksMjQuNjQwMTMxNyA1LjUxMDgzMjExLDM4LjM2NjIyMiAwLDU0LjIwNjc4MDUgQzE0LjgzMzA4MTYsMzYuNTg5OTI5MyA0My4zMzg1Njg0LDI0LjYyNjQwNzMgNzUuOTc4NDU3OSwyNC42MjY0MDczIEw3NS45Nzg0NTc5LDI0LjYyNjQwNzMgWiIgLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-jupyter: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzkiIGhlaWdodD0iNTEiIHZpZXdCb3g9IjAgMCAzOSA1MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTYzOCAtMjI4MSkiPgogICAgPGcgY2xhc3M9ImpwLWljb24td2FybjAiIGZpbGw9IiNGMzc3MjYiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5Ljc0IDIzMTEuOTgpIiBkPSJNIDE4LjI2NDYgNy4xMzQxMUMgMTAuNDE0NSA3LjEzNDExIDMuNTU4NzIgNC4yNTc2IDAgMEMgMS4zMjUzOSAzLjgyMDQgMy43OTU1NiA3LjEzMDgxIDcuMDY4NiA5LjQ3MzAzQyAxMC4zNDE3IDExLjgxNTIgMTQuMjU1NyAxMy4wNzM0IDE4LjI2OSAxMy4wNzM0QyAyMi4yODIzIDEzLjA3MzQgMjYuMTk2MyAxMS44MTUyIDI5LjQ2OTQgOS40NzMwM0MgMzIuNzQyNCA3LjEzMDgxIDM1LjIxMjYgMy44MjA0IDM2LjUzOCAwQyAzMi45NzA1IDQuMjU3NiAyNi4xMTQ4IDcuMTM0MTEgMTguMjY0NiA3LjEzNDExWiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5LjczIDIyODUuNDgpIiBkPSJNIDE4LjI3MzMgNS45MzkzMUMgMjYuMTIzNSA1LjkzOTMxIDMyLjk3OTMgOC44MTU4MyAzNi41MzggMTMuMDczNEMgMzUuMjEyNiA5LjI1MzAzIDMyLjc0MjQgNS45NDI2MiAyOS40Njk0IDMuNjAwNEMgMjYuMTk2MyAxLjI1ODE4IDIyLjI4MjMgMCAxOC4yNjkgMEMgMTQuMjU1NyAwIDEwLjM0MTcgMS4yNTgxOCA3LjA2ODYgMy42MDA0QyAzLjc5NTU2IDUuOTQyNjIgMS4zMjUzOSA5LjI1MzAzIDAgMTMuMDczNEMgMy41Njc0NSA4LjgyNDYzIDEwLjQyMzIgNS45MzkzMSAxOC4yNzMzIDUuOTM5MzFaIi8+CiAgICA8L2c+CiAgICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjY5LjMgMjI4MS4zMSkiIGQ9Ik0gNS44OTM1MyAyLjg0NEMgNS45MTg4OSAzLjQzMTY1IDUuNzcwODUgNC4wMTM2NyA1LjQ2ODE1IDQuNTE2NDVDIDUuMTY1NDUgNS4wMTkyMiA0LjcyMTY4IDUuNDIwMTUgNC4xOTI5OSA1LjY2ODUxQyAzLjY2NDMgNS45MTY4OCAzLjA3NDQ0IDYuMDAxNTEgMi40OTgwNSA1LjkxMTcxQyAxLjkyMTY2IDUuODIxOSAxLjM4NDYzIDUuNTYxNyAwLjk1NDg5OCA1LjE2NDAxQyAwLjUyNTE3IDQuNzY2MzMgMC4yMjIwNTYgNC4yNDkwMyAwLjA4MzkwMzcgMy42Nzc1N0MgLTAuMDU0MjQ4MyAzLjEwNjExIC0wLjAyMTIzIDIuNTA2MTcgMC4xNzg3ODEgMS45NTM2NEMgMC4zNzg3OTMgMS40MDExIDAuNzM2ODA5IDAuOTIwODE3IDEuMjA3NTQgMC41NzM1MzhDIDEuNjc4MjYgMC4yMjYyNTkgMi4yNDA1NSAwLjAyNzU5MTkgMi44MjMyNiAwLjAwMjY3MjI5QyAzLjYwMzg5IC0wLjAzMDcxMTUgNC4zNjU3MyAwLjI0OTc4OSA0Ljk0MTQyIDAuNzgyNTUxQyA1LjUxNzExIDEuMzE1MzEgNS44NTk1NiAyLjA1Njc2IDUuODkzNTMgMi44NDRaIi8+CiAgICAgIDxwYXRoIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE2MzkuOCAyMzIzLjgxKSIgZD0iTSA3LjQyNzg5IDMuNTgzMzhDIDcuNDYwMDggNC4zMjQzIDcuMjczNTUgNS4wNTgxOSA2Ljg5MTkzIDUuNjkyMTNDIDYuNTEwMzEgNi4zMjYwNyA1Ljk1MDc1IDYuODMxNTYgNS4yODQxMSA3LjE0NDZDIDQuNjE3NDcgNy40NTc2MyAzLjg3MzcxIDcuNTY0MTQgMy4xNDcwMiA3LjQ1MDYzQyAyLjQyMDMyIDcuMzM3MTIgMS43NDMzNiA3LjAwODcgMS4yMDE4NCA2LjUwNjk1QyAwLjY2MDMyOCA2LjAwNTIgMC4yNzg2MSA1LjM1MjY4IDAuMTA1MDE3IDQuNjMyMDJDIC0wLjA2ODU3NTcgMy45MTEzNSAtMC4wMjYyMzYxIDMuMTU0OTQgMC4yMjY2NzUgMi40NTg1NkMgMC40Nzk1ODcgMS43NjIxNyAwLjkzMTY5NyAxLjE1NzEzIDEuNTI1NzYgMC43MjAwMzNDIDIuMTE5ODMgMC4yODI5MzUgMi44MjkxNCAwLjAzMzQzOTUgMy41NjM4OSAwLjAwMzEzMzQ0QyA0LjU0NjY3IC0wLjAzNzQwMzMgNS41MDUyOSAwLjMxNjcwNiA2LjIyOTYxIDAuOTg3ODM1QyA2Ljk1MzkzIDEuNjU4OTYgNy4zODQ4NCAyLjU5MjM1IDcuNDI3ODkgMy41ODMzOEwgNy40Mjc4OSAzLjU4MzM4WiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM4LjM2IDIyODYuMDYpIiBkPSJNIDIuMjc0NzEgNC4zOTYyOUMgMS44NDM2MyA0LjQxNTA4IDEuNDE2NzEgNC4zMDQ0NSAxLjA0Nzk5IDQuMDc4NDNDIDAuNjc5MjY4IDMuODUyNCAwLjM4NTMyOCAzLjUyMTE0IDAuMjAzMzcxIDMuMTI2NTZDIDAuMDIxNDEzNiAyLjczMTk4IC0wLjA0MDM3OTggMi4yOTE4MyAwLjAyNTgxMTYgMS44NjE4MUMgMC4wOTIwMDMxIDEuNDMxOCAwLjI4MzIwNCAxLjAzMTI2IDAuNTc1MjEzIDAuNzEwODgzQyAwLjg2NzIyMiAwLjM5MDUxIDEuMjQ2OTEgMC4xNjQ3MDggMS42NjYyMiAwLjA2MjA1OTJDIDIuMDg1NTMgLTAuMDQwNTg5NyAyLjUyNTYxIC0wLjAxNTQ3MTQgMi45MzA3NiAwLjEzNDIzNUMgMy4zMzU5MSAwLjI4Mzk0MSAzLjY4NzkyIDAuNTUxNTA1IDMuOTQyMjIgMC45MDMwNkMgNC4xOTY1MiAxLjI1NDYyIDQuMzQxNjkgMS42NzQzNiA0LjM1OTM1IDIuMTA5MTZDIDQuMzgyOTkgMi42OTEwNyA0LjE3Njc4IDMuMjU4NjkgMy43ODU5NyAzLjY4NzQ2QyAzLjM5NTE2IDQuMTE2MjQgMi44NTE2NiA0LjM3MTE2IDIuMjc0NzEgNC4zOTYyOUwgMi4yNzQ3MSA0LjM5NjI5WiIvPgogICAgPC9nPgogIDwvZz4+Cjwvc3ZnPgo=);\n  --jp-icon-jupyterlab-wordmark: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIHZpZXdCb3g9IjAgMCAxODYwLjggNDc1Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0RTRFNEUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ4MC4xMzY0MDEsIDY0LjI3MTQ5MykiPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMDAwMDAsIDU4Ljg3NTU2NikiPgogICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA4NzYwMywgMC4xNDAyOTQpIj4KICAgICAgICA8cGF0aCBkPSJNLTQyNi45LDE2OS44YzAsNDguNy0zLjcsNjQuNy0xMy42LDc2LjRjLTEwLjgsMTAtMjUsMTUuNS0zOS43LDE1LjVsMy43LDI5IGMyMi44LDAuMyw0NC44LTcuOSw2MS45LTIzLjFjMTcuOC0xOC41LDI0LTQ0LjEsMjQtODMuM1YwSC00Mjd2MTcwLjFMLTQyNi45LDE2OS44TC00MjYuOSwxNjkuOHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTU1LjA0NTI5NiwgNTYuODM3MTA0KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuNTYyNDUzLCAxLjc5OTg0MikiPgogICAgICAgIDxwYXRoIGQ9Ik0tMzEyLDE0OGMwLDIxLDAsMzkuNSwxLjcsNTUuNGgtMzEuOGwtMi4xLTMzLjNoLTAuOGMtNi43LDExLjYtMTYuNCwyMS4zLTI4LDI3LjkgYy0xMS42LDYuNi0yNC44LDEwLTM4LjIsOS44Yy0zMS40LDAtNjktMTcuNy02OS04OVYwaDM2LjR2MTEyLjdjMCwzOC43LDExLjYsNjQuNyw0NC42LDY0LjdjMTAuMy0wLjIsMjAuNC0zLjUsMjguOS05LjQgYzguNS01LjksMTUuMS0xNC4zLDE4LjktMjMuOWMyLjItNi4xLDMuMy0xMi41LDMuMy0xOC45VjAuMmgzNi40VjE0OEgtMzEyTC0zMTIsMTQ4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzOTAuMDEzMzIyLCA1My40Nzk2MzgpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS43MDY0NTgsIDAuMjMxNDI1KSI+CiAgICAgICAgPHBhdGggZD0iTS00NzguNiw3MS40YzAtMjYtMC44LTQ3LTEuNy02Ni43aDMyLjdsMS43LDM0LjhoMC44YzcuMS0xMi41LDE3LjUtMjIuOCwzMC4xLTI5LjcgYzEyLjUtNywyNi43LTEwLjMsNDEtOS44YzQ4LjMsMCw4NC43LDQxLjcsODQuNywxMDMuM2MwLDczLjEtNDMuNywxMDkuMi05MSwxMDkuMmMtMTIuMSwwLjUtMjQuMi0yLjItMzUtNy44IGMtMTAuOC01LjYtMTkuOS0xMy45LTI2LjYtMjQuMmgtMC44VjI5MWgtMzZ2LTIyMEwtNDc4LjYsNzEuNEwtNDc4LjYsNzEuNHogTS00NDIuNiwxMjUuNmMwLjEsNS4xLDAuNiwxMC4xLDEuNywxNS4xIGMzLDEyLjMsOS45LDIzLjMsMTkuOCwzMS4xYzkuOSw3LjgsMjIuMSwxMi4xLDM0LjcsMTIuMWMzOC41LDAsNjAuNy0zMS45LDYwLjctNzguNWMwLTQwLjctMjEuMS03NS42LTU5LjUtNzUuNiBjLTEyLjksMC40LTI1LjMsNS4xLTM1LjMsMTMuNGMtOS45LDguMy0xNi45LDE5LjctMTkuNiwzMi40Yy0xLjUsNC45LTIuMywxMC0yLjUsMTUuMVYxMjUuNkwtNDQyLjYsMTI1LjZMLTQ0Mi42LDEyNS42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MDYuNzQwNzI2LCA1Ni44MzcxMDQpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC43NTEyMjYsIDEuOTg5Mjk5KSI+CiAgICAgICAgPHBhdGggZD0iTS00NDAuOCwwbDQzLjcsMTIwLjFjNC41LDEzLjQsOS41LDI5LjQsMTIuOCw0MS43aDAuOGMzLjctMTIuMiw3LjktMjcuNywxMi44LTQyLjQgbDM5LjctMTE5LjJoMzguNUwtMzQ2LjksMTQ1Yy0yNiw2OS43LTQzLjcsMTA1LjQtNjguNiwxMjcuMmMtMTIuNSwxMS43LTI3LjksMjAtNDQuNiwyMy45bC05LjEtMzEuMSBjMTEuNy0zLjksMjIuNS0xMC4xLDMxLjgtMTguMWMxMy4yLTExLjEsMjMuNy0yNS4yLDMwLjYtNDEuMmMxLjUtMi44LDIuNS01LjcsMi45LTguOGMtMC4zLTMuMy0xLjItNi42LTIuNS05LjdMLTQ4MC4yLDAuMSBoMzkuN0wtNDQwLjgsMEwtNDQwLjgsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODIyLjc0ODEwNCwgMC4wMDAwMDApIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS40NjQwNTAsIDAuMzc4OTE0KSI+CiAgICAgICAgPHBhdGggZD0iTS00MTMuNywwdjU4LjNoNTJ2MjguMmgtNTJWMTk2YzAsMjUsNywzOS41LDI3LjMsMzkuNWM3LjEsMC4xLDE0LjItMC43LDIxLjEtMi41IGwxLjcsMjcuN2MtMTAuMywzLjctMjEuMyw1LjQtMzIuMiw1Yy03LjMsMC40LTE0LjYtMC43LTIxLjMtMy40Yy02LjgtMi43LTEyLjktNi44LTE3LjktMTIuMWMtMTAuMy0xMC45LTE0LjEtMjktMTQuMS01Mi45IFY4Ni41aC0zMVY1OC4zaDMxVjkuNkwtNDEzLjcsMEwtNDEzLjcsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOTc0LjQzMzI4NiwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuOTkwMDM0LCAwLjYxMDMzOSkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDQ1LjgsMTEzYzAuOCw1MCwzMi4yLDcwLjYsNjguNiw3MC42YzE5LDAuNiwzNy45LTMsNTUuMy0xMC41bDYuMiwyNi40IGMtMjAuOSw4LjktNDMuNSwxMy4xLTY2LjIsMTIuNmMtNjEuNSwwLTk4LjMtNDEuMi05OC4zLTEwMi41Qy00ODAuMiw0OC4yLTQ0NC43LDAtMzg2LjUsMGM2NS4yLDAsODIuNyw1OC4zLDgyLjcsOTUuNyBjLTAuMSw1LjgtMC41LDExLjUtMS4yLDE3LjJoLTE0MC42SC00NDUuOEwtNDQ1LjgsMTEzeiBNLTMzOS4yLDg2LjZjMC40LTIzLjUtOS41LTYwLjEtNTAuNC02MC4xIGMtMzYuOCwwLTUyLjgsMzQuNC01NS43LDYwLjFILTMzOS4yTC0zMzkuMiw4Ni42TC0zMzkuMiw4Ni42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjAxLjk2MTA1OCwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuMTc5NjQwLCAwLjcwNTA2OCkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDc4LjYsNjhjMC0yMy45LTAuNC00NC41LTEuNy02My40aDMxLjhsMS4yLDM5LjloMS43YzkuMS0yNy4zLDMxLTQ0LjUsNTUuMy00NC41IGMzLjUtMC4xLDcsMC40LDEwLjMsMS4ydjM0LjhjLTQuMS0wLjktOC4yLTEuMy0xMi40LTEuMmMtMjUuNiwwLTQzLjcsMTkuNy00OC43LDQ3LjRjLTEsNS43LTEuNiwxMS41LTEuNywxNy4ydjEwOC4zaC0zNlY2OCBMLTQ3OC42LDY4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCBkPSJNMTM1Mi4zLDMyNi4yaDM3VjI4aC0zN1YzMjYuMnogTTE2MDQuOCwzMjYuMmMtMi41LTEzLjktMy40LTMxLjEtMy40LTQ4Ljd2LTc2IGMwLTQwLjctMTUuMS04My4xLTc3LjMtODMuMWMtMjUuNiwwLTUwLDcuMS02Ni44LDE4LjFsOC40LDI0LjRjMTQuMy05LjIsMzQtMTUuMSw1My0xNS4xYzQxLjYsMCw0Ni4yLDMwLjIsNDYuMiw0N3Y0LjIgYy03OC42LTAuNC0xMjIuMywyNi41LTEyMi4zLDc1LjZjMCwyOS40LDIxLDU4LjQsNjIuMiw1OC40YzI5LDAsNTAuOS0xNC4zLDYyLjItMzAuMmgxLjNsMi45LDI1LjZIMTYwNC44eiBNMTU2NS43LDI1Ny43IGMwLDMuOC0wLjgsOC0yLjEsMTEuOGMtNS45LDE3LjItMjIuNywzNC00OS4yLDM0Yy0xOC45LDAtMzQuOS0xMS4zLTM0LjktMzUuM2MwLTM5LjUsNDUuOC00Ni42LDg2LjItNDUuOFYyNTcuN3ogTTE2OTguNSwzMjYuMiBsMS43LTMzLjZoMS4zYzE1LjEsMjYuOSwzOC43LDM4LjIsNjguMSwzOC4yYzQ1LjQsMCw5MS4yLTM2LjEsOTEuMi0xMDguOGMwLjQtNjEuNy0zNS4zLTEwMy43LTg1LjctMTAzLjcgYy0zMi44LDAtNTYuMywxNC43LTY5LjMsMzcuNGgtMC44VjI4aC0zNi42djI0NS43YzAsMTguMS0wLjgsMzguNi0xLjcsNTIuNUgxNjk4LjV6IE0xNzA0LjgsMjA4LjJjMC01LjksMS4zLTEwLjksMi4xLTE1LjEgYzcuNi0yOC4xLDMxLjEtNDUuNCw1Ni4zLTQ1LjRjMzkuNSwwLDYwLjUsMzQuOSw2MC41LDc1LjZjMCw0Ni42LTIzLjEsNzguMS02MS44LDc4LjFjLTI2LjksMC00OC4zLTE3LjYtNTUuNS00My4zIGMtMC44LTQuMi0xLjctOC44LTEuNy0xMy40VjIwOC4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgZmlsbD0iIzYxNjE2MSIgZD0iTTE1IDlIOXY2aDZWOXptLTIgNGgtMnYtMmgydjJ6bTgtMlY5aC0yVjdjMC0xLjEtLjktMi0yLTJoLTJWM2gtMnYyaC0yVjNIOXYySDdjLTEuMSAwLTIgLjktMiAydjJIM3YyaDJ2MkgzdjJoMnYyYzAgMS4xLjkgMiAyIDJoMnYyaDJ2LTJoMnYyaDJ2LTJoMmMxLjEgMCAyLS45IDItMnYtMmgydi0yaC0ydi0yaDJ6bS00IDZIN1Y3aDEwdjEweiIvPgo8L3N2Zz4K);\n  --jp-icon-keyboard: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMTdjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY3YzAtMS4xLS45LTItMi0yem0tOSAzaDJ2MmgtMlY4em0wIDNoMnYyaC0ydi0yek04IDhoMnYySDhWOHptMCAzaDJ2Mkg4di0yem0tMSAySDV2LTJoMnYyem0wLTNINVY4aDJ2MnptOSA3SDh2LTJoOHYyem0wLTRoLTJ2LTJoMnYyem0wLTNoLTJWOGgydjJ6bTMgM2gtMnYtMmgydjJ6bTAtM2gtMlY4aDJ2MnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-launcher: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkgMTlINVY1aDdWM0g1YTIgMiAwIDAwLTIgMnYxNGEyIDIgMCAwMDIgMmgxNGMxLjEgMCAyLS45IDItMnYtN2gtMnY3ek0xNCAzdjJoMy41OWwtOS44MyA5LjgzIDEuNDEgMS40MUwxOSA2LjQxVjEwaDJWM2gtN3oiLz4KPC9zdmc+Cg==);\n  --jp-icon-line-form: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGZpbGw9IndoaXRlIiBkPSJNNS44OCA0LjEyTDEzLjc2IDEybC03Ljg4IDcuODhMOCAyMmwxMC0xMEw4IDJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-link: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMuOSAxMmMwLTEuNzEgMS4zOS0zLjEgMy4xLTMuMWg0VjdIN2MtMi43NiAwLTUgMi4yNC01IDVzMi4yNCA1IDUgNWg0di0xLjlIN2MtMS43MSAwLTMuMS0xLjM5LTMuMS0zLjF6TTggMTNoOHYtMkg4djJ6bTktNmgtNHYxLjloNGMxLjcxIDAgMy4xIDEuMzkgMy4xIDMuMXMtMS4zOSAzLjEtMy4xIDMuMWgtNFYxN2g0YzIuNzYgMCA1LTIuMjQgNS01cy0yLjI0LTUtNS01eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiM2MTYxNjEiIGQ9Ik0xOSA1djE0SDVWNWgxNG0xLjEtMkgzLjljLS41IDAtLjkuNC0uOS45djE2LjJjMCAuNC40LjkuOS45aDE2LjJjLjQgMCAuOS0uNS45LS45VjMuOWMwLS41LS41LS45LS45LS45ek0xMSA3aDZ2MmgtNlY3em0wIDRoNnYyaC02di0yem0wIDRoNnYyaC02ek03IDdoMnYySDd6bTAgNGgydjJIN3ptMCA0aDJ2Mkg3eiIvPgo8L3N2Zz4=);\n  --jp-icon-listings-info: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MC45NzggNTAuOTc4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MC45NzggNTAuOTc4OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+Cgk8Zz4KCQk8cGF0aCBzdHlsZT0iZmlsbDojMDEwMDAyOyIgZD0iTTQzLjUyLDcuNDU4QzM4LjcxMSwyLjY0OCwzMi4zMDcsMCwyNS40ODksMEMxOC42NywwLDEyLjI2NiwyLjY0OCw3LjQ1OCw3LjQ1OAoJCQljLTkuOTQzLDkuOTQxLTkuOTQzLDI2LjExOSwwLDM2LjA2MmM0LjgwOSw0LjgwOSwxMS4yMTIsNy40NTYsMTguMDMxLDcuNDU4YzAsMCwwLjAwMSwwLDAuMDAyLDAKCQkJYzYuODE2LDAsMTMuMjIxLTIuNjQ4LDE4LjAyOS03LjQ1OGM0LjgwOS00LjgwOSw3LjQ1Ny0xMS4yMTIsNy40NTctMTguMDNDNTAuOTc3LDE4LjY3LDQ4LjMyOCwxMi4yNjYsNDMuNTIsNy40NTh6CgkJCSBNNDIuMTA2LDQyLjEwNWMtNC40MzIsNC40MzEtMTAuMzMyLDYuODcyLTE2LjYxNSw2Ljg3MmgtMC4wMDJjLTYuMjg1LTAuMDAxLTEyLjE4Ny0yLjQ0MS0xNi42MTctNi44NzIKCQkJYy05LjE2Mi05LjE2My05LjE2Mi0yNC4wNzEsMC0zMy4yMzNDMTMuMzAzLDQuNDQsMTkuMjA0LDIsMjUuNDg5LDJjNi4yODQsMCwxMi4xODYsMi40NCwxNi42MTcsNi44NzIKCQkJYzQuNDMxLDQuNDMxLDYuODcxLDEwLjMzMiw2Ljg3MSwxNi42MTdDNDguOTc3LDMxLjc3Miw0Ni41MzYsMzcuNjc1LDQyLjEwNiw0Mi4xMDV6Ii8+CgkJPHBhdGggc3R5bGU9ImZpbGw6IzAxMDAwMjsiIGQ9Ik0yMy41NzgsMzIuMjE4Yy0wLjAyMy0xLjczNCwwLjE0My0zLjA1OSwwLjQ5Ni0zLjk3MmMwLjM1My0wLjkxMywxLjExLTEuOTk3LDIuMjcyLTMuMjUzCgkJCWMwLjQ2OC0wLjUzNiwwLjkyMy0xLjA2MiwxLjM2Ny0xLjU3NWMwLjYyNi0wLjc1MywxLjEwNC0xLjQ3OCwxLjQzNi0yLjE3NWMwLjMzMS0wLjcwNywwLjQ5NS0xLjU0MSwwLjQ5NS0yLjUKCQkJYzAtMS4wOTYtMC4yNi0yLjA4OC0wLjc3OS0yLjk3OWMtMC41NjUtMC44NzktMS41MDEtMS4zMzYtMi44MDYtMS4zNjljLTEuODAyLDAuMDU3LTIuOTg1LDAuNjY3LTMuNTUsMS44MzIKCQkJYy0wLjMwMSwwLjUzNS0wLjUwMywxLjE0MS0wLjYwNywxLjgxNGMtMC4xMzksMC43MDctMC4yMDcsMS40MzItMC4yMDcsMi4xNzRoLTIuOTM3Yy0wLjA5MS0yLjIwOCwwLjQwNy00LjExNCwxLjQ5My01LjcxOQoJCQljMS4wNjItMS42NCwyLjg1NS0yLjQ4MSw1LjM3OC0yLjUyN2MyLjE2LDAuMDIzLDMuODc0LDAuNjA4LDUuMTQxLDEuNzU4YzEuMjc4LDEuMTYsMS45MjksMi43NjQsMS45NSw0LjgxMQoJCQljMCwxLjE0Mi0wLjEzNywyLjExMS0wLjQxLDIuOTExYy0wLjMwOSwwLjg0NS0wLjczMSwxLjU5My0xLjI2OCwyLjI0M2MtMC40OTIsMC42NS0xLjA2OCwxLjMxOC0xLjczLDIuMDAyCgkJCWMtMC42NSwwLjY5Ny0xLjMxMywxLjQ3OS0xLjk4NywyLjM0NmMtMC4yMzksMC4zNzctMC40MjksMC43NzctMC41NjUsMS4xOTljLTAuMTYsMC45NTktMC4yMTcsMS45NTEtMC4xNzEsMi45NzkKCQkJQzI2LjU4OSwzMi4yMTgsMjMuNTc4LDMyLjIxOCwyMy41NzgsMzIuMjE4eiBNMjMuNTc4LDM4LjIydi0zLjQ4NGgzLjA3NnYzLjQ4NEgyMy41Nzh6Ii8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-markdown: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjN0IxRkEyIiBkPSJNNSAxNC45aDEybC02LjEgNnptOS40LTYuOGMwLTEuMy0uMS0yLjktLjEtNC41LS40IDEuNC0uOSAyLjktMS4zIDQuM2wtMS4zIDQuM2gtMkw4LjUgNy45Yy0uNC0xLjMtLjctMi45LTEtNC4zLS4xIDEuNi0uMSAzLjItLjIgNC42TDcgMTIuNEg0LjhsLjctMTFoMy4zTDEwIDVjLjQgMS4yLjcgMi43IDEgMy45LjMtMS4yLjctMi42IDEtMy45bDEuMi0zLjdoMy4zbC42IDExaC0yLjRsLS4zLTQuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-new-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwIDZoLThsLTItMkg0Yy0xLjExIDAtMS45OS44OS0xLjk5IDJMMiAxOGMwIDEuMTEuODkgMiAyIDJoMTZjMS4xMSAwIDItLjg5IDItMlY4YzAtMS4xMS0uODktMi0yLTJ6bS0xIDhoLTN2M2gtMnYtM2gtM3YtMmgzVjloMnYzaDN2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-not-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI1IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMTkgMTcuMTg0NCAyLjk2OTY4IDE0LjMwMzIgMS44NjA5NCAxMS40NDA5WiIvPgogICAgPHBhdGggY2xhc3M9ImpwLWljb24yIiBzdHJva2U9IiMzMzMzMzMiIHN0cm9rZS13aWR0aD0iMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOS4zMTU5MiA5LjMyMDMxKSIgZD0iTTcuMzY4NDIgMEwwIDcuMzY0NzkiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDkuMzE1OTIgMTYuNjgzNikgc2NhbGUoMSAtMSkiIGQ9Ik03LjM2ODQyIDBMMCA3LjM2NDc5Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-notebook: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNFRjZDMDAiPgogICAgPHBhdGggZD0iTTE4LjcgMy4zdjE1LjRIMy4zVjMuM2gxNS40bTEuNS0xLjVIMS44djE4LjNoMTguM2wuMS0xOC4zeiIvPgogICAgPHBhdGggZD0iTTE2LjUgMTYuNWwtNS40LTQuMy01LjYgNC4zdi0xMWgxMXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-numbering: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTQgMTlINlYxOS41SDVWMjAuNUg2VjIxSDRWMjJIN1YxOEg0VjE5Wk01IDEwSDZWNkg0VjdINVYxMFpNNCAxM0g1LjhMNCAxNS4xVjE2SDdWMTVINS4yTDcgMTIuOVYxMkg0VjEzWk05IDdWOUgyM1Y3SDlaTTkgMjFIMjNWMTlIOVYyMVpNOSAxNUgyM1YxM0g5VjE1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-offline-bolt: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDIuMDJjLTUuNTEgMC05Ljk4IDQuNDctOS45OCA5Ljk4czQuNDcgOS45OCA5Ljk4IDkuOTggOS45OC00LjQ3IDkuOTgtOS45OFMxNy41MSAyLjAyIDEyIDIuMDJ6TTExLjQ4IDIwdi02LjI2SDhMMTMgNHY2LjI2aDMuMzVMMTEuNDggMjB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-palette: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE4IDEzVjIwSDRWNkg5LjAyQzkuMDcgNS4yOSA5LjI0IDQuNjIgOS41IDRINEMyLjkgNCAyIDQuOSAyIDZWMjBDMiAyMS4xIDIuOSAyMiA0IDIySDE4QzE5LjEgMjIgMjAgMjEuMSAyMCAyMFYxNUwxOCAxM1pNMTkuMyA4Ljg5QzE5Ljc0IDguMTkgMjAgNy4zOCAyMCA2LjVDMjAgNC4wMSAxNy45OSAyIDE1LjUgMkMxMy4wMSAyIDExIDQuMDEgMTEgNi41QzExIDguOTkgMTMuMDEgMTEgMTUuNDkgMTFDMTYuMzcgMTEgMTcuMTkgMTAuNzQgMTcuODggMTAuM0wyMSAxMy40MkwyMi40MiAxMkwxOS4zIDguODlaTTE1LjUgOUMxNC4xMiA5IDEzIDcuODggMTMgNi41QzEzIDUuMTIgMTQuMTIgNCAxNS41IDRDMTYuODggNCAxOCA1LjEyIDE4IDYuNUMxOCA3Ljg4IDE2Ljg4IDkgMTUuNSA5WiIvPgogICAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDZIOS4wMTg5NEM5LjAwNjM5IDYuMTY1MDIgOSA2LjMzMTc2IDkgNi41QzkgOC44MTU3NyAxMC4yMTEgMTAuODQ4NyAxMi4wMzQzIDEySDlWMTRIMTZWMTIuOTgxMUMxNi41NzAzIDEyLjkzNzcgMTcuMTIgMTIuODIwNyAxNy42Mzk2IDEyLjYzOTZMMTggMTNWMjBINFY2Wk04IDhINlYxMEg4VjhaTTYgMTJIOFYxNEg2VjEyWk04IDE2SDZWMThIOFYxNlpNOSAxNkgxNlYxOEg5VjE2WiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-paste: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE5IDJoLTQuMThDMTQuNC44NCAxMy4zIDAgMTIgMGMtMS4zIDAtMi40Ljg0LTIuODIgMkg1Yy0xLjEgMC0yIC45LTIgMnYxNmMwIDEuMS45IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjRjMC0xLjEtLjktMi0yLTJ6bS03IDBjLjU1IDAgMSAuNDUgMSAxcy0uNDUgMS0xIDEtMS0uNDUtMS0xIC40NS0xIDEtMXptNyAxOEg1VjRoMnYzaDEwVjRoMnYxNnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-pdf: url(data:image/svg+xml;base64,PHN2ZwogICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMiAyMiIgd2lkdGg9IjE2Ij4KICAgIDxwYXRoIHRyYW5zZm9ybT0icm90YXRlKDQ1KSIgY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI0ZGMkEyQSIKICAgICAgIGQ9Im0gMjIuMzQ0MzY5LC0zLjAxNjM2NDIgaCA1LjYzODYwNCB2IDEuNTc5MjQzMyBoIC0zLjU0OTIyNyB2IDEuNTA4NjkyOTkgaCAzLjMzNzU3NiBWIDEuNjUwODE1NCBoIC0zLjMzNzU3NiB2IDMuNDM1MjYxMyBoIC0yLjA4OTM3NyB6IG0gLTcuMTM2NDQ0LDEuNTc5MjQzMyB2IDQuOTQzOTU0MyBoIDAuNzQ4OTIgcSAxLjI4MDc2MSwwIDEuOTUzNzAzLC0wLjYzNDk1MzUgMC42NzgzNjksLTAuNjM0OTUzNSAwLjY3ODM2OSwtMS44NDUxNjQxIDAsLTEuMjA0NzgzNTUgLTAuNjcyOTQyLC0xLjgzNDMxMDExIC0wLjY3Mjk0MiwtMC42Mjk1MjY1OSAtMS45NTkxMywtMC42Mjk1MjY1OSB6IG0gLTIuMDg5Mzc3LC0xLjU3OTI0MzMgaCAyLjIwMzM0MyBxIDEuODQ1MTY0LDAgMi43NDYwMzksMC4yNjU5MjA3IDAuOTA2MzAxLDAuMjYwNDkzNyAxLjU1MjEwOCwwLjg5MDAyMDMgMC41Njk4MywwLjU0ODEyMjMgMC44NDY2MDUsMS4yNjQ0ODAwNiAwLjI3Njc3NCwwLjcxNjM1NzgxIDAuMjc2Nzc0LDEuNjIyNjU4OTQgMCwwLjkxNzE1NTEgLTAuMjc2Nzc0LDEuNjM4OTM5OSAtMC4yNzY3NzUsMC43MTYzNTc4IC0wLjg0NjYwNSwxLjI2NDQ4IC0wLjY1MTIzNCwwLjYyOTUyNjYgLTEuNTYyOTYyLDAuODk1NDQ3MyAtMC45MTE3MjgsMC4yNjA0OTM3IC0yLjczNTE4NSwwLjI2MDQ5MzcgaCAtMi4yMDMzNDMgeiBtIC04LjE0NTg1NjUsMCBoIDMuNDY3ODIzIHEgMS41NDY2ODE2LDAgMi4zNzE1Nzg1LDAuNjg5MjIzIDAuODMwMzI0LDAuNjgzNzk2MSAwLjgzMDMyNCwxLjk1MzcwMzE0IDAsMS4yNzUzMzM5NyAtMC44MzAzMjQsMS45NjQ1NTcwNiBRIDkuOTg3MTk2MSwyLjI3NDkxNSA4LjQ0MDUxNDUsMi4yNzQ5MTUgSCA3LjA2MjA2ODQgViA1LjA4NjA3NjcgSCA0Ljk3MjY5MTUgWiBtIDIuMDg5Mzc2OSwxLjUxNDExOTkgdiAyLjI2MzAzOTQzIGggMS4xNTU5NDEgcSAwLjYwNzgxODgsMCAwLjkzODg2MjksLTAuMjkzMDU1NDcgMC4zMzEwNDQxLC0wLjI5ODQ4MjQxIDAuMzMxMDQ0MSwtMC44NDExNzc3MiAwLC0wLjU0MjY5NTMxIC0wLjMzMTA0NDEsLTAuODM1NzUwNzQgLTAuMzMxMDQ0MSwtMC4yOTMwNTU1IC0wLjkzODg2MjksLTAuMjkzMDU1NSB6IgovPgo8L3N2Zz4K);\n  --jp-icon-python: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMEQ0N0ExIj4KICAgIDxwYXRoIGQ9Ik0xMS4xIDYuOVY1LjhINi45YzAtLjUgMC0xLjMuMi0xLjYuNC0uNy44LTEuMSAxLjctMS40IDEuNy0uMyAyLjUtLjMgMy45LS4xIDEgLjEgMS45LjkgMS45IDEuOXY0LjJjMCAuNS0uOSAxLjYtMiAxLjZIOC44Yy0xLjUgMC0yLjQgMS40LTIuNCAyLjh2Mi4ySDQuN0MzLjUgMTUuMSAzIDE0IDMgMTMuMVY5Yy0uMS0xIC42LTIgMS44LTIgMS41LS4xIDYuMy0uMSA2LjMtLjF6Ii8+CiAgICA8cGF0aCBkPSJNMTAuOSAxNS4xdjEuMWg0LjJjMCAuNSAwIDEuMy0uMiAxLjYtLjQuNy0uOCAxLjEtMS43IDEuNC0xLjcuMy0yLjUuMy0zLjkuMS0xLS4xLTEuOS0uOS0xLjktMS45di00LjJjMC0uNS45LTEuNiAyLTEuNmgzLjhjMS41IDAgMi40LTEuNCAyLjQtMi44VjYuNmgxLjdDMTguNSA2LjkgMTkgOCAxOSA4LjlWMTNjMCAxLS43IDIuMS0xLjkgMi4xaC02LjJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-r-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjE5NkYzIiBkPSJNNC40IDIuNWMxLjItLjEgMi45LS4zIDQuOS0uMyAyLjUgMCA0LjEuNCA1LjIgMS4zIDEgLjcgMS41IDEuOSAxLjUgMy41IDAgMi0xLjQgMy41LTIuOSA0LjEgMS4yLjQgMS43IDEuNiAyLjIgMyAuNiAxLjkgMSAzLjkgMS4zIDQuNmgtMy44Yy0uMy0uNC0uOC0xLjctMS4yLTMuN3MtMS4yLTIuNi0yLjYtMi42aC0uOXY2LjRINC40VjIuNXptMy43IDYuOWgxLjRjMS45IDAgMi45LS45IDIuOS0yLjNzLTEtMi4zLTIuOC0yLjNjLS43IDAtMS4zIDAtMS42LjJ2NC41aC4xdi0uMXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-react: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMTUwIDE1MCA1NDEuOSAyOTUuMyI+CiAgPGcgY2xhc3M9ImpwLWljb24tYnJhbmQyIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzYxREFGQiI+CiAgICA8cGF0aCBkPSJNNjY2LjMgMjk2LjVjMC0zMi41LTQwLjctNjMuMy0xMDMuMS04Mi40IDE0LjQtNjMuNiA4LTExNC4yLTIwLjItMTMwLjQtNi41LTMuOC0xNC4xLTUuNi0yMi40LTUuNnYyMi4zYzQuNiAwIDguMy45IDExLjQgMi42IDEzLjYgNy44IDE5LjUgMzcuNSAxNC45IDc1LjctMS4xIDkuNC0yLjkgMTkuMy01LjEgMjkuNC0xOS42LTQuOC00MS04LjUtNjMuNS0xMC45LTEzLjUtMTguNS0yNy41LTM1LjMtNDEuNi01MCAzMi42LTMwLjMgNjMuMi00Ni45IDg0LTQ2LjlWNzhjLTI3LjUgMC02My41IDE5LjYtOTkuOSA1My42LTM2LjQtMzMuOC03Mi40LTUzLjItOTkuOS01My4ydjIyLjNjMjAuNyAwIDUxLjQgMTYuNSA4NCA0Ni42LTE0IDE0LjctMjggMzEuNC00MS4zIDQ5LjktMjIuNiAyLjQtNDQgNi4xLTYzLjYgMTEtMi4zLTEwLTQtMTkuNy01LjItMjktNC43LTM4LjIgMS4xLTY3LjkgMTQuNi03NS44IDMtMS44IDYuOS0yLjYgMTEuNS0yLjZWNzguNWMtOC40IDAtMTYgMS44LTIyLjYgNS42LTI4LjEgMTYuMi0zNC40IDY2LjctMTkuOSAxMzAuMS02Mi4yIDE5LjItMTAyLjcgNDkuOS0xMDIuNyA4Mi4zIDAgMzIuNSA0MC43IDYzLjMgMTAzLjEgODIuNC0xNC40IDYzLjYtOCAxMTQuMiAyMC4yIDEzMC40IDYuNSAzLjggMTQuMSA1LjYgMjIuNSA1LjYgMjcuNSAwIDYzLjUtMTkuNiA5OS45LTUzLjYgMzYuNCAzMy44IDcyLjQgNTMuMiA5OS45IDUzLjIgOC40IDAgMTYtMS44IDIyLjYtNS42IDI4LjEtMTYuMiAzNC40LTY2LjcgMTkuOS0xMzAuMSA2Mi0xOS4xIDEwMi41LTQ5LjkgMTAyLjUtODIuM3ptLTEzMC4yLTY2LjdjLTMuNyAxMi45LTguMyAyNi4yLTEzLjUgMzkuNS00LjEtOC04LjQtMTYtMTMuMS0yNC00LjYtOC05LjUtMTUuOC0xNC40LTIzLjQgMTQuMiAyLjEgMjcuOSA0LjcgNDEgNy45em0tNDUuOCAxMDYuNWMtNy44IDEzLjUtMTUuOCAyNi4zLTI0LjEgMzguMi0xNC45IDEuMy0zMCAyLTQ1LjIgMi0xNS4xIDAtMzAuMi0uNy00NS0xLjktOC4zLTExLjktMTYuNC0yNC42LTI0LjItMzgtNy42LTEzLjEtMTQuNS0yNi40LTIwLjgtMzkuOCA2LjItMTMuNCAxMy4yLTI2LjggMjAuNy0zOS45IDcuOC0xMy41IDE1LjgtMjYuMyAyNC4xLTM4LjIgMTQuOS0xLjMgMzAtMiA0NS4yLTIgMTUuMSAwIDMwLjIuNyA0NSAxLjkgOC4zIDExLjkgMTYuNCAyNC42IDI0LjIgMzggNy42IDEzLjEgMTQuNSAyNi40IDIwLjggMzkuOC02LjMgMTMuNC0xMy4yIDI2LjgtMjAuNyAzOS45em0zMi4zLTEzYzUuNCAxMy40IDEwIDI2LjggMTMuOCAzOS44LTEzLjEgMy4yLTI2LjkgNS45LTQxLjIgOCA0LjktNy43IDkuOC0xNS42IDE0LjQtMjMuNyA0LjYtOCA4LjktMTYuMSAxMy0yNC4xek00MjEuMiA0MzBjLTkuMy05LjYtMTguNi0yMC4zLTI3LjgtMzIgOSAuNCAxOC4yLjcgMjcuNS43IDkuNCAwIDE4LjctLjIgMjcuOC0uNy05IDExLjctMTguMyAyMi40LTI3LjUgMzJ6bS03NC40LTU4LjljLTE0LjItMi4xLTI3LjktNC43LTQxLTcuOSAzLjctMTIuOSA4LjMtMjYuMiAxMy41LTM5LjUgNC4xIDggOC40IDE2IDEzLjEgMjQgNC43IDggOS41IDE1LjggMTQuNCAyMy40ek00MjAuNyAxNjNjOS4zIDkuNiAxOC42IDIwLjMgMjcuOCAzMi05LS40LTE4LjItLjctMjcuNS0uNy05LjQgMC0xOC43LjItMjcuOC43IDktMTEuNyAxOC4zLTIyLjQgMjcuNS0zMnptLTc0IDU4LjljLTQuOSA3LjctOS44IDE1LjYtMTQuNCAyMy43LTQuNiA4LTguOSAxNi0xMyAyNC01LjQtMTMuNC0xMC0yNi44LTEzLjgtMzkuOCAxMy4xLTMuMSAyNi45LTUuOCA0MS4yLTcuOXptLTkwLjUgMTI1LjJjLTM1LjQtMTUuMS01OC4zLTM0LjktNTguMy01MC42IDAtMTUuNyAyMi45LTM1LjYgNTguMy01MC42IDguNi0zLjcgMTgtNyAyNy43LTEwLjEgNS43IDE5LjYgMTMuMiA0MCAyMi41IDYwLjktOS4yIDIwLjgtMTYuNiA0MS4xLTIyLjIgNjAuNi05LjktMy4xLTE5LjMtNi41LTI4LTEwLjJ6TTMxMCA0OTBjLTEzLjYtNy44LTE5LjUtMzcuNS0xNC45LTc1LjcgMS4xLTkuNCAyLjktMTkuMyA1LjEtMjkuNCAxOS42IDQuOCA0MSA4LjUgNjMuNSAxMC45IDEzLjUgMTguNSAyNy41IDM1LjMgNDEuNiA1MC0zMi42IDMwLjMtNjMuMiA0Ni45LTg0IDQ2LjktNC41LS4xLTguMy0xLTExLjMtMi43em0yMzcuMi03Ni4yYzQuNyAzOC4yLTEuMSA2Ny45LTE0LjYgNzUuOC0zIDEuOC02LjkgMi42LTExLjUgMi42LTIwLjcgMC01MS40LTE2LjUtODQtNDYuNiAxNC0xNC43IDI4LTMxLjQgNDEuMy00OS45IDIyLjYtMi40IDQ0LTYuMSA2My42LTExIDIuMyAxMC4xIDQuMSAxOS44IDUuMiAyOS4xem0zOC41LTY2LjdjLTguNiAzLjctMTggNy0yNy43IDEwLjEtNS43LTE5LjYtMTMuMi00MC0yMi41LTYwLjkgOS4yLTIwLjggMTYuNi00MS4xIDIyLjItNjAuNiA5LjkgMy4xIDE5LjMgNi41IDI4LjEgMTAuMiAzNS40IDE1LjEgNTguMyAzNC45IDU4LjMgNTAuNi0uMSAxNS43LTIzIDM1LjYtNTguNCA1MC42ek0zMjAuOCA3OC40eiIvPgogICAgPGNpcmNsZSBjeD0iNDIwLjkiIGN5PSIyOTYuNSIgcj0iNDUuNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-redo: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTE4LjQgMTAuNkMxNi41NSA4Ljk5IDE0LjE1IDggMTEuNSA4Yy00LjY1IDAtOC41OCAzLjAzLTkuOTYgNy4yMkwzLjkgMTZjMS4wNS0zLjE5IDQuMDUtNS41IDcuNi01LjUgMS45NSAwIDMuNzMuNzIgNS4xMiAxLjg4TDEzIDE2aDlWN2wtMy42IDMuNnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-refresh: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTkgMTMuNWMtMi40OSAwLTQuNS0yLjAxLTQuNS00LjVTNi41MSA0LjUgOSA0LjVjMS4yNCAwIDIuMzYuNTIgMy4xNyAxLjMzTDEwIDhoNVYzbC0xLjc2IDEuNzZDMTIuMTUgMy42OCAxMC42NiAzIDkgMyA1LjY5IDMgMy4wMSA1LjY5IDMuMDEgOVM1LjY5IDE1IDkgMTVjMi45NyAwIDUuNDMtMi4xNiA1LjktNWgtMS41MmMtLjQ2IDItMi4yNCAzLjUtNC4zOCAzLjV6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-regex: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi1hY2NlbnQyIiBmaWxsPSIjRkZGIj4KICAgIDxjaXJjbGUgY2xhc3M9InN0MiIgY3g9IjUuNSIgY3k9IjE0LjUiIHI9IjEuNSIvPgogICAgPHJlY3QgeD0iMTIiIHk9IjQiIGNsYXNzPSJzdDIiIHdpZHRoPSIxIiBoZWlnaHQ9IjgiLz4KICAgIDxyZWN0IHg9IjguNSIgeT0iNy41IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjg2NiAtMC41IDAuNSAwLjg2NiAtMi4zMjU1IDcuMzIxOSkiIGNsYXNzPSJzdDIiIHdpZHRoPSI4IiBoZWlnaHQ9IjEiLz4KICAgIDxyZWN0IHg9IjEyIiB5PSI0IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjUgLTAuODY2IDAuODY2IDAuNSAtMC42Nzc5IDE0LjgyNTIpIiBjbGFzcz0ic3QyIiB3aWR0aD0iMSIgaGVpZ2h0PSI4Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-run: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTggNXYxNGwxMS03eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-running: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptOTYgMzI4YzAgOC44LTcuMiAxNi0xNiAxNkgxNzZjLTguOCAwLTE2LTcuMi0xNi0xNlYxNzZjMC04LjggNy4yLTE2IDE2LTE2aDE2MGM4LjggMCAxNiA3LjIgMTYgMTZ2MTYweiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-save: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE3IDNINWMtMS4xMSAwLTIgLjktMiAydjE0YzAgMS4xLjg5IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjdsLTQtNHptLTUgMTZjLTEuNjYgMC0zLTEuMzQtMy0zczEuMzQtMyAzLTMgMyAxLjM0IDMgMy0xLjM0IDMtMyAzem0zLTEwSDVWNWgxMHY0eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-search: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjEsMTAuOWgtMC43bC0wLjItMC4yYzAuOC0wLjksMS4zLTIuMiwxLjMtMy41YzAtMy0yLjQtNS40LTUuNC01LjRTMS44LDQuMiwxLjgsNy4xczIuNCw1LjQsNS40LDUuNCBjMS4zLDAsMi41LTAuNSwzLjUtMS4zbDAuMiwwLjJ2MC43bDQuMSw0LjFsMS4yLTEuMkwxMi4xLDEwLjl6IE03LjEsMTAuOWMtMi4xLDAtMy43LTEuNy0zLjctMy43czEuNy0zLjcsMy43LTMuN3MzLjcsMS43LDMuNywzLjcgUzkuMiwxMC45LDcuMSwxMC45eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-settings: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuNDMgMTIuOThjLjA0LS4zMi4wNy0uNjQuMDctLjk4cy0uMDMtLjY2LS4wNy0uOThsMi4xMS0xLjY1Yy4xOS0uMTUuMjQtLjQyLjEyLS42NGwtMi0zLjQ2Yy0uMTItLjIyLS4zOS0uMy0uNjEtLjIybC0yLjQ5IDFjLS41Mi0uNC0xLjA4LS43My0xLjY5LS45OGwtLjM4LTIuNjVBLjQ4OC40ODggMCAwMDE0IDJoLTRjLS4yNSAwLS40Ni4xOC0uNDkuNDJsLS4zOCAyLjY1Yy0uNjEuMjUtMS4xNy41OS0xLjY5Ljk4bC0yLjQ5LTFjLS4yMy0uMDktLjQ5IDAtLjYxLjIybC0yIDMuNDZjLS4xMy4yMi0uMDcuNDkuMTIuNjRsMi4xMSAxLjY1Yy0uMDQuMzItLjA3LjY1LS4wNy45OHMuMDMuNjYuMDcuOThsLTIuMTEgMS42NWMtLjE5LjE1LS4yNC40Mi0uMTIuNjRsMiAzLjQ2Yy4xMi4yMi4zOS4zLjYxLjIybDIuNDktMWMuNTIuNCAxLjA4LjczIDEuNjkuOThsLjM4IDIuNjVjLjAzLjI0LjI0LjQyLjQ5LjQyaDRjLjI1IDAgLjQ2LS4xOC40OS0uNDJsLjM4LTIuNjVjLjYxLS4yNSAxLjE3LS41OSAxLjY5LS45OGwyLjQ5IDFjLjIzLjA5LjQ5IDAgLjYxLS4yMmwyLTMuNDZjLjEyLS4yMi4wNy0uNDktLjEyLS42NGwtMi4xMS0xLjY1ek0xMiAxNS41Yy0xLjkzIDAtMy41LTEuNTctMy41LTMuNXMxLjU3LTMuNSAzLjUtMy41IDMuNSAxLjU3IDMuNSAzLjUtMS41NyAzLjUtMy41IDMuNXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-spreadsheet: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNENBRjUwIiBkPSJNMi4yIDIuMnYxNy42aDE3LjZWMi4ySDIuMnptMTUuNCA3LjdoLTUuNVY0LjRoNS41djUuNXpNOS45IDQuNHY1LjVINC40VjQuNGg1LjV6bS01LjUgNy43aDUuNXY1LjVINC40di01LjV6bTcuNyA1LjV2LTUuNWg1LjV2NS41aC01LjV6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-stop: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik02IDZoMTJ2MTJINnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tab: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIxIDNIM2MtMS4xIDAtMiAuOS0yIDJ2MTRjMCAxLjEuOSAyIDIgMmgxOGMxLjEgMCAyLS45IDItMlY1YzAtMS4xLS45LTItMi0yem0wIDE2SDNWNWgxMHY0aDh2MTB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-table-rows: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMSw4SDNWNGgxOFY4eiBNMjEsMTBIM3Y0aDE4VjEweiBNMjEsMTZIM3Y0aDE4VjE2eiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-tag: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCA0MyAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTI4LjgzMzIgMTIuMzM0TDMyLjk5OTggMTYuNTAwN0wzNy4xNjY1IDEyLjMzNEgyOC44MzMyWiIvPgoJCTxwYXRoIGQ9Ik0xNi4yMDk1IDIxLjYxMDRDMTUuNjg3MyAyMi4xMjk5IDE0Ljg0NDMgMjIuMTI5OSAxNC4zMjQ4IDIxLjYxMDRMNi45ODI5IDE0LjcyNDVDNi41NzI0IDE0LjMzOTQgNi4wODMxMyAxMy42MDk4IDYuMDQ3ODYgMTMuMDQ4MkM1Ljk1MzQ3IDExLjUyODggNi4wMjAwMiA4LjYxOTQ0IDYuMDY2MjEgNy4wNzY5NUM2LjA4MjgxIDYuNTE0NzcgNi41NTU0OCA2LjA0MzQ3IDcuMTE4MDQgNi4wMzA1NUM5LjA4ODYzIDUuOTg0NzMgMTMuMjYzOCA1LjkzNTc5IDEzLjY1MTggNi4zMjQyNUwyMS43MzY5IDEzLjYzOUMyMi4yNTYgMTQuMTU4NSAyMS43ODUxIDE1LjQ3MjQgMjEuMjYyIDE1Ljk5NDZMMTYuMjA5NSAyMS42MTA0Wk05Ljc3NTg1IDguMjY1QzkuMzM1NTEgNy44MjU2NiA4LjYyMzUxIDcuODI1NjYgOC4xODI4IDguMjY1QzcuNzQzNDYgOC43MDU3MSA3Ljc0MzQ2IDkuNDE3MzMgOC4xODI4IDkuODU2NjdDOC42MjM4MiAxMC4yOTY0IDkuMzM1ODIgMTAuMjk2NCA5Ljc3NTg1IDkuODU2NjdDMTAuMjE1NiA5LjQxNzMzIDEwLjIxNTYgOC43MDUzMyA5Ljc3NTg1IDguMjY1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-terminal: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiA+CiAgICA8cmVjdCBjbGFzcz0ianAtaWNvbjIganAtaWNvbi1zZWxlY3RhYmxlIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMikiIGZpbGw9IiMzMzMzMzMiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uLWFjY2VudDIganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGQ9Ik01LjA1NjY0IDguNzYxNzJDNS4wNTY2NCA4LjU5NzY2IDUuMDMxMjUgOC40NTMxMiA0Ljk4MDQ3IDguMzI4MTJDNC45MzM1OSA4LjE5OTIyIDQuODU1NDcgOC4wODIwMyA0Ljc0NjA5IDcuOTc2NTZDNC42NDA2MiA3Ljg3MTA5IDQuNSA3Ljc3NTM5IDQuMzI0MjIgNy42ODk0NUM0LjE1MjM0IDcuNTk5NjEgMy45NDMzNiA3LjUxMTcyIDMuNjk3MjcgNy40MjU3OEMzLjMwMjczIDcuMjg1MTYgMi45NDMzNiA3LjEzNjcyIDIuNjE5MTQgNi45ODA0N0MyLjI5NDkyIDYuODI0MjIgMi4wMTc1OCA2LjY0MjU4IDEuNzg3MTEgNi40MzU1NUMxLjU2MDU1IDYuMjI4NTIgMS4zODQ3NyA1Ljk4ODI4IDEuMjU5NzcgNS43MTQ4NEMxLjEzNDc3IDUuNDM3NSAxLjA3MjI3IDUuMTA5MzggMS4wNzIyNyA0LjczMDQ3QzEuMDcyMjcgNC4zOTg0NCAxLjEyODkxIDQuMDk1NyAxLjI0MjE5IDMuODIyMjdDMS4zNTU0NyAzLjU0NDkyIDEuNTE1NjIgMy4zMDQ2OSAxLjcyMjY2IDMuMTAxNTZDMS45Mjk2OSAyLjg5ODQ0IDIuMTc5NjkgMi43MzQzNyAyLjQ3MjY2IDIuNjA5MzhDMi43NjU2MiAyLjQ4NDM4IDMuMDkxOCAyLjQwNDMgMy40NTExNyAyLjM2OTE0VjEuMTA5MzhINC4zODg2N1YyLjM4MDg2QzQuNzQwMjMgMi40Mjc3MyA1LjA1NjY0IDIuNTIzNDQgNS4zMzc4OSAyLjY2Nzk3QzUuNjE5MTQgMi44MTI1IDUuODU3NDIgMy4wMDE5NSA2LjA1MjczIDMuMjM2MzNDNi4yNTE5NSAzLjQ2NjggNi40MDQzIDMuNzQwMjMgNi41MDk3NyA0LjA1NjY0QzYuNjE5MTQgNC4zNjkxNCA2LjY3MzgzIDQuNzIwNyA2LjY3MzgzIDUuMTExMzNINS4wNDQ5MkM1LjA0NDkyIDQuNjM4NjcgNC45Mzc1IDQuMjgxMjUgNC43MjI2NiA0LjAzOTA2QzQuNTA3ODEgMy43OTI5NyA0LjIxNjggMy42Njk5MiAzLjg0OTYxIDMuNjY5OTJDMy42NTAzOSAzLjY2OTkyIDMuNDc2NTYgMy42OTcyNyAzLjMyODEyIDMuNzUxOTVDMy4xODM1OSAzLjgwMjczIDMuMDY0NDUgMy44NzY5NSAyLjk3MDcgMy45NzQ2MUMyLjg3Njk1IDQuMDY4MzYgMi44MDY2NCA0LjE3OTY5IDIuNzU5NzcgNC4zMDg1OUMyLjcxNjggNC40Mzc1IDIuNjk1MzEgNC41NzgxMiAyLjY5NTMxIDQuNzMwNDdDMi42OTUzMSA0Ljg4MjgxIDIuNzE2OCA1LjAxOTUzIDIuNzU5NzcgNS4xNDA2MkMyLjgwNjY0IDUuMjU3ODEgMi44ODI4MSA1LjM2NzE5IDIuOTg4MjggNS40Njg3NUMzLjA5NzY2IDUuNTcwMzEgMy4yNDAyMyA1LjY2Nzk3IDMuNDE2MDIgNS43NjE3MkMzLjU5MTggNS44NTE1NiAzLjgxMDU1IDUuOTQzMzYgNC4wNzIyNyA2LjAzNzExQzQuNDY2OCA2LjE4NTU1IDQuODI0MjIgNi4zMzk4NCA1LjE0NDUzIDYuNUM1LjQ2NDg0IDYuNjU2MjUgNS43MzgyOCA2LjgzOTg0IDUuOTY0ODQgNy4wNTA3OEM2LjE5NTMxIDcuMjU3ODEgNi4zNzEwOSA3LjUgNi40OTIxOSA3Ljc3NzM0QzYuNjE3MTkgOC4wNTA3OCA2LjY3OTY5IDguMzc1IDYuNjc5NjkgOC43NUM2LjY3OTY5IDkuMDkzNzUgNi42MjMwNSA5LjQwNDMgNi41MDk3NyA5LjY4MTY0QzYuMzk2NDggOS45NTUwOCA2LjIzNDM4IDEwLjE5MTQgNi4wMjM0NCAxMC4zOTA2QzUuODEyNSAxMC41ODk4IDUuNTU4NTkgMTAuNzUgNS4yNjE3MiAxMC44NzExQzQuOTY0ODQgMTAuOTg4MyA0LjYzMjgxIDExLjA2NDUgNC4yNjU2MiAxMS4wOTk2VjEyLjI0OEgzLjMzMzk4VjExLjA5OTZDMy4wMDE5NSAxMS4wNjg0IDIuNjc5NjkgMTAuOTk2MSAyLjM2NzE5IDEwLjg4MjhDMi4wNTQ2OSAxMC43NjU2IDEuNzc3MzQgMTAuNTk3NyAxLjUzNTE2IDEwLjM3ODlDMS4yOTY4OCAxMC4xNjAyIDEuMTA1NDcgOS44ODQ3NyAwLjk2MDkzOCA5LjU1MjczQzAuODE2NDA2IDkuMjE2OCAwLjc0NDE0MSA4LjgxNDQ1IDAuNzQ0MTQxIDguMzQ1N0gyLjM3ODkxQzIuMzc4OTEgOC42MjY5NSAyLjQxOTkyIDguODYzMjggMi41MDE5NSA5LjA1NDY5QzIuNTgzOTggOS4yNDIxOSAyLjY4OTQ1IDkuMzkyNTggMi44MTgzNiA5LjUwNTg2QzIuOTUxMTcgOS42MTUyMyAzLjEwMTU2IDkuNjkzMzYgMy4yNjk1MyA5Ljc0MDIzQzMuNDM3NSA5Ljc4NzExIDMuNjA5MzggOS44MTA1NSAzLjc4NTE2IDkuODEwNTVDNC4yMDMxMiA5LjgxMDU1IDQuNTE5NTMgOS43MTI4OSA0LjczNDM4IDkuNTE3NThDNC45NDkyMiA5LjMyMjI3IDUuMDU2NjQgOS4wNzAzMSA1LjA1NjY0IDguNzYxNzJaTTEzLjQxOCAxMi4yNzE1SDguMDc0MjJWMTFIMTMuNDE4VjEyLjI3MTVaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzLjk1MjY0IDYpIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);\n  --jp-icon-text-editor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTUgMTVIM3YyaDEydi0yem0wLThIM3YyaDEyVjd6TTMgMTNoMTh2LTJIM3Yyem0wIDhoMTh2LTJIM3Yyek0zIDN2MmgxOFYzSDN6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-toc: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik03LDVIMjFWN0g3VjVNNywxM1YxMUgyMVYxM0g3TTQsNC41QTEuNSwxLjUgMCAwLDEgNS41LDZBMS41LDEuNSAwIDAsMSA0LDcuNUExLjUsMS41IDAgMCwxIDIuNSw2QTEuNSwxLjUgMCAwLDEgNCw0LjVNNCwxMC41QTEuNSwxLjUgMCAwLDEgNS41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMy41QTEuNSwxLjUgMCAwLDEgMi41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMC41TTcsMTlWMTdIMjFWMTlIN000LDE2LjVBMS41LDEuNSAwIDAsMSA1LjUsMThBMS41LDEuNSAwIDAsMSA0LDE5LjVBMS41LDEuNSAwIDAsMSAyLjUsMThBMS41LDEuNSAwIDAsMSA0LDE2LjVaIiAvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tree-view: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMiAxMVYzaC03djNIOVYzSDJ2OGg3VjhoMnYxMGg0djNoN3YtOGgtN3YzaC0yVjhoMnYzeiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMiAxNy4xODQ0IDIuOTY5NjggMTQuMzAzMiAxLjg2MDk0IDExLjQ0MDlaIi8+CiAgICA8cGF0aCBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiMzMzMzMzMiIHN0cm9rZT0iIzMzMzMzMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA5Ljg2NzE5KSIgZD0iTTIuODYwMTUgNC44NjUzNUwwLjcyNjU0OSAyLjk5OTU5TDAgMy42MzA0NUwyLjg2MDE1IDYuMTMxNTdMOCAwLjYzMDg3Mkw3LjI3ODU3IDBMMi44NjAxNSA0Ljg2NTM1WiIvPgo8L3N2Zz4K);\n  --jp-icon-undo: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjUgOGMtMi42NSAwLTUuMDUuOTktNi45IDIuNkwyIDd2OWg5bC0zLjYyLTMuNjJjMS4zOS0xLjE2IDMuMTYtMS44OCA1LjEyLTEuODggMy41NCAwIDYuNTUgMi4zMSA3LjYgNS41bDIuMzctLjc4QzIxLjA4IDExLjAzIDE3LjE1IDggMTIuNSA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-vega: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbjEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjEyMTIxIj4KICAgIDxwYXRoIGQ9Ik0xMC42IDUuNGwyLjItMy4ySDIuMnY3LjNsNC02LjZ6Ii8+CiAgICA8cGF0aCBkPSJNMTUuOCAyLjJsLTQuNCA2LjZMNyA2LjNsLTQuOCA4djUuNWgxNy42VjIuMmgtNHptLTcgMTUuNEg1LjV2LTQuNGgzLjN2NC40em00LjQgMEg5LjhWOS44aDMuNHY3Ljh6bTQuNCAwaC0zLjRWNi41aDMuNHYxMS4xeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-yaml: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1jb250cmFzdDIganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjRDgxQjYwIj4KICAgIDxwYXRoIGQ9Ik03LjIgMTguNnYtNS40TDMgNS42aDMuM2wxLjQgMy4xYy4zLjkuNiAxLjYgMSAyLjUuMy0uOC42LTEuNiAxLTIuNWwxLjQtMy4xaDMuNGwtNC40IDcuNnY1LjVsLTIuOS0uMXoiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxNi41IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxMSIgcj0iMi4xIi8+CiAgPC9nPgo8L3N2Zz4K);\n}\n\n/* Icon CSS class declarations */\n\n.jp-AddIcon {\n  background-image: var(--jp-icon-add);\n}\n.jp-BugIcon {\n  background-image: var(--jp-icon-bug);\n}\n.jp-BuildIcon {\n  background-image: var(--jp-icon-build);\n}\n.jp-CaretDownEmptyIcon {\n  background-image: var(--jp-icon-caret-down-empty);\n}\n.jp-CaretDownEmptyThinIcon {\n  background-image: var(--jp-icon-caret-down-empty-thin);\n}\n.jp-CaretDownIcon {\n  background-image: var(--jp-icon-caret-down);\n}\n.jp-CaretLeftIcon {\n  background-image: var(--jp-icon-caret-left);\n}\n.jp-CaretRightIcon {\n  background-image: var(--jp-icon-caret-right);\n}\n.jp-CaretUpEmptyThinIcon {\n  background-image: var(--jp-icon-caret-up-empty-thin);\n}\n.jp-CaretUpIcon {\n  background-image: var(--jp-icon-caret-up);\n}\n.jp-CaseSensitiveIcon {\n  background-image: var(--jp-icon-case-sensitive);\n}\n.jp-CheckIcon {\n  background-image: var(--jp-icon-check);\n}\n.jp-CircleEmptyIcon {\n  background-image: var(--jp-icon-circle-empty);\n}\n.jp-CircleIcon {\n  background-image: var(--jp-icon-circle);\n}\n.jp-ClearIcon {\n  background-image: var(--jp-icon-clear);\n}\n.jp-CloseIcon {\n  background-image: var(--jp-icon-close);\n}\n.jp-CodeIcon {\n  background-image: var(--jp-icon-code);\n}\n.jp-ConsoleIcon {\n  background-image: var(--jp-icon-console);\n}\n.jp-CopyIcon {\n  background-image: var(--jp-icon-copy);\n}\n.jp-CopyrightIcon {\n  background-image: var(--jp-icon-copyright);\n}\n.jp-CutIcon {\n  background-image: var(--jp-icon-cut);\n}\n.jp-DownloadIcon {\n  background-image: var(--jp-icon-download);\n}\n.jp-EditIcon {\n  background-image: var(--jp-icon-edit);\n}\n.jp-EllipsesIcon {\n  background-image: var(--jp-icon-ellipses);\n}\n.jp-ExtensionIcon {\n  background-image: var(--jp-icon-extension);\n}\n.jp-FastForwardIcon {\n  background-image: var(--jp-icon-fast-forward);\n}\n.jp-FileIcon {\n  background-image: var(--jp-icon-file);\n}\n.jp-FileUploadIcon {\n  background-image: var(--jp-icon-file-upload);\n}\n.jp-FilterListIcon {\n  background-image: var(--jp-icon-filter-list);\n}\n.jp-FolderIcon {\n  background-image: var(--jp-icon-folder);\n}\n.jp-Html5Icon {\n  background-image: var(--jp-icon-html5);\n}\n.jp-ImageIcon {\n  background-image: var(--jp-icon-image);\n}\n.jp-InspectorIcon {\n  background-image: var(--jp-icon-inspector);\n}\n.jp-JsonIcon {\n  background-image: var(--jp-icon-json);\n}\n.jp-JuliaIcon {\n  background-image: var(--jp-icon-julia);\n}\n.jp-JupyterFaviconIcon {\n  background-image: var(--jp-icon-jupyter-favicon);\n}\n.jp-JupyterIcon {\n  background-image: var(--jp-icon-jupyter);\n}\n.jp-JupyterlabWordmarkIcon {\n  background-image: var(--jp-icon-jupyterlab-wordmark);\n}\n.jp-KernelIcon {\n  background-image: var(--jp-icon-kernel);\n}\n.jp-KeyboardIcon {\n  background-image: var(--jp-icon-keyboard);\n}\n.jp-LauncherIcon {\n  background-image: var(--jp-icon-launcher);\n}\n.jp-LineFormIcon {\n  background-image: var(--jp-icon-line-form);\n}\n.jp-LinkIcon {\n  background-image: var(--jp-icon-link);\n}\n.jp-ListIcon {\n  background-image: var(--jp-icon-list);\n}\n.jp-ListingsInfoIcon {\n  background-image: var(--jp-icon-listings-info);\n}\n.jp-MarkdownIcon {\n  background-image: var(--jp-icon-markdown);\n}\n.jp-NewFolderIcon {\n  background-image: var(--jp-icon-new-folder);\n}\n.jp-NotTrustedIcon {\n  background-image: var(--jp-icon-not-trusted);\n}\n.jp-NotebookIcon {\n  background-image: var(--jp-icon-notebook);\n}\n.jp-NumberingIcon {\n  background-image: var(--jp-icon-numbering);\n}\n.jp-OfflineBoltIcon {\n  background-image: var(--jp-icon-offline-bolt);\n}\n.jp-PaletteIcon {\n  background-image: var(--jp-icon-palette);\n}\n.jp-PasteIcon {\n  background-image: var(--jp-icon-paste);\n}\n.jp-PdfIcon {\n  background-image: var(--jp-icon-pdf);\n}\n.jp-PythonIcon {\n  background-image: var(--jp-icon-python);\n}\n.jp-RKernelIcon {\n  background-image: var(--jp-icon-r-kernel);\n}\n.jp-ReactIcon {\n  background-image: var(--jp-icon-react);\n}\n.jp-RedoIcon {\n  background-image: var(--jp-icon-redo);\n}\n.jp-RefreshIcon {\n  background-image: var(--jp-icon-refresh);\n}\n.jp-RegexIcon {\n  background-image: var(--jp-icon-regex);\n}\n.jp-RunIcon {\n  background-image: var(--jp-icon-run);\n}\n.jp-RunningIcon {\n  background-image: var(--jp-icon-running);\n}\n.jp-SaveIcon {\n  background-image: var(--jp-icon-save);\n}\n.jp-SearchIcon {\n  background-image: var(--jp-icon-search);\n}\n.jp-SettingsIcon {\n  background-image: var(--jp-icon-settings);\n}\n.jp-SpreadsheetIcon {\n  background-image: var(--jp-icon-spreadsheet);\n}\n.jp-StopIcon {\n  background-image: var(--jp-icon-stop);\n}\n.jp-TabIcon {\n  background-image: var(--jp-icon-tab);\n}\n.jp-TableRowsIcon {\n  background-image: var(--jp-icon-table-rows);\n}\n.jp-TagIcon {\n  background-image: var(--jp-icon-tag);\n}\n.jp-TerminalIcon {\n  background-image: var(--jp-icon-terminal);\n}\n.jp-TextEditorIcon {\n  background-image: var(--jp-icon-text-editor);\n}\n.jp-TocIcon {\n  background-image: var(--jp-icon-toc);\n}\n.jp-TreeViewIcon {\n  background-image: var(--jp-icon-tree-view);\n}\n.jp-TrustedIcon {\n  background-image: var(--jp-icon-trusted);\n}\n.jp-UndoIcon {\n  background-image: var(--jp-icon-undo);\n}\n.jp-VegaIcon {\n  background-image: var(--jp-icon-vega);\n}\n.jp-YamlIcon {\n  background-image: var(--jp-icon-yaml);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n.jp-Icon,\n.jp-MaterialIcon {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-cover {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: cover;\n}\n\n/**\n * (DEPRECATED) Support for specific CSS icon sizes\n */\n\n.jp-Icon-16 {\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-18 {\n  background-size: 18px;\n  min-width: 18px;\n  min-height: 18px;\n}\n\n.jp-Icon-20 {\n  background-size: 20px;\n  min-width: 20px;\n  min-height: 20px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for icons as inline SVG HTMLElements\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n/* recolor the accent elements of an icon */\n.jp-icon-accent0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-accent1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-accent2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-accent3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-accent4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-accent0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-accent1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-accent2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-accent3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-accent4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n/* set the color of an icon to transparent */\n.jp-icon-none[fill] {\n  fill: none;\n}\n\n.jp-icon-none[stroke] {\n  stroke: none;\n}\n/* brand icon colors. Same for light and dark */\n.jp-icon-brand0[fill] {\n  fill: var(--jp-brand-color0);\n}\n.jp-icon-brand1[fill] {\n  fill: var(--jp-brand-color1);\n}\n.jp-icon-brand2[fill] {\n  fill: var(--jp-brand-color2);\n}\n.jp-icon-brand3[fill] {\n  fill: var(--jp-brand-color3);\n}\n.jp-icon-brand4[fill] {\n  fill: var(--jp-brand-color4);\n}\n\n.jp-icon-brand0[stroke] {\n  stroke: var(--jp-brand-color0);\n}\n.jp-icon-brand1[stroke] {\n  stroke: var(--jp-brand-color1);\n}\n.jp-icon-brand2[stroke] {\n  stroke: var(--jp-brand-color2);\n}\n.jp-icon-brand3[stroke] {\n  stroke: var(--jp-brand-color3);\n}\n.jp-icon-brand4[stroke] {\n  stroke: var(--jp-brand-color4);\n}\n/* warn icon colors. Same for light and dark */\n.jp-icon-warn0[fill] {\n  fill: var(--jp-warn-color0);\n}\n.jp-icon-warn1[fill] {\n  fill: var(--jp-warn-color1);\n}\n.jp-icon-warn2[fill] {\n  fill: var(--jp-warn-color2);\n}\n.jp-icon-warn3[fill] {\n  fill: var(--jp-warn-color3);\n}\n\n.jp-icon-warn0[stroke] {\n  stroke: var(--jp-warn-color0);\n}\n.jp-icon-warn1[stroke] {\n  stroke: var(--jp-warn-color1);\n}\n.jp-icon-warn2[stroke] {\n  stroke: var(--jp-warn-color2);\n}\n.jp-icon-warn3[stroke] {\n  stroke: var(--jp-warn-color3);\n}\n/* icon colors that contrast well with each other and most backgrounds */\n.jp-icon-contrast0[fill] {\n  fill: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[fill] {\n  fill: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[fill] {\n  fill: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[fill] {\n  fill: var(--jp-icon-contrast-color3);\n}\n\n.jp-icon-contrast0[stroke] {\n  stroke: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[stroke] {\n  stroke: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[stroke] {\n  stroke: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[stroke] {\n  stroke: var(--jp-icon-contrast-color3);\n}\n\n/* CSS for icons in selected items in the settings editor */\n#setting-editor .jp-PluginList .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n#setting-editor\n  .jp-PluginList\n  .jp-mod-selected\n  .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected filebrowser listing items */\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected tabs in the sidebar tab manager */\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable-inverse[fill] {\n  fill: #fff;\n}\n\n/**\n * TODO: come up with non css-hack solution for showing the busy icon on top\n *  of the close icon\n * CSS for complex behavior of close icon of tabs in the sidebar tab manager\n */\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty.jp-mod-active\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: #fff;\n}\n\n/**\n* TODO: come up with non css-hack solution for showing the busy icon on top\n*  of the close icon\n* CSS for complex behavior of close icon of tabs in the main area tabbar\n*/\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n/* CSS for icons in status bar */\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n/* special handling for splash icon CSS. While the theme CSS reloads during\n   splash, the splash icon can loose theming. To prevent that, we set a\n   default for its color variable */\n:root {\n  --jp-warn-color0: var(--md-orange-700);\n}\n\n/* not sure what to do with this one, used in filebrowser listing */\n.jp-DragIcon {\n  margin-right: 4px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for alt colors for icons as inline SVG HTMLElements\n */\n\n/* alt recolor the primary elements of an icon */\n.jp-icon-alt .jp-icon0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-alt .jp-icon0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* alt recolor the accent elements of an icon */\n.jp-icon-alt .jp-icon-accent0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-alt .jp-icon-accent0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-icon-hoverShow:not(:hover) svg {\n  display: none !important;\n}\n\n/**\n * Support for hover colors for icons as inline SVG HTMLElements\n */\n\n/**\n * regular colors\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon-hover :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/* recolor the accent elements of an icon */\n.jp-icon-hover :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* set the color of an icon to transparent */\n.jp-icon-hover :hover .jp-icon-none-hover[fill] {\n  fill: none;\n}\n\n.jp-icon-hover :hover .jp-icon-none-hover[stroke] {\n  stroke: none;\n}\n\n/**\n * inverse colors\n */\n\n/* inverse recolor the primary elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* inverse recolor the accent elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-switch {\n  display: flex;\n  align-items: center;\n  padding-left: 4px;\n  padding-right: 4px;\n  font-size: var(--jp-ui-font-size1);\n  background-color: transparent;\n  color: var(--jp-ui-font-color1);\n  border: none;\n  height: 20px;\n}\n\n.jp-switch:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-switch-label {\n  margin-right: 5px;\n}\n\n.jp-switch-track {\n  cursor: pointer;\n  background-color: var(--jp-border-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 34px;\n  height: 16px;\n  width: 35px;\n  position: relative;\n}\n\n.jp-switch-track::before {\n  content: '';\n  position: absolute;\n  height: 10px;\n  width: 10px;\n  margin: 3px;\n  left: 0px;\n  background-color: var(--jp-ui-inverse-font-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 50%;\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track {\n  background-color: var(--jp-warn-color0);\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track::before {\n  /* track width (35) - margins (3 + 3) - thumb width (10) */\n  left: 19px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* Sibling imports */\n\n/* Override Blueprint's _reset.scss styles */\nhtml {\n  box-sizing: unset;\n}\n\n*,\n*::before,\n*::after {\n  box-sizing: unset;\n}\n\nbody {\n  color: unset;\n  font-family: var(--jp-ui-font-family);\n}\n\np {\n  margin-top: unset;\n  margin-bottom: unset;\n}\n\nsmall {\n  font-size: unset;\n}\n\nstrong {\n  font-weight: unset;\n}\n\n/* Override Blueprint's _typography.scss styles */\na {\n  text-decoration: unset;\n  color: unset;\n}\na:hover {\n  text-decoration: unset;\n  color: unset;\n}\n\n/* Override Blueprint's _accessibility.scss styles */\n:focus {\n  outline: unset;\n  outline-offset: unset;\n  -moz-outline-radius: unset;\n}\n\n/* Styles for ui-components */\n.jp-Button {\n  border-radius: var(--jp-border-radius);\n  padding: 0px 12px;\n  font-size: var(--jp-ui-font-size1);\n}\n\n/* Use our own theme for hover styles */\nbutton.jp-Button.bp3-button.bp3-minimal:hover {\n  background-color: var(--jp-layout-color2);\n}\n.jp-Button.minimal {\n  color: unset !important;\n}\n\n.jp-Button.jp-ToolbarButtonComponent {\n  text-transform: none;\n}\n\n.jp-InputGroup input {\n  box-sizing: border-box;\n  border-radius: 0;\n  background-color: transparent;\n  color: var(--jp-ui-font-color0);\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.jp-InputGroup input:focus {\n  box-shadow: inset 0 0 0 var(--jp-border-width)\n      var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-InputGroup input::placeholder,\ninput::placeholder {\n  color: var(--jp-ui-font-color3);\n}\n\n.jp-BPIcon {\n  display: inline-block;\n  vertical-align: middle;\n  margin: auto;\n}\n\n/* Stop blueprint futzing with our icon fills */\n.bp3-icon.jp-BPIcon > svg:not([fill]) {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n.jp-InputGroupAction {\n  padding: 6px;\n}\n\n.jp-HTMLSelect.jp-DefaultStyle select {\n  background-color: initial;\n  border: none;\n  border-radius: 0;\n  box-shadow: none;\n  color: var(--jp-ui-font-color0);\n  display: block;\n  font-size: var(--jp-ui-font-size1);\n  height: 24px;\n  line-height: 14px;\n  padding: 0 25px 0 10px;\n  text-align: left;\n  -moz-appearance: none;\n  -webkit-appearance: none;\n}\n\n/* Use our own theme for hover and option styles */\n.jp-HTMLSelect.jp-DefaultStyle select:hover,\n.jp-HTMLSelect.jp-DefaultStyle select > option {\n  background-color: var(--jp-layout-color2);\n  color: var(--jp-ui-font-color0);\n}\nselect {\n  box-sizing: border-box;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapse {\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  border-top: 1px solid var(--jp-border-color2);\n  border-bottom: 1px solid var(--jp-border-color2);\n}\n\n.jp-Collapse-header {\n  padding: 1px 12px;\n  color: var(--jp-ui-font-color1);\n  background-color: var(--jp-layout-color1);\n  font-size: var(--jp-ui-font-size2);\n}\n\n.jp-Collapse-header:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-Collapse-contents {\n  padding: 0px 12px 0px 12px;\n  background-color: var(--jp-layout-color1);\n  color: var(--jp-ui-font-color1);\n  overflow: auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-commandpalette-search-height: 28px;\n}\n\n/*-----------------------------------------------------------------------------\n| Overall styles\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette {\n  padding-bottom: 0px;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Modal variant\n|----------------------------------------------------------------------------*/\n\n.jp-ModalCommandPalette {\n  position: absolute;\n  z-index: 10000;\n  top: 38px;\n  left: 30%;\n  margin: 0;\n  padding: 4px;\n  width: 40%;\n  box-shadow: var(--jp-elevation-z4);\n  border-radius: 4px;\n  background: var(--jp-layout-color0);\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette {\n  max-height: 40vh;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-close-icon::after {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-header {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-item {\n  margin-left: 4px;\n  margin-right: 4px;\n}\n\n.jp-ModalCommandPalette\n  .lm-CommandPalette\n  .lm-CommandPalette-item.lm-mod-disabled {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Search\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-search {\n  padding: 4px;\n  background-color: var(--jp-layout-color1);\n  z-index: 2;\n}\n\n.lm-CommandPalette-wrapper {\n  overflow: overlay;\n  padding: 0px 9px;\n  background-color: var(--jp-input-active-background);\n  height: 30px;\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.lm-CommandPalette.lm-mod-focused .lm-CommandPalette-wrapper {\n  box-shadow: inset 0 0 0 1px var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-SearchIconGroup {\n  color: white;\n  background-color: var(--jp-brand-color1);\n  position: absolute;\n  top: 4px;\n  right: 4px;\n  padding: 5px 5px 1px 5px;\n}\n\n.jp-SearchIconGroup svg {\n  height: 20px;\n  width: 20px;\n}\n\n.jp-SearchIconGroup .jp-icon3[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-input {\n  background: transparent;\n  width: calc(100% - 18px);\n  float: left;\n  border: none;\n  outline: none;\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  line-height: var(--jp-private-commandpalette-search-height);\n}\n\n.lm-CommandPalette-input::-webkit-input-placeholder,\n.lm-CommandPalette-input::-moz-placeholder,\n.lm-CommandPalette-input:-ms-input-placeholder {\n  color: var(--jp-ui-font-color2);\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Results\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-header:first-child {\n  margin-top: 0px;\n}\n\n.lm-CommandPalette-header {\n  border-bottom: solid var(--jp-border-width) var(--jp-border-color2);\n  color: var(--jp-ui-font-color1);\n  cursor: pointer;\n  display: flex;\n  font-size: var(--jp-ui-font-size0);\n  font-weight: 600;\n  letter-spacing: 1px;\n  margin-top: 8px;\n  padding: 8px 0 8px 12px;\n  text-transform: uppercase;\n}\n\n.lm-CommandPalette-header.lm-mod-active {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-header > mark {\n  background-color: transparent;\n  font-weight: bold;\n  color: var(--jp-ui-font-color1);\n}\n\n.lm-CommandPalette-item {\n  padding: 4px 12px 4px 4px;\n  color: var(--jp-ui-font-color1);\n  font-size: var(--jp-ui-font-size1);\n  font-weight: 400;\n  display: flex;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item.lm-mod-active {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .jp-icon-selectable[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active:hover:not(.lm-mod-disabled) {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item:hover:not(.lm-mod-active):not(.lm-mod-disabled) {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-itemContent {\n  overflow: hidden;\n}\n\n.lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled mark {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemIcon {\n  margin: 0 4px 0 0;\n  position: relative;\n  width: 16px;\n  top: 2px;\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled .lm-CommandPalette-itemIcon {\n  opacity: 0.6;\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-itemCaption {\n  display: none;\n}\n\n.lm-CommandPalette-content {\n  background-color: var(--jp-layout-color1);\n}\n\n.lm-CommandPalette-content:empty:after {\n  content: 'No results';\n  margin: auto;\n  margin-top: 20px;\n  width: 100px;\n  display: block;\n  font-size: var(--jp-ui-font-size2);\n  font-family: var(--jp-ui-font-family);\n  font-weight: lighter;\n}\n\n.lm-CommandPalette-emptyMessage {\n  text-align: center;\n  margin-top: 24px;\n  line-height: 1.32;\n  padding: 0px 8px;\n  color: var(--jp-content-font-color3);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Dialog {\n  position: absolute;\n  z-index: 10000;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  top: 0px;\n  left: 0px;\n  margin: 0;\n  padding: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-dialog-background);\n}\n\n.jp-Dialog-content {\n  display: flex;\n  flex-direction: column;\n  margin-left: auto;\n  margin-right: auto;\n  background: var(--jp-layout-color1);\n  padding: 24px;\n  padding-bottom: 12px;\n  min-width: 300px;\n  min-height: 150px;\n  max-width: 1000px;\n  max-height: 500px;\n  box-sizing: border-box;\n  box-shadow: var(--jp-elevation-z20);\n  word-wrap: break-word;\n  border-radius: var(--jp-border-radius);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color1);\n  resize: both;\n}\n\n.jp-Dialog-button {\n  overflow: visible;\n}\n\nbutton.jp-Dialog-button:focus {\n  outline: 1px solid var(--jp-brand-color1);\n  outline-offset: 4px;\n  -moz-outline-radius: 0px;\n}\n\nbutton.jp-Dialog-button:focus::-moz-focus-inner {\n  border: 0;\n}\n\nbutton.jp-Dialog-close-button {\n  padding: 0;\n  height: 100%;\n  min-width: unset;\n  min-height: unset;\n}\n\n.jp-Dialog-header {\n  display: flex;\n  justify-content: space-between;\n  flex: 0 0 auto;\n  padding-bottom: 12px;\n  font-size: var(--jp-ui-font-size3);\n  font-weight: 400;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-body {\n  display: flex;\n  flex-direction: column;\n  flex: 1 1 auto;\n  font-size: var(--jp-ui-font-size1);\n  background: var(--jp-layout-color1);\n  overflow: auto;\n}\n\n.jp-Dialog-footer {\n  display: flex;\n  flex-direction: row;\n  justify-content: flex-end;\n  flex: 0 0 auto;\n  margin-left: -12px;\n  margin-right: -12px;\n  padding: 12px;\n}\n\n.jp-Dialog-title {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.jp-Dialog-body > .jp-select-wrapper {\n  width: 100%;\n}\n\n.jp-Dialog-body > button {\n  padding: 0px 16px;\n}\n\n.jp-Dialog-body > label {\n  line-height: 1.4;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-button.jp-mod-styled:not(:last-child) {\n  margin-right: 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-HoverBox {\n  position: fixed;\n}\n\n.jp-HoverBox.jp-mod-outofview {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-IFrame {\n  width: 100%;\n  height: 100%;\n}\n\n.jp-IFrame > iframe {\n  border: none;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-IFrame {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-IFrame:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n.jp-Input-Boolean-Dialog {\n  flex-direction: row-reverse;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-Input-Boolean-Dialog > label {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MainAreaWidget > :focus {\n  outline: none;\n}\n\n/**\n * google-material-color v1.2.6\n * https://github.com/danlevan/google-material-color\n */\n:root {\n  --md-red-50: #ffebee;\n  --md-red-100: #ffcdd2;\n  --md-red-200: #ef9a9a;\n  --md-red-300: #e57373;\n  --md-red-400: #ef5350;\n  --md-red-500: #f44336;\n  --md-red-600: #e53935;\n  --md-red-700: #d32f2f;\n  --md-red-800: #c62828;\n  --md-red-900: #b71c1c;\n  --md-red-A100: #ff8a80;\n  --md-red-A200: #ff5252;\n  --md-red-A400: #ff1744;\n  --md-red-A700: #d50000;\n\n  --md-pink-50: #fce4ec;\n  --md-pink-100: #f8bbd0;\n  --md-pink-200: #f48fb1;\n  --md-pink-300: #f06292;\n  --md-pink-400: #ec407a;\n  --md-pink-500: #e91e63;\n  --md-pink-600: #d81b60;\n  --md-pink-700: #c2185b;\n  --md-pink-800: #ad1457;\n  --md-pink-900: #880e4f;\n  --md-pink-A100: #ff80ab;\n  --md-pink-A200: #ff4081;\n  --md-pink-A400: #f50057;\n  --md-pink-A700: #c51162;\n\n  --md-purple-50: #f3e5f5;\n  --md-purple-100: #e1bee7;\n  --md-purple-200: #ce93d8;\n  --md-purple-300: #ba68c8;\n  --md-purple-400: #ab47bc;\n  --md-purple-500: #9c27b0;\n  --md-purple-600: #8e24aa;\n  --md-purple-700: #7b1fa2;\n  --md-purple-800: #6a1b9a;\n  --md-purple-900: #4a148c;\n  --md-purple-A100: #ea80fc;\n  --md-purple-A200: #e040fb;\n  --md-purple-A400: #d500f9;\n  --md-purple-A700: #aa00ff;\n\n  --md-deep-purple-50: #ede7f6;\n  --md-deep-purple-100: #d1c4e9;\n  --md-deep-purple-200: #b39ddb;\n  --md-deep-purple-300: #9575cd;\n  --md-deep-purple-400: #7e57c2;\n  --md-deep-purple-500: #673ab7;\n  --md-deep-purple-600: #5e35b1;\n  --md-deep-purple-700: #512da8;\n  --md-deep-purple-800: #4527a0;\n  --md-deep-purple-900: #311b92;\n  --md-deep-purple-A100: #b388ff;\n  --md-deep-purple-A200: #7c4dff;\n  --md-deep-purple-A400: #651fff;\n  --md-deep-purple-A700: #6200ea;\n\n  --md-indigo-50: #e8eaf6;\n  --md-indigo-100: #c5cae9;\n  --md-indigo-200: #9fa8da;\n  --md-indigo-300: #7986cb;\n  --md-indigo-400: #5c6bc0;\n  --md-indigo-500: #3f51b5;\n  --md-indigo-600: #3949ab;\n  --md-indigo-700: #303f9f;\n  --md-indigo-800: #283593;\n  --md-indigo-900: #1a237e;\n  --md-indigo-A100: #8c9eff;\n  --md-indigo-A200: #536dfe;\n  --md-indigo-A400: #3d5afe;\n  --md-indigo-A700: #304ffe;\n\n  --md-blue-50: #e3f2fd;\n  --md-blue-100: #bbdefb;\n  --md-blue-200: #90caf9;\n  --md-blue-300: #64b5f6;\n  --md-blue-400: #42a5f5;\n  --md-blue-500: #2196f3;\n  --md-blue-600: #1e88e5;\n  --md-blue-700: #1976d2;\n  --md-blue-800: #1565c0;\n  --md-blue-900: #0d47a1;\n  --md-blue-A100: #82b1ff;\n  --md-blue-A200: #448aff;\n  --md-blue-A400: #2979ff;\n  --md-blue-A700: #2962ff;\n\n  --md-light-blue-50: #e1f5fe;\n  --md-light-blue-100: #b3e5fc;\n  --md-light-blue-200: #81d4fa;\n  --md-light-blue-300: #4fc3f7;\n  --md-light-blue-400: #29b6f6;\n  --md-light-blue-500: #03a9f4;\n  --md-light-blue-600: #039be5;\n  --md-light-blue-700: #0288d1;\n  --md-light-blue-800: #0277bd;\n  --md-light-blue-900: #01579b;\n  --md-light-blue-A100: #80d8ff;\n  --md-light-blue-A200: #40c4ff;\n  --md-light-blue-A400: #00b0ff;\n  --md-light-blue-A700: #0091ea;\n\n  --md-cyan-50: #e0f7fa;\n  --md-cyan-100: #b2ebf2;\n  --md-cyan-200: #80deea;\n  --md-cyan-300: #4dd0e1;\n  --md-cyan-400: #26c6da;\n  --md-cyan-500: #00bcd4;\n  --md-cyan-600: #00acc1;\n  --md-cyan-700: #0097a7;\n  --md-cyan-800: #00838f;\n  --md-cyan-900: #006064;\n  --md-cyan-A100: #84ffff;\n  --md-cyan-A200: #18ffff;\n  --md-cyan-A400: #00e5ff;\n  --md-cyan-A700: #00b8d4;\n\n  --md-teal-50: #e0f2f1;\n  --md-teal-100: #b2dfdb;\n  --md-teal-200: #80cbc4;\n  --md-teal-300: #4db6ac;\n  --md-teal-400: #26a69a;\n  --md-teal-500: #009688;\n  --md-teal-600: #00897b;\n  --md-teal-700: #00796b;\n  --md-teal-800: #00695c;\n  --md-teal-900: #004d40;\n  --md-teal-A100: #a7ffeb;\n  --md-teal-A200: #64ffda;\n  --md-teal-A400: #1de9b6;\n  --md-teal-A700: #00bfa5;\n\n  --md-green-50: #e8f5e9;\n  --md-green-100: #c8e6c9;\n  --md-green-200: #a5d6a7;\n  --md-green-300: #81c784;\n  --md-green-400: #66bb6a;\n  --md-green-500: #4caf50;\n  --md-green-600: #43a047;\n  --md-green-700: #388e3c;\n  --md-green-800: #2e7d32;\n  --md-green-900: #1b5e20;\n  --md-green-A100: #b9f6ca;\n  --md-green-A200: #69f0ae;\n  --md-green-A400: #00e676;\n  --md-green-A700: #00c853;\n\n  --md-light-green-50: #f1f8e9;\n  --md-light-green-100: #dcedc8;\n  --md-light-green-200: #c5e1a5;\n  --md-light-green-300: #aed581;\n  --md-light-green-400: #9ccc65;\n  --md-light-green-500: #8bc34a;\n  --md-light-green-600: #7cb342;\n  --md-light-green-700: #689f38;\n  --md-light-green-800: #558b2f;\n  --md-light-green-900: #33691e;\n  --md-light-green-A100: #ccff90;\n  --md-light-green-A200: #b2ff59;\n  --md-light-green-A400: #76ff03;\n  --md-light-green-A700: #64dd17;\n\n  --md-lime-50: #f9fbe7;\n  --md-lime-100: #f0f4c3;\n  --md-lime-200: #e6ee9c;\n  --md-lime-300: #dce775;\n  --md-lime-400: #d4e157;\n  --md-lime-500: #cddc39;\n  --md-lime-600: #c0ca33;\n  --md-lime-700: #afb42b;\n  --md-lime-800: #9e9d24;\n  --md-lime-900: #827717;\n  --md-lime-A100: #f4ff81;\n  --md-lime-A200: #eeff41;\n  --md-lime-A400: #c6ff00;\n  --md-lime-A700: #aeea00;\n\n  --md-yellow-50: #fffde7;\n  --md-yellow-100: #fff9c4;\n  --md-yellow-200: #fff59d;\n  --md-yellow-300: #fff176;\n  --md-yellow-400: #ffee58;\n  --md-yellow-500: #ffeb3b;\n  --md-yellow-600: #fdd835;\n  --md-yellow-700: #fbc02d;\n  --md-yellow-800: #f9a825;\n  --md-yellow-900: #f57f17;\n  --md-yellow-A100: #ffff8d;\n  --md-yellow-A200: #ffff00;\n  --md-yellow-A400: #ffea00;\n  --md-yellow-A700: #ffd600;\n\n  --md-amber-50: #fff8e1;\n  --md-amber-100: #ffecb3;\n  --md-amber-200: #ffe082;\n  --md-amber-300: #ffd54f;\n  --md-amber-400: #ffca28;\n  --md-amber-500: #ffc107;\n  --md-amber-600: #ffb300;\n  --md-amber-700: #ffa000;\n  --md-amber-800: #ff8f00;\n  --md-amber-900: #ff6f00;\n  --md-amber-A100: #ffe57f;\n  --md-amber-A200: #ffd740;\n  --md-amber-A400: #ffc400;\n  --md-amber-A700: #ffab00;\n\n  --md-orange-50: #fff3e0;\n  --md-orange-100: #ffe0b2;\n  --md-orange-200: #ffcc80;\n  --md-orange-300: #ffb74d;\n  --md-orange-400: #ffa726;\n  --md-orange-500: #ff9800;\n  --md-orange-600: #fb8c00;\n  --md-orange-700: #f57c00;\n  --md-orange-800: #ef6c00;\n  --md-orange-900: #e65100;\n  --md-orange-A100: #ffd180;\n  --md-orange-A200: #ffab40;\n  --md-orange-A400: #ff9100;\n  --md-orange-A700: #ff6d00;\n\n  --md-deep-orange-50: #fbe9e7;\n  --md-deep-orange-100: #ffccbc;\n  --md-deep-orange-200: #ffab91;\n  --md-deep-orange-300: #ff8a65;\n  --md-deep-orange-400: #ff7043;\n  --md-deep-orange-500: #ff5722;\n  --md-deep-orange-600: #f4511e;\n  --md-deep-orange-700: #e64a19;\n  --md-deep-orange-800: #d84315;\n  --md-deep-orange-900: #bf360c;\n  --md-deep-orange-A100: #ff9e80;\n  --md-deep-orange-A200: #ff6e40;\n  --md-deep-orange-A400: #ff3d00;\n  --md-deep-orange-A700: #dd2c00;\n\n  --md-brown-50: #efebe9;\n  --md-brown-100: #d7ccc8;\n  --md-brown-200: #bcaaa4;\n  --md-brown-300: #a1887f;\n  --md-brown-400: #8d6e63;\n  --md-brown-500: #795548;\n  --md-brown-600: #6d4c41;\n  --md-brown-700: #5d4037;\n  --md-brown-800: #4e342e;\n  --md-brown-900: #3e2723;\n\n  --md-grey-50: #fafafa;\n  --md-grey-100: #f5f5f5;\n  --md-grey-200: #eeeeee;\n  --md-grey-300: #e0e0e0;\n  --md-grey-400: #bdbdbd;\n  --md-grey-500: #9e9e9e;\n  --md-grey-600: #757575;\n  --md-grey-700: #616161;\n  --md-grey-800: #424242;\n  --md-grey-900: #212121;\n\n  --md-blue-grey-50: #eceff1;\n  --md-blue-grey-100: #cfd8dc;\n  --md-blue-grey-200: #b0bec5;\n  --md-blue-grey-300: #90a4ae;\n  --md-blue-grey-400: #78909c;\n  --md-blue-grey-500: #607d8b;\n  --md-blue-grey-600: #546e7a;\n  --md-blue-grey-700: #455a64;\n  --md-blue-grey-800: #37474f;\n  --md-blue-grey-900: #263238;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Spinner {\n  position: absolute;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  z-index: 10;\n  left: 0;\n  top: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-layout-color0);\n  outline: none;\n}\n\n.jp-SpinnerContent {\n  font-size: 10px;\n  margin: 50px auto;\n  text-indent: -9999em;\n  width: 3em;\n  height: 3em;\n  border-radius: 50%;\n  background: var(--jp-brand-color3);\n  background: linear-gradient(\n    to right,\n    #f37626 10%,\n    rgba(255, 255, 255, 0) 42%\n  );\n  position: relative;\n  animation: load3 1s infinite linear, fadeIn 1s;\n}\n\n.jp-SpinnerContent:before {\n  width: 50%;\n  height: 50%;\n  background: #f37626;\n  border-radius: 100% 0 0 0;\n  position: absolute;\n  top: 0;\n  left: 0;\n  content: '';\n}\n\n.jp-SpinnerContent:after {\n  background: var(--jp-layout-color0);\n  width: 75%;\n  height: 75%;\n  border-radius: 50%;\n  content: '';\n  margin: auto;\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n}\n\n@keyframes fadeIn {\n  0% {\n    opacity: 0;\n  }\n  100% {\n    opacity: 1;\n  }\n}\n\n@keyframes load3 {\n  0% {\n    transform: rotate(0deg);\n  }\n  100% {\n    transform: rotate(360deg);\n  }\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\nbutton.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: none;\n  box-sizing: border-box;\n  text-align: center;\n  line-height: 32px;\n  height: 32px;\n  padding: 0px 12px;\n  letter-spacing: 0.8px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput.jp-mod-styled {\n  background: var(--jp-input-background);\n  height: 28px;\n  box-sizing: border-box;\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n  padding-left: 7px;\n  padding-right: 7px;\n  font-size: var(--jp-ui-font-size2);\n  color: var(--jp-ui-font-color0);\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput[type='checkbox'].jp-mod-styled {\n  appearance: checkbox;\n  -webkit-appearance: checkbox;\n  -moz-appearance: checkbox;\n  height: auto;\n}\n\ninput.jp-mod-styled:focus {\n  border: var(--jp-border-width) solid var(--md-blue-500);\n  box-shadow: inset 0 0 4px var(--md-blue-300);\n}\n\n.jp-FileDialog-Checkbox {\n  margin-top: 35px;\n  display: flex;\n  flex-direction: row;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-FileDialog-Checkbox > label {\n  flex: 1 1 auto;\n}\n\n.jp-select-wrapper {\n  display: flex;\n  position: relative;\n  flex-direction: column;\n  padding: 1px;\n  background-color: var(--jp-layout-color1);\n  height: 28px;\n  box-sizing: border-box;\n  margin-bottom: 12px;\n}\n\n.jp-select-wrapper.jp-mod-focused select.jp-mod-styled {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-input-active-background);\n}\n\nselect.jp-mod-styled:hover {\n  background-color: var(--jp-layout-color1);\n  cursor: pointer;\n  color: var(--jp-ui-font-color0);\n  background-color: var(--jp-input-hover-background);\n  box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.5);\n}\n\nselect.jp-mod-styled {\n  flex: 1 1 auto;\n  height: 32px;\n  width: 100%;\n  font-size: var(--jp-ui-font-size2);\n  background: var(--jp-input-background);\n  color: var(--jp-ui-font-color0);\n  padding: 0 25px 0 8px;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-toolbar-height: calc(\n    28px + var(--jp-border-width)\n  ); /* leave 28px for content */\n}\n\n.jp-Toolbar {\n  color: var(--jp-ui-font-color1);\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  border-bottom: var(--jp-border-width) solid var(--jp-toolbar-border-color);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  background: var(--jp-toolbar-background);\n  min-height: var(--jp-toolbar-micro-height);\n  padding: 2px;\n  z-index: 1;\n  overflow-x: auto;\n}\n\n/* Toolbar items */\n\n.jp-Toolbar > .jp-Toolbar-item.jp-Toolbar-spacer {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\n.jp-Toolbar-item.jp-Toolbar-kernelStatus {\n  display: inline-block;\n  width: 32px;\n  background-repeat: no-repeat;\n  background-position: center;\n  background-size: 16px;\n}\n\n.jp-Toolbar > .jp-Toolbar-item {\n  flex: 0 0 auto;\n  display: flex;\n  padding-left: 1px;\n  padding-right: 1px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: var(--jp-private-toolbar-height);\n  height: 100%;\n}\n\n/* Toolbar buttons */\n\n/* This is the div we use to wrap the react component into a Widget */\ndiv.jp-ToolbarButton {\n  color: transparent;\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px;\n  margin: 0px;\n}\n\nbutton.jp-ToolbarButtonComponent {\n  background: var(--jp-layout-color1);\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px 6px;\n  margin: 0px;\n  height: 24px;\n  border-radius: var(--jp-border-radius);\n  display: flex;\n  align-items: center;\n  text-align: center;\n  font-size: 14px;\n  min-width: unset;\n  min-height: unset;\n}\n\nbutton.jp-ToolbarButtonComponent:disabled {\n  opacity: 0.4;\n}\n\nbutton.jp-ToolbarButtonComponent span {\n  padding: 0px;\n  flex: 0 0 auto;\n}\n\nbutton.jp-ToolbarButtonComponent .jp-ToolbarButtonComponent-label {\n  font-size: var(--jp-ui-font-size1);\n  line-height: 100%;\n  padding-left: 2px;\n  color: var(--jp-ui-font-color1);\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar.jp-Toolbar-micro {\n  padding: 0;\n  min-height: 0;\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar {\n  border: none;\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ body.p-mod-override-cursor *, /* </DEPRECATED> */\nbody.lm-mod-override-cursor * {\n  cursor: inherit !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-JSONEditor {\n  display: flex;\n  flex-direction: column;\n  width: 100%;\n}\n\n.jp-JSONEditor-host {\n  flex: 1 1 auto;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  background: var(--jp-layout-color0);\n  min-height: 50px;\n  padding: 1px;\n}\n\n.jp-JSONEditor.jp-mod-error .jp-JSONEditor-host {\n  border-color: red;\n  outline-color: red;\n}\n\n.jp-JSONEditor-header {\n  display: flex;\n  flex: 1 0 auto;\n  padding: 0 0 0 12px;\n}\n\n.jp-JSONEditor-header label {\n  flex: 0 0 auto;\n}\n\n.jp-JSONEditor-commitButton {\n  height: 16px;\n  width: 16px;\n  background-size: 18px;\n  background-repeat: no-repeat;\n  background-position: center;\n}\n\n.jp-JSONEditor-host.jp-mod-focused {\n  background-color: var(--jp-input-active-background);\n  border: 1px solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n.jp-Editor.jp-mod-dropTarget {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n/* BASICS */\n\n.CodeMirror {\n  /* Set height, width, borders, and global font properties here */\n  font-family: monospace;\n  height: 300px;\n  color: black;\n  direction: ltr;\n}\n\n/* PADDING */\n\n.CodeMirror-lines {\n  padding: 4px 0; /* Vertical padding around content */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  padding: 0 4px; /* Horizontal padding of content */\n}\n\n.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  background-color: white; /* The little square between H and V scrollbars */\n}\n\n/* GUTTER */\n\n.CodeMirror-gutters {\n  border-right: 1px solid #ddd;\n  background-color: #f7f7f7;\n  white-space: nowrap;\n}\n.CodeMirror-linenumbers {}\n.CodeMirror-linenumber {\n  padding: 0 3px 0 5px;\n  min-width: 20px;\n  text-align: right;\n  color: #999;\n  white-space: nowrap;\n}\n\n.CodeMirror-guttermarker { color: black; }\n.CodeMirror-guttermarker-subtle { color: #999; }\n\n/* CURSOR */\n\n.CodeMirror-cursor {\n  border-left: 1px solid black;\n  border-right: none;\n  width: 0;\n}\n/* Shown when moving in bi-directional text */\n.CodeMirror div.CodeMirror-secondarycursor {\n  border-left: 1px solid silver;\n}\n.cm-fat-cursor .CodeMirror-cursor {\n  width: auto;\n  border: 0 !important;\n  background: #7e7;\n}\n.cm-fat-cursor div.CodeMirror-cursors {\n  z-index: 1;\n}\n.cm-fat-cursor-mark {\n  background-color: rgba(20, 255, 20, 0.5);\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n}\n.cm-animate-fat-cursor {\n  width: auto;\n  border: 0;\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n  background-color: #7e7;\n}\n@-moz-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@-webkit-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n\n/* Can style cursor different in overwrite (non-insert) mode */\n.CodeMirror-overwrite .CodeMirror-cursor {}\n\n.cm-tab { display: inline-block; text-decoration: inherit; }\n\n.CodeMirror-rulers {\n  position: absolute;\n  left: 0; right: 0; top: -50px; bottom: 0;\n  overflow: hidden;\n}\n.CodeMirror-ruler {\n  border-left: 1px solid #ccc;\n  top: 0; bottom: 0;\n  position: absolute;\n}\n\n/* DEFAULT THEME */\n\n.cm-s-default .cm-header {color: blue;}\n.cm-s-default .cm-quote {color: #090;}\n.cm-negative {color: #d44;}\n.cm-positive {color: #292;}\n.cm-header, .cm-strong {font-weight: bold;}\n.cm-em {font-style: italic;}\n.cm-link {text-decoration: underline;}\n.cm-strikethrough {text-decoration: line-through;}\n\n.cm-s-default .cm-keyword {color: #708;}\n.cm-s-default .cm-atom {color: #219;}\n.cm-s-default .cm-number {color: #164;}\n.cm-s-default .cm-def {color: #00f;}\n.cm-s-default .cm-variable,\n.cm-s-default .cm-punctuation,\n.cm-s-default .cm-property,\n.cm-s-default .cm-operator {}\n.cm-s-default .cm-variable-2 {color: #05a;}\n.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}\n.cm-s-default .cm-comment {color: #a50;}\n.cm-s-default .cm-string {color: #a11;}\n.cm-s-default .cm-string-2 {color: #f50;}\n.cm-s-default .cm-meta {color: #555;}\n.cm-s-default .cm-qualifier {color: #555;}\n.cm-s-default .cm-builtin {color: #30a;}\n.cm-s-default .cm-bracket {color: #997;}\n.cm-s-default .cm-tag {color: #170;}\n.cm-s-default .cm-attribute {color: #00c;}\n.cm-s-default .cm-hr {color: #999;}\n.cm-s-default .cm-link {color: #00c;}\n\n.cm-s-default .cm-error {color: #f00;}\n.cm-invalidchar {color: #f00;}\n\n.CodeMirror-composing { border-bottom: 2px solid; }\n\n/* Default styles for common addons */\n\ndiv.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}\ndiv.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}\n.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }\n.CodeMirror-activeline-background {background: #e8f2ff;}\n\n/* STOP */\n\n/* The rest of this file contains styles related to the mechanics of\n   the editor. You probably shouldn't touch them. */\n\n.CodeMirror {\n  position: relative;\n  overflow: hidden;\n  background: white;\n}\n\n.CodeMirror-scroll {\n  overflow: scroll !important; /* Things will break if this is overridden */\n  /* 50px is the magic margin used to hide the element's real scrollbars */\n  /* See overflow: hidden in .CodeMirror */\n  margin-bottom: -50px; margin-right: -50px;\n  padding-bottom: 50px;\n  height: 100%;\n  outline: none; /* Prevent dragging from highlighting the element */\n  position: relative;\n}\n.CodeMirror-sizer {\n  position: relative;\n  border-right: 50px solid transparent;\n}\n\n/* The fake, visible scrollbars. Used to force redraw during scrolling\n   before actual scrolling happens, thus preventing shaking and\n   flickering artifacts. */\n.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  position: absolute;\n  z-index: 6;\n  display: none;\n  outline: none;\n}\n.CodeMirror-vscrollbar {\n  right: 0; top: 0;\n  overflow-x: hidden;\n  overflow-y: scroll;\n}\n.CodeMirror-hscrollbar {\n  bottom: 0; left: 0;\n  overflow-y: hidden;\n  overflow-x: scroll;\n}\n.CodeMirror-scrollbar-filler {\n  right: 0; bottom: 0;\n}\n.CodeMirror-gutter-filler {\n  left: 0; bottom: 0;\n}\n\n.CodeMirror-gutters {\n  position: absolute; left: 0; top: 0;\n  min-height: 100%;\n  z-index: 3;\n}\n.CodeMirror-gutter {\n  white-space: normal;\n  height: 100%;\n  display: inline-block;\n  vertical-align: top;\n  margin-bottom: -50px;\n}\n.CodeMirror-gutter-wrapper {\n  position: absolute;\n  z-index: 4;\n  background: none !important;\n  border: none !important;\n}\n.CodeMirror-gutter-background {\n  position: absolute;\n  top: 0; bottom: 0;\n  z-index: 4;\n}\n.CodeMirror-gutter-elt {\n  position: absolute;\n  cursor: default;\n  z-index: 4;\n}\n.CodeMirror-gutter-wrapper ::selection { background-color: transparent }\n.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }\n\n.CodeMirror-lines {\n  cursor: text;\n  min-height: 1px; /* prevents collapsing before first draw */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  /* Reset some styles that the rest of the page might have set */\n  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;\n  border-width: 0;\n  background: transparent;\n  font-family: inherit;\n  font-size: inherit;\n  margin: 0;\n  white-space: pre;\n  word-wrap: normal;\n  line-height: inherit;\n  color: inherit;\n  z-index: 2;\n  position: relative;\n  overflow: visible;\n  -webkit-tap-highlight-color: transparent;\n  -webkit-font-variant-ligatures: contextual;\n  font-variant-ligatures: contextual;\n}\n.CodeMirror-wrap pre.CodeMirror-line,\n.CodeMirror-wrap pre.CodeMirror-line-like {\n  word-wrap: break-word;\n  white-space: pre-wrap;\n  word-break: normal;\n}\n\n.CodeMirror-linebackground {\n  position: absolute;\n  left: 0; right: 0; top: 0; bottom: 0;\n  z-index: 0;\n}\n\n.CodeMirror-linewidget {\n  position: relative;\n  z-index: 2;\n  padding: 0.1px; /* Force widget margins to stay inside of the container */\n}\n\n.CodeMirror-widget {}\n\n.CodeMirror-rtl pre { direction: rtl; }\n\n.CodeMirror-code {\n  outline: none;\n}\n\n/* Force content-box sizing for the elements where we expect it */\n.CodeMirror-scroll,\n.CodeMirror-sizer,\n.CodeMirror-gutter,\n.CodeMirror-gutters,\n.CodeMirror-linenumber {\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n}\n\n.CodeMirror-measure {\n  position: absolute;\n  width: 100%;\n  height: 0;\n  overflow: hidden;\n  visibility: hidden;\n}\n\n.CodeMirror-cursor {\n  position: absolute;\n  pointer-events: none;\n}\n.CodeMirror-measure pre { position: static; }\n\ndiv.CodeMirror-cursors {\n  visibility: hidden;\n  position: relative;\n  z-index: 3;\n}\ndiv.CodeMirror-dragcursors {\n  visibility: visible;\n}\n\n.CodeMirror-focused div.CodeMirror-cursors {\n  visibility: visible;\n}\n\n.CodeMirror-selected { background: #d9d9d9; }\n.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }\n.CodeMirror-crosshair { cursor: crosshair; }\n.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }\n.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }\n\n.cm-searching {\n  background-color: #ffa;\n  background-color: rgba(255, 255, 0, .4);\n}\n\n/* Used to force a border model for a node */\n.cm-force-border { padding-right: .1px; }\n\n@media print {\n  /* Hide the cursor when printing */\n  .CodeMirror div.CodeMirror-cursors {\n    visibility: hidden;\n  }\n}\n\n/* See issue #2901 */\n.cm-tab-wrap-hack:after { content: ''; }\n\n/* Help users use markselection to safely style text background */\nspan.CodeMirror-selectedtext { background: none; }\n\n.CodeMirror-dialog {\n  position: absolute;\n  left: 0; right: 0;\n  background: inherit;\n  z-index: 15;\n  padding: .1em .8em;\n  overflow: hidden;\n  color: inherit;\n}\n\n.CodeMirror-dialog-top {\n  border-bottom: 1px solid #eee;\n  top: 0;\n}\n\n.CodeMirror-dialog-bottom {\n  border-top: 1px solid #eee;\n  bottom: 0;\n}\n\n.CodeMirror-dialog input {\n  border: none;\n  outline: none;\n  background: transparent;\n  width: 20em;\n  color: inherit;\n  font-family: monospace;\n}\n\n.CodeMirror-dialog button {\n  font-size: 70%;\n}\n\n.CodeMirror-foldmarker {\n  color: blue;\n  text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;\n  font-family: arial;\n  line-height: .3;\n  cursor: pointer;\n}\n.CodeMirror-foldgutter {\n  width: .7em;\n}\n.CodeMirror-foldgutter-open,\n.CodeMirror-foldgutter-folded {\n  cursor: pointer;\n}\n.CodeMirror-foldgutter-open:after {\n  content: \"\\25BE\";\n}\n.CodeMirror-foldgutter-folded:after {\n  content: \"\\25B8\";\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.CodeMirror {\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  border: 0;\n  border-radius: 0;\n  height: auto;\n  /* Changed to auto to autogrow */\n}\n\n.CodeMirror pre {\n  padding: 0 var(--jp-code-padding);\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-dialog {\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* This causes https://github.com/jupyter/jupyterlab/issues/522 */\n/* May not cause it not because we changed it! */\n.CodeMirror-lines {\n  padding: var(--jp-code-padding) 0;\n}\n\n.CodeMirror-linenumber {\n  padding: 0 8px;\n}\n\n.jp-CodeMirrorEditor {\n  cursor: text;\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n\n/* When zoomed out 67% and 33% on a screen of 1440 width x 900 height */\n@media screen and (min-width: 2138px) and (max-width: 4319px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width1) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n/* When zoomed out less than 33% */\n@media screen and (min-width: 4320px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width2) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n.CodeMirror.jp-mod-readOnly .CodeMirror-cursor {\n  display: none;\n}\n\n.CodeMirror-gutters {\n  border-right: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-layout-color0);\n}\n\n.jp-CollaboratorCursor {\n  border-left: 5px solid transparent;\n  border-right: 5px solid transparent;\n  border-top: none;\n  border-bottom: 3px solid;\n  background-clip: content-box;\n  margin-left: -5px;\n  margin-right: -5px;\n}\n\n.CodeMirror-selectedtext.cm-searching {\n  background-color: var(--jp-search-selected-match-background-color) !important;\n  color: var(--jp-search-selected-match-color) !important;\n}\n\n.cm-searching {\n  background-color: var(\n    --jp-search-unselected-match-background-color\n  ) !important;\n  color: var(--jp-search-unselected-match-color) !important;\n}\n\n.CodeMirror-focused .CodeMirror-selected {\n  background-color: var(--jp-editor-selected-focused-background);\n}\n\n.CodeMirror-selected {\n  background-color: var(--jp-editor-selected-background);\n}\n\n.jp-CollaboratorCursor-hover {\n  position: absolute;\n  z-index: 1;\n  transform: translateX(-50%);\n  color: white;\n  border-radius: 3px;\n  padding-left: 4px;\n  padding-right: 4px;\n  padding-top: 1px;\n  padding-bottom: 1px;\n  text-align: center;\n  font-size: var(--jp-ui-font-size1);\n  white-space: nowrap;\n}\n\n.jp-CodeMirror-ruler {\n  border-left: 1px dashed var(--jp-border-color2);\n}\n\n/**\n * Here is our jupyter theme for CodeMirror syntax highlighting\n * This is used in our marked.js syntax highlighting and CodeMirror itself\n * The string \"jupyter\" is set in ../codemirror/widget.DEFAULT_CODEMIRROR_THEME\n * This came from the classic notebook, which came form highlight.js/GitHub\n */\n\n/**\n * CodeMirror themes are handling the background/color in this way. This works\n * fine for CodeMirror editors outside the notebook, but the notebook styles\n * these things differently.\n */\n.CodeMirror.cm-s-jupyter {\n  background: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* In the notebook, we want this styling to be handled by its container */\n.jp-CodeConsole .CodeMirror.cm-s-jupyter,\n.jp-Notebook .CodeMirror.cm-s-jupyter {\n  background: transparent;\n}\n\n.cm-s-jupyter .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n.cm-s-jupyter span.cm-keyword {\n  color: var(--jp-mirror-editor-keyword-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-atom {\n  color: var(--jp-mirror-editor-atom-color);\n}\n.cm-s-jupyter span.cm-number {\n  color: var(--jp-mirror-editor-number-color);\n}\n.cm-s-jupyter span.cm-def {\n  color: var(--jp-mirror-editor-def-color);\n}\n.cm-s-jupyter span.cm-variable {\n  color: var(--jp-mirror-editor-variable-color);\n}\n.cm-s-jupyter span.cm-variable-2 {\n  color: var(--jp-mirror-editor-variable-2-color);\n}\n.cm-s-jupyter span.cm-variable-3 {\n  color: var(--jp-mirror-editor-variable-3-color);\n}\n.cm-s-jupyter span.cm-punctuation {\n  color: var(--jp-mirror-editor-punctuation-color);\n}\n.cm-s-jupyter span.cm-property {\n  color: var(--jp-mirror-editor-property-color);\n}\n.cm-s-jupyter span.cm-operator {\n  color: var(--jp-mirror-editor-operator-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-comment {\n  color: var(--jp-mirror-editor-comment-color);\n  font-style: italic;\n}\n.cm-s-jupyter span.cm-string {\n  color: var(--jp-mirror-editor-string-color);\n}\n.cm-s-jupyter span.cm-string-2 {\n  color: var(--jp-mirror-editor-string-2-color);\n}\n.cm-s-jupyter span.cm-meta {\n  color: var(--jp-mirror-editor-meta-color);\n}\n.cm-s-jupyter span.cm-qualifier {\n  color: var(--jp-mirror-editor-qualifier-color);\n}\n.cm-s-jupyter span.cm-builtin {\n  color: var(--jp-mirror-editor-builtin-color);\n}\n.cm-s-jupyter span.cm-bracket {\n  color: var(--jp-mirror-editor-bracket-color);\n}\n.cm-s-jupyter span.cm-tag {\n  color: var(--jp-mirror-editor-tag-color);\n}\n.cm-s-jupyter span.cm-attribute {\n  color: var(--jp-mirror-editor-attribute-color);\n}\n.cm-s-jupyter span.cm-header {\n  color: var(--jp-mirror-editor-header-color);\n}\n.cm-s-jupyter span.cm-quote {\n  color: var(--jp-mirror-editor-quote-color);\n}\n.cm-s-jupyter span.cm-link {\n  color: var(--jp-mirror-editor-link-color);\n}\n.cm-s-jupyter span.cm-error {\n  color: var(--jp-mirror-editor-error-color);\n}\n.cm-s-jupyter span.cm-hr {\n  color: #999;\n}\n\n.cm-s-jupyter span.cm-tab {\n  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);\n  background-position: right;\n  background-repeat: no-repeat;\n}\n\n.cm-s-jupyter .CodeMirror-activeline-background,\n.cm-s-jupyter .CodeMirror-gutter {\n  background-color: var(--jp-layout-color2);\n}\n\n/* Styles for shared cursors (remote cursor locations and selected ranges) */\n.jp-CodeMirrorEditor .remote-caret {\n  position: relative;\n  border-left: 2px solid black;\n  margin-left: -1px;\n  margin-right: -1px;\n  box-sizing: border-box;\n}\n\n.jp-CodeMirrorEditor .remote-caret > div {\n  white-space: nowrap;\n  position: absolute;\n  top: -1.15em;\n  padding-bottom: 0.05em;\n  left: -2px;\n  font-size: 0.95em;\n  background-color: rgb(250, 129, 0);\n  font-family: var(--jp-ui-font-family);\n  font-weight: bold;\n  line-height: normal;\n  user-select: none;\n  color: white;\n  padding-left: 2px;\n  padding-right: 2px;\n  z-index: 3;\n  transition: opacity 0.3s ease-in-out;\n}\n\n.jp-CodeMirrorEditor .remote-caret.hide-name > div {\n  transition-delay: 0.7s;\n  opacity: 0;\n}\n\n.jp-CodeMirrorEditor .remote-caret:hover > div {\n  opacity: 1;\n  transition-delay: 0s;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| RenderedText\n|----------------------------------------------------------------------------*/\n\n:root {\n  /* This is the padding value to fill the gaps between lines containing spans with background color. */\n  --jp-private-code-span-padding: calc(\n    (var(--jp-code-line-height) - 1) * var(--jp-code-font-size) / 2\n  );\n}\n\n.jp-RenderedText {\n  text-align: left;\n  padding-left: var(--jp-code-padding);\n  line-height: var(--jp-code-line-height);\n  font-family: var(--jp-code-font-family);\n}\n\n.jp-RenderedText pre,\n.jp-RenderedJavaScript pre,\n.jp-RenderedHTMLCommon pre {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-code-font-size);\n  border: none;\n  margin: 0px;\n  padding: 0px;\n}\n\n.jp-RenderedText pre a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* console foregrounds and backgrounds */\n.jp-RenderedText pre .ansi-black-fg {\n  color: #3e424d;\n}\n.jp-RenderedText pre .ansi-red-fg {\n  color: #e75c58;\n}\n.jp-RenderedText pre .ansi-green-fg {\n  color: #00a250;\n}\n.jp-RenderedText pre .ansi-yellow-fg {\n  color: #ddb62b;\n}\n.jp-RenderedText pre .ansi-blue-fg {\n  color: #208ffb;\n}\n.jp-RenderedText pre .ansi-magenta-fg {\n  color: #d160c4;\n}\n.jp-RenderedText pre .ansi-cyan-fg {\n  color: #60c6c8;\n}\n.jp-RenderedText pre .ansi-white-fg {\n  color: #c5c1b4;\n}\n\n.jp-RenderedText pre .ansi-black-bg {\n  background-color: #3e424d;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-bg {\n  background-color: #e75c58;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-bg {\n  background-color: #00a250;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-bg {\n  background-color: #ddb62b;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-bg {\n  background-color: #208ffb;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-bg {\n  background-color: #d160c4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-bg {\n  background-color: #60c6c8;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-bg {\n  background-color: #c5c1b4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-black-intense-fg {\n  color: #282c36;\n}\n.jp-RenderedText pre .ansi-red-intense-fg {\n  color: #b22b31;\n}\n.jp-RenderedText pre .ansi-green-intense-fg {\n  color: #007427;\n}\n.jp-RenderedText pre .ansi-yellow-intense-fg {\n  color: #b27d12;\n}\n.jp-RenderedText pre .ansi-blue-intense-fg {\n  color: #0065ca;\n}\n.jp-RenderedText pre .ansi-magenta-intense-fg {\n  color: #a03196;\n}\n.jp-RenderedText pre .ansi-cyan-intense-fg {\n  color: #258f8f;\n}\n.jp-RenderedText pre .ansi-white-intense-fg {\n  color: #a1a6b2;\n}\n\n.jp-RenderedText pre .ansi-black-intense-bg {\n  background-color: #282c36;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-intense-bg {\n  background-color: #b22b31;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-intense-bg {\n  background-color: #007427;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-intense-bg {\n  background-color: #b27d12;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-intense-bg {\n  background-color: #0065ca;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-intense-bg {\n  background-color: #a03196;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-intense-bg {\n  background-color: #258f8f;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-intense-bg {\n  background-color: #a1a6b2;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-default-inverse-fg {\n  color: var(--jp-ui-inverse-font-color0);\n}\n.jp-RenderedText pre .ansi-default-inverse-bg {\n  background-color: var(--jp-inverse-layout-color0);\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-bold {\n  font-weight: bold;\n}\n.jp-RenderedText pre .ansi-underline {\n  text-decoration: underline;\n}\n\n.jp-RenderedText[data-mime-type='application/vnd.jupyter.stderr'] {\n  background: var(--jp-rendermime-error-background);\n  padding-top: var(--jp-code-padding);\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedLatex\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedLatex {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n}\n\n/* Left-justify outputs.*/\n.jp-OutputArea-output.jp-RenderedLatex {\n  padding: var(--jp-code-padding);\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedHTML\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedHTMLCommon {\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-content-font-family);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n  /* Give a bit more R padding on Markdown text to keep line lengths reasonable */\n  padding-right: 20px;\n}\n\n.jp-RenderedHTMLCommon em {\n  font-style: italic;\n}\n\n.jp-RenderedHTMLCommon strong {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon u {\n  text-decoration: underline;\n}\n\n.jp-RenderedHTMLCommon a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* Headings */\n\n.jp-RenderedHTMLCommon h1,\n.jp-RenderedHTMLCommon h2,\n.jp-RenderedHTMLCommon h3,\n.jp-RenderedHTMLCommon h4,\n.jp-RenderedHTMLCommon h5,\n.jp-RenderedHTMLCommon h6 {\n  line-height: var(--jp-content-heading-line-height);\n  font-weight: var(--jp-content-heading-font-weight);\n  font-style: normal;\n  margin: var(--jp-content-heading-margin-top) 0\n    var(--jp-content-heading-margin-bottom) 0;\n}\n\n.jp-RenderedHTMLCommon h1:first-child,\n.jp-RenderedHTMLCommon h2:first-child,\n.jp-RenderedHTMLCommon h3:first-child,\n.jp-RenderedHTMLCommon h4:first-child,\n.jp-RenderedHTMLCommon h5:first-child,\n.jp-RenderedHTMLCommon h6:first-child {\n  margin-top: calc(0.5 * var(--jp-content-heading-margin-top));\n}\n\n.jp-RenderedHTMLCommon h1:last-child,\n.jp-RenderedHTMLCommon h2:last-child,\n.jp-RenderedHTMLCommon h3:last-child,\n.jp-RenderedHTMLCommon h4:last-child,\n.jp-RenderedHTMLCommon h5:last-child,\n.jp-RenderedHTMLCommon h6:last-child {\n  margin-bottom: calc(0.5 * var(--jp-content-heading-margin-bottom));\n}\n\n.jp-RenderedHTMLCommon h1 {\n  font-size: var(--jp-content-font-size5);\n}\n\n.jp-RenderedHTMLCommon h2 {\n  font-size: var(--jp-content-font-size4);\n}\n\n.jp-RenderedHTMLCommon h3 {\n  font-size: var(--jp-content-font-size3);\n}\n\n.jp-RenderedHTMLCommon h4 {\n  font-size: var(--jp-content-font-size2);\n}\n\n.jp-RenderedHTMLCommon h5 {\n  font-size: var(--jp-content-font-size1);\n}\n\n.jp-RenderedHTMLCommon h6 {\n  font-size: var(--jp-content-font-size0);\n}\n\n/* Lists */\n\n.jp-RenderedHTMLCommon ul:not(.list-inline),\n.jp-RenderedHTMLCommon ol:not(.list-inline) {\n  padding-left: 2em;\n}\n\n.jp-RenderedHTMLCommon ul {\n  list-style: disc;\n}\n\n.jp-RenderedHTMLCommon ul ul {\n  list-style: square;\n}\n\n.jp-RenderedHTMLCommon ul ul ul {\n  list-style: circle;\n}\n\n.jp-RenderedHTMLCommon ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol ol {\n  list-style: upper-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol {\n  list-style: lower-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol {\n  list-style: lower-roman;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol,\n.jp-RenderedHTMLCommon ul {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon ul ul,\n.jp-RenderedHTMLCommon ul ol,\n.jp-RenderedHTMLCommon ol ul,\n.jp-RenderedHTMLCommon ol ol {\n  margin-bottom: 0em;\n}\n\n.jp-RenderedHTMLCommon hr {\n  color: var(--jp-border-color2);\n  background-color: var(--jp-border-color1);\n  margin-top: 1em;\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon > pre {\n  margin: 1.5em 2em;\n}\n\n.jp-RenderedHTMLCommon pre,\n.jp-RenderedHTMLCommon code {\n  border: 0;\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  line-height: var(--jp-code-line-height);\n  padding: 0;\n  white-space: pre-wrap;\n}\n\n.jp-RenderedHTMLCommon :not(pre) > code {\n  background-color: var(--jp-layout-color2);\n  padding: 1px 5px;\n}\n\n/* Tables */\n\n.jp-RenderedHTMLCommon table {\n  border-collapse: collapse;\n  border-spacing: 0;\n  border: none;\n  color: var(--jp-ui-font-color1);\n  font-size: 12px;\n  table-layout: fixed;\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.jp-RenderedHTMLCommon thead {\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  vertical-align: bottom;\n}\n\n.jp-RenderedHTMLCommon td,\n.jp-RenderedHTMLCommon th,\n.jp-RenderedHTMLCommon tr {\n  vertical-align: middle;\n  padding: 0.5em 0.5em;\n  line-height: normal;\n  white-space: normal;\n  max-width: none;\n  border: none;\n}\n\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon td,\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon th {\n  max-width: none;\n}\n\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon td,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon th,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon tr {\n  text-align: right;\n}\n\n.jp-RenderedHTMLCommon th {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(odd) {\n  background: var(--jp-layout-color0);\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(even) {\n  background: var(--jp-rendermime-table-row-background);\n}\n\n.jp-RenderedHTMLCommon tbody tr:hover {\n  background: var(--jp-rendermime-table-row-hover-background);\n}\n\n.jp-RenderedHTMLCommon table {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon p {\n  text-align: left;\n  margin: 0px;\n}\n\n.jp-RenderedHTMLCommon p {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon img {\n  -moz-force-broken-image-icon: 1;\n}\n\n/* Restrict to direct children as other images could be nested in other content. */\n.jp-RenderedHTMLCommon > img {\n  display: block;\n  margin-left: 0;\n  margin-right: 0;\n  margin-bottom: 1em;\n}\n\n/* Change color behind transparent images if they need it... */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-light-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-dark-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n/* ...or leave it untouched if they don't */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-dark-background {\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-light-background {\n}\n\n.jp-RenderedHTMLCommon img,\n.jp-RenderedImage img,\n.jp-RenderedHTMLCommon svg,\n.jp-RenderedSVG svg {\n  max-width: 100%;\n  height: auto;\n}\n\n.jp-RenderedHTMLCommon img.jp-mod-unconfined,\n.jp-RenderedImage img.jp-mod-unconfined,\n.jp-RenderedHTMLCommon svg.jp-mod-unconfined,\n.jp-RenderedSVG svg.jp-mod-unconfined {\n  max-width: none;\n}\n\n.jp-RenderedHTMLCommon .alert {\n  padding: var(--jp-notebook-padding);\n  border: var(--jp-border-width) solid transparent;\n  border-radius: var(--jp-border-radius);\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon .alert-info {\n  color: var(--jp-info-color0);\n  background-color: var(--jp-info-color3);\n  border-color: var(--jp-info-color2);\n}\n.jp-RenderedHTMLCommon .alert-info hr {\n  border-color: var(--jp-info-color3);\n}\n.jp-RenderedHTMLCommon .alert-info > p:last-child,\n.jp-RenderedHTMLCommon .alert-info > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-warning {\n  color: var(--jp-warn-color0);\n  background-color: var(--jp-warn-color3);\n  border-color: var(--jp-warn-color2);\n}\n.jp-RenderedHTMLCommon .alert-warning hr {\n  border-color: var(--jp-warn-color3);\n}\n.jp-RenderedHTMLCommon .alert-warning > p:last-child,\n.jp-RenderedHTMLCommon .alert-warning > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-success {\n  color: var(--jp-success-color0);\n  background-color: var(--jp-success-color3);\n  border-color: var(--jp-success-color2);\n}\n.jp-RenderedHTMLCommon .alert-success hr {\n  border-color: var(--jp-success-color3);\n}\n.jp-RenderedHTMLCommon .alert-success > p:last-child,\n.jp-RenderedHTMLCommon .alert-success > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-danger {\n  color: var(--jp-error-color0);\n  background-color: var(--jp-error-color3);\n  border-color: var(--jp-error-color2);\n}\n.jp-RenderedHTMLCommon .alert-danger hr {\n  border-color: var(--jp-error-color3);\n}\n.jp-RenderedHTMLCommon .alert-danger > p:last-child,\n.jp-RenderedHTMLCommon .alert-danger > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon blockquote {\n  margin: 1em 2em;\n  padding: 0 1em;\n  border-left: 5px solid var(--jp-border-color2);\n}\n\na.jp-InternalAnchorLink {\n  visibility: hidden;\n  margin-left: 8px;\n  color: var(--md-blue-800);\n}\n\nh1:hover .jp-InternalAnchorLink,\nh2:hover .jp-InternalAnchorLink,\nh3:hover .jp-InternalAnchorLink,\nh4:hover .jp-InternalAnchorLink,\nh5:hover .jp-InternalAnchorLink,\nh6:hover .jp-InternalAnchorLink {\n  visibility: visible;\n}\n\n.jp-RenderedHTMLCommon kbd {\n  background-color: var(--jp-rendermime-table-row-background);\n  border: 1px solid var(--jp-border-color0);\n  border-bottom-color: var(--jp-border-color2);\n  border-radius: 3px;\n  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n  display: inline-block;\n  font-size: 0.8em;\n  line-height: 1em;\n  padding: 0.2em 0.5em;\n}\n\n/* Most direct children of .jp-RenderedHTMLCommon have a margin-bottom of 1.0.\n * At the bottom of cells this is a bit too much as there is also spacing\n * between cells. Going all the way to 0 gets too tight between markdown and\n * code cells.\n */\n.jp-RenderedHTMLCommon > *:last-child {\n  margin-bottom: 0.5em;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MimeDocument {\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-filebrowser-button-height: 28px;\n  --jp-private-filebrowser-button-width: 48px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser {\n  display: flex;\n  flex-direction: column;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  border-bottom: none;\n  height: auto;\n  margin: var(--jp-toolbar-header-margin);\n  box-shadow: none;\n}\n\n.jp-BreadCrumbs {\n  flex: 0 0 auto;\n  margin: 8px 12px 8px 12px;\n}\n\n.jp-BreadCrumbs-item {\n  margin: 0px 2px;\n  padding: 0px 2px;\n  border-radius: var(--jp-border-radius);\n  cursor: pointer;\n}\n\n.jp-BreadCrumbs-item:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-BreadCrumbs-item:first-child {\n  margin-left: 0px;\n}\n\n.jp-BreadCrumbs-item.jp-mod-dropTarget {\n  background-color: var(--jp-brand-color2);\n  opacity: 0.7;\n}\n\n/*-----------------------------------------------------------------------------\n| Buttons\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  padding: 0px;\n  margin: 8px 12px 0px 12px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  justify-content: flex-start;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-Toolbar-item {\n  flex: 0 0 auto;\n  padding-left: 0px;\n  padding-right: 2px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-ToolbarButtonComponent {\n  width: 40px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent {\n  width: 72px;\n  background: var(--jp-brand-color1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent:focus-visible {\n  background-color: var(--jp-brand-color0);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent\n  .jp-icon3 {\n  fill: white;\n}\n\n/*-----------------------------------------------------------------------------\n| Other styles\n|----------------------------------------------------------------------------*/\n\n.jp-FileDialog.jp-mod-conflict input {\n  color: var(--jp-error-color1);\n}\n\n.jp-FileDialog .jp-new-name-title {\n  margin-top: 12px;\n}\n\n.jp-LastModified-hidden {\n  display: none;\n}\n\n.jp-FileBrowser-filterBox {\n  padding: 0px;\n  flex: 0 0 auto;\n  margin: 8px 12px 0px 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| DirListing\n|----------------------------------------------------------------------------*/\n\n.jp-DirListing {\n  flex: 1 1 auto;\n  display: flex;\n  flex-direction: column;\n  outline: 0;\n}\n\n.jp-DirListing:focus-visible {\n  border: 1px solid var(--jp-brand-color1);\n}\n\n.jp-DirListing-header {\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n  border-top: var(--jp-border-width) solid var(--jp-border-color2);\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  z-index: 2;\n}\n\n.jp-DirListing-headerItem {\n  padding: 4px 12px 2px 12px;\n  font-weight: 500;\n}\n\n.jp-DirListing-headerItem:hover {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-headerItem.jp-id-name {\n  flex: 1 0 84px;\n}\n\n.jp-DirListing-headerItem.jp-id-modified {\n  flex: 0 0 112px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n}\n\n.jp-id-narrow {\n  display: none;\n  flex: 0 0 5px;\n  padding: 4px 4px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n  color: var(--jp-border-color2);\n}\n\n.jp-DirListing-narrow .jp-id-narrow {\n  display: block;\n}\n\n.jp-DirListing-narrow .jp-id-modified,\n.jp-DirListing-narrow .jp-DirListing-itemModified {\n  display: none;\n}\n\n.jp-DirListing-headerItem.jp-mod-selected {\n  font-weight: 600;\n}\n\n/* increase specificity to override bundled default */\n.jp-DirListing-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-DirListing-content mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.jp-DirListing-content .jp-DirListing-item.jp-mod-selected mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n/* Style the directory listing content when a user drops a file to upload */\n.jp-DirListing.jp-mod-native-drop .jp-DirListing-content {\n  outline: 5px dashed rgba(128, 128, 128, 0.5);\n  outline-offset: -10px;\n  cursor: copy;\n}\n\n.jp-DirListing-item {\n  display: flex;\n  flex-direction: row;\n  padding: 4px 12px;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n.jp-DirListing-item[data-is-dot] {\n  opacity: 75%;\n}\n\n.jp-DirListing-item.jp-mod-selected {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.jp-DirListing-item.jp-mod-dropTarget {\n  background: var(--jp-brand-color3);\n}\n\n.jp-DirListing-item:hover:not(.jp-mod-selected) {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-itemIcon {\n  flex: 0 0 20px;\n  margin-right: 4px;\n}\n\n.jp-DirListing-itemText {\n  flex: 1 0 64px;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  user-select: none;\n}\n\n.jp-DirListing-itemModified {\n  flex: 0 0 125px;\n  text-align: right;\n}\n\n.jp-DirListing-editor {\n  flex: 1 0 64px;\n  outline: none;\n  border: none;\n}\n\n.jp-DirListing-item.jp-mod-running .jp-DirListing-itemIcon:before {\n  color: var(--jp-success-color1);\n  content: '\\25CF';\n  font-size: 8px;\n  position: absolute;\n  left: -8px;\n}\n\n.jp-DirListing-item.jp-mod-running.jp-mod-selected\n  .jp-DirListing-itemIcon:before {\n  color: var(--jp-ui-inverse-font-color1);\n}\n\n.jp-DirListing-item.lm-mod-drag-image,\n.jp-DirListing-item.jp-mod-selected.lm-mod-drag-image {\n  font-size: var(--jp-ui-font-size1);\n  padding-left: 4px;\n  margin-left: 4px;\n  width: 160px;\n  background-color: var(--jp-ui-inverse-font-color2);\n  box-shadow: var(--jp-elevation-z2);\n  border-radius: 0px;\n  color: var(--jp-ui-font-color1);\n  transform: translateX(-40%) translateY(-58%);\n}\n\n.jp-DirListing-deadSpace {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-Document {\n  min-width: 120px;\n  min-height: 120px;\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n}\n\n/*-----------------------------------------------------------------------------\n| Main OutputArea\n| OutputArea has a list of Outputs\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea {\n  overflow-y: auto;\n}\n\n.jp-OutputArea-child {\n  display: flex;\n  flex-direction: row;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child {\n  flex-direction: column;\n}\n\n.jp-OutputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-outprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n.jp-OutputArea-output {\n  height: auto;\n  overflow: auto;\n  user-select: text;\n  -moz-user-select: text;\n  -webkit-user-select: text;\n  -ms-user-select: text;\n}\n\n.jp-OutputArea-child .jp-OutputArea-output {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  margin-left: var(--jp-notebook-padding);\n}\n\n/**\n * Isolated output.\n */\n.jp-OutputArea-output.jp-mod-isolated {\n  width: 100%;\n  display: block;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n/* pre */\n\n.jp-OutputArea-output pre {\n  border: none;\n  margin: 0px;\n  padding: 0px;\n  overflow-x: auto;\n  overflow-y: auto;\n  word-break: break-all;\n  word-wrap: break-word;\n  white-space: pre-wrap;\n}\n\n/* tables */\n\n.jp-OutputArea-output.jp-RenderedHTMLCommon table {\n  margin-left: 0;\n  margin-right: 0;\n}\n\n/* description lists */\n\n.jp-OutputArea-output dl,\n.jp-OutputArea-output dt,\n.jp-OutputArea-output dd {\n  display: block;\n}\n\n.jp-OutputArea-output dl {\n  width: 100%;\n  overflow: hidden;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dt {\n  font-weight: bold;\n  float: left;\n  width: 20%;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dd {\n  float: left;\n  width: 80%;\n  padding: 0;\n  margin: 0;\n}\n\n/* Hide the gutter in case of\n *  - nested output areas (e.g. in the case of output widgets)\n *  - mirrored output areas\n */\n.jp-OutputArea .jp-OutputArea .jp-OutputArea-prompt {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| executeResult is added to any Output-result for the display of the object\n| returned by a cell\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  margin-left: 0px;\n  flex: 1 1 auto;\n}\n\n/* Text output with the Out[] prompt needs a top padding to match the\n * alignment of the Out[] prompt itself.\n */\n.jp-OutputArea-executeResult .jp-RenderedText.jp-OutputArea-output {\n  padding-top: var(--jp-code-padding);\n  border-top: var(--jp-border-width) solid transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| The Stdin output\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-stdin {\n  line-height: var(--jp-code-line-height);\n  padding-top: var(--jp-code-padding);\n  display: flex;\n}\n\n.jp-Stdin-prompt {\n  color: var(--jp-content-font-color0);\n  padding-right: var(--jp-code-padding);\n  vertical-align: baseline;\n  flex: 0 0 auto;\n}\n\n.jp-Stdin-input {\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  color: inherit;\n  background-color: inherit;\n  width: 42%;\n  min-width: 200px;\n  /* make sure input baseline aligns with prompt */\n  vertical-align: baseline;\n  /* padding + margin = 0.5em between prompt and cursor */\n  padding: 0em 0.25em;\n  margin: 0em 0.25em;\n  flex: 0 0 70%;\n}\n\n.jp-Stdin-input:focus {\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Output Area View\n|----------------------------------------------------------------------------*/\n\n.jp-LinkedOutputView .jp-OutputArea {\n  height: 100%;\n  display: block;\n}\n\n.jp-LinkedOutputView .jp-OutputArea-output:only-child {\n  height: 100%;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapser {\n  flex: 0 0 var(--jp-cell-collapser-width);\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n  border-radius: var(--jp-border-radius);\n  opacity: 1;\n}\n\n.jp-Collapser-child {\n  display: block;\n  width: 100%;\n  box-sizing: border-box;\n  /* height: 100% doesn't work because the height of its parent is computed from content */\n  position: absolute;\n  top: 0px;\n  bottom: 0px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Header/Footer\n|----------------------------------------------------------------------------*/\n\n/* Hidden by zero height by default */\n.jp-CellHeader,\n.jp-CellFooter {\n  height: 0px;\n  width: 100%;\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Input\n|----------------------------------------------------------------------------*/\n\n/* All input areas */\n.jp-InputArea {\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n}\n\nbody[data-format='mobile'] .jp-InputArea {\n  flex-direction: column;\n}\n\n.jp-InputArea-editor {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  /* This is the non-active, default styling */\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  border-radius: 0px;\n  background: var(--jp-cell-editor-background);\n}\n\nbody[data-format='mobile'] .jp-InputArea-editor {\n  margin-left: var(--jp-notebook-padding);\n}\n\n.jp-InputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-inprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  opacity: var(--jp-cell-prompt-opacity);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-InputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Placeholder {\n  display: flex;\n  flex-direction: row;\n  flex: 1 1 auto;\n}\n\n.jp-Placeholder-prompt {\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content {\n  flex: 1 1 auto;\n  border: none;\n  background: transparent;\n  height: 20px;\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon {\n  width: 32px;\n  height: 16px;\n  border: 1px solid transparent;\n  border-radius: var(--jp-border-radius);\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon:hover {\n  border: 1px solid var(--jp-border-color1);\n  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);\n  background-color: var(--jp-layout-color0);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-cell-scrolling-output-offset: 5px;\n}\n\n/*-----------------------------------------------------------------------------\n| Cell\n|----------------------------------------------------------------------------*/\n\n.jp-Cell {\n  padding: var(--jp-cell-padding);\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Common input/output\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-inputWrapper,\n.jp-Cell-outputWrapper {\n  display: flex;\n  flex-direction: row;\n  padding: 0px;\n  margin: 0px;\n  /* Added to reveal the box-shadow on the input and output collapsers. */\n  overflow: visible;\n}\n\n/* Only input/output areas inside cells */\n.jp-Cell-inputArea,\n.jp-Cell-outputArea {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Collapser\n|----------------------------------------------------------------------------*/\n\n/* Make the output collapser disappear when there is not output, but do so\n * in a manner that leaves it in the layout and preserves its width.\n */\n.jp-Cell.jp-mod-noOutputs .jp-Cell-outputCollapser {\n  border: none !important;\n  background: transparent !important;\n}\n\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputCollapser {\n  min-height: var(--jp-cell-collapser-min-height);\n}\n\n/*-----------------------------------------------------------------------------\n| Output\n|----------------------------------------------------------------------------*/\n\n/* Put a space between input and output when there IS output */\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputWrapper {\n  margin-top: 5px;\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-Cell-outputArea {\n  overflow-y: auto;\n  max-height: 200px;\n  box-shadow: inset 0 0 6px 2px rgba(0, 0, 0, 0.3);\n  margin-left: var(--jp-private-cell-scrolling-output-offset);\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  flex: 0 0\n    calc(\n      var(--jp-cell-prompt-width) -\n        var(--jp-private-cell-scrolling-output-offset)\n    );\n}\n\n/*-----------------------------------------------------------------------------\n| CodeCell\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| MarkdownCell\n|----------------------------------------------------------------------------*/\n\n.jp-MarkdownOutput {\n  flex: 1 1 auto;\n  margin-top: 0;\n  margin-bottom: 0;\n  padding-left: var(--jp-code-padding);\n}\n\n.jp-MarkdownOutput.jp-RenderedHTMLCommon {\n  overflow: auto;\n}\n\n.jp-showHiddenCellsButton {\n  margin-left: calc(var(--jp-cell-prompt-width) + 2 * var(--jp-code-padding));\n  margin-top: var(--jp-code-padding);\n  border: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-border-color3) !important;\n  color: var(--jp-content-font-color0) !important;\n}\n\n.jp-showHiddenCellsButton:hover {\n  background-color: var(--jp-border-color2) !important;\n}\n\n.jp-collapseHeadingButton {\n  display: none;\n}\n\n.jp-MarkdownCell:hover .jp-collapseHeadingButton {\n  display: flex;\n  min-height: var(--jp-cell-collapser-min-height);\n  position: absolute;\n  right: 0;\n  top: 0;\n  bottom: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n\n/*-----------------------------------------------------------------------------\n| Styles\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel-toolbar {\n  padding: 2px;\n}\n\n.jp-Toolbar-item.jp-Notebook-toolbarCellType .jp-select-wrapper.jp-mod-focused {\n  border: none;\n  box-shadow: none;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown select {\n  height: 24px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: 14px;\n  border-radius: 0;\n  display: block;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown span {\n  top: 5px !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-notebook-dragImage-width: 304px;\n  --jp-private-notebook-dragImage-height: 36px;\n  --jp-private-notebook-selected-color: var(--md-blue-400);\n  --jp-private-notebook-active-color: var(--md-green-400);\n}\n\n/*-----------------------------------------------------------------------------\n| Imports\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Notebook\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel {\n  display: block;\n  height: 100%;\n}\n\n.jp-NotebookPanel.jp-Document {\n  min-width: 240px;\n  min-height: 120px;\n}\n\n.jp-Notebook {\n  padding: var(--jp-notebook-padding);\n  outline: none;\n  overflow: auto;\n  background: var(--jp-layout-color0);\n}\n\n.jp-Notebook.jp-mod-scrollPastEnd::after {\n  display: block;\n  content: '';\n  min-height: var(--jp-notebook-scroll-padding);\n}\n\n.jp-MainAreaWidget-ContainStrict .jp-Notebook * {\n  contain: strict;\n}\n\n.jp-Notebook-render * {\n  contain: none !important;\n}\n\n.jp-Notebook .jp-Cell {\n  overflow: visible;\n}\n\n.jp-Notebook .jp-Cell .jp-InputPrompt {\n  cursor: move;\n  float: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook state related styling\n|\n| The notebook and cells each have states, here are the possibilities:\n|\n| - Notebook\n|   - Command\n|   - Edit\n| - Cell\n|   - None\n|   - Active (only one can be active)\n|   - Selected (the cells actions are applied to)\n|   - Multiselected (when multiple selected, the cursor)\n|   - No outputs\n|----------------------------------------------------------------------------*/\n\n/* Command or edit modes */\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-InputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-OutputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n/* cell is active */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser {\n  background: var(--jp-brand-color1);\n}\n\n/* cell is dirty */\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt {\n  color: var(--jp-warn-color1);\n}\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt:before {\n  color: var(--jp-warn-color1);\n  content: '•';\n}\n\n.jp-Notebook .jp-Cell.jp-mod-active.jp-mod-dirty .jp-Collapser {\n  background: var(--jp-warn-color1);\n}\n\n/* collapser is hovered */\n.jp-Notebook .jp-Cell .jp-Collapser:hover {\n  box-shadow: var(--jp-elevation-z2);\n  background: var(--jp-brand-color1);\n  opacity: var(--jp-cell-collapser-not-active-hover-opacity);\n}\n\n/* cell is active and collapser is hovered */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser:hover {\n  background: var(--jp-brand-color0);\n  opacity: 1;\n}\n\n/* Command mode */\n\n.jp-Notebook.jp-mod-commandMode .jp-Cell.jp-mod-selected {\n  background: var(--jp-notebook-multiselected-color);\n}\n\n.jp-Notebook.jp-mod-commandMode\n  .jp-Cell.jp-mod-active.jp-mod-selected:not(.jp-mod-multiSelected) {\n  background: transparent;\n}\n\n/* Edit mode */\n\n.jp-Notebook.jp-mod-editMode .jp-Cell.jp-mod-active .jp-InputArea-editor {\n  border: var(--jp-border-width) solid var(--jp-cell-editor-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-cell-editor-active-background);\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook drag and drop\n|----------------------------------------------------------------------------*/\n\n.jp-Notebook-cell.jp-mod-dropSource {\n  opacity: 0.5;\n}\n\n.jp-Notebook-cell.jp-mod-dropTarget,\n.jp-Notebook.jp-mod-commandMode\n  .jp-Notebook-cell.jp-mod-active.jp-mod-selected.jp-mod-dropTarget {\n  border-top-color: var(--jp-private-notebook-selected-color);\n  border-top-style: solid;\n  border-top-width: 2px;\n}\n\n.jp-dragImage {\n  display: block;\n  flex-direction: row;\n  width: var(--jp-private-notebook-dragImage-width);\n  height: var(--jp-private-notebook-dragImage-height);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background);\n  overflow: visible;\n}\n\n.jp-dragImage-singlePrompt {\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n.jp-dragImage .jp-dragImage-content {\n  flex: 1 1 auto;\n  z-index: 2;\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  line-height: var(--jp-code-line-height);\n  padding: var(--jp-code-padding);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background-color);\n  color: var(--jp-content-font-color3);\n  text-align: left;\n  margin: 4px 4px 4px 0px;\n}\n\n.jp-dragImage .jp-dragImage-prompt {\n  flex: 0 0 auto;\n  min-width: 36px;\n  color: var(--jp-cell-inprompt-font-color);\n  padding: var(--jp-code-padding);\n  padding-left: 12px;\n  font-family: var(--jp-cell-prompt-font-family);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: 1.9;\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n}\n\n.jp-dragImage-multipleBack {\n  z-index: -1;\n  position: absolute;\n  height: 32px;\n  width: 300px;\n  top: 8px;\n  left: 8px;\n  background: var(--jp-layout-color2);\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n/*-----------------------------------------------------------------------------\n| Cell toolbar\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookTools {\n  display: block;\n  min-width: var(--jp-sidebar-min-width);\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n    * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  overflow: auto;\n}\n\n.jp-NotebookTools-tool {\n  padding: 0px 12px 0 12px;\n}\n\n.jp-ActiveCellTool {\n  padding: 12px;\n  background-color: var(--jp-layout-color1);\n  border-top: none !important;\n}\n\n.jp-ActiveCellTool .jp-InputArea-prompt {\n  flex: 0 0 auto;\n  padding-left: 0px;\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor {\n  flex: 1 1 auto;\n  background: var(--jp-cell-editor-background);\n  border-color: var(--jp-cell-editor-border-color);\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor .CodeMirror {\n  background: transparent;\n}\n\n.jp-MetadataEditorTool {\n  flex-direction: column;\n  padding: 12px 0px 12px 0px;\n}\n\n.jp-RankedPanel > :not(:first-child) {\n  margin-top: 12px;\n}\n\n.jp-KeySelector select.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n}\n\n.jp-KeySelector label,\n.jp-MetadataEditorTool label {\n  line-height: 1.4;\n}\n\n.jp-NotebookTools .jp-select-wrapper {\n  margin-top: 4px;\n  margin-bottom: 0px;\n}\n\n.jp-NotebookTools .jp-Collapse {\n  margin-top: 16px;\n}\n\n/*-----------------------------------------------------------------------------\n| Presentation Mode (.jp-mod-presentationMode)\n|----------------------------------------------------------------------------*/\n\n.jp-mod-presentationMode .jp-Notebook {\n  --jp-content-font-size1: var(--jp-content-presentation-font-size1);\n  --jp-code-font-size: var(--jp-code-presentation-font-size);\n}\n\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-InputPrompt,\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-OutputPrompt {\n  flex: 0 0 110px;\n}\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-Placeholder {\n  padding-left: 55px;\n}\n\n.jp-Cell-Placeholder-wrapper {\n  background: #fff;\n  border: 1px solid;\n  border-color: #e5e6e9 #dfe0e4 #d0d1d5;\n  border-radius: 4px;\n  -webkit-border-radius: 4px;\n  margin: 10px 15px;\n}\n\n.jp-Cell-Placeholder-wrapper-inner {\n  padding: 15px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body {\n  background-repeat: repeat;\n  background-size: 50% auto;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  background: #f6f7f8;\n  background-image: -webkit-linear-gradient(\n    left,\n    #f6f7f8 0%,\n    #edeef1 20%,\n    #f6f7f8 40%,\n    #f6f7f8 100%\n  );\n  background-repeat: no-repeat;\n  background-size: 800px 104px;\n  height: 104px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  position: absolute;\n  right: 15px;\n  left: 15px;\n  top: 15px;\n}\n\ndiv.jp-Cell-Placeholder-h1 {\n  top: 20px;\n  height: 20px;\n  left: 15px;\n  width: 150px;\n}\n\ndiv.jp-Cell-Placeholder-h2 {\n  left: 15px;\n  top: 50px;\n  height: 10px;\n  width: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-1,\ndiv.jp-Cell-Placeholder-content-2,\ndiv.jp-Cell-Placeholder-content-3 {\n  left: 15px;\n  right: 15px;\n  height: 10px;\n}\n\ndiv.jp-Cell-Placeholder-content-1 {\n  top: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-2 {\n  top: 120px;\n}\n\ndiv.jp-Cell-Placeholder-content-3 {\n  top: 140px;\n}\n\n</style>\n\n    <style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\nThe following CSS variables define the main, public API for styling JupyterLab.\nThese variables should be used by all plugins wherever possible. In other\nwords, plugins should not define custom colors, sizes, etc unless absolutely\nnecessary. This enables users to change the visual theme of JupyterLab\nby changing these variables.\n\nMany variables appear in an ordered sequence (0,1,2,3). These sequences\nare designed to work well together, so for example, `--jp-border-color1` should\nbe used with `--jp-layout-color1`. The numbers have the following meanings:\n\n* 0: super-primary, reserved for special emphasis\n* 1: primary, most important under normal situations\n* 2: secondary, next most important under normal situations\n* 3: tertiary, next most important under normal situations\n\nThroughout JupyterLab, we are mostly following principles from Google's\nMaterial Design when selecting colors. We are not, however, following\nall of MD as it is not optimized for dense, information rich UIs.\n*/\n\n:root {\n  /* Elevation\n   *\n   * We style box-shadows using Material Design's idea of elevation. These particular numbers are taken from here:\n   *\n   * https://github.com/material-components/material-components-web\n   * https://material-components-web.appspot.com/elevation.html\n   */\n\n  --jp-shadow-base-lightness: 0;\n  --jp-shadow-umbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.2\n  );\n  --jp-shadow-penumbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.14\n  );\n  --jp-shadow-ambient-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.12\n  );\n  --jp-elevation-z0: none;\n  --jp-elevation-z1: 0px 2px 1px -1px var(--jp-shadow-umbra-color),\n    0px 1px 1px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 3px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z2: 0px 3px 1px -2px var(--jp-shadow-umbra-color),\n    0px 2px 2px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 5px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z4: 0px 2px 4px -1px var(--jp-shadow-umbra-color),\n    0px 4px 5px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 10px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z6: 0px 3px 5px -1px var(--jp-shadow-umbra-color),\n    0px 6px 10px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 18px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z8: 0px 5px 5px -3px var(--jp-shadow-umbra-color),\n    0px 8px 10px 1px var(--jp-shadow-penumbra-color),\n    0px 3px 14px 2px var(--jp-shadow-ambient-color);\n  --jp-elevation-z12: 0px 7px 8px -4px var(--jp-shadow-umbra-color),\n    0px 12px 17px 2px var(--jp-shadow-penumbra-color),\n    0px 5px 22px 4px var(--jp-shadow-ambient-color);\n  --jp-elevation-z16: 0px 8px 10px -5px var(--jp-shadow-umbra-color),\n    0px 16px 24px 2px var(--jp-shadow-penumbra-color),\n    0px 6px 30px 5px var(--jp-shadow-ambient-color);\n  --jp-elevation-z20: 0px 10px 13px -6px var(--jp-shadow-umbra-color),\n    0px 20px 31px 3px var(--jp-shadow-penumbra-color),\n    0px 8px 38px 7px var(--jp-shadow-ambient-color);\n  --jp-elevation-z24: 0px 11px 15px -7px var(--jp-shadow-umbra-color),\n    0px 24px 38px 3px var(--jp-shadow-penumbra-color),\n    0px 9px 46px 8px var(--jp-shadow-ambient-color);\n\n  /* Borders\n   *\n   * The following variables, specify the visual styling of borders in JupyterLab.\n   */\n\n  --jp-border-width: 1px;\n  --jp-border-color0: var(--md-grey-400);\n  --jp-border-color1: var(--md-grey-400);\n  --jp-border-color2: var(--md-grey-300);\n  --jp-border-color3: var(--md-grey-200);\n  --jp-border-radius: 2px;\n\n  /* UI Fonts\n   *\n   * The UI font CSS variables are used for the typography all of the JupyterLab\n   * user interface elements that are not directly user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-ui-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-ui-font-scale-factor: 1.2;\n  --jp-ui-font-size0: 0.83333em;\n  --jp-ui-font-size1: 13px; /* Base font size */\n  --jp-ui-font-size2: 1.2em;\n  --jp-ui-font-size3: 1.44em;\n\n  --jp-ui-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica,\n    Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';\n\n  /*\n   * Use these font colors against the corresponding main layout colors.\n   * In a light theme, these go from dark to light.\n   */\n\n  /* Defaults use Material Design specification */\n  --jp-ui-font-color0: rgba(0, 0, 0, 1);\n  --jp-ui-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-ui-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-ui-font-color3: rgba(0, 0, 0, 0.38);\n\n  /*\n   * Use these against the brand/accent/warn/error colors.\n   * These will typically go from light to darker, in both a dark and light theme.\n   */\n\n  --jp-ui-inverse-font-color0: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color1: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color2: rgba(255, 255, 255, 0.7);\n  --jp-ui-inverse-font-color3: rgba(255, 255, 255, 0.5);\n\n  /* Content Fonts\n   *\n   * Content font variables are used for typography of user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-content-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-content-line-height: 1.6;\n  --jp-content-font-scale-factor: 1.2;\n  --jp-content-font-size0: 0.83333em;\n  --jp-content-font-size1: 14px; /* Base font size */\n  --jp-content-font-size2: 1.2em;\n  --jp-content-font-size3: 1.44em;\n  --jp-content-font-size4: 1.728em;\n  --jp-content-font-size5: 2.0736em;\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-content-presentation-font-size1: 17px;\n\n  --jp-content-heading-line-height: 1;\n  --jp-content-heading-margin-top: 1.2em;\n  --jp-content-heading-margin-bottom: 0.8em;\n  --jp-content-heading-font-weight: 500;\n\n  /* Defaults use Material Design specification */\n  --jp-content-font-color0: rgba(0, 0, 0, 1);\n  --jp-content-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-content-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-content-font-color3: rgba(0, 0, 0, 0.38);\n\n  --jp-content-link-color: var(--md-blue-700);\n\n  --jp-content-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',\n    Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',\n    'Segoe UI Symbol';\n\n  /*\n   * Code Fonts\n   *\n   * Code font variables are used for typography of code and other monospaces content.\n   */\n\n  --jp-code-font-size: 13px;\n  --jp-code-line-height: 1.3077; /* 17px for 13px base */\n  --jp-code-padding: 5px; /* 5px for 13px base, codemirror highlighting needs integer px value */\n  --jp-code-font-family-default: Menlo, Consolas, 'DejaVu Sans Mono', monospace;\n  --jp-code-font-family: var(--jp-code-font-family-default);\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-code-presentation-font-size: 16px;\n\n  /* may need to tweak cursor width if you change font size */\n  --jp-code-cursor-width0: 1.4px;\n  --jp-code-cursor-width1: 2px;\n  --jp-code-cursor-width2: 4px;\n\n  /* Layout\n   *\n   * The following are the main layout colors use in JupyterLab. In a light\n   * theme these would go from light to dark.\n   */\n\n  --jp-layout-color0: white;\n  --jp-layout-color1: white;\n  --jp-layout-color2: var(--md-grey-200);\n  --jp-layout-color3: var(--md-grey-400);\n  --jp-layout-color4: var(--md-grey-600);\n\n  /* Inverse Layout\n   *\n   * The following are the inverse layout colors use in JupyterLab. In a light\n   * theme these would go from dark to light.\n   */\n\n  --jp-inverse-layout-color0: #111111;\n  --jp-inverse-layout-color1: var(--md-grey-900);\n  --jp-inverse-layout-color2: var(--md-grey-800);\n  --jp-inverse-layout-color3: var(--md-grey-700);\n  --jp-inverse-layout-color4: var(--md-grey-600);\n\n  /* Brand/accent */\n\n  --jp-brand-color0: var(--md-blue-900);\n  --jp-brand-color1: var(--md-blue-700);\n  --jp-brand-color2: var(--md-blue-300);\n  --jp-brand-color3: var(--md-blue-100);\n  --jp-brand-color4: var(--md-blue-50);\n\n  --jp-accent-color0: var(--md-green-900);\n  --jp-accent-color1: var(--md-green-700);\n  --jp-accent-color2: var(--md-green-300);\n  --jp-accent-color3: var(--md-green-100);\n\n  /* State colors (warn, error, success, info) */\n\n  --jp-warn-color0: var(--md-orange-900);\n  --jp-warn-color1: var(--md-orange-700);\n  --jp-warn-color2: var(--md-orange-300);\n  --jp-warn-color3: var(--md-orange-100);\n\n  --jp-error-color0: var(--md-red-900);\n  --jp-error-color1: var(--md-red-700);\n  --jp-error-color2: var(--md-red-300);\n  --jp-error-color3: var(--md-red-100);\n\n  --jp-success-color0: var(--md-green-900);\n  --jp-success-color1: var(--md-green-700);\n  --jp-success-color2: var(--md-green-300);\n  --jp-success-color3: var(--md-green-100);\n\n  --jp-info-color0: var(--md-cyan-900);\n  --jp-info-color1: var(--md-cyan-700);\n  --jp-info-color2: var(--md-cyan-300);\n  --jp-info-color3: var(--md-cyan-100);\n\n  /* Cell specific styles */\n\n  --jp-cell-padding: 5px;\n\n  --jp-cell-collapser-width: 8px;\n  --jp-cell-collapser-min-height: 20px;\n  --jp-cell-collapser-not-active-hover-opacity: 0.6;\n\n  --jp-cell-editor-background: var(--md-grey-100);\n  --jp-cell-editor-border-color: var(--md-grey-300);\n  --jp-cell-editor-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-cell-editor-active-background: var(--jp-layout-color0);\n  --jp-cell-editor-active-border-color: var(--jp-brand-color1);\n\n  --jp-cell-prompt-width: 64px;\n  --jp-cell-prompt-font-family: var(--jp-code-font-family-default);\n  --jp-cell-prompt-letter-spacing: 0px;\n  --jp-cell-prompt-opacity: 1;\n  --jp-cell-prompt-not-active-opacity: 0.5;\n  --jp-cell-prompt-not-active-font-color: var(--md-grey-700);\n  /* A custom blend of MD grey and blue 600\n   * See https://meyerweb.com/eric/tools/color-blend/#546E7A:1E88E5:5:hex */\n  --jp-cell-inprompt-font-color: #307fc1;\n  /* A custom blend of MD grey and orange 600\n   * https://meyerweb.com/eric/tools/color-blend/#546E7A:F4511E:5:hex */\n  --jp-cell-outprompt-font-color: #bf5b3d;\n\n  /* Notebook specific styles */\n\n  --jp-notebook-padding: 10px;\n  --jp-notebook-select-background: var(--jp-layout-color1);\n  --jp-notebook-multiselected-color: var(--md-blue-50);\n\n  /* The scroll padding is calculated to fill enough space at the bottom of the\n  notebook to show one single-line cell (with appropriate padding) at the top\n  when the notebook is scrolled all the way to the bottom. We also subtract one\n  pixel so that no scrollbar appears if we have just one single-line cell in the\n  notebook. This padding is to enable a 'scroll past end' feature in a notebook.\n  */\n  --jp-notebook-scroll-padding: calc(\n    100% - var(--jp-code-font-size) * var(--jp-code-line-height) -\n      var(--jp-code-padding) - var(--jp-cell-padding) - 1px\n  );\n\n  /* Rendermime styles */\n\n  --jp-rendermime-error-background: #fdd;\n  --jp-rendermime-table-row-background: var(--md-grey-100);\n  --jp-rendermime-table-row-hover-background: var(--md-light-blue-50);\n\n  /* Dialog specific styles */\n\n  --jp-dialog-background: rgba(0, 0, 0, 0.25);\n\n  /* Console specific styles */\n\n  --jp-console-padding: 10px;\n\n  /* Toolbar specific styles */\n\n  --jp-toolbar-border-color: var(--jp-border-color1);\n  --jp-toolbar-micro-height: 8px;\n  --jp-toolbar-background: var(--jp-layout-color1);\n  --jp-toolbar-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.24);\n  --jp-toolbar-header-margin: 4px 4px 0px 4px;\n  --jp-toolbar-active-background: var(--md-grey-300);\n\n  /* Statusbar specific styles */\n\n  --jp-statusbar-height: 24px;\n\n  /* Input field styles */\n\n  --jp-input-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-input-active-background: var(--jp-layout-color1);\n  --jp-input-hover-background: var(--jp-layout-color1);\n  --jp-input-background: var(--md-grey-100);\n  --jp-input-border-color: var(--jp-border-color1);\n  --jp-input-active-border-color: var(--jp-brand-color1);\n  --jp-input-active-box-shadow-color: rgba(19, 124, 189, 0.3);\n\n  /* General editor styles */\n\n  --jp-editor-selected-background: #d9d9d9;\n  --jp-editor-selected-focused-background: #d7d4f0;\n  --jp-editor-cursor-color: var(--jp-ui-font-color0);\n\n  /* Code mirror specific styles */\n\n  --jp-mirror-editor-keyword-color: #008000;\n  --jp-mirror-editor-atom-color: #88f;\n  --jp-mirror-editor-number-color: #080;\n  --jp-mirror-editor-def-color: #00f;\n  --jp-mirror-editor-variable-color: var(--md-grey-900);\n  --jp-mirror-editor-variable-2-color: #05a;\n  --jp-mirror-editor-variable-3-color: #085;\n  --jp-mirror-editor-punctuation-color: #05a;\n  --jp-mirror-editor-property-color: #05a;\n  --jp-mirror-editor-operator-color: #aa22ff;\n  --jp-mirror-editor-comment-color: #408080;\n  --jp-mirror-editor-string-color: #ba2121;\n  --jp-mirror-editor-string-2-color: #708;\n  --jp-mirror-editor-meta-color: #aa22ff;\n  --jp-mirror-editor-qualifier-color: #555;\n  --jp-mirror-editor-builtin-color: #008000;\n  --jp-mirror-editor-bracket-color: #997;\n  --jp-mirror-editor-tag-color: #170;\n  --jp-mirror-editor-attribute-color: #00c;\n  --jp-mirror-editor-header-color: blue;\n  --jp-mirror-editor-quote-color: #090;\n  --jp-mirror-editor-link-color: #00c;\n  --jp-mirror-editor-error-color: #f00;\n  --jp-mirror-editor-hr-color: #999;\n\n  /* Vega extension styles */\n\n  --jp-vega-background: white;\n\n  /* Sidebar-related styles */\n\n  --jp-sidebar-min-width: 250px;\n\n  /* Search-related styles */\n\n  --jp-search-toggle-off-opacity: 0.5;\n  --jp-search-toggle-hover-opacity: 0.8;\n  --jp-search-toggle-on-opacity: 1;\n  --jp-search-selected-match-background-color: rgb(245, 200, 0);\n  --jp-search-selected-match-color: black;\n  --jp-search-unselected-match-background-color: var(\n    --jp-inverse-layout-color0\n  );\n  --jp-search-unselected-match-color: var(--jp-ui-inverse-font-color0);\n\n  /* Icon colors that work well with light or dark backgrounds */\n  --jp-icon-contrast-color0: var(--md-purple-600);\n  --jp-icon-contrast-color1: var(--md-green-600);\n  --jp-icon-contrast-color2: var(--md-pink-600);\n  --jp-icon-contrast-color3: var(--md-blue-600);\n}\n</style>\n\n<style type=\"text/css\">\n/* Force rendering true colors when outputing to pdf */\n* {\n  -webkit-print-color-adjust: exact;\n}\n\n/* Misc */\na.anchor-link {\n  display: none;\n}\n\n.highlight  {\n  margin: 0.4em;\n}\n\n/* Input area styling */\n.jp-InputArea {\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  overflow: hidden;\n}\n\n.CodeMirror pre {\n  margin: 0;\n  padding: 0;\n}\n\n/* Using table instead of flexbox so that we can use break-inside property */\n/* CSS rules under this comment should not be required anymore after we move to the JupyterLab 4.0 CSS */\n\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  min-width: calc(\n    var(--jp-cell-prompt-width) - var(--jp-private-cell-scrolling-output-offset)\n  );\n}\n\n.jp-OutputArea-child {\n  display: table;\n  width: 100%;\n}\n\n.jp-OutputPrompt {\n  display: table-cell;\n  vertical-align: top;\n  min-width: var(--jp-cell-prompt-width);\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  display: table-row;\n}\n\n.jp-OutputArea-output {\n  display: table-cell;\n  width: 100%;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  display: table-row;\n}\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  width: 100%;\n}\n\n/* Hiding the collapser by default */\n.jp-Collapser {\n  display: none;\n}\n\n@media print {\n  .jp-Cell-inputWrapper,\n  .jp-Cell-outputWrapper {\n    display: block;\n  }\n\n  .jp-OutputArea-child {\n    break-inside: avoid-page;\n  }\n}\n</style>\n\n<!-- Load mathjax -->\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/latest.js?config=TeX-AMS_CHTML-full,Safe\"> </script>\n    <!-- MathJax configuration -->\n    <script type=\"text/x-mathjax-config\">\n    init_mathjax = function() {\n        if (window.MathJax) {\n        // MathJax loaded\n            MathJax.Hub.Config({\n                TeX: {\n                    equationNumbers: {\n                    autoNumber: \"AMS\",\n                    useLabelIds: true\n                    }\n                },\n                tex2jax: {\n                    inlineMath: [ ['$','$'], [\"\\\\(\",\"\\\\)\"] ],\n                    displayMath: [ ['$$','$$'], [\"\\\\[\",\"\\\\]\"] ],\n                    processEscapes: true,\n                    processEnvironments: true\n                },\n                displayAlign: 'center',\n                CommonHTML: {\n                    linebreaks: {\n                    automatic: true\n                    }\n                }\n            });\n\n            MathJax.Hub.Queue([\"Typeset\", MathJax.Hub]);\n        }\n    }\n    init_mathjax();\n    </script>\n    <!-- End of mathjax configuration --></head>\n<body class=\"jp-Notebook\" data-jp-theme-light=\"true\" data-jp-theme-name=\"JupyterLab Light\">\n<div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[1]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">ImportQualifiedPost</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">FlexibleContexts</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">BlockArguments</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">TupleSections</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">FlexibleContexts</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">OverloadedStrings</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">LambdaCase</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">PackageImports</span><span class=\"w\"></span>\n\n\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Class</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Enumerator</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Weighted</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Sampler.Strict</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Density.Free</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Population</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Sequential.Coroutine</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Inference.SMC</span><span class=\"w\"></span>\n\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Graphics.Vega.VegaLite</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">VL</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">IHaskell.Display.Hvega</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">vlShow</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Applicative</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Data.Text</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">T</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Pipes</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Producer</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">&gt;-&gt;</span><span class=\"p\">))</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Pipes</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">P</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Pipes.Prelude</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">unfoldr</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Pipes.Prelude</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">P</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Ord</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.List</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Arrow</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">first</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Numeric.Log</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Vector</span><span class=\"w\"> </span><span class=\"n\">qualified</span><span class=\"w\"> </span><span class=\"n\">as</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"w\"></span>\n\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"s\">&quot;matrix&quot;</span><span class=\"w\"> </span><span class=\"nn\">Data.Matrix</span><span class=\"w\"> </span><span class=\"k\">hiding</span><span class=\"w\"> </span><span class=\"p\">((</span><span class=\"o\">!</span><span class=\"p\">))</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Vector.Generic</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">VG</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Vector</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">map</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">mapM</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">null</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">sum</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">!</span><span class=\"p\">))</span><span class=\"w\"></span>\n\n<span class=\"kt\">:</span><span class=\"n\">l</span><span class=\"w\"> </span><span class=\"o\">../</span><span class=\"n\">plotting</span><span class=\"o\">.</span><span class=\"n\">hs</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Sequential-Inference\">Sequential Inference<a class=\"anchor-link\" href=\"#Sequential-Inference\">&#182;</a></h1><p>This tutorial discusses particle filters, and sequential Monte Carlo more generally.</p>\n<p>These techniques are relevant when performing inference on models where there is a large series of factor statements, some of which can be performed earlier than others. This situation often arises in time series models where the factor statements are the result of incoming observations, but the technique works for <em>any</em> probabilistic program.</p>\n<p>As a motivating example, consider the following program:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[2]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">ex</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadMeasure</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">Int</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Bool</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">ex</span><span class=\"w\"> </span><span class=\"n\">n</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"n\">n</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">bernoulli</span><span class=\"w\"> </span><span class=\"mf\">0.5</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">condition</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>What distribution does this represent? It is the distribution over all lists of Booleans of length $n$, which for e.g. $n=4$, places all the weight on the sequence <code>[True,True,True,True]</code>. Function <code>condition</code> give a default score of 1 if x else 0 and effectively filters out all <code>False</code> values.</p>\n<p>Function <code>normalForm</code> computes all possible combinations of discrete variable values, here a sequence of $n$ booleans, filters out ones with weight 0 and aggregates weights of equal values.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[3]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">normalForm</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">ex</span><span class=\"w\"> </span><span class=\"mi\">4</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[([True,True,True,True],6.25e-2)]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[4]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">explicit</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">ex</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[([True,True],0.25),([True,False],0.0),([False,True],0.0),([False,False],0.0)]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p><strong>This is inefficient</strong></p>\n<p>However, the naive approach to exactly inferring this distribution will not work. Why? Because it first constructs all $2^n$ possible solutions, and then throws away all but one. This has complexity exponential in $n$ and for e.g. $n=100$, it is hopeless.</p>\n<p>Now if we look at the structure of the program, it's clear that this is unnecessary. Each time a <code>condition</code> statement is made, we should throw away all possibilities with $0$ probability mass. If we do this, the size of the set of possible solutions never explodes.</p>\n<p>We can perform this <em>sequential enumeration</em> with monad-bayes, as follows:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[5]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">enumerate</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">sis</span><span class=\"w\"> </span><span class=\"n\">removeZeros</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">ex</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[([True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True],1.0)]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p><code>sis</code> (Sequential Importance Sampling) is an inference method which performs a step of inference at each <code>factor</code> statement in the program. In the present case, we have used it in conjunction with exact inference, but the idea generalizes naturally to approximate inference methods.</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h2 id=\"Random-walk-example\">Random walk example<a class=\"anchor-link\" href=\"#Random-walk-example\">&#182;</a></h2><p>To motivate sis with approximate inferece methods, let's examine a problem for which exact inference is no longer feasible, a non-linear state space model. Here we will make use of the <a href=\"https://hackage.haskell.org/package/pipes-4.3.16/docs/Pipes-Prelude.html\">pipes</a> library, which offers an elegant way to represent distributions over discrete random walks as infinite streams. See the <code>examples/Streaming</code> notebook for more info.</p>\n<p>A <code>Producer</code> represents a stream of data, and a <code>Pipe</code> maps one stream to another. Both are parametrized by a monad <code>m</code>, which in our case will be <code>MonadDistribution m =&gt; m</code>.</p>\n<p>For example, a 2D random walk with a Gaussian <code>transition</code> kernel can be written as follows:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[6]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- how to move from one latent state to the next </span><span class=\"w\"></span>\n<span class=\"c1\">-- for multivariate normal distribution</span><span class=\"w\"></span>\n<span class=\"nf\">transition</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"nf\">transition</span><span class=\"w\"> </span><span class=\"n\">vector</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">mvNormal</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">+</span><span class=\"mf\">0.5</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">vector</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">identity</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"n\">length</span><span class=\"w\"> </span><span class=\"n\">vector</span><span class=\"p\">))</span><span class=\"w\"></span>\n\n\n<span class=\"c1\">-- For 2D case: a Markovian random walk starting at (0,0),</span><span class=\"w\"></span>\n<span class=\"c1\">-- with `transition` as the kernel</span><span class=\"w\"></span>\n<span class=\"c1\">-- a Producer is an infinite stream of values</span><span class=\"w\"></span>\n<span class=\"nf\">prior</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">Producer</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"n\">r</span><span class=\"w\"></span>\n<span class=\"nf\">prior</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">unfoldr</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"n\">s</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kt\">Right</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">s</span><span class=\"p\">,)</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">transition</span><span class=\"w\"> </span><span class=\"n\">s</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"n\">fromList</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"mi\">0</span><span class=\"p\">])</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>It's straightforward to take the first <code>n</code> steps of this infinite stream, and convert it into a distribution over finite list, from which we can then sample:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[7]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- convert the stream to a list, taking only the first 100 steps</span><span class=\"w\"></span>\n<span class=\"nf\">toList</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Monad</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"kt\">Producer</span><span class=\"w\"> </span><span class=\"n\">a</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"nb\">()</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"n\">a</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">toList</span><span class=\"w\"> </span><span class=\"n\">prod</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">toListM</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">prod</span><span class=\"w\"> </span><span class=\"o\">&gt;-&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">take</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"p\">)</span><span class=\"w\"></span>\n\n<span class=\"nf\">randomWalkPrior</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">toList</span><span class=\"w\"> </span><span class=\"n\">prior</span><span class=\"w\"></span>\n\n<span class=\"nf\">plot</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span>\n<span class=\"w\">        </span><span class=\"p\">(</span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"n\">v</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">v</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.!</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">v</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.!</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">randomWalkPrior</span><span class=\"p\">)</span><span class=\"w\"> </span>\n<span class=\"w\">        </span><span class=\"p\">(</span><span class=\"n\">replicate</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"s\">&quot;Latent&quot;</span><span class=\"p\">)))</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>We can also produce a stream of observations from <code>prior</code>, each a noisy perturbation of the datapoint in question, by using a <code>Pipe</code>:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[8]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">observationModel</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">(`</span><span class=\"n\">mvNormal</span><span class=\"p\">`</span><span class=\"w\"> </span><span class=\"n\">fromLists</span><span class=\"w\"> </span><span class=\"p\">[[</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"mi\">0</span><span class=\"p\">],[</span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"mi\">20</span><span class=\"p\">]])</span><span class=\"w\"></span>\n\n<span class=\"nf\">observations</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"kt\">Pipe</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"nb\">()</span><span class=\"w\"></span>\n<span class=\"nf\">observations</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">mapM</span><span class=\"w\"> </span><span class=\"n\">observationModel</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[9]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">randomWalkObserved</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">toList</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">each</span><span class=\"w\"> </span><span class=\"n\">randomWalkPrior</span><span class=\"w\"> </span><span class=\"o\">&gt;-&gt;</span><span class=\"w\"> </span><span class=\"n\">observations</span><span class=\"w\"></span>\n\n\n<span class=\"nf\">plot</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span>\n<span class=\"w\">        </span><span class=\"p\">(</span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"n\">v</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">v</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.!</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">v</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.!</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">randomWalkPrior</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">randomWalkObserved</span><span class=\"p\">)</span><span class=\"w\"> </span>\n<span class=\"w\">        </span><span class=\"p\">(</span><span class=\"n\">replicate</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"s\">&quot;Prior&quot;</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">replicate</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"s\">&quot;Observed&quot;</span><span class=\"p\">)))</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h2 id=\"Conditioning\">Conditioning<a class=\"anchor-link\" href=\"#Conditioning\">&#182;</a></h2><p>But most interestingly, we can update our prior, based on a stream of incoming observations. <code>conditioning</code> below takes two <code>Producer</code>s, the stream corresponding to the prior (see <code>prior</code> above) and the stream corresponding to the observations (<code>P.each observedVectors</code>, where <code>P.each</code> lifts a list to a stream), and a likelihood, and returns a posterior, also expressed as a stream.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[10]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- take the original random walk as a prior and condition on the observations</span><span class=\"w\"></span>\n<span class=\"c1\">-- to obtain a posterior random walk</span><span class=\"w\"></span>\n<span class=\"nf\">conditioning</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadMeasure</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"kt\">Producer</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"nb\">()</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"kt\">Producer</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"nb\">()</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"p\">((</span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"nb\">()</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"kt\">Producer</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"nb\">()</span><span class=\"w\"></span>\n<span class=\"nf\">conditioning</span><span class=\"w\"> </span><span class=\"n\">prior</span><span class=\"w\"> </span><span class=\"n\">observations</span><span class=\"w\"> </span><span class=\"n\">observationModel</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">prior</span><span class=\"w\"> </span><span class=\"n\">observations</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"o\">&gt;-&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">chain</span><span class=\"w\"> </span><span class=\"n\">observationModel</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"o\">&gt;-&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">map</span><span class=\"w\"> </span><span class=\"n\">fst</span><span class=\"w\"> </span>\n\n\n<span class=\"nf\">posterior</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadMeasure</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">posterior</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">toList</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">conditioning</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"n\">prior</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">each</span><span class=\"w\"> </span><span class=\"n\">randomWalkObserved</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"p\">(</span><span class=\"n\">v</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">v&#39;</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">prediction</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">observationModel</span><span class=\"w\"> </span><span class=\"n\">v</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"kr\">let</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">x&#39;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y&#39;</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">prediction</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.!</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">prediction</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.!</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">v&#39;</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.!</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">v&#39;</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.!</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">factor</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">normalPdf</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"w\"> </span><span class=\"n\">x&#39;</span><span class=\"w\"> </span><span class=\"o\">*</span><span class=\"w\"> </span><span class=\"n\">normalPdf</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"w\"> </span><span class=\"n\">y&#39;</span><span class=\"w\"> </span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h3 id=\"Sequential-Monte-Carlo\">Sequential Monte Carlo<a class=\"anchor-link\" href=\"#Sequential-Monte-Carlo\">&#182;</a></h3>\n</div>\n</div>\n</div>\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>We can then use an inference method of our liking, but in this tutorial, we would like to see how SMC behaves.</p>\n<p>Following <a href=\"https://dl.acm.org/doi/pdf/10.1145/3236778\">Scibor et al</a>:</p>\n<blockquote><p>Within the context of SMC, recall\nthat a sample in a population is called a particle. The algorithm starts by initialising a population\nof size n, then repeatedly runs the program to the next <code>score</code>, resamples the population, runs to\nthe next score and so on.</p>\n</blockquote>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[11]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">particles</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">runPopulation</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"n\">smc</span><span class=\"w\"> </span><span class=\"kt\">SMCConfig</span><span class=\"w\"> </span><span class=\"p\">{</span><span class=\"w\"></span>\n<span class=\"w\">        </span><span class=\"n\">numSteps</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"p\">,</span><span class=\"w\"> </span>\n<span class=\"w\">        </span><span class=\"n\">numParticles</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">1000</span><span class=\"p\">,</span><span class=\"w\"> </span>\n<span class=\"w\">        </span><span class=\"n\">resampler</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">resampleMultinomial</span><span class=\"p\">}</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"n\">posterior</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre></pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>Distribution is generated over whole paths. We may compare realizations of prior and inferred (here 5 paths) with the observed path.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[12]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">inferredVectors</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">fst</span><span class=\"w\"> </span><span class=\"o\">=&lt;&lt;</span><span class=\"w\"> </span><span class=\"n\">particles</span><span class=\"w\"></span>\n\n<span class=\"nf\">plot</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span>\n<span class=\"w\">        </span><span class=\"p\">(</span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"n\">v</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">v</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.!</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">v</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.!</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">randomWalkPrior</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">randomWalkObserved</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">inferredVectors</span><span class=\"p\">)</span><span class=\"w\"> </span>\n<span class=\"w\">        </span><span class=\"p\">(</span><span class=\"n\">replicate</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"s\">&quot;Prior&quot;</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">replicate</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"s\">&quot;Observed&quot;</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">replicate</span><span class=\"w\"> </span><span class=\"mi\">500</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"s\">&quot;Inferred&quot;</span><span class=\"p\">)))</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAhEAAAG/CAYAAADmYIURAAAAAXNSR0IArs4c6QAAIABJREFUeF7sXQd81EX2/27f9EYqCQEChN679A4CYsGGivVULHd2PU+vq+hfvfMsZz3soog0pYMgvfcSCAkJ6b1vtv4/b5bd7Cab7G83u/tLsvPu4wH7ezNv3pv5zXx/M2/ek5hMJhM4cQtwC3ALcAtwC3ALcAu4aAEJBxEuWoyzcwtwC3ALcAtwC3ALMAtwEMEHArcAtwC3ALcAtwC3gFsW4CDCLbPxQtwC3ALcAtwC3ALcAhxE8DHALcAtwC3ALcAtwC3glgU4iHDLbLwQtwC3ALcAtwC3ALcABxF8DHALcAtwC3ALcAtwC7hlAa+BiPvuuw/p6emQy+WsYf/617/Qr18/PPfcczh69Cj0ej1ee+01jBo1yq2G80LcAtwC3ALcAtwC3ALiWsBrIGL8+PH48ccfERMTY9Vwy5YtWLZsGb766ivk5ORg/vz5OHz4sLgW4NK5BbgFuAW4BbgFuAXcsoDXQMSAAQPwySef4NKlS2y3oXv37nj55ZeRmpqKRYsWscYOHz4cmzZtQmRkpFuN54W4BbgFuAW4BbgFuAXEs4DXQMSMGTMYSEhJScHbb7+NDz/8EF9//TXmzJmDuXPnMo2nTZuGDz74AD179sSuXbuwe/duO0tER0dj0qRJ4lmHS+YW4BbgFuAWaJcWoGDMtP5w8q4FvAYibJu9YsUKbN++HeHh4ejfvz9uu+029njkyJFYv349oqKiHGq5dOlS5kMhBtEOCu2eiEFiyRZLLtmYy/btSOP29q29xRzjvK9b39cESGgd27hxI6qqqtCjRw888MAD6Nq1q9PKKyoqUFNTg4SEBOzZswdTpkzB2rVrERQUZP379OnTndbTVhm8AiIMBgP++Mc/4pVXXoFMJmM7EWT4YcOGYfXq1fjoo49QXFzMdiKOHTvWrG04iPDtsOGTjW/tzRcW/7E37+v23dcEGOh4furUqejSpQs2bNjA1rTNmzdj9OjRLSr3hz/8AdXV1aw87biTvyB9PNMu+5UrVxi4CAwM9L2BPCTRKyCC2vbqq68ytBUXF8eM/cMPPyA0NBSLFy9GeXk5AxEEMiZPnsxBRCMLiLWYiyVXzAnWX2XzvvbQDOpCNWLZXCy5HeXd2r9/PwMKzz//PFvXiAoLC9G3b1+2I7Fv3z7ccsstDAxYPpgJKDz55JPIzMzE66+/DpVKhVtvvZXtwltABK2Nd999N95//32MHTuWXTp45513GOC4+eab8be//Y3Joo9vKrt8+XLmV7hgwQIXRp33Wb0GIqjpOp0OWq2WbdvYUl1dHdRqNSQSSYsa8p0I7w8AWwl8svGtvcWcZHlf8772hQU6wjgjYECA4OLFi3Y+Fvfffz8+++wzdlQxZswYdrSxatUq9pEcERGBN954AwsXLmTP6Oie/l1QUGAFEcHBwda/Ez8Blc8//5zx0t/fffdd3HHHHSxMAvkHvvjii5g1axYDLm2JvAoiWqsoBxGttaBr5TvCC++axmZuf9TbH3Xmfe3O29G6Mh1hnNGOwJ///Gfk5+cjNjbWapAnnniCxT8in4cJEyY4BBFPP/00+52O7hsfZ9iCiEOHDuGll17Cww8/DKVSyfwvyHfiiy++YCCCdvA//fTT1nWGl0pzENGMYTvC4Hd1zPijznxhcXWUtJ6fj7PW29CVGri9XbFWU97vv/+eHVesXLkS119/vZXhmmuuQVZWFrKzszFkyBAkJiayI3wCG/Hx8WznQSiI2Lt3Lzu+oN0HOvogSkpKwsyZMxmIoHooOGNbJA4iOIiwWoBPNr5/RcWyuVhy/RW0iak37+vWvdf19fXsViEdw5PPAu0sfPvtt/i///s/vPXWW6AdCQppcObMGRw4cIAdSdDFAguIoGum5D+xZs0aFsbA4hNhuxNBlxEo9AGBENq1+Otf/8r+JEdODiJa0X/8OKMVxnOjKJ9s3DBaK4uIZXOx5Iq5mPqrbN7XrXxJAZw9e5YdNezcuRN03ZN8FJ555hm2Q0C+fT///DPzfyAfQNpR+Mtf/sKOQMiP4Xe/+x0+/vhjdjxB4MARiCBfh8cee4zdXJRKpRg0aBDb+SBnTQ4iWtF/HES0wnhuFOWTjRtGa2URsWwullx/XcjF1Jv3dStfUpvi5ERJOxIU26jxxQACELRrERIS0kRgZWUlu53ojOgyAt3OIEfL9kL8OIMfZ/DjDB5YzKfzFV/UfGpuv3QcFhO0+bZ3xZfGQQQHERxEcBDh05mIgwifmpuDCN+a2++kcRDBQQQHERxE+HTi4yDCp+bmIMK35vY7aRxEcBDBQQQHET6d+DiI8Km5OYjwrbn9ThoHERxEcBDBQYRPJz4OInxqbg4ifGtuv5PGQQQHERxEcBDh04mPgwifmpuDCN+a2++kcRDBQQQHERxE+HTi4yDCp+bmIMK35vY7aRxEcBDBQQQHET6d+DiI8Km5OYjwoLlPXCrE4fN5yC6sZLUmxYRiWGo8BnaP8aAUsERdJSUlLNKlp+ny5cssPweF5vYEcRDBQQQHERxEeGIuEVwHBxGCTeURRm5vj5gRmw9lYO/pKw4rG9MvEdOHd3P47B//+AfLykkJtP7973/jvffeY7k2mkvprdFo0Lt3bxbt8oEHHvBM421qofZQGnLK8WHbrpgY94AQBxEcRHAQwUGExyeqlirki5pPzc13IjxgbtqBWPXb+RZrWjA+1eGOxMsvv4zJkyezXBvfffcdXnjhBbZ4U1Kvo0ePsh0ByrkxfPhwJCcn46effsKf/vQnlvWT0ohTCvJjx46xXQn6j6JaUrmAgACWrKuoqAjdu3dHRkYGxo4dy3YwfvvtNxZVk0JsE1GZjRs3st+2bt3KQAQlD7Ntl6NIm0JMx0EEBxEcRHAQIWSu8BhPWwMRJn09DMe+hrE4DZApIU0cDnmf+R7T11KRWHqLJZf07iiy/7f+uPUIo7mBQUcb98we1OQx2SAyMhKZmZksJwblyCAQQQm3BgwYgLvvvhuUpIvybZw/fx7ffPMNy9hJacaJaPeC8nZQWnACHtOnT8ewYcNYhs8HH3yQpQmn+ubNm4ehQ4di/vz5LK/HiRMnWJpyygx65513ssRhPXr0YEnEqD7K5WHbrsZhvIW+ABxEcBDBQQQHEULnC4/wtbWFRX/wExgydtrpphj1IKTJ17RKX/2ZVTCm/wqTrgbS8GTkRoxF8pAprarTncJtzd7u6OBOGU/q/bfPfxPUhJcXm7/8W6JHH33UCiL69euHnJwcxk67ApSoS61W49Zbb8WuXbswZ84cPPLIIyA+2jl46aWXsHr1avTs2ROFhYUsf8fgwYPx1VdfsUyjr7/+OqqqqnDfffexOidOnIi0tDQGIHJzcxk/1UfHKffff7+zpgp6zkEEBxEcRHAQIWiy8BSTJyd3V9vkSLb256dgqimyq0rWYxrkQ+9ytXorv7HgNHQ7ltqVr5SEI3rhO27X6W7BtmZvd/VwtZwn9fYWiBg3bhxOnTrFVKNMnrT7QCnCLSBixIgRbHfBctRA2UNp98G2HIGILVu2oFOnTmwH4vTp03YOmU8++SQ71khPT2dyCIjQsQkHEa6OKBf5PTkAXRQt2hagP+pMfeOPevubzr+dyEJBaQ2qqyowbmgqenRuyJKo3fAcTJV59iCi1yzIB9/u6qtr5Tdc2Aj90a/tytfW1iLijq8Bucrtet0p6G99bbGRJ/VuzXFG4z6z3YlwBiLoGOKOO+5gRxelpaVs1yIpKalZEEHOm+RD8eqrr7KU5ZS6nHYjOnfuzOY58qG44YYb2A4HBxHuvE0ulPHkAHRBLGMVS7ZYcsXU2V9l+1Nfr96VhuPpBezdooU8MDAQ9107GJ07mVM2G07+AP3ZtXavqWLCM5DGDXD11bXyGzN2QHfwU7vyNbUaRC5eDkgkbtfrTkF/6mtb+3hS79Y4VrYGRNBRBN3QIF+Gc+fOMb8J2p1obieCbnaQ30RYWBi7fUFHJOTI+eabb2LVqlXM94KOQehmyO9+9zt3hlOTMvw4oxkzenIAutpTYskWS66/LuRi6u1Pff3a13ug1RvsQMTUoV1xzYCkhp2D9G0wlV6CSSqHLH4wpAmDXX1t7fk1FdBu/CNM9VXW38vCBiBu5jOtq9eN0v7U194CEVSvu1c83eiyJkUqKyvZMYdUKhVUHYFlmUzGdh4sRACD4kMIrUOQIAAcRHAQYbUAn2yEvjae4xPL5mLJFQM4/fPLXTAYTXYgYvKQrhg/sAFECOlRU105UJ0PKAIgCU92WoT8LIzZB2HS1UIamoBMQxy7iudr8qe+9iaIoLp9FWzK12OkNfI4iOAggoMI7ljZmjnE5bK+XtSWbzuD89kldiDirpkD0TUuTHDbDRc2QX/0Kys/HXXQkYcr5Gu9LW0TS64YgNHbIMKV/vYXXg4iOIjgIIKDCJ/Od75e1Grrddh2JBN5JdWoq6nG+KE9MaRnnEs6a9c8BpOmwq6MYswjkCaNElyPr/XmIOKSKDs/ggdEB2HkIIKDCA4iOIjw6XQm1mLq9pexXoP6lU2d0OSDbocsdZZg24mlt1hy3ba3YIu2zCim3h5SoV1Uw0EEBxEcRHAQ4dPJyluT+4UrpTidWQSNVo/YiCBMHJQMqdT+JoS7sutXPwrUm5MuWUgx5lFIk0YKtp27sgUL4HOZnQW8YW/j5d0wpG+DsfgCkyXt1BOylCmtDkxmaTiFp6ZIkxSRUkw6fvw4evXqxUJrOyMOIviLx0EEBxHO5gmPPvfG5E5HFR+vO2rXzn7donHjhN4uLyzkQGmqLcb5YhMq9IEIClCgr/EE9Ee+sNYljR8ExfinXLIL6d01Ohq1v/0GQ2EBoFJB1a8f1AObhkp2qWInzN6wt9D2dSTZhuPfQn9+vUPV5amzIRt0m8NnjRNwUVCot99+GytXroTRaGRlnnrqKdx0000oLi5mQacOHTok1MRe4Zs2bRr++9//slwfzpJ0cRDBQQQHERxEeGUiaq5SbywslF2RruDZkkwqwYt3jnMJRFCoasOplVhVkIKz1ZGQBEZCEt6FpXy+e3JXmKoLAHkApOGu3eygRpDenQ4dgi7Tvp1hty+CPDHRa33gDXsLbWxHkU07ELr9H7aodnOh0hsn4Prggw9AX/qfffYZu4JJ8RwomNRbb73FcmvMnj0by5cvZ0m3KAGXJWU3laG4EbRDQHxEjpJt7d69m/mCnDlzhl0LHTXK7LdDvFeuXGFlGyf1oucEYChxF4XPptwaBCIoX4ezJF1eBxHUiBUrVmDNmjU4efIkFi1aBEvKUQrnSbG+m6OlS5fiueeeEzpePcrXUQa/K0bxR50tk7sYV+/ElN3R+nrP6SvY0ghEUJ6Al+5yAURc9X2oMijxbmbD7gBtWUMZhLtmDkDXuHBXXil7AJOejrAfVzQpHzh5MgJGCD8WcbUBHa2vhervSb112/5uPcJoTj6NE8WUl5o8pnbYJrqiuWbfvn2IjY218v7www/48ccfWbIsWsTvuusu9OnTB6+88gqOHDnCwlrTWnrbbbcxgEGRLEeOHOkw2RaBBNo9oKiUFPKawmBTPo6//e1viIiIYIGrGif1uv7661l4bdoRITBBOyU7duxgMSWcJenyKojIzs5mcb4pQhZtz1AKUjLU+++/L2gccBAhyEweY/LkS+dqo7hsVy3WOv6OZu+swgosW3/Czii9kqJw65S+gnciTFX50K5/FkX1AfjkSn9rOUlEV0gCwnHL5L6ICgtASUUdVEp5kyuiJp0OEoWi2Y4hm4ev/BGmq1vYFsagqVOhHja8dR1qU9pweS+MuUcAow7SyO64rOov2i2FjjLO6r8XlkdFdXPDkZejDqXji/DwcFDwKFui1N4UDpuSaxGIyMvLY8my7rnnHhamuqCggK2fBAQIBNAzR8m2aIeBIlpaEnI9/vjjLOz1jTfeyHYgtm3bxgBI46Re//znP9lOCB2xEFHCL2oLyXJGXgURpDydBxGqIhBBAILQDSlFoWdnzJjBomo1RxxEOOs+zz7vKC+8q1bxR707os4n0gtxKqMQGq0BcZFBoIBSASq5cBChq4X2p4egN0nwdsZQ6E3m6ICSTj0gUQZjRO94HDzXkGPDkvpZd/kyardthb6oCBKKEjh4MIKmTnP4RRp9+hS0Z8/aPQu7517Io6NdHbYO+Y15x6D77S27Z2XhQxA34wmP1N9cJVsOZyCroBJ0hETgbUy/zoy1o4wzT4EIsklcXBw7aqAvfAutXbsWX375JfvAnjp1KjvuIKKdAcq4STv4BAwodDVl8/zkk0/Yvxsn26KjkwkTJlgTch08eBBvvPEGnn/+ebYWE0hwlNSrb9++rG7KvUFECbv+97//iQsi6NyHiJAUxfkmEEGNfO+993D77bez8x7KKrZu3TrGR2lP6SynMS1cuNCrg59Xzi3ALcAtYLFAQOYGqLO24XRtDPZUJKNC3gmy8C4Y1C0CxzPKoNWbHeEsNGVgHFIPbYe0rMzud/2kyTB16eLQsNITJyApL4NJoYSpW1eY4uI91gEB6WugztllV59RHYmKkc97TEbjivaeK8LJy+V2P0/oF4veiaFekymkYkpARbkiPEGtOc5oLP/ZZ59FXV0d3nnnHbajQCGqyZmSFno6oqA037TzQCGq6UOcjiTId6Jbt24sUycBATreoBscjpJt2Wb1JNnER6BgypQp7PjDUVIvg8HAAAvtdtANkcTERLYei7YTQccY8+bNY+cq1KDHHnuMeXkSorIl2rbZvn07KL2pI+I7EZ4Y/sLr6ChfDcI1NnP6o97+qLPQvjZV58NUUwKogqEPSoRSIYNWZ8Br3+xpMrRmDO2Knuu/afJ74MSJCBg12u53X9icModSBlFbqjYoEXXbJ66+FoL5P1x7FAWl1Xb8g3rE4rprenWYd6s1jpWNDUk5LJ544gns37+fZdckZ8f77ruPHWfQ0T/t1NOHt1arZc6QtEtBH9u0HtIxAzlXUiIucph0lGyrMYigowpykqTxp1AoWPnGSb2mT58O8ougkwHyn6BkX9988w1z4nRGXjnOIBBBRxdEer2eIS7KIkY50Ql5kScqGbJ37944f/68XZIQ2wZzEOGs+zz73BeTXHMt5rI925fOauP2dmYh++eGoiL8a+UhlNXpYVSqoAoMYMk4b57cFzE/fQlTfb1dgaAZM6AebP/R5AubG68cgm7PO3ZtKQvtj7hZz7qmsAvcdLWWrtja0pCesZg3tuOACNLN3SuezZmSvv6rqqqYj4QjsmSctTwjfvKlIH5aRy3kKNmWkO5zlNSrpqYGQUFBQopbebwCImxbQGDBcpxBZzk333wzy4dOf1+yZAkWL17cbIM5iHCpL1vN7ItJjoMIewuIZXOx5JL2QmUbC07BcP4XmGqKIQmMgqznzFZn1xQq27aXtOnpqPpxBT6p7YST2gBQKi+ZWo3RA5OxZMEw1O7Ygbr9+6xFpCEhCFt8N6SBgXad7Y5sd15qw8WtMOYcAgw6SKJScDl4pMe29R21Z/vRTPx2Itvu0Q0TeqN/t2jBfe2Ons7KeMPe3g425Uyntvjc6yDCkdJC05pyEOHbIeONl06oBly2UEt5hq/N29ugQ/2axwBdbYPCMgWU89+FROE8ip6lEEUWNJz8AcbyLEhUwSgK6oOowIHQHDsKk0YDWadOCBw/ocU4DdXr1uL4iUtYrwljAEJnAuRBgUhI7Y5HrzffqtBmZMBQUgypSgVN52RIAwIQEqAUBUQ0HiG+6Ot9Z3JwpagSUokEPRIjMbB7DGuGL2S3xQ8Tz7yl7aMWUUCEUNNwECHUUp7h89cX3h/1bus6G0vSodv61yYDWzH5j5BG20ehbGn0aze+CFNFw1dybXk5UNYbRkmUtZi8UyeE3Xtfs9VU/vA9dp0vxB5tcMNug1oNRWIiXrzzGrZwEhVX1GHlznPIv+of0CU2DDdP6oNAtfnap1g2F0uumDqLLdszM3L7qIWDiGb6yR9fPH/UWezJRiybiyVXqL2NZZnQbX65KYiY+jKkUc7vrlNB09Urm7aV1BYVQVqdDL2km13dkY89DkkzeQJqf/0Vh/acwCZNw20DWWgowpMT8cTChiBRq3el4Xh6gV29Y/snYtowsyyxbC6WXDF1Flt2+1j+PdNKDiI4iLBagE82nnmpXKlFLJuLJdeVyV276U8wlWdZzSkJTYBy1mvCzWvUo37FvXb8tcXFkFR2g0HacP0yzyBHzuT50BhMiA4PxNh+9iGoM7KLsWv1NuzJq0eVSQ6VQoLw6AgsnNIfo/ua4yEQfbruKK4UVrBYERZKTYrCLVcDXoll88/X7UNpnRR05bF7QjhzeKR4DrZEzzLyK2AwGFmMjZBAlXA7t8Apls6ujDNXFK0/fZodhelzclgxeefOzIGWcqB4mijGA0WRbCmWkqdlulMfBxEcRHAQwXNnuDN3uF1G6MJi0lSAnARRW8JyWEi7T2Z/OiKD0Yj8khqWtTM+quHYQXfgYxgzfzMXMRhQW60FKgbDaDQHoSo3yfCFtBtkMeYzfKJ+XaNx40TzkQkFrvrXD/tRUlmH9NwyGI0mSKQSBKrkmHdNT9w62bx41GzdiuW7L+CSXs1ARFlAKGpNMkSEqjG+fxJmj05BTnaWw8iRuivZ0GdehslggDwhAcqePd22beOCu05kY93uMyy4n4VG9UnAzJEN8RPKqzX4YuNJ0J8WIv3JDq0loX3dWjmOyntadu2v21F34IDDpgaMHInASZMdPmucgIuuZ1IwKcqQSTcuKNATBYSy7SOq6O9//zsopgTFiHBGc+fOZWEUrrvuOhbrwZfEQUQz1vb0AHSlU8WSLZZcsg2X7coIaT1vR7J3Zn4FVuw4i1qNjhmmU1ggbp/WD+HBavZvQ8ZOaE/uhebMBdTWR0CtCIckIBDqwYNxvF6FzQWGJgYlXweZVIr0nDJ8veUUMvLK7RbZAJUCMRFBeObW0Th+6DzKDhyEHlJc0CtRZZSh2KSALCgQidGhUCvlGNwjFv3j5U1AhC4jA+RzYUuBk6cgYMQIYZ1cXwUYtEBgg4+HbcHl28/g6LlsuwWK2nTvnIbcII5uV1iicTbXiEt55cgrqYJCJkOPzhGIDHXs7NpRxhntQFT/bA6M2BwFXzvX4Y5E4wRcFICRYkJMmjSJVfXMM88gLCyM5Ymi8NcELgg4FBUVsRwYtBNBoRAoRTiFRRgwYACLv2TLS3EfKOYSxZigJFq+JA4iOIiwWqCjvPCuvkD+qHdH0vm7bWeQll1i7naTCYaKCowKl2ByjwioBgyANDQUZe+9C2NNDYsOaPniC54/HycQhvX705sMmWdn94GkpBCZ5fVYfq4SF/MqUFXbEAuCnCUpRXhyTDh05eUs5DVRkrQe9ZAiw6BCSHIS5ArzjkdUaABmD4psAiJqNm1i2+O2JI+PR9idznM16Pa+C2P21S/jgEgoRtwLadxAu7rI0fPA6ct2IKJ7QgTumN6QG2Ttngs4eiHfrhwBsMdvdAxkGic7I7B137WDEBfZsANkqayjjLOKr7+yHmE0N7/Q0UbYojuaPCYb2CaxoijMtiCCwldT4CnKi0HRJSmOEuWcuuOOO1iiLtpZoAjQDz30EAt1fe2112LBggV2vJSTg44+KFkX/elL4iCCgwgOIvhxhi/nHI/tOtECaqzMwceHJSjShwIyBfS5OTDWadBbrsFsdQWkYWEIv/selLz6CkxaLTQ6HQKjogCpFPTFX9I1FZ/9Ys5TYKHOknosyD/M/qmDBJ/WxyJTGYniKvN2v1QiRYBajqiQAJaQy1hTDX1+g0Nlf3kdTukDoOzeHSwiFcCOWKb2DWsCIujrlr5ybUkWFYXw++5vsU9od0V/0D4KpSSiG5TT7W+0nL1cjM9/OWwHIuaM7oHhqQ2htinGA+1GWEij1SMiWI2pw7qhW3w4IkLMOzoWen/VYRRX2Fy9pVwLA7tg8pBkhwtoR8iQW/L6UkHvSNSzzrNO33TTTSxSJYW3pmBTFBny888/Z2ODfqOolRRMiiI6E4ggfoo6SQAjIyODZfLcsGGDHa+gxnmJiYMIDiI4iOAgwkvTi+NqPfF1qj/8OQzp5rPf7/N6Ir2+EyThKdBdyWW/DVPUYILKHEVR2a0bqrdtB4wGdgYtV6mgSEpCyPXXQ5naG4fT8nD8YiHq6nWIjQzG8PSDCCk210NUYJDjbGI/bCowoKxaA7lchuiwAEwclIxTGeYdCP2VKzBejVo5N6AC65VdWAwKC00Z2hUJQbomIEJz+BDzp7Al9cCBCJo1u8U+0Z9cAcPZNXY8ErkKyhs+blJu58FT0EmDWIwLOqYgZ09bopDedGSTXVjJfD/KqurQuVMI6MiGrq/ePXsgO5ax0Nvf70dVndaujhG9EzB7VNM8FZ7oa3cHpydlexpEUGhqAgm0K0bgICoqCuXl5Sww46lTp5jKFhAxefJkli+DgjRSjCXiJ6dLW153beSJchxENGNFTw5AVztKLNliySX7cNmujpLW8bd3e7NbF0Y9M0JGbSh+KkiBNjAJuqJqhEv1uEFdjjCp2dfBqNEA2nroi4oZiGD5AQYNRMSSRx0asfzD/7IjEbuFfdBgBM2ciWqNFnq9kflbUKhnCvlsIdqRSAiS457JqciWhyA9txzk8BkZEgC9wYiMrBz06p7EdgFswxbXbNkCbdp55vgpT05G0PQZLFhVS0T5MShPhi1JgqKhvPbNJsWE9DXp8tWmkzibXQqtTg+VXIaETsFQyGVoDBC+3XoaF66U2sm5dkwPDOvVNJGYENmtG8nNl/ak7NYcZzRuIe0s2B5nWJ43ByLoGIMyYVPW6wMHDrBjDzrW4CBCwMjhwaYEGMmDLJ586VxtFpftqsVax9+u7a2vR/3KB+wMoDNKUdxtIWr3ZyNWYwMATCZ260Eil8Nk0ENTWQV1UBCCZs5q1nmx6ofvWQRKWwqcPBmgCvWKAAAgAElEQVQBIxpiQliekS/B8YsFqNPqER0ehImDurBrohaiq5Pvrz6Ckopaqz9GSucILJrW4JNg4S0sr8XFK6XQ6Q2IiwpusmNg2x5TfSV0W/8OU3XDMYp80O2Qpc5yC0T89Nt5nLxUiMsFFajXmcEXAaWY8EAM6B6D68enWustKq/Fz/suIqugAnKZFANTYjB3jOMbJe16nNlYsjWOla0FEbm5ucxHIjU1lSXGosSWlNGTgwgBcyAHEQKM5EGWjvLCu2oSf9S7veus2/QnFsralhQTn4NBE4y6vXthKCuFNDgY6mHDULdvHwzFxYy1Lr8ACq0GsvgEKFN6IHDSJMjj4pBTVIW1ey+goroeETID5lacR0FxJfNtkEZGYeT1U9Gzs+PrpS2NN8vtDuKxder8/Y0jERbccHUvr7QaH68172oYTSbWDgIbtGsxtFcclPKG2BNWeUY9jHnHAX09JGGJkIQ7Tj3uqK8v5pTiq82nUVBSBZVSDoVMipAgFYu2WVlrPqoIUivYsQYdxYwbkNRETbruSldqW6L2Ps5sdXP3iqer81Fz/OQ/QUks2xrx44xmeqQjDX6hg84fdSbb+KPe7V1nY9E56I9/x4JRSZSBkHWfAln/GxwOdV1mBmq2bYM+KwuanBwoIyNBzotEFJch7I47seRf61FZ03DOH6CSo65OB9AaedU58t7Zg9iC6gqdzyoBXbNsDCKWLBiOTmENRxa/HruMncfNoCirsBLk3EjAoWtcGDpHh+C+OYMditUXFKB21y4YS4ohUQdAPWgQVIMarm86Gt+0O/LU+1tAOx8W0moNTA4Bh4KyGrazEh6kwsTBybhpYh+LCVxRnfG293HWWGFfBpty2dgiFeAggoMIqwU62gsv9J3yR739UWfaoSjeuKFJUJ9zs2/HB2uO2A2Xmjoti+8gk0mtv3ePD8ff7p0odFgxvrIqDf6z8qAdiKAjgAXjejF/g5SECPY1v+ngJVASq3qtHpcLK80ARyoBXcckemDuELsgWpZGVHy+DAQkbCnsrsVsd8VCjfs6t7gKL322w3psQXwGowmhgUq280AUoJTjtqn9kBjT4FDpkuJXmf1xnLljp/ZchoMIDiI4iOC3M3w6h4m1sGiOHkHR6tV2IEKiUODklBvx8bpjoOsLdJRAmw81Gh1oN4JAhNFgjlKZEBWENx6e5rKtjl0swP4zOcgvKoVSFYDymnr2xU8UGaLG3bMH4WJOGdbsTkNdvR7ZRWYQERygRMLV6Jv3zB7EblYQUWTJDQfScTm3DKYL59FbocF4pfkmCis3c5bdboTF3ntPX2G7HDUaLX49ehlGuq5hQ7TLMmlwMtOfkoc1Do3tsuIdcCfCHRt09DIcRHAQwUEEBxE+nefEAhHGigrkvPsfBCrMCziResgQVA8fi9//ZzPqdXoGJCxEQZTMTobmH4MClPju5evdthXpveFEWZMYC9OGd2P5OjYevAQCHKczihCglCEqLJDthtA1y6dvHc3+TvT99rM4l1XMAmtpL11iv81SV6KPvM7czjlzoO4/wNrO02fT8FtaFU5mFDFHyLAgNS7llkJvNLF/EyllMjy3aEyLzpzuKC5WX1NbxZTtjq3aaxkOIjiI4CCCgwifzl/uTO6nLhWiorYeoYEqdlvAXfp+1U5k5lZBajBiQmo0Rs4Yzap69oOtuFxYDqNRAoVciqggFbJLqtkVTSIJJOzYYXT/RMwc3g3xUSEsUdWuk9nMhyAsUI1pw1v2lyC9fzxgjkdhS2P6dcb04d2tP63bdxHr911EdZ0WKoWMBXK6c0YDKHhz+X62m0Ckz89nkTiHKmowUVUN2lkJv/8B7MuqwKlLRQwYXcguQk290Xp8oVLI0TkqGEYJEKxSIECtwIRBSRjSo+EIxF37Ni7nTl93BNme0qE91MNBBAcRHERwEOH1uYpuP+SWVLGvaqm2AkMGmBNcCaFvtpxi2/0WoiiKtouqkDqI5/01R7Bpf7qdkyA5LM4alYJXvtptV43BZMDxC0V2vMxvIEiJXolmp0w68sgprrKWi48MxhsPT222ObSg/nquCleuHldYGK8d3QPDbCJI/t/yfdY8IBYeaicFtjp6MZ+F+KZdkk7hgcx3wVhejlHhJkzsGgpln75Ir5fh3ZUHUVReB53BwGJUUI4LtUIK6M2xNRLD1Rg9vBcW2FzdbMmOpVUadgW0TqNjeTJG9kkQZHYOIgSZqV0zcRDBQQQHERxEeHUSo1gKlJ/BQnTV8dGbxiIxuoXragYD6g4dQkF+Cf53SQdpSAj7yrZQc46GLSmy+NXVqKjWWoEBXVFUKuXom9wJ9RQOW6W0K34svQCmq44D9AfdaogMVaN7fAS0eiPOXS6GWmU+YrDQkuuGYmz/huuQlNPgh+1nUVRRB4mhDlNG9caG/RnWPBy9kiJx65SGNNIVNfX494qmmSKH9IjF0YtmB0qKKkn/EYCw+Encd+1g5hRJQaM+WHUIx9ILGS8FtSIdTLTrIDFAajIfzcTL9LihdxjGLrrOad/TTZH3fjrEQJOFenfphJsn93FaloMIpyZq9wwcRHAQwUEEBxFenciWrT+BrMKGAFAEIiYN64FZNumoGzfAEvApz6jEd7URLL22oksXlvOC6K4ZA9A1Ptyldi/6x2rQrQu6sWkwmED/syy09CdFaEyIMgMbAjiZueU4mWkOa00gghwO+3SNZv4K1XV6pOeWsNDQFqIv/kEpMRjbP5GFxCZ65oNtyCs171ZQtMywYDVG9ekMCtgUHqzC5CFd0TOxIf4E+WAs/WZPE716JUYizSZKZFWtFjqDkQWBomeW9OdfbT6FnccvI7+0pqEOchaVAJESyjMKSGHCDQHlGKmsQeRTT0N3IQ31Fy4AOh3k8QkIGDPGTv6ZzGKWJbUxUQZTW/0ddQYHES4N0XbJzEEEBxEcRHAQ4dXJq3HCJgIRowd0xYJxDVEQbRtgrK5G2fvvsZ/qjFL8tzaa/Z2uLUqDgtjfn1g4EiGBDcGahCjwyFvrkVNSzRZUWoAJFBCQoIRaRGGBKrx41zVsR6JLrPkmxLo9abiYU47KunoY9OaQ2QwQGGknogQKhfnfBE7ouINuXdCNjqToMNwxox9e/boBEBj0emh0RnZtMyzI3HbyeXj6Fkr33HCVdN3eCziS1pBVk3wvBqbEsmugROQrQbKojpcXj7dTnY5CKAcGpS63JZkE6CutQReFDkPlteguN2ckDbluAapWrzKzGgwg2yuSuyJwyhQoe/RgP59IL8SqXeebmPiJm0chJMB+96YxEwcRQkZm++bhIKKZ/vPHwe+POlP3+6PevtSZ0lFbElWRvQlEzBvXF9c4iIJIz42VlSj77wfWN/OELgAHdEGoi05AWEwkrumfJPhM3vb1PnGxEEu/3Y3aej3zE6B9CKmE/b95QQ1U4u1HpiMmwgxUbIlOAShJ1aVcs28GfflTsMbdp3Kg0epQXadjDpm2X+ZzR/XAuv0XrdXodHp2DEIBpCJCGgJNWY4ibOVRbgqKMUHXTPt1jUZlbT3L03E+u5QFoiKKClXj2tE9MWNEg1MmHTvQUQfdxCB5dGFVLgUSwgLwF6N9tlACZYouyag7sJ8BCF12tjVEuCI5mYX5pnDfBaU1+HCtfRyNTmGBWLJgmNPVz5fjrC0BGKeG6UAMHERwEGG1gL++8P6oty91Lq2sw5o9F1iuBaK4UBl+d/3YFqfRso8+grG8wZmSmIPuvhfqGPOuhLtEeodHxePxdzehssb8NW6h2IhAvLlkOkKv7hJYfiefjm1HMplPADmGjuqTgOk2C/dvxy/jQwpZfTWypaXc5CFdsOmAOQeHVCaB0WBkIKJft2i7MNYPzhuK2MimwKWxjofO5+GbLadhMhqZL4fBYIRGZ8C8MT2R2iWK7WoQ0LmQXQa1WsZ2R/QGE3rEBeDB60YjJP0sNCdOwFhXB3lMDIImTITmzGloDh4EXX/VXw0NLpHL2G6ERKVC5O//wJpx+HweDqXlobZOxxw6KZ6ExR+jpb7w5TjjIMLdt6J15TiI4CCCgwh+nNG6WURgaZ3eyK5JXs7MaJISu3EV+pwc1O7ZDUNJCTvCUA8dClW/pkmrBIpuMsYpOiSltGZf9RIJgtVy3DSpr12iKSpExxavf7sX1HZbsl34q2u1eOjt9XbPKdNnUmwoajV6FJXXMH8IOuqIiwxBcGDDEQA5Q9JOhBCydVAtqaxFSaWGFaNImuRLQXkv6JiD2kxOo+SM+dB1w1BamNusvbVpaaha9RMM5WUwlJgzc0pDQyCPNl+jJZ8J8kdxlziIcNdy7accBxEcRHAQwUGET2csdxaWrYcuo6S6BilxkRjW2/14Bo1ln7lczL7YKWOlrYOjxSDFFbUgn47GdNOkPuxWh4W+3HwCWw5mwnD19kOnUDUiQxuyeRJfXIgUi+aMxJG0PJbkinwaKH02HVkIocz8Cnyx8QRjpb9ryUdDKmGhs7MKqlBZq4Hyqo8G8YQGKPH+k7OdHtfVHzuG2n17UX/2DCRqNeRRZr1ksbEIX3y3kKY1y+NOX7dKoE1hMWV7Sof2UA8HERxEcBDRTkGEMf8kDOnbYKorgzQkDtLUOZA2k8mx8TAXc4JtSXZpdR0igxv8Bajd97+xDiUV5miMRNHhwRjVLwH9kiMwuq/jzJXNTb5C9KZ4COTDQV/3FJb6yIV8doxhSxSnguJV2BJd56R4GFFhQVix4wxb6G0pKlCCRxaOa9W6QFEtKYT2JXKcNJnY0QIF4LqUX4HaOq0diFArZPjk2blOQYSlQbXbt0Nz4jhM9fUMQARNmQpFUtPsna4oIMTertTnCq+Ysl1pZ3vn5SCCgwgOItojiNBUQrvu9zAZKSyzmSSh8VDOWipoThJzgnUk+83l+7D/bA47NpDLZCwF9nO3j8H3v57Bt1saHALJIZLIEq55ZGo8XrhT+MLsTO/LBRX4fIP5a99CFB+C4i1YqEtMKMt30RJtOZyBPaeu2LGkxqlwy8yRgvqnJSad3oAVO86BnC8tlFtcjfIajdUu9Dvl3Xj9oamCQARtoFhUNBkMgo8wLuSUIi27lDmqkrwRve2DUDmzd6uN0UIFYsr2pl5trW4OIjiI4CCiHYIIY+5R6Ha93WT0Kma/znYlnJGYE2xj2ZcLKvGH/2xs0uQ3HpqGjYfSseWQ2TmRzvtpQSeiK5G0rFMkxu//6jgFuCMbWGSbtDVAZS5MciWk4eaYDkQUxpqcKG2JjgxuntyXJb6ipFh9bI4xmrMz+SRQgC1a6GlxpqOS/vFyp74gVB8BmWXrT6KgrBpqlYzdRLl1ckNAKuIhJ8+NB9LZdU66FdKvawx2nryM81lmYBEZosLdswdjaM+4FkHEz3svskiUBEyS48IwZ3RPuxTlLY0j2g35atNJ0A6M9Gr8Dro5M3VYQ/jvtjTOnL0T/Ll7FuAggoMIDiLaJYg4Bt2ut5qMXuWcNyAJjnU6G7SlyX3d/jR8uvZ4kzbfM2cw9HoDvtx08iqIMNIOPgMSCjkFeaJYDxL88NfrrfEbnClOeneV5UO3/0NrYi1pdCoUk54HJDKHIIIW6RcWXeOsaqfPhdr8mQ+2Iq+0ISsnVfz7G0c0+cp3JJBuf5CzKKX1tlBzcg+n5YFAhC2lJkXhlil9nepCDMs2nMCOo5ehIxAhkbBrqz07h+PRG0Y4lS1IQCuZhNq7lWL8vrjXQcQXX3yBFStWYM2aNezlf+6553D06FHo9Xq89tprGDVqVLOdsHTpUsYvBok5AMWSLZZc6l8u28VRrqtD/c9PAvRFfZWkkd2hmPYXQRW1JXv/djIbby3f16Tdj904ElOGJGPJ2xuQV1LFnBYphDMdLVjSVFNmy29dyKxJeiemfQxTZY6dPPnQxZD1mIorRVX47Jdjds/6d4vGDROE5/porgOE2JxAwL1L1zapYsbQbrhr9kBBfduYqTm5G/an48C5XDt2CuBFgbyE0FPvbUFBuU1kTAD9kjvhhTsaAJcQnYXIcodHTNnutLe9lvEqiMjOzsaDDz6IwsJCHDp0CFu2bMGyZcvw1VdfIScnB/Pnz8fhw009ny3G5CDCt8NKzJeOy3a9r42ll2C8tAMmTQUkITGQ9ZwFSWBDCOWWavS5vU0m6HKusCOI7Pp6dEsxR0O00H1Lf0ZpVa313+FBKvzvhfnWf1PiqdKqenyz+SQo7gQRAYlrx/TEPU78E2zlkN6dj70K6O1jRMj6zIN8wELGei6rBGcyzY6VFC2SQljT1dTWkq3NKe5CaVUdgtRKDEiJsUZ+pKShi19dYw3JbZE5Z1QKbp/m3hXX5vp6+9HL+O1Elp1aQoNI0dHOP7/c3WTHhI4zHr5uqLVOn48zG23ElN3asdKeynsVRNxwww34xz/+gbvuuouBiJdffhmpqalYtGgRs9Hw4cOxadMmREY6nvg4iPDtUBLzpeOyO25f6wsKUPXjChZSmajWaET8XYshT0jA6l1pOJ1ZxPwdKq76HCR0CsHv5g1p1iAXr5SgolaHYb2c+340rsS8E/ERTJX2X+DyYYshS2k+A6cnescyxpdvP4PzWSUNgClYjUcWDLOGvv7rF7twIbvhOTG+vHgcyx5qvLwbhtxjgNGA3ZVdkSPvzpwpKZHXkJ6O7dHcu0VHJp+uOwbjVT8TkjNtWDeW+8MZUTrzN77bx4AQxcmg3CJ0VfWRBcPRt2vD1Vd/fa+d2a8jPfcaiPjgA3PY2nvuuQfjxo1jIGLJkiWYM2cO5s6dy55NmzYNxNezZ0+HNuUgwrdDzV9feH/U25c612zYwK4OWojCXkcMH4HjXQdj62Gz06SFBveIxfxrenlt4DOfCGkudAc+ssqQduoJxaQXAKmweA3uNo5kxyYkgW6iNCZy3OzdxZxinIhiU+SXViEkUI0Jg7tgVO8EGLMPQLf3XfZ8a3ESDlTEQRISC0lIPPvtxom9WYjsxtRSXxdX1OFijvl2BaUyT+kcwQJVUehsylDaUm6MNbvTcOxqZlGSSaHAKbuqLflynLmit7t9yMs1tYBXQAQdY8ybNw9vv/02dDodHnvsMXz33XfMN6J///647bbbWEtGjhyJ9evXIyoqCrt27cLu3bubtHDhQvMWIyduAW4B31hAWlsEmaYEJrka+tAGT3t3pcu3bIYk1/7L3xQbi03xg3Exz5zh0kJ0q+Cmsa7FfnCnXVJdDaS1BYBMCX2w8y9vd2Q4KlOt0eObHfbAifimDIxDj/gQlhhs/eFc5JeZj2woY+jkAXFI7BSIwLQVUOWb04Qvyx+KUn0gTHIV9GHm3Bl9EkMxvp9zp9qWdLmQW4VdZwpZO4hS4oIxdZAZpDiizMJqVNXpQTEpiNcTxz6esjX54KWkpHiqOl5PMxbwGoj48ccfmUhyoHznnXfw5ptvIjAwEKtXr8ZHH32E4uJithNx7Ji9E5NtO/lOhG/Hrb9+Nfij3s3pbDj/C/THv7MOPEmnVCinvNiqgVi9cQPqjzfaiRg5EjsiUkE3BGypS2wY7p7lngOhkEaynYiu3bBqdxrSskqY70GPzpG4blwvu3wWQupylcdi83+vOICKRnk7Hpo/lCX+otgSFGOCyBzCmtoXwWyiO/gJjBk72bOPsvujRBsAiUINSbTZ6ZOOd8hHpDG5Mr7/9cMBluzLlm6Z3Jfl5nCHXJHtTv0tlRFTtqd1acv1eQVE2Cqs0Wisxxl0n3jx4sUoLy9nIOKVV17B5MmTm7UPBxG+HTpivnRcdtvo6/pVSwCt/fVC+eiHIesyxu0G6ouKUP3TShjKzempayQSJNy1GFlGFYszYEu0CLrj6yC0cTTOMsul7CqnLY3u29kuG6bQ+lzhs4xxiq/w69FMlvsiSC1nVzctQZp+3neRJbsqLK9lcSmIlHIZc1Ycqk6H/sDH7LetJV1woDwWkqBoSMI6s9/oBgndJHEXRNTr9Fj6zd4m5SlLKNnHHfLX99odW7XXMl4HEY4MU1dXB7VabRcFzhEfBxG+HVb++sL7o94OddZrUL/yd00GnXzQ7ZClzmr1YNTn57NQzVl1ddagS+Tcl5FXzs7hE6ND0DXOPpR0q4U2qoD03nepFhdz7DOEJseGYbEXd0CoGULG2c7jWdhwIB1ZhZXWltM1Vkqy9fztY2G6uBFG5lipw66aVFxR9YFcKkWvLlHNgi8hci3CKNmYJdU4/UbhxhNjQhATHoQeiZSGXdjRDx0l0O2W3CtZggJsebqfhdrbG3L9rU5RQIRQI3MQIdRSnuFzZbLxjMSGWrhsT1u05fqas7d27e9ZLg5bUox9HNLE4R5roCPZeSXVoGRXKqUcPTtHOP3AcNYY2mmgaI50Rt+zcySGXr3JQbKPXtHidEaRXRW9kqJwq8AgS85kN/dcyBivqq3Hv1YcxHmb2xnk8BgSqMRjN4xARIjaZfFC5FoqpSufdPWTAYjKOhYZk8J8W2jWyBQWQbMlIhB08FwuCwymgA43Tx/CkoT5mlzR29dt60jyOIhopjfFHIBiyRZLrthfDf6od3M605m77tD/AJM5JweBBwIRnqTGshuHmo4OD8R9cwbbJZNyRT6FrW58XLFgXCoGpsSw3YB6WSh++PWsXZXXj0/FgO7m9NfeopbGGQE3k6Yc0oBIpJca8fG6o2wRVilk1nwYz942BrQr4So1J7esSsNCfBeU1bB6B/WIZbsZ9O/SSg02HkxHZSPfDbpBQjdJmiMCP8u3nbE+pps4XROi8ZBN7AhX2+8uv5jvtbttbo/lOIjgIMJqATFfOi7bt9NHi/bW18NYnQ+JPACSYM8vrAePn8X20+XszD8mIgB0EYC+eG1p7pie1t0DVy3zxnd7cYUdB5gQYKpFgMyAwcmhuG7eTOuRAu1SUI4KWqi7xIaCjjO8Tc3ZXH/sGxjSNljFy3rPxXcFfXEpt2FHaFTfzpg5wnwLw1VqTi4lGiMb2BI5cJJzK9EXG08iM9/sx2IhSn9OadCbo92nsrH1cEPuEQIR5FD/4p3jrFFGXW2/u/xizinutrk9luMggoMIDiLaYe6M1k42Yk6wt/x5JbSGhuyjMqmU7RLY0uQhXTF+oOtpqOm2xwerjkCj0wP11YDJiHhVDUZH5GH+0Bhkx85uU2f0pqp8aNc/26Q7VXPfxqUKGWo1OkQEq9E5OsTtLnfU13Tr459f7mpS58yRKRh19bjC9qaIhdEZuDuSlo91ey9Y62UxQcJC8NztY91uv7sFxRzj7ra5PZbjIIKDCA4iOIho8haY9FoYs/fBVF8NaUgspJ2HeWR+W7HzHL7aeNKadpoqpQUtNSkSlLfBQs0FTqLne09fYTkuKDEW+Tv0s7mRQMm66Dy+tLwK0JljLYTItbgv6TQGBBcjb9DT6JrqvSukLRnJ0aJmKjwD7a+vNSmmmPISKAiWJ8ihXJMJ//hytzUrqkXO7FEpdom+DpzNAWVZpXwl5Nxp8S1prl0UyfLjdcesN0sIREwf2QtTh3XzhCou1cFBhEvmcpuZgwgOIjiI4CCi0VtggnbjizBVXLH+Lus2AfIR9zd5W2p37ID2QhpMBgMUXbpAN3oCZEoFQoMaAIG1kKYcX2xOw8p9l+1ABMVq6JscbT3vJ98E8lFwRBRDgb6QbYmyTlL2SaJPfz6GnOIqlBQXo7ayjOXq6BlcjseTzfFo8vo9hq79GrJMuj1zulHQ4WJemQPthhea1CY0G6uQZjS3mK7ceQ6nGjmYPnL9cESFBgiptlkeupVBYb3pyqimqhTjR7iX86NVjRB4G6a1Mnh5gIMIDiI4iOAgwu4tMOYchm73v5u8GarrPwQUDQuM5ugR1GzezPhyDUps0ISiOiQCsuho9tV629R+5nwQ9VXYt+ZTZOWXI78+ENtKukAikzUAFKkEK/52EwvApJBJEaimNN+OicJB0y0OW6IYC/QFTWTJTGnS1cFUdJ79NjEyB2MjciFRh+FK/yfa1HEGtU9/8BMYrgaRon/LUiZDPuwej61PLX2R7zl9BYVlNQhQKVjIbLpm60kSczdATNmetGFbr4uDCA4iOIjgIMLuLTBk/mYNamT7QDn3X3ZZQqt/+Rn1p04xlp804cjUqyBRKqFIMvsyWJI5/bpuOX49WdgwzmpDUAs1TJBBrVJi1ohuuHOmsCOGd1ceRGmVOQiThYanxmPOaHNWUK3egHV7LiA9txyoykVPnMfs8DRIQuMh738jMusj2hyIoHabyi/DVFcOSUAEJOGeDfst5mLqr7Lb+sLvyfZxEMFBBAcRHETYvQXGknTotv7V7jdJQDiU896x+802nPVnNZ1QapJBolRBnWQOSETn5+SI9/HH/0NOcUMUTIPBgCGdpbjhHtevjv689wIOp+XbtaO5SI1WJrqCITGn8vbVomaqyoOxMg8SZSCkV8NS+0p24ylNLLnO7H3hSinq6vXs+KQ1jqPNLYhi6u3JRbqt18VBBAcRHERwEAFjVRV0lzOZb4M8NhYo2QdD2kZAVwtJcBzkA29uEnBKe/ECqlauhB4SvFYZh0KjnO1EqALViI0IwvTh3TF5SDI+/Oxr5BWUWscZgYhBXQJx011No2M6mzApEuLmQxkskJRMJkHvLp1cCsnsi4VFf3YtDCd/sKoijU6FYvKLPgMw7QFEfPrLMeQUNSRfo/TjtHPlSfJFX3uyve21Lg4iOIjgIMLPQYShqAgVX38Fk1ZrHQtBM2ZAPXgIYNCyTJfNkfbSJfy2/zx+zqxFIRWXm4MhRYUE4M93j0dkaAA2bt+PvfsPseuWRAQirpsyDMPHjvf5vOmLhaX+p4cY+LIlxeglyNTHiHKU4m2dTbUlMOafZKG4JeHJkHZqSOXuSPaZy8VY0SjYF0UW/eOiazyaBdTbevt88LZRgRxEcBDBQYSfg4janTtRt88+8ZI8Lg5hdy12Om1ptQas3ZeG0xnF0OkN0OgMkELCHPQeu7HhFs6fHaAAACAASURBVMTGPadxOSsbMglY6OYb5kxyWrc3GLy+sOjqUP/Tg02aLh+yCJdlPTsciDCWZ5uPvghsXiX54EWQ9ZrJ/uXI3ofO5+GXfReb2OjpW0a36FTr6njwel+72qAOys9BBAcRHET4OYio2bQRmmPmK5AWkoaGIeKhh5qd9i7nleGvn+1EWY0GJtqAkEjQt0sk5Grz1c6WUnqLObn7Qnb9mscBjX2kR8U1vxfNqdObOhtO/Qj9mdV240QSlgTlzH82CyLSc8vw9WazQ66FggOUoGiYpzKLoDcY0TUuDNeO7slyhrhL3tTb3TZ1xHIcRHAQwUGEn4MIzaGDqNm2ze5NUKSkIPTGm5qd8/7wr/XWkMkEIuigIkgK9OnlOC01OUOu33cRWp0REYESPHGb748ymvsy9vTETtc19YeXAUY9q1qWNAryMY90SJ8I/ZEvYLi4xR5EBEaCbvK0ZG/aiaAdCSLK29EtPhxnLxfb1UNpzclp1l3iIMJdy7lWjoMIDiI4iPBzEEEDoGr1KmjPm+MqkGNl8OzZkMXENjub3PG3H1FTZ5/vIkRixNO3jUbnLnGICgu0liUA8cpXu2E0mn0i6LJEapdILH1wqmuzlQe4fbawGHQwVecDlH8kqFOLC6oH1GqxCm/qTACCgIQtSeMHQTH+Kac6U8rxeq0BYcEqFiqbQmbbEh17UeZSd8mbervbpo5YjoMIDiI4iOAgwry463Tk9QiJ2nm66Xv/uRpl1eaw0haKkenw/tPzIAsPt/v9H1/sAuW0sBBLEa2Q4Ye/3ODzOVXMhUUs2d6Wq9//IehGiqmmEBKZErLOwyEdfDtkSSMF775sOpSBfaftI5HGRgbhwXlD3R4j3tbb7YZ1sIIcRHAQwUEEBxGCpjWKbkjZMaVSKc5dym8Sr2F8uAl3PXQdOtnsQlDFL3+6EyczCuxABHnjr/x788clghrkBpOYC4tYsr0tl4Jkadc+Zt5ikkjNvSJTQnnd+8jIuiLImTSroALLNpyw61FLsDI3upkV8bbe7raro5XjIIKDCA4iOIhwOq9tO5KJXSez7fgSA2XIvpyD7GojAlVyRMVEQiKXY9bIFIy8mgmSCvxv/Ums2X3ODkSEBwdg2Qtzncr1NIOYC4tYsr0t11hwGrodS5t0lXL6X5FRZhIEIqhwbnEVyOlSbzAhoVOwNR+Ku2PA23q7266OVo6DCA4iOIjgIMLpvPbh2iMoKK2x4xvSMw5xkUFYvz/d7vfwYDUet7neSQ+f+3ArLuVVwGAwIkglx/3zhmDioGSncj3NIObCIpZsb8s1FV+Adtvfm4KIWa8ho6gWXUq2wZh3nN3ikcYPhmLkA57uVof1eVtvnyjRDoRwEMFBBAcRHEQ4nar+u/owCsvtAygRiKAreDuPZ9mVl8uk+OMd1zRbp5iTuz/K9oXOus1/hrEsw9rn0pi+UEx6Hnlb30VkyQH78dFnPmQDvH+U5Qu9nb44fsDAQQQHERxEcBDBxgCFvNYcOQJjRTmkwSFQDRgAaVAQe/bFxhMgnwiD0QSVXMYiUd44oTf7ulyzO83uLaKQ1w/Ob94hTszJ3R9l+0RnvQb6SztYfAxJYBRkKVOYf0TRqucRqs21Gx/S2P5QTHzW68urT/T2uhZtXwAHERxEcBDRBkCEqTgNJn09JKGd7TJlemsKcTTBVnz3LfRZDbsK0shIRNz/AEu9TSm407JKUFNPsQ9MDER8+qzZp2H59jM4n1XC/h6gkmPe2F7o3SWK70Q0soBYi5pYckn9wrUvI6wu0x5EdB4OxTWuJ19z9V0QU29X29qe+TmI4CCCgwgxQcSFc0jM/BYmm61g+fB7Ievu3bDQjSdYQ1kZyj/+qMnbEHrLrTilVeE/Kw8xMGElExAXFYR+XaMRFqzGgG7RSI4La3Izw9HrJebk7o+yxdT5yt4fEJ291m4YKEY/DGmXMV5fN8XU2+vKtSEBHERwEMFBhIggIue3L9Epb7PdKJSExEE5+3WvThNNQERxMco/+7SJzJAbb8JpYxALFlWvMzRgCJMJCrkMg3uYA1LRlc2nbh6FAJXCabvFnNz9UbbYOncNrIGxyBzITBbTB5LYfk7HiCcYxNTbE+1vL3VwEMFBBAcRIoKIvG3vI7J4nz2IkKugvOFjl+eQ91cdQnpuBaQSE/omR+OeOYOarcPRBFv27n9grLV3nox4eAnKTXL87v9+gVZ/FUSYTDBJAHKgHNIjzirjrpkD0DXOPtAU34losIBYi5pYcklzf5Xt8svbjgtwEMFBBAcRIoKInN3folPOensQEZYI5cxXXJpW3l15CPvO5tiVmTe6B26Z6virz9Hkrrt0CbX79oKONmQhIVAPGw5VP3P5lz7biRPp+eQOAUjMcYWC1Qr0TjaHdCa6e/ZAdIkJc9puf11YxNJbLLkcRDh9FToEAwcRHERwECEiiKAJPin7B1DAHkYyJeQjH2BJm1yhJ97dhKIK+zDUvTpH4OW7Jzisxp2F5U+f/orM/AoYTYBcKkGPzhHWuilK5ZIFwwQ12R3ZgioWwOSPsv1RZ7EBjICh2GFYOIjgIIKDCJFBRPfu3WGqzAMM5tsZkDn3K2g8bJ94dzOKbB0fAfTsHIE/exBE2Mqsq9fj0PlcVNTUIyRQhaG94hASICxtM1/UfLt+cHv71t7+Jo2DCA4iOIhoAyCitRPPh2uO4LdGYamvH5/KYjk4IkcLy9o9F5B2pQRSiQRDe8Rh4hDvRJTki1pre9u18tzertmLc7tmAa+BiPXr1+O1116DUqlEWFgYvvzyS1y8eBGLFi1CTEwMa+XQoUPx+uvNe6EvXboUzz33nGsaeYjbH188f9RZ7G1PT9r8i/XHkZZbBrlEgn7dY7BwUh/2NtSfPg3txYuAQQ95QmcEjB7dxOFt2Ybj2HLY/j7/XTMHYcbwrh56oxqq8aTOrjauLcs21RQDmgogIJwFbPIUtWWdPaWjUKDsTXn+WrfXQMTMmTOxfPlyhIeH4+GHH8bYsWORkJCAH3/8Ee+//74ge3MQIchMHmPik43HTCm4Im/bXJuWhqpVP7H2aIxS/FIfhuqoeChjw/HAdWOgVMrZsyfe3YKiCvvcGBQD4oVFY5voQlErKWaEQiZlQadcJW/r3FJ72qps/bGvYUjbaG26LHU25INuc9W0Dvnbqs4eUa6FSsTU29u6taX6vQYiLErq9XosXLgQjz76KMrLy7Fjxw5MnDgRgYGBmDFjBmQyWbP24CDCt0NFzJeOy/ZOX9ds3gTN0aOs8r9WxaPEIKegDjAqlYjvFIK3lkxnzx7790aUVWvsGtElJgRzx/SC0WhCfKdgpCRE4OzlEqzefR7aqzEjuidE4I7p/V1qPO9re3OZqvKhXd80DLTy2jchCYp2ybaOmLm9W21CXkELFvAqiPjmm2/w4osvYtKkSfj000+xZs0avPfee7j99ttx7NgxpKenY926dax5u3btwu7du5s0lQAIJ24BbgH3LCDduxeyC2k4awzBMl28uRKpFCaViv31nqnd0SM+FJ9vTUdaXpVVCAGHQLUMsWENOw1je0fj3JUKlFZr7Rozvl8s+iSGutdAXgry8osIOdE0WmjV4CXQh3r+OMlfTG4ymZCSkuIv6oqmp1dBBGlFHfn0008jPj6e/WlL/fv3x/bt2xEd7Rht850I344L/sXiW3uTNKE23370MqprNEiKDcPgng0Bnpy1uP7MaVSvW4fDukB8XmM+Z5coFDDIZGwX8Pc3jsCI3gnQaPV48/v9uJxXAamMYkAoERpkBhoW6twphN0AsexCWH4fNyAJU4YKX+yE6uxMN3eet0XZpspcaDc830Qd5Zw3IAk2RwRtDbVFnVujj9CyYuottI0dgc8rIEKr1WLu3Llsl4EcKz/88ENcuHAB06ZNg0QiAflLaDQa9O7dG+fPn4fq6ldRY4NyEOHbISbmS8dlN9/XT/xnM4oqr0aSNJkQHRaELvGhiAgOxPyxKYgMDWxxoFBmzvzTaXgxTQKJVAoolTAYDCxs9TuPz0R4sLpJ+dW70nA8vcDu96jQAPb+2uXQADBrZApG9kkQPFh5Xzc1lf7QZzBc+tX6QNZjKuRDFwu2aUuM3N4eMSOvpBkLeAVEkKx///vf+O6775CYmIisrCzmZCmVSnHzzTcjKSmJ/bZkyRIsXtz8i8JBhG/HLZ9sfGtvkubM5uv2XcB3W89YG1Zdq4XRZLLuEkQEq/Gf388U1PDVu9Ow+VAGajU6KGRGzB3bB/PG9rQr+9JnO5CVXwGt3gi5TIKeiZHW5/27RbOw1uv2XrD+FhcZjMUzB0B11UFTSEOc6SykDnd52rJsU8WVhtsZFC/EQ9SWdfaQig6rEVNvb+rV1ur2GoggRelrp6amBqGh9uellZWVCA4OZqCiJeIgwrfDRcyXjst23NffbDmNX/ZfZA8NBiNqNDr2dwrsJJFK2N8fuX44xvR1bdFxZO8/ffwrTl8usjaEbmFEhQUiJT4c5EB57ZgeCAtSobxag6LyWigVMiTHOg9z3Vgz3tf8vfaFBcQcZ77Qr63I8CqIaK2SHES01oKulRfzpeOyHffVtiOZ+Gz9cfZQbzChVqOl1BUIsfFXeGDuYEwc5FpgKEf2XvzPtaiss7+hERsehP8+Pce1geSE25N9TV/vxspcSBQBkMYNcNpOT8p2KqwRg1iyxZJL6vurbFfHRnvm5yCimd7zx8Hvjzq3h4nu1a/34HRmEct6VVWrZTsAtscHbzw0BfFRIS7NQ476+q5X16Kqxh5ExEQE4sOnrnWpbmfMnhpnhnM/Q39iuVWcJDwZyml/BqTm2BeOyFOynenYlmT7o85iv9fujI/2WoaDCD7ZWC3AJxvfv8ZCbV5SXouKunpcvFKGX/ZdRFVtPQIDVJg6pCsWjO/lcsN3HzmDc3k6GIxGjO7TGQN7xOAvy3bg+MVCu7poh+MPC0e6XH9LBYTq7Eyods2jMGkq7djkI+6HrJvjpGNiLyye0tuZXRo/F0uuv9rb1f5p7/wcRHAQwUFEB8id4cpEtOHARXy09hi7fm2hG8an4s4pPfHK90eQkVfO8mekdonEkwtHu1K1IF6PLGpGPepX3NtEnnzgzZD1nttsOzwiW5CWTZnEki2WXA4i3Bwo7awYBxEcRHAQ0c5BRP2xY9AcPwZTbS2kUVEIHDce8oTmr1z+4T+bkZlfDonZL5Mdk0QoNPig7xaWilzWaybkA7wX5M1Ti5r2l2dgqra/hqoY8wikLaRR95Rsd+Z5sWSLJZeDCHdGSfsrw0EEBxEcRLRjEKEvKEDF58vsRrGsUyeE33tfs7PR795Yj8Ly6gYQYTQgUK7DZ/03W8sopvwJ0k6uH5MImQI9tagZsvdDf3gZoDXn/CDwQCCiJfKUbCF6NuYRS7ZYcjmIcGeUtL8yHERwEMFBhKsgoq4MxvLLgFQBaWxfigHp9pvf2glec+IEajasbyI/4tFHIQ0Mctiu5z7civNZpTYgQo94dQ3e7r2zAUSMuB/SFnwL3FbYCx77tBshkasBtfPrpq21d1vSW2hb/FFnsQGM0L7pCHwcRHAQwUGECyDCmLUPun0NWWglQTFQTH7B7dTNrZ3gtWfPoGrt2iajOPL3f4CkmUiwVwoq8fxHW1FTr2flAiX1eCT5OIaFNhwNyMc8BlnSCK/Mca3VuTWN8kfZ/qgzBxGteUtcK8tBBAcRHES4ACJ0W/8GY4k5+JOFZP2uh7zf9a69eVe5HU3wmXkV+HzjSXbkEKCQYVS/RCyc1Mdh/aa6OpR98jHoTwspe6UiZMGCFttDco3KCMbTtWA1DOnbrPySsEQoZ/wDkLQcDM4thb2wE+FKO/xxQfVHnTmIcOWtaB0vBxEcRHAQ4QKI0P78JEw1xfYgImUy5MPucetNdDTBP/3+FuSXmc/5LWRJlOVIiKGkBPVnz8JYVwt5ZBTUw4Y5bUtjuca8Y6CU1FAGM98CiUzhtA53Gfii5q7l3CvH7e2e3XgpYRbgIIKDCA4iXAERv74GU2FDLgsynrNrhS29io0neMqmef8bPzcpMnNkCu6c3l/YWy2Aiy8sAozkYRaxbC6WXLF3A8TU28NDp01Xx0EEBxEcRLgAIghA6PZ9AJOmgtlNGt0b8vFPQSK3T5st9K1vPNHp9UbcvbSpj8OcUSm4fRoHEULt2hyfmAuLWLLFkstBRGtHa/soz0EEBxEcRLgAIizGMlXmABIZJCFxrXrTHU3wf/n8N1y8UmpX78uLx6FXYlSrZNkW5guLx0wpuCKxbC6WXA4iBA+Nds3IQQQHERxEuAEiPPXWNzfBf/rLceQWVyFQKce4wV0wqnfzwaPcaQtfWNyxWuvKiGVzseRyENG68dJeSnMQwUEEBxFtEEQ0N4Ho8/JgrKuDLDwcsshIK1v9uXPQZ2VR+EnIExOh6tuvxTmILyy+n6LFsrlYcjmI8P0YE0MiBxEcRHAQ0QoQYSzPhqn0Iq3dkEanQhLq2o6BKxN81cofob3YcL00YOw1CBw3DvWnTqL6l1/sRnLQ9OlQDxna7JziilxPT0xctqct2nJ93N6+tbe/SeMggoMIDiLcBBGGK4eg3/OO3QhSjH8a0viBgucRoRO8NiMDVT98b1evRCJBxBNPoubndag/f96+HV27IfTmmzmIaGQBofYW3IEuMIolWyy5fCfChcHRjlk5iOAggoMIN0GEbve/Ycw5bDeCpF3GQDH6YcFTgtAJ3tFuAwmJeOhh1GzZbLdDQb8rkpIQetvtHERwEAGhY0zwoHWB0V9lu2Cids/KQQQHERxEuAkitNv+CVOx/Q6ANG4AFBOeETwxCJ1kdVlZqPzuW/t6ZTJEPfkU6vbvQ+3OhrwXxBQwejQCJ0zkIIKDCA4iBL+NnNEdC3AQwUEEBxFuggj94c9hSN9qN4JkqbMhH3Sb4HdRKIigCqvp2OL0aWvdiuSuMOl0MGk0MFVXAyolJEolFF27ImjqtBbb4IpcwcoIZOSyBRrKQ2zc3h4yJK/GoQU4iOAggoMIN0EEBZzS7/8vjAXmhZ12IeSjl0CidJw909FQc3WCN1ZUsNsZptoaVK5YYVcl3coIu32RoKnOVbmCKhXIxGULNJSH2Li9PWRIXg0HEa6MAX988fxRZxoTrdXbpNOAnBzhRtRKd2VrDh9CzVb7XRDSJfJJip4pdzrU3ZXrtGIBDFy2ACN5kIXb24PG5FU1sQDfieA7EXwnws2dCE/MJzTB65VhKC7XIC4qGN3jwwRVqzl6FDWbNzXhjXz6GUikzrNv8oVFkJk9yiSWzcWS6wmA3poOEFPv1rS7vZXlIIKDCA4iRAQRf/poMzKLaq19MCI1Dr+/aZTTecRYVoayjz+y41P16YPgefOdlvXnyV3MhUUs2WLJ9edxJugl7CBMHERwEMFBhEgg4vipc1j640lIKe02HYdcpTcemor4qGCnU4w+Nwf1Z88xx0p5dDTUI0c6LWNh4AuLYFN5jFEsm4sll4MIjw2dNl0RBxEcRHAQIQKI0O19F7+eyMOy7NSr/hRqQK5kffHMrWMwKCVG0MSx62Q28kuqkJIQiSG9hCcD4wuLIPN6lEksm4sll4MIjw6fNlsZBxEcRHAQ4WMQYcw/Ad3O/8Ppqki8mTHUDCJoI0IVyvrizSVTERvhfCfiobfXo6Ck2tp/fZOj8c8HJgmabPjCIshMHmUSy+ZiyeUgwqPDp81WxkEEBxEcRPgaRFz6FbpDnzG7v3ZhMC5oos19oArByD4JePxG58cS6/ZcwKe/HGsyev/71Gx00tWyMNgmrRbymGioBjQNw80XFt/PyWLZXCy5HET4foyJIdFrIGL9+vV47bXXoFQqERYWhi+//BJqtRrPPfccjh49Cr1ez56PGtW8E9nSpUsZvxjkjy+eP+osxkRnzD0K3a632bCura1FviQeJfogJF37PJLjwgUN94/XHsUv+xuScVkKPb9gEHpsXwWYTNZ6KBEXJeSyJerrb/fk4mJOKWAEuneOxEt3jRMku7VMfJy11oKulef2ds1enNs1C3gNRMycORPLly9HeHg4Hn74YYwdOxbx8fFYtmwZvvrqK+Tk5GD+/Pk4fNg+94Bt8zmIcK0zW8vNJ5vWWlB4ed1vb8KYd5yBiMDAQMgH3ARZH2E3K4yll7D+UDY+2VkIo8kEo7EBMHQLU+LP0jS7huhUKpyfdD0CJAYMU50HBcn6+68mnCiyjycxuGcc/rx4vHAl3OTk48xNw7lZjNvbTcPxYoIs4DUQYZFOOw4LFy7Eo48+ih07diA1NRWLFpmj6g0fPhybNm1CZGSkw8ZyECGoDz3GxCcbj5lSUEUEBnIyLiCx9xBIgoQ5UlrABwl44twEZNeF2MiSQC4FpiqrcFtAMVbURmCbNgS1JoobIYFMYkSYTIu3+m7Hs2fHo9QQCEhk1vKhQUp8/sJ1gtreGiY+zlpjPdfLcnu7bjNeQrgFvAoivvnmG7z44ouYNOn/2bsOMKmKrHvee50mZ5hIzkGigCASRFBkUUREAcVfXQOuYlxc05oV84qgYnYxriggEkWCQ845DjARJufQ3S/8X72e6Zk3PeF1fMx01fcp0F1Vt+6pW1WnK9w7Gp9//rlMJCZOnIhJkybJLRw3bhw++ugjdO3aFcnJydi6datDywkBoYkiQBEAdPnHUHHwZ4SwVQhkeRmSu0/dDIFczJRY2ytRSUSkWIUuYil2cdHgwch3NmuSjhHRPygLaeYwFPBBkGQSYcsREqDDizP6UagpAq0CAUmS0Llz51ahy6WshFdJBFGcdOQTTzwhH2UUFhaiT58+uO02W4CiIUOGgNydiIqKahAjuhPhW9O5pH+xWCsg5p2WAWGiujgVn6I5FC9pvasbv3LHaSz78xCqKm2OqfoE5+HRjvsx68AE8KztaagoirCdbEhgJPn/kKofftQlEZ0CihGhK8Xe0kSArT3SGNwtDs/44F5ES8C7OZtx5Xut9NZKLsHIX2W7Yh8ttYxXSITFYpF3G1auXClfrPzkk09w+vRpjBkzBsuXL8fixYuRl5cn70QcOOB4w7wGTEoifGtWl+qAF/NOyU8iwVfZSITeBN2Vj4ON6e4RgC5Vvesqd9/bv6O8sgqw1Hq3vDPhGDYUdMCJCttxIC+IIKyBlTcWRIjyDgNhFbV7ETpGwsDQXPwjdjM+yRuLM1IHSJKILgkR+NfMER7Bs7lKWgLezengyvda6a2VXEoiXLGSllfGKySCwPCf//wHP/zwAxITE5GWliZfsmzXrh1mz56NoqIimUS89tprMrFoLFES4VuDulQnG+vOTyCmKo+6uPbDoRt6v0cAulT1rlGuoKQCDy9Yb/untQIQbEcZ46PTMHPiYPyUmohTmQU4fDIDvGQ7viDUQVAcZNg+DOYseKnNakREhiBy3INg4xyff3oE1CYqudTx9pb+WumtlVxKIrxlSZdWvV4jEURNQRBQXl6O0FCbE52aVFlZKT/3lJ3sNJEoifCtsVyqk41183x7uO0aRNg2vaAf/ZRHALpU9a5RThSBO99YXn1UIZ9byIxg+qhu+NtVfewYzH31f0grE+z/JkcbLMciJMAAVJZhpLECN5kK5e8rRBFJ855SuNv2CJgqKrnU8VahgktZtNJbK7mURLhkJi2ukFdJhLtoUBLhLoLOlb9UJxt+75cQUjYqlGE7joL+8rudU7CR3Jeq3nWb+8HSXdh14oL9o8iQALz/j/GoG7Bz94EUvPPzHpgF25NPPcfigalDMTKGQ/F33yq0J09L4+67H7q4OI9g6EwlLQFvZ/RRm1crvbWSS0mEWsto2fkoiWjBC4unTe9SnWyk0ovgt30AsThDVpkJTYB+xMNgQjyzAF6qetfv390nsnD+YhFCg0yYcHmnRrt/88FUkOsRYwe0l/PwmZko/naJI4m4/wHoYtXH2/CUvbUUvD2lb009WumtlVxKIjxtQZdmfZREUBJhR+BSn2ykEtsvcSbUM+TB3cmdP7YcUvYR2Tsk07Y3dL2nOD3K3cF8w56z+OtIOqy8hO7tYnDH+N6Nyi/6dDGEQttRBknlej3aPfqY0+31RAF3dHZXvj/K9kedtSYw7tppSypPSQQlES2GRHhrYLkyyQonV4M/+L2iSbo+U8H1cs5ZkzOy5SecIqDTsWgodkZDTzSJd0oxYzfEojxYs4ohIBZsSCiyo6LQ6TLfX6rUenJ3Bm9P25tWsrWS68997WnbuZTroySCkghKIlwIwGX9612IF5TPk5k2vWBw8rKnmgm+oorHa98m4/zFYrmvkmJCUGUWcD67SGG9JqMe3z93o/0zyVwC67pnIVXW5uO6joduwCy/fb+vBm9vTdhaydZKLiUR3rKkS6teSiIoiaAkwhUSkfw+xKx9CushRxqGUc4FjFMzwde/VEmEiryESqtVId+g4/DjCzfZPxPObgJfHS3U/iGnh3Hq55REaDAPq+lrbzRLK7mURHijNy+9OimJoCSCkggXSISQsgH83q+Vxxn9Z4Drdq1To1zNBP+vxZuQnmvbhahJJOhWpVlJItpGBIOEAq9Jwqk14A9859Ae49TPcDY1A506NX450yklnMysRmcnq1Sd3R9l+6POWhMY1QbZCjJSEkFJBCURLpAIAhp5dirmHJUvVnJte4HtfDXEC4cgypctRbDRXcEmNR7qXu1E99JXW3Aqs/ZSJCnXvk0oKiwC0nOKZdfyESEmPDn9CnRvV+tCXrx4GNYtbyksnA1vB/34V+hOhAaTt1aLuVZy1dq3t7pCS729pdOlWC8lEZREUBLhIomobzpi5h5Yt35Qb3diJrhuExod+2omuj/2ncdXqw/a6pBdUQq4uV8MRvTvjJgO8U3OK/yhnyCc3Sh7umTC20PX/zawMT0pidBgNlbT195ollZyKYnwRm9eenVSEkFJBCURHiIR1l2fQjz/l/KXf3Q36Mc+1pAE9AAAIABJREFU6xSJ2HYsEz9vPIqyCgFhwQbMvrav7Pfh4PF0VB4+gr0VLHJ5vVynQadDYJDR9nc9h8HdY/H3SQMd5YkCcV9J+9pDfe3KVK7VYq6VXEoiXLGSlleGkghKIujC4qGFxbp9IcT0nQqLYiI6wHDNS6pJRKXFgjteXQleqHVfHWDQ4bvnp6By+3b8sP4gVlSG2+vjGQaMxCA02EYkSPr7pP4Y1a89hOMrIJzdbIu3Ed4e+n7TwUR0lPPQhcX3k7VWmGsl15/tzPfWpZ1ESiIoiaAkwkMkQji5BvxB5UVGrus10A24XTWJWJZ8Al+vOeyQ/8kZw9Hvwgm881ca9psDaklEdZCt0EAjGFv4TozuEIpZCfmQzn0PNijInpeJ7ATDuBcoifCzC6WURGi3wPqDZEoiKImgJMJDJIIASUiEmLEPkAQwbXpDN2g2GM529NBQqj/B/7zpBL79w5FEPD59GAZbc7Dwt/1Irgp2IBEmgw4i8ZwpCLjOWIyphj3gpKMyiajr2tp48+cAq6c7ERrM7lot5lrJpTsRGhiZBiIpiVA5ufuyb7Qa9FrJ9efJpj7m2YVlmPPuWogSidRpSwYdix9fmCr/PfWHn/HPQzwscowtBgLDyK8z5Ii48mcSkhgzXg3dDk46JJfRt2sHRq+XyYNMIuhxhi+Hs+YknY5rTbrbb4RSEkFJhOaTHF3UlP4alm48itW7UlBlEREUqMfU0b0wfpDtLgNJudkF+GnLCZTyDEw6YNvRCxAECZIkQi/y0EHCQ0GZ6M3+Rp5yQJ+YCIYFEJ4EXYcRQFgSUi2R1E+Ej6d5rRZzreT687j2sWlpKo6SCEoiKInw4HGGs6O5/gRvPnwIZWvWyL4n5F2ILl0RclOtF0rymfngQVjSUiHkZGNvlQlf5pgAjgPIrkRlpVzunuAC9ONywCATwSMHQkhZD8YYam9eftQwxF89x9nmeiQ/XdQ8AqPqSijeqqGiGV1AgJIISiIoidCARJzMyMdPfx5HTn4ROsRHg9x5IKnwo0UQS0sVVhky+QYYevSQP/v6m/U4lZIJmK3oVpGNQdYcvB4+VCYQjMkEEqFLslrxSkgGwoNNCBhxJfSmDPCH/6eos5TXIXrGFy5MGe4XoYua+xg6UwPF2xm0aF5nEaAkgpIISiJ8TCKKyyy49+3fYOFFecOBXGeICQvGJ4+MQ8F77zpYZNDoMchr3wNv/bQD6RcKwVYfW5C3GBMqU8GYDNhmiEelzoTg8GCMv7wTJg9MAhNge8VBCIRwnBxt1KYKi4iIWUucnS88kp8uah6BUXUlFG/VUNGMLiBASQQlEZREeIhEVFZaEBBgaHYYfr32MJb9dULOV0MiyN/ff2gCQn/+BmJ5uaKOA72vxKIdF2AVREii7ZiDJAYSTJKAbmIJpkVWoevQyxA49moH+ULaDvA7Fik+LzbEo82NbzTbVm9koIuaN1BtvE6Kt2/x9jdplERQEkFJhJskgniY/HjZHpRWWORXEvGRIfjw0cZdXX+8Yh/W7kpxIBGv3jsWnXLOofzPDfY+0SUm4pWStjiVVgCBvMKQmYfMIGQCQlxDcIRMsBK+mnEZjL17N2jRJBCXkLoVDF8FRHbBheir0L7vCE3mO7qo+RZ2irdv8fY3aZREUBJBSYSbJOLuN1eioMR2obEmXdk3yX7Pob6JEdLx1nfbFCSibhhvsbgYQkEBGKMRuvh4/OO9NUjPLYEoirazj2oSQf4kpIVjbGcid18/EJOGd1E1h9GFRRVMHs2kFeZaySXg+atsjxrOJV4ZJRGURFAS4SaJuOWFX2Dla91UE0A7xkXg3QfHNTr83/phO/aevCiXCzTpMXVUL9x4ZdcG87/w1RYcPH0RPDnKkCRI5BKlTCYk6DjydtOWZo27DFNHd1c15fjr5O6PevujzloTGFWDsJVkoiSCkghKItwkETNe+hWVFt6OIzlm6J4Ugfn3N04iajKrmeArKi146IO1yC2sgMTIJxnyZgTLMGCrXV2T+ghpIeRFTVIjV009ruShsl1BzfUyFG/XsaMlm0eAkghKIiiJcJNEvP7fZOw6eUF2Oy1WX3zkWBZx0SH46NFrmxyFDU3wUlEaxNRkiFUlYENiwXa7DozOiIy8EmzfkwIjB5zKN+NgykXZIZVBz2LkZe1w/+QGondS+1Yg4I8Lqj/qTHciml/8PZWDkgg6yVIS4SaJIAAuSz6Nb9YcBC9JIAcM5LSBpLGDOuKhKYMbHa8OE7ylDObfn7BF3qxObNve0I+a56kxL9dDFxaPwqmqMq0w10quP9uZKoNoJZkoiaAkgpIID5AIAuLU53+270TUgNojKRKv3+f47LLm+/oTvJixG9ZtCxys0jB5ARhTmMemHbqweAxK1RVphblWcimJUG0aLTojJRGURFAS4SESMf3FX2CxKi9YDu4Rh2dmXal6J0JI2w5+x0eOJGLS+2ACIz022dCFxWNQqq5IK8y1kktJhGrTaNEZKYmgJIKSCA+RiFeXJGPPiQt2PEn0zVfvGY0uiVGqSYRUlg3LqicV+ZnQBBiufd2jEw1dWDwKp6rKtMJcK7mURKgyixafyWskYsuWLXjuuedgNBoREhKCJUuW4MyZM5g5cybatGkjAzdw4EC8+eabjYI4f/58zJvn2bNgtT3mjwPPH3X29ES3Yc9ZHE25iACWwdTx/REZZnM93VgimG8+VYrDKTkg0b87xofjH5cLEM5uhFRVDCYkHlyvyWAjOqg1XVX5aF+rgsmjmbTCXCu5nh5bznaGlno729aWnN9rJGLixIn49NNPkZCQgLlz52LAgAFISkrC0qVLsWiR0gVvYwBSEuFb09Jy0HlbtpixB+SoAHwlmLB20PWZCnB6GWB3ZVtOn4b56FGIVZXg01IhCSIYjgMbEICg6ybC0KVxB1Cf/JKMv47nKzp6ULdYPDptqFc7312d3Wkcle0Oes6XpXg7jxktoR4Br5GIuk2YPXs2pk+fjsrKSmzevBmjRo1CYGAgxo8fD46EMG4kURKhviM9kbO1TjZSfgosG15UQPRVyWjkGrohOjwQ4/uEo1OnTi5BKOTkoOirL+WyYnEJ+LxcsIEB0MXFy5/pYmMRdsfsRut++pN1SMtTersk0Tc/nOvoNluqqoI1K0t++qFPTASjt5EgV1Jr7evmsPBHvf1RZ0/8OGjOluj3NgS8TiI+//xzrF27Fj/99BOWLVuGhQsXYsaMGThw4ABSUlKwcuVKSiLqIaDVoNdKrrcHvHByFfiDP9hRnnNsNAosAQCrkz8LNunx32dvdGlOqNq/D+Xr18tlhfx8CEVF8t8NhJRUh+eOfHhuo3U/88k6pNYjEVGhAfjPQ+MVZaypqSj9Zakc5pukpXwMSuI7ISQyFNcO7Yz2bZ17udFa+7q5TvRHvf1RZ2/PKc3ZmT9971US8fTTT6OwsBALFiyATmebsOumPn36YOPGjYiJiUFycjK2bt3qkGfatGn+1B+tVle2IgeBKSugK0mDyBnAxw5GRYemHTF5CgxTxmYEnP1dru5QRSzez7AFnpKYWpu8ZUQ7DOsR47RI9sQJcLt2yuWY0lKguNhWd0KCzVlEeDisk29otN6/jmVjzb7ay5gkY/+OEZg2or2ijG7zJjCpqfJn71na46JkhETGlF4Po47FEzf1QqDBcYw5rRAtQBFoJQhIkoTOnTu3Em0uXTW8RiLee+89ZGdn4403asMNr1mzRvb5P2HCBFRVVaFHjx44efKkfPmyoUSPM3xrON78xWLd/CbE7CMKhfRX/ANs0hD5M2/KlvLPwLLhJVnOpvxEfJze17bAM7ajNOKm+vZremPq6F5OAy7k5qLoyy9s9Qgi+MwM+ZhBFxcnfxY04VqgZ2+YGlngid6HL/A4lJIDXhDQJTECt19zmUM7Sr5dAmtmJnJFHV4usdUNjgNjMsl/nT2+L665XP2RjDfxbg5EKrs5hDz7PcXbs3jS2pQIeI1EBAcHy5cpa+483HzzzZg8eTJuueUW+YJlWloa5syZA3JforFESYRvzdWbk435l3sBEoa6TuJ6/g26vradJm/KJvWL6bvki5XZxWY8vK0DqoNq20nE6/eMRc+OjT/FbKonLGfOwHLsmHyxUhcTA11Cohyj+8sDediVkg8zLyAk0IDrh3bBpOHKIFtq9S77faV8efMCb8DrZW3l5sh3IgwG+e/Tx/TC3+rV3VSb1cr1hgVS2d5AtfE6Kd6+xdvfpHmNRDQFZElJCQjJYNnaCIQN5ackwrfm6M3JxvLbw5AqbfcFapKu783gek72KolY8OsenE4vAMtIGNAtHrMn9MX7/9uFbUcz5AiaOh2HbvHBePVe2x2EzQdTsfNoBglvhaG94zGqn/JYgeTJK67E12sOoqi8CgnRoQ3GrDh8Ngfzv9+u0Jf4jfhi3t/kz8j3q3acwcX8YiTEhOOmkT3QKaHx4FnkAmfp8mUQCgvxr5IElEMHxmiSyQpJz8++Et2a8EdR35K82dfNWS2V3RxCnv2e4u1ZPGltSgQ0IRFqO4GSCLVINZOvqtjmd6CyEAiIAtflajCGIIdC3pxs+EM/Qjhhu5cgJ4aBYfwrYMKSvEYiXv76L+w7fVGh56QruuHu6/vJnxWUVSIyOMC+C/LNukP4dctJRf7JI3rg/67ra/9MEATMfGUFzNbaqJ1tI4Lx8ePXKcr9tu00ftx4zAHjl+4ajcSYIDz4/lpUmnmQ+shuXVigAQsfVdbRUK/yeXnYdTYPv+7NRFFpFQJMeoy8LAnTRvd0yli82dfNNYTKbg4hz35P8fYsnrQ2SiJU2UBrGniWNf+CVJJp15uN7AT9uBd8SiKIMCFtB0iEShKRkokfADa8nb0NruK960Qm9DoOA7rEOuhz+6srUFZpVnweHxmEDx+5FkydXbAa2fe/sxrZhWWK/OQJ6KdPXG//bMm6Q1haj2iQLxc8NAGJbUPt+f7cdx5frD7o0Kb35lyN9ftS8fOm4yAXv0gi9yU4jsW/Zg5H7w7OX+5UZdD1MrmKtyuy6pehsj2Bovo6KN7qsaI5nUeA7kQ0gllrGXhS/mlYNrzsoKVhwqv2XYCaL1uSzuv2nsPnK/fbY1UEBerxxt1jFQv5rJeXo9xssaknivINyhidgDcisxE07hoY+9p2GGr0vmv+ShSWKn02hAYa8fXTtiMXkhb/th+rd55xwPPFO0fhsi42T6w16aH/rEVhWe09kK4JEfjXrCtx95u/objMDMgcQpIvG4cE6DFv5pXo24mSCOenMfUlWpKNq9eq6Zz+qHPdce0pHGk9DSNASURrJxE5x2DZVPtCpkZdw7gXwUR2VGjfUiYb6/nzmPPVLuRZbL/kwbAAA/RsF43X7h1j1+mJheuRcqHItliLtsBYlxsrcF9gLpigIEQ++A/5sxq95338J05lKL1HdooPxztzrpHzHTmXg+V/nQbZ/WCr7yKQz3Uch/+9eBNEAPtOZoEFi4HdY1Fl4fHbtlMoKbcgLioIE4d1xbYjmVi4bDfKKiy2nYhqFcIlMz7oWoWg8ROgb+d4D8PVCYzE4pDdZwdEgAmqJSgtpa9d1buxcv6otz/qTEmEp0dO4/VREtHKSQQsZTAv/wfkwAzVidEHwnDDh3ZnSzWft4TJRjKbUbBoIf6RF4sqsc7FXI5DQ3cTHlv4B7Kyi8AIPJJYC+aF1PpkiHjoYdk1dY3eeQVleOrzTcgvtu1GEKdP5A5DfHQwFi3fh/W7U+TPeV6USQt5IBpo1GHCFV3Rr1MbLPx1Lyqr70oEGXV4+OYhDscTyYfT8fGKfbBWVMJs2xyRX5veVHYG1waWyE6qwu+73yMzAL/vawhnNtjr4rpfB12/2xTEySOCnKykJdiZkyqpyq6V3lrJ1Xoh11JvVQbRSjJREtHaSQT5EU7iRpxaA6myAAiMhq7H9WDjbJcL6yYtB51a2da0VJT88AMeL0pEsVTHZTrHoXNcJN5+8Gq7SmLWPogXDoG/mImqI5kQmNpf+OR5ZOSjjzW4oFZayBEIhwBDbf13vLoCpeR+hUDImG37oCtXgadiShAx50G89sMuHE/LU+BJ7jeQew51E9mBeOiDNbCUVsi7I5IoIkDi8UrxdjCBgeCI86iBg6Br2xamQYPAhtbes3BmziF3YMhdmPrJMOk9MIFRXn9S21Rb1fa1M/qqzeuPsv1RZ60JjFp7bA35KInwAxKh1lBbwmTDZ2Sg+Ltv8Ys5AqsqahdYzqDH3JuHYGRf22sPMWs/rMnv2VXnMzNhtbSHwHSXPwsYMQKBI65skEQ0hNf0F36BhRcAwXYsQlICx+PF0EyE3nornv49BRcKShVF24YHIrFtOHIKShESaMTVAztiaK94bD+WiZW/bUVpcQWCq0oxzpyBHtYC4oMeYFno27cHo9NB16YNwu78P7Xdp8gnZR+FZfN8RxJx9b/BRHWmJMIlVN0rpNX40kqu1gu5lnq7ZyktqzQlEZRE2BHQctA5I7vok48hFBfjnNWA/dYg6IODMOX+aQgLtjleIqn+Vr78IRsOpu+D4CIiwFWHo1c70f3fG7+hiFySrEMieusr8GhwLkKvG4r528pwIsesOCLiBRE6rvbIhWUYzL9vDOKiQiAWF6N0zWqUbtwIHcOANRohVFaCDQy0e7skbQv7v7tkB1bOJqk4A5a1TzuSiOvfBRMUTUmEs4B6IL8zNu4BcS1uXHtSZ7Xj2tMy/bE+SiIoiWhxk41QUADzwQMQS8vAhoXCNHAQ2JAQRU/yez6HcHaz4jMmJA6G6xx/nauZ3Jcln8b3fxyCxcLLFxlCWRGvBmchzHgQhgTgUGkMPknviyomANAHwKjnUF5lVZAI0phbr+6FScNqvVaeO3wYsWWlsKSlwnLoMNgwZSAtshNBdiRcSfyeLyCc3WQvynWbAF3/mfK/1ejsikw1ZahsNSh5Lg/F23NY0pocEaAkgpKIFkciGuqy4rJKPPnxRuQVV8hfxwQBr7Vfg2Cu+oknueXQeQwspR1hPnIEktUCfUICAsdejdSSEtWhwPfuOw3xzCn04CrB6C3QFS8HUx37RQSLAyVRMAy6C/Ed2uPJRbWXGmvaXN89dc0EL1ZVoXDRQnJr064euQ8Rcf8Dbs1bUkkWpKoiMAGRYEJqfWnQhcUtWF0qrBXmWsn1Z7LqkoG00EKURFAS0SpIREPPM7tFAi/3OQSIVrAxPSAEDEbZyjpeMwHoO3RE3uDBqklEXXMRc0/AuvE1BwvSj3laljd3wVrklyjjhbx6z2hF2O66E7z1/DlU7t0HqZzssIQh4PIh0MXHe2VqoQuLV2BtslKtMNdKLiURvrcxLSQ2SSIWLVqE7t274+qra2+8+7KR1O21L9Fu2Vvcd75BHDgpF+zwICO+/Feto6iKLVtQuUMZz4IxGFA0+QbVJOL1b7fhTGY+BEFCQlQAHgj8GTEGpYMqQ829g8xC/LDxGPJKKhBo1GPsgA4YO7CDolO1muC1kuvPC4tWmGsl15/72rczt7bSmiQRzz//PF5++WU58ua7776LhIQEn7aWkgifwt2iz8nvfWs1couVLqvbRAThk8cn2kGs3L4dFX9tUYBK7lIUTrhWFYn4cs1BbNh7XlG+V6QZj0ettH/G9Z4CXe8pqjtOqwleK7n+vLBohblWcv25r1VPAK0gY5MkgnjUW7JkCZ566imQyJuEVIwcOdKu9rBhw7wKASURXoXXofKWPNl8+vt+rNqudEc96YouuPv6AXY9hbxcFH/1leybgaQ03oDtUV2QZwhCj45xuKWJIFaZuaX4cNkepOeUKHALDzbhwwdH24KbmcLB6E0OuJJ7CeKFg5AEC9iIDgofHVphrpVcf15YtMJcK7n+3Ne+nbm1labqTkR5eTkmTJiArVu3KlpbE0DIWypQEuEtZBuut6VPNit3nsH+k7aonYO7xeK6YV0cFBXy8mBJOYO84io8v7sQVrD2SJrdk6Lw3B023xE16fyFYrz38w75bkNFlRWiKCHQpLe7vY4ND8Tjtw5DgFEPQijqJ6nwPCx//NvmmrI66fpOA9fTFhJcK8y1kqulzv4qm/a1b+dRf5PWLInYu3cvHn30UZlA3HPPPYqdiFmzZnkVL0oivAqvQ+VqJxtyJGA9e1Z23Kjv0AGBo0cryaW5FKjIB4whsndENUmtbDV1qcnzy+YT+CXZFva7Jhw3+ftnT14vR9WsSfO/247D53Lkf1qtIiottmebhEhYrLwcfZOrjghKAmz9+86rFOKFI0vBH1uu+IwJjYPhWttTU1/rXdMQreRqqbO/yqZ9rWZGoHlcRaBJEvHhhx/i4YcfxsCBA0EuWQ4ZMsRVOS6VoySiadik/BSI+aflTOQ1ABOhvLTnLOhqJpvKnTtRsbnW9wCREXDFcARWH3Pxx3+DcPh/dtFcp9HQDb6r2aY0J3v1jjNYue00yi08SGTNWeN7Y0iPhu/o7DmZhYoqAV0Tw2XHTg2lHzccxW87bMcfdUnEh3MnKHYUnvzoT4UnSisvIkCvw7A+Cdh9PAtm4sWyTrrpqu64aWQP+yf8/iUQTq9TNsEUBuPkBZRENGsVns/QnJ15XmJtjVrJ1kquv5I2b9rQpVh3kyTixRdfRHR0NB544AGw1b+2fKkEJRGNoy2kbge/8yNFBv3Ix8DG9Xe5i9RMNiVLl8Kaorx7oEtKQthtMwDeDPMvf3eQb6h2tdxUw5qSXVBciXvfWQWh+i4Dqcdk0OP7529UVGnhRfzzkz+QV1T7WmLy8G64ZUxPB9F7Tl7E+z/vVJAI+X7D3AmKvP/+cjNSsooUn/VoF4lnbx+J2a+tgFDnmIJkGtEnEQ/cMMienzi8Io6v6iY2fgD0Vz5KSYTLlup6QTU27nrtTZfUSrZWcimJ8JYlXVr1NnucoWVzKYloHH1r8rsQsw4oMnDth0M31PUIkGomm9Jly2A5ZTsGqEnkSCP0lumQSi7AsmaeQ6P1V/wDbFLTu1hNyV666SSW/HHIod55M4ZjWK/a3Yi6uws1mYMD9Pj4sdoXGnUr+Wb1Iew8kYXyyirERATjtnF9MLBrrUMmknfzwVR89vsB+5UG4sT6/hsGY3ifBNz71ipUWKyKdl17eWfMGt9H8Zl179eQ0rdDsprBxHSHfuBskCMNLSdZNX3trbFPZXsL2YbrpXj7Fm9/k0ZJRCM9fqkPPMufL0PKsx1l1CQ2vj/0V9oiU7qS1OhsPnwIZatXK6oPuvpqmAYNBizlMC9z9LBoGPsMmGhb4KvGUlOyf/rzGL7/86hD0fok4qPle7H1SIYiH8cw+PrpWl8RDclvTm/yMuNgykUwDIv+3doiK6cMK7adwtmsQpRVWmDQc9DrOBDC8updoxEVHqga/uZk11QkpO+EeG4LYC4DQuOh63WDwgOlaoHVGdXKdbZeNfmpbDUoeS4PxdtzWNKaHBGgJKIRq7jUBx6/7xsIZ/5QLpg9/wZy89/VpFZn87GjsKam2i5WJiXB2LevXSR/8AcIJ1fZ/80lXg7d8IeabVKzxxlvr4RAwnCT4wOGgUmvw/cvTlXU+79Nx7F86ynFZ6FBRix65FqXCUxDBe99exUqzLYdCBJki7xSunVsH1w3tJPiUmazSqu8WCkWZ8BaL5gWicRJjolcTWr72tX6mypHZXsD1cbrpHj7Fm9/k0ZJRAslEZK5FPzuT6uPNBiwiYOgH/YAwOpdtmFPTTZSSSak8jz5dQYb2UlVe5qSLVksWPrmF/ijMgiV4BDECLg5uARjHrsHjMGoqH/exxuQmW9zOsUywNRRPXHDiG4eIxGHzubize+3OdQ3p/qIo/4X5MhJvvzKsODa9gITo7yfoQZz4dwW8Ls/c5BpvHERYAhWhW/9TGrkulSxikJUtgqQPJiF4u1BMGlVDghQEtFCSYS92RJxnMTIv87dTVpPNpFtbHEi6vtb4DMzUfztEgf1Qm+bIe+ESLknIKTvBvgqMOHtkBI4GBWVArokhCM4sDY8eGP4OKP30bO5eL1BEjEQw/skKUQIKX+C3/uV4jPd8IfBJQ62f6ZGtnD+L/C7PnUkEVM+BvTqj07qVqBGrrv25Am8Pd0Gf9TbH3UmdqOl3p6220u5PkoiWjqJ8KB1aTXosgvL8OrXm1FQbotgGRcZhCduHYa2EbZf2fzFiyj+5msHTcPuuAOcyQLLuucU33GdRkE3+G7VyDir94Pvr0Fxudlef4BRh48fnQiOUxI566Y3IOYcU7SDbT8C+qH3OUUiyK6OZdUTgEwYbYmNuwz6kU+o1rF+Rmd1dllQAwWpbE+i2XxdFO/mMaI5XEeAkghKIpxa0Goy8znZqNzyF4TcHMBkgumyfjANqn3a6IxJvvXDDuw7lQWO4+zF+nVuiydvrXWrTkgEIRM1Sde2LcJm3wnhxO/gD/2oFKczwXjTYtVNcHaSJV4sf9lyHAVlVQgPMuH64V3Qs120gzzrHy9ALDirJBEJg6Ef8bDTmIt5pyCmbgU5xmJDE8D1mATolEc5qhXW+Feas3g7o1dzef1Rtj/qTOxAS72bs8PW9D0lEZREOL2gkQLF33wD/uIFBXphM2dB50KQtn9+vAHpOcUKEhEfFYw376+NHitVVaHq4AGIpaUgQbOMl/UDGxAge4MkXiGVK7UOxpu/UD1OvTXZ8Pv/C+H0ekU7dH1vBtez9rWIt2Q3p7xWcrWe3P1Rb3/UWWs7a278tabvKYmgJKJJEiGWlcJ84CCE0hJwoaEw9h8ARq9HwfvvOSAXNG4cTAPV7UaQy5cQrEBYEl787zacTM1VkIguiZF4YXZtsLfGBp2YfQTWzW8qOURcP+hHPq56nHprkpV4M4Q9X4C0kdxZYeIHQl/Pe6e3ZDenvFZytZ7c/VFvf9RZaztrbvy1pu8piWhlJEIqvQhIAphQ58O2NzTZFH3xOUjQqprEtWmD8NvvQP47bzsgF3zttfIOQVMbASzaAAAgAElEQVRJslaA3/I2xHyb10vGEIwtobfi8+Q8BYm467p+GDtQnRtv4lZaSN0GWCvBRHaEru8tYAIjVY9Tf5xk/VFnrRcWrTDXSq6/4q164mklGSmJaCUkQqoqgTX5HUgF52yLc2AU9Fc8CCbKMZJlY7Zbf7Lhs7JQvOS/tdmtVkgMg4i770Hl7t0g/iJqEtmdCL/n7/JRQ00iTxOli4cgSSLY6O7guk2AcPw38HVia1TCgNfOj0S6OQQsw6Fdm1DcfX1/dEmI8NkQ88dJ1h919tdFjfa1z6YSvxTkNRKxZcsWPPfcczAajQgJCcGSJUtgMpkwb9487N+/HzzP44033sDQoUMbBZ66vVZvk8KRn8EfW6EowCYMgn7EXNWVOJCIjAwUf/ctxPJyCLm5kARbsKnAkVchbNYsVO3fByE/H6zRBEPPnuCiay8XiueTYd2lvNzI9Z4CVBVBSNlob9M/jo5GnjUQEsOCIY6kJAm3hxVjfL92CL7uugbbfvR8Lr5aewi5BRXQ6Vj069IWD02pfTapWuHqjFpOsmn71iNeTJO9fZLdIzlEONf8s1RndayfX0udqWx3e8+58hRv5/CiuZ1DwGskYuLEifj000+RkJCAuXPnYsCAAUhMTMRXX30lE4rMzExMnjwZJNR4Y4mSCPWdad2xCGLaDkUBJiwRhgmvqa6k/mRDnDwVLvxQDvstWsyQSJwIUQQbFobA0aMQetPNjdbN7/wEQupWJamJ6gwm9jIIR3+1fz7j4HUQiZ8LifwnyZ9fpq/Cw8HZcojxgCGOJLN+ZE1SZuY44jGys2pd62bUapKVyrJR9PODCAys9fXAOnmfwyWFNb65rhXeBCt/lO2POmvd166Oy5ZYzmskoi4Ys2fPxvTp07Fjxw50794dM2fOlL8ePHgw1q1bh8jIhs+vKYlQb1L8ge8gnFqjXLRj+0J/1ZOqK2losrGcOYPChQsglpRC4nn5UiU4DrrICITefgeMvXpDLCpE2fr14DMyAJ0Opt69oQ88BTFtu0L2RVN3nIy6AeKp1RhoPIkwnQW3HrgOYDiZnNSkPrpKPBKSI9cdPGmSQ/sbip55ZZ9E3F8neqZqpTVcWEgsjOLNHyhIBGm3YcpiMHqTMyo4nZcuLE5D5nYBrTDXSq7WC7mWerttLC2oAq+TiM8//xxr167FTz/9hDlz5oDsUEyqXhjGjRuHjz76CF27dkVycjK2blX+ciU4TpvmeiyIFtQPbjeVq8hB8KHFYC0ltroYFmW97oA1qpfbdet+/h/YsykkUIS9LikiAsLAgRCHDgO38U+w6ekKOVzvUASU15KIv4rb48fCyyGytq16AyPg9sGB+Ha/GYXlAhixtu5pumyM5AogdusGYdgVDu1/6YdDMPO1pINkGNI1CjcMVXqMdFtxL1dgvLATgafrPU8FUHjFi4A+wMvSafUUgdaNAIlp07mza7uTrRsZz2rnVRLx9NNPo7CwEAsWLIBOp8MzzzyDPn364LbbbpO1GDJkCFavXo2oqKgGtaI7EU52tshDzDlhe50R0QGMKcypChpj7lW7dqHom68hWW1BpxiDAfqEBJguvxxBV49DwcIPIZWXK2QFDB4MY4IFAglXLgl4YX87pJUHyOQGrE7O27dTG/x9Yn+8/t02XMwuhJGvQl9dFWYF5svfh9wyHYYOji80Pli6G7tOZNnlkUidz80e6fJlTK1+sUhFaSha9phiJ4KJ7gbD2Ged6jdXMmulM2krle1Kj7lehuLtOna0ZPMIeI1EvPfee8jOzpYvT9ak33//HcuXL8fixYuRl5cHshNx4MCBRltJSUTzHejJHE1NNqW/rYB5926AZcFUn+GHTL0Zhs6dUfTZpxAKChRNMfTqCWPXbmADAiGd/wGPb45AgaV6i57Ty7+0O8ZG4OW7r5LLEdlJLAs+K1OWoe/QAbrYuEbVW7XjNM5dLEagQY8RlyWiW2LDRFQNPlpOsuk7fkGsJQWSuQxsWCK43jeCCYpR02y38mipM5XtVtc5XZji7TRktIATCHiNRAQHB8uXKWtcGd98883ycQa5H1FUVCSTiNdeew1jxozxexIhZuyBkLkHjGABIjogzdgHnTqpi37pRF83m/XsgQOIKy+DWFEBNjwCZDehbmCvyj17IBAvlRwHQ5cuMHS1Rces3L4NFX/9Za+fz8sDFxICxmgEI+XDaNyHN6tuREp5nZ0RYzAu7xGPuTfbLk7Sia7Z7vFoBoq3R+FUVZlWmGsl15/HtSqDaCWZvEYimsKnsrJSfu7JNBN50h92IsTso7Bunq+AqzDsMsROcD24kiu2SV5ipL/3LoLq9ImhU2cEkWeWVivY8PAmq7WcPg0+O1sOElWxaZNMIEhipQvQibtxJvwyfJozGCW87U5EQHAowOlRabbCwLHo2z4Uj942ypWmu13GHydZf9TZXxc12tduTxG0giYQ0IREqO0RfyARxPESccBUN5XxHKJmfKkWJo/ks5w6hezvvlWczwvZ2WCjo8FwHNigIARdMx6Gbrbdh8aSUFSEosWf2L9mpGLoxc34gRuPbWVJMIt6hOisKGLCYbHWXKZkQC5B/XtKP/RECSRRhD4+DrpE31yU9MdJ1h91piTCI1OFU5X4q505BVILz0xJRCMd6CvjJxEoSSTKuqmcZxE54yufmpb5+HHk/PiDnUSQmBl8dg707duD0dkuQhJnUuF3NR1imxCArHfew4aqIPASMERXjkwhBx9X9q+jDyt/R3aiCHmoSR05C/4dWnthkjibMva9zOs4+KqvG1JEK9layfXXhVxLvWlfe30K8WsBlERoTCLErP2wJiuDWRUG90DsxKd9aphCQT6yPqj1WSAWFkAoLYO+XbvadjAMop54UnFPon4j3/h+O7YdTiOnGiA+pFhIaBfCIaNCmZMXlE80ZZICCZ9HpNoz6tq1Q9ittpc83kz+OMn6o85aLuRayqZ97c3Zg9ZNSYTGJIKIF1L+hJixGxJfBTaqC9JDhqBj564+t85za9ciMvui7OZa4q0QCwvBmAIgFhdDLC0BWE72IkncXnMNPMvNK67E/81fAdRuLsg6mAw61CcNDZIIScJTIdnoqq+Sy3Ft2iL8zju9joM/TrL+qLOWC7mWsmlfe30K8WsBlERcAiSifhO0GvR15ZKLliT4Fp+eDmuW7YiBEAcuPBz6pCSE3jZD/qz01BnsPHUBMJqQwwTghw1H63MIGPUcBFHJLPQ6FlVmcidCkvOT+5ycJOGOgHzs5INRKXGIjQzCvx6d4vUBqhXedGHxetc6CKB97VvM/RFv3yKsvTRKIvyIRJAAWnxmpqyxLj7eftehBoKGBnzpiuWo2rNHdndN7klIVWaAYxF+1z04tPcUFp2sgAWsXIWV5VAlKu85kM8jg024YWR3bNyfiioLj+hQEx6ZNhRzF6yH2crLZcnViGg9UGTmIZBzEMIqWBYx4UFY/MREr44Uf5zo/FFnLUmblrJpX3t1+vD7yimJ8BMSwV+4gNJflspHFSSxAQEImToVuvgEOwINTTaVe/eiYsMf4MkxR5mtLFnfdQmJ+MQch2NikPyZWWLAg4Eo34Kos+vAAA9NHYLxgzo6IJ1XXIZv1h1HWUUVAktyYZKADRetNgF1npp++uQkRId5zw20P06y/qizlgu5lrJpX/v9Ou9VACiJ8BMSUbZ6FcyHDyu0NfbqheBJf2uSRBBPlEWffwZrSor9JQUbEiI7k3qrKgkZTIC8E1FFonBWMwzyN5ZhkRgTjMenD0fHuNAmjbhiy2bk//knvhcTsd0aYsvLcvLFTJLef3Ac2sdFeG0g+OMk6486a7mQaymb9rXXpg5aMflRKdV9Y3eJQeIPfiIagtyTg17IzYVYVoaKzZvB52QrxJGXF6F1Xj80Jpe/eAGFCz6QQ4EzBj3YsHA5jsanpZE4woajQmLlXQiZQ4ABxzHQsSz+99JUVRZV9MUXKE1LxSF9DD4ri64mIyTGBiNfyvz+ee/ei/Ak3qoUrpNJK9laydVyMfVX2bSvnR2VNL8zCFAS0Yp3IsrWroH54EFZQz43V754oGvTxq6xsU9fBE+svW/Q1GRDYmdYjh9XoJXXqRf+c6AIWYLedo+BEAhGAsOyZP3H0pfVRWAt+uwzlGakyz4qPiqLxlE+EDzLIjgkCNPH9MC1Q7o4Y9NO5/XHSdYfdaYkwumh4XYBf7Uzt4FrQRVQEnEJkAjyvFNM3QaRBGGKaIeMwP7o0L2vW2YkH0N89qm9DvLaguwo6OLiwOgNYMPCEDrlJnB1SEWTA14UUZGcLN+NIC6tjd17wNC9u0xMPvhxKzYcuVB9vdImMjosEJ8+eb0qHcrXr0PB1q0Kb5nB118PY+8+qsq7m8kfJzp/1JmSCHdHivPl/dXOnEeq5ZagJEJjEiEVnodl/fOKVhSbktBm8qtuWRWfkY7i776zPXuoc0kxeMIEcLFx0LVt61C/OwP+1SXJOH4uH7wkIjIkAI/dOhRd6txjsAgC1uw8C1EExvRvj7BgWwyNmnT+xx8RYTHLLrb1XbogYIgtMJcvkjt6u9s+rWRrJddfF3It9aZ97e4opeWbQoCSCI1JhHBmPfh9/1W0oqKiAhG3fw8x7xQkcymYoGjZCZUzybr7W1T+8TkYWCAxoRCYXhCZGIT//V5wEQ1fUvTWZLP5YCoW/roHVt7mpVLHMph9bT9MGl7rUMtbstVg5o+y/VFnLRdyLWXTvlYzC9A8riJASYSHSITscbIkE9AHgk28HEyAutcEwun14Pc7kojgjkMgZh+xt47rMg66gXeo6mcx9zisG1+HkJ8PEhCLJAnB4IbNQ9CYsY3W4a3J5pEF65GabWtHTWobFYyPH73O/m9PyhZOrgKJjkoS07YPdN1r5TSkvCdlq+qgOpm0kq2VXC0XU3+VTfva2VFJ8zuDACURHiAR/L5vIJz5w14TYwqDYcKrgLHpp42kgFiUBuu6ZxWtKGVCESKVOLTMcMOHYFTUSdpC2iSTB54HBEH+kxvxEnTRcWAjIxvUurnJhuwoHD+fJwfOGtgtFpf3iFdla3fN/w2FpTZX1jUpJNCAb56+weMkghAI/uAPCllcvxnQdb+20bY2p7cqJV3MpJVsreT660Kupd60r10cnLSYKgQoifAAiTD/fBcg2jwv1iTd4LvBdRqlqhPECwcgpm2HZC4DE5aE7EodotNWOJKI6+aDCYlrtk7xfDKsuxbb8/FZWZAqK2HmJkEyW2Hs1ROmAYOg79RJUVdTk83/Nh3H8q2nFPnvmNAX4wcr62iocY8t/APnLhQqvoqLCsGiR2sXdk9NdNbNbyp2cIhQNq4f9CMf9ysSIaRuhZi5DxCsYKO7gOs5WXVfN2tgbmbwVF+70gx/lO2POmtJ2lyxy5ZchpIId0kEb4b5l7871KLrPwNct8Z//TZlNGmHtqDtic+UWRgWxpsWA5zyQmJD9UiWcjz9zhKcrwgCCc3dhi3BC0HbwBe3A3m1QXYSCIEgAa7Cbr8dqMwDLOU4n1OGjj0aDr097+MNyMwvU4jrkRiJZ2ePbNb+9566iLe+3253cW3Qsbj/hsEYM6C9vaynJjrrlrcgXlQ61fI3EiFm7YM1+X1Fv3Bdx0M3YJbH8W628xvI4Km+prLVIUDxVocTzeUaApREuEsiAFjWPgOpOF1Rk37UPLBte7vUK2TQtyvZAeHUGrk8w+rA9ZsOrusEVfW99cN2bDuSYXuZQWJyS0B7zoqn8rfKpIIkfYcO8kuIwG6VYC1n5c/Ihc6QobOh61nrxbJG4KML1iO3pDqetwiUm4l7altcjG7tojB1dA/8sfscBFHEoG5xGNar1p12TR3kOIREAB9bhzyQ76SybKSdO4v2fa9QpV9TmfgTqyAcUh5n6PrPBNetcexa2yTLH/gWwqm1CpiY4LYwTHyLkoizZ9Gp3g6c20ansgKt7EwruQQWf5Wt0iRaRTZKIjxAIsSc4/LCJRamgTEEge08Bro+6rw1NiS+ZuCRHQXIrzOiAFav2uAe/M9qZOVW7xqQMBaiABMr4t28TTZSwrHQd+gIRsqHKeKEHJmzhkQEBQXDcNOnAGeTRzjH3lNZWLr5ODJyS+XnouWVVpkskB0Fk1EPi1WA1SrY3VSTgJ1J0cEYO6gjbrqqR+Pt5s2wbHkbUt5JmcAERsZDP+x+sG16qda1oYz8ydVAzjE5ggfbtk+TBKI1TnT8/iUQTq+rRyLawDDxbUoiKIlwa2w5W5iSCGcRa3n5KYnwAImwV1HPJ4Or5uDuwHv4gzVIzymtFS+KCISAd4q3QuKt0EVHy86mWCkDpphMMAEBgMWCSrMZgeHh8i9W8sv1eFo+3vtxJyosVlRUWWDlJdkTJVGT41gEBdiIRlmFBaIkgmNZ8GSroY776/p3H+piIhz/Dfzh/9kJDPFYSXZvyC6OL5O7eLvTVm/IJi+FrNsWKJrFdR4L3aA7KYmgJMIdc3W6rDfsW20jtJStto2tIR8lEZ4kER6yCHeN/8vVB7Gi3iXI/h2i8M/eJlTu2gXJbJZb+ldQDNLLLiCoogjTTNsgCAL0QUEInPMbGGMg3vx+Ow6dzUFFlRVWXrCRA4aE/bYRhqAA2/2M0gqzTCxYhpF3KGqSjrOFCH/xzlG4rEutu+2a7/k9X0A4a9sdkXciAgPBBMXAcP07HkJSXTXu4q1OSsO5vCVbSPkTQsYe+8VK3WXTFQ3wllw1WFDZalDyXB6Kt+ewpDU5IkBJRCskEUSl/649hD2nsyGJEtq3CcPYwe3RIyESAQEGCEWFePbHvTiRXggI5FWJhEBY8EHQp+D03WAa/zBMAwbgmc82y/4dSsoJSagO7y0xYDkJksTIjjBFcnZRnViWqf03Q4Jw2YJyPTBlcIOhwIUjv4A/tkxBItjortCPfc6nY9UfJ1l/1JkYlT/q7Y86a93XPp3ANBZGSUQrJRE1av3r0404kZon/1P279A1Fs/ecSWmPr8UItk1EGw7DCRdpcvGHSFVCLhiOAJHjsTbP2zHvtPZ8k5D3UR2HEhd5AiDXIRgWaluNbZQXCwj70yQ9P5DE9C+raPPDKk8F9ZNb4D8WbMTob/iQbBJvnN5rfVko9UEr5Vcf8VbS71pX2u8yrZy8ZREtGISseNYJuZ/t81Bw1fuGYtnP/vT9jkhEtW7DG1hQQcDj/AOCRh/7RD5q6cW/wmzhZcvKdoCfdv+ZtBxEGt2J6olBAcaER8RiNOZhbZLjSyDAd1i8eysKxsfRpIIMfsYMtPPI7H3cDCBDTvC8uY49MdJ1h911nIh11I27Wtvzh60bkoimiARHcIB8dwWwFwCBLUB130iGFPzXijdNStPDfrv/ziKnzYdc2jOI9OGYdGvu2AhsSwIERBFCBIDPSPCpGPBmEww6TlcN7QLvll3GKJIdivIjUrbH+TPpDYhuFBQbuMgRIIkIijQgO+fm4LKSgvO5ZaiS2w4DAZOFRye0lmVsHqZ/FG2P+qs5UKupWza167MCrSMWgQoiWgEqfOnjiDuyAcAX+uu2Vfn9Z4a9Ot3ncOiFXscNHz13rFIPpiG9btTwFffaSC7CoF6Fpy+9ilpVIgJ57NLbMce1UmSdyMY3DiiC1bsOEVej9qTUc/h2qFdcM/1/dXanz2fp3R2WjA9J3cFMrfK0L52Cz6nC1O8nYaMFnACAUoiGgErfdcKtDn/s8O3hknvgQmMcgJi57N6ctD//a3fkVdc7SQKth2EDx6u9aR5LC1f3o144cst9mMLcpWBBQOjQYdKC29/cSFvQkgMTAYOP780FXMXrENadrGsoF7HwaDnEB1iwvsPq3OKVRcZT+rsLOL+KNsfddZyN0BL2bSvnZ0RaH5nEKAkojESsXM52qQudSQR178jP0P0ZvL0oP9lywnkFVciPioYCW3CkFtcjl6JUUisvuxInnDOePlX+WhCPrWwnU9AxwACcXpZR1nytPNvV3bD3df1wytf/4UTGQUKKCKCTVgwl5IItfbh6b6+1OVquZj6q2ytbMxf8VY7BltLPq+RCOJz4O2338bSpUuxa9cuGa/Dhw9j5syZaNPG5jNg4MCBePPNNxvFcv78+Zg3z7eOh2oac/74PsQdVsYfYMISYZjwmtf73luDfs57a3Ahv9YJ1YBubfH8HVfh4JlsvP7tNlSarTJhIEcbTJ37D2RnIlDPoVv7aLx092hZ/8zcUrzy379wIb+8eieClXcu+nduiyduHeY0Rt7SWU1D/FG2P+rsr4sa7Ws1swDN4yoCXiMRCxcuRGxsLObOnYuMjAy5fRs2bJBJxaJFi1S1V0sSQQZeB1MxhJSNkMzFYIJj5ZgShEh4O3lj0C9LPoGv1ygDUxFy8P0/r8WprQcwf/tFCJIEgSFHGFYHFa9qa8CTj0yxfz7vkw3IzCuTHVEJ5F6FJKFn+2i88vfR0LE2J1POJG/orFa+P8r2R50piVA7IjyXz1/tzHMIXvo1eY1E1KiemJhoJxGEQGzevBmjRo2SvROOHz8eHNf47X2tSURrCtTz0bJ9WLcnxcEin44tx+48K9ZbQuQXGiSRTYiajYiaApPaBeK+B2yBucirjrvm/+ZQ1zWDO2L2hIajgDY3FPx1stFKb63k+utCrqXetK+bm33o9+4g4FMSsWzZMpAdihkzZuDAgQNISUnBypUrG22/P5AIqfSiHCyJOFxiAiJAYhycKxRdjjT4xML1yMgrk+82JESF4J0Hx8n4kqee5MmnIknAjaZCrK0Mll9uVkmAFSxsLzAk+U+SyP8/n9EfMX27y/8mrzXueF1JIshRCLkPkdg2DEO6x2LisK5O2SWd6JyCy+3MFG+3IXS6Aq0w10qulsRJa9lOG0cLLuBTElEfpz59+mDjxo2IiYlBcnIytm7d6gDltGnTWjC8zTc9dM/b4Cpy7BlFQzBKhj4NidE1X7hejo9Wn8LprDqBtwB0iA3Cw9fbImm+9OMhFJXZjioESZTvPRCyIIKBDhICIMg7EOXQycyhZo8oPtSAx2/pp5C2aPUpZObbXn1UWQQIgiS/2uA4G/G4ZUQH9Otoiw5KE0WAIkAR8DUCxFV/586dfS3W7+T5lESsWbNGdpc8YcIEVFVVoUePHjh58iSMRmODwLf2nQipOB2Wtc846J7TZRaSBo532hjvnv8bCkpr/VqQCkJDTPh6nu0YgqSN+1Ox63g6th+9YIt9IQgyiSApGILsZZIJCMTA7rGyK+v2bUJwy1jH0Ny8KOLzVQeQmVOKo+dzQYJtkWeeNenKvkm4f/JA1TrQX0uqofJIRoq3R2B0qhKtMNdKLgHHX2U7ZRgtPLPXSMTjjz+OvXv3Yvv27bjiiiswZcoU+b9bbrkFSUlJSEtLw5w5czB79uxGIWz1JKIoDZZ1z3qMRNz71u/IreMTglQcGWLC53VIBPlMEeVTkkAcV5JbEAGsBIPRgM5JUXjx/0apNu275q+EpTrKZ02hEX2S8MANlEQ0B6JWk6xWcv15YdEKc63k+nNfNzfuW9P3XiMRTYFUUlKC4OBgsM3c4m+tJEKylEE8vR5SWQ74U2vAcAZAV70bow9AVp9H0LFrT6ftbMGve/Dn3nOKciP7dcBj0y5XfLZi22l8ueqA/Jm12u01Ob/onRiCkYO6YlIj9xnEvFOQco7LLq6ZqK5gY/vIdbz4TTJOp+crZNz7twG46rJ2qnWgE51qqDySkeLtERidqkQrzLWSS0mEU+bRYjNrQiLUotVaSYRlw0uQ8s/IMEjWCsBSDiZpKNigaHBdxuF8qcHli5Vfrj6Mw2ezIUkierWPwd//NqBBuMnRR05RZfU7jOosEnD7hP64ZYztAmXdJGTuA7+11m9GviUAYu/pSBwwFlUWHh+t2IuMnDIY9SwGd4vDTaNs9zDUJjrRqUXKM/ko3p7B0ZlatMJcK7mURDhjHS03LyURjfSdtwYeeY1hWf1PB6n6q54EG9tX/txbsusKXfTLHqzeXf3kU37PaYusxXEs+naMwcvVTqVqyvC7FkM4n4xi3oC3zg7GBXMQwHKIio7Gg1MGoVuie67AfaFzY8PUH2X7o86+GluXmp3Rvm65C3RLaDklEb4mESVZsKx5ypFEjHwMbJwtcJU3B31RWRXW7zmPXzYfR1mVpbYd1Y4hiFvr4EADXrrzKnRKiLB/b936AcTMPVic3gc7i+Jsn5PjKEMwuiZE4N93XuWWvXtT5+Ya5o+y/VFnb4+tS9XOaF831zP0e3cQoCTCxySCiLOsfBRShfIOgeFvH4AJsD2JbG7QC2c3Qcw9CYblwLbtA7adOjfTxLU1eUlBfDpYeRHkCVR9r1IkiFaAUY8nbhmK/l1j7egIx5aDP7IUr5wZgnOVYbbPOT2gD0BUaAD+85Dzr0nqQt+czu4YeXNl/VG2P+qsZmw1ZyvufK8V5lrJ9Ve83bGRlliWkggNSAS5oCgcXwmpPMfmYKrL1WATBttb0tSg54+vhHD4J0WrdUPvB9d+eJP29+e+8/hi9UE5T5WZl19TyCSiJhGfESyD0CDbBc8P505AeLBJUSe/+zO8vakSR0rDAVYH6ALkY5DEmBC8ce9Yt+yfTnRuwed0YYq305C5XUArzLWSS0mE2ybTIiqgJEIDEtGcZTQ16C0bXoaUf1pRBdt+OPRD72+y2u/+OIJVO213IHhBlGNekBQSaIDZYiMUBj2LIJMB1wzqiOlX926wvn0nL+I/S3fJcTZq0oxxfTBxqHtOXehE15xVePZ7irdn8VRTm1aYayWXkgg1VtHy81AS0cJIhPWPFyAWnFW0mksaCt0VDzZpjb9tO40fNx6z57EKPHhewuDu8WjfNhSECBw8ehL9eju+zKhf8YX8Muw5eUGO9tm3Q4zi7oSrQ4JOdK4i51o5irdruLlTSivMtZJLSYQ71tJyylIS0cJIBH/oBwgnVilarRswC1zX5u8kPPLheuTVcbxR30MAACAASURBVEZ1Re9EPHjjIHtddLLx/cDVCnOt5PrzwqIV5lrJ9ee+9v1Mop1ESiJaEImQilIh5p2GcG4TYC4DjGFg4/tD17s2RHdzpkTuRpRWWpDUJhQD61yc9OcB74+TrD/q7K82Tvu6uVmRfu8OApREtBASIaTvBr99gaK1+queABvrWujthtSmk407Q8m1slphrpVcf13ItdSb9rVrY5OWUocAJREthERYk9+HmLVP0VryIoO8zPBUIpNNaFQs/txzDu1iIzCsd7ynqm62HjrRNQuRRzNQvD0Kp6rKtMJcK7laEietZasyiFaSiZKIlkIiNr4q+4aom8guBNmNcCuRUJ3EaRTD4P63VyAzn7jCtqUAvQ4/vTTVrerVFqYTnVqkPJOP4u0ZHJ2pRSvMtZKr9UKupd7O2EVLz0tJRAshEfzeryGkbFC0lus+Ebp+t7pkg2JREcpWr4I1PV0mEFx4GO5IiYDE1PEdAWBor0Q8e/sIl2Q4U0jLAe+Psv1RZ39d1GhfOzMT0bzOIkBJRAshEagqgXXnRxCzj8otZuP6QTdsDhh9gLN9LucvXbEClhPH5b9bMzNxVAjE+8EDSDBPReoUG47/zJ3gkgxnCtGJzhm03M9L8XYfQ2dr0ApzreT6K2lz1i5aen5KIloKiahupyRYwJCVnricdiMVffYZhIJ8SGYzrBkZck33RlztQCKI6+uX7xrlhiR1RelEpw4nT+WieHsKSfX1aIW5VnIpiVBvGy05JyURLYxEeMrYipcsAZ+VCamqSt6JIOmfEVehiKklJzqOxa+vTPOUyCbroROdT2C2C6F4+xZvLRdU2te+72t/kkhJhJ+SCPPBAyhbuxaSIMB6/ryMAh8VhQ36JJwRA9Hmsh54eJq6wF6eGDBaTHRScQak0gvIzClE0sDmnXV5Qs/6dWiht5YLGpXdyRtmRAl6AwhoNbZ83sEaC6Qkwk9JBFGbHGMI2RdhTUsDn5mJ0vx8hMTFI2DYMJgu85z/CTU27usBLxz/Dfzh/8lNq6ioQHBSX+jHPi9fMvVl8rXeNbppJZeSCEoifDW+tLRxX+l4KcihJMKPSYTDr+KUFHTq7F4gLVeN2tcD3rzsAcBSbicRgYGB0A29D1x7779EqYuRr/WmJOIsOnXy/UKuJXnSysa01Flr2a7Ogy2xHCURrYxEfPDLbuw8lgmrRUB4iAmLn7y+YQ1F3hbOu07ym8mGN8P8y9/tmpOdCJlE9J8Brtu1Ph3HWmGulVytJ3d/1Nsfddbaznw6iWgsjJKIVkQivv/zGL5bf1ihkcnIISE6Aln5RWAkFklhDF7ruR1SyQUwxlBw3caD6zlZLuNPk43l98cglecpdyKGPwQu8XKfDkmtMNdKrr/Z2aVA0mlf+3RI+50wSiJaMIkQCgvBGAxgg4JkLea8uwrpuaUKjYjrqPqn/EbOikU9NyJMb5XzGq55CUxEB78iEWLqVvD7voZkrbLdiegxFvphc3w+AWg1wWsll5II3x+l0L72+bD2K4GURLRAEmE5fRrl69ZCLLed6Ru6d0fIDTfivrdXIStfSSLki4KS0gslKUOIxZMd92JI+EU5/gaJw+F3k40oQCzLRlpWDjr06K/JwNcKc63kUhJBSYSvBpqWNu4rHS8FOZREtCASIZaVoXLHDpRv3ACpygwuNBSrmDisrgyFhTifkkRYxPqEgdAFSeYR9ocH1f9oayjHwt6boL/yUbDxA/yPRFT3vZaTjVaytZJLSQQlEb5a+LS0cV/peCnIoSSiBZGIkm+XyI6hrGdTZFLA6/V4MOQqKGkDA44E1IIIg04nx9Yqr7IdW9hT9RlHqN6ML0ecgGHCa/JXWg46Ktu30wHF27d4azm+aF/7vq/9SSIlES2ERJCji8KFH8qttaamQuJ5fBPUC8nGOAcNpo/tiVnXVPt5EHnM/vd3yOeNDncjOkTp8cEj14PRGSmJoM/+fDbv0UXNZ1DTca3RuPZtD2srjZKIFkIipPJyFFSTCKGoCEJ+Pr4K7IVtJkcScfPoXpg9oa9dM/HcZry17Ai25kRBqqYSBh2HpS/frND+3IEDaNeuHbjISJ9bJV1YfAs5xdu3eNOdCP/B2/eaaiuRkohLkERkbfwEMcgDGBZsbF9wPSbJrSxe8l/wWVny3yWLGVkWFs9YuiqeX5AbECten96gVpK5FH8ezUNYkAGDuyfY8xBCUrrsV5Smp8v+EriYGITcOAVcRITPrJMuaj6Dmv461ejXqVY2rpVcLYmT1rJ9O5q1leY1EiEIAt5++20sXboUu3btsi18koR58+Zh//794Hkeb7zxBoYOHdooAvPnz5fza5HcHniSCDHnOCAJYMM7AKZQVWrwR39F6e5v5cW8JukGzALXdTyE4mJU7dwJviAfXGAQDH37YtHebPx1KAO8IMLAcRh3eQfc97dBqmTVZCpfsxpVhw7JTx1r5JoGDEDQNb6LJ+E23k5prMzsj7L9UWetFxatMNdKrr/i7cZU1CKLeo1ELFy4ELGxsZg7dy4yqkNN//HHH/jqq6+wZMkSZGZmYvLkydi7d2+rIxFS6UVYt7xpd2bEMAx0wx8Gm9D84m7d+CrKUvcrSASbMBj6EQ97zcBKvv8O1vR0BYkwdOyIkGm3NCtTKskCCU/OhiU6eMBstnCdDHSicwYt9/NSvN3H0NkatMJcK7mURDhrIS0zv9dIRA0ciYmJdhLx/PPPo3v37pg5c6b89eDBg7Fu3TpENnIG31J3IoTDP4E/vlJhEUybXjCMfqpZK7Fueh1l5/cqSUTi5dAPf6jZsmozSHmnIBZnADoj2KAolP+5AdbzOSirgF2usU9fBE+c2HiVohXWzW9BzD1hy6MPgH7ofWDjB6pthiIfnehcgs3lQhRvl6FzuaBWmGsll5IIl02lRRX0KYmYM2cOJk6ciEmTbGf848aNw0cffYSuXbs2CFpLJRH8rsUQzicrSURIHAzXzW/WOIQTK1Gy4yvlccbgu8B1Gt1sWTUZ+GPLIRxZKmeVCs5B4ivABLUDn52LCksHcKa+YIxGhE67Bbr4+EarFE6tAX/gO8X3bFRn6K/+t5pmOOShE51LsLlciOLtMnQuF9QKc63kUhLhsqm0qII+JRHPPPMM+vTpg9tuu00GaciQIVi9ejWioqKQnJyMrVu3OoA3bdq0FgUoaWxA6nqYUtcr2m2N7IGyPnep0sWYmQxd0VnZO5Q1ohsscY3fG1FVYZ1MYTteAWspAWMth64kTf5GCGoL0RAOWKwo7vkoxLbxgMHQZNUBZ1bAlKUkSqI+GMVXPO9sk2h+igBFgCLgcQTIHbzOGkUl9rgyl3CFPiURv//+O5YvX47FixcjLy9P3ok4cOBAo/C01J0I8grC+tc7kArOyroxARHQDXsAbEwPVaZQ88uBXMwUzm4CqoqB4DbQdZ8IJiS2yTqOnMnBsbQ8dGsfjf6d2zjktSy9G5JghVRRAKnIRiJIneQ/crEy4pZPgMCoZtvJn/gdwqEfFfnYiA7QX/NSs2UbykB/LbkEm8uFKN4uQ+dyQa0w10ouAcpfZbtsJC2woNdIxOOPPy5fmty+fTuuuOIKTJkyBQ899BBmz56NoqIimUS89tprGDNmTKsjETUKSaUXAJEHE5bklGmQgdcxIRrWlY/KC35NYsLbwTD+lUbruvO135BfWmH/PjTQiG+fu1GR3/LHv23HGOZSSPkp8ndsRHsgIALllWZE3vEdwHDNtpeU5ze/AbEo3Z5XN/Q+cO1HNFuWkohaBLSaZLWS688Li1aYayXXn/vapUmwhRbyGoloCo/KykqYTCaQVwtNpZa6E+GuLZBB38FUBGvy+w5VGSa+BSa4rcPnO45m4dUlfzl8fvekfrhxRO0OiJh9FML+byCWXIBUeF72RUHICUl5bUYhYfTdTjVfyj0JSbSCCU0EExDuVNm6melE5zJ0LhWkeLsEm1uFtMJcK7mURLhlLi2msCYkQi06lETUkgjJaoWQmwuzdQSgC4OxVy8ETbjWDuWnqw5gxV8nHaC9sk8S5s0c7vA52UlgdCZIFfmApQwIisG5rHx08jNHPP460dGFRe0s5Ll8WmGulVx/HVues5iWURMlEY30k+YDLyEG5pWPANXHGf/f3pXAR1Fk7697jtwnZ7gJIAgoN6igCIIoKoiKiqioq6J443qB4HqLq7uuLnj/xYMVUQ4V5BBEBRRE5VbuIDcBQkLuufr/ex0myWSSzHSmp4uZfvUTk8xU1av3vVevvq6qrnIdPgxPkRUOuX95ixMGDUZs97JXKpf9noXXPi871Ktyum5gZ9w4uFNQ3qi3zkppqXr+BN0ias1oAjkhocZ26C07KIVPZTKjbDPqbNZBjW2tJRpwXq0IMIk4XUlEZqZ6BoN3Y2Xxuu1wOZpCQcVAHNOlKxKHDCnXYNTT81BQUlr+d6zNgs+f8b0fozYH0TPYEOk5+dlMEJFQkyQh+ZqRsLVuXW0T9JSttROYUbYZdWYSobVnhJ7frH4WOnKRUwOTiNOYRFRuWt70D+DKzvZpbVzv3oi/0Hdj6oeL1yHrcD6aNkjGHUO7avJEPTt8weJFKN2wwUe+vV07JI24iklEJQT0xFyLsUXJNetALlJvtrWWnsF5tSLAJCJCSETJ2rUoXP6dT2uTb7wJtloOhNLqDHoGm/w5c+DYucOnCdRWanN1KZBsz8F1UJxFkJIyIKdnalWt1vyBZOsqrEplomSLkityMDWrbLZ1OHsw180kIkJIBDXTuScLrsNHIFks6rKApX59XT1Yz2BDR2mX/PqrT/tiOnZC4qnTSqs2vCbZ9Iqra9nT8Jw604LKWTqNgLXTCN1011NvrY0SJVuUXLMO5CL1Zltr7ZWcXwsCTCIiiEQEa9hHpn2H4ycLEGO34/6ruuPMVv6HTtVlNiBY+ZTPk5+P/Llz4Tp8SC1mqVcPScOGq9eMa5Ht2bMCzl/e9Ski2RNgv/JNLc3hmYjTZAZE5GBqVtlMInQLFVxRNQgwiYgyEnHtU7NR7HCVa0Vnccx8cgTi420BO4DWYOPcuxeenBwgxg5723aQbP4yPLm56hXwlrS0Og3krq3fwL1xpl/ZmKvfAyy1H80dUOFTGbTqHWy9weQTJVuUXLMO5CL1ZlsH0xM5T10RYBIRRSSCjrx+4v3lfhr1ap+BybdcENBHtASboh9/QNGPKwBZgmS1Qk5NQ+qYMerlXZScu3bCU1wMS2oarM2a1Vm258CvcK563XcmIrER6NAtvZIWvfWS6a1HlGxRckUOpmaVzbbWu9dyfZURYBIRRSRi2e+78drna/006tiqAaaMHRjQ84MNNqWbNuHEm9OguN1qnXJSEqwNGyLxkksRc/bZyPvkY7gOHiyXF9erF+IH1C6/NtmuX96Fe0/ZaZxSbAqs3W+G3KxXQH2CzRCs3sHWpyWfKNmi5Jp1IBepN9taS4/kvFoRYBIRRSSCVLniCd9LsRQa5CUJ/bu0wMPXnVOrfwQbbHLeeAOlmzf51GXLyEDCpUNhSU9H/tw5fnLSxz+szljUlALKdhRCcRZDStB3M6nI4C5SdkC8tUYSDflZtgawdMjKeOsAIldRIwJMIqKMRDz/8Sqs/mN/hVbEIiQ660nCVy9cGzKJUIqLkfPG63Du2wvFUXE5mLV+A6Tccgs8xUUoXLTIT07auHsgJybWnUSEsRObMciaUWeRpE2kbLZ1GIMHVw0mEVFGIkid+99YhKyDeX6avTh2ADrX8qZGsMHm+KuvqG9fuI8dheIs28SZ0O98JN90E1x79yJv5qc+suX4eKTde1/IBCZc/TVYvcMhX5RsUXJFDqZmlc22DkfP5Tq9CDCJiEIS8cQ7y7E5y/d0S1Lz3YcvQeP6KSHPBhSvXImin1aVHWntdMLSrCnS7ryrvN7CpUtR8vtv6t9SXBziBwxAbOezmERUg4CoAC9KrlkHcpF6s615wA8nAkwiopBE7DmSh/tfWwwFtJZRluLsNsx6uvojp715tASbk5/PAm2wlGQZUnw8Yrt08blVVHE4VJJBmy6DSVpkB1OfljxmlG1GnUUO5CJls621RAPOqxUBJhFRSCJIpdVbDuLDbzeiuMSJRmkJ5W9n0Gug7y7egMLiErRsnI5JN/YtRyDYYOM+dgy5//e+D3JKURHsXbpCttthbZKB2G5lt4sGm4KVHWx9WvKZUbYZdRY5kIuUzbbWEg04r1YEmEREKYnwqvXpd3+ov44a2BE7DuTg71OXwaN4yrVOirfjf5PKjpAONtg49/6FkzMrDoAiAuE8dAjWJk0hx8WqdcX16YP4/hcG7Y/Byg66Qg0ZzSjbjDpr8XEN7hN0VlGYi5JrVryDdogoycgkIkpJxLxVW/F/Czaqp0VSkmQJ6cmxOJ5b7Kfx1y9ep4lEuE+cQO6775TX4z5+DO7cPNhbtABOnVpJJ1Sm3PY3FP/0k7oBkw6hiunYEbZWfBV4ZQOICvCi5Jp5YBGFuSi5ZrZ1lPCDoNRgEhEFJIKOn3ZmZQEeN6wZGbB3OBPXPzMXhcUOH+1kWYbb46E3Pn0/V18BlZGaYMf0CcNrdRznnj2qrNI//1TvxaDXNokkQJLV+zG8SU5OhrVxYzi2b/epL/W222Cp739/Bge6oPqrbpkYb92gDLoiUZiLksskImjXiOiMTCIinETQzZ4nZ83y0SK+f3+M/mofnJ6KZQvKIEuAp2KvZdm2S4UIREXxVo1T8cYDQ6pFha72piu+vUlxuRDbsxesDeqj8NtvfcrEdOqM0i2b/epJGDQIsd17+H3Ogc7YOMJ4G4u3yAGVbW28rc0kkUlEhJMI7+uUEvIhoQQKYmBp1A537ElWN1VWTjarFQ6XE5JCUw9l35w6i6o8W6xVxufPjlT/prc8Xp25GgUlJWiYmoTJLR0o2bhB/c6Tlwd3Xh7k2FjEdjkbiE+EUlAAxe2CrVkzxF3QHyde/08VdD2IHzgYcT17Mok4hYCoAC9KrsjB1Kyy2dZmGtKN15VJRISTiIJFC+Fa/wksyp6KGYKEDvi01X2Yv3pbGUugPRGnZiEkL2vw/iQyoZwiEwpgkxXc0ykBF42+AsMnzoKn0tSF3QK8k7wHSnEJnAcPqPstJKcTsNtVMmFr1w5JVwyDrWVLVSbNkNBMiUXZBYtnJ4BS2NqeBVvPG2Bp7XshGAc6Yzs/420s3iIJDNvaeFubSSKTiAgnESWrv4Nz+SQfLehshvib38cRRxpmLNsIj8eDlVv2w+OuspYhlXMMv30S1U5TAPh7SjY65h+C69gxKE4HQETCXnZzpz0zU/2XNLLseG1PQQGKvl8AafvbgEVWz4yQE5MAyYKYEW8B1rJyIgOsWWXzwGJ8mBeFuSi5Zu1bxnuWWIlMIiKcRCjHd6J41gPqgK0O6HFxsNSvD/vACZAbdSrX7ooJn1UwBu8yhvrmRsXShjpdceptjprc8s4zk3He/nVwHtgHxUW3eJbVQRMatjZt1Au4Um+/o7y459BGOFe84ledffAzkNJaMYnYvRuZmZmGRwEeWAyHPOhXqPVuGdtab0S5vsoIMImIcBKBouMonf+Q/yB9yRRIyRnlnw+fMAueqgShytKGujwhSX77JCpXTq+DunNzkfv+e3AfzYb7RK76tfc6cFuLlki+/vryIsqxHXB896x/+y59GVJSY8NIhJJ3AO6s74GSPCChAazthgCxyaadBeGBxfiBQBTmouTyTITxPiZCIpOISCcRAFwbZsK97ZtyTSztLoa1240VA7nLhfFTv8XOwycrtK26o1L9mw7KLttxqf6/EsmQZaDHGRmYfEvZXgZ3djZK1q9D0aqfAJcTckoKIMtIunIE7G3b+qDq/O45eI5VvOopN+kOW78HffKENdB5XHAsGA+luIzwqKQnPRO2Qf9gEiEg6oTV1gH0MaNsM+osmsAI6FbCRDKJiAISoY73RTlASS6k2BQgvuK8BjrPoXDRQihOJ1Y6E7BWSYVdccPicGCNK1nlCWX8oeymDXVhotIrn8nxMZj++GWwnTpEqjq4nPv2AW43LI0aQY6LqxZR956V6iyAFF8Pcotz/PKEM9B5jmyG84eX/WTaT82GhFN2oJ4tSrYouaKDuxn1NqPOov0sUL+Ppu+ZREQJiajJKdVlh+PHfb5OvHQoLA0aqDMHi3fk4J1vNkA9UkLdEkFzEbKa326X8fb4oaifEh92nw9noPMc2gDnilf9ScSQFyGlNBW2Vi0y0IUT70DOwrIDIaTv94y3vnhybb4IMImIchKR8+orUNy0AbIixffti7i+/Xw+m796B+Z8twUJCXFIT4nDk7dcAJuBvSWcgU4pOQnn1/dDqXRniBRfH/bL/6VqGE7ZgSAUJVuUXLPiLVJvtnWgXsjfh4KAoSRi06ZNGD16NBo2bKi2uXv37nj5Zf9pZq9CU6ZMwWOPPRaKfnUuq2fHU3L3QinIBuzxkBt2DNgmPWXnvvO2uhGyPCmliO/eBLbmTSCnNIWc0QVFRU7c8PxcuKscZ5mcEIMZk64M2F49Muipc3Xt8RxcB/fOpeq+CDmpESztL4NUrw2TCD2Mp7GOcNu6tuaYUbYZdRZJ2jR2h4jPbiiJWLZsGWbPno1p06YFBVw0kAj35jlw/TGvXF+5QQfYBkyoVf9QO71r/z44Dx6CJMvw5OejeO0vp+SVIsa+BraM9PKzri0dLsPknxti057sat/KuLBrSzx8nf8ehhoVoL0VJSXqq6ZaUqg6a5FVNa8ZZZtRZ9EDiyjMRck1K96hxKJILGsoiSAC8cMPP6B///6Ij4/HxRdfDIvFUiNukU8iFDhm3w7FXeX46b73Q27qf/SzF4hQOn3ppo0oWLjQB9PEyy6DHBcPT/YvwN6KtzjUTLZ4PLL/GmTtP45TWyEqzVoArTJqvkujquGKfvwBxWvXqpsspYQEJFx4IegOjWBSKDoHUz8/nfoiwHiH6jXay4vCXJRcJhHafSQSSxhKIubNm4epU6fihhtuwPr167Fr1y7Mnz9fxW3lypVYtWqVH4YjR5bd4xCJSXYWIOXnZ/yaXtTuKpRmaHi616C8ZcliyIcP+5TwtGsH97nnIXbfcsRl+RIMyjhVGYs1O3KAU5srKxfObJyMB65oH7AF0rFjsH6zwCefYrPBNeqGgGU5AyPACDACeiNAm8TbtClbsuQUPgQMJRFV1ejcuTOWL1+OBvSmQDUp8mcigNIv7wFK8320s13wCOTGZ9Vo1VCeHHKnT4c7+4hP3fYOHZA0bDg8B3+Hc+VrPt/RqZF0euToZ+fhZFGpz3eyLOGjiSOQEh94i6Xjzz+Q//XXfjql3TkWcmpqQA8OReeAlQfIYEbZZtSZ3MCMeptRZ9G2DjUmRVJ5Q0nEokWL1BMRhwwZgpKSEnTo0AHbtm1DTEzFHQqVwTOMRLgdgMXuYze9Op579/dwr/u4fEnD0up8WHtXHAtdnbOEIrtg4Tco3bTJp9r4889H3LnnqZ+51s+AZ/f3UFylkNNawtLlBsgNz1S/I1vMWHEURwsKkBxnx4Trz0FKkK93OnbvQv4XX/ipk37f/UHtjwhF51A7nBllm1Fn0QOLKMxFyTUr3qHGo0grbyiJ2Lt3L6699lo0b94c9Pu4ceMwZsyYGjELN4mgJ3P3xs/gOXkIsMXB2u5iWDpfrbZH147ndkIpPArJngDQYVBhfDKmOzSISDizstRzIOzt26s3a1ZNtE9Dstjw3y9/wYEjhUhPisHVfRqHdI9D3icfw3XwYLmomLPPRuIllwZSV3+8g5JYkUlXW0eIbDPqrHu/ZlsHRMCsfhYQmCjKYCiJ8OJ28uRJJCYmQqazlGtJ4SYRjvkPQSnyPYjJNmAi5Abt9SURGh1Gj47nvQejNtGjnp6HgpKKJQybVcacZ0Pbg1K6dSuU4mJYUlNha906aM310DloYVUymlG2GXVmElHXHlL3cmb1s7ojFnklhZCIYGEKJ4lQSvLg+Oo+v6ZYe94GS+aFEU8iAmG8estBPP/JCr9sl53TFncN7xGouO7fmzXYiNJblFyzDuQi9WZb6x6uuMJKCJiWRMDtQOns2/2cwXbuvZCb9456EjHrhy34eNFmP/17ta+4ZMvInsKBzki0dV6u09h0trVGwELMzniHCCAXrxUB85II2mT42wdw71peDpCUlAH7xc8BFltUkwha6tjz2xbcP3uLn3OMHnwWrh/oe6qmenlW/iHAngBL895AfH3duxUHOt0hrbVCxttYvHkmwjx4G6+pWImmJhEEPW2uVPKPqAOk3Kw3JFusapFoCLLPf7wKe7NzER9rw52XdcWZrRrCU1SIkzNmwH3iBB7Pa4rDHqv34m8kx9swY9JVPh7pWvse3Fk/VhCtmGTYL3kBiEmus+d6sv+EZ98aKI5CSCnNYO04PCrwrgsgovxMlNxo6Vts6+AQMKufBYdOdOQyPYmoyYyR7vw3PjcPeYWVzn2QgH/dMxjNDuxA0fffl6udBxvW2dPRY9QIeAqP+76d4XGh9Ivb/CCy9rodltYX1KkHKHkH4Fj8hE9ZWj7a12hoSG+G1KkxpwpFuq3rorsZdTYrgWFb16WHcJlgEWASUQNSRnY89Q0RZzGkxEa6LaVc8cRnfpq1aZqK5zvZUVJ+l0ZZFjkuDmn33e8/G+AsQuncu/xJRLebYGk3OFgf88nn3vEtXOs+9it7oMdkZLZpW6c6Qy1kpK2rtlWUbFFyzTqQi9SbbR1qhODytSHAJEIwiXCtngb33tWnRnMbrD3G4C+lWUhP5fuPF+HuV/xPj2zSIAn/GZCBwm+X+GhtbdIEKTfeVO2SgnPJRDj3bIJSWAjaSyHHxiJ25L9AF4nVJbm3L4Jr/f/8ih7s8SRatzmjLlWGXMaMQdaMOoscyEXKZluHHCK4gloQYBIhkES4D/wG16r/+LZA8eBEajfUr5cGqV7bOi8bDJ/4OTweugyjt/B+UQAAHENJREFUIvXr0hyPXX8e8md/AceuXeoXdFFW0qVDYW3aFHt+WYOmTZvC1rQZpFOniJb+PB+l378NCXmAZIcbrWDrcS0SBl9cp46lHN8JxzLf+0Skhh2xv8W1IRGnOjXmVCEzBlkz6ixyIBcpm20dSnTgsoEQYBIhkkRsX6weQ+1NSkkulJw9KE1pg7iEJPVjy1kjYT3zikB29Pv+lU9/worNB1QiIUFCalIMPpowvDwfXREOlwtyWhpc+/fj5BefozA3V71dVbLbkXzNSFibNUPBooUo3bjRp35Lej2k3u7/emywjfTsWQF644M2VsqpLWDpdBWyjpxkEhEsgDrk44FFBxA1ViEKc1FyRRIn0bI1ukZEZ2cSIZBE0BsKzp+nVpCI3L0gIlGS3FYdzNWZgvRM2Af9o85OdvhYHhrXr/2o7YIF81G6ZQuKioqQEGcBpGLY23dB4vDrUbhkMUrWr/clEfUbIPU2/w2XdW5klLwNUxf9RQV4UXJFB3cz6m1GnUX7WV1iQaSWYRIhkESQaOfy5+E5uk1thZL7FxRrLErkpAoSkdqi7OyKMKSnpv+IXftz4CotRRupCPdblyLetkeVRJstY/rfAk9Cb+TPm+sjPe6ccxB/QX9dW8SBTlc4A1bGeAeESPcMojAXJVf0QC5Sb92d5zSukEmEYBKhkoejW6E4i+A5thPurfPVGQHvTAS9BWHtdpPuLjR+2lLs2Od7b0hb62E8Ez+rjEQkJ8PaoAHsQ16A41A+nLt3Q3G5YWvaBLE9eureHpEd3oyyzaizWQc1trXu4YorrIQAk4jTgERUboJ782yc+HM5UpISIDU4E9buNwNS7ReVafVoT1ERrnlxAZwu342XMZILHyRNg2S3wdo4A5LNBtv5D0PO6KJVhOb8HOg0QxZSAcY7JPjqVFgU5qLkmpW01ck5IrgQk4jTjESEo+O5srNRuGwp3AcPwnPyJDwlxRhr6QmX4qu8RfJgZscv1Y2V3mQf/AyktFZhd3EOdGGH2EcA420s3uHo18FqwLYOFinOVxcEmESYgESc/GwmnH/9BXg8cGRlqRo/mt4fuaAjrytSWqwb7565qPwDS8vzYO3jf9hUXRwtUBkOdIEQ0vd7xltfPIOpTRTmouSKJE6iZQfjD9GSh0mECUhEzmv/huJwQHE44dy3V9XYkpaG++SuKIEFHniQAAUv1z+E5DgHUJIHuGVIjTsg/sIBsDVrFnZ/50AXdoh5JsKkbwFx3zK2b5lNGpMIE5CIE29OA50LobjdcO4pe/vCUi8dltQ0uA4egJyeDqWkFI7DhyA7nEBsLKz16sFSrx6sjRohZcwtYe8XHOjCDjGTCCYRxjqZSfE2HGTBAplEmIBEFK34EcU//6zuh3BnH1X3RFjS02Fp0ACenBz1Jy1zuEtLIbtcgN1etqmyeXN1f0T6+IchWX2XPmryW7obw3N4I6B41KOxLUEelMUkwthIwHgbi7fI6XW2tfG2NpNEJhEmIBGkIpGI/C+/xONSZxxTbICk/od+9iLcat0H5/79cDtKITtdkGLsgNUGW0ZjyMkpKokIJnmyfoBz7fs+WS0dr4S1s+/14tXVxYEuGIT1y8N464dlsDWJwlyUXJHESbTsYH0iGvIxiTCYRCgnD8K97RsoBdlAbAqsbQeqr3JWTnp2+uufmYeiEoc6M0CsQVGIOlQkSZJwiz0b5x7aCDcdg+10QIqNVV8rtTVtirjz+iJh0KCgfN25eho83svETpWQ6rWB/aKnApbXU+eAwqpkMKNsM+osemARhbkouWbFW2v8ifT8TCIMJhGORU9AOXmgQqrFBvvlr0GKKbsrQ4+O9+yHq7DrUA5O5BfDoyhApVc56VdfGlEmM8Wi4KXC1YhNTobH5YStQSMkXHIJ7B2Cv62TSYT2cCAqwIuSq4d/a0e5ooQZ9TajzqL9LBQfjbSyTCIMJBFK/mE4Fj7qJ9F2/njIGV11IRG3v7IAR44XqHV5CYMCRb2Eq/yDGnQe1ycFA9u3hJwQD1uLlpp9mZczNENW7fXr2mvRXoIHFu2YhVpCFOai5IoeyEXqHaqvRFJ5JhE6kgilOBeu36bDk70FkiUGcvPeZSdOnkpKwWE4vqmGRPQbD7mJPiSiuivAaTJCKp9+oF8qpiYqf3dlva24bexYSEmN6+zDvLFSG3SiAp0ouWYeWERhLkqumW2tLQpEdm4mETqSCNeat+D+6yefGuneC7r/wpscS56Eklt2VoOarLGwX/5vSPaE8o9C6fTDnpgFmnnwTRXEIT0lAU6HE/nFDj/NH23+I87tPwjWTiMM9+pQdA61sWaUbUadzTqosa1DjRBcvjYEmEToSCJoqYKWLConS+sLYO11e/lHSmE23FsXgn5KsamQMy+EXL+dT5lQOv01/5iD0lKnbxusMlITYtGuaTom3tRX/e66f8xBUaV86dYSvNbmayR1uRLWbjca3mtC0TnUxppRthl1ZhIRak/RXt6sfqYdqcgtwSRCTxLx7WQoJ8oOc/ImS7uLNQ/KoXS85Rv24b9frIHD7VabkBQXi/9NGl6tlnM+nIp9RwvRITEXF6bvV28PTe53NyxtLzLco0PROdTGmlG2GXVmEhFqT9Fe3qx+ph2pyC3BJEJHEuHethCuDZ/61Gi78AlIaa3h3jADnqPbAYsdlua9YDlzWI1eY1TH8xzfBdev/wclb5/altzEM9Bo6JNCvNkonatTzoyyzagzkwjju7ZZ/cx4pMVJZBKhI4mgqjwH18GTsxuSbIXU+CzI6Zlw/fIu3HtW+JKLPmMhtyxbWqiaDO94jgIosg1Zew8gMzMzKG9Uik/Ac3QbJHrzI70NpMSGQZWrKZPhOldqiBllm1FnJhEhddE6FTarn9UJrAgtZCiJUBQFjz32GNatWweXy4WXXnoJffr0qRG6KVOmqPlFJD2d37FgPJTCYz5qWNoO8nlzo/KXespG4VG4diwB/QTtwWjaHZ5jO4HiHCC+HixtLoIUm4ysfYexbsNOXHV5v4Bwe45uhfP7KYBStmRCydbvIchNugUsyyTCFwFdba0BfVFyzTqQi9Sbba2hY3BWzQgYSiKWLl2K6dOn45NPPsGBAwcwbNgw/Pbbb9FPIqrbcHnGEFi7jq5Wdz07vWPxBCh5+8vleHJ2QUrLBJ1USUlKbYmbV5yNQpenLI8koWPDBEx58LIa7eJa+x7cWT/6kqKmPWDt+4BmB/QW0FNnrY0wo2wz6ixyIBcpm22tNSJwfi0IGEoiJk+ejPbt22P06LLBs2fPnliyZAnS09OrbXO0zES4Ns6Ce+t8Hx1t/R+F3KhzWEkEnYxJJ2SWJ0chPMd2QK7fFrAnqh9P2d4Vawub+rSD6MVXL15Xox85V7wKz6ENPt/TGya2gZO0+J5PXg50dYauTgUZ7zrBFlIhUZiLkiuSOImWHZKjRFhhQ0nEuHHjMHToUFx++eUqTIMGDcKbb76Jdu18X3H0YhgtJIL0ce/6DrSRUbLY1YOl5IwuNbqKt9N76DyJgiOQbPGQGnXS5FpzVmzH2i27EZO7A3c0X4/6NieU0gIox3eC7rPwHrP90Obzsc+Z7Ff3q3cOwhmt61Ur07X+f3BvX+RLIlpdAFvvildZNTXWxFcGiwrwouSKDu5m1NuMOov2M63xL5LzG0oiJk6ciM6dO2PUqFEqZr1798bChQtRr149rFy5EqtWrfLDcuTIkZGMb53bHrt3KeL2LCkv70pugfyu9wZV38tztuDA8aLyvLT5cVzj1eiT/BdsuTvhSm0LRbKo3z+/dwC2Fdf3q/c/d/SqUZbkKEDinx/Dmpel5nEnNUdBh1HwxPnXE1SDORMjwAgwAjojQHvw2rRpo3OtXF1VBAwlEQsWLMCXX36Jd955B8eOHVNnItavX1+jVaJpJkKL69GTQ7MNU6A4i32K2c65G3KLcwNWNXzCZ/BUObSyYZwTbw06ATmlqfqqqVJ0HFJ8fXgyL8W1b/4BT6VrudJiLPjoH9cElKOU5NG1oJDiUgPmDZSBn5YCIaTv94y3vngGU5sozEXJJUzMKjsYf4iWPIaSCI/HgzFjxiA3N1clES+88AIGDBjAJKIKAlnb/0CT9S/54WLtNhqWdkMC+t6wCZ/R2O6TkuNsmDH5qhrLTpq6CLl5BeiU2QB3Xd8/oAy9M5g12IjSW5RcMw8sojAXJdfMttY7Pp7O9RlKIrxAFBcXIzY2tvwNgZoAMvVMxB+vQynK8Z2J6Pcg5CbdA/rTiImz4KoyFdGsUQrefPCSWstysAkIre4ZRGEuSq6ZBxZRmIuSa2Zb6x4oTuMKhZCIYPEwM4loKR+E6/ePAFeJCpelZV9Y+4wNCrp/zlqDFev+Kr+Iy2a1YM6zgZcnONgEBa+umURhLkqumQcWUZiLkmtmW+saJE7zyphE1GCg06LjKR4oBdmALQ5SbIpmV1qyJgvJqTE4p32ToMqeFjoH1VJ9M5lRbzPqbNZBjW2tb7zg2nwRYBJxOpMIg72Vg43BgAvceMa2ZlsbgYBZ/cwIbE8XGUwimESUI2DWDm9Gvc2oM89EGD/smNXPjEdanEQmEUwimETs3h30xWN6d1VRQVaUXLMO5CL1Zlvr3Wu5vsoIMIlgEuFHIjx//QTPse2AbIHcqFNQb4SE2q040IWKoLbyjLc2vPTILQpzUXJFEifRsvXwl0ipg0kEkwgfEtHStR10rHXlZDv3XsjNe4fVpznQhRVev8oZb2PxFjmosa2Nt7WZJDKJYBLhQyKa//UpPEe3+aAit+wLW5Cvl9a183CgqytydSvHeNcNt1BKicJclFyRxEm07FD8JNLKMolgEuFDIprt/hBKTtmdGN5EsxA0GxHOxIEunOj61814G4u3yEGNbW28rc0kkUkEkwgfEtHi5Gq/GzotXW6AtX3tp12G2mk40IWKoLbyjLc2vPTILQpzUXJFEifRsvXwl0ipg0kEkwgfEpHZujVcv38IT/YfkCQZUpNusJ59Xdj9mQNd2CH2EcB4G4u3yEGNbW28rc0kkUkEkwhfEpGZKcT/OdAZCzvjbSzeTCLMg7fxmoqVyCSCSQSTCD4nwtAoxATGULhNex23SD8z1sJipTGJYBLBJIJJhKFRSGRwN6NsM+oscubH0M50GghjEsEkgkkEkwhDQxEPaobCzTMRxsJtOmlMIphEMIlgEmFo4GMSYSjcTCKMhdt00phEMIlgEsEkwtDAxyTCULiZRBgLt+mkMYlgEsEkgkmEoYGPSYShcDOJMBZu00ljEsEkgkkEkwhDAx+TCEPhZhJhLNymk8YkgkkEkwgmEYYGPiYRhsLNJMJYuE0njUkEkwgmEUwiDA18TCIMhZtJhLFwm04akwgmEUwimEQYGviYRBgKN5MIY+E2nTQmEUwimEQwiTA08DGJMBRuJhHGwm06aUwimEQwiWASYWjgYxJhKNxMIoyF23TSmEQwiWASwSTC0MDHJMJQuJlEGAu36aQxiWASwSSCSYShgY9JhKFwM4kwFm7TSWMSwSSCSQSTCEMDH5MIQ+FmEmEs3KaTxiSCSQSTCCYRhgY+JhGGws0kwli4TSeNSQSTCCYRTCIMDXxMIgyFm0mEsXCbTpqhJGLTpk0YPXo0GjZsqALdvXt3vPzyyzWCPmXKFDz22GNCjGLGQGdGncm5zKi3GXVmWxsfSs3qZ8YjLU6ioSRi2bJlmD17NqZNmxaUxkwigoJJt0xm7fBm1NuMOjOJ0C1UBF2RWf0saICiIKOhJIIIxA8//ID+/fsjPj4eF198MSwWC89EVEFAVMcTJdeswV2k3mxr46O3KMxFyRXp36JlG+9d4iSGhUTMnDkT9K9yeuihh3DixAlMnToVN9xwA9avX49du3Zh/vz5araVK1di1apVPmVsNhucTqc4dFgyI8AIMAKMQEQi0KBBA9x2220R2fZIanRYSITL5QL9q5zsdjtkWfb5rHPnzli+fDnI2NUlkcsZZpRtRp3J78yotxl1ZlsbPzSZ1c+MR1qcxLCQiJrUWbRoESRJwpAhQ1BSUoIOHTpg27ZtiImJYRJRCQFRHU+UXLMGd5F6s62ND7qiMBclV6R/i5ZtvHeJk2goidi7dy+uvfZaNG/eHPT7uHHjMGbMmBq1Z+c31jEYb2PxFhno2NZsayMQMKufGYHt6SLDUBLhVfrkyZNITEz0W96oCopZHVCU3qLkihxMzSqbbW18CBaFuSi5Zu1bxnuWWIlCSESwKtNmy379+gWbXdd8ZpRtRp3Jacyotxl1ZlvrGiKDqsysfhYUOFGS6bQmEVGCMavBCDACjAAjwAhEJQJMIqLSrKwUI8AIMAKMACMQfgSYRIQfY5bACDACjAAjwAhEJQIRSyJyc3PxwAMPIDk5GW+88YZqHK13c9RkUToAi+7s+Oqrr9CmTRs126effop33nlH/X3UqFG48847w+oQXbt2Rf369VUZdKrn4sWLwyZPURRV33Xr1qnne7z00kvo06dP2ORVrvjdd9/Fe++9h6SkJPXjW2+9Vb1fJZxJlH3dbjdeeeUV9ej3X375RVefDYQXHfJGB8DRK9YDBgzA008/DSPsTv509913IysrC8XFxXjkkUdw5ZVXwgi702F29AYY6VxaWoq3334bZ5xxhhonHnzwQbVftWvXDq+//nqtJ+cGwra672uSbWS//uijj/DFF1+occwIW1fGgXBv1qwZJkyYoLut//a3v6kHFVqtVlXka6+9hk6dOgmLYXXxj2gqE7EkgggEnTNBx2h7T8fUejdHdYb86aefsGTJErXeN998U5VBb5Ocf/75WLNmjeq455xzDhYsWIBGjRqFxRdosDn77LOxZcuWsNRftdKlS5di+vTp+OSTT3DgwAEMGzYMv/32myGyJ02ahLPOOkt99deIJNK+NJA3btxYJb/79+9X1dXDZwPhlpOTo+JLRJQOfOvWrRvmzZuHnTt3ht3uJJP865///CeOHTuG3r17qxeeGWH3xx9/XD2ThkjTZ599pvbr999/X+3L9JMIxT333IOBAwfi6quvDgSjpu+rk00PIUb163379mHs2LHIzs7Gr7/+qtrAqD5OpIXeCDn33HNV0qy3rcl+RMS9FzmSYYzUT5MjmCBzxJIIsg3t/P3vf/9bTiK03s1Rm30HDRqk1k0k4rvvvlNnIujpidLf//53nHfeebjqqqvC4iLHjx/H0KFD8fzzz4NmXKgtqampYZFFlU6ePBnt27cvnwHo2bOnGnDT09PDJtNb8X333Qd6OqO7VGjWhwYZI5JI+9ITmpdE6OmzweBGBJVOiiUy9e9//9tQu9NsxHXXXafOwhht91dffVXtS0899ZT61EqH3FGiWSnydZqNCFfyyqbZD6P6NcWm5557DjfffLNKIozq4xS76FqDe++9V30QIxKht63poYNmL4mM0oxpZmamYfqFy0ciud7TnkTQ1GfllJGRoc4QVEci6Omqprs5qhrpySefxObNm30+pqeTevXqqZ9VHmRmzZqlBj7qEJSo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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>We can see here that <code>SMC</code> has done a pretty good job.</p>\n<p>The intuition of how SMC does well is that it is searching the space of solutions with some backtracking (because it has a whole population of guesses to rely on), and moreover, this search results in unbiased sampling from the distribution of interest. So if it makes a series of guesses the leads it astray, it can throw away this possiblity at a later stage.</p>\n\n</div>\n</div>\n</div>\n</div>\n</body>\n\n\n\n\n\n\n\n</html>\n"
  },
  {
    "path": "docs/docs/notebooks/Sampling.html",
    "content": "<!DOCTYPE html>\n<html>\n<head><meta charset=\"utf-8\" />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n<title>Sampling</title><script src=\"https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js\"></script>\n\n\n\n\n<style type=\"text/css\">\n    pre { line-height: 125%; }\ntd.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\nspan.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\ntd.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\nspan.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.highlight .hll { background-color: var(--jp-cell-editor-active-background) }\n.highlight { background: var(--jp-cell-editor-background); color: var(--jp-mirror-editor-variable-color) }\n.highlight .c { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment */\n.highlight .err { color: var(--jp-mirror-editor-error-color) } /* Error */\n.highlight .k { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword */\n.highlight .o { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator */\n.highlight .p { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation */\n.highlight .ch { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Hashbang */\n.highlight .cm { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Multiline */\n.highlight .cp { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Preproc */\n.highlight .cpf { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.PreprocFile */\n.highlight .c1 { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Single */\n.highlight .cs { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Special */\n.highlight .kc { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Constant */\n.highlight .kd { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Declaration */\n.highlight .kn { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Namespace */\n.highlight .kp { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Pseudo */\n.highlight .kr { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Reserved */\n.highlight .kt { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Type */\n.highlight .m { color: var(--jp-mirror-editor-number-color) } /* Literal.Number */\n.highlight .s { color: var(--jp-mirror-editor-string-color) } /* Literal.String */\n.highlight .ow { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator.Word */\n.highlight .w { color: var(--jp-mirror-editor-variable-color) } /* Text.Whitespace */\n.highlight .mb { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Bin */\n.highlight .mf { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Float */\n.highlight .mh { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Hex */\n.highlight .mi { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer */\n.highlight .mo { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Oct */\n.highlight .sa { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Affix */\n.highlight .sb { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Backtick */\n.highlight .sc { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Char */\n.highlight .dl { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Delimiter */\n.highlight .sd { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Doc */\n.highlight .s2 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Double */\n.highlight .se { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Escape */\n.highlight .sh { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Heredoc */\n.highlight .si { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Interpol */\n.highlight .sx { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Other */\n.highlight .sr { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Regex */\n.highlight .s1 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Single */\n.highlight .ss { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Symbol */\n.highlight .il { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer.Long */\n  </style>\n\n\n\n<style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\n * Mozilla scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n[data-jp-theme-scrollbars='true'] {\n  scrollbar-color: rgb(var(--jp-scrollbar-thumb-color))\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar. These selectors\n * will match lower in the tree, and so will override the above */\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n  scrollbar-width: thin;\n}\n\n/*\n * Webkit scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-corner {\n  background: var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-thumb {\n  background: rgb(var(--jp-scrollbar-thumb-color));\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-right: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-bottom: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar */\n\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-corner,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-corner {\n  background-color: transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-thumb,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid transparent;\n  border-right: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid transparent;\n  border-bottom: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny::-webkit-scrollbar,\n.jp-scrollbar-tiny::-webkit-scrollbar-corner {\n  background-color: transparent;\n  height: 4px;\n  width: 4px;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:horizontal {\n  border-left: 0px solid transparent;\n  border-right: 0px solid transparent;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:vertical {\n  border-top: 0px solid transparent;\n  border-bottom: 0px solid transparent;\n}\n\n/*\n * Phosphor\n */\n\n.lm-ScrollBar[data-orientation='horizontal'] {\n  min-height: 16px;\n  max-height: 16px;\n  min-width: 45px;\n  border-top: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] {\n  min-width: 16px;\n  max-width: 16px;\n  min-height: 45px;\n  border-left: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar-button {\n  background-color: #f0f0f0;\n  background-position: center center;\n  min-height: 15px;\n  max-height: 15px;\n  min-width: 15px;\n  max-width: 15px;\n}\n\n.lm-ScrollBar-button:hover {\n  background-color: #dadada;\n}\n\n.lm-ScrollBar-button.lm-mod-active {\n  background-color: #cdcdcd;\n}\n\n.lm-ScrollBar-track {\n  background: #f0f0f0;\n}\n\n.lm-ScrollBar-thumb {\n  background: #cdcdcd;\n}\n\n.lm-ScrollBar-thumb:hover {\n  background: #bababa;\n}\n\n.lm-ScrollBar-thumb.lm-mod-active {\n  background: #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal'] .lm-ScrollBar-thumb {\n  height: 100%;\n  min-width: 15px;\n  border-left: 1px solid #a0a0a0;\n  border-right: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] .lm-ScrollBar-thumb {\n  width: 100%;\n  min-height: 15px;\n  border-top: 1px solid #a0a0a0;\n  border-bottom: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-left);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-right);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-up);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-down);\n  background-size: 17px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Widget, /* </DEPRECATED> */\n.lm-Widget {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  cursor: default;\n}\n\n\n/* <DEPRECATED> */ .p-Widget.p-mod-hidden, /* </DEPRECATED> */\n.lm-Widget.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-CommandPalette, /* </DEPRECATED> */\n.lm-CommandPalette {\n  display: flex;\n  flex-direction: column;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-search, /* </DEPRECATED> */\n.lm-CommandPalette-search {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-content, /* </DEPRECATED> */\n.lm-CommandPalette-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  min-height: 0;\n  overflow: auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-header, /* </DEPRECATED> */\n.lm-CommandPalette-header {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-item, /* </DEPRECATED> */\n.lm-CommandPalette-item {\n  display: flex;\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemIcon, /* </DEPRECATED> */\n.lm-CommandPalette-itemIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemContent, /* </DEPRECATED> */\n.lm-CommandPalette-itemContent {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemShortcut, /* </DEPRECATED> */\n.lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemLabel, /* </DEPRECATED> */\n.lm-CommandPalette-itemLabel {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.lm-close-icon {\n\tborder:1px solid transparent;\n  background-color: transparent;\n  position: absolute;\n\tz-index:1;\n\tright:3%;\n\ttop: 0;\n\tbottom: 0;\n\tmargin: auto;\n\tpadding: 7px 0;\n\tdisplay: none;\n\tvertical-align: middle;\n  outline: 0;\n  cursor: pointer;\n}\n.lm-close-icon:after {\n\tcontent: \"X\";\n\tdisplay: block;\n\twidth: 15px;\n\theight: 15px;\n\ttext-align: center;\n\tcolor:#000;\n\tfont-weight: normal;\n\tfont-size: 12px;\n\tcursor: pointer;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-DockPanel, /* </DEPRECATED> */\n.lm-DockPanel {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-widget, /* </DEPRECATED> */\n.lm-DockPanel-widget {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-tabBar, /* </DEPRECATED> */\n.lm-DockPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle, /* </DEPRECATED> */\n.lm-DockPanel-handle {\n  z-index: 2;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle:after, /* </DEPRECATED> */\n.lm-DockPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal'] {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical'] {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal']:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical']:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay, /* </DEPRECATED> */\n.lm-DockPanel-overlay {\n  z-index: 3;\n  box-sizing: border-box;\n  pointer-events: none;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-overlay.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Menu, /* </DEPRECATED> */\n.lm-Menu {\n  z-index: 10000;\n  position: absolute;\n  white-space: nowrap;\n  overflow-x: hidden;\n  overflow-y: auto;\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-content, /* </DEPRECATED> */\n.lm-Menu-content {\n  margin: 0;\n  padding: 0;\n  display: table;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-item, /* </DEPRECATED> */\n.lm-Menu-item {\n  display: table-row;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-item.p-mod-hidden,\n.p-Menu-item.p-mod-collapsed,\n/* </DEPRECATED> */\n.lm-Menu-item.lm-mod-hidden,\n.lm-Menu-item.lm-mod-collapsed {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-itemIcon,\n.p-Menu-itemSubmenuIcon,\n/* </DEPRECATED> */\n.lm-Menu-itemIcon,\n.lm-Menu-itemSubmenuIcon {\n  display: table-cell;\n  text-align: center;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemLabel, /* </DEPRECATED> */\n.lm-Menu-itemLabel {\n  display: table-cell;\n  text-align: left;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemShortcut, /* </DEPRECATED> */\n.lm-Menu-itemShortcut {\n  display: table-cell;\n  text-align: right;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-MenuBar, /* </DEPRECATED> */\n.lm-MenuBar {\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-MenuBar-content, /* </DEPRECATED> */\n.lm-MenuBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex-direction: row;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p--MenuBar-item, /* </DEPRECATED> */\n.lm-MenuBar-item {\n  box-sizing: border-box;\n}\n\n\n/* <DEPRECATED> */\n.p-MenuBar-itemIcon,\n.p-MenuBar-itemLabel,\n/* </DEPRECATED> */\n.lm-MenuBar-itemIcon,\n.lm-MenuBar-itemLabel {\n  display: inline-block;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-ScrollBar, /* </DEPRECATED> */\n.lm-ScrollBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='horizontal'] {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='vertical'] {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-button, /* </DEPRECATED> */\n.lm-ScrollBar-button {\n  box-sizing: border-box;\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-track, /* </DEPRECATED> */\n.lm-ScrollBar-track {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  flex: 1 1 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-thumb, /* </DEPRECATED> */\n.lm-ScrollBar-thumb {\n  box-sizing: border-box;\n  position: absolute;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-SplitPanel-child, /* </DEPRECATED> */\n.lm-SplitPanel-child {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle, /* </DEPRECATED> */\n.lm-SplitPanel-handle {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-SplitPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle:after, /* </DEPRECATED> */\n.lm-SplitPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabBar, /* </DEPRECATED> */\n.lm-TabBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='horizontal'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] {\n  flex-direction: row;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='vertical'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] {\n  flex-direction: column;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-content, /* </DEPRECATED> */\n.lm-TabBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex: 1 1 auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='horizontal'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] > .lm-TabBar-content {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='vertical'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] > .lm-TabBar-content {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar-tab {\n  display: flex;\n  flex-direction: row;\n  box-sizing: border-box;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar-tabIcon,\n.p-TabBar-tabCloseIcon,\n/* </DEPRECATED> */\n.lm-TabBar-tabIcon,\n.lm-TabBar-tabCloseIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tabLabel, /* </DEPRECATED> */\n.lm-TabBar-tabLabel {\n  flex: 1 1 auto;\n  overflow: hidden;\n  white-space: nowrap;\n}\n\n\n.lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab.p-mod-hidden, /* </DEPRECATED> */\n.lm-TabBar-tab.lm-mod-hidden {\n  display: none !important;\n}\n\n\n.lm-TabBar-addButton.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar.p-mod-dragging .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab {\n  position: relative;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='horizontal'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='horizontal'] .lm-TabBar-tab {\n  left: 0;\n  transition: left 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='vertical'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='vertical'] .lm-TabBar-tab {\n  top: 0;\n  transition: top 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging .p-TabBar-tab.p-mod-dragging,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab.lm-mod-dragging {\n  transition: none;\n}\n\n.lm-TabBar-tabLabel .lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n  background: inherit;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabPanel-tabBar, /* </DEPRECATED> */\n.lm-TabPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-TabPanel-stackedPanel, /* </DEPRECATED> */\n.lm-TabPanel-stackedPanel {\n  z-index: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n@charset \"UTF-8\";\nhtml{\n  -webkit-box-sizing:border-box;\n          box-sizing:border-box; }\n\n*,\n*::before,\n*::after{\n  -webkit-box-sizing:inherit;\n          box-sizing:inherit; }\n\nbody{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none;\n  color:#182026;\n  font-family:-apple-system, \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Open Sans\", \"Helvetica Neue\", \"Icons16\", sans-serif; }\n\np{\n  margin-bottom:10px;\n  margin-top:0; }\n\nsmall{\n  font-size:12px; }\n\nstrong{\n  font-weight:600; }\n\n::-moz-selection{\n  background:rgba(125, 188, 255, 0.6); }\n\n::selection{\n  background:rgba(125, 188, 255, 0.6); }\n.bp3-heading{\n  color:#182026;\n  font-weight:600;\n  margin:0 0 10px;\n  padding:0; }\n  .bp3-dark .bp3-heading{\n    color:#f5f8fa; }\n\nh1.bp3-heading, .bp3-running-text h1{\n  font-size:36px;\n  line-height:40px; }\n\nh2.bp3-heading, .bp3-running-text h2{\n  font-size:28px;\n  line-height:32px; }\n\nh3.bp3-heading, .bp3-running-text h3{\n  font-size:22px;\n  line-height:25px; }\n\nh4.bp3-heading, .bp3-running-text h4{\n  font-size:18px;\n  line-height:21px; }\n\nh5.bp3-heading, .bp3-running-text h5{\n  font-size:16px;\n  line-height:19px; }\n\nh6.bp3-heading, .bp3-running-text h6{\n  font-size:14px;\n  line-height:16px; }\n.bp3-ui-text{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none; }\n\n.bp3-monospace-text{\n  font-family:monospace;\n  text-transform:none; }\n\n.bp3-text-muted{\n  color:#5c7080; }\n  .bp3-dark .bp3-text-muted{\n    color:#a7b6c2; }\n\n.bp3-text-disabled{\n  color:rgba(92, 112, 128, 0.6); }\n  .bp3-dark .bp3-text-disabled{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-text-overflow-ellipsis{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal; }\n.bp3-running-text{\n  font-size:14px;\n  line-height:1.5; }\n  .bp3-running-text h1{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h1{\n      color:#f5f8fa; }\n  .bp3-running-text h2{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h2{\n      color:#f5f8fa; }\n  .bp3-running-text h3{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h3{\n      color:#f5f8fa; }\n  .bp3-running-text h4{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h4{\n      color:#f5f8fa; }\n  .bp3-running-text h5{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h5{\n      color:#f5f8fa; }\n  .bp3-running-text h6{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h6{\n      color:#f5f8fa; }\n  .bp3-running-text hr{\n    border:none;\n    border-bottom:1px solid rgba(16, 22, 26, 0.15);\n    margin:20px 0; }\n    .bp3-dark .bp3-running-text hr{\n      border-color:rgba(255, 255, 255, 0.15); }\n  .bp3-running-text p{\n    margin:0 0 10px;\n    padding:0; }\n\n.bp3-text-large{\n  font-size:16px; }\n\n.bp3-text-small{\n  font-size:12px; }\na{\n  color:#106ba3;\n  text-decoration:none; }\n  a:hover{\n    color:#106ba3;\n    cursor:pointer;\n    text-decoration:underline; }\n  a .bp3-icon, a .bp3-icon-standard, a .bp3-icon-large{\n    color:inherit; }\n  a code,\n  .bp3-dark a code{\n    color:inherit; }\n  .bp3-dark a,\n  .bp3-dark a:hover{\n    color:#48aff0; }\n    .bp3-dark a .bp3-icon, .bp3-dark a .bp3-icon-standard, .bp3-dark a .bp3-icon-large,\n    .bp3-dark a:hover .bp3-icon,\n    .bp3-dark a:hover .bp3-icon-standard,\n    .bp3-dark a:hover .bp3-icon-large{\n      color:inherit; }\n.bp3-running-text code, .bp3-code{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  font-size:smaller;\n  padding:2px 5px; }\n  .bp3-dark .bp3-running-text code, .bp3-running-text .bp3-dark code, .bp3-dark .bp3-code{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n  .bp3-running-text a > code, a > .bp3-code{\n    color:#137cbd; }\n    .bp3-dark .bp3-running-text a > code, .bp3-running-text .bp3-dark a > code, .bp3-dark a > .bp3-code{\n      color:inherit; }\n\n.bp3-running-text pre, .bp3-code-block{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n  color:#182026;\n  display:block;\n  font-size:13px;\n  line-height:1.4;\n  margin:10px 0;\n  padding:13px 15px 12px;\n  word-break:break-all;\n  word-wrap:break-word; }\n  .bp3-dark .bp3-running-text pre, .bp3-running-text .bp3-dark pre, .bp3-dark .bp3-code-block{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n  .bp3-running-text pre > code, .bp3-code-block > code{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit;\n    font-size:inherit;\n    padding:0; }\n\n.bp3-running-text kbd, .bp3-key{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-family:inherit;\n  font-size:12px;\n  height:24px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  line-height:24px;\n  min-width:24px;\n  padding:3px 6px;\n  vertical-align:middle; }\n  .bp3-running-text kbd .bp3-icon, .bp3-key .bp3-icon, .bp3-running-text kbd .bp3-icon-standard, .bp3-key .bp3-icon-standard, .bp3-running-text kbd .bp3-icon-large, .bp3-key .bp3-icon-large{\n    margin-right:5px; }\n  .bp3-dark .bp3-running-text kbd, .bp3-running-text .bp3-dark kbd, .bp3-dark .bp3-key{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n.bp3-running-text blockquote, .bp3-blockquote{\n  border-left:solid 4px rgba(167, 182, 194, 0.5);\n  margin:0 0 10px;\n  padding:0 20px; }\n  .bp3-dark .bp3-running-text blockquote, .bp3-running-text .bp3-dark blockquote, .bp3-dark .bp3-blockquote{\n    border-color:rgba(115, 134, 148, 0.5); }\n.bp3-running-text ul,\n.bp3-running-text ol, .bp3-list{\n  margin:10px 0;\n  padding-left:30px; }\n  .bp3-running-text ul li:not(:last-child), .bp3-running-text ol li:not(:last-child), .bp3-list li:not(:last-child){\n    margin-bottom:5px; }\n  .bp3-running-text ul ol, .bp3-running-text ol ol, .bp3-list ol,\n  .bp3-running-text ul ul,\n  .bp3-running-text ol ul,\n  .bp3-list ul{\n    margin-top:5px; }\n\n.bp3-list-unstyled{\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-list-unstyled li{\n    padding:0; }\n.bp3-rtl{\n  text-align:right; }\n\n.bp3-dark{\n  color:#f5f8fa; }\n\n:focus{\n  outline:rgba(19, 124, 189, 0.6) auto 2px;\n  outline-offset:2px;\n  -moz-outline-radius:6px; }\n\n.bp3-focus-disabled :focus{\n  outline:none !important; }\n  .bp3-focus-disabled :focus ~ .bp3-control-indicator{\n    outline:none !important; }\n\n.bp3-alert{\n  max-width:400px;\n  padding:20px; }\n\n.bp3-alert-body{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-alert-body .bp3-icon{\n    font-size:40px;\n    margin-right:20px;\n    margin-top:0; }\n\n.bp3-alert-contents{\n  word-break:break-word; }\n\n.bp3-alert-footer{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:reverse;\n      -ms-flex-direction:row-reverse;\n          flex-direction:row-reverse;\n  margin-top:10px; }\n  .bp3-alert-footer .bp3-button{\n    margin-left:10px; }\n.bp3-breadcrumbs{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  cursor:default;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:wrap;\n      flex-wrap:wrap;\n  height:30px;\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-breadcrumbs > li{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n    .bp3-breadcrumbs > li::after{\n      background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z' fill='%235C7080'/%3e%3c/svg%3e\");\n      content:\"\";\n      display:block;\n      height:16px;\n      margin:0 5px;\n      width:16px; }\n    .bp3-breadcrumbs > li:last-of-type::after{\n      display:none; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumb-current,\n.bp3-breadcrumbs-collapsed{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-size:16px; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumbs-collapsed{\n  color:#5c7080; }\n\n.bp3-breadcrumb:hover{\n  text-decoration:none; }\n\n.bp3-breadcrumb.bp3-disabled{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-breadcrumb .bp3-icon{\n  margin-right:5px; }\n\n.bp3-breadcrumb-current{\n  color:inherit;\n  font-weight:600; }\n  .bp3-breadcrumb-current .bp3-input{\n    font-size:inherit;\n    font-weight:inherit;\n    vertical-align:baseline; }\n\n.bp3-breadcrumbs-collapsed{\n  background:#ced9e0;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  margin-right:2px;\n  padding:1px 5px;\n  vertical-align:text-bottom; }\n  .bp3-breadcrumbs-collapsed::before{\n    background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cg fill='%235C7080'%3e%3ccircle cx='2' cy='8.03' r='2'/%3e%3ccircle cx='14' cy='8.03' r='2'/%3e%3ccircle cx='8' cy='8.03' r='2'/%3e%3c/g%3e%3c/svg%3e\") center no-repeat;\n    content:\"\";\n    display:block;\n    height:16px;\n    width:16px; }\n  .bp3-breadcrumbs-collapsed:hover{\n    background:#bfccd6;\n    color:#182026;\n    text-decoration:none; }\n\n.bp3-dark .bp3-breadcrumb,\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumbs > li::after{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumb.bp3-disabled{\n  color:rgba(167, 182, 194, 0.6); }\n\n.bp3-dark .bp3-breadcrumb-current{\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-breadcrumbs-collapsed:hover{\n    background:rgba(16, 22, 26, 0.6);\n    color:#f5f8fa; }\n.bp3-button{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  min-height:30px;\n  min-width:30px; }\n  .bp3-button > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-button > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-button::before,\n  .bp3-button > *{\n    margin-right:7px; }\n  .bp3-button:empty::before,\n  .bp3-button > :last-child{\n    margin-right:0; }\n  .bp3-button:empty{\n    padding:0 !important; }\n  .bp3-button:disabled, .bp3-button.bp3-disabled{\n    cursor:not-allowed; }\n  .bp3-button.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button.bp3-align-right,\n  .bp3-align-right .bp3-button{\n    text-align:right; }\n  .bp3-button.bp3-align-left,\n  .bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026; }\n    .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active:hover, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-button.bp3-intent-primary{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover, .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover{\n      background-color:#106ba3;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      background-color:#0e5a8a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:disabled, .bp3-button.bp3-intent-primary.bp3-disabled{\n      background-color:rgba(19, 124, 189, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-success{\n    background-color:#0f9960;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover, .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover{\n      background-color:#0d8050;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      background-color:#0a6640;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:disabled, .bp3-button.bp3-intent-success.bp3-disabled{\n      background-color:rgba(15, 153, 96, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-warning{\n    background-color:#d9822b;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover, .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover{\n      background-color:#bf7326;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      background-color:#a66321;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:disabled, .bp3-button.bp3-intent-warning.bp3-disabled{\n      background-color:rgba(217, 130, 43, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-danger{\n    background-color:#db3737;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover, .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover{\n      background-color:#c23030;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      background-color:#a82a2a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:disabled, .bp3-button.bp3-intent-danger.bp3-disabled{\n      background-color:rgba(219, 55, 55, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n    stroke:#ffffff; }\n  .bp3-button.bp3-large,\n  .bp3-large .bp3-button{\n    min-height:40px;\n    min-width:40px;\n    font-size:16px;\n    padding:5px 15px; }\n    .bp3-button.bp3-large::before,\n    .bp3-button.bp3-large > *,\n    .bp3-large .bp3-button::before,\n    .bp3-large .bp3-button > *{\n      margin-right:10px; }\n    .bp3-button.bp3-large:empty::before,\n    .bp3-button.bp3-large > :last-child,\n    .bp3-large .bp3-button:empty::before,\n    .bp3-large .bp3-button > :last-child{\n      margin-right:0; }\n  .bp3-button.bp3-small,\n  .bp3-small .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-button.bp3-loading{\n    position:relative; }\n    .bp3-button.bp3-loading[class*=\"bp3-icon-\"]::before{\n      visibility:hidden; }\n    .bp3-button.bp3-loading .bp3-button-spinner{\n      margin:0;\n      position:absolute; }\n    .bp3-button.bp3-loading > :not(.bp3-button-spinner){\n      visibility:hidden; }\n  .bp3-button[class*=\"bp3-icon-\"]::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    color:#5c7080; }\n  .bp3-button .bp3-icon, .bp3-button .bp3-icon-standard, .bp3-button .bp3-icon-large{\n    color:#5c7080; }\n    .bp3-button .bp3-icon.bp3-align-right, .bp3-button .bp3-icon-standard.bp3-align-right, .bp3-button .bp3-icon-large.bp3-align-right{\n      margin-left:7px; }\n  .bp3-button .bp3-icon:first-child:last-child,\n  .bp3-button .bp3-spinner + .bp3-icon:last-child{\n    margin:0 -7px; }\n  .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"])[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n      color:#a7b6c2; }\n  .bp3-dark .bp3-button[class*=\"bp3-intent-\"]{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:hover{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.3); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n      stroke:#8a9ba8; }\n  .bp3-button:disabled::before,\n  .bp3-button:disabled .bp3-icon, .bp3-button:disabled .bp3-icon-standard, .bp3-button:disabled .bp3-icon-large, .bp3-button.bp3-disabled::before,\n  .bp3-button.bp3-disabled .bp3-icon, .bp3-button.bp3-disabled .bp3-icon-standard, .bp3-button.bp3-disabled .bp3-icon-large, .bp3-button[class*=\"bp3-intent-\"]::before,\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-icon, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-standard, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-large{\n    color:inherit !important; }\n  .bp3-button.bp3-minimal{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button.bp3-minimal:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-minimal:active, .bp3-button.bp3-minimal.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-minimal:disabled, .bp3-button.bp3-minimal:disabled:hover, .bp3-button.bp3-minimal.bp3-disabled, .bp3-button.bp3-minimal.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-minimal{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-minimal:hover, .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-minimal:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-minimal:disabled, .bp3-dark .bp3-button.bp3-minimal:disabled:hover, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover, .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover, .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover, .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover, .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button.bp3-outlined{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    border:1px solid rgba(24, 32, 38, 0.2);\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box; }\n    .bp3-button.bp3-outlined:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-outlined:active, .bp3-button.bp3-outlined.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-outlined:hover, .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-outlined:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover, .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover, .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover, .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover, .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      border-color:rgba(92, 112, 128, 0.1); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      border-color:rgba(255, 255, 255, 0.4); }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        border-color:rgba(255, 255, 255, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      border-color:rgba(16, 107, 163, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        border-color:rgba(16, 107, 163, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        border-color:rgba(72, 175, 240, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          border-color:rgba(72, 175, 240, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      border-color:rgba(13, 128, 80, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        border-color:rgba(13, 128, 80, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        border-color:rgba(61, 204, 145, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          border-color:rgba(61, 204, 145, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      border-color:rgba(191, 115, 38, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        border-color:rgba(191, 115, 38, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        border-color:rgba(255, 179, 102, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          border-color:rgba(255, 179, 102, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      border-color:rgba(194, 48, 48, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        border-color:rgba(194, 48, 48, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        border-color:rgba(255, 115, 115, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          border-color:rgba(255, 115, 115, 0.2); }\n\na.bp3-button{\n  text-align:center;\n  text-decoration:none;\n  -webkit-transition:none;\n  transition:none; }\n  a.bp3-button, a.bp3-button:hover, a.bp3-button:active{\n    color:#182026; }\n  a.bp3-button.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6); }\n\n.bp3-button-text{\n  -webkit-box-flex:0;\n      -ms-flex:0 1 auto;\n          flex:0 1 auto; }\n\n.bp3-button.bp3-align-left .bp3-button-text, .bp3-button.bp3-align-right .bp3-button-text,\n.bp3-button-group.bp3-align-left .bp3-button-text,\n.bp3-button-group.bp3-align-right .bp3-button-text{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto; }\n.bp3-button-group{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex; }\n  .bp3-button-group .bp3-button{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    position:relative;\n    z-index:4; }\n    .bp3-button-group .bp3-button:focus{\n      z-index:5; }\n    .bp3-button-group .bp3-button:hover{\n      z-index:6; }\n    .bp3-button-group .bp3-button:active, .bp3-button-group .bp3-button.bp3-active{\n      z-index:7; }\n    .bp3-button-group .bp3-button:disabled, .bp3-button-group .bp3-button.bp3-disabled{\n      z-index:3; }\n    .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]{\n      z-index:9; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:focus{\n        z-index:10; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:hover{\n        z-index:11; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n        z-index:12; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n        z-index:8; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:first-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:first-child){\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    border-bottom-right-radius:0;\n    border-top-right-radius:0;\n    margin-right:-1px; }\n  .bp3-button-group.bp3-minimal .bp3-button{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button-group.bp3-minimal .bp3-button{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button-group .bp3-popover-wrapper,\n  .bp3-button-group .bp3-popover-target{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button-group .bp3-button.bp3-fill,\n  .bp3-button-group.bp3-fill .bp3-button:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-vertical{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column;\n    vertical-align:top; }\n    .bp3-button-group.bp3-vertical.bp3-fill{\n      height:100%;\n      width:unset; }\n    .bp3-button-group.bp3-vertical .bp3-button{\n      margin-right:0 !important;\n      width:100%; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:first-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:first-child{\n      border-radius:3px 3px 0 0; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:last-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:last-child{\n      border-radius:0 0 3px 3px; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:not(:last-child){\n      margin-bottom:-1px; }\n  .bp3-button-group.bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    margin-right:1px; }\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-button:not(:last-child){\n    margin-bottom:1px; }\n.bp3-callout{\n  font-size:14px;\n  line-height:1.5;\n  background-color:rgba(138, 155, 168, 0.15);\n  border-radius:3px;\n  padding:10px 12px 9px;\n  position:relative;\n  width:100%; }\n  .bp3-callout[class*=\"bp3-icon-\"]{\n    padding-left:40px; }\n    .bp3-callout[class*=\"bp3-icon-\"]::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout.bp3-callout-icon{\n    padding-left:40px; }\n    .bp3-callout.bp3-callout-icon > .bp3-icon:first-child{\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout .bp3-heading{\n    line-height:20px;\n    margin-bottom:5px;\n    margin-top:0; }\n    .bp3-callout .bp3-heading:last-child{\n      margin-bottom:0; }\n  .bp3-dark .bp3-callout{\n    background-color:rgba(138, 155, 168, 0.2); }\n    .bp3-dark .bp3-callout[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n  .bp3-callout.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15); }\n    .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-primary .bp3-heading{\n      color:#106ba3; }\n    .bp3-dark .bp3-callout.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-primary .bp3-heading{\n        color:#48aff0; }\n  .bp3-callout.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15); }\n    .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-success .bp3-heading{\n      color:#0d8050; }\n    .bp3-dark .bp3-callout.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-success .bp3-heading{\n        color:#3dcc91; }\n  .bp3-callout.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15); }\n    .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-warning .bp3-heading{\n      color:#bf7326; }\n    .bp3-dark .bp3-callout.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-warning .bp3-heading{\n        color:#ffb366; }\n  .bp3-callout.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15); }\n    .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-danger .bp3-heading{\n      color:#c23030; }\n    .bp3-dark .bp3-callout.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-danger .bp3-heading{\n        color:#ff7373; }\n  .bp3-running-text .bp3-callout{\n    margin:20px 0; }\n.bp3-card{\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n  padding:20px;\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-card.bp3-dark,\n  .bp3-dark .bp3-card{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-0{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n  .bp3-elevation-0.bp3-dark,\n  .bp3-dark .bp3-elevation-0{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-1{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-1.bp3-dark,\n  .bp3-dark .bp3-elevation-1{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-2{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-2.bp3-dark,\n  .bp3-dark .bp3-elevation-2{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-3{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-3.bp3-dark,\n  .bp3-dark .bp3-elevation-3{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-4{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-4.bp3-dark,\n  .bp3-dark .bp3-elevation-4{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:hover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  cursor:pointer; }\n  .bp3-card.bp3-interactive:hover.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:hover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:active{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  opacity:0.9;\n  -webkit-transition-duration:0;\n          transition-duration:0; }\n  .bp3-card.bp3-interactive:active.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:active{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-collapse{\n  height:0;\n  overflow-y:hidden;\n  -webkit-transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-collapse .bp3-collapse-body{\n    -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-collapse .bp3-collapse-body[aria-hidden=\"true\"]{\n      display:none; }\n\n.bp3-context-menu .bp3-popover-target{\n  display:block; }\n\n.bp3-context-menu-popover-target{\n  position:fixed; }\n\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-dialog-container{\n  opacity:1;\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  min-height:100%;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  width:100%; }\n  .bp3-dialog-container.bp3-overlay-enter > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5); }\n  .bp3-dialog-container.bp3-overlay-enter-active > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear-active > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-dialog-container.bp3-overlay-exit > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-dialog-container.bp3-overlay-exit-active > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n\n.bp3-dialog{\n  background:#ebf1f5;\n  border-radius:6px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:30px 0;\n  padding-bottom:20px;\n  pointer-events:all;\n  -webkit-user-select:text;\n     -moz-user-select:text;\n      -ms-user-select:text;\n          user-select:text;\n  width:500px; }\n  .bp3-dialog:focus{\n    outline:0; }\n  .bp3-dialog.bp3-dark,\n  .bp3-dark .bp3-dialog{\n    background:#293742;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-dialog-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:6px 6px 0 0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding-left:20px;\n  padding-right:5px;\n  z-index:30; }\n  .bp3-dialog-header .bp3-icon-large,\n  .bp3-dialog-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-dialog-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-dialog-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-dialog-header{\n    background:#30404d;\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-dialog-header .bp3-icon-large,\n    .bp3-dark .bp3-dialog-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-dialog-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  margin:20px; }\n\n.bp3-dialog-footer{\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  margin:0 20px; }\n\n.bp3-dialog-footer-actions{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:end;\n      -ms-flex-pack:end;\n          justify-content:flex-end; }\n  .bp3-dialog-footer-actions .bp3-button{\n    margin-left:10px; }\n.bp3-multistep-dialog-panels{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n\n.bp3-multistep-dialog-left-panel{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column; }\n  .bp3-dark .bp3-multistep-dialog-left-panel{\n    background:#202b33; }\n\n.bp3-multistep-dialog-right-panel{\n  background-color:#f5f8fa;\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  border-radius:0 0 6px 0;\n  -webkit-box-flex:3;\n      -ms-flex:3;\n          flex:3;\n  min-width:0; }\n  .bp3-dark .bp3-multistep-dialog-right-panel{\n    background-color:#293742;\n    border-left:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-multistep-dialog-footer{\n  background-color:#ffffff;\n  border-radius:0 0 6px 0;\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  padding:10px; }\n  .bp3-dark .bp3-multistep-dialog-footer{\n    background:#30404d;\n    border-top:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-dialog-step-container{\n  background-color:#f5f8fa;\n  border-bottom:1px solid rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-dialog-step-container{\n    background:#293742;\n    border-bottom:1px solid rgba(16, 22, 26, 0.4); }\n  .bp3-dialog-step-container.bp3-dialog-step-viewed{\n    background-color:#ffffff; }\n    .bp3-dark .bp3-dialog-step-container.bp3-dialog-step-viewed{\n      background:#30404d; }\n\n.bp3-dialog-step{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#f5f8fa;\n  border-radius:6px;\n  cursor:not-allowed;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:4px;\n  padding:6px 14px; }\n  .bp3-dark .bp3-dialog-step{\n    background:#293742; }\n  .bp3-dialog-step-viewed .bp3-dialog-step{\n    background-color:#ffffff;\n    cursor:pointer; }\n    .bp3-dark .bp3-dialog-step-viewed .bp3-dialog-step{\n      background:#30404d; }\n  .bp3-dialog-step:hover{\n    background-color:#f5f8fa; }\n    .bp3-dark .bp3-dialog-step:hover{\n      background:#293742; }\n\n.bp3-dialog-step-icon{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:rgba(92, 112, 128, 0.6);\n  border-radius:50%;\n  color:#ffffff;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:25px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  width:25px; }\n  .bp3-dark .bp3-dialog-step-icon{\n    background-color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#2b95d6; }\n  .bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#8a9ba8; }\n\n.bp3-dialog-step-title{\n  color:rgba(92, 112, 128, 0.6);\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  padding-left:10px; }\n  .bp3-dark .bp3-dialog-step-title{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-title{\n    color:#2b95d6; }\n  .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n    color:#182026; }\n    .bp3-dark .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n      color:#f5f8fa; }\n.bp3-drawer{\n  background:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0;\n  padding:0; }\n  .bp3-drawer:focus{\n    outline:0; }\n  .bp3-drawer.bp3-position-top{\n    height:50%;\n    left:0;\n    right:0;\n    top:0; }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter, .bp3-drawer.bp3-position-top.bp3-overlay-appear{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter-active, .bp3-drawer.bp3-position-top.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit-active{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-bottom{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter-active, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-left{\n    bottom:0;\n    left:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter, .bp3-drawer.bp3-position-left.bp3-overlay-appear{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter-active, .bp3-drawer.bp3-position-left.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit-active{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-right{\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter, .bp3-drawer.bp3-position-right.bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter-active, .bp3-drawer.bp3-position-right.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right):not(.bp3-vertical){\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right).bp3-vertical{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-dark,\n  .bp3-dark .bp3-drawer{\n    background:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-drawer-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border-radius:0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding:5px;\n  padding-left:20px;\n  position:relative; }\n  .bp3-drawer-header .bp3-icon-large,\n  .bp3-drawer-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-drawer-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-drawer-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-drawer-header{\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-drawer-header .bp3-icon-large,\n    .bp3-dark .bp3-drawer-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-drawer-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  overflow:auto; }\n\n.bp3-drawer-footer{\n  -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  padding:10px 20px;\n  position:relative; }\n  .bp3-dark .bp3-drawer-footer{\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4); }\n.bp3-editable-text{\n  cursor:text;\n  display:inline-block;\n  max-width:100%;\n  position:relative;\n  vertical-align:top;\n  white-space:nowrap; }\n  .bp3-editable-text::before{\n    bottom:-3px;\n    left:-3px;\n    position:absolute;\n    right:-3px;\n    top:-3px;\n    border-radius:3px;\n    content:\"\";\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#137cbd; }\n  .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4); }\n  .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#0f9960; }\n  .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4); }\n  .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#d9822b; }\n  .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4); }\n  .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#db3737; }\n  .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4); }\n  .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-dark .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#48aff0; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4);\n            box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#3dcc91; }\n  .bp3-dark .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4);\n            box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#ffb366; }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#ff7373; }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-editable-text-input,\n.bp3-editable-text-content{\n  color:inherit;\n  display:inherit;\n  font:inherit;\n  letter-spacing:inherit;\n  max-width:inherit;\n  min-width:inherit;\n  position:relative;\n  resize:none;\n  text-transform:inherit;\n  vertical-align:top; }\n\n.bp3-editable-text-input{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0;\n  white-space:pre-wrap;\n  width:100%; }\n  .bp3-editable-text-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:focus{\n    outline:none; }\n  .bp3-editable-text-input::-ms-clear{\n    display:none; }\n\n.bp3-editable-text-content{\n  overflow:hidden;\n  padding-right:2px;\n  text-overflow:ellipsis;\n  white-space:pre; }\n  .bp3-editable-text-editing > .bp3-editable-text-content{\n    left:0;\n    position:absolute;\n    visibility:hidden; }\n  .bp3-editable-text-placeholder > .bp3-editable-text-content{\n    color:rgba(92, 112, 128, 0.6); }\n    .bp3-dark .bp3-editable-text-placeholder > .bp3-editable-text-content{\n      color:rgba(167, 182, 194, 0.6); }\n\n.bp3-editable-text.bp3-multiline{\n  display:block; }\n  .bp3-editable-text.bp3-multiline .bp3-editable-text-content{\n    overflow:auto;\n    white-space:pre-wrap;\n    word-wrap:break-word; }\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-control-group{\n  -webkit-transform:translateZ(0);\n          transform:translateZ(0);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:stretch;\n      -ms-flex-align:stretch;\n          align-items:stretch; }\n  .bp3-control-group > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select,\n  .bp3-control-group .bp3-input,\n  .bp3-control-group .bp3-select{\n    position:relative; }\n  .bp3-control-group .bp3-input{\n    border-radius:inherit;\n    z-index:2; }\n    .bp3-control-group .bp3-input:focus{\n      border-radius:3px;\n      z-index:14; }\n    .bp3-control-group .bp3-input[class*=\"bp3-intent\"]{\n      z-index:13; }\n      .bp3-control-group .bp3-input[class*=\"bp3-intent\"]:focus{\n        z-index:15; }\n    .bp3-control-group .bp3-input[readonly], .bp3-control-group .bp3-input:disabled, .bp3-control-group .bp3-input.bp3-disabled{\n      z-index:1; }\n  .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input{\n    z-index:13; }\n    .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input:focus{\n      z-index:15; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select select,\n  .bp3-control-group .bp3-select select{\n    -webkit-transform:translateZ(0);\n            transform:translateZ(0);\n    border-radius:inherit;\n    z-index:4; }\n    .bp3-control-group .bp3-button:focus,\n    .bp3-control-group .bp3-html-select select:focus,\n    .bp3-control-group .bp3-select select:focus{\n      z-index:5; }\n    .bp3-control-group .bp3-button:hover,\n    .bp3-control-group .bp3-html-select select:hover,\n    .bp3-control-group .bp3-select select:hover{\n      z-index:6; }\n    .bp3-control-group .bp3-button:active,\n    .bp3-control-group .bp3-html-select select:active,\n    .bp3-control-group .bp3-select select:active{\n      z-index:7; }\n    .bp3-control-group .bp3-button[readonly], .bp3-control-group .bp3-button:disabled, .bp3-control-group .bp3-button.bp3-disabled,\n    .bp3-control-group .bp3-html-select select[readonly],\n    .bp3-control-group .bp3-html-select select:disabled,\n    .bp3-control-group .bp3-html-select select.bp3-disabled,\n    .bp3-control-group .bp3-select select[readonly],\n    .bp3-control-group .bp3-select select:disabled,\n    .bp3-control-group .bp3-select select.bp3-disabled{\n      z-index:3; }\n    .bp3-control-group .bp3-button[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]{\n      z-index:9; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:focus{\n        z-index:10; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:hover{\n        z-index:11; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:active{\n        z-index:12; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"][readonly], .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:disabled, .bp3-control-group .bp3-button[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"].bp3-disabled{\n        z-index:8; }\n  .bp3-control-group .bp3-input-group > .bp3-icon,\n  .bp3-control-group .bp3-input-group > .bp3-button,\n  .bp3-control-group .bp3-input-group > .bp3-input-left-container,\n  .bp3-control-group .bp3-input-group > .bp3-input-action{\n    z-index:16; }\n  .bp3-control-group .bp3-select::after,\n  .bp3-control-group .bp3-html-select::after,\n  .bp3-control-group .bp3-select > .bp3-icon,\n  .bp3-control-group .bp3-html-select > .bp3-icon{\n    z-index:17; }\n  .bp3-control-group .bp3-select:focus-within{\n    z-index:5; }\n  .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:-1px; }\n  .bp3-control-group:not(.bp3-vertical) > .bp3-divider:not(:first-child){\n    margin-left:6px; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:0; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > .bp3-button + .bp3-button{\n    margin-left:1px; }\n  .bp3-control-group .bp3-popover-wrapper,\n  .bp3-control-group .bp3-popover-target{\n    border-radius:inherit; }\n  .bp3-control-group > :first-child{\n    border-radius:3px 0 0 3px; }\n  .bp3-control-group > :last-child{\n    border-radius:0 3px 3px 0;\n    margin-right:0; }\n  .bp3-control-group > :only-child{\n    border-radius:3px;\n    margin-right:0; }\n  .bp3-control-group .bp3-input-group .bp3-button{\n    border-radius:3px; }\n  .bp3-control-group .bp3-numeric-input:not(:first-child) .bp3-input-group{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-control-group.bp3-fill{\n    width:100%; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-fill > *:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-vertical{\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-control-group.bp3-vertical > *{\n      margin-top:-1px; }\n    .bp3-control-group.bp3-vertical > :first-child{\n      border-radius:3px 3px 0 0;\n      margin-top:0; }\n    .bp3-control-group.bp3-vertical > :last-child{\n      border-radius:0 0 3px 3px; }\n.bp3-control{\n  cursor:pointer;\n  display:block;\n  margin-bottom:10px;\n  position:relative;\n  text-transform:none; }\n  .bp3-control input:checked ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control input:checked ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control:not(.bp3-align-right){\n    padding-left:26px; }\n    .bp3-control:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-26px; }\n  .bp3-control.bp3-align-right{\n    padding-right:26px; }\n    .bp3-control.bp3-align-right .bp3-control-indicator{\n      margin-right:-26px; }\n  .bp3-control.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-control.bp3-inline{\n    display:inline-block;\n    margin-right:20px; }\n  .bp3-control input{\n    left:0;\n    opacity:0;\n    position:absolute;\n    top:0;\n    z-index:-1; }\n  .bp3-control .bp3-control-indicator{\n    background-clip:padding-box;\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    border:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    cursor:pointer;\n    display:inline-block;\n    font-size:16px;\n    height:1em;\n    margin-right:10px;\n    margin-top:-3px;\n    position:relative;\n    -webkit-user-select:none;\n       -moz-user-select:none;\n        -ms-user-select:none;\n            user-select:none;\n    vertical-align:middle;\n    width:1em; }\n    .bp3-control .bp3-control-indicator::before{\n      content:\"\";\n      display:block;\n      height:1em;\n      width:1em; }\n  .bp3-control:hover .bp3-control-indicator{\n    background-color:#ebf1f5; }\n  .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n    background:#d8e1e8;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    cursor:not-allowed; }\n  .bp3-control input:focus ~ .bp3-control-indicator{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:2px;\n    -moz-outline-radius:6px; }\n  .bp3-control.bp3-align-right .bp3-control-indicator{\n    float:right;\n    margin-left:10px;\n    margin-top:1px; }\n  .bp3-control.bp3-large{\n    font-size:16px; }\n    .bp3-control.bp3-large:not(.bp3-align-right){\n      padding-left:30px; }\n      .bp3-control.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n        margin-left:-30px; }\n    .bp3-control.bp3-large.bp3-align-right{\n      padding-right:30px; }\n      .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n        margin-right:-30px; }\n    .bp3-control.bp3-large .bp3-control-indicator{\n      font-size:20px; }\n    .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-top:0; }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control.bp3-checkbox .bp3-control-indicator{\n    border-radius:3px; }\n  .bp3-control.bp3-checkbox input:checked ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0012 5z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-radio .bp3-control-indicator{\n    border-radius:50%; }\n  .bp3-control.bp3-radio input:checked ~ .bp3-control-indicator::before{\n    background-image:radial-gradient(#ffffff, #ffffff 28%, transparent 32%); }\n  .bp3-control.bp3-radio input:checked:disabled ~ .bp3-control-indicator::before{\n    opacity:0.5; }\n  .bp3-control.bp3-radio input:focus ~ .bp3-control-indicator{\n    -moz-outline-radius:16px; }\n  .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(167, 182, 194, 0.5); }\n  .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(115, 134, 148, 0.5); }\n  .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(92, 112, 128, 0.5); }\n  .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5); }\n    .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5); }\n    .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch:not(.bp3-align-right){\n    padding-left:38px; }\n    .bp3-control.bp3-switch:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-38px; }\n  .bp3-control.bp3-switch.bp3-align-right{\n    padding-right:38px; }\n    .bp3-control.bp3-switch.bp3-align-right .bp3-control-indicator{\n      margin-right:-38px; }\n  .bp3-control.bp3-switch .bp3-control-indicator{\n    border:none;\n    border-radius:1.75em;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important;\n    min-width:1.75em;\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:auto; }\n    .bp3-control.bp3-switch .bp3-control-indicator::before{\n      background:#ffffff;\n      border-radius:50%;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n      height:calc(1em - 4px);\n      left:0;\n      margin:2px;\n      position:absolute;\n      -webkit-transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      width:calc(1em - 4px); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    left:calc(100% - 1em); }\n  .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right){\n    padding-left:45px; }\n    .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-45px; }\n  .bp3-control.bp3-switch.bp3-large.bp3-align-right{\n    padding-right:45px; }\n    .bp3-control.bp3-switch.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-right:-45px; }\n  .bp3-dark .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.7); }\n  .bp3-dark .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.9); }\n  .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(57, 75, 89, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-dark .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch .bp3-control-indicator::before{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-control.bp3-switch .bp3-switch-inner-text{\n    font-size:0.7em;\n    text-align:center; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:first-child{\n    line-height:0;\n    margin-left:0.5em;\n    margin-right:1.2em;\n    visibility:hidden; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:last-child{\n    line-height:1em;\n    margin-left:1.2em;\n    margin-right:0.5em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:first-child{\n    line-height:1em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:last-child{\n    line-height:0;\n    visibility:hidden; }\n  .bp3-dark .bp3-control{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-control.bp3-disabled{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-control .bp3-control-indicator{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-control:hover .bp3-control-indicator{\n      background-color:#30404d; }\n    .bp3-dark .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n      background:#202b33;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-control input:disabled ~ .bp3-control-indicator{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      cursor:not-allowed; }\n    .bp3-dark .bp3-control.bp3-checkbox input:disabled:checked ~ .bp3-control-indicator, .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-file-input{\n  cursor:pointer;\n  display:inline-block;\n  height:30px;\n  position:relative; }\n  .bp3-file-input input{\n    margin:0;\n    min-width:200px;\n    opacity:0; }\n    .bp3-file-input input:disabled + .bp3-file-upload-input,\n    .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n      background:rgba(206, 217, 224, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      resize:none; }\n      .bp3-file-input input:disabled + .bp3-file-upload-input::after,\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n        background-color:rgba(206, 217, 224, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(92, 112, 128, 0.6);\n        cursor:not-allowed;\n        outline:none; }\n        .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active:hover,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active:hover{\n          background:rgba(206, 217, 224, 0.7); }\n      .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input, .bp3-dark\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n        background:rgba(57, 75, 89, 0.5);\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after, .bp3-dark\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n          background-color:rgba(57, 75, 89, 0.5);\n          background-image:none;\n          -webkit-box-shadow:none;\n                  box-shadow:none;\n          color:rgba(167, 182, 194, 0.6); }\n          .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-dark\n          .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active{\n            background:rgba(57, 75, 89, 0.7); }\n  .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#182026; }\n  .bp3-dark .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#f5f8fa; }\n  .bp3-file-input.bp3-fill{\n    width:100%; }\n  .bp3-file-input.bp3-large,\n  .bp3-large .bp3-file-input{\n    height:40px; }\n  .bp3-file-input .bp3-file-upload-input-custom-text::after{\n    content:attr(bp3-button-text); }\n\n.bp3-file-upload-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle;\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:rgba(92, 112, 128, 0.6);\n  left:0;\n  padding-right:80px;\n  position:absolute;\n  right:0;\n  top:0;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-file-upload-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:focus, .bp3-file-upload-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-file-upload-input[type=\"search\"], .bp3-file-upload-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-file-upload-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-file-upload-input:disabled, .bp3-file-upload-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-file-upload-input::after{\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026;\n    min-height:24px;\n    min-width:24px;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    border-radius:3px;\n    content:\"Browse\";\n    line-height:24px;\n    margin:3px;\n    position:absolute;\n    right:0;\n    text-align:center;\n    top:0;\n    width:70px; }\n    .bp3-file-upload-input::after:hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-file-upload-input::after:active, .bp3-file-upload-input::after.bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-file-upload-input::after:disabled, .bp3-file-upload-input::after.bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-file-upload-input::after:disabled.bp3-active, .bp3-file-upload-input::after:disabled.bp3-active:hover, .bp3-file-upload-input::after.bp3-disabled.bp3-active, .bp3-file-upload-input::after.bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-file-upload-input:hover::after{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-file-upload-input:active::after{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-large .bp3-file-upload-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px;\n    padding-right:95px; }\n    .bp3-large .bp3-file-upload-input[type=\"search\"], .bp3-large .bp3-file-upload-input.bp3-round{\n      padding:0 15px; }\n    .bp3-large .bp3-file-upload-input::after{\n      min-height:30px;\n      min-width:30px;\n      line-height:30px;\n      margin:5px;\n      width:85px; }\n  .bp3-dark .bp3-file-upload-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:disabled, .bp3-dark .bp3-file-upload-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::after{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n      color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover, .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover{\n        background-color:#30404d;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        background-color:#202b33;\n        background-image:none;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n      .bp3-dark .bp3-file-upload-input::after:disabled, .bp3-dark .bp3-file-upload-input::after.bp3-disabled{\n        background-color:rgba(57, 75, 89, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-upload-input::after:disabled.bp3-active, .bp3-dark .bp3-file-upload-input::after.bp3-disabled.bp3-active{\n          background:rgba(57, 75, 89, 0.7); }\n      .bp3-dark .bp3-file-upload-input::after .bp3-button-spinner .bp3-spinner-head{\n        background:rgba(16, 22, 26, 0.5);\n        stroke:#8a9ba8; }\n    .bp3-dark .bp3-file-upload-input:hover::after{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:active::after{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n.bp3-file-upload-input::after{\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n.bp3-form-group{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0 0 15px; }\n  .bp3-form-group label.bp3-label{\n    margin-bottom:5px; }\n  .bp3-form-group .bp3-control{\n    margin-top:7px; }\n  .bp3-form-group .bp3-form-helper-text{\n    color:#5c7080;\n    font-size:12px;\n    margin-top:5px; }\n  .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#106ba3; }\n  .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#0d8050; }\n  .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#bf7326; }\n  .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#c23030; }\n  .bp3-form-group.bp3-inline{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row; }\n    .bp3-form-group.bp3-inline.bp3-large label.bp3-label{\n      line-height:40px;\n      margin:0 10px 0 0; }\n    .bp3-form-group.bp3-inline label.bp3-label{\n      line-height:30px;\n      margin:0 10px 0 0; }\n  .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-dark .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#48aff0; }\n  .bp3-dark .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#3dcc91; }\n  .bp3-dark .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#ffb366; }\n  .bp3-dark .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#ff7373; }\n  .bp3-dark .bp3-form-group .bp3-form-helper-text{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(167, 182, 194, 0.6) !important; }\n.bp3-input-group{\n  display:block;\n  position:relative; }\n  .bp3-input-group .bp3-input{\n    position:relative;\n    width:100%; }\n    .bp3-input-group .bp3-input:not(:first-child){\n      padding-left:30px; }\n    .bp3-input-group .bp3-input:not(:last-child){\n      padding-right:30px; }\n  .bp3-input-group .bp3-input-action,\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-button,\n  .bp3-input-group > .bp3-icon{\n    position:absolute;\n    top:0; }\n    .bp3-input-group .bp3-input-action:first-child,\n    .bp3-input-group > .bp3-input-left-container:first-child,\n    .bp3-input-group > .bp3-button:first-child,\n    .bp3-input-group > .bp3-icon:first-child{\n      left:0; }\n    .bp3-input-group .bp3-input-action:last-child,\n    .bp3-input-group > .bp3-input-left-container:last-child,\n    .bp3-input-group > .bp3-button:last-child,\n    .bp3-input-group > .bp3-icon:last-child{\n      right:0; }\n  .bp3-input-group .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    margin:3px;\n    padding:0 7px; }\n    .bp3-input-group .bp3-button:empty{\n      padding:0; }\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-icon{\n    z-index:1; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon{\n    color:#5c7080; }\n    .bp3-input-group > .bp3-input-left-container > .bp3-icon:empty,\n    .bp3-input-group > .bp3-icon:empty{\n      font-family:\"Icons16\", sans-serif;\n      font-size:16px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon,\n  .bp3-input-group .bp3-input-action > .bp3-spinner{\n    margin:7px; }\n  .bp3-input-group .bp3-tag{\n    margin:5px; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus),\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n    color:#5c7080; }\n    .bp3-dark .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus), .bp3-dark\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n      color:#a7b6c2; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large{\n      color:#5c7080; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled,\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled{\n    color:rgba(92, 112, 128, 0.6) !important; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-large{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-input-group.bp3-disabled{\n    cursor:not-allowed; }\n    .bp3-input-group.bp3-disabled .bp3-icon{\n      color:rgba(92, 112, 128, 0.6); }\n  .bp3-input-group.bp3-large .bp3-button{\n    min-height:30px;\n    min-width:30px;\n    margin:5px; }\n  .bp3-input-group.bp3-large > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-large > .bp3-icon,\n  .bp3-input-group.bp3-large .bp3-input-action > .bp3-spinner{\n    margin:12px; }\n  .bp3-input-group.bp3-large .bp3-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input-group.bp3-large .bp3-input[type=\"search\"], .bp3-input-group.bp3-large .bp3-input.bp3-round{\n      padding:0 15px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:first-child){\n      padding-left:40px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:last-child){\n      padding-right:40px; }\n  .bp3-input-group.bp3-small .bp3-button{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small .bp3-tag{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-small > .bp3-icon,\n  .bp3-input-group.bp3-small .bp3-input-action > .bp3-spinner{\n    margin:4px; }\n  .bp3-input-group.bp3-small .bp3-input{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input-group.bp3-small .bp3-input[type=\"search\"], .bp3-input-group.bp3-small .bp3-input.bp3-round{\n      padding:0 12px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:first-child){\n      padding-left:24px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:last-child){\n      padding-right:24px; }\n  .bp3-input-group.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-input-group.bp3-round .bp3-button,\n  .bp3-input-group.bp3-round .bp3-input,\n  .bp3-input-group.bp3-round .bp3-tag{\n    border-radius:30px; }\n  .bp3-dark .bp3-input-group .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-input-group.bp3-disabled .bp3-icon{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-input-group.bp3-intent-primary .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input-group.bp3-intent-primary .bp3-input:disabled, .bp3-input-group.bp3-intent-primary .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-primary > .bp3-icon{\n    color:#106ba3; }\n    .bp3-dark .bp3-input-group.bp3-intent-primary > .bp3-icon{\n      color:#48aff0; }\n  .bp3-input-group.bp3-intent-success .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input-group.bp3-intent-success .bp3-input:disabled, .bp3-input-group.bp3-intent-success .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-success > .bp3-icon{\n    color:#0d8050; }\n    .bp3-dark .bp3-input-group.bp3-intent-success > .bp3-icon{\n      color:#3dcc91; }\n  .bp3-input-group.bp3-intent-warning .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input-group.bp3-intent-warning .bp3-input:disabled, .bp3-input-group.bp3-intent-warning .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-warning > .bp3-icon{\n    color:#bf7326; }\n    .bp3-dark .bp3-input-group.bp3-intent-warning > .bp3-icon{\n      color:#ffb366; }\n  .bp3-input-group.bp3-intent-danger .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input-group.bp3-intent-danger .bp3-input:disabled, .bp3-input-group.bp3-intent-danger .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-danger > .bp3-icon{\n    color:#c23030; }\n    .bp3-dark .bp3-input-group.bp3-intent-danger > .bp3-icon{\n      color:#ff7373; }\n.bp3-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle; }\n  .bp3-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:focus, .bp3-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-input[type=\"search\"], .bp3-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-input:disabled, .bp3-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-input.bp3-large{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input.bp3-large[type=\"search\"], .bp3-input.bp3-large.bp3-round{\n      padding:0 15px; }\n  .bp3-input.bp3-small{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input.bp3-small[type=\"search\"], .bp3-input.bp3-small.bp3-round{\n      padding:0 12px; }\n  .bp3-input.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-dark .bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input:disabled, .bp3-dark .bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-input.bp3-intent-primary{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input.bp3-intent-primary:disabled, .bp3-input.bp3-intent-primary.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary:focus{\n        -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n                box-shadow:inset 0 0 0 1px #137cbd; }\n      .bp3-dark .bp3-input.bp3-intent-primary:disabled, .bp3-dark .bp3-input.bp3-intent-primary.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-success{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input.bp3-intent-success:disabled, .bp3-input.bp3-intent-success.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success:focus{\n        -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n                box-shadow:inset 0 0 0 1px #0f9960; }\n      .bp3-dark .bp3-input.bp3-intent-success:disabled, .bp3-dark .bp3-input.bp3-intent-success.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-warning{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input.bp3-intent-warning:disabled, .bp3-input.bp3-intent-warning.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning:focus{\n        -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n                box-shadow:inset 0 0 0 1px #d9822b; }\n      .bp3-dark .bp3-input.bp3-intent-warning:disabled, .bp3-dark .bp3-input.bp3-intent-warning.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-danger{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input.bp3-intent-danger:disabled, .bp3-input.bp3-intent-danger.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger:focus{\n        -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #db3737;\n                box-shadow:inset 0 0 0 1px #db3737; }\n      .bp3-dark .bp3-input.bp3-intent-danger:disabled, .bp3-dark .bp3-input.bp3-intent-danger.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input::-ms-clear{\n    display:none; }\ntextarea.bp3-input{\n  max-width:100%;\n  padding:10px; }\n  textarea.bp3-input, textarea.bp3-input.bp3-large, textarea.bp3-input.bp3-small{\n    height:auto;\n    line-height:inherit; }\n  textarea.bp3-input.bp3-small{\n    padding:8px; }\n  .bp3-dark textarea.bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark textarea.bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input:disabled, .bp3-dark textarea.bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\nlabel.bp3-label{\n  display:block;\n  margin-bottom:15px;\n  margin-top:0; }\n  label.bp3-label .bp3-html-select,\n  label.bp3-label .bp3-input,\n  label.bp3-label .bp3-select,\n  label.bp3-label .bp3-slider,\n  label.bp3-label .bp3-popover-wrapper{\n    display:block;\n    margin-top:5px;\n    text-transform:none; }\n  label.bp3-label .bp3-button-group{\n    margin-top:5px; }\n  label.bp3-label .bp3-select select,\n  label.bp3-label .bp3-html-select select{\n    font-weight:400;\n    vertical-align:top;\n    width:100%; }\n  label.bp3-label.bp3-disabled,\n  label.bp3-label.bp3-disabled .bp3-text-muted{\n    color:rgba(92, 112, 128, 0.6); }\n  label.bp3-label.bp3-inline{\n    line-height:30px; }\n    label.bp3-label.bp3-inline .bp3-html-select,\n    label.bp3-label.bp3-inline .bp3-input,\n    label.bp3-label.bp3-inline .bp3-input-group,\n    label.bp3-label.bp3-inline .bp3-select,\n    label.bp3-label.bp3-inline .bp3-popover-wrapper{\n      display:inline-block;\n      margin:0 0 0 5px;\n      vertical-align:top; }\n    label.bp3-label.bp3-inline .bp3-button-group{\n      margin:0 0 0 5px; }\n    label.bp3-label.bp3-inline .bp3-input-group .bp3-input{\n      margin-left:0; }\n    label.bp3-label.bp3-inline.bp3-large{\n      line-height:40px; }\n  label.bp3-label:not(.bp3-inline) .bp3-popover-target{\n    display:block; }\n  .bp3-dark label.bp3-label{\n    color:#f5f8fa; }\n    .bp3-dark label.bp3-label.bp3-disabled,\n    .bp3-dark label.bp3-label.bp3-disabled .bp3-text-muted{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 14px;\n          flex:1 1 14px;\n  min-height:0;\n  padding:0;\n  width:30px; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:first-child{\n    border-radius:0 3px 0 0; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:last-child{\n    border-radius:0 0 3px 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:first-child{\n  border-radius:3px 0 0 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:last-child{\n  border-radius:0 0 0 3px; }\n\n.bp3-numeric-input.bp3-large .bp3-button-group.bp3-vertical > .bp3-button{\n  width:40px; }\n\nform{\n  display:block; }\n.bp3-html-select select,\n.bp3-select select{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  -moz-appearance:none;\n  -webkit-appearance:none;\n  border-radius:3px;\n  height:30px;\n  padding:0 25px 0 10px;\n  width:100%; }\n  .bp3-html-select select > *, .bp3-select select > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-html-select select > .bp3-fill, .bp3-select select > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-html-select select::before,\n  .bp3-select select::before, .bp3-html-select select > *, .bp3-select select > *{\n    margin-right:7px; }\n  .bp3-html-select select:empty::before,\n  .bp3-select select:empty::before,\n  .bp3-html-select select > :last-child,\n  .bp3-select select > :last-child{\n    margin-right:0; }\n  .bp3-html-select select:hover,\n  .bp3-select select:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-html-select select:active,\n  .bp3-select select:active, .bp3-html-select select.bp3-active,\n  .bp3-select select.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-html-select select:disabled,\n  .bp3-select select:disabled, .bp3-html-select select.bp3-disabled,\n  .bp3-select select.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-html-select select:disabled.bp3-active,\n    .bp3-select select:disabled.bp3-active, .bp3-html-select select:disabled.bp3-active:hover,\n    .bp3-select select:disabled.bp3-active:hover, .bp3-html-select select.bp3-disabled.bp3-active,\n    .bp3-select select.bp3-disabled.bp3-active, .bp3-html-select select.bp3-disabled.bp3-active:hover,\n    .bp3-select select.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n\n.bp3-html-select.bp3-minimal select,\n.bp3-select.bp3-minimal select{\n  background:none;\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  .bp3-html-select.bp3-minimal select:hover,\n  .bp3-select.bp3-minimal select:hover{\n    background:rgba(167, 182, 194, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026;\n    text-decoration:none; }\n  .bp3-html-select.bp3-minimal select:active,\n  .bp3-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal select.bp3-active,\n  .bp3-select.bp3-minimal select.bp3-active{\n    background:rgba(115, 134, 148, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026; }\n  .bp3-html-select.bp3-minimal select:disabled,\n  .bp3-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal select:disabled:hover,\n  .bp3-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal select.bp3-disabled,\n  .bp3-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal select.bp3-disabled:hover,\n  .bp3-select.bp3-minimal select.bp3-disabled:hover{\n    background:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n    .bp3-html-select.bp3-minimal select:disabled.bp3-active,\n    .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active{\n      background:rgba(115, 134, 148, 0.3); }\n  .bp3-dark .bp3-html-select.bp3-minimal select, .bp3-html-select.bp3-minimal .bp3-dark select,\n  .bp3-dark .bp3-select.bp3-minimal select, .bp3-select.bp3-minimal .bp3-dark select{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover, .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover{\n      background:rgba(138, 155, 168, 0.15); }\n    .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:rgba(138, 155, 168, 0.3);\n      color:#f5f8fa; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal .bp3-dark select:disabled,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled, .bp3-select.bp3-minimal .bp3-dark select:disabled, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled:hover, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover{\n      background:none;\n      color:rgba(167, 182, 194, 0.6);\n      cursor:not-allowed; }\n      .bp3-dark .bp3-html-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active{\n        background:rgba(138, 155, 168, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-primary,\n  .bp3-select.bp3-minimal select.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover{\n      background:rgba(19, 124, 189, 0.15);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:rgba(19, 124, 189, 0.3);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled{\n      background:none;\n      color:rgba(16, 107, 163, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active{\n        background:rgba(19, 124, 189, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n      stroke:#106ba3; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary{\n      color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.2);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(72, 175, 240, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-success,\n  .bp3-select.bp3-minimal select.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover{\n      background:rgba(15, 153, 96, 0.15);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:rgba(15, 153, 96, 0.3);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled{\n      background:none;\n      color:rgba(13, 128, 80, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active{\n        background:rgba(15, 153, 96, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n      stroke:#0d8050; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success{\n      color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.2);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(61, 204, 145, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-warning,\n  .bp3-select.bp3-minimal select.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover{\n      background:rgba(217, 130, 43, 0.15);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:rgba(217, 130, 43, 0.3);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled{\n      background:none;\n      color:rgba(191, 115, 38, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active{\n        background:rgba(217, 130, 43, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n      stroke:#bf7326; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning{\n      color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.2);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(255, 179, 102, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-danger,\n  .bp3-select.bp3-minimal select.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover{\n      background:rgba(219, 55, 55, 0.15);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:rgba(219, 55, 55, 0.3);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled{\n      background:none;\n      color:rgba(194, 48, 48, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active{\n        background:rgba(219, 55, 55, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n      stroke:#c23030; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger{\n      color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.2);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(255, 115, 115, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n\n.bp3-html-select.bp3-large select,\n.bp3-select.bp3-large select{\n  font-size:16px;\n  height:40px;\n  padding-right:35px; }\n\n.bp3-dark .bp3-html-select select, .bp3-dark .bp3-select select{\n  background-color:#394b59;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n  color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover, .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    background-color:#202b33;\n    background-image:none;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-html-select select:disabled, .bp3-dark .bp3-select select:disabled, .bp3-dark .bp3-html-select select.bp3-disabled, .bp3-dark .bp3-select select.bp3-disabled{\n    background-color:rgba(57, 75, 89, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-html-select select:disabled.bp3-active, .bp3-dark .bp3-select select:disabled.bp3-active, .bp3-dark .bp3-html-select select.bp3-disabled.bp3-active, .bp3-dark .bp3-select select.bp3-disabled.bp3-active{\n      background:rgba(57, 75, 89, 0.7); }\n  .bp3-dark .bp3-html-select select .bp3-button-spinner .bp3-spinner-head, .bp3-dark .bp3-select select .bp3-button-spinner .bp3-spinner-head{\n    background:rgba(16, 22, 26, 0.5);\n    stroke:#8a9ba8; }\n\n.bp3-html-select select:disabled,\n.bp3-select select:disabled{\n  background-color:rgba(206, 217, 224, 0.5);\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-html-select .bp3-icon,\n.bp3-select .bp3-icon, .bp3-select::after{\n  color:#5c7080;\n  pointer-events:none;\n  position:absolute;\n  right:7px;\n  top:7px; }\n  .bp3-html-select .bp3-disabled.bp3-icon,\n  .bp3-select .bp3-disabled.bp3-icon, .bp3-disabled.bp3-select::after{\n    color:rgba(92, 112, 128, 0.6); }\n.bp3-html-select,\n.bp3-select{\n  display:inline-block;\n  letter-spacing:normal;\n  position:relative;\n  vertical-align:middle; }\n  .bp3-html-select select::-ms-expand,\n  .bp3-select select::-ms-expand{\n    display:none; }\n  .bp3-html-select .bp3-icon,\n  .bp3-select .bp3-icon{\n    color:#5c7080; }\n    .bp3-html-select .bp3-icon:hover,\n    .bp3-select .bp3-icon:hover{\n      color:#182026; }\n    .bp3-dark .bp3-html-select .bp3-icon, .bp3-dark\n    .bp3-select .bp3-icon{\n      color:#a7b6c2; }\n      .bp3-dark .bp3-html-select .bp3-icon:hover, .bp3-dark\n      .bp3-select .bp3-icon:hover{\n        color:#f5f8fa; }\n  .bp3-html-select.bp3-large::after,\n  .bp3-html-select.bp3-large .bp3-icon,\n  .bp3-select.bp3-large::after,\n  .bp3-select.bp3-large .bp3-icon{\n    right:12px;\n    top:12px; }\n  .bp3-html-select.bp3-fill,\n  .bp3-html-select.bp3-fill select,\n  .bp3-select.bp3-fill,\n  .bp3-select.bp3-fill select{\n    width:100%; }\n  .bp3-dark .bp3-html-select option, .bp3-dark\n  .bp3-select option{\n    background-color:#30404d;\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select option:disabled, .bp3-dark\n  .bp3-select option:disabled{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-html-select::after, .bp3-dark\n  .bp3-select::after{\n    color:#a7b6c2; }\n\n.bp3-select::after{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  content:\"\"; }\n.bp3-running-text table, table.bp3-html-table{\n  border-spacing:0;\n  font-size:14px; }\n  .bp3-running-text table th, table.bp3-html-table th,\n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    padding:11px;\n    text-align:left;\n    vertical-align:top; }\n  .bp3-running-text table th, table.bp3-html-table th{\n    color:#182026;\n    font-weight:600; }\n  \n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    color:#182026; }\n  .bp3-running-text table tbody tr:first-child th, table.bp3-html-table tbody tr:first-child th,\n  .bp3-running-text table tbody tr:first-child td,\n  table.bp3-html-table tbody tr:first-child td,\n  .bp3-running-text table tfoot tr:first-child th,\n  table.bp3-html-table tfoot tr:first-child th,\n  .bp3-running-text table tfoot tr:first-child td,\n  table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-running-text table th, .bp3-running-text .bp3-dark table th, .bp3-dark table.bp3-html-table th{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table td, .bp3-running-text .bp3-dark table td, .bp3-dark table.bp3-html-table td{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table tbody tr:first-child th, .bp3-running-text .bp3-dark table tbody tr:first-child th, .bp3-dark table.bp3-html-table tbody tr:first-child th,\n  .bp3-dark .bp3-running-text table tbody tr:first-child td,\n  .bp3-running-text .bp3-dark table tbody tr:first-child td,\n  .bp3-dark table.bp3-html-table tbody tr:first-child td,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child th,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child th,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child th,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child td,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child td,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-condensed th,\ntable.bp3-html-table.bp3-html-table-condensed td, table.bp3-html-table.bp3-small th,\ntable.bp3-html-table.bp3-small td{\n  padding-bottom:6px;\n  padding-top:6px; }\n\ntable.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n  background:rgba(191, 204, 214, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n  -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered tbody tr td,\ntable.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n  -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n  table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n    -webkit-box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-interactive tbody tr:hover td{\n  background-color:rgba(191, 204, 214, 0.3);\n  cursor:pointer; }\n\ntable.bp3-html-table.bp3-interactive tbody tr:active td{\n  background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-dark table.bp3-html-table{ }\n  .bp3-dark table.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n    background:rgba(92, 112, 128, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td,\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n      -webkit-box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15);\n              box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:first-child{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:hover td{\n    background-color:rgba(92, 112, 128, 0.3);\n    cursor:pointer; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:active td{\n    background-color:rgba(92, 112, 128, 0.4); }\n\n.bp3-key-combo{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center; }\n  .bp3-key-combo > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-key-combo > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-key-combo::before,\n  .bp3-key-combo > *{\n    margin-right:5px; }\n  .bp3-key-combo:empty::before,\n  .bp3-key-combo > :last-child{\n    margin-right:0; }\n\n.bp3-hotkey-dialog{\n  padding-bottom:0;\n  top:40px; }\n  .bp3-hotkey-dialog .bp3-dialog-body{\n    margin:0;\n    padding:0; }\n  .bp3-hotkey-dialog .bp3-hotkey-label{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1; }\n\n.bp3-hotkey-column{\n  margin:auto;\n  max-height:80vh;\n  overflow-y:auto;\n  padding:30px; }\n  .bp3-hotkey-column .bp3-heading{\n    margin-bottom:20px; }\n    .bp3-hotkey-column .bp3-heading:not(:first-child){\n      margin-top:40px; }\n\n.bp3-hotkey{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:justify;\n      -ms-flex-pack:justify;\n          justify-content:space-between;\n  margin-left:0;\n  margin-right:0; }\n  .bp3-hotkey:not(:last-child){\n    margin-bottom:10px; }\n.bp3-icon{\n  display:inline-block;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  vertical-align:text-bottom; }\n  .bp3-icon:not(:empty)::before{\n    content:\"\" !important;\n    content:unset !important; }\n  .bp3-icon > svg{\n    display:block; }\n    .bp3-icon > svg:not([fill]){\n      fill:currentColor; }\n\n.bp3-icon.bp3-intent-primary, .bp3-icon-standard.bp3-intent-primary, .bp3-icon-large.bp3-intent-primary{\n  color:#106ba3; }\n  .bp3-dark .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-icon-large.bp3-intent-primary{\n    color:#48aff0; }\n\n.bp3-icon.bp3-intent-success, .bp3-icon-standard.bp3-intent-success, .bp3-icon-large.bp3-intent-success{\n  color:#0d8050; }\n  .bp3-dark .bp3-icon.bp3-intent-success, .bp3-dark .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-icon-large.bp3-intent-success{\n    color:#3dcc91; }\n\n.bp3-icon.bp3-intent-warning, .bp3-icon-standard.bp3-intent-warning, .bp3-icon-large.bp3-intent-warning{\n  color:#bf7326; }\n  .bp3-dark .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-icon-large.bp3-intent-warning{\n    color:#ffb366; }\n\n.bp3-icon.bp3-intent-danger, .bp3-icon-standard.bp3-intent-danger, .bp3-icon-large.bp3-intent-danger{\n  color:#c23030; }\n  .bp3-dark .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-icon-large.bp3-intent-danger{\n    color:#ff7373; }\n\nspan.bp3-icon-standard{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon-large{\n  font-family:\"Icons20\", sans-serif;\n  font-size:20px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon:empty{\n  font-family:\"Icons20\";\n  font-size:inherit;\n  font-style:normal;\n  font-weight:400;\n  line-height:1; }\n  span.bp3-icon:empty::before{\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased; }\n\n.bp3-icon-add::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-artifact::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-folder::before{\n  content:\"\"; }\n\n.bp3-icon-airplane::before{\n  content:\"\"; }\n\n.bp3-icon-align-center::before{\n  content:\"\"; }\n\n.bp3-icon-align-justify::before{\n  content:\"\"; }\n\n.bp3-icon-align-left::before{\n  content:\"\"; }\n\n.bp3-icon-align-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-horizontal-center::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-left::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-top::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-vertical-center::before{\n  content:\"\"; }\n\n.bp3-icon-annotation::before{\n  content:\"\"; }\n\n.bp3-icon-application::before{\n  content:\"\"; }\n\n.bp3-icon-applications::before{\n  content:\"\"; }\n\n.bp3-icon-archive::before{\n  content:\"\"; }\n\n.bp3-icon-arrow-bottom-left::before{\n  content:\"↙\"; }\n\n.bp3-icon-arrow-bottom-right::before{\n  content:\"↘\"; }\n\n.bp3-icon-arrow-down::before{\n  content:\"↓\"; }\n\n.bp3-icon-arrow-left::before{\n  content:\"←\"; }\n\n.bp3-icon-arrow-right::before{\n  content:\"→\"; }\n\n.bp3-icon-arrow-top-left::before{\n  content:\"↖\"; }\n\n.bp3-icon-arrow-top-right::before{\n  content:\"↗\"; }\n\n.bp3-icon-arrow-up::before{\n  content:\"↑\"; }\n\n.bp3-icon-arrows-horizontal::before{\n  content:\"↔\"; }\n\n.bp3-icon-arrows-vertical::before{\n  content:\"↕\"; }\n\n.bp3-icon-asterisk::before{\n  content:\"*\"; }\n\n.bp3-icon-automatic-updates::before{\n  content:\"\"; }\n\n.bp3-icon-badge::before{\n  content:\"\"; }\n\n.bp3-icon-ban-circle::before{\n  content:\"\"; }\n\n.bp3-icon-bank-account::before{\n  content:\"\"; }\n\n.bp3-icon-barcode::before{\n  content:\"\"; }\n\n.bp3-icon-blank::before{\n  content:\"\"; }\n\n.bp3-icon-blocked-person::before{\n  content:\"\"; }\n\n.bp3-icon-bold::before{\n  content:\"\"; }\n\n.bp3-icon-book::before{\n  content:\"\"; }\n\n.bp3-icon-bookmark::before{\n  content:\"\"; }\n\n.bp3-icon-box::before{\n  content:\"\"; }\n\n.bp3-icon-briefcase::before{\n  content:\"\"; }\n\n.bp3-icon-bring-data::before{\n  content:\"\"; }\n\n.bp3-icon-build::before{\n  content:\"\"; }\n\n.bp3-icon-calculator::before{\n  content:\"\"; }\n\n.bp3-icon-calendar::before{\n  content:\"\"; }\n\n.bp3-icon-camera::before{\n  content:\"\"; }\n\n.bp3-icon-caret-down::before{\n  content:\"⌄\"; }\n\n.bp3-icon-caret-left::before{\n  content:\"〈\"; }\n\n.bp3-icon-caret-right::before{\n  content:\"〉\"; }\n\n.bp3-icon-caret-up::before{\n  content:\"⌃\"; }\n\n.bp3-icon-cell-tower::before{\n  content:\"\"; }\n\n.bp3-icon-changes::before{\n  content:\"\"; }\n\n.bp3-icon-chart::before{\n  content:\"\"; }\n\n.bp3-icon-chat::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-backward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-forward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-circle::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-down::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-left::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-right::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-up::before{\n  content:\"\"; }\n\n.bp3-icon-citation::before{\n  content:\"\"; }\n\n.bp3-icon-clean::before{\n  content:\"\"; }\n\n.bp3-icon-clipboard::before{\n  content:\"\"; }\n\n.bp3-icon-cloud::before{\n  content:\"☁\"; }\n\n.bp3-icon-cloud-download::before{\n  content:\"\"; }\n\n.bp3-icon-cloud-upload::before{\n  content:\"\"; }\n\n.bp3-icon-code::before{\n  content:\"\"; }\n\n.bp3-icon-code-block::before{\n  content:\"\"; }\n\n.bp3-icon-cog::before{\n  content:\"\"; }\n\n.bp3-icon-collapse-all::before{\n  content:\"\"; }\n\n.bp3-icon-column-layout::before{\n  content:\"\"; }\n\n.bp3-icon-comment::before{\n  content:\"\"; }\n\n.bp3-icon-comparison::before{\n  content:\"\"; }\n\n.bp3-icon-compass::before{\n  content:\"\"; }\n\n.bp3-icon-compressed::before{\n  content:\"\"; }\n\n.bp3-icon-confirm::before{\n  content:\"\"; }\n\n.bp3-icon-console::before{\n  content:\"\"; }\n\n.bp3-icon-contrast::before{\n  content:\"\"; }\n\n.bp3-icon-control::before{\n  content:\"\"; }\n\n.bp3-icon-credit-card::before{\n  content:\"\"; }\n\n.bp3-icon-cross::before{\n  content:\"✗\"; }\n\n.bp3-icon-crown::before{\n  content:\"\"; }\n\n.bp3-icon-cube::before{\n  content:\"\"; }\n\n.bp3-icon-cube-add::before{\n  content:\"\"; }\n\n.bp3-icon-cube-remove::before{\n  content:\"\"; }\n\n.bp3-icon-curved-range-chart::before{\n  content:\"\"; }\n\n.bp3-icon-cut::before{\n  content:\"\"; }\n\n.bp3-icon-dashboard::before{\n  content:\"\"; }\n\n.bp3-icon-data-lineage::before{\n  content:\"\"; }\n\n.bp3-icon-database::before{\n  content:\"\"; }\n\n.bp3-icon-delete::before{\n  content:\"\"; }\n\n.bp3-icon-delta::before{\n  content:\"Δ\"; }\n\n.bp3-icon-derive-column::before{\n  content:\"\"; }\n\n.bp3-icon-desktop::before{\n  content:\"\"; }\n\n.bp3-icon-diagnosis::before{\n  content:\"\"; }\n\n.bp3-icon-diagram-tree::before{\n  content:\"\"; }\n\n.bp3-icon-direction-left::before{\n  content:\"\"; }\n\n.bp3-icon-direction-right::before{\n  content:\"\"; }\n\n.bp3-icon-disable::before{\n  content:\"\"; }\n\n.bp3-icon-document::before{\n  content:\"\"; }\n\n.bp3-icon-document-open::before{\n  content:\"\"; }\n\n.bp3-icon-document-share::before{\n  content:\"\"; }\n\n.bp3-icon-dollar::before{\n  content:\"$\"; }\n\n.bp3-icon-dot::before{\n  content:\"•\"; }\n\n.bp3-icon-double-caret-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-double-caret-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-doughnut-chart::before{\n  content:\"\"; }\n\n.bp3-icon-download::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-draw::before{\n  content:\"\"; }\n\n.bp3-icon-drive-time::before{\n  content:\"\"; }\n\n.bp3-icon-duplicate::before{\n  content:\"\"; }\n\n.bp3-icon-edit::before{\n  content:\"✎\"; }\n\n.bp3-icon-eject::before{\n  content:\"⏏\"; }\n\n.bp3-icon-endorsed::before{\n  content:\"\"; }\n\n.bp3-icon-envelope::before{\n  content:\"✉\"; }\n\n.bp3-icon-equals::before{\n  content:\"\"; }\n\n.bp3-icon-eraser::before{\n  content:\"\"; }\n\n.bp3-icon-error::before{\n  content:\"\"; }\n\n.bp3-icon-euro::before{\n  content:\"€\"; }\n\n.bp3-icon-exchange::before{\n  content:\"\"; }\n\n.bp3-icon-exclude-row::before{\n  content:\"\"; }\n\n.bp3-icon-expand-all::before{\n  content:\"\"; }\n\n.bp3-icon-export::before{\n  content:\"\"; }\n\n.bp3-icon-eye-off::before{\n  content:\"\"; }\n\n.bp3-icon-eye-on::before{\n  content:\"\"; }\n\n.bp3-icon-eye-open::before{\n  content:\"\"; }\n\n.bp3-icon-fast-backward::before{\n  content:\"\"; }\n\n.bp3-icon-fast-forward::before{\n  content:\"\"; }\n\n.bp3-icon-feed::before{\n  content:\"\"; }\n\n.bp3-icon-feed-subscribed::before{\n  content:\"\"; }\n\n.bp3-icon-film::before{\n  content:\"\"; }\n\n.bp3-icon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-filter-keep::before{\n  content:\"\"; }\n\n.bp3-icon-filter-list::before{\n  content:\"\"; }\n\n.bp3-icon-filter-open::before{\n  content:\"\"; }\n\n.bp3-icon-filter-remove::before{\n  content:\"\"; }\n\n.bp3-icon-flag::before{\n  content:\"⚑\"; }\n\n.bp3-icon-flame::before{\n  content:\"\"; }\n\n.bp3-icon-flash::before{\n  content:\"\"; }\n\n.bp3-icon-floppy-disk::before{\n  content:\"\"; }\n\n.bp3-icon-flow-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flow-end::before{\n  content:\"\"; }\n\n.bp3-icon-flow-linear::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flows::before{\n  content:\"\"; }\n\n.bp3-icon-folder-close::before{\n  content:\"\"; }\n\n.bp3-icon-folder-new::before{\n  content:\"\"; }\n\n.bp3-icon-folder-open::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared-open::before{\n  content:\"\"; }\n\n.bp3-icon-follower::before{\n  content:\"\"; }\n\n.bp3-icon-following::before{\n  content:\"\"; }\n\n.bp3-icon-font::before{\n  content:\"\"; }\n\n.bp3-icon-fork::before{\n  content:\"\"; }\n\n.bp3-icon-form::before{\n  content:\"\"; }\n\n.bp3-icon-full-circle::before{\n  content:\"\"; }\n\n.bp3-icon-full-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-fullscreen::before{\n  content:\"\"; }\n\n.bp3-icon-function::before{\n  content:\"\"; }\n\n.bp3-icon-gantt-chart::before{\n  content:\"\"; }\n\n.bp3-icon-geolocation::before{\n  content:\"\"; }\n\n.bp3-icon-geosearch::before{\n  content:\"\"; }\n\n.bp3-icon-git-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-commit::before{\n  content:\"\"; }\n\n.bp3-icon-git-merge::before{\n  content:\"\"; }\n\n.bp3-icon-git-new-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-pull::before{\n  content:\"\"; }\n\n.bp3-icon-git-push::before{\n  content:\"\"; }\n\n.bp3-icon-git-repo::before{\n  content:\"\"; }\n\n.bp3-icon-glass::before{\n  content:\"\"; }\n\n.bp3-icon-globe::before{\n  content:\"\"; }\n\n.bp3-icon-globe-network::before{\n  content:\"\"; }\n\n.bp3-icon-graph::before{\n  content:\"\"; }\n\n.bp3-icon-graph-remove::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-grid::before{\n  content:\"\"; }\n\n.bp3-icon-grid-view::before{\n  content:\"\"; }\n\n.bp3-icon-group-objects::before{\n  content:\"\"; }\n\n.bp3-icon-grouped-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-hand::before{\n  content:\"\"; }\n\n.bp3-icon-hand-down::before{\n  content:\"\"; }\n\n.bp3-icon-hand-left::before{\n  content:\"\"; }\n\n.bp3-icon-hand-right::before{\n  content:\"\"; }\n\n.bp3-icon-hand-up::before{\n  content:\"\"; }\n\n.bp3-icon-header::before{\n  content:\"\"; }\n\n.bp3-icon-header-one::before{\n  content:\"\"; }\n\n.bp3-icon-header-two::before{\n  content:\"\"; }\n\n.bp3-icon-headset::before{\n  content:\"\"; }\n\n.bp3-icon-heart::before{\n  content:\"♥\"; }\n\n.bp3-icon-heart-broken::before{\n  content:\"\"; }\n\n.bp3-icon-heat-grid::before{\n  content:\"\"; }\n\n.bp3-icon-heatmap::before{\n  content:\"\"; }\n\n.bp3-icon-help::before{\n  content:\"?\"; }\n\n.bp3-icon-helper-management::before{\n  content:\"\"; }\n\n.bp3-icon-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-history::before{\n  content:\"\"; }\n\n.bp3-icon-home::before{\n  content:\"⌂\"; }\n\n.bp3-icon-horizontal-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-id-number::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-left::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-right::before{\n  content:\"\"; }\n\n.bp3-icon-import::before{\n  content:\"\"; }\n\n.bp3-icon-inbox::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-geo::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-search::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-update::before{\n  content:\"\"; }\n\n.bp3-icon-info-sign::before{\n  content:\"ℹ\"; }\n\n.bp3-icon-inheritance::before{\n  content:\"\"; }\n\n.bp3-icon-inner-join::before{\n  content:\"\"; }\n\n.bp3-icon-insert::before{\n  content:\"\"; }\n\n.bp3-icon-intersection::before{\n  content:\"\"; }\n\n.bp3-icon-ip-address::before{\n  content:\"\"; }\n\n.bp3-icon-issue::before{\n  content:\"\"; }\n\n.bp3-icon-issue-closed::before{\n  content:\"\"; }\n\n.bp3-icon-issue-new::before{\n  content:\"\"; }\n\n.bp3-icon-italic::before{\n  content:\"\"; }\n\n.bp3-icon-join-table::before{\n  content:\"\"; }\n\n.bp3-icon-key::before{\n  content:\"\"; }\n\n.bp3-icon-key-backspace::before{\n  content:\"\"; }\n\n.bp3-icon-key-command::before{\n  content:\"\"; }\n\n.bp3-icon-key-control::before{\n  content:\"\"; }\n\n.bp3-icon-key-delete::before{\n  content:\"\"; }\n\n.bp3-icon-key-enter::before{\n  content:\"\"; }\n\n.bp3-icon-key-escape::before{\n  content:\"\"; }\n\n.bp3-icon-key-option::before{\n  content:\"\"; }\n\n.bp3-icon-key-shift::before{\n  content:\"\"; }\n\n.bp3-icon-key-tab::before{\n  content:\"\"; }\n\n.bp3-icon-known-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-lab-test::before{\n  content:\"\"; }\n\n.bp3-icon-label::before{\n  content:\"\"; }\n\n.bp3-icon-layer::before{\n  content:\"\"; }\n\n.bp3-icon-layers::before{\n  content:\"\"; }\n\n.bp3-icon-layout::before{\n  content:\"\"; }\n\n.bp3-icon-layout-auto::before{\n  content:\"\"; }\n\n.bp3-icon-layout-balloon::before{\n  content:\"\"; }\n\n.bp3-icon-layout-circle::before{\n  content:\"\"; }\n\n.bp3-icon-layout-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-group-by::before{\n  content:\"\"; }\n\n.bp3-icon-layout-hierarchy::before{\n  content:\"\"; }\n\n.bp3-icon-layout-linear::before{\n  content:\"\"; }\n\n.bp3-icon-layout-skew-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-sorted-clusters::before{\n  content:\"\"; }\n\n.bp3-icon-learning::before{\n  content:\"\"; }\n\n.bp3-icon-left-join::before{\n  content:\"\"; }\n\n.bp3-icon-less-than::before{\n  content:\"\"; }\n\n.bp3-icon-less-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-lifesaver::before{\n  content:\"\"; }\n\n.bp3-icon-lightbulb::before{\n  content:\"\"; }\n\n.bp3-icon-link::before{\n  content:\"\"; }\n\n.bp3-icon-list::before{\n  content:\"☰\"; }\n\n.bp3-icon-list-columns::before{\n  content:\"\"; }\n\n.bp3-icon-list-detail-view::before{\n  content:\"\"; }\n\n.bp3-icon-locate::before{\n  content:\"\"; }\n\n.bp3-icon-lock::before{\n  content:\"\"; }\n\n.bp3-icon-log-in::before{\n  content:\"\"; }\n\n.bp3-icon-log-out::before{\n  content:\"\"; }\n\n.bp3-icon-manual::before{\n  content:\"\"; }\n\n.bp3-icon-manually-entered-data::before{\n  content:\"\"; }\n\n.bp3-icon-map::before{\n  content:\"\"; }\n\n.bp3-icon-map-create::before{\n  content:\"\"; }\n\n.bp3-icon-map-marker::before{\n  content:\"\"; }\n\n.bp3-icon-maximize::before{\n  content:\"\"; }\n\n.bp3-icon-media::before{\n  content:\"\"; }\n\n.bp3-icon-menu::before{\n  content:\"\"; }\n\n.bp3-icon-menu-closed::before{\n  content:\"\"; }\n\n.bp3-icon-menu-open::before{\n  content:\"\"; }\n\n.bp3-icon-merge-columns::before{\n  content:\"\"; }\n\n.bp3-icon-merge-links::before{\n  content:\"\"; }\n\n.bp3-icon-minimize::before{\n  content:\"\"; }\n\n.bp3-icon-minus::before{\n  content:\"−\"; }\n\n.bp3-icon-mobile-phone::before{\n  content:\"\"; }\n\n.bp3-icon-mobile-video::before{\n  content:\"\"; }\n\n.bp3-icon-moon::before{\n  content:\"\"; }\n\n.bp3-icon-more::before{\n  content:\"\"; }\n\n.bp3-icon-mountain::before{\n  content:\"\"; }\n\n.bp3-icon-move::before{\n  content:\"\"; }\n\n.bp3-icon-mugshot::before{\n  content:\"\"; }\n\n.bp3-icon-multi-select::before{\n  content:\"\"; }\n\n.bp3-icon-music::before{\n  content:\"\"; }\n\n.bp3-icon-new-drawing::before{\n  content:\"\"; }\n\n.bp3-icon-new-grid-item::before{\n  content:\"\"; }\n\n.bp3-icon-new-layer::before{\n  content:\"\"; }\n\n.bp3-icon-new-layers::before{\n  content:\"\"; }\n\n.bp3-icon-new-link::before{\n  content:\"\"; }\n\n.bp3-icon-new-object::before{\n  content:\"\"; }\n\n.bp3-icon-new-person::before{\n  content:\"\"; }\n\n.bp3-icon-new-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-new-text-box::before{\n  content:\"\"; }\n\n.bp3-icon-ninja::before{\n  content:\"\"; }\n\n.bp3-icon-not-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-notifications::before{\n  content:\"\"; }\n\n.bp3-icon-notifications-updated::before{\n  content:\"\"; }\n\n.bp3-icon-numbered-list::before{\n  content:\"\"; }\n\n.bp3-icon-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-office::before{\n  content:\"\"; }\n\n.bp3-icon-offline::before{\n  content:\"\"; }\n\n.bp3-icon-oil-field::before{\n  content:\"\"; }\n\n.bp3-icon-one-column::before{\n  content:\"\"; }\n\n.bp3-icon-outdated::before{\n  content:\"\"; }\n\n.bp3-icon-page-layout::before{\n  content:\"\"; }\n\n.bp3-icon-panel-stats::before{\n  content:\"\"; }\n\n.bp3-icon-panel-table::before{\n  content:\"\"; }\n\n.bp3-icon-paperclip::before{\n  content:\"\"; }\n\n.bp3-icon-paragraph::before{\n  content:\"\"; }\n\n.bp3-icon-path::before{\n  content:\"\"; }\n\n.bp3-icon-path-search::before{\n  content:\"\"; }\n\n.bp3-icon-pause::before{\n  content:\"\"; }\n\n.bp3-icon-people::before{\n  content:\"\"; }\n\n.bp3-icon-percentage::before{\n  content:\"\"; }\n\n.bp3-icon-person::before{\n  content:\"\"; }\n\n.bp3-icon-phone::before{\n  content:\"☎\"; }\n\n.bp3-icon-pie-chart::before{\n  content:\"\"; }\n\n.bp3-icon-pin::before{\n  content:\"\"; }\n\n.bp3-icon-pivot::before{\n  content:\"\"; }\n\n.bp3-icon-pivot-table::before{\n  content:\"\"; }\n\n.bp3-icon-play::before{\n  content:\"\"; }\n\n.bp3-icon-plus::before{\n  content:\"+\"; }\n\n.bp3-icon-polygon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-power::before{\n  content:\"\"; }\n\n.bp3-icon-predictive-analysis::before{\n  content:\"\"; }\n\n.bp3-icon-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-presentation::before{\n  content:\"\"; }\n\n.bp3-icon-print::before{\n  content:\"⎙\"; }\n\n.bp3-icon-projects::before{\n  content:\"\"; }\n\n.bp3-icon-properties::before{\n  content:\"\"; }\n\n.bp3-icon-property::before{\n  content:\"\"; }\n\n.bp3-icon-publish-function::before{\n  content:\"\"; }\n\n.bp3-icon-pulse::before{\n  content:\"\"; }\n\n.bp3-icon-random::before{\n  content:\"\"; }\n\n.bp3-icon-record::before{\n  content:\"\"; }\n\n.bp3-icon-redo::before{\n  content:\"\"; }\n\n.bp3-icon-refresh::before{\n  content:\"\"; }\n\n.bp3-icon-regression-chart::before{\n  content:\"\"; }\n\n.bp3-icon-remove::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-repeat::before{\n  content:\"\"; }\n\n.bp3-icon-reset::before{\n  content:\"\"; }\n\n.bp3-icon-resolve::before{\n  content:\"\"; }\n\n.bp3-icon-rig::before{\n  content:\"\"; }\n\n.bp3-icon-right-join::before{\n  content:\"\"; }\n\n.bp3-icon-ring::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-document::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-page::before{\n  content:\"\"; }\n\n.bp3-icon-satellite::before{\n  content:\"\"; }\n\n.bp3-icon-saved::before{\n  content:\"\"; }\n\n.bp3-icon-scatter-plot::before{\n  content:\"\"; }\n\n.bp3-icon-search::before{\n  content:\"\"; }\n\n.bp3-icon-search-around::before{\n  content:\"\"; }\n\n.bp3-icon-search-template::before{\n  content:\"\"; }\n\n.bp3-icon-search-text::before{\n  content:\"\"; }\n\n.bp3-icon-segmented-control::before{\n  content:\"\"; }\n\n.bp3-icon-select::before{\n  content:\"\"; }\n\n.bp3-icon-selection::before{\n  content:\"⦿\"; }\n\n.bp3-icon-send-to::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-graph::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-map::before{\n  content:\"\"; }\n\n.bp3-icon-series-add::before{\n  content:\"\"; }\n\n.bp3-icon-series-configuration::before{\n  content:\"\"; }\n\n.bp3-icon-series-derived::before{\n  content:\"\"; }\n\n.bp3-icon-series-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-series-search::before{\n  content:\"\"; }\n\n.bp3-icon-settings::before{\n  content:\"\"; }\n\n.bp3-icon-share::before{\n  content:\"\"; }\n\n.bp3-icon-shield::before{\n  content:\"\"; }\n\n.bp3-icon-shop::before{\n  content:\"\"; }\n\n.bp3-icon-shopping-cart::before{\n  content:\"\"; }\n\n.bp3-icon-signal-search::before{\n  content:\"\"; }\n\n.bp3-icon-sim-card::before{\n  content:\"\"; }\n\n.bp3-icon-slash::before{\n  content:\"\"; }\n\n.bp3-icon-small-cross::before{\n  content:\"\"; }\n\n.bp3-icon-small-minus::before{\n  content:\"\"; }\n\n.bp3-icon-small-plus::before{\n  content:\"\"; }\n\n.bp3-icon-small-tick::before{\n  content:\"\"; }\n\n.bp3-icon-snowflake::before{\n  content:\"\"; }\n\n.bp3-icon-social-media::before{\n  content:\"\"; }\n\n.bp3-icon-sort::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-asc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-split-columns::before{\n  content:\"\"; }\n\n.bp3-icon-square::before{\n  content:\"\"; }\n\n.bp3-icon-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-star::before{\n  content:\"★\"; }\n\n.bp3-icon-star-empty::before{\n  content:\"☆\"; }\n\n.bp3-icon-step-backward::before{\n  content:\"\"; }\n\n.bp3-icon-step-chart::before{\n  content:\"\"; }\n\n.bp3-icon-step-forward::before{\n  content:\"\"; }\n\n.bp3-icon-stop::before{\n  content:\"\"; }\n\n.bp3-icon-stopwatch::before{\n  content:\"\"; }\n\n.bp3-icon-strikethrough::before{\n  content:\"\"; }\n\n.bp3-icon-style::before{\n  content:\"\"; }\n\n.bp3-icon-swap-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-swap-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-circle::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-cross::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-diamond::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-square::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-down::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-up::before{\n  content:\"\"; }\n\n.bp3-icon-tag::before{\n  content:\"\"; }\n\n.bp3-icon-take-action::before{\n  content:\"\"; }\n\n.bp3-icon-taxi::before{\n  content:\"\"; }\n\n.bp3-icon-text-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-th::before{\n  content:\"\"; }\n\n.bp3-icon-th-derived::before{\n  content:\"\"; }\n\n.bp3-icon-th-disconnect::before{\n  content:\"\"; }\n\n.bp3-icon-th-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-th-list::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-down::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-up::before{\n  content:\"\"; }\n\n.bp3-icon-tick::before{\n  content:\"✓\"; }\n\n.bp3-icon-tick-circle::before{\n  content:\"\"; }\n\n.bp3-icon-time::before{\n  content:\"⏲\"; }\n\n.bp3-icon-timeline-area-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-events::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-line-chart::before{\n  content:\"\"; }\n\n.bp3-icon-tint::before{\n  content:\"\"; }\n\n.bp3-icon-torch::before{\n  content:\"\"; }\n\n.bp3-icon-tractor::before{\n  content:\"\"; }\n\n.bp3-icon-train::before{\n  content:\"\"; }\n\n.bp3-icon-translate::before{\n  content:\"\"; }\n\n.bp3-icon-trash::before{\n  content:\"\"; }\n\n.bp3-icon-tree::before{\n  content:\"\"; }\n\n.bp3-icon-trending-down::before{\n  content:\"\"; }\n\n.bp3-icon-trending-up::before{\n  content:\"\"; }\n\n.bp3-icon-truck::before{\n  content:\"\"; }\n\n.bp3-icon-two-columns::before{\n  content:\"\"; }\n\n.bp3-icon-unarchive::before{\n  content:\"\"; }\n\n.bp3-icon-underline::before{\n  content:\"⎁\"; }\n\n.bp3-icon-undo::before{\n  content:\"⎌\"; }\n\n.bp3-icon-ungroup-objects::before{\n  content:\"\"; }\n\n.bp3-icon-unknown-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-unlock::before{\n  content:\"\"; }\n\n.bp3-icon-unpin::before{\n  content:\"\"; }\n\n.bp3-icon-unresolve::before{\n  content:\"\"; }\n\n.bp3-icon-updated::before{\n  content:\"\"; }\n\n.bp3-icon-upload::before{\n  content:\"\"; }\n\n.bp3-icon-user::before{\n  content:\"\"; }\n\n.bp3-icon-variable::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-video::before{\n  content:\"\"; }\n\n.bp3-icon-volume-down::before{\n  content:\"\"; }\n\n.bp3-icon-volume-off::before{\n  content:\"\"; }\n\n.bp3-icon-volume-up::before{\n  content:\"\"; }\n\n.bp3-icon-walk::before{\n  content:\"\"; }\n\n.bp3-icon-warning-sign::before{\n  content:\"\"; }\n\n.bp3-icon-waterfall-chart::before{\n  content:\"\"; }\n\n.bp3-icon-widget::before{\n  content:\"\"; }\n\n.bp3-icon-widget-button::before{\n  content:\"\"; }\n\n.bp3-icon-widget-footer::before{\n  content:\"\"; }\n\n.bp3-icon-widget-header::before{\n  content:\"\"; }\n\n.bp3-icon-wrench::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-in::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-out::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-to-fit::before{\n  content:\"\"; }\n.bp3-submenu > .bp3-popover-wrapper{\n  display:block; }\n\n.bp3-submenu .bp3-popover-target{\n  display:block; }\n  .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{ }\n\n.bp3-submenu.bp3-popover{\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0 5px; }\n  .bp3-submenu.bp3-popover > .bp3-popover-content{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-submenu.bp3-popover, .bp3-submenu.bp3-popover.bp3-dark{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-dark .bp3-submenu.bp3-popover > .bp3-popover-content, .bp3-submenu.bp3-popover.bp3-dark > .bp3-popover-content{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n.bp3-menu{\n  background:#ffffff;\n  border-radius:3px;\n  color:#182026;\n  list-style:none;\n  margin:0;\n  min-width:180px;\n  padding:5px;\n  text-align:left; }\n\n.bp3-menu-divider{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px; }\n  .bp3-dark .bp3-menu-divider{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-menu-item{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  border-radius:2px;\n  color:inherit;\n  line-height:20px;\n  padding:5px 7px;\n  text-decoration:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-menu-item > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-menu-item > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > *{\n    margin-right:7px; }\n  .bp3-menu-item:empty::before,\n  .bp3-menu-item > :last-child{\n    margin-right:0; }\n  .bp3-menu-item > .bp3-fill{\n    word-break:break-word; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    background-color:rgba(167, 182, 194, 0.3);\n    cursor:pointer;\n    text-decoration:none; }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-dark .bp3-menu-item{\n    color:inherit; }\n    .bp3-dark .bp3-menu-item:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n      background-color:rgba(138, 155, 168, 0.15);\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-disabled{\n      background-color:inherit;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-menu-item.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-primary::before, .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary:active, .bp3-menu-item.bp3-intent-primary:active::before, .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-success::before, .bp3-menu-item.bp3-intent-success::after,\n    .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-menu-item.bp3-intent-success:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success:active, .bp3-menu-item.bp3-intent-success:active::before, .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-warning::before, .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning:active, .bp3-menu-item.bp3-intent-warning:active::before, .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-danger::before, .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger:active, .bp3-menu-item.bp3-intent-danger:active::before, .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    margin-right:7px; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > .bp3-icon{\n    color:#5c7080;\n    margin-top:2px; }\n  .bp3-menu-item .bp3-menu-item-label{\n    color:#5c7080; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    color:inherit; }\n  .bp3-menu-item.bp3-active, .bp3-menu-item:active{\n    background-color:rgba(115, 134, 148, 0.3); }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit !important;\n    color:rgba(92, 112, 128, 0.6) !important;\n    cursor:not-allowed !important;\n    outline:none !important; }\n    .bp3-menu-item.bp3-disabled::before,\n    .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-large .bp3-menu-item{\n    font-size:16px;\n    line-height:22px;\n    padding:9px 7px; }\n    .bp3-large .bp3-menu-item .bp3-icon{\n      margin-top:3px; }\n    .bp3-large .bp3-menu-item::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      margin-right:10px;\n      margin-top:1px; }\n\nbutton.bp3-menu-item{\n  background:none;\n  border:none;\n  text-align:left;\n  width:100%; }\n.bp3-menu-header{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px;\n  cursor:default;\n  padding-left:2px; }\n  .bp3-dark .bp3-menu-header{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n  .bp3-menu-header:first-of-type{\n    border-top:none; }\n  .bp3-menu-header > h6{\n    color:#182026;\n    font-weight:600;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    line-height:17px;\n    margin:0;\n    padding:10px 7px 0 1px; }\n    .bp3-dark .bp3-menu-header > h6{\n      color:#f5f8fa; }\n  .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n  .bp3-large .bp3-menu-header > h6{\n    font-size:18px;\n    padding-bottom:5px;\n    padding-top:15px; }\n  .bp3-large .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n\n.bp3-dark .bp3-menu{\n  background:#30404d;\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-menu-item{ }\n  .bp3-dark .bp3-menu-item.bp3-intent-primary{\n    color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary::before, .bp3-dark .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary:active, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-success{\n    color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success::before, .bp3-dark .bp3-menu-item.bp3-intent-success::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success:active, .bp3-dark .bp3-menu-item.bp3-intent-success:active::before, .bp3-dark .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-warning{\n    color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning::before, .bp3-dark .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning:active, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-danger{\n    color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger::before, .bp3-dark .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger:active, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item::before,\n  .bp3-dark .bp3-menu-item > .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item .bp3-menu-item-label{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item.bp3-active, .bp3-dark .bp3-menu-item:active{\n    background-color:rgba(138, 155, 168, 0.3); }\n  .bp3-dark .bp3-menu-item.bp3-disabled{\n    color:rgba(167, 182, 194, 0.6) !important; }\n    .bp3-dark .bp3-menu-item.bp3-disabled::before,\n    .bp3-dark .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-dark .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(167, 182, 194, 0.6) !important; }\n\n.bp3-dark .bp3-menu-divider,\n.bp3-dark .bp3-menu-header{\n  border-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-dark .bp3-menu-header > h6{\n  color:#f5f8fa; }\n\n.bp3-label .bp3-menu{\n  margin-top:5px; }\n.bp3-navbar{\n  background-color:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  height:50px;\n  padding:0 15px;\n  position:relative;\n  width:100%;\n  z-index:10; }\n  .bp3-navbar.bp3-dark,\n  .bp3-dark .bp3-navbar{\n    background-color:#394b59; }\n  .bp3-navbar.bp3-dark{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-navbar{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-navbar.bp3-fixed-top{\n    left:0;\n    position:fixed;\n    right:0;\n    top:0; }\n\n.bp3-navbar-heading{\n  font-size:16px;\n  margin-right:15px; }\n\n.bp3-navbar-group{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:50px; }\n  .bp3-navbar-group.bp3-align-left{\n    float:left; }\n  .bp3-navbar-group.bp3-align-right{\n    float:right; }\n\n.bp3-navbar-divider{\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  height:20px;\n  margin:0 10px; }\n  .bp3-dark .bp3-navbar-divider{\n    border-left-color:rgba(255, 255, 255, 0.15); }\n.bp3-non-ideal-state{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  height:100%;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  text-align:center;\n  width:100%; }\n  .bp3-non-ideal-state > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-non-ideal-state > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-non-ideal-state::before,\n  .bp3-non-ideal-state > *{\n    margin-bottom:20px; }\n  .bp3-non-ideal-state:empty::before,\n  .bp3-non-ideal-state > :last-child{\n    margin-bottom:0; }\n  .bp3-non-ideal-state > *{\n    max-width:400px; }\n\n.bp3-non-ideal-state-visual{\n  color:rgba(92, 112, 128, 0.6);\n  font-size:60px; }\n  .bp3-dark .bp3-non-ideal-state-visual{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-overflow-list{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:nowrap;\n      flex-wrap:nowrap;\n  min-width:0; }\n\n.bp3-overflow-list-spacer{\n  -ms-flex-negative:1;\n      flex-shrink:1;\n  width:1px; }\n\nbody.bp3-overlay-open{\n  overflow:hidden; }\n\n.bp3-overlay{\n  bottom:0;\n  left:0;\n  position:static;\n  right:0;\n  top:0;\n  z-index:20; }\n  .bp3-overlay:not(.bp3-overlay-open){\n    pointer-events:none; }\n  .bp3-overlay.bp3-overlay-container{\n    overflow:hidden;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-scroll-container{\n    overflow:auto;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-scroll-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-inline{\n    display:inline;\n    overflow:visible; }\n\n.bp3-overlay-content{\n  position:fixed;\n  z-index:20; }\n  .bp3-overlay-inline .bp3-overlay-content,\n  .bp3-overlay-scroll-container .bp3-overlay-content{\n    position:absolute; }\n\n.bp3-overlay-backdrop{\n  bottom:0;\n  left:0;\n  position:fixed;\n  right:0;\n  top:0;\n  opacity:1;\n  background-color:rgba(16, 22, 26, 0.7);\n  overflow:auto;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  z-index:20; }\n  .bp3-overlay-backdrop.bp3-overlay-enter, .bp3-overlay-backdrop.bp3-overlay-appear{\n    opacity:0; }\n  .bp3-overlay-backdrop.bp3-overlay-enter-active, .bp3-overlay-backdrop.bp3-overlay-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop.bp3-overlay-exit{\n    opacity:1; }\n  .bp3-overlay-backdrop.bp3-overlay-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop:focus{\n    outline:none; }\n  .bp3-overlay-inline .bp3-overlay-backdrop{\n    position:absolute; }\n.bp3-panel-stack{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-view{\n    background-color:#30404d; }\n  .bp3-panel-stack-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter, .bp3-panel-stack-push .bp3-panel-stack-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter-active, .bp3-panel-stack-push .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter, .bp3-panel-stack-pop .bp3-panel-stack-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter-active, .bp3-panel-stack-pop .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-panel-stack2{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack2-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack2-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack2-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack2-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack2-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack2-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-view{\n    background-color:#30404d; }\n  .bp3-panel-stack2-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter, .bp3-panel-stack2-push .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter-active, .bp3-panel-stack2-push .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter, .bp3-panel-stack2-pop .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter-active, .bp3-panel-stack2-pop .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-popover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  border-radius:3px;\n  display:inline-block;\n  z-index:20; }\n  .bp3-popover .bp3-popover-arrow{\n    height:30px;\n    position:absolute;\n    width:30px; }\n    .bp3-popover .bp3-popover-arrow::before{\n      height:20px;\n      margin:5px;\n      width:20px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover{\n    margin-bottom:17px;\n    margin-top:-17px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n      bottom:-11px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover{\n    margin-left:17px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n      left:-11px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover{\n    margin-top:17px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n      top:-11px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover{\n    margin-left:-17px;\n    margin-right:17px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n      right:-11px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-popover > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-popover > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n    top:-0.3934px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n    right:-0.3934px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n    left:-0.3934px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n    bottom:-0.3934px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-popover .bp3-popover-content{\n    background:#ffffff;\n    color:inherit; }\n  .bp3-popover .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-popover .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-popover .bp3-popover-arrow-fill{\n    fill:#ffffff; }\n  .bp3-popover-enter > .bp3-popover, .bp3-popover-appear > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3); }\n  .bp3-popover-enter-active > .bp3-popover, .bp3-popover-appear-active > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover-exit > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover .bp3-popover-content{\n    border-radius:3px;\n    position:relative; }\n  .bp3-popover.bp3-popover-content-sizing .bp3-popover-content{\n    max-width:350px;\n    padding:20px; }\n  .bp3-popover-target + .bp3-overlay .bp3-popover.bp3-popover-content-sizing{\n    width:350px; }\n  .bp3-popover.bp3-minimal{\n    margin:0 !important; }\n    .bp3-popover.bp3-minimal .bp3-popover-arrow{\n      display:none; }\n    .bp3-popover.bp3-minimal.bp3-popover{\n      -webkit-transform:scale(1);\n              transform:scale(1); }\n      .bp3-popover-enter > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-enter-active > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n      .bp3-popover-exit > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-exit-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover.bp3-dark,\n  .bp3-dark .bp3-popover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-popover .bp3-popover-content{\n      background:#30404d;\n      color:inherit; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-popover .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-fill{\n      fill:#30404d; }\n\n.bp3-popover-arrow::before{\n  border-radius:2px;\n  content:\"\";\n  display:block;\n  position:absolute;\n  -webkit-transform:rotate(45deg);\n          transform:rotate(45deg); }\n\n.bp3-tether-pinned .bp3-popover-arrow{\n  display:none; }\n\n.bp3-popover-backdrop{\n  background:rgba(255, 255, 255, 0); }\n\n.bp3-transition-container{\n  opacity:1;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  z-index:20; }\n  .bp3-transition-container.bp3-popover-enter, .bp3-transition-container.bp3-popover-appear{\n    opacity:0; }\n  .bp3-transition-container.bp3-popover-enter-active, .bp3-transition-container.bp3-popover-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container.bp3-popover-exit{\n    opacity:1; }\n  .bp3-transition-container.bp3-popover-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container:focus{\n    outline:none; }\n  .bp3-transition-container.bp3-popover-leave .bp3-popover-content{\n    pointer-events:none; }\n  .bp3-transition-container[data-x-out-of-boundaries]{\n    display:none; }\n\nspan.bp3-popover-target{\n  display:inline-block; }\n\n.bp3-popover-wrapper.bp3-fill{\n  width:100%; }\n\n.bp3-portal{\n  left:0;\n  position:absolute;\n  right:0;\n  top:0; }\n@-webkit-keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n@keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n\n.bp3-progress-bar{\n  background:rgba(92, 112, 128, 0.2);\n  border-radius:40px;\n  display:block;\n  height:8px;\n  overflow:hidden;\n  position:relative;\n  width:100%; }\n  .bp3-progress-bar .bp3-progress-meter{\n    background:linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%);\n    background-color:rgba(92, 112, 128, 0.8);\n    background-size:30px 30px;\n    border-radius:40px;\n    height:100%;\n    position:absolute;\n    -webkit-transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:100%; }\n  .bp3-progress-bar:not(.bp3-no-animation):not(.bp3-no-stripes) .bp3-progress-meter{\n    animation:linear-progress-bar-stripes 300ms linear infinite reverse; }\n  .bp3-progress-bar.bp3-no-stripes .bp3-progress-meter{\n    background-image:none; }\n\n.bp3-dark .bp3-progress-bar{\n  background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-progress-bar .bp3-progress-meter{\n    background-color:#8a9ba8; }\n\n.bp3-progress-bar.bp3-intent-primary .bp3-progress-meter{\n  background-color:#137cbd; }\n\n.bp3-progress-bar.bp3-intent-success .bp3-progress-meter{\n  background-color:#0f9960; }\n\n.bp3-progress-bar.bp3-intent-warning .bp3-progress-meter{\n  background-color:#d9822b; }\n\n.bp3-progress-bar.bp3-intent-danger .bp3-progress-meter{\n  background-color:#db3737; }\n@-webkit-keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n@keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n.bp3-skeleton{\n  -webkit-animation:1000ms linear infinite alternate skeleton-glow;\n          animation:1000ms linear infinite alternate skeleton-glow;\n  background:rgba(206, 217, 224, 0.2);\n  background-clip:padding-box !important;\n  border-color:rgba(206, 217, 224, 0.2) !important;\n  border-radius:2px;\n  -webkit-box-shadow:none !important;\n          box-shadow:none !important;\n  color:transparent !important;\n  cursor:default;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-skeleton::before, .bp3-skeleton::after,\n  .bp3-skeleton *{\n    visibility:hidden !important; }\n.bp3-slider{\n  height:40px;\n  min-width:150px;\n  width:100%;\n  cursor:default;\n  outline:none;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-slider:hover{\n    cursor:pointer; }\n  .bp3-slider:active{\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-slider.bp3-disabled{\n    cursor:not-allowed;\n    opacity:0.5; }\n  .bp3-slider.bp3-slider-unlabeled{\n    height:16px; }\n\n.bp3-slider-track,\n.bp3-slider-progress{\n  height:6px;\n  left:0;\n  right:0;\n  top:5px;\n  position:absolute; }\n\n.bp3-slider-track{\n  border-radius:3px;\n  overflow:hidden; }\n\n.bp3-slider-progress{\n  background:rgba(92, 112, 128, 0.2); }\n  .bp3-dark .bp3-slider-progress{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-slider-progress.bp3-intent-primary{\n    background-color:#137cbd; }\n  .bp3-slider-progress.bp3-intent-success{\n    background-color:#0f9960; }\n  .bp3-slider-progress.bp3-intent-warning{\n    background-color:#d9822b; }\n  .bp3-slider-progress.bp3-intent-danger{\n    background-color:#db3737; }\n\n.bp3-slider-handle{\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n  cursor:pointer;\n  height:16px;\n  left:0;\n  position:absolute;\n  top:0;\n  width:16px; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-slider-handle:active, .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-slider-handle:disabled, .bp3-slider-handle.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-slider-handle:disabled.bp3-active, .bp3-slider-handle:disabled.bp3-active:hover, .bp3-slider-handle.bp3-disabled.bp3-active, .bp3-slider-handle.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n  .bp3-slider-handle:focus{\n    z-index:1; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n    cursor:-webkit-grab;\n    cursor:grab;\n    z-index:2; }\n  .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-disabled .bp3-slider-handle{\n    background:#bfccd6;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    pointer-events:none; }\n  .bp3-dark .bp3-slider-handle{\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover, .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-slider-handle:disabled, .bp3-dark .bp3-slider-handle.bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-slider-handle:disabled.bp3-active, .bp3-dark .bp3-slider-handle.bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-slider-handle .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-slider-handle, .bp3-dark .bp3-slider-handle:hover{\n      background-color:#394b59; }\n    .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#293742; }\n  .bp3-dark .bp3-disabled .bp3-slider-handle{\n    background:#5c7080;\n    border-color:#5c7080;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-slider-handle .bp3-slider-label{\n    background:#394b59;\n    border-radius:3px;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n    color:#f5f8fa;\n    margin-left:8px; }\n    .bp3-dark .bp3-slider-handle .bp3-slider-label{\n      background:#e1e8ed;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n      color:#394b59; }\n    .bp3-disabled .bp3-slider-handle .bp3-slider-label{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-slider-handle.bp3-start, .bp3-slider-handle.bp3-end{\n    width:8px; }\n  .bp3-slider-handle.bp3-start{\n    border-bottom-right-radius:0;\n    border-top-right-radius:0; }\n  .bp3-slider-handle.bp3-end{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0;\n    margin-left:8px; }\n    .bp3-slider-handle.bp3-end .bp3-slider-label{\n      margin-left:0; }\n\n.bp3-slider-label{\n  -webkit-transform:translate(-50%, 20px);\n          transform:translate(-50%, 20px);\n  display:inline-block;\n  font-size:12px;\n  line-height:1;\n  padding:2px 5px;\n  position:absolute;\n  vertical-align:top; }\n\n.bp3-slider.bp3-vertical{\n  height:150px;\n  min-width:40px;\n  width:40px; }\n  .bp3-slider.bp3-vertical .bp3-slider-track,\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    bottom:0;\n    height:auto;\n    left:5px;\n    top:0;\n    width:6px; }\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    top:auto; }\n  .bp3-slider.bp3-vertical .bp3-slider-label{\n    -webkit-transform:translate(20px, 50%);\n            transform:translate(20px, 50%); }\n  .bp3-slider.bp3-vertical .bp3-slider-handle{\n    top:auto; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle .bp3-slider-label{\n      margin-left:0;\n      margin-top:-8px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end, .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      height:8px;\n      margin-left:0;\n      width:16px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      border-bottom-right-radius:3px;\n      border-top-left-radius:0; }\n      .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start .bp3-slider-label{\n        -webkit-transform:translate(20px);\n                transform:translate(20px); }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end{\n      border-bottom-left-radius:0;\n      border-bottom-right-radius:0;\n      border-top-left-radius:3px;\n      margin-bottom:8px; }\n\n@-webkit-keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n@keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n.bp3-spinner{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  overflow:visible;\n  vertical-align:middle; }\n  .bp3-spinner svg{\n    display:block; }\n  .bp3-spinner path{\n    fill-opacity:0; }\n  .bp3-spinner .bp3-spinner-head{\n    stroke:rgba(92, 112, 128, 0.8);\n    stroke-linecap:round;\n    -webkit-transform-origin:center;\n            transform-origin:center;\n    -webkit-transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-spinner .bp3-spinner-track{\n    stroke:rgba(92, 112, 128, 0.2); }\n\n.bp3-spinner-animation{\n  -webkit-animation:pt-spinner-animation 500ms linear infinite;\n          animation:pt-spinner-animation 500ms linear infinite; }\n  .bp3-no-spin > .bp3-spinner-animation{\n    -webkit-animation:none;\n            animation:none; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-head{\n  stroke:#8a9ba8; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-track{\n  stroke:rgba(16, 22, 26, 0.5); }\n\n.bp3-spinner.bp3-intent-primary .bp3-spinner-head{\n  stroke:#137cbd; }\n\n.bp3-spinner.bp3-intent-success .bp3-spinner-head{\n  stroke:#0f9960; }\n\n.bp3-spinner.bp3-intent-warning .bp3-spinner-head{\n  stroke:#d9822b; }\n\n.bp3-spinner.bp3-intent-danger .bp3-spinner-head{\n  stroke:#db3737; }\n.bp3-tabs.bp3-vertical{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-list{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab{\n      border-radius:3px;\n      padding:0 10px;\n      width:100%; }\n      .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab[aria-selected=\"true\"]{\n        background-color:rgba(19, 124, 189, 0.2);\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n      background-color:rgba(19, 124, 189, 0.2);\n      border-radius:3px;\n      bottom:0;\n      height:auto;\n      left:0;\n      right:0;\n      top:0; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-panel{\n    margin-top:0;\n    padding-left:20px; }\n\n.bp3-tab-list{\n  -webkit-box-align:end;\n      -ms-flex-align:end;\n          align-items:flex-end;\n  border:none;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  list-style:none;\n  margin:0;\n  padding:0;\n  position:relative; }\n  .bp3-tab-list > *:not(:last-child){\n    margin-right:20px; }\n\n.bp3-tab{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:#182026;\n  cursor:pointer;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  font-size:14px;\n  line-height:30px;\n  max-width:100%;\n  position:relative;\n  vertical-align:top; }\n  .bp3-tab a{\n    color:inherit;\n    display:block;\n    text-decoration:none; }\n  .bp3-tab-indicator-wrapper ~ .bp3-tab{\n    background-color:transparent !important;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important; }\n  .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-tab[aria-selected=\"true\"]{\n    border-radius:0;\n    -webkit-box-shadow:inset 0 -3px 0 #106ba3;\n            box-shadow:inset 0 -3px 0 #106ba3; }\n  .bp3-tab[aria-selected=\"true\"], .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#106ba3; }\n  .bp3-tab:focus{\n    -moz-outline-radius:0; }\n  .bp3-large > .bp3-tab{\n    font-size:16px;\n    line-height:40px; }\n\n.bp3-tab-panel{\n  margin-top:20px; }\n  .bp3-tab-panel[aria-hidden=\"true\"]{\n    display:none; }\n\n.bp3-tab-indicator-wrapper{\n  left:0;\n  pointer-events:none;\n  position:absolute;\n  top:0;\n  -webkit-transform:translateX(0), translateY(0);\n          transform:translateX(0), translateY(0);\n  -webkit-transition:height, width, -webkit-transform;\n  transition:height, width, -webkit-transform;\n  transition:height, transform, width;\n  transition:height, transform, width, -webkit-transform;\n  -webkit-transition-duration:200ms;\n          transition-duration:200ms;\n  -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n          transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n    background-color:#106ba3;\n    bottom:0;\n    height:3px;\n    left:0;\n    position:absolute;\n    right:0; }\n  .bp3-tab-indicator-wrapper.bp3-no-animation{\n    -webkit-transition:none;\n    transition:none; }\n\n.bp3-dark .bp3-tab{\n  color:#f5f8fa; }\n  .bp3-dark .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"]{\n    -webkit-box-shadow:inset 0 -3px 0 #48aff0;\n            box-shadow:inset 0 -3px 0 #48aff0; }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"], .bp3-dark .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#48aff0; }\n\n.bp3-dark .bp3-tab-indicator{\n  background-color:#48aff0; }\n\n.bp3-flex-expander{\n  -webkit-box-flex:1;\n      -ms-flex:1 1;\n          flex:1 1; }\n.bp3-tag{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#5c7080;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:#f5f8fa;\n  font-size:12px;\n  line-height:16px;\n  max-width:100%;\n  min-height:20px;\n  min-width:20px;\n  padding:2px 6px;\n  position:relative; }\n  .bp3-tag.bp3-interactive{\n    cursor:pointer; }\n    .bp3-tag.bp3-interactive:hover{\n      background-color:rgba(92, 112, 128, 0.85); }\n    .bp3-tag.bp3-interactive.bp3-active, .bp3-tag.bp3-interactive:active{\n      background-color:rgba(92, 112, 128, 0.7); }\n  .bp3-tag > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag::before,\n  .bp3-tag > *{\n    margin-right:4px; }\n  .bp3-tag:empty::before,\n  .bp3-tag > :last-child{\n    margin-right:0; }\n  .bp3-tag:focus{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:0;\n    -moz-outline-radius:6px; }\n  .bp3-tag.bp3-round{\n    border-radius:30px;\n    padding-left:8px;\n    padding-right:8px; }\n  .bp3-dark .bp3-tag{\n    background-color:#bfccd6;\n    color:#182026; }\n    .bp3-dark .bp3-tag.bp3-interactive{\n      cursor:pointer; }\n      .bp3-dark .bp3-tag.bp3-interactive:hover{\n        background-color:rgba(191, 204, 214, 0.85); }\n      .bp3-dark .bp3-tag.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-interactive:active{\n        background-color:rgba(191, 204, 214, 0.7); }\n    .bp3-dark .bp3-tag > .bp3-icon, .bp3-dark .bp3-tag .bp3-icon-standard, .bp3-dark .bp3-tag .bp3-icon-large{\n      fill:currentColor; }\n  .bp3-tag > .bp3-icon, .bp3-tag .bp3-icon-standard, .bp3-tag .bp3-icon-large{\n    fill:#ffffff; }\n  .bp3-tag.bp3-large,\n  .bp3-large .bp3-tag{\n    font-size:14px;\n    line-height:20px;\n    min-height:30px;\n    min-width:30px;\n    padding:5px 10px; }\n    .bp3-tag.bp3-large::before,\n    .bp3-tag.bp3-large > *,\n    .bp3-large .bp3-tag::before,\n    .bp3-large .bp3-tag > *{\n      margin-right:7px; }\n    .bp3-tag.bp3-large:empty::before,\n    .bp3-tag.bp3-large > :last-child,\n    .bp3-large .bp3-tag:empty::before,\n    .bp3-large .bp3-tag > :last-child{\n      margin-right:0; }\n    .bp3-tag.bp3-large.bp3-round,\n    .bp3-large .bp3-tag.bp3-round{\n      padding-left:12px;\n      padding-right:12px; }\n  .bp3-tag.bp3-intent-primary{\n    background:#137cbd;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.85); }\n      .bp3-tag.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.7); }\n  .bp3-tag.bp3-intent-success{\n    background:#0f9960;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.85); }\n      .bp3-tag.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.7); }\n  .bp3-tag.bp3-intent-warning{\n    background:#d9822b;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.85); }\n      .bp3-tag.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.7); }\n  .bp3-tag.bp3-intent-danger{\n    background:#db3737;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.85); }\n      .bp3-tag.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.7); }\n  .bp3-tag.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-tag.bp3-minimal > .bp3-icon, .bp3-tag.bp3-minimal .bp3-icon-standard, .bp3-tag.bp3-minimal .bp3-icon-large{\n    fill:#5c7080; }\n  .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n    background-color:rgba(138, 155, 168, 0.2);\n    color:#182026; }\n    .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n        background-color:rgba(92, 112, 128, 0.3); }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n        background-color:rgba(92, 112, 128, 0.4); }\n    .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n      color:#f5f8fa; }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n          background-color:rgba(191, 204, 214, 0.3); }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n          background-color:rgba(191, 204, 214, 0.4); }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) > .bp3-icon, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n        fill:#a7b6c2; }\n  .bp3-tag.bp3-minimal.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15);\n    color:#106ba3; }\n    .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-primary > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-large{\n      fill:#137cbd; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25);\n      color:#48aff0; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n          background-color:rgba(19, 124, 189, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n          background-color:rgba(19, 124, 189, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15);\n    color:#0d8050; }\n    .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-success > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-large{\n      fill:#0f9960; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25);\n      color:#3dcc91; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n          background-color:rgba(15, 153, 96, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n          background-color:rgba(15, 153, 96, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15);\n    color:#bf7326; }\n    .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-warning > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-large{\n      fill:#d9822b; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25);\n      color:#ffb366; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n          background-color:rgba(217, 130, 43, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n          background-color:rgba(217, 130, 43, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15);\n    color:#c23030; }\n    .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-danger > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-large{\n      fill:#db3737; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25);\n      color:#ff7373; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n          background-color:rgba(219, 55, 55, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n          background-color:rgba(219, 55, 55, 0.45); }\n\n.bp3-tag-remove{\n  background:none;\n  border:none;\n  color:inherit;\n  cursor:pointer;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin-bottom:-2px;\n  margin-right:-6px !important;\n  margin-top:-2px;\n  opacity:0.5;\n  padding:2px;\n  padding-left:0; }\n  .bp3-tag-remove:hover{\n    background:none;\n    opacity:0.8;\n    text-decoration:none; }\n  .bp3-tag-remove:active{\n    opacity:1; }\n  .bp3-tag-remove:empty::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    content:\"\"; }\n  .bp3-large .bp3-tag-remove{\n    margin-right:-10px !important;\n    padding:0 5px 0 0; }\n    .bp3-large .bp3-tag-remove:empty::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1; }\n.bp3-tag-input{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  cursor:text;\n  height:auto;\n  line-height:inherit;\n  min-height:30px;\n  padding-left:5px;\n  padding-right:0; }\n  .bp3-tag-input > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag-input > .bp3-tag-input-values{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag-input .bp3-tag-input-icon{\n    color:#5c7080;\n    margin-left:2px;\n    margin-right:7px;\n    margin-top:7px; }\n  .bp3-tag-input .bp3-tag-input-values{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row;\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    -ms-flex-item-align:stretch;\n        align-self:stretch;\n    -ms-flex-wrap:wrap;\n        flex-wrap:wrap;\n    margin-right:7px;\n    margin-top:5px;\n    min-width:0; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      -webkit-box-flex:0;\n          -ms-flex-positive:0;\n              flex-grow:0;\n      -ms-flex-negative:0;\n          flex-shrink:0; }\n    .bp3-tag-input .bp3-tag-input-values > .bp3-fill{\n      -webkit-box-flex:1;\n          -ms-flex-positive:1;\n              flex-grow:1;\n      -ms-flex-negative:1;\n          flex-shrink:1; }\n    .bp3-tag-input .bp3-tag-input-values::before,\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-right:5px; }\n    .bp3-tag-input .bp3-tag-input-values:empty::before,\n    .bp3-tag-input .bp3-tag-input-values > :last-child{\n      margin-right:0; }\n    .bp3-tag-input .bp3-tag-input-values:first-child .bp3-input-ghost:first-child{\n      padding-left:5px; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-bottom:5px; }\n  .bp3-tag-input .bp3-tag{\n    overflow-wrap:break-word; }\n    .bp3-tag-input .bp3-tag.bp3-active{\n      outline:rgba(19, 124, 189, 0.6) auto 2px;\n      outline-offset:0;\n      -moz-outline-radius:6px; }\n  .bp3-tag-input .bp3-input-ghost{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:20px;\n    width:80px; }\n    .bp3-tag-input .bp3-input-ghost:disabled, .bp3-tag-input .bp3-input-ghost.bp3-disabled{\n      cursor:not-allowed; }\n  .bp3-tag-input .bp3-button,\n  .bp3-tag-input .bp3-spinner{\n    margin:3px;\n    margin-left:0; }\n  .bp3-tag-input .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-tag-input.bp3-large{\n    height:auto;\n    min-height:40px; }\n    .bp3-tag-input.bp3-large::before,\n    .bp3-tag-input.bp3-large > *{\n      margin-right:10px; }\n    .bp3-tag-input.bp3-large:empty::before,\n    .bp3-tag-input.bp3-large > :last-child{\n      margin-right:0; }\n    .bp3-tag-input.bp3-large .bp3-tag-input-icon{\n      margin-left:5px;\n      margin-top:10px; }\n    .bp3-tag-input.bp3-large .bp3-input-ghost{\n      line-height:30px; }\n    .bp3-tag-input.bp3-large .bp3-button{\n      min-height:30px;\n      min-width:30px;\n      padding:5px 10px;\n      margin:5px;\n      margin-left:0; }\n    .bp3-tag-input.bp3-large .bp3-spinner{\n      margin:8px;\n      margin-left:0; }\n  .bp3-tag-input.bp3-active{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-tag-input .bp3-tag-input-icon, .bp3-tag-input.bp3-dark .bp3-tag-input-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-tag-input .bp3-input-ghost, .bp3-tag-input.bp3-dark .bp3-input-ghost{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-webkit-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-moz-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost:-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tag-input.bp3-active, .bp3-tag-input.bp3-dark.bp3-active{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-primary, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-success, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-warning, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-danger, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-input-ghost{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0; }\n  .bp3-input-ghost::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:focus{\n    outline:none !important; }\n.bp3-toast{\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:20px 0 0;\n  max-width:500px;\n  min-width:300px;\n  pointer-events:all;\n  position:relative !important; }\n  .bp3-toast.bp3-toast-enter, .bp3-toast.bp3-toast-appear{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active, .bp3-toast.bp3-toast-appear-active{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-enter ~ .bp3-toast, .bp3-toast.bp3-toast-appear ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active ~ .bp3-toast, .bp3-toast.bp3-toast-appear-active ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-exit{\n    opacity:1;\n    -webkit-filter:blur(0);\n            filter:blur(0); }\n  .bp3-toast.bp3-toast-exit-active{\n    opacity:0;\n    -webkit-filter:blur(10px);\n            filter:blur(10px);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:opacity, filter;\n    transition-property:opacity, filter, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast.bp3-toast-exit ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0); }\n  .bp3-toast.bp3-toast-exit-active ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px);\n    -webkit-transition-delay:50ms;\n            transition-delay:50ms;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast .bp3-button-group{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    padding:5px;\n    padding-left:0; }\n  .bp3-toast > .bp3-icon{\n    color:#5c7080;\n    margin:12px;\n    margin-right:0; }\n  .bp3-toast.bp3-dark,\n  .bp3-dark .bp3-toast{\n    background-color:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-toast.bp3-dark > .bp3-icon,\n    .bp3-dark .bp3-toast > .bp3-icon{\n      color:#a7b6c2; }\n  .bp3-toast[class*=\"bp3-intent-\"] a{\n    color:rgba(255, 255, 255, 0.7); }\n    .bp3-toast[class*=\"bp3-intent-\"] a:hover{\n      color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] > .bp3-icon{\n    color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::before,\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button .bp3-icon, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    color:rgba(255, 255, 255, 0.7) !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:focus{\n    outline-color:rgba(255, 255, 255, 0.5); }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:hover{\n    background-color:rgba(255, 255, 255, 0.15) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    background-color:rgba(255, 255, 255, 0.3) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::after{\n    background:rgba(255, 255, 255, 0.3) !important; }\n  .bp3-toast.bp3-intent-primary{\n    background-color:#137cbd;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-success{\n    background-color:#0f9960;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-warning{\n    background-color:#d9822b;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-danger{\n    background-color:#db3737;\n    color:#ffffff; }\n\n.bp3-toast-message{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  padding:11px;\n  word-break:break-word; }\n\n.bp3-toast-container{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box !important;\n  display:-ms-flexbox !important;\n  display:flex !important;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  left:0;\n  overflow:hidden;\n  padding:0 20px 20px;\n  pointer-events:none;\n  right:0;\n  z-index:40; }\n  .bp3-toast-container.bp3-toast-container-in-portal{\n    position:fixed; }\n  .bp3-toast-container.bp3-toast-container-inline{\n    position:absolute; }\n  .bp3-toast-container.bp3-toast-container-top{\n    top:0; }\n  .bp3-toast-container.bp3-toast-container-bottom{\n    bottom:0;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:reverse;\n        -ms-flex-direction:column-reverse;\n            flex-direction:column-reverse;\n    top:auto; }\n  .bp3-toast-container.bp3-toast-container-left{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start; }\n  .bp3-toast-container.bp3-toast-container-right{\n    -webkit-box-align:end;\n        -ms-flex-align:end;\n            align-items:flex-end; }\n\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active) ~ .bp3-toast, .bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active) ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-exit-active ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-leave-active ~ .bp3-toast{\n  -webkit-transform:translateY(60px);\n          transform:translateY(60px); }\n.bp3-tooltip{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1); }\n  .bp3-tooltip .bp3-popover-arrow{\n    height:22px;\n    position:absolute;\n    width:22px; }\n    .bp3-tooltip .bp3-popover-arrow::before{\n      height:14px;\n      margin:4px;\n      width:14px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip{\n    margin-bottom:11px;\n    margin-top:-11px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n      bottom:-8px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip{\n    margin-left:11px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n      left:-8px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip{\n    margin-top:11px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n      top:-8px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip{\n    margin-left:-11px;\n    margin-right:11px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n      right:-8px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-tooltip > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-tooltip > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n    top:-0.22183px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n    right:-0.22183px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n    left:-0.22183px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n    bottom:-0.22183px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-tooltip .bp3-popover-content{\n    background:#394b59;\n    color:#f5f8fa; }\n  .bp3-tooltip .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-tooltip .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-tooltip .bp3-popover-arrow-fill{\n    fill:#394b59; }\n  .bp3-popover-enter > .bp3-tooltip, .bp3-popover-appear > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8); }\n  .bp3-popover-enter-active > .bp3-tooltip, .bp3-popover-appear-active > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover-exit > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tooltip .bp3-popover-content{\n    padding:10px 12px; }\n  .bp3-tooltip.bp3-dark,\n  .bp3-dark .bp3-tooltip{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-tooltip .bp3-popover-content{\n      background:#e1e8ed;\n      color:#394b59; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-fill{\n      fill:#e1e8ed; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-content{\n    background:#137cbd;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-arrow-fill{\n    fill:#137cbd; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-content{\n    background:#0f9960;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-arrow-fill{\n    fill:#0f9960; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-content{\n    background:#d9822b;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-arrow-fill{\n    fill:#d9822b; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-content{\n    background:#db3737;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-arrow-fill{\n    fill:#db3737; }\n\n.bp3-tooltip-indicator{\n  border-bottom:dotted 1px;\n  cursor:help; }\n.bp3-tree .bp3-icon, .bp3-tree .bp3-icon-standard, .bp3-tree .bp3-icon-large{\n  color:#5c7080; }\n  .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-tree .bp3-icon.bp3-intent-success, .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-tree-node-list{\n  list-style:none;\n  margin:0;\n  padding-left:0; }\n\n.bp3-tree-root{\n  background-color:transparent;\n  cursor:default;\n  padding-left:0;\n  position:relative; }\n\n.bp3-tree-node-content-0{\n  padding-left:0px; }\n\n.bp3-tree-node-content-1{\n  padding-left:23px; }\n\n.bp3-tree-node-content-2{\n  padding-left:46px; }\n\n.bp3-tree-node-content-3{\n  padding-left:69px; }\n\n.bp3-tree-node-content-4{\n  padding-left:92px; }\n\n.bp3-tree-node-content-5{\n  padding-left:115px; }\n\n.bp3-tree-node-content-6{\n  padding-left:138px; }\n\n.bp3-tree-node-content-7{\n  padding-left:161px; }\n\n.bp3-tree-node-content-8{\n  padding-left:184px; }\n\n.bp3-tree-node-content-9{\n  padding-left:207px; }\n\n.bp3-tree-node-content-10{\n  padding-left:230px; }\n\n.bp3-tree-node-content-11{\n  padding-left:253px; }\n\n.bp3-tree-node-content-12{\n  padding-left:276px; }\n\n.bp3-tree-node-content-13{\n  padding-left:299px; }\n\n.bp3-tree-node-content-14{\n  padding-left:322px; }\n\n.bp3-tree-node-content-15{\n  padding-left:345px; }\n\n.bp3-tree-node-content-16{\n  padding-left:368px; }\n\n.bp3-tree-node-content-17{\n  padding-left:391px; }\n\n.bp3-tree-node-content-18{\n  padding-left:414px; }\n\n.bp3-tree-node-content-19{\n  padding-left:437px; }\n\n.bp3-tree-node-content-20{\n  padding-left:460px; }\n\n.bp3-tree-node-content{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:30px;\n  padding-right:5px;\n  width:100%; }\n  .bp3-tree-node-content:hover{\n    background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-tree-node-caret,\n.bp3-tree-node-caret-none{\n  min-width:30px; }\n\n.bp3-tree-node-caret{\n  color:#5c7080;\n  cursor:pointer;\n  padding:7px;\n  -webkit-transform:rotate(0deg);\n          transform:rotate(0deg);\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tree-node-caret:hover{\n    color:#182026; }\n  .bp3-dark .bp3-tree-node-caret{\n    color:#a7b6c2; }\n    .bp3-dark .bp3-tree-node-caret:hover{\n      color:#f5f8fa; }\n  .bp3-tree-node-caret.bp3-tree-node-caret-open{\n    -webkit-transform:rotate(90deg);\n            transform:rotate(90deg); }\n  .bp3-tree-node-caret.bp3-icon-standard::before{\n    content:\"\"; }\n\n.bp3-tree-node-icon{\n  margin-right:7px;\n  position:relative; }\n\n.bp3-tree-node-label{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-label span{\n    display:inline; }\n\n.bp3-tree-node-secondary-label{\n  padding:0 5px;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-secondary-label .bp3-popover-wrapper,\n  .bp3-tree-node-secondary-label .bp3-popover-target{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-content{\n  background-color:inherit;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-caret,\n.bp3-tree-node.bp3-disabled .bp3-tree-node-icon{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content,\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-standard, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-large{\n    color:#ffffff; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret::before{\n    color:rgba(255, 255, 255, 0.7); }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret:hover::before{\n    color:#ffffff; }\n\n.bp3-dark .bp3-tree-node-content:hover{\n  background-color:rgba(92, 112, 128, 0.3); }\n\n.bp3-dark .bp3-tree .bp3-icon, .bp3-dark .bp3-tree .bp3-icon-standard, .bp3-dark .bp3-tree .bp3-icon-large{\n  color:#a7b6c2; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-dark .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n.bp3-omnibar{\n  -webkit-filter:blur(0);\n          filter:blur(0);\n  opacity:1;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  left:calc(50% - 250px);\n  top:20vh;\n  width:500px;\n  z-index:21; }\n  .bp3-omnibar.bp3-overlay-enter, .bp3-omnibar.bp3-overlay-appear{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2; }\n  .bp3-omnibar.bp3-overlay-enter-active, .bp3-omnibar.bp3-overlay-appear-active{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar.bp3-overlay-exit{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1; }\n  .bp3-omnibar.bp3-overlay-exit-active{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar .bp3-input{\n    background-color:transparent;\n    border-radius:0; }\n    .bp3-omnibar .bp3-input, .bp3-omnibar .bp3-input:focus{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-omnibar .bp3-menu{\n    background-color:transparent;\n    border-radius:0;\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n    max-height:calc(60vh - 40px);\n    overflow:auto; }\n    .bp3-omnibar .bp3-menu:empty{\n      display:none; }\n  .bp3-dark .bp3-omnibar, .bp3-omnibar.bp3-dark{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-omnibar-overlay .bp3-overlay-backdrop{\n  background-color:rgba(16, 22, 26, 0.2); }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n\n.bp3-multi-select{\n  min-width:150px; }\n\n.bp3-multi-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto; }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* This file was auto-generated by ensureUiComponents() in @jupyterlab/buildutils */\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n/* Icons urls */\n\n:root {\n  --jp-icon-add: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDEzaC02djZoLTJ2LTZINXYtMmg2VjVoMnY2aDZ2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-bug: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0yMCA4aC0yLjgxYy0uNDUtLjc4LTEuMDctMS40NS0xLjgyLTEuOTZMMTcgNC40MSAxNS41OSAzbC0yLjE3IDIuMTdDMTIuOTYgNS4wNiAxMi40OSA1IDEyIDVjLS40OSAwLS45Ni4wNi0xLjQxLjE3TDguNDEgMyA3IDQuNDFsMS42MiAxLjYzQzcuODggNi41NSA3LjI2IDcuMjIgNi44MSA4SDR2MmgyLjA5Yy0uMDUuMzMtLjA5LjY2LS4wOSAxdjFINHYyaDJ2MWMwIC4zNC4wNC42Ny4wOSAxSDR2MmgyLjgxYzEuMDQgMS43OSAyLjk3IDMgNS4xOSAzczQuMTUtMS4yMSA1LjE5LTNIMjB2LTJoLTIuMDljLjA1LS4zMy4wOS0uNjYuMDktMXYtMWgydi0yaC0ydi0xYzAtLjM0LS4wNC0uNjctLjA5LTFIMjBWOHptLTYgOGgtNHYtMmg0djJ6bTAtNGgtNHYtMmg0djJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-build: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE0LjkgMTcuNDVDMTYuMjUgMTcuNDUgMTcuMzUgMTYuMzUgMTcuMzUgMTVDMTcuMzUgMTMuNjUgMTYuMjUgMTIuNTUgMTQuOSAxMi41NUMxMy41NCAxMi41NSAxMi40NSAxMy42NSAxMi40NSAxNUMxMi40NSAxNi4zNSAxMy41NCAxNy40NSAxNC45IDE3LjQ1Wk0yMC4xIDE1LjY4TDIxLjU4IDE2Ljg0QzIxLjcxIDE2Ljk1IDIxLjc1IDE3LjEzIDIxLjY2IDE3LjI5TDIwLjI2IDE5LjcxQzIwLjE3IDE5Ljg2IDIwIDE5LjkyIDE5LjgzIDE5Ljg2TDE4LjA5IDE5LjE2QzE3LjczIDE5LjQ0IDE3LjMzIDE5LjY3IDE2LjkxIDE5Ljg1TDE2LjY0IDIxLjdDMTYuNjIgMjEuODcgMTYuNDcgMjIgMTYuMyAyMkgxMy41QzEzLjMyIDIyIDEzLjE4IDIxLjg3IDEzLjE1IDIxLjdMMTIuODkgMTkuODVDMTIuNDYgMTkuNjcgMTIuMDcgMTkuNDQgMTEuNzEgMTkuMTZMOS45NjAwMiAxOS44NkM5LjgxMDAyIDE5LjkyIDkuNjIwMDIgMTkuODYgOS41NDAwMiAxOS43MUw4LjE0MDAyIDE3LjI5QzguMDUwMDIgMTcuMTMgOC4wOTAwMiAxNi45NSA4LjIyMDAyIDE2Ljg0TDkuNzAwMDIgMTUuNjhMOS42NTAwMSAxNUw5LjcwMDAyIDE0LjMxTDguMjIwMDIgMTMuMTZDOC4wOTAwMiAxMy4wNSA4LjA1MDAyIDEyLjg2IDguMTQwMDIgMTIuNzFMOS41NDAwMiAxMC4yOUM5LjYyMDAyIDEwLjEzIDkuODEwMDIgMTAuMDcgOS45NjAwMiAxMC4xM0wxMS43MSAxMC44NEMxMi4wNyAxMC41NiAxMi40NiAxMC4zMiAxMi44OSAxMC4xNUwxMy4xNSA4LjI4OTk4QzEzLjE4IDguMTI5OTggMTMuMzIgNy45OTk5OCAxMy41IDcuOTk5OThIMTYuM0MxNi40NyA3Ljk5OTk4IDE2LjYyIDguMTI5OTggMTYuNjQgOC4yODk5OEwxNi45MSAxMC4xNUMxNy4zMyAxMC4zMiAxNy43MyAxMC41NiAxOC4wOSAxMC44NEwxOS44MyAxMC4xM0MyMCAxMC4wNyAyMC4xNyAxMC4xMyAyMC4yNiAxMC4yOUwyMS42NiAxMi43MUMyMS43NSAxMi44NiAyMS43MSAxMy4wNSAyMS41OCAxMy4xNkwyMC4xIDE0LjMxTDIwLjE1IDE1TDIwLjEgMTUuNjhaIi8+CiAgICA8cGF0aCBkPSJNNy4zMjk2NiA3LjQ0NDU0QzguMDgzMSA3LjAwOTU0IDguMzM5MzIgNi4wNTMzMiA3LjkwNDMyIDUuMjk5ODhDNy40NjkzMiA0LjU0NjQzIDYuNTA4MSA0LjI4MTU2IDUuNzU0NjYgNC43MTY1NkM1LjM5MTc2IDQuOTI2MDggNS4xMjY5NSA1LjI3MTE4IDUuMDE4NDkgNS42NzU5NEM0LjkxMDA0IDYuMDgwNzEgNC45NjY4MiA2LjUxMTk4IDUuMTc2MzQgNi44NzQ4OEM1LjYxMTM0IDcuNjI4MzIgNi41NzYyMiA3Ljg3OTU0IDcuMzI5NjYgNy40NDQ1NFpNOS42NTcxOCA0Ljc5NTkzTDEwLjg2NzIgNC45NTE3OUMxMC45NjI4IDQuOTc3NDEgMTEuMDQwMiA1LjA3MTMzIDExLjAzODIgNS4xODc5M0wxMS4wMzg4IDYuOTg4OTNDMTEuMDQ1NSA3LjEwMDU0IDEwLjk2MTYgNy4xOTUxOCAxMC44NTUgNy4yMTA1NEw5LjY2MDAxIDcuMzgwODNMOS4yMzkxNSA4LjEzMTg4TDkuNjY5NjEgOS4yNTc0NUM5LjcwNzI5IDkuMzYyNzEgOS42NjkzNCA5LjQ3Njk5IDkuNTc0MDggOS41MzE5OUw4LjAxNTIzIDEwLjQzMkM3LjkxMTMxIDEwLjQ5MiA3Ljc5MzM3IDEwLjQ2NzcgNy43MjEwNSAxMC4zODI0TDYuOTg3NDggOS40MzE4OEw2LjEwOTMxIDkuNDMwODNMNS4zNDcwNCAxMC4zOTA1QzUuMjg5MDkgMTAuNDcwMiA1LjE3MzgzIDEwLjQ5MDUgNS4wNzE4NyAxMC40MzM5TDMuNTEyNDUgOS41MzI5M0MzLjQxMDQ5IDkuNDc2MzMgMy4zNzY0NyA5LjM1NzQxIDMuNDEwNzUgOS4yNTY3OUwzLjg2MzQ3IDguMTQwOTNMMy42MTc0OSA3Ljc3NDg4TDMuNDIzNDcgNy4zNzg4M0wyLjIzMDc1IDcuMjEyOTdDMi4xMjY0NyA3LjE5MjM1IDIuMDQwNDkgNy4xMDM0MiAyLjA0MjQ1IDYuOTg2ODJMMi4wNDE4NyA1LjE4NTgyQzIuMDQzODMgNS4wNjkyMiAyLjExOTA5IDQuOTc5NTggMi4yMTcwNCA0Ljk2OTIyTDMuNDIwNjUgNC43OTM5M0wzLjg2NzQ5IDQuMDI3ODhMMy40MTEwNSAyLjkxNzMxQzMuMzczMzcgMi44MTIwNCAzLjQxMTMxIDIuNjk3NzYgMy41MTUyMyAyLjYzNzc2TDUuMDc0MDggMS43Mzc3NkM1LjE2OTM0IDEuNjgyNzYgNS4yODcyOSAxLjcwNzA0IDUuMzU5NjEgMS43OTIzMUw2LjExOTE1IDIuNzI3ODhMNi45ODAwMSAyLjczODkzTDcuNzI0OTYgMS43ODkyMkM3Ljc5MTU2IDEuNzA0NTggNy45MTU0OCAxLjY3OTIyIDguMDA4NzkgMS43NDA4Mkw5LjU2ODIxIDIuNjQxODJDOS42NzAxNyAyLjY5ODQyIDkuNzEyODUgMi44MTIzNCA5LjY4NzIzIDIuOTA3OTdMOS4yMTcxOCA0LjAzMzgzTDkuNDYzMTYgNC4zOTk4OEw5LjY1NzE4IDQuNzk1OTNaIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iOS45LDEzLjYgMy42LDcuNCA0LjQsNi42IDkuOSwxMi4yIDE1LjQsNi43IDE2LjEsNy40ICIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNS45TDksOS43bDMuOC0zLjhsMS4yLDEuMmwtNC45LDVsLTQuOS01TDUuMiw1Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNy41TDksMTEuMmwzLjgtMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-left: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik0xMC44LDEyLjhMNy4xLDlsMy44LTMuOGwwLDcuNkgxMC44eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-right: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik03LjIsNS4yTDEwLjksOWwtMy44LDMuOFY1LjJINy4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-up-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iMTUuNCwxMy4zIDkuOSw3LjcgNC40LDEzLjIgMy42LDEyLjUgOS45LDYuMyAxNi4xLDEyLjYgIi8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-up: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik01LjIsMTAuNUw5LDYuOGwzLjgsMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-case-sensitive: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgogIDxnIGNsYXNzPSJqcC1pY29uLWFjY2VudDIiIGZpbGw9IiNGRkYiPgogICAgPHBhdGggZD0iTTcuNiw4aDAuOWwzLjUsOGgtMS4xTDEwLDE0SDZsLTAuOSwySDRMNy42LDh6IE04LDkuMUw2LjQsMTNoMy4yTDgsOS4xeiIvPgogICAgPHBhdGggZD0iTTE2LjYsOS44Yy0wLjIsMC4xLTAuNCwwLjEtMC43LDAuMWMtMC4yLDAtMC40LTAuMS0wLjYtMC4yYy0wLjEtMC4xLTAuMi0wLjQtMC4yLTAuNyBjLTAuMywwLjMtMC42LDAuNS0wLjksMC43Yy0wLjMsMC4xLTAuNywwLjItMS4xLDAuMmMtMC4zLDAtMC41LDAtMC43LTAuMWMtMC4yLTAuMS0wLjQtMC4yLTAuNi0wLjNjLTAuMi0wLjEtMC4zLTAuMy0wLjQtMC41IGMtMC4xLTAuMi0wLjEtMC40LTAuMS0wLjdjMC0wLjMsMC4xLTAuNiwwLjItMC44YzAuMS0wLjIsMC4zLTAuNCwwLjQtMC41QzEyLDcsMTIuMiw2LjksMTIuNSw2LjhjMC4yLTAuMSwwLjUtMC4xLDAuNy0wLjIgYzAuMy0wLjEsMC41LTAuMSwwLjctMC4xYzAuMiwwLDAuNC0wLjEsMC42LTAuMWMwLjIsMCwwLjMtMC4xLDAuNC0wLjJjMC4xLTAuMSwwLjItMC4yLDAuMi0wLjRjMC0xLTEuMS0xLTEuMy0xIGMtMC40LDAtMS40LDAtMS40LDEuMmgtMC45YzAtMC40LDAuMS0wLjcsMC4yLTFjMC4xLTAuMiwwLjMtMC40LDAuNS0wLjZjMC4yLTAuMiwwLjUtMC4zLDAuOC0wLjNDMTMuMyw0LDEzLjYsNCwxMy45LDQgYzAuMywwLDAuNSwwLDAuOCwwLjFjMC4zLDAsMC41LDAuMSwwLjcsMC4yYzAuMiwwLjEsMC40LDAuMywwLjUsMC41QzE2LDUsMTYsNS4yLDE2LDUuNnYyLjljMCwwLjIsMCwwLjQsMCwwLjUgYzAsMC4xLDAuMSwwLjIsMC4zLDAuMmMwLjEsMCwwLjIsMCwwLjMsMFY5Ljh6IE0xNS4yLDYuOWMtMS4yLDAuNi0zLjEsMC4yLTMuMSwxLjRjMCwxLjQsMy4xLDEsMy4xLTAuNVY2Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-check: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik05IDE2LjE3TDQuODMgMTJsLTEuNDIgMS40MUw5IDE5IDIxIDdsLTEuNDEtMS40MXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-circle-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDJDNi40NyAyIDIgNi40NyAyIDEyczQuNDcgMTAgMTAgMTAgMTAtNC40NyAxMC0xMFMxNy41MyAyIDEyIDJ6bTAgMThjLTQuNDEgMC04LTMuNTktOC04czMuNTktOCA4LTggOCAzLjU5IDggOC0zLjU5IDgtOCA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-circle: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjgiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-clear: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8bWFzayBpZD0iZG9udXRIb2xlIj4KICAgIDxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0id2hpdGUiIC8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSI4IiBmaWxsPSJibGFjayIvPgogIDwvbWFzaz4KCiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxyZWN0IGhlaWdodD0iMTgiIHdpZHRoPSIyIiB4PSIxMSIgeT0iMyIgdHJhbnNmb3JtPSJyb3RhdGUoMzE1LCAxMiwgMTIpIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIgbWFzaz0idXJsKCNkb251dEhvbGUpIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-close: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1ub25lIGpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIGpwLWljb24zLWhvdmVyIiBmaWxsPSJub25lIj4KICAgIDxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjExIi8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIGpwLWljb24tYWNjZW50Mi1ob3ZlciIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMTkgNi40MUwxNy41OSA1IDEyIDEwLjU5IDYuNDEgNSA1IDYuNDEgMTAuNTkgMTIgNSAxNy41OSA2LjQxIDE5IDEyIDEzLjQxIDE3LjU5IDE5IDE5IDE3LjU5IDEzLjQxIDEyeiIvPgogIDwvZz4KCiAgPGcgY2xhc3M9ImpwLWljb24tbm9uZSBqcC1pY29uLWJ1c3kiIGZpbGw9Im5vbmUiPgogICAgPGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-code: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTExLjQgMTguNkw2LjggMTRMMTEuNCA5LjRMMTAgOEw0IDE0TDEwIDIwTDExLjQgMTguNlpNMTYuNiAxOC42TDIxLjIgMTRMMTYuNiA5LjRMMTggOEwyNCAxNEwxOCAyMEwxNi42IDE4LjZWMTguNloiLz4KCTwvZz4KPC9zdmc+Cg==);\n  --jp-icon-console: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwMCAyMDAiPgogIDxnIGNsYXNzPSJqcC1pY29uLWJyYW5kMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMjg4RDEiPgogICAgPHBhdGggZD0iTTIwIDE5LjhoMTYwdjE1OS45SDIweiIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNmZmYiPgogICAgPHBhdGggZD0iTTEwNSAxMjcuM2g0MHYxMi44aC00MHpNNTEuMSA3N0w3NCA5OS45bC0yMy4zIDIzLjMgMTAuNSAxMC41IDIzLjMtMjMuM0w5NSA5OS45IDg0LjUgODkuNCA2MS42IDY2LjV6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-copy: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTExLjksMUgzLjJDMi40LDEsMS43LDEuNywxLjcsMi41djEwLjJoMS41VjIuNWg4LjdWMXogTTE0LjEsMy45aC04Yy0wLjgsMC0xLjUsMC43LTEuNSwxLjV2MTAuMmMwLDAuOCwwLjcsMS41LDEuNSwxLjVoOCBjMC44LDAsMS41LTAuNywxLjUtMS41VjUuNEMxNS41LDQuNiwxNC45LDMuOSwxNC4xLDMuOXogTTE0LjEsMTUuNWgtOFY1LjRoOFYxNS41eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-copyright: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDI0IDI0IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCI+CiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0xMS44OCw5LjE0YzEuMjgsMC4wNiwxLjYxLDEuMTUsMS42MywxLjY2aDEuNzljLTAuMDgtMS45OC0xLjQ5LTMuMTktMy40NS0zLjE5QzkuNjQsNy42MSw4LDksOCwxMi4xNCBjMCwxLjk0LDAuOTMsNC4yNCwzLjg0LDQuMjRjMi4yMiwwLDMuNDEtMS42NSwzLjQ0LTIuOTVoLTEuNzljLTAuMDMsMC41OS0wLjQ1LDEuMzgtMS42MywxLjQ0QzEwLjU1LDE0LjgzLDEwLDEzLjgxLDEwLDEyLjE0IEMxMCw5LjI1LDExLjI4LDkuMTYsMTEuODgsOS4xNHogTTEyLDJDNi40OCwyLDIsNi40OCwyLDEyczQuNDgsMTAsMTAsMTBzMTAtNC40OCwxMC0xMFMxNy41MiwyLDEyLDJ6IE0xMiwyMGMtNC40MSwwLTgtMy41OS04LTggczMuNTktOCw4LThzOCwzLjU5LDgsOFMxNi40MSwyMCwxMiwyMHoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-cut: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkuNjQgNy42NGMuMjMtLjUuMzYtMS4wNS4zNi0xLjY0IDAtMi4yMS0xLjc5LTQtNC00UzIgMy43OSAyIDZzMS43OSA0IDQgNGMuNTkgMCAxLjE0LS4xMyAxLjY0LS4zNkwxMCAxMmwtMi4zNiAyLjM2QzcuMTQgMTQuMTMgNi41OSAxNCA2IDE0Yy0yLjIxIDAtNCAxLjc5LTQgNHMxLjc5IDQgNCA0IDQtMS43OSA0LTRjMC0uNTktLjEzLTEuMTQtLjM2LTEuNjRMMTIgMTRsNyA3aDN2LTFMOS42NCA3LjY0ek02IDhjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTAgMTJjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTYtNy41Yy0uMjggMC0uNS0uMjItLjUtLjVzLjIyLS41LjUtLjUuNS4yMi41LjUtLjIyLjUtLjUuNXpNMTkgM2wtNiA2IDIgMiA3LTdWM3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-download: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDloLTRWM0g5djZINWw3IDcgNy03ek01IDE4djJoMTR2LTJINXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-edit: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMgMTcuMjVWMjFoMy43NUwxNy44MSA5Ljk0bC0zLjc1LTMuNzVMMyAxNy4yNXpNMjAuNzEgNy4wNGMuMzktLjM5LjM5LTEuMDIgMC0xLjQxbC0yLjM0LTIuMzRjLS4zOS0uMzktMS4wMi0uMzktMS40MSAwbC0xLjgzIDEuODMgMy43NSAzLjc1IDEuODMtMS44M3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-ellipses: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iNSIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxOSIgY3k9IjEyIiByPSIyIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-extension: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwLjUgMTFIMTlWN2MwLTEuMS0uOS0yLTItMmgtNFYzLjVDMTMgMi4xMiAxMS44OCAxIDEwLjUgMVM4IDIuMTIgOCAzLjVWNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAydjMuOEgzLjVjMS40OSAwIDIuNyAxLjIxIDIuNyAyLjdzLTEuMjEgMi43LTIuNyAyLjdIMlYyMGMwIDEuMS45IDIgMiAyaDMuOHYtMS41YzAtMS40OSAxLjIxLTIuNyAyLjctMi43IDEuNDkgMCAyLjcgMS4yMSAyLjcgMi43VjIySDE3YzEuMSAwIDItLjkgMi0ydi00aDEuNWMxLjM4IDAgMi41LTEuMTIgMi41LTIuNVMyMS44OCAxMSAyMC41IDExeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-fast-forward: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTQgMThsOC41LTZMNCA2djEyem05LTEydjEybDguNS02TDEzIDZ6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-file-upload: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkgMTZoNnYtNmg0bC03LTctNyA3aDR6bS00IDJoMTR2Mkg1eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-file: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuMyA4LjJsLTUuNS01LjVjLS4zLS4zLS43LS41LTEuMi0uNUgzLjljLS44LjEtMS42LjktMS42IDEuOHYxNC4xYzAgLjkuNyAxLjYgMS42IDEuNmgxNC4yYy45IDAgMS42LS43IDEuNi0xLjZWOS40Yy4xLS41LS4xLS45LS40LTEuMnptLTUuOC0zLjNsMy40IDMuNmgtMy40VjQuOXptMy45IDEyLjdINC43Yy0uMSAwLS4yIDAtLjItLjJWNC43YzAtLjIuMS0uMy4yLS4zaDcuMnY0LjRzMCAuOC4zIDEuMWMuMy4zIDEuMS4zIDEuMS4zaDQuM3Y3LjJzLS4xLjItLjIuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-filter-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEwIDE4aDR2LTJoLTR2MnpNMyA2djJoMThWNkgzem0zIDdoMTJ2LTJINnYyeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY4YzAtMS4xLS45LTItMi0yaC04bC0yLTJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-html5: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMDAiIGQ9Ik0xMDguNCAwaDIzdjIyLjhoMjEuMlYwaDIzdjY5aC0yM1Y0NmgtMjF2MjNoLTIzLjJNMjA2IDIzaC0yMC4zVjBoNjMuN3YyM0gyMjl2NDZoLTIzbTUzLjUtNjloMjQuMWwxNC44IDI0LjNMMzEzLjIgMGgyNC4xdjY5aC0yM1YzNC44bC0xNi4xIDI0LjgtMTYuMS0yNC44VjY5aC0yMi42bTg5LjItNjloMjN2NDYuMmgzMi42VjY5aC01NS42Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI2U0NGQyNiIgZD0iTTEwNy42IDQ3MWwtMzMtMzcwLjRoMzYyLjhsLTMzIDM3MC4yTDI1NS43IDUxMiIvPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNmMTY1MjkiIGQ9Ik0yNTYgNDgwLjVWMTMxaDE0OC4zTDM3NiA0NDciLz4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNlYmViZWIiIGQ9Ik0xNDIgMTc2LjNoMTE0djQ1LjRoLTY0LjJsNC4yIDQ2LjVoNjB2NDUuM0gxNTQuNG0yIDIyLjhIMjAybDMuMiAzNi4zIDUwLjggMTMuNnY0Ny40bC05My4yLTI2Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIiBmaWxsPSIjZmZmIiBkPSJNMzY5LjYgMTc2LjNIMjU1Ljh2NDUuNGgxMDkuNm0tNC4xIDQ2LjVIMjU1Ljh2NDUuNGg1NmwtNS4zIDU5LTUwLjcgMTMuNnY0Ny4ybDkzLTI1LjgiLz4KPC9zdmc+Cg==);\n  --jp-icon-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1icmFuZDQganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNGRkYiIGQ9Ik0yLjIgMi4yaDE3LjV2MTcuNUgyLjJ6Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzNGNTFCNSIgZD0iTTIuMiAyLjJ2MTcuNWgxNy41bC4xLTE3LjVIMi4yem0xMi4xIDIuMmMxLjIgMCAyLjIgMSAyLjIgMi4ycy0xIDIuMi0yLjIgMi4yLTIuMi0xLTIuMi0yLjIgMS0yLjIgMi4yLTIuMnpNNC40IDE3LjZsMy4zLTguOCAzLjMgNi42IDIuMi0zLjIgNC40IDUuNEg0LjR6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-inspector: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY2YzAtMS4xLS45LTItMi0yem0tNSAxNEg0di00aDExdjR6bTAtNUg0VjloMTF2NHptNSA1aC00VjloNHY5eiIvPgo8L3N2Zz4K);\n  --jp-icon-json: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNGOUE4MjUiPgogICAgPHBhdGggZD0iTTIwLjIgMTEuOGMtMS42IDAtMS43LjUtMS43IDEgMCAuNC4xLjkuMSAxLjMuMS41LjEuOS4xIDEuMyAwIDEuNy0xLjQgMi4zLTMuNSAyLjNoLS45di0xLjloLjVjMS4xIDAgMS40IDAgMS40LS44IDAtLjMgMC0uNi0uMS0xIDAtLjQtLjEtLjgtLjEtMS4yIDAtMS4zIDAtMS44IDEuMy0yLTEuMy0uMi0xLjMtLjctMS4zLTIgMC0uNC4xLS44LjEtMS4yLjEtLjQuMS0uNy4xLTEgMC0uOC0uNC0uNy0xLjQtLjhoLS41VjQuMWguOWMyLjIgMCAzLjUuNyAzLjUgMi4zIDAgLjQtLjEuOS0uMSAxLjMtLjEuNS0uMS45LS4xIDEuMyAwIC41LjIgMSAxLjcgMXYxLjh6TTEuOCAxMC4xYzEuNiAwIDEuNy0uNSAxLjctMSAwLS40LS4xLS45LS4xLTEuMy0uMS0uNS0uMS0uOS0uMS0xLjMgMC0xLjYgMS40LTIuMyAzLjUtMi4zaC45djEuOWgtLjVjLTEgMC0xLjQgMC0xLjQuOCAwIC4zIDAgLjYuMSAxIDAgLjIuMS42LjEgMSAwIDEuMyAwIDEuOC0xLjMgMkM2IDExLjIgNiAxMS43IDYgMTNjMCAuNC0uMS44LS4xIDEuMi0uMS4zLS4xLjctLjEgMSAwIC44LjMuOCAxLjQuOGguNXYxLjloLS45Yy0yLjEgMC0zLjUtLjYtMy41LTIuMyAwLS40LjEtLjkuMS0xLjMuMS0uNS4xLS45LjEtMS4zIDAtLjUtLjItMS0xLjctMXYtMS45eiIvPgogICAgPGNpcmNsZSBjeD0iMTEiIGN5PSIxMy44IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY3g9IjExIiBjeT0iOC4yIiByPSIyLjEiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-julia: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDMyNSAzMDAiPgogIDxnIGNsYXNzPSJqcC1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjY2IzYzMzIj4KICAgIDxwYXRoIGQ9Ik0gMTUwLjg5ODQzOCAyMjUgQyAxNTAuODk4NDM4IDI2Ni40MjE4NzUgMTE3LjMyMDMxMiAzMDAgNzUuODk4NDM4IDMwMCBDIDM0LjQ3NjU2MiAzMDAgMC44OTg0MzggMjY2LjQyMTg3NSAwLjg5ODQzOCAyMjUgQyAwLjg5ODQzOCAxODMuNTc4MTI1IDM0LjQ3NjU2MiAxNTAgNzUuODk4NDM4IDE1MCBDIDExNy4zMjAzMTIgMTUwIDE1MC44OTg0MzggMTgzLjU3ODEyNSAxNTAuODk4NDM4IDIyNSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzM4OTgyNiI+CiAgICA8cGF0aCBkPSJNIDIzNy41IDc1IEMgMjM3LjUgMTE2LjQyMTg3NSAyMDMuOTIxODc1IDE1MCAxNjIuNSAxNTAgQyAxMjEuMDc4MTI1IDE1MCA4Ny41IDExNi40MjE4NzUgODcuNSA3NSBDIDg3LjUgMzMuNTc4MTI1IDEyMS4wNzgxMjUgMCAxNjIuNSAwIEMgMjAzLjkyMTg3NSAwIDIzNy41IDMzLjU3ODEyNSAyMzcuNSA3NSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzk1NThiMiI+CiAgICA8cGF0aCBkPSJNIDMyNC4xMDE1NjIgMjI1IEMgMzI0LjEwMTU2MiAyNjYuNDIxODc1IDI5MC41MjM0MzggMzAwIDI0OS4xMDE1NjIgMzAwIEMgMjA3LjY3OTY4OCAzMDAgMTc0LjEwMTU2MiAyNjYuNDIxODc1IDE3NC4xMDE1NjIgMjI1IEMgMTc0LjEwMTU2MiAxODMuNTc4MTI1IDIwNy42Nzk2ODggMTUwIDI0OS4xMDE1NjIgMTUwIEMgMjkwLjUyMzQzOCAxNTAgMzI0LjEwMTU2MiAxODMuNTc4MTI1IDMyNC4xMDE1NjIgMjI1Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-jupyter-favicon: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUyIiBoZWlnaHQ9IjE2NSIgdmlld0JveD0iMCAwIDE1MiAxNjUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA3ODk0NywgMTEwLjU4MjkyNykiIGQ9Ik03NS45NDIyODQyLDI5LjU4MDQ1NjEgQzQzLjMwMjM5NDcsMjkuNTgwNDU2MSAxNC43OTY3ODMyLDE3LjY1MzQ2MzQgMCwwIEM1LjUxMDgzMjExLDE1Ljg0MDY4MjkgMTUuNzgxNTM4OSwyOS41NjY3NzMyIDI5LjM5MDQ5NDcsMzkuMjc4NDE3MSBDNDIuOTk5Nyw0OC45ODk4NTM3IDU5LjI3MzcsNTQuMjA2NzgwNSA3NS45NjA1Nzg5LDU0LjIwNjc4MDUgQzkyLjY0NzQ1NzksNTQuMjA2NzgwNSAxMDguOTIxNDU4LDQ4Ljk4OTg1MzcgMTIyLjUzMDY2MywzOS4yNzg0MTcxIEMxMzYuMTM5NDUzLDI5LjU2Njc3MzIgMTQ2LjQxMDI4NCwxNS44NDA2ODI5IDE1MS45MjExNTgsMCBDMTM3LjA4Nzg2OCwxNy42NTM0NjM0IDEwOC41ODI1ODksMjkuNTgwNDU2MSA3NS45NDIyODQyLDI5LjU4MDQ1NjEgTDc1Ljk0MjI4NDIsMjkuNTgwNDU2MSBaIiAvPgogICAgPHBhdGggdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMzczNjgsIDAuNzA0ODc4KSIgZD0iTTc1Ljk3ODQ1NzksMjQuNjI2NDA3MyBDMTA4LjYxODc2MywyNC42MjY0MDczIDEzNy4xMjQ0NTgsMzYuNTUzNDQxNSAxNTEuOTIxMTU4LDU0LjIwNjc4MDUgQzE0Ni40MTAyODQsMzguMzY2MjIyIDEzNi4xMzk0NTMsMjQuNjQwMTMxNyAxMjIuNTMwNjYzLDE0LjkyODQ4NzggQzEwOC45MjE0NTgsNS4yMTY4NDM5IDkyLjY0NzQ1NzksMCA3NS45NjA1Nzg5LDAgQzU5LjI3MzcsMCA0Mi45OTk3LDUuMjE2ODQzOSAyOS4zOTA0OTQ3LDE0LjkyODQ4NzggQzE1Ljc4MTUzODksMjQuNjQwMTMxNyA1LjUxMDgzMjExLDM4LjM2NjIyMiAwLDU0LjIwNjc4MDUgQzE0LjgzMzA4MTYsMzYuNTg5OTI5MyA0My4zMzg1Njg0LDI0LjYyNjQwNzMgNzUuOTc4NDU3OSwyNC42MjY0MDczIEw3NS45Nzg0NTc5LDI0LjYyNjQwNzMgWiIgLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-jupyter: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzkiIGhlaWdodD0iNTEiIHZpZXdCb3g9IjAgMCAzOSA1MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTYzOCAtMjI4MSkiPgogICAgPGcgY2xhc3M9ImpwLWljb24td2FybjAiIGZpbGw9IiNGMzc3MjYiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5Ljc0IDIzMTEuOTgpIiBkPSJNIDE4LjI2NDYgNy4xMzQxMUMgMTAuNDE0NSA3LjEzNDExIDMuNTU4NzIgNC4yNTc2IDAgMEMgMS4zMjUzOSAzLjgyMDQgMy43OTU1NiA3LjEzMDgxIDcuMDY4NiA5LjQ3MzAzQyAxMC4zNDE3IDExLjgxNTIgMTQuMjU1NyAxMy4wNzM0IDE4LjI2OSAxMy4wNzM0QyAyMi4yODIzIDEzLjA3MzQgMjYuMTk2MyAxMS44MTUyIDI5LjQ2OTQgOS40NzMwM0MgMzIuNzQyNCA3LjEzMDgxIDM1LjIxMjYgMy44MjA0IDM2LjUzOCAwQyAzMi45NzA1IDQuMjU3NiAyNi4xMTQ4IDcuMTM0MTEgMTguMjY0NiA3LjEzNDExWiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5LjczIDIyODUuNDgpIiBkPSJNIDE4LjI3MzMgNS45MzkzMUMgMjYuMTIzNSA1LjkzOTMxIDMyLjk3OTMgOC44MTU4MyAzNi41MzggMTMuMDczNEMgMzUuMjEyNiA5LjI1MzAzIDMyLjc0MjQgNS45NDI2MiAyOS40Njk0IDMuNjAwNEMgMjYuMTk2MyAxLjI1ODE4IDIyLjI4MjMgMCAxOC4yNjkgMEMgMTQuMjU1NyAwIDEwLjM0MTcgMS4yNTgxOCA3LjA2ODYgMy42MDA0QyAzLjc5NTU2IDUuOTQyNjIgMS4zMjUzOSA5LjI1MzAzIDAgMTMuMDczNEMgMy41Njc0NSA4LjgyNDYzIDEwLjQyMzIgNS45MzkzMSAxOC4yNzMzIDUuOTM5MzFaIi8+CiAgICA8L2c+CiAgICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjY5LjMgMjI4MS4zMSkiIGQ9Ik0gNS44OTM1MyAyLjg0NEMgNS45MTg4OSAzLjQzMTY1IDUuNzcwODUgNC4wMTM2NyA1LjQ2ODE1IDQuNTE2NDVDIDUuMTY1NDUgNS4wMTkyMiA0LjcyMTY4IDUuNDIwMTUgNC4xOTI5OSA1LjY2ODUxQyAzLjY2NDMgNS45MTY4OCAzLjA3NDQ0IDYuMDAxNTEgMi40OTgwNSA1LjkxMTcxQyAxLjkyMTY2IDUuODIxOSAxLjM4NDYzIDUuNTYxNyAwLjk1NDg5OCA1LjE2NDAxQyAwLjUyNTE3IDQuNzY2MzMgMC4yMjIwNTYgNC4yNDkwMyAwLjA4MzkwMzcgMy42Nzc1N0MgLTAuMDU0MjQ4MyAzLjEwNjExIC0wLjAyMTIzIDIuNTA2MTcgMC4xNzg3ODEgMS45NTM2NEMgMC4zNzg3OTMgMS40MDExIDAuNzM2ODA5IDAuOTIwODE3IDEuMjA3NTQgMC41NzM1MzhDIDEuNjc4MjYgMC4yMjYyNTkgMi4yNDA1NSAwLjAyNzU5MTkgMi44MjMyNiAwLjAwMjY3MjI5QyAzLjYwMzg5IC0wLjAzMDcxMTUgNC4zNjU3MyAwLjI0OTc4OSA0Ljk0MTQyIDAuNzgyNTUxQyA1LjUxNzExIDEuMzE1MzEgNS44NTk1NiAyLjA1Njc2IDUuODkzNTMgMi44NDRaIi8+CiAgICAgIDxwYXRoIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE2MzkuOCAyMzIzLjgxKSIgZD0iTSA3LjQyNzg5IDMuNTgzMzhDIDcuNDYwMDggNC4zMjQzIDcuMjczNTUgNS4wNTgxOSA2Ljg5MTkzIDUuNjkyMTNDIDYuNTEwMzEgNi4zMjYwNyA1Ljk1MDc1IDYuODMxNTYgNS4yODQxMSA3LjE0NDZDIDQuNjE3NDcgNy40NTc2MyAzLjg3MzcxIDcuNTY0MTQgMy4xNDcwMiA3LjQ1MDYzQyAyLjQyMDMyIDcuMzM3MTIgMS43NDMzNiA3LjAwODcgMS4yMDE4NCA2LjUwNjk1QyAwLjY2MDMyOCA2LjAwNTIgMC4yNzg2MSA1LjM1MjY4IDAuMTA1MDE3IDQuNjMyMDJDIC0wLjA2ODU3NTcgMy45MTEzNSAtMC4wMjYyMzYxIDMuMTU0OTQgMC4yMjY2NzUgMi40NTg1NkMgMC40Nzk1ODcgMS43NjIxNyAwLjkzMTY5NyAxLjE1NzEzIDEuNTI1NzYgMC43MjAwMzNDIDIuMTE5ODMgMC4yODI5MzUgMi44MjkxNCAwLjAzMzQzOTUgMy41NjM4OSAwLjAwMzEzMzQ0QyA0LjU0NjY3IC0wLjAzNzQwMzMgNS41MDUyOSAwLjMxNjcwNiA2LjIyOTYxIDAuOTg3ODM1QyA2Ljk1MzkzIDEuNjU4OTYgNy4zODQ4NCAyLjU5MjM1IDcuNDI3ODkgMy41ODMzOEwgNy40Mjc4OSAzLjU4MzM4WiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM4LjM2IDIyODYuMDYpIiBkPSJNIDIuMjc0NzEgNC4zOTYyOUMgMS44NDM2MyA0LjQxNTA4IDEuNDE2NzEgNC4zMDQ0NSAxLjA0Nzk5IDQuMDc4NDNDIDAuNjc5MjY4IDMuODUyNCAwLjM4NTMyOCAzLjUyMTE0IDAuMjAzMzcxIDMuMTI2NTZDIDAuMDIxNDEzNiAyLjczMTk4IC0wLjA0MDM3OTggMi4yOTE4MyAwLjAyNTgxMTYgMS44NjE4MUMgMC4wOTIwMDMxIDEuNDMxOCAwLjI4MzIwNCAxLjAzMTI2IDAuNTc1MjEzIDAuNzEwODgzQyAwLjg2NzIyMiAwLjM5MDUxIDEuMjQ2OTEgMC4xNjQ3MDggMS42NjYyMiAwLjA2MjA1OTJDIDIuMDg1NTMgLTAuMDQwNTg5NyAyLjUyNTYxIC0wLjAxNTQ3MTQgMi45MzA3NiAwLjEzNDIzNUMgMy4zMzU5MSAwLjI4Mzk0MSAzLjY4NzkyIDAuNTUxNTA1IDMuOTQyMjIgMC45MDMwNkMgNC4xOTY1MiAxLjI1NDYyIDQuMzQxNjkgMS42NzQzNiA0LjM1OTM1IDIuMTA5MTZDIDQuMzgyOTkgMi42OTEwNyA0LjE3Njc4IDMuMjU4NjkgMy43ODU5NyAzLjY4NzQ2QyAzLjM5NTE2IDQuMTE2MjQgMi44NTE2NiA0LjM3MTE2IDIuMjc0NzEgNC4zOTYyOUwgMi4yNzQ3MSA0LjM5NjI5WiIvPgogICAgPC9nPgogIDwvZz4+Cjwvc3ZnPgo=);\n  --jp-icon-jupyterlab-wordmark: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIHZpZXdCb3g9IjAgMCAxODYwLjggNDc1Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0RTRFNEUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ4MC4xMzY0MDEsIDY0LjI3MTQ5MykiPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMDAwMDAsIDU4Ljg3NTU2NikiPgogICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA4NzYwMywgMC4xNDAyOTQpIj4KICAgICAgICA8cGF0aCBkPSJNLTQyNi45LDE2OS44YzAsNDguNy0zLjcsNjQuNy0xMy42LDc2LjRjLTEwLjgsMTAtMjUsMTUuNS0zOS43LDE1LjVsMy43LDI5IGMyMi44LDAuMyw0NC44LTcuOSw2MS45LTIzLjFjMTcuOC0xOC41LDI0LTQ0LjEsMjQtODMuM1YwSC00Mjd2MTcwLjFMLTQyNi45LDE2OS44TC00MjYuOSwxNjkuOHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTU1LjA0NTI5NiwgNTYuODM3MTA0KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuNTYyNDUzLCAxLjc5OTg0MikiPgogICAgICAgIDxwYXRoIGQ9Ik0tMzEyLDE0OGMwLDIxLDAsMzkuNSwxLjcsNTUuNGgtMzEuOGwtMi4xLTMzLjNoLTAuOGMtNi43LDExLjYtMTYuNCwyMS4zLTI4LDI3LjkgYy0xMS42LDYuNi0yNC44LDEwLTM4LjIsOS44Yy0zMS40LDAtNjktMTcuNy02OS04OVYwaDM2LjR2MTEyLjdjMCwzOC43LDExLjYsNjQuNyw0NC42LDY0LjdjMTAuMy0wLjIsMjAuNC0zLjUsMjguOS05LjQgYzguNS01LjksMTUuMS0xNC4zLDE4LjktMjMuOWMyLjItNi4xLDMuMy0xMi41LDMuMy0xOC45VjAuMmgzNi40VjE0OEgtMzEyTC0zMTIsMTQ4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzOTAuMDEzMzIyLCA1My40Nzk2MzgpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS43MDY0NTgsIDAuMjMxNDI1KSI+CiAgICAgICAgPHBhdGggZD0iTS00NzguNiw3MS40YzAtMjYtMC44LTQ3LTEuNy02Ni43aDMyLjdsMS43LDM0LjhoMC44YzcuMS0xMi41LDE3LjUtMjIuOCwzMC4xLTI5LjcgYzEyLjUtNywyNi43LTEwLjMsNDEtOS44YzQ4LjMsMCw4NC43LDQxLjcsODQuNywxMDMuM2MwLDczLjEtNDMuNywxMDkuMi05MSwxMDkuMmMtMTIuMSwwLjUtMjQuMi0yLjItMzUtNy44IGMtMTAuOC01LjYtMTkuOS0xMy45LTI2LjYtMjQuMmgtMC44VjI5MWgtMzZ2LTIyMEwtNDc4LjYsNzEuNEwtNDc4LjYsNzEuNHogTS00NDIuNiwxMjUuNmMwLjEsNS4xLDAuNiwxMC4xLDEuNywxNS4xIGMzLDEyLjMsOS45LDIzLjMsMTkuOCwzMS4xYzkuOSw3LjgsMjIuMSwxMi4xLDM0LjcsMTIuMWMzOC41LDAsNjAuNy0zMS45LDYwLjctNzguNWMwLTQwLjctMjEuMS03NS42LTU5LjUtNzUuNiBjLTEyLjksMC40LTI1LjMsNS4xLTM1LjMsMTMuNGMtOS45LDguMy0xNi45LDE5LjctMTkuNiwzMi40Yy0xLjUsNC45LTIuMywxMC0yLjUsMTUuMVYxMjUuNkwtNDQyLjYsMTI1LjZMLTQ0Mi42LDEyNS42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MDYuNzQwNzI2LCA1Ni44MzcxMDQpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC43NTEyMjYsIDEuOTg5Mjk5KSI+CiAgICAgICAgPHBhdGggZD0iTS00NDAuOCwwbDQzLjcsMTIwLjFjNC41LDEzLjQsOS41LDI5LjQsMTIuOCw0MS43aDAuOGMzLjctMTIuMiw3LjktMjcuNywxMi44LTQyLjQgbDM5LjctMTE5LjJoMzguNUwtMzQ2LjksMTQ1Yy0yNiw2OS43LTQzLjcsMTA1LjQtNjguNiwxMjcuMmMtMTIuNSwxMS43LTI3LjksMjAtNDQuNiwyMy45bC05LjEtMzEuMSBjMTEuNy0zLjksMjIuNS0xMC4xLDMxLjgtMTguMWMxMy4yLTExLjEsMjMuNy0yNS4yLDMwLjYtNDEuMmMxLjUtMi44LDIuNS01LjcsMi45LTguOGMtMC4zLTMuMy0xLjItNi42LTIuNS05LjdMLTQ4MC4yLDAuMSBoMzkuN0wtNDQwLjgsMEwtNDQwLjgsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODIyLjc0ODEwNCwgMC4wMDAwMDApIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS40NjQwNTAsIDAuMzc4OTE0KSI+CiAgICAgICAgPHBhdGggZD0iTS00MTMuNywwdjU4LjNoNTJ2MjguMmgtNTJWMTk2YzAsMjUsNywzOS41LDI3LjMsMzkuNWM3LjEsMC4xLDE0LjItMC43LDIxLjEtMi41IGwxLjcsMjcuN2MtMTAuMywzLjctMjEuMyw1LjQtMzIuMiw1Yy03LjMsMC40LTE0LjYtMC43LTIxLjMtMy40Yy02LjgtMi43LTEyLjktNi44LTE3LjktMTIuMWMtMTAuMy0xMC45LTE0LjEtMjktMTQuMS01Mi45IFY4Ni41aC0zMVY1OC4zaDMxVjkuNkwtNDEzLjcsMEwtNDEzLjcsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOTc0LjQzMzI4NiwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuOTkwMDM0LCAwLjYxMDMzOSkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDQ1LjgsMTEzYzAuOCw1MCwzMi4yLDcwLjYsNjguNiw3MC42YzE5LDAuNiwzNy45LTMsNTUuMy0xMC41bDYuMiwyNi40IGMtMjAuOSw4LjktNDMuNSwxMy4xLTY2LjIsMTIuNmMtNjEuNSwwLTk4LjMtNDEuMi05OC4zLTEwMi41Qy00ODAuMiw0OC4yLTQ0NC43LDAtMzg2LjUsMGM2NS4yLDAsODIuNyw1OC4zLDgyLjcsOTUuNyBjLTAuMSw1LjgtMC41LDExLjUtMS4yLDE3LjJoLTE0MC42SC00NDUuOEwtNDQ1LjgsMTEzeiBNLTMzOS4yLDg2LjZjMC40LTIzLjUtOS41LTYwLjEtNTAuNC02MC4xIGMtMzYuOCwwLTUyLjgsMzQuNC01NS43LDYwLjFILTMzOS4yTC0zMzkuMiw4Ni42TC0zMzkuMiw4Ni42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjAxLjk2MTA1OCwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuMTc5NjQwLCAwLjcwNTA2OCkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDc4LjYsNjhjMC0yMy45LTAuNC00NC41LTEuNy02My40aDMxLjhsMS4yLDM5LjloMS43YzkuMS0yNy4zLDMxLTQ0LjUsNTUuMy00NC41IGMzLjUtMC4xLDcsMC40LDEwLjMsMS4ydjM0LjhjLTQuMS0wLjktOC4yLTEuMy0xMi40LTEuMmMtMjUuNiwwLTQzLjcsMTkuNy00OC43LDQ3LjRjLTEsNS43LTEuNiwxMS41LTEuNywxNy4ydjEwOC4zaC0zNlY2OCBMLTQ3OC42LDY4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCBkPSJNMTM1Mi4zLDMyNi4yaDM3VjI4aC0zN1YzMjYuMnogTTE2MDQuOCwzMjYuMmMtMi41LTEzLjktMy40LTMxLjEtMy40LTQ4Ljd2LTc2IGMwLTQwLjctMTUuMS04My4xLTc3LjMtODMuMWMtMjUuNiwwLTUwLDcuMS02Ni44LDE4LjFsOC40LDI0LjRjMTQuMy05LjIsMzQtMTUuMSw1My0xNS4xYzQxLjYsMCw0Ni4yLDMwLjIsNDYuMiw0N3Y0LjIgYy03OC42LTAuNC0xMjIuMywyNi41LTEyMi4zLDc1LjZjMCwyOS40LDIxLDU4LjQsNjIuMiw1OC40YzI5LDAsNTAuOS0xNC4zLDYyLjItMzAuMmgxLjNsMi45LDI1LjZIMTYwNC44eiBNMTU2NS43LDI1Ny43IGMwLDMuOC0wLjgsOC0yLjEsMTEuOGMtNS45LDE3LjItMjIuNywzNC00OS4yLDM0Yy0xOC45LDAtMzQuOS0xMS4zLTM0LjktMzUuM2MwLTM5LjUsNDUuOC00Ni42LDg2LjItNDUuOFYyNTcuN3ogTTE2OTguNSwzMjYuMiBsMS43LTMzLjZoMS4zYzE1LjEsMjYuOSwzOC43LDM4LjIsNjguMSwzOC4yYzQ1LjQsMCw5MS4yLTM2LjEsOTEuMi0xMDguOGMwLjQtNjEuNy0zNS4zLTEwMy43LTg1LjctMTAzLjcgYy0zMi44LDAtNTYuMywxNC43LTY5LjMsMzcuNGgtMC44VjI4aC0zNi42djI0NS43YzAsMTguMS0wLjgsMzguNi0xLjcsNTIuNUgxNjk4LjV6IE0xNzA0LjgsMjA4LjJjMC01LjksMS4zLTEwLjksMi4xLTE1LjEgYzcuNi0yOC4xLDMxLjEtNDUuNCw1Ni4zLTQ1LjRjMzkuNSwwLDYwLjUsMzQuOSw2MC41LDc1LjZjMCw0Ni42LTIzLjEsNzguMS02MS44LDc4LjFjLTI2LjksMC00OC4zLTE3LjYtNTUuNS00My4zIGMtMC44LTQuMi0xLjctOC44LTEuNy0xMy40VjIwOC4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgZmlsbD0iIzYxNjE2MSIgZD0iTTE1IDlIOXY2aDZWOXptLTIgNGgtMnYtMmgydjJ6bTgtMlY5aC0yVjdjMC0xLjEtLjktMi0yLTJoLTJWM2gtMnYyaC0yVjNIOXYySDdjLTEuMSAwLTIgLjktMiAydjJIM3YyaDJ2MkgzdjJoMnYyYzAgMS4xLjkgMiAyIDJoMnYyaDJ2LTJoMnYyaDJ2LTJoMmMxLjEgMCAyLS45IDItMnYtMmgydi0yaC0ydi0yaDJ6bS00IDZIN1Y3aDEwdjEweiIvPgo8L3N2Zz4K);\n  --jp-icon-keyboard: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMTdjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY3YzAtMS4xLS45LTItMi0yem0tOSAzaDJ2MmgtMlY4em0wIDNoMnYyaC0ydi0yek04IDhoMnYySDhWOHptMCAzaDJ2Mkg4di0yem0tMSAySDV2LTJoMnYyem0wLTNINVY4aDJ2MnptOSA3SDh2LTJoOHYyem0wLTRoLTJ2LTJoMnYyem0wLTNoLTJWOGgydjJ6bTMgM2gtMnYtMmgydjJ6bTAtM2gtMlY4aDJ2MnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-launcher: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkgMTlINVY1aDdWM0g1YTIgMiAwIDAwLTIgMnYxNGEyIDIgMCAwMDIgMmgxNGMxLjEgMCAyLS45IDItMnYtN2gtMnY3ek0xNCAzdjJoMy41OWwtOS44MyA5LjgzIDEuNDEgMS40MUwxOSA2LjQxVjEwaDJWM2gtN3oiLz4KPC9zdmc+Cg==);\n  --jp-icon-line-form: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGZpbGw9IndoaXRlIiBkPSJNNS44OCA0LjEyTDEzLjc2IDEybC03Ljg4IDcuODhMOCAyMmwxMC0xMEw4IDJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-link: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMuOSAxMmMwLTEuNzEgMS4zOS0zLjEgMy4xLTMuMWg0VjdIN2MtMi43NiAwLTUgMi4yNC01IDVzMi4yNCA1IDUgNWg0di0xLjlIN2MtMS43MSAwLTMuMS0xLjM5LTMuMS0zLjF6TTggMTNoOHYtMkg4djJ6bTktNmgtNHYxLjloNGMxLjcxIDAgMy4xIDEuMzkgMy4xIDMuMXMtMS4zOSAzLjEtMy4xIDMuMWgtNFYxN2g0YzIuNzYgMCA1LTIuMjQgNS01cy0yLjI0LTUtNS01eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiM2MTYxNjEiIGQ9Ik0xOSA1djE0SDVWNWgxNG0xLjEtMkgzLjljLS41IDAtLjkuNC0uOS45djE2LjJjMCAuNC40LjkuOS45aDE2LjJjLjQgMCAuOS0uNS45LS45VjMuOWMwLS41LS41LS45LS45LS45ek0xMSA3aDZ2MmgtNlY3em0wIDRoNnYyaC02di0yem0wIDRoNnYyaC02ek03IDdoMnYySDd6bTAgNGgydjJIN3ptMCA0aDJ2Mkg3eiIvPgo8L3N2Zz4=);\n  --jp-icon-listings-info: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MC45NzggNTAuOTc4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MC45NzggNTAuOTc4OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+Cgk8Zz4KCQk8cGF0aCBzdHlsZT0iZmlsbDojMDEwMDAyOyIgZD0iTTQzLjUyLDcuNDU4QzM4LjcxMSwyLjY0OCwzMi4zMDcsMCwyNS40ODksMEMxOC42NywwLDEyLjI2NiwyLjY0OCw3LjQ1OCw3LjQ1OAoJCQljLTkuOTQzLDkuOTQxLTkuOTQzLDI2LjExOSwwLDM2LjA2MmM0LjgwOSw0LjgwOSwxMS4yMTIsNy40NTYsMTguMDMxLDcuNDU4YzAsMCwwLjAwMSwwLDAuMDAyLDAKCQkJYzYuODE2LDAsMTMuMjIxLTIuNjQ4LDE4LjAyOS03LjQ1OGM0LjgwOS00LjgwOSw3LjQ1Ny0xMS4yMTIsNy40NTctMTguMDNDNTAuOTc3LDE4LjY3LDQ4LjMyOCwxMi4yNjYsNDMuNTIsNy40NTh6CgkJCSBNNDIuMTA2LDQyLjEwNWMtNC40MzIsNC40MzEtMTAuMzMyLDYuODcyLTE2LjYxNSw2Ljg3MmgtMC4wMDJjLTYuMjg1LTAuMDAxLTEyLjE4Ny0yLjQ0MS0xNi42MTctNi44NzIKCQkJYy05LjE2Mi05LjE2My05LjE2Mi0yNC4wNzEsMC0zMy4yMzNDMTMuMzAzLDQuNDQsMTkuMjA0LDIsMjUuNDg5LDJjNi4yODQsMCwxMi4xODYsMi40NCwxNi42MTcsNi44NzIKCQkJYzQuNDMxLDQuNDMxLDYuODcxLDEwLjMzMiw2Ljg3MSwxNi42MTdDNDguOTc3LDMxLjc3Miw0Ni41MzYsMzcuNjc1LDQyLjEwNiw0Mi4xMDV6Ii8+CgkJPHBhdGggc3R5bGU9ImZpbGw6IzAxMDAwMjsiIGQ9Ik0yMy41NzgsMzIuMjE4Yy0wLjAyMy0xLjczNCwwLjE0My0zLjA1OSwwLjQ5Ni0zLjk3MmMwLjM1My0wLjkxMywxLjExLTEuOTk3LDIuMjcyLTMuMjUzCgkJCWMwLjQ2OC0wLjUzNiwwLjkyMy0xLjA2MiwxLjM2Ny0xLjU3NWMwLjYyNi0wLjc1MywxLjEwNC0xLjQ3OCwxLjQzNi0yLjE3NWMwLjMzMS0wLjcwNywwLjQ5NS0xLjU0MSwwLjQ5NS0yLjUKCQkJYzAtMS4wOTYtMC4yNi0yLjA4OC0wLjc3OS0yLjk3OWMtMC41NjUtMC44NzktMS41MDEtMS4zMzYtMi44MDYtMS4zNjljLTEuODAyLDAuMDU3LTIuOTg1LDAuNjY3LTMuNTUsMS44MzIKCQkJYy0wLjMwMSwwLjUzNS0wLjUwMywxLjE0MS0wLjYwNywxLjgxNGMtMC4xMzksMC43MDctMC4yMDcsMS40MzItMC4yMDcsMi4xNzRoLTIuOTM3Yy0wLjA5MS0yLjIwOCwwLjQwNy00LjExNCwxLjQ5My01LjcxOQoJCQljMS4wNjItMS42NCwyLjg1NS0yLjQ4MSw1LjM3OC0yLjUyN2MyLjE2LDAuMDIzLDMuODc0LDAuNjA4LDUuMTQxLDEuNzU4YzEuMjc4LDEuMTYsMS45MjksMi43NjQsMS45NSw0LjgxMQoJCQljMCwxLjE0Mi0wLjEzNywyLjExMS0wLjQxLDIuOTExYy0wLjMwOSwwLjg0NS0wLjczMSwxLjU5My0xLjI2OCwyLjI0M2MtMC40OTIsMC42NS0xLjA2OCwxLjMxOC0xLjczLDIuMDAyCgkJCWMtMC42NSwwLjY5Ny0xLjMxMywxLjQ3OS0xLjk4NywyLjM0NmMtMC4yMzksMC4zNzctMC40MjksMC43NzctMC41NjUsMS4xOTljLTAuMTYsMC45NTktMC4yMTcsMS45NTEtMC4xNzEsMi45NzkKCQkJQzI2LjU4OSwzMi4yMTgsMjMuNTc4LDMyLjIxOCwyMy41NzgsMzIuMjE4eiBNMjMuNTc4LDM4LjIydi0zLjQ4NGgzLjA3NnYzLjQ4NEgyMy41Nzh6Ii8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-markdown: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjN0IxRkEyIiBkPSJNNSAxNC45aDEybC02LjEgNnptOS40LTYuOGMwLTEuMy0uMS0yLjktLjEtNC41LS40IDEuNC0uOSAyLjktMS4zIDQuM2wtMS4zIDQuM2gtMkw4LjUgNy45Yy0uNC0xLjMtLjctMi45LTEtNC4zLS4xIDEuNi0uMSAzLjItLjIgNC42TDcgMTIuNEg0LjhsLjctMTFoMy4zTDEwIDVjLjQgMS4yLjcgMi43IDEgMy45LjMtMS4yLjctMi42IDEtMy45bDEuMi0zLjdoMy4zbC42IDExaC0yLjRsLS4zLTQuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-new-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwIDZoLThsLTItMkg0Yy0xLjExIDAtMS45OS44OS0xLjk5IDJMMiAxOGMwIDEuMTEuODkgMiAyIDJoMTZjMS4xMSAwIDItLjg5IDItMlY4YzAtMS4xMS0uODktMi0yLTJ6bS0xIDhoLTN2M2gtMnYtM2gtM3YtMmgzVjloMnYzaDN2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-not-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI1IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMTkgMTcuMTg0NCAyLjk2OTY4IDE0LjMwMzIgMS44NjA5NCAxMS40NDA5WiIvPgogICAgPHBhdGggY2xhc3M9ImpwLWljb24yIiBzdHJva2U9IiMzMzMzMzMiIHN0cm9rZS13aWR0aD0iMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOS4zMTU5MiA5LjMyMDMxKSIgZD0iTTcuMzY4NDIgMEwwIDcuMzY0NzkiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDkuMzE1OTIgMTYuNjgzNikgc2NhbGUoMSAtMSkiIGQ9Ik03LjM2ODQyIDBMMCA3LjM2NDc5Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-notebook: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNFRjZDMDAiPgogICAgPHBhdGggZD0iTTE4LjcgMy4zdjE1LjRIMy4zVjMuM2gxNS40bTEuNS0xLjVIMS44djE4LjNoMTguM2wuMS0xOC4zeiIvPgogICAgPHBhdGggZD0iTTE2LjUgMTYuNWwtNS40LTQuMy01LjYgNC4zdi0xMWgxMXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-numbering: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTQgMTlINlYxOS41SDVWMjAuNUg2VjIxSDRWMjJIN1YxOEg0VjE5Wk01IDEwSDZWNkg0VjdINVYxMFpNNCAxM0g1LjhMNCAxNS4xVjE2SDdWMTVINS4yTDcgMTIuOVYxMkg0VjEzWk05IDdWOUgyM1Y3SDlaTTkgMjFIMjNWMTlIOVYyMVpNOSAxNUgyM1YxM0g5VjE1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-offline-bolt: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDIuMDJjLTUuNTEgMC05Ljk4IDQuNDctOS45OCA5Ljk4czQuNDcgOS45OCA5Ljk4IDkuOTggOS45OC00LjQ3IDkuOTgtOS45OFMxNy41MSAyLjAyIDEyIDIuMDJ6TTExLjQ4IDIwdi02LjI2SDhMMTMgNHY2LjI2aDMuMzVMMTEuNDggMjB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-palette: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE4IDEzVjIwSDRWNkg5LjAyQzkuMDcgNS4yOSA5LjI0IDQuNjIgOS41IDRINEMyLjkgNCAyIDQuOSAyIDZWMjBDMiAyMS4xIDIuOSAyMiA0IDIySDE4QzE5LjEgMjIgMjAgMjEuMSAyMCAyMFYxNUwxOCAxM1pNMTkuMyA4Ljg5QzE5Ljc0IDguMTkgMjAgNy4zOCAyMCA2LjVDMjAgNC4wMSAxNy45OSAyIDE1LjUgMkMxMy4wMSAyIDExIDQuMDEgMTEgNi41QzExIDguOTkgMTMuMDEgMTEgMTUuNDkgMTFDMTYuMzcgMTEgMTcuMTkgMTAuNzQgMTcuODggMTAuM0wyMSAxMy40MkwyMi40MiAxMkwxOS4zIDguODlaTTE1LjUgOUMxNC4xMiA5IDEzIDcuODggMTMgNi41QzEzIDUuMTIgMTQuMTIgNCAxNS41IDRDMTYuODggNCAxOCA1LjEyIDE4IDYuNUMxOCA3Ljg4IDE2Ljg4IDkgMTUuNSA5WiIvPgogICAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDZIOS4wMTg5NEM5LjAwNjM5IDYuMTY1MDIgOSA2LjMzMTc2IDkgNi41QzkgOC44MTU3NyAxMC4yMTEgMTAuODQ4NyAxMi4wMzQzIDEySDlWMTRIMTZWMTIuOTgxMUMxNi41NzAzIDEyLjkzNzcgMTcuMTIgMTIuODIwNyAxNy42Mzk2IDEyLjYzOTZMMTggMTNWMjBINFY2Wk04IDhINlYxMEg4VjhaTTYgMTJIOFYxNEg2VjEyWk04IDE2SDZWMThIOFYxNlpNOSAxNkgxNlYxOEg5VjE2WiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-paste: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE5IDJoLTQuMThDMTQuNC44NCAxMy4zIDAgMTIgMGMtMS4zIDAtMi40Ljg0LTIuODIgMkg1Yy0xLjEgMC0yIC45LTIgMnYxNmMwIDEuMS45IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjRjMC0xLjEtLjktMi0yLTJ6bS03IDBjLjU1IDAgMSAuNDUgMSAxcy0uNDUgMS0xIDEtMS0uNDUtMS0xIC40NS0xIDEtMXptNyAxOEg1VjRoMnYzaDEwVjRoMnYxNnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-pdf: url(data:image/svg+xml;base64,PHN2ZwogICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMiAyMiIgd2lkdGg9IjE2Ij4KICAgIDxwYXRoIHRyYW5zZm9ybT0icm90YXRlKDQ1KSIgY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI0ZGMkEyQSIKICAgICAgIGQ9Im0gMjIuMzQ0MzY5LC0zLjAxNjM2NDIgaCA1LjYzODYwNCB2IDEuNTc5MjQzMyBoIC0zLjU0OTIyNyB2IDEuNTA4NjkyOTkgaCAzLjMzNzU3NiBWIDEuNjUwODE1NCBoIC0zLjMzNzU3NiB2IDMuNDM1MjYxMyBoIC0yLjA4OTM3NyB6IG0gLTcuMTM2NDQ0LDEuNTc5MjQzMyB2IDQuOTQzOTU0MyBoIDAuNzQ4OTIgcSAxLjI4MDc2MSwwIDEuOTUzNzAzLC0wLjYzNDk1MzUgMC42NzgzNjksLTAuNjM0OTUzNSAwLjY3ODM2OSwtMS44NDUxNjQxIDAsLTEuMjA0NzgzNTUgLTAuNjcyOTQyLC0xLjgzNDMxMDExIC0wLjY3Mjk0MiwtMC42Mjk1MjY1OSAtMS45NTkxMywtMC42Mjk1MjY1OSB6IG0gLTIuMDg5Mzc3LC0xLjU3OTI0MzMgaCAyLjIwMzM0MyBxIDEuODQ1MTY0LDAgMi43NDYwMzksMC4yNjU5MjA3IDAuOTA2MzAxLDAuMjYwNDkzNyAxLjU1MjEwOCwwLjg5MDAyMDMgMC41Njk4MywwLjU0ODEyMjMgMC44NDY2MDUsMS4yNjQ0ODAwNiAwLjI3Njc3NCwwLjcxNjM1NzgxIDAuMjc2Nzc0LDEuNjIyNjU4OTQgMCwwLjkxNzE1NTEgLTAuMjc2Nzc0LDEuNjM4OTM5OSAtMC4yNzY3NzUsMC43MTYzNTc4IC0wLjg0NjYwNSwxLjI2NDQ4IC0wLjY1MTIzNCwwLjYyOTUyNjYgLTEuNTYyOTYyLDAuODk1NDQ3MyAtMC45MTE3MjgsMC4yNjA0OTM3IC0yLjczNTE4NSwwLjI2MDQ5MzcgaCAtMi4yMDMzNDMgeiBtIC04LjE0NTg1NjUsMCBoIDMuNDY3ODIzIHEgMS41NDY2ODE2LDAgMi4zNzE1Nzg1LDAuNjg5MjIzIDAuODMwMzI0LDAuNjgzNzk2MSAwLjgzMDMyNCwxLjk1MzcwMzE0IDAsMS4yNzUzMzM5NyAtMC44MzAzMjQsMS45NjQ1NTcwNiBRIDkuOTg3MTk2MSwyLjI3NDkxNSA4LjQ0MDUxNDUsMi4yNzQ5MTUgSCA3LjA2MjA2ODQgViA1LjA4NjA3NjcgSCA0Ljk3MjY5MTUgWiBtIDIuMDg5Mzc2OSwxLjUxNDExOTkgdiAyLjI2MzAzOTQzIGggMS4xNTU5NDEgcSAwLjYwNzgxODgsMCAwLjkzODg2MjksLTAuMjkzMDU1NDcgMC4zMzEwNDQxLC0wLjI5ODQ4MjQxIDAuMzMxMDQ0MSwtMC44NDExNzc3MiAwLC0wLjU0MjY5NTMxIC0wLjMzMTA0NDEsLTAuODM1NzUwNzQgLTAuMzMxMDQ0MSwtMC4yOTMwNTU1IC0wLjkzODg2MjksLTAuMjkzMDU1NSB6IgovPgo8L3N2Zz4K);\n  --jp-icon-python: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMEQ0N0ExIj4KICAgIDxwYXRoIGQ9Ik0xMS4xIDYuOVY1LjhINi45YzAtLjUgMC0xLjMuMi0xLjYuNC0uNy44LTEuMSAxLjctMS40IDEuNy0uMyAyLjUtLjMgMy45LS4xIDEgLjEgMS45LjkgMS45IDEuOXY0LjJjMCAuNS0uOSAxLjYtMiAxLjZIOC44Yy0xLjUgMC0yLjQgMS40LTIuNCAyLjh2Mi4ySDQuN0MzLjUgMTUuMSAzIDE0IDMgMTMuMVY5Yy0uMS0xIC42LTIgMS44LTIgMS41LS4xIDYuMy0uMSA2LjMtLjF6Ii8+CiAgICA8cGF0aCBkPSJNMTAuOSAxNS4xdjEuMWg0LjJjMCAuNSAwIDEuMy0uMiAxLjYtLjQuNy0uOCAxLjEtMS43IDEuNC0xLjcuMy0yLjUuMy0zLjkuMS0xLS4xLTEuOS0uOS0xLjktMS45di00LjJjMC0uNS45LTEuNiAyLTEuNmgzLjhjMS41IDAgMi40LTEuNCAyLjQtMi44VjYuNmgxLjdDMTguNSA2LjkgMTkgOCAxOSA4LjlWMTNjMCAxLS43IDIuMS0xLjkgMi4xaC02LjJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-r-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjE5NkYzIiBkPSJNNC40IDIuNWMxLjItLjEgMi45LS4zIDQuOS0uMyAyLjUgMCA0LjEuNCA1LjIgMS4zIDEgLjcgMS41IDEuOSAxLjUgMy41IDAgMi0xLjQgMy41LTIuOSA0LjEgMS4yLjQgMS43IDEuNiAyLjIgMyAuNiAxLjkgMSAzLjkgMS4zIDQuNmgtMy44Yy0uMy0uNC0uOC0xLjctMS4yLTMuN3MtMS4yLTIuNi0yLjYtMi42aC0uOXY2LjRINC40VjIuNXptMy43IDYuOWgxLjRjMS45IDAgMi45LS45IDIuOS0yLjNzLTEtMi4zLTIuOC0yLjNjLS43IDAtMS4zIDAtMS42LjJ2NC41aC4xdi0uMXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-react: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMTUwIDE1MCA1NDEuOSAyOTUuMyI+CiAgPGcgY2xhc3M9ImpwLWljb24tYnJhbmQyIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzYxREFGQiI+CiAgICA8cGF0aCBkPSJNNjY2LjMgMjk2LjVjMC0zMi41LTQwLjctNjMuMy0xMDMuMS04Mi40IDE0LjQtNjMuNiA4LTExNC4yLTIwLjItMTMwLjQtNi41LTMuOC0xNC4xLTUuNi0yMi40LTUuNnYyMi4zYzQuNiAwIDguMy45IDExLjQgMi42IDEzLjYgNy44IDE5LjUgMzcuNSAxNC45IDc1LjctMS4xIDkuNC0yLjkgMTkuMy01LjEgMjkuNC0xOS42LTQuOC00MS04LjUtNjMuNS0xMC45LTEzLjUtMTguNS0yNy41LTM1LjMtNDEuNi01MCAzMi42LTMwLjMgNjMuMi00Ni45IDg0LTQ2LjlWNzhjLTI3LjUgMC02My41IDE5LjYtOTkuOSA1My42LTM2LjQtMzMuOC03Mi40LTUzLjItOTkuOS01My4ydjIyLjNjMjAuNyAwIDUxLjQgMTYuNSA4NCA0Ni42LTE0IDE0LjctMjggMzEuNC00MS4zIDQ5LjktMjIuNiAyLjQtNDQgNi4xLTYzLjYgMTEtMi4zLTEwLTQtMTkuNy01LjItMjktNC43LTM4LjIgMS4xLTY3LjkgMTQuNi03NS44IDMtMS44IDYuOS0yLjYgMTEuNS0yLjZWNzguNWMtOC40IDAtMTYgMS44LTIyLjYgNS42LTI4LjEgMTYuMi0zNC40IDY2LjctMTkuOSAxMzAuMS02Mi4yIDE5LjItMTAyLjcgNDkuOS0xMDIuNyA4Mi4zIDAgMzIuNSA0MC43IDYzLjMgMTAzLjEgODIuNC0xNC40IDYzLjYtOCAxMTQuMiAyMC4yIDEzMC40IDYuNSAzLjggMTQuMSA1LjYgMjIuNSA1LjYgMjcuNSAwIDYzLjUtMTkuNiA5OS45LTUzLjYgMzYuNCAzMy44IDcyLjQgNTMuMiA5OS45IDUzLjIgOC40IDAgMTYtMS44IDIyLjYtNS42IDI4LjEtMTYuMiAzNC40LTY2LjcgMTkuOS0xMzAuMSA2Mi0xOS4xIDEwMi41LTQ5LjkgMTAyLjUtODIuM3ptLTEzMC4yLTY2LjdjLTMuNyAxMi45LTguMyAyNi4yLTEzLjUgMzkuNS00LjEtOC04LjQtMTYtMTMuMS0yNC00LjYtOC05LjUtMTUuOC0xNC40LTIzLjQgMTQuMiAyLjEgMjcuOSA0LjcgNDEgNy45em0tNDUuOCAxMDYuNWMtNy44IDEzLjUtMTUuOCAyNi4zLTI0LjEgMzguMi0xNC45IDEuMy0zMCAyLTQ1LjIgMi0xNS4xIDAtMzAuMi0uNy00NS0xLjktOC4zLTExLjktMTYuNC0yNC42LTI0LjItMzgtNy42LTEzLjEtMTQuNS0yNi40LTIwLjgtMzkuOCA2LjItMTMuNCAxMy4yLTI2LjggMjAuNy0zOS45IDcuOC0xMy41IDE1LjgtMjYuMyAyNC4xLTM4LjIgMTQuOS0xLjMgMzAtMiA0NS4yLTIgMTUuMSAwIDMwLjIuNyA0NSAxLjkgOC4zIDExLjkgMTYuNCAyNC42IDI0LjIgMzggNy42IDEzLjEgMTQuNSAyNi40IDIwLjggMzkuOC02LjMgMTMuNC0xMy4yIDI2LjgtMjAuNyAzOS45em0zMi4zLTEzYzUuNCAxMy40IDEwIDI2LjggMTMuOCAzOS44LTEzLjEgMy4yLTI2LjkgNS45LTQxLjIgOCA0LjktNy43IDkuOC0xNS42IDE0LjQtMjMuNyA0LjYtOCA4LjktMTYuMSAxMy0yNC4xek00MjEuMiA0MzBjLTkuMy05LjYtMTguNi0yMC4zLTI3LjgtMzIgOSAuNCAxOC4yLjcgMjcuNS43IDkuNCAwIDE4LjctLjIgMjcuOC0uNy05IDExLjctMTguMyAyMi40LTI3LjUgMzJ6bS03NC40LTU4LjljLTE0LjItMi4xLTI3LjktNC43LTQxLTcuOSAzLjctMTIuOSA4LjMtMjYuMiAxMy41LTM5LjUgNC4xIDggOC40IDE2IDEzLjEgMjQgNC43IDggOS41IDE1LjggMTQuNCAyMy40ek00MjAuNyAxNjNjOS4zIDkuNiAxOC42IDIwLjMgMjcuOCAzMi05LS40LTE4LjItLjctMjcuNS0uNy05LjQgMC0xOC43LjItMjcuOC43IDktMTEuNyAxOC4zLTIyLjQgMjcuNS0zMnptLTc0IDU4LjljLTQuOSA3LjctOS44IDE1LjYtMTQuNCAyMy43LTQuNiA4LTguOSAxNi0xMyAyNC01LjQtMTMuNC0xMC0yNi44LTEzLjgtMzkuOCAxMy4xLTMuMSAyNi45LTUuOCA0MS4yLTcuOXptLTkwLjUgMTI1LjJjLTM1LjQtMTUuMS01OC4zLTM0LjktNTguMy01MC42IDAtMTUuNyAyMi45LTM1LjYgNTguMy01MC42IDguNi0zLjcgMTgtNyAyNy43LTEwLjEgNS43IDE5LjYgMTMuMiA0MCAyMi41IDYwLjktOS4yIDIwLjgtMTYuNiA0MS4xLTIyLjIgNjAuNi05LjktMy4xLTE5LjMtNi41LTI4LTEwLjJ6TTMxMCA0OTBjLTEzLjYtNy44LTE5LjUtMzcuNS0xNC45LTc1LjcgMS4xLTkuNCAyLjktMTkuMyA1LjEtMjkuNCAxOS42IDQuOCA0MSA4LjUgNjMuNSAxMC45IDEzLjUgMTguNSAyNy41IDM1LjMgNDEuNiA1MC0zMi42IDMwLjMtNjMuMiA0Ni45LTg0IDQ2LjktNC41LS4xLTguMy0xLTExLjMtMi43em0yMzcuMi03Ni4yYzQuNyAzOC4yLTEuMSA2Ny45LTE0LjYgNzUuOC0zIDEuOC02LjkgMi42LTExLjUgMi42LTIwLjcgMC01MS40LTE2LjUtODQtNDYuNiAxNC0xNC43IDI4LTMxLjQgNDEuMy00OS45IDIyLjYtMi40IDQ0LTYuMSA2My42LTExIDIuMyAxMC4xIDQuMSAxOS44IDUuMiAyOS4xem0zOC41LTY2LjdjLTguNiAzLjctMTggNy0yNy43IDEwLjEtNS43LTE5LjYtMTMuMi00MC0yMi41LTYwLjkgOS4yLTIwLjggMTYuNi00MS4xIDIyLjItNjAuNiA5LjkgMy4xIDE5LjMgNi41IDI4LjEgMTAuMiAzNS40IDE1LjEgNTguMyAzNC45IDU4LjMgNTAuNi0uMSAxNS43LTIzIDM1LjYtNTguNCA1MC42ek0zMjAuOCA3OC40eiIvPgogICAgPGNpcmNsZSBjeD0iNDIwLjkiIGN5PSIyOTYuNSIgcj0iNDUuNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-redo: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTE4LjQgMTAuNkMxNi41NSA4Ljk5IDE0LjE1IDggMTEuNSA4Yy00LjY1IDAtOC41OCAzLjAzLTkuOTYgNy4yMkwzLjkgMTZjMS4wNS0zLjE5IDQuMDUtNS41IDcuNi01LjUgMS45NSAwIDMuNzMuNzIgNS4xMiAxLjg4TDEzIDE2aDlWN2wtMy42IDMuNnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-refresh: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTkgMTMuNWMtMi40OSAwLTQuNS0yLjAxLTQuNS00LjVTNi41MSA0LjUgOSA0LjVjMS4yNCAwIDIuMzYuNTIgMy4xNyAxLjMzTDEwIDhoNVYzbC0xLjc2IDEuNzZDMTIuMTUgMy42OCAxMC42NiAzIDkgMyA1LjY5IDMgMy4wMSA1LjY5IDMuMDEgOVM1LjY5IDE1IDkgMTVjMi45NyAwIDUuNDMtMi4xNiA1LjktNWgtMS41MmMtLjQ2IDItMi4yNCAzLjUtNC4zOCAzLjV6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-regex: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi1hY2NlbnQyIiBmaWxsPSIjRkZGIj4KICAgIDxjaXJjbGUgY2xhc3M9InN0MiIgY3g9IjUuNSIgY3k9IjE0LjUiIHI9IjEuNSIvPgogICAgPHJlY3QgeD0iMTIiIHk9IjQiIGNsYXNzPSJzdDIiIHdpZHRoPSIxIiBoZWlnaHQ9IjgiLz4KICAgIDxyZWN0IHg9IjguNSIgeT0iNy41IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjg2NiAtMC41IDAuNSAwLjg2NiAtMi4zMjU1IDcuMzIxOSkiIGNsYXNzPSJzdDIiIHdpZHRoPSI4IiBoZWlnaHQ9IjEiLz4KICAgIDxyZWN0IHg9IjEyIiB5PSI0IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjUgLTAuODY2IDAuODY2IDAuNSAtMC42Nzc5IDE0LjgyNTIpIiBjbGFzcz0ic3QyIiB3aWR0aD0iMSIgaGVpZ2h0PSI4Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-run: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTggNXYxNGwxMS03eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-running: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptOTYgMzI4YzAgOC44LTcuMiAxNi0xNiAxNkgxNzZjLTguOCAwLTE2LTcuMi0xNi0xNlYxNzZjMC04LjggNy4yLTE2IDE2LTE2aDE2MGM4LjggMCAxNiA3LjIgMTYgMTZ2MTYweiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-save: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE3IDNINWMtMS4xMSAwLTIgLjktMiAydjE0YzAgMS4xLjg5IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjdsLTQtNHptLTUgMTZjLTEuNjYgMC0zLTEuMzQtMy0zczEuMzQtMyAzLTMgMyAxLjM0IDMgMy0xLjM0IDMtMyAzem0zLTEwSDVWNWgxMHY0eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-search: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjEsMTAuOWgtMC43bC0wLjItMC4yYzAuOC0wLjksMS4zLTIuMiwxLjMtMy41YzAtMy0yLjQtNS40LTUuNC01LjRTMS44LDQuMiwxLjgsNy4xczIuNCw1LjQsNS40LDUuNCBjMS4zLDAsMi41LTAuNSwzLjUtMS4zbDAuMiwwLjJ2MC43bDQuMSw0LjFsMS4yLTEuMkwxMi4xLDEwLjl6IE03LjEsMTAuOWMtMi4xLDAtMy43LTEuNy0zLjctMy43czEuNy0zLjcsMy43LTMuN3MzLjcsMS43LDMuNywzLjcgUzkuMiwxMC45LDcuMSwxMC45eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-settings: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuNDMgMTIuOThjLjA0LS4zMi4wNy0uNjQuMDctLjk4cy0uMDMtLjY2LS4wNy0uOThsMi4xMS0xLjY1Yy4xOS0uMTUuMjQtLjQyLjEyLS42NGwtMi0zLjQ2Yy0uMTItLjIyLS4zOS0uMy0uNjEtLjIybC0yLjQ5IDFjLS41Mi0uNC0xLjA4LS43My0xLjY5LS45OGwtLjM4LTIuNjVBLjQ4OC40ODggMCAwMDE0IDJoLTRjLS4yNSAwLS40Ni4xOC0uNDkuNDJsLS4zOCAyLjY1Yy0uNjEuMjUtMS4xNy41OS0xLjY5Ljk4bC0yLjQ5LTFjLS4yMy0uMDktLjQ5IDAtLjYxLjIybC0yIDMuNDZjLS4xMy4yMi0uMDcuNDkuMTIuNjRsMi4xMSAxLjY1Yy0uMDQuMzItLjA3LjY1LS4wNy45OHMuMDMuNjYuMDcuOThsLTIuMTEgMS42NWMtLjE5LjE1LS4yNC40Mi0uMTIuNjRsMiAzLjQ2Yy4xMi4yMi4zOS4zLjYxLjIybDIuNDktMWMuNTIuNCAxLjA4LjczIDEuNjkuOThsLjM4IDIuNjVjLjAzLjI0LjI0LjQyLjQ5LjQyaDRjLjI1IDAgLjQ2LS4xOC40OS0uNDJsLjM4LTIuNjVjLjYxLS4yNSAxLjE3LS41OSAxLjY5LS45OGwyLjQ5IDFjLjIzLjA5LjQ5IDAgLjYxLS4yMmwyLTMuNDZjLjEyLS4yMi4wNy0uNDktLjEyLS42NGwtMi4xMS0xLjY1ek0xMiAxNS41Yy0xLjkzIDAtMy41LTEuNTctMy41LTMuNXMxLjU3LTMuNSAzLjUtMy41IDMuNSAxLjU3IDMuNSAzLjUtMS41NyAzLjUtMy41IDMuNXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-spreadsheet: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNENBRjUwIiBkPSJNMi4yIDIuMnYxNy42aDE3LjZWMi4ySDIuMnptMTUuNCA3LjdoLTUuNVY0LjRoNS41djUuNXpNOS45IDQuNHY1LjVINC40VjQuNGg1LjV6bS01LjUgNy43aDUuNXY1LjVINC40di01LjV6bTcuNyA1LjV2LTUuNWg1LjV2NS41aC01LjV6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-stop: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik02IDZoMTJ2MTJINnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tab: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIxIDNIM2MtMS4xIDAtMiAuOS0yIDJ2MTRjMCAxLjEuOSAyIDIgMmgxOGMxLjEgMCAyLS45IDItMlY1YzAtMS4xLS45LTItMi0yem0wIDE2SDNWNWgxMHY0aDh2MTB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-table-rows: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMSw4SDNWNGgxOFY4eiBNMjEsMTBIM3Y0aDE4VjEweiBNMjEsMTZIM3Y0aDE4VjE2eiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-tag: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCA0MyAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTI4LjgzMzIgMTIuMzM0TDMyLjk5OTggMTYuNTAwN0wzNy4xNjY1IDEyLjMzNEgyOC44MzMyWiIvPgoJCTxwYXRoIGQ9Ik0xNi4yMDk1IDIxLjYxMDRDMTUuNjg3MyAyMi4xMjk5IDE0Ljg0NDMgMjIuMTI5OSAxNC4zMjQ4IDIxLjYxMDRMNi45ODI5IDE0LjcyNDVDNi41NzI0IDE0LjMzOTQgNi4wODMxMyAxMy42MDk4IDYuMDQ3ODYgMTMuMDQ4MkM1Ljk1MzQ3IDExLjUyODggNi4wMjAwMiA4LjYxOTQ0IDYuMDY2MjEgNy4wNzY5NUM2LjA4MjgxIDYuNTE0NzcgNi41NTU0OCA2LjA0MzQ3IDcuMTE4MDQgNi4wMzA1NUM5LjA4ODYzIDUuOTg0NzMgMTMuMjYzOCA1LjkzNTc5IDEzLjY1MTggNi4zMjQyNUwyMS43MzY5IDEzLjYzOUMyMi4yNTYgMTQuMTU4NSAyMS43ODUxIDE1LjQ3MjQgMjEuMjYyIDE1Ljk5NDZMMTYuMjA5NSAyMS42MTA0Wk05Ljc3NTg1IDguMjY1QzkuMzM1NTEgNy44MjU2NiA4LjYyMzUxIDcuODI1NjYgOC4xODI4IDguMjY1QzcuNzQzNDYgOC43MDU3MSA3Ljc0MzQ2IDkuNDE3MzMgOC4xODI4IDkuODU2NjdDOC42MjM4MiAxMC4yOTY0IDkuMzM1ODIgMTAuMjk2NCA5Ljc3NTg1IDkuODU2NjdDMTAuMjE1NiA5LjQxNzMzIDEwLjIxNTYgOC43MDUzMyA5Ljc3NTg1IDguMjY1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-terminal: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiA+CiAgICA8cmVjdCBjbGFzcz0ianAtaWNvbjIganAtaWNvbi1zZWxlY3RhYmxlIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMikiIGZpbGw9IiMzMzMzMzMiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uLWFjY2VudDIganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGQ9Ik01LjA1NjY0IDguNzYxNzJDNS4wNTY2NCA4LjU5NzY2IDUuMDMxMjUgOC40NTMxMiA0Ljk4MDQ3IDguMzI4MTJDNC45MzM1OSA4LjE5OTIyIDQuODU1NDcgOC4wODIwMyA0Ljc0NjA5IDcuOTc2NTZDNC42NDA2MiA3Ljg3MTA5IDQuNSA3Ljc3NTM5IDQuMzI0MjIgNy42ODk0NUM0LjE1MjM0IDcuNTk5NjEgMy45NDMzNiA3LjUxMTcyIDMuNjk3MjcgNy40MjU3OEMzLjMwMjczIDcuMjg1MTYgMi45NDMzNiA3LjEzNjcyIDIuNjE5MTQgNi45ODA0N0MyLjI5NDkyIDYuODI0MjIgMi4wMTc1OCA2LjY0MjU4IDEuNzg3MTEgNi40MzU1NUMxLjU2MDU1IDYuMjI4NTIgMS4zODQ3NyA1Ljk4ODI4IDEuMjU5NzcgNS43MTQ4NEMxLjEzNDc3IDUuNDM3NSAxLjA3MjI3IDUuMTA5MzggMS4wNzIyNyA0LjczMDQ3QzEuMDcyMjcgNC4zOTg0NCAxLjEyODkxIDQuMDk1NyAxLjI0MjE5IDMuODIyMjdDMS4zNTU0NyAzLjU0NDkyIDEuNTE1NjIgMy4zMDQ2OSAxLjcyMjY2IDMuMTAxNTZDMS45Mjk2OSAyLjg5ODQ0IDIuMTc5NjkgMi43MzQzNyAyLjQ3MjY2IDIuNjA5MzhDMi43NjU2MiAyLjQ4NDM4IDMuMDkxOCAyLjQwNDMgMy40NTExNyAyLjM2OTE0VjEuMTA5MzhINC4zODg2N1YyLjM4MDg2QzQuNzQwMjMgMi40Mjc3MyA1LjA1NjY0IDIuNTIzNDQgNS4zMzc4OSAyLjY2Nzk3QzUuNjE5MTQgMi44MTI1IDUuODU3NDIgMy4wMDE5NSA2LjA1MjczIDMuMjM2MzNDNi4yNTE5NSAzLjQ2NjggNi40MDQzIDMuNzQwMjMgNi41MDk3NyA0LjA1NjY0QzYuNjE5MTQgNC4zNjkxNCA2LjY3MzgzIDQuNzIwNyA2LjY3MzgzIDUuMTExMzNINS4wNDQ5MkM1LjA0NDkyIDQuNjM4NjcgNC45Mzc1IDQuMjgxMjUgNC43MjI2NiA0LjAzOTA2QzQuNTA3ODEgMy43OTI5NyA0LjIxNjggMy42Njk5MiAzLjg0OTYxIDMuNjY5OTJDMy42NTAzOSAzLjY2OTkyIDMuNDc2NTYgMy42OTcyNyAzLjMyODEyIDMuNzUxOTVDMy4xODM1OSAzLjgwMjczIDMuMDY0NDUgMy44NzY5NSAyLjk3MDcgMy45NzQ2MUMyLjg3Njk1IDQuMDY4MzYgMi44MDY2NCA0LjE3OTY5IDIuNzU5NzcgNC4zMDg1OUMyLjcxNjggNC40Mzc1IDIuNjk1MzEgNC41NzgxMiAyLjY5NTMxIDQuNzMwNDdDMi42OTUzMSA0Ljg4MjgxIDIuNzE2OCA1LjAxOTUzIDIuNzU5NzcgNS4xNDA2MkMyLjgwNjY0IDUuMjU3ODEgMi44ODI4MSA1LjM2NzE5IDIuOTg4MjggNS40Njg3NUMzLjA5NzY2IDUuNTcwMzEgMy4yNDAyMyA1LjY2Nzk3IDMuNDE2MDIgNS43NjE3MkMzLjU5MTggNS44NTE1NiAzLjgxMDU1IDUuOTQzMzYgNC4wNzIyNyA2LjAzNzExQzQuNDY2OCA2LjE4NTU1IDQuODI0MjIgNi4zMzk4NCA1LjE0NDUzIDYuNUM1LjQ2NDg0IDYuNjU2MjUgNS43MzgyOCA2LjgzOTg0IDUuOTY0ODQgNy4wNTA3OEM2LjE5NTMxIDcuMjU3ODEgNi4zNzEwOSA3LjUgNi40OTIxOSA3Ljc3NzM0QzYuNjE3MTkgOC4wNTA3OCA2LjY3OTY5IDguMzc1IDYuNjc5NjkgOC43NUM2LjY3OTY5IDkuMDkzNzUgNi42MjMwNSA5LjQwNDMgNi41MDk3NyA5LjY4MTY0QzYuMzk2NDggOS45NTUwOCA2LjIzNDM4IDEwLjE5MTQgNi4wMjM0NCAxMC4zOTA2QzUuODEyNSAxMC41ODk4IDUuNTU4NTkgMTAuNzUgNS4yNjE3MiAxMC44NzExQzQuOTY0ODQgMTAuOTg4MyA0LjYzMjgxIDExLjA2NDUgNC4yNjU2MiAxMS4wOTk2VjEyLjI0OEgzLjMzMzk4VjExLjA5OTZDMy4wMDE5NSAxMS4wNjg0IDIuNjc5NjkgMTAuOTk2MSAyLjM2NzE5IDEwLjg4MjhDMi4wNTQ2OSAxMC43NjU2IDEuNzc3MzQgMTAuNTk3NyAxLjUzNTE2IDEwLjM3ODlDMS4yOTY4OCAxMC4xNjAyIDEuMTA1NDcgOS44ODQ3NyAwLjk2MDkzOCA5LjU1MjczQzAuODE2NDA2IDkuMjE2OCAwLjc0NDE0MSA4LjgxNDQ1IDAuNzQ0MTQxIDguMzQ1N0gyLjM3ODkxQzIuMzc4OTEgOC42MjY5NSAyLjQxOTkyIDguODYzMjggMi41MDE5NSA5LjA1NDY5QzIuNTgzOTggOS4yNDIxOSAyLjY4OTQ1IDkuMzkyNTggMi44MTgzNiA5LjUwNTg2QzIuOTUxMTcgOS42MTUyMyAzLjEwMTU2IDkuNjkzMzYgMy4yNjk1MyA5Ljc0MDIzQzMuNDM3NSA5Ljc4NzExIDMuNjA5MzggOS44MTA1NSAzLjc4NTE2IDkuODEwNTVDNC4yMDMxMiA5LjgxMDU1IDQuNTE5NTMgOS43MTI4OSA0LjczNDM4IDkuNTE3NThDNC45NDkyMiA5LjMyMjI3IDUuMDU2NjQgOS4wNzAzMSA1LjA1NjY0IDguNzYxNzJaTTEzLjQxOCAxMi4yNzE1SDguMDc0MjJWMTFIMTMuNDE4VjEyLjI3MTVaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzLjk1MjY0IDYpIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);\n  --jp-icon-text-editor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTUgMTVIM3YyaDEydi0yem0wLThIM3YyaDEyVjd6TTMgMTNoMTh2LTJIM3Yyem0wIDhoMTh2LTJIM3Yyek0zIDN2MmgxOFYzSDN6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-toc: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik03LDVIMjFWN0g3VjVNNywxM1YxMUgyMVYxM0g3TTQsNC41QTEuNSwxLjUgMCAwLDEgNS41LDZBMS41LDEuNSAwIDAsMSA0LDcuNUExLjUsMS41IDAgMCwxIDIuNSw2QTEuNSwxLjUgMCAwLDEgNCw0LjVNNCwxMC41QTEuNSwxLjUgMCAwLDEgNS41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMy41QTEuNSwxLjUgMCAwLDEgMi41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMC41TTcsMTlWMTdIMjFWMTlIN000LDE2LjVBMS41LDEuNSAwIDAsMSA1LjUsMThBMS41LDEuNSAwIDAsMSA0LDE5LjVBMS41LDEuNSAwIDAsMSAyLjUsMThBMS41LDEuNSAwIDAsMSA0LDE2LjVaIiAvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tree-view: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMiAxMVYzaC03djNIOVYzSDJ2OGg3VjhoMnYxMGg0djNoN3YtOGgtN3YzaC0yVjhoMnYzeiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMiAxNy4xODQ0IDIuOTY5NjggMTQuMzAzMiAxLjg2MDk0IDExLjQ0MDlaIi8+CiAgICA8cGF0aCBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiMzMzMzMzMiIHN0cm9rZT0iIzMzMzMzMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA5Ljg2NzE5KSIgZD0iTTIuODYwMTUgNC44NjUzNUwwLjcyNjU0OSAyLjk5OTU5TDAgMy42MzA0NUwyLjg2MDE1IDYuMTMxNTdMOCAwLjYzMDg3Mkw3LjI3ODU3IDBMMi44NjAxNSA0Ljg2NTM1WiIvPgo8L3N2Zz4K);\n  --jp-icon-undo: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjUgOGMtMi42NSAwLTUuMDUuOTktNi45IDIuNkwyIDd2OWg5bC0zLjYyLTMuNjJjMS4zOS0xLjE2IDMuMTYtMS44OCA1LjEyLTEuODggMy41NCAwIDYuNTUgMi4zMSA3LjYgNS41bDIuMzctLjc4QzIxLjA4IDExLjAzIDE3LjE1IDggMTIuNSA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-vega: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbjEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjEyMTIxIj4KICAgIDxwYXRoIGQ9Ik0xMC42IDUuNGwyLjItMy4ySDIuMnY3LjNsNC02LjZ6Ii8+CiAgICA8cGF0aCBkPSJNMTUuOCAyLjJsLTQuNCA2LjZMNyA2LjNsLTQuOCA4djUuNWgxNy42VjIuMmgtNHptLTcgMTUuNEg1LjV2LTQuNGgzLjN2NC40em00LjQgMEg5LjhWOS44aDMuNHY3Ljh6bTQuNCAwaC0zLjRWNi41aDMuNHYxMS4xeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-yaml: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1jb250cmFzdDIganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjRDgxQjYwIj4KICAgIDxwYXRoIGQ9Ik03LjIgMTguNnYtNS40TDMgNS42aDMuM2wxLjQgMy4xYy4zLjkuNiAxLjYgMSAyLjUuMy0uOC42LTEuNiAxLTIuNWwxLjQtMy4xaDMuNGwtNC40IDcuNnY1LjVsLTIuOS0uMXoiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxNi41IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxMSIgcj0iMi4xIi8+CiAgPC9nPgo8L3N2Zz4K);\n}\n\n/* Icon CSS class declarations */\n\n.jp-AddIcon {\n  background-image: var(--jp-icon-add);\n}\n.jp-BugIcon {\n  background-image: var(--jp-icon-bug);\n}\n.jp-BuildIcon {\n  background-image: var(--jp-icon-build);\n}\n.jp-CaretDownEmptyIcon {\n  background-image: var(--jp-icon-caret-down-empty);\n}\n.jp-CaretDownEmptyThinIcon {\n  background-image: var(--jp-icon-caret-down-empty-thin);\n}\n.jp-CaretDownIcon {\n  background-image: var(--jp-icon-caret-down);\n}\n.jp-CaretLeftIcon {\n  background-image: var(--jp-icon-caret-left);\n}\n.jp-CaretRightIcon {\n  background-image: var(--jp-icon-caret-right);\n}\n.jp-CaretUpEmptyThinIcon {\n  background-image: var(--jp-icon-caret-up-empty-thin);\n}\n.jp-CaretUpIcon {\n  background-image: var(--jp-icon-caret-up);\n}\n.jp-CaseSensitiveIcon {\n  background-image: var(--jp-icon-case-sensitive);\n}\n.jp-CheckIcon {\n  background-image: var(--jp-icon-check);\n}\n.jp-CircleEmptyIcon {\n  background-image: var(--jp-icon-circle-empty);\n}\n.jp-CircleIcon {\n  background-image: var(--jp-icon-circle);\n}\n.jp-ClearIcon {\n  background-image: var(--jp-icon-clear);\n}\n.jp-CloseIcon {\n  background-image: var(--jp-icon-close);\n}\n.jp-CodeIcon {\n  background-image: var(--jp-icon-code);\n}\n.jp-ConsoleIcon {\n  background-image: var(--jp-icon-console);\n}\n.jp-CopyIcon {\n  background-image: var(--jp-icon-copy);\n}\n.jp-CopyrightIcon {\n  background-image: var(--jp-icon-copyright);\n}\n.jp-CutIcon {\n  background-image: var(--jp-icon-cut);\n}\n.jp-DownloadIcon {\n  background-image: var(--jp-icon-download);\n}\n.jp-EditIcon {\n  background-image: var(--jp-icon-edit);\n}\n.jp-EllipsesIcon {\n  background-image: var(--jp-icon-ellipses);\n}\n.jp-ExtensionIcon {\n  background-image: var(--jp-icon-extension);\n}\n.jp-FastForwardIcon {\n  background-image: var(--jp-icon-fast-forward);\n}\n.jp-FileIcon {\n  background-image: var(--jp-icon-file);\n}\n.jp-FileUploadIcon {\n  background-image: var(--jp-icon-file-upload);\n}\n.jp-FilterListIcon {\n  background-image: var(--jp-icon-filter-list);\n}\n.jp-FolderIcon {\n  background-image: var(--jp-icon-folder);\n}\n.jp-Html5Icon {\n  background-image: var(--jp-icon-html5);\n}\n.jp-ImageIcon {\n  background-image: var(--jp-icon-image);\n}\n.jp-InspectorIcon {\n  background-image: var(--jp-icon-inspector);\n}\n.jp-JsonIcon {\n  background-image: var(--jp-icon-json);\n}\n.jp-JuliaIcon {\n  background-image: var(--jp-icon-julia);\n}\n.jp-JupyterFaviconIcon {\n  background-image: var(--jp-icon-jupyter-favicon);\n}\n.jp-JupyterIcon {\n  background-image: var(--jp-icon-jupyter);\n}\n.jp-JupyterlabWordmarkIcon {\n  background-image: var(--jp-icon-jupyterlab-wordmark);\n}\n.jp-KernelIcon {\n  background-image: var(--jp-icon-kernel);\n}\n.jp-KeyboardIcon {\n  background-image: var(--jp-icon-keyboard);\n}\n.jp-LauncherIcon {\n  background-image: var(--jp-icon-launcher);\n}\n.jp-LineFormIcon {\n  background-image: var(--jp-icon-line-form);\n}\n.jp-LinkIcon {\n  background-image: var(--jp-icon-link);\n}\n.jp-ListIcon {\n  background-image: var(--jp-icon-list);\n}\n.jp-ListingsInfoIcon {\n  background-image: var(--jp-icon-listings-info);\n}\n.jp-MarkdownIcon {\n  background-image: var(--jp-icon-markdown);\n}\n.jp-NewFolderIcon {\n  background-image: var(--jp-icon-new-folder);\n}\n.jp-NotTrustedIcon {\n  background-image: var(--jp-icon-not-trusted);\n}\n.jp-NotebookIcon {\n  background-image: var(--jp-icon-notebook);\n}\n.jp-NumberingIcon {\n  background-image: var(--jp-icon-numbering);\n}\n.jp-OfflineBoltIcon {\n  background-image: var(--jp-icon-offline-bolt);\n}\n.jp-PaletteIcon {\n  background-image: var(--jp-icon-palette);\n}\n.jp-PasteIcon {\n  background-image: var(--jp-icon-paste);\n}\n.jp-PdfIcon {\n  background-image: var(--jp-icon-pdf);\n}\n.jp-PythonIcon {\n  background-image: var(--jp-icon-python);\n}\n.jp-RKernelIcon {\n  background-image: var(--jp-icon-r-kernel);\n}\n.jp-ReactIcon {\n  background-image: var(--jp-icon-react);\n}\n.jp-RedoIcon {\n  background-image: var(--jp-icon-redo);\n}\n.jp-RefreshIcon {\n  background-image: var(--jp-icon-refresh);\n}\n.jp-RegexIcon {\n  background-image: var(--jp-icon-regex);\n}\n.jp-RunIcon {\n  background-image: var(--jp-icon-run);\n}\n.jp-RunningIcon {\n  background-image: var(--jp-icon-running);\n}\n.jp-SaveIcon {\n  background-image: var(--jp-icon-save);\n}\n.jp-SearchIcon {\n  background-image: var(--jp-icon-search);\n}\n.jp-SettingsIcon {\n  background-image: var(--jp-icon-settings);\n}\n.jp-SpreadsheetIcon {\n  background-image: var(--jp-icon-spreadsheet);\n}\n.jp-StopIcon {\n  background-image: var(--jp-icon-stop);\n}\n.jp-TabIcon {\n  background-image: var(--jp-icon-tab);\n}\n.jp-TableRowsIcon {\n  background-image: var(--jp-icon-table-rows);\n}\n.jp-TagIcon {\n  background-image: var(--jp-icon-tag);\n}\n.jp-TerminalIcon {\n  background-image: var(--jp-icon-terminal);\n}\n.jp-TextEditorIcon {\n  background-image: var(--jp-icon-text-editor);\n}\n.jp-TocIcon {\n  background-image: var(--jp-icon-toc);\n}\n.jp-TreeViewIcon {\n  background-image: var(--jp-icon-tree-view);\n}\n.jp-TrustedIcon {\n  background-image: var(--jp-icon-trusted);\n}\n.jp-UndoIcon {\n  background-image: var(--jp-icon-undo);\n}\n.jp-VegaIcon {\n  background-image: var(--jp-icon-vega);\n}\n.jp-YamlIcon {\n  background-image: var(--jp-icon-yaml);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n.jp-Icon,\n.jp-MaterialIcon {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-cover {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: cover;\n}\n\n/**\n * (DEPRECATED) Support for specific CSS icon sizes\n */\n\n.jp-Icon-16 {\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-18 {\n  background-size: 18px;\n  min-width: 18px;\n  min-height: 18px;\n}\n\n.jp-Icon-20 {\n  background-size: 20px;\n  min-width: 20px;\n  min-height: 20px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for icons as inline SVG HTMLElements\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n/* recolor the accent elements of an icon */\n.jp-icon-accent0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-accent1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-accent2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-accent3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-accent4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-accent0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-accent1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-accent2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-accent3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-accent4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n/* set the color of an icon to transparent */\n.jp-icon-none[fill] {\n  fill: none;\n}\n\n.jp-icon-none[stroke] {\n  stroke: none;\n}\n/* brand icon colors. Same for light and dark */\n.jp-icon-brand0[fill] {\n  fill: var(--jp-brand-color0);\n}\n.jp-icon-brand1[fill] {\n  fill: var(--jp-brand-color1);\n}\n.jp-icon-brand2[fill] {\n  fill: var(--jp-brand-color2);\n}\n.jp-icon-brand3[fill] {\n  fill: var(--jp-brand-color3);\n}\n.jp-icon-brand4[fill] {\n  fill: var(--jp-brand-color4);\n}\n\n.jp-icon-brand0[stroke] {\n  stroke: var(--jp-brand-color0);\n}\n.jp-icon-brand1[stroke] {\n  stroke: var(--jp-brand-color1);\n}\n.jp-icon-brand2[stroke] {\n  stroke: var(--jp-brand-color2);\n}\n.jp-icon-brand3[stroke] {\n  stroke: var(--jp-brand-color3);\n}\n.jp-icon-brand4[stroke] {\n  stroke: var(--jp-brand-color4);\n}\n/* warn icon colors. Same for light and dark */\n.jp-icon-warn0[fill] {\n  fill: var(--jp-warn-color0);\n}\n.jp-icon-warn1[fill] {\n  fill: var(--jp-warn-color1);\n}\n.jp-icon-warn2[fill] {\n  fill: var(--jp-warn-color2);\n}\n.jp-icon-warn3[fill] {\n  fill: var(--jp-warn-color3);\n}\n\n.jp-icon-warn0[stroke] {\n  stroke: var(--jp-warn-color0);\n}\n.jp-icon-warn1[stroke] {\n  stroke: var(--jp-warn-color1);\n}\n.jp-icon-warn2[stroke] {\n  stroke: var(--jp-warn-color2);\n}\n.jp-icon-warn3[stroke] {\n  stroke: var(--jp-warn-color3);\n}\n/* icon colors that contrast well with each other and most backgrounds */\n.jp-icon-contrast0[fill] {\n  fill: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[fill] {\n  fill: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[fill] {\n  fill: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[fill] {\n  fill: var(--jp-icon-contrast-color3);\n}\n\n.jp-icon-contrast0[stroke] {\n  stroke: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[stroke] {\n  stroke: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[stroke] {\n  stroke: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[stroke] {\n  stroke: var(--jp-icon-contrast-color3);\n}\n\n/* CSS for icons in selected items in the settings editor */\n#setting-editor .jp-PluginList .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n#setting-editor\n  .jp-PluginList\n  .jp-mod-selected\n  .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected filebrowser listing items */\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected tabs in the sidebar tab manager */\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable-inverse[fill] {\n  fill: #fff;\n}\n\n/**\n * TODO: come up with non css-hack solution for showing the busy icon on top\n *  of the close icon\n * CSS for complex behavior of close icon of tabs in the sidebar tab manager\n */\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty.jp-mod-active\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: #fff;\n}\n\n/**\n* TODO: come up with non css-hack solution for showing the busy icon on top\n*  of the close icon\n* CSS for complex behavior of close icon of tabs in the main area tabbar\n*/\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n/* CSS for icons in status bar */\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n/* special handling for splash icon CSS. While the theme CSS reloads during\n   splash, the splash icon can loose theming. To prevent that, we set a\n   default for its color variable */\n:root {\n  --jp-warn-color0: var(--md-orange-700);\n}\n\n/* not sure what to do with this one, used in filebrowser listing */\n.jp-DragIcon {\n  margin-right: 4px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for alt colors for icons as inline SVG HTMLElements\n */\n\n/* alt recolor the primary elements of an icon */\n.jp-icon-alt .jp-icon0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-alt .jp-icon0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* alt recolor the accent elements of an icon */\n.jp-icon-alt .jp-icon-accent0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-alt .jp-icon-accent0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-icon-hoverShow:not(:hover) svg {\n  display: none !important;\n}\n\n/**\n * Support for hover colors for icons as inline SVG HTMLElements\n */\n\n/**\n * regular colors\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon-hover :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/* recolor the accent elements of an icon */\n.jp-icon-hover :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* set the color of an icon to transparent */\n.jp-icon-hover :hover .jp-icon-none-hover[fill] {\n  fill: none;\n}\n\n.jp-icon-hover :hover .jp-icon-none-hover[stroke] {\n  stroke: none;\n}\n\n/**\n * inverse colors\n */\n\n/* inverse recolor the primary elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* inverse recolor the accent elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-switch {\n  display: flex;\n  align-items: center;\n  padding-left: 4px;\n  padding-right: 4px;\n  font-size: var(--jp-ui-font-size1);\n  background-color: transparent;\n  color: var(--jp-ui-font-color1);\n  border: none;\n  height: 20px;\n}\n\n.jp-switch:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-switch-label {\n  margin-right: 5px;\n}\n\n.jp-switch-track {\n  cursor: pointer;\n  background-color: var(--jp-border-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 34px;\n  height: 16px;\n  width: 35px;\n  position: relative;\n}\n\n.jp-switch-track::before {\n  content: '';\n  position: absolute;\n  height: 10px;\n  width: 10px;\n  margin: 3px;\n  left: 0px;\n  background-color: var(--jp-ui-inverse-font-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 50%;\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track {\n  background-color: var(--jp-warn-color0);\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track::before {\n  /* track width (35) - margins (3 + 3) - thumb width (10) */\n  left: 19px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* Sibling imports */\n\n/* Override Blueprint's _reset.scss styles */\nhtml {\n  box-sizing: unset;\n}\n\n*,\n*::before,\n*::after {\n  box-sizing: unset;\n}\n\nbody {\n  color: unset;\n  font-family: var(--jp-ui-font-family);\n}\n\np {\n  margin-top: unset;\n  margin-bottom: unset;\n}\n\nsmall {\n  font-size: unset;\n}\n\nstrong {\n  font-weight: unset;\n}\n\n/* Override Blueprint's _typography.scss styles */\na {\n  text-decoration: unset;\n  color: unset;\n}\na:hover {\n  text-decoration: unset;\n  color: unset;\n}\n\n/* Override Blueprint's _accessibility.scss styles */\n:focus {\n  outline: unset;\n  outline-offset: unset;\n  -moz-outline-radius: unset;\n}\n\n/* Styles for ui-components */\n.jp-Button {\n  border-radius: var(--jp-border-radius);\n  padding: 0px 12px;\n  font-size: var(--jp-ui-font-size1);\n}\n\n/* Use our own theme for hover styles */\nbutton.jp-Button.bp3-button.bp3-minimal:hover {\n  background-color: var(--jp-layout-color2);\n}\n.jp-Button.minimal {\n  color: unset !important;\n}\n\n.jp-Button.jp-ToolbarButtonComponent {\n  text-transform: none;\n}\n\n.jp-InputGroup input {\n  box-sizing: border-box;\n  border-radius: 0;\n  background-color: transparent;\n  color: var(--jp-ui-font-color0);\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.jp-InputGroup input:focus {\n  box-shadow: inset 0 0 0 var(--jp-border-width)\n      var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-InputGroup input::placeholder,\ninput::placeholder {\n  color: var(--jp-ui-font-color3);\n}\n\n.jp-BPIcon {\n  display: inline-block;\n  vertical-align: middle;\n  margin: auto;\n}\n\n/* Stop blueprint futzing with our icon fills */\n.bp3-icon.jp-BPIcon > svg:not([fill]) {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n.jp-InputGroupAction {\n  padding: 6px;\n}\n\n.jp-HTMLSelect.jp-DefaultStyle select {\n  background-color: initial;\n  border: none;\n  border-radius: 0;\n  box-shadow: none;\n  color: var(--jp-ui-font-color0);\n  display: block;\n  font-size: var(--jp-ui-font-size1);\n  height: 24px;\n  line-height: 14px;\n  padding: 0 25px 0 10px;\n  text-align: left;\n  -moz-appearance: none;\n  -webkit-appearance: none;\n}\n\n/* Use our own theme for hover and option styles */\n.jp-HTMLSelect.jp-DefaultStyle select:hover,\n.jp-HTMLSelect.jp-DefaultStyle select > option {\n  background-color: var(--jp-layout-color2);\n  color: var(--jp-ui-font-color0);\n}\nselect {\n  box-sizing: border-box;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapse {\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  border-top: 1px solid var(--jp-border-color2);\n  border-bottom: 1px solid var(--jp-border-color2);\n}\n\n.jp-Collapse-header {\n  padding: 1px 12px;\n  color: var(--jp-ui-font-color1);\n  background-color: var(--jp-layout-color1);\n  font-size: var(--jp-ui-font-size2);\n}\n\n.jp-Collapse-header:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-Collapse-contents {\n  padding: 0px 12px 0px 12px;\n  background-color: var(--jp-layout-color1);\n  color: var(--jp-ui-font-color1);\n  overflow: auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-commandpalette-search-height: 28px;\n}\n\n/*-----------------------------------------------------------------------------\n| Overall styles\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette {\n  padding-bottom: 0px;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Modal variant\n|----------------------------------------------------------------------------*/\n\n.jp-ModalCommandPalette {\n  position: absolute;\n  z-index: 10000;\n  top: 38px;\n  left: 30%;\n  margin: 0;\n  padding: 4px;\n  width: 40%;\n  box-shadow: var(--jp-elevation-z4);\n  border-radius: 4px;\n  background: var(--jp-layout-color0);\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette {\n  max-height: 40vh;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-close-icon::after {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-header {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-item {\n  margin-left: 4px;\n  margin-right: 4px;\n}\n\n.jp-ModalCommandPalette\n  .lm-CommandPalette\n  .lm-CommandPalette-item.lm-mod-disabled {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Search\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-search {\n  padding: 4px;\n  background-color: var(--jp-layout-color1);\n  z-index: 2;\n}\n\n.lm-CommandPalette-wrapper {\n  overflow: overlay;\n  padding: 0px 9px;\n  background-color: var(--jp-input-active-background);\n  height: 30px;\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.lm-CommandPalette.lm-mod-focused .lm-CommandPalette-wrapper {\n  box-shadow: inset 0 0 0 1px var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-SearchIconGroup {\n  color: white;\n  background-color: var(--jp-brand-color1);\n  position: absolute;\n  top: 4px;\n  right: 4px;\n  padding: 5px 5px 1px 5px;\n}\n\n.jp-SearchIconGroup svg {\n  height: 20px;\n  width: 20px;\n}\n\n.jp-SearchIconGroup .jp-icon3[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-input {\n  background: transparent;\n  width: calc(100% - 18px);\n  float: left;\n  border: none;\n  outline: none;\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  line-height: var(--jp-private-commandpalette-search-height);\n}\n\n.lm-CommandPalette-input::-webkit-input-placeholder,\n.lm-CommandPalette-input::-moz-placeholder,\n.lm-CommandPalette-input:-ms-input-placeholder {\n  color: var(--jp-ui-font-color2);\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Results\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-header:first-child {\n  margin-top: 0px;\n}\n\n.lm-CommandPalette-header {\n  border-bottom: solid var(--jp-border-width) var(--jp-border-color2);\n  color: var(--jp-ui-font-color1);\n  cursor: pointer;\n  display: flex;\n  font-size: var(--jp-ui-font-size0);\n  font-weight: 600;\n  letter-spacing: 1px;\n  margin-top: 8px;\n  padding: 8px 0 8px 12px;\n  text-transform: uppercase;\n}\n\n.lm-CommandPalette-header.lm-mod-active {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-header > mark {\n  background-color: transparent;\n  font-weight: bold;\n  color: var(--jp-ui-font-color1);\n}\n\n.lm-CommandPalette-item {\n  padding: 4px 12px 4px 4px;\n  color: var(--jp-ui-font-color1);\n  font-size: var(--jp-ui-font-size1);\n  font-weight: 400;\n  display: flex;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item.lm-mod-active {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .jp-icon-selectable[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active:hover:not(.lm-mod-disabled) {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item:hover:not(.lm-mod-active):not(.lm-mod-disabled) {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-itemContent {\n  overflow: hidden;\n}\n\n.lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled mark {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemIcon {\n  margin: 0 4px 0 0;\n  position: relative;\n  width: 16px;\n  top: 2px;\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled .lm-CommandPalette-itemIcon {\n  opacity: 0.6;\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-itemCaption {\n  display: none;\n}\n\n.lm-CommandPalette-content {\n  background-color: var(--jp-layout-color1);\n}\n\n.lm-CommandPalette-content:empty:after {\n  content: 'No results';\n  margin: auto;\n  margin-top: 20px;\n  width: 100px;\n  display: block;\n  font-size: var(--jp-ui-font-size2);\n  font-family: var(--jp-ui-font-family);\n  font-weight: lighter;\n}\n\n.lm-CommandPalette-emptyMessage {\n  text-align: center;\n  margin-top: 24px;\n  line-height: 1.32;\n  padding: 0px 8px;\n  color: var(--jp-content-font-color3);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Dialog {\n  position: absolute;\n  z-index: 10000;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  top: 0px;\n  left: 0px;\n  margin: 0;\n  padding: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-dialog-background);\n}\n\n.jp-Dialog-content {\n  display: flex;\n  flex-direction: column;\n  margin-left: auto;\n  margin-right: auto;\n  background: var(--jp-layout-color1);\n  padding: 24px;\n  padding-bottom: 12px;\n  min-width: 300px;\n  min-height: 150px;\n  max-width: 1000px;\n  max-height: 500px;\n  box-sizing: border-box;\n  box-shadow: var(--jp-elevation-z20);\n  word-wrap: break-word;\n  border-radius: var(--jp-border-radius);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color1);\n  resize: both;\n}\n\n.jp-Dialog-button {\n  overflow: visible;\n}\n\nbutton.jp-Dialog-button:focus {\n  outline: 1px solid var(--jp-brand-color1);\n  outline-offset: 4px;\n  -moz-outline-radius: 0px;\n}\n\nbutton.jp-Dialog-button:focus::-moz-focus-inner {\n  border: 0;\n}\n\nbutton.jp-Dialog-close-button {\n  padding: 0;\n  height: 100%;\n  min-width: unset;\n  min-height: unset;\n}\n\n.jp-Dialog-header {\n  display: flex;\n  justify-content: space-between;\n  flex: 0 0 auto;\n  padding-bottom: 12px;\n  font-size: var(--jp-ui-font-size3);\n  font-weight: 400;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-body {\n  display: flex;\n  flex-direction: column;\n  flex: 1 1 auto;\n  font-size: var(--jp-ui-font-size1);\n  background: var(--jp-layout-color1);\n  overflow: auto;\n}\n\n.jp-Dialog-footer {\n  display: flex;\n  flex-direction: row;\n  justify-content: flex-end;\n  flex: 0 0 auto;\n  margin-left: -12px;\n  margin-right: -12px;\n  padding: 12px;\n}\n\n.jp-Dialog-title {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.jp-Dialog-body > .jp-select-wrapper {\n  width: 100%;\n}\n\n.jp-Dialog-body > button {\n  padding: 0px 16px;\n}\n\n.jp-Dialog-body > label {\n  line-height: 1.4;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-button.jp-mod-styled:not(:last-child) {\n  margin-right: 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-HoverBox {\n  position: fixed;\n}\n\n.jp-HoverBox.jp-mod-outofview {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-IFrame {\n  width: 100%;\n  height: 100%;\n}\n\n.jp-IFrame > iframe {\n  border: none;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-IFrame {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-IFrame:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n.jp-Input-Boolean-Dialog {\n  flex-direction: row-reverse;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-Input-Boolean-Dialog > label {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MainAreaWidget > :focus {\n  outline: none;\n}\n\n/**\n * google-material-color v1.2.6\n * https://github.com/danlevan/google-material-color\n */\n:root {\n  --md-red-50: #ffebee;\n  --md-red-100: #ffcdd2;\n  --md-red-200: #ef9a9a;\n  --md-red-300: #e57373;\n  --md-red-400: #ef5350;\n  --md-red-500: #f44336;\n  --md-red-600: #e53935;\n  --md-red-700: #d32f2f;\n  --md-red-800: #c62828;\n  --md-red-900: #b71c1c;\n  --md-red-A100: #ff8a80;\n  --md-red-A200: #ff5252;\n  --md-red-A400: #ff1744;\n  --md-red-A700: #d50000;\n\n  --md-pink-50: #fce4ec;\n  --md-pink-100: #f8bbd0;\n  --md-pink-200: #f48fb1;\n  --md-pink-300: #f06292;\n  --md-pink-400: #ec407a;\n  --md-pink-500: #e91e63;\n  --md-pink-600: #d81b60;\n  --md-pink-700: #c2185b;\n  --md-pink-800: #ad1457;\n  --md-pink-900: #880e4f;\n  --md-pink-A100: #ff80ab;\n  --md-pink-A200: #ff4081;\n  --md-pink-A400: #f50057;\n  --md-pink-A700: #c51162;\n\n  --md-purple-50: #f3e5f5;\n  --md-purple-100: #e1bee7;\n  --md-purple-200: #ce93d8;\n  --md-purple-300: #ba68c8;\n  --md-purple-400: #ab47bc;\n  --md-purple-500: #9c27b0;\n  --md-purple-600: #8e24aa;\n  --md-purple-700: #7b1fa2;\n  --md-purple-800: #6a1b9a;\n  --md-purple-900: #4a148c;\n  --md-purple-A100: #ea80fc;\n  --md-purple-A200: #e040fb;\n  --md-purple-A400: #d500f9;\n  --md-purple-A700: #aa00ff;\n\n  --md-deep-purple-50: #ede7f6;\n  --md-deep-purple-100: #d1c4e9;\n  --md-deep-purple-200: #b39ddb;\n  --md-deep-purple-300: #9575cd;\n  --md-deep-purple-400: #7e57c2;\n  --md-deep-purple-500: #673ab7;\n  --md-deep-purple-600: #5e35b1;\n  --md-deep-purple-700: #512da8;\n  --md-deep-purple-800: #4527a0;\n  --md-deep-purple-900: #311b92;\n  --md-deep-purple-A100: #b388ff;\n  --md-deep-purple-A200: #7c4dff;\n  --md-deep-purple-A400: #651fff;\n  --md-deep-purple-A700: #6200ea;\n\n  --md-indigo-50: #e8eaf6;\n  --md-indigo-100: #c5cae9;\n  --md-indigo-200: #9fa8da;\n  --md-indigo-300: #7986cb;\n  --md-indigo-400: #5c6bc0;\n  --md-indigo-500: #3f51b5;\n  --md-indigo-600: #3949ab;\n  --md-indigo-700: #303f9f;\n  --md-indigo-800: #283593;\n  --md-indigo-900: #1a237e;\n  --md-indigo-A100: #8c9eff;\n  --md-indigo-A200: #536dfe;\n  --md-indigo-A400: #3d5afe;\n  --md-indigo-A700: #304ffe;\n\n  --md-blue-50: #e3f2fd;\n  --md-blue-100: #bbdefb;\n  --md-blue-200: #90caf9;\n  --md-blue-300: #64b5f6;\n  --md-blue-400: #42a5f5;\n  --md-blue-500: #2196f3;\n  --md-blue-600: #1e88e5;\n  --md-blue-700: #1976d2;\n  --md-blue-800: #1565c0;\n  --md-blue-900: #0d47a1;\n  --md-blue-A100: #82b1ff;\n  --md-blue-A200: #448aff;\n  --md-blue-A400: #2979ff;\n  --md-blue-A700: #2962ff;\n\n  --md-light-blue-50: #e1f5fe;\n  --md-light-blue-100: #b3e5fc;\n  --md-light-blue-200: #81d4fa;\n  --md-light-blue-300: #4fc3f7;\n  --md-light-blue-400: #29b6f6;\n  --md-light-blue-500: #03a9f4;\n  --md-light-blue-600: #039be5;\n  --md-light-blue-700: #0288d1;\n  --md-light-blue-800: #0277bd;\n  --md-light-blue-900: #01579b;\n  --md-light-blue-A100: #80d8ff;\n  --md-light-blue-A200: #40c4ff;\n  --md-light-blue-A400: #00b0ff;\n  --md-light-blue-A700: #0091ea;\n\n  --md-cyan-50: #e0f7fa;\n  --md-cyan-100: #b2ebf2;\n  --md-cyan-200: #80deea;\n  --md-cyan-300: #4dd0e1;\n  --md-cyan-400: #26c6da;\n  --md-cyan-500: #00bcd4;\n  --md-cyan-600: #00acc1;\n  --md-cyan-700: #0097a7;\n  --md-cyan-800: #00838f;\n  --md-cyan-900: #006064;\n  --md-cyan-A100: #84ffff;\n  --md-cyan-A200: #18ffff;\n  --md-cyan-A400: #00e5ff;\n  --md-cyan-A700: #00b8d4;\n\n  --md-teal-50: #e0f2f1;\n  --md-teal-100: #b2dfdb;\n  --md-teal-200: #80cbc4;\n  --md-teal-300: #4db6ac;\n  --md-teal-400: #26a69a;\n  --md-teal-500: #009688;\n  --md-teal-600: #00897b;\n  --md-teal-700: #00796b;\n  --md-teal-800: #00695c;\n  --md-teal-900: #004d40;\n  --md-teal-A100: #a7ffeb;\n  --md-teal-A200: #64ffda;\n  --md-teal-A400: #1de9b6;\n  --md-teal-A700: #00bfa5;\n\n  --md-green-50: #e8f5e9;\n  --md-green-100: #c8e6c9;\n  --md-green-200: #a5d6a7;\n  --md-green-300: #81c784;\n  --md-green-400: #66bb6a;\n  --md-green-500: #4caf50;\n  --md-green-600: #43a047;\n  --md-green-700: #388e3c;\n  --md-green-800: #2e7d32;\n  --md-green-900: #1b5e20;\n  --md-green-A100: #b9f6ca;\n  --md-green-A200: #69f0ae;\n  --md-green-A400: #00e676;\n  --md-green-A700: #00c853;\n\n  --md-light-green-50: #f1f8e9;\n  --md-light-green-100: #dcedc8;\n  --md-light-green-200: #c5e1a5;\n  --md-light-green-300: #aed581;\n  --md-light-green-400: #9ccc65;\n  --md-light-green-500: #8bc34a;\n  --md-light-green-600: #7cb342;\n  --md-light-green-700: #689f38;\n  --md-light-green-800: #558b2f;\n  --md-light-green-900: #33691e;\n  --md-light-green-A100: #ccff90;\n  --md-light-green-A200: #b2ff59;\n  --md-light-green-A400: #76ff03;\n  --md-light-green-A700: #64dd17;\n\n  --md-lime-50: #f9fbe7;\n  --md-lime-100: #f0f4c3;\n  --md-lime-200: #e6ee9c;\n  --md-lime-300: #dce775;\n  --md-lime-400: #d4e157;\n  --md-lime-500: #cddc39;\n  --md-lime-600: #c0ca33;\n  --md-lime-700: #afb42b;\n  --md-lime-800: #9e9d24;\n  --md-lime-900: #827717;\n  --md-lime-A100: #f4ff81;\n  --md-lime-A200: #eeff41;\n  --md-lime-A400: #c6ff00;\n  --md-lime-A700: #aeea00;\n\n  --md-yellow-50: #fffde7;\n  --md-yellow-100: #fff9c4;\n  --md-yellow-200: #fff59d;\n  --md-yellow-300: #fff176;\n  --md-yellow-400: #ffee58;\n  --md-yellow-500: #ffeb3b;\n  --md-yellow-600: #fdd835;\n  --md-yellow-700: #fbc02d;\n  --md-yellow-800: #f9a825;\n  --md-yellow-900: #f57f17;\n  --md-yellow-A100: #ffff8d;\n  --md-yellow-A200: #ffff00;\n  --md-yellow-A400: #ffea00;\n  --md-yellow-A700: #ffd600;\n\n  --md-amber-50: #fff8e1;\n  --md-amber-100: #ffecb3;\n  --md-amber-200: #ffe082;\n  --md-amber-300: #ffd54f;\n  --md-amber-400: #ffca28;\n  --md-amber-500: #ffc107;\n  --md-amber-600: #ffb300;\n  --md-amber-700: #ffa000;\n  --md-amber-800: #ff8f00;\n  --md-amber-900: #ff6f00;\n  --md-amber-A100: #ffe57f;\n  --md-amber-A200: #ffd740;\n  --md-amber-A400: #ffc400;\n  --md-amber-A700: #ffab00;\n\n  --md-orange-50: #fff3e0;\n  --md-orange-100: #ffe0b2;\n  --md-orange-200: #ffcc80;\n  --md-orange-300: #ffb74d;\n  --md-orange-400: #ffa726;\n  --md-orange-500: #ff9800;\n  --md-orange-600: #fb8c00;\n  --md-orange-700: #f57c00;\n  --md-orange-800: #ef6c00;\n  --md-orange-900: #e65100;\n  --md-orange-A100: #ffd180;\n  --md-orange-A200: #ffab40;\n  --md-orange-A400: #ff9100;\n  --md-orange-A700: #ff6d00;\n\n  --md-deep-orange-50: #fbe9e7;\n  --md-deep-orange-100: #ffccbc;\n  --md-deep-orange-200: #ffab91;\n  --md-deep-orange-300: #ff8a65;\n  --md-deep-orange-400: #ff7043;\n  --md-deep-orange-500: #ff5722;\n  --md-deep-orange-600: #f4511e;\n  --md-deep-orange-700: #e64a19;\n  --md-deep-orange-800: #d84315;\n  --md-deep-orange-900: #bf360c;\n  --md-deep-orange-A100: #ff9e80;\n  --md-deep-orange-A200: #ff6e40;\n  --md-deep-orange-A400: #ff3d00;\n  --md-deep-orange-A700: #dd2c00;\n\n  --md-brown-50: #efebe9;\n  --md-brown-100: #d7ccc8;\n  --md-brown-200: #bcaaa4;\n  --md-brown-300: #a1887f;\n  --md-brown-400: #8d6e63;\n  --md-brown-500: #795548;\n  --md-brown-600: #6d4c41;\n  --md-brown-700: #5d4037;\n  --md-brown-800: #4e342e;\n  --md-brown-900: #3e2723;\n\n  --md-grey-50: #fafafa;\n  --md-grey-100: #f5f5f5;\n  --md-grey-200: #eeeeee;\n  --md-grey-300: #e0e0e0;\n  --md-grey-400: #bdbdbd;\n  --md-grey-500: #9e9e9e;\n  --md-grey-600: #757575;\n  --md-grey-700: #616161;\n  --md-grey-800: #424242;\n  --md-grey-900: #212121;\n\n  --md-blue-grey-50: #eceff1;\n  --md-blue-grey-100: #cfd8dc;\n  --md-blue-grey-200: #b0bec5;\n  --md-blue-grey-300: #90a4ae;\n  --md-blue-grey-400: #78909c;\n  --md-blue-grey-500: #607d8b;\n  --md-blue-grey-600: #546e7a;\n  --md-blue-grey-700: #455a64;\n  --md-blue-grey-800: #37474f;\n  --md-blue-grey-900: #263238;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Spinner {\n  position: absolute;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  z-index: 10;\n  left: 0;\n  top: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-layout-color0);\n  outline: none;\n}\n\n.jp-SpinnerContent {\n  font-size: 10px;\n  margin: 50px auto;\n  text-indent: -9999em;\n  width: 3em;\n  height: 3em;\n  border-radius: 50%;\n  background: var(--jp-brand-color3);\n  background: linear-gradient(\n    to right,\n    #f37626 10%,\n    rgba(255, 255, 255, 0) 42%\n  );\n  position: relative;\n  animation: load3 1s infinite linear, fadeIn 1s;\n}\n\n.jp-SpinnerContent:before {\n  width: 50%;\n  height: 50%;\n  background: #f37626;\n  border-radius: 100% 0 0 0;\n  position: absolute;\n  top: 0;\n  left: 0;\n  content: '';\n}\n\n.jp-SpinnerContent:after {\n  background: var(--jp-layout-color0);\n  width: 75%;\n  height: 75%;\n  border-radius: 50%;\n  content: '';\n  margin: auto;\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n}\n\n@keyframes fadeIn {\n  0% {\n    opacity: 0;\n  }\n  100% {\n    opacity: 1;\n  }\n}\n\n@keyframes load3 {\n  0% {\n    transform: rotate(0deg);\n  }\n  100% {\n    transform: rotate(360deg);\n  }\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\nbutton.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: none;\n  box-sizing: border-box;\n  text-align: center;\n  line-height: 32px;\n  height: 32px;\n  padding: 0px 12px;\n  letter-spacing: 0.8px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput.jp-mod-styled {\n  background: var(--jp-input-background);\n  height: 28px;\n  box-sizing: border-box;\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n  padding-left: 7px;\n  padding-right: 7px;\n  font-size: var(--jp-ui-font-size2);\n  color: var(--jp-ui-font-color0);\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput[type='checkbox'].jp-mod-styled {\n  appearance: checkbox;\n  -webkit-appearance: checkbox;\n  -moz-appearance: checkbox;\n  height: auto;\n}\n\ninput.jp-mod-styled:focus {\n  border: var(--jp-border-width) solid var(--md-blue-500);\n  box-shadow: inset 0 0 4px var(--md-blue-300);\n}\n\n.jp-FileDialog-Checkbox {\n  margin-top: 35px;\n  display: flex;\n  flex-direction: row;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-FileDialog-Checkbox > label {\n  flex: 1 1 auto;\n}\n\n.jp-select-wrapper {\n  display: flex;\n  position: relative;\n  flex-direction: column;\n  padding: 1px;\n  background-color: var(--jp-layout-color1);\n  height: 28px;\n  box-sizing: border-box;\n  margin-bottom: 12px;\n}\n\n.jp-select-wrapper.jp-mod-focused select.jp-mod-styled {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-input-active-background);\n}\n\nselect.jp-mod-styled:hover {\n  background-color: var(--jp-layout-color1);\n  cursor: pointer;\n  color: var(--jp-ui-font-color0);\n  background-color: var(--jp-input-hover-background);\n  box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.5);\n}\n\nselect.jp-mod-styled {\n  flex: 1 1 auto;\n  height: 32px;\n  width: 100%;\n  font-size: var(--jp-ui-font-size2);\n  background: var(--jp-input-background);\n  color: var(--jp-ui-font-color0);\n  padding: 0 25px 0 8px;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-toolbar-height: calc(\n    28px + var(--jp-border-width)\n  ); /* leave 28px for content */\n}\n\n.jp-Toolbar {\n  color: var(--jp-ui-font-color1);\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  border-bottom: var(--jp-border-width) solid var(--jp-toolbar-border-color);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  background: var(--jp-toolbar-background);\n  min-height: var(--jp-toolbar-micro-height);\n  padding: 2px;\n  z-index: 1;\n  overflow-x: auto;\n}\n\n/* Toolbar items */\n\n.jp-Toolbar > .jp-Toolbar-item.jp-Toolbar-spacer {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\n.jp-Toolbar-item.jp-Toolbar-kernelStatus {\n  display: inline-block;\n  width: 32px;\n  background-repeat: no-repeat;\n  background-position: center;\n  background-size: 16px;\n}\n\n.jp-Toolbar > .jp-Toolbar-item {\n  flex: 0 0 auto;\n  display: flex;\n  padding-left: 1px;\n  padding-right: 1px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: var(--jp-private-toolbar-height);\n  height: 100%;\n}\n\n/* Toolbar buttons */\n\n/* This is the div we use to wrap the react component into a Widget */\ndiv.jp-ToolbarButton {\n  color: transparent;\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px;\n  margin: 0px;\n}\n\nbutton.jp-ToolbarButtonComponent {\n  background: var(--jp-layout-color1);\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px 6px;\n  margin: 0px;\n  height: 24px;\n  border-radius: var(--jp-border-radius);\n  display: flex;\n  align-items: center;\n  text-align: center;\n  font-size: 14px;\n  min-width: unset;\n  min-height: unset;\n}\n\nbutton.jp-ToolbarButtonComponent:disabled {\n  opacity: 0.4;\n}\n\nbutton.jp-ToolbarButtonComponent span {\n  padding: 0px;\n  flex: 0 0 auto;\n}\n\nbutton.jp-ToolbarButtonComponent .jp-ToolbarButtonComponent-label {\n  font-size: var(--jp-ui-font-size1);\n  line-height: 100%;\n  padding-left: 2px;\n  color: var(--jp-ui-font-color1);\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar.jp-Toolbar-micro {\n  padding: 0;\n  min-height: 0;\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar {\n  border: none;\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ body.p-mod-override-cursor *, /* </DEPRECATED> */\nbody.lm-mod-override-cursor * {\n  cursor: inherit !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-JSONEditor {\n  display: flex;\n  flex-direction: column;\n  width: 100%;\n}\n\n.jp-JSONEditor-host {\n  flex: 1 1 auto;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  background: var(--jp-layout-color0);\n  min-height: 50px;\n  padding: 1px;\n}\n\n.jp-JSONEditor.jp-mod-error .jp-JSONEditor-host {\n  border-color: red;\n  outline-color: red;\n}\n\n.jp-JSONEditor-header {\n  display: flex;\n  flex: 1 0 auto;\n  padding: 0 0 0 12px;\n}\n\n.jp-JSONEditor-header label {\n  flex: 0 0 auto;\n}\n\n.jp-JSONEditor-commitButton {\n  height: 16px;\n  width: 16px;\n  background-size: 18px;\n  background-repeat: no-repeat;\n  background-position: center;\n}\n\n.jp-JSONEditor-host.jp-mod-focused {\n  background-color: var(--jp-input-active-background);\n  border: 1px solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n.jp-Editor.jp-mod-dropTarget {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n/* BASICS */\n\n.CodeMirror {\n  /* Set height, width, borders, and global font properties here */\n  font-family: monospace;\n  height: 300px;\n  color: black;\n  direction: ltr;\n}\n\n/* PADDING */\n\n.CodeMirror-lines {\n  padding: 4px 0; /* Vertical padding around content */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  padding: 0 4px; /* Horizontal padding of content */\n}\n\n.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  background-color: white; /* The little square between H and V scrollbars */\n}\n\n/* GUTTER */\n\n.CodeMirror-gutters {\n  border-right: 1px solid #ddd;\n  background-color: #f7f7f7;\n  white-space: nowrap;\n}\n.CodeMirror-linenumbers {}\n.CodeMirror-linenumber {\n  padding: 0 3px 0 5px;\n  min-width: 20px;\n  text-align: right;\n  color: #999;\n  white-space: nowrap;\n}\n\n.CodeMirror-guttermarker { color: black; }\n.CodeMirror-guttermarker-subtle { color: #999; }\n\n/* CURSOR */\n\n.CodeMirror-cursor {\n  border-left: 1px solid black;\n  border-right: none;\n  width: 0;\n}\n/* Shown when moving in bi-directional text */\n.CodeMirror div.CodeMirror-secondarycursor {\n  border-left: 1px solid silver;\n}\n.cm-fat-cursor .CodeMirror-cursor {\n  width: auto;\n  border: 0 !important;\n  background: #7e7;\n}\n.cm-fat-cursor div.CodeMirror-cursors {\n  z-index: 1;\n}\n.cm-fat-cursor-mark {\n  background-color: rgba(20, 255, 20, 0.5);\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n}\n.cm-animate-fat-cursor {\n  width: auto;\n  border: 0;\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n  background-color: #7e7;\n}\n@-moz-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@-webkit-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n\n/* Can style cursor different in overwrite (non-insert) mode */\n.CodeMirror-overwrite .CodeMirror-cursor {}\n\n.cm-tab { display: inline-block; text-decoration: inherit; }\n\n.CodeMirror-rulers {\n  position: absolute;\n  left: 0; right: 0; top: -50px; bottom: 0;\n  overflow: hidden;\n}\n.CodeMirror-ruler {\n  border-left: 1px solid #ccc;\n  top: 0; bottom: 0;\n  position: absolute;\n}\n\n/* DEFAULT THEME */\n\n.cm-s-default .cm-header {color: blue;}\n.cm-s-default .cm-quote {color: #090;}\n.cm-negative {color: #d44;}\n.cm-positive {color: #292;}\n.cm-header, .cm-strong {font-weight: bold;}\n.cm-em {font-style: italic;}\n.cm-link {text-decoration: underline;}\n.cm-strikethrough {text-decoration: line-through;}\n\n.cm-s-default .cm-keyword {color: #708;}\n.cm-s-default .cm-atom {color: #219;}\n.cm-s-default .cm-number {color: #164;}\n.cm-s-default .cm-def {color: #00f;}\n.cm-s-default .cm-variable,\n.cm-s-default .cm-punctuation,\n.cm-s-default .cm-property,\n.cm-s-default .cm-operator {}\n.cm-s-default .cm-variable-2 {color: #05a;}\n.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}\n.cm-s-default .cm-comment {color: #a50;}\n.cm-s-default .cm-string {color: #a11;}\n.cm-s-default .cm-string-2 {color: #f50;}\n.cm-s-default .cm-meta {color: #555;}\n.cm-s-default .cm-qualifier {color: #555;}\n.cm-s-default .cm-builtin {color: #30a;}\n.cm-s-default .cm-bracket {color: #997;}\n.cm-s-default .cm-tag {color: #170;}\n.cm-s-default .cm-attribute {color: #00c;}\n.cm-s-default .cm-hr {color: #999;}\n.cm-s-default .cm-link {color: #00c;}\n\n.cm-s-default .cm-error {color: #f00;}\n.cm-invalidchar {color: #f00;}\n\n.CodeMirror-composing { border-bottom: 2px solid; }\n\n/* Default styles for common addons */\n\ndiv.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}\ndiv.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}\n.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }\n.CodeMirror-activeline-background {background: #e8f2ff;}\n\n/* STOP */\n\n/* The rest of this file contains styles related to the mechanics of\n   the editor. You probably shouldn't touch them. */\n\n.CodeMirror {\n  position: relative;\n  overflow: hidden;\n  background: white;\n}\n\n.CodeMirror-scroll {\n  overflow: scroll !important; /* Things will break if this is overridden */\n  /* 50px is the magic margin used to hide the element's real scrollbars */\n  /* See overflow: hidden in .CodeMirror */\n  margin-bottom: -50px; margin-right: -50px;\n  padding-bottom: 50px;\n  height: 100%;\n  outline: none; /* Prevent dragging from highlighting the element */\n  position: relative;\n}\n.CodeMirror-sizer {\n  position: relative;\n  border-right: 50px solid transparent;\n}\n\n/* The fake, visible scrollbars. Used to force redraw during scrolling\n   before actual scrolling happens, thus preventing shaking and\n   flickering artifacts. */\n.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  position: absolute;\n  z-index: 6;\n  display: none;\n  outline: none;\n}\n.CodeMirror-vscrollbar {\n  right: 0; top: 0;\n  overflow-x: hidden;\n  overflow-y: scroll;\n}\n.CodeMirror-hscrollbar {\n  bottom: 0; left: 0;\n  overflow-y: hidden;\n  overflow-x: scroll;\n}\n.CodeMirror-scrollbar-filler {\n  right: 0; bottom: 0;\n}\n.CodeMirror-gutter-filler {\n  left: 0; bottom: 0;\n}\n\n.CodeMirror-gutters {\n  position: absolute; left: 0; top: 0;\n  min-height: 100%;\n  z-index: 3;\n}\n.CodeMirror-gutter {\n  white-space: normal;\n  height: 100%;\n  display: inline-block;\n  vertical-align: top;\n  margin-bottom: -50px;\n}\n.CodeMirror-gutter-wrapper {\n  position: absolute;\n  z-index: 4;\n  background: none !important;\n  border: none !important;\n}\n.CodeMirror-gutter-background {\n  position: absolute;\n  top: 0; bottom: 0;\n  z-index: 4;\n}\n.CodeMirror-gutter-elt {\n  position: absolute;\n  cursor: default;\n  z-index: 4;\n}\n.CodeMirror-gutter-wrapper ::selection { background-color: transparent }\n.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }\n\n.CodeMirror-lines {\n  cursor: text;\n  min-height: 1px; /* prevents collapsing before first draw */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  /* Reset some styles that the rest of the page might have set */\n  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;\n  border-width: 0;\n  background: transparent;\n  font-family: inherit;\n  font-size: inherit;\n  margin: 0;\n  white-space: pre;\n  word-wrap: normal;\n  line-height: inherit;\n  color: inherit;\n  z-index: 2;\n  position: relative;\n  overflow: visible;\n  -webkit-tap-highlight-color: transparent;\n  -webkit-font-variant-ligatures: contextual;\n  font-variant-ligatures: contextual;\n}\n.CodeMirror-wrap pre.CodeMirror-line,\n.CodeMirror-wrap pre.CodeMirror-line-like {\n  word-wrap: break-word;\n  white-space: pre-wrap;\n  word-break: normal;\n}\n\n.CodeMirror-linebackground {\n  position: absolute;\n  left: 0; right: 0; top: 0; bottom: 0;\n  z-index: 0;\n}\n\n.CodeMirror-linewidget {\n  position: relative;\n  z-index: 2;\n  padding: 0.1px; /* Force widget margins to stay inside of the container */\n}\n\n.CodeMirror-widget {}\n\n.CodeMirror-rtl pre { direction: rtl; }\n\n.CodeMirror-code {\n  outline: none;\n}\n\n/* Force content-box sizing for the elements where we expect it */\n.CodeMirror-scroll,\n.CodeMirror-sizer,\n.CodeMirror-gutter,\n.CodeMirror-gutters,\n.CodeMirror-linenumber {\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n}\n\n.CodeMirror-measure {\n  position: absolute;\n  width: 100%;\n  height: 0;\n  overflow: hidden;\n  visibility: hidden;\n}\n\n.CodeMirror-cursor {\n  position: absolute;\n  pointer-events: none;\n}\n.CodeMirror-measure pre { position: static; }\n\ndiv.CodeMirror-cursors {\n  visibility: hidden;\n  position: relative;\n  z-index: 3;\n}\ndiv.CodeMirror-dragcursors {\n  visibility: visible;\n}\n\n.CodeMirror-focused div.CodeMirror-cursors {\n  visibility: visible;\n}\n\n.CodeMirror-selected { background: #d9d9d9; }\n.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }\n.CodeMirror-crosshair { cursor: crosshair; }\n.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }\n.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }\n\n.cm-searching {\n  background-color: #ffa;\n  background-color: rgba(255, 255, 0, .4);\n}\n\n/* Used to force a border model for a node */\n.cm-force-border { padding-right: .1px; }\n\n@media print {\n  /* Hide the cursor when printing */\n  .CodeMirror div.CodeMirror-cursors {\n    visibility: hidden;\n  }\n}\n\n/* See issue #2901 */\n.cm-tab-wrap-hack:after { content: ''; }\n\n/* Help users use markselection to safely style text background */\nspan.CodeMirror-selectedtext { background: none; }\n\n.CodeMirror-dialog {\n  position: absolute;\n  left: 0; right: 0;\n  background: inherit;\n  z-index: 15;\n  padding: .1em .8em;\n  overflow: hidden;\n  color: inherit;\n}\n\n.CodeMirror-dialog-top {\n  border-bottom: 1px solid #eee;\n  top: 0;\n}\n\n.CodeMirror-dialog-bottom {\n  border-top: 1px solid #eee;\n  bottom: 0;\n}\n\n.CodeMirror-dialog input {\n  border: none;\n  outline: none;\n  background: transparent;\n  width: 20em;\n  color: inherit;\n  font-family: monospace;\n}\n\n.CodeMirror-dialog button {\n  font-size: 70%;\n}\n\n.CodeMirror-foldmarker {\n  color: blue;\n  text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;\n  font-family: arial;\n  line-height: .3;\n  cursor: pointer;\n}\n.CodeMirror-foldgutter {\n  width: .7em;\n}\n.CodeMirror-foldgutter-open,\n.CodeMirror-foldgutter-folded {\n  cursor: pointer;\n}\n.CodeMirror-foldgutter-open:after {\n  content: \"\\25BE\";\n}\n.CodeMirror-foldgutter-folded:after {\n  content: \"\\25B8\";\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.CodeMirror {\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  border: 0;\n  border-radius: 0;\n  height: auto;\n  /* Changed to auto to autogrow */\n}\n\n.CodeMirror pre {\n  padding: 0 var(--jp-code-padding);\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-dialog {\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* This causes https://github.com/jupyter/jupyterlab/issues/522 */\n/* May not cause it not because we changed it! */\n.CodeMirror-lines {\n  padding: var(--jp-code-padding) 0;\n}\n\n.CodeMirror-linenumber {\n  padding: 0 8px;\n}\n\n.jp-CodeMirrorEditor {\n  cursor: text;\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n\n/* When zoomed out 67% and 33% on a screen of 1440 width x 900 height */\n@media screen and (min-width: 2138px) and (max-width: 4319px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width1) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n/* When zoomed out less than 33% */\n@media screen and (min-width: 4320px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width2) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n.CodeMirror.jp-mod-readOnly .CodeMirror-cursor {\n  display: none;\n}\n\n.CodeMirror-gutters {\n  border-right: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-layout-color0);\n}\n\n.jp-CollaboratorCursor {\n  border-left: 5px solid transparent;\n  border-right: 5px solid transparent;\n  border-top: none;\n  border-bottom: 3px solid;\n  background-clip: content-box;\n  margin-left: -5px;\n  margin-right: -5px;\n}\n\n.CodeMirror-selectedtext.cm-searching {\n  background-color: var(--jp-search-selected-match-background-color) !important;\n  color: var(--jp-search-selected-match-color) !important;\n}\n\n.cm-searching {\n  background-color: var(\n    --jp-search-unselected-match-background-color\n  ) !important;\n  color: var(--jp-search-unselected-match-color) !important;\n}\n\n.CodeMirror-focused .CodeMirror-selected {\n  background-color: var(--jp-editor-selected-focused-background);\n}\n\n.CodeMirror-selected {\n  background-color: var(--jp-editor-selected-background);\n}\n\n.jp-CollaboratorCursor-hover {\n  position: absolute;\n  z-index: 1;\n  transform: translateX(-50%);\n  color: white;\n  border-radius: 3px;\n  padding-left: 4px;\n  padding-right: 4px;\n  padding-top: 1px;\n  padding-bottom: 1px;\n  text-align: center;\n  font-size: var(--jp-ui-font-size1);\n  white-space: nowrap;\n}\n\n.jp-CodeMirror-ruler {\n  border-left: 1px dashed var(--jp-border-color2);\n}\n\n/**\n * Here is our jupyter theme for CodeMirror syntax highlighting\n * This is used in our marked.js syntax highlighting and CodeMirror itself\n * The string \"jupyter\" is set in ../codemirror/widget.DEFAULT_CODEMIRROR_THEME\n * This came from the classic notebook, which came form highlight.js/GitHub\n */\n\n/**\n * CodeMirror themes are handling the background/color in this way. This works\n * fine for CodeMirror editors outside the notebook, but the notebook styles\n * these things differently.\n */\n.CodeMirror.cm-s-jupyter {\n  background: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* In the notebook, we want this styling to be handled by its container */\n.jp-CodeConsole .CodeMirror.cm-s-jupyter,\n.jp-Notebook .CodeMirror.cm-s-jupyter {\n  background: transparent;\n}\n\n.cm-s-jupyter .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n.cm-s-jupyter span.cm-keyword {\n  color: var(--jp-mirror-editor-keyword-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-atom {\n  color: var(--jp-mirror-editor-atom-color);\n}\n.cm-s-jupyter span.cm-number {\n  color: var(--jp-mirror-editor-number-color);\n}\n.cm-s-jupyter span.cm-def {\n  color: var(--jp-mirror-editor-def-color);\n}\n.cm-s-jupyter span.cm-variable {\n  color: var(--jp-mirror-editor-variable-color);\n}\n.cm-s-jupyter span.cm-variable-2 {\n  color: var(--jp-mirror-editor-variable-2-color);\n}\n.cm-s-jupyter span.cm-variable-3 {\n  color: var(--jp-mirror-editor-variable-3-color);\n}\n.cm-s-jupyter span.cm-punctuation {\n  color: var(--jp-mirror-editor-punctuation-color);\n}\n.cm-s-jupyter span.cm-property {\n  color: var(--jp-mirror-editor-property-color);\n}\n.cm-s-jupyter span.cm-operator {\n  color: var(--jp-mirror-editor-operator-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-comment {\n  color: var(--jp-mirror-editor-comment-color);\n  font-style: italic;\n}\n.cm-s-jupyter span.cm-string {\n  color: var(--jp-mirror-editor-string-color);\n}\n.cm-s-jupyter span.cm-string-2 {\n  color: var(--jp-mirror-editor-string-2-color);\n}\n.cm-s-jupyter span.cm-meta {\n  color: var(--jp-mirror-editor-meta-color);\n}\n.cm-s-jupyter span.cm-qualifier {\n  color: var(--jp-mirror-editor-qualifier-color);\n}\n.cm-s-jupyter span.cm-builtin {\n  color: var(--jp-mirror-editor-builtin-color);\n}\n.cm-s-jupyter span.cm-bracket {\n  color: var(--jp-mirror-editor-bracket-color);\n}\n.cm-s-jupyter span.cm-tag {\n  color: var(--jp-mirror-editor-tag-color);\n}\n.cm-s-jupyter span.cm-attribute {\n  color: var(--jp-mirror-editor-attribute-color);\n}\n.cm-s-jupyter span.cm-header {\n  color: var(--jp-mirror-editor-header-color);\n}\n.cm-s-jupyter span.cm-quote {\n  color: var(--jp-mirror-editor-quote-color);\n}\n.cm-s-jupyter span.cm-link {\n  color: var(--jp-mirror-editor-link-color);\n}\n.cm-s-jupyter span.cm-error {\n  color: var(--jp-mirror-editor-error-color);\n}\n.cm-s-jupyter span.cm-hr {\n  color: #999;\n}\n\n.cm-s-jupyter span.cm-tab {\n  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);\n  background-position: right;\n  background-repeat: no-repeat;\n}\n\n.cm-s-jupyter .CodeMirror-activeline-background,\n.cm-s-jupyter .CodeMirror-gutter {\n  background-color: var(--jp-layout-color2);\n}\n\n/* Styles for shared cursors (remote cursor locations and selected ranges) */\n.jp-CodeMirrorEditor .remote-caret {\n  position: relative;\n  border-left: 2px solid black;\n  margin-left: -1px;\n  margin-right: -1px;\n  box-sizing: border-box;\n}\n\n.jp-CodeMirrorEditor .remote-caret > div {\n  white-space: nowrap;\n  position: absolute;\n  top: -1.15em;\n  padding-bottom: 0.05em;\n  left: -2px;\n  font-size: 0.95em;\n  background-color: rgb(250, 129, 0);\n  font-family: var(--jp-ui-font-family);\n  font-weight: bold;\n  line-height: normal;\n  user-select: none;\n  color: white;\n  padding-left: 2px;\n  padding-right: 2px;\n  z-index: 3;\n  transition: opacity 0.3s ease-in-out;\n}\n\n.jp-CodeMirrorEditor .remote-caret.hide-name > div {\n  transition-delay: 0.7s;\n  opacity: 0;\n}\n\n.jp-CodeMirrorEditor .remote-caret:hover > div {\n  opacity: 1;\n  transition-delay: 0s;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| RenderedText\n|----------------------------------------------------------------------------*/\n\n:root {\n  /* This is the padding value to fill the gaps between lines containing spans with background color. */\n  --jp-private-code-span-padding: calc(\n    (var(--jp-code-line-height) - 1) * var(--jp-code-font-size) / 2\n  );\n}\n\n.jp-RenderedText {\n  text-align: left;\n  padding-left: var(--jp-code-padding);\n  line-height: var(--jp-code-line-height);\n  font-family: var(--jp-code-font-family);\n}\n\n.jp-RenderedText pre,\n.jp-RenderedJavaScript pre,\n.jp-RenderedHTMLCommon pre {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-code-font-size);\n  border: none;\n  margin: 0px;\n  padding: 0px;\n}\n\n.jp-RenderedText pre a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* console foregrounds and backgrounds */\n.jp-RenderedText pre .ansi-black-fg {\n  color: #3e424d;\n}\n.jp-RenderedText pre .ansi-red-fg {\n  color: #e75c58;\n}\n.jp-RenderedText pre .ansi-green-fg {\n  color: #00a250;\n}\n.jp-RenderedText pre .ansi-yellow-fg {\n  color: #ddb62b;\n}\n.jp-RenderedText pre .ansi-blue-fg {\n  color: #208ffb;\n}\n.jp-RenderedText pre .ansi-magenta-fg {\n  color: #d160c4;\n}\n.jp-RenderedText pre .ansi-cyan-fg {\n  color: #60c6c8;\n}\n.jp-RenderedText pre .ansi-white-fg {\n  color: #c5c1b4;\n}\n\n.jp-RenderedText pre .ansi-black-bg {\n  background-color: #3e424d;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-bg {\n  background-color: #e75c58;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-bg {\n  background-color: #00a250;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-bg {\n  background-color: #ddb62b;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-bg {\n  background-color: #208ffb;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-bg {\n  background-color: #d160c4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-bg {\n  background-color: #60c6c8;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-bg {\n  background-color: #c5c1b4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-black-intense-fg {\n  color: #282c36;\n}\n.jp-RenderedText pre .ansi-red-intense-fg {\n  color: #b22b31;\n}\n.jp-RenderedText pre .ansi-green-intense-fg {\n  color: #007427;\n}\n.jp-RenderedText pre .ansi-yellow-intense-fg {\n  color: #b27d12;\n}\n.jp-RenderedText pre .ansi-blue-intense-fg {\n  color: #0065ca;\n}\n.jp-RenderedText pre .ansi-magenta-intense-fg {\n  color: #a03196;\n}\n.jp-RenderedText pre .ansi-cyan-intense-fg {\n  color: #258f8f;\n}\n.jp-RenderedText pre .ansi-white-intense-fg {\n  color: #a1a6b2;\n}\n\n.jp-RenderedText pre .ansi-black-intense-bg {\n  background-color: #282c36;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-intense-bg {\n  background-color: #b22b31;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-intense-bg {\n  background-color: #007427;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-intense-bg {\n  background-color: #b27d12;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-intense-bg {\n  background-color: #0065ca;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-intense-bg {\n  background-color: #a03196;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-intense-bg {\n  background-color: #258f8f;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-intense-bg {\n  background-color: #a1a6b2;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-default-inverse-fg {\n  color: var(--jp-ui-inverse-font-color0);\n}\n.jp-RenderedText pre .ansi-default-inverse-bg {\n  background-color: var(--jp-inverse-layout-color0);\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-bold {\n  font-weight: bold;\n}\n.jp-RenderedText pre .ansi-underline {\n  text-decoration: underline;\n}\n\n.jp-RenderedText[data-mime-type='application/vnd.jupyter.stderr'] {\n  background: var(--jp-rendermime-error-background);\n  padding-top: var(--jp-code-padding);\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedLatex\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedLatex {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n}\n\n/* Left-justify outputs.*/\n.jp-OutputArea-output.jp-RenderedLatex {\n  padding: var(--jp-code-padding);\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedHTML\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedHTMLCommon {\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-content-font-family);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n  /* Give a bit more R padding on Markdown text to keep line lengths reasonable */\n  padding-right: 20px;\n}\n\n.jp-RenderedHTMLCommon em {\n  font-style: italic;\n}\n\n.jp-RenderedHTMLCommon strong {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon u {\n  text-decoration: underline;\n}\n\n.jp-RenderedHTMLCommon a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* Headings */\n\n.jp-RenderedHTMLCommon h1,\n.jp-RenderedHTMLCommon h2,\n.jp-RenderedHTMLCommon h3,\n.jp-RenderedHTMLCommon h4,\n.jp-RenderedHTMLCommon h5,\n.jp-RenderedHTMLCommon h6 {\n  line-height: var(--jp-content-heading-line-height);\n  font-weight: var(--jp-content-heading-font-weight);\n  font-style: normal;\n  margin: var(--jp-content-heading-margin-top) 0\n    var(--jp-content-heading-margin-bottom) 0;\n}\n\n.jp-RenderedHTMLCommon h1:first-child,\n.jp-RenderedHTMLCommon h2:first-child,\n.jp-RenderedHTMLCommon h3:first-child,\n.jp-RenderedHTMLCommon h4:first-child,\n.jp-RenderedHTMLCommon h5:first-child,\n.jp-RenderedHTMLCommon h6:first-child {\n  margin-top: calc(0.5 * var(--jp-content-heading-margin-top));\n}\n\n.jp-RenderedHTMLCommon h1:last-child,\n.jp-RenderedHTMLCommon h2:last-child,\n.jp-RenderedHTMLCommon h3:last-child,\n.jp-RenderedHTMLCommon h4:last-child,\n.jp-RenderedHTMLCommon h5:last-child,\n.jp-RenderedHTMLCommon h6:last-child {\n  margin-bottom: calc(0.5 * var(--jp-content-heading-margin-bottom));\n}\n\n.jp-RenderedHTMLCommon h1 {\n  font-size: var(--jp-content-font-size5);\n}\n\n.jp-RenderedHTMLCommon h2 {\n  font-size: var(--jp-content-font-size4);\n}\n\n.jp-RenderedHTMLCommon h3 {\n  font-size: var(--jp-content-font-size3);\n}\n\n.jp-RenderedHTMLCommon h4 {\n  font-size: var(--jp-content-font-size2);\n}\n\n.jp-RenderedHTMLCommon h5 {\n  font-size: var(--jp-content-font-size1);\n}\n\n.jp-RenderedHTMLCommon h6 {\n  font-size: var(--jp-content-font-size0);\n}\n\n/* Lists */\n\n.jp-RenderedHTMLCommon ul:not(.list-inline),\n.jp-RenderedHTMLCommon ol:not(.list-inline) {\n  padding-left: 2em;\n}\n\n.jp-RenderedHTMLCommon ul {\n  list-style: disc;\n}\n\n.jp-RenderedHTMLCommon ul ul {\n  list-style: square;\n}\n\n.jp-RenderedHTMLCommon ul ul ul {\n  list-style: circle;\n}\n\n.jp-RenderedHTMLCommon ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol ol {\n  list-style: upper-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol {\n  list-style: lower-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol {\n  list-style: lower-roman;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol,\n.jp-RenderedHTMLCommon ul {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon ul ul,\n.jp-RenderedHTMLCommon ul ol,\n.jp-RenderedHTMLCommon ol ul,\n.jp-RenderedHTMLCommon ol ol {\n  margin-bottom: 0em;\n}\n\n.jp-RenderedHTMLCommon hr {\n  color: var(--jp-border-color2);\n  background-color: var(--jp-border-color1);\n  margin-top: 1em;\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon > pre {\n  margin: 1.5em 2em;\n}\n\n.jp-RenderedHTMLCommon pre,\n.jp-RenderedHTMLCommon code {\n  border: 0;\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  line-height: var(--jp-code-line-height);\n  padding: 0;\n  white-space: pre-wrap;\n}\n\n.jp-RenderedHTMLCommon :not(pre) > code {\n  background-color: var(--jp-layout-color2);\n  padding: 1px 5px;\n}\n\n/* Tables */\n\n.jp-RenderedHTMLCommon table {\n  border-collapse: collapse;\n  border-spacing: 0;\n  border: none;\n  color: var(--jp-ui-font-color1);\n  font-size: 12px;\n  table-layout: fixed;\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.jp-RenderedHTMLCommon thead {\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  vertical-align: bottom;\n}\n\n.jp-RenderedHTMLCommon td,\n.jp-RenderedHTMLCommon th,\n.jp-RenderedHTMLCommon tr {\n  vertical-align: middle;\n  padding: 0.5em 0.5em;\n  line-height: normal;\n  white-space: normal;\n  max-width: none;\n  border: none;\n}\n\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon td,\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon th {\n  max-width: none;\n}\n\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon td,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon th,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon tr {\n  text-align: right;\n}\n\n.jp-RenderedHTMLCommon th {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(odd) {\n  background: var(--jp-layout-color0);\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(even) {\n  background: var(--jp-rendermime-table-row-background);\n}\n\n.jp-RenderedHTMLCommon tbody tr:hover {\n  background: var(--jp-rendermime-table-row-hover-background);\n}\n\n.jp-RenderedHTMLCommon table {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon p {\n  text-align: left;\n  margin: 0px;\n}\n\n.jp-RenderedHTMLCommon p {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon img {\n  -moz-force-broken-image-icon: 1;\n}\n\n/* Restrict to direct children as other images could be nested in other content. */\n.jp-RenderedHTMLCommon > img {\n  display: block;\n  margin-left: 0;\n  margin-right: 0;\n  margin-bottom: 1em;\n}\n\n/* Change color behind transparent images if they need it... */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-light-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-dark-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n/* ...or leave it untouched if they don't */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-dark-background {\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-light-background {\n}\n\n.jp-RenderedHTMLCommon img,\n.jp-RenderedImage img,\n.jp-RenderedHTMLCommon svg,\n.jp-RenderedSVG svg {\n  max-width: 100%;\n  height: auto;\n}\n\n.jp-RenderedHTMLCommon img.jp-mod-unconfined,\n.jp-RenderedImage img.jp-mod-unconfined,\n.jp-RenderedHTMLCommon svg.jp-mod-unconfined,\n.jp-RenderedSVG svg.jp-mod-unconfined {\n  max-width: none;\n}\n\n.jp-RenderedHTMLCommon .alert {\n  padding: var(--jp-notebook-padding);\n  border: var(--jp-border-width) solid transparent;\n  border-radius: var(--jp-border-radius);\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon .alert-info {\n  color: var(--jp-info-color0);\n  background-color: var(--jp-info-color3);\n  border-color: var(--jp-info-color2);\n}\n.jp-RenderedHTMLCommon .alert-info hr {\n  border-color: var(--jp-info-color3);\n}\n.jp-RenderedHTMLCommon .alert-info > p:last-child,\n.jp-RenderedHTMLCommon .alert-info > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-warning {\n  color: var(--jp-warn-color0);\n  background-color: var(--jp-warn-color3);\n  border-color: var(--jp-warn-color2);\n}\n.jp-RenderedHTMLCommon .alert-warning hr {\n  border-color: var(--jp-warn-color3);\n}\n.jp-RenderedHTMLCommon .alert-warning > p:last-child,\n.jp-RenderedHTMLCommon .alert-warning > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-success {\n  color: var(--jp-success-color0);\n  background-color: var(--jp-success-color3);\n  border-color: var(--jp-success-color2);\n}\n.jp-RenderedHTMLCommon .alert-success hr {\n  border-color: var(--jp-success-color3);\n}\n.jp-RenderedHTMLCommon .alert-success > p:last-child,\n.jp-RenderedHTMLCommon .alert-success > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-danger {\n  color: var(--jp-error-color0);\n  background-color: var(--jp-error-color3);\n  border-color: var(--jp-error-color2);\n}\n.jp-RenderedHTMLCommon .alert-danger hr {\n  border-color: var(--jp-error-color3);\n}\n.jp-RenderedHTMLCommon .alert-danger > p:last-child,\n.jp-RenderedHTMLCommon .alert-danger > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon blockquote {\n  margin: 1em 2em;\n  padding: 0 1em;\n  border-left: 5px solid var(--jp-border-color2);\n}\n\na.jp-InternalAnchorLink {\n  visibility: hidden;\n  margin-left: 8px;\n  color: var(--md-blue-800);\n}\n\nh1:hover .jp-InternalAnchorLink,\nh2:hover .jp-InternalAnchorLink,\nh3:hover .jp-InternalAnchorLink,\nh4:hover .jp-InternalAnchorLink,\nh5:hover .jp-InternalAnchorLink,\nh6:hover .jp-InternalAnchorLink {\n  visibility: visible;\n}\n\n.jp-RenderedHTMLCommon kbd {\n  background-color: var(--jp-rendermime-table-row-background);\n  border: 1px solid var(--jp-border-color0);\n  border-bottom-color: var(--jp-border-color2);\n  border-radius: 3px;\n  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n  display: inline-block;\n  font-size: 0.8em;\n  line-height: 1em;\n  padding: 0.2em 0.5em;\n}\n\n/* Most direct children of .jp-RenderedHTMLCommon have a margin-bottom of 1.0.\n * At the bottom of cells this is a bit too much as there is also spacing\n * between cells. Going all the way to 0 gets too tight between markdown and\n * code cells.\n */\n.jp-RenderedHTMLCommon > *:last-child {\n  margin-bottom: 0.5em;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MimeDocument {\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-filebrowser-button-height: 28px;\n  --jp-private-filebrowser-button-width: 48px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser {\n  display: flex;\n  flex-direction: column;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  border-bottom: none;\n  height: auto;\n  margin: var(--jp-toolbar-header-margin);\n  box-shadow: none;\n}\n\n.jp-BreadCrumbs {\n  flex: 0 0 auto;\n  margin: 8px 12px 8px 12px;\n}\n\n.jp-BreadCrumbs-item {\n  margin: 0px 2px;\n  padding: 0px 2px;\n  border-radius: var(--jp-border-radius);\n  cursor: pointer;\n}\n\n.jp-BreadCrumbs-item:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-BreadCrumbs-item:first-child {\n  margin-left: 0px;\n}\n\n.jp-BreadCrumbs-item.jp-mod-dropTarget {\n  background-color: var(--jp-brand-color2);\n  opacity: 0.7;\n}\n\n/*-----------------------------------------------------------------------------\n| Buttons\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  padding: 0px;\n  margin: 8px 12px 0px 12px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  justify-content: flex-start;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-Toolbar-item {\n  flex: 0 0 auto;\n  padding-left: 0px;\n  padding-right: 2px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-ToolbarButtonComponent {\n  width: 40px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent {\n  width: 72px;\n  background: var(--jp-brand-color1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent:focus-visible {\n  background-color: var(--jp-brand-color0);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent\n  .jp-icon3 {\n  fill: white;\n}\n\n/*-----------------------------------------------------------------------------\n| Other styles\n|----------------------------------------------------------------------------*/\n\n.jp-FileDialog.jp-mod-conflict input {\n  color: var(--jp-error-color1);\n}\n\n.jp-FileDialog .jp-new-name-title {\n  margin-top: 12px;\n}\n\n.jp-LastModified-hidden {\n  display: none;\n}\n\n.jp-FileBrowser-filterBox {\n  padding: 0px;\n  flex: 0 0 auto;\n  margin: 8px 12px 0px 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| DirListing\n|----------------------------------------------------------------------------*/\n\n.jp-DirListing {\n  flex: 1 1 auto;\n  display: flex;\n  flex-direction: column;\n  outline: 0;\n}\n\n.jp-DirListing:focus-visible {\n  border: 1px solid var(--jp-brand-color1);\n}\n\n.jp-DirListing-header {\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n  border-top: var(--jp-border-width) solid var(--jp-border-color2);\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  z-index: 2;\n}\n\n.jp-DirListing-headerItem {\n  padding: 4px 12px 2px 12px;\n  font-weight: 500;\n}\n\n.jp-DirListing-headerItem:hover {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-headerItem.jp-id-name {\n  flex: 1 0 84px;\n}\n\n.jp-DirListing-headerItem.jp-id-modified {\n  flex: 0 0 112px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n}\n\n.jp-id-narrow {\n  display: none;\n  flex: 0 0 5px;\n  padding: 4px 4px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n  color: var(--jp-border-color2);\n}\n\n.jp-DirListing-narrow .jp-id-narrow {\n  display: block;\n}\n\n.jp-DirListing-narrow .jp-id-modified,\n.jp-DirListing-narrow .jp-DirListing-itemModified {\n  display: none;\n}\n\n.jp-DirListing-headerItem.jp-mod-selected {\n  font-weight: 600;\n}\n\n/* increase specificity to override bundled default */\n.jp-DirListing-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-DirListing-content mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.jp-DirListing-content .jp-DirListing-item.jp-mod-selected mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n/* Style the directory listing content when a user drops a file to upload */\n.jp-DirListing.jp-mod-native-drop .jp-DirListing-content {\n  outline: 5px dashed rgba(128, 128, 128, 0.5);\n  outline-offset: -10px;\n  cursor: copy;\n}\n\n.jp-DirListing-item {\n  display: flex;\n  flex-direction: row;\n  padding: 4px 12px;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n.jp-DirListing-item[data-is-dot] {\n  opacity: 75%;\n}\n\n.jp-DirListing-item.jp-mod-selected {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.jp-DirListing-item.jp-mod-dropTarget {\n  background: var(--jp-brand-color3);\n}\n\n.jp-DirListing-item:hover:not(.jp-mod-selected) {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-itemIcon {\n  flex: 0 0 20px;\n  margin-right: 4px;\n}\n\n.jp-DirListing-itemText {\n  flex: 1 0 64px;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  user-select: none;\n}\n\n.jp-DirListing-itemModified {\n  flex: 0 0 125px;\n  text-align: right;\n}\n\n.jp-DirListing-editor {\n  flex: 1 0 64px;\n  outline: none;\n  border: none;\n}\n\n.jp-DirListing-item.jp-mod-running .jp-DirListing-itemIcon:before {\n  color: var(--jp-success-color1);\n  content: '\\25CF';\n  font-size: 8px;\n  position: absolute;\n  left: -8px;\n}\n\n.jp-DirListing-item.jp-mod-running.jp-mod-selected\n  .jp-DirListing-itemIcon:before {\n  color: var(--jp-ui-inverse-font-color1);\n}\n\n.jp-DirListing-item.lm-mod-drag-image,\n.jp-DirListing-item.jp-mod-selected.lm-mod-drag-image {\n  font-size: var(--jp-ui-font-size1);\n  padding-left: 4px;\n  margin-left: 4px;\n  width: 160px;\n  background-color: var(--jp-ui-inverse-font-color2);\n  box-shadow: var(--jp-elevation-z2);\n  border-radius: 0px;\n  color: var(--jp-ui-font-color1);\n  transform: translateX(-40%) translateY(-58%);\n}\n\n.jp-DirListing-deadSpace {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-Document {\n  min-width: 120px;\n  min-height: 120px;\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n}\n\n/*-----------------------------------------------------------------------------\n| Main OutputArea\n| OutputArea has a list of Outputs\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea {\n  overflow-y: auto;\n}\n\n.jp-OutputArea-child {\n  display: flex;\n  flex-direction: row;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child {\n  flex-direction: column;\n}\n\n.jp-OutputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-outprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n.jp-OutputArea-output {\n  height: auto;\n  overflow: auto;\n  user-select: text;\n  -moz-user-select: text;\n  -webkit-user-select: text;\n  -ms-user-select: text;\n}\n\n.jp-OutputArea-child .jp-OutputArea-output {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  margin-left: var(--jp-notebook-padding);\n}\n\n/**\n * Isolated output.\n */\n.jp-OutputArea-output.jp-mod-isolated {\n  width: 100%;\n  display: block;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n/* pre */\n\n.jp-OutputArea-output pre {\n  border: none;\n  margin: 0px;\n  padding: 0px;\n  overflow-x: auto;\n  overflow-y: auto;\n  word-break: break-all;\n  word-wrap: break-word;\n  white-space: pre-wrap;\n}\n\n/* tables */\n\n.jp-OutputArea-output.jp-RenderedHTMLCommon table {\n  margin-left: 0;\n  margin-right: 0;\n}\n\n/* description lists */\n\n.jp-OutputArea-output dl,\n.jp-OutputArea-output dt,\n.jp-OutputArea-output dd {\n  display: block;\n}\n\n.jp-OutputArea-output dl {\n  width: 100%;\n  overflow: hidden;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dt {\n  font-weight: bold;\n  float: left;\n  width: 20%;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dd {\n  float: left;\n  width: 80%;\n  padding: 0;\n  margin: 0;\n}\n\n/* Hide the gutter in case of\n *  - nested output areas (e.g. in the case of output widgets)\n *  - mirrored output areas\n */\n.jp-OutputArea .jp-OutputArea .jp-OutputArea-prompt {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| executeResult is added to any Output-result for the display of the object\n| returned by a cell\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  margin-left: 0px;\n  flex: 1 1 auto;\n}\n\n/* Text output with the Out[] prompt needs a top padding to match the\n * alignment of the Out[] prompt itself.\n */\n.jp-OutputArea-executeResult .jp-RenderedText.jp-OutputArea-output {\n  padding-top: var(--jp-code-padding);\n  border-top: var(--jp-border-width) solid transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| The Stdin output\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-stdin {\n  line-height: var(--jp-code-line-height);\n  padding-top: var(--jp-code-padding);\n  display: flex;\n}\n\n.jp-Stdin-prompt {\n  color: var(--jp-content-font-color0);\n  padding-right: var(--jp-code-padding);\n  vertical-align: baseline;\n  flex: 0 0 auto;\n}\n\n.jp-Stdin-input {\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  color: inherit;\n  background-color: inherit;\n  width: 42%;\n  min-width: 200px;\n  /* make sure input baseline aligns with prompt */\n  vertical-align: baseline;\n  /* padding + margin = 0.5em between prompt and cursor */\n  padding: 0em 0.25em;\n  margin: 0em 0.25em;\n  flex: 0 0 70%;\n}\n\n.jp-Stdin-input:focus {\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Output Area View\n|----------------------------------------------------------------------------*/\n\n.jp-LinkedOutputView .jp-OutputArea {\n  height: 100%;\n  display: block;\n}\n\n.jp-LinkedOutputView .jp-OutputArea-output:only-child {\n  height: 100%;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapser {\n  flex: 0 0 var(--jp-cell-collapser-width);\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n  border-radius: var(--jp-border-radius);\n  opacity: 1;\n}\n\n.jp-Collapser-child {\n  display: block;\n  width: 100%;\n  box-sizing: border-box;\n  /* height: 100% doesn't work because the height of its parent is computed from content */\n  position: absolute;\n  top: 0px;\n  bottom: 0px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Header/Footer\n|----------------------------------------------------------------------------*/\n\n/* Hidden by zero height by default */\n.jp-CellHeader,\n.jp-CellFooter {\n  height: 0px;\n  width: 100%;\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Input\n|----------------------------------------------------------------------------*/\n\n/* All input areas */\n.jp-InputArea {\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n}\n\nbody[data-format='mobile'] .jp-InputArea {\n  flex-direction: column;\n}\n\n.jp-InputArea-editor {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  /* This is the non-active, default styling */\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  border-radius: 0px;\n  background: var(--jp-cell-editor-background);\n}\n\nbody[data-format='mobile'] .jp-InputArea-editor {\n  margin-left: var(--jp-notebook-padding);\n}\n\n.jp-InputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-inprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  opacity: var(--jp-cell-prompt-opacity);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-InputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Placeholder {\n  display: flex;\n  flex-direction: row;\n  flex: 1 1 auto;\n}\n\n.jp-Placeholder-prompt {\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content {\n  flex: 1 1 auto;\n  border: none;\n  background: transparent;\n  height: 20px;\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon {\n  width: 32px;\n  height: 16px;\n  border: 1px solid transparent;\n  border-radius: var(--jp-border-radius);\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon:hover {\n  border: 1px solid var(--jp-border-color1);\n  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);\n  background-color: var(--jp-layout-color0);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-cell-scrolling-output-offset: 5px;\n}\n\n/*-----------------------------------------------------------------------------\n| Cell\n|----------------------------------------------------------------------------*/\n\n.jp-Cell {\n  padding: var(--jp-cell-padding);\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Common input/output\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-inputWrapper,\n.jp-Cell-outputWrapper {\n  display: flex;\n  flex-direction: row;\n  padding: 0px;\n  margin: 0px;\n  /* Added to reveal the box-shadow on the input and output collapsers. */\n  overflow: visible;\n}\n\n/* Only input/output areas inside cells */\n.jp-Cell-inputArea,\n.jp-Cell-outputArea {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Collapser\n|----------------------------------------------------------------------------*/\n\n/* Make the output collapser disappear when there is not output, but do so\n * in a manner that leaves it in the layout and preserves its width.\n */\n.jp-Cell.jp-mod-noOutputs .jp-Cell-outputCollapser {\n  border: none !important;\n  background: transparent !important;\n}\n\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputCollapser {\n  min-height: var(--jp-cell-collapser-min-height);\n}\n\n/*-----------------------------------------------------------------------------\n| Output\n|----------------------------------------------------------------------------*/\n\n/* Put a space between input and output when there IS output */\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputWrapper {\n  margin-top: 5px;\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-Cell-outputArea {\n  overflow-y: auto;\n  max-height: 200px;\n  box-shadow: inset 0 0 6px 2px rgba(0, 0, 0, 0.3);\n  margin-left: var(--jp-private-cell-scrolling-output-offset);\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  flex: 0 0\n    calc(\n      var(--jp-cell-prompt-width) -\n        var(--jp-private-cell-scrolling-output-offset)\n    );\n}\n\n/*-----------------------------------------------------------------------------\n| CodeCell\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| MarkdownCell\n|----------------------------------------------------------------------------*/\n\n.jp-MarkdownOutput {\n  flex: 1 1 auto;\n  margin-top: 0;\n  margin-bottom: 0;\n  padding-left: var(--jp-code-padding);\n}\n\n.jp-MarkdownOutput.jp-RenderedHTMLCommon {\n  overflow: auto;\n}\n\n.jp-showHiddenCellsButton {\n  margin-left: calc(var(--jp-cell-prompt-width) + 2 * var(--jp-code-padding));\n  margin-top: var(--jp-code-padding);\n  border: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-border-color3) !important;\n  color: var(--jp-content-font-color0) !important;\n}\n\n.jp-showHiddenCellsButton:hover {\n  background-color: var(--jp-border-color2) !important;\n}\n\n.jp-collapseHeadingButton {\n  display: none;\n}\n\n.jp-MarkdownCell:hover .jp-collapseHeadingButton {\n  display: flex;\n  min-height: var(--jp-cell-collapser-min-height);\n  position: absolute;\n  right: 0;\n  top: 0;\n  bottom: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n\n/*-----------------------------------------------------------------------------\n| Styles\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel-toolbar {\n  padding: 2px;\n}\n\n.jp-Toolbar-item.jp-Notebook-toolbarCellType .jp-select-wrapper.jp-mod-focused {\n  border: none;\n  box-shadow: none;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown select {\n  height: 24px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: 14px;\n  border-radius: 0;\n  display: block;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown span {\n  top: 5px !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-notebook-dragImage-width: 304px;\n  --jp-private-notebook-dragImage-height: 36px;\n  --jp-private-notebook-selected-color: var(--md-blue-400);\n  --jp-private-notebook-active-color: var(--md-green-400);\n}\n\n/*-----------------------------------------------------------------------------\n| Imports\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Notebook\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel {\n  display: block;\n  height: 100%;\n}\n\n.jp-NotebookPanel.jp-Document {\n  min-width: 240px;\n  min-height: 120px;\n}\n\n.jp-Notebook {\n  padding: var(--jp-notebook-padding);\n  outline: none;\n  overflow: auto;\n  background: var(--jp-layout-color0);\n}\n\n.jp-Notebook.jp-mod-scrollPastEnd::after {\n  display: block;\n  content: '';\n  min-height: var(--jp-notebook-scroll-padding);\n}\n\n.jp-MainAreaWidget-ContainStrict .jp-Notebook * {\n  contain: strict;\n}\n\n.jp-Notebook-render * {\n  contain: none !important;\n}\n\n.jp-Notebook .jp-Cell {\n  overflow: visible;\n}\n\n.jp-Notebook .jp-Cell .jp-InputPrompt {\n  cursor: move;\n  float: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook state related styling\n|\n| The notebook and cells each have states, here are the possibilities:\n|\n| - Notebook\n|   - Command\n|   - Edit\n| - Cell\n|   - None\n|   - Active (only one can be active)\n|   - Selected (the cells actions are applied to)\n|   - Multiselected (when multiple selected, the cursor)\n|   - No outputs\n|----------------------------------------------------------------------------*/\n\n/* Command or edit modes */\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-InputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-OutputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n/* cell is active */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser {\n  background: var(--jp-brand-color1);\n}\n\n/* cell is dirty */\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt {\n  color: var(--jp-warn-color1);\n}\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt:before {\n  color: var(--jp-warn-color1);\n  content: '•';\n}\n\n.jp-Notebook .jp-Cell.jp-mod-active.jp-mod-dirty .jp-Collapser {\n  background: var(--jp-warn-color1);\n}\n\n/* collapser is hovered */\n.jp-Notebook .jp-Cell .jp-Collapser:hover {\n  box-shadow: var(--jp-elevation-z2);\n  background: var(--jp-brand-color1);\n  opacity: var(--jp-cell-collapser-not-active-hover-opacity);\n}\n\n/* cell is active and collapser is hovered */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser:hover {\n  background: var(--jp-brand-color0);\n  opacity: 1;\n}\n\n/* Command mode */\n\n.jp-Notebook.jp-mod-commandMode .jp-Cell.jp-mod-selected {\n  background: var(--jp-notebook-multiselected-color);\n}\n\n.jp-Notebook.jp-mod-commandMode\n  .jp-Cell.jp-mod-active.jp-mod-selected:not(.jp-mod-multiSelected) {\n  background: transparent;\n}\n\n/* Edit mode */\n\n.jp-Notebook.jp-mod-editMode .jp-Cell.jp-mod-active .jp-InputArea-editor {\n  border: var(--jp-border-width) solid var(--jp-cell-editor-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-cell-editor-active-background);\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook drag and drop\n|----------------------------------------------------------------------------*/\n\n.jp-Notebook-cell.jp-mod-dropSource {\n  opacity: 0.5;\n}\n\n.jp-Notebook-cell.jp-mod-dropTarget,\n.jp-Notebook.jp-mod-commandMode\n  .jp-Notebook-cell.jp-mod-active.jp-mod-selected.jp-mod-dropTarget {\n  border-top-color: var(--jp-private-notebook-selected-color);\n  border-top-style: solid;\n  border-top-width: 2px;\n}\n\n.jp-dragImage {\n  display: block;\n  flex-direction: row;\n  width: var(--jp-private-notebook-dragImage-width);\n  height: var(--jp-private-notebook-dragImage-height);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background);\n  overflow: visible;\n}\n\n.jp-dragImage-singlePrompt {\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n.jp-dragImage .jp-dragImage-content {\n  flex: 1 1 auto;\n  z-index: 2;\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  line-height: var(--jp-code-line-height);\n  padding: var(--jp-code-padding);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background-color);\n  color: var(--jp-content-font-color3);\n  text-align: left;\n  margin: 4px 4px 4px 0px;\n}\n\n.jp-dragImage .jp-dragImage-prompt {\n  flex: 0 0 auto;\n  min-width: 36px;\n  color: var(--jp-cell-inprompt-font-color);\n  padding: var(--jp-code-padding);\n  padding-left: 12px;\n  font-family: var(--jp-cell-prompt-font-family);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: 1.9;\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n}\n\n.jp-dragImage-multipleBack {\n  z-index: -1;\n  position: absolute;\n  height: 32px;\n  width: 300px;\n  top: 8px;\n  left: 8px;\n  background: var(--jp-layout-color2);\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n/*-----------------------------------------------------------------------------\n| Cell toolbar\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookTools {\n  display: block;\n  min-width: var(--jp-sidebar-min-width);\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n    * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  overflow: auto;\n}\n\n.jp-NotebookTools-tool {\n  padding: 0px 12px 0 12px;\n}\n\n.jp-ActiveCellTool {\n  padding: 12px;\n  background-color: var(--jp-layout-color1);\n  border-top: none !important;\n}\n\n.jp-ActiveCellTool .jp-InputArea-prompt {\n  flex: 0 0 auto;\n  padding-left: 0px;\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor {\n  flex: 1 1 auto;\n  background: var(--jp-cell-editor-background);\n  border-color: var(--jp-cell-editor-border-color);\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor .CodeMirror {\n  background: transparent;\n}\n\n.jp-MetadataEditorTool {\n  flex-direction: column;\n  padding: 12px 0px 12px 0px;\n}\n\n.jp-RankedPanel > :not(:first-child) {\n  margin-top: 12px;\n}\n\n.jp-KeySelector select.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n}\n\n.jp-KeySelector label,\n.jp-MetadataEditorTool label {\n  line-height: 1.4;\n}\n\n.jp-NotebookTools .jp-select-wrapper {\n  margin-top: 4px;\n  margin-bottom: 0px;\n}\n\n.jp-NotebookTools .jp-Collapse {\n  margin-top: 16px;\n}\n\n/*-----------------------------------------------------------------------------\n| Presentation Mode (.jp-mod-presentationMode)\n|----------------------------------------------------------------------------*/\n\n.jp-mod-presentationMode .jp-Notebook {\n  --jp-content-font-size1: var(--jp-content-presentation-font-size1);\n  --jp-code-font-size: var(--jp-code-presentation-font-size);\n}\n\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-InputPrompt,\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-OutputPrompt {\n  flex: 0 0 110px;\n}\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-Placeholder {\n  padding-left: 55px;\n}\n\n.jp-Cell-Placeholder-wrapper {\n  background: #fff;\n  border: 1px solid;\n  border-color: #e5e6e9 #dfe0e4 #d0d1d5;\n  border-radius: 4px;\n  -webkit-border-radius: 4px;\n  margin: 10px 15px;\n}\n\n.jp-Cell-Placeholder-wrapper-inner {\n  padding: 15px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body {\n  background-repeat: repeat;\n  background-size: 50% auto;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  background: #f6f7f8;\n  background-image: -webkit-linear-gradient(\n    left,\n    #f6f7f8 0%,\n    #edeef1 20%,\n    #f6f7f8 40%,\n    #f6f7f8 100%\n  );\n  background-repeat: no-repeat;\n  background-size: 800px 104px;\n  height: 104px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  position: absolute;\n  right: 15px;\n  left: 15px;\n  top: 15px;\n}\n\ndiv.jp-Cell-Placeholder-h1 {\n  top: 20px;\n  height: 20px;\n  left: 15px;\n  width: 150px;\n}\n\ndiv.jp-Cell-Placeholder-h2 {\n  left: 15px;\n  top: 50px;\n  height: 10px;\n  width: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-1,\ndiv.jp-Cell-Placeholder-content-2,\ndiv.jp-Cell-Placeholder-content-3 {\n  left: 15px;\n  right: 15px;\n  height: 10px;\n}\n\ndiv.jp-Cell-Placeholder-content-1 {\n  top: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-2 {\n  top: 120px;\n}\n\ndiv.jp-Cell-Placeholder-content-3 {\n  top: 140px;\n}\n\n</style>\n\n    <style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\nThe following CSS variables define the main, public API for styling JupyterLab.\nThese variables should be used by all plugins wherever possible. In other\nwords, plugins should not define custom colors, sizes, etc unless absolutely\nnecessary. This enables users to change the visual theme of JupyterLab\nby changing these variables.\n\nMany variables appear in an ordered sequence (0,1,2,3). These sequences\nare designed to work well together, so for example, `--jp-border-color1` should\nbe used with `--jp-layout-color1`. The numbers have the following meanings:\n\n* 0: super-primary, reserved for special emphasis\n* 1: primary, most important under normal situations\n* 2: secondary, next most important under normal situations\n* 3: tertiary, next most important under normal situations\n\nThroughout JupyterLab, we are mostly following principles from Google's\nMaterial Design when selecting colors. We are not, however, following\nall of MD as it is not optimized for dense, information rich UIs.\n*/\n\n:root {\n  /* Elevation\n   *\n   * We style box-shadows using Material Design's idea of elevation. These particular numbers are taken from here:\n   *\n   * https://github.com/material-components/material-components-web\n   * https://material-components-web.appspot.com/elevation.html\n   */\n\n  --jp-shadow-base-lightness: 0;\n  --jp-shadow-umbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.2\n  );\n  --jp-shadow-penumbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.14\n  );\n  --jp-shadow-ambient-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.12\n  );\n  --jp-elevation-z0: none;\n  --jp-elevation-z1: 0px 2px 1px -1px var(--jp-shadow-umbra-color),\n    0px 1px 1px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 3px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z2: 0px 3px 1px -2px var(--jp-shadow-umbra-color),\n    0px 2px 2px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 5px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z4: 0px 2px 4px -1px var(--jp-shadow-umbra-color),\n    0px 4px 5px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 10px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z6: 0px 3px 5px -1px var(--jp-shadow-umbra-color),\n    0px 6px 10px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 18px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z8: 0px 5px 5px -3px var(--jp-shadow-umbra-color),\n    0px 8px 10px 1px var(--jp-shadow-penumbra-color),\n    0px 3px 14px 2px var(--jp-shadow-ambient-color);\n  --jp-elevation-z12: 0px 7px 8px -4px var(--jp-shadow-umbra-color),\n    0px 12px 17px 2px var(--jp-shadow-penumbra-color),\n    0px 5px 22px 4px var(--jp-shadow-ambient-color);\n  --jp-elevation-z16: 0px 8px 10px -5px var(--jp-shadow-umbra-color),\n    0px 16px 24px 2px var(--jp-shadow-penumbra-color),\n    0px 6px 30px 5px var(--jp-shadow-ambient-color);\n  --jp-elevation-z20: 0px 10px 13px -6px var(--jp-shadow-umbra-color),\n    0px 20px 31px 3px var(--jp-shadow-penumbra-color),\n    0px 8px 38px 7px var(--jp-shadow-ambient-color);\n  --jp-elevation-z24: 0px 11px 15px -7px var(--jp-shadow-umbra-color),\n    0px 24px 38px 3px var(--jp-shadow-penumbra-color),\n    0px 9px 46px 8px var(--jp-shadow-ambient-color);\n\n  /* Borders\n   *\n   * The following variables, specify the visual styling of borders in JupyterLab.\n   */\n\n  --jp-border-width: 1px;\n  --jp-border-color0: var(--md-grey-400);\n  --jp-border-color1: var(--md-grey-400);\n  --jp-border-color2: var(--md-grey-300);\n  --jp-border-color3: var(--md-grey-200);\n  --jp-border-radius: 2px;\n\n  /* UI Fonts\n   *\n   * The UI font CSS variables are used for the typography all of the JupyterLab\n   * user interface elements that are not directly user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-ui-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-ui-font-scale-factor: 1.2;\n  --jp-ui-font-size0: 0.83333em;\n  --jp-ui-font-size1: 13px; /* Base font size */\n  --jp-ui-font-size2: 1.2em;\n  --jp-ui-font-size3: 1.44em;\n\n  --jp-ui-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica,\n    Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';\n\n  /*\n   * Use these font colors against the corresponding main layout colors.\n   * In a light theme, these go from dark to light.\n   */\n\n  /* Defaults use Material Design specification */\n  --jp-ui-font-color0: rgba(0, 0, 0, 1);\n  --jp-ui-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-ui-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-ui-font-color3: rgba(0, 0, 0, 0.38);\n\n  /*\n   * Use these against the brand/accent/warn/error colors.\n   * These will typically go from light to darker, in both a dark and light theme.\n   */\n\n  --jp-ui-inverse-font-color0: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color1: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color2: rgba(255, 255, 255, 0.7);\n  --jp-ui-inverse-font-color3: rgba(255, 255, 255, 0.5);\n\n  /* Content Fonts\n   *\n   * Content font variables are used for typography of user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-content-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-content-line-height: 1.6;\n  --jp-content-font-scale-factor: 1.2;\n  --jp-content-font-size0: 0.83333em;\n  --jp-content-font-size1: 14px; /* Base font size */\n  --jp-content-font-size2: 1.2em;\n  --jp-content-font-size3: 1.44em;\n  --jp-content-font-size4: 1.728em;\n  --jp-content-font-size5: 2.0736em;\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-content-presentation-font-size1: 17px;\n\n  --jp-content-heading-line-height: 1;\n  --jp-content-heading-margin-top: 1.2em;\n  --jp-content-heading-margin-bottom: 0.8em;\n  --jp-content-heading-font-weight: 500;\n\n  /* Defaults use Material Design specification */\n  --jp-content-font-color0: rgba(0, 0, 0, 1);\n  --jp-content-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-content-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-content-font-color3: rgba(0, 0, 0, 0.38);\n\n  --jp-content-link-color: var(--md-blue-700);\n\n  --jp-content-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',\n    Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',\n    'Segoe UI Symbol';\n\n  /*\n   * Code Fonts\n   *\n   * Code font variables are used for typography of code and other monospaces content.\n   */\n\n  --jp-code-font-size: 13px;\n  --jp-code-line-height: 1.3077; /* 17px for 13px base */\n  --jp-code-padding: 5px; /* 5px for 13px base, codemirror highlighting needs integer px value */\n  --jp-code-font-family-default: Menlo, Consolas, 'DejaVu Sans Mono', monospace;\n  --jp-code-font-family: var(--jp-code-font-family-default);\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-code-presentation-font-size: 16px;\n\n  /* may need to tweak cursor width if you change font size */\n  --jp-code-cursor-width0: 1.4px;\n  --jp-code-cursor-width1: 2px;\n  --jp-code-cursor-width2: 4px;\n\n  /* Layout\n   *\n   * The following are the main layout colors use in JupyterLab. In a light\n   * theme these would go from light to dark.\n   */\n\n  --jp-layout-color0: white;\n  --jp-layout-color1: white;\n  --jp-layout-color2: var(--md-grey-200);\n  --jp-layout-color3: var(--md-grey-400);\n  --jp-layout-color4: var(--md-grey-600);\n\n  /* Inverse Layout\n   *\n   * The following are the inverse layout colors use in JupyterLab. In a light\n   * theme these would go from dark to light.\n   */\n\n  --jp-inverse-layout-color0: #111111;\n  --jp-inverse-layout-color1: var(--md-grey-900);\n  --jp-inverse-layout-color2: var(--md-grey-800);\n  --jp-inverse-layout-color3: var(--md-grey-700);\n  --jp-inverse-layout-color4: var(--md-grey-600);\n\n  /* Brand/accent */\n\n  --jp-brand-color0: var(--md-blue-900);\n  --jp-brand-color1: var(--md-blue-700);\n  --jp-brand-color2: var(--md-blue-300);\n  --jp-brand-color3: var(--md-blue-100);\n  --jp-brand-color4: var(--md-blue-50);\n\n  --jp-accent-color0: var(--md-green-900);\n  --jp-accent-color1: var(--md-green-700);\n  --jp-accent-color2: var(--md-green-300);\n  --jp-accent-color3: var(--md-green-100);\n\n  /* State colors (warn, error, success, info) */\n\n  --jp-warn-color0: var(--md-orange-900);\n  --jp-warn-color1: var(--md-orange-700);\n  --jp-warn-color2: var(--md-orange-300);\n  --jp-warn-color3: var(--md-orange-100);\n\n  --jp-error-color0: var(--md-red-900);\n  --jp-error-color1: var(--md-red-700);\n  --jp-error-color2: var(--md-red-300);\n  --jp-error-color3: var(--md-red-100);\n\n  --jp-success-color0: var(--md-green-900);\n  --jp-success-color1: var(--md-green-700);\n  --jp-success-color2: var(--md-green-300);\n  --jp-success-color3: var(--md-green-100);\n\n  --jp-info-color0: var(--md-cyan-900);\n  --jp-info-color1: var(--md-cyan-700);\n  --jp-info-color2: var(--md-cyan-300);\n  --jp-info-color3: var(--md-cyan-100);\n\n  /* Cell specific styles */\n\n  --jp-cell-padding: 5px;\n\n  --jp-cell-collapser-width: 8px;\n  --jp-cell-collapser-min-height: 20px;\n  --jp-cell-collapser-not-active-hover-opacity: 0.6;\n\n  --jp-cell-editor-background: var(--md-grey-100);\n  --jp-cell-editor-border-color: var(--md-grey-300);\n  --jp-cell-editor-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-cell-editor-active-background: var(--jp-layout-color0);\n  --jp-cell-editor-active-border-color: var(--jp-brand-color1);\n\n  --jp-cell-prompt-width: 64px;\n  --jp-cell-prompt-font-family: var(--jp-code-font-family-default);\n  --jp-cell-prompt-letter-spacing: 0px;\n  --jp-cell-prompt-opacity: 1;\n  --jp-cell-prompt-not-active-opacity: 0.5;\n  --jp-cell-prompt-not-active-font-color: var(--md-grey-700);\n  /* A custom blend of MD grey and blue 600\n   * See https://meyerweb.com/eric/tools/color-blend/#546E7A:1E88E5:5:hex */\n  --jp-cell-inprompt-font-color: #307fc1;\n  /* A custom blend of MD grey and orange 600\n   * https://meyerweb.com/eric/tools/color-blend/#546E7A:F4511E:5:hex */\n  --jp-cell-outprompt-font-color: #bf5b3d;\n\n  /* Notebook specific styles */\n\n  --jp-notebook-padding: 10px;\n  --jp-notebook-select-background: var(--jp-layout-color1);\n  --jp-notebook-multiselected-color: var(--md-blue-50);\n\n  /* The scroll padding is calculated to fill enough space at the bottom of the\n  notebook to show one single-line cell (with appropriate padding) at the top\n  when the notebook is scrolled all the way to the bottom. We also subtract one\n  pixel so that no scrollbar appears if we have just one single-line cell in the\n  notebook. This padding is to enable a 'scroll past end' feature in a notebook.\n  */\n  --jp-notebook-scroll-padding: calc(\n    100% - var(--jp-code-font-size) * var(--jp-code-line-height) -\n      var(--jp-code-padding) - var(--jp-cell-padding) - 1px\n  );\n\n  /* Rendermime styles */\n\n  --jp-rendermime-error-background: #fdd;\n  --jp-rendermime-table-row-background: var(--md-grey-100);\n  --jp-rendermime-table-row-hover-background: var(--md-light-blue-50);\n\n  /* Dialog specific styles */\n\n  --jp-dialog-background: rgba(0, 0, 0, 0.25);\n\n  /* Console specific styles */\n\n  --jp-console-padding: 10px;\n\n  /* Toolbar specific styles */\n\n  --jp-toolbar-border-color: var(--jp-border-color1);\n  --jp-toolbar-micro-height: 8px;\n  --jp-toolbar-background: var(--jp-layout-color1);\n  --jp-toolbar-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.24);\n  --jp-toolbar-header-margin: 4px 4px 0px 4px;\n  --jp-toolbar-active-background: var(--md-grey-300);\n\n  /* Statusbar specific styles */\n\n  --jp-statusbar-height: 24px;\n\n  /* Input field styles */\n\n  --jp-input-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-input-active-background: var(--jp-layout-color1);\n  --jp-input-hover-background: var(--jp-layout-color1);\n  --jp-input-background: var(--md-grey-100);\n  --jp-input-border-color: var(--jp-border-color1);\n  --jp-input-active-border-color: var(--jp-brand-color1);\n  --jp-input-active-box-shadow-color: rgba(19, 124, 189, 0.3);\n\n  /* General editor styles */\n\n  --jp-editor-selected-background: #d9d9d9;\n  --jp-editor-selected-focused-background: #d7d4f0;\n  --jp-editor-cursor-color: var(--jp-ui-font-color0);\n\n  /* Code mirror specific styles */\n\n  --jp-mirror-editor-keyword-color: #008000;\n  --jp-mirror-editor-atom-color: #88f;\n  --jp-mirror-editor-number-color: #080;\n  --jp-mirror-editor-def-color: #00f;\n  --jp-mirror-editor-variable-color: var(--md-grey-900);\n  --jp-mirror-editor-variable-2-color: #05a;\n  --jp-mirror-editor-variable-3-color: #085;\n  --jp-mirror-editor-punctuation-color: #05a;\n  --jp-mirror-editor-property-color: #05a;\n  --jp-mirror-editor-operator-color: #aa22ff;\n  --jp-mirror-editor-comment-color: #408080;\n  --jp-mirror-editor-string-color: #ba2121;\n  --jp-mirror-editor-string-2-color: #708;\n  --jp-mirror-editor-meta-color: #aa22ff;\n  --jp-mirror-editor-qualifier-color: #555;\n  --jp-mirror-editor-builtin-color: #008000;\n  --jp-mirror-editor-bracket-color: #997;\n  --jp-mirror-editor-tag-color: #170;\n  --jp-mirror-editor-attribute-color: #00c;\n  --jp-mirror-editor-header-color: blue;\n  --jp-mirror-editor-quote-color: #090;\n  --jp-mirror-editor-link-color: #00c;\n  --jp-mirror-editor-error-color: #f00;\n  --jp-mirror-editor-hr-color: #999;\n\n  /* Vega extension styles */\n\n  --jp-vega-background: white;\n\n  /* Sidebar-related styles */\n\n  --jp-sidebar-min-width: 250px;\n\n  /* Search-related styles */\n\n  --jp-search-toggle-off-opacity: 0.5;\n  --jp-search-toggle-hover-opacity: 0.8;\n  --jp-search-toggle-on-opacity: 1;\n  --jp-search-selected-match-background-color: rgb(245, 200, 0);\n  --jp-search-selected-match-color: black;\n  --jp-search-unselected-match-background-color: var(\n    --jp-inverse-layout-color0\n  );\n  --jp-search-unselected-match-color: var(--jp-ui-inverse-font-color0);\n\n  /* Icon colors that work well with light or dark backgrounds */\n  --jp-icon-contrast-color0: var(--md-purple-600);\n  --jp-icon-contrast-color1: var(--md-green-600);\n  --jp-icon-contrast-color2: var(--md-pink-600);\n  --jp-icon-contrast-color3: var(--md-blue-600);\n}\n</style>\n\n<style type=\"text/css\">\n/* Force rendering true colors when outputing to pdf */\n* {\n  -webkit-print-color-adjust: exact;\n}\n\n/* Misc */\na.anchor-link {\n  display: none;\n}\n\n.highlight  {\n  margin: 0.4em;\n}\n\n/* Input area styling */\n.jp-InputArea {\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  overflow: hidden;\n}\n\n.CodeMirror pre {\n  margin: 0;\n  padding: 0;\n}\n\n/* Using table instead of flexbox so that we can use break-inside property */\n/* CSS rules under this comment should not be required anymore after we move to the JupyterLab 4.0 CSS */\n\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  min-width: calc(\n    var(--jp-cell-prompt-width) - var(--jp-private-cell-scrolling-output-offset)\n  );\n}\n\n.jp-OutputArea-child {\n  display: table;\n  width: 100%;\n}\n\n.jp-OutputPrompt {\n  display: table-cell;\n  vertical-align: top;\n  min-width: var(--jp-cell-prompt-width);\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  display: table-row;\n}\n\n.jp-OutputArea-output {\n  display: table-cell;\n  width: 100%;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  display: table-row;\n}\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  width: 100%;\n}\n\n/* Hiding the collapser by default */\n.jp-Collapser {\n  display: none;\n}\n\n@media print {\n  .jp-Cell-inputWrapper,\n  .jp-Cell-outputWrapper {\n    display: block;\n  }\n\n  .jp-OutputArea-child {\n    break-inside: avoid-page;\n  }\n}\n</style>\n\n<!-- Load mathjax -->\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/latest.js?config=TeX-AMS_CHTML-full,Safe\"> </script>\n    <!-- MathJax configuration -->\n    <script type=\"text/x-mathjax-config\">\n    init_mathjax = function() {\n        if (window.MathJax) {\n        // MathJax loaded\n            MathJax.Hub.Config({\n                TeX: {\n                    equationNumbers: {\n                    autoNumber: \"AMS\",\n                    useLabelIds: true\n                    }\n                },\n                tex2jax: {\n                    inlineMath: [ ['$','$'], [\"\\\\(\",\"\\\\)\"] ],\n                    displayMath: [ ['$$','$$'], [\"\\\\[\",\"\\\\]\"] ],\n                    processEscapes: true,\n                    processEnvironments: true\n                },\n                displayAlign: 'center',\n                CommonHTML: {\n                    linebreaks: {\n                    automatic: true\n                    }\n                }\n            });\n\n            MathJax.Hub.Queue([\"Typeset\", MathJax.Hub]);\n        }\n    }\n    init_mathjax();\n    </script>\n    <!-- End of mathjax configuration --></head>\n<body class=\"jp-Notebook\" data-jp-theme-light=\"true\" data-jp-theme-name=\"JupyterLab Light\">\n<div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[1]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">ImportQualifiedPost</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">FlexibleContexts</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">BlockArguments</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">TupleSections</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">FlexibleContexts</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">OverloadedStrings</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">LambdaCase</span><span class=\"w\"></span>\n\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Class</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Enumerator</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Weighted</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Sampler.Strict</span><span class=\"w\"></span>\n\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.List</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Ord</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Arrow</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">first</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Text</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">pack</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Text</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Numeric.Log</span><span class=\"w\"></span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Arrow</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">second</span><span class=\"p\">)</span><span class=\"w\"></span>\n\n<span class=\"kt\">:</span><span class=\"n\">l</span><span class=\"w\"> </span><span class=\"o\">../</span><span class=\"n\">plotting</span><span class=\"o\">.</span><span class=\"n\">hs</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Sampling\">Sampling<a class=\"anchor-link\" href=\"#Sampling\">&#182;</a></h1><p>Before discussing inference, we should understand how to sample from models. This notebook explains how to do that.</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h2 id=\"Discrete-distribution\">Discrete distribution<a class=\"anchor-link\" href=\"#Discrete-distribution\">&#182;</a></h2><p>We'll start with a very simple model, namely:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[2]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"kt\">Bool</span><span class=\"w\"></span>\n<span class=\"nf\">model</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">bernoulli</span><span class=\"w\"> </span><span class=\"mf\">0.7</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>To take a sample, do:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[3]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">sampler</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>False</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>Or with a fixed seed:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[4]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>True</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>To take multiple samples, you could rerun <code>sampler</code> many times, but it's somewhat more in the probabilistic programming spirit to instead define a distribution over multiple draws from <code>model</code> and then just sample once, as follows:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[5]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">multipleDraws</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Bool</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">multipleDraws</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">10</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"></span>\n\n<span class=\"nf\">draws</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampler</span><span class=\"w\"> </span><span class=\"n\">multipleDraws</span><span class=\"w\"></span>\n\n<span class=\"nf\">draws</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[False,True,True,True,True,True,False,False,True,True]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>We convert a list of samples to an empirical distribution, where <code>toEmpirical</code> function returns list of distribution values with share of their occurence in the :</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[6]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">emp</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">toEmpirical</span><span class=\"w\"> </span><span class=\"n\">draws</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"p\">[(</span><span class=\"kt\">Bool</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)]</span><span class=\"w\"></span>\n\n<span class=\"nf\">emp</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[(True,0.7),(False,0.3)]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[7]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">first</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">show</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">emp</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>In fact, we could lean even further into the spirit of probabilistic programming, and transform <code>model</code> into a distribution over plots, and sample from that:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[8]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">distributionOverPlots</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"kt\">VegaLiteLab</span><span class=\"w\"> </span><span class=\"c1\">-- the type of plots</span><span class=\"w\"></span>\n<span class=\"nf\">distributionOverPlots</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">plot</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">first</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">show</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">toEmpirical</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">10</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"></span>\n\n<span class=\"nf\">sampler</span><span class=\"w\"> </span><span class=\"n\">distributionOverPlots</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[9]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">sampler</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">toEmpirical</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">10</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"></span>\n<span class=\"kt\">:</span><span class=\"n\">t</span><span class=\"w\"> </span><span class=\"n\">toEmpirical</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">10</span><span class=\"w\"> </span><span class=\"n\">model</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[(True,0.7),(False,0.3)]</pre>\n</div>\n\n</div>\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n<div class=\"jp-RenderedHTMLCommon jp-RenderedHTML jp-OutputArea-output \" data-mime-type=\"text/html\">\n<style>/* Styles used for the Hoogle display in the pager */\n.hoogle-doc {\ndisplay: block;\npadding-bottom: 1.3em;\npadding-left: 0.4em;\n}\n.hoogle-code {\ndisplay: block;\nfont-family: monospace;\nwhite-space: pre;\n}\n.hoogle-text {\ndisplay: block;\n}\n.hoogle-name {\ncolor: green;\nfont-weight: bold;\n}\n.hoogle-head {\nfont-weight: bold;\n}\n.hoogle-sub {\ndisplay: block;\nmargin-left: 0.4em;\n}\n.hoogle-package {\nfont-weight: bold;\nfont-style: italic;\n}\n.hoogle-module {\nfont-weight: bold;\n}\n.hoogle-class {\nfont-weight: bold;\n}\n.get-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\ndisplay: block;\nwhite-space: pre-wrap;\n}\n.show-type {\ncolor: green;\nfont-weight: bold;\nfont-family: monospace;\nmargin-left: 1em;\n}\n.mono {\nfont-family: monospace;\ndisplay: block;\n}\n.err-msg {\ncolor: red;\nfont-style: italic;\nfont-family: monospace;\nwhite-space: pre;\ndisplay: block;\n}\n#unshowable {\ncolor: red;\nfont-weight: bold;\n}\n.err-msg.in.collapse {\npadding-top: 0.7em;\n}\n.highlight-code {\nwhite-space: pre;\nfont-family: monospace;\n}\n.suggestion-warning { \nfont-weight: bold;\ncolor: rgb(200, 130, 0);\n}\n.suggestion-error { \nfont-weight: bold;\ncolor: red;\n}\n.suggestion-name {\nfont-weight: bold;\n}\n</style><span class='get-type'>toEmpirical <$> replicateM 10 model :: forall {f :: * -> *} {b}. (Fractional b, Ord b, MonadDistribution f) => f [(Bool, b)]</span>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h2 id=\"Continuous-distributions\">Continuous distributions<a class=\"anchor-link\" href=\"#Continuous-distributions\">&#182;</a></h2><p>Consider normal distribution:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[10]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">model2</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"w\"></span>\n<span class=\"nf\">model2</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>Sampling is no different to before:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[11]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">sampler</span><span class=\"w\"> </span><span class=\"n\">model2</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>-4.521959900261888e-2</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>And as before, to obtain multiple draws:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[12]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">multipleDraws2</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">Double</span><span class=\"p\">]</span><span class=\"w\"></span>\n<span class=\"nf\">multipleDraws2</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">10</span><span class=\"w\"> </span><span class=\"n\">model2</span><span class=\"w\"></span>\n\n<span class=\"nf\">draws2</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampler</span><span class=\"w\"> </span><span class=\"n\">multipleDraws2</span><span class=\"w\"></span>\n\n<span class=\"nf\">draws2</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[-0.6216690402229845,-0.47608570111519477,0.4670018245275328,-0.731326261945339,1.8293339635456327,-0.31691850879028954,-0.1522034252473077,-0.4871801689979811,0.4312750347264313,0.6641920998609923]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>We'd like to view a histogram of samples, which in the limit of many samples should tend to the PDF of a normal distribution.</p>\n<p>Again, we could generate a histogram from a drawn list of samples:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[13]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">constWeight</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Log</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"w\"></span>\n\n<span class=\"nf\">samples</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampler</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\">  </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">100000</span><span class=\"w\"> </span><span class=\"p\">((,</span><span class=\"n\">constWeight</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">model2</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"nf\">plot</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">histogramToList</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">histogram</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">samples</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>Note, that the type of histogram is:</p>\n<div class=\"highlight\"><pre><span></span><span class=\"nf\">histogram</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Int</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"p\">[(</span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">Log</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)]</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kt\">Histogram</span><span class=\"w\"></span>\n</pre></div>\n<p>because it is used in more general context for weighted samples (see next chapter).\\\nThat is why we need to introduce a constant weight for our simple example by mapping samples to a pair (value, score) with <code>(,constWeight) &lt;$&gt;</code>.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[14]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">sampler</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">3</span><span class=\"w\"> </span><span class=\"n\">model2</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[0.40485488235651435,1.1348389537359198,-1.092972060021726]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>but it's nicer to apply a <code>histogram</code> function to multiple draws to define a distribution over histograms from which we'll sample.\\\nIn that approach a distribution is composed and transformed first and the sampling is clearly split from the distribution definition.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[15]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">sampler</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">plot</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">histogramToList</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">histogram</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">100000</span><span class=\"w\"> </span><span class=\"p\">((,</span><span class=\"n\">constWeight</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\">  </span><span class=\"n\">model2</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>Mixture model:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[16]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">model3</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">p</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">bernoulli</span><span class=\"w\"> </span><span class=\"mf\">0.7</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"kr\">if</span><span class=\"w\"> </span><span class=\"n\">p</span><span class=\"w\"> </span><span class=\"kr\">then</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"> </span><span class=\"kr\">else</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">3</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[17]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">sampler</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"n\">plot</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">histogramToList</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">histogram</span><span class=\"w\"> </span><span class=\"mi\">200</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">100000</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">weighted</span><span class=\"w\"> </span><span class=\"n\">model3</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Weighted-Sampling\">Weighted Sampling<a class=\"anchor-link\" href=\"#Weighted-Sampling\">&#182;</a></h1><p>For models with factor statements, we cannot just sample. For example, consider a distribution which is conditioned to positive values only:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[18]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">model4</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">p</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">bernoulli</span><span class=\"w\"> </span><span class=\"mf\">0.7</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">out</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"kr\">if</span><span class=\"w\"> </span><span class=\"n\">p</span><span class=\"w\"> </span><span class=\"kr\">then</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"> </span><span class=\"kr\">else</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">3</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">condition</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">out</span><span class=\"w\"> </span><span class=\"o\">&gt;</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"n\">out</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p><code>condition</code> is a special case of <code>factor</code> statement for binary factors.</p>\n\n</div>\n</div>\n</div>\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>Here, we use <code>weighted</code> to convert <code>model4</code> into a distribution over pairs of numbers and their weights. We then sample from that. To view</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[19]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">sampler</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"n\">plot</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">histogramToList</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">histogram</span><span class=\"w\"> </span><span class=\"mi\">200</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">100000</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">weighted</span><span class=\"w\"> </span><span class=\"n\">model4</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>We could ignore the <code>condition</code> statement using <code>unweighted</code>, as in:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[20]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">sampler</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">unweighted</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">plot</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">histogramToList</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">histogram</span><span class=\"w\"> </span><span class=\"mi\">200</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">100000</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">weighted</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">unweighted</span><span class=\"w\"> </span><span class=\"n\">model4</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>But obviously, we'd like to take samples from the posterior. We can do so as follows:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[21]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">draws4</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampler</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">10</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">weighted</span><span class=\"w\"> </span><span class=\"n\">model4</span><span class=\"w\"></span>\n<span class=\"nf\">draws4</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre>[(4.22455827914325,1.0),(0.906234848690838,1.0),(2.6860029976528135,1.0),(-0.17404924439421926,0.0),(-1.1044111213397145,0.0),(-0.5604681812378783,0.0),(-0.1850630831580971,0.0),(3.354382098966137,1.0),(2.641529507690727,1.0),(0.7142981214125107,1.0)]</pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[22]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">model5</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadMeasure</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"w\"></span>\n<span class=\"nf\">model5</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kr\">do</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">normal</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"w\"> </span><span class=\"mi\">5</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"n\">factor</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"kt\">Exp</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">cos</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"p\">)</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"></span>\n\n<span class=\"nf\">sampler</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"n\">plot</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">histogramToList</span><span class=\"w\"> </span><span class=\"o\">.</span><span class=\"w\"> </span><span class=\"n\">histogram</span><span class=\"w\"> </span><span class=\"mi\">200</span><span class=\"w\"></span>\n<span class=\"w\">    </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"n\">replicateM</span><span class=\"w\"> </span><span class=\"mi\">100000</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">weighted</span><span class=\"w\"> </span><span class=\"n\">model5</span><span class=\"p\">)</span><span class=\"w\"></span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n\n<div class=\"jp-OutputArea-child\">\n\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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hyopiCWPlA/WEEseZEwGdvKDWPL8pmqN8aFKCmKpRGrXrl20dOlSatmyJaWnp9OGDRsoOTm5zrasrIymTp1KFy5coKSkJFqzZg21a9eOjh8/TjNmzKCEhATq2rUrLV++nOLj42nu3Ll09OhRqqyslPX2798/bDsglkouClsIk4Gd/CCWPL+pWmN8qJKCWCqRuv/+++mll16ijIwMevzxx2nAgAH0pS99qc524cKFlJ2dTVOmTKHNmzfTvn37aMWKFVRYWEhr166lbt260bRp02jo0KFSbNetW0cbN26kkpISKioqosOHD0MslTzhvhAmA/fM6ltEih/Ekuc3VetI+RftUyXAKxfOv8a/ZykywTFjxtDXvvY1GjZsWF0vBg0aRJs2baIOHTrQpUuXpJgeOXKEevToQSdPnpTltm/fTnv27JGCm5ubSxMmTJDn+/btK8+3adMmJBVklmaChVerPmtMVqFZQiz1xVhTNSH+eJxt5WdULH/605/SggUL6L777pPZolhOrT26d+9OBw8epNTUVHmqc+fOdOjQIRoxYgQVFxfLc/v376eVK1fKzFKcHzlypDw/fPhweV4s04oyBw4caOQ9IdA4QCCWCDz38xP01rny4C4HAkRxca4x3NezPT14dyfXdjAAAdsJBAIBysnJadQNo2IpriYuPHv2bMrKypL/rD0GDhxIW7ZskecvX74s70GKpdX8/Hw6ceKELLZz504S9z7T0tIoLy+Pxo0bJ88XFBTI85mZmSH9gsySF662/vLj9VqfdaT4IbPU58OmaoqUf1V7h/apkgpdztdl2GvXrsksUCyjig0+L7zwAp06dYq+973vUXl5uRS/OXPmUO/evWn8+PGy3I4dO2S2KERTiGinTp2kuPbr109mn9u2baNVq1ZRaWmpzCyPHTsWlgjE0kyw8GrVZ43JIDRLiKW+GINYmmNp6/g1llk+99xz9OKLL1LHjh3pnXfekZt9hOgJ8Tt9+jSdO3dOZorifqTYGSt2y4qyYkl15syZMuMUu2fXr18vd8ZOmjRJlhNiuXjxYhoyZAjE0lA82xrMhnC4rjZS/CCWrl3lySBS/lVtLNqnSioKMsvaJlRVVdFHH30kM8naY968ebRkyZK6/xZLsCkpKY1aXVFREfSoiSggzonHTOIc7sEgszQTLLxa9VljMkBmqS+a3NeE+HPPrL6F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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n</body>\n\n\n\n\n\n\n\n</html>\n"
  },
  {
    "path": "docs/docs/notebooks/Streaming.html",
    "content": "<!DOCTYPE html>\n<html>\n<head><meta charset=\"utf-8\" />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n<title>Streaming</title><script src=\"https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js\"></script>\n\n\n\n\n<style type=\"text/css\">\n    pre { line-height: 125%; }\ntd.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\nspan.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }\ntd.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\nspan.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }\n.highlight .hll { background-color: var(--jp-cell-editor-active-background) }\n.highlight { background: var(--jp-cell-editor-background); color: var(--jp-mirror-editor-variable-color) }\n.highlight .c { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment */\n.highlight .err { color: var(--jp-mirror-editor-error-color) } /* Error */\n.highlight .k { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword */\n.highlight .o { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator */\n.highlight .p { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation */\n.highlight .ch { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Hashbang */\n.highlight .cm { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Multiline */\n.highlight .cp { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Preproc */\n.highlight .cpf { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.PreprocFile */\n.highlight .c1 { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Single */\n.highlight .cs { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Special */\n.highlight .kc { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Constant */\n.highlight .kd { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Declaration */\n.highlight .kn { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Namespace */\n.highlight .kp { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Pseudo */\n.highlight .kr { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Reserved */\n.highlight .kt { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Type */\n.highlight .m { color: var(--jp-mirror-editor-number-color) } /* Literal.Number */\n.highlight .s { color: var(--jp-mirror-editor-string-color) } /* Literal.String */\n.highlight .ow { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator.Word */\n.highlight .pm { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation.Marker */\n.highlight .w { color: var(--jp-mirror-editor-variable-color) } /* Text.Whitespace */\n.highlight .mb { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Bin */\n.highlight .mf { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Float */\n.highlight .mh { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Hex */\n.highlight .mi { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer */\n.highlight .mo { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Oct */\n.highlight .sa { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Affix */\n.highlight .sb { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Backtick */\n.highlight .sc { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Char */\n.highlight .dl { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Delimiter */\n.highlight .sd { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Doc */\n.highlight .s2 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Double */\n.highlight .se { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Escape */\n.highlight .sh { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Heredoc */\n.highlight .si { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Interpol */\n.highlight .sx { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Other */\n.highlight .sr { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Regex */\n.highlight .s1 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Single */\n.highlight .ss { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Symbol */\n.highlight .il { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer.Long */\n  </style>\n\n\n\n<style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\n * Mozilla scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n[data-jp-theme-scrollbars='true'] {\n  scrollbar-color: rgb(var(--jp-scrollbar-thumb-color))\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar. These selectors\n * will match lower in the tree, and so will override the above */\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny {\n  scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;\n  scrollbar-width: thin;\n}\n\n/*\n * Webkit scrollbar styling\n */\n\n/* use standard opaque scrollbars for most nodes */\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-corner {\n  background: var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-thumb {\n  background: rgb(var(--jp-scrollbar-thumb-color));\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-right: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n[data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n  border-bottom: var(--jp-scrollbar-endpad) solid\n    var(--jp-scrollbar-background-color);\n}\n\n/* for code nodes, use a transparent style of scrollbar */\n\n[data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar::-webkit-scrollbar,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-corner,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-corner {\n  background-color: transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-thumb,\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n  border: var(--jp-scrollbar-thumb-margin) solid transparent;\n  background-clip: content-box;\n  border-radius: var(--jp-scrollbar-thumb-radius);\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-hscrollbar::-webkit-scrollbar-track:horizontal {\n  border-left: var(--jp-scrollbar-endpad) solid transparent;\n  border-right: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n[data-jp-theme-scrollbars='true']\n  .CodeMirror-vscrollbar::-webkit-scrollbar-track:vertical {\n  border-top: var(--jp-scrollbar-endpad) solid transparent;\n  border-bottom: var(--jp-scrollbar-endpad) solid transparent;\n}\n\n/* tiny scrollbar */\n\n.jp-scrollbar-tiny::-webkit-scrollbar,\n.jp-scrollbar-tiny::-webkit-scrollbar-corner {\n  background-color: transparent;\n  height: 4px;\n  width: 4px;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-thumb {\n  background: rgba(var(--jp-scrollbar-thumb-color), 0.5);\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:horizontal {\n  border-left: 0px solid transparent;\n  border-right: 0px solid transparent;\n}\n\n.jp-scrollbar-tiny::-webkit-scrollbar-track:vertical {\n  border-top: 0px solid transparent;\n  border-bottom: 0px solid transparent;\n}\n\n/*\n * Phosphor\n */\n\n.lm-ScrollBar[data-orientation='horizontal'] {\n  min-height: 16px;\n  max-height: 16px;\n  min-width: 45px;\n  border-top: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] {\n  min-width: 16px;\n  max-width: 16px;\n  min-height: 45px;\n  border-left: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar-button {\n  background-color: #f0f0f0;\n  background-position: center center;\n  min-height: 15px;\n  max-height: 15px;\n  min-width: 15px;\n  max-width: 15px;\n}\n\n.lm-ScrollBar-button:hover {\n  background-color: #dadada;\n}\n\n.lm-ScrollBar-button.lm-mod-active {\n  background-color: #cdcdcd;\n}\n\n.lm-ScrollBar-track {\n  background: #f0f0f0;\n}\n\n.lm-ScrollBar-thumb {\n  background: #cdcdcd;\n}\n\n.lm-ScrollBar-thumb:hover {\n  background: #bababa;\n}\n\n.lm-ScrollBar-thumb.lm-mod-active {\n  background: #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal'] .lm-ScrollBar-thumb {\n  height: 100%;\n  min-width: 15px;\n  border-left: 1px solid #a0a0a0;\n  border-right: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='vertical'] .lm-ScrollBar-thumb {\n  width: 100%;\n  min-height: 15px;\n  border-top: 1px solid #a0a0a0;\n  border-bottom: 1px solid #a0a0a0;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-left);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='horizontal']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-right);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='decrement'] {\n  background-image: var(--jp-icon-caret-up);\n  background-size: 17px;\n}\n\n.lm-ScrollBar[data-orientation='vertical']\n  .lm-ScrollBar-button[data-action='increment'] {\n  background-image: var(--jp-icon-caret-down);\n  background-size: 17px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Widget, /* </DEPRECATED> */\n.lm-Widget {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  cursor: default;\n}\n\n\n/* <DEPRECATED> */ .p-Widget.p-mod-hidden, /* </DEPRECATED> */\n.lm-Widget.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-CommandPalette, /* </DEPRECATED> */\n.lm-CommandPalette {\n  display: flex;\n  flex-direction: column;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-search, /* </DEPRECATED> */\n.lm-CommandPalette-search {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-content, /* </DEPRECATED> */\n.lm-CommandPalette-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  min-height: 0;\n  overflow: auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-header, /* </DEPRECATED> */\n.lm-CommandPalette-header {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-item, /* </DEPRECATED> */\n.lm-CommandPalette-item {\n  display: flex;\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemIcon, /* </DEPRECATED> */\n.lm-CommandPalette-itemIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemContent, /* </DEPRECATED> */\n.lm-CommandPalette-itemContent {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemShortcut, /* </DEPRECATED> */\n.lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-CommandPalette-itemLabel, /* </DEPRECATED> */\n.lm-CommandPalette-itemLabel {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.lm-close-icon {\n\tborder:1px solid transparent;\n  background-color: transparent;\n  position: absolute;\n\tz-index:1;\n\tright:3%;\n\ttop: 0;\n\tbottom: 0;\n\tmargin: auto;\n\tpadding: 7px 0;\n\tdisplay: none;\n\tvertical-align: middle;\n  outline: 0;\n  cursor: pointer;\n}\n.lm-close-icon:after {\n\tcontent: \"X\";\n\tdisplay: block;\n\twidth: 15px;\n\theight: 15px;\n\ttext-align: center;\n\tcolor:#000;\n\tfont-weight: normal;\n\tfont-size: 12px;\n\tcursor: pointer;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-DockPanel, /* </DEPRECATED> */\n.lm-DockPanel {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-widget, /* </DEPRECATED> */\n.lm-DockPanel-widget {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-tabBar, /* </DEPRECATED> */\n.lm-DockPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle, /* </DEPRECATED> */\n.lm-DockPanel-handle {\n  z-index: 2;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-handle:after, /* </DEPRECATED> */\n.lm-DockPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal'] {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical'] {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='horizontal']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='horizontal']:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-DockPanel-handle[data-orientation='vertical']:after,\n/* </DEPRECATED> */\n.lm-DockPanel-handle[data-orientation='vertical']:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay, /* </DEPRECATED> */\n.lm-DockPanel-overlay {\n  z-index: 3;\n  box-sizing: border-box;\n  pointer-events: none;\n}\n\n\n/* <DEPRECATED> */ .p-DockPanel-overlay.p-mod-hidden, /* </DEPRECATED> */\n.lm-DockPanel-overlay.lm-mod-hidden {\n  display: none !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-Menu, /* </DEPRECATED> */\n.lm-Menu {\n  z-index: 10000;\n  position: absolute;\n  white-space: nowrap;\n  overflow-x: hidden;\n  overflow-y: auto;\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-content, /* </DEPRECATED> */\n.lm-Menu-content {\n  margin: 0;\n  padding: 0;\n  display: table;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-item, /* </DEPRECATED> */\n.lm-Menu-item {\n  display: table-row;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-item.p-mod-hidden,\n.p-Menu-item.p-mod-collapsed,\n/* </DEPRECATED> */\n.lm-Menu-item.lm-mod-hidden,\n.lm-Menu-item.lm-mod-collapsed {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */\n.p-Menu-itemIcon,\n.p-Menu-itemSubmenuIcon,\n/* </DEPRECATED> */\n.lm-Menu-itemIcon,\n.lm-Menu-itemSubmenuIcon {\n  display: table-cell;\n  text-align: center;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemLabel, /* </DEPRECATED> */\n.lm-Menu-itemLabel {\n  display: table-cell;\n  text-align: left;\n}\n\n\n/* <DEPRECATED> */ .p-Menu-itemShortcut, /* </DEPRECATED> */\n.lm-Menu-itemShortcut {\n  display: table-cell;\n  text-align: right;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-MenuBar, /* </DEPRECATED> */\n.lm-MenuBar {\n  outline: none;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-MenuBar-content, /* </DEPRECATED> */\n.lm-MenuBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex-direction: row;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */ .p--MenuBar-item, /* </DEPRECATED> */\n.lm-MenuBar-item {\n  box-sizing: border-box;\n}\n\n\n/* <DEPRECATED> */\n.p-MenuBar-itemIcon,\n.p-MenuBar-itemLabel,\n/* </DEPRECATED> */\n.lm-MenuBar-itemIcon,\n.lm-MenuBar-itemLabel {\n  display: inline-block;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-ScrollBar, /* </DEPRECATED> */\n.lm-ScrollBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='horizontal'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='horizontal'] {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-ScrollBar[data-orientation='vertical'],\n/* </DEPRECATED> */\n.lm-ScrollBar[data-orientation='vertical'] {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-button, /* </DEPRECATED> */\n.lm-ScrollBar-button {\n  box-sizing: border-box;\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-track, /* </DEPRECATED> */\n.lm-ScrollBar-track {\n  box-sizing: border-box;\n  position: relative;\n  overflow: hidden;\n  flex: 1 1 auto;\n}\n\n\n/* <DEPRECATED> */ .p-ScrollBar-thumb, /* </DEPRECATED> */\n.lm-ScrollBar-thumb {\n  box-sizing: border-box;\n  position: absolute;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-SplitPanel-child, /* </DEPRECATED> */\n.lm-SplitPanel-child {\n  z-index: 0;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle, /* </DEPRECATED> */\n.lm-SplitPanel-handle {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle.p-mod-hidden, /* </DEPRECATED> */\n.lm-SplitPanel-handle.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-SplitPanel-handle:after, /* </DEPRECATED> */\n.lm-SplitPanel-handle:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: '';\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle {\n  cursor: ew-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle {\n  cursor: ns-resize;\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle:after {\n  left: 50%;\n  min-width: 8px;\n  transform: translateX(-50%);\n}\n\n\n/* <DEPRECATED> */\n.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle:after,\n/* </DEPRECATED> */\n.lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle:after {\n  top: 50%;\n  min-height: 8px;\n  transform: translateY(-50%);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabBar, /* </DEPRECATED> */\n.lm-TabBar {\n  display: flex;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='horizontal'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] {\n  flex-direction: row;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar[data-orientation='vertical'], /* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] {\n  flex-direction: column;\n  align-items: flex-end;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-content, /* </DEPRECATED> */\n.lm-TabBar-content {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex: 1 1 auto;\n  list-style-type: none;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='horizontal'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='horizontal'] > .lm-TabBar-content {\n  flex-direction: row;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar[data-orientation='vertical'] > .p-TabBar-content,\n/* </DEPRECATED> */\n.lm-TabBar[data-orientation='vertical'] > .lm-TabBar-content {\n  flex-direction: column;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar-tab {\n  display: flex;\n  flex-direction: row;\n  box-sizing: border-box;\n  overflow: hidden;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar-tabIcon,\n.p-TabBar-tabCloseIcon,\n/* </DEPRECATED> */\n.lm-TabBar-tabIcon,\n.lm-TabBar-tabCloseIcon {\n  flex: 0 0 auto;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tabLabel, /* </DEPRECATED> */\n.lm-TabBar-tabLabel {\n  flex: 1 1 auto;\n  overflow: hidden;\n  white-space: nowrap;\n}\n\n\n.lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar-tab.p-mod-hidden, /* </DEPRECATED> */\n.lm-TabBar-tab.lm-mod-hidden {\n  display: none !important;\n}\n\n\n.lm-TabBar-addButton.lm-mod-hidden {\n  display: none !important;\n}\n\n\n/* <DEPRECATED> */ .p-TabBar.p-mod-dragging .p-TabBar-tab, /* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab {\n  position: relative;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='horizontal'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='horizontal'] .lm-TabBar-tab {\n  left: 0;\n  transition: left 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging[data-orientation='vertical'] .p-TabBar-tab,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging[data-orientation='vertical'] .lm-TabBar-tab {\n  top: 0;\n  transition: top 150ms ease;\n}\n\n\n/* <DEPRECATED> */\n.p-TabBar.p-mod-dragging .p-TabBar-tab.p-mod-dragging,\n/* </DEPRECATED> */\n.lm-TabBar.lm-mod-dragging .lm-TabBar-tab.lm-mod-dragging {\n  transition: none;\n}\n\n.lm-TabBar-tabLabel .lm-TabBar-tabInput {\n  user-select: all;\n  width: 100%;\n  box-sizing : border-box;\n  background: inherit;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ .p-TabPanel-tabBar, /* </DEPRECATED> */\n.lm-TabPanel-tabBar {\n  z-index: 1;\n}\n\n\n/* <DEPRECATED> */ .p-TabPanel-stackedPanel, /* </DEPRECATED> */\n.lm-TabPanel-stackedPanel {\n  z-index: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n@charset \"UTF-8\";\nhtml{\n  -webkit-box-sizing:border-box;\n          box-sizing:border-box; }\n\n*,\n*::before,\n*::after{\n  -webkit-box-sizing:inherit;\n          box-sizing:inherit; }\n\nbody{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none;\n  color:#182026;\n  font-family:-apple-system, \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Open Sans\", \"Helvetica Neue\", \"Icons16\", sans-serif; }\n\np{\n  margin-bottom:10px;\n  margin-top:0; }\n\nsmall{\n  font-size:12px; }\n\nstrong{\n  font-weight:600; }\n\n::-moz-selection{\n  background:rgba(125, 188, 255, 0.6); }\n\n::selection{\n  background:rgba(125, 188, 255, 0.6); }\n.bp3-heading{\n  color:#182026;\n  font-weight:600;\n  margin:0 0 10px;\n  padding:0; }\n  .bp3-dark .bp3-heading{\n    color:#f5f8fa; }\n\nh1.bp3-heading, .bp3-running-text h1{\n  font-size:36px;\n  line-height:40px; }\n\nh2.bp3-heading, .bp3-running-text h2{\n  font-size:28px;\n  line-height:32px; }\n\nh3.bp3-heading, .bp3-running-text h3{\n  font-size:22px;\n  line-height:25px; }\n\nh4.bp3-heading, .bp3-running-text h4{\n  font-size:18px;\n  line-height:21px; }\n\nh5.bp3-heading, .bp3-running-text h5{\n  font-size:16px;\n  line-height:19px; }\n\nh6.bp3-heading, .bp3-running-text h6{\n  font-size:14px;\n  line-height:16px; }\n.bp3-ui-text{\n  font-size:14px;\n  font-weight:400;\n  letter-spacing:0;\n  line-height:1.28581;\n  text-transform:none; }\n\n.bp3-monospace-text{\n  font-family:monospace;\n  text-transform:none; }\n\n.bp3-text-muted{\n  color:#5c7080; }\n  .bp3-dark .bp3-text-muted{\n    color:#a7b6c2; }\n\n.bp3-text-disabled{\n  color:rgba(92, 112, 128, 0.6); }\n  .bp3-dark .bp3-text-disabled{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-text-overflow-ellipsis{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal; }\n.bp3-running-text{\n  font-size:14px;\n  line-height:1.5; }\n  .bp3-running-text h1{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h1{\n      color:#f5f8fa; }\n  .bp3-running-text h2{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h2{\n      color:#f5f8fa; }\n  .bp3-running-text h3{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h3{\n      color:#f5f8fa; }\n  .bp3-running-text h4{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h4{\n      color:#f5f8fa; }\n  .bp3-running-text h5{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h5{\n      color:#f5f8fa; }\n  .bp3-running-text h6{\n    color:#182026;\n    font-weight:600;\n    margin-bottom:20px;\n    margin-top:40px; }\n    .bp3-dark .bp3-running-text h6{\n      color:#f5f8fa; }\n  .bp3-running-text hr{\n    border:none;\n    border-bottom:1px solid rgba(16, 22, 26, 0.15);\n    margin:20px 0; }\n    .bp3-dark .bp3-running-text hr{\n      border-color:rgba(255, 255, 255, 0.15); }\n  .bp3-running-text p{\n    margin:0 0 10px;\n    padding:0; }\n\n.bp3-text-large{\n  font-size:16px; }\n\n.bp3-text-small{\n  font-size:12px; }\na{\n  color:#106ba3;\n  text-decoration:none; }\n  a:hover{\n    color:#106ba3;\n    cursor:pointer;\n    text-decoration:underline; }\n  a .bp3-icon, a .bp3-icon-standard, a .bp3-icon-large{\n    color:inherit; }\n  a code,\n  .bp3-dark a code{\n    color:inherit; }\n  .bp3-dark a,\n  .bp3-dark a:hover{\n    color:#48aff0; }\n    .bp3-dark a .bp3-icon, .bp3-dark a .bp3-icon-standard, .bp3-dark a .bp3-icon-large,\n    .bp3-dark a:hover .bp3-icon,\n    .bp3-dark a:hover .bp3-icon-standard,\n    .bp3-dark a:hover .bp3-icon-large{\n      color:inherit; }\n.bp3-running-text code, .bp3-code{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  font-size:smaller;\n  padding:2px 5px; }\n  .bp3-dark .bp3-running-text code, .bp3-running-text .bp3-dark code, .bp3-dark .bp3-code{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n  .bp3-running-text a > code, a > .bp3-code{\n    color:#137cbd; }\n    .bp3-dark .bp3-running-text a > code, .bp3-running-text .bp3-dark a > code, .bp3-dark a > .bp3-code{\n      color:inherit; }\n\n.bp3-running-text pre, .bp3-code-block{\n  font-family:monospace;\n  text-transform:none;\n  background:rgba(255, 255, 255, 0.7);\n  border-radius:3px;\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n  color:#182026;\n  display:block;\n  font-size:13px;\n  line-height:1.4;\n  margin:10px 0;\n  padding:13px 15px 12px;\n  word-break:break-all;\n  word-wrap:break-word; }\n  .bp3-dark .bp3-running-text pre, .bp3-running-text .bp3-dark pre, .bp3-dark .bp3-code-block{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n  .bp3-running-text pre > code, .bp3-code-block > code{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit;\n    font-size:inherit;\n    padding:0; }\n\n.bp3-running-text kbd, .bp3-key{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#5c7080;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-family:inherit;\n  font-size:12px;\n  height:24px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  line-height:24px;\n  min-width:24px;\n  padding:3px 6px;\n  vertical-align:middle; }\n  .bp3-running-text kbd .bp3-icon, .bp3-key .bp3-icon, .bp3-running-text kbd .bp3-icon-standard, .bp3-key .bp3-icon-standard, .bp3-running-text kbd .bp3-icon-large, .bp3-key .bp3-icon-large{\n    margin-right:5px; }\n  .bp3-dark .bp3-running-text kbd, .bp3-running-text .bp3-dark kbd, .bp3-dark .bp3-key{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#a7b6c2; }\n.bp3-running-text blockquote, .bp3-blockquote{\n  border-left:solid 4px rgba(167, 182, 194, 0.5);\n  margin:0 0 10px;\n  padding:0 20px; }\n  .bp3-dark .bp3-running-text blockquote, .bp3-running-text .bp3-dark blockquote, .bp3-dark .bp3-blockquote{\n    border-color:rgba(115, 134, 148, 0.5); }\n.bp3-running-text ul,\n.bp3-running-text ol, .bp3-list{\n  margin:10px 0;\n  padding-left:30px; }\n  .bp3-running-text ul li:not(:last-child), .bp3-running-text ol li:not(:last-child), .bp3-list li:not(:last-child){\n    margin-bottom:5px; }\n  .bp3-running-text ul ol, .bp3-running-text ol ol, .bp3-list ol,\n  .bp3-running-text ul ul,\n  .bp3-running-text ol ul,\n  .bp3-list ul{\n    margin-top:5px; }\n\n.bp3-list-unstyled{\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-list-unstyled li{\n    padding:0; }\n.bp3-rtl{\n  text-align:right; }\n\n.bp3-dark{\n  color:#f5f8fa; }\n\n:focus{\n  outline:rgba(19, 124, 189, 0.6) auto 2px;\n  outline-offset:2px;\n  -moz-outline-radius:6px; }\n\n.bp3-focus-disabled :focus{\n  outline:none !important; }\n  .bp3-focus-disabled :focus ~ .bp3-control-indicator{\n    outline:none !important; }\n\n.bp3-alert{\n  max-width:400px;\n  padding:20px; }\n\n.bp3-alert-body{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-alert-body .bp3-icon{\n    font-size:40px;\n    margin-right:20px;\n    margin-top:0; }\n\n.bp3-alert-contents{\n  word-break:break-word; }\n\n.bp3-alert-footer{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:reverse;\n      -ms-flex-direction:row-reverse;\n          flex-direction:row-reverse;\n  margin-top:10px; }\n  .bp3-alert-footer .bp3-button{\n    margin-left:10px; }\n.bp3-breadcrumbs{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  cursor:default;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:wrap;\n      flex-wrap:wrap;\n  height:30px;\n  list-style:none;\n  margin:0;\n  padding:0; }\n  .bp3-breadcrumbs > li{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n    .bp3-breadcrumbs > li::after{\n      background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z' fill='%235C7080'/%3e%3c/svg%3e\");\n      content:\"\";\n      display:block;\n      height:16px;\n      margin:0 5px;\n      width:16px; }\n    .bp3-breadcrumbs > li:last-of-type::after{\n      display:none; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumb-current,\n.bp3-breadcrumbs-collapsed{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  font-size:16px; }\n\n.bp3-breadcrumb,\n.bp3-breadcrumbs-collapsed{\n  color:#5c7080; }\n\n.bp3-breadcrumb:hover{\n  text-decoration:none; }\n\n.bp3-breadcrumb.bp3-disabled{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-breadcrumb .bp3-icon{\n  margin-right:5px; }\n\n.bp3-breadcrumb-current{\n  color:inherit;\n  font-weight:600; }\n  .bp3-breadcrumb-current .bp3-input{\n    font-size:inherit;\n    font-weight:inherit;\n    vertical-align:baseline; }\n\n.bp3-breadcrumbs-collapsed{\n  background:#ced9e0;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  margin-right:2px;\n  padding:1px 5px;\n  vertical-align:text-bottom; }\n  .bp3-breadcrumbs-collapsed::before{\n    background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cg fill='%235C7080'%3e%3ccircle cx='2' cy='8.03' r='2'/%3e%3ccircle cx='14' cy='8.03' r='2'/%3e%3ccircle cx='8' cy='8.03' r='2'/%3e%3c/g%3e%3c/svg%3e\") center no-repeat;\n    content:\"\";\n    display:block;\n    height:16px;\n    width:16px; }\n  .bp3-breadcrumbs-collapsed:hover{\n    background:#bfccd6;\n    color:#182026;\n    text-decoration:none; }\n\n.bp3-dark .bp3-breadcrumb,\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumbs > li::after{\n  color:#a7b6c2; }\n\n.bp3-dark .bp3-breadcrumb.bp3-disabled{\n  color:rgba(167, 182, 194, 0.6); }\n\n.bp3-dark .bp3-breadcrumb-current{\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-breadcrumbs-collapsed{\n  background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-breadcrumbs-collapsed:hover{\n    background:rgba(16, 22, 26, 0.6);\n    color:#f5f8fa; }\n.bp3-button{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  min-height:30px;\n  min-width:30px; }\n  .bp3-button > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-button > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-button::before,\n  .bp3-button > *{\n    margin-right:7px; }\n  .bp3-button:empty::before,\n  .bp3-button > :last-child{\n    margin-right:0; }\n  .bp3-button:empty{\n    padding:0 !important; }\n  .bp3-button:disabled, .bp3-button.bp3-disabled{\n    cursor:not-allowed; }\n  .bp3-button.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button.bp3-align-right,\n  .bp3-align-right .bp3-button{\n    text-align:right; }\n  .bp3-button.bp3-align-left,\n  .bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026; }\n    .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active:hover, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active, .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-button.bp3-intent-primary{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover, .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-primary:hover{\n      background-color:#106ba3;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{\n      background-color:#0e5a8a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-primary:disabled, .bp3-button.bp3-intent-primary.bp3-disabled{\n      background-color:rgba(19, 124, 189, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-success{\n    background-color:#0f9960;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover, .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-success:hover{\n      background-color:#0d8050;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{\n      background-color:#0a6640;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-success:disabled, .bp3-button.bp3-intent-success.bp3-disabled{\n      background-color:rgba(15, 153, 96, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-warning{\n    background-color:#d9822b;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover, .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-warning:hover{\n      background-color:#bf7326;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{\n      background-color:#a66321;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-warning:disabled, .bp3-button.bp3-intent-warning.bp3-disabled{\n      background-color:rgba(217, 130, 43, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button.bp3-intent-danger{\n    background-color:#db3737;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover, .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      color:#ffffff; }\n    .bp3-button.bp3-intent-danger:hover{\n      background-color:#c23030;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{\n      background-color:#a82a2a;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-button.bp3-intent-danger:disabled, .bp3-button.bp3-intent-danger.bp3-disabled{\n      background-color:rgba(219, 55, 55, 0.5);\n      background-image:none;\n      border-color:transparent;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.6); }\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n    stroke:#ffffff; }\n  .bp3-button.bp3-large,\n  .bp3-large .bp3-button{\n    min-height:40px;\n    min-width:40px;\n    font-size:16px;\n    padding:5px 15px; }\n    .bp3-button.bp3-large::before,\n    .bp3-button.bp3-large > *,\n    .bp3-large .bp3-button::before,\n    .bp3-large .bp3-button > *{\n      margin-right:10px; }\n    .bp3-button.bp3-large:empty::before,\n    .bp3-button.bp3-large > :last-child,\n    .bp3-large .bp3-button:empty::before,\n    .bp3-large .bp3-button > :last-child{\n      margin-right:0; }\n  .bp3-button.bp3-small,\n  .bp3-small .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-button.bp3-loading{\n    position:relative; }\n    .bp3-button.bp3-loading[class*=\"bp3-icon-\"]::before{\n      visibility:hidden; }\n    .bp3-button.bp3-loading .bp3-button-spinner{\n      margin:0;\n      position:absolute; }\n    .bp3-button.bp3-loading > :not(.bp3-button-spinner){\n      visibility:hidden; }\n  .bp3-button[class*=\"bp3-icon-\"]::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    color:#5c7080; }\n  .bp3-button .bp3-icon, .bp3-button .bp3-icon-standard, .bp3-button .bp3-icon-large{\n    color:#5c7080; }\n    .bp3-button .bp3-icon.bp3-align-right, .bp3-button .bp3-icon-standard.bp3-align-right, .bp3-button .bp3-icon-large.bp3-align-right{\n      margin-left:7px; }\n  .bp3-button .bp3-icon:first-child:last-child,\n  .bp3-button .bp3-spinner + .bp3-icon:last-child{\n    margin:0 -7px; }\n  .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]){\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]):disabled.bp3-active, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]).bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"])[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n    .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-button:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n      color:#a7b6c2; }\n  .bp3-dark .bp3-button[class*=\"bp3-intent-\"]{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:hover{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-dark .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(255, 255, 255, 0.3); }\n    .bp3-dark .bp3-button[class*=\"bp3-intent-\"] .bp3-button-spinner .bp3-spinner-head{\n      stroke:#8a9ba8; }\n  .bp3-button:disabled::before,\n  .bp3-button:disabled .bp3-icon, .bp3-button:disabled .bp3-icon-standard, .bp3-button:disabled .bp3-icon-large, .bp3-button.bp3-disabled::before,\n  .bp3-button.bp3-disabled .bp3-icon, .bp3-button.bp3-disabled .bp3-icon-standard, .bp3-button.bp3-disabled .bp3-icon-large, .bp3-button[class*=\"bp3-intent-\"]::before,\n  .bp3-button[class*=\"bp3-intent-\"] .bp3-icon, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-standard, .bp3-button[class*=\"bp3-intent-\"] .bp3-icon-large{\n    color:inherit !important; }\n  .bp3-button.bp3-minimal{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button.bp3-minimal:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-minimal:active, .bp3-button.bp3-minimal.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-minimal:disabled, .bp3-button.bp3-minimal:disabled:hover, .bp3-button.bp3-minimal.bp3-disabled, .bp3-button.bp3-minimal.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-minimal{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-minimal:hover, .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-minimal:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-minimal:disabled, .bp3-dark .bp3-button.bp3-minimal:disabled:hover, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover, .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover, .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover, .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-minimal.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover, .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-minimal.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button.bp3-outlined{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    border:1px solid rgba(24, 32, 38, 0.2);\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box; }\n    .bp3-button.bp3-outlined:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button.bp3-outlined:active, .bp3-button.bp3-outlined.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button.bp3-outlined:hover, .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button.bp3-outlined:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover, .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover, .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover, .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover, .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button.bp3-outlined.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n    .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled:hover{\n      border-color:rgba(92, 112, 128, 0.1); }\n    .bp3-dark .bp3-button.bp3-outlined{\n      border-color:rgba(255, 255, 255, 0.4); }\n      .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{\n        border-color:rgba(255, 255, 255, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-primary{\n      border-color:rgba(16, 107, 163, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n        border-color:rgba(16, 107, 163, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{\n        border-color:rgba(72, 175, 240, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{\n          border-color:rgba(72, 175, 240, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-success{\n      border-color:rgba(13, 128, 80, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n        border-color:rgba(13, 128, 80, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{\n        border-color:rgba(61, 204, 145, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{\n          border-color:rgba(61, 204, 145, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-warning{\n      border-color:rgba(191, 115, 38, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n        border-color:rgba(191, 115, 38, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{\n        border-color:rgba(255, 179, 102, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{\n          border-color:rgba(255, 179, 102, 0.2); }\n    .bp3-button.bp3-outlined.bp3-intent-danger{\n      border-color:rgba(194, 48, 48, 0.6); }\n      .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n        border-color:rgba(194, 48, 48, 0.2); }\n      .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{\n        border-color:rgba(255, 115, 115, 0.6); }\n        .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{\n          border-color:rgba(255, 115, 115, 0.2); }\n\na.bp3-button{\n  text-align:center;\n  text-decoration:none;\n  -webkit-transition:none;\n  transition:none; }\n  a.bp3-button, a.bp3-button:hover, a.bp3-button:active{\n    color:#182026; }\n  a.bp3-button.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6); }\n\n.bp3-button-text{\n  -webkit-box-flex:0;\n      -ms-flex:0 1 auto;\n          flex:0 1 auto; }\n\n.bp3-button.bp3-align-left .bp3-button-text, .bp3-button.bp3-align-right .bp3-button-text,\n.bp3-button-group.bp3-align-left .bp3-button-text,\n.bp3-button-group.bp3-align-right .bp3-button-text{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto; }\n.bp3-button-group{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex; }\n  .bp3-button-group .bp3-button{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    position:relative;\n    z-index:4; }\n    .bp3-button-group .bp3-button:focus{\n      z-index:5; }\n    .bp3-button-group .bp3-button:hover{\n      z-index:6; }\n    .bp3-button-group .bp3-button:active, .bp3-button-group .bp3-button.bp3-active{\n      z-index:7; }\n    .bp3-button-group .bp3-button:disabled, .bp3-button-group .bp3-button.bp3-disabled{\n      z-index:3; }\n    .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]{\n      z-index:9; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:focus{\n        z-index:10; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:hover{\n        z-index:11; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:active, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-active{\n        z-index:12; }\n      .bp3-button-group .bp3-button[class*=\"bp3-intent-\"]:disabled, .bp3-button-group .bp3-button[class*=\"bp3-intent-\"].bp3-disabled{\n        z-index:8; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:first-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:first-child){\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    border-bottom-right-radius:0;\n    border-top-right-radius:0;\n    margin-right:-1px; }\n  .bp3-button-group.bp3-minimal .bp3-button{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:hover{\n      background:rgba(167, 182, 194, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026;\n      text-decoration:none; }\n    .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n      background:rgba(115, 134, 148, 0.3);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#182026; }\n    .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n      background:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed; }\n      .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n        background:rgba(115, 134, 148, 0.3); }\n    .bp3-dark .bp3-button-group.bp3-minimal .bp3-button{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:inherit; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover{\n        background:rgba(138, 155, 168, 0.15); }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{\n        background:rgba(138, 155, 168, 0.3);\n        color:#f5f8fa; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{\n        background:none;\n        color:rgba(167, 182, 194, 0.6);\n        cursor:not-allowed; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{\n          background:rgba(138, 155, 168, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n      color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.15);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#106ba3; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(16, 107, 163, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n        stroke:#106ba3; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{\n        color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{\n          background:rgba(19, 124, 189, 0.2);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{\n          background:rgba(19, 124, 189, 0.3);\n          color:#48aff0; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{\n          background:none;\n          color:rgba(72, 175, 240, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{\n            background:rgba(19, 124, 189, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n      color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.15);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#0d8050; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(13, 128, 80, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n        stroke:#0d8050; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{\n        color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{\n          background:rgba(15, 153, 96, 0.2);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{\n          background:rgba(15, 153, 96, 0.3);\n          color:#3dcc91; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{\n          background:none;\n          color:rgba(61, 204, 145, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{\n            background:rgba(15, 153, 96, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n      color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.15);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#bf7326; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(191, 115, 38, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n        stroke:#bf7326; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{\n        color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{\n          background:rgba(217, 130, 43, 0.2);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{\n          background:rgba(217, 130, 43, 0.3);\n          color:#ffb366; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{\n          background:none;\n          color:rgba(255, 179, 102, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{\n            background:rgba(217, 130, 43, 0.3); }\n    .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n      color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.15);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#c23030; }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(194, 48, 48, 0.5); }\n        .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n      .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n        stroke:#c23030; }\n      .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{\n        color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{\n          background:rgba(219, 55, 55, 0.2);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{\n          background:rgba(219, 55, 55, 0.3);\n          color:#ff7373; }\n        .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{\n          background:none;\n          color:rgba(255, 115, 115, 0.5); }\n          .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{\n            background:rgba(219, 55, 55, 0.3); }\n  .bp3-button-group .bp3-popover-wrapper,\n  .bp3-button-group .bp3-popover-target{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-button-group .bp3-button.bp3-fill,\n  .bp3-button-group.bp3-fill .bp3-button:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-button-group.bp3-vertical{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column;\n    vertical-align:top; }\n    .bp3-button-group.bp3-vertical.bp3-fill{\n      height:100%;\n      width:unset; }\n    .bp3-button-group.bp3-vertical .bp3-button{\n      margin-right:0 !important;\n      width:100%; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:first-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:first-child{\n      border-radius:3px 3px 0 0; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:last-child .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:last-child{\n      border-radius:0 0 3px 3px; }\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n    .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:not(:last-child){\n      margin-bottom:-1px; }\n  .bp3-button-group.bp3-align-left .bp3-button{\n    text-align:left; }\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){\n    margin-right:1px; }\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-popover-wrapper:not(:last-child) .bp3-button,\n  .bp3-dark .bp3-button-group.bp3-vertical > .bp3-button:not(:last-child){\n    margin-bottom:1px; }\n.bp3-callout{\n  font-size:14px;\n  line-height:1.5;\n  background-color:rgba(138, 155, 168, 0.15);\n  border-radius:3px;\n  padding:10px 12px 9px;\n  position:relative;\n  width:100%; }\n  .bp3-callout[class*=\"bp3-icon-\"]{\n    padding-left:40px; }\n    .bp3-callout[class*=\"bp3-icon-\"]::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout.bp3-callout-icon{\n    padding-left:40px; }\n    .bp3-callout.bp3-callout-icon > .bp3-icon:first-child{\n      color:#5c7080;\n      left:10px;\n      position:absolute;\n      top:10px; }\n  .bp3-callout .bp3-heading{\n    line-height:20px;\n    margin-bottom:5px;\n    margin-top:0; }\n    .bp3-callout .bp3-heading:last-child{\n      margin-bottom:0; }\n  .bp3-dark .bp3-callout{\n    background-color:rgba(138, 155, 168, 0.2); }\n    .bp3-dark .bp3-callout[class*=\"bp3-icon-\"]::before{\n      color:#a7b6c2; }\n  .bp3-callout.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15); }\n    .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-primary .bp3-heading{\n      color:#106ba3; }\n    .bp3-dark .bp3-callout.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-primary[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-primary .bp3-heading{\n        color:#48aff0; }\n  .bp3-callout.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15); }\n    .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-success .bp3-heading{\n      color:#0d8050; }\n    .bp3-dark .bp3-callout.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-success[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-success > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-success .bp3-heading{\n        color:#3dcc91; }\n  .bp3-callout.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15); }\n    .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-warning .bp3-heading{\n      color:#bf7326; }\n    .bp3-dark .bp3-callout.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-warning[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-warning .bp3-heading{\n        color:#ffb366; }\n  .bp3-callout.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15); }\n    .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n    .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n    .bp3-callout.bp3-intent-danger .bp3-heading{\n      color:#c23030; }\n    .bp3-dark .bp3-callout.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-dark .bp3-callout.bp3-intent-danger[class*=\"bp3-icon-\"]::before,\n      .bp3-dark .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,\n      .bp3-dark .bp3-callout.bp3-intent-danger .bp3-heading{\n        color:#ff7373; }\n  .bp3-running-text .bp3-callout{\n    margin:20px 0; }\n.bp3-card{\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n  padding:20px;\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-card.bp3-dark,\n  .bp3-dark .bp3-card{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-0{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n  .bp3-elevation-0.bp3-dark,\n  .bp3-dark .bp3-elevation-0{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }\n\n.bp3-elevation-1{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-1.bp3-dark,\n  .bp3-dark .bp3-elevation-1{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-2{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-2.bp3-dark,\n  .bp3-dark .bp3-elevation-2{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-3{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-3.bp3-dark,\n  .bp3-dark .bp3-elevation-3{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-elevation-4{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-elevation-4.bp3-dark,\n  .bp3-dark .bp3-elevation-4{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:hover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  cursor:pointer; }\n  .bp3-card.bp3-interactive:hover.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:hover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n\n.bp3-card.bp3-interactive:active{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  opacity:0.9;\n  -webkit-transition-duration:0;\n          transition-duration:0; }\n  .bp3-card.bp3-interactive:active.bp3-dark,\n  .bp3-dark .bp3-card.bp3-interactive:active{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-collapse{\n  height:0;\n  overflow-y:hidden;\n  -webkit-transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-collapse .bp3-collapse-body{\n    -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-collapse .bp3-collapse-body[aria-hidden=\"true\"]{\n      display:none; }\n\n.bp3-context-menu .bp3-popover-target{\n  display:block; }\n\n.bp3-context-menu-popover-target{\n  position:fixed; }\n\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-dialog-container{\n  opacity:1;\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  min-height:100%;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  width:100%; }\n  .bp3-dialog-container.bp3-overlay-enter > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5); }\n  .bp3-dialog-container.bp3-overlay-enter-active > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear-active > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-dialog-container.bp3-overlay-exit > .bp3-dialog{\n    opacity:1;\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-dialog-container.bp3-overlay-exit-active > .bp3-dialog{\n    opacity:0;\n    -webkit-transform:scale(0.5);\n            transform:scale(0.5);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-transform;\n    transition-property:opacity, -webkit-transform;\n    transition-property:opacity, transform;\n    transition-property:opacity, transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n\n.bp3-dialog{\n  background:#ebf1f5;\n  border-radius:6px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:30px 0;\n  padding-bottom:20px;\n  pointer-events:all;\n  -webkit-user-select:text;\n     -moz-user-select:text;\n      -ms-user-select:text;\n          user-select:text;\n  width:500px; }\n  .bp3-dialog:focus{\n    outline:0; }\n  .bp3-dialog.bp3-dark,\n  .bp3-dark .bp3-dialog{\n    background:#293742;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-dialog-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background:#ffffff;\n  border-radius:6px 6px 0 0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding-left:20px;\n  padding-right:5px;\n  z-index:30; }\n  .bp3-dialog-header .bp3-icon-large,\n  .bp3-dialog-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-dialog-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-dialog-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-dialog-header{\n    background:#30404d;\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-dialog-header .bp3-icon-large,\n    .bp3-dark .bp3-dialog-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-dialog-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  margin:20px; }\n\n.bp3-dialog-footer{\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  margin:0 20px; }\n\n.bp3-dialog-footer-actions{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:end;\n      -ms-flex-pack:end;\n          justify-content:flex-end; }\n  .bp3-dialog-footer-actions .bp3-button{\n    margin-left:10px; }\n.bp3-multistep-dialog-panels{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n\n.bp3-multistep-dialog-left-panel{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column; }\n  .bp3-dark .bp3-multistep-dialog-left-panel{\n    background:#202b33; }\n\n.bp3-multistep-dialog-right-panel{\n  background-color:#f5f8fa;\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  border-radius:0 0 6px 0;\n  -webkit-box-flex:3;\n      -ms-flex:3;\n          flex:3;\n  min-width:0; }\n  .bp3-dark .bp3-multistep-dialog-right-panel{\n    background-color:#293742;\n    border-left:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-multistep-dialog-footer{\n  background-color:#ffffff;\n  border-radius:0 0 6px 0;\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  padding:10px; }\n  .bp3-dark .bp3-multistep-dialog-footer{\n    background:#30404d;\n    border-top:1px solid rgba(16, 22, 26, 0.4); }\n\n.bp3-dialog-step-container{\n  background-color:#f5f8fa;\n  border-bottom:1px solid rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-dialog-step-container{\n    background:#293742;\n    border-bottom:1px solid rgba(16, 22, 26, 0.4); }\n  .bp3-dialog-step-container.bp3-dialog-step-viewed{\n    background-color:#ffffff; }\n    .bp3-dark .bp3-dialog-step-container.bp3-dialog-step-viewed{\n      background:#30404d; }\n\n.bp3-dialog-step{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#f5f8fa;\n  border-radius:6px;\n  cursor:not-allowed;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:4px;\n  padding:6px 14px; }\n  .bp3-dark .bp3-dialog-step{\n    background:#293742; }\n  .bp3-dialog-step-viewed .bp3-dialog-step{\n    background-color:#ffffff;\n    cursor:pointer; }\n    .bp3-dark .bp3-dialog-step-viewed .bp3-dialog-step{\n      background:#30404d; }\n  .bp3-dialog-step:hover{\n    background-color:#f5f8fa; }\n    .bp3-dark .bp3-dialog-step:hover{\n      background:#293742; }\n\n.bp3-dialog-step-icon{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:rgba(92, 112, 128, 0.6);\n  border-radius:50%;\n  color:#ffffff;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:25px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  width:25px; }\n  .bp3-dark .bp3-dialog-step-icon{\n    background-color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#2b95d6; }\n  .bp3-dialog-step-viewed .bp3-dialog-step-icon{\n    background-color:#8a9ba8; }\n\n.bp3-dialog-step-title{\n  color:rgba(92, 112, 128, 0.6);\n  -webkit-box-flex:1;\n      -ms-flex:1;\n          flex:1;\n  padding-left:10px; }\n  .bp3-dark .bp3-dialog-step-title{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-active.bp3-dialog-step-viewed .bp3-dialog-step-title{\n    color:#2b95d6; }\n  .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n    color:#182026; }\n    .bp3-dark .bp3-dialog-step-viewed:not(.bp3-active) .bp3-dialog-step-title{\n      color:#f5f8fa; }\n.bp3-drawer{\n  background:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0;\n  padding:0; }\n  .bp3-drawer:focus{\n    outline:0; }\n  .bp3-drawer.bp3-position-top{\n    height:50%;\n    left:0;\n    right:0;\n    top:0; }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter, .bp3-drawer.bp3-position-top.bp3-overlay-appear{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-enter-active, .bp3-drawer.bp3-position-top.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-top.bp3-overlay-exit-active{\n      -webkit-transform:translateY(-100%);\n              transform:translateY(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-bottom{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-enter-active, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer.bp3-position-bottom.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-left{\n    bottom:0;\n    left:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter, .bp3-drawer.bp3-position-left.bp3-overlay-appear{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-enter-active, .bp3-drawer.bp3-position-left.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-left.bp3-overlay-exit-active{\n      -webkit-transform:translateX(-100%);\n              transform:translateX(-100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-position-right{\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter, .bp3-drawer.bp3-position-right.bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-enter-active, .bp3-drawer.bp3-position-right.bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer.bp3-position-right.bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right):not(.bp3-vertical){\n    bottom:0;\n    right:0;\n    top:0;\n    width:50%; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear-active{\n      -webkit-transform:translateX(0);\n              transform:translateX(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit{\n      -webkit-transform:translateX(0);\n              transform:translateX(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit-active{\n      -webkit-transform:translateX(100%);\n              transform:translateX(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n  .bp3-position-right).bp3-vertical{\n    bottom:0;\n    height:50%;\n    left:0;\n    right:0; }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-appear-active{\n      -webkit-transform:translateY(0);\n              transform:translateY(0);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:200ms;\n              transition-duration:200ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit{\n      -webkit-transform:translateY(0);\n              transform:translateY(0); }\n    .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(\n    .bp3-position-right).bp3-vertical.bp3-overlay-exit-active{\n      -webkit-transform:translateY(100%);\n              transform:translateY(100%);\n      -webkit-transition-delay:0;\n              transition-delay:0;\n      -webkit-transition-duration:100ms;\n              transition-duration:100ms;\n      -webkit-transition-property:-webkit-transform;\n      transition-property:-webkit-transform;\n      transition-property:transform;\n      transition-property:transform, -webkit-transform;\n      -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n              transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-drawer.bp3-dark,\n  .bp3-dark .bp3-drawer{\n    background:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n\n.bp3-drawer-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border-radius:0;\n  -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  min-height:40px;\n  padding:5px;\n  padding-left:20px;\n  position:relative; }\n  .bp3-drawer-header .bp3-icon-large,\n  .bp3-drawer-header .bp3-icon{\n    color:#5c7080;\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    margin-right:10px; }\n  .bp3-drawer-header .bp3-heading{\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:inherit;\n    margin:0; }\n    .bp3-drawer-header .bp3-heading:last-child{\n      margin-right:20px; }\n  .bp3-dark .bp3-drawer-header{\n    -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-drawer-header .bp3-icon-large,\n    .bp3-dark .bp3-drawer-header .bp3-icon{\n      color:#a7b6c2; }\n\n.bp3-drawer-body{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  line-height:18px;\n  overflow:auto; }\n\n.bp3-drawer-footer{\n  -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  padding:10px 20px;\n  position:relative; }\n  .bp3-dark .bp3-drawer-footer{\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4); }\n.bp3-editable-text{\n  cursor:text;\n  display:inline-block;\n  max-width:100%;\n  position:relative;\n  vertical-align:top;\n  white-space:nowrap; }\n  .bp3-editable-text::before{\n    bottom:-3px;\n    left:-3px;\n    position:absolute;\n    right:-3px;\n    top:-3px;\n    border-radius:3px;\n    content:\"\";\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#137cbd; }\n  .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4); }\n  .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#0f9960; }\n  .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4); }\n  .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#d9822b; }\n  .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4); }\n  .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-input,\n  .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#db3737; }\n  .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4); }\n  .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-editable-text:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-dark .bp3-editable-text.bp3-editable-text-editing::before{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-disabled::before{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{\n    color:#48aff0; }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4);\n            box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{\n    color:#3dcc91; }\n  .bp3-dark .bp3-editable-text.bp3-intent-success:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4);\n            box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{\n    color:#ffb366; }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{\n    color:#ff7373; }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger:hover::before{\n    -webkit-box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4);\n            box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4); }\n  .bp3-dark .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{\n    -webkit-box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-editable-text-input,\n.bp3-editable-text-content{\n  color:inherit;\n  display:inherit;\n  font:inherit;\n  letter-spacing:inherit;\n  max-width:inherit;\n  min-width:inherit;\n  position:relative;\n  resize:none;\n  text-transform:inherit;\n  vertical-align:top; }\n\n.bp3-editable-text-input{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0;\n  white-space:pre-wrap;\n  width:100%; }\n  .bp3-editable-text-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-editable-text-input:focus{\n    outline:none; }\n  .bp3-editable-text-input::-ms-clear{\n    display:none; }\n\n.bp3-editable-text-content{\n  overflow:hidden;\n  padding-right:2px;\n  text-overflow:ellipsis;\n  white-space:pre; }\n  .bp3-editable-text-editing > .bp3-editable-text-content{\n    left:0;\n    position:absolute;\n    visibility:hidden; }\n  .bp3-editable-text-placeholder > .bp3-editable-text-content{\n    color:rgba(92, 112, 128, 0.6); }\n    .bp3-dark .bp3-editable-text-placeholder > .bp3-editable-text-content{\n      color:rgba(167, 182, 194, 0.6); }\n\n.bp3-editable-text.bp3-multiline{\n  display:block; }\n  .bp3-editable-text.bp3-multiline .bp3-editable-text-content{\n    overflow:auto;\n    white-space:pre-wrap;\n    word-wrap:break-word; }\n.bp3-divider{\n  border-bottom:1px solid rgba(16, 22, 26, 0.15);\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  margin:5px; }\n  .bp3-dark .bp3-divider{\n    border-color:rgba(16, 22, 26, 0.4); }\n.bp3-control-group{\n  -webkit-transform:translateZ(0);\n          transform:translateZ(0);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:stretch;\n      -ms-flex-align:stretch;\n          align-items:stretch; }\n  .bp3-control-group > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select,\n  .bp3-control-group .bp3-input,\n  .bp3-control-group .bp3-select{\n    position:relative; }\n  .bp3-control-group .bp3-input{\n    border-radius:inherit;\n    z-index:2; }\n    .bp3-control-group .bp3-input:focus{\n      border-radius:3px;\n      z-index:14; }\n    .bp3-control-group .bp3-input[class*=\"bp3-intent\"]{\n      z-index:13; }\n      .bp3-control-group .bp3-input[class*=\"bp3-intent\"]:focus{\n        z-index:15; }\n    .bp3-control-group .bp3-input[readonly], .bp3-control-group .bp3-input:disabled, .bp3-control-group .bp3-input.bp3-disabled{\n      z-index:1; }\n  .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input{\n    z-index:13; }\n    .bp3-control-group .bp3-input-group[class*=\"bp3-intent\"] .bp3-input:focus{\n      z-index:15; }\n  .bp3-control-group .bp3-button,\n  .bp3-control-group .bp3-html-select select,\n  .bp3-control-group .bp3-select select{\n    -webkit-transform:translateZ(0);\n            transform:translateZ(0);\n    border-radius:inherit;\n    z-index:4; }\n    .bp3-control-group .bp3-button:focus,\n    .bp3-control-group .bp3-html-select select:focus,\n    .bp3-control-group .bp3-select select:focus{\n      z-index:5; }\n    .bp3-control-group .bp3-button:hover,\n    .bp3-control-group .bp3-html-select select:hover,\n    .bp3-control-group .bp3-select select:hover{\n      z-index:6; }\n    .bp3-control-group .bp3-button:active,\n    .bp3-control-group .bp3-html-select select:active,\n    .bp3-control-group .bp3-select select:active{\n      z-index:7; }\n    .bp3-control-group .bp3-button[readonly], .bp3-control-group .bp3-button:disabled, .bp3-control-group .bp3-button.bp3-disabled,\n    .bp3-control-group .bp3-html-select select[readonly],\n    .bp3-control-group .bp3-html-select select:disabled,\n    .bp3-control-group .bp3-html-select select.bp3-disabled,\n    .bp3-control-group .bp3-select select[readonly],\n    .bp3-control-group .bp3-select select:disabled,\n    .bp3-control-group .bp3-select select.bp3-disabled{\n      z-index:3; }\n    .bp3-control-group .bp3-button[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"],\n    .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]{\n      z-index:9; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:focus,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:focus{\n        z-index:10; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:hover,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:hover{\n        z-index:11; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:active,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:active{\n        z-index:12; }\n      .bp3-control-group .bp3-button[class*=\"bp3-intent\"][readonly], .bp3-control-group .bp3-button[class*=\"bp3-intent\"]:disabled, .bp3-control-group .bp3-button[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-html-select select[class*=\"bp3-intent\"].bp3-disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"][readonly],\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"]:disabled,\n      .bp3-control-group .bp3-select select[class*=\"bp3-intent\"].bp3-disabled{\n        z-index:8; }\n  .bp3-control-group .bp3-input-group > .bp3-icon,\n  .bp3-control-group .bp3-input-group > .bp3-button,\n  .bp3-control-group .bp3-input-group > .bp3-input-left-container,\n  .bp3-control-group .bp3-input-group > .bp3-input-action{\n    z-index:16; }\n  .bp3-control-group .bp3-select::after,\n  .bp3-control-group .bp3-html-select::after,\n  .bp3-control-group .bp3-select > .bp3-icon,\n  .bp3-control-group .bp3-html-select > .bp3-icon{\n    z-index:17; }\n  .bp3-control-group .bp3-select:focus-within{\n    z-index:5; }\n  .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:-1px; }\n  .bp3-control-group:not(.bp3-vertical) > .bp3-divider:not(:first-child){\n    margin-left:6px; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){\n    margin-right:0; }\n  .bp3-dark .bp3-control-group:not(.bp3-vertical) > .bp3-button + .bp3-button{\n    margin-left:1px; }\n  .bp3-control-group .bp3-popover-wrapper,\n  .bp3-control-group .bp3-popover-target{\n    border-radius:inherit; }\n  .bp3-control-group > :first-child{\n    border-radius:3px 0 0 3px; }\n  .bp3-control-group > :last-child{\n    border-radius:0 3px 3px 0;\n    margin-right:0; }\n  .bp3-control-group > :only-child{\n    border-radius:3px;\n    margin-right:0; }\n  .bp3-control-group .bp3-input-group .bp3-button{\n    border-radius:3px; }\n  .bp3-control-group .bp3-numeric-input:not(:first-child) .bp3-input-group{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0; }\n  .bp3-control-group.bp3-fill{\n    width:100%; }\n  .bp3-control-group > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-fill > *:not(.bp3-fixed){\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto; }\n  .bp3-control-group.bp3-vertical{\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-control-group.bp3-vertical > *{\n      margin-top:-1px; }\n    .bp3-control-group.bp3-vertical > :first-child{\n      border-radius:3px 3px 0 0;\n      margin-top:0; }\n    .bp3-control-group.bp3-vertical > :last-child{\n      border-radius:0 0 3px 3px; }\n.bp3-control{\n  cursor:pointer;\n  display:block;\n  margin-bottom:10px;\n  position:relative;\n  text-transform:none; }\n  .bp3-control input:checked ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control input:checked ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control:hover input:checked ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control input:disabled:checked ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control:not(.bp3-align-right){\n    padding-left:26px; }\n    .bp3-control:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-26px; }\n  .bp3-control.bp3-align-right{\n    padding-right:26px; }\n    .bp3-control.bp3-align-right .bp3-control-indicator{\n      margin-right:-26px; }\n  .bp3-control.bp3-disabled{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-control.bp3-inline{\n    display:inline-block;\n    margin-right:20px; }\n  .bp3-control input{\n    left:0;\n    opacity:0;\n    position:absolute;\n    top:0;\n    z-index:-1; }\n  .bp3-control .bp3-control-indicator{\n    background-clip:padding-box;\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    border:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    cursor:pointer;\n    display:inline-block;\n    font-size:16px;\n    height:1em;\n    margin-right:10px;\n    margin-top:-3px;\n    position:relative;\n    -webkit-user-select:none;\n       -moz-user-select:none;\n        -ms-user-select:none;\n            user-select:none;\n    vertical-align:middle;\n    width:1em; }\n    .bp3-control .bp3-control-indicator::before{\n      content:\"\";\n      display:block;\n      height:1em;\n      width:1em; }\n  .bp3-control:hover .bp3-control-indicator{\n    background-color:#ebf1f5; }\n  .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n    background:#d8e1e8;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    cursor:not-allowed; }\n  .bp3-control input:focus ~ .bp3-control-indicator{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:2px;\n    -moz-outline-radius:6px; }\n  .bp3-control.bp3-align-right .bp3-control-indicator{\n    float:right;\n    margin-left:10px;\n    margin-top:1px; }\n  .bp3-control.bp3-large{\n    font-size:16px; }\n    .bp3-control.bp3-large:not(.bp3-align-right){\n      padding-left:30px; }\n      .bp3-control.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n        margin-left:-30px; }\n    .bp3-control.bp3-large.bp3-align-right{\n      padding-right:30px; }\n      .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n        margin-right:-30px; }\n    .bp3-control.bp3-large .bp3-control-indicator{\n      font-size:20px; }\n    .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-top:0; }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    background-color:#137cbd;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n    color:#ffffff; }\n  .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background:#0e5a8a;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-dark .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{\n    background-color:#106ba3;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{\n    background-color:#0e5a8a;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-control.bp3-checkbox .bp3-control-indicator{\n    border-radius:3px; }\n  .bp3-control.bp3-checkbox input:checked ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0012 5z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator::before{\n    background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z' fill='white'/%3e%3c/svg%3e\"); }\n  .bp3-control.bp3-radio .bp3-control-indicator{\n    border-radius:50%; }\n  .bp3-control.bp3-radio input:checked ~ .bp3-control-indicator::before{\n    background-image:radial-gradient(#ffffff, #ffffff 28%, transparent 32%); }\n  .bp3-control.bp3-radio input:checked:disabled ~ .bp3-control-indicator::before{\n    opacity:0.5; }\n  .bp3-control.bp3-radio input:focus ~ .bp3-control-indicator{\n    -moz-outline-radius:16px; }\n  .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(167, 182, 194, 0.5); }\n  .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(115, 134, 148, 0.5); }\n  .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(92, 112, 128, 0.5); }\n  .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(206, 217, 224, 0.5); }\n    .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(19, 124, 189, 0.5); }\n    .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(255, 255, 255, 0.8); }\n  .bp3-control.bp3-switch:not(.bp3-align-right){\n    padding-left:38px; }\n    .bp3-control.bp3-switch:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-38px; }\n  .bp3-control.bp3-switch.bp3-align-right{\n    padding-right:38px; }\n    .bp3-control.bp3-switch.bp3-align-right .bp3-control-indicator{\n      margin-right:-38px; }\n  .bp3-control.bp3-switch .bp3-control-indicator{\n    border:none;\n    border-radius:1.75em;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important;\n    min-width:1.75em;\n    -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:auto; }\n    .bp3-control.bp3-switch .bp3-control-indicator::before{\n      background:#ffffff;\n      border-radius:50%;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n      height:calc(1em - 4px);\n      left:0;\n      margin:2px;\n      position:absolute;\n      -webkit-transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n      width:calc(1em - 4px); }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    left:calc(100% - 1em); }\n  .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right){\n    padding-left:45px; }\n    .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right) .bp3-control-indicator{\n      margin-left:-45px; }\n  .bp3-control.bp3-switch.bp3-large.bp3-align-right{\n    padding-right:45px; }\n    .bp3-control.bp3-switch.bp3-large.bp3-align-right .bp3-control-indicator{\n      margin-right:-45px; }\n  .bp3-dark .bp3-control.bp3-switch input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.7); }\n  .bp3-dark .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{\n    background:rgba(16, 22, 26, 0.9); }\n  .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{\n    background:rgba(57, 75, 89, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{\n    background:#137cbd; }\n  .bp3-dark .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{\n    background:#106ba3; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{\n    background:#0e5a8a; }\n  .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{\n    background:rgba(14, 90, 138, 0.5); }\n    .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{\n      background:rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch .bp3-control-indicator::before{\n    background:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-control.bp3-switch .bp3-switch-inner-text{\n    font-size:0.7em;\n    text-align:center; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:first-child{\n    line-height:0;\n    margin-left:0.5em;\n    margin-right:1.2em;\n    visibility:hidden; }\n  .bp3-control.bp3-switch .bp3-control-indicator-child:last-child{\n    line-height:1em;\n    margin-left:1.2em;\n    margin-right:0.5em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:first-child{\n    line-height:1em;\n    visibility:visible; }\n  .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:last-child{\n    line-height:0;\n    visibility:hidden; }\n  .bp3-dark .bp3-control{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-control.bp3-disabled{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-control .bp3-control-indicator{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-control:hover .bp3-control-indicator{\n      background-color:#30404d; }\n    .bp3-dark .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{\n      background:#202b33;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-control input:disabled ~ .bp3-control-indicator{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      cursor:not-allowed; }\n    .bp3-dark .bp3-control.bp3-checkbox input:disabled:checked ~ .bp3-control-indicator, .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-file-input{\n  cursor:pointer;\n  display:inline-block;\n  height:30px;\n  position:relative; }\n  .bp3-file-input input{\n    margin:0;\n    min-width:200px;\n    opacity:0; }\n    .bp3-file-input input:disabled + .bp3-file-upload-input,\n    .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n      background:rgba(206, 217, 224, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      resize:none; }\n      .bp3-file-input input:disabled + .bp3-file-upload-input::after,\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n        background-color:rgba(206, 217, 224, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(92, 112, 128, 0.6);\n        cursor:not-allowed;\n        outline:none; }\n        .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active:hover,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active,\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active:hover{\n          background:rgba(206, 217, 224, 0.7); }\n      .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input, .bp3-dark\n      .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{\n        background:rgba(57, 75, 89, 0.5);\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after, .bp3-dark\n        .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{\n          background-color:rgba(57, 75, 89, 0.5);\n          background-image:none;\n          -webkit-box-shadow:none;\n                  box-shadow:none;\n          color:rgba(167, 182, 194, 0.6); }\n          .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-dark\n          .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active{\n            background:rgba(57, 75, 89, 0.7); }\n  .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#182026; }\n  .bp3-dark .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{\n    color:#f5f8fa; }\n  .bp3-file-input.bp3-fill{\n    width:100%; }\n  .bp3-file-input.bp3-large,\n  .bp3-large .bp3-file-input{\n    height:40px; }\n  .bp3-file-input .bp3-file-upload-input-custom-text::after{\n    content:attr(bp3-button-text); }\n\n.bp3-file-upload-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle;\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:rgba(92, 112, 128, 0.6);\n  left:0;\n  padding-right:80px;\n  position:absolute;\n  right:0;\n  top:0;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-file-upload-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-file-upload-input:focus, .bp3-file-upload-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-file-upload-input[type=\"search\"], .bp3-file-upload-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-file-upload-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-file-upload-input:disabled, .bp3-file-upload-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-file-upload-input::after{\n    background-color:#f5f8fa;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    color:#182026;\n    min-height:24px;\n    min-width:24px;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    border-radius:3px;\n    content:\"Browse\";\n    line-height:24px;\n    margin:3px;\n    position:absolute;\n    right:0;\n    text-align:center;\n    top:0;\n    width:70px; }\n    .bp3-file-upload-input::after:hover{\n      background-clip:padding-box;\n      background-color:#ebf1f5;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n    .bp3-file-upload-input::after:active, .bp3-file-upload-input::after.bp3-active{\n      background-color:#d8e1e8;\n      background-image:none;\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-file-upload-input::after:disabled, .bp3-file-upload-input::after.bp3-disabled{\n      background-color:rgba(206, 217, 224, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(92, 112, 128, 0.6);\n      cursor:not-allowed;\n      outline:none; }\n      .bp3-file-upload-input::after:disabled.bp3-active, .bp3-file-upload-input::after:disabled.bp3-active:hover, .bp3-file-upload-input::after.bp3-disabled.bp3-active, .bp3-file-upload-input::after.bp3-disabled.bp3-active:hover{\n        background:rgba(206, 217, 224, 0.7); }\n  .bp3-file-upload-input:hover::after{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-file-upload-input:active::after{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-large .bp3-file-upload-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px;\n    padding-right:95px; }\n    .bp3-large .bp3-file-upload-input[type=\"search\"], .bp3-large .bp3-file-upload-input.bp3-round{\n      padding:0 15px; }\n    .bp3-large .bp3-file-upload-input::after{\n      min-height:30px;\n      min-width:30px;\n      line-height:30px;\n      margin:5px;\n      width:85px; }\n  .bp3-dark .bp3-file-upload-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:disabled, .bp3-dark .bp3-file-upload-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-file-upload-input::after{\n      background-color:#394b59;\n      background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n      background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n      color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover, .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        color:#f5f8fa; }\n      .bp3-dark .bp3-file-upload-input::after:hover{\n        background-color:#30404d;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{\n        background-color:#202b33;\n        background-image:none;\n        -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n                box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n      .bp3-dark .bp3-file-upload-input::after:disabled, .bp3-dark .bp3-file-upload-input::after.bp3-disabled{\n        background-color:rgba(57, 75, 89, 0.5);\n        background-image:none;\n        -webkit-box-shadow:none;\n                box-shadow:none;\n        color:rgba(167, 182, 194, 0.6); }\n        .bp3-dark .bp3-file-upload-input::after:disabled.bp3-active, .bp3-dark .bp3-file-upload-input::after.bp3-disabled.bp3-active{\n          background:rgba(57, 75, 89, 0.7); }\n      .bp3-dark .bp3-file-upload-input::after .bp3-button-spinner .bp3-spinner-head{\n        background:rgba(16, 22, 26, 0.5);\n        stroke:#8a9ba8; }\n    .bp3-dark .bp3-file-upload-input:hover::after{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-file-upload-input:active::after{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n.bp3-file-upload-input::after{\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n.bp3-form-group{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin:0 0 15px; }\n  .bp3-form-group label.bp3-label{\n    margin-bottom:5px; }\n  .bp3-form-group .bp3-control{\n    margin-top:7px; }\n  .bp3-form-group .bp3-form-helper-text{\n    color:#5c7080;\n    font-size:12px;\n    margin-top:5px; }\n  .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#106ba3; }\n  .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#0d8050; }\n  .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#bf7326; }\n  .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#c23030; }\n  .bp3-form-group.bp3-inline{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row; }\n    .bp3-form-group.bp3-inline.bp3-large label.bp3-label{\n      line-height:40px;\n      margin:0 10px 0 0; }\n    .bp3-form-group.bp3-inline label.bp3-label{\n      line-height:30px;\n      margin:0 10px 0 0; }\n  .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-dark .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{\n    color:#48aff0; }\n  .bp3-dark .bp3-form-group.bp3-intent-success .bp3-form-helper-text{\n    color:#3dcc91; }\n  .bp3-dark .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{\n    color:#ffb366; }\n  .bp3-dark .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{\n    color:#ff7373; }\n  .bp3-dark .bp3-form-group .bp3-form-helper-text{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-label,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-text-muted,\n  .bp3-dark .bp3-form-group.bp3-disabled .bp3-form-helper-text{\n    color:rgba(167, 182, 194, 0.6) !important; }\n.bp3-input-group{\n  display:block;\n  position:relative; }\n  .bp3-input-group .bp3-input{\n    position:relative;\n    width:100%; }\n    .bp3-input-group .bp3-input:not(:first-child){\n      padding-left:30px; }\n    .bp3-input-group .bp3-input:not(:last-child){\n      padding-right:30px; }\n  .bp3-input-group .bp3-input-action,\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-button,\n  .bp3-input-group > .bp3-icon{\n    position:absolute;\n    top:0; }\n    .bp3-input-group .bp3-input-action:first-child,\n    .bp3-input-group > .bp3-input-left-container:first-child,\n    .bp3-input-group > .bp3-button:first-child,\n    .bp3-input-group > .bp3-icon:first-child{\n      left:0; }\n    .bp3-input-group .bp3-input-action:last-child,\n    .bp3-input-group > .bp3-input-left-container:last-child,\n    .bp3-input-group > .bp3-button:last-child,\n    .bp3-input-group > .bp3-icon:last-child{\n      right:0; }\n  .bp3-input-group .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    margin:3px;\n    padding:0 7px; }\n    .bp3-input-group .bp3-button:empty{\n      padding:0; }\n  .bp3-input-group > .bp3-input-left-container,\n  .bp3-input-group > .bp3-icon{\n    z-index:1; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon{\n    color:#5c7080; }\n    .bp3-input-group > .bp3-input-left-container > .bp3-icon:empty,\n    .bp3-input-group > .bp3-icon:empty{\n      font-family:\"Icons16\", sans-serif;\n      font-size:16px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased; }\n  .bp3-input-group > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group > .bp3-icon,\n  .bp3-input-group .bp3-input-action > .bp3-spinner{\n    margin:7px; }\n  .bp3-input-group .bp3-tag{\n    margin:5px; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus),\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n    color:#5c7080; }\n    .bp3-dark .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus), .bp3-dark\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){\n      color:#a7b6c2; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large{\n      color:#5c7080; }\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled,\n  .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled{\n    color:rgba(92, 112, 128, 0.6) !important; }\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-large,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-standard,\n    .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-large{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-input-group.bp3-disabled{\n    cursor:not-allowed; }\n    .bp3-input-group.bp3-disabled .bp3-icon{\n      color:rgba(92, 112, 128, 0.6); }\n  .bp3-input-group.bp3-large .bp3-button{\n    min-height:30px;\n    min-width:30px;\n    margin:5px; }\n  .bp3-input-group.bp3-large > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-large > .bp3-icon,\n  .bp3-input-group.bp3-large .bp3-input-action > .bp3-spinner{\n    margin:12px; }\n  .bp3-input-group.bp3-large .bp3-input{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input-group.bp3-large .bp3-input[type=\"search\"], .bp3-input-group.bp3-large .bp3-input.bp3-round{\n      padding:0 15px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:first-child){\n      padding-left:40px; }\n    .bp3-input-group.bp3-large .bp3-input:not(:last-child){\n      padding-right:40px; }\n  .bp3-input-group.bp3-small .bp3-button{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small .bp3-tag{\n    min-height:20px;\n    min-width:20px;\n    margin:2px; }\n  .bp3-input-group.bp3-small > .bp3-input-left-container > .bp3-icon,\n  .bp3-input-group.bp3-small > .bp3-icon,\n  .bp3-input-group.bp3-small .bp3-input-action > .bp3-spinner{\n    margin:4px; }\n  .bp3-input-group.bp3-small .bp3-input{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input-group.bp3-small .bp3-input[type=\"search\"], .bp3-input-group.bp3-small .bp3-input.bp3-round{\n      padding:0 12px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:first-child){\n      padding-left:24px; }\n    .bp3-input-group.bp3-small .bp3-input:not(:last-child){\n      padding-right:24px; }\n  .bp3-input-group.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-input-group.bp3-round .bp3-button,\n  .bp3-input-group.bp3-round .bp3-input,\n  .bp3-input-group.bp3-round .bp3-tag{\n    border-radius:30px; }\n  .bp3-dark .bp3-input-group .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-input-group.bp3-disabled .bp3-icon{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-input-group.bp3-intent-primary .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-primary .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input-group.bp3-intent-primary .bp3-input:disabled, .bp3-input-group.bp3-intent-primary .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-primary > .bp3-icon{\n    color:#106ba3; }\n    .bp3-dark .bp3-input-group.bp3-intent-primary > .bp3-icon{\n      color:#48aff0; }\n  .bp3-input-group.bp3-intent-success .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-success .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input-group.bp3-intent-success .bp3-input:disabled, .bp3-input-group.bp3-intent-success .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-success > .bp3-icon{\n    color:#0d8050; }\n    .bp3-dark .bp3-input-group.bp3-intent-success > .bp3-icon{\n      color:#3dcc91; }\n  .bp3-input-group.bp3-intent-warning .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-warning .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input-group.bp3-intent-warning .bp3-input:disabled, .bp3-input-group.bp3-intent-warning .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-warning > .bp3-icon{\n    color:#bf7326; }\n    .bp3-dark .bp3-input-group.bp3-intent-warning > .bp3-icon{\n      color:#ffb366; }\n  .bp3-input-group.bp3-intent-danger .bp3-input{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input-group.bp3-intent-danger .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input-group.bp3-intent-danger .bp3-input:disabled, .bp3-input-group.bp3-intent-danger .bp3-input.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-input-group.bp3-intent-danger > .bp3-icon{\n    color:#c23030; }\n    .bp3-dark .bp3-input-group.bp3-intent-danger > .bp3-icon{\n      color:#ff7373; }\n.bp3-input{\n  -webkit-appearance:none;\n     -moz-appearance:none;\n          appearance:none;\n  background:#ffffff;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n  color:#182026;\n  font-size:14px;\n  font-weight:400;\n  height:30px;\n  line-height:30px;\n  outline:none;\n  padding:0 10px;\n  -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  vertical-align:middle; }\n  .bp3-input::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input:focus, .bp3-input.bp3-active{\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-input[type=\"search\"], .bp3-input.bp3-round{\n    border-radius:30px;\n    -webkit-box-sizing:border-box;\n            box-sizing:border-box;\n    padding-left:10px; }\n  .bp3-input[readonly]{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }\n  .bp3-input:disabled, .bp3-input.bp3-disabled{\n    background:rgba(206, 217, 224, 0.5);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    resize:none; }\n  .bp3-input.bp3-large{\n    font-size:16px;\n    height:40px;\n    line-height:40px; }\n    .bp3-input.bp3-large[type=\"search\"], .bp3-input.bp3-large.bp3-round{\n      padding:0 15px; }\n  .bp3-input.bp3-small{\n    font-size:12px;\n    height:24px;\n    line-height:24px;\n    padding-left:8px;\n    padding-right:8px; }\n    .bp3-input.bp3-small[type=\"search\"], .bp3-input.bp3-small.bp3-round{\n      padding:0 12px; }\n  .bp3-input.bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    width:100%; }\n  .bp3-dark .bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-input:disabled, .bp3-dark .bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-input.bp3-intent-primary{\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-primary[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n              box-shadow:inset 0 0 0 1px #137cbd; }\n    .bp3-input.bp3-intent-primary:disabled, .bp3-input.bp3-intent-primary.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary:focus{\n        -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-primary[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #137cbd;\n                box-shadow:inset 0 0 0 1px #137cbd; }\n      .bp3-dark .bp3-input.bp3-intent-primary:disabled, .bp3-dark .bp3-input.bp3-intent-primary.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-success{\n    -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success:focus{\n      -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-success[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n              box-shadow:inset 0 0 0 1px #0f9960; }\n    .bp3-input.bp3-intent-success:disabled, .bp3-input.bp3-intent-success.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success:focus{\n        -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-success[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #0f9960;\n                box-shadow:inset 0 0 0 1px #0f9960; }\n      .bp3-dark .bp3-input.bp3-intent-success:disabled, .bp3-dark .bp3-input.bp3-intent-success.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-warning{\n    -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning:focus{\n      -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-warning[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n              box-shadow:inset 0 0 0 1px #d9822b; }\n    .bp3-input.bp3-intent-warning:disabled, .bp3-input.bp3-intent-warning.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning:focus{\n        -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-warning[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #d9822b;\n                box-shadow:inset 0 0 0 1px #d9822b; }\n      .bp3-dark .bp3-input.bp3-intent-warning:disabled, .bp3-dark .bp3-input.bp3-intent-warning.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input.bp3-intent-danger{\n    -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger:focus{\n      -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-input.bp3-intent-danger[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px #db3737;\n              box-shadow:inset 0 0 0 1px #db3737; }\n    .bp3-input.bp3-intent-danger:disabled, .bp3-input.bp3-intent-danger.bp3-disabled{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-input.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger:focus{\n        -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n                box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n      .bp3-dark .bp3-input.bp3-intent-danger[readonly]{\n        -webkit-box-shadow:inset 0 0 0 1px #db3737;\n                box-shadow:inset 0 0 0 1px #db3737; }\n      .bp3-dark .bp3-input.bp3-intent-danger:disabled, .bp3-dark .bp3-input.bp3-intent-danger.bp3-disabled{\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n  .bp3-input::-ms-clear{\n    display:none; }\ntextarea.bp3-input{\n  max-width:100%;\n  padding:10px; }\n  textarea.bp3-input, textarea.bp3-input.bp3-large, textarea.bp3-input.bp3-small{\n    height:auto;\n    line-height:inherit; }\n  textarea.bp3-input.bp3-small{\n    padding:8px; }\n  .bp3-dark textarea.bp3-input{\n    background:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark textarea.bp3-input::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark textarea.bp3-input:focus{\n      -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input[readonly]{\n      -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark textarea.bp3-input:disabled, .bp3-dark textarea.bp3-input.bp3-disabled{\n      background:rgba(57, 75, 89, 0.5);\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\nlabel.bp3-label{\n  display:block;\n  margin-bottom:15px;\n  margin-top:0; }\n  label.bp3-label .bp3-html-select,\n  label.bp3-label .bp3-input,\n  label.bp3-label .bp3-select,\n  label.bp3-label .bp3-slider,\n  label.bp3-label .bp3-popover-wrapper{\n    display:block;\n    margin-top:5px;\n    text-transform:none; }\n  label.bp3-label .bp3-button-group{\n    margin-top:5px; }\n  label.bp3-label .bp3-select select,\n  label.bp3-label .bp3-html-select select{\n    font-weight:400;\n    vertical-align:top;\n    width:100%; }\n  label.bp3-label.bp3-disabled,\n  label.bp3-label.bp3-disabled .bp3-text-muted{\n    color:rgba(92, 112, 128, 0.6); }\n  label.bp3-label.bp3-inline{\n    line-height:30px; }\n    label.bp3-label.bp3-inline .bp3-html-select,\n    label.bp3-label.bp3-inline .bp3-input,\n    label.bp3-label.bp3-inline .bp3-input-group,\n    label.bp3-label.bp3-inline .bp3-select,\n    label.bp3-label.bp3-inline .bp3-popover-wrapper{\n      display:inline-block;\n      margin:0 0 0 5px;\n      vertical-align:top; }\n    label.bp3-label.bp3-inline .bp3-button-group{\n      margin:0 0 0 5px; }\n    label.bp3-label.bp3-inline .bp3-input-group .bp3-input{\n      margin-left:0; }\n    label.bp3-label.bp3-inline.bp3-large{\n      line-height:40px; }\n  label.bp3-label:not(.bp3-inline) .bp3-popover-target{\n    display:block; }\n  .bp3-dark label.bp3-label{\n    color:#f5f8fa; }\n    .bp3-dark label.bp3-label.bp3-disabled,\n    .bp3-dark label.bp3-label.bp3-disabled .bp3-text-muted{\n      color:rgba(167, 182, 194, 0.6); }\n.bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 14px;\n          flex:1 1 14px;\n  min-height:0;\n  padding:0;\n  width:30px; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:first-child{\n    border-radius:0 3px 0 0; }\n  .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:last-child{\n    border-radius:0 0 3px 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:first-child{\n  border-radius:3px 0 0 0; }\n\n.bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:last-child{\n  border-radius:0 0 0 3px; }\n\n.bp3-numeric-input.bp3-large .bp3-button-group.bp3-vertical > .bp3-button{\n  width:40px; }\n\nform{\n  display:block; }\n.bp3-html-select select,\n.bp3-select select{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  border:none;\n  border-radius:3px;\n  cursor:pointer;\n  font-size:14px;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  padding:5px 10px;\n  text-align:left;\n  vertical-align:middle;\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  -moz-appearance:none;\n  -webkit-appearance:none;\n  border-radius:3px;\n  height:30px;\n  padding:0 25px 0 10px;\n  width:100%; }\n  .bp3-html-select select > *, .bp3-select select > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-html-select select > .bp3-fill, .bp3-select select > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-html-select select::before,\n  .bp3-select select::before, .bp3-html-select select > *, .bp3-select select > *{\n    margin-right:7px; }\n  .bp3-html-select select:empty::before,\n  .bp3-select select:empty::before,\n  .bp3-html-select select > :last-child,\n  .bp3-select select > :last-child{\n    margin-right:0; }\n  .bp3-html-select select:hover,\n  .bp3-select select:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-html-select select:active,\n  .bp3-select select:active, .bp3-html-select select.bp3-active,\n  .bp3-select select.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-html-select select:disabled,\n  .bp3-select select:disabled, .bp3-html-select select.bp3-disabled,\n  .bp3-select select.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-html-select select:disabled.bp3-active,\n    .bp3-select select:disabled.bp3-active, .bp3-html-select select:disabled.bp3-active:hover,\n    .bp3-select select:disabled.bp3-active:hover, .bp3-html-select select.bp3-disabled.bp3-active,\n    .bp3-select select.bp3-disabled.bp3-active, .bp3-html-select select.bp3-disabled.bp3-active:hover,\n    .bp3-select select.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n\n.bp3-html-select.bp3-minimal select,\n.bp3-select.bp3-minimal select{\n  background:none;\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  .bp3-html-select.bp3-minimal select:hover,\n  .bp3-select.bp3-minimal select:hover{\n    background:rgba(167, 182, 194, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026;\n    text-decoration:none; }\n  .bp3-html-select.bp3-minimal select:active,\n  .bp3-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal select.bp3-active,\n  .bp3-select.bp3-minimal select.bp3-active{\n    background:rgba(115, 134, 148, 0.3);\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:#182026; }\n  .bp3-html-select.bp3-minimal select:disabled,\n  .bp3-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal select:disabled:hover,\n  .bp3-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal select.bp3-disabled,\n  .bp3-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal select.bp3-disabled:hover,\n  .bp3-select.bp3-minimal select.bp3-disabled:hover{\n    background:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n    .bp3-html-select.bp3-minimal select:disabled.bp3-active,\n    .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active{\n      background:rgba(115, 134, 148, 0.3); }\n  .bp3-dark .bp3-html-select.bp3-minimal select, .bp3-html-select.bp3-minimal .bp3-dark select,\n  .bp3-dark .bp3-select.bp3-minimal select, .bp3-select.bp3-minimal .bp3-dark select{\n    background:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:inherit; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover, .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover{\n      background:rgba(138, 155, 168, 0.15); }\n    .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,\n    .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{\n      background:rgba(138, 155, 168, 0.3);\n      color:#f5f8fa; }\n    .bp3-dark .bp3-html-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal .bp3-dark select:disabled,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled, .bp3-select.bp3-minimal .bp3-dark select:disabled, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select:disabled:hover, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover{\n      background:none;\n      color:rgba(167, 182, 194, 0.6);\n      cursor:not-allowed; }\n      .bp3-dark .bp3-html-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active{\n        background:rgba(138, 155, 168, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-primary,\n  .bp3-select.bp3-minimal select.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:hover{\n      background:rgba(19, 124, 189, 0.15);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{\n      background:rgba(19, 124, 189, 0.3);\n      color:#106ba3; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled{\n      background:none;\n      color:rgba(16, 107, 163, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active{\n        background:rgba(19, 124, 189, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{\n      stroke:#106ba3; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary{\n      color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover{\n        background:rgba(19, 124, 189, 0.2);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active{\n        background:rgba(19, 124, 189, 0.3);\n        color:#48aff0; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled{\n        background:none;\n        color:rgba(72, 175, 240, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active{\n          background:rgba(19, 124, 189, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-success,\n  .bp3-select.bp3-minimal select.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-success:hover{\n      background:rgba(15, 153, 96, 0.15);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:active,\n    .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{\n      background:rgba(15, 153, 96, 0.3);\n      color:#0d8050; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled{\n      background:none;\n      color:rgba(13, 128, 80, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active{\n        background:rgba(15, 153, 96, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{\n      stroke:#0d8050; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success{\n      color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover{\n        background:rgba(15, 153, 96, 0.2);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active{\n        background:rgba(15, 153, 96, 0.3);\n        color:#3dcc91; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled{\n        background:none;\n        color:rgba(61, 204, 145, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active{\n          background:rgba(15, 153, 96, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-warning,\n  .bp3-select.bp3-minimal select.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:hover{\n      background:rgba(217, 130, 43, 0.15);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{\n      background:rgba(217, 130, 43, 0.3);\n      color:#bf7326; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled{\n      background:none;\n      color:rgba(191, 115, 38, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active{\n        background:rgba(217, 130, 43, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{\n      stroke:#bf7326; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning{\n      color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover{\n        background:rgba(217, 130, 43, 0.2);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active{\n        background:rgba(217, 130, 43, 0.3);\n        color:#ffb366; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled{\n        background:none;\n        color:rgba(255, 179, 102, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active{\n          background:rgba(217, 130, 43, 0.3); }\n  .bp3-html-select.bp3-minimal select.bp3-intent-danger,\n  .bp3-select.bp3-minimal select.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:hover{\n      background:rgba(219, 55, 55, 0.15);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{\n      background:rgba(219, 55, 55, 0.3);\n      color:#c23030; }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled,\n    .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled{\n      background:none;\n      color:rgba(194, 48, 48, 0.5); }\n      .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active,\n      .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active{\n        background:rgba(219, 55, 55, 0.3); }\n    .bp3-html-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{\n      stroke:#c23030; }\n    .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger,\n    .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger{\n      color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover{\n        background:rgba(219, 55, 55, 0.2);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active{\n        background:rgba(219, 55, 55, 0.3);\n        color:#ff7373; }\n      .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled,\n      .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled{\n        background:none;\n        color:rgba(255, 115, 115, 0.5); }\n        .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active,\n        .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active{\n          background:rgba(219, 55, 55, 0.3); }\n\n.bp3-html-select.bp3-large select,\n.bp3-select.bp3-large select{\n  font-size:16px;\n  height:40px;\n  padding-right:35px; }\n\n.bp3-dark .bp3-html-select select, .bp3-dark .bp3-select select{\n  background-color:#394b59;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n  color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover, .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{\n    background-color:#202b33;\n    background-image:none;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-html-select select:disabled, .bp3-dark .bp3-select select:disabled, .bp3-dark .bp3-html-select select.bp3-disabled, .bp3-dark .bp3-select select.bp3-disabled{\n    background-color:rgba(57, 75, 89, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-html-select select:disabled.bp3-active, .bp3-dark .bp3-select select:disabled.bp3-active, .bp3-dark .bp3-html-select select.bp3-disabled.bp3-active, .bp3-dark .bp3-select select.bp3-disabled.bp3-active{\n      background:rgba(57, 75, 89, 0.7); }\n  .bp3-dark .bp3-html-select select .bp3-button-spinner .bp3-spinner-head, .bp3-dark .bp3-select select .bp3-button-spinner .bp3-spinner-head{\n    background:rgba(16, 22, 26, 0.5);\n    stroke:#8a9ba8; }\n\n.bp3-html-select select:disabled,\n.bp3-select select:disabled{\n  background-color:rgba(206, 217, 224, 0.5);\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-html-select .bp3-icon,\n.bp3-select .bp3-icon, .bp3-select::after{\n  color:#5c7080;\n  pointer-events:none;\n  position:absolute;\n  right:7px;\n  top:7px; }\n  .bp3-html-select .bp3-disabled.bp3-icon,\n  .bp3-select .bp3-disabled.bp3-icon, .bp3-disabled.bp3-select::after{\n    color:rgba(92, 112, 128, 0.6); }\n.bp3-html-select,\n.bp3-select{\n  display:inline-block;\n  letter-spacing:normal;\n  position:relative;\n  vertical-align:middle; }\n  .bp3-html-select select::-ms-expand,\n  .bp3-select select::-ms-expand{\n    display:none; }\n  .bp3-html-select .bp3-icon,\n  .bp3-select .bp3-icon{\n    color:#5c7080; }\n    .bp3-html-select .bp3-icon:hover,\n    .bp3-select .bp3-icon:hover{\n      color:#182026; }\n    .bp3-dark .bp3-html-select .bp3-icon, .bp3-dark\n    .bp3-select .bp3-icon{\n      color:#a7b6c2; }\n      .bp3-dark .bp3-html-select .bp3-icon:hover, .bp3-dark\n      .bp3-select .bp3-icon:hover{\n        color:#f5f8fa; }\n  .bp3-html-select.bp3-large::after,\n  .bp3-html-select.bp3-large .bp3-icon,\n  .bp3-select.bp3-large::after,\n  .bp3-select.bp3-large .bp3-icon{\n    right:12px;\n    top:12px; }\n  .bp3-html-select.bp3-fill,\n  .bp3-html-select.bp3-fill select,\n  .bp3-select.bp3-fill,\n  .bp3-select.bp3-fill select{\n    width:100%; }\n  .bp3-dark .bp3-html-select option, .bp3-dark\n  .bp3-select option{\n    background-color:#30404d;\n    color:#f5f8fa; }\n  .bp3-dark .bp3-html-select option:disabled, .bp3-dark\n  .bp3-select option:disabled{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-html-select::after, .bp3-dark\n  .bp3-select::after{\n    color:#a7b6c2; }\n\n.bp3-select::after{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  content:\"\"; }\n.bp3-running-text table, table.bp3-html-table{\n  border-spacing:0;\n  font-size:14px; }\n  .bp3-running-text table th, table.bp3-html-table th,\n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    padding:11px;\n    text-align:left;\n    vertical-align:top; }\n  .bp3-running-text table th, table.bp3-html-table th{\n    color:#182026;\n    font-weight:600; }\n  \n  .bp3-running-text table td,\n  table.bp3-html-table td{\n    color:#182026; }\n  .bp3-running-text table tbody tr:first-child th, table.bp3-html-table tbody tr:first-child th,\n  .bp3-running-text table tbody tr:first-child td,\n  table.bp3-html-table tbody tr:first-child td,\n  .bp3-running-text table tfoot tr:first-child th,\n  table.bp3-html-table tfoot tr:first-child th,\n  .bp3-running-text table tfoot tr:first-child td,\n  table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  .bp3-dark .bp3-running-text table th, .bp3-running-text .bp3-dark table th, .bp3-dark table.bp3-html-table th{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table td, .bp3-running-text .bp3-dark table td, .bp3-dark table.bp3-html-table td{\n    color:#f5f8fa; }\n  .bp3-dark .bp3-running-text table tbody tr:first-child th, .bp3-running-text .bp3-dark table tbody tr:first-child th, .bp3-dark table.bp3-html-table tbody tr:first-child th,\n  .bp3-dark .bp3-running-text table tbody tr:first-child td,\n  .bp3-running-text .bp3-dark table tbody tr:first-child td,\n  .bp3-dark table.bp3-html-table tbody tr:first-child td,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child th,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child th,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child th,\n  .bp3-dark .bp3-running-text table tfoot tr:first-child td,\n  .bp3-running-text .bp3-dark table tfoot tr:first-child td,\n  .bp3-dark table.bp3-html-table tfoot tr:first-child td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-condensed th,\ntable.bp3-html-table.bp3-html-table-condensed td, table.bp3-html-table.bp3-small th,\ntable.bp3-html-table.bp3-small td{\n  padding-bottom:6px;\n  padding-top:6px; }\n\ntable.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n  background:rgba(191, 204, 214, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n  -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered tbody tr td,\ntable.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n  -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);\n          box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }\n  table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n  table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n    -webkit-box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n  -webkit-box-shadow:none;\n          box-shadow:none; }\n  table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }\n\ntable.bp3-html-table.bp3-interactive tbody tr:hover td{\n  background-color:rgba(191, 204, 214, 0.3);\n  cursor:pointer; }\n\ntable.bp3-html-table.bp3-interactive tbody tr:active td{\n  background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-dark table.bp3-html-table{ }\n  .bp3-dark table.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{\n    background:rgba(92, 112, 128, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered th:not(:first-child){\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td,\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td{\n    -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child),\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered tfoot tr td:not(:first-child){\n      -webkit-box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15);\n              box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15); }\n  .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{\n    -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);\n            box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }\n    .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:first-child{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:hover td{\n    background-color:rgba(92, 112, 128, 0.3);\n    cursor:pointer; }\n  .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:active td{\n    background-color:rgba(92, 112, 128, 0.4); }\n\n.bp3-key-combo{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center; }\n  .bp3-key-combo > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-key-combo > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-key-combo::before,\n  .bp3-key-combo > *{\n    margin-right:5px; }\n  .bp3-key-combo:empty::before,\n  .bp3-key-combo > :last-child{\n    margin-right:0; }\n\n.bp3-hotkey-dialog{\n  padding-bottom:0;\n  top:40px; }\n  .bp3-hotkey-dialog .bp3-dialog-body{\n    margin:0;\n    padding:0; }\n  .bp3-hotkey-dialog .bp3-hotkey-label{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1; }\n\n.bp3-hotkey-column{\n  margin:auto;\n  max-height:80vh;\n  overflow-y:auto;\n  padding:30px; }\n  .bp3-hotkey-column .bp3-heading{\n    margin-bottom:20px; }\n    .bp3-hotkey-column .bp3-heading:not(:first-child){\n      margin-top:40px; }\n\n.bp3-hotkey{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:justify;\n      -ms-flex-pack:justify;\n          justify-content:space-between;\n  margin-left:0;\n  margin-right:0; }\n  .bp3-hotkey:not(:last-child){\n    margin-bottom:10px; }\n.bp3-icon{\n  display:inline-block;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  vertical-align:text-bottom; }\n  .bp3-icon:not(:empty)::before{\n    content:\"\" !important;\n    content:unset !important; }\n  .bp3-icon > svg{\n    display:block; }\n    .bp3-icon > svg:not([fill]){\n      fill:currentColor; }\n\n.bp3-icon.bp3-intent-primary, .bp3-icon-standard.bp3-intent-primary, .bp3-icon-large.bp3-intent-primary{\n  color:#106ba3; }\n  .bp3-dark .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-icon-large.bp3-intent-primary{\n    color:#48aff0; }\n\n.bp3-icon.bp3-intent-success, .bp3-icon-standard.bp3-intent-success, .bp3-icon-large.bp3-intent-success{\n  color:#0d8050; }\n  .bp3-dark .bp3-icon.bp3-intent-success, .bp3-dark .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-icon-large.bp3-intent-success{\n    color:#3dcc91; }\n\n.bp3-icon.bp3-intent-warning, .bp3-icon-standard.bp3-intent-warning, .bp3-icon-large.bp3-intent-warning{\n  color:#bf7326; }\n  .bp3-dark .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-icon-large.bp3-intent-warning{\n    color:#ffb366; }\n\n.bp3-icon.bp3-intent-danger, .bp3-icon-standard.bp3-intent-danger, .bp3-icon-large.bp3-intent-danger{\n  color:#c23030; }\n  .bp3-dark .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-icon-large.bp3-intent-danger{\n    color:#ff7373; }\n\nspan.bp3-icon-standard{\n  font-family:\"Icons16\", sans-serif;\n  font-size:16px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon-large{\n  font-family:\"Icons20\", sans-serif;\n  font-size:20px;\n  font-style:normal;\n  font-weight:400;\n  line-height:1;\n  -moz-osx-font-smoothing:grayscale;\n  -webkit-font-smoothing:antialiased;\n  display:inline-block; }\n\nspan.bp3-icon:empty{\n  font-family:\"Icons20\";\n  font-size:inherit;\n  font-style:normal;\n  font-weight:400;\n  line-height:1; }\n  span.bp3-icon:empty::before{\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased; }\n\n.bp3-icon-add::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-add-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-add-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-artifact::before{\n  content:\"\"; }\n\n.bp3-icon-add-to-folder::before{\n  content:\"\"; }\n\n.bp3-icon-airplane::before{\n  content:\"\"; }\n\n.bp3-icon-align-center::before{\n  content:\"\"; }\n\n.bp3-icon-align-justify::before{\n  content:\"\"; }\n\n.bp3-icon-align-left::before{\n  content:\"\"; }\n\n.bp3-icon-align-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-horizontal-center::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-left::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-right::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-top::before{\n  content:\"\"; }\n\n.bp3-icon-alignment-vertical-center::before{\n  content:\"\"; }\n\n.bp3-icon-annotation::before{\n  content:\"\"; }\n\n.bp3-icon-application::before{\n  content:\"\"; }\n\n.bp3-icon-applications::before{\n  content:\"\"; }\n\n.bp3-icon-archive::before{\n  content:\"\"; }\n\n.bp3-icon-arrow-bottom-left::before{\n  content:\"↙\"; }\n\n.bp3-icon-arrow-bottom-right::before{\n  content:\"↘\"; }\n\n.bp3-icon-arrow-down::before{\n  content:\"↓\"; }\n\n.bp3-icon-arrow-left::before{\n  content:\"←\"; }\n\n.bp3-icon-arrow-right::before{\n  content:\"→\"; }\n\n.bp3-icon-arrow-top-left::before{\n  content:\"↖\"; }\n\n.bp3-icon-arrow-top-right::before{\n  content:\"↗\"; }\n\n.bp3-icon-arrow-up::before{\n  content:\"↑\"; }\n\n.bp3-icon-arrows-horizontal::before{\n  content:\"↔\"; }\n\n.bp3-icon-arrows-vertical::before{\n  content:\"↕\"; }\n\n.bp3-icon-asterisk::before{\n  content:\"*\"; }\n\n.bp3-icon-automatic-updates::before{\n  content:\"\"; }\n\n.bp3-icon-badge::before{\n  content:\"\"; }\n\n.bp3-icon-ban-circle::before{\n  content:\"\"; }\n\n.bp3-icon-bank-account::before{\n  content:\"\"; }\n\n.bp3-icon-barcode::before{\n  content:\"\"; }\n\n.bp3-icon-blank::before{\n  content:\"\"; }\n\n.bp3-icon-blocked-person::before{\n  content:\"\"; }\n\n.bp3-icon-bold::before{\n  content:\"\"; }\n\n.bp3-icon-book::before{\n  content:\"\"; }\n\n.bp3-icon-bookmark::before{\n  content:\"\"; }\n\n.bp3-icon-box::before{\n  content:\"\"; }\n\n.bp3-icon-briefcase::before{\n  content:\"\"; }\n\n.bp3-icon-bring-data::before{\n  content:\"\"; }\n\n.bp3-icon-build::before{\n  content:\"\"; }\n\n.bp3-icon-calculator::before{\n  content:\"\"; }\n\n.bp3-icon-calendar::before{\n  content:\"\"; }\n\n.bp3-icon-camera::before{\n  content:\"\"; }\n\n.bp3-icon-caret-down::before{\n  content:\"⌄\"; }\n\n.bp3-icon-caret-left::before{\n  content:\"〈\"; }\n\n.bp3-icon-caret-right::before{\n  content:\"〉\"; }\n\n.bp3-icon-caret-up::before{\n  content:\"⌃\"; }\n\n.bp3-icon-cell-tower::before{\n  content:\"\"; }\n\n.bp3-icon-changes::before{\n  content:\"\"; }\n\n.bp3-icon-chart::before{\n  content:\"\"; }\n\n.bp3-icon-chat::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-backward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-forward::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-circle::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-down::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-left::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-right::before{\n  content:\"\"; }\n\n.bp3-icon-circle-arrow-up::before{\n  content:\"\"; }\n\n.bp3-icon-citation::before{\n  content:\"\"; }\n\n.bp3-icon-clean::before{\n  content:\"\"; }\n\n.bp3-icon-clipboard::before{\n  content:\"\"; }\n\n.bp3-icon-cloud::before{\n  content:\"☁\"; }\n\n.bp3-icon-cloud-download::before{\n  content:\"\"; }\n\n.bp3-icon-cloud-upload::before{\n  content:\"\"; }\n\n.bp3-icon-code::before{\n  content:\"\"; }\n\n.bp3-icon-code-block::before{\n  content:\"\"; }\n\n.bp3-icon-cog::before{\n  content:\"\"; }\n\n.bp3-icon-collapse-all::before{\n  content:\"\"; }\n\n.bp3-icon-column-layout::before{\n  content:\"\"; }\n\n.bp3-icon-comment::before{\n  content:\"\"; }\n\n.bp3-icon-comparison::before{\n  content:\"\"; }\n\n.bp3-icon-compass::before{\n  content:\"\"; }\n\n.bp3-icon-compressed::before{\n  content:\"\"; }\n\n.bp3-icon-confirm::before{\n  content:\"\"; }\n\n.bp3-icon-console::before{\n  content:\"\"; }\n\n.bp3-icon-contrast::before{\n  content:\"\"; }\n\n.bp3-icon-control::before{\n  content:\"\"; }\n\n.bp3-icon-credit-card::before{\n  content:\"\"; }\n\n.bp3-icon-cross::before{\n  content:\"✗\"; }\n\n.bp3-icon-crown::before{\n  content:\"\"; }\n\n.bp3-icon-cube::before{\n  content:\"\"; }\n\n.bp3-icon-cube-add::before{\n  content:\"\"; }\n\n.bp3-icon-cube-remove::before{\n  content:\"\"; }\n\n.bp3-icon-curved-range-chart::before{\n  content:\"\"; }\n\n.bp3-icon-cut::before{\n  content:\"\"; }\n\n.bp3-icon-dashboard::before{\n  content:\"\"; }\n\n.bp3-icon-data-lineage::before{\n  content:\"\"; }\n\n.bp3-icon-database::before{\n  content:\"\"; }\n\n.bp3-icon-delete::before{\n  content:\"\"; }\n\n.bp3-icon-delta::before{\n  content:\"Δ\"; }\n\n.bp3-icon-derive-column::before{\n  content:\"\"; }\n\n.bp3-icon-desktop::before{\n  content:\"\"; }\n\n.bp3-icon-diagnosis::before{\n  content:\"\"; }\n\n.bp3-icon-diagram-tree::before{\n  content:\"\"; }\n\n.bp3-icon-direction-left::before{\n  content:\"\"; }\n\n.bp3-icon-direction-right::before{\n  content:\"\"; }\n\n.bp3-icon-disable::before{\n  content:\"\"; }\n\n.bp3-icon-document::before{\n  content:\"\"; }\n\n.bp3-icon-document-open::before{\n  content:\"\"; }\n\n.bp3-icon-document-share::before{\n  content:\"\"; }\n\n.bp3-icon-dollar::before{\n  content:\"$\"; }\n\n.bp3-icon-dot::before{\n  content:\"•\"; }\n\n.bp3-icon-double-caret-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-double-caret-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-down::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-left::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-right::before{\n  content:\"\"; }\n\n.bp3-icon-double-chevron-up::before{\n  content:\"\"; }\n\n.bp3-icon-doughnut-chart::before{\n  content:\"\"; }\n\n.bp3-icon-download::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-drag-handle-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-draw::before{\n  content:\"\"; }\n\n.bp3-icon-drive-time::before{\n  content:\"\"; }\n\n.bp3-icon-duplicate::before{\n  content:\"\"; }\n\n.bp3-icon-edit::before{\n  content:\"✎\"; }\n\n.bp3-icon-eject::before{\n  content:\"⏏\"; }\n\n.bp3-icon-endorsed::before{\n  content:\"\"; }\n\n.bp3-icon-envelope::before{\n  content:\"✉\"; }\n\n.bp3-icon-equals::before{\n  content:\"\"; }\n\n.bp3-icon-eraser::before{\n  content:\"\"; }\n\n.bp3-icon-error::before{\n  content:\"\"; }\n\n.bp3-icon-euro::before{\n  content:\"€\"; }\n\n.bp3-icon-exchange::before{\n  content:\"\"; }\n\n.bp3-icon-exclude-row::before{\n  content:\"\"; }\n\n.bp3-icon-expand-all::before{\n  content:\"\"; }\n\n.bp3-icon-export::before{\n  content:\"\"; }\n\n.bp3-icon-eye-off::before{\n  content:\"\"; }\n\n.bp3-icon-eye-on::before{\n  content:\"\"; }\n\n.bp3-icon-eye-open::before{\n  content:\"\"; }\n\n.bp3-icon-fast-backward::before{\n  content:\"\"; }\n\n.bp3-icon-fast-forward::before{\n  content:\"\"; }\n\n.bp3-icon-feed::before{\n  content:\"\"; }\n\n.bp3-icon-feed-subscribed::before{\n  content:\"\"; }\n\n.bp3-icon-film::before{\n  content:\"\"; }\n\n.bp3-icon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-filter-keep::before{\n  content:\"\"; }\n\n.bp3-icon-filter-list::before{\n  content:\"\"; }\n\n.bp3-icon-filter-open::before{\n  content:\"\"; }\n\n.bp3-icon-filter-remove::before{\n  content:\"\"; }\n\n.bp3-icon-flag::before{\n  content:\"⚑\"; }\n\n.bp3-icon-flame::before{\n  content:\"\"; }\n\n.bp3-icon-flash::before{\n  content:\"\"; }\n\n.bp3-icon-floppy-disk::before{\n  content:\"\"; }\n\n.bp3-icon-flow-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flow-end::before{\n  content:\"\"; }\n\n.bp3-icon-flow-linear::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review::before{\n  content:\"\"; }\n\n.bp3-icon-flow-review-branch::before{\n  content:\"\"; }\n\n.bp3-icon-flows::before{\n  content:\"\"; }\n\n.bp3-icon-folder-close::before{\n  content:\"\"; }\n\n.bp3-icon-folder-new::before{\n  content:\"\"; }\n\n.bp3-icon-folder-open::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared::before{\n  content:\"\"; }\n\n.bp3-icon-folder-shared-open::before{\n  content:\"\"; }\n\n.bp3-icon-follower::before{\n  content:\"\"; }\n\n.bp3-icon-following::before{\n  content:\"\"; }\n\n.bp3-icon-font::before{\n  content:\"\"; }\n\n.bp3-icon-fork::before{\n  content:\"\"; }\n\n.bp3-icon-form::before{\n  content:\"\"; }\n\n.bp3-icon-full-circle::before{\n  content:\"\"; }\n\n.bp3-icon-full-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-fullscreen::before{\n  content:\"\"; }\n\n.bp3-icon-function::before{\n  content:\"\"; }\n\n.bp3-icon-gantt-chart::before{\n  content:\"\"; }\n\n.bp3-icon-geolocation::before{\n  content:\"\"; }\n\n.bp3-icon-geosearch::before{\n  content:\"\"; }\n\n.bp3-icon-git-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-commit::before{\n  content:\"\"; }\n\n.bp3-icon-git-merge::before{\n  content:\"\"; }\n\n.bp3-icon-git-new-branch::before{\n  content:\"\"; }\n\n.bp3-icon-git-pull::before{\n  content:\"\"; }\n\n.bp3-icon-git-push::before{\n  content:\"\"; }\n\n.bp3-icon-git-repo::before{\n  content:\"\"; }\n\n.bp3-icon-glass::before{\n  content:\"\"; }\n\n.bp3-icon-globe::before{\n  content:\"\"; }\n\n.bp3-icon-globe-network::before{\n  content:\"\"; }\n\n.bp3-icon-graph::before{\n  content:\"\"; }\n\n.bp3-icon-graph-remove::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than::before{\n  content:\"\"; }\n\n.bp3-icon-greater-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-grid::before{\n  content:\"\"; }\n\n.bp3-icon-grid-view::before{\n  content:\"\"; }\n\n.bp3-icon-group-objects::before{\n  content:\"\"; }\n\n.bp3-icon-grouped-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-hand::before{\n  content:\"\"; }\n\n.bp3-icon-hand-down::before{\n  content:\"\"; }\n\n.bp3-icon-hand-left::before{\n  content:\"\"; }\n\n.bp3-icon-hand-right::before{\n  content:\"\"; }\n\n.bp3-icon-hand-up::before{\n  content:\"\"; }\n\n.bp3-icon-header::before{\n  content:\"\"; }\n\n.bp3-icon-header-one::before{\n  content:\"\"; }\n\n.bp3-icon-header-two::before{\n  content:\"\"; }\n\n.bp3-icon-headset::before{\n  content:\"\"; }\n\n.bp3-icon-heart::before{\n  content:\"♥\"; }\n\n.bp3-icon-heart-broken::before{\n  content:\"\"; }\n\n.bp3-icon-heat-grid::before{\n  content:\"\"; }\n\n.bp3-icon-heatmap::before{\n  content:\"\"; }\n\n.bp3-icon-help::before{\n  content:\"?\"; }\n\n.bp3-icon-helper-management::before{\n  content:\"\"; }\n\n.bp3-icon-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-history::before{\n  content:\"\"; }\n\n.bp3-icon-home::before{\n  content:\"⌂\"; }\n\n.bp3-icon-horizontal-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-horizontal-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-id-number::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-left::before{\n  content:\"\"; }\n\n.bp3-icon-image-rotate-right::before{\n  content:\"\"; }\n\n.bp3-icon-import::before{\n  content:\"\"; }\n\n.bp3-icon-inbox::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-geo::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-search::before{\n  content:\"\"; }\n\n.bp3-icon-inbox-update::before{\n  content:\"\"; }\n\n.bp3-icon-info-sign::before{\n  content:\"ℹ\"; }\n\n.bp3-icon-inheritance::before{\n  content:\"\"; }\n\n.bp3-icon-inner-join::before{\n  content:\"\"; }\n\n.bp3-icon-insert::before{\n  content:\"\"; }\n\n.bp3-icon-intersection::before{\n  content:\"\"; }\n\n.bp3-icon-ip-address::before{\n  content:\"\"; }\n\n.bp3-icon-issue::before{\n  content:\"\"; }\n\n.bp3-icon-issue-closed::before{\n  content:\"\"; }\n\n.bp3-icon-issue-new::before{\n  content:\"\"; }\n\n.bp3-icon-italic::before{\n  content:\"\"; }\n\n.bp3-icon-join-table::before{\n  content:\"\"; }\n\n.bp3-icon-key::before{\n  content:\"\"; }\n\n.bp3-icon-key-backspace::before{\n  content:\"\"; }\n\n.bp3-icon-key-command::before{\n  content:\"\"; }\n\n.bp3-icon-key-control::before{\n  content:\"\"; }\n\n.bp3-icon-key-delete::before{\n  content:\"\"; }\n\n.bp3-icon-key-enter::before{\n  content:\"\"; }\n\n.bp3-icon-key-escape::before{\n  content:\"\"; }\n\n.bp3-icon-key-option::before{\n  content:\"\"; }\n\n.bp3-icon-key-shift::before{\n  content:\"\"; }\n\n.bp3-icon-key-tab::before{\n  content:\"\"; }\n\n.bp3-icon-known-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-lab-test::before{\n  content:\"\"; }\n\n.bp3-icon-label::before{\n  content:\"\"; }\n\n.bp3-icon-layer::before{\n  content:\"\"; }\n\n.bp3-icon-layers::before{\n  content:\"\"; }\n\n.bp3-icon-layout::before{\n  content:\"\"; }\n\n.bp3-icon-layout-auto::before{\n  content:\"\"; }\n\n.bp3-icon-layout-balloon::before{\n  content:\"\"; }\n\n.bp3-icon-layout-circle::before{\n  content:\"\"; }\n\n.bp3-icon-layout-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-group-by::before{\n  content:\"\"; }\n\n.bp3-icon-layout-hierarchy::before{\n  content:\"\"; }\n\n.bp3-icon-layout-linear::before{\n  content:\"\"; }\n\n.bp3-icon-layout-skew-grid::before{\n  content:\"\"; }\n\n.bp3-icon-layout-sorted-clusters::before{\n  content:\"\"; }\n\n.bp3-icon-learning::before{\n  content:\"\"; }\n\n.bp3-icon-left-join::before{\n  content:\"\"; }\n\n.bp3-icon-less-than::before{\n  content:\"\"; }\n\n.bp3-icon-less-than-or-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-lifesaver::before{\n  content:\"\"; }\n\n.bp3-icon-lightbulb::before{\n  content:\"\"; }\n\n.bp3-icon-link::before{\n  content:\"\"; }\n\n.bp3-icon-list::before{\n  content:\"☰\"; }\n\n.bp3-icon-list-columns::before{\n  content:\"\"; }\n\n.bp3-icon-list-detail-view::before{\n  content:\"\"; }\n\n.bp3-icon-locate::before{\n  content:\"\"; }\n\n.bp3-icon-lock::before{\n  content:\"\"; }\n\n.bp3-icon-log-in::before{\n  content:\"\"; }\n\n.bp3-icon-log-out::before{\n  content:\"\"; }\n\n.bp3-icon-manual::before{\n  content:\"\"; }\n\n.bp3-icon-manually-entered-data::before{\n  content:\"\"; }\n\n.bp3-icon-map::before{\n  content:\"\"; }\n\n.bp3-icon-map-create::before{\n  content:\"\"; }\n\n.bp3-icon-map-marker::before{\n  content:\"\"; }\n\n.bp3-icon-maximize::before{\n  content:\"\"; }\n\n.bp3-icon-media::before{\n  content:\"\"; }\n\n.bp3-icon-menu::before{\n  content:\"\"; }\n\n.bp3-icon-menu-closed::before{\n  content:\"\"; }\n\n.bp3-icon-menu-open::before{\n  content:\"\"; }\n\n.bp3-icon-merge-columns::before{\n  content:\"\"; }\n\n.bp3-icon-merge-links::before{\n  content:\"\"; }\n\n.bp3-icon-minimize::before{\n  content:\"\"; }\n\n.bp3-icon-minus::before{\n  content:\"−\"; }\n\n.bp3-icon-mobile-phone::before{\n  content:\"\"; }\n\n.bp3-icon-mobile-video::before{\n  content:\"\"; }\n\n.bp3-icon-moon::before{\n  content:\"\"; }\n\n.bp3-icon-more::before{\n  content:\"\"; }\n\n.bp3-icon-mountain::before{\n  content:\"\"; }\n\n.bp3-icon-move::before{\n  content:\"\"; }\n\n.bp3-icon-mugshot::before{\n  content:\"\"; }\n\n.bp3-icon-multi-select::before{\n  content:\"\"; }\n\n.bp3-icon-music::before{\n  content:\"\"; }\n\n.bp3-icon-new-drawing::before{\n  content:\"\"; }\n\n.bp3-icon-new-grid-item::before{\n  content:\"\"; }\n\n.bp3-icon-new-layer::before{\n  content:\"\"; }\n\n.bp3-icon-new-layers::before{\n  content:\"\"; }\n\n.bp3-icon-new-link::before{\n  content:\"\"; }\n\n.bp3-icon-new-object::before{\n  content:\"\"; }\n\n.bp3-icon-new-person::before{\n  content:\"\"; }\n\n.bp3-icon-new-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-new-text-box::before{\n  content:\"\"; }\n\n.bp3-icon-ninja::before{\n  content:\"\"; }\n\n.bp3-icon-not-equal-to::before{\n  content:\"\"; }\n\n.bp3-icon-notifications::before{\n  content:\"\"; }\n\n.bp3-icon-notifications-updated::before{\n  content:\"\"; }\n\n.bp3-icon-numbered-list::before{\n  content:\"\"; }\n\n.bp3-icon-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-office::before{\n  content:\"\"; }\n\n.bp3-icon-offline::before{\n  content:\"\"; }\n\n.bp3-icon-oil-field::before{\n  content:\"\"; }\n\n.bp3-icon-one-column::before{\n  content:\"\"; }\n\n.bp3-icon-outdated::before{\n  content:\"\"; }\n\n.bp3-icon-page-layout::before{\n  content:\"\"; }\n\n.bp3-icon-panel-stats::before{\n  content:\"\"; }\n\n.bp3-icon-panel-table::before{\n  content:\"\"; }\n\n.bp3-icon-paperclip::before{\n  content:\"\"; }\n\n.bp3-icon-paragraph::before{\n  content:\"\"; }\n\n.bp3-icon-path::before{\n  content:\"\"; }\n\n.bp3-icon-path-search::before{\n  content:\"\"; }\n\n.bp3-icon-pause::before{\n  content:\"\"; }\n\n.bp3-icon-people::before{\n  content:\"\"; }\n\n.bp3-icon-percentage::before{\n  content:\"\"; }\n\n.bp3-icon-person::before{\n  content:\"\"; }\n\n.bp3-icon-phone::before{\n  content:\"☎\"; }\n\n.bp3-icon-pie-chart::before{\n  content:\"\"; }\n\n.bp3-icon-pin::before{\n  content:\"\"; }\n\n.bp3-icon-pivot::before{\n  content:\"\"; }\n\n.bp3-icon-pivot-table::before{\n  content:\"\"; }\n\n.bp3-icon-play::before{\n  content:\"\"; }\n\n.bp3-icon-plus::before{\n  content:\"+\"; }\n\n.bp3-icon-polygon-filter::before{\n  content:\"\"; }\n\n.bp3-icon-power::before{\n  content:\"\"; }\n\n.bp3-icon-predictive-analysis::before{\n  content:\"\"; }\n\n.bp3-icon-prescription::before{\n  content:\"\"; }\n\n.bp3-icon-presentation::before{\n  content:\"\"; }\n\n.bp3-icon-print::before{\n  content:\"⎙\"; }\n\n.bp3-icon-projects::before{\n  content:\"\"; }\n\n.bp3-icon-properties::before{\n  content:\"\"; }\n\n.bp3-icon-property::before{\n  content:\"\"; }\n\n.bp3-icon-publish-function::before{\n  content:\"\"; }\n\n.bp3-icon-pulse::before{\n  content:\"\"; }\n\n.bp3-icon-random::before{\n  content:\"\"; }\n\n.bp3-icon-record::before{\n  content:\"\"; }\n\n.bp3-icon-redo::before{\n  content:\"\"; }\n\n.bp3-icon-refresh::before{\n  content:\"\"; }\n\n.bp3-icon-regression-chart::before{\n  content:\"\"; }\n\n.bp3-icon-remove::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-left::before{\n  content:\"\"; }\n\n.bp3-icon-remove-column-right::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-bottom::before{\n  content:\"\"; }\n\n.bp3-icon-remove-row-top::before{\n  content:\"\"; }\n\n.bp3-icon-repeat::before{\n  content:\"\"; }\n\n.bp3-icon-reset::before{\n  content:\"\"; }\n\n.bp3-icon-resolve::before{\n  content:\"\"; }\n\n.bp3-icon-rig::before{\n  content:\"\"; }\n\n.bp3-icon-right-join::before{\n  content:\"\"; }\n\n.bp3-icon-ring::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-document::before{\n  content:\"\"; }\n\n.bp3-icon-rotate-page::before{\n  content:\"\"; }\n\n.bp3-icon-satellite::before{\n  content:\"\"; }\n\n.bp3-icon-saved::before{\n  content:\"\"; }\n\n.bp3-icon-scatter-plot::before{\n  content:\"\"; }\n\n.bp3-icon-search::before{\n  content:\"\"; }\n\n.bp3-icon-search-around::before{\n  content:\"\"; }\n\n.bp3-icon-search-template::before{\n  content:\"\"; }\n\n.bp3-icon-search-text::before{\n  content:\"\"; }\n\n.bp3-icon-segmented-control::before{\n  content:\"\"; }\n\n.bp3-icon-select::before{\n  content:\"\"; }\n\n.bp3-icon-selection::before{\n  content:\"⦿\"; }\n\n.bp3-icon-send-to::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-graph::before{\n  content:\"\"; }\n\n.bp3-icon-send-to-map::before{\n  content:\"\"; }\n\n.bp3-icon-series-add::before{\n  content:\"\"; }\n\n.bp3-icon-series-configuration::before{\n  content:\"\"; }\n\n.bp3-icon-series-derived::before{\n  content:\"\"; }\n\n.bp3-icon-series-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-series-search::before{\n  content:\"\"; }\n\n.bp3-icon-settings::before{\n  content:\"\"; }\n\n.bp3-icon-share::before{\n  content:\"\"; }\n\n.bp3-icon-shield::before{\n  content:\"\"; }\n\n.bp3-icon-shop::before{\n  content:\"\"; }\n\n.bp3-icon-shopping-cart::before{\n  content:\"\"; }\n\n.bp3-icon-signal-search::before{\n  content:\"\"; }\n\n.bp3-icon-sim-card::before{\n  content:\"\"; }\n\n.bp3-icon-slash::before{\n  content:\"\"; }\n\n.bp3-icon-small-cross::before{\n  content:\"\"; }\n\n.bp3-icon-small-minus::before{\n  content:\"\"; }\n\n.bp3-icon-small-plus::before{\n  content:\"\"; }\n\n.bp3-icon-small-tick::before{\n  content:\"\"; }\n\n.bp3-icon-snowflake::before{\n  content:\"\"; }\n\n.bp3-icon-social-media::before{\n  content:\"\"; }\n\n.bp3-icon-sort::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-alphabetical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-asc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-desc::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical::before{\n  content:\"\"; }\n\n.bp3-icon-sort-numerical-desc::before{\n  content:\"\"; }\n\n.bp3-icon-split-columns::before{\n  content:\"\"; }\n\n.bp3-icon-square::before{\n  content:\"\"; }\n\n.bp3-icon-stacked-chart::before{\n  content:\"\"; }\n\n.bp3-icon-star::before{\n  content:\"★\"; }\n\n.bp3-icon-star-empty::before{\n  content:\"☆\"; }\n\n.bp3-icon-step-backward::before{\n  content:\"\"; }\n\n.bp3-icon-step-chart::before{\n  content:\"\"; }\n\n.bp3-icon-step-forward::before{\n  content:\"\"; }\n\n.bp3-icon-stop::before{\n  content:\"\"; }\n\n.bp3-icon-stopwatch::before{\n  content:\"\"; }\n\n.bp3-icon-strikethrough::before{\n  content:\"\"; }\n\n.bp3-icon-style::before{\n  content:\"\"; }\n\n.bp3-icon-swap-horizontal::before{\n  content:\"\"; }\n\n.bp3-icon-swap-vertical::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-circle::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-cross::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-diamond::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-square::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-down::before{\n  content:\"\"; }\n\n.bp3-icon-symbol-triangle-up::before{\n  content:\"\"; }\n\n.bp3-icon-tag::before{\n  content:\"\"; }\n\n.bp3-icon-take-action::before{\n  content:\"\"; }\n\n.bp3-icon-taxi::before{\n  content:\"\"; }\n\n.bp3-icon-text-highlight::before{\n  content:\"\"; }\n\n.bp3-icon-th::before{\n  content:\"\"; }\n\n.bp3-icon-th-derived::before{\n  content:\"\"; }\n\n.bp3-icon-th-disconnect::before{\n  content:\"\"; }\n\n.bp3-icon-th-filtered::before{\n  content:\"\"; }\n\n.bp3-icon-th-list::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-down::before{\n  content:\"\"; }\n\n.bp3-icon-thumbs-up::before{\n  content:\"\"; }\n\n.bp3-icon-tick::before{\n  content:\"✓\"; }\n\n.bp3-icon-tick-circle::before{\n  content:\"\"; }\n\n.bp3-icon-time::before{\n  content:\"⏲\"; }\n\n.bp3-icon-timeline-area-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-bar-chart::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-events::before{\n  content:\"\"; }\n\n.bp3-icon-timeline-line-chart::before{\n  content:\"\"; }\n\n.bp3-icon-tint::before{\n  content:\"\"; }\n\n.bp3-icon-torch::before{\n  content:\"\"; }\n\n.bp3-icon-tractor::before{\n  content:\"\"; }\n\n.bp3-icon-train::before{\n  content:\"\"; }\n\n.bp3-icon-translate::before{\n  content:\"\"; }\n\n.bp3-icon-trash::before{\n  content:\"\"; }\n\n.bp3-icon-tree::before{\n  content:\"\"; }\n\n.bp3-icon-trending-down::before{\n  content:\"\"; }\n\n.bp3-icon-trending-up::before{\n  content:\"\"; }\n\n.bp3-icon-truck::before{\n  content:\"\"; }\n\n.bp3-icon-two-columns::before{\n  content:\"\"; }\n\n.bp3-icon-unarchive::before{\n  content:\"\"; }\n\n.bp3-icon-underline::before{\n  content:\"⎁\"; }\n\n.bp3-icon-undo::before{\n  content:\"⎌\"; }\n\n.bp3-icon-ungroup-objects::before{\n  content:\"\"; }\n\n.bp3-icon-unknown-vehicle::before{\n  content:\"\"; }\n\n.bp3-icon-unlock::before{\n  content:\"\"; }\n\n.bp3-icon-unpin::before{\n  content:\"\"; }\n\n.bp3-icon-unresolve::before{\n  content:\"\"; }\n\n.bp3-icon-updated::before{\n  content:\"\"; }\n\n.bp3-icon-upload::before{\n  content:\"\"; }\n\n.bp3-icon-user::before{\n  content:\"\"; }\n\n.bp3-icon-variable::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-asc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-bar-chart-desc::before{\n  content:\"\"; }\n\n.bp3-icon-vertical-distribution::before{\n  content:\"\"; }\n\n.bp3-icon-video::before{\n  content:\"\"; }\n\n.bp3-icon-volume-down::before{\n  content:\"\"; }\n\n.bp3-icon-volume-off::before{\n  content:\"\"; }\n\n.bp3-icon-volume-up::before{\n  content:\"\"; }\n\n.bp3-icon-walk::before{\n  content:\"\"; }\n\n.bp3-icon-warning-sign::before{\n  content:\"\"; }\n\n.bp3-icon-waterfall-chart::before{\n  content:\"\"; }\n\n.bp3-icon-widget::before{\n  content:\"\"; }\n\n.bp3-icon-widget-button::before{\n  content:\"\"; }\n\n.bp3-icon-widget-footer::before{\n  content:\"\"; }\n\n.bp3-icon-widget-header::before{\n  content:\"\"; }\n\n.bp3-icon-wrench::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-in::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-out::before{\n  content:\"\"; }\n\n.bp3-icon-zoom-to-fit::before{\n  content:\"\"; }\n.bp3-submenu > .bp3-popover-wrapper{\n  display:block; }\n\n.bp3-submenu .bp3-popover-target{\n  display:block; }\n  .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{ }\n\n.bp3-submenu.bp3-popover{\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0 5px; }\n  .bp3-submenu.bp3-popover > .bp3-popover-content{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-submenu.bp3-popover, .bp3-submenu.bp3-popover.bp3-dark{\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n    .bp3-dark .bp3-submenu.bp3-popover > .bp3-popover-content, .bp3-submenu.bp3-popover.bp3-dark > .bp3-popover-content{\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n.bp3-menu{\n  background:#ffffff;\n  border-radius:3px;\n  color:#182026;\n  list-style:none;\n  margin:0;\n  min-width:180px;\n  padding:5px;\n  text-align:left; }\n\n.bp3-menu-divider{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px; }\n  .bp3-dark .bp3-menu-divider{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-menu-item{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  border-radius:2px;\n  color:inherit;\n  line-height:20px;\n  padding:5px 7px;\n  text-decoration:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-menu-item > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-menu-item > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > *{\n    margin-right:7px; }\n  .bp3-menu-item:empty::before,\n  .bp3-menu-item > :last-child{\n    margin-right:0; }\n  .bp3-menu-item > .bp3-fill{\n    word-break:break-word; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    background-color:rgba(167, 182, 194, 0.3);\n    cursor:pointer;\n    text-decoration:none; }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-dark .bp3-menu-item{\n    color:inherit; }\n    .bp3-dark .bp3-menu-item:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n      background-color:rgba(138, 155, 168, 0.15);\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-disabled{\n      background-color:inherit;\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-menu-item.bp3-intent-primary{\n    color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-primary::before, .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary:active, .bp3-menu-item.bp3-intent-primary:active::before, .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-success{\n    color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-success::before, .bp3-menu-item.bp3-intent-success::after,\n    .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-menu-item.bp3-intent-success:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success:active, .bp3-menu-item.bp3-intent-success:active::before, .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-warning{\n    color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-warning::before, .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning:active, .bp3-menu-item.bp3-intent-warning:active::before, .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item.bp3-intent-danger{\n    color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-menu-item.bp3-intent-danger::before, .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger:active, .bp3-menu-item.bp3-intent-danger:active::before, .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-menu-item::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    margin-right:7px; }\n  .bp3-menu-item::before,\n  .bp3-menu-item > .bp3-icon{\n    color:#5c7080;\n    margin-top:2px; }\n  .bp3-menu-item .bp3-menu-item-label{\n    color:#5c7080; }\n  .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{\n    color:inherit; }\n  .bp3-menu-item.bp3-active, .bp3-menu-item:active{\n    background-color:rgba(115, 134, 148, 0.3); }\n  .bp3-menu-item.bp3-disabled{\n    background-color:inherit !important;\n    color:rgba(92, 112, 128, 0.6) !important;\n    cursor:not-allowed !important;\n    outline:none !important; }\n    .bp3-menu-item.bp3-disabled::before,\n    .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(92, 112, 128, 0.6) !important; }\n  .bp3-large .bp3-menu-item{\n    font-size:16px;\n    line-height:22px;\n    padding:9px 7px; }\n    .bp3-large .bp3-menu-item .bp3-icon{\n      margin-top:3px; }\n    .bp3-large .bp3-menu-item::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1;\n      -moz-osx-font-smoothing:grayscale;\n      -webkit-font-smoothing:antialiased;\n      margin-right:10px;\n      margin-top:1px; }\n\nbutton.bp3-menu-item{\n  background:none;\n  border:none;\n  text-align:left;\n  width:100%; }\n.bp3-menu-header{\n  border-top:1px solid rgba(16, 22, 26, 0.15);\n  display:block;\n  margin:5px;\n  cursor:default;\n  padding-left:2px; }\n  .bp3-dark .bp3-menu-header{\n    border-top-color:rgba(255, 255, 255, 0.15); }\n  .bp3-menu-header:first-of-type{\n    border-top:none; }\n  .bp3-menu-header > h6{\n    color:#182026;\n    font-weight:600;\n    overflow:hidden;\n    text-overflow:ellipsis;\n    white-space:nowrap;\n    word-wrap:normal;\n    line-height:17px;\n    margin:0;\n    padding:10px 7px 0 1px; }\n    .bp3-dark .bp3-menu-header > h6{\n      color:#f5f8fa; }\n  .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n  .bp3-large .bp3-menu-header > h6{\n    font-size:18px;\n    padding-bottom:5px;\n    padding-top:15px; }\n  .bp3-large .bp3-menu-header:first-of-type > h6{\n    padding-top:0; }\n\n.bp3-dark .bp3-menu{\n  background:#30404d;\n  color:#f5f8fa; }\n\n.bp3-dark .bp3-menu-item{ }\n  .bp3-dark .bp3-menu-item.bp3-intent-primary{\n    color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary::before, .bp3-dark .bp3-menu-item.bp3-intent-primary::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{\n      color:#48aff0; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active{\n      background-color:#137cbd; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active{\n      background-color:#106ba3; }\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary:active, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-success{\n    color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success::before, .bp3-dark .bp3-menu-item.bp3-intent-success::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{\n      color:#3dcc91; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active{\n      background-color:#0f9960; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active{\n      background-color:#0d8050; }\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success:active, .bp3-dark .bp3-menu-item.bp3-intent-success:active::before, .bp3-dark .bp3-menu-item.bp3-intent-success:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-warning{\n    color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning::before, .bp3-dark .bp3-menu-item.bp3-intent-warning::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{\n      color:#ffb366; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active{\n      background-color:#d9822b; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active{\n      background-color:#bf7326; }\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning:active, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item.bp3-intent-danger{\n    color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-icon{\n      color:inherit; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger::before, .bp3-dark .bp3-menu-item.bp3-intent-danger::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{\n      color:#ff7373; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active{\n      background-color:#db3737; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active{\n      background-color:#c23030; }\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,\n    .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label,\n    .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger:active, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::after,\n    .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{\n      color:#ffffff; }\n  .bp3-dark .bp3-menu-item::before,\n  .bp3-dark .bp3-menu-item > .bp3-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item .bp3-menu-item-label{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-menu-item.bp3-active, .bp3-dark .bp3-menu-item:active{\n    background-color:rgba(138, 155, 168, 0.3); }\n  .bp3-dark .bp3-menu-item.bp3-disabled{\n    color:rgba(167, 182, 194, 0.6) !important; }\n    .bp3-dark .bp3-menu-item.bp3-disabled::before,\n    .bp3-dark .bp3-menu-item.bp3-disabled > .bp3-icon,\n    .bp3-dark .bp3-menu-item.bp3-disabled .bp3-menu-item-label{\n      color:rgba(167, 182, 194, 0.6) !important; }\n\n.bp3-dark .bp3-menu-divider,\n.bp3-dark .bp3-menu-header{\n  border-color:rgba(255, 255, 255, 0.15); }\n\n.bp3-dark .bp3-menu-header > h6{\n  color:#f5f8fa; }\n\n.bp3-label .bp3-menu{\n  margin-top:5px; }\n.bp3-navbar{\n  background-color:#ffffff;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);\n  height:50px;\n  padding:0 15px;\n  position:relative;\n  width:100%;\n  z-index:10; }\n  .bp3-navbar.bp3-dark,\n  .bp3-dark .bp3-navbar{\n    background-color:#394b59; }\n  .bp3-navbar.bp3-dark{\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-dark .bp3-navbar{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }\n  .bp3-navbar.bp3-fixed-top{\n    left:0;\n    position:fixed;\n    right:0;\n    top:0; }\n\n.bp3-navbar-heading{\n  font-size:16px;\n  margin-right:15px; }\n\n.bp3-navbar-group{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:50px; }\n  .bp3-navbar-group.bp3-align-left{\n    float:left; }\n  .bp3-navbar-group.bp3-align-right{\n    float:right; }\n\n.bp3-navbar-divider{\n  border-left:1px solid rgba(16, 22, 26, 0.15);\n  height:20px;\n  margin:0 10px; }\n  .bp3-dark .bp3-navbar-divider{\n    border-left-color:rgba(255, 255, 255, 0.15); }\n.bp3-non-ideal-state{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  height:100%;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  text-align:center;\n  width:100%; }\n  .bp3-non-ideal-state > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-non-ideal-state > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-non-ideal-state::before,\n  .bp3-non-ideal-state > *{\n    margin-bottom:20px; }\n  .bp3-non-ideal-state:empty::before,\n  .bp3-non-ideal-state > :last-child{\n    margin-bottom:0; }\n  .bp3-non-ideal-state > *{\n    max-width:400px; }\n\n.bp3-non-ideal-state-visual{\n  color:rgba(92, 112, 128, 0.6);\n  font-size:60px; }\n  .bp3-dark .bp3-non-ideal-state-visual{\n    color:rgba(167, 182, 194, 0.6); }\n\n.bp3-overflow-list{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-wrap:nowrap;\n      flex-wrap:nowrap;\n  min-width:0; }\n\n.bp3-overflow-list-spacer{\n  -ms-flex-negative:1;\n      flex-shrink:1;\n  width:1px; }\n\nbody.bp3-overlay-open{\n  overflow:hidden; }\n\n.bp3-overlay{\n  bottom:0;\n  left:0;\n  position:static;\n  right:0;\n  top:0;\n  z-index:20; }\n  .bp3-overlay:not(.bp3-overlay-open){\n    pointer-events:none; }\n  .bp3-overlay.bp3-overlay-container{\n    overflow:hidden;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-scroll-container{\n    overflow:auto;\n    position:fixed; }\n    .bp3-overlay.bp3-overlay-scroll-container.bp3-overlay-inline{\n      position:absolute; }\n  .bp3-overlay.bp3-overlay-inline{\n    display:inline;\n    overflow:visible; }\n\n.bp3-overlay-content{\n  position:fixed;\n  z-index:20; }\n  .bp3-overlay-inline .bp3-overlay-content,\n  .bp3-overlay-scroll-container .bp3-overlay-content{\n    position:absolute; }\n\n.bp3-overlay-backdrop{\n  bottom:0;\n  left:0;\n  position:fixed;\n  right:0;\n  top:0;\n  opacity:1;\n  background-color:rgba(16, 22, 26, 0.7);\n  overflow:auto;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none;\n  z-index:20; }\n  .bp3-overlay-backdrop.bp3-overlay-enter, .bp3-overlay-backdrop.bp3-overlay-appear{\n    opacity:0; }\n  .bp3-overlay-backdrop.bp3-overlay-enter-active, .bp3-overlay-backdrop.bp3-overlay-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop.bp3-overlay-exit{\n    opacity:1; }\n  .bp3-overlay-backdrop.bp3-overlay-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-overlay-backdrop:focus{\n    outline:none; }\n  .bp3-overlay-inline .bp3-overlay-backdrop{\n    position:absolute; }\n.bp3-panel-stack{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack-view{\n    background-color:#30404d; }\n  .bp3-panel-stack-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter, .bp3-panel-stack-push .bp3-panel-stack-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack-push .bp3-panel-stack-enter-active, .bp3-panel-stack-push .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-push .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter, .bp3-panel-stack-pop .bp3-panel-stack-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-enter-active, .bp3-panel-stack-pop .bp3-panel-stack-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack-pop .bp3-panel-stack-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-panel-stack2{\n  overflow:hidden;\n  position:relative; }\n\n.bp3-panel-stack2-header{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);\n          box-shadow:0 1px rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -ms-flex-negative:0;\n      flex-shrink:0;\n  height:30px;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-header{\n    -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);\n            box-shadow:0 1px rgba(255, 255, 255, 0.15); }\n  .bp3-panel-stack2-header > span{\n    -webkit-box-align:stretch;\n        -ms-flex-align:stretch;\n            align-items:stretch;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-flex:1;\n        -ms-flex:1;\n            flex:1; }\n  .bp3-panel-stack2-header .bp3-heading{\n    margin:0 5px; }\n\n.bp3-button.bp3-panel-stack2-header-back{\n  margin-left:5px;\n  padding-left:0;\n  white-space:nowrap; }\n  .bp3-button.bp3-panel-stack2-header-back .bp3-icon{\n    margin:0 2px; }\n\n.bp3-panel-stack2-view{\n  bottom:0;\n  left:0;\n  position:absolute;\n  right:0;\n  top:0;\n  background-color:#ffffff;\n  border-right:1px solid rgba(16, 22, 26, 0.15);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  margin-right:-1px;\n  overflow-y:auto;\n  z-index:1; }\n  .bp3-dark .bp3-panel-stack2-view{\n    background-color:#30404d; }\n  .bp3-panel-stack2-view:nth-last-child(n + 4){\n    display:none; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter, .bp3-panel-stack2-push .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-enter-active, .bp3-panel-stack2-push .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-push .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter, .bp3-panel-stack2-pop .bp3-panel-stack2-appear{\n  -webkit-transform:translateX(-50%);\n          transform:translateX(-50%);\n  opacity:0; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-enter-active, .bp3-panel-stack2-pop .bp3-panel-stack2-appear-active{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit{\n  -webkit-transform:translate(0%);\n          transform:translate(0%);\n  opacity:1; }\n\n.bp3-panel-stack2-pop .bp3-panel-stack2-exit-active{\n  -webkit-transform:translateX(100%);\n          transform:translateX(100%);\n  opacity:0;\n  -webkit-transition-delay:0;\n          transition-delay:0;\n  -webkit-transition-duration:400ms;\n          transition-duration:400ms;\n  -webkit-transition-property:opacity, -webkit-transform;\n  transition-property:opacity, -webkit-transform;\n  transition-property:transform, opacity;\n  transition-property:transform, opacity, -webkit-transform;\n  -webkit-transition-timing-function:ease;\n          transition-timing-function:ease; }\n.bp3-popover{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1);\n  border-radius:3px;\n  display:inline-block;\n  z-index:20; }\n  .bp3-popover .bp3-popover-arrow{\n    height:30px;\n    position:absolute;\n    width:30px; }\n    .bp3-popover .bp3-popover-arrow::before{\n      height:20px;\n      margin:5px;\n      width:20px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover{\n    margin-bottom:17px;\n    margin-top:-17px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n      bottom:-11px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover{\n    margin-left:17px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n      left:-11px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover{\n    margin-top:17px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n      top:-11px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover{\n    margin-left:-17px;\n    margin-right:17px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n      right:-11px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-popover > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-popover > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{\n    top:-0.3934px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{\n    right:-0.3934px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{\n    left:-0.3934px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{\n    bottom:-0.3934px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-popover{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-popover{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-popover{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-popover .bp3-popover-content{\n    background:#ffffff;\n    color:inherit; }\n  .bp3-popover .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-popover .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-popover .bp3-popover-arrow-fill{\n    fill:#ffffff; }\n  .bp3-popover-enter > .bp3-popover, .bp3-popover-appear > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3); }\n  .bp3-popover-enter-active > .bp3-popover, .bp3-popover-appear-active > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover-exit > .bp3-popover{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-popover{\n    -webkit-transform:scale(0.3);\n            transform:scale(0.3);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-popover .bp3-popover-content{\n    border-radius:3px;\n    position:relative; }\n  .bp3-popover.bp3-popover-content-sizing .bp3-popover-content{\n    max-width:350px;\n    padding:20px; }\n  .bp3-popover-target + .bp3-overlay .bp3-popover.bp3-popover-content-sizing{\n    width:350px; }\n  .bp3-popover.bp3-minimal{\n    margin:0 !important; }\n    .bp3-popover.bp3-minimal .bp3-popover-arrow{\n      display:none; }\n    .bp3-popover.bp3-minimal.bp3-popover{\n      -webkit-transform:scale(1);\n              transform:scale(1); }\n      .bp3-popover-enter > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-enter-active > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n      .bp3-popover-exit > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1); }\n      .bp3-popover-exit-active > .bp3-popover.bp3-minimal.bp3-popover{\n        -webkit-transform:scale(1);\n                transform:scale(1);\n        -webkit-transition-delay:0;\n                transition-delay:0;\n        -webkit-transition-duration:100ms;\n                transition-duration:100ms;\n        -webkit-transition-property:-webkit-transform;\n        transition-property:-webkit-transform;\n        transition-property:transform;\n        transition-property:transform, -webkit-transform;\n        -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n                transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover.bp3-dark,\n  .bp3-dark .bp3-popover{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-popover .bp3-popover-content{\n      background:#30404d;\n      color:inherit; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-popover .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-popover.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-popover .bp3-popover-arrow-fill{\n      fill:#30404d; }\n\n.bp3-popover-arrow::before{\n  border-radius:2px;\n  content:\"\";\n  display:block;\n  position:absolute;\n  -webkit-transform:rotate(45deg);\n          transform:rotate(45deg); }\n\n.bp3-tether-pinned .bp3-popover-arrow{\n  display:none; }\n\n.bp3-popover-backdrop{\n  background:rgba(255, 255, 255, 0); }\n\n.bp3-transition-container{\n  opacity:1;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  z-index:20; }\n  .bp3-transition-container.bp3-popover-enter, .bp3-transition-container.bp3-popover-appear{\n    opacity:0; }\n  .bp3-transition-container.bp3-popover-enter-active, .bp3-transition-container.bp3-popover-appear-active{\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container.bp3-popover-exit{\n    opacity:1; }\n  .bp3-transition-container.bp3-popover-exit-active{\n    opacity:0;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:opacity;\n    transition-property:opacity;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-transition-container:focus{\n    outline:none; }\n  .bp3-transition-container.bp3-popover-leave .bp3-popover-content{\n    pointer-events:none; }\n  .bp3-transition-container[data-x-out-of-boundaries]{\n    display:none; }\n\nspan.bp3-popover-target{\n  display:inline-block; }\n\n.bp3-popover-wrapper.bp3-fill{\n  width:100%; }\n\n.bp3-portal{\n  left:0;\n  position:absolute;\n  right:0;\n  top:0; }\n@-webkit-keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n@keyframes linear-progress-bar-stripes{\n  from{\n    background-position:0 0; }\n  to{\n    background-position:30px 0; } }\n\n.bp3-progress-bar{\n  background:rgba(92, 112, 128, 0.2);\n  border-radius:40px;\n  display:block;\n  height:8px;\n  overflow:hidden;\n  position:relative;\n  width:100%; }\n  .bp3-progress-bar .bp3-progress-meter{\n    background:linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%);\n    background-color:rgba(92, 112, 128, 0.8);\n    background-size:30px 30px;\n    border-radius:40px;\n    height:100%;\n    position:absolute;\n    -webkit-transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    width:100%; }\n  .bp3-progress-bar:not(.bp3-no-animation):not(.bp3-no-stripes) .bp3-progress-meter{\n    animation:linear-progress-bar-stripes 300ms linear infinite reverse; }\n  .bp3-progress-bar.bp3-no-stripes .bp3-progress-meter{\n    background-image:none; }\n\n.bp3-dark .bp3-progress-bar{\n  background:rgba(16, 22, 26, 0.5); }\n  .bp3-dark .bp3-progress-bar .bp3-progress-meter{\n    background-color:#8a9ba8; }\n\n.bp3-progress-bar.bp3-intent-primary .bp3-progress-meter{\n  background-color:#137cbd; }\n\n.bp3-progress-bar.bp3-intent-success .bp3-progress-meter{\n  background-color:#0f9960; }\n\n.bp3-progress-bar.bp3-intent-warning .bp3-progress-meter{\n  background-color:#d9822b; }\n\n.bp3-progress-bar.bp3-intent-danger .bp3-progress-meter{\n  background-color:#db3737; }\n@-webkit-keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n@keyframes skeleton-glow{\n  from{\n    background:rgba(206, 217, 224, 0.2);\n    border-color:rgba(206, 217, 224, 0.2); }\n  to{\n    background:rgba(92, 112, 128, 0.2);\n    border-color:rgba(92, 112, 128, 0.2); } }\n.bp3-skeleton{\n  -webkit-animation:1000ms linear infinite alternate skeleton-glow;\n          animation:1000ms linear infinite alternate skeleton-glow;\n  background:rgba(206, 217, 224, 0.2);\n  background-clip:padding-box !important;\n  border-color:rgba(206, 217, 224, 0.2) !important;\n  border-radius:2px;\n  -webkit-box-shadow:none !important;\n          box-shadow:none !important;\n  color:transparent !important;\n  cursor:default;\n  pointer-events:none;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-skeleton::before, .bp3-skeleton::after,\n  .bp3-skeleton *{\n    visibility:hidden !important; }\n.bp3-slider{\n  height:40px;\n  min-width:150px;\n  width:100%;\n  cursor:default;\n  outline:none;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-slider:hover{\n    cursor:pointer; }\n  .bp3-slider:active{\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-slider.bp3-disabled{\n    cursor:not-allowed;\n    opacity:0.5; }\n  .bp3-slider.bp3-slider-unlabeled{\n    height:16px; }\n\n.bp3-slider-track,\n.bp3-slider-progress{\n  height:6px;\n  left:0;\n  right:0;\n  top:5px;\n  position:absolute; }\n\n.bp3-slider-track{\n  border-radius:3px;\n  overflow:hidden; }\n\n.bp3-slider-progress{\n  background:rgba(92, 112, 128, 0.2); }\n  .bp3-dark .bp3-slider-progress{\n    background:rgba(16, 22, 26, 0.5); }\n  .bp3-slider-progress.bp3-intent-primary{\n    background-color:#137cbd; }\n  .bp3-slider-progress.bp3-intent-success{\n    background-color:#0f9960; }\n  .bp3-slider-progress.bp3-intent-warning{\n    background-color:#d9822b; }\n  .bp3-slider-progress.bp3-intent-danger{\n    background-color:#db3737; }\n\n.bp3-slider-handle{\n  background-color:#f5f8fa;\n  background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));\n  background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));\n  -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n          box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n  color:#182026;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n  cursor:pointer;\n  height:16px;\n  left:0;\n  position:absolute;\n  top:0;\n  width:16px; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }\n  .bp3-slider-handle:active, .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n  .bp3-slider-handle:disabled, .bp3-slider-handle.bp3-disabled{\n    background-color:rgba(206, 217, 224, 0.5);\n    background-image:none;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed;\n    outline:none; }\n    .bp3-slider-handle:disabled.bp3-active, .bp3-slider-handle:disabled.bp3-active:hover, .bp3-slider-handle.bp3-disabled.bp3-active, .bp3-slider-handle.bp3-disabled.bp3-active:hover{\n      background:rgba(206, 217, 224, 0.7); }\n  .bp3-slider-handle:focus{\n    z-index:1; }\n  .bp3-slider-handle:hover{\n    background-clip:padding-box;\n    background-color:#ebf1f5;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);\n    cursor:-webkit-grab;\n    cursor:grab;\n    z-index:2; }\n  .bp3-slider-handle.bp3-active{\n    background-color:#d8e1e8;\n    background-image:none;\n    -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n            box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);\n    cursor:-webkit-grabbing;\n    cursor:grabbing; }\n  .bp3-disabled .bp3-slider-handle{\n    background:#bfccd6;\n    -webkit-box-shadow:none;\n            box-shadow:none;\n    pointer-events:none; }\n  .bp3-dark .bp3-slider-handle{\n    background-color:#394b59;\n    background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));\n    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n    color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover, .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      color:#f5f8fa; }\n    .bp3-dark .bp3-slider-handle:hover{\n      background-color:#30404d;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#202b33;\n      background-image:none;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }\n    .bp3-dark .bp3-slider-handle:disabled, .bp3-dark .bp3-slider-handle.bp3-disabled{\n      background-color:rgba(57, 75, 89, 0.5);\n      background-image:none;\n      -webkit-box-shadow:none;\n              box-shadow:none;\n      color:rgba(167, 182, 194, 0.6); }\n      .bp3-dark .bp3-slider-handle:disabled.bp3-active, .bp3-dark .bp3-slider-handle.bp3-disabled.bp3-active{\n        background:rgba(57, 75, 89, 0.7); }\n    .bp3-dark .bp3-slider-handle .bp3-button-spinner .bp3-spinner-head{\n      background:rgba(16, 22, 26, 0.5);\n      stroke:#8a9ba8; }\n    .bp3-dark .bp3-slider-handle, .bp3-dark .bp3-slider-handle:hover{\n      background-color:#394b59; }\n    .bp3-dark .bp3-slider-handle.bp3-active{\n      background-color:#293742; }\n  .bp3-dark .bp3-disabled .bp3-slider-handle{\n    background:#5c7080;\n    border-color:#5c7080;\n    -webkit-box-shadow:none;\n            box-shadow:none; }\n  .bp3-slider-handle .bp3-slider-label{\n    background:#394b59;\n    border-radius:3px;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n    color:#f5f8fa;\n    margin-left:8px; }\n    .bp3-dark .bp3-slider-handle .bp3-slider-label{\n      background:#e1e8ed;\n      -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n      color:#394b59; }\n    .bp3-disabled .bp3-slider-handle .bp3-slider-label{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-slider-handle.bp3-start, .bp3-slider-handle.bp3-end{\n    width:8px; }\n  .bp3-slider-handle.bp3-start{\n    border-bottom-right-radius:0;\n    border-top-right-radius:0; }\n  .bp3-slider-handle.bp3-end{\n    border-bottom-left-radius:0;\n    border-top-left-radius:0;\n    margin-left:8px; }\n    .bp3-slider-handle.bp3-end .bp3-slider-label{\n      margin-left:0; }\n\n.bp3-slider-label{\n  -webkit-transform:translate(-50%, 20px);\n          transform:translate(-50%, 20px);\n  display:inline-block;\n  font-size:12px;\n  line-height:1;\n  padding:2px 5px;\n  position:absolute;\n  vertical-align:top; }\n\n.bp3-slider.bp3-vertical{\n  height:150px;\n  min-width:40px;\n  width:40px; }\n  .bp3-slider.bp3-vertical .bp3-slider-track,\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    bottom:0;\n    height:auto;\n    left:5px;\n    top:0;\n    width:6px; }\n  .bp3-slider.bp3-vertical .bp3-slider-progress{\n    top:auto; }\n  .bp3-slider.bp3-vertical .bp3-slider-label{\n    -webkit-transform:translate(20px, 50%);\n            transform:translate(20px, 50%); }\n  .bp3-slider.bp3-vertical .bp3-slider-handle{\n    top:auto; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle .bp3-slider-label{\n      margin-left:0;\n      margin-top:-8px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end, .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      height:8px;\n      margin-left:0;\n      width:16px; }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{\n      border-bottom-right-radius:3px;\n      border-top-left-radius:0; }\n      .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start .bp3-slider-label{\n        -webkit-transform:translate(20px);\n                transform:translate(20px); }\n    .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end{\n      border-bottom-left-radius:0;\n      border-bottom-right-radius:0;\n      border-top-left-radius:3px;\n      margin-bottom:8px; }\n\n@-webkit-keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n@keyframes pt-spinner-animation{\n  from{\n    -webkit-transform:rotate(0deg);\n            transform:rotate(0deg); }\n  to{\n    -webkit-transform:rotate(360deg);\n            transform:rotate(360deg); } }\n\n.bp3-spinner{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-pack:center;\n      -ms-flex-pack:center;\n          justify-content:center;\n  overflow:visible;\n  vertical-align:middle; }\n  .bp3-spinner svg{\n    display:block; }\n  .bp3-spinner path{\n    fill-opacity:0; }\n  .bp3-spinner .bp3-spinner-head{\n    stroke:rgba(92, 112, 128, 0.8);\n    stroke-linecap:round;\n    -webkit-transform-origin:center;\n            transform-origin:center;\n    -webkit-transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n    transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-spinner .bp3-spinner-track{\n    stroke:rgba(92, 112, 128, 0.2); }\n\n.bp3-spinner-animation{\n  -webkit-animation:pt-spinner-animation 500ms linear infinite;\n          animation:pt-spinner-animation 500ms linear infinite; }\n  .bp3-no-spin > .bp3-spinner-animation{\n    -webkit-animation:none;\n            animation:none; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-head{\n  stroke:#8a9ba8; }\n\n.bp3-dark .bp3-spinner .bp3-spinner-track{\n  stroke:rgba(16, 22, 26, 0.5); }\n\n.bp3-spinner.bp3-intent-primary .bp3-spinner-head{\n  stroke:#137cbd; }\n\n.bp3-spinner.bp3-intent-success .bp3-spinner-head{\n  stroke:#0f9960; }\n\n.bp3-spinner.bp3-intent-warning .bp3-spinner-head{\n  stroke:#d9822b; }\n\n.bp3-spinner.bp3-intent-danger .bp3-spinner-head{\n  stroke:#db3737; }\n.bp3-tabs.bp3-vertical{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-list{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:column;\n            flex-direction:column; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab{\n      border-radius:3px;\n      padding:0 10px;\n      width:100%; }\n      .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab[aria-selected=\"true\"]{\n        background-color:rgba(19, 124, 189, 0.2);\n        -webkit-box-shadow:none;\n                box-shadow:none; }\n    .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n      background-color:rgba(19, 124, 189, 0.2);\n      border-radius:3px;\n      bottom:0;\n      height:auto;\n      left:0;\n      right:0;\n      top:0; }\n  .bp3-tabs.bp3-vertical > .bp3-tab-panel{\n    margin-top:0;\n    padding-left:20px; }\n\n.bp3-tab-list{\n  -webkit-box-align:end;\n      -ms-flex-align:end;\n          align-items:flex-end;\n  border:none;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  list-style:none;\n  margin:0;\n  padding:0;\n  position:relative; }\n  .bp3-tab-list > *:not(:last-child){\n    margin-right:20px; }\n\n.bp3-tab{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  color:#182026;\n  cursor:pointer;\n  -webkit-box-flex:0;\n      -ms-flex:0 0 auto;\n          flex:0 0 auto;\n  font-size:14px;\n  line-height:30px;\n  max-width:100%;\n  position:relative;\n  vertical-align:top; }\n  .bp3-tab a{\n    color:inherit;\n    display:block;\n    text-decoration:none; }\n  .bp3-tab-indicator-wrapper ~ .bp3-tab{\n    background-color:transparent !important;\n    -webkit-box-shadow:none !important;\n            box-shadow:none !important; }\n  .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(92, 112, 128, 0.6);\n    cursor:not-allowed; }\n  .bp3-tab[aria-selected=\"true\"]{\n    border-radius:0;\n    -webkit-box-shadow:inset 0 -3px 0 #106ba3;\n            box-shadow:inset 0 -3px 0 #106ba3; }\n  .bp3-tab[aria-selected=\"true\"], .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#106ba3; }\n  .bp3-tab:focus{\n    -moz-outline-radius:0; }\n  .bp3-large > .bp3-tab{\n    font-size:16px;\n    line-height:40px; }\n\n.bp3-tab-panel{\n  margin-top:20px; }\n  .bp3-tab-panel[aria-hidden=\"true\"]{\n    display:none; }\n\n.bp3-tab-indicator-wrapper{\n  left:0;\n  pointer-events:none;\n  position:absolute;\n  top:0;\n  -webkit-transform:translateX(0), translateY(0);\n          transform:translateX(0), translateY(0);\n  -webkit-transition:height, width, -webkit-transform;\n  transition:height, width, -webkit-transform;\n  transition:height, transform, width;\n  transition:height, transform, width, -webkit-transform;\n  -webkit-transition-duration:200ms;\n          transition-duration:200ms;\n  -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n          transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tab-indicator-wrapper .bp3-tab-indicator{\n    background-color:#106ba3;\n    bottom:0;\n    height:3px;\n    left:0;\n    position:absolute;\n    right:0; }\n  .bp3-tab-indicator-wrapper.bp3-no-animation{\n    -webkit-transition:none;\n    transition:none; }\n\n.bp3-dark .bp3-tab{\n  color:#f5f8fa; }\n  .bp3-dark .bp3-tab[aria-disabled=\"true\"]{\n    color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"]{\n    -webkit-box-shadow:inset 0 -3px 0 #48aff0;\n            box-shadow:inset 0 -3px 0 #48aff0; }\n  .bp3-dark .bp3-tab[aria-selected=\"true\"], .bp3-dark .bp3-tab:not([aria-disabled=\"true\"]):hover{\n    color:#48aff0; }\n\n.bp3-dark .bp3-tab-indicator{\n  background-color:#48aff0; }\n\n.bp3-flex-expander{\n  -webkit-box-flex:1;\n      -ms-flex:1 1;\n          flex:1 1; }\n.bp3-tag{\n  display:-webkit-inline-box;\n  display:-ms-inline-flexbox;\n  display:inline-flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  background-color:#5c7080;\n  border:none;\n  border-radius:3px;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  color:#f5f8fa;\n  font-size:12px;\n  line-height:16px;\n  max-width:100%;\n  min-height:20px;\n  min-width:20px;\n  padding:2px 6px;\n  position:relative; }\n  .bp3-tag.bp3-interactive{\n    cursor:pointer; }\n    .bp3-tag.bp3-interactive:hover{\n      background-color:rgba(92, 112, 128, 0.85); }\n    .bp3-tag.bp3-interactive.bp3-active, .bp3-tag.bp3-interactive:active{\n      background-color:rgba(92, 112, 128, 0.7); }\n  .bp3-tag > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag > .bp3-fill{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag::before,\n  .bp3-tag > *{\n    margin-right:4px; }\n  .bp3-tag:empty::before,\n  .bp3-tag > :last-child{\n    margin-right:0; }\n  .bp3-tag:focus{\n    outline:rgba(19, 124, 189, 0.6) auto 2px;\n    outline-offset:0;\n    -moz-outline-radius:6px; }\n  .bp3-tag.bp3-round{\n    border-radius:30px;\n    padding-left:8px;\n    padding-right:8px; }\n  .bp3-dark .bp3-tag{\n    background-color:#bfccd6;\n    color:#182026; }\n    .bp3-dark .bp3-tag.bp3-interactive{\n      cursor:pointer; }\n      .bp3-dark .bp3-tag.bp3-interactive:hover{\n        background-color:rgba(191, 204, 214, 0.85); }\n      .bp3-dark .bp3-tag.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-interactive:active{\n        background-color:rgba(191, 204, 214, 0.7); }\n    .bp3-dark .bp3-tag > .bp3-icon, .bp3-dark .bp3-tag .bp3-icon-standard, .bp3-dark .bp3-tag .bp3-icon-large{\n      fill:currentColor; }\n  .bp3-tag > .bp3-icon, .bp3-tag .bp3-icon-standard, .bp3-tag .bp3-icon-large{\n    fill:#ffffff; }\n  .bp3-tag.bp3-large,\n  .bp3-large .bp3-tag{\n    font-size:14px;\n    line-height:20px;\n    min-height:30px;\n    min-width:30px;\n    padding:5px 10px; }\n    .bp3-tag.bp3-large::before,\n    .bp3-tag.bp3-large > *,\n    .bp3-large .bp3-tag::before,\n    .bp3-large .bp3-tag > *{\n      margin-right:7px; }\n    .bp3-tag.bp3-large:empty::before,\n    .bp3-tag.bp3-large > :last-child,\n    .bp3-large .bp3-tag:empty::before,\n    .bp3-large .bp3-tag > :last-child{\n      margin-right:0; }\n    .bp3-tag.bp3-large.bp3-round,\n    .bp3-large .bp3-tag.bp3-round{\n      padding-left:12px;\n      padding-right:12px; }\n  .bp3-tag.bp3-intent-primary{\n    background:#137cbd;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.85); }\n      .bp3-tag.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.7); }\n  .bp3-tag.bp3-intent-success{\n    background:#0f9960;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.85); }\n      .bp3-tag.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.7); }\n  .bp3-tag.bp3-intent-warning{\n    background:#d9822b;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.85); }\n      .bp3-tag.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.7); }\n  .bp3-tag.bp3-intent-danger{\n    background:#db3737;\n    color:#ffffff; }\n    .bp3-tag.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.85); }\n      .bp3-tag.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.7); }\n  .bp3-tag.bp3-fill{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    width:100%; }\n  .bp3-tag.bp3-minimal > .bp3-icon, .bp3-tag.bp3-minimal .bp3-icon-standard, .bp3-tag.bp3-minimal .bp3-icon-large{\n    fill:#5c7080; }\n  .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n    background-color:rgba(138, 155, 168, 0.2);\n    color:#182026; }\n    .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n        background-color:rgba(92, 112, 128, 0.3); }\n      .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n        background-color:rgba(92, 112, 128, 0.4); }\n    .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]){\n      color:#f5f8fa; }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:hover{\n          background-color:rgba(191, 204, 214, 0.3); }\n        .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]).bp3-interactive:active{\n          background-color:rgba(191, 204, 214, 0.4); }\n      .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) > .bp3-icon, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-standard, .bp3-dark .bp3-tag.bp3-minimal:not([class*=\"bp3-intent-\"]) .bp3-icon-large{\n        fill:#a7b6c2; }\n  .bp3-tag.bp3-minimal.bp3-intent-primary{\n    background-color:rgba(19, 124, 189, 0.15);\n    color:#106ba3; }\n    .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n        background-color:rgba(19, 124, 189, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n        background-color:rgba(19, 124, 189, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-primary > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-large{\n      fill:#137cbd; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary{\n      background-color:rgba(19, 124, 189, 0.25);\n      color:#48aff0; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{\n          background-color:rgba(19, 124, 189, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{\n          background-color:rgba(19, 124, 189, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-success{\n    background-color:rgba(15, 153, 96, 0.15);\n    color:#0d8050; }\n    .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n        background-color:rgba(15, 153, 96, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n        background-color:rgba(15, 153, 96, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-success > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-large{\n      fill:#0f9960; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success{\n      background-color:rgba(15, 153, 96, 0.25);\n      color:#3dcc91; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{\n          background-color:rgba(15, 153, 96, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{\n          background-color:rgba(15, 153, 96, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-warning{\n    background-color:rgba(217, 130, 43, 0.15);\n    color:#bf7326; }\n    .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n        background-color:rgba(217, 130, 43, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n        background-color:rgba(217, 130, 43, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-warning > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-large{\n      fill:#d9822b; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning{\n      background-color:rgba(217, 130, 43, 0.25);\n      color:#ffb366; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{\n          background-color:rgba(217, 130, 43, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{\n          background-color:rgba(217, 130, 43, 0.45); }\n  .bp3-tag.bp3-minimal.bp3-intent-danger{\n    background-color:rgba(219, 55, 55, 0.15);\n    color:#c23030; }\n    .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n      cursor:pointer; }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n        background-color:rgba(219, 55, 55, 0.25); }\n      .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n        background-color:rgba(219, 55, 55, 0.35); }\n    .bp3-tag.bp3-minimal.bp3-intent-danger > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-large{\n      fill:#db3737; }\n    .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger{\n      background-color:rgba(219, 55, 55, 0.25);\n      color:#ff7373; }\n      .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{\n        cursor:pointer; }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{\n          background-color:rgba(219, 55, 55, 0.35); }\n        .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{\n          background-color:rgba(219, 55, 55, 0.45); }\n\n.bp3-tag-remove{\n  background:none;\n  border:none;\n  color:inherit;\n  cursor:pointer;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin-bottom:-2px;\n  margin-right:-6px !important;\n  margin-top:-2px;\n  opacity:0.5;\n  padding:2px;\n  padding-left:0; }\n  .bp3-tag-remove:hover{\n    background:none;\n    opacity:0.8;\n    text-decoration:none; }\n  .bp3-tag-remove:active{\n    opacity:1; }\n  .bp3-tag-remove:empty::before{\n    font-family:\"Icons16\", sans-serif;\n    font-size:16px;\n    font-style:normal;\n    font-weight:400;\n    line-height:1;\n    -moz-osx-font-smoothing:grayscale;\n    -webkit-font-smoothing:antialiased;\n    content:\"\"; }\n  .bp3-large .bp3-tag-remove{\n    margin-right:-10px !important;\n    padding:0 5px 0 0; }\n    .bp3-large .bp3-tag-remove:empty::before{\n      font-family:\"Icons20\", sans-serif;\n      font-size:20px;\n      font-style:normal;\n      font-weight:400;\n      line-height:1; }\n.bp3-tag-input{\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  -webkit-box-orient:horizontal;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:row;\n          flex-direction:row;\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  cursor:text;\n  height:auto;\n  line-height:inherit;\n  min-height:30px;\n  padding-left:5px;\n  padding-right:0; }\n  .bp3-tag-input > *{\n    -webkit-box-flex:0;\n        -ms-flex-positive:0;\n            flex-grow:0;\n    -ms-flex-negative:0;\n        flex-shrink:0; }\n  .bp3-tag-input > .bp3-tag-input-values{\n    -webkit-box-flex:1;\n        -ms-flex-positive:1;\n            flex-grow:1;\n    -ms-flex-negative:1;\n        flex-shrink:1; }\n  .bp3-tag-input .bp3-tag-input-icon{\n    color:#5c7080;\n    margin-left:2px;\n    margin-right:7px;\n    margin-top:7px; }\n  .bp3-tag-input .bp3-tag-input-values{\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex;\n    -webkit-box-orient:horizontal;\n    -webkit-box-direction:normal;\n        -ms-flex-direction:row;\n            flex-direction:row;\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    -ms-flex-item-align:stretch;\n        align-self:stretch;\n    -ms-flex-wrap:wrap;\n        flex-wrap:wrap;\n    margin-right:7px;\n    margin-top:5px;\n    min-width:0; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      -webkit-box-flex:0;\n          -ms-flex-positive:0;\n              flex-grow:0;\n      -ms-flex-negative:0;\n          flex-shrink:0; }\n    .bp3-tag-input .bp3-tag-input-values > .bp3-fill{\n      -webkit-box-flex:1;\n          -ms-flex-positive:1;\n              flex-grow:1;\n      -ms-flex-negative:1;\n          flex-shrink:1; }\n    .bp3-tag-input .bp3-tag-input-values::before,\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-right:5px; }\n    .bp3-tag-input .bp3-tag-input-values:empty::before,\n    .bp3-tag-input .bp3-tag-input-values > :last-child{\n      margin-right:0; }\n    .bp3-tag-input .bp3-tag-input-values:first-child .bp3-input-ghost:first-child{\n      padding-left:5px; }\n    .bp3-tag-input .bp3-tag-input-values > *{\n      margin-bottom:5px; }\n  .bp3-tag-input .bp3-tag{\n    overflow-wrap:break-word; }\n    .bp3-tag-input .bp3-tag.bp3-active{\n      outline:rgba(19, 124, 189, 0.6) auto 2px;\n      outline-offset:0;\n      -moz-outline-radius:6px; }\n  .bp3-tag-input .bp3-input-ghost{\n    -webkit-box-flex:1;\n        -ms-flex:1 1 auto;\n            flex:1 1 auto;\n    line-height:20px;\n    width:80px; }\n    .bp3-tag-input .bp3-input-ghost:disabled, .bp3-tag-input .bp3-input-ghost.bp3-disabled{\n      cursor:not-allowed; }\n  .bp3-tag-input .bp3-button,\n  .bp3-tag-input .bp3-spinner{\n    margin:3px;\n    margin-left:0; }\n  .bp3-tag-input .bp3-button{\n    min-height:24px;\n    min-width:24px;\n    padding:0 7px; }\n  .bp3-tag-input.bp3-large{\n    height:auto;\n    min-height:40px; }\n    .bp3-tag-input.bp3-large::before,\n    .bp3-tag-input.bp3-large > *{\n      margin-right:10px; }\n    .bp3-tag-input.bp3-large:empty::before,\n    .bp3-tag-input.bp3-large > :last-child{\n      margin-right:0; }\n    .bp3-tag-input.bp3-large .bp3-tag-input-icon{\n      margin-left:5px;\n      margin-top:10px; }\n    .bp3-tag-input.bp3-large .bp3-input-ghost{\n      line-height:30px; }\n    .bp3-tag-input.bp3-large .bp3-button{\n      min-height:30px;\n      min-width:30px;\n      padding:5px 10px;\n      margin:5px;\n      margin-left:0; }\n    .bp3-tag-input.bp3-large .bp3-spinner{\n      margin:8px;\n      margin-left:0; }\n  .bp3-tag-input.bp3-active{\n    background-color:#ffffff;\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n    .bp3-tag-input.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }\n  .bp3-dark .bp3-tag-input .bp3-tag-input-icon, .bp3-tag-input.bp3-dark .bp3-tag-input-icon{\n    color:#a7b6c2; }\n  .bp3-dark .bp3-tag-input .bp3-input-ghost, .bp3-tag-input.bp3-dark .bp3-input-ghost{\n    color:#f5f8fa; }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-webkit-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-webkit-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-moz-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-moz-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost:-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost:-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-ms-input-placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n    .bp3-dark .bp3-tag-input .bp3-input-ghost::placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::placeholder{\n      color:rgba(167, 182, 194, 0.6); }\n  .bp3-dark .bp3-tag-input.bp3-active, .bp3-tag-input.bp3-dark.bp3-active{\n    background-color:rgba(16, 22, 26, 0.3);\n    -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-primary, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-primary{\n      -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-success, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-success{\n      -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-warning, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-warning{\n      -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n    .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-danger, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-danger{\n      -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);\n              box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }\n\n.bp3-input-ghost{\n  background:none;\n  border:none;\n  -webkit-box-shadow:none;\n          box-shadow:none;\n  padding:0; }\n  .bp3-input-ghost::-webkit-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-moz-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::-ms-input-placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost::placeholder{\n    color:rgba(92, 112, 128, 0.6);\n    opacity:1; }\n  .bp3-input-ghost:focus{\n    outline:none !important; }\n.bp3-toast{\n  -webkit-box-align:start;\n      -ms-flex-align:start;\n          align-items:flex-start;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  margin:20px 0 0;\n  max-width:500px;\n  min-width:300px;\n  pointer-events:all;\n  position:relative !important; }\n  .bp3-toast.bp3-toast-enter, .bp3-toast.bp3-toast-appear{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active, .bp3-toast.bp3-toast-appear-active{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-enter ~ .bp3-toast, .bp3-toast.bp3-toast-appear ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px); }\n  .bp3-toast.bp3-toast-enter-active ~ .bp3-toast, .bp3-toast.bp3-toast-appear-active ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);\n            transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }\n  .bp3-toast.bp3-toast-exit{\n    opacity:1;\n    -webkit-filter:blur(0);\n            filter:blur(0); }\n  .bp3-toast.bp3-toast-exit-active{\n    opacity:0;\n    -webkit-filter:blur(10px);\n            filter:blur(10px);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:300ms;\n            transition-duration:300ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:opacity, filter;\n    transition-property:opacity, filter, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast.bp3-toast-exit ~ .bp3-toast{\n    -webkit-transform:translateY(0);\n            transform:translateY(0); }\n  .bp3-toast.bp3-toast-exit-active ~ .bp3-toast{\n    -webkit-transform:translateY(-40px);\n            transform:translateY(-40px);\n    -webkit-transition-delay:50ms;\n            transition-delay:50ms;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-toast .bp3-button-group{\n    -webkit-box-flex:0;\n        -ms-flex:0 0 auto;\n            flex:0 0 auto;\n    padding:5px;\n    padding-left:0; }\n  .bp3-toast > .bp3-icon{\n    color:#5c7080;\n    margin:12px;\n    margin-right:0; }\n  .bp3-toast.bp3-dark,\n  .bp3-dark .bp3-toast{\n    background-color:#394b59;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-toast.bp3-dark > .bp3-icon,\n    .bp3-dark .bp3-toast > .bp3-icon{\n      color:#a7b6c2; }\n  .bp3-toast[class*=\"bp3-intent-\"] a{\n    color:rgba(255, 255, 255, 0.7); }\n    .bp3-toast[class*=\"bp3-intent-\"] a:hover{\n      color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] > .bp3-icon{\n    color:#ffffff; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::before,\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button .bp3-icon, .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    color:rgba(255, 255, 255, 0.7) !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:focus{\n    outline-color:rgba(255, 255, 255, 0.5); }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:hover{\n    background-color:rgba(255, 255, 255, 0.15) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button:active{\n    background-color:rgba(255, 255, 255, 0.3) !important;\n    color:#ffffff !important; }\n  .bp3-toast[class*=\"bp3-intent-\"] .bp3-button::after{\n    background:rgba(255, 255, 255, 0.3) !important; }\n  .bp3-toast.bp3-intent-primary{\n    background-color:#137cbd;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-success{\n    background-color:#0f9960;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-warning{\n    background-color:#d9822b;\n    color:#ffffff; }\n  .bp3-toast.bp3-intent-danger{\n    background-color:#db3737;\n    color:#ffffff; }\n\n.bp3-toast-message{\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  padding:11px;\n  word-break:break-word; }\n\n.bp3-toast-container{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box !important;\n  display:-ms-flexbox !important;\n  display:flex !important;\n  -webkit-box-orient:vertical;\n  -webkit-box-direction:normal;\n      -ms-flex-direction:column;\n          flex-direction:column;\n  left:0;\n  overflow:hidden;\n  padding:0 20px 20px;\n  pointer-events:none;\n  right:0;\n  z-index:40; }\n  .bp3-toast-container.bp3-toast-container-in-portal{\n    position:fixed; }\n  .bp3-toast-container.bp3-toast-container-inline{\n    position:absolute; }\n  .bp3-toast-container.bp3-toast-container-top{\n    top:0; }\n  .bp3-toast-container.bp3-toast-container-bottom{\n    bottom:0;\n    -webkit-box-orient:vertical;\n    -webkit-box-direction:reverse;\n        -ms-flex-direction:column-reverse;\n            flex-direction:column-reverse;\n    top:auto; }\n  .bp3-toast-container.bp3-toast-container-left{\n    -webkit-box-align:start;\n        -ms-flex-align:start;\n            align-items:flex-start; }\n  .bp3-toast-container.bp3-toast-container-right{\n    -webkit-box-align:end;\n        -ms-flex-align:end;\n            align-items:flex-end; }\n\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active) ~ .bp3-toast, .bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active),\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active) ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-exit-active ~ .bp3-toast,\n.bp3-toast-container-bottom .bp3-toast.bp3-toast-leave-active ~ .bp3-toast{\n  -webkit-transform:translateY(60px);\n          transform:translateY(60px); }\n.bp3-tooltip{\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);\n  -webkit-transform:scale(1);\n          transform:scale(1); }\n  .bp3-tooltip .bp3-popover-arrow{\n    height:22px;\n    position:absolute;\n    width:22px; }\n    .bp3-tooltip .bp3-popover-arrow::before{\n      height:14px;\n      margin:4px;\n      width:14px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip{\n    margin-bottom:11px;\n    margin-top:-11px; }\n    .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n      bottom:-8px; }\n      .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(-90deg);\n                transform:rotate(-90deg); }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip{\n    margin-left:11px; }\n    .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n      left:-8px; }\n      .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(0);\n                transform:rotate(0); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip{\n    margin-top:11px; }\n    .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n      top:-8px; }\n      .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(90deg);\n                transform:rotate(90deg); }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip{\n    margin-left:-11px;\n    margin-right:11px; }\n    .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n      right:-8px; }\n      .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow svg{\n        -webkit-transform:rotate(180deg);\n                transform:rotate(180deg); }\n  .bp3-tether-element-attached-middle > .bp3-tooltip > .bp3-popover-arrow{\n    top:50%;\n    -webkit-transform:translateY(-50%);\n            transform:translateY(-50%); }\n  .bp3-tether-element-attached-center > .bp3-tooltip > .bp3-popover-arrow{\n    right:50%;\n    -webkit-transform:translateX(50%);\n            transform:translateX(50%); }\n  .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{\n    top:-0.22183px; }\n  .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{\n    right:-0.22183px; }\n  .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{\n    left:-0.22183px; }\n  .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{\n    bottom:-0.22183px; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:top left;\n            transform-origin:top left; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:top center;\n            transform-origin:top center; }\n  .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:top right;\n            transform-origin:top right; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:center left;\n            transform-origin:center left; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:center center;\n            transform-origin:center center; }\n  .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:center right;\n            transform-origin:center right; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-tooltip{\n    -webkit-transform-origin:bottom left;\n            transform-origin:bottom left; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-tooltip{\n    -webkit-transform-origin:bottom center;\n            transform-origin:bottom center; }\n  .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-tooltip{\n    -webkit-transform-origin:bottom right;\n            transform-origin:bottom right; }\n  .bp3-tooltip .bp3-popover-content{\n    background:#394b59;\n    color:#f5f8fa; }\n  .bp3-tooltip .bp3-popover-arrow::before{\n    -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);\n            box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }\n  .bp3-tooltip .bp3-popover-arrow-border{\n    fill:#10161a;\n    fill-opacity:0.1; }\n  .bp3-tooltip .bp3-popover-arrow-fill{\n    fill:#394b59; }\n  .bp3-popover-enter > .bp3-tooltip, .bp3-popover-appear > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8); }\n  .bp3-popover-enter-active > .bp3-tooltip, .bp3-popover-appear-active > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-popover-exit > .bp3-tooltip{\n    -webkit-transform:scale(1);\n            transform:scale(1); }\n  .bp3-popover-exit-active > .bp3-tooltip{\n    -webkit-transform:scale(0.8);\n            transform:scale(0.8);\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:100ms;\n            transition-duration:100ms;\n    -webkit-transition-property:-webkit-transform;\n    transition-property:-webkit-transform;\n    transition-property:transform;\n    transition-property:transform, -webkit-transform;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tooltip .bp3-popover-content{\n    padding:10px 12px; }\n  .bp3-tooltip.bp3-dark,\n  .bp3-dark .bp3-tooltip{\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-content,\n    .bp3-dark .bp3-tooltip .bp3-popover-content{\n      background:#e1e8ed;\n      color:#394b59; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow::before,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow::before{\n      -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);\n              box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-border,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-border{\n      fill:#10161a;\n      fill-opacity:0.2; }\n    .bp3-tooltip.bp3-dark .bp3-popover-arrow-fill,\n    .bp3-dark .bp3-tooltip .bp3-popover-arrow-fill{\n      fill:#e1e8ed; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-content{\n    background:#137cbd;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-primary .bp3-popover-arrow-fill{\n    fill:#137cbd; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-content{\n    background:#0f9960;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-success .bp3-popover-arrow-fill{\n    fill:#0f9960; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-content{\n    background:#d9822b;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-warning .bp3-popover-arrow-fill{\n    fill:#d9822b; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-content{\n    background:#db3737;\n    color:#ffffff; }\n  .bp3-tooltip.bp3-intent-danger .bp3-popover-arrow-fill{\n    fill:#db3737; }\n\n.bp3-tooltip-indicator{\n  border-bottom:dotted 1px;\n  cursor:help; }\n.bp3-tree .bp3-icon, .bp3-tree .bp3-icon-standard, .bp3-tree .bp3-icon-large{\n  color:#5c7080; }\n  .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-tree .bp3-icon.bp3-intent-success, .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-tree-node-list{\n  list-style:none;\n  margin:0;\n  padding-left:0; }\n\n.bp3-tree-root{\n  background-color:transparent;\n  cursor:default;\n  padding-left:0;\n  position:relative; }\n\n.bp3-tree-node-content-0{\n  padding-left:0px; }\n\n.bp3-tree-node-content-1{\n  padding-left:23px; }\n\n.bp3-tree-node-content-2{\n  padding-left:46px; }\n\n.bp3-tree-node-content-3{\n  padding-left:69px; }\n\n.bp3-tree-node-content-4{\n  padding-left:92px; }\n\n.bp3-tree-node-content-5{\n  padding-left:115px; }\n\n.bp3-tree-node-content-6{\n  padding-left:138px; }\n\n.bp3-tree-node-content-7{\n  padding-left:161px; }\n\n.bp3-tree-node-content-8{\n  padding-left:184px; }\n\n.bp3-tree-node-content-9{\n  padding-left:207px; }\n\n.bp3-tree-node-content-10{\n  padding-left:230px; }\n\n.bp3-tree-node-content-11{\n  padding-left:253px; }\n\n.bp3-tree-node-content-12{\n  padding-left:276px; }\n\n.bp3-tree-node-content-13{\n  padding-left:299px; }\n\n.bp3-tree-node-content-14{\n  padding-left:322px; }\n\n.bp3-tree-node-content-15{\n  padding-left:345px; }\n\n.bp3-tree-node-content-16{\n  padding-left:368px; }\n\n.bp3-tree-node-content-17{\n  padding-left:391px; }\n\n.bp3-tree-node-content-18{\n  padding-left:414px; }\n\n.bp3-tree-node-content-19{\n  padding-left:437px; }\n\n.bp3-tree-node-content-20{\n  padding-left:460px; }\n\n.bp3-tree-node-content{\n  -webkit-box-align:center;\n      -ms-flex-align:center;\n          align-items:center;\n  display:-webkit-box;\n  display:-ms-flexbox;\n  display:flex;\n  height:30px;\n  padding-right:5px;\n  width:100%; }\n  .bp3-tree-node-content:hover{\n    background-color:rgba(191, 204, 214, 0.4); }\n\n.bp3-tree-node-caret,\n.bp3-tree-node-caret-none{\n  min-width:30px; }\n\n.bp3-tree-node-caret{\n  color:#5c7080;\n  cursor:pointer;\n  padding:7px;\n  -webkit-transform:rotate(0deg);\n          transform:rotate(0deg);\n  -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);\n  transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-tree-node-caret:hover{\n    color:#182026; }\n  .bp3-dark .bp3-tree-node-caret{\n    color:#a7b6c2; }\n    .bp3-dark .bp3-tree-node-caret:hover{\n      color:#f5f8fa; }\n  .bp3-tree-node-caret.bp3-tree-node-caret-open{\n    -webkit-transform:rotate(90deg);\n            transform:rotate(90deg); }\n  .bp3-tree-node-caret.bp3-icon-standard::before{\n    content:\"\"; }\n\n.bp3-tree-node-icon{\n  margin-right:7px;\n  position:relative; }\n\n.bp3-tree-node-label{\n  overflow:hidden;\n  text-overflow:ellipsis;\n  white-space:nowrap;\n  word-wrap:normal;\n  -webkit-box-flex:1;\n      -ms-flex:1 1 auto;\n          flex:1 1 auto;\n  position:relative;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-label span{\n    display:inline; }\n\n.bp3-tree-node-secondary-label{\n  padding:0 5px;\n  -webkit-user-select:none;\n     -moz-user-select:none;\n      -ms-user-select:none;\n          user-select:none; }\n  .bp3-tree-node-secondary-label .bp3-popover-wrapper,\n  .bp3-tree-node-secondary-label .bp3-popover-target{\n    -webkit-box-align:center;\n        -ms-flex-align:center;\n            align-items:center;\n    display:-webkit-box;\n    display:-ms-flexbox;\n    display:flex; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-content{\n  background-color:inherit;\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-disabled .bp3-tree-node-caret,\n.bp3-tree-node.bp3-disabled .bp3-tree-node-icon{\n  color:rgba(92, 112, 128, 0.6);\n  cursor:not-allowed; }\n\n.bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content,\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-standard, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-large{\n    color:#ffffff; }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret::before{\n    color:rgba(255, 255, 255, 0.7); }\n  .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret:hover::before{\n    color:#ffffff; }\n\n.bp3-dark .bp3-tree-node-content:hover{\n  background-color:rgba(92, 112, 128, 0.3); }\n\n.bp3-dark .bp3-tree .bp3-icon, .bp3-dark .bp3-tree .bp3-icon-standard, .bp3-dark .bp3-tree .bp3-icon-large{\n  color:#a7b6c2; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-primary{\n    color:#137cbd; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-success{\n    color:#0f9960; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-warning{\n    color:#d9822b; }\n  .bp3-dark .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-danger{\n    color:#db3737; }\n\n.bp3-dark .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{\n  background-color:#137cbd; }\n.bp3-omnibar{\n  -webkit-filter:blur(0);\n          filter:blur(0);\n  opacity:1;\n  background-color:#ffffff;\n  border-radius:3px;\n  -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n          box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);\n  left:calc(50% - 250px);\n  top:20vh;\n  width:500px;\n  z-index:21; }\n  .bp3-omnibar.bp3-overlay-enter, .bp3-omnibar.bp3-overlay-appear{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2; }\n  .bp3-omnibar.bp3-overlay-enter-active, .bp3-omnibar.bp3-overlay-appear-active{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar.bp3-overlay-exit{\n    -webkit-filter:blur(0);\n            filter:blur(0);\n    opacity:1; }\n  .bp3-omnibar.bp3-overlay-exit-active{\n    -webkit-filter:blur(20px);\n            filter:blur(20px);\n    opacity:0.2;\n    -webkit-transition-delay:0;\n            transition-delay:0;\n    -webkit-transition-duration:200ms;\n            transition-duration:200ms;\n    -webkit-transition-property:opacity, -webkit-filter;\n    transition-property:opacity, -webkit-filter;\n    transition-property:filter, opacity;\n    transition-property:filter, opacity, -webkit-filter;\n    -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);\n            transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }\n  .bp3-omnibar .bp3-input{\n    background-color:transparent;\n    border-radius:0; }\n    .bp3-omnibar .bp3-input, .bp3-omnibar .bp3-input:focus{\n      -webkit-box-shadow:none;\n              box-shadow:none; }\n  .bp3-omnibar .bp3-menu{\n    background-color:transparent;\n    border-radius:0;\n    -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n            box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);\n    max-height:calc(60vh - 40px);\n    overflow:auto; }\n    .bp3-omnibar .bp3-menu:empty{\n      display:none; }\n  .bp3-dark .bp3-omnibar, .bp3-omnibar.bp3-dark{\n    background-color:#30404d;\n    -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);\n            box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }\n\n.bp3-omnibar-overlay .bp3-overlay-backdrop{\n  background-color:rgba(16, 22, 26, 0.2); }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n\n.bp3-multi-select{\n  min-width:150px; }\n\n.bp3-multi-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto; }\n\n.bp3-select-popover .bp3-popover-content{\n  padding:5px; }\n\n.bp3-select-popover .bp3-input-group{\n  margin-bottom:0; }\n\n.bp3-select-popover .bp3-menu{\n  max-height:300px;\n  max-width:400px;\n  overflow:auto;\n  padding:0; }\n  .bp3-select-popover .bp3-menu:not(:first-child){\n    padding-top:5px; }\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* This file was auto-generated by ensureUiComponents() in @jupyterlab/buildutils */\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n/* Icons urls */\n\n:root {\n  --jp-icon-add: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDEzaC02djZoLTJ2LTZINXYtMmg2VjVoMnY2aDZ2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-bug: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0yMCA4aC0yLjgxYy0uNDUtLjc4LTEuMDctMS40NS0xLjgyLTEuOTZMMTcgNC40MSAxNS41OSAzbC0yLjE3IDIuMTdDMTIuOTYgNS4wNiAxMi40OSA1IDEyIDVjLS40OSAwLS45Ni4wNi0xLjQxLjE3TDguNDEgMyA3IDQuNDFsMS42MiAxLjYzQzcuODggNi41NSA3LjI2IDcuMjIgNi44MSA4SDR2MmgyLjA5Yy0uMDUuMzMtLjA5LjY2LS4wOSAxdjFINHYyaDJ2MWMwIC4zNC4wNC42Ny4wOSAxSDR2MmgyLjgxYzEuMDQgMS43OSAyLjk3IDMgNS4xOSAzczQuMTUtMS4yMSA1LjE5LTNIMjB2LTJoLTIuMDljLjA1LS4zMy4wOS0uNjYuMDktMXYtMWgydi0yaC0ydi0xYzAtLjM0LS4wNC0uNjctLjA5LTFIMjBWOHptLTYgOGgtNHYtMmg0djJ6bTAtNGgtNHYtMmg0djJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-build: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE0LjkgMTcuNDVDMTYuMjUgMTcuNDUgMTcuMzUgMTYuMzUgMTcuMzUgMTVDMTcuMzUgMTMuNjUgMTYuMjUgMTIuNTUgMTQuOSAxMi41NUMxMy41NCAxMi41NSAxMi40NSAxMy42NSAxMi40NSAxNUMxMi40NSAxNi4zNSAxMy41NCAxNy40NSAxNC45IDE3LjQ1Wk0yMC4xIDE1LjY4TDIxLjU4IDE2Ljg0QzIxLjcxIDE2Ljk1IDIxLjc1IDE3LjEzIDIxLjY2IDE3LjI5TDIwLjI2IDE5LjcxQzIwLjE3IDE5Ljg2IDIwIDE5LjkyIDE5LjgzIDE5Ljg2TDE4LjA5IDE5LjE2QzE3LjczIDE5LjQ0IDE3LjMzIDE5LjY3IDE2LjkxIDE5Ljg1TDE2LjY0IDIxLjdDMTYuNjIgMjEuODcgMTYuNDcgMjIgMTYuMyAyMkgxMy41QzEzLjMyIDIyIDEzLjE4IDIxLjg3IDEzLjE1IDIxLjdMMTIuODkgMTkuODVDMTIuNDYgMTkuNjcgMTIuMDcgMTkuNDQgMTEuNzEgMTkuMTZMOS45NjAwMiAxOS44NkM5LjgxMDAyIDE5LjkyIDkuNjIwMDIgMTkuODYgOS41NDAwMiAxOS43MUw4LjE0MDAyIDE3LjI5QzguMDUwMDIgMTcuMTMgOC4wOTAwMiAxNi45NSA4LjIyMDAyIDE2Ljg0TDkuNzAwMDIgMTUuNjhMOS42NTAwMSAxNUw5LjcwMDAyIDE0LjMxTDguMjIwMDIgMTMuMTZDOC4wOTAwMiAxMy4wNSA4LjA1MDAyIDEyLjg2IDguMTQwMDIgMTIuNzFMOS41NDAwMiAxMC4yOUM5LjYyMDAyIDEwLjEzIDkuODEwMDIgMTAuMDcgOS45NjAwMiAxMC4xM0wxMS43MSAxMC44NEMxMi4wNyAxMC41NiAxMi40NiAxMC4zMiAxMi44OSAxMC4xNUwxMy4xNSA4LjI4OTk4QzEzLjE4IDguMTI5OTggMTMuMzIgNy45OTk5OCAxMy41IDcuOTk5OThIMTYuM0MxNi40NyA3Ljk5OTk4IDE2LjYyIDguMTI5OTggMTYuNjQgOC4yODk5OEwxNi45MSAxMC4xNUMxNy4zMyAxMC4zMiAxNy43MyAxMC41NiAxOC4wOSAxMC44NEwxOS44MyAxMC4xM0MyMCAxMC4wNyAyMC4xNyAxMC4xMyAyMC4yNiAxMC4yOUwyMS42NiAxMi43MUMyMS43NSAxMi44NiAyMS43MSAxMy4wNSAyMS41OCAxMy4xNkwyMC4xIDE0LjMxTDIwLjE1IDE1TDIwLjEgMTUuNjhaIi8+CiAgICA8cGF0aCBkPSJNNy4zMjk2NiA3LjQ0NDU0QzguMDgzMSA3LjAwOTU0IDguMzM5MzIgNi4wNTMzMiA3LjkwNDMyIDUuMjk5ODhDNy40NjkzMiA0LjU0NjQzIDYuNTA4MSA0LjI4MTU2IDUuNzU0NjYgNC43MTY1NkM1LjM5MTc2IDQuOTI2MDggNS4xMjY5NSA1LjI3MTE4IDUuMDE4NDkgNS42NzU5NEM0LjkxMDA0IDYuMDgwNzEgNC45NjY4MiA2LjUxMTk4IDUuMTc2MzQgNi44NzQ4OEM1LjYxMTM0IDcuNjI4MzIgNi41NzYyMiA3Ljg3OTU0IDcuMzI5NjYgNy40NDQ1NFpNOS42NTcxOCA0Ljc5NTkzTDEwLjg2NzIgNC45NTE3OUMxMC45NjI4IDQuOTc3NDEgMTEuMDQwMiA1LjA3MTMzIDExLjAzODIgNS4xODc5M0wxMS4wMzg4IDYuOTg4OTNDMTEuMDQ1NSA3LjEwMDU0IDEwLjk2MTYgNy4xOTUxOCAxMC44NTUgNy4yMTA1NEw5LjY2MDAxIDcuMzgwODNMOS4yMzkxNSA4LjEzMTg4TDkuNjY5NjEgOS4yNTc0NUM5LjcwNzI5IDkuMzYyNzEgOS42NjkzNCA5LjQ3Njk5IDkuNTc0MDggOS41MzE5OUw4LjAxNTIzIDEwLjQzMkM3LjkxMTMxIDEwLjQ5MiA3Ljc5MzM3IDEwLjQ2NzcgNy43MjEwNSAxMC4zODI0TDYuOTg3NDggOS40MzE4OEw2LjEwOTMxIDkuNDMwODNMNS4zNDcwNCAxMC4zOTA1QzUuMjg5MDkgMTAuNDcwMiA1LjE3MzgzIDEwLjQ5MDUgNS4wNzE4NyAxMC40MzM5TDMuNTEyNDUgOS41MzI5M0MzLjQxMDQ5IDkuNDc2MzMgMy4zNzY0NyA5LjM1NzQxIDMuNDEwNzUgOS4yNTY3OUwzLjg2MzQ3IDguMTQwOTNMMy42MTc0OSA3Ljc3NDg4TDMuNDIzNDcgNy4zNzg4M0wyLjIzMDc1IDcuMjEyOTdDMi4xMjY0NyA3LjE5MjM1IDIuMDQwNDkgNy4xMDM0MiAyLjA0MjQ1IDYuOTg2ODJMMi4wNDE4NyA1LjE4NTgyQzIuMDQzODMgNS4wNjkyMiAyLjExOTA5IDQuOTc5NTggMi4yMTcwNCA0Ljk2OTIyTDMuNDIwNjUgNC43OTM5M0wzLjg2NzQ5IDQuMDI3ODhMMy40MTEwNSAyLjkxNzMxQzMuMzczMzcgMi44MTIwNCAzLjQxMTMxIDIuNjk3NzYgMy41MTUyMyAyLjYzNzc2TDUuMDc0MDggMS43Mzc3NkM1LjE2OTM0IDEuNjgyNzYgNS4yODcyOSAxLjcwNzA0IDUuMzU5NjEgMS43OTIzMUw2LjExOTE1IDIuNzI3ODhMNi45ODAwMSAyLjczODkzTDcuNzI0OTYgMS43ODkyMkM3Ljc5MTU2IDEuNzA0NTggNy45MTU0OCAxLjY3OTIyIDguMDA4NzkgMS43NDA4Mkw5LjU2ODIxIDIuNjQxODJDOS42NzAxNyAyLjY5ODQyIDkuNzEyODUgMi44MTIzNCA5LjY4NzIzIDIuOTA3OTdMOS4yMTcxOCA0LjAzMzgzTDkuNDYzMTYgNC4zOTk4OEw5LjY1NzE4IDQuNzk1OTNaIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iOS45LDEzLjYgMy42LDcuNCA0LjQsNi42IDkuOSwxMi4yIDE1LjQsNi43IDE2LjEsNy40ICIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNS45TDksOS43bDMuOC0zLjhsMS4yLDEuMmwtNC45LDVsLTQuOS01TDUuMiw1Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-caret-down: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNy41TDksMTEuMmwzLjgtMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-left: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik0xMC44LDEyLjhMNy4xLDlsMy44LTMuOGwwLDcuNkgxMC44eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-right: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik03LjIsNS4yTDEwLjksOWwtMy44LDMuOFY1LjJINy4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-caret-up-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iMTUuNCwxMy4zIDkuOSw3LjcgNC40LDEzLjIgMy42LDEyLjUgOS45LDYuMyAxNi4xLDEyLjYgIi8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-caret-up: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik01LjIsMTAuNUw5LDYuOGwzLjgsMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-case-sensitive: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgogIDxnIGNsYXNzPSJqcC1pY29uLWFjY2VudDIiIGZpbGw9IiNGRkYiPgogICAgPHBhdGggZD0iTTcuNiw4aDAuOWwzLjUsOGgtMS4xTDEwLDE0SDZsLTAuOSwySDRMNy42LDh6IE04LDkuMUw2LjQsMTNoMy4yTDgsOS4xeiIvPgogICAgPHBhdGggZD0iTTE2LjYsOS44Yy0wLjIsMC4xLTAuNCwwLjEtMC43LDAuMWMtMC4yLDAtMC40LTAuMS0wLjYtMC4yYy0wLjEtMC4xLTAuMi0wLjQtMC4yLTAuNyBjLTAuMywwLjMtMC42LDAuNS0wLjksMC43Yy0wLjMsMC4xLTAuNywwLjItMS4xLDAuMmMtMC4zLDAtMC41LDAtMC43LTAuMWMtMC4yLTAuMS0wLjQtMC4yLTAuNi0wLjNjLTAuMi0wLjEtMC4zLTAuMy0wLjQtMC41IGMtMC4xLTAuMi0wLjEtMC40LTAuMS0wLjdjMC0wLjMsMC4xLTAuNiwwLjItMC44YzAuMS0wLjIsMC4zLTAuNCwwLjQtMC41QzEyLDcsMTIuMiw2LjksMTIuNSw2LjhjMC4yLTAuMSwwLjUtMC4xLDAuNy0wLjIgYzAuMy0wLjEsMC41LTAuMSwwLjctMC4xYzAuMiwwLDAuNC0wLjEsMC42LTAuMWMwLjIsMCwwLjMtMC4xLDAuNC0wLjJjMC4xLTAuMSwwLjItMC4yLDAuMi0wLjRjMC0xLTEuMS0xLTEuMy0xIGMtMC40LDAtMS40LDAtMS40LDEuMmgtMC45YzAtMC40LDAuMS0wLjcsMC4yLTFjMC4xLTAuMiwwLjMtMC40LDAuNS0wLjZjMC4yLTAuMiwwLjUtMC4zLDAuOC0wLjNDMTMuMyw0LDEzLjYsNCwxMy45LDQgYzAuMywwLDAuNSwwLDAuOCwwLjFjMC4zLDAsMC41LDAuMSwwLjcsMC4yYzAuMiwwLjEsMC40LDAuMywwLjUsMC41QzE2LDUsMTYsNS4yLDE2LDUuNnYyLjljMCwwLjIsMCwwLjQsMCwwLjUgYzAsMC4xLDAuMSwwLjIsMC4zLDAuMmMwLjEsMCwwLjIsMCwwLjMsMFY5Ljh6IE0xNS4yLDYuOWMtMS4yLDAuNi0zLjEsMC4yLTMuMSwxLjRjMCwxLjQsMy4xLDEsMy4xLTAuNVY2Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-check: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik05IDE2LjE3TDQuODMgMTJsLTEuNDIgMS40MUw5IDE5IDIxIDdsLTEuNDEtMS40MXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-circle-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDJDNi40NyAyIDIgNi40NyAyIDEyczQuNDcgMTAgMTAgMTAgMTAtNC40NyAxMC0xMFMxNy41MyAyIDEyIDJ6bTAgMThjLTQuNDEgMC04LTMuNTktOC04czMuNTktOCA4LTggOCAzLjU5IDggOC0zLjU5IDgtOCA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-circle: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjgiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-clear: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8bWFzayBpZD0iZG9udXRIb2xlIj4KICAgIDxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0id2hpdGUiIC8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSI4IiBmaWxsPSJibGFjayIvPgogIDwvbWFzaz4KCiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxyZWN0IGhlaWdodD0iMTgiIHdpZHRoPSIyIiB4PSIxMSIgeT0iMyIgdHJhbnNmb3JtPSJyb3RhdGUoMzE1LCAxMiwgMTIpIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIgbWFzaz0idXJsKCNkb251dEhvbGUpIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-close: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1ub25lIGpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIGpwLWljb24zLWhvdmVyIiBmaWxsPSJub25lIj4KICAgIDxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjExIi8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIGpwLWljb24tYWNjZW50Mi1ob3ZlciIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMTkgNi40MUwxNy41OSA1IDEyIDEwLjU5IDYuNDEgNSA1IDYuNDEgMTAuNTkgMTIgNSAxNy41OSA2LjQxIDE5IDEyIDEzLjQxIDE3LjU5IDE5IDE5IDE3LjU5IDEzLjQxIDEyeiIvPgogIDwvZz4KCiAgPGcgY2xhc3M9ImpwLWljb24tbm9uZSBqcC1pY29uLWJ1c3kiIGZpbGw9Im5vbmUiPgogICAgPGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-code: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTExLjQgMTguNkw2LjggMTRMMTEuNCA5LjRMMTAgOEw0IDE0TDEwIDIwTDExLjQgMTguNlpNMTYuNiAxOC42TDIxLjIgMTRMMTYuNiA5LjRMMTggOEwyNCAxNEwxOCAyMEwxNi42IDE4LjZWMTguNloiLz4KCTwvZz4KPC9zdmc+Cg==);\n  --jp-icon-console: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwMCAyMDAiPgogIDxnIGNsYXNzPSJqcC1pY29uLWJyYW5kMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMjg4RDEiPgogICAgPHBhdGggZD0iTTIwIDE5LjhoMTYwdjE1OS45SDIweiIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNmZmYiPgogICAgPHBhdGggZD0iTTEwNSAxMjcuM2g0MHYxMi44aC00MHpNNTEuMSA3N0w3NCA5OS45bC0yMy4zIDIzLjMgMTAuNSAxMC41IDIzLjMtMjMuM0w5NSA5OS45IDg0LjUgODkuNCA2MS42IDY2LjV6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-copy: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTExLjksMUgzLjJDMi40LDEsMS43LDEuNywxLjcsMi41djEwLjJoMS41VjIuNWg4LjdWMXogTTE0LjEsMy45aC04Yy0wLjgsMC0xLjUsMC43LTEuNSwxLjV2MTAuMmMwLDAuOCwwLjcsMS41LDEuNSwxLjVoOCBjMC44LDAsMS41LTAuNywxLjUtMS41VjUuNEMxNS41LDQuNiwxNC45LDMuOSwxNC4xLDMuOXogTTE0LjEsMTUuNWgtOFY1LjRoOFYxNS41eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-copyright: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDI0IDI0IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCI+CiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik0xMS44OCw5LjE0YzEuMjgsMC4wNiwxLjYxLDEuMTUsMS42MywxLjY2aDEuNzljLTAuMDgtMS45OC0xLjQ5LTMuMTktMy40NS0zLjE5QzkuNjQsNy42MSw4LDksOCwxMi4xNCBjMCwxLjk0LDAuOTMsNC4yNCwzLjg0LDQuMjRjMi4yMiwwLDMuNDEtMS42NSwzLjQ0LTIuOTVoLTEuNzljLTAuMDMsMC41OS0wLjQ1LDEuMzgtMS42MywxLjQ0QzEwLjU1LDE0LjgzLDEwLDEzLjgxLDEwLDEyLjE0IEMxMCw5LjI1LDExLjI4LDkuMTYsMTEuODgsOS4xNHogTTEyLDJDNi40OCwyLDIsNi40OCwyLDEyczQuNDgsMTAsMTAsMTBzMTAtNC40OCwxMC0xMFMxNy41MiwyLDEyLDJ6IE0xMiwyMGMtNC40MSwwLTgtMy41OS04LTggczMuNTktOCw4LThzOCwzLjU5LDgsOFMxNi40MSwyMCwxMiwyMHoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-cut: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkuNjQgNy42NGMuMjMtLjUuMzYtMS4wNS4zNi0xLjY0IDAtMi4yMS0xLjc5LTQtNC00UzIgMy43OSAyIDZzMS43OSA0IDQgNGMuNTkgMCAxLjE0LS4xMyAxLjY0LS4zNkwxMCAxMmwtMi4zNiAyLjM2QzcuMTQgMTQuMTMgNi41OSAxNCA2IDE0Yy0yLjIxIDAtNCAxLjc5LTQgNHMxLjc5IDQgNCA0IDQtMS43OSA0LTRjMC0uNTktLjEzLTEuMTQtLjM2LTEuNjRMMTIgMTRsNyA3aDN2LTFMOS42NCA3LjY0ek02IDhjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTAgMTJjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTYtNy41Yy0uMjggMC0uNS0uMjItLjUtLjVzLjIyLS41LjUtLjUuNS4yMi41LjUtLjIyLjUtLjUuNXpNMTkgM2wtNiA2IDIgMiA3LTdWM3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-download: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDloLTRWM0g5djZINWw3IDcgNy03ek01IDE4djJoMTR2LTJINXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-edit: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMgMTcuMjVWMjFoMy43NUwxNy44MSA5Ljk0bC0zLjc1LTMuNzVMMyAxNy4yNXpNMjAuNzEgNy4wNGMuMzktLjM5LjM5LTEuMDIgMC0xLjQxbC0yLjM0LTIuMzRjLS4zOS0uMzktMS4wMi0uMzktMS40MSAwbC0xLjgzIDEuODMgMy43NSAzLjc1IDEuODMtMS44M3oiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-ellipses: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iNSIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxOSIgY3k9IjEyIiByPSIyIi8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-extension: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwLjUgMTFIMTlWN2MwLTEuMS0uOS0yLTItMmgtNFYzLjVDMTMgMi4xMiAxMS44OCAxIDEwLjUgMVM4IDIuMTIgOCAzLjVWNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAydjMuOEgzLjVjMS40OSAwIDIuNyAxLjIxIDIuNyAyLjdzLTEuMjEgMi43LTIuNyAyLjdIMlYyMGMwIDEuMS45IDIgMiAyaDMuOHYtMS41YzAtMS40OSAxLjIxLTIuNyAyLjctMi43IDEuNDkgMCAyLjcgMS4yMSAyLjcgMi43VjIySDE3YzEuMSAwIDItLjkgMi0ydi00aDEuNWMxLjM4IDAgMi41LTEuMTIgMi41LTIuNVMyMS44OCAxMSAyMC41IDExeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-fast-forward: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTQgMThsOC41LTZMNCA2djEyem05LTEydjEybDguNS02TDEzIDZ6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-file-upload: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkgMTZoNnYtNmg0bC03LTctNyA3aDR6bS00IDJoMTR2Mkg1eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-file: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuMyA4LjJsLTUuNS01LjVjLS4zLS4zLS43LS41LTEuMi0uNUgzLjljLS44LjEtMS42LjktMS42IDEuOHYxNC4xYzAgLjkuNyAxLjYgMS42IDEuNmgxNC4yYy45IDAgMS42LS43IDEuNi0xLjZWOS40Yy4xLS41LS4xLS45LS40LTEuMnptLTUuOC0zLjNsMy40IDMuNmgtMy40VjQuOXptMy45IDEyLjdINC43Yy0uMSAwLS4yIDAtLjItLjJWNC43YzAtLjIuMS0uMy4yLS4zaDcuMnY0LjRzMCAuOC4zIDEuMWMuMy4zIDEuMS4zIDEuMS4zaDQuM3Y3LjJzLS4xLjItLjIuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-filter-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEwIDE4aDR2LTJoLTR2MnpNMyA2djJoMThWNkgzem0zIDdoMTJ2LTJINnYyeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY4YzAtMS4xLS45LTItMi0yaC04bC0yLTJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-html5: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMDAiIGQ9Ik0xMDguNCAwaDIzdjIyLjhoMjEuMlYwaDIzdjY5aC0yM1Y0NmgtMjF2MjNoLTIzLjJNMjA2IDIzaC0yMC4zVjBoNjMuN3YyM0gyMjl2NDZoLTIzbTUzLjUtNjloMjQuMWwxNC44IDI0LjNMMzEzLjIgMGgyNC4xdjY5aC0yM1YzNC44bC0xNi4xIDI0LjgtMTYuMS0yNC44VjY5aC0yMi42bTg5LjItNjloMjN2NDYuMmgzMi42VjY5aC01NS42Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI2U0NGQyNiIgZD0iTTEwNy42IDQ3MWwtMzMtMzcwLjRoMzYyLjhsLTMzIDM3MC4yTDI1NS43IDUxMiIvPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNmMTY1MjkiIGQ9Ik0yNTYgNDgwLjVWMTMxaDE0OC4zTDM3NiA0NDciLz4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNlYmViZWIiIGQ9Ik0xNDIgMTc2LjNoMTE0djQ1LjRoLTY0LjJsNC4yIDQ2LjVoNjB2NDUuM0gxNTQuNG0yIDIyLjhIMjAybDMuMiAzNi4zIDUwLjggMTMuNnY0Ny40bC05My4yLTI2Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIiBmaWxsPSIjZmZmIiBkPSJNMzY5LjYgMTc2LjNIMjU1Ljh2NDUuNGgxMDkuNm0tNC4xIDQ2LjVIMjU1Ljh2NDUuNGg1NmwtNS4zIDU5LTUwLjcgMTMuNnY0Ny4ybDkzLTI1LjgiLz4KPC9zdmc+Cg==);\n  --jp-icon-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1icmFuZDQganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNGRkYiIGQ9Ik0yLjIgMi4yaDE3LjV2MTcuNUgyLjJ6Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzNGNTFCNSIgZD0iTTIuMiAyLjJ2MTcuNWgxNy41bC4xLTE3LjVIMi4yem0xMi4xIDIuMmMxLjIgMCAyLjIgMSAyLjIgMi4ycy0xIDIuMi0yLjIgMi4yLTIuMi0xLTIuMi0yLjIgMS0yLjIgMi4yLTIuMnpNNC40IDE3LjZsMy4zLTguOCAzLjMgNi42IDIuMi0zLjIgNC40IDUuNEg0LjR6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-inspector: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY2YzAtMS4xLS45LTItMi0yem0tNSAxNEg0di00aDExdjR6bTAtNUg0VjloMTF2NHptNSA1aC00VjloNHY5eiIvPgo8L3N2Zz4K);\n  --jp-icon-json: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNGOUE4MjUiPgogICAgPHBhdGggZD0iTTIwLjIgMTEuOGMtMS42IDAtMS43LjUtMS43IDEgMCAuNC4xLjkuMSAxLjMuMS41LjEuOS4xIDEuMyAwIDEuNy0xLjQgMi4zLTMuNSAyLjNoLS45di0xLjloLjVjMS4xIDAgMS40IDAgMS40LS44IDAtLjMgMC0uNi0uMS0xIDAtLjQtLjEtLjgtLjEtMS4yIDAtMS4zIDAtMS44IDEuMy0yLTEuMy0uMi0xLjMtLjctMS4zLTIgMC0uNC4xLS44LjEtMS4yLjEtLjQuMS0uNy4xLTEgMC0uOC0uNC0uNy0xLjQtLjhoLS41VjQuMWguOWMyLjIgMCAzLjUuNyAzLjUgMi4zIDAgLjQtLjEuOS0uMSAxLjMtLjEuNS0uMS45LS4xIDEuMyAwIC41LjIgMSAxLjcgMXYxLjh6TTEuOCAxMC4xYzEuNiAwIDEuNy0uNSAxLjctMSAwLS40LS4xLS45LS4xLTEuMy0uMS0uNS0uMS0uOS0uMS0xLjMgMC0xLjYgMS40LTIuMyAzLjUtMi4zaC45djEuOWgtLjVjLTEgMC0xLjQgMC0xLjQuOCAwIC4zIDAgLjYuMSAxIDAgLjIuMS42LjEgMSAwIDEuMyAwIDEuOC0xLjMgMkM2IDExLjIgNiAxMS43IDYgMTNjMCAuNC0uMS44LS4xIDEuMi0uMS4zLS4xLjctLjEgMSAwIC44LjMuOCAxLjQuOGguNXYxLjloLS45Yy0yLjEgMC0zLjUtLjYtMy41LTIuMyAwLS40LjEtLjkuMS0xLjMuMS0uNS4xLS45LjEtMS4zIDAtLjUtLjItMS0xLjctMXYtMS45eiIvPgogICAgPGNpcmNsZSBjeD0iMTEiIGN5PSIxMy44IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY3g9IjExIiBjeT0iOC4yIiByPSIyLjEiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-julia: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDMyNSAzMDAiPgogIDxnIGNsYXNzPSJqcC1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjY2IzYzMzIj4KICAgIDxwYXRoIGQ9Ik0gMTUwLjg5ODQzOCAyMjUgQyAxNTAuODk4NDM4IDI2Ni40MjE4NzUgMTE3LjMyMDMxMiAzMDAgNzUuODk4NDM4IDMwMCBDIDM0LjQ3NjU2MiAzMDAgMC44OTg0MzggMjY2LjQyMTg3NSAwLjg5ODQzOCAyMjUgQyAwLjg5ODQzOCAxODMuNTc4MTI1IDM0LjQ3NjU2MiAxNTAgNzUuODk4NDM4IDE1MCBDIDExNy4zMjAzMTIgMTUwIDE1MC44OTg0MzggMTgzLjU3ODEyNSAxNTAuODk4NDM4IDIyNSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzM4OTgyNiI+CiAgICA8cGF0aCBkPSJNIDIzNy41IDc1IEMgMjM3LjUgMTE2LjQyMTg3NSAyMDMuOTIxODc1IDE1MCAxNjIuNSAxNTAgQyAxMjEuMDc4MTI1IDE1MCA4Ny41IDExNi40MjE4NzUgODcuNSA3NSBDIDg3LjUgMzMuNTc4MTI1IDEyMS4wNzgxMjUgMCAxNjIuNSAwIEMgMjAzLjkyMTg3NSAwIDIzNy41IDMzLjU3ODEyNSAyMzcuNSA3NSIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzk1NThiMiI+CiAgICA8cGF0aCBkPSJNIDMyNC4xMDE1NjIgMjI1IEMgMzI0LjEwMTU2MiAyNjYuNDIxODc1IDI5MC41MjM0MzggMzAwIDI0OS4xMDE1NjIgMzAwIEMgMjA3LjY3OTY4OCAzMDAgMTc0LjEwMTU2MiAyNjYuNDIxODc1IDE3NC4xMDE1NjIgMjI1IEMgMTc0LjEwMTU2MiAxODMuNTc4MTI1IDIwNy42Nzk2ODggMTUwIDI0OS4xMDE1NjIgMTUwIEMgMjkwLjUyMzQzOCAxNTAgMzI0LjEwMTU2MiAxODMuNTc4MTI1IDMyNC4xMDE1NjIgMjI1Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-jupyter-favicon: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUyIiBoZWlnaHQ9IjE2NSIgdmlld0JveD0iMCAwIDE1MiAxNjUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA3ODk0NywgMTEwLjU4MjkyNykiIGQ9Ik03NS45NDIyODQyLDI5LjU4MDQ1NjEgQzQzLjMwMjM5NDcsMjkuNTgwNDU2MSAxNC43OTY3ODMyLDE3LjY1MzQ2MzQgMCwwIEM1LjUxMDgzMjExLDE1Ljg0MDY4MjkgMTUuNzgxNTM4OSwyOS41NjY3NzMyIDI5LjM5MDQ5NDcsMzkuMjc4NDE3MSBDNDIuOTk5Nyw0OC45ODk4NTM3IDU5LjI3MzcsNTQuMjA2NzgwNSA3NS45NjA1Nzg5LDU0LjIwNjc4MDUgQzkyLjY0NzQ1NzksNTQuMjA2NzgwNSAxMDguOTIxNDU4LDQ4Ljk4OTg1MzcgMTIyLjUzMDY2MywzOS4yNzg0MTcxIEMxMzYuMTM5NDUzLDI5LjU2Njc3MzIgMTQ2LjQxMDI4NCwxNS44NDA2ODI5IDE1MS45MjExNTgsMCBDMTM3LjA4Nzg2OCwxNy42NTM0NjM0IDEwOC41ODI1ODksMjkuNTgwNDU2MSA3NS45NDIyODQyLDI5LjU4MDQ1NjEgTDc1Ljk0MjI4NDIsMjkuNTgwNDU2MSBaIiAvPgogICAgPHBhdGggdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMzczNjgsIDAuNzA0ODc4KSIgZD0iTTc1Ljk3ODQ1NzksMjQuNjI2NDA3MyBDMTA4LjYxODc2MywyNC42MjY0MDczIDEzNy4xMjQ0NTgsMzYuNTUzNDQxNSAxNTEuOTIxMTU4LDU0LjIwNjc4MDUgQzE0Ni40MTAyODQsMzguMzY2MjIyIDEzNi4xMzk0NTMsMjQuNjQwMTMxNyAxMjIuNTMwNjYzLDE0LjkyODQ4NzggQzEwOC45MjE0NTgsNS4yMTY4NDM5IDkyLjY0NzQ1NzksMCA3NS45NjA1Nzg5LDAgQzU5LjI3MzcsMCA0Mi45OTk3LDUuMjE2ODQzOSAyOS4zOTA0OTQ3LDE0LjkyODQ4NzggQzE1Ljc4MTUzODksMjQuNjQwMTMxNyA1LjUxMDgzMjExLDM4LjM2NjIyMiAwLDU0LjIwNjc4MDUgQzE0LjgzMzA4MTYsMzYuNTg5OTI5MyA0My4zMzg1Njg0LDI0LjYyNjQwNzMgNzUuOTc4NDU3OSwyNC42MjY0MDczIEw3NS45Nzg0NTc5LDI0LjYyNjQwNzMgWiIgLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-jupyter: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzkiIGhlaWdodD0iNTEiIHZpZXdCb3g9IjAgMCAzOSA1MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTYzOCAtMjI4MSkiPgogICAgPGcgY2xhc3M9ImpwLWljb24td2FybjAiIGZpbGw9IiNGMzc3MjYiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5Ljc0IDIzMTEuOTgpIiBkPSJNIDE4LjI2NDYgNy4xMzQxMUMgMTAuNDE0NSA3LjEzNDExIDMuNTU4NzIgNC4yNTc2IDAgMEMgMS4zMjUzOSAzLjgyMDQgMy43OTU1NiA3LjEzMDgxIDcuMDY4NiA5LjQ3MzAzQyAxMC4zNDE3IDExLjgxNTIgMTQuMjU1NyAxMy4wNzM0IDE4LjI2OSAxMy4wNzM0QyAyMi4yODIzIDEzLjA3MzQgMjYuMTk2MyAxMS44MTUyIDI5LjQ2OTQgOS40NzMwM0MgMzIuNzQyNCA3LjEzMDgxIDM1LjIxMjYgMy44MjA0IDM2LjUzOCAwQyAzMi45NzA1IDQuMjU3NiAyNi4xMTQ4IDcuMTM0MTEgMTguMjY0NiA3LjEzNDExWiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5LjczIDIyODUuNDgpIiBkPSJNIDE4LjI3MzMgNS45MzkzMUMgMjYuMTIzNSA1LjkzOTMxIDMyLjk3OTMgOC44MTU4MyAzNi41MzggMTMuMDczNEMgMzUuMjEyNiA5LjI1MzAzIDMyLjc0MjQgNS45NDI2MiAyOS40Njk0IDMuNjAwNEMgMjYuMTk2MyAxLjI1ODE4IDIyLjI4MjMgMCAxOC4yNjkgMEMgMTQuMjU1NyAwIDEwLjM0MTcgMS4yNTgxOCA3LjA2ODYgMy42MDA0QyAzLjc5NTU2IDUuOTQyNjIgMS4zMjUzOSA5LjI1MzAzIDAgMTMuMDczNEMgMy41Njc0NSA4LjgyNDYzIDEwLjQyMzIgNS45MzkzMSAxOC4yNzMzIDUuOTM5MzFaIi8+CiAgICA8L2c+CiAgICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjY5LjMgMjI4MS4zMSkiIGQ9Ik0gNS44OTM1MyAyLjg0NEMgNS45MTg4OSAzLjQzMTY1IDUuNzcwODUgNC4wMTM2NyA1LjQ2ODE1IDQuNTE2NDVDIDUuMTY1NDUgNS4wMTkyMiA0LjcyMTY4IDUuNDIwMTUgNC4xOTI5OSA1LjY2ODUxQyAzLjY2NDMgNS45MTY4OCAzLjA3NDQ0IDYuMDAxNTEgMi40OTgwNSA1LjkxMTcxQyAxLjkyMTY2IDUuODIxOSAxLjM4NDYzIDUuNTYxNyAwLjk1NDg5OCA1LjE2NDAxQyAwLjUyNTE3IDQuNzY2MzMgMC4yMjIwNTYgNC4yNDkwMyAwLjA4MzkwMzcgMy42Nzc1N0MgLTAuMDU0MjQ4MyAzLjEwNjExIC0wLjAyMTIzIDIuNTA2MTcgMC4xNzg3ODEgMS45NTM2NEMgMC4zNzg3OTMgMS40MDExIDAuNzM2ODA5IDAuOTIwODE3IDEuMjA3NTQgMC41NzM1MzhDIDEuNjc4MjYgMC4yMjYyNTkgMi4yNDA1NSAwLjAyNzU5MTkgMi44MjMyNiAwLjAwMjY3MjI5QyAzLjYwMzg5IC0wLjAzMDcxMTUgNC4zNjU3MyAwLjI0OTc4OSA0Ljk0MTQyIDAuNzgyNTUxQyA1LjUxNzExIDEuMzE1MzEgNS44NTk1NiAyLjA1Njc2IDUuODkzNTMgMi44NDRaIi8+CiAgICAgIDxwYXRoIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE2MzkuOCAyMzIzLjgxKSIgZD0iTSA3LjQyNzg5IDMuNTgzMzhDIDcuNDYwMDggNC4zMjQzIDcuMjczNTUgNS4wNTgxOSA2Ljg5MTkzIDUuNjkyMTNDIDYuNTEwMzEgNi4zMjYwNyA1Ljk1MDc1IDYuODMxNTYgNS4yODQxMSA3LjE0NDZDIDQuNjE3NDcgNy40NTc2MyAzLjg3MzcxIDcuNTY0MTQgMy4xNDcwMiA3LjQ1MDYzQyAyLjQyMDMyIDcuMzM3MTIgMS43NDMzNiA3LjAwODcgMS4yMDE4NCA2LjUwNjk1QyAwLjY2MDMyOCA2LjAwNTIgMC4yNzg2MSA1LjM1MjY4IDAuMTA1MDE3IDQuNjMyMDJDIC0wLjA2ODU3NTcgMy45MTEzNSAtMC4wMjYyMzYxIDMuMTU0OTQgMC4yMjY2NzUgMi40NTg1NkMgMC40Nzk1ODcgMS43NjIxNyAwLjkzMTY5NyAxLjE1NzEzIDEuNTI1NzYgMC43MjAwMzNDIDIuMTE5ODMgMC4yODI5MzUgMi44MjkxNCAwLjAzMzQzOTUgMy41NjM4OSAwLjAwMzEzMzQ0QyA0LjU0NjY3IC0wLjAzNzQwMzMgNS41MDUyOSAwLjMxNjcwNiA2LjIyOTYxIDAuOTg3ODM1QyA2Ljk1MzkzIDEuNjU4OTYgNy4zODQ4NCAyLjU5MjM1IDcuNDI3ODkgMy41ODMzOEwgNy40Mjc4OSAzLjU4MzM4WiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM4LjM2IDIyODYuMDYpIiBkPSJNIDIuMjc0NzEgNC4zOTYyOUMgMS44NDM2MyA0LjQxNTA4IDEuNDE2NzEgNC4zMDQ0NSAxLjA0Nzk5IDQuMDc4NDNDIDAuNjc5MjY4IDMuODUyNCAwLjM4NTMyOCAzLjUyMTE0IDAuMjAzMzcxIDMuMTI2NTZDIDAuMDIxNDEzNiAyLjczMTk4IC0wLjA0MDM3OTggMi4yOTE4MyAwLjAyNTgxMTYgMS44NjE4MUMgMC4wOTIwMDMxIDEuNDMxOCAwLjI4MzIwNCAxLjAzMTI2IDAuNTc1MjEzIDAuNzEwODgzQyAwLjg2NzIyMiAwLjM5MDUxIDEuMjQ2OTEgMC4xNjQ3MDggMS42NjYyMiAwLjA2MjA1OTJDIDIuMDg1NTMgLTAuMDQwNTg5NyAyLjUyNTYxIC0wLjAxNTQ3MTQgMi45MzA3NiAwLjEzNDIzNUMgMy4zMzU5MSAwLjI4Mzk0MSAzLjY4NzkyIDAuNTUxNTA1IDMuOTQyMjIgMC45MDMwNkMgNC4xOTY1MiAxLjI1NDYyIDQuMzQxNjkgMS42NzQzNiA0LjM1OTM1IDIuMTA5MTZDIDQuMzgyOTkgMi42OTEwNyA0LjE3Njc4IDMuMjU4NjkgMy43ODU5NyAzLjY4NzQ2QyAzLjM5NTE2IDQuMTE2MjQgMi44NTE2NiA0LjM3MTE2IDIuMjc0NzEgNC4zOTYyOUwgMi4yNzQ3MSA0LjM5NjI5WiIvPgogICAgPC9nPgogIDwvZz4+Cjwvc3ZnPgo=);\n  --jp-icon-jupyterlab-wordmark: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIHZpZXdCb3g9IjAgMCAxODYwLjggNDc1Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0RTRFNEUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ4MC4xMzY0MDEsIDY0LjI3MTQ5MykiPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMDAwMDAsIDU4Ljg3NTU2NikiPgogICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA4NzYwMywgMC4xNDAyOTQpIj4KICAgICAgICA8cGF0aCBkPSJNLTQyNi45LDE2OS44YzAsNDguNy0zLjcsNjQuNy0xMy42LDc2LjRjLTEwLjgsMTAtMjUsMTUuNS0zOS43LDE1LjVsMy43LDI5IGMyMi44LDAuMyw0NC44LTcuOSw2MS45LTIzLjFjMTcuOC0xOC41LDI0LTQ0LjEsMjQtODMuM1YwSC00Mjd2MTcwLjFMLTQyNi45LDE2OS44TC00MjYuOSwxNjkuOHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTU1LjA0NTI5NiwgNTYuODM3MTA0KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuNTYyNDUzLCAxLjc5OTg0MikiPgogICAgICAgIDxwYXRoIGQ9Ik0tMzEyLDE0OGMwLDIxLDAsMzkuNSwxLjcsNTUuNGgtMzEuOGwtMi4xLTMzLjNoLTAuOGMtNi43LDExLjYtMTYuNCwyMS4zLTI4LDI3LjkgYy0xMS42LDYuNi0yNC44LDEwLTM4LjIsOS44Yy0zMS40LDAtNjktMTcuNy02OS04OVYwaDM2LjR2MTEyLjdjMCwzOC43LDExLjYsNjQuNyw0NC42LDY0LjdjMTAuMy0wLjIsMjAuNC0zLjUsMjguOS05LjQgYzguNS01LjksMTUuMS0xNC4zLDE4LjktMjMuOWMyLjItNi4xLDMuMy0xMi41LDMuMy0xOC45VjAuMmgzNi40VjE0OEgtMzEyTC0zMTIsMTQ4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzOTAuMDEzMzIyLCA1My40Nzk2MzgpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS43MDY0NTgsIDAuMjMxNDI1KSI+CiAgICAgICAgPHBhdGggZD0iTS00NzguNiw3MS40YzAtMjYtMC44LTQ3LTEuNy02Ni43aDMyLjdsMS43LDM0LjhoMC44YzcuMS0xMi41LDE3LjUtMjIuOCwzMC4xLTI5LjcgYzEyLjUtNywyNi43LTEwLjMsNDEtOS44YzQ4LjMsMCw4NC43LDQxLjcsODQuNywxMDMuM2MwLDczLjEtNDMuNywxMDkuMi05MSwxMDkuMmMtMTIuMSwwLjUtMjQuMi0yLjItMzUtNy44IGMtMTAuOC01LjYtMTkuOS0xMy45LTI2LjYtMjQuMmgtMC44VjI5MWgtMzZ2LTIyMEwtNDc4LjYsNzEuNEwtNDc4LjYsNzEuNHogTS00NDIuNiwxMjUuNmMwLjEsNS4xLDAuNiwxMC4xLDEuNywxNS4xIGMzLDEyLjMsOS45LDIzLjMsMTkuOCwzMS4xYzkuOSw3LjgsMjIuMSwxMi4xLDM0LjcsMTIuMWMzOC41LDAsNjAuNy0zMS45LDYwLjctNzguNWMwLTQwLjctMjEuMS03NS42LTU5LjUtNzUuNiBjLTEyLjksMC40LTI1LjMsNS4xLTM1LjMsMTMuNGMtOS45LDguMy0xNi45LDE5LjctMTkuNiwzMi40Yy0xLjUsNC45LTIuMywxMC0yLjUsMTUuMVYxMjUuNkwtNDQyLjYsMTI1LjZMLTQ0Mi42LDEyNS42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MDYuNzQwNzI2LCA1Ni44MzcxMDQpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC43NTEyMjYsIDEuOTg5Mjk5KSI+CiAgICAgICAgPHBhdGggZD0iTS00NDAuOCwwbDQzLjcsMTIwLjFjNC41LDEzLjQsOS41LDI5LjQsMTIuOCw0MS43aDAuOGMzLjctMTIuMiw3LjktMjcuNywxMi44LTQyLjQgbDM5LjctMTE5LjJoMzguNUwtMzQ2LjksMTQ1Yy0yNiw2OS43LTQzLjcsMTA1LjQtNjguNiwxMjcuMmMtMTIuNSwxMS43LTI3LjksMjAtNDQuNiwyMy45bC05LjEtMzEuMSBjMTEuNy0zLjksMjIuNS0xMC4xLDMxLjgtMTguMWMxMy4yLTExLjEsMjMuNy0yNS4yLDMwLjYtNDEuMmMxLjUtMi44LDIuNS01LjcsMi45LTguOGMtMC4zLTMuMy0xLjItNi42LTIuNS05LjdMLTQ4MC4yLDAuMSBoMzkuN0wtNDQwLjgsMEwtNDQwLjgsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODIyLjc0ODEwNCwgMC4wMDAwMDApIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS40NjQwNTAsIDAuMzc4OTE0KSI+CiAgICAgICAgPHBhdGggZD0iTS00MTMuNywwdjU4LjNoNTJ2MjguMmgtNTJWMTk2YzAsMjUsNywzOS41LDI3LjMsMzkuNWM3LjEsMC4xLDE0LjItMC43LDIxLjEtMi41IGwxLjcsMjcuN2MtMTAuMywzLjctMjEuMyw1LjQtMzIuMiw1Yy03LjMsMC40LTE0LjYtMC43LTIxLjMtMy40Yy02LjgtMi43LTEyLjktNi44LTE3LjktMTIuMWMtMTAuMy0xMC45LTE0LjEtMjktMTQuMS01Mi45IFY4Ni41aC0zMVY1OC4zaDMxVjkuNkwtNDEzLjcsMEwtNDEzLjcsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOTc0LjQzMzI4NiwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuOTkwMDM0LCAwLjYxMDMzOSkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDQ1LjgsMTEzYzAuOCw1MCwzMi4yLDcwLjYsNjguNiw3MC42YzE5LDAuNiwzNy45LTMsNTUuMy0xMC41bDYuMiwyNi40IGMtMjAuOSw4LjktNDMuNSwxMy4xLTY2LjIsMTIuNmMtNjEuNSwwLTk4LjMtNDEuMi05OC4zLTEwMi41Qy00ODAuMiw0OC4yLTQ0NC43LDAtMzg2LjUsMGM2NS4yLDAsODIuNyw1OC4zLDgyLjcsOTUuNyBjLTAuMSw1LjgtMC41LDExLjUtMS4yLDE3LjJoLTE0MC42SC00NDUuOEwtNDQ1LjgsMTEzeiBNLTMzOS4yLDg2LjZjMC40LTIzLjUtOS41LTYwLjEtNTAuNC02MC4xIGMtMzYuOCwwLTUyLjgsMzQuNC01NS43LDYwLjFILTMzOS4yTC0zMzkuMiw4Ni42TC0zMzkuMiw4Ni42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjAxLjk2MTA1OCwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuMTc5NjQwLCAwLjcwNTA2OCkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDc4LjYsNjhjMC0yMy45LTAuNC00NC41LTEuNy02My40aDMxLjhsMS4yLDM5LjloMS43YzkuMS0yNy4zLDMxLTQ0LjUsNTUuMy00NC41IGMzLjUtMC4xLDcsMC40LDEwLjMsMS4ydjM0LjhjLTQuMS0wLjktOC4yLTEuMy0xMi40LTEuMmMtMjUuNiwwLTQzLjcsMTkuNy00OC43LDQ3LjRjLTEsNS43LTEuNiwxMS41LTEuNywxNy4ydjEwOC4zaC0zNlY2OCBMLTQ3OC42LDY4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCBkPSJNMTM1Mi4zLDMyNi4yaDM3VjI4aC0zN1YzMjYuMnogTTE2MDQuOCwzMjYuMmMtMi41LTEzLjktMy40LTMxLjEtMy40LTQ4Ljd2LTc2IGMwLTQwLjctMTUuMS04My4xLTc3LjMtODMuMWMtMjUuNiwwLTUwLDcuMS02Ni44LDE4LjFsOC40LDI0LjRjMTQuMy05LjIsMzQtMTUuMSw1My0xNS4xYzQxLjYsMCw0Ni4yLDMwLjIsNDYuMiw0N3Y0LjIgYy03OC42LTAuNC0xMjIuMywyNi41LTEyMi4zLDc1LjZjMCwyOS40LDIxLDU4LjQsNjIuMiw1OC40YzI5LDAsNTAuOS0xNC4zLDYyLjItMzAuMmgxLjNsMi45LDI1LjZIMTYwNC44eiBNMTU2NS43LDI1Ny43IGMwLDMuOC0wLjgsOC0yLjEsMTEuOGMtNS45LDE3LjItMjIuNywzNC00OS4yLDM0Yy0xOC45LDAtMzQuOS0xMS4zLTM0LjktMzUuM2MwLTM5LjUsNDUuOC00Ni42LDg2LjItNDUuOFYyNTcuN3ogTTE2OTguNSwzMjYuMiBsMS43LTMzLjZoMS4zYzE1LjEsMjYuOSwzOC43LDM4LjIsNjguMSwzOC4yYzQ1LjQsMCw5MS4yLTM2LjEsOTEuMi0xMDguOGMwLjQtNjEuNy0zNS4zLTEwMy43LTg1LjctMTAzLjcgYy0zMi44LDAtNTYuMywxNC43LTY5LjMsMzcuNGgtMC44VjI4aC0zNi42djI0NS43YzAsMTguMS0wLjgsMzguNi0xLjcsNTIuNUgxNjk4LjV6IE0xNzA0LjgsMjA4LjJjMC01LjksMS4zLTEwLjksMi4xLTE1LjEgYzcuNi0yOC4xLDMxLjEtNDUuNCw1Ni4zLTQ1LjRjMzkuNSwwLDYwLjUsMzQuOSw2MC41LDc1LjZjMCw0Ni42LTIzLjEsNzguMS02MS44LDc4LjFjLTI2LjksMC00OC4zLTE3LjYtNTUuNS00My4zIGMtMC44LTQuMi0xLjctOC44LTEuNy0xMy40VjIwOC4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgZmlsbD0iIzYxNjE2MSIgZD0iTTE1IDlIOXY2aDZWOXptLTIgNGgtMnYtMmgydjJ6bTgtMlY5aC0yVjdjMC0xLjEtLjktMi0yLTJoLTJWM2gtMnYyaC0yVjNIOXYySDdjLTEuMSAwLTIgLjktMiAydjJIM3YyaDJ2MkgzdjJoMnYyYzAgMS4xLjkgMiAyIDJoMnYyaDJ2LTJoMnYyaDJ2LTJoMmMxLjEgMCAyLS45IDItMnYtMmgydi0yaC0ydi0yaDJ6bS00IDZIN1Y3aDEwdjEweiIvPgo8L3N2Zz4K);\n  --jp-icon-keyboard: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMTdjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY3YzAtMS4xLS45LTItMi0yem0tOSAzaDJ2MmgtMlY4em0wIDNoMnYyaC0ydi0yek04IDhoMnYySDhWOHptMCAzaDJ2Mkg4di0yem0tMSAySDV2LTJoMnYyem0wLTNINVY4aDJ2MnptOSA3SDh2LTJoOHYyem0wLTRoLTJ2LTJoMnYyem0wLTNoLTJWOGgydjJ6bTMgM2gtMnYtMmgydjJ6bTAtM2gtMlY4aDJ2MnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-launcher: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkgMTlINVY1aDdWM0g1YTIgMiAwIDAwLTIgMnYxNGEyIDIgMCAwMDIgMmgxNGMxLjEgMCAyLS45IDItMnYtN2gtMnY3ek0xNCAzdjJoMy41OWwtOS44MyA5LjgzIDEuNDEgMS40MUwxOSA2LjQxVjEwaDJWM2gtN3oiLz4KPC9zdmc+Cg==);\n  --jp-icon-line-form: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGZpbGw9IndoaXRlIiBkPSJNNS44OCA0LjEyTDEzLjc2IDEybC03Ljg4IDcuODhMOCAyMmwxMC0xMEw4IDJ6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-link: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMuOSAxMmMwLTEuNzEgMS4zOS0zLjEgMy4xLTMuMWg0VjdIN2MtMi43NiAwLTUgMi4yNC01IDVzMi4yNCA1IDUgNWg0di0xLjlIN2MtMS43MSAwLTMuMS0xLjM5LTMuMS0zLjF6TTggMTNoOHYtMkg4djJ6bTktNmgtNHYxLjloNGMxLjcxIDAgMy4xIDEuMzkgMy4xIDMuMXMtMS4zOSAzLjEtMy4xIDMuMWgtNFYxN2g0YzIuNzYgMCA1LTIuMjQgNS01cy0yLjI0LTUtNS01eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiM2MTYxNjEiIGQ9Ik0xOSA1djE0SDVWNWgxNG0xLjEtMkgzLjljLS41IDAtLjkuNC0uOS45djE2LjJjMCAuNC40LjkuOS45aDE2LjJjLjQgMCAuOS0uNS45LS45VjMuOWMwLS41LS41LS45LS45LS45ek0xMSA3aDZ2MmgtNlY3em0wIDRoNnYyaC02di0yem0wIDRoNnYyaC02ek03IDdoMnYySDd6bTAgNGgydjJIN3ptMCA0aDJ2Mkg3eiIvPgo8L3N2Zz4=);\n  --jp-icon-listings-info: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MC45NzggNTAuOTc4IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MC45NzggNTAuOTc4OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+Cgk8Zz4KCQk8cGF0aCBzdHlsZT0iZmlsbDojMDEwMDAyOyIgZD0iTTQzLjUyLDcuNDU4QzM4LjcxMSwyLjY0OCwzMi4zMDcsMCwyNS40ODksMEMxOC42NywwLDEyLjI2NiwyLjY0OCw3LjQ1OCw3LjQ1OAoJCQljLTkuOTQzLDkuOTQxLTkuOTQzLDI2LjExOSwwLDM2LjA2MmM0LjgwOSw0LjgwOSwxMS4yMTIsNy40NTYsMTguMDMxLDcuNDU4YzAsMCwwLjAwMSwwLDAuMDAyLDAKCQkJYzYuODE2LDAsMTMuMjIxLTIuNjQ4LDE4LjAyOS03LjQ1OGM0LjgwOS00LjgwOSw3LjQ1Ny0xMS4yMTIsNy40NTctMTguMDNDNTAuOTc3LDE4LjY3LDQ4LjMyOCwxMi4yNjYsNDMuNTIsNy40NTh6CgkJCSBNNDIuMTA2LDQyLjEwNWMtNC40MzIsNC40MzEtMTAuMzMyLDYuODcyLTE2LjYxNSw2Ljg3MmgtMC4wMDJjLTYuMjg1LTAuMDAxLTEyLjE4Ny0yLjQ0MS0xNi42MTctNi44NzIKCQkJYy05LjE2Mi05LjE2My05LjE2Mi0yNC4wNzEsMC0zMy4yMzNDMTMuMzAzLDQuNDQsMTkuMjA0LDIsMjUuNDg5LDJjNi4yODQsMCwxMi4xODYsMi40NCwxNi42MTcsNi44NzIKCQkJYzQuNDMxLDQuNDMxLDYuODcxLDEwLjMzMiw2Ljg3MSwxNi42MTdDNDguOTc3LDMxLjc3Miw0Ni41MzYsMzcuNjc1LDQyLjEwNiw0Mi4xMDV6Ii8+CgkJPHBhdGggc3R5bGU9ImZpbGw6IzAxMDAwMjsiIGQ9Ik0yMy41NzgsMzIuMjE4Yy0wLjAyMy0xLjczNCwwLjE0My0zLjA1OSwwLjQ5Ni0zLjk3MmMwLjM1My0wLjkxMywxLjExLTEuOTk3LDIuMjcyLTMuMjUzCgkJCWMwLjQ2OC0wLjUzNiwwLjkyMy0xLjA2MiwxLjM2Ny0xLjU3NWMwLjYyNi0wLjc1MywxLjEwNC0xLjQ3OCwxLjQzNi0yLjE3NWMwLjMzMS0wLjcwNywwLjQ5NS0xLjU0MSwwLjQ5NS0yLjUKCQkJYzAtMS4wOTYtMC4yNi0yLjA4OC0wLjc3OS0yLjk3OWMtMC41NjUtMC44NzktMS41MDEtMS4zMzYtMi44MDYtMS4zNjljLTEuODAyLDAuMDU3LTIuOTg1LDAuNjY3LTMuNTUsMS44MzIKCQkJYy0wLjMwMSwwLjUzNS0wLjUwMywxLjE0MS0wLjYwNywxLjgxNGMtMC4xMzksMC43MDctMC4yMDcsMS40MzItMC4yMDcsMi4xNzRoLTIuOTM3Yy0wLjA5MS0yLjIwOCwwLjQwNy00LjExNCwxLjQ5My01LjcxOQoJCQljMS4wNjItMS42NCwyLjg1NS0yLjQ4MSw1LjM3OC0yLjUyN2MyLjE2LDAuMDIzLDMuODc0LDAuNjA4LDUuMTQxLDEuNzU4YzEuMjc4LDEuMTYsMS45MjksMi43NjQsMS45NSw0LjgxMQoJCQljMCwxLjE0Mi0wLjEzNywyLjExMS0wLjQxLDIuOTExYy0wLjMwOSwwLjg0NS0wLjczMSwxLjU5My0xLjI2OCwyLjI0M2MtMC40OTIsMC42NS0xLjA2OCwxLjMxOC0xLjczLDIuMDAyCgkJCWMtMC42NSwwLjY5Ny0xLjMxMywxLjQ3OS0xLjk4NywyLjM0NmMtMC4yMzksMC4zNzctMC40MjksMC43NzctMC41NjUsMS4xOTljLTAuMTYsMC45NTktMC4yMTcsMS45NTEtMC4xNzEsMi45NzkKCQkJQzI2LjU4OSwzMi4yMTgsMjMuNTc4LDMyLjIxOCwyMy41NzgsMzIuMjE4eiBNMjMuNTc4LDM4LjIydi0zLjQ4NGgzLjA3NnYzLjQ4NEgyMy41Nzh6Ii8+Cgk8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-markdown: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjN0IxRkEyIiBkPSJNNSAxNC45aDEybC02LjEgNnptOS40LTYuOGMwLTEuMy0uMS0yLjktLjEtNC41LS40IDEuNC0uOSAyLjktMS4zIDQuM2wtMS4zIDQuM2gtMkw4LjUgNy45Yy0uNC0xLjMtLjctMi45LTEtNC4zLS4xIDEuNi0uMSAzLjItLjIgNC42TDcgMTIuNEg0LjhsLjctMTFoMy4zTDEwIDVjLjQgMS4yLjcgMi43IDEgMy45LjMtMS4yLjctMi42IDEtMy45bDEuMi0zLjdoMy4zbC42IDExaC0yLjRsLS4zLTQuMnoiLz4KPC9zdmc+Cg==);\n  --jp-icon-new-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwIDZoLThsLTItMkg0Yy0xLjExIDAtMS45OS44OS0xLjk5IDJMMiAxOGMwIDEuMTEuODkgMiAyIDJoMTZjMS4xMSAwIDItLjg5IDItMlY4YzAtMS4xMS0uODktMi0yLTJ6bS0xIDhoLTN2M2gtMnYtM2gtM3YtMmgzVjloMnYzaDN2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-not-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI1IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMTkgMTcuMTg0NCAyLjk2OTY4IDE0LjMwMzIgMS44NjA5NCAxMS40NDA5WiIvPgogICAgPHBhdGggY2xhc3M9ImpwLWljb24yIiBzdHJva2U9IiMzMzMzMzMiIHN0cm9rZS13aWR0aD0iMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOS4zMTU5MiA5LjMyMDMxKSIgZD0iTTcuMzY4NDIgMEwwIDcuMzY0NzkiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDkuMzE1OTIgMTYuNjgzNikgc2NhbGUoMSAtMSkiIGQ9Ik03LjM2ODQyIDBMMCA3LjM2NDc5Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-notebook: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNFRjZDMDAiPgogICAgPHBhdGggZD0iTTE4LjcgMy4zdjE1LjRIMy4zVjMuM2gxNS40bTEuNS0xLjVIMS44djE4LjNoMTguM2wuMS0xOC4zeiIvPgogICAgPHBhdGggZD0iTTE2LjUgMTYuNWwtNS40LTQuMy01LjYgNC4zdi0xMWgxMXoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-numbering: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTQgMTlINlYxOS41SDVWMjAuNUg2VjIxSDRWMjJIN1YxOEg0VjE5Wk01IDEwSDZWNkg0VjdINVYxMFpNNCAxM0g1LjhMNCAxNS4xVjE2SDdWMTVINS4yTDcgMTIuOVYxMkg0VjEzWk05IDdWOUgyM1Y3SDlaTTkgMjFIMjNWMTlIOVYyMVpNOSAxNUgyM1YxM0g5VjE1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-offline-bolt: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDIuMDJjLTUuNTEgMC05Ljk4IDQuNDctOS45OCA5Ljk4czQuNDcgOS45OCA5Ljk4IDkuOTggOS45OC00LjQ3IDkuOTgtOS45OFMxNy41MSAyLjAyIDEyIDIuMDJ6TTExLjQ4IDIwdi02LjI2SDhMMTMgNHY2LjI2aDMuMzVMMTEuNDggMjB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-palette: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE4IDEzVjIwSDRWNkg5LjAyQzkuMDcgNS4yOSA5LjI0IDQuNjIgOS41IDRINEMyLjkgNCAyIDQuOSAyIDZWMjBDMiAyMS4xIDIuOSAyMiA0IDIySDE4QzE5LjEgMjIgMjAgMjEuMSAyMCAyMFYxNUwxOCAxM1pNMTkuMyA4Ljg5QzE5Ljc0IDguMTkgMjAgNy4zOCAyMCA2LjVDMjAgNC4wMSAxNy45OSAyIDE1LjUgMkMxMy4wMSAyIDExIDQuMDEgMTEgNi41QzExIDguOTkgMTMuMDEgMTEgMTUuNDkgMTFDMTYuMzcgMTEgMTcuMTkgMTAuNzQgMTcuODggMTAuM0wyMSAxMy40MkwyMi40MiAxMkwxOS4zIDguODlaTTE1LjUgOUMxNC4xMiA5IDEzIDcuODggMTMgNi41QzEzIDUuMTIgMTQuMTIgNCAxNS41IDRDMTYuODggNCAxOCA1LjEyIDE4IDYuNUMxOCA3Ljg4IDE2Ljg4IDkgMTUuNSA5WiIvPgogICAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDZIOS4wMTg5NEM5LjAwNjM5IDYuMTY1MDIgOSA2LjMzMTc2IDkgNi41QzkgOC44MTU3NyAxMC4yMTEgMTAuODQ4NyAxMi4wMzQzIDEySDlWMTRIMTZWMTIuOTgxMUMxNi41NzAzIDEyLjkzNzcgMTcuMTIgMTIuODIwNyAxNy42Mzk2IDEyLjYzOTZMMTggMTNWMjBINFY2Wk04IDhINlYxMEg4VjhaTTYgMTJIOFYxNEg2VjEyWk04IDE2SDZWMThIOFYxNlpNOSAxNkgxNlYxOEg5VjE2WiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-paste: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE5IDJoLTQuMThDMTQuNC44NCAxMy4zIDAgMTIgMGMtMS4zIDAtMi40Ljg0LTIuODIgMkg1Yy0xLjEgMC0yIC45LTIgMnYxNmMwIDEuMS45IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjRjMC0xLjEtLjktMi0yLTJ6bS03IDBjLjU1IDAgMSAuNDUgMSAxcy0uNDUgMS0xIDEtMS0uNDUtMS0xIC40NS0xIDEtMXptNyAxOEg1VjRoMnYzaDEwVjRoMnYxNnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-pdf: url(data:image/svg+xml;base64,PHN2ZwogICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMiAyMiIgd2lkdGg9IjE2Ij4KICAgIDxwYXRoIHRyYW5zZm9ybT0icm90YXRlKDQ1KSIgY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI0ZGMkEyQSIKICAgICAgIGQ9Im0gMjIuMzQ0MzY5LC0zLjAxNjM2NDIgaCA1LjYzODYwNCB2IDEuNTc5MjQzMyBoIC0zLjU0OTIyNyB2IDEuNTA4NjkyOTkgaCAzLjMzNzU3NiBWIDEuNjUwODE1NCBoIC0zLjMzNzU3NiB2IDMuNDM1MjYxMyBoIC0yLjA4OTM3NyB6IG0gLTcuMTM2NDQ0LDEuNTc5MjQzMyB2IDQuOTQzOTU0MyBoIDAuNzQ4OTIgcSAxLjI4MDc2MSwwIDEuOTUzNzAzLC0wLjYzNDk1MzUgMC42NzgzNjksLTAuNjM0OTUzNSAwLjY3ODM2OSwtMS44NDUxNjQxIDAsLTEuMjA0NzgzNTUgLTAuNjcyOTQyLC0xLjgzNDMxMDExIC0wLjY3Mjk0MiwtMC42Mjk1MjY1OSAtMS45NTkxMywtMC42Mjk1MjY1OSB6IG0gLTIuMDg5Mzc3LC0xLjU3OTI0MzMgaCAyLjIwMzM0MyBxIDEuODQ1MTY0LDAgMi43NDYwMzksMC4yNjU5MjA3IDAuOTA2MzAxLDAuMjYwNDkzNyAxLjU1MjEwOCwwLjg5MDAyMDMgMC41Njk4MywwLjU0ODEyMjMgMC44NDY2MDUsMS4yNjQ0ODAwNiAwLjI3Njc3NCwwLjcxNjM1NzgxIDAuMjc2Nzc0LDEuNjIyNjU4OTQgMCwwLjkxNzE1NTEgLTAuMjc2Nzc0LDEuNjM4OTM5OSAtMC4yNzY3NzUsMC43MTYzNTc4IC0wLjg0NjYwNSwxLjI2NDQ4IC0wLjY1MTIzNCwwLjYyOTUyNjYgLTEuNTYyOTYyLDAuODk1NDQ3MyAtMC45MTE3MjgsMC4yNjA0OTM3IC0yLjczNTE4NSwwLjI2MDQ5MzcgaCAtMi4yMDMzNDMgeiBtIC04LjE0NTg1NjUsMCBoIDMuNDY3ODIzIHEgMS41NDY2ODE2LDAgMi4zNzE1Nzg1LDAuNjg5MjIzIDAuODMwMzI0LDAuNjgzNzk2MSAwLjgzMDMyNCwxLjk1MzcwMzE0IDAsMS4yNzUzMzM5NyAtMC44MzAzMjQsMS45NjQ1NTcwNiBRIDkuOTg3MTk2MSwyLjI3NDkxNSA4LjQ0MDUxNDUsMi4yNzQ5MTUgSCA3LjA2MjA2ODQgViA1LjA4NjA3NjcgSCA0Ljk3MjY5MTUgWiBtIDIuMDg5Mzc2OSwxLjUxNDExOTkgdiAyLjI2MzAzOTQzIGggMS4xNTU5NDEgcSAwLjYwNzgxODgsMCAwLjkzODg2MjksLTAuMjkzMDU1NDcgMC4zMzEwNDQxLC0wLjI5ODQ4MjQxIDAuMzMxMDQ0MSwtMC44NDExNzc3MiAwLC0wLjU0MjY5NTMxIC0wLjMzMTA0NDEsLTAuODM1NzUwNzQgLTAuMzMxMDQ0MSwtMC4yOTMwNTU1IC0wLjkzODg2MjksLTAuMjkzMDU1NSB6IgovPgo8L3N2Zz4K);\n  --jp-icon-python: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMEQ0N0ExIj4KICAgIDxwYXRoIGQ9Ik0xMS4xIDYuOVY1LjhINi45YzAtLjUgMC0xLjMuMi0xLjYuNC0uNy44LTEuMSAxLjctMS40IDEuNy0uMyAyLjUtLjMgMy45LS4xIDEgLjEgMS45LjkgMS45IDEuOXY0LjJjMCAuNS0uOSAxLjYtMiAxLjZIOC44Yy0xLjUgMC0yLjQgMS40LTIuNCAyLjh2Mi4ySDQuN0MzLjUgMTUuMSAzIDE0IDMgMTMuMVY5Yy0uMS0xIC42LTIgMS44LTIgMS41LS4xIDYuMy0uMSA2LjMtLjF6Ii8+CiAgICA8cGF0aCBkPSJNMTAuOSAxNS4xdjEuMWg0LjJjMCAuNSAwIDEuMy0uMiAxLjYtLjQuNy0uOCAxLjEtMS43IDEuNC0xLjcuMy0yLjUuMy0zLjkuMS0xLS4xLTEuOS0uOS0xLjktMS45di00LjJjMC0uNS45LTEuNiAyLTEuNmgzLjhjMS41IDAgMi40LTEuNCAyLjQtMi44VjYuNmgxLjdDMTguNSA2LjkgMTkgOCAxOSA4LjlWMTNjMCAxLS43IDIuMS0xLjkgMi4xaC02LjJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-r-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjE5NkYzIiBkPSJNNC40IDIuNWMxLjItLjEgMi45LS4zIDQuOS0uMyAyLjUgMCA0LjEuNCA1LjIgMS4zIDEgLjcgMS41IDEuOSAxLjUgMy41IDAgMi0xLjQgMy41LTIuOSA0LjEgMS4yLjQgMS43IDEuNiAyLjIgMyAuNiAxLjkgMSAzLjkgMS4zIDQuNmgtMy44Yy0uMy0uNC0uOC0xLjctMS4yLTMuN3MtMS4yLTIuNi0yLjYtMi42aC0uOXY2LjRINC40VjIuNXptMy43IDYuOWgxLjRjMS45IDAgMi45LS45IDIuOS0yLjNzLTEtMi4zLTIuOC0yLjNjLS43IDAtMS4zIDAtMS42LjJ2NC41aC4xdi0uMXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-react: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMTUwIDE1MCA1NDEuOSAyOTUuMyI+CiAgPGcgY2xhc3M9ImpwLWljb24tYnJhbmQyIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzYxREFGQiI+CiAgICA8cGF0aCBkPSJNNjY2LjMgMjk2LjVjMC0zMi41LTQwLjctNjMuMy0xMDMuMS04Mi40IDE0LjQtNjMuNiA4LTExNC4yLTIwLjItMTMwLjQtNi41LTMuOC0xNC4xLTUuNi0yMi40LTUuNnYyMi4zYzQuNiAwIDguMy45IDExLjQgMi42IDEzLjYgNy44IDE5LjUgMzcuNSAxNC45IDc1LjctMS4xIDkuNC0yLjkgMTkuMy01LjEgMjkuNC0xOS42LTQuOC00MS04LjUtNjMuNS0xMC45LTEzLjUtMTguNS0yNy41LTM1LjMtNDEuNi01MCAzMi42LTMwLjMgNjMuMi00Ni45IDg0LTQ2LjlWNzhjLTI3LjUgMC02My41IDE5LjYtOTkuOSA1My42LTM2LjQtMzMuOC03Mi40LTUzLjItOTkuOS01My4ydjIyLjNjMjAuNyAwIDUxLjQgMTYuNSA4NCA0Ni42LTE0IDE0LjctMjggMzEuNC00MS4zIDQ5LjktMjIuNiAyLjQtNDQgNi4xLTYzLjYgMTEtMi4zLTEwLTQtMTkuNy01LjItMjktNC43LTM4LjIgMS4xLTY3LjkgMTQuNi03NS44IDMtMS44IDYuOS0yLjYgMTEuNS0yLjZWNzguNWMtOC40IDAtMTYgMS44LTIyLjYgNS42LTI4LjEgMTYuMi0zNC40IDY2LjctMTkuOSAxMzAuMS02Mi4yIDE5LjItMTAyLjcgNDkuOS0xMDIuNyA4Mi4zIDAgMzIuNSA0MC43IDYzLjMgMTAzLjEgODIuNC0xNC40IDYzLjYtOCAxMTQuMiAyMC4yIDEzMC40IDYuNSAzLjggMTQuMSA1LjYgMjIuNSA1LjYgMjcuNSAwIDYzLjUtMTkuNiA5OS45LTUzLjYgMzYuNCAzMy44IDcyLjQgNTMuMiA5OS45IDUzLjIgOC40IDAgMTYtMS44IDIyLjYtNS42IDI4LjEtMTYuMiAzNC40LTY2LjcgMTkuOS0xMzAuMSA2Mi0xOS4xIDEwMi41LTQ5LjkgMTAyLjUtODIuM3ptLTEzMC4yLTY2LjdjLTMuNyAxMi45LTguMyAyNi4yLTEzLjUgMzkuNS00LjEtOC04LjQtMTYtMTMuMS0yNC00LjYtOC05LjUtMTUuOC0xNC40LTIzLjQgMTQuMiAyLjEgMjcuOSA0LjcgNDEgNy45em0tNDUuOCAxMDYuNWMtNy44IDEzLjUtMTUuOCAyNi4zLTI0LjEgMzguMi0xNC45IDEuMy0zMCAyLTQ1LjIgMi0xNS4xIDAtMzAuMi0uNy00NS0xLjktOC4zLTExLjktMTYuNC0yNC42LTI0LjItMzgtNy42LTEzLjEtMTQuNS0yNi40LTIwLjgtMzkuOCA2LjItMTMuNCAxMy4yLTI2LjggMjAuNy0zOS45IDcuOC0xMy41IDE1LjgtMjYuMyAyNC4xLTM4LjIgMTQuOS0xLjMgMzAtMiA0NS4yLTIgMTUuMSAwIDMwLjIuNyA0NSAxLjkgOC4zIDExLjkgMTYuNCAyNC42IDI0LjIgMzggNy42IDEzLjEgMTQuNSAyNi40IDIwLjggMzkuOC02LjMgMTMuNC0xMy4yIDI2LjgtMjAuNyAzOS45em0zMi4zLTEzYzUuNCAxMy40IDEwIDI2LjggMTMuOCAzOS44LTEzLjEgMy4yLTI2LjkgNS45LTQxLjIgOCA0LjktNy43IDkuOC0xNS42IDE0LjQtMjMuNyA0LjYtOCA4LjktMTYuMSAxMy0yNC4xek00MjEuMiA0MzBjLTkuMy05LjYtMTguNi0yMC4zLTI3LjgtMzIgOSAuNCAxOC4yLjcgMjcuNS43IDkuNCAwIDE4LjctLjIgMjcuOC0uNy05IDExLjctMTguMyAyMi40LTI3LjUgMzJ6bS03NC40LTU4LjljLTE0LjItMi4xLTI3LjktNC43LTQxLTcuOSAzLjctMTIuOSA4LjMtMjYuMiAxMy41LTM5LjUgNC4xIDggOC40IDE2IDEzLjEgMjQgNC43IDggOS41IDE1LjggMTQuNCAyMy40ek00MjAuNyAxNjNjOS4zIDkuNiAxOC42IDIwLjMgMjcuOCAzMi05LS40LTE4LjItLjctMjcuNS0uNy05LjQgMC0xOC43LjItMjcuOC43IDktMTEuNyAxOC4zLTIyLjQgMjcuNS0zMnptLTc0IDU4LjljLTQuOSA3LjctOS44IDE1LjYtMTQuNCAyMy43LTQuNiA4LTguOSAxNi0xMyAyNC01LjQtMTMuNC0xMC0yNi44LTEzLjgtMzkuOCAxMy4xLTMuMSAyNi45LTUuOCA0MS4yLTcuOXptLTkwLjUgMTI1LjJjLTM1LjQtMTUuMS01OC4zLTM0LjktNTguMy01MC42IDAtMTUuNyAyMi45LTM1LjYgNTguMy01MC42IDguNi0zLjcgMTgtNyAyNy43LTEwLjEgNS43IDE5LjYgMTMuMiA0MCAyMi41IDYwLjktOS4yIDIwLjgtMTYuNiA0MS4xLTIyLjIgNjAuNi05LjktMy4xLTE5LjMtNi41LTI4LTEwLjJ6TTMxMCA0OTBjLTEzLjYtNy44LTE5LjUtMzcuNS0xNC45LTc1LjcgMS4xLTkuNCAyLjktMTkuMyA1LjEtMjkuNCAxOS42IDQuOCA0MSA4LjUgNjMuNSAxMC45IDEzLjUgMTguNSAyNy41IDM1LjMgNDEuNiA1MC0zMi42IDMwLjMtNjMuMiA0Ni45LTg0IDQ2LjktNC41LS4xLTguMy0xLTExLjMtMi43em0yMzcuMi03Ni4yYzQuNyAzOC4yLTEuMSA2Ny45LTE0LjYgNzUuOC0zIDEuOC02LjkgMi42LTExLjUgMi42LTIwLjcgMC01MS40LTE2LjUtODQtNDYuNiAxNC0xNC43IDI4LTMxLjQgNDEuMy00OS45IDIyLjYtMi40IDQ0LTYuMSA2My42LTExIDIuMyAxMC4xIDQuMSAxOS44IDUuMiAyOS4xem0zOC41LTY2LjdjLTguNiAzLjctMTggNy0yNy43IDEwLjEtNS43LTE5LjYtMTMuMi00MC0yMi41LTYwLjkgOS4yLTIwLjggMTYuNi00MS4xIDIyLjItNjAuNiA5LjkgMy4xIDE5LjMgNi41IDI4LjEgMTAuMiAzNS40IDE1LjEgNTguMyAzNC45IDU4LjMgNTAuNi0uMSAxNS43LTIzIDM1LjYtNTguNCA1MC42ek0zMjAuOCA3OC40eiIvPgogICAgPGNpcmNsZSBjeD0iNDIwLjkiIGN5PSIyOTYuNSIgcj0iNDUuNyIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-redo: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTE4LjQgMTAuNkMxNi41NSA4Ljk5IDE0LjE1IDggMTEuNSA4Yy00LjY1IDAtOC41OCAzLjAzLTkuOTYgNy4yMkwzLjkgMTZjMS4wNS0zLjE5IDQuMDUtNS41IDcuNi01LjUgMS45NSAwIDMuNzMuNzIgNS4xMiAxLjg4TDEzIDE2aDlWN2wtMy42IDMuNnoiLz4KICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-refresh: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTkgMTMuNWMtMi40OSAwLTQuNS0yLjAxLTQuNS00LjVTNi41MSA0LjUgOSA0LjVjMS4yNCAwIDIuMzYuNTIgMy4xNyAxLjMzTDEwIDhoNVYzbC0xLjc2IDEuNzZDMTIuMTUgMy42OCAxMC42NiAzIDkgMyA1LjY5IDMgMy4wMSA1LjY5IDMuMDEgOVM1LjY5IDE1IDkgMTVjMi45NyAwIDUuNDMtMi4xNiA1LjktNWgtMS41MmMtLjQ2IDItMi4yNCAzLjUtNC4zOCAzLjV6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);\n  --jp-icon-regex: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi1hY2NlbnQyIiBmaWxsPSIjRkZGIj4KICAgIDxjaXJjbGUgY2xhc3M9InN0MiIgY3g9IjUuNSIgY3k9IjE0LjUiIHI9IjEuNSIvPgogICAgPHJlY3QgeD0iMTIiIHk9IjQiIGNsYXNzPSJzdDIiIHdpZHRoPSIxIiBoZWlnaHQ9IjgiLz4KICAgIDxyZWN0IHg9IjguNSIgeT0iNy41IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjg2NiAtMC41IDAuNSAwLjg2NiAtMi4zMjU1IDcuMzIxOSkiIGNsYXNzPSJzdDIiIHdpZHRoPSI4IiBoZWlnaHQ9IjEiLz4KICAgIDxyZWN0IHg9IjEyIiB5PSI0IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjUgLTAuODY2IDAuODY2IDAuNSAtMC42Nzc5IDE0LjgyNTIpIiBjbGFzcz0ic3QyIiB3aWR0aD0iMSIgaGVpZ2h0PSI4Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-run: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTggNXYxNGwxMS03eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-running: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptOTYgMzI4YzAgOC44LTcuMiAxNi0xNiAxNkgxNzZjLTguOCAwLTE2LTcuMi0xNi0xNlYxNzZjMC04LjggNy4yLTE2IDE2LTE2aDE2MGM4LjggMCAxNiA3LjIgMTYgMTZ2MTYweiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-save: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE3IDNINWMtMS4xMSAwLTIgLjktMiAydjE0YzAgMS4xLjg5IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjdsLTQtNHptLTUgMTZjLTEuNjYgMC0zLTEuMzQtMy0zczEuMzQtMyAzLTMgMyAxLjM0IDMgMy0xLjM0IDMtMyAzem0zLTEwSDVWNWgxMHY0eiIvPgogICAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-search: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjEsMTAuOWgtMC43bC0wLjItMC4yYzAuOC0wLjksMS4zLTIuMiwxLjMtMy41YzAtMy0yLjQtNS40LTUuNC01LjRTMS44LDQuMiwxLjgsNy4xczIuNCw1LjQsNS40LDUuNCBjMS4zLDAsMi41LTAuNSwzLjUtMS4zbDAuMiwwLjJ2MC43bDQuMSw0LjFsMS4yLTEuMkwxMi4xLDEwLjl6IE03LjEsMTAuOWMtMi4xLDAtMy43LTEuNy0zLjctMy43czEuNy0zLjcsMy43LTMuN3MzLjcsMS43LDMuNywzLjcgUzkuMiwxMC45LDcuMSwxMC45eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-settings: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuNDMgMTIuOThjLjA0LS4zMi4wNy0uNjQuMDctLjk4cy0uMDMtLjY2LS4wNy0uOThsMi4xMS0xLjY1Yy4xOS0uMTUuMjQtLjQyLjEyLS42NGwtMi0zLjQ2Yy0uMTItLjIyLS4zOS0uMy0uNjEtLjIybC0yLjQ5IDFjLS41Mi0uNC0xLjA4LS43My0xLjY5LS45OGwtLjM4LTIuNjVBLjQ4OC40ODggMCAwMDE0IDJoLTRjLS4yNSAwLS40Ni4xOC0uNDkuNDJsLS4zOCAyLjY1Yy0uNjEuMjUtMS4xNy41OS0xLjY5Ljk4bC0yLjQ5LTFjLS4yMy0uMDktLjQ5IDAtLjYxLjIybC0yIDMuNDZjLS4xMy4yMi0uMDcuNDkuMTIuNjRsMi4xMSAxLjY1Yy0uMDQuMzItLjA3LjY1LS4wNy45OHMuMDMuNjYuMDcuOThsLTIuMTEgMS42NWMtLjE5LjE1LS4yNC40Mi0uMTIuNjRsMiAzLjQ2Yy4xMi4yMi4zOS4zLjYxLjIybDIuNDktMWMuNTIuNCAxLjA4LjczIDEuNjkuOThsLjM4IDIuNjVjLjAzLjI0LjI0LjQyLjQ5LjQyaDRjLjI1IDAgLjQ2LS4xOC40OS0uNDJsLjM4LTIuNjVjLjYxLS4yNSAxLjE3LS41OSAxLjY5LS45OGwyLjQ5IDFjLjIzLjA5LjQ5IDAgLjYxLS4yMmwyLTMuNDZjLjEyLS4yMi4wNy0uNDktLjEyLS42NGwtMi4xMS0xLjY1ek0xMiAxNS41Yy0xLjkzIDAtMy41LTEuNTctMy41LTMuNXMxLjU3LTMuNSAzLjUtMy41IDMuNSAxLjU3IDMuNSAzLjUtMS41NyAzLjUtMy41IDMuNXoiLz4KPC9zdmc+Cg==);\n  --jp-icon-spreadsheet: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNENBRjUwIiBkPSJNMi4yIDIuMnYxNy42aDE3LjZWMi4ySDIuMnptMTUuNCA3LjdoLTUuNVY0LjRoNS41djUuNXpNOS45IDQuNHY1LjVINC40VjQuNGg1LjV6bS01LjUgNy43aDUuNXY1LjVINC40di01LjV6bTcuNyA1LjV2LTUuNWg1LjV2NS41aC01LjV6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-stop: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik02IDZoMTJ2MTJINnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tab: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIxIDNIM2MtMS4xIDAtMiAuOS0yIDJ2MTRjMCAxLjEuOSAyIDIgMmgxOGMxLjEgMCAyLS45IDItMlY1YzAtMS4xLS45LTItMi0yem0wIDE2SDNWNWgxMHY0aDh2MTB6Ii8+CiAgPC9nPgo8L3N2Zz4K);\n  --jp-icon-table-rows: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMSw4SDNWNGgxOFY4eiBNMjEsMTBIM3Y0aDE4VjEweiBNMjEsMTZIM3Y0aDE4VjE2eiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-tag: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCA0MyAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTI4LjgzMzIgMTIuMzM0TDMyLjk5OTggMTYuNTAwN0wzNy4xNjY1IDEyLjMzNEgyOC44MzMyWiIvPgoJCTxwYXRoIGQ9Ik0xNi4yMDk1IDIxLjYxMDRDMTUuNjg3MyAyMi4xMjk5IDE0Ljg0NDMgMjIuMTI5OSAxNC4zMjQ4IDIxLjYxMDRMNi45ODI5IDE0LjcyNDVDNi41NzI0IDE0LjMzOTQgNi4wODMxMyAxMy42MDk4IDYuMDQ3ODYgMTMuMDQ4MkM1Ljk1MzQ3IDExLjUyODggNi4wMjAwMiA4LjYxOTQ0IDYuMDY2MjEgNy4wNzY5NUM2LjA4MjgxIDYuNTE0NzcgNi41NTU0OCA2LjA0MzQ3IDcuMTE4MDQgNi4wMzA1NUM5LjA4ODYzIDUuOTg0NzMgMTMuMjYzOCA1LjkzNTc5IDEzLjY1MTggNi4zMjQyNUwyMS43MzY5IDEzLjYzOUMyMi4yNTYgMTQuMTU4NSAyMS43ODUxIDE1LjQ3MjQgMjEuMjYyIDE1Ljk5NDZMMTYuMjA5NSAyMS42MTA0Wk05Ljc3NTg1IDguMjY1QzkuMzM1NTEgNy44MjU2NiA4LjYyMzUxIDcuODI1NjYgOC4xODI4IDguMjY1QzcuNzQzNDYgOC43MDU3MSA3Ljc0MzQ2IDkuNDE3MzMgOC4xODI4IDkuODU2NjdDOC42MjM4MiAxMC4yOTY0IDkuMzM1ODIgMTAuMjk2NCA5Ljc3NTg1IDkuODU2NjdDMTAuMjE1NiA5LjQxNzMzIDEwLjIxNTYgOC43MDUzMyA5Ljc3NTg1IDguMjY1WiIvPgoJPC9nPgo8L3N2Zz4K);\n  --jp-icon-terminal: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiA+CiAgICA8cmVjdCBjbGFzcz0ianAtaWNvbjIganAtaWNvbi1zZWxlY3RhYmxlIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMikiIGZpbGw9IiMzMzMzMzMiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uLWFjY2VudDIganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGQ9Ik01LjA1NjY0IDguNzYxNzJDNS4wNTY2NCA4LjU5NzY2IDUuMDMxMjUgOC40NTMxMiA0Ljk4MDQ3IDguMzI4MTJDNC45MzM1OSA4LjE5OTIyIDQuODU1NDcgOC4wODIwMyA0Ljc0NjA5IDcuOTc2NTZDNC42NDA2MiA3Ljg3MTA5IDQuNSA3Ljc3NTM5IDQuMzI0MjIgNy42ODk0NUM0LjE1MjM0IDcuNTk5NjEgMy45NDMzNiA3LjUxMTcyIDMuNjk3MjcgNy40MjU3OEMzLjMwMjczIDcuMjg1MTYgMi45NDMzNiA3LjEzNjcyIDIuNjE5MTQgNi45ODA0N0MyLjI5NDkyIDYuODI0MjIgMi4wMTc1OCA2LjY0MjU4IDEuNzg3MTEgNi40MzU1NUMxLjU2MDU1IDYuMjI4NTIgMS4zODQ3NyA1Ljk4ODI4IDEuMjU5NzcgNS43MTQ4NEMxLjEzNDc3IDUuNDM3NSAxLjA3MjI3IDUuMTA5MzggMS4wNzIyNyA0LjczMDQ3QzEuMDcyMjcgNC4zOTg0NCAxLjEyODkxIDQuMDk1NyAxLjI0MjE5IDMuODIyMjdDMS4zNTU0NyAzLjU0NDkyIDEuNTE1NjIgMy4zMDQ2OSAxLjcyMjY2IDMuMTAxNTZDMS45Mjk2OSAyLjg5ODQ0IDIuMTc5NjkgMi43MzQzNyAyLjQ3MjY2IDIuNjA5MzhDMi43NjU2MiAyLjQ4NDM4IDMuMDkxOCAyLjQwNDMgMy40NTExNyAyLjM2OTE0VjEuMTA5MzhINC4zODg2N1YyLjM4MDg2QzQuNzQwMjMgMi40Mjc3MyA1LjA1NjY0IDIuNTIzNDQgNS4zMzc4OSAyLjY2Nzk3QzUuNjE5MTQgMi44MTI1IDUuODU3NDIgMy4wMDE5NSA2LjA1MjczIDMuMjM2MzNDNi4yNTE5NSAzLjQ2NjggNi40MDQzIDMuNzQwMjMgNi41MDk3NyA0LjA1NjY0QzYuNjE5MTQgNC4zNjkxNCA2LjY3MzgzIDQuNzIwNyA2LjY3MzgzIDUuMTExMzNINS4wNDQ5MkM1LjA0NDkyIDQuNjM4NjcgNC45Mzc1IDQuMjgxMjUgNC43MjI2NiA0LjAzOTA2QzQuNTA3ODEgMy43OTI5NyA0LjIxNjggMy42Njk5MiAzLjg0OTYxIDMuNjY5OTJDMy42NTAzOSAzLjY2OTkyIDMuNDc2NTYgMy42OTcyNyAzLjMyODEyIDMuNzUxOTVDMy4xODM1OSAzLjgwMjczIDMuMDY0NDUgMy44NzY5NSAyLjk3MDcgMy45NzQ2MUMyLjg3Njk1IDQuMDY4MzYgMi44MDY2NCA0LjE3OTY5IDIuNzU5NzcgNC4zMDg1OUMyLjcxNjggNC40Mzc1IDIuNjk1MzEgNC41NzgxMiAyLjY5NTMxIDQuNzMwNDdDMi42OTUzMSA0Ljg4MjgxIDIuNzE2OCA1LjAxOTUzIDIuNzU5NzcgNS4xNDA2MkMyLjgwNjY0IDUuMjU3ODEgMi44ODI4MSA1LjM2NzE5IDIuOTg4MjggNS40Njg3NUMzLjA5NzY2IDUuNTcwMzEgMy4yNDAyMyA1LjY2Nzk3IDMuNDE2MDIgNS43NjE3MkMzLjU5MTggNS44NTE1NiAzLjgxMDU1IDUuOTQzMzYgNC4wNzIyNyA2LjAzNzExQzQuNDY2OCA2LjE4NTU1IDQuODI0MjIgNi4zMzk4NCA1LjE0NDUzIDYuNUM1LjQ2NDg0IDYuNjU2MjUgNS43MzgyOCA2LjgzOTg0IDUuOTY0ODQgNy4wNTA3OEM2LjE5NTMxIDcuMjU3ODEgNi4zNzEwOSA3LjUgNi40OTIxOSA3Ljc3NzM0QzYuNjE3MTkgOC4wNTA3OCA2LjY3OTY5IDguMzc1IDYuNjc5NjkgOC43NUM2LjY3OTY5IDkuMDkzNzUgNi42MjMwNSA5LjQwNDMgNi41MDk3NyA5LjY4MTY0QzYuMzk2NDggOS45NTUwOCA2LjIzNDM4IDEwLjE5MTQgNi4wMjM0NCAxMC4zOTA2QzUuODEyNSAxMC41ODk4IDUuNTU4NTkgMTAuNzUgNS4yNjE3MiAxMC44NzExQzQuOTY0ODQgMTAuOTg4MyA0LjYzMjgxIDExLjA2NDUgNC4yNjU2MiAxMS4wOTk2VjEyLjI0OEgzLjMzMzk4VjExLjA5OTZDMy4wMDE5NSAxMS4wNjg0IDIuNjc5NjkgMTAuOTk2MSAyLjM2NzE5IDEwLjg4MjhDMi4wNTQ2OSAxMC43NjU2IDEuNzc3MzQgMTAuNTk3NyAxLjUzNTE2IDEwLjM3ODlDMS4yOTY4OCAxMC4xNjAyIDEuMTA1NDcgOS44ODQ3NyAwLjk2MDkzOCA5LjU1MjczQzAuODE2NDA2IDkuMjE2OCAwLjc0NDE0MSA4LjgxNDQ1IDAuNzQ0MTQxIDguMzQ1N0gyLjM3ODkxQzIuMzc4OTEgOC42MjY5NSAyLjQxOTkyIDguODYzMjggMi41MDE5NSA5LjA1NDY5QzIuNTgzOTggOS4yNDIxOSAyLjY4OTQ1IDkuMzkyNTggMi44MTgzNiA5LjUwNTg2QzIuOTUxMTcgOS42MTUyMyAzLjEwMTU2IDkuNjkzMzYgMy4yNjk1MyA5Ljc0MDIzQzMuNDM3NSA5Ljc4NzExIDMuNjA5MzggOS44MTA1NSAzLjc4NTE2IDkuODEwNTVDNC4yMDMxMiA5LjgxMDU1IDQuNTE5NTMgOS43MTI4OSA0LjczNDM4IDkuNTE3NThDNC45NDkyMiA5LjMyMjI3IDUuMDU2NjQgOS4wNzAzMSA1LjA1NjY0IDguNzYxNzJaTTEzLjQxOCAxMi4yNzE1SDguMDc0MjJWMTFIMTMuNDE4VjEyLjI3MTVaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzLjk1MjY0IDYpIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);\n  --jp-icon-text-editor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTUgMTVIM3YyaDEydi0yem0wLThIM3YyaDEyVjd6TTMgMTNoMTh2LTJIM3Yyem0wIDhoMTh2LTJIM3Yyek0zIDN2MmgxOFYzSDN6Ii8+Cjwvc3ZnPgo=);\n  --jp-icon-toc: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxwYXRoIGQ9Ik03LDVIMjFWN0g3VjVNNywxM1YxMUgyMVYxM0g3TTQsNC41QTEuNSwxLjUgMCAwLDEgNS41LDZBMS41LDEuNSAwIDAsMSA0LDcuNUExLjUsMS41IDAgMCwxIDIuNSw2QTEuNSwxLjUgMCAwLDEgNCw0LjVNNCwxMC41QTEuNSwxLjUgMCAwLDEgNS41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMy41QTEuNSwxLjUgMCAwLDEgMi41LDEyQTEuNSwxLjUgMCAwLDEgNCwxMC41TTcsMTlWMTdIMjFWMTlIN000LDE2LjVBMS41LDEuNSAwIDAsMSA1LjUsMThBMS41LDEuNSAwIDAsMSA0LDE5LjVBMS41LDEuNSAwIDAsMSAyLjUsMThBMS41LDEuNSAwIDAsMSA0LDE2LjVaIiAvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-tree-view: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMiAxMVYzaC03djNIOVYzSDJ2OGg3VjhoMnYxMGg0djNoN3YtOGgtN3YzaC0yVjhoMnYzeiIvPgogICAgPC9nPgo8L3N2Zz4=);\n  --jp-icon-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMiAxNy4xODQ0IDIuOTY5NjggMTQuMzAzMiAxLjg2MDk0IDExLjQ0MDlaIi8+CiAgICA8cGF0aCBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiMzMzMzMzMiIHN0cm9rZT0iIzMzMzMzMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA5Ljg2NzE5KSIgZD0iTTIuODYwMTUgNC44NjUzNUwwLjcyNjU0OSAyLjk5OTU5TDAgMy42MzA0NUwyLjg2MDE1IDYuMTMxNTdMOCAwLjYzMDg3Mkw3LjI3ODU3IDBMMi44NjAxNSA0Ljg2NTM1WiIvPgo8L3N2Zz4K);\n  --jp-icon-undo: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjUgOGMtMi42NSAwLTUuMDUuOTktNi45IDIuNkwyIDd2OWg5bC0zLjYyLTMuNjJjMS4zOS0xLjE2IDMuMTYtMS44OCA1LjEyLTEuODggMy41NCAwIDYuNTUgMi4zMSA3LjYgNS41bDIuMzctLjc4QzIxLjA4IDExLjAzIDE3LjE1IDggMTIuNSA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-vega: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbjEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjEyMTIxIj4KICAgIDxwYXRoIGQ9Ik0xMC42IDUuNGwyLjItMy4ySDIuMnY3LjNsNC02LjZ6Ii8+CiAgICA8cGF0aCBkPSJNMTUuOCAyLjJsLTQuNCA2LjZMNyA2LjNsLTQuOCA4djUuNWgxNy42VjIuMmgtNHptLTcgMTUuNEg1LjV2LTQuNGgzLjN2NC40em00LjQgMEg5LjhWOS44aDMuNHY3Ljh6bTQuNCAwaC0zLjRWNi41aDMuNHYxMS4xeiIvPgogIDwvZz4KPC9zdmc+Cg==);\n  --jp-icon-yaml: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1jb250cmFzdDIganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjRDgxQjYwIj4KICAgIDxwYXRoIGQ9Ik03LjIgMTguNnYtNS40TDMgNS42aDMuM2wxLjQgMy4xYy4zLjkuNiAxLjYgMSAyLjUuMy0uOC42LTEuNiAxLTIuNWwxLjQtMy4xaDMuNGwtNC40IDcuNnY1LjVsLTIuOS0uMXoiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxNi41IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxMSIgcj0iMi4xIi8+CiAgPC9nPgo8L3N2Zz4K);\n}\n\n/* Icon CSS class declarations */\n\n.jp-AddIcon {\n  background-image: var(--jp-icon-add);\n}\n.jp-BugIcon {\n  background-image: var(--jp-icon-bug);\n}\n.jp-BuildIcon {\n  background-image: var(--jp-icon-build);\n}\n.jp-CaretDownEmptyIcon {\n  background-image: var(--jp-icon-caret-down-empty);\n}\n.jp-CaretDownEmptyThinIcon {\n  background-image: var(--jp-icon-caret-down-empty-thin);\n}\n.jp-CaretDownIcon {\n  background-image: var(--jp-icon-caret-down);\n}\n.jp-CaretLeftIcon {\n  background-image: var(--jp-icon-caret-left);\n}\n.jp-CaretRightIcon {\n  background-image: var(--jp-icon-caret-right);\n}\n.jp-CaretUpEmptyThinIcon {\n  background-image: var(--jp-icon-caret-up-empty-thin);\n}\n.jp-CaretUpIcon {\n  background-image: var(--jp-icon-caret-up);\n}\n.jp-CaseSensitiveIcon {\n  background-image: var(--jp-icon-case-sensitive);\n}\n.jp-CheckIcon {\n  background-image: var(--jp-icon-check);\n}\n.jp-CircleEmptyIcon {\n  background-image: var(--jp-icon-circle-empty);\n}\n.jp-CircleIcon {\n  background-image: var(--jp-icon-circle);\n}\n.jp-ClearIcon {\n  background-image: var(--jp-icon-clear);\n}\n.jp-CloseIcon {\n  background-image: var(--jp-icon-close);\n}\n.jp-CodeIcon {\n  background-image: var(--jp-icon-code);\n}\n.jp-ConsoleIcon {\n  background-image: var(--jp-icon-console);\n}\n.jp-CopyIcon {\n  background-image: var(--jp-icon-copy);\n}\n.jp-CopyrightIcon {\n  background-image: var(--jp-icon-copyright);\n}\n.jp-CutIcon {\n  background-image: var(--jp-icon-cut);\n}\n.jp-DownloadIcon {\n  background-image: var(--jp-icon-download);\n}\n.jp-EditIcon {\n  background-image: var(--jp-icon-edit);\n}\n.jp-EllipsesIcon {\n  background-image: var(--jp-icon-ellipses);\n}\n.jp-ExtensionIcon {\n  background-image: var(--jp-icon-extension);\n}\n.jp-FastForwardIcon {\n  background-image: var(--jp-icon-fast-forward);\n}\n.jp-FileIcon {\n  background-image: var(--jp-icon-file);\n}\n.jp-FileUploadIcon {\n  background-image: var(--jp-icon-file-upload);\n}\n.jp-FilterListIcon {\n  background-image: var(--jp-icon-filter-list);\n}\n.jp-FolderIcon {\n  background-image: var(--jp-icon-folder);\n}\n.jp-Html5Icon {\n  background-image: var(--jp-icon-html5);\n}\n.jp-ImageIcon {\n  background-image: var(--jp-icon-image);\n}\n.jp-InspectorIcon {\n  background-image: var(--jp-icon-inspector);\n}\n.jp-JsonIcon {\n  background-image: var(--jp-icon-json);\n}\n.jp-JuliaIcon {\n  background-image: var(--jp-icon-julia);\n}\n.jp-JupyterFaviconIcon {\n  background-image: var(--jp-icon-jupyter-favicon);\n}\n.jp-JupyterIcon {\n  background-image: var(--jp-icon-jupyter);\n}\n.jp-JupyterlabWordmarkIcon {\n  background-image: var(--jp-icon-jupyterlab-wordmark);\n}\n.jp-KernelIcon {\n  background-image: var(--jp-icon-kernel);\n}\n.jp-KeyboardIcon {\n  background-image: var(--jp-icon-keyboard);\n}\n.jp-LauncherIcon {\n  background-image: var(--jp-icon-launcher);\n}\n.jp-LineFormIcon {\n  background-image: var(--jp-icon-line-form);\n}\n.jp-LinkIcon {\n  background-image: var(--jp-icon-link);\n}\n.jp-ListIcon {\n  background-image: var(--jp-icon-list);\n}\n.jp-ListingsInfoIcon {\n  background-image: var(--jp-icon-listings-info);\n}\n.jp-MarkdownIcon {\n  background-image: var(--jp-icon-markdown);\n}\n.jp-NewFolderIcon {\n  background-image: var(--jp-icon-new-folder);\n}\n.jp-NotTrustedIcon {\n  background-image: var(--jp-icon-not-trusted);\n}\n.jp-NotebookIcon {\n  background-image: var(--jp-icon-notebook);\n}\n.jp-NumberingIcon {\n  background-image: var(--jp-icon-numbering);\n}\n.jp-OfflineBoltIcon {\n  background-image: var(--jp-icon-offline-bolt);\n}\n.jp-PaletteIcon {\n  background-image: var(--jp-icon-palette);\n}\n.jp-PasteIcon {\n  background-image: var(--jp-icon-paste);\n}\n.jp-PdfIcon {\n  background-image: var(--jp-icon-pdf);\n}\n.jp-PythonIcon {\n  background-image: var(--jp-icon-python);\n}\n.jp-RKernelIcon {\n  background-image: var(--jp-icon-r-kernel);\n}\n.jp-ReactIcon {\n  background-image: var(--jp-icon-react);\n}\n.jp-RedoIcon {\n  background-image: var(--jp-icon-redo);\n}\n.jp-RefreshIcon {\n  background-image: var(--jp-icon-refresh);\n}\n.jp-RegexIcon {\n  background-image: var(--jp-icon-regex);\n}\n.jp-RunIcon {\n  background-image: var(--jp-icon-run);\n}\n.jp-RunningIcon {\n  background-image: var(--jp-icon-running);\n}\n.jp-SaveIcon {\n  background-image: var(--jp-icon-save);\n}\n.jp-SearchIcon {\n  background-image: var(--jp-icon-search);\n}\n.jp-SettingsIcon {\n  background-image: var(--jp-icon-settings);\n}\n.jp-SpreadsheetIcon {\n  background-image: var(--jp-icon-spreadsheet);\n}\n.jp-StopIcon {\n  background-image: var(--jp-icon-stop);\n}\n.jp-TabIcon {\n  background-image: var(--jp-icon-tab);\n}\n.jp-TableRowsIcon {\n  background-image: var(--jp-icon-table-rows);\n}\n.jp-TagIcon {\n  background-image: var(--jp-icon-tag);\n}\n.jp-TerminalIcon {\n  background-image: var(--jp-icon-terminal);\n}\n.jp-TextEditorIcon {\n  background-image: var(--jp-icon-text-editor);\n}\n.jp-TocIcon {\n  background-image: var(--jp-icon-toc);\n}\n.jp-TreeViewIcon {\n  background-image: var(--jp-icon-tree-view);\n}\n.jp-TrustedIcon {\n  background-image: var(--jp-icon-trusted);\n}\n.jp-UndoIcon {\n  background-image: var(--jp-icon-undo);\n}\n.jp-VegaIcon {\n  background-image: var(--jp-icon-vega);\n}\n.jp-YamlIcon {\n  background-image: var(--jp-icon-yaml);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * (DEPRECATED) Support for consuming icons as CSS background images\n */\n\n.jp-Icon,\n.jp-MaterialIcon {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-cover {\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: cover;\n}\n\n/**\n * (DEPRECATED) Support for specific CSS icon sizes\n */\n\n.jp-Icon-16 {\n  background-size: 16px;\n  min-width: 16px;\n  min-height: 16px;\n}\n\n.jp-Icon-18 {\n  background-size: 18px;\n  min-width: 18px;\n  min-height: 18px;\n}\n\n.jp-Icon-20 {\n  background-size: 20px;\n  min-width: 20px;\n  min-height: 20px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for icons as inline SVG HTMLElements\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n/* recolor the accent elements of an icon */\n.jp-icon-accent0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-accent1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-accent2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-accent3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-accent4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-accent0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-accent1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-accent2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-accent3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-accent4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n/* set the color of an icon to transparent */\n.jp-icon-none[fill] {\n  fill: none;\n}\n\n.jp-icon-none[stroke] {\n  stroke: none;\n}\n/* brand icon colors. Same for light and dark */\n.jp-icon-brand0[fill] {\n  fill: var(--jp-brand-color0);\n}\n.jp-icon-brand1[fill] {\n  fill: var(--jp-brand-color1);\n}\n.jp-icon-brand2[fill] {\n  fill: var(--jp-brand-color2);\n}\n.jp-icon-brand3[fill] {\n  fill: var(--jp-brand-color3);\n}\n.jp-icon-brand4[fill] {\n  fill: var(--jp-brand-color4);\n}\n\n.jp-icon-brand0[stroke] {\n  stroke: var(--jp-brand-color0);\n}\n.jp-icon-brand1[stroke] {\n  stroke: var(--jp-brand-color1);\n}\n.jp-icon-brand2[stroke] {\n  stroke: var(--jp-brand-color2);\n}\n.jp-icon-brand3[stroke] {\n  stroke: var(--jp-brand-color3);\n}\n.jp-icon-brand4[stroke] {\n  stroke: var(--jp-brand-color4);\n}\n/* warn icon colors. Same for light and dark */\n.jp-icon-warn0[fill] {\n  fill: var(--jp-warn-color0);\n}\n.jp-icon-warn1[fill] {\n  fill: var(--jp-warn-color1);\n}\n.jp-icon-warn2[fill] {\n  fill: var(--jp-warn-color2);\n}\n.jp-icon-warn3[fill] {\n  fill: var(--jp-warn-color3);\n}\n\n.jp-icon-warn0[stroke] {\n  stroke: var(--jp-warn-color0);\n}\n.jp-icon-warn1[stroke] {\n  stroke: var(--jp-warn-color1);\n}\n.jp-icon-warn2[stroke] {\n  stroke: var(--jp-warn-color2);\n}\n.jp-icon-warn3[stroke] {\n  stroke: var(--jp-warn-color3);\n}\n/* icon colors that contrast well with each other and most backgrounds */\n.jp-icon-contrast0[fill] {\n  fill: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[fill] {\n  fill: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[fill] {\n  fill: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[fill] {\n  fill: var(--jp-icon-contrast-color3);\n}\n\n.jp-icon-contrast0[stroke] {\n  stroke: var(--jp-icon-contrast-color0);\n}\n.jp-icon-contrast1[stroke] {\n  stroke: var(--jp-icon-contrast-color1);\n}\n.jp-icon-contrast2[stroke] {\n  stroke: var(--jp-icon-contrast-color2);\n}\n.jp-icon-contrast3[stroke] {\n  stroke: var(--jp-icon-contrast-color3);\n}\n\n/* CSS for icons in selected items in the settings editor */\n#setting-editor .jp-PluginList .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n#setting-editor\n  .jp-PluginList\n  .jp-mod-selected\n  .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected filebrowser listing items */\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n.jp-DirListing-item.jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n/* CSS for icons in selected tabs in the sidebar tab manager */\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable[fill] {\n  fill: var(--jp-brand-color1);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-active\n  .jp-icon-hover\n  :hover\n  .jp-icon-selectable-inverse[fill] {\n  fill: #fff;\n}\n\n/**\n * TODO: come up with non css-hack solution for showing the busy icon on top\n *  of the close icon\n * CSS for complex behavior of close icon of tabs in the sidebar tab manager\n */\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n#tab-manager\n  .lm-TabBar-tab.jp-mod-dirty.jp-mod-active\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: #fff;\n}\n\n/**\n* TODO: come up with non css-hack solution for showing the busy icon on top\n*  of the close icon\n* CSS for complex behavior of close icon of tabs in the main area tabbar\n*/\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon3[fill] {\n  fill: none;\n}\n.lm-DockPanel-tabBar\n  .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty\n  > .lm-TabBar-tabCloseIcon\n  > :not(:hover)\n  > .jp-icon-busy[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n/* CSS for icons in status bar */\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable[fill] {\n  fill: #fff;\n}\n\n#jp-main-statusbar .jp-mod-selected .jp-icon-selectable-inverse[fill] {\n  fill: var(--jp-brand-color1);\n}\n/* special handling for splash icon CSS. While the theme CSS reloads during\n   splash, the splash icon can loose theming. To prevent that, we set a\n   default for its color variable */\n:root {\n  --jp-warn-color0: var(--md-orange-700);\n}\n\n/* not sure what to do with this one, used in filebrowser listing */\n.jp-DragIcon {\n  margin-right: 4px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/**\n * Support for alt colors for icons as inline SVG HTMLElements\n */\n\n/* alt recolor the primary elements of an icon */\n.jp-icon-alt .jp-icon0[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-alt .jp-icon0[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-alt .jp-icon1[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-alt .jp-icon2[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-alt .jp-icon3[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-alt .jp-icon4[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* alt recolor the accent elements of an icon */\n.jp-icon-alt .jp-icon-accent0[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-alt .jp-icon-accent0[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-alt .jp-icon-accent1[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-alt .jp-icon-accent2[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-alt .jp-icon-accent3[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-alt .jp-icon-accent4[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-icon-hoverShow:not(:hover) svg {\n  display: none !important;\n}\n\n/**\n * Support for hover colors for icons as inline SVG HTMLElements\n */\n\n/**\n * regular colors\n */\n\n/* recolor the primary elements of an icon */\n.jp-icon-hover :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/* recolor the accent elements of an icon */\n.jp-icon-hover :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* set the color of an icon to transparent */\n.jp-icon-hover :hover .jp-icon-none-hover[fill] {\n  fill: none;\n}\n\n.jp-icon-hover :hover .jp-icon-none-hover[stroke] {\n  stroke: none;\n}\n\n/**\n * inverse colors\n */\n\n/* inverse recolor the primary elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[fill] {\n  fill: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[fill] {\n  fill: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[fill] {\n  fill: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[fill] {\n  fill: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[fill] {\n  fill: var(--jp-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[stroke] {\n  stroke: var(--jp-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[stroke] {\n  stroke: var(--jp-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[stroke] {\n  stroke: var(--jp-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[stroke] {\n  stroke: var(--jp-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[stroke] {\n  stroke: var(--jp-layout-color4);\n}\n\n/* inverse recolor the accent elements of an icon */\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[fill] {\n  fill: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[fill] {\n  fill: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[fill] {\n  fill: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[fill] {\n  fill: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[fill] {\n  fill: var(--jp-inverse-layout-color4);\n}\n\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color0);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color1);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color2);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color3);\n}\n.jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[stroke] {\n  stroke: var(--jp-inverse-layout-color4);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-switch {\n  display: flex;\n  align-items: center;\n  padding-left: 4px;\n  padding-right: 4px;\n  font-size: var(--jp-ui-font-size1);\n  background-color: transparent;\n  color: var(--jp-ui-font-color1);\n  border: none;\n  height: 20px;\n}\n\n.jp-switch:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-switch-label {\n  margin-right: 5px;\n}\n\n.jp-switch-track {\n  cursor: pointer;\n  background-color: var(--jp-border-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 34px;\n  height: 16px;\n  width: 35px;\n  position: relative;\n}\n\n.jp-switch-track::before {\n  content: '';\n  position: absolute;\n  height: 10px;\n  width: 10px;\n  margin: 3px;\n  left: 0px;\n  background-color: var(--jp-ui-inverse-font-color1);\n  -webkit-transition: 0.4s;\n  transition: 0.4s;\n  border-radius: 50%;\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track {\n  background-color: var(--jp-warn-color0);\n}\n\n.jp-switch[aria-checked='true'] .jp-switch-track::before {\n  /* track width (35) - margins (3 + 3) - thumb width (10) */\n  left: 19px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/* Sibling imports */\n\n/* Override Blueprint's _reset.scss styles */\nhtml {\n  box-sizing: unset;\n}\n\n*,\n*::before,\n*::after {\n  box-sizing: unset;\n}\n\nbody {\n  color: unset;\n  font-family: var(--jp-ui-font-family);\n}\n\np {\n  margin-top: unset;\n  margin-bottom: unset;\n}\n\nsmall {\n  font-size: unset;\n}\n\nstrong {\n  font-weight: unset;\n}\n\n/* Override Blueprint's _typography.scss styles */\na {\n  text-decoration: unset;\n  color: unset;\n}\na:hover {\n  text-decoration: unset;\n  color: unset;\n}\n\n/* Override Blueprint's _accessibility.scss styles */\n:focus {\n  outline: unset;\n  outline-offset: unset;\n  -moz-outline-radius: unset;\n}\n\n/* Styles for ui-components */\n.jp-Button {\n  border-radius: var(--jp-border-radius);\n  padding: 0px 12px;\n  font-size: var(--jp-ui-font-size1);\n}\n\n/* Use our own theme for hover styles */\nbutton.jp-Button.bp3-button.bp3-minimal:hover {\n  background-color: var(--jp-layout-color2);\n}\n.jp-Button.minimal {\n  color: unset !important;\n}\n\n.jp-Button.jp-ToolbarButtonComponent {\n  text-transform: none;\n}\n\n.jp-InputGroup input {\n  box-sizing: border-box;\n  border-radius: 0;\n  background-color: transparent;\n  color: var(--jp-ui-font-color0);\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.jp-InputGroup input:focus {\n  box-shadow: inset 0 0 0 var(--jp-border-width)\n      var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-InputGroup input::placeholder,\ninput::placeholder {\n  color: var(--jp-ui-font-color3);\n}\n\n.jp-BPIcon {\n  display: inline-block;\n  vertical-align: middle;\n  margin: auto;\n}\n\n/* Stop blueprint futzing with our icon fills */\n.bp3-icon.jp-BPIcon > svg:not([fill]) {\n  fill: var(--jp-inverse-layout-color3);\n}\n\n.jp-InputGroupAction {\n  padding: 6px;\n}\n\n.jp-HTMLSelect.jp-DefaultStyle select {\n  background-color: initial;\n  border: none;\n  border-radius: 0;\n  box-shadow: none;\n  color: var(--jp-ui-font-color0);\n  display: block;\n  font-size: var(--jp-ui-font-size1);\n  height: 24px;\n  line-height: 14px;\n  padding: 0 25px 0 10px;\n  text-align: left;\n  -moz-appearance: none;\n  -webkit-appearance: none;\n}\n\n/* Use our own theme for hover and option styles */\n.jp-HTMLSelect.jp-DefaultStyle select:hover,\n.jp-HTMLSelect.jp-DefaultStyle select > option {\n  background-color: var(--jp-layout-color2);\n  color: var(--jp-ui-font-color0);\n}\nselect {\n  box-sizing: border-box;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapse {\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  border-top: 1px solid var(--jp-border-color2);\n  border-bottom: 1px solid var(--jp-border-color2);\n}\n\n.jp-Collapse-header {\n  padding: 1px 12px;\n  color: var(--jp-ui-font-color1);\n  background-color: var(--jp-layout-color1);\n  font-size: var(--jp-ui-font-size2);\n}\n\n.jp-Collapse-header:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-Collapse-contents {\n  padding: 0px 12px 0px 12px;\n  background-color: var(--jp-layout-color1);\n  color: var(--jp-ui-font-color1);\n  overflow: auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-commandpalette-search-height: 28px;\n}\n\n/*-----------------------------------------------------------------------------\n| Overall styles\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette {\n  padding-bottom: 0px;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Modal variant\n|----------------------------------------------------------------------------*/\n\n.jp-ModalCommandPalette {\n  position: absolute;\n  z-index: 10000;\n  top: 38px;\n  left: 30%;\n  margin: 0;\n  padding: 4px;\n  width: 40%;\n  box-shadow: var(--jp-elevation-z4);\n  border-radius: 4px;\n  background: var(--jp-layout-color0);\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette {\n  max-height: 40vh;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-close-icon::after {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-header {\n  display: none;\n}\n\n.jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-item {\n  margin-left: 4px;\n  margin-right: 4px;\n}\n\n.jp-ModalCommandPalette\n  .lm-CommandPalette\n  .lm-CommandPalette-item.lm-mod-disabled {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Search\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-search {\n  padding: 4px;\n  background-color: var(--jp-layout-color1);\n  z-index: 2;\n}\n\n.lm-CommandPalette-wrapper {\n  overflow: overlay;\n  padding: 0px 9px;\n  background-color: var(--jp-input-active-background);\n  height: 30px;\n  box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);\n}\n\n.lm-CommandPalette.lm-mod-focused .lm-CommandPalette-wrapper {\n  box-shadow: inset 0 0 0 1px var(--jp-input-active-box-shadow-color),\n    inset 0 0 0 3px var(--jp-input-active-box-shadow-color);\n}\n\n.jp-SearchIconGroup {\n  color: white;\n  background-color: var(--jp-brand-color1);\n  position: absolute;\n  top: 4px;\n  right: 4px;\n  padding: 5px 5px 1px 5px;\n}\n\n.jp-SearchIconGroup svg {\n  height: 20px;\n  width: 20px;\n}\n\n.jp-SearchIconGroup .jp-icon3[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-input {\n  background: transparent;\n  width: calc(100% - 18px);\n  float: left;\n  border: none;\n  outline: none;\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  line-height: var(--jp-private-commandpalette-search-height);\n}\n\n.lm-CommandPalette-input::-webkit-input-placeholder,\n.lm-CommandPalette-input::-moz-placeholder,\n.lm-CommandPalette-input:-ms-input-placeholder {\n  color: var(--jp-ui-font-color2);\n  font-size: var(--jp-ui-font-size1);\n}\n\n/*-----------------------------------------------------------------------------\n| Results\n|----------------------------------------------------------------------------*/\n\n.lm-CommandPalette-header:first-child {\n  margin-top: 0px;\n}\n\n.lm-CommandPalette-header {\n  border-bottom: solid var(--jp-border-width) var(--jp-border-color2);\n  color: var(--jp-ui-font-color1);\n  cursor: pointer;\n  display: flex;\n  font-size: var(--jp-ui-font-size0);\n  font-weight: 600;\n  letter-spacing: 1px;\n  margin-top: 8px;\n  padding: 8px 0 8px 12px;\n  text-transform: uppercase;\n}\n\n.lm-CommandPalette-header.lm-mod-active {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-header > mark {\n  background-color: transparent;\n  font-weight: bold;\n  color: var(--jp-ui-font-color1);\n}\n\n.lm-CommandPalette-item {\n  padding: 4px 12px 4px 4px;\n  color: var(--jp-ui-font-color1);\n  font-size: var(--jp-ui-font-size1);\n  font-weight: 400;\n  display: flex;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item.lm-mod-active {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .jp-icon-selectable[fill] {\n  fill: var(--jp-layout-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active .lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n.lm-CommandPalette-item.lm-mod-active:hover:not(.lm-mod-disabled) {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.lm-CommandPalette-item:hover:not(.lm-mod-active):not(.lm-mod-disabled) {\n  background: var(--jp-layout-color2);\n}\n\n.lm-CommandPalette-itemContent {\n  overflow: hidden;\n}\n\n.lm-CommandPalette-itemLabel > mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled mark {\n  color: var(--jp-ui-font-color2);\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemIcon {\n  margin: 0 4px 0 0;\n  position: relative;\n  width: 16px;\n  top: 2px;\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-item.lm-mod-disabled .lm-CommandPalette-itemIcon {\n  opacity: 0.6;\n}\n\n.lm-CommandPalette-item .lm-CommandPalette-itemShortcut {\n  flex: 0 0 auto;\n}\n\n.lm-CommandPalette-itemCaption {\n  display: none;\n}\n\n.lm-CommandPalette-content {\n  background-color: var(--jp-layout-color1);\n}\n\n.lm-CommandPalette-content:empty:after {\n  content: 'No results';\n  margin: auto;\n  margin-top: 20px;\n  width: 100px;\n  display: block;\n  font-size: var(--jp-ui-font-size2);\n  font-family: var(--jp-ui-font-family);\n  font-weight: lighter;\n}\n\n.lm-CommandPalette-emptyMessage {\n  text-align: center;\n  margin-top: 24px;\n  line-height: 1.32;\n  padding: 0px 8px;\n  color: var(--jp-content-font-color3);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Dialog {\n  position: absolute;\n  z-index: 10000;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  top: 0px;\n  left: 0px;\n  margin: 0;\n  padding: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-dialog-background);\n}\n\n.jp-Dialog-content {\n  display: flex;\n  flex-direction: column;\n  margin-left: auto;\n  margin-right: auto;\n  background: var(--jp-layout-color1);\n  padding: 24px;\n  padding-bottom: 12px;\n  min-width: 300px;\n  min-height: 150px;\n  max-width: 1000px;\n  max-height: 500px;\n  box-sizing: border-box;\n  box-shadow: var(--jp-elevation-z20);\n  word-wrap: break-word;\n  border-radius: var(--jp-border-radius);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color1);\n  resize: both;\n}\n\n.jp-Dialog-button {\n  overflow: visible;\n}\n\nbutton.jp-Dialog-button:focus {\n  outline: 1px solid var(--jp-brand-color1);\n  outline-offset: 4px;\n  -moz-outline-radius: 0px;\n}\n\nbutton.jp-Dialog-button:focus::-moz-focus-inner {\n  border: 0;\n}\n\nbutton.jp-Dialog-close-button {\n  padding: 0;\n  height: 100%;\n  min-width: unset;\n  min-height: unset;\n}\n\n.jp-Dialog-header {\n  display: flex;\n  justify-content: space-between;\n  flex: 0 0 auto;\n  padding-bottom: 12px;\n  font-size: var(--jp-ui-font-size3);\n  font-weight: 400;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-body {\n  display: flex;\n  flex-direction: column;\n  flex: 1 1 auto;\n  font-size: var(--jp-ui-font-size1);\n  background: var(--jp-layout-color1);\n  overflow: auto;\n}\n\n.jp-Dialog-footer {\n  display: flex;\n  flex-direction: row;\n  justify-content: flex-end;\n  flex: 0 0 auto;\n  margin-left: -12px;\n  margin-right: -12px;\n  padding: 12px;\n}\n\n.jp-Dialog-title {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n}\n\n.jp-Dialog-body > .jp-select-wrapper {\n  width: 100%;\n}\n\n.jp-Dialog-body > button {\n  padding: 0px 16px;\n}\n\n.jp-Dialog-body > label {\n  line-height: 1.4;\n  color: var(--jp-ui-font-color0);\n}\n\n.jp-Dialog-button.jp-mod-styled:not(:last-child) {\n  margin-right: 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-HoverBox {\n  position: fixed;\n}\n\n.jp-HoverBox.jp-mod-outofview {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-IFrame {\n  width: 100%;\n  height: 100%;\n}\n\n.jp-IFrame > iframe {\n  border: none;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-IFrame {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-IFrame:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n.jp-Input-Boolean-Dialog {\n  flex-direction: row-reverse;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-Input-Boolean-Dialog > label {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MainAreaWidget > :focus {\n  outline: none;\n}\n\n/**\n * google-material-color v1.2.6\n * https://github.com/danlevan/google-material-color\n */\n:root {\n  --md-red-50: #ffebee;\n  --md-red-100: #ffcdd2;\n  --md-red-200: #ef9a9a;\n  --md-red-300: #e57373;\n  --md-red-400: #ef5350;\n  --md-red-500: #f44336;\n  --md-red-600: #e53935;\n  --md-red-700: #d32f2f;\n  --md-red-800: #c62828;\n  --md-red-900: #b71c1c;\n  --md-red-A100: #ff8a80;\n  --md-red-A200: #ff5252;\n  --md-red-A400: #ff1744;\n  --md-red-A700: #d50000;\n\n  --md-pink-50: #fce4ec;\n  --md-pink-100: #f8bbd0;\n  --md-pink-200: #f48fb1;\n  --md-pink-300: #f06292;\n  --md-pink-400: #ec407a;\n  --md-pink-500: #e91e63;\n  --md-pink-600: #d81b60;\n  --md-pink-700: #c2185b;\n  --md-pink-800: #ad1457;\n  --md-pink-900: #880e4f;\n  --md-pink-A100: #ff80ab;\n  --md-pink-A200: #ff4081;\n  --md-pink-A400: #f50057;\n  --md-pink-A700: #c51162;\n\n  --md-purple-50: #f3e5f5;\n  --md-purple-100: #e1bee7;\n  --md-purple-200: #ce93d8;\n  --md-purple-300: #ba68c8;\n  --md-purple-400: #ab47bc;\n  --md-purple-500: #9c27b0;\n  --md-purple-600: #8e24aa;\n  --md-purple-700: #7b1fa2;\n  --md-purple-800: #6a1b9a;\n  --md-purple-900: #4a148c;\n  --md-purple-A100: #ea80fc;\n  --md-purple-A200: #e040fb;\n  --md-purple-A400: #d500f9;\n  --md-purple-A700: #aa00ff;\n\n  --md-deep-purple-50: #ede7f6;\n  --md-deep-purple-100: #d1c4e9;\n  --md-deep-purple-200: #b39ddb;\n  --md-deep-purple-300: #9575cd;\n  --md-deep-purple-400: #7e57c2;\n  --md-deep-purple-500: #673ab7;\n  --md-deep-purple-600: #5e35b1;\n  --md-deep-purple-700: #512da8;\n  --md-deep-purple-800: #4527a0;\n  --md-deep-purple-900: #311b92;\n  --md-deep-purple-A100: #b388ff;\n  --md-deep-purple-A200: #7c4dff;\n  --md-deep-purple-A400: #651fff;\n  --md-deep-purple-A700: #6200ea;\n\n  --md-indigo-50: #e8eaf6;\n  --md-indigo-100: #c5cae9;\n  --md-indigo-200: #9fa8da;\n  --md-indigo-300: #7986cb;\n  --md-indigo-400: #5c6bc0;\n  --md-indigo-500: #3f51b5;\n  --md-indigo-600: #3949ab;\n  --md-indigo-700: #303f9f;\n  --md-indigo-800: #283593;\n  --md-indigo-900: #1a237e;\n  --md-indigo-A100: #8c9eff;\n  --md-indigo-A200: #536dfe;\n  --md-indigo-A400: #3d5afe;\n  --md-indigo-A700: #304ffe;\n\n  --md-blue-50: #e3f2fd;\n  --md-blue-100: #bbdefb;\n  --md-blue-200: #90caf9;\n  --md-blue-300: #64b5f6;\n  --md-blue-400: #42a5f5;\n  --md-blue-500: #2196f3;\n  --md-blue-600: #1e88e5;\n  --md-blue-700: #1976d2;\n  --md-blue-800: #1565c0;\n  --md-blue-900: #0d47a1;\n  --md-blue-A100: #82b1ff;\n  --md-blue-A200: #448aff;\n  --md-blue-A400: #2979ff;\n  --md-blue-A700: #2962ff;\n\n  --md-light-blue-50: #e1f5fe;\n  --md-light-blue-100: #b3e5fc;\n  --md-light-blue-200: #81d4fa;\n  --md-light-blue-300: #4fc3f7;\n  --md-light-blue-400: #29b6f6;\n  --md-light-blue-500: #03a9f4;\n  --md-light-blue-600: #039be5;\n  --md-light-blue-700: #0288d1;\n  --md-light-blue-800: #0277bd;\n  --md-light-blue-900: #01579b;\n  --md-light-blue-A100: #80d8ff;\n  --md-light-blue-A200: #40c4ff;\n  --md-light-blue-A400: #00b0ff;\n  --md-light-blue-A700: #0091ea;\n\n  --md-cyan-50: #e0f7fa;\n  --md-cyan-100: #b2ebf2;\n  --md-cyan-200: #80deea;\n  --md-cyan-300: #4dd0e1;\n  --md-cyan-400: #26c6da;\n  --md-cyan-500: #00bcd4;\n  --md-cyan-600: #00acc1;\n  --md-cyan-700: #0097a7;\n  --md-cyan-800: #00838f;\n  --md-cyan-900: #006064;\n  --md-cyan-A100: #84ffff;\n  --md-cyan-A200: #18ffff;\n  --md-cyan-A400: #00e5ff;\n  --md-cyan-A700: #00b8d4;\n\n  --md-teal-50: #e0f2f1;\n  --md-teal-100: #b2dfdb;\n  --md-teal-200: #80cbc4;\n  --md-teal-300: #4db6ac;\n  --md-teal-400: #26a69a;\n  --md-teal-500: #009688;\n  --md-teal-600: #00897b;\n  --md-teal-700: #00796b;\n  --md-teal-800: #00695c;\n  --md-teal-900: #004d40;\n  --md-teal-A100: #a7ffeb;\n  --md-teal-A200: #64ffda;\n  --md-teal-A400: #1de9b6;\n  --md-teal-A700: #00bfa5;\n\n  --md-green-50: #e8f5e9;\n  --md-green-100: #c8e6c9;\n  --md-green-200: #a5d6a7;\n  --md-green-300: #81c784;\n  --md-green-400: #66bb6a;\n  --md-green-500: #4caf50;\n  --md-green-600: #43a047;\n  --md-green-700: #388e3c;\n  --md-green-800: #2e7d32;\n  --md-green-900: #1b5e20;\n  --md-green-A100: #b9f6ca;\n  --md-green-A200: #69f0ae;\n  --md-green-A400: #00e676;\n  --md-green-A700: #00c853;\n\n  --md-light-green-50: #f1f8e9;\n  --md-light-green-100: #dcedc8;\n  --md-light-green-200: #c5e1a5;\n  --md-light-green-300: #aed581;\n  --md-light-green-400: #9ccc65;\n  --md-light-green-500: #8bc34a;\n  --md-light-green-600: #7cb342;\n  --md-light-green-700: #689f38;\n  --md-light-green-800: #558b2f;\n  --md-light-green-900: #33691e;\n  --md-light-green-A100: #ccff90;\n  --md-light-green-A200: #b2ff59;\n  --md-light-green-A400: #76ff03;\n  --md-light-green-A700: #64dd17;\n\n  --md-lime-50: #f9fbe7;\n  --md-lime-100: #f0f4c3;\n  --md-lime-200: #e6ee9c;\n  --md-lime-300: #dce775;\n  --md-lime-400: #d4e157;\n  --md-lime-500: #cddc39;\n  --md-lime-600: #c0ca33;\n  --md-lime-700: #afb42b;\n  --md-lime-800: #9e9d24;\n  --md-lime-900: #827717;\n  --md-lime-A100: #f4ff81;\n  --md-lime-A200: #eeff41;\n  --md-lime-A400: #c6ff00;\n  --md-lime-A700: #aeea00;\n\n  --md-yellow-50: #fffde7;\n  --md-yellow-100: #fff9c4;\n  --md-yellow-200: #fff59d;\n  --md-yellow-300: #fff176;\n  --md-yellow-400: #ffee58;\n  --md-yellow-500: #ffeb3b;\n  --md-yellow-600: #fdd835;\n  --md-yellow-700: #fbc02d;\n  --md-yellow-800: #f9a825;\n  --md-yellow-900: #f57f17;\n  --md-yellow-A100: #ffff8d;\n  --md-yellow-A200: #ffff00;\n  --md-yellow-A400: #ffea00;\n  --md-yellow-A700: #ffd600;\n\n  --md-amber-50: #fff8e1;\n  --md-amber-100: #ffecb3;\n  --md-amber-200: #ffe082;\n  --md-amber-300: #ffd54f;\n  --md-amber-400: #ffca28;\n  --md-amber-500: #ffc107;\n  --md-amber-600: #ffb300;\n  --md-amber-700: #ffa000;\n  --md-amber-800: #ff8f00;\n  --md-amber-900: #ff6f00;\n  --md-amber-A100: #ffe57f;\n  --md-amber-A200: #ffd740;\n  --md-amber-A400: #ffc400;\n  --md-amber-A700: #ffab00;\n\n  --md-orange-50: #fff3e0;\n  --md-orange-100: #ffe0b2;\n  --md-orange-200: #ffcc80;\n  --md-orange-300: #ffb74d;\n  --md-orange-400: #ffa726;\n  --md-orange-500: #ff9800;\n  --md-orange-600: #fb8c00;\n  --md-orange-700: #f57c00;\n  --md-orange-800: #ef6c00;\n  --md-orange-900: #e65100;\n  --md-orange-A100: #ffd180;\n  --md-orange-A200: #ffab40;\n  --md-orange-A400: #ff9100;\n  --md-orange-A700: #ff6d00;\n\n  --md-deep-orange-50: #fbe9e7;\n  --md-deep-orange-100: #ffccbc;\n  --md-deep-orange-200: #ffab91;\n  --md-deep-orange-300: #ff8a65;\n  --md-deep-orange-400: #ff7043;\n  --md-deep-orange-500: #ff5722;\n  --md-deep-orange-600: #f4511e;\n  --md-deep-orange-700: #e64a19;\n  --md-deep-orange-800: #d84315;\n  --md-deep-orange-900: #bf360c;\n  --md-deep-orange-A100: #ff9e80;\n  --md-deep-orange-A200: #ff6e40;\n  --md-deep-orange-A400: #ff3d00;\n  --md-deep-orange-A700: #dd2c00;\n\n  --md-brown-50: #efebe9;\n  --md-brown-100: #d7ccc8;\n  --md-brown-200: #bcaaa4;\n  --md-brown-300: #a1887f;\n  --md-brown-400: #8d6e63;\n  --md-brown-500: #795548;\n  --md-brown-600: #6d4c41;\n  --md-brown-700: #5d4037;\n  --md-brown-800: #4e342e;\n  --md-brown-900: #3e2723;\n\n  --md-grey-50: #fafafa;\n  --md-grey-100: #f5f5f5;\n  --md-grey-200: #eeeeee;\n  --md-grey-300: #e0e0e0;\n  --md-grey-400: #bdbdbd;\n  --md-grey-500: #9e9e9e;\n  --md-grey-600: #757575;\n  --md-grey-700: #616161;\n  --md-grey-800: #424242;\n  --md-grey-900: #212121;\n\n  --md-blue-grey-50: #eceff1;\n  --md-blue-grey-100: #cfd8dc;\n  --md-blue-grey-200: #b0bec5;\n  --md-blue-grey-300: #90a4ae;\n  --md-blue-grey-400: #78909c;\n  --md-blue-grey-500: #607d8b;\n  --md-blue-grey-600: #546e7a;\n  --md-blue-grey-700: #455a64;\n  --md-blue-grey-800: #37474f;\n  --md-blue-grey-900: #263238;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Spinner {\n  position: absolute;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  z-index: 10;\n  left: 0;\n  top: 0;\n  width: 100%;\n  height: 100%;\n  background: var(--jp-layout-color0);\n  outline: none;\n}\n\n.jp-SpinnerContent {\n  font-size: 10px;\n  margin: 50px auto;\n  text-indent: -9999em;\n  width: 3em;\n  height: 3em;\n  border-radius: 50%;\n  background: var(--jp-brand-color3);\n  background: linear-gradient(\n    to right,\n    #f37626 10%,\n    rgba(255, 255, 255, 0) 42%\n  );\n  position: relative;\n  animation: load3 1s infinite linear, fadeIn 1s;\n}\n\n.jp-SpinnerContent:before {\n  width: 50%;\n  height: 50%;\n  background: #f37626;\n  border-radius: 100% 0 0 0;\n  position: absolute;\n  top: 0;\n  left: 0;\n  content: '';\n}\n\n.jp-SpinnerContent:after {\n  background: var(--jp-layout-color0);\n  width: 75%;\n  height: 75%;\n  border-radius: 50%;\n  content: '';\n  margin: auto;\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n}\n\n@keyframes fadeIn {\n  0% {\n    opacity: 0;\n  }\n  100% {\n    opacity: 1;\n  }\n}\n\n@keyframes load3 {\n  0% {\n    transform: rotate(0deg);\n  }\n  100% {\n    transform: rotate(360deg);\n  }\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\nbutton.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: none;\n  box-sizing: border-box;\n  text-align: center;\n  line-height: 32px;\n  height: 32px;\n  padding: 0px 12px;\n  letter-spacing: 0.8px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput.jp-mod-styled {\n  background: var(--jp-input-background);\n  height: 28px;\n  box-sizing: border-box;\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n  padding-left: 7px;\n  padding-right: 7px;\n  font-size: var(--jp-ui-font-size2);\n  color: var(--jp-ui-font-color0);\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\ninput[type='checkbox'].jp-mod-styled {\n  appearance: checkbox;\n  -webkit-appearance: checkbox;\n  -moz-appearance: checkbox;\n  height: auto;\n}\n\ninput.jp-mod-styled:focus {\n  border: var(--jp-border-width) solid var(--md-blue-500);\n  box-shadow: inset 0 0 4px var(--md-blue-300);\n}\n\n.jp-FileDialog-Checkbox {\n  margin-top: 35px;\n  display: flex;\n  flex-direction: row;\n  align-items: end;\n  width: 100%;\n}\n\n.jp-FileDialog-Checkbox > label {\n  flex: 1 1 auto;\n}\n\n.jp-select-wrapper {\n  display: flex;\n  position: relative;\n  flex-direction: column;\n  padding: 1px;\n  background-color: var(--jp-layout-color1);\n  height: 28px;\n  box-sizing: border-box;\n  margin-bottom: 12px;\n}\n\n.jp-select-wrapper.jp-mod-focused select.jp-mod-styled {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-input-active-background);\n}\n\nselect.jp-mod-styled:hover {\n  background-color: var(--jp-layout-color1);\n  cursor: pointer;\n  color: var(--jp-ui-font-color0);\n  background-color: var(--jp-input-hover-background);\n  box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.5);\n}\n\nselect.jp-mod-styled {\n  flex: 1 1 auto;\n  height: 32px;\n  width: 100%;\n  font-size: var(--jp-ui-font-size2);\n  background: var(--jp-input-background);\n  color: var(--jp-ui-font-color0);\n  padding: 0 25px 0 8px;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-toolbar-height: calc(\n    28px + var(--jp-border-width)\n  ); /* leave 28px for content */\n}\n\n.jp-Toolbar {\n  color: var(--jp-ui-font-color1);\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  border-bottom: var(--jp-border-width) solid var(--jp-toolbar-border-color);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  background: var(--jp-toolbar-background);\n  min-height: var(--jp-toolbar-micro-height);\n  padding: 2px;\n  z-index: 1;\n  overflow-x: auto;\n}\n\n/* Toolbar items */\n\n.jp-Toolbar > .jp-Toolbar-item.jp-Toolbar-spacer {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\n.jp-Toolbar-item.jp-Toolbar-kernelStatus {\n  display: inline-block;\n  width: 32px;\n  background-repeat: no-repeat;\n  background-position: center;\n  background-size: 16px;\n}\n\n.jp-Toolbar > .jp-Toolbar-item {\n  flex: 0 0 auto;\n  display: flex;\n  padding-left: 1px;\n  padding-right: 1px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: var(--jp-private-toolbar-height);\n  height: 100%;\n}\n\n/* Toolbar buttons */\n\n/* This is the div we use to wrap the react component into a Widget */\ndiv.jp-ToolbarButton {\n  color: transparent;\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px;\n  margin: 0px;\n}\n\nbutton.jp-ToolbarButtonComponent {\n  background: var(--jp-layout-color1);\n  border: none;\n  box-sizing: border-box;\n  outline: none;\n  appearance: none;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  padding: 0px 6px;\n  margin: 0px;\n  height: 24px;\n  border-radius: var(--jp-border-radius);\n  display: flex;\n  align-items: center;\n  text-align: center;\n  font-size: 14px;\n  min-width: unset;\n  min-height: unset;\n}\n\nbutton.jp-ToolbarButtonComponent:disabled {\n  opacity: 0.4;\n}\n\nbutton.jp-ToolbarButtonComponent span {\n  padding: 0px;\n  flex: 0 0 auto;\n}\n\nbutton.jp-ToolbarButtonComponent .jp-ToolbarButtonComponent-label {\n  font-size: var(--jp-ui-font-size1);\n  line-height: 100%;\n  padding-left: 2px;\n  color: var(--jp-ui-font-color1);\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar.jp-Toolbar-micro {\n  padding: 0;\n  min-height: 0;\n}\n\n#jp-main-dock-panel[data-mode='single-document']\n  .jp-MainAreaWidget\n  > .jp-Toolbar {\n  border: none;\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2017, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Copyright (c) 2014-2017, PhosphorJS Contributors\n|\n| Distributed under the terms of the BSD 3-Clause License.\n|\n| The full license is in the file LICENSE, distributed with this software.\n|----------------------------------------------------------------------------*/\n\n\n/* <DEPRECATED> */ body.p-mod-override-cursor *, /* </DEPRECATED> */\nbody.lm-mod-override-cursor * {\n  cursor: inherit !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) 2014-2016, Jupyter Development Team.\n|\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-JSONEditor {\n  display: flex;\n  flex-direction: column;\n  width: 100%;\n}\n\n.jp-JSONEditor-host {\n  flex: 1 1 auto;\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  border-radius: 0px;\n  background: var(--jp-layout-color0);\n  min-height: 50px;\n  padding: 1px;\n}\n\n.jp-JSONEditor.jp-mod-error .jp-JSONEditor-host {\n  border-color: red;\n  outline-color: red;\n}\n\n.jp-JSONEditor-header {\n  display: flex;\n  flex: 1 0 auto;\n  padding: 0 0 0 12px;\n}\n\n.jp-JSONEditor-header label {\n  flex: 0 0 auto;\n}\n\n.jp-JSONEditor-commitButton {\n  height: 16px;\n  width: 16px;\n  background-size: 18px;\n  background-repeat: no-repeat;\n  background-position: center;\n}\n\n.jp-JSONEditor-host.jp-mod-focused {\n  background-color: var(--jp-input-active-background);\n  border: 1px solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n.jp-Editor.jp-mod-dropTarget {\n  border: var(--jp-border-width) solid var(--jp-input-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n}\n\n/* BASICS */\n\n.CodeMirror {\n  /* Set height, width, borders, and global font properties here */\n  font-family: monospace;\n  height: 300px;\n  color: black;\n  direction: ltr;\n}\n\n/* PADDING */\n\n.CodeMirror-lines {\n  padding: 4px 0; /* Vertical padding around content */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  padding: 0 4px; /* Horizontal padding of content */\n}\n\n.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  background-color: white; /* The little square between H and V scrollbars */\n}\n\n/* GUTTER */\n\n.CodeMirror-gutters {\n  border-right: 1px solid #ddd;\n  background-color: #f7f7f7;\n  white-space: nowrap;\n}\n.CodeMirror-linenumbers {}\n.CodeMirror-linenumber {\n  padding: 0 3px 0 5px;\n  min-width: 20px;\n  text-align: right;\n  color: #999;\n  white-space: nowrap;\n}\n\n.CodeMirror-guttermarker { color: black; }\n.CodeMirror-guttermarker-subtle { color: #999; }\n\n/* CURSOR */\n\n.CodeMirror-cursor {\n  border-left: 1px solid black;\n  border-right: none;\n  width: 0;\n}\n/* Shown when moving in bi-directional text */\n.CodeMirror div.CodeMirror-secondarycursor {\n  border-left: 1px solid silver;\n}\n.cm-fat-cursor .CodeMirror-cursor {\n  width: auto;\n  border: 0 !important;\n  background: #7e7;\n}\n.cm-fat-cursor div.CodeMirror-cursors {\n  z-index: 1;\n}\n.cm-fat-cursor-mark {\n  background-color: rgba(20, 255, 20, 0.5);\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n}\n.cm-animate-fat-cursor {\n  width: auto;\n  border: 0;\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n  background-color: #7e7;\n}\n@-moz-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@-webkit-keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n@keyframes blink {\n  0% {}\n  50% { background-color: transparent; }\n  100% {}\n}\n\n/* Can style cursor different in overwrite (non-insert) mode */\n.CodeMirror-overwrite .CodeMirror-cursor {}\n\n.cm-tab { display: inline-block; text-decoration: inherit; }\n\n.CodeMirror-rulers {\n  position: absolute;\n  left: 0; right: 0; top: -50px; bottom: 0;\n  overflow: hidden;\n}\n.CodeMirror-ruler {\n  border-left: 1px solid #ccc;\n  top: 0; bottom: 0;\n  position: absolute;\n}\n\n/* DEFAULT THEME */\n\n.cm-s-default .cm-header {color: blue;}\n.cm-s-default .cm-quote {color: #090;}\n.cm-negative {color: #d44;}\n.cm-positive {color: #292;}\n.cm-header, .cm-strong {font-weight: bold;}\n.cm-em {font-style: italic;}\n.cm-link {text-decoration: underline;}\n.cm-strikethrough {text-decoration: line-through;}\n\n.cm-s-default .cm-keyword {color: #708;}\n.cm-s-default .cm-atom {color: #219;}\n.cm-s-default .cm-number {color: #164;}\n.cm-s-default .cm-def {color: #00f;}\n.cm-s-default .cm-variable,\n.cm-s-default .cm-punctuation,\n.cm-s-default .cm-property,\n.cm-s-default .cm-operator {}\n.cm-s-default .cm-variable-2 {color: #05a;}\n.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}\n.cm-s-default .cm-comment {color: #a50;}\n.cm-s-default .cm-string {color: #a11;}\n.cm-s-default .cm-string-2 {color: #f50;}\n.cm-s-default .cm-meta {color: #555;}\n.cm-s-default .cm-qualifier {color: #555;}\n.cm-s-default .cm-builtin {color: #30a;}\n.cm-s-default .cm-bracket {color: #997;}\n.cm-s-default .cm-tag {color: #170;}\n.cm-s-default .cm-attribute {color: #00c;}\n.cm-s-default .cm-hr {color: #999;}\n.cm-s-default .cm-link {color: #00c;}\n\n.cm-s-default .cm-error {color: #f00;}\n.cm-invalidchar {color: #f00;}\n\n.CodeMirror-composing { border-bottom: 2px solid; }\n\n/* Default styles for common addons */\n\ndiv.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}\ndiv.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}\n.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }\n.CodeMirror-activeline-background {background: #e8f2ff;}\n\n/* STOP */\n\n/* The rest of this file contains styles related to the mechanics of\n   the editor. You probably shouldn't touch them. */\n\n.CodeMirror {\n  position: relative;\n  overflow: hidden;\n  background: white;\n}\n\n.CodeMirror-scroll {\n  overflow: scroll !important; /* Things will break if this is overridden */\n  /* 50px is the magic margin used to hide the element's real scrollbars */\n  /* See overflow: hidden in .CodeMirror */\n  margin-bottom: -50px; margin-right: -50px;\n  padding-bottom: 50px;\n  height: 100%;\n  outline: none; /* Prevent dragging from highlighting the element */\n  position: relative;\n}\n.CodeMirror-sizer {\n  position: relative;\n  border-right: 50px solid transparent;\n}\n\n/* The fake, visible scrollbars. Used to force redraw during scrolling\n   before actual scrolling happens, thus preventing shaking and\n   flickering artifacts. */\n.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  position: absolute;\n  z-index: 6;\n  display: none;\n  outline: none;\n}\n.CodeMirror-vscrollbar {\n  right: 0; top: 0;\n  overflow-x: hidden;\n  overflow-y: scroll;\n}\n.CodeMirror-hscrollbar {\n  bottom: 0; left: 0;\n  overflow-y: hidden;\n  overflow-x: scroll;\n}\n.CodeMirror-scrollbar-filler {\n  right: 0; bottom: 0;\n}\n.CodeMirror-gutter-filler {\n  left: 0; bottom: 0;\n}\n\n.CodeMirror-gutters {\n  position: absolute; left: 0; top: 0;\n  min-height: 100%;\n  z-index: 3;\n}\n.CodeMirror-gutter {\n  white-space: normal;\n  height: 100%;\n  display: inline-block;\n  vertical-align: top;\n  margin-bottom: -50px;\n}\n.CodeMirror-gutter-wrapper {\n  position: absolute;\n  z-index: 4;\n  background: none !important;\n  border: none !important;\n}\n.CodeMirror-gutter-background {\n  position: absolute;\n  top: 0; bottom: 0;\n  z-index: 4;\n}\n.CodeMirror-gutter-elt {\n  position: absolute;\n  cursor: default;\n  z-index: 4;\n}\n.CodeMirror-gutter-wrapper ::selection { background-color: transparent }\n.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }\n\n.CodeMirror-lines {\n  cursor: text;\n  min-height: 1px; /* prevents collapsing before first draw */\n}\n.CodeMirror pre.CodeMirror-line,\n.CodeMirror pre.CodeMirror-line-like {\n  /* Reset some styles that the rest of the page might have set */\n  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;\n  border-width: 0;\n  background: transparent;\n  font-family: inherit;\n  font-size: inherit;\n  margin: 0;\n  white-space: pre;\n  word-wrap: normal;\n  line-height: inherit;\n  color: inherit;\n  z-index: 2;\n  position: relative;\n  overflow: visible;\n  -webkit-tap-highlight-color: transparent;\n  -webkit-font-variant-ligatures: contextual;\n  font-variant-ligatures: contextual;\n}\n.CodeMirror-wrap pre.CodeMirror-line,\n.CodeMirror-wrap pre.CodeMirror-line-like {\n  word-wrap: break-word;\n  white-space: pre-wrap;\n  word-break: normal;\n}\n\n.CodeMirror-linebackground {\n  position: absolute;\n  left: 0; right: 0; top: 0; bottom: 0;\n  z-index: 0;\n}\n\n.CodeMirror-linewidget {\n  position: relative;\n  z-index: 2;\n  padding: 0.1px; /* Force widget margins to stay inside of the container */\n}\n\n.CodeMirror-widget {}\n\n.CodeMirror-rtl pre { direction: rtl; }\n\n.CodeMirror-code {\n  outline: none;\n}\n\n/* Force content-box sizing for the elements where we expect it */\n.CodeMirror-scroll,\n.CodeMirror-sizer,\n.CodeMirror-gutter,\n.CodeMirror-gutters,\n.CodeMirror-linenumber {\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n}\n\n.CodeMirror-measure {\n  position: absolute;\n  width: 100%;\n  height: 0;\n  overflow: hidden;\n  visibility: hidden;\n}\n\n.CodeMirror-cursor {\n  position: absolute;\n  pointer-events: none;\n}\n.CodeMirror-measure pre { position: static; }\n\ndiv.CodeMirror-cursors {\n  visibility: hidden;\n  position: relative;\n  z-index: 3;\n}\ndiv.CodeMirror-dragcursors {\n  visibility: visible;\n}\n\n.CodeMirror-focused div.CodeMirror-cursors {\n  visibility: visible;\n}\n\n.CodeMirror-selected { background: #d9d9d9; }\n.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }\n.CodeMirror-crosshair { cursor: crosshair; }\n.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }\n.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }\n\n.cm-searching {\n  background-color: #ffa;\n  background-color: rgba(255, 255, 0, .4);\n}\n\n/* Used to force a border model for a node */\n.cm-force-border { padding-right: .1px; }\n\n@media print {\n  /* Hide the cursor when printing */\n  .CodeMirror div.CodeMirror-cursors {\n    visibility: hidden;\n  }\n}\n\n/* See issue #2901 */\n.cm-tab-wrap-hack:after { content: ''; }\n\n/* Help users use markselection to safely style text background */\nspan.CodeMirror-selectedtext { background: none; }\n\n.CodeMirror-dialog {\n  position: absolute;\n  left: 0; right: 0;\n  background: inherit;\n  z-index: 15;\n  padding: .1em .8em;\n  overflow: hidden;\n  color: inherit;\n}\n\n.CodeMirror-dialog-top {\n  border-bottom: 1px solid #eee;\n  top: 0;\n}\n\n.CodeMirror-dialog-bottom {\n  border-top: 1px solid #eee;\n  bottom: 0;\n}\n\n.CodeMirror-dialog input {\n  border: none;\n  outline: none;\n  background: transparent;\n  width: 20em;\n  color: inherit;\n  font-family: monospace;\n}\n\n.CodeMirror-dialog button {\n  font-size: 70%;\n}\n\n.CodeMirror-foldmarker {\n  color: blue;\n  text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;\n  font-family: arial;\n  line-height: .3;\n  cursor: pointer;\n}\n.CodeMirror-foldgutter {\n  width: .7em;\n}\n.CodeMirror-foldgutter-open,\n.CodeMirror-foldgutter-folded {\n  cursor: pointer;\n}\n.CodeMirror-foldgutter-open:after {\n  content: \"\\25BE\";\n}\n.CodeMirror-foldgutter-folded:after {\n  content: \"\\25B8\";\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.CodeMirror {\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  border: 0;\n  border-radius: 0;\n  height: auto;\n  /* Changed to auto to autogrow */\n}\n\n.CodeMirror pre {\n  padding: 0 var(--jp-code-padding);\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-dialog {\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* This causes https://github.com/jupyter/jupyterlab/issues/522 */\n/* May not cause it not because we changed it! */\n.CodeMirror-lines {\n  padding: var(--jp-code-padding) 0;\n}\n\n.CodeMirror-linenumber {\n  padding: 0 8px;\n}\n\n.jp-CodeMirrorEditor {\n  cursor: text;\n}\n\n.jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n\n/* When zoomed out 67% and 33% on a screen of 1440 width x 900 height */\n@media screen and (min-width: 2138px) and (max-width: 4319px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width1) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n/* When zoomed out less than 33% */\n@media screen and (min-width: 4320px) {\n  .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {\n    border-left: var(--jp-code-cursor-width2) solid\n      var(--jp-editor-cursor-color);\n  }\n}\n\n.CodeMirror.jp-mod-readOnly .CodeMirror-cursor {\n  display: none;\n}\n\n.CodeMirror-gutters {\n  border-right: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-layout-color0);\n}\n\n.jp-CollaboratorCursor {\n  border-left: 5px solid transparent;\n  border-right: 5px solid transparent;\n  border-top: none;\n  border-bottom: 3px solid;\n  background-clip: content-box;\n  margin-left: -5px;\n  margin-right: -5px;\n}\n\n.CodeMirror-selectedtext.cm-searching {\n  background-color: var(--jp-search-selected-match-background-color) !important;\n  color: var(--jp-search-selected-match-color) !important;\n}\n\n.cm-searching {\n  background-color: var(\n    --jp-search-unselected-match-background-color\n  ) !important;\n  color: var(--jp-search-unselected-match-color) !important;\n}\n\n.CodeMirror-focused .CodeMirror-selected {\n  background-color: var(--jp-editor-selected-focused-background);\n}\n\n.CodeMirror-selected {\n  background-color: var(--jp-editor-selected-background);\n}\n\n.jp-CollaboratorCursor-hover {\n  position: absolute;\n  z-index: 1;\n  transform: translateX(-50%);\n  color: white;\n  border-radius: 3px;\n  padding-left: 4px;\n  padding-right: 4px;\n  padding-top: 1px;\n  padding-bottom: 1px;\n  text-align: center;\n  font-size: var(--jp-ui-font-size1);\n  white-space: nowrap;\n}\n\n.jp-CodeMirror-ruler {\n  border-left: 1px dashed var(--jp-border-color2);\n}\n\n/**\n * Here is our jupyter theme for CodeMirror syntax highlighting\n * This is used in our marked.js syntax highlighting and CodeMirror itself\n * The string \"jupyter\" is set in ../codemirror/widget.DEFAULT_CODEMIRROR_THEME\n * This came from the classic notebook, which came form highlight.js/GitHub\n */\n\n/**\n * CodeMirror themes are handling the background/color in this way. This works\n * fine for CodeMirror editors outside the notebook, but the notebook styles\n * these things differently.\n */\n.CodeMirror.cm-s-jupyter {\n  background: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n}\n\n/* In the notebook, we want this styling to be handled by its container */\n.jp-CodeConsole .CodeMirror.cm-s-jupyter,\n.jp-Notebook .CodeMirror.cm-s-jupyter {\n  background: transparent;\n}\n\n.cm-s-jupyter .CodeMirror-cursor {\n  border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);\n}\n.cm-s-jupyter span.cm-keyword {\n  color: var(--jp-mirror-editor-keyword-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-atom {\n  color: var(--jp-mirror-editor-atom-color);\n}\n.cm-s-jupyter span.cm-number {\n  color: var(--jp-mirror-editor-number-color);\n}\n.cm-s-jupyter span.cm-def {\n  color: var(--jp-mirror-editor-def-color);\n}\n.cm-s-jupyter span.cm-variable {\n  color: var(--jp-mirror-editor-variable-color);\n}\n.cm-s-jupyter span.cm-variable-2 {\n  color: var(--jp-mirror-editor-variable-2-color);\n}\n.cm-s-jupyter span.cm-variable-3 {\n  color: var(--jp-mirror-editor-variable-3-color);\n}\n.cm-s-jupyter span.cm-punctuation {\n  color: var(--jp-mirror-editor-punctuation-color);\n}\n.cm-s-jupyter span.cm-property {\n  color: var(--jp-mirror-editor-property-color);\n}\n.cm-s-jupyter span.cm-operator {\n  color: var(--jp-mirror-editor-operator-color);\n  font-weight: bold;\n}\n.cm-s-jupyter span.cm-comment {\n  color: var(--jp-mirror-editor-comment-color);\n  font-style: italic;\n}\n.cm-s-jupyter span.cm-string {\n  color: var(--jp-mirror-editor-string-color);\n}\n.cm-s-jupyter span.cm-string-2 {\n  color: var(--jp-mirror-editor-string-2-color);\n}\n.cm-s-jupyter span.cm-meta {\n  color: var(--jp-mirror-editor-meta-color);\n}\n.cm-s-jupyter span.cm-qualifier {\n  color: var(--jp-mirror-editor-qualifier-color);\n}\n.cm-s-jupyter span.cm-builtin {\n  color: var(--jp-mirror-editor-builtin-color);\n}\n.cm-s-jupyter span.cm-bracket {\n  color: var(--jp-mirror-editor-bracket-color);\n}\n.cm-s-jupyter span.cm-tag {\n  color: var(--jp-mirror-editor-tag-color);\n}\n.cm-s-jupyter span.cm-attribute {\n  color: var(--jp-mirror-editor-attribute-color);\n}\n.cm-s-jupyter span.cm-header {\n  color: var(--jp-mirror-editor-header-color);\n}\n.cm-s-jupyter span.cm-quote {\n  color: var(--jp-mirror-editor-quote-color);\n}\n.cm-s-jupyter span.cm-link {\n  color: var(--jp-mirror-editor-link-color);\n}\n.cm-s-jupyter span.cm-error {\n  color: var(--jp-mirror-editor-error-color);\n}\n.cm-s-jupyter span.cm-hr {\n  color: #999;\n}\n\n.cm-s-jupyter span.cm-tab {\n  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);\n  background-position: right;\n  background-repeat: no-repeat;\n}\n\n.cm-s-jupyter .CodeMirror-activeline-background,\n.cm-s-jupyter .CodeMirror-gutter {\n  background-color: var(--jp-layout-color2);\n}\n\n/* Styles for shared cursors (remote cursor locations and selected ranges) */\n.jp-CodeMirrorEditor .remote-caret {\n  position: relative;\n  border-left: 2px solid black;\n  margin-left: -1px;\n  margin-right: -1px;\n  box-sizing: border-box;\n}\n\n.jp-CodeMirrorEditor .remote-caret > div {\n  white-space: nowrap;\n  position: absolute;\n  top: -1.15em;\n  padding-bottom: 0.05em;\n  left: -2px;\n  font-size: 0.95em;\n  background-color: rgb(250, 129, 0);\n  font-family: var(--jp-ui-font-family);\n  font-weight: bold;\n  line-height: normal;\n  user-select: none;\n  color: white;\n  padding-left: 2px;\n  padding-right: 2px;\n  z-index: 3;\n  transition: opacity 0.3s ease-in-out;\n}\n\n.jp-CodeMirrorEditor .remote-caret.hide-name > div {\n  transition-delay: 0.7s;\n  opacity: 0;\n}\n\n.jp-CodeMirrorEditor .remote-caret:hover > div {\n  opacity: 1;\n  transition-delay: 0s;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| RenderedText\n|----------------------------------------------------------------------------*/\n\n:root {\n  /* This is the padding value to fill the gaps between lines containing spans with background color. */\n  --jp-private-code-span-padding: calc(\n    (var(--jp-code-line-height) - 1) * var(--jp-code-font-size) / 2\n  );\n}\n\n.jp-RenderedText {\n  text-align: left;\n  padding-left: var(--jp-code-padding);\n  line-height: var(--jp-code-line-height);\n  font-family: var(--jp-code-font-family);\n}\n\n.jp-RenderedText pre,\n.jp-RenderedJavaScript pre,\n.jp-RenderedHTMLCommon pre {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-code-font-size);\n  border: none;\n  margin: 0px;\n  padding: 0px;\n}\n\n.jp-RenderedText pre a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n.jp-RenderedText pre a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* console foregrounds and backgrounds */\n.jp-RenderedText pre .ansi-black-fg {\n  color: #3e424d;\n}\n.jp-RenderedText pre .ansi-red-fg {\n  color: #e75c58;\n}\n.jp-RenderedText pre .ansi-green-fg {\n  color: #00a250;\n}\n.jp-RenderedText pre .ansi-yellow-fg {\n  color: #ddb62b;\n}\n.jp-RenderedText pre .ansi-blue-fg {\n  color: #208ffb;\n}\n.jp-RenderedText pre .ansi-magenta-fg {\n  color: #d160c4;\n}\n.jp-RenderedText pre .ansi-cyan-fg {\n  color: #60c6c8;\n}\n.jp-RenderedText pre .ansi-white-fg {\n  color: #c5c1b4;\n}\n\n.jp-RenderedText pre .ansi-black-bg {\n  background-color: #3e424d;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-bg {\n  background-color: #e75c58;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-bg {\n  background-color: #00a250;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-bg {\n  background-color: #ddb62b;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-bg {\n  background-color: #208ffb;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-bg {\n  background-color: #d160c4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-bg {\n  background-color: #60c6c8;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-bg {\n  background-color: #c5c1b4;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-black-intense-fg {\n  color: #282c36;\n}\n.jp-RenderedText pre .ansi-red-intense-fg {\n  color: #b22b31;\n}\n.jp-RenderedText pre .ansi-green-intense-fg {\n  color: #007427;\n}\n.jp-RenderedText pre .ansi-yellow-intense-fg {\n  color: #b27d12;\n}\n.jp-RenderedText pre .ansi-blue-intense-fg {\n  color: #0065ca;\n}\n.jp-RenderedText pre .ansi-magenta-intense-fg {\n  color: #a03196;\n}\n.jp-RenderedText pre .ansi-cyan-intense-fg {\n  color: #258f8f;\n}\n.jp-RenderedText pre .ansi-white-intense-fg {\n  color: #a1a6b2;\n}\n\n.jp-RenderedText pre .ansi-black-intense-bg {\n  background-color: #282c36;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-red-intense-bg {\n  background-color: #b22b31;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-green-intense-bg {\n  background-color: #007427;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-yellow-intense-bg {\n  background-color: #b27d12;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-blue-intense-bg {\n  background-color: #0065ca;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-magenta-intense-bg {\n  background-color: #a03196;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-cyan-intense-bg {\n  background-color: #258f8f;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n.jp-RenderedText pre .ansi-white-intense-bg {\n  background-color: #a1a6b2;\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-default-inverse-fg {\n  color: var(--jp-ui-inverse-font-color0);\n}\n.jp-RenderedText pre .ansi-default-inverse-bg {\n  background-color: var(--jp-inverse-layout-color0);\n  padding: var(--jp-private-code-span-padding) 0;\n}\n\n.jp-RenderedText pre .ansi-bold {\n  font-weight: bold;\n}\n.jp-RenderedText pre .ansi-underline {\n  text-decoration: underline;\n}\n\n.jp-RenderedText[data-mime-type='application/vnd.jupyter.stderr'] {\n  background: var(--jp-rendermime-error-background);\n  padding-top: var(--jp-code-padding);\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedLatex\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedLatex {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n}\n\n/* Left-justify outputs.*/\n.jp-OutputArea-output.jp-RenderedLatex {\n  padding: var(--jp-code-padding);\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| RenderedHTML\n|----------------------------------------------------------------------------*/\n\n.jp-RenderedHTMLCommon {\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-content-font-family);\n  font-size: var(--jp-content-font-size1);\n  line-height: var(--jp-content-line-height);\n  /* Give a bit more R padding on Markdown text to keep line lengths reasonable */\n  padding-right: 20px;\n}\n\n.jp-RenderedHTMLCommon em {\n  font-style: italic;\n}\n\n.jp-RenderedHTMLCommon strong {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon u {\n  text-decoration: underline;\n}\n\n.jp-RenderedHTMLCommon a:link {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:hover {\n  text-decoration: underline;\n  color: var(--jp-content-link-color);\n}\n\n.jp-RenderedHTMLCommon a:visited {\n  text-decoration: none;\n  color: var(--jp-content-link-color);\n}\n\n/* Headings */\n\n.jp-RenderedHTMLCommon h1,\n.jp-RenderedHTMLCommon h2,\n.jp-RenderedHTMLCommon h3,\n.jp-RenderedHTMLCommon h4,\n.jp-RenderedHTMLCommon h5,\n.jp-RenderedHTMLCommon h6 {\n  line-height: var(--jp-content-heading-line-height);\n  font-weight: var(--jp-content-heading-font-weight);\n  font-style: normal;\n  margin: var(--jp-content-heading-margin-top) 0\n    var(--jp-content-heading-margin-bottom) 0;\n}\n\n.jp-RenderedHTMLCommon h1:first-child,\n.jp-RenderedHTMLCommon h2:first-child,\n.jp-RenderedHTMLCommon h3:first-child,\n.jp-RenderedHTMLCommon h4:first-child,\n.jp-RenderedHTMLCommon h5:first-child,\n.jp-RenderedHTMLCommon h6:first-child {\n  margin-top: calc(0.5 * var(--jp-content-heading-margin-top));\n}\n\n.jp-RenderedHTMLCommon h1:last-child,\n.jp-RenderedHTMLCommon h2:last-child,\n.jp-RenderedHTMLCommon h3:last-child,\n.jp-RenderedHTMLCommon h4:last-child,\n.jp-RenderedHTMLCommon h5:last-child,\n.jp-RenderedHTMLCommon h6:last-child {\n  margin-bottom: calc(0.5 * var(--jp-content-heading-margin-bottom));\n}\n\n.jp-RenderedHTMLCommon h1 {\n  font-size: var(--jp-content-font-size5);\n}\n\n.jp-RenderedHTMLCommon h2 {\n  font-size: var(--jp-content-font-size4);\n}\n\n.jp-RenderedHTMLCommon h3 {\n  font-size: var(--jp-content-font-size3);\n}\n\n.jp-RenderedHTMLCommon h4 {\n  font-size: var(--jp-content-font-size2);\n}\n\n.jp-RenderedHTMLCommon h5 {\n  font-size: var(--jp-content-font-size1);\n}\n\n.jp-RenderedHTMLCommon h6 {\n  font-size: var(--jp-content-font-size0);\n}\n\n/* Lists */\n\n.jp-RenderedHTMLCommon ul:not(.list-inline),\n.jp-RenderedHTMLCommon ol:not(.list-inline) {\n  padding-left: 2em;\n}\n\n.jp-RenderedHTMLCommon ul {\n  list-style: disc;\n}\n\n.jp-RenderedHTMLCommon ul ul {\n  list-style: square;\n}\n\n.jp-RenderedHTMLCommon ul ul ul {\n  list-style: circle;\n}\n\n.jp-RenderedHTMLCommon ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol ol {\n  list-style: upper-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol {\n  list-style: lower-alpha;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol {\n  list-style: lower-roman;\n}\n\n.jp-RenderedHTMLCommon ol ol ol ol ol {\n  list-style: decimal;\n}\n\n.jp-RenderedHTMLCommon ol,\n.jp-RenderedHTMLCommon ul {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon ul ul,\n.jp-RenderedHTMLCommon ul ol,\n.jp-RenderedHTMLCommon ol ul,\n.jp-RenderedHTMLCommon ol ol {\n  margin-bottom: 0em;\n}\n\n.jp-RenderedHTMLCommon hr {\n  color: var(--jp-border-color2);\n  background-color: var(--jp-border-color1);\n  margin-top: 1em;\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon > pre {\n  margin: 1.5em 2em;\n}\n\n.jp-RenderedHTMLCommon pre,\n.jp-RenderedHTMLCommon code {\n  border: 0;\n  background-color: var(--jp-layout-color0);\n  color: var(--jp-content-font-color1);\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  line-height: var(--jp-code-line-height);\n  padding: 0;\n  white-space: pre-wrap;\n}\n\n.jp-RenderedHTMLCommon :not(pre) > code {\n  background-color: var(--jp-layout-color2);\n  padding: 1px 5px;\n}\n\n/* Tables */\n\n.jp-RenderedHTMLCommon table {\n  border-collapse: collapse;\n  border-spacing: 0;\n  border: none;\n  color: var(--jp-ui-font-color1);\n  font-size: 12px;\n  table-layout: fixed;\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.jp-RenderedHTMLCommon thead {\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  vertical-align: bottom;\n}\n\n.jp-RenderedHTMLCommon td,\n.jp-RenderedHTMLCommon th,\n.jp-RenderedHTMLCommon tr {\n  vertical-align: middle;\n  padding: 0.5em 0.5em;\n  line-height: normal;\n  white-space: normal;\n  max-width: none;\n  border: none;\n}\n\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon td,\n.jp-RenderedMarkdown.jp-RenderedHTMLCommon th {\n  max-width: none;\n}\n\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon td,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon th,\n:not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon tr {\n  text-align: right;\n}\n\n.jp-RenderedHTMLCommon th {\n  font-weight: bold;\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(odd) {\n  background: var(--jp-layout-color0);\n}\n\n.jp-RenderedHTMLCommon tbody tr:nth-child(even) {\n  background: var(--jp-rendermime-table-row-background);\n}\n\n.jp-RenderedHTMLCommon tbody tr:hover {\n  background: var(--jp-rendermime-table-row-hover-background);\n}\n\n.jp-RenderedHTMLCommon table {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon p {\n  text-align: left;\n  margin: 0px;\n}\n\n.jp-RenderedHTMLCommon p {\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon img {\n  -moz-force-broken-image-icon: 1;\n}\n\n/* Restrict to direct children as other images could be nested in other content. */\n.jp-RenderedHTMLCommon > img {\n  display: block;\n  margin-left: 0;\n  margin-right: 0;\n  margin-bottom: 1em;\n}\n\n/* Change color behind transparent images if they need it... */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-light-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-dark-background {\n  background-color: var(--jp-inverse-layout-color1);\n}\n/* ...or leave it untouched if they don't */\n[data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-dark-background {\n}\n[data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-light-background {\n}\n\n.jp-RenderedHTMLCommon img,\n.jp-RenderedImage img,\n.jp-RenderedHTMLCommon svg,\n.jp-RenderedSVG svg {\n  max-width: 100%;\n  height: auto;\n}\n\n.jp-RenderedHTMLCommon img.jp-mod-unconfined,\n.jp-RenderedImage img.jp-mod-unconfined,\n.jp-RenderedHTMLCommon svg.jp-mod-unconfined,\n.jp-RenderedSVG svg.jp-mod-unconfined {\n  max-width: none;\n}\n\n.jp-RenderedHTMLCommon .alert {\n  padding: var(--jp-notebook-padding);\n  border: var(--jp-border-width) solid transparent;\n  border-radius: var(--jp-border-radius);\n  margin-bottom: 1em;\n}\n\n.jp-RenderedHTMLCommon .alert-info {\n  color: var(--jp-info-color0);\n  background-color: var(--jp-info-color3);\n  border-color: var(--jp-info-color2);\n}\n.jp-RenderedHTMLCommon .alert-info hr {\n  border-color: var(--jp-info-color3);\n}\n.jp-RenderedHTMLCommon .alert-info > p:last-child,\n.jp-RenderedHTMLCommon .alert-info > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-warning {\n  color: var(--jp-warn-color0);\n  background-color: var(--jp-warn-color3);\n  border-color: var(--jp-warn-color2);\n}\n.jp-RenderedHTMLCommon .alert-warning hr {\n  border-color: var(--jp-warn-color3);\n}\n.jp-RenderedHTMLCommon .alert-warning > p:last-child,\n.jp-RenderedHTMLCommon .alert-warning > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-success {\n  color: var(--jp-success-color0);\n  background-color: var(--jp-success-color3);\n  border-color: var(--jp-success-color2);\n}\n.jp-RenderedHTMLCommon .alert-success hr {\n  border-color: var(--jp-success-color3);\n}\n.jp-RenderedHTMLCommon .alert-success > p:last-child,\n.jp-RenderedHTMLCommon .alert-success > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon .alert-danger {\n  color: var(--jp-error-color0);\n  background-color: var(--jp-error-color3);\n  border-color: var(--jp-error-color2);\n}\n.jp-RenderedHTMLCommon .alert-danger hr {\n  border-color: var(--jp-error-color3);\n}\n.jp-RenderedHTMLCommon .alert-danger > p:last-child,\n.jp-RenderedHTMLCommon .alert-danger > ul:last-child {\n  margin-bottom: 0;\n}\n\n.jp-RenderedHTMLCommon blockquote {\n  margin: 1em 2em;\n  padding: 0 1em;\n  border-left: 5px solid var(--jp-border-color2);\n}\n\na.jp-InternalAnchorLink {\n  visibility: hidden;\n  margin-left: 8px;\n  color: var(--md-blue-800);\n}\n\nh1:hover .jp-InternalAnchorLink,\nh2:hover .jp-InternalAnchorLink,\nh3:hover .jp-InternalAnchorLink,\nh4:hover .jp-InternalAnchorLink,\nh5:hover .jp-InternalAnchorLink,\nh6:hover .jp-InternalAnchorLink {\n  visibility: visible;\n}\n\n.jp-RenderedHTMLCommon kbd {\n  background-color: var(--jp-rendermime-table-row-background);\n  border: 1px solid var(--jp-border-color0);\n  border-bottom-color: var(--jp-border-color2);\n  border-radius: 3px;\n  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n  display: inline-block;\n  font-size: 0.8em;\n  line-height: 1em;\n  padding: 0.2em 0.5em;\n}\n\n/* Most direct children of .jp-RenderedHTMLCommon have a margin-bottom of 1.0.\n * At the bottom of cells this is a bit too much as there is also spacing\n * between cells. Going all the way to 0 gets too tight between markdown and\n * code cells.\n */\n.jp-RenderedHTMLCommon > *:last-child {\n  margin-bottom: 0.5em;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-MimeDocument {\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-filebrowser-button-height: 28px;\n  --jp-private-filebrowser-button-width: 48px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser {\n  display: flex;\n  flex-direction: column;\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n   * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  border-bottom: none;\n  height: auto;\n  margin: var(--jp-toolbar-header-margin);\n  box-shadow: none;\n}\n\n.jp-BreadCrumbs {\n  flex: 0 0 auto;\n  margin: 8px 12px 8px 12px;\n}\n\n.jp-BreadCrumbs-item {\n  margin: 0px 2px;\n  padding: 0px 2px;\n  border-radius: var(--jp-border-radius);\n  cursor: pointer;\n}\n\n.jp-BreadCrumbs-item:hover {\n  background-color: var(--jp-layout-color2);\n}\n\n.jp-BreadCrumbs-item:first-child {\n  margin-left: 0px;\n}\n\n.jp-BreadCrumbs-item.jp-mod-dropTarget {\n  background-color: var(--jp-brand-color2);\n  opacity: 0.7;\n}\n\n/*-----------------------------------------------------------------------------\n| Buttons\n|----------------------------------------------------------------------------*/\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  padding: 0px;\n  margin: 8px 12px 0px 12px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar {\n  justify-content: flex-start;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-Toolbar-item {\n  flex: 0 0 auto;\n  padding-left: 0px;\n  padding-right: 2px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar .jp-ToolbarButtonComponent {\n  width: 40px;\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent {\n  width: 72px;\n  background: var(--jp-brand-color1);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent:focus-visible {\n  background-color: var(--jp-brand-color0);\n}\n\n.jp-FileBrowser-toolbar.jp-Toolbar\n  .jp-Toolbar-item:first-child\n  .jp-ToolbarButtonComponent\n  .jp-icon3 {\n  fill: white;\n}\n\n/*-----------------------------------------------------------------------------\n| Other styles\n|----------------------------------------------------------------------------*/\n\n.jp-FileDialog.jp-mod-conflict input {\n  color: var(--jp-error-color1);\n}\n\n.jp-FileDialog .jp-new-name-title {\n  margin-top: 12px;\n}\n\n.jp-LastModified-hidden {\n  display: none;\n}\n\n.jp-FileBrowser-filterBox {\n  padding: 0px;\n  flex: 0 0 auto;\n  margin: 8px 12px 0px 12px;\n}\n\n/*-----------------------------------------------------------------------------\n| DirListing\n|----------------------------------------------------------------------------*/\n\n.jp-DirListing {\n  flex: 1 1 auto;\n  display: flex;\n  flex-direction: column;\n  outline: 0;\n}\n\n.jp-DirListing:focus-visible {\n  border: 1px solid var(--jp-brand-color1);\n}\n\n.jp-DirListing-header {\n  flex: 0 0 auto;\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n  border-top: var(--jp-border-width) solid var(--jp-border-color2);\n  border-bottom: var(--jp-border-width) solid var(--jp-border-color1);\n  box-shadow: var(--jp-toolbar-box-shadow);\n  z-index: 2;\n}\n\n.jp-DirListing-headerItem {\n  padding: 4px 12px 2px 12px;\n  font-weight: 500;\n}\n\n.jp-DirListing-headerItem:hover {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-headerItem.jp-id-name {\n  flex: 1 0 84px;\n}\n\n.jp-DirListing-headerItem.jp-id-modified {\n  flex: 0 0 112px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n}\n\n.jp-id-narrow {\n  display: none;\n  flex: 0 0 5px;\n  padding: 4px 4px;\n  border-left: var(--jp-border-width) solid var(--jp-border-color2);\n  text-align: right;\n  color: var(--jp-border-color2);\n}\n\n.jp-DirListing-narrow .jp-id-narrow {\n  display: block;\n}\n\n.jp-DirListing-narrow .jp-id-modified,\n.jp-DirListing-narrow .jp-DirListing-itemModified {\n  display: none;\n}\n\n.jp-DirListing-headerItem.jp-mod-selected {\n  font-weight: 600;\n}\n\n/* increase specificity to override bundled default */\n.jp-DirListing-content {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-DirListing-content mark {\n  color: var(--jp-ui-font-color0);\n  background-color: transparent;\n  font-weight: bold;\n}\n\n.jp-DirListing-content .jp-DirListing-item.jp-mod-selected mark {\n  color: var(--jp-ui-inverse-font-color0);\n}\n\n/* Style the directory listing content when a user drops a file to upload */\n.jp-DirListing.jp-mod-native-drop .jp-DirListing-content {\n  outline: 5px dashed rgba(128, 128, 128, 0.5);\n  outline-offset: -10px;\n  cursor: copy;\n}\n\n.jp-DirListing-item {\n  display: flex;\n  flex-direction: row;\n  padding: 4px 12px;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n.jp-DirListing-item[data-is-dot] {\n  opacity: 75%;\n}\n\n.jp-DirListing-item.jp-mod-selected {\n  color: var(--jp-ui-inverse-font-color1);\n  background: var(--jp-brand-color1);\n}\n\n.jp-DirListing-item.jp-mod-dropTarget {\n  background: var(--jp-brand-color3);\n}\n\n.jp-DirListing-item:hover:not(.jp-mod-selected) {\n  background: var(--jp-layout-color2);\n}\n\n.jp-DirListing-itemIcon {\n  flex: 0 0 20px;\n  margin-right: 4px;\n}\n\n.jp-DirListing-itemText {\n  flex: 1 0 64px;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  user-select: none;\n}\n\n.jp-DirListing-itemModified {\n  flex: 0 0 125px;\n  text-align: right;\n}\n\n.jp-DirListing-editor {\n  flex: 1 0 64px;\n  outline: none;\n  border: none;\n}\n\n.jp-DirListing-item.jp-mod-running .jp-DirListing-itemIcon:before {\n  color: var(--jp-success-color1);\n  content: '\\25CF';\n  font-size: 8px;\n  position: absolute;\n  left: -8px;\n}\n\n.jp-DirListing-item.jp-mod-running.jp-mod-selected\n  .jp-DirListing-itemIcon:before {\n  color: var(--jp-ui-inverse-font-color1);\n}\n\n.jp-DirListing-item.lm-mod-drag-image,\n.jp-DirListing-item.jp-mod-selected.lm-mod-drag-image {\n  font-size: var(--jp-ui-font-size1);\n  padding-left: 4px;\n  margin-left: 4px;\n  width: 160px;\n  background-color: var(--jp-ui-inverse-font-color2);\n  box-shadow: var(--jp-elevation-z2);\n  border-radius: 0px;\n  color: var(--jp-ui-font-color1);\n  transform: translateX(-40%) translateY(-58%);\n}\n\n.jp-DirListing-deadSpace {\n  flex: 1 1 auto;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  overflow: auto;\n  background-color: var(--jp-layout-color1);\n}\n\n.jp-Document {\n  min-width: 120px;\n  min-height: 120px;\n  outline: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n}\n\n/*-----------------------------------------------------------------------------\n| Main OutputArea\n| OutputArea has a list of Outputs\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea {\n  overflow-y: auto;\n}\n\n.jp-OutputArea-child {\n  display: flex;\n  flex-direction: row;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child {\n  flex-direction: column;\n}\n\n.jp-OutputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-outprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n.jp-OutputArea-output {\n  height: auto;\n  overflow: auto;\n  user-select: text;\n  -moz-user-select: text;\n  -webkit-user-select: text;\n  -ms-user-select: text;\n}\n\n.jp-OutputArea-child .jp-OutputArea-output {\n  flex-grow: 1;\n  flex-shrink: 1;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  margin-left: var(--jp-notebook-padding);\n}\n\n/**\n * Isolated output.\n */\n.jp-OutputArea-output.jp-mod-isolated {\n  width: 100%;\n  display: block;\n}\n\n/*\nWhen drag events occur, `p-mod-override-cursor` is added to the body.\nBecause iframes steal all cursor events, the following two rules are necessary\nto suppress pointer events while resize drags are occurring. There may be a\nbetter solution to this problem.\n*/\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated {\n  position: relative;\n}\n\nbody.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: transparent;\n}\n\n/* pre */\n\n.jp-OutputArea-output pre {\n  border: none;\n  margin: 0px;\n  padding: 0px;\n  overflow-x: auto;\n  overflow-y: auto;\n  word-break: break-all;\n  word-wrap: break-word;\n  white-space: pre-wrap;\n}\n\n/* tables */\n\n.jp-OutputArea-output.jp-RenderedHTMLCommon table {\n  margin-left: 0;\n  margin-right: 0;\n}\n\n/* description lists */\n\n.jp-OutputArea-output dl,\n.jp-OutputArea-output dt,\n.jp-OutputArea-output dd {\n  display: block;\n}\n\n.jp-OutputArea-output dl {\n  width: 100%;\n  overflow: hidden;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dt {\n  font-weight: bold;\n  float: left;\n  width: 20%;\n  padding: 0;\n  margin: 0;\n}\n\n.jp-OutputArea-output dd {\n  float: left;\n  width: 80%;\n  padding: 0;\n  margin: 0;\n}\n\n/* Hide the gutter in case of\n *  - nested output areas (e.g. in the case of output widgets)\n *  - mirrored output areas\n */\n.jp-OutputArea .jp-OutputArea .jp-OutputArea-prompt {\n  display: none;\n}\n\n/*-----------------------------------------------------------------------------\n| executeResult is added to any Output-result for the display of the object\n| returned by a cell\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  margin-left: 0px;\n  flex: 1 1 auto;\n}\n\n/* Text output with the Out[] prompt needs a top padding to match the\n * alignment of the Out[] prompt itself.\n */\n.jp-OutputArea-executeResult .jp-RenderedText.jp-OutputArea-output {\n  padding-top: var(--jp-code-padding);\n  border-top: var(--jp-border-width) solid transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| The Stdin output\n|----------------------------------------------------------------------------*/\n\n.jp-OutputArea-stdin {\n  line-height: var(--jp-code-line-height);\n  padding-top: var(--jp-code-padding);\n  display: flex;\n}\n\n.jp-Stdin-prompt {\n  color: var(--jp-content-font-color0);\n  padding-right: var(--jp-code-padding);\n  vertical-align: baseline;\n  flex: 0 0 auto;\n}\n\n.jp-Stdin-input {\n  font-family: var(--jp-code-font-family);\n  font-size: inherit;\n  color: inherit;\n  background-color: inherit;\n  width: 42%;\n  min-width: 200px;\n  /* make sure input baseline aligns with prompt */\n  vertical-align: baseline;\n  /* padding + margin = 0.5em between prompt and cursor */\n  padding: 0em 0.25em;\n  margin: 0em 0.25em;\n  flex: 0 0 70%;\n}\n\n.jp-Stdin-input:focus {\n  box-shadow: none;\n}\n\n/*-----------------------------------------------------------------------------\n| Output Area View\n|----------------------------------------------------------------------------*/\n\n.jp-LinkedOutputView .jp-OutputArea {\n  height: 100%;\n  display: block;\n}\n\n.jp-LinkedOutputView .jp-OutputArea-output:only-child {\n  height: 100%;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n.jp-Collapser {\n  flex: 0 0 var(--jp-cell-collapser-width);\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n  border-radius: var(--jp-border-radius);\n  opacity: 1;\n}\n\n.jp-Collapser-child {\n  display: block;\n  width: 100%;\n  box-sizing: border-box;\n  /* height: 100% doesn't work because the height of its parent is computed from content */\n  position: absolute;\n  top: 0px;\n  bottom: 0px;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Header/Footer\n|----------------------------------------------------------------------------*/\n\n/* Hidden by zero height by default */\n.jp-CellHeader,\n.jp-CellFooter {\n  height: 0px;\n  width: 100%;\n  padding: 0px;\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Input\n|----------------------------------------------------------------------------*/\n\n/* All input areas */\n.jp-InputArea {\n  display: flex;\n  flex-direction: row;\n  overflow: hidden;\n}\n\nbody[data-format='mobile'] .jp-InputArea {\n  flex-direction: column;\n}\n\n.jp-InputArea-editor {\n  flex: 1 1 auto;\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  /* This is the non-active, default styling */\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  border-radius: 0px;\n  background: var(--jp-cell-editor-background);\n}\n\nbody[data-format='mobile'] .jp-InputArea-editor {\n  margin-left: var(--jp-notebook-padding);\n}\n\n.jp-InputPrompt {\n  flex: 0 0 var(--jp-cell-prompt-width);\n  color: var(--jp-cell-inprompt-font-color);\n  font-family: var(--jp-cell-prompt-font-family);\n  padding: var(--jp-code-padding);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  opacity: var(--jp-cell-prompt-opacity);\n  line-height: var(--jp-code-line-height);\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n  opacity: var(--jp-cell-prompt-opacity);\n  /* Right align prompt text, don't wrap to handle large prompt numbers */\n  text-align: right;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  /* Disable text selection */\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\nbody[data-format='mobile'] .jp-InputPrompt {\n  flex: 0 0 auto;\n  text-align: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Placeholder {\n  display: flex;\n  flex-direction: row;\n  flex: 1 1 auto;\n}\n\n.jp-Placeholder-prompt {\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content {\n  flex: 1 1 auto;\n  border: none;\n  background: transparent;\n  height: 20px;\n  box-sizing: border-box;\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon {\n  width: 32px;\n  height: 16px;\n  border: 1px solid transparent;\n  border-radius: var(--jp-border-radius);\n}\n\n.jp-Placeholder-content .jp-MoreHorizIcon:hover {\n  border: 1px solid var(--jp-border-color1);\n  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);\n  background-color: var(--jp-layout-color0);\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-cell-scrolling-output-offset: 5px;\n}\n\n/*-----------------------------------------------------------------------------\n| Cell\n|----------------------------------------------------------------------------*/\n\n.jp-Cell {\n  padding: var(--jp-cell-padding);\n  margin: 0px;\n  border: none;\n  outline: none;\n  background: transparent;\n}\n\n/*-----------------------------------------------------------------------------\n| Common input/output\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-inputWrapper,\n.jp-Cell-outputWrapper {\n  display: flex;\n  flex-direction: row;\n  padding: 0px;\n  margin: 0px;\n  /* Added to reveal the box-shadow on the input and output collapsers. */\n  overflow: visible;\n}\n\n/* Only input/output areas inside cells */\n.jp-Cell-inputArea,\n.jp-Cell-outputArea {\n  flex: 1 1 auto;\n}\n\n/*-----------------------------------------------------------------------------\n| Collapser\n|----------------------------------------------------------------------------*/\n\n/* Make the output collapser disappear when there is not output, but do so\n * in a manner that leaves it in the layout and preserves its width.\n */\n.jp-Cell.jp-mod-noOutputs .jp-Cell-outputCollapser {\n  border: none !important;\n  background: transparent !important;\n}\n\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputCollapser {\n  min-height: var(--jp-cell-collapser-min-height);\n}\n\n/*-----------------------------------------------------------------------------\n| Output\n|----------------------------------------------------------------------------*/\n\n/* Put a space between input and output when there IS output */\n.jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputWrapper {\n  margin-top: 5px;\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-Cell-outputArea {\n  overflow-y: auto;\n  max-height: 200px;\n  box-shadow: inset 0 0 6px 2px rgba(0, 0, 0, 0.3);\n  margin-left: var(--jp-private-cell-scrolling-output-offset);\n}\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  flex: 0 0\n    calc(\n      var(--jp-cell-prompt-width) -\n        var(--jp-private-cell-scrolling-output-offset)\n    );\n}\n\n/*-----------------------------------------------------------------------------\n| CodeCell\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| MarkdownCell\n|----------------------------------------------------------------------------*/\n\n.jp-MarkdownOutput {\n  flex: 1 1 auto;\n  margin-top: 0;\n  margin-bottom: 0;\n  padding-left: var(--jp-code-padding);\n}\n\n.jp-MarkdownOutput.jp-RenderedHTMLCommon {\n  overflow: auto;\n}\n\n.jp-showHiddenCellsButton {\n  margin-left: calc(var(--jp-cell-prompt-width) + 2 * var(--jp-code-padding));\n  margin-top: var(--jp-code-padding);\n  border: 1px solid var(--jp-border-color2);\n  background-color: var(--jp-border-color3) !important;\n  color: var(--jp-content-font-color0) !important;\n}\n\n.jp-showHiddenCellsButton:hover {\n  background-color: var(--jp-border-color2) !important;\n}\n\n.jp-collapseHeadingButton {\n  display: none;\n}\n\n.jp-MarkdownCell:hover .jp-collapseHeadingButton {\n  display: flex;\n  min-height: var(--jp-cell-collapser-min-height);\n  position: absolute;\n  right: 0;\n  top: 0;\n  bottom: 0;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Variables\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n\n/*-----------------------------------------------------------------------------\n| Styles\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel-toolbar {\n  padding: 2px;\n}\n\n.jp-Toolbar-item.jp-Notebook-toolbarCellType .jp-select-wrapper.jp-mod-focused {\n  border: none;\n  box-shadow: none;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown select {\n  height: 24px;\n  font-size: var(--jp-ui-font-size1);\n  line-height: 14px;\n  border-radius: 0;\n  display: block;\n}\n\n.jp-Notebook-toolbarCellTypeDropdown span {\n  top: 5px !important;\n}\n\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Private CSS variables\n|----------------------------------------------------------------------------*/\n\n:root {\n  --jp-private-notebook-dragImage-width: 304px;\n  --jp-private-notebook-dragImage-height: 36px;\n  --jp-private-notebook-selected-color: var(--md-blue-400);\n  --jp-private-notebook-active-color: var(--md-green-400);\n}\n\n/*-----------------------------------------------------------------------------\n| Imports\n|----------------------------------------------------------------------------*/\n\n/*-----------------------------------------------------------------------------\n| Notebook\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookPanel {\n  display: block;\n  height: 100%;\n}\n\n.jp-NotebookPanel.jp-Document {\n  min-width: 240px;\n  min-height: 120px;\n}\n\n.jp-Notebook {\n  padding: var(--jp-notebook-padding);\n  outline: none;\n  overflow: auto;\n  background: var(--jp-layout-color0);\n}\n\n.jp-Notebook.jp-mod-scrollPastEnd::after {\n  display: block;\n  content: '';\n  min-height: var(--jp-notebook-scroll-padding);\n}\n\n.jp-MainAreaWidget-ContainStrict .jp-Notebook * {\n  contain: strict;\n}\n\n.jp-Notebook-render * {\n  contain: none !important;\n}\n\n.jp-Notebook .jp-Cell {\n  overflow: visible;\n}\n\n.jp-Notebook .jp-Cell .jp-InputPrompt {\n  cursor: move;\n  float: left;\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook state related styling\n|\n| The notebook and cells each have states, here are the possibilities:\n|\n| - Notebook\n|   - Command\n|   - Edit\n| - Cell\n|   - None\n|   - Active (only one can be active)\n|   - Selected (the cells actions are applied to)\n|   - Multiselected (when multiple selected, the cursor)\n|   - No outputs\n|----------------------------------------------------------------------------*/\n\n/* Command or edit modes */\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-InputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n.jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-OutputPrompt {\n  opacity: var(--jp-cell-prompt-not-active-opacity);\n  color: var(--jp-cell-prompt-not-active-font-color);\n}\n\n/* cell is active */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser {\n  background: var(--jp-brand-color1);\n}\n\n/* cell is dirty */\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt {\n  color: var(--jp-warn-color1);\n}\n.jp-Notebook .jp-Cell.jp-mod-dirty .jp-InputPrompt:before {\n  color: var(--jp-warn-color1);\n  content: '•';\n}\n\n.jp-Notebook .jp-Cell.jp-mod-active.jp-mod-dirty .jp-Collapser {\n  background: var(--jp-warn-color1);\n}\n\n/* collapser is hovered */\n.jp-Notebook .jp-Cell .jp-Collapser:hover {\n  box-shadow: var(--jp-elevation-z2);\n  background: var(--jp-brand-color1);\n  opacity: var(--jp-cell-collapser-not-active-hover-opacity);\n}\n\n/* cell is active and collapser is hovered */\n.jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser:hover {\n  background: var(--jp-brand-color0);\n  opacity: 1;\n}\n\n/* Command mode */\n\n.jp-Notebook.jp-mod-commandMode .jp-Cell.jp-mod-selected {\n  background: var(--jp-notebook-multiselected-color);\n}\n\n.jp-Notebook.jp-mod-commandMode\n  .jp-Cell.jp-mod-active.jp-mod-selected:not(.jp-mod-multiSelected) {\n  background: transparent;\n}\n\n/* Edit mode */\n\n.jp-Notebook.jp-mod-editMode .jp-Cell.jp-mod-active .jp-InputArea-editor {\n  border: var(--jp-border-width) solid var(--jp-cell-editor-active-border-color);\n  box-shadow: var(--jp-input-box-shadow);\n  background-color: var(--jp-cell-editor-active-background);\n}\n\n/*-----------------------------------------------------------------------------\n| Notebook drag and drop\n|----------------------------------------------------------------------------*/\n\n.jp-Notebook-cell.jp-mod-dropSource {\n  opacity: 0.5;\n}\n\n.jp-Notebook-cell.jp-mod-dropTarget,\n.jp-Notebook.jp-mod-commandMode\n  .jp-Notebook-cell.jp-mod-active.jp-mod-selected.jp-mod-dropTarget {\n  border-top-color: var(--jp-private-notebook-selected-color);\n  border-top-style: solid;\n  border-top-width: 2px;\n}\n\n.jp-dragImage {\n  display: block;\n  flex-direction: row;\n  width: var(--jp-private-notebook-dragImage-width);\n  height: var(--jp-private-notebook-dragImage-height);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background);\n  overflow: visible;\n}\n\n.jp-dragImage-singlePrompt {\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n.jp-dragImage .jp-dragImage-content {\n  flex: 1 1 auto;\n  z-index: 2;\n  font-size: var(--jp-code-font-size);\n  font-family: var(--jp-code-font-family);\n  line-height: var(--jp-code-line-height);\n  padding: var(--jp-code-padding);\n  border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);\n  background: var(--jp-cell-editor-background-color);\n  color: var(--jp-content-font-color3);\n  text-align: left;\n  margin: 4px 4px 4px 0px;\n}\n\n.jp-dragImage .jp-dragImage-prompt {\n  flex: 0 0 auto;\n  min-width: 36px;\n  color: var(--jp-cell-inprompt-font-color);\n  padding: var(--jp-code-padding);\n  padding-left: 12px;\n  font-family: var(--jp-cell-prompt-font-family);\n  letter-spacing: var(--jp-cell-prompt-letter-spacing);\n  line-height: 1.9;\n  font-size: var(--jp-code-font-size);\n  border: var(--jp-border-width) solid transparent;\n}\n\n.jp-dragImage-multipleBack {\n  z-index: -1;\n  position: absolute;\n  height: 32px;\n  width: 300px;\n  top: 8px;\n  left: 8px;\n  background: var(--jp-layout-color2);\n  border: var(--jp-border-width) solid var(--jp-input-border-color);\n  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);\n}\n\n/*-----------------------------------------------------------------------------\n| Cell toolbar\n|----------------------------------------------------------------------------*/\n\n.jp-NotebookTools {\n  display: block;\n  min-width: var(--jp-sidebar-min-width);\n  color: var(--jp-ui-font-color1);\n  background: var(--jp-layout-color1);\n  /* This is needed so that all font sizing of children done in ems is\n    * relative to this base size */\n  font-size: var(--jp-ui-font-size1);\n  overflow: auto;\n}\n\n.jp-NotebookTools-tool {\n  padding: 0px 12px 0 12px;\n}\n\n.jp-ActiveCellTool {\n  padding: 12px;\n  background-color: var(--jp-layout-color1);\n  border-top: none !important;\n}\n\n.jp-ActiveCellTool .jp-InputArea-prompt {\n  flex: 0 0 auto;\n  padding-left: 0px;\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor {\n  flex: 1 1 auto;\n  background: var(--jp-cell-editor-background);\n  border-color: var(--jp-cell-editor-border-color);\n}\n\n.jp-ActiveCellTool .jp-InputArea-editor .CodeMirror {\n  background: transparent;\n}\n\n.jp-MetadataEditorTool {\n  flex-direction: column;\n  padding: 12px 0px 12px 0px;\n}\n\n.jp-RankedPanel > :not(:first-child) {\n  margin-top: 12px;\n}\n\n.jp-KeySelector select.jp-mod-styled {\n  font-size: var(--jp-ui-font-size1);\n  color: var(--jp-ui-font-color0);\n  border: var(--jp-border-width) solid var(--jp-border-color1);\n}\n\n.jp-KeySelector label,\n.jp-MetadataEditorTool label {\n  line-height: 1.4;\n}\n\n.jp-NotebookTools .jp-select-wrapper {\n  margin-top: 4px;\n  margin-bottom: 0px;\n}\n\n.jp-NotebookTools .jp-Collapse {\n  margin-top: 16px;\n}\n\n/*-----------------------------------------------------------------------------\n| Presentation Mode (.jp-mod-presentationMode)\n|----------------------------------------------------------------------------*/\n\n.jp-mod-presentationMode .jp-Notebook {\n  --jp-content-font-size1: var(--jp-content-presentation-font-size1);\n  --jp-code-font-size: var(--jp-code-presentation-font-size);\n}\n\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-InputPrompt,\n.jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-OutputPrompt {\n  flex: 0 0 110px;\n}\n\n/*-----------------------------------------------------------------------------\n| Placeholder\n|----------------------------------------------------------------------------*/\n\n.jp-Cell-Placeholder {\n  padding-left: 55px;\n}\n\n.jp-Cell-Placeholder-wrapper {\n  background: #fff;\n  border: 1px solid;\n  border-color: #e5e6e9 #dfe0e4 #d0d1d5;\n  border-radius: 4px;\n  -webkit-border-radius: 4px;\n  margin: 10px 15px;\n}\n\n.jp-Cell-Placeholder-wrapper-inner {\n  padding: 15px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body {\n  background-repeat: repeat;\n  background-size: 50% auto;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  background: #f6f7f8;\n  background-image: -webkit-linear-gradient(\n    left,\n    #f6f7f8 0%,\n    #edeef1 20%,\n    #f6f7f8 40%,\n    #f6f7f8 100%\n  );\n  background-repeat: no-repeat;\n  background-size: 800px 104px;\n  height: 104px;\n  position: relative;\n}\n\n.jp-Cell-Placeholder-wrapper-body div {\n  position: absolute;\n  right: 15px;\n  left: 15px;\n  top: 15px;\n}\n\ndiv.jp-Cell-Placeholder-h1 {\n  top: 20px;\n  height: 20px;\n  left: 15px;\n  width: 150px;\n}\n\ndiv.jp-Cell-Placeholder-h2 {\n  left: 15px;\n  top: 50px;\n  height: 10px;\n  width: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-1,\ndiv.jp-Cell-Placeholder-content-2,\ndiv.jp-Cell-Placeholder-content-3 {\n  left: 15px;\n  right: 15px;\n  height: 10px;\n}\n\ndiv.jp-Cell-Placeholder-content-1 {\n  top: 100px;\n}\n\ndiv.jp-Cell-Placeholder-content-2 {\n  top: 120px;\n}\n\ndiv.jp-Cell-Placeholder-content-3 {\n  top: 140px;\n}\n\n</style>\n\n    <style type=\"text/css\">\n/*-----------------------------------------------------------------------------\n| Copyright (c) Jupyter Development Team.\n| Distributed under the terms of the Modified BSD License.\n|----------------------------------------------------------------------------*/\n\n/*\nThe following CSS variables define the main, public API for styling JupyterLab.\nThese variables should be used by all plugins wherever possible. In other\nwords, plugins should not define custom colors, sizes, etc unless absolutely\nnecessary. This enables users to change the visual theme of JupyterLab\nby changing these variables.\n\nMany variables appear in an ordered sequence (0,1,2,3). These sequences\nare designed to work well together, so for example, `--jp-border-color1` should\nbe used with `--jp-layout-color1`. The numbers have the following meanings:\n\n* 0: super-primary, reserved for special emphasis\n* 1: primary, most important under normal situations\n* 2: secondary, next most important under normal situations\n* 3: tertiary, next most important under normal situations\n\nThroughout JupyterLab, we are mostly following principles from Google's\nMaterial Design when selecting colors. We are not, however, following\nall of MD as it is not optimized for dense, information rich UIs.\n*/\n\n:root {\n  /* Elevation\n   *\n   * We style box-shadows using Material Design's idea of elevation. These particular numbers are taken from here:\n   *\n   * https://github.com/material-components/material-components-web\n   * https://material-components-web.appspot.com/elevation.html\n   */\n\n  --jp-shadow-base-lightness: 0;\n  --jp-shadow-umbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.2\n  );\n  --jp-shadow-penumbra-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.14\n  );\n  --jp-shadow-ambient-color: rgba(\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    var(--jp-shadow-base-lightness),\n    0.12\n  );\n  --jp-elevation-z0: none;\n  --jp-elevation-z1: 0px 2px 1px -1px var(--jp-shadow-umbra-color),\n    0px 1px 1px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 3px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z2: 0px 3px 1px -2px var(--jp-shadow-umbra-color),\n    0px 2px 2px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 5px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z4: 0px 2px 4px -1px var(--jp-shadow-umbra-color),\n    0px 4px 5px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 10px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z6: 0px 3px 5px -1px var(--jp-shadow-umbra-color),\n    0px 6px 10px 0px var(--jp-shadow-penumbra-color),\n    0px 1px 18px 0px var(--jp-shadow-ambient-color);\n  --jp-elevation-z8: 0px 5px 5px -3px var(--jp-shadow-umbra-color),\n    0px 8px 10px 1px var(--jp-shadow-penumbra-color),\n    0px 3px 14px 2px var(--jp-shadow-ambient-color);\n  --jp-elevation-z12: 0px 7px 8px -4px var(--jp-shadow-umbra-color),\n    0px 12px 17px 2px var(--jp-shadow-penumbra-color),\n    0px 5px 22px 4px var(--jp-shadow-ambient-color);\n  --jp-elevation-z16: 0px 8px 10px -5px var(--jp-shadow-umbra-color),\n    0px 16px 24px 2px var(--jp-shadow-penumbra-color),\n    0px 6px 30px 5px var(--jp-shadow-ambient-color);\n  --jp-elevation-z20: 0px 10px 13px -6px var(--jp-shadow-umbra-color),\n    0px 20px 31px 3px var(--jp-shadow-penumbra-color),\n    0px 8px 38px 7px var(--jp-shadow-ambient-color);\n  --jp-elevation-z24: 0px 11px 15px -7px var(--jp-shadow-umbra-color),\n    0px 24px 38px 3px var(--jp-shadow-penumbra-color),\n    0px 9px 46px 8px var(--jp-shadow-ambient-color);\n\n  /* Borders\n   *\n   * The following variables, specify the visual styling of borders in JupyterLab.\n   */\n\n  --jp-border-width: 1px;\n  --jp-border-color0: var(--md-grey-400);\n  --jp-border-color1: var(--md-grey-400);\n  --jp-border-color2: var(--md-grey-300);\n  --jp-border-color3: var(--md-grey-200);\n  --jp-border-radius: 2px;\n\n  /* UI Fonts\n   *\n   * The UI font CSS variables are used for the typography all of the JupyterLab\n   * user interface elements that are not directly user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-ui-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-ui-font-scale-factor: 1.2;\n  --jp-ui-font-size0: 0.83333em;\n  --jp-ui-font-size1: 13px; /* Base font size */\n  --jp-ui-font-size2: 1.2em;\n  --jp-ui-font-size3: 1.44em;\n\n  --jp-ui-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica,\n    Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';\n\n  /*\n   * Use these font colors against the corresponding main layout colors.\n   * In a light theme, these go from dark to light.\n   */\n\n  /* Defaults use Material Design specification */\n  --jp-ui-font-color0: rgba(0, 0, 0, 1);\n  --jp-ui-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-ui-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-ui-font-color3: rgba(0, 0, 0, 0.38);\n\n  /*\n   * Use these against the brand/accent/warn/error colors.\n   * These will typically go from light to darker, in both a dark and light theme.\n   */\n\n  --jp-ui-inverse-font-color0: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color1: rgba(255, 255, 255, 1);\n  --jp-ui-inverse-font-color2: rgba(255, 255, 255, 0.7);\n  --jp-ui-inverse-font-color3: rgba(255, 255, 255, 0.5);\n\n  /* Content Fonts\n   *\n   * Content font variables are used for typography of user generated content.\n   *\n   * The font sizing here is done assuming that the body font size of --jp-content-font-size1\n   * is applied to a parent element. When children elements, such as headings, are sized\n   * in em all things will be computed relative to that body size.\n   */\n\n  --jp-content-line-height: 1.6;\n  --jp-content-font-scale-factor: 1.2;\n  --jp-content-font-size0: 0.83333em;\n  --jp-content-font-size1: 14px; /* Base font size */\n  --jp-content-font-size2: 1.2em;\n  --jp-content-font-size3: 1.44em;\n  --jp-content-font-size4: 1.728em;\n  --jp-content-font-size5: 2.0736em;\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-content-presentation-font-size1: 17px;\n\n  --jp-content-heading-line-height: 1;\n  --jp-content-heading-margin-top: 1.2em;\n  --jp-content-heading-margin-bottom: 0.8em;\n  --jp-content-heading-font-weight: 500;\n\n  /* Defaults use Material Design specification */\n  --jp-content-font-color0: rgba(0, 0, 0, 1);\n  --jp-content-font-color1: rgba(0, 0, 0, 0.87);\n  --jp-content-font-color2: rgba(0, 0, 0, 0.54);\n  --jp-content-font-color3: rgba(0, 0, 0, 0.38);\n\n  --jp-content-link-color: var(--md-blue-700);\n\n  --jp-content-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',\n    Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',\n    'Segoe UI Symbol';\n\n  /*\n   * Code Fonts\n   *\n   * Code font variables are used for typography of code and other monospaces content.\n   */\n\n  --jp-code-font-size: 13px;\n  --jp-code-line-height: 1.3077; /* 17px for 13px base */\n  --jp-code-padding: 5px; /* 5px for 13px base, codemirror highlighting needs integer px value */\n  --jp-code-font-family-default: Menlo, Consolas, 'DejaVu Sans Mono', monospace;\n  --jp-code-font-family: var(--jp-code-font-family-default);\n\n  /* This gives a magnification of about 125% in presentation mode over normal. */\n  --jp-code-presentation-font-size: 16px;\n\n  /* may need to tweak cursor width if you change font size */\n  --jp-code-cursor-width0: 1.4px;\n  --jp-code-cursor-width1: 2px;\n  --jp-code-cursor-width2: 4px;\n\n  /* Layout\n   *\n   * The following are the main layout colors use in JupyterLab. In a light\n   * theme these would go from light to dark.\n   */\n\n  --jp-layout-color0: white;\n  --jp-layout-color1: white;\n  --jp-layout-color2: var(--md-grey-200);\n  --jp-layout-color3: var(--md-grey-400);\n  --jp-layout-color4: var(--md-grey-600);\n\n  /* Inverse Layout\n   *\n   * The following are the inverse layout colors use in JupyterLab. In a light\n   * theme these would go from dark to light.\n   */\n\n  --jp-inverse-layout-color0: #111111;\n  --jp-inverse-layout-color1: var(--md-grey-900);\n  --jp-inverse-layout-color2: var(--md-grey-800);\n  --jp-inverse-layout-color3: var(--md-grey-700);\n  --jp-inverse-layout-color4: var(--md-grey-600);\n\n  /* Brand/accent */\n\n  --jp-brand-color0: var(--md-blue-900);\n  --jp-brand-color1: var(--md-blue-700);\n  --jp-brand-color2: var(--md-blue-300);\n  --jp-brand-color3: var(--md-blue-100);\n  --jp-brand-color4: var(--md-blue-50);\n\n  --jp-accent-color0: var(--md-green-900);\n  --jp-accent-color1: var(--md-green-700);\n  --jp-accent-color2: var(--md-green-300);\n  --jp-accent-color3: var(--md-green-100);\n\n  /* State colors (warn, error, success, info) */\n\n  --jp-warn-color0: var(--md-orange-900);\n  --jp-warn-color1: var(--md-orange-700);\n  --jp-warn-color2: var(--md-orange-300);\n  --jp-warn-color3: var(--md-orange-100);\n\n  --jp-error-color0: var(--md-red-900);\n  --jp-error-color1: var(--md-red-700);\n  --jp-error-color2: var(--md-red-300);\n  --jp-error-color3: var(--md-red-100);\n\n  --jp-success-color0: var(--md-green-900);\n  --jp-success-color1: var(--md-green-700);\n  --jp-success-color2: var(--md-green-300);\n  --jp-success-color3: var(--md-green-100);\n\n  --jp-info-color0: var(--md-cyan-900);\n  --jp-info-color1: var(--md-cyan-700);\n  --jp-info-color2: var(--md-cyan-300);\n  --jp-info-color3: var(--md-cyan-100);\n\n  /* Cell specific styles */\n\n  --jp-cell-padding: 5px;\n\n  --jp-cell-collapser-width: 8px;\n  --jp-cell-collapser-min-height: 20px;\n  --jp-cell-collapser-not-active-hover-opacity: 0.6;\n\n  --jp-cell-editor-background: var(--md-grey-100);\n  --jp-cell-editor-border-color: var(--md-grey-300);\n  --jp-cell-editor-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-cell-editor-active-background: var(--jp-layout-color0);\n  --jp-cell-editor-active-border-color: var(--jp-brand-color1);\n\n  --jp-cell-prompt-width: 64px;\n  --jp-cell-prompt-font-family: var(--jp-code-font-family-default);\n  --jp-cell-prompt-letter-spacing: 0px;\n  --jp-cell-prompt-opacity: 1;\n  --jp-cell-prompt-not-active-opacity: 0.5;\n  --jp-cell-prompt-not-active-font-color: var(--md-grey-700);\n  /* A custom blend of MD grey and blue 600\n   * See https://meyerweb.com/eric/tools/color-blend/#546E7A:1E88E5:5:hex */\n  --jp-cell-inprompt-font-color: #307fc1;\n  /* A custom blend of MD grey and orange 600\n   * https://meyerweb.com/eric/tools/color-blend/#546E7A:F4511E:5:hex */\n  --jp-cell-outprompt-font-color: #bf5b3d;\n\n  /* Notebook specific styles */\n\n  --jp-notebook-padding: 10px;\n  --jp-notebook-select-background: var(--jp-layout-color1);\n  --jp-notebook-multiselected-color: var(--md-blue-50);\n\n  /* The scroll padding is calculated to fill enough space at the bottom of the\n  notebook to show one single-line cell (with appropriate padding) at the top\n  when the notebook is scrolled all the way to the bottom. We also subtract one\n  pixel so that no scrollbar appears if we have just one single-line cell in the\n  notebook. This padding is to enable a 'scroll past end' feature in a notebook.\n  */\n  --jp-notebook-scroll-padding: calc(\n    100% - var(--jp-code-font-size) * var(--jp-code-line-height) -\n      var(--jp-code-padding) - var(--jp-cell-padding) - 1px\n  );\n\n  /* Rendermime styles */\n\n  --jp-rendermime-error-background: #fdd;\n  --jp-rendermime-table-row-background: var(--md-grey-100);\n  --jp-rendermime-table-row-hover-background: var(--md-light-blue-50);\n\n  /* Dialog specific styles */\n\n  --jp-dialog-background: rgba(0, 0, 0, 0.25);\n\n  /* Console specific styles */\n\n  --jp-console-padding: 10px;\n\n  /* Toolbar specific styles */\n\n  --jp-toolbar-border-color: var(--jp-border-color1);\n  --jp-toolbar-micro-height: 8px;\n  --jp-toolbar-background: var(--jp-layout-color1);\n  --jp-toolbar-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.24);\n  --jp-toolbar-header-margin: 4px 4px 0px 4px;\n  --jp-toolbar-active-background: var(--md-grey-300);\n\n  /* Statusbar specific styles */\n\n  --jp-statusbar-height: 24px;\n\n  /* Input field styles */\n\n  --jp-input-box-shadow: inset 0 0 2px var(--md-blue-300);\n  --jp-input-active-background: var(--jp-layout-color1);\n  --jp-input-hover-background: var(--jp-layout-color1);\n  --jp-input-background: var(--md-grey-100);\n  --jp-input-border-color: var(--jp-border-color1);\n  --jp-input-active-border-color: var(--jp-brand-color1);\n  --jp-input-active-box-shadow-color: rgba(19, 124, 189, 0.3);\n\n  /* General editor styles */\n\n  --jp-editor-selected-background: #d9d9d9;\n  --jp-editor-selected-focused-background: #d7d4f0;\n  --jp-editor-cursor-color: var(--jp-ui-font-color0);\n\n  /* Code mirror specific styles */\n\n  --jp-mirror-editor-keyword-color: #008000;\n  --jp-mirror-editor-atom-color: #88f;\n  --jp-mirror-editor-number-color: #080;\n  --jp-mirror-editor-def-color: #00f;\n  --jp-mirror-editor-variable-color: var(--md-grey-900);\n  --jp-mirror-editor-variable-2-color: #05a;\n  --jp-mirror-editor-variable-3-color: #085;\n  --jp-mirror-editor-punctuation-color: #05a;\n  --jp-mirror-editor-property-color: #05a;\n  --jp-mirror-editor-operator-color: #aa22ff;\n  --jp-mirror-editor-comment-color: #408080;\n  --jp-mirror-editor-string-color: #ba2121;\n  --jp-mirror-editor-string-2-color: #708;\n  --jp-mirror-editor-meta-color: #aa22ff;\n  --jp-mirror-editor-qualifier-color: #555;\n  --jp-mirror-editor-builtin-color: #008000;\n  --jp-mirror-editor-bracket-color: #997;\n  --jp-mirror-editor-tag-color: #170;\n  --jp-mirror-editor-attribute-color: #00c;\n  --jp-mirror-editor-header-color: blue;\n  --jp-mirror-editor-quote-color: #090;\n  --jp-mirror-editor-link-color: #00c;\n  --jp-mirror-editor-error-color: #f00;\n  --jp-mirror-editor-hr-color: #999;\n\n  /* Vega extension styles */\n\n  --jp-vega-background: white;\n\n  /* Sidebar-related styles */\n\n  --jp-sidebar-min-width: 250px;\n\n  /* Search-related styles */\n\n  --jp-search-toggle-off-opacity: 0.5;\n  --jp-search-toggle-hover-opacity: 0.8;\n  --jp-search-toggle-on-opacity: 1;\n  --jp-search-selected-match-background-color: rgb(245, 200, 0);\n  --jp-search-selected-match-color: black;\n  --jp-search-unselected-match-background-color: var(\n    --jp-inverse-layout-color0\n  );\n  --jp-search-unselected-match-color: var(--jp-ui-inverse-font-color0);\n\n  /* Icon colors that work well with light or dark backgrounds */\n  --jp-icon-contrast-color0: var(--md-purple-600);\n  --jp-icon-contrast-color1: var(--md-green-600);\n  --jp-icon-contrast-color2: var(--md-pink-600);\n  --jp-icon-contrast-color3: var(--md-blue-600);\n}\n</style>\n\n<style type=\"text/css\">\n/* Force rendering true colors when outputing to pdf */\n* {\n  -webkit-print-color-adjust: exact;\n}\n\n/* Misc */\na.anchor-link {\n  display: none;\n}\n\n/* Input area styling */\n.jp-InputArea {\n  overflow: hidden;\n}\n\n.jp-InputArea-editor {\n  overflow: hidden;\n}\n\n.CodeMirror.cm-s-jupyter .highlight pre {\n/* weird, but --jp-code-padding defined to be 5px but 4px horizontal padding is hardcoded for pre.CodeMirror-line */\n  padding: var(--jp-code-padding) 4px;\n  margin: 0;\n\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit;\n  color: inherit;\n\n}\n\n.jp-OutputArea-output pre {\n  line-height: inherit;\n  font-family: inherit;\n}\n\n.jp-RenderedText pre {\n  color: var(--jp-content-font-color1);\n  font-size: var(--jp-code-font-size);\n}\n\n/* Using table instead of flexbox so that we can use break-inside property */\n/* CSS rules under this comment should not be required anymore after we move to the JupyterLab 4.0 CSS */\n\n\n.jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {\n  min-width: calc(\n    var(--jp-cell-prompt-width) - var(--jp-private-cell-scrolling-output-offset)\n  );\n}\n\n.jp-OutputArea-child {\n  display: table;\n  width: 100%;\n}\n\n.jp-OutputPrompt {\n  display: table-cell;\n  vertical-align: top;\n  min-width: var(--jp-cell-prompt-width);\n}\n\nbody[data-format='mobile'] .jp-OutputPrompt {\n  display: table-row;\n}\n\n.jp-OutputArea-output {\n  display: table-cell;\n  width: 100%;\n}\n\nbody[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {\n  display: table-row;\n}\n\n.jp-OutputArea-output.jp-OutputArea-executeResult {\n  width: 100%;\n}\n\n/* Hiding the collapser by default */\n.jp-Collapser {\n  display: none;\n}\n\n@page {\n    margin: 0.5in; /* Margin for each printed piece of paper */\n}\n\n@media print {\n  .jp-Cell-inputWrapper,\n  .jp-Cell-outputWrapper {\n    display: block;\n  }\n\n  .jp-OutputArea-child {\n    break-inside: avoid-page;\n  }\n}\n</style>\n\n<!-- Load mathjax -->\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/latest.js?config=TeX-AMS_CHTML-full,Safe\"> </script>\n    <!-- MathJax configuration -->\n    <script type=\"text/x-mathjax-config\">\n    init_mathjax = function() {\n        if (window.MathJax) {\n        // MathJax loaded\n            MathJax.Hub.Config({\n                TeX: {\n                    equationNumbers: {\n                    autoNumber: \"AMS\",\n                    useLabelIds: true\n                    }\n                },\n                tex2jax: {\n                    inlineMath: [ ['$','$'], [\"\\\\(\",\"\\\\)\"] ],\n                    displayMath: [ ['$$','$$'], [\"\\\\[\",\"\\\\]\"] ],\n                    processEscapes: true,\n                    processEnvironments: true\n                },\n                displayAlign: 'center',\n                CommonHTML: {\n                    linebreaks: {\n                    automatic: true\n                    }\n                }\n            });\n\n            MathJax.Hub.Queue([\"Typeset\", MathJax.Hub]);\n        }\n    }\n    init_mathjax();\n    </script>\n    <!-- End of mathjax configuration --></head>\n<body class=\"jp-Notebook\" data-jp-theme-light=\"true\" data-jp-theme-name=\"JupyterLab Light\">\n\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h1 id=\"Probabilistic-Streaming\">Probabilistic Streaming<a class=\"anchor-link\" href=\"#Probabilistic-Streaming\">&#182;</a></h1><p>Streaming libraries in Haskell exist to represent streams of data where each incoming datapoint may involve a side-effect.</p>\n<p>In this notebook, we'll use the <code>pipes</code> library, which is not the fastest streaming library, but is simple and easy to use.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[1]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">ImportQualifiedPost</span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">FlexibleContexts</span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">BlockArguments</span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">TupleSections</span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">FlexibleContexts</span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">OverloadedStrings</span>\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">LambdaCase</span>\n\n\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Class</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Enumerator</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Weighted</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Sampler.Strict</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Density.Free</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Population</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Sequential.Coroutine</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad.Bayes.Inference.SMC</span>\n\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Graphics.Vega.VegaLite</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">VL</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">IHaskell.Display.Hvega</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">vlShow</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Applicative</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Data.Text</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">T</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Pipes</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Producer</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">&gt;-&gt;</span><span class=\"p\">))</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Pipes</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">P</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Pipes.Prelude</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">unfoldr</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"k\">qualified</span><span class=\"w\"> </span><span class=\"nn\">Pipes.Prelude</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">P</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Ord</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.List</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Monad</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Control.Arrow</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">first</span><span class=\"p\">)</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Numeric.Log</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Vector</span><span class=\"w\"> </span><span class=\"n\">qualified</span><span class=\"w\"> </span><span class=\"n\">as</span><span class=\"w\"> </span><span class=\"kt\">V</span>\n\n<span class=\"kt\">:</span><span class=\"n\">e</span><span class=\"w\"> </span><span class=\"kt\">PackageImports</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"s\">&quot;matrix&quot;</span><span class=\"w\"> </span><span class=\"nn\">Data.Matrix</span><span class=\"w\"> </span><span class=\"k\">hiding</span><span class=\"w\"> </span><span class=\"p\">((</span><span class=\"o\">!</span><span class=\"p\">))</span>\n<span class=\"kr\">import</span><span class=\"w\"> </span><span class=\"nn\">Data.Vector.Generic</span><span class=\"w\"> </span><span class=\"k\">as</span><span class=\"w\"> </span><span class=\"n\">VG</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">Vector</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">map</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">mapM</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">null</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">sum</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">!</span><span class=\"p\">))</span>\n\n<span class=\"kt\">:</span><span class=\"n\">l</span><span class=\"w\"> </span><span class=\"o\">../</span><span class=\"n\">plotting</span><span class=\"o\">.</span><span class=\"n\">hs</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>A <code>Producer</code> represents a stream of data, and a <code>Pipe</code> maps one stream to another. Both are parametrized by a monad <code>m</code>, which in our case will be <code>MonadDistribution m =&gt; m</code>.</p>\n<p>For example, a random walk with a Gaussian <code>transition</code> kernel can be written as follows:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[2]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- how to move from one latent state to the next</span>\n<span class=\"nf\">transition</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span>\n<span class=\"nf\">transition</span><span class=\"w\"> </span><span class=\"n\">vector</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">mvNormal</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"o\">+</span><span class=\"mf\">0.5</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">vector</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">fromLists</span><span class=\"w\"> </span><span class=\"p\">[[</span><span class=\"mi\">1</span><span class=\"p\">,</span><span class=\"mi\">0</span><span class=\"p\">],</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"mi\">1</span><span class=\"p\">]])</span>\n<span class=\"w\">    </span><span class=\"c1\">-- (normal (x+0.5) 1) (normal (y+0.5) 1)</span>\n\n<span class=\"c1\">-- a Markovian random walk starting at (0,0), with latentTransition as the kernel</span>\n<span class=\"c1\">-- a Producer is an infinite stream of values</span>\n<span class=\"nf\">prior</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">Producer</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"n\">r</span>\n<span class=\"nf\">prior</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">flip</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">unfoldr</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"n\">fromList</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"mi\">0</span><span class=\"p\">])</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"nf\">\\</span><span class=\"n\">s</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span>\n<span class=\"w\">    </span><span class=\"kt\">Right</span><span class=\"w\"> </span><span class=\"o\">&lt;$&gt;</span><span class=\"w\"> </span><span class=\"kr\">do</span>\n<span class=\"w\">        </span><span class=\"n\">new</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">transition</span><span class=\"w\"> </span><span class=\"n\">s</span>\n<span class=\"w\">        </span><span class=\"n\">return</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">new</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">new</span><span class=\"p\">)</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>It's straightforward to take the first <code>n</code> steps of this infinite stream, and convert it into a distribution over finite list, from which we can then sample:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[3]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- convert the stream to a list, taking only the first 100 steps</span>\n<span class=\"nf\">toList</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">Monad</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"kt\">Producer</span><span class=\"w\"> </span><span class=\"n\">a</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"nb\">()</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"n\">a</span><span class=\"p\">]</span>\n<span class=\"nf\">toList</span><span class=\"w\"> </span><span class=\"n\">prod</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">toListM</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">prod</span><span class=\"w\"> </span><span class=\"o\">&gt;-&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">take</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"p\">)</span>\n\n<span class=\"nf\">trueVectors</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">toList</span><span class=\"w\"> </span><span class=\"n\">prior</span>\n\n<span class=\"nf\">plot</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span>\n<span class=\"w\">        </span><span class=\"p\">(</span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"n\">v</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">v</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.!</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">v</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.!</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">trueVectors</span><span class=\"p\">)</span><span class=\"w\"> </span>\n<span class=\"w\">        </span><span class=\"p\">(</span><span class=\"n\">replicate</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"s\">&quot;Latent&quot;</span><span class=\"p\">)))</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n<div class=\"jp-OutputArea-child\">\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>We can also produce a stream of observations from <code>prior</code>, each a noisy perturbation of the datapoint in question, by using a <code>Pipe</code>:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[4]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">observationModel</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">(`</span><span class=\"n\">mvNormal</span><span class=\"p\">`</span><span class=\"w\"> </span><span class=\"n\">fromLists</span><span class=\"w\"> </span><span class=\"p\">[[</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"mi\">0</span><span class=\"p\">],[</span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"mi\">20</span><span class=\"p\">]])</span>\n\n<span class=\"nf\">observations</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadDistribution</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"kt\">Pipe</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"nb\">()</span>\n<span class=\"nf\">observations</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">mapM</span><span class=\"w\"> </span><span class=\"n\">observationModel</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[5]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">observedVectors</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">toList</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">each</span><span class=\"w\"> </span><span class=\"n\">trueVectors</span><span class=\"w\"> </span><span class=\"o\">&gt;-&gt;</span><span class=\"w\"> </span><span class=\"n\">observations</span>\n\n\n<span class=\"nf\">plot</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span>\n<span class=\"w\">        </span><span class=\"p\">(</span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"n\">v</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">v</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.!</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">v</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.!</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">trueVectors</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">observedVectors</span><span class=\"p\">)</span><span class=\"w\"> </span>\n<span class=\"w\">        </span><span class=\"p\">(</span><span class=\"n\">replicate</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"s\">&quot;Latent&quot;</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">replicate</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"s\">&quot;Observed&quot;</span><span class=\"p\">)))</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n<div class=\"jp-OutputArea-child\">\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<h2 id=\"Conditioning\">Conditioning<a class=\"anchor-link\" href=\"#Conditioning\">&#182;</a></h2><p>But most interestingly, we can update our prior, based on a stream of incoming observations. <code>conditioning</code> below takes two <code>Producer</code>s, the stream corresponding to the prior (see <code>prior</code> above) and the stream corresponding to the observations (<code>P.each observedVectors</code>, where <code>P.each</code> lifts a list to a stream), and a likelihood, and returns a posterior, also expressed as a stream.</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs  \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[6]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"c1\">-- take the original random walk as a prior and condition on the observations</span>\n<span class=\"c1\">-- to obtain a posterior random walk</span>\n<span class=\"nf\">conditioning</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadMeasure</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"kt\">Producer</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"nb\">()</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"kt\">Producer</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"nb\">()</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"p\">((</span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"nb\">()</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span>\n<span class=\"w\">    </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"kt\">Producer</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"nb\">()</span>\n<span class=\"nf\">conditioning</span><span class=\"w\"> </span><span class=\"n\">prior</span><span class=\"w\"> </span><span class=\"n\">observations</span><span class=\"w\"> </span><span class=\"n\">observationModel</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">zip</span><span class=\"w\"> </span><span class=\"n\">prior</span><span class=\"w\"> </span><span class=\"n\">observations</span>\n<span class=\"w\">    </span><span class=\"o\">&gt;-&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">chain</span><span class=\"w\"> </span><span class=\"n\">observationModel</span>\n<span class=\"w\">    </span><span class=\"o\">&gt;-&gt;</span><span class=\"w\"> </span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">map</span><span class=\"w\"> </span><span class=\"n\">fst</span><span class=\"w\"> </span>\n\n\n<span class=\"nf\">posterior</span><span class=\"w\"> </span><span class=\"ow\">::</span><span class=\"w\"> </span><span class=\"kt\">MonadMeasure</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"ow\">=&gt;</span><span class=\"w\"> </span><span class=\"n\">m</span><span class=\"w\"> </span><span class=\"p\">[</span><span class=\"kt\">V</span><span class=\"o\">.</span><span class=\"kt\">Vector</span><span class=\"w\"> </span><span class=\"kt\">Double</span><span class=\"p\">]</span>\n<span class=\"nf\">posterior</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">toList</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">conditioning</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"n\">prior</span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"kt\">P</span><span class=\"o\">.</span><span class=\"n\">each</span><span class=\"w\"> </span><span class=\"n\">observedVectors</span><span class=\"p\">)</span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"p\">(</span><span class=\"n\">v</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">v&#39;</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"kr\">do</span>\n<span class=\"w\">        </span><span class=\"n\">prediction</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">observationModel</span><span class=\"w\"> </span><span class=\"n\">v</span>\n<span class=\"w\">        </span><span class=\"kr\">let</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">x</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">x&#39;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">y&#39;</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">prediction</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.!</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">prediction</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.!</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">v&#39;</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.!</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">v&#39;</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.!</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">)</span>\n<span class=\"w\">        </span><span class=\"n\">factor</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">normalPdf</span><span class=\"w\"> </span><span class=\"n\">x</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"w\"> </span><span class=\"n\">x&#39;</span><span class=\"w\"> </span><span class=\"o\">*</span><span class=\"w\"> </span><span class=\"n\">normalPdf</span><span class=\"w\"> </span><span class=\"n\">y</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"w\"> </span><span class=\"n\">y&#39;</span><span class=\"w\"> </span><span class=\"p\">)</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"jp-Cell jp-MarkdownCell jp-Notebook-cell\">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\"><div class=\"jp-InputPrompt jp-InputArea-prompt\">\n</div><div class=\"jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput \" data-mime-type=\"text/markdown\">\n<p>We can then use an inference method of our liking:</p>\n\n</div>\n</div>\n</div>\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[7]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">particles</span><span class=\"w\"> </span><span class=\"ow\">&lt;-</span><span class=\"w\"> </span><span class=\"n\">sampleIOfixed</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">runPopulationT</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"n\">smc</span><span class=\"w\"> </span><span class=\"kt\">SMCConfig</span><span class=\"w\"> </span><span class=\"p\">{</span>\n<span class=\"w\">        </span><span class=\"n\">numSteps</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"p\">,</span><span class=\"w\"> </span>\n<span class=\"w\">        </span><span class=\"n\">numParticles</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"mi\">1000</span><span class=\"p\">,</span><span class=\"w\"> </span>\n<span class=\"w\">        </span><span class=\"n\">resampler</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">resampleMultinomial</span><span class=\"p\">}</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"n\">posterior</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n<div class=\"jp-OutputArea-child\">\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedText jp-OutputArea-output \" data-mime-type=\"text/plain\">\n<pre></pre>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div><div class=\"jp-Cell jp-CodeCell jp-Notebook-cell   \">\n<div class=\"jp-Cell-inputWrapper\">\n<div class=\"jp-Collapser jp-InputCollapser jp-Cell-inputCollapser\">\n</div>\n<div class=\"jp-InputArea jp-Cell-inputArea\">\n<div class=\"jp-InputPrompt jp-InputArea-prompt\">In&nbsp;[8]:</div>\n<div class=\"jp-CodeMirrorEditor jp-Editor jp-InputArea-editor\" data-type=\"inline\">\n     <div class=\"CodeMirror cm-s-jupyter\">\n<div class=\" highlight hl-Haskell\"><pre><span></span><span class=\"nf\">inferredVectors</span><span class=\"w\"> </span><span class=\"ow\">=</span><span class=\"w\"> </span><span class=\"n\">fst</span><span class=\"w\"> </span><span class=\"o\">=&lt;&lt;</span><span class=\"w\"> </span><span class=\"n\">particles</span>\n\n\n<span class=\"nf\">plot</span><span class=\"w\"> </span>\n<span class=\"w\">    </span><span class=\"p\">(</span><span class=\"n\">zip</span><span class=\"w\"> </span>\n<span class=\"w\">        </span><span class=\"p\">(</span><span class=\"n\">fmap</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"nf\">\\</span><span class=\"n\">v</span><span class=\"w\"> </span><span class=\"ow\">-&gt;</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"n\">v</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.!</span><span class=\"w\"> </span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">v</span><span class=\"w\"> </span><span class=\"kt\">V</span><span class=\"o\">.!</span><span class=\"w\"> </span><span class=\"mi\">1</span><span class=\"p\">))</span><span class=\"w\"> </span><span class=\"o\">$</span><span class=\"w\"> </span><span class=\"n\">trueVectors</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">inferredVectors</span><span class=\"p\">)</span><span class=\"w\"> </span>\n<span class=\"w\">        </span><span class=\"p\">(</span><span class=\"n\">replicate</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"s\">&quot;True&quot;</span><span class=\"p\">)</span><span class=\"w\"> </span><span class=\"o\">&lt;&gt;</span><span class=\"w\"> </span><span class=\"n\">replicate</span><span class=\"w\"> </span><span class=\"mi\">1000</span><span class=\"w\"> </span><span class=\"p\">(</span><span class=\"kt\">T</span><span class=\"o\">.</span><span class=\"n\">pack</span><span class=\"w\"> </span><span class=\"s\">&quot;Inferred&quot;</span><span class=\"p\">)))</span>\n</pre></div>\n\n     </div>\n</div>\n</div>\n</div>\n\n<div class=\"jp-Cell-outputWrapper\">\n<div class=\"jp-Collapser jp-OutputCollapser jp-Cell-outputCollapser\">\n</div>\n\n\n<div class=\"jp-OutputArea jp-Cell-outputArea\">\n<div class=\"jp-OutputArea-child\">\n    \n    <div class=\"jp-OutputPrompt jp-OutputArea-prompt\"></div>\n\n\n\n\n<div class=\"jp-RenderedImage jp-OutputArea-output \">\n<img src=\"data:image/png;base64,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\"\nclass=\"\n\"\n>\n</div>\n\n</div>\n\n</div>\n\n</div>\n\n</div>\n</body>\n\n\n\n\n\n\n\n</html>\n"
  },
  {
    "path": "docs/docs/probprog.md",
    "content": "# User Guide\n\nProbabilistic programming is all about being able to write probabilistic models as programs. For instance, here is a Bayesian linear regression model, which we would write equationally as:\n\n\n$$\n\\beta \\sim \\operatorname{normal}(0, 2)\n$$\n\n$$\n\\alpha \\sim \\operatorname{normal}(0, 2)\n$$\n\n$$\n\\sigma^2 \\sim \\operatorname{gamma}(4, 4)\n$$\n\n$$\n\\epsilon_{n} \\sim \\operatorname{normal}(0, \\sigma)\n$$\n\n$$\ny_{n}=\\alpha+\\beta x_{n}+\\epsilon_{n}\n$$\n\nbut in code as:\n\n```haskell\nparamPriorRegression :: Distribution (Double, Double, Double)\nparamPriorRegression = do\n    slope <- normal 0 2\n    intercept <- normal 0 2\n    noise <- gamma 4 4\n    return (slope, intercept, noise)\n\nregression :: Kernel [(Double, Double)] (Double, Double, Double)\nregression xsys = do\n    (slope, intercept, noise) <- paramPriorRegression\n    forM_ xsys \\(x, y) -> factor $ normalPdf (slope * x + intercept) (sqrt noise) y\n    return (slope, intercept, noise)\n```\n\n`regression` takes observations (a list of pairs of x and y values), and using the prior expressed by `paramPriorRegression`, returns the posterior conditioned on the observations.\n\nThis is the *model*. To perform *inference* , suppose we have a data set `xsys` like:\n\n![](images/priorpred.png)\n\nTo run the model\n\n```haskell\nmhRunsRegression = sampler\n  $ mcmc MCMCConfig\n      {numMCMCSteps = 1500,\n      proposal = SingleSiteMH,\n      numBurnIn = 500}\n  (regression xsys)\n```\n\nThis yields 1000 samples from an MCMC walk using an MH kernel. `mh n` produces a distribution over chains of length `n`, along with the probability of that chain. Sampling a chain and plotting its final state gives:\n\n![](/images/regress.png)\n\nMonad-bayes provides a variety of MCMC and SMC methods, and methods arising from the composition of the two.\n\n\n<!-- `sprinkler` is a distribution over values for the Boolean `rain` variable given the likelihood and observation specified above. `enumerator` is a function which performs **inference**: it takes the abstract distribution `sprinkler` and calculates something concrete - in this case, the probability mass function.\n\n`sprinkler` is specified as a program that has randomness (e.g. `bernoulli`) and scoring (e.g. `condition`). Hence the term *probabilistic programming*. The Grand Vision is that you write your statistical model as a probabilistic program and then choose or construct a method to perform inference in a statistically and computationally efficient way. -->\n\n\n## Resources\n\nOther probabilistic programming languages with fairly similar APIs include WebPPL and Gen. This cognitive-science oriented introduction to [WebPPL](https://probmods.org/) is an excellent resource for learning about probabilistic programming. The [tutorials for Gen](https://www.gen.dev/tutorials/) are also very good, particularly for learning about traces.\n\n## Specifying distributions\n\nA distribution in monad-bayes over a set $X$, is of type:\n\n```haskell\nMonadMeasure m => m X\n```\n\nFor beginner friendliness, a synonym `type Measure a = forall m . MonadDistribution m => m a` is provided (as well as `Distribution` shown above, for normalized distributions, and `Kernel` for functions into distributions).\n\nMonad-bayes provides standard distributions, such as\n\n```haskell\nrandom :: Distribution Double\n```\n\nwhich is distributed uniformly over $[0,1]$.\n\nThe full set is listed at https://hackage.haskell.org/package/monad-bayes-0.1.1.0/docs/Control-Monad-Bayes-Class.html\n\nNote that these primitives already allows us to construct quite exotic distributions, like the uniform distribution over `(+) :: Int -> Int -> Int` and `(-) :: Int -> Int -> Int`:\n\n```haskell\ndistributionOverFunctions :: Distribution (Int -> Int -> Int)\ndistributionOverFunctions = uniformD [(+), (-)]\n```\n\n## Constructing distributions as programs\n\nmonad-bayes also lets us construct new distributions out of these. `MonadMeasure m` implies `Monad m` and in turn `Functor m`, so we can do the following:\n\n```haskell\nfmap (> 0.5) random :: MonadMeasure m => m Bool\n```\n\nThis is the uniform distribution over $(0.5, 1]$.\n\nAs an important special case, if `x :: MonadMeasure m => m (a,b)` is a joint distribution over two variables, then `fmap fst a :: MonadMeasure m => m a` **marginalizes** out the second variable. That is to say, `fmap fst a` is the distribution $p(a)$, where $p(a) = \\int_b p(a,b)$.\n\nThe above example use only the functor instance for `m`, but we also have the monad instance, as used in:\n\n```haskell\nexample :: MonadMeasure m => m Double\nexample = bernoulli 0.5 >>= (\\x -> if x then random else normal 0 1)\n```\n\nIt's easiest to understand this distribution as a probabilistic program: it's the distribution you get by first sampling from `bernoulli 0.5`, then checking the result. If the result is `True`, then sample from `random`, else from `normal 0 1`. As a distribution, this has a PDF:\n\n$$\nf(x) = 1[0\\leq x \\leq 1]*0.5  + \\mathcal{N}(0,1)(x)*0.5\n$$\n\n\n\n\nEquivalently, we could write this in do-notation as:\n\n```haskell\nexample :: MonadMeasure m => m Double\nexample = do\n  bool <- bernoulli 0.5\n  if bool then random else normal 0 1\n```\n\n**A technical note**: it is often tempting to read the line `bool <- bernoulli 0.5` as saying \"take a sample from `bernoulli 0.5`. But although we'll see below that `example` can be interpreted as a sampler, there are many other interpretations, not least as a mathematical specification of a particular distribution.\n\nThat said, it is often useful to think of probabilistic programs as specifying distributions over **program executation traces**. For example, one trace of `example` as defined above is (informally): `{bernoulli 0.5 : True, random : 0.7}`.\n\n## Hard and soft conditioning\n\nmonad-bayes provides a function `score :: MonadMeasure m => Log Double -> m ()`. (**Note**: `Log Double` is a wrapper for `Double` which stores doubles as their logarithm, and does multiplication by addition of logarithms.)\n\n\n```haskell\nexample :: MonadMeasure m => m Double\nexample = do\n  bool <- bernoulli 0.5\n  number <- if bool then random else normal 0 1\n  score number\n  return bool\n```\n\nIt's easiest to understand this in terms of the \"program execution trace\" perspective described above. What the score statement does is to multiple every trace by the value of `number` in that particular trace.\n\n`condition` in then defined as follows:\n\n```haskell\ncondition :: MonadMeasure m => Bool -> m ()\ncondition b = score $ if b then 1 else 0\n```\nSo `condition b` throws away every trace in which `b` is False, and keeps all traces in which `b` is True. For example:\n\n```haskell\nexample :: MonadMeasure m => m Int\nexample = do\n  n <- poisson 0.5\n  condition (n%2 == 0)\n  return n\n```\n\nThis describes a Poisson distribution in which all even values of the random variable are marginalized out.\n\n\n\n## Inference methods\n\nTo quote [this page](https://webppl.readthedocs.io/en/master/inference/), \"marginal inference (or just inference) is the process of reifying the distribution on return values implicitly represented by a stochastic computation.\". That is, a probabilistic program (stochastic computation) is an abstract object and inference transforms it into something concrete, like a histogram, a list of samples, or parameters of a known distribution.\n\nAll inference methods in monad-bayes work with all distributions. The only exception is that exact inference only works with discrete distributions and will throw a runtime error on continuous distributions.\n\nThe challenge of inference is that most distributions that are of interest are not as simple as `sprinkler`. They could have continuous random variables, a huge number of them, or even a number of them that is itself random. They could involve a series of observations, interspersed with other sources of randomness.\n\nDesigning a language in which you can specify arbitrarily complex (computable) distributions as probabilistic programs turns out to be a largely solved problem. The tools given above are sufficient for that.\n\nThe hard part is designing a language where you can specify how you want to do inference, because sophisticated, often approximate, inference methods are almost always necessary for the models involved in solving real world problems.\n\nTwo of the large classes of inference methods are **sampling based methods** and **gradient based methods**. The latter only apply to continuous probability distributions, and are not the focus of monad-bayes.\n\n<!-- For the purposes of this section, let `dist :: MonadMeasure m => m a` be the distribution you want to perform inference on.  -->\n\n## Exact inference\n\n```haskell\nenumerator :: Ord a => Enumerator a -> [(a, Double)]\n```\n\nSo `enumerator (bernoulli 0.7)` gives you\n\n```\n[(False,0.3),(True,0.7)]\n```\n\nThis works for distributions with `factor` statements (i.e. an instance of `MonadMeasure`), as in:\n\n\n```haskell\n\nmodel :: MonadMeasure m => m Bool\nmodel = do\n  x <- bernoulli 0.5\n  y <- bernoulli 0.3\n  condition (x || y)\n  return x\n\nenumerator model\n\n> [(True,0.7692307692307692),(False,0.23076923076923078)]\n```\n\n**Note: `enumerator` only works on finite discrete distributions**\n\nIt will run forever on infinite distributions like `enumerator (poisson 0.7)` and will throw the following **runtime** error on continuous distributions as in `enumerator (normal 0 1)`:\n\n*\"Exception: Infinitely supported random variables not supported in Enumerator\"*\n\n**However**, it's totally fine to have the elements of the support themselves be infinite, as in:\n\n```haskell\nfmap (\\(ls,p) -> (take 4 ls, p)) $ enumerator $ uniformD [[1..], [2..]]\n```\n\nwhich gives\n\n```\n[([1,2,3,4],0.5),([2,3,4,5],0.5)]\n```\n\n## Near exact inference for continuous distributions\n\nMonad-Bayes does not currently support exact inference (via symbolic solving) for continuous distributions. However, it *does* support numerical integration. For example, for the distribution defined by\n\n```haskell\nmodel :: MonadDistribution m => m Double\nmodel = do\n  var <- gamma 1 1\n  normal 0 (sqrt var)\n```\n\nyou may run `probability (0, 1000) model` to obtain the probability in the range `(0,1000)`. As expected, this should be roughly $0.5$, since the PDF of `model` is symmetric around $0$.\n\nYou can also try `expectation model`, `variance model`, `momentGeneratingFunction model n` or `cdf model n`.\n\nIf the model has factor statements, as in\n\n```haskell\nmodel :: MonadMeasure m => m Double\nmodel = do\n  var <- gamma 1 1\n  n <- normal 0 (sqrt var)\n  condition (n > 0)\n  return var\n```\n\nwe must first `normalize` the model, as in `probability (0, 0.1) (normalize model)`.\n\n## Independent forward sampling\n\nFor any probabilistic program `p` without any `condition` or `factor` statements, we may do `sampler p` or `sampleIOfixed p` (to run with a fixed seed) to obtain a sample in an ancestral fashion. For example, consider:\n\n```haskell\nexample = do\n  x <- bernoulli 0.5\n  if x then normal 0 1 else normal 1 2\n```\n\n`sampler example` will produce a sample from a Bernoulli distribution with $p=0.5$, and if it is $True$, return a sample from a standard normal, else from a normal with mean 1 and std 2.\n\n`(replicateM n . sampler) example` will produce a list of `n` independent samples. However, it is recommended to instead do `(sampler . replicateM n) example`, which will create a new model (`replicateM n example`) consisting of `n` independent draws from `example`.\n\nBecause `sampler example` is totally pure, it is parallelizable.\n\nMonad-bayes gives the user freedom in the random number generator of the sampler: use `sampleWith` for full control.\n\n## Independent weighted sampling\n\nTo perform weighted sampling, use:\n\n```haskell\n(sampler . runWeightedT) :: WeightedT SamplerIO a -> IO (a, Log Double)\n```\n\n`WeightedT SamplerIO` is an instance of `MonadMeasure`, so we can apply this to any distribution. For example, suppose we have the distribution:\n\n```haskell\nexample :: MonadMeasure m => m Bool\nexample = do\n  x <- bernoulli 0.5\n  condition x\n  return x\n```\n\nThen:\n\n```haskell\nrun :: IO (Bool, Log Double)\nrun = (sampler . runWeightedT) example\n```\n\nis an IO operation which when run, will display either `(False, 0.0)` or `(True, 1.0)`\n\n\n## Lazy sampling\n\nIf you want to forward sample from an infinite program, just as a distribution over infinite lists, you can use monad-bayes's lazy sampler, which is based on LazyPPL. For example,\n\n```haskell\nimport qualified Control.Monad.Bayes.Sampler.Lazy as Lazy\n\nexample :: MonadDistribution m => m [Double]\nexample = do\n  x <- random\n  fmap (x:) example\n\ninfiniteList <- Lazy.sampler example\ntake 4 infiniteList\n```\n\nTo perform weighted sampling, use `lwis` from `Control.Monad.Bayes.Inference.Lazy.WIS` as in `lwis 10 example`. This takes 10 weighted samples, and produces an infinite stream of samples, regarding those 10 as an empirical distribution.\n\nLazyPPL's `mh` implementation is also available.\n\n## Markov Chain Monte Carlo\n\nThere are several versions of metropolis hastings MCMC defined in monad-bayes. The standard version is found in `Control.Monad.Bayes.Inference.MCMC`. You can use it as follows:\n\n```haskell\n(sampler . mcmc (MCMCConfig {\n  numMCMCSteps = 10,\n  numBurnIn = 5,\n  proposal = SingleSiteMH})) :: TracedT (WeightedT SamplerIO) a -> IO [a]\n```\n\nAs you can see, `mcmc` takes a `MCMCConfig` object, which is where you specify the number of steps in the MCMC chain, and the number of burn in steps. `SingleSiteMH` refers to the proposal used in the chain.\n\n`TracedT (WeightedT SamplerIO)` is an instance of `MonadMeasure`, so we can apply this to any distribution. For instance:\n\n\n```haskell\nexample :: MonadMeasure m => m Bool\nexample = do\n  x <- bernoulli 0.5\n  condition x\n  return x\n```\n\nThen\n\n```haskell\nrun :: IO [Bool]\nrun = (sampler . mcmc (MCMCConfig {\n  numMCMCSteps = 10,\n  numBurnIn = 5,\n  proposal = SingleSiteMH})) example\n```\n\nproduces $5$ unbiased samples from the posterior, by using single-site trace MCMC with the Metropolis-Hastings (MH) method. This means that the random walk is over execution traces of the probabilistic program, and the proposal distribution modifies a single random variable as a time, and then uses MH for the accept-reject criterion. For example, from the above you'd get:\n\n```\n[True,True,True,True,True]\n```\n\nThe final element of the chain is the head of the list, so you can drop samples from the end of the list for burn-in.\n\n## Streaming MCMC\n\nYou can also run `MCMC` using `mcmcP`. This creates an infinite chain, expressed as a stream or using the corresponding type from the `pipes` library, a `Producer`. This is a very natural representation of a random walk in Haskell.\n\nYou can run this with a terminal user interface (TUI) by doing e.g.\n\n```haskell\ntui 0 random noVisual\n```\n\n## Sequential Monte Carlo (Particle Filtering)\n\nRun SMC with two resampling steps and two particles as follows, given a model `m`:\n\n```haskell\noutput =\n  sampler $\n  runPopulationT $\n  smc (SMCConfig\n    {numSteps = 2,\n    numParticles = 2,\n    resampler = resampleMultinomial} )\n  m\n```\n\n<!-- Or if you prefer, think of the inference method as:\n\n\n```haskell\n(sampler . runPopulationT . smc SMCConfig {numSteps = 2, numParticles = 2, resampler = resampleMultinomial} random)\n  :: SequentialT (PopulationT SamplerIO) a -> IO [(a, Numeric.Log.Log Double)]\n``` -->\n\n<!-- `SequentialT (PopulationT SamplerIO)` is an instance of `MonadMeasure`, so we can apply this inference method to any distribution. For instance, to use our now familiar `example`: -->\n\nAs a concrete example, here is a probabilistic program:\n\n```haskell\n(sampler . runPopulationT . smc SMCConfig {numSteps = 2, numParticles = 2, resampler = resampleMultinomial} random)\n  :: SequentialT (PopulationT SamplerIO) a -> IO [(a, Numeric.Log.Log Double)]\n``` -->\n\n<!-- `SequentialT (PopulationT SamplerIO)` is an instance of `MonadMeasure`, so we can apply this inference method to any distribution. For instance, to use our now familiar `example`: -->\n\nAs a concrete example, here is a probabilistic program:\n\n```haskell\nexample :: MonadMeasure m => m Bool\nexample = do\n  x <- bernoulli 0.5\n  condition x\n  return x\n```\n\nAnd here is the inference:\n\n```haskell\nrun :: IO [(Bool, Log Double)]\nrun = (sampler . runPopulationT . smc (SMCConfig {\n  numSteps = 2,\n  numParticles = 4,\n  resampler = resampleMultinomial})) example\n```\n\nThe result:\n\n```\n[(True,6.25e-2),(True,6.25e-2),(True,6.25e-2),(True,6.25e-2)]\n```\n\nEach of these is a particle with a weight. In this simple case, there are all identical - obviously in general they won't be.\n\n`numSteps` is the number of steps that the `SMC` algorithm takes, i.e. how many times it resamples. Specify it as either `All` or `Only n` for `n` an integer. This should generally be the number of factor statements in the program. `numParticles` is the size of the population. Larger is better but slower.\n\n`resampler` is the mechanism used to resampling the population of particles after each `factor` statement.\n\n## Resample Move Sequential Monte Carlo\n\nThis is a fancier variant of SMC, which has the particles take an MCMC walk through the solution space in order to spread out. This can avoid a common failure mode of SMC, where the population concentrates its weight too heavily on one mode.\n\n```haskell\nrmsmcBasic ::\n  MonadDistribution m =>\n  MCMCConfig ->\n  SMCConfig m ->\n  -- | model\n  SequentialT (TrBas.TracedT (PopulationT m)) a ->\n  PopulationT m a\n```\n\nFor instance:\n\n```haskell\nrun :: IO [(Bool, Log Double)]\nrun = (\n  sampler .\n  runPopulationT .\n  rmsmcBasic\n    MCMCConfig {numMCMCSteps = 4, proposal = SingleSiteMH, numBurnIn = 0}\n    SMCConfig {numParticles = 4, numSteps = 4})\n  example\n```\n\nWhat this returns is a population of samples, just like plain `SMC`. More MCMC steps is of course better, but slower.\n\n## Particle Marginal Metropolis Hastings\n\nThis inference method takes a prior and a model separately, so it only applies to a (large) subset of probabilistic programs.\n\nRun it like this:\n\n```haskell\nsampler $ pmmh\n    mcmcConfig {numMCMCSteps = 100}\n    smcConfig {numSteps = 0, numParticles = 100}\n    random (normal 0)\n```\n\nThe model is specified in two parts, the prior is `random` and the likelihood is `(\\x -> normal 0 x)`.\n\nThis produces a list, representing the MCMC chain. Each element in the chain is a population of particles.\n\n<!-- todo -->\n\n<!-- Here I use \"inference\" to mean the process of getting from the distribution in the abstract the something concrete, like samples from it,  an expectation over it, parameters of it, or in the above case of `enumerator`, the mass of each element of the support. -->\n\n\n<!-- You then want to be able to convert this abstract specification of a distribution or model into something tangible, and in the case of this simple discrete distribution, we can do so by brute force. That's what `enumerator` does. -->\n\n\n\n\n<!-- It feels natural that a pure, functional, strongly typed language like Haskell should have a good story for Bayesian probability, inference, and probabilistic programming.  -->\n\n\n\n\n\n<!-- denotation of probabilistic programs, which we then are free to interpret in myriad ways: as weighted lists, samplers, or a variety of more sophisticated programs for performing inference -->\n\n<!-- In particular, these interpretations can be combined, and by so doing, you can built up really rather complex inference algorithms while being sure that your method is sound. And also intelligible.  -->\n\n<!-- *The interpretation of your model is the program which performs inference on it* -->\n\n<!-- # Example Gallery -->\n\n<!-- todo: link to monad-bayes examples, with graphs and how to run -->\n\n<!-- `sprinkler` above is a great example of the two new things you can do in a probabilistic program that you can't do in other programs: you can draw from distributions, and you can *condition* on observations. For example:\n\n```haskell\nexample = do\n    ind <- fmap not (bernoulli 0.9)\n    val <- if ind then gaussian 0 1 else poisson 0.5\n    condition (val > 1)\n    return ind\n```\n\nThis example is contrived, in order to show a few things. First, `m` in distributions like `bernoulli 0.9 :: MonadDistribution m => m Bool` (the distribution `{True : 0.9, False: 0.1}`) are functors, so we can fmap over them, e.g. with `not` to get the distribution `{True : 0.1, False: 0.9}`. Second, distributions are monads, so we can draw from them and use the results as the parameters of other distributions. Third, we have a `condition` function, which throws out all values of `ind` which would result in `val <= 1`.\n\nThe fact that distributions are a monad is the essence of probabilistic programming. It allows you to express everything from simple models (Bayesian linear regression) to complex ones (hierarchical latent Dirichlet models) in a shared language. See the `models` folder (TODO LINK) for examples.\n\n```haskell\nbetaBernoulli :: MonadDistribution m => Int -> m [Bool]\nbetaBernoulli n = do\n  weight <- uniform 0 1\n  let toss = bernoulli weight\n  replicateM n toss\n```\n\n -->\n\n\n# Interoperating with other Haskell code\n\nProbabilistic programs in monad-bayes are Haskell programs. This contrasts to many probabilistic programming languages, which are deeply embedded and cannot smoothly interact with their host language.\n\nFor example, we can use ordinary monadic combinators, as in:\n\n```haskell\nexample = do\n  x <- bernoulli 0.5\n  when x (score 0.8)\n  return x\n```\n\nor\n\n```haskell\nexample = whileM (bernoulli 0.99) (normal 0 1)\n```\n\nYou may write distributions over artibrary types. For example, rather than drawing a sample from a distribution and then using the sample to construct a histogram or a plot, you can directly define a distribution over histograms or plots, and sample from that.\n\nYou can have distributions over arbitrary data structures, such as trees, JSONs, databases, and so on. You can use `MonadMeasure m => m` as the monad in libraries which are parametric in a monad, such as `megaparsec` or `pipes`.\n\n<!-- We can use libraries like Pipes, to specify lazy distributions as in models/Pipes.hs\n\nWe can write probabilistic optics to update or view latent variables, as in models/Lens.hs.\n\nWe can define models like PCFGs using recursion schemes, as in models/PCFG.hs.\n\nWe can write probabilistic parsers, as in models/Parser.hs.\n\nWe can use monad transformers on top of our probability monad `m`, as in models/Failure.hs. -->\n\n<!-- And, because we're programming directly in Haskell, rather than a domain specific language (like Church, Gen, WebPPL and most other probabilistic programming languages), we can interoperate with any other Haskell concepts. Two examples: -->\n\n# Tips on writing good probabilistic programs\n\nThere are many ways to specify the same distribution, and some will lend themselves more readily to efficient inference than others. For instance,\n\n```haskell\nmixture1 point = do\n    cluster <- uniformD [1,5]\n    prediction <- normal cluster 1\n    condition (prediction == point )\n    return cluster\n```\n\nis a piece of code to infer whether an observed point was generated from a Gaussian of mean $1$ or $5$. That is, `mixture1` is a conditional Bernoulli distribution over the mean given an observation. You're not going to be able to do much with `mixture1` though. Exact inference is impossible because of the sample from the normal, and as for sampling, there is zero probability of sampling the normal to exactly match the observed point, which is what the `condition` requires.\n\nHowever, the same conditional distribution is represented by\n\n```haskell\nmixture2 point = do\n    cluster <- uniformD [1,5]\n    factor (normalPdf cluster 1 point)\n    return cluster\n```\n\nThis version, while *denotationally identical* (i.e. representing the same mathematical object), is perfectly amenable to exact inference:\n\n```haskell\nenumerator $ mixture2 2\n```\n\nyields\n\n```haskell\n[(1.0, 0.98...), (5.0, 0.017...)]\n```\n\nas well as sampling methods.\n\nThe local lesson here is that you shouldn't `condition` on samples from a continuous distribution and expect a sampling based inference method to work. But the more general lesson is that you aren't exempted from thinking about inference when specifying your model. Alas.\n\nAs a second example of this general point, consider:\n\n```haskell\nallAtOnce = do\n    x <- bernoulli 0.5\n    y <- bernoulli 0.5\n    condition (x && y)\n    return (x && y)\n```\n\nand\n\n```haskell\nincremental = do\n    x <- bernoulli 0.5\n    condition x\n    y <- bernoulli 0.5\n    condition y\n    return (x && y)\n```\n\nLike in the previous example, `allAtOnce` and `incremental` denote the same distribution, namely `[(True, 1.0), (False, 0.0)]`. However, any inference algorithm for `allAtOnce` will have to explore all 4 possible variable assignments (`[(True,True), (True, False), (False, True), (False, False)]`). Meanwhile, `incremental` opens the possibility for inference algorithms to first determine the value of `x` and then of `y`.\n\nIn this example, the performance difference is negligible, but it's easy to extend this to models where it's the difference between something tractable and something intractable.\n\n<!-- todo: similar lesson about incremental factors: compare two models -->\n\n<!-- ## Executables\n\nmonad-bayes comes with an executable called `example`. It's not particularly useful, except as a reference to see a compiled program which generates data, performs inference and reports the results. Once you've done `stack build`, run this with e.g.:\n\n```\nstack exec example -- -m LDA4 -a MH\n```\n\nwhere the options for `-m` (model) are \"LDA\" (latent dirichlet), \"LR\" (logistic regression) and \"HMM\" (hidden Markov model) and for `-a` (algorithm) are \"MH\" (Metropolis Hastings), \"SMC\" (sequential Monte Carlo), and \"RMSMC\" (resample-move sequential Monte Carlo). The number is the number of steps to take. -->\n\n# API docs\n\nFor API docs in the normal Haskell style, see [hackage](https://hackage.haskell.org/package/monad-bayes).\n\n# Monad-Bayes vs other libraries\n\nMonad-bayes is a universal probabilistic programming system, in the sense that you can express any computable distribution. In this respect it differs from Stan, which focuses instead on handling inference on an important subset well.\n\nThere is a variety of universal probabilistic programming libraries and/or languages, which include WebPPL, Gen, Pyro and Edward.\n\n**What other approaches have that Monad-Bayes lacks**:\n\nA lot of engineering work has been put into the above libraries and languages to make them practical for real-world problems. While monad-bayes' core is very nice, it doesn't come with a lot of the batteries you might want. (The author's PhD thesis contains this relevant paragraph: \"our library implements basic versions of advanced sampling algorithms. However, their successful application in practice requires incorporating established heuristics, such as: adaptive proposal distributions, controlling resampling with effective sample size, tuning rejuvenation kernels based on population in SMC2, and so on.\")\n\n**What Monad-Bayes has that is unique**:\n\nMonad-Bayes is just a library, unlike almost all other PPLs, which are separate languages written inside another language. As such, probabilistic programs in monad-bayes are first class programs in Haskell with no new special syntax or keywords. This allows all of Haskell's expressive power to be brought to bear. You can write distributions over any datatype (lists, trees, functions, histograms, JSON files, graphs, diagrams, etc). You can use powerful libraries like `pipes`, `lens` and `Parsec`. Everything is pure. Everything is strongly typed. You can make use of laziness.\n\nModels are monadic and inference is modular. Complex inference algorithms like RMSMC or PMMH are built out of simple composable pieces, and so are expressable extraordinarily simply.\n"
  },
  {
    "path": "docs/docs/tutorials.md",
    "content": "---\ntitle: Tutorials\n---\n\n## [Introduction to Monad-Bayes](/notebooks/Introduction.html)\n\n## [Sampling from a distribution](/notebooks/Sampling.html)\n\n## [Bayesian models](/notebooks/Bayesian.html)\n\n## [Markov Chain Monte Carlo](/notebooks/MCMC.html)\n\n## [Sequential Monte Carlo](/notebooks/SMC.html)\n\n## [Lazy Sampling](/notebooks/Lazy.html)\n\n## [Advanced Inference Methods](/notebooks/AdvancedSampling.html)\n\n<!-- ## [Advanced Inference Methods](../AdvancedSampling.html)\n\n## [Building your own inference methods]() -->"
  },
  {
    "path": "docs/docs/usage.md",
    "content": "# Implementation guide\n\nThis document assumes the reader is familiar with the basics of Bayesian probability theory, basic Haskell (the syntax, the type system, do-notation, monad transformers), and how to specify distributions in monad-bayes (see the [docs](probprog.md))\n\nThat's enough to understand the core ideas, but for the more advanced content, you'll also want to feel comfortable enough with Haskell's type system that free monads, free monad transformers, and coroutines aren't a barrier to entry. And of course, to understand how inference methods like MCMC and SMC are implemented, it doesn't hurt to understand how they work in a statistical sense.\n\n## References\n\nMonad-Bayes is the codebase accompanying the theory of probabilistic programming described in [this paper](https://arxiv.org/pdf/1711.03219.pdf).\n\n## The core typeclasses\n\nThe library relies on two core typeclasses `MonadDistribution` and `MonadFactor`. `MonadMeasure` is simply the union of the two, that is:\n\n```haskell\n(MonadDistribution m, MonadFactor m) => MonadMeasure m\n```\n\nYou can find these in `Control.Monad.Bayes.Class`.\n\n### MonadDistribution\n\nHere is `MonadDistribution`:\n\n```haskell\nclass Monad m => MonadDistribution m where\n  random :: m Double\n```\n\nThis one method, `random`, represents a uniform distribution over $[0,1]$. (`MonadDistribution` actually has a few other distributions, but that's not essential.)\n\nWhat comes next is clever: you can define any other distribution you like in terms of `random`. As an example:\n\n```haskell\nbernoulli :: MonadDistribution m => m Bool\nbernoulli p = fmap (< p) random\n```\n\nThat one is pretty simple. As a more complex example, here's how a normal distribution is defined:\n\n```haskell\nnormal m s = fmap (quantile (normalDistr m s)) random\n```\n\n`normalDistr` comes from a separate library `Statistics.Distribution.Normal` and `quantile (normalDistr m s) :: Double -> Double` is the inverse CDF of the normal, a deterministic function.\n\nAgain, to emphasize: **all of our randomness can be reduced to draws from a uniform distribution over the interval $[0,1]$**.\n\nSo we now have a way of constructing distributions in a monadic fashion. As a simple example:\n\n```haskell\nexample :: MonadDistribution m => m Double\nexample = do\n    x <- random\n    y <- uniform 0 x\n    return (x + y > 1.5)\n```\n\nThink of this as the procedure of first sampling uniformly from $[0,1]$, then from $[0,x]$, and then returning the Boolean $x + y > 1.5$. More precisely, this is the **marginal** probability of $x + y > 1.5$.\n\n**Technical note**: `MonadDistribution` actually contains a number of other distributions beyond `random`, which by default are defined in terms of `random`, but allow for different definitions when desired. For example, `SamplerT` (an instance of `MonadDistribution` in Control.Monad.Sampler) defines `normal` and other distributions independently of `random`.\n\n<!-- Inference is TODO\n `example1`, of type `MonadDistribution m => m Double`, and turn it into something we can actually see. Like samples. Or a parameter of a Bernoulli distribution. Those are problems for the next section, which is concerned with *interpreting* `MonadDistribution` as something more concrete, namely an inference algorithm. -->\n\n<!-- The core philosophy of monad-bayes is that we specify distributions (probabilistic programs, that is) in this abstract monadic typeclass, and then cash it out in a variety of concrete ways which allow for convenient inference algorithms. -->\n\n### MonadFactor\n\nHere's `MonadFactor`.\n\n```haskell\nclass Monad m => MonadFactor m where\n  score :: Log Double -> m ()\n```\n\n`Log Double` is defined in `Numeric.Log`, and is a wrapper for `Double`s which does multiplication in log-space. It comes with `Exp :: a -> Log a` and `ln :: Log a -> a`. This is because we don't want numerical problems when multiplying tiny probabilities, and we want a hassle free typesafe separation of doubles and log-doubles.\n\n<!-- `score` is less intuitive than `random`. It will become clearer when we discuss more concrete interpretations of `MonadFactor`, but what's important to know here is that it is used to allow us to do the Bayesian part of probability, as exemplified by the following probabilistic program:  -->\n\n\n\n## Inference transformers\n\nNow core idea of monad-bayes is that various monads will be made to be instances of `MonadDistribution`, `MonadFactor` or both (i.e. an instance of `MonadMeasure`), and different inference algorithms will be written using these instances. This separates the specification of the model (which happens abstractly in `MonadMeasure`) from the inference algorithm, which takes place in on of the concrete instances. The clever part of monad-bayes is that it allows this instances to be constructed in a modular way, using monad transformers. In the paper, these are termed *inference transformers* to emphasize that it doesn't really matter whether they satisfy the monad laws.\n\nFor example, to run weighted rejection sampling on a probabilistic program `p`, we can write `(sampler . runWeightedT) p`. Here, `(sampler . runWeightedT) :: WeightedT SamplerIO a -> IO a`. So `p` gets understood as being of type `WeightedT SamplerIO`, a type we'll encounter soon.\n\nSome of these transformers are easy to understand (like `StateT Double`, while others (like the Church transformed Free monad transformer) lie on the more advanced side of things. The following tour of these types goes from easy to hard.\n\n### Enumerator\n\nSummary of key info:\n\n- `Enumerator :: Type -> Type`\n- `instance MonadDistribution Enumerator`\n- `instance MonadFactor Enumerator`\n\n`Enumerator` is in `Control.Monad.Bayes.Enumerator`, defined as follows:\n\n```haskell\nnewtype Enumerator a =\n    Enumerator (WriterT (Product (Log Double)) [] a)\n```\n\nThis merits a little unpacking. First, `Product` is a wrapper from [Data.Monoid](https://hackage.haskell.org/package/base-4.16.0.0/docs/Data-Monoid.html) which makes the semigroup operator for numbers be multiplication, so that:\n\n```haskell\nProduct 2 <> Product 3 == Product 6`\n```\n\nUnpacking the definition of `Enumerator a`, it is isomorphic to:\n\n```haskell\n[(a, (Product (Log Double)))]\n```\n\nSo, a value of type `Enumerator Bool`, for instance, is a list of pairs of booleans along with a double, like:\n\n```haskell\n[(False,0.8914),(True,0.1086)]\n```\n\nAlso in `Control.Monad.Bayes.Enumerator` is a function `enumerator`, which has type:\n\n```haskell\nenumerator :: Ord a => Enumerator a -> [(a, Double)]\n```\n\nWe can write `enumerator sprinkler`. Why is this well typed? The idea is that `sprinkler` has type `forall m. MonadMeasure m => m Bool`, and we *instantiate* that `m` as `Enumerator`.\n\nBut for this to be well-typed, we need `Enumerator` to be an instance of `MonadMeasure`. For that, we need `Enumerator` to be a `MonadDistribution`, and a `MonadFactor`. For that, we need it to be a `Monad`, and in turn, a `Functor`. In understanding these instance definition, we'll understand what what `Enumerator` is doing for us.\n\n\n`Enumerator` is a monad automatically, because `WriterT a m` is a monad for `a` a monoid and `m` a monad. As needed, `[]` is a monad and `Log Double` is a monoid. But what does that monad actually **do**?\n\nFor instance, if I have a weighted list `l` like `[(False,0.8914),(True,0.1086)]` and a function `f :: Bool -> Enumerator a`, what is `l >>= f`? It takes each element in `l`, and passes it through `f`, to obtain a weighted list of weighted lists. Then it flattens it, by including each element in the inner lists in the resulting list, with the weight of the list multiplied by the weight of the element. As for `return x`, it gives the singleton list containing the pair of `x` and the unit of the product monoid, i.e. `[(x, 1.0)]`.\n\nThis is the essence of propagating probability forward.\n\n<!-- This is of course a representation of a discrete distribution, and as we might expect, `Enumerator` is only going to be useful when we are dealing with discrete distributions. -->\n\nWhat remains is to define the `MonadDistribution` and `MonadFactor` instances:\n\n\n```haskell\ninstance MonadDistribution Enumerator where\n  random = error \"Infinitely supported random variables not supported in Enumerator\"\n  bernoulli p = fromList [(True, (Exp . log) p), (False, (Exp . log) (1 - p))]\n\n\n```\n\nThe first thing to notice is that `random` is actually not defined for `Enumerator`, and consequently, you can't handle any continuous distributions. This makes sense, because you can't represent continuous distributions (whose support is uncountably infinite) as a list of samples.\n\nSo really `Enumerator` isn't very general purpose. It's best understood as a didactic tool, rather than a real world inference algorithm.\n\nBut it can handle discrete distributions. It does this via `bernoulli` (as well as `categorical`, which I've omitted). `bernoulli p` constructs the weighted list corresponding to a `bernoulli` distribution with parameter `p`.\n\nAnd the `MonadFactor` instance:\n\n```haskell\ninstance MonadFactor Enumerator where\n  score w = fromList [((), w)]\n```\n\nFinally, `enumerator` simply unwraps `Enumerator` to get a list of pairs of values and their weights, and then normalizes them into probabilities. It orders the list, which is why `enumerator` requires an `Ord` instance.\n\nTo see how this all works together, consider:\n\n```haskell\nexample = do\n  x <- bernoulli 0.5\n  condition x\n  return x\n```\n\nFrom the way the `MonadDistribution` instance for `Enumerator` is defined, `bernoulli 0.5` is a list of two pairs: `[(True, 0.5), (False, 0.5)]`. Using the `Monad` instance, the next line multiplies each of the masses by a number (`0` for `True`, `1` for `False`). The final line multiplies both by `1.0`. And then `enumerator` normalizes the result. So the ensuing distribution from `enumerator example` is `{True : 1.0}`.\n\n\n\n\n\n\n\n<!-- ```haskell\nexample2 = do\n    x <- bernoulli 0.5\n    y <- bernoulli $ if x then 0.6 else 0.5\n    return (y && x)\n``` -->\n\n### SamplerIO\n\nSummary of key info on `SamplerIO`:\n\n- `SamplerIO :: Type -> Type`\n- `instance MonadDistribution SamplerIO`\n- **No** instance for `MonadFactor`\n\nMonad-Bayes actually provides a more general constructor:\n\n```haskell\nnewtype SamplerT g m a = SamplerT (ReaderT g m a)\n```\n\n`SamplerIO` just specializes `g`, which is the random number generator, and `m`, the IO-handling monad:\n\n```haskell\ntype SamplerIO = SamplerT (IOGenM StdGen) IO\n```\n\nBut you can specialize many other ways (see the `random` package), depending on your use case.\n\nAs the names suggest, `SamplerIO` instantiates an abstract distribution as a sampling procedure. We have\n\n```haskell\ninstance MonadDistribution (SamplerT g m) where\n  random = SamplerT (ReaderT uniformDouble01M)\n\n  uniform a b = SamplerT (ReaderT $ uniformRM (a, b))\n  normal m s = SamplerT (ReaderT (MWC.normal m s))\n  gamma shape scale = SamplerT (ReaderT $ MWC.gamma shape scale)\n  beta a b = SamplerT (ReaderT $ MWC.beta a b)\n\n  ...\n```\n\nWere the lines from `uniform` to `beta` commented out, they would be instantiated with the defaults defined in terms of `random` in the `MonadDistribution` class. The reason they are not is that there are more statistically efficient ways to sample.\n\nWe can unpack values from `SamplerIO a` using `sampler :: SamperIO a -> IO a`. So for example:\n\n\n```haskell\nprint =<< sampler random\n```\n\nwill print a sample from `random`. Similarly for other distributions.\n\nBut note that `SamplerIO` only has a `MonadDistribution` instance. This means that `sampler sprinkler` does not type check and gives the type error:\n\n```haskell\nNo instance for (MonadMeasure SamplerIO)\n```\n\nThis is to be expected. `SamplerIO` has no instance for `MonadFactor`.\n\n### WeightedT m\n\nSummary of key info on `WeightedT`:\n\n- `WeightedT :: (Type -> Type) -> (Type -> Type)`\n-  `instance MonadDistribution m => MonadMeasure (WeightedT m)`\n- `instance MonadFactor (WeightedT m)`\n\n```haskell\nnewtype WeightedT m a = WeightedT (StateT (Log Double) m a)\n```\n\nA **key** difference to `Enumerator` and `SamplerIO` is the **kind** of `WeightedT`: it takes a type `m :: Type -> Type` as an argument.\n\n\n<!-- It takes not just a type `a :: Type` as argument, but also a type `m :: Type -> Type`. -->\n\n`WeightedT m` is isomorphic to:\n\n```haskell\nLog Double -> m (a, Log Double)\n```\n\nSome intuition for what this means comes from the `MonadFactor` instance:\n\n```haskell\ninstance Monad m => MonadFactor (WeightedT m) where\n  score w = WeightedT (modify (* w))\n```\n\nSo if we write:\n\n```haskell\nexample :: MonadDistribution m => WeightedT m Bool\nexample = do\n    x <- bernoulli 0.5\n    score (if b then 1 else 0)\n    return x\n```\n\nthen the result is that first, we draw a sample from a Bernoulli distribution from the **underlying** distribution `m`, and then multiply the state (which is a `Log Double`) by a number which depends on that sample. For convenience, we write `condition b = score (if b then 1 else 0)`.\n\nTo unpack from `WeightedT m a`, we use:\n\n```haskell\nrunWeightedT :: WeightedT m a -> m (a, Log Double)\nrunWeightedT (WeightedT m) = runStateT m 1\n```\n\n`WeightedT m` is not an instance of `MonadDistribution`, but only as instance of `MonadFactor` (and that, only when `m` is an instance of `Monad`). However, since `StateT` is a monad transformer, there is a function `lift :: m Double -> WeightedT m Double`.\n\nSo if we take a `MonadDistribution` instance like `SamplerIO`, then `WeightedT SamplerIO` is an instance of both `MonadDistribution` and `MonadFactor`. Which means it is an instance of `MonadMeasure`.\n\nSo we can successfully write `(sampler . runWeightedT) sprinkler` and get a program of type `IO (Bool, Log Double)`. When run, this will draw a sample from `sprinkler` along with an **unnormalized** density for that sample.\n\nIt's worth stopping here to remark on what's going on. What has happened is that the `m` in `forall m. MonadMeasure m => m Bool` has been *instantiated* as `WeightedT SamplerIO`. This is an example of how the interpreters for inference can be composed in modular ways.\n\nFinally, there's a function\n\n```haskell\nhoist :: (forall x. m x -> n x) -> WeightedT m a -> WeightedT n a\n```\n\nThis takes a natural transformation `m ~> n` and lifts it into a natural transformation `WeightedT m ~> WeightedT n`. Most of the inference transformers have an analogous `hoist` function.\n\n\n<!-- `WeightedT` and `SamplerIO` are on the simpler side, but illustrate the key principles of monad-bayes, namely:\n\n**composable stack of inference transformers, implemented as instances of `MonadDistribution` and `MonadFactor` typeclasses.**\n\nIn a similar vein, `PopulationT` and `SequentialT` go together to handle Sequential Monte Carlo (SMC), and `TracedT` is associated with Markov Chain Monte Carlo (MCMC). -->\n\n\n\n### PopulationT\n\nSummary of key info on `PopulationT`:\n\n- `PopulationT :: (Type -> Type) -> (Type -> Type)`\n- `instance MonadDistribution m => instance MonadDistribution (PopulationT m)`\n- `instance MonadFactor m => instance MonadFactor (PopulationT m)`\n\n```haskell\nnewtype PopulationT m a = PopulationT (WeightedT (ListT m) a)\n```\n\nSo:\n\n```haskell\nPopulationT m a ~ m [Log Double -> (a, Log Double)]\n```\n\nNote that while `ListT` isn't in general a valid monad transformer, we're not requiring it to be one here.\n\n`PopulationT` is used to represent a collection of particles (in the statistical sense), along with their weights.\n\nThere are several useful functions associated with it:\n\n```haskell\nspawn :: Monad m => Int -> PopulationT m ()\nspawn n = fromWeightedList $ pure $ replicate n ((), 1 / fromIntegral n)\n```\n\n`spawn` spawns new particles. As an example:\n\n```haskell\nenumerator $ runPopulationT (spawn 2)\n```\n\ngives\n\n```haskell\n[([((),0.5),((),0.5)],1.0)]\n```\n\nObserve how here we have interpreted `(spawn 2)` as of type `PopulationT Enumerator ()`.\n\n`resampleGeneric` takes a function to probabilistically select a set of indices from a vector, and makes a new population by selecting those indices.\n\n```haskell\nresampleGeneric ::\n  MonadDistribution m =>\n    (V.Vector Double -> m [Int]) ->\n    PopulationT m a ->\n    PopulationT m a\n```\n\n`pushEvidence`, to quote the API docs, \"normalizes the weights in the population, while at the same time incorporating the sum of the weights as a score in m.\"\n\n```haskell\npushEvidence ::\n  MonadFactor m =>\n  PopulationT m a ->\n  PopulationT m a\n```\n\nIn other words, `pushEvidence` takes a `PopulationT m a` where `m` is a `MonadFactor` instance. It takes the sum of the weights, divides the weights by it, and then factors by the sum in `m`.\n\n### SequentialT\n\nSummary of key info on `SequentialT`:\n\n- `SequentialT :: (Type -> Type) -> (Type -> Type)`\n- `instance MonadDistribution m => instance MonadDistribution (SequentialT m)`\n- `instance MonadFactor m => instance MonadFactor (SequentialT m)`\n\n\n```haskell\nnewtype SequentialT m a =\n    SequentialT {runSequentialT :: Coroutine (Await ()) m a}\n```\n\nThis is a wrapper for the `Coroutine` type applied to the `Await` constructor from `Control.Monad.Coroutine`, which is defined thus:\n\n```haskell\nnewtype Coroutine s m r = Coroutine {\n   resume :: m (Either (s (Coroutine s m r)) r)\n   }\n\nnewtype Await x y = Await (x -> y)\n```\n\nUnpacking that:\n\n```haskell\nSequentialT m a ~ m (Either (() -> SequentialT m a) a)\n```\n\nAs usual, `m` is going to be some other probability monad, so understand `SequentialT m a` as representing a program which, after making a random choice or doing conditioning, we either obtain an `a` value, or a paused computation, which when resumed gets us back to a new `SequentialT m a`.\n\n(For more on coroutines, see the final article in: https://themonadreader.files.wordpress.com/2011/10/issue19.pdf.)\n\nThe monad instance for coroutines is as follows:\n\n```haskell\ninstance (Functor s, Monad m) => Monad (Coroutine s m) where\n   return = pure\n   t >>= f = Coroutine (resume t >>= apply f)\n      where apply fc (Right x) = resume (fc x)\n            apply fc (Left s) = return (Left (fmap (>>= fc) s))\n```\n\nThe `MonadDistribution` instance follows from `lift : m a -> Coroutine (Await ()) m a`, defined as:\n\n```haskell\ninstance Functor s => MonadTrans (Coroutine s) where\n   lift = Coroutine . liftM Right\n```\n\n\nThe `MonadFactor` instance has less trivial content:\n\n```haskell\n-- | Execution is 'suspend'ed after each 'score'.\ninstance MonadFactor m => MonadFactor (SequentialT m) where\n  score w = lift (score w) >> suspend\n```\n\nFirst you take a `score` in the underlying `MonadFactor` instance, and then you `suspend`, which means:\n\n```haskell\n-- | A point where the computation is paused.\nsuspend :: Monad m => SequentialT m ()\nsuspend = SequentialT (Coroutine (return (Left (Await return))))\n```\n<!-- TODO: double check -->\n\nWe can move to the next suspension point with:\n\n```haskell\nadvance :: Monad m => SequentialT m a -> SequentialT m a\nadvance = SequentialT . bounce extract . runSequentialT\n\n```\n\nand move through all with:\n\n```haskell\n-- | Remove the remaining suspension points.\nfinish :: Monad m => SequentialT m a -> m a\nfinish = pogoStick extract . runSequentialT\n```\n\nBut most importantly, we can apply a natural transformation over the underlying monad `m` to only the current suspension.\n\n```haskell\nhoistFirst :: (forall x. m x -> m x) -> SequentialT m a -> SequentialT m a\nhoistFirst f = SequentialT . Coroutine . f . resume . runSequentialT\n```\n\nWhen `m` is `PopulationT n` for some other `n`, then `resampleGeneric` gives us one example of the natural transformation we want. In other words, operating in `SequentialT (PopulationT n)` works, and not only works but does something statistically interesting: particle filtering (aka SMC).\n\n**Note**: the running of `SequentialT`, i.e. getting from `SequentialT m a` to `m a` is surprisingly subtle, and there are many incorrect ways to do it, such as plain folds of the recursive structure. These can result in a semantics in which the transformation gets applied an exponentially large number of times.\n\n\n\n### DensityT\n\nSummary of key info on `DensityT`:\n\n- `DensityT :: (Type -> Type) -> (Type -> Type)`\n- `instance MonadDistribution (DensityT m)`\n-  **No** instance for `MonadFactor`\n\nA *trace* of a program of type `MonadDistribution m => m a` is an execution of the program, so a choice for each of the random values. Recall that `random` underlies all of the random values in a program, so a trace for a program is fully specified by a list of `Double`s, giving the value of each call to `random`.\n\nWith this in mind, a `DensityT m a` is an interpretation of a probabilistic program as a function from a trace to the *density* of that execution of the program.\n\nMonad-bayes offers two implementations, in `Control.Monad.Bayes.DensityT.State` and `Control.Monad.Bayes.DensityT.Free`. The first is slow but easy to understand, the second is more sophisticated, but faster.\n\nThe former is relatively straightforward: the `MonadDistribution` instance implements `random` as `get`ting the trace (using `get` from `MonadState`), using (and removing) the first element (`put` from `MonadState`), and writing that element to the output (using `tell` from `MonadWriter`). If the trace is empty, the `random` from the underlying monad is used, but the result is still written with `tell`.\n\nThe latter is best understood if you're familiar with the standard use of a free monad to construct a domain specific language. For probability in particular, see this [blog post](https://jtobin.io/simple-probabilistic-programming). Here's the definition:\n\n```haskell\nnewtype SamF a = Random (Double -> a)\nnewtype DensityT m a =\n    DensityT {getDensityT :: FT SamF m a}\n\ninstance Monad m => MonadDistribution (DensityT m) where\n  random = DensityT $ liftF (Random id)\n```\n\nThe monad-bayes implementation uses a more efficient implementation of `FreeT`, namely `FT` from the `free` package, known as the *Church transformed Free monad*. This is a technique explained in https://begriffs.com/posts/2016-02-04-difference-lists-and-codennsity.html. But that only changes the operational semantics - performance aside, it works just the same as the standard `FreeT` datatype.\n\nIf you unpack the definition, you get:\n\n```haskell\nDensityT m a ~ m (Either a (Double -> (DensityT m a)))\n```\n\nSince `FreeT` is a transformer, we can use `lift` to get a `MonadDistribution` instance.\n\n`runDensityT` is then defined using the folding pattern `iterFT`, which interprets `SamF` in the appropriate way:\n\n```haskell\nrunDensityT :: MonadDistribution m => [Double] -> DensityT m a -> m (a, [Double])\nrunDensityT randomness (DensityT m) =\n  runWriterT $ evalStateT (iterTM f $ hoistFT lift m) randomness\n  where\n    f (Random k) = do\n      -- This block runs in StateT [Double] (WriterT [Double]) m.\n      -- StateT propagates consumed randomness while WriterT records\n      -- randomness used, whether old or new.\n      xs <- get\n      x <- case xs of\n        [] -> random\n        y : ys -> put ys >> return y\n      tell [x]\n      k x\n```\n\nThis takes a list of `Double`s (a representation of a trace), and a probabilistic program like `example`, and gives back a `SamplerIO (Bool, [Double])`. At each call to `random` in `example`, the next double in the list is used. If the list of doubles runs out, calls are made to `random` using the underlying monad.\n\n<!-- The intuition here is that given a list of doubles in $[0,1]$, you can evaluate any probabilistic program. If your list of numbers is shorter than the number of calls to `random` in the program, the remaining calls are made in the underlying `MonadDistribution` instance `m`.  -->\n\n\n<!-- This uses `iterTM`, one of the rather expressive folding patterns in `Control.Monad.Trans.Free` (from the *free* package) and a clever use of the state monad transformer. The upshot is that you supply a  -->\n\n\n### TracedT\n\nSummary of key info on `TracedT`:\n\n- `TracedT :: (Type -> Type) -> (Type -> Type)`\n- `instance MonadDistribution m => MonadDistribution (TracedT m)`\n- `instance MonadFactor m => MonadFactor (TracedT m)`\n\n`TracedT m` is actually several related interpretations, each built on top of `DensityT`. These range in complexity.\n\n\n\n<!-- Control flow is stochastic in a probabilistic program, which is to say that whether we draw from some variable may depend on a draw from some variable earlier. This means that we don't have a fixed structure like a Bayes net corresponding to a probabilistic program. -->\n\nThe reason traces are relevant here is that monad-bayes implements a version of Markov Chain Monte Carlo (MCMC) that operates on arbitrary probabilistic programs often referred to as *trace MCMC*. The idea is that the MCMC chain takes place on traces of the program. A step constitutes a change to this trace, i.e. to the list of `Double`s. For instance, the algorithm for an MH step goes as follows:\n\n- propose a new trace by randomly redrawing a single `Double` in the trace\n- accept or reject with the MH criterion\n\nIt's convenient to specify a trace not just as a `[Double]` but also with the resulting output, and the density of that output. This is what monad-bayes does:\n\n```haskell\ndata Trace a = Trace\n  {\n    variables :: [Double],\n    output :: a,\n    runDensityT :: Log Double\n  }\n```\n\nWe also need a specification of the probabilistic program in question, free of any particular interpretation. That is precisely what `DensityT` is for.\n\nThe simplest version of `TracedT` is in `Control.Monad.Bayes.TracedT.Basic`\n\n```haskell\nTracedT m a ~ (DensityT Identity a, Log Double), m (Trace a))\n```\n\nA `TracedT` interpretation of a model is a particular run of the model with its corresponding probability, alongside a distribution over `Trace` info, which records: the value of each call to `random`, the value of the final output, and the density of this program trace.\n\nThis machinery allows us to implement MCMC (see inference methods below for details).\n\n### Integrator\n\nSummary of key info:\n\n- `Integrator :: Type -> Type`\n- `instance MonadDistribution Integrator`\n\n`Integrator` is in `Control.Monad.Bayes.Integrator`, defined as follows:\n\n```haskell\nnewtype Integrator a = Integrator {getCont :: Cont Double a}\n```\n\nThis `MonadDistribution` instance interprets a probabilistic program as a numerical integrator. For a nice explanation, see [this blog post](https://jtobin.io/giry-monad-implementation).\n\n`Integrator a` is isomorphic to `(a -> Double) -> Double`.\nA program `model` of type `Integrator a` will take a function `f` and calculate $E_{p}[f] = \\int f(x)*p(x)$ where $p$ is the density of `model`.\n\nThe integral for the expectation is performed by quadrature, using the tanh-sinh approach. For example, `random :: Integrator Double` is the program which takes a function `f` and integrates `f` over the $(0,1)$ range.\n\nWe can calculate the probability for an interval $(a,b)4 of any model of type `Integrator Double` by setting `f` to be the function that returns $1$ for that range, else $0$. Similarly for the CDF, MGF and so on.\n\n## Inference methods under the hood\n\n### Exact inference\n\nExact inference is nothing more than the use of the `Enumerator` instance of `MonadMeasure`. It should be noted that this is not a particularly efficient or clever version of exact inference.\n\nFor example, consider:\n\n```haskell\nexample = replicateM 100 $ do\n  x <- bernoulli 0.5\n  condition x\n  return x\n```\n\nDoing `enumerator example` will create a list of $2^{100}$ entries, all but one of which have $0$ mass. (See below for a way to perform this inference efficiently).\n\nThe main purpose of `Enumerator` is didactic, as a way to understand simple discrete distributions in full. In addition, you can use it in concert with transformers like `WeightedT`, to get a sense of how they work. For example, consider:\n\n```haskell\nexample = do\n  x <- bernoulli 0.5\n  condition x\n  return x\n```\n\n`(enumerator . runWeightedT) example` gives `[((False,0.0),0.5),((True,1.0),0.5)]`. This is quite edifying for understanding `(sampler . runWeightedT) example`. What it says is that there are precisely two ways the program will run, each with equal probability: either you get `False` with weight `0.0` or `True` with weight `1.0`.\n\n### Quadrature\n\nAs described on the section on `Integrator`, we can interpret our probabilistic program of type `MonadDistribution m => m a` as having concrete type `Integrator a`. This views our program as an integrator, allowing us to calculate expectations, probabilities and so on via quadrature (i.e. numerical approximation of an integral).\n\nThis can also handle programs of type `MonadMeasure m => m a`, that is, programs with `factor` statements. For these cases, a function `normalize :: WeightedT Integrator a -> Integrator a` is employed. For example,\n\n```haskell\nmodel :: MonadMeasure m => m Double\nmodel = do\n  var <- gamma 1 1\n  n <- normal 0 (sqrt var)\n  condition (n > 0)\n  return var\n```\n\nis really an unnormalized measure, rather than a probability distribution. `normalize` views it as of type `WeightedT Integrator Double`, which is isomorphic to `(Double -> (Double, Log Double) -> Double)`. This can be used to compute the normalization constant, and divide the integrator's output by it, all within `Integrator`.\n\n### Independent forward sampling\n\nFor any program of type `p = MonadDistribution m => m a`, we may do `sampler p` or `runST $ sampleSTfixed p`. Note that if there are any calls to `factor` in the program, then it cannot have type `MonadDistribution m`.\n\n### Independent weighted sampling\n\nConsider\n\n```haskell\nexample :: MonadMeasure m => m Bool\nexample = do\n  x <- bernoulli 0.5\n  condition x\n  return x\n```\n\n`(runWeightedT . sampler) example :: IO (Bool, Log Double)` returns a tuple of a truth value and a probability mass (or more generally density). How does this work? Types are clarifying:\n\n```haskell\nrun =\n  (sampler :: SamplerIO (a, Log Double) -> IO (a, Log Double) )\n  . (runWeightedT ::  WeightedT SamplerIO a -> SamplerIO (a, Log Double)\n```\n\nIn other words, the program is being interpreted in the `WeightedT SamplerIO` instance of `MonadMeasure`.\n\n\n### Metropolis Hastings MCMC\n\nThe version of MCMC in monad-bayes performs its random walk on program traces of type `Trace a`. The motivation for doing this is that **any** probabilistic program can then be used with MCMC entirely automatically.\n\nA single step in this chain (in Metropolis Hasting MCMC) looks like this:\n\n```haskell\nmhTrans :: MonadDistribution m => (WeightedT (State.DensityT m)) a -> Trace a -> m (Trace a)\nmhTrans m t@Trace {variables = us, probDensity = p} = do\n  let n = length us\n  us' <- do\n    i <- discrete $ discreteUniformAB 0 (n - 1)\n    u' <- random\n    case splitAt i us of\n      (xs, _ : ys) -> return $ xs ++ (u' : ys)\n      _ -> error \"impossible\"\n  ((b, q), vs) <- State.runDensityT (runWeightedT m) us'\n  let ratio = (exp . ln) $ min 1 (q * fromIntegral n / (p * fromIntegral (length vs)))\n  accept <- bernoulli ratio\n  return $ if accept then Trace vs b q else t\n```\n\nOur probabilistic program is interpreted in the type `WeightedT (DensityT m) a`, which is an instance of `MonadMeasure`. We use this to define our kernel on traces. We begin by perturbing the list of doubles contained in the trace by selecting a random position in the list and resampling there. We could do this *proposal* in a variety of ways, but here, we do so by choosing a double from the list at random and resampling it (hence, *single site* trace MCMC). We then run the program on this new list of doubles; `((b,q), vs)` is the outcome, probability, and result of all calls to `random`, respectively (recalling that the list of doubles may be shorter than the number of calls to `random`). The value of these is probabilistic in the underlying monad `m`. We then use the MH criterion to decide whether to accept the new list of doubles as our trace.\n\nMH is then easily defined as taking steps with this kernel, in the usual fashion. Note that it works for any probabilistic program whatsoever.\n\n**Warning**: the default proposal is single site, meaning that you change one random number in the trace at a time. As a result, the proposal may not be ergodic for models with hard constraints. As a simple example, suppose that you're doing a random walk, and trying to get from a trace corresponding to the output `(True, True)` to a trace corresponding to `(False, False)`. But if `(False, True)` and `(True, False)` have no probability, you have no hope of getting there. **Don't expect MCMC to be efficient without designing your own proposal, or even correct when the proposal is not ergodic**.\n\n### Sequential Importance Sampling\n\nThis is provided by\n\n```haskell\nsequentially ::\n  Monad m =>\n  -- | transformation\n  (forall x. m x -> m x) ->\n  -- | number of time steps\n  Int ->\n  SequentialT m a ->\n  m a\nsequentially f k = finish . composeCopies k (advance . hoistFirst f)\n```\n\nin `Control.Monad.Bayes.Sequential.Coroutine`. You provide a natural transformation in the underlying monad `m`, and `sequentially` applies that natural transformation at each point of conditioning in your program. The main use case is in defining `smc`, below, but here is a nice didactic use case:\n\nConsider the program:\n\n```haskell\nexample = replicateM 100 $ do\n  x <- bernoulli 0.5\n  condition x\n  return x\n```\n\nNaive enumeration, as in `enumerator example` is enormously and needlessly inefficient, because it will create a $2^{100}$ size list of possible values. What we'd like to do is to throw away values of `x` that are `False` at each condition statement, rather than carrying them along forever.\n\nSuppose we have a function `removeZeros :: Enumerator a -> Enumerator a`, which removes values of the distribution with $0$ mass from `Enumerator`. We can then write `enumerator $ sequentially removeZeros 100 $ model` to run `removeZeros` at each of the 100 `condition` statements, making the algorithm run quickly.\n\n### Sequential Monte Carlo\n\nSequential importance resampling works by doing `sequentially` with a resampler of your choice, such as `resampleMultinomial`, after first spawning a set of `n` particles.\n\n```haskell\nsmc ::\n  Monad m =>\n  -- | resampler\n  (forall x. PopulationT m x -> PopulationT m x) ->\n  -- | number of timesteps\n  Int ->\n  -- | population size\n  Int ->\n  -- | model\n  SequentialT (PopulationT m) a ->\n  PopulationT m a\nsmc resampler k n = sequentially resampler k . Seq.hoistFirst (spawn n >>)\n```\n\n### Particle Marginal Metropolis Hastings\n\nQuoting the monad-bayes paper:\n\n\"PMMH is only applicable to models with a specific structure, namely the probabilistic program needs to decompose to a prior over the global parameters `m param` and the rest of the model `param -> m a`. Combining these using >>= would yield the complete model of type `m a`.\"\n\n\"The idea is to do MH on the parameters of the model. Recall that for MH we need to compute the likelihood for the particular values of parameters but that involves integrating over the remaining random variables in the model which is intractable. Fortunately to obtain valid MH it is sufficient to have an unbiased estimator for the likelihood which is produced by a single sample from `WeightedT`. MH with such an estimator is referred to as pseudo-marginal MH. If instead of taking a single weight from `WeightedT` we take the sum of weights from `PopulationT` we obtain an unbiased estimator with lower variance. In particular if such a `PopulationT` is a result of smc the resulting algorithm is known as PMMH.\"\n\nBecause of the modularity of monad-bayes, the implementation is remarkably simple, and directly linked to the algorithm:\n\n```haskell\npmmh mcmcConf smcConf param model =\n  mcmc\n    mcmcConf\n    ( param\n        >>= runPopulationT\n          . pushEvidence\n          . Pop.hoist lift\n          . smc smcConf\n          . model\n    )\n```\n\n\nThere's a lot to unpack here. Here's the definition with more types. To shorten the signatures, the synonyms: `T = TracedT, S = SequentialT, P = PopulationT` are used:\n\n```haskell\npmmh ::\n  MonadDistribution m =>\n  MCMCConfig ->\n  SMCConfig (WeightedT m) ->\n  TracedT (WeightedT m) a1 ->\n  (a1 -> SequentialT (PopulationT (WeightedT m)) a2) ->\n  m [[(a2, Log Double)]]\npmmh mcmcConf smcConf param model =\n  (mcmc mcmcConf :: T m [(a, Log Double)] -> m [[(a, Log Double)]])\n  ((param :: T m b) >>=\n      (runPopulationT :: P (T m) a -> T m [(a, Log Double)])\n      . (pushEvidence :: P (T m) a -> P (T m) a)\n      . Pop.hoist (lift :: forall x. m x -> T m x)\n      . (smc smcConf :: S (P m) a -> P m a)\n      . (model :: b -> S (P m) a))\n```\n\n(Note that this uses the version of `mcmc` that uses the `TracedT` representation from `Control.Monad.Bayes.TracedT.Static`.)\n\nTo understand this, note that the outer algorithm is just `mcmc`. But the probabilistic program that we pass to `mcmc` does the following: run `param` to get values for the parameters and then pass these to `model`. Then run `n` steps of SMC with `k` particles. Then lift the underlying monad `m` into `TracedT m`. Then calculate the sum of the weights of the particles and `factor` on this (this is what `pushEvidence` does). This `factor` takes place in `TracedT m`, so it is \"visible\" to `mcmc`.\n\n\n### Resample-Move Sequential Monte Carlo\n\n<!-- This is pretty complicated to think about, but again, the key is to think smart, not hard, and rely on the modularity of the architecture.  -->\n\nThe paper introducing monad-bayes has this to say about resample-move SMC:\n\n\"A common problem with particle filters is that of particle degeneracy, where after resampling many particles are the same, effectively reducing the sample size. One way to ameliorate this problem is to introduce rejuvenation moves, where after each resampling we apply a number of MCMC transitions to each particle independently, thus spreading them around the space. If we use an MCMC kernel that preserves the target distribution at a given step, the resulting algorithm is correct\"\n\nmonad-bayes provides three versions of RMSMC, each of which uses one of the three `TracedT` implementations respectively. Here is the simplest, which I have annotated with types. To shorten the signatures, the synonyms: `T = TracedT, S = SequentialT, P = PopulationT` are used:\n\n```haskell\n\nrmsmcBasic ::\n  MonadDistribution m =>\n  MCMCConfig ->\n  SMCConfig m ->\n  -- | model\n  S (T (P m)) a ->\n  P m a\nrmsmc (MCMCConfig {..}) (SMCConfig {..}) =\n  (TrBas.marginal :: T (P m) a -> P m a )\n  . sequentially\n      (\n      (composeCopies numMCMCSteps TrBas.mhStep :: T (P m) a -> T (P m) a )\n      . TrBas.hoist (resampleSystematic :: P m a -> P m a ) )\n      numSteps\n  . (S.hoistFirst (TrBas.hoist (spawn numParticles >>)) :: S (T (P m)) a -> S (T (P m)) a ))\n```\n\nWhat is this doing? Recall that `S m a` represents an `m` of coroutines over `a`. Recall that `TracedT m a` represents an `m` of  traced computations of `a`. Recall that `P m a` represents an `m` of a list of `a`s.\n\nThis means that an `S (T (P m)) a` is a program \"interpreted as a population of traced coroutines\". The paper adds that this \"allows us to apply MH transitions to partially executed coroutines, which is exactly what we require for the rejuvenation steps.\"\n\nSo the algorithm works by creating `n` particles, and at each of the first `k` calls to `factor`, first resampling the population and then for each particle in the population, doing an MH-MCMC walk for `t` steps to update it.\n\n### Sequential Monte Carlo Squared\n\nThis combines RMSMC and PMMH. That is, it is RMSMC, but for the MCMC rejuvenation procedure, PMMH is used instead of MH.\n\nThere is one slight complication here, related to the fact that the MTL style effect system approach requires newtypes when more than one of a given effect appears in a stack, in order to differentiate them.\n\n<!-- todo: finish -->\n\n<!-- ## Cheat Sheet\n\n\nBasic instances of `MonadDistribution`:\n- `SamplerIO`\n- `TracedT m`\n- `SequentialT m`\n\nBasic instances of `MonadFactor`:\n- `WeightedT m`\n- `SequentialT m`\n\nBasic instances of `MonadMeasure`:\n- `Enumerator` (discrete distributions only)\n\nComposed instances of `MonadMeasure`:\n\n- `WeightedT SamplerIO` (used in weighted sampling)\n- `TracedT (WeightedT SamplerIO)` (used in MCMC)\n- `SequentialT (PopulationT (WeightedT SamplerIO)` (used in SMC)\n-  more -->\n"
  },
  {
    "path": "docs/mkdocs.yml",
    "content": "site_name: Probabilistic Programming in Haskell\ntheme:\n  name: material\n  features:\n    - content.code.annotate\n    - content.tooltips\n    - navigation.sections\n    - navigation.top\n    - navigation.tracking\n    - search.highlight\n    - search.share\n    - search.suggest\n    - toc.follow\n  palette:\n    - scheme: default\n      primary: indigo\n      accent: indigo\n      toggle:\n        icon: material/brightness-7\n        name: Switch to dark mode\n    - scheme: slate\n      primary: indigo\n      accent: indigo\n      toggle:\n        icon: material/brightness-4\n        name: Switch to light mode\n\nextra:\n  social:\n    - icon: fontawesome/brands/github\n      link: https://github.com/tweag/monad-bayes\n\nmarkdown_extensions:\n  - pymdownx.arithmatex:\n      generic: true\n  - admonition\n  - attr_list\n  - pymdownx.details\n  - pymdownx.emoji:\n      emoji_index: !!python/name:materialx.emoji.twemoji\n      emoji_generator: !!python/name:materialx.emoji.to_svg\n  - pymdownx.highlight:\n      anchor_linenums: true\n  - pymdownx.inlinehilite\n  - pymdownx.snippets\n  - pymdownx.superfences\n  - pymdownx.tabbed:\n      alternate_style: true\n  - toc:\n      permalink: true\nextra_javascript:\n  - javascripts/mathjax.js\n  - https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js\n\n\nnav:\n    - 'index.md'\n    - 'probprog.md'\n    - 'tutorials.md'\n    - 'examples.md'\n    - 'usage.md'\n"
  },
  {
    "path": "docs/netlify.toml",
    "content": "[build]\n  command = \"mkdocs build\"\n  publish = \"site\""
  },
  {
    "path": "docs/requirements.txt",
    "content": "mkdocs\nmkdocs-material\npymdown-extensions"
  },
  {
    "path": "docs/runtime.txt",
    "content": "3.8"
  },
  {
    "path": "flake.nix",
    "content": "{\n  description = \"A library for probabilistic programming in Haskell.\";\n  nixConfig = {\n    extra-substituters = [\n      \"https://tweag-monad-bayes.cachix.org\"\n      \"https://tweag-jupyter.cachix.org\"\n    ];\n    extra-trusted-public-keys = [\n      \"tweag-monad-bayes.cachix.org-1:tmmTZ+WvtUMpYWD4LAkfSuNKqSuJyL3N8ZVm/qYtqdc=\"\n      \"tweag-jupyter.cachix.org-1:UtNH4Zs6hVUFpFBTLaA4ejYavPo5EFFqgd7G7FxGW9g=\"\n    ];\n  };\n  inputs = {\n    nixpkgs.url = \"nixpkgs/nixos-unstable\";\n    flake-compat = {\n      url = \"github:edolstra/flake-compat\";\n      flake = false;\n    };\n    flake-utils.url = \"github:numtide/flake-utils\";\n    pre-commit-hooks = {\n      url = \"github:cachix/pre-commit-hooks.nix\";\n      inputs = {\n        nixpkgs.follows = \"nixpkgs\";\n      };\n    };\n    jupyenv = {\n      url = \"github:tweag/jupyenv\";\n      inputs = {\n        flake-compat.follows = \"flake-compat\";\n        flake-utils.follows = \"flake-utils\";\n      };\n    };\n  };\n  outputs =\n    { self\n    , nixpkgs\n    , jupyenv\n    , flake-compat\n    , flake-utils\n    , pre-commit-hooks\n    ,\n    } @ inputs:\n    flake-utils.lib.eachSystem\n      [\n        # Tier 1 - Tested in CI\n        flake-utils.lib.system.x86_64-linux\n        flake-utils.lib.system.x86_64-darwin\n        # Tier 2 - Not tested in CI (at least for now)\n        flake-utils.lib.system.aarch64-linux\n        flake-utils.lib.system.aarch64-darwin\n      ]\n      (\n        system:\n        let\n          inherit (nixpkgs) lib;\n          inherit (jupyenv.lib.${system}) mkJupyterlabNew;\n          pkgs = import nixpkgs {\n            inherit system;\n            config.allowBroken = true;\n          };\n\n          warnToUpdateNix = pkgs.lib.warn \"Consider updating to Nix > 2.7 to remove this warning!\";\n          src = lib.sourceByRegex self [\n            \"^benchmark.*$\"\n            \"^models.*$\"\n            \"^monad-bayes\\.cabal$\"\n            \"^src.*$\"\n            \"^test.*$\"\n            \"^.*\\.md\"\n          ];\n\n          # Always keep this up to date with the tested-with section in monad-bayes.cabal!\n          # and the build-all-ghcs job in .github/workflows/nix.yml!\n          ghcs = [\n            \"ghc90\"\n            \"ghc92\"\n            \"ghc94\"\n            \"ghc96\"\n            \"ghc98\"\n            \"ghc910\"\n            \"default\"\n          ];\n\n          allHaskellPackages = lib.filterAttrs (ghcVersion: _: builtins.elem ghcVersion ghcs) (pkgs.haskell.packages // { default = pkgs.haskellPackages; });\n\n          monad-bayes-for = haskellPackages: haskellPackages.developPackage {\n            name = \"monad-bayes\";\n            root = src;\n            cabal2nixOptions = \"--benchmark -fdev\";\n\n            # https://github.com/tweag/monad-bayes/pull/256: Don't run tests on Mac because of machine precision issues\n            modifier = drv:\n              if system == \"x86_64-linux\"\n              then drv\n              else pkgs.haskell.lib.dontCheck drv;\n            overrides = self: super:\n              with pkgs.haskell.lib;\n              {\n                # Please check after flake.lock updates whether some of these overrides can be removed\n                brick = super.callHackageDirect {\n                  pkg = \"brick\";\n                  ver = \"2.10\";\n                  sha256 = \"sha256-m1PvPySOuTZbcnCm4j7M7AihK0w8OGKumyRR3jU5nfw=\";\n                } { };\n                vty = super.callHackageDirect {\n                  pkg = \"vty\";\n                  ver = \"6.4\";\n                  sha256 = \"sha256-xHtMfRaJVk95UTwh2QU8VL3MgXuLQOzTwqTa5oevZ5U=\";\n                } { };\n              }\n              // lib.optionalAttrs (lib.versionAtLeast super.ghc.version \"9.10\") {\n                # Please check after flake.lock updates whether some of these overrides can be removed\n                microstache = doJailbreak super.microstache;\n              };\n          };\n\n          monad-bayes-per-ghc = lib.mapAttrs (_: monad-bayes-for) allHaskellPackages;\n\n          monad-bayes = monad-bayes-per-ghc.default;\n\n          monad-bayes-all-ghcs = pkgs.linkFarm \"monad-bayes-all-ghcs\" monad-bayes-per-ghc;\n\n          jupyterEnvironment = mkJupyterlabNew {\n            imports = [\n              (import ./kernels/haskell.nix { inherit monad-bayes; })\n            ];\n          };\n\n\n          pre-commit = pre-commit-hooks.lib.${system}.run {\n            inherit src;\n            hooks = {\n              alejandra.enable = true;\n              cabal-fmt.enable = true;\n              hlint.enable = false;\n              ormolu.enable = true;\n            };\n          };\n          devShellFor = ghcVersion: haskellPackages: addJupyter: haskellPackages.shellFor {\n            packages = hps: [\n              (monad-bayes-for haskellPackages)\n            ];\n            nativeBuildInputs = with pre-commit-hooks.packages.${system}; [\n              alejandra\n              cabal-fmt\n              hlint\n              ormolu\n            ] ++ lib.optional addJupyter jupyterEnvironment\n            ++ (with haskellPackages; [\n              haskell-language-server\n            ]);\n          };\n        in\n        rec {\n          packages = {\n            inherit monad-bayes monad-bayes-per-ghc monad-bayes-all-ghcs pre-commit jupyterEnvironment;\n          };\n          packages.default = packages.monad-bayes;\n          checks = { inherit monad-bayes pre-commit; };\n          devShells = lib.concatMapAttrs\n            (ghcVersion: haskellPackages: {\n              \"${ghcVersion}\" = devShellFor ghcVersion haskellPackages false;\n              \"${ghcVersion}-jupyter\" = devShellFor ghcVersion haskellPackages true;\n            })\n            allHaskellPackages;\n          # Needed for backwards compatibility with Nix versions <2.8\n          defaultPackage = warnToUpdateNix packages.default;\n          devShell = warnToUpdateNix devShells.default;\n          formatter = pkgs.nixpkgs-fmt;\n        }\n      );\n}\n"
  },
  {
    "path": "kernels/haskell.nix",
    "content": "{ monad-bayes }:\n\n{ pkgs, ... }: {\n  kernel.haskell.monad-bayes = {\n    enable = true;\n    name = \"monad-bayes\";\n    displayName = \"monad-bayes\";\n    extraHaskellPackages = p: [\n      p.hvega\n      p.lens\n      p.log-domain\n      p.katip\n      p.ihaskell-hvega\n      p.ihaskell-diagrams\n      p.diagrams\n      p.diagrams-cairo\n      p.aeson\n      p.lens\n      p.lens-aeson\n      p.pretty-simple\n      p.monad-loops\n      # hamilton seems unmaintained, unclear whether we can keep it. See https://github.com/tweag/monad-bayes/issues/300\n      # p.hamilton\n      p.hmatrix\n      p.vector-sized\n      p.linear\n      p.recursion-schemes\n      p.data-fix\n      p.free\n      p.comonad\n      p.adjunctions\n      p.distributive\n      p.vector\n      p.megaparsec\n      p.histogram-fill\n      # Strange build error which I can't fix:\n      # > Configuring gloss-rendering-1.13.1.2...\n      # >\n      # > Setup: Encountered missing or private dependencies:\n      # > bytestring >=0.11 && <0.12\n      # p.gloss\n      monad-bayes\n    ];\n  };\n}\n"
  },
  {
    "path": "models/BetaBin.hs",
    "content": "{-# LANGUAGE ImportQualifiedPost #-}\n{-# OPTIONS_GHC -Wno-incomplete-uni-patterns #-}\n{-# OPTIONS_GHC -Wno-missing-export-lists #-}\n\nmodule BetaBin where\n\n-- The beta-binomial model in latent variable and urn model representations.\n-- The two formulations should be exactly equivalent, but only urn works with Dist.\nimport Control.Monad (replicateM)\nimport Control.Monad.Bayes.Class\n  ( MonadDistribution (bernoulli, uniform),\n    MonadMeasure,\n    condition,\n  )\nimport Control.Monad.State.Lazy (evalStateT, get, put)\nimport Pipes ((<-<))\nimport Pipes.Prelude qualified as P hiding (show)\n\n-- | Beta-binomial model as an i.i.d. sequence conditionally on weight.\nlatent :: (MonadDistribution m) => Int -> m [Bool]\nlatent n = do\n  weight <- uniform 0 1\n  replicateM n (bernoulli weight)\n\n-- | Beta-binomial as a random process.\n-- Equivalent to the above by De Finetti's theorem.\nurn :: (MonadDistribution m) => Int -> m [Bool]\nurn n = flip evalStateT (1, 1) $ do\n  replicateM n do\n    (a, b) <- get\n    let weight = a / (a + b)\n    outcome <- bernoulli weight\n    let (a', b') = if outcome then (a + 1, b) else (a, b + 1)\n    put (a', b')\n    return outcome\n\n-- | Beta-binomial as a random process.\n-- This time using the Pipes library, for a more pure functional style\nurnP :: (MonadDistribution m) => Int -> m [Bool]\nurnP n = P.toListM $ P.take n <-< P.unfoldr toss (1, 1)\n  where\n    toss (a, b) = do\n      let weight = a / (a + b)\n      outcome <- bernoulli weight\n      let (a', b') = if outcome then (a + 1, b) else (a, b + 1)\n      return $ Right (outcome, (a', b'))\n\n-- | A beta-binomial model where the first three states are True,True,False.\n-- The resulting distribution is on the remaining outcomes.\ncond :: (MonadMeasure m) => m [Bool] -> m [Bool]\ncond d = do\n  ~(first : second : third : rest) <- d\n  condition first\n  condition second\n  condition (not third)\n  return rest\n\n-- | The final conditional model, abstracting the representation.\nmodel :: (MonadMeasure m) => (Int -> m [Bool]) -> Int -> m Int\nmodel repr n = fmap count $ cond $ repr (n + 3)\n  where\n    -- Post-processing by counting the number of True values.\n    count :: [Bool] -> Int\n    count = length . filter id\n"
  },
  {
    "path": "models/ConjugatePriors.hs",
    "content": "{-# LANGUAGE ImportQualifiedPost #-}\n{-# LANGUAGE RecordWildCards #-}\n{-# LANGUAGE TypeFamilies #-}\n\nmodule ConjugatePriors where\n\nimport Control.Applicative (Applicative (..))\nimport Control.Foldl (fold)\nimport Control.Foldl qualified as F\nimport Control.Monad.Bayes.Class (Bayesian (..), MonadDistribution (bernoulli, beta, gamma, normal), MonadMeasure, normalPdf)\nimport Numeric.Log (Log (Exp))\n-- Prelude exports liftA2 from GHC 9.6 on, see https://github.com/haskell/core-libraries-committee/blob/main/guides/export-lifta2-prelude.md\n-- import Control.Applicative further up can be removed once we don't support GHC <= 9.4 anymore\n\nimport Prelude hiding (Applicative (..))\n\ntype GammaParams = (Double, Double)\n\ntype BetaParams = (Double, Double)\n\ntype NormalParams = (Double, Double)\n\n-- | Posterior on the precision of the normal after the points are observed\ngammaNormalAnalytic ::\n  (MonadMeasure m, Foldable t, Functor t) =>\n  GammaParams ->\n  t Double ->\n  m Double\n\n-- | Exact posterior for the model.\n-- For derivation see Kevin Murphy's\n-- \"Conjugate Bayesian analysis of the Gaussian distribution\"\n-- section 4.\ngammaNormalAnalytic (a, b) points = gamma a' (recip b')\n  where\n    a' = a + fromIntegral (length points) / 2\n    b' = b + sum (fmap (** 2) points) / 2\n\n-- | Posterior on beta after the bernoulli sample\nbetaBernoulliAnalytic :: (MonadMeasure m, Foldable t) => BetaParams -> t Bool -> m Double\nbetaBernoulliAnalytic (a, b) points = beta a' b'\n  where\n    (n, s) = fold (liftA2 (,) F.length (F.premap (\\case True -> 1; False -> 0) F.sum)) points\n    a' = a + s\n    b' = b + fromIntegral n - s\n\nbernoulliPdf :: (Floating a) => a -> Bool -> Log a\nbernoulliPdf p x = let numBool = if x then 1.0 else 0 in Exp $ log (p ** numBool * (1 - p) ** (1 - numBool))\n\nbetaBernoulli' :: (MonadMeasure m) => (Double, Double) -> Bayesian m Double Bool\nbetaBernoulli' (a, b) = Bayesian (beta a b) bernoulli bernoulliPdf\n\nnormalNormal' :: (MonadMeasure m) => Double -> (Double, Double) -> Bayesian m Double Double\nnormalNormal' var (mu0, var0) = Bayesian (normal mu0 (sqrt var0)) (`normal` (sqrt var)) (`normalPdf` (sqrt var))\n\ngammaNormal' :: (MonadMeasure m) => (Double, Double) -> Bayesian m Double Double\ngammaNormal' (a, b) = Bayesian (gamma a (recip b)) (normal 0 . sqrt . recip) (normalPdf 0 . sqrt . recip)\n\nnormalNormalAnalytic ::\n  (MonadMeasure m, Foldable t) =>\n  Double ->\n  NormalParams ->\n  t Double ->\n  m Double\nnormalNormalAnalytic sigma_2 (mu0, sigma0_2) points = normal mu' (sqrt sigma_2')\n  where\n    (n, s) = fold (liftA2 (,) F.length F.sum) points\n    mu' = sigma_2' * (mu0 / sigma0_2 + s / sigma_2)\n    sigma_2' = recip (recip sigma0_2 + fromIntegral n / sigma_2)\n"
  },
  {
    "path": "models/Dice.hs",
    "content": "module Dice (diceHard, diceSoft) where\n\n-- A toy model for dice rolling from http://dl.acm.org/citation.cfm?id=2804317\n-- Exact results can be obtained using Dist monad\n\nimport Control.Applicative (Applicative (..))\nimport Control.Monad.Bayes.Class\n  ( MonadDistribution (uniformD),\n    MonadFactor (score),\n    MonadMeasure,\n    condition,\n  )\n-- Prelude exports liftA2 from GHC 9.6 on, see https://github.com/haskell/core-libraries-committee/blob/main/guides/export-lifta2-prelude.md\n-- import Control.Applicative further up can be removed once we don't support GHC <= 9.4 anymore\n\nimport Prelude hiding (Applicative (..))\n\n-- | A toss of a six-sided die.\ndie :: (MonadDistribution m) => m Int\ndie = uniformD [1 .. 6]\n\n-- | A sum of outcomes of n independent tosses of six-sided dice.\ndice :: (MonadDistribution m) => Int -> m Int\ndice 1 = die\ndice n = liftA2 (+) die (dice (n - 1))\n\n-- | Toss of two dice where the output is greater than 4.\ndiceHard :: (MonadMeasure m) => m Int\ndiceHard = do\n  result <- dice 2\n  condition (result > 4)\n  return result\n\n-- | Toss of two dice with an artificial soft constraint.\ndiceSoft :: (MonadMeasure m) => m Int\ndiceSoft = do\n  result <- dice 2\n  score (1 / fromIntegral result)\n  return result\n"
  },
  {
    "path": "models/HMM.hs",
    "content": "-- HMM from Anglican (https://bitbucket.org/probprog/anglican-white-paper)\n\nmodule HMM where\n\nimport Control.Monad (replicateM, when)\nimport Control.Monad.Bayes.Class\n  ( MonadDistribution (categorical, normal, uniformD),\n    MonadFactor,\n    MonadMeasure,\n    factor,\n    normalPdf,\n  )\nimport Control.Monad.Bayes.Enumerator (enumerateToDistribution)\nimport Data.Maybe (fromJust, isJust)\nimport Data.Vector (fromList)\nimport Pipes (MFunctor (hoist), MonadTrans (lift), each, yield, (>->))\nimport Pipes.Core (Producer)\nimport Pipes.Prelude qualified as Pipes\n\n-- | Observed values\nvalues :: [Double]\nvalues =\n  [ 0.9,\n    0.8,\n    0.7,\n    0,\n    -0.025,\n    -5,\n    -2,\n    -0.1,\n    0,\n    0.13,\n    0.45,\n    6,\n    0.2,\n    0.3,\n    -1,\n    -1\n  ]\n\n-- | The transition model.\ntrans :: (MonadDistribution m) => Int -> m Int\ntrans 0 = categorical $ fromList [0.1, 0.4, 0.5]\ntrans 1 = categorical $ fromList [0.2, 0.6, 0.2]\ntrans 2 = categorical $ fromList [0.15, 0.7, 0.15]\ntrans _ = error \"unreachable\"\n\n-- | The emission model.\nemissionMean :: Int -> Double\nemissionMean 0 = -1\nemissionMean 1 = 1\nemissionMean 2 = 0\nemissionMean _ = error \"unreachable\"\n\n-- | Initial state distribution\nstart :: (MonadDistribution m) => m Int\nstart = uniformD [0, 1, 2]\n\n-- | Example HMM from http://dl.acm.org/citation.cfm?id=2804317\nhmm :: (MonadMeasure m) => [Double] -> m [Int]\nhmm dataset = f dataset (const . return)\n  where\n    expand x y = do\n      x' <- trans x\n      factor $ normalPdf (emissionMean x') 1 y\n      return x'\n    f [] k = start >>= k []\n    f (y : ys) k = f ys (\\xs x -> expand x y >>= k (x : xs))\n\nsyntheticData :: (MonadDistribution m) => Int -> m [Double]\nsyntheticData n = replicateM n syntheticPoint\n  where\n    syntheticPoint = uniformD [0, 1, 2]\n\n-- | Equivalent model, but using pipes for simplicity\n\n-- | Prior expressed as a stream\nhmmPrior :: (MonadDistribution m) => Producer Int m b\nhmmPrior = do\n  x <- lift start\n  yield x\n  Pipes.unfoldr (fmap (Right . (\\k -> (k, k))) . trans) x\n\n-- | Observations expressed as a stream\nhmmObservations :: (Functor m) => [a] -> Producer (Maybe a) m ()\nhmmObservations dataset = each (Nothing : (Just <$> reverse dataset))\n\n-- | Posterior expressed as a stream\nhmmPosterior :: (MonadMeasure m) => [Double] -> Producer Int m ()\nhmmPosterior dataset =\n  zipWithM\n    hmmLikelihood\n    hmmPrior\n    (hmmObservations dataset)\n  where\n    hmmLikelihood :: (MonadFactor f) => (Int, Maybe Double) -> f ()\n    hmmLikelihood (l, o) = when (isJust o) (factor $ normalPdf (emissionMean l) 1 (fromJust o))\n\n    zipWithM f p1 p2 = Pipes.zip p1 p2 >-> Pipes.chain f >-> Pipes.map fst\n\nhmmPosteriorPredictive :: (MonadDistribution m) => [Double] -> Producer Double m ()\nhmmPosteriorPredictive dataset =\n  Pipes.hoist enumerateToDistribution (hmmPosterior dataset)\n    >-> Pipes.mapM (\\x -> normal (emissionMean x) 1)\n"
  },
  {
    "path": "models/Helper.hs",
    "content": "{-# LANGUAGE DerivingStrategies #-}\n{-# LANGUAGE ImportQualifiedPost #-}\n\nmodule Helper where\n\nimport Control.Monad.Bayes.Class (MonadMeasure)\nimport Control.Monad.Bayes.Inference.MCMC (MCMCConfig (..), Proposal (SingleSiteMH))\nimport Control.Monad.Bayes.Inference.RMSMC (rmsmcBasic)\nimport Control.Monad.Bayes.Inference.SMC\n  ( SMCConfig (SMCConfig, numParticles, numSteps, resampler),\n    smc,\n  )\nimport Control.Monad.Bayes.Population\nimport Control.Monad.Bayes.Sampler.Strict\nimport Control.Monad.Bayes.Traced hiding (model)\nimport Control.Monad.Bayes.Weighted\nimport Control.Monad.ST (runST)\nimport HMM qualified\nimport LDA qualified\nimport LogReg qualified\n\ndata Model = LR Int | HMM Int | LDA (Int, Int)\n  deriving stock (Show, Read)\n\nparseModel :: String -> Maybe Model\nparseModel s =\n  case s of\n    'L' : 'R' : n -> Just $ LR (read n)\n    'H' : 'M' : 'M' : n -> Just $ HMM (read n)\n    'L' : 'D' : 'A' : n -> Just $ LDA (5, read n)\n    _ -> Nothing\n\nserializeModel :: Model -> Maybe String\nserializeModel (LR n) = Just $ \"LR\" ++ show n\nserializeModel (HMM n) = Just $ \"HMM\" ++ show n\nserializeModel (LDA (5, n)) = Just $ \"LDA\" ++ show n\nserializeModel (LDA _) = Nothing\n\ndata Alg = SMC | MH | RMSMC\n  deriving stock (Read, Show, Eq, Ord, Enum, Bounded)\n\ngetModel :: (MonadMeasure m) => Model -> (Int, m String)\ngetModel model = (size model, program model)\n  where\n    size (LR n) = n\n    size (HMM n) = n\n    size (LDA (d, w)) = d * w\n    program (LR n) = show <$> (LogReg.logisticRegression (runST $ sampleSTfixed (LogReg.syntheticData n)))\n    program (HMM n) = show <$> (HMM.hmm (runST $ sampleSTfixed (HMM.syntheticData n)))\n    program (LDA (d, w)) = show <$> (LDA.lda (runST $ sampleSTfixed (LDA.syntheticData d w)))\n\nrunAlg :: Model -> Alg -> SamplerIO String\nrunAlg model alg =\n  case alg of\n    SMC ->\n      let n = 100\n          (k, m) = getModel model\n       in show <$> runPopulationT (smc SMCConfig {numSteps = k, numParticles = n, resampler = resampleSystematic} m)\n    MH ->\n      let t = 100\n          (_, m) = getModel model\n       in show <$> unweighted (mh t m)\n    RMSMC ->\n      let n = 10\n          t = 1\n          (k, m) = getModel model\n       in show <$> runPopulationT (rmsmcBasic MCMCConfig {numMCMCSteps = t, numBurnIn = 0, proposal = SingleSiteMH} (SMCConfig {numSteps = k, numParticles = n, resampler = resampleSystematic}) m)\n\nrunAlgFixed :: Model -> Alg -> IO String\nrunAlgFixed model alg = sampleIOfixed $ runAlg model alg\n"
  },
  {
    "path": "models/LDA.hs",
    "content": "{-# LANGUAGE ImportQualifiedPost #-}\n\n-- LDA model from Anglican\n-- (https://bitbucket.org/probprog/anglican-white-paper)\n\n-- This model is just a toy/reference implementation.\n-- A more serious one would not store documents as lists of words.\n-- The point is just to showcase the model\n\nmodule LDA where\n\nimport Control.Monad qualified as List (replicateM)\nimport Control.Monad.Bayes.Class\n  ( MonadDistribution (categorical, dirichlet, uniformD),\n    MonadMeasure,\n    factor,\n  )\nimport Control.Monad.Bayes.Sampler.Strict (sampleIOfixed)\nimport Control.Monad.Bayes.Traced (mh)\nimport Control.Monad.Bayes.Weighted (unweighted)\nimport Data.Map qualified as Map\nimport Data.Text (Text, words)\nimport Data.Vector as V (Vector, replicate, (!))\nimport Data.Vector qualified as V hiding (length, mapM, mapM_)\nimport Numeric.Log (Log (Exp))\nimport Text.Pretty.Simple (pPrint)\nimport Prelude hiding (words)\n\nvocabulary :: [Text]\nvocabulary = [\"bear\", \"wolf\", \"python\", \"prolog\"]\n\ntopics :: [Text]\ntopics = [\"topic1\", \"topic2\"]\n\ntype Documents = [[Text]]\n\ndocuments :: Documents\ndocuments =\n  [ words \"bear wolf bear wolf bear wolf python wolf bear wolf\",\n    words \"python prolog python prolog python prolog python prolog python prolog\",\n    words \"bear wolf bear wolf bear wolf bear wolf bear wolf\",\n    words \"python prolog python prolog python prolog python prolog python prolog\",\n    words \"bear wolf bear python bear wolf bear wolf bear wolf\"\n  ]\n\nwordDistPrior :: (MonadDistribution m) => m (V.Vector Double)\nwordDistPrior = dirichlet $ V.replicate (length vocabulary) 1\n\ntopicDistPrior :: (MonadDistribution m) => m (V.Vector Double)\ntopicDistPrior = dirichlet $ V.replicate (length topics) 1\n\nwordIndex :: Map.Map Text Int\nwordIndex = Map.fromList $ zip vocabulary [0 ..]\n\nlda ::\n  (MonadMeasure m) =>\n  Documents ->\n  m (Map.Map Text (V.Vector (Text, Double)), [(Text, V.Vector (Text, Double))])\nlda docs = do\n  word_dist_for_topic <- do\n    ts <- List.replicateM (length topics) wordDistPrior\n    return $ Map.fromList $ zip topics ts\n  let obs doc = do\n        topic_dist <- topicDistPrior\n        let f word = do\n              topic <- (fmap (topics !!) . categorical) topic_dist\n              factor $ (Exp . log) $ (word_dist_for_topic Map.! topic) V.! (wordIndex Map.! word)\n        mapM_ f doc\n        return topic_dist\n  td <- mapM obs docs\n  return\n    ( fmap (V.zip (V.fromList vocabulary)) word_dist_for_topic,\n      zip (fmap (foldr1 (\\x y -> x <> \" \" <> y)) docs) (fmap (V.zip $ V.fromList [\"topic1\", \"topic2\"]) td)\n    )\n\nsyntheticData :: (MonadDistribution m) => Int -> Int -> m [[Text]]\nsyntheticData d w = List.replicateM d (List.replicateM w syntheticWord)\n  where\n    syntheticWord = uniformD vocabulary\n\nrunLDA :: IO ()\nrunLDA = do\n  s <- sampleIOfixed $ unweighted $ mh 1000 $ lda documents\n  pPrint $ take 1 s\n"
  },
  {
    "path": "models/LogReg.hs",
    "content": "{-# LANGUAGE BlockArguments #-}\n\n-- Logistic regression model from Anglican\n-- (https://bitbucket.org/probprog/anglican-white-paper)\n\nmodule LogReg (logisticRegression, syntheticData, xs, labels) where\n\nimport Control.Monad (replicateM)\nimport Control.Monad.Bayes.Class\n  ( MonadDistribution (bernoulli, gamma, normal, uniform),\n    MonadMeasure,\n    factor,\n  )\nimport Numeric.Log (Log (Exp))\n\nlogisticRegression :: (MonadMeasure m) => [(Double, Bool)] -> m Double\nlogisticRegression dat = do\n  m <- normal 0 1\n  b <- normal 0 1\n  sigma <- gamma 1 1\n  let y x = normal (m * x + b) sigma\n      sigmoid x = y x >>= \\t -> return $ 1 / (1 + exp (-t))\n      obs x label = do\n        p <- sigmoid x\n        factor $ (Exp . log) $ if label then p else 1 - p\n  mapM_ (uncurry obs) dat\n  sigmoid 8\n\n-- make a synthetic dataset by randomly choosing input-label pairs\nsyntheticData :: (MonadDistribution m) => Int -> m [(Double, Bool)]\nsyntheticData n = replicateM n do\n  x <- uniform (-1) 1\n  label <- bernoulli 0.5\n  return (x, label)\n\n-- a tiny test dataset, for sanity-checking\nxs :: [Double]\nxs = [-10, -5, 2, 6, 10]\n\nlabels :: [Bool]\nlabels = [False, False, True, True, True]\n"
  },
  {
    "path": "models/NestedInference.hs",
    "content": "{-# LANGUAGE BlockArguments #-}\n\nmodule NestedInference where\n\nimport Control.Monad.Bayes.Class (MonadDistribution (uniformD), MonadMeasure, factor)\nimport Control.Monad.Bayes.Enumerator (mass)\nimport Numeric.Log (Log (Exp))\n\ndata Utterance = ASquare | AShape deriving (Eq, Show, Ord)\n\ndata State = Square | Circle deriving (Eq, Show, Ord)\n\ndata Action = Speak Utterance | DoNothing deriving (Eq, Show, Ord)\n\n-- | uniformly likely to say any true utterance to convey the given state\ntruthfulAgent :: (MonadDistribution m) => State -> m Action\ntruthfulAgent state = uniformD case state of\n  Square -> [Speak ASquare, Speak AShape, DoNothing]\n  Circle -> [Speak AShape, DoNothing]\n\n-- | a listener which applies Bayes rule to infer the state\n-- given an observed action of the other agent\nlistener :: (MonadMeasure m) => Action -> m State\nlistener observedAction = do\n  state <- uniformD [Square, Circle]\n  factor $ log $ Exp $ mass (truthfulAgent state) observedAction\n  return state\n\n-- | an agent which produces an action by reasoning about\n-- how the listener would interpret it\ninformativeAgent :: (MonadMeasure m) => State -> m Action\ninformativeAgent state = do\n  utterance <- uniformD [Speak ASquare, Speak AShape, DoNothing]\n  factor $ log $ Exp $ mass (listener utterance) state\n  return utterance\n"
  },
  {
    "path": "models/NonlinearSSM/Algorithms.hs",
    "content": "module NonlinearSSM.Algorithms where\n\nimport Control.Monad.Bayes.Class (MonadDistribution)\nimport Control.Monad.Bayes.Inference.MCMC\nimport Control.Monad.Bayes.Inference.PMMH as PMMH (pmmh)\nimport Control.Monad.Bayes.Inference.RMSMC (rmsmc, rmsmcBasic, rmsmcDynamic)\nimport Control.Monad.Bayes.Inference.SMC\nimport Control.Monad.Bayes.Inference.SMC2 as SMC2 (smc2)\nimport Control.Monad.Bayes.Population\nimport Control.Monad.Bayes.Weighted (unweighted)\nimport NonlinearSSM\n\ndata Alg = SMC | RMSMC | RMSMCDynamic | RMSMCBasic | PMMH | SMC2\n  deriving (Show, Read, Eq, Ord, Enum, Bounded)\n\nalgs :: [Alg]\nalgs = [minBound .. maxBound]\n\ntype SSMData = [Double]\n\nt :: Int\nt = 5\n\n-- FIXME refactor such that it can be reused in ssm benchmark\nrunAlgFixed :: (MonadDistribution m) => SSMData -> Alg -> m String\nrunAlgFixed ys SMC = fmap show $ runPopulationT $ smc SMCConfig {numSteps = t, numParticles = 10, resampler = resampleMultinomial} (param >>= model ys)\nrunAlgFixed ys RMSMC =\n  fmap show $\n    runPopulationT $\n      rmsmc\n        MCMCConfig {numMCMCSteps = 10, numBurnIn = 0, proposal = SingleSiteMH}\n        SMCConfig {numSteps = t, numParticles = 10, resampler = resampleSystematic}\n        (param >>= model ys)\nrunAlgFixed ys RMSMCBasic =\n  fmap show $\n    runPopulationT $\n      rmsmcBasic\n        MCMCConfig {numMCMCSteps = 10, numBurnIn = 0, proposal = SingleSiteMH}\n        SMCConfig {numSteps = t, numParticles = 10, resampler = resampleSystematic}\n        (param >>= model ys)\nrunAlgFixed ys RMSMCDynamic =\n  fmap show $\n    runPopulationT $\n      rmsmcDynamic\n        MCMCConfig {numMCMCSteps = 10, numBurnIn = 0, proposal = SingleSiteMH}\n        SMCConfig {numSteps = t, numParticles = 10, resampler = resampleSystematic}\n        (param >>= model ys)\nrunAlgFixed ys PMMH =\n  fmap show $\n    unweighted $\n      pmmh\n        MCMCConfig {numMCMCSteps = 2, numBurnIn = 0, proposal = SingleSiteMH}\n        SMCConfig {numSteps = t, numParticles = 3, resampler = resampleSystematic}\n        param\n        (model ys)\nrunAlgFixed ys SMC2 = fmap show $ runPopulationT $ smc2 t 3 2 1 param (model ys)\n"
  },
  {
    "path": "models/NonlinearSSM.hs",
    "content": "module NonlinearSSM where\n\nimport Control.Monad.Bayes.Class\n  ( MonadDistribution (gamma, normal),\n    MonadMeasure,\n    factor,\n    normalPdf,\n  )\n\nparam :: (MonadDistribution m) => m (Double, Double)\nparam = do\n  let a = 0.01\n  let b = 0.01\n  precX <- gamma a b\n  let sigmaX = 1 / sqrt precX\n  precY <- gamma a b\n  let sigmaY = 1 / sqrt precY\n  return (sigmaX, sigmaY)\n\nmean :: Double -> Int -> Double\nmean x n = 0.5 * x + 25 * x / (1 + x * x) + 8 * cos (1.2 * fromIntegral n)\n\n-- | A nonlinear series model from Doucet et al. (2000)\n-- \"On sequential Monte Carlo sampling methods\" section VI.B\nmodel ::\n  (MonadMeasure m) =>\n  -- | observed data\n  [Double] ->\n  -- | prior on the parameters\n  (Double, Double) ->\n  -- | list of latent states from t=1\n  m [Double]\nmodel obs (sigmaX, sigmaY) = do\n  let sq x = x * x\n      simulate [] _ acc = return acc\n      simulate (y : ys) x acc = do\n        let n = length acc\n        x' <- normal (mean x n) sigmaX\n        factor $ normalPdf (sq x' / 20) sigmaY y\n        simulate ys x' (x' : acc)\n  x0 <- normal 0 (sqrt 5)\n  xs <- simulate obs x0 []\n  return $ reverse xs\n\ngenerateData ::\n  (MonadDistribution m) =>\n  -- | T\n  Int ->\n  -- | list of latent and observable states from t=1\n  m [(Double, Double)]\ngenerateData t = do\n  (sigmaX, sigmaY) <- param\n  let sq x = x * x\n      simulate 0 _ acc = return acc\n      simulate k x acc = do\n        let n = length acc\n        x' <- normal (mean x n) sigmaX\n        y' <- normal (sq x' / 20) sigmaY\n        simulate (k - 1) x' ((x', y') : acc)\n  x0 <- normal 0 (sqrt 5)\n  xys <- simulate t x0 []\n  return $ reverse xys\n"
  },
  {
    "path": "models/Sprinkler.hs",
    "content": "module Sprinkler (hard, soft) where\n\nimport Control.Monad (when)\nimport Control.Monad.Bayes.Class\n\nhard :: (MonadMeasure m) => m Bool\nhard = do\n  rain <- bernoulli 0.3\n  sprinkler <- bernoulli $ if rain then 0.1 else 0.4\n  wet <- bernoulli $ case (rain, sprinkler) of\n    (True, True) -> 0.98\n    (True, False) -> 0.8\n    (False, True) -> 0.9\n    (False, False) -> 0.0\n  condition (not wet)\n  return rain\n\nsoft :: (MonadMeasure m) => m Bool\nsoft = do\n  rain <- bernoulli 0.3\n  when rain (factor 0.2)\n  sprinkler <- bernoulli $ if rain then 0.1 else 0.4\n  when sprinkler (factor 0.1)\n  return rain\n"
  },
  {
    "path": "models/StrictlySmallerSupport.hs",
    "content": "-- A model in which a random value switches between\n-- two distributions, one with a support strictly\n-- smaller than the other.\nmodule StrictlySmallerSupport (model) where\n\nimport Control.Monad.Bayes.Class\n\nmodel :: (MonadDistribution m) => m Bool\nmodel = do\n  x <- bernoulli 0.5\n  _ <- uniformD (if x then [1, 2] else [1, 2, 3, 4] :: [Int])\n  return x\n"
  },
  {
    "path": "monad-bayes.cabal",
    "content": "cabal-version:   2.2\nname:            monad-bayes\nversion:         1.3.0.5\nlicense:         MIT\nlicense-file:    LICENSE.md\ncopyright:       2015-2020 Adam Scibior\nmaintainer:      dominic.steinitz@tweag.io\nauthor:          Adam Scibior <adscib@gmail.com>\nstability:       experimental\ntested-with:     GHC ==9.0 || ==9.2 || ==9.4 || ==9.6 || ==9.8 || ==9.10\nhomepage:        http://github.com/tweag/monad-bayes#readme\nbug-reports:     https://github.com/tweag/monad-bayes/issues\nsynopsis:        A library for probabilistic programming.\ndescription:\n  A library for probabilistic programming using probability monads. The\n  emphasis is on composition of inference algorithms implemented in\n  terms of monad transformers.\n  Please refer to the [documentation](https://monad-bayes.netlify.app/)\n  for a quick-start user guide and a reference overview of how it all\n  works\" and the included [README](#readme).\n\ncategory:        Statistics\nbuild-type:      Simple\nextra-doc-files:\n  CHANGELOG.md\n  README.md\n\ndata-files:      test/fixtures/*.txt\n\nsource-repository head\n  type:     git\n  location: https://github.com/tweag/monad-bayes.git\n\nflag dev\n  description: Turn on development settings.\n  default:     False\n  manual:      True\n\ncommon deps\n  build-depends:\n    , base             >=4.15     && <4.22\n    , brick            ^>=2.10\n    , containers       >=0.6      && <0.8\n    , foldl            ^>=1.4\n    , free             ^>=5.2\n    , histogram-fill   ^>=0.9\n    , ieee754          ^>=0.8.0\n    , integration      ^>=0.2\n    , lens             >=5.2      && <5.4\n    , linear           >=1.22     && <1.24\n    , log-domain       >=0.12     && <0.14\n    , math-functions   >=0.2.1    && <0.4\n    , matrix           ^>=0.3\n    , monad-coroutine  ^>=0.9.0\n    , monad-extras     ^>=0.6\n    , mtl              >=2.2.2    && <2.4\n    , mwc-random       >=0.13.6   && <0.16\n    , pipes            ^>=4.3\n    , pretty-simple    ^>=4.1\n    , primitive        >=0.8      && <0.10\n    , random           ^>=1.2\n    , safe             ^>=0.3.17\n    , scientific       ^>=0.3\n    , statistics       >=0.14.0   && <0.17\n    , text             >=1.2      && <2.2\n    , transformers     >=0.5.6    && <0.7\n    , vector           >=0.12.0   && <0.14\n    , vty              >=6.4      && <6.6\n    , vty-unix         ^>=0.2.0.0\n\ncommon test-deps\n  build-depends:\n    , abstract-par          ^>=0.3\n    , criterion             >=1.5  && <1.7\n    , directory             ^>=1.3\n    , hspec                 >=2.10 && <2.12\n    , monad-bayes\n    , optparse-applicative  >=0.17 && <0.19\n    , process               ^>=1.6\n    , QuickCheck            >=2.14 && <2.16\n    , time                  >=1.9  && <1.13\n    , typed-process         ^>=0.2\n\n  autogen-modules: Paths_monad_bayes\n  other-modules:   Paths_monad_bayes\n\nlibrary\n  import:             deps\n  exposed-modules:\n    Control.Monad.Bayes.Class\n    Control.Monad.Bayes.Density.Free\n    Control.Monad.Bayes.Density.State\n    Control.Monad.Bayes.Enumerator\n    Control.Monad.Bayes.Inference.Lazy.MH\n    Control.Monad.Bayes.Inference.Lazy.WIS\n    Control.Monad.Bayes.Inference.MCMC\n    Control.Monad.Bayes.Inference.PMMH\n    Control.Monad.Bayes.Inference.RMSMC\n    Control.Monad.Bayes.Inference.SMC\n    Control.Monad.Bayes.Inference.SMC2\n    Control.Monad.Bayes.Inference.TUI\n    Control.Monad.Bayes.Integrator\n    Control.Monad.Bayes.Population\n    Control.Monad.Bayes.Sampler.Lazy\n    Control.Monad.Bayes.Sampler.Strict\n    Control.Monad.Bayes.Sequential.Coroutine\n    Control.Monad.Bayes.Traced\n    Control.Monad.Bayes.Traced.Basic\n    Control.Monad.Bayes.Traced.Dynamic\n    Control.Monad.Bayes.Traced.Static\n    Control.Monad.Bayes.Weighted\n    Math.Integrators.StormerVerlet\n\n  hs-source-dirs:     src\n  other-modules:      Control.Monad.Bayes.Traced.Common\n  default-language:   Haskell2010\n  default-extensions:\n    BlockArguments\n    FlexibleContexts\n    ImportQualifiedPost\n    LambdaCase\n    OverloadedStrings\n    TupleSections\n\n  if flag(dev)\n    ghc-options:\n      -Wall -Werror -Wno-missing-local-signatures -Wno-trustworthy-safe\n      -Wno-missing-import-lists -Wno-implicit-prelude -Wno-name-shadowing\n      -Wno-monomorphism-restriction -Wredundant-constraints\n\n  else\n    ghc-options: -Wall\n\nexecutable example\n  import:             deps, test-deps\n  main-is:            Single.hs\n  hs-source-dirs:     benchmark models\n  other-modules:\n    Dice\n    Helper\n    HMM\n    LDA\n    LogReg\n\n  default-language:   Haskell2010\n\n  if flag(dev)\n    ghc-options:\n      -Wall -Werror -Wcompat -Wincomplete-record-updates\n      -Wincomplete-uni-patterns -Wnoncanonical-monad-instances\n\n  else\n    ghc-options: -Wall\n\n  default-extensions:\n    BlockArguments\n    FlexibleContexts\n    ImportQualifiedPost\n    LambdaCase\n    OverloadedStrings\n    TupleSections\n\ntest-suite monad-bayes-test\n  import:             deps, test-deps\n  type:               exitcode-stdio-1.0\n  main-is:            Spec.hs\n  hs-source-dirs:     test models\n  other-modules:\n    BetaBin\n    ConjugatePriors\n    Helper\n    HMM\n    LDA\n    LogReg\n    NonlinearSSM\n    NonlinearSSM.Algorithms\n    Sprinkler\n    TestAdvanced\n    TestBenchmarks\n    TestDistribution\n    TestEnumerator\n    TestInference\n    TestIntegrator\n    TestPipes\n    TestPopulation\n    TestSampler\n    TestSequential\n    TestSSMFixtures\n    TestStormerVerlet\n    TestWeighted\n\n  default-language:   Haskell2010\n\n  if flag(dev)\n    ghc-options:\n      -Wall -Werror -Wno-missing-local-signatures -Wno-unsafe\n      -Wno-missing-import-lists -Wno-implicit-prelude\n\n  else\n    ghc-options: -Wall\n\n  default-extensions:\n    BlockArguments\n    FlexibleContexts\n    ImportQualifiedPost\n    LambdaCase\n    OverloadedStrings\n    TupleSections\n\nbenchmark ssm-bench\n  import:           deps, test-deps\n  type:             exitcode-stdio-1.0\n  main-is:          SSM.hs\n  hs-source-dirs:   models benchmark\n  other-modules:\n    NonlinearSSM\n    NonlinearSSM.Algorithms\n\n  default-language: Haskell2010\n  build-depends:\n    , base\n    , monad-bayes\n    , pretty-simple\n    , random\n\nbenchmark speed-bench\n  import:             deps, test-deps\n  type:               exitcode-stdio-1.0\n  main-is:            Speed.hs\n  hs-source-dirs:     models benchmark\n  other-modules:\n    HMM\n    LDA\n    LogReg\n\n  default-language:   Haskell2010\n\n  if flag(dev)\n    ghc-options:\n      -Wall -Werror -Wno-missing-local-signatures -Wno-unsafe\n      -Wno-missing-import-lists -Wno-implicit-prelude\n\n  else\n    ghc-options: -Wall\n\n  default-extensions:\n    BlockArguments\n    FlexibleContexts\n    ImportQualifiedPost\n    LambdaCase\n    OverloadedStrings\n    TupleSections\n"
  },
  {
    "path": "notebooks/Implementation.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"6b982b5d-666e-4175-a3d1-a5ee502e68a9\",\n   \"metadata\": {},\n   \"source\": [\n    \"# The design and implementation of Monad-Bayes\\n\",\n    \"\\n\",\n    \"*This notebook assumes the reader has a working knowledge of Haskell, or at least strongly typed functional programming*. In particular, it won't explain what a monad is, what a monad transformer is, or what a typeclass is.\\n\",\n    \"\\n\",\n    \"Monad-Bayes is, in typical Haskell fashion, very laconic. Its core capabilities are defined in very few lines of code, which belies its sophistication. The goal of this notebook is to explain how the library works.\\n\",\n    \"\\n\",\n    \"As usual with Haskell, the key to understanding things is to look at the types. \\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"71734104-9ff6-4264-93c5-ce99087d65c8\",\n   \"metadata\": {},\n   \"source\": [\n    \"# 1. Probability distributions form a monad\\n\",\n    \"\\n\",\n    \"It's easiest to see what the *monad of probability distributions* looks like in the discrete case. In the discrete case, a distribution is the following:\\n\",\n    \"\\n\",\n    \"`type Distribution a = Set (a, Double)`\\n\",\n    \"\\n\",\n    \"So for instance, a distribution over `String`s is a set of strings along with their probability mass. The masses should collectively sum to `1` and individually be non-negative. \\n\",\n    \"\\n\",\n    \"`Distribution` can be made an instance of the `Monad` typeclass. How?\\n\",\n    \"\\n\",\n    \"todo\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"1d5dfde5-3e9f-40ca-b877-e150cea063d2\",\n   \"metadata\": {},\n   \"source\": [\n    \"# 2. There are many different probability monads\\n\",\n    \"\\n\",\n    \"The same idea of a distribution as a monad carries over to continuous distributions, but in this case, our concrete representation is not going to be a set of pairs of elements in the support and their weights.\\n\",\n    \"\\n\",\n    \"In fact, the **central idea of Monad-bayes** is that there is a variety of implementations of the probability monad, and the choice depends on the inference algorithm we want. Monad-bayes offers a typeclass of distributions `MonadDistribution` and a typeclass for unnormalized distributions `MonadMeasure`, and then offers many instances of both.\\n\",\n    \"\\n\",\n    \"To see this, we'll take one program and interpret it with different instances of `MonadDistribution` and/or `MonadMeasure`:\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"91763a0c-afd7-49a0-bb53-ef4e26719c00\",\n   \"metadata\": {},\n   \"source\": [\n    \"# MonadDistribution\\n\",\n    \"\\n\",\n    \"the class definition\\n\",\n    \"\\n\",\n    \"So to be an instance of `MonadDistribution`, you need to say how you define a uniform distribution over the unit interval. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"id\": \"6310e977-70c3-4240-9e17-15f96447c176\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import Control.Monad.Bayes.Class\\n\",\n    \"import Control.Monad.Bayes.Population\\n\",\n    \"import Control.Monad.Bayes.Sampler\\n\",\n    \"import Control.Monad\\n\",\n    \"import Control.Monad.Bayes.Weighted\\n\",\n    \"import Data.List\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"id\": \"91820eb8-28fa-4bca-9e90-324bf8e32ff3\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"program :: MonadDistribution m => m Double\\n\",\n    \"program = do \\n\",\n    \"    x <- random\\n\",\n    \"    normal x 1\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"1e3dd003-b1bc-4482-add0-49a60f4fab75\",\n   \"metadata\": {},\n   \"source\": [\n    \"`program` represents a distribution, defined using monadic control flow. You might describe it as a hierarchical distribution, where you have a normal distribution whose mean parameter is drawn from a uniform unit interval which is marginalized out.\\n\",\n    \"\\n\",\n    \"The first instance of `MonadDistribution` we'll introduce is `SamplerIO`, which is a random number generator:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"id\": \"bd3212d0-7c69-41f3-b7dc-cf14b45e45c6\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.1194250440980824\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"sampleIO program\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"f2dabe42-125f-46e8-ba52-7192bc463306\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"A second example of `MonadDistribution`:\\n\",\n    \" integrator\\n\",\n    \" \\n\",\n    \"transformers\\n\",\n    \"\\n\",\n    \"stateT. show traces\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"09c7c3c4-a88a-40c7-aaf4-f2e831a4426f\",\n   \"metadata\": {},\n   \"source\": [\n    \"# MonadMeasure\\n\",\n    \"\\n\",\n    \"the typeclass\\n\",\n    \"\\n\",\n    \"`WeightedT`\\n\",\n    \"`PopulationT`\\n\",\n    \"`SequentialT`\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"id\": \"3d35d6a0-6b3c-4812-81cf-2d3bfcb98923\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"program :: MonadMeasure m => m Double\\n\",\n    \"program = do\\n\",\n    \"    x <- random\\n\",\n    \"    factor (normalPdf 0 1 x)\\n\",\n    \"    y <- random\\n\",\n    \"    factor (normalPdf 0 1 y)\\n\",\n    \"    return (x+y)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 46,\n   \"id\": \"d39aec4a-9670-4d0d-9571-6acfc0dad256\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(0.7186997078194988,0.13968662310676447)\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"sampleIO $ runWeightedT program \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 87,\n   \"id\": \"ca3b4501-4c6d-45ac-9e87-287aa5b887ca\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"\\n\",\n    \"d = do\\n\",\n    \"    x <- random\\n\",\n    \"    factor (normalPdf 0 1 x)\\n\",\n    \"    y <- random\\n\",\n    \"    factor (normalPdf 0 1 (x+y))\\n\",\n    \"    return (x+y) \\n\",\n    \"    \\n\",\n    \"    \\n\",\n    \"y <- sampleIO $ runPopulationT $ do \\n\",\n    \"    x <- resampleMultinomial $ (spawn 10 >> d)\\n\",\n    \"    factor (normalPdf 0 1 x)\\n\",\n    \"    return x\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 101,\n   \"id\": \"e7840f35-c91b-4a9f-b5ff-4e3cfdc74a4d\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<style>/* Styles used for the Hoogle display in the pager */\\n\",\n       \".hoogle-doc {\\n\",\n       \"display: block;\\n\",\n       \"padding-bottom: 1.3em;\\n\",\n       \"padding-left: 0.4em;\\n\",\n       \"}\\n\",\n       \".hoogle-code {\\n\",\n       \"display: block;\\n\",\n       \"font-family: monospace;\\n\",\n       \"white-space: pre;\\n\",\n       \"}\\n\",\n       \".hoogle-text {\\n\",\n       \"display: block;\\n\",\n       \"}\\n\",\n       \".hoogle-name {\\n\",\n       \"color: green;\\n\",\n       \"font-weight: bold;\\n\",\n       \"}\\n\",\n       \".hoogle-head {\\n\",\n       \"font-weight: bold;\\n\",\n       \"}\\n\",\n       \".hoogle-sub {\\n\",\n       \"display: block;\\n\",\n       \"margin-left: 0.4em;\\n\",\n       \"}\\n\",\n       \".hoogle-package {\\n\",\n       \"font-weight: bold;\\n\",\n       \"font-style: italic;\\n\",\n       \"}\\n\",\n       \".hoogle-module {\\n\",\n       \"font-weight: bold;\\n\",\n       \"}\\n\",\n       \".hoogle-class {\\n\",\n       \"font-weight: bold;\\n\",\n       \"}\\n\",\n       \".get-type {\\n\",\n       \"color: green;\\n\",\n       \"font-weight: bold;\\n\",\n       \"font-family: monospace;\\n\",\n       \"display: block;\\n\",\n       \"white-space: pre-wrap;\\n\",\n       \"}\\n\",\n       \".show-type {\\n\",\n       \"color: green;\\n\",\n       \"font-weight: bold;\\n\",\n       \"font-family: monospace;\\n\",\n       \"margin-left: 1em;\\n\",\n       \"}\\n\",\n       \".mono {\\n\",\n       \"font-family: monospace;\\n\",\n       \"display: block;\\n\",\n       \"}\\n\",\n       \".err-msg {\\n\",\n       \"color: red;\\n\",\n       \"font-style: italic;\\n\",\n       \"font-family: monospace;\\n\",\n       \"white-space: pre;\\n\",\n       \"display: block;\\n\",\n       \"}\\n\",\n       \"#unshowable {\\n\",\n       \"color: red;\\n\",\n       \"font-weight: bold;\\n\",\n       \"}\\n\",\n       \".err-msg.in.collapse {\\n\",\n       \"padding-top: 0.7em;\\n\",\n       \"}\\n\",\n       \".highlight-code {\\n\",\n       \"white-space: pre;\\n\",\n       \"font-family: monospace;\\n\",\n       \"}\\n\",\n       \".suggestion-warning { \\n\",\n       \"font-weight: bold;\\n\",\n       \"color: rgb(200, 130, 0);\\n\",\n       \"}\\n\",\n       \".suggestion-error { \\n\",\n       \"font-weight: bold;\\n\",\n       \"color: red;\\n\",\n       \"}\\n\",\n       \".suggestion-name {\\n\",\n       \"font-weight: bold;\\n\",\n       \"}\\n\",\n       \"</style><div class=\\\"suggestion-name\\\" style=\\\"clear:both;\\\">Redundant $</div><div class=\\\"suggestion-row\\\" style=\\\"float: left;\\\"><div class=\\\"suggestion-warning\\\">Found:</div><div class=\\\"highlight-code\\\" id=\\\"haskell\\\">proper $ (spawn 2 >> random)</div></div><div class=\\\"suggestion-row\\\" style=\\\"float: left;\\\"><div class=\\\"suggestion-warning\\\">Why Not:</div><div class=\\\"highlight-code\\\" id=\\\"haskell\\\">proper (spawn 2 >> random)</div></div>\"\n      ],\n      \"text/plain\": [\n       \"Line 1: Redundant $\\n\",\n       \"Found:\\n\",\n       \"proper $ (spawn 2 >> random)\\n\",\n       \"Why not:\\n\",\n       \"proper (spawn 2 >> random)\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[(0.8860019925375079,1.0),(0.5033782588382129,1.0),(0.31137526868154797,1.0),(5.451319701546942e-2,1.0),(0.3872285285958025,1.0),(0.3834005992613564,1.0),(0.3141355914598035,1.0),(0.6585424700601658,1.0),(0.5176716807111276,1.0),(0.5625227391260524,1.0)]\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"sampleIO $ replicateM 10 $ runWeightedT $ proper $ (spawn 2 >> random)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"7ad288a9-5962-4baf-a5af-2a6ea6f8ce59\",\n   \"metadata\": {},\n   \"source\": [\n    \"# 3. We can construct probability monads modularly, with transformers\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"ca59cfbf-5f30-49c2-86e7-276a0baf3535\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"46b2d45c-fcde-4dbc-8545-dfed14d82abc\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Haskell - nixpkgs\",\n   \"language\": \"haskell\",\n   \"name\": \"ihaskell_nixpkgs\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": \"ihaskell\",\n   \"file_extension\": \".hs\",\n   \"mimetype\": \"text/x-haskell\",\n   \"name\": \"haskell\",\n   \"pygments_lexer\": \"Haskell\",\n   \"version\": \"9.0.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "notebooks/_build/_page/Introduction/html/_sphinx_design_static/design-tabs.js",
    "content": "var sd_labels_by_text = {};\n\nfunction ready() {\n  const li = document.getElementsByClassName(\"sd-tab-label\");\n  for (const label of li) {\n    syncId = label.getAttribute(\"data-sync-id\");\n    if (syncId) {\n      label.onclick = onLabelClick;\n      if (!sd_labels_by_text[syncId]) {\n        sd_labels_by_text[syncId] = [];\n      }\n      sd_labels_by_text[syncId].push(label);\n    }\n  }\n}\n\nfunction onLabelClick() {\n  // Activate other inputs with the same sync id.\n  syncId = this.getAttribute(\"data-sync-id\");\n  for (label of sd_labels_by_text[syncId]) {\n    if (label === this) continue;\n    label.previousElementSibling.checked = true;\n  }\n  window.localStorage.setItem(\"sphinx-design-last-tab\", syncId);\n}\n\ndocument.addEventListener(\"DOMContentLoaded\", ready, false);\n"
  },
  {
    "path": "notebooks/examples/ClassicalPhysics.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"dcc50eb1-32fa-4619-b677-c1e1b81a9202\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Physics simulator with uncertainty\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"id\": \"dea0401b-5fdb-47a3-b3ae-5d1dff9d5898\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import Numeric.Hamilton (stepHam, System, Phase (Phs, phsPositions, phsMomenta), mkSystem', Config (cfgPositions, cfgVelocities, Cfg), toPhase)\\n\",\n    \"import GHC.TypeLits (KnownNat)\\n\",\n    \"import Numeric.LinearAlgebra.Static hiding ((#))\\n\",\n    \"import qualified Data.Vector.Sized                   as V\\n\",\n    \"import Control.Monad.Bayes.Class\\n\",\n    \"import Data.Maybe (fromMaybe)\\n\",\n    \"import Control.Monad.Bayes.Sampler.Strict\\n\",\n    \"import Control.Monad\\n\",\n    \"import Diagrams.Prelude hiding (normal)\\n\",\n    \"import Diagrams.Prelude (V2(..), (#))\\n\",\n    \"import qualified Diagrams.Backend.Cairo as C\\n\",\n    \"import Data.List\\n\",\n    \"\\n\",\n    \"\\n\",\n    \":e PatternSynonyms\\n\",\n    \":e ViewPatterns\\n\",\n    \":e RankNTypes\\n\",\n    \":e DataKinds\\n\",\n    \":e FlexibleContexts\\n\",\n    \":e GADTs\\n\",\n    \"\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"id\": \"30af4ead-38c3-4ca3-b5a9-d157edd00951\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"\\n\",\n    \"pattern V1 :: a -> V.Vector 1 a\\n\",\n    \"pattern V1 x <- (V.head->x)\\n\",\n    \"  where\\n\",\n    \"    V1 x = V.singleton x\\n\",\n    \"\\n\",\n    \"type V2 = V.Vector 2\\n\",\n    \"pattern V2 :: a -> a -> V2 a\\n\",\n    \"pattern V2 x y <- (V.toList->[x,y])\\n\",\n    \"  where\\n\",\n    \"    V2 x y = V.fromTuple (x, y)\\n\",\n    \"\\n\",\n    \"fromDouble :: Double -> R 1\\n\",\n    \"fromDouble = fromList  . (:[])\\n\",\n    \"\\n\",\n    \"-- couldn't find the right conversion function...\\n\",\n    \"toDouble :: R 1 -> Double \\n\",\n    \"toDouble = read . take 8 . tail . show\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"c8139623-cfd8-4423-97ad-2a88011d21b7\",\n   \"metadata\": {},\n   \"source\": [\n    \"There's a number of ways a physics simulator could be used in a probabilistic context. The simplest is to have a prior over initial states, and evolve a system forward.\\n\",\n    \"\\n\",\n    \"As an example, here we use the `hamilton` classical physics engine in Haskell, which is a very simple, but coordinate independent, physics simulator.\\n\",\n    \"\\n\",\n    \"We can define a 1D harmonic oscillator like:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"id\": \"3cae8752-1b16-4998-9b4c-0e0e6c0471ff\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"system1 :: (System 1 1)\\n\",\n    \"system1 = mkSystem' 1 \\n\",\n    \"        id \\n\",\n    \"    \\n\",\n    \"        (\\\\(V1 x) -> x ** 2 / 2)\\n\",\n    \"        \\n\",\n    \"system2 :: (System 1 1)\\n\",\n    \"system2 = mkSystem' 1 \\n\",\n    \"        id \\n\",\n    \"    \\n\",\n    \"        (\\\\(V1 x) -> x ** 2)\\n\",\n    \"    \\n\",\n    \"-- we could have uncertainty over the Hamiltonian itself, but let's not for now\\n\",\n    \"system = uniformD [system1]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"53bc8bc9-19a5-4b2b-bf81-e83e296f90b6\",\n   \"metadata\": {},\n   \"source\": [\n    \"and an initial distribution over phase space:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"id\": \"9406bef5-212c-4175-a56c-659aaa3f6657\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"phase :: MonadDistribution m => m (Phase 1)\\n\",\n    \"phase = do\\n\",\n    \"  pos <- (20*) <$> random\\n\",\n    \"  return $ Phs {phsPositions = fromDouble pos, phsMomenta = 10}\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"91019986-f4d6-46ff-b7e1-8e9a148e30f0\",\n   \"metadata\": {},\n   \"source\": [\n    \"`pushforward` is then a distribution over paths of the system, numerically evolved forward according to the oscillator Hamiltonian.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"id\": \"af70a4e0-4095-4e9f-91d0-4d8b10bb44dd\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"pushforward :: MonadDistribution m => m [Double]\\n\",\n    \"pushforward = do\\n\",\n    \"    initial <- phase\\n\",\n    \"    sys <- system\\n\",\n    \"    let new = [stepHam stepSize sys initial | stepSize <- [0.1,0.2..10]]\\n\",\n    \"    return (toDouble . phsPositions <$> initial:new)\\n\",\n    \"    \\n\",\n    \"pairs <- sampler $ replicateM 30 pushforward\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"id\": \"d3c167ca-fae2-4b69-bcdb-07f2f30eb9eb\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"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\",\n      \"image/svg+xml\": [\n       \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\\n\",\n       \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\" width=\\\"104.356174pt\\\" height=\\\"488.988537pt\\\" viewBox=\\\"0 0 104.356174 488.988537\\\" version=\\\"1.1\\\">\\n\",\n       \"<g id=\\\"surface2\\\">\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.742188 486.683594 C 35.742188 485.410156 34.710938 484.378906 33.4375 484.378906 C 32.164062 484.378906 31.132812 485.410156 31.132812 486.683594 C 31.132812 487.957031 32.164062 488.988281 33.4375 488.988281 C 34.710938 488.988281 35.742188 487.957031 35.742188 486.683594 Z M 35.742188 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 7.574219 486.683594 C 7.574219 485.410156 6.542969 484.378906 5.269531 484.378906 C 3.996094 484.378906 2.964844 485.410156 2.964844 486.683594 C 2.964844 487.957031 3.996094 488.988281 5.269531 488.988281 C 6.542969 488.988281 7.574219 487.957031 7.574219 486.683594 Z M 7.574219 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.777344 486.683594 C 24.777344 485.410156 23.746094 484.378906 22.472656 484.378906 C 21.199219 484.378906 20.167969 485.410156 20.167969 486.683594 C 20.167969 487.957031 21.199219 488.988281 22.472656 488.988281 C 23.746094 488.988281 24.777344 487.957031 24.777344 486.683594 Z M 24.777344 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 9.214844 486.683594 C 9.214844 485.410156 8.183594 484.378906 6.910156 484.378906 C 5.636719 484.378906 4.605469 485.410156 4.605469 486.683594 C 4.605469 487.957031 5.636719 488.988281 6.910156 488.988281 C 8.183594 488.988281 9.214844 487.957031 9.214844 486.683594 Z M 9.214844 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 14.207031 486.683594 C 14.207031 485.410156 13.175781 484.378906 11.902344 484.378906 C 10.628906 484.378906 9.597656 485.410156 9.597656 486.683594 C 9.597656 487.957031 10.628906 488.988281 11.902344 488.988281 C 13.175781 488.988281 14.207031 487.957031 14.207031 486.683594 Z M 14.207031 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 21.339844 486.683594 C 21.339844 485.410156 20.308594 484.378906 19.035156 484.378906 C 17.761719 484.378906 16.730469 485.410156 16.730469 486.683594 C 16.730469 487.957031 17.761719 488.988281 19.035156 488.988281 C 20.308594 488.988281 21.339844 487.957031 21.339844 486.683594 Z M 21.339844 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.195312 486.683594 C 25.195312 485.410156 24.164062 484.378906 22.890625 484.378906 C 21.617188 484.378906 20.585938 485.410156 20.585938 486.683594 C 20.585938 487.957031 21.617188 488.988281 22.890625 488.988281 C 24.164062 488.988281 25.195312 487.957031 25.195312 486.683594 Z M 25.195312 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 12.355469 486.683594 C 12.355469 485.410156 11.324219 484.378906 10.050781 484.378906 C 8.777344 484.378906 7.746094 485.410156 7.746094 486.683594 C 7.746094 487.957031 8.777344 488.988281 10.050781 488.988281 C 11.324219 488.988281 12.355469 487.957031 12.355469 486.683594 Z M 12.355469 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.890625 486.683594 C 38.890625 485.410156 37.859375 484.378906 36.585938 484.378906 C 35.3125 484.378906 34.28125 485.410156 34.28125 486.683594 C 34.28125 487.957031 35.3125 488.988281 36.585938 488.988281 C 37.859375 488.988281 38.890625 487.957031 38.890625 486.683594 Z M 38.890625 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.832031 486.683594 C 23.832031 485.410156 22.800781 484.378906 21.527344 484.378906 C 20.253906 484.378906 19.222656 485.410156 19.222656 486.683594 C 19.222656 487.957031 20.253906 488.988281 21.527344 488.988281 C 22.800781 488.988281 23.832031 487.957031 23.832031 486.683594 Z M 23.832031 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 5.210938 486.683594 C 5.210938 485.410156 4.179688 484.378906 2.90625 484.378906 C 1.632812 484.378906 0.601562 485.410156 0.601562 486.683594 C 0.601562 487.957031 1.632812 488.988281 2.90625 488.988281 C 4.179688 488.988281 5.210938 487.957031 5.210938 486.683594 Z M 5.210938 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.488281 486.683594 C 23.488281 485.410156 22.457031 484.378906 21.183594 484.378906 C 19.910156 484.378906 18.878906 485.410156 18.878906 486.683594 C 18.878906 487.957031 19.910156 488.988281 21.183594 488.988281 C 22.457031 488.988281 23.488281 487.957031 23.488281 486.683594 Z M 23.488281 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.210938 486.683594 C 35.210938 485.410156 34.179688 484.378906 32.90625 484.378906 C 31.632812 484.378906 30.601562 485.410156 30.601562 486.683594 C 30.601562 487.957031 31.632812 488.988281 32.90625 488.988281 C 34.179688 488.988281 35.210938 487.957031 35.210938 486.683594 Z M 35.210938 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.636719 486.683594 C 15.636719 485.410156 14.605469 484.378906 13.332031 484.378906 C 12.058594 484.378906 11.027344 485.410156 11.027344 486.683594 C 11.027344 487.957031 12.058594 488.988281 13.332031 488.988281 C 14.605469 488.988281 15.636719 487.957031 15.636719 486.683594 Z M 15.636719 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.039062 486.683594 C 16.039062 485.410156 15.007812 484.378906 13.734375 484.378906 C 12.460938 484.378906 11.429688 485.410156 11.429688 486.683594 C 11.429688 487.957031 12.460938 488.988281 13.734375 488.988281 C 15.007812 488.988281 16.039062 487.957031 16.039062 486.683594 Z M 16.039062 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.160156 486.683594 C 40.160156 485.410156 39.128906 484.378906 37.855469 484.378906 C 36.582031 484.378906 35.550781 485.410156 35.550781 486.683594 C 35.550781 487.957031 36.582031 488.988281 37.855469 488.988281 C 39.128906 488.988281 40.160156 487.957031 40.160156 486.683594 Z M 40.160156 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.3125 486.683594 C 30.3125 485.410156 29.28125 484.378906 28.007812 484.378906 C 26.734375 484.378906 25.703125 485.410156 25.703125 486.683594 C 25.703125 487.957031 26.734375 488.988281 28.007812 488.988281 C 29.28125 488.988281 30.3125 487.957031 30.3125 486.683594 Z M 30.3125 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 14.789062 486.683594 C 14.789062 485.410156 13.757812 484.378906 12.484375 484.378906 C 11.210938 484.378906 10.179688 485.410156 10.179688 486.683594 C 10.179688 487.957031 11.210938 488.988281 12.484375 488.988281 C 13.757812 488.988281 14.789062 487.957031 14.789062 486.683594 Z M 14.789062 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 21.535156 486.683594 C 21.535156 485.410156 20.503906 484.378906 19.230469 484.378906 C 17.957031 484.378906 16.925781 485.410156 16.925781 486.683594 C 16.925781 487.957031 17.957031 488.988281 19.230469 488.988281 C 20.503906 488.988281 21.535156 487.957031 21.535156 486.683594 Z M 21.535156 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.519531 486.683594 C 28.519531 485.410156 27.488281 484.378906 26.214844 484.378906 C 24.941406 484.378906 23.910156 485.410156 23.910156 486.683594 C 23.910156 487.957031 24.941406 488.988281 26.214844 488.988281 C 27.488281 488.988281 28.519531 487.957031 28.519531 486.683594 Z M 28.519531 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 4.835938 486.683594 C 4.835938 485.410156 3.804688 484.378906 2.53125 484.378906 C 1.257812 484.378906 0.226562 485.410156 0.226562 486.683594 C 0.226562 487.957031 1.257812 488.988281 2.53125 488.988281 C 3.804688 488.988281 4.835938 487.957031 4.835938 486.683594 Z M 4.835938 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.613281 486.683594 C 24.613281 485.410156 23.582031 484.378906 22.308594 484.378906 C 21.035156 484.378906 20.003906 485.410156 20.003906 486.683594 C 20.003906 487.957031 21.035156 488.988281 22.308594 488.988281 C 23.582031 488.988281 24.613281 487.957031 24.613281 486.683594 Z M 24.613281 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.007812 486.683594 C 19.007812 485.410156 17.976562 484.378906 16.703125 484.378906 C 15.429688 484.378906 14.398438 485.410156 14.398438 486.683594 C 14.398438 487.957031 15.429688 488.988281 16.703125 488.988281 C 17.976562 488.988281 19.007812 487.957031 19.007812 486.683594 Z M 19.007812 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 8.921875 486.683594 C 8.921875 485.410156 7.890625 484.378906 6.617188 484.378906 C 5.34375 484.378906 4.3125 485.410156 4.3125 486.683594 C 4.3125 487.957031 5.34375 488.988281 6.617188 488.988281 C 7.890625 488.988281 8.921875 487.957031 8.921875 486.683594 Z M 8.921875 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.917969 486.683594 C 36.917969 485.410156 35.886719 484.378906 34.613281 484.378906 C 33.339844 484.378906 32.308594 485.410156 32.308594 486.683594 C 32.308594 487.957031 33.339844 488.988281 34.613281 488.988281 C 35.886719 488.988281 36.917969 487.957031 36.917969 486.683594 Z M 36.917969 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.445312 486.683594 C 29.445312 485.410156 28.414062 484.378906 27.140625 484.378906 C 25.867188 484.378906 24.835938 485.410156 24.835938 486.683594 C 24.835938 487.957031 25.867188 488.988281 27.140625 488.988281 C 28.414062 488.988281 29.445312 487.957031 29.445312 486.683594 Z M 29.445312 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 6.429688 486.683594 C 6.429688 485.410156 5.398438 484.378906 4.125 484.378906 C 2.851562 484.378906 1.820312 485.410156 1.820312 486.683594 C 1.820312 487.957031 2.851562 488.988281 4.125 488.988281 C 5.398438 488.988281 6.429688 487.957031 6.429688 486.683594 Z M 6.429688 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 12.101562 486.683594 C 12.101562 485.410156 11.070312 484.378906 9.796875 484.378906 C 8.523438 484.378906 7.492188 485.410156 7.492188 486.683594 C 7.492188 487.957031 8.523438 488.988281 9.796875 488.988281 C 11.070312 488.988281 12.101562 487.957031 12.101562 486.683594 Z M 12.101562 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.160156 486.683594 C 24.160156 485.410156 23.128906 484.378906 21.855469 484.378906 C 20.582031 484.378906 19.550781 485.410156 19.550781 486.683594 C 19.550781 487.957031 20.582031 488.988281 21.855469 488.988281 C 23.128906 488.988281 24.160156 487.957031 24.160156 486.683594 Z M 24.160156 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 4.933594 486.683594 C 4.933594 485.410156 3.902344 484.378906 2.628906 484.378906 C 1.355469 484.378906 0.324219 485.410156 0.324219 486.683594 C 0.324219 487.957031 1.355469 488.988281 2.628906 488.988281 C 3.902344 488.988281 4.933594 487.957031 4.933594 486.683594 Z M 4.933594 486.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.367188 481.839844 C 37.367188 480.566406 36.335938 479.535156 35.0625 479.535156 C 33.789062 479.535156 32.757812 480.566406 32.757812 481.839844 C 32.757812 483.113281 33.789062 484.144531 35.0625 484.144531 C 36.335938 484.144531 37.367188 483.113281 37.367188 481.839844 Z M 37.367188 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 7.519531 481.839844 C 7.519531 480.566406 6.488281 479.535156 5.214844 479.535156 C 3.941406 479.535156 2.910156 480.566406 2.910156 481.839844 C 2.910156 483.113281 3.941406 484.144531 5.214844 484.144531 C 6.488281 484.144531 7.519531 483.113281 7.519531 481.839844 Z M 7.519531 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.746094 481.839844 C 25.746094 480.566406 24.714844 479.535156 23.441406 479.535156 C 22.167969 479.535156 21.136719 480.566406 21.136719 481.839844 C 21.136719 483.113281 22.167969 484.144531 23.441406 484.144531 C 24.714844 484.144531 25.746094 483.113281 25.746094 481.839844 Z M 25.746094 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 9.253906 481.839844 C 9.253906 480.566406 8.222656 479.535156 6.949219 479.535156 C 5.675781 479.535156 4.644531 480.566406 4.644531 481.839844 C 4.644531 483.113281 5.675781 484.144531 6.949219 484.144531 C 8.222656 484.144531 9.253906 483.113281 9.253906 481.839844 Z M 9.253906 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 14.546875 481.839844 C 14.546875 480.566406 13.515625 479.535156 12.242188 479.535156 C 10.96875 479.535156 9.9375 480.566406 9.9375 481.839844 C 9.9375 483.113281 10.96875 484.144531 12.242188 484.144531 C 13.515625 484.144531 14.546875 483.113281 14.546875 481.839844 Z M 14.546875 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.105469 481.839844 C 22.105469 480.566406 21.074219 479.535156 19.800781 479.535156 C 18.527344 479.535156 17.496094 480.566406 17.496094 481.839844 C 17.496094 483.113281 18.527344 484.144531 19.800781 484.144531 C 21.074219 484.144531 22.105469 483.113281 22.105469 481.839844 Z M 22.105469 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.191406 481.839844 C 26.191406 480.566406 25.160156 479.535156 23.886719 479.535156 C 22.613281 479.535156 21.582031 480.566406 21.582031 481.839844 C 21.582031 483.113281 22.613281 484.144531 23.886719 484.144531 C 25.160156 484.144531 26.191406 483.113281 26.191406 481.839844 Z M 26.191406 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 12.585938 481.839844 C 12.585938 480.566406 11.554688 479.535156 10.28125 479.535156 C 9.007812 479.535156 7.976562 480.566406 7.976562 481.839844 C 7.976562 483.113281 9.007812 484.144531 10.28125 484.144531 C 11.554688 484.144531 12.585938 483.113281 12.585938 481.839844 Z M 12.585938 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.703125 481.839844 C 40.703125 480.566406 39.671875 479.535156 38.398438 479.535156 C 37.125 479.535156 36.09375 480.566406 36.09375 481.839844 C 36.09375 483.113281 37.125 484.144531 38.398438 484.144531 C 39.671875 484.144531 40.703125 483.113281 40.703125 481.839844 Z M 40.703125 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.746094 481.839844 C 24.746094 480.566406 23.714844 479.535156 22.441406 479.535156 C 21.167969 479.535156 20.136719 480.566406 20.136719 481.839844 C 20.136719 483.113281 21.167969 484.144531 22.441406 484.144531 C 23.714844 484.144531 24.746094 483.113281 24.746094 481.839844 Z M 24.746094 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 5.011719 481.839844 C 5.011719 480.566406 3.980469 479.535156 2.707031 479.535156 C 1.433594 479.535156 0.402344 480.566406 0.402344 481.839844 C 0.402344 483.113281 1.433594 484.144531 2.707031 484.144531 C 3.980469 484.144531 5.011719 483.113281 5.011719 481.839844 Z M 5.011719 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.382812 481.839844 C 24.382812 480.566406 23.351562 479.535156 22.078125 479.535156 C 20.804688 479.535156 19.773438 480.566406 19.773438 481.839844 C 19.773438 483.113281 20.804688 484.144531 22.078125 484.144531 C 23.351562 484.144531 24.382812 483.113281 24.382812 481.839844 Z M 24.382812 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.800781 481.839844 C 36.800781 480.566406 35.769531 479.535156 34.496094 479.535156 C 33.222656 479.535156 32.191406 480.566406 32.191406 481.839844 C 32.191406 483.113281 33.222656 484.144531 34.496094 484.144531 C 35.769531 484.144531 36.800781 483.113281 36.800781 481.839844 Z M 36.800781 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.058594 481.839844 C 16.058594 480.566406 15.027344 479.535156 13.753906 479.535156 C 12.480469 479.535156 11.449219 480.566406 11.449219 481.839844 C 11.449219 483.113281 12.480469 484.144531 13.753906 484.144531 C 15.027344 484.144531 16.058594 483.113281 16.058594 481.839844 Z M 16.058594 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.484375 481.839844 C 16.484375 480.566406 15.453125 479.535156 14.179688 479.535156 C 12.90625 479.535156 11.875 480.566406 11.875 481.839844 C 11.875 483.113281 12.90625 484.144531 14.179688 484.144531 C 15.453125 484.144531 16.484375 483.113281 16.484375 481.839844 Z M 16.484375 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.046875 481.839844 C 42.046875 480.566406 41.015625 479.535156 39.742188 479.535156 C 38.46875 479.535156 37.4375 480.566406 37.4375 481.839844 C 37.4375 483.113281 38.46875 484.144531 39.742188 484.144531 C 41.015625 484.144531 42.046875 483.113281 42.046875 481.839844 Z M 42.046875 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.613281 481.839844 C 31.613281 480.566406 30.582031 479.535156 29.308594 479.535156 C 28.035156 479.535156 27.003906 480.566406 27.003906 481.839844 C 27.003906 483.113281 28.035156 484.144531 29.308594 484.144531 C 30.582031 484.144531 31.613281 483.113281 31.613281 481.839844 Z M 31.613281 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.160156 481.839844 C 15.160156 480.566406 14.128906 479.535156 12.855469 479.535156 C 11.582031 479.535156 10.550781 480.566406 10.550781 481.839844 C 10.550781 483.113281 11.582031 484.144531 12.855469 484.144531 C 14.128906 484.144531 15.160156 483.113281 15.160156 481.839844 Z M 15.160156 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.308594 481.839844 C 22.308594 480.566406 21.277344 479.535156 20.003906 479.535156 C 18.730469 479.535156 17.699219 480.566406 17.699219 481.839844 C 17.699219 483.113281 18.730469 484.144531 20.003906 484.144531 C 21.277344 484.144531 22.308594 483.113281 22.308594 481.839844 Z M 22.308594 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.714844 481.839844 C 29.714844 480.566406 28.683594 479.535156 27.410156 479.535156 C 26.136719 479.535156 25.105469 480.566406 25.105469 481.839844 C 25.105469 483.113281 26.136719 484.144531 27.410156 484.144531 C 28.683594 484.144531 29.714844 483.113281 29.714844 481.839844 Z M 29.714844 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 4.613281 481.839844 C 4.613281 480.566406 3.582031 479.535156 2.308594 479.535156 C 1.035156 479.535156 0.00390625 480.566406 0.00390625 481.839844 C 0.00390625 483.113281 1.035156 484.144531 2.308594 484.144531 C 3.582031 484.144531 4.613281 483.113281 4.613281 481.839844 Z M 4.613281 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.574219 481.839844 C 25.574219 480.566406 24.542969 479.535156 23.269531 479.535156 C 21.996094 479.535156 20.964844 480.566406 20.964844 481.839844 C 20.964844 483.113281 21.996094 484.144531 23.269531 484.144531 C 24.542969 484.144531 25.574219 483.113281 25.574219 481.839844 Z M 25.574219 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.632812 481.839844 C 19.632812 480.566406 18.601562 479.535156 17.328125 479.535156 C 16.054688 479.535156 15.023438 480.566406 15.023438 481.839844 C 15.023438 483.113281 16.054688 484.144531 17.328125 484.144531 C 18.601562 484.144531 19.632812 483.113281 19.632812 481.839844 Z M 19.632812 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 8.941406 481.839844 C 8.941406 480.566406 7.910156 479.535156 6.636719 479.535156 C 5.363281 479.535156 4.332031 480.566406 4.332031 481.839844 C 4.332031 483.113281 5.363281 484.144531 6.636719 484.144531 C 7.910156 484.144531 8.941406 483.113281 8.941406 481.839844 Z M 8.941406 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.609375 481.839844 C 38.609375 480.566406 37.578125 479.535156 36.304688 479.535156 C 35.03125 479.535156 34 480.566406 34 481.839844 C 34 483.113281 35.03125 484.144531 36.304688 484.144531 C 37.578125 484.144531 38.609375 483.113281 38.609375 481.839844 Z M 38.609375 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.691406 481.839844 C 30.691406 480.566406 29.660156 479.535156 28.386719 479.535156 C 27.113281 479.535156 26.082031 480.566406 26.082031 481.839844 C 26.082031 483.113281 27.113281 484.144531 28.386719 484.144531 C 29.660156 484.144531 30.691406 483.113281 30.691406 481.839844 Z M 30.691406 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 6.300781 481.839844 C 6.300781 480.566406 5.269531 479.535156 3.996094 479.535156 C 2.722656 479.535156 1.691406 480.566406 1.691406 481.839844 C 1.691406 483.113281 2.722656 484.144531 3.996094 484.144531 C 5.269531 484.144531 6.300781 483.113281 6.300781 481.839844 Z M 6.300781 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 12.316406 481.839844 C 12.316406 480.566406 11.285156 479.535156 10.011719 479.535156 C 8.738281 479.535156 7.707031 480.566406 7.707031 481.839844 C 7.707031 483.113281 8.738281 484.144531 10.011719 484.144531 C 11.285156 484.144531 12.316406 483.113281 12.316406 481.839844 Z M 12.316406 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.09375 481.839844 C 25.09375 480.566406 24.0625 479.535156 22.789062 479.535156 C 21.515625 479.535156 20.484375 480.566406 20.484375 481.839844 C 20.484375 483.113281 21.515625 484.144531 22.789062 484.144531 C 24.0625 484.144531 25.09375 483.113281 25.09375 481.839844 Z M 25.09375 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 4.71875 481.839844 C 4.71875 480.566406 3.6875 479.535156 2.414062 479.535156 C 1.140625 479.535156 0.109375 480.566406 0.109375 481.839844 C 0.109375 483.113281 1.140625 484.144531 2.414062 484.144531 C 3.6875 484.144531 4.71875 483.113281 4.71875 481.839844 Z M 4.71875 481.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.164062 476.996094 C 39.164062 475.722656 38.132812 474.691406 36.859375 474.691406 C 35.585938 474.691406 34.554688 475.722656 34.554688 476.996094 C 34.554688 478.269531 35.585938 479.300781 36.859375 479.300781 C 38.132812 479.300781 39.164062 478.269531 39.164062 476.996094 Z M 39.164062 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 7.929688 476.996094 C 7.929688 475.722656 6.898438 474.691406 5.625 474.691406 C 4.351562 474.691406 3.320312 475.722656 3.320312 476.996094 C 3.320312 478.269531 4.351562 479.300781 5.625 479.300781 C 6.898438 479.300781 7.929688 478.269531 7.929688 476.996094 Z M 7.929688 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.003906 476.996094 C 27.003906 475.722656 25.972656 474.691406 24.699219 474.691406 C 23.425781 474.691406 22.394531 475.722656 22.394531 476.996094 C 22.394531 478.269531 23.425781 479.300781 24.699219 479.300781 C 25.972656 479.300781 27.003906 478.269531 27.003906 476.996094 Z M 27.003906 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 9.746094 476.996094 C 9.746094 475.722656 8.714844 474.691406 7.441406 474.691406 C 6.167969 474.691406 5.136719 475.722656 5.136719 476.996094 C 5.136719 478.269531 6.167969 479.300781 7.441406 479.300781 C 8.714844 479.300781 9.746094 478.269531 9.746094 476.996094 Z M 9.746094 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.285156 476.996094 C 15.285156 475.722656 14.253906 474.691406 12.980469 474.691406 C 11.707031 474.691406 10.675781 475.722656 10.675781 476.996094 C 10.675781 478.269531 11.707031 479.300781 12.980469 479.300781 C 14.253906 479.300781 15.285156 478.269531 15.285156 476.996094 Z M 15.285156 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.191406 476.996094 C 23.191406 475.722656 22.160156 474.691406 20.886719 474.691406 C 19.613281 474.691406 18.582031 475.722656 18.582031 476.996094 C 18.582031 478.269531 19.613281 479.300781 20.886719 479.300781 C 22.160156 479.300781 23.191406 478.269531 23.191406 476.996094 Z M 23.191406 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.46875 476.996094 C 27.46875 475.722656 26.4375 474.691406 25.164062 474.691406 C 23.890625 474.691406 22.859375 475.722656 22.859375 476.996094 C 22.859375 478.269531 23.890625 479.300781 25.164062 479.300781 C 26.4375 479.300781 27.46875 478.269531 27.46875 476.996094 Z M 27.46875 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 13.230469 476.996094 C 13.230469 475.722656 12.199219 474.691406 10.925781 474.691406 C 9.652344 474.691406 8.621094 475.722656 8.621094 476.996094 C 8.621094 478.269531 9.652344 479.300781 10.925781 479.300781 C 12.199219 479.300781 13.230469 478.269531 13.230469 476.996094 Z M 13.230469 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.652344 476.996094 C 42.652344 475.722656 41.621094 474.691406 40.347656 474.691406 C 39.074219 474.691406 38.042969 475.722656 38.042969 476.996094 C 38.042969 478.269531 39.074219 479.300781 40.347656 479.300781 C 41.621094 479.300781 42.652344 478.269531 42.652344 476.996094 Z M 42.652344 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.957031 476.996094 C 25.957031 475.722656 24.925781 474.691406 23.652344 474.691406 C 22.378906 474.691406 21.347656 475.722656 21.347656 476.996094 C 21.347656 478.269531 22.378906 479.300781 23.652344 479.300781 C 24.925781 479.300781 25.957031 478.269531 25.957031 476.996094 Z M 25.957031 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 5.304688 476.996094 C 5.304688 475.722656 4.273438 474.691406 3 474.691406 C 1.726562 474.691406 0.695312 475.722656 0.695312 476.996094 C 0.695312 478.269531 1.726562 479.300781 3 479.300781 C 4.273438 479.300781 5.304688 478.269531 5.304688 476.996094 Z M 5.304688 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.574219 476.996094 C 25.574219 475.722656 24.542969 474.691406 23.269531 474.691406 C 21.996094 474.691406 20.964844 475.722656 20.964844 476.996094 C 20.964844 478.269531 21.996094 479.300781 23.269531 479.300781 C 24.542969 479.300781 25.574219 478.269531 25.574219 476.996094 Z M 25.574219 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.570312 476.996094 C 38.570312 475.722656 37.539062 474.691406 36.265625 474.691406 C 34.992188 474.691406 33.960938 475.722656 33.960938 476.996094 C 33.960938 478.269531 34.992188 479.300781 36.265625 479.300781 C 37.539062 479.300781 38.570312 478.269531 38.570312 476.996094 Z M 38.570312 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.867188 476.996094 C 16.867188 475.722656 15.835938 474.691406 14.5625 474.691406 C 13.289062 474.691406 12.257812 475.722656 12.257812 476.996094 C 12.257812 478.269531 13.289062 479.300781 14.5625 479.300781 C 15.835938 479.300781 16.867188 478.269531 16.867188 476.996094 Z M 16.867188 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 17.3125 476.996094 C 17.3125 475.722656 16.28125 474.691406 15.007812 474.691406 C 13.734375 474.691406 12.703125 475.722656 12.703125 476.996094 C 12.703125 478.269531 13.734375 479.300781 15.007812 479.300781 C 16.28125 479.300781 17.3125 478.269531 17.3125 476.996094 Z M 17.3125 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.058594 476.996094 C 44.058594 475.722656 43.027344 474.691406 41.753906 474.691406 C 40.480469 474.691406 39.449219 475.722656 39.449219 476.996094 C 39.449219 478.269531 40.480469 479.300781 41.753906 479.300781 C 43.027344 479.300781 44.058594 478.269531 44.058594 476.996094 Z M 44.058594 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.140625 476.996094 C 33.140625 475.722656 32.109375 474.691406 30.835938 474.691406 C 29.5625 474.691406 28.53125 475.722656 28.53125 476.996094 C 28.53125 478.269531 29.5625 479.300781 30.835938 479.300781 C 32.109375 479.300781 33.140625 478.269531 33.140625 476.996094 Z M 33.140625 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.925781 476.996094 C 15.925781 475.722656 14.894531 474.691406 13.621094 474.691406 C 12.347656 474.691406 11.316406 475.722656 11.316406 476.996094 C 11.316406 478.269531 12.347656 479.300781 13.621094 479.300781 C 14.894531 479.300781 15.925781 478.269531 15.925781 476.996094 Z M 15.925781 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.40625 476.996094 C 23.40625 475.722656 22.375 474.691406 21.101562 474.691406 C 19.828125 474.691406 18.796875 475.722656 18.796875 476.996094 C 18.796875 478.269531 19.828125 479.300781 21.101562 479.300781 C 22.375 479.300781 23.40625 478.269531 23.40625 476.996094 Z M 23.40625 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.15625 476.996094 C 31.15625 475.722656 30.125 474.691406 28.851562 474.691406 C 27.578125 474.691406 26.546875 475.722656 26.546875 476.996094 C 26.546875 478.269531 27.578125 479.300781 28.851562 479.300781 C 30.125 479.300781 31.15625 478.269531 31.15625 476.996094 Z M 31.15625 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 4.890625 476.996094 C 4.890625 475.722656 3.859375 474.691406 2.585938 474.691406 C 1.3125 474.691406 0.28125 475.722656 0.28125 476.996094 C 0.28125 478.269531 1.3125 479.300781 2.585938 479.300781 C 3.859375 479.300781 4.890625 478.269531 4.890625 476.996094 Z M 4.890625 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.824219 476.996094 C 26.824219 475.722656 25.792969 474.691406 24.519531 474.691406 C 23.246094 474.691406 22.214844 475.722656 22.214844 476.996094 C 22.214844 478.269531 23.246094 479.300781 24.519531 479.300781 C 25.792969 479.300781 26.824219 478.269531 26.824219 476.996094 Z M 26.824219 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.605469 476.996094 C 20.605469 475.722656 19.574219 474.691406 18.300781 474.691406 C 17.027344 474.691406 15.996094 475.722656 15.996094 476.996094 C 15.996094 478.269531 17.027344 479.300781 18.300781 479.300781 C 19.574219 479.300781 20.605469 478.269531 20.605469 476.996094 Z M 20.605469 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 9.421875 476.996094 C 9.421875 475.722656 8.390625 474.691406 7.117188 474.691406 C 5.84375 474.691406 4.8125 475.722656 4.8125 476.996094 C 4.8125 478.269531 5.84375 479.300781 7.117188 479.300781 C 8.390625 479.300781 9.421875 478.269531 9.421875 476.996094 Z M 9.421875 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.464844 476.996094 C 40.464844 475.722656 39.433594 474.691406 38.160156 474.691406 C 36.886719 474.691406 35.855469 475.722656 35.855469 476.996094 C 35.855469 478.269531 36.886719 479.300781 38.160156 479.300781 C 39.433594 479.300781 40.464844 478.269531 40.464844 476.996094 Z M 40.464844 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.179688 476.996094 C 32.179688 475.722656 31.148438 474.691406 29.875 474.691406 C 28.601562 474.691406 27.570312 475.722656 27.570312 476.996094 C 27.570312 478.269531 28.601562 479.300781 29.875 479.300781 C 31.148438 479.300781 32.179688 478.269531 32.179688 476.996094 Z M 32.179688 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 6.65625 476.996094 C 6.65625 475.722656 5.625 474.691406 4.351562 474.691406 C 3.078125 474.691406 2.046875 475.722656 2.046875 476.996094 C 2.046875 478.269531 3.078125 479.300781 4.351562 479.300781 C 5.625 479.300781 6.65625 478.269531 6.65625 476.996094 Z M 6.65625 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 12.949219 476.996094 C 12.949219 475.722656 11.917969 474.691406 10.644531 474.691406 C 9.371094 474.691406 8.339844 475.722656 8.339844 476.996094 C 8.339844 478.269531 9.371094 479.300781 10.644531 479.300781 C 11.917969 479.300781 12.949219 478.269531 12.949219 476.996094 Z M 12.949219 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.320312 476.996094 C 26.320312 475.722656 25.289062 474.691406 24.015625 474.691406 C 22.742188 474.691406 21.710938 475.722656 21.710938 476.996094 C 21.710938 478.269531 22.742188 479.300781 24.015625 479.300781 C 25.289062 479.300781 26.320312 478.269531 26.320312 476.996094 Z M 26.320312 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 5 476.996094 C 5 475.722656 3.96875 474.691406 2.695312 474.691406 C 1.421875 474.691406 0.390625 475.722656 0.390625 476.996094 C 0.390625 478.269531 1.421875 479.300781 2.695312 479.300781 C 3.96875 479.300781 5 478.269531 5 476.996094 Z M 5 476.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.113281 472.152344 C 41.113281 470.878906 40.082031 469.847656 38.808594 469.847656 C 37.535156 469.847656 36.503906 470.878906 36.503906 472.152344 C 36.503906 473.425781 37.535156 474.457031 38.808594 474.457031 C 40.082031 474.457031 41.113281 473.425781 41.113281 472.152344 Z M 41.113281 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 8.804688 472.152344 C 8.804688 470.878906 7.773438 469.847656 6.5 469.847656 C 5.226562 469.847656 4.195312 470.878906 4.195312 472.152344 C 4.195312 473.425781 5.226562 474.457031 6.5 474.457031 C 7.773438 474.457031 8.804688 473.425781 8.804688 472.152344 Z M 8.804688 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.535156 472.152344 C 28.535156 470.878906 27.503906 469.847656 26.230469 469.847656 C 24.957031 469.847656 23.925781 470.878906 23.925781 472.152344 C 23.925781 473.425781 24.957031 474.457031 26.230469 474.457031 C 27.503906 474.457031 28.535156 473.425781 28.535156 472.152344 Z M 28.535156 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 10.683594 472.152344 C 10.683594 470.878906 9.652344 469.847656 8.378906 469.847656 C 7.105469 469.847656 6.074219 470.878906 6.074219 472.152344 C 6.074219 473.425781 7.105469 474.457031 8.378906 474.457031 C 9.652344 474.457031 10.683594 473.425781 10.683594 472.152344 Z M 10.683594 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.414062 472.152344 C 16.414062 470.878906 15.382812 469.847656 14.109375 469.847656 C 12.835938 469.847656 11.804688 470.878906 11.804688 472.152344 C 11.804688 473.425781 12.835938 474.457031 14.109375 474.457031 C 15.382812 474.457031 16.414062 473.425781 16.414062 472.152344 Z M 16.414062 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.59375 472.152344 C 24.59375 470.878906 23.5625 469.847656 22.289062 469.847656 C 21.015625 469.847656 19.984375 470.878906 19.984375 472.152344 C 19.984375 473.425781 21.015625 474.457031 22.289062 474.457031 C 23.5625 474.457031 24.59375 473.425781 24.59375 472.152344 Z M 24.59375 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.015625 472.152344 C 29.015625 470.878906 27.984375 469.847656 26.710938 469.847656 C 25.4375 469.847656 24.40625 470.878906 24.40625 472.152344 C 24.40625 473.425781 25.4375 474.457031 26.710938 474.457031 C 27.984375 474.457031 29.015625 473.425781 29.015625 472.152344 Z M 29.015625 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 14.289062 472.152344 C 14.289062 470.878906 13.257812 469.847656 11.984375 469.847656 C 10.710938 469.847656 9.679688 470.878906 9.679688 472.152344 C 9.679688 473.425781 10.710938 474.457031 11.984375 474.457031 C 13.257812 474.457031 14.289062 473.425781 14.289062 472.152344 Z M 14.289062 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.722656 472.152344 C 44.722656 470.878906 43.691406 469.847656 42.417969 469.847656 C 41.144531 469.847656 40.113281 470.878906 40.113281 472.152344 C 40.113281 473.425781 41.144531 474.457031 42.417969 474.457031 C 43.691406 474.457031 44.722656 473.425781 44.722656 472.152344 Z M 44.722656 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.453125 472.152344 C 27.453125 470.878906 26.421875 469.847656 25.148438 469.847656 C 23.875 469.847656 22.84375 470.878906 22.84375 472.152344 C 22.84375 473.425781 23.875 474.457031 25.148438 474.457031 C 26.421875 474.457031 27.453125 473.425781 27.453125 472.152344 Z M 27.453125 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 6.09375 472.152344 C 6.09375 470.878906 5.0625 469.847656 3.789062 469.847656 C 2.515625 469.847656 1.484375 470.878906 1.484375 472.152344 C 1.484375 473.425781 2.515625 474.457031 3.789062 474.457031 C 5.0625 474.457031 6.09375 473.425781 6.09375 472.152344 Z M 6.09375 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.058594 472.152344 C 27.058594 470.878906 26.027344 469.847656 24.753906 469.847656 C 23.480469 469.847656 22.449219 470.878906 22.449219 472.152344 C 22.449219 473.425781 23.480469 474.457031 24.753906 474.457031 C 26.027344 474.457031 27.058594 473.425781 27.058594 472.152344 Z M 27.058594 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.5 472.152344 C 40.5 470.878906 39.46875 469.847656 38.195312 469.847656 C 36.921875 469.847656 35.890625 470.878906 35.890625 472.152344 C 35.890625 473.425781 36.921875 474.457031 38.195312 474.457031 C 39.46875 474.457031 40.5 473.425781 40.5 472.152344 Z M 40.5 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 18.050781 472.152344 C 18.050781 470.878906 17.019531 469.847656 15.746094 469.847656 C 14.472656 469.847656 13.441406 470.878906 13.441406 472.152344 C 13.441406 473.425781 14.472656 474.457031 15.746094 474.457031 C 17.019531 474.457031 18.050781 473.425781 18.050781 472.152344 Z M 18.050781 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 18.511719 472.152344 C 18.511719 470.878906 17.480469 469.847656 16.207031 469.847656 C 14.933594 469.847656 13.902344 470.878906 13.902344 472.152344 C 13.902344 473.425781 14.933594 474.457031 16.207031 474.457031 C 17.480469 474.457031 18.511719 473.425781 18.511719 472.152344 Z M 18.511719 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.175781 472.152344 C 46.175781 470.878906 45.144531 469.847656 43.871094 469.847656 C 42.597656 469.847656 41.566406 470.878906 41.566406 472.152344 C 41.566406 473.425781 42.597656 474.457031 43.871094 474.457031 C 45.144531 474.457031 46.175781 473.425781 46.175781 472.152344 Z M 46.175781 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.882812 472.152344 C 34.882812 470.878906 33.851562 469.847656 32.578125 469.847656 C 31.304688 469.847656 30.273438 470.878906 30.273438 472.152344 C 30.273438 473.425781 31.304688 474.457031 32.578125 474.457031 C 33.851562 474.457031 34.882812 473.425781 34.882812 472.152344 Z M 34.882812 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 17.078125 472.152344 C 17.078125 470.878906 16.046875 469.847656 14.773438 469.847656 C 13.5 469.847656 12.46875 470.878906 12.46875 472.152344 C 12.46875 473.425781 13.5 474.457031 14.773438 474.457031 C 16.046875 474.457031 17.078125 473.425781 17.078125 472.152344 Z M 17.078125 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.816406 472.152344 C 24.816406 470.878906 23.785156 469.847656 22.511719 469.847656 C 21.238281 469.847656 20.207031 470.878906 20.207031 472.152344 C 20.207031 473.425781 21.238281 474.457031 22.511719 474.457031 C 23.785156 474.457031 24.816406 473.425781 24.816406 472.152344 Z M 24.816406 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.828125 472.152344 C 32.828125 470.878906 31.796875 469.847656 30.523438 469.847656 C 29.25 469.847656 28.21875 470.878906 28.21875 472.152344 C 28.21875 473.425781 29.25 474.457031 30.523438 474.457031 C 31.796875 474.457031 32.828125 473.425781 32.828125 472.152344 Z M 32.828125 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 5.664062 472.152344 C 5.664062 470.878906 4.632812 469.847656 3.359375 469.847656 C 2.085938 469.847656 1.054688 470.878906 1.054688 472.152344 C 1.054688 473.425781 2.085938 474.457031 3.359375 474.457031 C 4.632812 474.457031 5.664062 473.425781 5.664062 472.152344 Z M 5.664062 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.347656 472.152344 C 28.347656 470.878906 27.316406 469.847656 26.042969 469.847656 C 24.769531 469.847656 23.738281 470.878906 23.738281 472.152344 C 23.738281 473.425781 24.769531 474.457031 26.042969 474.457031 C 27.316406 474.457031 28.347656 473.425781 28.347656 472.152344 Z M 28.347656 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 21.917969 472.152344 C 21.917969 470.878906 20.886719 469.847656 19.613281 469.847656 C 18.339844 469.847656 17.308594 470.878906 17.308594 472.152344 C 17.308594 473.425781 18.339844 474.457031 19.613281 474.457031 C 20.886719 474.457031 21.917969 473.425781 21.917969 472.152344 Z M 21.917969 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 10.347656 472.152344 C 10.347656 470.878906 9.316406 469.847656 8.042969 469.847656 C 6.769531 469.847656 5.738281 470.878906 5.738281 472.152344 C 5.738281 473.425781 6.769531 474.457031 8.042969 474.457031 C 9.316406 474.457031 10.347656 473.425781 10.347656 472.152344 Z M 10.347656 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.457031 472.152344 C 42.457031 470.878906 41.425781 469.847656 40.152344 469.847656 C 38.878906 469.847656 37.847656 470.878906 37.847656 472.152344 C 37.847656 473.425781 38.878906 474.457031 40.152344 474.457031 C 41.425781 474.457031 42.457031 473.425781 42.457031 472.152344 Z M 42.457031 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.886719 472.152344 C 33.886719 470.878906 32.855469 469.847656 31.582031 469.847656 C 30.308594 469.847656 29.277344 470.878906 29.277344 472.152344 C 29.277344 473.425781 30.308594 474.457031 31.582031 474.457031 C 32.855469 474.457031 33.886719 473.425781 33.886719 472.152344 Z M 33.886719 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 7.488281 472.152344 C 7.488281 470.878906 6.457031 469.847656 5.183594 469.847656 C 3.910156 469.847656 2.878906 470.878906 2.878906 472.152344 C 2.878906 473.425781 3.910156 474.457031 5.183594 474.457031 C 6.457031 474.457031 7.488281 473.425781 7.488281 472.152344 Z M 7.488281 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 14 472.152344 C 14 470.878906 12.96875 469.847656 11.695312 469.847656 C 10.421875 469.847656 9.390625 470.878906 9.390625 472.152344 C 9.390625 473.425781 10.421875 474.457031 11.695312 474.457031 C 12.96875 474.457031 14 473.425781 14 472.152344 Z M 14 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.828125 472.152344 C 27.828125 470.878906 26.796875 469.847656 25.523438 469.847656 C 24.25 469.847656 23.21875 470.878906 23.21875 472.152344 C 23.21875 473.425781 24.25 474.457031 25.523438 474.457031 C 26.796875 474.457031 27.828125 473.425781 27.828125 472.152344 Z M 27.828125 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 5.777344 472.152344 C 5.777344 470.878906 4.746094 469.847656 3.472656 469.847656 C 2.199219 469.847656 1.167969 470.878906 1.167969 472.152344 C 1.167969 473.425781 2.199219 474.457031 3.472656 474.457031 C 4.746094 474.457031 5.777344 473.425781 5.777344 472.152344 Z M 5.777344 472.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.195312 467.308594 C 43.195312 466.035156 42.164062 465.003906 40.890625 465.003906 C 39.617188 465.003906 38.585938 466.035156 38.585938 467.308594 C 38.585938 468.582031 39.617188 469.613281 40.890625 469.613281 C 42.164062 469.613281 43.195312 468.582031 43.195312 467.308594 Z M 43.195312 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 10.140625 467.308594 C 10.140625 466.035156 9.109375 465.003906 7.835938 465.003906 C 6.5625 465.003906 5.53125 466.035156 5.53125 467.308594 C 5.53125 468.582031 6.5625 469.613281 7.835938 469.613281 C 9.109375 469.613281 10.140625 468.582031 10.140625 467.308594 Z M 10.140625 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.328125 467.308594 C 30.328125 466.035156 29.296875 465.003906 28.023438 465.003906 C 26.75 465.003906 25.71875 466.035156 25.71875 467.308594 C 25.71875 468.582031 26.75 469.613281 28.023438 469.613281 C 29.296875 469.613281 30.328125 468.582031 30.328125 467.308594 Z M 30.328125 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 12.0625 467.308594 C 12.0625 466.035156 11.03125 465.003906 9.757812 465.003906 C 8.484375 465.003906 7.453125 466.035156 7.453125 467.308594 C 7.453125 468.582031 8.484375 469.613281 9.757812 469.613281 C 11.03125 469.613281 12.0625 468.582031 12.0625 467.308594 Z M 12.0625 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 17.921875 467.308594 C 17.921875 466.035156 16.890625 465.003906 15.617188 465.003906 C 14.34375 465.003906 13.3125 466.035156 13.3125 467.308594 C 13.3125 468.582031 14.34375 469.613281 15.617188 469.613281 C 16.890625 469.613281 17.921875 468.582031 17.921875 467.308594 Z M 17.921875 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.292969 467.308594 C 26.292969 466.035156 25.261719 465.003906 23.988281 465.003906 C 22.714844 465.003906 21.683594 466.035156 21.683594 467.308594 C 21.683594 468.582031 22.714844 469.613281 23.988281 469.613281 C 25.261719 469.613281 26.292969 468.582031 26.292969 467.308594 Z M 26.292969 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.816406 467.308594 C 30.816406 466.035156 29.785156 465.003906 28.511719 465.003906 C 27.238281 465.003906 26.207031 466.035156 26.207031 467.308594 C 26.207031 468.582031 27.238281 469.613281 28.511719 469.613281 C 29.785156 469.613281 30.816406 468.582031 30.816406 467.308594 Z M 30.816406 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.75 467.308594 C 15.75 466.035156 14.71875 465.003906 13.445312 465.003906 C 12.171875 465.003906 11.140625 466.035156 11.140625 467.308594 C 11.140625 468.582031 12.171875 469.613281 13.445312 469.613281 C 14.71875 469.613281 15.75 468.582031 15.75 467.308594 Z M 15.75 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.886719 467.308594 C 46.886719 466.035156 45.855469 465.003906 44.582031 465.003906 C 43.308594 465.003906 42.277344 466.035156 42.277344 467.308594 C 42.277344 468.582031 43.308594 469.613281 44.582031 469.613281 C 45.855469 469.613281 46.886719 468.582031 46.886719 467.308594 Z M 46.886719 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.21875 467.308594 C 29.21875 466.035156 28.1875 465.003906 26.914062 465.003906 C 25.640625 465.003906 24.609375 466.035156 24.609375 467.308594 C 24.609375 468.582031 25.640625 469.613281 26.914062 469.613281 C 28.1875 469.613281 29.21875 468.582031 29.21875 467.308594 Z M 29.21875 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 7.363281 467.308594 C 7.363281 466.035156 6.332031 465.003906 5.058594 465.003906 C 3.785156 465.003906 2.753906 466.035156 2.753906 467.308594 C 2.753906 468.582031 3.785156 469.613281 5.058594 469.613281 C 6.332031 469.613281 7.363281 468.582031 7.363281 467.308594 Z M 7.363281 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.8125 467.308594 C 28.8125 466.035156 27.78125 465.003906 26.507812 465.003906 C 25.234375 465.003906 24.203125 466.035156 24.203125 467.308594 C 24.203125 468.582031 25.234375 469.613281 26.507812 469.613281 C 27.78125 469.613281 28.8125 468.582031 28.8125 467.308594 Z M 28.8125 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.570312 467.308594 C 42.570312 466.035156 41.539062 465.003906 40.265625 465.003906 C 38.992188 465.003906 37.960938 466.035156 37.960938 467.308594 C 37.960938 468.582031 38.992188 469.613281 40.265625 469.613281 C 41.539062 469.613281 42.570312 468.582031 42.570312 467.308594 Z M 42.570312 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.597656 467.308594 C 19.597656 466.035156 18.566406 465.003906 17.292969 465.003906 C 16.019531 465.003906 14.988281 466.035156 14.988281 467.308594 C 14.988281 468.582031 16.019531 469.613281 17.292969 469.613281 C 18.566406 469.613281 19.597656 468.582031 19.597656 467.308594 Z M 19.597656 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.070312 467.308594 C 20.070312 466.035156 19.039062 465.003906 17.765625 465.003906 C 16.492188 465.003906 15.460938 466.035156 15.460938 467.308594 C 15.460938 468.582031 16.492188 469.613281 17.765625 469.613281 C 19.039062 469.613281 20.070312 468.582031 20.070312 467.308594 Z M 20.070312 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.375 467.308594 C 48.375 466.035156 47.34375 465.003906 46.070312 465.003906 C 44.796875 465.003906 43.765625 466.035156 43.765625 467.308594 C 43.765625 468.582031 44.796875 469.613281 46.070312 469.613281 C 47.34375 469.613281 48.375 468.582031 48.375 467.308594 Z M 48.375 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.820312 467.308594 C 36.820312 466.035156 35.789062 465.003906 34.515625 465.003906 C 33.242188 465.003906 32.210938 466.035156 32.210938 467.308594 C 32.210938 468.582031 33.242188 469.613281 34.515625 469.613281 C 35.789062 469.613281 36.820312 468.582031 36.820312 467.308594 Z M 36.820312 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 18.605469 467.308594 C 18.605469 466.035156 17.574219 465.003906 16.300781 465.003906 C 15.027344 465.003906 13.996094 466.035156 13.996094 467.308594 C 13.996094 468.582031 15.027344 469.613281 16.300781 469.613281 C 17.574219 469.613281 18.605469 468.582031 18.605469 467.308594 Z M 18.605469 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.519531 467.308594 C 26.519531 466.035156 25.488281 465.003906 24.214844 465.003906 C 22.941406 465.003906 21.910156 466.035156 21.910156 467.308594 C 21.910156 468.582031 22.941406 469.613281 24.214844 469.613281 C 25.488281 469.613281 26.519531 468.582031 26.519531 467.308594 Z M 26.519531 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.71875 467.308594 C 34.71875 466.035156 33.6875 465.003906 32.414062 465.003906 C 31.140625 465.003906 30.109375 466.035156 30.109375 467.308594 C 30.109375 468.582031 31.140625 469.613281 32.414062 469.613281 C 33.6875 469.613281 34.71875 468.582031 34.71875 467.308594 Z M 34.71875 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 6.921875 467.308594 C 6.921875 466.035156 5.890625 465.003906 4.617188 465.003906 C 3.34375 465.003906 2.3125 466.035156 2.3125 467.308594 C 2.3125 468.582031 3.34375 469.613281 4.617188 469.613281 C 5.890625 469.613281 6.921875 468.582031 6.921875 467.308594 Z M 6.921875 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.136719 467.308594 C 30.136719 466.035156 29.105469 465.003906 27.832031 465.003906 C 26.558594 465.003906 25.527344 466.035156 25.527344 467.308594 C 25.527344 468.582031 26.558594 469.613281 27.832031 469.613281 C 29.105469 469.613281 30.136719 468.582031 30.136719 467.308594 Z M 30.136719 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.554688 467.308594 C 23.554688 466.035156 22.523438 465.003906 21.25 465.003906 C 19.976562 465.003906 18.945312 466.035156 18.945312 467.308594 C 18.945312 468.582031 19.976562 469.613281 21.25 469.613281 C 22.523438 469.613281 23.554688 468.582031 23.554688 467.308594 Z M 23.554688 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 11.71875 467.308594 C 11.71875 466.035156 10.6875 465.003906 9.414062 465.003906 C 8.140625 465.003906 7.109375 466.035156 7.109375 467.308594 C 7.109375 468.582031 8.140625 469.613281 9.414062 469.613281 C 10.6875 469.613281 11.71875 468.582031 11.71875 467.308594 Z M 11.71875 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.570312 467.308594 C 44.570312 466.035156 43.539062 465.003906 42.265625 465.003906 C 40.992188 465.003906 39.960938 466.035156 39.960938 467.308594 C 39.960938 468.582031 40.992188 469.613281 42.265625 469.613281 C 43.539062 469.613281 44.570312 468.582031 44.570312 467.308594 Z M 44.570312 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.800781 467.308594 C 35.800781 466.035156 34.769531 465.003906 33.496094 465.003906 C 32.222656 465.003906 31.191406 466.035156 31.191406 467.308594 C 31.191406 468.582031 32.222656 469.613281 33.496094 469.613281 C 34.769531 469.613281 35.800781 468.582031 35.800781 467.308594 Z M 35.800781 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 8.792969 467.308594 C 8.792969 466.035156 7.761719 465.003906 6.488281 465.003906 C 5.214844 465.003906 4.183594 466.035156 4.183594 467.308594 C 4.183594 468.582031 5.214844 469.613281 6.488281 469.613281 C 7.761719 469.613281 8.792969 468.582031 8.792969 467.308594 Z M 8.792969 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.453125 467.308594 C 15.453125 466.035156 14.421875 465.003906 13.148438 465.003906 C 11.875 465.003906 10.84375 466.035156 10.84375 467.308594 C 10.84375 468.582031 11.875 469.613281 13.148438 469.613281 C 14.421875 469.613281 15.453125 468.582031 15.453125 467.308594 Z M 15.453125 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.601562 467.308594 C 29.601562 466.035156 28.570312 465.003906 27.296875 465.003906 C 26.023438 465.003906 24.992188 466.035156 24.992188 467.308594 C 24.992188 468.582031 26.023438 469.613281 27.296875 469.613281 C 28.570312 469.613281 29.601562 468.582031 29.601562 467.308594 Z M 29.601562 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 7.039062 467.308594 C 7.039062 466.035156 6.007812 465.003906 4.734375 465.003906 C 3.460938 465.003906 2.429688 466.035156 2.429688 467.308594 C 2.429688 468.582031 3.460938 469.613281 4.734375 469.613281 C 6.007812 469.613281 7.039062 468.582031 7.039062 467.308594 Z M 7.039062 467.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.390625 462.464844 C 45.390625 461.191406 44.359375 460.160156 43.085938 460.160156 C 41.8125 460.160156 40.78125 461.191406 40.78125 462.464844 C 40.78125 463.738281 41.8125 464.769531 43.085938 464.769531 C 44.359375 464.769531 45.390625 463.738281 45.390625 462.464844 Z M 45.390625 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 11.914062 462.464844 C 11.914062 461.191406 10.882812 460.160156 9.609375 460.160156 C 8.335938 460.160156 7.304688 461.191406 7.304688 462.464844 C 7.304688 463.738281 8.335938 464.769531 9.609375 464.769531 C 10.882812 464.769531 11.914062 463.738281 11.914062 462.464844 Z M 11.914062 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.359375 462.464844 C 32.359375 461.191406 31.328125 460.160156 30.054688 460.160156 C 28.78125 460.160156 27.75 461.191406 27.75 462.464844 C 27.75 463.738281 28.78125 464.769531 30.054688 464.769531 C 31.328125 464.769531 32.359375 463.738281 32.359375 462.464844 Z M 32.359375 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 13.863281 462.464844 C 13.863281 461.191406 12.832031 460.160156 11.558594 460.160156 C 10.285156 460.160156 9.253906 461.191406 9.253906 462.464844 C 9.253906 463.738281 10.285156 464.769531 11.558594 464.769531 C 12.832031 464.769531 13.863281 463.738281 13.863281 462.464844 Z M 13.863281 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.796875 462.464844 C 19.796875 461.191406 18.765625 460.160156 17.492188 460.160156 C 16.21875 460.160156 15.1875 461.191406 15.1875 462.464844 C 15.1875 463.738281 16.21875 464.769531 17.492188 464.769531 C 18.765625 464.769531 19.796875 463.738281 19.796875 462.464844 Z M 19.796875 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.273438 462.464844 C 28.273438 461.191406 27.242188 460.160156 25.96875 460.160156 C 24.695312 460.160156 23.664062 461.191406 23.664062 462.464844 C 23.664062 463.738281 24.695312 464.769531 25.96875 464.769531 C 27.242188 464.769531 28.273438 463.738281 28.273438 462.464844 Z M 28.273438 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.855469 462.464844 C 32.855469 461.191406 31.824219 460.160156 30.550781 460.160156 C 29.277344 460.160156 28.246094 461.191406 28.246094 462.464844 C 28.246094 463.738281 29.277344 464.769531 30.550781 464.769531 C 31.824219 464.769531 32.855469 463.738281 32.855469 462.464844 Z M 32.855469 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 17.597656 462.464844 C 17.597656 461.191406 16.566406 460.160156 15.292969 460.160156 C 14.019531 460.160156 12.988281 461.191406 12.988281 462.464844 C 12.988281 463.738281 14.019531 464.769531 15.292969 464.769531 C 16.566406 464.769531 17.597656 463.738281 17.597656 462.464844 Z M 17.597656 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.128906 462.464844 C 49.128906 461.191406 48.097656 460.160156 46.824219 460.160156 C 45.550781 460.160156 44.519531 461.191406 44.519531 462.464844 C 44.519531 463.738281 45.550781 464.769531 46.824219 464.769531 C 48.097656 464.769531 49.128906 463.738281 49.128906 462.464844 Z M 49.128906 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.238281 462.464844 C 31.238281 461.191406 30.207031 460.160156 28.933594 460.160156 C 27.660156 460.160156 26.628906 461.191406 26.628906 462.464844 C 26.628906 463.738281 27.660156 464.769531 28.933594 464.769531 C 30.207031 464.769531 31.238281 463.738281 31.238281 462.464844 Z M 31.238281 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 9.105469 462.464844 C 9.105469 461.191406 8.074219 460.160156 6.800781 460.160156 C 5.527344 460.160156 4.496094 461.191406 4.496094 462.464844 C 4.496094 463.738281 5.527344 464.769531 6.800781 464.769531 C 8.074219 464.769531 9.105469 463.738281 9.105469 462.464844 Z M 9.105469 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.828125 462.464844 C 30.828125 461.191406 29.796875 460.160156 28.523438 460.160156 C 27.25 460.160156 26.21875 461.191406 26.21875 462.464844 C 26.21875 463.738281 27.25 464.769531 28.523438 464.769531 C 29.796875 464.769531 30.828125 463.738281 30.828125 462.464844 Z M 30.828125 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.757812 462.464844 C 44.757812 461.191406 43.726562 460.160156 42.453125 460.160156 C 41.179688 460.160156 40.148438 461.191406 40.148438 462.464844 C 40.148438 463.738281 41.179688 464.769531 42.453125 464.769531 C 43.726562 464.769531 44.757812 463.738281 44.757812 462.464844 Z M 44.757812 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 21.492188 462.464844 C 21.492188 461.191406 20.460938 460.160156 19.1875 460.160156 C 17.914062 460.160156 16.882812 461.191406 16.882812 462.464844 C 16.882812 463.738281 17.914062 464.769531 19.1875 464.769531 C 20.460938 464.769531 21.492188 463.738281 21.492188 462.464844 Z M 21.492188 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 21.972656 462.464844 C 21.972656 461.191406 20.941406 460.160156 19.667969 460.160156 C 18.394531 460.160156 17.363281 461.191406 17.363281 462.464844 C 17.363281 463.738281 18.394531 464.769531 19.667969 464.769531 C 20.941406 464.769531 21.972656 463.738281 21.972656 462.464844 Z M 21.972656 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.636719 462.464844 C 50.636719 461.191406 49.605469 460.160156 48.332031 460.160156 C 47.058594 460.160156 46.027344 461.191406 46.027344 462.464844 C 46.027344 463.738281 47.058594 464.769531 48.332031 464.769531 C 49.605469 464.769531 50.636719 463.738281 50.636719 462.464844 Z M 50.636719 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.9375 462.464844 C 38.9375 461.191406 37.90625 460.160156 36.632812 460.160156 C 35.359375 460.160156 34.328125 461.191406 34.328125 462.464844 C 34.328125 463.738281 35.359375 464.769531 36.632812 464.769531 C 37.90625 464.769531 38.9375 463.738281 38.9375 462.464844 Z M 38.9375 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.488281 462.464844 C 20.488281 461.191406 19.457031 460.160156 18.183594 460.160156 C 16.910156 460.160156 15.878906 461.191406 15.878906 462.464844 C 15.878906 463.738281 16.910156 464.769531 18.183594 464.769531 C 19.457031 464.769531 20.488281 463.738281 20.488281 462.464844 Z M 20.488281 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.503906 462.464844 C 28.503906 461.191406 27.472656 460.160156 26.199219 460.160156 C 24.925781 460.160156 23.894531 461.191406 23.894531 462.464844 C 23.894531 463.738281 24.925781 464.769531 26.199219 464.769531 C 27.472656 464.769531 28.503906 463.738281 28.503906 462.464844 Z M 28.503906 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.804688 462.464844 C 36.804688 461.191406 35.773438 460.160156 34.5 460.160156 C 33.226562 460.160156 32.195312 461.191406 32.195312 462.464844 C 32.195312 463.738281 33.226562 464.769531 34.5 464.769531 C 35.773438 464.769531 36.804688 463.738281 36.804688 462.464844 Z M 36.804688 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 8.65625 462.464844 C 8.65625 461.191406 7.625 460.160156 6.351562 460.160156 C 5.078125 460.160156 4.046875 461.191406 4.046875 462.464844 C 4.046875 463.738281 5.078125 464.769531 6.351562 464.769531 C 7.625 464.769531 8.65625 463.738281 8.65625 462.464844 Z M 8.65625 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.164062 462.464844 C 32.164062 461.191406 31.132812 460.160156 29.859375 460.160156 C 28.585938 460.160156 27.554688 461.191406 27.554688 462.464844 C 27.554688 463.738281 28.585938 464.769531 29.859375 464.769531 C 31.132812 464.769531 32.164062 463.738281 32.164062 462.464844 Z M 32.164062 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.5 462.464844 C 25.5 461.191406 24.46875 460.160156 23.195312 460.160156 C 21.921875 460.160156 20.890625 461.191406 20.890625 462.464844 C 20.890625 463.738281 21.921875 464.769531 23.195312 464.769531 C 24.46875 464.769531 25.5 463.738281 25.5 462.464844 Z M 25.5 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 13.511719 462.464844 C 13.511719 461.191406 12.480469 460.160156 11.207031 460.160156 C 9.933594 460.160156 8.902344 461.191406 8.902344 462.464844 C 8.902344 463.738281 9.933594 464.769531 11.207031 464.769531 C 12.480469 464.769531 13.511719 463.738281 13.511719 462.464844 Z M 13.511719 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.785156 462.464844 C 46.785156 461.191406 45.753906 460.160156 44.480469 460.160156 C 43.207031 460.160156 42.175781 461.191406 42.175781 462.464844 C 42.175781 463.738281 43.207031 464.769531 44.480469 464.769531 C 45.753906 464.769531 46.785156 463.738281 46.785156 462.464844 Z M 46.785156 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.902344 462.464844 C 37.902344 461.191406 36.871094 460.160156 35.597656 460.160156 C 34.324219 460.160156 33.292969 461.191406 33.292969 462.464844 C 33.292969 463.738281 34.324219 464.769531 35.597656 464.769531 C 36.871094 464.769531 37.902344 463.738281 37.902344 462.464844 Z M 37.902344 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 10.550781 462.464844 C 10.550781 461.191406 9.519531 460.160156 8.246094 460.160156 C 6.972656 460.160156 5.941406 461.191406 5.941406 462.464844 C 5.941406 463.738281 6.972656 464.769531 8.246094 464.769531 C 9.519531 464.769531 10.550781 463.738281 10.550781 462.464844 Z M 10.550781 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 17.296875 462.464844 C 17.296875 461.191406 16.265625 460.160156 14.992188 460.160156 C 13.71875 460.160156 12.6875 461.191406 12.6875 462.464844 C 12.6875 463.738281 13.71875 464.769531 14.992188 464.769531 C 16.265625 464.769531 17.296875 463.738281 17.296875 462.464844 Z M 17.296875 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.625 462.464844 C 31.625 461.191406 30.59375 460.160156 29.320312 460.160156 C 28.046875 460.160156 27.015625 461.191406 27.015625 462.464844 C 27.015625 463.738281 28.046875 464.769531 29.320312 464.769531 C 30.59375 464.769531 31.625 463.738281 31.625 462.464844 Z M 31.625 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 8.777344 462.464844 C 8.777344 461.191406 7.746094 460.160156 6.472656 460.160156 C 5.199219 460.160156 4.167969 461.191406 4.167969 462.464844 C 4.167969 463.738281 5.199219 464.769531 6.472656 464.769531 C 7.746094 464.769531 8.777344 463.738281 8.777344 462.464844 Z M 8.777344 462.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.675781 457.621094 C 47.675781 456.347656 46.644531 455.316406 45.371094 455.316406 C 44.097656 455.316406 43.066406 456.347656 43.066406 457.621094 C 43.066406 458.894531 44.097656 459.925781 45.371094 459.925781 C 46.644531 459.925781 47.675781 458.894531 47.675781 457.621094 Z M 47.675781 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 14.117188 457.621094 C 14.117188 456.347656 13.085938 455.316406 11.8125 455.316406 C 10.539062 455.316406 9.507812 456.347656 9.507812 457.621094 C 9.507812 458.894531 10.539062 459.925781 11.8125 459.925781 C 13.085938 459.925781 14.117188 458.894531 14.117188 457.621094 Z M 14.117188 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.613281 457.621094 C 34.613281 456.347656 33.582031 455.316406 32.308594 455.316406 C 31.035156 455.316406 30.003906 456.347656 30.003906 457.621094 C 30.003906 458.894531 31.035156 459.925781 32.308594 459.925781 C 33.582031 459.925781 34.613281 458.894531 34.613281 457.621094 Z M 34.613281 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.066406 457.621094 C 16.066406 456.347656 15.035156 455.316406 13.761719 455.316406 C 12.488281 455.316406 11.457031 456.347656 11.457031 457.621094 C 11.457031 458.894531 12.488281 459.925781 13.761719 459.925781 C 15.035156 459.925781 16.066406 458.894531 16.066406 457.621094 Z M 16.066406 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.019531 457.621094 C 22.019531 456.347656 20.988281 455.316406 19.714844 455.316406 C 18.441406 455.316406 17.410156 456.347656 17.410156 457.621094 C 17.410156 458.894531 18.441406 459.925781 19.714844 459.925781 C 20.988281 459.925781 22.019531 458.894531 22.019531 457.621094 Z M 22.019531 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.515625 457.621094 C 30.515625 456.347656 29.484375 455.316406 28.210938 455.316406 C 26.9375 455.316406 25.90625 456.347656 25.90625 457.621094 C 25.90625 458.894531 26.9375 459.925781 28.210938 459.925781 C 29.484375 459.925781 30.515625 458.894531 30.515625 457.621094 Z M 30.515625 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.109375 457.621094 C 35.109375 456.347656 34.078125 455.316406 32.804688 455.316406 C 31.53125 455.316406 30.5 456.347656 30.5 457.621094 C 30.5 458.894531 31.53125 459.925781 32.804688 459.925781 C 34.078125 459.925781 35.109375 458.894531 35.109375 457.621094 Z M 35.109375 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.8125 457.621094 C 19.8125 456.347656 18.78125 455.316406 17.507812 455.316406 C 16.234375 455.316406 15.203125 456.347656 15.203125 457.621094 C 15.203125 458.894531 16.234375 459.925781 17.507812 459.925781 C 18.78125 459.925781 19.8125 458.894531 19.8125 457.621094 Z M 19.8125 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.425781 457.621094 C 51.425781 456.347656 50.394531 455.316406 49.121094 455.316406 C 47.847656 455.316406 46.816406 456.347656 46.816406 457.621094 C 46.816406 458.894531 47.847656 459.925781 49.121094 459.925781 C 50.394531 459.925781 51.425781 458.894531 51.425781 457.621094 Z M 51.425781 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.488281 457.621094 C 33.488281 456.347656 32.457031 455.316406 31.183594 455.316406 C 29.910156 455.316406 28.878906 456.347656 28.878906 457.621094 C 28.878906 458.894531 29.910156 459.925781 31.183594 459.925781 C 32.457031 459.925781 33.488281 458.894531 33.488281 457.621094 Z M 33.488281 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 11.296875 457.621094 C 11.296875 456.347656 10.265625 455.316406 8.992188 455.316406 C 7.71875 455.316406 6.6875 456.347656 6.6875 457.621094 C 6.6875 458.894531 7.71875 459.925781 8.992188 459.925781 C 10.265625 459.925781 11.296875 458.894531 11.296875 457.621094 Z M 11.296875 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.078125 457.621094 C 33.078125 456.347656 32.046875 455.316406 30.773438 455.316406 C 29.5 455.316406 28.46875 456.347656 28.46875 457.621094 C 28.46875 458.894531 29.5 459.925781 30.773438 459.925781 C 32.046875 459.925781 33.078125 458.894531 33.078125 457.621094 Z M 33.078125 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.039062 457.621094 C 47.039062 456.347656 46.007812 455.316406 44.734375 455.316406 C 43.460938 455.316406 42.429688 456.347656 42.429688 457.621094 C 42.429688 458.894531 43.460938 459.925781 44.734375 459.925781 C 46.007812 459.925781 47.039062 458.894531 47.039062 457.621094 Z M 47.039062 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.71875 457.621094 C 23.71875 456.347656 22.6875 455.316406 21.414062 455.316406 C 20.140625 455.316406 19.109375 456.347656 19.109375 457.621094 C 19.109375 458.894531 20.140625 459.925781 21.414062 459.925781 C 22.6875 459.925781 23.71875 458.894531 23.71875 457.621094 Z M 23.71875 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.199219 457.621094 C 24.199219 456.347656 23.167969 455.316406 21.894531 455.316406 C 20.621094 455.316406 19.589844 456.347656 19.589844 457.621094 C 19.589844 458.894531 20.621094 459.925781 21.894531 459.925781 C 23.167969 459.925781 24.199219 458.894531 24.199219 457.621094 Z M 24.199219 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.9375 457.621094 C 52.9375 456.347656 51.90625 455.316406 50.632812 455.316406 C 49.359375 455.316406 48.328125 456.347656 48.328125 457.621094 C 48.328125 458.894531 49.359375 459.925781 50.632812 459.925781 C 51.90625 459.925781 52.9375 458.894531 52.9375 457.621094 Z M 52.9375 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.207031 457.621094 C 41.207031 456.347656 40.175781 455.316406 38.902344 455.316406 C 37.628906 455.316406 36.597656 456.347656 36.597656 457.621094 C 36.597656 458.894531 37.628906 459.925781 38.902344 459.925781 C 40.175781 459.925781 41.207031 458.894531 41.207031 457.621094 Z M 41.207031 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.710938 457.621094 C 22.710938 456.347656 21.679688 455.316406 20.40625 455.316406 C 19.132812 455.316406 18.101562 456.347656 18.101562 457.621094 C 18.101562 458.894531 19.132812 459.925781 20.40625 459.925781 C 21.679688 459.925781 22.710938 458.894531 22.710938 457.621094 Z M 22.710938 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.746094 457.621094 C 30.746094 456.347656 29.714844 455.316406 28.441406 455.316406 C 27.167969 455.316406 26.136719 456.347656 26.136719 457.621094 C 26.136719 458.894531 27.167969 459.925781 28.441406 459.925781 C 29.714844 459.925781 30.746094 458.894531 30.746094 457.621094 Z M 30.746094 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.070312 457.621094 C 39.070312 456.347656 38.039062 455.316406 36.765625 455.316406 C 35.492188 455.316406 34.460938 456.347656 34.460938 457.621094 C 34.460938 458.894531 35.492188 459.925781 36.765625 459.925781 C 38.039062 459.925781 39.070312 458.894531 39.070312 457.621094 Z M 39.070312 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 10.851562 457.621094 C 10.851562 456.347656 9.820312 455.316406 8.546875 455.316406 C 7.273438 455.316406 6.242188 456.347656 6.242188 457.621094 C 6.242188 458.894531 7.273438 459.925781 8.546875 459.925781 C 9.820312 459.925781 10.851562 458.894531 10.851562 457.621094 Z M 10.851562 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.417969 457.621094 C 34.417969 456.347656 33.386719 455.316406 32.113281 455.316406 C 30.839844 455.316406 29.808594 456.347656 29.808594 457.621094 C 29.808594 458.894531 30.839844 459.925781 32.113281 459.925781 C 33.386719 459.925781 34.417969 458.894531 34.417969 457.621094 Z M 34.417969 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.738281 457.621094 C 27.738281 456.347656 26.707031 455.316406 25.433594 455.316406 C 24.160156 455.316406 23.128906 456.347656 23.128906 457.621094 C 23.128906 458.894531 24.160156 459.925781 25.433594 459.925781 C 26.707031 459.925781 27.738281 458.894531 27.738281 457.621094 Z M 27.738281 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.71875 457.621094 C 15.71875 456.347656 14.6875 455.316406 13.414062 455.316406 C 12.140625 455.316406 11.109375 456.347656 11.109375 457.621094 C 11.109375 458.894531 12.140625 459.925781 13.414062 459.925781 C 14.6875 459.925781 15.71875 458.894531 15.71875 457.621094 Z M 15.71875 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.074219 457.621094 C 49.074219 456.347656 48.042969 455.316406 46.769531 455.316406 C 45.496094 455.316406 44.464844 456.347656 44.464844 457.621094 C 44.464844 458.894531 45.496094 459.925781 46.769531 459.925781 C 48.042969 459.925781 49.074219 458.894531 49.074219 457.621094 Z M 49.074219 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.171875 457.621094 C 40.171875 456.347656 39.140625 455.316406 37.867188 455.316406 C 36.59375 455.316406 35.5625 456.347656 35.5625 457.621094 C 35.5625 458.894531 36.59375 459.925781 37.867188 459.925781 C 39.140625 459.925781 40.171875 458.894531 40.171875 457.621094 Z M 40.171875 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 12.75 457.621094 C 12.75 456.347656 11.71875 455.316406 10.445312 455.316406 C 9.171875 455.316406 8.140625 456.347656 8.140625 457.621094 C 8.140625 458.894531 9.171875 459.925781 10.445312 459.925781 C 11.71875 459.925781 12.75 458.894531 12.75 457.621094 Z M 12.75 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.511719 457.621094 C 19.511719 456.347656 18.480469 455.316406 17.207031 455.316406 C 15.933594 455.316406 14.902344 456.347656 14.902344 457.621094 C 14.902344 458.894531 15.933594 459.925781 17.207031 459.925781 C 18.480469 459.925781 19.511719 458.894531 19.511719 457.621094 Z M 19.511719 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.878906 457.621094 C 33.878906 456.347656 32.847656 455.316406 31.574219 455.316406 C 30.300781 455.316406 29.269531 456.347656 29.269531 457.621094 C 29.269531 458.894531 30.300781 459.925781 31.574219 459.925781 C 32.847656 459.925781 33.878906 458.894531 33.878906 457.621094 Z M 33.878906 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 10.972656 457.621094 C 10.972656 456.347656 9.941406 455.316406 8.667969 455.316406 C 7.394531 455.316406 6.363281 456.347656 6.363281 457.621094 C 6.363281 458.894531 7.394531 459.925781 8.667969 459.925781 C 9.941406 459.925781 10.972656 458.894531 10.972656 457.621094 Z M 10.972656 457.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.03125 452.777344 C 50.03125 451.503906 49 450.472656 47.726562 450.472656 C 46.453125 450.472656 45.421875 451.503906 45.421875 452.777344 C 45.421875 454.050781 46.453125 455.082031 47.726562 455.082031 C 49 455.082031 50.03125 454.050781 50.03125 452.777344 Z M 50.03125 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.722656 452.777344 C 16.722656 451.503906 15.691406 450.472656 14.417969 450.472656 C 13.144531 450.472656 12.113281 451.503906 12.113281 452.777344 C 12.113281 454.050781 13.144531 455.082031 14.417969 455.082031 C 15.691406 455.082031 16.722656 454.050781 16.722656 452.777344 Z M 16.722656 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.0625 452.777344 C 37.0625 451.503906 36.03125 450.472656 34.757812 450.472656 C 33.484375 450.472656 32.453125 451.503906 32.453125 452.777344 C 32.453125 454.050781 33.484375 455.082031 34.757812 455.082031 C 36.03125 455.082031 37.0625 454.050781 37.0625 452.777344 Z M 37.0625 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 18.660156 452.777344 C 18.660156 451.503906 17.628906 450.472656 16.355469 450.472656 C 15.082031 450.472656 14.050781 451.503906 14.050781 452.777344 C 14.050781 454.050781 15.082031 455.082031 16.355469 455.082031 C 17.628906 455.082031 18.660156 454.050781 18.660156 452.777344 Z M 18.660156 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.566406 452.777344 C 24.566406 451.503906 23.535156 450.472656 22.261719 450.472656 C 20.988281 450.472656 19.957031 451.503906 19.957031 452.777344 C 19.957031 454.050781 20.988281 455.082031 22.261719 455.082031 C 23.535156 455.082031 24.566406 454.050781 24.566406 452.777344 Z M 24.566406 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33 452.777344 C 33 451.503906 31.96875 450.472656 30.695312 450.472656 C 29.421875 450.472656 28.390625 451.503906 28.390625 452.777344 C 28.390625 454.050781 29.421875 455.082031 30.695312 455.082031 C 31.96875 455.082031 33 454.050781 33 452.777344 Z M 33 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.558594 452.777344 C 37.558594 451.503906 36.527344 450.472656 35.253906 450.472656 C 33.980469 450.472656 32.949219 451.503906 32.949219 452.777344 C 32.949219 454.050781 33.980469 455.082031 35.253906 455.082031 C 36.527344 455.082031 37.558594 454.050781 37.558594 452.777344 Z M 37.558594 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.375 452.777344 C 22.375 451.503906 21.34375 450.472656 20.070312 450.472656 C 18.796875 450.472656 17.765625 451.503906 17.765625 452.777344 C 17.765625 454.050781 18.796875 455.082031 20.070312 455.082031 C 21.34375 455.082031 22.375 454.050781 22.375 452.777344 Z M 22.375 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.75 452.777344 C 53.75 451.503906 52.71875 450.472656 51.445312 450.472656 C 50.171875 450.472656 49.140625 451.503906 49.140625 452.777344 C 49.140625 454.050781 50.171875 455.082031 51.445312 455.082031 C 52.71875 455.082031 53.75 454.050781 53.75 452.777344 Z M 53.75 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.945312 452.777344 C 35.945312 451.503906 34.914062 450.472656 33.640625 450.472656 C 32.367188 450.472656 31.335938 451.503906 31.335938 452.777344 C 31.335938 454.050781 32.367188 455.082031 33.640625 455.082031 C 34.914062 455.082031 35.945312 454.050781 35.945312 452.777344 Z M 35.945312 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 13.925781 452.777344 C 13.925781 451.503906 12.894531 450.472656 11.621094 450.472656 C 10.347656 450.472656 9.316406 451.503906 9.316406 452.777344 C 9.316406 454.050781 10.347656 455.082031 11.621094 455.082031 C 12.894531 455.082031 13.925781 454.050781 13.925781 452.777344 Z M 13.925781 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.539062 452.777344 C 35.539062 451.503906 34.507812 450.472656 33.234375 450.472656 C 31.960938 450.472656 30.929688 451.503906 30.929688 452.777344 C 30.929688 454.050781 31.960938 455.082031 33.234375 455.082031 C 34.507812 455.082031 35.539062 454.050781 35.539062 452.777344 Z M 35.539062 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.398438 452.777344 C 49.398438 451.503906 48.367188 450.472656 47.09375 450.472656 C 45.820312 450.472656 44.789062 451.503906 44.789062 452.777344 C 44.789062 454.050781 45.820312 455.082031 47.09375 455.082031 C 48.367188 455.082031 49.398438 454.050781 49.398438 452.777344 Z M 49.398438 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.253906 452.777344 C 26.253906 451.503906 25.222656 450.472656 23.949219 450.472656 C 22.675781 450.472656 21.644531 451.503906 21.644531 452.777344 C 21.644531 454.050781 22.675781 455.082031 23.949219 455.082031 C 25.222656 455.082031 26.253906 454.050781 26.253906 452.777344 Z M 26.253906 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.726562 452.777344 C 26.726562 451.503906 25.695312 450.472656 24.421875 450.472656 C 23.148438 450.472656 22.117188 451.503906 22.117188 452.777344 C 22.117188 454.050781 23.148438 455.082031 24.421875 455.082031 C 25.695312 455.082031 26.726562 454.050781 26.726562 452.777344 Z M 26.726562 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.25 452.777344 C 55.25 451.503906 54.21875 450.472656 52.945312 450.472656 C 51.671875 450.472656 50.640625 451.503906 50.640625 452.777344 C 50.640625 454.050781 51.671875 455.082031 52.945312 455.082031 C 54.21875 455.082031 55.25 454.050781 55.25 452.777344 Z M 55.25 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.609375 452.777344 C 43.609375 451.503906 42.578125 450.472656 41.304688 450.472656 C 40.03125 450.472656 39 451.503906 39 452.777344 C 39 454.050781 40.03125 455.082031 41.304688 455.082031 C 42.578125 455.082031 43.609375 454.050781 43.609375 452.777344 Z M 43.609375 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.25 452.777344 C 25.25 451.503906 24.21875 450.472656 22.945312 450.472656 C 21.671875 450.472656 20.640625 451.503906 20.640625 452.777344 C 20.640625 454.050781 21.671875 455.082031 22.945312 455.082031 C 24.21875 455.082031 25.25 454.050781 25.25 452.777344 Z M 25.25 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.226562 452.777344 C 33.226562 451.503906 32.195312 450.472656 30.921875 450.472656 C 29.648438 450.472656 28.617188 451.503906 28.617188 452.777344 C 28.617188 454.050781 29.648438 455.082031 30.921875 455.082031 C 32.195312 455.082031 33.226562 454.050781 33.226562 452.777344 Z M 33.226562 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.488281 452.777344 C 41.488281 451.503906 40.457031 450.472656 39.183594 450.472656 C 37.910156 450.472656 36.878906 451.503906 36.878906 452.777344 C 36.878906 454.050781 37.910156 455.082031 39.183594 455.082031 C 40.457031 455.082031 41.488281 454.050781 41.488281 452.777344 Z M 41.488281 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 13.480469 452.777344 C 13.480469 451.503906 12.449219 450.472656 11.175781 450.472656 C 9.902344 450.472656 8.871094 451.503906 8.871094 452.777344 C 8.871094 454.050781 9.902344 455.082031 11.175781 455.082031 C 12.449219 455.082031 13.480469 454.050781 13.480469 452.777344 Z M 13.480469 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.871094 452.777344 C 36.871094 451.503906 35.839844 450.472656 34.566406 450.472656 C 33.292969 450.472656 32.261719 451.503906 32.261719 452.777344 C 32.261719 454.050781 33.292969 455.082031 34.566406 455.082031 C 35.839844 455.082031 36.871094 454.050781 36.871094 452.777344 Z M 36.871094 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.242188 452.777344 C 30.242188 451.503906 29.210938 450.472656 27.9375 450.472656 C 26.664062 450.472656 25.632812 451.503906 25.632812 452.777344 C 25.632812 454.050781 26.664062 455.082031 27.9375 455.082031 C 29.210938 455.082031 30.242188 454.050781 30.242188 452.777344 Z M 30.242188 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 18.3125 452.777344 C 18.3125 451.503906 17.28125 450.472656 16.007812 450.472656 C 14.734375 450.472656 13.703125 451.503906 13.703125 452.777344 C 13.703125 454.050781 14.734375 455.082031 16.007812 455.082031 C 17.28125 455.082031 18.3125 454.050781 18.3125 452.777344 Z M 18.3125 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.417969 452.777344 C 51.417969 451.503906 50.386719 450.472656 49.113281 450.472656 C 47.839844 450.472656 46.808594 451.503906 46.808594 452.777344 C 46.808594 454.050781 47.839844 455.082031 49.113281 455.082031 C 50.386719 455.082031 51.417969 454.050781 51.417969 452.777344 Z M 51.417969 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.582031 452.777344 C 42.582031 451.503906 41.550781 450.472656 40.277344 450.472656 C 39.003906 450.472656 37.972656 451.503906 37.972656 452.777344 C 37.972656 454.050781 39.003906 455.082031 40.277344 455.082031 C 41.550781 455.082031 42.582031 454.050781 42.582031 452.777344 Z M 42.582031 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.363281 452.777344 C 15.363281 451.503906 14.332031 450.472656 13.058594 450.472656 C 11.785156 450.472656 10.753906 451.503906 10.753906 452.777344 C 10.753906 454.050781 11.785156 455.082031 13.058594 455.082031 C 14.332031 455.082031 15.363281 454.050781 15.363281 452.777344 Z M 15.363281 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.074219 452.777344 C 22.074219 451.503906 21.042969 450.472656 19.769531 450.472656 C 18.496094 450.472656 17.464844 451.503906 17.464844 452.777344 C 17.464844 454.050781 18.496094 455.082031 19.769531 455.082031 C 21.042969 455.082031 22.074219 454.050781 22.074219 452.777344 Z M 22.074219 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.335938 452.777344 C 36.335938 451.503906 35.304688 450.472656 34.03125 450.472656 C 32.757812 450.472656 31.726562 451.503906 31.726562 452.777344 C 31.726562 454.050781 32.757812 455.082031 34.03125 455.082031 C 35.304688 455.082031 36.335938 454.050781 36.335938 452.777344 Z M 36.335938 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 13.597656 452.777344 C 13.597656 451.503906 12.566406 450.472656 11.292969 450.472656 C 10.019531 450.472656 8.988281 451.503906 8.988281 452.777344 C 8.988281 454.050781 10.019531 455.082031 11.292969 455.082031 C 12.566406 455.082031 13.597656 454.050781 13.597656 452.777344 Z M 13.597656 452.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.429688 447.933594 C 52.429688 446.660156 51.398438 445.628906 50.125 445.628906 C 48.851562 445.628906 47.820312 446.660156 47.820312 447.933594 C 47.820312 449.207031 48.851562 450.238281 50.125 450.238281 C 51.398438 450.238281 52.429688 449.207031 52.429688 447.933594 Z M 52.429688 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.703125 447.933594 C 19.703125 446.660156 18.671875 445.628906 17.398438 445.628906 C 16.125 445.628906 15.09375 446.660156 15.09375 447.933594 C 15.09375 449.207031 16.125 450.238281 17.398438 450.238281 C 18.671875 450.238281 19.703125 449.207031 19.703125 447.933594 Z M 19.703125 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.691406 447.933594 C 39.691406 446.660156 38.660156 445.628906 37.386719 445.628906 C 36.113281 445.628906 35.082031 446.660156 35.082031 447.933594 C 35.082031 449.207031 36.113281 450.238281 37.386719 450.238281 C 38.660156 450.238281 39.691406 449.207031 39.691406 447.933594 Z M 39.691406 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 21.605469 447.933594 C 21.605469 446.660156 20.574219 445.628906 19.300781 445.628906 C 18.027344 445.628906 16.996094 446.660156 16.996094 447.933594 C 16.996094 449.207031 18.027344 450.238281 19.300781 450.238281 C 20.574219 450.238281 21.605469 449.207031 21.605469 447.933594 Z M 21.605469 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.410156 447.933594 C 27.410156 446.660156 26.378906 445.628906 25.105469 445.628906 C 23.832031 445.628906 22.800781 446.660156 22.800781 447.933594 C 22.800781 449.207031 23.832031 450.238281 25.105469 450.238281 C 26.378906 450.238281 27.410156 449.207031 27.410156 447.933594 Z M 27.410156 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.695312 447.933594 C 35.695312 446.660156 34.664062 445.628906 33.390625 445.628906 C 32.117188 445.628906 31.085938 446.660156 31.085938 447.933594 C 31.085938 449.207031 32.117188 450.238281 33.390625 450.238281 C 34.664062 450.238281 35.695312 449.207031 35.695312 447.933594 Z M 35.695312 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.175781 447.933594 C 40.175781 446.660156 39.144531 445.628906 37.871094 445.628906 C 36.597656 445.628906 35.566406 446.660156 35.566406 447.933594 C 35.566406 449.207031 36.597656 450.238281 37.871094 450.238281 C 39.144531 450.238281 40.175781 449.207031 40.175781 447.933594 Z M 40.175781 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.257812 447.933594 C 25.257812 446.660156 24.226562 445.628906 22.953125 445.628906 C 21.679688 445.628906 20.648438 446.660156 20.648438 447.933594 C 20.648438 449.207031 21.679688 450.238281 22.953125 450.238281 C 24.226562 450.238281 25.257812 449.207031 25.257812 447.933594 Z M 25.257812 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.085938 447.933594 C 56.085938 446.660156 55.054688 445.628906 53.78125 445.628906 C 52.507812 445.628906 51.476562 446.660156 51.476562 447.933594 C 51.476562 449.207031 52.507812 450.238281 53.78125 450.238281 C 55.054688 450.238281 56.085938 449.207031 56.085938 447.933594 Z M 56.085938 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.59375 447.933594 C 38.59375 446.660156 37.5625 445.628906 36.289062 445.628906 C 35.015625 445.628906 33.984375 446.660156 33.984375 447.933594 C 33.984375 449.207031 35.015625 450.238281 36.289062 450.238281 C 37.5625 450.238281 38.59375 449.207031 38.59375 447.933594 Z M 38.59375 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.957031 447.933594 C 16.957031 446.660156 15.925781 445.628906 14.652344 445.628906 C 13.378906 445.628906 12.347656 446.660156 12.347656 447.933594 C 12.347656 449.207031 13.378906 450.238281 14.652344 450.238281 C 15.925781 450.238281 16.957031 449.207031 16.957031 447.933594 Z M 16.957031 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.191406 447.933594 C 38.191406 446.660156 37.160156 445.628906 35.886719 445.628906 C 34.613281 445.628906 33.582031 446.660156 33.582031 447.933594 C 33.582031 449.207031 34.613281 450.238281 35.886719 450.238281 C 37.160156 450.238281 38.191406 449.207031 38.191406 447.933594 Z M 38.191406 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.808594 447.933594 C 51.808594 446.660156 50.777344 445.628906 49.503906 445.628906 C 48.230469 445.628906 47.199219 446.660156 47.199219 447.933594 C 47.199219 449.207031 48.230469 450.238281 49.503906 450.238281 C 50.777344 450.238281 51.808594 449.207031 51.808594 447.933594 Z M 51.808594 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.066406 447.933594 C 29.066406 446.660156 28.035156 445.628906 26.761719 445.628906 C 25.488281 445.628906 24.457031 446.660156 24.457031 447.933594 C 24.457031 449.207031 25.488281 450.238281 26.761719 450.238281 C 28.035156 450.238281 29.066406 449.207031 29.066406 447.933594 Z M 29.066406 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.535156 447.933594 C 29.535156 446.660156 28.503906 445.628906 27.230469 445.628906 C 25.957031 445.628906 24.925781 446.660156 24.925781 447.933594 C 24.925781 449.207031 25.957031 450.238281 27.230469 450.238281 C 28.503906 450.238281 29.535156 449.207031 29.535156 447.933594 Z M 29.535156 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.558594 447.933594 C 57.558594 446.660156 56.527344 445.628906 55.253906 445.628906 C 53.980469 445.628906 52.949219 446.660156 52.949219 447.933594 C 52.949219 449.207031 53.980469 450.238281 55.253906 450.238281 C 56.527344 450.238281 57.558594 449.207031 57.558594 447.933594 Z M 57.558594 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.121094 447.933594 C 46.121094 446.660156 45.089844 445.628906 43.816406 445.628906 C 42.542969 445.628906 41.511719 446.660156 41.511719 447.933594 C 41.511719 449.207031 42.542969 450.238281 43.816406 450.238281 C 45.089844 450.238281 46.121094 449.207031 46.121094 447.933594 Z M 46.121094 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.085938 447.933594 C 28.085938 446.660156 27.054688 445.628906 25.78125 445.628906 C 24.507812 445.628906 23.476562 446.660156 23.476562 447.933594 C 23.476562 449.207031 24.507812 450.238281 25.78125 450.238281 C 27.054688 450.238281 28.085938 449.207031 28.085938 447.933594 Z M 28.085938 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.921875 447.933594 C 35.921875 446.660156 34.890625 445.628906 33.617188 445.628906 C 32.34375 445.628906 31.3125 446.660156 31.3125 447.933594 C 31.3125 449.207031 32.34375 450.238281 33.617188 450.238281 C 34.890625 450.238281 35.921875 449.207031 35.921875 447.933594 Z M 35.921875 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.039062 447.933594 C 44.039062 446.660156 43.007812 445.628906 41.734375 445.628906 C 40.460938 445.628906 39.429688 446.660156 39.429688 447.933594 C 39.429688 449.207031 40.460938 450.238281 41.734375 450.238281 C 43.007812 450.238281 44.039062 449.207031 44.039062 447.933594 Z M 44.039062 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.519531 447.933594 C 16.519531 446.660156 15.488281 445.628906 14.214844 445.628906 C 12.941406 445.628906 11.910156 446.660156 11.910156 447.933594 C 11.910156 449.207031 12.941406 450.238281 14.214844 450.238281 C 15.488281 450.238281 16.519531 449.207031 16.519531 447.933594 Z M 16.519531 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.5 447.933594 C 39.5 446.660156 38.46875 445.628906 37.195312 445.628906 C 35.921875 445.628906 34.890625 446.660156 34.890625 447.933594 C 34.890625 449.207031 35.921875 450.238281 37.195312 450.238281 C 38.46875 450.238281 39.5 449.207031 39.5 447.933594 Z M 39.5 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.984375 447.933594 C 32.984375 446.660156 31.953125 445.628906 30.679688 445.628906 C 29.40625 445.628906 28.375 446.660156 28.375 447.933594 C 28.375 449.207031 29.40625 450.238281 30.679688 450.238281 C 31.953125 450.238281 32.984375 449.207031 32.984375 447.933594 Z M 32.984375 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 21.265625 447.933594 C 21.265625 446.660156 20.234375 445.628906 18.960938 445.628906 C 17.6875 445.628906 16.65625 446.660156 16.65625 447.933594 C 16.65625 449.207031 17.6875 450.238281 18.960938 450.238281 C 20.234375 450.238281 21.265625 449.207031 21.265625 447.933594 Z M 21.265625 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.792969 447.933594 C 53.792969 446.660156 52.761719 445.628906 51.488281 445.628906 C 50.214844 445.628906 49.183594 446.660156 49.183594 447.933594 C 49.183594 449.207031 50.214844 450.238281 51.488281 450.238281 C 52.761719 450.238281 53.792969 449.207031 53.792969 447.933594 Z M 53.792969 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.109375 447.933594 C 45.109375 446.660156 44.078125 445.628906 42.804688 445.628906 C 41.53125 445.628906 40.5 446.660156 40.5 447.933594 C 40.5 449.207031 41.53125 450.238281 42.804688 450.238281 C 44.078125 450.238281 45.109375 449.207031 45.109375 447.933594 Z M 45.109375 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 18.371094 447.933594 C 18.371094 446.660156 17.339844 445.628906 16.066406 445.628906 C 14.792969 445.628906 13.761719 446.660156 13.761719 447.933594 C 13.761719 449.207031 14.792969 450.238281 16.066406 450.238281 C 17.339844 450.238281 18.371094 449.207031 18.371094 447.933594 Z M 18.371094 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.964844 447.933594 C 24.964844 446.660156 23.933594 445.628906 22.660156 445.628906 C 21.386719 445.628906 20.355469 446.660156 20.355469 447.933594 C 20.355469 449.207031 21.386719 450.238281 22.660156 450.238281 C 23.933594 450.238281 24.964844 449.207031 24.964844 447.933594 Z M 24.964844 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.972656 447.933594 C 38.972656 446.660156 37.941406 445.628906 36.667969 445.628906 C 35.394531 445.628906 34.363281 446.660156 34.363281 447.933594 C 34.363281 449.207031 35.394531 450.238281 36.667969 450.238281 C 37.941406 450.238281 38.972656 449.207031 38.972656 447.933594 Z M 38.972656 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.636719 447.933594 C 16.636719 446.660156 15.605469 445.628906 14.332031 445.628906 C 13.058594 445.628906 12.027344 446.660156 12.027344 447.933594 C 12.027344 449.207031 13.058594 450.238281 14.332031 450.238281 C 15.605469 450.238281 16.636719 449.207031 16.636719 447.933594 Z M 16.636719 447.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.847656 443.089844 C 54.847656 441.816406 53.816406 440.785156 52.542969 440.785156 C 51.269531 440.785156 50.238281 441.816406 50.238281 443.089844 C 50.238281 444.363281 51.269531 445.394531 52.542969 445.394531 C 53.816406 445.394531 54.847656 444.363281 54.847656 443.089844 Z M 54.847656 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.035156 443.089844 C 23.035156 441.816406 22.003906 440.785156 20.730469 440.785156 C 19.457031 440.785156 18.425781 441.816406 18.425781 443.089844 C 18.425781 444.363281 19.457031 445.394531 20.730469 445.394531 C 22.003906 445.394531 23.035156 444.363281 23.035156 443.089844 Z M 23.035156 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.464844 443.089844 C 42.464844 441.816406 41.433594 440.785156 40.160156 440.785156 C 38.886719 440.785156 37.855469 441.816406 37.855469 443.089844 C 37.855469 444.363281 38.886719 445.394531 40.160156 445.394531 C 41.433594 445.394531 42.464844 444.363281 42.464844 443.089844 Z M 42.464844 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.882812 443.089844 C 24.882812 441.816406 23.851562 440.785156 22.578125 440.785156 C 21.304688 440.785156 20.273438 441.816406 20.273438 443.089844 C 20.273438 444.363281 21.304688 445.394531 22.578125 445.394531 C 23.851562 445.394531 24.882812 444.363281 24.882812 443.089844 Z M 24.882812 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.527344 443.089844 C 30.527344 441.816406 29.496094 440.785156 28.222656 440.785156 C 26.949219 440.785156 25.917969 441.816406 25.917969 443.089844 C 25.917969 444.363281 26.949219 445.394531 28.222656 445.394531 C 29.496094 445.394531 30.527344 444.363281 30.527344 443.089844 Z M 30.527344 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.582031 443.089844 C 38.582031 441.816406 37.550781 440.785156 36.277344 440.785156 C 35.003906 440.785156 33.972656 441.816406 33.972656 443.089844 C 33.972656 444.363281 35.003906 445.394531 36.277344 445.394531 C 37.550781 445.394531 38.582031 444.363281 38.582031 443.089844 Z M 38.582031 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.9375 443.089844 C 42.9375 441.816406 41.90625 440.785156 40.632812 440.785156 C 39.359375 440.785156 38.328125 441.816406 38.328125 443.089844 C 38.328125 444.363281 39.359375 445.394531 40.632812 445.394531 C 41.90625 445.394531 42.9375 444.363281 42.9375 443.089844 Z M 42.9375 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.433594 443.089844 C 28.433594 441.816406 27.402344 440.785156 26.128906 440.785156 C 24.855469 440.785156 23.824219 441.816406 23.824219 443.089844 C 23.824219 444.363281 24.855469 445.394531 26.128906 445.394531 C 27.402344 445.394531 28.433594 444.363281 28.433594 443.089844 Z M 28.433594 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.402344 443.089844 C 58.402344 441.816406 57.371094 440.785156 56.097656 440.785156 C 54.824219 440.785156 53.792969 441.816406 53.792969 443.089844 C 53.792969 444.363281 54.824219 445.394531 56.097656 445.394531 C 57.371094 445.394531 58.402344 444.363281 58.402344 443.089844 Z M 58.402344 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.398438 443.089844 C 41.398438 441.816406 40.367188 440.785156 39.09375 440.785156 C 37.820312 440.785156 36.789062 441.816406 36.789062 443.089844 C 36.789062 444.363281 37.820312 445.394531 39.09375 445.394531 C 40.367188 445.394531 41.398438 444.363281 41.398438 443.089844 Z M 41.398438 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.363281 443.089844 C 20.363281 441.816406 19.332031 440.785156 18.058594 440.785156 C 16.785156 440.785156 15.753906 441.816406 15.753906 443.089844 C 15.753906 444.363281 16.785156 445.394531 18.058594 445.394531 C 19.332031 445.394531 20.363281 444.363281 20.363281 443.089844 Z M 20.363281 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.007812 443.089844 C 41.007812 441.816406 39.976562 440.785156 38.703125 440.785156 C 37.429688 440.785156 36.398438 441.816406 36.398438 443.089844 C 36.398438 444.363281 37.429688 445.394531 38.703125 445.394531 C 39.976562 445.394531 41.007812 444.363281 41.007812 443.089844 Z M 41.007812 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.246094 443.089844 C 54.246094 441.816406 53.214844 440.785156 51.941406 440.785156 C 50.667969 440.785156 49.636719 441.816406 49.636719 443.089844 C 49.636719 444.363281 50.667969 445.394531 51.941406 445.394531 C 53.214844 445.394531 54.246094 444.363281 54.246094 443.089844 Z M 54.246094 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.136719 443.089844 C 32.136719 441.816406 31.105469 440.785156 29.832031 440.785156 C 28.558594 440.785156 27.527344 441.816406 27.527344 443.089844 C 27.527344 444.363281 28.558594 445.394531 29.832031 445.394531 C 31.105469 445.394531 32.136719 444.363281 32.136719 443.089844 Z M 32.136719 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.589844 443.089844 C 32.589844 441.816406 31.558594 440.785156 30.285156 440.785156 C 29.011719 440.785156 27.980469 441.816406 27.980469 443.089844 C 27.980469 444.363281 29.011719 445.394531 30.285156 445.394531 C 31.558594 445.394531 32.589844 444.363281 32.589844 443.089844 Z M 32.589844 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 59.835938 443.089844 C 59.835938 441.816406 58.804688 440.785156 57.53125 440.785156 C 56.257812 440.785156 55.226562 441.816406 55.226562 443.089844 C 55.226562 444.363281 56.257812 445.394531 57.53125 445.394531 C 58.804688 445.394531 59.835938 444.363281 59.835938 443.089844 Z M 59.835938 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.714844 443.089844 C 48.714844 441.816406 47.683594 440.785156 46.410156 440.785156 C 45.136719 440.785156 44.105469 441.816406 44.105469 443.089844 C 44.105469 444.363281 45.136719 445.394531 46.410156 445.394531 C 47.683594 445.394531 48.714844 444.363281 48.714844 443.089844 Z M 48.714844 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.179688 443.089844 C 31.179688 441.816406 30.148438 440.785156 28.875 440.785156 C 27.601562 440.785156 26.570312 441.816406 26.570312 443.089844 C 26.570312 444.363281 27.601562 445.394531 28.875 445.394531 C 30.148438 445.394531 31.179688 444.363281 31.179688 443.089844 Z M 31.179688 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.800781 443.089844 C 38.800781 441.816406 37.769531 440.785156 36.496094 440.785156 C 35.222656 440.785156 34.191406 441.816406 34.191406 443.089844 C 34.191406 444.363281 35.222656 445.394531 36.496094 445.394531 C 37.769531 445.394531 38.800781 444.363281 38.800781 443.089844 Z M 38.800781 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.691406 443.089844 C 46.691406 441.816406 45.660156 440.785156 44.386719 440.785156 C 43.113281 440.785156 42.082031 441.816406 42.082031 443.089844 C 42.082031 444.363281 43.113281 445.394531 44.386719 445.394531 C 45.660156 445.394531 46.691406 444.363281 46.691406 443.089844 Z M 46.691406 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.9375 443.089844 C 19.9375 441.816406 18.90625 440.785156 17.632812 440.785156 C 16.359375 440.785156 15.328125 441.816406 15.328125 443.089844 C 15.328125 444.363281 16.359375 445.394531 17.632812 445.394531 C 18.90625 445.394531 19.9375 444.363281 19.9375 443.089844 Z M 19.9375 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.277344 443.089844 C 42.277344 441.816406 41.246094 440.785156 39.972656 440.785156 C 38.699219 440.785156 37.667969 441.816406 37.667969 443.089844 C 37.667969 444.363281 38.699219 445.394531 39.972656 445.394531 C 41.246094 445.394531 42.277344 444.363281 42.277344 443.089844 Z M 42.277344 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.945312 443.089844 C 35.945312 441.816406 34.914062 440.785156 33.640625 440.785156 C 32.367188 440.785156 31.335938 441.816406 31.335938 443.089844 C 31.335938 444.363281 32.367188 445.394531 33.640625 445.394531 C 34.914062 445.394531 35.945312 444.363281 35.945312 443.089844 Z M 35.945312 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.554688 443.089844 C 24.554688 441.816406 23.523438 440.785156 22.25 440.785156 C 20.976562 440.785156 19.945312 441.816406 19.945312 443.089844 C 19.945312 444.363281 20.976562 445.394531 22.25 445.394531 C 23.523438 445.394531 24.554688 444.363281 24.554688 443.089844 Z M 24.554688 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.175781 443.089844 C 56.175781 441.816406 55.144531 440.785156 53.871094 440.785156 C 52.597656 440.785156 51.566406 441.816406 51.566406 443.089844 C 51.566406 444.363281 52.597656 445.394531 53.871094 445.394531 C 55.144531 445.394531 56.175781 444.363281 56.175781 443.089844 Z M 56.175781 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.734375 443.089844 C 47.734375 441.816406 46.703125 440.785156 45.429688 440.785156 C 44.15625 440.785156 43.125 441.816406 43.125 443.089844 C 43.125 444.363281 44.15625 445.394531 45.429688 445.394531 C 46.703125 445.394531 47.734375 444.363281 47.734375 443.089844 Z M 47.734375 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 21.738281 443.089844 C 21.738281 441.816406 20.707031 440.785156 19.433594 440.785156 C 18.160156 440.785156 17.128906 441.816406 17.128906 443.089844 C 17.128906 444.363281 18.160156 445.394531 19.433594 445.394531 C 20.707031 445.394531 21.738281 444.363281 21.738281 443.089844 Z M 21.738281 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.148438 443.089844 C 28.148438 441.816406 27.117188 440.785156 25.84375 440.785156 C 24.570312 440.785156 23.539062 441.816406 23.539062 443.089844 C 23.539062 444.363281 24.570312 445.394531 25.84375 445.394531 C 27.117188 445.394531 28.148438 444.363281 28.148438 443.089844 Z M 28.148438 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.769531 443.089844 C 41.769531 441.816406 40.738281 440.785156 39.464844 440.785156 C 38.191406 440.785156 37.160156 441.816406 37.160156 443.089844 C 37.160156 444.363281 38.191406 445.394531 39.464844 445.394531 C 40.738281 445.394531 41.769531 444.363281 41.769531 443.089844 Z M 41.769531 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.050781 443.089844 C 20.050781 441.816406 19.019531 440.785156 17.746094 440.785156 C 16.472656 440.785156 15.441406 441.816406 15.441406 443.089844 C 15.441406 444.363281 16.472656 445.394531 17.746094 445.394531 C 19.019531 445.394531 20.050781 444.363281 20.050781 443.089844 Z M 20.050781 443.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.265625 438.246094 C 57.265625 436.972656 56.234375 435.941406 54.960938 435.941406 C 53.6875 435.941406 52.65625 436.972656 52.65625 438.246094 C 52.65625 439.519531 53.6875 440.550781 54.960938 440.550781 C 56.234375 440.550781 57.265625 439.519531 57.265625 438.246094 Z M 57.265625 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.679688 438.246094 C 26.679688 436.972656 25.648438 435.941406 24.375 435.941406 C 23.101562 435.941406 22.070312 436.972656 22.070312 438.246094 C 22.070312 439.519531 23.101562 440.550781 24.375 440.550781 C 25.648438 440.550781 26.679688 439.519531 26.679688 438.246094 Z M 26.679688 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.359375 438.246094 C 45.359375 436.972656 44.328125 435.941406 43.054688 435.941406 C 41.78125 435.941406 40.75 436.972656 40.75 438.246094 C 40.75 439.519531 41.78125 440.550781 43.054688 440.550781 C 44.328125 440.550781 45.359375 439.519531 45.359375 438.246094 Z M 45.359375 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.457031 438.246094 C 28.457031 436.972656 27.425781 435.941406 26.152344 435.941406 C 24.878906 435.941406 23.847656 436.972656 23.847656 438.246094 C 23.847656 439.519531 24.878906 440.550781 26.152344 440.550781 C 27.425781 440.550781 28.457031 439.519531 28.457031 438.246094 Z M 28.457031 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.882812 438.246094 C 33.882812 436.972656 32.851562 435.941406 31.578125 435.941406 C 30.304688 435.941406 29.273438 436.972656 29.273438 438.246094 C 29.273438 439.519531 30.304688 440.550781 31.578125 440.550781 C 32.851562 440.550781 33.882812 439.519531 33.882812 438.246094 Z M 33.882812 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.625 438.246094 C 41.625 436.972656 40.59375 435.941406 39.320312 435.941406 C 38.046875 435.941406 37.015625 436.972656 37.015625 438.246094 C 37.015625 439.519531 38.046875 440.550781 39.320312 440.550781 C 40.59375 440.550781 41.625 439.519531 41.625 438.246094 Z M 41.625 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.8125 438.246094 C 45.8125 436.972656 44.78125 435.941406 43.507812 435.941406 C 42.234375 435.941406 41.203125 436.972656 41.203125 438.246094 C 41.203125 439.519531 42.234375 440.550781 43.507812 440.550781 C 44.78125 440.550781 45.8125 439.519531 45.8125 438.246094 Z M 45.8125 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.871094 438.246094 C 31.871094 436.972656 30.839844 435.941406 29.566406 435.941406 C 28.292969 435.941406 27.261719 436.972656 27.261719 438.246094 C 27.261719 439.519531 28.292969 440.550781 29.566406 440.550781 C 30.839844 440.550781 31.871094 439.519531 31.871094 438.246094 Z M 31.871094 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.679688 438.246094 C 60.679688 436.972656 59.648438 435.941406 58.375 435.941406 C 57.101562 435.941406 56.070312 436.972656 56.070312 438.246094 C 56.070312 439.519531 57.101562 440.550781 58.375 440.550781 C 59.648438 440.550781 60.679688 439.519531 60.679688 438.246094 Z M 60.679688 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.332031 438.246094 C 44.332031 436.972656 43.300781 435.941406 42.027344 435.941406 C 40.753906 435.941406 39.722656 436.972656 39.722656 438.246094 C 39.722656 439.519531 40.753906 440.550781 42.027344 440.550781 C 43.300781 440.550781 44.332031 439.519531 44.332031 438.246094 Z M 44.332031 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.109375 438.246094 C 24.109375 436.972656 23.078125 435.941406 21.804688 435.941406 C 20.53125 435.941406 19.5 436.972656 19.5 438.246094 C 19.5 439.519531 20.53125 440.550781 21.804688 440.550781 C 23.078125 440.550781 24.109375 439.519531 24.109375 438.246094 Z M 24.109375 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.957031 438.246094 C 43.957031 436.972656 42.925781 435.941406 41.652344 435.941406 C 40.378906 435.941406 39.347656 436.972656 39.347656 438.246094 C 39.347656 439.519531 40.378906 440.550781 41.652344 440.550781 C 42.925781 440.550781 43.957031 439.519531 43.957031 438.246094 Z M 43.957031 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.683594 438.246094 C 56.683594 436.972656 55.652344 435.941406 54.378906 435.941406 C 53.105469 435.941406 52.074219 436.972656 52.074219 438.246094 C 52.074219 439.519531 53.105469 440.550781 54.378906 440.550781 C 55.652344 440.550781 56.683594 439.519531 56.683594 438.246094 Z M 56.683594 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.429688 438.246094 C 35.429688 436.972656 34.398438 435.941406 33.125 435.941406 C 31.851562 435.941406 30.820312 436.972656 30.820312 438.246094 C 30.820312 439.519531 31.851562 440.550781 33.125 440.550781 C 34.398438 440.550781 35.429688 439.519531 35.429688 438.246094 Z M 35.429688 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.867188 438.246094 C 35.867188 436.972656 34.835938 435.941406 33.5625 435.941406 C 32.289062 435.941406 31.257812 436.972656 31.257812 438.246094 C 31.257812 439.519531 32.289062 440.550781 33.5625 440.550781 C 34.835938 440.550781 35.867188 439.519531 35.867188 438.246094 Z M 35.867188 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.058594 438.246094 C 62.058594 436.972656 61.027344 435.941406 59.753906 435.941406 C 58.480469 435.941406 57.449219 436.972656 57.449219 438.246094 C 57.449219 439.519531 58.480469 440.550781 59.753906 440.550781 C 61.027344 440.550781 62.058594 439.519531 62.058594 438.246094 Z M 62.058594 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.367188 438.246094 C 51.367188 436.972656 50.335938 435.941406 49.0625 435.941406 C 47.789062 435.941406 46.757812 436.972656 46.757812 438.246094 C 46.757812 439.519531 47.789062 440.550781 49.0625 440.550781 C 50.335938 440.550781 51.367188 439.519531 51.367188 438.246094 Z M 51.367188 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.511719 438.246094 C 34.511719 436.972656 33.480469 435.941406 32.207031 435.941406 C 30.933594 435.941406 29.902344 436.972656 29.902344 438.246094 C 29.902344 439.519531 30.933594 440.550781 32.207031 440.550781 C 33.480469 440.550781 34.511719 439.519531 34.511719 438.246094 Z M 34.511719 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.835938 438.246094 C 41.835938 436.972656 40.804688 435.941406 39.53125 435.941406 C 38.257812 435.941406 37.226562 436.972656 37.226562 438.246094 C 37.226562 439.519531 38.257812 440.550781 39.53125 440.550781 C 40.804688 440.550781 41.835938 439.519531 41.835938 438.246094 Z M 41.835938 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.421875 438.246094 C 49.421875 436.972656 48.390625 435.941406 47.117188 435.941406 C 45.84375 435.941406 44.8125 436.972656 44.8125 438.246094 C 44.8125 439.519531 45.84375 440.550781 47.117188 440.550781 C 48.390625 440.550781 49.421875 439.519531 49.421875 438.246094 Z M 49.421875 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.703125 438.246094 C 23.703125 436.972656 22.671875 435.941406 21.398438 435.941406 C 20.125 435.941406 19.09375 436.972656 19.09375 438.246094 C 19.09375 439.519531 20.125 440.550781 21.398438 440.550781 C 22.671875 440.550781 23.703125 439.519531 23.703125 438.246094 Z M 23.703125 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.179688 438.246094 C 45.179688 436.972656 44.148438 435.941406 42.875 435.941406 C 41.601562 435.941406 40.570312 436.972656 40.570312 438.246094 C 40.570312 439.519531 41.601562 440.550781 42.875 440.550781 C 44.148438 440.550781 45.179688 439.519531 45.179688 438.246094 Z M 45.179688 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.09375 438.246094 C 39.09375 436.972656 38.0625 435.941406 36.789062 435.941406 C 35.515625 435.941406 34.484375 436.972656 34.484375 438.246094 C 34.484375 439.519531 35.515625 440.550781 36.789062 440.550781 C 38.0625 440.550781 39.09375 439.519531 39.09375 438.246094 Z M 39.09375 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.136719 438.246094 C 28.136719 436.972656 27.105469 435.941406 25.832031 435.941406 C 24.558594 435.941406 23.527344 436.972656 23.527344 438.246094 C 23.527344 439.519531 24.558594 440.550781 25.832031 440.550781 C 27.105469 440.550781 28.136719 439.519531 28.136719 438.246094 Z M 28.136719 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.539062 438.246094 C 58.539062 436.972656 57.507812 435.941406 56.234375 435.941406 C 54.960938 435.941406 53.929688 436.972656 53.929688 438.246094 C 53.929688 439.519531 54.960938 440.550781 56.234375 440.550781 C 57.507812 440.550781 58.539062 439.519531 58.539062 438.246094 Z M 58.539062 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.425781 438.246094 C 50.425781 436.972656 49.394531 435.941406 48.121094 435.941406 C 46.847656 435.941406 45.816406 436.972656 45.816406 438.246094 C 45.816406 439.519531 46.847656 440.550781 48.121094 440.550781 C 49.394531 440.550781 50.425781 439.519531 50.425781 438.246094 Z M 50.425781 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.433594 438.246094 C 25.433594 436.972656 24.402344 435.941406 23.128906 435.941406 C 21.855469 435.941406 20.824219 436.972656 20.824219 438.246094 C 20.824219 439.519531 21.855469 440.550781 23.128906 440.550781 C 24.402344 440.550781 25.433594 439.519531 25.433594 438.246094 Z M 25.433594 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.59375 438.246094 C 31.59375 436.972656 30.5625 435.941406 29.289062 435.941406 C 28.015625 435.941406 26.984375 436.972656 26.984375 438.246094 C 26.984375 439.519531 28.015625 440.550781 29.289062 440.550781 C 30.5625 440.550781 31.59375 439.519531 31.59375 438.246094 Z M 31.59375 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.6875 438.246094 C 44.6875 436.972656 43.65625 435.941406 42.382812 435.941406 C 41.109375 435.941406 40.078125 436.972656 40.078125 438.246094 C 40.078125 439.519531 41.109375 440.550781 42.382812 440.550781 C 43.65625 440.550781 44.6875 439.519531 44.6875 438.246094 Z M 44.6875 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.8125 438.246094 C 23.8125 436.972656 22.78125 435.941406 21.507812 435.941406 C 20.234375 435.941406 19.203125 436.972656 19.203125 438.246094 C 19.203125 439.519531 20.234375 440.550781 21.507812 440.550781 C 22.78125 440.550781 23.8125 439.519531 23.8125 438.246094 Z M 23.8125 438.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 59.652344 433.402344 C 59.652344 432.128906 58.621094 431.097656 57.347656 431.097656 C 56.074219 431.097656 55.042969 432.128906 55.042969 433.402344 C 55.042969 434.675781 56.074219 435.707031 57.347656 435.707031 C 58.621094 435.707031 59.652344 434.675781 59.652344 433.402344 Z M 59.652344 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.601562 433.402344 C 30.601562 432.128906 29.570312 431.097656 28.296875 431.097656 C 27.023438 431.097656 25.992188 432.128906 25.992188 433.402344 C 25.992188 434.675781 27.023438 435.707031 28.296875 435.707031 C 29.570312 435.707031 30.601562 434.675781 30.601562 433.402344 Z M 30.601562 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.34375 433.402344 C 48.34375 432.128906 47.3125 431.097656 46.039062 431.097656 C 44.765625 431.097656 43.734375 432.128906 43.734375 433.402344 C 43.734375 434.675781 44.765625 435.707031 46.039062 435.707031 C 47.3125 435.707031 48.34375 434.675781 48.34375 433.402344 Z M 48.34375 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.289062 433.402344 C 32.289062 432.128906 31.257812 431.097656 29.984375 431.097656 C 28.710938 431.097656 27.679688 432.128906 27.679688 433.402344 C 27.679688 434.675781 28.710938 435.707031 29.984375 435.707031 C 31.257812 435.707031 32.289062 434.675781 32.289062 433.402344 Z M 32.289062 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.441406 433.402344 C 37.441406 432.128906 36.410156 431.097656 35.136719 431.097656 C 33.863281 431.097656 32.832031 432.128906 32.832031 433.402344 C 32.832031 434.675781 33.863281 435.707031 35.136719 435.707031 C 36.410156 435.707031 37.441406 434.675781 37.441406 433.402344 Z M 37.441406 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.796875 433.402344 C 44.796875 432.128906 43.765625 431.097656 42.492188 431.097656 C 41.21875 431.097656 40.1875 432.128906 40.1875 433.402344 C 40.1875 434.675781 41.21875 435.707031 42.492188 435.707031 C 43.765625 435.707031 44.796875 434.675781 44.796875 433.402344 Z M 44.796875 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.773438 433.402344 C 48.773438 432.128906 47.742188 431.097656 46.46875 431.097656 C 45.195312 431.097656 44.164062 432.128906 44.164062 433.402344 C 44.164062 434.675781 45.195312 435.707031 46.46875 435.707031 C 47.742188 435.707031 48.773438 434.675781 48.773438 433.402344 Z M 48.773438 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.53125 433.402344 C 35.53125 432.128906 34.5 431.097656 33.226562 431.097656 C 31.953125 431.097656 30.921875 432.128906 30.921875 433.402344 C 30.921875 434.675781 31.953125 435.707031 33.226562 435.707031 C 34.5 435.707031 35.53125 434.675781 35.53125 433.402344 Z M 35.53125 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.898438 433.402344 C 62.898438 432.128906 61.867188 431.097656 60.59375 431.097656 C 59.320312 431.097656 58.289062 432.128906 58.289062 433.402344 C 58.289062 434.675781 59.320312 435.707031 60.59375 435.707031 C 61.867188 435.707031 62.898438 434.675781 62.898438 433.402344 Z M 62.898438 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.367188 433.402344 C 47.367188 432.128906 46.335938 431.097656 45.0625 431.097656 C 43.789062 431.097656 42.757812 432.128906 42.757812 433.402344 C 42.757812 434.675781 43.789062 435.707031 45.0625 435.707031 C 46.335938 435.707031 47.367188 434.675781 47.367188 433.402344 Z M 47.367188 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.160156 433.402344 C 28.160156 432.128906 27.128906 431.097656 25.855469 431.097656 C 24.582031 431.097656 23.550781 432.128906 23.550781 433.402344 C 23.550781 434.675781 24.582031 435.707031 25.855469 435.707031 C 27.128906 435.707031 28.160156 434.675781 28.160156 433.402344 Z M 28.160156 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.015625 433.402344 C 47.015625 432.128906 45.984375 431.097656 44.710938 431.097656 C 43.4375 431.097656 42.40625 432.128906 42.40625 433.402344 C 42.40625 434.675781 43.4375 435.707031 44.710938 435.707031 C 45.984375 435.707031 47.015625 434.675781 47.015625 433.402344 Z M 47.015625 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 59.101562 433.402344 C 59.101562 432.128906 58.070312 431.097656 56.796875 431.097656 C 55.523438 431.097656 54.492188 432.128906 54.492188 433.402344 C 54.492188 434.675781 55.523438 435.707031 56.796875 435.707031 C 58.070312 435.707031 59.101562 434.675781 59.101562 433.402344 Z M 59.101562 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.914062 433.402344 C 38.914062 432.128906 37.882812 431.097656 36.609375 431.097656 C 35.335938 431.097656 34.304688 432.128906 34.304688 433.402344 C 34.304688 434.675781 35.335938 435.707031 36.609375 435.707031 C 37.882812 435.707031 38.914062 434.675781 38.914062 433.402344 Z M 38.914062 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.328125 433.402344 C 39.328125 432.128906 38.296875 431.097656 37.023438 431.097656 C 35.75 431.097656 34.71875 432.128906 34.71875 433.402344 C 34.71875 434.675781 35.75 435.707031 37.023438 435.707031 C 38.296875 435.707031 39.328125 434.675781 39.328125 433.402344 Z M 39.328125 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.207031 433.402344 C 64.207031 432.128906 63.175781 431.097656 61.902344 431.097656 C 60.628906 431.097656 59.597656 432.128906 59.597656 433.402344 C 59.597656 434.675781 60.628906 435.707031 61.902344 435.707031 C 63.175781 435.707031 64.207031 434.675781 64.207031 433.402344 Z M 64.207031 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.050781 433.402344 C 54.050781 432.128906 53.019531 431.097656 51.746094 431.097656 C 50.472656 431.097656 49.441406 432.128906 49.441406 433.402344 C 49.441406 434.675781 50.472656 435.707031 51.746094 435.707031 C 53.019531 435.707031 54.050781 434.675781 54.050781 433.402344 Z M 54.050781 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.039062 433.402344 C 38.039062 432.128906 37.007812 431.097656 35.734375 431.097656 C 34.460938 431.097656 33.429688 432.128906 33.429688 433.402344 C 33.429688 434.675781 34.460938 435.707031 35.734375 435.707031 C 37.007812 435.707031 38.039062 434.675781 38.039062 433.402344 Z M 38.039062 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.996094 433.402344 C 44.996094 432.128906 43.964844 431.097656 42.691406 431.097656 C 41.417969 431.097656 40.386719 432.128906 40.386719 433.402344 C 40.386719 434.675781 41.417969 435.707031 42.691406 435.707031 C 43.964844 435.707031 44.996094 434.675781 44.996094 433.402344 Z M 44.996094 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.203125 433.402344 C 52.203125 432.128906 51.171875 431.097656 49.898438 431.097656 C 48.625 431.097656 47.59375 432.128906 47.59375 433.402344 C 47.59375 434.675781 48.625 435.707031 49.898438 435.707031 C 51.171875 435.707031 52.203125 434.675781 52.203125 433.402344 Z M 52.203125 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.773438 433.402344 C 27.773438 432.128906 26.742188 431.097656 25.46875 431.097656 C 24.195312 431.097656 23.164062 432.128906 23.164062 433.402344 C 23.164062 434.675781 24.195312 435.707031 25.46875 435.707031 C 26.742188 435.707031 27.773438 434.675781 27.773438 433.402344 Z M 27.773438 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.175781 433.402344 C 48.175781 432.128906 47.144531 431.097656 45.871094 431.097656 C 44.597656 431.097656 43.566406 432.128906 43.566406 433.402344 C 43.566406 434.675781 44.597656 435.707031 45.871094 435.707031 C 47.144531 435.707031 48.175781 434.675781 48.175781 433.402344 Z M 48.175781 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.390625 433.402344 C 42.390625 432.128906 41.359375 431.097656 40.085938 431.097656 C 38.8125 431.097656 37.78125 432.128906 37.78125 433.402344 C 37.78125 434.675781 38.8125 435.707031 40.085938 435.707031 C 41.359375 435.707031 42.390625 434.675781 42.390625 433.402344 Z M 42.390625 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.988281 433.402344 C 31.988281 432.128906 30.957031 431.097656 29.683594 431.097656 C 28.410156 431.097656 27.378906 432.128906 27.378906 433.402344 C 27.378906 434.675781 28.410156 435.707031 29.683594 435.707031 C 30.957031 435.707031 31.988281 434.675781 31.988281 433.402344 Z M 31.988281 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.863281 433.402344 C 60.863281 432.128906 59.832031 431.097656 58.558594 431.097656 C 57.285156 431.097656 56.253906 432.128906 56.253906 433.402344 C 56.253906 434.675781 57.285156 435.707031 58.558594 435.707031 C 59.832031 435.707031 60.863281 434.675781 60.863281 433.402344 Z M 60.863281 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.15625 433.402344 C 53.15625 432.128906 52.125 431.097656 50.851562 431.097656 C 49.578125 431.097656 48.546875 432.128906 48.546875 433.402344 C 48.546875 434.675781 49.578125 435.707031 50.851562 435.707031 C 52.125 435.707031 53.15625 434.675781 53.15625 433.402344 Z M 53.15625 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.417969 433.402344 C 29.417969 432.128906 28.386719 431.097656 27.113281 431.097656 C 25.839844 431.097656 24.808594 432.128906 24.808594 433.402344 C 24.808594 434.675781 25.839844 435.707031 27.113281 435.707031 C 28.386719 435.707031 29.417969 434.675781 29.417969 433.402344 Z M 29.417969 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.269531 433.402344 C 35.269531 432.128906 34.238281 431.097656 32.964844 431.097656 C 31.691406 431.097656 30.660156 432.128906 30.660156 433.402344 C 30.660156 434.675781 31.691406 435.707031 32.964844 435.707031 C 34.238281 435.707031 35.269531 434.675781 35.269531 433.402344 Z M 35.269531 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.707031 433.402344 C 47.707031 432.128906 46.675781 431.097656 45.402344 431.097656 C 44.128906 431.097656 43.097656 432.128906 43.097656 433.402344 C 43.097656 434.675781 44.128906 435.707031 45.402344 435.707031 C 46.675781 435.707031 47.707031 434.675781 47.707031 433.402344 Z M 47.707031 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.878906 433.402344 C 27.878906 432.128906 26.847656 431.097656 25.574219 431.097656 C 24.300781 431.097656 23.269531 432.128906 23.269531 433.402344 C 23.269531 434.675781 24.300781 435.707031 25.574219 435.707031 C 26.847656 435.707031 27.878906 434.675781 27.878906 433.402344 Z M 27.878906 433.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.988281 428.558594 C 61.988281 427.285156 60.957031 426.253906 59.683594 426.253906 C 58.410156 426.253906 57.378906 427.285156 57.378906 428.558594 C 57.378906 429.832031 58.410156 430.863281 59.683594 430.863281 C 60.957031 430.863281 61.988281 429.832031 61.988281 428.558594 Z M 61.988281 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.761719 428.558594 C 34.761719 427.285156 33.730469 426.253906 32.457031 426.253906 C 31.183594 426.253906 30.152344 427.285156 30.152344 428.558594 C 30.152344 429.832031 31.183594 430.863281 32.457031 430.863281 C 33.730469 430.863281 34.761719 429.832031 34.761719 428.558594 Z M 34.761719 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.390625 428.558594 C 51.390625 427.285156 50.359375 426.253906 49.085938 426.253906 C 47.8125 426.253906 46.78125 427.285156 46.78125 428.558594 C 46.78125 429.832031 47.8125 430.863281 49.085938 430.863281 C 50.359375 430.863281 51.390625 429.832031 51.390625 428.558594 Z M 51.390625 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.34375 428.558594 C 36.34375 427.285156 35.3125 426.253906 34.039062 426.253906 C 32.765625 426.253906 31.734375 427.285156 31.734375 428.558594 C 31.734375 429.832031 32.765625 430.863281 34.039062 430.863281 C 35.3125 430.863281 36.34375 429.832031 36.34375 428.558594 Z M 36.34375 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.171875 428.558594 C 41.171875 427.285156 40.140625 426.253906 38.867188 426.253906 C 37.59375 426.253906 36.5625 427.285156 36.5625 428.558594 C 36.5625 429.832031 37.59375 430.863281 38.867188 430.863281 C 40.140625 430.863281 41.171875 429.832031 41.171875 428.558594 Z M 41.171875 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.066406 428.558594 C 48.066406 427.285156 47.035156 426.253906 45.761719 426.253906 C 44.488281 426.253906 43.457031 427.285156 43.457031 428.558594 C 43.457031 429.832031 44.488281 430.863281 45.761719 430.863281 C 47.035156 430.863281 48.066406 429.832031 48.066406 428.558594 Z M 48.066406 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.792969 428.558594 C 51.792969 427.285156 50.761719 426.253906 49.488281 426.253906 C 48.214844 426.253906 47.183594 427.285156 47.183594 428.558594 C 47.183594 429.832031 48.214844 430.863281 49.488281 430.863281 C 50.761719 430.863281 51.792969 429.832031 51.792969 428.558594 Z M 51.792969 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.382812 428.558594 C 39.382812 427.285156 38.351562 426.253906 37.078125 426.253906 C 35.804688 426.253906 34.773438 427.285156 34.773438 428.558594 C 34.773438 429.832031 35.804688 430.863281 37.078125 430.863281 C 38.351562 430.863281 39.382812 429.832031 39.382812 428.558594 Z M 39.382812 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.03125 428.558594 C 65.03125 427.285156 64 426.253906 62.726562 426.253906 C 61.453125 426.253906 60.421875 427.285156 60.421875 428.558594 C 60.421875 429.832031 61.453125 430.863281 62.726562 430.863281 C 64 430.863281 65.03125 429.832031 65.03125 428.558594 Z M 65.03125 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.476562 428.558594 C 50.476562 427.285156 49.445312 426.253906 48.171875 426.253906 C 46.898438 426.253906 45.867188 427.285156 45.867188 428.558594 C 45.867188 429.832031 46.898438 430.863281 48.171875 430.863281 C 49.445312 430.863281 50.476562 429.832031 50.476562 428.558594 Z M 50.476562 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.472656 428.558594 C 32.472656 427.285156 31.441406 426.253906 30.167969 426.253906 C 28.894531 426.253906 27.863281 427.285156 27.863281 428.558594 C 27.863281 429.832031 28.894531 430.863281 30.167969 430.863281 C 31.441406 430.863281 32.472656 429.832031 32.472656 428.558594 Z M 32.472656 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.144531 428.558594 C 50.144531 427.285156 49.113281 426.253906 47.839844 426.253906 C 46.566406 426.253906 45.535156 427.285156 45.535156 428.558594 C 45.535156 429.832031 46.566406 430.863281 47.839844 430.863281 C 49.113281 430.863281 50.144531 429.832031 50.144531 428.558594 Z M 50.144531 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.472656 428.558594 C 61.472656 427.285156 60.441406 426.253906 59.167969 426.253906 C 57.894531 426.253906 56.863281 427.285156 56.863281 428.558594 C 56.863281 429.832031 57.894531 430.863281 59.167969 430.863281 C 60.441406 430.863281 61.472656 429.832031 61.472656 428.558594 Z M 61.472656 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.550781 428.558594 C 42.550781 427.285156 41.519531 426.253906 40.246094 426.253906 C 38.972656 426.253906 37.941406 427.285156 37.941406 428.558594 C 37.941406 429.832031 38.972656 430.863281 40.246094 430.863281 C 41.519531 430.863281 42.550781 429.832031 42.550781 428.558594 Z M 42.550781 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.941406 428.558594 C 42.941406 427.285156 41.910156 426.253906 40.636719 426.253906 C 39.363281 426.253906 38.332031 427.285156 38.332031 428.558594 C 38.332031 429.832031 39.363281 430.863281 40.636719 430.863281 C 41.910156 430.863281 42.941406 429.832031 42.941406 428.558594 Z M 42.941406 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.257812 428.558594 C 66.257812 427.285156 65.226562 426.253906 63.953125 426.253906 C 62.679688 426.253906 61.648438 427.285156 61.648438 428.558594 C 61.648438 429.832031 62.679688 430.863281 63.953125 430.863281 C 65.226562 430.863281 66.257812 429.832031 66.257812 428.558594 Z M 66.257812 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.738281 428.558594 C 56.738281 427.285156 55.707031 426.253906 54.433594 426.253906 C 53.160156 426.253906 52.128906 427.285156 52.128906 428.558594 C 52.128906 429.832031 53.160156 430.863281 54.433594 430.863281 C 55.707031 430.863281 56.738281 429.832031 56.738281 428.558594 Z M 56.738281 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.734375 428.558594 C 41.734375 427.285156 40.703125 426.253906 39.429688 426.253906 C 38.15625 426.253906 37.125 427.285156 37.125 428.558594 C 37.125 429.832031 38.15625 430.863281 39.429688 430.863281 C 40.703125 430.863281 41.734375 429.832031 41.734375 428.558594 Z M 41.734375 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.253906 428.558594 C 48.253906 427.285156 47.222656 426.253906 45.949219 426.253906 C 44.675781 426.253906 43.644531 427.285156 43.644531 428.558594 C 43.644531 429.832031 44.675781 430.863281 45.949219 430.863281 C 47.222656 430.863281 48.253906 429.832031 48.253906 428.558594 Z M 48.253906 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.007812 428.558594 C 55.007812 427.285156 53.976562 426.253906 52.703125 426.253906 C 51.429688 426.253906 50.398438 427.285156 50.398438 428.558594 C 50.398438 429.832031 51.429688 430.863281 52.703125 430.863281 C 53.976562 430.863281 55.007812 429.832031 55.007812 428.558594 Z M 55.007812 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.113281 428.558594 C 32.113281 427.285156 31.082031 426.253906 29.808594 426.253906 C 28.535156 426.253906 27.503906 427.285156 27.503906 428.558594 C 27.503906 429.832031 28.535156 430.863281 29.808594 430.863281 C 31.082031 430.863281 32.113281 429.832031 32.113281 428.558594 Z M 32.113281 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.230469 428.558594 C 51.230469 427.285156 50.199219 426.253906 48.925781 426.253906 C 47.652344 426.253906 46.621094 427.285156 46.621094 428.558594 C 46.621094 429.832031 47.652344 430.863281 48.925781 430.863281 C 50.199219 430.863281 51.230469 429.832031 51.230469 428.558594 Z M 51.230469 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.8125 428.558594 C 45.8125 427.285156 44.78125 426.253906 43.507812 426.253906 C 42.234375 426.253906 41.203125 427.285156 41.203125 428.558594 C 41.203125 429.832031 42.234375 430.863281 43.507812 430.863281 C 44.78125 430.863281 45.8125 429.832031 45.8125 428.558594 Z M 45.8125 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.0625 428.558594 C 36.0625 427.285156 35.03125 426.253906 33.757812 426.253906 C 32.484375 426.253906 31.453125 427.285156 31.453125 428.558594 C 31.453125 429.832031 32.484375 430.863281 33.757812 430.863281 C 35.03125 430.863281 36.0625 429.832031 36.0625 428.558594 Z M 36.0625 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.125 428.558594 C 63.125 427.285156 62.09375 426.253906 60.820312 426.253906 C 59.546875 426.253906 58.515625 427.285156 58.515625 428.558594 C 58.515625 429.832031 59.546875 430.863281 60.820312 430.863281 C 62.09375 430.863281 63.125 429.832031 63.125 428.558594 Z M 63.125 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.902344 428.558594 C 55.902344 427.285156 54.871094 426.253906 53.597656 426.253906 C 52.324219 426.253906 51.292969 427.285156 51.292969 428.558594 C 51.292969 429.832031 52.324219 430.863281 53.597656 430.863281 C 54.871094 430.863281 55.902344 429.832031 55.902344 428.558594 Z M 55.902344 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.652344 428.558594 C 33.652344 427.285156 32.621094 426.253906 31.347656 426.253906 C 30.074219 426.253906 29.042969 427.285156 29.042969 428.558594 C 29.042969 429.832031 30.074219 430.863281 31.347656 430.863281 C 32.621094 430.863281 33.652344 429.832031 33.652344 428.558594 Z M 33.652344 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.136719 428.558594 C 39.136719 427.285156 38.105469 426.253906 36.832031 426.253906 C 35.558594 426.253906 34.527344 427.285156 34.527344 428.558594 C 34.527344 429.832031 35.558594 430.863281 36.832031 430.863281 C 38.105469 430.863281 39.136719 429.832031 39.136719 428.558594 Z M 39.136719 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.792969 428.558594 C 50.792969 427.285156 49.761719 426.253906 48.488281 426.253906 C 47.214844 426.253906 46.183594 427.285156 46.183594 428.558594 C 46.183594 429.832031 47.214844 430.863281 48.488281 430.863281 C 49.761719 430.863281 50.792969 429.832031 50.792969 428.558594 Z M 50.792969 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.207031 428.558594 C 32.207031 427.285156 31.175781 426.253906 29.902344 426.253906 C 28.628906 426.253906 27.597656 427.285156 27.597656 428.558594 C 27.597656 429.832031 28.628906 430.863281 29.902344 430.863281 C 31.175781 430.863281 32.207031 429.832031 32.207031 428.558594 Z M 32.207031 428.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.25 423.714844 C 64.25 422.441406 63.21875 421.410156 61.945312 421.410156 C 60.671875 421.410156 59.640625 422.441406 59.640625 423.714844 C 59.640625 424.988281 60.671875 426.019531 61.945312 426.019531 C 63.21875 426.019531 64.25 424.988281 64.25 423.714844 Z M 64.25 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.117188 423.714844 C 39.117188 422.441406 38.085938 421.410156 36.8125 421.410156 C 35.539062 421.410156 34.507812 422.441406 34.507812 423.714844 C 34.507812 424.988281 35.539062 426.019531 36.8125 426.019531 C 38.085938 426.019531 39.117188 424.988281 39.117188 423.714844 Z M 39.117188 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.140625 423.714844 C 33.140625 422.441406 32.109375 421.410156 30.835938 421.410156 C 29.5625 421.410156 28.53125 422.441406 28.53125 423.714844 C 28.53125 424.988281 29.5625 426.019531 30.835938 426.019531 C 32.109375 426.019531 33.140625 424.988281 33.140625 423.714844 Z M 33.140625 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.582031 423.714844 C 40.582031 422.441406 39.550781 421.410156 38.277344 421.410156 C 37.003906 421.410156 35.972656 422.441406 35.972656 423.714844 C 35.972656 424.988281 37.003906 426.019531 38.277344 426.019531 C 39.550781 426.019531 40.582031 424.988281 40.582031 423.714844 Z M 40.582031 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.039062 423.714844 C 45.039062 422.441406 44.007812 421.410156 42.734375 421.410156 C 41.460938 421.410156 40.429688 422.441406 40.429688 423.714844 C 40.429688 424.988281 41.460938 426.019531 42.734375 426.019531 C 44.007812 426.019531 45.039062 424.988281 45.039062 423.714844 Z M 45.039062 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.398438 423.714844 C 51.398438 422.441406 50.367188 421.410156 49.09375 421.410156 C 47.820312 421.410156 46.789062 422.441406 46.789062 423.714844 C 46.789062 424.988281 47.820312 426.019531 49.09375 426.019531 C 50.367188 426.019531 51.398438 424.988281 51.398438 423.714844 Z M 51.398438 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.839844 423.714844 C 54.839844 422.441406 53.808594 421.410156 52.535156 421.410156 C 51.261719 421.410156 50.230469 422.441406 50.230469 423.714844 C 50.230469 424.988281 51.261719 426.019531 52.535156 426.019531 C 53.808594 426.019531 54.839844 424.988281 54.839844 423.714844 Z M 54.839844 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.386719 423.714844 C 43.386719 422.441406 42.355469 421.410156 41.082031 421.410156 C 39.808594 421.410156 38.777344 422.441406 38.777344 423.714844 C 38.777344 424.988281 39.808594 426.019531 41.082031 426.019531 C 42.355469 426.019531 43.386719 424.988281 43.386719 423.714844 Z M 43.386719 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.058594 423.714844 C 67.058594 422.441406 66.027344 421.410156 64.753906 421.410156 C 63.480469 421.410156 62.449219 422.441406 62.449219 423.714844 C 62.449219 424.988281 63.480469 426.019531 64.753906 426.019531 C 66.027344 426.019531 67.058594 424.988281 67.058594 423.714844 Z M 67.058594 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.625 423.714844 C 53.625 422.441406 52.59375 421.410156 51.320312 421.410156 C 50.046875 421.410156 49.015625 422.441406 49.015625 423.714844 C 49.015625 424.988281 50.046875 426.019531 51.320312 426.019531 C 52.59375 426.019531 53.625 424.988281 53.625 423.714844 Z M 53.625 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.007812 423.714844 C 37.007812 422.441406 35.976562 421.410156 34.703125 421.410156 C 33.429688 421.410156 32.398438 422.441406 32.398438 423.714844 C 32.398438 424.988281 33.429688 426.019531 34.703125 426.019531 C 35.976562 426.019531 37.007812 424.988281 37.007812 423.714844 Z M 37.007812 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.316406 423.714844 C 53.316406 422.441406 52.285156 421.410156 51.011719 421.410156 C 49.738281 421.410156 48.707031 422.441406 48.707031 423.714844 C 48.707031 424.988281 49.738281 426.019531 51.011719 426.019531 C 52.285156 426.019531 53.316406 424.988281 53.316406 423.714844 Z M 53.316406 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.773438 423.714844 C 63.773438 422.441406 62.742188 421.410156 61.46875 421.410156 C 60.195312 421.410156 59.164062 422.441406 59.164062 423.714844 C 59.164062 424.988281 60.195312 426.019531 61.46875 426.019531 C 62.742188 426.019531 63.773438 424.988281 63.773438 423.714844 Z M 63.773438 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.308594 423.714844 C 46.308594 422.441406 45.277344 421.410156 44.003906 421.410156 C 42.730469 421.410156 41.699219 422.441406 41.699219 423.714844 C 41.699219 424.988281 42.730469 426.019531 44.003906 426.019531 C 45.277344 426.019531 46.308594 424.988281 46.308594 423.714844 Z M 46.308594 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.667969 423.714844 C 46.667969 422.441406 45.636719 421.410156 44.363281 421.410156 C 43.089844 421.410156 42.058594 422.441406 42.058594 423.714844 C 42.058594 424.988281 43.089844 426.019531 44.363281 426.019531 C 45.636719 426.019531 46.667969 424.988281 46.667969 423.714844 Z M 46.667969 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.191406 423.714844 C 68.191406 422.441406 67.160156 421.410156 65.886719 421.410156 C 64.613281 421.410156 63.582031 422.441406 63.582031 423.714844 C 63.582031 424.988281 64.613281 426.019531 65.886719 426.019531 C 67.160156 426.019531 68.191406 424.988281 68.191406 423.714844 Z M 68.191406 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 59.40625 423.714844 C 59.40625 422.441406 58.375 421.410156 57.101562 421.410156 C 55.828125 421.410156 54.796875 422.441406 54.796875 423.714844 C 54.796875 424.988281 55.828125 426.019531 57.101562 426.019531 C 58.375 426.019531 59.40625 424.988281 59.40625 423.714844 Z M 59.40625 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.554688 423.714844 C 45.554688 422.441406 44.523438 421.410156 43.25 421.410156 C 41.976562 421.410156 40.945312 422.441406 40.945312 423.714844 C 40.945312 424.988281 41.976562 426.019531 43.25 426.019531 C 44.523438 426.019531 45.554688 424.988281 45.554688 423.714844 Z M 45.554688 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.574219 423.714844 C 51.574219 422.441406 50.542969 421.410156 49.269531 421.410156 C 47.996094 421.410156 46.964844 422.441406 46.964844 423.714844 C 46.964844 424.988281 47.996094 426.019531 49.269531 426.019531 C 50.542969 426.019531 51.574219 424.988281 51.574219 423.714844 Z M 51.574219 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.808594 423.714844 C 57.808594 422.441406 56.777344 421.410156 55.503906 421.410156 C 54.230469 421.410156 53.199219 422.441406 53.199219 423.714844 C 53.199219 424.988281 54.230469 426.019531 55.503906 426.019531 C 56.777344 426.019531 57.808594 424.988281 57.808594 423.714844 Z M 57.808594 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.671875 423.714844 C 36.671875 422.441406 35.640625 421.410156 34.367188 421.410156 C 33.09375 421.410156 32.0625 422.441406 32.0625 423.714844 C 32.0625 424.988281 33.09375 426.019531 34.367188 426.019531 C 35.640625 426.019531 36.671875 424.988281 36.671875 423.714844 Z M 36.671875 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.75 423.714844 C 37.75 422.441406 36.71875 421.410156 35.445312 421.410156 C 34.171875 421.410156 33.140625 422.441406 33.140625 423.714844 C 33.140625 424.988281 34.171875 426.019531 35.445312 426.019531 C 36.71875 426.019531 37.75 424.988281 37.75 423.714844 Z M 37.75 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.320312 423.714844 C 49.320312 422.441406 48.289062 421.410156 47.015625 421.410156 C 45.742188 421.410156 44.710938 422.441406 44.710938 423.714844 C 44.710938 424.988281 45.742188 426.019531 47.015625 426.019531 C 48.289062 426.019531 49.320312 424.988281 49.320312 423.714844 Z M 49.320312 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.320312 423.714844 C 40.320312 422.441406 39.289062 421.410156 38.015625 421.410156 C 36.742188 421.410156 35.710938 422.441406 35.710938 423.714844 C 35.710938 424.988281 36.742188 426.019531 38.015625 426.019531 C 39.289062 426.019531 40.320312 424.988281 40.320312 423.714844 Z M 40.320312 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.296875 423.714844 C 65.296875 422.441406 64.265625 421.410156 62.992188 421.410156 C 61.71875 421.410156 60.6875 422.441406 60.6875 423.714844 C 60.6875 424.988281 61.71875 426.019531 62.992188 426.019531 C 64.265625 426.019531 65.296875 424.988281 65.296875 423.714844 Z M 65.296875 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.628906 423.714844 C 58.628906 422.441406 57.597656 421.410156 56.324219 421.410156 C 55.050781 421.410156 54.019531 422.441406 54.019531 423.714844 C 54.019531 424.988281 55.050781 426.019531 56.324219 426.019531 C 57.597656 426.019531 58.628906 424.988281 58.628906 423.714844 Z M 58.628906 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.09375 423.714844 C 38.09375 422.441406 37.0625 421.410156 35.789062 421.410156 C 34.515625 421.410156 33.484375 422.441406 33.484375 423.714844 C 33.484375 424.988281 34.515625 426.019531 35.789062 426.019531 C 37.0625 426.019531 38.09375 424.988281 38.09375 423.714844 Z M 38.09375 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.160156 423.714844 C 43.160156 422.441406 42.128906 421.410156 40.855469 421.410156 C 39.582031 421.410156 38.550781 422.441406 38.550781 423.714844 C 38.550781 424.988281 39.582031 426.019531 40.855469 426.019531 C 42.128906 426.019531 43.160156 424.988281 43.160156 423.714844 Z M 43.160156 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.917969 423.714844 C 53.917969 422.441406 52.886719 421.410156 51.613281 421.410156 C 50.339844 421.410156 49.308594 422.441406 49.308594 423.714844 C 49.308594 424.988281 50.339844 426.019531 51.613281 426.019531 C 52.886719 426.019531 53.917969 424.988281 53.917969 423.714844 Z M 53.917969 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.761719 423.714844 C 36.761719 422.441406 35.730469 421.410156 34.457031 421.410156 C 33.183594 421.410156 32.152344 422.441406 32.152344 423.714844 C 32.152344 424.988281 33.183594 426.019531 34.457031 426.019531 C 35.730469 426.019531 36.761719 424.988281 36.761719 423.714844 Z M 36.761719 423.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.414062 418.871094 C 66.414062 417.597656 65.382812 416.566406 64.109375 416.566406 C 62.835938 416.566406 61.804688 417.597656 61.804688 418.871094 C 61.804688 420.144531 62.835938 421.175781 64.109375 421.175781 C 65.382812 421.175781 66.414062 420.144531 66.414062 418.871094 Z M 66.414062 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.628906 418.871094 C 43.628906 417.597656 42.597656 416.566406 41.324219 416.566406 C 40.050781 416.566406 39.019531 417.597656 39.019531 418.871094 C 39.019531 420.144531 40.050781 421.175781 41.324219 421.175781 C 42.597656 421.175781 43.628906 420.144531 43.628906 418.871094 Z M 43.628906 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.546875 418.871094 C 57.546875 417.597656 56.515625 416.566406 55.242188 416.566406 C 53.96875 416.566406 52.9375 417.597656 52.9375 418.871094 C 52.9375 420.144531 53.96875 421.175781 55.242188 421.175781 C 56.515625 421.175781 57.546875 420.144531 57.546875 418.871094 Z M 57.546875 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.957031 418.871094 C 44.957031 417.597656 43.925781 416.566406 42.652344 416.566406 C 41.378906 416.566406 40.347656 417.597656 40.347656 418.871094 C 40.347656 420.144531 41.378906 421.175781 42.652344 421.175781 C 43.925781 421.175781 44.957031 420.144531 44.957031 418.871094 Z M 44.957031 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.996094 418.871094 C 48.996094 417.597656 47.964844 416.566406 46.691406 416.566406 C 45.417969 416.566406 44.386719 417.597656 44.386719 418.871094 C 44.386719 420.144531 45.417969 421.175781 46.691406 421.175781 C 47.964844 421.175781 48.996094 420.144531 48.996094 418.871094 Z M 48.996094 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.765625 418.871094 C 54.765625 417.597656 53.734375 416.566406 52.460938 416.566406 C 51.1875 416.566406 50.15625 417.597656 50.15625 418.871094 C 50.15625 420.144531 51.1875 421.175781 52.460938 421.175781 C 53.734375 421.175781 54.765625 420.144531 54.765625 418.871094 Z M 54.765625 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.882812 418.871094 C 57.882812 417.597656 56.851562 416.566406 55.578125 416.566406 C 54.304688 416.566406 53.273438 417.597656 53.273438 418.871094 C 53.273438 420.144531 54.304688 421.175781 55.578125 421.175781 C 56.851562 421.175781 57.882812 420.144531 57.882812 418.871094 Z M 57.882812 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.5 418.871094 C 47.5 417.597656 46.46875 416.566406 45.195312 416.566406 C 43.921875 416.566406 42.890625 417.597656 42.890625 418.871094 C 42.890625 420.144531 43.921875 421.175781 45.195312 421.175781 C 46.46875 421.175781 47.5 420.144531 47.5 418.871094 Z M 47.5 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.960938 418.871094 C 68.960938 417.597656 67.929688 416.566406 66.65625 416.566406 C 65.382812 416.566406 64.351562 417.597656 64.351562 418.871094 C 64.351562 420.144531 65.382812 421.175781 66.65625 421.175781 C 67.929688 421.175781 68.960938 420.144531 68.960938 418.871094 Z M 68.960938 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.78125 418.871094 C 56.78125 417.597656 55.75 416.566406 54.476562 416.566406 C 53.203125 416.566406 52.171875 417.597656 52.171875 418.871094 C 52.171875 420.144531 53.203125 421.175781 54.476562 421.175781 C 55.75 421.175781 56.78125 420.144531 56.78125 418.871094 Z M 56.78125 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.71875 418.871094 C 41.71875 417.597656 40.6875 416.566406 39.414062 416.566406 C 38.140625 416.566406 37.109375 417.597656 37.109375 418.871094 C 37.109375 420.144531 38.140625 421.175781 39.414062 421.175781 C 40.6875 421.175781 41.71875 420.144531 41.71875 418.871094 Z M 41.71875 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.503906 418.871094 C 56.503906 417.597656 55.472656 416.566406 54.199219 416.566406 C 52.925781 416.566406 51.894531 417.597656 51.894531 418.871094 C 51.894531 420.144531 52.925781 421.175781 54.199219 421.175781 C 55.472656 421.175781 56.503906 420.144531 56.503906 418.871094 Z M 56.503906 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.984375 418.871094 C 65.984375 417.597656 64.953125 416.566406 63.679688 416.566406 C 62.40625 416.566406 61.375 417.597656 61.375 418.871094 C 61.375 420.144531 62.40625 421.175781 63.679688 421.175781 C 64.953125 421.175781 65.984375 420.144531 65.984375 418.871094 Z M 65.984375 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.148438 418.871094 C 50.148438 417.597656 49.117188 416.566406 47.84375 416.566406 C 46.570312 416.566406 45.539062 417.597656 45.539062 418.871094 C 45.539062 420.144531 46.570312 421.175781 47.84375 421.175781 C 49.117188 421.175781 50.148438 420.144531 50.148438 418.871094 Z M 50.148438 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.476562 418.871094 C 50.476562 417.597656 49.445312 416.566406 48.171875 416.566406 C 46.898438 416.566406 45.867188 417.597656 45.867188 418.871094 C 45.867188 420.144531 46.898438 421.175781 48.171875 421.175781 C 49.445312 421.175781 50.476562 420.144531 50.476562 418.871094 Z M 50.476562 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.988281 418.871094 C 69.988281 417.597656 68.957031 416.566406 67.683594 416.566406 C 66.410156 416.566406 65.378906 417.597656 65.378906 418.871094 C 65.378906 420.144531 66.410156 421.175781 67.683594 421.175781 C 68.957031 421.175781 69.988281 420.144531 69.988281 418.871094 Z M 69.988281 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.023438 418.871094 C 62.023438 417.597656 60.992188 416.566406 59.71875 416.566406 C 58.445312 416.566406 57.414062 417.597656 57.414062 418.871094 C 57.414062 420.144531 58.445312 421.175781 59.71875 421.175781 C 60.992188 421.175781 62.023438 420.144531 62.023438 418.871094 Z M 62.023438 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.464844 418.871094 C 49.464844 417.597656 48.433594 416.566406 47.160156 416.566406 C 45.886719 416.566406 44.855469 417.597656 44.855469 418.871094 C 44.855469 420.144531 45.886719 421.175781 47.160156 421.175781 C 48.433594 421.175781 49.464844 420.144531 49.464844 418.871094 Z M 49.464844 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.921875 418.871094 C 54.921875 417.597656 53.890625 416.566406 52.617188 416.566406 C 51.34375 416.566406 50.3125 417.597656 50.3125 418.871094 C 50.3125 420.144531 51.34375 421.175781 52.617188 421.175781 C 53.890625 421.175781 54.921875 420.144531 54.921875 418.871094 Z M 54.921875 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.574219 418.871094 C 60.574219 417.597656 59.542969 416.566406 58.269531 416.566406 C 56.996094 416.566406 55.964844 417.597656 55.964844 418.871094 C 55.964844 420.144531 56.996094 421.175781 58.269531 421.175781 C 59.542969 421.175781 60.574219 420.144531 60.574219 418.871094 Z M 60.574219 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.414062 418.871094 C 41.414062 417.597656 40.382812 416.566406 39.109375 416.566406 C 37.835938 416.566406 36.804688 417.597656 36.804688 418.871094 C 36.804688 420.144531 37.835938 421.175781 39.109375 421.175781 C 40.382812 421.175781 41.414062 420.144531 41.414062 418.871094 Z M 41.414062 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.414062 418.871094 C 57.414062 417.597656 56.382812 416.566406 55.109375 416.566406 C 53.835938 416.566406 52.804688 417.597656 52.804688 418.871094 C 52.804688 420.144531 53.835938 421.175781 55.109375 421.175781 C 56.382812 421.175781 57.414062 420.144531 57.414062 418.871094 Z M 57.414062 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.878906 418.871094 C 52.878906 417.597656 51.847656 416.566406 50.574219 416.566406 C 49.300781 416.566406 48.269531 417.597656 48.269531 418.871094 C 48.269531 420.144531 49.300781 421.175781 50.574219 421.175781 C 51.847656 421.175781 52.878906 420.144531 52.878906 418.871094 Z M 52.878906 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.71875 418.871094 C 44.71875 417.597656 43.6875 416.566406 42.414062 416.566406 C 41.140625 416.566406 40.109375 417.597656 40.109375 418.871094 C 40.109375 420.144531 41.140625 421.175781 42.414062 421.175781 C 43.6875 421.175781 44.71875 420.144531 44.71875 418.871094 Z M 44.71875 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.363281 418.871094 C 67.363281 417.597656 66.332031 416.566406 65.058594 416.566406 C 63.785156 416.566406 62.753906 417.597656 62.753906 418.871094 C 62.753906 420.144531 63.785156 421.175781 65.058594 421.175781 C 66.332031 421.175781 67.363281 420.144531 67.363281 418.871094 Z M 67.363281 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.320312 418.871094 C 61.320312 417.597656 60.289062 416.566406 59.015625 416.566406 C 57.742188 416.566406 56.710938 417.597656 56.710938 418.871094 C 56.710938 420.144531 57.742188 421.175781 59.015625 421.175781 C 60.289062 421.175781 61.320312 420.144531 61.320312 418.871094 Z M 61.320312 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.703125 418.871094 C 42.703125 417.597656 41.671875 416.566406 40.398438 416.566406 C 39.125 416.566406 38.09375 417.597656 38.09375 418.871094 C 38.09375 420.144531 39.125 421.175781 40.398438 421.175781 C 41.671875 421.175781 42.703125 420.144531 42.703125 418.871094 Z M 42.703125 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.292969 418.871094 C 47.292969 417.597656 46.261719 416.566406 44.988281 416.566406 C 43.714844 416.566406 42.683594 417.597656 42.683594 418.871094 C 42.683594 420.144531 43.714844 421.175781 44.988281 421.175781 C 46.261719 421.175781 47.292969 420.144531 47.292969 418.871094 Z M 47.292969 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.046875 418.871094 C 57.046875 417.597656 56.015625 416.566406 54.742188 416.566406 C 53.46875 416.566406 52.4375 417.597656 52.4375 418.871094 C 52.4375 420.144531 53.46875 421.175781 54.742188 421.175781 C 56.015625 421.175781 57.046875 420.144531 57.046875 418.871094 Z M 57.046875 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.496094 418.871094 C 41.496094 417.597656 40.464844 416.566406 39.191406 416.566406 C 37.917969 416.566406 36.886719 417.597656 36.886719 418.871094 C 36.886719 420.144531 37.917969 421.175781 39.191406 421.175781 C 40.464844 421.175781 41.496094 420.144531 41.496094 418.871094 Z M 41.496094 418.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.460938 414.027344 C 68.460938 412.753906 67.429688 411.722656 66.15625 411.722656 C 64.882812 411.722656 63.851562 412.753906 63.851562 414.027344 C 63.851562 415.300781 64.882812 416.332031 66.15625 416.332031 C 67.429688 416.332031 68.460938 415.300781 68.460938 414.027344 Z M 68.460938 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.25 414.027344 C 48.25 412.753906 47.21875 411.722656 45.945312 411.722656 C 44.671875 411.722656 43.640625 412.753906 43.640625 414.027344 C 43.640625 415.300781 44.671875 416.332031 45.945312 416.332031 C 47.21875 416.332031 48.25 415.300781 48.25 414.027344 Z M 48.25 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.59375 414.027344 C 60.59375 412.753906 59.5625 411.722656 58.289062 411.722656 C 57.015625 411.722656 55.984375 412.753906 55.984375 414.027344 C 55.984375 415.300781 57.015625 416.332031 58.289062 416.332031 C 59.5625 416.332031 60.59375 415.300781 60.59375 414.027344 Z M 60.59375 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.425781 414.027344 C 49.425781 412.753906 48.394531 411.722656 47.121094 411.722656 C 45.847656 411.722656 44.816406 412.753906 44.816406 414.027344 C 44.816406 415.300781 45.847656 416.332031 47.121094 416.332031 C 48.394531 416.332031 49.425781 415.300781 49.425781 414.027344 Z M 49.425781 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.007812 414.027344 C 53.007812 412.753906 51.976562 411.722656 50.703125 411.722656 C 49.429688 411.722656 48.398438 412.753906 48.398438 414.027344 C 48.398438 415.300781 49.429688 416.332031 50.703125 416.332031 C 51.976562 416.332031 53.007812 415.300781 53.007812 414.027344 Z M 53.007812 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.125 414.027344 C 58.125 412.753906 57.09375 411.722656 55.820312 411.722656 C 54.546875 411.722656 53.515625 412.753906 53.515625 414.027344 C 53.515625 415.300781 54.546875 416.332031 55.820312 416.332031 C 57.09375 416.332031 58.125 415.300781 58.125 414.027344 Z M 58.125 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.894531 414.027344 C 60.894531 412.753906 59.863281 411.722656 58.589844 411.722656 C 57.316406 411.722656 56.285156 412.753906 56.285156 414.027344 C 56.285156 415.300781 57.316406 416.332031 58.589844 416.332031 C 59.863281 416.332031 60.894531 415.300781 60.894531 414.027344 Z M 60.894531 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.679688 414.027344 C 51.679688 412.753906 50.648438 411.722656 49.375 411.722656 C 48.101562 411.722656 47.070312 412.753906 47.070312 414.027344 C 47.070312 415.300781 48.101562 416.332031 49.375 416.332031 C 50.648438 416.332031 51.679688 415.300781 51.679688 414.027344 Z M 51.679688 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.71875 414.027344 C 70.71875 412.753906 69.6875 411.722656 68.414062 411.722656 C 67.140625 411.722656 66.109375 412.753906 66.109375 414.027344 C 66.109375 415.300781 67.140625 416.332031 68.414062 416.332031 C 69.6875 416.332031 70.71875 415.300781 70.71875 414.027344 Z M 70.71875 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 59.914062 414.027344 C 59.914062 412.753906 58.882812 411.722656 57.609375 411.722656 C 56.335938 411.722656 55.304688 412.753906 55.304688 414.027344 C 55.304688 415.300781 56.335938 416.332031 57.609375 416.332031 C 58.882812 416.332031 59.914062 415.300781 59.914062 414.027344 Z M 59.914062 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.554688 414.027344 C 46.554688 412.753906 45.523438 411.722656 44.25 411.722656 C 42.976562 411.722656 41.945312 412.753906 41.945312 414.027344 C 41.945312 415.300781 42.976562 416.332031 44.25 416.332031 C 45.523438 416.332031 46.554688 415.300781 46.554688 414.027344 Z M 46.554688 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 59.667969 414.027344 C 59.667969 412.753906 58.636719 411.722656 57.363281 411.722656 C 56.089844 411.722656 55.058594 412.753906 55.058594 414.027344 C 55.058594 415.300781 56.089844 416.332031 57.363281 416.332031 C 58.636719 416.332031 59.667969 415.300781 59.667969 414.027344 Z M 59.667969 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.078125 414.027344 C 68.078125 412.753906 67.046875 411.722656 65.773438 411.722656 C 64.5 411.722656 63.46875 412.753906 63.46875 414.027344 C 63.46875 415.300781 64.5 416.332031 65.773438 416.332031 C 67.046875 416.332031 68.078125 415.300781 68.078125 414.027344 Z M 68.078125 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.03125 414.027344 C 54.03125 412.753906 53 411.722656 51.726562 411.722656 C 50.453125 411.722656 49.421875 412.753906 49.421875 414.027344 C 49.421875 415.300781 50.453125 416.332031 51.726562 416.332031 C 53 416.332031 54.03125 415.300781 54.03125 414.027344 Z M 54.03125 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.746094 414.027344 C 37.746094 412.753906 36.714844 411.722656 35.441406 411.722656 C 34.167969 411.722656 33.136719 412.753906 33.136719 414.027344 C 33.136719 415.300781 34.167969 416.332031 35.441406 416.332031 C 36.714844 416.332031 37.746094 415.300781 37.746094 414.027344 Z M 37.746094 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.628906 414.027344 C 71.628906 412.753906 70.597656 411.722656 69.324219 411.722656 C 68.050781 411.722656 67.019531 412.753906 67.019531 414.027344 C 67.019531 415.300781 68.050781 416.332031 69.324219 416.332031 C 70.597656 416.332031 71.628906 415.300781 71.628906 414.027344 Z M 71.628906 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.5625 414.027344 C 64.5625 412.753906 63.53125 411.722656 62.257812 411.722656 C 60.984375 411.722656 59.953125 412.753906 59.953125 414.027344 C 59.953125 415.300781 60.984375 416.332031 62.257812 416.332031 C 63.53125 416.332031 64.5625 415.300781 64.5625 414.027344 Z M 64.5625 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.425781 414.027344 C 53.425781 412.753906 52.394531 411.722656 51.121094 411.722656 C 49.847656 411.722656 48.816406 412.753906 48.816406 414.027344 C 48.816406 415.300781 49.847656 416.332031 51.121094 416.332031 C 52.394531 416.332031 53.425781 415.300781 53.425781 414.027344 Z M 53.425781 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.265625 414.027344 C 58.265625 412.753906 57.234375 411.722656 55.960938 411.722656 C 54.6875 411.722656 53.65625 412.753906 53.65625 414.027344 C 53.65625 415.300781 54.6875 416.332031 55.960938 416.332031 C 57.234375 416.332031 58.265625 415.300781 58.265625 414.027344 Z M 58.265625 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.277344 414.027344 C 63.277344 412.753906 62.246094 411.722656 60.972656 411.722656 C 59.699219 411.722656 58.667969 412.753906 58.667969 414.027344 C 58.667969 415.300781 59.699219 416.332031 60.972656 416.332031 C 62.246094 416.332031 63.277344 415.300781 63.277344 414.027344 Z M 63.277344 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.285156 414.027344 C 46.285156 412.753906 45.253906 411.722656 43.980469 411.722656 C 42.707031 411.722656 41.675781 412.753906 41.675781 414.027344 C 41.675781 415.300781 42.707031 416.332031 43.980469 416.332031 C 45.253906 416.332031 46.285156 415.300781 46.285156 414.027344 Z M 46.285156 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.476562 414.027344 C 60.476562 412.753906 59.445312 411.722656 58.171875 411.722656 C 56.898438 411.722656 55.867188 412.753906 55.867188 414.027344 C 55.867188 415.300781 56.898438 416.332031 58.171875 416.332031 C 59.445312 416.332031 60.476562 415.300781 60.476562 414.027344 Z M 60.476562 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.453125 414.027344 C 56.453125 412.753906 55.421875 411.722656 54.148438 411.722656 C 52.875 411.722656 51.84375 412.753906 51.84375 414.027344 C 51.84375 415.300781 52.875 416.332031 54.148438 416.332031 C 55.421875 416.332031 56.453125 415.300781 56.453125 414.027344 Z M 56.453125 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.214844 414.027344 C 49.214844 412.753906 48.183594 411.722656 46.910156 411.722656 C 45.636719 411.722656 44.605469 412.753906 44.605469 414.027344 C 44.605469 415.300781 45.636719 416.332031 46.910156 416.332031 C 48.183594 416.332031 49.214844 415.300781 49.214844 414.027344 Z M 49.214844 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.300781 414.027344 C 69.300781 412.753906 68.269531 411.722656 66.996094 411.722656 C 65.722656 411.722656 64.691406 412.753906 64.691406 414.027344 C 64.691406 415.300781 65.722656 416.332031 66.996094 416.332031 C 68.269531 416.332031 69.300781 415.300781 69.300781 414.027344 Z M 69.300781 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.941406 414.027344 C 63.941406 412.753906 62.910156 411.722656 61.636719 411.722656 C 60.363281 411.722656 59.332031 412.753906 59.332031 414.027344 C 59.332031 415.300781 60.363281 416.332031 61.636719 416.332031 C 62.910156 416.332031 63.941406 415.300781 63.941406 414.027344 Z M 63.941406 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.425781 414.027344 C 47.425781 412.753906 46.394531 411.722656 45.121094 411.722656 C 43.847656 411.722656 42.816406 412.753906 42.816406 414.027344 C 42.816406 415.300781 43.847656 416.332031 45.121094 416.332031 C 46.394531 416.332031 47.425781 415.300781 47.425781 414.027344 Z M 47.425781 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.5 414.027344 C 51.5 412.753906 50.46875 411.722656 49.195312 411.722656 C 47.921875 411.722656 46.890625 412.753906 46.890625 414.027344 C 46.890625 415.300781 47.921875 416.332031 49.195312 416.332031 C 50.46875 416.332031 51.5 415.300781 51.5 414.027344 Z M 51.5 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.148438 414.027344 C 60.148438 412.753906 59.117188 411.722656 57.84375 411.722656 C 56.570312 411.722656 55.539062 412.753906 55.539062 414.027344 C 55.539062 415.300781 56.570312 416.332031 57.84375 416.332031 C 59.117188 416.332031 60.148438 415.300781 60.148438 414.027344 Z M 60.148438 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.355469 414.027344 C 46.355469 412.753906 45.324219 411.722656 44.050781 411.722656 C 42.777344 411.722656 41.746094 412.753906 41.746094 414.027344 C 41.746094 415.300781 42.777344 416.332031 44.050781 416.332031 C 45.324219 416.332031 46.355469 415.300781 46.355469 414.027344 Z M 46.355469 414.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.363281 409.183594 C 70.363281 407.910156 69.332031 406.878906 68.058594 406.878906 C 66.785156 406.878906 65.753906 407.910156 65.753906 409.183594 C 65.753906 410.457031 66.785156 411.488281 68.058594 411.488281 C 69.332031 411.488281 70.363281 410.457031 70.363281 409.183594 Z M 70.363281 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.933594 409.183594 C 52.933594 407.910156 51.902344 406.878906 50.628906 406.878906 C 49.355469 406.878906 48.324219 407.910156 48.324219 409.183594 C 48.324219 410.457031 49.355469 411.488281 50.628906 411.488281 C 51.902344 411.488281 52.933594 410.457031 52.933594 409.183594 Z M 52.933594 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.578125 409.183594 C 63.578125 407.910156 62.546875 406.878906 61.273438 406.878906 C 60 406.878906 58.96875 407.910156 58.96875 409.183594 C 58.96875 410.457031 60 411.488281 61.273438 411.488281 C 62.546875 411.488281 63.578125 410.457031 63.578125 409.183594 Z M 63.578125 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.945312 409.183594 C 53.945312 407.910156 52.914062 406.878906 51.640625 406.878906 C 50.367188 406.878906 49.335938 407.910156 49.335938 409.183594 C 49.335938 410.457031 50.367188 411.488281 51.640625 411.488281 C 52.914062 411.488281 53.945312 410.457031 53.945312 409.183594 Z M 53.945312 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.039062 409.183594 C 57.039062 407.910156 56.007812 406.878906 54.734375 406.878906 C 53.460938 406.878906 52.429688 407.910156 52.429688 409.183594 C 52.429688 410.457031 53.460938 411.488281 54.734375 411.488281 C 56.007812 411.488281 57.039062 410.457031 57.039062 409.183594 Z M 57.039062 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.449219 409.183594 C 61.449219 407.910156 60.417969 406.878906 59.144531 406.878906 C 57.871094 406.878906 56.839844 407.910156 56.839844 409.183594 C 56.839844 410.457031 57.871094 411.488281 59.144531 411.488281 C 60.417969 411.488281 61.449219 410.457031 61.449219 409.183594 Z M 61.449219 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.835938 409.183594 C 63.835938 407.910156 62.804688 406.878906 61.53125 406.878906 C 60.257812 406.878906 59.226562 407.910156 59.226562 409.183594 C 59.226562 410.457031 60.257812 411.488281 61.53125 411.488281 C 62.804688 411.488281 63.835938 410.457031 63.835938 409.183594 Z M 63.835938 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.890625 409.183594 C 55.890625 407.910156 54.859375 406.878906 53.585938 406.878906 C 52.3125 406.878906 51.28125 407.910156 51.28125 409.183594 C 51.28125 410.457031 52.3125 411.488281 53.585938 411.488281 C 54.859375 411.488281 55.890625 410.457031 55.890625 409.183594 Z M 55.890625 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.3125 409.183594 C 72.3125 407.910156 71.28125 406.878906 70.007812 406.878906 C 68.734375 406.878906 67.703125 407.910156 67.703125 409.183594 C 67.703125 410.457031 68.734375 411.488281 70.007812 411.488281 C 71.28125 411.488281 72.3125 410.457031 72.3125 409.183594 Z M 72.3125 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.996094 409.183594 C 62.996094 407.910156 61.964844 406.878906 60.691406 406.878906 C 59.417969 406.878906 58.386719 407.910156 58.386719 409.183594 C 58.386719 410.457031 59.417969 411.488281 60.691406 411.488281 C 61.964844 411.488281 62.996094 410.457031 62.996094 409.183594 Z M 62.996094 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.46875 409.183594 C 51.46875 407.910156 50.4375 406.878906 49.164062 406.878906 C 47.890625 406.878906 46.859375 407.910156 46.859375 409.183594 C 46.859375 410.457031 47.890625 411.488281 49.164062 411.488281 C 50.4375 411.488281 51.46875 410.457031 51.46875 409.183594 Z M 51.46875 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.78125 409.183594 C 62.78125 407.910156 61.75 406.878906 60.476562 406.878906 C 59.203125 406.878906 58.171875 407.910156 58.171875 409.183594 C 58.171875 410.457031 59.203125 411.488281 60.476562 411.488281 C 61.75 411.488281 62.78125 410.457031 62.78125 409.183594 Z M 62.78125 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.035156 409.183594 C 70.035156 407.910156 69.003906 406.878906 67.730469 406.878906 C 66.457031 406.878906 65.425781 407.910156 65.425781 409.183594 C 65.425781 410.457031 66.457031 411.488281 67.730469 411.488281 C 69.003906 411.488281 70.035156 410.457031 70.035156 409.183594 Z M 70.035156 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.921875 409.183594 C 57.921875 407.910156 56.890625 406.878906 55.617188 406.878906 C 54.34375 406.878906 53.3125 407.910156 53.3125 409.183594 C 53.3125 410.457031 54.34375 411.488281 55.617188 411.488281 C 56.890625 411.488281 57.921875 410.457031 57.921875 409.183594 Z M 57.921875 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.167969 409.183594 C 58.167969 407.910156 57.136719 406.878906 55.863281 406.878906 C 54.589844 406.878906 53.558594 407.910156 53.558594 409.183594 C 53.558594 410.457031 54.589844 411.488281 55.863281 411.488281 C 57.136719 411.488281 58.167969 410.457031 58.167969 409.183594 Z M 58.167969 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.097656 409.183594 C 73.097656 407.910156 72.066406 406.878906 70.792969 406.878906 C 69.519531 406.878906 68.488281 407.910156 68.488281 409.183594 C 68.488281 410.457031 69.519531 411.488281 70.792969 411.488281 C 72.066406 411.488281 73.097656 410.457031 73.097656 409.183594 Z M 73.097656 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.003906 409.183594 C 67.003906 407.910156 65.972656 406.878906 64.699219 406.878906 C 63.425781 406.878906 62.394531 407.910156 62.394531 409.183594 C 62.394531 410.457031 63.425781 411.488281 64.699219 411.488281 C 65.972656 411.488281 67.003906 410.457031 67.003906 409.183594 Z M 67.003906 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.398438 409.183594 C 57.398438 407.910156 56.367188 406.878906 55.09375 406.878906 C 53.820312 406.878906 52.789062 407.910156 52.789062 409.183594 C 52.789062 410.457031 53.820312 411.488281 55.09375 411.488281 C 56.367188 411.488281 57.398438 410.457031 57.398438 409.183594 Z M 57.398438 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.570312 409.183594 C 61.570312 407.910156 60.539062 406.878906 59.265625 406.878906 C 57.992188 406.878906 56.960938 407.910156 56.960938 409.183594 C 56.960938 410.457031 57.992188 411.488281 59.265625 411.488281 C 60.539062 411.488281 61.570312 410.457031 61.570312 409.183594 Z M 61.570312 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.894531 409.183594 C 65.894531 407.910156 64.863281 406.878906 63.589844 406.878906 C 62.316406 406.878906 61.285156 407.910156 61.285156 409.183594 C 61.285156 410.457031 62.316406 411.488281 63.589844 411.488281 C 64.863281 411.488281 65.894531 410.457031 65.894531 409.183594 Z M 65.894531 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.234375 409.183594 C 51.234375 407.910156 50.203125 406.878906 48.929688 406.878906 C 47.65625 406.878906 46.625 407.910156 46.625 409.183594 C 46.625 410.457031 47.65625 411.488281 48.929688 411.488281 C 50.203125 411.488281 51.234375 410.457031 51.234375 409.183594 Z M 51.234375 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.476562 409.183594 C 63.476562 407.910156 62.445312 406.878906 61.171875 406.878906 C 59.898438 406.878906 58.867188 407.910156 58.867188 409.183594 C 58.867188 410.457031 59.898438 411.488281 61.171875 411.488281 C 62.445312 411.488281 63.476562 410.457031 63.476562 409.183594 Z M 63.476562 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.007812 409.183594 C 60.007812 407.910156 58.976562 406.878906 57.703125 406.878906 C 56.429688 406.878906 55.398438 407.910156 55.398438 409.183594 C 55.398438 410.457031 56.429688 411.488281 57.703125 411.488281 C 58.976562 411.488281 60.007812 410.457031 60.007812 409.183594 Z M 60.007812 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.765625 409.183594 C 53.765625 407.910156 52.734375 406.878906 51.460938 406.878906 C 50.1875 406.878906 49.15625 407.910156 49.15625 409.183594 C 49.15625 410.457031 50.1875 411.488281 51.460938 411.488281 C 52.734375 411.488281 53.765625 410.457031 53.765625 409.183594 Z M 53.765625 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.089844 409.183594 C 71.089844 407.910156 70.058594 406.878906 68.785156 406.878906 C 67.511719 406.878906 66.480469 407.910156 66.480469 409.183594 C 66.480469 410.457031 67.511719 411.488281 68.785156 411.488281 C 70.058594 411.488281 71.089844 410.457031 71.089844 409.183594 Z M 71.089844 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.464844 409.183594 C 66.464844 407.910156 65.433594 406.878906 64.160156 406.878906 C 62.886719 406.878906 61.855469 407.910156 61.855469 409.183594 C 61.855469 410.457031 62.886719 411.488281 64.160156 411.488281 C 65.433594 411.488281 66.464844 410.457031 66.464844 409.183594 Z M 66.464844 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.222656 409.183594 C 52.222656 407.910156 51.191406 406.878906 49.917969 406.878906 C 48.644531 406.878906 47.613281 407.910156 47.613281 409.183594 C 47.613281 410.457031 48.644531 411.488281 49.917969 411.488281 C 51.191406 411.488281 52.222656 410.457031 52.222656 409.183594 Z M 52.222656 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.734375 409.183594 C 55.734375 407.910156 54.703125 406.878906 53.429688 406.878906 C 52.15625 406.878906 51.125 407.910156 51.125 409.183594 C 51.125 410.457031 52.15625 411.488281 53.429688 411.488281 C 54.703125 411.488281 55.734375 410.457031 55.734375 409.183594 Z M 55.734375 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.199219 409.183594 C 63.199219 407.910156 62.167969 406.878906 60.894531 406.878906 C 59.621094 406.878906 58.589844 407.910156 58.589844 409.183594 C 58.589844 410.457031 59.621094 411.488281 60.894531 411.488281 C 62.167969 411.488281 63.199219 410.457031 63.199219 409.183594 Z M 63.199219 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.296875 409.183594 C 51.296875 407.910156 50.265625 406.878906 48.992188 406.878906 C 47.71875 406.878906 46.6875 407.910156 46.6875 409.183594 C 46.6875 410.457031 47.71875 411.488281 48.992188 411.488281 C 50.265625 411.488281 51.296875 410.457031 51.296875 409.183594 Z M 51.296875 409.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.109375 404.339844 C 72.109375 403.066406 71.078125 402.035156 69.804688 402.035156 C 68.53125 402.035156 67.5 403.066406 67.5 404.339844 C 67.5 405.613281 68.53125 406.644531 69.804688 406.644531 C 71.078125 406.644531 72.109375 405.613281 72.109375 404.339844 Z M 72.109375 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.628906 404.339844 C 57.628906 403.066406 56.597656 402.035156 55.324219 402.035156 C 54.050781 402.035156 53.019531 403.066406 53.019531 404.339844 C 53.019531 405.613281 54.050781 406.644531 55.324219 406.644531 C 56.597656 406.644531 57.628906 405.613281 57.628906 404.339844 Z M 57.628906 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.472656 404.339844 C 66.472656 403.066406 65.441406 402.035156 64.167969 402.035156 C 62.894531 402.035156 61.863281 403.066406 61.863281 404.339844 C 61.863281 405.613281 62.894531 406.644531 64.167969 406.644531 C 65.441406 406.644531 66.472656 405.613281 66.472656 404.339844 Z M 66.472656 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.472656 404.339844 C 58.472656 403.066406 57.441406 402.035156 56.167969 402.035156 C 54.894531 402.035156 53.863281 403.066406 53.863281 404.339844 C 53.863281 405.613281 54.894531 406.644531 56.167969 406.644531 C 57.441406 406.644531 58.472656 405.613281 58.472656 404.339844 Z M 58.472656 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.039062 404.339844 C 61.039062 403.066406 60.007812 402.035156 58.734375 402.035156 C 57.460938 402.035156 56.429688 403.066406 56.429688 404.339844 C 56.429688 405.613281 57.460938 406.644531 58.734375 406.644531 C 60.007812 406.644531 61.039062 405.613281 61.039062 404.339844 Z M 61.039062 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.707031 404.339844 C 64.707031 403.066406 63.675781 402.035156 62.402344 402.035156 C 61.128906 402.035156 60.097656 403.066406 60.097656 404.339844 C 60.097656 405.613281 61.128906 406.644531 62.402344 406.644531 C 63.675781 406.644531 64.707031 405.613281 64.707031 404.339844 Z M 64.707031 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.6875 404.339844 C 66.6875 403.066406 65.65625 402.035156 64.382812 402.035156 C 63.109375 402.035156 62.078125 403.066406 62.078125 404.339844 C 62.078125 405.613281 63.109375 406.644531 64.382812 406.644531 C 65.65625 406.644531 66.6875 405.613281 66.6875 404.339844 Z M 66.6875 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.089844 404.339844 C 60.089844 403.066406 59.058594 402.035156 57.785156 402.035156 C 56.511719 402.035156 55.480469 403.066406 55.480469 404.339844 C 55.480469 405.613281 56.511719 406.644531 57.785156 406.644531 C 59.058594 406.644531 60.089844 405.613281 60.089844 404.339844 Z M 60.089844 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.730469 404.339844 C 73.730469 403.066406 72.699219 402.035156 71.425781 402.035156 C 70.152344 402.035156 69.121094 403.066406 69.121094 404.339844 C 69.121094 405.613281 70.152344 406.644531 71.425781 406.644531 C 72.699219 406.644531 73.730469 405.613281 73.730469 404.339844 Z M 73.730469 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.988281 404.339844 C 65.988281 403.066406 64.957031 402.035156 63.683594 402.035156 C 62.410156 402.035156 61.378906 403.066406 61.378906 404.339844 C 61.378906 405.613281 62.410156 406.644531 63.683594 406.644531 C 64.957031 406.644531 65.988281 405.613281 65.988281 404.339844 Z M 65.988281 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.414062 404.339844 C 56.414062 403.066406 55.382812 402.035156 54.109375 402.035156 C 52.835938 402.035156 51.804688 403.066406 51.804688 404.339844 C 51.804688 405.613281 52.835938 406.644531 54.109375 406.644531 C 55.382812 406.644531 56.414062 405.613281 56.414062 404.339844 Z M 56.414062 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.8125 404.339844 C 65.8125 403.066406 64.78125 402.035156 63.507812 402.035156 C 62.234375 402.035156 61.203125 403.066406 61.203125 404.339844 C 61.203125 405.613281 62.234375 406.644531 63.507812 406.644531 C 64.78125 406.644531 65.8125 405.613281 65.8125 404.339844 Z M 65.8125 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.835938 404.339844 C 71.835938 403.066406 70.804688 402.035156 69.53125 402.035156 C 68.257812 402.035156 67.226562 403.066406 67.226562 404.339844 C 67.226562 405.613281 68.257812 406.644531 69.53125 406.644531 C 70.804688 406.644531 71.835938 405.613281 71.835938 404.339844 Z M 71.835938 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.773438 404.339844 C 61.773438 403.066406 60.742188 402.035156 59.46875 402.035156 C 58.195312 402.035156 57.164062 403.066406 57.164062 404.339844 C 57.164062 405.613281 58.195312 406.644531 59.46875 406.644531 C 60.742188 406.644531 61.773438 405.613281 61.773438 404.339844 Z M 61.773438 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.980469 404.339844 C 61.980469 403.066406 60.949219 402.035156 59.675781 402.035156 C 58.402344 402.035156 57.371094 403.066406 57.371094 404.339844 C 57.371094 405.613281 58.402344 406.644531 59.675781 406.644531 C 60.949219 406.644531 61.980469 405.613281 61.980469 404.339844 Z M 61.980469 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.382812 404.339844 C 74.382812 403.066406 73.351562 402.035156 72.078125 402.035156 C 70.804688 402.035156 69.773438 403.066406 69.773438 404.339844 C 69.773438 405.613281 70.804688 406.644531 72.078125 406.644531 C 73.351562 406.644531 74.382812 405.613281 74.382812 404.339844 Z M 74.382812 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.320312 404.339844 C 69.320312 403.066406 68.289062 402.035156 67.015625 402.035156 C 65.742188 402.035156 64.710938 403.066406 64.710938 404.339844 C 64.710938 405.613281 65.742188 406.644531 67.015625 406.644531 C 68.289062 406.644531 69.320312 405.613281 69.320312 404.339844 Z M 69.320312 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.339844 404.339844 C 61.339844 403.066406 60.308594 402.035156 59.035156 402.035156 C 57.761719 402.035156 56.730469 403.066406 56.730469 404.339844 C 56.730469 405.613281 57.761719 406.644531 59.035156 406.644531 C 60.308594 406.644531 61.339844 405.613281 61.339844 404.339844 Z M 61.339844 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.804688 404.339844 C 64.804688 403.066406 63.773438 402.035156 62.5 402.035156 C 61.226562 402.035156 60.195312 403.066406 60.195312 404.339844 C 60.195312 405.613281 61.226562 406.644531 62.5 406.644531 C 63.773438 406.644531 64.804688 405.613281 64.804688 404.339844 Z M 64.804688 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.398438 404.339844 C 68.398438 403.066406 67.367188 402.035156 66.09375 402.035156 C 64.820312 402.035156 63.789062 403.066406 63.789062 404.339844 C 63.789062 405.613281 64.820312 406.644531 66.09375 406.644531 C 67.367188 406.644531 68.398438 405.613281 68.398438 404.339844 Z M 68.398438 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.222656 404.339844 C 56.222656 403.066406 55.191406 402.035156 53.917969 402.035156 C 52.644531 402.035156 51.613281 403.066406 51.613281 404.339844 C 51.613281 405.613281 52.644531 406.644531 53.917969 406.644531 C 55.191406 406.644531 56.222656 405.613281 56.222656 404.339844 Z M 56.222656 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.390625 404.339844 C 66.390625 403.066406 65.359375 402.035156 64.085938 402.035156 C 62.8125 402.035156 61.78125 403.066406 61.78125 404.339844 C 61.78125 405.613281 62.8125 406.644531 64.085938 406.644531 C 65.359375 406.644531 66.390625 405.613281 66.390625 404.339844 Z M 66.390625 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.507812 404.339844 C 63.507812 403.066406 62.476562 402.035156 61.203125 402.035156 C 59.929688 402.035156 58.898438 403.066406 58.898438 404.339844 C 58.898438 405.613281 59.929688 406.644531 61.203125 406.644531 C 62.476562 406.644531 63.507812 405.613281 63.507812 404.339844 Z M 63.507812 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.320312 404.339844 C 58.320312 403.066406 57.289062 402.035156 56.015625 402.035156 C 54.742188 402.035156 53.710938 403.066406 53.710938 404.339844 C 53.710938 405.613281 54.742188 406.644531 56.015625 406.644531 C 57.289062 406.644531 58.320312 405.613281 58.320312 404.339844 Z M 58.320312 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.714844 404.339844 C 72.714844 403.066406 71.683594 402.035156 70.410156 402.035156 C 69.136719 402.035156 68.105469 403.066406 68.105469 404.339844 C 68.105469 405.613281 69.136719 406.644531 70.410156 406.644531 C 71.683594 406.644531 72.714844 405.613281 72.714844 404.339844 Z M 72.714844 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.875 404.339844 C 68.875 403.066406 67.84375 402.035156 66.570312 402.035156 C 65.296875 402.035156 64.265625 403.066406 64.265625 404.339844 C 64.265625 405.613281 65.296875 406.644531 66.570312 406.644531 C 67.84375 406.644531 68.875 405.613281 68.875 404.339844 Z M 68.875 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.039062 404.339844 C 57.039062 403.066406 56.007812 402.035156 54.734375 402.035156 C 53.460938 402.035156 52.429688 403.066406 52.429688 404.339844 C 52.429688 405.613281 53.460938 406.644531 54.734375 406.644531 C 56.007812 406.644531 57.039062 405.613281 57.039062 404.339844 Z M 57.039062 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 59.957031 404.339844 C 59.957031 403.066406 58.925781 402.035156 57.652344 402.035156 C 56.378906 402.035156 55.347656 403.066406 55.347656 404.339844 C 55.347656 405.613281 56.378906 406.644531 57.652344 406.644531 C 58.925781 406.644531 59.957031 405.613281 59.957031 404.339844 Z M 59.957031 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.15625 404.339844 C 66.15625 403.066406 65.125 402.035156 63.851562 402.035156 C 62.578125 402.035156 61.546875 403.066406 61.546875 404.339844 C 61.546875 405.613281 62.578125 406.644531 63.851562 406.644531 C 65.125 406.644531 66.15625 405.613281 66.15625 404.339844 Z M 66.15625 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.273438 404.339844 C 56.273438 403.066406 55.242188 402.035156 53.96875 402.035156 C 52.695312 402.035156 51.664062 403.066406 51.664062 404.339844 C 51.664062 405.613281 52.695312 406.644531 53.96875 406.644531 C 55.242188 406.644531 56.273438 405.613281 56.273438 404.339844 Z M 56.273438 404.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.683594 399.496094 C 73.683594 398.222656 72.652344 397.191406 71.378906 397.191406 C 70.105469 397.191406 69.074219 398.222656 69.074219 399.496094 C 69.074219 400.769531 70.105469 401.800781 71.378906 401.800781 C 72.652344 401.800781 73.683594 400.769531 73.683594 399.496094 Z M 73.683594 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.296875 399.496094 C 62.296875 398.222656 61.265625 397.191406 59.992188 397.191406 C 58.71875 397.191406 57.6875 398.222656 57.6875 399.496094 C 57.6875 400.769531 58.71875 401.800781 59.992188 401.800781 C 61.265625 401.800781 62.296875 400.769531 62.296875 399.496094 Z M 62.296875 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.25 399.496094 C 69.25 398.222656 68.21875 397.191406 66.945312 397.191406 C 65.671875 397.191406 64.640625 398.222656 64.640625 399.496094 C 64.640625 400.769531 65.671875 401.800781 66.945312 401.800781 C 68.21875 401.800781 69.25 400.769531 69.25 399.496094 Z M 69.25 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.957031 399.496094 C 62.957031 398.222656 61.925781 397.191406 60.652344 397.191406 C 59.378906 397.191406 58.347656 398.222656 58.347656 399.496094 C 58.347656 400.769531 59.378906 401.800781 60.652344 401.800781 C 61.925781 401.800781 62.957031 400.769531 62.957031 399.496094 Z M 62.957031 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.976562 399.496094 C 64.976562 398.222656 63.945312 397.191406 62.671875 397.191406 C 61.398438 397.191406 60.367188 398.222656 60.367188 399.496094 C 60.367188 400.769531 61.398438 401.800781 62.671875 401.800781 C 63.945312 401.800781 64.976562 400.769531 64.976562 399.496094 Z M 64.976562 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.859375 399.496094 C 67.859375 398.222656 66.828125 397.191406 65.554688 397.191406 C 64.28125 397.191406 63.25 398.222656 63.25 399.496094 C 63.25 400.769531 64.28125 401.800781 65.554688 401.800781 C 66.828125 401.800781 67.859375 400.769531 67.859375 399.496094 Z M 67.859375 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.417969 399.496094 C 69.417969 398.222656 68.386719 397.191406 67.113281 397.191406 C 65.839844 397.191406 64.808594 398.222656 64.808594 399.496094 C 64.808594 400.769531 65.839844 401.800781 67.113281 401.800781 C 68.386719 401.800781 69.417969 400.769531 69.417969 399.496094 Z M 69.417969 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.230469 399.496094 C 64.230469 398.222656 63.199219 397.191406 61.925781 397.191406 C 60.652344 397.191406 59.621094 398.222656 59.621094 399.496094 C 59.621094 400.769531 60.652344 401.800781 61.925781 401.800781 C 63.199219 401.800781 64.230469 400.769531 64.230469 399.496094 Z M 64.230469 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.953125 399.496094 C 74.953125 398.222656 73.921875 397.191406 72.648438 397.191406 C 71.375 397.191406 70.34375 398.222656 70.34375 399.496094 C 70.34375 400.769531 71.375 401.800781 72.648438 401.800781 C 73.921875 401.800781 74.953125 400.769531 74.953125 399.496094 Z M 74.953125 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.867188 399.496094 C 68.867188 398.222656 67.835938 397.191406 66.5625 397.191406 C 65.289062 397.191406 64.257812 398.222656 64.257812 399.496094 C 64.257812 400.769531 65.289062 401.800781 66.5625 401.800781 C 67.835938 401.800781 68.867188 400.769531 68.867188 399.496094 Z M 68.867188 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.339844 399.496094 C 61.339844 398.222656 60.308594 397.191406 59.035156 397.191406 C 57.761719 397.191406 56.730469 398.222656 56.730469 399.496094 C 56.730469 400.769531 57.761719 401.800781 59.035156 401.800781 C 60.308594 401.800781 61.339844 400.769531 61.339844 399.496094 Z M 61.339844 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.730469 399.496094 C 68.730469 398.222656 67.699219 397.191406 66.425781 397.191406 C 65.152344 397.191406 64.121094 398.222656 64.121094 399.496094 C 64.121094 400.769531 65.152344 401.800781 66.425781 401.800781 C 67.699219 401.800781 68.730469 400.769531 68.730469 399.496094 Z M 68.730469 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.464844 399.496094 C 73.464844 398.222656 72.433594 397.191406 71.160156 397.191406 C 69.886719 397.191406 68.855469 398.222656 68.855469 399.496094 C 68.855469 400.769531 69.886719 401.800781 71.160156 401.800781 C 72.433594 401.800781 73.464844 400.769531 73.464844 399.496094 Z M 73.464844 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.554688 399.496094 C 65.554688 398.222656 64.523438 397.191406 63.25 397.191406 C 61.976562 397.191406 60.945312 398.222656 60.945312 399.496094 C 60.945312 400.769531 61.976562 401.800781 63.25 401.800781 C 64.523438 401.800781 65.554688 400.769531 65.554688 399.496094 Z M 65.554688 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.71875 399.496094 C 65.71875 398.222656 64.6875 397.191406 63.414062 397.191406 C 62.140625 397.191406 61.109375 398.222656 61.109375 399.496094 C 61.109375 400.769531 62.140625 401.800781 63.414062 401.800781 C 64.6875 401.800781 65.71875 400.769531 65.71875 399.496094 Z M 65.71875 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.46875 399.496094 C 75.46875 398.222656 74.4375 397.191406 73.164062 397.191406 C 71.890625 397.191406 70.859375 398.222656 70.859375 399.496094 C 70.859375 400.769531 71.890625 401.800781 73.164062 401.800781 C 74.4375 401.800781 75.46875 400.769531 75.46875 399.496094 Z M 75.46875 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.488281 399.496094 C 71.488281 398.222656 70.457031 397.191406 69.183594 397.191406 C 67.910156 397.191406 66.878906 398.222656 66.878906 399.496094 C 66.878906 400.769531 67.910156 401.800781 69.183594 401.800781 C 70.457031 401.800781 71.488281 400.769531 71.488281 399.496094 Z M 71.488281 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.210938 399.496094 C 65.210938 398.222656 64.179688 397.191406 62.90625 397.191406 C 61.632812 397.191406 60.601562 398.222656 60.601562 399.496094 C 60.601562 400.769531 61.632812 401.800781 62.90625 401.800781 C 64.179688 401.800781 65.210938 400.769531 65.210938 399.496094 Z M 65.210938 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.9375 399.496094 C 67.9375 398.222656 66.90625 397.191406 65.632812 397.191406 C 64.359375 397.191406 63.328125 398.222656 63.328125 399.496094 C 63.328125 400.769531 64.359375 401.800781 65.632812 401.800781 C 66.90625 401.800781 67.9375 400.769531 67.9375 399.496094 Z M 67.9375 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.761719 399.496094 C 70.761719 398.222656 69.730469 397.191406 68.457031 397.191406 C 67.183594 397.191406 66.152344 398.222656 66.152344 399.496094 C 66.152344 400.769531 67.183594 401.800781 68.457031 401.800781 C 69.730469 401.800781 70.761719 400.769531 70.761719 399.496094 Z M 70.761719 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.1875 399.496094 C 61.1875 398.222656 60.15625 397.191406 58.882812 397.191406 C 57.609375 397.191406 56.578125 398.222656 56.578125 399.496094 C 56.578125 400.769531 57.609375 401.800781 58.882812 401.800781 C 60.15625 401.800781 61.1875 400.769531 61.1875 399.496094 Z M 61.1875 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.183594 399.496094 C 69.183594 398.222656 68.152344 397.191406 66.878906 397.191406 C 65.605469 397.191406 64.574219 398.222656 64.574219 399.496094 C 64.574219 400.769531 65.605469 401.800781 66.878906 401.800781 C 68.152344 401.800781 69.183594 400.769531 69.183594 399.496094 Z M 69.183594 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.917969 399.496094 C 66.917969 398.222656 65.886719 397.191406 64.613281 397.191406 C 63.339844 397.191406 62.308594 398.222656 62.308594 399.496094 C 62.308594 400.769531 63.339844 401.800781 64.613281 401.800781 C 65.886719 401.800781 66.917969 400.769531 66.917969 399.496094 Z M 66.917969 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.839844 399.496094 C 62.839844 398.222656 61.808594 397.191406 60.535156 397.191406 C 59.261719 397.191406 58.230469 398.222656 58.230469 399.496094 C 58.230469 400.769531 59.261719 401.800781 60.535156 401.800781 C 61.808594 401.800781 62.839844 400.769531 62.839844 399.496094 Z M 62.839844 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.15625 399.496094 C 74.15625 398.222656 73.125 397.191406 71.851562 397.191406 C 70.578125 397.191406 69.546875 398.222656 69.546875 399.496094 C 69.546875 400.769531 70.578125 401.800781 71.851562 401.800781 C 73.125 401.800781 74.15625 400.769531 74.15625 399.496094 Z M 74.15625 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.136719 399.496094 C 71.136719 398.222656 70.105469 397.191406 68.832031 397.191406 C 67.558594 397.191406 66.527344 398.222656 66.527344 399.496094 C 66.527344 400.769531 67.558594 401.800781 68.832031 401.800781 C 70.105469 401.800781 71.136719 400.769531 71.136719 399.496094 Z M 71.136719 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.832031 399.496094 C 61.832031 398.222656 60.800781 397.191406 59.527344 397.191406 C 58.253906 397.191406 57.222656 398.222656 57.222656 399.496094 C 57.222656 400.769531 58.253906 401.800781 59.527344 401.800781 C 60.800781 401.800781 61.832031 400.769531 61.832031 399.496094 Z M 61.832031 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.125 399.496094 C 64.125 398.222656 63.09375 397.191406 61.820312 397.191406 C 60.546875 397.191406 59.515625 398.222656 59.515625 399.496094 C 59.515625 400.769531 60.546875 401.800781 61.820312 401.800781 C 63.09375 401.800781 64.125 400.769531 64.125 399.496094 Z M 64.125 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69 399.496094 C 69 398.222656 67.96875 397.191406 66.695312 397.191406 C 65.421875 397.191406 64.390625 398.222656 64.390625 399.496094 C 64.390625 400.769531 65.421875 401.800781 66.695312 401.800781 C 67.96875 401.800781 69 400.769531 69 399.496094 Z M 69 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.230469 399.496094 C 61.230469 398.222656 60.199219 397.191406 58.925781 397.191406 C 57.652344 397.191406 56.621094 398.222656 56.621094 399.496094 C 56.621094 400.769531 57.652344 401.800781 58.925781 401.800781 C 60.199219 401.800781 61.230469 400.769531 61.230469 399.496094 Z M 61.230469 399.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.0625 394.652344 C 75.0625 393.378906 74.03125 392.347656 72.757812 392.347656 C 71.484375 392.347656 70.453125 393.378906 70.453125 394.652344 C 70.453125 395.925781 71.484375 396.957031 72.757812 396.957031 C 74.03125 396.957031 75.0625 395.925781 75.0625 394.652344 Z M 75.0625 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.886719 394.652344 C 66.886719 393.378906 65.855469 392.347656 64.582031 392.347656 C 63.308594 392.347656 62.277344 393.378906 62.277344 394.652344 C 62.277344 395.925781 63.308594 396.957031 64.582031 396.957031 C 65.855469 396.957031 66.886719 395.925781 66.886719 394.652344 Z M 66.886719 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.878906 394.652344 C 71.878906 393.378906 70.847656 392.347656 69.574219 392.347656 C 68.300781 392.347656 67.269531 393.378906 67.269531 394.652344 C 67.269531 395.925781 68.300781 396.957031 69.574219 396.957031 C 70.847656 396.957031 71.878906 395.925781 71.878906 394.652344 Z M 71.878906 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.359375 394.652344 C 67.359375 393.378906 66.328125 392.347656 65.054688 392.347656 C 63.78125 392.347656 62.75 393.378906 62.75 394.652344 C 62.75 395.925781 63.78125 396.957031 65.054688 396.957031 C 66.328125 396.957031 67.359375 395.925781 67.359375 394.652344 Z M 67.359375 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.808594 394.652344 C 68.808594 393.378906 67.777344 392.347656 66.503906 392.347656 C 65.230469 392.347656 64.199219 393.378906 64.199219 394.652344 C 64.199219 395.925781 65.230469 396.957031 66.503906 396.957031 C 67.777344 396.957031 68.808594 395.925781 68.808594 394.652344 Z M 68.808594 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.878906 394.652344 C 70.878906 393.378906 69.847656 392.347656 68.574219 392.347656 C 67.300781 392.347656 66.269531 393.378906 66.269531 394.652344 C 66.269531 395.925781 67.300781 396.957031 68.574219 396.957031 C 69.847656 396.957031 70.878906 395.925781 70.878906 394.652344 Z M 70.878906 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72 394.652344 C 72 393.378906 70.96875 392.347656 69.695312 392.347656 C 68.421875 392.347656 67.390625 393.378906 67.390625 394.652344 C 67.390625 395.925781 68.421875 396.957031 69.695312 396.957031 C 70.96875 396.957031 72 395.925781 72 394.652344 Z M 72 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.273438 394.652344 C 68.273438 393.378906 67.242188 392.347656 65.96875 392.347656 C 64.695312 392.347656 63.664062 393.378906 63.664062 394.652344 C 63.664062 395.925781 64.695312 396.957031 65.96875 396.957031 C 67.242188 396.957031 68.273438 395.925781 68.273438 394.652344 Z M 68.273438 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.972656 394.652344 C 75.972656 393.378906 74.941406 392.347656 73.667969 392.347656 C 72.394531 392.347656 71.363281 393.378906 71.363281 394.652344 C 71.363281 395.925781 72.394531 396.957031 73.667969 396.957031 C 74.941406 396.957031 75.972656 395.925781 75.972656 394.652344 Z M 75.972656 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.605469 394.652344 C 71.605469 393.378906 70.574219 392.347656 69.300781 392.347656 C 68.027344 392.347656 66.996094 393.378906 66.996094 394.652344 C 66.996094 395.925781 68.027344 396.957031 69.300781 396.957031 C 70.574219 396.957031 71.605469 395.925781 71.605469 394.652344 Z M 71.605469 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.199219 394.652344 C 66.199219 393.378906 65.167969 392.347656 63.894531 392.347656 C 62.621094 392.347656 61.589844 393.378906 61.589844 394.652344 C 61.589844 395.925781 62.621094 396.957031 63.894531 396.957031 C 65.167969 396.957031 66.199219 395.925781 66.199219 394.652344 Z M 66.199219 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.503906 394.652344 C 71.503906 393.378906 70.472656 392.347656 69.199219 392.347656 C 67.925781 392.347656 66.894531 393.378906 66.894531 394.652344 C 66.894531 395.925781 67.925781 396.957031 69.199219 396.957031 C 70.472656 396.957031 71.503906 395.925781 71.503906 394.652344 Z M 71.503906 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.90625 394.652344 C 74.90625 393.378906 73.875 392.347656 72.601562 392.347656 C 71.328125 392.347656 70.296875 393.378906 70.296875 394.652344 C 70.296875 395.925781 71.328125 396.957031 72.601562 396.957031 C 73.875 396.957031 74.90625 395.925781 74.90625 394.652344 Z M 74.90625 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.222656 394.652344 C 69.222656 393.378906 68.191406 392.347656 66.917969 392.347656 C 65.644531 392.347656 64.613281 393.378906 64.613281 394.652344 C 64.613281 395.925781 65.644531 396.957031 66.917969 396.957031 C 68.191406 396.957031 69.222656 395.925781 69.222656 394.652344 Z M 69.222656 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.339844 394.652344 C 69.339844 393.378906 68.308594 392.347656 67.035156 392.347656 C 65.761719 392.347656 64.730469 393.378906 64.730469 394.652344 C 64.730469 395.925781 65.761719 396.957031 67.035156 396.957031 C 68.308594 396.957031 69.339844 395.925781 69.339844 394.652344 Z M 69.339844 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.34375 394.652344 C 76.34375 393.378906 75.3125 392.347656 74.039062 392.347656 C 72.765625 392.347656 71.734375 393.378906 71.734375 394.652344 C 71.734375 395.925781 72.765625 396.957031 74.039062 396.957031 C 75.3125 396.957031 76.34375 395.925781 76.34375 394.652344 Z M 76.34375 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.484375 394.652344 C 73.484375 393.378906 72.453125 392.347656 71.179688 392.347656 C 69.90625 392.347656 68.875 393.378906 68.875 394.652344 C 68.875 395.925781 69.90625 396.957031 71.179688 396.957031 C 72.453125 396.957031 73.484375 395.925781 73.484375 394.652344 Z M 73.484375 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.980469 394.652344 C 68.980469 393.378906 67.949219 392.347656 66.675781 392.347656 C 65.402344 392.347656 64.371094 393.378906 64.371094 394.652344 C 64.371094 395.925781 65.402344 396.957031 66.675781 396.957031 C 67.949219 396.957031 68.980469 395.925781 68.980469 394.652344 Z M 68.980469 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.9375 394.652344 C 70.9375 393.378906 69.90625 392.347656 68.632812 392.347656 C 67.359375 392.347656 66.328125 393.378906 66.328125 394.652344 C 66.328125 395.925781 67.359375 396.957031 68.632812 396.957031 C 69.90625 396.957031 70.9375 395.925781 70.9375 394.652344 Z M 70.9375 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.964844 394.652344 C 72.964844 393.378906 71.933594 392.347656 70.660156 392.347656 C 69.386719 392.347656 68.355469 393.378906 68.355469 394.652344 C 68.355469 395.925781 69.386719 396.957031 70.660156 396.957031 C 71.933594 396.957031 72.964844 395.925781 72.964844 394.652344 Z M 72.964844 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.089844 394.652344 C 66.089844 393.378906 65.058594 392.347656 63.785156 392.347656 C 62.511719 392.347656 61.480469 393.378906 61.480469 394.652344 C 61.480469 395.925781 62.511719 396.957031 63.785156 396.957031 C 65.058594 396.957031 66.089844 395.925781 66.089844 394.652344 Z M 66.089844 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.832031 394.652344 C 71.832031 393.378906 70.800781 392.347656 69.527344 392.347656 C 68.253906 392.347656 67.222656 393.378906 67.222656 394.652344 C 67.222656 395.925781 68.253906 396.957031 69.527344 396.957031 C 70.800781 396.957031 71.832031 395.925781 71.832031 394.652344 Z M 71.832031 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.203125 394.652344 C 70.203125 393.378906 69.171875 392.347656 67.898438 392.347656 C 66.625 392.347656 65.59375 393.378906 65.59375 394.652344 C 65.59375 395.925781 66.625 396.957031 67.898438 396.957031 C 69.171875 396.957031 70.203125 395.925781 70.203125 394.652344 Z M 70.203125 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.277344 394.652344 C 67.277344 393.378906 66.246094 392.347656 64.972656 392.347656 C 63.699219 392.347656 62.667969 393.378906 62.667969 394.652344 C 62.667969 395.925781 63.699219 396.957031 64.972656 396.957031 C 66.246094 396.957031 67.277344 395.925781 67.277344 394.652344 Z M 67.277344 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.402344 394.652344 C 75.402344 393.378906 74.371094 392.347656 73.097656 392.347656 C 71.824219 392.347656 70.792969 393.378906 70.792969 394.652344 C 70.792969 395.925781 71.824219 396.957031 73.097656 396.957031 C 74.371094 396.957031 75.402344 395.925781 75.402344 394.652344 Z M 75.402344 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.234375 394.652344 C 73.234375 393.378906 72.203125 392.347656 70.929688 392.347656 C 69.65625 392.347656 68.625 393.378906 68.625 394.652344 C 68.625 395.925781 69.65625 396.957031 70.929688 396.957031 C 72.203125 396.957031 73.234375 395.925781 73.234375 394.652344 Z M 73.234375 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.550781 394.652344 C 66.550781 393.378906 65.519531 392.347656 64.246094 392.347656 C 62.972656 392.347656 61.941406 393.378906 61.941406 394.652344 C 61.941406 395.925781 62.972656 396.957031 64.246094 396.957031 C 65.519531 396.957031 66.550781 395.925781 66.550781 394.652344 Z M 66.550781 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.199219 394.652344 C 68.199219 393.378906 67.167969 392.347656 65.894531 392.347656 C 64.621094 392.347656 63.589844 393.378906 63.589844 394.652344 C 63.589844 395.925781 64.621094 396.957031 65.894531 396.957031 C 67.167969 396.957031 68.199219 395.925781 68.199219 394.652344 Z M 68.199219 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.699219 394.652344 C 71.699219 393.378906 70.667969 392.347656 69.394531 392.347656 C 68.121094 392.347656 67.089844 393.378906 67.089844 394.652344 C 67.089844 395.925781 68.121094 396.957031 69.394531 396.957031 C 70.667969 396.957031 71.699219 395.925781 71.699219 394.652344 Z M 71.699219 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.117188 394.652344 C 66.117188 393.378906 65.085938 392.347656 63.8125 392.347656 C 62.539062 392.347656 61.507812 393.378906 61.507812 394.652344 C 61.507812 395.925781 62.539062 396.957031 63.8125 396.957031 C 65.085938 396.957031 66.117188 395.925781 66.117188 394.652344 Z M 66.117188 394.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.234375 389.808594 C 76.234375 388.535156 75.203125 387.503906 73.929688 387.503906 C 72.65625 387.503906 71.625 388.535156 71.625 389.808594 C 71.625 391.082031 72.65625 392.113281 73.929688 392.113281 C 75.203125 392.113281 76.234375 391.082031 76.234375 389.808594 Z M 76.234375 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.351562 389.808594 C 71.351562 388.535156 70.320312 387.503906 69.046875 387.503906 C 67.773438 387.503906 66.742188 388.535156 66.742188 389.808594 C 66.742188 391.082031 67.773438 392.113281 69.046875 392.113281 C 70.320312 392.113281 71.351562 391.082031 71.351562 389.808594 Z M 71.351562 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.332031 389.808594 C 74.332031 388.535156 73.300781 387.503906 72.027344 387.503906 C 70.753906 387.503906 69.722656 388.535156 69.722656 389.808594 C 69.722656 391.082031 70.753906 392.113281 72.027344 392.113281 C 73.300781 392.113281 74.332031 391.082031 74.332031 389.808594 Z M 74.332031 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.632812 389.808594 C 71.632812 388.535156 70.601562 387.503906 69.328125 387.503906 C 68.054688 387.503906 67.023438 388.535156 67.023438 389.808594 C 67.023438 391.082031 68.054688 392.113281 69.328125 392.113281 C 70.601562 392.113281 71.632812 391.082031 71.632812 389.808594 Z M 71.632812 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.5 389.808594 C 72.5 388.535156 71.46875 387.503906 70.195312 387.503906 C 68.921875 387.503906 67.890625 388.535156 67.890625 389.808594 C 67.890625 391.082031 68.921875 392.113281 70.195312 392.113281 C 71.46875 392.113281 72.5 391.082031 72.5 389.808594 Z M 72.5 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.738281 389.808594 C 73.738281 388.535156 72.707031 387.503906 71.433594 387.503906 C 70.160156 387.503906 69.128906 388.535156 69.128906 389.808594 C 69.128906 391.082031 70.160156 392.113281 71.433594 392.113281 C 72.707031 392.113281 73.738281 391.082031 73.738281 389.808594 Z M 73.738281 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.40625 389.808594 C 74.40625 388.535156 73.375 387.503906 72.101562 387.503906 C 70.828125 387.503906 69.796875 388.535156 69.796875 389.808594 C 69.796875 391.082031 70.828125 392.113281 72.101562 392.113281 C 73.375 392.113281 74.40625 391.082031 74.40625 389.808594 Z M 74.40625 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.179688 389.808594 C 72.179688 388.535156 71.148438 387.503906 69.875 387.503906 C 68.601562 387.503906 67.570312 388.535156 67.570312 389.808594 C 67.570312 391.082031 68.601562 392.113281 69.875 392.113281 C 71.148438 392.113281 72.179688 391.082031 72.179688 389.808594 Z M 72.179688 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.78125 389.808594 C 76.78125 388.535156 75.75 387.503906 74.476562 387.503906 C 73.203125 387.503906 72.171875 388.535156 72.171875 389.808594 C 72.171875 391.082031 73.203125 392.113281 74.476562 392.113281 C 75.75 392.113281 76.78125 391.082031 76.78125 389.808594 Z M 76.78125 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.167969 389.808594 C 74.167969 388.535156 73.136719 387.503906 71.863281 387.503906 C 70.589844 387.503906 69.558594 388.535156 69.558594 389.808594 C 69.558594 391.082031 70.589844 392.113281 71.863281 392.113281 C 73.136719 392.113281 74.167969 391.082031 74.167969 389.808594 Z M 74.167969 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.941406 389.808594 C 70.941406 388.535156 69.910156 387.503906 68.636719 387.503906 C 67.363281 387.503906 66.332031 388.535156 66.332031 389.808594 C 66.332031 391.082031 67.363281 392.113281 68.636719 392.113281 C 69.910156 392.113281 70.941406 391.082031 70.941406 389.808594 Z M 70.941406 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.109375 389.808594 C 74.109375 388.535156 73.078125 387.503906 71.804688 387.503906 C 70.53125 387.503906 69.5 388.535156 69.5 389.808594 C 69.5 391.082031 70.53125 392.113281 71.804688 392.113281 C 73.078125 392.113281 74.109375 391.082031 74.109375 389.808594 Z M 74.109375 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.140625 389.808594 C 76.140625 388.535156 75.109375 387.503906 73.835938 387.503906 C 72.5625 387.503906 71.53125 388.535156 71.53125 389.808594 C 71.53125 391.082031 72.5625 392.113281 73.835938 392.113281 C 75.109375 392.113281 76.140625 391.082031 76.140625 389.808594 Z M 76.140625 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.746094 389.808594 C 72.746094 388.535156 71.714844 387.503906 70.441406 387.503906 C 69.167969 387.503906 68.136719 388.535156 68.136719 389.808594 C 68.136719 391.082031 69.167969 392.113281 70.441406 392.113281 C 71.714844 392.113281 72.746094 391.082031 72.746094 389.808594 Z M 72.746094 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.816406 389.808594 C 72.816406 388.535156 71.785156 387.503906 70.511719 387.503906 C 69.238281 387.503906 68.207031 388.535156 68.207031 389.808594 C 68.207031 391.082031 69.238281 392.113281 70.511719 392.113281 C 71.785156 392.113281 72.816406 391.082031 72.816406 389.808594 Z M 72.816406 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77 389.808594 C 77 388.535156 75.96875 387.503906 74.695312 387.503906 C 73.421875 387.503906 72.390625 388.535156 72.390625 389.808594 C 72.390625 391.082031 73.421875 392.113281 74.695312 392.113281 C 75.96875 392.113281 77 391.082031 77 389.808594 Z M 77 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.292969 389.808594 C 75.292969 388.535156 74.261719 387.503906 72.988281 387.503906 C 71.714844 387.503906 70.683594 388.535156 70.683594 389.808594 C 70.683594 391.082031 71.714844 392.113281 72.988281 392.113281 C 74.261719 392.113281 75.292969 391.082031 75.292969 389.808594 Z M 75.292969 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.601562 389.808594 C 72.601562 388.535156 71.570312 387.503906 70.296875 387.503906 C 69.023438 387.503906 67.992188 388.535156 67.992188 389.808594 C 67.992188 391.082031 69.023438 392.113281 70.296875 392.113281 C 71.570312 392.113281 72.601562 391.082031 72.601562 389.808594 Z M 72.601562 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.769531 389.808594 C 73.769531 388.535156 72.738281 387.503906 71.464844 387.503906 C 70.191406 387.503906 69.160156 388.535156 69.160156 389.808594 C 69.160156 391.082031 70.191406 392.113281 71.464844 392.113281 C 72.738281 392.113281 73.769531 391.082031 73.769531 389.808594 Z M 73.769531 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.980469 389.808594 C 74.980469 388.535156 73.949219 387.503906 72.675781 387.503906 C 71.402344 387.503906 70.371094 388.535156 70.371094 389.808594 C 70.371094 391.082031 71.402344 392.113281 72.675781 392.113281 C 73.949219 392.113281 74.980469 391.082031 74.980469 389.808594 Z M 74.980469 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.875 389.808594 C 70.875 388.535156 69.84375 387.503906 68.570312 387.503906 C 67.296875 387.503906 66.265625 388.535156 66.265625 389.808594 C 66.265625 391.082031 67.296875 392.113281 68.570312 392.113281 C 69.84375 392.113281 70.875 391.082031 70.875 389.808594 Z M 70.875 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.304688 389.808594 C 74.304688 388.535156 73.273438 387.503906 72 387.503906 C 70.726562 387.503906 69.695312 388.535156 69.695312 389.808594 C 69.695312 391.082031 70.726562 392.113281 72 392.113281 C 73.273438 392.113281 74.304688 391.082031 74.304688 389.808594 Z M 74.304688 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.332031 389.808594 C 73.332031 388.535156 72.300781 387.503906 71.027344 387.503906 C 69.753906 387.503906 68.722656 388.535156 68.722656 389.808594 C 68.722656 391.082031 69.753906 392.113281 71.027344 392.113281 C 72.300781 392.113281 73.332031 391.082031 73.332031 389.808594 Z M 73.332031 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.582031 389.808594 C 71.582031 388.535156 70.550781 387.503906 69.277344 387.503906 C 68.003906 387.503906 66.972656 388.535156 66.972656 389.808594 C 66.972656 391.082031 68.003906 392.113281 69.277344 392.113281 C 70.550781 392.113281 71.582031 391.082031 71.582031 389.808594 Z M 71.582031 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.4375 389.808594 C 76.4375 388.535156 75.40625 387.503906 74.132812 387.503906 C 72.859375 387.503906 71.828125 388.535156 71.828125 389.808594 C 71.828125 391.082031 72.859375 392.113281 74.132812 392.113281 C 75.40625 392.113281 76.4375 391.082031 76.4375 389.808594 Z M 76.4375 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.140625 389.808594 C 75.140625 388.535156 74.109375 387.503906 72.835938 387.503906 C 71.5625 387.503906 70.53125 388.535156 70.53125 389.808594 C 70.53125 391.082031 71.5625 392.113281 72.835938 392.113281 C 74.109375 392.113281 75.140625 391.082031 75.140625 389.808594 Z M 75.140625 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.152344 389.808594 C 71.152344 388.535156 70.121094 387.503906 68.847656 387.503906 C 67.574219 387.503906 66.542969 388.535156 66.542969 389.808594 C 66.542969 391.082031 67.574219 392.113281 68.847656 392.113281 C 70.121094 392.113281 71.152344 391.082031 71.152344 389.808594 Z M 71.152344 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.136719 389.808594 C 72.136719 388.535156 71.105469 387.503906 69.832031 387.503906 C 68.558594 387.503906 67.527344 388.535156 67.527344 389.808594 C 67.527344 391.082031 68.558594 392.113281 69.832031 392.113281 C 71.105469 392.113281 72.136719 391.082031 72.136719 389.808594 Z M 72.136719 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.226562 389.808594 C 74.226562 388.535156 73.195312 387.503906 71.921875 387.503906 C 70.648438 387.503906 69.617188 388.535156 69.617188 389.808594 C 69.617188 391.082031 70.648438 392.113281 71.921875 392.113281 C 73.195312 392.113281 74.226562 391.082031 74.226562 389.808594 Z M 74.226562 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.890625 389.808594 C 70.890625 388.535156 69.859375 387.503906 68.585938 387.503906 C 67.3125 387.503906 66.28125 388.535156 66.28125 389.808594 C 66.28125 391.082031 67.3125 392.113281 68.585938 392.113281 C 69.859375 392.113281 70.890625 391.082031 70.890625 389.808594 Z M 70.890625 389.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.191406 384.964844 C 77.191406 383.691406 76.160156 382.660156 74.886719 382.660156 C 73.613281 382.660156 72.582031 383.691406 72.582031 384.964844 C 72.582031 386.238281 73.613281 387.269531 74.886719 387.269531 C 76.160156 387.269531 77.191406 386.238281 77.191406 384.964844 Z M 77.191406 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.644531 384.964844 C 75.644531 383.691406 74.613281 382.660156 73.339844 382.660156 C 72.066406 382.660156 71.035156 383.691406 71.035156 384.964844 C 71.035156 386.238281 72.066406 387.269531 73.339844 387.269531 C 74.613281 387.269531 75.644531 386.238281 75.644531 384.964844 Z M 75.644531 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.589844 384.964844 C 76.589844 383.691406 75.558594 382.660156 74.285156 382.660156 C 73.011719 382.660156 71.980469 383.691406 71.980469 384.964844 C 71.980469 386.238281 73.011719 387.269531 74.285156 387.269531 C 75.558594 387.269531 76.589844 386.238281 76.589844 384.964844 Z M 76.589844 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.734375 384.964844 C 75.734375 383.691406 74.703125 382.660156 73.429688 382.660156 C 72.15625 382.660156 71.125 383.691406 71.125 384.964844 C 71.125 386.238281 72.15625 387.269531 73.429688 387.269531 C 74.703125 387.269531 75.734375 386.238281 75.734375 384.964844 Z M 75.734375 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.007812 384.964844 C 76.007812 383.691406 74.976562 382.660156 73.703125 382.660156 C 72.429688 382.660156 71.398438 383.691406 71.398438 384.964844 C 71.398438 386.238281 72.429688 387.269531 73.703125 387.269531 C 74.976562 387.269531 76.007812 386.238281 76.007812 384.964844 Z M 76.007812 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.402344 384.964844 C 76.402344 383.691406 75.371094 382.660156 74.097656 382.660156 C 72.824219 382.660156 71.792969 383.691406 71.792969 384.964844 C 71.792969 386.238281 72.824219 387.269531 74.097656 387.269531 C 75.371094 387.269531 76.402344 386.238281 76.402344 384.964844 Z M 76.402344 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.613281 384.964844 C 76.613281 383.691406 75.582031 382.660156 74.308594 382.660156 C 73.035156 382.660156 72.003906 383.691406 72.003906 384.964844 C 72.003906 386.238281 73.035156 387.269531 74.308594 387.269531 C 75.582031 387.269531 76.613281 386.238281 76.613281 384.964844 Z M 76.613281 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.90625 384.964844 C 75.90625 383.691406 74.875 382.660156 73.601562 382.660156 C 72.328125 382.660156 71.296875 383.691406 71.296875 384.964844 C 71.296875 386.238281 72.328125 387.269531 73.601562 387.269531 C 74.875 387.269531 75.90625 386.238281 75.90625 384.964844 Z M 75.90625 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.363281 384.964844 C 77.363281 383.691406 76.332031 382.660156 75.058594 382.660156 C 73.785156 382.660156 72.753906 383.691406 72.753906 384.964844 C 72.753906 386.238281 73.785156 387.269531 75.058594 387.269531 C 76.332031 387.269531 77.363281 386.238281 77.363281 384.964844 Z M 77.363281 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.539062 384.964844 C 76.539062 383.691406 75.507812 382.660156 74.234375 382.660156 C 72.960938 382.660156 71.929688 383.691406 71.929688 384.964844 C 71.929688 386.238281 72.960938 387.269531 74.234375 387.269531 C 75.507812 387.269531 76.539062 386.238281 76.539062 384.964844 Z M 76.539062 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.515625 384.964844 C 75.515625 383.691406 74.484375 382.660156 73.210938 382.660156 C 71.9375 382.660156 70.90625 383.691406 70.90625 384.964844 C 70.90625 386.238281 71.9375 387.269531 73.210938 387.269531 C 74.484375 387.269531 75.515625 386.238281 75.515625 384.964844 Z M 75.515625 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.519531 384.964844 C 76.519531 383.691406 75.488281 382.660156 74.214844 382.660156 C 72.941406 382.660156 71.910156 383.691406 71.910156 384.964844 C 71.910156 386.238281 72.941406 387.269531 74.214844 387.269531 C 75.488281 387.269531 76.519531 386.238281 76.519531 384.964844 Z M 76.519531 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.160156 384.964844 C 77.160156 383.691406 76.128906 382.660156 74.855469 382.660156 C 73.582031 382.660156 72.550781 383.691406 72.550781 384.964844 C 72.550781 386.238281 73.582031 387.269531 74.855469 387.269531 C 76.128906 387.269531 77.160156 386.238281 77.160156 384.964844 Z M 77.160156 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.085938 384.964844 C 76.085938 383.691406 75.054688 382.660156 73.78125 382.660156 C 72.507812 382.660156 71.476562 383.691406 71.476562 384.964844 C 71.476562 386.238281 72.507812 387.269531 73.78125 387.269531 C 75.054688 387.269531 76.085938 386.238281 76.085938 384.964844 Z M 76.085938 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.109375 384.964844 C 76.109375 383.691406 75.078125 382.660156 73.804688 382.660156 C 72.53125 382.660156 71.5 383.691406 71.5 384.964844 C 71.5 386.238281 72.53125 387.269531 73.804688 387.269531 C 75.078125 387.269531 76.109375 386.238281 76.109375 384.964844 Z M 76.109375 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.433594 384.964844 C 77.433594 383.691406 76.402344 382.660156 75.128906 382.660156 C 73.855469 382.660156 72.824219 383.691406 72.824219 384.964844 C 72.824219 386.238281 73.855469 387.269531 75.128906 387.269531 C 76.402344 387.269531 77.433594 386.238281 77.433594 384.964844 Z M 77.433594 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.890625 384.964844 C 76.890625 383.691406 75.859375 382.660156 74.585938 382.660156 C 73.3125 382.660156 72.28125 383.691406 72.28125 384.964844 C 72.28125 386.238281 73.3125 387.269531 74.585938 387.269531 C 75.859375 387.269531 76.890625 386.238281 76.890625 384.964844 Z M 76.890625 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.042969 384.964844 C 76.042969 383.691406 75.011719 382.660156 73.738281 382.660156 C 72.464844 382.660156 71.433594 383.691406 71.433594 384.964844 C 71.433594 386.238281 72.464844 387.269531 73.738281 387.269531 C 75.011719 387.269531 76.042969 386.238281 76.042969 384.964844 Z M 76.042969 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.410156 384.964844 C 76.410156 383.691406 75.378906 382.660156 74.105469 382.660156 C 72.832031 382.660156 71.800781 383.691406 71.800781 384.964844 C 71.800781 386.238281 72.832031 387.269531 74.105469 387.269531 C 75.378906 387.269531 76.410156 386.238281 76.410156 384.964844 Z M 76.410156 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.792969 384.964844 C 76.792969 383.691406 75.761719 382.660156 74.488281 382.660156 C 73.214844 382.660156 72.183594 383.691406 72.183594 384.964844 C 72.183594 386.238281 73.214844 387.269531 74.488281 387.269531 C 75.761719 387.269531 76.792969 386.238281 76.792969 384.964844 Z M 76.792969 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.496094 384.964844 C 75.496094 383.691406 74.464844 382.660156 73.191406 382.660156 C 71.917969 382.660156 70.886719 383.691406 70.886719 384.964844 C 70.886719 386.238281 71.917969 387.269531 73.191406 387.269531 C 74.464844 387.269531 75.496094 386.238281 75.496094 384.964844 Z M 75.496094 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.578125 384.964844 C 76.578125 383.691406 75.546875 382.660156 74.273438 382.660156 C 73 382.660156 71.96875 383.691406 71.96875 384.964844 C 71.96875 386.238281 73 387.269531 74.273438 387.269531 C 75.546875 387.269531 76.578125 386.238281 76.578125 384.964844 Z M 76.578125 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.273438 384.964844 C 76.273438 383.691406 75.242188 382.660156 73.96875 382.660156 C 72.695312 382.660156 71.664062 383.691406 71.664062 384.964844 C 71.664062 386.238281 72.695312 387.269531 73.96875 387.269531 C 75.242188 387.269531 76.273438 386.238281 76.273438 384.964844 Z M 76.273438 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.71875 384.964844 C 75.71875 383.691406 74.6875 382.660156 73.414062 382.660156 C 72.140625 382.660156 71.109375 383.691406 71.109375 384.964844 C 71.109375 386.238281 72.140625 387.269531 73.414062 387.269531 C 74.6875 387.269531 75.71875 386.238281 75.71875 384.964844 Z M 75.71875 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.253906 384.964844 C 77.253906 383.691406 76.222656 382.660156 74.949219 382.660156 C 73.675781 382.660156 72.644531 383.691406 72.644531 384.964844 C 72.644531 386.238281 73.675781 387.269531 74.949219 387.269531 C 76.222656 387.269531 77.253906 386.238281 77.253906 384.964844 Z M 77.253906 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.84375 384.964844 C 76.84375 383.691406 75.8125 382.660156 74.539062 382.660156 C 73.265625 382.660156 72.234375 383.691406 72.234375 384.964844 C 72.234375 386.238281 73.265625 387.269531 74.539062 387.269531 C 75.8125 387.269531 76.84375 386.238281 76.84375 384.964844 Z M 76.84375 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.582031 384.964844 C 75.582031 383.691406 74.550781 382.660156 73.277344 382.660156 C 72.003906 382.660156 70.972656 383.691406 70.972656 384.964844 C 70.972656 386.238281 72.003906 387.269531 73.277344 387.269531 C 74.550781 387.269531 75.582031 386.238281 75.582031 384.964844 Z M 75.582031 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.894531 384.964844 C 75.894531 383.691406 74.863281 382.660156 73.589844 382.660156 C 72.316406 382.660156 71.285156 383.691406 71.285156 384.964844 C 71.285156 386.238281 72.316406 387.269531 73.589844 387.269531 C 74.863281 387.269531 75.894531 386.238281 75.894531 384.964844 Z M 75.894531 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.554688 384.964844 C 76.554688 383.691406 75.523438 382.660156 74.25 382.660156 C 72.976562 382.660156 71.945312 383.691406 71.945312 384.964844 C 71.945312 386.238281 72.976562 387.269531 74.25 387.269531 C 75.523438 387.269531 76.554688 386.238281 76.554688 384.964844 Z M 76.554688 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.5 384.964844 C 75.5 383.691406 74.46875 382.660156 73.195312 382.660156 C 71.921875 382.660156 70.890625 383.691406 70.890625 384.964844 C 70.890625 386.238281 71.921875 387.269531 73.195312 387.269531 C 74.46875 387.269531 75.5 386.238281 75.5 384.964844 Z M 75.5 384.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.917969 380.121094 C 77.917969 378.847656 76.886719 377.816406 75.613281 377.816406 C 74.339844 377.816406 73.308594 378.847656 73.308594 380.121094 C 73.308594 381.394531 74.339844 382.425781 75.613281 382.425781 C 76.886719 382.425781 77.917969 381.394531 77.917969 380.121094 Z M 77.917969 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.730469 380.121094 C 79.730469 378.847656 78.699219 377.816406 77.425781 377.816406 C 76.152344 377.816406 75.121094 378.847656 75.121094 380.121094 C 75.121094 381.394531 76.152344 382.425781 77.425781 382.425781 C 78.699219 382.425781 79.730469 381.394531 79.730469 380.121094 Z M 79.730469 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.625 380.121094 C 78.625 378.847656 77.59375 377.816406 76.320312 377.816406 C 75.046875 377.816406 74.015625 378.847656 74.015625 380.121094 C 74.015625 381.394531 75.046875 382.425781 76.320312 382.425781 C 77.59375 382.425781 78.625 381.394531 78.625 380.121094 Z M 78.625 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.625 380.121094 C 79.625 378.847656 78.59375 377.816406 77.320312 377.816406 C 76.046875 377.816406 75.015625 378.847656 75.015625 380.121094 C 75.015625 381.394531 76.046875 382.425781 77.320312 382.425781 C 78.59375 382.425781 79.625 381.394531 79.625 380.121094 Z M 79.625 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.304688 380.121094 C 79.304688 378.847656 78.273438 377.816406 77 377.816406 C 75.726562 377.816406 74.695312 378.847656 74.695312 380.121094 C 74.695312 381.394531 75.726562 382.425781 77 382.425781 C 78.273438 382.425781 79.304688 381.394531 79.304688 380.121094 Z M 79.304688 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.84375 380.121094 C 78.84375 378.847656 77.8125 377.816406 76.539062 377.816406 C 75.265625 377.816406 74.234375 378.847656 74.234375 380.121094 C 74.234375 381.394531 75.265625 382.425781 76.539062 382.425781 C 77.8125 382.425781 78.84375 381.394531 78.84375 380.121094 Z M 78.84375 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.597656 380.121094 C 78.597656 378.847656 77.566406 377.816406 76.292969 377.816406 C 75.019531 377.816406 73.988281 378.847656 73.988281 380.121094 C 73.988281 381.394531 75.019531 382.425781 76.292969 382.425781 C 77.566406 382.425781 78.597656 381.394531 78.597656 380.121094 Z M 78.597656 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.421875 380.121094 C 79.421875 378.847656 78.390625 377.816406 77.117188 377.816406 C 75.84375 377.816406 74.8125 378.847656 74.8125 380.121094 C 74.8125 381.394531 75.84375 382.425781 77.117188 382.425781 C 78.390625 382.425781 79.421875 381.394531 79.421875 380.121094 Z M 79.421875 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.71875 380.121094 C 77.71875 378.847656 76.6875 377.816406 75.414062 377.816406 C 74.140625 377.816406 73.109375 378.847656 73.109375 380.121094 C 73.109375 381.394531 74.140625 382.425781 75.414062 382.425781 C 76.6875 382.425781 77.71875 381.394531 77.71875 380.121094 Z M 77.71875 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.683594 380.121094 C 78.683594 378.847656 77.652344 377.816406 76.378906 377.816406 C 75.105469 377.816406 74.074219 378.847656 74.074219 380.121094 C 74.074219 381.394531 75.105469 382.425781 76.378906 382.425781 C 77.652344 382.425781 78.683594 381.394531 78.683594 380.121094 Z M 78.683594 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.882812 380.121094 C 79.882812 378.847656 78.851562 377.816406 77.578125 377.816406 C 76.304688 377.816406 75.273438 378.847656 75.273438 380.121094 C 75.273438 381.394531 76.304688 382.425781 77.578125 382.425781 C 78.851562 382.425781 79.882812 381.394531 79.882812 380.121094 Z M 79.882812 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.707031 380.121094 C 78.707031 378.847656 77.675781 377.816406 76.402344 377.816406 C 75.128906 377.816406 74.097656 378.847656 74.097656 380.121094 C 74.097656 381.394531 75.128906 382.425781 76.402344 382.425781 C 77.675781 382.425781 78.707031 381.394531 78.707031 380.121094 Z M 78.707031 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.953125 380.121094 C 77.953125 378.847656 76.921875 377.816406 75.648438 377.816406 C 74.375 377.816406 73.34375 378.847656 73.34375 380.121094 C 73.34375 381.394531 74.375 382.425781 75.648438 382.425781 C 76.921875 382.425781 77.953125 381.394531 77.953125 380.121094 Z M 77.953125 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.210938 380.121094 C 79.210938 378.847656 78.179688 377.816406 76.90625 377.816406 C 75.632812 377.816406 74.601562 378.847656 74.601562 380.121094 C 74.601562 381.394531 75.632812 382.425781 76.90625 382.425781 C 78.179688 382.425781 79.210938 381.394531 79.210938 380.121094 Z M 79.210938 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.1875 380.121094 C 79.1875 378.847656 78.15625 377.816406 76.882812 377.816406 C 75.609375 377.816406 74.578125 378.847656 74.578125 380.121094 C 74.578125 381.394531 75.609375 382.425781 76.882812 382.425781 C 78.15625 382.425781 79.1875 381.394531 79.1875 380.121094 Z M 79.1875 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.636719 380.121094 C 77.636719 378.847656 76.605469 377.816406 75.332031 377.816406 C 74.058594 377.816406 73.027344 378.847656 73.027344 380.121094 C 73.027344 381.394531 74.058594 382.425781 75.332031 382.425781 C 76.605469 382.425781 77.636719 381.394531 77.636719 380.121094 Z M 77.636719 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.269531 380.121094 C 78.269531 378.847656 77.238281 377.816406 75.964844 377.816406 C 74.691406 377.816406 73.660156 378.847656 73.660156 380.121094 C 73.660156 381.394531 74.691406 382.425781 75.964844 382.425781 C 77.238281 382.425781 78.269531 381.394531 78.269531 380.121094 Z M 78.269531 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.265625 380.121094 C 79.265625 378.847656 78.234375 377.816406 76.960938 377.816406 C 75.6875 377.816406 74.65625 378.847656 74.65625 380.121094 C 74.65625 381.394531 75.6875 382.425781 76.960938 382.425781 C 78.234375 382.425781 79.265625 381.394531 79.265625 380.121094 Z M 79.265625 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.832031 380.121094 C 78.832031 378.847656 77.800781 377.816406 76.527344 377.816406 C 75.253906 377.816406 74.222656 378.847656 74.222656 380.121094 C 74.222656 381.394531 75.253906 382.425781 76.527344 382.425781 C 77.800781 382.425781 78.832031 381.394531 78.832031 380.121094 Z M 78.832031 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.382812 380.121094 C 78.382812 378.847656 77.351562 377.816406 76.078125 377.816406 C 74.804688 377.816406 73.773438 378.847656 73.773438 380.121094 C 73.773438 381.394531 74.804688 382.425781 76.078125 382.425781 C 77.351562 382.425781 78.382812 381.394531 78.382812 380.121094 Z M 78.382812 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.90625 380.121094 C 79.90625 378.847656 78.875 377.816406 77.601562 377.816406 C 76.328125 377.816406 75.296875 378.847656 75.296875 380.121094 C 75.296875 381.394531 76.328125 382.425781 77.601562 382.425781 C 78.875 382.425781 79.90625 381.394531 79.90625 380.121094 Z M 79.90625 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.636719 380.121094 C 78.636719 378.847656 77.605469 377.816406 76.332031 377.816406 C 75.058594 377.816406 74.027344 378.847656 74.027344 380.121094 C 74.027344 381.394531 75.058594 382.425781 76.332031 382.425781 C 77.605469 382.425781 78.636719 381.394531 78.636719 380.121094 Z M 78.636719 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.996094 380.121094 C 78.996094 378.847656 77.964844 377.816406 76.691406 377.816406 C 75.417969 377.816406 74.386719 378.847656 74.386719 380.121094 C 74.386719 381.394531 75.417969 382.425781 76.691406 382.425781 C 77.964844 382.425781 78.996094 381.394531 78.996094 380.121094 Z M 78.996094 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.644531 380.121094 C 79.644531 378.847656 78.613281 377.816406 77.339844 377.816406 C 76.066406 377.816406 75.035156 378.847656 75.035156 380.121094 C 75.035156 381.394531 76.066406 382.425781 77.339844 382.425781 C 78.613281 382.425781 79.644531 381.394531 79.644531 380.121094 Z M 79.644531 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.84375 380.121094 C 77.84375 378.847656 76.8125 377.816406 75.539062 377.816406 C 74.265625 377.816406 73.234375 378.847656 73.234375 380.121094 C 73.234375 381.394531 74.265625 382.425781 75.539062 382.425781 C 76.8125 382.425781 77.84375 381.394531 77.84375 380.121094 Z M 77.84375 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.324219 380.121094 C 78.324219 378.847656 77.292969 377.816406 76.019531 377.816406 C 74.746094 377.816406 73.714844 378.847656 73.714844 380.121094 C 73.714844 381.394531 74.746094 382.425781 76.019531 382.425781 C 77.292969 382.425781 78.324219 381.394531 78.324219 380.121094 Z M 78.324219 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.804688 380.121094 C 79.804688 378.847656 78.773438 377.816406 77.5 377.816406 C 76.226562 377.816406 75.195312 378.847656 75.195312 380.121094 C 75.195312 381.394531 76.226562 382.425781 77.5 382.425781 C 78.773438 382.425781 79.804688 381.394531 79.804688 380.121094 Z M 79.804688 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.4375 380.121094 C 79.4375 378.847656 78.40625 377.816406 77.132812 377.816406 C 75.859375 377.816406 74.828125 378.847656 74.828125 380.121094 C 74.828125 381.394531 75.859375 382.425781 77.132812 382.425781 C 78.40625 382.425781 79.4375 381.394531 79.4375 380.121094 Z M 79.4375 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.664062 380.121094 C 78.664062 378.847656 77.632812 377.816406 76.359375 377.816406 C 75.085938 377.816406 74.054688 378.847656 74.054688 380.121094 C 74.054688 381.394531 75.085938 382.425781 76.359375 382.425781 C 77.632812 382.425781 78.664062 381.394531 78.664062 380.121094 Z M 78.664062 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.898438 380.121094 C 79.898438 378.847656 78.867188 377.816406 77.59375 377.816406 C 76.320312 377.816406 75.289062 378.847656 75.289062 380.121094 C 75.289062 381.394531 76.320312 382.425781 77.59375 382.425781 C 78.867188 382.425781 79.898438 381.394531 79.898438 380.121094 Z M 79.898438 380.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.414062 375.277344 C 78.414062 374.003906 77.382812 372.972656 76.109375 372.972656 C 74.835938 372.972656 73.804688 374.003906 73.804688 375.277344 C 73.804688 376.550781 74.835938 377.582031 76.109375 377.582031 C 77.382812 377.582031 78.414062 376.550781 78.414062 375.277344 Z M 78.414062 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.5625 375.277344 C 83.5625 374.003906 82.53125 372.972656 81.257812 372.972656 C 79.984375 372.972656 78.953125 374.003906 78.953125 375.277344 C 78.953125 376.550781 79.984375 377.582031 81.257812 377.582031 C 82.53125 377.582031 83.5625 376.550781 83.5625 375.277344 Z M 83.5625 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.417969 375.277344 C 80.417969 374.003906 79.386719 372.972656 78.113281 372.972656 C 76.839844 372.972656 75.808594 374.003906 75.808594 375.277344 C 75.808594 376.550781 76.839844 377.582031 78.113281 377.582031 C 79.386719 377.582031 80.417969 376.550781 80.417969 375.277344 Z M 80.417969 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.261719 375.277344 C 83.261719 374.003906 82.230469 372.972656 80.957031 372.972656 C 79.683594 372.972656 78.652344 374.003906 78.652344 375.277344 C 78.652344 376.550781 79.683594 377.582031 80.957031 377.582031 C 82.230469 377.582031 83.261719 376.550781 83.261719 375.277344 Z M 83.261719 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.351562 375.277344 C 82.351562 374.003906 81.320312 372.972656 80.046875 372.972656 C 78.773438 372.972656 77.742188 374.003906 77.742188 375.277344 C 77.742188 376.550781 78.773438 377.582031 80.046875 377.582031 C 81.320312 377.582031 82.351562 376.550781 82.351562 375.277344 Z M 82.351562 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.046875 375.277344 C 81.046875 374.003906 80.015625 372.972656 78.742188 372.972656 C 77.46875 372.972656 76.4375 374.003906 76.4375 375.277344 C 76.4375 376.550781 77.46875 377.582031 78.742188 377.582031 C 80.015625 377.582031 81.046875 376.550781 81.046875 375.277344 Z M 81.046875 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.34375 375.277344 C 80.34375 374.003906 79.3125 372.972656 78.039062 372.972656 C 76.765625 372.972656 75.734375 374.003906 75.734375 375.277344 C 75.734375 376.550781 76.765625 377.582031 78.039062 377.582031 C 79.3125 377.582031 80.34375 376.550781 80.34375 375.277344 Z M 80.34375 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.6875 375.277344 C 82.6875 374.003906 81.65625 372.972656 80.382812 372.972656 C 79.109375 372.972656 78.078125 374.003906 78.078125 375.277344 C 78.078125 376.550781 79.109375 377.582031 80.382812 377.582031 C 81.65625 377.582031 82.6875 376.550781 82.6875 375.277344 Z M 82.6875 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.839844 375.277344 C 77.839844 374.003906 76.808594 372.972656 75.535156 372.972656 C 74.261719 372.972656 73.230469 374.003906 73.230469 375.277344 C 73.230469 376.550781 74.261719 377.582031 75.535156 377.582031 C 76.808594 377.582031 77.839844 376.550781 77.839844 375.277344 Z M 77.839844 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.589844 375.277344 C 80.589844 374.003906 79.558594 372.972656 78.285156 372.972656 C 77.011719 372.972656 75.980469 374.003906 75.980469 375.277344 C 75.980469 376.550781 77.011719 377.582031 78.285156 377.582031 C 79.558594 377.582031 80.589844 376.550781 80.589844 375.277344 Z M 80.589844 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.996094 375.277344 C 83.996094 374.003906 82.964844 372.972656 81.691406 372.972656 C 80.417969 372.972656 79.386719 374.003906 79.386719 375.277344 C 79.386719 376.550781 80.417969 377.582031 81.691406 377.582031 C 82.964844 377.582031 83.996094 376.550781 83.996094 375.277344 Z M 83.996094 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.652344 375.277344 C 80.652344 374.003906 79.621094 372.972656 78.347656 372.972656 C 77.074219 372.972656 76.042969 374.003906 76.042969 375.277344 C 76.042969 376.550781 77.074219 377.582031 78.347656 377.582031 C 79.621094 377.582031 80.652344 376.550781 80.652344 375.277344 Z M 80.652344 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.511719 375.277344 C 78.511719 374.003906 77.480469 372.972656 76.207031 372.972656 C 74.933594 372.972656 73.902344 374.003906 73.902344 375.277344 C 73.902344 376.550781 74.933594 377.582031 76.207031 377.582031 C 77.480469 377.582031 78.511719 376.550781 78.511719 375.277344 Z M 78.511719 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.089844 375.277344 C 82.089844 374.003906 81.058594 372.972656 79.785156 372.972656 C 78.511719 372.972656 77.480469 374.003906 77.480469 375.277344 C 77.480469 376.550781 78.511719 377.582031 79.785156 377.582031 C 81.058594 377.582031 82.089844 376.550781 82.089844 375.277344 Z M 82.089844 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.015625 375.277344 C 82.015625 374.003906 80.984375 372.972656 79.710938 372.972656 C 78.4375 372.972656 77.40625 374.003906 77.40625 375.277344 C 77.40625 376.550781 78.4375 377.582031 79.710938 377.582031 C 80.984375 377.582031 82.015625 376.550781 82.015625 375.277344 Z M 82.015625 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.605469 375.277344 C 77.605469 374.003906 76.574219 372.972656 75.300781 372.972656 C 74.027344 372.972656 72.996094 374.003906 72.996094 375.277344 C 72.996094 376.550781 74.027344 377.582031 75.300781 377.582031 C 76.574219 377.582031 77.605469 376.550781 77.605469 375.277344 Z M 77.605469 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.40625 375.277344 C 79.40625 374.003906 78.375 372.972656 77.101562 372.972656 C 75.828125 372.972656 74.796875 374.003906 74.796875 375.277344 C 74.796875 376.550781 75.828125 377.582031 77.101562 377.582031 C 78.375 377.582031 79.40625 376.550781 79.40625 375.277344 Z M 79.40625 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.246094 375.277344 C 82.246094 374.003906 81.214844 372.972656 79.941406 372.972656 C 78.667969 372.972656 77.636719 374.003906 77.636719 375.277344 C 77.636719 376.550781 78.667969 377.582031 79.941406 377.582031 C 81.214844 377.582031 82.246094 376.550781 82.246094 375.277344 Z M 82.246094 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.011719 375.277344 C 81.011719 374.003906 79.980469 372.972656 78.707031 372.972656 C 77.433594 372.972656 76.402344 374.003906 76.402344 375.277344 C 76.402344 376.550781 77.433594 377.582031 78.707031 377.582031 C 79.980469 377.582031 81.011719 376.550781 81.011719 375.277344 Z M 81.011719 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.734375 375.277344 C 79.734375 374.003906 78.703125 372.972656 77.429688 372.972656 C 76.15625 372.972656 75.125 374.003906 75.125 375.277344 C 75.125 376.550781 76.15625 377.582031 77.429688 377.582031 C 78.703125 377.582031 79.734375 376.550781 79.734375 375.277344 Z M 79.734375 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.0625 375.277344 C 84.0625 374.003906 83.03125 372.972656 81.757812 372.972656 C 80.484375 372.972656 79.453125 374.003906 79.453125 375.277344 C 79.453125 376.550781 80.484375 377.582031 81.757812 377.582031 C 83.03125 377.582031 84.0625 376.550781 84.0625 375.277344 Z M 84.0625 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.449219 375.277344 C 80.449219 374.003906 79.417969 372.972656 78.144531 372.972656 C 76.871094 372.972656 75.839844 374.003906 75.839844 375.277344 C 75.839844 376.550781 76.871094 377.582031 78.144531 377.582031 C 79.417969 377.582031 80.449219 376.550781 80.449219 375.277344 Z M 80.449219 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.472656 375.277344 C 81.472656 374.003906 80.441406 372.972656 79.167969 372.972656 C 77.894531 372.972656 76.863281 374.003906 76.863281 375.277344 C 76.863281 376.550781 77.894531 377.582031 79.167969 377.582031 C 80.441406 377.582031 81.472656 376.550781 81.472656 375.277344 Z M 81.472656 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.316406 375.277344 C 83.316406 374.003906 82.285156 372.972656 81.011719 372.972656 C 79.738281 372.972656 78.707031 374.003906 78.707031 375.277344 C 78.707031 376.550781 79.738281 377.582031 81.011719 377.582031 C 82.285156 377.582031 83.316406 376.550781 83.316406 375.277344 Z M 83.316406 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.199219 375.277344 C 78.199219 374.003906 77.167969 372.972656 75.894531 372.972656 C 74.621094 372.972656 73.589844 374.003906 73.589844 375.277344 C 73.589844 376.550781 74.621094 377.582031 75.894531 377.582031 C 77.167969 377.582031 78.199219 376.550781 78.199219 375.277344 Z M 78.199219 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.566406 375.277344 C 79.566406 374.003906 78.535156 372.972656 77.261719 372.972656 C 75.988281 372.972656 74.957031 374.003906 74.957031 375.277344 C 74.957031 376.550781 75.988281 377.582031 77.261719 377.582031 C 78.535156 377.582031 79.566406 376.550781 79.566406 375.277344 Z M 79.566406 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.773438 375.277344 C 83.773438 374.003906 82.742188 372.972656 81.46875 372.972656 C 80.195312 372.972656 79.164062 374.003906 79.164062 375.277344 C 79.164062 376.550781 80.195312 377.582031 81.46875 377.582031 C 82.742188 377.582031 83.773438 376.550781 83.773438 375.277344 Z M 83.773438 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.734375 375.277344 C 82.734375 374.003906 81.703125 372.972656 80.429688 372.972656 C 79.15625 372.972656 78.125 374.003906 78.125 375.277344 C 78.125 376.550781 79.15625 377.582031 80.429688 377.582031 C 81.703125 377.582031 82.734375 376.550781 82.734375 375.277344 Z M 82.734375 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.53125 375.277344 C 80.53125 374.003906 79.5 372.972656 78.226562 372.972656 C 76.953125 372.972656 75.921875 374.003906 75.921875 375.277344 C 75.921875 376.550781 76.953125 377.582031 78.226562 377.582031 C 79.5 377.582031 80.53125 376.550781 80.53125 375.277344 Z M 80.53125 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.046875 375.277344 C 84.046875 374.003906 83.015625 372.972656 81.742188 372.972656 C 80.46875 372.972656 79.4375 374.003906 79.4375 375.277344 C 79.4375 376.550781 80.46875 377.582031 81.742188 377.582031 C 83.015625 377.582031 84.046875 376.550781 84.046875 375.277344 Z M 84.046875 375.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.671875 370.433594 C 78.671875 369.160156 77.640625 368.128906 76.367188 368.128906 C 75.09375 368.128906 74.0625 369.160156 74.0625 370.433594 C 74.0625 371.707031 75.09375 372.738281 76.367188 372.738281 C 77.640625 372.738281 78.671875 371.707031 78.671875 370.433594 Z M 78.671875 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.105469 370.433594 C 87.105469 369.160156 86.074219 368.128906 84.800781 368.128906 C 83.527344 368.128906 82.496094 369.160156 82.496094 370.433594 C 82.496094 371.707031 83.527344 372.738281 84.800781 372.738281 C 86.074219 372.738281 87.105469 371.707031 87.105469 370.433594 Z M 87.105469 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.953125 370.433594 C 81.953125 369.160156 80.921875 368.128906 79.648438 368.128906 C 78.375 368.128906 77.34375 369.160156 77.34375 370.433594 C 77.34375 371.707031 78.375 372.738281 79.648438 372.738281 C 80.921875 372.738281 81.953125 371.707031 81.953125 370.433594 Z M 81.953125 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.613281 370.433594 C 86.613281 369.160156 85.582031 368.128906 84.308594 368.128906 C 83.035156 368.128906 82.003906 369.160156 82.003906 370.433594 C 82.003906 371.707031 83.035156 372.738281 84.308594 372.738281 C 85.582031 372.738281 86.613281 371.707031 86.613281 370.433594 Z M 86.613281 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.117188 370.433594 C 85.117188 369.160156 84.085938 368.128906 82.8125 368.128906 C 81.539062 368.128906 80.507812 369.160156 80.507812 370.433594 C 80.507812 371.707031 81.539062 372.738281 82.8125 372.738281 C 84.085938 372.738281 85.117188 371.707031 85.117188 370.433594 Z M 85.117188 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.984375 370.433594 C 82.984375 369.160156 81.953125 368.128906 80.679688 368.128906 C 79.40625 368.128906 78.375 369.160156 78.375 370.433594 C 78.375 371.707031 79.40625 372.738281 80.679688 372.738281 C 81.953125 372.738281 82.984375 371.707031 82.984375 370.433594 Z M 82.984375 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.828125 370.433594 C 81.828125 369.160156 80.796875 368.128906 79.523438 368.128906 C 78.25 368.128906 77.21875 369.160156 77.21875 370.433594 C 77.21875 371.707031 78.25 372.738281 79.523438 372.738281 C 80.796875 372.738281 81.828125 371.707031 81.828125 370.433594 Z M 81.828125 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.671875 370.433594 C 85.671875 369.160156 84.640625 368.128906 83.367188 368.128906 C 82.09375 368.128906 81.0625 369.160156 81.0625 370.433594 C 81.0625 371.707031 82.09375 372.738281 83.367188 372.738281 C 84.640625 372.738281 85.671875 371.707031 85.671875 370.433594 Z M 85.671875 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.726562 370.433594 C 77.726562 369.160156 76.695312 368.128906 75.421875 368.128906 C 74.148438 368.128906 73.117188 369.160156 73.117188 370.433594 C 73.117188 371.707031 74.148438 372.738281 75.421875 372.738281 C 76.695312 372.738281 77.726562 371.707031 77.726562 370.433594 Z M 77.726562 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.238281 370.433594 C 82.238281 369.160156 81.207031 368.128906 79.933594 368.128906 C 78.660156 368.128906 77.628906 369.160156 77.628906 370.433594 C 77.628906 371.707031 78.660156 372.738281 79.933594 372.738281 C 81.207031 372.738281 82.238281 371.707031 82.238281 370.433594 Z M 82.238281 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.8125 370.433594 C 87.8125 369.160156 86.78125 368.128906 85.507812 368.128906 C 84.234375 368.128906 83.203125 369.160156 83.203125 370.433594 C 83.203125 371.707031 84.234375 372.738281 85.507812 372.738281 C 86.78125 372.738281 87.8125 371.707031 87.8125 370.433594 Z M 87.8125 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.339844 370.433594 C 82.339844 369.160156 81.308594 368.128906 80.035156 368.128906 C 78.761719 368.128906 77.730469 369.160156 77.730469 370.433594 C 77.730469 371.707031 78.761719 372.738281 80.035156 372.738281 C 81.308594 372.738281 82.339844 371.707031 82.339844 370.433594 Z M 82.339844 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.828125 370.433594 C 78.828125 369.160156 77.796875 368.128906 76.523438 368.128906 C 75.25 368.128906 74.21875 369.160156 74.21875 370.433594 C 74.21875 371.707031 75.25 372.738281 76.523438 372.738281 C 77.796875 372.738281 78.828125 371.707031 78.828125 370.433594 Z M 78.828125 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.691406 370.433594 C 84.691406 369.160156 83.660156 368.128906 82.386719 368.128906 C 81.113281 368.128906 80.082031 369.160156 80.082031 370.433594 C 80.082031 371.707031 81.113281 372.738281 82.386719 372.738281 C 83.660156 372.738281 84.691406 371.707031 84.691406 370.433594 Z M 84.691406 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.570312 370.433594 C 84.570312 369.160156 83.539062 368.128906 82.265625 368.128906 C 80.992188 368.128906 79.960938 369.160156 79.960938 370.433594 C 79.960938 371.707031 80.992188 372.738281 82.265625 372.738281 C 83.539062 372.738281 84.570312 371.707031 84.570312 370.433594 Z M 84.570312 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.347656 370.433594 C 77.347656 369.160156 76.316406 368.128906 75.042969 368.128906 C 73.769531 368.128906 72.738281 369.160156 72.738281 370.433594 C 72.738281 371.707031 73.769531 372.738281 75.042969 372.738281 C 76.316406 372.738281 77.347656 371.707031 77.347656 370.433594 Z M 77.347656 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.296875 370.433594 C 80.296875 369.160156 79.265625 368.128906 77.992188 368.128906 C 76.71875 368.128906 75.6875 369.160156 75.6875 370.433594 C 75.6875 371.707031 76.71875 372.738281 77.992188 372.738281 C 79.265625 372.738281 80.296875 371.707031 80.296875 370.433594 Z M 80.296875 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.945312 370.433594 C 84.945312 369.160156 83.914062 368.128906 82.640625 368.128906 C 81.367188 368.128906 80.335938 369.160156 80.335938 370.433594 C 80.335938 371.707031 81.367188 372.738281 82.640625 372.738281 C 83.914062 372.738281 84.945312 371.707031 84.945312 370.433594 Z M 84.945312 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.925781 370.433594 C 82.925781 369.160156 81.894531 368.128906 80.621094 368.128906 C 79.347656 368.128906 78.316406 369.160156 78.316406 370.433594 C 78.316406 371.707031 79.347656 372.738281 80.621094 372.738281 C 81.894531 372.738281 82.925781 371.707031 82.925781 370.433594 Z M 82.925781 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.832031 370.433594 C 80.832031 369.160156 79.800781 368.128906 78.527344 368.128906 C 77.253906 368.128906 76.222656 369.160156 76.222656 370.433594 C 76.222656 371.707031 77.253906 372.738281 78.527344 372.738281 C 79.800781 372.738281 80.832031 371.707031 80.832031 370.433594 Z M 80.832031 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.925781 370.433594 C 87.925781 369.160156 86.894531 368.128906 85.621094 368.128906 C 84.347656 368.128906 83.316406 369.160156 83.316406 370.433594 C 83.316406 371.707031 84.347656 372.738281 85.621094 372.738281 C 86.894531 372.738281 87.925781 371.707031 87.925781 370.433594 Z M 87.925781 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.003906 370.433594 C 82.003906 369.160156 80.972656 368.128906 79.699219 368.128906 C 78.425781 368.128906 77.394531 369.160156 77.394531 370.433594 C 77.394531 371.707031 78.425781 372.738281 79.699219 372.738281 C 80.972656 372.738281 82.003906 371.707031 82.003906 370.433594 Z M 82.003906 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.679688 370.433594 C 83.679688 369.160156 82.648438 368.128906 81.375 368.128906 C 80.101562 368.128906 79.070312 369.160156 79.070312 370.433594 C 79.070312 371.707031 80.101562 372.738281 81.375 372.738281 C 82.648438 372.738281 83.679688 371.707031 83.679688 370.433594 Z M 83.679688 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.703125 370.433594 C 86.703125 369.160156 85.671875 368.128906 84.398438 368.128906 C 83.125 368.128906 82.09375 369.160156 82.09375 370.433594 C 82.09375 371.707031 83.125 372.738281 84.398438 372.738281 C 85.671875 372.738281 86.703125 371.707031 86.703125 370.433594 Z M 86.703125 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.320312 370.433594 C 78.320312 369.160156 77.289062 368.128906 76.015625 368.128906 C 74.742188 368.128906 73.710938 369.160156 73.710938 370.433594 C 73.710938 371.707031 74.742188 372.738281 76.015625 372.738281 C 77.289062 372.738281 78.320312 371.707031 78.320312 370.433594 Z M 78.320312 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.554688 370.433594 C 80.554688 369.160156 79.523438 368.128906 78.25 368.128906 C 76.976562 368.128906 75.945312 369.160156 75.945312 370.433594 C 75.945312 371.707031 76.976562 372.738281 78.25 372.738281 C 79.523438 372.738281 80.554688 371.707031 80.554688 370.433594 Z M 80.554688 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.449219 370.433594 C 87.449219 369.160156 86.417969 368.128906 85.144531 368.128906 C 83.871094 368.128906 82.839844 369.160156 82.839844 370.433594 C 82.839844 371.707031 83.871094 372.738281 85.144531 372.738281 C 86.417969 372.738281 87.449219 371.707031 87.449219 370.433594 Z M 87.449219 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.75 370.433594 C 85.75 369.160156 84.71875 368.128906 83.445312 368.128906 C 82.171875 368.128906 81.140625 369.160156 81.140625 370.433594 C 81.140625 371.707031 82.171875 372.738281 83.445312 372.738281 C 84.71875 372.738281 85.75 371.707031 85.75 370.433594 Z M 85.75 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.136719 370.433594 C 82.136719 369.160156 81.105469 368.128906 79.832031 368.128906 C 78.558594 368.128906 77.527344 369.160156 77.527344 370.433594 C 77.527344 371.707031 78.558594 372.738281 79.832031 372.738281 C 81.105469 372.738281 82.136719 371.707031 82.136719 370.433594 Z M 82.136719 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.894531 370.433594 C 87.894531 369.160156 86.863281 368.128906 85.589844 368.128906 C 84.316406 368.128906 83.285156 369.160156 83.285156 370.433594 C 83.285156 371.707031 84.316406 372.738281 85.589844 372.738281 C 86.863281 372.738281 87.894531 371.707031 87.894531 370.433594 Z M 87.894531 370.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.683594 365.589844 C 78.683594 364.316406 77.652344 363.285156 76.378906 363.285156 C 75.105469 363.285156 74.074219 364.316406 74.074219 365.589844 C 74.074219 366.863281 75.105469 367.894531 76.378906 367.894531 C 77.652344 367.894531 78.683594 366.863281 78.683594 365.589844 Z M 78.683594 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.320312 365.589844 C 90.320312 364.316406 89.289062 363.285156 88.015625 363.285156 C 86.742188 363.285156 85.710938 364.316406 85.710938 365.589844 C 85.710938 366.863281 86.742188 367.894531 88.015625 367.894531 C 89.289062 367.894531 90.320312 366.863281 90.320312 365.589844 Z M 90.320312 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.214844 365.589844 C 83.214844 364.316406 82.183594 363.285156 80.910156 363.285156 C 79.636719 363.285156 78.605469 364.316406 78.605469 365.589844 C 78.605469 366.863281 79.636719 367.894531 80.910156 367.894531 C 82.183594 367.894531 83.214844 366.863281 83.214844 365.589844 Z M 83.214844 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 89.644531 365.589844 C 89.644531 364.316406 88.613281 363.285156 87.339844 363.285156 C 86.066406 363.285156 85.035156 364.316406 85.035156 365.589844 C 85.035156 366.863281 86.066406 367.894531 87.339844 367.894531 C 88.613281 367.894531 89.644531 366.863281 89.644531 365.589844 Z M 89.644531 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.582031 365.589844 C 87.582031 364.316406 86.550781 363.285156 85.277344 363.285156 C 84.003906 363.285156 82.972656 364.316406 82.972656 365.589844 C 82.972656 366.863281 84.003906 367.894531 85.277344 367.894531 C 86.550781 367.894531 87.582031 366.863281 87.582031 365.589844 Z M 87.582031 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.636719 365.589844 C 84.636719 364.316406 83.605469 363.285156 82.332031 363.285156 C 81.058594 363.285156 80.027344 364.316406 80.027344 365.589844 C 80.027344 366.863281 81.058594 367.894531 82.332031 367.894531 C 83.605469 367.894531 84.636719 366.863281 84.636719 365.589844 Z M 84.636719 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.042969 365.589844 C 83.042969 364.316406 82.011719 363.285156 80.738281 363.285156 C 79.464844 363.285156 78.433594 364.316406 78.433594 365.589844 C 78.433594 366.863281 79.464844 367.894531 80.738281 367.894531 C 82.011719 367.894531 83.042969 366.863281 83.042969 365.589844 Z M 83.042969 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.34375 365.589844 C 88.34375 364.316406 87.3125 363.285156 86.039062 363.285156 C 84.765625 363.285156 83.734375 364.316406 83.734375 365.589844 C 83.734375 366.863281 84.765625 367.894531 86.039062 367.894531 C 87.3125 367.894531 88.34375 366.863281 88.34375 365.589844 Z M 88.34375 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.382812 365.589844 C 77.382812 364.316406 76.351562 363.285156 75.078125 363.285156 C 73.804688 363.285156 72.773438 364.316406 72.773438 365.589844 C 72.773438 366.863281 73.804688 367.894531 75.078125 367.894531 C 76.351562 367.894531 77.382812 366.863281 77.382812 365.589844 Z M 77.382812 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.605469 365.589844 C 83.605469 364.316406 82.574219 363.285156 81.300781 363.285156 C 80.027344 363.285156 78.996094 364.316406 78.996094 365.589844 C 78.996094 366.863281 80.027344 367.894531 81.300781 367.894531 C 82.574219 367.894531 83.605469 366.863281 83.605469 365.589844 Z M 83.605469 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.296875 365.589844 C 91.296875 364.316406 90.265625 363.285156 88.992188 363.285156 C 87.71875 363.285156 86.6875 364.316406 86.6875 365.589844 C 86.6875 366.863281 87.71875 367.894531 88.992188 367.894531 C 90.265625 367.894531 91.296875 366.863281 91.296875 365.589844 Z M 91.296875 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.746094 365.589844 C 83.746094 364.316406 82.714844 363.285156 81.441406 363.285156 C 80.167969 363.285156 79.136719 364.316406 79.136719 365.589844 C 79.136719 366.863281 80.167969 367.894531 81.441406 367.894531 C 82.714844 367.894531 83.746094 366.863281 83.746094 365.589844 Z M 83.746094 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.90625 365.589844 C 78.90625 364.316406 77.875 363.285156 76.601562 363.285156 C 75.328125 363.285156 74.296875 364.316406 74.296875 365.589844 C 74.296875 366.863281 75.328125 367.894531 76.601562 367.894531 C 77.875 367.894531 78.90625 366.863281 78.90625 365.589844 Z M 78.90625 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.992188 365.589844 C 86.992188 364.316406 85.960938 363.285156 84.6875 363.285156 C 83.414062 363.285156 82.382812 364.316406 82.382812 365.589844 C 82.382812 366.863281 83.414062 367.894531 84.6875 367.894531 C 85.960938 367.894531 86.992188 366.863281 86.992188 365.589844 Z M 86.992188 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.824219 365.589844 C 86.824219 364.316406 85.792969 363.285156 84.519531 363.285156 C 83.246094 363.285156 82.214844 364.316406 82.214844 365.589844 C 82.214844 366.863281 83.246094 367.894531 84.519531 367.894531 C 85.792969 367.894531 86.824219 366.863281 86.824219 365.589844 Z M 86.824219 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.859375 365.589844 C 76.859375 364.316406 75.828125 363.285156 74.554688 363.285156 C 73.28125 363.285156 72.25 364.316406 72.25 365.589844 C 72.25 366.863281 73.28125 367.894531 74.554688 367.894531 C 75.828125 367.894531 76.859375 366.863281 76.859375 365.589844 Z M 76.859375 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.929688 365.589844 C 80.929688 364.316406 79.898438 363.285156 78.625 363.285156 C 77.351562 363.285156 76.320312 364.316406 76.320312 365.589844 C 76.320312 366.863281 77.351562 367.894531 78.625 367.894531 C 79.898438 367.894531 80.929688 366.863281 80.929688 365.589844 Z M 80.929688 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.339844 365.589844 C 87.339844 364.316406 86.308594 363.285156 85.035156 363.285156 C 83.761719 363.285156 82.730469 364.316406 82.730469 365.589844 C 82.730469 366.863281 83.761719 367.894531 85.035156 367.894531 C 86.308594 367.894531 87.339844 366.863281 87.339844 365.589844 Z M 87.339844 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.554688 365.589844 C 84.554688 364.316406 83.523438 363.285156 82.25 363.285156 C 80.976562 363.285156 79.945312 364.316406 79.945312 365.589844 C 79.945312 366.863281 80.976562 367.894531 82.25 367.894531 C 83.523438 367.894531 84.554688 366.863281 84.554688 365.589844 Z M 84.554688 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.667969 365.589844 C 81.667969 364.316406 80.636719 363.285156 79.363281 363.285156 C 78.089844 363.285156 77.058594 364.316406 77.058594 365.589844 C 77.058594 366.863281 78.089844 367.894531 79.363281 367.894531 C 80.636719 367.894531 81.667969 366.863281 81.667969 365.589844 Z M 81.667969 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.453125 365.589844 C 91.453125 364.316406 90.421875 363.285156 89.148438 363.285156 C 87.875 363.285156 86.84375 364.316406 86.84375 365.589844 C 86.84375 366.863281 87.875 367.894531 89.148438 367.894531 C 90.421875 367.894531 91.453125 366.863281 91.453125 365.589844 Z M 91.453125 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.28125 365.589844 C 83.28125 364.316406 82.25 363.285156 80.976562 363.285156 C 79.703125 363.285156 78.671875 364.316406 78.671875 365.589844 C 78.671875 366.863281 79.703125 367.894531 80.976562 367.894531 C 82.25 367.894531 83.28125 366.863281 83.28125 365.589844 Z M 83.28125 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.597656 365.589844 C 85.597656 364.316406 84.566406 363.285156 83.292969 363.285156 C 82.019531 363.285156 80.988281 364.316406 80.988281 365.589844 C 80.988281 366.863281 82.019531 367.894531 83.292969 367.894531 C 84.566406 367.894531 85.597656 366.863281 85.597656 365.589844 Z M 85.597656 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 89.765625 365.589844 C 89.765625 364.316406 88.734375 363.285156 87.460938 363.285156 C 86.1875 363.285156 85.15625 364.316406 85.15625 365.589844 C 85.15625 366.863281 86.1875 367.894531 87.460938 367.894531 C 88.734375 367.894531 89.765625 366.863281 89.765625 365.589844 Z M 89.765625 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.199219 365.589844 C 78.199219 364.316406 77.167969 363.285156 75.894531 363.285156 C 74.621094 363.285156 73.589844 364.316406 73.589844 365.589844 C 73.589844 366.863281 74.621094 367.894531 75.894531 367.894531 C 77.167969 367.894531 78.199219 366.863281 78.199219 365.589844 Z M 78.199219 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.285156 365.589844 C 81.285156 364.316406 80.253906 363.285156 78.980469 363.285156 C 77.707031 363.285156 76.675781 364.316406 76.675781 365.589844 C 76.675781 366.863281 77.707031 367.894531 78.980469 367.894531 C 80.253906 367.894531 81.285156 366.863281 81.285156 365.589844 Z M 81.285156 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.796875 365.589844 C 90.796875 364.316406 89.765625 363.285156 88.492188 363.285156 C 87.21875 363.285156 86.1875 364.316406 86.1875 365.589844 C 86.1875 366.863281 87.21875 367.894531 88.492188 367.894531 C 89.765625 367.894531 90.796875 366.863281 90.796875 365.589844 Z M 90.796875 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.449219 365.589844 C 88.449219 364.316406 87.417969 363.285156 86.144531 363.285156 C 84.871094 363.285156 83.839844 364.316406 83.839844 365.589844 C 83.839844 366.863281 84.871094 367.894531 86.144531 367.894531 C 87.417969 367.894531 88.449219 366.863281 88.449219 365.589844 Z M 88.449219 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.46875 365.589844 C 83.46875 364.316406 82.4375 363.285156 81.164062 363.285156 C 79.890625 363.285156 78.859375 364.316406 78.859375 365.589844 C 78.859375 366.863281 79.890625 367.894531 81.164062 367.894531 C 82.4375 367.894531 83.46875 366.863281 83.46875 365.589844 Z M 83.46875 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.410156 365.589844 C 91.410156 364.316406 90.378906 363.285156 89.105469 363.285156 C 87.832031 363.285156 86.800781 364.316406 86.800781 365.589844 C 86.800781 366.863281 87.832031 367.894531 89.105469 367.894531 C 90.378906 367.894531 91.410156 366.863281 91.410156 365.589844 Z M 91.410156 365.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.457031 360.746094 C 78.457031 359.472656 77.425781 358.441406 76.152344 358.441406 C 74.878906 358.441406 73.847656 359.472656 73.847656 360.746094 C 73.847656 362.019531 74.878906 363.050781 76.152344 363.050781 C 77.425781 363.050781 78.457031 362.019531 78.457031 360.746094 Z M 78.457031 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.179688 360.746094 C 93.179688 359.472656 92.148438 358.441406 90.875 358.441406 C 89.601562 358.441406 88.570312 359.472656 88.570312 360.746094 C 88.570312 362.019531 89.601562 363.050781 90.875 363.050781 C 92.148438 363.050781 93.179688 362.019531 93.179688 360.746094 Z M 93.179688 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.1875 360.746094 C 84.1875 359.472656 83.15625 358.441406 81.882812 358.441406 C 80.609375 358.441406 79.578125 359.472656 79.578125 360.746094 C 79.578125 362.019531 80.609375 363.050781 81.882812 363.050781 C 83.15625 363.050781 84.1875 362.019531 84.1875 360.746094 Z M 84.1875 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.324219 360.746094 C 92.324219 359.472656 91.292969 358.441406 90.019531 358.441406 C 88.746094 358.441406 87.714844 359.472656 87.714844 360.746094 C 87.714844 362.019531 88.746094 363.050781 90.019531 363.050781 C 91.292969 363.050781 92.324219 362.019531 92.324219 360.746094 Z M 92.324219 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 89.710938 360.746094 C 89.710938 359.472656 88.679688 358.441406 87.40625 358.441406 C 86.132812 358.441406 85.101562 359.472656 85.101562 360.746094 C 85.101562 362.019531 86.132812 363.050781 87.40625 363.050781 C 88.679688 363.050781 89.710938 362.019531 89.710938 360.746094 Z M 89.710938 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.984375 360.746094 C 85.984375 359.472656 84.953125 358.441406 83.679688 358.441406 C 82.40625 358.441406 81.375 359.472656 81.375 360.746094 C 81.375 362.019531 82.40625 363.050781 83.679688 363.050781 C 84.953125 363.050781 85.984375 362.019531 85.984375 360.746094 Z M 85.984375 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.96875 360.746094 C 83.96875 359.472656 82.9375 358.441406 81.664062 358.441406 C 80.390625 358.441406 79.359375 359.472656 79.359375 360.746094 C 79.359375 362.019531 80.390625 363.050781 81.664062 363.050781 C 82.9375 363.050781 83.96875 362.019531 83.96875 360.746094 Z M 83.96875 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.679688 360.746094 C 90.679688 359.472656 89.648438 358.441406 88.375 358.441406 C 87.101562 358.441406 86.070312 359.472656 86.070312 360.746094 C 86.070312 362.019531 87.101562 363.050781 88.375 363.050781 C 89.648438 363.050781 90.679688 362.019531 90.679688 360.746094 Z M 90.679688 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.8125 360.746094 C 76.8125 359.472656 75.78125 358.441406 74.507812 358.441406 C 73.234375 358.441406 72.203125 359.472656 72.203125 360.746094 C 72.203125 362.019531 73.234375 363.050781 74.507812 363.050781 C 75.78125 363.050781 76.8125 362.019531 76.8125 360.746094 Z M 76.8125 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.683594 360.746094 C 84.683594 359.472656 83.652344 358.441406 82.378906 358.441406 C 81.105469 358.441406 80.074219 359.472656 80.074219 360.746094 C 80.074219 362.019531 81.105469 363.050781 82.378906 363.050781 C 83.652344 363.050781 84.683594 362.019531 84.683594 360.746094 Z M 84.683594 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.414062 360.746094 C 94.414062 359.472656 93.382812 358.441406 92.109375 358.441406 C 90.835938 358.441406 89.804688 359.472656 89.804688 360.746094 C 89.804688 362.019531 90.835938 363.050781 92.109375 363.050781 C 93.382812 363.050781 94.414062 362.019531 94.414062 360.746094 Z M 94.414062 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.863281 360.746094 C 84.863281 359.472656 83.832031 358.441406 82.558594 358.441406 C 81.285156 358.441406 80.253906 359.472656 80.253906 360.746094 C 80.253906 362.019531 81.285156 363.050781 82.558594 363.050781 C 83.832031 363.050781 84.863281 362.019531 84.863281 360.746094 Z M 84.863281 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.734375 360.746094 C 78.734375 359.472656 77.703125 358.441406 76.429688 358.441406 C 75.15625 358.441406 74.125 359.472656 74.125 360.746094 C 74.125 362.019531 75.15625 363.050781 76.429688 363.050781 C 77.703125 363.050781 78.734375 362.019531 78.734375 360.746094 Z M 78.734375 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.964844 360.746094 C 88.964844 359.472656 87.933594 358.441406 86.660156 358.441406 C 85.386719 358.441406 84.355469 359.472656 84.355469 360.746094 C 84.355469 362.019531 85.386719 363.050781 86.660156 363.050781 C 87.933594 363.050781 88.964844 362.019531 88.964844 360.746094 Z M 88.964844 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.757812 360.746094 C 88.757812 359.472656 87.726562 358.441406 86.453125 358.441406 C 85.179688 358.441406 84.148438 359.472656 84.148438 360.746094 C 84.148438 362.019531 85.179688 363.050781 86.453125 363.050781 C 87.726562 363.050781 88.757812 362.019531 88.757812 360.746094 Z M 88.757812 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.148438 360.746094 C 76.148438 359.472656 75.117188 358.441406 73.84375 358.441406 C 72.570312 358.441406 71.539062 359.472656 71.539062 360.746094 C 71.539062 362.019531 72.570312 363.050781 73.84375 363.050781 C 75.117188 363.050781 76.148438 362.019531 76.148438 360.746094 Z M 76.148438 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.296875 360.746094 C 81.296875 359.472656 80.265625 358.441406 78.992188 358.441406 C 77.71875 358.441406 76.6875 359.472656 76.6875 360.746094 C 76.6875 362.019531 77.71875 363.050781 78.992188 363.050781 C 80.265625 363.050781 81.296875 362.019531 81.296875 360.746094 Z M 81.296875 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 89.410156 360.746094 C 89.410156 359.472656 88.378906 358.441406 87.105469 358.441406 C 85.832031 358.441406 84.800781 359.472656 84.800781 360.746094 C 84.800781 362.019531 85.832031 363.050781 87.105469 363.050781 C 88.378906 363.050781 89.410156 362.019531 89.410156 360.746094 Z M 89.410156 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.882812 360.746094 C 85.882812 359.472656 84.851562 358.441406 83.578125 358.441406 C 82.304688 358.441406 81.273438 359.472656 81.273438 360.746094 C 81.273438 362.019531 82.304688 363.050781 83.578125 363.050781 C 84.851562 363.050781 85.882812 362.019531 85.882812 360.746094 Z M 85.882812 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.230469 360.746094 C 82.230469 359.472656 81.199219 358.441406 79.925781 358.441406 C 78.652344 358.441406 77.621094 359.472656 77.621094 360.746094 C 77.621094 362.019531 78.652344 363.050781 79.925781 363.050781 C 81.199219 363.050781 82.230469 362.019531 82.230469 360.746094 Z M 82.230469 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.613281 360.746094 C 94.613281 359.472656 93.582031 358.441406 92.308594 358.441406 C 91.035156 358.441406 90.003906 359.472656 90.003906 360.746094 C 90.003906 362.019531 91.035156 363.050781 92.308594 363.050781 C 93.582031 363.050781 94.613281 362.019531 94.613281 360.746094 Z M 94.613281 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.273438 360.746094 C 84.273438 359.472656 83.242188 358.441406 81.96875 358.441406 C 80.695312 358.441406 79.664062 359.472656 79.664062 360.746094 C 79.664062 362.019531 80.695312 363.050781 81.96875 363.050781 C 83.242188 363.050781 84.273438 362.019531 84.273438 360.746094 Z M 84.273438 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.203125 360.746094 C 87.203125 359.472656 86.171875 358.441406 84.898438 358.441406 C 83.625 358.441406 82.59375 359.472656 82.59375 360.746094 C 82.59375 362.019531 83.625 363.050781 84.898438 363.050781 C 86.171875 363.050781 87.203125 362.019531 87.203125 360.746094 Z M 87.203125 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.476562 360.746094 C 92.476562 359.472656 91.445312 358.441406 90.171875 358.441406 C 88.898438 358.441406 87.867188 359.472656 87.867188 360.746094 C 87.867188 362.019531 88.898438 363.050781 90.171875 363.050781 C 91.445312 363.050781 92.476562 362.019531 92.476562 360.746094 Z M 92.476562 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.84375 360.746094 C 77.84375 359.472656 76.8125 358.441406 75.539062 358.441406 C 74.265625 358.441406 73.234375 359.472656 73.234375 360.746094 C 73.234375 362.019531 74.265625 363.050781 75.539062 363.050781 C 76.8125 363.050781 77.84375 362.019531 77.84375 360.746094 Z M 77.84375 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.75 360.746094 C 81.75 359.472656 80.71875 358.441406 79.445312 358.441406 C 78.171875 358.441406 77.140625 359.472656 77.140625 360.746094 C 77.140625 362.019531 78.171875 363.050781 79.445312 363.050781 C 80.71875 363.050781 81.75 362.019531 81.75 360.746094 Z M 81.75 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.777344 360.746094 C 93.777344 359.472656 92.746094 358.441406 91.472656 358.441406 C 90.199219 358.441406 89.167969 359.472656 89.167969 360.746094 C 89.167969 362.019531 90.199219 363.050781 91.472656 363.050781 C 92.746094 363.050781 93.777344 362.019531 93.777344 360.746094 Z M 93.777344 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.8125 360.746094 C 90.8125 359.472656 89.78125 358.441406 88.507812 358.441406 C 87.234375 358.441406 86.203125 359.472656 86.203125 360.746094 C 86.203125 362.019531 87.234375 363.050781 88.507812 363.050781 C 89.78125 363.050781 90.8125 362.019531 90.8125 360.746094 Z M 90.8125 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.511719 360.746094 C 84.511719 359.472656 83.480469 358.441406 82.207031 358.441406 C 80.933594 358.441406 79.902344 359.472656 79.902344 360.746094 C 79.902344 362.019531 80.933594 363.050781 82.207031 363.050781 C 83.480469 363.050781 84.511719 362.019531 84.511719 360.746094 Z M 84.511719 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.558594 360.746094 C 94.558594 359.472656 93.527344 358.441406 92.253906 358.441406 C 90.980469 358.441406 89.949219 359.472656 89.949219 360.746094 C 89.949219 362.019531 90.980469 363.050781 92.253906 363.050781 C 93.527344 363.050781 94.558594 362.019531 94.558594 360.746094 Z M 94.558594 360.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.992188 355.902344 C 77.992188 354.628906 76.960938 353.597656 75.6875 353.597656 C 74.414062 353.597656 73.382812 354.628906 73.382812 355.902344 C 73.382812 357.175781 74.414062 358.207031 75.6875 358.207031 C 76.960938 358.207031 77.992188 357.175781 77.992188 355.902344 Z M 77.992188 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 95.652344 355.902344 C 95.652344 354.628906 94.621094 353.597656 93.347656 353.597656 C 92.074219 353.597656 91.042969 354.628906 91.042969 355.902344 C 91.042969 357.175781 92.074219 358.207031 93.347656 358.207031 C 94.621094 358.207031 95.652344 357.175781 95.652344 355.902344 Z M 95.652344 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.863281 355.902344 C 84.863281 354.628906 83.832031 353.597656 82.558594 353.597656 C 81.285156 353.597656 80.253906 354.628906 80.253906 355.902344 C 80.253906 357.175781 81.285156 358.207031 82.558594 358.207031 C 83.832031 358.207031 84.863281 357.175781 84.863281 355.902344 Z M 84.863281 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.625 355.902344 C 94.625 354.628906 93.59375 353.597656 92.320312 353.597656 C 91.046875 353.597656 90.015625 354.628906 90.015625 355.902344 C 90.015625 357.175781 91.046875 358.207031 92.320312 358.207031 C 93.59375 358.207031 94.625 357.175781 94.625 355.902344 Z M 94.625 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.492188 355.902344 C 91.492188 354.628906 90.460938 353.597656 89.1875 353.597656 C 87.914062 353.597656 86.882812 354.628906 86.882812 355.902344 C 86.882812 357.175781 87.914062 358.207031 89.1875 358.207031 C 90.460938 358.207031 91.492188 357.175781 91.492188 355.902344 Z M 91.492188 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.019531 355.902344 C 87.019531 354.628906 85.988281 353.597656 84.714844 353.597656 C 83.441406 353.597656 82.410156 354.628906 82.410156 355.902344 C 82.410156 357.175781 83.441406 358.207031 84.714844 358.207031 C 85.988281 358.207031 87.019531 357.175781 87.019531 355.902344 Z M 87.019531 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.601562 355.902344 C 84.601562 354.628906 83.570312 353.597656 82.296875 353.597656 C 81.023438 353.597656 79.992188 354.628906 79.992188 355.902344 C 79.992188 357.175781 81.023438 358.207031 82.296875 358.207031 C 83.570312 358.207031 84.601562 357.175781 84.601562 355.902344 Z M 84.601562 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.652344 355.902344 C 92.652344 354.628906 91.621094 353.597656 90.347656 353.597656 C 89.074219 353.597656 88.042969 354.628906 88.042969 355.902344 C 88.042969 357.175781 89.074219 358.207031 90.347656 358.207031 C 91.621094 358.207031 92.652344 357.175781 92.652344 355.902344 Z M 92.652344 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.015625 355.902344 C 76.015625 354.628906 74.984375 353.597656 73.710938 353.597656 C 72.4375 353.597656 71.40625 354.628906 71.40625 355.902344 C 71.40625 357.175781 72.4375 358.207031 73.710938 358.207031 C 74.984375 358.207031 76.015625 357.175781 76.015625 355.902344 Z M 76.015625 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.457031 355.902344 C 85.457031 354.628906 84.425781 353.597656 83.152344 353.597656 C 81.878906 353.597656 80.847656 354.628906 80.847656 355.902344 C 80.847656 357.175781 81.878906 358.207031 83.152344 358.207031 C 84.425781 358.207031 85.457031 357.175781 85.457031 355.902344 Z M 85.457031 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 97.132812 355.902344 C 97.132812 354.628906 96.101562 353.597656 94.828125 353.597656 C 93.554688 353.597656 92.523438 354.628906 92.523438 355.902344 C 92.523438 357.175781 93.554688 358.207031 94.828125 358.207031 C 96.101562 358.207031 97.132812 357.175781 97.132812 355.902344 Z M 97.132812 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.671875 355.902344 C 85.671875 354.628906 84.640625 353.597656 83.367188 353.597656 C 82.09375 353.597656 81.0625 354.628906 81.0625 355.902344 C 81.0625 357.175781 82.09375 358.207031 83.367188 358.207031 C 84.640625 358.207031 85.671875 357.175781 85.671875 355.902344 Z M 85.671875 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.324219 355.902344 C 78.324219 354.628906 77.292969 353.597656 76.019531 353.597656 C 74.746094 353.597656 73.714844 354.628906 73.714844 355.902344 C 73.714844 357.175781 74.746094 358.207031 76.019531 358.207031 C 77.292969 358.207031 78.324219 357.175781 78.324219 355.902344 Z M 78.324219 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.597656 355.902344 C 90.597656 354.628906 89.566406 353.597656 88.292969 353.597656 C 87.019531 353.597656 85.988281 354.628906 85.988281 355.902344 C 85.988281 357.175781 87.019531 358.207031 88.292969 358.207031 C 89.566406 358.207031 90.597656 357.175781 90.597656 355.902344 Z M 90.597656 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.34375 355.902344 C 90.34375 354.628906 89.3125 353.597656 88.039062 353.597656 C 86.765625 353.597656 85.734375 354.628906 85.734375 355.902344 C 85.734375 357.175781 86.765625 358.207031 88.039062 358.207031 C 89.3125 358.207031 90.34375 357.175781 90.34375 355.902344 Z M 90.34375 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.222656 355.902344 C 75.222656 354.628906 74.191406 353.597656 72.917969 353.597656 C 71.644531 353.597656 70.613281 354.628906 70.613281 355.902344 C 70.613281 357.175781 71.644531 358.207031 72.917969 358.207031 C 74.191406 358.207031 75.222656 357.175781 75.222656 355.902344 Z M 75.222656 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.394531 355.902344 C 81.394531 354.628906 80.363281 353.597656 79.089844 353.597656 C 77.816406 353.597656 76.785156 354.628906 76.785156 355.902344 C 76.785156 357.175781 77.816406 358.207031 79.089844 358.207031 C 80.363281 358.207031 81.394531 357.175781 81.394531 355.902344 Z M 81.394531 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.128906 355.902344 C 91.128906 354.628906 90.097656 353.597656 88.824219 353.597656 C 87.550781 353.597656 86.519531 354.628906 86.519531 355.902344 C 86.519531 357.175781 87.550781 358.207031 88.824219 358.207031 C 90.097656 358.207031 91.128906 357.175781 91.128906 355.902344 Z M 91.128906 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.898438 355.902344 C 86.898438 354.628906 85.867188 353.597656 84.59375 353.597656 C 83.320312 353.597656 82.289062 354.628906 82.289062 355.902344 C 82.289062 357.175781 83.320312 358.207031 84.59375 358.207031 C 85.867188 358.207031 86.898438 357.175781 86.898438 355.902344 Z M 86.898438 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.519531 355.902344 C 82.519531 354.628906 81.488281 353.597656 80.214844 353.597656 C 78.941406 353.597656 77.910156 354.628906 77.910156 355.902344 C 77.910156 357.175781 78.941406 358.207031 80.214844 358.207031 C 81.488281 358.207031 82.519531 357.175781 82.519531 355.902344 Z M 82.519531 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 97.371094 355.902344 C 97.371094 354.628906 96.339844 353.597656 95.066406 353.597656 C 93.792969 353.597656 92.761719 354.628906 92.761719 355.902344 C 92.761719 357.175781 93.792969 358.207031 95.066406 358.207031 C 96.339844 358.207031 97.371094 357.175781 97.371094 355.902344 Z M 97.371094 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.96875 355.902344 C 84.96875 354.628906 83.9375 353.597656 82.664062 353.597656 C 81.390625 353.597656 80.359375 354.628906 80.359375 355.902344 C 80.359375 357.175781 81.390625 358.207031 82.664062 358.207031 C 83.9375 358.207031 84.96875 357.175781 84.96875 355.902344 Z M 84.96875 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.484375 355.902344 C 88.484375 354.628906 87.453125 353.597656 86.179688 353.597656 C 84.90625 353.597656 83.875 354.628906 83.875 355.902344 C 83.875 357.175781 84.90625 358.207031 86.179688 358.207031 C 87.453125 358.207031 88.484375 357.175781 88.484375 355.902344 Z M 88.484375 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.808594 355.902344 C 94.808594 354.628906 93.777344 353.597656 92.503906 353.597656 C 91.230469 353.597656 90.199219 354.628906 90.199219 355.902344 C 90.199219 357.175781 91.230469 358.207031 92.503906 358.207031 C 93.777344 358.207031 94.808594 357.175781 94.808594 355.902344 Z M 94.808594 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.253906 355.902344 C 77.253906 354.628906 76.222656 353.597656 74.949219 353.597656 C 73.675781 353.597656 72.644531 354.628906 72.644531 355.902344 C 72.644531 357.175781 73.675781 358.207031 74.949219 358.207031 C 76.222656 358.207031 77.253906 357.175781 77.253906 355.902344 Z M 77.253906 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.941406 355.902344 C 81.941406 354.628906 80.910156 353.597656 79.636719 353.597656 C 78.363281 353.597656 77.332031 354.628906 77.332031 355.902344 C 77.332031 357.175781 78.363281 358.207031 79.636719 358.207031 C 80.910156 358.207031 81.941406 357.175781 81.941406 355.902344 Z M 81.941406 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.371094 355.902344 C 96.371094 354.628906 95.339844 353.597656 94.066406 353.597656 C 92.792969 353.597656 91.761719 354.628906 91.761719 355.902344 C 91.761719 357.175781 92.792969 358.207031 94.066406 358.207031 C 95.339844 358.207031 96.371094 357.175781 96.371094 355.902344 Z M 96.371094 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.8125 355.902344 C 92.8125 354.628906 91.78125 353.597656 90.507812 353.597656 C 89.234375 353.597656 88.203125 354.628906 88.203125 355.902344 C 88.203125 357.175781 89.234375 358.207031 90.507812 358.207031 C 91.78125 358.207031 92.8125 357.175781 92.8125 355.902344 Z M 92.8125 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.25 355.902344 C 85.25 354.628906 84.21875 353.597656 82.945312 353.597656 C 81.671875 353.597656 80.640625 354.628906 80.640625 355.902344 C 80.640625 357.175781 81.671875 358.207031 82.945312 358.207031 C 84.21875 358.207031 85.25 357.175781 85.25 355.902344 Z M 85.25 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 97.304688 355.902344 C 97.304688 354.628906 96.273438 353.597656 95 353.597656 C 93.726562 353.597656 92.695312 354.628906 92.695312 355.902344 C 92.695312 357.175781 93.726562 358.207031 95 358.207031 C 96.273438 358.207031 97.304688 357.175781 97.304688 355.902344 Z M 97.304688 355.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.289062 351.058594 C 77.289062 349.785156 76.257812 348.753906 74.984375 348.753906 C 73.710938 348.753906 72.679688 349.785156 72.679688 351.058594 C 72.679688 352.332031 73.710938 353.363281 74.984375 353.363281 C 76.257812 353.363281 77.289062 352.332031 77.289062 351.058594 Z M 77.289062 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 97.710938 351.058594 C 97.710938 349.785156 96.679688 348.753906 95.40625 348.753906 C 94.132812 348.753906 93.101562 349.785156 93.101562 351.058594 C 93.101562 352.332031 94.132812 353.363281 95.40625 353.363281 C 96.679688 353.363281 97.710938 352.332031 97.710938 351.058594 Z M 97.710938 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.238281 351.058594 C 85.238281 349.785156 84.207031 348.753906 82.933594 348.753906 C 81.660156 348.753906 80.628906 349.785156 80.628906 351.058594 C 80.628906 352.332031 81.660156 353.363281 82.933594 353.363281 C 84.207031 353.363281 85.238281 352.332031 85.238281 351.058594 Z M 85.238281 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.523438 351.058594 C 96.523438 349.785156 95.492188 348.753906 94.21875 348.753906 C 92.945312 348.753906 91.914062 349.785156 91.914062 351.058594 C 91.914062 352.332031 92.945312 353.363281 94.21875 353.363281 C 95.492188 353.363281 96.523438 352.332031 96.523438 351.058594 Z M 96.523438 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.902344 351.058594 C 92.902344 349.785156 91.871094 348.753906 90.597656 348.753906 C 89.324219 348.753906 88.292969 349.785156 88.292969 351.058594 C 88.292969 352.332031 89.324219 353.363281 90.597656 353.363281 C 91.871094 353.363281 92.902344 352.332031 92.902344 351.058594 Z M 92.902344 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.730469 351.058594 C 87.730469 349.785156 86.699219 348.753906 85.425781 348.753906 C 84.152344 348.753906 83.121094 349.785156 83.121094 351.058594 C 83.121094 352.332031 84.152344 353.363281 85.425781 353.363281 C 86.699219 353.363281 87.730469 352.332031 87.730469 351.058594 Z M 87.730469 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.933594 351.058594 C 84.933594 349.785156 83.902344 348.753906 82.628906 348.753906 C 81.355469 348.753906 80.324219 349.785156 80.324219 351.058594 C 80.324219 352.332031 81.355469 353.363281 82.628906 353.363281 C 83.902344 353.363281 84.933594 352.332031 84.933594 351.058594 Z M 84.933594 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.242188 351.058594 C 94.242188 349.785156 93.210938 348.753906 91.9375 348.753906 C 90.664062 348.753906 89.632812 349.785156 89.632812 351.058594 C 89.632812 352.332031 90.664062 353.363281 91.9375 353.363281 C 93.210938 353.363281 94.242188 352.332031 94.242188 351.058594 Z M 94.242188 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.007812 351.058594 C 75.007812 349.785156 73.976562 348.753906 72.703125 348.753906 C 71.429688 348.753906 70.398438 349.785156 70.398438 351.058594 C 70.398438 352.332031 71.429688 353.363281 72.703125 353.363281 C 73.976562 353.363281 75.007812 352.332031 75.007812 351.058594 Z M 75.007812 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.921875 351.058594 C 85.921875 349.785156 84.890625 348.753906 83.617188 348.753906 C 82.34375 348.753906 81.3125 349.785156 81.3125 351.058594 C 81.3125 352.332031 82.34375 353.363281 83.617188 353.363281 C 84.890625 353.363281 85.921875 352.332031 85.921875 351.058594 Z M 85.921875 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.425781 351.058594 C 99.425781 349.785156 98.394531 348.753906 97.121094 348.753906 C 95.847656 348.753906 94.816406 349.785156 94.816406 351.058594 C 94.816406 352.332031 95.847656 353.363281 97.121094 353.363281 C 98.394531 353.363281 99.425781 352.332031 99.425781 351.058594 Z M 99.425781 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.171875 351.058594 C 86.171875 349.785156 85.140625 348.753906 83.867188 348.753906 C 82.59375 348.753906 81.5625 349.785156 81.5625 351.058594 C 81.5625 352.332031 82.59375 353.363281 83.867188 353.363281 C 85.140625 353.363281 86.171875 352.332031 86.171875 351.058594 Z M 86.171875 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.675781 351.058594 C 77.675781 349.785156 76.644531 348.753906 75.371094 348.753906 C 74.097656 348.753906 73.066406 349.785156 73.066406 351.058594 C 73.066406 352.332031 74.097656 353.363281 75.371094 353.363281 C 76.644531 353.363281 77.675781 352.332031 77.675781 351.058594 Z M 77.675781 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.867188 351.058594 C 91.867188 349.785156 90.835938 348.753906 89.5625 348.753906 C 88.289062 348.753906 87.257812 349.785156 87.257812 351.058594 C 87.257812 352.332031 88.289062 353.363281 89.5625 353.363281 C 90.835938 353.363281 91.867188 352.332031 91.867188 351.058594 Z M 91.867188 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.574219 351.058594 C 91.574219 349.785156 90.542969 348.753906 89.269531 348.753906 C 87.996094 348.753906 86.964844 349.785156 86.964844 351.058594 C 86.964844 352.332031 87.996094 353.363281 89.269531 353.363281 C 90.542969 353.363281 91.574219 352.332031 91.574219 351.058594 Z M 91.574219 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.085938 351.058594 C 74.085938 349.785156 73.054688 348.753906 71.78125 348.753906 C 70.507812 348.753906 69.476562 349.785156 69.476562 351.058594 C 69.476562 352.332031 70.507812 353.363281 71.78125 353.363281 C 73.054688 353.363281 74.085938 352.332031 74.085938 351.058594 Z M 74.085938 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.226562 351.058594 C 81.226562 349.785156 80.195312 348.753906 78.921875 348.753906 C 77.648438 348.753906 76.617188 349.785156 76.617188 351.058594 C 76.617188 352.332031 77.648438 353.363281 78.921875 353.363281 C 80.195312 353.363281 81.226562 352.332031 81.226562 351.058594 Z M 81.226562 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.480469 351.058594 C 92.480469 349.785156 91.449219 348.753906 90.175781 348.753906 C 88.902344 348.753906 87.871094 349.785156 87.871094 351.058594 C 87.871094 352.332031 88.902344 353.363281 90.175781 353.363281 C 91.449219 353.363281 92.480469 352.332031 92.480469 351.058594 Z M 92.480469 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.589844 351.058594 C 87.589844 349.785156 86.558594 348.753906 85.285156 348.753906 C 84.011719 348.753906 82.980469 349.785156 82.980469 351.058594 C 82.980469 352.332031 84.011719 353.363281 85.285156 353.363281 C 86.558594 353.363281 87.589844 352.332031 87.589844 351.058594 Z M 87.589844 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.523438 351.058594 C 82.523438 349.785156 81.492188 348.753906 80.21875 348.753906 C 78.945312 348.753906 77.914062 349.785156 77.914062 351.058594 C 77.914062 352.332031 78.945312 353.363281 80.21875 353.363281 C 81.492188 353.363281 82.523438 352.332031 82.523438 351.058594 Z M 82.523438 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.699219 351.058594 C 99.699219 349.785156 98.667969 348.753906 97.394531 348.753906 C 96.121094 348.753906 95.089844 349.785156 95.089844 351.058594 C 95.089844 352.332031 96.121094 353.363281 97.394531 353.363281 C 98.667969 353.363281 99.699219 352.332031 99.699219 351.058594 Z M 99.699219 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.355469 351.058594 C 85.355469 349.785156 84.324219 348.753906 83.050781 348.753906 C 81.777344 348.753906 80.746094 349.785156 80.746094 351.058594 C 80.746094 352.332031 81.777344 353.363281 83.050781 353.363281 C 84.324219 353.363281 85.355469 352.332031 85.355469 351.058594 Z M 85.355469 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 89.421875 351.058594 C 89.421875 349.785156 88.390625 348.753906 87.117188 348.753906 C 85.84375 348.753906 84.8125 349.785156 84.8125 351.058594 C 84.8125 352.332031 85.84375 353.363281 87.117188 353.363281 C 88.390625 353.363281 89.421875 352.332031 89.421875 351.058594 Z M 89.421875 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.734375 351.058594 C 96.734375 349.785156 95.703125 348.753906 94.429688 348.753906 C 93.15625 348.753906 92.125 349.785156 92.125 351.058594 C 92.125 352.332031 93.15625 353.363281 94.429688 353.363281 C 95.703125 353.363281 96.734375 352.332031 96.734375 351.058594 Z M 96.734375 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.4375 351.058594 C 76.4375 349.785156 75.40625 348.753906 74.132812 348.753906 C 72.859375 348.753906 71.828125 349.785156 71.828125 351.058594 C 71.828125 352.332031 72.859375 353.363281 74.132812 353.363281 C 75.40625 353.363281 76.4375 352.332031 76.4375 351.058594 Z M 76.4375 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.855469 351.058594 C 81.855469 349.785156 80.824219 348.753906 79.550781 348.753906 C 78.277344 348.753906 77.246094 349.785156 77.246094 351.058594 C 77.246094 352.332031 78.277344 353.363281 79.550781 353.363281 C 80.824219 353.363281 81.855469 352.332031 81.855469 351.058594 Z M 81.855469 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 98.542969 351.058594 C 98.542969 349.785156 97.511719 348.753906 96.238281 348.753906 C 94.964844 348.753906 93.933594 349.785156 93.933594 351.058594 C 93.933594 352.332031 94.964844 353.363281 96.238281 353.363281 C 97.511719 353.363281 98.542969 352.332031 98.542969 351.058594 Z M 98.542969 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.429688 351.058594 C 94.429688 349.785156 93.398438 348.753906 92.125 348.753906 C 90.851562 348.753906 89.820312 349.785156 89.820312 351.058594 C 89.820312 352.332031 90.851562 353.363281 92.125 353.363281 C 93.398438 353.363281 94.429688 352.332031 94.429688 351.058594 Z M 94.429688 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.683594 351.058594 C 85.683594 349.785156 84.652344 348.753906 83.378906 348.753906 C 82.105469 348.753906 81.074219 349.785156 81.074219 351.058594 C 81.074219 352.332031 82.105469 353.363281 83.378906 353.363281 C 84.652344 353.363281 85.683594 352.332031 85.683594 351.058594 Z M 85.683594 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.625 351.058594 C 99.625 349.785156 98.59375 348.753906 97.320312 348.753906 C 96.046875 348.753906 95.015625 349.785156 95.015625 351.058594 C 95.015625 352.332031 96.046875 353.363281 97.320312 353.363281 C 98.59375 353.363281 99.625 352.332031 99.625 351.058594 Z M 99.625 351.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.359375 346.214844 C 76.359375 344.941406 75.328125 343.910156 74.054688 343.910156 C 72.78125 343.910156 71.75 344.941406 71.75 346.214844 C 71.75 347.488281 72.78125 348.519531 74.054688 348.519531 C 75.328125 348.519531 76.359375 347.488281 76.359375 346.214844 Z M 76.359375 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.339844 346.214844 C 99.339844 344.941406 98.308594 343.910156 97.035156 343.910156 C 95.761719 343.910156 94.730469 344.941406 94.730469 346.214844 C 94.730469 347.488281 95.761719 348.519531 97.035156 348.519531 C 98.308594 348.519531 99.339844 347.488281 99.339844 346.214844 Z M 99.339844 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.304688 346.214844 C 85.304688 344.941406 84.273438 343.910156 83 343.910156 C 81.726562 343.910156 80.695312 344.941406 80.695312 346.214844 C 80.695312 347.488281 81.726562 348.519531 83 348.519531 C 84.273438 348.519531 85.304688 347.488281 85.304688 346.214844 Z M 85.304688 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 98.003906 346.214844 C 98.003906 344.941406 96.972656 343.910156 95.699219 343.910156 C 94.425781 343.910156 93.394531 344.941406 93.394531 346.214844 C 93.394531 347.488281 94.425781 348.519531 95.699219 348.519531 C 96.972656 348.519531 98.003906 347.488281 98.003906 346.214844 Z M 98.003906 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.925781 346.214844 C 93.925781 344.941406 92.894531 343.910156 91.621094 343.910156 C 90.347656 343.910156 89.316406 344.941406 89.316406 346.214844 C 89.316406 347.488281 90.347656 348.519531 91.621094 348.519531 C 92.894531 348.519531 93.925781 347.488281 93.925781 346.214844 Z M 93.925781 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.109375 346.214844 C 88.109375 344.941406 87.078125 343.910156 85.804688 343.910156 C 84.53125 343.910156 83.5 344.941406 83.5 346.214844 C 83.5 347.488281 84.53125 348.519531 85.804688 348.519531 C 87.078125 348.519531 88.109375 347.488281 88.109375 346.214844 Z M 88.109375 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.964844 346.214844 C 84.964844 344.941406 83.933594 343.910156 82.660156 343.910156 C 81.386719 343.910156 80.355469 344.941406 80.355469 346.214844 C 80.355469 347.488281 81.386719 348.519531 82.660156 348.519531 C 83.933594 348.519531 84.964844 347.488281 84.964844 346.214844 Z M 84.964844 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 95.4375 346.214844 C 95.4375 344.941406 94.40625 343.910156 93.132812 343.910156 C 91.859375 343.910156 90.828125 344.941406 90.828125 346.214844 C 90.828125 347.488281 91.859375 348.519531 93.132812 348.519531 C 94.40625 348.519531 95.4375 347.488281 95.4375 346.214844 Z M 95.4375 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.792969 346.214844 C 73.792969 344.941406 72.761719 343.910156 71.488281 343.910156 C 70.214844 343.910156 69.183594 344.941406 69.183594 346.214844 C 69.183594 347.488281 70.214844 348.519531 71.488281 348.519531 C 72.761719 348.519531 73.792969 347.488281 73.792969 346.214844 Z M 73.792969 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.074219 346.214844 C 86.074219 344.941406 85.042969 343.910156 83.769531 343.910156 C 82.496094 343.910156 81.464844 344.941406 81.464844 346.214844 C 81.464844 347.488281 82.496094 348.519531 83.769531 348.519531 C 85.042969 348.519531 86.074219 347.488281 86.074219 346.214844 Z M 86.074219 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 101.269531 346.214844 C 101.269531 344.941406 100.238281 343.910156 98.964844 343.910156 C 97.691406 343.910156 96.660156 344.941406 96.660156 346.214844 C 96.660156 347.488281 97.691406 348.519531 98.964844 348.519531 C 100.238281 348.519531 101.269531 347.488281 101.269531 346.214844 Z M 101.269531 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.355469 346.214844 C 86.355469 344.941406 85.324219 343.910156 84.050781 343.910156 C 82.777344 343.910156 81.746094 344.941406 81.746094 346.214844 C 81.746094 347.488281 82.777344 348.519531 84.050781 348.519531 C 85.324219 348.519531 86.355469 347.488281 86.355469 346.214844 Z M 86.355469 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.792969 346.214844 C 76.792969 344.941406 75.761719 343.910156 74.488281 343.910156 C 73.214844 343.910156 72.183594 344.941406 72.183594 346.214844 C 72.183594 347.488281 73.214844 348.519531 74.488281 348.519531 C 75.761719 348.519531 76.792969 347.488281 76.792969 346.214844 Z M 76.792969 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.765625 346.214844 C 92.765625 344.941406 91.734375 343.910156 90.460938 343.910156 C 89.1875 343.910156 88.15625 344.941406 88.15625 346.214844 C 88.15625 347.488281 89.1875 348.519531 90.460938 348.519531 C 91.734375 348.519531 92.765625 347.488281 92.765625 346.214844 Z M 92.765625 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.4375 346.214844 C 92.4375 344.941406 91.40625 343.910156 90.132812 343.910156 C 88.859375 343.910156 87.828125 344.941406 87.828125 346.214844 C 87.828125 347.488281 88.859375 348.519531 90.132812 348.519531 C 91.40625 348.519531 92.4375 347.488281 92.4375 346.214844 Z M 92.4375 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.757812 346.214844 C 72.757812 344.941406 71.726562 343.910156 70.453125 343.910156 C 69.179688 343.910156 68.148438 344.941406 68.148438 346.214844 C 68.148438 347.488281 69.179688 348.519531 70.453125 348.519531 C 71.726562 348.519531 72.757812 347.488281 72.757812 346.214844 Z M 72.757812 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.789062 346.214844 C 80.789062 344.941406 79.757812 343.910156 78.484375 343.910156 C 77.210938 343.910156 76.179688 344.941406 76.179688 346.214844 C 76.179688 347.488281 77.210938 348.519531 78.484375 348.519531 C 79.757812 348.519531 80.789062 347.488281 80.789062 346.214844 Z M 80.789062 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.453125 346.214844 C 93.453125 344.941406 92.421875 343.910156 91.148438 343.910156 C 89.875 343.910156 88.84375 344.941406 88.84375 346.214844 C 88.84375 347.488281 89.875 348.519531 91.148438 348.519531 C 92.421875 348.519531 93.453125 347.488281 93.453125 346.214844 Z M 93.453125 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.953125 346.214844 C 87.953125 344.941406 86.921875 343.910156 85.648438 343.910156 C 84.375 343.910156 83.34375 344.941406 83.34375 346.214844 C 83.34375 347.488281 84.375 348.519531 85.648438 348.519531 C 86.921875 348.519531 87.953125 347.488281 87.953125 346.214844 Z M 87.953125 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.25 346.214844 C 82.25 344.941406 81.21875 343.910156 79.945312 343.910156 C 78.671875 343.910156 77.640625 344.941406 77.640625 346.214844 C 77.640625 347.488281 78.671875 348.519531 79.945312 348.519531 C 81.21875 348.519531 82.25 347.488281 82.25 346.214844 Z M 82.25 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 101.574219 346.214844 C 101.574219 344.941406 100.542969 343.910156 99.269531 343.910156 C 97.996094 343.910156 96.964844 344.941406 96.964844 346.214844 C 96.964844 347.488281 97.996094 348.519531 99.269531 348.519531 C 100.542969 348.519531 101.574219 347.488281 101.574219 346.214844 Z M 101.574219 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.4375 346.214844 C 85.4375 344.941406 84.40625 343.910156 83.132812 343.910156 C 81.859375 343.910156 80.828125 344.941406 80.828125 346.214844 C 80.828125 347.488281 81.859375 348.519531 83.132812 348.519531 C 84.40625 348.519531 85.4375 347.488281 85.4375 346.214844 Z M 85.4375 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.011719 346.214844 C 90.011719 344.941406 88.980469 343.910156 87.707031 343.910156 C 86.433594 343.910156 85.402344 344.941406 85.402344 346.214844 C 85.402344 347.488281 86.433594 348.519531 87.707031 348.519531 C 88.980469 348.519531 90.011719 347.488281 90.011719 346.214844 Z M 90.011719 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 98.242188 346.214844 C 98.242188 344.941406 97.210938 343.910156 95.9375 343.910156 C 94.664062 343.910156 93.632812 344.941406 93.632812 346.214844 C 93.632812 347.488281 94.664062 348.519531 95.9375 348.519531 C 97.210938 348.519531 98.242188 347.488281 98.242188 346.214844 Z M 98.242188 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.402344 346.214844 C 75.402344 344.941406 74.371094 343.910156 73.097656 343.910156 C 71.824219 343.910156 70.792969 344.941406 70.792969 346.214844 C 70.792969 347.488281 71.824219 348.519531 73.097656 348.519531 C 74.371094 348.519531 75.402344 347.488281 75.402344 346.214844 Z M 75.402344 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.496094 346.214844 C 81.496094 344.941406 80.464844 343.910156 79.191406 343.910156 C 77.917969 343.910156 76.886719 344.941406 76.886719 346.214844 C 76.886719 347.488281 77.917969 348.519531 79.191406 348.519531 C 80.464844 348.519531 81.496094 347.488281 81.496094 346.214844 Z M 81.496094 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.277344 346.214844 C 100.277344 344.941406 99.246094 343.910156 97.972656 343.910156 C 96.699219 343.910156 95.667969 344.941406 95.667969 346.214844 C 95.667969 347.488281 96.699219 348.519531 97.972656 348.519531 C 99.246094 348.519531 100.277344 347.488281 100.277344 346.214844 Z M 100.277344 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 95.644531 346.214844 C 95.644531 344.941406 94.613281 343.910156 93.339844 343.910156 C 92.066406 343.910156 91.035156 344.941406 91.035156 346.214844 C 91.035156 347.488281 92.066406 348.519531 93.339844 348.519531 C 94.613281 348.519531 95.644531 347.488281 95.644531 346.214844 Z M 95.644531 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.808594 346.214844 C 85.808594 344.941406 84.777344 343.910156 83.503906 343.910156 C 82.230469 343.910156 81.199219 344.941406 81.199219 346.214844 C 81.199219 347.488281 82.230469 348.519531 83.503906 348.519531 C 84.777344 348.519531 85.808594 347.488281 85.808594 346.214844 Z M 85.808594 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 101.492188 346.214844 C 101.492188 344.941406 100.460938 343.910156 99.1875 343.910156 C 97.914062 343.910156 96.882812 344.941406 96.882812 346.214844 C 96.882812 347.488281 97.914062 348.519531 99.1875 348.519531 C 100.460938 348.519531 101.492188 347.488281 101.492188 346.214844 Z M 101.492188 346.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.210938 341.371094 C 75.210938 340.097656 74.179688 339.066406 72.90625 339.066406 C 71.632812 339.066406 70.601562 340.097656 70.601562 341.371094 C 70.601562 342.644531 71.632812 343.675781 72.90625 343.675781 C 74.179688 343.675781 75.210938 342.644531 75.210938 341.371094 Z M 75.210938 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.519531 341.371094 C 100.519531 340.097656 99.488281 339.066406 98.214844 339.066406 C 96.941406 339.066406 95.910156 340.097656 95.910156 341.371094 C 95.910156 342.644531 96.941406 343.675781 98.214844 343.675781 C 99.488281 343.675781 100.519531 342.644531 100.519531 341.371094 Z M 100.519531 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.0625 341.371094 C 85.0625 340.097656 84.03125 339.066406 82.757812 339.066406 C 81.484375 339.066406 80.453125 340.097656 80.453125 341.371094 C 80.453125 342.644531 81.484375 343.675781 82.757812 343.675781 C 84.03125 343.675781 85.0625 342.644531 85.0625 341.371094 Z M 85.0625 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.046875 341.371094 C 99.046875 340.097656 98.015625 339.066406 96.742188 339.066406 C 95.46875 339.066406 94.4375 340.097656 94.4375 341.371094 C 94.4375 342.644531 95.46875 343.675781 96.742188 343.675781 C 98.015625 343.675781 99.046875 342.644531 99.046875 341.371094 Z M 99.046875 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.558594 341.371094 C 94.558594 340.097656 93.527344 339.066406 92.253906 339.066406 C 90.980469 339.066406 89.949219 340.097656 89.949219 341.371094 C 89.949219 342.644531 90.980469 343.675781 92.253906 343.675781 C 93.527344 343.675781 94.558594 342.644531 94.558594 341.371094 Z M 94.558594 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.152344 341.371094 C 88.152344 340.097656 87.121094 339.066406 85.847656 339.066406 C 84.574219 339.066406 83.542969 340.097656 83.542969 341.371094 C 83.542969 342.644531 84.574219 343.675781 85.847656 343.675781 C 87.121094 343.675781 88.152344 342.644531 88.152344 341.371094 Z M 88.152344 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.6875 341.371094 C 84.6875 340.097656 83.65625 339.066406 82.382812 339.066406 C 81.109375 339.066406 80.078125 340.097656 80.078125 341.371094 C 80.078125 342.644531 81.109375 343.675781 82.382812 343.675781 C 83.65625 343.675781 84.6875 342.644531 84.6875 341.371094 Z M 84.6875 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.222656 341.371094 C 96.222656 340.097656 95.191406 339.066406 93.917969 339.066406 C 92.644531 339.066406 91.613281 340.097656 91.613281 341.371094 C 91.613281 342.644531 92.644531 343.675781 93.917969 343.675781 C 95.191406 343.675781 96.222656 342.644531 96.222656 341.371094 Z M 96.222656 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.382812 341.371094 C 72.382812 340.097656 71.351562 339.066406 70.078125 339.066406 C 68.804688 339.066406 67.773438 340.097656 67.773438 341.371094 C 67.773438 342.644531 68.804688 343.675781 70.078125 343.675781 C 71.351562 343.675781 72.382812 342.644531 72.382812 341.371094 Z M 72.382812 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.910156 341.371094 C 85.910156 340.097656 84.878906 339.066406 83.605469 339.066406 C 82.332031 339.066406 81.300781 340.097656 81.300781 341.371094 C 81.300781 342.644531 82.332031 343.675781 83.605469 343.675781 C 84.878906 343.675781 85.910156 342.644531 85.910156 341.371094 Z M 85.910156 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 102.644531 341.371094 C 102.644531 340.097656 101.613281 339.066406 100.339844 339.066406 C 99.066406 339.066406 98.035156 340.097656 98.035156 341.371094 C 98.035156 342.644531 99.066406 343.675781 100.339844 343.675781 C 101.613281 343.675781 102.644531 342.644531 102.644531 341.371094 Z M 102.644531 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.222656 341.371094 C 86.222656 340.097656 85.191406 339.066406 83.917969 339.066406 C 82.644531 339.066406 81.613281 340.097656 81.613281 341.371094 C 81.613281 342.644531 82.644531 343.675781 83.917969 343.675781 C 85.191406 343.675781 86.222656 342.644531 86.222656 341.371094 Z M 86.222656 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.691406 341.371094 C 75.691406 340.097656 74.660156 339.066406 73.386719 339.066406 C 72.113281 339.066406 71.082031 340.097656 71.082031 341.371094 C 71.082031 342.644531 72.113281 343.675781 73.386719 343.675781 C 74.660156 343.675781 75.691406 342.644531 75.691406 341.371094 Z M 75.691406 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.277344 341.371094 C 93.277344 340.097656 92.246094 339.066406 90.972656 339.066406 C 89.699219 339.066406 88.667969 340.097656 88.667969 341.371094 C 88.667969 342.644531 89.699219 343.675781 90.972656 343.675781 C 92.246094 343.675781 93.277344 342.644531 93.277344 341.371094 Z M 93.277344 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.917969 341.371094 C 92.917969 340.097656 91.886719 339.066406 90.613281 339.066406 C 89.339844 339.066406 88.308594 340.097656 88.308594 341.371094 C 88.308594 342.644531 89.339844 343.675781 90.613281 343.675781 C 91.886719 343.675781 92.917969 342.644531 92.917969 341.371094 Z M 92.917969 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.242188 341.371094 C 71.242188 340.097656 70.210938 339.066406 68.9375 339.066406 C 67.664062 339.066406 66.632812 340.097656 66.632812 341.371094 C 66.632812 342.644531 67.664062 343.675781 68.9375 343.675781 C 70.210938 343.675781 71.242188 342.644531 71.242188 341.371094 Z M 71.242188 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.089844 341.371094 C 80.089844 340.097656 79.058594 339.066406 77.785156 339.066406 C 76.511719 339.066406 75.480469 340.097656 75.480469 341.371094 C 75.480469 342.644531 76.511719 343.675781 77.785156 343.675781 C 79.058594 343.675781 80.089844 342.644531 80.089844 341.371094 Z M 80.089844 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.039062 341.371094 C 94.039062 340.097656 93.007812 339.066406 91.734375 339.066406 C 90.460938 339.066406 89.429688 340.097656 89.429688 341.371094 C 89.429688 342.644531 90.460938 343.675781 91.734375 343.675781 C 93.007812 343.675781 94.039062 342.644531 94.039062 341.371094 Z M 94.039062 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.976562 341.371094 C 87.976562 340.097656 86.945312 339.066406 85.671875 339.066406 C 84.398438 339.066406 83.367188 340.097656 83.367188 341.371094 C 83.367188 342.644531 84.398438 343.675781 85.671875 343.675781 C 86.945312 343.675781 87.976562 342.644531 87.976562 341.371094 Z M 87.976562 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.699219 341.371094 C 81.699219 340.097656 80.667969 339.066406 79.394531 339.066406 C 78.121094 339.066406 77.089844 340.097656 77.089844 341.371094 C 77.089844 342.644531 78.121094 343.675781 79.394531 343.675781 C 80.667969 343.675781 81.699219 342.644531 81.699219 341.371094 Z M 81.699219 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 102.980469 341.371094 C 102.980469 340.097656 101.949219 339.066406 100.675781 339.066406 C 99.402344 339.066406 98.371094 340.097656 98.371094 341.371094 C 98.371094 342.644531 99.402344 343.675781 100.675781 343.675781 C 101.949219 343.675781 102.980469 342.644531 102.980469 341.371094 Z M 102.980469 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.210938 341.371094 C 85.210938 340.097656 84.179688 339.066406 82.90625 339.066406 C 81.632812 339.066406 80.601562 340.097656 80.601562 341.371094 C 80.601562 342.644531 81.632812 343.675781 82.90625 343.675781 C 84.179688 343.675781 85.210938 342.644531 85.210938 341.371094 Z M 85.210938 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.246094 341.371094 C 90.246094 340.097656 89.214844 339.066406 87.941406 339.066406 C 86.667969 339.066406 85.636719 340.097656 85.636719 341.371094 C 85.636719 342.644531 86.667969 343.675781 87.941406 343.675781 C 89.214844 343.675781 90.246094 342.644531 90.246094 341.371094 Z M 90.246094 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.3125 341.371094 C 99.3125 340.097656 98.28125 339.066406 97.007812 339.066406 C 95.734375 339.066406 94.703125 340.097656 94.703125 341.371094 C 94.703125 342.644531 95.734375 343.675781 97.007812 343.675781 C 98.28125 343.675781 99.3125 342.644531 99.3125 341.371094 Z M 99.3125 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.15625 341.371094 C 74.15625 340.097656 73.125 339.066406 71.851562 339.066406 C 70.578125 339.066406 69.546875 340.097656 69.546875 341.371094 C 69.546875 342.644531 70.578125 343.675781 71.851562 343.675781 C 73.125 343.675781 74.15625 342.644531 74.15625 341.371094 Z M 74.15625 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.871094 341.371094 C 80.871094 340.097656 79.839844 339.066406 78.566406 339.066406 C 77.292969 339.066406 76.261719 340.097656 76.261719 341.371094 C 76.261719 342.644531 77.292969 343.675781 78.566406 343.675781 C 79.839844 343.675781 80.871094 342.644531 80.871094 341.371094 Z M 80.871094 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 101.550781 341.371094 C 101.550781 340.097656 100.519531 339.066406 99.246094 339.066406 C 97.972656 339.066406 96.941406 340.097656 96.941406 341.371094 C 96.941406 342.644531 97.972656 343.675781 99.246094 343.675781 C 100.519531 343.675781 101.550781 342.644531 101.550781 341.371094 Z M 101.550781 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.453125 341.371094 C 96.453125 340.097656 95.421875 339.066406 94.148438 339.066406 C 92.875 339.066406 91.84375 340.097656 91.84375 341.371094 C 91.84375 342.644531 92.875 343.675781 94.148438 343.675781 C 95.421875 343.675781 96.453125 342.644531 96.453125 341.371094 Z M 96.453125 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.617188 341.371094 C 85.617188 340.097656 84.585938 339.066406 83.3125 339.066406 C 82.039062 339.066406 81.007812 340.097656 81.007812 341.371094 C 81.007812 342.644531 82.039062 343.675781 83.3125 343.675781 C 84.585938 343.675781 85.617188 342.644531 85.617188 341.371094 Z M 85.617188 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 102.890625 341.371094 C 102.890625 340.097656 101.859375 339.066406 100.585938 339.066406 C 99.3125 339.066406 98.28125 340.097656 98.28125 341.371094 C 98.28125 342.644531 99.3125 343.675781 100.585938 343.675781 C 101.859375 343.675781 102.890625 342.644531 102.890625 341.371094 Z M 102.890625 341.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.855469 336.527344 C 73.855469 335.253906 72.824219 334.222656 71.550781 334.222656 C 70.277344 334.222656 69.246094 335.253906 69.246094 336.527344 C 69.246094 337.800781 70.277344 338.832031 71.550781 338.832031 C 72.824219 338.832031 73.855469 337.800781 73.855469 336.527344 Z M 73.855469 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 101.238281 336.527344 C 101.238281 335.253906 100.207031 334.222656 98.933594 334.222656 C 97.660156 334.222656 96.628906 335.253906 96.628906 336.527344 C 96.628906 337.800781 97.660156 338.832031 98.933594 338.832031 C 100.207031 338.832031 101.238281 337.800781 101.238281 336.527344 Z M 101.238281 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.515625 336.527344 C 84.515625 335.253906 83.484375 334.222656 82.210938 334.222656 C 80.9375 334.222656 79.90625 335.253906 79.90625 336.527344 C 79.90625 337.800781 80.9375 338.832031 82.210938 338.832031 C 83.484375 338.832031 84.515625 337.800781 84.515625 336.527344 Z M 84.515625 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.648438 336.527344 C 99.648438 335.253906 98.617188 334.222656 97.34375 334.222656 C 96.070312 334.222656 95.039062 335.253906 95.039062 336.527344 C 95.039062 337.800781 96.070312 338.832031 97.34375 338.832031 C 98.617188 338.832031 99.648438 337.800781 99.648438 336.527344 Z M 99.648438 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.792969 336.527344 C 94.792969 335.253906 93.761719 334.222656 92.488281 334.222656 C 91.214844 334.222656 90.183594 335.253906 90.183594 336.527344 C 90.183594 337.800781 91.214844 338.832031 92.488281 338.832031 C 93.761719 338.832031 94.792969 337.800781 94.792969 336.527344 Z M 94.792969 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.859375 336.527344 C 87.859375 335.253906 86.828125 334.222656 85.554688 334.222656 C 84.28125 334.222656 83.25 335.253906 83.25 336.527344 C 83.25 337.800781 84.28125 338.832031 85.554688 338.832031 C 86.828125 338.832031 87.859375 337.800781 87.859375 336.527344 Z M 87.859375 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.109375 336.527344 C 84.109375 335.253906 83.078125 334.222656 81.804688 334.222656 C 80.53125 334.222656 79.5 335.253906 79.5 336.527344 C 79.5 337.800781 80.53125 338.832031 81.804688 338.832031 C 83.078125 338.832031 84.109375 337.800781 84.109375 336.527344 Z M 84.109375 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.589844 336.527344 C 96.589844 335.253906 95.558594 334.222656 94.285156 334.222656 C 93.011719 334.222656 91.980469 335.253906 91.980469 336.527344 C 91.980469 337.800781 93.011719 338.832031 94.285156 338.832031 C 95.558594 338.832031 96.589844 337.800781 96.589844 336.527344 Z M 96.589844 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.796875 336.527344 C 70.796875 335.253906 69.765625 334.222656 68.492188 334.222656 C 67.21875 334.222656 66.1875 335.253906 66.1875 336.527344 C 66.1875 337.800781 67.21875 338.832031 68.492188 338.832031 C 69.765625 338.832031 70.796875 337.800781 70.796875 336.527344 Z M 70.796875 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.433594 336.527344 C 85.433594 335.253906 84.402344 334.222656 83.128906 334.222656 C 81.855469 334.222656 80.824219 335.253906 80.824219 336.527344 C 80.824219 337.800781 81.855469 338.832031 83.128906 338.832031 C 84.402344 338.832031 85.433594 337.800781 85.433594 336.527344 Z M 85.433594 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 103.539062 336.527344 C 103.539062 335.253906 102.507812 334.222656 101.234375 334.222656 C 99.960938 334.222656 98.929688 335.253906 98.929688 336.527344 C 98.929688 337.800781 99.960938 338.832031 101.234375 338.832031 C 102.507812 338.832031 103.539062 337.800781 103.539062 336.527344 Z M 103.539062 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.769531 336.527344 C 85.769531 335.253906 84.738281 334.222656 83.464844 334.222656 C 82.191406 334.222656 81.160156 335.253906 81.160156 336.527344 C 81.160156 337.800781 82.191406 338.832031 83.464844 338.832031 C 84.738281 338.832031 85.769531 337.800781 85.769531 336.527344 Z M 85.769531 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.375 336.527344 C 74.375 335.253906 73.34375 334.222656 72.070312 334.222656 C 70.796875 334.222656 69.765625 335.253906 69.765625 336.527344 C 69.765625 337.800781 70.796875 338.832031 72.070312 338.832031 C 73.34375 338.832031 74.375 337.800781 74.375 336.527344 Z M 74.375 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.402344 336.527344 C 93.402344 335.253906 92.371094 334.222656 91.097656 334.222656 C 89.824219 334.222656 88.792969 335.253906 88.792969 336.527344 C 88.792969 337.800781 89.824219 338.832031 91.097656 338.832031 C 92.371094 338.832031 93.402344 337.800781 93.402344 336.527344 Z M 93.402344 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.011719 336.527344 C 93.011719 335.253906 91.980469 334.222656 90.707031 334.222656 C 89.433594 334.222656 88.402344 335.253906 88.402344 336.527344 C 88.402344 337.800781 89.433594 338.832031 90.707031 338.832031 C 91.980469 338.832031 93.011719 337.800781 93.011719 336.527344 Z M 93.011719 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.5625 336.527344 C 69.5625 335.253906 68.53125 334.222656 67.257812 334.222656 C 65.984375 334.222656 64.953125 335.253906 64.953125 336.527344 C 64.953125 337.800781 65.984375 338.832031 67.257812 338.832031 C 68.53125 338.832031 69.5625 337.800781 69.5625 336.527344 Z M 69.5625 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.136719 336.527344 C 79.136719 335.253906 78.105469 334.222656 76.832031 334.222656 C 75.558594 334.222656 74.527344 335.253906 74.527344 336.527344 C 74.527344 337.800781 75.558594 338.832031 76.832031 338.832031 C 78.105469 338.832031 79.136719 337.800781 79.136719 336.527344 Z M 79.136719 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.226562 336.527344 C 94.226562 335.253906 93.195312 334.222656 91.921875 334.222656 C 90.648438 334.222656 89.617188 335.253906 89.617188 336.527344 C 89.617188 337.800781 90.648438 338.832031 91.921875 338.832031 C 93.195312 338.832031 94.226562 337.800781 94.226562 336.527344 Z M 94.226562 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.671875 336.527344 C 87.671875 335.253906 86.640625 334.222656 85.367188 334.222656 C 84.09375 334.222656 83.0625 335.253906 83.0625 336.527344 C 83.0625 337.800781 84.09375 338.832031 85.367188 338.832031 C 86.640625 338.832031 87.671875 337.800781 87.671875 336.527344 Z M 87.671875 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.878906 336.527344 C 80.878906 335.253906 79.847656 334.222656 78.574219 334.222656 C 77.300781 334.222656 76.269531 335.253906 76.269531 336.527344 C 76.269531 337.800781 77.300781 338.832031 78.574219 338.832031 C 79.847656 338.832031 80.878906 337.800781 80.878906 336.527344 Z M 80.878906 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 103.90625 336.527344 C 103.90625 335.253906 102.875 334.222656 101.601562 334.222656 C 100.328125 334.222656 99.296875 335.253906 99.296875 336.527344 C 99.296875 337.800781 100.328125 338.832031 101.601562 338.832031 C 102.875 338.832031 103.90625 337.800781 103.90625 336.527344 Z M 103.90625 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.675781 336.527344 C 84.675781 335.253906 83.644531 334.222656 82.371094 334.222656 C 81.097656 334.222656 80.066406 335.253906 80.066406 336.527344 C 80.066406 337.800781 81.097656 338.832031 82.371094 338.832031 C 83.644531 338.832031 84.675781 337.800781 84.675781 336.527344 Z M 84.675781 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.125 336.527344 C 90.125 335.253906 89.09375 334.222656 87.820312 334.222656 C 86.546875 334.222656 85.515625 335.253906 85.515625 336.527344 C 85.515625 337.800781 86.546875 338.832031 87.820312 338.832031 C 89.09375 338.832031 90.125 337.800781 90.125 336.527344 Z M 90.125 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.933594 336.527344 C 99.933594 335.253906 98.902344 334.222656 97.628906 334.222656 C 96.355469 334.222656 95.324219 335.253906 95.324219 336.527344 C 95.324219 337.800781 96.355469 338.832031 97.628906 338.832031 C 98.902344 338.832031 99.933594 337.800781 99.933594 336.527344 Z M 99.933594 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.714844 336.527344 C 72.714844 335.253906 71.683594 334.222656 70.410156 334.222656 C 69.136719 334.222656 68.105469 335.253906 68.105469 336.527344 C 68.105469 337.800781 69.136719 338.832031 70.410156 338.832031 C 71.683594 338.832031 72.714844 337.800781 72.714844 336.527344 Z M 72.714844 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.980469 336.527344 C 79.980469 335.253906 78.949219 334.222656 77.675781 334.222656 C 76.402344 334.222656 75.371094 335.253906 75.371094 336.527344 C 75.371094 337.800781 76.402344 338.832031 77.675781 338.832031 C 78.949219 338.832031 79.980469 337.800781 79.980469 336.527344 Z M 79.980469 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 102.355469 336.527344 C 102.355469 335.253906 101.324219 334.222656 100.050781 334.222656 C 98.777344 334.222656 97.746094 335.253906 97.746094 336.527344 C 97.746094 337.800781 98.777344 338.832031 100.050781 338.832031 C 101.324219 338.832031 102.355469 337.800781 102.355469 336.527344 Z M 102.355469 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.839844 336.527344 C 96.839844 335.253906 95.808594 334.222656 94.535156 334.222656 C 93.261719 334.222656 92.230469 335.253906 92.230469 336.527344 C 92.230469 337.800781 93.261719 338.832031 94.535156 338.832031 C 95.808594 338.832031 96.839844 337.800781 96.839844 336.527344 Z M 96.839844 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.113281 336.527344 C 85.113281 335.253906 84.082031 334.222656 82.808594 334.222656 C 81.535156 334.222656 80.503906 335.253906 80.503906 336.527344 C 80.503906 337.800781 81.535156 338.832031 82.808594 338.832031 C 84.082031 338.832031 85.113281 337.800781 85.113281 336.527344 Z M 85.113281 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 103.804688 336.527344 C 103.804688 335.253906 102.773438 334.222656 101.5 334.222656 C 100.226562 334.222656 99.195312 335.253906 99.195312 336.527344 C 99.195312 337.800781 100.226562 338.832031 101.5 338.832031 C 102.773438 338.832031 103.804688 337.800781 103.804688 336.527344 Z M 103.804688 336.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.308594 331.683594 C 72.308594 330.410156 71.277344 329.378906 70.003906 329.378906 C 68.730469 329.378906 67.699219 330.410156 67.699219 331.683594 C 67.699219 332.957031 68.730469 333.988281 70.003906 333.988281 C 71.277344 333.988281 72.308594 332.957031 72.308594 331.683594 Z M 72.308594 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 101.492188 331.683594 C 101.492188 330.410156 100.460938 329.378906 99.1875 329.378906 C 97.914062 329.378906 96.882812 330.410156 96.882812 331.683594 C 96.882812 332.957031 97.914062 333.988281 99.1875 333.988281 C 100.460938 333.988281 101.492188 332.957031 101.492188 331.683594 Z M 101.492188 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.667969 331.683594 C 83.667969 330.410156 82.636719 329.378906 81.363281 329.378906 C 80.089844 329.378906 79.058594 330.410156 79.058594 331.683594 C 79.058594 332.957031 80.089844 333.988281 81.363281 333.988281 C 82.636719 333.988281 83.667969 332.957031 83.667969 331.683594 Z M 83.667969 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.796875 331.683594 C 99.796875 330.410156 98.765625 329.378906 97.492188 329.378906 C 96.21875 329.378906 95.1875 330.410156 95.1875 331.683594 C 95.1875 332.957031 96.21875 333.988281 97.492188 333.988281 C 98.765625 333.988281 99.796875 332.957031 99.796875 331.683594 Z M 99.796875 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.621094 331.683594 C 94.621094 330.410156 93.589844 329.378906 92.316406 329.378906 C 91.042969 329.378906 90.011719 330.410156 90.011719 331.683594 C 90.011719 332.957031 91.042969 333.988281 92.316406 333.988281 C 93.589844 333.988281 94.621094 332.957031 94.621094 331.683594 Z M 94.621094 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.230469 331.683594 C 87.230469 330.410156 86.199219 329.378906 84.925781 329.378906 C 83.652344 329.378906 82.621094 330.410156 82.621094 331.683594 C 82.621094 332.957031 83.652344 333.988281 84.925781 333.988281 C 86.199219 333.988281 87.230469 332.957031 87.230469 331.683594 Z M 87.230469 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.234375 331.683594 C 83.234375 330.410156 82.203125 329.378906 80.929688 329.378906 C 79.65625 329.378906 78.625 330.410156 78.625 331.683594 C 78.625 332.957031 79.65625 333.988281 80.929688 333.988281 C 82.203125 333.988281 83.234375 332.957031 83.234375 331.683594 Z M 83.234375 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.539062 331.683594 C 96.539062 330.410156 95.507812 329.378906 94.234375 329.378906 C 92.960938 329.378906 91.929688 330.410156 91.929688 331.683594 C 91.929688 332.957031 92.960938 333.988281 94.234375 333.988281 C 95.507812 333.988281 96.539062 332.957031 96.539062 331.683594 Z M 96.539062 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.046875 331.683594 C 69.046875 330.410156 68.015625 329.378906 66.742188 329.378906 C 65.46875 329.378906 64.4375 330.410156 64.4375 331.683594 C 64.4375 332.957031 65.46875 333.988281 66.742188 333.988281 C 68.015625 333.988281 69.046875 332.957031 69.046875 331.683594 Z M 69.046875 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.648438 331.683594 C 84.648438 330.410156 83.617188 329.378906 82.34375 329.378906 C 81.070312 329.378906 80.039062 330.410156 80.039062 331.683594 C 80.039062 332.957031 81.070312 333.988281 82.34375 333.988281 C 83.617188 333.988281 84.648438 332.957031 84.648438 331.683594 Z M 84.648438 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 103.945312 331.683594 C 103.945312 330.410156 102.914062 329.378906 101.640625 329.378906 C 100.367188 329.378906 99.335938 330.410156 99.335938 331.683594 C 99.335938 332.957031 100.367188 333.988281 101.640625 333.988281 C 102.914062 333.988281 103.945312 332.957031 103.945312 331.683594 Z M 103.945312 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.003906 331.683594 C 85.003906 330.410156 83.972656 329.378906 82.699219 329.378906 C 81.425781 329.378906 80.394531 330.410156 80.394531 331.683594 C 80.394531 332.957031 81.425781 333.988281 82.699219 333.988281 C 83.972656 333.988281 85.003906 332.957031 85.003906 331.683594 Z M 85.003906 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.859375 331.683594 C 72.859375 330.410156 71.828125 329.378906 70.554688 329.378906 C 69.28125 329.378906 68.25 330.410156 68.25 331.683594 C 68.25 332.957031 69.28125 333.988281 70.554688 333.988281 C 71.828125 333.988281 72.859375 332.957031 72.859375 331.683594 Z M 72.859375 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.140625 331.683594 C 93.140625 330.410156 92.109375 329.378906 90.835938 329.378906 C 89.5625 329.378906 88.53125 330.410156 88.53125 331.683594 C 88.53125 332.957031 89.5625 333.988281 90.835938 333.988281 C 92.109375 333.988281 93.140625 332.957031 93.140625 331.683594 Z M 93.140625 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.726562 331.683594 C 92.726562 330.410156 91.695312 329.378906 90.421875 329.378906 C 89.148438 329.378906 88.117188 330.410156 88.117188 331.683594 C 88.117188 332.957031 89.148438 333.988281 90.421875 333.988281 C 91.695312 333.988281 92.726562 332.957031 92.726562 331.683594 Z M 92.726562 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.730469 331.683594 C 67.730469 330.410156 66.699219 329.378906 65.425781 329.378906 C 64.152344 329.378906 63.121094 330.410156 63.121094 331.683594 C 63.121094 332.957031 64.152344 333.988281 65.425781 333.988281 C 66.699219 333.988281 67.730469 332.957031 67.730469 331.683594 Z M 67.730469 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.933594 331.683594 C 77.933594 330.410156 76.902344 329.378906 75.628906 329.378906 C 74.355469 329.378906 73.324219 330.410156 73.324219 331.683594 C 73.324219 332.957031 74.355469 333.988281 75.628906 333.988281 C 76.902344 333.988281 77.933594 332.957031 77.933594 331.683594 Z M 77.933594 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.019531 331.683594 C 94.019531 330.410156 92.988281 329.378906 91.714844 329.378906 C 90.441406 329.378906 89.410156 330.410156 89.410156 331.683594 C 89.410156 332.957031 90.441406 333.988281 91.714844 333.988281 C 92.988281 333.988281 94.019531 332.957031 94.019531 331.683594 Z M 94.019531 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.03125 331.683594 C 87.03125 330.410156 86 329.378906 84.726562 329.378906 C 83.453125 329.378906 82.421875 330.410156 82.421875 331.683594 C 82.421875 332.957031 83.453125 333.988281 84.726562 333.988281 C 86 333.988281 87.03125 332.957031 87.03125 331.683594 Z M 87.03125 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.789062 331.683594 C 79.789062 330.410156 78.757812 329.378906 77.484375 329.378906 C 76.210938 329.378906 75.179688 330.410156 75.179688 331.683594 C 75.179688 332.957031 76.210938 333.988281 77.484375 333.988281 C 78.757812 333.988281 79.789062 332.957031 79.789062 331.683594 Z M 79.789062 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 104.332031 331.683594 C 104.332031 330.410156 103.300781 329.378906 102.027344 329.378906 C 100.753906 329.378906 99.722656 330.410156 99.722656 331.683594 C 99.722656 332.957031 100.753906 333.988281 102.027344 333.988281 C 103.300781 333.988281 104.332031 332.957031 104.332031 331.683594 Z M 104.332031 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.839844 331.683594 C 83.839844 330.410156 82.808594 329.378906 81.535156 329.378906 C 80.261719 329.378906 79.230469 330.410156 79.230469 331.683594 C 79.230469 332.957031 80.261719 333.988281 81.535156 333.988281 C 82.808594 333.988281 83.839844 332.957031 83.839844 331.683594 Z M 83.839844 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 89.648438 331.683594 C 89.648438 330.410156 88.617188 329.378906 87.34375 329.378906 C 86.070312 329.378906 85.039062 330.410156 85.039062 331.683594 C 85.039062 332.957031 86.070312 333.988281 87.34375 333.988281 C 88.617188 333.988281 89.648438 332.957031 89.648438 331.683594 Z M 89.648438 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.097656 331.683594 C 100.097656 330.410156 99.066406 329.378906 97.792969 329.378906 C 96.519531 329.378906 95.488281 330.410156 95.488281 331.683594 C 95.488281 332.957031 96.519531 333.988281 97.792969 333.988281 C 99.066406 333.988281 100.097656 332.957031 100.097656 331.683594 Z M 100.097656 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.089844 331.683594 C 71.089844 330.410156 70.058594 329.378906 68.785156 329.378906 C 67.511719 329.378906 66.480469 330.410156 66.480469 331.683594 C 66.480469 332.957031 67.511719 333.988281 68.785156 333.988281 C 70.058594 333.988281 71.089844 332.957031 71.089844 331.683594 Z M 71.089844 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.832031 331.683594 C 78.832031 330.410156 77.800781 329.378906 76.527344 329.378906 C 75.253906 329.378906 74.222656 330.410156 74.222656 331.683594 C 74.222656 332.957031 75.253906 333.988281 76.527344 333.988281 C 77.800781 333.988281 78.832031 332.957031 78.832031 331.683594 Z M 78.832031 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 102.683594 331.683594 C 102.683594 330.410156 101.652344 329.378906 100.378906 329.378906 C 99.105469 329.378906 98.074219 330.410156 98.074219 331.683594 C 98.074219 332.957031 99.105469 333.988281 100.378906 333.988281 C 101.652344 333.988281 102.683594 332.957031 102.683594 331.683594 Z M 102.683594 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.800781 331.683594 C 96.800781 330.410156 95.769531 329.378906 94.496094 329.378906 C 93.222656 329.378906 92.191406 330.410156 92.191406 331.683594 C 92.191406 332.957031 93.222656 333.988281 94.496094 333.988281 C 95.769531 333.988281 96.800781 332.957031 96.800781 331.683594 Z M 96.800781 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.308594 331.683594 C 84.308594 330.410156 83.277344 329.378906 82.003906 329.378906 C 80.730469 329.378906 79.699219 330.410156 79.699219 331.683594 C 79.699219 332.957031 80.730469 333.988281 82.003906 333.988281 C 83.277344 333.988281 84.308594 332.957031 84.308594 331.683594 Z M 84.308594 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 104.230469 331.683594 C 104.230469 330.410156 103.199219 329.378906 101.925781 329.378906 C 100.652344 329.378906 99.621094 330.410156 99.621094 331.683594 C 99.621094 332.957031 100.652344 333.988281 101.925781 333.988281 C 103.199219 333.988281 104.230469 332.957031 104.230469 331.683594 Z M 104.230469 331.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.582031 326.839844 C 70.582031 325.566406 69.550781 324.535156 68.277344 324.535156 C 67.003906 324.535156 65.972656 325.566406 65.972656 326.839844 C 65.972656 328.113281 67.003906 329.144531 68.277344 329.144531 C 69.550781 329.144531 70.582031 328.113281 70.582031 326.839844 Z M 70.582031 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 101.277344 326.839844 C 101.277344 325.566406 100.246094 324.535156 98.972656 324.535156 C 97.699219 324.535156 96.667969 325.566406 96.667969 326.839844 C 96.667969 328.113281 97.699219 329.144531 98.972656 329.144531 C 100.246094 329.144531 101.277344 328.113281 101.277344 326.839844 Z M 101.277344 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.53125 326.839844 C 82.53125 325.566406 81.5 324.535156 80.226562 324.535156 C 78.953125 324.535156 77.921875 325.566406 77.921875 326.839844 C 77.921875 328.113281 78.953125 329.144531 80.226562 329.144531 C 81.5 329.144531 82.53125 328.113281 82.53125 326.839844 Z M 82.53125 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.492188 326.839844 C 99.492188 325.566406 98.460938 324.535156 97.1875 324.535156 C 95.914062 324.535156 94.882812 325.566406 94.882812 326.839844 C 94.882812 328.113281 95.914062 329.144531 97.1875 329.144531 C 98.460938 329.144531 99.492188 328.113281 99.492188 326.839844 Z M 99.492188 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.046875 326.839844 C 94.046875 325.566406 93.015625 324.535156 91.742188 324.535156 C 90.46875 324.535156 89.4375 325.566406 89.4375 326.839844 C 89.4375 328.113281 90.46875 329.144531 91.742188 329.144531 C 93.015625 329.144531 94.046875 328.113281 94.046875 326.839844 Z M 94.046875 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.277344 326.839844 C 86.277344 325.566406 85.246094 324.535156 83.972656 324.535156 C 82.699219 324.535156 81.667969 325.566406 81.667969 326.839844 C 81.667969 328.113281 82.699219 329.144531 83.972656 329.144531 C 85.246094 329.144531 86.277344 328.113281 86.277344 326.839844 Z M 86.277344 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.074219 326.839844 C 82.074219 325.566406 81.042969 324.535156 79.769531 324.535156 C 78.496094 324.535156 77.464844 325.566406 77.464844 326.839844 C 77.464844 328.113281 78.496094 329.144531 79.769531 329.144531 C 81.042969 329.144531 82.074219 328.113281 82.074219 326.839844 Z M 82.074219 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.066406 326.839844 C 96.066406 325.566406 95.035156 324.535156 93.761719 324.535156 C 92.488281 324.535156 91.457031 325.566406 91.457031 326.839844 C 91.457031 328.113281 92.488281 329.144531 93.761719 329.144531 C 95.035156 329.144531 96.066406 328.113281 96.066406 326.839844 Z M 96.066406 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.152344 326.839844 C 67.152344 325.566406 66.121094 324.535156 64.847656 324.535156 C 63.574219 324.535156 62.542969 325.566406 62.542969 326.839844 C 62.542969 328.113281 63.574219 329.144531 64.847656 329.144531 C 66.121094 329.144531 67.152344 328.113281 67.152344 326.839844 Z M 67.152344 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.558594 326.839844 C 83.558594 325.566406 82.527344 324.535156 81.253906 324.535156 C 79.980469 324.535156 78.949219 325.566406 78.949219 326.839844 C 78.949219 328.113281 79.980469 329.144531 81.253906 329.144531 C 82.527344 329.144531 83.558594 328.113281 83.558594 326.839844 Z M 83.558594 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 103.855469 326.839844 C 103.855469 325.566406 102.824219 324.535156 101.550781 324.535156 C 100.277344 324.535156 99.246094 325.566406 99.246094 326.839844 C 99.246094 328.113281 100.277344 329.144531 101.550781 329.144531 C 102.824219 329.144531 103.855469 328.113281 103.855469 326.839844 Z M 103.855469 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.933594 326.839844 C 83.933594 325.566406 82.902344 324.535156 81.628906 324.535156 C 80.355469 324.535156 79.324219 325.566406 79.324219 326.839844 C 79.324219 328.113281 80.355469 329.144531 81.628906 329.144531 C 82.902344 329.144531 83.933594 328.113281 83.933594 326.839844 Z M 83.933594 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.160156 326.839844 C 71.160156 325.566406 70.128906 324.535156 68.855469 324.535156 C 67.582031 324.535156 66.550781 325.566406 66.550781 326.839844 C 66.550781 328.113281 67.582031 329.144531 68.855469 329.144531 C 70.128906 329.144531 71.160156 328.113281 71.160156 326.839844 Z M 71.160156 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.492188 326.839844 C 92.492188 325.566406 91.460938 324.535156 90.1875 324.535156 C 88.914062 324.535156 87.882812 325.566406 87.882812 326.839844 C 87.882812 328.113281 88.914062 329.144531 90.1875 329.144531 C 91.460938 329.144531 92.492188 328.113281 92.492188 326.839844 Z M 92.492188 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.054688 326.839844 C 92.054688 325.566406 91.023438 324.535156 89.75 324.535156 C 88.476562 324.535156 87.445312 325.566406 87.445312 326.839844 C 87.445312 328.113281 88.476562 329.144531 89.75 329.144531 C 91.023438 329.144531 92.054688 328.113281 92.054688 326.839844 Z M 92.054688 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.769531 326.839844 C 65.769531 325.566406 64.738281 324.535156 63.464844 324.535156 C 62.191406 324.535156 61.160156 325.566406 61.160156 326.839844 C 61.160156 328.113281 62.191406 329.144531 63.464844 329.144531 C 64.738281 329.144531 65.769531 328.113281 65.769531 326.839844 Z M 65.769531 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.5 326.839844 C 76.5 325.566406 75.46875 324.535156 74.195312 324.535156 C 72.921875 324.535156 71.890625 325.566406 71.890625 326.839844 C 71.890625 328.113281 72.921875 329.144531 74.195312 329.144531 C 75.46875 329.144531 76.5 328.113281 76.5 326.839844 Z M 76.5 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.417969 326.839844 C 93.417969 325.566406 92.386719 324.535156 91.113281 324.535156 C 89.839844 324.535156 88.808594 325.566406 88.808594 326.839844 C 88.808594 328.113281 89.839844 329.144531 91.113281 329.144531 C 92.386719 329.144531 93.417969 328.113281 93.417969 326.839844 Z M 93.417969 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.066406 326.839844 C 86.066406 325.566406 85.035156 324.535156 83.761719 324.535156 C 82.488281 324.535156 81.457031 325.566406 81.457031 326.839844 C 81.457031 328.113281 82.488281 329.144531 83.761719 329.144531 C 85.035156 329.144531 86.066406 328.113281 86.066406 326.839844 Z M 86.066406 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.453125 326.839844 C 78.453125 325.566406 77.421875 324.535156 76.148438 324.535156 C 74.875 324.535156 73.84375 325.566406 73.84375 326.839844 C 73.84375 328.113281 74.875 329.144531 76.148438 329.144531 C 77.421875 329.144531 78.453125 328.113281 78.453125 326.839844 Z M 78.453125 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 104.261719 326.839844 C 104.261719 325.566406 103.230469 324.535156 101.957031 324.535156 C 100.683594 324.535156 99.652344 325.566406 99.652344 326.839844 C 99.652344 328.113281 100.683594 329.144531 101.957031 329.144531 C 103.230469 329.144531 104.261719 328.113281 104.261719 326.839844 Z M 104.261719 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.707031 326.839844 C 82.707031 325.566406 81.675781 324.535156 80.402344 324.535156 C 79.128906 324.535156 78.097656 325.566406 78.097656 326.839844 C 78.097656 328.113281 79.128906 329.144531 80.402344 329.144531 C 81.675781 329.144531 82.707031 328.113281 82.707031 326.839844 Z M 82.707031 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.816406 326.839844 C 88.816406 325.566406 87.785156 324.535156 86.511719 324.535156 C 85.238281 324.535156 84.207031 325.566406 84.207031 326.839844 C 84.207031 328.113281 85.238281 329.144531 86.511719 329.144531 C 87.785156 329.144531 88.816406 328.113281 88.816406 326.839844 Z M 88.816406 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.8125 326.839844 C 99.8125 325.566406 98.78125 324.535156 97.507812 324.535156 C 96.234375 324.535156 95.203125 325.566406 95.203125 326.839844 C 95.203125 328.113281 96.234375 329.144531 97.507812 329.144531 C 98.78125 329.144531 99.8125 328.113281 99.8125 326.839844 Z M 99.8125 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.300781 326.839844 C 69.300781 325.566406 68.269531 324.535156 66.996094 324.535156 C 65.722656 324.535156 64.691406 325.566406 64.691406 326.839844 C 64.691406 328.113281 65.722656 329.144531 66.996094 329.144531 C 68.269531 329.144531 69.300781 328.113281 69.300781 326.839844 Z M 69.300781 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.445312 326.839844 C 77.445312 325.566406 76.414062 324.535156 75.140625 324.535156 C 73.867188 324.535156 72.835938 325.566406 72.835938 326.839844 C 72.835938 328.113281 73.867188 329.144531 75.140625 329.144531 C 76.414062 329.144531 77.445312 328.113281 77.445312 326.839844 Z M 77.445312 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 102.527344 326.839844 C 102.527344 325.566406 101.496094 324.535156 100.222656 324.535156 C 98.949219 324.535156 97.917969 325.566406 97.917969 326.839844 C 97.917969 328.113281 98.949219 329.144531 100.222656 329.144531 C 101.496094 329.144531 102.527344 328.113281 102.527344 326.839844 Z M 102.527344 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.34375 326.839844 C 96.34375 325.566406 95.3125 324.535156 94.039062 324.535156 C 92.765625 324.535156 91.734375 325.566406 91.734375 326.839844 C 91.734375 328.113281 92.765625 329.144531 94.039062 329.144531 C 95.3125 329.144531 96.34375 328.113281 96.34375 326.839844 Z M 96.34375 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.203125 326.839844 C 83.203125 325.566406 82.171875 324.535156 80.898438 324.535156 C 79.625 324.535156 78.59375 325.566406 78.59375 326.839844 C 78.59375 328.113281 79.625 329.144531 80.898438 329.144531 C 82.171875 329.144531 83.203125 328.113281 83.203125 326.839844 Z M 83.203125 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 104.152344 326.839844 C 104.152344 325.566406 103.121094 324.535156 101.847656 324.535156 C 100.574219 324.535156 99.542969 325.566406 99.542969 326.839844 C 99.542969 328.113281 100.574219 329.144531 101.847656 329.144531 C 103.121094 329.144531 104.152344 328.113281 104.152344 326.839844 Z M 104.152344 326.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.695312 321.996094 C 68.695312 320.722656 67.664062 319.691406 66.390625 319.691406 C 65.117188 319.691406 64.085938 320.722656 64.085938 321.996094 C 64.085938 323.269531 65.117188 324.300781 66.390625 324.300781 C 67.664062 324.300781 68.695312 323.269531 68.695312 321.996094 Z M 68.695312 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.59375 321.996094 C 100.59375 320.722656 99.5625 319.691406 98.289062 319.691406 C 97.015625 319.691406 95.984375 320.722656 95.984375 321.996094 C 95.984375 323.269531 97.015625 324.300781 98.289062 324.300781 C 99.5625 324.300781 100.59375 323.269531 100.59375 321.996094 Z M 100.59375 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.109375 321.996094 C 81.109375 320.722656 80.078125 319.691406 78.804688 319.691406 C 77.53125 319.691406 76.5 320.722656 76.5 321.996094 C 76.5 323.269531 77.53125 324.300781 78.804688 324.300781 C 80.078125 324.300781 81.109375 323.269531 81.109375 321.996094 Z M 81.109375 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 98.738281 321.996094 C 98.738281 320.722656 97.707031 319.691406 96.433594 319.691406 C 95.160156 319.691406 94.128906 320.722656 94.128906 321.996094 C 94.128906 323.269531 95.160156 324.300781 96.433594 324.300781 C 97.707031 324.300781 98.738281 323.269531 98.738281 321.996094 Z M 98.738281 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.082031 321.996094 C 93.082031 320.722656 92.050781 319.691406 90.777344 319.691406 C 89.503906 319.691406 88.472656 320.722656 88.472656 321.996094 C 88.472656 323.269531 89.503906 324.300781 90.777344 324.300781 C 92.050781 324.300781 93.082031 323.269531 93.082031 321.996094 Z M 93.082031 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.003906 321.996094 C 85.003906 320.722656 83.972656 319.691406 82.699219 319.691406 C 81.425781 319.691406 80.394531 320.722656 80.394531 321.996094 C 80.394531 323.269531 81.425781 324.300781 82.699219 324.300781 C 83.972656 324.300781 85.003906 323.269531 85.003906 321.996094 Z M 85.003906 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.636719 321.996094 C 80.636719 320.722656 79.605469 319.691406 78.332031 319.691406 C 77.058594 319.691406 76.027344 320.722656 76.027344 321.996094 C 76.027344 323.269531 77.058594 324.300781 78.332031 324.300781 C 79.605469 324.300781 80.636719 323.269531 80.636719 321.996094 Z M 80.636719 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 95.175781 321.996094 C 95.175781 320.722656 94.144531 319.691406 92.871094 319.691406 C 91.597656 319.691406 90.566406 320.722656 90.566406 321.996094 C 90.566406 323.269531 91.597656 324.300781 92.871094 324.300781 C 94.144531 324.300781 95.175781 323.269531 95.175781 321.996094 Z M 95.175781 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.128906 321.996094 C 65.128906 320.722656 64.097656 319.691406 62.824219 319.691406 C 61.550781 319.691406 60.519531 320.722656 60.519531 321.996094 C 60.519531 323.269531 61.550781 324.300781 62.824219 324.300781 C 64.097656 324.300781 65.128906 323.269531 65.128906 321.996094 Z M 65.128906 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.179688 321.996094 C 82.179688 320.722656 81.148438 319.691406 79.875 319.691406 C 78.601562 319.691406 77.570312 320.722656 77.570312 321.996094 C 77.570312 323.269531 78.601562 324.300781 79.875 324.300781 C 81.148438 324.300781 82.179688 323.269531 82.179688 321.996094 Z M 82.179688 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 103.269531 321.996094 C 103.269531 320.722656 102.238281 319.691406 100.964844 319.691406 C 99.691406 319.691406 98.660156 320.722656 98.660156 321.996094 C 98.660156 323.269531 99.691406 324.300781 100.964844 324.300781 C 102.238281 324.300781 103.269531 323.269531 103.269531 321.996094 Z M 103.269531 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.570312 321.996094 C 82.570312 320.722656 81.539062 319.691406 80.265625 319.691406 C 78.992188 319.691406 77.960938 320.722656 77.960938 321.996094 C 77.960938 323.269531 78.992188 324.300781 80.265625 324.300781 C 81.539062 324.300781 82.570312 323.269531 82.570312 321.996094 Z M 82.570312 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.296875 321.996094 C 69.296875 320.722656 68.265625 319.691406 66.992188 319.691406 C 65.71875 319.691406 64.6875 320.722656 64.6875 321.996094 C 64.6875 323.269531 65.71875 324.300781 66.992188 324.300781 C 68.265625 324.300781 69.296875 323.269531 69.296875 321.996094 Z M 69.296875 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.464844 321.996094 C 91.464844 320.722656 90.433594 319.691406 89.160156 319.691406 C 87.886719 319.691406 86.855469 320.722656 86.855469 321.996094 C 86.855469 323.269531 87.886719 324.300781 89.160156 324.300781 C 90.433594 324.300781 91.464844 323.269531 91.464844 321.996094 Z M 91.464844 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.007812 321.996094 C 91.007812 320.722656 89.976562 319.691406 88.703125 319.691406 C 87.429688 319.691406 86.398438 320.722656 86.398438 321.996094 C 86.398438 323.269531 87.429688 324.300781 88.703125 324.300781 C 89.976562 324.300781 91.007812 323.269531 91.007812 321.996094 Z M 91.007812 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.691406 321.996094 C 63.691406 320.722656 62.660156 319.691406 61.386719 319.691406 C 60.113281 319.691406 59.082031 320.722656 59.082031 321.996094 C 59.082031 323.269531 60.113281 324.300781 61.386719 324.300781 C 62.660156 324.300781 63.691406 323.269531 63.691406 321.996094 Z M 63.691406 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.84375 321.996094 C 74.84375 320.722656 73.8125 319.691406 72.539062 319.691406 C 71.265625 319.691406 70.234375 320.722656 70.234375 321.996094 C 70.234375 323.269531 71.265625 324.300781 72.539062 324.300781 C 73.8125 324.300781 74.84375 323.269531 74.84375 321.996094 Z M 74.84375 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.425781 321.996094 C 92.425781 320.722656 91.394531 319.691406 90.121094 319.691406 C 88.847656 319.691406 87.816406 320.722656 87.816406 321.996094 C 87.816406 323.269531 88.847656 324.300781 90.121094 324.300781 C 91.394531 324.300781 92.425781 323.269531 92.425781 321.996094 Z M 92.425781 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.785156 321.996094 C 84.785156 320.722656 83.753906 319.691406 82.480469 319.691406 C 81.207031 319.691406 80.175781 320.722656 80.175781 321.996094 C 80.175781 323.269531 81.207031 324.300781 82.480469 324.300781 C 83.753906 324.300781 84.785156 323.269531 84.785156 321.996094 Z M 84.785156 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.871094 321.996094 C 76.871094 320.722656 75.839844 319.691406 74.566406 319.691406 C 73.292969 319.691406 72.261719 320.722656 72.261719 321.996094 C 72.261719 323.269531 73.292969 324.300781 74.566406 324.300781 C 75.839844 324.300781 76.871094 323.269531 76.871094 321.996094 Z M 76.871094 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 103.695312 321.996094 C 103.695312 320.722656 102.664062 319.691406 101.390625 319.691406 C 100.117188 319.691406 99.085938 320.722656 99.085938 321.996094 C 99.085938 323.269531 100.117188 324.300781 101.390625 324.300781 C 102.664062 324.300781 103.695312 323.269531 103.695312 321.996094 Z M 103.695312 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.296875 321.996094 C 81.296875 320.722656 80.265625 319.691406 78.992188 319.691406 C 77.71875 319.691406 76.6875 320.722656 76.6875 321.996094 C 76.6875 323.269531 77.71875 324.300781 78.992188 324.300781 C 80.265625 324.300781 81.296875 323.269531 81.296875 321.996094 Z M 81.296875 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.644531 321.996094 C 87.644531 320.722656 86.613281 319.691406 85.339844 319.691406 C 84.066406 319.691406 83.035156 320.722656 83.035156 321.996094 C 83.035156 323.269531 84.066406 324.300781 85.339844 324.300781 C 86.613281 324.300781 87.644531 323.269531 87.644531 321.996094 Z M 87.644531 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.070312 321.996094 C 99.070312 320.722656 98.039062 319.691406 96.765625 319.691406 C 95.492188 319.691406 94.460938 320.722656 94.460938 321.996094 C 94.460938 323.269531 95.492188 324.300781 96.765625 324.300781 C 98.039062 324.300781 99.070312 323.269531 99.070312 321.996094 Z M 99.070312 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.363281 321.996094 C 67.363281 320.722656 66.332031 319.691406 65.058594 319.691406 C 63.785156 319.691406 62.753906 320.722656 62.753906 321.996094 C 62.753906 323.269531 63.785156 324.300781 65.058594 324.300781 C 66.332031 324.300781 67.363281 323.269531 67.363281 321.996094 Z M 67.363281 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.828125 321.996094 C 75.828125 320.722656 74.796875 319.691406 73.523438 319.691406 C 72.25 319.691406 71.21875 320.722656 71.21875 321.996094 C 71.21875 323.269531 72.25 324.300781 73.523438 324.300781 C 74.796875 324.300781 75.828125 323.269531 75.828125 321.996094 Z M 75.828125 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 101.890625 321.996094 C 101.890625 320.722656 100.859375 319.691406 99.585938 319.691406 C 98.3125 319.691406 97.28125 320.722656 97.28125 321.996094 C 97.28125 323.269531 98.3125 324.300781 99.585938 324.300781 C 100.859375 324.300781 101.890625 323.269531 101.890625 321.996094 Z M 101.890625 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 95.464844 321.996094 C 95.464844 320.722656 94.433594 319.691406 93.160156 319.691406 C 91.886719 319.691406 90.855469 320.722656 90.855469 321.996094 C 90.855469 323.269531 91.886719 324.300781 93.160156 324.300781 C 94.433594 324.300781 95.464844 323.269531 95.464844 321.996094 Z M 95.464844 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.808594 321.996094 C 81.808594 320.722656 80.777344 319.691406 79.503906 319.691406 C 78.230469 319.691406 77.199219 320.722656 77.199219 321.996094 C 77.199219 323.269531 78.230469 324.300781 79.503906 324.300781 C 80.777344 324.300781 81.808594 323.269531 81.808594 321.996094 Z M 81.808594 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 103.582031 321.996094 C 103.582031 320.722656 102.550781 319.691406 101.277344 319.691406 C 100.003906 319.691406 98.972656 320.722656 98.972656 321.996094 C 98.972656 323.269531 100.003906 324.300781 101.277344 324.300781 C 102.550781 324.300781 103.582031 323.269531 103.582031 321.996094 Z M 103.582031 321.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.664062 317.152344 C 66.664062 315.878906 65.632812 314.847656 64.359375 314.847656 C 63.085938 314.847656 62.054688 315.878906 62.054688 317.152344 C 62.054688 318.425781 63.085938 319.457031 64.359375 319.457031 C 65.632812 319.457031 66.664062 318.425781 66.664062 317.152344 Z M 66.664062 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.449219 317.152344 C 99.449219 315.878906 98.417969 314.847656 97.144531 314.847656 C 95.871094 314.847656 94.839844 315.878906 94.839844 317.152344 C 94.839844 318.425781 95.871094 319.457031 97.144531 319.457031 C 98.417969 319.457031 99.449219 318.425781 99.449219 317.152344 Z M 99.449219 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.425781 317.152344 C 79.425781 315.878906 78.394531 314.847656 77.121094 314.847656 C 75.847656 314.847656 74.816406 315.878906 74.816406 317.152344 C 74.816406 318.425781 75.847656 319.457031 77.121094 319.457031 C 78.394531 319.457031 79.425781 318.425781 79.425781 317.152344 Z M 79.425781 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 97.542969 317.152344 C 97.542969 315.878906 96.511719 314.847656 95.238281 314.847656 C 93.964844 314.847656 92.933594 315.878906 92.933594 317.152344 C 92.933594 318.425781 93.964844 319.457031 95.238281 319.457031 C 96.511719 319.457031 97.542969 318.425781 97.542969 317.152344 Z M 97.542969 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.726562 317.152344 C 91.726562 315.878906 90.695312 314.847656 89.421875 314.847656 C 88.148438 314.847656 87.117188 315.878906 87.117188 317.152344 C 87.117188 318.425781 88.148438 319.457031 89.421875 319.457031 C 90.695312 319.457031 91.726562 318.425781 91.726562 317.152344 Z M 91.726562 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.429688 317.152344 C 83.429688 315.878906 82.398438 314.847656 81.125 314.847656 C 79.851562 314.847656 78.820312 315.878906 78.820312 317.152344 C 78.820312 318.425781 79.851562 319.457031 81.125 319.457031 C 82.398438 319.457031 83.429688 318.425781 83.429688 317.152344 Z M 83.429688 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.9375 317.152344 C 78.9375 315.878906 77.90625 314.847656 76.632812 314.847656 C 75.359375 314.847656 74.328125 315.878906 74.328125 317.152344 C 74.328125 318.425781 75.359375 319.457031 76.632812 319.457031 C 77.90625 319.457031 78.9375 318.425781 78.9375 317.152344 Z M 78.9375 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.882812 317.152344 C 93.882812 315.878906 92.851562 314.847656 91.578125 314.847656 C 90.304688 314.847656 89.273438 315.878906 89.273438 317.152344 C 89.273438 318.425781 90.304688 319.457031 91.578125 319.457031 C 92.851562 319.457031 93.882812 318.425781 93.882812 317.152344 Z M 93.882812 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63 317.152344 C 63 315.878906 61.96875 314.847656 60.695312 314.847656 C 59.421875 314.847656 58.390625 315.878906 58.390625 317.152344 C 58.390625 318.425781 59.421875 319.457031 60.695312 319.457031 C 61.96875 319.457031 63 318.425781 63 317.152344 Z M 63 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.527344 317.152344 C 80.527344 315.878906 79.496094 314.847656 78.222656 314.847656 C 76.949219 314.847656 75.917969 315.878906 75.917969 317.152344 C 75.917969 318.425781 76.949219 319.457031 78.222656 319.457031 C 79.496094 319.457031 80.527344 318.425781 80.527344 317.152344 Z M 80.527344 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 102.199219 317.152344 C 102.199219 315.878906 101.167969 314.847656 99.894531 314.847656 C 98.621094 314.847656 97.589844 315.878906 97.589844 317.152344 C 97.589844 318.425781 98.621094 319.457031 99.894531 319.457031 C 101.167969 319.457031 102.199219 318.425781 102.199219 317.152344 Z M 102.199219 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.925781 317.152344 C 80.925781 315.878906 79.894531 314.847656 78.621094 314.847656 C 77.347656 314.847656 76.316406 315.878906 76.316406 317.152344 C 76.316406 318.425781 77.347656 319.457031 78.621094 319.457031 C 79.894531 319.457031 80.925781 318.425781 80.925781 317.152344 Z M 80.925781 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.285156 317.152344 C 67.285156 315.878906 66.253906 314.847656 64.980469 314.847656 C 63.707031 314.847656 62.675781 315.878906 62.675781 317.152344 C 62.675781 318.425781 63.707031 319.457031 64.980469 319.457031 C 66.253906 319.457031 67.285156 318.425781 67.285156 317.152344 Z M 67.285156 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.066406 317.152344 C 90.066406 315.878906 89.035156 314.847656 87.761719 314.847656 C 86.488281 314.847656 85.457031 315.878906 85.457031 317.152344 C 85.457031 318.425781 86.488281 319.457031 87.761719 319.457031 C 89.035156 319.457031 90.066406 318.425781 90.066406 317.152344 Z M 90.066406 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 89.597656 317.152344 C 89.597656 315.878906 88.566406 314.847656 87.292969 314.847656 C 86.019531 314.847656 84.988281 315.878906 84.988281 317.152344 C 84.988281 318.425781 86.019531 319.457031 87.292969 319.457031 C 88.566406 319.457031 89.597656 318.425781 89.597656 317.152344 Z M 89.597656 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.523438 317.152344 C 61.523438 315.878906 60.492188 314.847656 59.21875 314.847656 C 57.945312 314.847656 56.914062 315.878906 56.914062 317.152344 C 56.914062 318.425781 57.945312 319.457031 59.21875 319.457031 C 60.492188 319.457031 61.523438 318.425781 61.523438 317.152344 Z M 61.523438 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.984375 317.152344 C 72.984375 315.878906 71.953125 314.847656 70.679688 314.847656 C 69.40625 314.847656 68.375 315.878906 68.375 317.152344 C 68.375 318.425781 69.40625 319.457031 70.679688 319.457031 C 71.953125 319.457031 72.984375 318.425781 72.984375 317.152344 Z M 72.984375 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.050781 317.152344 C 91.050781 315.878906 90.019531 314.847656 88.746094 314.847656 C 87.472656 314.847656 86.441406 315.878906 86.441406 317.152344 C 86.441406 318.425781 87.472656 319.457031 88.746094 319.457031 C 90.019531 319.457031 91.050781 318.425781 91.050781 317.152344 Z M 91.050781 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.203125 317.152344 C 83.203125 315.878906 82.171875 314.847656 80.898438 314.847656 C 79.625 314.847656 78.59375 315.878906 78.59375 317.152344 C 78.59375 318.425781 79.625 319.457031 80.898438 319.457031 C 82.171875 319.457031 83.203125 318.425781 83.203125 317.152344 Z M 83.203125 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.070312 317.152344 C 75.070312 315.878906 74.039062 314.847656 72.765625 314.847656 C 71.492188 314.847656 70.460938 315.878906 70.460938 317.152344 C 70.460938 318.425781 71.492188 319.457031 72.765625 319.457031 C 74.039062 319.457031 75.070312 318.425781 75.070312 317.152344 Z M 75.070312 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 102.636719 317.152344 C 102.636719 315.878906 101.605469 314.847656 100.332031 314.847656 C 99.058594 314.847656 98.027344 315.878906 98.027344 317.152344 C 98.027344 318.425781 99.058594 319.457031 100.332031 319.457031 C 101.605469 319.457031 102.636719 318.425781 102.636719 317.152344 Z M 102.636719 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.617188 317.152344 C 79.617188 315.878906 78.585938 314.847656 77.3125 314.847656 C 76.039062 314.847656 75.007812 315.878906 75.007812 317.152344 C 75.007812 318.425781 76.039062 319.457031 77.3125 319.457031 C 78.585938 319.457031 79.617188 318.425781 79.617188 317.152344 Z M 79.617188 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.140625 317.152344 C 86.140625 315.878906 85.109375 314.847656 83.835938 314.847656 C 82.5625 314.847656 81.53125 315.878906 81.53125 317.152344 C 81.53125 318.425781 82.5625 319.457031 83.835938 319.457031 C 85.109375 319.457031 86.140625 318.425781 86.140625 317.152344 Z M 86.140625 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 97.882812 317.152344 C 97.882812 315.878906 96.851562 314.847656 95.578125 314.847656 C 94.304688 314.847656 93.273438 315.878906 93.273438 317.152344 C 93.273438 318.425781 94.304688 319.457031 95.578125 319.457031 C 96.851562 319.457031 97.882812 318.425781 97.882812 317.152344 Z M 97.882812 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.296875 317.152344 C 65.296875 315.878906 64.265625 314.847656 62.992188 314.847656 C 61.71875 314.847656 60.6875 315.878906 60.6875 317.152344 C 60.6875 318.425781 61.71875 319.457031 62.992188 319.457031 C 64.265625 319.457031 65.296875 318.425781 65.296875 317.152344 Z M 65.296875 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.996094 317.152344 C 73.996094 315.878906 72.964844 314.847656 71.691406 314.847656 C 70.417969 314.847656 69.386719 315.878906 69.386719 317.152344 C 69.386719 318.425781 70.417969 319.457031 71.691406 319.457031 C 72.964844 319.457031 73.996094 318.425781 73.996094 317.152344 Z M 73.996094 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.785156 317.152344 C 100.785156 315.878906 99.753906 314.847656 98.480469 314.847656 C 97.207031 314.847656 96.175781 315.878906 96.175781 317.152344 C 96.175781 318.425781 97.207031 319.457031 98.480469 319.457031 C 99.753906 319.457031 100.785156 318.425781 100.785156 317.152344 Z M 100.785156 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.179688 317.152344 C 94.179688 315.878906 93.148438 314.847656 91.875 314.847656 C 90.601562 314.847656 89.570312 315.878906 89.570312 317.152344 C 89.570312 318.425781 90.601562 319.457031 91.875 319.457031 C 93.148438 319.457031 94.179688 318.425781 94.179688 317.152344 Z M 94.179688 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.144531 317.152344 C 80.144531 315.878906 79.113281 314.847656 77.839844 314.847656 C 76.566406 314.847656 75.535156 315.878906 75.535156 317.152344 C 75.535156 318.425781 76.566406 319.457031 77.839844 319.457031 C 79.113281 319.457031 80.144531 318.425781 80.144531 317.152344 Z M 80.144531 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 102.519531 317.152344 C 102.519531 315.878906 101.488281 314.847656 100.214844 314.847656 C 98.941406 314.847656 97.910156 315.878906 97.910156 317.152344 C 97.910156 318.425781 98.941406 319.457031 100.214844 319.457031 C 101.488281 319.457031 102.519531 318.425781 102.519531 317.152344 Z M 102.519531 317.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.515625 312.308594 C 64.515625 311.035156 63.484375 310.003906 62.210938 310.003906 C 60.9375 310.003906 59.90625 311.035156 59.90625 312.308594 C 59.90625 313.582031 60.9375 314.613281 62.210938 314.613281 C 63.484375 314.613281 64.515625 313.582031 64.515625 312.308594 Z M 64.515625 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 97.855469 312.308594 C 97.855469 311.035156 96.824219 310.003906 95.550781 310.003906 C 94.277344 310.003906 93.246094 311.035156 93.246094 312.308594 C 93.246094 313.582031 94.277344 314.613281 95.550781 314.613281 C 96.824219 314.613281 97.855469 313.582031 97.855469 312.308594 Z M 97.855469 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.492188 312.308594 C 77.492188 311.035156 76.460938 310.003906 75.1875 310.003906 C 73.914062 310.003906 72.882812 311.035156 72.882812 312.308594 C 72.882812 313.582031 73.914062 314.613281 75.1875 314.613281 C 76.460938 314.613281 77.492188 313.582031 77.492188 312.308594 Z M 77.492188 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 95.914062 312.308594 C 95.914062 311.035156 94.882812 310.003906 93.609375 310.003906 C 92.335938 310.003906 91.304688 311.035156 91.304688 312.308594 C 91.304688 313.582031 92.335938 314.613281 93.609375 314.613281 C 94.882812 314.613281 95.914062 313.582031 95.914062 312.308594 Z M 95.914062 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.003906 312.308594 C 90.003906 311.035156 88.972656 310.003906 87.699219 310.003906 C 86.425781 310.003906 85.394531 311.035156 85.394531 312.308594 C 85.394531 313.582031 86.425781 314.613281 87.699219 314.613281 C 88.972656 314.613281 90.003906 313.582031 90.003906 312.308594 Z M 90.003906 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.5625 312.308594 C 81.5625 311.035156 80.53125 310.003906 79.257812 310.003906 C 77.984375 310.003906 76.953125 311.035156 76.953125 312.308594 C 76.953125 313.582031 77.984375 314.613281 79.257812 314.613281 C 80.53125 314.613281 81.5625 313.582031 81.5625 312.308594 Z M 81.5625 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.996094 312.308594 C 76.996094 311.035156 75.964844 310.003906 74.691406 310.003906 C 73.417969 310.003906 72.386719 311.035156 72.386719 312.308594 C 72.386719 313.582031 73.417969 314.613281 74.691406 314.613281 C 75.964844 314.613281 76.996094 313.582031 76.996094 312.308594 Z M 76.996094 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.195312 312.308594 C 92.195312 311.035156 91.164062 310.003906 89.890625 310.003906 C 88.617188 310.003906 87.585938 311.035156 87.585938 312.308594 C 87.585938 313.582031 88.617188 314.613281 89.890625 314.613281 C 91.164062 314.613281 92.195312 313.582031 92.195312 312.308594 Z M 92.195312 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.789062 312.308594 C 60.789062 311.035156 59.757812 310.003906 58.484375 310.003906 C 57.210938 310.003906 56.179688 311.035156 56.179688 312.308594 C 56.179688 313.582031 57.210938 314.613281 58.484375 314.613281 C 59.757812 314.613281 60.789062 313.582031 60.789062 312.308594 Z M 60.789062 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.609375 312.308594 C 78.609375 311.035156 77.578125 310.003906 76.304688 310.003906 C 75.03125 310.003906 74 311.035156 74 312.308594 C 74 313.582031 75.03125 314.613281 76.304688 314.613281 C 77.578125 314.613281 78.609375 313.582031 78.609375 312.308594 Z M 78.609375 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.652344 312.308594 C 100.652344 311.035156 99.621094 310.003906 98.347656 310.003906 C 97.074219 310.003906 96.042969 311.035156 96.042969 312.308594 C 96.042969 313.582031 97.074219 314.613281 98.347656 314.613281 C 99.621094 314.613281 100.652344 313.582031 100.652344 312.308594 Z M 100.652344 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.015625 312.308594 C 79.015625 311.035156 77.984375 310.003906 76.710938 310.003906 C 75.4375 310.003906 74.40625 311.035156 74.40625 312.308594 C 74.40625 313.582031 75.4375 314.613281 76.710938 314.613281 C 77.984375 314.613281 79.015625 313.582031 79.015625 312.308594 Z M 79.015625 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.144531 312.308594 C 65.144531 311.035156 64.113281 310.003906 62.839844 310.003906 C 61.566406 310.003906 60.535156 311.035156 60.535156 312.308594 C 60.535156 313.582031 61.566406 314.613281 62.839844 314.613281 C 64.113281 314.613281 65.144531 313.582031 65.144531 312.308594 Z M 65.144531 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.3125 312.308594 C 88.3125 311.035156 87.28125 310.003906 86.007812 310.003906 C 84.734375 310.003906 83.703125 311.035156 83.703125 312.308594 C 83.703125 313.582031 84.734375 314.613281 86.007812 314.613281 C 87.28125 314.613281 88.3125 313.582031 88.3125 312.308594 Z M 88.3125 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.839844 312.308594 C 87.839844 311.035156 86.808594 310.003906 85.535156 310.003906 C 84.261719 310.003906 83.230469 311.035156 83.230469 312.308594 C 83.230469 313.582031 84.261719 314.613281 85.535156 314.613281 C 86.808594 314.613281 87.839844 313.582031 87.839844 312.308594 Z M 87.839844 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 59.285156 312.308594 C 59.285156 311.035156 58.253906 310.003906 56.980469 310.003906 C 55.707031 310.003906 54.675781 311.035156 54.675781 312.308594 C 54.675781 313.582031 55.707031 314.613281 56.980469 314.613281 C 58.253906 314.613281 59.285156 313.582031 59.285156 312.308594 Z M 59.285156 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.941406 312.308594 C 70.941406 311.035156 69.910156 310.003906 68.636719 310.003906 C 67.363281 310.003906 66.332031 311.035156 66.332031 312.308594 C 66.332031 313.582031 67.363281 314.613281 68.636719 314.613281 C 69.910156 314.613281 70.941406 313.582031 70.941406 312.308594 Z M 70.941406 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 89.316406 312.308594 C 89.316406 311.035156 88.285156 310.003906 87.011719 310.003906 C 85.738281 310.003906 84.707031 311.035156 84.707031 312.308594 C 84.707031 313.582031 85.738281 314.613281 87.011719 314.613281 C 88.285156 314.613281 89.316406 313.582031 89.316406 312.308594 Z M 89.316406 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.332031 312.308594 C 81.332031 311.035156 80.300781 310.003906 79.027344 310.003906 C 77.753906 310.003906 76.722656 311.035156 76.722656 312.308594 C 76.722656 313.582031 77.753906 314.613281 79.027344 314.613281 C 80.300781 314.613281 81.332031 313.582031 81.332031 312.308594 Z M 81.332031 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.0625 312.308594 C 73.0625 311.035156 72.03125 310.003906 70.757812 310.003906 C 69.484375 310.003906 68.453125 311.035156 68.453125 312.308594 C 68.453125 313.582031 69.484375 314.613281 70.757812 314.613281 C 72.03125 314.613281 73.0625 313.582031 73.0625 312.308594 Z M 73.0625 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 101.097656 312.308594 C 101.097656 311.035156 100.066406 310.003906 98.792969 310.003906 C 97.519531 310.003906 96.488281 311.035156 96.488281 312.308594 C 96.488281 313.582031 97.519531 314.613281 98.792969 314.613281 C 100.066406 314.613281 101.097656 313.582031 101.097656 312.308594 Z M 101.097656 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.6875 312.308594 C 77.6875 311.035156 76.65625 310.003906 75.382812 310.003906 C 74.109375 310.003906 73.078125 311.035156 73.078125 312.308594 C 73.078125 313.582031 74.109375 314.613281 75.382812 314.613281 C 76.65625 314.613281 77.6875 313.582031 77.6875 312.308594 Z M 77.6875 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.320312 312.308594 C 84.320312 311.035156 83.289062 310.003906 82.015625 310.003906 C 80.742188 310.003906 79.710938 311.035156 79.710938 312.308594 C 79.710938 313.582031 80.742188 314.613281 82.015625 314.613281 C 83.289062 314.613281 84.320312 313.582031 84.320312 312.308594 Z M 84.320312 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.261719 312.308594 C 96.261719 311.035156 95.230469 310.003906 93.957031 310.003906 C 92.683594 310.003906 91.652344 311.035156 91.652344 312.308594 C 91.652344 313.582031 92.683594 314.613281 93.957031 314.613281 C 95.230469 314.613281 96.261719 313.582031 96.261719 312.308594 Z M 96.261719 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.125 312.308594 C 63.125 311.035156 62.09375 310.003906 60.820312 310.003906 C 59.546875 310.003906 58.515625 311.035156 58.515625 312.308594 C 58.515625 313.582031 59.546875 314.613281 60.820312 314.613281 C 62.09375 314.613281 63.125 313.582031 63.125 312.308594 Z M 63.125 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.96875 312.308594 C 71.96875 311.035156 70.9375 310.003906 69.664062 310.003906 C 68.390625 310.003906 67.359375 311.035156 67.359375 312.308594 C 67.359375 313.582031 68.390625 314.613281 69.664062 314.613281 C 70.9375 314.613281 71.96875 313.582031 71.96875 312.308594 Z M 71.96875 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.210938 312.308594 C 99.210938 311.035156 98.179688 310.003906 96.90625 310.003906 C 95.632812 310.003906 94.601562 311.035156 94.601562 312.308594 C 94.601562 313.582031 95.632812 314.613281 96.90625 314.613281 C 98.179688 314.613281 99.210938 313.582031 99.210938 312.308594 Z M 99.210938 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.496094 312.308594 C 92.496094 311.035156 91.464844 310.003906 90.191406 310.003906 C 88.917969 310.003906 87.886719 311.035156 87.886719 312.308594 C 87.886719 313.582031 88.917969 314.613281 90.191406 314.613281 C 91.464844 314.613281 92.496094 313.582031 92.496094 312.308594 Z M 92.496094 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.222656 312.308594 C 78.222656 311.035156 77.191406 310.003906 75.917969 310.003906 C 74.644531 310.003906 73.613281 311.035156 73.613281 312.308594 C 73.613281 313.582031 74.644531 314.613281 75.917969 314.613281 C 77.191406 314.613281 78.222656 313.582031 78.222656 312.308594 Z M 78.222656 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.980469 312.308594 C 100.980469 311.035156 99.949219 310.003906 98.675781 310.003906 C 97.402344 310.003906 96.371094 311.035156 96.371094 312.308594 C 96.371094 313.582031 97.402344 314.613281 98.675781 314.613281 C 99.949219 314.613281 100.980469 313.582031 100.980469 312.308594 Z M 100.980469 312.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.261719 307.464844 C 62.261719 306.191406 61.230469 305.160156 59.957031 305.160156 C 58.683594 305.160156 57.652344 306.191406 57.652344 307.464844 C 57.652344 308.738281 58.683594 309.769531 59.957031 309.769531 C 61.230469 309.769531 62.261719 308.738281 62.261719 307.464844 Z M 62.261719 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 95.828125 307.464844 C 95.828125 306.191406 94.796875 305.160156 93.523438 305.160156 C 92.25 305.160156 91.21875 306.191406 91.21875 307.464844 C 91.21875 308.738281 92.25 309.769531 93.523438 309.769531 C 94.796875 309.769531 95.828125 308.738281 95.828125 307.464844 Z M 95.828125 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.328125 307.464844 C 75.328125 306.191406 74.296875 305.160156 73.023438 305.160156 C 71.75 305.160156 70.71875 306.191406 70.71875 307.464844 C 70.71875 308.738281 71.75 309.769531 73.023438 309.769531 C 74.296875 309.769531 75.328125 308.738281 75.328125 307.464844 Z M 75.328125 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.875 307.464844 C 93.875 306.191406 92.84375 305.160156 91.570312 305.160156 C 90.296875 305.160156 89.265625 306.191406 89.265625 307.464844 C 89.265625 308.738281 90.296875 309.769531 91.570312 309.769531 C 92.84375 309.769531 93.875 308.738281 93.875 307.464844 Z M 93.875 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.921875 307.464844 C 87.921875 306.191406 86.890625 305.160156 85.617188 305.160156 C 84.34375 305.160156 83.3125 306.191406 83.3125 307.464844 C 83.3125 308.738281 84.34375 309.769531 85.617188 309.769531 C 86.890625 309.769531 87.921875 308.738281 87.921875 307.464844 Z M 87.921875 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.425781 307.464844 C 79.425781 306.191406 78.394531 305.160156 77.121094 305.160156 C 75.847656 305.160156 74.816406 306.191406 74.816406 307.464844 C 74.816406 308.738281 75.847656 309.769531 77.121094 309.769531 C 78.394531 309.769531 79.425781 308.738281 79.425781 307.464844 Z M 79.425781 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.828125 307.464844 C 74.828125 306.191406 73.796875 305.160156 72.523438 305.160156 C 71.25 305.160156 70.21875 306.191406 70.21875 307.464844 C 70.21875 308.738281 71.25 309.769531 72.523438 309.769531 C 73.796875 309.769531 74.828125 308.738281 74.828125 307.464844 Z M 74.828125 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.128906 307.464844 C 90.128906 306.191406 89.097656 305.160156 87.824219 305.160156 C 86.550781 305.160156 85.519531 306.191406 85.519531 307.464844 C 85.519531 308.738281 86.550781 309.769531 87.824219 309.769531 C 89.097656 309.769531 90.128906 308.738281 90.128906 307.464844 Z M 90.128906 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.511719 307.464844 C 58.511719 306.191406 57.480469 305.160156 56.207031 305.160156 C 54.933594 305.160156 53.902344 306.191406 53.902344 307.464844 C 53.902344 308.738281 54.933594 309.769531 56.207031 309.769531 C 57.480469 309.769531 58.511719 308.738281 58.511719 307.464844 Z M 58.511719 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.453125 307.464844 C 76.453125 306.191406 75.421875 305.160156 74.148438 305.160156 C 72.875 305.160156 71.84375 306.191406 71.84375 307.464844 C 71.84375 308.738281 72.875 309.769531 74.148438 309.769531 C 75.421875 309.769531 76.453125 308.738281 76.453125 307.464844 Z M 76.453125 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 98.644531 307.464844 C 98.644531 306.191406 97.613281 305.160156 96.339844 305.160156 C 95.066406 305.160156 94.035156 306.191406 94.035156 307.464844 C 94.035156 308.738281 95.066406 309.769531 96.339844 309.769531 C 97.613281 309.769531 98.644531 308.738281 98.644531 307.464844 Z M 98.644531 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.863281 307.464844 C 76.863281 306.191406 75.832031 305.160156 74.558594 305.160156 C 73.285156 305.160156 72.253906 306.191406 72.253906 307.464844 C 72.253906 308.738281 73.285156 309.769531 74.558594 309.769531 C 75.832031 309.769531 76.863281 308.738281 76.863281 307.464844 Z M 76.863281 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.898438 307.464844 C 62.898438 306.191406 61.867188 305.160156 60.59375 305.160156 C 59.320312 305.160156 58.289062 306.191406 58.289062 307.464844 C 58.289062 308.738281 59.320312 309.769531 60.59375 309.769531 C 61.867188 309.769531 62.898438 308.738281 62.898438 307.464844 Z M 62.898438 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.222656 307.464844 C 86.222656 306.191406 85.191406 305.160156 83.917969 305.160156 C 82.644531 305.160156 81.613281 306.191406 81.613281 307.464844 C 81.613281 308.738281 82.644531 309.769531 83.917969 309.769531 C 85.191406 309.769531 86.222656 308.738281 86.222656 307.464844 Z M 86.222656 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.742188 307.464844 C 85.742188 306.191406 84.710938 305.160156 83.4375 305.160156 C 82.164062 305.160156 81.132812 306.191406 81.132812 307.464844 C 81.132812 308.738281 82.164062 309.769531 83.4375 309.769531 C 84.710938 309.769531 85.742188 308.738281 85.742188 307.464844 Z M 85.742188 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57 307.464844 C 57 306.191406 55.96875 305.160156 54.695312 305.160156 C 53.421875 305.160156 52.390625 306.191406 52.390625 307.464844 C 52.390625 308.738281 53.421875 309.769531 54.695312 309.769531 C 55.96875 309.769531 57 308.738281 57 307.464844 Z M 57 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.734375 307.464844 C 68.734375 306.191406 67.703125 305.160156 66.429688 305.160156 C 65.15625 305.160156 64.125 306.191406 64.125 307.464844 C 64.125 308.738281 65.15625 309.769531 66.429688 309.769531 C 67.703125 309.769531 68.734375 308.738281 68.734375 307.464844 Z M 68.734375 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.230469 307.464844 C 87.230469 306.191406 86.199219 305.160156 84.925781 305.160156 C 83.652344 305.160156 82.621094 306.191406 82.621094 307.464844 C 82.621094 308.738281 83.652344 309.769531 84.925781 309.769531 C 86.199219 309.769531 87.230469 308.738281 87.230469 307.464844 Z M 87.230469 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.195312 307.464844 C 79.195312 306.191406 78.164062 305.160156 76.890625 305.160156 C 75.617188 305.160156 74.585938 306.191406 74.585938 307.464844 C 74.585938 308.738281 75.617188 309.769531 76.890625 309.769531 C 78.164062 309.769531 79.195312 308.738281 79.195312 307.464844 Z M 79.195312 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.867188 307.464844 C 70.867188 306.191406 69.835938 305.160156 68.5625 305.160156 C 67.289062 305.160156 66.257812 306.191406 66.257812 307.464844 C 66.257812 308.738281 67.289062 309.769531 68.5625 309.769531 C 69.835938 309.769531 70.867188 308.738281 70.867188 307.464844 Z M 70.867188 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.09375 307.464844 C 99.09375 306.191406 98.0625 305.160156 96.789062 305.160156 C 95.515625 305.160156 94.484375 306.191406 94.484375 307.464844 C 94.484375 308.738281 95.515625 309.769531 96.789062 309.769531 C 98.0625 309.769531 99.09375 308.738281 99.09375 307.464844 Z M 99.09375 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.523438 307.464844 C 75.523438 306.191406 74.492188 305.160156 73.21875 305.160156 C 71.945312 305.160156 70.914062 306.191406 70.914062 307.464844 C 70.914062 308.738281 71.945312 309.769531 73.21875 309.769531 C 74.492188 309.769531 75.523438 308.738281 75.523438 307.464844 Z M 75.523438 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.203125 307.464844 C 82.203125 306.191406 81.171875 305.160156 79.898438 305.160156 C 78.625 305.160156 77.59375 306.191406 77.59375 307.464844 C 77.59375 308.738281 78.625 309.769531 79.898438 309.769531 C 81.171875 309.769531 82.203125 308.738281 82.203125 307.464844 Z M 82.203125 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.222656 307.464844 C 94.222656 306.191406 93.191406 305.160156 91.917969 305.160156 C 90.644531 305.160156 89.613281 306.191406 89.613281 307.464844 C 89.613281 308.738281 90.644531 309.769531 91.917969 309.769531 C 93.191406 309.769531 94.222656 308.738281 94.222656 307.464844 Z M 94.222656 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.863281 307.464844 C 60.863281 306.191406 59.832031 305.160156 58.558594 305.160156 C 57.285156 305.160156 56.253906 306.191406 56.253906 307.464844 C 56.253906 308.738281 57.285156 309.769531 58.558594 309.769531 C 59.832031 309.769531 60.863281 308.738281 60.863281 307.464844 Z M 60.863281 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.769531 307.464844 C 69.769531 306.191406 68.738281 305.160156 67.464844 305.160156 C 66.191406 305.160156 65.160156 306.191406 65.160156 307.464844 C 65.160156 308.738281 66.191406 309.769531 67.464844 309.769531 C 68.738281 309.769531 69.769531 308.738281 69.769531 307.464844 Z M 69.769531 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 97.195312 307.464844 C 97.195312 306.191406 96.164062 305.160156 94.890625 305.160156 C 93.617188 305.160156 92.585938 306.191406 92.585938 307.464844 C 92.585938 308.738281 93.617188 309.769531 94.890625 309.769531 C 96.164062 309.769531 97.195312 308.738281 97.195312 307.464844 Z M 97.195312 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.429688 307.464844 C 90.429688 306.191406 89.398438 305.160156 88.125 305.160156 C 86.851562 305.160156 85.820312 306.191406 85.820312 307.464844 C 85.820312 308.738281 86.851562 309.769531 88.125 309.769531 C 89.398438 309.769531 90.429688 308.738281 90.429688 307.464844 Z M 90.429688 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.0625 307.464844 C 76.0625 306.191406 75.03125 305.160156 73.757812 305.160156 C 72.484375 305.160156 71.453125 306.191406 71.453125 307.464844 C 71.453125 308.738281 72.484375 309.769531 73.757812 309.769531 C 75.03125 309.769531 76.0625 308.738281 76.0625 307.464844 Z M 76.0625 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 98.972656 307.464844 C 98.972656 306.191406 97.941406 305.160156 96.667969 305.160156 C 95.394531 305.160156 94.363281 306.191406 94.363281 307.464844 C 94.363281 308.738281 95.394531 309.769531 96.667969 309.769531 C 97.941406 309.769531 98.972656 308.738281 98.972656 307.464844 Z M 98.972656 307.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 59.933594 302.621094 C 59.933594 301.347656 58.902344 300.316406 57.628906 300.316406 C 56.355469 300.316406 55.324219 301.347656 55.324219 302.621094 C 55.324219 303.894531 56.355469 304.925781 57.628906 304.925781 C 58.902344 304.925781 59.933594 303.894531 59.933594 302.621094 Z M 59.933594 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.386719 302.621094 C 93.386719 301.347656 92.355469 300.316406 91.082031 300.316406 C 89.808594 300.316406 88.777344 301.347656 88.777344 302.621094 C 88.777344 303.894531 89.808594 304.925781 91.082031 304.925781 C 92.355469 304.925781 93.386719 303.894531 93.386719 302.621094 Z M 93.386719 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.957031 302.621094 C 72.957031 301.347656 71.925781 300.316406 70.652344 300.316406 C 69.378906 300.316406 68.347656 301.347656 68.347656 302.621094 C 68.347656 303.894531 69.378906 304.925781 70.652344 304.925781 C 71.925781 304.925781 72.957031 303.894531 72.957031 302.621094 Z M 72.957031 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.441406 302.621094 C 91.441406 301.347656 90.410156 300.316406 89.136719 300.316406 C 87.863281 300.316406 86.832031 301.347656 86.832031 302.621094 C 86.832031 303.894531 87.863281 304.925781 89.136719 304.925781 C 90.410156 304.925781 91.441406 303.894531 91.441406 302.621094 Z M 91.441406 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.507812 302.621094 C 85.507812 301.347656 84.476562 300.316406 83.203125 300.316406 C 81.929688 300.316406 80.898438 301.347656 80.898438 302.621094 C 80.898438 303.894531 81.929688 304.925781 83.203125 304.925781 C 84.476562 304.925781 85.507812 303.894531 85.507812 302.621094 Z M 85.507812 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.039062 302.621094 C 77.039062 301.347656 76.007812 300.316406 74.734375 300.316406 C 73.460938 300.316406 72.429688 301.347656 72.429688 302.621094 C 72.429688 303.894531 73.460938 304.925781 74.734375 304.925781 C 76.007812 304.925781 77.039062 303.894531 77.039062 302.621094 Z M 77.039062 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.457031 302.621094 C 72.457031 301.347656 71.425781 300.316406 70.152344 300.316406 C 68.878906 300.316406 67.847656 301.347656 67.847656 302.621094 C 67.847656 303.894531 68.878906 304.925781 70.152344 304.925781 C 71.425781 304.925781 72.457031 303.894531 72.457031 302.621094 Z M 72.457031 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.707031 302.621094 C 87.707031 301.347656 86.675781 300.316406 85.402344 300.316406 C 84.128906 300.316406 83.097656 301.347656 83.097656 302.621094 C 83.097656 303.894531 84.128906 304.925781 85.402344 304.925781 C 86.675781 304.925781 87.707031 303.894531 87.707031 302.621094 Z M 87.707031 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.195312 302.621094 C 56.195312 301.347656 55.164062 300.316406 53.890625 300.316406 C 52.617188 300.316406 51.585938 301.347656 51.585938 302.621094 C 51.585938 303.894531 52.617188 304.925781 53.890625 304.925781 C 55.164062 304.925781 56.195312 303.894531 56.195312 302.621094 Z M 56.195312 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.078125 302.621094 C 74.078125 301.347656 73.046875 300.316406 71.773438 300.316406 C 70.5 300.316406 69.46875 301.347656 69.46875 302.621094 C 69.46875 303.894531 70.5 304.925781 71.773438 304.925781 C 73.046875 304.925781 74.078125 303.894531 74.078125 302.621094 Z M 74.078125 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.195312 302.621094 C 96.195312 301.347656 95.164062 300.316406 93.890625 300.316406 C 92.617188 300.316406 91.585938 301.347656 91.585938 302.621094 C 91.585938 303.894531 92.617188 304.925781 93.890625 304.925781 C 95.164062 304.925781 96.195312 303.894531 96.195312 302.621094 Z M 96.195312 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.488281 302.621094 C 74.488281 301.347656 73.457031 300.316406 72.183594 300.316406 C 70.910156 300.316406 69.878906 301.347656 69.878906 302.621094 C 69.878906 303.894531 70.910156 304.925781 72.183594 304.925781 C 73.457031 304.925781 74.488281 303.894531 74.488281 302.621094 Z M 74.488281 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.566406 302.621094 C 60.566406 301.347656 59.535156 300.316406 58.261719 300.316406 C 56.988281 300.316406 55.957031 301.347656 55.957031 302.621094 C 55.957031 303.894531 56.988281 304.925781 58.261719 304.925781 C 59.535156 304.925781 60.566406 303.894531 60.566406 302.621094 Z M 60.566406 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.816406 302.621094 C 83.816406 301.347656 82.785156 300.316406 81.511719 300.316406 C 80.238281 300.316406 79.207031 301.347656 79.207031 302.621094 C 79.207031 303.894531 80.238281 304.925781 81.511719 304.925781 C 82.785156 304.925781 83.816406 303.894531 83.816406 302.621094 Z M 83.816406 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.335938 302.621094 C 83.335938 301.347656 82.304688 300.316406 81.03125 300.316406 C 79.757812 300.316406 78.726562 301.347656 78.726562 302.621094 C 78.726562 303.894531 79.757812 304.925781 81.03125 304.925781 C 82.304688 304.925781 83.335938 303.894531 83.335938 302.621094 Z M 83.335938 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.511719 302.621094 C 74.511719 301.347656 73.480469 300.316406 72.207031 300.316406 C 70.933594 300.316406 69.902344 301.347656 69.902344 302.621094 C 69.902344 303.894531 70.933594 304.925781 72.207031 304.925781 C 73.480469 304.925781 74.511719 303.894531 74.511719 302.621094 Z M 74.511719 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.382812 302.621094 C 66.382812 301.347656 65.351562 300.316406 64.078125 300.316406 C 62.804688 300.316406 61.773438 301.347656 61.773438 302.621094 C 61.773438 303.894531 62.804688 304.925781 64.078125 304.925781 C 65.351562 304.925781 66.382812 303.894531 66.382812 302.621094 Z M 66.382812 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.820312 302.621094 C 84.820312 301.347656 83.789062 300.316406 82.515625 300.316406 C 81.242188 300.316406 80.210938 301.347656 80.210938 302.621094 C 80.210938 303.894531 81.242188 304.925781 82.515625 304.925781 C 83.789062 304.925781 84.820312 303.894531 84.820312 302.621094 Z M 84.820312 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.808594 302.621094 C 76.808594 301.347656 75.777344 300.316406 74.503906 300.316406 C 73.230469 300.316406 72.199219 301.347656 72.199219 302.621094 C 72.199219 303.894531 73.230469 304.925781 74.503906 304.925781 C 75.777344 304.925781 76.808594 303.894531 76.808594 302.621094 Z M 76.808594 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.511719 302.621094 C 68.511719 301.347656 67.480469 300.316406 66.207031 300.316406 C 64.933594 300.316406 63.902344 301.347656 63.902344 302.621094 C 63.902344 303.894531 64.933594 304.925781 66.207031 304.925781 C 67.480469 304.925781 68.511719 303.894531 68.511719 302.621094 Z M 68.511719 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.640625 302.621094 C 96.640625 301.347656 95.609375 300.316406 94.335938 300.316406 C 93.0625 300.316406 92.03125 301.347656 92.03125 302.621094 C 92.03125 303.894531 93.0625 304.925781 94.335938 304.925781 C 95.609375 304.925781 96.640625 303.894531 96.640625 302.621094 Z M 96.640625 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.148438 302.621094 C 73.148438 301.347656 72.117188 300.316406 70.84375 300.316406 C 69.570312 300.316406 68.539062 301.347656 68.539062 302.621094 C 68.539062 303.894531 69.570312 304.925781 70.84375 304.925781 C 72.117188 304.925781 73.148438 303.894531 73.148438 302.621094 Z M 73.148438 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.808594 302.621094 C 79.808594 301.347656 78.777344 300.316406 77.503906 300.316406 C 76.230469 300.316406 75.199219 301.347656 75.199219 302.621094 C 75.199219 303.894531 76.230469 304.925781 77.503906 304.925781 C 78.777344 304.925781 79.808594 303.894531 79.808594 302.621094 Z M 79.808594 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.789062 302.621094 C 91.789062 301.347656 90.757812 300.316406 89.484375 300.316406 C 88.210938 300.316406 87.179688 301.347656 87.179688 302.621094 C 87.179688 303.894531 88.210938 304.925781 89.484375 304.925781 C 90.757812 304.925781 91.789062 303.894531 91.789062 302.621094 Z M 91.789062 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.539062 302.621094 C 58.539062 301.347656 57.507812 300.316406 56.234375 300.316406 C 54.960938 300.316406 53.929688 301.347656 53.929688 302.621094 C 53.929688 303.894531 54.960938 304.925781 56.234375 304.925781 C 57.507812 304.925781 58.539062 303.894531 58.539062 302.621094 Z M 58.539062 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.414062 302.621094 C 67.414062 301.347656 66.382812 300.316406 65.109375 300.316406 C 63.835938 300.316406 62.804688 301.347656 62.804688 302.621094 C 62.804688 303.894531 63.835938 304.925781 65.109375 304.925781 C 66.382812 304.925781 67.414062 303.894531 67.414062 302.621094 Z M 67.414062 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.75 302.621094 C 94.75 301.347656 93.71875 300.316406 92.445312 300.316406 C 91.171875 300.316406 90.140625 301.347656 90.140625 302.621094 C 90.140625 303.894531 91.171875 304.925781 92.445312 304.925781 C 93.71875 304.925781 94.75 303.894531 94.75 302.621094 Z M 94.75 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.007812 302.621094 C 88.007812 301.347656 86.976562 300.316406 85.703125 300.316406 C 84.429688 300.316406 83.398438 301.347656 83.398438 302.621094 C 83.398438 303.894531 84.429688 304.925781 85.703125 304.925781 C 86.976562 304.925781 88.007812 303.894531 88.007812 302.621094 Z M 88.007812 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.6875 302.621094 C 73.6875 301.347656 72.65625 300.316406 71.382812 300.316406 C 70.109375 300.316406 69.078125 301.347656 69.078125 302.621094 C 69.078125 303.894531 70.109375 304.925781 71.382812 304.925781 C 72.65625 304.925781 73.6875 303.894531 73.6875 302.621094 Z M 73.6875 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.523438 302.621094 C 96.523438 301.347656 95.492188 300.316406 94.21875 300.316406 C 92.945312 300.316406 91.914062 301.347656 91.914062 302.621094 C 91.914062 303.894531 92.945312 304.925781 94.21875 304.925781 C 95.492188 304.925781 96.523438 303.894531 96.523438 302.621094 Z M 96.523438 302.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.550781 297.777344 C 57.550781 296.503906 56.519531 295.472656 55.246094 295.472656 C 53.972656 295.472656 52.941406 296.503906 52.941406 297.777344 C 52.941406 299.050781 53.972656 300.082031 55.246094 300.082031 C 56.519531 300.082031 57.550781 299.050781 57.550781 297.777344 Z M 57.550781 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.558594 297.777344 C 90.558594 296.503906 89.527344 295.472656 88.253906 295.472656 C 86.980469 295.472656 85.949219 296.503906 85.949219 297.777344 C 85.949219 299.050781 86.980469 300.082031 88.253906 300.082031 C 89.527344 300.082031 90.558594 299.050781 90.558594 297.777344 Z M 90.558594 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.398438 297.777344 C 70.398438 296.503906 69.367188 295.472656 68.09375 295.472656 C 66.820312 295.472656 65.789062 296.503906 65.789062 297.777344 C 65.789062 299.050781 66.820312 300.082031 68.09375 300.082031 C 69.367188 300.082031 70.398438 299.050781 70.398438 297.777344 Z M 70.398438 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.636719 297.777344 C 88.636719 296.503906 87.605469 295.472656 86.332031 295.472656 C 85.058594 295.472656 84.027344 296.503906 84.027344 297.777344 C 84.027344 299.050781 85.058594 300.082031 86.332031 300.082031 C 87.605469 300.082031 88.636719 299.050781 88.636719 297.777344 Z M 88.636719 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.785156 297.777344 C 82.785156 296.503906 81.753906 295.472656 80.480469 295.472656 C 79.207031 295.472656 78.175781 296.503906 78.175781 297.777344 C 78.175781 299.050781 79.207031 300.082031 80.480469 300.082031 C 81.753906 300.082031 82.785156 299.050781 82.785156 297.777344 Z M 82.785156 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.429688 297.777344 C 74.429688 296.503906 73.398438 295.472656 72.125 295.472656 C 70.851562 295.472656 69.820312 296.503906 69.820312 297.777344 C 69.820312 299.050781 70.851562 300.082031 72.125 300.082031 C 73.398438 300.082031 74.429688 299.050781 74.429688 297.777344 Z M 74.429688 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.910156 297.777344 C 69.910156 296.503906 68.878906 295.472656 67.605469 295.472656 C 66.332031 295.472656 65.300781 296.503906 65.300781 297.777344 C 65.300781 299.050781 66.332031 300.082031 67.605469 300.082031 C 68.878906 300.082031 69.910156 299.050781 69.910156 297.777344 Z M 69.910156 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.953125 297.777344 C 84.953125 296.503906 83.921875 295.472656 82.648438 295.472656 C 81.375 295.472656 80.34375 296.503906 80.34375 297.777344 C 80.34375 299.050781 81.375 300.082031 82.648438 300.082031 C 83.921875 300.082031 84.953125 299.050781 84.953125 297.777344 Z M 84.953125 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.863281 297.777344 C 53.863281 296.503906 52.832031 295.472656 51.558594 295.472656 C 50.285156 295.472656 49.253906 296.503906 49.253906 297.777344 C 49.253906 299.050781 50.285156 300.082031 51.558594 300.082031 C 52.832031 300.082031 53.863281 299.050781 53.863281 297.777344 Z M 53.863281 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.507812 297.777344 C 71.507812 296.503906 70.476562 295.472656 69.203125 295.472656 C 67.929688 295.472656 66.898438 296.503906 66.898438 297.777344 C 66.898438 299.050781 67.929688 300.082031 69.203125 300.082031 C 70.476562 300.082031 71.507812 299.050781 71.507812 297.777344 Z M 71.507812 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.328125 297.777344 C 93.328125 296.503906 92.296875 295.472656 91.023438 295.472656 C 89.75 295.472656 88.71875 296.503906 88.71875 297.777344 C 88.71875 299.050781 89.75 300.082031 91.023438 300.082031 C 92.296875 300.082031 93.328125 299.050781 93.328125 297.777344 Z M 93.328125 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.910156 297.777344 C 71.910156 296.503906 70.878906 295.472656 69.605469 295.472656 C 68.332031 295.472656 67.300781 296.503906 67.300781 297.777344 C 67.300781 299.050781 68.332031 300.082031 69.605469 300.082031 C 70.878906 300.082031 71.910156 299.050781 71.910156 297.777344 Z M 71.910156 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.175781 297.777344 C 58.175781 296.503906 57.144531 295.472656 55.871094 295.472656 C 54.597656 295.472656 53.566406 296.503906 53.566406 297.777344 C 53.566406 299.050781 54.597656 300.082031 55.871094 300.082031 C 57.144531 300.082031 58.175781 299.050781 58.175781 297.777344 Z M 58.175781 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.113281 297.777344 C 81.113281 296.503906 80.082031 295.472656 78.808594 295.472656 C 77.535156 295.472656 76.503906 296.503906 76.503906 297.777344 C 76.503906 299.050781 77.535156 300.082031 78.808594 300.082031 C 80.082031 300.082031 81.113281 299.050781 81.113281 297.777344 Z M 81.113281 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.640625 297.777344 C 80.640625 296.503906 79.609375 295.472656 78.335938 295.472656 C 77.0625 295.472656 76.03125 296.503906 76.03125 297.777344 C 76.03125 299.050781 77.0625 300.082031 78.335938 300.082031 C 79.609375 300.082031 80.640625 299.050781 80.640625 297.777344 Z M 80.640625 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.375 297.777344 C 52.375 296.503906 51.34375 295.472656 50.070312 295.472656 C 48.796875 295.472656 47.765625 296.503906 47.765625 297.777344 C 47.765625 299.050781 48.796875 300.082031 50.070312 300.082031 C 51.34375 300.082031 52.375 299.050781 52.375 297.777344 Z M 52.375 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.914062 297.777344 C 63.914062 296.503906 62.882812 295.472656 61.609375 295.472656 C 60.335938 295.472656 59.304688 296.503906 59.304688 297.777344 C 59.304688 299.050781 60.335938 300.082031 61.609375 300.082031 C 62.882812 300.082031 63.914062 299.050781 63.914062 297.777344 Z M 63.914062 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.105469 297.777344 C 82.105469 296.503906 81.074219 295.472656 79.800781 295.472656 C 78.527344 295.472656 77.496094 296.503906 77.496094 297.777344 C 77.496094 299.050781 78.527344 300.082031 79.800781 300.082031 C 81.074219 300.082031 82.105469 299.050781 82.105469 297.777344 Z M 82.105469 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.203125 297.777344 C 74.203125 296.503906 73.171875 295.472656 71.898438 295.472656 C 70.625 295.472656 69.59375 296.503906 69.59375 297.777344 C 69.59375 299.050781 70.625 300.082031 71.898438 300.082031 C 73.171875 300.082031 74.203125 299.050781 74.203125 297.777344 Z M 74.203125 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.011719 297.777344 C 66.011719 296.503906 64.980469 295.472656 63.707031 295.472656 C 62.433594 295.472656 61.402344 296.503906 61.402344 297.777344 C 61.402344 299.050781 62.433594 300.082031 63.707031 300.082031 C 64.980469 300.082031 66.011719 299.050781 66.011719 297.777344 Z M 66.011719 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.769531 297.777344 C 93.769531 296.503906 92.738281 295.472656 91.464844 295.472656 C 90.191406 295.472656 89.160156 296.503906 89.160156 297.777344 C 89.160156 299.050781 90.191406 300.082031 91.464844 300.082031 C 92.738281 300.082031 93.769531 299.050781 93.769531 297.777344 Z M 93.769531 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.589844 297.777344 C 70.589844 296.503906 69.558594 295.472656 68.285156 295.472656 C 67.011719 295.472656 65.980469 296.503906 65.980469 297.777344 C 65.980469 299.050781 67.011719 300.082031 68.285156 300.082031 C 69.558594 300.082031 70.589844 299.050781 70.589844 297.777344 Z M 70.589844 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.160156 297.777344 C 77.160156 296.503906 76.128906 295.472656 74.855469 295.472656 C 73.582031 295.472656 72.550781 296.503906 72.550781 297.777344 C 72.550781 299.050781 73.582031 300.082031 74.855469 300.082031 C 76.128906 300.082031 77.160156 299.050781 77.160156 297.777344 Z M 77.160156 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.980469 297.777344 C 88.980469 296.503906 87.949219 295.472656 86.675781 295.472656 C 85.402344 295.472656 84.371094 296.503906 84.371094 297.777344 C 84.371094 299.050781 85.402344 300.082031 86.675781 300.082031 C 87.949219 300.082031 88.980469 299.050781 88.980469 297.777344 Z M 88.980469 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.175781 297.777344 C 56.175781 296.503906 55.144531 295.472656 53.871094 295.472656 C 52.597656 295.472656 51.566406 296.503906 51.566406 297.777344 C 51.566406 299.050781 52.597656 300.082031 53.871094 300.082031 C 55.144531 300.082031 56.175781 299.050781 56.175781 297.777344 Z M 56.175781 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.929688 297.777344 C 64.929688 296.503906 63.898438 295.472656 62.625 295.472656 C 61.351562 295.472656 60.320312 296.503906 60.320312 297.777344 C 60.320312 299.050781 61.351562 300.082031 62.625 300.082031 C 63.898438 300.082031 64.929688 299.050781 64.929688 297.777344 Z M 64.929688 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.902344 297.777344 C 91.902344 296.503906 90.871094 295.472656 89.597656 295.472656 C 88.324219 295.472656 87.292969 296.503906 87.292969 297.777344 C 87.292969 299.050781 88.324219 300.082031 89.597656 300.082031 C 90.871094 300.082031 91.902344 299.050781 91.902344 297.777344 Z M 91.902344 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.253906 297.777344 C 85.253906 296.503906 84.222656 295.472656 82.949219 295.472656 C 81.675781 295.472656 80.644531 296.503906 80.644531 297.777344 C 80.644531 299.050781 81.675781 300.082031 82.949219 300.082031 C 84.222656 300.082031 85.253906 299.050781 85.253906 297.777344 Z M 85.253906 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.121094 297.777344 C 71.121094 296.503906 70.089844 295.472656 68.816406 295.472656 C 67.542969 295.472656 66.511719 296.503906 66.511719 297.777344 C 66.511719 299.050781 67.542969 300.082031 68.816406 300.082031 C 70.089844 300.082031 71.121094 299.050781 71.121094 297.777344 Z M 71.121094 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.652344 297.777344 C 93.652344 296.503906 92.621094 295.472656 91.347656 295.472656 C 90.074219 295.472656 89.042969 296.503906 89.042969 297.777344 C 89.042969 299.050781 90.074219 300.082031 91.347656 300.082031 C 92.621094 300.082031 93.652344 299.050781 93.652344 297.777344 Z M 93.652344 297.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.136719 292.933594 C 55.136719 291.660156 54.105469 290.628906 52.832031 290.628906 C 51.558594 290.628906 50.527344 291.660156 50.527344 292.933594 C 50.527344 294.207031 51.558594 295.238281 52.832031 295.238281 C 54.105469 295.238281 55.136719 294.207031 55.136719 292.933594 Z M 55.136719 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.367188 292.933594 C 87.367188 291.660156 86.335938 290.628906 85.0625 290.628906 C 83.789062 290.628906 82.757812 291.660156 82.757812 292.933594 C 82.757812 294.207031 83.789062 295.238281 85.0625 295.238281 C 86.335938 295.238281 87.367188 294.207031 87.367188 292.933594 Z M 87.367188 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.683594 292.933594 C 67.683594 291.660156 66.652344 290.628906 65.378906 290.628906 C 64.105469 290.628906 63.074219 291.660156 63.074219 292.933594 C 63.074219 294.207031 64.105469 295.238281 65.378906 295.238281 C 66.652344 295.238281 67.683594 294.207031 67.683594 292.933594 Z M 67.683594 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.496094 292.933594 C 85.496094 291.660156 84.464844 290.628906 83.191406 290.628906 C 81.917969 290.628906 80.886719 291.660156 80.886719 292.933594 C 80.886719 294.207031 81.917969 295.238281 83.191406 295.238281 C 84.464844 295.238281 85.496094 294.207031 85.496094 292.933594 Z M 85.496094 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.777344 292.933594 C 79.777344 291.660156 78.746094 290.628906 77.472656 290.628906 C 76.199219 290.628906 75.167969 291.660156 75.167969 292.933594 C 75.167969 294.207031 76.199219 295.238281 77.472656 295.238281 C 78.746094 295.238281 79.777344 294.207031 79.777344 292.933594 Z M 79.777344 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.617188 292.933594 C 71.617188 291.660156 70.585938 290.628906 69.3125 290.628906 C 68.039062 290.628906 67.007812 291.660156 67.007812 292.933594 C 67.007812 294.207031 68.039062 295.238281 69.3125 295.238281 C 70.585938 295.238281 71.617188 294.207031 71.617188 292.933594 Z M 71.617188 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.203125 292.933594 C 67.203125 291.660156 66.171875 290.628906 64.898438 290.628906 C 63.625 290.628906 62.59375 291.660156 62.59375 292.933594 C 62.59375 294.207031 63.625 295.238281 64.898438 295.238281 C 66.171875 295.238281 67.203125 294.207031 67.203125 292.933594 Z M 67.203125 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.898438 292.933594 C 81.898438 291.660156 80.867188 290.628906 79.59375 290.628906 C 78.320312 290.628906 77.289062 291.660156 77.289062 292.933594 C 77.289062 294.207031 78.320312 295.238281 79.59375 295.238281 C 80.867188 295.238281 81.898438 294.207031 81.898438 292.933594 Z M 81.898438 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.535156 292.933594 C 51.535156 291.660156 50.503906 290.628906 49.230469 290.628906 C 47.957031 290.628906 46.925781 291.660156 46.925781 292.933594 C 46.925781 294.207031 47.957031 295.238281 49.230469 295.238281 C 50.503906 295.238281 51.535156 294.207031 51.535156 292.933594 Z M 51.535156 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.765625 292.933594 C 68.765625 291.660156 67.734375 290.628906 66.460938 290.628906 C 65.1875 290.628906 64.15625 291.660156 64.15625 292.933594 C 64.15625 294.207031 65.1875 295.238281 66.460938 295.238281 C 67.734375 295.238281 68.765625 294.207031 68.765625 292.933594 Z M 68.765625 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.074219 292.933594 C 90.074219 291.660156 89.042969 290.628906 87.769531 290.628906 C 86.496094 290.628906 85.464844 291.660156 85.464844 292.933594 C 85.464844 294.207031 86.496094 295.238281 87.769531 295.238281 C 89.042969 295.238281 90.074219 294.207031 90.074219 292.933594 Z M 90.074219 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.160156 292.933594 C 69.160156 291.660156 68.128906 290.628906 66.855469 290.628906 C 65.582031 290.628906 64.550781 291.660156 64.550781 292.933594 C 64.550781 294.207031 65.582031 295.238281 66.855469 295.238281 C 68.128906 295.238281 69.160156 294.207031 69.160156 292.933594 Z M 69.160156 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.746094 292.933594 C 55.746094 291.660156 54.714844 290.628906 53.441406 290.628906 C 52.167969 290.628906 51.136719 291.660156 51.136719 292.933594 C 51.136719 294.207031 52.167969 295.238281 53.441406 295.238281 C 54.714844 295.238281 55.746094 294.207031 55.746094 292.933594 Z M 55.746094 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.144531 292.933594 C 78.144531 291.660156 77.113281 290.628906 75.839844 290.628906 C 74.566406 290.628906 73.535156 291.660156 73.535156 292.933594 C 73.535156 294.207031 74.566406 295.238281 75.839844 295.238281 C 77.113281 295.238281 78.144531 294.207031 78.144531 292.933594 Z M 78.144531 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.6875 292.933594 C 77.6875 291.660156 76.65625 290.628906 75.382812 290.628906 C 74.109375 290.628906 73.078125 291.660156 73.078125 292.933594 C 73.078125 294.207031 74.109375 295.238281 75.382812 295.238281 C 76.65625 295.238281 77.6875 294.207031 77.6875 292.933594 Z M 77.6875 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.082031 292.933594 C 50.082031 291.660156 49.050781 290.628906 47.777344 290.628906 C 46.503906 290.628906 45.472656 291.660156 45.472656 292.933594 C 45.472656 294.207031 46.503906 295.238281 47.777344 295.238281 C 49.050781 295.238281 50.082031 294.207031 50.082031 292.933594 Z M 50.082031 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.351562 292.933594 C 61.351562 291.660156 60.320312 290.628906 59.046875 290.628906 C 57.773438 290.628906 56.742188 291.660156 56.742188 292.933594 C 56.742188 294.207031 57.773438 295.238281 59.046875 295.238281 C 60.320312 295.238281 61.351562 294.207031 61.351562 292.933594 Z M 61.351562 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.113281 292.933594 C 79.113281 291.660156 78.082031 290.628906 76.808594 290.628906 C 75.535156 290.628906 74.503906 291.660156 74.503906 292.933594 C 74.503906 294.207031 75.535156 295.238281 76.808594 295.238281 C 78.082031 295.238281 79.113281 294.207031 79.113281 292.933594 Z M 79.113281 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.394531 292.933594 C 71.394531 291.660156 70.363281 290.628906 69.089844 290.628906 C 67.816406 290.628906 66.785156 291.660156 66.785156 292.933594 C 66.785156 294.207031 67.816406 295.238281 69.089844 295.238281 C 70.363281 295.238281 71.394531 294.207031 71.394531 292.933594 Z M 71.394531 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.402344 292.933594 C 63.402344 291.660156 62.371094 290.628906 61.097656 290.628906 C 59.824219 290.628906 58.792969 291.660156 58.792969 292.933594 C 58.792969 294.207031 59.824219 295.238281 61.097656 295.238281 C 62.371094 295.238281 63.402344 294.207031 63.402344 292.933594 Z M 63.402344 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.503906 292.933594 C 90.503906 291.660156 89.472656 290.628906 88.199219 290.628906 C 86.925781 290.628906 85.894531 291.660156 85.894531 292.933594 C 85.894531 294.207031 86.925781 295.238281 88.199219 295.238281 C 89.472656 295.238281 90.503906 294.207031 90.503906 292.933594 Z M 90.503906 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.871094 292.933594 C 67.871094 291.660156 66.839844 290.628906 65.566406 290.628906 C 64.292969 290.628906 63.261719 291.660156 63.261719 292.933594 C 63.261719 294.207031 64.292969 295.238281 65.566406 295.238281 C 66.839844 295.238281 67.871094 294.207031 67.871094 292.933594 Z M 67.871094 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.285156 292.933594 C 74.285156 291.660156 73.253906 290.628906 71.980469 290.628906 C 70.707031 290.628906 69.675781 291.660156 69.675781 292.933594 C 69.675781 294.207031 70.707031 295.238281 71.980469 295.238281 C 73.253906 295.238281 74.285156 294.207031 74.285156 292.933594 Z M 74.285156 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.828125 292.933594 C 85.828125 291.660156 84.796875 290.628906 83.523438 290.628906 C 82.25 290.628906 81.21875 291.660156 81.21875 292.933594 C 81.21875 294.207031 82.25 295.238281 83.523438 295.238281 C 84.796875 295.238281 85.828125 294.207031 85.828125 292.933594 Z M 85.828125 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.792969 292.933594 C 53.792969 291.660156 52.761719 290.628906 51.488281 290.628906 C 50.214844 290.628906 49.183594 291.660156 49.183594 292.933594 C 49.183594 294.207031 50.214844 295.238281 51.488281 295.238281 C 52.761719 295.238281 53.792969 294.207031 53.792969 292.933594 Z M 53.792969 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.34375 292.933594 C 62.34375 291.660156 61.3125 290.628906 60.039062 290.628906 C 58.765625 290.628906 57.734375 291.660156 57.734375 292.933594 C 57.734375 294.207031 58.765625 295.238281 60.039062 295.238281 C 61.3125 295.238281 62.34375 294.207031 62.34375 292.933594 Z M 62.34375 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.683594 292.933594 C 88.683594 291.660156 87.652344 290.628906 86.378906 290.628906 C 85.105469 290.628906 84.074219 291.660156 84.074219 292.933594 C 84.074219 294.207031 85.105469 295.238281 86.378906 295.238281 C 87.652344 295.238281 88.683594 294.207031 88.683594 292.933594 Z M 88.683594 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.1875 292.933594 C 82.1875 291.660156 81.15625 290.628906 79.882812 290.628906 C 78.609375 290.628906 77.578125 291.660156 77.578125 292.933594 C 77.578125 294.207031 78.609375 295.238281 79.882812 295.238281 C 81.15625 295.238281 82.1875 294.207031 82.1875 292.933594 Z M 82.1875 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.390625 292.933594 C 68.390625 291.660156 67.359375 290.628906 66.085938 290.628906 C 64.8125 290.628906 63.78125 291.660156 63.78125 292.933594 C 63.78125 294.207031 64.8125 295.238281 66.085938 295.238281 C 67.359375 295.238281 68.390625 294.207031 68.390625 292.933594 Z M 68.390625 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.390625 292.933594 C 90.390625 291.660156 89.359375 290.628906 88.085938 290.628906 C 86.8125 290.628906 85.78125 291.660156 85.78125 292.933594 C 85.78125 294.207031 86.8125 295.238281 88.085938 295.238281 C 89.359375 295.238281 90.390625 294.207031 90.390625 292.933594 Z M 90.390625 292.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.714844 288.089844 C 52.714844 286.816406 51.683594 285.785156 50.410156 285.785156 C 49.136719 285.785156 48.105469 286.816406 48.105469 288.089844 C 48.105469 289.363281 49.136719 290.394531 50.410156 290.394531 C 51.683594 290.394531 52.714844 289.363281 52.714844 288.089844 Z M 52.714844 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.851562 288.089844 C 83.851562 286.816406 82.820312 285.785156 81.546875 285.785156 C 80.273438 285.785156 79.242188 286.816406 79.242188 288.089844 C 79.242188 289.363281 80.273438 290.394531 81.546875 290.394531 C 82.820312 290.394531 83.851562 289.363281 83.851562 288.089844 Z M 83.851562 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.835938 288.089844 C 64.835938 286.816406 63.804688 285.785156 62.53125 285.785156 C 61.257812 285.785156 60.226562 286.816406 60.226562 288.089844 C 60.226562 289.363281 61.257812 290.394531 62.53125 290.394531 C 63.804688 290.394531 64.835938 289.363281 64.835938 288.089844 Z M 64.835938 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.039062 288.089844 C 82.039062 286.816406 81.007812 285.785156 79.734375 285.785156 C 78.460938 285.785156 77.429688 286.816406 77.429688 288.089844 C 77.429688 289.363281 78.460938 290.394531 79.734375 290.394531 C 81.007812 290.394531 82.039062 289.363281 82.039062 288.089844 Z M 82.039062 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.519531 288.089844 C 76.519531 286.816406 75.488281 285.785156 74.214844 285.785156 C 72.941406 285.785156 71.910156 286.816406 71.910156 288.089844 C 71.910156 289.363281 72.941406 290.394531 74.214844 290.394531 C 75.488281 290.394531 76.519531 289.363281 76.519531 288.089844 Z M 76.519531 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.636719 288.089844 C 68.636719 286.816406 67.605469 285.785156 66.332031 285.785156 C 65.058594 285.785156 64.027344 286.816406 64.027344 288.089844 C 64.027344 289.363281 65.058594 290.394531 66.332031 290.394531 C 67.605469 290.394531 68.636719 289.363281 68.636719 288.089844 Z M 68.636719 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.375 288.089844 C 64.375 286.816406 63.34375 285.785156 62.070312 285.785156 C 60.796875 285.785156 59.765625 286.816406 59.765625 288.089844 C 59.765625 289.363281 60.796875 290.394531 62.070312 290.394531 C 63.34375 290.394531 64.375 289.363281 64.375 288.089844 Z M 64.375 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.566406 288.089844 C 78.566406 286.816406 77.535156 285.785156 76.261719 285.785156 C 74.988281 285.785156 73.957031 286.816406 73.957031 288.089844 C 73.957031 289.363281 74.988281 290.394531 76.261719 290.394531 C 77.535156 290.394531 78.566406 289.363281 78.566406 288.089844 Z M 78.566406 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.238281 288.089844 C 49.238281 286.816406 48.207031 285.785156 46.933594 285.785156 C 45.660156 285.785156 44.628906 286.816406 44.628906 288.089844 C 44.628906 289.363281 45.660156 290.394531 46.933594 290.394531 C 48.207031 290.394531 49.238281 289.363281 49.238281 288.089844 Z M 49.238281 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.878906 288.089844 C 65.878906 286.816406 64.847656 285.785156 63.574219 285.785156 C 62.300781 285.785156 61.269531 286.816406 61.269531 288.089844 C 61.269531 289.363281 62.300781 290.394531 63.574219 290.394531 C 64.847656 290.394531 65.878906 289.363281 65.878906 288.089844 Z M 65.878906 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.464844 288.089844 C 86.464844 286.816406 85.433594 285.785156 84.160156 285.785156 C 82.886719 285.785156 81.855469 286.816406 81.855469 288.089844 C 81.855469 289.363281 82.886719 290.394531 84.160156 290.394531 C 85.433594 290.394531 86.464844 289.363281 86.464844 288.089844 Z M 86.464844 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.261719 288.089844 C 66.261719 286.816406 65.230469 285.785156 63.957031 285.785156 C 62.683594 285.785156 61.652344 286.816406 61.652344 288.089844 C 61.652344 289.363281 62.683594 290.394531 63.957031 290.394531 C 65.230469 290.394531 66.261719 289.363281 66.261719 288.089844 Z M 66.261719 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.304688 288.089844 C 53.304688 286.816406 52.273438 285.785156 51 285.785156 C 49.726562 285.785156 48.695312 286.816406 48.695312 288.089844 C 48.695312 289.363281 49.726562 290.394531 51 290.394531 C 52.273438 290.394531 53.304688 289.363281 53.304688 288.089844 Z M 53.304688 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.941406 288.089844 C 74.941406 286.816406 73.910156 285.785156 72.636719 285.785156 C 71.363281 285.785156 70.332031 286.816406 70.332031 288.089844 C 70.332031 289.363281 71.363281 290.394531 72.636719 290.394531 C 73.910156 290.394531 74.941406 289.363281 74.941406 288.089844 Z M 74.941406 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.496094 288.089844 C 74.496094 286.816406 73.464844 285.785156 72.191406 285.785156 C 70.917969 285.785156 69.886719 286.816406 69.886719 288.089844 C 69.886719 289.363281 70.917969 290.394531 72.191406 290.394531 C 73.464844 290.394531 74.496094 289.363281 74.496094 288.089844 Z M 74.496094 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.835938 288.089844 C 47.835938 286.816406 46.804688 285.785156 45.53125 285.785156 C 44.257812 285.785156 43.226562 286.816406 43.226562 288.089844 C 43.226562 289.363281 44.257812 290.394531 45.53125 290.394531 C 46.804688 290.394531 47.835938 289.363281 47.835938 288.089844 Z M 47.835938 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.71875 288.089844 C 58.71875 286.816406 57.6875 285.785156 56.414062 285.785156 C 55.140625 285.785156 54.109375 286.816406 54.109375 288.089844 C 54.109375 289.363281 55.140625 290.394531 56.414062 290.394531 C 57.6875 290.394531 58.71875 289.363281 58.71875 288.089844 Z M 58.71875 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.878906 288.089844 C 75.878906 286.816406 74.847656 285.785156 73.574219 285.785156 C 72.300781 285.785156 71.269531 286.816406 71.269531 288.089844 C 71.269531 289.363281 72.300781 290.394531 73.574219 290.394531 C 74.847656 290.394531 75.878906 289.363281 75.878906 288.089844 Z M 75.878906 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.421875 288.089844 C 68.421875 286.816406 67.390625 285.785156 66.117188 285.785156 C 64.84375 285.785156 63.8125 286.816406 63.8125 288.089844 C 63.8125 289.363281 64.84375 290.394531 66.117188 290.394531 C 67.390625 290.394531 68.421875 289.363281 68.421875 288.089844 Z M 68.421875 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.699219 288.089844 C 60.699219 286.816406 59.667969 285.785156 58.394531 285.785156 C 57.121094 285.785156 56.089844 286.816406 56.089844 288.089844 C 56.089844 289.363281 57.121094 290.394531 58.394531 290.394531 C 59.667969 290.394531 60.699219 289.363281 60.699219 288.089844 Z M 60.699219 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.882812 288.089844 C 86.882812 286.816406 85.851562 285.785156 84.578125 285.785156 C 83.304688 285.785156 82.273438 286.816406 82.273438 288.089844 C 82.273438 289.363281 83.304688 290.394531 84.578125 290.394531 C 85.851562 290.394531 86.882812 289.363281 86.882812 288.089844 Z M 86.882812 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.015625 288.089844 C 65.015625 286.816406 63.984375 285.785156 62.710938 285.785156 C 61.4375 285.785156 60.40625 286.816406 60.40625 288.089844 C 60.40625 289.363281 61.4375 290.394531 62.710938 290.394531 C 63.984375 290.394531 65.015625 289.363281 65.015625 288.089844 Z M 65.015625 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.214844 288.089844 C 71.214844 286.816406 70.183594 285.785156 68.910156 285.785156 C 67.636719 285.785156 66.605469 286.816406 66.605469 288.089844 C 66.605469 289.363281 67.636719 290.394531 68.910156 290.394531 C 70.183594 290.394531 71.214844 289.363281 71.214844 288.089844 Z M 71.214844 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.363281 288.089844 C 82.363281 286.816406 81.332031 285.785156 80.058594 285.785156 C 78.785156 285.785156 77.753906 286.816406 77.753906 288.089844 C 77.753906 289.363281 78.785156 290.394531 80.058594 290.394531 C 81.332031 290.394531 82.363281 289.363281 82.363281 288.089844 Z M 82.363281 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.417969 288.089844 C 51.417969 286.816406 50.386719 285.785156 49.113281 285.785156 C 47.839844 285.785156 46.808594 286.816406 46.808594 288.089844 C 46.808594 289.363281 47.839844 290.394531 49.113281 290.394531 C 50.386719 290.394531 51.417969 289.363281 51.417969 288.089844 Z M 51.417969 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 59.679688 288.089844 C 59.679688 286.816406 58.648438 285.785156 57.375 285.785156 C 56.101562 285.785156 55.070312 286.816406 55.070312 288.089844 C 55.070312 289.363281 56.101562 290.394531 57.375 290.394531 C 58.648438 290.394531 59.679688 289.363281 59.679688 288.089844 Z M 59.679688 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.121094 288.089844 C 85.121094 286.816406 84.089844 285.785156 82.816406 285.785156 C 81.542969 285.785156 80.511719 286.816406 80.511719 288.089844 C 80.511719 289.363281 81.542969 290.394531 82.816406 290.394531 C 84.089844 290.394531 85.121094 289.363281 85.121094 288.089844 Z M 85.121094 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.847656 288.089844 C 78.847656 286.816406 77.816406 285.785156 76.542969 285.785156 C 75.269531 285.785156 74.238281 286.816406 74.238281 288.089844 C 74.238281 289.363281 75.269531 290.394531 76.542969 290.394531 C 77.816406 290.394531 78.847656 289.363281 78.847656 288.089844 Z M 78.847656 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.515625 288.089844 C 65.515625 286.816406 64.484375 285.785156 63.210938 285.785156 C 61.9375 285.785156 60.90625 286.816406 60.90625 288.089844 C 60.90625 289.363281 61.9375 290.394531 63.210938 290.394531 C 64.484375 290.394531 65.515625 289.363281 65.515625 288.089844 Z M 65.515625 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.769531 288.089844 C 86.769531 286.816406 85.738281 285.785156 84.464844 285.785156 C 83.191406 285.785156 82.160156 286.816406 82.160156 288.089844 C 82.160156 289.363281 83.191406 290.394531 84.464844 290.394531 C 85.738281 290.394531 86.769531 289.363281 86.769531 288.089844 Z M 86.769531 288.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.3125 283.246094 C 50.3125 281.972656 49.28125 280.941406 48.007812 280.941406 C 46.734375 280.941406 45.703125 281.972656 45.703125 283.246094 C 45.703125 284.519531 46.734375 285.550781 48.007812 285.550781 C 49.28125 285.550781 50.3125 284.519531 50.3125 283.246094 Z M 50.3125 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.039062 283.246094 C 80.039062 281.972656 79.007812 280.941406 77.734375 280.941406 C 76.460938 280.941406 75.429688 281.972656 75.429688 283.246094 C 75.429688 284.519531 76.460938 285.550781 77.734375 285.550781 C 79.007812 285.550781 80.039062 284.519531 80.039062 283.246094 Z M 80.039062 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.886719 283.246094 C 61.886719 281.972656 60.855469 280.941406 59.582031 280.941406 C 58.308594 280.941406 57.277344 281.972656 57.277344 283.246094 C 57.277344 284.519531 58.308594 285.550781 59.582031 285.550781 C 60.855469 285.550781 61.886719 284.519531 61.886719 283.246094 Z M 61.886719 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.3125 283.246094 C 78.3125 281.972656 77.28125 280.941406 76.007812 280.941406 C 74.734375 280.941406 73.703125 281.972656 73.703125 283.246094 C 73.703125 284.519531 74.734375 285.550781 76.007812 285.550781 C 77.28125 285.550781 78.3125 284.519531 78.3125 283.246094 Z M 78.3125 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.039062 283.246094 C 73.039062 281.972656 72.007812 280.941406 70.734375 280.941406 C 69.460938 280.941406 68.429688 281.972656 68.429688 283.246094 C 68.429688 284.519531 69.460938 285.550781 70.734375 285.550781 C 72.007812 285.550781 73.039062 284.519531 73.039062 283.246094 Z M 73.039062 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.515625 283.246094 C 65.515625 281.972656 64.484375 280.941406 63.210938 280.941406 C 61.9375 280.941406 60.90625 281.972656 60.90625 283.246094 C 60.90625 284.519531 61.9375 285.550781 63.210938 285.550781 C 64.484375 285.550781 65.515625 284.519531 65.515625 283.246094 Z M 65.515625 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.445312 283.246094 C 61.445312 281.972656 60.414062 280.941406 59.140625 280.941406 C 57.867188 280.941406 56.835938 281.972656 56.835938 283.246094 C 56.835938 284.519531 57.867188 285.550781 59.140625 285.550781 C 60.414062 285.550781 61.445312 284.519531 61.445312 283.246094 Z M 61.445312 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.992188 283.246094 C 74.992188 281.972656 73.960938 280.941406 72.6875 280.941406 C 71.414062 280.941406 70.382812 281.972656 70.382812 283.246094 C 70.382812 284.519531 71.414062 285.550781 72.6875 285.550781 C 73.960938 285.550781 74.992188 284.519531 74.992188 283.246094 Z M 74.992188 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.992188 283.246094 C 46.992188 281.972656 45.960938 280.941406 44.6875 280.941406 C 43.414062 280.941406 42.382812 281.972656 42.382812 283.246094 C 42.382812 284.519531 43.414062 285.550781 44.6875 285.550781 C 45.960938 285.550781 46.992188 284.519531 46.992188 283.246094 Z M 46.992188 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.882812 283.246094 C 62.882812 281.972656 61.851562 280.941406 60.578125 280.941406 C 59.304688 280.941406 58.273438 281.972656 58.273438 283.246094 C 58.273438 284.519531 59.304688 285.550781 60.578125 285.550781 C 61.851562 285.550781 62.882812 284.519531 62.882812 283.246094 Z M 62.882812 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.535156 283.246094 C 82.535156 281.972656 81.503906 280.941406 80.230469 280.941406 C 78.957031 280.941406 77.925781 281.972656 77.925781 283.246094 C 77.925781 284.519531 78.957031 285.550781 80.230469 285.550781 C 81.503906 285.550781 82.535156 284.519531 82.535156 283.246094 Z M 82.535156 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.246094 283.246094 C 63.246094 281.972656 62.214844 280.941406 60.941406 280.941406 C 59.667969 280.941406 58.636719 281.972656 58.636719 283.246094 C 58.636719 284.519531 59.667969 285.550781 60.941406 285.550781 C 62.214844 285.550781 63.246094 284.519531 63.246094 283.246094 Z M 63.246094 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.875 283.246094 C 50.875 281.972656 49.84375 280.941406 48.570312 280.941406 C 47.296875 280.941406 46.265625 281.972656 46.265625 283.246094 C 46.265625 284.519531 47.296875 285.550781 48.570312 285.550781 C 49.84375 285.550781 50.875 284.519531 50.875 283.246094 Z M 50.875 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.535156 283.246094 C 71.535156 281.972656 70.503906 280.941406 69.230469 280.941406 C 67.957031 280.941406 66.925781 281.972656 66.925781 283.246094 C 66.925781 284.519531 67.957031 285.550781 69.230469 285.550781 C 70.503906 285.550781 71.535156 284.519531 71.535156 283.246094 Z M 71.535156 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.109375 283.246094 C 71.109375 281.972656 70.078125 280.941406 68.804688 280.941406 C 67.53125 280.941406 66.5 281.972656 66.5 283.246094 C 66.5 284.519531 67.53125 285.550781 68.804688 285.550781 C 70.078125 285.550781 71.109375 284.519531 71.109375 283.246094 Z M 71.109375 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.652344 283.246094 C 45.652344 281.972656 44.621094 280.941406 43.347656 280.941406 C 42.074219 280.941406 41.042969 281.972656 41.042969 283.246094 C 41.042969 284.519531 42.074219 285.550781 43.347656 285.550781 C 44.621094 285.550781 45.652344 284.519531 45.652344 283.246094 Z M 45.652344 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.042969 283.246094 C 56.042969 281.972656 55.011719 280.941406 53.738281 280.941406 C 52.464844 280.941406 51.433594 281.972656 51.433594 283.246094 C 51.433594 284.519531 52.464844 285.550781 53.738281 285.550781 C 55.011719 285.550781 56.042969 284.519531 56.042969 283.246094 Z M 56.042969 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.425781 283.246094 C 72.425781 281.972656 71.394531 280.941406 70.121094 280.941406 C 68.847656 280.941406 67.816406 281.972656 67.816406 283.246094 C 67.816406 284.519531 68.847656 285.550781 70.121094 285.550781 C 71.394531 285.550781 72.425781 284.519531 72.425781 283.246094 Z M 72.425781 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.308594 283.246094 C 65.308594 281.972656 64.277344 280.941406 63.003906 280.941406 C 61.730469 280.941406 60.699219 281.972656 60.699219 283.246094 C 60.699219 284.519531 61.730469 285.550781 63.003906 285.550781 C 64.277344 285.550781 65.308594 284.519531 65.308594 283.246094 Z M 65.308594 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.933594 283.246094 C 57.933594 281.972656 56.902344 280.941406 55.628906 280.941406 C 54.355469 280.941406 53.324219 281.972656 53.324219 283.246094 C 53.324219 284.519531 54.355469 285.550781 55.628906 285.550781 C 56.902344 285.550781 57.933594 284.519531 57.933594 283.246094 Z M 57.933594 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.933594 283.246094 C 82.933594 281.972656 81.902344 280.941406 80.628906 280.941406 C 79.355469 280.941406 78.324219 281.972656 78.324219 283.246094 C 78.324219 284.519531 79.355469 285.550781 80.628906 285.550781 C 81.902344 285.550781 82.933594 284.519531 82.933594 283.246094 Z M 82.933594 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.058594 283.246094 C 62.058594 281.972656 61.027344 280.941406 59.753906 280.941406 C 58.480469 280.941406 57.449219 281.972656 57.449219 283.246094 C 57.449219 284.519531 58.480469 285.550781 59.753906 285.550781 C 61.027344 285.550781 62.058594 284.519531 62.058594 283.246094 Z M 62.058594 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.976562 283.246094 C 67.976562 281.972656 66.945312 280.941406 65.671875 280.941406 C 64.398438 280.941406 63.367188 281.972656 63.367188 283.246094 C 63.367188 284.519531 64.398438 285.550781 65.671875 285.550781 C 66.945312 285.550781 67.976562 284.519531 67.976562 283.246094 Z M 67.976562 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.621094 283.246094 C 78.621094 281.972656 77.589844 280.941406 76.316406 280.941406 C 75.042969 280.941406 74.011719 281.972656 74.011719 283.246094 C 74.011719 284.519531 75.042969 285.550781 76.316406 285.550781 C 77.589844 285.550781 78.621094 284.519531 78.621094 283.246094 Z M 78.621094 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.074219 283.246094 C 49.074219 281.972656 48.042969 280.941406 46.769531 280.941406 C 45.496094 280.941406 44.464844 281.972656 44.464844 283.246094 C 44.464844 284.519531 45.496094 285.550781 46.769531 285.550781 C 48.042969 285.550781 49.074219 284.519531 49.074219 283.246094 Z M 49.074219 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.960938 283.246094 C 56.960938 281.972656 55.929688 280.941406 54.65625 280.941406 C 53.382812 280.941406 52.351562 281.972656 52.351562 283.246094 C 52.351562 284.519531 53.382812 285.550781 54.65625 285.550781 C 55.929688 285.550781 56.960938 284.519531 56.960938 283.246094 Z M 56.960938 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.25 283.246094 C 81.25 281.972656 80.21875 280.941406 78.945312 280.941406 C 77.671875 280.941406 76.640625 281.972656 76.640625 283.246094 C 76.640625 284.519531 77.671875 285.550781 78.945312 285.550781 C 80.21875 285.550781 81.25 284.519531 81.25 283.246094 Z M 81.25 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.261719 283.246094 C 75.261719 281.972656 74.230469 280.941406 72.957031 280.941406 C 71.683594 280.941406 70.652344 281.972656 70.652344 283.246094 C 70.652344 284.519531 71.683594 285.550781 72.957031 285.550781 C 74.230469 285.550781 75.261719 284.519531 75.261719 283.246094 Z M 75.261719 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.535156 283.246094 C 62.535156 281.972656 61.503906 280.941406 60.230469 280.941406 C 58.957031 280.941406 57.925781 281.972656 57.925781 283.246094 C 57.925781 284.519531 58.957031 285.550781 60.230469 285.550781 C 61.503906 285.550781 62.535156 284.519531 62.535156 283.246094 Z M 62.535156 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.828125 283.246094 C 82.828125 281.972656 81.796875 280.941406 80.523438 280.941406 C 79.25 280.941406 78.21875 281.972656 78.21875 283.246094 C 78.21875 284.519531 79.25 285.550781 80.523438 285.550781 C 81.796875 285.550781 82.828125 284.519531 82.828125 283.246094 Z M 82.828125 283.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.953125 278.402344 C 47.953125 277.128906 46.921875 276.097656 45.648438 276.097656 C 44.375 276.097656 43.34375 277.128906 43.34375 278.402344 C 43.34375 279.675781 44.375 280.707031 45.648438 280.707031 C 46.921875 280.707031 47.953125 279.675781 47.953125 278.402344 Z M 47.953125 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.972656 278.402344 C 75.972656 277.128906 74.941406 276.097656 73.667969 276.097656 C 72.394531 276.097656 71.363281 277.128906 71.363281 278.402344 C 71.363281 279.675781 72.394531 280.707031 73.667969 280.707031 C 74.941406 280.707031 75.972656 279.675781 75.972656 278.402344 Z M 75.972656 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.859375 278.402344 C 58.859375 277.128906 57.828125 276.097656 56.554688 276.097656 C 55.28125 276.097656 54.25 277.128906 54.25 278.402344 C 54.25 279.675781 55.28125 280.707031 56.554688 280.707031 C 57.828125 280.707031 58.859375 279.675781 58.859375 278.402344 Z M 58.859375 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.34375 278.402344 C 74.34375 277.128906 73.3125 276.097656 72.039062 276.097656 C 70.765625 276.097656 69.734375 277.128906 69.734375 278.402344 C 69.734375 279.675781 70.765625 280.707031 72.039062 280.707031 C 73.3125 280.707031 74.34375 279.675781 74.34375 278.402344 Z M 74.34375 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.375 278.402344 C 69.375 277.128906 68.34375 276.097656 67.070312 276.097656 C 65.796875 276.097656 64.765625 277.128906 64.765625 278.402344 C 64.765625 279.675781 65.796875 280.707031 67.070312 280.707031 C 68.34375 280.707031 69.375 279.675781 69.375 278.402344 Z M 69.375 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.28125 278.402344 C 62.28125 277.128906 61.25 276.097656 59.976562 276.097656 C 58.703125 276.097656 57.671875 277.128906 57.671875 278.402344 C 57.671875 279.675781 58.703125 280.707031 59.976562 280.707031 C 61.25 280.707031 62.28125 279.675781 62.28125 278.402344 Z M 62.28125 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.445312 278.402344 C 58.445312 277.128906 57.414062 276.097656 56.140625 276.097656 C 54.867188 276.097656 53.835938 277.128906 53.835938 278.402344 C 53.835938 279.675781 54.867188 280.707031 56.140625 280.707031 C 57.414062 280.707031 58.445312 279.675781 58.445312 278.402344 Z M 58.445312 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.214844 278.402344 C 71.214844 277.128906 70.183594 276.097656 68.910156 276.097656 C 67.636719 276.097656 66.605469 277.128906 66.605469 278.402344 C 66.605469 279.675781 67.636719 280.707031 68.910156 280.707031 C 70.183594 280.707031 71.214844 279.675781 71.214844 278.402344 Z M 71.214844 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.820312 278.402344 C 44.820312 277.128906 43.789062 276.097656 42.515625 276.097656 C 41.242188 276.097656 40.210938 277.128906 40.210938 278.402344 C 40.210938 279.675781 41.242188 280.707031 42.515625 280.707031 C 43.789062 280.707031 44.820312 279.675781 44.820312 278.402344 Z M 44.820312 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 59.800781 278.402344 C 59.800781 277.128906 58.769531 276.097656 57.496094 276.097656 C 56.222656 276.097656 55.191406 277.128906 55.191406 278.402344 C 55.191406 279.675781 56.222656 280.707031 57.496094 280.707031 C 58.769531 280.707031 59.800781 279.675781 59.800781 278.402344 Z M 59.800781 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.328125 278.402344 C 78.328125 277.128906 77.296875 276.097656 76.023438 276.097656 C 74.75 276.097656 73.71875 277.128906 73.71875 278.402344 C 73.71875 279.675781 74.75 280.707031 76.023438 280.707031 C 77.296875 280.707031 78.328125 279.675781 78.328125 278.402344 Z M 78.328125 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.144531 278.402344 C 60.144531 277.128906 59.113281 276.097656 57.839844 276.097656 C 56.566406 276.097656 55.535156 277.128906 55.535156 278.402344 C 55.535156 279.675781 56.566406 280.707031 57.839844 280.707031 C 59.113281 280.707031 60.144531 279.675781 60.144531 278.402344 Z M 60.144531 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.484375 278.402344 C 48.484375 277.128906 47.453125 276.097656 46.179688 276.097656 C 44.90625 276.097656 43.875 277.128906 43.875 278.402344 C 43.875 279.675781 44.90625 280.707031 46.179688 280.707031 C 47.453125 280.707031 48.484375 279.675781 48.484375 278.402344 Z M 48.484375 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.957031 278.402344 C 67.957031 277.128906 66.925781 276.097656 65.652344 276.097656 C 64.378906 276.097656 63.347656 277.128906 63.347656 278.402344 C 63.347656 279.675781 64.378906 280.707031 65.652344 280.707031 C 66.925781 280.707031 67.957031 279.675781 67.957031 278.402344 Z M 67.957031 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.554688 278.402344 C 67.554688 277.128906 66.523438 276.097656 65.25 276.097656 C 63.976562 276.097656 62.945312 277.128906 62.945312 278.402344 C 62.945312 279.675781 63.976562 280.707031 65.25 280.707031 C 66.523438 280.707031 67.554688 279.675781 67.554688 278.402344 Z M 67.554688 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.558594 278.402344 C 43.558594 277.128906 42.527344 276.097656 41.253906 276.097656 C 39.980469 276.097656 38.949219 277.128906 38.949219 278.402344 C 38.949219 279.675781 39.980469 280.707031 41.253906 280.707031 C 42.527344 280.707031 43.558594 279.675781 43.558594 278.402344 Z M 43.558594 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.355469 278.402344 C 53.355469 277.128906 52.324219 276.097656 51.050781 276.097656 C 49.777344 276.097656 48.746094 277.128906 48.746094 278.402344 C 48.746094 279.675781 49.777344 280.707031 51.050781 280.707031 C 52.324219 280.707031 53.355469 279.675781 53.355469 278.402344 Z M 53.355469 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.796875 278.402344 C 68.796875 277.128906 67.765625 276.097656 66.492188 276.097656 C 65.21875 276.097656 64.1875 277.128906 64.1875 278.402344 C 64.1875 279.675781 65.21875 280.707031 66.492188 280.707031 C 67.765625 280.707031 68.796875 279.675781 68.796875 278.402344 Z M 68.796875 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.089844 278.402344 C 62.089844 277.128906 61.058594 276.097656 59.785156 276.097656 C 58.511719 276.097656 57.480469 277.128906 57.480469 278.402344 C 57.480469 279.675781 58.511719 280.707031 59.785156 280.707031 C 61.058594 280.707031 62.089844 279.675781 62.089844 278.402344 Z M 62.089844 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.136719 278.402344 C 55.136719 277.128906 54.105469 276.097656 52.832031 276.097656 C 51.558594 276.097656 50.527344 277.128906 50.527344 278.402344 C 50.527344 279.675781 51.558594 280.707031 52.832031 280.707031 C 54.105469 280.707031 55.136719 279.675781 55.136719 278.402344 Z M 55.136719 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.699219 278.402344 C 78.699219 277.128906 77.667969 276.097656 76.394531 276.097656 C 75.121094 276.097656 74.089844 277.128906 74.089844 278.402344 C 74.089844 279.675781 75.121094 280.707031 76.394531 280.707031 C 77.667969 280.707031 78.699219 279.675781 78.699219 278.402344 Z M 78.699219 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 59.023438 278.402344 C 59.023438 277.128906 57.992188 276.097656 56.71875 276.097656 C 55.445312 276.097656 54.414062 277.128906 54.414062 278.402344 C 54.414062 279.675781 55.445312 280.707031 56.71875 280.707031 C 57.992188 280.707031 59.023438 279.675781 59.023438 278.402344 Z M 59.023438 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.601562 278.402344 C 64.601562 277.128906 63.570312 276.097656 62.296875 276.097656 C 61.023438 276.097656 59.992188 277.128906 59.992188 278.402344 C 59.992188 279.675781 61.023438 280.707031 62.296875 280.707031 C 63.570312 280.707031 64.601562 279.675781 64.601562 278.402344 Z M 64.601562 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.636719 278.402344 C 74.636719 277.128906 73.605469 276.097656 72.332031 276.097656 C 71.058594 276.097656 70.027344 277.128906 70.027344 278.402344 C 70.027344 279.675781 71.058594 280.707031 72.332031 280.707031 C 73.605469 280.707031 74.636719 279.675781 74.636719 278.402344 Z M 74.636719 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.785156 278.402344 C 46.785156 277.128906 45.753906 276.097656 44.480469 276.097656 C 43.207031 276.097656 42.175781 277.128906 42.175781 278.402344 C 42.175781 279.675781 43.207031 280.707031 44.480469 280.707031 C 45.753906 280.707031 46.785156 279.675781 46.785156 278.402344 Z M 46.785156 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.21875 278.402344 C 54.21875 277.128906 53.1875 276.097656 51.914062 276.097656 C 50.640625 276.097656 49.609375 277.128906 49.609375 278.402344 C 49.609375 279.675781 50.640625 280.707031 51.914062 280.707031 C 53.1875 280.707031 54.21875 279.675781 54.21875 278.402344 Z M 54.21875 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.113281 278.402344 C 77.113281 277.128906 76.082031 276.097656 74.808594 276.097656 C 73.535156 276.097656 72.503906 277.128906 72.503906 278.402344 C 72.503906 279.675781 73.535156 280.707031 74.808594 280.707031 C 76.082031 280.707031 77.113281 279.675781 77.113281 278.402344 Z M 77.113281 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.46875 278.402344 C 71.46875 277.128906 70.4375 276.097656 69.164062 276.097656 C 67.890625 276.097656 66.859375 277.128906 66.859375 278.402344 C 66.859375 279.675781 67.890625 280.707031 69.164062 280.707031 C 70.4375 280.707031 71.46875 279.675781 71.46875 278.402344 Z M 71.46875 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 59.472656 278.402344 C 59.472656 277.128906 58.441406 276.097656 57.167969 276.097656 C 55.894531 276.097656 54.863281 277.128906 54.863281 278.402344 C 54.863281 279.675781 55.894531 280.707031 57.167969 280.707031 C 58.441406 280.707031 59.472656 279.675781 59.472656 278.402344 Z M 59.472656 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.601562 278.402344 C 78.601562 277.128906 77.570312 276.097656 76.296875 276.097656 C 75.023438 276.097656 73.992188 277.128906 73.992188 278.402344 C 73.992188 279.675781 75.023438 280.707031 76.296875 280.707031 C 77.570312 280.707031 78.601562 279.675781 78.601562 278.402344 Z M 78.601562 278.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.65625 273.558594 C 45.65625 272.285156 44.625 271.253906 43.351562 271.253906 C 42.078125 271.253906 41.046875 272.285156 41.046875 273.558594 C 41.046875 274.832031 42.078125 275.863281 43.351562 275.863281 C 44.625 275.863281 45.65625 274.832031 45.65625 273.558594 Z M 45.65625 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.691406 273.558594 C 71.691406 272.285156 70.660156 271.253906 69.386719 271.253906 C 68.113281 271.253906 67.082031 272.285156 67.082031 273.558594 C 67.082031 274.832031 68.113281 275.863281 69.386719 275.863281 C 70.660156 275.863281 71.691406 274.832031 71.691406 273.558594 Z M 71.691406 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.792969 273.558594 C 55.792969 272.285156 54.761719 271.253906 53.488281 271.253906 C 52.214844 271.253906 51.183594 272.285156 51.183594 273.558594 C 51.183594 274.832031 52.214844 275.863281 53.488281 275.863281 C 54.761719 275.863281 55.792969 274.832031 55.792969 273.558594 Z M 55.792969 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.179688 273.558594 C 70.179688 272.285156 69.148438 271.253906 67.875 271.253906 C 66.601562 271.253906 65.570312 272.285156 65.570312 273.558594 C 65.570312 274.832031 66.601562 275.863281 67.875 275.863281 C 69.148438 275.863281 70.179688 274.832031 70.179688 273.558594 Z M 70.179688 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.5625 273.558594 C 65.5625 272.285156 64.53125 271.253906 63.257812 271.253906 C 61.984375 271.253906 60.953125 272.285156 60.953125 273.558594 C 60.953125 274.832031 61.984375 275.863281 63.257812 275.863281 C 64.53125 275.863281 65.5625 274.832031 65.5625 273.558594 Z M 65.5625 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.96875 273.558594 C 58.96875 272.285156 57.9375 271.253906 56.664062 271.253906 C 55.390625 271.253906 54.359375 272.285156 54.359375 273.558594 C 54.359375 274.832031 55.390625 275.863281 56.664062 275.863281 C 57.9375 275.863281 58.96875 274.832031 58.96875 273.558594 Z M 58.96875 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.40625 273.558594 C 55.40625 272.285156 54.375 271.253906 53.101562 271.253906 C 51.828125 271.253906 50.796875 272.285156 50.796875 273.558594 C 50.796875 274.832031 51.828125 275.863281 53.101562 275.863281 C 54.375 275.863281 55.40625 274.832031 55.40625 273.558594 Z M 55.40625 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.273438 273.558594 C 67.273438 272.285156 66.242188 271.253906 64.96875 271.253906 C 63.695312 271.253906 62.664062 272.285156 62.664062 273.558594 C 62.664062 274.832031 63.695312 275.863281 64.96875 275.863281 C 66.242188 275.863281 67.273438 274.832031 67.273438 273.558594 Z M 67.273438 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.75 273.558594 C 42.75 272.285156 41.71875 271.253906 40.445312 271.253906 C 39.171875 271.253906 38.140625 272.285156 38.140625 273.558594 C 38.140625 274.832031 39.171875 275.863281 40.445312 275.863281 C 41.71875 275.863281 42.75 274.832031 42.75 273.558594 Z M 42.75 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.664062 273.558594 C 56.664062 272.285156 55.632812 271.253906 54.359375 271.253906 C 53.085938 271.253906 52.054688 272.285156 52.054688 273.558594 C 52.054688 274.832031 53.085938 275.863281 54.359375 275.863281 C 55.632812 275.863281 56.664062 274.832031 56.664062 273.558594 Z M 56.664062 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.878906 273.558594 C 73.878906 272.285156 72.847656 271.253906 71.574219 271.253906 C 70.300781 271.253906 69.269531 272.285156 69.269531 273.558594 C 69.269531 274.832031 70.300781 275.863281 71.574219 275.863281 C 72.847656 275.863281 73.878906 274.832031 73.878906 273.558594 Z M 73.878906 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.984375 273.558594 C 56.984375 272.285156 55.953125 271.253906 54.679688 271.253906 C 53.40625 271.253906 52.375 272.285156 52.375 273.558594 C 52.375 274.832031 53.40625 275.863281 54.679688 275.863281 C 55.953125 275.863281 56.984375 274.832031 56.984375 273.558594 Z M 56.984375 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.148438 273.558594 C 46.148438 272.285156 45.117188 271.253906 43.84375 271.253906 C 42.570312 271.253906 41.539062 272.285156 41.539062 273.558594 C 41.539062 274.832031 42.570312 275.863281 43.84375 275.863281 C 45.117188 275.863281 46.148438 274.832031 46.148438 273.558594 Z M 46.148438 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.242188 273.558594 C 64.242188 272.285156 63.210938 271.253906 61.9375 271.253906 C 60.664062 271.253906 59.632812 272.285156 59.632812 273.558594 C 59.632812 274.832031 60.664062 275.863281 61.9375 275.863281 C 63.210938 275.863281 64.242188 274.832031 64.242188 273.558594 Z M 64.242188 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.871094 273.558594 C 63.871094 272.285156 62.839844 271.253906 61.566406 271.253906 C 60.292969 271.253906 59.261719 272.285156 59.261719 273.558594 C 59.261719 274.832031 60.292969 275.863281 61.566406 275.863281 C 62.839844 275.863281 63.871094 274.832031 63.871094 273.558594 Z M 63.871094 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.574219 273.558594 C 41.574219 272.285156 40.542969 271.253906 39.269531 271.253906 C 37.996094 271.253906 36.964844 272.285156 36.964844 273.558594 C 36.964844 274.832031 37.996094 275.863281 39.269531 275.863281 C 40.542969 275.863281 41.574219 274.832031 41.574219 273.558594 Z M 41.574219 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.675781 273.558594 C 50.675781 272.285156 49.644531 271.253906 48.371094 271.253906 C 47.097656 271.253906 46.066406 272.285156 46.066406 273.558594 C 46.066406 274.832031 47.097656 275.863281 48.371094 275.863281 C 49.644531 275.863281 50.675781 274.832031 50.675781 273.558594 Z M 50.675781 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.027344 273.558594 C 65.027344 272.285156 63.996094 271.253906 62.722656 271.253906 C 61.449219 271.253906 60.417969 272.285156 60.417969 273.558594 C 60.417969 274.832031 61.449219 275.863281 62.722656 275.863281 C 63.996094 275.863281 65.027344 274.832031 65.027344 273.558594 Z M 65.027344 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.789062 273.558594 C 58.789062 272.285156 57.757812 271.253906 56.484375 271.253906 C 55.210938 271.253906 54.179688 272.285156 54.179688 273.558594 C 54.179688 274.832031 55.210938 275.863281 56.484375 275.863281 C 57.757812 275.863281 58.789062 274.832031 58.789062 273.558594 Z M 58.789062 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.332031 273.558594 C 52.332031 272.285156 51.300781 271.253906 50.027344 271.253906 C 48.753906 271.253906 47.722656 272.285156 47.722656 273.558594 C 47.722656 274.832031 48.753906 275.863281 50.027344 275.863281 C 51.300781 275.863281 52.332031 274.832031 52.332031 273.558594 Z M 52.332031 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.226562 273.558594 C 74.226562 272.285156 73.195312 271.253906 71.921875 271.253906 C 70.648438 271.253906 69.617188 272.285156 69.617188 273.558594 C 69.617188 274.832031 70.648438 275.863281 71.921875 275.863281 C 73.195312 275.863281 74.226562 274.832031 74.226562 273.558594 Z M 74.226562 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.941406 273.558594 C 55.941406 272.285156 54.910156 271.253906 53.636719 271.253906 C 52.363281 271.253906 51.332031 272.285156 51.332031 273.558594 C 51.332031 274.832031 52.363281 275.863281 53.636719 275.863281 C 54.910156 275.863281 55.941406 274.832031 55.941406 273.558594 Z M 55.941406 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.125 273.558594 C 61.125 272.285156 60.09375 271.253906 58.820312 271.253906 C 57.546875 271.253906 56.515625 272.285156 56.515625 273.558594 C 56.515625 274.832031 57.546875 275.863281 58.820312 275.863281 C 60.09375 275.863281 61.125 274.832031 61.125 273.558594 Z M 61.125 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.449219 273.558594 C 70.449219 272.285156 69.417969 271.253906 68.144531 271.253906 C 66.871094 271.253906 65.839844 272.285156 65.839844 273.558594 C 65.839844 274.832031 66.871094 275.863281 68.144531 275.863281 C 69.417969 275.863281 70.449219 274.832031 70.449219 273.558594 Z M 70.449219 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.574219 273.558594 C 44.574219 272.285156 43.542969 271.253906 42.269531 271.253906 C 40.996094 271.253906 39.964844 272.285156 39.964844 273.558594 C 39.964844 274.832031 40.996094 275.863281 42.269531 275.863281 C 43.542969 275.863281 44.574219 274.832031 44.574219 273.558594 Z M 44.574219 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.480469 273.558594 C 51.480469 272.285156 50.449219 271.253906 49.175781 271.253906 C 47.902344 271.253906 46.871094 272.285156 46.871094 273.558594 C 46.871094 274.832031 47.902344 275.863281 49.175781 275.863281 C 50.449219 275.863281 51.480469 274.832031 51.480469 273.558594 Z M 51.480469 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.753906 273.558594 C 72.753906 272.285156 71.722656 271.253906 70.449219 271.253906 C 69.175781 271.253906 68.144531 272.285156 68.144531 273.558594 C 68.144531 274.832031 69.175781 275.863281 70.449219 275.863281 C 71.722656 275.863281 72.753906 274.832031 72.753906 273.558594 Z M 72.753906 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.507812 273.558594 C 67.507812 272.285156 66.476562 271.253906 65.203125 271.253906 C 63.929688 271.253906 62.898438 272.285156 62.898438 273.558594 C 62.898438 274.832031 63.929688 275.863281 65.203125 275.863281 C 66.476562 275.863281 67.507812 274.832031 67.507812 273.558594 Z M 67.507812 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.363281 273.558594 C 56.363281 272.285156 55.332031 271.253906 54.058594 271.253906 C 52.785156 271.253906 51.753906 272.285156 51.753906 273.558594 C 51.753906 274.832031 52.785156 275.863281 54.058594 275.863281 C 55.332031 275.863281 56.363281 274.832031 56.363281 273.558594 Z M 56.363281 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.132812 273.558594 C 74.132812 272.285156 73.101562 271.253906 71.828125 271.253906 C 70.554688 271.253906 69.523438 272.285156 69.523438 273.558594 C 69.523438 274.832031 70.554688 275.863281 71.828125 275.863281 C 73.101562 275.863281 74.132812 274.832031 74.132812 273.558594 Z M 74.132812 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.449219 268.714844 C 43.449219 267.441406 42.417969 266.410156 41.144531 266.410156 C 39.871094 266.410156 38.839844 267.441406 38.839844 268.714844 C 38.839844 269.988281 39.871094 271.019531 41.144531 271.019531 C 42.417969 271.019531 43.449219 269.988281 43.449219 268.714844 Z M 43.449219 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.238281 268.714844 C 67.238281 267.441406 66.207031 266.410156 64.933594 266.410156 C 63.660156 266.410156 62.628906 267.441406 62.628906 268.714844 C 62.628906 269.988281 63.660156 271.019531 64.933594 271.019531 C 66.207031 271.019531 67.238281 269.988281 67.238281 268.714844 Z M 67.238281 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.710938 268.714844 C 52.710938 267.441406 51.679688 266.410156 50.40625 266.410156 C 49.132812 266.410156 48.101562 267.441406 48.101562 268.714844 C 48.101562 269.988281 49.132812 271.019531 50.40625 271.019531 C 51.679688 271.019531 52.710938 269.988281 52.710938 268.714844 Z M 52.710938 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.855469 268.714844 C 65.855469 267.441406 64.824219 266.410156 63.550781 266.410156 C 62.277344 266.410156 61.246094 267.441406 61.246094 268.714844 C 61.246094 269.988281 62.277344 271.019531 63.550781 271.019531 C 64.824219 271.019531 65.855469 269.988281 65.855469 268.714844 Z M 65.855469 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.636719 268.714844 C 61.636719 267.441406 60.605469 266.410156 59.332031 266.410156 C 58.058594 266.410156 57.027344 267.441406 57.027344 268.714844 C 57.027344 269.988281 58.058594 271.019531 59.332031 271.019531 C 60.605469 271.019531 61.636719 269.988281 61.636719 268.714844 Z M 61.636719 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.613281 268.714844 C 55.613281 267.441406 54.582031 266.410156 53.308594 266.410156 C 52.035156 266.410156 51.003906 267.441406 51.003906 268.714844 C 51.003906 269.988281 52.035156 271.019531 53.308594 271.019531 C 54.582031 271.019531 55.613281 269.988281 55.613281 268.714844 Z M 55.613281 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.355469 268.714844 C 52.355469 267.441406 51.324219 266.410156 50.050781 266.410156 C 48.777344 266.410156 47.746094 267.441406 47.746094 268.714844 C 47.746094 269.988281 48.777344 271.019531 50.050781 271.019531 C 51.324219 271.019531 52.355469 269.988281 52.355469 268.714844 Z M 52.355469 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.199219 268.714844 C 63.199219 267.441406 62.167969 266.410156 60.894531 266.410156 C 59.621094 266.410156 58.589844 267.441406 58.589844 268.714844 C 58.589844 269.988281 59.621094 271.019531 60.894531 271.019531 C 62.167969 271.019531 63.199219 269.988281 63.199219 268.714844 Z M 63.199219 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.792969 268.714844 C 40.792969 267.441406 39.761719 266.410156 38.488281 266.410156 C 37.214844 266.410156 36.183594 267.441406 36.183594 268.714844 C 36.183594 269.988281 37.214844 271.019531 38.488281 271.019531 C 39.761719 271.019531 40.792969 269.988281 40.792969 268.714844 Z M 40.792969 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.507812 268.714844 C 53.507812 267.441406 52.476562 266.410156 51.203125 266.410156 C 49.929688 266.410156 48.898438 267.441406 48.898438 268.714844 C 48.898438 269.988281 49.929688 271.019531 51.203125 271.019531 C 52.476562 271.019531 53.507812 269.988281 53.507812 268.714844 Z M 53.507812 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.238281 268.714844 C 69.238281 267.441406 68.207031 266.410156 66.933594 266.410156 C 65.660156 266.410156 64.628906 267.441406 64.628906 268.714844 C 64.628906 269.988281 65.660156 271.019531 66.933594 271.019531 C 68.207031 271.019531 69.238281 269.988281 69.238281 268.714844 Z M 69.238281 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.800781 268.714844 C 53.800781 267.441406 52.769531 266.410156 51.496094 266.410156 C 50.222656 266.410156 49.191406 267.441406 49.191406 268.714844 C 49.191406 269.988281 50.222656 271.019531 51.496094 271.019531 C 52.769531 271.019531 53.800781 269.988281 53.800781 268.714844 Z M 53.800781 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.898438 268.714844 C 43.898438 267.441406 42.867188 266.410156 41.59375 266.410156 C 40.320312 266.410156 39.289062 267.441406 39.289062 268.714844 C 39.289062 269.988281 40.320312 271.019531 41.59375 271.019531 C 42.867188 271.019531 43.898438 269.988281 43.898438 268.714844 Z M 43.898438 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.433594 268.714844 C 60.433594 267.441406 59.402344 266.410156 58.128906 266.410156 C 56.855469 266.410156 55.824219 267.441406 55.824219 268.714844 C 55.824219 269.988281 56.855469 271.019531 58.128906 271.019531 C 59.402344 271.019531 60.433594 269.988281 60.433594 268.714844 Z M 60.433594 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.09375 268.714844 C 60.09375 267.441406 59.0625 266.410156 57.789062 266.410156 C 56.515625 266.410156 55.484375 267.441406 55.484375 268.714844 C 55.484375 269.988281 56.515625 271.019531 57.789062 271.019531 C 59.0625 271.019531 60.09375 269.988281 60.09375 268.714844 Z M 60.09375 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.71875 268.714844 C 39.71875 267.441406 38.6875 266.410156 37.414062 266.410156 C 36.140625 266.410156 35.109375 267.441406 35.109375 268.714844 C 35.109375 269.988281 36.140625 271.019531 37.414062 271.019531 C 38.6875 271.019531 39.71875 269.988281 39.71875 268.714844 Z M 39.71875 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.035156 268.714844 C 48.035156 267.441406 47.003906 266.410156 45.730469 266.410156 C 44.457031 266.410156 43.425781 267.441406 43.425781 268.714844 C 43.425781 269.988281 44.457031 271.019531 45.730469 271.019531 C 47.003906 271.019531 48.035156 269.988281 48.035156 268.714844 Z M 48.035156 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.148438 268.714844 C 61.148438 267.441406 60.117188 266.410156 58.84375 266.410156 C 57.570312 266.410156 56.539062 267.441406 56.539062 268.714844 C 56.539062 269.988281 57.570312 271.019531 58.84375 271.019531 C 60.117188 271.019531 61.148438 269.988281 61.148438 268.714844 Z M 61.148438 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.449219 268.714844 C 55.449219 267.441406 54.417969 266.410156 53.144531 266.410156 C 51.871094 266.410156 50.839844 267.441406 50.839844 268.714844 C 50.839844 269.988281 51.871094 271.019531 53.144531 271.019531 C 54.417969 271.019531 55.449219 269.988281 55.449219 268.714844 Z M 55.449219 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.550781 268.714844 C 49.550781 267.441406 48.519531 266.410156 47.246094 266.410156 C 45.972656 266.410156 44.941406 267.441406 44.941406 268.714844 C 44.941406 269.988281 45.972656 271.019531 47.246094 271.019531 C 48.519531 271.019531 49.550781 269.988281 49.550781 268.714844 Z M 49.550781 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.554688 268.714844 C 69.554688 267.441406 68.523438 266.410156 67.25 266.410156 C 65.976562 266.410156 64.945312 267.441406 64.945312 268.714844 C 64.945312 269.988281 65.976562 271.019531 67.25 271.019531 C 68.523438 271.019531 69.554688 269.988281 69.554688 268.714844 Z M 69.554688 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.847656 268.714844 C 52.847656 267.441406 51.816406 266.410156 50.542969 266.410156 C 49.269531 266.410156 48.238281 267.441406 48.238281 268.714844 C 48.238281 269.988281 49.269531 271.019531 50.542969 271.019531 C 51.816406 271.019531 52.847656 269.988281 52.847656 268.714844 Z M 52.847656 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.585938 268.714844 C 57.585938 267.441406 56.554688 266.410156 55.28125 266.410156 C 54.007812 266.410156 52.976562 267.441406 52.976562 268.714844 C 52.976562 269.988281 54.007812 271.019531 55.28125 271.019531 C 56.554688 271.019531 57.585938 269.988281 57.585938 268.714844 Z M 57.585938 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.105469 268.714844 C 66.105469 267.441406 65.074219 266.410156 63.800781 266.410156 C 62.527344 266.410156 61.496094 267.441406 61.496094 268.714844 C 61.496094 269.988281 62.527344 271.019531 63.800781 271.019531 C 65.074219 271.019531 66.105469 269.988281 66.105469 268.714844 Z M 66.105469 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.457031 268.714844 C 42.457031 267.441406 41.425781 266.410156 40.152344 266.410156 C 38.878906 266.410156 37.847656 267.441406 37.847656 268.714844 C 37.847656 269.988281 38.878906 271.019531 40.152344 271.019531 C 41.425781 271.019531 42.457031 269.988281 42.457031 268.714844 Z M 42.457031 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.769531 268.714844 C 48.769531 267.441406 47.738281 266.410156 46.464844 266.410156 C 45.191406 266.410156 44.160156 267.441406 44.160156 268.714844 C 44.160156 269.988281 45.191406 271.019531 46.464844 271.019531 C 47.738281 271.019531 48.769531 269.988281 48.769531 268.714844 Z M 48.769531 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.207031 268.714844 C 68.207031 267.441406 67.175781 266.410156 65.902344 266.410156 C 64.628906 266.410156 63.597656 267.441406 63.597656 268.714844 C 63.597656 269.988281 64.628906 271.019531 65.902344 271.019531 C 67.175781 271.019531 68.207031 269.988281 68.207031 268.714844 Z M 68.207031 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.414062 268.714844 C 63.414062 267.441406 62.382812 266.410156 61.109375 266.410156 C 59.835938 266.410156 58.804688 267.441406 58.804688 268.714844 C 58.804688 269.988281 59.835938 271.019531 61.109375 271.019531 C 62.382812 271.019531 63.414062 269.988281 63.414062 268.714844 Z M 63.414062 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.230469 268.714844 C 53.230469 267.441406 52.199219 266.410156 50.925781 266.410156 C 49.652344 266.410156 48.621094 267.441406 48.621094 268.714844 C 48.621094 269.988281 49.652344 271.019531 50.925781 271.019531 C 52.199219 271.019531 53.230469 269.988281 53.230469 268.714844 Z M 53.230469 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.46875 268.714844 C 69.46875 267.441406 68.4375 266.410156 67.164062 266.410156 C 65.890625 266.410156 64.859375 267.441406 64.859375 268.714844 C 64.859375 269.988281 65.890625 271.019531 67.164062 271.019531 C 68.4375 271.019531 69.46875 269.988281 69.46875 268.714844 Z M 69.46875 268.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.351562 263.871094 C 41.351562 262.597656 40.320312 261.566406 39.046875 261.566406 C 37.773438 261.566406 36.742188 262.597656 36.742188 263.871094 C 36.742188 265.144531 37.773438 266.175781 39.046875 266.175781 C 40.320312 266.175781 41.351562 265.144531 41.351562 263.871094 Z M 41.351562 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.660156 263.871094 C 62.660156 262.597656 61.628906 261.566406 60.355469 261.566406 C 59.082031 261.566406 58.050781 262.597656 58.050781 263.871094 C 58.050781 265.144531 59.082031 266.175781 60.355469 266.175781 C 61.628906 266.175781 62.660156 265.144531 62.660156 263.871094 Z M 62.660156 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.648438 263.871094 C 49.648438 262.597656 48.617188 261.566406 47.34375 261.566406 C 46.070312 261.566406 45.039062 262.597656 45.039062 263.871094 C 45.039062 265.144531 46.070312 266.175781 47.34375 266.175781 C 48.617188 266.175781 49.648438 265.144531 49.648438 263.871094 Z M 49.648438 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.421875 263.871094 C 61.421875 262.597656 60.390625 261.566406 59.117188 261.566406 C 57.84375 261.566406 56.8125 262.597656 56.8125 263.871094 C 56.8125 265.144531 57.84375 266.175781 59.117188 266.175781 C 60.390625 266.175781 61.421875 265.144531 61.421875 263.871094 Z M 61.421875 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.640625 263.871094 C 57.640625 262.597656 56.609375 261.566406 55.335938 261.566406 C 54.0625 261.566406 53.03125 262.597656 53.03125 263.871094 C 53.03125 265.144531 54.0625 266.175781 55.335938 266.175781 C 56.609375 266.175781 57.640625 265.144531 57.640625 263.871094 Z M 57.640625 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.246094 263.871094 C 52.246094 262.597656 51.214844 261.566406 49.941406 261.566406 C 48.667969 261.566406 47.636719 262.597656 47.636719 263.871094 C 47.636719 265.144531 48.667969 266.175781 49.941406 266.175781 C 51.214844 266.175781 52.246094 265.144531 52.246094 263.871094 Z M 52.246094 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.332031 263.871094 C 49.332031 262.597656 48.300781 261.566406 47.027344 261.566406 C 45.753906 261.566406 44.722656 262.597656 44.722656 263.871094 C 44.722656 265.144531 45.753906 266.175781 47.027344 266.175781 C 48.300781 266.175781 49.332031 265.144531 49.332031 263.871094 Z M 49.332031 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 59.042969 263.871094 C 59.042969 262.597656 58.011719 261.566406 56.738281 261.566406 C 55.464844 261.566406 54.433594 262.597656 54.433594 263.871094 C 54.433594 265.144531 55.464844 266.175781 56.738281 266.175781 C 58.011719 266.175781 59.042969 265.144531 59.042969 263.871094 Z M 59.042969 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.972656 263.871094 C 38.972656 262.597656 37.941406 261.566406 36.667969 261.566406 C 35.394531 261.566406 34.363281 262.597656 34.363281 263.871094 C 34.363281 265.144531 35.394531 266.175781 36.667969 266.175781 C 37.941406 266.175781 38.972656 265.144531 38.972656 263.871094 Z M 38.972656 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.359375 263.871094 C 50.359375 262.597656 49.328125 261.566406 48.054688 261.566406 C 46.78125 261.566406 45.75 262.597656 45.75 263.871094 C 45.75 265.144531 46.78125 266.175781 48.054688 266.175781 C 49.328125 266.175781 50.359375 265.144531 50.359375 263.871094 Z M 50.359375 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.449219 263.871094 C 64.449219 262.597656 63.417969 261.566406 62.144531 261.566406 C 60.871094 261.566406 59.839844 262.597656 59.839844 263.871094 C 59.839844 265.144531 60.871094 266.175781 62.144531 266.175781 C 63.417969 266.175781 64.449219 265.144531 64.449219 263.871094 Z M 64.449219 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.621094 263.871094 C 50.621094 262.597656 49.589844 261.566406 48.316406 261.566406 C 47.042969 261.566406 46.011719 262.597656 46.011719 263.871094 C 46.011719 265.144531 47.042969 266.175781 48.316406 266.175781 C 49.589844 266.175781 50.621094 265.144531 50.621094 263.871094 Z M 50.621094 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.757812 263.871094 C 41.757812 262.597656 40.726562 261.566406 39.453125 261.566406 C 38.179688 261.566406 37.148438 262.597656 37.148438 263.871094 C 37.148438 265.144531 38.179688 266.175781 39.453125 266.175781 C 40.726562 266.175781 41.757812 265.144531 41.757812 263.871094 Z M 41.757812 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.5625 263.871094 C 56.5625 262.597656 55.53125 261.566406 54.257812 261.566406 C 52.984375 261.566406 51.953125 262.597656 51.953125 263.871094 C 51.953125 265.144531 52.984375 266.175781 54.257812 266.175781 C 55.53125 266.175781 56.5625 265.144531 56.5625 263.871094 Z M 56.5625 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.257812 263.871094 C 56.257812 262.597656 55.226562 261.566406 53.953125 261.566406 C 52.679688 261.566406 51.648438 262.597656 51.648438 263.871094 C 51.648438 265.144531 52.679688 266.175781 53.953125 266.175781 C 55.226562 266.175781 56.257812 265.144531 56.257812 263.871094 Z M 56.257812 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.011719 263.871094 C 38.011719 262.597656 36.980469 261.566406 35.707031 261.566406 C 34.433594 261.566406 33.402344 262.597656 33.402344 263.871094 C 33.402344 265.144531 34.433594 266.175781 35.707031 266.175781 C 36.980469 266.175781 38.011719 265.144531 38.011719 263.871094 Z M 38.011719 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.460938 263.871094 C 45.460938 262.597656 44.429688 261.566406 43.15625 261.566406 C 41.882812 261.566406 40.851562 262.597656 40.851562 263.871094 C 40.851562 265.144531 41.882812 266.175781 43.15625 266.175781 C 44.429688 266.175781 45.460938 265.144531 45.460938 263.871094 Z M 45.460938 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.203125 263.871094 C 57.203125 262.597656 56.171875 261.566406 54.898438 261.566406 C 53.625 261.566406 52.59375 262.597656 52.59375 263.871094 C 52.59375 265.144531 53.625 266.175781 54.898438 266.175781 C 56.171875 266.175781 57.203125 265.144531 57.203125 263.871094 Z M 57.203125 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.101562 263.871094 C 52.101562 262.597656 51.070312 261.566406 49.796875 261.566406 C 48.523438 261.566406 47.492188 262.597656 47.492188 263.871094 C 47.492188 265.144531 48.523438 266.175781 49.796875 266.175781 C 51.070312 266.175781 52.101562 265.144531 52.101562 263.871094 Z M 52.101562 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.816406 263.871094 C 46.816406 262.597656 45.785156 261.566406 44.511719 261.566406 C 43.238281 261.566406 42.207031 262.597656 42.207031 263.871094 C 42.207031 265.144531 43.238281 266.175781 44.511719 266.175781 C 45.785156 266.175781 46.816406 265.144531 46.816406 263.871094 Z M 46.816406 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.734375 263.871094 C 64.734375 262.597656 63.703125 261.566406 62.429688 261.566406 C 61.15625 261.566406 60.125 262.597656 60.125 263.871094 C 60.125 265.144531 61.15625 266.175781 62.429688 266.175781 C 63.703125 266.175781 64.734375 265.144531 64.734375 263.871094 Z M 64.734375 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.769531 263.871094 C 49.769531 262.597656 48.738281 261.566406 47.464844 261.566406 C 46.191406 261.566406 45.160156 262.597656 45.160156 263.871094 C 45.160156 265.144531 46.191406 266.175781 47.464844 266.175781 C 48.738281 266.175781 49.769531 265.144531 49.769531 263.871094 Z M 49.769531 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.011719 263.871094 C 54.011719 262.597656 52.980469 261.566406 51.707031 261.566406 C 50.433594 261.566406 49.402344 262.597656 49.402344 263.871094 C 49.402344 265.144531 50.433594 266.175781 51.707031 266.175781 C 52.980469 266.175781 54.011719 265.144531 54.011719 263.871094 Z M 54.011719 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.640625 263.871094 C 61.640625 262.597656 60.609375 261.566406 59.335938 261.566406 C 58.0625 261.566406 57.03125 262.597656 57.03125 263.871094 C 57.03125 265.144531 58.0625 266.175781 59.335938 266.175781 C 60.609375 266.175781 61.640625 265.144531 61.640625 263.871094 Z M 61.640625 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.464844 263.871094 C 40.464844 262.597656 39.433594 261.566406 38.160156 261.566406 C 36.886719 261.566406 35.855469 262.597656 35.855469 263.871094 C 35.855469 265.144531 36.886719 266.175781 38.160156 266.175781 C 39.433594 266.175781 40.464844 265.144531 40.464844 263.871094 Z M 40.464844 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.117188 263.871094 C 46.117188 262.597656 45.085938 261.566406 43.8125 261.566406 C 42.539062 261.566406 41.507812 262.597656 41.507812 263.871094 C 41.507812 265.144531 42.539062 266.175781 43.8125 266.175781 C 45.085938 266.175781 46.117188 265.144531 46.117188 263.871094 Z M 46.117188 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.527344 263.871094 C 63.527344 262.597656 62.496094 261.566406 61.222656 261.566406 C 59.949219 261.566406 58.917969 262.597656 58.917969 263.871094 C 58.917969 265.144531 59.949219 266.175781 61.222656 266.175781 C 62.496094 266.175781 63.527344 265.144531 63.527344 263.871094 Z M 63.527344 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 59.234375 263.871094 C 59.234375 262.597656 58.203125 261.566406 56.929688 261.566406 C 55.65625 261.566406 54.625 262.597656 54.625 263.871094 C 54.625 265.144531 55.65625 266.175781 56.929688 266.175781 C 58.203125 266.175781 59.234375 265.144531 59.234375 263.871094 Z M 59.234375 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.113281 263.871094 C 50.113281 262.597656 49.082031 261.566406 47.808594 261.566406 C 46.535156 261.566406 45.503906 262.597656 45.503906 263.871094 C 45.503906 265.144531 46.535156 266.175781 47.808594 266.175781 C 49.082031 266.175781 50.113281 265.144531 50.113281 263.871094 Z M 50.113281 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.65625 263.871094 C 64.65625 262.597656 63.625 261.566406 62.351562 261.566406 C 61.078125 261.566406 60.046875 262.597656 60.046875 263.871094 C 60.046875 265.144531 61.078125 266.175781 62.351562 266.175781 C 63.625 266.175781 64.65625 265.144531 64.65625 263.871094 Z M 64.65625 263.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.386719 259.027344 C 39.386719 257.753906 38.355469 256.722656 37.082031 256.722656 C 35.808594 256.722656 34.777344 257.753906 34.777344 259.027344 C 34.777344 260.300781 35.808594 261.332031 37.082031 261.332031 C 38.355469 261.332031 39.386719 260.300781 39.386719 259.027344 Z M 39.386719 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.996094 259.027344 C 57.996094 257.753906 56.964844 256.722656 55.691406 256.722656 C 54.417969 256.722656 53.386719 257.753906 53.386719 259.027344 C 53.386719 260.300781 54.417969 261.332031 55.691406 261.332031 C 56.964844 261.332031 57.996094 260.300781 57.996094 259.027344 Z M 57.996094 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.632812 259.027344 C 46.632812 257.753906 45.601562 256.722656 44.328125 256.722656 C 43.054688 256.722656 42.023438 257.753906 42.023438 259.027344 C 42.023438 260.300781 43.054688 261.332031 44.328125 261.332031 C 45.601562 261.332031 46.632812 260.300781 46.632812 259.027344 Z M 46.632812 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.914062 259.027344 C 56.914062 257.753906 55.882812 256.722656 54.609375 256.722656 C 53.335938 256.722656 52.304688 257.753906 52.304688 259.027344 C 52.304688 260.300781 53.335938 261.332031 54.609375 261.332031 C 55.882812 261.332031 56.914062 260.300781 56.914062 259.027344 Z M 56.914062 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.613281 259.027344 C 53.613281 257.753906 52.582031 256.722656 51.308594 256.722656 C 50.035156 256.722656 49.003906 257.753906 49.003906 259.027344 C 49.003906 260.300781 50.035156 261.332031 51.308594 261.332031 C 52.582031 261.332031 53.613281 260.300781 53.613281 259.027344 Z M 53.613281 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.902344 259.027344 C 48.902344 257.753906 47.871094 256.722656 46.597656 256.722656 C 45.324219 256.722656 44.292969 257.753906 44.292969 259.027344 C 44.292969 260.300781 45.324219 261.332031 46.597656 261.332031 C 47.871094 261.332031 48.902344 260.300781 48.902344 259.027344 Z M 48.902344 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.355469 259.027344 C 46.355469 257.753906 45.324219 256.722656 44.050781 256.722656 C 42.777344 256.722656 41.746094 257.753906 41.746094 259.027344 C 41.746094 260.300781 42.777344 261.332031 44.050781 261.332031 C 45.324219 261.332031 46.355469 260.300781 46.355469 259.027344 Z M 46.355469 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.835938 259.027344 C 54.835938 257.753906 53.804688 256.722656 52.53125 256.722656 C 51.257812 256.722656 50.226562 257.753906 50.226562 259.027344 C 50.226562 260.300781 51.257812 261.332031 52.53125 261.332031 C 53.804688 261.332031 54.835938 260.300781 54.835938 259.027344 Z M 54.835938 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.308594 259.027344 C 37.308594 257.753906 36.277344 256.722656 35.003906 256.722656 C 33.730469 256.722656 32.699219 257.753906 32.699219 259.027344 C 32.699219 260.300781 33.730469 261.332031 35.003906 261.332031 C 36.277344 261.332031 37.308594 260.300781 37.308594 259.027344 Z M 37.308594 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.253906 259.027344 C 47.253906 257.753906 46.222656 256.722656 44.949219 256.722656 C 43.675781 256.722656 42.644531 257.753906 42.644531 259.027344 C 42.644531 260.300781 43.675781 261.332031 44.949219 261.332031 C 46.222656 261.332031 47.253906 260.300781 47.253906 259.027344 Z M 47.253906 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 59.558594 259.027344 C 59.558594 257.753906 58.527344 256.722656 57.253906 256.722656 C 55.980469 256.722656 54.949219 257.753906 54.949219 259.027344 C 54.949219 260.300781 55.980469 261.332031 57.253906 261.332031 C 58.527344 261.332031 59.558594 260.300781 59.558594 259.027344 Z M 59.558594 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.484375 259.027344 C 47.484375 257.753906 46.453125 256.722656 45.179688 256.722656 C 43.90625 256.722656 42.875 257.753906 42.875 259.027344 C 42.875 260.300781 43.90625 261.332031 45.179688 261.332031 C 46.453125 261.332031 47.484375 260.300781 47.484375 259.027344 Z M 47.484375 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.738281 259.027344 C 39.738281 257.753906 38.707031 256.722656 37.433594 256.722656 C 36.160156 256.722656 35.128906 257.753906 35.128906 259.027344 C 35.128906 260.300781 36.160156 261.332031 37.433594 261.332031 C 38.707031 261.332031 39.738281 260.300781 39.738281 259.027344 Z M 39.738281 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.671875 259.027344 C 52.671875 257.753906 51.640625 256.722656 50.367188 256.722656 C 49.09375 256.722656 48.0625 257.753906 48.0625 259.027344 C 48.0625 260.300781 49.09375 261.332031 50.367188 261.332031 C 51.640625 261.332031 52.671875 260.300781 52.671875 259.027344 Z M 52.671875 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.40625 259.027344 C 52.40625 257.753906 51.375 256.722656 50.101562 256.722656 C 48.828125 256.722656 47.796875 257.753906 47.796875 259.027344 C 47.796875 260.300781 48.828125 261.332031 50.101562 261.332031 C 51.375 261.332031 52.40625 260.300781 52.40625 259.027344 Z M 52.40625 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.46875 259.027344 C 36.46875 257.753906 35.4375 256.722656 34.164062 256.722656 C 32.890625 256.722656 31.859375 257.753906 31.859375 259.027344 C 31.859375 260.300781 32.890625 261.332031 34.164062 261.332031 C 35.4375 261.332031 36.46875 260.300781 36.46875 259.027344 Z M 36.46875 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.976562 259.027344 C 42.976562 257.753906 41.945312 256.722656 40.671875 256.722656 C 39.398438 256.722656 38.367188 257.753906 38.367188 259.027344 C 38.367188 260.300781 39.398438 261.332031 40.671875 261.332031 C 41.945312 261.332031 42.976562 260.300781 42.976562 259.027344 Z M 42.976562 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.230469 259.027344 C 53.230469 257.753906 52.199219 256.722656 50.925781 256.722656 C 49.652344 256.722656 48.621094 257.753906 48.621094 259.027344 C 48.621094 260.300781 49.652344 261.332031 50.925781 261.332031 C 52.199219 261.332031 53.230469 260.300781 53.230469 259.027344 Z M 53.230469 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.773438 259.027344 C 48.773438 257.753906 47.742188 256.722656 46.46875 256.722656 C 45.195312 256.722656 44.164062 257.753906 44.164062 259.027344 C 44.164062 260.300781 45.195312 261.332031 46.46875 261.332031 C 47.742188 261.332031 48.773438 260.300781 48.773438 259.027344 Z M 48.773438 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.160156 259.027344 C 44.160156 257.753906 43.128906 256.722656 41.855469 256.722656 C 40.582031 256.722656 39.550781 257.753906 39.550781 259.027344 C 39.550781 260.300781 40.582031 261.332031 41.855469 261.332031 C 43.128906 261.332031 44.160156 260.300781 44.160156 259.027344 Z M 44.160156 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 59.808594 259.027344 C 59.808594 257.753906 58.777344 256.722656 57.503906 256.722656 C 56.230469 256.722656 55.199219 257.753906 55.199219 259.027344 C 55.199219 260.300781 56.230469 261.332031 57.503906 261.332031 C 58.777344 261.332031 59.808594 260.300781 59.808594 259.027344 Z M 59.808594 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.738281 259.027344 C 46.738281 257.753906 45.707031 256.722656 44.433594 256.722656 C 43.160156 256.722656 42.128906 257.753906 42.128906 259.027344 C 42.128906 260.300781 43.160156 261.332031 44.433594 261.332031 C 45.707031 261.332031 46.738281 260.300781 46.738281 259.027344 Z M 46.738281 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.445312 259.027344 C 50.445312 257.753906 49.414062 256.722656 48.140625 256.722656 C 46.867188 256.722656 45.835938 257.753906 45.835938 259.027344 C 45.835938 260.300781 46.867188 261.332031 48.140625 261.332031 C 49.414062 261.332031 50.445312 260.300781 50.445312 259.027344 Z M 50.445312 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.109375 259.027344 C 57.109375 257.753906 56.078125 256.722656 54.804688 256.722656 C 53.53125 256.722656 52.5 257.753906 52.5 259.027344 C 52.5 260.300781 53.53125 261.332031 54.804688 261.332031 C 56.078125 261.332031 57.109375 260.300781 57.109375 259.027344 Z M 57.109375 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.613281 259.027344 C 38.613281 257.753906 37.582031 256.722656 36.308594 256.722656 C 35.035156 256.722656 34.003906 257.753906 34.003906 259.027344 C 34.003906 260.300781 35.035156 261.332031 36.308594 261.332031 C 37.582031 261.332031 38.613281 260.300781 38.613281 259.027344 Z M 38.613281 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.546875 259.027344 C 43.546875 257.753906 42.515625 256.722656 41.242188 256.722656 C 39.96875 256.722656 38.9375 257.753906 38.9375 259.027344 C 38.9375 260.300781 39.96875 261.332031 41.242188 261.332031 C 42.515625 261.332031 43.546875 260.300781 43.546875 259.027344 Z M 43.546875 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.753906 259.027344 C 58.753906 257.753906 57.722656 256.722656 56.449219 256.722656 C 55.175781 256.722656 54.144531 257.753906 54.144531 259.027344 C 54.144531 260.300781 55.175781 261.332031 56.449219 261.332031 C 57.722656 261.332031 58.753906 260.300781 58.753906 259.027344 Z M 58.753906 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.003906 259.027344 C 55.003906 257.753906 53.972656 256.722656 52.699219 256.722656 C 51.425781 256.722656 50.394531 257.753906 50.394531 259.027344 C 50.394531 260.300781 51.425781 261.332031 52.699219 261.332031 C 53.972656 261.332031 55.003906 260.300781 55.003906 259.027344 Z M 55.003906 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.039062 259.027344 C 47.039062 257.753906 46.007812 256.722656 44.734375 256.722656 C 43.460938 256.722656 42.429688 257.753906 42.429688 259.027344 C 42.429688 260.300781 43.460938 261.332031 44.734375 261.332031 C 46.007812 261.332031 47.039062 260.300781 47.039062 259.027344 Z M 47.039062 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 59.742188 259.027344 C 59.742188 257.753906 58.710938 256.722656 57.4375 256.722656 C 56.164062 256.722656 55.132812 257.753906 55.132812 259.027344 C 55.132812 260.300781 56.164062 261.332031 57.4375 261.332031 C 58.710938 261.332031 59.742188 260.300781 59.742188 259.027344 Z M 59.742188 259.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.574219 254.183594 C 37.574219 252.910156 36.542969 251.878906 35.269531 251.878906 C 33.996094 251.878906 32.964844 252.910156 32.964844 254.183594 C 32.964844 255.457031 33.996094 256.488281 35.269531 256.488281 C 36.542969 256.488281 37.574219 255.457031 37.574219 254.183594 Z M 37.574219 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.300781 254.183594 C 53.300781 252.910156 52.269531 251.878906 50.996094 251.878906 C 49.722656 251.878906 48.691406 252.910156 48.691406 254.183594 C 48.691406 255.457031 49.722656 256.488281 50.996094 256.488281 C 52.269531 256.488281 53.300781 255.457031 53.300781 254.183594 Z M 53.300781 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.695312 254.183594 C 43.695312 252.910156 42.664062 251.878906 41.390625 251.878906 C 40.117188 251.878906 39.085938 252.910156 39.085938 254.183594 C 39.085938 255.457031 40.117188 256.488281 41.390625 256.488281 C 42.664062 256.488281 43.695312 255.457031 43.695312 254.183594 Z M 43.695312 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.386719 254.183594 C 52.386719 252.910156 51.355469 251.878906 50.082031 251.878906 C 48.808594 251.878906 47.777344 252.910156 47.777344 254.183594 C 47.777344 255.457031 48.808594 256.488281 50.082031 256.488281 C 51.355469 256.488281 52.386719 255.457031 52.386719 254.183594 Z M 52.386719 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.597656 254.183594 C 49.597656 252.910156 48.566406 251.878906 47.292969 251.878906 C 46.019531 251.878906 44.988281 252.910156 44.988281 254.183594 C 44.988281 255.457031 46.019531 256.488281 47.292969 256.488281 C 48.566406 256.488281 49.597656 255.457031 49.597656 254.183594 Z M 49.597656 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.613281 254.183594 C 45.613281 252.910156 44.582031 251.878906 43.308594 251.878906 C 42.035156 251.878906 41.003906 252.910156 41.003906 254.183594 C 41.003906 255.457031 42.035156 256.488281 43.308594 256.488281 C 44.582031 256.488281 45.613281 255.457031 45.613281 254.183594 Z M 45.613281 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.460938 254.183594 C 43.460938 252.910156 42.429688 251.878906 41.15625 251.878906 C 39.882812 251.878906 38.851562 252.910156 38.851562 254.183594 C 38.851562 255.457031 39.882812 256.488281 41.15625 256.488281 C 42.429688 256.488281 43.460938 255.457031 43.460938 254.183594 Z M 43.460938 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.628906 254.183594 C 50.628906 252.910156 49.597656 251.878906 48.324219 251.878906 C 47.050781 251.878906 46.019531 252.910156 46.019531 254.183594 C 46.019531 255.457031 47.050781 256.488281 48.324219 256.488281 C 49.597656 256.488281 50.628906 255.457031 50.628906 254.183594 Z M 50.628906 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.816406 254.183594 C 35.816406 252.910156 34.785156 251.878906 33.511719 251.878906 C 32.238281 251.878906 31.207031 252.910156 31.207031 254.183594 C 31.207031 255.457031 32.238281 256.488281 33.511719 256.488281 C 34.785156 256.488281 35.816406 255.457031 35.816406 254.183594 Z M 35.816406 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.222656 254.183594 C 44.222656 252.910156 43.191406 251.878906 41.917969 251.878906 C 40.644531 251.878906 39.613281 252.910156 39.613281 254.183594 C 39.613281 255.457031 40.644531 256.488281 41.917969 256.488281 C 43.191406 256.488281 44.222656 255.457031 44.222656 254.183594 Z M 44.222656 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.699219 254.183594 C 67.699219 252.910156 66.667969 251.878906 65.394531 251.878906 C 64.121094 251.878906 63.089844 252.910156 63.089844 254.183594 C 63.089844 255.457031 64.121094 256.488281 65.394531 256.488281 C 66.667969 256.488281 67.699219 255.457031 67.699219 254.183594 Z M 67.699219 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.414062 254.183594 C 44.414062 252.910156 43.382812 251.878906 42.109375 251.878906 C 40.835938 251.878906 39.804688 252.910156 39.804688 254.183594 C 39.804688 255.457031 40.835938 256.488281 42.109375 256.488281 C 43.382812 256.488281 44.414062 255.457031 44.414062 254.183594 Z M 44.414062 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.871094 254.183594 C 37.871094 252.910156 36.839844 251.878906 35.566406 251.878906 C 34.292969 251.878906 33.261719 252.910156 33.261719 254.183594 C 33.261719 255.457031 34.292969 256.488281 35.566406 256.488281 C 36.839844 256.488281 37.871094 255.457031 37.871094 254.183594 Z M 37.871094 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.800781 254.183594 C 48.800781 252.910156 47.769531 251.878906 46.496094 251.878906 C 45.222656 251.878906 44.191406 252.910156 44.191406 254.183594 C 44.191406 255.457031 45.222656 256.488281 46.496094 256.488281 C 47.769531 256.488281 48.800781 255.457031 48.800781 254.183594 Z M 48.800781 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.574219 254.183594 C 48.574219 252.910156 47.542969 251.878906 46.269531 251.878906 C 44.996094 251.878906 43.964844 252.910156 43.964844 254.183594 C 43.964844 255.457031 44.996094 256.488281 46.269531 256.488281 C 47.542969 256.488281 48.574219 255.457031 48.574219 254.183594 Z M 48.574219 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.105469 254.183594 C 35.105469 252.910156 34.074219 251.878906 32.800781 251.878906 C 31.527344 251.878906 30.496094 252.910156 30.496094 254.183594 C 30.496094 255.457031 31.527344 256.488281 32.800781 256.488281 C 34.074219 256.488281 35.105469 255.457031 35.105469 254.183594 Z M 35.105469 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.605469 254.183594 C 40.605469 252.910156 39.574219 251.878906 38.300781 251.878906 C 37.027344 251.878906 35.996094 252.910156 35.996094 254.183594 C 35.996094 255.457031 37.027344 256.488281 38.300781 256.488281 C 39.574219 256.488281 40.605469 255.457031 40.605469 254.183594 Z M 40.605469 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.273438 254.183594 C 49.273438 252.910156 48.242188 251.878906 46.96875 251.878906 C 45.695312 251.878906 44.664062 252.910156 44.664062 254.183594 C 44.664062 255.457031 45.695312 256.488281 46.96875 256.488281 C 48.242188 256.488281 49.273438 255.457031 49.273438 254.183594 Z M 49.273438 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.507812 254.183594 C 45.507812 252.910156 44.476562 251.878906 43.203125 251.878906 C 41.929688 251.878906 40.898438 252.910156 40.898438 254.183594 C 40.898438 255.457031 41.929688 256.488281 43.203125 256.488281 C 44.476562 256.488281 45.507812 255.457031 45.507812 254.183594 Z M 45.507812 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.605469 254.183594 C 41.605469 252.910156 40.574219 251.878906 39.300781 251.878906 C 38.027344 251.878906 36.996094 252.910156 36.996094 254.183594 C 36.996094 255.457031 38.027344 256.488281 39.300781 256.488281 C 40.574219 256.488281 41.605469 255.457031 41.605469 254.183594 Z M 41.605469 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.832031 254.183594 C 54.832031 252.910156 53.800781 251.878906 52.527344 251.878906 C 51.253906 251.878906 50.222656 252.910156 50.222656 254.183594 C 50.222656 255.457031 51.253906 256.488281 52.527344 256.488281 C 53.800781 256.488281 54.832031 255.457031 54.832031 254.183594 Z M 54.832031 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.785156 254.183594 C 43.785156 252.910156 42.753906 251.878906 41.480469 251.878906 C 40.207031 251.878906 39.175781 252.910156 39.175781 254.183594 C 39.175781 255.457031 40.207031 256.488281 41.480469 256.488281 C 42.753906 256.488281 43.785156 255.457031 43.785156 254.183594 Z M 43.785156 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.917969 254.183594 C 46.917969 252.910156 45.886719 251.878906 44.613281 251.878906 C 43.339844 251.878906 42.308594 252.910156 42.308594 254.183594 C 42.308594 255.457031 43.339844 256.488281 44.613281 256.488281 C 45.886719 256.488281 46.917969 255.457031 46.917969 254.183594 Z M 46.917969 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.550781 254.183594 C 52.550781 252.910156 51.519531 251.878906 50.246094 251.878906 C 48.972656 251.878906 47.941406 252.910156 47.941406 254.183594 C 47.941406 255.457031 48.972656 256.488281 50.246094 256.488281 C 51.519531 256.488281 52.550781 255.457031 52.550781 254.183594 Z M 52.550781 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.917969 254.183594 C 36.917969 252.910156 35.886719 251.878906 34.613281 251.878906 C 33.339844 251.878906 32.308594 252.910156 32.308594 254.183594 C 32.308594 255.457031 33.339844 256.488281 34.613281 256.488281 C 35.886719 256.488281 36.917969 255.457031 36.917969 254.183594 Z M 36.917969 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.089844 254.183594 C 41.089844 252.910156 40.058594 251.878906 38.785156 251.878906 C 37.511719 251.878906 36.480469 252.910156 36.480469 254.183594 C 36.480469 255.457031 37.511719 256.488281 38.785156 256.488281 C 40.058594 256.488281 41.089844 255.457031 41.089844 254.183594 Z M 41.089844 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.941406 254.183594 C 53.941406 252.910156 52.910156 251.878906 51.636719 251.878906 C 50.363281 251.878906 49.332031 252.910156 49.332031 254.183594 C 49.332031 255.457031 50.363281 256.488281 51.636719 256.488281 C 52.910156 256.488281 53.941406 255.457031 53.941406 254.183594 Z M 53.941406 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.773438 254.183594 C 50.773438 252.910156 49.742188 251.878906 48.46875 251.878906 C 47.195312 251.878906 46.164062 252.910156 46.164062 254.183594 C 46.164062 255.457031 47.195312 256.488281 48.46875 256.488281 C 49.742188 256.488281 50.773438 255.457031 50.773438 254.183594 Z M 50.773438 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.039062 254.183594 C 44.039062 252.910156 43.007812 251.878906 41.734375 251.878906 C 40.460938 251.878906 39.429688 252.910156 39.429688 254.183594 C 39.429688 255.457031 40.460938 256.488281 41.734375 256.488281 C 43.007812 256.488281 44.039062 255.457031 44.039062 254.183594 Z M 44.039062 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.773438 254.183594 C 54.773438 252.910156 53.742188 251.878906 52.46875 251.878906 C 51.195312 251.878906 50.164062 252.910156 50.164062 254.183594 C 50.164062 255.457031 51.195312 256.488281 52.46875 256.488281 C 53.742188 256.488281 54.773438 255.457031 54.773438 254.183594 Z M 54.773438 254.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.925781 249.339844 C 35.925781 248.066406 34.894531 247.035156 33.621094 247.035156 C 32.347656 247.035156 31.316406 248.066406 31.316406 249.339844 C 31.316406 250.613281 32.347656 251.644531 33.621094 251.644531 C 34.894531 251.644531 35.925781 250.613281 35.925781 249.339844 Z M 35.925781 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.613281 249.339844 C 48.613281 248.066406 47.582031 247.035156 46.308594 247.035156 C 45.035156 247.035156 44.003906 248.066406 44.003906 249.339844 C 44.003906 250.613281 45.035156 251.644531 46.308594 251.644531 C 47.582031 251.644531 48.613281 250.613281 48.613281 249.339844 Z M 48.613281 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.867188 249.339844 C 40.867188 248.066406 39.835938 247.035156 38.5625 247.035156 C 37.289062 247.035156 36.257812 248.066406 36.257812 249.339844 C 36.257812 250.613281 37.289062 251.644531 38.5625 251.644531 C 39.835938 251.644531 40.867188 250.613281 40.867188 249.339844 Z M 40.867188 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.878906 249.339844 C 47.878906 248.066406 46.847656 247.035156 45.574219 247.035156 C 44.300781 247.035156 43.269531 248.066406 43.269531 249.339844 C 43.269531 250.613281 44.300781 251.644531 45.574219 251.644531 C 46.847656 251.644531 47.878906 250.613281 47.878906 249.339844 Z M 47.878906 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.625 249.339844 C 45.625 248.066406 44.59375 247.035156 43.320312 247.035156 C 42.046875 247.035156 41.015625 248.066406 41.015625 249.339844 C 41.015625 250.613281 42.046875 251.644531 43.320312 251.644531 C 44.59375 251.644531 45.625 250.613281 45.625 249.339844 Z M 45.625 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.414062 249.339844 C 42.414062 248.066406 41.382812 247.035156 40.109375 247.035156 C 38.835938 247.035156 37.804688 248.066406 37.804688 249.339844 C 37.804688 250.613281 38.835938 251.644531 40.109375 251.644531 C 41.382812 251.644531 42.414062 250.613281 42.414062 249.339844 Z M 42.414062 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.675781 249.339844 C 40.675781 248.066406 39.644531 247.035156 38.371094 247.035156 C 37.097656 247.035156 36.066406 248.066406 36.066406 249.339844 C 36.066406 250.613281 37.097656 251.644531 38.371094 251.644531 C 39.644531 251.644531 40.675781 250.613281 40.675781 249.339844 Z M 40.675781 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.460938 249.339844 C 46.460938 248.066406 45.429688 247.035156 44.15625 247.035156 C 42.882812 247.035156 41.851562 248.066406 41.851562 249.339844 C 41.851562 250.613281 42.882812 251.644531 44.15625 251.644531 C 45.429688 251.644531 46.460938 250.613281 46.460938 249.339844 Z M 46.460938 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.507812 249.339844 C 34.507812 248.066406 33.476562 247.035156 32.203125 247.035156 C 30.929688 247.035156 29.898438 248.066406 29.898438 249.339844 C 29.898438 250.613281 30.929688 251.644531 32.203125 251.644531 C 33.476562 251.644531 34.507812 250.613281 34.507812 249.339844 Z M 34.507812 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.292969 249.339844 C 41.292969 248.066406 40.261719 247.035156 38.988281 247.035156 C 37.714844 247.035156 36.683594 248.066406 36.683594 249.339844 C 36.683594 250.613281 37.714844 251.644531 38.988281 251.644531 C 40.261719 251.644531 41.292969 250.613281 41.292969 249.339844 Z M 41.292969 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.679688 249.339844 C 49.679688 248.066406 48.648438 247.035156 47.375 247.035156 C 46.101562 247.035156 45.070312 248.066406 45.070312 249.339844 C 45.070312 250.613281 46.101562 251.644531 47.375 251.644531 C 48.648438 251.644531 49.679688 250.613281 49.679688 249.339844 Z M 49.679688 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.445312 249.339844 C 41.445312 248.066406 40.414062 247.035156 39.140625 247.035156 C 37.867188 247.035156 36.835938 248.066406 36.835938 249.339844 C 36.835938 250.613281 37.867188 251.644531 39.140625 251.644531 C 40.414062 251.644531 41.445312 250.613281 41.445312 249.339844 Z M 41.445312 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.167969 249.339844 C 36.167969 248.066406 35.136719 247.035156 33.863281 247.035156 C 32.589844 247.035156 31.558594 248.066406 31.558594 249.339844 C 31.558594 250.613281 32.589844 251.644531 33.863281 251.644531 C 35.136719 251.644531 36.167969 250.613281 36.167969 249.339844 Z M 36.167969 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.984375 249.339844 C 44.984375 248.066406 43.953125 247.035156 42.679688 247.035156 C 41.40625 247.035156 40.375 248.066406 40.375 249.339844 C 40.375 250.613281 41.40625 251.644531 42.679688 251.644531 C 43.953125 251.644531 44.984375 250.613281 44.984375 249.339844 Z M 44.984375 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.804688 249.339844 C 44.804688 248.066406 43.773438 247.035156 42.5 247.035156 C 41.226562 247.035156 40.195312 248.066406 40.195312 249.339844 C 40.195312 250.613281 41.226562 251.644531 42.5 251.644531 C 43.773438 251.644531 44.804688 250.613281 44.804688 249.339844 Z M 44.804688 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.9375 249.339844 C 33.9375 248.066406 32.90625 247.035156 31.632812 247.035156 C 30.359375 247.035156 29.328125 248.066406 29.328125 249.339844 C 29.328125 250.613281 30.359375 251.644531 31.632812 251.644531 C 32.90625 251.644531 33.9375 250.613281 33.9375 249.339844 Z M 33.9375 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.371094 249.339844 C 38.371094 248.066406 37.339844 247.035156 36.066406 247.035156 C 34.792969 247.035156 33.761719 248.066406 33.761719 249.339844 C 33.761719 250.613281 34.792969 251.644531 36.066406 251.644531 C 37.339844 251.644531 38.371094 250.613281 38.371094 249.339844 Z M 38.371094 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.367188 249.339844 C 45.367188 248.066406 44.335938 247.035156 43.0625 247.035156 C 41.789062 247.035156 40.757812 248.066406 40.757812 249.339844 C 40.757812 250.613281 41.789062 251.644531 43.0625 251.644531 C 44.335938 251.644531 45.367188 250.613281 45.367188 249.339844 Z M 45.367188 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.328125 249.339844 C 42.328125 248.066406 41.296875 247.035156 40.023438 247.035156 C 38.75 247.035156 37.71875 248.066406 37.71875 249.339844 C 37.71875 250.613281 38.75 251.644531 40.023438 251.644531 C 41.296875 251.644531 42.328125 250.613281 42.328125 249.339844 Z M 42.328125 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.179688 249.339844 C 39.179688 248.066406 38.148438 247.035156 36.875 247.035156 C 35.601562 247.035156 34.570312 248.066406 34.570312 249.339844 C 34.570312 250.613281 35.601562 251.644531 36.875 251.644531 C 38.148438 251.644531 39.179688 250.613281 39.179688 249.339844 Z M 39.179688 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.851562 249.339844 C 49.851562 248.066406 48.820312 247.035156 47.546875 247.035156 C 46.273438 247.035156 45.242188 248.066406 45.242188 249.339844 C 45.242188 250.613281 46.273438 251.644531 47.546875 251.644531 C 48.820312 251.644531 49.851562 250.613281 49.851562 249.339844 Z M 49.851562 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.9375 249.339844 C 40.9375 248.066406 39.90625 247.035156 38.632812 247.035156 C 37.359375 247.035156 36.328125 248.066406 36.328125 249.339844 C 36.328125 250.613281 37.359375 251.644531 38.632812 251.644531 C 39.90625 251.644531 40.9375 250.613281 40.9375 249.339844 Z M 40.9375 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.464844 249.339844 C 43.464844 248.066406 42.433594 247.035156 41.160156 247.035156 C 39.886719 247.035156 38.855469 248.066406 38.855469 249.339844 C 38.855469 250.613281 39.886719 251.644531 41.160156 251.644531 C 42.433594 251.644531 43.464844 250.613281 43.464844 249.339844 Z M 43.464844 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.007812 249.339844 C 48.007812 248.066406 46.976562 247.035156 45.703125 247.035156 C 44.429688 247.035156 43.398438 248.066406 43.398438 249.339844 C 43.398438 250.613281 44.429688 251.644531 45.703125 251.644531 C 46.976562 251.644531 48.007812 250.613281 48.007812 249.339844 Z M 48.007812 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.398438 249.339844 C 35.398438 248.066406 34.367188 247.035156 33.09375 247.035156 C 31.820312 247.035156 30.789062 248.066406 30.789062 249.339844 C 30.789062 250.613281 31.820312 251.644531 33.09375 251.644531 C 34.367188 251.644531 35.398438 250.613281 35.398438 249.339844 Z M 35.398438 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.765625 249.339844 C 38.765625 248.066406 37.734375 247.035156 36.460938 247.035156 C 35.1875 247.035156 34.15625 248.066406 34.15625 249.339844 C 34.15625 250.613281 35.1875 251.644531 36.460938 251.644531 C 37.734375 251.644531 38.765625 250.613281 38.765625 249.339844 Z M 38.765625 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.132812 249.339844 C 49.132812 248.066406 48.101562 247.035156 46.828125 247.035156 C 45.554688 247.035156 44.523438 248.066406 44.523438 249.339844 C 44.523438 250.613281 45.554688 251.644531 46.828125 251.644531 C 48.101562 251.644531 49.132812 250.613281 49.132812 249.339844 Z M 49.132812 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.574219 249.339844 C 46.574219 248.066406 45.542969 247.035156 44.269531 247.035156 C 42.996094 247.035156 41.964844 248.066406 41.964844 249.339844 C 41.964844 250.613281 42.996094 251.644531 44.269531 251.644531 C 45.542969 251.644531 46.574219 250.613281 46.574219 249.339844 Z M 46.574219 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.144531 249.339844 C 41.144531 248.066406 40.113281 247.035156 38.839844 247.035156 C 37.566406 247.035156 36.535156 248.066406 36.535156 249.339844 C 36.535156 250.613281 37.566406 251.644531 38.839844 251.644531 C 40.113281 251.644531 41.144531 250.613281 41.144531 249.339844 Z M 41.144531 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.804688 249.339844 C 49.804688 248.066406 48.773438 247.035156 47.5 247.035156 C 46.226562 247.035156 45.195312 248.066406 45.195312 249.339844 C 45.195312 250.613281 46.226562 251.644531 47.5 251.644531 C 48.773438 251.644531 49.804688 250.613281 49.804688 249.339844 Z M 49.804688 249.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.464844 244.496094 C 34.464844 243.222656 33.433594 242.191406 32.160156 242.191406 C 30.886719 242.191406 29.855469 243.222656 29.855469 244.496094 C 29.855469 245.769531 30.886719 246.800781 32.160156 246.800781 C 33.433594 246.800781 34.464844 245.769531 34.464844 244.496094 Z M 34.464844 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.988281 244.496094 C 43.988281 243.222656 42.957031 242.191406 41.683594 242.191406 C 40.410156 242.191406 39.378906 243.222656 39.378906 244.496094 C 39.378906 245.769531 40.410156 246.800781 41.683594 246.800781 C 42.957031 246.800781 43.988281 245.769531 43.988281 244.496094 Z M 43.988281 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.171875 244.496094 C 38.171875 243.222656 37.140625 242.191406 35.867188 242.191406 C 34.59375 242.191406 33.5625 243.222656 33.5625 244.496094 C 33.5625 245.769531 34.59375 246.800781 35.867188 246.800781 C 37.140625 246.800781 38.171875 245.769531 38.171875 244.496094 Z M 38.171875 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.433594 244.496094 C 43.433594 243.222656 42.402344 242.191406 41.128906 242.191406 C 39.855469 242.191406 38.824219 243.222656 38.824219 244.496094 C 38.824219 245.769531 39.855469 246.800781 41.128906 246.800781 C 42.402344 246.800781 43.433594 245.769531 43.433594 244.496094 Z M 43.433594 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.746094 244.496094 C 41.746094 243.222656 40.714844 242.191406 39.441406 242.191406 C 38.167969 242.191406 37.136719 243.222656 37.136719 244.496094 C 37.136719 245.769531 38.167969 246.800781 39.441406 246.800781 C 40.714844 246.800781 41.746094 245.769531 41.746094 244.496094 Z M 41.746094 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.335938 244.496094 C 39.335938 243.222656 38.304688 242.191406 37.03125 242.191406 C 35.757812 242.191406 34.726562 243.222656 34.726562 244.496094 C 34.726562 245.769531 35.757812 246.800781 37.03125 246.800781 C 38.304688 246.800781 39.335938 245.769531 39.335938 244.496094 Z M 39.335938 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.03125 244.496094 C 38.03125 243.222656 37 242.191406 35.726562 242.191406 C 34.453125 242.191406 33.421875 243.222656 33.421875 244.496094 C 33.421875 245.769531 34.453125 246.800781 35.726562 246.800781 C 37 246.800781 38.03125 245.769531 38.03125 244.496094 Z M 38.03125 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.371094 244.496094 C 42.371094 243.222656 41.339844 242.191406 40.066406 242.191406 C 38.792969 242.191406 37.761719 243.222656 37.761719 244.496094 C 37.761719 245.769531 38.792969 246.800781 40.066406 246.800781 C 41.339844 246.800781 42.371094 245.769531 42.371094 244.496094 Z M 42.371094 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.402344 244.496094 C 33.402344 243.222656 32.371094 242.191406 31.097656 242.191406 C 29.824219 242.191406 28.792969 243.222656 28.792969 244.496094 C 28.792969 245.769531 29.824219 246.800781 31.097656 246.800781 C 32.371094 246.800781 33.402344 245.769531 33.402344 244.496094 Z M 33.402344 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.492188 244.496094 C 38.492188 243.222656 37.460938 242.191406 36.1875 242.191406 C 34.914062 242.191406 33.882812 243.222656 33.882812 244.496094 C 33.882812 245.769531 34.914062 246.800781 36.1875 246.800781 C 37.460938 246.800781 38.492188 245.769531 38.492188 244.496094 Z M 38.492188 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.789062 244.496094 C 44.789062 243.222656 43.757812 242.191406 42.484375 242.191406 C 41.210938 242.191406 40.179688 243.222656 40.179688 244.496094 C 40.179688 245.769531 41.210938 246.800781 42.484375 246.800781 C 43.757812 246.800781 44.789062 245.769531 44.789062 244.496094 Z M 44.789062 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.609375 244.496094 C 38.609375 243.222656 37.578125 242.191406 36.304688 242.191406 C 35.03125 242.191406 34 243.222656 34 244.496094 C 34 245.769531 35.03125 246.800781 36.304688 246.800781 C 37.578125 246.800781 38.609375 245.769531 38.609375 244.496094 Z M 38.609375 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.644531 244.496094 C 34.644531 243.222656 33.613281 242.191406 32.339844 242.191406 C 31.066406 242.191406 30.035156 243.222656 30.035156 244.496094 C 30.035156 245.769531 31.066406 246.800781 32.339844 246.800781 C 33.613281 246.800781 34.644531 245.769531 34.644531 244.496094 Z M 34.644531 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.265625 244.496094 C 41.265625 243.222656 40.234375 242.191406 38.960938 242.191406 C 37.6875 242.191406 36.65625 243.222656 36.65625 244.496094 C 36.65625 245.769531 37.6875 246.800781 38.960938 246.800781 C 40.234375 246.800781 41.265625 245.769531 41.265625 244.496094 Z M 41.265625 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.128906 244.496094 C 41.128906 243.222656 40.097656 242.191406 38.824219 242.191406 C 37.550781 242.191406 36.519531 243.222656 36.519531 244.496094 C 36.519531 245.769531 37.550781 246.800781 38.824219 246.800781 C 40.097656 246.800781 41.128906 245.769531 41.128906 244.496094 Z M 41.128906 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.972656 244.496094 C 32.972656 243.222656 31.941406 242.191406 30.667969 242.191406 C 29.394531 242.191406 28.363281 243.222656 28.363281 244.496094 C 28.363281 245.769531 29.394531 246.800781 30.667969 246.800781 C 31.941406 246.800781 32.972656 245.769531 32.972656 244.496094 Z M 32.972656 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.300781 244.496094 C 36.300781 243.222656 35.269531 242.191406 33.996094 242.191406 C 32.722656 242.191406 31.691406 243.222656 31.691406 244.496094 C 31.691406 245.769531 32.722656 246.800781 33.996094 246.800781 C 35.269531 246.800781 36.300781 245.769531 36.300781 244.496094 Z M 36.300781 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.550781 244.496094 C 41.550781 243.222656 40.519531 242.191406 39.246094 242.191406 C 37.972656 242.191406 36.941406 243.222656 36.941406 244.496094 C 36.941406 245.769531 37.972656 246.800781 39.246094 246.800781 C 40.519531 246.800781 41.550781 245.769531 41.550781 244.496094 Z M 41.550781 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.269531 244.496094 C 39.269531 243.222656 38.238281 242.191406 36.964844 242.191406 C 35.691406 242.191406 34.660156 243.222656 34.660156 244.496094 C 34.660156 245.769531 35.691406 246.800781 36.964844 246.800781 C 38.238281 246.800781 39.269531 245.769531 39.269531 244.496094 Z M 39.269531 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.90625 244.496094 C 36.90625 243.222656 35.875 242.191406 34.601562 242.191406 C 33.328125 242.191406 32.296875 243.222656 32.296875 244.496094 C 32.296875 245.769531 33.328125 246.800781 34.601562 246.800781 C 35.875 246.800781 36.90625 245.769531 36.90625 244.496094 Z M 36.90625 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.914062 244.496094 C 44.914062 243.222656 43.882812 242.191406 42.609375 242.191406 C 41.335938 242.191406 40.304688 243.222656 40.304688 244.496094 C 40.304688 245.769531 41.335938 246.800781 42.609375 246.800781 C 43.882812 246.800781 44.914062 245.769531 44.914062 244.496094 Z M 44.914062 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.226562 244.496094 C 38.226562 243.222656 37.195312 242.191406 35.921875 242.191406 C 34.648438 242.191406 33.617188 243.222656 33.617188 244.496094 C 33.617188 245.769531 34.648438 246.800781 35.921875 246.800781 C 37.195312 246.800781 38.226562 245.769531 38.226562 244.496094 Z M 38.226562 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.125 244.496094 C 40.125 243.222656 39.09375 242.191406 37.820312 242.191406 C 36.546875 242.191406 35.515625 243.222656 35.515625 244.496094 C 35.515625 245.769531 36.546875 246.800781 37.820312 246.800781 C 39.09375 246.800781 40.125 245.769531 40.125 244.496094 Z M 40.125 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.535156 244.496094 C 43.535156 243.222656 42.503906 242.191406 41.230469 242.191406 C 39.957031 242.191406 38.925781 243.222656 38.925781 244.496094 C 38.925781 245.769531 39.957031 246.800781 41.230469 246.800781 C 42.503906 246.800781 43.535156 245.769531 43.535156 244.496094 Z M 43.535156 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.070312 244.496094 C 34.070312 243.222656 33.039062 242.191406 31.765625 242.191406 C 30.492188 242.191406 29.460938 243.222656 29.460938 244.496094 C 29.460938 245.769531 30.492188 246.800781 31.765625 246.800781 C 33.039062 246.800781 34.070312 245.769531 34.070312 244.496094 Z M 34.070312 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.59375 244.496094 C 36.59375 243.222656 35.5625 242.191406 34.289062 242.191406 C 33.015625 242.191406 31.984375 243.222656 31.984375 244.496094 C 31.984375 245.769531 33.015625 246.800781 34.289062 246.800781 C 35.5625 246.800781 36.59375 245.769531 36.59375 244.496094 Z M 36.59375 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.375 244.496094 C 44.375 243.222656 43.34375 242.191406 42.070312 242.191406 C 40.796875 242.191406 39.765625 243.222656 39.765625 244.496094 C 39.765625 245.769531 40.796875 246.800781 42.070312 246.800781 C 43.34375 246.800781 44.375 245.769531 44.375 244.496094 Z M 44.375 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.457031 244.496094 C 42.457031 243.222656 41.425781 242.191406 40.152344 242.191406 C 38.878906 242.191406 37.847656 243.222656 37.847656 244.496094 C 37.847656 245.769531 38.878906 246.800781 40.152344 246.800781 C 41.425781 246.800781 42.457031 245.769531 42.457031 244.496094 Z M 42.457031 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.382812 244.496094 C 38.382812 243.222656 37.351562 242.191406 36.078125 242.191406 C 34.804688 242.191406 33.773438 243.222656 33.773438 244.496094 C 33.773438 245.769531 34.804688 246.800781 36.078125 246.800781 C 37.351562 246.800781 38.382812 245.769531 38.382812 244.496094 Z M 38.382812 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.882812 244.496094 C 44.882812 243.222656 43.851562 242.191406 42.578125 242.191406 C 41.304688 242.191406 40.273438 243.222656 40.273438 244.496094 C 40.273438 245.769531 41.304688 246.800781 42.578125 246.800781 C 43.851562 246.800781 44.882812 245.769531 44.882812 244.496094 Z M 44.882812 244.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.207031 239.652344 C 33.207031 238.378906 32.175781 237.347656 30.902344 237.347656 C 29.628906 237.347656 28.597656 238.378906 28.597656 239.652344 C 28.597656 240.925781 29.628906 241.957031 30.902344 241.957031 C 32.175781 241.957031 33.207031 240.925781 33.207031 239.652344 Z M 33.207031 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.46875 239.652344 C 39.46875 238.378906 38.4375 237.347656 37.164062 237.347656 C 35.890625 237.347656 34.859375 238.378906 34.859375 239.652344 C 34.859375 240.925781 35.890625 241.957031 37.164062 241.957031 C 38.4375 241.957031 39.46875 240.925781 39.46875 239.652344 Z M 39.46875 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.644531 239.652344 C 35.644531 238.378906 34.613281 237.347656 33.339844 237.347656 C 32.066406 237.347656 31.035156 238.378906 31.035156 239.652344 C 31.035156 240.925781 32.066406 241.957031 33.339844 241.957031 C 34.613281 241.957031 35.644531 240.925781 35.644531 239.652344 Z M 35.644531 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.101562 239.652344 C 39.101562 238.378906 38.070312 237.347656 36.796875 237.347656 C 35.523438 237.347656 34.492188 238.378906 34.492188 239.652344 C 34.492188 240.925781 35.523438 241.957031 36.796875 241.957031 C 38.070312 241.957031 39.101562 240.925781 39.101562 239.652344 Z M 39.101562 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.992188 239.652344 C 37.992188 238.378906 36.960938 237.347656 35.6875 237.347656 C 34.414062 237.347656 33.382812 238.378906 33.382812 239.652344 C 33.382812 240.925781 34.414062 241.957031 35.6875 241.957031 C 36.960938 241.957031 37.992188 240.925781 37.992188 239.652344 Z M 37.992188 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.40625 239.652344 C 36.40625 238.378906 35.375 237.347656 34.101562 237.347656 C 32.828125 237.347656 31.796875 238.378906 31.796875 239.652344 C 31.796875 240.925781 32.828125 241.957031 34.101562 241.957031 C 35.375 241.957031 36.40625 240.925781 36.40625 239.652344 Z M 36.40625 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.550781 239.652344 C 35.550781 238.378906 34.519531 237.347656 33.246094 237.347656 C 31.972656 237.347656 30.941406 238.378906 30.941406 239.652344 C 30.941406 240.925781 31.972656 241.957031 33.246094 241.957031 C 34.519531 241.957031 35.550781 240.925781 35.550781 239.652344 Z M 35.550781 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.402344 239.652344 C 38.402344 238.378906 37.371094 237.347656 36.097656 237.347656 C 34.824219 237.347656 33.792969 238.378906 33.792969 239.652344 C 33.792969 240.925781 34.824219 241.957031 36.097656 241.957031 C 37.371094 241.957031 38.402344 240.925781 38.402344 239.652344 Z M 38.402344 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.507812 239.652344 C 32.507812 238.378906 31.476562 237.347656 30.203125 237.347656 C 28.929688 237.347656 27.898438 238.378906 27.898438 239.652344 C 27.898438 240.925781 28.929688 241.957031 30.203125 241.957031 C 31.476562 241.957031 32.507812 240.925781 32.507812 239.652344 Z M 32.507812 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.851562 239.652344 C 35.851562 238.378906 34.820312 237.347656 33.546875 237.347656 C 32.273438 237.347656 31.242188 238.378906 31.242188 239.652344 C 31.242188 240.925781 32.273438 241.957031 33.546875 241.957031 C 34.820312 241.957031 35.851562 240.925781 35.851562 239.652344 Z M 35.851562 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.992188 239.652344 C 39.992188 238.378906 38.960938 237.347656 37.6875 237.347656 C 36.414062 237.347656 35.382812 238.378906 35.382812 239.652344 C 35.382812 240.925781 36.414062 241.957031 37.6875 241.957031 C 38.960938 241.957031 39.992188 240.925781 39.992188 239.652344 Z M 39.992188 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.929688 239.652344 C 35.929688 238.378906 34.898438 237.347656 33.625 237.347656 C 32.351562 237.347656 31.320312 238.378906 31.320312 239.652344 C 31.320312 240.925781 32.351562 241.957031 33.625 241.957031 C 34.898438 241.957031 35.929688 240.925781 35.929688 239.652344 Z M 35.929688 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.324219 239.652344 C 33.324219 238.378906 32.292969 237.347656 31.019531 237.347656 C 29.746094 237.347656 28.714844 238.378906 28.714844 239.652344 C 28.714844 240.925781 29.746094 241.957031 31.019531 241.957031 C 32.292969 241.957031 33.324219 240.925781 33.324219 239.652344 Z M 33.324219 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.675781 239.652344 C 37.675781 238.378906 36.644531 237.347656 35.371094 237.347656 C 34.097656 237.347656 33.066406 238.378906 33.066406 239.652344 C 33.066406 240.925781 34.097656 241.957031 35.371094 241.957031 C 36.644531 241.957031 37.675781 240.925781 37.675781 239.652344 Z M 37.675781 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.585938 239.652344 C 37.585938 238.378906 36.554688 237.347656 35.28125 237.347656 C 34.007812 237.347656 32.976562 238.378906 32.976562 239.652344 C 32.976562 240.925781 34.007812 241.957031 35.28125 241.957031 C 36.554688 241.957031 37.585938 240.925781 37.585938 239.652344 Z M 37.585938 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.222656 239.652344 C 32.222656 238.378906 31.191406 237.347656 29.917969 237.347656 C 28.644531 237.347656 27.613281 238.378906 27.613281 239.652344 C 27.613281 240.925781 28.644531 241.957031 29.917969 241.957031 C 31.191406 241.957031 32.222656 240.925781 32.222656 239.652344 Z M 32.222656 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.414062 239.652344 C 34.414062 238.378906 33.382812 237.347656 32.109375 237.347656 C 30.835938 237.347656 29.804688 238.378906 29.804688 239.652344 C 29.804688 240.925781 30.835938 241.957031 32.109375 241.957031 C 33.382812 241.957031 34.414062 240.925781 34.414062 239.652344 Z M 34.414062 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.863281 239.652344 C 37.863281 238.378906 36.832031 237.347656 35.558594 237.347656 C 34.285156 237.347656 33.253906 238.378906 33.253906 239.652344 C 33.253906 240.925781 34.285156 241.957031 35.558594 241.957031 C 36.832031 241.957031 37.863281 240.925781 37.863281 239.652344 Z M 37.863281 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.363281 239.652344 C 36.363281 238.378906 35.332031 237.347656 34.058594 237.347656 C 32.785156 237.347656 31.753906 238.378906 31.753906 239.652344 C 31.753906 240.925781 32.785156 241.957031 34.058594 241.957031 C 35.332031 241.957031 36.363281 240.925781 36.363281 239.652344 Z M 36.363281 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.8125 239.652344 C 34.8125 238.378906 33.78125 237.347656 32.507812 237.347656 C 31.234375 237.347656 30.203125 238.378906 30.203125 239.652344 C 30.203125 240.925781 31.234375 241.957031 32.507812 241.957031 C 33.78125 241.957031 34.8125 240.925781 34.8125 239.652344 Z M 34.8125 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.074219 239.652344 C 40.074219 238.378906 39.042969 237.347656 37.769531 237.347656 C 36.496094 237.347656 35.464844 238.378906 35.464844 239.652344 C 35.464844 240.925781 36.496094 241.957031 37.769531 241.957031 C 39.042969 241.957031 40.074219 240.925781 40.074219 239.652344 Z M 40.074219 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.679688 239.652344 C 35.679688 238.378906 34.648438 237.347656 33.375 237.347656 C 32.101562 237.347656 31.070312 238.378906 31.070312 239.652344 C 31.070312 240.925781 32.101562 241.957031 33.375 241.957031 C 34.648438 241.957031 35.679688 240.925781 35.679688 239.652344 Z M 35.679688 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.925781 239.652344 C 36.925781 238.378906 35.894531 237.347656 34.621094 237.347656 C 33.347656 237.347656 32.316406 238.378906 32.316406 239.652344 C 32.316406 240.925781 33.347656 241.957031 34.621094 241.957031 C 35.894531 241.957031 36.925781 240.925781 36.925781 239.652344 Z M 36.925781 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.167969 239.652344 C 39.167969 238.378906 38.136719 237.347656 36.863281 237.347656 C 35.589844 237.347656 34.558594 238.378906 34.558594 239.652344 C 34.558594 240.925781 35.589844 241.957031 36.863281 241.957031 C 38.136719 241.957031 39.167969 240.925781 39.167969 239.652344 Z M 39.167969 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.945312 239.652344 C 32.945312 238.378906 31.914062 237.347656 30.640625 237.347656 C 29.367188 237.347656 28.335938 238.378906 28.335938 239.652344 C 28.335938 240.925781 29.367188 241.957031 30.640625 241.957031 C 31.914062 241.957031 32.945312 240.925781 32.945312 239.652344 Z M 32.945312 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.605469 239.652344 C 34.605469 238.378906 33.574219 237.347656 32.300781 237.347656 C 31.027344 237.347656 29.996094 238.378906 29.996094 239.652344 C 29.996094 240.925781 31.027344 241.957031 32.300781 241.957031 C 33.574219 241.957031 34.605469 240.925781 34.605469 239.652344 Z M 34.605469 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.722656 239.652344 C 39.722656 238.378906 38.691406 237.347656 37.417969 237.347656 C 36.144531 237.347656 35.113281 238.378906 35.113281 239.652344 C 35.113281 240.925781 36.144531 241.957031 37.417969 241.957031 C 38.691406 241.957031 39.722656 240.925781 39.722656 239.652344 Z M 39.722656 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.460938 239.652344 C 38.460938 238.378906 37.429688 237.347656 36.15625 237.347656 C 34.882812 237.347656 33.851562 238.378906 33.851562 239.652344 C 33.851562 240.925781 34.882812 241.957031 36.15625 241.957031 C 37.429688 241.957031 38.460938 240.925781 38.460938 239.652344 Z M 38.460938 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.78125 239.652344 C 35.78125 238.378906 34.75 237.347656 33.476562 237.347656 C 32.203125 237.347656 31.171875 238.378906 31.171875 239.652344 C 31.171875 240.925781 32.203125 241.957031 33.476562 241.957031 C 34.75 241.957031 35.78125 240.925781 35.78125 239.652344 Z M 35.78125 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.054688 239.652344 C 40.054688 238.378906 39.023438 237.347656 37.75 237.347656 C 36.476562 237.347656 35.445312 238.378906 35.445312 239.652344 C 35.445312 240.925781 36.476562 241.957031 37.75 241.957031 C 39.023438 241.957031 40.054688 240.925781 40.054688 239.652344 Z M 40.054688 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.15625 234.808594 C 32.15625 233.535156 31.125 232.503906 29.851562 232.503906 C 28.578125 232.503906 27.546875 233.535156 27.546875 234.808594 C 27.546875 236.082031 28.578125 237.113281 29.851562 237.113281 C 31.125 237.113281 32.15625 236.082031 32.15625 234.808594 Z M 32.15625 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.09375 234.808594 C 35.09375 233.535156 34.0625 232.503906 32.789062 232.503906 C 31.515625 232.503906 30.484375 233.535156 30.484375 234.808594 C 30.484375 236.082031 31.515625 237.113281 32.789062 237.113281 C 34.0625 237.113281 35.09375 236.082031 35.09375 234.808594 Z M 35.09375 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.300781 234.808594 C 33.300781 233.535156 32.269531 232.503906 30.996094 232.503906 C 29.722656 232.503906 28.691406 233.535156 28.691406 234.808594 C 28.691406 236.082031 29.722656 237.113281 30.996094 237.113281 C 32.269531 237.113281 33.300781 236.082031 33.300781 234.808594 Z M 33.300781 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.925781 234.808594 C 34.925781 233.535156 33.894531 232.503906 32.621094 232.503906 C 31.347656 232.503906 30.316406 233.535156 30.316406 234.808594 C 30.316406 236.082031 31.347656 237.113281 32.621094 237.113281 C 33.894531 237.113281 34.925781 236.082031 34.925781 234.808594 Z M 34.925781 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.402344 234.808594 C 34.402344 233.535156 33.371094 232.503906 32.097656 232.503906 C 30.824219 232.503906 29.792969 233.535156 29.792969 234.808594 C 29.792969 236.082031 30.824219 237.113281 32.097656 237.113281 C 33.371094 237.113281 34.402344 236.082031 34.402344 234.808594 Z M 34.402344 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.660156 234.808594 C 33.660156 233.535156 32.628906 232.503906 31.355469 232.503906 C 30.082031 232.503906 29.050781 233.535156 29.050781 234.808594 C 29.050781 236.082031 30.082031 237.113281 31.355469 237.113281 C 32.628906 237.113281 33.660156 236.082031 33.660156 234.808594 Z M 33.660156 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.257812 234.808594 C 33.257812 233.535156 32.226562 232.503906 30.953125 232.503906 C 29.679688 232.503906 28.648438 233.535156 28.648438 234.808594 C 28.648438 236.082031 29.679688 237.113281 30.953125 237.113281 C 32.226562 237.113281 33.257812 236.082031 33.257812 234.808594 Z M 33.257812 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.597656 234.808594 C 34.597656 233.535156 33.566406 232.503906 32.292969 232.503906 C 31.019531 232.503906 29.988281 233.535156 29.988281 234.808594 C 29.988281 236.082031 31.019531 237.113281 32.292969 237.113281 C 33.566406 237.113281 34.597656 236.082031 34.597656 234.808594 Z M 34.597656 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.828125 234.808594 C 31.828125 233.535156 30.796875 232.503906 29.523438 232.503906 C 28.25 232.503906 27.21875 233.535156 27.21875 234.808594 C 27.21875 236.082031 28.25 237.113281 29.523438 237.113281 C 30.796875 237.113281 31.828125 236.082031 31.828125 234.808594 Z M 31.828125 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.398438 234.808594 C 33.398438 233.535156 32.367188 232.503906 31.09375 232.503906 C 29.820312 232.503906 28.789062 233.535156 28.789062 234.808594 C 28.789062 236.082031 29.820312 237.113281 31.09375 237.113281 C 32.367188 237.113281 33.398438 236.082031 33.398438 234.808594 Z M 33.398438 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.34375 234.808594 C 35.34375 233.535156 34.3125 232.503906 33.039062 232.503906 C 31.765625 232.503906 30.734375 233.535156 30.734375 234.808594 C 30.734375 236.082031 31.765625 237.113281 33.039062 237.113281 C 34.3125 237.113281 35.34375 236.082031 35.34375 234.808594 Z M 35.34375 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.4375 234.808594 C 33.4375 233.535156 32.40625 232.503906 31.132812 232.503906 C 29.859375 232.503906 28.828125 233.535156 28.828125 234.808594 C 28.828125 236.082031 29.859375 237.113281 31.132812 237.113281 C 32.40625 237.113281 33.4375 236.082031 33.4375 234.808594 Z M 33.4375 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.214844 234.808594 C 32.214844 233.535156 31.183594 232.503906 29.910156 232.503906 C 28.636719 232.503906 27.605469 233.535156 27.605469 234.808594 C 27.605469 236.082031 28.636719 237.113281 29.910156 237.113281 C 31.183594 237.113281 32.214844 236.082031 32.214844 234.808594 Z M 32.214844 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.253906 234.808594 C 34.253906 233.535156 33.222656 232.503906 31.949219 232.503906 C 30.675781 232.503906 29.644531 233.535156 29.644531 234.808594 C 29.644531 236.082031 30.675781 237.113281 31.949219 237.113281 C 33.222656 237.113281 34.253906 236.082031 34.253906 234.808594 Z M 34.253906 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.214844 234.808594 C 34.214844 233.535156 33.183594 232.503906 31.910156 232.503906 C 30.636719 232.503906 29.605469 233.535156 29.605469 234.808594 C 29.605469 236.082031 30.636719 237.113281 31.910156 237.113281 C 33.183594 237.113281 34.214844 236.082031 34.214844 234.808594 Z M 34.214844 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.699219 234.808594 C 31.699219 233.535156 30.667969 232.503906 29.394531 232.503906 C 28.121094 232.503906 27.089844 233.535156 27.089844 234.808594 C 27.089844 236.082031 28.121094 237.113281 29.394531 237.113281 C 30.667969 237.113281 31.699219 236.082031 31.699219 234.808594 Z M 31.699219 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.722656 234.808594 C 32.722656 233.535156 31.691406 232.503906 30.417969 232.503906 C 29.144531 232.503906 28.113281 233.535156 28.113281 234.808594 C 28.113281 236.082031 29.144531 237.113281 30.417969 237.113281 C 31.691406 237.113281 32.722656 236.082031 32.722656 234.808594 Z M 32.722656 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.34375 234.808594 C 34.34375 233.535156 33.3125 232.503906 32.039062 232.503906 C 30.765625 232.503906 29.734375 233.535156 29.734375 234.808594 C 29.734375 236.082031 30.765625 237.113281 32.039062 237.113281 C 33.3125 237.113281 34.34375 236.082031 34.34375 234.808594 Z M 34.34375 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.640625 234.808594 C 33.640625 233.535156 32.609375 232.503906 31.335938 232.503906 C 30.0625 232.503906 29.03125 233.535156 29.03125 234.808594 C 29.03125 236.082031 30.0625 237.113281 31.335938 237.113281 C 32.609375 237.113281 33.640625 236.082031 33.640625 234.808594 Z M 33.640625 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.910156 234.808594 C 32.910156 233.535156 31.878906 232.503906 30.605469 232.503906 C 29.332031 232.503906 28.300781 233.535156 28.300781 234.808594 C 28.300781 236.082031 29.332031 237.113281 30.605469 237.113281 C 31.878906 237.113281 32.910156 236.082031 32.910156 234.808594 Z M 32.910156 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.382812 234.808594 C 35.382812 233.535156 34.351562 232.503906 33.078125 232.503906 C 31.804688 232.503906 30.773438 233.535156 30.773438 234.808594 C 30.773438 236.082031 31.804688 237.113281 33.078125 237.113281 C 34.351562 237.113281 35.382812 236.082031 35.382812 234.808594 Z M 35.382812 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.320312 234.808594 C 33.320312 233.535156 32.289062 232.503906 31.015625 232.503906 C 29.742188 232.503906 28.710938 233.535156 28.710938 234.808594 C 28.710938 236.082031 29.742188 237.113281 31.015625 237.113281 C 32.289062 237.113281 33.320312 236.082031 33.320312 234.808594 Z M 33.320312 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.902344 234.808594 C 33.902344 233.535156 32.871094 232.503906 31.597656 232.503906 C 30.324219 232.503906 29.292969 233.535156 29.292969 234.808594 C 29.292969 236.082031 30.324219 237.113281 31.597656 237.113281 C 32.871094 237.113281 33.902344 236.082031 33.902344 234.808594 Z M 33.902344 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.957031 234.808594 C 34.957031 233.535156 33.925781 232.503906 32.652344 232.503906 C 31.378906 232.503906 30.347656 233.535156 30.347656 234.808594 C 30.347656 236.082031 31.378906 237.113281 32.652344 237.113281 C 33.925781 237.113281 34.957031 236.082031 34.957031 234.808594 Z M 34.957031 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.035156 234.808594 C 32.035156 233.535156 31.003906 232.503906 29.730469 232.503906 C 28.457031 232.503906 27.425781 233.535156 27.425781 234.808594 C 27.425781 236.082031 28.457031 237.113281 29.730469 237.113281 C 31.003906 237.113281 32.035156 236.082031 32.035156 234.808594 Z M 32.035156 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.816406 234.808594 C 32.816406 233.535156 31.785156 232.503906 30.511719 232.503906 C 29.238281 232.503906 28.207031 233.535156 28.207031 234.808594 C 28.207031 236.082031 29.238281 237.113281 30.511719 237.113281 C 31.785156 237.113281 32.816406 236.082031 32.816406 234.808594 Z M 32.816406 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.214844 234.808594 C 35.214844 233.535156 34.183594 232.503906 32.910156 232.503906 C 31.636719 232.503906 30.605469 233.535156 30.605469 234.808594 C 30.605469 236.082031 31.636719 237.113281 32.910156 237.113281 C 34.183594 237.113281 35.214844 236.082031 35.214844 234.808594 Z M 35.214844 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.625 234.808594 C 34.625 233.535156 33.59375 232.503906 32.320312 232.503906 C 31.046875 232.503906 30.015625 233.535156 30.015625 234.808594 C 30.015625 236.082031 31.046875 237.113281 32.320312 237.113281 C 33.59375 237.113281 34.625 236.082031 34.625 234.808594 Z M 34.625 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.367188 234.808594 C 33.367188 233.535156 32.335938 232.503906 31.0625 232.503906 C 29.789062 232.503906 28.757812 233.535156 28.757812 234.808594 C 28.757812 236.082031 29.789062 237.113281 31.0625 237.113281 C 32.335938 237.113281 33.367188 236.082031 33.367188 234.808594 Z M 33.367188 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.371094 234.808594 C 35.371094 233.535156 34.339844 232.503906 33.066406 232.503906 C 31.792969 232.503906 30.761719 233.535156 30.761719 234.808594 C 30.761719 236.082031 31.792969 237.113281 33.066406 237.113281 C 34.339844 237.113281 35.371094 236.082031 35.371094 234.808594 Z M 35.371094 234.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.332031 229.964844 C 31.332031 228.691406 30.300781 227.660156 29.027344 227.660156 C 27.753906 227.660156 26.722656 228.691406 26.722656 229.964844 C 26.722656 231.238281 27.753906 232.269531 29.027344 232.269531 C 30.300781 232.269531 31.332031 231.238281 31.332031 229.964844 Z M 31.332031 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.917969 229.964844 C 30.917969 228.691406 29.886719 227.660156 28.613281 227.660156 C 27.339844 227.660156 26.308594 228.691406 26.308594 229.964844 C 26.308594 231.238281 27.339844 232.269531 28.613281 232.269531 C 29.886719 232.269531 30.917969 231.238281 30.917969 229.964844 Z M 30.917969 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.171875 229.964844 C 31.171875 228.691406 30.140625 227.660156 28.867188 227.660156 C 27.59375 227.660156 26.5625 228.691406 26.5625 229.964844 C 26.5625 231.238281 27.59375 232.269531 28.867188 232.269531 C 30.140625 232.269531 31.171875 231.238281 31.171875 229.964844 Z M 31.171875 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.941406 229.964844 C 30.941406 228.691406 29.910156 227.660156 28.636719 227.660156 C 27.363281 227.660156 26.332031 228.691406 26.332031 229.964844 C 26.332031 231.238281 27.363281 232.269531 28.636719 232.269531 C 29.910156 232.269531 30.941406 231.238281 30.941406 229.964844 Z M 30.941406 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.015625 229.964844 C 31.015625 228.691406 29.984375 227.660156 28.710938 227.660156 C 27.4375 227.660156 26.40625 228.691406 26.40625 229.964844 C 26.40625 231.238281 27.4375 232.269531 28.710938 232.269531 C 29.984375 232.269531 31.015625 231.238281 31.015625 229.964844 Z M 31.015625 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.121094 229.964844 C 31.121094 228.691406 30.089844 227.660156 28.816406 227.660156 C 27.542969 227.660156 26.511719 228.691406 26.511719 229.964844 C 26.511719 231.238281 27.542969 232.269531 28.816406 232.269531 C 30.089844 232.269531 31.121094 231.238281 31.121094 229.964844 Z M 31.121094 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.179688 229.964844 C 31.179688 228.691406 30.148438 227.660156 28.875 227.660156 C 27.601562 227.660156 26.570312 228.691406 26.570312 229.964844 C 26.570312 231.238281 27.601562 232.269531 28.875 232.269531 C 30.148438 232.269531 31.179688 231.238281 31.179688 229.964844 Z M 31.179688 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.988281 229.964844 C 30.988281 228.691406 29.957031 227.660156 28.683594 227.660156 C 27.410156 227.660156 26.378906 228.691406 26.378906 229.964844 C 26.378906 231.238281 27.410156 232.269531 28.683594 232.269531 C 29.957031 232.269531 30.988281 231.238281 30.988281 229.964844 Z M 30.988281 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.378906 229.964844 C 31.378906 228.691406 30.347656 227.660156 29.074219 227.660156 C 27.800781 227.660156 26.769531 228.691406 26.769531 229.964844 C 26.769531 231.238281 27.800781 232.269531 29.074219 232.269531 C 30.347656 232.269531 31.378906 231.238281 31.378906 229.964844 Z M 31.378906 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.15625 229.964844 C 31.15625 228.691406 30.125 227.660156 28.851562 227.660156 C 27.578125 227.660156 26.546875 228.691406 26.546875 229.964844 C 26.546875 231.238281 27.578125 232.269531 28.851562 232.269531 C 30.125 232.269531 31.15625 231.238281 31.15625 229.964844 Z M 31.15625 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.882812 229.964844 C 30.882812 228.691406 29.851562 227.660156 28.578125 227.660156 C 27.304688 227.660156 26.273438 228.691406 26.273438 229.964844 C 26.273438 231.238281 27.304688 232.269531 28.578125 232.269531 C 29.851562 232.269531 30.882812 231.238281 30.882812 229.964844 Z M 30.882812 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.152344 229.964844 C 31.152344 228.691406 30.121094 227.660156 28.847656 227.660156 C 27.574219 227.660156 26.542969 228.691406 26.542969 229.964844 C 26.542969 231.238281 27.574219 232.269531 28.847656 232.269531 C 30.121094 232.269531 31.152344 231.238281 31.152344 229.964844 Z M 31.152344 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.324219 229.964844 C 31.324219 228.691406 30.292969 227.660156 29.019531 227.660156 C 27.746094 227.660156 26.714844 228.691406 26.714844 229.964844 C 26.714844 231.238281 27.746094 232.269531 29.019531 232.269531 C 30.292969 232.269531 31.324219 231.238281 31.324219 229.964844 Z M 31.324219 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.035156 229.964844 C 31.035156 228.691406 30.003906 227.660156 28.730469 227.660156 C 27.457031 227.660156 26.425781 228.691406 26.425781 229.964844 C 26.425781 231.238281 27.457031 232.269531 28.730469 232.269531 C 30.003906 232.269531 31.035156 231.238281 31.035156 229.964844 Z M 31.035156 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.042969 229.964844 C 31.042969 228.691406 30.011719 227.660156 28.738281 227.660156 C 27.464844 227.660156 26.433594 228.691406 26.433594 229.964844 C 26.433594 231.238281 27.464844 232.269531 28.738281 232.269531 C 30.011719 232.269531 31.042969 231.238281 31.042969 229.964844 Z M 31.042969 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.398438 229.964844 C 31.398438 228.691406 30.367188 227.660156 29.09375 227.660156 C 27.820312 227.660156 26.789062 228.691406 26.789062 229.964844 C 26.789062 231.238281 27.820312 232.269531 29.09375 232.269531 C 30.367188 232.269531 31.398438 231.238281 31.398438 229.964844 Z M 31.398438 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.253906 229.964844 C 31.253906 228.691406 30.222656 227.660156 28.949219 227.660156 C 27.675781 227.660156 26.644531 228.691406 26.644531 229.964844 C 26.644531 231.238281 27.675781 232.269531 28.949219 232.269531 C 30.222656 232.269531 31.253906 231.238281 31.253906 229.964844 Z M 31.253906 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.023438 229.964844 C 31.023438 228.691406 29.992188 227.660156 28.71875 227.660156 C 27.445312 227.660156 26.414062 228.691406 26.414062 229.964844 C 26.414062 231.238281 27.445312 232.269531 28.71875 232.269531 C 29.992188 232.269531 31.023438 231.238281 31.023438 229.964844 Z M 31.023438 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.125 229.964844 C 31.125 228.691406 30.09375 227.660156 28.820312 227.660156 C 27.546875 227.660156 26.515625 228.691406 26.515625 229.964844 C 26.515625 231.238281 27.546875 232.269531 28.820312 232.269531 C 30.09375 232.269531 31.125 231.238281 31.125 229.964844 Z M 31.125 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.226562 229.964844 C 31.226562 228.691406 30.195312 227.660156 28.921875 227.660156 C 27.648438 227.660156 26.617188 228.691406 26.617188 229.964844 C 26.617188 231.238281 27.648438 232.269531 28.921875 232.269531 C 30.195312 232.269531 31.226562 231.238281 31.226562 229.964844 Z M 31.226562 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.878906 229.964844 C 30.878906 228.691406 29.847656 227.660156 28.574219 227.660156 C 27.300781 227.660156 26.269531 228.691406 26.269531 229.964844 C 26.269531 231.238281 27.300781 232.269531 28.574219 232.269531 C 29.847656 232.269531 30.878906 231.238281 30.878906 229.964844 Z M 30.878906 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.167969 229.964844 C 31.167969 228.691406 30.136719 227.660156 28.863281 227.660156 C 27.589844 227.660156 26.558594 228.691406 26.558594 229.964844 C 26.558594 231.238281 27.589844 232.269531 28.863281 232.269531 C 30.136719 232.269531 31.167969 231.238281 31.167969 229.964844 Z M 31.167969 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.085938 229.964844 C 31.085938 228.691406 30.054688 227.660156 28.78125 227.660156 C 27.507812 227.660156 26.476562 228.691406 26.476562 229.964844 C 26.476562 231.238281 27.507812 232.269531 28.78125 232.269531 C 30.054688 232.269531 31.085938 231.238281 31.085938 229.964844 Z M 31.085938 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.9375 229.964844 C 30.9375 228.691406 29.90625 227.660156 28.632812 227.660156 C 27.359375 227.660156 26.328125 228.691406 26.328125 229.964844 C 26.328125 231.238281 27.359375 232.269531 28.632812 232.269531 C 29.90625 232.269531 30.9375 231.238281 30.9375 229.964844 Z M 30.9375 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.351562 229.964844 C 31.351562 228.691406 30.320312 227.660156 29.046875 227.660156 C 27.773438 227.660156 26.742188 228.691406 26.742188 229.964844 C 26.742188 231.238281 27.773438 232.269531 29.046875 232.269531 C 30.320312 232.269531 31.351562 231.238281 31.351562 229.964844 Z M 31.351562 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.242188 229.964844 C 31.242188 228.691406 30.210938 227.660156 28.9375 227.660156 C 27.664062 227.660156 26.632812 228.691406 26.632812 229.964844 C 26.632812 231.238281 27.664062 232.269531 28.9375 232.269531 C 30.210938 232.269531 31.242188 231.238281 31.242188 229.964844 Z M 31.242188 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.902344 229.964844 C 30.902344 228.691406 29.871094 227.660156 28.597656 227.660156 C 27.324219 227.660156 26.292969 228.691406 26.292969 229.964844 C 26.292969 231.238281 27.324219 232.269531 28.597656 232.269531 C 29.871094 232.269531 30.902344 231.238281 30.902344 229.964844 Z M 30.902344 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.984375 229.964844 C 30.984375 228.691406 29.953125 227.660156 28.679688 227.660156 C 27.40625 227.660156 26.375 228.691406 26.375 229.964844 C 26.375 231.238281 27.40625 232.269531 28.679688 232.269531 C 29.953125 232.269531 30.984375 231.238281 30.984375 229.964844 Z M 30.984375 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.164062 229.964844 C 31.164062 228.691406 30.132812 227.660156 28.859375 227.660156 C 27.585938 227.660156 26.554688 228.691406 26.554688 229.964844 C 26.554688 231.238281 27.585938 232.269531 28.859375 232.269531 C 30.132812 232.269531 31.164062 231.238281 31.164062 229.964844 Z M 31.164062 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.878906 229.964844 C 30.878906 228.691406 29.847656 227.660156 28.574219 227.660156 C 27.300781 227.660156 26.269531 228.691406 26.269531 229.964844 C 26.269531 231.238281 27.300781 232.269531 28.574219 232.269531 C 29.847656 232.269531 30.878906 231.238281 30.878906 229.964844 Z M 30.878906 229.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.742188 225.121094 C 30.742188 223.847656 29.710938 222.816406 28.4375 222.816406 C 27.164062 222.816406 26.132812 223.847656 26.132812 225.121094 C 26.132812 226.394531 27.164062 227.425781 28.4375 227.425781 C 29.710938 227.425781 30.742188 226.394531 30.742188 225.121094 Z M 30.742188 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.976562 225.121094 C 26.976562 223.847656 25.945312 222.816406 24.671875 222.816406 C 23.398438 222.816406 22.367188 223.847656 22.367188 225.121094 C 22.367188 226.394531 23.398438 227.425781 24.671875 227.425781 C 25.945312 227.425781 26.976562 226.394531 26.976562 225.121094 Z M 26.976562 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.273438 225.121094 C 29.273438 223.847656 28.242188 222.816406 26.96875 222.816406 C 25.695312 222.816406 24.664062 223.847656 24.664062 225.121094 C 24.664062 226.394531 25.695312 227.425781 26.96875 227.425781 C 28.242188 227.425781 29.273438 226.394531 29.273438 225.121094 Z M 29.273438 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.195312 225.121094 C 27.195312 223.847656 26.164062 222.816406 24.890625 222.816406 C 23.617188 222.816406 22.585938 223.847656 22.585938 225.121094 C 22.585938 226.394531 23.617188 227.425781 24.890625 227.425781 C 26.164062 227.425781 27.195312 226.394531 27.195312 225.121094 Z M 27.195312 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.863281 225.121094 C 27.863281 223.847656 26.832031 222.816406 25.558594 222.816406 C 24.285156 222.816406 23.253906 223.847656 23.253906 225.121094 C 23.253906 226.394531 24.285156 227.425781 25.558594 227.425781 C 26.832031 227.425781 27.863281 226.394531 27.863281 225.121094 Z M 27.863281 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.816406 225.121094 C 28.816406 223.847656 27.785156 222.816406 26.511719 222.816406 C 25.238281 222.816406 24.207031 223.847656 24.207031 225.121094 C 24.207031 226.394531 25.238281 227.425781 26.511719 227.425781 C 27.785156 227.425781 28.816406 226.394531 28.816406 225.121094 Z M 28.816406 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.332031 225.121094 C 29.332031 223.847656 28.300781 222.816406 27.027344 222.816406 C 25.753906 222.816406 24.722656 223.847656 24.722656 225.121094 C 24.722656 226.394531 25.753906 227.425781 27.027344 227.425781 C 28.300781 227.425781 29.332031 226.394531 29.332031 225.121094 Z M 29.332031 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.613281 225.121094 C 27.613281 223.847656 26.582031 222.816406 25.308594 222.816406 C 24.035156 222.816406 23.003906 223.847656 23.003906 225.121094 C 23.003906 226.394531 24.035156 227.425781 25.308594 227.425781 C 26.582031 227.425781 27.613281 226.394531 27.613281 225.121094 Z M 27.613281 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.160156 225.121094 C 31.160156 223.847656 30.128906 222.816406 28.855469 222.816406 C 27.582031 222.816406 26.550781 223.847656 26.550781 225.121094 C 26.550781 226.394531 27.582031 227.425781 28.855469 227.425781 C 30.128906 227.425781 31.160156 226.394531 31.160156 225.121094 Z M 31.160156 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.148438 225.121094 C 29.148438 223.847656 28.117188 222.816406 26.84375 222.816406 C 25.570312 222.816406 24.539062 223.847656 24.539062 225.121094 C 24.539062 226.394531 25.570312 227.425781 26.84375 227.425781 C 28.117188 227.425781 29.148438 226.394531 29.148438 225.121094 Z M 29.148438 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.660156 225.121094 C 26.660156 223.847656 25.628906 222.816406 24.355469 222.816406 C 23.082031 222.816406 22.050781 223.847656 22.050781 225.121094 C 22.050781 226.394531 23.082031 227.425781 24.355469 227.425781 C 25.628906 227.425781 26.660156 226.394531 26.660156 225.121094 Z M 26.660156 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.101562 225.121094 C 29.101562 223.847656 28.070312 222.816406 26.796875 222.816406 C 25.523438 222.816406 24.492188 223.847656 24.492188 225.121094 C 24.492188 226.394531 25.523438 227.425781 26.796875 227.425781 C 28.070312 227.425781 29.101562 226.394531 29.101562 225.121094 Z M 29.101562 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.667969 225.121094 C 30.667969 223.847656 29.636719 222.816406 28.363281 222.816406 C 27.089844 222.816406 26.058594 223.847656 26.058594 225.121094 C 26.058594 226.394531 27.089844 227.425781 28.363281 227.425781 C 29.636719 227.425781 30.667969 226.394531 30.667969 225.121094 Z M 30.667969 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.054688 225.121094 C 28.054688 223.847656 27.023438 222.816406 25.75 222.816406 C 24.476562 222.816406 23.445312 223.847656 23.445312 225.121094 C 23.445312 226.394531 24.476562 227.425781 25.75 227.425781 C 27.023438 227.425781 28.054688 226.394531 28.054688 225.121094 Z M 28.054688 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.105469 225.121094 C 28.105469 223.847656 27.074219 222.816406 25.800781 222.816406 C 24.527344 222.816406 23.496094 223.847656 23.496094 225.121094 C 23.496094 226.394531 24.527344 227.425781 25.800781 227.425781 C 27.074219 227.425781 28.105469 226.394531 28.105469 225.121094 Z M 28.105469 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.332031 225.121094 C 31.332031 223.847656 30.300781 222.816406 29.027344 222.816406 C 27.753906 222.816406 26.722656 223.847656 26.722656 225.121094 C 26.722656 226.394531 27.753906 227.425781 29.027344 227.425781 C 30.300781 227.425781 31.332031 226.394531 31.332031 225.121094 Z M 31.332031 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.015625 225.121094 C 30.015625 223.847656 28.984375 222.816406 27.710938 222.816406 C 26.4375 222.816406 25.40625 223.847656 25.40625 225.121094 C 25.40625 226.394531 26.4375 227.425781 27.710938 227.425781 C 28.984375 227.425781 30.015625 226.394531 30.015625 225.121094 Z M 30.015625 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.941406 225.121094 C 27.941406 223.847656 26.910156 222.816406 25.636719 222.816406 C 24.363281 222.816406 23.332031 223.847656 23.332031 225.121094 C 23.332031 226.394531 24.363281 227.425781 25.636719 227.425781 C 26.910156 227.425781 27.941406 226.394531 27.941406 225.121094 Z M 27.941406 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.839844 225.121094 C 28.839844 223.847656 27.808594 222.816406 26.535156 222.816406 C 25.261719 222.816406 24.230469 223.847656 24.230469 225.121094 C 24.230469 226.394531 25.261719 227.425781 26.535156 227.425781 C 27.808594 227.425781 28.839844 226.394531 28.839844 225.121094 Z M 28.839844 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.773438 225.121094 C 29.773438 223.847656 28.742188 222.816406 27.46875 222.816406 C 26.195312 222.816406 25.164062 223.847656 25.164062 225.121094 C 25.164062 226.394531 26.195312 227.425781 27.46875 227.425781 C 28.742188 227.425781 29.773438 226.394531 29.773438 225.121094 Z M 29.773438 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.609375 225.121094 C 26.609375 223.847656 25.578125 222.816406 24.304688 222.816406 C 23.03125 222.816406 22 223.847656 22 225.121094 C 22 226.394531 23.03125 227.425781 24.304688 227.425781 C 25.578125 227.425781 26.609375 226.394531 26.609375 225.121094 Z M 26.609375 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.253906 225.121094 C 29.253906 223.847656 28.222656 222.816406 26.949219 222.816406 C 25.675781 222.816406 24.644531 223.847656 24.644531 225.121094 C 24.644531 226.394531 25.675781 227.425781 26.949219 227.425781 C 28.222656 227.425781 29.253906 226.394531 29.253906 225.121094 Z M 29.253906 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.503906 225.121094 C 28.503906 223.847656 27.472656 222.816406 26.199219 222.816406 C 24.925781 222.816406 23.894531 223.847656 23.894531 225.121094 C 23.894531 226.394531 24.925781 227.425781 26.199219 227.425781 C 27.472656 227.425781 28.503906 226.394531 28.503906 225.121094 Z M 28.503906 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.15625 225.121094 C 27.15625 223.847656 26.125 222.816406 24.851562 222.816406 C 23.578125 222.816406 22.546875 223.847656 22.546875 225.121094 C 22.546875 226.394531 23.578125 227.425781 24.851562 227.425781 C 26.125 227.425781 27.15625 226.394531 27.15625 225.121094 Z M 27.15625 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.898438 225.121094 C 30.898438 223.847656 29.867188 222.816406 28.59375 222.816406 C 27.320312 222.816406 26.289062 223.847656 26.289062 225.121094 C 26.289062 226.394531 27.320312 227.425781 28.59375 227.425781 C 29.867188 227.425781 30.898438 226.394531 30.898438 225.121094 Z M 30.898438 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.898438 225.121094 C 29.898438 223.847656 28.867188 222.816406 27.59375 222.816406 C 26.320312 222.816406 25.289062 223.847656 25.289062 225.121094 C 25.289062 226.394531 26.320312 227.425781 27.59375 227.425781 C 28.867188 227.425781 29.898438 226.394531 29.898438 225.121094 Z M 29.898438 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.820312 225.121094 C 26.820312 223.847656 25.789062 222.816406 24.515625 222.816406 C 23.242188 222.816406 22.210938 223.847656 22.210938 225.121094 C 22.210938 226.394531 23.242188 227.425781 24.515625 227.425781 C 25.789062 227.425781 26.820312 226.394531 26.820312 225.121094 Z M 26.820312 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.582031 225.121094 C 27.582031 223.847656 26.550781 222.816406 25.277344 222.816406 C 24.003906 222.816406 22.972656 223.847656 22.972656 225.121094 C 22.972656 226.394531 24.003906 227.425781 25.277344 227.425781 C 26.550781 227.425781 27.582031 226.394531 27.582031 225.121094 Z M 27.582031 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.191406 225.121094 C 29.191406 223.847656 28.160156 222.816406 26.886719 222.816406 C 25.613281 222.816406 24.582031 223.847656 24.582031 225.121094 C 24.582031 226.394531 25.613281 227.425781 26.886719 227.425781 C 28.160156 227.425781 29.191406 226.394531 29.191406 225.121094 Z M 29.191406 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.621094 225.121094 C 26.621094 223.847656 25.589844 222.816406 24.316406 222.816406 C 23.042969 222.816406 22.011719 223.847656 22.011719 225.121094 C 22.011719 226.394531 23.042969 227.425781 24.316406 227.425781 C 25.589844 227.425781 26.621094 226.394531 26.621094 225.121094 Z M 26.621094 225.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.382812 220.277344 C 30.382812 219.003906 29.351562 217.972656 28.078125 217.972656 C 26.804688 217.972656 25.773438 219.003906 25.773438 220.277344 C 25.773438 221.550781 26.804688 222.582031 28.078125 222.582031 C 29.351562 222.582031 30.382812 221.550781 30.382812 220.277344 Z M 30.382812 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.308594 220.277344 C 23.308594 219.003906 22.277344 217.972656 21.003906 217.972656 C 19.730469 217.972656 18.699219 219.003906 18.699219 220.277344 C 18.699219 221.550781 19.730469 222.582031 21.003906 222.582031 C 22.277344 222.582031 23.308594 221.550781 23.308594 220.277344 Z M 23.308594 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.628906 220.277344 C 27.628906 219.003906 26.597656 217.972656 25.324219 217.972656 C 24.050781 217.972656 23.019531 219.003906 23.019531 220.277344 C 23.019531 221.550781 24.050781 222.582031 25.324219 222.582031 C 26.597656 222.582031 27.628906 221.550781 27.628906 220.277344 Z M 27.628906 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.71875 220.277344 C 23.71875 219.003906 22.6875 217.972656 21.414062 217.972656 C 20.140625 217.972656 19.109375 219.003906 19.109375 220.277344 C 19.109375 221.550781 20.140625 222.582031 21.414062 222.582031 C 22.6875 222.582031 23.71875 221.550781 23.71875 220.277344 Z M 23.71875 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.976562 220.277344 C 24.976562 219.003906 23.945312 217.972656 22.671875 217.972656 C 21.398438 217.972656 20.367188 219.003906 20.367188 220.277344 C 20.367188 221.550781 21.398438 222.582031 22.671875 222.582031 C 23.945312 222.582031 24.976562 221.550781 24.976562 220.277344 Z M 24.976562 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.765625 220.277344 C 26.765625 219.003906 25.734375 217.972656 24.460938 217.972656 C 23.1875 217.972656 22.15625 219.003906 22.15625 220.277344 C 22.15625 221.550781 23.1875 222.582031 24.460938 222.582031 C 25.734375 222.582031 26.765625 221.550781 26.765625 220.277344 Z M 26.765625 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.734375 220.277344 C 27.734375 219.003906 26.703125 217.972656 25.429688 217.972656 C 24.15625 217.972656 23.125 219.003906 23.125 220.277344 C 23.125 221.550781 24.15625 222.582031 25.429688 222.582031 C 26.703125 222.582031 27.734375 221.550781 27.734375 220.277344 Z M 27.734375 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.507812 220.277344 C 24.507812 219.003906 23.476562 217.972656 22.203125 217.972656 C 20.929688 217.972656 19.898438 219.003906 19.898438 220.277344 C 19.898438 221.550781 20.929688 222.582031 22.203125 222.582031 C 23.476562 222.582031 24.507812 221.550781 24.507812 220.277344 Z M 24.507812 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.175781 220.277344 C 31.175781 219.003906 30.144531 217.972656 28.871094 217.972656 C 27.597656 217.972656 26.566406 219.003906 26.566406 220.277344 C 26.566406 221.550781 27.597656 222.582031 28.871094 222.582031 C 30.144531 222.582031 31.175781 221.550781 31.175781 220.277344 Z M 31.175781 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.394531 220.277344 C 27.394531 219.003906 26.363281 217.972656 25.089844 217.972656 C 23.816406 217.972656 22.785156 219.003906 22.785156 220.277344 C 22.785156 221.550781 23.816406 222.582031 25.089844 222.582031 C 26.363281 222.582031 27.394531 221.550781 27.394531 220.277344 Z M 27.394531 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.714844 220.277344 C 22.714844 219.003906 21.683594 217.972656 20.410156 217.972656 C 19.136719 217.972656 18.105469 219.003906 18.105469 220.277344 C 18.105469 221.550781 19.136719 222.582031 20.410156 222.582031 C 21.683594 222.582031 22.714844 221.550781 22.714844 220.277344 Z M 22.714844 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.304688 220.277344 C 27.304688 219.003906 26.273438 217.972656 25 217.972656 C 23.726562 217.972656 22.695312 219.003906 22.695312 220.277344 C 22.695312 221.550781 23.726562 222.582031 25 222.582031 C 26.273438 222.582031 27.304688 221.550781 27.304688 220.277344 Z M 27.304688 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.25 220.277344 C 30.25 219.003906 29.21875 217.972656 27.945312 217.972656 C 26.671875 217.972656 25.640625 219.003906 25.640625 220.277344 C 25.640625 221.550781 26.671875 222.582031 27.945312 222.582031 C 29.21875 222.582031 30.25 221.550781 30.25 220.277344 Z M 30.25 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.332031 220.277344 C 25.332031 219.003906 24.300781 217.972656 23.027344 217.972656 C 21.753906 217.972656 20.722656 219.003906 20.722656 220.277344 C 20.722656 221.550781 21.753906 222.582031 23.027344 222.582031 C 24.300781 222.582031 25.332031 221.550781 25.332031 220.277344 Z M 25.332031 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.433594 220.277344 C 25.433594 219.003906 24.402344 217.972656 23.128906 217.972656 C 21.855469 217.972656 20.824219 219.003906 20.824219 220.277344 C 20.824219 221.550781 21.855469 222.582031 23.128906 222.582031 C 24.402344 222.582031 25.433594 221.550781 25.433594 220.277344 Z M 25.433594 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.492188 220.277344 C 31.492188 219.003906 30.460938 217.972656 29.1875 217.972656 C 27.914062 217.972656 26.882812 219.003906 26.882812 220.277344 C 26.882812 221.550781 27.914062 222.582031 29.1875 222.582031 C 30.460938 222.582031 31.492188 221.550781 31.492188 220.277344 Z M 31.492188 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.019531 220.277344 C 29.019531 219.003906 27.988281 217.972656 26.714844 217.972656 C 25.441406 217.972656 24.410156 219.003906 24.410156 220.277344 C 24.410156 221.550781 25.441406 222.582031 26.714844 222.582031 C 27.988281 222.582031 29.019531 221.550781 29.019531 220.277344 Z M 29.019531 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.121094 220.277344 C 25.121094 219.003906 24.089844 217.972656 22.816406 217.972656 C 21.542969 217.972656 20.511719 219.003906 20.511719 220.277344 C 20.511719 221.550781 21.542969 222.582031 22.816406 222.582031 C 24.089844 222.582031 25.121094 221.550781 25.121094 220.277344 Z M 25.121094 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.816406 220.277344 C 26.816406 219.003906 25.785156 217.972656 24.511719 217.972656 C 23.238281 217.972656 22.207031 219.003906 22.207031 220.277344 C 22.207031 221.550781 23.238281 222.582031 24.511719 222.582031 C 25.785156 222.582031 26.816406 221.550781 26.816406 220.277344 Z M 26.816406 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.570312 220.277344 C 28.570312 219.003906 27.539062 217.972656 26.265625 217.972656 C 24.992188 217.972656 23.960938 219.003906 23.960938 220.277344 C 23.960938 221.550781 24.992188 222.582031 26.265625 222.582031 C 27.539062 222.582031 28.570312 221.550781 28.570312 220.277344 Z M 28.570312 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.621094 220.277344 C 22.621094 219.003906 21.589844 217.972656 20.316406 217.972656 C 19.042969 217.972656 18.011719 219.003906 18.011719 220.277344 C 18.011719 221.550781 19.042969 222.582031 20.316406 222.582031 C 21.589844 222.582031 22.621094 221.550781 22.621094 220.277344 Z M 22.621094 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.589844 220.277344 C 27.589844 219.003906 26.558594 217.972656 25.285156 217.972656 C 24.011719 217.972656 22.980469 219.003906 22.980469 220.277344 C 22.980469 221.550781 24.011719 222.582031 25.285156 222.582031 C 26.558594 222.582031 27.589844 221.550781 27.589844 220.277344 Z M 27.589844 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.179688 220.277344 C 26.179688 219.003906 25.148438 217.972656 23.875 217.972656 C 22.601562 217.972656 21.570312 219.003906 21.570312 220.277344 C 21.570312 221.550781 22.601562 222.582031 23.875 222.582031 C 25.148438 222.582031 26.179688 221.550781 26.179688 220.277344 Z M 26.179688 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.644531 220.277344 C 23.644531 219.003906 22.613281 217.972656 21.339844 217.972656 C 20.066406 217.972656 19.035156 219.003906 19.035156 220.277344 C 19.035156 221.550781 20.066406 222.582031 21.339844 222.582031 C 22.613281 222.582031 23.644531 221.550781 23.644531 220.277344 Z M 23.644531 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.679688 220.277344 C 30.679688 219.003906 29.648438 217.972656 28.375 217.972656 C 27.101562 217.972656 26.070312 219.003906 26.070312 220.277344 C 26.070312 221.550781 27.101562 222.582031 28.375 222.582031 C 29.648438 222.582031 30.679688 221.550781 30.679688 220.277344 Z M 30.679688 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.800781 220.277344 C 28.800781 219.003906 27.769531 217.972656 26.496094 217.972656 C 25.222656 217.972656 24.191406 219.003906 24.191406 220.277344 C 24.191406 221.550781 25.222656 222.582031 26.496094 222.582031 C 27.769531 222.582031 28.800781 221.550781 28.800781 220.277344 Z M 28.800781 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.019531 220.277344 C 23.019531 219.003906 21.988281 217.972656 20.714844 217.972656 C 19.441406 217.972656 18.410156 219.003906 18.410156 220.277344 C 18.410156 221.550781 19.441406 222.582031 20.714844 222.582031 C 21.988281 222.582031 23.019531 221.550781 23.019531 220.277344 Z M 23.019531 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.445312 220.277344 C 24.445312 219.003906 23.414062 217.972656 22.140625 217.972656 C 20.867188 217.972656 19.835938 219.003906 19.835938 220.277344 C 19.835938 221.550781 20.867188 222.582031 22.140625 222.582031 C 23.414062 222.582031 24.445312 221.550781 24.445312 220.277344 Z M 24.445312 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.476562 220.277344 C 27.476562 219.003906 26.445312 217.972656 25.171875 217.972656 C 23.898438 217.972656 22.867188 219.003906 22.867188 220.277344 C 22.867188 221.550781 23.898438 222.582031 25.171875 222.582031 C 26.445312 222.582031 27.476562 221.550781 27.476562 220.277344 Z M 27.476562 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.644531 220.277344 C 22.644531 219.003906 21.613281 217.972656 20.339844 217.972656 C 19.066406 217.972656 18.035156 219.003906 18.035156 220.277344 C 18.035156 221.550781 19.066406 222.582031 20.339844 222.582031 C 21.613281 222.582031 22.644531 221.550781 22.644531 220.277344 Z M 22.644531 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.269531 215.433594 C 30.269531 214.160156 29.238281 213.128906 27.964844 213.128906 C 26.691406 213.128906 25.660156 214.160156 25.660156 215.433594 C 25.660156 216.707031 26.691406 217.738281 27.964844 217.738281 C 29.238281 217.738281 30.269531 216.707031 30.269531 215.433594 Z M 30.269531 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.953125 215.433594 C 19.953125 214.160156 18.921875 213.128906 17.648438 213.128906 C 16.375 213.128906 15.34375 214.160156 15.34375 215.433594 C 15.34375 216.707031 16.375 217.738281 17.648438 217.738281 C 18.921875 217.738281 19.953125 216.707031 19.953125 215.433594 Z M 19.953125 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.253906 215.433594 C 26.253906 214.160156 25.222656 213.128906 23.949219 213.128906 C 22.675781 213.128906 21.644531 214.160156 21.644531 215.433594 C 21.644531 216.707031 22.675781 217.738281 23.949219 217.738281 C 25.222656 217.738281 26.253906 216.707031 26.253906 215.433594 Z M 26.253906 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.550781 215.433594 C 20.550781 214.160156 19.519531 213.128906 18.246094 213.128906 C 16.972656 213.128906 15.941406 214.160156 15.941406 215.433594 C 15.941406 216.707031 16.972656 217.738281 18.246094 217.738281 C 19.519531 217.738281 20.550781 216.707031 20.550781 215.433594 Z M 20.550781 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.382812 215.433594 C 22.382812 214.160156 21.351562 213.128906 20.078125 213.128906 C 18.804688 213.128906 17.773438 214.160156 17.773438 215.433594 C 17.773438 216.707031 18.804688 217.738281 20.078125 217.738281 C 21.351562 217.738281 22.382812 216.707031 22.382812 215.433594 Z M 22.382812 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.992188 215.433594 C 24.992188 214.160156 23.960938 213.128906 22.6875 213.128906 C 21.414062 213.128906 20.382812 214.160156 20.382812 215.433594 C 20.382812 216.707031 21.414062 217.738281 22.6875 217.738281 C 23.960938 217.738281 24.992188 216.707031 24.992188 215.433594 Z M 24.992188 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.40625 215.433594 C 26.40625 214.160156 25.375 213.128906 24.101562 213.128906 C 22.828125 213.128906 21.796875 214.160156 21.796875 215.433594 C 21.796875 216.707031 22.828125 217.738281 24.101562 217.738281 C 25.375 217.738281 26.40625 216.707031 26.40625 215.433594 Z M 26.40625 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 21.703125 215.433594 C 21.703125 214.160156 20.671875 213.128906 19.398438 213.128906 C 18.125 213.128906 17.09375 214.160156 17.09375 215.433594 C 17.09375 216.707031 18.125 217.738281 19.398438 217.738281 C 20.671875 217.738281 21.703125 216.707031 21.703125 215.433594 Z M 21.703125 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.421875 215.433594 C 31.421875 214.160156 30.390625 213.128906 29.117188 213.128906 C 27.84375 213.128906 26.8125 214.160156 26.8125 215.433594 C 26.8125 216.707031 27.84375 217.738281 29.117188 217.738281 C 30.390625 217.738281 31.421875 216.707031 31.421875 215.433594 Z M 31.421875 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.90625 215.433594 C 25.90625 214.160156 24.875 213.128906 23.601562 213.128906 C 22.328125 213.128906 21.296875 214.160156 21.296875 215.433594 C 21.296875 216.707031 22.328125 217.738281 23.601562 217.738281 C 24.875 217.738281 25.90625 216.707031 25.90625 215.433594 Z M 25.90625 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.085938 215.433594 C 19.085938 214.160156 18.054688 213.128906 16.78125 213.128906 C 15.507812 213.128906 14.476562 214.160156 14.476562 215.433594 C 14.476562 216.707031 15.507812 217.738281 16.78125 217.738281 C 18.054688 217.738281 19.085938 216.707031 19.085938 215.433594 Z M 19.085938 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.78125 215.433594 C 25.78125 214.160156 24.75 213.128906 23.476562 213.128906 C 22.203125 213.128906 21.171875 214.160156 21.171875 215.433594 C 21.171875 216.707031 22.203125 217.738281 23.476562 217.738281 C 24.75 217.738281 25.78125 216.707031 25.78125 215.433594 Z M 25.78125 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.074219 215.433594 C 30.074219 214.160156 29.042969 213.128906 27.769531 213.128906 C 26.496094 213.128906 25.464844 214.160156 25.464844 215.433594 C 25.464844 216.707031 26.496094 217.738281 27.769531 217.738281 C 29.042969 217.738281 30.074219 216.707031 30.074219 215.433594 Z M 30.074219 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.90625 215.433594 C 22.90625 214.160156 21.875 213.128906 20.601562 213.128906 C 19.328125 213.128906 18.296875 214.160156 18.296875 215.433594 C 18.296875 216.707031 19.328125 217.738281 20.601562 217.738281 C 21.875 217.738281 22.90625 216.707031 22.90625 215.433594 Z M 22.90625 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.050781 215.433594 C 23.050781 214.160156 22.019531 213.128906 20.746094 213.128906 C 19.472656 213.128906 18.441406 214.160156 18.441406 215.433594 C 18.441406 216.707031 19.472656 217.738281 20.746094 217.738281 C 22.019531 217.738281 23.050781 216.707031 23.050781 215.433594 Z M 23.050781 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.886719 215.433594 C 31.886719 214.160156 30.855469 213.128906 29.582031 213.128906 C 28.308594 213.128906 27.277344 214.160156 27.277344 215.433594 C 27.277344 216.707031 28.308594 217.738281 29.582031 217.738281 C 30.855469 217.738281 31.886719 216.707031 31.886719 215.433594 Z M 31.886719 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.28125 215.433594 C 28.28125 214.160156 27.25 213.128906 25.976562 213.128906 C 24.703125 213.128906 23.671875 214.160156 23.671875 215.433594 C 23.671875 216.707031 24.703125 217.738281 25.976562 217.738281 C 27.25 217.738281 28.28125 216.707031 28.28125 215.433594 Z M 28.28125 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.59375 215.433594 C 22.59375 214.160156 21.5625 213.128906 20.289062 213.128906 C 19.015625 213.128906 17.984375 214.160156 17.984375 215.433594 C 17.984375 216.707031 19.015625 217.738281 20.289062 217.738281 C 21.5625 217.738281 22.59375 216.707031 22.59375 215.433594 Z M 22.59375 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.066406 215.433594 C 25.066406 214.160156 24.035156 213.128906 22.761719 213.128906 C 21.488281 213.128906 20.457031 214.160156 20.457031 215.433594 C 20.457031 216.707031 21.488281 217.738281 22.761719 217.738281 C 24.035156 217.738281 25.066406 216.707031 25.066406 215.433594 Z M 25.066406 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.625 215.433594 C 27.625 214.160156 26.59375 213.128906 25.320312 213.128906 C 24.046875 213.128906 23.015625 214.160156 23.015625 215.433594 C 23.015625 216.707031 24.046875 217.738281 25.320312 217.738281 C 26.59375 217.738281 27.625 216.707031 27.625 215.433594 Z M 27.625 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 18.949219 215.433594 C 18.949219 214.160156 17.917969 213.128906 16.644531 213.128906 C 15.371094 213.128906 14.339844 214.160156 14.339844 215.433594 C 14.339844 216.707031 15.371094 217.738281 16.644531 217.738281 C 17.917969 217.738281 18.949219 216.707031 18.949219 215.433594 Z M 18.949219 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.195312 215.433594 C 26.195312 214.160156 25.164062 213.128906 23.890625 213.128906 C 22.617188 213.128906 21.585938 214.160156 21.585938 215.433594 C 21.585938 216.707031 22.617188 217.738281 23.890625 217.738281 C 25.164062 217.738281 26.195312 216.707031 26.195312 215.433594 Z M 26.195312 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.140625 215.433594 C 24.140625 214.160156 23.109375 213.128906 21.835938 213.128906 C 20.5625 213.128906 19.53125 214.160156 19.53125 215.433594 C 19.53125 216.707031 20.5625 217.738281 21.835938 217.738281 C 23.109375 217.738281 24.140625 216.707031 24.140625 215.433594 Z M 24.140625 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.445312 215.433594 C 20.445312 214.160156 19.414062 213.128906 18.140625 213.128906 C 16.867188 213.128906 15.835938 214.160156 15.835938 215.433594 C 15.835938 216.707031 16.867188 217.738281 18.140625 217.738281 C 19.414062 217.738281 20.445312 216.707031 20.445312 215.433594 Z M 20.445312 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.699219 215.433594 C 30.699219 214.160156 29.667969 213.128906 28.394531 213.128906 C 27.121094 213.128906 26.089844 214.160156 26.089844 215.433594 C 26.089844 216.707031 27.121094 217.738281 28.394531 217.738281 C 29.667969 217.738281 30.699219 216.707031 30.699219 215.433594 Z M 30.699219 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.960938 215.433594 C 27.960938 214.160156 26.929688 213.128906 25.65625 213.128906 C 24.382812 213.128906 23.351562 214.160156 23.351562 215.433594 C 23.351562 216.707031 24.382812 217.738281 25.65625 217.738281 C 26.929688 217.738281 27.960938 216.707031 27.960938 215.433594 Z M 27.960938 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.53125 215.433594 C 19.53125 214.160156 18.5 213.128906 17.226562 213.128906 C 15.953125 213.128906 14.921875 214.160156 14.921875 215.433594 C 14.921875 216.707031 15.953125 217.738281 17.226562 217.738281 C 18.5 217.738281 19.53125 216.707031 19.53125 215.433594 Z M 19.53125 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 21.609375 215.433594 C 21.609375 214.160156 20.578125 213.128906 19.304688 213.128906 C 18.03125 213.128906 17 214.160156 17 215.433594 C 17 216.707031 18.03125 217.738281 19.304688 217.738281 C 20.578125 217.738281 21.609375 216.707031 21.609375 215.433594 Z M 21.609375 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.027344 215.433594 C 26.027344 214.160156 24.996094 213.128906 23.722656 213.128906 C 22.449219 213.128906 21.417969 214.160156 21.417969 215.433594 C 21.417969 216.707031 22.449219 217.738281 23.722656 217.738281 C 24.996094 217.738281 26.027344 216.707031 26.027344 215.433594 Z M 26.027344 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 18.984375 215.433594 C 18.984375 214.160156 17.953125 213.128906 16.679688 213.128906 C 15.40625 213.128906 14.375 214.160156 14.375 215.433594 C 14.375 216.707031 15.40625 217.738281 16.679688 217.738281 C 17.953125 217.738281 18.984375 216.707031 18.984375 215.433594 Z M 18.984375 215.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.394531 210.589844 C 30.394531 209.316406 29.363281 208.285156 28.089844 208.285156 C 26.816406 208.285156 25.785156 209.316406 25.785156 210.589844 C 25.785156 211.863281 26.816406 212.894531 28.089844 212.894531 C 29.363281 212.894531 30.394531 211.863281 30.394531 210.589844 Z M 30.394531 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.941406 210.589844 C 16.941406 209.316406 15.910156 208.285156 14.636719 208.285156 C 13.363281 208.285156 12.332031 209.316406 12.332031 210.589844 C 12.332031 211.863281 13.363281 212.894531 14.636719 212.894531 C 15.910156 212.894531 16.941406 211.863281 16.941406 210.589844 Z M 16.941406 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.160156 210.589844 C 25.160156 209.316406 24.128906 208.285156 22.855469 208.285156 C 21.582031 208.285156 20.550781 209.316406 20.550781 210.589844 C 20.550781 211.863281 21.582031 212.894531 22.855469 212.894531 C 24.128906 212.894531 25.160156 211.863281 25.160156 210.589844 Z M 25.160156 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 17.722656 210.589844 C 17.722656 209.316406 16.691406 208.285156 15.417969 208.285156 C 14.144531 208.285156 13.113281 209.316406 13.113281 210.589844 C 13.113281 211.863281 14.144531 212.894531 15.417969 212.894531 C 16.691406 212.894531 17.722656 211.863281 17.722656 210.589844 Z M 17.722656 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.109375 210.589844 C 20.109375 209.316406 19.078125 208.285156 17.804688 208.285156 C 16.53125 208.285156 15.5 209.316406 15.5 210.589844 C 15.5 211.863281 16.53125 212.894531 17.804688 212.894531 C 19.078125 212.894531 20.109375 211.863281 20.109375 210.589844 Z M 20.109375 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.515625 210.589844 C 23.515625 209.316406 22.484375 208.285156 21.210938 208.285156 C 19.9375 208.285156 18.90625 209.316406 18.90625 210.589844 C 18.90625 211.863281 19.9375 212.894531 21.210938 212.894531 C 22.484375 212.894531 23.515625 211.863281 23.515625 210.589844 Z M 23.515625 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.359375 210.589844 C 25.359375 209.316406 24.328125 208.285156 23.054688 208.285156 C 21.78125 208.285156 20.75 209.316406 20.75 210.589844 C 20.75 211.863281 21.78125 212.894531 23.054688 212.894531 C 24.328125 212.894531 25.359375 211.863281 25.359375 210.589844 Z M 25.359375 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.226562 210.589844 C 19.226562 209.316406 18.195312 208.285156 16.921875 208.285156 C 15.648438 208.285156 14.617188 209.316406 14.617188 210.589844 C 14.617188 211.863281 15.648438 212.894531 16.921875 212.894531 C 18.195312 212.894531 19.226562 211.863281 19.226562 210.589844 Z M 19.226562 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.898438 210.589844 C 31.898438 209.316406 30.867188 208.285156 29.59375 208.285156 C 28.320312 208.285156 27.289062 209.316406 27.289062 210.589844 C 27.289062 211.863281 28.320312 212.894531 29.59375 212.894531 C 30.867188 212.894531 31.898438 211.863281 31.898438 210.589844 Z M 31.898438 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.707031 210.589844 C 24.707031 209.316406 23.675781 208.285156 22.402344 208.285156 C 21.128906 208.285156 20.097656 209.316406 20.097656 210.589844 C 20.097656 211.863281 21.128906 212.894531 22.402344 212.894531 C 23.675781 212.894531 24.707031 211.863281 24.707031 210.589844 Z M 24.707031 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.8125 210.589844 C 15.8125 209.316406 14.78125 208.285156 13.507812 208.285156 C 12.234375 208.285156 11.203125 209.316406 11.203125 210.589844 C 11.203125 211.863281 12.234375 212.894531 13.507812 212.894531 C 14.78125 212.894531 15.8125 211.863281 15.8125 210.589844 Z M 15.8125 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.542969 210.589844 C 24.542969 209.316406 23.511719 208.285156 22.238281 208.285156 C 20.964844 208.285156 19.933594 209.316406 19.933594 210.589844 C 19.933594 211.863281 20.964844 212.894531 22.238281 212.894531 C 23.511719 212.894531 24.542969 211.863281 24.542969 210.589844 Z M 24.542969 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.140625 210.589844 C 30.140625 209.316406 29.109375 208.285156 27.835938 208.285156 C 26.5625 208.285156 25.53125 209.316406 25.53125 210.589844 C 25.53125 211.863281 26.5625 212.894531 27.835938 212.894531 C 29.109375 212.894531 30.140625 211.863281 30.140625 210.589844 Z M 30.140625 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.792969 210.589844 C 20.792969 209.316406 19.761719 208.285156 18.488281 208.285156 C 17.214844 208.285156 16.183594 209.316406 16.183594 210.589844 C 16.183594 211.863281 17.214844 212.894531 18.488281 212.894531 C 19.761719 212.894531 20.792969 211.863281 20.792969 210.589844 Z M 20.792969 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.984375 210.589844 C 20.984375 209.316406 19.953125 208.285156 18.679688 208.285156 C 17.40625 208.285156 16.375 209.316406 16.375 210.589844 C 16.375 211.863281 17.40625 212.894531 18.679688 212.894531 C 19.953125 212.894531 20.984375 211.863281 20.984375 210.589844 Z M 20.984375 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.503906 210.589844 C 32.503906 209.316406 31.472656 208.285156 30.199219 208.285156 C 28.925781 208.285156 27.894531 209.316406 27.894531 210.589844 C 27.894531 211.863281 28.925781 212.894531 30.199219 212.894531 C 31.472656 212.894531 32.503906 211.863281 32.503906 210.589844 Z M 32.503906 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.800781 210.589844 C 27.800781 209.316406 26.769531 208.285156 25.496094 208.285156 C 24.222656 208.285156 23.191406 209.316406 23.191406 210.589844 C 23.191406 211.863281 24.222656 212.894531 25.496094 212.894531 C 26.769531 212.894531 27.800781 211.863281 27.800781 210.589844 Z M 27.800781 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.386719 210.589844 C 20.386719 209.316406 19.355469 208.285156 18.082031 208.285156 C 16.808594 208.285156 15.777344 209.316406 15.777344 210.589844 C 15.777344 211.863281 16.808594 212.894531 18.082031 212.894531 C 19.355469 212.894531 20.386719 211.863281 20.386719 210.589844 Z M 20.386719 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.609375 210.589844 C 23.609375 209.316406 22.578125 208.285156 21.304688 208.285156 C 20.03125 208.285156 19 209.316406 19 210.589844 C 19 211.863281 20.03125 212.894531 21.304688 212.894531 C 22.578125 212.894531 23.609375 211.863281 23.609375 210.589844 Z M 23.609375 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.945312 210.589844 C 26.945312 209.316406 25.914062 208.285156 24.640625 208.285156 C 23.367188 208.285156 22.335938 209.316406 22.335938 210.589844 C 22.335938 211.863281 23.367188 212.894531 24.640625 212.894531 C 25.914062 212.894531 26.945312 211.863281 26.945312 210.589844 Z M 26.945312 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.632812 210.589844 C 15.632812 209.316406 14.601562 208.285156 13.328125 208.285156 C 12.054688 208.285156 11.023438 209.316406 11.023438 210.589844 C 11.023438 211.863281 12.054688 212.894531 13.328125 212.894531 C 14.601562 212.894531 15.632812 211.863281 15.632812 210.589844 Z M 15.632812 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.082031 210.589844 C 25.082031 209.316406 24.050781 208.285156 22.777344 208.285156 C 21.503906 208.285156 20.472656 209.316406 20.472656 210.589844 C 20.472656 211.863281 21.503906 212.894531 22.777344 212.894531 C 24.050781 212.894531 25.082031 211.863281 25.082031 210.589844 Z M 25.082031 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.402344 210.589844 C 22.402344 209.316406 21.371094 208.285156 20.097656 208.285156 C 18.824219 208.285156 17.792969 209.316406 17.792969 210.589844 C 17.792969 211.863281 18.824219 212.894531 20.097656 212.894531 C 21.371094 212.894531 22.402344 211.863281 22.402344 210.589844 Z M 22.402344 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 17.585938 210.589844 C 17.585938 209.316406 16.554688 208.285156 15.28125 208.285156 C 14.007812 208.285156 12.976562 209.316406 12.976562 210.589844 C 12.976562 211.863281 14.007812 212.894531 15.28125 212.894531 C 16.554688 212.894531 17.585938 211.863281 17.585938 210.589844 Z M 17.585938 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.957031 210.589844 C 30.957031 209.316406 29.925781 208.285156 28.652344 208.285156 C 27.378906 208.285156 26.347656 209.316406 26.347656 210.589844 C 26.347656 211.863281 27.378906 212.894531 28.652344 212.894531 C 29.925781 212.894531 30.957031 211.863281 30.957031 210.589844 Z M 30.957031 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.386719 210.589844 C 27.386719 209.316406 26.355469 208.285156 25.082031 208.285156 C 23.808594 208.285156 22.777344 209.316406 22.777344 210.589844 C 22.777344 211.863281 23.808594 212.894531 25.082031 212.894531 C 26.355469 212.894531 27.386719 211.863281 27.386719 210.589844 Z M 27.386719 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.394531 210.589844 C 16.394531 209.316406 15.363281 208.285156 14.089844 208.285156 C 12.816406 208.285156 11.785156 209.316406 11.785156 210.589844 C 11.785156 211.863281 12.816406 212.894531 14.089844 212.894531 C 15.363281 212.894531 16.394531 211.863281 16.394531 210.589844 Z M 16.394531 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.105469 210.589844 C 19.105469 209.316406 18.074219 208.285156 16.800781 208.285156 C 15.527344 208.285156 14.496094 209.316406 14.496094 210.589844 C 14.496094 211.863281 15.527344 212.894531 16.800781 212.894531 C 18.074219 212.894531 19.105469 211.863281 19.105469 210.589844 Z M 19.105469 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.863281 210.589844 C 24.863281 209.316406 23.832031 208.285156 22.558594 208.285156 C 21.285156 208.285156 20.253906 209.316406 20.253906 210.589844 C 20.253906 211.863281 21.285156 212.894531 22.558594 212.894531 C 23.832031 212.894531 24.863281 211.863281 24.863281 210.589844 Z M 24.863281 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.679688 210.589844 C 15.679688 209.316406 14.648438 208.285156 13.375 208.285156 C 12.101562 208.285156 11.070312 209.316406 11.070312 210.589844 C 11.070312 211.863281 12.101562 212.894531 13.375 212.894531 C 14.648438 212.894531 15.679688 211.863281 15.679688 210.589844 Z M 15.679688 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.765625 205.746094 C 30.765625 204.472656 29.734375 203.441406 28.460938 203.441406 C 27.1875 203.441406 26.15625 204.472656 26.15625 205.746094 C 26.15625 207.019531 27.1875 208.050781 28.460938 208.050781 C 29.734375 208.050781 30.765625 207.019531 30.765625 205.746094 Z M 30.765625 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 14.304688 205.746094 C 14.304688 204.472656 13.273438 203.441406 12 203.441406 C 10.726562 203.441406 9.695312 204.472656 9.695312 205.746094 C 9.695312 207.019531 10.726562 208.050781 12 208.050781 C 13.273438 208.050781 14.304688 207.019531 14.304688 205.746094 Z M 14.304688 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.359375 205.746094 C 24.359375 204.472656 23.328125 203.441406 22.054688 203.441406 C 20.78125 203.441406 19.75 204.472656 19.75 205.746094 C 19.75 207.019531 20.78125 208.050781 22.054688 208.050781 C 23.328125 208.050781 24.359375 207.019531 24.359375 205.746094 Z M 24.359375 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.261719 205.746094 C 15.261719 204.472656 14.230469 203.441406 12.957031 203.441406 C 11.683594 203.441406 10.652344 204.472656 10.652344 205.746094 C 10.652344 207.019531 11.683594 208.050781 12.957031 208.050781 C 14.230469 208.050781 15.261719 207.019531 15.261719 205.746094 Z M 15.261719 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 18.183594 205.746094 C 18.183594 204.472656 17.152344 203.441406 15.878906 203.441406 C 14.605469 203.441406 13.574219 204.472656 13.574219 205.746094 C 13.574219 207.019531 14.605469 208.050781 15.878906 208.050781 C 17.152344 208.050781 18.183594 207.019531 18.183594 205.746094 Z M 18.183594 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.347656 205.746094 C 22.347656 204.472656 21.316406 203.441406 20.042969 203.441406 C 18.769531 203.441406 17.738281 204.472656 17.738281 205.746094 C 17.738281 207.019531 18.769531 208.050781 20.042969 208.050781 C 21.316406 208.050781 22.347656 207.019531 22.347656 205.746094 Z M 22.347656 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.601562 205.746094 C 24.601562 204.472656 23.570312 203.441406 22.296875 203.441406 C 21.023438 203.441406 19.992188 204.472656 19.992188 205.746094 C 19.992188 207.019531 21.023438 208.050781 22.296875 208.050781 C 23.570312 208.050781 24.601562 207.019531 24.601562 205.746094 Z M 24.601562 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 17.101562 205.746094 C 17.101562 204.472656 16.070312 203.441406 14.796875 203.441406 C 13.523438 203.441406 12.492188 204.472656 12.492188 205.746094 C 12.492188 207.019531 13.523438 208.050781 14.796875 208.050781 C 16.070312 208.050781 17.101562 207.019531 17.101562 205.746094 Z M 17.101562 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.601562 205.746094 C 32.601562 204.472656 31.570312 203.441406 30.296875 203.441406 C 29.023438 203.441406 27.992188 204.472656 27.992188 205.746094 C 27.992188 207.019531 29.023438 208.050781 30.296875 208.050781 C 31.570312 208.050781 32.601562 207.019531 32.601562 205.746094 Z M 32.601562 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.804688 205.746094 C 23.804688 204.472656 22.773438 203.441406 21.5 203.441406 C 20.226562 203.441406 19.195312 204.472656 19.195312 205.746094 C 19.195312 207.019531 20.226562 208.050781 21.5 208.050781 C 22.773438 208.050781 23.804688 207.019531 23.804688 205.746094 Z M 23.804688 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 12.925781 205.746094 C 12.925781 204.472656 11.894531 203.441406 10.621094 203.441406 C 9.347656 203.441406 8.316406 204.472656 8.316406 205.746094 C 8.316406 207.019531 9.347656 208.050781 10.621094 208.050781 C 11.894531 208.050781 12.925781 207.019531 12.925781 205.746094 Z M 12.925781 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.605469 205.746094 C 23.605469 204.472656 22.574219 203.441406 21.300781 203.441406 C 20.027344 203.441406 18.996094 204.472656 18.996094 205.746094 C 18.996094 207.019531 20.027344 208.050781 21.300781 208.050781 C 22.574219 208.050781 23.605469 207.019531 23.605469 205.746094 Z M 23.605469 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.453125 205.746094 C 30.453125 204.472656 29.421875 203.441406 28.148438 203.441406 C 26.875 203.441406 25.84375 204.472656 25.84375 205.746094 C 25.84375 207.019531 26.875 208.050781 28.148438 208.050781 C 29.421875 208.050781 30.453125 207.019531 30.453125 205.746094 Z M 30.453125 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.015625 205.746094 C 19.015625 204.472656 17.984375 203.441406 16.710938 203.441406 C 15.4375 203.441406 14.40625 204.472656 14.40625 205.746094 C 14.40625 207.019531 15.4375 208.050781 16.710938 208.050781 C 17.984375 208.050781 19.015625 207.019531 19.015625 205.746094 Z M 19.015625 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.25 205.746094 C 19.25 204.472656 18.21875 203.441406 16.945312 203.441406 C 15.671875 203.441406 14.640625 204.472656 14.640625 205.746094 C 14.640625 207.019531 15.671875 208.050781 16.945312 208.050781 C 18.21875 208.050781 19.25 207.019531 19.25 205.746094 Z M 19.25 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.34375 205.746094 C 33.34375 204.472656 32.3125 203.441406 31.039062 203.441406 C 29.765625 203.441406 28.734375 204.472656 28.734375 205.746094 C 28.734375 207.019531 29.765625 208.050781 31.039062 208.050781 C 32.3125 208.050781 33.34375 207.019531 33.34375 205.746094 Z M 33.34375 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.589844 205.746094 C 27.589844 204.472656 26.558594 203.441406 25.285156 203.441406 C 24.011719 203.441406 22.980469 204.472656 22.980469 205.746094 C 22.980469 207.019531 24.011719 208.050781 25.285156 208.050781 C 26.558594 208.050781 27.589844 207.019531 27.589844 205.746094 Z M 27.589844 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 18.519531 205.746094 C 18.519531 204.472656 17.488281 203.441406 16.214844 203.441406 C 14.941406 203.441406 13.910156 204.472656 13.910156 205.746094 C 13.910156 207.019531 14.941406 208.050781 16.214844 208.050781 C 17.488281 208.050781 18.519531 207.019531 18.519531 205.746094 Z M 18.519531 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.460938 205.746094 C 22.460938 204.472656 21.429688 203.441406 20.15625 203.441406 C 18.882812 203.441406 17.851562 204.472656 17.851562 205.746094 C 17.851562 207.019531 18.882812 208.050781 20.15625 208.050781 C 21.429688 208.050781 22.460938 207.019531 22.460938 205.746094 Z M 22.460938 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.542969 205.746094 C 26.542969 204.472656 25.511719 203.441406 24.238281 203.441406 C 22.964844 203.441406 21.933594 204.472656 21.933594 205.746094 C 21.933594 207.019531 22.964844 208.050781 24.238281 208.050781 C 25.511719 208.050781 26.542969 207.019531 26.542969 205.746094 Z M 26.542969 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 12.703125 205.746094 C 12.703125 204.472656 11.671875 203.441406 10.398438 203.441406 C 9.125 203.441406 8.09375 204.472656 8.09375 205.746094 C 8.09375 207.019531 9.125 208.050781 10.398438 208.050781 C 11.671875 208.050781 12.703125 207.019531 12.703125 205.746094 Z M 12.703125 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.261719 205.746094 C 24.261719 204.472656 23.230469 203.441406 21.957031 203.441406 C 20.683594 203.441406 19.652344 204.472656 19.652344 205.746094 C 19.652344 207.019531 20.683594 208.050781 21.957031 208.050781 C 23.230469 208.050781 24.261719 207.019531 24.261719 205.746094 Z M 24.261719 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.984375 205.746094 C 20.984375 204.472656 19.953125 203.441406 18.679688 203.441406 C 17.40625 203.441406 16.375 204.472656 16.375 205.746094 C 16.375 207.019531 17.40625 208.050781 18.679688 208.050781 C 19.953125 208.050781 20.984375 207.019531 20.984375 205.746094 Z M 20.984375 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.09375 205.746094 C 15.09375 204.472656 14.0625 203.441406 12.789062 203.441406 C 11.515625 203.441406 10.484375 204.472656 10.484375 205.746094 C 10.484375 207.019531 11.515625 208.050781 12.789062 208.050781 C 14.0625 208.050781 15.09375 207.019531 15.09375 205.746094 Z M 15.09375 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.449219 205.746094 C 31.449219 204.472656 30.417969 203.441406 29.144531 203.441406 C 27.871094 203.441406 26.839844 204.472656 26.839844 205.746094 C 26.839844 207.019531 27.871094 208.050781 29.144531 208.050781 C 30.417969 208.050781 31.449219 207.019531 31.449219 205.746094 Z M 31.449219 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.082031 205.746094 C 27.082031 204.472656 26.050781 203.441406 24.777344 203.441406 C 23.503906 203.441406 22.472656 204.472656 22.472656 205.746094 C 22.472656 207.019531 23.503906 208.050781 24.777344 208.050781 C 26.050781 208.050781 27.082031 207.019531 27.082031 205.746094 Z M 27.082031 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 13.636719 205.746094 C 13.636719 204.472656 12.605469 203.441406 11.332031 203.441406 C 10.058594 203.441406 9.027344 204.472656 9.027344 205.746094 C 9.027344 207.019531 10.058594 208.050781 11.332031 208.050781 C 12.605469 208.050781 13.636719 207.019531 13.636719 205.746094 Z M 13.636719 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.953125 205.746094 C 16.953125 204.472656 15.921875 203.441406 14.648438 203.441406 C 13.375 203.441406 12.34375 204.472656 12.34375 205.746094 C 12.34375 207.019531 13.375 208.050781 14.648438 208.050781 C 15.921875 208.050781 16.953125 207.019531 16.953125 205.746094 Z M 16.953125 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.996094 205.746094 C 23.996094 204.472656 22.964844 203.441406 21.691406 203.441406 C 20.417969 203.441406 19.386719 204.472656 19.386719 205.746094 C 19.386719 207.019531 20.417969 208.050781 21.691406 208.050781 C 22.964844 208.050781 23.996094 207.019531 23.996094 205.746094 Z M 23.996094 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 12.765625 205.746094 C 12.765625 204.472656 11.734375 203.441406 10.460938 203.441406 C 9.1875 203.441406 8.15625 204.472656 8.15625 205.746094 C 8.15625 207.019531 9.1875 208.050781 10.460938 208.050781 C 11.734375 208.050781 12.765625 207.019531 12.765625 205.746094 Z M 12.765625 205.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.367188 200.902344 C 31.367188 199.628906 30.335938 198.597656 29.0625 198.597656 C 27.789062 198.597656 26.757812 199.628906 26.757812 200.902344 C 26.757812 202.175781 27.789062 203.207031 29.0625 203.207031 C 30.335938 203.207031 31.367188 202.175781 31.367188 200.902344 Z M 31.367188 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 12.070312 200.902344 C 12.070312 199.628906 11.039062 198.597656 9.765625 198.597656 C 8.492188 198.597656 7.460938 199.628906 7.460938 200.902344 C 7.460938 202.175781 8.492188 203.207031 9.765625 203.207031 C 11.039062 203.207031 12.070312 202.175781 12.070312 200.902344 Z M 12.070312 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.855469 200.902344 C 23.855469 199.628906 22.824219 198.597656 21.550781 198.597656 C 20.277344 198.597656 19.246094 199.628906 19.246094 200.902344 C 19.246094 202.175781 20.277344 203.207031 21.550781 203.207031 C 22.824219 203.207031 23.855469 202.175781 23.855469 200.902344 Z M 23.855469 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 13.195312 200.902344 C 13.195312 199.628906 12.164062 198.597656 10.890625 198.597656 C 9.617188 198.597656 8.585938 199.628906 8.585938 200.902344 C 8.585938 202.175781 9.617188 203.207031 10.890625 203.207031 C 12.164062 203.207031 13.195312 202.175781 13.195312 200.902344 Z M 13.195312 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.617188 200.902344 C 16.617188 199.628906 15.585938 198.597656 14.3125 198.597656 C 13.039062 198.597656 12.007812 199.628906 12.007812 200.902344 C 12.007812 202.175781 13.039062 203.207031 14.3125 203.207031 C 15.585938 203.207031 16.617188 202.175781 16.617188 200.902344 Z M 16.617188 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 21.5 200.902344 C 21.5 199.628906 20.46875 198.597656 19.195312 198.597656 C 17.921875 198.597656 16.890625 199.628906 16.890625 200.902344 C 16.890625 202.175781 17.921875 203.207031 19.195312 203.207031 C 20.46875 203.207031 21.5 202.175781 21.5 200.902344 Z M 21.5 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.144531 200.902344 C 24.144531 199.628906 23.113281 198.597656 21.839844 198.597656 C 20.566406 198.597656 19.535156 199.628906 19.535156 200.902344 C 19.535156 202.175781 20.566406 203.207031 21.839844 203.207031 C 23.113281 203.207031 24.144531 202.175781 24.144531 200.902344 Z M 24.144531 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.347656 200.902344 C 15.347656 199.628906 14.316406 198.597656 13.042969 198.597656 C 11.769531 198.597656 10.738281 199.628906 10.738281 200.902344 C 10.738281 202.175781 11.769531 203.207031 13.042969 203.207031 C 14.316406 203.207031 15.347656 202.175781 15.347656 200.902344 Z M 15.347656 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.523438 200.902344 C 33.523438 199.628906 32.492188 198.597656 31.21875 198.597656 C 29.945312 198.597656 28.914062 199.628906 28.914062 200.902344 C 28.914062 202.175781 29.945312 203.207031 31.21875 203.207031 C 32.492188 203.207031 33.523438 202.175781 33.523438 200.902344 Z M 33.523438 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.210938 200.902344 C 23.210938 199.628906 22.179688 198.597656 20.90625 198.597656 C 19.632812 198.597656 18.601562 199.628906 18.601562 200.902344 C 18.601562 202.175781 19.632812 203.207031 20.90625 203.207031 C 22.179688 203.207031 23.210938 202.175781 23.210938 200.902344 Z M 23.210938 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 10.453125 200.902344 C 10.453125 199.628906 9.421875 198.597656 8.148438 198.597656 C 6.875 198.597656 5.84375 199.628906 5.84375 200.902344 C 5.84375 202.175781 6.875 203.207031 8.148438 203.207031 C 9.421875 203.207031 10.453125 202.175781 10.453125 200.902344 Z M 10.453125 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.972656 200.902344 C 22.972656 199.628906 21.941406 198.597656 20.667969 198.597656 C 19.394531 198.597656 18.363281 199.628906 18.363281 200.902344 C 18.363281 202.175781 19.394531 203.207031 20.667969 203.207031 C 21.941406 203.207031 22.972656 202.175781 22.972656 200.902344 Z M 22.972656 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.003906 200.902344 C 31.003906 199.628906 29.972656 198.597656 28.699219 198.597656 C 27.425781 198.597656 26.394531 199.628906 26.394531 200.902344 C 26.394531 202.175781 27.425781 203.207031 28.699219 203.207031 C 29.972656 203.207031 31.003906 202.175781 31.003906 200.902344 Z M 31.003906 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 17.59375 200.902344 C 17.59375 199.628906 16.5625 198.597656 15.289062 198.597656 C 14.015625 198.597656 12.984375 199.628906 12.984375 200.902344 C 12.984375 202.175781 14.015625 203.207031 15.289062 203.207031 C 16.5625 203.207031 17.59375 202.175781 17.59375 200.902344 Z M 17.59375 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 17.871094 200.902344 C 17.871094 199.628906 16.839844 198.597656 15.566406 198.597656 C 14.292969 198.597656 13.261719 199.628906 13.261719 200.902344 C 13.261719 202.175781 14.292969 203.207031 15.566406 203.207031 C 16.839844 203.207031 17.871094 202.175781 17.871094 200.902344 Z M 17.871094 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.394531 200.902344 C 34.394531 199.628906 33.363281 198.597656 32.089844 198.597656 C 30.816406 198.597656 29.785156 199.628906 29.785156 200.902344 C 29.785156 202.175781 30.816406 203.207031 32.089844 203.207031 C 33.363281 203.207031 34.394531 202.175781 34.394531 200.902344 Z M 34.394531 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.648438 200.902344 C 27.648438 199.628906 26.617188 198.597656 25.34375 198.597656 C 24.070312 198.597656 23.039062 199.628906 23.039062 200.902344 C 23.039062 202.175781 24.070312 203.207031 25.34375 203.207031 C 26.617188 203.207031 27.648438 202.175781 27.648438 200.902344 Z M 27.648438 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 17.015625 200.902344 C 17.015625 199.628906 15.984375 198.597656 14.710938 198.597656 C 13.4375 198.597656 12.40625 199.628906 12.40625 200.902344 C 12.40625 202.175781 13.4375 203.207031 14.710938 203.207031 C 15.984375 203.207031 17.015625 202.175781 17.015625 200.902344 Z M 17.015625 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 21.632812 200.902344 C 21.632812 199.628906 20.601562 198.597656 19.328125 198.597656 C 18.054688 198.597656 17.023438 199.628906 17.023438 200.902344 C 17.023438 202.175781 18.054688 203.207031 19.328125 203.207031 C 20.601562 203.207031 21.632812 202.175781 21.632812 200.902344 Z M 21.632812 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.421875 200.902344 C 26.421875 199.628906 25.390625 198.597656 24.117188 198.597656 C 22.84375 198.597656 21.8125 199.628906 21.8125 200.902344 C 21.8125 202.175781 22.84375 203.207031 24.117188 203.207031 C 25.390625 203.207031 26.421875 202.175781 26.421875 200.902344 Z M 26.421875 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 10.195312 200.902344 C 10.195312 199.628906 9.164062 198.597656 7.890625 198.597656 C 6.617188 198.597656 5.585938 199.628906 5.585938 200.902344 C 5.585938 202.175781 6.617188 203.207031 7.890625 203.207031 C 9.164062 203.207031 10.195312 202.175781 10.195312 200.902344 Z M 10.195312 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.746094 200.902344 C 23.746094 199.628906 22.714844 198.597656 21.441406 198.597656 C 20.167969 198.597656 19.136719 199.628906 19.136719 200.902344 C 19.136719 202.175781 20.167969 203.207031 21.441406 203.207031 C 22.714844 203.207031 23.746094 202.175781 23.746094 200.902344 Z M 23.746094 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.902344 200.902344 C 19.902344 199.628906 18.871094 198.597656 17.597656 198.597656 C 16.324219 198.597656 15.292969 199.628906 15.292969 200.902344 C 15.292969 202.175781 16.324219 203.207031 17.597656 203.207031 C 18.871094 203.207031 19.902344 202.175781 19.902344 200.902344 Z M 19.902344 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 12.992188 200.902344 C 12.992188 199.628906 11.960938 198.597656 10.6875 198.597656 C 9.414062 198.597656 8.382812 199.628906 8.382812 200.902344 C 8.382812 202.175781 9.414062 203.207031 10.6875 203.207031 C 11.960938 203.207031 12.992188 202.175781 12.992188 200.902344 Z M 12.992188 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.171875 200.902344 C 32.171875 199.628906 31.140625 198.597656 29.867188 198.597656 C 28.59375 198.597656 27.5625 199.628906 27.5625 200.902344 C 27.5625 202.175781 28.59375 203.207031 29.867188 203.207031 C 31.140625 203.207031 32.171875 202.175781 32.171875 200.902344 Z M 32.171875 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.054688 200.902344 C 27.054688 199.628906 26.023438 198.597656 24.75 198.597656 C 23.476562 198.597656 22.445312 199.628906 22.445312 200.902344 C 22.445312 202.175781 23.476562 203.207031 24.75 203.207031 C 26.023438 203.207031 27.054688 202.175781 27.054688 200.902344 Z M 27.054688 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 11.285156 200.902344 C 11.285156 199.628906 10.253906 198.597656 8.980469 198.597656 C 7.707031 198.597656 6.675781 199.628906 6.675781 200.902344 C 6.675781 202.175781 7.707031 203.207031 8.980469 203.207031 C 10.253906 203.207031 11.285156 202.175781 11.285156 200.902344 Z M 11.285156 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.175781 200.902344 C 15.175781 199.628906 14.144531 198.597656 12.871094 198.597656 C 11.597656 198.597656 10.566406 199.628906 10.566406 200.902344 C 10.566406 202.175781 11.597656 203.207031 12.871094 203.207031 C 14.144531 203.207031 15.175781 202.175781 15.175781 200.902344 Z M 15.175781 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.433594 200.902344 C 23.433594 199.628906 22.402344 198.597656 21.128906 198.597656 C 19.855469 198.597656 18.824219 199.628906 18.824219 200.902344 C 18.824219 202.175781 19.855469 203.207031 21.128906 203.207031 C 22.402344 203.207031 23.433594 202.175781 23.433594 200.902344 Z M 23.433594 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 10.261719 200.902344 C 10.261719 199.628906 9.230469 198.597656 7.957031 198.597656 C 6.683594 198.597656 5.652344 199.628906 5.652344 200.902344 C 5.652344 202.175781 6.683594 203.207031 7.957031 203.207031 C 9.230469 203.207031 10.261719 202.175781 10.261719 200.902344 Z M 10.261719 200.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.203125 196.058594 C 32.203125 194.785156 31.171875 193.753906 29.898438 193.753906 C 28.625 193.753906 27.59375 194.785156 27.59375 196.058594 C 27.59375 197.332031 28.625 198.363281 29.898438 198.363281 C 31.171875 198.363281 32.203125 197.332031 32.203125 196.058594 Z M 32.203125 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 10.261719 196.058594 C 10.261719 194.785156 9.230469 193.753906 7.957031 193.753906 C 6.683594 193.753906 5.652344 194.785156 5.652344 196.058594 C 5.652344 197.332031 6.683594 198.363281 7.957031 198.363281 C 9.230469 198.363281 10.261719 197.332031 10.261719 196.058594 Z M 10.261719 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.664062 196.058594 C 23.664062 194.785156 22.632812 193.753906 21.359375 193.753906 C 20.085938 193.753906 19.054688 194.785156 19.054688 196.058594 C 19.054688 197.332031 20.085938 198.363281 21.359375 198.363281 C 22.632812 198.363281 23.664062 197.332031 23.664062 196.058594 Z M 23.664062 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 11.539062 196.058594 C 11.539062 194.785156 10.507812 193.753906 9.234375 193.753906 C 7.960938 193.753906 6.929688 194.785156 6.929688 196.058594 C 6.929688 197.332031 7.960938 198.363281 9.234375 198.363281 C 10.507812 198.363281 11.539062 197.332031 11.539062 196.058594 Z M 11.539062 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.429688 196.058594 C 15.429688 194.785156 14.398438 193.753906 13.125 193.753906 C 11.851562 193.753906 10.820312 194.785156 10.820312 196.058594 C 10.820312 197.332031 11.851562 198.363281 13.125 198.363281 C 14.398438 198.363281 15.429688 197.332031 15.429688 196.058594 Z M 15.429688 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.984375 196.058594 C 20.984375 194.785156 19.953125 193.753906 18.679688 193.753906 C 17.40625 193.753906 16.375 194.785156 16.375 196.058594 C 16.375 197.332031 17.40625 198.363281 18.679688 198.363281 C 19.953125 198.363281 20.984375 197.332031 20.984375 196.058594 Z M 20.984375 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.988281 196.058594 C 23.988281 194.785156 22.957031 193.753906 21.683594 193.753906 C 20.410156 193.753906 19.378906 194.785156 19.378906 196.058594 C 19.378906 197.332031 20.410156 198.363281 21.683594 198.363281 C 22.957031 198.363281 23.988281 197.332031 23.988281 196.058594 Z M 23.988281 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 13.988281 196.058594 C 13.988281 194.785156 12.957031 193.753906 11.683594 193.753906 C 10.410156 193.753906 9.378906 194.785156 9.378906 196.058594 C 9.378906 197.332031 10.410156 198.363281 11.683594 198.363281 C 12.957031 198.363281 13.988281 197.332031 13.988281 196.058594 Z M 13.988281 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.65625 196.058594 C 34.65625 194.785156 33.625 193.753906 32.351562 193.753906 C 31.078125 193.753906 30.046875 194.785156 30.046875 196.058594 C 30.046875 197.332031 31.078125 198.363281 32.351562 198.363281 C 33.625 198.363281 34.65625 197.332031 34.65625 196.058594 Z M 34.65625 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.925781 196.058594 C 22.925781 194.785156 21.894531 193.753906 20.621094 193.753906 C 19.347656 193.753906 18.316406 194.785156 18.316406 196.058594 C 18.316406 197.332031 19.347656 198.363281 20.621094 198.363281 C 21.894531 198.363281 22.925781 197.332031 22.925781 196.058594 Z M 22.925781 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 8.417969 196.058594 C 8.417969 194.785156 7.386719 193.753906 6.113281 193.753906 C 4.839844 193.753906 3.808594 194.785156 3.808594 196.058594 C 3.808594 197.332031 4.839844 198.363281 6.113281 198.363281 C 7.386719 198.363281 8.417969 197.332031 8.417969 196.058594 Z M 8.417969 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.660156 196.058594 C 22.660156 194.785156 21.628906 193.753906 20.355469 193.753906 C 19.082031 193.753906 18.050781 194.785156 18.050781 196.058594 C 18.050781 197.332031 19.082031 198.363281 20.355469 198.363281 C 21.628906 198.363281 22.660156 197.332031 22.660156 196.058594 Z M 22.660156 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.789062 196.058594 C 31.789062 194.785156 30.757812 193.753906 29.484375 193.753906 C 28.210938 193.753906 27.179688 194.785156 27.179688 196.058594 C 27.179688 197.332031 28.210938 198.363281 29.484375 198.363281 C 30.757812 198.363281 31.789062 197.332031 31.789062 196.058594 Z M 31.789062 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.539062 196.058594 C 16.539062 194.785156 15.507812 193.753906 14.234375 193.753906 C 12.960938 193.753906 11.929688 194.785156 11.929688 196.058594 C 11.929688 197.332031 12.960938 198.363281 14.234375 198.363281 C 15.507812 198.363281 16.539062 197.332031 16.539062 196.058594 Z M 16.539062 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.855469 196.058594 C 16.855469 194.785156 15.824219 193.753906 14.550781 193.753906 C 13.277344 193.753906 12.246094 194.785156 12.246094 196.058594 C 12.246094 197.332031 13.277344 198.363281 14.550781 198.363281 C 15.824219 198.363281 16.855469 197.332031 16.855469 196.058594 Z M 16.855469 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.644531 196.058594 C 35.644531 194.785156 34.613281 193.753906 33.339844 193.753906 C 32.066406 193.753906 31.035156 194.785156 31.035156 196.058594 C 31.035156 197.332031 32.066406 198.363281 33.339844 198.363281 C 34.613281 198.363281 35.644531 197.332031 35.644531 196.058594 Z M 35.644531 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.972656 196.058594 C 27.972656 194.785156 26.941406 193.753906 25.667969 193.753906 C 24.394531 193.753906 23.363281 194.785156 23.363281 196.058594 C 23.363281 197.332031 24.394531 198.363281 25.667969 198.363281 C 26.941406 198.363281 27.972656 197.332031 27.972656 196.058594 Z M 27.972656 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.882812 196.058594 C 15.882812 194.785156 14.851562 193.753906 13.578125 193.753906 C 12.304688 193.753906 11.273438 194.785156 11.273438 196.058594 C 11.273438 197.332031 12.304688 198.363281 13.578125 198.363281 C 14.851562 198.363281 15.882812 197.332031 15.882812 196.058594 Z M 15.882812 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 21.136719 196.058594 C 21.136719 194.785156 20.105469 193.753906 18.832031 193.753906 C 17.558594 193.753906 16.527344 194.785156 16.527344 196.058594 C 16.527344 197.332031 17.558594 198.363281 18.832031 198.363281 C 20.105469 198.363281 21.136719 197.332031 21.136719 196.058594 Z M 21.136719 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.578125 196.058594 C 26.578125 194.785156 25.546875 193.753906 24.273438 193.753906 C 23 193.753906 21.96875 194.785156 21.96875 196.058594 C 21.96875 197.332031 23 198.363281 24.273438 198.363281 C 25.546875 198.363281 26.578125 197.332031 26.578125 196.058594 Z M 26.578125 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 8.125 196.058594 C 8.125 194.785156 7.09375 193.753906 5.820312 193.753906 C 4.546875 193.753906 3.515625 194.785156 3.515625 196.058594 C 3.515625 197.332031 4.546875 198.363281 5.820312 198.363281 C 7.09375 198.363281 8.125 197.332031 8.125 196.058594 Z M 8.125 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.535156 196.058594 C 23.535156 194.785156 22.503906 193.753906 21.230469 193.753906 C 19.957031 193.753906 18.925781 194.785156 18.925781 196.058594 C 18.925781 197.332031 19.957031 198.363281 21.230469 198.363281 C 22.503906 198.363281 23.535156 197.332031 23.535156 196.058594 Z M 23.535156 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.167969 196.058594 C 19.167969 194.785156 18.136719 193.753906 16.863281 193.753906 C 15.589844 193.753906 14.558594 194.785156 14.558594 196.058594 C 14.558594 197.332031 15.589844 198.363281 16.863281 198.363281 C 18.136719 198.363281 19.167969 197.332031 19.167969 196.058594 Z M 19.167969 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 11.308594 196.058594 C 11.308594 194.785156 10.277344 193.753906 9.003906 193.753906 C 7.730469 193.753906 6.699219 194.785156 6.699219 196.058594 C 6.699219 197.332031 7.730469 198.363281 9.003906 198.363281 C 10.277344 198.363281 11.308594 197.332031 11.308594 196.058594 Z M 11.308594 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.117188 196.058594 C 33.117188 194.785156 32.085938 193.753906 30.8125 193.753906 C 29.539062 193.753906 28.507812 194.785156 28.507812 196.058594 C 28.507812 197.332031 29.539062 198.363281 30.8125 198.363281 C 32.085938 198.363281 33.117188 197.332031 33.117188 196.058594 Z M 33.117188 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.296875 196.058594 C 27.296875 194.785156 26.265625 193.753906 24.992188 193.753906 C 23.71875 193.753906 22.6875 194.785156 22.6875 196.058594 C 22.6875 197.332031 23.71875 198.363281 24.992188 198.363281 C 26.265625 198.363281 27.296875 197.332031 27.296875 196.058594 Z M 27.296875 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 9.367188 196.058594 C 9.367188 194.785156 8.335938 193.753906 7.0625 193.753906 C 5.789062 193.753906 4.757812 194.785156 4.757812 196.058594 C 4.757812 197.332031 5.789062 198.363281 7.0625 198.363281 C 8.335938 198.363281 9.367188 197.332031 9.367188 196.058594 Z M 9.367188 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 13.789062 196.058594 C 13.789062 194.785156 12.757812 193.753906 11.484375 193.753906 C 10.210938 193.753906 9.179688 194.785156 9.179688 196.058594 C 9.179688 197.332031 10.210938 198.363281 11.484375 198.363281 C 12.757812 198.363281 13.789062 197.332031 13.789062 196.058594 Z M 13.789062 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.183594 196.058594 C 23.183594 194.785156 22.152344 193.753906 20.878906 193.753906 C 19.605469 193.753906 18.574219 194.785156 18.574219 196.058594 C 18.574219 197.332031 19.605469 198.363281 20.878906 198.363281 C 22.152344 198.363281 23.183594 197.332031 23.183594 196.058594 Z M 23.183594 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 8.207031 196.058594 C 8.207031 194.785156 7.175781 193.753906 5.902344 193.753906 C 4.628906 193.753906 3.597656 194.785156 3.597656 196.058594 C 3.597656 197.332031 4.628906 198.363281 5.902344 198.363281 C 7.175781 198.363281 8.207031 197.332031 8.207031 196.058594 Z M 8.207031 196.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.261719 191.214844 C 33.261719 189.941406 32.230469 188.910156 30.957031 188.910156 C 29.683594 188.910156 28.652344 189.941406 28.652344 191.214844 C 28.652344 192.488281 29.683594 193.519531 30.957031 193.519531 C 32.230469 193.519531 33.261719 192.488281 33.261719 191.214844 Z M 33.261719 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 8.894531 191.214844 C 8.894531 189.941406 7.863281 188.910156 6.589844 188.910156 C 5.316406 188.910156 4.285156 189.941406 4.285156 191.214844 C 4.285156 192.488281 5.316406 193.519531 6.589844 193.519531 C 7.863281 193.519531 8.894531 192.488281 8.894531 191.214844 Z M 8.894531 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.777344 191.214844 C 23.777344 189.941406 22.746094 188.910156 21.472656 188.910156 C 20.199219 188.910156 19.167969 189.941406 19.167969 191.214844 C 19.167969 192.488281 20.199219 193.519531 21.472656 193.519531 C 22.746094 193.519531 23.777344 192.488281 23.777344 191.214844 Z M 23.777344 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 10.3125 191.214844 C 10.3125 189.941406 9.28125 188.910156 8.007812 188.910156 C 6.734375 188.910156 5.703125 189.941406 5.703125 191.214844 C 5.703125 192.488281 6.734375 193.519531 8.007812 193.519531 C 9.28125 193.519531 10.3125 192.488281 10.3125 191.214844 Z M 10.3125 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 14.632812 191.214844 C 14.632812 189.941406 13.601562 188.910156 12.328125 188.910156 C 11.054688 188.910156 10.023438 189.941406 10.023438 191.214844 C 10.023438 192.488281 11.054688 193.519531 12.328125 193.519531 C 13.601562 193.519531 14.632812 192.488281 14.632812 191.214844 Z M 14.632812 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.800781 191.214844 C 20.800781 189.941406 19.769531 188.910156 18.496094 188.910156 C 17.222656 188.910156 16.191406 189.941406 16.191406 191.214844 C 16.191406 192.488281 17.222656 193.519531 18.496094 193.519531 C 19.769531 193.519531 20.800781 192.488281 20.800781 191.214844 Z M 20.800781 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.140625 191.214844 C 24.140625 189.941406 23.109375 188.910156 21.835938 188.910156 C 20.5625 188.910156 19.53125 189.941406 19.53125 191.214844 C 19.53125 192.488281 20.5625 193.519531 21.835938 193.519531 C 23.109375 193.519531 24.140625 192.488281 24.140625 191.214844 Z M 24.140625 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 13.03125 191.214844 C 13.03125 189.941406 12 188.910156 10.726562 188.910156 C 9.453125 188.910156 8.421875 189.941406 8.421875 191.214844 C 8.421875 192.488281 9.453125 193.519531 10.726562 193.519531 C 12 193.519531 13.03125 192.488281 13.03125 191.214844 Z M 13.03125 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.984375 191.214844 C 35.984375 189.941406 34.953125 188.910156 33.679688 188.910156 C 32.40625 188.910156 31.375 189.941406 31.375 191.214844 C 31.375 192.488281 32.40625 193.519531 33.679688 193.519531 C 34.953125 193.519531 35.984375 192.488281 35.984375 191.214844 Z M 35.984375 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.960938 191.214844 C 22.960938 189.941406 21.929688 188.910156 20.65625 188.910156 C 19.382812 188.910156 18.351562 189.941406 18.351562 191.214844 C 18.351562 192.488281 19.382812 193.519531 20.65625 193.519531 C 21.929688 193.519531 22.960938 192.488281 22.960938 191.214844 Z M 22.960938 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 6.847656 191.214844 C 6.847656 189.941406 5.816406 188.910156 4.542969 188.910156 C 3.269531 188.910156 2.238281 189.941406 2.238281 191.214844 C 2.238281 192.488281 3.269531 193.519531 4.542969 193.519531 C 5.816406 193.519531 6.847656 192.488281 6.847656 191.214844 Z M 6.847656 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.660156 191.214844 C 22.660156 189.941406 21.628906 188.910156 20.355469 188.910156 C 19.082031 188.910156 18.050781 189.941406 18.050781 191.214844 C 18.050781 192.488281 19.082031 193.519531 20.355469 193.519531 C 21.628906 193.519531 22.660156 192.488281 22.660156 191.214844 Z M 22.660156 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.800781 191.214844 C 32.800781 189.941406 31.769531 188.910156 30.496094 188.910156 C 29.222656 188.910156 28.191406 189.941406 28.191406 191.214844 C 28.191406 192.488281 29.222656 193.519531 30.496094 193.519531 C 31.769531 193.519531 32.800781 192.488281 32.800781 191.214844 Z M 32.800781 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.867188 191.214844 C 15.867188 189.941406 14.835938 188.910156 13.5625 188.910156 C 12.289062 188.910156 11.257812 189.941406 11.257812 191.214844 C 11.257812 192.488281 12.289062 193.519531 13.5625 193.519531 C 14.835938 193.519531 15.867188 192.488281 15.867188 191.214844 Z M 15.867188 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.214844 191.214844 C 16.214844 189.941406 15.183594 188.910156 13.910156 188.910156 C 12.636719 188.910156 11.605469 189.941406 11.605469 191.214844 C 11.605469 192.488281 12.636719 193.519531 13.910156 193.519531 C 15.183594 193.519531 16.214844 192.488281 16.214844 191.214844 Z M 16.214844 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.082031 191.214844 C 37.082031 189.941406 36.050781 188.910156 34.777344 188.910156 C 33.503906 188.910156 32.472656 189.941406 32.472656 191.214844 C 32.472656 192.488281 33.503906 193.519531 34.777344 193.519531 C 36.050781 193.519531 37.082031 192.488281 37.082031 191.214844 Z M 37.082031 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.566406 191.214844 C 28.566406 189.941406 27.535156 188.910156 26.261719 188.910156 C 24.988281 188.910156 23.957031 189.941406 23.957031 191.214844 C 23.957031 192.488281 24.988281 193.519531 26.261719 193.519531 C 27.535156 193.519531 28.566406 192.488281 28.566406 191.214844 Z M 28.566406 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.132812 191.214844 C 15.132812 189.941406 14.101562 188.910156 12.828125 188.910156 C 11.554688 188.910156 10.523438 189.941406 10.523438 191.214844 C 10.523438 192.488281 11.554688 193.519531 12.828125 193.519531 C 14.101562 193.519531 15.132812 192.488281 15.132812 191.214844 Z M 15.132812 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.96875 191.214844 C 20.96875 189.941406 19.9375 188.910156 18.664062 188.910156 C 17.390625 188.910156 16.359375 189.941406 16.359375 191.214844 C 16.359375 192.488281 17.390625 193.519531 18.664062 193.519531 C 19.9375 193.519531 20.96875 192.488281 20.96875 191.214844 Z M 20.96875 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.015625 191.214844 C 27.015625 189.941406 25.984375 188.910156 24.710938 188.910156 C 23.4375 188.910156 22.40625 189.941406 22.40625 191.214844 C 22.40625 192.488281 23.4375 193.519531 24.710938 193.519531 C 25.984375 193.519531 27.015625 192.488281 27.015625 191.214844 Z M 27.015625 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 6.523438 191.214844 C 6.523438 189.941406 5.492188 188.910156 4.21875 188.910156 C 2.945312 188.910156 1.914062 189.941406 1.914062 191.214844 C 1.914062 192.488281 2.945312 193.519531 4.21875 193.519531 C 5.492188 193.519531 6.523438 192.488281 6.523438 191.214844 Z M 6.523438 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.636719 191.214844 C 23.636719 189.941406 22.605469 188.910156 21.332031 188.910156 C 20.058594 188.910156 19.027344 189.941406 19.027344 191.214844 C 19.027344 192.488281 20.058594 193.519531 21.332031 193.519531 C 22.605469 193.519531 23.636719 192.488281 23.636719 191.214844 Z M 23.636719 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 18.785156 191.214844 C 18.785156 189.941406 17.753906 188.910156 16.480469 188.910156 C 15.207031 188.910156 14.175781 189.941406 14.175781 191.214844 C 14.175781 192.488281 15.207031 193.519531 16.480469 193.519531 C 17.753906 193.519531 18.785156 192.488281 18.785156 191.214844 Z M 18.785156 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 10.058594 191.214844 C 10.058594 189.941406 9.027344 188.910156 7.753906 188.910156 C 6.480469 188.910156 5.449219 189.941406 5.449219 191.214844 C 5.449219 192.488281 6.480469 193.519531 7.753906 193.519531 C 9.027344 193.519531 10.058594 192.488281 10.058594 191.214844 Z M 10.058594 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.277344 191.214844 C 34.277344 189.941406 33.246094 188.910156 31.972656 188.910156 C 30.699219 188.910156 29.667969 189.941406 29.667969 191.214844 C 29.667969 192.488281 30.699219 193.519531 31.972656 193.519531 C 33.246094 193.519531 34.277344 192.488281 34.277344 191.214844 Z M 34.277344 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.8125 191.214844 C 27.8125 189.941406 26.78125 188.910156 25.507812 188.910156 C 24.234375 188.910156 23.203125 189.941406 23.203125 191.214844 C 23.203125 192.488281 24.234375 193.519531 25.507812 193.519531 C 26.78125 193.519531 27.8125 192.488281 27.8125 191.214844 Z M 27.8125 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 7.902344 191.214844 C 7.902344 189.941406 6.871094 188.910156 5.597656 188.910156 C 4.324219 188.910156 3.292969 189.941406 3.292969 191.214844 C 3.292969 192.488281 4.324219 193.519531 5.597656 193.519531 C 6.871094 193.519531 7.902344 192.488281 7.902344 191.214844 Z M 7.902344 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 12.8125 191.214844 C 12.8125 189.941406 11.78125 188.910156 10.507812 188.910156 C 9.234375 188.910156 8.203125 189.941406 8.203125 191.214844 C 8.203125 192.488281 9.234375 193.519531 10.507812 193.519531 C 11.78125 193.519531 12.8125 192.488281 12.8125 191.214844 Z M 12.8125 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.242188 191.214844 C 23.242188 189.941406 22.210938 188.910156 20.9375 188.910156 C 19.664062 188.910156 18.632812 189.941406 18.632812 191.214844 C 18.632812 192.488281 19.664062 193.519531 20.9375 193.519531 C 22.210938 193.519531 23.242188 192.488281 23.242188 191.214844 Z M 23.242188 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 6.609375 191.214844 C 6.609375 189.941406 5.578125 188.910156 4.304688 188.910156 C 3.03125 188.910156 2 189.941406 2 191.214844 C 2 192.488281 3.03125 193.519531 4.304688 193.519531 C 5.578125 193.519531 6.609375 192.488281 6.609375 191.214844 Z M 6.609375 191.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.53125 186.371094 C 34.53125 185.097656 33.5 184.066406 32.226562 184.066406 C 30.953125 184.066406 29.921875 185.097656 29.921875 186.371094 C 29.921875 187.644531 30.953125 188.675781 32.226562 188.675781 C 33.5 188.675781 34.53125 187.644531 34.53125 186.371094 Z M 34.53125 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 7.980469 186.371094 C 7.980469 185.097656 6.949219 184.066406 5.675781 184.066406 C 4.402344 184.066406 3.371094 185.097656 3.371094 186.371094 C 3.371094 187.644531 4.402344 188.675781 5.675781 188.675781 C 6.949219 188.675781 7.980469 187.644531 7.980469 186.371094 Z M 7.980469 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.199219 186.371094 C 24.199219 185.097656 23.167969 184.066406 21.894531 184.066406 C 20.621094 184.066406 19.589844 185.097656 19.589844 186.371094 C 19.589844 187.644531 20.621094 188.675781 21.894531 188.675781 C 23.167969 188.675781 24.199219 187.644531 24.199219 186.371094 Z M 24.199219 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 9.523438 186.371094 C 9.523438 185.097656 8.492188 184.066406 7.21875 184.066406 C 5.945312 184.066406 4.914062 185.097656 4.914062 186.371094 C 4.914062 187.644531 5.945312 188.675781 7.21875 188.675781 C 8.492188 188.675781 9.523438 187.644531 9.523438 186.371094 Z M 9.523438 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 14.234375 186.371094 C 14.234375 185.097656 13.203125 184.066406 11.929688 184.066406 C 10.65625 184.066406 9.625 185.097656 9.625 186.371094 C 9.625 187.644531 10.65625 188.675781 11.929688 188.675781 C 13.203125 188.675781 14.234375 187.644531 14.234375 186.371094 Z M 14.234375 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.957031 186.371094 C 20.957031 185.097656 19.925781 184.066406 18.652344 184.066406 C 17.378906 184.066406 16.347656 185.097656 16.347656 186.371094 C 16.347656 187.644531 17.378906 188.675781 18.652344 188.675781 C 19.925781 188.675781 20.957031 187.644531 20.957031 186.371094 Z M 20.957031 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.589844 186.371094 C 24.589844 185.097656 23.558594 184.066406 22.285156 184.066406 C 21.011719 184.066406 19.980469 185.097656 19.980469 186.371094 C 19.980469 187.644531 21.011719 188.675781 22.285156 188.675781 C 23.558594 188.675781 24.589844 187.644531 24.589844 186.371094 Z M 24.589844 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 12.488281 186.371094 C 12.488281 185.097656 11.457031 184.066406 10.183594 184.066406 C 8.910156 184.066406 7.878906 185.097656 7.878906 186.371094 C 7.878906 187.644531 8.910156 188.675781 10.183594 188.675781 C 11.457031 188.675781 12.488281 187.644531 12.488281 186.371094 Z M 12.488281 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.5 186.371094 C 37.5 185.097656 36.46875 184.066406 35.195312 184.066406 C 33.921875 184.066406 32.890625 185.097656 32.890625 186.371094 C 32.890625 187.644531 33.921875 188.675781 35.195312 188.675781 C 36.46875 188.675781 37.5 187.644531 37.5 186.371094 Z M 37.5 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.308594 186.371094 C 23.308594 185.097656 22.277344 184.066406 21.003906 184.066406 C 19.730469 184.066406 18.699219 185.097656 18.699219 186.371094 C 18.699219 187.644531 19.730469 188.675781 21.003906 188.675781 C 22.277344 188.675781 23.308594 187.644531 23.308594 186.371094 Z M 23.308594 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 5.75 186.371094 C 5.75 185.097656 4.71875 184.066406 3.445312 184.066406 C 2.171875 184.066406 1.140625 185.097656 1.140625 186.371094 C 1.140625 187.644531 2.171875 188.675781 3.445312 188.675781 C 4.71875 188.675781 5.75 187.644531 5.75 186.371094 Z M 5.75 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.984375 186.371094 C 22.984375 185.097656 21.953125 184.066406 20.679688 184.066406 C 19.40625 184.066406 18.375 185.097656 18.375 186.371094 C 18.375 187.644531 19.40625 188.675781 20.679688 188.675781 C 21.953125 188.675781 22.984375 187.644531 22.984375 186.371094 Z M 22.984375 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.03125 186.371094 C 34.03125 185.097656 33 184.066406 31.726562 184.066406 C 30.453125 184.066406 29.421875 185.097656 29.421875 186.371094 C 29.421875 187.644531 30.453125 188.675781 31.726562 188.675781 C 33 188.675781 34.03125 187.644531 34.03125 186.371094 Z M 34.03125 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.578125 186.371094 C 15.578125 185.097656 14.546875 184.066406 13.273438 184.066406 C 12 184.066406 10.96875 185.097656 10.96875 186.371094 C 10.96875 187.644531 12 188.675781 13.273438 188.675781 C 14.546875 188.675781 15.578125 187.644531 15.578125 186.371094 Z M 15.578125 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.957031 186.371094 C 15.957031 185.097656 14.925781 184.066406 13.652344 184.066406 C 12.378906 184.066406 11.347656 185.097656 11.347656 186.371094 C 11.347656 187.644531 12.378906 188.675781 13.652344 188.675781 C 14.925781 188.675781 15.957031 187.644531 15.957031 186.371094 Z M 15.957031 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.695312 186.371094 C 38.695312 185.097656 37.664062 184.066406 36.390625 184.066406 C 35.117188 184.066406 34.085938 185.097656 34.085938 186.371094 C 34.085938 187.644531 35.117188 188.675781 36.390625 188.675781 C 37.664062 188.675781 38.695312 187.644531 38.695312 186.371094 Z M 38.695312 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.414062 186.371094 C 29.414062 185.097656 28.382812 184.066406 27.109375 184.066406 C 25.835938 184.066406 24.804688 185.097656 24.804688 186.371094 C 24.804688 187.644531 25.835938 188.675781 27.109375 188.675781 C 28.382812 188.675781 29.414062 187.644531 29.414062 186.371094 Z M 29.414062 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 14.78125 186.371094 C 14.78125 185.097656 13.75 184.066406 12.476562 184.066406 C 11.203125 184.066406 10.171875 185.097656 10.171875 186.371094 C 10.171875 187.644531 11.203125 188.675781 12.476562 188.675781 C 13.75 188.675781 14.78125 187.644531 14.78125 186.371094 Z M 14.78125 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 21.140625 186.371094 C 21.140625 185.097656 20.109375 184.066406 18.835938 184.066406 C 17.5625 184.066406 16.53125 185.097656 16.53125 186.371094 C 16.53125 187.644531 17.5625 188.675781 18.835938 188.675781 C 20.109375 188.675781 21.140625 187.644531 21.140625 186.371094 Z M 21.140625 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.726562 186.371094 C 27.726562 185.097656 26.695312 184.066406 25.421875 184.066406 C 24.148438 184.066406 23.117188 185.097656 23.117188 186.371094 C 23.117188 187.644531 24.148438 188.675781 25.421875 188.675781 C 26.695312 188.675781 27.726562 187.644531 27.726562 186.371094 Z M 27.726562 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 5.398438 186.371094 C 5.398438 185.097656 4.367188 184.066406 3.09375 184.066406 C 1.820312 184.066406 0.789062 185.097656 0.789062 186.371094 C 0.789062 187.644531 1.820312 188.675781 3.09375 188.675781 C 4.367188 188.675781 5.398438 187.644531 5.398438 186.371094 Z M 5.398438 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.042969 186.371094 C 24.042969 185.097656 23.011719 184.066406 21.738281 184.066406 C 20.464844 184.066406 19.433594 185.097656 19.433594 186.371094 C 19.433594 187.644531 20.464844 188.675781 21.738281 188.675781 C 23.011719 188.675781 24.042969 187.644531 24.042969 186.371094 Z M 24.042969 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 18.757812 186.371094 C 18.757812 185.097656 17.726562 184.066406 16.453125 184.066406 C 15.179688 184.066406 14.148438 185.097656 14.148438 186.371094 C 14.148438 187.644531 15.179688 188.675781 16.453125 188.675781 C 17.726562 188.675781 18.757812 187.644531 18.757812 186.371094 Z M 18.757812 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 9.25 186.371094 C 9.25 185.097656 8.21875 184.066406 6.945312 184.066406 C 5.671875 184.066406 4.640625 185.097656 4.640625 186.371094 C 4.640625 187.644531 5.671875 188.675781 6.945312 188.675781 C 8.21875 188.675781 9.25 187.644531 9.25 186.371094 Z M 9.25 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.640625 186.371094 C 35.640625 185.097656 34.609375 184.066406 33.335938 184.066406 C 32.0625 184.066406 31.03125 185.097656 31.03125 186.371094 C 31.03125 187.644531 32.0625 188.675781 33.335938 188.675781 C 34.609375 188.675781 35.640625 187.644531 35.640625 186.371094 Z M 35.640625 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.597656 186.371094 C 28.597656 185.097656 27.566406 184.066406 26.292969 184.066406 C 25.019531 184.066406 23.988281 185.097656 23.988281 186.371094 C 23.988281 187.644531 25.019531 188.675781 26.292969 188.675781 C 27.566406 188.675781 28.597656 187.644531 28.597656 186.371094 Z M 28.597656 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 6.898438 186.371094 C 6.898438 185.097656 5.867188 184.066406 4.59375 184.066406 C 3.320312 184.066406 2.289062 185.097656 2.289062 186.371094 C 2.289062 187.644531 3.320312 188.675781 4.59375 188.675781 C 5.867188 188.675781 6.898438 187.644531 6.898438 186.371094 Z M 6.898438 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 12.25 186.371094 C 12.25 185.097656 11.21875 184.066406 9.945312 184.066406 C 8.671875 184.066406 7.640625 185.097656 7.640625 186.371094 C 7.640625 187.644531 8.671875 188.675781 9.945312 188.675781 C 11.21875 188.675781 12.25 187.644531 12.25 186.371094 Z M 12.25 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.617188 186.371094 C 23.617188 185.097656 22.585938 184.066406 21.3125 184.066406 C 20.039062 184.066406 19.007812 185.097656 19.007812 186.371094 C 19.007812 187.644531 20.039062 188.675781 21.3125 188.675781 C 22.585938 188.675781 23.617188 187.644531 23.617188 186.371094 Z M 23.617188 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 5.492188 186.371094 C 5.492188 185.097656 4.460938 184.066406 3.1875 184.066406 C 1.914062 184.066406 0.882812 185.097656 0.882812 186.371094 C 0.882812 187.644531 1.914062 188.675781 3.1875 188.675781 C 4.460938 188.675781 5.492188 187.644531 5.492188 186.371094 Z M 5.492188 186.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.003906 181.527344 C 36.003906 180.253906 34.972656 179.222656 33.699219 179.222656 C 32.425781 179.222656 31.394531 180.253906 31.394531 181.527344 C 31.394531 182.800781 32.425781 183.832031 33.699219 183.832031 C 34.972656 183.832031 36.003906 182.800781 36.003906 181.527344 Z M 36.003906 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 7.53125 181.527344 C 7.53125 180.253906 6.5 179.222656 5.226562 179.222656 C 3.953125 179.222656 2.921875 180.253906 2.921875 181.527344 C 2.921875 182.800781 3.953125 183.832031 5.226562 183.832031 C 6.5 183.832031 7.53125 182.800781 7.53125 181.527344 Z M 7.53125 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.921875 181.527344 C 24.921875 180.253906 23.890625 179.222656 22.617188 179.222656 C 21.34375 179.222656 20.3125 180.253906 20.3125 181.527344 C 20.3125 182.800781 21.34375 183.832031 22.617188 183.832031 C 23.890625 183.832031 24.921875 182.800781 24.921875 181.527344 Z M 24.921875 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 9.1875 181.527344 C 9.1875 180.253906 8.15625 179.222656 6.882812 179.222656 C 5.609375 179.222656 4.578125 180.253906 4.578125 181.527344 C 4.578125 182.800781 5.609375 183.832031 6.882812 183.832031 C 8.15625 183.832031 9.1875 182.800781 9.1875 181.527344 Z M 9.1875 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 14.238281 181.527344 C 14.238281 180.253906 13.207031 179.222656 11.933594 179.222656 C 10.660156 179.222656 9.628906 180.253906 9.628906 181.527344 C 9.628906 182.800781 10.660156 183.832031 11.933594 183.832031 C 13.207031 183.832031 14.238281 182.800781 14.238281 181.527344 Z M 14.238281 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 21.445312 181.527344 C 21.445312 180.253906 20.414062 179.222656 19.140625 179.222656 C 17.867188 179.222656 16.835938 180.253906 16.835938 181.527344 C 16.835938 182.800781 17.867188 183.832031 19.140625 183.832031 C 20.414062 183.832031 21.445312 182.800781 21.445312 181.527344 Z M 21.445312 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.34375 181.527344 C 25.34375 180.253906 24.3125 179.222656 23.039062 179.222656 C 21.765625 179.222656 20.734375 180.253906 20.734375 181.527344 C 20.734375 182.800781 21.765625 183.832031 23.039062 183.832031 C 24.3125 183.832031 25.34375 182.800781 25.34375 181.527344 Z M 25.34375 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 12.367188 181.527344 C 12.367188 180.253906 11.335938 179.222656 10.0625 179.222656 C 8.789062 179.222656 7.757812 180.253906 7.757812 181.527344 C 7.757812 182.800781 8.789062 183.832031 10.0625 183.832031 C 11.335938 183.832031 12.367188 182.800781 12.367188 181.527344 Z M 12.367188 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.183594 181.527344 C 39.183594 180.253906 38.152344 179.222656 36.878906 179.222656 C 35.605469 179.222656 34.574219 180.253906 34.574219 181.527344 C 34.574219 182.800781 35.605469 183.832031 36.878906 183.832031 C 38.152344 183.832031 39.183594 182.800781 39.183594 181.527344 Z M 39.183594 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.964844 181.527344 C 23.964844 180.253906 22.933594 179.222656 21.660156 179.222656 C 20.386719 179.222656 19.355469 180.253906 19.355469 181.527344 C 19.355469 182.800781 20.386719 183.832031 21.660156 183.832031 C 22.933594 183.832031 23.964844 182.800781 23.964844 181.527344 Z M 23.964844 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 5.140625 181.527344 C 5.140625 180.253906 4.109375 179.222656 2.835938 179.222656 C 1.5625 179.222656 0.53125 180.253906 0.53125 181.527344 C 0.53125 182.800781 1.5625 183.832031 2.835938 183.832031 C 4.109375 183.832031 5.140625 182.800781 5.140625 181.527344 Z M 5.140625 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.617188 181.527344 C 23.617188 180.253906 22.585938 179.222656 21.3125 179.222656 C 20.039062 179.222656 19.007812 180.253906 19.007812 181.527344 C 19.007812 182.800781 20.039062 183.832031 21.3125 183.832031 C 22.585938 183.832031 23.617188 182.800781 23.617188 181.527344 Z M 23.617188 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.464844 181.527344 C 35.464844 180.253906 34.433594 179.222656 33.160156 179.222656 C 31.886719 179.222656 30.855469 180.253906 30.855469 181.527344 C 30.855469 182.800781 31.886719 183.832031 33.160156 183.832031 C 34.433594 183.832031 35.464844 182.800781 35.464844 181.527344 Z M 35.464844 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.679688 181.527344 C 15.679688 180.253906 14.648438 179.222656 13.375 179.222656 C 12.101562 179.222656 11.070312 180.253906 11.070312 181.527344 C 11.070312 182.800781 12.101562 183.832031 13.375 183.832031 C 14.648438 183.832031 15.679688 182.800781 15.679688 181.527344 Z M 15.679688 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.085938 181.527344 C 16.085938 180.253906 15.054688 179.222656 13.78125 179.222656 C 12.507812 179.222656 11.476562 180.253906 11.476562 181.527344 C 11.476562 182.800781 12.507812 183.832031 13.78125 183.832031 C 15.054688 183.832031 16.085938 182.800781 16.085938 181.527344 Z M 16.085938 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.464844 181.527344 C 40.464844 180.253906 39.433594 179.222656 38.160156 179.222656 C 36.886719 179.222656 35.855469 180.253906 35.855469 181.527344 C 35.855469 182.800781 36.886719 183.832031 38.160156 183.832031 C 39.433594 183.832031 40.464844 182.800781 40.464844 181.527344 Z M 40.464844 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.515625 181.527344 C 30.515625 180.253906 29.484375 179.222656 28.210938 179.222656 C 26.9375 179.222656 25.90625 180.253906 25.90625 181.527344 C 25.90625 182.800781 26.9375 183.832031 28.210938 183.832031 C 29.484375 183.832031 30.515625 182.800781 30.515625 181.527344 Z M 30.515625 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 14.824219 181.527344 C 14.824219 180.253906 13.792969 179.222656 12.519531 179.222656 C 11.246094 179.222656 10.214844 180.253906 10.214844 181.527344 C 10.214844 182.800781 11.246094 183.832031 12.519531 183.832031 C 13.792969 183.832031 14.824219 182.800781 14.824219 181.527344 Z M 14.824219 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 21.640625 181.527344 C 21.640625 180.253906 20.609375 179.222656 19.335938 179.222656 C 18.0625 179.222656 17.03125 180.253906 17.03125 181.527344 C 17.03125 182.800781 18.0625 183.832031 19.335938 183.832031 C 20.609375 183.832031 21.640625 182.800781 21.640625 181.527344 Z M 21.640625 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.703125 181.527344 C 28.703125 180.253906 27.671875 179.222656 26.398438 179.222656 C 25.125 179.222656 24.09375 180.253906 24.09375 181.527344 C 24.09375 182.800781 25.125 183.832031 26.398438 183.832031 C 27.671875 183.832031 28.703125 182.800781 28.703125 181.527344 Z M 28.703125 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 4.761719 181.527344 C 4.761719 180.253906 3.730469 179.222656 2.457031 179.222656 C 1.183594 179.222656 0.152344 180.253906 0.152344 181.527344 C 0.152344 182.800781 1.183594 183.832031 2.457031 183.832031 C 3.730469 183.832031 4.761719 182.800781 4.761719 181.527344 Z M 4.761719 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.753906 181.527344 C 24.753906 180.253906 23.722656 179.222656 22.449219 179.222656 C 21.175781 179.222656 20.144531 180.253906 20.144531 181.527344 C 20.144531 182.800781 21.175781 183.832031 22.449219 183.832031 C 23.722656 183.832031 24.753906 182.800781 24.753906 181.527344 Z M 24.753906 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.089844 181.527344 C 19.089844 180.253906 18.058594 179.222656 16.785156 179.222656 C 15.511719 179.222656 14.480469 180.253906 14.480469 181.527344 C 14.480469 182.800781 15.511719 183.832031 16.785156 183.832031 C 18.058594 183.832031 19.089844 182.800781 19.089844 181.527344 Z M 19.089844 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 8.890625 181.527344 C 8.890625 180.253906 7.859375 179.222656 6.585938 179.222656 C 5.3125 179.222656 4.28125 180.253906 4.28125 181.527344 C 4.28125 182.800781 5.3125 183.832031 6.585938 183.832031 C 7.859375 183.832031 8.890625 182.800781 8.890625 181.527344 Z M 8.890625 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.191406 181.527344 C 37.191406 180.253906 36.160156 179.222656 34.886719 179.222656 C 33.613281 179.222656 32.582031 180.253906 32.582031 181.527344 C 32.582031 182.800781 33.613281 183.832031 34.886719 183.832031 C 36.160156 183.832031 37.191406 182.800781 37.191406 181.527344 Z M 37.191406 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.636719 181.527344 C 29.636719 180.253906 28.605469 179.222656 27.332031 179.222656 C 26.058594 179.222656 25.027344 180.253906 25.027344 181.527344 C 25.027344 182.800781 26.058594 183.832031 27.332031 183.832031 C 28.605469 183.832031 29.636719 182.800781 29.636719 181.527344 Z M 29.636719 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 6.371094 181.527344 C 6.371094 180.253906 5.339844 179.222656 4.066406 179.222656 C 2.792969 179.222656 1.761719 180.253906 1.761719 181.527344 C 1.761719 182.800781 2.792969 183.832031 4.066406 183.832031 C 5.339844 183.832031 6.371094 182.800781 6.371094 181.527344 Z M 6.371094 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 12.109375 181.527344 C 12.109375 180.253906 11.078125 179.222656 9.804688 179.222656 C 8.53125 179.222656 7.5 180.253906 7.5 181.527344 C 7.5 182.800781 8.53125 183.832031 9.804688 183.832031 C 11.078125 183.832031 12.109375 182.800781 12.109375 181.527344 Z M 12.109375 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.296875 181.527344 C 24.296875 180.253906 23.265625 179.222656 21.992188 179.222656 C 20.71875 179.222656 19.6875 180.253906 19.6875 181.527344 C 19.6875 182.800781 20.71875 183.832031 21.992188 183.832031 C 23.265625 183.832031 24.296875 182.800781 24.296875 181.527344 Z M 24.296875 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 4.863281 181.527344 C 4.863281 180.253906 3.832031 179.222656 2.558594 179.222656 C 1.285156 179.222656 0.253906 180.253906 0.253906 181.527344 C 0.253906 182.800781 1.285156 183.832031 2.558594 183.832031 C 3.832031 183.832031 4.863281 182.800781 4.863281 181.527344 Z M 4.863281 181.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.65625 176.683594 C 37.65625 175.410156 36.625 174.378906 35.351562 174.378906 C 34.078125 174.378906 33.046875 175.410156 33.046875 176.683594 C 33.046875 177.957031 34.078125 178.988281 35.351562 178.988281 C 36.625 178.988281 37.65625 177.957031 37.65625 176.683594 Z M 37.65625 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 7.554688 176.683594 C 7.554688 175.410156 6.523438 174.378906 5.25 174.378906 C 3.976562 174.378906 2.945312 175.410156 2.945312 176.683594 C 2.945312 177.957031 3.976562 178.988281 5.25 178.988281 C 6.523438 178.988281 7.554688 177.957031 7.554688 176.683594 Z M 7.554688 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.941406 176.683594 C 25.941406 175.410156 24.910156 174.378906 23.636719 174.378906 C 22.363281 174.378906 21.332031 175.410156 21.332031 176.683594 C 21.332031 177.957031 22.363281 178.988281 23.636719 178.988281 C 24.910156 178.988281 25.941406 177.957031 25.941406 176.683594 Z M 25.941406 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 9.304688 176.683594 C 9.304688 175.410156 8.273438 174.378906 7 174.378906 C 5.726562 174.378906 4.695312 175.410156 4.695312 176.683594 C 4.695312 177.957031 5.726562 178.988281 7 178.988281 C 8.273438 178.988281 9.304688 177.957031 9.304688 176.683594 Z M 9.304688 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 14.644531 176.683594 C 14.644531 175.410156 13.613281 174.378906 12.339844 174.378906 C 11.066406 174.378906 10.035156 175.410156 10.035156 176.683594 C 10.035156 177.957031 11.066406 178.988281 12.339844 178.988281 C 13.613281 178.988281 14.644531 177.957031 14.644531 176.683594 Z M 14.644531 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.265625 176.683594 C 22.265625 175.410156 21.234375 174.378906 19.960938 174.378906 C 18.6875 174.378906 17.65625 175.410156 17.65625 176.683594 C 17.65625 177.957031 18.6875 178.988281 19.960938 178.988281 C 21.234375 178.988281 22.265625 177.957031 22.265625 176.683594 Z M 22.265625 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.386719 176.683594 C 26.386719 175.410156 25.355469 174.378906 24.082031 174.378906 C 22.808594 174.378906 21.777344 175.410156 21.777344 176.683594 C 21.777344 177.957031 22.808594 178.988281 24.082031 178.988281 C 25.355469 178.988281 26.386719 177.957031 26.386719 176.683594 Z M 26.386719 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 12.664062 176.683594 C 12.664062 175.410156 11.632812 174.378906 10.359375 174.378906 C 9.085938 174.378906 8.054688 175.410156 8.054688 176.683594 C 8.054688 177.957031 9.085938 178.988281 10.359375 178.988281 C 11.632812 178.988281 12.664062 177.957031 12.664062 176.683594 Z M 12.664062 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.019531 176.683594 C 41.019531 175.410156 39.988281 174.378906 38.714844 174.378906 C 37.441406 174.378906 36.410156 175.410156 36.410156 176.683594 C 36.410156 177.957031 37.441406 178.988281 38.714844 178.988281 C 39.988281 178.988281 41.019531 177.957031 41.019531 176.683594 Z M 41.019531 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.929688 176.683594 C 24.929688 175.410156 23.898438 174.378906 22.625 174.378906 C 21.351562 174.378906 20.320312 175.410156 20.320312 176.683594 C 20.320312 177.957031 21.351562 178.988281 22.625 178.988281 C 23.898438 178.988281 24.929688 177.957031 24.929688 176.683594 Z M 24.929688 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 5.027344 176.683594 C 5.027344 175.410156 3.996094 174.378906 2.722656 174.378906 C 1.449219 174.378906 0.417969 175.410156 0.417969 176.683594 C 0.417969 177.957031 1.449219 178.988281 2.722656 178.988281 C 3.996094 178.988281 5.027344 177.957031 5.027344 176.683594 Z M 5.027344 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.5625 176.683594 C 24.5625 175.410156 23.53125 174.378906 22.257812 174.378906 C 20.984375 174.378906 19.953125 175.410156 19.953125 176.683594 C 19.953125 177.957031 20.984375 178.988281 22.257812 178.988281 C 23.53125 178.988281 24.5625 177.957031 24.5625 176.683594 Z M 24.5625 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.089844 176.683594 C 37.089844 175.410156 36.058594 174.378906 34.785156 174.378906 C 33.511719 174.378906 32.480469 175.410156 32.480469 176.683594 C 32.480469 177.957031 33.511719 178.988281 34.785156 178.988281 C 36.058594 178.988281 37.089844 177.957031 37.089844 176.683594 Z M 37.089844 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.167969 176.683594 C 16.167969 175.410156 15.136719 174.378906 13.863281 174.378906 C 12.589844 174.378906 11.558594 175.410156 11.558594 176.683594 C 11.558594 177.957031 12.589844 178.988281 13.863281 178.988281 C 15.136719 178.988281 16.167969 177.957031 16.167969 176.683594 Z M 16.167969 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.597656 176.683594 C 16.597656 175.410156 15.566406 174.378906 14.292969 174.378906 C 13.019531 174.378906 11.988281 175.410156 11.988281 176.683594 C 11.988281 177.957031 13.019531 178.988281 14.292969 178.988281 C 15.566406 178.988281 16.597656 177.957031 16.597656 176.683594 Z M 16.597656 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.378906 176.683594 C 42.378906 175.410156 41.347656 174.378906 40.074219 174.378906 C 38.800781 174.378906 37.769531 175.410156 37.769531 176.683594 C 37.769531 177.957031 38.800781 178.988281 40.074219 178.988281 C 41.347656 178.988281 42.378906 177.957031 42.378906 176.683594 Z M 42.378906 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.855469 176.683594 C 31.855469 175.410156 30.824219 174.378906 29.550781 174.378906 C 28.277344 174.378906 27.246094 175.410156 27.246094 176.683594 C 27.246094 177.957031 28.277344 178.988281 29.550781 178.988281 C 30.824219 178.988281 31.855469 177.957031 31.855469 176.683594 Z M 31.855469 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.261719 176.683594 C 15.261719 175.410156 14.230469 174.378906 12.957031 174.378906 C 11.683594 174.378906 10.652344 175.410156 10.652344 176.683594 C 10.652344 177.957031 11.683594 178.988281 12.957031 178.988281 C 14.230469 178.988281 15.261719 177.957031 15.261719 176.683594 Z M 15.261719 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.472656 176.683594 C 22.472656 175.410156 21.441406 174.378906 20.167969 174.378906 C 18.894531 174.378906 17.863281 175.410156 17.863281 176.683594 C 17.863281 177.957031 18.894531 178.988281 20.167969 178.988281 C 21.441406 178.988281 22.472656 177.957031 22.472656 176.683594 Z M 22.472656 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.9375 176.683594 C 29.9375 175.410156 28.90625 174.378906 27.632812 174.378906 C 26.359375 174.378906 25.328125 175.410156 25.328125 176.683594 C 25.328125 177.957031 26.359375 178.988281 27.632812 178.988281 C 28.90625 178.988281 29.9375 177.957031 29.9375 176.683594 Z M 29.9375 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 4.625 176.683594 C 4.625 175.410156 3.59375 174.378906 2.320312 174.378906 C 1.046875 174.378906 0.015625 175.410156 0.015625 176.683594 C 0.015625 177.957031 1.046875 178.988281 2.320312 178.988281 C 3.59375 178.988281 4.625 177.957031 4.625 176.683594 Z M 4.625 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.765625 176.683594 C 25.765625 175.410156 24.734375 174.378906 23.460938 174.378906 C 22.1875 174.378906 21.15625 175.410156 21.15625 176.683594 C 21.15625 177.957031 22.1875 178.988281 23.460938 178.988281 C 24.734375 178.988281 25.765625 177.957031 25.765625 176.683594 Z M 25.765625 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.773438 176.683594 C 19.773438 175.410156 18.742188 174.378906 17.46875 174.378906 C 16.195312 174.378906 15.164062 175.410156 15.164062 176.683594 C 15.164062 177.957031 16.195312 178.988281 17.46875 178.988281 C 18.742188 178.988281 19.773438 177.957031 19.773438 176.683594 Z M 19.773438 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 8.992188 176.683594 C 8.992188 175.410156 7.960938 174.378906 6.6875 174.378906 C 5.414062 174.378906 4.382812 175.410156 4.382812 176.683594 C 4.382812 177.957031 5.414062 178.988281 6.6875 178.988281 C 7.960938 178.988281 8.992188 177.957031 8.992188 176.683594 Z M 8.992188 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.914062 176.683594 C 38.914062 175.410156 37.882812 174.378906 36.609375 174.378906 C 35.335938 174.378906 34.304688 175.410156 34.304688 176.683594 C 34.304688 177.957031 35.335938 178.988281 36.609375 178.988281 C 37.882812 178.988281 38.914062 177.957031 38.914062 176.683594 Z M 38.914062 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.925781 176.683594 C 30.925781 175.410156 29.894531 174.378906 28.621094 174.378906 C 27.347656 174.378906 26.316406 175.410156 26.316406 176.683594 C 26.316406 177.957031 27.347656 178.988281 28.621094 178.988281 C 29.894531 178.988281 30.925781 177.957031 30.925781 176.683594 Z M 30.925781 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 6.328125 176.683594 C 6.328125 175.410156 5.296875 174.378906 4.023438 174.378906 C 2.75 174.378906 1.71875 175.410156 1.71875 176.683594 C 1.71875 177.957031 2.75 178.988281 4.023438 178.988281 C 5.296875 178.988281 6.328125 177.957031 6.328125 176.683594 Z M 6.328125 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 12.394531 176.683594 C 12.394531 175.410156 11.363281 174.378906 10.089844 174.378906 C 8.816406 174.378906 7.785156 175.410156 7.785156 176.683594 C 7.785156 177.957031 8.816406 178.988281 10.089844 178.988281 C 11.363281 178.988281 12.394531 177.957031 12.394531 176.683594 Z M 12.394531 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.28125 176.683594 C 25.28125 175.410156 24.25 174.378906 22.976562 174.378906 C 21.703125 174.378906 20.671875 175.410156 20.671875 176.683594 C 20.671875 177.957031 21.703125 178.988281 22.976562 178.988281 C 24.25 178.988281 25.28125 177.957031 25.28125 176.683594 Z M 25.28125 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 4.730469 176.683594 C 4.730469 175.410156 3.699219 174.378906 2.425781 174.378906 C 1.152344 174.378906 0.121094 175.410156 0.121094 176.683594 C 0.121094 177.957031 1.152344 178.988281 2.425781 178.988281 C 3.699219 178.988281 4.730469 177.957031 4.730469 176.683594 Z M 4.730469 176.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.480469 171.839844 C 39.480469 170.566406 38.449219 169.535156 37.175781 169.535156 C 35.902344 169.535156 34.871094 170.566406 34.871094 171.839844 C 34.871094 173.113281 35.902344 174.144531 37.175781 174.144531 C 38.449219 174.144531 39.480469 173.113281 39.480469 171.839844 Z M 39.480469 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 8.042969 171.839844 C 8.042969 170.566406 7.011719 169.535156 5.738281 169.535156 C 4.464844 169.535156 3.433594 170.566406 3.433594 171.839844 C 3.433594 173.113281 4.464844 174.144531 5.738281 174.144531 C 7.011719 174.144531 8.042969 173.113281 8.042969 171.839844 Z M 8.042969 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.242188 171.839844 C 27.242188 170.566406 26.210938 169.535156 24.9375 169.535156 C 23.664062 169.535156 22.632812 170.566406 22.632812 171.839844 C 22.632812 173.113281 23.664062 174.144531 24.9375 174.144531 C 26.210938 174.144531 27.242188 173.113281 27.242188 171.839844 Z M 27.242188 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 9.871094 171.839844 C 9.871094 170.566406 8.839844 169.535156 7.566406 169.535156 C 6.292969 169.535156 5.261719 170.566406 5.261719 171.839844 C 5.261719 173.113281 6.292969 174.144531 7.566406 174.144531 C 8.839844 174.144531 9.871094 173.113281 9.871094 171.839844 Z M 9.871094 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.449219 171.839844 C 15.449219 170.566406 14.417969 169.535156 13.144531 169.535156 C 11.871094 169.535156 10.839844 170.566406 10.839844 171.839844 C 10.839844 173.113281 11.871094 174.144531 13.144531 174.144531 C 14.417969 174.144531 15.449219 173.113281 15.449219 171.839844 Z M 15.449219 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.40625 171.839844 C 23.40625 170.566406 22.375 169.535156 21.101562 169.535156 C 19.828125 169.535156 18.796875 170.566406 18.796875 171.839844 C 18.796875 173.113281 19.828125 174.144531 21.101562 174.144531 C 22.375 174.144531 23.40625 173.113281 23.40625 171.839844 Z M 23.40625 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.710938 171.839844 C 27.710938 170.566406 26.679688 169.535156 25.40625 169.535156 C 24.132812 169.535156 23.101562 170.566406 23.101562 171.839844 C 23.101562 173.113281 24.132812 174.144531 25.40625 174.144531 C 26.679688 174.144531 27.710938 173.113281 27.710938 171.839844 Z M 27.710938 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 13.382812 171.839844 C 13.382812 170.566406 12.351562 169.535156 11.078125 169.535156 C 9.804688 169.535156 8.773438 170.566406 8.773438 171.839844 C 8.773438 173.113281 9.804688 174.144531 11.078125 174.144531 C 12.351562 174.144531 13.382812 173.113281 13.382812 171.839844 Z M 13.382812 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.992188 171.839844 C 42.992188 170.566406 41.960938 169.535156 40.6875 169.535156 C 39.414062 169.535156 38.382812 170.566406 38.382812 171.839844 C 38.382812 173.113281 39.414062 174.144531 40.6875 174.144531 C 41.960938 174.144531 42.992188 173.113281 42.992188 171.839844 Z M 42.992188 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.1875 171.839844 C 26.1875 170.566406 25.15625 169.535156 23.882812 169.535156 C 22.609375 169.535156 21.578125 170.566406 21.578125 171.839844 C 21.578125 173.113281 22.609375 174.144531 23.882812 174.144531 C 25.15625 174.144531 26.1875 173.113281 26.1875 171.839844 Z M 26.1875 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 5.402344 171.839844 C 5.402344 170.566406 4.371094 169.535156 3.097656 169.535156 C 1.824219 169.535156 0.792969 170.566406 0.792969 171.839844 C 0.792969 173.113281 1.824219 174.144531 3.097656 174.144531 C 4.371094 174.144531 5.402344 173.113281 5.402344 171.839844 Z M 5.402344 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.804688 171.839844 C 25.804688 170.566406 24.773438 169.535156 23.5 169.535156 C 22.226562 169.535156 21.195312 170.566406 21.195312 171.839844 C 21.195312 173.113281 22.226562 174.144531 23.5 174.144531 C 24.773438 174.144531 25.804688 173.113281 25.804688 171.839844 Z M 25.804688 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.886719 171.839844 C 38.886719 170.566406 37.855469 169.535156 36.582031 169.535156 C 35.308594 169.535156 34.277344 170.566406 34.277344 171.839844 C 34.277344 173.113281 35.308594 174.144531 36.582031 174.144531 C 37.855469 174.144531 38.886719 173.113281 38.886719 171.839844 Z M 38.886719 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 17.039062 171.839844 C 17.039062 170.566406 16.007812 169.535156 14.734375 169.535156 C 13.460938 169.535156 12.429688 170.566406 12.429688 171.839844 C 12.429688 173.113281 13.460938 174.144531 14.734375 174.144531 C 16.007812 174.144531 17.039062 173.113281 17.039062 171.839844 Z M 17.039062 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 17.488281 171.839844 C 17.488281 170.566406 16.457031 169.535156 15.183594 169.535156 C 13.910156 169.535156 12.878906 170.566406 12.878906 171.839844 C 12.878906 173.113281 13.910156 174.144531 15.183594 174.144531 C 16.457031 174.144531 17.488281 173.113281 17.488281 171.839844 Z M 17.488281 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.410156 171.839844 C 44.410156 170.566406 43.378906 169.535156 42.105469 169.535156 C 40.832031 169.535156 39.800781 170.566406 39.800781 171.839844 C 39.800781 173.113281 40.832031 174.144531 42.105469 174.144531 C 43.378906 174.144531 44.410156 173.113281 44.410156 171.839844 Z M 44.410156 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.417969 171.839844 C 33.417969 170.566406 32.386719 169.535156 31.113281 169.535156 C 29.839844 169.535156 28.808594 170.566406 28.808594 171.839844 C 28.808594 173.113281 29.839844 174.144531 31.113281 174.144531 C 32.386719 174.144531 33.417969 173.113281 33.417969 171.839844 Z M 33.417969 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.09375 171.839844 C 16.09375 170.566406 15.0625 169.535156 13.789062 169.535156 C 12.515625 169.535156 11.484375 170.566406 11.484375 171.839844 C 11.484375 173.113281 12.515625 174.144531 13.789062 174.144531 C 15.0625 174.144531 16.09375 173.113281 16.09375 171.839844 Z M 16.09375 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.621094 171.839844 C 23.621094 170.566406 22.589844 169.535156 21.316406 169.535156 C 20.042969 169.535156 19.011719 170.566406 19.011719 171.839844 C 19.011719 173.113281 20.042969 174.144531 21.316406 174.144531 C 22.589844 174.144531 23.621094 173.113281 23.621094 171.839844 Z M 23.621094 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.421875 171.839844 C 31.421875 170.566406 30.390625 169.535156 29.117188 169.535156 C 27.84375 169.535156 26.8125 170.566406 26.8125 171.839844 C 26.8125 173.113281 27.84375 174.144531 29.117188 174.144531 C 30.390625 174.144531 31.421875 173.113281 31.421875 171.839844 Z M 31.421875 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 4.984375 171.839844 C 4.984375 170.566406 3.953125 169.535156 2.679688 169.535156 C 1.40625 169.535156 0.375 170.566406 0.375 171.839844 C 0.375 173.113281 1.40625 174.144531 2.679688 174.144531 C 3.953125 174.144531 4.984375 173.113281 4.984375 171.839844 Z M 4.984375 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.0625 171.839844 C 27.0625 170.566406 26.03125 169.535156 24.757812 169.535156 C 23.484375 169.535156 22.453125 170.566406 22.453125 171.839844 C 22.453125 173.113281 23.484375 174.144531 24.757812 174.144531 C 26.03125 174.144531 27.0625 173.113281 27.0625 171.839844 Z M 27.0625 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.804688 171.839844 C 20.804688 170.566406 19.773438 169.535156 18.5 169.535156 C 17.226562 169.535156 16.195312 170.566406 16.195312 171.839844 C 16.195312 173.113281 17.226562 174.144531 18.5 174.144531 C 19.773438 174.144531 20.804688 173.113281 20.804688 171.839844 Z M 20.804688 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 9.546875 171.839844 C 9.546875 170.566406 8.515625 169.535156 7.242188 169.535156 C 5.96875 169.535156 4.9375 170.566406 4.9375 171.839844 C 4.9375 173.113281 5.96875 174.144531 7.242188 174.144531 C 8.515625 174.144531 9.546875 173.113281 9.546875 171.839844 Z M 9.546875 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.789062 171.839844 C 40.789062 170.566406 39.757812 169.535156 38.484375 169.535156 C 37.210938 169.535156 36.179688 170.566406 36.179688 171.839844 C 36.179688 173.113281 37.210938 174.144531 38.484375 174.144531 C 39.757812 174.144531 40.789062 173.113281 40.789062 171.839844 Z M 40.789062 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.449219 171.839844 C 32.449219 170.566406 31.417969 169.535156 30.144531 169.535156 C 28.871094 169.535156 27.839844 170.566406 27.839844 171.839844 C 27.839844 173.113281 28.871094 174.144531 30.144531 174.144531 C 31.417969 174.144531 32.449219 173.113281 32.449219 171.839844 Z M 32.449219 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 6.761719 171.839844 C 6.761719 170.566406 5.730469 169.535156 4.457031 169.535156 C 3.183594 169.535156 2.152344 170.566406 2.152344 171.839844 C 2.152344 173.113281 3.183594 174.144531 4.457031 174.144531 C 5.730469 174.144531 6.761719 173.113281 6.761719 171.839844 Z M 6.761719 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 13.097656 171.839844 C 13.097656 170.566406 12.066406 169.535156 10.792969 169.535156 C 9.519531 169.535156 8.488281 170.566406 8.488281 171.839844 C 8.488281 173.113281 9.519531 174.144531 10.792969 174.144531 C 12.066406 174.144531 13.097656 173.113281 13.097656 171.839844 Z M 13.097656 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.554688 171.839844 C 26.554688 170.566406 25.523438 169.535156 24.25 169.535156 C 22.976562 169.535156 21.945312 170.566406 21.945312 171.839844 C 21.945312 173.113281 22.976562 174.144531 24.25 174.144531 C 25.523438 174.144531 26.554688 173.113281 26.554688 171.839844 Z M 26.554688 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 5.097656 171.839844 C 5.097656 170.566406 4.066406 169.535156 2.792969 169.535156 C 1.519531 169.535156 0.488281 170.566406 0.488281 171.839844 C 0.488281 173.113281 1.519531 174.144531 2.792969 174.144531 C 4.066406 174.144531 5.097656 173.113281 5.097656 171.839844 Z M 5.097656 171.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.453125 166.996094 C 41.453125 165.722656 40.421875 164.691406 39.148438 164.691406 C 37.875 164.691406 36.84375 165.722656 36.84375 166.996094 C 36.84375 168.269531 37.875 169.300781 39.148438 169.300781 C 40.421875 169.300781 41.453125 168.269531 41.453125 166.996094 Z M 41.453125 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 9 166.996094 C 9 165.722656 7.96875 164.691406 6.695312 164.691406 C 5.421875 164.691406 4.390625 165.722656 4.390625 166.996094 C 4.390625 168.269531 5.421875 169.300781 6.695312 169.300781 C 7.96875 169.300781 9 168.269531 9 166.996094 Z M 9 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.820312 166.996094 C 28.820312 165.722656 27.789062 164.691406 26.515625 164.691406 C 25.242188 164.691406 24.210938 165.722656 24.210938 166.996094 C 24.210938 168.269531 25.242188 169.300781 26.515625 169.300781 C 27.789062 169.300781 28.820312 168.269531 28.820312 166.996094 Z M 28.820312 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 10.886719 166.996094 C 10.886719 165.722656 9.855469 164.691406 8.582031 164.691406 C 7.308594 164.691406 6.277344 165.722656 6.277344 166.996094 C 6.277344 168.269531 7.308594 169.300781 8.582031 169.300781 C 9.855469 169.300781 10.886719 168.269531 10.886719 166.996094 Z M 10.886719 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.640625 166.996094 C 16.640625 165.722656 15.609375 164.691406 14.335938 164.691406 C 13.0625 164.691406 12.03125 165.722656 12.03125 166.996094 C 12.03125 168.269531 13.0625 169.300781 14.335938 169.300781 C 15.609375 169.300781 16.640625 168.269531 16.640625 166.996094 Z M 16.640625 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.859375 166.996094 C 24.859375 165.722656 23.828125 164.691406 22.554688 164.691406 C 21.28125 164.691406 20.25 165.722656 20.25 166.996094 C 20.25 168.269531 21.28125 169.300781 22.554688 169.300781 C 23.828125 169.300781 24.859375 168.269531 24.859375 166.996094 Z M 24.859375 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.300781 166.996094 C 29.300781 165.722656 28.269531 164.691406 26.996094 164.691406 C 25.722656 164.691406 24.691406 165.722656 24.691406 166.996094 C 24.691406 168.269531 25.722656 169.300781 26.996094 169.300781 C 28.269531 169.300781 29.300781 168.269531 29.300781 166.996094 Z M 29.300781 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 14.507812 166.996094 C 14.507812 165.722656 13.476562 164.691406 12.203125 164.691406 C 10.929688 164.691406 9.898438 165.722656 9.898438 166.996094 C 9.898438 168.269531 10.929688 169.300781 12.203125 169.300781 C 13.476562 169.300781 14.507812 168.269531 14.507812 166.996094 Z M 14.507812 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.078125 166.996094 C 45.078125 165.722656 44.046875 164.691406 42.773438 164.691406 C 41.5 164.691406 40.46875 165.722656 40.46875 166.996094 C 40.46875 168.269531 41.5 169.300781 42.773438 169.300781 C 44.046875 169.300781 45.078125 168.269531 45.078125 166.996094 Z M 45.078125 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.730469 166.996094 C 27.730469 165.722656 26.699219 164.691406 25.425781 164.691406 C 24.152344 164.691406 23.121094 165.722656 23.121094 166.996094 C 23.121094 168.269531 24.152344 169.300781 25.425781 169.300781 C 26.699219 169.300781 27.730469 168.269531 27.730469 166.996094 Z M 27.730469 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 6.273438 166.996094 C 6.273438 165.722656 5.242188 164.691406 3.96875 164.691406 C 2.695312 164.691406 1.664062 165.722656 1.664062 166.996094 C 1.664062 168.269531 2.695312 169.300781 3.96875 169.300781 C 5.242188 169.300781 6.273438 168.269531 6.273438 166.996094 Z M 6.273438 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.335938 166.996094 C 27.335938 165.722656 26.304688 164.691406 25.03125 164.691406 C 23.757812 164.691406 22.726562 165.722656 22.726562 166.996094 C 22.726562 168.269531 23.757812 169.300781 25.03125 169.300781 C 26.304688 169.300781 27.335938 168.269531 27.335938 166.996094 Z M 27.335938 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.839844 166.996094 C 40.839844 165.722656 39.808594 164.691406 38.535156 164.691406 C 37.261719 164.691406 36.230469 165.722656 36.230469 166.996094 C 36.230469 168.269531 37.261719 169.300781 38.535156 169.300781 C 39.808594 169.300781 40.839844 168.269531 40.839844 166.996094 Z M 40.839844 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 18.285156 166.996094 C 18.285156 165.722656 17.253906 164.691406 15.980469 164.691406 C 14.707031 164.691406 13.675781 165.722656 13.675781 166.996094 C 13.675781 168.269531 14.707031 169.300781 15.980469 169.300781 C 17.253906 169.300781 18.285156 168.269531 18.285156 166.996094 Z M 18.285156 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 18.75 166.996094 C 18.75 165.722656 17.71875 164.691406 16.445312 164.691406 C 15.171875 164.691406 14.140625 165.722656 14.140625 166.996094 C 14.140625 168.269531 15.171875 169.300781 16.445312 169.300781 C 17.71875 169.300781 18.75 168.269531 18.75 166.996094 Z M 18.75 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.542969 166.996094 C 46.542969 165.722656 45.511719 164.691406 44.238281 164.691406 C 42.964844 164.691406 41.933594 165.722656 41.933594 166.996094 C 41.933594 168.269531 42.964844 169.300781 44.238281 169.300781 C 45.511719 169.300781 46.542969 168.269531 46.542969 166.996094 Z M 46.542969 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.195312 166.996094 C 35.195312 165.722656 34.164062 164.691406 32.890625 164.691406 C 31.617188 164.691406 30.585938 165.722656 30.585938 166.996094 C 30.585938 168.269531 31.617188 169.300781 32.890625 169.300781 C 34.164062 169.300781 35.195312 168.269531 35.195312 166.996094 Z M 35.195312 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 17.308594 166.996094 C 17.308594 165.722656 16.277344 164.691406 15.003906 164.691406 C 13.730469 164.691406 12.699219 165.722656 12.699219 166.996094 C 12.699219 168.269531 13.730469 169.300781 15.003906 169.300781 C 16.277344 169.300781 17.308594 168.269531 17.308594 166.996094 Z M 17.308594 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.082031 166.996094 C 25.082031 165.722656 24.050781 164.691406 22.777344 164.691406 C 21.503906 164.691406 20.472656 165.722656 20.472656 166.996094 C 20.472656 168.269531 21.503906 169.300781 22.777344 169.300781 C 24.050781 169.300781 25.082031 168.269531 25.082031 166.996094 Z M 25.082031 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.132812 166.996094 C 33.132812 165.722656 32.101562 164.691406 30.828125 164.691406 C 29.554688 164.691406 28.523438 165.722656 28.523438 166.996094 C 28.523438 168.269531 29.554688 169.300781 30.828125 169.300781 C 32.101562 169.300781 33.132812 168.269531 33.132812 166.996094 Z M 33.132812 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 5.839844 166.996094 C 5.839844 165.722656 4.808594 164.691406 3.535156 164.691406 C 2.261719 164.691406 1.230469 165.722656 1.230469 166.996094 C 1.230469 168.269531 2.261719 169.300781 3.535156 169.300781 C 4.808594 169.300781 5.839844 168.269531 5.839844 166.996094 Z M 5.839844 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.632812 166.996094 C 28.632812 165.722656 27.601562 164.691406 26.328125 164.691406 C 25.054688 164.691406 24.023438 165.722656 24.023438 166.996094 C 24.023438 168.269531 25.054688 169.300781 26.328125 169.300781 C 27.601562 169.300781 28.632812 168.269531 28.632812 166.996094 Z M 28.632812 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.171875 166.996094 C 22.171875 165.722656 21.140625 164.691406 19.867188 164.691406 C 18.59375 164.691406 17.5625 165.722656 17.5625 166.996094 C 17.5625 168.269531 18.59375 169.300781 19.867188 169.300781 C 21.140625 169.300781 22.171875 168.269531 22.171875 166.996094 Z M 22.171875 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 10.546875 166.996094 C 10.546875 165.722656 9.515625 164.691406 8.242188 164.691406 C 6.96875 164.691406 5.9375 165.722656 5.9375 166.996094 C 5.9375 168.269531 6.96875 169.300781 8.242188 169.300781 C 9.515625 169.300781 10.546875 168.269531 10.546875 166.996094 Z M 10.546875 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.804688 166.996094 C 42.804688 165.722656 41.773438 164.691406 40.5 164.691406 C 39.226562 164.691406 38.195312 165.722656 38.195312 166.996094 C 38.195312 168.269531 39.226562 169.300781 40.5 169.300781 C 41.773438 169.300781 42.804688 168.269531 42.804688 166.996094 Z M 42.804688 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.195312 166.996094 C 34.195312 165.722656 33.164062 164.691406 31.890625 164.691406 C 30.617188 164.691406 29.585938 165.722656 29.585938 166.996094 C 29.585938 168.269531 30.617188 169.300781 31.890625 169.300781 C 33.164062 169.300781 34.195312 168.269531 34.195312 166.996094 Z M 34.195312 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 7.675781 166.996094 C 7.675781 165.722656 6.644531 164.691406 5.371094 164.691406 C 4.097656 164.691406 3.066406 165.722656 3.066406 166.996094 C 3.066406 168.269531 4.097656 169.300781 5.371094 169.300781 C 6.644531 169.300781 7.675781 168.269531 7.675781 166.996094 Z M 7.675781 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 14.214844 166.996094 C 14.214844 165.722656 13.183594 164.691406 11.910156 164.691406 C 10.636719 164.691406 9.605469 165.722656 9.605469 166.996094 C 9.605469 168.269531 10.636719 169.300781 11.910156 169.300781 C 13.183594 169.300781 14.214844 168.269531 14.214844 166.996094 Z M 14.214844 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.109375 166.996094 C 28.109375 165.722656 27.078125 164.691406 25.804688 164.691406 C 24.53125 164.691406 23.5 165.722656 23.5 166.996094 C 23.5 168.269531 24.53125 169.300781 25.804688 169.300781 C 27.078125 169.300781 28.109375 168.269531 28.109375 166.996094 Z M 28.109375 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 5.957031 166.996094 C 5.957031 165.722656 4.925781 164.691406 3.652344 164.691406 C 2.378906 164.691406 1.347656 165.722656 1.347656 166.996094 C 1.347656 168.269531 2.378906 169.300781 3.652344 169.300781 C 4.925781 169.300781 5.957031 168.269531 5.957031 166.996094 Z M 5.957031 166.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.554688 162.152344 C 43.554688 160.878906 42.523438 159.847656 41.25 159.847656 C 39.976562 159.847656 38.945312 160.878906 38.945312 162.152344 C 38.945312 163.425781 39.976562 164.457031 41.25 164.457031 C 42.523438 164.457031 43.554688 163.425781 43.554688 162.152344 Z M 43.554688 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 10.40625 162.152344 C 10.40625 160.878906 9.375 159.847656 8.101562 159.847656 C 6.828125 159.847656 5.796875 160.878906 5.796875 162.152344 C 5.796875 163.425781 6.828125 164.457031 8.101562 164.457031 C 9.375 164.457031 10.40625 163.425781 10.40625 162.152344 Z M 10.40625 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.652344 162.152344 C 30.652344 160.878906 29.621094 159.847656 28.347656 159.847656 C 27.074219 159.847656 26.042969 160.878906 26.042969 162.152344 C 26.042969 163.425781 27.074219 164.457031 28.347656 164.457031 C 29.621094 164.457031 30.652344 163.425781 30.652344 162.152344 Z M 30.652344 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 12.335938 162.152344 C 12.335938 160.878906 11.304688 159.847656 10.03125 159.847656 C 8.757812 159.847656 7.726562 160.878906 7.726562 162.152344 C 7.726562 163.425781 8.757812 164.457031 10.03125 164.457031 C 11.304688 164.457031 12.335938 163.425781 12.335938 162.152344 Z M 12.335938 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 18.214844 162.152344 C 18.214844 160.878906 17.183594 159.847656 15.910156 159.847656 C 14.636719 159.847656 13.605469 160.878906 13.605469 162.152344 C 13.605469 163.425781 14.636719 164.457031 15.910156 164.457031 C 17.183594 164.457031 18.214844 163.425781 18.214844 162.152344 Z M 18.214844 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.605469 162.152344 C 26.605469 160.878906 25.574219 159.847656 24.300781 159.847656 C 23.027344 159.847656 21.996094 160.878906 21.996094 162.152344 C 21.996094 163.425781 23.027344 164.457031 24.300781 164.457031 C 25.574219 164.457031 26.605469 163.425781 26.605469 162.152344 Z M 26.605469 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.144531 162.152344 C 31.144531 160.878906 30.113281 159.847656 28.839844 159.847656 C 27.566406 159.847656 26.535156 160.878906 26.535156 162.152344 C 26.535156 163.425781 27.566406 164.457031 28.839844 164.457031 C 30.113281 164.457031 31.144531 163.425781 31.144531 162.152344 Z M 31.144531 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.035156 162.152344 C 16.035156 160.878906 15.003906 159.847656 13.730469 159.847656 C 12.457031 159.847656 11.425781 160.878906 11.425781 162.152344 C 11.425781 163.425781 12.457031 164.457031 13.730469 164.457031 C 15.003906 164.457031 16.035156 163.425781 16.035156 162.152344 Z M 16.035156 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.257812 162.152344 C 47.257812 160.878906 46.226562 159.847656 44.953125 159.847656 C 43.679688 159.847656 42.648438 160.878906 42.648438 162.152344 C 42.648438 163.425781 43.679688 164.457031 44.953125 164.457031 C 46.226562 164.457031 47.257812 163.425781 47.257812 162.152344 Z M 47.257812 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.539062 162.152344 C 29.539062 160.878906 28.507812 159.847656 27.234375 159.847656 C 25.960938 159.847656 24.929688 160.878906 24.929688 162.152344 C 24.929688 163.425781 25.960938 164.457031 27.234375 164.457031 C 28.507812 164.457031 29.539062 163.425781 29.539062 162.152344 Z M 29.539062 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 7.625 162.152344 C 7.625 160.878906 6.59375 159.847656 5.320312 159.847656 C 4.046875 159.847656 3.015625 160.878906 3.015625 162.152344 C 3.015625 163.425781 4.046875 164.457031 5.320312 164.457031 C 6.59375 164.457031 7.625 163.425781 7.625 162.152344 Z M 7.625 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.136719 162.152344 C 29.136719 160.878906 28.105469 159.847656 26.832031 159.847656 C 25.558594 159.847656 24.527344 160.878906 24.527344 162.152344 C 24.527344 163.425781 25.558594 164.457031 26.832031 164.457031 C 28.105469 164.457031 29.136719 163.425781 29.136719 162.152344 Z M 29.136719 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.929688 162.152344 C 42.929688 160.878906 41.898438 159.847656 40.625 159.847656 C 39.351562 159.847656 38.320312 160.878906 38.320312 162.152344 C 38.320312 163.425781 39.351562 164.457031 40.625 164.457031 C 41.898438 164.457031 42.929688 163.425781 42.929688 162.152344 Z M 42.929688 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.890625 162.152344 C 19.890625 160.878906 18.859375 159.847656 17.585938 159.847656 C 16.3125 159.847656 15.28125 160.878906 15.28125 162.152344 C 15.28125 163.425781 16.3125 164.457031 17.585938 164.457031 C 18.859375 164.457031 19.890625 163.425781 19.890625 162.152344 Z M 19.890625 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.367188 162.152344 C 20.367188 160.878906 19.335938 159.847656 18.0625 159.847656 C 16.789062 159.847656 15.757812 160.878906 15.757812 162.152344 C 15.757812 163.425781 16.789062 164.457031 18.0625 164.457031 C 19.335938 164.457031 20.367188 163.425781 20.367188 162.152344 Z M 20.367188 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.753906 162.152344 C 48.753906 160.878906 47.722656 159.847656 46.449219 159.847656 C 45.175781 159.847656 44.144531 160.878906 44.144531 162.152344 C 44.144531 163.425781 45.175781 164.457031 46.449219 164.457031 C 47.722656 164.457031 48.753906 163.425781 48.753906 162.152344 Z M 48.753906 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.164062 162.152344 C 37.164062 160.878906 36.132812 159.847656 34.859375 159.847656 C 33.585938 159.847656 32.554688 160.878906 32.554688 162.152344 C 32.554688 163.425781 33.585938 164.457031 34.859375 164.457031 C 36.132812 164.457031 37.164062 163.425781 37.164062 162.152344 Z M 37.164062 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 18.894531 162.152344 C 18.894531 160.878906 17.863281 159.847656 16.589844 159.847656 C 15.316406 159.847656 14.285156 160.878906 14.285156 162.152344 C 14.285156 163.425781 15.316406 164.457031 16.589844 164.457031 C 17.863281 164.457031 18.894531 163.425781 18.894531 162.152344 Z M 18.894531 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.832031 162.152344 C 26.832031 160.878906 25.800781 159.847656 24.527344 159.847656 C 23.253906 159.847656 22.222656 160.878906 22.222656 162.152344 C 22.222656 163.425781 23.253906 164.457031 24.527344 164.457031 C 25.800781 164.457031 26.832031 163.425781 26.832031 162.152344 Z M 26.832031 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.054688 162.152344 C 35.054688 160.878906 34.023438 159.847656 32.75 159.847656 C 31.476562 159.847656 30.445312 160.878906 30.445312 162.152344 C 30.445312 163.425781 31.476562 164.457031 32.75 164.457031 C 34.023438 164.457031 35.054688 163.425781 35.054688 162.152344 Z M 35.054688 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 7.179688 162.152344 C 7.179688 160.878906 6.148438 159.847656 4.875 159.847656 C 3.601562 159.847656 2.570312 160.878906 2.570312 162.152344 C 2.570312 163.425781 3.601562 164.457031 4.875 164.457031 C 6.148438 164.457031 7.179688 163.425781 7.179688 162.152344 Z M 7.179688 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.460938 162.152344 C 30.460938 160.878906 29.429688 159.847656 28.15625 159.847656 C 26.882812 159.847656 25.851562 160.878906 25.851562 162.152344 C 25.851562 163.425781 26.882812 164.457031 28.15625 164.457031 C 29.429688 164.457031 30.460938 163.425781 30.460938 162.152344 Z M 30.460938 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.859375 162.152344 C 23.859375 160.878906 22.828125 159.847656 21.554688 159.847656 C 20.28125 159.847656 19.25 160.878906 19.25 162.152344 C 19.25 163.425781 20.28125 164.457031 21.554688 164.457031 C 22.828125 164.457031 23.859375 163.425781 23.859375 162.152344 Z M 23.859375 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 11.988281 162.152344 C 11.988281 160.878906 10.957031 159.847656 9.683594 159.847656 C 8.410156 159.847656 7.378906 160.878906 7.378906 162.152344 C 7.378906 163.425781 8.410156 164.457031 9.683594 164.457031 C 10.957031 164.457031 11.988281 163.425781 11.988281 162.152344 Z M 11.988281 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.9375 162.152344 C 44.9375 160.878906 43.90625 159.847656 42.632812 159.847656 C 41.359375 159.847656 40.328125 160.878906 40.328125 162.152344 C 40.328125 163.425781 41.359375 164.457031 42.632812 164.457031 C 43.90625 164.457031 44.9375 163.425781 44.9375 162.152344 Z M 44.9375 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.144531 162.152344 C 36.144531 160.878906 35.113281 159.847656 33.839844 159.847656 C 32.566406 159.847656 31.535156 160.878906 31.535156 162.152344 C 31.535156 163.425781 32.566406 164.457031 33.839844 164.457031 C 35.113281 164.457031 36.144531 163.425781 36.144531 162.152344 Z M 36.144531 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 9.054688 162.152344 C 9.054688 160.878906 8.023438 159.847656 6.75 159.847656 C 5.476562 159.847656 4.445312 160.878906 4.445312 162.152344 C 4.445312 163.425781 5.476562 164.457031 6.75 164.457031 C 8.023438 164.457031 9.054688 163.425781 9.054688 162.152344 Z M 9.054688 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.734375 162.152344 C 15.734375 160.878906 14.703125 159.847656 13.429688 159.847656 C 12.15625 159.847656 11.125 160.878906 11.125 162.152344 C 11.125 163.425781 12.15625 164.457031 13.429688 164.457031 C 14.703125 164.457031 15.734375 163.425781 15.734375 162.152344 Z M 15.734375 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.925781 162.152344 C 29.925781 160.878906 28.894531 159.847656 27.621094 159.847656 C 26.347656 159.847656 25.316406 160.878906 25.316406 162.152344 C 25.316406 163.425781 26.347656 164.457031 27.621094 164.457031 C 28.894531 164.457031 29.925781 163.425781 29.925781 162.152344 Z M 29.925781 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 7.300781 162.152344 C 7.300781 160.878906 6.269531 159.847656 4.996094 159.847656 C 3.722656 159.847656 2.691406 160.878906 2.691406 162.152344 C 2.691406 163.425781 3.722656 164.457031 4.996094 164.457031 C 6.269531 164.457031 7.300781 163.425781 7.300781 162.152344 Z M 7.300781 162.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.769531 157.308594 C 45.769531 156.035156 44.738281 155.003906 43.464844 155.003906 C 42.191406 155.003906 41.160156 156.035156 41.160156 157.308594 C 41.160156 158.582031 42.191406 159.613281 43.464844 159.613281 C 44.738281 159.613281 45.769531 158.582031 45.769531 157.308594 Z M 45.769531 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 12.257812 157.308594 C 12.257812 156.035156 11.226562 155.003906 9.953125 155.003906 C 8.679688 155.003906 7.648438 156.035156 7.648438 157.308594 C 7.648438 158.582031 8.679688 159.613281 9.953125 159.613281 C 11.226562 159.613281 12.257812 158.582031 12.257812 157.308594 Z M 12.257812 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.722656 157.308594 C 32.722656 156.035156 31.691406 155.003906 30.417969 155.003906 C 29.144531 155.003906 28.113281 156.035156 28.113281 157.308594 C 28.113281 158.582031 29.144531 159.613281 30.417969 159.613281 C 31.691406 159.613281 32.722656 158.582031 32.722656 157.308594 Z M 32.722656 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 14.203125 157.308594 C 14.203125 156.035156 13.171875 155.003906 11.898438 155.003906 C 10.625 155.003906 9.59375 156.035156 9.59375 157.308594 C 9.59375 158.582031 10.625 159.613281 11.898438 159.613281 C 13.171875 159.613281 14.203125 158.582031 14.203125 157.308594 Z M 14.203125 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.148438 157.308594 C 20.148438 156.035156 19.117188 155.003906 17.84375 155.003906 C 16.570312 155.003906 15.539062 156.035156 15.539062 157.308594 C 15.539062 158.582031 16.570312 159.613281 17.84375 159.613281 C 19.117188 159.613281 20.148438 158.582031 20.148438 157.308594 Z M 20.148438 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.632812 157.308594 C 28.632812 156.035156 27.601562 155.003906 26.328125 155.003906 C 25.054688 155.003906 24.023438 156.035156 24.023438 157.308594 C 24.023438 158.582031 25.054688 159.613281 26.328125 159.613281 C 27.601562 159.613281 28.632812 158.582031 28.632812 157.308594 Z M 28.632812 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.222656 157.308594 C 33.222656 156.035156 32.191406 155.003906 30.917969 155.003906 C 29.644531 155.003906 28.613281 156.035156 28.613281 157.308594 C 28.613281 158.582031 29.644531 159.613281 30.917969 159.613281 C 32.191406 159.613281 33.222656 158.582031 33.222656 157.308594 Z M 33.222656 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 17.945312 157.308594 C 17.945312 156.035156 16.914062 155.003906 15.640625 155.003906 C 14.367188 155.003906 13.335938 156.035156 13.335938 157.308594 C 13.335938 158.582031 14.367188 159.613281 15.640625 159.613281 C 16.914062 159.613281 17.945312 158.582031 17.945312 157.308594 Z M 17.945312 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.511719 157.308594 C 49.511719 156.035156 48.480469 155.003906 47.207031 155.003906 C 45.933594 155.003906 44.902344 156.035156 44.902344 157.308594 C 44.902344 158.582031 45.933594 159.613281 47.207031 159.613281 C 48.480469 159.613281 49.511719 158.582031 49.511719 157.308594 Z M 49.511719 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.597656 157.308594 C 31.597656 156.035156 30.566406 155.003906 29.292969 155.003906 C 28.019531 155.003906 26.988281 156.035156 26.988281 157.308594 C 26.988281 158.582031 28.019531 159.613281 29.292969 159.613281 C 30.566406 159.613281 31.597656 158.582031 31.597656 157.308594 Z M 31.597656 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 9.441406 157.308594 C 9.441406 156.035156 8.410156 155.003906 7.136719 155.003906 C 5.863281 155.003906 4.832031 156.035156 4.832031 157.308594 C 4.832031 158.582031 5.863281 159.613281 7.136719 159.613281 C 8.410156 159.613281 9.441406 158.582031 9.441406 157.308594 Z M 9.441406 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.191406 157.308594 C 31.191406 156.035156 30.160156 155.003906 28.886719 155.003906 C 27.613281 155.003906 26.582031 156.035156 26.582031 157.308594 C 26.582031 158.582031 27.613281 159.613281 28.886719 159.613281 C 30.160156 159.613281 31.191406 158.582031 31.191406 157.308594 Z M 31.191406 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.132812 157.308594 C 45.132812 156.035156 44.101562 155.003906 42.828125 155.003906 C 41.554688 155.003906 40.523438 156.035156 40.523438 157.308594 C 40.523438 158.582031 41.554688 159.613281 42.828125 159.613281 C 44.101562 159.613281 45.132812 158.582031 45.132812 157.308594 Z M 45.132812 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 21.84375 157.308594 C 21.84375 156.035156 20.8125 155.003906 19.539062 155.003906 C 18.265625 155.003906 17.234375 156.035156 17.234375 157.308594 C 17.234375 158.582031 18.265625 159.613281 19.539062 159.613281 C 20.8125 159.613281 21.84375 158.582031 21.84375 157.308594 Z M 21.84375 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.324219 157.308594 C 22.324219 156.035156 21.292969 155.003906 20.019531 155.003906 C 18.746094 155.003906 17.714844 156.035156 17.714844 157.308594 C 17.714844 158.582031 18.746094 159.613281 20.019531 159.613281 C 21.292969 159.613281 22.324219 158.582031 22.324219 157.308594 Z M 22.324219 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.023438 157.308594 C 51.023438 156.035156 49.992188 155.003906 48.71875 155.003906 C 47.445312 155.003906 46.414062 156.035156 46.414062 157.308594 C 46.414062 158.582031 47.445312 159.613281 48.71875 159.613281 C 49.992188 159.613281 51.023438 158.582031 51.023438 157.308594 Z M 51.023438 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.308594 157.308594 C 39.308594 156.035156 38.277344 155.003906 37.003906 155.003906 C 35.730469 155.003906 34.699219 156.035156 34.699219 157.308594 C 34.699219 158.582031 35.730469 159.613281 37.003906 159.613281 C 38.277344 159.613281 39.308594 158.582031 39.308594 157.308594 Z M 39.308594 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.835938 157.308594 C 20.835938 156.035156 19.804688 155.003906 18.53125 155.003906 C 17.257812 155.003906 16.226562 156.035156 16.226562 157.308594 C 16.226562 158.582031 17.257812 159.613281 18.53125 159.613281 C 19.804688 159.613281 20.835938 158.582031 20.835938 157.308594 Z M 20.835938 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.863281 157.308594 C 28.863281 156.035156 27.832031 155.003906 26.558594 155.003906 C 25.285156 155.003906 24.253906 156.035156 24.253906 157.308594 C 24.253906 158.582031 25.285156 159.613281 26.558594 159.613281 C 27.832031 159.613281 28.863281 158.582031 28.863281 157.308594 Z M 28.863281 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.175781 157.308594 C 37.175781 156.035156 36.144531 155.003906 34.871094 155.003906 C 33.597656 155.003906 32.566406 156.035156 32.566406 157.308594 C 32.566406 158.582031 33.597656 159.613281 34.871094 159.613281 C 36.144531 159.613281 37.175781 158.582031 37.175781 157.308594 Z M 37.175781 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 8.996094 157.308594 C 8.996094 156.035156 7.964844 155.003906 6.691406 155.003906 C 5.417969 155.003906 4.386719 156.035156 4.386719 157.308594 C 4.386719 158.582031 5.417969 159.613281 6.691406 159.613281 C 7.964844 159.613281 8.996094 158.582031 8.996094 157.308594 Z M 8.996094 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.527344 157.308594 C 32.527344 156.035156 31.496094 155.003906 30.222656 155.003906 C 28.949219 155.003906 27.917969 156.035156 27.917969 157.308594 C 27.917969 158.582031 28.949219 159.613281 30.222656 159.613281 C 31.496094 159.613281 32.527344 158.582031 32.527344 157.308594 Z M 32.527344 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.859375 157.308594 C 25.859375 156.035156 24.828125 155.003906 23.554688 155.003906 C 22.28125 155.003906 21.25 156.035156 21.25 157.308594 C 21.25 158.582031 22.28125 159.613281 23.554688 159.613281 C 24.828125 159.613281 25.859375 158.582031 25.859375 157.308594 Z M 25.859375 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 13.855469 157.308594 C 13.855469 156.035156 12.824219 155.003906 11.550781 155.003906 C 10.277344 155.003906 9.246094 156.035156 9.246094 157.308594 C 9.246094 158.582031 10.277344 159.613281 11.550781 159.613281 C 12.824219 159.613281 13.855469 158.582031 13.855469 157.308594 Z M 13.855469 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.164062 157.308594 C 47.164062 156.035156 46.132812 155.003906 44.859375 155.003906 C 43.585938 155.003906 42.554688 156.035156 42.554688 157.308594 C 42.554688 158.582031 43.585938 159.613281 44.859375 159.613281 C 46.132812 159.613281 47.164062 158.582031 47.164062 157.308594 Z M 47.164062 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.273438 157.308594 C 38.273438 156.035156 37.242188 155.003906 35.96875 155.003906 C 34.695312 155.003906 33.664062 156.035156 33.664062 157.308594 C 33.664062 158.582031 34.695312 159.613281 35.96875 159.613281 C 37.242188 159.613281 38.273438 158.582031 38.273438 157.308594 Z M 38.273438 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 10.890625 157.308594 C 10.890625 156.035156 9.859375 155.003906 8.585938 155.003906 C 7.3125 155.003906 6.28125 156.035156 6.28125 157.308594 C 6.28125 158.582031 7.3125 159.613281 8.585938 159.613281 C 9.859375 159.613281 10.890625 158.582031 10.890625 157.308594 Z M 10.890625 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 17.644531 157.308594 C 17.644531 156.035156 16.613281 155.003906 15.339844 155.003906 C 14.066406 155.003906 13.035156 156.035156 13.035156 157.308594 C 13.035156 158.582031 14.066406 159.613281 15.339844 159.613281 C 16.613281 159.613281 17.644531 158.582031 17.644531 157.308594 Z M 17.644531 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.988281 157.308594 C 31.988281 156.035156 30.957031 155.003906 29.683594 155.003906 C 28.410156 155.003906 27.378906 156.035156 27.378906 157.308594 C 27.378906 158.582031 28.410156 159.613281 29.683594 159.613281 C 30.957031 159.613281 31.988281 158.582031 31.988281 157.308594 Z M 31.988281 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 9.113281 157.308594 C 9.113281 156.035156 8.082031 155.003906 6.808594 155.003906 C 5.535156 155.003906 4.503906 156.035156 4.503906 157.308594 C 4.503906 158.582031 5.535156 159.613281 6.808594 159.613281 C 8.082031 159.613281 9.113281 158.582031 9.113281 157.308594 Z M 9.113281 157.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.066406 152.464844 C 48.066406 151.191406 47.035156 150.160156 45.761719 150.160156 C 44.488281 150.160156 43.457031 151.191406 43.457031 152.464844 C 43.457031 153.738281 44.488281 154.769531 45.761719 154.769531 C 47.035156 154.769531 48.066406 153.738281 48.066406 152.464844 Z M 48.066406 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 14.527344 152.464844 C 14.527344 151.191406 13.496094 150.160156 12.222656 150.160156 C 10.949219 150.160156 9.917969 151.191406 9.917969 152.464844 C 9.917969 153.738281 10.949219 154.769531 12.222656 154.769531 C 13.496094 154.769531 14.527344 153.738281 14.527344 152.464844 Z M 14.527344 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.011719 152.464844 C 35.011719 151.191406 33.980469 150.160156 32.707031 150.160156 C 31.433594 150.160156 30.402344 151.191406 30.402344 152.464844 C 30.402344 153.738281 31.433594 154.769531 32.707031 154.769531 C 33.980469 154.769531 35.011719 153.738281 35.011719 152.464844 Z M 35.011719 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.476562 152.464844 C 16.476562 151.191406 15.445312 150.160156 14.171875 150.160156 C 12.898438 150.160156 11.867188 151.191406 11.867188 152.464844 C 11.867188 153.738281 12.898438 154.769531 14.171875 154.769531 C 15.445312 154.769531 16.476562 153.738281 16.476562 152.464844 Z M 16.476562 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.425781 152.464844 C 22.425781 151.191406 21.394531 150.160156 20.121094 150.160156 C 18.847656 150.160156 17.816406 151.191406 17.816406 152.464844 C 17.816406 153.738281 18.847656 154.769531 20.121094 154.769531 C 21.394531 154.769531 22.425781 153.738281 22.425781 152.464844 Z M 22.425781 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.917969 152.464844 C 30.917969 151.191406 29.886719 150.160156 28.613281 150.160156 C 27.339844 150.160156 26.308594 151.191406 26.308594 152.464844 C 26.308594 153.738281 27.339844 154.769531 28.613281 154.769531 C 29.886719 154.769531 30.917969 153.738281 30.917969 152.464844 Z M 30.917969 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.507812 152.464844 C 35.507812 151.191406 34.476562 150.160156 33.203125 150.160156 C 31.929688 150.160156 30.898438 151.191406 30.898438 152.464844 C 30.898438 153.738281 31.929688 154.769531 33.203125 154.769531 C 34.476562 154.769531 35.507812 153.738281 35.507812 152.464844 Z M 35.507812 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.222656 152.464844 C 20.222656 151.191406 19.191406 150.160156 17.917969 150.160156 C 16.644531 150.160156 15.613281 151.191406 15.613281 152.464844 C 15.613281 153.738281 16.644531 154.769531 17.917969 154.769531 C 19.191406 154.769531 20.222656 153.738281 20.222656 152.464844 Z M 20.222656 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.816406 152.464844 C 51.816406 151.191406 50.785156 150.160156 49.511719 150.160156 C 48.238281 150.160156 47.207031 151.191406 47.207031 152.464844 C 47.207031 153.738281 48.238281 154.769531 49.511719 154.769531 C 50.785156 154.769531 51.816406 153.738281 51.816406 152.464844 Z M 51.816406 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.886719 152.464844 C 33.886719 151.191406 32.855469 150.160156 31.582031 150.160156 C 30.308594 150.160156 29.277344 151.191406 29.277344 152.464844 C 29.277344 153.738281 30.308594 154.769531 31.582031 154.769531 C 32.855469 154.769531 33.886719 153.738281 33.886719 152.464844 Z M 33.886719 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 11.710938 152.464844 C 11.710938 151.191406 10.679688 150.160156 9.40625 150.160156 C 8.132812 150.160156 7.101562 151.191406 7.101562 152.464844 C 7.101562 153.738281 8.132812 154.769531 9.40625 154.769531 C 10.679688 154.769531 11.710938 153.738281 11.710938 152.464844 Z M 11.710938 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.476562 152.464844 C 33.476562 151.191406 32.445312 150.160156 31.171875 150.160156 C 29.898438 150.160156 28.867188 151.191406 28.867188 152.464844 C 28.867188 153.738281 29.898438 154.769531 31.171875 154.769531 C 32.445312 154.769531 33.476562 153.738281 33.476562 152.464844 Z M 33.476562 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.433594 152.464844 C 47.433594 151.191406 46.402344 150.160156 45.128906 150.160156 C 43.855469 150.160156 42.824219 151.191406 42.824219 152.464844 C 42.824219 153.738281 43.855469 154.769531 45.128906 154.769531 C 46.402344 154.769531 47.433594 153.738281 47.433594 152.464844 Z M 47.433594 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.125 152.464844 C 24.125 151.191406 23.09375 150.160156 21.820312 150.160156 C 20.546875 150.160156 19.515625 151.191406 19.515625 152.464844 C 19.515625 153.738281 20.546875 154.769531 21.820312 154.769531 C 23.09375 154.769531 24.125 153.738281 24.125 152.464844 Z M 24.125 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.601562 152.464844 C 24.601562 151.191406 23.570312 150.160156 22.296875 150.160156 C 21.023438 150.160156 19.992188 151.191406 19.992188 152.464844 C 19.992188 153.738281 21.023438 154.769531 22.296875 154.769531 C 23.570312 154.769531 24.601562 153.738281 24.601562 152.464844 Z M 24.601562 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.324219 152.464844 C 53.324219 151.191406 52.292969 150.160156 51.019531 150.160156 C 49.746094 150.160156 48.714844 151.191406 48.714844 152.464844 C 48.714844 153.738281 49.746094 154.769531 51.019531 154.769531 C 52.292969 154.769531 53.324219 153.738281 53.324219 152.464844 Z M 53.324219 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.601562 152.464844 C 41.601562 151.191406 40.570312 150.160156 39.296875 150.160156 C 38.023438 150.160156 36.992188 151.191406 36.992188 152.464844 C 36.992188 153.738281 38.023438 154.769531 39.296875 154.769531 C 40.570312 154.769531 41.601562 153.738281 41.601562 152.464844 Z M 41.601562 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.117188 152.464844 C 23.117188 151.191406 22.085938 150.160156 20.8125 150.160156 C 19.539062 150.160156 18.507812 151.191406 18.507812 152.464844 C 18.507812 153.738281 19.539062 154.769531 20.8125 154.769531 C 22.085938 154.769531 23.117188 153.738281 23.117188 152.464844 Z M 23.117188 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.148438 152.464844 C 31.148438 151.191406 30.117188 150.160156 28.84375 150.160156 C 27.570312 150.160156 26.539062 151.191406 26.539062 152.464844 C 26.539062 153.738281 27.570312 154.769531 28.84375 154.769531 C 30.117188 154.769531 31.148438 153.738281 31.148438 152.464844 Z M 31.148438 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.46875 152.464844 C 39.46875 151.191406 38.4375 150.160156 37.164062 150.160156 C 35.890625 150.160156 34.859375 151.191406 34.859375 152.464844 C 34.859375 153.738281 35.890625 154.769531 37.164062 154.769531 C 38.4375 154.769531 39.46875 153.738281 39.46875 152.464844 Z M 39.46875 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 11.261719 152.464844 C 11.261719 151.191406 10.230469 150.160156 8.957031 150.160156 C 7.683594 150.160156 6.652344 151.191406 6.652344 152.464844 C 6.652344 153.738281 7.683594 154.769531 8.957031 154.769531 C 10.230469 154.769531 11.261719 153.738281 11.261719 152.464844 Z M 11.261719 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.816406 152.464844 C 34.816406 151.191406 33.785156 150.160156 32.511719 150.160156 C 31.238281 150.160156 30.207031 151.191406 30.207031 152.464844 C 30.207031 153.738281 31.238281 154.769531 32.511719 154.769531 C 33.785156 154.769531 34.816406 153.738281 34.816406 152.464844 Z M 34.816406 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.140625 152.464844 C 28.140625 151.191406 27.109375 150.160156 25.835938 150.160156 C 24.5625 150.160156 23.53125 151.191406 23.53125 152.464844 C 23.53125 153.738281 24.5625 154.769531 25.835938 154.769531 C 27.109375 154.769531 28.140625 153.738281 28.140625 152.464844 Z M 28.140625 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.128906 152.464844 C 16.128906 151.191406 15.097656 150.160156 13.824219 150.160156 C 12.550781 150.160156 11.519531 151.191406 11.519531 152.464844 C 11.519531 153.738281 12.550781 154.769531 13.824219 154.769531 C 15.097656 154.769531 16.128906 153.738281 16.128906 152.464844 Z M 16.128906 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.464844 152.464844 C 49.464844 151.191406 48.433594 150.160156 47.160156 150.160156 C 45.886719 150.160156 44.855469 151.191406 44.855469 152.464844 C 44.855469 153.738281 45.886719 154.769531 47.160156 154.769531 C 48.433594 154.769531 49.464844 153.738281 49.464844 152.464844 Z M 49.464844 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.566406 152.464844 C 40.566406 151.191406 39.535156 150.160156 38.261719 150.160156 C 36.988281 150.160156 35.957031 151.191406 35.957031 152.464844 C 35.957031 153.738281 36.988281 154.769531 38.261719 154.769531 C 39.535156 154.769531 40.566406 153.738281 40.566406 152.464844 Z M 40.566406 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 13.160156 152.464844 C 13.160156 151.191406 12.128906 150.160156 10.855469 150.160156 C 9.582031 150.160156 8.550781 151.191406 8.550781 152.464844 C 8.550781 153.738281 9.582031 154.769531 10.855469 154.769531 C 12.128906 154.769531 13.160156 153.738281 13.160156 152.464844 Z M 13.160156 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.917969 152.464844 C 19.917969 151.191406 18.886719 150.160156 17.613281 150.160156 C 16.339844 150.160156 15.308594 151.191406 15.308594 152.464844 C 15.308594 153.738281 16.339844 154.769531 17.613281 154.769531 C 18.886719 154.769531 19.917969 153.738281 19.917969 152.464844 Z M 19.917969 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.277344 152.464844 C 34.277344 151.191406 33.246094 150.160156 31.972656 150.160156 C 30.699219 150.160156 29.667969 151.191406 29.667969 152.464844 C 29.667969 153.738281 30.699219 154.769531 31.972656 154.769531 C 33.246094 154.769531 34.277344 153.738281 34.277344 152.464844 Z M 34.277344 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 11.382812 152.464844 C 11.382812 151.191406 10.351562 150.160156 9.078125 150.160156 C 7.804688 150.160156 6.773438 151.191406 6.773438 152.464844 C 6.773438 153.738281 7.804688 154.769531 9.078125 154.769531 C 10.351562 154.769531 11.382812 153.738281 11.382812 152.464844 Z M 11.382812 152.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.429688 147.621094 C 50.429688 146.347656 49.398438 145.316406 48.125 145.316406 C 46.851562 145.316406 45.820312 146.347656 45.820312 147.621094 C 45.820312 148.894531 46.851562 149.925781 48.125 149.925781 C 49.398438 149.925781 50.429688 148.894531 50.429688 147.621094 Z M 50.429688 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 17.199219 147.621094 C 17.199219 146.347656 16.167969 145.316406 14.894531 145.316406 C 13.621094 145.316406 12.589844 146.347656 12.589844 147.621094 C 12.589844 148.894531 13.621094 149.925781 14.894531 149.925781 C 16.167969 149.925781 17.199219 148.894531 17.199219 147.621094 Z M 17.199219 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.496094 147.621094 C 37.496094 146.347656 36.464844 145.316406 35.191406 145.316406 C 33.917969 145.316406 32.886719 146.347656 32.886719 147.621094 C 32.886719 148.894531 33.917969 149.925781 35.191406 149.925781 C 36.464844 149.925781 37.496094 148.894531 37.496094 147.621094 Z M 37.496094 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.128906 147.621094 C 19.128906 146.347656 18.097656 145.316406 16.824219 145.316406 C 15.550781 145.316406 14.519531 146.347656 14.519531 147.621094 C 14.519531 148.894531 15.550781 149.925781 16.824219 149.925781 C 18.097656 149.925781 19.128906 148.894531 19.128906 147.621094 Z M 19.128906 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.023438 147.621094 C 25.023438 146.347656 23.992188 145.316406 22.71875 145.316406 C 21.445312 145.316406 20.414062 146.347656 20.414062 147.621094 C 20.414062 148.894531 21.445312 149.925781 22.71875 149.925781 C 23.992188 149.925781 25.023438 148.894531 25.023438 147.621094 Z M 25.023438 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.4375 147.621094 C 33.4375 146.347656 32.40625 145.316406 31.132812 145.316406 C 29.859375 145.316406 28.828125 146.347656 28.828125 147.621094 C 28.828125 148.894531 29.859375 149.925781 31.132812 149.925781 C 32.40625 149.925781 33.4375 148.894531 33.4375 147.621094 Z M 33.4375 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.988281 147.621094 C 37.988281 146.347656 36.957031 145.316406 35.683594 145.316406 C 34.410156 145.316406 33.378906 146.347656 33.378906 147.621094 C 33.378906 148.894531 34.410156 149.925781 35.683594 149.925781 C 36.957031 149.925781 37.988281 148.894531 37.988281 147.621094 Z M 37.988281 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.839844 147.621094 C 22.839844 146.347656 21.808594 145.316406 20.535156 145.316406 C 19.261719 145.316406 18.230469 146.347656 18.230469 147.621094 C 18.230469 148.894531 19.261719 149.925781 20.535156 149.925781 C 21.808594 149.925781 22.839844 148.894531 22.839844 147.621094 Z M 22.839844 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.144531 147.621094 C 54.144531 146.347656 53.113281 145.316406 51.839844 145.316406 C 50.566406 145.316406 49.535156 146.347656 49.535156 147.621094 C 49.535156 148.894531 50.566406 149.925781 51.839844 149.925781 C 53.113281 149.925781 54.144531 148.894531 54.144531 147.621094 Z M 54.144531 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.378906 147.621094 C 36.378906 146.347656 35.347656 145.316406 34.074219 145.316406 C 32.800781 145.316406 31.769531 146.347656 31.769531 147.621094 C 31.769531 148.894531 32.800781 149.925781 34.074219 149.925781 C 35.347656 149.925781 36.378906 148.894531 36.378906 147.621094 Z M 36.378906 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 14.40625 147.621094 C 14.40625 146.347656 13.375 145.316406 12.101562 145.316406 C 10.828125 145.316406 9.796875 146.347656 9.796875 147.621094 C 9.796875 148.894531 10.828125 149.925781 12.101562 149.925781 C 13.375 149.925781 14.40625 148.894531 14.40625 147.621094 Z M 14.40625 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.972656 147.621094 C 35.972656 146.347656 34.941406 145.316406 33.667969 145.316406 C 32.394531 145.316406 31.363281 146.347656 31.363281 147.621094 C 31.363281 148.894531 32.394531 149.925781 33.667969 149.925781 C 34.941406 149.925781 35.972656 148.894531 35.972656 147.621094 Z M 35.972656 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.800781 147.621094 C 49.800781 146.347656 48.769531 145.316406 47.496094 145.316406 C 46.222656 145.316406 45.191406 146.347656 45.191406 147.621094 C 45.191406 148.894531 46.222656 149.925781 47.496094 149.925781 C 48.769531 149.925781 49.800781 148.894531 49.800781 147.621094 Z M 49.800781 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.707031 147.621094 C 26.707031 146.347656 25.675781 145.316406 24.402344 145.316406 C 23.128906 145.316406 22.097656 146.347656 22.097656 147.621094 C 22.097656 148.894531 23.128906 149.925781 24.402344 149.925781 C 25.675781 149.925781 26.707031 148.894531 26.707031 147.621094 Z M 26.707031 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.179688 147.621094 C 27.179688 146.347656 26.148438 145.316406 24.875 145.316406 C 23.601562 145.316406 22.570312 146.347656 22.570312 147.621094 C 22.570312 148.894531 23.601562 149.925781 24.875 149.925781 C 26.148438 149.925781 27.179688 148.894531 27.179688 147.621094 Z M 27.179688 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.640625 147.621094 C 55.640625 146.347656 54.609375 145.316406 53.335938 145.316406 C 52.0625 145.316406 51.03125 146.347656 51.03125 147.621094 C 51.03125 148.894531 52.0625 149.925781 53.335938 149.925781 C 54.609375 149.925781 55.640625 148.894531 55.640625 147.621094 Z M 55.640625 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.023438 147.621094 C 44.023438 146.347656 42.992188 145.316406 41.71875 145.316406 C 40.445312 145.316406 39.414062 146.347656 39.414062 147.621094 C 39.414062 148.894531 40.445312 149.925781 41.71875 149.925781 C 42.992188 149.925781 44.023438 148.894531 44.023438 147.621094 Z M 44.023438 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.707031 147.621094 C 25.707031 146.347656 24.675781 145.316406 23.402344 145.316406 C 22.128906 145.316406 21.097656 146.347656 21.097656 147.621094 C 21.097656 148.894531 22.128906 149.925781 23.402344 149.925781 C 24.675781 149.925781 25.707031 148.894531 25.707031 147.621094 Z M 25.707031 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.664062 147.621094 C 33.664062 146.347656 32.632812 145.316406 31.359375 145.316406 C 30.085938 145.316406 29.054688 146.347656 29.054688 147.621094 C 29.054688 148.894531 30.085938 149.925781 31.359375 149.925781 C 32.632812 149.925781 33.664062 148.894531 33.664062 147.621094 Z M 33.664062 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.910156 147.621094 C 41.910156 146.347656 40.878906 145.316406 39.605469 145.316406 C 38.332031 145.316406 37.300781 146.347656 37.300781 147.621094 C 37.300781 148.894531 38.332031 149.925781 39.605469 149.925781 C 40.878906 149.925781 41.910156 148.894531 41.910156 147.621094 Z M 41.910156 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 13.964844 147.621094 C 13.964844 146.347656 12.933594 145.316406 11.660156 145.316406 C 10.386719 145.316406 9.355469 146.347656 9.355469 147.621094 C 9.355469 148.894531 10.386719 149.925781 11.660156 149.925781 C 12.933594 149.925781 13.964844 148.894531 13.964844 147.621094 Z M 13.964844 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.300781 147.621094 C 37.300781 146.347656 36.269531 145.316406 34.996094 145.316406 C 33.722656 145.316406 32.691406 146.347656 32.691406 147.621094 C 32.691406 148.894531 33.722656 149.925781 34.996094 149.925781 C 36.269531 149.925781 37.300781 148.894531 37.300781 147.621094 Z M 37.300781 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.6875 147.621094 C 30.6875 146.347656 29.65625 145.316406 28.382812 145.316406 C 27.109375 145.316406 26.078125 146.347656 26.078125 147.621094 C 26.078125 148.894531 27.109375 149.925781 28.382812 149.925781 C 29.65625 149.925781 30.6875 148.894531 30.6875 147.621094 Z M 30.6875 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 18.785156 147.621094 C 18.785156 146.347656 17.753906 145.316406 16.480469 145.316406 C 15.207031 145.316406 14.175781 146.347656 14.175781 147.621094 C 14.175781 148.894531 15.207031 149.925781 16.480469 149.925781 C 17.753906 149.925781 18.785156 148.894531 18.785156 147.621094 Z M 18.785156 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.816406 147.621094 C 51.816406 146.347656 50.785156 145.316406 49.511719 145.316406 C 48.238281 145.316406 47.207031 146.347656 47.207031 147.621094 C 47.207031 148.894531 48.238281 149.925781 49.511719 149.925781 C 50.785156 149.925781 51.816406 148.894531 51.816406 147.621094 Z M 51.816406 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43 147.621094 C 43 146.347656 41.96875 145.316406 40.695312 145.316406 C 39.421875 145.316406 38.390625 146.347656 38.390625 147.621094 C 38.390625 148.894531 39.421875 149.925781 40.695312 149.925781 C 41.96875 149.925781 43 148.894531 43 147.621094 Z M 43 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.84375 147.621094 C 15.84375 146.347656 14.8125 145.316406 13.539062 145.316406 C 12.265625 145.316406 11.234375 146.347656 11.234375 147.621094 C 11.234375 148.894531 12.265625 149.925781 13.539062 149.925781 C 14.8125 149.925781 15.84375 148.894531 15.84375 147.621094 Z M 15.84375 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.539062 147.621094 C 22.539062 146.347656 21.507812 145.316406 20.234375 145.316406 C 18.960938 145.316406 17.929688 146.347656 17.929688 147.621094 C 17.929688 148.894531 18.960938 149.925781 20.234375 149.925781 C 21.507812 149.925781 22.539062 148.894531 22.539062 147.621094 Z M 22.539062 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.765625 147.621094 C 36.765625 146.347656 35.734375 145.316406 34.460938 145.316406 C 33.1875 145.316406 32.15625 146.347656 32.15625 147.621094 C 32.15625 148.894531 33.1875 149.925781 34.460938 149.925781 C 35.734375 149.925781 36.765625 148.894531 36.765625 147.621094 Z M 36.765625 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 14.082031 147.621094 C 14.082031 146.347656 13.050781 145.316406 11.777344 145.316406 C 10.503906 145.316406 9.472656 146.347656 9.472656 147.621094 C 9.472656 148.894531 10.503906 149.925781 11.777344 149.925781 C 13.050781 149.925781 14.082031 148.894531 14.082031 147.621094 Z M 14.082031 147.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.835938 142.777344 C 52.835938 141.503906 51.804688 140.472656 50.53125 140.472656 C 49.257812 140.472656 48.226562 141.503906 48.226562 142.777344 C 48.226562 144.050781 49.257812 145.082031 50.53125 145.082031 C 51.804688 145.082031 52.835938 144.050781 52.835938 142.777344 Z M 52.835938 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.242188 142.777344 C 20.242188 141.503906 19.210938 140.472656 17.9375 140.472656 C 16.664062 140.472656 15.632812 141.503906 15.632812 142.777344 C 15.632812 144.050781 16.664062 145.082031 17.9375 145.082031 C 19.210938 145.082031 20.242188 144.050781 20.242188 142.777344 Z M 20.242188 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.148438 142.777344 C 40.148438 141.503906 39.117188 140.472656 37.84375 140.472656 C 36.570312 140.472656 35.539062 141.503906 35.539062 142.777344 C 35.539062 144.050781 36.570312 145.082031 37.84375 145.082031 C 39.117188 145.082031 40.148438 144.050781 40.148438 142.777344 Z M 40.148438 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.136719 142.777344 C 22.136719 141.503906 21.105469 140.472656 19.832031 140.472656 C 18.558594 140.472656 17.527344 141.503906 17.527344 142.777344 C 17.527344 144.050781 18.558594 145.082031 19.832031 145.082031 C 21.105469 145.082031 22.136719 144.050781 22.136719 142.777344 Z M 22.136719 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.917969 142.777344 C 27.917969 141.503906 26.886719 140.472656 25.613281 140.472656 C 24.339844 140.472656 23.308594 141.503906 23.308594 142.777344 C 23.308594 144.050781 24.339844 145.082031 25.613281 145.082031 C 26.886719 145.082031 27.917969 144.050781 27.917969 142.777344 Z M 27.917969 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.167969 142.777344 C 36.167969 141.503906 35.136719 140.472656 33.863281 140.472656 C 32.589844 140.472656 31.558594 141.503906 31.558594 142.777344 C 31.558594 144.050781 32.589844 145.082031 33.863281 145.082031 C 35.136719 145.082031 36.167969 144.050781 36.167969 142.777344 Z M 36.167969 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.632812 142.777344 C 40.632812 141.503906 39.601562 140.472656 38.328125 140.472656 C 37.054688 140.472656 36.023438 141.503906 36.023438 142.777344 C 36.023438 144.050781 37.054688 145.082031 38.328125 145.082031 C 39.601562 145.082031 40.632812 144.050781 40.632812 142.777344 Z M 40.632812 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.773438 142.777344 C 25.773438 141.503906 24.742188 140.472656 23.46875 140.472656 C 22.195312 140.472656 21.164062 141.503906 21.164062 142.777344 C 21.164062 144.050781 22.195312 145.082031 23.46875 145.082031 C 24.742188 145.082031 25.773438 144.050781 25.773438 142.777344 Z M 25.773438 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.476562 142.777344 C 56.476562 141.503906 55.445312 140.472656 54.171875 140.472656 C 52.898438 140.472656 51.867188 141.503906 51.867188 142.777344 C 51.867188 144.050781 52.898438 145.082031 54.171875 145.082031 C 55.445312 145.082031 56.476562 144.050781 56.476562 142.777344 Z M 56.476562 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.054688 142.777344 C 39.054688 141.503906 38.023438 140.472656 36.75 140.472656 C 35.476562 140.472656 34.445312 141.503906 34.445312 142.777344 C 34.445312 144.050781 35.476562 145.082031 36.75 145.082031 C 38.023438 145.082031 39.054688 144.050781 39.054688 142.777344 Z M 39.054688 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 17.503906 142.777344 C 17.503906 141.503906 16.472656 140.472656 15.199219 140.472656 C 13.925781 140.472656 12.894531 141.503906 12.894531 142.777344 C 12.894531 144.050781 13.925781 145.082031 15.199219 145.082031 C 16.472656 145.082031 17.503906 144.050781 17.503906 142.777344 Z M 17.503906 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.65625 142.777344 C 38.65625 141.503906 37.625 140.472656 36.351562 140.472656 C 35.078125 140.472656 34.046875 141.503906 34.046875 142.777344 C 34.046875 144.050781 35.078125 145.082031 36.351562 145.082031 C 37.625 145.082031 38.65625 144.050781 38.65625 142.777344 Z M 38.65625 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.21875 142.777344 C 52.21875 141.503906 51.1875 140.472656 49.914062 140.472656 C 48.640625 140.472656 47.609375 141.503906 47.609375 142.777344 C 47.609375 144.050781 48.640625 145.082031 49.914062 145.082031 C 51.1875 145.082031 52.21875 144.050781 52.21875 142.777344 Z M 52.21875 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.566406 142.777344 C 29.566406 141.503906 28.535156 140.472656 27.261719 140.472656 C 25.988281 140.472656 24.957031 141.503906 24.957031 142.777344 C 24.957031 144.050781 25.988281 145.082031 27.261719 145.082031 C 28.535156 145.082031 29.566406 144.050781 29.566406 142.777344 Z M 29.566406 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.03125 142.777344 C 30.03125 141.503906 29 140.472656 27.726562 140.472656 C 26.453125 140.472656 25.421875 141.503906 25.421875 142.777344 C 25.421875 144.050781 26.453125 145.082031 27.726562 145.082031 C 29 145.082031 30.03125 144.050781 30.03125 142.777344 Z M 30.03125 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.945312 142.777344 C 57.945312 141.503906 56.914062 140.472656 55.640625 140.472656 C 54.367188 140.472656 53.335938 141.503906 53.335938 142.777344 C 53.335938 144.050781 54.367188 145.082031 55.640625 145.082031 C 56.914062 145.082031 57.945312 144.050781 57.945312 142.777344 Z M 57.945312 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.550781 142.777344 C 46.550781 141.503906 45.519531 140.472656 44.246094 140.472656 C 42.972656 140.472656 41.941406 141.503906 41.941406 142.777344 C 41.941406 144.050781 42.972656 145.082031 44.246094 145.082031 C 45.519531 145.082031 46.550781 144.050781 46.550781 142.777344 Z M 46.550781 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.585938 142.777344 C 28.585938 141.503906 27.554688 140.472656 26.28125 140.472656 C 25.007812 140.472656 23.976562 141.503906 23.976562 142.777344 C 23.976562 144.050781 25.007812 145.082031 26.28125 145.082031 C 27.554688 145.082031 28.585938 144.050781 28.585938 142.777344 Z M 28.585938 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.390625 142.777344 C 36.390625 141.503906 35.359375 140.472656 34.085938 140.472656 C 32.8125 140.472656 31.78125 141.503906 31.78125 142.777344 C 31.78125 144.050781 32.8125 145.082031 34.085938 145.082031 C 35.359375 145.082031 36.390625 144.050781 36.390625 142.777344 Z M 36.390625 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.476562 142.777344 C 44.476562 141.503906 43.445312 140.472656 42.171875 140.472656 C 40.898438 140.472656 39.867188 141.503906 39.867188 142.777344 C 39.867188 144.050781 40.898438 145.082031 42.171875 145.082031 C 43.445312 145.082031 44.476562 144.050781 44.476562 142.777344 Z M 44.476562 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 17.070312 142.777344 C 17.070312 141.503906 16.039062 140.472656 14.765625 140.472656 C 13.492188 140.472656 12.460938 141.503906 12.460938 142.777344 C 12.460938 144.050781 13.492188 145.082031 14.765625 145.082031 C 16.039062 145.082031 17.070312 144.050781 17.070312 142.777344 Z M 17.070312 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.957031 142.777344 C 39.957031 141.503906 38.925781 140.472656 37.652344 140.472656 C 36.378906 140.472656 35.347656 141.503906 35.347656 142.777344 C 35.347656 144.050781 36.378906 145.082031 37.652344 145.082031 C 38.925781 145.082031 39.957031 144.050781 39.957031 142.777344 Z M 39.957031 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.46875 142.777344 C 33.46875 141.503906 32.4375 140.472656 31.164062 140.472656 C 29.890625 140.472656 28.859375 141.503906 28.859375 142.777344 C 28.859375 144.050781 29.890625 145.082031 31.164062 145.082031 C 32.4375 145.082031 33.46875 144.050781 33.46875 142.777344 Z M 33.46875 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 21.796875 142.777344 C 21.796875 141.503906 20.765625 140.472656 19.492188 140.472656 C 18.21875 140.472656 17.1875 141.503906 17.1875 142.777344 C 17.1875 144.050781 18.21875 145.082031 19.492188 145.082031 C 20.765625 145.082031 21.796875 144.050781 21.796875 142.777344 Z M 21.796875 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.191406 142.777344 C 54.191406 141.503906 53.160156 140.472656 51.886719 140.472656 C 50.613281 140.472656 49.582031 141.503906 49.582031 142.777344 C 49.582031 144.050781 50.613281 145.082031 51.886719 145.082031 C 53.160156 145.082031 54.191406 144.050781 54.191406 142.777344 Z M 54.191406 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.546875 142.777344 C 45.546875 141.503906 44.515625 140.472656 43.242188 140.472656 C 41.96875 140.472656 40.9375 141.503906 40.9375 142.777344 C 40.9375 144.050781 41.96875 145.082031 43.242188 145.082031 C 44.515625 145.082031 45.546875 144.050781 45.546875 142.777344 Z M 45.546875 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 18.914062 142.777344 C 18.914062 141.503906 17.882812 140.472656 16.609375 140.472656 C 15.335938 140.472656 14.304688 141.503906 14.304688 142.777344 C 14.304688 144.050781 15.335938 145.082031 16.609375 145.082031 C 17.882812 145.082031 18.914062 144.050781 18.914062 142.777344 Z M 18.914062 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.480469 142.777344 C 25.480469 141.503906 24.449219 140.472656 23.175781 140.472656 C 21.902344 140.472656 20.871094 141.503906 20.871094 142.777344 C 20.871094 144.050781 21.902344 145.082031 23.175781 145.082031 C 24.449219 145.082031 25.480469 144.050781 25.480469 142.777344 Z M 25.480469 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.433594 142.777344 C 39.433594 141.503906 38.402344 140.472656 37.128906 140.472656 C 35.855469 140.472656 34.824219 141.503906 34.824219 142.777344 C 34.824219 144.050781 35.855469 145.082031 37.128906 145.082031 C 38.402344 145.082031 39.433594 144.050781 39.433594 142.777344 Z M 39.433594 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 17.183594 142.777344 C 17.183594 141.503906 16.152344 140.472656 14.878906 140.472656 C 13.605469 140.472656 12.574219 141.503906 12.574219 142.777344 C 12.574219 144.050781 13.605469 145.082031 14.878906 145.082031 C 16.152344 145.082031 17.183594 144.050781 17.183594 142.777344 Z M 17.183594 142.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.253906 137.933594 C 55.253906 136.660156 54.222656 135.628906 52.949219 135.628906 C 51.675781 135.628906 50.644531 136.660156 50.644531 137.933594 C 50.644531 139.207031 51.675781 140.238281 52.949219 140.238281 C 54.222656 140.238281 55.253906 139.207031 55.253906 137.933594 Z M 55.253906 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.625 137.933594 C 23.625 136.660156 22.59375 135.628906 21.320312 135.628906 C 20.046875 135.628906 19.015625 136.660156 19.015625 137.933594 C 19.015625 139.207031 20.046875 140.238281 21.320312 140.238281 C 22.59375 140.238281 23.625 139.207031 23.625 137.933594 Z M 23.625 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.941406 137.933594 C 42.941406 136.660156 41.910156 135.628906 40.636719 135.628906 C 39.363281 135.628906 38.332031 136.660156 38.332031 137.933594 C 38.332031 139.207031 39.363281 140.238281 40.636719 140.238281 C 41.910156 140.238281 42.941406 139.207031 42.941406 137.933594 Z M 42.941406 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.464844 137.933594 C 25.464844 136.660156 24.433594 135.628906 23.160156 135.628906 C 21.886719 135.628906 20.855469 136.660156 20.855469 137.933594 C 20.855469 139.207031 21.886719 140.238281 23.160156 140.238281 C 24.433594 140.238281 25.464844 139.207031 25.464844 137.933594 Z M 25.464844 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.074219 137.933594 C 31.074219 136.660156 30.042969 135.628906 28.769531 135.628906 C 27.496094 135.628906 26.464844 136.660156 26.464844 137.933594 C 26.464844 139.207031 27.496094 140.238281 28.769531 140.238281 C 30.042969 140.238281 31.074219 139.207031 31.074219 137.933594 Z M 31.074219 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.082031 137.933594 C 39.082031 136.660156 38.050781 135.628906 36.777344 135.628906 C 35.503906 135.628906 34.472656 136.660156 34.472656 137.933594 C 34.472656 139.207031 35.503906 140.238281 36.777344 140.238281 C 38.050781 140.238281 39.082031 139.207031 39.082031 137.933594 Z M 39.082031 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.414062 137.933594 C 43.414062 136.660156 42.382812 135.628906 41.109375 135.628906 C 39.835938 135.628906 38.804688 136.660156 38.804688 137.933594 C 38.804688 139.207031 39.835938 140.238281 41.109375 140.238281 C 42.382812 140.238281 43.414062 139.207031 43.414062 137.933594 Z M 43.414062 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.996094 137.933594 C 28.996094 136.660156 27.964844 135.628906 26.691406 135.628906 C 25.417969 135.628906 24.386719 136.660156 24.386719 137.933594 C 24.386719 139.207031 25.417969 140.238281 26.691406 140.238281 C 27.964844 140.238281 28.996094 139.207031 28.996094 137.933594 Z M 28.996094 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.789062 137.933594 C 58.789062 136.660156 57.757812 135.628906 56.484375 135.628906 C 55.210938 135.628906 54.179688 136.660156 54.179688 137.933594 C 54.179688 139.207031 55.210938 140.238281 56.484375 140.238281 C 57.757812 140.238281 58.789062 139.207031 58.789062 137.933594 Z M 58.789062 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.882812 137.933594 C 41.882812 136.660156 40.851562 135.628906 39.578125 135.628906 C 38.304688 135.628906 37.273438 136.660156 37.273438 137.933594 C 37.273438 139.207031 38.304688 140.238281 39.578125 140.238281 C 40.851562 140.238281 41.882812 139.207031 41.882812 137.933594 Z M 41.882812 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.96875 137.933594 C 20.96875 136.660156 19.9375 135.628906 18.664062 135.628906 C 17.390625 135.628906 16.359375 136.660156 16.359375 137.933594 C 16.359375 139.207031 17.390625 140.238281 18.664062 140.238281 C 19.9375 140.238281 20.96875 139.207031 20.96875 137.933594 Z M 20.96875 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.496094 137.933594 C 41.496094 136.660156 40.464844 135.628906 39.191406 135.628906 C 37.917969 135.628906 36.886719 136.660156 36.886719 137.933594 C 36.886719 139.207031 37.917969 140.238281 39.191406 140.238281 C 40.464844 140.238281 41.496094 139.207031 41.496094 137.933594 Z M 41.496094 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.316406 137.933594 C 71.316406 136.660156 70.285156 135.628906 69.011719 135.628906 C 67.738281 135.628906 66.707031 136.660156 66.707031 137.933594 C 66.707031 139.207031 67.738281 140.238281 69.011719 140.238281 C 70.285156 140.238281 71.316406 139.207031 71.316406 137.933594 Z M 71.316406 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.675781 137.933594 C 32.675781 136.660156 31.644531 135.628906 30.371094 135.628906 C 29.097656 135.628906 28.066406 136.660156 28.066406 137.933594 C 28.066406 139.207031 29.097656 140.238281 30.371094 140.238281 C 31.644531 140.238281 32.675781 139.207031 32.675781 137.933594 Z M 32.675781 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.128906 137.933594 C 33.128906 136.660156 32.097656 135.628906 30.824219 135.628906 C 29.550781 135.628906 28.519531 136.660156 28.519531 137.933594 C 28.519531 139.207031 29.550781 140.238281 30.824219 140.238281 C 32.097656 140.238281 33.128906 139.207031 33.128906 137.933594 Z M 33.128906 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.214844 137.933594 C 60.214844 136.660156 59.183594 135.628906 57.910156 135.628906 C 56.636719 135.628906 55.605469 136.660156 55.605469 137.933594 C 55.605469 139.207031 56.636719 140.238281 57.910156 140.238281 C 59.183594 140.238281 60.214844 139.207031 60.214844 137.933594 Z M 60.214844 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.15625 137.933594 C 49.15625 136.660156 48.125 135.628906 46.851562 135.628906 C 45.578125 135.628906 44.546875 136.660156 44.546875 137.933594 C 44.546875 139.207031 45.578125 140.238281 46.851562 140.238281 C 48.125 140.238281 49.15625 139.207031 49.15625 137.933594 Z M 49.15625 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.726562 137.933594 C 31.726562 136.660156 30.695312 135.628906 29.421875 135.628906 C 28.148438 135.628906 27.117188 136.660156 27.117188 137.933594 C 27.117188 139.207031 28.148438 140.238281 29.421875 140.238281 C 30.695312 140.238281 31.726562 139.207031 31.726562 137.933594 Z M 31.726562 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.300781 137.933594 C 39.300781 136.660156 38.269531 135.628906 36.996094 135.628906 C 35.722656 135.628906 34.691406 136.660156 34.691406 137.933594 C 34.691406 139.207031 35.722656 140.238281 36.996094 140.238281 C 38.269531 140.238281 39.300781 139.207031 39.300781 137.933594 Z M 39.300781 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.144531 137.933594 C 47.144531 136.660156 46.113281 135.628906 44.839844 135.628906 C 43.566406 135.628906 42.535156 136.660156 42.535156 137.933594 C 42.535156 139.207031 43.566406 140.238281 44.839844 140.238281 C 46.113281 140.238281 47.144531 139.207031 47.144531 137.933594 Z M 47.144531 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.546875 137.933594 C 20.546875 136.660156 19.515625 135.628906 18.242188 135.628906 C 16.96875 135.628906 15.9375 136.660156 15.9375 137.933594 C 15.9375 139.207031 16.96875 140.238281 18.242188 140.238281 C 19.515625 140.238281 20.546875 139.207031 20.546875 137.933594 Z M 20.546875 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.757812 137.933594 C 42.757812 136.660156 41.726562 135.628906 40.453125 135.628906 C 39.179688 135.628906 38.148438 136.660156 38.148438 137.933594 C 38.148438 139.207031 39.179688 140.238281 40.453125 140.238281 C 41.726562 140.238281 42.757812 139.207031 42.757812 137.933594 Z M 42.757812 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.464844 137.933594 C 36.464844 136.660156 35.433594 135.628906 34.160156 135.628906 C 32.886719 135.628906 31.855469 136.660156 31.855469 137.933594 C 31.855469 139.207031 32.886719 140.238281 34.160156 140.238281 C 35.433594 140.238281 36.464844 139.207031 36.464844 137.933594 Z M 36.464844 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.136719 137.933594 C 25.136719 136.660156 24.105469 135.628906 22.832031 135.628906 C 21.558594 135.628906 20.527344 136.660156 20.527344 137.933594 C 20.527344 139.207031 21.558594 140.238281 22.832031 140.238281 C 24.105469 140.238281 25.136719 139.207031 25.136719 137.933594 Z M 25.136719 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.574219 137.933594 C 56.574219 136.660156 55.542969 135.628906 54.269531 135.628906 C 52.996094 135.628906 51.964844 136.660156 51.964844 137.933594 C 51.964844 139.207031 52.996094 140.238281 54.269531 140.238281 C 55.542969 140.238281 56.574219 139.207031 56.574219 137.933594 Z M 56.574219 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.183594 137.933594 C 48.183594 136.660156 47.152344 135.628906 45.878906 135.628906 C 44.605469 135.628906 43.574219 136.660156 43.574219 137.933594 C 43.574219 139.207031 44.605469 140.238281 45.878906 140.238281 C 47.152344 140.238281 48.183594 139.207031 48.183594 137.933594 Z M 48.183594 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.335938 137.933594 C 22.335938 136.660156 21.304688 135.628906 20.03125 135.628906 C 18.757812 135.628906 17.726562 136.660156 17.726562 137.933594 C 17.726562 139.207031 18.757812 140.238281 20.03125 140.238281 C 21.304688 140.238281 22.335938 139.207031 22.335938 137.933594 Z M 22.335938 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.710938 137.933594 C 28.710938 136.660156 27.679688 135.628906 26.40625 135.628906 C 25.132812 135.628906 24.101562 136.660156 24.101562 137.933594 C 24.101562 139.207031 25.132812 140.238281 26.40625 140.238281 C 27.679688 140.238281 28.710938 139.207031 28.710938 137.933594 Z M 28.710938 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.25 137.933594 C 42.25 136.660156 41.21875 135.628906 39.945312 135.628906 C 38.671875 135.628906 37.640625 136.660156 37.640625 137.933594 C 37.640625 139.207031 38.671875 140.238281 39.945312 140.238281 C 41.21875 140.238281 42.25 139.207031 42.25 137.933594 Z M 42.25 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.660156 137.933594 C 20.660156 136.660156 19.628906 135.628906 18.355469 135.628906 C 17.082031 135.628906 16.050781 136.660156 16.050781 137.933594 C 16.050781 139.207031 17.082031 140.238281 18.355469 140.238281 C 19.628906 140.238281 20.660156 139.207031 20.660156 137.933594 Z M 20.660156 137.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.667969 133.089844 C 57.667969 131.816406 56.636719 130.785156 55.363281 130.785156 C 54.089844 130.785156 53.058594 131.816406 53.058594 133.089844 C 53.058594 134.363281 54.089844 135.394531 55.363281 135.394531 C 56.636719 135.394531 57.667969 134.363281 57.667969 133.089844 Z M 57.667969 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.320312 133.089844 C 27.320312 131.816406 26.289062 130.785156 25.015625 130.785156 C 23.742188 130.785156 22.710938 131.816406 22.710938 133.089844 C 22.710938 134.363281 23.742188 135.394531 25.015625 135.394531 C 26.289062 135.394531 27.320312 134.363281 27.320312 133.089844 Z M 27.320312 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.855469 133.089844 C 45.855469 131.816406 44.824219 130.785156 43.550781 130.785156 C 42.277344 130.785156 41.246094 131.816406 41.246094 133.089844 C 41.246094 134.363281 42.277344 135.394531 43.550781 135.394531 C 44.824219 135.394531 45.855469 134.363281 45.855469 133.089844 Z M 45.855469 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.082031 133.089844 C 29.082031 131.816406 28.050781 130.785156 26.777344 130.785156 C 25.503906 130.785156 24.472656 131.816406 24.472656 133.089844 C 24.472656 134.363281 25.503906 135.394531 26.777344 135.394531 C 28.050781 135.394531 29.082031 134.363281 29.082031 133.089844 Z M 29.082031 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.464844 133.089844 C 34.464844 131.816406 33.433594 130.785156 32.160156 130.785156 C 30.886719 130.785156 29.855469 131.816406 29.855469 133.089844 C 29.855469 134.363281 30.886719 135.394531 32.160156 135.394531 C 33.433594 135.394531 34.464844 134.363281 34.464844 133.089844 Z M 34.464844 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.148438 133.089844 C 42.148438 131.816406 41.117188 130.785156 39.84375 130.785156 C 38.570312 130.785156 37.539062 131.816406 37.539062 133.089844 C 37.539062 134.363281 38.570312 135.394531 39.84375 135.394531 C 41.117188 135.394531 42.148438 134.363281 42.148438 133.089844 Z M 42.148438 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.304688 133.089844 C 46.304688 131.816406 45.273438 130.785156 44 130.785156 C 42.726562 130.785156 41.695312 131.816406 41.695312 133.089844 C 41.695312 134.363281 42.726562 135.394531 44 135.394531 C 45.273438 135.394531 46.304688 134.363281 46.304688 133.089844 Z M 46.304688 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.472656 133.089844 C 32.472656 131.816406 31.441406 130.785156 30.167969 130.785156 C 28.894531 130.785156 27.863281 131.816406 27.863281 133.089844 C 27.863281 134.363281 28.894531 135.394531 30.167969 135.394531 C 31.441406 135.394531 32.472656 134.363281 32.472656 133.089844 Z M 32.472656 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.058594 133.089844 C 61.058594 131.816406 60.027344 130.785156 58.753906 130.785156 C 57.480469 130.785156 56.449219 131.816406 56.449219 133.089844 C 56.449219 134.363281 57.480469 135.394531 58.753906 135.394531 C 60.027344 135.394531 61.058594 134.363281 61.058594 133.089844 Z M 61.058594 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.835938 133.089844 C 44.835938 131.816406 43.804688 130.785156 42.53125 130.785156 C 41.257812 130.785156 40.226562 131.816406 40.226562 133.089844 C 40.226562 134.363281 41.257812 135.394531 42.53125 135.394531 C 43.804688 135.394531 44.835938 134.363281 44.835938 133.089844 Z M 44.835938 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.769531 133.089844 C 24.769531 131.816406 23.738281 130.785156 22.464844 130.785156 C 21.191406 130.785156 20.160156 131.816406 20.160156 133.089844 C 20.160156 134.363281 21.191406 135.394531 22.464844 135.394531 C 23.738281 135.394531 24.769531 134.363281 24.769531 133.089844 Z M 24.769531 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.464844 133.089844 C 44.464844 131.816406 43.433594 130.785156 42.160156 130.785156 C 40.886719 130.785156 39.855469 131.816406 39.855469 133.089844 C 39.855469 134.363281 40.886719 135.394531 42.160156 135.394531 C 43.433594 135.394531 44.464844 134.363281 44.464844 133.089844 Z M 44.464844 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.09375 133.089844 C 57.09375 131.816406 56.0625 130.785156 54.789062 130.785156 C 53.515625 130.785156 52.484375 131.816406 52.484375 133.089844 C 52.484375 134.363281 53.515625 135.394531 54.789062 135.394531 C 56.0625 135.394531 57.09375 134.363281 57.09375 133.089844 Z M 57.09375 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.003906 133.089844 C 36.003906 131.816406 34.972656 130.785156 33.699219 130.785156 C 32.425781 130.785156 31.394531 131.816406 31.394531 133.089844 C 31.394531 134.363281 32.425781 135.394531 33.699219 135.394531 C 34.972656 135.394531 36.003906 134.363281 36.003906 133.089844 Z M 36.003906 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.4375 133.089844 C 36.4375 131.816406 35.40625 130.785156 34.132812 130.785156 C 32.859375 130.785156 31.828125 131.816406 31.828125 133.089844 C 31.828125 134.363281 32.859375 135.394531 34.132812 135.394531 C 35.40625 135.394531 36.4375 134.363281 36.4375 133.089844 Z M 36.4375 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.425781 133.089844 C 62.425781 131.816406 61.394531 130.785156 60.121094 130.785156 C 58.847656 130.785156 57.816406 131.816406 57.816406 133.089844 C 57.816406 134.363281 58.847656 135.394531 60.121094 135.394531 C 61.394531 135.394531 62.425781 134.363281 62.425781 133.089844 Z M 62.425781 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.816406 133.089844 C 51.816406 131.816406 50.785156 130.785156 49.511719 130.785156 C 48.238281 130.785156 47.207031 131.816406 47.207031 133.089844 C 47.207031 134.363281 48.238281 135.394531 49.511719 135.394531 C 50.785156 135.394531 51.816406 134.363281 51.816406 133.089844 Z M 51.816406 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.089844 133.089844 C 35.089844 131.816406 34.058594 130.785156 32.785156 130.785156 C 31.511719 130.785156 30.480469 131.816406 30.480469 133.089844 C 30.480469 134.363281 31.511719 135.394531 32.785156 135.394531 C 34.058594 135.394531 35.089844 134.363281 35.089844 133.089844 Z M 35.089844 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.359375 133.089844 C 42.359375 131.816406 41.328125 130.785156 40.054688 130.785156 C 38.78125 130.785156 37.75 131.816406 37.75 133.089844 C 37.75 134.363281 38.78125 135.394531 40.054688 135.394531 C 41.328125 135.394531 42.359375 134.363281 42.359375 133.089844 Z M 42.359375 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.886719 133.089844 C 49.886719 131.816406 48.855469 130.785156 47.582031 130.785156 C 46.308594 130.785156 45.277344 131.816406 45.277344 133.089844 C 45.277344 134.363281 46.308594 135.394531 47.582031 135.394531 C 48.855469 135.394531 49.886719 134.363281 49.886719 133.089844 Z M 49.886719 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.367188 133.089844 C 24.367188 131.816406 23.335938 130.785156 22.0625 130.785156 C 20.789062 130.785156 19.757812 131.816406 19.757812 133.089844 C 19.757812 134.363281 20.789062 135.394531 22.0625 135.394531 C 23.335938 135.394531 24.367188 134.363281 24.367188 133.089844 Z M 24.367188 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.679688 133.089844 C 45.679688 131.816406 44.648438 130.785156 43.375 130.785156 C 42.101562 130.785156 41.070312 131.816406 41.070312 133.089844 C 41.070312 134.363281 42.101562 135.394531 43.375 135.394531 C 44.648438 135.394531 45.679688 134.363281 45.679688 133.089844 Z M 45.679688 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.636719 133.089844 C 39.636719 131.816406 38.605469 130.785156 37.332031 130.785156 C 36.058594 130.785156 35.027344 131.816406 35.027344 133.089844 C 35.027344 134.363281 36.058594 135.394531 37.332031 135.394531 C 38.605469 135.394531 39.636719 134.363281 39.636719 133.089844 Z M 39.636719 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.769531 133.089844 C 28.769531 131.816406 27.738281 130.785156 26.464844 130.785156 C 25.191406 130.785156 24.160156 131.816406 24.160156 133.089844 C 24.160156 134.363281 25.191406 135.394531 26.464844 135.394531 C 27.738281 135.394531 28.769531 134.363281 28.769531 133.089844 Z M 28.769531 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.933594 133.089844 C 58.933594 131.816406 57.902344 130.785156 56.628906 130.785156 C 55.355469 130.785156 54.324219 131.816406 54.324219 133.089844 C 54.324219 134.363281 55.355469 135.394531 56.628906 135.394531 C 57.902344 135.394531 58.933594 134.363281 58.933594 133.089844 Z M 58.933594 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.882812 133.089844 C 50.882812 131.816406 49.851562 130.785156 48.578125 130.785156 C 47.304688 130.785156 46.273438 131.816406 46.273438 133.089844 C 46.273438 134.363281 47.304688 135.394531 48.578125 135.394531 C 49.851562 135.394531 50.882812 134.363281 50.882812 133.089844 Z M 50.882812 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.082031 133.089844 C 26.082031 131.816406 25.050781 130.785156 23.777344 130.785156 C 22.503906 130.785156 21.472656 131.816406 21.472656 133.089844 C 21.472656 134.363281 22.503906 135.394531 23.777344 135.394531 C 25.050781 135.394531 26.082031 134.363281 26.082031 133.089844 Z M 26.082031 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.199219 133.089844 C 32.199219 131.816406 31.167969 130.785156 29.894531 130.785156 C 28.621094 130.785156 27.589844 131.816406 27.589844 133.089844 C 27.589844 134.363281 28.621094 135.394531 29.894531 135.394531 C 31.167969 135.394531 32.199219 134.363281 32.199219 133.089844 Z M 32.199219 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.191406 133.089844 C 45.191406 131.816406 44.160156 130.785156 42.886719 130.785156 C 41.613281 130.785156 40.582031 131.816406 40.582031 133.089844 C 40.582031 134.363281 41.613281 135.394531 42.886719 135.394531 C 44.160156 135.394531 45.191406 134.363281 45.191406 133.089844 Z M 45.191406 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.472656 133.089844 C 24.472656 131.816406 23.441406 130.785156 22.167969 130.785156 C 20.894531 130.785156 19.863281 131.816406 19.863281 133.089844 C 19.863281 134.363281 20.894531 135.394531 22.167969 135.394531 C 23.441406 135.394531 24.472656 134.363281 24.472656 133.089844 Z M 24.472656 133.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.050781 128.246094 C 60.050781 126.972656 59.019531 125.941406 57.746094 125.941406 C 56.472656 125.941406 55.441406 126.972656 55.441406 128.246094 C 55.441406 129.519531 56.472656 130.550781 57.746094 130.550781 C 59.019531 130.550781 60.050781 129.519531 60.050781 128.246094 Z M 60.050781 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.285156 128.246094 C 31.285156 126.972656 30.253906 125.941406 28.980469 125.941406 C 27.707031 125.941406 26.675781 126.972656 26.675781 128.246094 C 26.675781 129.519531 27.707031 130.550781 28.980469 130.550781 C 30.253906 130.550781 31.285156 129.519531 31.285156 128.246094 Z M 31.285156 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.851562 128.246094 C 48.851562 126.972656 47.820312 125.941406 46.546875 125.941406 C 45.273438 125.941406 44.242188 126.972656 44.242188 128.246094 C 44.242188 129.519531 45.273438 130.550781 46.546875 130.550781 C 47.820312 130.550781 48.851562 129.519531 48.851562 128.246094 Z M 48.851562 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.957031 128.246094 C 32.957031 126.972656 31.925781 125.941406 30.652344 125.941406 C 29.378906 125.941406 28.347656 126.972656 28.347656 128.246094 C 28.347656 129.519531 29.378906 130.550781 30.652344 130.550781 C 31.925781 130.550781 32.957031 129.519531 32.957031 128.246094 Z M 32.957031 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.058594 128.246094 C 38.058594 126.972656 37.027344 125.941406 35.753906 125.941406 C 34.480469 125.941406 33.449219 126.972656 33.449219 128.246094 C 33.449219 129.519531 34.480469 130.550781 35.753906 130.550781 C 37.027344 130.550781 38.058594 129.519531 38.058594 128.246094 Z M 38.058594 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.339844 128.246094 C 45.339844 126.972656 44.308594 125.941406 43.035156 125.941406 C 41.761719 125.941406 40.730469 126.972656 40.730469 128.246094 C 40.730469 129.519531 41.761719 130.550781 43.035156 130.550781 C 44.308594 130.550781 45.339844 129.519531 45.339844 128.246094 Z M 45.339844 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.28125 128.246094 C 49.28125 126.972656 48.25 125.941406 46.976562 125.941406 C 45.703125 125.941406 44.671875 126.972656 44.671875 128.246094 C 44.671875 129.519531 45.703125 130.550781 46.976562 130.550781 C 48.25 130.550781 49.28125 129.519531 49.28125 128.246094 Z M 49.28125 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.167969 128.246094 C 36.167969 126.972656 35.136719 125.941406 33.863281 125.941406 C 32.589844 125.941406 31.558594 126.972656 31.558594 128.246094 C 31.558594 129.519531 32.589844 130.550781 33.863281 130.550781 C 35.136719 130.550781 36.167969 129.519531 36.167969 128.246094 Z M 36.167969 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.261719 128.246094 C 63.261719 126.972656 62.230469 125.941406 60.957031 125.941406 C 59.683594 125.941406 58.652344 126.972656 58.652344 128.246094 C 58.652344 129.519531 59.683594 130.550781 60.957031 130.550781 C 62.230469 130.550781 63.261719 129.519531 63.261719 128.246094 Z M 63.261719 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.886719 128.246094 C 47.886719 126.972656 46.855469 125.941406 45.582031 125.941406 C 44.308594 125.941406 43.277344 126.972656 43.277344 128.246094 C 43.277344 129.519531 44.308594 130.550781 45.582031 130.550781 C 46.855469 130.550781 47.886719 129.519531 47.886719 128.246094 Z M 47.886719 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.867188 128.246094 C 28.867188 126.972656 27.835938 125.941406 26.5625 125.941406 C 25.289062 125.941406 24.257812 126.972656 24.257812 128.246094 C 24.257812 129.519531 25.289062 130.550781 26.5625 130.550781 C 27.835938 130.550781 28.867188 129.519531 28.867188 128.246094 Z M 28.867188 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.535156 128.246094 C 47.535156 126.972656 46.503906 125.941406 45.230469 125.941406 C 43.957031 125.941406 42.925781 126.972656 42.925781 128.246094 C 42.925781 129.519531 43.957031 130.550781 45.230469 130.550781 C 46.503906 130.550781 47.535156 129.519531 47.535156 128.246094 Z M 47.535156 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 59.503906 128.246094 C 59.503906 126.972656 58.472656 125.941406 57.199219 125.941406 C 55.925781 125.941406 54.894531 126.972656 54.894531 128.246094 C 54.894531 129.519531 55.925781 130.550781 57.199219 130.550781 C 58.472656 130.550781 59.503906 129.519531 59.503906 128.246094 Z M 59.503906 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.515625 128.246094 C 39.515625 126.972656 38.484375 125.941406 37.210938 125.941406 C 35.9375 125.941406 34.90625 126.972656 34.90625 128.246094 C 34.90625 129.519531 35.9375 130.550781 37.210938 130.550781 C 38.484375 130.550781 39.515625 129.519531 39.515625 128.246094 Z M 39.515625 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.925781 128.246094 C 39.925781 126.972656 38.894531 125.941406 37.621094 125.941406 C 36.347656 125.941406 35.316406 126.972656 35.316406 128.246094 C 35.316406 129.519531 36.347656 130.550781 37.621094 130.550781 C 38.894531 130.550781 39.925781 129.519531 39.925781 128.246094 Z M 39.925781 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.558594 128.246094 C 64.558594 126.972656 63.527344 125.941406 62.253906 125.941406 C 60.980469 125.941406 59.949219 126.972656 59.949219 128.246094 C 59.949219 129.519531 60.980469 130.550781 62.253906 130.550781 C 63.527344 130.550781 64.558594 129.519531 64.558594 128.246094 Z M 64.558594 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.4375 128.246094 C 69.4375 126.972656 68.40625 125.941406 67.132812 125.941406 C 65.859375 125.941406 64.828125 126.972656 64.828125 128.246094 C 64.828125 129.519531 65.859375 130.550781 67.132812 130.550781 C 68.40625 130.550781 69.4375 129.519531 69.4375 128.246094 Z M 69.4375 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.652344 128.246094 C 38.652344 126.972656 37.621094 125.941406 36.347656 125.941406 C 35.074219 125.941406 34.042969 126.972656 34.042969 128.246094 C 34.042969 129.519531 35.074219 130.550781 36.347656 130.550781 C 37.621094 130.550781 38.652344 129.519531 38.652344 128.246094 Z M 38.652344 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.539062 128.246094 C 45.539062 126.972656 44.507812 125.941406 43.234375 125.941406 C 41.960938 125.941406 40.929688 126.972656 40.929688 128.246094 C 40.929688 129.519531 41.960938 130.550781 43.234375 130.550781 C 44.507812 130.550781 45.539062 129.519531 45.539062 128.246094 Z M 45.539062 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.675781 128.246094 C 52.675781 126.972656 51.644531 125.941406 50.371094 125.941406 C 49.097656 125.941406 48.066406 126.972656 48.066406 128.246094 C 48.066406 129.519531 49.097656 130.550781 50.371094 130.550781 C 51.644531 130.550781 52.675781 129.519531 52.675781 128.246094 Z M 52.675781 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.484375 128.246094 C 28.484375 126.972656 27.453125 125.941406 26.179688 125.941406 C 24.90625 125.941406 23.875 126.972656 23.875 128.246094 C 23.875 129.519531 24.90625 130.550781 26.179688 130.550781 C 27.453125 130.550781 28.484375 129.519531 28.484375 128.246094 Z M 28.484375 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.683594 128.246094 C 48.683594 126.972656 47.652344 125.941406 46.378906 125.941406 C 45.105469 125.941406 44.074219 126.972656 44.074219 128.246094 C 44.074219 129.519531 45.105469 130.550781 46.378906 130.550781 C 47.652344 130.550781 48.683594 129.519531 48.683594 128.246094 Z M 48.683594 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.960938 128.246094 C 42.960938 126.972656 41.929688 125.941406 40.65625 125.941406 C 39.382812 125.941406 38.351562 126.972656 38.351562 128.246094 C 38.351562 129.519531 39.382812 130.550781 40.65625 130.550781 C 41.929688 130.550781 42.960938 129.519531 42.960938 128.246094 Z M 42.960938 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.65625 128.246094 C 32.65625 126.972656 31.625 125.941406 30.351562 125.941406 C 29.078125 125.941406 28.046875 126.972656 28.046875 128.246094 C 28.046875 129.519531 29.078125 130.550781 30.351562 130.550781 C 31.625 130.550781 32.65625 129.519531 32.65625 128.246094 Z M 32.65625 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.25 128.246094 C 61.25 126.972656 60.21875 125.941406 58.945312 125.941406 C 57.671875 125.941406 56.640625 126.972656 56.640625 128.246094 C 56.640625 129.519531 57.671875 130.550781 58.945312 130.550781 C 60.21875 130.550781 61.25 129.519531 61.25 128.246094 Z M 61.25 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.617188 128.246094 C 53.617188 126.972656 52.585938 125.941406 51.3125 125.941406 C 50.039062 125.941406 49.007812 126.972656 49.007812 128.246094 C 49.007812 129.519531 50.039062 130.550781 51.3125 130.550781 C 52.585938 130.550781 53.617188 129.519531 53.617188 128.246094 Z M 53.617188 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.113281 128.246094 C 30.113281 126.972656 29.082031 125.941406 27.808594 125.941406 C 26.535156 125.941406 25.503906 126.972656 25.503906 128.246094 C 25.503906 129.519531 26.535156 130.550781 27.808594 130.550781 C 29.082031 130.550781 30.113281 129.519531 30.113281 128.246094 Z M 30.113281 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.90625 128.246094 C 35.90625 126.972656 34.875 125.941406 33.601562 125.941406 C 32.328125 125.941406 31.296875 126.972656 31.296875 128.246094 C 31.296875 129.519531 32.328125 130.550781 33.601562 130.550781 C 34.875 130.550781 35.90625 129.519531 35.90625 128.246094 Z M 35.90625 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.222656 128.246094 C 48.222656 126.972656 47.191406 125.941406 45.917969 125.941406 C 44.644531 125.941406 43.613281 126.972656 43.613281 128.246094 C 43.613281 129.519531 44.644531 130.550781 45.917969 130.550781 C 47.191406 130.550781 48.222656 129.519531 48.222656 128.246094 Z M 48.222656 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.585938 128.246094 C 28.585938 126.972656 27.554688 125.941406 26.28125 125.941406 C 25.007812 125.941406 23.976562 126.972656 23.976562 128.246094 C 23.976562 129.519531 25.007812 130.550781 26.28125 130.550781 C 27.554688 130.550781 28.585938 129.519531 28.585938 128.246094 Z M 28.585938 128.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.375 123.402344 C 62.375 122.128906 61.34375 121.097656 60.070312 121.097656 C 58.796875 121.097656 57.765625 122.128906 57.765625 123.402344 C 57.765625 124.675781 58.796875 125.707031 60.070312 125.707031 C 61.34375 125.707031 62.375 124.675781 62.375 123.402344 Z M 62.375 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.480469 123.402344 C 35.480469 122.128906 34.449219 121.097656 33.175781 121.097656 C 31.902344 121.097656 30.871094 122.128906 30.871094 123.402344 C 30.871094 124.675781 31.902344 125.707031 33.175781 125.707031 C 34.449219 125.707031 35.480469 124.675781 35.480469 123.402344 Z M 35.480469 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.90625 123.402344 C 51.90625 122.128906 50.875 121.097656 49.601562 121.097656 C 48.328125 121.097656 47.296875 122.128906 47.296875 123.402344 C 47.296875 124.675781 48.328125 125.707031 49.601562 125.707031 C 50.875 125.707031 51.90625 124.675781 51.90625 123.402344 Z M 51.90625 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.042969 123.402344 C 37.042969 122.128906 36.011719 121.097656 34.738281 121.097656 C 33.464844 121.097656 32.433594 122.128906 32.433594 123.402344 C 32.433594 124.675781 33.464844 125.707031 34.738281 125.707031 C 36.011719 125.707031 37.042969 124.675781 37.042969 123.402344 Z M 37.042969 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.816406 123.402344 C 41.816406 122.128906 40.785156 121.097656 39.511719 121.097656 C 38.238281 121.097656 37.207031 122.128906 37.207031 123.402344 C 37.207031 124.675781 38.238281 125.707031 39.511719 125.707031 C 40.785156 125.707031 41.816406 124.675781 41.816406 123.402344 Z M 41.816406 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.625 123.402344 C 48.625 122.128906 47.59375 121.097656 46.320312 121.097656 C 45.046875 121.097656 44.015625 122.128906 44.015625 123.402344 C 44.015625 124.675781 45.046875 125.707031 46.320312 125.707031 C 47.59375 125.707031 48.625 124.675781 48.625 123.402344 Z M 48.625 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.304688 123.402344 C 52.304688 122.128906 51.273438 121.097656 50 121.097656 C 48.726562 121.097656 47.695312 122.128906 47.695312 123.402344 C 47.695312 124.675781 48.726562 125.707031 50 125.707031 C 51.273438 125.707031 52.304688 124.675781 52.304688 123.402344 Z M 52.304688 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.046875 123.402344 C 40.046875 122.128906 39.015625 121.097656 37.742188 121.097656 C 36.46875 121.097656 35.4375 122.128906 35.4375 123.402344 C 35.4375 124.675781 36.46875 125.707031 37.742188 125.707031 C 39.015625 125.707031 40.046875 124.675781 40.046875 123.402344 Z M 40.046875 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.378906 123.402344 C 65.378906 122.128906 64.347656 121.097656 63.074219 121.097656 C 61.800781 121.097656 60.769531 122.128906 60.769531 123.402344 C 60.769531 124.675781 61.800781 125.707031 63.074219 125.707031 C 64.347656 125.707031 65.378906 124.675781 65.378906 123.402344 Z M 65.378906 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.003906 123.402344 C 51.003906 122.128906 49.972656 121.097656 48.699219 121.097656 C 47.425781 121.097656 46.394531 122.128906 46.394531 123.402344 C 46.394531 124.675781 47.425781 125.707031 48.699219 125.707031 C 49.972656 125.707031 51.003906 124.675781 51.003906 123.402344 Z M 51.003906 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.222656 123.402344 C 33.222656 122.128906 32.191406 121.097656 30.917969 121.097656 C 29.644531 121.097656 28.613281 122.128906 28.613281 123.402344 C 28.613281 124.675781 29.644531 125.707031 30.917969 125.707031 C 32.191406 125.707031 33.222656 124.675781 33.222656 123.402344 Z M 33.222656 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.675781 123.402344 C 50.675781 122.128906 49.644531 121.097656 48.371094 121.097656 C 47.097656 121.097656 46.066406 122.128906 46.066406 123.402344 C 46.066406 124.675781 47.097656 125.707031 48.371094 125.707031 C 49.644531 125.707031 50.675781 124.675781 50.675781 123.402344 Z M 50.675781 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.867188 123.402344 C 61.867188 122.128906 60.835938 121.097656 59.5625 121.097656 C 58.289062 121.097656 57.257812 122.128906 57.257812 123.402344 C 57.257812 124.675781 58.289062 125.707031 59.5625 125.707031 C 60.835938 125.707031 61.867188 124.675781 61.867188 123.402344 Z M 61.867188 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.175781 123.402344 C 43.175781 122.128906 42.144531 121.097656 40.871094 121.097656 C 39.597656 121.097656 38.566406 122.128906 38.566406 123.402344 C 38.566406 124.675781 39.597656 125.707031 40.871094 125.707031 C 42.144531 125.707031 43.175781 124.675781 43.175781 123.402344 Z M 43.175781 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.558594 123.402344 C 43.558594 122.128906 42.527344 121.097656 41.253906 121.097656 C 39.980469 121.097656 38.949219 122.128906 38.949219 123.402344 C 38.949219 124.675781 39.980469 125.707031 41.253906 125.707031 C 42.527344 125.707031 43.558594 124.675781 43.558594 123.402344 Z M 43.558594 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.589844 123.402344 C 66.589844 122.128906 65.558594 121.097656 64.285156 121.097656 C 63.011719 121.097656 61.980469 122.128906 61.980469 123.402344 C 61.980469 124.675781 63.011719 125.707031 64.285156 125.707031 C 65.558594 125.707031 66.589844 124.675781 66.589844 123.402344 Z M 66.589844 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.191406 123.402344 C 57.191406 122.128906 56.160156 121.097656 54.886719 121.097656 C 53.613281 121.097656 52.582031 122.128906 52.582031 123.402344 C 52.582031 124.675781 53.613281 125.707031 54.886719 125.707031 C 56.160156 125.707031 57.191406 124.675781 57.191406 123.402344 Z M 57.191406 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.367188 123.402344 C 42.367188 122.128906 41.335938 121.097656 40.0625 121.097656 C 38.789062 121.097656 37.757812 122.128906 37.757812 123.402344 C 37.757812 124.675781 38.789062 125.707031 40.0625 125.707031 C 41.335938 125.707031 42.367188 124.675781 42.367188 123.402344 Z M 42.367188 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.808594 123.402344 C 48.808594 122.128906 47.777344 121.097656 46.503906 121.097656 C 45.230469 121.097656 44.199219 122.128906 44.199219 123.402344 C 44.199219 124.675781 45.230469 125.707031 46.503906 125.707031 C 47.777344 125.707031 48.808594 124.675781 48.808594 123.402344 Z M 48.808594 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.480469 123.402344 C 55.480469 122.128906 54.449219 121.097656 53.175781 121.097656 C 51.902344 121.097656 50.871094 122.128906 50.871094 123.402344 C 50.871094 124.675781 51.902344 125.707031 53.175781 125.707031 C 54.449219 125.707031 55.480469 124.675781 55.480469 123.402344 Z M 55.480469 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.863281 123.402344 C 32.863281 122.128906 31.832031 121.097656 30.558594 121.097656 C 29.285156 121.097656 28.253906 122.128906 28.253906 123.402344 C 28.253906 124.675781 29.285156 125.707031 30.558594 125.707031 C 31.832031 125.707031 32.863281 124.675781 32.863281 123.402344 Z M 32.863281 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.75 123.402344 C 51.75 122.128906 50.71875 121.097656 49.445312 121.097656 C 48.171875 121.097656 47.140625 122.128906 47.140625 123.402344 C 47.140625 124.675781 48.171875 125.707031 49.445312 125.707031 C 50.71875 125.707031 51.75 124.675781 51.75 123.402344 Z M 51.75 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.394531 123.402344 C 46.394531 122.128906 45.363281 121.097656 44.089844 121.097656 C 42.816406 121.097656 41.785156 122.128906 41.785156 123.402344 C 41.785156 124.675781 42.816406 125.707031 44.089844 125.707031 C 45.363281 125.707031 46.394531 124.675781 46.394531 123.402344 Z M 46.394531 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.765625 123.402344 C 36.765625 122.128906 35.734375 121.097656 34.460938 121.097656 C 33.1875 121.097656 32.15625 122.128906 32.15625 123.402344 C 32.15625 124.675781 33.1875 125.707031 34.460938 125.707031 C 35.734375 125.707031 36.765625 124.675781 36.765625 123.402344 Z M 36.765625 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.496094 123.402344 C 63.496094 122.128906 62.464844 121.097656 61.191406 121.097656 C 59.917969 121.097656 58.886719 122.128906 58.886719 123.402344 C 58.886719 124.675781 59.917969 125.707031 61.191406 125.707031 C 62.464844 125.707031 63.496094 124.675781 63.496094 123.402344 Z M 63.496094 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.359375 123.402344 C 56.359375 122.128906 55.328125 121.097656 54.054688 121.097656 C 52.78125 121.097656 51.75 122.128906 51.75 123.402344 C 51.75 124.675781 52.78125 125.707031 54.054688 125.707031 C 55.328125 125.707031 56.359375 124.675781 56.359375 123.402344 Z M 56.359375 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.386719 123.402344 C 34.386719 122.128906 33.355469 121.097656 32.082031 121.097656 C 30.808594 121.097656 29.777344 122.128906 29.777344 123.402344 C 29.777344 124.675781 30.808594 125.707031 32.082031 125.707031 C 33.355469 125.707031 34.386719 124.675781 34.386719 123.402344 Z M 34.386719 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.804688 123.402344 C 39.804688 122.128906 38.773438 121.097656 37.5 121.097656 C 36.226562 121.097656 35.195312 122.128906 35.195312 123.402344 C 35.195312 124.675781 36.226562 125.707031 37.5 125.707031 C 38.773438 125.707031 39.804688 124.675781 39.804688 123.402344 Z M 39.804688 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.316406 123.402344 C 51.316406 122.128906 50.285156 121.097656 49.011719 121.097656 C 47.738281 121.097656 46.707031 122.128906 46.707031 123.402344 C 46.707031 124.675781 47.738281 125.707031 49.011719 125.707031 C 50.285156 125.707031 51.316406 124.675781 51.316406 123.402344 Z M 51.316406 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.960938 123.402344 C 32.960938 122.128906 31.929688 121.097656 30.65625 121.097656 C 29.382812 121.097656 28.351562 122.128906 28.351562 123.402344 C 28.351562 124.675781 29.382812 125.707031 30.65625 125.707031 C 31.929688 125.707031 32.960938 124.675781 32.960938 123.402344 Z M 32.960938 123.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.621094 118.558594 C 64.621094 117.285156 63.589844 116.253906 62.316406 116.253906 C 61.042969 116.253906 60.011719 117.285156 60.011719 118.558594 C 60.011719 119.832031 61.042969 120.863281 62.316406 120.863281 C 63.589844 120.863281 64.621094 119.832031 64.621094 118.558594 Z M 64.621094 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.867188 118.558594 C 39.867188 117.285156 38.835938 116.253906 37.5625 116.253906 C 36.289062 116.253906 35.257812 117.285156 35.257812 118.558594 C 35.257812 119.832031 36.289062 120.863281 37.5625 120.863281 C 38.835938 120.863281 39.867188 119.832031 39.867188 118.558594 Z M 39.867188 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.984375 118.558594 C 54.984375 117.285156 53.953125 116.253906 52.679688 116.253906 C 51.40625 116.253906 50.375 117.285156 50.375 118.558594 C 50.375 119.832031 51.40625 120.863281 52.679688 120.863281 C 53.953125 120.863281 54.984375 119.832031 54.984375 118.558594 Z M 54.984375 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.308594 118.558594 C 41.308594 117.285156 40.277344 116.253906 39.003906 116.253906 C 37.730469 116.253906 36.699219 117.285156 36.699219 118.558594 C 36.699219 119.832031 37.730469 120.863281 39.003906 120.863281 C 40.277344 120.863281 41.308594 119.832031 41.308594 118.558594 Z M 41.308594 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.699219 118.558594 C 45.699219 117.285156 44.667969 116.253906 43.394531 116.253906 C 42.121094 116.253906 41.089844 117.285156 41.089844 118.558594 C 41.089844 119.832031 42.121094 120.863281 43.394531 120.863281 C 44.667969 120.863281 45.699219 119.832031 45.699219 118.558594 Z M 45.699219 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.964844 118.558594 C 51.964844 117.285156 50.933594 116.253906 49.660156 116.253906 C 48.386719 116.253906 47.355469 117.285156 47.355469 118.558594 C 47.355469 119.832031 48.386719 120.863281 49.660156 120.863281 C 50.933594 120.863281 51.964844 119.832031 51.964844 118.558594 Z M 51.964844 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.355469 118.558594 C 55.355469 117.285156 54.324219 116.253906 53.050781 116.253906 C 51.777344 116.253906 50.746094 117.285156 50.746094 118.558594 C 50.746094 119.832031 51.777344 120.863281 53.050781 120.863281 C 54.324219 120.863281 55.355469 119.832031 55.355469 118.558594 Z M 55.355469 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.070312 118.558594 C 44.070312 117.285156 43.039062 116.253906 41.765625 116.253906 C 40.492188 116.253906 39.460938 117.285156 39.460938 118.558594 C 39.460938 119.832031 40.492188 120.863281 41.765625 120.863281 C 43.039062 120.863281 44.070312 119.832031 44.070312 118.558594 Z M 44.070312 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.386719 118.558594 C 67.386719 117.285156 66.355469 116.253906 65.082031 116.253906 C 63.808594 116.253906 62.777344 117.285156 62.777344 118.558594 C 62.777344 119.832031 63.808594 120.863281 65.082031 120.863281 C 66.355469 120.863281 67.386719 119.832031 67.386719 118.558594 Z M 67.386719 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.15625 118.558594 C 54.15625 117.285156 53.125 116.253906 51.851562 116.253906 C 50.578125 116.253906 49.546875 117.285156 49.546875 118.558594 C 49.546875 119.832031 50.578125 120.863281 51.851562 120.863281 C 53.125 120.863281 54.15625 119.832031 54.15625 118.558594 Z M 54.15625 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.789062 118.558594 C 37.789062 117.285156 36.757812 116.253906 35.484375 116.253906 C 34.210938 116.253906 33.179688 117.285156 33.179688 118.558594 C 33.179688 119.832031 34.210938 120.863281 35.484375 120.863281 C 36.757812 120.863281 37.789062 119.832031 37.789062 118.558594 Z M 37.789062 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.851562 118.558594 C 53.851562 117.285156 52.820312 116.253906 51.546875 116.253906 C 50.273438 116.253906 49.242188 117.285156 49.242188 118.558594 C 49.242188 119.832031 50.273438 120.863281 51.546875 120.863281 C 52.820312 120.863281 53.851562 119.832031 53.851562 118.558594 Z M 53.851562 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.152344 118.558594 C 64.152344 117.285156 63.121094 116.253906 61.847656 116.253906 C 60.574219 116.253906 59.542969 117.285156 59.542969 118.558594 C 59.542969 119.832031 60.574219 120.863281 61.847656 120.863281 C 63.121094 120.863281 64.152344 119.832031 64.152344 118.558594 Z M 64.152344 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.949219 118.558594 C 46.949219 117.285156 45.917969 116.253906 44.644531 116.253906 C 43.371094 116.253906 42.339844 117.285156 42.339844 118.558594 C 42.339844 119.832031 43.371094 120.863281 44.644531 120.863281 C 45.917969 120.863281 46.949219 119.832031 46.949219 118.558594 Z M 46.949219 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.304688 118.558594 C 47.304688 117.285156 46.273438 116.253906 45 116.253906 C 43.726562 116.253906 42.695312 117.285156 42.695312 118.558594 C 42.695312 119.832031 43.726562 120.863281 45 120.863281 C 46.273438 120.863281 47.304688 119.832031 47.304688 118.558594 Z M 47.304688 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.503906 118.558594 C 68.503906 117.285156 67.472656 116.253906 66.199219 116.253906 C 64.925781 116.253906 63.894531 117.285156 63.894531 118.558594 C 63.894531 119.832031 64.925781 120.863281 66.199219 120.863281 C 67.472656 120.863281 68.503906 119.832031 68.503906 118.558594 Z M 68.503906 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 59.847656 118.558594 C 59.847656 117.285156 58.816406 116.253906 57.542969 116.253906 C 56.269531 116.253906 55.238281 117.285156 55.238281 118.558594 C 55.238281 119.832031 56.269531 120.863281 57.542969 120.863281 C 58.816406 120.863281 59.847656 119.832031 59.847656 118.558594 Z M 59.847656 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.207031 118.558594 C 46.207031 117.285156 45.175781 116.253906 43.902344 116.253906 C 42.628906 116.253906 41.597656 117.285156 41.597656 118.558594 C 41.597656 119.832031 42.628906 120.863281 43.902344 120.863281 C 45.175781 120.863281 46.207031 119.832031 46.207031 118.558594 Z M 46.207031 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.132812 118.558594 C 52.132812 117.285156 51.101562 116.253906 49.828125 116.253906 C 48.554688 116.253906 47.523438 117.285156 47.523438 118.558594 C 47.523438 119.832031 48.554688 120.863281 49.828125 120.863281 C 51.101562 120.863281 52.132812 119.832031 52.132812 118.558594 Z M 52.132812 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.273438 118.558594 C 58.273438 117.285156 57.242188 116.253906 55.96875 116.253906 C 54.695312 116.253906 53.664062 117.285156 53.664062 118.558594 C 53.664062 119.832031 54.695312 120.863281 55.96875 120.863281 C 57.242188 120.863281 58.273438 119.832031 58.273438 118.558594 Z M 58.273438 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.460938 118.558594 C 37.460938 117.285156 36.429688 116.253906 35.15625 116.253906 C 33.882812 116.253906 32.851562 117.285156 32.851562 118.558594 C 32.851562 119.832031 33.882812 120.863281 35.15625 120.863281 C 36.429688 120.863281 37.460938 119.832031 37.460938 118.558594 Z M 37.460938 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.84375 118.558594 C 54.84375 117.285156 53.8125 116.253906 52.539062 116.253906 C 51.265625 116.253906 50.234375 117.285156 50.234375 118.558594 C 50.234375 119.832031 51.265625 120.863281 52.539062 120.863281 C 53.8125 120.863281 54.84375 119.832031 54.84375 118.558594 Z M 54.84375 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.914062 118.558594 C 49.914062 117.285156 48.882812 116.253906 47.609375 116.253906 C 46.335938 116.253906 45.304688 117.285156 45.304688 118.558594 C 45.304688 119.832031 46.335938 120.863281 47.609375 120.863281 C 48.882812 120.863281 49.914062 119.832031 49.914062 118.558594 Z M 49.914062 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.050781 118.558594 C 41.050781 117.285156 40.019531 116.253906 38.746094 116.253906 C 37.472656 116.253906 36.441406 117.285156 36.441406 118.558594 C 36.441406 119.832031 37.472656 120.863281 38.746094 120.863281 C 40.019531 120.863281 41.050781 119.832031 41.050781 118.558594 Z M 41.050781 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.652344 118.558594 C 65.652344 117.285156 64.621094 116.253906 63.347656 116.253906 C 62.074219 116.253906 61.042969 117.285156 61.042969 118.558594 C 61.042969 119.832031 62.074219 120.863281 63.347656 120.863281 C 64.621094 120.863281 65.652344 119.832031 65.652344 118.558594 Z M 65.652344 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 59.085938 118.558594 C 59.085938 117.285156 58.054688 116.253906 56.78125 116.253906 C 55.507812 116.253906 54.476562 117.285156 54.476562 118.558594 C 54.476562 119.832031 55.507812 120.863281 56.78125 120.863281 C 58.054688 120.863281 59.085938 119.832031 59.085938 118.558594 Z M 59.085938 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.859375 118.558594 C 38.859375 117.285156 37.828125 116.253906 36.554688 116.253906 C 35.28125 116.253906 34.25 117.285156 34.25 118.558594 C 34.25 119.832031 35.28125 120.863281 36.554688 120.863281 C 37.828125 120.863281 38.859375 119.832031 38.859375 118.558594 Z M 38.859375 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.847656 118.558594 C 43.847656 117.285156 42.816406 116.253906 41.542969 116.253906 C 40.269531 116.253906 39.238281 117.285156 39.238281 118.558594 C 39.238281 119.832031 40.269531 120.863281 41.542969 120.863281 C 42.816406 120.863281 43.847656 119.832031 43.847656 118.558594 Z M 43.847656 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.011719 118.558594 C 50.011719 117.285156 48.980469 116.253906 47.707031 116.253906 C 46.433594 116.253906 45.402344 117.285156 45.402344 118.558594 C 45.402344 119.832031 46.433594 120.863281 47.707031 120.863281 C 48.980469 120.863281 50.011719 119.832031 50.011719 118.558594 Z M 50.011719 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.546875 118.558594 C 37.546875 117.285156 36.515625 116.253906 35.242188 116.253906 C 33.96875 116.253906 32.9375 117.285156 32.9375 118.558594 C 32.9375 119.832031 33.96875 120.863281 35.242188 120.863281 C 36.515625 120.863281 37.546875 119.832031 37.546875 118.558594 Z M 37.546875 118.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.765625 113.714844 C 66.765625 112.441406 65.734375 111.410156 64.460938 111.410156 C 63.1875 111.410156 62.15625 112.441406 62.15625 113.714844 C 62.15625 114.988281 63.1875 116.019531 64.460938 116.019531 C 65.734375 116.019531 66.765625 114.988281 66.765625 113.714844 Z M 66.765625 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.402344 113.714844 C 44.402344 112.441406 43.371094 111.410156 42.097656 111.410156 C 40.824219 111.410156 39.792969 112.441406 39.792969 113.714844 C 39.792969 114.988281 40.824219 116.019531 42.097656 116.019531 C 43.371094 116.019531 44.402344 114.988281 44.402344 113.714844 Z M 44.402344 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.0625 113.714844 C 58.0625 112.441406 57.03125 111.410156 55.757812 111.410156 C 54.484375 111.410156 53.453125 112.441406 53.453125 113.714844 C 53.453125 114.988281 54.484375 116.019531 55.757812 116.019531 C 57.03125 116.019531 58.0625 114.988281 58.0625 113.714844 Z M 58.0625 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.703125 113.714844 C 45.703125 112.441406 44.671875 111.410156 43.398438 111.410156 C 42.125 111.410156 41.09375 112.441406 41.09375 113.714844 C 41.09375 114.988281 42.125 116.019531 43.398438 116.019531 C 44.671875 116.019531 45.703125 114.988281 45.703125 113.714844 Z M 45.703125 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.667969 113.714844 C 49.667969 112.441406 48.636719 111.410156 47.363281 111.410156 C 46.089844 111.410156 45.058594 112.441406 45.058594 113.714844 C 45.058594 114.988281 46.089844 116.019531 47.363281 116.019531 C 48.636719 116.019531 49.667969 114.988281 49.667969 113.714844 Z M 49.667969 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.332031 113.714844 C 55.332031 112.441406 54.300781 111.410156 53.027344 111.410156 C 51.753906 111.410156 50.722656 112.441406 50.722656 113.714844 C 50.722656 114.988281 51.753906 116.019531 53.027344 116.019531 C 54.300781 116.019531 55.332031 114.988281 55.332031 113.714844 Z M 55.332031 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.394531 113.714844 C 58.394531 112.441406 57.363281 111.410156 56.089844 111.410156 C 54.816406 111.410156 53.785156 112.441406 53.785156 113.714844 C 53.785156 114.988281 54.816406 116.019531 56.089844 116.019531 C 57.363281 116.019531 58.394531 114.988281 58.394531 113.714844 Z M 58.394531 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.199219 113.714844 C 48.199219 112.441406 47.167969 111.410156 45.894531 111.410156 C 44.621094 111.410156 43.589844 112.441406 43.589844 113.714844 C 43.589844 114.988281 44.621094 116.019531 45.894531 116.019531 C 47.167969 116.019531 48.199219 114.988281 48.199219 113.714844 Z M 48.199219 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.265625 113.714844 C 69.265625 112.441406 68.234375 111.410156 66.960938 111.410156 C 65.6875 111.410156 64.65625 112.441406 64.65625 113.714844 C 64.65625 114.988281 65.6875 116.019531 66.960938 116.019531 C 68.234375 116.019531 69.265625 114.988281 69.265625 113.714844 Z M 69.265625 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.3125 113.714844 C 57.3125 112.441406 56.28125 111.410156 55.007812 111.410156 C 53.734375 111.410156 52.703125 112.441406 52.703125 113.714844 C 52.703125 114.988281 53.734375 116.019531 55.007812 116.019531 C 56.28125 116.019531 57.3125 114.988281 57.3125 113.714844 Z M 57.3125 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.523438 113.714844 C 42.523438 112.441406 41.492188 111.410156 40.21875 111.410156 C 38.945312 111.410156 37.914062 112.441406 37.914062 113.714844 C 37.914062 114.988281 38.945312 116.019531 40.21875 116.019531 C 41.492188 116.019531 42.523438 114.988281 42.523438 113.714844 Z M 42.523438 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.039062 113.714844 C 57.039062 112.441406 56.007812 111.410156 54.734375 111.410156 C 53.460938 111.410156 52.429688 112.441406 52.429688 113.714844 C 52.429688 114.988281 53.460938 116.019531 54.734375 116.019531 C 56.007812 116.019531 57.039062 114.988281 57.039062 113.714844 Z M 57.039062 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.34375 113.714844 C 66.34375 112.441406 65.3125 111.410156 64.039062 111.410156 C 62.765625 111.410156 61.734375 112.441406 61.734375 113.714844 C 61.734375 114.988281 62.765625 116.019531 64.039062 116.019531 C 65.3125 116.019531 66.34375 114.988281 66.34375 113.714844 Z M 66.34375 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.800781 113.714844 C 50.800781 112.441406 49.769531 111.410156 48.496094 111.410156 C 47.222656 111.410156 46.191406 112.441406 46.191406 113.714844 C 46.191406 114.988281 47.222656 116.019531 48.496094 116.019531 C 49.769531 116.019531 50.800781 114.988281 50.800781 113.714844 Z M 50.800781 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.121094 113.714844 C 51.121094 112.441406 50.089844 111.410156 48.816406 111.410156 C 47.542969 111.410156 46.511719 112.441406 46.511719 113.714844 C 46.511719 114.988281 47.542969 116.019531 48.816406 116.019531 C 50.089844 116.019531 51.121094 114.988281 51.121094 113.714844 Z M 51.121094 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.273438 113.714844 C 70.273438 112.441406 69.242188 111.410156 67.96875 111.410156 C 66.695312 111.410156 65.664062 112.441406 65.664062 113.714844 C 65.664062 114.988281 66.695312 116.019531 67.96875 116.019531 C 69.242188 116.019531 70.273438 114.988281 70.273438 113.714844 Z M 70.273438 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.457031 113.714844 C 62.457031 112.441406 61.425781 111.410156 60.152344 111.410156 C 58.878906 111.410156 57.847656 112.441406 57.847656 113.714844 C 57.847656 114.988281 58.878906 116.019531 60.152344 116.019531 C 61.425781 116.019531 62.457031 114.988281 62.457031 113.714844 Z M 62.457031 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.128906 113.714844 C 50.128906 112.441406 49.097656 111.410156 47.824219 111.410156 C 46.550781 111.410156 45.519531 112.441406 45.519531 113.714844 C 45.519531 114.988281 46.550781 116.019531 47.824219 116.019531 C 49.097656 116.019531 50.128906 114.988281 50.128906 113.714844 Z M 50.128906 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.484375 113.714844 C 55.484375 112.441406 54.453125 111.410156 53.179688 111.410156 C 51.90625 111.410156 50.875 112.441406 50.875 113.714844 C 50.875 114.988281 51.90625 116.019531 53.179688 116.019531 C 54.453125 116.019531 55.484375 114.988281 55.484375 113.714844 Z M 55.484375 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.03125 113.714844 C 61.03125 112.441406 60 111.410156 58.726562 111.410156 C 57.453125 111.410156 56.421875 112.441406 56.421875 113.714844 C 56.421875 114.988281 57.453125 116.019531 58.726562 116.019531 C 60 116.019531 61.03125 114.988281 61.03125 113.714844 Z M 61.03125 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.222656 113.714844 C 42.222656 112.441406 41.191406 111.410156 39.917969 111.410156 C 38.644531 111.410156 37.613281 112.441406 37.613281 113.714844 C 37.613281 114.988281 38.644531 116.019531 39.917969 116.019531 C 41.191406 116.019531 42.222656 114.988281 42.222656 113.714844 Z M 42.222656 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.929688 113.714844 C 57.929688 112.441406 56.898438 111.410156 55.625 111.410156 C 54.351562 111.410156 53.320312 112.441406 53.320312 113.714844 C 53.320312 114.988281 54.351562 116.019531 55.625 116.019531 C 56.898438 116.019531 57.929688 114.988281 57.929688 113.714844 Z M 57.929688 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.480469 113.714844 C 53.480469 112.441406 52.449219 111.410156 51.175781 111.410156 C 49.902344 111.410156 48.871094 112.441406 48.871094 113.714844 C 48.871094 114.988281 49.902344 116.019531 51.175781 116.019531 C 52.449219 116.019531 53.480469 114.988281 53.480469 113.714844 Z M 53.480469 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.46875 113.714844 C 45.46875 112.441406 44.4375 111.410156 43.164062 111.410156 C 41.890625 111.410156 40.859375 112.441406 40.859375 113.714844 C 40.859375 114.988281 41.890625 116.019531 43.164062 116.019531 C 44.4375 116.019531 45.46875 114.988281 45.46875 113.714844 Z M 45.46875 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.699219 113.714844 C 67.699219 112.441406 66.667969 111.410156 65.394531 111.410156 C 64.121094 111.410156 63.089844 112.441406 63.089844 113.714844 C 63.089844 114.988281 64.121094 116.019531 65.394531 116.019531 C 66.667969 116.019531 67.699219 114.988281 67.699219 113.714844 Z M 67.699219 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.765625 113.714844 C 61.765625 112.441406 60.734375 111.410156 59.460938 111.410156 C 58.1875 111.410156 57.15625 112.441406 57.15625 113.714844 C 57.15625 114.988281 58.1875 116.019531 59.460938 116.019531 C 60.734375 116.019531 61.765625 114.988281 61.765625 113.714844 Z M 61.765625 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.488281 113.714844 C 43.488281 112.441406 42.457031 111.410156 41.183594 111.410156 C 39.910156 111.410156 38.878906 112.441406 38.878906 113.714844 C 38.878906 114.988281 39.910156 116.019531 41.183594 116.019531 C 42.457031 116.019531 43.488281 114.988281 43.488281 113.714844 Z M 43.488281 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.996094 113.714844 C 47.996094 112.441406 46.964844 111.410156 45.691406 111.410156 C 44.417969 111.410156 43.386719 112.441406 43.386719 113.714844 C 43.386719 114.988281 44.417969 116.019531 45.691406 116.019531 C 46.964844 116.019531 47.996094 114.988281 47.996094 113.714844 Z M 47.996094 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.570312 113.714844 C 57.570312 112.441406 56.539062 111.410156 55.265625 111.410156 C 53.992188 111.410156 52.960938 112.441406 52.960938 113.714844 C 52.960938 114.988281 53.992188 116.019531 55.265625 116.019531 C 56.539062 116.019531 57.570312 114.988281 57.570312 113.714844 Z M 57.570312 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.304688 113.714844 C 42.304688 112.441406 41.273438 111.410156 40 111.410156 C 38.726562 111.410156 37.695312 112.441406 37.695312 113.714844 C 37.695312 114.988281 38.726562 116.019531 40 116.019531 C 41.273438 116.019531 42.304688 114.988281 42.304688 113.714844 Z M 42.304688 113.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.789062 108.871094 C 68.789062 107.597656 67.757812 106.566406 66.484375 106.566406 C 65.210938 106.566406 64.179688 107.597656 64.179688 108.871094 C 64.179688 110.144531 65.210938 111.175781 66.484375 111.175781 C 67.757812 111.175781 68.789062 110.144531 68.789062 108.871094 Z M 68.789062 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.035156 108.871094 C 49.035156 107.597656 48.003906 106.566406 46.730469 106.566406 C 45.457031 106.566406 44.425781 107.597656 44.425781 108.871094 C 44.425781 110.144531 45.457031 111.175781 46.730469 111.175781 C 48.003906 111.175781 49.035156 110.144531 49.035156 108.871094 Z M 49.035156 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.101562 108.871094 C 61.101562 107.597656 60.070312 106.566406 58.796875 106.566406 C 57.523438 106.566406 56.492188 107.597656 56.492188 108.871094 C 56.492188 110.144531 57.523438 111.175781 58.796875 111.175781 C 60.070312 111.175781 61.101562 110.144531 61.101562 108.871094 Z M 61.101562 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.183594 108.871094 C 50.183594 107.597656 49.152344 106.566406 47.878906 106.566406 C 46.605469 106.566406 45.574219 107.597656 45.574219 108.871094 C 45.574219 110.144531 46.605469 111.175781 47.878906 111.175781 C 49.152344 111.175781 50.183594 110.144531 50.183594 108.871094 Z M 50.183594 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.6875 108.871094 C 53.6875 107.597656 52.65625 106.566406 51.382812 106.566406 C 50.109375 106.566406 49.078125 107.597656 49.078125 108.871094 C 49.078125 110.144531 50.109375 111.175781 51.382812 111.175781 C 52.65625 111.175781 53.6875 110.144531 53.6875 108.871094 Z M 53.6875 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.6875 108.871094 C 58.6875 107.597656 57.65625 106.566406 56.382812 106.566406 C 55.109375 106.566406 54.078125 107.597656 54.078125 108.871094 C 54.078125 110.144531 55.109375 111.175781 56.382812 111.175781 C 57.65625 111.175781 58.6875 110.144531 58.6875 108.871094 Z M 58.6875 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.394531 108.871094 C 61.394531 107.597656 60.363281 106.566406 59.089844 106.566406 C 57.816406 106.566406 56.785156 107.597656 56.785156 108.871094 C 56.785156 110.144531 57.816406 111.175781 59.089844 111.175781 C 60.363281 111.175781 61.394531 110.144531 61.394531 108.871094 Z M 61.394531 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.386719 108.871094 C 52.386719 107.597656 51.355469 106.566406 50.082031 106.566406 C 48.808594 106.566406 47.777344 107.597656 47.777344 108.871094 C 47.777344 110.144531 48.808594 111.175781 50.082031 111.175781 C 51.355469 111.175781 52.386719 110.144531 52.386719 108.871094 Z M 52.386719 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.996094 108.871094 C 70.996094 107.597656 69.964844 106.566406 68.691406 106.566406 C 67.417969 106.566406 66.386719 107.597656 66.386719 108.871094 C 66.386719 110.144531 67.417969 111.175781 68.691406 111.175781 C 69.964844 111.175781 70.996094 110.144531 70.996094 108.871094 Z M 70.996094 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.4375 108.871094 C 60.4375 107.597656 59.40625 106.566406 58.132812 106.566406 C 56.859375 106.566406 55.828125 107.597656 55.828125 108.871094 C 55.828125 110.144531 56.859375 111.175781 58.132812 111.175781 C 59.40625 111.175781 60.4375 110.144531 60.4375 108.871094 Z M 60.4375 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.375 108.871094 C 47.375 107.597656 46.34375 106.566406 45.070312 106.566406 C 43.796875 106.566406 42.765625 107.597656 42.765625 108.871094 C 42.765625 110.144531 43.796875 111.175781 45.070312 111.175781 C 46.34375 111.175781 47.375 110.144531 47.375 108.871094 Z M 47.375 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.195312 108.871094 C 60.195312 107.597656 59.164062 106.566406 57.890625 106.566406 C 56.617188 106.566406 55.585938 107.597656 55.585938 108.871094 C 55.585938 110.144531 56.617188 111.175781 57.890625 111.175781 C 59.164062 111.175781 60.195312 110.144531 60.195312 108.871094 Z M 60.195312 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.417969 108.871094 C 68.417969 107.597656 67.386719 106.566406 66.113281 106.566406 C 64.839844 106.566406 63.808594 107.597656 63.808594 108.871094 C 63.808594 110.144531 64.839844 111.175781 66.113281 111.175781 C 67.386719 111.175781 68.417969 110.144531 68.417969 108.871094 Z M 68.417969 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.335938 108.871094 C 74.335938 107.597656 73.304688 106.566406 72.03125 106.566406 C 70.757812 106.566406 69.726562 107.597656 69.726562 108.871094 C 69.726562 110.144531 70.757812 111.175781 72.03125 111.175781 C 73.304688 111.175781 74.335938 110.144531 74.335938 108.871094 Z M 74.335938 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.96875 108.871094 C 54.96875 107.597656 53.9375 106.566406 52.664062 106.566406 C 51.390625 106.566406 50.359375 107.597656 50.359375 108.871094 C 50.359375 110.144531 51.390625 111.175781 52.664062 111.175781 C 53.9375 111.175781 54.96875 110.144531 54.96875 108.871094 Z M 54.96875 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.886719 108.871094 C 71.886719 107.597656 70.855469 106.566406 69.582031 106.566406 C 68.308594 106.566406 67.277344 107.597656 67.277344 108.871094 C 67.277344 110.144531 68.308594 111.175781 69.582031 111.175781 C 70.855469 111.175781 71.886719 110.144531 71.886719 108.871094 Z M 71.886719 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.980469 108.871094 C 64.980469 107.597656 63.949219 106.566406 62.675781 106.566406 C 61.402344 106.566406 60.371094 107.597656 60.371094 108.871094 C 60.371094 110.144531 61.402344 111.175781 62.675781 111.175781 C 63.949219 111.175781 64.980469 110.144531 64.980469 108.871094 Z M 64.980469 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.09375 108.871094 C 54.09375 107.597656 53.0625 106.566406 51.789062 106.566406 C 50.515625 106.566406 49.484375 107.597656 49.484375 108.871094 C 49.484375 110.144531 50.515625 111.175781 51.789062 111.175781 C 53.0625 111.175781 54.09375 110.144531 54.09375 108.871094 Z M 54.09375 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.824219 108.871094 C 58.824219 107.597656 57.792969 106.566406 56.519531 106.566406 C 55.246094 106.566406 54.214844 107.597656 54.214844 108.871094 C 54.214844 110.144531 55.246094 111.175781 56.519531 111.175781 C 57.792969 111.175781 58.824219 110.144531 58.824219 108.871094 Z M 58.824219 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.726562 108.871094 C 63.726562 107.597656 62.695312 106.566406 61.421875 106.566406 C 60.148438 106.566406 59.117188 107.597656 59.117188 108.871094 C 59.117188 110.144531 60.148438 111.175781 61.421875 111.175781 C 62.695312 111.175781 63.726562 110.144531 63.726562 108.871094 Z M 63.726562 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.113281 108.871094 C 47.113281 107.597656 46.082031 106.566406 44.808594 106.566406 C 43.535156 106.566406 42.503906 107.597656 42.503906 108.871094 C 42.503906 110.144531 43.535156 111.175781 44.808594 111.175781 C 46.082031 111.175781 47.113281 110.144531 47.113281 108.871094 Z M 47.113281 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.984375 108.871094 C 60.984375 107.597656 59.953125 106.566406 58.679688 106.566406 C 57.40625 106.566406 56.375 107.597656 56.375 108.871094 C 56.375 110.144531 57.40625 111.175781 58.679688 111.175781 C 59.953125 111.175781 60.984375 110.144531 60.984375 108.871094 Z M 60.984375 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.050781 108.871094 C 57.050781 107.597656 56.019531 106.566406 54.746094 106.566406 C 53.472656 106.566406 52.441406 107.597656 52.441406 108.871094 C 52.441406 110.144531 53.472656 111.175781 54.746094 111.175781 C 56.019531 111.175781 57.050781 110.144531 57.050781 108.871094 Z M 57.050781 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.976562 108.871094 C 49.976562 107.597656 48.945312 106.566406 47.671875 106.566406 C 46.398438 106.566406 45.367188 107.597656 45.367188 108.871094 C 45.367188 110.144531 46.398438 111.175781 47.671875 111.175781 C 48.945312 111.175781 49.976562 110.144531 49.976562 108.871094 Z M 49.976562 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.613281 108.871094 C 69.613281 107.597656 68.582031 106.566406 67.308594 106.566406 C 66.035156 106.566406 65.003906 107.597656 65.003906 108.871094 C 65.003906 110.144531 66.035156 111.175781 67.308594 111.175781 C 68.582031 111.175781 69.613281 110.144531 69.613281 108.871094 Z M 69.613281 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.371094 108.871094 C 64.371094 107.597656 63.339844 106.566406 62.066406 106.566406 C 60.792969 106.566406 59.761719 107.597656 59.761719 108.871094 C 59.761719 110.144531 60.792969 111.175781 62.066406 111.175781 C 63.339844 111.175781 64.371094 110.144531 64.371094 108.871094 Z M 64.371094 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.230469 108.871094 C 48.230469 107.597656 47.199219 106.566406 45.925781 106.566406 C 44.652344 106.566406 43.621094 107.597656 43.621094 108.871094 C 43.621094 110.144531 44.652344 111.175781 45.925781 111.175781 C 47.199219 111.175781 48.230469 110.144531 48.230469 108.871094 Z M 48.230469 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.210938 108.871094 C 52.210938 107.597656 51.179688 106.566406 49.90625 106.566406 C 48.632812 106.566406 47.601562 107.597656 47.601562 108.871094 C 47.601562 110.144531 48.632812 111.175781 49.90625 111.175781 C 51.179688 111.175781 52.210938 110.144531 52.210938 108.871094 Z M 52.210938 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.667969 108.871094 C 60.667969 107.597656 59.636719 106.566406 58.363281 106.566406 C 57.089844 106.566406 56.058594 107.597656 56.058594 108.871094 C 56.058594 110.144531 57.089844 111.175781 58.363281 111.175781 C 59.636719 111.175781 60.667969 110.144531 60.667969 108.871094 Z M 60.667969 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.183594 108.871094 C 47.183594 107.597656 46.152344 106.566406 44.878906 106.566406 C 43.605469 106.566406 42.574219 107.597656 42.574219 108.871094 C 42.574219 110.144531 43.605469 111.175781 44.878906 111.175781 C 46.152344 111.175781 47.183594 110.144531 47.183594 108.871094 Z M 47.183594 108.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.667969 104.027344 C 70.667969 102.753906 69.636719 101.722656 68.363281 101.722656 C 67.089844 101.722656 66.058594 102.753906 66.058594 104.027344 C 66.058594 105.300781 67.089844 106.332031 68.363281 106.332031 C 69.636719 106.332031 70.667969 105.300781 70.667969 104.027344 Z M 70.667969 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.722656 104.027344 C 53.722656 102.753906 52.691406 101.722656 51.417969 101.722656 C 50.144531 101.722656 49.113281 102.753906 49.113281 104.027344 C 49.113281 105.300781 50.144531 106.332031 51.417969 106.332031 C 52.691406 106.332031 53.722656 105.300781 53.722656 104.027344 Z M 53.722656 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.074219 104.027344 C 64.074219 102.753906 63.042969 101.722656 61.769531 101.722656 C 60.496094 101.722656 59.464844 102.753906 59.464844 104.027344 C 59.464844 105.300781 60.496094 106.332031 61.769531 106.332031 C 63.042969 106.332031 64.074219 105.300781 64.074219 104.027344 Z M 64.074219 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.414062 104.027344 C 76.414062 102.753906 75.382812 101.722656 74.109375 101.722656 C 72.835938 101.722656 71.804688 102.753906 71.804688 104.027344 C 71.804688 105.300781 72.835938 106.332031 74.109375 106.332031 C 75.382812 106.332031 76.414062 105.300781 76.414062 104.027344 Z M 76.414062 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.714844 104.027344 C 57.714844 102.753906 56.683594 101.722656 55.410156 101.722656 C 54.136719 101.722656 53.105469 102.753906 53.105469 104.027344 C 53.105469 105.300781 54.136719 106.332031 55.410156 106.332031 C 56.683594 106.332031 57.714844 105.300781 57.714844 104.027344 Z M 57.714844 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.003906 104.027344 C 62.003906 102.753906 60.972656 101.722656 59.699219 101.722656 C 58.425781 101.722656 57.394531 102.753906 57.394531 104.027344 C 57.394531 105.300781 58.425781 106.332031 59.699219 106.332031 C 60.972656 106.332031 62.003906 105.300781 62.003906 104.027344 Z M 62.003906 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.324219 104.027344 C 64.324219 102.753906 63.292969 101.722656 62.019531 101.722656 C 60.746094 101.722656 59.714844 102.753906 59.714844 104.027344 C 59.714844 105.300781 60.746094 106.332031 62.019531 106.332031 C 63.292969 106.332031 64.324219 105.300781 64.324219 104.027344 Z M 64.324219 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.601562 104.027344 C 56.601562 102.753906 55.570312 101.722656 54.296875 101.722656 C 53.023438 101.722656 51.992188 102.753906 51.992188 104.027344 C 51.992188 105.300781 53.023438 106.332031 54.296875 106.332031 C 55.570312 106.332031 56.601562 105.300781 56.601562 104.027344 Z M 56.601562 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.5625 104.027344 C 72.5625 102.753906 71.53125 101.722656 70.257812 101.722656 C 68.984375 101.722656 67.953125 102.753906 67.953125 104.027344 C 67.953125 105.300781 68.984375 106.332031 70.257812 106.332031 C 71.53125 106.332031 72.5625 105.300781 72.5625 104.027344 Z M 72.5625 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.503906 104.027344 C 63.503906 102.753906 62.472656 101.722656 61.199219 101.722656 C 59.925781 101.722656 58.894531 102.753906 58.894531 104.027344 C 58.894531 105.300781 59.925781 106.332031 61.199219 106.332031 C 62.472656 106.332031 63.503906 105.300781 63.503906 104.027344 Z M 63.503906 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.300781 104.027344 C 52.300781 102.753906 51.269531 101.722656 49.996094 101.722656 C 48.722656 101.722656 47.691406 102.753906 47.691406 104.027344 C 47.691406 105.300781 48.722656 106.332031 49.996094 106.332031 C 51.269531 106.332031 52.300781 105.300781 52.300781 104.027344 Z M 52.300781 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.296875 104.027344 C 63.296875 102.753906 62.265625 101.722656 60.992188 101.722656 C 59.71875 101.722656 58.6875 102.753906 58.6875 104.027344 C 58.6875 105.300781 59.71875 106.332031 60.992188 106.332031 C 62.265625 106.332031 63.296875 105.300781 63.296875 104.027344 Z M 63.296875 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.347656 104.027344 C 70.347656 102.753906 69.316406 101.722656 68.042969 101.722656 C 66.769531 101.722656 65.738281 102.753906 65.738281 104.027344 C 65.738281 105.300781 66.769531 106.332031 68.042969 106.332031 C 69.316406 106.332031 70.347656 105.300781 70.347656 104.027344 Z M 70.347656 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.570312 104.027344 C 58.570312 102.753906 57.539062 101.722656 56.265625 101.722656 C 54.992188 101.722656 53.960938 102.753906 53.960938 104.027344 C 53.960938 105.300781 54.992188 106.332031 56.265625 106.332031 C 57.539062 106.332031 58.570312 105.300781 58.570312 104.027344 Z M 58.570312 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.8125 104.027344 C 58.8125 102.753906 57.78125 101.722656 56.507812 101.722656 C 55.234375 101.722656 54.203125 102.753906 54.203125 104.027344 C 54.203125 105.300781 55.234375 106.332031 56.507812 106.332031 C 57.78125 106.332031 58.8125 105.300781 58.8125 104.027344 Z M 58.8125 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.328125 104.027344 C 73.328125 102.753906 72.296875 101.722656 71.023438 101.722656 C 69.75 101.722656 68.71875 102.753906 68.71875 104.027344 C 68.71875 105.300781 69.75 106.332031 71.023438 106.332031 C 72.296875 106.332031 73.328125 105.300781 73.328125 104.027344 Z M 73.328125 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.402344 104.027344 C 67.402344 102.753906 66.371094 101.722656 65.097656 101.722656 C 63.824219 101.722656 62.792969 102.753906 62.792969 104.027344 C 62.792969 105.300781 63.824219 106.332031 65.097656 106.332031 C 66.371094 106.332031 67.402344 105.300781 67.402344 104.027344 Z M 67.402344 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.0625 104.027344 C 58.0625 102.753906 57.03125 101.722656 55.757812 101.722656 C 54.484375 101.722656 53.453125 102.753906 53.453125 104.027344 C 53.453125 105.300781 54.484375 106.332031 55.757812 106.332031 C 57.03125 106.332031 58.0625 105.300781 58.0625 104.027344 Z M 58.0625 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.121094 104.027344 C 62.121094 102.753906 61.089844 101.722656 59.816406 101.722656 C 58.542969 101.722656 57.511719 102.753906 57.511719 104.027344 C 57.511719 105.300781 58.542969 106.332031 59.816406 106.332031 C 61.089844 106.332031 62.121094 105.300781 62.121094 104.027344 Z M 62.121094 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.324219 104.027344 C 66.324219 102.753906 65.292969 101.722656 64.019531 101.722656 C 62.746094 101.722656 61.714844 102.753906 61.714844 104.027344 C 61.714844 105.300781 62.746094 106.332031 64.019531 106.332031 C 65.292969 106.332031 66.324219 105.300781 66.324219 104.027344 Z M 66.324219 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.074219 104.027344 C 52.074219 102.753906 51.042969 101.722656 49.769531 101.722656 C 48.496094 101.722656 47.464844 102.753906 47.464844 104.027344 C 47.464844 105.300781 48.496094 106.332031 49.769531 106.332031 C 51.042969 106.332031 52.074219 105.300781 52.074219 104.027344 Z M 52.074219 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.972656 104.027344 C 63.972656 102.753906 62.941406 101.722656 61.667969 101.722656 C 60.394531 101.722656 59.363281 102.753906 59.363281 104.027344 C 59.363281 105.300781 60.394531 106.332031 61.667969 106.332031 C 62.941406 106.332031 63.972656 105.300781 63.972656 104.027344 Z M 63.972656 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.601562 104.027344 C 60.601562 102.753906 59.570312 101.722656 58.296875 101.722656 C 57.023438 101.722656 55.992188 102.753906 55.992188 104.027344 C 55.992188 105.300781 57.023438 106.332031 58.296875 106.332031 C 59.570312 106.332031 60.601562 105.300781 60.601562 104.027344 Z M 60.601562 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.777344 104.027344 C 58.777344 102.753906 57.746094 101.722656 56.472656 101.722656 C 55.199219 101.722656 54.167969 102.753906 54.167969 104.027344 C 54.167969 105.300781 55.199219 106.332031 56.472656 106.332031 C 57.746094 106.332031 58.777344 105.300781 58.777344 104.027344 Z M 58.777344 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.375 104.027344 C 71.375 102.753906 70.34375 101.722656 69.070312 101.722656 C 67.796875 101.722656 66.765625 102.753906 66.765625 104.027344 C 66.765625 105.300781 67.796875 106.332031 69.070312 106.332031 C 70.34375 106.332031 71.375 105.300781 71.375 104.027344 Z M 71.375 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.878906 104.027344 C 66.878906 102.753906 65.847656 101.722656 64.574219 101.722656 C 63.300781 101.722656 62.269531 102.753906 62.269531 104.027344 C 62.269531 105.300781 63.300781 106.332031 64.574219 106.332031 C 65.847656 106.332031 66.878906 105.300781 66.878906 104.027344 Z M 66.878906 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.03125 104.027344 C 53.03125 102.753906 52 101.722656 50.726562 101.722656 C 49.453125 101.722656 48.421875 102.753906 48.421875 104.027344 C 48.421875 105.300781 49.453125 106.332031 50.726562 106.332031 C 52 106.332031 53.03125 105.300781 53.03125 104.027344 Z M 53.03125 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.445312 104.027344 C 56.445312 102.753906 55.414062 101.722656 54.140625 101.722656 C 52.867188 101.722656 51.835938 102.753906 51.835938 104.027344 C 51.835938 105.300781 52.867188 106.332031 54.140625 106.332031 C 55.414062 106.332031 56.445312 105.300781 56.445312 104.027344 Z M 56.445312 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.703125 104.027344 C 63.703125 102.753906 62.671875 101.722656 61.398438 101.722656 C 60.125 101.722656 59.09375 102.753906 59.09375 104.027344 C 59.09375 105.300781 60.125 106.332031 61.398438 106.332031 C 62.671875 106.332031 63.703125 105.300781 63.703125 104.027344 Z M 63.703125 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.132812 104.027344 C 52.132812 102.753906 51.101562 101.722656 49.828125 101.722656 C 48.554688 101.722656 47.523438 102.753906 47.523438 104.027344 C 47.523438 105.300781 48.554688 106.332031 49.828125 106.332031 C 51.101562 106.332031 52.132812 105.300781 52.132812 104.027344 Z M 52.132812 104.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.386719 99.179688 C 72.386719 97.90625 71.355469 96.875 70.082031 96.875 C 68.808594 96.875 67.777344 97.90625 67.777344 99.179688 C 67.777344 100.453125 68.808594 101.484375 70.082031 101.484375 C 71.355469 101.484375 72.386719 100.453125 72.386719 99.179688 Z M 72.386719 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.417969 99.179688 C 58.417969 97.90625 57.386719 96.875 56.113281 96.875 C 54.839844 96.875 53.808594 97.90625 53.808594 99.179688 C 53.808594 100.453125 54.839844 101.484375 56.113281 101.484375 C 57.386719 101.484375 58.417969 100.453125 58.417969 99.179688 Z M 58.417969 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.949219 99.179688 C 66.949219 97.90625 65.917969 96.875 64.644531 96.875 C 63.371094 96.875 62.339844 97.90625 62.339844 99.179688 C 62.339844 100.453125 63.371094 101.484375 64.644531 101.484375 C 65.917969 101.484375 66.949219 100.453125 66.949219 99.179688 Z M 66.949219 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 59.230469 99.179688 C 59.230469 97.90625 58.199219 96.875 56.925781 96.875 C 55.652344 96.875 54.621094 97.90625 54.621094 99.179688 C 54.621094 100.453125 55.652344 101.484375 56.925781 101.484375 C 58.199219 101.484375 59.230469 100.453125 59.230469 99.179688 Z M 59.230469 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.707031 99.179688 C 61.707031 97.90625 60.675781 96.875 59.402344 96.875 C 58.128906 96.875 57.097656 97.90625 57.097656 99.179688 C 57.097656 100.453125 58.128906 101.484375 59.402344 101.484375 C 60.675781 101.484375 61.707031 100.453125 61.707031 99.179688 Z M 61.707031 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.246094 99.179688 C 65.246094 97.90625 64.214844 96.875 62.941406 96.875 C 61.667969 96.875 60.636719 97.90625 60.636719 99.179688 C 60.636719 100.453125 61.667969 101.484375 62.941406 101.484375 C 64.214844 101.484375 65.246094 100.453125 65.246094 99.179688 Z M 65.246094 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.15625 99.179688 C 67.15625 97.90625 66.125 96.875 64.851562 96.875 C 63.578125 96.875 62.546875 97.90625 62.546875 99.179688 C 62.546875 100.453125 63.578125 101.484375 64.851562 101.484375 C 66.125 101.484375 67.15625 100.453125 67.15625 99.179688 Z M 67.15625 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.789062 99.179688 C 60.789062 97.90625 59.757812 96.875 58.484375 96.875 C 57.210938 96.875 56.179688 97.90625 56.179688 99.179688 C 56.179688 100.453125 57.210938 101.484375 58.484375 101.484375 C 59.757812 101.484375 60.789062 100.453125 60.789062 99.179688 Z M 60.789062 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.949219 99.179688 C 73.949219 97.90625 72.917969 96.875 71.644531 96.875 C 70.371094 96.875 69.339844 97.90625 69.339844 99.179688 C 69.339844 100.453125 70.371094 101.484375 71.644531 101.484375 C 72.917969 101.484375 73.949219 100.453125 73.949219 99.179688 Z M 73.949219 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.480469 99.179688 C 66.480469 97.90625 65.449219 96.875 64.175781 96.875 C 62.902344 96.875 61.871094 97.90625 61.871094 99.179688 C 61.871094 100.453125 62.902344 101.484375 64.175781 101.484375 C 65.449219 101.484375 66.480469 100.453125 66.480469 99.179688 Z M 66.480469 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.246094 99.179688 C 57.246094 97.90625 56.214844 96.875 54.941406 96.875 C 53.667969 96.875 52.636719 97.90625 52.636719 99.179688 C 52.636719 100.453125 53.667969 101.484375 54.941406 101.484375 C 56.214844 101.484375 57.246094 100.453125 57.246094 99.179688 Z M 57.246094 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.3125 99.179688 C 66.3125 97.90625 65.28125 96.875 64.007812 96.875 C 62.734375 96.875 61.703125 97.90625 61.703125 99.179688 C 61.703125 100.453125 62.734375 101.484375 64.007812 101.484375 C 65.28125 101.484375 66.3125 100.453125 66.3125 99.179688 Z M 66.3125 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.125 99.179688 C 72.125 97.90625 71.09375 96.875 69.820312 96.875 C 68.546875 96.875 67.515625 97.90625 67.515625 99.179688 C 67.515625 100.453125 68.546875 101.484375 69.820312 101.484375 C 71.09375 101.484375 72.125 100.453125 72.125 99.179688 Z M 72.125 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.414062 99.179688 C 62.414062 97.90625 61.382812 96.875 60.109375 96.875 C 58.835938 96.875 57.804688 97.90625 57.804688 99.179688 C 57.804688 100.453125 58.835938 101.484375 60.109375 101.484375 C 61.382812 101.484375 62.414062 100.453125 62.414062 99.179688 Z M 62.414062 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.613281 99.179688 C 62.613281 97.90625 61.582031 96.875 60.308594 96.875 C 59.035156 96.875 58.003906 97.90625 58.003906 99.179688 C 58.003906 100.453125 59.035156 101.484375 60.308594 101.484375 C 61.582031 101.484375 62.613281 100.453125 62.613281 99.179688 Z M 62.613281 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.578125 99.179688 C 74.578125 97.90625 73.546875 96.875 72.273438 96.875 C 71 96.875 69.96875 97.90625 69.96875 99.179688 C 69.96875 100.453125 71 101.484375 72.273438 101.484375 C 73.546875 101.484375 74.578125 100.453125 74.578125 99.179688 Z M 74.578125 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.695312 99.179688 C 69.695312 97.90625 68.664062 96.875 67.390625 96.875 C 66.117188 96.875 65.085938 97.90625 65.085938 99.179688 C 65.085938 100.453125 66.117188 101.484375 67.390625 101.484375 C 68.664062 101.484375 69.695312 100.453125 69.695312 99.179688 Z M 69.695312 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.996094 99.179688 C 61.996094 97.90625 60.964844 96.875 59.691406 96.875 C 58.417969 96.875 57.386719 97.90625 57.386719 99.179688 C 57.386719 100.453125 58.417969 101.484375 59.691406 101.484375 C 60.964844 101.484375 61.996094 100.453125 61.996094 99.179688 Z M 61.996094 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.339844 99.179688 C 65.339844 97.90625 64.308594 96.875 63.035156 96.875 C 61.761719 96.875 60.730469 97.90625 60.730469 99.179688 C 60.730469 100.453125 61.761719 101.484375 63.035156 101.484375 C 64.308594 101.484375 65.339844 100.453125 65.339844 99.179688 Z M 65.339844 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.804688 99.179688 C 68.804688 97.90625 67.773438 96.875 66.5 96.875 C 65.226562 96.875 64.195312 97.90625 64.195312 99.179688 C 64.195312 100.453125 65.226562 101.484375 66.5 101.484375 C 67.773438 101.484375 68.804688 100.453125 68.804688 99.179688 Z M 68.804688 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.058594 99.179688 C 57.058594 97.90625 56.027344 96.875 54.753906 96.875 C 53.480469 96.875 52.449219 97.90625 52.449219 99.179688 C 52.449219 100.453125 53.480469 101.484375 54.753906 101.484375 C 56.027344 101.484375 57.058594 100.453125 57.058594 99.179688 Z M 57.058594 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.867188 99.179688 C 66.867188 97.90625 65.835938 96.875 64.5625 96.875 C 63.289062 96.875 62.257812 97.90625 62.257812 99.179688 C 62.257812 100.453125 63.289062 101.484375 64.5625 101.484375 C 65.835938 101.484375 66.867188 100.453125 66.867188 99.179688 Z M 66.867188 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.089844 99.179688 C 64.089844 97.90625 63.058594 96.875 61.785156 96.875 C 60.511719 96.875 59.480469 97.90625 59.480469 99.179688 C 59.480469 100.453125 60.511719 101.484375 61.785156 101.484375 C 63.058594 101.484375 64.089844 100.453125 64.089844 99.179688 Z M 64.089844 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 59.085938 99.179688 C 59.085938 97.90625 58.054688 96.875 56.78125 96.875 C 55.507812 96.875 54.476562 97.90625 54.476562 99.179688 C 54.476562 100.453125 55.507812 101.484375 56.78125 101.484375 C 58.054688 101.484375 59.085938 100.453125 59.085938 99.179688 Z M 59.085938 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.96875 99.179688 C 72.96875 97.90625 71.9375 96.875 70.664062 96.875 C 69.390625 96.875 68.359375 97.90625 68.359375 99.179688 C 68.359375 100.453125 69.390625 101.484375 70.664062 101.484375 C 71.9375 101.484375 72.96875 100.453125 72.96875 99.179688 Z M 72.96875 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.265625 99.179688 C 69.265625 97.90625 68.234375 96.875 66.960938 96.875 C 65.6875 96.875 64.65625 97.90625 64.65625 99.179688 C 64.65625 100.453125 65.6875 101.484375 66.960938 101.484375 C 68.234375 101.484375 69.265625 100.453125 69.265625 99.179688 Z M 69.265625 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.847656 99.179688 C 57.847656 97.90625 56.816406 96.875 55.542969 96.875 C 54.269531 96.875 53.238281 97.90625 53.238281 99.179688 C 53.238281 100.453125 54.269531 101.484375 55.542969 101.484375 C 56.816406 101.484375 57.847656 100.453125 57.847656 99.179688 Z M 57.847656 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.664062 99.179688 C 60.664062 97.90625 59.632812 96.875 58.359375 96.875 C 57.085938 96.875 56.054688 97.90625 56.054688 99.179688 C 56.054688 100.453125 57.085938 101.484375 58.359375 101.484375 C 59.632812 101.484375 60.664062 100.453125 60.664062 99.179688 Z M 60.664062 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.644531 99.179688 C 66.644531 97.90625 65.613281 96.875 64.339844 96.875 C 63.066406 96.875 62.035156 97.90625 62.035156 99.179688 C 62.035156 100.453125 63.066406 101.484375 64.339844 101.484375 C 65.613281 101.484375 66.644531 100.453125 66.644531 99.179688 Z M 66.644531 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.109375 99.179688 C 57.109375 97.90625 56.078125 96.875 54.804688 96.875 C 53.53125 96.875 52.5 97.90625 52.5 99.179688 C 52.5 100.453125 53.53125 101.484375 54.804688 101.484375 C 56.078125 101.484375 57.109375 100.453125 57.109375 99.179688 Z M 57.109375 99.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.925781 94.335938 C 73.925781 93.0625 72.894531 92.03125 71.621094 92.03125 C 70.347656 92.03125 69.316406 93.0625 69.316406 94.335938 C 69.316406 95.609375 70.347656 96.640625 71.621094 96.640625 C 72.894531 96.640625 73.925781 95.609375 73.925781 94.335938 Z M 73.925781 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.074219 94.335938 C 63.074219 93.0625 62.042969 92.03125 60.769531 92.03125 C 59.496094 92.03125 58.464844 93.0625 58.464844 94.335938 C 58.464844 95.609375 59.496094 96.640625 60.769531 96.640625 C 62.042969 96.640625 63.074219 95.609375 63.074219 94.335938 Z M 63.074219 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.703125 94.335938 C 69.703125 93.0625 68.671875 92.03125 67.398438 92.03125 C 66.125 92.03125 65.09375 93.0625 65.09375 94.335938 C 65.09375 95.609375 66.125 96.640625 67.398438 96.640625 C 68.671875 96.640625 69.703125 95.609375 69.703125 94.335938 Z M 69.703125 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.707031 94.335938 C 63.707031 93.0625 62.675781 92.03125 61.402344 92.03125 C 60.128906 92.03125 59.097656 93.0625 59.097656 94.335938 C 59.097656 95.609375 60.128906 96.640625 61.402344 96.640625 C 62.675781 96.640625 63.707031 95.609375 63.707031 94.335938 Z M 63.707031 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.628906 94.335938 C 65.628906 93.0625 64.597656 92.03125 63.324219 92.03125 C 62.050781 92.03125 61.019531 93.0625 61.019531 94.335938 C 61.019531 95.609375 62.050781 96.640625 63.324219 96.640625 C 64.597656 96.640625 65.628906 95.609375 65.628906 94.335938 Z M 65.628906 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.378906 94.335938 C 68.378906 93.0625 67.347656 92.03125 66.074219 92.03125 C 64.800781 92.03125 63.769531 93.0625 63.769531 94.335938 C 63.769531 95.609375 64.800781 96.640625 66.074219 96.640625 C 67.347656 96.640625 68.378906 95.609375 68.378906 94.335938 Z M 68.378906 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.863281 94.335938 C 69.863281 93.0625 68.832031 92.03125 67.558594 92.03125 C 66.285156 92.03125 65.253906 93.0625 65.253906 94.335938 C 65.253906 95.609375 66.285156 96.640625 67.558594 96.640625 C 68.832031 96.640625 69.863281 95.609375 69.863281 94.335938 Z M 69.863281 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.917969 94.335938 C 64.917969 93.0625 63.886719 92.03125 62.613281 92.03125 C 61.339844 92.03125 60.308594 93.0625 60.308594 94.335938 C 60.308594 95.609375 61.339844 96.640625 62.613281 96.640625 C 63.886719 96.640625 64.917969 95.609375 64.917969 94.335938 Z M 64.917969 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.140625 94.335938 C 75.140625 93.0625 74.109375 92.03125 72.835938 92.03125 C 71.5625 92.03125 70.53125 93.0625 70.53125 94.335938 C 70.53125 95.609375 71.5625 96.640625 72.835938 96.640625 C 74.109375 96.640625 75.140625 95.609375 75.140625 94.335938 Z M 75.140625 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.339844 94.335938 C 69.339844 93.0625 68.308594 92.03125 67.035156 92.03125 C 65.761719 92.03125 64.730469 93.0625 64.730469 94.335938 C 64.730469 95.609375 65.761719 96.640625 67.035156 96.640625 C 68.308594 96.640625 69.339844 95.609375 69.339844 94.335938 Z M 69.339844 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.164062 94.335938 C 62.164062 93.0625 61.132812 92.03125 59.859375 92.03125 C 58.585938 92.03125 57.554688 93.0625 57.554688 94.335938 C 57.554688 95.609375 58.585938 96.640625 59.859375 96.640625 C 61.132812 96.640625 62.164062 95.609375 62.164062 94.335938 Z M 62.164062 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.207031 94.335938 C 69.207031 93.0625 68.175781 92.03125 66.902344 92.03125 C 65.628906 92.03125 64.597656 93.0625 64.597656 94.335938 C 64.597656 95.609375 65.628906 96.640625 66.902344 96.640625 C 68.175781 96.640625 69.207031 95.609375 69.207031 94.335938 Z M 69.207031 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.722656 94.335938 C 73.722656 93.0625 72.691406 92.03125 71.417969 92.03125 C 70.144531 92.03125 69.113281 93.0625 69.113281 94.335938 C 69.113281 95.609375 70.144531 96.640625 71.417969 96.640625 C 72.691406 96.640625 73.722656 95.609375 73.722656 94.335938 Z M 73.722656 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.179688 94.335938 C 66.179688 93.0625 65.148438 92.03125 63.875 92.03125 C 62.601562 92.03125 61.570312 93.0625 61.570312 94.335938 C 61.570312 95.609375 62.601562 96.640625 63.875 96.640625 C 65.148438 96.640625 66.179688 95.609375 66.179688 94.335938 Z M 66.179688 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.335938 94.335938 C 66.335938 93.0625 65.304688 92.03125 64.03125 92.03125 C 62.757812 92.03125 61.726562 93.0625 61.726562 94.335938 C 61.726562 95.609375 62.757812 96.640625 64.03125 96.640625 C 65.304688 96.640625 66.335938 95.609375 66.335938 94.335938 Z M 66.335938 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.628906 94.335938 C 75.628906 93.0625 74.597656 92.03125 73.324219 92.03125 C 72.050781 92.03125 71.019531 93.0625 71.019531 94.335938 C 71.019531 95.609375 72.050781 96.640625 73.324219 96.640625 C 74.597656 96.640625 75.628906 95.609375 75.628906 94.335938 Z M 75.628906 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.835938 94.335938 C 71.835938 93.0625 70.804688 92.03125 69.53125 92.03125 C 68.257812 92.03125 67.226562 93.0625 67.226562 94.335938 C 67.226562 95.609375 68.257812 96.640625 69.53125 96.640625 C 70.804688 96.640625 71.835938 95.609375 71.835938 94.335938 Z M 71.835938 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.855469 94.335938 C 65.855469 93.0625 64.824219 92.03125 63.550781 92.03125 C 62.277344 92.03125 61.246094 93.0625 61.246094 94.335938 C 61.246094 95.609375 62.277344 96.640625 63.550781 96.640625 C 64.824219 96.640625 65.855469 95.609375 65.855469 94.335938 Z M 65.855469 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.453125 94.335938 C 68.453125 93.0625 67.421875 92.03125 66.148438 92.03125 C 64.875 92.03125 63.84375 93.0625 63.84375 94.335938 C 63.84375 95.609375 64.875 96.640625 66.148438 96.640625 C 67.421875 96.640625 68.453125 95.609375 68.453125 94.335938 Z M 68.453125 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.144531 94.335938 C 71.144531 93.0625 70.113281 92.03125 68.839844 92.03125 C 67.566406 92.03125 66.535156 93.0625 66.535156 94.335938 C 66.535156 95.609375 67.566406 96.640625 68.839844 96.640625 C 70.113281 96.640625 71.144531 95.609375 71.144531 94.335938 Z M 71.144531 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.019531 94.335938 C 62.019531 93.0625 60.988281 92.03125 59.714844 92.03125 C 58.441406 92.03125 57.410156 93.0625 57.410156 94.335938 C 57.410156 95.609375 58.441406 96.640625 59.714844 96.640625 C 60.988281 96.640625 62.019531 95.609375 62.019531 94.335938 Z M 62.019531 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.640625 94.335938 C 69.640625 93.0625 68.609375 92.03125 67.335938 92.03125 C 66.0625 92.03125 65.03125 93.0625 65.03125 94.335938 C 65.03125 95.609375 66.0625 96.640625 67.335938 96.640625 C 68.609375 96.640625 69.640625 95.609375 69.640625 94.335938 Z M 69.640625 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.480469 94.335938 C 67.480469 93.0625 66.449219 92.03125 65.175781 92.03125 C 63.902344 92.03125 62.871094 93.0625 62.871094 94.335938 C 62.871094 95.609375 63.902344 96.640625 65.175781 96.640625 C 66.449219 96.640625 67.480469 95.609375 67.480469 94.335938 Z M 67.480469 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.59375 94.335938 C 63.59375 93.0625 62.5625 92.03125 61.289062 92.03125 C 60.015625 92.03125 58.984375 93.0625 58.984375 94.335938 C 58.984375 95.609375 60.015625 96.640625 61.289062 96.640625 C 62.5625 96.640625 63.59375 95.609375 63.59375 94.335938 Z M 63.59375 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.378906 94.335938 C 74.378906 93.0625 73.347656 92.03125 72.074219 92.03125 C 70.800781 92.03125 69.769531 93.0625 69.769531 94.335938 C 69.769531 95.609375 70.800781 96.640625 72.074219 96.640625 C 73.347656 96.640625 74.378906 95.609375 74.378906 94.335938 Z M 74.378906 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.5 94.335938 C 71.5 93.0625 70.46875 92.03125 69.195312 92.03125 C 67.921875 92.03125 66.890625 93.0625 66.890625 94.335938 C 66.890625 95.609375 67.921875 96.640625 69.195312 96.640625 C 70.46875 96.640625 71.5 95.609375 71.5 94.335938 Z M 71.5 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.632812 94.335938 C 62.632812 93.0625 61.601562 92.03125 60.328125 92.03125 C 59.054688 92.03125 58.023438 93.0625 58.023438 94.335938 C 58.023438 95.609375 59.054688 96.640625 60.328125 96.640625 C 61.601562 96.640625 62.632812 95.609375 62.632812 94.335938 Z M 62.632812 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.820312 94.335938 C 64.820312 93.0625 63.789062 92.03125 62.515625 92.03125 C 61.242188 92.03125 60.210938 93.0625 60.210938 94.335938 C 60.210938 95.609375 61.242188 96.640625 62.515625 96.640625 C 63.789062 96.640625 64.820312 95.609375 64.820312 94.335938 Z M 64.820312 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.464844 94.335938 C 69.464844 93.0625 68.433594 92.03125 67.160156 92.03125 C 65.886719 92.03125 64.855469 93.0625 64.855469 94.335938 C 64.855469 95.609375 65.886719 96.640625 67.160156 96.640625 C 68.433594 96.640625 69.464844 95.609375 69.464844 94.335938 Z M 69.464844 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.058594 94.335938 C 62.058594 93.0625 61.027344 92.03125 59.753906 92.03125 C 58.480469 92.03125 57.449219 93.0625 57.449219 94.335938 C 57.449219 95.609375 58.480469 96.640625 59.753906 96.640625 C 61.027344 96.640625 62.058594 95.609375 62.058594 94.335938 Z M 62.058594 94.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.273438 89.492188 C 75.273438 88.21875 74.242188 87.1875 72.96875 87.1875 C 71.695312 87.1875 70.664062 88.21875 70.664062 89.492188 C 70.664062 90.765625 71.695312 91.796875 72.96875 91.796875 C 74.242188 91.796875 75.273438 90.765625 75.273438 89.492188 Z M 75.273438 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.644531 89.492188 C 67.644531 88.21875 66.613281 87.1875 65.339844 87.1875 C 64.066406 87.1875 63.035156 88.21875 63.035156 89.492188 C 63.035156 90.765625 64.066406 91.796875 65.339844 91.796875 C 66.613281 91.796875 67.644531 90.765625 67.644531 89.492188 Z M 67.644531 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.304688 89.492188 C 72.304688 88.21875 71.273438 87.1875 70 87.1875 C 68.726562 87.1875 67.695312 88.21875 67.695312 89.492188 C 67.695312 90.765625 68.726562 91.796875 70 91.796875 C 71.273438 91.796875 72.304688 90.765625 72.304688 89.492188 Z M 72.304688 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.089844 89.492188 C 68.089844 88.21875 67.058594 87.1875 65.785156 87.1875 C 64.511719 87.1875 63.480469 88.21875 63.480469 89.492188 C 63.480469 90.765625 64.511719 91.796875 65.785156 91.796875 C 67.058594 91.796875 68.089844 90.765625 68.089844 89.492188 Z M 68.089844 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.441406 89.492188 C 69.441406 88.21875 68.410156 87.1875 67.136719 87.1875 C 65.863281 87.1875 64.832031 88.21875 64.832031 89.492188 C 64.832031 90.765625 65.863281 91.796875 67.136719 91.796875 C 68.410156 91.796875 69.441406 90.765625 69.441406 89.492188 Z M 69.441406 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.371094 89.492188 C 71.371094 88.21875 70.339844 87.1875 69.066406 87.1875 C 67.792969 87.1875 66.761719 88.21875 66.761719 89.492188 C 66.761719 90.765625 67.792969 91.796875 69.066406 91.796875 C 70.339844 91.796875 71.371094 90.765625 71.371094 89.492188 Z M 71.371094 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.417969 89.492188 C 72.417969 88.21875 71.386719 87.1875 70.113281 87.1875 C 68.839844 87.1875 67.808594 88.21875 67.808594 89.492188 C 67.808594 90.765625 68.839844 91.796875 70.113281 91.796875 C 71.386719 91.796875 72.417969 90.765625 72.417969 89.492188 Z M 72.417969 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.941406 89.492188 C 68.941406 88.21875 67.910156 87.1875 66.636719 87.1875 C 65.363281 87.1875 64.332031 88.21875 64.332031 89.492188 C 64.332031 90.765625 65.363281 91.796875 66.636719 91.796875 C 67.910156 91.796875 68.941406 90.765625 68.941406 89.492188 Z M 68.941406 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.125 89.492188 C 76.125 88.21875 75.09375 87.1875 73.820312 87.1875 C 72.546875 87.1875 71.515625 88.21875 71.515625 89.492188 C 71.515625 90.765625 72.546875 91.796875 73.820312 91.796875 C 75.09375 91.796875 76.125 90.765625 76.125 89.492188 Z M 76.125 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.046875 89.492188 C 72.046875 88.21875 71.015625 87.1875 69.742188 87.1875 C 68.46875 87.1875 67.4375 88.21875 67.4375 89.492188 C 67.4375 90.765625 68.46875 91.796875 69.742188 91.796875 C 71.015625 91.796875 72.046875 90.765625 72.046875 89.492188 Z M 72.046875 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.003906 89.492188 C 67.003906 88.21875 65.972656 87.1875 64.699219 87.1875 C 63.425781 87.1875 62.394531 88.21875 62.394531 89.492188 C 62.394531 90.765625 63.425781 91.796875 64.699219 91.796875 C 65.972656 91.796875 67.003906 90.765625 67.003906 89.492188 Z M 67.003906 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.953125 89.492188 C 71.953125 88.21875 70.921875 87.1875 69.648438 87.1875 C 68.375 87.1875 67.34375 88.21875 67.34375 89.492188 C 67.34375 90.765625 68.375 91.796875 69.648438 91.796875 C 70.921875 91.796875 71.953125 90.765625 71.953125 89.492188 Z M 71.953125 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.128906 89.492188 C 75.128906 88.21875 74.097656 87.1875 72.824219 87.1875 C 71.550781 87.1875 70.519531 88.21875 70.519531 89.492188 C 70.519531 90.765625 71.550781 91.796875 72.824219 91.796875 C 74.097656 91.796875 75.128906 90.765625 75.128906 89.492188 Z M 75.128906 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.828125 89.492188 C 69.828125 88.21875 68.796875 87.1875 67.523438 87.1875 C 66.25 87.1875 65.21875 88.21875 65.21875 89.492188 C 65.21875 90.765625 66.25 91.796875 67.523438 91.796875 C 68.796875 91.796875 69.828125 90.765625 69.828125 89.492188 Z M 69.828125 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.9375 89.492188 C 69.9375 88.21875 68.90625 87.1875 67.632812 87.1875 C 66.359375 87.1875 65.328125 88.21875 65.328125 89.492188 C 65.328125 90.765625 66.359375 91.796875 67.632812 91.796875 C 68.90625 91.796875 69.9375 90.765625 69.9375 89.492188 Z M 69.9375 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.46875 89.492188 C 76.46875 88.21875 75.4375 87.1875 74.164062 87.1875 C 72.890625 87.1875 71.859375 88.21875 71.859375 89.492188 C 71.859375 90.765625 72.890625 91.796875 74.164062 91.796875 C 75.4375 91.796875 76.46875 90.765625 76.46875 89.492188 Z M 76.46875 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.800781 89.492188 C 73.800781 88.21875 72.769531 87.1875 71.496094 87.1875 C 70.222656 87.1875 69.191406 88.21875 69.191406 89.492188 C 69.191406 90.765625 70.222656 91.796875 71.496094 91.796875 C 72.769531 91.796875 73.800781 90.765625 73.800781 89.492188 Z M 73.800781 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.597656 89.492188 C 69.597656 88.21875 68.566406 87.1875 67.292969 87.1875 C 66.019531 87.1875 64.988281 88.21875 64.988281 89.492188 C 64.988281 90.765625 66.019531 91.796875 67.292969 91.796875 C 68.566406 91.796875 69.597656 90.765625 69.597656 89.492188 Z M 69.597656 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.425781 89.492188 C 71.425781 88.21875 70.394531 87.1875 69.121094 87.1875 C 67.847656 87.1875 66.816406 88.21875 66.816406 89.492188 C 66.816406 90.765625 67.847656 91.796875 69.121094 91.796875 C 70.394531 91.796875 71.425781 90.765625 71.425781 89.492188 Z M 71.425781 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.316406 89.492188 C 73.316406 88.21875 72.285156 87.1875 71.011719 87.1875 C 69.738281 87.1875 68.707031 88.21875 68.707031 89.492188 C 68.707031 90.765625 69.738281 91.796875 71.011719 91.796875 C 72.285156 91.796875 73.316406 90.765625 73.316406 89.492188 Z M 73.316406 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.902344 89.492188 C 66.902344 88.21875 65.871094 87.1875 64.597656 87.1875 C 63.324219 87.1875 62.292969 88.21875 62.292969 89.492188 C 62.292969 90.765625 63.324219 91.796875 64.597656 91.796875 C 65.871094 91.796875 66.902344 90.765625 66.902344 89.492188 Z M 66.902344 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.257812 89.492188 C 72.257812 88.21875 71.226562 87.1875 69.953125 87.1875 C 68.679688 87.1875 67.648438 88.21875 67.648438 89.492188 C 67.648438 90.765625 68.679688 91.796875 69.953125 91.796875 C 71.226562 91.796875 72.257812 90.765625 72.257812 89.492188 Z M 72.257812 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.742188 89.492188 C 70.742188 88.21875 69.710938 87.1875 68.4375 87.1875 C 67.164062 87.1875 66.132812 88.21875 66.132812 89.492188 C 66.132812 90.765625 67.164062 91.796875 68.4375 91.796875 C 69.710938 91.796875 70.742188 90.765625 70.742188 89.492188 Z M 70.742188 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.011719 89.492188 C 68.011719 88.21875 66.980469 87.1875 65.707031 87.1875 C 64.433594 87.1875 63.402344 88.21875 63.402344 89.492188 C 63.402344 90.765625 64.433594 91.796875 65.707031 91.796875 C 66.980469 91.796875 68.011719 90.765625 68.011719 89.492188 Z M 68.011719 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.589844 89.492188 C 75.589844 88.21875 74.558594 87.1875 73.285156 87.1875 C 72.011719 87.1875 70.980469 88.21875 70.980469 89.492188 C 70.980469 90.765625 72.011719 91.796875 73.285156 91.796875 C 74.558594 91.796875 75.589844 90.765625 75.589844 89.492188 Z M 75.589844 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.566406 89.492188 C 73.566406 88.21875 72.535156 87.1875 71.261719 87.1875 C 69.988281 87.1875 68.957031 88.21875 68.957031 89.492188 C 68.957031 90.765625 69.988281 91.796875 71.261719 91.796875 C 72.535156 91.796875 73.566406 90.765625 73.566406 89.492188 Z M 73.566406 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.335938 89.492188 C 67.335938 88.21875 66.304688 87.1875 65.03125 87.1875 C 63.757812 87.1875 62.726562 88.21875 62.726562 89.492188 C 62.726562 90.765625 63.757812 91.796875 65.03125 91.796875 C 66.304688 91.796875 67.335938 90.765625 67.335938 89.492188 Z M 67.335938 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.871094 89.492188 C 68.871094 88.21875 67.839844 87.1875 66.566406 87.1875 C 65.292969 87.1875 64.261719 88.21875 64.261719 89.492188 C 64.261719 90.765625 65.292969 91.796875 66.566406 91.796875 C 67.839844 91.796875 68.871094 90.765625 68.871094 89.492188 Z M 68.871094 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.136719 89.492188 C 72.136719 88.21875 71.105469 87.1875 69.832031 87.1875 C 68.558594 87.1875 67.527344 88.21875 67.527344 89.492188 C 67.527344 90.765625 68.558594 91.796875 69.832031 91.796875 C 71.105469 91.796875 72.136719 90.765625 72.136719 89.492188 Z M 72.136719 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.929688 89.492188 C 66.929688 88.21875 65.898438 87.1875 64.625 87.1875 C 63.351562 87.1875 62.320312 88.21875 62.320312 89.492188 C 62.320312 90.765625 63.351562 91.796875 64.625 91.796875 C 65.898438 91.796875 66.929688 90.765625 66.929688 89.492188 Z M 66.929688 89.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.410156 84.648438 C 76.410156 83.375 75.378906 82.34375 74.105469 82.34375 C 72.832031 82.34375 71.800781 83.375 71.800781 84.648438 C 71.800781 85.921875 72.832031 86.953125 74.105469 86.953125 C 75.378906 86.953125 76.410156 85.921875 76.410156 84.648438 Z M 76.410156 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.085938 84.648438 C 72.085938 83.375 71.054688 82.34375 69.78125 82.34375 C 68.507812 82.34375 67.476562 83.375 67.476562 84.648438 C 67.476562 85.921875 68.507812 86.953125 69.78125 86.953125 C 71.054688 86.953125 72.085938 85.921875 72.085938 84.648438 Z M 72.085938 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.726562 84.648438 C 74.726562 83.375 73.695312 82.34375 72.421875 82.34375 C 71.148438 82.34375 70.117188 83.375 70.117188 84.648438 C 70.117188 85.921875 71.148438 86.953125 72.421875 86.953125 C 73.695312 86.953125 74.726562 85.921875 74.726562 84.648438 Z M 74.726562 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.335938 84.648438 C 72.335938 83.375 71.304688 82.34375 70.03125 82.34375 C 68.757812 82.34375 67.726562 83.375 67.726562 84.648438 C 67.726562 85.921875 68.757812 86.953125 70.03125 86.953125 C 71.304688 86.953125 72.335938 85.921875 72.335938 84.648438 Z M 72.335938 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.105469 84.648438 C 73.105469 83.375 72.074219 82.34375 70.800781 82.34375 C 69.527344 82.34375 68.496094 83.375 68.496094 84.648438 C 68.496094 85.921875 69.527344 86.953125 70.800781 86.953125 C 72.074219 86.953125 73.105469 85.921875 73.105469 84.648438 Z M 73.105469 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.199219 84.648438 C 74.199219 83.375 73.167969 82.34375 71.894531 82.34375 C 70.621094 82.34375 69.589844 83.375 69.589844 84.648438 C 69.589844 85.921875 70.621094 86.953125 71.894531 86.953125 C 73.167969 86.953125 74.199219 85.921875 74.199219 84.648438 Z M 74.199219 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.789062 84.648438 C 74.789062 83.375 73.757812 82.34375 72.484375 82.34375 C 71.210938 82.34375 70.179688 83.375 70.179688 84.648438 C 70.179688 85.921875 71.210938 86.953125 72.484375 86.953125 C 73.757812 86.953125 74.789062 85.921875 74.789062 84.648438 Z M 74.789062 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.820312 84.648438 C 72.820312 83.375 71.789062 82.34375 70.515625 82.34375 C 69.242188 82.34375 68.210938 83.375 68.210938 84.648438 C 68.210938 85.921875 69.242188 86.953125 70.515625 86.953125 C 71.789062 86.953125 72.820312 85.921875 72.820312 84.648438 Z M 72.820312 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.894531 84.648438 C 76.894531 83.375 75.863281 82.34375 74.589844 82.34375 C 73.316406 82.34375 72.285156 83.375 72.285156 84.648438 C 72.285156 85.921875 73.316406 86.953125 74.589844 86.953125 C 75.863281 86.953125 76.894531 85.921875 76.894531 84.648438 Z M 76.894531 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.582031 84.648438 C 74.582031 83.375 73.550781 82.34375 72.277344 82.34375 C 71.003906 82.34375 69.972656 83.375 69.972656 84.648438 C 69.972656 85.921875 71.003906 86.953125 72.277344 86.953125 C 73.550781 86.953125 74.582031 85.921875 74.582031 84.648438 Z M 74.582031 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.722656 84.648438 C 71.722656 83.375 70.691406 82.34375 69.417969 82.34375 C 68.144531 82.34375 67.113281 83.375 67.113281 84.648438 C 67.113281 85.921875 68.144531 86.953125 69.417969 86.953125 C 70.691406 86.953125 71.722656 85.921875 71.722656 84.648438 Z M 71.722656 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.527344 84.648438 C 74.527344 83.375 73.496094 82.34375 72.222656 82.34375 C 70.949219 82.34375 69.917969 83.375 69.917969 84.648438 C 69.917969 85.921875 70.949219 86.953125 72.222656 86.953125 C 73.496094 86.953125 74.527344 85.921875 74.527344 84.648438 Z M 74.527344 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.328125 84.648438 C 76.328125 83.375 75.296875 82.34375 74.023438 82.34375 C 72.75 82.34375 71.71875 83.375 71.71875 84.648438 C 71.71875 85.921875 72.75 86.953125 74.023438 86.953125 C 75.296875 86.953125 76.328125 85.921875 76.328125 84.648438 Z M 76.328125 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.324219 84.648438 C 73.324219 83.375 72.292969 82.34375 71.019531 82.34375 C 69.746094 82.34375 68.714844 83.375 68.714844 84.648438 C 68.714844 85.921875 69.746094 86.953125 71.019531 86.953125 C 72.292969 86.953125 73.324219 85.921875 73.324219 84.648438 Z M 73.324219 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.382812 84.648438 C 73.382812 83.375 72.351562 82.34375 71.078125 82.34375 C 69.804688 82.34375 68.773438 83.375 68.773438 84.648438 C 68.773438 85.921875 69.804688 86.953125 71.078125 86.953125 C 72.351562 86.953125 73.382812 85.921875 73.382812 84.648438 Z M 73.382812 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.089844 84.648438 C 77.089844 83.375 76.058594 82.34375 74.785156 82.34375 C 73.511719 82.34375 72.480469 83.375 72.480469 84.648438 C 72.480469 85.921875 73.511719 86.953125 74.785156 86.953125 C 76.058594 86.953125 77.089844 85.921875 77.089844 84.648438 Z M 77.089844 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.578125 84.648438 C 75.578125 83.375 74.546875 82.34375 73.273438 82.34375 C 72 82.34375 70.96875 83.375 70.96875 84.648438 C 70.96875 85.921875 72 86.953125 73.273438 86.953125 C 74.546875 86.953125 75.578125 85.921875 75.578125 84.648438 Z M 75.578125 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.191406 84.648438 C 73.191406 83.375 72.160156 82.34375 70.886719 82.34375 C 69.613281 82.34375 68.582031 83.375 68.582031 84.648438 C 68.582031 85.921875 69.613281 86.953125 70.886719 86.953125 C 72.160156 86.953125 73.191406 85.921875 73.191406 84.648438 Z M 73.191406 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.226562 84.648438 C 74.226562 83.375 73.195312 82.34375 71.921875 82.34375 C 70.648438 82.34375 69.617188 83.375 69.617188 84.648438 C 69.617188 85.921875 70.648438 86.953125 71.921875 86.953125 C 73.195312 86.953125 74.226562 85.921875 74.226562 84.648438 Z M 74.226562 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.300781 84.648438 C 75.300781 83.375 74.269531 82.34375 72.996094 82.34375 C 71.722656 82.34375 70.691406 83.375 70.691406 84.648438 C 70.691406 85.921875 71.722656 86.953125 72.996094 86.953125 C 74.269531 86.953125 75.300781 85.921875 75.300781 84.648438 Z M 75.300781 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.664062 84.648438 C 71.664062 83.375 70.632812 82.34375 69.359375 82.34375 C 68.085938 82.34375 67.054688 83.375 67.054688 84.648438 C 67.054688 85.921875 68.085938 86.953125 69.359375 86.953125 C 70.632812 86.953125 71.664062 85.921875 71.664062 84.648438 Z M 71.664062 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.703125 84.648438 C 74.703125 83.375 73.671875 82.34375 72.398438 82.34375 C 71.125 82.34375 70.09375 83.375 70.09375 84.648438 C 70.09375 85.921875 71.125 86.953125 72.398438 86.953125 C 73.671875 86.953125 74.703125 85.921875 74.703125 84.648438 Z M 74.703125 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.839844 84.648438 C 73.839844 83.375 72.808594 82.34375 71.535156 82.34375 C 70.261719 82.34375 69.230469 83.375 69.230469 84.648438 C 69.230469 85.921875 70.261719 86.953125 71.535156 86.953125 C 72.808594 86.953125 73.839844 85.921875 73.839844 84.648438 Z M 73.839844 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.292969 84.648438 C 72.292969 83.375 71.261719 82.34375 69.988281 82.34375 C 68.714844 82.34375 67.683594 83.375 67.683594 84.648438 C 67.683594 85.921875 68.714844 86.953125 69.988281 86.953125 C 71.261719 86.953125 72.292969 85.921875 72.292969 84.648438 Z M 72.292969 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.589844 84.648438 C 76.589844 83.375 75.558594 82.34375 74.285156 82.34375 C 73.011719 82.34375 71.980469 83.375 71.980469 84.648438 C 71.980469 85.921875 73.011719 86.953125 74.285156 86.953125 C 75.558594 86.953125 76.589844 85.921875 76.589844 84.648438 Z M 76.589844 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.441406 84.648438 C 75.441406 83.375 74.410156 82.34375 73.136719 82.34375 C 71.863281 82.34375 70.832031 83.375 70.832031 84.648438 C 70.832031 85.921875 71.863281 86.953125 73.136719 86.953125 C 74.410156 86.953125 75.441406 85.921875 75.441406 84.648438 Z M 75.441406 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.910156 84.648438 C 71.910156 83.375 70.878906 82.34375 69.605469 82.34375 C 68.332031 82.34375 67.300781 83.375 67.300781 84.648438 C 67.300781 85.921875 68.332031 86.953125 69.605469 86.953125 C 70.878906 86.953125 71.910156 85.921875 71.910156 84.648438 Z M 71.910156 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.78125 84.648438 C 72.78125 83.375 71.75 82.34375 70.476562 82.34375 C 69.203125 82.34375 68.171875 83.375 68.171875 84.648438 C 68.171875 85.921875 69.203125 86.953125 70.476562 86.953125 C 71.75 86.953125 72.78125 85.921875 72.78125 84.648438 Z M 72.78125 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.632812 84.648438 C 74.632812 83.375 73.601562 82.34375 72.328125 82.34375 C 71.054688 82.34375 70.023438 83.375 70.023438 84.648438 C 70.023438 85.921875 71.054688 86.953125 72.328125 86.953125 C 73.601562 86.953125 74.632812 85.921875 74.632812 84.648438 Z M 74.632812 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.679688 84.648438 C 71.679688 83.375 70.648438 82.34375 69.375 82.34375 C 68.101562 82.34375 67.070312 83.375 67.070312 84.648438 C 67.070312 85.921875 68.101562 86.953125 69.375 86.953125 C 70.648438 86.953125 71.679688 85.921875 71.679688 84.648438 Z M 71.679688 84.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.328125 79.804688 C 77.328125 78.53125 76.296875 77.5 75.023438 77.5 C 73.75 77.5 72.71875 78.53125 72.71875 79.804688 C 72.71875 81.078125 73.75 82.109375 75.023438 82.109375 C 76.296875 82.109375 77.328125 81.078125 77.328125 79.804688 Z M 77.328125 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.347656 79.804688 C 76.347656 78.53125 75.316406 77.5 74.042969 77.5 C 72.769531 77.5 71.738281 78.53125 71.738281 79.804688 C 71.738281 81.078125 72.769531 82.109375 74.042969 82.109375 C 75.316406 82.109375 76.347656 81.078125 76.347656 79.804688 Z M 76.347656 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.945312 79.804688 C 76.945312 78.53125 75.914062 77.5 74.640625 77.5 C 73.367188 77.5 72.335938 78.53125 72.335938 79.804688 C 72.335938 81.078125 73.367188 82.109375 74.640625 82.109375 C 75.914062 82.109375 76.945312 81.078125 76.945312 79.804688 Z M 76.945312 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.40625 79.804688 C 76.40625 78.53125 75.375 77.5 74.101562 77.5 C 72.828125 77.5 71.796875 78.53125 71.796875 79.804688 C 71.796875 81.078125 72.828125 82.109375 74.101562 82.109375 C 75.375 82.109375 76.40625 81.078125 76.40625 79.804688 Z M 76.40625 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.578125 79.804688 C 76.578125 78.53125 75.546875 77.5 74.273438 77.5 C 73 77.5 71.96875 78.53125 71.96875 79.804688 C 71.96875 81.078125 73 82.109375 74.273438 82.109375 C 75.546875 82.109375 76.578125 81.078125 76.578125 79.804688 Z M 76.578125 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.828125 79.804688 C 76.828125 78.53125 75.796875 77.5 74.523438 77.5 C 73.25 77.5 72.21875 78.53125 72.21875 79.804688 C 72.21875 81.078125 73.25 82.109375 74.523438 82.109375 C 75.796875 82.109375 76.828125 81.078125 76.828125 79.804688 Z M 76.828125 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.960938 79.804688 C 76.960938 78.53125 75.929688 77.5 74.65625 77.5 C 73.382812 77.5 72.351562 78.53125 72.351562 79.804688 C 72.351562 81.078125 73.382812 82.109375 74.65625 82.109375 C 75.929688 82.109375 76.960938 81.078125 76.960938 79.804688 Z M 76.960938 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.515625 79.804688 C 76.515625 78.53125 75.484375 77.5 74.210938 77.5 C 72.9375 77.5 71.90625 78.53125 71.90625 79.804688 C 71.90625 81.078125 72.9375 82.109375 74.210938 82.109375 C 75.484375 82.109375 76.515625 81.078125 76.515625 79.804688 Z M 76.515625 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.4375 79.804688 C 77.4375 78.53125 76.40625 77.5 75.132812 77.5 C 73.859375 77.5 72.828125 78.53125 72.828125 79.804688 C 72.828125 81.078125 73.859375 82.109375 75.132812 82.109375 C 76.40625 82.109375 77.4375 81.078125 77.4375 79.804688 Z M 77.4375 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.914062 79.804688 C 76.914062 78.53125 75.882812 77.5 74.609375 77.5 C 73.335938 77.5 72.304688 78.53125 72.304688 79.804688 C 72.304688 81.078125 73.335938 82.109375 74.609375 82.109375 C 75.882812 82.109375 76.914062 81.078125 76.914062 79.804688 Z M 76.914062 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.265625 79.804688 C 76.265625 78.53125 75.234375 77.5 73.960938 77.5 C 72.6875 77.5 71.65625 78.53125 71.65625 79.804688 C 71.65625 81.078125 72.6875 82.109375 73.960938 82.109375 C 75.234375 82.109375 76.265625 81.078125 76.265625 79.804688 Z M 76.265625 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.902344 79.804688 C 76.902344 78.53125 75.871094 77.5 74.597656 77.5 C 73.324219 77.5 72.292969 78.53125 72.292969 79.804688 C 72.292969 81.078125 73.324219 82.109375 74.597656 82.109375 C 75.871094 82.109375 76.902344 81.078125 76.902344 79.804688 Z M 76.902344 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.308594 79.804688 C 77.308594 78.53125 76.277344 77.5 75.003906 77.5 C 73.730469 77.5 72.699219 78.53125 72.699219 79.804688 C 72.699219 81.078125 73.730469 82.109375 75.003906 82.109375 C 76.277344 82.109375 77.308594 81.078125 77.308594 79.804688 Z M 77.308594 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.628906 79.804688 C 76.628906 78.53125 75.597656 77.5 74.324219 77.5 C 73.050781 77.5 72.019531 78.53125 72.019531 79.804688 C 72.019531 81.078125 73.050781 82.109375 74.324219 82.109375 C 75.597656 82.109375 76.628906 81.078125 76.628906 79.804688 Z M 76.628906 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.644531 79.804688 C 76.644531 78.53125 75.613281 77.5 74.339844 77.5 C 73.066406 77.5 72.035156 78.53125 72.035156 79.804688 C 72.035156 81.078125 73.066406 82.109375 74.339844 82.109375 C 75.613281 82.109375 76.644531 81.078125 76.644531 79.804688 Z M 76.644531 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.480469 79.804688 C 77.480469 78.53125 76.449219 77.5 75.175781 77.5 C 73.902344 77.5 72.871094 78.53125 72.871094 79.804688 C 72.871094 81.078125 73.902344 82.109375 75.175781 82.109375 C 76.449219 82.109375 77.480469 81.078125 77.480469 79.804688 Z M 77.480469 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.140625 79.804688 C 77.140625 78.53125 76.109375 77.5 74.835938 77.5 C 73.5625 77.5 72.53125 78.53125 72.53125 79.804688 C 72.53125 81.078125 73.5625 82.109375 74.835938 82.109375 C 76.109375 82.109375 77.140625 81.078125 77.140625 79.804688 Z M 77.140625 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.597656 79.804688 C 76.597656 78.53125 75.566406 77.5 74.292969 77.5 C 73.019531 77.5 71.988281 78.53125 71.988281 79.804688 C 71.988281 81.078125 73.019531 82.109375 74.292969 82.109375 C 75.566406 82.109375 76.597656 81.078125 76.597656 79.804688 Z M 76.597656 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.835938 79.804688 C 76.835938 78.53125 75.804688 77.5 74.53125 77.5 C 73.257812 77.5 72.226562 78.53125 72.226562 79.804688 C 72.226562 81.078125 73.257812 82.109375 74.53125 82.109375 C 75.804688 82.109375 76.835938 81.078125 76.835938 79.804688 Z M 76.835938 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.078125 79.804688 C 77.078125 78.53125 76.046875 77.5 74.773438 77.5 C 73.5 77.5 72.46875 78.53125 72.46875 79.804688 C 72.46875 81.078125 73.5 82.109375 74.773438 82.109375 C 76.046875 82.109375 77.078125 81.078125 77.078125 79.804688 Z M 77.078125 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.253906 79.804688 C 76.253906 78.53125 75.222656 77.5 73.949219 77.5 C 72.675781 77.5 71.644531 78.53125 71.644531 79.804688 C 71.644531 81.078125 72.675781 82.109375 73.949219 82.109375 C 75.222656 82.109375 76.253906 81.078125 76.253906 79.804688 Z M 76.253906 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.941406 79.804688 C 76.941406 78.53125 75.910156 77.5 74.636719 77.5 C 73.363281 77.5 72.332031 78.53125 72.332031 79.804688 C 72.332031 81.078125 73.363281 82.109375 74.636719 82.109375 C 75.910156 82.109375 76.941406 81.078125 76.941406 79.804688 Z M 76.941406 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.746094 79.804688 C 76.746094 78.53125 75.714844 77.5 74.441406 77.5 C 73.167969 77.5 72.136719 78.53125 72.136719 79.804688 C 72.136719 81.078125 73.167969 82.109375 74.441406 82.109375 C 75.714844 82.109375 76.746094 81.078125 76.746094 79.804688 Z M 76.746094 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.394531 79.804688 C 76.394531 78.53125 75.363281 77.5 74.089844 77.5 C 72.816406 77.5 71.785156 78.53125 71.785156 79.804688 C 71.785156 81.078125 72.816406 82.109375 74.089844 82.109375 C 75.363281 82.109375 76.394531 81.078125 76.394531 79.804688 Z M 76.394531 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.371094 79.804688 C 77.371094 78.53125 76.339844 77.5 75.066406 77.5 C 73.792969 77.5 72.761719 78.53125 72.761719 79.804688 C 72.761719 81.078125 73.792969 82.109375 75.066406 82.109375 C 76.339844 82.109375 77.371094 81.078125 77.371094 79.804688 Z M 77.371094 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.109375 79.804688 C 77.109375 78.53125 76.078125 77.5 74.804688 77.5 C 73.53125 77.5 72.5 78.53125 72.5 79.804688 C 72.5 81.078125 73.53125 82.109375 74.804688 82.109375 C 76.078125 82.109375 77.109375 81.078125 77.109375 79.804688 Z M 77.109375 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.308594 79.804688 C 76.308594 78.53125 75.277344 77.5 74.003906 77.5 C 72.730469 77.5 71.699219 78.53125 71.699219 79.804688 C 71.699219 81.078125 72.730469 82.109375 74.003906 82.109375 C 75.277344 82.109375 76.308594 81.078125 76.308594 79.804688 Z M 76.308594 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.507812 79.804688 C 76.507812 78.53125 75.476562 77.5 74.203125 77.5 C 72.929688 77.5 71.898438 78.53125 71.898438 79.804688 C 71.898438 81.078125 72.929688 82.109375 74.203125 82.109375 C 75.476562 82.109375 76.507812 81.078125 76.507812 79.804688 Z M 76.507812 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.925781 79.804688 C 76.925781 78.53125 75.894531 77.5 74.621094 77.5 C 73.347656 77.5 72.316406 78.53125 72.316406 79.804688 C 72.316406 81.078125 73.347656 82.109375 74.621094 82.109375 C 75.894531 82.109375 76.925781 81.078125 76.925781 79.804688 Z M 76.925781 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.257812 79.804688 C 76.257812 78.53125 75.226562 77.5 73.953125 77.5 C 72.679688 77.5 71.648438 78.53125 71.648438 79.804688 C 71.648438 81.078125 72.679688 82.109375 73.953125 82.109375 C 75.226562 82.109375 76.257812 81.078125 76.257812 79.804688 Z M 76.257812 79.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.019531 74.960938 C 78.019531 73.6875 76.988281 72.65625 75.714844 72.65625 C 74.441406 72.65625 73.410156 73.6875 73.410156 74.960938 C 73.410156 76.234375 74.441406 77.265625 75.714844 77.265625 C 76.988281 77.265625 78.019531 76.234375 78.019531 74.960938 Z M 78.019531 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.394531 74.960938 C 80.394531 73.6875 79.363281 72.65625 78.089844 72.65625 C 76.816406 72.65625 75.785156 73.6875 75.785156 74.960938 C 75.785156 76.234375 76.816406 77.265625 78.089844 77.265625 C 79.363281 77.265625 80.394531 76.234375 80.394531 74.960938 Z M 80.394531 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.945312 74.960938 C 78.945312 73.6875 77.914062 72.65625 76.640625 72.65625 C 75.367188 72.65625 74.335938 73.6875 74.335938 74.960938 C 74.335938 76.234375 75.367188 77.265625 76.640625 77.265625 C 77.914062 77.265625 78.945312 76.234375 78.945312 74.960938 Z M 78.945312 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.253906 74.960938 C 80.253906 73.6875 79.222656 72.65625 77.949219 72.65625 C 76.675781 72.65625 75.644531 73.6875 75.644531 74.960938 C 75.644531 76.234375 76.675781 77.265625 77.949219 77.265625 C 79.222656 77.265625 80.253906 76.234375 80.253906 74.960938 Z M 80.253906 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.835938 74.960938 C 79.835938 73.6875 78.804688 72.65625 77.53125 72.65625 C 76.257812 72.65625 75.226562 73.6875 75.226562 74.960938 C 75.226562 76.234375 76.257812 77.265625 77.53125 77.265625 C 78.804688 77.265625 79.835938 76.234375 79.835938 74.960938 Z M 79.835938 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.234375 74.960938 C 79.234375 73.6875 78.203125 72.65625 76.929688 72.65625 C 75.65625 72.65625 74.625 73.6875 74.625 74.960938 C 74.625 76.234375 75.65625 77.265625 76.929688 77.265625 C 78.203125 77.265625 79.234375 76.234375 79.234375 74.960938 Z M 79.234375 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.90625 74.960938 C 78.90625 73.6875 77.875 72.65625 76.601562 72.65625 C 75.328125 72.65625 74.296875 73.6875 74.296875 74.960938 C 74.296875 76.234375 75.328125 77.265625 76.601562 77.265625 C 77.875 77.265625 78.90625 76.234375 78.90625 74.960938 Z M 78.90625 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.992188 74.960938 C 79.992188 73.6875 78.960938 72.65625 77.6875 72.65625 C 76.414062 72.65625 75.382812 73.6875 75.382812 74.960938 C 75.382812 76.234375 76.414062 77.265625 77.6875 77.265625 C 78.960938 77.265625 79.992188 76.234375 79.992188 74.960938 Z M 79.992188 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.753906 74.960938 C 77.753906 73.6875 76.722656 72.65625 75.449219 72.65625 C 74.175781 72.65625 73.144531 73.6875 73.144531 74.960938 C 73.144531 76.234375 74.175781 77.265625 75.449219 77.265625 C 76.722656 77.265625 77.753906 76.234375 77.753906 74.960938 Z M 77.753906 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.023438 74.960938 C 79.023438 73.6875 77.992188 72.65625 76.71875 72.65625 C 75.445312 72.65625 74.414062 73.6875 74.414062 74.960938 C 74.414062 76.234375 75.445312 77.265625 76.71875 77.265625 C 77.992188 77.265625 79.023438 76.234375 79.023438 74.960938 Z M 79.023438 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.59375 74.960938 C 80.59375 73.6875 79.5625 72.65625 78.289062 72.65625 C 77.015625 72.65625 75.984375 73.6875 75.984375 74.960938 C 75.984375 76.234375 77.015625 77.265625 78.289062 77.265625 C 79.5625 77.265625 80.59375 76.234375 80.59375 74.960938 Z M 80.59375 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.050781 74.960938 C 79.050781 73.6875 78.019531 72.65625 76.746094 72.65625 C 75.472656 72.65625 74.441406 73.6875 74.441406 74.960938 C 74.441406 76.234375 75.472656 77.265625 76.746094 77.265625 C 78.019531 77.265625 79.050781 76.234375 79.050781 74.960938 Z M 79.050781 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.0625 74.960938 C 78.0625 73.6875 77.03125 72.65625 75.757812 72.65625 C 74.484375 72.65625 73.453125 73.6875 73.453125 74.960938 C 73.453125 76.234375 74.484375 77.265625 75.757812 77.265625 C 77.03125 77.265625 78.0625 76.234375 78.0625 74.960938 Z M 78.0625 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.714844 74.960938 C 79.714844 73.6875 78.683594 72.65625 77.410156 72.65625 C 76.136719 72.65625 75.105469 73.6875 75.105469 74.960938 C 75.105469 76.234375 76.136719 77.265625 77.410156 77.265625 C 78.683594 77.265625 79.714844 76.234375 79.714844 74.960938 Z M 79.714844 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.679688 74.960938 C 79.679688 73.6875 78.648438 72.65625 77.375 72.65625 C 76.101562 72.65625 75.070312 73.6875 75.070312 74.960938 C 75.070312 76.234375 76.101562 77.265625 77.375 77.265625 C 78.648438 77.265625 79.679688 76.234375 79.679688 74.960938 Z M 79.679688 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.648438 74.960938 C 77.648438 73.6875 76.617188 72.65625 75.34375 72.65625 C 74.070312 72.65625 73.039062 73.6875 73.039062 74.960938 C 73.039062 76.234375 74.070312 77.265625 75.34375 77.265625 C 76.617188 77.265625 77.648438 76.234375 77.648438 74.960938 Z M 77.648438 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.476562 74.960938 C 78.476562 73.6875 77.445312 72.65625 76.171875 72.65625 C 74.898438 72.65625 73.867188 73.6875 73.867188 74.960938 C 73.867188 76.234375 74.898438 77.265625 76.171875 77.265625 C 77.445312 77.265625 78.476562 76.234375 78.476562 74.960938 Z M 78.476562 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.785156 74.960938 C 79.785156 73.6875 78.753906 72.65625 77.480469 72.65625 C 76.207031 72.65625 75.175781 73.6875 75.175781 74.960938 C 75.175781 76.234375 76.207031 77.265625 77.480469 77.265625 C 78.753906 77.265625 79.785156 76.234375 79.785156 74.960938 Z M 79.785156 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.21875 74.960938 C 79.21875 73.6875 78.1875 72.65625 76.914062 72.65625 C 75.640625 72.65625 74.609375 73.6875 74.609375 74.960938 C 74.609375 76.234375 75.640625 77.265625 76.914062 77.265625 C 78.1875 77.265625 79.21875 76.234375 79.21875 74.960938 Z M 79.21875 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.628906 74.960938 C 78.628906 73.6875 77.597656 72.65625 76.324219 72.65625 C 75.050781 72.65625 74.019531 73.6875 74.019531 74.960938 C 74.019531 76.234375 75.050781 77.265625 76.324219 77.265625 C 77.597656 77.265625 78.628906 76.234375 78.628906 74.960938 Z M 78.628906 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.625 74.960938 C 80.625 73.6875 79.59375 72.65625 78.320312 72.65625 C 77.046875 72.65625 76.015625 73.6875 76.015625 74.960938 C 76.015625 76.234375 77.046875 77.265625 78.320312 77.265625 C 79.59375 77.265625 80.625 76.234375 80.625 74.960938 Z M 80.625 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.957031 74.960938 C 78.957031 73.6875 77.925781 72.65625 76.652344 72.65625 C 75.378906 72.65625 74.347656 73.6875 74.347656 74.960938 C 74.347656 76.234375 75.378906 77.265625 76.652344 77.265625 C 77.925781 77.265625 78.957031 76.234375 78.957031 74.960938 Z M 78.957031 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.429688 74.960938 C 79.429688 73.6875 78.398438 72.65625 77.125 72.65625 C 75.851562 72.65625 74.820312 73.6875 74.820312 74.960938 C 74.820312 76.234375 75.851562 77.265625 77.125 77.265625 C 78.398438 77.265625 79.429688 76.234375 79.429688 74.960938 Z M 79.429688 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.28125 74.960938 C 80.28125 73.6875 79.25 72.65625 77.976562 72.65625 C 76.703125 72.65625 75.671875 73.6875 75.671875 74.960938 C 75.671875 76.234375 76.703125 77.265625 77.976562 77.265625 C 79.25 77.265625 80.28125 76.234375 80.28125 74.960938 Z M 80.28125 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.921875 74.960938 C 77.921875 73.6875 76.890625 72.65625 75.617188 72.65625 C 74.34375 72.65625 73.3125 73.6875 73.3125 74.960938 C 73.3125 76.234375 74.34375 77.265625 75.617188 77.265625 C 76.890625 77.265625 77.921875 76.234375 77.921875 74.960938 Z M 77.921875 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.550781 74.960938 C 78.550781 73.6875 77.519531 72.65625 76.246094 72.65625 C 74.972656 72.65625 73.941406 73.6875 73.941406 74.960938 C 73.941406 76.234375 74.972656 77.265625 76.246094 77.265625 C 77.519531 77.265625 78.550781 76.234375 78.550781 74.960938 Z M 78.550781 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.492188 74.960938 C 80.492188 73.6875 79.460938 72.65625 78.1875 72.65625 C 76.914062 72.65625 75.882812 73.6875 75.882812 74.960938 C 75.882812 76.234375 76.914062 77.265625 78.1875 77.265625 C 79.460938 77.265625 80.492188 76.234375 80.492188 74.960938 Z M 80.492188 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.011719 74.960938 C 80.011719 73.6875 78.980469 72.65625 77.707031 72.65625 C 76.433594 72.65625 75.402344 73.6875 75.402344 74.960938 C 75.402344 76.234375 76.433594 77.265625 77.707031 77.265625 C 78.980469 77.265625 80.011719 76.234375 80.011719 74.960938 Z M 80.011719 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.996094 74.960938 C 78.996094 73.6875 77.964844 72.65625 76.691406 72.65625 C 75.417969 72.65625 74.386719 73.6875 74.386719 74.960938 C 74.386719 76.234375 75.417969 77.265625 76.691406 77.265625 C 77.964844 77.265625 78.996094 76.234375 78.996094 74.960938 Z M 78.996094 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.617188 74.960938 C 80.617188 73.6875 79.585938 72.65625 78.3125 72.65625 C 77.039062 72.65625 76.007812 73.6875 76.007812 74.960938 C 76.007812 76.234375 77.039062 77.265625 78.3125 77.265625 C 79.585938 77.265625 80.617188 76.234375 80.617188 74.960938 Z M 80.617188 74.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.472656 70.117188 C 78.472656 68.84375 77.441406 67.8125 76.167969 67.8125 C 74.894531 67.8125 73.863281 68.84375 73.863281 70.117188 C 73.863281 71.390625 74.894531 72.421875 76.167969 72.421875 C 77.441406 72.421875 78.472656 71.390625 78.472656 70.117188 Z M 78.472656 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.179688 70.117188 C 84.179688 68.84375 83.148438 67.8125 81.875 67.8125 C 80.601562 67.8125 79.570312 68.84375 79.570312 70.117188 C 79.570312 71.390625 80.601562 72.421875 81.875 72.421875 C 83.148438 72.421875 84.179688 71.390625 84.179688 70.117188 Z M 84.179688 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.695312 70.117188 C 80.695312 68.84375 79.664062 67.8125 78.390625 67.8125 C 77.117188 67.8125 76.085938 68.84375 76.085938 70.117188 C 76.085938 71.390625 77.117188 72.421875 78.390625 72.421875 C 79.664062 72.421875 80.695312 71.390625 80.695312 70.117188 Z M 80.695312 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.847656 70.117188 C 83.847656 68.84375 82.816406 67.8125 81.542969 67.8125 C 80.269531 67.8125 79.238281 68.84375 79.238281 70.117188 C 79.238281 71.390625 80.269531 72.421875 81.542969 72.421875 C 82.816406 72.421875 83.847656 71.390625 83.847656 70.117188 Z M 83.847656 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.835938 70.117188 C 82.835938 68.84375 81.804688 67.8125 80.53125 67.8125 C 79.257812 67.8125 78.226562 68.84375 78.226562 70.117188 C 78.226562 71.390625 79.257812 72.421875 80.53125 72.421875 C 81.804688 72.421875 82.835938 71.390625 82.835938 70.117188 Z M 82.835938 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.390625 70.117188 C 81.390625 68.84375 80.359375 67.8125 79.085938 67.8125 C 77.8125 67.8125 76.78125 68.84375 76.78125 70.117188 C 76.78125 71.390625 77.8125 72.421875 79.085938 72.421875 C 80.359375 72.421875 81.390625 71.390625 81.390625 70.117188 Z M 81.390625 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.609375 70.117188 C 80.609375 68.84375 79.578125 67.8125 78.304688 67.8125 C 77.03125 67.8125 76 68.84375 76 70.117188 C 76 71.390625 77.03125 72.421875 78.304688 72.421875 C 79.578125 72.421875 80.609375 71.390625 80.609375 70.117188 Z M 80.609375 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.210938 70.117188 C 83.210938 68.84375 82.179688 67.8125 80.90625 67.8125 C 79.632812 67.8125 78.601562 68.84375 78.601562 70.117188 C 78.601562 71.390625 79.632812 72.421875 80.90625 72.421875 C 82.179688 72.421875 83.210938 71.390625 83.210938 70.117188 Z M 83.210938 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.835938 70.117188 C 77.835938 68.84375 76.804688 67.8125 75.53125 67.8125 C 74.257812 67.8125 73.226562 68.84375 73.226562 70.117188 C 73.226562 71.390625 74.257812 72.421875 75.53125 72.421875 C 76.804688 72.421875 77.835938 71.390625 77.835938 70.117188 Z M 77.835938 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.886719 70.117188 C 80.886719 68.84375 79.855469 67.8125 78.582031 67.8125 C 77.308594 67.8125 76.277344 68.84375 76.277344 70.117188 C 76.277344 71.390625 77.308594 72.421875 78.582031 72.421875 C 79.855469 72.421875 80.886719 71.390625 80.886719 70.117188 Z M 80.886719 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.660156 70.117188 C 84.660156 68.84375 83.628906 67.8125 82.355469 67.8125 C 81.082031 67.8125 80.050781 68.84375 80.050781 70.117188 C 80.050781 71.390625 81.082031 72.421875 82.355469 72.421875 C 83.628906 72.421875 84.660156 71.390625 84.660156 70.117188 Z M 84.660156 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.957031 70.117188 C 80.957031 68.84375 79.925781 67.8125 78.652344 67.8125 C 77.378906 67.8125 76.347656 68.84375 76.347656 70.117188 C 76.347656 71.390625 77.378906 72.421875 78.652344 72.421875 C 79.925781 72.421875 80.957031 71.390625 80.957031 70.117188 Z M 80.957031 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.582031 70.117188 C 78.582031 68.84375 77.550781 67.8125 76.277344 67.8125 C 75.003906 67.8125 73.972656 68.84375 73.972656 70.117188 C 73.972656 71.390625 75.003906 72.421875 76.277344 72.421875 C 77.550781 72.421875 78.582031 71.390625 78.582031 70.117188 Z M 78.582031 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.546875 70.117188 C 82.546875 68.84375 81.515625 67.8125 80.242188 67.8125 C 78.96875 67.8125 77.9375 68.84375 77.9375 70.117188 C 77.9375 71.390625 78.96875 72.421875 80.242188 72.421875 C 81.515625 72.421875 82.546875 71.390625 82.546875 70.117188 Z M 82.546875 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.464844 70.117188 C 82.464844 68.84375 81.433594 67.8125 80.160156 67.8125 C 78.886719 67.8125 77.855469 68.84375 77.855469 70.117188 C 77.855469 71.390625 78.886719 72.421875 80.160156 72.421875 C 81.433594 72.421875 82.464844 71.390625 82.464844 70.117188 Z M 82.464844 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.578125 70.117188 C 77.578125 68.84375 76.546875 67.8125 75.273438 67.8125 C 74 67.8125 72.96875 68.84375 72.96875 70.117188 C 72.96875 71.390625 74 72.421875 75.273438 72.421875 C 76.546875 72.421875 77.578125 71.390625 77.578125 70.117188 Z M 77.578125 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.574219 70.117188 C 79.574219 68.84375 78.542969 67.8125 77.269531 67.8125 C 75.996094 67.8125 74.964844 68.84375 74.964844 70.117188 C 74.964844 71.390625 75.996094 72.421875 77.269531 72.421875 C 78.542969 72.421875 79.574219 71.390625 79.574219 70.117188 Z M 79.574219 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.71875 70.117188 C 82.71875 68.84375 81.6875 67.8125 80.414062 67.8125 C 79.140625 67.8125 78.109375 68.84375 78.109375 70.117188 C 78.109375 71.390625 79.140625 72.421875 80.414062 72.421875 C 81.6875 72.421875 82.71875 71.390625 82.71875 70.117188 Z M 82.71875 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.351562 70.117188 C 81.351562 68.84375 80.320312 67.8125 79.046875 67.8125 C 77.773438 67.8125 76.742188 68.84375 76.742188 70.117188 C 76.742188 71.390625 77.773438 72.421875 79.046875 72.421875 C 80.320312 72.421875 81.351562 71.390625 81.351562 70.117188 Z M 81.351562 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.9375 70.117188 C 79.9375 68.84375 78.90625 67.8125 77.632812 67.8125 C 76.359375 67.8125 75.328125 68.84375 75.328125 70.117188 C 75.328125 71.390625 76.359375 72.421875 77.632812 72.421875 C 78.90625 72.421875 79.9375 71.390625 79.9375 70.117188 Z M 79.9375 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.734375 70.117188 C 84.734375 68.84375 83.703125 67.8125 82.429688 67.8125 C 81.15625 67.8125 80.125 68.84375 80.125 70.117188 C 80.125 71.390625 81.15625 72.421875 82.429688 72.421875 C 83.703125 72.421875 84.734375 71.390625 84.734375 70.117188 Z M 84.734375 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.726562 70.117188 C 80.726562 68.84375 79.695312 67.8125 78.421875 67.8125 C 77.148438 67.8125 76.117188 68.84375 76.117188 70.117188 C 76.117188 71.390625 77.148438 72.421875 78.421875 72.421875 C 79.695312 72.421875 80.726562 71.390625 80.726562 70.117188 Z M 80.726562 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.863281 70.117188 C 81.863281 68.84375 80.832031 67.8125 79.558594 67.8125 C 78.285156 67.8125 77.253906 68.84375 77.253906 70.117188 C 77.253906 71.390625 78.285156 72.421875 79.558594 72.421875 C 80.832031 72.421875 81.863281 71.390625 81.863281 70.117188 Z M 81.863281 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.90625 70.117188 C 83.90625 68.84375 82.875 67.8125 81.601562 67.8125 C 80.328125 67.8125 79.296875 68.84375 79.296875 70.117188 C 79.296875 71.390625 80.328125 72.421875 81.601562 72.421875 C 82.875 72.421875 83.90625 71.390625 83.90625 70.117188 Z M 83.90625 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.238281 70.117188 C 78.238281 68.84375 77.207031 67.8125 75.933594 67.8125 C 74.660156 67.8125 73.628906 68.84375 73.628906 70.117188 C 73.628906 71.390625 74.660156 72.421875 75.933594 72.421875 C 77.207031 72.421875 78.238281 71.390625 78.238281 70.117188 Z M 78.238281 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.75 70.117188 C 79.75 68.84375 78.71875 67.8125 77.445312 67.8125 C 76.171875 67.8125 75.140625 68.84375 75.140625 70.117188 C 75.140625 71.390625 76.171875 72.421875 77.445312 72.421875 C 78.71875 72.421875 79.75 71.390625 79.75 70.117188 Z M 79.75 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.414062 70.117188 C 84.414062 68.84375 83.382812 67.8125 82.109375 67.8125 C 80.835938 67.8125 79.804688 68.84375 79.804688 70.117188 C 79.804688 71.390625 80.835938 72.421875 82.109375 72.421875 C 83.382812 72.421875 84.414062 71.390625 84.414062 70.117188 Z M 84.414062 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.261719 70.117188 C 83.261719 68.84375 82.230469 67.8125 80.957031 67.8125 C 79.683594 67.8125 78.652344 68.84375 78.652344 70.117188 C 78.652344 71.390625 79.683594 72.421875 80.957031 72.421875 C 82.230469 72.421875 83.261719 71.390625 83.261719 70.117188 Z M 83.261719 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.820312 70.117188 C 80.820312 68.84375 79.789062 67.8125 78.515625 67.8125 C 77.242188 67.8125 76.210938 68.84375 76.210938 70.117188 C 76.210938 71.390625 77.242188 72.421875 78.515625 72.421875 C 79.789062 72.421875 80.820312 71.390625 80.820312 70.117188 Z M 80.820312 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.714844 70.117188 C 84.714844 68.84375 83.683594 67.8125 82.410156 67.8125 C 81.136719 67.8125 80.105469 68.84375 80.105469 70.117188 C 80.105469 71.390625 81.136719 72.421875 82.410156 72.421875 C 83.683594 72.421875 84.714844 71.390625 84.714844 70.117188 Z M 84.714844 70.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.691406 65.273438 C 78.691406 64 77.660156 62.96875 76.386719 62.96875 C 75.113281 62.96875 74.082031 64 74.082031 65.273438 C 74.082031 66.546875 75.113281 67.578125 76.386719 67.578125 C 77.660156 67.578125 78.691406 66.546875 78.691406 65.273438 Z M 78.691406 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.667969 65.273438 C 87.667969 64 86.636719 62.96875 85.363281 62.96875 C 84.089844 62.96875 83.058594 64 83.058594 65.273438 C 83.058594 66.546875 84.089844 67.578125 85.363281 67.578125 C 86.636719 67.578125 87.667969 66.546875 87.667969 65.273438 Z M 87.667969 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.183594 65.273438 C 82.183594 64 81.152344 62.96875 79.878906 62.96875 C 78.605469 62.96875 77.574219 64 77.574219 65.273438 C 77.574219 66.546875 78.605469 67.578125 79.878906 67.578125 C 81.152344 67.578125 82.183594 66.546875 82.183594 65.273438 Z M 82.183594 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.148438 65.273438 C 87.148438 64 86.117188 62.96875 84.84375 62.96875 C 83.570312 62.96875 82.539062 64 82.539062 65.273438 C 82.539062 66.546875 83.570312 67.578125 84.84375 67.578125 C 86.117188 67.578125 87.148438 66.546875 87.148438 65.273438 Z M 87.148438 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.554688 65.273438 C 85.554688 64 84.523438 62.96875 83.25 62.96875 C 81.976562 62.96875 80.945312 64 80.945312 65.273438 C 80.945312 66.546875 81.976562 67.578125 83.25 67.578125 C 84.523438 67.578125 85.554688 66.546875 85.554688 65.273438 Z M 85.554688 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.28125 65.273438 C 83.28125 64 82.25 62.96875 80.976562 62.96875 C 79.703125 62.96875 78.671875 64 78.671875 65.273438 C 78.671875 66.546875 79.703125 67.578125 80.976562 67.578125 C 82.25 67.578125 83.28125 66.546875 83.28125 65.273438 Z M 83.28125 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.050781 65.273438 C 82.050781 64 81.019531 62.96875 79.746094 62.96875 C 78.472656 62.96875 77.441406 64 77.441406 65.273438 C 77.441406 66.546875 78.472656 67.578125 79.746094 67.578125 C 81.019531 67.578125 82.050781 66.546875 82.050781 65.273438 Z M 82.050781 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.144531 65.273438 C 86.144531 64 85.113281 62.96875 83.839844 62.96875 C 82.566406 62.96875 81.535156 64 81.535156 65.273438 C 81.535156 66.546875 82.566406 67.578125 83.839844 67.578125 C 85.113281 67.578125 86.144531 66.546875 86.144531 65.273438 Z M 86.144531 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.6875 65.273438 C 77.6875 64 76.65625 62.96875 75.382812 62.96875 C 74.109375 62.96875 73.078125 64 73.078125 65.273438 C 73.078125 66.546875 74.109375 67.578125 75.382812 67.578125 C 76.65625 67.578125 77.6875 66.546875 77.6875 65.273438 Z M 77.6875 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.488281 65.273438 C 82.488281 64 81.457031 62.96875 80.183594 62.96875 C 78.910156 62.96875 77.878906 64 77.878906 65.273438 C 77.878906 66.546875 78.910156 67.578125 80.183594 67.578125 C 81.457031 67.578125 82.488281 66.546875 82.488281 65.273438 Z M 82.488281 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.421875 65.273438 C 88.421875 64 87.390625 62.96875 86.117188 62.96875 C 84.84375 62.96875 83.8125 64 83.8125 65.273438 C 83.8125 66.546875 84.84375 67.578125 86.117188 67.578125 C 87.390625 67.578125 88.421875 66.546875 88.421875 65.273438 Z M 88.421875 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.597656 65.273438 C 82.597656 64 81.566406 62.96875 80.292969 62.96875 C 79.019531 62.96875 77.988281 64 77.988281 65.273438 C 77.988281 66.546875 79.019531 67.578125 80.292969 67.578125 C 81.566406 67.578125 82.597656 66.546875 82.597656 65.273438 Z M 82.597656 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.859375 65.273438 C 78.859375 64 77.828125 62.96875 76.554688 62.96875 C 75.28125 62.96875 74.25 64 74.25 65.273438 C 74.25 66.546875 75.28125 67.578125 76.554688 67.578125 C 77.828125 67.578125 78.859375 66.546875 78.859375 65.273438 Z M 78.859375 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.101562 65.273438 C 85.101562 64 84.070312 62.96875 82.796875 62.96875 C 81.523438 62.96875 80.492188 64 80.492188 65.273438 C 80.492188 66.546875 81.523438 67.578125 82.796875 67.578125 C 84.070312 67.578125 85.101562 66.546875 85.101562 65.273438 Z M 85.101562 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.972656 65.273438 C 84.972656 64 83.941406 62.96875 82.667969 62.96875 C 81.394531 62.96875 80.363281 64 80.363281 65.273438 C 80.363281 66.546875 81.394531 67.578125 82.667969 67.578125 C 83.941406 67.578125 84.972656 66.546875 84.972656 65.273438 Z M 84.972656 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.28125 65.273438 C 77.28125 64 76.25 62.96875 74.976562 62.96875 C 73.703125 62.96875 72.671875 64 72.671875 65.273438 C 72.671875 66.546875 73.703125 67.578125 74.976562 67.578125 C 76.25 67.578125 77.28125 66.546875 77.28125 65.273438 Z M 77.28125 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.421875 65.273438 C 80.421875 64 79.390625 62.96875 78.117188 62.96875 C 76.84375 62.96875 75.8125 64 75.8125 65.273438 C 75.8125 66.546875 76.84375 67.578125 78.117188 67.578125 C 79.390625 67.578125 80.421875 66.546875 80.421875 65.273438 Z M 80.421875 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.371094 65.273438 C 85.371094 64 84.339844 62.96875 83.066406 62.96875 C 81.792969 62.96875 80.761719 64 80.761719 65.273438 C 80.761719 66.546875 81.792969 67.578125 83.066406 67.578125 C 84.339844 67.578125 85.371094 66.546875 85.371094 65.273438 Z M 85.371094 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.21875 65.273438 C 83.21875 64 82.1875 62.96875 80.914062 62.96875 C 79.640625 62.96875 78.609375 64 78.609375 65.273438 C 78.609375 66.546875 79.640625 67.578125 80.914062 67.578125 C 82.1875 67.578125 83.21875 66.546875 83.21875 65.273438 Z M 83.21875 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.992188 65.273438 C 80.992188 64 79.960938 62.96875 78.6875 62.96875 C 77.414062 62.96875 76.382812 64 76.382812 65.273438 C 76.382812 66.546875 77.414062 67.578125 78.6875 67.578125 C 79.960938 67.578125 80.992188 66.546875 80.992188 65.273438 Z M 80.992188 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.542969 65.273438 C 88.542969 64 87.511719 62.96875 86.238281 62.96875 C 84.964844 62.96875 83.933594 64 83.933594 65.273438 C 83.933594 66.546875 84.964844 67.578125 86.238281 67.578125 C 87.511719 67.578125 88.542969 66.546875 88.542969 65.273438 Z M 88.542969 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.238281 65.273438 C 82.238281 64 81.207031 62.96875 79.933594 62.96875 C 78.660156 62.96875 77.628906 64 77.628906 65.273438 C 77.628906 66.546875 78.660156 67.578125 79.933594 67.578125 C 81.207031 67.578125 82.238281 66.546875 82.238281 65.273438 Z M 82.238281 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.023438 65.273438 C 84.023438 64 82.992188 62.96875 81.71875 62.96875 C 80.445312 62.96875 79.414062 64 79.414062 65.273438 C 79.414062 66.546875 80.445312 67.578125 81.71875 67.578125 C 82.992188 67.578125 84.023438 66.546875 84.023438 65.273438 Z M 84.023438 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.242188 65.273438 C 87.242188 64 86.210938 62.96875 84.9375 62.96875 C 83.664062 62.96875 82.632812 64 82.632812 65.273438 C 82.632812 66.546875 83.664062 67.578125 84.9375 67.578125 C 86.210938 67.578125 87.242188 66.546875 87.242188 65.273438 Z M 87.242188 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.316406 65.273438 C 78.316406 64 77.285156 62.96875 76.011719 62.96875 C 74.738281 62.96875 73.707031 64 73.707031 65.273438 C 73.707031 66.546875 74.738281 67.578125 76.011719 67.578125 C 77.285156 67.578125 78.316406 66.546875 78.316406 65.273438 Z M 78.316406 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.699219 65.273438 C 80.699219 64 79.667969 62.96875 78.394531 62.96875 C 77.121094 62.96875 76.089844 64 76.089844 65.273438 C 76.089844 66.546875 77.121094 67.578125 78.394531 67.578125 C 79.667969 67.578125 80.699219 66.546875 80.699219 65.273438 Z M 80.699219 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.035156 65.273438 C 88.035156 64 87.003906 62.96875 85.730469 62.96875 C 84.457031 62.96875 83.425781 64 83.425781 65.273438 C 83.425781 66.546875 84.457031 67.578125 85.730469 67.578125 C 87.003906 67.578125 88.035156 66.546875 88.035156 65.273438 Z M 88.035156 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.226562 65.273438 C 86.226562 64 85.195312 62.96875 83.921875 62.96875 C 82.648438 62.96875 81.617188 64 81.617188 65.273438 C 81.617188 66.546875 82.648438 67.578125 83.921875 67.578125 C 85.195312 67.578125 86.226562 66.546875 86.226562 65.273438 Z M 86.226562 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.382812 65.273438 C 82.382812 64 81.351562 62.96875 80.078125 62.96875 C 78.804688 62.96875 77.773438 64 77.773438 65.273438 C 77.773438 66.546875 78.804688 67.578125 80.078125 67.578125 C 81.351562 67.578125 82.382812 66.546875 82.382812 65.273438 Z M 82.382812 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.511719 65.273438 C 88.511719 64 87.480469 62.96875 86.207031 62.96875 C 84.933594 62.96875 83.902344 64 83.902344 65.273438 C 83.902344 66.546875 84.933594 67.578125 86.207031 67.578125 C 87.480469 67.578125 88.511719 66.546875 88.511719 65.273438 Z M 88.511719 65.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.664062 60.429688 C 78.664062 59.15625 77.632812 58.125 76.359375 58.125 C 75.085938 58.125 74.054688 59.15625 74.054688 60.429688 C 74.054688 61.703125 75.085938 62.734375 76.359375 62.734375 C 77.632812 62.734375 78.664062 61.703125 78.664062 60.429688 Z M 78.664062 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.828125 60.429688 C 90.828125 59.15625 89.796875 58.125 88.523438 58.125 C 87.25 58.125 86.21875 59.15625 86.21875 60.429688 C 86.21875 61.703125 87.25 62.734375 88.523438 62.734375 C 89.796875 62.734375 90.828125 61.703125 90.828125 60.429688 Z M 90.828125 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.398438 60.429688 C 83.398438 59.15625 82.367188 58.125 81.09375 58.125 C 79.820312 58.125 78.789062 59.15625 78.789062 60.429688 C 78.789062 61.703125 79.820312 62.734375 81.09375 62.734375 C 82.367188 62.734375 83.398438 61.703125 83.398438 60.429688 Z M 83.398438 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.121094 60.429688 C 90.121094 59.15625 89.089844 58.125 87.816406 58.125 C 86.542969 58.125 85.511719 59.15625 85.511719 60.429688 C 85.511719 61.703125 86.542969 62.734375 87.816406 62.734375 C 89.089844 62.734375 90.121094 61.703125 90.121094 60.429688 Z M 90.121094 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.960938 60.429688 C 87.960938 59.15625 86.929688 58.125 85.65625 58.125 C 84.382812 58.125 83.351562 59.15625 83.351562 60.429688 C 83.351562 61.703125 84.382812 62.734375 85.65625 62.734375 C 86.929688 62.734375 87.960938 61.703125 87.960938 60.429688 Z M 87.960938 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.882812 60.429688 C 84.882812 59.15625 83.851562 58.125 82.578125 58.125 C 81.304688 58.125 80.273438 59.15625 80.273438 60.429688 C 80.273438 61.703125 81.304688 62.734375 82.578125 62.734375 C 83.851562 62.734375 84.882812 61.703125 84.882812 60.429688 Z M 84.882812 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.21875 60.429688 C 83.21875 59.15625 82.1875 58.125 80.914062 58.125 C 79.640625 58.125 78.609375 59.15625 78.609375 60.429688 C 78.609375 61.703125 79.640625 62.734375 80.914062 62.734375 C 82.1875 62.734375 83.21875 61.703125 83.21875 60.429688 Z M 83.21875 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.761719 60.429688 C 88.761719 59.15625 87.730469 58.125 86.457031 58.125 C 85.183594 58.125 84.152344 59.15625 84.152344 60.429688 C 84.152344 61.703125 85.183594 62.734375 86.457031 62.734375 C 87.730469 62.734375 88.761719 61.703125 88.761719 60.429688 Z M 88.761719 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.304688 60.429688 C 77.304688 59.15625 76.273438 58.125 75 58.125 C 73.726562 58.125 72.695312 59.15625 72.695312 60.429688 C 72.695312 61.703125 73.726562 62.734375 75 62.734375 C 76.273438 62.734375 77.304688 61.703125 77.304688 60.429688 Z M 77.304688 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.804688 60.429688 C 83.804688 59.15625 82.773438 58.125 81.5 58.125 C 80.226562 58.125 79.195312 59.15625 79.195312 60.429688 C 79.195312 61.703125 80.226562 62.734375 81.5 62.734375 C 82.773438 62.734375 83.804688 61.703125 83.804688 60.429688 Z M 83.804688 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.847656 60.429688 C 91.847656 59.15625 90.816406 58.125 89.542969 58.125 C 88.269531 58.125 87.238281 59.15625 87.238281 60.429688 C 87.238281 61.703125 88.269531 62.734375 89.542969 62.734375 C 90.816406 62.734375 91.847656 61.703125 91.847656 60.429688 Z M 91.847656 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.957031 60.429688 C 83.957031 59.15625 82.925781 58.125 81.652344 58.125 C 80.378906 58.125 79.347656 59.15625 79.347656 60.429688 C 79.347656 61.703125 80.378906 62.734375 81.652344 62.734375 C 82.925781 62.734375 83.957031 61.703125 83.957031 60.429688 Z M 83.957031 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.894531 60.429688 C 78.894531 59.15625 77.863281 58.125 76.589844 58.125 C 75.316406 58.125 74.285156 59.15625 74.285156 60.429688 C 74.285156 61.703125 75.316406 62.734375 76.589844 62.734375 C 77.863281 62.734375 78.894531 61.703125 78.894531 60.429688 Z M 78.894531 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.347656 60.429688 C 87.347656 59.15625 86.316406 58.125 85.042969 58.125 C 83.769531 58.125 82.738281 59.15625 82.738281 60.429688 C 82.738281 61.703125 83.769531 62.734375 85.042969 62.734375 C 86.316406 62.734375 87.347656 61.703125 87.347656 60.429688 Z M 87.347656 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.171875 60.429688 C 87.171875 59.15625 86.140625 58.125 84.867188 58.125 C 83.59375 58.125 82.5625 59.15625 82.5625 60.429688 C 82.5625 61.703125 83.59375 62.734375 84.867188 62.734375 C 86.140625 62.734375 87.171875 61.703125 87.171875 60.429688 Z M 87.171875 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.757812 60.429688 C 76.757812 59.15625 75.726562 58.125 74.453125 58.125 C 73.179688 58.125 72.148438 59.15625 72.148438 60.429688 C 72.148438 61.703125 73.179688 62.734375 74.453125 62.734375 C 75.726562 62.734375 76.757812 61.703125 76.757812 60.429688 Z M 76.757812 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.007812 60.429688 C 81.007812 59.15625 79.976562 58.125 78.703125 58.125 C 77.429688 58.125 76.398438 59.15625 76.398438 60.429688 C 76.398438 61.703125 77.429688 62.734375 78.703125 62.734375 C 79.976562 62.734375 81.007812 61.703125 81.007812 60.429688 Z M 81.007812 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.710938 60.429688 C 87.710938 59.15625 86.679688 58.125 85.40625 58.125 C 84.132812 58.125 83.101562 59.15625 83.101562 60.429688 C 83.101562 61.703125 84.132812 62.734375 85.40625 62.734375 C 86.679688 62.734375 87.710938 61.703125 87.710938 60.429688 Z M 87.710938 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.800781 60.429688 C 84.800781 59.15625 83.769531 58.125 82.496094 58.125 C 81.222656 58.125 80.191406 59.15625 80.191406 60.429688 C 80.191406 61.703125 81.222656 62.734375 82.496094 62.734375 C 83.769531 62.734375 84.800781 61.703125 84.800781 60.429688 Z M 84.800781 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.78125 60.429688 C 81.78125 59.15625 80.75 58.125 79.476562 58.125 C 78.203125 58.125 77.171875 59.15625 77.171875 60.429688 C 77.171875 61.703125 78.203125 62.734375 79.476562 62.734375 C 80.75 62.734375 81.78125 61.703125 81.78125 60.429688 Z M 81.78125 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.011719 60.429688 C 92.011719 59.15625 90.980469 58.125 89.707031 58.125 C 88.433594 58.125 87.402344 59.15625 87.402344 60.429688 C 87.402344 61.703125 88.433594 62.734375 89.707031 62.734375 C 90.980469 62.734375 92.011719 61.703125 92.011719 60.429688 Z M 92.011719 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.46875 60.429688 C 83.46875 59.15625 82.4375 58.125 81.164062 58.125 C 79.890625 58.125 78.859375 59.15625 78.859375 60.429688 C 78.859375 61.703125 79.890625 62.734375 81.164062 62.734375 C 82.4375 62.734375 83.46875 61.703125 83.46875 60.429688 Z M 83.46875 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.890625 60.429688 C 85.890625 59.15625 84.859375 58.125 83.585938 58.125 C 82.3125 58.125 81.28125 59.15625 81.28125 60.429688 C 81.28125 61.703125 82.3125 62.734375 83.585938 62.734375 C 84.859375 62.734375 85.890625 61.703125 85.890625 60.429688 Z M 85.890625 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.246094 60.429688 C 90.246094 59.15625 89.214844 58.125 87.941406 58.125 C 86.667969 58.125 85.636719 59.15625 85.636719 60.429688 C 85.636719 61.703125 86.667969 62.734375 87.941406 62.734375 C 89.214844 62.734375 90.246094 61.703125 90.246094 60.429688 Z M 90.246094 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.15625 60.429688 C 78.15625 59.15625 77.125 58.125 75.851562 58.125 C 74.578125 58.125 73.546875 59.15625 73.546875 60.429688 C 73.546875 61.703125 74.578125 62.734375 75.851562 62.734375 C 77.125 62.734375 78.15625 61.703125 78.15625 60.429688 Z M 78.15625 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.382812 60.429688 C 81.382812 59.15625 80.351562 58.125 79.078125 58.125 C 77.804688 58.125 76.773438 59.15625 76.773438 60.429688 C 76.773438 61.703125 77.804688 62.734375 79.078125 62.734375 C 80.351562 62.734375 81.382812 61.703125 81.382812 60.429688 Z M 81.382812 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.324219 60.429688 C 91.324219 59.15625 90.292969 58.125 89.019531 58.125 C 87.746094 58.125 86.714844 59.15625 86.714844 60.429688 C 86.714844 61.703125 87.746094 62.734375 89.019531 62.734375 C 90.292969 62.734375 91.324219 61.703125 91.324219 60.429688 Z M 91.324219 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.871094 60.429688 C 88.871094 59.15625 87.839844 58.125 86.566406 58.125 C 85.292969 58.125 84.261719 59.15625 84.261719 60.429688 C 84.261719 61.703125 85.292969 62.734375 86.566406 62.734375 C 87.839844 62.734375 88.871094 61.703125 88.871094 60.429688 Z M 88.871094 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.664062 60.429688 C 83.664062 59.15625 82.632812 58.125 81.359375 58.125 C 80.085938 58.125 79.054688 59.15625 79.054688 60.429688 C 79.054688 61.703125 80.085938 62.734375 81.359375 62.734375 C 82.632812 62.734375 83.664062 61.703125 83.664062 60.429688 Z M 83.664062 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.96875 60.429688 C 91.96875 59.15625 90.9375 58.125 89.664062 58.125 C 88.390625 58.125 87.359375 59.15625 87.359375 60.429688 C 87.359375 61.703125 88.390625 62.734375 89.664062 62.734375 C 90.9375 62.734375 91.96875 61.703125 91.96875 60.429688 Z M 91.96875 60.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.394531 55.585938 C 78.394531 54.3125 77.363281 53.28125 76.089844 53.28125 C 74.816406 53.28125 73.785156 54.3125 73.785156 55.585938 C 73.785156 56.859375 74.816406 57.890625 76.089844 57.890625 C 77.363281 57.890625 78.394531 56.859375 78.394531 55.585938 Z M 78.394531 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.621094 55.585938 C 93.621094 54.3125 92.589844 53.28125 91.316406 53.28125 C 90.042969 53.28125 89.011719 54.3125 89.011719 55.585938 C 89.011719 56.859375 90.042969 57.890625 91.316406 57.890625 C 92.589844 57.890625 93.621094 56.859375 93.621094 55.585938 Z M 93.621094 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.324219 55.585938 C 84.324219 54.3125 83.292969 53.28125 82.019531 53.28125 C 80.746094 53.28125 79.714844 54.3125 79.714844 55.585938 C 79.714844 56.859375 80.746094 57.890625 82.019531 57.890625 C 83.292969 57.890625 84.324219 56.859375 84.324219 55.585938 Z M 84.324219 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.738281 55.585938 C 92.738281 54.3125 91.707031 53.28125 90.433594 53.28125 C 89.160156 53.28125 88.128906 54.3125 88.128906 55.585938 C 88.128906 56.859375 89.160156 57.890625 90.433594 57.890625 C 91.707031 57.890625 92.738281 56.859375 92.738281 55.585938 Z M 92.738281 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.035156 55.585938 C 90.035156 54.3125 89.003906 53.28125 87.730469 53.28125 C 86.457031 53.28125 85.425781 54.3125 85.425781 55.585938 C 85.425781 56.859375 86.457031 57.890625 87.730469 57.890625 C 89.003906 57.890625 90.035156 56.859375 90.035156 55.585938 Z M 90.035156 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.179688 55.585938 C 86.179688 54.3125 85.148438 53.28125 83.875 53.28125 C 82.601562 53.28125 81.570312 54.3125 81.570312 55.585938 C 81.570312 56.859375 82.601562 57.890625 83.875 57.890625 C 85.148438 57.890625 86.179688 56.859375 86.179688 55.585938 Z M 86.179688 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.097656 55.585938 C 84.097656 54.3125 83.066406 53.28125 81.792969 53.28125 C 80.519531 53.28125 79.488281 54.3125 79.488281 55.585938 C 79.488281 56.859375 80.519531 57.890625 81.792969 57.890625 C 83.066406 57.890625 84.097656 56.859375 84.097656 55.585938 Z M 84.097656 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.039062 55.585938 C 91.039062 54.3125 90.007812 53.28125 88.734375 53.28125 C 87.460938 53.28125 86.429688 54.3125 86.429688 55.585938 C 86.429688 56.859375 87.460938 57.890625 88.734375 57.890625 C 90.007812 57.890625 91.039062 56.859375 91.039062 55.585938 Z M 91.039062 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.695312 55.585938 C 76.695312 54.3125 75.664062 53.28125 74.390625 53.28125 C 73.117188 53.28125 72.085938 54.3125 72.085938 55.585938 C 72.085938 56.859375 73.117188 57.890625 74.390625 57.890625 C 75.664062 57.890625 76.695312 56.859375 76.695312 55.585938 Z M 76.695312 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.832031 55.585938 C 84.832031 54.3125 83.800781 53.28125 82.527344 53.28125 C 81.253906 53.28125 80.222656 54.3125 80.222656 55.585938 C 80.222656 56.859375 81.253906 57.890625 82.527344 57.890625 C 83.800781 57.890625 84.832031 56.859375 84.832031 55.585938 Z M 84.832031 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.902344 55.585938 C 94.902344 54.3125 93.871094 53.28125 92.597656 53.28125 C 91.324219 53.28125 90.292969 54.3125 90.292969 55.585938 C 90.292969 56.859375 91.324219 57.890625 92.597656 57.890625 C 93.871094 57.890625 94.902344 56.859375 94.902344 55.585938 Z M 94.902344 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.019531 55.585938 C 85.019531 54.3125 83.988281 53.28125 82.714844 53.28125 C 81.441406 53.28125 80.410156 54.3125 80.410156 55.585938 C 80.410156 56.859375 81.441406 57.890625 82.714844 57.890625 C 83.988281 57.890625 85.019531 56.859375 85.019531 55.585938 Z M 85.019531 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.683594 55.585938 C 78.683594 54.3125 77.652344 53.28125 76.378906 53.28125 C 75.105469 53.28125 74.074219 54.3125 74.074219 55.585938 C 74.074219 56.859375 75.105469 57.890625 76.378906 57.890625 C 77.652344 57.890625 78.683594 56.859375 78.683594 55.585938 Z M 78.683594 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 89.265625 55.585938 C 89.265625 54.3125 88.234375 53.28125 86.960938 53.28125 C 85.6875 53.28125 84.65625 54.3125 84.65625 55.585938 C 84.65625 56.859375 85.6875 57.890625 86.960938 57.890625 C 88.234375 57.890625 89.265625 56.859375 89.265625 55.585938 Z M 89.265625 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 89.046875 55.585938 C 89.046875 54.3125 88.015625 53.28125 86.742188 53.28125 C 85.46875 53.28125 84.4375 54.3125 84.4375 55.585938 C 84.4375 56.859375 85.46875 57.890625 86.742188 57.890625 C 88.015625 57.890625 89.046875 56.859375 89.046875 55.585938 Z M 89.046875 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.007812 55.585938 C 76.007812 54.3125 74.976562 53.28125 73.703125 53.28125 C 72.429688 53.28125 71.398438 54.3125 71.398438 55.585938 C 71.398438 56.859375 72.429688 57.890625 73.703125 57.890625 C 74.976562 57.890625 76.007812 56.859375 76.007812 55.585938 Z M 76.007812 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.332031 55.585938 C 81.332031 54.3125 80.300781 53.28125 79.027344 53.28125 C 77.753906 53.28125 76.722656 54.3125 76.722656 55.585938 C 76.722656 56.859375 77.753906 57.890625 79.027344 57.890625 C 80.300781 57.890625 81.332031 56.859375 81.332031 55.585938 Z M 81.332031 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 89.722656 55.585938 C 89.722656 54.3125 88.691406 53.28125 87.417969 53.28125 C 86.144531 53.28125 85.113281 54.3125 85.113281 55.585938 C 85.113281 56.859375 86.144531 57.890625 87.417969 57.890625 C 88.691406 57.890625 89.722656 56.859375 89.722656 55.585938 Z M 89.722656 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.078125 55.585938 C 86.078125 54.3125 85.046875 53.28125 83.773438 53.28125 C 82.5 53.28125 81.46875 54.3125 81.46875 55.585938 C 81.46875 56.859375 82.5 57.890625 83.773438 57.890625 C 85.046875 57.890625 86.078125 56.859375 86.078125 55.585938 Z M 86.078125 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.300781 55.585938 C 82.300781 54.3125 81.269531 53.28125 79.996094 53.28125 C 78.722656 53.28125 77.691406 54.3125 77.691406 55.585938 C 77.691406 56.859375 78.722656 57.890625 79.996094 57.890625 C 81.269531 57.890625 82.300781 56.859375 82.300781 55.585938 Z M 82.300781 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 95.105469 55.585938 C 95.105469 54.3125 94.074219 53.28125 92.800781 53.28125 C 91.527344 53.28125 90.496094 54.3125 90.496094 55.585938 C 90.496094 56.859375 91.527344 57.890625 92.800781 57.890625 C 94.074219 57.890625 95.105469 56.859375 95.105469 55.585938 Z M 95.105469 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.410156 55.585938 C 84.410156 54.3125 83.378906 53.28125 82.105469 53.28125 C 80.832031 53.28125 79.800781 54.3125 79.800781 55.585938 C 79.800781 56.859375 80.832031 57.890625 82.105469 57.890625 C 83.378906 57.890625 84.410156 56.859375 84.410156 55.585938 Z M 84.410156 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.441406 55.585938 C 87.441406 54.3125 86.410156 53.28125 85.136719 53.28125 C 83.863281 53.28125 82.832031 54.3125 82.832031 55.585938 C 82.832031 56.859375 83.863281 57.890625 85.136719 57.890625 C 86.410156 57.890625 87.441406 56.859375 87.441406 55.585938 Z M 87.441406 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.894531 55.585938 C 92.894531 54.3125 91.863281 53.28125 90.589844 53.28125 C 89.316406 53.28125 88.285156 54.3125 88.285156 55.585938 C 88.285156 56.859375 89.316406 57.890625 90.589844 57.890625 C 91.863281 57.890625 92.894531 56.859375 92.894531 55.585938 Z M 92.894531 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.761719 55.585938 C 77.761719 54.3125 76.730469 53.28125 75.457031 53.28125 C 74.183594 53.28125 73.152344 54.3125 73.152344 55.585938 C 73.152344 56.859375 74.183594 57.890625 75.457031 57.890625 C 76.730469 57.890625 77.761719 56.859375 77.761719 55.585938 Z M 77.761719 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.800781 55.585938 C 81.800781 54.3125 80.769531 53.28125 79.496094 53.28125 C 78.222656 53.28125 77.191406 54.3125 77.191406 55.585938 C 77.191406 56.859375 78.222656 57.890625 79.496094 57.890625 C 80.769531 57.890625 81.800781 56.859375 81.800781 55.585938 Z M 81.800781 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.242188 55.585938 C 94.242188 54.3125 93.210938 53.28125 91.9375 53.28125 C 90.664062 53.28125 89.632812 54.3125 89.632812 55.585938 C 89.632812 56.859375 90.664062 57.890625 91.9375 57.890625 C 93.210938 57.890625 94.242188 56.859375 94.242188 55.585938 Z M 94.242188 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.175781 55.585938 C 91.175781 54.3125 90.144531 53.28125 88.871094 53.28125 C 87.597656 53.28125 86.566406 54.3125 86.566406 55.585938 C 86.566406 56.859375 87.597656 57.890625 88.871094 57.890625 C 90.144531 57.890625 91.175781 56.859375 91.175781 55.585938 Z M 91.175781 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.65625 55.585938 C 84.65625 54.3125 83.625 53.28125 82.351562 53.28125 C 81.078125 53.28125 80.046875 54.3125 80.046875 55.585938 C 80.046875 56.859375 81.078125 57.890625 82.351562 57.890625 C 83.625 57.890625 84.65625 56.859375 84.65625 55.585938 Z M 84.65625 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 95.050781 55.585938 C 95.050781 54.3125 94.019531 53.28125 92.746094 53.28125 C 91.472656 53.28125 90.441406 54.3125 90.441406 55.585938 C 90.441406 56.859375 91.472656 57.890625 92.746094 57.890625 C 94.019531 57.890625 95.050781 56.859375 95.050781 55.585938 Z M 95.050781 55.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.890625 50.742188 C 77.890625 49.46875 76.859375 48.4375 75.585938 48.4375 C 74.3125 48.4375 73.28125 49.46875 73.28125 50.742188 C 73.28125 52.015625 74.3125 53.046875 75.585938 53.046875 C 76.859375 53.046875 77.890625 52.015625 77.890625 50.742188 Z M 77.890625 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.027344 50.742188 C 96.027344 49.46875 94.996094 48.4375 93.722656 48.4375 C 92.449219 48.4375 91.417969 49.46875 91.417969 50.742188 C 91.417969 52.015625 92.449219 53.046875 93.722656 53.046875 C 94.996094 53.046875 96.027344 52.015625 96.027344 50.742188 Z M 96.027344 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.949219 50.742188 C 84.949219 49.46875 83.917969 48.4375 82.644531 48.4375 C 81.371094 48.4375 80.339844 49.46875 80.339844 50.742188 C 80.339844 52.015625 81.371094 53.046875 82.644531 53.046875 C 83.917969 53.046875 84.949219 52.015625 84.949219 50.742188 Z M 84.949219 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.972656 50.742188 C 94.972656 49.46875 93.941406 48.4375 92.667969 48.4375 C 91.394531 48.4375 90.363281 49.46875 90.363281 50.742188 C 90.363281 52.015625 91.394531 53.046875 92.667969 53.046875 C 93.941406 53.046875 94.972656 52.015625 94.972656 50.742188 Z M 94.972656 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.753906 50.742188 C 91.753906 49.46875 90.722656 48.4375 89.449219 48.4375 C 88.175781 48.4375 87.144531 49.46875 87.144531 50.742188 C 87.144531 52.015625 88.175781 53.046875 89.449219 53.046875 C 90.722656 53.046875 91.753906 52.015625 91.753906 50.742188 Z M 91.753906 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.164062 50.742188 C 87.164062 49.46875 86.132812 48.4375 84.859375 48.4375 C 83.585938 48.4375 82.554688 49.46875 82.554688 50.742188 C 82.554688 52.015625 83.585938 53.046875 84.859375 53.046875 C 86.132812 53.046875 87.164062 52.015625 87.164062 50.742188 Z M 87.164062 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.679688 50.742188 C 84.679688 49.46875 83.648438 48.4375 82.375 48.4375 C 81.101562 48.4375 80.070312 49.46875 80.070312 50.742188 C 80.070312 52.015625 81.101562 53.046875 82.375 53.046875 C 83.648438 53.046875 84.679688 52.015625 84.679688 50.742188 Z M 84.679688 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.945312 50.742188 C 92.945312 49.46875 91.914062 48.4375 90.640625 48.4375 C 89.367188 48.4375 88.335938 49.46875 88.335938 50.742188 C 88.335938 52.015625 89.367188 53.046875 90.640625 53.046875 C 91.914062 53.046875 92.945312 52.015625 92.945312 50.742188 Z M 92.945312 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.863281 50.742188 C 75.863281 49.46875 74.832031 48.4375 73.558594 48.4375 C 72.285156 48.4375 71.253906 49.46875 71.253906 50.742188 C 71.253906 52.015625 72.285156 53.046875 73.558594 53.046875 C 74.832031 53.046875 75.863281 52.015625 75.863281 50.742188 Z M 75.863281 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.558594 50.742188 C 85.558594 49.46875 84.527344 48.4375 83.253906 48.4375 C 81.980469 48.4375 80.949219 49.46875 80.949219 50.742188 C 80.949219 52.015625 81.980469 53.046875 83.253906 53.046875 C 84.527344 53.046875 85.558594 52.015625 85.558594 50.742188 Z M 85.558594 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 97.550781 50.742188 C 97.550781 49.46875 96.519531 48.4375 95.246094 48.4375 C 93.972656 48.4375 92.941406 49.46875 92.941406 50.742188 C 92.941406 52.015625 93.972656 53.046875 95.246094 53.046875 C 96.519531 53.046875 97.550781 52.015625 97.550781 50.742188 Z M 97.550781 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.777344 50.742188 C 85.777344 49.46875 84.746094 48.4375 83.472656 48.4375 C 82.199219 48.4375 81.167969 49.46875 81.167969 50.742188 C 81.167969 52.015625 82.199219 53.046875 83.472656 53.046875 C 84.746094 53.046875 85.777344 52.015625 85.777344 50.742188 Z M 85.777344 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.230469 50.742188 C 78.230469 49.46875 77.199219 48.4375 75.925781 48.4375 C 74.652344 48.4375 73.621094 49.46875 73.621094 50.742188 C 73.621094 52.015625 74.652344 53.046875 75.925781 53.046875 C 77.199219 53.046875 78.230469 52.015625 78.230469 50.742188 Z M 78.230469 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.835938 50.742188 C 90.835938 49.46875 89.804688 48.4375 88.53125 48.4375 C 87.257812 48.4375 86.226562 49.46875 86.226562 50.742188 C 86.226562 52.015625 87.257812 53.046875 88.53125 53.046875 C 89.804688 53.046875 90.835938 52.015625 90.835938 50.742188 Z M 90.835938 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.578125 50.742188 C 90.578125 49.46875 89.546875 48.4375 88.273438 48.4375 C 87 48.4375 85.96875 49.46875 85.96875 50.742188 C 85.96875 52.015625 87 53.046875 88.273438 53.046875 C 89.546875 53.046875 90.578125 52.015625 90.578125 50.742188 Z M 90.578125 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.046875 50.742188 C 75.046875 49.46875 74.015625 48.4375 72.742188 48.4375 C 71.46875 48.4375 70.4375 49.46875 70.4375 50.742188 C 70.4375 52.015625 71.46875 53.046875 72.742188 53.046875 C 74.015625 53.046875 75.046875 52.015625 75.046875 50.742188 Z M 75.046875 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.386719 50.742188 C 81.386719 49.46875 80.355469 48.4375 79.082031 48.4375 C 77.808594 48.4375 76.777344 49.46875 76.777344 50.742188 C 76.777344 52.015625 77.808594 53.046875 79.082031 53.046875 C 80.355469 53.046875 81.386719 52.015625 81.386719 50.742188 Z M 81.386719 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.382812 50.742188 C 91.382812 49.46875 90.351562 48.4375 89.078125 48.4375 C 87.804688 48.4375 86.773438 49.46875 86.773438 50.742188 C 86.773438 52.015625 87.804688 53.046875 89.078125 53.046875 C 90.351562 53.046875 91.382812 52.015625 91.382812 50.742188 Z M 91.382812 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.039062 50.742188 C 87.039062 49.46875 86.007812 48.4375 84.734375 48.4375 C 83.460938 48.4375 82.429688 49.46875 82.429688 50.742188 C 82.429688 52.015625 83.460938 53.046875 84.734375 53.046875 C 86.007812 53.046875 87.039062 52.015625 87.039062 50.742188 Z M 87.039062 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.539062 50.742188 C 82.539062 49.46875 81.507812 48.4375 80.234375 48.4375 C 78.960938 48.4375 77.929688 49.46875 77.929688 50.742188 C 77.929688 52.015625 78.960938 53.046875 80.234375 53.046875 C 81.507812 53.046875 82.539062 52.015625 82.539062 50.742188 Z M 82.539062 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 97.792969 50.742188 C 97.792969 49.46875 96.761719 48.4375 95.488281 48.4375 C 94.214844 48.4375 93.183594 49.46875 93.183594 50.742188 C 93.183594 52.015625 94.214844 53.046875 95.488281 53.046875 C 96.761719 53.046875 97.792969 52.015625 97.792969 50.742188 Z M 97.792969 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.054688 50.742188 C 85.054688 49.46875 84.023438 48.4375 82.75 48.4375 C 81.476562 48.4375 80.445312 49.46875 80.445312 50.742188 C 80.445312 52.015625 81.476562 53.046875 82.75 53.046875 C 84.023438 53.046875 85.054688 52.015625 85.054688 50.742188 Z M 85.054688 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.664062 50.742188 C 88.664062 49.46875 87.632812 48.4375 86.359375 48.4375 C 85.085938 48.4375 84.054688 49.46875 84.054688 50.742188 C 84.054688 52.015625 85.085938 53.046875 86.359375 53.046875 C 87.632812 53.046875 88.664062 52.015625 88.664062 50.742188 Z M 88.664062 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 95.160156 50.742188 C 95.160156 49.46875 94.128906 48.4375 92.855469 48.4375 C 91.582031 48.4375 90.550781 49.46875 90.550781 50.742188 C 90.550781 52.015625 91.582031 53.046875 92.855469 53.046875 C 94.128906 53.046875 95.160156 52.015625 95.160156 50.742188 Z M 95.160156 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.132812 50.742188 C 77.132812 49.46875 76.101562 48.4375 74.828125 48.4375 C 73.554688 48.4375 72.523438 49.46875 72.523438 50.742188 C 72.523438 52.015625 73.554688 53.046875 74.828125 53.046875 C 76.101562 53.046875 77.132812 52.015625 77.132812 50.742188 Z M 77.132812 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.945312 50.742188 C 81.945312 49.46875 80.914062 48.4375 79.640625 48.4375 C 78.367188 48.4375 77.335938 49.46875 77.335938 50.742188 C 77.335938 52.015625 78.367188 53.046875 79.640625 53.046875 C 80.914062 53.046875 81.945312 52.015625 81.945312 50.742188 Z M 81.945312 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.765625 50.742188 C 96.765625 49.46875 95.734375 48.4375 94.460938 48.4375 C 93.1875 48.4375 92.15625 49.46875 92.15625 50.742188 C 92.15625 52.015625 93.1875 53.046875 94.460938 53.046875 C 95.734375 53.046875 96.765625 52.015625 96.765625 50.742188 Z M 96.765625 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.109375 50.742188 C 93.109375 49.46875 92.078125 48.4375 90.804688 48.4375 C 89.53125 48.4375 88.5 49.46875 88.5 50.742188 C 88.5 52.015625 89.53125 53.046875 90.804688 53.046875 C 92.078125 53.046875 93.109375 52.015625 93.109375 50.742188 Z M 93.109375 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.347656 50.742188 C 85.347656 49.46875 84.316406 48.4375 83.042969 48.4375 C 81.769531 48.4375 80.738281 49.46875 80.738281 50.742188 C 80.738281 52.015625 81.769531 53.046875 83.042969 53.046875 C 84.316406 53.046875 85.347656 52.015625 85.347656 50.742188 Z M 85.347656 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 97.726562 50.742188 C 97.726562 49.46875 96.695312 48.4375 95.421875 48.4375 C 94.148438 48.4375 93.117188 49.46875 93.117188 50.742188 C 93.117188 52.015625 94.148438 53.046875 95.421875 53.046875 C 96.695312 53.046875 97.726562 52.015625 97.726562 50.742188 Z M 97.726562 50.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.148438 45.898438 C 77.148438 44.625 76.117188 43.59375 74.84375 43.59375 C 73.570312 43.59375 72.539062 44.625 72.539062 45.898438 C 72.539062 47.171875 73.570312 48.203125 74.84375 48.203125 C 76.117188 48.203125 77.148438 47.171875 77.148438 45.898438 Z M 77.148438 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 98.015625 45.898438 C 98.015625 44.625 96.984375 43.59375 95.710938 43.59375 C 94.4375 43.59375 93.40625 44.625 93.40625 45.898438 C 93.40625 47.171875 94.4375 48.203125 95.710938 48.203125 C 96.984375 48.203125 98.015625 47.171875 98.015625 45.898438 Z M 98.015625 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.269531 45.898438 C 85.269531 44.625 84.238281 43.59375 82.964844 43.59375 C 81.691406 43.59375 80.660156 44.625 80.660156 45.898438 C 80.660156 47.171875 81.691406 48.203125 82.964844 48.203125 C 84.238281 48.203125 85.269531 47.171875 85.269531 45.898438 Z M 85.269531 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.800781 45.898438 C 96.800781 44.625 95.769531 43.59375 94.496094 43.59375 C 93.222656 43.59375 92.191406 44.625 92.191406 45.898438 C 92.191406 47.171875 93.222656 48.203125 94.496094 48.203125 C 95.769531 48.203125 96.800781 47.171875 96.800781 45.898438 Z M 96.800781 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.101562 45.898438 C 93.101562 44.625 92.070312 43.59375 90.796875 43.59375 C 89.523438 43.59375 88.492188 44.625 88.492188 45.898438 C 88.492188 47.171875 89.523438 48.203125 90.796875 48.203125 C 92.070312 48.203125 93.101562 47.171875 93.101562 45.898438 Z M 93.101562 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.816406 45.898438 C 87.816406 44.625 86.785156 43.59375 85.511719 43.59375 C 84.238281 43.59375 83.207031 44.625 83.207031 45.898438 C 83.207031 47.171875 84.238281 48.203125 85.511719 48.203125 C 86.785156 48.203125 87.816406 47.171875 87.816406 45.898438 Z M 87.816406 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.960938 45.898438 C 84.960938 44.625 83.929688 43.59375 82.65625 43.59375 C 81.382812 43.59375 80.351562 44.625 80.351562 45.898438 C 80.351562 47.171875 81.382812 48.203125 82.65625 48.203125 C 83.929688 48.203125 84.960938 47.171875 84.960938 45.898438 Z M 84.960938 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.472656 45.898438 C 94.472656 44.625 93.441406 43.59375 92.167969 43.59375 C 90.894531 43.59375 89.863281 44.625 89.863281 45.898438 C 89.863281 47.171875 90.894531 48.203125 92.167969 48.203125 C 93.441406 48.203125 94.472656 47.171875 94.472656 45.898438 Z M 94.472656 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.816406 45.898438 C 74.816406 44.625 73.785156 43.59375 72.511719 43.59375 C 71.238281 43.59375 70.207031 44.625 70.207031 45.898438 C 70.207031 47.171875 71.238281 48.203125 72.511719 48.203125 C 73.785156 48.203125 74.816406 47.171875 74.816406 45.898438 Z M 74.816406 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.972656 45.898438 C 85.972656 44.625 84.941406 43.59375 83.667969 43.59375 C 82.394531 43.59375 81.363281 44.625 81.363281 45.898438 C 81.363281 47.171875 82.394531 48.203125 83.667969 48.203125 C 84.941406 48.203125 85.972656 47.171875 85.972656 45.898438 Z M 85.972656 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.769531 45.898438 C 99.769531 44.625 98.738281 43.59375 97.464844 43.59375 C 96.191406 43.59375 95.160156 44.625 95.160156 45.898438 C 95.160156 47.171875 96.191406 48.203125 97.464844 48.203125 C 98.738281 48.203125 99.769531 47.171875 99.769531 45.898438 Z M 99.769531 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.226562 45.898438 C 86.226562 44.625 85.195312 43.59375 83.921875 43.59375 C 82.648438 43.59375 81.617188 44.625 81.617188 45.898438 C 81.617188 47.171875 82.648438 48.203125 83.921875 48.203125 C 85.195312 48.203125 86.226562 47.171875 86.226562 45.898438 Z M 86.226562 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.542969 45.898438 C 77.542969 44.625 76.511719 43.59375 75.238281 43.59375 C 73.964844 43.59375 72.933594 44.625 72.933594 45.898438 C 72.933594 47.171875 73.964844 48.203125 75.238281 48.203125 C 76.511719 48.203125 77.542969 47.171875 77.542969 45.898438 Z M 77.542969 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.042969 45.898438 C 92.042969 44.625 91.011719 43.59375 89.738281 43.59375 C 88.464844 43.59375 87.433594 44.625 87.433594 45.898438 C 87.433594 47.171875 88.464844 48.203125 89.738281 48.203125 C 91.011719 48.203125 92.042969 47.171875 92.042969 45.898438 Z M 92.042969 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.746094 45.898438 C 91.746094 44.625 90.714844 43.59375 89.441406 43.59375 C 88.167969 43.59375 87.136719 44.625 87.136719 45.898438 C 87.136719 47.171875 88.167969 48.203125 89.441406 48.203125 C 90.714844 48.203125 91.746094 47.171875 91.746094 45.898438 Z M 91.746094 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.875 45.898438 C 73.875 44.625 72.84375 43.59375 71.570312 43.59375 C 70.296875 43.59375 69.265625 44.625 69.265625 45.898438 C 69.265625 47.171875 70.296875 48.203125 71.570312 48.203125 C 72.84375 48.203125 73.875 47.171875 73.875 45.898438 Z M 73.875 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.171875 45.898438 C 81.171875 44.625 80.140625 43.59375 78.867188 43.59375 C 77.59375 43.59375 76.5625 44.625 76.5625 45.898438 C 76.5625 47.171875 77.59375 48.203125 78.867188 48.203125 C 80.140625 48.203125 81.171875 47.171875 81.171875 45.898438 Z M 81.171875 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.671875 45.898438 C 92.671875 44.625 91.640625 43.59375 90.367188 43.59375 C 89.09375 43.59375 88.0625 44.625 88.0625 45.898438 C 88.0625 47.171875 89.09375 48.203125 90.367188 48.203125 C 91.640625 48.203125 92.671875 47.171875 92.671875 45.898438 Z M 92.671875 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.675781 45.898438 C 87.675781 44.625 86.644531 43.59375 85.371094 43.59375 C 84.097656 43.59375 83.066406 44.625 83.066406 45.898438 C 83.066406 47.171875 84.097656 48.203125 85.371094 48.203125 C 86.644531 48.203125 87.675781 47.171875 87.675781 45.898438 Z M 87.675781 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.5 45.898438 C 82.5 44.625 81.46875 43.59375 80.195312 43.59375 C 78.921875 43.59375 77.890625 44.625 77.890625 45.898438 C 77.890625 47.171875 78.921875 48.203125 80.195312 48.203125 C 81.46875 48.203125 82.5 47.171875 82.5 45.898438 Z M 82.5 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.046875 45.898438 C 100.046875 44.625 99.015625 43.59375 97.742188 43.59375 C 96.46875 43.59375 95.4375 44.625 95.4375 45.898438 C 95.4375 47.171875 96.46875 48.203125 97.742188 48.203125 C 99.015625 48.203125 100.046875 47.171875 100.046875 45.898438 Z M 100.046875 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.390625 45.898438 C 85.390625 44.625 84.359375 43.59375 83.085938 43.59375 C 81.8125 43.59375 80.78125 44.625 80.78125 45.898438 C 80.78125 47.171875 81.8125 48.203125 83.085938 48.203125 C 84.359375 48.203125 85.390625 47.171875 85.390625 45.898438 Z M 85.390625 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 89.546875 45.898438 C 89.546875 44.625 88.515625 43.59375 87.242188 43.59375 C 85.96875 43.59375 84.9375 44.625 84.9375 45.898438 C 84.9375 47.171875 85.96875 48.203125 87.242188 48.203125 C 88.515625 48.203125 89.546875 47.171875 89.546875 45.898438 Z M 89.546875 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 97.019531 45.898438 C 97.019531 44.625 95.988281 43.59375 94.714844 43.59375 C 93.441406 43.59375 92.410156 44.625 92.410156 45.898438 C 92.410156 47.171875 93.441406 48.203125 94.714844 48.203125 C 95.988281 48.203125 97.019531 47.171875 97.019531 45.898438 Z M 97.019531 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.277344 45.898438 C 76.277344 44.625 75.246094 43.59375 73.972656 43.59375 C 72.699219 43.59375 71.667969 44.625 71.667969 45.898438 C 71.667969 47.171875 72.699219 48.203125 73.972656 48.203125 C 75.246094 48.203125 76.277344 47.171875 76.277344 45.898438 Z M 76.277344 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.8125 45.898438 C 81.8125 44.625 80.78125 43.59375 79.507812 43.59375 C 78.234375 43.59375 77.203125 44.625 77.203125 45.898438 C 77.203125 47.171875 78.234375 48.203125 79.507812 48.203125 C 80.78125 48.203125 81.8125 47.171875 81.8125 45.898438 Z M 81.8125 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 98.867188 45.898438 C 98.867188 44.625 97.835938 43.59375 96.5625 43.59375 C 95.289062 43.59375 94.257812 44.625 94.257812 45.898438 C 94.257812 47.171875 95.289062 48.203125 96.5625 48.203125 C 97.835938 48.203125 98.867188 47.171875 98.867188 45.898438 Z M 98.867188 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.660156 45.898438 C 94.660156 44.625 93.628906 43.59375 92.355469 43.59375 C 91.082031 43.59375 90.050781 44.625 90.050781 45.898438 C 90.050781 47.171875 91.082031 48.203125 92.355469 48.203125 C 93.628906 48.203125 94.660156 47.171875 94.660156 45.898438 Z M 94.660156 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.726562 45.898438 C 85.726562 44.625 84.695312 43.59375 83.421875 43.59375 C 82.148438 43.59375 81.117188 44.625 81.117188 45.898438 C 81.117188 47.171875 82.148438 48.203125 83.421875 48.203125 C 84.695312 48.203125 85.726562 47.171875 85.726562 45.898438 Z M 85.726562 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.972656 45.898438 C 99.972656 44.625 98.941406 43.59375 97.667969 43.59375 C 96.394531 43.59375 95.363281 44.625 95.363281 45.898438 C 95.363281 47.171875 96.394531 48.203125 97.667969 48.203125 C 98.941406 48.203125 99.972656 47.171875 99.972656 45.898438 Z M 99.972656 45.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.179688 41.054688 C 76.179688 39.78125 75.148438 38.75 73.875 38.75 C 72.601562 38.75 71.570312 39.78125 71.570312 41.054688 C 71.570312 42.328125 72.601562 43.359375 73.875 43.359375 C 75.148438 43.359375 76.179688 42.328125 76.179688 41.054688 Z M 76.179688 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.570312 41.054688 C 99.570312 39.78125 98.539062 38.75 97.265625 38.75 C 95.992188 38.75 94.960938 39.78125 94.960938 41.054688 C 94.960938 42.328125 95.992188 43.359375 97.265625 43.359375 C 98.539062 43.359375 99.570312 42.328125 99.570312 41.054688 Z M 99.570312 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.285156 41.054688 C 85.285156 39.78125 84.253906 38.75 82.980469 38.75 C 81.707031 38.75 80.675781 39.78125 80.675781 41.054688 C 80.675781 42.328125 81.707031 43.359375 82.980469 43.359375 C 84.253906 43.359375 85.285156 42.328125 85.285156 41.054688 Z M 85.285156 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 98.210938 41.054688 C 98.210938 39.78125 97.179688 38.75 95.90625 38.75 C 94.632812 38.75 93.601562 39.78125 93.601562 41.054688 C 93.601562 42.328125 94.632812 43.359375 95.90625 43.359375 C 97.179688 43.359375 98.210938 42.328125 98.210938 41.054688 Z M 98.210938 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.0625 41.054688 C 94.0625 39.78125 93.03125 38.75 91.757812 38.75 C 90.484375 38.75 89.453125 39.78125 89.453125 41.054688 C 89.453125 42.328125 90.484375 43.359375 91.757812 43.359375 C 93.03125 43.359375 94.0625 42.328125 94.0625 41.054688 Z M 94.0625 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.140625 41.054688 C 88.140625 39.78125 87.109375 38.75 85.835938 38.75 C 84.5625 38.75 83.53125 39.78125 83.53125 41.054688 C 83.53125 42.328125 84.5625 43.359375 85.835938 43.359375 C 87.109375 43.359375 88.140625 42.328125 88.140625 41.054688 Z M 88.140625 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.9375 41.054688 C 84.9375 39.78125 83.90625 38.75 82.632812 38.75 C 81.359375 38.75 80.328125 39.78125 80.328125 41.054688 C 80.328125 42.328125 81.359375 43.359375 82.632812 43.359375 C 83.90625 43.359375 84.9375 42.328125 84.9375 41.054688 Z M 84.9375 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 95.597656 41.054688 C 95.597656 39.78125 94.566406 38.75 93.292969 38.75 C 92.019531 38.75 90.988281 39.78125 90.988281 41.054688 C 90.988281 42.328125 92.019531 43.359375 93.292969 43.359375 C 94.566406 43.359375 95.597656 42.328125 95.597656 41.054688 Z M 95.597656 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.566406 41.054688 C 73.566406 39.78125 72.535156 38.75 71.261719 38.75 C 69.988281 38.75 68.957031 39.78125 68.957031 41.054688 C 68.957031 42.328125 69.988281 43.359375 71.261719 43.359375 C 72.535156 43.359375 73.566406 42.328125 73.566406 41.054688 Z M 73.566406 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.070312 41.054688 C 86.070312 39.78125 85.039062 38.75 83.765625 38.75 C 82.492188 38.75 81.460938 39.78125 81.460938 41.054688 C 81.460938 42.328125 82.492188 43.359375 83.765625 43.359375 C 85.039062 43.359375 86.070312 42.328125 86.070312 41.054688 Z M 86.070312 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 101.535156 41.054688 C 101.535156 39.78125 100.503906 38.75 99.230469 38.75 C 97.957031 38.75 96.925781 39.78125 96.925781 41.054688 C 96.925781 42.328125 97.957031 43.359375 99.230469 43.359375 C 100.503906 43.359375 101.535156 42.328125 101.535156 41.054688 Z M 101.535156 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.355469 41.054688 C 86.355469 39.78125 85.324219 38.75 84.050781 38.75 C 82.777344 38.75 81.746094 39.78125 81.746094 41.054688 C 81.746094 42.328125 82.777344 43.359375 84.050781 43.359375 C 85.324219 43.359375 86.355469 42.328125 86.355469 41.054688 Z M 86.355469 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.625 41.054688 C 76.625 39.78125 75.59375 38.75 74.320312 38.75 C 73.046875 38.75 72.015625 39.78125 72.015625 41.054688 C 72.015625 42.328125 73.046875 43.359375 74.320312 43.359375 C 75.59375 43.359375 76.625 42.328125 76.625 41.054688 Z M 76.625 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.878906 41.054688 C 92.878906 39.78125 91.847656 38.75 90.574219 38.75 C 89.300781 38.75 88.269531 39.78125 88.269531 41.054688 C 88.269531 42.328125 89.300781 43.359375 90.574219 43.359375 C 91.847656 43.359375 92.878906 42.328125 92.878906 41.054688 Z M 92.878906 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.542969 41.054688 C 92.542969 39.78125 91.511719 38.75 90.238281 38.75 C 88.964844 38.75 87.933594 39.78125 87.933594 41.054688 C 87.933594 42.328125 88.964844 43.359375 90.238281 43.359375 C 91.511719 43.359375 92.542969 42.328125 92.542969 41.054688 Z M 92.542969 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.515625 41.054688 C 72.515625 39.78125 71.484375 38.75 70.210938 38.75 C 68.9375 38.75 67.90625 39.78125 67.90625 41.054688 C 67.90625 42.328125 68.9375 43.359375 70.210938 43.359375 C 71.484375 43.359375 72.515625 42.328125 72.515625 41.054688 Z M 72.515625 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.691406 41.054688 C 80.691406 39.78125 79.660156 38.75 78.386719 38.75 C 77.113281 38.75 76.082031 39.78125 76.082031 41.054688 C 76.082031 42.328125 77.113281 43.359375 78.386719 43.359375 C 79.660156 43.359375 80.691406 42.328125 80.691406 41.054688 Z M 80.691406 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.582031 41.054688 C 93.582031 39.78125 92.550781 38.75 91.277344 38.75 C 90.003906 38.75 88.972656 39.78125 88.972656 41.054688 C 88.972656 42.328125 90.003906 43.359375 91.277344 43.359375 C 92.550781 43.359375 93.582031 42.328125 93.582031 41.054688 Z M 93.582031 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.980469 41.054688 C 87.980469 39.78125 86.949219 38.75 85.675781 38.75 C 84.402344 38.75 83.371094 39.78125 83.371094 41.054688 C 83.371094 42.328125 84.402344 43.359375 85.675781 43.359375 C 86.949219 43.359375 87.980469 42.328125 87.980469 41.054688 Z M 87.980469 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.179688 41.054688 C 82.179688 39.78125 81.148438 38.75 79.875 38.75 C 78.601562 38.75 77.570312 39.78125 77.570312 41.054688 C 77.570312 42.328125 78.601562 43.359375 79.875 43.359375 C 81.148438 43.359375 82.179688 42.328125 82.179688 41.054688 Z M 82.179688 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 101.84375 41.054688 C 101.84375 39.78125 100.8125 38.75 99.539062 38.75 C 98.265625 38.75 97.234375 39.78125 97.234375 41.054688 C 97.234375 42.328125 98.265625 43.359375 99.539062 43.359375 C 100.8125 43.359375 101.84375 42.328125 101.84375 41.054688 Z M 101.84375 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.421875 41.054688 C 85.421875 39.78125 84.390625 38.75 83.117188 38.75 C 81.84375 38.75 80.8125 39.78125 80.8125 41.054688 C 80.8125 42.328125 81.84375 43.359375 83.117188 43.359375 C 84.390625 43.359375 85.421875 42.328125 85.421875 41.054688 Z M 85.421875 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.078125 41.054688 C 90.078125 39.78125 89.046875 38.75 87.773438 38.75 C 86.5 38.75 85.46875 39.78125 85.46875 41.054688 C 85.46875 42.328125 86.5 43.359375 87.773438 43.359375 C 89.046875 43.359375 90.078125 42.328125 90.078125 41.054688 Z M 90.078125 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 98.453125 41.054688 C 98.453125 39.78125 97.421875 38.75 96.148438 38.75 C 94.875 38.75 93.84375 39.78125 93.84375 41.054688 C 93.84375 42.328125 94.875 43.359375 96.148438 43.359375 C 97.421875 43.359375 98.453125 42.328125 98.453125 41.054688 Z M 98.453125 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.207031 41.054688 C 75.207031 39.78125 74.175781 38.75 72.902344 38.75 C 71.628906 38.75 70.597656 39.78125 70.597656 41.054688 C 70.597656 42.328125 71.628906 43.359375 72.902344 43.359375 C 74.175781 43.359375 75.207031 42.328125 75.207031 41.054688 Z M 75.207031 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.410156 41.054688 C 81.410156 39.78125 80.378906 38.75 79.105469 38.75 C 77.832031 38.75 76.800781 39.78125 76.800781 41.054688 C 76.800781 42.328125 77.832031 43.359375 79.105469 43.359375 C 80.378906 43.359375 81.410156 42.328125 81.410156 41.054688 Z M 81.410156 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.523438 41.054688 C 100.523438 39.78125 99.492188 38.75 98.21875 38.75 C 96.945312 38.75 95.914062 39.78125 95.914062 41.054688 C 95.914062 42.328125 96.945312 43.359375 98.21875 43.359375 C 99.492188 43.359375 100.523438 42.328125 100.523438 41.054688 Z M 100.523438 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 95.808594 41.054688 C 95.808594 39.78125 94.777344 38.75 93.503906 38.75 C 92.230469 38.75 91.199219 39.78125 91.199219 41.054688 C 91.199219 42.328125 92.230469 43.359375 93.503906 43.359375 C 94.777344 43.359375 95.808594 42.328125 95.808594 41.054688 Z M 95.808594 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.796875 41.054688 C 85.796875 39.78125 84.765625 38.75 83.492188 38.75 C 82.21875 38.75 81.1875 39.78125 81.1875 41.054688 C 81.1875 42.328125 82.21875 43.359375 83.492188 43.359375 C 84.765625 43.359375 85.796875 42.328125 85.796875 41.054688 Z M 85.796875 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 101.761719 41.054688 C 101.761719 39.78125 100.730469 38.75 99.457031 38.75 C 98.183594 38.75 97.152344 39.78125 97.152344 41.054688 C 97.152344 42.328125 98.183594 43.359375 99.457031 43.359375 C 100.730469 43.359375 101.761719 42.328125 101.761719 41.054688 Z M 101.761719 41.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.996094 36.210938 C 74.996094 34.9375 73.964844 33.90625 72.691406 33.90625 C 71.417969 33.90625 70.386719 34.9375 70.386719 36.210938 C 70.386719 37.484375 71.417969 38.515625 72.691406 38.515625 C 73.964844 38.515625 74.996094 37.484375 74.996094 36.210938 Z M 74.996094 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.671875 36.210938 C 100.671875 34.9375 99.640625 33.90625 98.367188 33.90625 C 97.09375 33.90625 96.0625 34.9375 96.0625 36.210938 C 96.0625 37.484375 97.09375 38.515625 98.367188 38.515625 C 99.640625 38.515625 100.671875 37.484375 100.671875 36.210938 Z M 100.671875 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.992188 36.210938 C 84.992188 34.9375 83.960938 33.90625 82.6875 33.90625 C 81.414062 33.90625 80.382812 34.9375 80.382812 36.210938 C 80.382812 37.484375 81.414062 38.515625 82.6875 38.515625 C 83.960938 38.515625 84.992188 37.484375 84.992188 36.210938 Z M 84.992188 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.179688 36.210938 C 99.179688 34.9375 98.148438 33.90625 96.875 33.90625 C 95.601562 33.90625 94.570312 34.9375 94.570312 36.210938 C 94.570312 37.484375 95.601562 38.515625 96.875 38.515625 C 98.148438 38.515625 99.179688 37.484375 99.179688 36.210938 Z M 99.179688 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.625 36.210938 C 94.625 34.9375 93.59375 33.90625 92.320312 33.90625 C 91.046875 33.90625 90.015625 34.9375 90.015625 36.210938 C 90.015625 37.484375 91.046875 38.515625 92.320312 38.515625 C 93.59375 38.515625 94.625 37.484375 94.625 36.210938 Z M 94.625 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.125 36.210938 C 88.125 34.9375 87.09375 33.90625 85.820312 33.90625 C 84.546875 33.90625 83.515625 34.9375 83.515625 36.210938 C 83.515625 37.484375 84.546875 38.515625 85.820312 38.515625 C 87.09375 38.515625 88.125 37.484375 88.125 36.210938 Z M 88.125 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.609375 36.210938 C 84.609375 34.9375 83.578125 33.90625 82.304688 33.90625 C 81.03125 33.90625 80 34.9375 80 36.210938 C 80 37.484375 81.03125 38.515625 82.304688 38.515625 C 83.578125 38.515625 84.609375 37.484375 84.609375 36.210938 Z M 84.609375 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.3125 36.210938 C 96.3125 34.9375 95.28125 33.90625 94.007812 33.90625 C 92.734375 33.90625 91.703125 34.9375 91.703125 36.210938 C 91.703125 37.484375 92.734375 38.515625 94.007812 38.515625 C 95.28125 38.515625 96.3125 37.484375 96.3125 36.210938 Z M 96.3125 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.128906 36.210938 C 72.128906 34.9375 71.097656 33.90625 69.824219 33.90625 C 68.550781 33.90625 67.519531 34.9375 67.519531 36.210938 C 67.519531 37.484375 68.550781 38.515625 69.824219 38.515625 C 71.097656 38.515625 72.128906 37.484375 72.128906 36.210938 Z M 72.128906 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.851562 36.210938 C 85.851562 34.9375 84.820312 33.90625 83.546875 33.90625 C 82.273438 33.90625 81.242188 34.9375 81.242188 36.210938 C 81.242188 37.484375 82.273438 38.515625 83.546875 38.515625 C 84.820312 38.515625 85.851562 37.484375 85.851562 36.210938 Z M 85.851562 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 102.828125 36.210938 C 102.828125 34.9375 101.796875 33.90625 100.523438 33.90625 C 99.25 33.90625 98.21875 34.9375 98.21875 36.210938 C 98.21875 37.484375 99.25 38.515625 100.523438 38.515625 C 101.796875 38.515625 102.828125 37.484375 102.828125 36.210938 Z M 102.828125 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.167969 36.210938 C 86.167969 34.9375 85.136719 33.90625 83.863281 33.90625 C 82.589844 33.90625 81.558594 34.9375 81.558594 36.210938 C 81.558594 37.484375 82.589844 38.515625 83.863281 38.515625 C 85.136719 38.515625 86.167969 37.484375 86.167969 36.210938 Z M 86.167969 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.484375 36.210938 C 75.484375 34.9375 74.453125 33.90625 73.179688 33.90625 C 71.90625 33.90625 70.875 34.9375 70.875 36.210938 C 70.875 37.484375 71.90625 38.515625 73.179688 38.515625 C 74.453125 38.515625 75.484375 37.484375 75.484375 36.210938 Z M 75.484375 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.328125 36.210938 C 93.328125 34.9375 92.296875 33.90625 91.023438 33.90625 C 89.75 33.90625 88.71875 34.9375 88.71875 36.210938 C 88.71875 37.484375 89.75 38.515625 91.023438 38.515625 C 92.296875 38.515625 93.328125 37.484375 93.328125 36.210938 Z M 93.328125 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.960938 36.210938 C 92.960938 34.9375 91.929688 33.90625 90.65625 33.90625 C 89.382812 33.90625 88.351562 34.9375 88.351562 36.210938 C 88.351562 37.484375 89.382812 38.515625 90.65625 38.515625 C 91.929688 38.515625 92.960938 37.484375 92.960938 36.210938 Z M 92.960938 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.972656 36.210938 C 70.972656 34.9375 69.941406 33.90625 68.667969 33.90625 C 67.394531 33.90625 66.363281 34.9375 66.363281 36.210938 C 66.363281 37.484375 67.394531 38.515625 68.667969 38.515625 C 69.941406 38.515625 70.972656 37.484375 70.972656 36.210938 Z M 70.972656 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.949219 36.210938 C 79.949219 34.9375 78.917969 33.90625 77.644531 33.90625 C 76.371094 33.90625 75.339844 34.9375 75.339844 36.210938 C 75.339844 37.484375 76.371094 38.515625 77.644531 38.515625 C 78.917969 38.515625 79.949219 37.484375 79.949219 36.210938 Z M 79.949219 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.097656 36.210938 C 94.097656 34.9375 93.066406 33.90625 91.792969 33.90625 C 90.519531 33.90625 89.488281 34.9375 89.488281 36.210938 C 89.488281 37.484375 90.519531 38.515625 91.792969 38.515625 C 93.066406 38.515625 94.097656 37.484375 94.097656 36.210938 Z M 94.097656 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.949219 36.210938 C 87.949219 34.9375 86.917969 33.90625 85.644531 33.90625 C 84.371094 33.90625 83.339844 34.9375 83.339844 36.210938 C 83.339844 37.484375 84.371094 38.515625 85.644531 38.515625 C 86.917969 38.515625 87.949219 37.484375 87.949219 36.210938 Z M 87.949219 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.582031 36.210938 C 81.582031 34.9375 80.550781 33.90625 79.277344 33.90625 C 78.003906 33.90625 76.972656 34.9375 76.972656 36.210938 C 76.972656 37.484375 78.003906 38.515625 79.277344 38.515625 C 80.550781 38.515625 81.582031 37.484375 81.582031 36.210938 Z M 81.582031 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 103.171875 36.210938 C 103.171875 34.9375 102.140625 33.90625 100.867188 33.90625 C 99.59375 33.90625 98.5625 34.9375 98.5625 36.210938 C 98.5625 37.484375 99.59375 38.515625 100.867188 38.515625 C 102.140625 38.515625 103.171875 37.484375 103.171875 36.210938 Z M 103.171875 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.140625 36.210938 C 85.140625 34.9375 84.109375 33.90625 82.835938 33.90625 C 81.5625 33.90625 80.53125 34.9375 80.53125 36.210938 C 80.53125 37.484375 81.5625 38.515625 82.835938 38.515625 C 84.109375 38.515625 85.140625 37.484375 85.140625 36.210938 Z M 85.140625 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.253906 36.210938 C 90.253906 34.9375 89.222656 33.90625 87.949219 33.90625 C 86.675781 33.90625 85.644531 34.9375 85.644531 36.210938 C 85.644531 37.484375 86.675781 38.515625 87.949219 38.515625 C 89.222656 38.515625 90.253906 37.484375 90.253906 36.210938 Z M 90.253906 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.445312 36.210938 C 99.445312 34.9375 98.414062 33.90625 97.140625 33.90625 C 95.867188 33.90625 94.835938 34.9375 94.835938 36.210938 C 94.835938 37.484375 95.867188 38.515625 97.140625 38.515625 C 98.414062 38.515625 99.445312 37.484375 99.445312 36.210938 Z M 99.445312 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.929688 36.210938 C 73.929688 34.9375 72.898438 33.90625 71.625 33.90625 C 70.351562 33.90625 69.320312 34.9375 69.320312 36.210938 C 69.320312 37.484375 70.351562 38.515625 71.625 38.515625 C 72.898438 38.515625 73.929688 37.484375 73.929688 36.210938 Z M 73.929688 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.738281 36.210938 C 80.738281 34.9375 79.707031 33.90625 78.433594 33.90625 C 77.160156 33.90625 76.128906 34.9375 76.128906 36.210938 C 76.128906 37.484375 77.160156 38.515625 78.433594 38.515625 C 79.707031 38.515625 80.738281 37.484375 80.738281 36.210938 Z M 80.738281 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 101.71875 36.210938 C 101.71875 34.9375 100.6875 33.90625 99.414062 33.90625 C 98.140625 33.90625 97.109375 34.9375 97.109375 36.210938 C 97.109375 37.484375 98.140625 38.515625 99.414062 38.515625 C 100.6875 38.515625 101.71875 37.484375 101.71875 36.210938 Z M 101.71875 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.546875 36.210938 C 96.546875 34.9375 95.515625 33.90625 94.242188 33.90625 C 92.96875 33.90625 91.9375 34.9375 91.9375 36.210938 C 91.9375 37.484375 92.96875 38.515625 94.242188 38.515625 C 95.515625 38.515625 96.546875 37.484375 96.546875 36.210938 Z M 96.546875 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.554688 36.210938 C 85.554688 34.9375 84.523438 33.90625 83.25 33.90625 C 81.976562 33.90625 80.945312 34.9375 80.945312 36.210938 C 80.945312 37.484375 81.976562 38.515625 83.25 38.515625 C 84.523438 38.515625 85.554688 37.484375 85.554688 36.210938 Z M 85.554688 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 103.078125 36.210938 C 103.078125 34.9375 102.046875 33.90625 100.773438 33.90625 C 99.5 33.90625 98.46875 34.9375 98.46875 36.210938 C 98.46875 37.484375 99.5 38.515625 100.773438 38.515625 C 102.046875 38.515625 103.078125 37.484375 103.078125 36.210938 Z M 103.078125 36.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.609375 31.367188 C 73.609375 30.09375 72.578125 29.0625 71.304688 29.0625 C 70.03125 29.0625 69 30.09375 69 31.367188 C 69 32.640625 70.03125 33.671875 71.304688 33.671875 C 72.578125 33.671875 73.609375 32.640625 73.609375 31.367188 Z M 73.609375 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 101.316406 31.367188 C 101.316406 30.09375 100.285156 29.0625 99.011719 29.0625 C 97.738281 29.0625 96.707031 30.09375 96.707031 31.367188 C 96.707031 32.640625 97.738281 33.671875 99.011719 33.671875 C 100.285156 33.671875 101.316406 32.640625 101.316406 31.367188 Z M 101.316406 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.394531 31.367188 C 84.394531 30.09375 83.363281 29.0625 82.089844 29.0625 C 80.816406 29.0625 79.785156 30.09375 79.785156 31.367188 C 79.785156 32.640625 80.816406 33.671875 82.089844 33.671875 C 83.363281 33.671875 84.394531 32.640625 84.394531 31.367188 Z M 84.394531 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.703125 31.367188 C 99.703125 30.09375 98.671875 29.0625 97.398438 29.0625 C 96.125 29.0625 95.09375 30.09375 95.09375 31.367188 C 95.09375 32.640625 96.125 33.671875 97.398438 33.671875 C 98.671875 33.671875 99.703125 32.640625 99.703125 31.367188 Z M 99.703125 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.789062 31.367188 C 94.789062 30.09375 93.757812 29.0625 92.484375 29.0625 C 91.210938 29.0625 90.179688 30.09375 90.179688 31.367188 C 90.179688 32.640625 91.210938 33.671875 92.484375 33.671875 C 93.757812 33.671875 94.789062 32.640625 94.789062 31.367188 Z M 94.789062 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.777344 31.367188 C 87.777344 30.09375 86.746094 29.0625 85.472656 29.0625 C 84.199219 29.0625 83.167969 30.09375 83.167969 31.367188 C 83.167969 32.640625 84.199219 33.671875 85.472656 33.671875 C 86.746094 33.671875 87.777344 32.640625 87.777344 31.367188 Z M 87.777344 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.984375 31.367188 C 83.984375 30.09375 82.953125 29.0625 81.679688 29.0625 C 80.40625 29.0625 79.375 30.09375 79.375 31.367188 C 79.375 32.640625 80.40625 33.671875 81.679688 33.671875 C 82.953125 33.671875 83.984375 32.640625 83.984375 31.367188 Z M 83.984375 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.613281 31.367188 C 96.613281 30.09375 95.582031 29.0625 94.308594 29.0625 C 93.035156 29.0625 92.003906 30.09375 92.003906 31.367188 C 92.003906 32.640625 93.035156 33.671875 94.308594 33.671875 C 95.582031 33.671875 96.613281 32.640625 96.613281 31.367188 Z M 96.613281 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.511719 31.367188 C 70.511719 30.09375 69.480469 29.0625 68.207031 29.0625 C 66.933594 29.0625 65.902344 30.09375 65.902344 31.367188 C 65.902344 32.640625 66.933594 33.671875 68.207031 33.671875 C 69.480469 33.671875 70.511719 32.640625 70.511719 31.367188 Z M 70.511719 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.324219 31.367188 C 85.324219 30.09375 84.292969 29.0625 83.019531 29.0625 C 81.746094 29.0625 80.714844 30.09375 80.714844 31.367188 C 80.714844 32.640625 81.746094 33.671875 83.019531 33.671875 C 84.292969 33.671875 85.324219 32.640625 85.324219 31.367188 Z M 85.324219 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 103.640625 31.367188 C 103.640625 30.09375 102.609375 29.0625 101.335938 29.0625 C 100.0625 29.0625 99.03125 30.09375 99.03125 31.367188 C 99.03125 32.640625 100.0625 33.671875 101.335938 33.671875 C 102.609375 33.671875 103.640625 32.640625 103.640625 31.367188 Z M 103.640625 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.660156 31.367188 C 85.660156 30.09375 84.628906 29.0625 83.355469 29.0625 C 82.082031 29.0625 81.050781 30.09375 81.050781 31.367188 C 81.050781 32.640625 82.082031 33.671875 83.355469 33.671875 C 84.628906 33.671875 85.660156 32.640625 85.660156 31.367188 Z M 85.660156 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.132812 31.367188 C 74.132812 30.09375 73.101562 29.0625 71.828125 29.0625 C 70.554688 29.0625 69.523438 30.09375 69.523438 31.367188 C 69.523438 32.640625 70.554688 33.671875 71.828125 33.671875 C 73.101562 33.671875 74.132812 32.640625 74.132812 31.367188 Z M 74.132812 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.386719 31.367188 C 93.386719 30.09375 92.355469 29.0625 91.082031 29.0625 C 89.808594 29.0625 88.777344 30.09375 88.777344 31.367188 C 88.777344 32.640625 89.808594 33.671875 91.082031 33.671875 C 92.355469 33.671875 93.386719 32.640625 93.386719 31.367188 Z M 93.386719 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.992188 31.367188 C 92.992188 30.09375 91.960938 29.0625 90.6875 29.0625 C 89.414062 29.0625 88.382812 30.09375 88.382812 31.367188 C 88.382812 32.640625 89.414062 33.671875 90.6875 33.671875 C 91.960938 33.671875 92.992188 32.640625 92.992188 31.367188 Z M 92.992188 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.265625 31.367188 C 69.265625 30.09375 68.234375 29.0625 66.960938 29.0625 C 65.6875 29.0625 64.65625 30.09375 64.65625 31.367188 C 64.65625 32.640625 65.6875 33.671875 66.960938 33.671875 C 68.234375 33.671875 69.265625 32.640625 69.265625 31.367188 Z M 69.265625 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.949219 31.367188 C 78.949219 30.09375 77.917969 29.0625 76.644531 29.0625 C 75.371094 29.0625 74.339844 30.09375 74.339844 31.367188 C 74.339844 32.640625 75.371094 33.671875 76.644531 33.671875 C 77.917969 33.671875 78.949219 32.640625 78.949219 31.367188 Z M 78.949219 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.21875 31.367188 C 94.21875 30.09375 93.1875 29.0625 91.914062 29.0625 C 90.640625 29.0625 89.609375 30.09375 89.609375 31.367188 C 89.609375 32.640625 90.640625 33.671875 91.914062 33.671875 C 93.1875 33.671875 94.21875 32.640625 94.21875 31.367188 Z M 94.21875 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.585938 31.367188 C 87.585938 30.09375 86.554688 29.0625 85.28125 29.0625 C 84.007812 29.0625 82.976562 30.09375 82.976562 31.367188 C 82.976562 32.640625 84.007812 33.671875 85.28125 33.671875 C 86.554688 33.671875 87.585938 32.640625 87.585938 31.367188 Z M 87.585938 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.714844 31.367188 C 80.714844 30.09375 79.683594 29.0625 78.410156 29.0625 C 77.136719 29.0625 76.105469 30.09375 76.105469 31.367188 C 76.105469 32.640625 77.136719 33.671875 78.410156 33.671875 C 79.683594 33.671875 80.714844 32.640625 80.714844 31.367188 Z M 80.714844 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 104.011719 31.367188 C 104.011719 30.09375 102.980469 29.0625 101.707031 29.0625 C 100.433594 29.0625 99.402344 30.09375 99.402344 31.367188 C 99.402344 32.640625 100.433594 33.671875 101.707031 33.671875 C 102.980469 33.671875 104.011719 32.640625 104.011719 31.367188 Z M 104.011719 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.554688 31.367188 C 84.554688 30.09375 83.523438 29.0625 82.25 29.0625 C 80.976562 29.0625 79.945312 30.09375 79.945312 31.367188 C 79.945312 32.640625 80.976562 33.671875 82.25 33.671875 C 83.523438 33.671875 84.554688 32.640625 84.554688 31.367188 Z M 84.554688 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.070312 31.367188 C 90.070312 30.09375 89.039062 29.0625 87.765625 29.0625 C 86.492188 29.0625 85.460938 30.09375 85.460938 31.367188 C 85.460938 32.640625 86.492188 33.671875 87.765625 33.671875 C 89.039062 33.671875 90.070312 32.640625 90.070312 31.367188 Z M 90.070312 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.992188 31.367188 C 99.992188 30.09375 98.960938 29.0625 97.6875 29.0625 C 96.414062 29.0625 95.382812 30.09375 95.382812 31.367188 C 95.382812 32.640625 96.414062 33.671875 97.6875 33.671875 C 98.960938 33.671875 99.992188 32.640625 99.992188 31.367188 Z M 99.992188 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.453125 31.367188 C 72.453125 30.09375 71.421875 29.0625 70.148438 29.0625 C 68.875 29.0625 67.84375 30.09375 67.84375 31.367188 C 67.84375 32.640625 68.875 33.671875 70.148438 33.671875 C 71.421875 33.671875 72.453125 32.640625 72.453125 31.367188 Z M 72.453125 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.804688 31.367188 C 79.804688 30.09375 78.773438 29.0625 77.5 29.0625 C 76.226562 29.0625 75.195312 30.09375 75.195312 31.367188 C 75.195312 32.640625 76.226562 33.671875 77.5 33.671875 C 78.773438 33.671875 79.804688 32.640625 79.804688 31.367188 Z M 79.804688 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 102.445312 31.367188 C 102.445312 30.09375 101.414062 29.0625 100.140625 29.0625 C 98.867188 29.0625 97.835938 30.09375 97.835938 31.367188 C 97.835938 32.640625 98.867188 33.671875 100.140625 33.671875 C 101.414062 33.671875 102.445312 32.640625 102.445312 31.367188 Z M 102.445312 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.863281 31.367188 C 96.863281 30.09375 95.832031 29.0625 94.558594 29.0625 C 93.285156 29.0625 92.253906 30.09375 92.253906 31.367188 C 92.253906 32.640625 93.285156 33.671875 94.558594 33.671875 C 95.832031 33.671875 96.863281 32.640625 96.863281 31.367188 Z M 96.863281 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85 31.367188 C 85 30.09375 83.96875 29.0625 82.695312 29.0625 C 81.421875 29.0625 80.390625 30.09375 80.390625 31.367188 C 80.390625 32.640625 81.421875 33.671875 82.695312 33.671875 C 83.96875 33.671875 85 32.640625 85 31.367188 Z M 85 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 103.914062 31.367188 C 103.914062 30.09375 102.882812 29.0625 101.609375 29.0625 C 100.335938 29.0625 99.304688 30.09375 99.304688 31.367188 C 99.304688 32.640625 100.335938 33.671875 101.609375 33.671875 C 102.882812 33.671875 103.914062 32.640625 103.914062 31.367188 Z M 103.914062 31.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.03125 26.523438 C 72.03125 25.25 71 24.21875 69.726562 24.21875 C 68.453125 24.21875 67.421875 25.25 67.421875 26.523438 C 67.421875 27.796875 68.453125 28.828125 69.726562 28.828125 C 71 28.828125 72.03125 27.796875 72.03125 26.523438 Z M 72.03125 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 101.488281 26.523438 C 101.488281 25.25 100.457031 24.21875 99.183594 24.21875 C 97.910156 24.21875 96.878906 25.25 96.878906 26.523438 C 96.878906 27.796875 97.910156 28.828125 99.183594 28.828125 C 100.457031 28.828125 101.488281 27.796875 101.488281 26.523438 Z M 101.488281 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.496094 26.523438 C 83.496094 25.25 82.464844 24.21875 81.191406 24.21875 C 79.917969 24.21875 78.886719 25.25 78.886719 26.523438 C 78.886719 27.796875 79.917969 28.828125 81.191406 28.828125 C 82.464844 28.828125 83.496094 27.796875 83.496094 26.523438 Z M 83.496094 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.777344 26.523438 C 99.777344 25.25 98.746094 24.21875 97.472656 24.21875 C 96.199219 24.21875 95.167969 25.25 95.167969 26.523438 C 95.167969 27.796875 96.199219 28.828125 97.472656 28.828125 C 98.746094 28.828125 99.777344 27.796875 99.777344 26.523438 Z M 99.777344 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.550781 26.523438 C 94.550781 25.25 93.519531 24.21875 92.246094 24.21875 C 90.972656 24.21875 89.941406 25.25 89.941406 26.523438 C 89.941406 27.796875 90.972656 28.828125 92.246094 28.828125 C 93.519531 28.828125 94.550781 27.796875 94.550781 26.523438 Z M 94.550781 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.09375 26.523438 C 87.09375 25.25 86.0625 24.21875 84.789062 24.21875 C 83.515625 24.21875 82.484375 25.25 82.484375 26.523438 C 82.484375 27.796875 83.515625 28.828125 84.789062 28.828125 C 86.0625 28.828125 87.09375 27.796875 87.09375 26.523438 Z M 87.09375 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.058594 26.523438 C 83.058594 25.25 82.027344 24.21875 80.753906 24.21875 C 79.480469 24.21875 78.449219 25.25 78.449219 26.523438 C 78.449219 27.796875 79.480469 28.828125 80.753906 28.828125 C 82.027344 28.828125 83.058594 27.796875 83.058594 26.523438 Z M 83.058594 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.488281 26.523438 C 96.488281 25.25 95.457031 24.21875 94.183594 24.21875 C 92.910156 24.21875 91.878906 25.25 91.878906 26.523438 C 91.878906 27.796875 92.910156 28.828125 94.183594 28.828125 C 95.457031 28.828125 96.488281 27.796875 96.488281 26.523438 Z M 96.488281 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.738281 26.523438 C 68.738281 25.25 67.707031 24.21875 66.433594 24.21875 C 65.160156 24.21875 64.128906 25.25 64.128906 26.523438 C 64.128906 27.796875 65.160156 28.828125 66.433594 28.828125 C 67.707031 28.828125 68.738281 27.796875 68.738281 26.523438 Z M 68.738281 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.484375 26.523438 C 84.484375 25.25 83.453125 24.21875 82.179688 24.21875 C 80.90625 24.21875 79.875 25.25 79.875 26.523438 C 79.875 27.796875 80.90625 28.828125 82.179688 28.828125 C 83.453125 28.828125 84.484375 27.796875 84.484375 26.523438 Z M 84.484375 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 103.964844 26.523438 C 103.964844 25.25 102.933594 24.21875 101.660156 24.21875 C 100.386719 24.21875 99.355469 25.25 99.355469 26.523438 C 99.355469 27.796875 100.386719 28.828125 101.660156 28.828125 C 102.933594 28.828125 103.964844 27.796875 103.964844 26.523438 Z M 103.964844 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.84375 26.523438 C 84.84375 25.25 83.8125 24.21875 82.539062 24.21875 C 81.265625 24.21875 80.234375 25.25 80.234375 26.523438 C 80.234375 27.796875 81.265625 28.828125 82.539062 28.828125 C 83.8125 28.828125 84.84375 27.796875 84.84375 26.523438 Z M 84.84375 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.585938 26.523438 C 72.585938 25.25 71.554688 24.21875 70.28125 24.21875 C 69.007812 24.21875 67.976562 25.25 67.976562 26.523438 C 67.976562 27.796875 69.007812 28.828125 70.28125 28.828125 C 71.554688 28.828125 72.585938 27.796875 72.585938 26.523438 Z M 72.585938 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.058594 26.523438 C 93.058594 25.25 92.027344 24.21875 90.753906 24.21875 C 89.480469 24.21875 88.449219 25.25 88.449219 26.523438 C 88.449219 27.796875 89.480469 28.828125 90.753906 28.828125 C 92.027344 28.828125 93.058594 27.796875 93.058594 26.523438 Z M 93.058594 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.640625 26.523438 C 92.640625 25.25 91.609375 24.21875 90.335938 24.21875 C 89.0625 24.21875 88.03125 25.25 88.03125 26.523438 C 88.03125 27.796875 89.0625 28.828125 90.335938 28.828125 C 91.609375 28.828125 92.640625 27.796875 92.640625 26.523438 Z M 92.640625 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.410156 26.523438 C 67.410156 25.25 66.378906 24.21875 65.105469 24.21875 C 63.832031 24.21875 62.800781 25.25 62.800781 26.523438 C 62.800781 27.796875 63.832031 28.828125 65.105469 28.828125 C 66.378906 28.828125 67.410156 27.796875 67.410156 26.523438 Z M 67.410156 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.710938 26.523438 C 77.710938 25.25 76.679688 24.21875 75.40625 24.21875 C 74.132812 24.21875 73.101562 25.25 73.101562 26.523438 C 73.101562 27.796875 74.132812 28.828125 75.40625 28.828125 C 76.679688 28.828125 77.710938 27.796875 77.710938 26.523438 Z M 77.710938 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.945312 26.523438 C 93.945312 25.25 92.914062 24.21875 91.640625 24.21875 C 90.367188 24.21875 89.335938 25.25 89.335938 26.523438 C 89.335938 27.796875 90.367188 28.828125 91.640625 28.828125 C 92.914062 28.828125 93.945312 27.796875 93.945312 26.523438 Z M 93.945312 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.890625 26.523438 C 86.890625 25.25 85.859375 24.21875 84.585938 24.21875 C 83.3125 24.21875 82.28125 25.25 82.28125 26.523438 C 82.28125 27.796875 83.3125 28.828125 84.585938 28.828125 C 85.859375 28.828125 86.890625 27.796875 86.890625 26.523438 Z M 86.890625 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.582031 26.523438 C 79.582031 25.25 78.550781 24.21875 77.277344 24.21875 C 76.003906 24.21875 74.972656 25.25 74.972656 26.523438 C 74.972656 27.796875 76.003906 28.828125 77.277344 28.828125 C 78.550781 28.828125 79.582031 27.796875 79.582031 26.523438 Z M 79.582031 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 104.355469 26.523438 C 104.355469 25.25 103.324219 24.21875 102.050781 24.21875 C 100.777344 24.21875 99.746094 25.25 99.746094 26.523438 C 99.746094 27.796875 100.777344 28.828125 102.050781 28.828125 C 103.324219 28.828125 104.355469 27.796875 104.355469 26.523438 Z M 104.355469 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.667969 26.523438 C 83.667969 25.25 82.636719 24.21875 81.363281 24.21875 C 80.089844 24.21875 79.058594 25.25 79.058594 26.523438 C 79.058594 27.796875 80.089844 28.828125 81.363281 28.828125 C 82.636719 28.828125 83.667969 27.796875 83.667969 26.523438 Z M 83.667969 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 89.53125 26.523438 C 89.53125 25.25 88.5 24.21875 87.226562 24.21875 C 85.953125 24.21875 84.921875 25.25 84.921875 26.523438 C 84.921875 27.796875 85.953125 28.828125 87.226562 28.828125 C 88.5 28.828125 89.53125 27.796875 89.53125 26.523438 Z M 89.53125 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.082031 26.523438 C 100.082031 25.25 99.050781 24.21875 97.777344 24.21875 C 96.503906 24.21875 95.472656 25.25 95.472656 26.523438 C 95.472656 27.796875 96.503906 28.828125 97.777344 28.828125 C 99.050781 28.828125 100.082031 27.796875 100.082031 26.523438 Z M 100.082031 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.800781 26.523438 C 70.800781 25.25 69.769531 24.21875 68.496094 24.21875 C 67.222656 24.21875 66.191406 25.25 66.191406 26.523438 C 66.191406 27.796875 67.222656 28.828125 68.496094 28.828125 C 69.769531 28.828125 70.800781 27.796875 70.800781 26.523438 Z M 70.800781 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.617188 26.523438 C 78.617188 25.25 77.585938 24.21875 76.3125 24.21875 C 75.039062 24.21875 74.007812 25.25 74.007812 26.523438 C 74.007812 27.796875 75.039062 28.828125 76.3125 28.828125 C 77.585938 28.828125 78.617188 27.796875 78.617188 26.523438 Z M 78.617188 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 102.691406 26.523438 C 102.691406 25.25 101.660156 24.21875 100.386719 24.21875 C 99.113281 24.21875 98.082031 25.25 98.082031 26.523438 C 98.082031 27.796875 99.113281 28.828125 100.386719 28.828125 C 101.660156 28.828125 102.691406 27.796875 102.691406 26.523438 Z M 102.691406 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.753906 26.523438 C 96.753906 25.25 95.722656 24.21875 94.449219 24.21875 C 93.175781 24.21875 92.144531 25.25 92.144531 26.523438 C 92.144531 27.796875 93.175781 28.828125 94.449219 28.828125 C 95.722656 28.828125 96.753906 27.796875 96.753906 26.523438 Z M 96.753906 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.140625 26.523438 C 84.140625 25.25 83.109375 24.21875 81.835938 24.21875 C 80.5625 24.21875 79.53125 25.25 79.53125 26.523438 C 79.53125 27.796875 80.5625 28.828125 81.835938 28.828125 C 83.109375 28.828125 84.140625 27.796875 84.140625 26.523438 Z M 84.140625 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 104.25 26.523438 C 104.25 25.25 103.21875 24.21875 101.945312 24.21875 C 100.671875 24.21875 99.640625 25.25 99.640625 26.523438 C 99.640625 27.796875 100.671875 28.828125 101.945312 28.828125 C 103.21875 28.828125 104.25 27.796875 104.25 26.523438 Z M 104.25 26.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.273438 21.679688 C 70.273438 20.40625 69.242188 19.375 67.96875 19.375 C 66.695312 19.375 65.664062 20.40625 65.664062 21.679688 C 65.664062 22.953125 66.695312 23.984375 67.96875 23.984375 C 69.242188 23.984375 70.273438 22.953125 70.273438 21.679688 Z M 70.273438 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 101.195312 21.679688 C 101.195312 20.40625 100.164062 19.375 98.890625 19.375 C 97.617188 19.375 96.585938 20.40625 96.585938 21.679688 C 96.585938 22.953125 97.617188 23.984375 98.890625 23.984375 C 100.164062 23.984375 101.195312 22.953125 101.195312 21.679688 Z M 101.195312 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.3125 21.679688 C 82.3125 20.40625 81.28125 19.375 80.007812 19.375 C 78.734375 19.375 77.703125 20.40625 77.703125 21.679688 C 77.703125 22.953125 78.734375 23.984375 80.007812 23.984375 C 81.28125 23.984375 82.3125 22.953125 82.3125 21.679688 Z M 82.3125 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.394531 21.679688 C 99.394531 20.40625 98.363281 19.375 97.089844 19.375 C 95.816406 19.375 94.785156 20.40625 94.785156 21.679688 C 94.785156 22.953125 95.816406 23.984375 97.089844 23.984375 C 98.363281 23.984375 99.394531 22.953125 99.394531 21.679688 Z M 99.394531 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.914062 21.679688 C 93.914062 20.40625 92.882812 19.375 91.609375 19.375 C 90.335938 19.375 89.304688 20.40625 89.304688 21.679688 C 89.304688 22.953125 90.335938 23.984375 91.609375 23.984375 C 92.882812 23.984375 93.914062 22.953125 93.914062 21.679688 Z M 93.914062 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.085938 21.679688 C 86.085938 20.40625 85.054688 19.375 83.78125 19.375 C 82.507812 19.375 81.476562 20.40625 81.476562 21.679688 C 81.476562 22.953125 82.507812 23.984375 83.78125 23.984375 C 85.054688 23.984375 86.085938 22.953125 86.085938 21.679688 Z M 86.085938 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.851562 21.679688 C 81.851562 20.40625 80.820312 19.375 79.546875 19.375 C 78.273438 19.375 77.242188 20.40625 77.242188 21.679688 C 77.242188 22.953125 78.273438 23.984375 79.546875 23.984375 C 80.820312 23.984375 81.851562 22.953125 81.851562 21.679688 Z M 81.851562 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 95.945312 21.679688 C 95.945312 20.40625 94.914062 19.375 93.640625 19.375 C 92.367188 19.375 91.335938 20.40625 91.335938 21.679688 C 91.335938 22.953125 92.367188 23.984375 93.640625 23.984375 C 94.914062 23.984375 95.945312 22.953125 95.945312 21.679688 Z M 95.945312 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.820312 21.679688 C 66.820312 20.40625 65.789062 19.375 64.515625 19.375 C 63.242188 19.375 62.210938 20.40625 62.210938 21.679688 C 62.210938 22.953125 63.242188 23.984375 64.515625 23.984375 C 65.789062 23.984375 66.820312 22.953125 66.820312 21.679688 Z M 66.820312 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.347656 21.679688 C 83.347656 20.40625 82.316406 19.375 81.042969 19.375 C 79.769531 19.375 78.738281 20.40625 78.738281 21.679688 C 78.738281 22.953125 79.769531 23.984375 81.042969 23.984375 C 82.316406 23.984375 83.347656 22.953125 83.347656 21.679688 Z M 83.347656 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 103.789062 21.679688 C 103.789062 20.40625 102.757812 19.375 101.484375 19.375 C 100.210938 19.375 99.179688 20.40625 99.179688 21.679688 C 99.179688 22.953125 100.210938 23.984375 101.484375 23.984375 C 102.757812 23.984375 103.789062 22.953125 103.789062 21.679688 Z M 103.789062 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.726562 21.679688 C 83.726562 20.40625 82.695312 19.375 81.421875 19.375 C 80.148438 19.375 79.117188 20.40625 79.117188 21.679688 C 79.117188 22.953125 80.148438 23.984375 81.421875 23.984375 C 82.695312 23.984375 83.726562 22.953125 83.726562 21.679688 Z M 83.726562 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.859375 21.679688 C 70.859375 20.40625 69.828125 19.375 68.554688 19.375 C 67.28125 19.375 66.25 20.40625 66.25 21.679688 C 66.25 22.953125 67.28125 23.984375 68.554688 23.984375 C 69.828125 23.984375 70.859375 22.953125 70.859375 21.679688 Z M 70.859375 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.347656 21.679688 C 92.347656 20.40625 91.316406 19.375 90.042969 19.375 C 88.769531 19.375 87.738281 20.40625 87.738281 21.679688 C 87.738281 22.953125 88.769531 23.984375 90.042969 23.984375 C 91.316406 23.984375 92.347656 22.953125 92.347656 21.679688 Z M 92.347656 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.90625 21.679688 C 91.90625 20.40625 90.875 19.375 89.601562 19.375 C 88.328125 19.375 87.296875 20.40625 87.296875 21.679688 C 87.296875 22.953125 88.328125 23.984375 89.601562 23.984375 C 90.875 23.984375 91.90625 22.953125 91.90625 21.679688 Z M 91.90625 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.425781 21.679688 C 65.425781 20.40625 64.394531 19.375 63.121094 19.375 C 61.847656 19.375 60.816406 20.40625 60.816406 21.679688 C 60.816406 22.953125 61.847656 23.984375 63.121094 23.984375 C 64.394531 23.984375 65.425781 22.953125 65.425781 21.679688 Z M 65.425781 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.234375 21.679688 C 76.234375 20.40625 75.203125 19.375 73.929688 19.375 C 72.65625 19.375 71.625 20.40625 71.625 21.679688 C 71.625 22.953125 72.65625 23.984375 73.929688 23.984375 C 75.203125 23.984375 76.234375 22.953125 76.234375 21.679688 Z M 76.234375 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.277344 21.679688 C 93.277344 20.40625 92.246094 19.375 90.972656 19.375 C 89.699219 19.375 88.667969 20.40625 88.667969 21.679688 C 88.667969 22.953125 89.699219 23.984375 90.972656 23.984375 C 92.246094 23.984375 93.277344 22.953125 93.277344 21.679688 Z M 93.277344 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.871094 21.679688 C 85.871094 20.40625 84.839844 19.375 83.566406 19.375 C 82.292969 19.375 81.261719 20.40625 81.261719 21.679688 C 81.261719 22.953125 82.292969 23.984375 83.566406 23.984375 C 84.839844 23.984375 85.871094 22.953125 85.871094 21.679688 Z M 85.871094 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.203125 21.679688 C 78.203125 20.40625 77.171875 19.375 75.898438 19.375 C 74.625 19.375 73.59375 20.40625 73.59375 21.679688 C 73.59375 22.953125 74.625 23.984375 75.898438 23.984375 C 77.171875 23.984375 78.203125 22.953125 78.203125 21.679688 Z M 78.203125 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 104.203125 21.679688 C 104.203125 20.40625 103.171875 19.375 101.898438 19.375 C 100.625 19.375 99.59375 20.40625 99.59375 21.679688 C 99.59375 22.953125 100.625 23.984375 101.898438 23.984375 C 103.171875 23.984375 104.203125 22.953125 104.203125 21.679688 Z M 104.203125 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.492188 21.679688 C 82.492188 20.40625 81.460938 19.375 80.1875 19.375 C 78.914062 19.375 77.882812 20.40625 77.882812 21.679688 C 77.882812 22.953125 78.914062 23.984375 80.1875 23.984375 C 81.460938 23.984375 82.492188 22.953125 82.492188 21.679688 Z M 82.492188 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.644531 21.679688 C 88.644531 20.40625 87.613281 19.375 86.339844 19.375 C 85.066406 19.375 84.035156 20.40625 84.035156 21.679688 C 84.035156 22.953125 85.066406 23.984375 86.339844 23.984375 C 87.613281 23.984375 88.644531 22.953125 88.644531 21.679688 Z M 88.644531 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.71875 21.679688 C 99.71875 20.40625 98.6875 19.375 97.414062 19.375 C 96.140625 19.375 95.109375 20.40625 95.109375 21.679688 C 95.109375 22.953125 96.140625 23.984375 97.414062 23.984375 C 98.6875 23.984375 99.71875 22.953125 99.71875 21.679688 Z M 99.71875 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.984375 21.679688 C 68.984375 20.40625 67.953125 19.375 66.679688 19.375 C 65.40625 19.375 64.375 20.40625 64.375 21.679688 C 64.375 22.953125 65.40625 23.984375 66.679688 23.984375 C 67.953125 23.984375 68.984375 22.953125 68.984375 21.679688 Z M 68.984375 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.1875 21.679688 C 77.1875 20.40625 76.15625 19.375 74.882812 19.375 C 73.609375 19.375 72.578125 20.40625 72.578125 21.679688 C 72.578125 22.953125 73.609375 23.984375 74.882812 23.984375 C 76.15625 23.984375 77.1875 22.953125 77.1875 21.679688 Z M 77.1875 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 102.453125 21.679688 C 102.453125 20.40625 101.421875 19.375 100.148438 19.375 C 98.875 19.375 97.84375 20.40625 97.84375 21.679688 C 97.84375 22.953125 98.875 23.984375 100.148438 23.984375 C 101.421875 23.984375 102.453125 22.953125 102.453125 21.679688 Z M 102.453125 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.222656 21.679688 C 96.222656 20.40625 95.191406 19.375 93.917969 19.375 C 92.644531 19.375 91.613281 20.40625 91.613281 21.679688 C 91.613281 22.953125 92.644531 23.984375 93.917969 23.984375 C 95.191406 23.984375 96.222656 22.953125 96.222656 21.679688 Z M 96.222656 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.988281 21.679688 C 82.988281 20.40625 81.957031 19.375 80.683594 19.375 C 79.410156 19.375 78.378906 20.40625 78.378906 21.679688 C 78.378906 22.953125 79.410156 23.984375 80.683594 23.984375 C 81.957031 23.984375 82.988281 22.953125 82.988281 21.679688 Z M 82.988281 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 104.09375 21.679688 C 104.09375 20.40625 103.0625 19.375 101.789062 19.375 C 100.515625 19.375 99.484375 20.40625 99.484375 21.679688 C 99.484375 22.953125 100.515625 23.984375 101.789062 23.984375 C 103.0625 23.984375 104.09375 22.953125 104.09375 21.679688 Z M 104.09375 21.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.363281 16.835938 C 68.363281 15.5625 67.332031 14.53125 66.058594 14.53125 C 64.785156 14.53125 63.753906 15.5625 63.753906 16.835938 C 63.753906 18.109375 64.785156 19.140625 66.058594 19.140625 C 67.332031 19.140625 68.363281 18.109375 68.363281 16.835938 Z M 68.363281 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.433594 16.835938 C 100.433594 15.5625 99.402344 14.53125 98.128906 14.53125 C 96.855469 14.53125 95.824219 15.5625 95.824219 16.835938 C 95.824219 18.109375 96.855469 19.140625 98.128906 19.140625 C 99.402344 19.140625 100.433594 18.109375 100.433594 16.835938 Z M 100.433594 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.847656 16.835938 C 80.847656 15.5625 79.816406 14.53125 78.542969 14.53125 C 77.269531 14.53125 76.238281 15.5625 76.238281 16.835938 C 76.238281 18.109375 77.269531 19.140625 78.542969 19.140625 C 79.816406 19.140625 80.847656 18.109375 80.847656 16.835938 Z M 80.847656 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 98.566406 16.835938 C 98.566406 15.5625 97.535156 14.53125 96.261719 14.53125 C 94.988281 14.53125 93.957031 15.5625 93.957031 16.835938 C 93.957031 18.109375 94.988281 19.140625 96.261719 19.140625 C 97.535156 19.140625 98.566406 18.109375 98.566406 16.835938 Z M 98.566406 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.878906 16.835938 C 92.878906 15.5625 91.847656 14.53125 90.574219 14.53125 C 89.300781 14.53125 88.269531 15.5625 88.269531 16.835938 C 88.269531 18.109375 89.300781 19.140625 90.574219 19.140625 C 91.847656 19.140625 92.878906 18.109375 92.878906 16.835938 Z M 92.878906 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.761719 16.835938 C 84.761719 15.5625 83.730469 14.53125 82.457031 14.53125 C 81.183594 14.53125 80.152344 15.5625 80.152344 16.835938 C 80.152344 18.109375 81.183594 19.140625 82.457031 19.140625 C 83.730469 19.140625 84.761719 18.109375 84.761719 16.835938 Z M 84.761719 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.371094 16.835938 C 80.371094 15.5625 79.339844 14.53125 78.066406 14.53125 C 76.792969 14.53125 75.761719 15.5625 75.761719 16.835938 C 75.761719 18.109375 76.792969 19.140625 78.066406 19.140625 C 79.339844 19.140625 80.371094 18.109375 80.371094 16.835938 Z M 80.371094 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.988281 16.835938 C 94.988281 15.5625 93.957031 14.53125 92.683594 14.53125 C 91.410156 14.53125 90.378906 15.5625 90.378906 16.835938 C 90.378906 18.109375 91.410156 19.140625 92.683594 19.140625 C 93.957031 19.140625 94.988281 18.109375 94.988281 16.835938 Z M 94.988281 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.777344 16.835938 C 64.777344 15.5625 63.746094 14.53125 62.472656 14.53125 C 61.199219 14.53125 60.167969 15.5625 60.167969 16.835938 C 60.167969 18.109375 61.199219 19.140625 62.472656 19.140625 C 63.746094 19.140625 64.777344 18.109375 64.777344 16.835938 Z M 64.777344 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.921875 16.835938 C 81.921875 15.5625 80.890625 14.53125 79.617188 14.53125 C 78.34375 14.53125 77.3125 15.5625 77.3125 16.835938 C 77.3125 18.109375 78.34375 19.140625 79.617188 19.140625 C 80.890625 19.140625 81.921875 18.109375 81.921875 16.835938 Z M 81.921875 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 103.125 16.835938 C 103.125 15.5625 102.09375 14.53125 100.820312 14.53125 C 99.546875 14.53125 98.515625 15.5625 98.515625 16.835938 C 98.515625 18.109375 99.546875 19.140625 100.820312 19.140625 C 102.09375 19.140625 103.125 18.109375 103.125 16.835938 Z M 103.125 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.3125 16.835938 C 82.3125 15.5625 81.28125 14.53125 80.007812 14.53125 C 78.734375 14.53125 77.703125 15.5625 77.703125 16.835938 C 77.703125 18.109375 78.734375 19.140625 80.007812 19.140625 C 81.28125 19.140625 82.3125 18.109375 82.3125 16.835938 Z M 82.3125 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.96875 16.835938 C 68.96875 15.5625 67.9375 14.53125 66.664062 14.53125 C 65.390625 14.53125 64.359375 15.5625 64.359375 16.835938 C 64.359375 18.109375 65.390625 19.140625 66.664062 19.140625 C 67.9375 19.140625 68.96875 18.109375 68.96875 16.835938 Z M 68.96875 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.253906 16.835938 C 91.253906 15.5625 90.222656 14.53125 88.949219 14.53125 C 87.675781 14.53125 86.644531 15.5625 86.644531 16.835938 C 86.644531 18.109375 87.675781 19.140625 88.949219 19.140625 C 90.222656 19.140625 91.253906 18.109375 91.253906 16.835938 Z M 91.253906 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.796875 16.835938 C 90.796875 15.5625 89.765625 14.53125 88.492188 14.53125 C 87.21875 14.53125 86.1875 15.5625 86.1875 16.835938 C 86.1875 18.109375 87.21875 19.140625 88.492188 19.140625 C 89.765625 19.140625 90.796875 18.109375 90.796875 16.835938 Z M 90.796875 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 63.335938 16.835938 C 63.335938 15.5625 62.304688 14.53125 61.03125 14.53125 C 59.757812 14.53125 58.726562 15.5625 58.726562 16.835938 C 58.726562 18.109375 59.757812 19.140625 61.03125 19.140625 C 62.304688 19.140625 63.335938 18.109375 63.335938 16.835938 Z M 63.335938 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.542969 16.835938 C 74.542969 15.5625 73.511719 14.53125 72.238281 14.53125 C 70.964844 14.53125 69.933594 15.5625 69.933594 16.835938 C 69.933594 18.109375 70.964844 19.140625 72.238281 19.140625 C 73.511719 19.140625 74.542969 18.109375 74.542969 16.835938 Z M 74.542969 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.21875 16.835938 C 92.21875 15.5625 91.1875 14.53125 89.914062 14.53125 C 88.640625 14.53125 87.609375 15.5625 87.609375 16.835938 C 87.609375 18.109375 88.640625 19.140625 89.914062 19.140625 C 91.1875 19.140625 92.21875 18.109375 92.21875 16.835938 Z M 92.21875 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.539062 16.835938 C 84.539062 15.5625 83.507812 14.53125 82.234375 14.53125 C 80.960938 14.53125 79.929688 15.5625 79.929688 16.835938 C 79.929688 18.109375 80.960938 19.140625 82.234375 19.140625 C 83.507812 19.140625 84.539062 18.109375 84.539062 16.835938 Z M 84.539062 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.585938 16.835938 C 76.585938 15.5625 75.554688 14.53125 74.28125 14.53125 C 73.007812 14.53125 71.976562 15.5625 71.976562 16.835938 C 71.976562 18.109375 73.007812 19.140625 74.28125 19.140625 C 75.554688 19.140625 76.585938 18.109375 76.585938 16.835938 Z M 76.585938 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 103.554688 16.835938 C 103.554688 15.5625 102.523438 14.53125 101.25 14.53125 C 99.976562 14.53125 98.945312 15.5625 98.945312 16.835938 C 98.945312 18.109375 99.976562 19.140625 101.25 19.140625 C 102.523438 19.140625 103.554688 18.109375 103.554688 16.835938 Z M 103.554688 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.03125 16.835938 C 81.03125 15.5625 80 14.53125 78.726562 14.53125 C 77.453125 14.53125 76.421875 15.5625 76.421875 16.835938 C 76.421875 18.109375 77.453125 19.140625 78.726562 19.140625 C 80 19.140625 81.03125 18.109375 81.03125 16.835938 Z M 81.03125 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.414062 16.835938 C 87.414062 15.5625 86.382812 14.53125 85.109375 14.53125 C 83.835938 14.53125 82.804688 15.5625 82.804688 16.835938 C 82.804688 18.109375 83.835938 19.140625 85.109375 19.140625 C 86.382812 19.140625 87.414062 18.109375 87.414062 16.835938 Z M 87.414062 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 98.902344 16.835938 C 98.902344 15.5625 97.871094 14.53125 96.597656 14.53125 C 95.324219 14.53125 94.292969 15.5625 94.292969 16.835938 C 94.292969 18.109375 95.324219 19.140625 96.597656 19.140625 C 97.871094 19.140625 98.902344 18.109375 98.902344 16.835938 Z M 98.902344 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 67.027344 16.835938 C 67.027344 15.5625 65.996094 14.53125 64.722656 14.53125 C 63.449219 14.53125 62.417969 15.5625 62.417969 16.835938 C 62.417969 18.109375 63.449219 19.140625 64.722656 19.140625 C 65.996094 19.140625 67.027344 18.109375 67.027344 16.835938 Z M 67.027344 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.53125 16.835938 C 75.53125 15.5625 74.5 14.53125 73.226562 14.53125 C 71.953125 14.53125 70.921875 15.5625 70.921875 16.835938 C 70.921875 18.109375 71.953125 19.140625 73.226562 19.140625 C 74.5 19.140625 75.53125 18.109375 75.53125 16.835938 Z M 75.53125 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 101.738281 16.835938 C 101.738281 15.5625 100.707031 14.53125 99.433594 14.53125 C 98.160156 14.53125 97.128906 15.5625 97.128906 16.835938 C 97.128906 18.109375 98.160156 19.140625 99.433594 19.140625 C 100.707031 19.140625 101.738281 18.109375 101.738281 16.835938 Z M 101.738281 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 95.277344 16.835938 C 95.277344 15.5625 94.246094 14.53125 92.972656 14.53125 C 91.699219 14.53125 90.667969 15.5625 90.667969 16.835938 C 90.667969 18.109375 91.699219 19.140625 92.972656 19.140625 C 94.246094 19.140625 95.277344 18.109375 95.277344 16.835938 Z M 95.277344 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.546875 16.835938 C 81.546875 15.5625 80.515625 14.53125 79.242188 14.53125 C 77.96875 14.53125 76.9375 15.5625 76.9375 16.835938 C 76.9375 18.109375 77.96875 19.140625 79.242188 19.140625 C 80.515625 19.140625 81.546875 18.109375 81.546875 16.835938 Z M 81.546875 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 103.4375 16.835938 C 103.4375 15.5625 102.40625 14.53125 101.132812 14.53125 C 99.859375 14.53125 98.828125 15.5625 98.828125 16.835938 C 98.828125 18.109375 99.859375 19.140625 101.132812 19.140625 C 102.40625 19.140625 103.4375 18.109375 103.4375 16.835938 Z M 103.4375 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.3125 11.992188 C 66.3125 10.71875 65.28125 9.6875 64.007812 9.6875 C 62.734375 9.6875 61.703125 10.71875 61.703125 11.992188 C 61.703125 13.265625 62.734375 14.296875 64.007812 14.296875 C 65.28125 14.296875 66.3125 13.265625 66.3125 11.992188 Z M 66.3125 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.210938 11.992188 C 99.210938 10.71875 98.179688 9.6875 96.90625 9.6875 C 95.632812 9.6875 94.601562 10.71875 94.601562 11.992188 C 94.601562 13.265625 95.632812 14.296875 96.90625 14.296875 C 98.179688 14.296875 99.210938 13.265625 99.210938 11.992188 Z M 99.210938 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.117188 11.992188 C 79.117188 10.71875 78.085938 9.6875 76.8125 9.6875 C 75.539062 9.6875 74.507812 10.71875 74.507812 11.992188 C 74.507812 13.265625 75.539062 14.296875 76.8125 14.296875 C 78.085938 14.296875 79.117188 13.265625 79.117188 11.992188 Z M 79.117188 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 97.296875 11.992188 C 97.296875 10.71875 96.265625 9.6875 94.992188 9.6875 C 93.71875 9.6875 92.6875 10.71875 92.6875 11.992188 C 92.6875 13.265625 93.71875 14.296875 94.992188 14.296875 C 96.265625 14.296875 97.296875 13.265625 97.296875 11.992188 Z M 97.296875 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.464844 11.992188 C 91.464844 10.71875 90.433594 9.6875 89.160156 9.6875 C 87.886719 9.6875 86.855469 10.71875 86.855469 11.992188 C 86.855469 13.265625 87.886719 14.296875 89.160156 14.296875 C 90.433594 14.296875 91.464844 13.265625 91.464844 11.992188 Z M 91.464844 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.132812 11.992188 C 83.132812 10.71875 82.101562 9.6875 80.828125 9.6875 C 79.554688 9.6875 78.523438 10.71875 78.523438 11.992188 C 78.523438 13.265625 79.554688 14.296875 80.828125 14.296875 C 82.101562 14.296875 83.132812 13.265625 83.132812 11.992188 Z M 83.132812 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.628906 11.992188 C 78.628906 10.71875 77.597656 9.6875 76.324219 9.6875 C 75.050781 9.6875 74.019531 10.71875 74.019531 11.992188 C 74.019531 13.265625 75.050781 14.296875 76.324219 14.296875 C 77.597656 14.296875 78.628906 13.265625 78.628906 11.992188 Z M 78.628906 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.625 11.992188 C 93.625 10.71875 92.59375 9.6875 91.320312 9.6875 C 90.046875 9.6875 89.015625 10.71875 89.015625 11.992188 C 89.015625 13.265625 90.046875 14.296875 91.320312 14.296875 C 92.59375 14.296875 93.625 13.265625 93.625 11.992188 Z M 93.625 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.636719 11.992188 C 62.636719 10.71875 61.605469 9.6875 60.332031 9.6875 C 59.058594 9.6875 58.027344 10.71875 58.027344 11.992188 C 58.027344 13.265625 59.058594 14.296875 60.332031 14.296875 C 61.605469 14.296875 62.636719 13.265625 62.636719 11.992188 Z M 62.636719 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.222656 11.992188 C 80.222656 10.71875 79.191406 9.6875 77.917969 9.6875 C 76.644531 9.6875 75.613281 10.71875 75.613281 11.992188 C 75.613281 13.265625 76.644531 14.296875 77.917969 14.296875 C 79.191406 14.296875 80.222656 13.265625 80.222656 11.992188 Z M 80.222656 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 101.972656 11.992188 C 101.972656 10.71875 100.941406 9.6875 99.667969 9.6875 C 98.394531 9.6875 97.363281 10.71875 97.363281 11.992188 C 97.363281 13.265625 98.394531 14.296875 99.667969 14.296875 C 100.941406 14.296875 101.972656 13.265625 101.972656 11.992188 Z M 101.972656 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.625 11.992188 C 80.625 10.71875 79.59375 9.6875 78.320312 9.6875 C 77.046875 9.6875 76.015625 10.71875 76.015625 11.992188 C 76.015625 13.265625 77.046875 14.296875 78.320312 14.296875 C 79.59375 14.296875 80.625 13.265625 80.625 11.992188 Z M 80.625 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.933594 11.992188 C 66.933594 10.71875 65.902344 9.6875 64.628906 9.6875 C 63.355469 9.6875 62.324219 10.71875 62.324219 11.992188 C 62.324219 13.265625 63.355469 14.296875 64.628906 14.296875 C 65.902344 14.296875 66.933594 13.265625 66.933594 11.992188 Z M 66.933594 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 89.796875 11.992188 C 89.796875 10.71875 88.765625 9.6875 87.492188 9.6875 C 86.21875 9.6875 85.1875 10.71875 85.1875 11.992188 C 85.1875 13.265625 86.21875 14.296875 87.492188 14.296875 C 88.765625 14.296875 89.796875 13.265625 89.796875 11.992188 Z M 89.796875 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 89.328125 11.992188 C 89.328125 10.71875 88.296875 9.6875 87.023438 9.6875 C 85.75 9.6875 84.71875 10.71875 84.71875 11.992188 C 84.71875 13.265625 85.75 14.296875 87.023438 14.296875 C 88.296875 14.296875 89.328125 13.265625 89.328125 11.992188 Z M 89.328125 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.152344 11.992188 C 61.152344 10.71875 60.121094 9.6875 58.847656 9.6875 C 57.574219 9.6875 56.542969 10.71875 56.542969 11.992188 C 56.542969 13.265625 57.574219 14.296875 58.847656 14.296875 C 60.121094 14.296875 61.152344 13.265625 61.152344 11.992188 Z M 61.152344 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.652344 11.992188 C 72.652344 10.71875 71.621094 9.6875 70.347656 9.6875 C 69.074219 9.6875 68.042969 10.71875 68.042969 11.992188 C 68.042969 13.265625 69.074219 14.296875 70.347656 14.296875 C 71.621094 14.296875 72.652344 13.265625 72.652344 11.992188 Z M 72.652344 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.785156 11.992188 C 90.785156 10.71875 89.753906 9.6875 88.480469 9.6875 C 87.207031 9.6875 86.175781 10.71875 86.175781 11.992188 C 86.175781 13.265625 87.207031 14.296875 88.480469 14.296875 C 89.753906 14.296875 90.785156 13.265625 90.785156 11.992188 Z M 90.785156 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.90625 11.992188 C 82.90625 10.71875 81.875 9.6875 80.601562 9.6875 C 79.328125 9.6875 78.296875 10.71875 78.296875 11.992188 C 78.296875 13.265625 79.328125 14.296875 80.601562 14.296875 C 81.875 14.296875 82.90625 13.265625 82.90625 11.992188 Z M 82.90625 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.746094 11.992188 C 74.746094 10.71875 73.714844 9.6875 72.441406 9.6875 C 71.167969 9.6875 70.136719 10.71875 70.136719 11.992188 C 70.136719 13.265625 71.167969 14.296875 72.441406 14.296875 C 73.714844 14.296875 74.746094 13.265625 74.746094 11.992188 Z M 74.746094 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 102.414062 11.992188 C 102.414062 10.71875 101.382812 9.6875 100.109375 9.6875 C 98.835938 9.6875 97.804688 10.71875 97.804688 11.992188 C 97.804688 13.265625 98.835938 14.296875 100.109375 14.296875 C 101.382812 14.296875 102.414062 13.265625 102.414062 11.992188 Z M 102.414062 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.308594 11.992188 C 79.308594 10.71875 78.277344 9.6875 77.003906 9.6875 C 75.730469 9.6875 74.699219 10.71875 74.699219 11.992188 C 74.699219 13.265625 75.730469 14.296875 77.003906 14.296875 C 78.277344 14.296875 79.308594 13.265625 79.308594 11.992188 Z M 79.308594 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.859375 11.992188 C 85.859375 10.71875 84.828125 9.6875 83.554688 9.6875 C 82.28125 9.6875 81.25 10.71875 81.25 11.992188 C 81.25 13.265625 82.28125 14.296875 83.554688 14.296875 C 84.828125 14.296875 85.859375 13.265625 85.859375 11.992188 Z M 85.859375 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 97.640625 11.992188 C 97.640625 10.71875 96.609375 9.6875 95.335938 9.6875 C 94.0625 9.6875 93.03125 10.71875 93.03125 11.992188 C 93.03125 13.265625 94.0625 14.296875 95.335938 14.296875 C 96.609375 14.296875 97.640625 13.265625 97.640625 11.992188 Z M 97.640625 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.941406 11.992188 C 64.941406 10.71875 63.910156 9.6875 62.636719 9.6875 C 61.363281 9.6875 60.332031 10.71875 60.332031 11.992188 C 60.332031 13.265625 61.363281 14.296875 62.636719 14.296875 C 63.910156 14.296875 64.941406 13.265625 64.941406 11.992188 Z M 64.941406 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.667969 11.992188 C 73.667969 10.71875 72.636719 9.6875 71.363281 9.6875 C 70.089844 9.6875 69.058594 10.71875 69.058594 11.992188 C 69.058594 13.265625 70.089844 14.296875 71.363281 14.296875 C 72.636719 14.296875 73.667969 13.265625 73.667969 11.992188 Z M 73.667969 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.550781 11.992188 C 100.550781 10.71875 99.519531 9.6875 98.246094 9.6875 C 96.972656 9.6875 95.941406 10.71875 95.941406 11.992188 C 95.941406 13.265625 96.972656 14.296875 98.246094 14.296875 C 99.519531 14.296875 100.550781 13.265625 100.550781 11.992188 Z M 100.550781 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.921875 11.992188 C 93.921875 10.71875 92.890625 9.6875 91.617188 9.6875 C 90.34375 9.6875 89.3125 10.71875 89.3125 11.992188 C 89.3125 13.265625 90.34375 14.296875 91.617188 14.296875 C 92.890625 14.296875 93.921875 13.265625 93.921875 11.992188 Z M 93.921875 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.835938 11.992188 C 79.835938 10.71875 78.804688 9.6875 77.53125 9.6875 C 76.257812 9.6875 75.226562 10.71875 75.226562 11.992188 C 75.226562 13.265625 76.257812 14.296875 77.53125 14.296875 C 78.804688 14.296875 79.835938 13.265625 79.835938 11.992188 Z M 79.835938 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 102.292969 11.992188 C 102.292969 10.71875 101.261719 9.6875 99.988281 9.6875 C 98.714844 9.6875 97.683594 10.71875 97.683594 11.992188 C 97.683594 13.265625 98.714844 14.296875 99.988281 14.296875 C 101.261719 14.296875 102.292969 13.265625 102.292969 11.992188 Z M 102.292969 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.140625 7.148438 C 64.140625 5.875 63.109375 4.84375 61.835938 4.84375 C 60.5625 4.84375 59.53125 5.875 59.53125 7.148438 C 59.53125 8.421875 60.5625 9.453125 61.835938 9.453125 C 63.109375 9.453125 64.140625 8.421875 64.140625 7.148438 Z M 64.140625 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 97.542969 7.148438 C 97.542969 5.875 96.511719 4.84375 95.238281 4.84375 C 93.964844 4.84375 92.933594 5.875 92.933594 7.148438 C 92.933594 8.421875 93.964844 9.453125 95.238281 9.453125 C 96.511719 9.453125 97.542969 8.421875 97.542969 7.148438 Z M 97.542969 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.144531 7.148438 C 77.144531 5.875 76.113281 4.84375 74.839844 4.84375 C 73.566406 4.84375 72.535156 5.875 72.535156 7.148438 C 72.535156 8.421875 73.566406 9.453125 74.839844 9.453125 C 76.113281 9.453125 77.144531 8.421875 77.144531 7.148438 Z M 77.144531 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 95.601562 7.148438 C 95.601562 5.875 94.570312 4.84375 93.296875 4.84375 C 92.023438 4.84375 90.992188 5.875 90.992188 7.148438 C 90.992188 8.421875 92.023438 9.453125 93.296875 9.453125 C 94.570312 9.453125 95.601562 8.421875 95.601562 7.148438 Z M 95.601562 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 89.675781 7.148438 C 89.675781 5.875 88.644531 4.84375 87.371094 4.84375 C 86.097656 4.84375 85.066406 5.875 85.066406 7.148438 C 85.066406 8.421875 86.097656 9.453125 87.371094 9.453125 C 88.644531 9.453125 89.675781 8.421875 89.675781 7.148438 Z M 89.675781 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.222656 7.148438 C 81.222656 5.875 80.191406 4.84375 78.917969 4.84375 C 77.644531 4.84375 76.613281 5.875 76.613281 7.148438 C 76.613281 8.421875 77.644531 9.453125 78.917969 9.453125 C 80.191406 9.453125 81.222656 8.421875 81.222656 7.148438 Z M 81.222656 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.648438 7.148438 C 76.648438 5.875 75.617188 4.84375 74.34375 4.84375 C 73.070312 4.84375 72.039062 5.875 72.039062 7.148438 C 72.039062 8.421875 73.070312 9.453125 74.34375 9.453125 C 75.617188 9.453125 76.648438 8.421875 76.648438 7.148438 Z M 76.648438 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 91.871094 7.148438 C 91.871094 5.875 90.839844 4.84375 89.566406 4.84375 C 88.292969 4.84375 87.261719 5.875 87.261719 7.148438 C 87.261719 8.421875 88.292969 9.453125 89.566406 9.453125 C 90.839844 9.453125 91.871094 8.421875 91.871094 7.148438 Z M 91.871094 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.410156 7.148438 C 60.410156 5.875 59.378906 4.84375 58.105469 4.84375 C 56.832031 4.84375 55.800781 5.875 55.800781 7.148438 C 55.800781 8.421875 56.832031 9.453125 58.105469 9.453125 C 59.378906 9.453125 60.410156 8.421875 60.410156 7.148438 Z M 60.410156 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.265625 7.148438 C 78.265625 5.875 77.234375 4.84375 75.960938 4.84375 C 74.6875 4.84375 73.65625 5.875 73.65625 7.148438 C 73.65625 8.421875 74.6875 9.453125 75.960938 9.453125 C 77.234375 9.453125 78.265625 8.421875 78.265625 7.148438 Z M 78.265625 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.347656 7.148438 C 100.347656 5.875 99.316406 4.84375 98.042969 4.84375 C 96.769531 4.84375 95.738281 5.875 95.738281 7.148438 C 95.738281 8.421875 96.769531 9.453125 98.042969 9.453125 C 99.316406 9.453125 100.347656 8.421875 100.347656 7.148438 Z M 100.347656 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.671875 7.148438 C 78.671875 5.875 77.640625 4.84375 76.367188 4.84375 C 75.09375 4.84375 74.0625 5.875 74.0625 7.148438 C 74.0625 8.421875 75.09375 9.453125 76.367188 9.453125 C 77.640625 9.453125 78.671875 8.421875 78.671875 7.148438 Z M 78.671875 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.773438 7.148438 C 64.773438 5.875 63.742188 4.84375 62.46875 4.84375 C 61.195312 4.84375 60.164062 5.875 60.164062 7.148438 C 60.164062 8.421875 61.195312 9.453125 62.46875 9.453125 C 63.742188 9.453125 64.773438 8.421875 64.773438 7.148438 Z M 64.773438 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.984375 7.148438 C 87.984375 5.875 86.953125 4.84375 85.679688 4.84375 C 84.40625 4.84375 83.375 5.875 83.375 7.148438 C 83.375 8.421875 84.40625 9.453125 85.679688 9.453125 C 86.953125 9.453125 87.984375 8.421875 87.984375 7.148438 Z M 87.984375 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.507812 7.148438 C 87.507812 5.875 86.476562 4.84375 85.203125 4.84375 C 83.929688 4.84375 82.898438 5.875 82.898438 7.148438 C 82.898438 8.421875 83.929688 9.453125 85.203125 9.453125 C 86.476562 9.453125 87.507812 8.421875 87.507812 7.148438 Z M 87.507812 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.90625 7.148438 C 58.90625 5.875 57.875 4.84375 56.601562 4.84375 C 55.328125 4.84375 54.296875 5.875 54.296875 7.148438 C 54.296875 8.421875 55.328125 9.453125 56.601562 9.453125 C 57.875 9.453125 58.90625 8.421875 58.90625 7.148438 Z M 58.90625 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.582031 7.148438 C 70.582031 5.875 69.550781 4.84375 68.277344 4.84375 C 67.003906 4.84375 65.972656 5.875 65.972656 7.148438 C 65.972656 8.421875 67.003906 9.453125 68.277344 9.453125 C 69.550781 9.453125 70.582031 8.421875 70.582031 7.148438 Z M 70.582031 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.988281 7.148438 C 88.988281 5.875 87.957031 4.84375 86.683594 4.84375 C 85.410156 4.84375 84.378906 5.875 84.378906 7.148438 C 84.378906 8.421875 85.410156 9.453125 86.683594 9.453125 C 87.957031 9.453125 88.988281 8.421875 88.988281 7.148438 Z M 88.988281 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.992188 7.148438 C 80.992188 5.875 79.960938 4.84375 78.6875 4.84375 C 77.414062 4.84375 76.382812 5.875 76.382812 7.148438 C 76.382812 8.421875 77.414062 9.453125 78.6875 9.453125 C 79.960938 9.453125 80.992188 8.421875 80.992188 7.148438 Z M 80.992188 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.707031 7.148438 C 72.707031 5.875 71.675781 4.84375 70.402344 4.84375 C 69.128906 4.84375 68.097656 5.875 68.097656 7.148438 C 68.097656 8.421875 69.128906 9.453125 70.402344 9.453125 C 71.675781 9.453125 72.707031 8.421875 72.707031 7.148438 Z M 72.707031 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.792969 7.148438 C 100.792969 5.875 99.761719 4.84375 98.488281 4.84375 C 97.214844 4.84375 96.183594 5.875 96.183594 7.148438 C 96.183594 8.421875 97.214844 9.453125 98.488281 9.453125 C 99.761719 9.453125 100.792969 8.421875 100.792969 7.148438 Z M 100.792969 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.335938 7.148438 C 77.335938 5.875 76.304688 4.84375 75.03125 4.84375 C 73.757812 4.84375 72.726562 5.875 72.726562 7.148438 C 72.726562 8.421875 73.757812 9.453125 75.03125 9.453125 C 76.304688 9.453125 77.335938 8.421875 77.335938 7.148438 Z M 77.335938 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.988281 7.148438 C 83.988281 5.875 82.957031 4.84375 81.683594 4.84375 C 80.410156 4.84375 79.378906 5.875 79.378906 7.148438 C 79.378906 8.421875 80.410156 9.453125 81.683594 9.453125 C 82.957031 9.453125 83.988281 8.421875 83.988281 7.148438 Z M 83.988281 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 95.949219 7.148438 C 95.949219 5.875 94.917969 4.84375 93.644531 4.84375 C 92.371094 4.84375 91.339844 5.875 91.339844 7.148438 C 91.339844 8.421875 92.371094 9.453125 93.644531 9.453125 C 94.917969 9.453125 95.949219 8.421875 95.949219 7.148438 Z M 95.949219 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.75 7.148438 C 62.75 5.875 61.71875 4.84375 60.445312 4.84375 C 59.171875 4.84375 58.140625 5.875 58.140625 7.148438 C 58.140625 8.421875 59.171875 9.453125 60.445312 9.453125 C 61.71875 9.453125 62.75 8.421875 62.75 7.148438 Z M 62.75 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.609375 7.148438 C 71.609375 5.875 70.578125 4.84375 69.304688 4.84375 C 68.03125 4.84375 67 5.875 67 7.148438 C 67 8.421875 68.03125 9.453125 69.304688 9.453125 C 70.578125 9.453125 71.609375 8.421875 71.609375 7.148438 Z M 71.609375 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 98.902344 7.148438 C 98.902344 5.875 97.871094 4.84375 96.597656 4.84375 C 95.324219 4.84375 94.292969 5.875 94.292969 7.148438 C 94.292969 8.421875 95.324219 9.453125 96.597656 9.453125 C 97.871094 9.453125 98.902344 8.421875 98.902344 7.148438 Z M 98.902344 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 92.171875 7.148438 C 92.171875 5.875 91.140625 4.84375 89.867188 4.84375 C 88.59375 4.84375 87.5625 5.875 87.5625 7.148438 C 87.5625 8.421875 88.59375 9.453125 89.867188 9.453125 C 91.140625 9.453125 92.171875 8.421875 92.171875 7.148438 Z M 92.171875 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.875 7.148438 C 77.875 5.875 76.84375 4.84375 75.570312 4.84375 C 74.296875 4.84375 73.265625 5.875 73.265625 7.148438 C 73.265625 8.421875 74.296875 9.453125 75.570312 9.453125 C 76.84375 9.453125 77.875 8.421875 77.875 7.148438 Z M 77.875 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.675781 7.148438 C 100.675781 5.875 99.644531 4.84375 98.371094 4.84375 C 97.097656 4.84375 96.066406 5.875 96.066406 7.148438 C 96.066406 8.421875 97.097656 9.453125 98.371094 9.453125 C 99.644531 9.453125 100.675781 8.421875 100.675781 7.148438 Z M 100.675781 7.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.875 2.304688 C 61.875 1.03125 60.84375 0 59.570312 0 C 58.296875 0 57.265625 1.03125 57.265625 2.304688 C 57.265625 3.578125 58.296875 4.609375 59.570312 4.609375 C 60.84375 4.609375 61.875 3.578125 61.875 2.304688 Z M 61.875 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 95.445312 2.304688 C 95.445312 1.03125 94.414062 0 93.140625 0 C 91.867188 0 90.835938 1.03125 90.835938 2.304688 C 90.835938 3.578125 91.867188 4.609375 93.140625 4.609375 C 94.414062 4.609375 95.445312 3.578125 95.445312 2.304688 Z M 95.445312 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.941406 2.304688 C 74.941406 1.03125 73.910156 0 72.636719 0 C 71.363281 0 70.332031 1.03125 70.332031 2.304688 C 70.332031 3.578125 71.363281 4.609375 72.636719 4.609375 C 73.910156 4.609375 74.941406 3.578125 74.941406 2.304688 Z M 74.941406 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.492188 2.304688 C 93.492188 1.03125 92.460938 0 91.1875 0 C 89.914062 0 88.882812 1.03125 88.882812 2.304688 C 88.882812 3.578125 89.914062 4.609375 91.1875 4.609375 C 92.460938 4.609375 93.492188 3.578125 93.492188 2.304688 Z M 93.492188 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.539062 2.304688 C 87.539062 1.03125 86.507812 0 85.234375 0 C 83.960938 0 82.929688 1.03125 82.929688 2.304688 C 82.929688 3.578125 83.960938 4.609375 85.234375 4.609375 C 86.507812 4.609375 87.539062 3.578125 87.539062 2.304688 Z M 87.539062 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.039062 2.304688 C 79.039062 1.03125 78.007812 0 76.734375 0 C 75.460938 0 74.429688 1.03125 74.429688 2.304688 C 74.429688 3.578125 75.460938 4.609375 76.734375 4.609375 C 78.007812 4.609375 79.039062 3.578125 79.039062 2.304688 Z M 79.039062 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.445312 2.304688 C 74.445312 1.03125 73.414062 0 72.140625 0 C 70.867188 0 69.835938 1.03125 69.835938 2.304688 C 69.835938 3.578125 70.867188 4.609375 72.140625 4.609375 C 73.414062 4.609375 74.445312 3.578125 74.445312 2.304688 Z M 74.445312 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 89.746094 2.304688 C 89.746094 1.03125 88.714844 0 87.441406 0 C 86.167969 0 85.136719 1.03125 85.136719 2.304688 C 85.136719 3.578125 86.167969 4.609375 87.441406 4.609375 C 88.714844 4.609375 89.746094 3.578125 89.746094 2.304688 Z M 89.746094 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 58.125 2.304688 C 58.125 1.03125 57.09375 0 55.820312 0 C 54.546875 0 53.515625 1.03125 53.515625 2.304688 C 53.515625 3.578125 54.546875 4.609375 55.820312 4.609375 C 57.09375 4.609375 58.125 3.578125 58.125 2.304688 Z M 58.125 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.070312 2.304688 C 76.070312 1.03125 75.039062 0 73.765625 0 C 72.492188 0 71.460938 1.03125 71.460938 2.304688 C 71.460938 3.578125 72.492188 4.609375 73.765625 4.609375 C 75.039062 4.609375 76.070312 3.578125 76.070312 2.304688 Z M 76.070312 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 98.265625 2.304688 C 98.265625 1.03125 97.234375 0 95.960938 0 C 94.6875 0 93.65625 1.03125 93.65625 2.304688 C 93.65625 3.578125 94.6875 4.609375 95.960938 4.609375 C 97.234375 4.609375 98.265625 3.578125 98.265625 2.304688 Z M 98.265625 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.480469 2.304688 C 76.480469 1.03125 75.449219 0 74.175781 0 C 72.902344 0 71.871094 1.03125 71.871094 2.304688 C 71.871094 3.578125 72.902344 4.609375 74.175781 4.609375 C 75.449219 4.609375 76.480469 3.578125 76.480469 2.304688 Z M 76.480469 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 62.511719 2.304688 C 62.511719 1.03125 61.480469 0 60.207031 0 C 58.933594 0 57.902344 1.03125 57.902344 2.304688 C 57.902344 3.578125 58.933594 4.609375 60.207031 4.609375 C 61.480469 4.609375 62.511719 3.578125 62.511719 2.304688 Z M 62.511719 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.839844 2.304688 C 85.839844 1.03125 84.808594 0 83.535156 0 C 82.261719 0 81.230469 1.03125 81.230469 2.304688 C 81.230469 3.578125 82.261719 4.609375 83.535156 4.609375 C 84.808594 4.609375 85.839844 3.578125 85.839844 2.304688 Z M 85.839844 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.359375 2.304688 C 85.359375 1.03125 84.328125 0 83.054688 0 C 81.78125 0 80.75 1.03125 80.75 2.304688 C 80.75 3.578125 81.78125 4.609375 83.054688 4.609375 C 84.328125 4.609375 85.359375 3.578125 85.359375 2.304688 Z M 85.359375 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.613281 2.304688 C 56.613281 1.03125 55.582031 0 54.308594 0 C 53.035156 0 52.003906 1.03125 52.003906 2.304688 C 52.003906 3.578125 53.035156 4.609375 54.308594 4.609375 C 55.582031 4.609375 56.613281 3.578125 56.613281 2.304688 Z M 56.613281 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 68.347656 2.304688 C 68.347656 1.03125 67.316406 0 66.042969 0 C 64.769531 0 63.738281 1.03125 63.738281 2.304688 C 63.738281 3.578125 64.769531 4.609375 66.042969 4.609375 C 67.316406 4.609375 68.347656 3.578125 68.347656 2.304688 Z M 68.347656 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.847656 2.304688 C 86.847656 1.03125 85.816406 0 84.542969 0 C 83.269531 0 82.238281 1.03125 82.238281 2.304688 C 82.238281 3.578125 83.269531 4.609375 84.542969 4.609375 C 85.816406 4.609375 86.847656 3.578125 86.847656 2.304688 Z M 86.847656 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.808594 2.304688 C 78.808594 1.03125 77.777344 0 76.503906 0 C 75.230469 0 74.199219 1.03125 74.199219 2.304688 C 74.199219 3.578125 75.230469 4.609375 76.503906 4.609375 C 77.777344 4.609375 78.808594 3.578125 78.808594 2.304688 Z M 78.808594 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.484375 2.304688 C 70.484375 1.03125 69.453125 0 68.179688 0 C 66.90625 0 65.875 1.03125 65.875 2.304688 C 65.875 3.578125 66.90625 4.609375 68.179688 4.609375 C 69.453125 4.609375 70.484375 3.578125 70.484375 2.304688 Z M 70.484375 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 98.710938 2.304688 C 98.710938 1.03125 97.679688 0 96.40625 0 C 95.132812 0 94.101562 1.03125 94.101562 2.304688 C 94.101562 3.578125 95.132812 4.609375 96.40625 4.609375 C 97.679688 4.609375 98.710938 3.578125 98.710938 2.304688 Z M 98.710938 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.136719 2.304688 C 75.136719 1.03125 74.105469 0 72.832031 0 C 71.558594 0 70.527344 1.03125 70.527344 2.304688 C 70.527344 3.578125 71.558594 4.609375 72.832031 4.609375 C 74.105469 4.609375 75.136719 3.578125 75.136719 2.304688 Z M 75.136719 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 81.820312 2.304688 C 81.820312 1.03125 80.789062 0 79.515625 0 C 78.242188 0 77.210938 1.03125 77.210938 2.304688 C 77.210938 3.578125 78.242188 4.609375 79.515625 4.609375 C 80.789062 4.609375 81.820312 3.578125 81.820312 2.304688 Z M 81.820312 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.84375 2.304688 C 93.84375 1.03125 92.8125 0 91.539062 0 C 90.265625 0 89.234375 1.03125 89.234375 2.304688 C 89.234375 3.578125 90.265625 4.609375 91.539062 4.609375 C 92.8125 4.609375 93.84375 3.578125 93.84375 2.304688 Z M 93.84375 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 60.476562 2.304688 C 60.476562 1.03125 59.445312 0 58.171875 0 C 56.898438 0 55.867188 1.03125 55.867188 2.304688 C 55.867188 3.578125 56.898438 4.609375 58.171875 4.609375 C 59.445312 4.609375 60.476562 3.578125 60.476562 2.304688 Z M 60.476562 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.382812 2.304688 C 69.382812 1.03125 68.351562 0 67.078125 0 C 65.804688 0 64.773438 1.03125 64.773438 2.304688 C 64.773438 3.578125 65.804688 4.609375 67.078125 4.609375 C 68.351562 4.609375 69.382812 3.578125 69.382812 2.304688 Z M 69.382812 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.8125 2.304688 C 96.8125 1.03125 95.78125 0 94.507812 0 C 93.234375 0 92.203125 1.03125 92.203125 2.304688 C 92.203125 3.578125 93.234375 4.609375 94.507812 4.609375 C 95.78125 4.609375 96.8125 3.578125 96.8125 2.304688 Z M 96.8125 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.046875 2.304688 C 90.046875 1.03125 89.015625 0 87.742188 0 C 86.46875 0 85.4375 1.03125 85.4375 2.304688 C 85.4375 3.578125 86.46875 4.609375 87.742188 4.609375 C 89.015625 4.609375 90.046875 3.578125 90.046875 2.304688 Z M 90.046875 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.679688 2.304688 C 75.679688 1.03125 74.648438 0 73.375 0 C 72.101562 0 71.070312 1.03125 71.070312 2.304688 C 71.070312 3.578125 72.101562 4.609375 73.375 4.609375 C 74.648438 4.609375 75.679688 3.578125 75.679688 2.304688 Z M 75.679688 2.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:0.903584;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 98.589844 2.304688 C 98.589844 1.03125 97.558594 0 96.285156 0 C 95.011719 0 93.980469 1.03125 93.980469 2.304688 C 93.980469 3.578125 95.011719 4.609375 96.285156 4.609375 C 97.558594 4.609375 98.589844 3.578125 98.589844 2.304688 Z M 98.589844 2.304688 \\\"/>\\n\",\n       \"</g>\\n\",\n       \"</svg>\\n\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"toD x = translateX x $ circle 1\\n\",\n    \"diagram $ vsep 0.1 $ [mconcat $ toD <$> x | x <- transpose pairs]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"19b4ab08-2274-42f9-a461-e1512f8dacf5\",\n   \"metadata\": {},\n   \"source\": [\n    \"Time is the y-axis of this diagram, going downwards. Each circle is a sampled position of the oscillating particle. You can see that this has the nice property that all the uncertainty disappears at certain points, which is exactly what you'd expect from an oscillator.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"41685e86-7e6a-4d75-a376-7d1a2be262fa\",\n   \"metadata\": {},\n   \"source\": [\n    \"<!-- ## Chaotic systems\\n\",\n    \"\\n\",\n    \"Looking at the evolution of a distribution is a good way to visualize chaos. For example, if we evolve a double pendulum forward in time, from a low variance distribution, we end up with a high variance distribution quickly. -->\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Haskell - nixpkgs\",\n   \"language\": \"haskell\",\n   \"name\": \"ihaskell_nixpkgs\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": \"ihaskell\",\n   \"file_extension\": \".hs\",\n   \"mimetype\": \"text/x-haskell\",\n   \"name\": \"haskell\",\n   \"pygments_lexer\": \"Haskell\",\n   \"version\": \"9.0.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "notebooks/examples/Diagrams.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"id\": \"4a04aca6-ee17-4e97-89a2-682e428f216e\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import Diagrams.Prelude hiding (normal, Measure)\\n\",\n    \"import Control.Monad.Bayes.Class\\n\",\n    \"import Control.Monad.Bayes.Enumerator\\n\",\n    \"import Control.Monad.Bayes.Weighted\\n\",\n    \"import Control.Monad.Bayes.Sampler.Strict\\n\",\n    \"import qualified Control.Monad.Bayes.Sampler.Lazy as L\\n\",\n    \"import Control.Monad.Bayes.Traced.Static\\n\",\n    \"import Control.Monad.Bayes.Inference.MCMC\\n\",\n    \"import Numeric.Log\\n\",\n    \"import qualified Diagrams.Backend.Cairo as C\\n\",\n    \"import Control.Monad\\n\",\n    \"import qualified Control.Monad.Bayes.Weighted as Weighted\\n\",\n    \"import Control.Monad.Bayes.Density.Free\\n\",\n    \"import Control.Monad.Writer\\n\",\n    \"import Control.Monad.Loops\\n\",\n    \"\\n\",\n    \"{-# LANGUAGE NoMonomorphismRestriction #-}\\n\",\n    \"{-# LANGUAGE FlexibleContexts          #-}\\n\",\n    \"{-# LANGUAGE TypeFamilies              #-}\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"745dd187-2737-4075-a1e5-def36b220a77\",\n   \"metadata\": {},\n   \"source\": [\n    \"<!-- ideas:\\n\",\n    \"\\n\",\n    \"sample from the space of linear maps, and apply to a square\\n\",\n    \"\\n\",\n    \"show wigner semicircle distribution -->\\n\",\n    \"\\n\",\n    \"`Diagram`s, from the `diagrams` package, are representations of 2D diagrams, which can be displayed using a variety of backends. In the spirit of Haskell, `Diagram`s  compose in a variety of ways, so to create a complex diagrams, you build it up from simpler parts.\\n\",\n    \"\\n\",\n    \"Because `Diagram`s are first class values in Haskell, we can define distributions over them\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"id\": \"55e00c89-fa70-4c16-a9c5-a68fc1c49ed6\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"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\",\n      \"image/svg+xml\": [\n       \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\\n\",\n       \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\" width=\\\"353.553391pt\\\" height=\\\"353.553391pt\\\" viewBox=\\\"0 0 353.553391 353.553391\\\" version=\\\"1.1\\\">\\n\",\n       \"<g id=\\\"surface2\\\">\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.554688 176.777344 C 353.554688 79.144531 274.410156 0 176.777344 0 C 79.144531 0 0 79.144531 0 176.777344 C 0 274.410156 79.144531 353.554688 176.777344 353.554688 C 274.410156 353.554688 353.554688 274.410156 353.554688 176.777344 Z M 353.554688 176.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 344.714844 176.777344 C 344.714844 84.027344 269.527344 8.839844 176.777344 8.839844 C 84.027344 8.839844 8.839844 84.027344 8.839844 176.777344 C 8.839844 269.527344 84.027344 344.714844 176.777344 344.714844 C 269.527344 344.714844 344.714844 269.527344 344.714844 176.777344 Z M 344.714844 176.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 335.875 176.777344 C 335.875 88.910156 264.644531 17.679688 176.777344 17.679688 C 88.910156 17.679688 17.679688 88.910156 17.679688 176.777344 C 17.679688 264.644531 88.910156 335.875 176.777344 335.875 C 264.644531 335.875 335.875 264.644531 335.875 176.777344 Z M 335.875 176.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.035156 176.777344 C 327.035156 93.789062 259.761719 26.515625 176.773438 26.515625 C 93.785156 26.515625 26.511719 93.789062 26.511719 176.777344 C 26.511719 259.765625 93.785156 327.039062 176.773438 327.039062 C 259.761719 327.039062 327.035156 259.765625 327.035156 176.777344 Z M 327.035156 176.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 318.199219 176.777344 C 318.199219 98.671875 254.882812 35.355469 176.777344 35.355469 C 98.671875 35.355469 35.355469 98.671875 35.355469 176.777344 C 35.355469 254.882812 98.671875 318.199219 176.777344 318.199219 C 254.882812 318.199219 318.199219 254.882812 318.199219 176.777344 Z M 318.199219 176.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.359375 176.777344 C 309.359375 103.554688 250 44.195312 176.777344 44.195312 C 103.554688 44.195312 44.195312 103.554688 44.195312 176.777344 C 44.195312 250 103.554688 309.359375 176.777344 309.359375 C 250 309.359375 309.359375 250 309.359375 176.777344 Z M 309.359375 176.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.519531 176.777344 C 300.519531 108.4375 245.117188 53.035156 176.777344 53.035156 C 108.4375 53.035156 53.035156 108.4375 53.035156 176.777344 C 53.035156 245.117188 108.4375 300.519531 176.777344 300.519531 C 245.117188 300.519531 300.519531 245.117188 300.519531 176.777344 Z M 300.519531 176.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.679688 176.777344 C 291.679688 113.316406 240.234375 61.871094 176.773438 61.871094 C 113.3125 61.871094 61.867188 113.316406 61.867188 176.777344 C 61.867188 240.238281 113.3125 291.683594 176.773438 291.683594 C 240.234375 291.683594 291.679688 240.238281 291.679688 176.777344 Z M 291.679688 176.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.84375 176.777344 C 282.84375 118.199219 235.355469 70.710938 176.777344 70.710938 C 118.199219 70.710938 70.710938 118.199219 70.710938 176.777344 C 70.710938 235.355469 118.199219 282.84375 176.777344 282.84375 C 235.355469 282.84375 282.84375 235.355469 282.84375 176.777344 Z M 282.84375 176.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.003906 176.777344 C 274.003906 123.082031 230.472656 79.550781 176.777344 79.550781 C 123.082031 79.550781 79.550781 123.082031 79.550781 176.777344 C 79.550781 230.472656 123.082031 274.003906 176.777344 274.003906 C 230.472656 274.003906 274.003906 230.472656 274.003906 176.777344 Z M 274.003906 176.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.164062 176.777344 C 265.164062 127.960938 225.589844 88.390625 176.777344 88.390625 C 127.960938 88.390625 88.390625 127.964844 88.390625 176.777344 C 88.390625 225.59375 127.964844 265.164062 176.777344 265.164062 C 225.59375 265.164062 265.164062 225.589844 265.164062 176.777344 Z M 265.164062 176.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.328125 176.777344 C 256.328125 132.84375 220.710938 97.226562 176.777344 97.226562 C 132.84375 97.226562 97.226562 132.84375 97.226562 176.777344 C 97.226562 220.710938 132.84375 256.328125 176.777344 256.328125 C 220.710938 256.328125 256.328125 220.710938 256.328125 176.777344 Z M 256.328125 176.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.488281 176.777344 C 247.488281 137.726562 215.828125 106.066406 176.777344 106.066406 C 137.726562 106.066406 106.066406 137.726562 106.066406 176.777344 C 106.066406 215.828125 137.726562 247.488281 176.777344 247.488281 C 215.828125 247.488281 247.488281 215.828125 247.488281 176.777344 Z M 247.488281 176.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.648438 176.777344 C 238.648438 142.605469 210.949219 114.90625 176.777344 114.90625 C 142.605469 114.90625 114.90625 142.605469 114.90625 176.777344 C 114.90625 210.949219 142.605469 238.648438 176.777344 238.648438 C 210.949219 238.648438 238.648438 210.949219 238.648438 176.777344 Z M 238.648438 176.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.808594 176.777344 C 229.808594 147.488281 206.066406 123.746094 176.777344 123.746094 C 147.488281 123.746094 123.746094 147.488281 123.746094 176.777344 C 123.746094 206.066406 147.488281 229.808594 176.777344 229.808594 C 206.066406 229.808594 229.808594 206.066406 229.808594 176.777344 Z M 229.808594 176.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 220.972656 176.777344 C 220.972656 152.371094 201.1875 132.582031 176.777344 132.582031 C 152.371094 132.582031 132.582031 152.367188 132.582031 176.777344 C 132.582031 201.183594 152.367188 220.972656 176.777344 220.972656 C 201.183594 220.972656 220.972656 201.1875 220.972656 176.777344 Z M 220.972656 176.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.132812 176.777344 C 212.132812 157.25 196.304688 141.421875 176.777344 141.421875 C 157.25 141.421875 141.421875 157.25 141.421875 176.777344 C 141.421875 196.304688 157.25 212.132812 176.777344 212.132812 C 196.304688 212.132812 212.132812 196.304688 212.132812 176.777344 Z M 212.132812 176.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.292969 176.777344 C 203.292969 162.132812 191.421875 150.261719 176.777344 150.261719 C 162.132812 150.261719 150.261719 162.132812 150.261719 176.777344 C 150.261719 191.421875 162.132812 203.292969 176.777344 203.292969 C 191.421875 203.292969 203.292969 191.421875 203.292969 176.777344 Z M 203.292969 176.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.453125 176.777344 C 194.453125 167.015625 186.539062 159.101562 176.777344 159.101562 C 167.015625 159.101562 159.101562 167.015625 159.101562 176.777344 C 159.101562 186.539062 167.015625 194.453125 176.777344 194.453125 C 186.539062 194.453125 194.453125 186.539062 194.453125 176.777344 Z M 194.453125 176.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414214;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.617188 176.777344 C 185.617188 171.894531 181.660156 167.9375 176.777344 167.9375 C 171.894531 167.9375 167.9375 171.894531 167.9375 176.777344 C 167.9375 181.660156 171.894531 185.617188 176.777344 185.617188 C 181.660156 185.617188 185.617188 181.660156 185.617188 176.777344 Z M 185.617188 176.777344 \\\"/>\\n\",\n       \"</g>\\n\",\n       \"</svg>\\n\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"circles n = do \\n\",\n    \"    x <- bernoulli 0.01\\n\",\n    \"    if x then return $ mconcat (circle <$> [1..n]) else circles (n + 1)\\n\",\n    \"    \\n\",\n    \"sampleIOfixed (diagram <$> circles 1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"b0c77024-41d0-4c82-8163-0f7d36faeb82\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Viewing traces\\n\",\n    \"\\n\",\n    \"A nice use of diagrams is to view probabilistic program execution traces. Given a `program :: MonadMeasure m => m X`, we can convert it into a sampler of traces and their weights using `getTrace` defined below:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"id\": \"556f2c35-7561-47a1-9949-87b54513aff0\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"getTrace :: WeightedT (DensityT SamplerIO) a -> SamplerIO ([Double], Log Double)\\n\",\n    \"getTrace m = fmap (\\\\((x,y),z) -> (z,y) ) $ runWriterT $ runWeightedT $ Weighted.hoist (WriterT . runDensityT []) m\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"id\": \"4339a75c-b28a-48fd-a498-15fdd07e6ca3\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"program = do\\n\",\n    \"    x <- beta 1 2\\n\",\n    \"    b <- Control.Monad.Bayes.Class.normal (x**2) 1\\n\",\n    \"    factor $ normalPdf 0 ( abs b) x\\n\",\n    \"    return b\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"id\": \"3d9e47b6-fe71-4012-893f-fa8c9ff46bd2\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"traceDiagram :: ([Double], Log Double) -> Diagram C.B\\n\",\n    \"traceDiagram (trace, weight) = fromVertices [p2 (i,y) | (y,i) <- zip trace [1..]] # opacity (ln $ exp weight) # scaleX 1\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"id\": \"dcdb1f95-1b10-4db4-8a9b-c4fa8762b6bb\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"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\",\n      \"image/svg+xml\": [\n       \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\\n\",\n       \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\" width=\\\"353.778234pt\\\" height=\\\"353.328404pt\\\" viewBox=\\\"0 0 353.778234 353.328404\\\" version=\\\"1.1\\\">\\n\",\n       \"<g id=\\\"surface8\\\">\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.634018;stroke-miterlimit:10;\\\" d=\\\"M 0 174.992188 L 353.777344 114.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.200771;stroke-miterlimit:10;\\\" d=\\\"M 0 73.675781 L 353.777344 348.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.13568;stroke-miterlimit:10;\\\" d=\\\"M 0 37.488281 L 353.777344 2.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.275641;stroke-miterlimit:10;\\\" d=\\\"M 0 23.015625 L 353.777344 181.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.350537;stroke-miterlimit:10;\\\" d=\\\"M 0 288.867188 L 353.777344 308.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.286501;stroke-miterlimit:10;\\\" d=\\\"M 0 304.804688 L 353.777344 29.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.414079;stroke-miterlimit:10;\\\" d=\\\"M 0 115.746094 L 353.777344 164.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.448893;stroke-miterlimit:10;\\\" d=\\\"M 0 336.058594 L 353.777344 287.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.36922;stroke-miterlimit:10;\\\" d=\\\"M 0 118.578125 L 353.777344 73.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.240651;stroke-miterlimit:10;\\\" d=\\\"M 0 183.964844 L 353.777344 338.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.820259;stroke-miterlimit:10;\\\" d=\\\"M 0 296.539062 L 353.777344 112.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.45837;stroke-miterlimit:10;\\\" d=\\\"M 0 319.835938 L 353.777344 68.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.338984;stroke-miterlimit:10;\\\" d=\\\"M 0 59.535156 L 353.777344 92.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.226067;stroke-miterlimit:10;\\\" d=\\\"M 0 324.757812 L 353.777344 13.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.523865;stroke-miterlimit:10;\\\" d=\\\"M 0 330.855469 L 353.777344 274.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.557994;stroke-miterlimit:10;\\\" d=\\\"M 0 208.351562 L 353.777344 271.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.975957;stroke-miterlimit:10;\\\" d=\\\"M 0 323.003906 L 353.777344 232.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.631492;stroke-miterlimit:10;\\\" d=\\\"M 0 144.511719 L 353.777344 129.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.40411;stroke-miterlimit:10;\\\" d=\\\"M 0 81.324219 L 353.777344 105.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.705623;stroke-miterlimit:10;\\\" d=\\\"M 0 291.78125 L 353.777344 252.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.247359;stroke-miterlimit:10;\\\" d=\\\"M 0 146.171875 L 353.777344 171.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.32439;stroke-miterlimit:10;\\\" d=\\\"M 0 304.933594 L 353.777344 315.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.00847114;stroke-miterlimit:10;\\\" d=\\\"M 0 150.039062 L 353.777344 207.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.164233;stroke-miterlimit:10;\\\" d=\\\"M 0 198.230469 L 353.777344 3.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.214551;stroke-miterlimit:10;\\\" d=\\\"M 0 91.46875 L 353.777344 346.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.223661;stroke-miterlimit:10;\\\" d=\\\"M 0 120.953125 L 353.777344 343.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.344612;stroke-miterlimit:10;\\\" d=\\\"M 0 68.179688 L 353.777344 88.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.990502;stroke-miterlimit:10;\\\" d=\\\"M 0 204.757812 L 353.777344 145.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.2355;stroke-miterlimit:10;\\\" d=\\\"M 0 245.476562 L 353.777344 17.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.397964;stroke-miterlimit:10;\\\" d=\\\"M 0 278.78125 L 353.777344 184.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.468389;stroke-miterlimit:10;\\\" d=\\\"M 0 148.53125 L 353.777344 92 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.582443;stroke-miterlimit:10;\\\" d=\\\"M 0 139.96875 L 353.777344 121.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.168369;stroke-miterlimit:10;\\\" d=\\\"M 0 206.195312 L 353.777344 350.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.726355;stroke-miterlimit:10;\\\" d=\\\"M 0 320.253906 L 353.777344 103.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.54406;stroke-miterlimit:10;\\\" d=\\\"M 0 234.75 L 353.777344 88.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.525555;stroke-miterlimit:10;\\\" d=\\\"M 0 311.121094 L 353.777344 79.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 326.179688 L 353.777344 208.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.55907;stroke-miterlimit:10;\\\" d=\\\"M 0 148.09375 L 353.777344 112.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.249886;stroke-miterlimit:10;\\\" d=\\\"M 0 2.90625 L 353.777344 191.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.261882;stroke-miterlimit:10;\\\" d=\\\"M 0 97.351562 L 353.777344 39.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.13247;stroke-miterlimit:10;\\\" d=\\\"M 0 202.578125 L 353.777344 353.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.4084;stroke-miterlimit:10;\\\" d=\\\"M 0 89.636719 L 353.777344 302.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.226464;stroke-miterlimit:10;\\\" d=\\\"M 0 74.445312 L 353.777344 178.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.457555;stroke-miterlimit:10;\\\" d=\\\"M 0 127.59375 L 353.777344 96.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.563949;stroke-miterlimit:10;\\\" d=\\\"M 0 128.183594 L 353.777344 267.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 272.570312 L 353.777344 212.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.310115;stroke-miterlimit:10;\\\" d=\\\"M 0 129.644531 L 353.777344 323.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.67994;stroke-miterlimit:10;\\\" d=\\\"M 0 344.085938 L 353.777344 98.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.624755;stroke-miterlimit:10;\\\" d=\\\"M 0 275.195312 L 353.777344 95.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.460423;stroke-miterlimit:10;\\\" d=\\\"M 0 86.273438 L 353.777344 126.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.496795;stroke-miterlimit:10;\\\" d=\\\"M 0 237.203125 L 353.777344 80.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.279745;stroke-miterlimit:10;\\\" d=\\\"M 0 38.960938 L 353.777344 76.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.707534;stroke-miterlimit:10;\\\" d=\\\"M 0 261.96875 L 353.777344 252.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 276.988281 L 353.777344 165.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.661019;stroke-miterlimit:10;\\\" d=\\\"M 0 195.980469 L 353.777344 257.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.410827;stroke-miterlimit:10;\\\" d=\\\"M 0 215.761719 L 353.777344 65.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.459509;stroke-miterlimit:10;\\\" d=\\\"M 0 239.382812 L 353.777344 73.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 332.160156 L 353.777344 167.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.327008;stroke-miterlimit:10;\\\" d=\\\"M 0 142.578125 L 353.777344 53.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.273853;stroke-miterlimit:10;\\\" d=\\\"M 0 298.820312 L 353.777344 26.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.818061;stroke-miterlimit:10;\\\" d=\\\"M 0 188.480469 L 353.777344 238.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.225707;stroke-miterlimit:10;\\\" d=\\\"M 0 10.59375 L 353.777344 197.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.473702;stroke-miterlimit:10;\\\" d=\\\"M 0 231.625 L 353.777344 76.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.215231;stroke-miterlimit:10;\\\" d=\\\"M 0 43.40625 L 353.777344 33.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.367741;stroke-miterlimit:10;\\\" d=\\\"M 0 322.75 L 353.777344 304.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.341921;stroke-miterlimit:10;\\\" d=\\\"M 0 189.828125 L 353.777344 169.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.914645;stroke-miterlimit:10;\\\" d=\\\"M 0 196.222656 L 353.777344 142.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.316726;stroke-miterlimit:10;\\\" d=\\\"M 0 53.269531 L 353.777344 276.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.451926;stroke-miterlimit:10;\\\" d=\\\"M 0 76.371094 L 353.777344 282.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.526117;stroke-miterlimit:10;\\\" d=\\\"M 0 316.15625 L 353.777344 274.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.37306;stroke-miterlimit:10;\\\" d=\\\"M 0 284.617188 L 353.777344 303.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.512174;stroke-miterlimit:10;\\\" d=\\\"M 0 302.214844 L 353.777344 276.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.355252;stroke-miterlimit:10;\\\" d=\\\"M 0 35.914062 L 353.777344 146.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.490101;stroke-miterlimit:10;\\\" d=\\\"M 0 118.003906 L 353.777344 160.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.204304;stroke-miterlimit:10;\\\" d=\\\"M 0 109.410156 L 353.777344 15.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 284.003906 L 353.777344 137.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.31929;stroke-miterlimit:10;\\\" d=\\\"M 0 49.753906 L 353.777344 90.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.207317;stroke-miterlimit:10;\\\" d=\\\"M 0 74.90625 L 353.777344 252.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.277614;stroke-miterlimit:10;\\\" d=\\\"M 0 323.636719 L 353.777344 26.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.321296;stroke-miterlimit:10;\\\" d=\\\"M 0 65.898438 L 353.777344 171.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.178725;stroke-miterlimit:10;\\\" d=\\\"M 0 140.132812 L 353.777344 350.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.147217;stroke-miterlimit:10;\\\" d=\\\"M 0 242.789062 L 353.777344 352.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.296021;stroke-miterlimit:10;\\\" d=\\\"M 0 11.847656 L 353.777344 151.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.267621;stroke-miterlimit:10;\\\" d=\\\"M 0 48.59375 L 353.777344 61.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.316504;stroke-miterlimit:10;\\\" d=\\\"M 0 144.839844 L 353.777344 321.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.115205;stroke-miterlimit:10;\\\" d=\\\"M 0 55.902344 L 353.777344 0.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.288952;stroke-miterlimit:10;\\\" d=\\\"M 0 226.269531 L 353.777344 194.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.603538;stroke-miterlimit:10;\\\" d=\\\"M 0 126.980469 L 353.777344 144.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.952394;stroke-miterlimit:10;\\\" d=\\\"M 0 250.214844 L 353.777344 127.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.287588;stroke-miterlimit:10;\\\" d=\\\"M 0 172.894531 L 353.777344 36.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.623477;stroke-miterlimit:10;\\\" d=\\\"M 0 140.976562 L 353.777344 257.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.377636;stroke-miterlimit:10;\\\" d=\\\"M 0 51.863281 L 353.777344 308.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 235.886719 L 353.777344 225.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 341.320312 L 353.777344 190.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.448636;stroke-miterlimit:10;\\\" d=\\\"M 0 160.449219 L 353.777344 83.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.398332;stroke-miterlimit:10;\\\" d=\\\"M 0 115.394531 L 353.777344 84.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.355712;stroke-miterlimit:10;\\\" d=\\\"M 0 193.390625 L 353.777344 310.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.450608;stroke-miterlimit:10;\\\" d=\\\"M 0 167.453125 L 353.777344 82.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.456602;stroke-miterlimit:10;\\\" d=\\\"M 0 92.464844 L 353.777344 289.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.260101;stroke-miterlimit:10;\\\" d=\\\"M 0 35.542969 L 353.777344 182.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.187176;stroke-miterlimit:10;\\\" d=\\\"M 0 202.324219 L 353.777344 348.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.399527;stroke-miterlimit:10;\\\" d=\\\"M 0 215.246094 L 353.777344 299.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.241027;stroke-miterlimit:10;\\\" d=\\\"M 0 331.390625 L 353.777344 17.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.940634;stroke-miterlimit:10;\\\" d=\\\"M 0 229.96875 L 353.777344 232.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0413888;stroke-miterlimit:10;\\\" d=\\\"M 0 57.828125 L 353.777344 196.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.949072;stroke-miterlimit:10;\\\" d=\\\"M 0 348.554688 L 353.777344 119.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.21316;stroke-miterlimit:10;\\\" d=\\\"M 0 149.121094 L 353.777344 344.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.00874538;stroke-miterlimit:10;\\\" d=\\\"M 0 276.039062 L 353.777344 183.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.138754;stroke-miterlimit:10;\\\" d=\\\"M 0 137.921875 L 353.777344 174.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.388712;stroke-miterlimit:10;\\\" d=\\\"M 0 224.382812 L 353.777344 59.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0402962;stroke-miterlimit:10;\\\" d=\\\"M 0 85.972656 L 353.777344 187.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.521043;stroke-miterlimit:10;\\\" d=\\\"M 0 296.949219 L 353.777344 275.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.589473;stroke-miterlimit:10;\\\" d=\\\"M 0 136.484375 L 353.777344 155.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.968701;stroke-miterlimit:10;\\\" d=\\\"M 0 277.925781 L 353.777344 124.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 306.417969 L 353.777344 215.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.153126;stroke-miterlimit:10;\\\" d=\\\"M 0 109.46875 L 353.777344 3.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.583281;stroke-miterlimit:10;\\\" d=\\\"M 0 205.953125 L 353.777344 267.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.2049;stroke-miterlimit:10;\\\" d=\\\"M 0 23.390625 L 353.777344 38.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 292.058594 L 353.777344 136.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.721952;stroke-miterlimit:10;\\\" d=\\\"M 0 184.289062 L 353.777344 124.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.267483;stroke-miterlimit:10;\\\" d=\\\"M 0 12.703125 L 353.777344 106.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.370697;stroke-miterlimit:10;\\\" d=\\\"M 0 221.136719 L 353.777344 305.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.313043;stroke-miterlimit:10;\\\" d=\\\"M 0 327.78125 L 353.777344 317.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.198064;stroke-miterlimit:10;\\\" d=\\\"M 0 158.511719 L 353.777344 10.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.207587;stroke-miterlimit:10;\\\" d=\\\"M 0 101.027344 L 353.777344 17.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.856645;stroke-miterlimit:10;\\\" d=\\\"M 0 222.058594 L 353.777344 126.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.877406;stroke-miterlimit:10;\\\" d=\\\"M 0 189.070312 L 353.777344 154.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.360088;stroke-miterlimit:10;\\\" d=\\\"M 0 38.417969 L 353.777344 140.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.728935;stroke-miterlimit:10;\\\" d=\\\"M 0 157.910156 L 353.777344 238.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.285178;stroke-miterlimit:10;\\\" d=\\\"M 0 47.414062 L 353.777344 176.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.486215;stroke-miterlimit:10;\\\" d=\\\"M 0 91.777344 L 353.777344 278.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.560395;stroke-miterlimit:10;\\\" d=\\\"M 0 244.785156 L 353.777344 270.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.267578;stroke-miterlimit:10;\\\" d=\\\"M 0 268.621094 L 353.777344 25.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.509298;stroke-miterlimit:10;\\\" d=\\\"M 0 98.761719 L 353.777344 135.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 239.777344 L 353.777344 225.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.649276;stroke-miterlimit:10;\\\" d=\\\"M 0 182.90625 L 353.777344 114.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.820412;stroke-miterlimit:10;\\\" d=\\\"M 0 325.402344 L 353.777344 242.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.251037;stroke-miterlimit:10;\\\" d=\\\"M 0 60.097656 L 353.777344 46.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.652475;stroke-miterlimit:10;\\\" d=\\\"M 0 266.371094 L 353.777344 187.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.44877;stroke-miterlimit:10;\\\" d=\\\"M 0 223.019531 L 353.777344 72.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 351.394531 L 353.777344 147.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.86816;stroke-miterlimit:10;\\\" d=\\\"M 0 266.804688 L 353.777344 239.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.39781;stroke-miterlimit:10;\\\" d=\\\"M 0 345.917969 L 353.777344 297.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 321.394531 L 353.777344 145.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.695209;stroke-miterlimit:10;\\\" d=\\\"M 0 228.578125 L 353.777344 109.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 232.109375 L 353.777344 207.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.626495;stroke-miterlimit:10;\\\" d=\\\"M 0 133.21875 L 353.777344 249.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.359803;stroke-miterlimit:10;\\\" d=\\\"M 0 278.574219 L 353.777344 306.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.249388;stroke-miterlimit:10;\\\" d=\\\"M 0 341.613281 L 353.777344 19.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.627347;stroke-miterlimit:10;\\\" d=\\\"M 0 133.964844 L 353.777344 146.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.367268;stroke-miterlimit:10;\\\" d=\\\"M 0 242.710938 L 353.777344 52.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.627718;stroke-miterlimit:10;\\\" d=\\\"M 0 245.980469 L 353.777344 98.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.221039;stroke-miterlimit:10;\\\" d=\\\"M 0 12.226562 L 353.777344 63.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.354994;stroke-miterlimit:10;\\\" d=\\\"M 0 251.195312 L 353.777344 48.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.414476;stroke-miterlimit:10;\\\" d=\\\"M 0 69.640625 L 353.777344 122.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.66397;stroke-miterlimit:10;\\\" d=\\\"M 0 307.855469 L 353.777344 256.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.435673;stroke-miterlimit:10;\\\" d=\\\"M 0 142.351562 L 353.777344 294.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.263963;stroke-miterlimit:10;\\\" d=\\\"M 0 6.691406 L 353.777344 123.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.327685;stroke-miterlimit:10;\\\" d=\\\"M 0 38.238281 L 353.777344 325.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.634408;stroke-miterlimit:10;\\\" d=\\\"M 0 223.398438 L 353.777344 102.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 310.117188 L 353.777344 140.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.382956;stroke-miterlimit:10;\\\" d=\\\"M 0 281.011719 L 353.777344 301.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.439019;stroke-miterlimit:10;\\\" d=\\\"M 0 99.835938 L 353.777344 294.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 350.679688 L 353.777344 188.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0254397;stroke-miterlimit:10;\\\" d=\\\"M 0 283.757812 L 353.777344 174.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.406984;stroke-miterlimit:10;\\\" d=\\\"M 0 209.613281 L 353.777344 65.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.229953;stroke-miterlimit:10;\\\" d=\\\"M 0 182.484375 L 353.777344 18.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.354069;stroke-miterlimit:10;\\\" d=\\\"M 0 191.671875 L 353.777344 53.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.341794;stroke-miterlimit:10;\\\" d=\\\"M 0 67.464844 L 353.777344 88.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.926984;stroke-miterlimit:10;\\\" d=\\\"M 0 231.113281 L 353.777344 129.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.327343;stroke-miterlimit:10;\\\" d=\\\"M 0 182.949219 L 353.777344 317.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.350514;stroke-miterlimit:10;\\\" d=\\\"M 0 330.703125 L 353.777344 45.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 262.621094 L 353.777344 201.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.550955;stroke-miterlimit:10;\\\" d=\\\"M 0 168.636719 L 353.777344 102.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0897423;stroke-miterlimit:10;\\\" d=\\\"M 0 5.242188 L 353.777344 0 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.723607;stroke-miterlimit:10;\\\" d=\\\"M 0 293.21875 L 353.777344 104.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.462974;stroke-miterlimit:10;\\\" d=\\\"M 0 159.679688 L 353.777344 87.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.522289;stroke-miterlimit:10;\\\" d=\\\"M 0 351.777344 L 353.777344 275.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.300866;stroke-miterlimit:10;\\\" d=\\\"M 0 19.9375 L 353.777344 172.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.526103;stroke-miterlimit:10;\\\" d=\\\"M 0 133.097656 L 353.777344 111.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.908276;stroke-miterlimit:10;\\\" d=\\\"M 0 193.214844 L 353.777344 154.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.201556;stroke-miterlimit:10;\\\" d=\\\"M 0 315.332031 L 353.777344 345.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.631233;stroke-miterlimit:10;\\\" d=\\\"M 0 134.746094 L 353.777344 250.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.373809;stroke-miterlimit:10;\\\" d=\\\"M 0 44.035156 L 353.777344 301.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.285212;stroke-miterlimit:10;\\\" d=\\\"M 0 214.648438 L 353.777344 32.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.737795;stroke-miterlimit:10;\\\" d=\\\"M 0 176.824219 L 353.777344 246.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.32991;stroke-miterlimit:10;\\\" d=\\\"M 0 54.925781 L 353.777344 323.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.859799;stroke-miterlimit:10;\\\" d=\\\"M 0 267.347656 L 353.777344 118.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.924135;stroke-miterlimit:10;\\\" d=\\\"M 0 192.710938 L 353.777344 222.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.433158;stroke-miterlimit:10;\\\" d=\\\"M 0 98.675781 L 353.777344 104.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.674674;stroke-miterlimit:10;\\\" d=\\\"M 0 192.472656 L 353.777344 163.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.674077;stroke-miterlimit:10;\\\" d=\\\"M 0 147.144531 L 353.777344 139.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.220145;stroke-miterlimit:10;\\\" d=\\\"M 0 128.472656 L 353.777344 18.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.706675;stroke-miterlimit:10;\\\" d=\\\"M 0 229.769531 L 353.777344 110.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.217025;stroke-miterlimit:10;\\\" d=\\\"M 0 249.265625 L 353.777344 342.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.36884;stroke-miterlimit:10;\\\" d=\\\"M 0 51.347656 L 353.777344 119 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.282319;stroke-miterlimit:10;\\\" d=\\\"M 0 11.785156 L 353.777344 126.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.516143;stroke-miterlimit:10;\\\" d=\\\"M 0 307.054688 L 353.777344 78.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.443267;stroke-miterlimit:10;\\\" d=\\\"M 0 173.640625 L 353.777344 211.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.285305;stroke-miterlimit:10;\\\" d=\\\"M 0 158.035156 L 353.777344 328.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.254381;stroke-miterlimit:10;\\\" d=\\\"M 0 328.910156 L 353.777344 20.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.384827;stroke-miterlimit:10;\\\" d=\\\"M 0 130.0625 L 353.777344 306.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.601032;stroke-miterlimit:10;\\\" d=\\\"M 0 159.414062 L 353.777344 264.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 308.722656 L 353.777344 212.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.595605;stroke-miterlimit:10;\\\" d=\\\"M 0 170.324219 L 353.777344 265.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.378448;stroke-miterlimit:10;\\\" d=\\\"M 0 46.804688 L 353.777344 304.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.335513;stroke-miterlimit:10;\\\" d=\\\"M 0 36.800781 L 353.777344 297.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.298052;stroke-miterlimit:10;\\\" d=\\\"M 0 17.804688 L 353.777344 315.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.449555;stroke-miterlimit:10;\\\" d=\\\"M 0 114.269531 L 353.777344 100.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.212915;stroke-miterlimit:10;\\\" d=\\\"M 0 178.371094 L 353.777344 13.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.263118;stroke-miterlimit:10;\\\" d=\\\"M 0 12.683594 L 353.777344 102.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.757722;stroke-miterlimit:10;\\\" d=\\\"M 0 171.394531 L 353.777344 135.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.274799;stroke-miterlimit:10;\\\" d=\\\"M 0 75.671875 L 353.777344 51.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.328418;stroke-miterlimit:10;\\\" d=\\\"M 0 126.085938 L 353.777344 319.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.248935;stroke-miterlimit:10;\\\" d=\\\"M 0 305.96875 L 353.777344 19.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.430037;stroke-miterlimit:10;\\\" d=\\\"M 0 277.199219 L 353.777344 64.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 229.121094 L 353.777344 204.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.913849;stroke-miterlimit:10;\\\" d=\\\"M 0 205.347656 L 353.777344 136.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.886327;stroke-miterlimit:10;\\\" d=\\\"M 0 219.746094 L 353.777344 236.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.520704;stroke-miterlimit:10;\\\" d=\\\"M 0 111.703125 L 353.777344 124.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.495721;stroke-miterlimit:10;\\\" d=\\\"M 0 331.351562 L 353.777344 74.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.454873;stroke-miterlimit:10;\\\" d=\\\"M 0 188.910156 L 353.777344 289.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0157593;stroke-miterlimit:10;\\\" d=\\\"M 0 259.402344 L 353.777344 185.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 290.765625 L 353.777344 208.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.478268;stroke-miterlimit:10;\\\" d=\\\"M 0 90.898438 L 353.777344 281.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.483484;stroke-miterlimit:10;\\\" d=\\\"M 0 184.558594 L 353.777344 283.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.315253;stroke-miterlimit:10;\\\" d=\\\"M 0 128.945312 L 353.777344 52.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.012627;stroke-miterlimit:10;\\\" d=\\\"M 0 25.984375 L 353.777344 274.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 304.488281 L 353.777344 130.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.452445;stroke-miterlimit:10;\\\" d=\\\"M 0 276.566406 L 353.777344 68.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.409679;stroke-miterlimit:10;\\\" d=\\\"M 0 145.964844 L 353.777344 299.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.401688;stroke-miterlimit:10;\\\" d=\\\"M 0 282 L 353.777344 297.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 303.363281 L 353.777344 167.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.309427;stroke-miterlimit:10;\\\" d=\\\"M 0 28.179688 L 353.777344 111.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.420041;stroke-miterlimit:10;\\\" d=\\\"M 0 156.335938 L 353.777344 297.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.328453;stroke-miterlimit:10;\\\" d=\\\"M 0 24.46875 L 353.777344 149.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.459758;stroke-miterlimit:10;\\\" d=\\\"M 0 123.4375 L 353.777344 289.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0804781;stroke-miterlimit:10;\\\" d=\\\"M 0 302.449219 L 353.777344 180.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.137787;stroke-miterlimit:10;\\\" d=\\\"M 0 306.351562 L 353.777344 353.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.157556;stroke-miterlimit:10;\\\" d=\\\"M 0 128.472656 L 353.777344 352.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.014849;stroke-miterlimit:10;\\\" d=\\\"M 0 200.035156 L 353.777344 175.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 240.914062 L 353.777344 160.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.305078;stroke-miterlimit:10;\\\" d=\\\"M 0 272.769531 L 353.777344 34.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.639071;stroke-miterlimit:10;\\\" d=\\\"M 0 217.09375 L 353.777344 104.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 314.75 L 353.777344 139.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.549565;stroke-miterlimit:10;\\\" d=\\\"M 0 120.027344 L 353.777344 245.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.184615;stroke-miterlimit:10;\\\" d=\\\"M 0 133.464844 L 353.777344 8.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.435209;stroke-miterlimit:10;\\\" d=\\\"M 0 245.996094 L 353.777344 291.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.213807;stroke-miterlimit:10;\\\" d=\\\"M 0 35.613281 L 353.777344 348.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.420656;stroke-miterlimit:10;\\\" d=\\\"M 0 249.367188 L 353.777344 294.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.303585;stroke-miterlimit:10;\\\" d=\\\"M 0 245.160156 L 353.777344 35.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.595454;stroke-miterlimit:10;\\\" d=\\\"M 0 150.664062 L 353.777344 118.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.376395;stroke-miterlimit:10;\\\" d=\\\"M 0 136.453125 L 353.777344 70.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.471413;stroke-miterlimit:10;\\\" d=\\\"M 0 137.339844 L 353.777344 287.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.441657;stroke-miterlimit:10;\\\" d=\\\"M 0 137.429688 L 353.777344 227.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.28402;stroke-miterlimit:10;\\\" d=\\\"M 0 9.3125 L 353.777344 140.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.433373;stroke-miterlimit:10;\\\" d=\\\"M 0 74.488281 L 353.777344 126.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.184038;stroke-miterlimit:10;\\\" d=\\\"M 0 10.8125 L 353.777344 205.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.489474;stroke-miterlimit:10;\\\" d=\\\"M 0 120.375 L 353.777344 283.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 266.484375 L 353.777344 134.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 335.351562 L 353.777344 170.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.822563;stroke-miterlimit:10;\\\" d=\\\"M 0 220.105469 L 353.777344 241.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.749761;stroke-miterlimit:10;\\\" d=\\\"M 0 163.40625 L 353.777344 149.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.366687;stroke-miterlimit:10;\\\" d=\\\"M 0 138.113281 L 353.777344 67.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.466994;stroke-miterlimit:10;\\\" d=\\\"M 0 83.835938 L 353.777344 134.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.220208;stroke-miterlimit:10;\\\" d=\\\"M 0 160.160156 L 353.777344 16.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0832487;stroke-miterlimit:10;\\\" d=\\\"M 0 71.976562 L 353.777344 188.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.405572;stroke-miterlimit:10;\\\" d=\\\"M 0 117.78125 L 353.777344 236.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 278.523438 L 353.777344 153.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.334003;stroke-miterlimit:10;\\\" d=\\\"M 0 181.21875 L 353.777344 315.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0330283;stroke-miterlimit:10;\\\" d=\\\"M 0 39.734375 L 353.777344 265.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.21462;stroke-miterlimit:10;\\\" d=\\\"M 0 274.777344 L 353.777344 11.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 311.085938 L 353.777344 145.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.316201;stroke-miterlimit:10;\\\" d=\\\"M 0 120.996094 L 353.777344 322.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.177071;stroke-miterlimit:10;\\\" d=\\\"M 0 304.550781 L 353.777344 349.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.161168;stroke-miterlimit:10;\\\" d=\\\"M 0 82.167969 L 353.777344 5.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.303842;stroke-miterlimit:10;\\\" d=\\\"M 0 258.949219 L 353.777344 321.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.391842;stroke-miterlimit:10;\\\" d=\\\"M 0 66.113281 L 353.777344 114.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.825195;stroke-miterlimit:10;\\\" d=\\\"M 0 208.605469 L 353.777344 240.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.235447;stroke-miterlimit:10;\\\" d=\\\"M 0 78.742188 L 353.777344 177 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.368757;stroke-miterlimit:10;\\\" d=\\\"M 0 98.726562 L 353.777344 246.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.265563;stroke-miterlimit:10;\\\" d=\\\"M 0 58.101562 L 353.777344 268.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.490226;stroke-miterlimit:10;\\\" d=\\\"M 0 196.632812 L 353.777344 282.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 330.816406 L 353.777344 159.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.323726;stroke-miterlimit:10;\\\" d=\\\"M 0 71.226562 L 353.777344 170.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.174625;stroke-miterlimit:10;\\\" d=\\\"M 0 13 L 353.777344 24.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 293.734375 L 353.777344 141.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 266.046875 L 353.777344 203.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.58419;stroke-miterlimit:10;\\\" d=\\\"M 0 286.796875 L 353.777344 266.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.450392;stroke-miterlimit:10;\\\" d=\\\"M 0 167.761719 L 353.777344 82.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.687638;stroke-miterlimit:10;\\\" d=\\\"M 0 335.804688 L 353.777344 99.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.268001;stroke-miterlimit:10;\\\" d=\\\"M 0 327.519531 L 353.777344 24.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.48821;stroke-miterlimit:10;\\\" d=\\\"M 0 101.84375 L 353.777344 281.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.30343;stroke-miterlimit:10;\\\" d=\\\"M 0 14.980469 L 353.777344 145.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.62843;stroke-miterlimit:10;\\\" d=\\\"M 0 157.421875 L 353.777344 121.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.185896;stroke-miterlimit:10;\\\" d=\\\"M 0 37.660156 L 353.777344 351.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.411787;stroke-miterlimit:10;\\\" d=\\\"M 0 60.136719 L 353.777344 292.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.260797;stroke-miterlimit:10;\\\" d=\\\"M 0 20.558594 L 353.777344 84.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.269427;stroke-miterlimit:10;\\\" d=\\\"M 0 52.777344 L 353.777344 272.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.601243;stroke-miterlimit:10;\\\" d=\\\"M 0 333.855469 L 353.777344 89.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.321228;stroke-miterlimit:10;\\\" d=\\\"M 0 227.484375 L 353.777344 317.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.282102;stroke-miterlimit:10;\\\" d=\\\"M 0 104.828125 L 353.777344 331.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.221028;stroke-miterlimit:10;\\\" d=\\\"M 0 186.34375 L 353.777344 15.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 268.164062 L 353.777344 198.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.526712;stroke-miterlimit:10;\\\" d=\\\"M 0 230.167969 L 353.777344 275.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.188679;stroke-miterlimit:10;\\\" d=\\\"M 0 14.644531 L 353.777344 33.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.324193;stroke-miterlimit:10;\\\" d=\\\"M 0 69.363281 L 353.777344 324.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 315.808594 L 353.777344 131.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.202288;stroke-miterlimit:10;\\\" d=\\\"M 0 9.640625 L 353.777344 313.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.305439;stroke-miterlimit:10;\\\" d=\\\"M 0 193.210938 L 353.777344 322.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.493012;stroke-miterlimit:10;\\\" d=\\\"M 0 194.398438 L 353.777344 85.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 345.339844 L 353.777344 154.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.382931;stroke-miterlimit:10;\\\" d=\\\"M 0 142.585938 L 353.777344 71.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.402959;stroke-miterlimit:10;\\\" d=\\\"M 0 290.25 L 353.777344 297.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.871893;stroke-miterlimit:10;\\\" d=\\\"M 0 184.613281 L 353.777344 226.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 334.339844 L 353.777344 144.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.361406;stroke-miterlimit:10;\\\" d=\\\"M 0 127.542969 L 353.777344 311.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.566194;stroke-miterlimit:10;\\\" d=\\\"M 0 295.585938 L 353.777344 268.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.294543;stroke-miterlimit:10;\\\" d=\\\"M 0 129.964844 L 353.777344 327.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.144202;stroke-miterlimit:10;\\\" d=\\\"M 0 98.167969 L 353.777344 353.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.792504;stroke-miterlimit:10;\\\" d=\\\"M 0 243.433594 L 353.777344 116.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.544929;stroke-miterlimit:10;\\\" d=\\\"M 0 112.316406 L 353.777344 253.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.992335;stroke-miterlimit:10;\\\" d=\\\"M 0 292.664062 L 353.777344 124.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.585783;stroke-miterlimit:10;\\\" d=\\\"M 0 127.835938 L 353.777344 131.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 308.589844 L 353.777344 154.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.397789;stroke-miterlimit:10;\\\" d=\\\"M 0 54.527344 L 353.777344 293.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.271538;stroke-miterlimit:10;\\\" d=\\\"M 0 5.128906 L 353.777344 145.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.568209;stroke-miterlimit:10;\\\" d=\\\"M 0 342.90625 L 353.777344 85.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.47844;stroke-miterlimit:10;\\\" d=\\\"M 0 253.449219 L 353.777344 283.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.348062;stroke-miterlimit:10;\\\" d=\\\"M 0 96.132812 L 353.777344 246.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.297834;stroke-miterlimit:10;\\\" d=\\\"M 0 177.089844 L 353.777344 39.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.630521;stroke-miterlimit:10;\\\" d=\\\"M 0 150.140625 L 353.777344 125.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 266.695312 L 353.777344 139.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.48129;stroke-miterlimit:10;\\\" d=\\\"M 0 100.195312 L 353.777344 283.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.542331;stroke-miterlimit:10;\\\" d=\\\"M 0 133.042969 L 353.777344 115.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.792158;stroke-miterlimit:10;\\\" d=\\\"M 0 180.785156 L 353.777344 239.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.382827;stroke-miterlimit:10;\\\" d=\\\"M 0 85.960938 L 353.777344 93.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.57362;stroke-miterlimit:10;\\\" d=\\\"M 0 190.648438 L 353.777344 269.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.228013;stroke-miterlimit:10;\\\" d=\\\"M 0 51.777344 L 353.777344 37.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0262368;stroke-miterlimit:10;\\\" d=\\\"M 0 13.402344 L 353.777344 291.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.265361;stroke-miterlimit:10;\\\" d=\\\"M 0 13.402344 L 353.777344 102.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.261721;stroke-miterlimit:10;\\\" d=\\\"M 0 221.238281 L 353.777344 25.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.242657;stroke-miterlimit:10;\\\" d=\\\"M 0 174.257812 L 353.777344 338.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.432881;stroke-miterlimit:10;\\\" d=\\\"M 0 260.296875 L 353.777344 65.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.455233;stroke-miterlimit:10;\\\" d=\\\"M 0 333.765625 L 353.777344 67.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.503068;stroke-miterlimit:10;\\\" d=\\\"M 0 341.898438 L 353.777344 278.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.416541;stroke-miterlimit:10;\\\" d=\\\"M 0 335.855469 L 353.777344 59.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.333826;stroke-miterlimit:10;\\\" d=\\\"M 0 39.058594 L 353.777344 112.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.334259;stroke-miterlimit:10;\\\" d=\\\"M 0 27.324219 L 353.777344 313.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.46762;stroke-miterlimit:10;\\\" d=\\\"M 0 242.679688 L 353.777344 74.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.28486;stroke-miterlimit:10;\\\" d=\\\"M 0 20.199219 L 353.777344 105.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.441032;stroke-miterlimit:10;\\\" d=\\\"M 0 295.570312 L 353.777344 289.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.272517;stroke-miterlimit:10;\\\" d=\\\"M 0 91.296875 L 353.777344 45.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.648833;stroke-miterlimit:10;\\\" d=\\\"M 0 174.75 L 353.777344 258.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.647779;stroke-miterlimit:10;\\\" d=\\\"M 0 187.105469 L 353.777344 113.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.47335;stroke-miterlimit:10;\\\" d=\\\"M 0 97.710938 L 353.777344 285.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.192171;stroke-miterlimit:10;\\\" d=\\\"M 0 340.675781 L 353.777344 347.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.217783;stroke-miterlimit:10;\\\" d=\\\"M 0 337.089844 L 353.777344 11.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.747887;stroke-miterlimit:10;\\\" d=\\\"M 0 183.367188 L 353.777344 127.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.262242;stroke-miterlimit:10;\\\" d=\\\"M 0 96.480469 L 353.777344 336.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0106406;stroke-miterlimit:10;\\\" d=\\\"M 0 27.519531 L 353.777344 273 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.346627;stroke-miterlimit:10;\\\" d=\\\"M 0 174.371094 L 353.777344 312.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0980762;stroke-miterlimit:10;\\\" d=\\\"M 0 45.308594 L 353.777344 266.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.804912;stroke-miterlimit:10;\\\" d=\\\"M 0 175.105469 L 353.777344 234.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.00768395;stroke-miterlimit:10;\\\" d=\\\"M 0 54.769531 L 353.777344 250.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.228948;stroke-miterlimit:10;\\\" d=\\\"M 0 143.632812 L 353.777344 20.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.29402;stroke-miterlimit:10;\\\" d=\\\"M 0 271.738281 L 353.777344 323.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.208195;stroke-miterlimit:10;\\\" d=\\\"M 0 107.320312 L 353.777344 17.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.301976;stroke-miterlimit:10;\\\" d=\\\"M 0 67.144531 L 353.777344 68.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.25332;stroke-miterlimit:10;\\\" d=\\\"M 0 152.910156 L 353.777344 336.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.405762;stroke-miterlimit:10;\\\" d=\\\"M 0 246.175781 L 353.777344 61.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.327256;stroke-miterlimit:10;\\\" d=\\\"M 0 181.46875 L 353.777344 47.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.366413;stroke-miterlimit:10;\\\" d=\\\"M 0 331.644531 L 353.777344 304.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.837217;stroke-miterlimit:10;\\\" d=\\\"M 0 348.800781 L 353.777344 112.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.211435;stroke-miterlimit:10;\\\" d=\\\"M 0 75.441406 L 353.777344 179.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.834695;stroke-miterlimit:10;\\\" d=\\\"M 0 337.527344 L 353.777344 111.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.210534;stroke-miterlimit:10;\\\" d=\\\"M 0 73.457031 L 353.777344 179.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.36376;stroke-miterlimit:10;\\\" d=\\\"M 0 163.378906 L 353.777344 61 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.386726;stroke-miterlimit:10;\\\" d=\\\"M 0 350.167969 L 353.777344 53.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.44769;stroke-miterlimit:10;\\\" d=\\\"M 0 210.703125 L 353.777344 74.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.271688;stroke-miterlimit:10;\\\" d=\\\"M 0 245.503906 L 353.777344 26.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.328528;stroke-miterlimit:10;\\\" d=\\\"M 0 341.503906 L 353.777344 313.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 291.695312 L 353.777344 144.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.697384;stroke-miterlimit:10;\\\" d=\\\"M 0 224.390625 L 353.777344 253.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.30534;stroke-miterlimit:10;\\\" d=\\\"M 0 211.5 L 353.777344 321.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.292194;stroke-miterlimit:10;\\\" d=\\\"M 0 26.632812 L 353.777344 177.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.3143;stroke-miterlimit:10;\\\" d=\\\"M 0 69.503906 L 353.777344 73.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.56223;stroke-miterlimit:10;\\\" d=\\\"M 0 300.671875 L 353.777344 269.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.666224;stroke-miterlimit:10;\\\" d=\\\"M 0 271.949219 L 353.777344 256.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.202017;stroke-miterlimit:10;\\\" d=\\\"M 0 238.289062 L 353.777344 345.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.156818;stroke-miterlimit:10;\\\" d=\\\"M 0 226.597656 L 353.777344 351.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 332.449219 L 353.777344 124.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 295.136719 L 353.777344 226.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.28649;stroke-miterlimit:10;\\\" d=\\\"M 0 88.765625 L 353.777344 247.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.315746;stroke-miterlimit:10;\\\" d=\\\"M 0 43.109375 L 353.777344 328.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.390691;stroke-miterlimit:10;\\\" d=\\\"M 0 138.609375 L 353.777344 166.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.391909;stroke-miterlimit:10;\\\" d=\\\"M 0 85.445312 L 353.777344 97.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.356067;stroke-miterlimit:10;\\\" d=\\\"M 0 338.703125 L 353.777344 46.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.354666;stroke-miterlimit:10;\\\" d=\\\"M 0 288.449219 L 353.777344 308 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.36425;stroke-miterlimit:10;\\\" d=\\\"M 0 60.917969 L 353.777344 104.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.406139;stroke-miterlimit:10;\\\" d=\\\"M 0 85.667969 L 353.777344 103.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.557457;stroke-miterlimit:10;\\\" d=\\\"M 0 209.078125 L 353.777344 94.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.157821;stroke-miterlimit:10;\\\" d=\\\"M 0 293.089844 L 353.777344 2.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.339506;stroke-miterlimit:10;\\\" d=\\\"M 0 236.875 L 353.777344 45.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.321084;stroke-miterlimit:10;\\\" d=\\\"M 0 265.371094 L 353.777344 39.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.473234;stroke-miterlimit:10;\\\" d=\\\"M 0 87.265625 L 353.777344 281.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 269.15625 L 353.777344 148.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.99463;stroke-miterlimit:10;\\\" d=\\\"M 0 204.445312 L 353.777344 154.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.330026;stroke-miterlimit:10;\\\" d=\\\"M 0 249.277344 L 353.777344 42.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 336.90625 L 353.777344 131.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.490003;stroke-miterlimit:10;\\\" d=\\\"M 0 270.226562 L 353.777344 76.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.452976;stroke-miterlimit:10;\\\" d=\\\"M 0 322.878906 L 353.777344 286.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.478551;stroke-miterlimit:10;\\\" d=\\\"M 0 100.609375 L 353.777344 156.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.467961;stroke-miterlimit:10;\\\" d=\\\"M 0 195.1875 L 353.777344 286.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 275.410156 L 353.777344 144.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.891643;stroke-miterlimit:10;\\\" d=\\\"M 0 204.429688 L 353.777344 160.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.231112;stroke-miterlimit:10;\\\" d=\\\"M 0 62.007812 L 353.777344 35.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.447508;stroke-miterlimit:10;\\\" d=\\\"M 0 113.851562 L 353.777344 292.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.263771;stroke-miterlimit:10;\\\" d=\\\"M 0 2.671875 L 353.777344 174.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.427794;stroke-miterlimit:10;\\\" d=\\\"M 0 173.945312 L 353.777344 75.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.663066;stroke-miterlimit:10;\\\" d=\\\"M 0 277.425781 L 353.777344 257.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.612097;stroke-miterlimit:10;\\\" d=\\\"M 0 322.1875 L 353.777344 91.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.282328;stroke-miterlimit:10;\\\" d=\\\"M 0 31.445312 L 353.777344 86.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.837962;stroke-miterlimit:10;\\\" d=\\\"M 0 228.1875 L 353.777344 240.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 342.898438 L 353.777344 133.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.451082;stroke-miterlimit:10;\\\" d=\\\"M 0 169.597656 L 353.777344 82.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.32444;stroke-miterlimit:10;\\\" d=\\\"M 0 130.6875 L 353.777344 55.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.302595;stroke-miterlimit:10;\\\" d=\\\"M 0 117.222656 L 353.777344 50.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.309611;stroke-miterlimit:10;\\\" d=\\\"M 0 100.160156 L 353.777344 325.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.813689;stroke-miterlimit:10;\\\" d=\\\"M 0 184.371094 L 353.777344 136.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.377726;stroke-miterlimit:10;\\\" d=\\\"M 0 47.375 L 353.777344 152.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.504321;stroke-miterlimit:10;\\\" d=\\\"M 0 195.8125 L 353.777344 279.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 306.660156 L 353.777344 221.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.416003;stroke-miterlimit:10;\\\" d=\\\"M 0 137.949219 L 353.777344 226.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0104291;stroke-miterlimit:10;\\\" d=\\\"M 0 208.847656 L 353.777344 175.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0653013;stroke-miterlimit:10;\\\" d=\\\"M 0 111.816406 L 353.777344 180.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.724692;stroke-miterlimit:10;\\\" d=\\\"M 0 309.046875 L 353.777344 103.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.212991;stroke-miterlimit:10;\\\" d=\\\"M 0 36.917969 L 353.777344 35.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.266468;stroke-miterlimit:10;\\\" d=\\\"M 0 129.691406 L 353.777344 334.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 352.917969 L 353.777344 157.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.392431;stroke-miterlimit:10;\\\" d=\\\"M 0 152.316406 L 353.777344 167.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 261.0625 L 353.777344 223.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.147413;stroke-miterlimit:10;\\\" d=\\\"M 0 93.167969 L 353.777344 2.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.607272;stroke-miterlimit:10;\\\" d=\\\"M 0 282.179688 L 353.777344 263.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.326951;stroke-miterlimit:10;\\\" d=\\\"M 0 64.113281 L 353.777344 83.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.318136;stroke-miterlimit:10;\\\" d=\\\"M 0 20.890625 L 353.777344 318.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.477228;stroke-miterlimit:10;\\\" d=\\\"M 0 96.902344 L 353.777344 122.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.265485;stroke-miterlimit:10;\\\" d=\\\"M 0 199.429688 L 353.777344 27.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.385108;stroke-miterlimit:10;\\\" d=\\\"M 0 331.914062 L 353.777344 53.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.549075;stroke-miterlimit:10;\\\" d=\\\"M 0 294.582031 L 353.777344 84.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.366011;stroke-miterlimit:10;\\\" d=\\\"M 0 324.332031 L 353.777344 48.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.303267;stroke-miterlimit:10;\\\" d=\\\"M 0 140.351562 L 353.777344 324.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.375652;stroke-miterlimit:10;\\\" d=\\\"M 0 182.480469 L 353.777344 305.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.293295;stroke-miterlimit:10;\\\" d=\\\"M 0 115.507812 L 353.777344 47.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.292353;stroke-miterlimit:10;\\\" d=\\\"M 0 109.308594 L 353.777344 48.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.408331;stroke-miterlimit:10;\\\" d=\\\"M 0 66.328125 L 353.777344 156.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.490407;stroke-miterlimit:10;\\\" d=\\\"M 0 160.199219 L 353.777344 93.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.309236;stroke-miterlimit:10;\\\" d=\\\"M 0 23.855469 L 353.777344 330.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.409133;stroke-miterlimit:10;\\\" d=\\\"M 0 174.601562 L 353.777344 298.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.577663;stroke-miterlimit:10;\\\" d=\\\"M 0 211.769531 L 353.777344 97.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.268403;stroke-miterlimit:10;\\\" d=\\\"M 0 84.59375 L 353.777344 45.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.505117;stroke-miterlimit:10;\\\" d=\\\"M 0 128.269531 L 353.777344 280.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 324.226562 L 353.777344 127.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.480039;stroke-miterlimit:10;\\\" d=\\\"M 0 229.085938 L 353.777344 78.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.534588;stroke-miterlimit:10;\\\" d=\\\"M 0 114.0625 L 353.777344 271.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.44306;stroke-miterlimit:10;\\\" d=\\\"M 0 75.386719 L 353.777344 288.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.23244;stroke-miterlimit:10;\\\" d=\\\"M 0 321.40625 L 353.777344 338.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.708414;stroke-miterlimit:10;\\\" d=\\\"M 0 162.132812 L 353.777344 247.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.247795;stroke-miterlimit:10;\\\" d=\\\"M 0 35.691406 L 353.777344 58.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.754897;stroke-miterlimit:10;\\\" d=\\\"M 0 206.46875 L 353.777344 205.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.549463;stroke-miterlimit:10;\\\" d=\\\"M 0 122.132812 L 353.777344 244.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.512961;stroke-miterlimit:10;\\\" d=\\\"M 0 255.660156 L 353.777344 81.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.422142;stroke-miterlimit:10;\\\" d=\\\"M 0 119.210938 L 353.777344 90.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 340.1875 L 353.777344 151.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.256048;stroke-miterlimit:10;\\\" d=\\\"M 0 138.191406 L 353.777344 30.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.416676;stroke-miterlimit:10;\\\" d=\\\"M 0 264.566406 L 353.777344 62.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.319658;stroke-miterlimit:10;\\\" d=\\\"M 0 136.738281 L 353.777344 52.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.335364;stroke-miterlimit:10;\\\" d=\\\"M 0 212.109375 L 353.777344 46.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0254846;stroke-miterlimit:10;\\\" d=\\\"M 0 68.878906 L 353.777344 194.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.759626;stroke-miterlimit:10;\\\" d=\\\"M 0 307.597656 L 353.777344 247.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.454053;stroke-miterlimit:10;\\\" d=\\\"M 0 94.234375 L 353.777344 290.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.312595;stroke-miterlimit:10;\\\" d=\\\"M 0 37.296875 L 353.777344 329.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.873131;stroke-miterlimit:10;\\\" d=\\\"M 0 185.054688 L 353.777344 227.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.568393;stroke-miterlimit:10;\\\" d=\\\"M 0 174.3125 L 353.777344 269.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0604749;stroke-miterlimit:10;\\\" d=\\\"M 0 26.683594 L 353.777344 209.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.451023;stroke-miterlimit:10;\\\" d=\\\"M 0 181.417969 L 353.777344 290.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.224954;stroke-miterlimit:10;\\\" d=\\\"M 0 123 L 353.777344 343.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.337748;stroke-miterlimit:10;\\\" d=\\\"M 0 108.996094 L 353.777344 318.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.724312;stroke-miterlimit:10;\\\" d=\\\"M 0 316.292969 L 353.777344 103.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.397204;stroke-miterlimit:10;\\\" d=\\\"M 0 321.703125 L 353.777344 298.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.143676;stroke-miterlimit:10;\\\" d=\\\"M 0 239.238281 L 353.777344 352.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.29008;stroke-miterlimit:10;\\\" d=\\\"M 0 33.640625 L 353.777344 89.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.429182;stroke-miterlimit:10;\\\" d=\\\"M 0 106.078125 L 353.777344 163.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.721118;stroke-miterlimit:10;\\\" d=\\\"M 0 313.511719 L 353.777344 103.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.204895;stroke-miterlimit:10;\\\" d=\\\"M 0 181.820312 L 353.777344 345.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.511904;stroke-miterlimit:10;\\\" d=\\\"M 0 104.992188 L 353.777344 275.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.271624;stroke-miterlimit:10;\\\" d=\\\"M 0 21.847656 L 353.777344 91.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.27625;stroke-miterlimit:10;\\\" d=\\\"M 0 133.464844 L 353.777344 331.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 245.617188 L 353.777344 223.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.737014;stroke-miterlimit:10;\\\" d=\\\"M 0 172.789062 L 353.777344 245.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.329093;stroke-miterlimit:10;\\\" d=\\\"M 0 125.289062 L 353.777344 58.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.506302;stroke-miterlimit:10;\\\" d=\\\"M 0 291.804688 L 353.777344 77.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.309851;stroke-miterlimit:10;\\\" d=\\\"M 0 72.71875 L 353.777344 327.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.326264;stroke-miterlimit:10;\\\" d=\\\"M 0 198.398438 L 353.777344 45.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 346.257812 L 353.777344 215.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.574302;stroke-miterlimit:10;\\\" d=\\\"M 0 148.421875 L 353.777344 115.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.666158;stroke-miterlimit:10;\\\" d=\\\"M 0 169.152344 L 353.777344 122.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.548673;stroke-miterlimit:10;\\\" d=\\\"M 0 114.207031 L 353.777344 252.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.376052;stroke-miterlimit:10;\\\" d=\\\"M 0 96.207031 L 353.777344 85.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.706061;stroke-miterlimit:10;\\\" d=\\\"M 0 216.203125 L 353.777344 252.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.277869;stroke-miterlimit:10;\\\" d=\\\"M 0 343.699219 L 353.777344 26.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.579456;stroke-miterlimit:10;\\\" d=\\\"M 0 121.003906 L 353.777344 259.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0260474;stroke-miterlimit:10;\\\" d=\\\"M 0 85.976562 L 353.777344 235.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.964154;stroke-miterlimit:10;\\\" d=\\\"M 0 217.84375 L 353.777344 136.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.182945;stroke-miterlimit:10;\\\" d=\\\"M 0 9.1875 L 353.777344 34.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.253833;stroke-miterlimit:10;\\\" d=\\\"M 0 296.324219 L 353.777344 20.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.293879;stroke-miterlimit:10;\\\" d=\\\"M 0 15.84375 L 353.777344 317.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.640263;stroke-miterlimit:10;\\\" d=\\\"M 0 181.445312 L 353.777344 259.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.455793;stroke-miterlimit:10;\\\" d=\\\"M 0 275.445312 L 353.777344 286.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.37944;stroke-miterlimit:10;\\\" d=\\\"M 0 180.421875 L 353.777344 208.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.245033;stroke-miterlimit:10;\\\" d=\\\"M 0 20.804688 L 353.777344 71.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.950812;stroke-miterlimit:10;\\\" d=\\\"M 0 261.539062 L 353.777344 168.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.427654;stroke-miterlimit:10;\\\" d=\\\"M 0 320.1875 L 353.777344 291.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.235885;stroke-miterlimit:10;\\\" d=\\\"M 0 161.78125 L 353.777344 21.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.178146;stroke-miterlimit:10;\\\" d=\\\"M 0 16.730469 L 353.777344 202.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.739724;stroke-miterlimit:10;\\\" d=\\\"M 0 195.503906 L 353.777344 248.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.49246;stroke-miterlimit:10;\\\" d=\\\"M 0 102.800781 L 353.777344 253.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.268063;stroke-miterlimit:10;\\\" d=\\\"M 0 128.191406 L 353.777344 333.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.660017;stroke-miterlimit:10;\\\" d=\\\"M 0 241 L 353.777344 103.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.559343;stroke-miterlimit:10;\\\" d=\\\"M 0 222.023438 L 353.777344 167.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.450838;stroke-miterlimit:10;\\\" d=\\\"M 0 167.835938 L 353.777344 82.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0886972;stroke-miterlimit:10;\\\" d=\\\"M 0 17.652344 L 353.777344 213.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 282.601562 L 353.777344 142.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 263.292969 L 353.777344 193.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 334.519531 L 353.777344 211.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.341057;stroke-miterlimit:10;\\\" d=\\\"M 0 298.859375 L 353.777344 311.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.520598;stroke-miterlimit:10;\\\" d=\\\"M 0 311.148438 L 353.777344 275.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.758944;stroke-miterlimit:10;\\\" d=\\\"M 0 170.476562 L 353.777344 241.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.275801;stroke-miterlimit:10;\\\" d=\\\"M 0 174.648438 L 353.777344 330.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.959066;stroke-miterlimit:10;\\\" d=\\\"M 0 211.625 L 353.777344 229.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.537757;stroke-miterlimit:10;\\\" d=\\\"M 0 318.410156 L 353.777344 81.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.653675;stroke-miterlimit:10;\\\" d=\\\"M 0 270.875 L 353.777344 258.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.861839;stroke-miterlimit:10;\\\" d=\\\"M 0 336.835938 L 353.777344 239.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.220541;stroke-miterlimit:10;\\\" d=\\\"M 0 115.980469 L 353.777344 20.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.207908;stroke-miterlimit:10;\\\" d=\\\"M 0 19.722656 L 353.777344 43.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.801623;stroke-miterlimit:10;\\\" d=\\\"M 0 349.839844 L 353.777344 244.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.102011;stroke-miterlimit:10;\\\" d=\\\"M 0 14.320312 L 353.777344 214.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.181508;stroke-miterlimit:10;\\\" d=\\\"M 0 179.128906 L 353.777344 6.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.172073;stroke-miterlimit:10;\\\" d=\\\"M 0 53.484375 L 353.777344 11.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.203476;stroke-miterlimit:10;\\\" d=\\\"M 0 1.769531 L 353.777344 72.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.405467;stroke-miterlimit:10;\\\" d=\\\"M 0 61.402344 L 353.777344 129.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.857386;stroke-miterlimit:10;\\\" d=\\\"M 0 246.929688 L 353.777344 239.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.477114;stroke-miterlimit:10;\\\" d=\\\"M 0 86.695312 L 353.777344 271.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 262.507812 L 353.777344 195.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0144451;stroke-miterlimit:10;\\\" d=\\\"M 0 79.65625 L 353.777344 192.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.746378;stroke-miterlimit:10;\\\" d=\\\"M 0 196.65625 L 353.777344 247.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.653532;stroke-miterlimit:10;\\\" d=\\\"M 0 283.78125 L 353.777344 258.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.160945;stroke-miterlimit:10;\\\" d=\\\"M 0 74.488281 L 353.777344 5.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.375068;stroke-miterlimit:10;\\\" d=\\\"M 0 262.519531 L 353.777344 53.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.304933;stroke-miterlimit:10;\\\" d=\\\"M 0 16.339844 L 353.777344 320.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.302089;stroke-miterlimit:10;\\\" d=\\\"M 0 142.230469 L 353.777344 325.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.629975;stroke-miterlimit:10;\\\" d=\\\"M 0 206.246094 L 353.777344 105.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.20811;stroke-miterlimit:10;\\\" d=\\\"M 0 67.472656 L 353.777344 348.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.710297;stroke-miterlimit:10;\\\" d=\\\"M 0 268.667969 L 353.777344 252.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.225413;stroke-miterlimit:10;\\\" d=\\\"M 0 56.792969 L 353.777344 181.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.229611;stroke-miterlimit:10;\\\" d=\\\"M 0 309.828125 L 353.777344 14.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 294.832031 L 353.777344 163.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.577881;stroke-miterlimit:10;\\\" d=\\\"M 0 162.496094 L 353.777344 268.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.353606;stroke-miterlimit:10;\\\" d=\\\"M 0 140.851562 L 353.777344 62.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.715199;stroke-miterlimit:10;\\\" d=\\\"M 0 243.976562 L 353.777344 108.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.347044;stroke-miterlimit:10;\\\" d=\\\"M 0 161.496094 L 353.777344 313.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.414948;stroke-miterlimit:10;\\\" d=\\\"M 0 80.957031 L 353.777344 263.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.50232;stroke-miterlimit:10;\\\" d=\\\"M 0 225.730469 L 353.777344 279.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 210.28125 L 353.777344 214.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.398599;stroke-miterlimit:10;\\\" d=\\\"M 0 266.132812 L 353.777344 298.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 305.691406 L 353.777344 191.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.386124;stroke-miterlimit:10;\\\" d=\\\"M 0 57.484375 L 353.777344 282.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0464589;stroke-miterlimit:10;\\\" d=\\\"M 0 24.164062 L 353.777344 213.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.320586;stroke-miterlimit:10;\\\" d=\\\"M 0 339.503906 L 353.777344 37.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.467255;stroke-miterlimit:10;\\\" d=\\\"M 0 111.949219 L 353.777344 107.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.451444;stroke-miterlimit:10;\\\" d=\\\"M 0 83.222656 L 353.777344 267.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.579676;stroke-miterlimit:10;\\\" d=\\\"M 0 176.230469 L 353.777344 105.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 349.8125 L 353.777344 152.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.276987;stroke-miterlimit:10;\\\" d=\\\"M 0 224.976562 L 353.777344 328.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.199736;stroke-miterlimit:10;\\\" d=\\\"M 0 335.558594 L 353.777344 345.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.936681;stroke-miterlimit:10;\\\" d=\\\"M 0 200.15625 L 353.777344 142.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.564498;stroke-miterlimit:10;\\\" d=\\\"M 0 319.789062 L 353.777344 268.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.140535;stroke-miterlimit:10;\\\" d=\\\"M 0 20.011719 L 353.777344 294.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.317784;stroke-miterlimit:10;\\\" d=\\\"M 0 30.066406 L 353.777344 115.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.44237;stroke-miterlimit:10;\\\" d=\\\"M 0 335.554688 L 353.777344 288.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.245504;stroke-miterlimit:10;\\\" d=\\\"M 0 281.769531 L 353.777344 335.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.604552;stroke-miterlimit:10;\\\" d=\\\"M 0 290.152344 L 353.777344 263.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.436276;stroke-miterlimit:10;\\\" d=\\\"M 0 324.699219 L 353.777344 290.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.332806;stroke-miterlimit:10;\\\" d=\\\"M 0 152.488281 L 353.777344 53.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 290.820312 L 353.777344 224.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.659005;stroke-miterlimit:10;\\\" d=\\\"M 0 151.175781 L 353.777344 130.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.316184;stroke-miterlimit:10;\\\" d=\\\"M 0 19.847656 L 353.777344 145.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.226259;stroke-miterlimit:10;\\\" d=\\\"M 0 47.675781 L 353.777344 38.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.358223;stroke-miterlimit:10;\\\" d=\\\"M 0 73.65625 L 353.777344 315.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.475302;stroke-miterlimit:10;\\\" d=\\\"M 0 303.425781 L 353.777344 282.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.35868;stroke-miterlimit:10;\\\" d=\\\"M 0 107.054688 L 353.777344 74.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.484229;stroke-miterlimit:10;\\\" d=\\\"M 0 206.632812 L 353.777344 201.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.395013;stroke-miterlimit:10;\\\" d=\\\"M 0 59.6875 L 353.777344 124.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 289.199219 L 353.777344 191.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.568359;stroke-miterlimit:10;\\\" d=\\\"M 0 145.851562 L 353.777344 115.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.614733;stroke-miterlimit:10;\\\" d=\\\"M 0 133.558594 L 353.777344 242.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.843808;stroke-miterlimit:10;\\\" d=\\\"M 0 311.195312 L 353.777344 113.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.541789;stroke-miterlimit:10;\\\" d=\\\"M 0 206.335938 L 353.777344 92.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 233.65625 L 353.777344 150.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.733725;stroke-miterlimit:10;\\\" d=\\\"M 0 333.097656 L 353.777344 249.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 298.269531 L 353.777344 221.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.518232;stroke-miterlimit:10;\\\" d=\\\"M 0 250.691406 L 353.777344 82.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.266611;stroke-miterlimit:10;\\\" d=\\\"M 0 6.507812 L 353.777344 128.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.413126;stroke-miterlimit:10;\\\" d=\\\"M 0 127.722656 L 353.777344 84.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.227122;stroke-miterlimit:10;\\\" d=\\\"M 0 40.578125 L 353.777344 42.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.524677;stroke-miterlimit:10;\\\" d=\\\"M 0 109.304688 L 353.777344 252.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 313.777344 L 353.777344 127.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.51711;stroke-miterlimit:10;\\\" d=\\\"M 0 148.34375 L 353.777344 278.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.388555;stroke-miterlimit:10;\\\" d=\\\"M 0 67.324219 L 353.777344 161.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.222442;stroke-miterlimit:10;\\\" d=\\\"M 0 236.75 L 353.777344 341.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.135572;stroke-miterlimit:10;\\\" d=\\\"M 0 29.84375 L 353.777344 3.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.526535;stroke-miterlimit:10;\\\" d=\\\"M 0 206.945312 L 353.777344 89.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.374594;stroke-miterlimit:10;\\\" d=\\\"M 0 185.765625 L 353.777344 60.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.262506;stroke-miterlimit:10;\\\" d=\\\"M 0 186.65625 L 353.777344 333.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.209741;stroke-miterlimit:10;\\\" d=\\\"M 0 22.027344 L 353.777344 42.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.449513;stroke-miterlimit:10;\\\" d=\\\"M 0 77.804688 L 353.777344 274.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.456112;stroke-miterlimit:10;\\\" d=\\\"M 0 115.84375 L 353.777344 102.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.817363;stroke-miterlimit:10;\\\" d=\\\"M 0 316.277344 L 353.777344 243.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.282268;stroke-miterlimit:10;\\\" d=\\\"M 0 172.519531 L 353.777344 34.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 338.890625 L 353.777344 172.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.446699;stroke-miterlimit:10;\\\" d=\\\"M 0 83.476562 L 353.777344 265.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.368757;stroke-miterlimit:10;\\\" d=\\\"M 0 198.570312 L 353.777344 306.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.232796;stroke-miterlimit:10;\\\" d=\\\"M 0 8.742188 L 353.777344 81.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.403618;stroke-miterlimit:10;\\\" d=\\\"M 0 212.988281 L 353.777344 298.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.353003;stroke-miterlimit:10;\\\" d=\\\"M 0 35.808594 L 353.777344 153.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.518747;stroke-miterlimit:10;\\\" d=\\\"M 0 262.539062 L 353.777344 276.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.41618;stroke-miterlimit:10;\\\" d=\\\"M 0 63.585938 L 353.777344 149.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.89798;stroke-miterlimit:10;\\\" d=\\\"M 0 205.628906 L 353.777344 233.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.344867;stroke-miterlimit:10;\\\" d=\\\"M 0 217.035156 L 353.777344 169.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.368037;stroke-miterlimit:10;\\\" d=\\\"M 0 45.015625 L 353.777344 129.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.322915;stroke-miterlimit:10;\\\" d=\\\"M 0 185.902344 L 353.777344 45.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.240425;stroke-miterlimit:10;\\\" d=\\\"M 0 0.9375 L 353.777344 129.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.148728;stroke-miterlimit:10;\\\" d=\\\"M 0 54.992188 L 353.777344 4.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.192009;stroke-miterlimit:10;\\\" d=\\\"M 0 300.03125 L 353.777344 347.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.363337;stroke-miterlimit:10;\\\" d=\\\"M 0 43.304688 L 353.777344 157.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.406694;stroke-miterlimit:10;\\\" d=\\\"M 0 307.425781 L 353.777344 296.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 296.71875 L 353.777344 164.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.170576;stroke-miterlimit:10;\\\" d=\\\"M 0 3.863281 L 353.777344 31.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.47491;stroke-miterlimit:10;\\\" d=\\\"M 0 216.53125 L 353.777344 78.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.205064;stroke-miterlimit:10;\\\" d=\\\"M 0 12.429688 L 353.777344 200.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.244871;stroke-miterlimit:10;\\\" d=\\\"M 0 75.605469 L 353.777344 37.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 351.378906 L 353.777344 134.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.248611;stroke-miterlimit:10;\\\" d=\\\"M 0 351.480469 L 353.777344 334.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.245363;stroke-miterlimit:10;\\\" d=\\\"M 0 3.679688 L 353.777344 346.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.377175;stroke-miterlimit:10;\\\" d=\\\"M 0 63.4375 L 353.777344 310.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.785045;stroke-miterlimit:10;\\\" d=\\\"M 0 276.839844 L 353.777344 111.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.480844;stroke-miterlimit:10;\\\" d=\\\"M 0 304.160156 L 353.777344 72.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.301591;stroke-miterlimit:10;\\\" d=\\\"M 0 17.789062 L 353.777344 316.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.312067;stroke-miterlimit:10;\\\" d=\\\"M 0 305.53125 L 353.777344 318.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.949379;stroke-miterlimit:10;\\\" d=\\\"M 0 239.347656 L 353.777344 129.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.230287;stroke-miterlimit:10;\\\" d=\\\"M 0 275.335938 L 353.777344 184.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.501021;stroke-miterlimit:10;\\\" d=\\\"M 0 195.390625 L 353.777344 87.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 231.101562 L 353.777344 144.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 224.257812 L 353.777344 154.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 345.734375 L 353.777344 151.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.47839;stroke-miterlimit:10;\\\" d=\\\"M 0 166.933594 L 353.777344 88.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 323.523438 L 353.777344 129.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.27214;stroke-miterlimit:10;\\\" d=\\\"M 0 225.503906 L 353.777344 329.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0200144;stroke-miterlimit:10;\\\" d=\\\"M 0 143.164062 L 353.777344 179.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.26616;stroke-miterlimit:10;\\\" d=\\\"M 0 309.316406 L 353.777344 330.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.368334;stroke-miterlimit:10;\\\" d=\\\"M 0 89.660156 L 353.777344 252.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.945912;stroke-miterlimit:10;\\\" d=\\\"M 0 230.578125 L 353.777344 131.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.762443;stroke-miterlimit:10;\\\" d=\\\"M 0 283.136719 L 353.777344 108.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0710499;stroke-miterlimit:10;\\\" d=\\\"M 0 97.539062 L 353.777344 232.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.240984;stroke-miterlimit:10;\\\" d=\\\"M 0 5.101562 L 353.777344 101.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.351021;stroke-miterlimit:10;\\\" d=\\\"M 0 115.214844 L 353.777344 68.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 241.230469 L 353.777344 227.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.307302;stroke-miterlimit:10;\\\" d=\\\"M 0 151.679688 L 353.777344 45.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.405308;stroke-miterlimit:10;\\\" d=\\\"M 0 105.707031 L 353.777344 302.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.680188;stroke-miterlimit:10;\\\" d=\\\"M 0 352.691406 L 353.777344 255.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.491196;stroke-miterlimit:10;\\\" d=\\\"M 0 294.617188 L 353.777344 74.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.196344;stroke-miterlimit:10;\\\" d=\\\"M 0 94.265625 L 353.777344 14.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 276.074219 L 353.777344 155.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.641793;stroke-miterlimit:10;\\\" d=\\\"M 0 150.675781 L 353.777344 127.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.277578;stroke-miterlimit:10;\\\" d=\\\"M 0 60.949219 L 353.777344 335.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.895204;stroke-miterlimit:10;\\\" d=\\\"M 0 230.539062 L 353.777344 127.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.212726;stroke-miterlimit:10;\\\" d=\\\"M 0 25.421875 L 353.777344 42.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.776505;stroke-miterlimit:10;\\\" d=\\\"M 0 206.015625 L 353.777344 205.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.2822;stroke-miterlimit:10;\\\" d=\\\"M 0 243.613281 L 353.777344 326.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.333062;stroke-miterlimit:10;\\\" d=\\\"M 0 26.460938 L 353.777344 146.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.428917;stroke-miterlimit:10;\\\" d=\\\"M 0 255.863281 L 353.777344 292.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.417158;stroke-miterlimit:10;\\\" d=\\\"M 0 203.199219 L 353.777344 68.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.450407;stroke-miterlimit:10;\\\" d=\\\"M 0 153.691406 L 353.777344 291.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.201549;stroke-miterlimit:10;\\\" d=\\\"M 0 128.804688 L 353.777344 13.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0390104;stroke-miterlimit:10;\\\" d=\\\"M 0 27.253906 L 353.777344 212.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.265717;stroke-miterlimit:10;\\\" d=\\\"M 0 170.984375 L 353.777344 170.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.330643;stroke-miterlimit:10;\\\" d=\\\"M 0 276.792969 L 353.777344 313.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.379983;stroke-miterlimit:10;\\\" d=\\\"M 0 237.074219 L 353.777344 303.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.162149;stroke-miterlimit:10;\\\" d=\\\"M 0 141.652344 L 353.777344 3.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.26686;stroke-miterlimit:10;\\\" d=\\\"M 0 192.109375 L 353.777344 28.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.798023;stroke-miterlimit:10;\\\" d=\\\"M 0 191.835938 L 353.777344 130.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.288133;stroke-miterlimit:10;\\\" d=\\\"M 0 11.503906 L 353.777344 135.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.533328;stroke-miterlimit:10;\\\" d=\\\"M 0 237.230469 L 353.777344 86.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 351.90625 L 353.777344 203.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.392567;stroke-miterlimit:10;\\\" d=\\\"M 0 109.980469 L 353.777344 305.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.477703;stroke-miterlimit:10;\\\" d=\\\"M 0 94.652344 L 353.777344 124.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.327504;stroke-miterlimit:10;\\\" d=\\\"M 0 243.605469 L 353.777344 315.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 291.953125 L 353.777344 161.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0404086;stroke-miterlimit:10;\\\" d=\\\"M 0 128.484375 L 353.777344 217.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.19776;stroke-miterlimit:10;\\\" d=\\\"M 0 146.289062 L 353.777344 172.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.218533;stroke-miterlimit:10;\\\" d=\\\"M 0 16.109375 L 353.777344 55.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.283283;stroke-miterlimit:10;\\\" d=\\\"M 0 31.722656 L 353.777344 294.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.321915;stroke-miterlimit:10;\\\" d=\\\"M 0 233.117188 L 353.777344 41.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.610893;stroke-miterlimit:10;\\\" d=\\\"M 0 303.113281 L 353.777344 91.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.135689;stroke-miterlimit:10;\\\" d=\\\"M 0 122.820312 L 353.777344 1.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.435883;stroke-miterlimit:10;\\\" d=\\\"M 0 161.320312 L 353.777344 293.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.302795;stroke-miterlimit:10;\\\" d=\\\"M 0 211.890625 L 353.777344 322.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.389193;stroke-miterlimit:10;\\\" d=\\\"M 0 111.820312 L 353.777344 83.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.968988;stroke-miterlimit:10;\\\" d=\\\"M 0 216.972656 L 353.777344 136.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.96291;stroke-miterlimit:10;\\\" d=\\\"M 0 223.996094 L 353.777344 230.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.666711;stroke-miterlimit:10;\\\" d=\\\"M 0 338.703125 L 353.777344 97.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.679445;stroke-miterlimit:10;\\\" d=\\\"M 0 292.601562 L 353.777344 100.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.230248;stroke-miterlimit:10;\\\" d=\\\"M 0 331.160156 L 353.777344 14.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.826334;stroke-miterlimit:10;\\\" d=\\\"M 0 183.441406 L 353.777344 219.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0133326;stroke-miterlimit:10;\\\" d=\\\"M 0 28.152344 L 353.777344 273.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.341942;stroke-miterlimit:10;\\\" d=\\\"M 0 179.417969 L 353.777344 168.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 308.644531 L 353.777344 163.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.211779;stroke-miterlimit:10;\\\" d=\\\"M 0 139.394531 L 353.777344 15.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 295.523438 L 353.777344 207.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.452988;stroke-miterlimit:10;\\\" d=\\\"M 0 77.019531 L 353.777344 145.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 340.097656 L 353.777344 230.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.393942;stroke-miterlimit:10;\\\" d=\\\"M 0 214.394531 L 353.777344 300.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.233732;stroke-miterlimit:10;\\\" d=\\\"M 0 230.746094 L 353.777344 17.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.540421;stroke-miterlimit:10;\\\" d=\\\"M 0 268.398438 L 353.777344 84.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.249886;stroke-miterlimit:10;\\\" d=\\\"M 0 72.402344 L 353.777344 41.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.152853;stroke-miterlimit:10;\\\" d=\\\"M 0 326.367188 L 353.777344 352.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.248026;stroke-miterlimit:10;\\\" d=\\\"M 0 92.285156 L 353.777344 34.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 345.742188 L 353.777344 153.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.322285;stroke-miterlimit:10;\\\" d=\\\"M 0 56.21875 L 353.777344 86.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.744973;stroke-miterlimit:10;\\\" d=\\\"M 0 296.273438 L 353.777344 106.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0282922;stroke-miterlimit:10;\\\" d=\\\"M 0 166.082031 L 353.777344 204.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.490473;stroke-miterlimit:10;\\\" d=\\\"M 0 174.636719 L 353.777344 165.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.349144;stroke-miterlimit:10;\\\" d=\\\"M 0 68.550781 L 353.777344 318.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 236.527344 L 353.777344 138.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 315.902344 L 353.777344 142.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.22549;stroke-miterlimit:10;\\\" d=\\\"M 0 115.492188 L 353.777344 22.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.507828;stroke-miterlimit:10;\\\" d=\\\"M 0 125.398438 L 353.777344 279.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.225028;stroke-miterlimit:10;\\\" d=\\\"M 0 140.511719 L 353.777344 219.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.879117;stroke-miterlimit:10;\\\" d=\\\"M 0 282.976562 L 353.777344 117.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.45628;stroke-miterlimit:10;\\\" d=\\\"M 0 134.648438 L 353.777344 290.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.697207;stroke-miterlimit:10;\\\" d=\\\"M 0 159.410156 L 353.777344 154.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.403917;stroke-miterlimit:10;\\\" d=\\\"M 0 191.925781 L 353.777344 168.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0536211;stroke-miterlimit:10;\\\" d=\\\"M 0 147.539062 L 353.777344 177.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 273.140625 L 353.777344 191.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.317557;stroke-miterlimit:10;\\\" d=\\\"M 0 268.230469 L 353.777344 317.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.690468;stroke-miterlimit:10;\\\" d=\\\"M 0 196.0625 L 353.777344 253.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.230255;stroke-miterlimit:10;\\\" d=\\\"M 0 242.84375 L 353.777344 339.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.228721;stroke-miterlimit:10;\\\" d=\\\"M 0 145.152344 L 353.777344 217.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.431791;stroke-miterlimit:10;\\\" d=\\\"M 0 69.066406 L 353.777344 289.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.264956;stroke-miterlimit:10;\\\" d=\\\"M 0 79.753906 L 353.777344 45.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0855564;stroke-miterlimit:10;\\\" d=\\\"M 0 20.832031 L 353.777344 210.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.21986;stroke-miterlimit:10;\\\" d=\\\"M 0 77.703125 L 353.777344 26.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.323187;stroke-miterlimit:10;\\\" d=\\\"M 0 49.523438 L 353.777344 171.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.280834;stroke-miterlimit:10;\\\" d=\\\"M 0 13.910156 L 353.777344 117.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.333361;stroke-miterlimit:10;\\\" d=\\\"M 0 148.488281 L 353.777344 168.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.26954;stroke-miterlimit:10;\\\" d=\\\"M 0 214.597656 L 353.777344 330.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.419746;stroke-miterlimit:10;\\\" d=\\\"M 0 263.609375 L 353.777344 63.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.238106;stroke-miterlimit:10;\\\" d=\\\"M 0 60.988281 L 353.777344 39.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.140309;stroke-miterlimit:10;\\\" d=\\\"M 0 30.085938 L 353.777344 4.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.182418;stroke-miterlimit:10;\\\" d=\\\"M 0 245.519531 L 353.777344 5.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.269324;stroke-miterlimit:10;\\\" d=\\\"M 0 124.347656 L 353.777344 36.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.256711;stroke-miterlimit:10;\\\" d=\\\"M 0 26.90625 L 353.777344 184.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.424194;stroke-miterlimit:10;\\\" d=\\\"M 0 115.125 L 353.777344 164.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.436023;stroke-miterlimit:10;\\\" d=\\\"M 0 111.335938 L 353.777344 163.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.543643;stroke-miterlimit:10;\\\" d=\\\"M 0 223.597656 L 353.777344 273.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.159462;stroke-miterlimit:10;\\\" d=\\\"M 0 221.996094 L 353.777344 351.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.2265;stroke-miterlimit:10;\\\" d=\\\"M 0 125.464844 L 353.777344 21.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.2242;stroke-miterlimit:10;\\\" d=\\\"M 0 152.417969 L 353.777344 171.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.523634;stroke-miterlimit:10;\\\" d=\\\"M 0 295.144531 L 353.777344 275.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.267294;stroke-miterlimit:10;\\\" d=\\\"M 0 99.882812 L 353.777344 41.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.699511;stroke-miterlimit:10;\\\" d=\\\"M 0 287.867188 L 353.777344 253.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.40972;stroke-miterlimit:10;\\\" d=\\\"M 0 71.269531 L 353.777344 158.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.142986;stroke-miterlimit:10;\\\" d=\\\"M 0 152.375 L 353.777344 353.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.262348;stroke-miterlimit:10;\\\" d=\\\"M 0 128.351562 L 353.777344 171.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.580585;stroke-miterlimit:10;\\\" d=\\\"M 0 220.886719 L 353.777344 198.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 334.027344 L 353.777344 202.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.233901;stroke-miterlimit:10;\\\" d=\\\"M 0 294.136719 L 353.777344 338.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.254321;stroke-miterlimit:10;\\\" d=\\\"M 0 212.917969 L 353.777344 23.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.254704;stroke-miterlimit:10;\\\" d=\\\"M 0 188.199219 L 353.777344 25.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.317631;stroke-miterlimit:10;\\\" d=\\\"M 0 103.710938 L 353.777344 170.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.793238;stroke-miterlimit:10;\\\" d=\\\"M 0 208.621094 L 353.777344 124.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 325.414062 L 353.777344 135.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.551539;stroke-miterlimit:10;\\\" d=\\\"M 0 163.421875 L 353.777344 104.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.501097;stroke-miterlimit:10;\\\" d=\\\"M 0 190.304688 L 353.777344 280.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.243391;stroke-miterlimit:10;\\\" d=\\\"M 0 66.867188 L 353.777344 342.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.327648;stroke-miterlimit:10;\\\" d=\\\"M 0 290.015625 L 353.777344 314.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.543541;stroke-miterlimit:10;\\\" d=\\\"M 0 203.683594 L 353.777344 273.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.306403;stroke-miterlimit:10;\\\" d=\\\"M 0 38.171875 L 353.777344 174.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.514999;stroke-miterlimit:10;\\\" d=\\\"M 0 238.40625 L 353.777344 277.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.269465;stroke-miterlimit:10;\\\" d=\\\"M 0 102.40625 L 353.777344 41.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0052874;stroke-miterlimit:10;\\\" d=\\\"M 0 17.1875 L 353.777344 282.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.508236;stroke-miterlimit:10;\\\" d=\\\"M 0 249.210938 L 353.777344 278.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.599906;stroke-miterlimit:10;\\\" d=\\\"M 0 177.613281 L 353.777344 265.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 255.910156 L 353.777344 141.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.378654;stroke-miterlimit:10;\\\" d=\\\"M 0 205.824219 L 353.777344 58.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 324.59375 L 353.777344 159.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.370674;stroke-miterlimit:10;\\\" d=\\\"M 0 69.054688 L 353.777344 312.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.529393;stroke-miterlimit:10;\\\" d=\\\"M 0 214.441406 L 353.777344 275.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.489153;stroke-miterlimit:10;\\\" d=\\\"M 0 181.152344 L 353.777344 166.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.249813;stroke-miterlimit:10;\\\" d=\\\"M 0 27.328125 L 353.777344 295.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.324608;stroke-miterlimit:10;\\\" d=\\\"M 0 147.105469 L 353.777344 319.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.194251;stroke-miterlimit:10;\\\" d=\\\"M 0 146.628906 L 353.777344 10.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.170298;stroke-miterlimit:10;\\\" d=\\\"M 0 66.171875 L 353.777344 256.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.660831;stroke-miterlimit:10;\\\" d=\\\"M 0 253.296875 L 353.777344 257.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.745772;stroke-miterlimit:10;\\\" d=\\\"M 0 204.832031 L 353.777344 120.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.471474;stroke-miterlimit:10;\\\" d=\\\"M 0 216.589844 L 353.777344 285.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.278576;stroke-miterlimit:10;\\\" d=\\\"M 0 30.695312 L 353.777344 84.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.648495;stroke-miterlimit:10;\\\" d=\\\"M 0 179.984375 L 353.777344 162.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.329016;stroke-miterlimit:10;\\\" d=\\\"M 0 121.773438 L 353.777344 319.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.186172;stroke-miterlimit:10;\\\" d=\\\"M 0 112.09375 L 353.777344 9.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.051475;stroke-miterlimit:10;\\\" d=\\\"M 0 76.734375 L 353.777344 189.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 241.503906 L 353.777344 144.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.179146;stroke-miterlimit:10;\\\" d=\\\"M 0 82.359375 L 353.777344 10.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.236842;stroke-miterlimit:10;\\\" d=\\\"M 0 289.457031 L 353.777344 16.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.46573;stroke-miterlimit:10;\\\" d=\\\"M 0 105.695312 L 353.777344 159.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.300433;stroke-miterlimit:10;\\\" d=\\\"M 0 122.367188 L 353.777344 48.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.272481;stroke-miterlimit:10;\\\" d=\\\"M 0 123.441406 L 353.777344 38.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 277.207031 L 353.777344 216.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 287.253906 L 353.777344 148.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 274.054688 L 353.777344 141.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.25111;stroke-miterlimit:10;\\\" d=\\\"M 0 76.84375 L 353.777344 176.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 268.308594 L 353.777344 215.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 253.355469 L 353.777344 143.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 343.53125 L 353.777344 213.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 291.921875 L 353.777344 149.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.196544;stroke-miterlimit:10;\\\" d=\\\"M 0 38.425781 L 353.777344 279.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.31415;stroke-miterlimit:10;\\\" d=\\\"M 0 265.804688 L 353.777344 37.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.820449;stroke-miterlimit:10;\\\" d=\\\"M 0 249.761719 L 353.777344 192.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 296.917969 L 353.777344 131.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.561735;stroke-miterlimit:10;\\\" d=\\\"M 0 143.238281 L 353.777344 114.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.185933;stroke-miterlimit:10;\\\" d=\\\"M 0 73.261719 L 353.777344 13.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.31721;stroke-miterlimit:10;\\\" d=\\\"M 0 151.804688 L 353.777344 48.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.683976;stroke-miterlimit:10;\\\" d=\\\"M 0 281.613281 L 353.777344 101.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.367291;stroke-miterlimit:10;\\\" d=\\\"M 0 202.898438 L 353.777344 307.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.567942;stroke-miterlimit:10;\\\" d=\\\"M 0 264.925781 L 353.777344 88.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.410786;stroke-miterlimit:10;\\\" d=\\\"M 0 62.332031 L 353.777344 297.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.357008;stroke-miterlimit:10;\\\" d=\\\"M 0 47.347656 L 353.777344 116.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 327.992188 L 353.777344 147.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.294139;stroke-miterlimit:10;\\\" d=\\\"M 0 121.382812 L 353.777344 46.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.419062;stroke-miterlimit:10;\\\" d=\\\"M 0 311.835938 L 353.777344 60.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.46328;stroke-miterlimit:10;\\\" d=\\\"M 0 318.96875 L 353.777344 69.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.162299;stroke-miterlimit:10;\\\" d=\\\"M 0 22 L 353.777344 13.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.681622;stroke-miterlimit:10;\\\" d=\\\"M 0 194.589844 L 353.777344 163.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.207127;stroke-miterlimit:10;\\\" d=\\\"M 0 105.828125 L 353.777344 16.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.175081;stroke-miterlimit:10;\\\" d=\\\"M 0 319.328125 L 353.777344 3.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.591227;stroke-miterlimit:10;\\\" d=\\\"M 0 127.171875 L 353.777344 260.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.367463;stroke-miterlimit:10;\\\" d=\\\"M 0 290.847656 L 353.777344 304.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.280198;stroke-miterlimit:10;\\\" d=\\\"M 0 239.894531 L 353.777344 29.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.370568;stroke-miterlimit:10;\\\" d=\\\"M 0 128.484375 L 353.777344 229.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.241591;stroke-miterlimit:10;\\\" d=\\\"M 0 3.640625 L 353.777344 109.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 288.972656 L 353.777344 214.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.361714;stroke-miterlimit:10;\\\" d=\\\"M 0 303.644531 L 353.777344 48.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.206481;stroke-miterlimit:10;\\\" d=\\\"M 0 188.285156 L 353.777344 11.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0400576;stroke-miterlimit:10;\\\" d=\\\"M 0 1.9375 L 353.777344 244.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 301.1875 L 353.777344 160.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.426546;stroke-miterlimit:10;\\\" d=\\\"M 0 310.9375 L 353.777344 62.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.163892;stroke-miterlimit:10;\\\" d=\\\"M 0 11.394531 L 353.777344 18.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.709301;stroke-miterlimit:10;\\\" d=\\\"M 0 256.625 L 353.777344 169.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.40062;stroke-miterlimit:10;\\\" d=\\\"M 0 202.769531 L 353.777344 168.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0554112;stroke-miterlimit:10;\\\" d=\\\"M 0 231.113281 L 353.777344 173.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.348767;stroke-miterlimit:10;\\\" d=\\\"M 0 39.113281 L 353.777344 124.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.480659;stroke-miterlimit:10;\\\" d=\\\"M 0 305.597656 L 353.777344 282 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.283034;stroke-miterlimit:10;\\\" d=\\\"M 0 93.183594 L 353.777344 49.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.349676;stroke-miterlimit:10;\\\" d=\\\"M 0 245.289062 L 353.777344 309.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.617099;stroke-miterlimit:10;\\\" d=\\\"M 0 339.359375 L 353.777344 262.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 267.617188 L 353.777344 212.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.508592;stroke-miterlimit:10;\\\" d=\\\"M 0 325.433594 L 353.777344 76.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.781345;stroke-miterlimit:10;\\\" d=\\\"M 0 246.617188 L 353.777344 245.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 334.378906 L 353.777344 171.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.563984;stroke-miterlimit:10;\\\" d=\\\"M 0 302.207031 L 353.777344 85.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.282204;stroke-miterlimit:10;\\\" d=\\\"M 0 216.324219 L 353.777344 31.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 344.546875 L 353.777344 136.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.541524;stroke-miterlimit:10;\\\" d=\\\"M 0 289.859375 L 353.777344 83.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.295303;stroke-miterlimit:10;\\\" d=\\\"M 0 197.273438 L 353.777344 36.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.308002;stroke-miterlimit:10;\\\" d=\\\"M 0 346.492188 L 353.777344 34.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.932999;stroke-miterlimit:10;\\\" d=\\\"M 0 252.21875 L 353.777344 234.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.500982;stroke-miterlimit:10;\\\" d=\\\"M 0 311.457031 L 353.777344 75.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.272858;stroke-miterlimit:10;\\\" d=\\\"M 0 213.207031 L 353.777344 28.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.59031;stroke-miterlimit:10;\\\" d=\\\"M 0 284.667969 L 353.777344 90.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.783299;stroke-miterlimit:10;\\\" d=\\\"M 0 240.890625 L 353.777344 115.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 316.921875 L 353.777344 123.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.23747;stroke-miterlimit:10;\\\" d=\\\"M 0 334.109375 L 353.777344 16.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 235.09375 L 353.777344 139.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.354366;stroke-miterlimit:10;\\\" d=\\\"M 0 36.960938 L 353.777344 313.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.689257;stroke-miterlimit:10;\\\" d=\\\"M 0 244.5625 L 353.777344 106.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.660229;stroke-miterlimit:10;\\\" d=\\\"M 0 270.398438 L 353.777344 99.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.19901;stroke-miterlimit:10;\\\" d=\\\"M 0 56.132812 L 353.777344 21.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.456592;stroke-miterlimit:10;\\\" d=\\\"M 0 187.117188 L 353.777344 167.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.348056;stroke-miterlimit:10;\\\" d=\\\"M 0 89.339844 L 353.777344 317.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.405154;stroke-miterlimit:10;\\\" d=\\\"M 0 61.242188 L 353.777344 299.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.551697;stroke-miterlimit:10;\\\" d=\\\"M 0 328.285156 L 353.777344 270.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0371196;stroke-miterlimit:10;\\\" d=\\\"M 0 47.039062 L 353.777344 201.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.517106;stroke-miterlimit:10;\\\" d=\\\"M 0 107.421875 L 353.777344 253.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.562766;stroke-miterlimit:10;\\\" d=\\\"M 0 203.25 L 353.777344 270.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.209763;stroke-miterlimit:10;\\\" d=\\\"M 0 64.210938 L 353.777344 347.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.280096;stroke-miterlimit:10;\\\" d=\\\"M 0 293.472656 L 353.777344 27.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.393652;stroke-miterlimit:10;\\\" d=\\\"M 0 100.640625 L 353.777344 305.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.414455;stroke-miterlimit:10;\\\" d=\\\"M 0 63.746094 L 353.777344 151.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.969863;stroke-miterlimit:10;\\\" d=\\\"M 0 205.757812 L 353.777344 211.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 235.679688 L 353.777344 214.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.193646;stroke-miterlimit:10;\\\" d=\\\"M 0 198.757812 L 353.777344 8.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.164281;stroke-miterlimit:10;\\\" d=\\\"M 0 219.824219 L 353.777344 351.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.373785;stroke-miterlimit:10;\\\" d=\\\"M 0 300.183594 L 353.777344 303.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 236.917969 L 353.777344 138.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.346059;stroke-miterlimit:10;\\\" d=\\\"M 0 203.324219 L 353.777344 50.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.150017;stroke-miterlimit:10;\\\" d=\\\"M 0 284.542969 L 353.777344 1.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.261455;stroke-miterlimit:10;\\\" d=\\\"M 0 237.933594 L 353.777344 332.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.467566;stroke-miterlimit:10;\\\" d=\\\"M 0 82.519531 L 353.777344 275.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.105688;stroke-miterlimit:10;\\\" d=\\\"M 0 5.664062 L 353.777344 224.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414213;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.315213;stroke-miterlimit:10;\\\" d=\\\"M 0 337.125 L 353.777344 36.367188 \\\"/>\\n\",\n       \"</g>\\n\",\n       \"</svg>\\n\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"sampleIOfixed $ fmap (diagram . mconcat . fmap traceDiagram) $ replicateM 1000 $ getTrace program\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"id\": \"cabe0c55-57cc-4f3e-896c-cbda3ef14703\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAWMAAAFgCAYAAABuVhhPAAAABmJLR0QA/wD/AP+gvaeTAAAgAElEQVR4nOy92ZNk15Hm94vcK5fa9yoABS7YCRIguDTV0z09UstMo8UkPetVMv0detPDPOgf0LNsZCYzyWQatUkzrVnYZDcHBImF2AiggNo31J5VuevBz0f3OHlvxL03bmRGZoWbhWVm5N2X7/j5/HP3DmMb29jGNrbdtDng8ATwAjC9ywcztrGNbWzPoi0BR4CVKeC/ATaAr4HPgD8C93fv2MY2trGNbd9bBziMecWPgMcdDJW/nz4vABPAbQyYv8JAenM3jnZsYxvb2PahTWG4OwncA9aAiU620AHgAvASBs5zwDIGyJ8DnwIrO3O8Yxvb2Ma272wWA+IN4C6whTnAmzkYR+sA5zFQfgk4jnnIVzBg/gT4dnjHPLaxjW1s+8oWMY54BfOIJzCc3aAPGOdWRGfcxTjmzxjTGWMb29jGVmQ5P/wQoyo6wDrmHZ+rA8bR5oAX6aYzngAXGdMZYxvb2MYmy/nhlfS7gPgY8A5wpikYR4t0xovAGbrpjE+BOy3sZ2xjG9vY9pLl/PAGBs5bwALwFoaZD4B3O8D/jEXzwLzbp+n3FSx4R/r/o/T7RlqZtNF7Yef3ME7kLMYxn8fojFsYMH+BgfOTNs50bGMb29hG1HJ+GMwjngVeAV7DcPVD4CNgtgP8+7TgVFoZDEAPhQ0fGdIBP8WBeRV4nH5fx3gVMC876p7vht/v4zz1w7QeaTur6fc2Bpit9PuDtOzYxja2sRVZET88gYHwS8AP0nKfAL/HcPeHwGtNaYoDaWe9fs//ngdOp88LGFcCBpz3Me95q8J2q+4v/n4QG5XatjiYxN97/a+t35usEwessY1tbM1sEsMUMJCdT78fxBiBifRZx7KbX8UwbxbDum8wfPpe+hwFptvgjJvaYeA7GNf8HewEd0KdURfkqwL+MH4Hu07DuE87Af5t7iPOgsa2f20BmEm/H8KBTTP1mbQMGAjOpt/lcMkzBQPCxfR7fK+WMI8UfNYfmYG5tDxpfZWLGNa7CLCxm2AcbRpLNpGmeZFudcZnONXwLNuwAH8Y240vStu2m7OLJvuI1Npum+5R03u7E8u2YU3vWZNl5zCQXsae+5eBHwHPYYPIaXyAWQauYjzxL4H3gA+AG6MCxtE62MFL03wGoy8u48B8e9eObmxNbKdnF4OuH72htm01fTrp53r6fS39runtRvp9C49ZROvgXtpkWnYaj9ZPpb9F/bVJ0w0KYk3Xq7JsjPEM084Cr2OytLcxuuEV/Blaxmb5H2Jqsk1stv/3wO/w2NWfbBTBOLfdojPGNjq2m97cPPae6HsFY+bSRx5PG7aBB4g306eTfgqc9T9NyZVOq//NMHxaK/97FOMjj3CV2CB2FlM+vB5+/ginSh4CXwI3sAD/F8DfYKD7RvqABexyED6Bydt+BvxiL4BxtDGd0a6N2vS0jNdrw54lby7yptDNdcZgdpwBRFopcqaRo62quBLXC933MfLB8V7HIFjbVlVxtZGObz4d10HsPHR9NrHyD7fTz2uYU7iGncsGRj98hc3mz2PqrYuY43g3be81jMZ4BQPjTQzAf7vXwDjaqNMZowBo+42bq7tsfOHGtrdsWPTVEQwoj2P4cRxTdmmZTey5WU4/1zCgfYLPlCbSTw1Y07QwQ9qLYFx2oU8C3wWex7znGWxkuo2NYo/wkX/szQ2+7FjdMLZRtsMYHrwO/BjzSN/AABjMQ/4G+AMWTPsD8C5GJxTlEnQwCdqrmPO3iRdMeyVt/xCGMYcxHvlcWvcG8DHmIP4hbH8iLbulHUQbe3Njb25sY9tLdggLnkVO9zUsvgTFoPtR+lSlNKeANzGA7eCBubeB/wRz/o5gYL2Jzc5/jXHE/4CBcW4djBY5B5wiFQpqk6sS9xUz2mLWWwQaeVYxwy5m4S3jxYaU+Raz42IGXRlxr2U1JRlFOmNsYxtbf5vFQFderkD3RdypvEY34P4B+C0FyoUadgH4C8yDvZn29Y+Bn2Cc7woGzr/EwPc3GJ6dwYJ/vX52ZTZ3gP82/ZSHBt1EtzSSMUV5GFHLnbJ+6oxvGKc8j21su2Uz2LuZKxhewYOCRaD7Hu7ItWHHgX8K/BmGGYvpWBZwrfBlDP9mcJB9Dg9yyp5iGHM1HXvhz73IGbdpReqMp1hE9CusqFGbN3hsYxub2TT2zuWg+zKu9rjLdk7397hT2IbNYMB7JO37L4CfYx73Iq7nnmU7rfuUcoDNwVfrljIRzzoYRytTZ1zH6IzPsQs7trGNrbpNYUH1nNN9Aw+o56D7EfA+Rgs0tTmMw+1FE5zHAv85Dm5gTti9dGyqOvk7bOZ8Of18QDXrC8RxobFtt0NYNDanM77CbsyXjOmMsY0t2lm2c7qv4RKwe5imVl6uAml1nJwDlAPskfD7abbj2730WcU84nkceG+lY/tXWMDtbPrfpxgIr+HxsDpxtkpAHBccW2+LdMb3MU5oje7OJmM6Y2zPihVlpb2FJ248wN6L3Nv9ssc2j7AdUPOf5/FqabIVLAmjiC54iFENZ9JxvoJh3m2MY/4Gi4U9xrzwGcyLf4xJ1t7DqAilmNeteFgZiOPCY6tuYzpjbM+KFYHuD/FKaKtY4Dtyuh9hs0cBkEC2F13wHNtrgRTxsUVBsGvZvt7E0pV/jmmCBb6/xVKUf5X29U46j+vp7++lff4eA+EnWMBwkh0AYmBmDMaDm+iMF7EbOo1Nhb5kTGeMbW/YEbZzuj/EpFuwHXQ/wxOpTlNOF7zA9gJFvYJe+nmZ7oYSZbaAFWv/GQa+UlxE8H0Pox9Ix/YOlnF3O52XvOXfpeWlEhMQqy5IHasDxJ10PM+Nwbhdm8JG+Zewm5zTGZ/h2uixjW2nrQh0f4AlHYA9q9eBS1gBLklcpzFw7cXH3qU3wEoKNkhCU13wlR0nNf3EQP4pRnkcwN7Lf0u3QkNV8IYNxEtYPOocMDEG4+HaCZzOeI4xnTG2nbE8K+1NLLB2Mv1/E+N1H+Fge5Dt+tgyPjanC8S9tm1NwVd2EDvvC5jH+wTzQmewhsnvYu9jTOsXEG9QL90/Ymk/IJ5Nx/QcxrPfBG6NwXjnbAFXZ3wXeyDGdMbYBrHnMaB6BwPe72Cea6ymtkWxPrZvEgLbgWrYNo8NHDn43sGA83cY+H5Mb8Cbw6Rzr2PH/xQD5i0MhJV1m+uVp7Br1RSI+4HwDAbA5zG++iGm4pgE5sZgvDs2pjPGVmazmPcW+dfzeL2F85h+VnWWo21iL/htzFv9BKMbcqAdlc4jEXzfxgB0ivrgK5vG3qcfYsC3kX6uY9dC2bX36K5L0cHrQ69X3Fdclz7rTGH38iz+rt9J309hM5CrYzAeDRvTGfvfDtBbtqWfp/C03yJbxaa1X2LT8/exugif0G5m2jDsAAaUOfh+i3Wprwu+sgns3XkLA7stDFxXsaDjJ2nfm9hAFCkVATG0ryGeJBUBwjxh1eGZDMd3Hbufm2MwHj0b0xl7y3olIZQWhcELXale7jw2ldY7+RCbIb2HVQj7CJNd3RreqbRuOfi+jnmvd7G+b+9h1c3qgq+sgyk23sFmC/Jun+DXaxoD6BXsPdrM1peGuE0gnsCCnGex93cLA9659PsT7D5eI7zLYzAebYt0xsvYyzqmM3bGyvSx0bvtVxTmOgaqWxj9cAR7Sb9D71TgD9O6e80Evm9hWt8f0y74RpNM7Qx2Lbewd0EgvIoV+JlL3+ezhmFoiDvYLFe66XUM/BfT/h5i2X1dIJxsagzGe8vGdMZgFovCtJGEENUFa1jg7AyWbJBnpd3HtLp1stJG3eYw0M3B9x5Gnwh8P6G9QKBkai9gs0iV1RUIr2BOzBEMbHN+GNrXEHfScZ3HBobHadvHsAHqLgbCV9le4XIurXd6DMZ714rojPsYj/is0RlVisKcxaRdeRKC9LG91AWX8KIw/RpUrmD3QNloAt2YlbZXbQ4baNRE823suXuMeb5/T/vgK5NM7SW8O8YtukEYvNNGET8M7WuIj2GDtzzwJxhPfBR7Zq5g+uoVum0JA2Etu9TBHqQHGIl+n73/wDyL1o/O+JzRD+4U2SBFYaokIVyivBZ3niDxYyzyL1oiz0rTz4/ZP+2odhN84zG8kY7hJD4b/JBuEAajA8r4YWiuIYbtQHwIkxYuYPh5H3sOz2HPxleYeuNJ92Y4hj1Lr2Iz3UPpWFY7wC+wkWQCG0XuYsB8p+SExjb6Nup0xjCKwkTv9muqez1FWWlv4gkSa9g1y0G3rFfaXrZZ7Pxz8F3GaIedAF+ZZGo/wZ7hDjZ4fsB2EFY37DJ+GAbXEIO9R0sYCC+lfd3CAPY7adlvsEFahcNmMID+IXY9n0/7v5fO5zJ2PT/VjjrYg38cc5mP4VHGB3h76m/ZW109xmac5ffYGTqjjaIwveiCWBSmrhU1qHw9HROU90r7kO1TzP1ik9hM6ucY+L6FAXIE3/cwABxGhl2RSab2M+x+TWMzvN+xHYShPz/cloZ4EXt2D2HX5wbmFX8fe8euYu/T47TcdzGAfjkd3ybmJLyflruZzkVZkKVqCoHzURycJdF4hBdcvsO4eeZesiZ0Rp6EsFtFYaraQewFKWtQuYG9FDno/oHtU8r9ZqMIvjLJ1H6BecRz2FRf3T2KBsR+/HAbGmIF2I5hz8c17D16FadEVjBgfh57J6axQUUStt+n89Byk3h69p+OqU4Ab55uz1kFo5dxz/kO+/+B3i92AAOqd7AX9EXs4ZrCBt4FvJFrXT72LgZ4w5Td5b3S5O0Ou0HlXrIy8H2CAcRugm+0sxgIv4l5oF9iXZXLQBj688ODaogPpOM6hjmcV9I2fow7MhN4gfqHGBX4GKfTFPxdTcvNYdf5EQWz0UHUFPO453wED2zoQG5hL+VeDBztZauShHAW8yiirWD36kH6/TE2uF7GpupqOTOsojBl1rRB5e949jTY/cBXGW7vMhp043EMhN/Bpv9fAX9HbxCuwg8PoiGexTzh42ldqSNUK0PSvcvYoPElhnULOHBrxreOOzZKRil1VtuUts3i4HwUL1YicNbnAWPFRhPrx8cewaZJi9l6TYrCRDrjJexermOj/OeYYqDtQXY67TPndHs1qPwIA5jbLR/LXrEIvm9h122B0QVf2SGs6/IvMKz4GvjX9AZh6M8PQ3MN8TQGwq9jwds5DITPY47mvXR8v8EA+C4G2M9h1/wRBsA3MXyT1zyLZ1v2DBwOU2c8g104ec5HcBL9Hu45P8uKjaKiMEVg+zz2IEarwse2VRQmqjPO490TPsPA+VKNbZU1qHwdewGgGHQ/wIImz7KVge9TDHhHFXxlc8BPgf8QA7qvgb/FjrlfkLQfPwz1NcST2PP8E0w+dwYHzpW0j9sYnfNJWO8onuBxH3v+74T/z+BO0TLFg8a2Y+lgdTUfYaA4zOnnFHYxo/cszZ/kdPrsdXCumoRQVBSmjI+N3u037B79E9UZSut9jHkLn2EqDQV16zSoFPD+e3ZfejcqNoFNjQW+b2Mv+VMMHFTT97eMdiB9GpN2/acYiF0G/oZqIAz9+WGoBsTqcfcChntvYJi0jj2HoraW8JrHf0jbVMzsRNrXTQyEY+/LiXSs09j9UCZekSnp4zkMD053gP86bSQqJe6Fn8MaYSex6Yq85zI53R12N7gQrQofK+822ip2Hv3ogl5JCKNoojM05XwRe2APp+8FumUNKvdDVlqbJvBVevGf4SD0MXsHfGUTWHH4/xx7Nq4D/wKb6lcB4Sr8MJRriBcxwBP4nsdwZwqjcq7jvfuW8Oy+29j1vo9h0zkctNUJJT/+OQywtzAQjvdnEY/VCCs0C7yHvftXOziaHwmfwzhPJ84xfqq43XUtl9Mdx0YYgbO85mHI6XI+togu6FcUphddcIP9kSCgBIno7eYNKq9gXsNj7Nw/wZpAfkY9OuNZsKrgW9WDHBXrYNKv/wrT297CQPhXVD+PKvywlhP9uYQBrz5n0/8eYpTIfew9vI8HpxexGd4J3Gm4juHP8xgWLuNto4rSqxfTcTxN/z9J8nbTz+Np2ZV0LS6lfaxjA8RbwGu9dMZLdAP0IZy33AmA7uCDRBM53TCLwrSRhDDK1q9BZVlWWkwFnsdeCAUBe9EZz4pNYB6iMtx+jjkgG8CnWHbbXgTfaN/HZtsvY+/Kv8B6zNU5nyr8sCqkvYAB2ncxnADDha/DZx2vH3EXA1W1PjqVju0r7L0+goGzgnYX8aBcbguY16zZ4GlcCrqJOWGXMZA/lI73e+mjjizz6fge1gngCaAPps8RPBkE7MV6SDdAP9i+mYFsHgPQC9hNP0sqsoFdmMPpmE7RTlGY/W5FoPsG9kCBge4lugH3XeqnAk9gD+33sZf0GN3qjE/Yn9f8WQBf2QUMhN/A7uXfAP+K+udVxg9P4OB7AQO0g+n/32IpyF9joHovrRPrR9zHYi1qfaR098vYuy+vejEtK8latCXs3dD+T+GJJU8xp3Adr02tuNDhtN8ZvMC8GgR8joH2ahtqigNpZ/Kgj+K1WtewGxMBWvVdi7bTtCiMaAxx3Texi/wVdpMU8d9LfGybljeozLPSylKBP2I4lNQRXJ3xAt5ksok6Y5QsB9+fYdd+P4Kv7CwGwm9jM9b/B/i/qX9+OT/8GM/sfAF7fg9g2HEDA94vsfc7nxkfwgBXfeb0PJ3HAH2a1AQUA87TGGZ9i70HdzHgFD35AvasHscAWbWKV9J6k+nnQjrGVQxrVtO53E/H/DH2Tt1Mx3Ms7X8VuD0saVsE6Oexl14SN7nmB9Pvx7GLfijbRpOiMJre5HK6VVyxoUFhP9ILs9hDmysYyrLSYpnH3cqcPIB5GpHOWMZojL1AZ5zHkyyKwPd3mELkcdkG9qgdB/5LjOdexbzg/5Nmz9EU5kEqGUkAOI2B2lWMLriUPssUz8yW0roH0zJXMBwRlaC6LA9wxZPeiwMYKL+QtnEKA9cZzCERH7yWznEtHfda2peYgCcYOD/Ei8lfSZ8NbDA4ldZ9hNGs3zJg26WmRWFWMC9IpPzddEBXsAv9NZ5YMGjQq0xOJ63zXpXTNc1Ke4/RBoW9QGdE8P0p9nw9C+ArOwL8Z8BfYO/M/wf879RPMZ/F8OEVLNh3GgO2p5h3Kr73IvYM9JKuzWPPjepHXE7HoxrWx9L+BMAXMFAU5aoi9VsYgF7GQPQ+dh8P4MH75bSP2+l/G3iCxxaGZ9cxPLuNd3k5mfY5gWHPDTJ1SA7Gwy4KcwXnc8BARfyzPGmVTdxku9TuLoMBdJmcThHWWD50FOR005i3mINuUVZa9HJ/z/5IQ+9HZ1xm+DOcIvDdxAYGge+77P/U64PAPwX+Cnv2fg38c6oPjksYYIpyOItnp6mT9WcYVuT3tAyID+Ac8gHsnVUm3XPYO34YA0pph9X+6D5exvILjDp4iOHDKRwbwPBACojNtK9zeOfp6P3GmcESBsBH0jmpXkUhhdMB/iXePC+vV7CB92xSyuzV8FPRwpu0N5WcxgFTAL2UjlUjV1sAXVVOd5vh8s1lWWlv0LtX2vs4/7TfbafojF7gqwy3v2P/g69sCfiPsay5GWzg+ed0Z5wV2UEMKL+Le6JRZnYHe3a/oDegR8pTDpTohJPp+JYxgFvCvN+NsK6ek+vYvfsMe5dVm1jOp1Kov03HdR/jlB+m/Z/EA3aPcPC9SfeseiId54m0/7V0rrfogyEd4H9JC95MG78Rft5gNKbvohuqAnTTbMJcTnccF2e3UZ1uEnuIeqUCx6w0ebt7tUHlsKyDgWYbdIbA9y0MfE+yHXx/xf6YadSxReCfAH+NeZa/x0C47Dk8inm8L2AxCjl2UWamEq1RP7yBx46OY/dSvyvGFBUVExio3cMwaxkD05M4xzyDDcxXsXfpCu7wqMSlGmlcSeekz1w6h9PpnKbTMd7CWygVUVBiFY7jnPG36WelOsp7uQfeFC61i3pocaa5FvpbmkWwY3W643iDyWXccy6qTlfUK22/N6jcLatDZ0Tw/Qnm7YzB120R44P/Gnu3PgL+V7oVLlFmpiLqC9h1vI3xvF9gz/IWBqhq1vo8dr8O0J07AAZ6j7CB9A7uUX6LvX9adwZ7jxbTfh/iMrQFDIifYhihmNWTtD0lb1zClUKLuNDgdDqPOzi1ep3y2fci3e2TIs1Zq1jRXgbjIqubTdgEoOdwz/ko5gVoxD2FPaCv8Gw0qBxFi3TG9zGP6SR2P87gOt+LeIbbr9n9wOBu2yKW0v7X2HP9GfC/YYPZJAZS8nwvYO+BQEvBrGXMQ5Rnq+pn4AXXRQPcTetpfc06t7D3S1lsL+HF5pXV+RC7h2tpmxfSZzNt+yZOoV5N25UCYi2dz4l0TiqXOZ2O4Yu03rc9rlUnHOMBPLPu2/S/Ju2d9h0YF1lRNmGTdO+iBIkf4amOa/g0RkGBD7EXXnUpxuA7fFN66Y+A/wAbKKexF/k2Nl3+Fca3f0q7XUb2oi1i9Mx/hIHLV8D/hbcP+j7e1WIaAzW1CprGk77AVUoC1wd018cu6uoygzkxZ/CErkMY+KrN/ReYd3oAc35OYAPGfDqG69is5gMMfFVSdTIcn+RzSlEWpSG6Q+nSvd7RaXygmcI98vt011CuW8weeDbAuMgiQEveomzCBeymncAipqrrGxtUKistervKStuvcrpRtRx8z2DX9SLu+f499sKMgjpjVGwRS9T4a+z53sKTIFTI5gAGvvfpjssIbO+k/90Pf8frl9eXWMUDcM+lzzHsfVSg60nar4C/gysjJvFOGk8xAP0HnNqL+57Bvd+TuKJB+Ql30jZEjfSKMc2zXRVxC3faVB+jbg3laJ1nFYyhu0GlvN138FTgSNpL//wxxineoHq6d5TT6YZOMrpyulG3E3iGm8AXDEiV4fYPdEsoiyynM+boVmd8yd7PklMRmxggO4c952/j2awr2LlLdfA1dh3+iHt+Kq5TdbBSx4zTmLNzMv0+hXOr13Cv8iSeYqwkrQdp2Sfp2B5h9+0+Nnh+gzs00vMqXfl82q6ah17HnpENuvvQlemjO+m6ieJawSmVjbCM5G+1aYlgEzwjYFzWoDLPSss5XWWl5eneR3AerE66t2xU5HR7xSL4/gLj5qE++PayqM54Cbsnm9hALHVGLw5xt0yzMAXIcjWCZmXqwiMedx4DoYvYNfwt5mh8PsCxLNJNNXwHr2T2EAdeDXDHsXupIjvSG3+EPfuavc6n30U1XcTuy9N0bkcwAD+HKyruYwOK5LdbaRt9+9ClYz6Gp00/xqVu8b2W9rkxLZGOaSL9pJNOYhV3/Uc59bSX7WSDyl4AvY57vBrd71M+akY53QmKO3E/S81eI/j+GfZ8Qrvg28+K6Iy7mKf4Gfai7wTFJLA9jgNuEdjKlnHvdRrPODuVfk5hAPVL4P/AgK2JRZ43lolU8OoBriUWuJ2mO6gt7ngZm4V8il3Tc+mziL1Lq9hzfwMD6Ud4O6RzOLhKt3wZezZyyqJfH7r5dJxKkVaNm3xZFQYalJYQCEueuxWLc8yEHQiYRxGcy7LSdrtBZZvZhFXkdLfZH12Oj2NT5jLw/R0GwLuV3DKHDeg5nSHd7Kc0pzMi2MqrPYw9N/o7zl6ldVdw7D72LCgd9wxeUGcKA40lzDO+gg1iv6aeZn0CB9MzOPUQy0RK+rWU9r2A15pZxdUN17H3YB57Px5j3rDqR1zA6wffxYDwQdq2akeoGuMjPLtXsxapJeKxq75EUR+6nIqICRpFlOHAQTrcG462RVabopMOehbPXBFqr2AXZgW7uDsR5IgNKqO3269B5e/ZXvput6xXNmEdgJac7kTYBmxv9roXlAERfN/GK8dF8P0HRrPfXT8641O6M9N0//OEBgFuL7DNA2Q3sPs9jacVf5ftBXVu4MClWr0fYdf0YoVzVJlIBdjE826l47mOYcEmBipn0vEcSN9dxgBW+lx56qofcTwd01UMaFWL+AhOZ6xgnrFSmWex9+I2zv3ep1stsUr3u6MqarquUSElb13Fg5bxnpxl2Fa3v16RFQHxpvbZizPuB87ynlcYDJyftQaVddO9i7IJY3W649iLrUCMFBvynnZbHVAFfH/D3swwPImpOH6IeaSLdL8f0H39i8D2Nh4cK5qFqqCOSklewN6ZVboL6tzGmwCcxZ6Zz7FYyOcU0ypzeEGv0xhYahYmz/MR/mweYTs438c7I3/K9jjHAQxw1cb+BvaMnsckc4dwhcMcrrBYTsvFxAulMYO9R8qOiw7iJAbCRX3oDuD0TgevK9yrqFOkJQYO0hFoiXxbdQN4M7jkpQk4x6w0cbqxQeWzmpWm6Wos3K9swi3swYyBwvzF1frynA+ze3K6XuCrDLd/x94AXzWhLOJrVXtAtoXdB2WHqdHuZ/iAU4Xzj33bVFBH9RAu4+B7Ke1jEXiT7qYAX2OxkD/gXtw0TjWUtQNSJcUN7BkSJ0vaf1QlXMVAr6w/3Wxa/wQGokrWuIDNbg9jz/CDdM3OYM/sVQzUL+H0g3BKgbhZPC06gn9ZHzp12VhKy0ua1i9A3nqQDgfhbdsaVE0hcJ7DL9AWXqZOXYRfxzwITRvGDSr72yDZhFXkdJqWDVqm9Bg2sErr+yr2XEXw/SWj2fFZYCvAPRj+jtlj0J3Q8CD9nmePaaDrYICnIOAZ7Lm+zHY6o1dBnYs4+ObVzATCr2H3YBIDyw+x634QB119YjGc69gzpEBfDLBF4FVRsBif6NWfTkXZVeNDnO7LuNeuGeBy2r+KB33A9rhOBLEyWiLvQ7eMF+w5SXUqIu5zKEE6ejhDg4KxstLk5b6BPSBqULmGPVCfYID7fvqo/fXY6lnTbELJ6TRFUwGUJnK6vQS+EWxzwD2FV8SD4uyx+3RTCk0dhSNYEFCOicozyrsTTREL6twt2VYE4YNpO8v4lPsY5lmrJoOm+prKKxU494oj+CqDrchEkR3ul7sAACAASURBVCn5QRTaFN6JR904bmDZfX+O89ffpM8DummbologEYiLaIkONjs5kL5/jNfNEB9fhYqI1maQrq83HJavrDMuSgV+k+6stKIGlV/gI+8cTl6rkIeCgmNvuLkVAfQhipvHKj31If3ldLcwgFjEkgRy8L2NZ7jtFvjmYCsaQZRCTNUV6FXNHmvDigrqqLiVWsar87CyAD+jOB1fIPwDDPBUMH0rHb/SlK+nbSrApuLq8vK+xQbOPMBWxYr6003iOt8Oru54B1PHzGPP0t9jnu+9tJ1JXA1S5JhFbCqiJabCdp6kv3XvJXW7TT01WBtBugjC4B5xTyAmSduixay06O2KiyrqlVanQaUCgmXgLM557DUPbnV7E65jD/OLGNf7Kja1PIfdj1sY7/nvsHq+V4d8/EXZY700tkVgq9/vszPBTKkLigrqXMM9X/Vt60dnfI6d/z/GpvjHcf3tXUw5dBUv0bjA9gBb9Hiv0QxkogRW/LCA/hw+O5tNx3k+nfPHWL30T3CwVMJJL6AULk2wnZaI3vBm2qd0/urAUTc2smNBuoLl0bId4H/CwPcNbIQDu7kqdPNR+Kgwc1s2jas1xuA8fCsC6KMYcDyPAbFepNuYJ/MFRjWJj5acTvxb01KTVbPHZJqKR082KhN2Q3M9g123IqXDNbyU5Nf0f286mCP0NgZor+HdJJZxre4dDMwfYrRAHmC7jLcNauNdzfnhFWzQeCPtXxSB2hg9wKjIX+EBONFp8lh76f0FxCp/GWkJJW9IRBA9bBWCr2u7Rkuk3zfjl7/HAmd/wF6+j9NnN/Lye4FzTEQZg3NzO4y97D/C6vq+hl33B5hq5WsMRFQrQwG/x7jcUQktveR0eUJDHiArAtuy4NgtRiP7UDIzBdvOYy/yCl6pLyodepn0vFI3PIcnXx3CPMj59PvR9L8HeFXAD/BWQHm7n7Ys8sOrmMf/o3TMj7F7pGDxfez5eR8vqL6I3WtlMPYLngmk1B5JtIRSmY+lfak4vMpxNk1Ma6PAz0DecPzHoAG8YdsUPgqOwbmZLWA8488w8FWmYuR838OARKYGjIcozyZcxl8Q6U+V7TWLvVAxSSjX2MYA2U2KedLdtiUMdOX5Smb2EANAUQ5FfduiqSGlMtjURh7sWt5K230+/V81FKYwkP0Yc5hm0zEJIEVnfEbvoFsTO4RnxJ3DS5GKbtEsawsD4Q/xIJkoCdUg7hcYFg5N4oFH0RJzuDpDKgzFM5q+9x08plKpC0fJNgb2hvMF9pKVgfManiX4rINzE/Atsjx77CSeHKC/xUFL13kX76irYuOqU3CT9uR0wzJRNqIcFKCWzEye703KXzqlDwt0z+ABtFXsGgi05AW/jlGEG3jk/yHWZfpv2e75HcaCgd9PPydpp3aGgO/ldOwz2HOwjKsgxBNv4PGje7iXKdppLZ1rP/qojJYQBaSSqKJpBs0ybUM7XNcbzpctXGavgXFuAmd9JPF6lsB5Houy1wVfTYGL+NpYDwO85mseIFNBlk1cnaFsQq0HHiBZSd89wAMt37I71ek6GLAIfF+ku2/bHzFQ+4reRYkO46ArykFlIu/i1cE2MIA5jSspFtLnLgb2AqGvsWBplVoq09jAoRTtRey5v0hvdYauwRG8OM9xvG3Rk3Tet9K5qMnmOj4juItzrkpfrkpJaP85LaHSm2qHdQWbeQw6c2pTO5xTDb2KgHWyZUuX2+tgnFsE51l8KrKfwDmC79tYIGUKA8d3ca3v1zjH1i97TNli4muL2uFUvWZ589iDaf+KtoOXRBQnrdRvTT+HUZxKSgeBrwrq5EqHLyj35nKe9zx+HSUJfIJPr0/j025l0N3FgW0F8/gWsOt0FashUaYx7mf91BmfYR63pGgKEK7SXVNjDfcaF7B7uY5nAN5O/1OBomN4ucmyIjtFxypaopP2oyLwmxgX/k3FbfWz3QzSVZG1FUrb9ptN0S2lizyRdM6jDs5l4Hsf4xJVlOUeDriDZI8Nw8qyCecxgJN8aQ17oZUwMEh1ulhQR56vCs5cxz3fixR7XXmZyOdwz1na7Sd4IoXaAMH2DLYraZk3McmgivqoVsItjJJoO0VcdMYP0751/DewQed3WBBwExuclnCudjadzxrdHeMFLDPY83YQl5RVvU8ajMU7K2ApmkZJKm1Ym9rhgYN0wbZ5zfsdjHPrB8767CaneQB7ef4RBsCvY8f8BHtQ9dDHKewws8eGZUUArS67B3H+8BEGyhp0yuR0VQvqXGS7txXLRPZqB6QkhzmKM9ikdIjZXkrWEAh/jQHZeeyevUfzusJlpn5v5zAOWPUapnAAnMGbej7F+VjRKTrva9hzF8FHdVCUhVeFkpBNpPVPYtdmE7tHqjq4XGNbvawN7XDrQToybzh89lwAr23T1FkBwSJwXmE47ZCUPXYOSxl9E+N7L9A9dbyNveRfUVztq247nFG2PJswJhWo9kAsuL+GgfZZzIPtUF5QJ9oS3QG2mCihTsI6nul0LAJmee39UocXsazFl7F7+UXax4W0/d9jtEFb920Rpx5OYiCijLwrGKgKIGaxpK4/x6vNPcWLs3+GBebyJJED2PWawdOMqzouHWyAU7lNBXeXsevTrw9dHRvZIB09OORnHYxzi+A8i/N963RL6fo9NJN4WnIeIDuNNzgVf9vBvKmvsWyl32AeU+w/9qyaAPosNkv4AeZlnsJA4SlOO/wOC1rG3mixHVBeJlKqhXXspVVWWSyoUzeDLQfhz9I5fD/t5wO6q6k1tbzd/EE8NfpK+uTPjepHSCe9hdElEzgXruLutzEHQL3m9Dyv4jWNq5hqBytB5AEG4tIPq7BPG9ZGkE6AGamGqt5wGRDHZUqXG4NxbysDZ9Lfi5hHvUh59pgizSomrgaaDzFt5r8F/g0GwqPMXe+0RZnZ9zEwAAPIrzFAuIsBxHMYICldeA73iJQ6rLocqtughIZYUEf1GvSp46ktYQkRAuGPMcD6AQZIH2MJEYNwoQv4oHIWr1Kmmr/XKFamqH6E2kjNYecnz1YDz9X0+wW6C+jPpO1/gAUYq6g8xIerRshDPHW7Xx+6JtZmkE5e9Sbte8OULLvv1BRtWVn22EnsoZb3JCmd0lWvYw/dUlruexj1MIV5YR9gUrNfMwbfaEUFdRbwtOyLGAB/iXt7Re2AnsdnI0qdlf51C287fwVP876GTc2bSqdyEP5D2scPsYGhjkwttw5OZZ3GBqgtbHCR99urUao83lexazSHPadKspkK28rP/wBOE6n2scpiXsdrZ+QFomLt4E3sfVDSx1w6p7I+dE1tFIN0lbzhZJPA5LMKxkXtcKr2HosBsrvpf69iU9N3MLWDZD4fYDn6v2QMvtHygjovUCwzU0Ed2N4O6BReBlSBn008dVZ6Z0mnOnhMYBIDn5herEBUVWVJDsLqavwjDDSbytRm2S49W8EVDVfo711LQ/0mNkgpGKfuzB383HOKQLRCLMT+BPNkD2GDZUw2uYcNakrwiCU95fmq/GXeeWNQG/UgnbYXf0aTN98h64G3n6ys91j0cnuBbSyveJ3uh38Wq+egDsZvpe+WMfD9LS4Z0su/QXcfwd1IcthNU8Fxeb4XsGsjiddFugvqzKbli9oByatax1+ksuaXRQE2Ne58DvOkj+EFZx5iIKV1i3oTFoHwdQz4TlNfpqbEC53n8fSdPPjrdEvK+m3rdDqW5/DkjxWcGriHgXBREXfVwdAA95Byb1ONgX+MOSALaZt/wHhy6bUlW8z70A1qbdASu+UNaxARHbKuL/ei9coeK0poKMoeq6qxncRevJ+zHXzfxzPcPmA7x6jOBJLS6cEUOEutMWoduAe1fgV1osxMAFLUDkiZYKs4+KqCWB5gU6Wyui+lOnGfxDsfL+Ca5Id42ciT2PN1H2/w+UY6xzoyNWXiCYAPpPOT95t31qhiZzFgPJvW/TAd07l0Ltexa/+gYF0pe8TtSqpWBsRLuAxRldjAvOXXsEFOwcRPsXfjSs3z6WWDFvjZTW9Y9GYcRDqMMGfcqx1ODrYa7dvIHoPBwLfKtvcjOFctqHONbp43bwf0GLsG0sQu4A9uXpu3boCtqs3ipUVPYADzCgZq6xhQfo1TW99imY+/x0Cs7N7VkZ7VsbMYPXYWu96q5vZi2o/68BXRJdP4zOAJ5tVLVZIDnRRCJ7Bndxm7J3q/prHneSZt7wU86WYGeze/xHjmL2kOom0W+GlDslbkDVOwbKQklB4fB4Rdoyl6tcPZ6eyxMvCVFnQQ8O1nKp4tnXME51jTedTAuWpBnSd4Ftt5utsBPcH5wwlcsQLbM9gGCbA1NdERr+PVyu5hFMD3sJfoUvooKLWFZ+c9wNOFT2IDywYGeDqnIi+1qr2AZWSexjz199KxiA5axwbAy2wHBs0wjqRjuoPdO3mckX+dxWeeRbWDO3jTiNm0nuRqGlSfwyiNV3Au+iKeol0luNmWdlgAKKVEG5K1+L+ia13kyeeUx9SwwLioHY4CZKfZ3XY4EXzfwqZ2Czj4qrbDu+w8txvBWWUo9XLsJjgfxYNtL1JcUOcqnln2HAYKanCpl3Mdrx+iZ2CF7nbsTabobVoRJ/wRDn6zGMBdS8sexWc8qsJ2LH0m8ODbRexa3aK7eWwdm8AGvx9j79Vd7Hn9Cpe7Sbb2BcXPyUJaVyn1cmYEGPI4IxWxQXHtYEk/53Ea6jG935sTeO2M59K+eqkz2tIOd3mh7Iw3nFMScjzitqfSpxFN0asdjr6Letyydjg7lT1WBr5PsQd5N8G3n3Xo1jnvBDjnBXW+i71sUWb2FebNRMpBPK8oF11LqRugWoBtt6wIhD/Ezu0n2DOTy9Q6mOf/MkZnnMOn/KrTHNvNL9G/eWyRKXPvbeya38Ychy+x66/mqo+xwayo1u80BoTzOCWxynawi1SEUr3LtncArynxGJ8dVLUFXJ3xXbbTGRfTcqMYpOvlDUfZqygJDQjgg1/0mAtpijbb4exG9tgENh0S+L6Np3t+gpeV/C2jN/3vZwJnVaWbxW+mgl11wTkvqHMBT5qQh/UgbfMo3TzvFs5xr+E8L3QH2NQKaBTTtotA+APsWf8pBk5RpjaHnb/0t9N0S8+upmXEO8s52cKm9mojtoGBWWycKrmd+hM+wSiON7B38gbmOFzBAPMU9rw/wRvN5u9bGSWh/02l/R9OxyJVya2CbWmdWbo7U7eRyhzpjJfxNk1fYUHAqnRGPM42g3RVvOEuqRrbKQn9Hukgrb/ZAf4L7KHR1CqXfT3EXiqR9fnvu92hQeCr7sW/YP+Abz+rAs6x2wb07tv2Dd7iSH3N1A6I9J3SwSfwrr07GWBry8pA+BAWEDuNebbvpv8r+BYTLxR8U0nJIuvgBZH0nikALUnlMg7OR3BZnwq8X0/H8SleYKmDAzYYcOaJFAvYPSzqxCxJoAJ4qr98k3IKRbPiBTyDrm1KSZ76SWy28V2q0RnR2q4r0c8bLpKqbdE9GMhbjpy8trlBAuP/ARtVc5BV+cJRm7rn4PtnePvwj9nf4NvPYjBF1MYi5kHFD9i08ho22Gq6eh7X7Kqal6K+sbNKDLCp7fuoPSdlVgbCB7BZ1AXs2lzGXqrzuEY3Jl4MkkEmOZ08Z9E44tOPYt70t2lf63hRo4nw/SoGoF+n7+KAq+1GSgLsPotemg3/79fGaBbvP6eaHm1XNywL0vWjM6I6o80gXRVvuIgXjl559JbXcd44Lv+nnY26lYHvBuYp/BpXPOxGE9VRs4N0e71SMKxgL5CkY5IgqYxiLBE5gz9wubJhtwNsTa0MhKfxer/zGChpYHmEg29eRrItm8Du0ZsY2BxLx6cg4QpeEOkWztWfxz1UeWMPcBC7j3GuohqmcbXSDJ7c0o9GlGd/EDv/e7Tf/LROkC6nMw7ipUn/iAHzA9oL0uX/099FUjWto/8JkCMIE5bftsNRswksYq8Mt59jF3wMvsVWVlBHfeh00+fxoIFMv0/jgHwV172OUoCtqZWB8BTwl9gzdhAbcL7Bvd/LdNclbttUc/gCrjC6gwHKTYyqeAWfydzBlQpP8LTx6XT857Fn4DD2XuveqzoaGJB/k9atcm7T2PMlblhg36YNmkl3Aru3L2EgrZT6zyinM3oF6XJvmez3IqmaKAmdi4J3sRpgvvw2GwUwHoNvdSsrqKO8/2U8kKaHahOvRxALqijAdh3vZ7eMewPqwC3eedQCb/0sB+H3MU/xJDa7+gl2Lf6IPV+X8Kpiw7Q5DDjP4EB3BwPJy+H/8xj4XcGu/zEMuBUQXE+fx7jO+SoG5B0MmL6DgbkK9DzCroWy7IrSvWVL+Ht4j+E8A4MW+MmDdHPYe/E9nM64jwWhP8eCgfKWewXpyrzhMkpCPQ31v1ogHHe+05aD789wLeMYfLutqG/bIsZvKltPwYl17GFYD9/P4JxZHmArq80bMwRjgG6vgHME4XUMZO9hnuZ3sGdvDfOO/yXtpun2skW80eZBnPtVmvIUFiBcwukRqR5msBmPAoeSoF3AgrGLGCjrfZnABlbNcB5jAL6Aec7qUahiSlJ6qIGqkleUZFU2lW9qkZZoWuCnX5AupzPUsfoi7jVHVUkvb1gKCOimGNTDL4Kwgtt5MK+v7RQYn8cz3H6KPQwRfH+HFVcZ5rRwL1hRQZ2DGCiqN1kH71YcU6dV3wDaDbApICiA1hRPOudRAWeBsLjf29ixKQvuGHb9Pgb+juZNP+uaulscoTvD8A6evXcO7yV3NTs21WFRsG4TO9fjeCfmVQyUL6RlVbJVHTTU7PUW3c+BZKwH0+cs3ansktmpol0bzWLbKvBTN0h3Ag8Cnk//U1OCP2LXPZqoh5zL3sJBWN1h1tgOwrUHmWGB8Rh8q1leUOc72Muk6L08Ful8dXPVo2yT4uaXbQdYovUDZ3nsO1Uu9CDWL/AdzEP8FgO52+k4TmED1U3smbuxA8ckOul5XCkxgV2be3gnkrMYSKtAfOzQ3MGeBbUouo9d91gbYgX3cFUmU/UlBNiS1M1iz1NsW6XefgJlJXqs0d3h+zDlySp1sgnbKvAzaPH3eTwLMKczvkw/o+ohStVmcC9Z+nqBNpQE5yrYRFtgXAS+m5jOV+D7Ls0KbO8niwV1voc9DBLPb2Ivxj08OQC6I7Kx+aWmt7vdkmk3wHkWG7j+ElNCgL1Av8Gn969h13pYTT+LbBpvg6QBczL9fIjdr5W0zPH0/TW265RVlEcpy6s4MOplV1ftZeyZiE1BFWQSkECxnE40wSpelzgOCHF7sTehjqVqNmEEq6YFfoYhWZOX+zxGZ7yEX+NLGJ3xEYZbM3hmsUA4p1sagTB2rxqDcS/wVXrx3zEGX8nMXsLa71zAu09o2qlC9Rp5wb3em3S3AhrFDLbcpulu8hrBOfYRrAvOh7Dp/PfwUpEPsMy4X2LTTHXWfgkDqbabfpZZDMpJySDOXtztQwyET+DZjUVyuZwfVifqA3RH6tUQNJ9dRhqgVzBSTVlVMlRe4ArdOQdlg30RQIsige6CSZrd9epKUmZNvWEKlivjhvU/JZu8iCebqBvKHzF8+5JuEK4UnCswBf00KFSu2ibwfQuLQp9iO/j+iuIW6s+SHcW83Tewal9nsKnzBHZtlHF1D+/DJmBq0vxyL1hTcI7t5sW5qvHmLeBfY7TDetr+DzBvuM2mn/1sCS+JuYHrW5ewWc5lDMxO4y2LVJuj6NgiP/wUz4qdxQZodQzPuV+ZgLgXDdDBO6GAP5fqCXgEA39l4q5gz6t44+iBF9mBtB1lGyqBRdyqUr316VW5TiAMg9eVyCmLiH1F9IkaVIhCfB5PkvkKo1w/p77IYBsIxwMssjLwvYhnuP2awUoA7nWT0uFVDAhex7wepWI/orvJo25k5HlVs+EGeyeDbVBTllkROE/h0+gT6X8beInVW5i3+yEeMFFC0ATtNP2sYjEo9xQbYKcxEFrBPOE76RzkLd+kfICN/PAq9qycx5UVKhvbq1xsFZmYEn1m03FK6lbkLYpHPho+E3hJ25ipmx9THqSbw4E+cthQDNCP2O7FNq0r0csbLgomqlbHBD4AbqXjfR7nmQ/iap3PsWevlzNaCsLp9w0d5Hk8w+3PsZF8DL7dJm7pHQx8X8F5PXG9t7GHqYPzSjsdYNtLNomB1Yu4EmALnx4vYsD8mG4Q7mD0z08wL+9zbIY2zMzAPCj3CANYpR6rhdRtvAv4ZPr7KuWDrfhhFWcXyKtH3W36zziL6hDnx76A641VxF/qHOg/zZ7E7o+quqnjygbeD/JbfNbXL0gnDzrSHDo+bVOgr+JG/TLlqnrD4tTBr9kULlNTfEYZqbm2GLwU6IvYsziB3SvJ5i6l5SII5wNK1zXqYFrL4+kfn2JTv98wDrjN4VXfVCJxEY9IyysQpyaJlwJsanT5rCtGclvEWw4VtZtfwXjf17Br/Vn66PoexuRrh2ne9LOO5UE5FdNR66TNdBw3MI/vbFrnLvYM9JrGih8+htEYBzEQ/iJtr4qHn9chzm0W75iyTrcUsSoQF1knHW/siiJvV45J3fo2CxjgH8ZmBfoJPqNUsooSVgRw8RzKvOGiIKBkapqFSUJaVAazzObx2NBL+Cz4a4xrFp0Rvfd8exMd4L/HuN93eXY5X3lab2J8r1IrNXoq+KD2TtJw3mA0a/OOknWo1m7+IAbCMWPuw7SN2bT+T9M27uCdLVQ2tG0pXR6Uu4mB7uF0DFt46rTSkWfDefWrZriITXfP46oJpe9WOZcYRCoC4kkM3FSe8wk+7db6FKzXxARcC3R3WFeNkyinu832a9MrSCfuVgoOBQpJy+TZhPLMozecb19gG0F4DZ8pNA3OddI2n8Olc0dxOuMzLJYRGYY/eeS7kYE3CraEReV/iNENL+GBhjWcbljG+dz9GmAbhqm7c1nN39huvgyEpQQ4jM1QLmAv2vvY9ZeULvZEexo+Te9NHpS7gYPwORyYr2BT7Zi6fJn+VMkcNrX9flpfNaMv1zhGAQYUg8UcLl1bw0F4I6xPwXp1rQi4opVVp1umm3N+Sre32uu4JvB6HDGbUAFHafM1a5VaKaYvT4f9SblEwbnUAWHREYR9TaRjUylQ0Rl3MFXGRew52gDWnwUwnsVerJfx6e9ZvCbsY7z7r/qcPcIz1/ZCbd7dtg7d7eZPpO97tZvvB8ILVJOpqfWPAoJF4LxC//uXB+UuY6Cr76cwCkr1I87h7elj6nKZiZ75btrHLYwWrDuoRw1xDhiqNzyFp+Zu0J0h2RYQN8mkm8M556N4WvhTvClFmZyuX5BOHnT0no/gQU294wLnm3gFw6JaxFVM9yIOjLE6WxygROuoqNGFtO49Es+838B4Ant5nsfUDa9io5EaQiqxQu2ertKdRLFbzS/3ojVtNy8QfgUDiRyEB5WpRXCexYX6CsoIoKXGyINyl7Fn4jjOEyt1eRJXOagetFLTi2wCA4dT6eeJdAx/pBqVUbS9Ig1xJ53vAbyxgJbJaQkYHIjbKvAzh4OmwDmX093G62X044bzFGZpoY/TnfYtsFzBi+5rMKgiVctBOGboQbeHL08+BllVUvMFnM44vNfB+DDe/PJVbMQ5mT5T2Ik/wSiHq+Ejr7dqKcGxmZW1m69S8zeC8FMMZCMIT2H38E3alakVgXOU0In7/QZ7IY/h3U3u4PSBUpeL6kfkptrBqrAmoPwWoySaZE2WaYinsPsyiSsAthg+LTFIgZ+yTDrJ6aTWkGe7jnPO+ogPjtxwVD7kVM5G+H4Ju8+iNw6GZXtlE0YQjuoKrRu5bnHB8rhVv6Lsmp3YS2C8hDe/PIcnVSgoBN4KRl7up9jLNA6wNbMpPPj2HN58sk67+X4gvJMytbm0Lwn41Xb+CS6jm0jffYWd6xm84HtR6nK0eRxIlM22iL2U6hDdBMCKPFElb6iOyUpYZlRoiWhNMummcG5Y11VOloLqN9PvUbaWZ7JCN+BDt0KiXzbhCtuLJj1iOwgrtVmzMQUGK1GcowrGM9jUTmArHeppvIeYjv0m9vJcxKazKgyec5Rjq2biNhV8m8Cn5Or0UeXhUuDtexSDMJi3WdT0s20rCsqpTsRRnMddxZ6lFQyYF+mOH5TpXA/hVJhe3CkMQNYwYG9aQ0RAHD3RmbSvDh6slHQtziTaAOJ+Qboq1lZdiQm8b58yBdX38SGeHHMDDwrGdesE5zp478JjOB8tb3cVT1ZRyvdjvJztWoV9bNvhbpt43tN4E8az2IU+hV0E6SQf40GU9zHwFUiMA2zNLErPzuGJF7fx4FudmgJVQPgE3U0/h1VNrSgodx0vtPMc5nnFIJyuwzQuZdQLHOs5g1MRKll5C+ehYwW5ptmVeTKHyoEqPVoV16CbloB2gHjQAj9NvOGiIF2Rblhda9TJ/mj6XUW3HtOduahBq8o5/Kl4D9urts1jz4wGAw0IG3hVvkhxlCWrFJ78TpsKlDyHe75H0u8H0/+XcMrhKhbw+AP2Ul9iHGAb1Pq1m4/Ss6pWBYRzmdowqqmVBeVuYi+FeG/xv5fTsZSlLqsnoKR0evHVBPcm9kxu4iC8lb7v1+SzzIo0xEplBqNw1vHmAXk96TaAOFcY1LU63rCWh/Ignb6XPjgGZvXpYI6bdM6aRW9g4BwbLRfRYBGEowcdC9mLPtF5rae/FYiM2YSwPd37ftq39iWee+g640XsARfoqoi2LtQi9mAr+PAA09/9AUvD/pi92fxy1EzSs6bt5ntZFRCuKlMbxPJMuTvYeYn2kCb4GMX1I5TOWpS6HKkIZYSpx+AsXmthk+5C7k0sDzxpuhxba+klzmkJrQ/Nr23bQbp+26jqDUu+NoPrpwXC2mcETHHbynIU56z7p+p0tzDceUI3wMZtamCKSSNKEoktlybD3wu4SiQqOXRNJLV7jAH0/TbBOOd5z6S/l7AHeQl7c8dATgAAIABJREFUqFRucxWvtP8+lgH4TYvH86zbLN1Vz2Zot918FRDeiWpqRZly3+CDuLL3xN+q3sMxPB37NuYJ58A2lZY7zvbawR3sGhyj21OLSSeS0sWOLL0s1xDPYt79FvbSqkIdbKcltD40B+LdCNJFr7foe/DiUireE4NiWlbACb3TlzV4Sk0jxYZUV/cwcFzBg3G6tzE5RABchKG6fpKxSe89jWGgsPAgPtupXEIzt8jznsFfhnm8KpR4FWkfl7Hp3AfY9PT3jL3etk01f09jQNyh/XbzVUB4WDK1aEVBuW/CPtTCSqUrr2KD/yG6U5eL6kccwF7Uo9g1VD0KDV5SXkziz/AG3thzBpfSyZNT3QOBdX4tIhCKTplKx/YYp0uKaAkYHIgH1Q63EaTLv5/E6zhLMRL52xyE8+BczIyL3qsaIkjmuIQN1grURcXG7fS5g4NqDrLy/jVI9KNjdCzSIC8Ah6qCsWRlCrCdxpFdPI16fM1hD9t9jA/8CAvQfMmzUyZypyzW/D1Lt/Ss7XbzR7Cqfr1AeCdkatIBH2J7UA7smpyluH7EOez5LEtdPoS9lHkbo5iQorZHj9P683T3p8utQ7fOuQic5eVu4kCuIJS44X60BDQv+DMILTEMb1gJIZrNaaYRpWMqdTkVtqH/l3mtccBZw1tMxUClSn4u4IWLpGZRdTrNjqoOWnFQiPuJNEuhi626AgLdc3j1JJ2gCOqZ9JGL/zlGN6iE3Lh2Q/tWlngh7jcCUxtWBYShW6Z2CZOptVVytV9QDuzZ1MDUwWV483TXj7hC9wA1iXnAJylvYzSBc3+qXaJkDvWnq2oCZ3XfnseDV5MY2Kp8pJaF4dASMUjXhJYYJEin/YsGEFjN49JVeZ0xsBaBX8kt0hMXea2qR7GZ/U/XVoOjBro8MaODFz8SvaFi+fKcFRhcy9YrA+DCa93BpWTyro6FCxJHal00yXhuYi/lZ1ipuKtFOxjbwDaJAZGCUwcZTHpW1aqC8ElMpnaK9mVq/YJyYC/mSbrrR1zCuWKlLl+mu36EvNxj2HtQ1sYo78T8AJdQ3Wcw3l0v6xLeC1EvqwBnOe2zTcVEW9rhmPSgbQrgYwbaVPjk6cr6CFs2sHOOMwZw8JWGd5XetFcEQ3AgVEamKsrJQ66qGIn6Yz0/sTqdvOfYRFgDQM971QH+R8wdV+Q2v4CTuOf1KZbO+TU702X3WbUFugOh03TX/L3G8CifqiA8TJlaDMqBAWwMyoE9qycwZ2IaA+pvcJriEMWpy+IHD2HnVNbGKKckpCGO/ekGuQeaZh9I23uKS54WcQdInqcy+p7gQNRU6dAvSFfGtcqTjTU/wEE5N3mmEZDWs+9VQU2gGJvXigLJ+exeg4eCoHkqtI5bKeXaVxsO5BLmEAicpax5iD03sRN3zwP/Z2nlCVy8/Ah7sb5KPy/y7NY63gnrJT2LNX+HaVVBeJgytX5BOZmKQc3iRXzA9cMrePq7OEgVQJ/DXgpNL3NAm8Rr565hL5O4YfWnK+OHq5jAQo1p1Q1G3nBOS3TwgJMq08mjFaBIsdELWBW4yqf7UY7VTyGgj5QivQJaG2E7+bR/Aqc4SddAFdQiNZQnXtQBYT23AuEI+G04MtFh1WAZVRP95HRKCOk6gX+GPZxXcAD+mnFroGFbkfRMiRc7WT2uKggPU6bWLyiXLzeHTQe/wV6sM3jro1g/YhaXpk3itSjKHAtREh08kwq8P11dfji3TtqOKgiq/RG4p1ymltD6AuxF3IMWaOXAKMCIqgN5pLF6WD+FwEbYRtMgXREIRw8/LpcX4+nFZ+fLK1NRtEekIgZ9VrWvOEhEHrjM5vDmrEoYAi8dehe4I864aouXsTU3eb8Kiuql71Xzd5hWFYSHJVOrEpSTHUrLLWBAegkDRkn4NrDrJ+neIk5FbOIFZcqOOVISjzAwF7+o4jRt8MOHMJB4gpeFnMIAVUCsqXvutSrIVWRTYRlN5yUFW8Gu1WPcm62TUdeGZC2CsDzUnA/OOd7SQFfYZl6lTWCpaxCDe02tkhKips3Q3T37ENBpM+ljbNstSs/q1PwdplUF4Q5WQOfHGEi1JVOrEpST5fUjLmGgchqjMrYwT/da+j1SEepH2CsleRIbFJfC8vJUlblVhx8u41oXcYnUExzo86m6wCn3WmPxmSq6VnHRC/gUXWqBWF+j18DfVLJGWC4HYQ0QEYTBr1nMgCvbV6QvOuE7KTVidtwgVFItJcQA+yHt58gYjNu3ftKzqj3O2raqIAzDkalVCcrJiupH3MWuZ14/QoAqKkJBk150QgevMQHe31A2j3HGEv4LmKL3WYVrnUzbUnLIPRwoBCBruJ5YL3x+rFAPAPICP9N4bQ3FhzR9f8p2cI5qiyqyt7yuhHhutbyPsjHCsqITRLFUAWEF8+K1jlRLv0Gjl8X7qe1WUkI0sG368DEYD26Snp3DwEbKlDo1f4dpdUB4GDK1qkE5KK4fUZS6fBWnFkRFSIxfxrMLYJTANIdzwJELPIQB6DrF3HJVrlXZY2D3PxYo75XEEY9XVgcIqhT4UUBQAC0wXQ0fURp1vOEchGOgLzddbw0KZZxrLo3TviL3XcVzL7M4qOZ65GE4TaX3dQzGzSzW/D2N3cydkp5VtQjCjzGe92OKH/phyNSqBuWgd/2IM9jLLWXJPDZYLGAvjAJtUZZZ5LVOpfNcwBURyuzSC60awfdwbzVXDPQzKSVm034ehfWK1BJF1sQbHiSTTlXpFnBw3qS7wWuUnGl/8pyhO3lDfG2uqhBHLuAT9VJkeUJIEUg2BeFeSohhJar1HVzHYFzNOlRrNz8KVgeE25ap1QnKgYHAebx+hDjeI3jW3GPsOqtVzgzeGkdBMFmR17qB16Bdx0soxqlnE344NykllD2mgJmAoopaQtuhx/+LbNACP3mQTny2pHTRc16hW6Mr0IzUh+5DxBdREhosyoqvKylDICzA1n2N3HAdEG6qhBjUKs9wxmBcbsOo+TtMqwPCbcvUYlBOBXhuYNPzIq5VKfensWdQxVgOYF7vAbzd+izuBStBQ/V8+3mtB7DBYSZt73bBObahH1axl0mchxXYVKUloBkQ59PrOlY1SCetrjJzYxKGAPoRDsQ6b1mkLcpAWKoSJZPEzDgdJ9QD4WEoIapabZppDMZuufQsbzc/SM3fYVodEG4iU5NHUUQBKNB2Ov3vPt7yJje9pFI8bOK0zlTaxjxel0FqgBW8c29VsJnCvOgilUQ8r0H1wx28D90GFghT0EcBqiq0hLYF1Z+vQWiJfP2qdSXiYCq+WWqQDTyFWbSGnp1evHAst7BJNyUSVRJ1BptIT+nY2lZClFlTrv+Zl7Yp8UJenZo7tlXzd5hWB4QnsHbgb2Hg8QVWTW+V7gh1kSyr6BmZx2vBKtvtEi5bKgponca84Um8fsQM3nBAL/EM9mKq/sl96gHUYZxyuENx8DTqhx/QTK6X96GTx6cXviotoeOmzzLR2ijwE4GqX5BOz0Us0KN9ynOdw2kNZfqpGP5D7BrFNOdIgWg2sYpTH3VBeCeVEGVWF4g78eezCMax5m/ddvOjYBGElzFQ/QJ/iHNAPZuWP4p5oh9h5xutqkLgIN4eS0G5XlK9Dl4/YgpPXZ5Ix3UkLfcUB/68dnBVU7sdJWgUpTrD4PzwBN196JbpDgLVoSWgHhDn3mwTWiKv89Brv/E5ihSGvPEIdBG0p8O6scyl6IsYHJTuGuqD8E4rIcqsCQjn62w9C2A8RXm7+bZr/g5iepiLAFW1Fd7EEjGeYkkYX7H9gZW3dBjjhI9i4PZbzOOvqxDIg3IP8UGrVxDqOM4hC4S3sEFQTRx1LKtsrx1c1abT9hawF/sW5QA4KD+c96FbpTvSX4eWgHpA3EaQrqo3rKCcqqhFsMyTMqIGWyAfs94mMC/4EN4+SpK3WM9ZadH9QHg3lBBl1goIF21sP1lRu3klXtRpNz+I9eJaIw0QxexFtoCpHZ7HBo2PMDpClECejXWIdmRqdTLlovWqH3ESuzeqaKVqaLF2cFUTx38EuwZ3KK85MSg/rEpq6kP3GAchgUcTWoI+y8lyb7aO1cmkk+JB/K0GtZiiHN+b6JVGUJRjIT2zEj8EvOKdF/DaGlt40aPYukrnsBtKiDJrFYSLNrqXTYkXw6r5289rrcq1xsIneTnB/LuDwBtU44ShPZnaAXwQg96ZctFi/Yj7eBdv3ZND6di/xamIpjOSBex+q/hPGSUBg/PDc3T3oROYCBw3aUZLQP97M2iQrmpdiQjCW7hXHwsQrWXL65lXcE5JH9PhA84HR28+euk6p1iVLgK8nAzJ6XZCCVFmg4BwIQCXbXyvWT/p2WXK+cC2vNaqXGuV3liyoxioVgXhtmRqMVNuHc8e7AcuSxgIL+FFfB6l7XwPA0JVU1PX5KYJMdMYCM/Tn5KAwfhh1ZSYwmsNKzAncIS9TUtE2SF4s0898xFowd+buN0NnNbQe7MZthWBMwfhosFhCpfRzbFdmxy9550C5aGCsNbZS2CsaWle8/ce5mVdx164nfBaq2Zj1bG6INxEplZkRZlyVepnLIb1lnEK4zTwMsbjPsYbEfTyXvvZBK6S6EdJyAbhhw/gsYXHOIjHzDFNw6vQElAdiHciSCdPWPsRcAqcYTsFEHlabTPWloiAma/bD4T7KSFEa6iPoAYPeczDBOe6M5k6IDwRPiMJxtFrPYBPc6P07E74lHk7w/Bah2F1QVgytR/RvJpak6CcbB4bDI/hnTRuY+qI19P3DzCFxxUGb0pQh5KAwfhhaaeV3i5vOKcLYnZYlcGvKhDnBX7a9oYjCGsfArBIScR9x9mhroXAV1SC9lUHhAdRQpSBswKDTxgcnIcBwpG/nwjfbdvhMKwJ13oQm+KewjyhDgZS17AXX7WXd9JrHYbVBWHorqZ2EWv+WqcI0TTe61CtiqoE5cC55ON4EZ9b2CD5Rjqfe8AnGFUxaHZi3vboNv1phqb8sHSvKnGquhT6n7jRLboLo1fxWqsC8aBBul7ecAThGGiL+9X3UQUR390YsBSobhVsT+sWcdXDUkLERBT1t4Nm4FwVhKsE5bRMvB455v7pOtYF42FwraIfTuAv3yoeOLrIaEjP2rImIJxXU/tN+lnVmgbloLuIzzo2KN4EXsB46oMYqH+EAfSg+k7J+GIn5ir3vyk/PI15w0reyPvsCYi1j6q0hNanz7JtBuny9XuBcO5FC8AjLxyL9Oh9jVrhHESLQBh2XglRBZzz9kttgXDu/RaBL3RXntsi0RSKXuYebNHfRbZBt0da9Hv8e5PRrfk7TGsCwoNWU2salAN7EdUUdRNv7Pk8xlUv4B3Cr9U4pn7HGzsxV5W8NeGHO3iQSDWFy6bY+r0qLaHtQ/8U46ZBOoFCES2Rg3DeOikCpiiJKEeLtSRiL764Tg762qbkc7lDFmewO206r6IU7lUcnPuVBSgC4SLqYaJguSgrzK9dRzt4NVuxKqjG0bSf9ZOeXWGw3mKjbE1AeFCZmhp2Vs2Ui6Y6EfKiVfDnHMZVH0jb+hC7f21YUSfmqlPKJvxwTGVWW/hoEYgVVKpKS+i4oH92W9tBuiIQXme7pxZ53i28EJBASoExKSWqgnCkJaEbL3YrJlNk0XOWYgPcc1Z9jFWK+eD8euZAHWmcooBlvs6WvlSRkyZTpF4W282rMPio1fwdpjUB4UFkaoME5bS+7tUERj08wu7hc9hzci2dw50K26ti4njzTsx11q3DD09gz+UMnryRP/MCOQFyE1qCHsuLBoDmtETuDZeBcCdbPq6zhQOS1lMFNqgOwvnP3agJUdfy+zRBd8lQtYnSvVeyiga2HEz1fubUQ77PbQAc/9dmAK/D3qn5O0w7CrwNfAcDsyogPIhMbZCgHNh9i/UjVHT9JHYfpzHv+HParVpX1Im56rab8MMxeWMZB51o4jUFRE1oCSg/jxgsa0JL5N5wh2IQBj+PPPOuQ3dmnORo8gIj/5wDqkB4KixHOJ6drglR16oOlpP48zKbPpM4rRFbVRVRD9HKeONIZWzSIICXW69286NY83eY1gSEB5GpDRKUAwdhpTtrun4IozkmwjaretdVrCklIavLD09i3rBSmfOC9LIYJ4lZaFWsHy0xqHY494ahHISLqAJpdVURD7xzcgSGXiCswL1mC1HKNqxAXFtWBYTj4KXl40/1EVThIwVEBc7ynrV8Tl0U8c1dwb8maopRajc/CtYEhME80Z9ivO5FqsvUBgnKyZToISnXKvawLWEP5LdYwK7NCnaTab8HsQH7NvUqs3XSuvNU54clV9vCi58XbVfKAXmKVWkJrU+P5QcN0kVveIvt2XF5hpvAdpPt56ZBZpVu3jPGinIQlo5XM4UoIx116wXCMQAaQTiqHfKg21ZYN6o1ipq8RnDW/rcBcNnBltkMBr4C4FFoNz8K1hSEo0ztKtb0swoHO0hQTnYIk6QtYfdeoKO6so+x+3qtwnlUNQXZYifmOjWKoT4/PIV5w3kqc9GxqcAP+HS9qvUD4ja0w9pHpBxyEI5yNHm6EWCiKiLSDDEov5Vta5bu2hN5d+dRtjIQjuCraxsVIEUA3M80oKmeswKhuu4reAsu1Wvue9DRnkXpWVVrCsJRpnYXoyMu9lln0KCcTEV8jmEP4ZP0kWxxFe+63OYLV6XtUT+rww93cG94g+5moEXLSsall6bOsfUC4ja0wzGQKMDIQRi6Nf7ifKFbB6zzkmQt0gtbYTvTOJBoxlTWJmkULQfhXHYW4wGaDej+VAVf7Sfy69pe/EhKJ89Zy0Sd82q+Ueiu+Xue0Ws3PwrWFISbyNSKgnKXqC//UxGfM3hfuTv4w9LBQbhNZcsU/dseVbE6/HDsQ/eE3t5znH5LQVCXPqBknTaCdFX0uVIACGAFJlEtEUFYAagI6DFhK/eC9wINEU33JKo7cglaVIaUqR56bT9uF7rla6X0A920hnhn3TNVo3vaAf4KmzJrmnoV875usPduyDCsKQg3kakNGpSTzWMg/B3s5n+LDarr6X8zGLhdplhV0NQiJSFP9l7D7VTlhzt48sY6do96XeNJvINzP6F/2f6gmIMcNEgXS09Gfjbfj17qCboL80S+E7oDblE3LBCOIBU7MO8lKwLdGDyLA1PdWUrklfV7UTp4ne3pZ8450wH+Ee4d7dfEiybWFISbyNTaCMqBgcz3cBC+hVEhK9hUfw6b4VymfZ6/DUoC6vHDMXlD1EsvU/GpzbRsEx4Xtr+AgwbplHTRobj0pPah4jgd3KOXzhi6kziiKmST7poQOofcU9wLFgEy0g6w3UstqtNRxYqSZOpSGfF4e5nolNk2dcb7xZqCcJFM7T16A0QbQTmwl/QVDIhn0jb+mPZ9CvMcH2AznrbrfLRFSUB1fjgmb6xh96nfNZMnsoZdlyYeDQXrDRKkk5c+SXmQTME0gbWSECRXk7emv5VQomtXpDXOs8NG3SI9ED36HHCLPlUtcsoUbLvJMZdZYzXFs2JNQRjqydTaCsqBgcurWP3gSYzSUEumsxhAPsZAftBSlrm1RUnIqvLDeR+6fsAvGmMKB7I61i8y3yRIp+i72hvldEmkLNR9Q4MIdKdSRxDW8UXtcJye56A8qhb5WZ1rBMk88KZ19P+q71EMlMrqlHkoOu5e1nObYzAeDIRPAj9JP/vJ1NoKyoF5hWrJBDYAfJCO+SwGaqo1XDUTr+7+q3RirmJV+eEJtvehq5LwMZ/2sUx9pUjbtEQMukF38FCSMmmCo7etbhsxKUXrxAQPHau4ZmmN9wII54qHogy/CMB5UkVVEI4Ux6AURNxmmVUG9WcZjAcB4ToytbaCctrvq1iH6A3gS6xgzyYGwkfw+h9t1Y+IVqcTcxWryg8X9aGrcqzD4IebFPiJnq5kY+J75dUqcCdQEfAo7XkqbE9/yxuOoB3ToUcZhCP1EMExXtsioKwLwrkKYicAWMfV6gb3ow0CwlGmpuI/ZTK1Q3iW4iBBuYm0jZcxOmQd66LxYdrvmfR/9Zlrs36ErEP1TsxVrQo/PElxH7p+xyqOtQk/rG2QrRcBsWoRHIFwBPA8oBZlcBEYBMJ54odkbwIs8cxaPkqv2i7+NahF8I0AHNOrc5lYTEapSkWUAbBmDYO8H614wXU3vN9sEBCOMrU1DAjLZGptBuWOY0HBM9hL9wXWSWMTy4g8kY7hOu2mLkdrk5KQVeGHy/rQ9bIJPCCmmgF1rQiI62qHBcKR58y1vdAtXYsACt1cab7OGttlb6MIwlUCb9FDLeLnq4JwUSIGYdt1A3r5tntZK87PswDGg4BwkUzt92wHhjaDcothWyex6ewfga/Sfk+n77cwmqDN1OVodTsxV7Eq/HDsQye5WpVrOIXRGR0MhJskseRAXFc7HEE4AkyUlMkDVANQccACTwGvEjXAKYiifo2jBMIREKP3C8W8b1xPVgeEi8BXyw8KwPlx5db27HNfg/EgIFxVptZWUG4C44NPYUAr7vcSxkU/Sd+fwe7ZTYYHwjqWNikJ6M8PdyjvQ9fLOnhQbBO7bk2uSw7EdYJ0OQiv46nF4Fl06rgR9bECpihhm8TTkUVD5MASQbiJrK4ti+CbJ5LkOuaiRBlZFRDuFHzIlq2TVVd2Pr2sdRCuuuO9aDkIvwd8SnWP4QLwY3rL1NoKyikgdgKbtqui2TUMiB+m/6s4/zBSl6PV7cRc1frxw7EPXZXkDZkSIaboDorVtRyIq2qHY0U0LatauErgWGF7a6OYvqxEjhk8SSMvKhPPabdBuMjzjYHCMu8334asHwiXgW9ct4muuN8x9dKWD8X2ExhHEH6IKRzqgHAVmVpbQTlREYfoTuX9FqM37uEgPM1wUpejiZ8+QPVOzFWtFz8sDXBZH7pepqm8UoIl/6pjRS9gFe1wDsLS+qreh/jqjWwdedrgBd4FwgpQKhCnY4oDRC712imLvG8R9VAniy/HnCLvNtIdZP/Pl92TXnCR7QcwHhSEc5nau5hXGi0G5Z7QrHKdFAkn8SCTprFKzLiTljmPvajqktI0o62fTWDX7xD2QlXtxFzFcn74Ad0Pd78+dL22Gwt8F/GoVbcD273hXrREBOG4HQGlatnmnmycvmsQmU7HrX5ra2EZeZm5mmKnQLiMeogJF7EgUdVtlv0dqaEySaGsbRoi94J77bst6xT9vpfBeFAQ7idTaysoJypCioQNnE98mrZ5C8uWO4+nLg+jfkS0pp2Yq1gvfjimMldN3ojrxnZBRQXRq1h84asE6QTC0SvUPgXcRXWBBbraX5SyqVpX7FUHfi3y4N6wQThSD7n3K667CRCWgXARIOX0BNn3o+oFF4Jrj98L978XwfgY5sk2BeF+MrW2gnLzGJiLK13GXsaDab+XcRA+hwHUIwyc205djpa3PWqTkoDe/HCT5A2ZPMqcmxwEiPsF6QTCeUlLAa+2F2sGa8CIdYHjfsRtx/WjNxwz6uJ22zYNAFHvDM2oh7Lt53/3AuCtbJlhAHAdL7gVgC34vei7ShsbJRsUhPvJ1NoIynWwKf9JDFxXMRCfTce/ifHR19P+zuP1I64xWG2HfiZKokkn5qpWxg9PUq0PXZHJw4yJDlG3W8fii94rSCcKKXrhUkPkkrSoH47t7mNyh9QRMZiXJyOIwoDmXmgvE9DFxJF4/k2oh7L9RIvSswhIRRl1bQBw0THk3+egXBVgy4C0FGDr2F4A40FBuJ9MrY2gnCqXncAA5zEWjFvA5GpbeJuqGbpTl+t0cm5qg3RirmK9+OEqfejKTF6mPMxBpuzxWS8L0kkJIRCWGkLT9KiGiMkZcbBQYXZRFJLbRQojeqERhONg04ZF8I0UiSRnMeOtjX3l+42DTdT95sG5QUA40h7x99zT1n5yq+W99jmGgb4fZTAeFISht0ytjaDcAQzkjmLX8i5GaxzEAL6DgftV7OE8zfBTl6MN2om5ipXxw1X70JWZQC6C76BALJDIaYkpvC175HNjy6HIqcZov7hmtbqPXTWiRpiwXq6QaAuEi6iHuH2lTbedGKL95sV9cgCu4gXXpQd60Q5x+2UAWwcwm+Jlpfs6imDcBgiXydTaCsodSttZwl7YO+kjOdokBnyXsGus+hFKXR52B20B5GG8v90wgoFF/HCH6n3oiiwCmsCjiua31/agOEg3iz0H8mCfsF2S1sEDrlEfrBddHnP8v7zjIi5U24zbGgQco+ohV4RE7rft5y0ORjGoGa9Pp+D/hP/FbfWyHEh7AXCZGqNtIO31fSMgHyUwbgOEo0ztNgbC12gnKDeJecAnsRdvGQNcaYKfw14IbXsDT13eZLj1I2TirAfpxFzVivjhOn3oimwCBzXRREV0QlWLPCm4ckEgLMBfZnsfPGXVRd5YPHDcdizcE3vHRVWEltfPCFpNzqmIehB/Lb31MO55vJ45550PYHlZz3jd8mPbKvi+SFWRUw79gnH9aIkq30dr6i1XOo5RAOM2QLhMpjbH4EE5TfWPYdfrPgaqj3GqYxYH4bW0/E6kLkdrq+1RPyvih6FeH7oii7TEKv6yDyJdi7ylQFjZcavp+Ney9QRy0hNLC7yB15iIIJyDdNm0PIJwXX40FgvKPfy2qIci0MvpmKh5jp4/2fLx+3hcVc+5jEaI1zbaIOc+CB1RB+wbHchOWRsgXCZTW6Q7KKcmq3WCR0t4ltw6Bra30jaOYZ7wHAbO39BdP2KC4acuy9pse9TPivjhun3ocstpiTX8pW8KxAKQCGJSOazgmW5aPgc6eeOx5nBM/Y0gHDPmNunevyyCMPQ/Jx1TLL8p7zMG3vptI/7eKfg+z3CL35dlv+UgHLddNtDU9UaLPN5+XnC/bZR9V2StgmxV2w0wbgOEy2RqBxksKCewUdBrGQNh1Wg4lLa/kI79G8wLzOtHXGPwCmf9rIiSGKY0LueHN6jfhy5SFqu4AAAgAElEQVS3nJaQ95kH2KqaQEwZejlwqkMydE/1Cd9HtUFMAda0O9IRAqI4Be81fe8FPjHwFvcVvd+4fC9Ptsz6qQSKvND871wRov+1Qb/1A+EiiqNovSLbFYCtYzsJxm2AcJFM7X26s9eaBOWkAz6OF8m5hSdfLGGe8EEMdMQ372TqcrSdoiRkOT8sbhjqpTJHy2kJ2K7drWOSpSnZQkC4ikvTiqb6MUgYJWsx605gI3VE7g3mU/giPjjnQAW+eWZfHnjr944W0QBlKoL8OHIqRettsl0ZQcmybShAirjg/LsyG3mQrWo7AcZtgDBYUC7K1ATCMSj3DeWNQIssUhEbmHd5EweHRQyE1VMu1o84h738O5G6LNtJSgK288OPcfVB3VTmaPJcVSZSHmxdxUQHVzqI41XtX/3cortNvcA+gl3U+cqzjuCYF4GP3nAsAFSkJIieZOSjCeto+zn3G0GlCfeaWxUKpag+RFMA7kUV9PKC+w0k+9KGCcZtgfBZ4J20vasYL3yA5kE5ZaKJihCo3QnHpuy4Y3hjz9t0e+CPMBB+VPN8mlikJEQTDJOSgO388CbNU5llOS2xTvVylfmxiU/NQVaepbzVqCuO0/38/+Dcdc7PCigiEAtcwQE1n1bn9R6g2/ONOuZhAU08bu2nCFTzZXLPNHrHZfupa/vGq23DhgHGJ7ECPs8zGAgfweiICxgQfoY90E2DcjkV8RAD4fvZMucwoI71IxbS90pdvkI9D3wQm0/HPJ2O+Q7DV2ZEfvgBXjO4SfKGLKcl5IVGXWxuOV+opp5aJ6cbdFxlAJx7qQKqCKyRIohFfKIqIy/gE+tSRPDNA28RfIdlveiHIvWDvOSJ7H91Bol+oNpGQG7fW5tg3BYI5zK1b7CHeIlmQblYO3iT7VQEGEicT8utp+1fx0BIqcvykIeduixruxNzVZvHqAlJumYxMCnqQ1fVSxItIQ4XHAz7ybLyoJboAnHDWj9KriKtkAN6VEZEna6ojbwIUFw/plFrv7kULveqd6rkZS8Azi1my3XYDta9qIimFMUYgPtYG2DcFghHmdoGBojL6fu6QbkO3bWDi6gIsJfoLJacocSMmCRyJK17neGnLufH3nbbo3wfRd+p2L081wk8K63JuStxItISUC5dyz1XAW70fOfSB7ppiaJymvkxC9QjtRHLQ0YFR1nac6QoYtdncdSDdh+uYhF4cwlar4SPfJ3N8LOtZKQxCDe0QcC4LRCOMjUF4u6nY6sblMtrBxdREWAv2im214+YwFOXd6p+RLQqnZjrcnZV7rH44Wl8Kq3OG7myoarHVERLaBov7zIPEMWiO+KA8xTrTtreExwA+wW3BMDKpovgmYNwpC50vHEqL9NA0Kb32yvgFY8tfifwLXrvis6JsHwbaoj8GLX9MQDXtCZg3BYIS6b2FkZBCHzkxdYJyuW1g7+lWGkwgXnBef2IrfT9Kbx+RNupy73AsqgTc9NkkbrTy2k8UCfPrk7yRg4W0N2Xbi38r0hDrPOPwTDJ0aYxABaISsFRp8WStqHjiUG5oqptCjIq0KhBIVc9yKrO1Kp8V7ZuTj9UBdI4qORqjzasSH42BuGGVgeM2wJhcJnaKQxwr2Peb52gnKbVqh28gnnSRZrbDgZ2qh9xCwvObeL1I6A4dXkYnqhsgu5OzLfZTkkMyt31MumHFZwryk6jz+/RBGTyXvNGnAI22M6zroX/KW1ZAK2ecnV6AE5hIDxNd8qyPOEchNWZWd58bCaaV14rs6r3vlfAqxf/Wyd5KQYd60oGe9nYCx6SVXl42gRhydRewB6OS3id36pBuaLawTcpLogzgU37lZgR60codbmDpy43fWDrAuYWw+vEXGQ5kGogO4Rdo4f0Tt4o42Hj79LnRloCuguxb+KKCOjWBIuiEBWxhgN6lfTfeBwCVvBsuah8kJcu6kKJF9qn6g/L8kBenftd1XPO+d/oAVexSEVEfntYmXG9vh9bA+sFxqcwCqENED6CAfoPsIf+KyxxoywoV3RcknjF2sE3sel00fLHMBBWYoZoj+MYCCt1uah+xDC90Zl0DEqkuE0zlUSRp1rFe53Ers0i5vndx1OZewW/elmexCGL6cQCi+gFx0CdgHwl20bVgJi0x6I0iiqY5Rl48rzVSLRI2VGkuW2LZ83530EAWNYmFTH2gnfQil7YCMIPsJoPVUE4394iBsI/xUDxKyxzTkG5fp55B5NZnUjbWsP54CIqY4vu+hH3MU/4EQbiZ/HU5cvUm/YOako2KevEXIUS6HW9qniv0xgtM4cljdxjMLlcURKHrKhtkYB1KnwUUFMxd3mJVUBFgBqTQCIVomXilD3XHMfjKnrGO9nyg1iUk2mb/aRkZdvJgbyoiloTG3vBu2TxAp+mGIR7yWTKbA7jhP8MA8WvsNrCX1EclCuKxB9Ln1g7uFe7oKV07EuYJ38pnUdMXb6PgXDdymJNTddIadcTdLc96jcYFYFqU+91CbvHYNTQw5rr51akllAwbo7uab8SPKKHLO81BvlEZxQBVD4oycuNigcBez5NFxWyRXfadK/C61VoiX7Wi/+tC5y5zK5oO4Pcz7EXvMvWwbzFH+Eg/D7bPeE6cqafAP8Ie/m/BP4N8DXVgnJ5G6NYO7jMFvFKbcsY9aHWR0pdbqt+RF3vVbWQZ/EBRdehiifbhnUwfvwodh2vM3jySE5LTGUfBczkBQs8OuH3WDsipkTruSu6JtEThu6edRoUdEwCYOimS6SK6MWnDuINtxGA67etIiqliY294BGyDvDfYaD3W+CPNLvwExgI/xU2Df8C+FvME67yAMY2Rnnt4DKbxzzeWD/iFgbO59PPRxg490qaaMq9yopAYwJve7SGDSg7UUgoN6V3z2K0yKCa6UhL5Jlw8UXeoht0tW6H7drgmNJcJtkSCIuKEC0xk5ZV8FH1h7XORPaRLK3MK23qDbcRgIsWKQj9LNpWmyA8BuBdtg42dW3ak20SoyP+CgOfL4D/FwvO9dteURujWDu4zA7gheNXMLC9hYOzKqxdpbuYzqAAW9V7VSfmCYyOaLsTcxWTWuI0Bj5NqJn8GsWkiSKwzTtfqK7DdPoZA2rQXZciAk28VhO4MiK28dE2H2PPTZ6YEmmLKO/qFQys6w3nAbim9EPcXq7aiNvNv2uy/aJtjEF4RKwfKJXZNBaY+0sMUL8C/gYD4X5W1MaoSF+bH6e8vJN4/YgbdNePeIpNw+9k61ehBAZ9CHeiE3MVUxbiIWxmcJXuwa3onvd7DmIKsqgFebKiJtbxIJy82CJPWHxv9IbBAV4p1HO4BE7qC1EeqpuRg2ueLScg61X/oqo33Cb/W7TNov23DcJjAB5hqwvGB7DaEX+BgeI3/P/tndtuY0d6hdempJbk6UPs7vHY4yBXweQRkjfIC+R5c5e7BMlNgCAXQTBjOIHtuO12T590YC6KC7X2z6ratXkQKWl9gCCJ3CdS4uLPVf8hifB/dewbxxj9hJzW1bIHzpBS0X6H9IJiE59TpMjvJXLp8g/YzWLGHFhKvO9JzC34gmbuMsvKe6Ly0v0URo5UOsU45UzLaoH0/E+JMPfTjmq8bSH70vag4HIM0+Vqvw/IfjRREV5inGvbEw3Xnodd+r+lY9bOva0IOwq+h/SK8Quk0uW/RRLG7wD8I4D/qByLPy+QCzTOkV5INSsiRqkUW80A+BbphffV6pj7Kl3uYUB6g2GEzx7Du/wH741inyAtWNKj/gHlRc+ea2NkeonsyTIHlwLH4gnNXmiJMDC2JYBxox2KtFa+3SCL86ncfl04JuQ6tNKv9T9Ri0Z37f/G47bsEAr9Jt61BfieMyXGrwD8NVJLy98jvcj/CcC/YzyIMcLewV8gvTjeIAkmrYiWPcAmPr9HekH8iHH/iC+RXhjfIwn0XbQojGw79mgTqwBYf64WSF7509X3PyO92c3ta0ExZaoYPVpmJmhfBqap6cJYS4QXcmw+RgqvWhSaasYFurPVfbEQhOINOY6+GbTsodrH9l36v3quUlRdug6L8CMn/hMC6UXzJVLJ8t8gieJrpDzhf0M7Nespsl95i3Lv4Na1lPpHXGNculzqH3FXtMYebSqwQD1KanGOZCGwCc5bpL/TnE8IWixBYaVP+xE5Er0J+2gTnZInPMh2ajtoH2Bup5G2DhMdkPOUY/N2IIuwTuvojYb1OvctwLzWJfqFueccigX4AcAXDZBehL9HEsO/QopCf0XKO/5X1Ffj2ezmd6iPMZq6ht8ipaM9Qe4f8Wl1+9era6yVLu8bvoB0EnPP2KPaC2HbF8gJ8lRm9l94i/Tpo/eFrBMzKKoUYrbOLD3PHPhJO4EizDd1bQRPgaS9cCvbAON8X42eF+H4vLYowgPGDeqnomEVwl35v61zqLBbhM0kA3Kq2NdIAvw10ovnP5Gi4VqWQ2/v4BYvkcT/Akng/oQk+q+Q3hhOkaLr77Db0uVaxFq6PVoSP2A9Kr+rf/4LJDuC+b63SCLcs2CoEyniKHj+znH28fEwu2GBnDEBjKvgKKLcVzulMQJX4VSvmffdyv30pKMIcz1BB5i2MiX0DQfYjf+rx68JMCr3AfNE2AL8SBiQMiNeIEW2QBLEf8Z6ehjp7R3c4gWSDfIZknj/ESka+xy5w9prpBziOcfdpVVwihQJ39Uk5hYnSBbQKZKQsOLsNdqfFDRLQUcMaT8G2lSxtwSQS57PkCvc+GlKF854PIoPz6EizGj3Vo59Lse4lWOpfaYizMfTioZ1X/7td9W3gcev2RBxG8AibDoZAPwD0kr89wD+BcmPLW3X2zu4hTbx0f4Rz5Ei5EuUS5d3teA1dTuPe9eTmFvXwgkXFJRLJFFr+cOaJqZ+KiNOposxW0Ir17g/G8SzvJl/Z41e1TLQCR7aL0K3hZz3JNzOY5VEmMfXcmb9G0bxBXZrQQDrIlzyl2siDPQJcUtoN1ncM/eIAcDfI/Wi+O/C/dGKaPUObvEMSWy1f8RPq9+/QRJnli6/7TjeJgtePbBN56ZZErvkFCkaPkGKyJlu9g5lf5i+KyNZlv+WegLHAaEUvCfITd0Z4WpFHS2BKIQn4XeKqZ5zQBZ43kd0G56T59Ax9xo5tzIV9hUFTwlw6dxzRbi2b2t/8wCoRZfRivgZKY2s52O6HpMlyq+QvOBvkSLqp6vbnyEJ/P+gnqN7F/+AZ8g9fu9yEnOJAel5u0AufHiGJGLRH+YiFidUMBLl4lfMhNDeEmykw1S2S+RolXaCLtKVoPURLYFoCzCrYomxjwyMBTSOY9KBnzFbg/sw+t1V5NhjQ8Tr0GvR+1vX4yjYjIipPmpFXCE37LlGWbhrYn6J5P2+RBIT9o+4QC5dfoe0MPd62wexBQP2P4l5Dqx4G5AHbuobolbAcSoGRY0N0msDMk+Rnv8B+e8ZRVKnQKs1EaFQMg1OrQuyxLiijsKumRYUORVhyDaMlGPUW/Jogd2KcC3NrWVF6LWUrqdXgEv7mgcOV7NfIn88Z2Q4VUpbuu8JUsT7W6QX3ndItsYTpCyNl0gv+rueulyiZxLzXcHijXPk1LJzJBuH/vASOZ1No1uWDEdBA/JiFntLMNVM/VdmUHDBjdF1KxrWzm3aCY2CchK24cKfZlTcYv2atdXlEmNbZK7w9dArwKhs13stjoLNJANSwx8uVHGMkdLzD8L+EV8hvXi+Q+4f8TWS6F0hWR2lMUt3SWkS86EsCSCJ1tPVz++QhPE58lgmCjMbtt9gXJARX9hM5WLaGVPSWNJMoWPPX81uUKGM0M5Qr7k0UYOZG7fIZc30qPlmEO0IijAtj5o/rWwaDffaEHF7nqtXhB0Fm1kMSFkDb7BZh7FTJNvhK6R/KA4XHTAuXT5U/wjl2CyJBZIInyGPoOc18rYlsojRRohNcrQsWacCU4xpD6inG4+h3dBKC4Oa3hb7Q+g2FGEKNYeDqk3BCJpfaltohV6LTYSYok9aUTC3b4mwXodei6NgsxE96WEl2D/im9UxvkcS4SWSAP9Obj9U6bJyl5OYe2DxxhJJhD8hidmXyA2VuAD3HvWm6Sq+QP7orznF6gFHEdaUtFK6mHZh+4TyJwj6zpBtmDmh/Y0pwhRE/qyLcFPFGHPFbI4NEfdBY9t4HY6CzdbMFeMFkmB8g9w/4k9ILzj2j2Bzn0OULkd2NYl5V2jxxkckIWaT/VdIz+Nr5MkVWgBB8eXvmmWg0aROwOCiGiNShYtwcQFNfVv6x8yAULTZPEueeX6WPNNuiJGsCl7LE47Xi4lt9NibCrDuU7sGbuMo2OyMXjEesN4/4o9IL1ItXT4WEdaxRxzj1JO/vE9YvHGLJLbs0fvF6js9e1oKpeiXESTFV1O+TpHedE6RI9SSCEOOu0S2HNS3Jbo4p/vSO9aubqy201aYy/BVsgp2FQ3PtSG4z1wRjjgKNjuhR4y1f8T/IY/wiaXL32K3/SM25RjGHiks3uDCF7MiGCUzhfA91ttSAuOsg9pH+c8wFvpoRyjaO5gLelrkobaB2kuaCqeLc9oYiHaHTgPhvtq/AugXSzS22SQK1v10n9b5SzgKNjul9c/2OZIIl/pHfIMkzruaurwL4tijH3HYCH1AEshnSBGjlg/fInvGXDylQCzDdhr9RpiXfIL0N3iPthjoFGZgvaiC/w/qHzMljd4xvWwVYLUzooBrxLqU772tLkv2yiYCrPvqfq3zD2EbR8Fmb5TEuNU/4i+RROQN0oJdaZrEXbNA+qivUy4O/eZwgfSmxdzed8g5wedIz/EN0ptcyXaYWlw8Qx7UeY1kwUwtkqrdwa/YmEdtCyDnFHPbm7AtMPamFT2XbtsbDXN7vb1kcfTQK8I92zoKNntB/7G0fwT7RLzGeunytzhsSphyTJYE07teIr2RMep9j+wDa/7wzxiLcM9HazbuYbczjqef2ldHHEXx1AY/2sxHc4pV6LV5D7De0F0XGIH+aJj76j7bRMG6v+5bo+Q3x+vS+43ZKQOy2H6Ocf+I3yAtzL1Y3X7o0mXlWCYxUyDPkd4YXqxu+xnpDYuR5AmSEHME1RvMi+oopvR7Wfgx9ZiZYkZRja0zNb93iVw5p1OZaV9oI3haHa1oWB/fnGiYv28qwLX9p7YD1v8mjoLNnTEA+DukCOtbJJ/1AlmcPyIVbBy6dJkcyyRm5t+yoc/l6vb3GEe8y9W2OoaqN7VORZgRLb/Hlpe1fVlwwYbw/BtGr1hFeInsC2skvZT9YrRcsiSA+bbEpjYEj9OTGVHaNkb2yjH835tHwIAkFG+QS5pZunwM/SMUWhKMPO/SkmB0y+Y8bFHJnNpPSJEwF9AochdIEfH16np7il+iCFMUYwHF1L5MPYsFIyruwLgBvC7Aqegy7Y3CHLMk+PPcaLgmoJtGwa3zDuF7y4o4lv9584jgi/MrpKq5GxxH6bKy7STmbeACFme/MSWMUeIS6VMFLQn1U+kPv0df/+eSCF8jN9wpTeKI+3KRjgtxmk0Sxy0NGBd2aLOfGNmXbImSLxzT42rXuihsO1cA54pwvL54H2ARNgdkQG4U9L9IvSWORYRbk5j3haZx8WO7VpN9RC56YDZEtB1OkGwUvnlMFZuURPgKeUEQqNsSKsIxR5iCG0cVqcCqBbEMv+vw0NgkPtoJSu3/h+Kv223yv9bjB5eyhMgSjoLNETIgffTv/Qh9F9A64STmn7C/sUd8YeusN+3TS1uAH98vkTugvcP6C/kJkqcNpOe05Q/XRHiJ8iQOhYtvsYpO+wRTNBnVaoGHiraKN1CPhmsirF52KQ1Mv/S8c9lWhCMWYXNUzPnnvQvuwpKgqOiiFYVNZ7Z9RBZhLtLdIEW6JbvgM/T5wy0RZvZDzZbQkmWK8K0cT6v14sf4U/ldc5u1dwSvDRhHw2orxEU6YP2jfxTOuM0cpkS4ZDXU/q8twOZoORYx3qcloREiI0P1VxntscUjRZjXxTl071GucOv1h1siDOQ3B2DdlogirIIbm/LwWLHAgwtsKsK8Lp5DB37yvlg9x59jNKweMrAunNt4wlMiHD3gUlaHMUfNocVYLYkldjOJmS9i7fNA64EFDiRGwfqi1jl0tQq3Hn94SoSBui2hHdR4vWon6Mgl9Xljm0qKb0xJ43OhZdJx4GdJhIHxcxVFs7RdD1OLcrUFt5IIW4DNveKQYrxLS6LUYEdTvFQcKEw6NVmJc+ji5BPdruUP94iw2hKMzIGcbqaRcGw1qY15uI+mrVGQ+YYTn1u1a4BxUUdJSNX6iGJby1DoFcSWCE9lPJT6Xhhz7ziEGO9iEnOMfAmjSH5050IWBa3V33eB9Tl0tTeHlj/cI8JA2ZbQCJ5Rahw/xOPzMQ0Yp92pCF+FfeM10rrQ/hRAWYR7mv3MjYZ3IcJxP2PuJXcpxgM2H3sUrQe9bn40jzPcYhcyzl4rEefQ1fzqlj/cK8I8H22JK4wnavC22oBRCvE1choe75vaHxhnVMRoOFoMkPummsDPEeKaHzwlwFG8jyUN05ituSsx3mQSc8l6IFH4dHaaigfLemsCscD6HLraddX84TkiPCAPFuV1MYpXEa1dq+YTMxomnD1XE2Fep2aMxL7JKna66NdqZDTHlrAIG1Nh32I8ZxJzzXrQ+9UX1WkSvI/Rnk49rlGaQ9d6HJ+vzkN/eK4I65gi9amn3jCAsRCzDFtzinXYZ21/FX21M6IHrZkSNWHXx4WJbbhdFOEeAY7nsBVhHiz7EuMeS6ImvvpCpchSKCg8FJN4e08z+dIcutaL/BIp44P+sHq7QHvGHB+jNuGhNcDodEpg9PGrH85IuiXC3F9zkHltJRHmcXY5CskibEwH+xDj1iTmlvWg6Ow3TcsC1oseeqJgonPo/oxp8X6GvND4BjnLAahnR+hj4+LaGcY2RI8IQ843IGdXMBOk53HrPmz4o9GvRsC94tcTDUcRjrRyhlvbGfNg2aUY6yRmWhLssaDRb+2FSKGg0GqBgoogRW1O/2It3qiVMisLpKj+CZI3/AF1EdbiCj4+RpyXq+9azdcrMBTxWJjC2XMtaGXwenk9QP5UQRGGXPumo5B4/9Q2vSJc29+YB8suxHiBtLD1OdKL+TVS1FlrJqOipZEkozR+jNdocIkswHN73DIavl5d15SI0x9eIFkrvHbtgjagLMDclily10hvTL2RMDAu09YMCR5nCqb3ceEtesP8WRfstomGowjH7aYEOFoXFmHzKNlWjJ8jWxJvkKrnSi9sjby4CKXtHnUMUOyUVirM6OEMKRoekKPhKS6R3liAXHWnGQ6l5ucaIZ8iCTHPWSsYKcE3H2ZJ0F74gGlfmOfX5kHcnp8uoqBua0u0IuFW6ptuYxE2ZsUmYrxAEq0vV985iflT2AYYCxYzCrS0l0UNFGAtye0RoBID+kqZI8+Rh5q+QdmTjQIMjMutOQX6XWHf1vXShtHijY9IQtzzHOhYJloh9IlVNDeJhhG2myPCtYjZImxMoEeMNevhFOkj/AuMJzFrxKh5qaXeChRgbdoDTBdm9KClzK3iDeUEOf3uLZIQxx6/JeHSPhD0Z9luc44lweeAlswn5DFJU2jBCzDO1ODzD7n+kmVRohQNqzUTLY/a/gjbWISNqVASY03J0syAp0hlzANSloRaEjpiPoosI12W3Gq1WU9hRg8LJBF+guniDX2czPwYkNLvGNHWBJjn0mY8tAV6U+u4j3aOO0OOhqemPfPvoznXWvQSizdKv7eOTVRAe0S4N2WtdJ8xjx7NZIjiyxfeOXKWBCcx8yM8hYtepRZkMAqOPRc2SUlrocUb75DErAXzfp+vvj6Ex9TaT62UJfIbztSA0HgM7sfn7Gp1Ha2xSiqop3KfijDPAWwfDfMNWfedEwWX7rcIG1NhQBJbYLzCDmRL4i+Qewy/xfhFH6cX04JgTusZxgI9J3qc4gQpsmUp81vUX+wUFo6t/83q5zeYHmwa32SukT3eqQGhRJ8rihptiVY0HEWYETGvpdZMftNoWM8J1EV4SoDjNhZhYyagbcCfGQk9RW4P+ROyYHH72OicIqw2xKaFGT0wXW2JJMIlgVerRYdxMsPiDdrz6UoizE8KseVlDWZIaNUckLu1MVMi7lMSRC1pViEG1iPYuYt0pUW52sw9hO1a21iEjelEI+NbJOF4hVzswB7D6nECWYD5sZqCt01hRg+Mak+xXrwxFL405xZIFXVAez5dSYTphU8NCCX6pgSMiysYHX8It0dBLGWhaCQ85Q33CPGuouC4nUXYmJlo9BjHHl2jngmhIrFtYUbvdTIa1jl0UXxJLJk+w/R8Oj5WLojpoiLfaHpsCX1OdDIHn2d2V1PxrAmivjHwea15wXOi4dgyc9MoOG5nETZmQwYkT5hjj35BWqQrZUKoQOyqMKOHM6RomHPomK5Wai6uviyv6Slyf4k4n06zEoB1EeYnhx5bQkVYqwh5rRRnreLTa49CpguepR4YQH3RroY2Bao1nVemxNVCbMyOGAD8Aenj/i/IXmQUYPU+d1GY0XttLN64wbiQIgoYr01FeEDuLxHn0+lHf6DcvKfXluCb0wnGDY0oevR64xtWrTMasz0GrOddRwHvWaTTSBioN61XLMLG3DED8sd3fumLWufIAbspzOjhHCmaXSCXFS/Dl75BqAgzUyH2Hwb6RBjosyWiCKt/zueQ59Jra0WvfDy0Mkj0knlbzZbQhTltvFSKrkmPqFqEjdkTfLGqAGt5r6akbVuY0XMtTFe7WJ3zV4x9V25XE2Fgvf+wZnnwYz8j2JKITdkSmrKnDe61J0SsyutpHq8WxxXGFkd8E6ot0kUPveQJW4SNOULiote+CjNa5+cbAufQMV0tNtmZEmFg3H/4l9VtUYRr3vaULaEivERehNO+y5DfdSBoi9IxS5kVQDkajulpy7DNEpsJsB57zj7GmA1gJKhltftISYvnVA9zgQ1ltAMAAA6YSURBVOQN6+SNOZEwj6H+8DusZ1S0rJWWLTHI/UCOdLUkWhu383mMEX1EveHYnjNGw9weWBdYFWFUttHbe7AIG3PHcJGs5BfvkloD9nPk4o04h65HhIGxP8xFyF4RbtkSmrpHwfyEdc9ZewZTFKdsCR6X3rAKrmY78Jj6vOn1oXJ7FOY5WIiNOQAxctrlcVs5tAvkOXSl4o0owrWUMvrDt8iN4HtEGGjbEoyENWrVFDi+MegUDsh9NRErecN6PcB6j2QSbQnepj6yRdiYe8ouxbglwCp0l0jR+A3Gc+jmiDCQ/OHnGC/0aWpZi5otcYp160AHgmqe8JxpyjGfWTNSaEugcltp8U3f1BBum4tF2JgjYFsx1gU4Uiso0Dl075HT1eaK8AKpZJuN7d+g32Kp2RJasHGLdcHVrAlO1FBB5HXXrlfzs0vz8/QNK95WenNrZVT0YhE25ojYRIzjAlzM/y1tX5pDFzuZTYkwkFLeXq32/QnzJmqUbAkuommaGm+neOpCnGZOMJ1NG/bEx81oOFon+gmi5A3rbUA5Bc8ibMwDokeMp/zf1gu6NIduExE+QbIldMLInFac0ZYYkEUYyJOb9XHGajq1KjQ/Owox99cxSOojl97Ian+HmgiX7pvCImzMEVMTgV7/t3VcljJfIUXDS8wXYWYuPEeKrH9FnjDSQ7QlbjAWYS3pVktCvV+1JZjCVhPihWzP48doWCNrvR3hccWfa1FyDxZiY46cIfzc6/+2iHPomA7WK8KMQvn1fHVNU/2HI2pLMC+Y10C/mEUbKraxHFwFWvOx48KaTkpZYizWJ7KtesHcvvYcx6jZ0bAxDxT9+A302w8l4hy698iWxBwRZtS6QF//4RJapMFjYXUNnKpBEQbWszBoM3AfRvUDxpaDfnpQIeY2NW+dwl16rku5xBZhYx44FMBNBZjoHDo2TdcotFXRR+FTYezpP1w71sVqf31MWtpNG6FkSQB5kY776RtWyfuNqWmxrWUpggbWLZ+ego4pLMLG3FO2TW3TOXTXSEKsPXh7RZgWwQ3a/YenjnWJcT/hOBIqCm0UwCjSPK7mEKugajQcZ9HF1DT1i7UVaOmx1O5rPX5iETbmHrKNGDNdjZkSjEI3EWGmutX6D7eOxUGj56vjMTNCF89avjCwvkgX84m1PeYgPzNbQhfpgLEdwWtU/70mmHOF2CJszANhEzHmHLonyP0atM1mDS1+iHm3tf7DtWvm1wmSLcHm7R8xbo+plkStOk9zh3XAp+YQazSs1k70j4FxdKy+8FSPDGIhNuYRMkeMWbzxGySReY+clbCpCAPl/sOlc2sKGKPrcyRh/IAcES/l/povzGOoUJcKO2ITIN6v06Jjb4pY0DGVjeJo2BjTLcZnSJkN58h5w9uKMLDefziKi9oCer20JehTazn0lCXBbRYY2xJ6u05m1n2AHGGr6JYKN6ZysueKqkXYmAfMlBgPyAtqSyQfl+JXI/ZiKNkDLX+4VGyiH/u5SPdxdS1RhFE5J48dF+mIRtI8t5ZGl1LWKMRRHKcyU+ZEwxZhYx4BLTG+QJoczcY+bMhTQ8fK82N8KTIs+cMlAdZodVjt92R1+3tkX3kqVQ1huxgNA3lBkeLMqFaLPNQ71uiZgq3CPLVAh8Y2m2xrjLnnlMT4FEmEWco8taDWK8LAuj9cqjBjZEqBHZBLmK+QhFi3qaWqxWsslTBrZgctDc1F1uPyMS5lO2C6ik7PpY9z2+2MMQ8IfeGz4fszJBGYKj+eI8JA9oc/rI5NNJqMIsyuakBepOO5p3xhPr7SIh2Prw3kKdIxGqaQA+uCX2oIX7sOTGyj2/Vsa4x5QFDwLpDE8hSpnwTHF5VQEa6NulcWAL5AWnB7u/qKH+dVNPV3FpMwZa0nVU3PG20JPT4tj1iZB7m2UmUd948N4Us4GjbGdDEAeImcJfELypYExVGFcEqEsTruF8j+cBxvVBJhIC8AXsn1TKWqKbptfFPRHsOc8hEfGynlB8cijho90bBF2BgDIIvWLxjPoSMUSzbN6RFhWgCfIfcf/gnjxT8V4WXYj0L5EeOxR/RvpyYua0ZFvE71h6+QI2T6yexFodVy8XHp/bXHT3axkGeMeQQwyovCogtbwLQIx2yIp0jFIbQ8VHA1VQwYF03wfIxY9U2gZ8BoLF/Wc2jXNTYy0pl0+thKz0cp0yMyFQ1bhI0xRWI2RRRhCldNOEpFGS+wnj9cEmGtUqNYap+KXkuC11zykXneGC3rhGZGw0BZaHvS1qZE1iJsjGmiXm2peU9tn1KkeIqcP/wzks0QRVgLJujn0iagBdGTqsbrKKWg6X3AWIgHjN9oYoFH7XG2siUsxMaYrVHPtFayzO1KAkxxifnDsXKNmQxagsxzQ87Zk6pGapV0pT7Dej18o5mKhtG4P16PRdgYsxUUxJInGwUYKEeI2l/iDdbTvhiNqtByEodmK7R84WiFUHBj7rBaCpoDHKPnqWgY8jjnCq1F2Bgzm+gZ87ZWFEy0v8Rb5MnPwLoloOXE7LTGiLbVVU2hwMYGP1GEgZyRweNopoQ+ptLj1ttbQmwRNsbsDPWMewSYsL8EB4Vyth0j51KvCA4IZWoZLZFSdKrEyrw46FMX12LhBuQcc6Lh+HO8rpjyVtvHGGO60Oh1SoAJ/eElUtoaxa4mwkAS7/PVfZ+w7k2XBJjESjpur7PkKMSLsH8s4GhFw2pf1ITYImyM2Qu1qLDGMyQh/oixEGsTnZjVoL2HWdas9yvxGmKjd2B9cY23qVURK+9KC4JRzC3ExpiDUfKMSywAvELqYfErkjXBhTH1cFX0dEDox9WXih6p+bI8No+rEzc0imeOMrCeWdGKhrn9HPvBImyM2Qs9YnyB1L9iQCprfofpRu4Xq68bpCwLXTwD2kJGcdVFOi0u0aGeZ7JtLJUuRcM1WyJeU4yGLcLGmL3SEmO21HyB5PP+uLq9JcInSNHwKVLLy4/h/ikRVs+ZlXiaK6wieorc1U2tj6louGVLRNG1CBtj7oSSGFMUnyE1+/kzki3RKlFmvvLF6nZGw8C0iJUq6XRhMQ715LlOkMuZIduWjq/RMG+L16a3WYSNMXeKig4FcYEUDZ8i5Q+/R12EsdrnAilK5SSOqayMUiUdF950IS6eb4FxVsYyfEXiIp2eu7aIiHC/McbsHY1Ksfr+YnX7r8jdzEr5wAvklDVgPImjdb54bgr9ID+XKv1OkRvCf5L7W9FwvN9CbIw5SgYkQb1FElXNH24VZXDhjJ3WPqCvlBkoF2fUImE9H/1hps7NiYb1OlpCbBE2xhwEChLzhz9hLMSK2hjaZ5gpa7VjEy1V1kU5fq/lAmtXt+uwXzxfq8qO16BVh7roZ4wxB2MA8CXG+cOlhkE6lkiHc0ZbopVDzAwIHVmk3+NxKMQDkl3CqLkm/HGRLl7TMmwXr88YYw4G08N+RF54A7KAqZ3A2+nZ9pYz8zyl7IhahMvr4rlqkXMpZa12TTX7whhjDk6MFPUjvOb80pq4RX8lnS4ORk+41q+Y29MGoRBvGg3rzxZhY8zRopEl0Zxf9p1gTu+nwva1AovSuKOWsNIKoY1Ba6JEK8q1EBtj7h0aXWoUSxHkJI4ojK1IFRhXzvVGwxRkttecu0gHjCN7NLYzxpijguLGrmss7FDPVrMlpkQYyOKqzeNr52YkrDnGtVzlli1Rug6LsDHm3qCiywbxnMRBW6L28T4unqmos29Fbd+4MAislzbXzlPLLVahtiVhjLlX0NulN0xbgg3ga/vEAgpNWatZDERtCR5nahDqVDTMqNoibIy5l1DIWOE2VcQRI1SWRDMXeGqkPW0JpTaItGeRTqdPW4iNMfeWAdmWuEK2KvT+2MFMo2Gmu12hLYaxPWatIX08Z2uRTotHjDHmXkOPl+OQSEuEmXMcS5RLxGj4BmM7Iwp4TzSs0bmF2BjzIIg5wy0RBnI0zAW/Xm+Y9gWPH4W4p6+E/mxbwhjzoNBosyV0A3KfiBus2xlxW12gY1aFTnguCXGrnJn+NOBo2BjzANHGP7Vo8wTj9LeWGKotoRV3OsVDty29AUQRnvKQjTHm3hN7UyjqDbMqrmeRjtvfIItznNpcioajCNe2M8aYB0f0jHmbTn+u5QCXtqcNwYW6khC3RiHxdrVPLMTGmAdPrUkQC0E2iYaXGB+DQlyyG2rRMAq3G2PMg0Uj0NhlbZNoGBiXRKvoapRbEmHAQmyMeaRQhPlVK8RQuO2JbMvtKcSMqEul0yj8XrJLLMTGmEcDexVrx7ZWOXOMnq/lPh4nCnFLhLlvxEJsjHlU6GDRObaENgNitzatqov9JwCLsDHGVCkJYoQpbvSBY66wCnHNlqgJ8RJ1G8MYYx4NLTFmNMxmQLE1po5nusY4Gq41o6+lsFmIjTGPmpoYt6Jh3s8c4luMewoD9RackPstxMYYs6LUKIhCHFPWiOYQazvMVnFGFF4LsTHGCCrGPQUfej9ptbJsFXVYiI0xZgWtCEbDQL38mduqiE5lYCBsbyE2xpgC7E9M/7c0sUNziNWOmBMN6+0WYmOMCTDavUJ9IKhaE8vKdro90O5LbIwxJtBqoclBpUBfdR5xNGyMMTOppbYxvxjI1oWF2Bhj9kQrta2nhWZNcC3Exhgzgzhxmf0npoS45QNbiI0xZibaSyKOWGrtA7Sr7CzExhgzA4onJz+3RixNZUVYiI0xZgueADjHdNOgbe43xhgzwRk2F9ph4n5jjDEdTIkw6enCZowxZsfYljDGmDuklGdMetthGmOM2SE90a4jYmOM2QNRXDeptjPGGLMDeiJdR8TGGHNgLMTGGHNgLMTGGHMHtIo5iD1iY4zZMyUxthAbY8yBsS1hjDEHxkJsjDEHxkJsjDEHxkJsjDFHgIXYGGOMMcYYY4wxxhhjjDHGGGOMMcYYY4wxxhhjjDHGGGOMMcYYY4wxxhhjjDHGGGOMMcYYY4wxxhhjjDHGmCn+H0jKOy407M5IAAAAAElFTkSuQmCC\",\n      \"image/svg+xml\": [\n       \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\\n\",\n       \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\" width=\\\"355.49176pt\\\" height=\\\"351.604335pt\\\" viewBox=\\\"0 0 355.49176 351.604335\\\" version=\\\"1.1\\\">\\n\",\n       \"<g id=\\\"surface14\\\">\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.465783;stroke-miterlimit:10;\\\" d=\\\"M 0 121.574219 L 355.492188 47.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.523569;stroke-miterlimit:10;\\\" d=\\\"M 0 122.65625 L 355.492188 37.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0071101;stroke-miterlimit:10;\\\" d=\\\"M 0 287.261719 L 355.492188 147.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0127178;stroke-miterlimit:10;\\\" d=\\\"M 0 273.996094 L 355.492188 141.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0189223;stroke-miterlimit:10;\\\" d=\\\"M 0 253.199219 L 355.492188 143.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.00585087;stroke-miterlimit:10;\\\" d=\\\"M 0 291.953125 L 355.492188 149.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0768927;stroke-miterlimit:10;\\\" d=\\\"M 0 265.707031 L 355.492188 36.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.00844535;stroke-miterlimit:10;\\\" d=\\\"M 0 296.96875 L 355.492188 130.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.160557;stroke-miterlimit:10;\\\" d=\\\"M 0 142.546875 L 355.492188 114.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 72.230469 L 355.492188 12.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.35457;stroke-miterlimit:10;\\\" d=\\\"M 0 151.15625 L 355.492188 47.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0233236;stroke-miterlimit:10;\\\" d=\\\"M 0 281.589844 L 355.492188 100.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0422731;stroke-miterlimit:10;\\\" d=\\\"M 0 264.824219 L 355.492188 87.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.329503;stroke-miterlimit:10;\\\" d=\\\"M 0 46.191406 L 355.492188 115.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.481534;stroke-miterlimit:10;\\\" d=\\\"M 0 120.585938 L 355.492188 45.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.013264;stroke-miterlimit:10;\\\" d=\\\"M 0 311.960938 L 355.492188 59.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.00826881;stroke-miterlimit:10;\\\" d=\\\"M 0 319.128906 L 355.492188 68.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 20.71875 L 355.492188 12.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0189931;stroke-miterlimit:10;\\\" d=\\\"M 0 194.144531 L 355.492188 163.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.817623;stroke-miterlimit:10;\\\" d=\\\"M 0 104.953125 L 355.492188 15.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0215017;stroke-miterlimit:10;\\\" d=\\\"M 0 319.492188 L 355.492188 2.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.143015;stroke-miterlimit:10;\\\" d=\\\"M 0 239.671875 L 355.492188 28.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.485694;stroke-miterlimit:10;\\\" d=\\\"M 0 2.273438 L 355.492188 108.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0219371;stroke-miterlimit:10;\\\" d=\\\"M 0 303.730469 L 355.492188 47.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.402306;stroke-miterlimit:10;\\\" d=\\\"M 0 187.8125 L 355.492188 10.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0135901;stroke-miterlimit:10;\\\" d=\\\"M 0 311.058594 L 355.492188 61.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 10.066406 L 355.492188 17.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0106457;stroke-miterlimit:10;\\\" d=\\\"M 0 202.363281 L 355.492188 168.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.299808;stroke-miterlimit:10;\\\" d=\\\"M 0 37.917969 L 355.492188 123.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.585536;stroke-miterlimit:10;\\\" d=\\\"M 0 92.25 L 355.492188 48.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.00499645;stroke-miterlimit:10;\\\" d=\\\"M 0 325.625 L 355.492188 75.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0147891;stroke-miterlimit:10;\\\" d=\\\"M 0 302.285156 L 355.492188 84.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.203471;stroke-miterlimit:10;\\\" d=\\\"M 0 215.988281 L 355.492188 30.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0235101;stroke-miterlimit:10;\\\" d=\\\"M 0 289.878906 L 355.492188 82.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.246883;stroke-miterlimit:10;\\\" d=\\\"M 0 196.84375 L 355.492188 35.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0112746;stroke-miterlimit:10;\\\" d=\\\"M 0 311.582031 L 355.492188 74.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.220015;stroke-miterlimit:10;\\\" d=\\\"M 0 212.851562 L 355.492188 27.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.02504;stroke-miterlimit:10;\\\" d=\\\"M 0 284.660156 L 355.492188 89.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0453248;stroke-miterlimit:10;\\\" d=\\\"M 0 240.671875 L 355.492188 115.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.00416303;stroke-miterlimit:10;\\\" d=\\\"M 0 317.074219 L 355.492188 123.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.00515767;stroke-miterlimit:10;\\\" d=\\\"M 0 334.34375 L 355.492188 15.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0302088;stroke-miterlimit:10;\\\" d=\\\"M 0 234.847656 L 355.492188 138.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0498987;stroke-miterlimit:10;\\\" d=\\\"M 0 244.359375 L 355.492188 105.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0318901;stroke-miterlimit:10;\\\" d=\\\"M 0 270.324219 L 355.492188 99.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 55.019531 L 355.492188 20.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0153189;stroke-miterlimit:10;\\\" d=\\\"M 0 186.640625 L 355.492188 166.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0409921;stroke-miterlimit:10;\\\" d=\\\"M 0 293.511719 L 355.492188 26.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.121635;stroke-miterlimit:10;\\\" d=\\\"M 0 62.671875 L 355.492188 150.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.380278;stroke-miterlimit:10;\\\" d=\\\"M 0 198.335938 L 355.492188 6.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.0303674;stroke-miterlimit:10;\\\" d=\\\"M 0 236.683594 L 355.492188 137.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.193025;stroke-miterlimit:10;\\\" d=\\\"M 0 202.925781 L 355.492188 49.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.414171;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.101196;stroke-miterlimit:10;\\\" d=\\\"M 0 284.535156 L 355.492188 0 \\\"/>\\n\",\n       \"</g>\\n\",\n       \"</svg>\\n\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"program :: Measure Double\\n\",\n    \"program = do\\n\",\n    \"    x <- random\\n\",\n    \"    y <- normal 0 (x**2)\\n\",\n    \"    factor (Exp $ log y)\\n\",\n    \"    return y\\n\",\n    \"\\n\",\n    \"sampleIOfixed $ fmap (diagram . mconcat . fmap traceDiagram) $ replicateM 100 $ getTrace program\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"id\": \"6dad6b23-bf92-4a8b-8fd4-74e91aac1959\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"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\",\n      \"image/svg+xml\": [\n       \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\\n\",\n       \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\" width=\\\"447.240582pt\\\" height=\\\"223.552817pt\\\" viewBox=\\\"0 0 447.240582 223.552817\\\" version=\\\"1.1\\\">\\n\",\n       \"<g id=\\\"surface20\\\">\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 90.785156 L 223.621094 160.648438 L 447.242188 155.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 125.796875 L 223.621094 184.527344 L 447.242188 117.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 46.476562 L 223.621094 127.179688 L 447.242188 14.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 140.425781 L 223.621094 121.972656 L 447.242188 78 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 218.609375 L 223.621094 160.296875 L 447.242188 81.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 197.4375 L 223.621094 210.164062 L 447.242188 219.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 113.929688 L 223.621094 204.953125 L 447.242188 131.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 67.558594 L 223.621094 3.058594 L 447.242188 212.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 30.65625 L 223.621094 152.664062 L 447.242188 173.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 164.25 L 223.621094 51.738281 L 447.242188 190.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 26.550781 L 223.621094 216.304688 L 447.242188 39.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 101.492188 L 223.621094 51.664062 L 447.242188 36.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 131.550781 L 223.621094 17.078125 L 447.242188 78.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 205.347656 L 223.621094 124.265625 L 447.242188 46.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 20.21875 L 223.621094 163.925781 L 447.242188 220.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 101.65625 L 223.621094 44.222656 L 447.242188 155.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 212.058594 L 223.621094 34.152344 L 447.242188 157.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 171.84375 L 223.621094 52.597656 L 447.242188 131.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 133.296875 L 223.621094 179.515625 L 447.242188 161.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 185.585938 L 223.621094 16.457031 L 447.242188 176.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 63.691406 L 223.621094 37.558594 L 447.242188 57.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 177.816406 L 223.621094 48.222656 L 447.242188 83.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 60.207031 L 223.621094 61.804688 L 447.242188 102.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 96.136719 L 223.621094 127.648438 L 447.242188 156.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 155.261719 L 223.621094 75.628906 L 447.242188 93.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 103.953125 L 223.621094 71.984375 L 447.242188 43.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 145.925781 L 223.621094 209.027344 L 447.242188 142.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 213.980469 L 223.621094 130.363281 L 447.242188 119.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 138.449219 L 223.621094 96.941406 L 447.242188 176.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 165.339844 L 223.621094 95.660156 L 447.242188 216.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 70.097656 L 223.621094 90.511719 L 447.242188 138.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 216.910156 L 223.621094 50.585938 L 447.242188 139.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 27.148438 L 223.621094 167.246094 L 447.242188 46.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 112.117188 L 223.621094 35.460938 L 447.242188 21.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 181.382812 L 223.621094 154.488281 L 447.242188 114.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 99.585938 L 223.621094 33.503906 L 447.242188 30.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 32.144531 L 223.621094 41.988281 L 447.242188 47.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 0.3125 L 223.621094 156.496094 L 447.242188 3.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 43.894531 L 223.621094 50.382812 L 447.242188 11.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 98.457031 L 223.621094 193.375 L 447.242188 22.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 189.335938 L 223.621094 1.378906 L 447.242188 83.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 38.445312 L 223.621094 119.132812 L 447.242188 156.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 94.628906 L 223.621094 147.148438 L 447.242188 205.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 130.542969 L 223.621094 173.308594 L 447.242188 186.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 1.714844 L 223.621094 126.976562 L 447.242188 86.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 117.6875 L 223.621094 22.167969 L 447.242188 87.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 215.816406 L 223.621094 111.066406 L 447.242188 210.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 32.574219 L 223.621094 77.699219 L 447.242188 177.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 175.585938 L 223.621094 203.097656 L 447.242188 113.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 158.578125 L 223.621094 190.917969 L 447.242188 213.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 95.144531 L 223.621094 22.046875 L 447.242188 103.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 125.617188 L 223.621094 109.496094 L 447.242188 91.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 133.304688 L 223.621094 174 L 447.242188 101.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 7.640625 L 223.621094 113.515625 L 447.242188 63.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 77.296875 L 223.621094 10.054688 L 447.242188 115.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 42.636719 L 223.621094 93.207031 L 447.242188 222.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 143.472656 L 223.621094 1.980469 L 447.242188 172.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 199.269531 L 223.621094 165.117188 L 447.242188 153.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 197.722656 L 223.621094 163.359375 L 447.242188 54.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 73.101562 L 223.621094 159.003906 L 447.242188 156.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 166.289062 L 223.621094 176.589844 L 447.242188 102.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 215.527344 L 223.621094 209.359375 L 447.242188 33.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 28.054688 L 223.621094 209.328125 L 447.242188 48.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 44.898438 L 223.621094 119.949219 L 447.242188 162.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 90.929688 L 223.621094 219.476562 L 447.242188 101.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 166.757812 L 223.621094 210.535156 L 447.242188 61.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 136.570312 L 223.621094 167.300781 L 447.242188 111.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 29.316406 L 223.621094 146.445312 L 447.242188 44.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 96.929688 L 223.621094 80.3125 L 447.242188 32.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 221.191406 L 223.621094 5.011719 L 447.242188 102.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 114.582031 L 223.621094 175.097656 L 447.242188 33.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 88.480469 L 223.621094 83.578125 L 447.242188 62.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 111.28125 L 223.621094 98.25 L 447.242188 204.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 100.734375 L 223.621094 191.402344 L 447.242188 45.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 154.636719 L 223.621094 32.410156 L 447.242188 20.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 101.433594 L 223.621094 208.273438 L 447.242188 185.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 129.734375 L 223.621094 2.9375 L 447.242188 35.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 12.183594 L 223.621094 132.914062 L 447.242188 137.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 153.753906 L 223.621094 36.25 L 447.242188 108.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 139.46875 L 223.621094 88.957031 L 447.242188 212.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 103.007812 L 223.621094 47.609375 L 447.242188 130.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 51.246094 L 223.621094 186.671875 L 447.242188 222.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 218.636719 L 223.621094 221.164062 L 447.242188 133.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 144.84375 L 223.621094 11.175781 L 447.242188 34 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 167.96875 L 223.621094 86.828125 L 447.242188 100.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 38.933594 L 223.621094 126.625 L 447.242188 90.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 30.195312 L 223.621094 57.988281 L 447.242188 62.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 95.625 L 223.621094 87.183594 L 447.242188 158.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 167.066406 L 223.621094 127.496094 L 447.242188 90.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 6.84375 L 223.621094 63.539062 L 447.242188 69.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 116.792969 L 223.621094 184.882812 L 447.242188 121.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 170.417969 L 223.621094 180.675781 L 447.242188 40.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 196.78125 L 223.621094 152.246094 L 447.242188 63.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 201.128906 L 223.621094 15.054688 L 447.242188 170.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 171.144531 L 223.621094 97.195312 L 447.242188 160.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 181.683594 L 223.621094 188.410156 L 447.242188 182.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 14.347656 L 223.621094 181.761719 L 447.242188 204.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 54.941406 L 223.621094 23.347656 L 447.242188 178.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 132.894531 L 223.621094 125.84375 L 447.242188 72.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 29.492188 L 223.621094 73.988281 L 447.242188 68.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 7.398438 L 223.621094 105.453125 L 447.242188 169.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 46.015625 L 223.621094 58.765625 L 447.242188 65.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 174.144531 L 223.621094 63.058594 L 447.242188 161.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 150.835938 L 223.621094 194.128906 L 447.242188 74.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 33.074219 L 223.621094 207.5625 L 447.242188 52.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 17.515625 L 223.621094 82.851562 L 447.242188 173.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 78.875 L 223.621094 100.699219 L 447.242188 125.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 121.082031 L 223.621094 117.855469 L 447.242188 42.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 177.503906 L 223.621094 71.726562 L 447.242188 71.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 15.433594 L 223.621094 60.023438 L 447.242188 24.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 99.738281 L 223.621094 176.3125 L 447.242188 148.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 191.140625 L 223.621094 78.414062 L 447.242188 83.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 137.953125 L 223.621094 62.8125 L 447.242188 181.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 130.824219 L 223.621094 200.304688 L 447.242188 18.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 206.082031 L 223.621094 173.074219 L 447.242188 77.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 8.632812 L 223.621094 191.285156 L 447.242188 216.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 187.019531 L 223.621094 78.769531 L 447.242188 89.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 165.1875 L 223.621094 183.378906 L 447.242188 82.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 3.378906 L 223.621094 97.085938 L 447.242188 162.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 190.898438 L 223.621094 93.347656 L 447.242188 67.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 83.886719 L 223.621094 39.789062 L 447.242188 100.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 177.5625 L 223.621094 30.472656 L 447.242188 67.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 117.757812 L 223.621094 20.730469 L 447.242188 180.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 29.554688 L 223.621094 106.140625 L 447.242188 175.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 71.800781 L 223.621094 182.863281 L 447.242188 83.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 221.550781 L 223.621094 52.039062 L 447.242188 181.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 103.308594 L 223.621094 223.550781 L 447.242188 123.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 81.0625 L 223.621094 71.027344 L 447.242188 80.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 54.359375 L 223.621094 98.105469 L 447.242188 19.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 138.351562 L 223.621094 20.394531 L 447.242188 66.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 60.875 L 223.621094 59.871094 L 447.242188 72.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 29.203125 L 223.621094 103 L 447.242188 190.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 37.261719 L 223.621094 145.480469 L 447.242188 215.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 95.351562 L 223.621094 153.363281 L 447.242188 32.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 53.378906 L 223.621094 198.554688 L 447.242188 14.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 94.273438 L 223.621094 160.496094 L 447.242188 47.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 66.925781 L 223.621094 203.886719 L 447.242188 142.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 153.917969 L 223.621094 43.917969 L 447.242188 92.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 153.226562 L 223.621094 128.390625 L 447.242188 143.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 39.738281 L 223.621094 173.683594 L 447.242188 103.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 34.714844 L 223.621094 15.800781 L 447.242188 206.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 70.226562 L 223.621094 201.707031 L 447.242188 15.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 88.949219 L 223.621094 178.429688 L 447.242188 45.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 43.191406 L 223.621094 147.082031 L 447.242188 78.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 96.886719 L 223.621094 41.511719 L 447.242188 138.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 96.941406 L 223.621094 92.402344 L 447.242188 204.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 172.402344 L 223.621094 121.3125 L 447.242188 188.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 212.351562 L 223.621094 102.007812 L 447.242188 53.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 208.179688 L 223.621094 118.996094 L 447.242188 151.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 146.371094 L 223.621094 33.089844 L 447.242188 171.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 135.402344 L 223.621094 186.820312 L 447.242188 109.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 216.320312 L 223.621094 61.234375 L 447.242188 50.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 14.507812 L 223.621094 128.800781 L 447.242188 72.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 216.976562 L 223.621094 97.136719 L 447.242188 48.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 68.871094 L 223.621094 123.757812 L 447.242188 157.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 24.4375 L 223.621094 209.296875 L 447.242188 149.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 23.320312 L 223.621094 62.390625 L 447.242188 135.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 176.5 L 223.621094 17.242188 L 447.242188 28.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 37.449219 L 223.621094 132.261719 L 447.242188 29.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 4.914062 L 223.621094 105.636719 L 447.242188 103.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 165.199219 L 223.621094 164.722656 L 447.242188 204.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 51.304688 L 223.621094 34.773438 L 447.242188 93.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 138.523438 L 223.621094 214.585938 L 447.242188 27.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 190.96875 L 223.621094 28.128906 L 447.242188 36.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 47.605469 L 223.621094 61.105469 L 447.242188 49.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 203.304688 L 223.621094 84.953125 L 447.242188 167.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 206.964844 L 223.621094 61.121094 L 447.242188 12.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 125.636719 L 223.621094 160.972656 L 447.242188 13.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 112.933594 L 223.621094 114.746094 L 447.242188 130.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 165.875 L 223.621094 128.191406 L 447.242188 146.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 17.984375 L 223.621094 76.347656 L 447.242188 183.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 104.597656 L 223.621094 67.699219 L 447.242188 51.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 146.214844 L 223.621094 130.066406 L 447.242188 179.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 159.015625 L 223.621094 221.945312 L 447.242188 18.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 117.332031 L 223.621094 47.261719 L 447.242188 123.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 209.9375 L 223.621094 59.464844 L 447.242188 84.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 122.371094 L 223.621094 121.105469 L 447.242188 149.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 167.464844 L 223.621094 161.703125 L 447.242188 13.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 32.332031 L 223.621094 130.910156 L 447.242188 86.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 33.113281 L 223.621094 59.414062 L 447.242188 182.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 5.375 L 223.621094 134.25 L 447.242188 158.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 57.507812 L 223.621094 176.015625 L 447.242188 5.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 168.023438 L 223.621094 40.703125 L 447.242188 109.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 7.0625 L 223.621094 10.625 L 447.242188 143.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 98.558594 L 223.621094 30.847656 L 447.242188 188.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 177.761719 L 223.621094 8.226562 L 447.242188 98.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 215.75 L 223.621094 69.539062 L 447.242188 175.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 207.132812 L 223.621094 47.253906 L 447.242188 195.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 97.488281 L 223.621094 106.015625 L 447.242188 117.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 35.214844 L 223.621094 87.175781 L 447.242188 151.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 74.285156 L 223.621094 50.046875 L 447.242188 91.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 205.933594 L 223.621094 220.257812 L 447.242188 135.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 0.859375 L 223.621094 158.109375 L 447.242188 72.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 46.109375 L 223.621094 6.65625 L 447.242188 183.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 149.453125 L 223.621094 121.4375 L 447.242188 24.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 128.566406 L 223.621094 70.28125 L 447.242188 87.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 116.851562 L 223.621094 98.53125 L 447.242188 32.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 50.652344 L 223.621094 197.691406 L 447.242188 13.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 26.640625 L 223.621094 26.136719 L 447.242188 2.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 61.371094 L 223.621094 177.988281 L 447.242188 4.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 129.046875 L 223.621094 10.253906 L 447.242188 95.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 15.558594 L 223.621094 135.234375 L 447.242188 31.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 200.535156 L 223.621094 122.925781 L 447.242188 112.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 108.789062 L 223.621094 89.480469 L 447.242188 45.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 188.363281 L 223.621094 99.441406 L 447.242188 114.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 221.226562 L 223.621094 170.679688 L 447.242188 35.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 34.398438 L 223.621094 121.214844 L 447.242188 59.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 166.640625 L 223.621094 147.019531 L 447.242188 167.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 52.011719 L 223.621094 176.34375 L 447.242188 69.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 30.703125 L 223.621094 179.695312 L 447.242188 30.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 82.097656 L 223.621094 171.882812 L 447.242188 200.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 97.113281 L 223.621094 133.359375 L 447.242188 209.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 151.8125 L 223.621094 75.710938 L 447.242188 202.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 194.882812 L 223.621094 99.425781 L 447.242188 193.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 164.285156 L 223.621094 200.625 L 447.242188 39.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 153.140625 L 223.621094 47.011719 L 447.242188 15.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 158.574219 L 223.621094 152.417969 L 447.242188 4.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 152.71875 L 223.621094 77.445312 L 447.242188 179.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 179.679688 L 223.621094 221.132812 L 447.242188 102.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 153.789062 L 223.621094 141.59375 L 447.242188 113.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 190.894531 L 223.621094 109.980469 L 447.242188 170.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 37.992188 L 223.621094 165.351562 L 447.242188 115.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 8.945312 L 223.621094 104.4375 L 447.242188 105.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 92.191406 L 223.621094 137.019531 L 447.242188 195.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 136.964844 L 223.621094 16.554688 L 447.242188 76.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 138.8125 L 223.621094 131.785156 L 447.242188 113.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 97.359375 L 223.621094 213.984375 L 447.242188 75.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 154.667969 L 223.621094 82.9375 L 447.242188 213.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 182.90625 L 223.621094 86.882812 L 447.242188 22.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 199.425781 L 223.621094 125.394531 L 447.242188 83.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 148.949219 L 223.621094 216.464844 L 447.242188 20.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 3.375 L 223.621094 155.78125 L 447.242188 182.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 76.058594 L 223.621094 55.707031 L 447.242188 88.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 67.507812 L 223.621094 93.949219 L 447.242188 200.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 219.398438 L 223.621094 59.242188 L 447.242188 154.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 125.496094 L 223.621094 27.558594 L 447.242188 186.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 168.761719 L 223.621094 59.777344 L 447.242188 27.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 12.628906 L 223.621094 135.257812 L 447.242188 69.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 30.0625 L 223.621094 208.164062 L 447.242188 98.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 27.207031 L 223.621094 198.792969 L 447.242188 180.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 69.921875 L 223.621094 17.1875 L 447.242188 60.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 144.648438 L 223.621094 142.683594 L 447.242188 161.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 66.851562 L 223.621094 49.054688 L 447.242188 130.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 149.242188 L 223.621094 170.320312 L 447.242188 221.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 169.832031 L 223.621094 123.945312 L 447.242188 127.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 219.445312 L 223.621094 172.609375 L 447.242188 157.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 200.277344 L 223.621094 101.679688 L 447.242188 13.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 145.835938 L 223.621094 122.183594 L 447.242188 5.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 109.523438 L 223.621094 120.335938 L 447.242188 82.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 152.222656 L 223.621094 183.394531 L 447.242188 163.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 94.105469 L 223.621094 202.496094 L 447.242188 122.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 178.511719 L 223.621094 50.1875 L 447.242188 105.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 44.996094 L 223.621094 182.714844 L 447.242188 1.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 187.898438 L 223.621094 141.730469 L 447.242188 104.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 164.488281 L 223.621094 43.667969 L 447.242188 179.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 48.996094 L 223.621094 69.539062 L 447.242188 75.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 8.539062 L 223.621094 129.652344 L 447.242188 178.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 34.1875 L 223.621094 149.097656 L 447.242188 218.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 49.75 L 223.621094 182.007812 L 447.242188 179.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 78.347656 L 223.621094 28.027344 L 447.242188 65.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 213.78125 L 223.621094 44.503906 L 447.242188 47.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 66.695312 L 223.621094 54.292969 L 447.242188 145.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 107.113281 L 223.621094 146.371094 L 447.242188 64.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 148.113281 L 223.621094 73.488281 L 447.242188 182.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 208.882812 L 223.621094 133.960938 L 447.242188 54.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 168.582031 L 223.621094 188.855469 L 447.242188 110.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 194.488281 L 223.621094 161.148438 L 447.242188 82.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 193.617188 L 223.621094 148.78125 L 447.242188 169.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 114.3125 L 223.621094 13.726562 L 447.242188 77.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 182.511719 L 223.621094 219.203125 L 447.242188 155.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 88.941406 L 223.621094 102.476562 L 447.242188 64.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 34.050781 L 223.621094 70.832031 L 447.242188 118.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 48.539062 L 223.621094 67.757812 L 447.242188 5.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 169.300781 L 223.621094 0.582031 L 447.242188 5.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 92.519531 L 223.621094 159.855469 L 447.242188 88.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 211.066406 L 223.621094 39.15625 L 447.242188 32.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 38.289062 L 223.621094 136.609375 L 447.242188 61.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 147.601562 L 223.621094 18.097656 L 447.242188 136.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 10.1875 L 223.621094 205.628906 L 447.242188 73.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 81.023438 L 223.621094 131.882812 L 447.242188 42.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 96.246094 L 223.621094 107 L 447.242188 164.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 57.109375 L 223.621094 205.503906 L 447.242188 15.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 139.9375 L 223.621094 146.925781 L 447.242188 134.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 80.210938 L 223.621094 128.976562 L 447.242188 164.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 116.425781 L 223.621094 176.71875 L 447.242188 31.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 7.175781 L 223.621094 125.359375 L 447.242188 69.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 37.070312 L 223.621094 213.625 L 447.242188 156.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 50.214844 L 223.621094 201.203125 L 447.242188 168.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 118.253906 L 223.621094 103.90625 L 447.242188 47.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 45.753906 L 223.621094 221.203125 L 447.242188 193.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 88.921875 L 223.621094 79.839844 L 447.242188 24.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 186.640625 L 223.621094 134.953125 L 447.242188 52.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 118.738281 L 223.621094 164.390625 L 447.242188 208.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 118.515625 L 223.621094 219.300781 L 447.242188 188.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 71.65625 L 223.621094 27.339844 L 447.242188 56.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 137.019531 L 223.621094 75.949219 L 447.242188 153.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 147.253906 L 223.621094 165.144531 L 447.242188 152.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 94.601562 L 223.621094 31.730469 L 447.242188 7.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 85.628906 L 223.621094 136.738281 L 447.242188 170.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 15.894531 L 223.621094 186.628906 L 447.242188 73.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 119.527344 L 223.621094 20.941406 L 447.242188 55.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 149.675781 L 223.621094 207.085938 L 447.242188 219.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 185.515625 L 223.621094 184.335938 L 447.242188 22.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 154.492188 L 223.621094 101.738281 L 447.242188 221.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 84.886719 L 223.621094 164.6875 L 447.242188 63.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 42.46875 L 223.621094 208.917969 L 447.242188 13.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 12.253906 L 223.621094 116.167969 L 447.242188 222.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 50.828125 L 223.621094 143.898438 L 447.242188 46.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 170.820312 L 223.621094 182.71875 L 447.242188 44.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 202.246094 L 223.621094 24.925781 L 447.242188 67.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 182.648438 L 223.621094 37.949219 L 447.242188 53.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 89.570312 L 223.621094 117.628906 L 447.242188 119.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 195.9375 L 223.621094 56.214844 L 447.242188 140.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 49.027344 L 223.621094 221.894531 L 447.242188 193.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 48.261719 L 223.621094 98.09375 L 447.242188 140.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 212.785156 L 223.621094 75.617188 L 447.242188 189.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 10.875 L 223.621094 17.644531 L 447.242188 219.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 110.039062 L 223.621094 153.917969 L 447.242188 12.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 48.070312 L 223.621094 196.414062 L 447.242188 9.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 209.445312 L 223.621094 95.222656 L 447.242188 101.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 66.164062 L 223.621094 216.410156 L 447.242188 209.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 149.175781 L 223.621094 0.949219 L 447.242188 79.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 142.125 L 223.621094 4.535156 L 447.242188 106.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 214.441406 L 223.621094 32.578125 L 447.242188 102.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 29.921875 L 223.621094 29.96875 L 447.242188 133.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 50.511719 L 223.621094 158.730469 L 447.242188 96.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 12.851562 L 223.621094 171.480469 L 447.242188 172.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 49.109375 L 223.621094 142 L 447.242188 103.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 25.914062 L 223.621094 44.605469 L 447.242188 2.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 216.542969 L 223.621094 169.316406 L 447.242188 23.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 102.695312 L 223.621094 24.128906 L 447.242188 67.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 3.996094 L 223.621094 98.5625 L 447.242188 142.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 121.714844 L 223.621094 20.046875 L 447.242188 117.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 110.609375 L 223.621094 72.644531 L 447.242188 80.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 1.769531 L 223.621094 46.570312 L 447.242188 220.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 14.546875 L 223.621094 114.773438 L 447.242188 23.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 18.511719 L 223.621094 182.589844 L 447.242188 195.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 73.164062 L 223.621094 104.285156 L 447.242188 192.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 46.734375 L 223.621094 212.417969 L 447.242188 181.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 116.285156 L 223.621094 213.859375 L 447.242188 74.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 43.140625 L 223.621094 187.4375 L 447.242188 71.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 37.628906 L 223.621094 58.664062 L 447.242188 202.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 173.703125 L 223.621094 205.277344 L 447.242188 8.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 35.40625 L 223.621094 139.101562 L 447.242188 209.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 147.210938 L 223.621094 131.699219 L 447.242188 171.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 91.34375 L 223.621094 81.910156 L 447.242188 204.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 159.710938 L 223.621094 51.40625 L 447.242188 66.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 92.394531 L 223.621094 108.175781 L 447.242188 184.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 131.316406 L 223.621094 192.746094 L 447.242188 199.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 125.300781 L 223.621094 2.046875 L 447.242188 94.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 217.242188 L 223.621094 57.816406 L 447.242188 218.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 43.09375 L 223.621094 56.210938 L 447.242188 76.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 148.808594 L 223.621094 129.425781 L 447.242188 92.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 155.164062 L 223.621094 10.847656 L 447.242188 19.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 174.519531 L 223.621094 176.214844 L 447.242188 116.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 93.886719 L 223.621094 58.152344 L 447.242188 2.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 221.816406 L 223.621094 88.472656 L 447.242188 76.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 202.429688 L 223.621094 65.476562 L 447.242188 130.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 50.460938 L 223.621094 148.382812 L 447.242188 55.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 206.175781 L 223.621094 131.492188 L 447.242188 196.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 121.183594 L 223.621094 93.609375 L 447.242188 70.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 61.535156 L 223.621094 24.960938 L 447.242188 1.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 191.039062 L 223.621094 128.046875 L 447.242188 223.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 47.054688 L 223.621094 112.652344 L 447.242188 56.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 169.238281 L 223.621094 80.652344 L 447.242188 61.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 172.289062 L 223.621094 134.625 L 447.242188 81.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 62.308594 L 223.621094 81.945312 L 447.242188 204.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 173.949219 L 223.621094 60.292969 L 447.242188 217.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 50.707031 L 223.621094 54.53125 L 447.242188 79.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 24.625 L 223.621094 48.328125 L 447.242188 149.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 104.449219 L 223.621094 165.589844 L 447.242188 159.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 123.878906 L 223.621094 162.609375 L 447.242188 175.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 46.175781 L 223.621094 136.378906 L 447.242188 41.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 209.957031 L 223.621094 105.960938 L 447.242188 151.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 126.285156 L 223.621094 90.121094 L 447.242188 33.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 188.882812 L 223.621094 16.46875 L 447.242188 95.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 124.996094 L 223.621094 119.136719 L 447.242188 150.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 146.410156 L 223.621094 48.429688 L 447.242188 6.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 192.554688 L 223.621094 27.4375 L 447.242188 21.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 119.988281 L 223.621094 106.828125 L 447.242188 204.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 174.980469 L 223.621094 124.03125 L 447.242188 89.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 48.273438 L 223.621094 178.296875 L 447.242188 33.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 192.007812 L 223.621094 199.835938 L 447.242188 173.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 191.027344 L 223.621094 174.964844 L 447.242188 179.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 101.140625 L 223.621094 22.699219 L 447.242188 92.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 69.160156 L 223.621094 9.863281 L 447.242188 74.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 123.394531 L 223.621094 179.515625 L 447.242188 86.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 31.449219 L 223.621094 57.289062 L 447.242188 81.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 16.894531 L 223.621094 47.347656 L 447.242188 159.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 41.65625 L 223.621094 108.296875 L 447.242188 204.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 222.882812 L 223.621094 88.574219 L 447.242188 221.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 7.488281 L 223.621094 96.0625 L 447.242188 153.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 203.25 L 223.621094 30.714844 L 447.242188 38.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 35.335938 L 223.621094 0.21875 L 447.242188 91.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 91.238281 L 223.621094 143.023438 L 447.242188 122.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 158.160156 L 223.621094 80.390625 L 447.242188 80.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 162.78125 L 223.621094 109.285156 L 447.242188 23.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 32.78125 L 223.621094 195.164062 L 447.242188 89.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 120.46875 L 223.621094 149.101562 L 447.242188 142.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 101.417969 L 223.621094 53.011719 L 447.242188 215.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 195.972656 L 223.621094 72.941406 L 447.242188 53.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 105.847656 L 223.621094 52.210938 L 447.242188 122.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 115.273438 L 223.621094 58.445312 L 447.242188 182.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 49.855469 L 223.621094 143.34375 L 447.242188 22.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 189.265625 L 223.621094 127.886719 L 447.242188 220.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 209.46875 L 223.621094 10.9375 L 447.242188 136.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 124.09375 L 223.621094 145.363281 L 447.242188 147.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 220.320312 L 223.621094 75.359375 L 447.242188 36.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 115.703125 L 223.621094 94.257812 L 447.242188 218 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 87.179688 L 223.621094 110.484375 L 447.242188 174.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 118.726562 L 223.621094 141.832031 L 447.242188 37.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 187.699219 L 223.621094 174.113281 L 447.242188 54.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 78.480469 L 223.621094 86.269531 L 447.242188 98.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 193.683594 L 223.621094 136.410156 L 447.242188 175.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 169.097656 L 223.621094 69.195312 L 447.242188 1.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 14.785156 L 223.621094 24.230469 L 447.242188 130.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 78.417969 L 223.621094 184.609375 L 447.242188 86.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 8.03125 L 223.621094 67.339844 L 447.242188 116.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 200.972656 L 223.621094 139.78125 L 447.242188 193.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 100.191406 L 223.621094 6.722656 L 447.242188 207.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 79.800781 L 223.621094 63.859375 L 447.242188 11.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 119.511719 L 223.621094 97.671875 L 447.242188 140.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 150.574219 L 223.621094 24.28125 L 447.242188 89.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 29.96875 L 223.621094 111.839844 L 447.242188 99.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 170.820312 L 223.621094 58.011719 L 447.242188 175.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 169.792969 L 223.621094 15.824219 L 447.242188 154.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 142.496094 L 223.621094 62.425781 L 447.242188 85.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 115.613281 L 223.621094 72.410156 L 447.242188 151.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 29.277344 L 223.621094 205.6875 L 447.242188 153.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 168.371094 L 223.621094 118.832031 L 447.242188 37.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 93.320312 L 223.621094 140.96875 L 447.242188 45.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 168.644531 L 223.621094 151.140625 L 447.242188 222.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 188.261719 L 223.621094 40.449219 L 447.242188 140.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 203.152344 L 223.621094 91.6875 L 447.242188 218.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 69.085938 L 223.621094 4.898438 L 447.242188 168.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 146.714844 L 223.621094 131.347656 L 447.242188 144.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 194.003906 L 223.621094 84.207031 L 447.242188 157.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 215.929688 L 223.621094 12.234375 L 447.242188 176.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 92.636719 L 223.621094 46.5 L 447.242188 142.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 153.414062 L 223.621094 33.164062 L 447.242188 84.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 40 L 223.621094 155.480469 L 447.242188 62.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 158.78125 L 223.621094 30.894531 L 447.242188 7.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 162.371094 L 223.621094 44.019531 L 447.242188 77.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 89.980469 L 223.621094 186.175781 L 447.242188 194.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 205.445312 L 223.621094 4.230469 L 447.242188 78.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 141.207031 L 223.621094 65.066406 L 447.242188 24.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 190.628906 L 223.621094 196.023438 L 447.242188 88.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 63.105469 L 223.621094 186.210938 L 447.242188 177.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 110.117188 L 223.621094 221.660156 L 447.242188 118.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 132.496094 L 223.621094 41.179688 L 447.242188 179.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 132.820312 L 223.621094 115.347656 L 447.242188 11.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 35.070312 L 223.621094 141.007812 L 447.242188 87.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 55.679688 L 223.621094 121.152344 L 447.242188 34.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 146.085938 L 223.621094 81.859375 L 447.242188 42.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 28.554688 L 223.621094 115.640625 L 447.242188 200.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 166 L 223.621094 127.582031 L 447.242188 209.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 0 L 223.621094 106.59375 L 447.242188 65.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 185.34375 L 223.621094 66.160156 L 447.242188 3.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 173.832031 L 223.621094 100.933594 L 447.242188 55.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 12.601562 L 223.621094 108.761719 L 447.242188 222.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 97.636719 L 223.621094 84.132812 L 447.242188 70.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 199.316406 L 223.621094 218.269531 L 447.242188 122.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 190.777344 L 223.621094 85.171875 L 447.242188 158.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 135.675781 L 223.621094 20.402344 L 447.242188 27.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 204.75 L 223.621094 111.769531 L 447.242188 155.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 67.9375 L 223.621094 137.777344 L 447.242188 34.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 140.65625 L 223.621094 168.988281 L 447.242188 74.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 62.371094 L 223.621094 66.078125 L 447.242188 121.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 87.957031 L 223.621094 121.664062 L 447.242188 103.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 50.03125 L 223.621094 145.832031 L 447.242188 93.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 69.746094 L 223.621094 81.207031 L 447.242188 11.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 157.558594 L 223.621094 216.503906 L 447.242188 145.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 79.757812 L 223.621094 32.457031 L 447.242188 75.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 194.085938 L 223.621094 49.621094 L 447.242188 7.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 207.667969 L 223.621094 109.757812 L 447.242188 133.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 207.902344 L 223.621094 13.070312 L 447.242188 99.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 167.082031 L 223.621094 82.210938 L 447.242188 193.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 195.140625 L 223.621094 134.503906 L 447.242188 100.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 192.730469 L 223.621094 107.660156 L 447.242188 167.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 23.261719 L 223.621094 187.882812 L 447.242188 29.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 63.785156 L 223.621094 11.25 L 447.242188 199.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 112.746094 L 223.621094 8.597656 L 447.242188 72.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 85.890625 L 223.621094 8.015625 L 447.242188 64.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 47.832031 L 223.621094 32.761719 L 447.242188 108.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 12.3125 L 223.621094 79.699219 L 447.242188 202.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 175.214844 L 223.621094 40.6875 L 447.242188 193.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 128.980469 L 223.621094 108.78125 L 447.242188 126.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 129.796875 L 223.621094 86.546875 L 447.242188 144.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 78.75 L 223.621094 138.902344 L 447.242188 149.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 209.445312 L 223.621094 47.136719 L 447.242188 70.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 117.175781 L 223.621094 119.410156 L 447.242188 182.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 183.789062 L 223.621094 132.023438 L 447.242188 163.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 179.429688 L 223.621094 57.457031 L 447.242188 177.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 81.503906 L 223.621094 33.257812 L 447.242188 116.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 82.3125 L 223.621094 16.421875 L 447.242188 173.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 174.816406 L 223.621094 43.503906 L 447.242188 192.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 188.039062 L 223.621094 92.261719 L 447.242188 189.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 15.742188 L 223.621094 158.234375 L 447.242188 178.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 70.664062 L 223.621094 191.753906 L 447.242188 106.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 98.820312 L 223.621094 187.898438 L 447.242188 17.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 183.261719 L 223.621094 15.464844 L 447.242188 94.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 191.175781 L 223.621094 114.324219 L 447.242188 78.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 111.027344 L 223.621094 193.644531 L 447.242188 223.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 81.207031 L 223.621094 222.703125 L 447.242188 136.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 101.75 L 223.621094 126.441406 L 447.242188 110.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 11.074219 L 223.621094 151.191406 L 447.242188 152.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 22.105469 L 223.621094 24.6875 L 447.242188 136.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 137.222656 L 223.621094 66.171875 L 447.242188 172.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 87.957031 L 223.621094 44.71875 L 447.242188 130.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 75.867188 L 223.621094 155.449219 L 447.242188 198.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 184.113281 L 223.621094 84.359375 L 447.242188 5.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 22.511719 L 223.621094 220.402344 L 447.242188 155.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 22.570312 L 223.621094 157.621094 L 447.242188 185.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 95.230469 L 223.621094 74.761719 L 447.242188 154.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 179.941406 L 223.621094 86.25 L 447.242188 44.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 86.8125 L 223.621094 181.617188 L 447.242188 5.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 88.816406 L 223.621094 86.871094 L 447.242188 143.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 45.542969 L 223.621094 147.960938 L 447.242188 5.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 80.261719 L 223.621094 19.972656 L 447.242188 163.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 6.835938 L 223.621094 130.167969 L 447.242188 47.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 179.160156 L 223.621094 164.066406 L 447.242188 116.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 168.441406 L 223.621094 84.910156 L 447.242188 76.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 152.566406 L 223.621094 211.972656 L 447.242188 107.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 110.796875 L 223.621094 123.386719 L 447.242188 139.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 42.585938 L 223.621094 103.289062 L 447.242188 94.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 52.992188 L 223.621094 84.9375 L 447.242188 87.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 118.890625 L 223.621094 101.234375 L 447.242188 10.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 74.449219 L 223.621094 149.597656 L 447.242188 45.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 199.539062 L 223.621094 176.054688 L 447.242188 96.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 25.117188 L 223.621094 167.980469 L 447.242188 114.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 92.050781 L 223.621094 173.683594 L 447.242188 7.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 76.480469 L 223.621094 204.113281 L 447.242188 196.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 3.480469 L 223.621094 192.503906 L 447.242188 220.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 163.679688 L 223.621094 202.910156 L 447.242188 51.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 151.941406 L 223.621094 41.789062 L 447.242188 72.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 7.648438 L 223.621094 171.644531 L 447.242188 131.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 111.878906 L 223.621094 73.714844 L 447.242188 134.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 62.40625 L 223.621094 155.640625 L 447.242188 49.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 178.464844 L 223.621094 36.726562 L 447.242188 169.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 209.105469 L 223.621094 100.722656 L 447.242188 124.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 15.707031 L 223.621094 45.019531 L 447.242188 108.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 185.667969 L 223.621094 89.75 L 447.242188 8.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 168.453125 L 223.621094 168.164062 L 447.242188 128.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 106.039062 L 223.621094 52.132812 L 447.242188 181.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 15.292969 L 223.621094 212.261719 L 447.242188 62.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 178.453125 L 223.621094 110.484375 L 447.242188 207.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 92.265625 L 223.621094 64.375 L 447.242188 178.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 104.652344 L 223.621094 113.625 L 447.242188 9.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 222.132812 L 223.621094 99.503906 L 447.242188 76.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 38.011719 L 223.621094 184.804688 L 447.242188 23.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 172.496094 L 223.621094 12.996094 L 447.242188 53.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 211.027344 L 223.621094 56.75 L 447.242188 33.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 209.8125 L 223.621094 143.792969 L 447.242188 200.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 117.785156 L 223.621094 9.746094 L 447.242188 66.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 174.160156 L 223.621094 169.503906 L 447.242188 125.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 9.257812 L 223.621094 21.210938 L 447.242188 145.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 83.285156 L 223.621094 43.847656 L 447.242188 205.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 6.09375 L 223.621094 197.941406 L 447.242188 199.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 54.261719 L 223.621094 122.128906 L 447.242188 203.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 218.285156 L 223.621094 97.585938 L 447.242188 122.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 187.800781 L 223.621094 90.128906 L 447.242188 44.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 116.691406 L 223.621094 142.929688 L 447.242188 183.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 197.078125 L 223.621094 211.335938 L 447.242188 91.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 186.835938 L 223.621094 169.9375 L 447.242188 80.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 223.226562 L 223.621094 82.148438 L 447.242188 207.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 153.871094 L 223.621094 73.542969 L 447.242188 62.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 78.398438 L 223.621094 70.996094 L 447.242188 160.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 80.804688 L 223.621094 83.003906 L 447.242188 184.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 152.269531 L 223.621094 195.054688 L 447.242188 97.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 34.46875 L 223.621094 185.386719 L 447.242188 24.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 53.953125 L 223.621094 3.242188 L 447.242188 92.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 160.203125 L 223.621094 178.9375 L 447.242188 216.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 155.914062 L 223.621094 9.75 L 447.242188 176.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 111.9375 L 223.621094 24.800781 L 447.242188 60.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 88.007812 L 223.621094 94.902344 L 447.242188 79.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 63.332031 L 223.621094 179.203125 L 447.242188 168.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 151.53125 L 223.621094 84.097656 L 447.242188 73.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 54.335938 L 223.621094 59.28125 L 447.242188 114.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 23.695312 L 223.621094 120.511719 L 447.242188 170.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 8.472656 L 223.621094 184.382812 L 447.242188 32.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 15.910156 L 223.621094 8.46875 L 447.242188 64.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 110.148438 L 223.621094 213.726562 L 447.242188 139.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 42.621094 L 223.621094 164.53125 L 447.242188 41.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 216.109375 L 223.621094 175.761719 L 447.242188 210.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 71.230469 L 223.621094 212.292969 L 447.242188 37.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 17.273438 L 223.621094 198.085938 L 447.242188 24.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 66.894531 L 223.621094 153.394531 L 447.242188 46.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 186.828125 L 223.621094 182.886719 L 447.242188 12.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 163.117188 L 223.621094 57.707031 L 447.242188 28.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 118.265625 L 223.621094 71.449219 L 447.242188 110.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 219.347656 L 223.621094 61.761719 L 447.242188 180.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 213.074219 L 223.621094 7.464844 L 447.242188 215.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 212.925781 L 223.621094 115.90625 L 447.242188 80.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 17.394531 L 223.621094 172.5625 L 447.242188 60.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 197.804688 L 223.621094 98.921875 L 447.242188 121.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 28.640625 L 223.621094 168.699219 L 447.242188 110.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 158.304688 L 223.621094 110.683594 L 447.242188 148.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 90.789062 L 223.621094 12.929688 L 447.242188 34.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 113.574219 L 223.621094 171.765625 L 447.242188 204.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 67.835938 L 223.621094 10.808594 L 447.242188 119.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 212.597656 L 223.621094 42.441406 L 447.242188 43.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 155.605469 L 223.621094 38.703125 L 447.242188 96.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 192.722656 L 223.621094 114.707031 L 447.242188 30.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 121.433594 L 223.621094 117.488281 L 447.242188 209.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 113.167969 L 223.621094 220.476562 L 447.242188 70.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 213.347656 L 223.621094 70.789062 L 447.242188 47.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 38.558594 L 223.621094 46.429688 L 447.242188 113.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 29.289062 L 223.621094 144.558594 L 447.242188 103.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 46.804688 L 223.621094 221.339844 L 447.242188 33.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 155.183594 L 223.621094 17.007812 L 447.242188 133.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 91.257812 L 223.621094 215.863281 L 447.242188 198.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 141.835938 L 223.621094 160.230469 L 447.242188 184.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 111.941406 L 223.621094 133.6875 L 447.242188 203.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 33.746094 L 223.621094 149.105469 L 447.242188 16.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 170.261719 L 223.621094 43.933594 L 447.242188 46.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 171.898438 L 223.621094 162.320312 L 447.242188 190.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 218.480469 L 223.621094 104.972656 L 447.242188 124.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 143.230469 L 223.621094 222.464844 L 447.242188 150.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 143.214844 L 223.621094 210.136719 L 447.242188 78.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 56.109375 L 223.621094 156.6875 L 447.242188 186.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 105.484375 L 223.621094 27.25 L 447.242188 207.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 54.007812 L 223.621094 61.777344 L 447.242188 87.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 194.683594 L 223.621094 214.089844 L 447.242188 29.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 86.75 L 223.621094 124.90625 L 447.242188 182.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 65.273438 L 223.621094 38.503906 L 447.242188 66.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 132.15625 L 223.621094 59.699219 L 447.242188 54.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 28.96875 L 223.621094 185.261719 L 447.242188 1.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 167.738281 L 223.621094 24.949219 L 447.242188 149.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 93.59375 L 223.621094 55.160156 L 447.242188 177.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 129.226562 L 223.621094 97.929688 L 447.242188 170.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 124.945312 L 223.621094 157.566406 L 447.242188 26.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 212.957031 L 223.621094 83.035156 L 447.242188 92.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 181.316406 L 223.621094 170.804688 L 447.242188 48.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 63.59375 L 223.621094 99.113281 L 447.242188 204.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 181.027344 L 223.621094 104.023438 L 447.242188 126.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 174.085938 L 223.621094 91.273438 L 447.242188 123.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 22.359375 L 223.621094 129.21875 L 447.242188 101.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 71.964844 L 223.621094 185.011719 L 447.242188 39.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 47.910156 L 223.621094 1.6875 L 447.242188 110.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 40.207031 L 223.621094 133.875 L 447.242188 109.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 57.761719 L 223.621094 175.359375 L 447.242188 162.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 19.875 L 223.621094 54.480469 L 447.242188 203.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 118.5625 L 223.621094 144.238281 L 447.242188 151.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 216.742188 L 223.621094 84.117188 L 447.242188 94.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 35.019531 L 223.621094 107.203125 L 447.242188 51.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 74.097656 L 223.621094 32.09375 L 447.242188 82.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 86.078125 L 223.621094 63.308594 L 447.242188 205.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 29.945312 L 223.621094 96.503906 L 447.242188 116.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 139.84375 L 223.621094 123.773438 L 447.242188 176.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 87.195312 L 223.621094 143.132812 L 447.242188 193.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 114.363281 L 223.621094 132.011719 L 447.242188 110.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 195.347656 L 223.621094 65.664062 L 447.242188 70.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 211.273438 L 223.621094 23.335938 L 447.242188 22.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 223.074219 L 223.621094 99.648438 L 447.242188 81.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 141.289062 L 223.621094 96.28125 L 447.242188 105.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 58.890625 L 223.621094 1.675781 L 447.242188 165.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 52.578125 L 223.621094 178.363281 L 447.242188 166.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 13.207031 L 223.621094 201.074219 L 447.242188 40.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 119.753906 L 223.621094 61.25 L 447.242188 77.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 126.058594 L 223.621094 17.378906 L 447.242188 67.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 53.125 L 223.621094 209.800781 L 447.242188 33.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 205.007812 L 223.621094 30.921875 L 447.242188 186.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 193.332031 L 223.621094 88.714844 L 447.242188 205.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 73.011719 L 223.621094 30.140625 L 447.242188 115.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 98.957031 L 223.621094 69.09375 L 447.242188 30.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 101.257812 L 223.621094 59.042969 L 447.242188 41.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 188.882812 L 223.621094 15.078125 L 447.242188 208.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 133.855469 L 223.621094 61.375 L 447.242188 110.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 177.242188 L 223.621094 53.46875 L 447.242188 28.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 204.941406 L 223.621094 80.53125 L 447.242188 81.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 171.667969 L 223.621094 144.804688 L 447.242188 49.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 47.652344 L 223.621094 182.433594 L 447.242188 72.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 213.988281 L 223.621094 149.953125 L 447.242188 112.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 102.484375 L 223.621094 156.308594 L 447.242188 203.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 36.890625 L 223.621094 26.195312 L 447.242188 139.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 130.507812 L 223.621094 129.800781 L 447.242188 22.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 51.289062 L 223.621094 77.199219 L 447.242188 154.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 75.351562 L 223.621094 57.152344 L 447.242188 161.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 19.035156 L 223.621094 215.03125 L 447.242188 95.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 167.230469 L 223.621094 39.390625 L 447.242188 87.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 29.496094 L 223.621094 86.433594 L 447.242188 33.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 43.539062 L 223.621094 122.824219 L 447.242188 134.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 183.511719 L 223.621094 194.429688 L 447.242188 156.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 23.574219 L 223.621094 208.203125 L 447.242188 59.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 170.566406 L 223.621094 116.972656 L 447.242188 143.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 16.867188 L 223.621094 132.601562 L 447.242188 110.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 217.046875 L 223.621094 114.675781 L 447.242188 183.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 68.894531 L 223.621094 201.316406 L 447.242188 77.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 188.398438 L 223.621094 199.925781 L 447.242188 65.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 151.21875 L 223.621094 223.015625 L 447.242188 203.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 103.15625 L 223.621094 21.265625 L 447.242188 56.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 198.167969 L 223.621094 65.324219 L 447.242188 67.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 174.082031 L 223.621094 114.925781 L 447.242188 218.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 13.808594 L 223.621094 57.773438 L 447.242188 66.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 141.035156 L 223.621094 84.363281 L 447.242188 209.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 109.21875 L 223.621094 155.210938 L 447.242188 155.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 49.03125 L 223.621094 79.195312 L 447.242188 36.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 45.964844 L 223.621094 207.097656 L 447.242188 184.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 136.09375 L 223.621094 125.40625 L 447.242188 28.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 93.816406 L 223.621094 72.75 L 447.242188 218.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 77.265625 L 223.621094 124.546875 L 447.242188 119.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 86.957031 L 223.621094 125.328125 L 447.242188 106.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 54.042969 L 223.621094 72.1875 L 447.242188 159.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 136.660156 L 223.621094 159.578125 L 447.242188 60.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 163.886719 L 223.621094 217.25 L 447.242188 16.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 54.34375 L 223.621094 148.632812 L 447.242188 76.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 21.84375 L 223.621094 137.699219 L 447.242188 86.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 95.542969 L 223.621094 129.425781 L 447.242188 5.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 111.796875 L 223.621094 187.304688 L 447.242188 13.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 10.015625 L 223.621094 200.714844 L 447.242188 184.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 181.289062 L 223.621094 114.691406 L 447.242188 164.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 114.042969 L 223.621094 131.652344 L 447.242188 174.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 106.773438 L 223.621094 13.148438 L 447.242188 45.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 202.386719 L 223.621094 184.410156 L 447.242188 165.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 127.832031 L 223.621094 102.261719 L 447.242188 13.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 123.578125 L 223.621094 156.792969 L 447.242188 10.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 211.082031 L 223.621094 64.976562 L 447.242188 160.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 152.332031 L 223.621094 65.300781 L 447.242188 81.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 52.1875 L 223.621094 140.339844 L 447.242188 106.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 11.15625 L 223.621094 134.761719 L 447.242188 106.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 122.4375 L 223.621094 178.632812 L 447.242188 90.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 211.445312 L 223.621094 133.382812 L 447.242188 166.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 174.085938 L 223.621094 188.910156 L 447.242188 196.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 107.757812 L 223.621094 152.558594 L 447.242188 196.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 144.777344 L 223.621094 110.394531 L 447.242188 208.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 131.1875 L 223.621094 117.289062 L 447.242188 133.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 163.195312 L 223.621094 201.261719 L 447.242188 51.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 212.910156 L 223.621094 151.636719 L 447.242188 171.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 27.457031 L 223.621094 73.3125 L 447.242188 12.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 221.132812 L 223.621094 154.40625 L 447.242188 12.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 4 L 223.621094 9.050781 L 447.242188 135.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 33.808594 L 223.621094 6.992188 L 447.242188 113.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 81.671875 L 223.621094 1.121094 L 447.242188 45.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 156.082031 L 223.621094 151.402344 L 447.242188 38.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 123.296875 L 223.621094 54.796875 L 447.242188 171.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 50.351562 L 223.621094 121.734375 L 447.242188 165.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 163.160156 L 223.621094 124.304688 L 447.242188 156.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 47.082031 L 223.621094 3.71875 L 447.242188 179.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 202.847656 L 223.621094 165.9375 L 447.242188 33.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 89.902344 L 223.621094 205.539062 L 447.242188 10.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 220.011719 L 223.621094 130.367188 L 447.242188 66.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 169.824219 L 223.621094 159.457031 L 447.242188 42.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 9.269531 L 223.621094 35.898438 L 447.242188 114.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 186.363281 L 223.621094 103.46875 L 447.242188 195.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 39.585938 L 223.621094 102.710938 L 447.242188 169.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 154.214844 L 223.621094 68.855469 L 447.242188 89.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 166.492188 L 223.621094 102.082031 L 447.242188 198.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 142.683594 L 223.621094 176.714844 L 447.242188 51.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 188.617188 L 223.621094 132.914062 L 447.242188 135.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 193.222656 L 223.621094 120.738281 L 447.242188 168.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 134.929688 L 223.621094 36.335938 L 447.242188 178.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 214.597656 L 223.621094 23.839844 L 447.242188 15.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 168.878906 L 223.621094 70.761719 L 447.242188 67.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 111.394531 L 223.621094 66.84375 L 447.242188 52.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 207.660156 L 223.621094 221.113281 L 447.242188 96.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 87.324219 L 223.621094 121.898438 L 447.242188 142.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 89.9375 L 223.621094 212.101562 L 447.242188 218.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 202.136719 L 223.621094 169.992188 L 447.242188 126.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 122.359375 L 223.621094 12.648438 L 447.242188 185.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 19.003906 L 223.621094 72.914062 L 447.242188 94.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 182.550781 L 223.621094 178.101562 L 447.242188 111.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 18.871094 L 223.621094 143.472656 L 447.242188 212.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 166.78125 L 223.621094 178.101562 L 447.242188 212.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 205.238281 L 223.621094 183.324219 L 447.242188 183.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 33.933594 L 223.621094 1.40625 L 447.242188 178.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 183.824219 L 223.621094 142.1875 L 447.242188 96.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 91.722656 L 223.621094 95.554688 L 447.242188 82.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 30.136719 L 223.621094 24.167969 L 447.242188 12.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 178.851562 L 223.621094 46.554688 L 447.242188 199.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 67.667969 L 223.621094 47.058594 L 447.242188 191.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 78.582031 L 223.621094 130.609375 L 447.242188 127.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 182.800781 L 223.621094 121.074219 L 447.242188 37.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 153.34375 L 223.621094 92.191406 L 447.242188 72.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 196.703125 L 223.621094 71.75 L 447.242188 84.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 95.144531 L 223.621094 130.425781 L 447.242188 58.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 210.546875 L 223.621094 157.996094 L 447.242188 147.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 52.132812 L 223.621094 188.535156 L 447.242188 140.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 4.113281 L 223.621094 80.980469 L 447.242188 158.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 26.644531 L 223.621094 80.730469 L 447.242188 53.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 69.089844 L 223.621094 159.761719 L 447.242188 25.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 175.992188 L 223.621094 198.332031 L 447.242188 80.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 42.554688 L 223.621094 102.351562 L 447.242188 93.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 2.0625 L 223.621094 149.648438 L 447.242188 215.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 52.371094 L 223.621094 139.96875 L 447.242188 18.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 156.144531 L 223.621094 5.855469 L 447.242188 171.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 130.808594 L 223.621094 56.695312 L 447.242188 32.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 210.546875 L 223.621094 117.417969 L 447.242188 38.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 13.921875 L 223.621094 27.0625 L 447.242188 117.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 64.507812 L 223.621094 49.183594 L 447.242188 173.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 199.917969 L 223.621094 153.640625 L 447.242188 73.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 122.160156 L 223.621094 109.046875 L 447.242188 22.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 214.210938 L 223.621094 108.773438 L 447.242188 127.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 122.191406 L 223.621094 52.765625 L 447.242188 168.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 125.515625 L 223.621094 193.941406 L 447.242188 101.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 188.757812 L 223.621094 5.527344 L 447.242188 51.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 22.632812 L 223.621094 96.785156 L 447.242188 134.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 133.570312 L 223.621094 60.464844 L 447.242188 139.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 165.949219 L 223.621094 174.601562 L 447.242188 38.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 147.492188 L 223.621094 40.191406 L 447.242188 94.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 8.488281 L 223.621094 175.226562 L 447.242188 129.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 107.273438 L 223.621094 77.410156 L 447.242188 135.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 28.453125 L 223.621094 82.136719 L 447.242188 137.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 81.792969 L 223.621094 117.507812 L 447.242188 28.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 34.757812 L 223.621094 2.734375 L 447.242188 0.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 99.515625 L 223.621094 189.644531 L 447.242188 219.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 194.320312 L 223.621094 187.183594 L 447.242188 27.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 20 L 223.621094 187.554688 L 447.242188 103.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 136.867188 L 223.621094 49.773438 L 447.242188 2.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 23.875 L 223.621094 7.855469 L 447.242188 126.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 222.105469 L 223.621094 84.953125 L 447.242188 47.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 219.269531 L 223.621094 222.167969 L 447.242188 211.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 40.097656 L 223.621094 196.265625 L 447.242188 2.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 45.976562 L 223.621094 174.988281 L 447.242188 70.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 11.246094 L 223.621094 200.070312 L 447.242188 192.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 81.636719 L 223.621094 193.125 L 447.242188 201.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 174.035156 L 223.621094 116.871094 L 447.242188 151.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 91.304688 L 223.621094 123.507812 L 447.242188 55.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 141.753906 L 223.621094 97.40625 L 447.242188 146.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 56.226562 L 223.621094 218.535156 L 447.242188 95.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 204.496094 L 223.621094 82.070312 L 447.242188 105.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 113.484375 L 223.621094 142.539062 L 447.242188 208.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 195.515625 L 223.621094 208.691406 L 447.242188 90.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 112.867188 L 223.621094 56.675781 L 447.242188 159.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 145.746094 L 223.621094 82.808594 L 447.242188 157.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 147.066406 L 223.621094 178.964844 L 447.242188 68.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 3.222656 L 223.621094 64.464844 L 447.242188 61.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 143.734375 L 223.621094 72.828125 L 447.242188 43.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 95.875 L 223.621094 28.835938 L 447.242188 152.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 161.246094 L 223.621094 66.816406 L 447.242188 191.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 186.222656 L 223.621094 47.347656 L 447.242188 222.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 98.238281 L 223.621094 59.582031 L 447.242188 9.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 95.242188 L 223.621094 80.652344 L 447.242188 174.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 212.304688 L 223.621094 12.449219 L 447.242188 145.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 145.722656 L 223.621094 80.441406 L 447.242188 38.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 130.160156 L 223.621094 16.070312 L 447.242188 26.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 74.742188 L 223.621094 118.796875 L 447.242188 130.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 206.582031 L 223.621094 12.605469 L 447.242188 171.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 16.726562 L 223.621094 92.851562 L 447.242188 153.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 43.207031 L 223.621094 161.730469 L 447.242188 184.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 97.148438 L 223.621094 184.011719 L 447.242188 128.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 134.191406 L 223.621094 81.417969 L 447.242188 8.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 108.078125 L 223.621094 107.582031 L 447.242188 17.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 191.59375 L 223.621094 174.957031 L 447.242188 198.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 89.535156 L 223.621094 2.375 L 447.242188 149.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 82.457031 L 223.621094 121.433594 L 447.242188 17.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 7.273438 L 223.621094 85.722656 L 447.242188 121.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 128.722656 L 223.621094 149.949219 L 447.242188 54.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 69.515625 L 223.621094 193.070312 L 447.242188 222.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 199.339844 L 223.621094 59.828125 L 447.242188 78.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 184.539062 L 223.621094 102.023438 L 447.242188 153.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 109.023438 L 223.621094 81.210938 L 447.242188 137.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 10.179688 L 223.621094 35.148438 L 447.242188 92.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 26.160156 L 223.621094 20.050781 L 447.242188 186.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 191.59375 L 223.621094 58.109375 L 447.242188 147.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 185.695312 L 223.621094 77.636719 L 447.242188 0.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 133.933594 L 223.621094 203.746094 L 447.242188 101.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 86.585938 L 223.621094 70.683594 L 447.242188 52.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 141.585938 L 223.621094 145.777344 L 447.242188 137.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 63.402344 L 223.621094 214.089844 L 447.242188 61.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 209.324219 L 223.621094 9.285156 L 447.242188 184.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 172.5625 L 223.621094 115.949219 L 447.242188 138.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 54.550781 L 223.621094 130.789062 L 447.242188 17.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 103.648438 L 223.621094 113.410156 L 447.242188 106.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 88.109375 L 223.621094 9.773438 L 447.242188 195.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 131.417969 L 223.621094 65.4375 L 447.242188 134.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 48.683594 L 223.621094 91.660156 L 447.242188 186.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 190.046875 L 223.621094 214.972656 L 447.242188 145.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 145.851562 L 223.621094 10.824219 L 447.242188 135.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 26 L 223.621094 169.652344 L 447.242188 53.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 206.292969 L 223.621094 222.574219 L 447.242188 45.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 96.8125 L 223.621094 58.332031 L 447.242188 22.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 35.535156 L 223.621094 54.789062 L 447.242188 218.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 129.417969 L 223.621094 187.273438 L 447.242188 67.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 110.386719 L 223.621094 104.757812 L 447.242188 104.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 135.539062 L 223.621094 43.332031 L 447.242188 201.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 149.507812 L 223.621094 87.511719 L 447.242188 51.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 14.019531 L 223.621094 199.683594 L 447.242188 90.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 79.265625 L 223.621094 176.800781 L 447.242188 73.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 74.574219 L 223.621094 88.816406 L 447.242188 138.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 85.109375 L 223.621094 183.609375 L 447.242188 178.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 106.273438 L 223.621094 100.761719 L 447.242188 97.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 93.257812 L 223.621094 111.921875 L 447.242188 121.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 200.617188 L 223.621094 172.652344 L 447.242188 121.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 123.929688 L 223.621094 160.363281 L 447.242188 169.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 137.6875 L 223.621094 153.5 L 447.242188 214.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 43.65625 L 223.621094 182.902344 L 447.242188 91.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 133.359375 L 223.621094 50.414062 L 447.242188 28.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 49.117188 L 223.621094 16.4375 L 447.242188 13.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 74.136719 L 223.621094 31.300781 L 447.242188 108.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 93.859375 L 223.621094 106.671875 L 447.242188 8.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 39.839844 L 223.621094 135.648438 L 447.242188 208.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 38.550781 L 223.621094 24.816406 L 447.242188 166.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 3.464844 L 223.621094 19.015625 L 447.242188 2.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 78.597656 L 223.621094 23.335938 L 447.242188 155.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 103.875 L 223.621094 17.003906 L 447.242188 116.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 70.375 L 223.621094 103.175781 L 447.242188 72.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 172.589844 L 223.621094 11.316406 L 447.242188 150.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 140.320312 L 223.621094 222.328125 L 447.242188 141.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 108.417969 L 223.621094 79.304688 L 447.242188 13.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 186.558594 L 223.621094 173.867188 L 447.242188 96.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 160.097656 L 223.621094 63.136719 L 447.242188 25.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 45.050781 L 223.621094 100.308594 L 447.242188 181.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 108.339844 L 223.621094 96.3125 L 447.242188 223.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 139.621094 L 223.621094 125.40625 L 447.242188 81.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 213.847656 L 223.621094 211.136719 L 447.242188 128.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 134.585938 L 223.621094 14.839844 L 447.242188 185.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 107.550781 L 223.621094 118.960938 L 447.242188 15.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 131.867188 L 223.621094 78.425781 L 447.242188 65.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 116.515625 L 223.621094 12.996094 L 447.242188 170.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 205.691406 L 223.621094 85.777344 L 447.242188 80.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 177.371094 L 223.621094 103.300781 L 447.242188 66.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 42.265625 L 223.621094 216.398438 L 447.242188 120.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 172.816406 L 223.621094 183.316406 L 447.242188 198.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 24.128906 L 223.621094 110.003906 L 447.242188 128.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 26.171875 L 223.621094 150.695312 L 447.242188 175.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 10.863281 L 223.621094 178.507812 L 447.242188 64.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 167.582031 L 223.621094 157.527344 L 447.242188 175.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 161.757812 L 223.621094 89.324219 L 447.242188 112.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 100.5625 L 223.621094 130.097656 L 447.242188 37.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 43.648438 L 223.621094 197.492188 L 447.242188 205.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 105.03125 L 223.621094 135.546875 L 447.242188 174.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 17.273438 L 223.621094 186.828125 L 447.242188 114.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 6.453125 L 223.621094 92.984375 L 447.242188 201.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 41.824219 L 223.621094 161.929688 L 447.242188 92.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 75.949219 L 223.621094 160.105469 L 447.242188 162.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 136.90625 L 223.621094 180.246094 L 447.242188 129.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 53.351562 L 223.621094 5.605469 L 447.242188 151.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 113.769531 L 223.621094 102.632812 L 447.242188 19.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 6.296875 L 223.621094 76.972656 L 447.242188 202.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 48.503906 L 223.621094 119.628906 L 447.242188 70.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 6.433594 L 223.621094 152.652344 L 447.242188 91.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 140.242188 L 223.621094 113.492188 L 447.242188 52.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 101.027344 L 223.621094 182.960938 L 447.242188 10.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 77.347656 L 223.621094 30.828125 L 447.242188 66.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 136.996094 L 223.621094 78.023438 L 447.242188 24.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 181.570312 L 223.621094 93.921875 L 447.242188 175.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 111.394531 L 223.621094 173.226562 L 447.242188 89.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 169.597656 L 223.621094 136.210938 L 447.242188 48.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 135.09375 L 223.621094 160.144531 L 447.242188 90.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 184.523438 L 223.621094 94.769531 L 447.242188 217.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 23.785156 L 223.621094 24.289062 L 447.242188 176.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 45.695312 L 223.621094 137.144531 L 447.242188 168.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 121.671875 L 223.621094 85.117188 L 447.242188 130.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 187.679688 L 223.621094 83.0625 L 447.242188 157.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 8.429688 L 223.621094 90.539062 L 447.242188 72.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 95.953125 L 223.621094 30.863281 L 447.242188 46.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 194.058594 L 223.621094 178.003906 L 447.242188 64.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 167.457031 L 223.621094 56.109375 L 447.242188 128.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 73.800781 L 223.621094 39.398438 L 447.242188 187.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 207.320312 L 223.621094 93.542969 L 447.242188 29.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 38.425781 L 223.621094 76.726562 L 447.242188 29.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 201.617188 L 223.621094 43.722656 L 447.242188 197.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 103.410156 L 223.621094 13.90625 L 447.242188 8.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 66.890625 L 223.621094 10.679688 L 447.242188 122.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 164.351562 L 223.621094 201.84375 L 447.242188 2.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 183.84375 L 223.621094 192.773438 L 447.242188 80.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 145.042969 L 223.621094 151.636719 L 447.242188 18.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 2.300781 L 223.621094 69.269531 L 447.242188 81.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 30.539062 L 223.621094 182.65625 L 447.242188 135.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 119.011719 L 223.621094 7.316406 L 447.242188 191.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 101.480469 L 223.621094 1.222656 L 447.242188 154.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 196.539062 L 223.621094 39.398438 L 447.242188 190.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 107.179688 L 223.621094 7.203125 L 447.242188 11.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 128.167969 L 223.621094 106.558594 L 447.242188 162.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 109.503906 L 223.621094 11.675781 L 447.242188 172.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 24.722656 L 223.621094 78.742188 L 447.242188 146.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 31.304688 L 223.621094 193.167969 L 447.242188 178.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 155.042969 L 223.621094 195.90625 L 447.242188 58.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 134.265625 L 223.621094 214.507812 L 447.242188 165.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 205.703125 L 223.621094 48.53125 L 447.242188 169.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 108.125 L 223.621094 155.886719 L 447.242188 155.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 191.023438 L 223.621094 54.242188 L 447.242188 211.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 86.089844 L 223.621094 136.738281 L 447.242188 19.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 183.21875 L 223.621094 52.578125 L 447.242188 217.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 21.796875 L 223.621094 124.695312 L 447.242188 23.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 159.425781 L 223.621094 148.167969 L 447.242188 219.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 18.199219 L 223.621094 196.871094 L 447.242188 47.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 179.933594 L 223.621094 57.097656 L 447.242188 134.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 78.269531 L 223.621094 152.265625 L 447.242188 73.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 211.1875 L 223.621094 10.378906 L 447.242188 200.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 88.085938 L 223.621094 71.875 L 447.242188 122.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 23.363281 L 223.621094 198.066406 L 447.242188 148.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 63.171875 L 223.621094 154.585938 L 447.242188 67.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 35.480469 L 223.621094 13.621094 L 447.242188 170.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 200.539062 L 223.621094 118.277344 L 447.242188 105.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 38.710938 L 223.621094 189.453125 L 447.242188 56.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 127.261719 L 223.621094 207.507812 L 447.242188 171.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 67.902344 L 223.621094 160.160156 L 447.242188 29.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 219.945312 L 223.621094 128.472656 L 447.242188 170.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 185.503906 L 223.621094 17.574219 L 447.242188 40.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 95.707031 L 223.621094 63.613281 L 447.242188 193.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 130.058594 L 223.621094 133.746094 L 447.242188 40.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 5.269531 L 223.621094 148.972656 L 447.242188 135.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 138.949219 L 223.621094 222.046875 L 447.242188 125.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 87.234375 L 223.621094 189.742188 L 447.242188 191.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 177.207031 L 223.621094 112.65625 L 447.242188 149.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 0.871094 L 223.621094 128.519531 L 447.242188 31.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 150.394531 L 223.621094 209.96875 L 447.242188 179.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.1;stroke-miterlimit:10;\\\" d=\\\"M 0 142.058594 L 223.621094 52.15625 L 447.242188 173.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.264797;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0 213.09375 L 223.621094 22.988281 L 447.242188 3.582031 \\\"/>\\n\",\n       \"</g>\\n\",\n       \"</svg>\\n\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"import Data.List (sort)\\n\",\n    \"\\n\",\n    \"program :: Measure ()\\n\",\n    \"program = do\\n\",\n    \"    xs <- replicateM 3 random\\n\",\n    \"    factor $ if xs == sort xs then 1 else 0.1\\n\",\n    \"\\n\",\n    \"sampleIOfixed $ fmap (diagram . mconcat . fmap traceDiagram) $ replicateM 1000 $ getTrace program\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"3f330c7a-6dce-4781-ae1a-e60bfa6eb07c\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Displaying random walks\\n\",\n    \"\\n\",\n    \"Another nice use of `diagrams` is to produce a distribution over a random walk, and then convert it into a distribution over diagrams of random walks:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"id\": \"156c8dbb-2810-4ca9-beff-0a6bff04f8b3\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import qualified Control.Monad.Bayes.Sampler.Lazy as Lazy\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"id\": \"4191634c-9c6a-443a-a2b6-208ac45565de\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"kernel :: MonadDistribution m => V2 Double -> m (V2 Double)\\n\",\n    \"kernel (V2 x y) = do\\n\",\n    \"    newX <- normal x 0.01\\n\",\n    \"    newY <- normal y 0.01\\n\",\n    \"    return (V2 newX newY)\\n\",\n    \"\\n\",\n    \"randomWalk :: Distribution [V2 Double]\\n\",\n    \"randomWalk = unfoldrM (fmap (Just . (\\\\x -> (x,x))) . kernel) 0\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"id\": \"e686067d-0f1a-4ca2-b373-fbc96e0dafe2\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"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\",\n      \"image/svg+xml\": [\n       \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\\n\",\n       \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\" width=\\\"376.047429pt\\\" height=\\\"329.527436pt\\\" viewBox=\\\"0 0 376.047429 329.527436\\\" version=\\\"1.1\\\">\\n\",\n       \"<g id=\\\"surface26\\\">\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 359.683594 235.371094 C 359.683594 235.253906 359.589844 235.160156 359.472656 235.160156 C 359.355469 235.160156 359.261719 235.253906 359.261719 235.371094 C 359.261719 235.488281 359.355469 235.582031 359.472656 235.582031 C 359.589844 235.582031 359.683594 235.488281 359.683594 235.371094 Z M 359.683594 235.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 361.300781 233.492188 C 361.300781 233.375 361.207031 233.28125 361.089844 233.28125 C 360.972656 233.28125 360.878906 233.375 360.878906 233.492188 C 360.878906 233.609375 360.972656 233.703125 361.089844 233.703125 C 361.207031 233.703125 361.300781 233.609375 361.300781 233.492188 Z M 361.300781 233.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.988281 231.777344 C 358.988281 231.660156 358.894531 231.566406 358.777344 231.566406 C 358.660156 231.566406 358.566406 231.660156 358.566406 231.777344 C 358.566406 231.894531 358.660156 231.988281 358.777344 231.988281 C 358.894531 231.988281 358.988281 231.894531 358.988281 231.777344 Z M 358.988281 231.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.417969 228.089844 C 358.417969 227.972656 358.324219 227.878906 358.207031 227.878906 C 358.089844 227.878906 357.996094 227.972656 357.996094 228.089844 C 357.996094 228.207031 358.089844 228.300781 358.207031 228.300781 C 358.324219 228.300781 358.417969 228.207031 358.417969 228.089844 Z M 358.417969 228.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 357.550781 226.96875 C 357.550781 226.851562 357.457031 226.757812 357.339844 226.757812 C 357.222656 226.757812 357.128906 226.851562 357.128906 226.96875 C 357.128906 227.085938 357.222656 227.179688 357.339844 227.179688 C 357.457031 227.179688 357.550781 227.085938 357.550781 226.96875 Z M 357.550781 226.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 357.21875 225.585938 C 357.21875 225.46875 357.125 225.375 357.007812 225.375 C 356.890625 225.375 356.796875 225.46875 356.796875 225.585938 C 356.796875 225.703125 356.890625 225.796875 357.007812 225.796875 C 357.125 225.796875 357.21875 225.703125 357.21875 225.585938 Z M 357.21875 225.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.753906 227.183594 C 358.753906 227.066406 358.660156 226.972656 358.542969 226.972656 C 358.425781 226.972656 358.332031 227.066406 358.332031 227.183594 C 358.332031 227.300781 358.425781 227.394531 358.542969 227.394531 C 358.660156 227.394531 358.753906 227.300781 358.753906 227.183594 Z M 358.753906 227.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.335938 227.671875 C 358.335938 227.554688 358.242188 227.460938 358.125 227.460938 C 358.007812 227.460938 357.914062 227.554688 357.914062 227.671875 C 357.914062 227.789062 358.007812 227.882812 358.125 227.882812 C 358.242188 227.882812 358.335938 227.789062 358.335938 227.671875 Z M 358.335938 227.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 360.988281 222.855469 C 360.988281 222.738281 360.894531 222.644531 360.777344 222.644531 C 360.660156 222.644531 360.566406 222.738281 360.566406 222.855469 C 360.566406 222.972656 360.660156 223.066406 360.777344 223.066406 C 360.894531 223.066406 360.988281 222.972656 360.988281 222.855469 Z M 360.988281 222.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 359.03125 222.261719 C 359.03125 222.144531 358.9375 222.050781 358.820312 222.050781 C 358.703125 222.050781 358.609375 222.144531 358.609375 222.261719 C 358.609375 222.378906 358.703125 222.472656 358.820312 222.472656 C 358.9375 222.472656 359.03125 222.378906 359.03125 222.261719 Z M 359.03125 222.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.722656 220.792969 C 356.722656 220.675781 356.628906 220.582031 356.511719 220.582031 C 356.394531 220.582031 356.300781 220.675781 356.300781 220.792969 C 356.300781 220.910156 356.394531 221.003906 356.511719 221.003906 C 356.628906 221.003906 356.722656 220.910156 356.722656 220.792969 Z M 356.722656 220.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.703125 220.863281 C 355.703125 220.746094 355.609375 220.652344 355.492188 220.652344 C 355.375 220.652344 355.28125 220.746094 355.28125 220.863281 C 355.28125 220.980469 355.375 221.074219 355.492188 221.074219 C 355.609375 221.074219 355.703125 220.980469 355.703125 220.863281 Z M 355.703125 220.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.273438 220.578125 C 356.273438 220.460938 356.179688 220.367188 356.0625 220.367188 C 355.945312 220.367188 355.851562 220.460938 355.851562 220.578125 C 355.851562 220.695312 355.945312 220.789062 356.0625 220.789062 C 356.179688 220.789062 356.273438 220.695312 356.273438 220.578125 Z M 356.273438 220.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.292969 221.972656 C 355.292969 221.855469 355.199219 221.761719 355.082031 221.761719 C 354.964844 221.761719 354.871094 221.855469 354.871094 221.972656 C 354.871094 222.089844 354.964844 222.183594 355.082031 222.183594 C 355.199219 222.183594 355.292969 222.089844 355.292969 221.972656 Z M 355.292969 221.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.6875 222.199219 C 355.6875 222.082031 355.59375 221.988281 355.476562 221.988281 C 355.359375 221.988281 355.265625 222.082031 355.265625 222.199219 C 355.265625 222.316406 355.359375 222.410156 355.476562 222.410156 C 355.59375 222.410156 355.6875 222.316406 355.6875 222.199219 Z M 355.6875 222.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 357.347656 220.667969 C 357.347656 220.550781 357.253906 220.457031 357.136719 220.457031 C 357.019531 220.457031 356.925781 220.550781 356.925781 220.667969 C 356.925781 220.785156 357.019531 220.878906 357.136719 220.878906 C 357.253906 220.878906 357.347656 220.785156 357.347656 220.667969 Z M 357.347656 220.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.183594 216.238281 C 358.183594 216.121094 358.089844 216.027344 357.972656 216.027344 C 357.855469 216.027344 357.761719 216.121094 357.761719 216.238281 C 357.761719 216.355469 357.855469 216.449219 357.972656 216.449219 C 358.089844 216.449219 358.183594 216.355469 358.183594 216.238281 Z M 358.183594 216.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 360.117188 221.972656 C 360.117188 221.855469 360.023438 221.761719 359.90625 221.761719 C 359.789062 221.761719 359.695312 221.855469 359.695312 221.972656 C 359.695312 222.089844 359.789062 222.183594 359.90625 222.183594 C 360.023438 222.183594 360.117188 222.089844 360.117188 221.972656 Z M 360.117188 221.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 361.949219 220.757812 C 361.949219 220.640625 361.855469 220.546875 361.738281 220.546875 C 361.621094 220.546875 361.527344 220.640625 361.527344 220.757812 C 361.527344 220.875 361.621094 220.96875 361.738281 220.96875 C 361.855469 220.96875 361.949219 220.875 361.949219 220.757812 Z M 361.949219 220.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 363.246094 219.417969 C 363.246094 219.300781 363.152344 219.207031 363.035156 219.207031 C 362.917969 219.207031 362.824219 219.300781 362.824219 219.417969 C 362.824219 219.535156 362.917969 219.628906 363.035156 219.628906 C 363.152344 219.628906 363.246094 219.535156 363.246094 219.417969 Z M 363.246094 219.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 363.496094 216.277344 C 363.496094 216.160156 363.402344 216.066406 363.285156 216.066406 C 363.167969 216.066406 363.074219 216.160156 363.074219 216.277344 C 363.074219 216.394531 363.167969 216.488281 363.285156 216.488281 C 363.402344 216.488281 363.496094 216.394531 363.496094 216.277344 Z M 363.496094 216.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 364.601562 218.621094 C 364.601562 218.503906 364.507812 218.410156 364.390625 218.410156 C 364.273438 218.410156 364.179688 218.503906 364.179688 218.621094 C 364.179688 218.738281 364.273438 218.832031 364.390625 218.832031 C 364.507812 218.832031 364.601562 218.738281 364.601562 218.621094 Z M 364.601562 218.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 362.871094 216.03125 C 362.871094 215.914062 362.777344 215.820312 362.660156 215.820312 C 362.542969 215.820312 362.449219 215.914062 362.449219 216.03125 C 362.449219 216.148438 362.542969 216.242188 362.660156 216.242188 C 362.777344 216.242188 362.871094 216.148438 362.871094 216.03125 Z M 362.871094 216.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 364.609375 216.019531 C 364.609375 215.902344 364.515625 215.808594 364.398438 215.808594 C 364.28125 215.808594 364.1875 215.902344 364.1875 216.019531 C 364.1875 216.136719 364.28125 216.230469 364.398438 216.230469 C 364.515625 216.230469 364.609375 216.136719 364.609375 216.019531 Z M 364.609375 216.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 365.660156 217.554688 C 365.660156 217.4375 365.566406 217.34375 365.449219 217.34375 C 365.332031 217.34375 365.238281 217.4375 365.238281 217.554688 C 365.238281 217.671875 365.332031 217.765625 365.449219 217.765625 C 365.566406 217.765625 365.660156 217.671875 365.660156 217.554688 Z M 365.660156 217.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 369.996094 216.847656 C 369.996094 216.730469 369.902344 216.636719 369.785156 216.636719 C 369.667969 216.636719 369.574219 216.730469 369.574219 216.847656 C 369.574219 216.964844 369.667969 217.058594 369.785156 217.058594 C 369.902344 217.058594 369.996094 216.964844 369.996094 216.847656 Z M 369.996094 216.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 368.148438 218.871094 C 368.148438 218.753906 368.054688 218.660156 367.9375 218.660156 C 367.820312 218.660156 367.726562 218.753906 367.726562 218.871094 C 367.726562 218.988281 367.820312 219.082031 367.9375 219.082031 C 368.054688 219.082031 368.148438 218.988281 368.148438 218.871094 Z M 368.148438 218.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 365.652344 219.511719 C 365.652344 219.394531 365.558594 219.300781 365.441406 219.300781 C 365.324219 219.300781 365.230469 219.394531 365.230469 219.511719 C 365.230469 219.628906 365.324219 219.722656 365.441406 219.722656 C 365.558594 219.722656 365.652344 219.628906 365.652344 219.511719 Z M 365.652344 219.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 362.980469 220.820312 C 362.980469 220.703125 362.886719 220.609375 362.769531 220.609375 C 362.652344 220.609375 362.558594 220.703125 362.558594 220.820312 C 362.558594 220.9375 362.652344 221.03125 362.769531 221.03125 C 362.886719 221.03125 362.980469 220.9375 362.980469 220.820312 Z M 362.980469 220.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 361.554688 223.8125 C 361.554688 223.695312 361.460938 223.601562 361.34375 223.601562 C 361.226562 223.601562 361.132812 223.695312 361.132812 223.8125 C 361.132812 223.929688 361.226562 224.023438 361.34375 224.023438 C 361.460938 224.023438 361.554688 223.929688 361.554688 223.8125 Z M 361.554688 223.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 359.078125 222.785156 C 359.078125 222.667969 358.984375 222.574219 358.867188 222.574219 C 358.75 222.574219 358.65625 222.667969 358.65625 222.785156 C 358.65625 222.902344 358.75 222.996094 358.867188 222.996094 C 358.984375 222.996094 359.078125 222.902344 359.078125 222.785156 Z M 359.078125 222.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.886719 223.617188 C 358.886719 223.5 358.792969 223.40625 358.675781 223.40625 C 358.558594 223.40625 358.464844 223.5 358.464844 223.617188 C 358.464844 223.734375 358.558594 223.828125 358.675781 223.828125 C 358.792969 223.828125 358.886719 223.734375 358.886719 223.617188 Z M 358.886719 223.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 360.570312 225.613281 C 360.570312 225.496094 360.476562 225.402344 360.359375 225.402344 C 360.242188 225.402344 360.148438 225.496094 360.148438 225.613281 C 360.148438 225.730469 360.242188 225.824219 360.359375 225.824219 C 360.476562 225.824219 360.570312 225.730469 360.570312 225.613281 Z M 360.570312 225.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.421875 221.742188 C 358.421875 221.625 358.328125 221.53125 358.210938 221.53125 C 358.09375 221.53125 358 221.625 358 221.742188 C 358 221.859375 358.09375 221.953125 358.210938 221.953125 C 358.328125 221.953125 358.421875 221.859375 358.421875 221.742188 Z M 358.421875 221.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 360.839844 221.914062 C 360.839844 221.796875 360.746094 221.703125 360.628906 221.703125 C 360.511719 221.703125 360.417969 221.796875 360.417969 221.914062 C 360.417969 222.03125 360.511719 222.125 360.628906 222.125 C 360.746094 222.125 360.839844 222.03125 360.839844 221.914062 Z M 360.839844 221.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 361.160156 225.070312 C 361.160156 224.953125 361.066406 224.859375 360.949219 224.859375 C 360.832031 224.859375 360.738281 224.953125 360.738281 225.070312 C 360.738281 225.1875 360.832031 225.28125 360.949219 225.28125 C 361.066406 225.28125 361.160156 225.1875 361.160156 225.070312 Z M 361.160156 225.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 360.027344 225.15625 C 360.027344 225.039062 359.933594 224.945312 359.816406 224.945312 C 359.699219 224.945312 359.605469 225.039062 359.605469 225.15625 C 359.605469 225.273438 359.699219 225.367188 359.816406 225.367188 C 359.933594 225.367188 360.027344 225.273438 360.027344 225.15625 Z M 360.027344 225.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 357.671875 222.691406 C 357.671875 222.574219 357.578125 222.480469 357.460938 222.480469 C 357.34375 222.480469 357.25 222.574219 357.25 222.691406 C 357.25 222.808594 357.34375 222.902344 357.460938 222.902344 C 357.578125 222.902344 357.671875 222.808594 357.671875 222.691406 Z M 357.671875 222.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.234375 224.574219 C 356.234375 224.457031 356.140625 224.363281 356.023438 224.363281 C 355.90625 224.363281 355.8125 224.457031 355.8125 224.574219 C 355.8125 224.691406 355.90625 224.785156 356.023438 224.785156 C 356.140625 224.785156 356.234375 224.691406 356.234375 224.574219 Z M 356.234375 224.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.488281 219.855469 C 355.488281 219.738281 355.394531 219.644531 355.277344 219.644531 C 355.160156 219.644531 355.066406 219.738281 355.066406 219.855469 C 355.066406 219.972656 355.160156 220.066406 355.277344 220.066406 C 355.394531 220.066406 355.488281 219.972656 355.488281 219.855469 Z M 355.488281 219.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.191406 221.984375 C 356.191406 221.867188 356.097656 221.773438 355.980469 221.773438 C 355.863281 221.773438 355.769531 221.867188 355.769531 221.984375 C 355.769531 222.101562 355.863281 222.195312 355.980469 222.195312 C 356.097656 222.195312 356.191406 222.101562 356.191406 221.984375 Z M 356.191406 221.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 357.84375 218.96875 C 357.84375 218.851562 357.75 218.757812 357.632812 218.757812 C 357.515625 218.757812 357.421875 218.851562 357.421875 218.96875 C 357.421875 219.085938 357.515625 219.179688 357.632812 219.179688 C 357.75 219.179688 357.84375 219.085938 357.84375 218.96875 Z M 357.84375 218.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.515625 214.460938 C 358.515625 214.34375 358.421875 214.25 358.304688 214.25 C 358.1875 214.25 358.09375 214.34375 358.09375 214.460938 C 358.09375 214.578125 358.1875 214.671875 358.304688 214.671875 C 358.421875 214.671875 358.515625 214.578125 358.515625 214.460938 Z M 358.515625 214.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 359.238281 214.574219 C 359.238281 214.457031 359.144531 214.363281 359.027344 214.363281 C 358.910156 214.363281 358.816406 214.457031 358.816406 214.574219 C 358.816406 214.691406 358.910156 214.785156 359.027344 214.785156 C 359.144531 214.785156 359.238281 214.691406 359.238281 214.574219 Z M 359.238281 214.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 359.496094 214.601562 C 359.496094 214.484375 359.402344 214.390625 359.285156 214.390625 C 359.167969 214.390625 359.074219 214.484375 359.074219 214.601562 C 359.074219 214.71875 359.167969 214.8125 359.285156 214.8125 C 359.402344 214.8125 359.496094 214.71875 359.496094 214.601562 Z M 359.496094 214.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.632812 216.128906 C 356.632812 216.011719 356.539062 215.917969 356.421875 215.917969 C 356.304688 215.917969 356.210938 216.011719 356.210938 216.128906 C 356.210938 216.246094 356.304688 216.339844 356.421875 216.339844 C 356.539062 216.339844 356.632812 216.246094 356.632812 216.128906 Z M 356.632812 216.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 359.160156 214.261719 C 359.160156 214.144531 359.066406 214.050781 358.949219 214.050781 C 358.832031 214.050781 358.738281 214.144531 358.738281 214.261719 C 358.738281 214.378906 358.832031 214.472656 358.949219 214.472656 C 359.066406 214.472656 359.160156 214.378906 359.160156 214.261719 Z M 359.160156 214.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.28125 214.085938 C 358.28125 213.96875 358.1875 213.875 358.070312 213.875 C 357.953125 213.875 357.859375 213.96875 357.859375 214.085938 C 357.859375 214.203125 357.953125 214.296875 358.070312 214.296875 C 358.1875 214.296875 358.28125 214.203125 358.28125 214.085938 Z M 358.28125 214.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 360.894531 215.984375 C 360.894531 215.867188 360.800781 215.773438 360.683594 215.773438 C 360.566406 215.773438 360.472656 215.867188 360.472656 215.984375 C 360.472656 216.101562 360.566406 216.195312 360.683594 216.195312 C 360.800781 216.195312 360.894531 216.101562 360.894531 215.984375 Z M 360.894531 215.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 361.679688 222.417969 C 361.679688 222.300781 361.585938 222.207031 361.46875 222.207031 C 361.351562 222.207031 361.257812 222.300781 361.257812 222.417969 C 361.257812 222.535156 361.351562 222.628906 361.46875 222.628906 C 361.585938 222.628906 361.679688 222.535156 361.679688 222.417969 Z M 361.679688 222.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 361.5625 224.515625 C 361.5625 224.398438 361.46875 224.304688 361.351562 224.304688 C 361.234375 224.304688 361.140625 224.398438 361.140625 224.515625 C 361.140625 224.632812 361.234375 224.726562 361.351562 224.726562 C 361.46875 224.726562 361.5625 224.632812 361.5625 224.515625 Z M 361.5625 224.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 359.15625 222.320312 C 359.15625 222.203125 359.0625 222.109375 358.945312 222.109375 C 358.828125 222.109375 358.734375 222.203125 358.734375 222.320312 C 358.734375 222.4375 358.828125 222.53125 358.945312 222.53125 C 359.0625 222.53125 359.15625 222.4375 359.15625 222.320312 Z M 359.15625 222.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 359.691406 224.179688 C 359.691406 224.0625 359.597656 223.96875 359.480469 223.96875 C 359.363281 223.96875 359.269531 224.0625 359.269531 224.179688 C 359.269531 224.296875 359.363281 224.390625 359.480469 224.390625 C 359.597656 224.390625 359.691406 224.296875 359.691406 224.179688 Z M 359.691406 224.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 361.464844 223.960938 C 361.464844 223.84375 361.371094 223.75 361.253906 223.75 C 361.136719 223.75 361.042969 223.84375 361.042969 223.960938 C 361.042969 224.078125 361.136719 224.171875 361.253906 224.171875 C 361.371094 224.171875 361.464844 224.078125 361.464844 223.960938 Z M 361.464844 223.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 361.769531 222.011719 C 361.769531 221.894531 361.675781 221.800781 361.558594 221.800781 C 361.441406 221.800781 361.347656 221.894531 361.347656 222.011719 C 361.347656 222.128906 361.441406 222.222656 361.558594 222.222656 C 361.675781 222.222656 361.769531 222.128906 361.769531 222.011719 Z M 361.769531 222.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 359.125 225.125 C 359.125 225.007812 359.03125 224.914062 358.914062 224.914062 C 358.796875 224.914062 358.703125 225.007812 358.703125 225.125 C 358.703125 225.242188 358.796875 225.335938 358.914062 225.335938 C 359.03125 225.335938 359.125 225.242188 359.125 225.125 Z M 359.125 225.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.246094 225.214844 C 358.246094 225.097656 358.152344 225.003906 358.035156 225.003906 C 357.917969 225.003906 357.824219 225.097656 357.824219 225.214844 C 357.824219 225.332031 357.917969 225.425781 358.035156 225.425781 C 358.152344 225.425781 358.246094 225.332031 358.246094 225.214844 Z M 358.246094 225.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.636719 224.714844 C 356.636719 224.597656 356.542969 224.503906 356.425781 224.503906 C 356.308594 224.503906 356.214844 224.597656 356.214844 224.714844 C 356.214844 224.832031 356.308594 224.925781 356.425781 224.925781 C 356.542969 224.925781 356.636719 224.832031 356.636719 224.714844 Z M 356.636719 224.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 357.136719 223.125 C 357.136719 223.007812 357.042969 222.914062 356.925781 222.914062 C 356.808594 222.914062 356.714844 223.007812 356.714844 223.125 C 356.714844 223.242188 356.808594 223.335938 356.925781 223.335938 C 357.042969 223.335938 357.136719 223.242188 357.136719 223.125 Z M 357.136719 223.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.050781 224.867188 C 358.050781 224.75 357.957031 224.65625 357.839844 224.65625 C 357.722656 224.65625 357.628906 224.75 357.628906 224.867188 C 357.628906 224.984375 357.722656 225.078125 357.839844 225.078125 C 357.957031 225.078125 358.050781 224.984375 358.050781 224.867188 Z M 358.050781 224.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 360.308594 224.617188 C 360.308594 224.5 360.214844 224.40625 360.097656 224.40625 C 359.980469 224.40625 359.886719 224.5 359.886719 224.617188 C 359.886719 224.734375 359.980469 224.828125 360.097656 224.828125 C 360.214844 224.828125 360.308594 224.734375 360.308594 224.617188 Z M 360.308594 224.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 360.582031 228.582031 C 360.582031 228.464844 360.488281 228.371094 360.371094 228.371094 C 360.253906 228.371094 360.160156 228.464844 360.160156 228.582031 C 360.160156 228.699219 360.253906 228.792969 360.371094 228.792969 C 360.488281 228.792969 360.582031 228.699219 360.582031 228.582031 Z M 360.582031 228.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 357.132812 228.480469 C 357.132812 228.363281 357.039062 228.269531 356.921875 228.269531 C 356.804688 228.269531 356.710938 228.363281 356.710938 228.480469 C 356.710938 228.597656 356.804688 228.691406 356.921875 228.691406 C 357.039062 228.691406 357.132812 228.597656 357.132812 228.480469 Z M 357.132812 228.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.851562 229.925781 C 354.851562 229.808594 354.757812 229.714844 354.640625 229.714844 C 354.523438 229.714844 354.429688 229.808594 354.429688 229.925781 C 354.429688 230.042969 354.523438 230.136719 354.640625 230.136719 C 354.757812 230.136719 354.851562 230.042969 354.851562 229.925781 Z M 354.851562 229.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.234375 232.808594 C 354.234375 232.691406 354.140625 232.597656 354.023438 232.597656 C 353.90625 232.597656 353.8125 232.691406 353.8125 232.808594 C 353.8125 232.925781 353.90625 233.019531 354.023438 233.019531 C 354.140625 233.019531 354.234375 232.925781 354.234375 232.808594 Z M 354.234375 232.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.515625 235.511719 C 355.515625 235.394531 355.421875 235.300781 355.304688 235.300781 C 355.1875 235.300781 355.09375 235.394531 355.09375 235.511719 C 355.09375 235.628906 355.1875 235.722656 355.304688 235.722656 C 355.421875 235.722656 355.515625 235.628906 355.515625 235.511719 Z M 355.515625 235.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.34375 236.074219 C 353.34375 235.957031 353.25 235.863281 353.132812 235.863281 C 353.015625 235.863281 352.921875 235.957031 352.921875 236.074219 C 352.921875 236.191406 353.015625 236.285156 353.132812 236.285156 C 353.25 236.285156 353.34375 236.191406 353.34375 236.074219 Z M 353.34375 236.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.238281 233.269531 C 351.238281 233.152344 351.144531 233.058594 351.027344 233.058594 C 350.910156 233.058594 350.816406 233.152344 350.816406 233.269531 C 350.816406 233.386719 350.910156 233.480469 351.027344 233.480469 C 351.144531 233.480469 351.238281 233.386719 351.238281 233.269531 Z M 351.238281 233.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 350.367188 230.75 C 350.367188 230.632812 350.273438 230.539062 350.15625 230.539062 C 350.039062 230.539062 349.945312 230.632812 349.945312 230.75 C 349.945312 230.867188 350.039062 230.960938 350.15625 230.960938 C 350.273438 230.960938 350.367188 230.867188 350.367188 230.75 Z M 350.367188 230.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 349.601562 232.097656 C 349.601562 231.980469 349.507812 231.886719 349.390625 231.886719 C 349.273438 231.886719 349.179688 231.980469 349.179688 232.097656 C 349.179688 232.214844 349.273438 232.308594 349.390625 232.308594 C 349.507812 232.308594 349.601562 232.214844 349.601562 232.097656 Z M 349.601562 232.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 348.824219 231.277344 C 348.824219 231.160156 348.730469 231.066406 348.613281 231.066406 C 348.496094 231.066406 348.402344 231.160156 348.402344 231.277344 C 348.402344 231.394531 348.496094 231.488281 348.613281 231.488281 C 348.730469 231.488281 348.824219 231.394531 348.824219 231.277344 Z M 348.824219 231.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 343.738281 228.207031 C 343.738281 228.089844 343.644531 227.996094 343.527344 227.996094 C 343.410156 227.996094 343.316406 228.089844 343.316406 228.207031 C 343.316406 228.324219 343.410156 228.417969 343.527344 228.417969 C 343.644531 228.417969 343.738281 228.324219 343.738281 228.207031 Z M 343.738281 228.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 348.066406 227.675781 C 348.066406 227.558594 347.972656 227.464844 347.855469 227.464844 C 347.738281 227.464844 347.644531 227.558594 347.644531 227.675781 C 347.644531 227.792969 347.738281 227.886719 347.855469 227.886719 C 347.972656 227.886719 348.066406 227.792969 348.066406 227.675781 Z M 348.066406 227.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 349.597656 225.703125 C 349.597656 225.585938 349.503906 225.492188 349.386719 225.492188 C 349.269531 225.492188 349.175781 225.585938 349.175781 225.703125 C 349.175781 225.820312 349.269531 225.914062 349.386719 225.914062 C 349.503906 225.914062 349.597656 225.820312 349.597656 225.703125 Z M 349.597656 225.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.523438 225.398438 C 351.523438 225.28125 351.429688 225.1875 351.3125 225.1875 C 351.195312 225.1875 351.101562 225.28125 351.101562 225.398438 C 351.101562 225.515625 351.195312 225.609375 351.3125 225.609375 C 351.429688 225.609375 351.523438 225.515625 351.523438 225.398438 Z M 351.523438 225.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.96875 224.894531 C 355.96875 224.777344 355.875 224.683594 355.757812 224.683594 C 355.640625 224.683594 355.546875 224.777344 355.546875 224.894531 C 355.546875 225.011719 355.640625 225.105469 355.757812 225.105469 C 355.875 225.105469 355.96875 225.011719 355.96875 224.894531 Z M 355.96875 224.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.183594 225.125 C 354.183594 225.007812 354.089844 224.914062 353.972656 224.914062 C 353.855469 224.914062 353.761719 225.007812 353.761719 225.125 C 353.761719 225.242188 353.855469 225.335938 353.972656 225.335938 C 354.089844 225.335938 354.183594 225.242188 354.183594 225.125 Z M 354.183594 225.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 352.433594 223.472656 C 352.433594 223.355469 352.339844 223.261719 352.222656 223.261719 C 352.105469 223.261719 352.011719 223.355469 352.011719 223.472656 C 352.011719 223.589844 352.105469 223.683594 352.222656 223.683594 C 352.339844 223.683594 352.433594 223.589844 352.433594 223.472656 Z M 352.433594 223.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.121094 227.460938 C 354.121094 227.34375 354.027344 227.25 353.910156 227.25 C 353.792969 227.25 353.699219 227.34375 353.699219 227.460938 C 353.699219 227.578125 353.792969 227.671875 353.910156 227.671875 C 354.027344 227.671875 354.121094 227.578125 354.121094 227.460938 Z M 354.121094 227.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.523438 227.363281 C 353.523438 227.246094 353.429688 227.152344 353.3125 227.152344 C 353.195312 227.152344 353.101562 227.246094 353.101562 227.363281 C 353.101562 227.480469 353.195312 227.574219 353.3125 227.574219 C 353.429688 227.574219 353.523438 227.480469 353.523438 227.363281 Z M 353.523438 227.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.988281 225.882812 C 353.988281 225.765625 353.894531 225.671875 353.777344 225.671875 C 353.660156 225.671875 353.566406 225.765625 353.566406 225.882812 C 353.566406 226 353.660156 226.09375 353.777344 226.09375 C 353.894531 226.09375 353.988281 226 353.988281 225.882812 Z M 353.988281 225.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 357.410156 229.027344 C 357.410156 228.910156 357.316406 228.816406 357.199219 228.816406 C 357.082031 228.816406 356.988281 228.910156 356.988281 229.027344 C 356.988281 229.144531 357.082031 229.238281 357.199219 229.238281 C 357.316406 229.238281 357.410156 229.144531 357.410156 229.027344 Z M 357.410156 229.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.90625 231.667969 C 356.90625 231.550781 356.8125 231.457031 356.695312 231.457031 C 356.578125 231.457031 356.484375 231.550781 356.484375 231.667969 C 356.484375 231.785156 356.578125 231.878906 356.695312 231.878906 C 356.8125 231.878906 356.90625 231.785156 356.90625 231.667969 Z M 356.90625 231.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.824219 232.941406 C 358.824219 232.824219 358.730469 232.730469 358.613281 232.730469 C 358.496094 232.730469 358.402344 232.824219 358.402344 232.941406 C 358.402344 233.058594 358.496094 233.152344 358.613281 233.152344 C 358.730469 233.152344 358.824219 233.058594 358.824219 232.941406 Z M 358.824219 232.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.292969 226.214844 C 358.292969 226.097656 358.199219 226.003906 358.082031 226.003906 C 357.964844 226.003906 357.871094 226.097656 357.871094 226.214844 C 357.871094 226.332031 357.964844 226.425781 358.082031 226.425781 C 358.199219 226.425781 358.292969 226.332031 358.292969 226.214844 Z M 358.292969 226.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.480469 226.355469 C 354.480469 226.238281 354.386719 226.144531 354.269531 226.144531 C 354.152344 226.144531 354.058594 226.238281 354.058594 226.355469 C 354.058594 226.472656 354.152344 226.566406 354.269531 226.566406 C 354.386719 226.566406 354.480469 226.472656 354.480469 226.355469 Z M 354.480469 226.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 352.316406 227.890625 C 352.316406 227.773438 352.222656 227.679688 352.105469 227.679688 C 351.988281 227.679688 351.894531 227.773438 351.894531 227.890625 C 351.894531 228.007812 351.988281 228.101562 352.105469 228.101562 C 352.222656 228.101562 352.316406 228.007812 352.316406 227.890625 Z M 352.316406 227.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.792969 225.65625 C 353.792969 225.539062 353.699219 225.445312 353.582031 225.445312 C 353.464844 225.445312 353.371094 225.539062 353.371094 225.65625 C 353.371094 225.773438 353.464844 225.867188 353.582031 225.867188 C 353.699219 225.867188 353.792969 225.773438 353.792969 225.65625 Z M 353.792969 225.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 352.109375 222.175781 C 352.109375 222.058594 352.015625 221.964844 351.898438 221.964844 C 351.78125 221.964844 351.6875 222.058594 351.6875 222.175781 C 351.6875 222.292969 351.78125 222.386719 351.898438 222.386719 C 352.015625 222.386719 352.109375 222.292969 352.109375 222.175781 Z M 352.109375 222.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.128906 220.804688 C 351.128906 220.6875 351.035156 220.59375 350.917969 220.59375 C 350.800781 220.59375 350.707031 220.6875 350.707031 220.804688 C 350.707031 220.921875 350.800781 221.015625 350.917969 221.015625 C 351.035156 221.015625 351.128906 220.921875 351.128906 220.804688 Z M 351.128906 220.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 350.808594 221.171875 C 350.808594 221.054688 350.714844 220.960938 350.597656 220.960938 C 350.480469 220.960938 350.386719 221.054688 350.386719 221.171875 C 350.386719 221.289062 350.480469 221.382812 350.597656 221.382812 C 350.714844 221.382812 350.808594 221.289062 350.808594 221.171875 Z M 350.808594 221.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.105469 221.015625 C 354.105469 220.898438 354.011719 220.804688 353.894531 220.804688 C 353.777344 220.804688 353.683594 220.898438 353.683594 221.015625 C 353.683594 221.132812 353.777344 221.226562 353.894531 221.226562 C 354.011719 221.226562 354.105469 221.132812 354.105469 221.015625 Z M 354.105469 221.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.148438 225.382812 C 355.148438 225.265625 355.054688 225.171875 354.9375 225.171875 C 354.820312 225.171875 354.726562 225.265625 354.726562 225.382812 C 354.726562 225.5 354.820312 225.59375 354.9375 225.59375 C 355.054688 225.59375 355.148438 225.5 355.148438 225.382812 Z M 355.148438 225.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 350.480469 226.097656 C 350.480469 225.980469 350.386719 225.886719 350.269531 225.886719 C 350.152344 225.886719 350.058594 225.980469 350.058594 226.097656 C 350.058594 226.214844 350.152344 226.308594 350.269531 226.308594 C 350.386719 226.308594 350.480469 226.214844 350.480469 226.097656 Z M 350.480469 226.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 350.75 224.132812 C 350.75 224.015625 350.65625 223.921875 350.539062 223.921875 C 350.421875 223.921875 350.328125 224.015625 350.328125 224.132812 C 350.328125 224.25 350.421875 224.34375 350.539062 224.34375 C 350.65625 224.34375 350.75 224.25 350.75 224.132812 Z M 350.75 224.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 349.945312 222.488281 C 349.945312 222.371094 349.851562 222.277344 349.734375 222.277344 C 349.617188 222.277344 349.523438 222.371094 349.523438 222.488281 C 349.523438 222.605469 349.617188 222.699219 349.734375 222.699219 C 349.851562 222.699219 349.945312 222.605469 349.945312 222.488281 Z M 349.945312 222.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.535156 221.152344 C 351.535156 221.035156 351.441406 220.941406 351.324219 220.941406 C 351.207031 220.941406 351.113281 221.035156 351.113281 221.152344 C 351.113281 221.269531 351.207031 221.363281 351.324219 221.363281 C 351.441406 221.363281 351.535156 221.269531 351.535156 221.152344 Z M 351.535156 221.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.113281 219.554688 C 353.113281 219.4375 353.019531 219.34375 352.902344 219.34375 C 352.785156 219.34375 352.691406 219.4375 352.691406 219.554688 C 352.691406 219.671875 352.785156 219.765625 352.902344 219.765625 C 353.019531 219.765625 353.113281 219.671875 353.113281 219.554688 Z M 353.113281 219.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.265625 218.652344 C 351.265625 218.535156 351.171875 218.441406 351.054688 218.441406 C 350.9375 218.441406 350.84375 218.535156 350.84375 218.652344 C 350.84375 218.769531 350.9375 218.863281 351.054688 218.863281 C 351.171875 218.863281 351.265625 218.769531 351.265625 218.652344 Z M 351.265625 218.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.734375 220.289062 C 355.734375 220.171875 355.640625 220.078125 355.523438 220.078125 C 355.40625 220.078125 355.3125 220.171875 355.3125 220.289062 C 355.3125 220.40625 355.40625 220.5 355.523438 220.5 C 355.640625 220.5 355.734375 220.40625 355.734375 220.289062 Z M 355.734375 220.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 357.40625 225.308594 C 357.40625 225.191406 357.3125 225.097656 357.195312 225.097656 C 357.078125 225.097656 356.984375 225.191406 356.984375 225.308594 C 356.984375 225.425781 357.078125 225.519531 357.195312 225.519531 C 357.3125 225.519531 357.40625 225.425781 357.40625 225.308594 Z M 357.40625 225.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.476562 227.914062 C 354.476562 227.796875 354.382812 227.703125 354.265625 227.703125 C 354.148438 227.703125 354.054688 227.796875 354.054688 227.914062 C 354.054688 228.03125 354.148438 228.125 354.265625 228.125 C 354.382812 228.125 354.476562 228.03125 354.476562 227.914062 Z M 354.476562 227.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 352.648438 229.066406 C 352.648438 228.949219 352.554688 228.855469 352.4375 228.855469 C 352.320312 228.855469 352.226562 228.949219 352.226562 229.066406 C 352.226562 229.183594 352.320312 229.277344 352.4375 229.277344 C 352.554688 229.277344 352.648438 229.183594 352.648438 229.066406 Z M 352.648438 229.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 348.632812 227.621094 C 348.632812 227.503906 348.539062 227.410156 348.421875 227.410156 C 348.304688 227.410156 348.210938 227.503906 348.210938 227.621094 C 348.210938 227.738281 348.304688 227.832031 348.421875 227.832031 C 348.539062 227.832031 348.632812 227.738281 348.632812 227.621094 Z M 348.632812 227.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 347.9375 225.777344 C 347.9375 225.660156 347.84375 225.566406 347.726562 225.566406 C 347.609375 225.566406 347.515625 225.660156 347.515625 225.777344 C 347.515625 225.894531 347.609375 225.988281 347.726562 225.988281 C 347.84375 225.988281 347.9375 225.894531 347.9375 225.777344 Z M 347.9375 225.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 349.617188 222.519531 C 349.617188 222.402344 349.523438 222.308594 349.40625 222.308594 C 349.289062 222.308594 349.195312 222.402344 349.195312 222.519531 C 349.195312 222.636719 349.289062 222.730469 349.40625 222.730469 C 349.523438 222.730469 349.617188 222.636719 349.617188 222.519531 Z M 349.617188 222.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 346.25 222.996094 C 346.25 222.878906 346.15625 222.785156 346.039062 222.785156 C 345.921875 222.785156 345.828125 222.878906 345.828125 222.996094 C 345.828125 223.113281 345.921875 223.207031 346.039062 223.207031 C 346.15625 223.207031 346.25 223.113281 346.25 222.996094 Z M 346.25 222.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 349.050781 226.125 C 349.050781 226.007812 348.957031 225.914062 348.839844 225.914062 C 348.722656 225.914062 348.628906 226.007812 348.628906 226.125 C 348.628906 226.242188 348.722656 226.335938 348.839844 226.335938 C 348.957031 226.335938 349.050781 226.242188 349.050781 226.125 Z M 349.050781 226.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 347.21875 227.253906 C 347.21875 227.136719 347.125 227.042969 347.007812 227.042969 C 346.890625 227.042969 346.796875 227.136719 346.796875 227.253906 C 346.796875 227.371094 346.890625 227.464844 347.007812 227.464844 C 347.125 227.464844 347.21875 227.371094 347.21875 227.253906 Z M 347.21875 227.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 348.726562 225.050781 C 348.726562 224.933594 348.632812 224.839844 348.515625 224.839844 C 348.398438 224.839844 348.304688 224.933594 348.304688 225.050781 C 348.304688 225.167969 348.398438 225.261719 348.515625 225.261719 C 348.632812 225.261719 348.726562 225.167969 348.726562 225.050781 Z M 348.726562 225.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 347.328125 222.671875 C 347.328125 222.554688 347.234375 222.460938 347.117188 222.460938 C 347 222.460938 346.90625 222.554688 346.90625 222.671875 C 346.90625 222.789062 347 222.882812 347.117188 222.882812 C 347.234375 222.882812 347.328125 222.789062 347.328125 222.671875 Z M 347.328125 222.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 348.128906 225.578125 C 348.128906 225.460938 348.035156 225.367188 347.917969 225.367188 C 347.800781 225.367188 347.707031 225.460938 347.707031 225.578125 C 347.707031 225.695312 347.800781 225.789062 347.917969 225.789062 C 348.035156 225.789062 348.128906 225.695312 348.128906 225.578125 Z M 348.128906 225.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 349.871094 226.117188 C 349.871094 226 349.777344 225.90625 349.660156 225.90625 C 349.542969 225.90625 349.449219 226 349.449219 226.117188 C 349.449219 226.234375 349.542969 226.328125 349.660156 226.328125 C 349.777344 226.328125 349.871094 226.234375 349.871094 226.117188 Z M 349.871094 226.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 352.136719 228.132812 C 352.136719 228.015625 352.042969 227.921875 351.925781 227.921875 C 351.808594 227.921875 351.714844 228.015625 351.714844 228.132812 C 351.714844 228.25 351.808594 228.34375 351.925781 228.34375 C 352.042969 228.34375 352.136719 228.25 352.136719 228.132812 Z M 352.136719 228.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.976562 228.171875 C 353.976562 228.054688 353.882812 227.960938 353.765625 227.960938 C 353.648438 227.960938 353.554688 228.054688 353.554688 228.171875 C 353.554688 228.289062 353.648438 228.382812 353.765625 228.382812 C 353.882812 228.382812 353.976562 228.289062 353.976562 228.171875 Z M 353.976562 228.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.277344 226.964844 C 354.277344 226.847656 354.183594 226.753906 354.066406 226.753906 C 353.949219 226.753906 353.855469 226.847656 353.855469 226.964844 C 353.855469 227.082031 353.949219 227.175781 354.066406 227.175781 C 354.183594 227.175781 354.277344 227.082031 354.277344 226.964844 Z M 354.277344 226.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.625 230.125 C 354.625 230.007812 354.53125 229.914062 354.414062 229.914062 C 354.296875 229.914062 354.203125 230.007812 354.203125 230.125 C 354.203125 230.242188 354.296875 230.335938 354.414062 230.335938 C 354.53125 230.335938 354.625 230.242188 354.625 230.125 Z M 354.625 230.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.722656 230.597656 C 355.722656 230.480469 355.628906 230.386719 355.511719 230.386719 C 355.394531 230.386719 355.300781 230.480469 355.300781 230.597656 C 355.300781 230.714844 355.394531 230.808594 355.511719 230.808594 C 355.628906 230.808594 355.722656 230.714844 355.722656 230.597656 Z M 355.722656 230.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.171875 228.882812 C 358.171875 228.765625 358.078125 228.671875 357.960938 228.671875 C 357.84375 228.671875 357.75 228.765625 357.75 228.882812 C 357.75 229 357.84375 229.09375 357.960938 229.09375 C 358.078125 229.09375 358.171875 229 358.171875 228.882812 Z M 358.171875 228.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 357.359375 230.507812 C 357.359375 230.390625 357.265625 230.296875 357.148438 230.296875 C 357.03125 230.296875 356.9375 230.390625 356.9375 230.507812 C 356.9375 230.625 357.03125 230.71875 357.148438 230.71875 C 357.265625 230.71875 357.359375 230.625 357.359375 230.507812 Z M 357.359375 230.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 361.957031 228.039062 C 361.957031 227.921875 361.863281 227.828125 361.746094 227.828125 C 361.628906 227.828125 361.535156 227.921875 361.535156 228.039062 C 361.535156 228.15625 361.628906 228.25 361.746094 228.25 C 361.863281 228.25 361.957031 228.15625 361.957031 228.039062 Z M 361.957031 228.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 363.386719 229.941406 C 363.386719 229.824219 363.292969 229.730469 363.175781 229.730469 C 363.058594 229.730469 362.964844 229.824219 362.964844 229.941406 C 362.964844 230.058594 363.058594 230.152344 363.175781 230.152344 C 363.292969 230.152344 363.386719 230.058594 363.386719 229.941406 Z M 363.386719 229.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 361.035156 229.59375 C 361.035156 229.476562 360.941406 229.382812 360.824219 229.382812 C 360.707031 229.382812 360.613281 229.476562 360.613281 229.59375 C 360.613281 229.710938 360.707031 229.804688 360.824219 229.804688 C 360.941406 229.804688 361.035156 229.710938 361.035156 229.59375 Z M 361.035156 229.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 357.589844 230.898438 C 357.589844 230.78125 357.496094 230.6875 357.378906 230.6875 C 357.261719 230.6875 357.167969 230.78125 357.167969 230.898438 C 357.167969 231.015625 357.261719 231.109375 357.378906 231.109375 C 357.496094 231.109375 357.589844 231.015625 357.589844 230.898438 Z M 357.589844 230.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.328125 232.917969 C 356.328125 232.800781 356.234375 232.707031 356.117188 232.707031 C 356 232.707031 355.90625 232.800781 355.90625 232.917969 C 355.90625 233.035156 356 233.128906 356.117188 233.128906 C 356.234375 233.128906 356.328125 233.035156 356.328125 232.917969 Z M 356.328125 232.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.035156 232.902344 C 355.035156 232.785156 354.941406 232.691406 354.824219 232.691406 C 354.707031 232.691406 354.613281 232.785156 354.613281 232.902344 C 354.613281 233.019531 354.707031 233.113281 354.824219 233.113281 C 354.941406 233.113281 355.035156 233.019531 355.035156 232.902344 Z M 355.035156 232.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.113281 234.921875 C 355.113281 234.804688 355.019531 234.710938 354.902344 234.710938 C 354.785156 234.710938 354.691406 234.804688 354.691406 234.921875 C 354.691406 235.039062 354.785156 235.132812 354.902344 235.132812 C 355.019531 235.132812 355.113281 235.039062 355.113281 234.921875 Z M 355.113281 234.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.796875 233.726562 C 354.796875 233.609375 354.703125 233.515625 354.585938 233.515625 C 354.46875 233.515625 354.375 233.609375 354.375 233.726562 C 354.375 233.84375 354.46875 233.9375 354.585938 233.9375 C 354.703125 233.9375 354.796875 233.84375 354.796875 233.726562 Z M 354.796875 233.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.75 235.042969 C 353.75 234.925781 353.65625 234.832031 353.539062 234.832031 C 353.421875 234.832031 353.328125 234.925781 353.328125 235.042969 C 353.328125 235.160156 353.421875 235.253906 353.539062 235.253906 C 353.65625 235.253906 353.75 235.160156 353.75 235.042969 Z M 353.75 235.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.769531 238.277344 C 354.769531 238.160156 354.675781 238.066406 354.558594 238.066406 C 354.441406 238.066406 354.347656 238.160156 354.347656 238.277344 C 354.347656 238.394531 354.441406 238.488281 354.558594 238.488281 C 354.675781 238.488281 354.769531 238.394531 354.769531 238.277344 Z M 354.769531 238.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.253906 238.726562 C 355.253906 238.609375 355.160156 238.515625 355.042969 238.515625 C 354.925781 238.515625 354.832031 238.609375 354.832031 238.726562 C 354.832031 238.84375 354.925781 238.9375 355.042969 238.9375 C 355.160156 238.9375 355.253906 238.84375 355.253906 238.726562 Z M 355.253906 238.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.351562 235.472656 C 354.351562 235.355469 354.257812 235.261719 354.140625 235.261719 C 354.023438 235.261719 353.929688 235.355469 353.929688 235.472656 C 353.929688 235.589844 354.023438 235.683594 354.140625 235.683594 C 354.257812 235.683594 354.351562 235.589844 354.351562 235.472656 Z M 354.351562 235.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.722656 238.664062 C 354.722656 238.546875 354.628906 238.453125 354.511719 238.453125 C 354.394531 238.453125 354.300781 238.546875 354.300781 238.664062 C 354.300781 238.78125 354.394531 238.875 354.511719 238.875 C 354.628906 238.875 354.722656 238.78125 354.722656 238.664062 Z M 354.722656 238.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 357.828125 234.90625 C 357.828125 234.789062 357.734375 234.695312 357.617188 234.695312 C 357.5 234.695312 357.40625 234.789062 357.40625 234.90625 C 357.40625 235.023438 357.5 235.117188 357.617188 235.117188 C 357.734375 235.117188 357.828125 235.023438 357.828125 234.90625 Z M 357.828125 234.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 357.273438 233.359375 C 357.273438 233.242188 357.179688 233.148438 357.0625 233.148438 C 356.945312 233.148438 356.851562 233.242188 356.851562 233.359375 C 356.851562 233.476562 356.945312 233.570312 357.0625 233.570312 C 357.179688 233.570312 357.273438 233.476562 357.273438 233.359375 Z M 357.273438 233.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.113281 234.886719 C 358.113281 234.769531 358.019531 234.675781 357.902344 234.675781 C 357.785156 234.675781 357.691406 234.769531 357.691406 234.886719 C 357.691406 235.003906 357.785156 235.097656 357.902344 235.097656 C 358.019531 235.097656 358.113281 235.003906 358.113281 234.886719 Z M 358.113281 234.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.128906 238.265625 C 354.128906 238.148438 354.035156 238.054688 353.917969 238.054688 C 353.800781 238.054688 353.707031 238.148438 353.707031 238.265625 C 353.707031 238.382812 353.800781 238.476562 353.917969 238.476562 C 354.035156 238.476562 354.128906 238.382812 354.128906 238.265625 Z M 354.128906 238.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.65625 236.28125 C 353.65625 236.164062 353.5625 236.070312 353.445312 236.070312 C 353.328125 236.070312 353.234375 236.164062 353.234375 236.28125 C 353.234375 236.398438 353.328125 236.492188 353.445312 236.492188 C 353.5625 236.492188 353.65625 236.398438 353.65625 236.28125 Z M 353.65625 236.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 346.507812 234.324219 C 346.507812 234.207031 346.414062 234.113281 346.296875 234.113281 C 346.179688 234.113281 346.085938 234.207031 346.085938 234.324219 C 346.085938 234.441406 346.179688 234.535156 346.296875 234.535156 C 346.414062 234.535156 346.507812 234.441406 346.507812 234.324219 Z M 346.507812 234.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 348.621094 231.308594 C 348.621094 231.191406 348.527344 231.097656 348.410156 231.097656 C 348.292969 231.097656 348.199219 231.191406 348.199219 231.308594 C 348.199219 231.425781 348.292969 231.519531 348.410156 231.519531 C 348.527344 231.519531 348.621094 231.425781 348.621094 231.308594 Z M 348.621094 231.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 349.988281 228.902344 C 349.988281 228.785156 349.894531 228.691406 349.777344 228.691406 C 349.660156 228.691406 349.566406 228.785156 349.566406 228.902344 C 349.566406 229.019531 349.660156 229.113281 349.777344 229.113281 C 349.894531 229.113281 349.988281 229.019531 349.988281 228.902344 Z M 349.988281 228.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 352.179688 231.425781 C 352.179688 231.308594 352.085938 231.214844 351.96875 231.214844 C 351.851562 231.214844 351.757812 231.308594 351.757812 231.425781 C 351.757812 231.542969 351.851562 231.636719 351.96875 231.636719 C 352.085938 231.636719 352.179688 231.542969 352.179688 231.425781 Z M 352.179688 231.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 352.59375 231.105469 C 352.59375 230.988281 352.5 230.894531 352.382812 230.894531 C 352.265625 230.894531 352.171875 230.988281 352.171875 231.105469 C 352.171875 231.222656 352.265625 231.316406 352.382812 231.316406 C 352.5 231.316406 352.59375 231.222656 352.59375 231.105469 Z M 352.59375 231.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.929688 229.332031 C 353.929688 229.214844 353.835938 229.121094 353.71875 229.121094 C 353.601562 229.121094 353.507812 229.214844 353.507812 229.332031 C 353.507812 229.449219 353.601562 229.542969 353.71875 229.542969 C 353.835938 229.542969 353.929688 229.449219 353.929688 229.332031 Z M 353.929688 229.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 352.757812 227.5625 C 352.757812 227.445312 352.664062 227.351562 352.546875 227.351562 C 352.429688 227.351562 352.335938 227.445312 352.335938 227.5625 C 352.335938 227.679688 352.429688 227.773438 352.546875 227.773438 C 352.664062 227.773438 352.757812 227.679688 352.757812 227.5625 Z M 352.757812 227.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.75 230.128906 C 356.75 230.011719 356.65625 229.917969 356.539062 229.917969 C 356.421875 229.917969 356.328125 230.011719 356.328125 230.128906 C 356.328125 230.246094 356.421875 230.339844 356.539062 230.339844 C 356.65625 230.339844 356.75 230.246094 356.75 230.128906 Z M 356.75 230.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.683594 228.59375 C 356.683594 228.476562 356.589844 228.382812 356.472656 228.382812 C 356.355469 228.382812 356.261719 228.476562 356.261719 228.59375 C 356.261719 228.710938 356.355469 228.804688 356.472656 228.804688 C 356.589844 228.804688 356.683594 228.710938 356.683594 228.59375 Z M 356.683594 228.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.878906 227.5625 C 356.878906 227.445312 356.785156 227.351562 356.667969 227.351562 C 356.550781 227.351562 356.457031 227.445312 356.457031 227.5625 C 356.457031 227.679688 356.550781 227.773438 356.667969 227.773438 C 356.785156 227.773438 356.878906 227.679688 356.878906 227.5625 Z M 356.878906 227.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.742188 224.761719 C 355.742188 224.644531 355.648438 224.550781 355.53125 224.550781 C 355.414062 224.550781 355.320312 224.644531 355.320312 224.761719 C 355.320312 224.878906 355.414062 224.972656 355.53125 224.972656 C 355.648438 224.972656 355.742188 224.878906 355.742188 224.761719 Z M 355.742188 224.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.027344 223.75 C 351.027344 223.632812 350.933594 223.539062 350.816406 223.539062 C 350.699219 223.539062 350.605469 223.632812 350.605469 223.75 C 350.605469 223.867188 350.699219 223.960938 350.816406 223.960938 C 350.933594 223.960938 351.027344 223.867188 351.027344 223.75 Z M 351.027344 223.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 352.460938 226.164062 C 352.460938 226.046875 352.367188 225.953125 352.25 225.953125 C 352.132812 225.953125 352.039062 226.046875 352.039062 226.164062 C 352.039062 226.28125 352.132812 226.375 352.25 226.375 C 352.367188 226.375 352.460938 226.28125 352.460938 226.164062 Z M 352.460938 226.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 350.710938 226.542969 C 350.710938 226.425781 350.617188 226.332031 350.5 226.332031 C 350.382812 226.332031 350.289062 226.425781 350.289062 226.542969 C 350.289062 226.660156 350.382812 226.753906 350.5 226.753906 C 350.617188 226.753906 350.710938 226.660156 350.710938 226.542969 Z M 350.710938 226.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 349.746094 227.917969 C 349.746094 227.800781 349.652344 227.707031 349.535156 227.707031 C 349.417969 227.707031 349.324219 227.800781 349.324219 227.917969 C 349.324219 228.035156 349.417969 228.128906 349.535156 228.128906 C 349.652344 228.128906 349.746094 228.035156 349.746094 227.917969 Z M 349.746094 227.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 352.84375 225.757812 C 352.84375 225.640625 352.75 225.546875 352.632812 225.546875 C 352.515625 225.546875 352.421875 225.640625 352.421875 225.757812 C 352.421875 225.875 352.515625 225.96875 352.632812 225.96875 C 352.75 225.96875 352.84375 225.875 352.84375 225.757812 Z M 352.84375 225.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.828125 226.28125 C 353.828125 226.164062 353.734375 226.070312 353.617188 226.070312 C 353.5 226.070312 353.40625 226.164062 353.40625 226.28125 C 353.40625 226.398438 353.5 226.492188 353.617188 226.492188 C 353.734375 226.492188 353.828125 226.398438 353.828125 226.28125 Z M 353.828125 226.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.007812 223.199219 C 353.007812 223.082031 352.914062 222.988281 352.796875 222.988281 C 352.679688 222.988281 352.585938 223.082031 352.585938 223.199219 C 352.585938 223.316406 352.679688 223.410156 352.796875 223.410156 C 352.914062 223.410156 353.007812 223.316406 353.007812 223.199219 Z M 353.007812 223.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 349.855469 222.296875 C 349.855469 222.179688 349.761719 222.085938 349.644531 222.085938 C 349.527344 222.085938 349.433594 222.179688 349.433594 222.296875 C 349.433594 222.414062 349.527344 222.507812 349.644531 222.507812 C 349.761719 222.507812 349.855469 222.414062 349.855469 222.296875 Z M 349.855469 222.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.671875 224.625 C 351.671875 224.507812 351.578125 224.414062 351.460938 224.414062 C 351.34375 224.414062 351.25 224.507812 351.25 224.625 C 351.25 224.742188 351.34375 224.835938 351.460938 224.835938 C 351.578125 224.835938 351.671875 224.742188 351.671875 224.625 Z M 351.671875 224.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.824219 225.914062 C 351.824219 225.796875 351.730469 225.703125 351.613281 225.703125 C 351.496094 225.703125 351.402344 225.796875 351.402344 225.914062 C 351.402344 226.03125 351.496094 226.125 351.613281 226.125 C 351.730469 226.125 351.824219 226.03125 351.824219 225.914062 Z M 351.824219 225.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.316406 222.964844 C 351.316406 222.847656 351.222656 222.753906 351.105469 222.753906 C 350.988281 222.753906 350.894531 222.847656 350.894531 222.964844 C 350.894531 223.082031 350.988281 223.175781 351.105469 223.175781 C 351.222656 223.175781 351.316406 223.082031 351.316406 222.964844 Z M 351.316406 222.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.523438 224.675781 C 354.523438 224.558594 354.429688 224.464844 354.3125 224.464844 C 354.195312 224.464844 354.101562 224.558594 354.101562 224.675781 C 354.101562 224.792969 354.195312 224.886719 354.3125 224.886719 C 354.429688 224.886719 354.523438 224.792969 354.523438 224.675781 Z M 354.523438 224.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.828125 223.53125 C 358.828125 223.414062 358.734375 223.320312 358.617188 223.320312 C 358.5 223.320312 358.40625 223.414062 358.40625 223.53125 C 358.40625 223.648438 358.5 223.742188 358.617188 223.742188 C 358.734375 223.742188 358.828125 223.648438 358.828125 223.53125 Z M 358.828125 223.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 360.273438 224.144531 C 360.273438 224.027344 360.179688 223.933594 360.0625 223.933594 C 359.945312 223.933594 359.851562 224.027344 359.851562 224.144531 C 359.851562 224.261719 359.945312 224.355469 360.0625 224.355469 C 360.179688 224.355469 360.273438 224.261719 360.273438 224.144531 Z M 360.273438 224.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.367188 225.25 C 358.367188 225.132812 358.273438 225.039062 358.15625 225.039062 C 358.039062 225.039062 357.945312 225.132812 357.945312 225.25 C 357.945312 225.367188 358.039062 225.460938 358.15625 225.460938 C 358.273438 225.460938 358.367188 225.367188 358.367188 225.25 Z M 358.367188 225.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 359.640625 223.96875 C 359.640625 223.851562 359.546875 223.757812 359.429688 223.757812 C 359.3125 223.757812 359.21875 223.851562 359.21875 223.96875 C 359.21875 224.085938 359.3125 224.179688 359.429688 224.179688 C 359.546875 224.179688 359.640625 224.085938 359.640625 223.96875 Z M 359.640625 223.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 359.75 226.261719 C 359.75 226.144531 359.65625 226.050781 359.539062 226.050781 C 359.421875 226.050781 359.328125 226.144531 359.328125 226.261719 C 359.328125 226.378906 359.421875 226.472656 359.539062 226.472656 C 359.65625 226.472656 359.75 226.378906 359.75 226.261719 Z M 359.75 226.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 361.03125 227.636719 C 361.03125 227.519531 360.9375 227.425781 360.820312 227.425781 C 360.703125 227.425781 360.609375 227.519531 360.609375 227.636719 C 360.609375 227.753906 360.703125 227.847656 360.820312 227.847656 C 360.9375 227.847656 361.03125 227.753906 361.03125 227.636719 Z M 361.03125 227.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 359.859375 230.644531 C 359.859375 230.527344 359.765625 230.433594 359.648438 230.433594 C 359.53125 230.433594 359.4375 230.527344 359.4375 230.644531 C 359.4375 230.761719 359.53125 230.855469 359.648438 230.855469 C 359.765625 230.855469 359.859375 230.761719 359.859375 230.644531 Z M 359.859375 230.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 360.757812 230.375 C 360.757812 230.257812 360.664062 230.164062 360.546875 230.164062 C 360.429688 230.164062 360.335938 230.257812 360.335938 230.375 C 360.335938 230.492188 360.429688 230.585938 360.546875 230.585938 C 360.664062 230.585938 360.757812 230.492188 360.757812 230.375 Z M 360.757812 230.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 360.113281 230.964844 C 360.113281 230.847656 360.019531 230.753906 359.902344 230.753906 C 359.785156 230.753906 359.691406 230.847656 359.691406 230.964844 C 359.691406 231.082031 359.785156 231.175781 359.902344 231.175781 C 360.019531 231.175781 360.113281 231.082031 360.113281 230.964844 Z M 360.113281 230.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 362.21875 228.4375 C 362.21875 228.320312 362.125 228.226562 362.007812 228.226562 C 361.890625 228.226562 361.796875 228.320312 361.796875 228.4375 C 361.796875 228.554688 361.890625 228.648438 362.007812 228.648438 C 362.125 228.648438 362.21875 228.554688 362.21875 228.4375 Z M 362.21875 228.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 360.761719 229.605469 C 360.761719 229.488281 360.667969 229.394531 360.550781 229.394531 C 360.433594 229.394531 360.339844 229.488281 360.339844 229.605469 C 360.339844 229.722656 360.433594 229.816406 360.550781 229.816406 C 360.667969 229.816406 360.761719 229.722656 360.761719 229.605469 Z M 360.761719 229.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 361.113281 225.894531 C 361.113281 225.777344 361.019531 225.683594 360.902344 225.683594 C 360.785156 225.683594 360.691406 225.777344 360.691406 225.894531 C 360.691406 226.011719 360.785156 226.105469 360.902344 226.105469 C 361.019531 226.105469 361.113281 226.011719 361.113281 225.894531 Z M 361.113281 225.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.640625 227.074219 C 358.640625 226.957031 358.546875 226.863281 358.429688 226.863281 C 358.3125 226.863281 358.21875 226.957031 358.21875 227.074219 C 358.21875 227.191406 358.3125 227.285156 358.429688 227.285156 C 358.546875 227.285156 358.640625 227.191406 358.640625 227.074219 Z M 358.640625 227.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.90625 228.800781 C 356.90625 228.683594 356.8125 228.589844 356.695312 228.589844 C 356.578125 228.589844 356.484375 228.683594 356.484375 228.800781 C 356.484375 228.917969 356.578125 229.011719 356.695312 229.011719 C 356.8125 229.011719 356.90625 228.917969 356.90625 228.800781 Z M 356.90625 228.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.941406 232.632812 C 355.941406 232.515625 355.847656 232.421875 355.730469 232.421875 C 355.613281 232.421875 355.519531 232.515625 355.519531 232.632812 C 355.519531 232.75 355.613281 232.84375 355.730469 232.84375 C 355.847656 232.84375 355.941406 232.75 355.941406 232.632812 Z M 355.941406 232.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.230469 237.636719 C 354.230469 237.519531 354.136719 237.425781 354.019531 237.425781 C 353.902344 237.425781 353.808594 237.519531 353.808594 237.636719 C 353.808594 237.753906 353.902344 237.847656 354.019531 237.847656 C 354.136719 237.847656 354.230469 237.753906 354.230469 237.636719 Z M 354.230469 237.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.644531 238.632812 C 353.644531 238.515625 353.550781 238.421875 353.433594 238.421875 C 353.316406 238.421875 353.222656 238.515625 353.222656 238.632812 C 353.222656 238.75 353.316406 238.84375 353.433594 238.84375 C 353.550781 238.84375 353.644531 238.75 353.644531 238.632812 Z M 353.644531 238.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.09375 237.128906 C 353.09375 237.011719 353 236.917969 352.882812 236.917969 C 352.765625 236.917969 352.671875 237.011719 352.671875 237.128906 C 352.671875 237.246094 352.765625 237.339844 352.882812 237.339844 C 353 237.339844 353.09375 237.246094 353.09375 237.128906 Z M 353.09375 237.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 349.960938 234.445312 C 349.960938 234.328125 349.867188 234.234375 349.75 234.234375 C 349.632812 234.234375 349.539062 234.328125 349.539062 234.445312 C 349.539062 234.5625 349.632812 234.65625 349.75 234.65625 C 349.867188 234.65625 349.960938 234.5625 349.960938 234.445312 Z M 349.960938 234.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 348.761719 239.0625 C 348.761719 238.945312 348.667969 238.851562 348.550781 238.851562 C 348.433594 238.851562 348.339844 238.945312 348.339844 239.0625 C 348.339844 239.179688 348.433594 239.273438 348.550781 239.273438 C 348.667969 239.273438 348.761719 239.179688 348.761719 239.0625 Z M 348.761719 239.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 346.644531 237.746094 C 346.644531 237.628906 346.550781 237.535156 346.433594 237.535156 C 346.316406 237.535156 346.222656 237.628906 346.222656 237.746094 C 346.222656 237.863281 346.316406 237.957031 346.433594 237.957031 C 346.550781 237.957031 346.644531 237.863281 346.644531 237.746094 Z M 346.644531 237.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 345.707031 238.636719 C 345.707031 238.519531 345.613281 238.425781 345.496094 238.425781 C 345.378906 238.425781 345.285156 238.519531 345.285156 238.636719 C 345.285156 238.753906 345.378906 238.847656 345.496094 238.847656 C 345.613281 238.847656 345.707031 238.753906 345.707031 238.636719 Z M 345.707031 238.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 346.851562 234.507812 C 346.851562 234.390625 346.757812 234.296875 346.640625 234.296875 C 346.523438 234.296875 346.429688 234.390625 346.429688 234.507812 C 346.429688 234.625 346.523438 234.71875 346.640625 234.71875 C 346.757812 234.71875 346.851562 234.625 346.851562 234.507812 Z M 346.851562 234.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 346.992188 235.847656 C 346.992188 235.730469 346.898438 235.636719 346.78125 235.636719 C 346.664062 235.636719 346.570312 235.730469 346.570312 235.847656 C 346.570312 235.964844 346.664062 236.058594 346.78125 236.058594 C 346.898438 236.058594 346.992188 235.964844 346.992188 235.847656 Z M 346.992188 235.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 347.972656 242.742188 C 347.972656 242.625 347.878906 242.53125 347.761719 242.53125 C 347.644531 242.53125 347.550781 242.625 347.550781 242.742188 C 347.550781 242.859375 347.644531 242.953125 347.761719 242.953125 C 347.878906 242.953125 347.972656 242.859375 347.972656 242.742188 Z M 347.972656 242.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 346.324219 239.574219 C 346.324219 239.457031 346.230469 239.363281 346.113281 239.363281 C 345.996094 239.363281 345.902344 239.457031 345.902344 239.574219 C 345.902344 239.691406 345.996094 239.785156 346.113281 239.785156 C 346.230469 239.785156 346.324219 239.691406 346.324219 239.574219 Z M 346.324219 239.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 346.824219 240.5625 C 346.824219 240.445312 346.730469 240.351562 346.613281 240.351562 C 346.496094 240.351562 346.402344 240.445312 346.402344 240.5625 C 346.402344 240.679688 346.496094 240.773438 346.613281 240.773438 C 346.730469 240.773438 346.824219 240.679688 346.824219 240.5625 Z M 346.824219 240.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 349.246094 238.0625 C 349.246094 237.945312 349.152344 237.851562 349.035156 237.851562 C 348.917969 237.851562 348.824219 237.945312 348.824219 238.0625 C 348.824219 238.179688 348.917969 238.273438 349.035156 238.273438 C 349.152344 238.273438 349.246094 238.179688 349.246094 238.0625 Z M 349.246094 238.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 350.773438 234.230469 C 350.773438 234.113281 350.679688 234.019531 350.5625 234.019531 C 350.445312 234.019531 350.351562 234.113281 350.351562 234.230469 C 350.351562 234.347656 350.445312 234.441406 350.5625 234.441406 C 350.679688 234.441406 350.773438 234.347656 350.773438 234.230469 Z M 350.773438 234.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 352.796875 238.527344 C 352.796875 238.410156 352.703125 238.316406 352.585938 238.316406 C 352.46875 238.316406 352.375 238.410156 352.375 238.527344 C 352.375 238.644531 352.46875 238.738281 352.585938 238.738281 C 352.703125 238.738281 352.796875 238.644531 352.796875 238.527344 Z M 352.796875 238.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.59375 239.753906 C 354.59375 239.636719 354.5 239.542969 354.382812 239.542969 C 354.265625 239.542969 354.171875 239.636719 354.171875 239.753906 C 354.171875 239.871094 354.265625 239.964844 354.382812 239.964844 C 354.5 239.964844 354.59375 239.871094 354.59375 239.753906 Z M 354.59375 239.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 352.828125 236.441406 C 352.828125 236.324219 352.734375 236.230469 352.617188 236.230469 C 352.5 236.230469 352.40625 236.324219 352.40625 236.441406 C 352.40625 236.558594 352.5 236.652344 352.617188 236.652344 C 352.734375 236.652344 352.828125 236.558594 352.828125 236.441406 Z M 352.828125 236.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.546875 236.515625 C 354.546875 236.398438 354.453125 236.304688 354.335938 236.304688 C 354.21875 236.304688 354.125 236.398438 354.125 236.515625 C 354.125 236.632812 354.21875 236.726562 354.335938 236.726562 C 354.453125 236.726562 354.546875 236.632812 354.546875 236.515625 Z M 354.546875 236.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 357.902344 236.730469 C 357.902344 236.613281 357.808594 236.519531 357.691406 236.519531 C 357.574219 236.519531 357.480469 236.613281 357.480469 236.730469 C 357.480469 236.847656 357.574219 236.941406 357.691406 236.941406 C 357.808594 236.941406 357.902344 236.847656 357.902344 236.730469 Z M 357.902344 236.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 360.699219 235.914062 C 360.699219 235.796875 360.605469 235.703125 360.488281 235.703125 C 360.371094 235.703125 360.277344 235.796875 360.277344 235.914062 C 360.277344 236.03125 360.371094 236.125 360.488281 236.125 C 360.605469 236.125 360.699219 236.03125 360.699219 235.914062 Z M 360.699219 235.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.179688 237.707031 C 358.179688 237.589844 358.085938 237.496094 357.96875 237.496094 C 357.851562 237.496094 357.757812 237.589844 357.757812 237.707031 C 357.757812 237.824219 357.851562 237.917969 357.96875 237.917969 C 358.085938 237.917969 358.179688 237.824219 358.179688 237.707031 Z M 358.179688 237.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 361.972656 242.972656 C 361.972656 242.855469 361.878906 242.761719 361.761719 242.761719 C 361.644531 242.761719 361.550781 242.855469 361.550781 242.972656 C 361.550781 243.089844 361.644531 243.183594 361.761719 243.183594 C 361.878906 243.183594 361.972656 243.089844 361.972656 242.972656 Z M 361.972656 242.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 365.640625 245.007812 C 365.640625 244.890625 365.546875 244.796875 365.429688 244.796875 C 365.3125 244.796875 365.21875 244.890625 365.21875 245.007812 C 365.21875 245.125 365.3125 245.21875 365.429688 245.21875 C 365.546875 245.21875 365.640625 245.125 365.640625 245.007812 Z M 365.640625 245.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 361.457031 245.027344 C 361.457031 244.910156 361.363281 244.816406 361.246094 244.816406 C 361.128906 244.816406 361.035156 244.910156 361.035156 245.027344 C 361.035156 245.144531 361.128906 245.238281 361.246094 245.238281 C 361.363281 245.238281 361.457031 245.144531 361.457031 245.027344 Z M 361.457031 245.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 359.195312 247.332031 C 359.195312 247.214844 359.101562 247.121094 358.984375 247.121094 C 358.867188 247.121094 358.773438 247.214844 358.773438 247.332031 C 358.773438 247.449219 358.867188 247.542969 358.984375 247.542969 C 359.101562 247.542969 359.195312 247.449219 359.195312 247.332031 Z M 359.195312 247.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 359.628906 245.40625 C 359.628906 245.289062 359.535156 245.195312 359.417969 245.195312 C 359.300781 245.195312 359.207031 245.289062 359.207031 245.40625 C 359.207031 245.523438 359.300781 245.617188 359.417969 245.617188 C 359.535156 245.617188 359.628906 245.523438 359.628906 245.40625 Z M 359.628906 245.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 357.683594 244.664062 C 357.683594 244.546875 357.589844 244.453125 357.472656 244.453125 C 357.355469 244.453125 357.261719 244.546875 357.261719 244.664062 C 357.261719 244.78125 357.355469 244.875 357.472656 244.875 C 357.589844 244.875 357.683594 244.78125 357.683594 244.664062 Z M 357.683594 244.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.636719 242.117188 C 356.636719 242 356.542969 241.90625 356.425781 241.90625 C 356.308594 241.90625 356.214844 242 356.214844 242.117188 C 356.214844 242.234375 356.308594 242.328125 356.425781 242.328125 C 356.542969 242.328125 356.636719 242.234375 356.636719 242.117188 Z M 356.636719 242.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.851562 243.03125 C 356.851562 242.914062 356.757812 242.820312 356.640625 242.820312 C 356.523438 242.820312 356.429688 242.914062 356.429688 243.03125 C 356.429688 243.148438 356.523438 243.242188 356.640625 243.242188 C 356.757812 243.242188 356.851562 243.148438 356.851562 243.03125 Z M 356.851562 243.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.25 241.65625 C 351.25 241.539062 351.15625 241.445312 351.039062 241.445312 C 350.921875 241.445312 350.828125 241.539062 350.828125 241.65625 C 350.828125 241.773438 350.921875 241.867188 351.039062 241.867188 C 351.15625 241.867188 351.25 241.773438 351.25 241.65625 Z M 351.25 241.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 352.089844 240.628906 C 352.089844 240.511719 351.996094 240.417969 351.878906 240.417969 C 351.761719 240.417969 351.667969 240.511719 351.667969 240.628906 C 351.667969 240.746094 351.761719 240.839844 351.878906 240.839844 C 351.996094 240.839844 352.089844 240.746094 352.089844 240.628906 Z M 352.089844 240.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.976562 238.382812 C 356.976562 238.265625 356.882812 238.171875 356.765625 238.171875 C 356.648438 238.171875 356.554688 238.265625 356.554688 238.382812 C 356.554688 238.5 356.648438 238.59375 356.765625 238.59375 C 356.882812 238.59375 356.976562 238.5 356.976562 238.382812 Z M 356.976562 238.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 357.363281 238.46875 C 357.363281 238.351562 357.269531 238.257812 357.152344 238.257812 C 357.035156 238.257812 356.941406 238.351562 356.941406 238.46875 C 356.941406 238.585938 357.035156 238.679688 357.152344 238.679688 C 357.269531 238.679688 357.363281 238.585938 357.363281 238.46875 Z M 357.363281 238.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.148438 235.996094 C 358.148438 235.878906 358.054688 235.785156 357.9375 235.785156 C 357.820312 235.785156 357.726562 235.878906 357.726562 235.996094 C 357.726562 236.113281 357.820312 236.207031 357.9375 236.207031 C 358.054688 236.207031 358.148438 236.113281 358.148438 235.996094 Z M 358.148438 235.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.703125 235.566406 C 354.703125 235.449219 354.609375 235.355469 354.492188 235.355469 C 354.375 235.355469 354.28125 235.449219 354.28125 235.566406 C 354.28125 235.683594 354.375 235.777344 354.492188 235.777344 C 354.609375 235.777344 354.703125 235.683594 354.703125 235.566406 Z M 354.703125 235.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.046875 236.675781 C 354.046875 236.558594 353.953125 236.464844 353.835938 236.464844 C 353.71875 236.464844 353.625 236.558594 353.625 236.675781 C 353.625 236.792969 353.71875 236.886719 353.835938 236.886719 C 353.953125 236.886719 354.046875 236.792969 354.046875 236.675781 Z M 354.046875 236.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.914062 235.359375 C 355.914062 235.242188 355.820312 235.148438 355.703125 235.148438 C 355.585938 235.148438 355.492188 235.242188 355.492188 235.359375 C 355.492188 235.476562 355.585938 235.570312 355.703125 235.570312 C 355.820312 235.570312 355.914062 235.476562 355.914062 235.359375 Z M 355.914062 235.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.5 233.144531 C 355.5 233.027344 355.40625 232.933594 355.289062 232.933594 C 355.171875 232.933594 355.078125 233.027344 355.078125 233.144531 C 355.078125 233.261719 355.171875 233.355469 355.289062 233.355469 C 355.40625 233.355469 355.5 233.261719 355.5 233.144531 Z M 355.5 233.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.699219 233.667969 C 355.699219 233.550781 355.605469 233.457031 355.488281 233.457031 C 355.371094 233.457031 355.277344 233.550781 355.277344 233.667969 C 355.277344 233.785156 355.371094 233.878906 355.488281 233.878906 C 355.605469 233.878906 355.699219 233.785156 355.699219 233.667969 Z M 355.699219 233.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.898438 233.09375 C 355.898438 232.976562 355.804688 232.882812 355.6875 232.882812 C 355.570312 232.882812 355.476562 232.976562 355.476562 233.09375 C 355.476562 233.210938 355.570312 233.304688 355.6875 233.304688 C 355.804688 233.304688 355.898438 233.210938 355.898438 233.09375 Z M 355.898438 233.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 357.730469 235.769531 C 357.730469 235.652344 357.636719 235.558594 357.519531 235.558594 C 357.402344 235.558594 357.308594 235.652344 357.308594 235.769531 C 357.308594 235.886719 357.402344 235.980469 357.519531 235.980469 C 357.636719 235.980469 357.730469 235.886719 357.730469 235.769531 Z M 357.730469 235.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.863281 236.183594 C 353.863281 236.066406 353.769531 235.972656 353.652344 235.972656 C 353.535156 235.972656 353.441406 236.066406 353.441406 236.183594 C 353.441406 236.300781 353.535156 236.394531 353.652344 236.394531 C 353.769531 236.394531 353.863281 236.300781 353.863281 236.183594 Z M 353.863281 236.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.941406 235.230469 C 354.941406 235.113281 354.847656 235.019531 354.730469 235.019531 C 354.613281 235.019531 354.519531 235.113281 354.519531 235.230469 C 354.519531 235.347656 354.613281 235.441406 354.730469 235.441406 C 354.847656 235.441406 354.941406 235.347656 354.941406 235.230469 Z M 354.941406 235.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 357.214844 233.46875 C 357.214844 233.351562 357.121094 233.257812 357.003906 233.257812 C 356.886719 233.257812 356.792969 233.351562 356.792969 233.46875 C 356.792969 233.585938 356.886719 233.679688 357.003906 233.679688 C 357.121094 233.679688 357.214844 233.585938 357.214844 233.46875 Z M 357.214844 233.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 357.976562 233.488281 C 357.976562 233.371094 357.882812 233.277344 357.765625 233.277344 C 357.648438 233.277344 357.554688 233.371094 357.554688 233.488281 C 357.554688 233.605469 357.648438 233.699219 357.765625 233.699219 C 357.882812 233.699219 357.976562 233.605469 357.976562 233.488281 Z M 357.976562 233.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.078125 234.660156 C 358.078125 234.542969 357.984375 234.449219 357.867188 234.449219 C 357.75 234.449219 357.65625 234.542969 357.65625 234.660156 C 357.65625 234.777344 357.75 234.871094 357.867188 234.871094 C 357.984375 234.871094 358.078125 234.777344 358.078125 234.660156 Z M 358.078125 234.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 359.546875 232.109375 C 359.546875 231.992188 359.453125 231.898438 359.335938 231.898438 C 359.21875 231.898438 359.125 231.992188 359.125 232.109375 C 359.125 232.226562 359.21875 232.320312 359.335938 232.320312 C 359.453125 232.320312 359.546875 232.226562 359.546875 232.109375 Z M 359.546875 232.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 359.238281 234.089844 C 359.238281 233.972656 359.144531 233.878906 359.027344 233.878906 C 358.910156 233.878906 358.816406 233.972656 358.816406 234.089844 C 358.816406 234.207031 358.910156 234.300781 359.027344 234.300781 C 359.144531 234.300781 359.238281 234.207031 359.238281 234.089844 Z M 359.238281 234.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.503906 231.417969 C 355.503906 231.300781 355.410156 231.207031 355.292969 231.207031 C 355.175781 231.207031 355.082031 231.300781 355.082031 231.417969 C 355.082031 231.535156 355.175781 231.628906 355.292969 231.628906 C 355.410156 231.628906 355.503906 231.535156 355.503906 231.417969 Z M 355.503906 231.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 357.414062 232.488281 C 357.414062 232.371094 357.320312 232.277344 357.203125 232.277344 C 357.085938 232.277344 356.992188 232.371094 356.992188 232.488281 C 356.992188 232.605469 357.085938 232.699219 357.203125 232.699219 C 357.320312 232.699219 357.414062 232.605469 357.414062 232.488281 Z M 357.414062 232.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.441406 231.957031 C 355.441406 231.839844 355.347656 231.746094 355.230469 231.746094 C 355.113281 231.746094 355.019531 231.839844 355.019531 231.957031 C 355.019531 232.074219 355.113281 232.167969 355.230469 232.167969 C 355.347656 232.167969 355.441406 232.074219 355.441406 231.957031 Z M 355.441406 231.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.085938 231.882812 C 354.085938 231.765625 353.992188 231.671875 353.875 231.671875 C 353.757812 231.671875 353.664062 231.765625 353.664062 231.882812 C 353.664062 232 353.757812 232.09375 353.875 232.09375 C 353.992188 232.09375 354.085938 232 354.085938 231.882812 Z M 354.085938 231.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.558594 231.796875 C 353.558594 231.679688 353.464844 231.585938 353.347656 231.585938 C 353.230469 231.585938 353.136719 231.679688 353.136719 231.796875 C 353.136719 231.914062 353.230469 232.007812 353.347656 232.007812 C 353.464844 232.007812 353.558594 231.914062 353.558594 231.796875 Z M 353.558594 231.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.863281 228.566406 C 353.863281 228.449219 353.769531 228.355469 353.652344 228.355469 C 353.535156 228.355469 353.441406 228.449219 353.441406 228.566406 C 353.441406 228.683594 353.535156 228.777344 353.652344 228.777344 C 353.769531 228.777344 353.863281 228.683594 353.863281 228.566406 Z M 353.863281 228.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.921875 227.960938 C 353.921875 227.84375 353.828125 227.75 353.710938 227.75 C 353.59375 227.75 353.5 227.84375 353.5 227.960938 C 353.5 228.078125 353.59375 228.171875 353.710938 228.171875 C 353.828125 228.171875 353.921875 228.078125 353.921875 227.960938 Z M 353.921875 227.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.292969 228.746094 C 353.292969 228.628906 353.199219 228.535156 353.082031 228.535156 C 352.964844 228.535156 352.871094 228.628906 352.871094 228.746094 C 352.871094 228.863281 352.964844 228.957031 353.082031 228.957031 C 353.199219 228.957031 353.292969 228.863281 353.292969 228.746094 Z M 353.292969 228.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.6875 231.75 C 354.6875 231.632812 354.59375 231.539062 354.476562 231.539062 C 354.359375 231.539062 354.265625 231.632812 354.265625 231.75 C 354.265625 231.867188 354.359375 231.960938 354.476562 231.960938 C 354.59375 231.960938 354.6875 231.867188 354.6875 231.75 Z M 354.6875 231.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.574219 230.625 C 351.574219 230.507812 351.480469 230.414062 351.363281 230.414062 C 351.246094 230.414062 351.152344 230.507812 351.152344 230.625 C 351.152344 230.742188 351.246094 230.835938 351.363281 230.835938 C 351.480469 230.835938 351.574219 230.742188 351.574219 230.625 Z M 351.574219 230.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 349.839844 232.132812 C 349.839844 232.015625 349.746094 231.921875 349.628906 231.921875 C 349.511719 231.921875 349.417969 232.015625 349.417969 232.132812 C 349.417969 232.25 349.511719 232.34375 349.628906 232.34375 C 349.746094 232.34375 349.839844 232.25 349.839844 232.132812 Z M 349.839844 232.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 347.339844 232.703125 C 347.339844 232.585938 347.246094 232.492188 347.128906 232.492188 C 347.011719 232.492188 346.917969 232.585938 346.917969 232.703125 C 346.917969 232.820312 347.011719 232.914062 347.128906 232.914062 C 347.246094 232.914062 347.339844 232.820312 347.339844 232.703125 Z M 347.339844 232.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 347.605469 232.078125 C 347.605469 231.960938 347.511719 231.867188 347.394531 231.867188 C 347.277344 231.867188 347.183594 231.960938 347.183594 232.078125 C 347.183594 232.195312 347.277344 232.289062 347.394531 232.289062 C 347.511719 232.289062 347.605469 232.195312 347.605469 232.078125 Z M 347.605469 232.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 348.078125 234.078125 C 348.078125 233.960938 347.984375 233.867188 347.867188 233.867188 C 347.75 233.867188 347.65625 233.960938 347.65625 234.078125 C 347.65625 234.195312 347.75 234.289062 347.867188 234.289062 C 347.984375 234.289062 348.078125 234.195312 348.078125 234.078125 Z M 348.078125 234.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 347.464844 233.625 C 347.464844 233.507812 347.371094 233.414062 347.253906 233.414062 C 347.136719 233.414062 347.042969 233.507812 347.042969 233.625 C 347.042969 233.742188 347.136719 233.835938 347.253906 233.835938 C 347.371094 233.835938 347.464844 233.742188 347.464844 233.625 Z M 347.464844 233.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 352.898438 232.765625 C 352.898438 232.648438 352.804688 232.554688 352.6875 232.554688 C 352.570312 232.554688 352.476562 232.648438 352.476562 232.765625 C 352.476562 232.882812 352.570312 232.976562 352.6875 232.976562 C 352.804688 232.976562 352.898438 232.882812 352.898438 232.765625 Z M 352.898438 232.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.507812 231.003906 C 351.507812 230.886719 351.414062 230.792969 351.296875 230.792969 C 351.179688 230.792969 351.085938 230.886719 351.085938 231.003906 C 351.085938 231.121094 351.179688 231.214844 351.296875 231.214844 C 351.414062 231.214844 351.507812 231.121094 351.507812 231.003906 Z M 351.507812 231.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.007812 234.464844 C 351.007812 234.347656 350.914062 234.253906 350.796875 234.253906 C 350.679688 234.253906 350.585938 234.347656 350.585938 234.464844 C 350.585938 234.582031 350.679688 234.675781 350.796875 234.675781 C 350.914062 234.675781 351.007812 234.582031 351.007812 234.464844 Z M 351.007812 234.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.476562 233.527344 C 351.476562 233.410156 351.382812 233.316406 351.265625 233.316406 C 351.148438 233.316406 351.054688 233.410156 351.054688 233.527344 C 351.054688 233.644531 351.148438 233.738281 351.265625 233.738281 C 351.382812 233.738281 351.476562 233.644531 351.476562 233.527344 Z M 351.476562 233.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 350.574219 235.9375 C 350.574219 235.820312 350.480469 235.726562 350.363281 235.726562 C 350.246094 235.726562 350.152344 235.820312 350.152344 235.9375 C 350.152344 236.054688 350.246094 236.148438 350.363281 236.148438 C 350.480469 236.148438 350.574219 236.054688 350.574219 235.9375 Z M 350.574219 235.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.414062 236.785156 C 351.414062 236.667969 351.320312 236.574219 351.203125 236.574219 C 351.085938 236.574219 350.992188 236.667969 350.992188 236.785156 C 350.992188 236.902344 351.085938 236.996094 351.203125 236.996094 C 351.320312 236.996094 351.414062 236.902344 351.414062 236.785156 Z M 351.414062 236.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 348.863281 235.253906 C 348.863281 235.136719 348.769531 235.042969 348.652344 235.042969 C 348.535156 235.042969 348.441406 235.136719 348.441406 235.253906 C 348.441406 235.371094 348.535156 235.464844 348.652344 235.464844 C 348.769531 235.464844 348.863281 235.371094 348.863281 235.253906 Z M 348.863281 235.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 349.3125 234.855469 C 349.3125 234.738281 349.21875 234.644531 349.101562 234.644531 C 348.984375 234.644531 348.890625 234.738281 348.890625 234.855469 C 348.890625 234.972656 348.984375 235.066406 349.101562 235.066406 C 349.21875 235.066406 349.3125 234.972656 349.3125 234.855469 Z M 349.3125 234.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.152344 236.132812 C 354.152344 236.015625 354.058594 235.921875 353.941406 235.921875 C 353.824219 235.921875 353.730469 236.015625 353.730469 236.132812 C 353.730469 236.25 353.824219 236.34375 353.941406 236.34375 C 354.058594 236.34375 354.152344 236.25 354.152344 236.132812 Z M 354.152344 236.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.226562 238.367188 C 355.226562 238.25 355.132812 238.15625 355.015625 238.15625 C 354.898438 238.15625 354.804688 238.25 354.804688 238.367188 C 354.804688 238.484375 354.898438 238.578125 355.015625 238.578125 C 355.132812 238.578125 355.226562 238.484375 355.226562 238.367188 Z M 355.226562 238.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.902344 239.214844 C 355.902344 239.097656 355.808594 239.003906 355.691406 239.003906 C 355.574219 239.003906 355.480469 239.097656 355.480469 239.214844 C 355.480469 239.332031 355.574219 239.425781 355.691406 239.425781 C 355.808594 239.425781 355.902344 239.332031 355.902344 239.214844 Z M 355.902344 239.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 364.832031 238.777344 C 364.832031 238.660156 364.738281 238.566406 364.621094 238.566406 C 364.503906 238.566406 364.410156 238.660156 364.410156 238.777344 C 364.410156 238.894531 364.503906 238.988281 364.621094 238.988281 C 364.738281 238.988281 364.832031 238.894531 364.832031 238.777344 Z M 364.832031 238.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 366.179688 239.566406 C 366.179688 239.449219 366.085938 239.355469 365.96875 239.355469 C 365.851562 239.355469 365.757812 239.449219 365.757812 239.566406 C 365.757812 239.683594 365.851562 239.777344 365.96875 239.777344 C 366.085938 239.777344 366.179688 239.683594 366.179688 239.566406 Z M 366.179688 239.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 369.035156 236.832031 C 369.035156 236.714844 368.941406 236.621094 368.824219 236.621094 C 368.707031 236.621094 368.613281 236.714844 368.613281 236.832031 C 368.613281 236.949219 368.707031 237.042969 368.824219 237.042969 C 368.941406 237.042969 369.035156 236.949219 369.035156 236.832031 Z M 369.035156 236.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 369.144531 232.953125 C 369.144531 232.835938 369.050781 232.742188 368.933594 232.742188 C 368.816406 232.742188 368.722656 232.835938 368.722656 232.953125 C 368.722656 233.070312 368.816406 233.164062 368.933594 233.164062 C 369.050781 233.164062 369.144531 233.070312 369.144531 232.953125 Z M 369.144531 232.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 368.03125 234.867188 C 368.03125 234.75 367.9375 234.65625 367.820312 234.65625 C 367.703125 234.65625 367.609375 234.75 367.609375 234.867188 C 367.609375 234.984375 367.703125 235.078125 367.820312 235.078125 C 367.9375 235.078125 368.03125 234.984375 368.03125 234.867188 Z M 368.03125 234.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 368.273438 232.214844 C 368.273438 232.097656 368.179688 232.003906 368.0625 232.003906 C 367.945312 232.003906 367.851562 232.097656 367.851562 232.214844 C 367.851562 232.332031 367.945312 232.425781 368.0625 232.425781 C 368.179688 232.425781 368.273438 232.332031 368.273438 232.214844 Z M 368.273438 232.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 366.261719 229.855469 C 366.261719 229.738281 366.167969 229.644531 366.050781 229.644531 C 365.933594 229.644531 365.839844 229.738281 365.839844 229.855469 C 365.839844 229.972656 365.933594 230.066406 366.050781 230.066406 C 366.167969 230.066406 366.261719 229.972656 366.261719 229.855469 Z M 366.261719 229.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 365.222656 231.96875 C 365.222656 231.851562 365.128906 231.757812 365.011719 231.757812 C 364.894531 231.757812 364.800781 231.851562 364.800781 231.96875 C 364.800781 232.085938 364.894531 232.179688 365.011719 232.179688 C 365.128906 232.179688 365.222656 232.085938 365.222656 231.96875 Z M 365.222656 231.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 368.789062 231.210938 C 368.789062 231.09375 368.695312 231 368.578125 231 C 368.460938 231 368.367188 231.09375 368.367188 231.210938 C 368.367188 231.328125 368.460938 231.421875 368.578125 231.421875 C 368.695312 231.421875 368.789062 231.328125 368.789062 231.210938 Z M 368.789062 231.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 369.710938 231.625 C 369.710938 231.507812 369.617188 231.414062 369.5 231.414062 C 369.382812 231.414062 369.289062 231.507812 369.289062 231.625 C 369.289062 231.742188 369.382812 231.835938 369.5 231.835938 C 369.617188 231.835938 369.710938 231.742188 369.710938 231.625 Z M 369.710938 231.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 367.050781 233.074219 C 367.050781 232.957031 366.957031 232.863281 366.839844 232.863281 C 366.722656 232.863281 366.628906 232.957031 366.628906 233.074219 C 366.628906 233.191406 366.722656 233.285156 366.839844 233.285156 C 366.957031 233.285156 367.050781 233.191406 367.050781 233.074219 Z M 367.050781 233.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 364.582031 235.28125 C 364.582031 235.164062 364.488281 235.070312 364.371094 235.070312 C 364.253906 235.070312 364.160156 235.164062 364.160156 235.28125 C 364.160156 235.398438 364.253906 235.492188 364.371094 235.492188 C 364.488281 235.492188 364.582031 235.398438 364.582031 235.28125 Z M 364.582031 235.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 367.480469 238.152344 C 367.480469 238.035156 367.386719 237.941406 367.269531 237.941406 C 367.152344 237.941406 367.058594 238.035156 367.058594 238.152344 C 367.058594 238.269531 367.152344 238.363281 367.269531 238.363281 C 367.386719 238.363281 367.480469 238.269531 367.480469 238.152344 Z M 367.480469 238.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 366.183594 235.996094 C 366.183594 235.878906 366.089844 235.785156 365.972656 235.785156 C 365.855469 235.785156 365.761719 235.878906 365.761719 235.996094 C 365.761719 236.113281 365.855469 236.207031 365.972656 236.207031 C 366.089844 236.207031 366.183594 236.113281 366.183594 235.996094 Z M 366.183594 235.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 364.757812 234.113281 C 364.757812 233.996094 364.664062 233.902344 364.546875 233.902344 C 364.429688 233.902344 364.335938 233.996094 364.335938 234.113281 C 364.335938 234.230469 364.429688 234.324219 364.546875 234.324219 C 364.664062 234.324219 364.757812 234.230469 364.757812 234.113281 Z M 364.757812 234.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 365.585938 233.277344 C 365.585938 233.160156 365.492188 233.066406 365.375 233.066406 C 365.257812 233.066406 365.164062 233.160156 365.164062 233.277344 C 365.164062 233.394531 365.257812 233.488281 365.375 233.488281 C 365.492188 233.488281 365.585938 233.394531 365.585938 233.277344 Z M 365.585938 233.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 368.304688 234.480469 C 368.304688 234.363281 368.210938 234.269531 368.09375 234.269531 C 367.976562 234.269531 367.882812 234.363281 367.882812 234.480469 C 367.882812 234.597656 367.976562 234.691406 368.09375 234.691406 C 368.210938 234.691406 368.304688 234.597656 368.304688 234.480469 Z M 368.304688 234.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 368.941406 233.511719 C 368.941406 233.394531 368.847656 233.300781 368.730469 233.300781 C 368.613281 233.300781 368.519531 233.394531 368.519531 233.511719 C 368.519531 233.628906 368.613281 233.722656 368.730469 233.722656 C 368.847656 233.722656 368.941406 233.628906 368.941406 233.511719 Z M 368.941406 233.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 365.050781 234.648438 C 365.050781 234.53125 364.957031 234.4375 364.839844 234.4375 C 364.722656 234.4375 364.628906 234.53125 364.628906 234.648438 C 364.628906 234.765625 364.722656 234.859375 364.839844 234.859375 C 364.957031 234.859375 365.050781 234.765625 365.050781 234.648438 Z M 365.050781 234.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 365.191406 232.980469 C 365.191406 232.863281 365.097656 232.769531 364.980469 232.769531 C 364.863281 232.769531 364.769531 232.863281 364.769531 232.980469 C 364.769531 233.097656 364.863281 233.191406 364.980469 233.191406 C 365.097656 233.191406 365.191406 233.097656 365.191406 232.980469 Z M 365.191406 232.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 362.457031 235.226562 C 362.457031 235.109375 362.363281 235.015625 362.246094 235.015625 C 362.128906 235.015625 362.035156 235.109375 362.035156 235.226562 C 362.035156 235.34375 362.128906 235.4375 362.246094 235.4375 C 362.363281 235.4375 362.457031 235.34375 362.457031 235.226562 Z M 362.457031 235.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 365.484375 234.777344 C 365.484375 234.660156 365.390625 234.566406 365.273438 234.566406 C 365.15625 234.566406 365.0625 234.660156 365.0625 234.777344 C 365.0625 234.894531 365.15625 234.988281 365.273438 234.988281 C 365.390625 234.988281 365.484375 234.894531 365.484375 234.777344 Z M 365.484375 234.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 365.484375 235.023438 C 365.484375 234.90625 365.390625 234.8125 365.273438 234.8125 C 365.15625 234.8125 365.0625 234.90625 365.0625 235.023438 C 365.0625 235.140625 365.15625 235.234375 365.273438 235.234375 C 365.390625 235.234375 365.484375 235.140625 365.484375 235.023438 Z M 365.484375 235.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 362.640625 238.476562 C 362.640625 238.359375 362.546875 238.265625 362.429688 238.265625 C 362.3125 238.265625 362.21875 238.359375 362.21875 238.476562 C 362.21875 238.59375 362.3125 238.6875 362.429688 238.6875 C 362.546875 238.6875 362.640625 238.59375 362.640625 238.476562 Z M 362.640625 238.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 362.210938 238.980469 C 362.210938 238.863281 362.117188 238.769531 362 238.769531 C 361.882812 238.769531 361.789062 238.863281 361.789062 238.980469 C 361.789062 239.097656 361.882812 239.191406 362 239.191406 C 362.117188 239.191406 362.210938 239.097656 362.210938 238.980469 Z M 362.210938 238.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 363.660156 241.082031 C 363.660156 240.964844 363.566406 240.871094 363.449219 240.871094 C 363.332031 240.871094 363.238281 240.964844 363.238281 241.082031 C 363.238281 241.199219 363.332031 241.292969 363.449219 241.292969 C 363.566406 241.292969 363.660156 241.199219 363.660156 241.082031 Z M 363.660156 241.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 363.308594 240.203125 C 363.308594 240.085938 363.214844 239.992188 363.097656 239.992188 C 362.980469 239.992188 362.886719 240.085938 362.886719 240.203125 C 362.886719 240.320312 362.980469 240.414062 363.097656 240.414062 C 363.214844 240.414062 363.308594 240.320312 363.308594 240.203125 Z M 363.308594 240.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 357.425781 240.023438 C 357.425781 239.90625 357.332031 239.8125 357.214844 239.8125 C 357.097656 239.8125 357.003906 239.90625 357.003906 240.023438 C 357.003906 240.140625 357.097656 240.234375 357.214844 240.234375 C 357.332031 240.234375 357.425781 240.140625 357.425781 240.023438 Z M 357.425781 240.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 357.457031 240.152344 C 357.457031 240.035156 357.363281 239.941406 357.246094 239.941406 C 357.128906 239.941406 357.035156 240.035156 357.035156 240.152344 C 357.035156 240.269531 357.128906 240.363281 357.246094 240.363281 C 357.363281 240.363281 357.457031 240.269531 357.457031 240.152344 Z M 357.457031 240.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 360.4375 239.425781 C 360.4375 239.308594 360.34375 239.214844 360.226562 239.214844 C 360.109375 239.214844 360.015625 239.308594 360.015625 239.425781 C 360.015625 239.542969 360.109375 239.636719 360.226562 239.636719 C 360.34375 239.636719 360.4375 239.542969 360.4375 239.425781 Z M 360.4375 239.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 361.070312 239.746094 C 361.070312 239.628906 360.976562 239.535156 360.859375 239.535156 C 360.742188 239.535156 360.648438 239.628906 360.648438 239.746094 C 360.648438 239.863281 360.742188 239.957031 360.859375 239.957031 C 360.976562 239.957031 361.070312 239.863281 361.070312 239.746094 Z M 361.070312 239.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 363.675781 237.917969 C 363.675781 237.800781 363.582031 237.707031 363.464844 237.707031 C 363.347656 237.707031 363.253906 237.800781 363.253906 237.917969 C 363.253906 238.035156 363.347656 238.128906 363.464844 238.128906 C 363.582031 238.128906 363.675781 238.035156 363.675781 237.917969 Z M 363.675781 237.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 365.496094 241.152344 C 365.496094 241.035156 365.402344 240.941406 365.285156 240.941406 C 365.167969 240.941406 365.074219 241.035156 365.074219 241.152344 C 365.074219 241.269531 365.167969 241.363281 365.285156 241.363281 C 365.402344 241.363281 365.496094 241.269531 365.496094 241.152344 Z M 365.496094 241.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 364.710938 238.847656 C 364.710938 238.730469 364.617188 238.636719 364.5 238.636719 C 364.382812 238.636719 364.289062 238.730469 364.289062 238.847656 C 364.289062 238.964844 364.382812 239.058594 364.5 239.058594 C 364.617188 239.058594 364.710938 238.964844 364.710938 238.847656 Z M 364.710938 238.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 360.910156 236.871094 C 360.910156 236.753906 360.816406 236.660156 360.699219 236.660156 C 360.582031 236.660156 360.488281 236.753906 360.488281 236.871094 C 360.488281 236.988281 360.582031 237.082031 360.699219 237.082031 C 360.816406 237.082031 360.910156 236.988281 360.910156 236.871094 Z M 360.910156 236.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 361.21875 233.660156 C 361.21875 233.542969 361.125 233.449219 361.007812 233.449219 C 360.890625 233.449219 360.796875 233.542969 360.796875 233.660156 C 360.796875 233.777344 360.890625 233.871094 361.007812 233.871094 C 361.125 233.871094 361.21875 233.777344 361.21875 233.660156 Z M 361.21875 233.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 364.167969 232.8125 C 364.167969 232.695312 364.074219 232.601562 363.957031 232.601562 C 363.839844 232.601562 363.746094 232.695312 363.746094 232.8125 C 363.746094 232.929688 363.839844 233.023438 363.957031 233.023438 C 364.074219 233.023438 364.167969 232.929688 364.167969 232.8125 Z M 364.167969 232.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 365.929688 230.484375 C 365.929688 230.367188 365.835938 230.273438 365.71875 230.273438 C 365.601562 230.273438 365.507812 230.367188 365.507812 230.484375 C 365.507812 230.601562 365.601562 230.695312 365.71875 230.695312 C 365.835938 230.695312 365.929688 230.601562 365.929688 230.484375 Z M 365.929688 230.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 368.175781 230.625 C 368.175781 230.507812 368.082031 230.414062 367.964844 230.414062 C 367.847656 230.414062 367.753906 230.507812 367.753906 230.625 C 367.753906 230.742188 367.847656 230.835938 367.964844 230.835938 C 368.082031 230.835938 368.175781 230.742188 368.175781 230.625 Z M 368.175781 230.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 365.832031 231.847656 C 365.832031 231.730469 365.738281 231.636719 365.621094 231.636719 C 365.503906 231.636719 365.410156 231.730469 365.410156 231.847656 C 365.410156 231.964844 365.503906 232.058594 365.621094 232.058594 C 365.738281 232.058594 365.832031 231.964844 365.832031 231.847656 Z M 365.832031 231.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 365.082031 232.703125 C 365.082031 232.585938 364.988281 232.492188 364.871094 232.492188 C 364.753906 232.492188 364.660156 232.585938 364.660156 232.703125 C 364.660156 232.820312 364.753906 232.914062 364.871094 232.914062 C 364.988281 232.914062 365.082031 232.820312 365.082031 232.703125 Z M 365.082031 232.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 366.523438 232.84375 C 366.523438 232.726562 366.429688 232.632812 366.3125 232.632812 C 366.195312 232.632812 366.101562 232.726562 366.101562 232.84375 C 366.101562 232.960938 366.195312 233.054688 366.3125 233.054688 C 366.429688 233.054688 366.523438 232.960938 366.523438 232.84375 Z M 366.523438 232.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 367.4375 228.8125 C 367.4375 228.695312 367.34375 228.601562 367.226562 228.601562 C 367.109375 228.601562 367.015625 228.695312 367.015625 228.8125 C 367.015625 228.929688 367.109375 229.023438 367.226562 229.023438 C 367.34375 229.023438 367.4375 228.929688 367.4375 228.8125 Z M 367.4375 228.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 368.996094 227.488281 C 368.996094 227.371094 368.902344 227.277344 368.785156 227.277344 C 368.667969 227.277344 368.574219 227.371094 368.574219 227.488281 C 368.574219 227.605469 368.667969 227.699219 368.785156 227.699219 C 368.902344 227.699219 368.996094 227.605469 368.996094 227.488281 Z M 368.996094 227.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 368.480469 228.878906 C 368.480469 228.761719 368.386719 228.667969 368.269531 228.667969 C 368.152344 228.667969 368.058594 228.761719 368.058594 228.878906 C 368.058594 228.996094 368.152344 229.089844 368.269531 229.089844 C 368.386719 229.089844 368.480469 228.996094 368.480469 228.878906 Z M 368.480469 228.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 370.296875 231.066406 C 370.296875 230.949219 370.203125 230.855469 370.085938 230.855469 C 369.96875 230.855469 369.875 230.949219 369.875 231.066406 C 369.875 231.183594 369.96875 231.277344 370.085938 231.277344 C 370.203125 231.277344 370.296875 231.183594 370.296875 231.066406 Z M 370.296875 231.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 376.046875 233.941406 C 376.046875 233.824219 375.953125 233.730469 375.835938 233.730469 C 375.71875 233.730469 375.625 233.824219 375.625 233.941406 C 375.625 234.058594 375.71875 234.152344 375.835938 234.152344 C 375.953125 234.152344 376.046875 234.058594 376.046875 233.941406 Z M 376.046875 233.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 372.46875 231.460938 C 372.46875 231.34375 372.375 231.25 372.257812 231.25 C 372.140625 231.25 372.046875 231.34375 372.046875 231.460938 C 372.046875 231.578125 372.140625 231.671875 372.257812 231.671875 C 372.375 231.671875 372.46875 231.578125 372.46875 231.460938 Z M 372.46875 231.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 371.75 228.070312 C 371.75 227.953125 371.65625 227.859375 371.539062 227.859375 C 371.421875 227.859375 371.328125 227.953125 371.328125 228.070312 C 371.328125 228.1875 371.421875 228.28125 371.539062 228.28125 C 371.65625 228.28125 371.75 228.1875 371.75 228.070312 Z M 371.75 228.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 371.359375 229.585938 C 371.359375 229.46875 371.265625 229.375 371.148438 229.375 C 371.03125 229.375 370.9375 229.46875 370.9375 229.585938 C 370.9375 229.703125 371.03125 229.796875 371.148438 229.796875 C 371.265625 229.796875 371.359375 229.703125 371.359375 229.585938 Z M 371.359375 229.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 372.796875 226.496094 C 372.796875 226.378906 372.703125 226.285156 372.585938 226.285156 C 372.46875 226.285156 372.375 226.378906 372.375 226.496094 C 372.375 226.613281 372.46875 226.707031 372.585938 226.707031 C 372.703125 226.707031 372.796875 226.613281 372.796875 226.496094 Z M 372.796875 226.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 373.96875 222.738281 C 373.96875 222.621094 373.875 222.527344 373.757812 222.527344 C 373.640625 222.527344 373.546875 222.621094 373.546875 222.738281 C 373.546875 222.855469 373.640625 222.949219 373.757812 222.949219 C 373.875 222.949219 373.96875 222.855469 373.96875 222.738281 Z M 373.96875 222.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 372.113281 225.816406 C 372.113281 225.699219 372.019531 225.605469 371.902344 225.605469 C 371.785156 225.605469 371.691406 225.699219 371.691406 225.816406 C 371.691406 225.933594 371.785156 226.027344 371.902344 226.027344 C 372.019531 226.027344 372.113281 225.933594 372.113281 225.816406 Z M 372.113281 225.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 371.292969 223.800781 C 371.292969 223.683594 371.199219 223.589844 371.082031 223.589844 C 370.964844 223.589844 370.871094 223.683594 370.871094 223.800781 C 370.871094 223.917969 370.964844 224.011719 371.082031 224.011719 C 371.199219 224.011719 371.292969 223.917969 371.292969 223.800781 Z M 371.292969 223.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 369.53125 221.847656 C 369.53125 221.730469 369.4375 221.636719 369.320312 221.636719 C 369.203125 221.636719 369.109375 221.730469 369.109375 221.847656 C 369.109375 221.964844 369.203125 222.058594 369.320312 222.058594 C 369.4375 222.058594 369.53125 221.964844 369.53125 221.847656 Z M 369.53125 221.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 368.722656 219.265625 C 368.722656 219.148438 368.628906 219.054688 368.511719 219.054688 C 368.394531 219.054688 368.300781 219.148438 368.300781 219.265625 C 368.300781 219.382812 368.394531 219.476562 368.511719 219.476562 C 368.628906 219.476562 368.722656 219.382812 368.722656 219.265625 Z M 368.722656 219.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 368.046875 214.898438 C 368.046875 214.78125 367.953125 214.6875 367.835938 214.6875 C 367.71875 214.6875 367.625 214.78125 367.625 214.898438 C 367.625 215.015625 367.71875 215.109375 367.835938 215.109375 C 367.953125 215.109375 368.046875 215.015625 368.046875 214.898438 Z M 368.046875 214.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 366.40625 217.773438 C 366.40625 217.65625 366.3125 217.5625 366.195312 217.5625 C 366.078125 217.5625 365.984375 217.65625 365.984375 217.773438 C 365.984375 217.890625 366.078125 217.984375 366.195312 217.984375 C 366.3125 217.984375 366.40625 217.890625 366.40625 217.773438 Z M 366.40625 217.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 365.644531 215.230469 C 365.644531 215.113281 365.550781 215.019531 365.433594 215.019531 C 365.316406 215.019531 365.222656 215.113281 365.222656 215.230469 C 365.222656 215.347656 365.316406 215.441406 365.433594 215.441406 C 365.550781 215.441406 365.644531 215.347656 365.644531 215.230469 Z M 365.644531 215.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 368.355469 214.570312 C 368.355469 214.453125 368.261719 214.359375 368.144531 214.359375 C 368.027344 214.359375 367.933594 214.453125 367.933594 214.570312 C 367.933594 214.6875 368.027344 214.78125 368.144531 214.78125 C 368.261719 214.78125 368.355469 214.6875 368.355469 214.570312 Z M 368.355469 214.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 367.996094 214.253906 C 367.996094 214.136719 367.902344 214.042969 367.785156 214.042969 C 367.667969 214.042969 367.574219 214.136719 367.574219 214.253906 C 367.574219 214.371094 367.667969 214.464844 367.785156 214.464844 C 367.902344 214.464844 367.996094 214.371094 367.996094 214.253906 Z M 367.996094 214.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 366.859375 214.351562 C 366.859375 214.234375 366.765625 214.140625 366.648438 214.140625 C 366.53125 214.140625 366.4375 214.234375 366.4375 214.351562 C 366.4375 214.46875 366.53125 214.5625 366.648438 214.5625 C 366.765625 214.5625 366.859375 214.46875 366.859375 214.351562 Z M 366.859375 214.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 366.484375 216.859375 C 366.484375 216.742188 366.390625 216.648438 366.273438 216.648438 C 366.15625 216.648438 366.0625 216.742188 366.0625 216.859375 C 366.0625 216.976562 366.15625 217.070312 366.273438 217.070312 C 366.390625 217.070312 366.484375 216.976562 366.484375 216.859375 Z M 366.484375 216.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 367.484375 213.660156 C 367.484375 213.542969 367.390625 213.449219 367.273438 213.449219 C 367.15625 213.449219 367.0625 213.542969 367.0625 213.660156 C 367.0625 213.777344 367.15625 213.871094 367.273438 213.871094 C 367.390625 213.871094 367.484375 213.777344 367.484375 213.660156 Z M 367.484375 213.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 364.625 211.585938 C 364.625 211.46875 364.53125 211.375 364.414062 211.375 C 364.296875 211.375 364.203125 211.46875 364.203125 211.585938 C 364.203125 211.703125 364.296875 211.796875 364.414062 211.796875 C 364.53125 211.796875 364.625 211.703125 364.625 211.585938 Z M 364.625 211.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 365.9375 209.96875 C 365.9375 209.851562 365.84375 209.757812 365.726562 209.757812 C 365.609375 209.757812 365.515625 209.851562 365.515625 209.96875 C 365.515625 210.085938 365.609375 210.179688 365.726562 210.179688 C 365.84375 210.179688 365.9375 210.085938 365.9375 209.96875 Z M 365.9375 209.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 367.121094 209.152344 C 367.121094 209.035156 367.027344 208.941406 366.910156 208.941406 C 366.792969 208.941406 366.699219 209.035156 366.699219 209.152344 C 366.699219 209.269531 366.792969 209.363281 366.910156 209.363281 C 367.027344 209.363281 367.121094 209.269531 367.121094 209.152344 Z M 367.121094 209.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 366.382812 206.289062 C 366.382812 206.171875 366.289062 206.078125 366.171875 206.078125 C 366.054688 206.078125 365.960938 206.171875 365.960938 206.289062 C 365.960938 206.40625 366.054688 206.5 366.171875 206.5 C 366.289062 206.5 366.382812 206.40625 366.382812 206.289062 Z M 366.382812 206.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 365.414062 207.363281 C 365.414062 207.246094 365.320312 207.152344 365.203125 207.152344 C 365.085938 207.152344 364.992188 207.246094 364.992188 207.363281 C 364.992188 207.480469 365.085938 207.574219 365.203125 207.574219 C 365.320312 207.574219 365.414062 207.480469 365.414062 207.363281 Z M 365.414062 207.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 368.050781 206.253906 C 368.050781 206.136719 367.957031 206.042969 367.839844 206.042969 C 367.722656 206.042969 367.628906 206.136719 367.628906 206.253906 C 367.628906 206.371094 367.722656 206.464844 367.839844 206.464844 C 367.957031 206.464844 368.050781 206.371094 368.050781 206.253906 Z M 368.050781 206.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 369.476562 207.601562 C 369.476562 207.484375 369.382812 207.390625 369.265625 207.390625 C 369.148438 207.390625 369.054688 207.484375 369.054688 207.601562 C 369.054688 207.71875 369.148438 207.8125 369.265625 207.8125 C 369.382812 207.8125 369.476562 207.71875 369.476562 207.601562 Z M 369.476562 207.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 369.019531 207.714844 C 369.019531 207.597656 368.925781 207.503906 368.808594 207.503906 C 368.691406 207.503906 368.597656 207.597656 368.597656 207.714844 C 368.597656 207.832031 368.691406 207.925781 368.808594 207.925781 C 368.925781 207.925781 369.019531 207.832031 369.019531 207.714844 Z M 369.019531 207.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 368.050781 208.175781 C 368.050781 208.058594 367.957031 207.964844 367.839844 207.964844 C 367.722656 207.964844 367.628906 208.058594 367.628906 208.175781 C 367.628906 208.292969 367.722656 208.386719 367.839844 208.386719 C 367.957031 208.386719 368.050781 208.292969 368.050781 208.175781 Z M 368.050781 208.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 369.167969 209.105469 C 369.167969 208.988281 369.074219 208.894531 368.957031 208.894531 C 368.839844 208.894531 368.746094 208.988281 368.746094 209.105469 C 368.746094 209.222656 368.839844 209.316406 368.957031 209.316406 C 369.074219 209.316406 369.167969 209.222656 369.167969 209.105469 Z M 369.167969 209.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 367.96875 207.675781 C 367.96875 207.558594 367.875 207.464844 367.757812 207.464844 C 367.640625 207.464844 367.546875 207.558594 367.546875 207.675781 C 367.546875 207.792969 367.640625 207.886719 367.757812 207.886719 C 367.875 207.886719 367.96875 207.792969 367.96875 207.675781 Z M 367.96875 207.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 369.226562 208.058594 C 369.226562 207.941406 369.132812 207.847656 369.015625 207.847656 C 368.898438 207.847656 368.804688 207.941406 368.804688 208.058594 C 368.804688 208.175781 368.898438 208.269531 369.015625 208.269531 C 369.132812 208.269531 369.226562 208.175781 369.226562 208.058594 Z M 369.226562 208.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 372.425781 208.5625 C 372.425781 208.445312 372.332031 208.351562 372.214844 208.351562 C 372.097656 208.351562 372.003906 208.445312 372.003906 208.5625 C 372.003906 208.679688 372.097656 208.773438 372.214844 208.773438 C 372.332031 208.773438 372.425781 208.679688 372.425781 208.5625 Z M 372.425781 208.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 371.164062 207.328125 C 371.164062 207.210938 371.070312 207.117188 370.953125 207.117188 C 370.835938 207.117188 370.742188 207.210938 370.742188 207.328125 C 370.742188 207.445312 370.835938 207.539062 370.953125 207.539062 C 371.070312 207.539062 371.164062 207.445312 371.164062 207.328125 Z M 371.164062 207.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 369.699219 205.222656 C 369.699219 205.105469 369.605469 205.011719 369.488281 205.011719 C 369.371094 205.011719 369.277344 205.105469 369.277344 205.222656 C 369.277344 205.339844 369.371094 205.433594 369.488281 205.433594 C 369.605469 205.433594 369.699219 205.339844 369.699219 205.222656 Z M 369.699219 205.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 366.257812 206.507812 C 366.257812 206.390625 366.164062 206.296875 366.046875 206.296875 C 365.929688 206.296875 365.835938 206.390625 365.835938 206.507812 C 365.835938 206.625 365.929688 206.71875 366.046875 206.71875 C 366.164062 206.71875 366.257812 206.625 366.257812 206.507812 Z M 366.257812 206.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 364.464844 205.535156 C 364.464844 205.417969 364.371094 205.324219 364.253906 205.324219 C 364.136719 205.324219 364.042969 205.417969 364.042969 205.535156 C 364.042969 205.652344 364.136719 205.746094 364.253906 205.746094 C 364.371094 205.746094 364.464844 205.652344 364.464844 205.535156 Z M 364.464844 205.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 361.566406 205.414062 C 361.566406 205.296875 361.472656 205.203125 361.355469 205.203125 C 361.238281 205.203125 361.144531 205.296875 361.144531 205.414062 C 361.144531 205.53125 361.238281 205.625 361.355469 205.625 C 361.472656 205.625 361.566406 205.53125 361.566406 205.414062 Z M 361.566406 205.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.683594 203.472656 C 358.683594 203.355469 358.589844 203.261719 358.472656 203.261719 C 358.355469 203.261719 358.261719 203.355469 358.261719 203.472656 C 358.261719 203.589844 358.355469 203.683594 358.472656 203.683594 C 358.589844 203.683594 358.683594 203.589844 358.683594 203.472656 Z M 358.683594 203.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.421875 198.78125 C 354.421875 198.664062 354.328125 198.570312 354.210938 198.570312 C 354.09375 198.570312 354 198.664062 354 198.78125 C 354 198.898438 354.09375 198.992188 354.210938 198.992188 C 354.328125 198.992188 354.421875 198.898438 354.421875 198.78125 Z M 354.421875 198.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.203125 198.089844 C 355.203125 197.972656 355.109375 197.878906 354.992188 197.878906 C 354.875 197.878906 354.78125 197.972656 354.78125 198.089844 C 354.78125 198.207031 354.875 198.300781 354.992188 198.300781 C 355.109375 198.300781 355.203125 198.207031 355.203125 198.089844 Z M 355.203125 198.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.855469 196.253906 C 353.855469 196.136719 353.761719 196.042969 353.644531 196.042969 C 353.527344 196.042969 353.433594 196.136719 353.433594 196.253906 C 353.433594 196.371094 353.527344 196.464844 353.644531 196.464844 C 353.761719 196.464844 353.855469 196.371094 353.855469 196.253906 Z M 353.855469 196.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.105469 194.203125 C 356.105469 194.085938 356.011719 193.992188 355.894531 193.992188 C 355.777344 193.992188 355.683594 194.085938 355.683594 194.203125 C 355.683594 194.320312 355.777344 194.414062 355.894531 194.414062 C 356.011719 194.414062 356.105469 194.320312 356.105469 194.203125 Z M 356.105469 194.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.5625 195.332031 C 354.5625 195.214844 354.46875 195.121094 354.351562 195.121094 C 354.234375 195.121094 354.140625 195.214844 354.140625 195.332031 C 354.140625 195.449219 354.234375 195.542969 354.351562 195.542969 C 354.46875 195.542969 354.5625 195.449219 354.5625 195.332031 Z M 354.5625 195.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.324219 200.265625 C 354.324219 200.148438 354.230469 200.054688 354.113281 200.054688 C 353.996094 200.054688 353.902344 200.148438 353.902344 200.265625 C 353.902344 200.382812 353.996094 200.476562 354.113281 200.476562 C 354.230469 200.476562 354.324219 200.382812 354.324219 200.265625 Z M 354.324219 200.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.367188 201.871094 C 356.367188 201.753906 356.273438 201.660156 356.15625 201.660156 C 356.039062 201.660156 355.945312 201.753906 355.945312 201.871094 C 355.945312 201.988281 356.039062 202.082031 356.15625 202.082031 C 356.273438 202.082031 356.367188 201.988281 356.367188 201.871094 Z M 356.367188 201.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.835938 202.441406 C 358.835938 202.324219 358.742188 202.230469 358.625 202.230469 C 358.507812 202.230469 358.414062 202.324219 358.414062 202.441406 C 358.414062 202.558594 358.507812 202.652344 358.625 202.652344 C 358.742188 202.652344 358.835938 202.558594 358.835938 202.441406 Z M 358.835938 202.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 359.667969 202.386719 C 359.667969 202.269531 359.574219 202.175781 359.457031 202.175781 C 359.339844 202.175781 359.246094 202.269531 359.246094 202.386719 C 359.246094 202.503906 359.339844 202.597656 359.457031 202.597656 C 359.574219 202.597656 359.667969 202.503906 359.667969 202.386719 Z M 359.667969 202.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 359.28125 199.429688 C 359.28125 199.3125 359.1875 199.21875 359.070312 199.21875 C 358.953125 199.21875 358.859375 199.3125 358.859375 199.429688 C 358.859375 199.546875 358.953125 199.640625 359.070312 199.640625 C 359.1875 199.640625 359.28125 199.546875 359.28125 199.429688 Z M 359.28125 199.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.285156 196.867188 C 356.285156 196.75 356.191406 196.65625 356.074219 196.65625 C 355.957031 196.65625 355.863281 196.75 355.863281 196.867188 C 355.863281 196.984375 355.957031 197.078125 356.074219 197.078125 C 356.191406 197.078125 356.285156 196.984375 356.285156 196.867188 Z M 356.285156 196.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.824219 196.121094 C 356.824219 196.003906 356.730469 195.910156 356.613281 195.910156 C 356.496094 195.910156 356.402344 196.003906 356.402344 196.121094 C 356.402344 196.238281 356.496094 196.332031 356.613281 196.332031 C 356.730469 196.332031 356.824219 196.238281 356.824219 196.121094 Z M 356.824219 196.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.613281 195.441406 C 354.613281 195.324219 354.519531 195.230469 354.402344 195.230469 C 354.285156 195.230469 354.191406 195.324219 354.191406 195.441406 C 354.191406 195.558594 354.285156 195.652344 354.402344 195.652344 C 354.519531 195.652344 354.613281 195.558594 354.613281 195.441406 Z M 354.613281 195.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.308594 193.566406 C 355.308594 193.449219 355.214844 193.355469 355.097656 193.355469 C 354.980469 193.355469 354.886719 193.449219 354.886719 193.566406 C 354.886719 193.683594 354.980469 193.777344 355.097656 193.777344 C 355.214844 193.777344 355.308594 193.683594 355.308594 193.566406 Z M 355.308594 193.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.90625 194.160156 C 353.90625 194.042969 353.8125 193.949219 353.695312 193.949219 C 353.578125 193.949219 353.484375 194.042969 353.484375 194.160156 C 353.484375 194.277344 353.578125 194.371094 353.695312 194.371094 C 353.8125 194.371094 353.90625 194.277344 353.90625 194.160156 Z M 353.90625 194.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.292969 194.542969 C 355.292969 194.425781 355.199219 194.332031 355.082031 194.332031 C 354.964844 194.332031 354.871094 194.425781 354.871094 194.542969 C 354.871094 194.660156 354.964844 194.753906 355.082031 194.753906 C 355.199219 194.753906 355.292969 194.660156 355.292969 194.542969 Z M 355.292969 194.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.515625 197.882812 C 356.515625 197.765625 356.421875 197.671875 356.304688 197.671875 C 356.1875 197.671875 356.09375 197.765625 356.09375 197.882812 C 356.09375 198 356.1875 198.09375 356.304688 198.09375 C 356.421875 198.09375 356.515625 198 356.515625 197.882812 Z M 356.515625 197.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.386719 197.644531 C 355.386719 197.527344 355.292969 197.433594 355.175781 197.433594 C 355.058594 197.433594 354.964844 197.527344 354.964844 197.644531 C 354.964844 197.761719 355.058594 197.855469 355.175781 197.855469 C 355.292969 197.855469 355.386719 197.761719 355.386719 197.644531 Z M 355.386719 197.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.648438 198.261719 C 356.648438 198.144531 356.554688 198.050781 356.4375 198.050781 C 356.320312 198.050781 356.226562 198.144531 356.226562 198.261719 C 356.226562 198.378906 356.320312 198.472656 356.4375 198.472656 C 356.554688 198.472656 356.648438 198.378906 356.648438 198.261719 Z M 356.648438 198.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.527344 195.894531 C 355.527344 195.777344 355.433594 195.683594 355.316406 195.683594 C 355.199219 195.683594 355.105469 195.777344 355.105469 195.894531 C 355.105469 196.011719 355.199219 196.105469 355.316406 196.105469 C 355.433594 196.105469 355.527344 196.011719 355.527344 195.894531 Z M 355.527344 195.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.835938 197.378906 C 354.835938 197.261719 354.742188 197.167969 354.625 197.167969 C 354.507812 197.167969 354.414062 197.261719 354.414062 197.378906 C 354.414062 197.496094 354.507812 197.589844 354.625 197.589844 C 354.742188 197.589844 354.835938 197.496094 354.835938 197.378906 Z M 354.835938 197.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.035156 201.65625 C 356.035156 201.539062 355.941406 201.445312 355.824219 201.445312 C 355.707031 201.445312 355.613281 201.539062 355.613281 201.65625 C 355.613281 201.773438 355.707031 201.867188 355.824219 201.867188 C 355.941406 201.867188 356.035156 201.773438 356.035156 201.65625 Z M 356.035156 201.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 352.507812 202.09375 C 352.507812 201.976562 352.414062 201.882812 352.296875 201.882812 C 352.179688 201.882812 352.085938 201.976562 352.085938 202.09375 C 352.085938 202.210938 352.179688 202.304688 352.296875 202.304688 C 352.414062 202.304688 352.507812 202.210938 352.507812 202.09375 Z M 352.507812 202.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 350.605469 206.417969 C 350.605469 206.300781 350.511719 206.207031 350.394531 206.207031 C 350.277344 206.207031 350.183594 206.300781 350.183594 206.417969 C 350.183594 206.535156 350.277344 206.628906 350.394531 206.628906 C 350.511719 206.628906 350.605469 206.535156 350.605469 206.417969 Z M 350.605469 206.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.007812 206.660156 C 354.007812 206.542969 353.914062 206.449219 353.796875 206.449219 C 353.679688 206.449219 353.585938 206.542969 353.585938 206.660156 C 353.585938 206.777344 353.679688 206.871094 353.796875 206.871094 C 353.914062 206.871094 354.007812 206.777344 354.007812 206.660156 Z M 354.007812 206.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.632812 204.703125 C 354.632812 204.585938 354.539062 204.492188 354.421875 204.492188 C 354.304688 204.492188 354.210938 204.585938 354.210938 204.703125 C 354.210938 204.820312 354.304688 204.914062 354.421875 204.914062 C 354.539062 204.914062 354.632812 204.820312 354.632812 204.703125 Z M 354.632812 204.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 352.496094 208.777344 C 352.496094 208.660156 352.402344 208.566406 352.285156 208.566406 C 352.167969 208.566406 352.074219 208.660156 352.074219 208.777344 C 352.074219 208.894531 352.167969 208.988281 352.285156 208.988281 C 352.402344 208.988281 352.496094 208.894531 352.496094 208.777344 Z M 352.496094 208.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.648438 210.980469 C 353.648438 210.863281 353.554688 210.769531 353.4375 210.769531 C 353.320312 210.769531 353.226562 210.863281 353.226562 210.980469 C 353.226562 211.097656 353.320312 211.191406 353.4375 211.191406 C 353.554688 211.191406 353.648438 211.097656 353.648438 210.980469 Z M 353.648438 210.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.421875 215.445312 C 351.421875 215.328125 351.328125 215.234375 351.210938 215.234375 C 351.09375 215.234375 351 215.328125 351 215.445312 C 351 215.5625 351.09375 215.65625 351.210938 215.65625 C 351.328125 215.65625 351.421875 215.5625 351.421875 215.445312 Z M 351.421875 215.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 347.695312 213.234375 C 347.695312 213.117188 347.601562 213.023438 347.484375 213.023438 C 347.367188 213.023438 347.273438 213.117188 347.273438 213.234375 C 347.273438 213.351562 347.367188 213.445312 347.484375 213.445312 C 347.601562 213.445312 347.695312 213.351562 347.695312 213.234375 Z M 347.695312 213.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 348.265625 213.058594 C 348.265625 212.941406 348.171875 212.847656 348.054688 212.847656 C 347.9375 212.847656 347.84375 212.941406 347.84375 213.058594 C 347.84375 213.175781 347.9375 213.269531 348.054688 213.269531 C 348.171875 213.269531 348.265625 213.175781 348.265625 213.058594 Z M 348.265625 213.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 346.527344 212.90625 C 346.527344 212.789062 346.433594 212.695312 346.316406 212.695312 C 346.199219 212.695312 346.105469 212.789062 346.105469 212.90625 C 346.105469 213.023438 346.199219 213.117188 346.316406 213.117188 C 346.433594 213.117188 346.527344 213.023438 346.527344 212.90625 Z M 346.527344 212.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 347.09375 213.054688 C 347.09375 212.9375 347 212.84375 346.882812 212.84375 C 346.765625 212.84375 346.671875 212.9375 346.671875 213.054688 C 346.671875 213.171875 346.765625 213.265625 346.882812 213.265625 C 347 213.265625 347.09375 213.171875 347.09375 213.054688 Z M 347.09375 213.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 348.542969 214.019531 C 348.542969 213.902344 348.449219 213.808594 348.332031 213.808594 C 348.214844 213.808594 348.121094 213.902344 348.121094 214.019531 C 348.121094 214.136719 348.214844 214.230469 348.332031 214.230469 C 348.449219 214.230469 348.542969 214.136719 348.542969 214.019531 Z M 348.542969 214.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 350.007812 213.019531 C 350.007812 212.902344 349.914062 212.808594 349.796875 212.808594 C 349.679688 212.808594 349.585938 212.902344 349.585938 213.019531 C 349.585938 213.136719 349.679688 213.230469 349.796875 213.230469 C 349.914062 213.230469 350.007812 213.136719 350.007812 213.019531 Z M 350.007812 213.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 350.734375 214.269531 C 350.734375 214.152344 350.640625 214.058594 350.523438 214.058594 C 350.40625 214.058594 350.3125 214.152344 350.3125 214.269531 C 350.3125 214.386719 350.40625 214.480469 350.523438 214.480469 C 350.640625 214.480469 350.734375 214.386719 350.734375 214.269531 Z M 350.734375 214.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 349.933594 215.226562 C 349.933594 215.109375 349.839844 215.015625 349.722656 215.015625 C 349.605469 215.015625 349.511719 215.109375 349.511719 215.226562 C 349.511719 215.34375 349.605469 215.4375 349.722656 215.4375 C 349.839844 215.4375 349.933594 215.34375 349.933594 215.226562 Z M 349.933594 215.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 350.9375 214.460938 C 350.9375 214.34375 350.84375 214.25 350.726562 214.25 C 350.609375 214.25 350.515625 214.34375 350.515625 214.460938 C 350.515625 214.578125 350.609375 214.671875 350.726562 214.671875 C 350.84375 214.671875 350.9375 214.578125 350.9375 214.460938 Z M 350.9375 214.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.441406 217.390625 C 351.441406 217.273438 351.347656 217.179688 351.230469 217.179688 C 351.113281 217.179688 351.019531 217.273438 351.019531 217.390625 C 351.019531 217.507812 351.113281 217.601562 351.230469 217.601562 C 351.347656 217.601562 351.441406 217.507812 351.441406 217.390625 Z M 351.441406 217.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 349.574219 214.296875 C 349.574219 214.179688 349.480469 214.085938 349.363281 214.085938 C 349.246094 214.085938 349.152344 214.179688 349.152344 214.296875 C 349.152344 214.414062 349.246094 214.507812 349.363281 214.507812 C 349.480469 214.507812 349.574219 214.414062 349.574219 214.296875 Z M 349.574219 214.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 352.964844 213.578125 C 352.964844 213.460938 352.871094 213.367188 352.753906 213.367188 C 352.636719 213.367188 352.542969 213.460938 352.542969 213.578125 C 352.542969 213.695312 352.636719 213.789062 352.753906 213.789062 C 352.871094 213.789062 352.964844 213.695312 352.964844 213.578125 Z M 352.964844 213.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.433594 212.492188 C 351.433594 212.375 351.339844 212.28125 351.222656 212.28125 C 351.105469 212.28125 351.011719 212.375 351.011719 212.492188 C 351.011719 212.609375 351.105469 212.703125 351.222656 212.703125 C 351.339844 212.703125 351.433594 212.609375 351.433594 212.492188 Z M 351.433594 212.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.800781 214.042969 C 351.800781 213.925781 351.707031 213.832031 351.589844 213.832031 C 351.472656 213.832031 351.378906 213.925781 351.378906 214.042969 C 351.378906 214.160156 351.472656 214.253906 351.589844 214.253906 C 351.707031 214.253906 351.800781 214.160156 351.800781 214.042969 Z M 351.800781 214.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.652344 217.046875 C 355.652344 216.929688 355.558594 216.835938 355.441406 216.835938 C 355.324219 216.835938 355.230469 216.929688 355.230469 217.046875 C 355.230469 217.164062 355.324219 217.257812 355.441406 217.257812 C 355.558594 217.257812 355.652344 217.164062 355.652344 217.046875 Z M 355.652344 217.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.464844 214.644531 C 353.464844 214.527344 353.371094 214.433594 353.253906 214.433594 C 353.136719 214.433594 353.042969 214.527344 353.042969 214.644531 C 353.042969 214.761719 353.136719 214.855469 353.253906 214.855469 C 353.371094 214.855469 353.464844 214.761719 353.464844 214.644531 Z M 353.464844 214.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.261719 216.707031 C 354.261719 216.589844 354.167969 216.496094 354.050781 216.496094 C 353.933594 216.496094 353.839844 216.589844 353.839844 216.707031 C 353.839844 216.824219 353.933594 216.917969 354.050781 216.917969 C 354.167969 216.917969 354.261719 216.824219 354.261719 216.707031 Z M 354.261719 216.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.238281 217.433594 C 353.238281 217.316406 353.144531 217.222656 353.027344 217.222656 C 352.910156 217.222656 352.816406 217.316406 352.816406 217.433594 C 352.816406 217.550781 352.910156 217.644531 353.027344 217.644531 C 353.144531 217.644531 353.238281 217.550781 353.238281 217.433594 Z M 353.238281 217.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 352.042969 218.191406 C 352.042969 218.074219 351.949219 217.980469 351.832031 217.980469 C 351.714844 217.980469 351.621094 218.074219 351.621094 218.191406 C 351.621094 218.308594 351.714844 218.402344 351.832031 218.402344 C 351.949219 218.402344 352.042969 218.308594 352.042969 218.191406 Z M 352.042969 218.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 352.859375 220 C 352.859375 219.882812 352.765625 219.789062 352.648438 219.789062 C 352.53125 219.789062 352.4375 219.882812 352.4375 220 C 352.4375 220.117188 352.53125 220.210938 352.648438 220.210938 C 352.765625 220.210938 352.859375 220.117188 352.859375 220 Z M 352.859375 220 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 349.460938 217.058594 C 349.460938 216.941406 349.367188 216.847656 349.25 216.847656 C 349.132812 216.847656 349.039062 216.941406 349.039062 217.058594 C 349.039062 217.175781 349.132812 217.269531 349.25 217.269531 C 349.367188 217.269531 349.460938 217.175781 349.460938 217.058594 Z M 349.460938 217.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 346.578125 216.9375 C 346.578125 216.820312 346.484375 216.726562 346.367188 216.726562 C 346.25 216.726562 346.15625 216.820312 346.15625 216.9375 C 346.15625 217.054688 346.25 217.148438 346.367188 217.148438 C 346.484375 217.148438 346.578125 217.054688 346.578125 216.9375 Z M 346.578125 216.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 347.800781 222.6875 C 347.800781 222.570312 347.707031 222.476562 347.589844 222.476562 C 347.472656 222.476562 347.378906 222.570312 347.378906 222.6875 C 347.378906 222.804688 347.472656 222.898438 347.589844 222.898438 C 347.707031 222.898438 347.800781 222.804688 347.800781 222.6875 Z M 347.800781 222.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 344.675781 225.453125 C 344.675781 225.335938 344.582031 225.242188 344.464844 225.242188 C 344.347656 225.242188 344.253906 225.335938 344.253906 225.453125 C 344.253906 225.570312 344.347656 225.664062 344.464844 225.664062 C 344.582031 225.664062 344.675781 225.570312 344.675781 225.453125 Z M 344.675781 225.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 344.003906 224.589844 C 344.003906 224.472656 343.910156 224.378906 343.792969 224.378906 C 343.675781 224.378906 343.582031 224.472656 343.582031 224.589844 C 343.582031 224.707031 343.675781 224.800781 343.792969 224.800781 C 343.910156 224.800781 344.003906 224.707031 344.003906 224.589844 Z M 344.003906 224.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 343.085938 224.828125 C 343.085938 224.710938 342.992188 224.617188 342.875 224.617188 C 342.757812 224.617188 342.664062 224.710938 342.664062 224.828125 C 342.664062 224.945312 342.757812 225.039062 342.875 225.039062 C 342.992188 225.039062 343.085938 224.945312 343.085938 224.828125 Z M 343.085938 224.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 345.027344 223.296875 C 345.027344 223.179688 344.933594 223.085938 344.816406 223.085938 C 344.699219 223.085938 344.605469 223.179688 344.605469 223.296875 C 344.605469 223.414062 344.699219 223.507812 344.816406 223.507812 C 344.933594 223.507812 345.027344 223.414062 345.027344 223.296875 Z M 345.027344 223.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 341.308594 223.730469 C 341.308594 223.613281 341.214844 223.519531 341.097656 223.519531 C 340.980469 223.519531 340.886719 223.613281 340.886719 223.730469 C 340.886719 223.847656 340.980469 223.941406 341.097656 223.941406 C 341.214844 223.941406 341.308594 223.847656 341.308594 223.730469 Z M 341.308594 223.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 342.460938 223.9375 C 342.460938 223.820312 342.367188 223.726562 342.25 223.726562 C 342.132812 223.726562 342.039062 223.820312 342.039062 223.9375 C 342.039062 224.054688 342.132812 224.148438 342.25 224.148438 C 342.367188 224.148438 342.460938 224.054688 342.460938 223.9375 Z M 342.460938 223.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 343.035156 225.339844 C 343.035156 225.222656 342.941406 225.128906 342.824219 225.128906 C 342.707031 225.128906 342.613281 225.222656 342.613281 225.339844 C 342.613281 225.457031 342.707031 225.550781 342.824219 225.550781 C 342.941406 225.550781 343.035156 225.457031 343.035156 225.339844 Z M 343.035156 225.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 342.523438 225.8125 C 342.523438 225.695312 342.429688 225.601562 342.3125 225.601562 C 342.195312 225.601562 342.101562 225.695312 342.101562 225.8125 C 342.101562 225.929688 342.195312 226.023438 342.3125 226.023438 C 342.429688 226.023438 342.523438 225.929688 342.523438 225.8125 Z M 342.523438 225.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 345.5625 225.976562 C 345.5625 225.859375 345.46875 225.765625 345.351562 225.765625 C 345.234375 225.765625 345.140625 225.859375 345.140625 225.976562 C 345.140625 226.09375 345.234375 226.1875 345.351562 226.1875 C 345.46875 226.1875 345.5625 226.09375 345.5625 225.976562 Z M 345.5625 225.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.105469 226.28125 C 351.105469 226.164062 351.011719 226.070312 350.894531 226.070312 C 350.777344 226.070312 350.683594 226.164062 350.683594 226.28125 C 350.683594 226.398438 350.777344 226.492188 350.894531 226.492188 C 351.011719 226.492188 351.105469 226.398438 351.105469 226.28125 Z M 351.105469 226.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.375 227.625 C 351.375 227.507812 351.28125 227.414062 351.164062 227.414062 C 351.046875 227.414062 350.953125 227.507812 350.953125 227.625 C 350.953125 227.742188 351.046875 227.835938 351.164062 227.835938 C 351.28125 227.835938 351.375 227.742188 351.375 227.625 Z M 351.375 227.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.914062 226.914062 C 351.914062 226.796875 351.820312 226.703125 351.703125 226.703125 C 351.585938 226.703125 351.492188 226.796875 351.492188 226.914062 C 351.492188 227.03125 351.585938 227.125 351.703125 227.125 C 351.820312 227.125 351.914062 227.03125 351.914062 226.914062 Z M 351.914062 226.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 349.8125 226.378906 C 349.8125 226.261719 349.71875 226.167969 349.601562 226.167969 C 349.484375 226.167969 349.390625 226.261719 349.390625 226.378906 C 349.390625 226.496094 349.484375 226.589844 349.601562 226.589844 C 349.71875 226.589844 349.8125 226.496094 349.8125 226.378906 Z M 349.8125 226.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 349.472656 225.191406 C 349.472656 225.074219 349.378906 224.980469 349.261719 224.980469 C 349.144531 224.980469 349.050781 225.074219 349.050781 225.191406 C 349.050781 225.308594 349.144531 225.402344 349.261719 225.402344 C 349.378906 225.402344 349.472656 225.308594 349.472656 225.191406 Z M 349.472656 225.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 350.058594 228.4375 C 350.058594 228.320312 349.964844 228.226562 349.847656 228.226562 C 349.730469 228.226562 349.636719 228.320312 349.636719 228.4375 C 349.636719 228.554688 349.730469 228.648438 349.847656 228.648438 C 349.964844 228.648438 350.058594 228.554688 350.058594 228.4375 Z M 350.058594 228.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.015625 229.714844 C 354.015625 229.597656 353.921875 229.503906 353.804688 229.503906 C 353.6875 229.503906 353.59375 229.597656 353.59375 229.714844 C 353.59375 229.832031 353.6875 229.925781 353.804688 229.925781 C 353.921875 229.925781 354.015625 229.832031 354.015625 229.714844 Z M 354.015625 229.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 352.273438 230.492188 C 352.273438 230.375 352.179688 230.28125 352.0625 230.28125 C 351.945312 230.28125 351.851562 230.375 351.851562 230.492188 C 351.851562 230.609375 351.945312 230.703125 352.0625 230.703125 C 352.179688 230.703125 352.273438 230.609375 352.273438 230.492188 Z M 352.273438 230.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.652344 228.15625 C 351.652344 228.039062 351.558594 227.945312 351.441406 227.945312 C 351.324219 227.945312 351.230469 228.039062 351.230469 228.15625 C 351.230469 228.273438 351.324219 228.367188 351.441406 228.367188 C 351.558594 228.367188 351.652344 228.273438 351.652344 228.15625 Z M 351.652344 228.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.800781 224.945312 C 353.800781 224.828125 353.707031 224.734375 353.589844 224.734375 C 353.472656 224.734375 353.378906 224.828125 353.378906 224.945312 C 353.378906 225.0625 353.472656 225.15625 353.589844 225.15625 C 353.707031 225.15625 353.800781 225.0625 353.800781 224.945312 Z M 353.800781 224.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.261719 226.152344 C 354.261719 226.035156 354.167969 225.941406 354.050781 225.941406 C 353.933594 225.941406 353.839844 226.035156 353.839844 226.152344 C 353.839844 226.269531 353.933594 226.363281 354.050781 226.363281 C 354.167969 226.363281 354.261719 226.269531 354.261719 226.152344 Z M 354.261719 226.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.007812 230.167969 C 353.007812 230.050781 352.914062 229.957031 352.796875 229.957031 C 352.679688 229.957031 352.585938 230.050781 352.585938 230.167969 C 352.585938 230.285156 352.679688 230.378906 352.796875 230.378906 C 352.914062 230.378906 353.007812 230.285156 353.007812 230.167969 Z M 353.007812 230.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 352.691406 229.710938 C 352.691406 229.59375 352.597656 229.5 352.480469 229.5 C 352.363281 229.5 352.269531 229.59375 352.269531 229.710938 C 352.269531 229.828125 352.363281 229.921875 352.480469 229.921875 C 352.597656 229.921875 352.691406 229.828125 352.691406 229.710938 Z M 352.691406 229.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.214844 232.039062 C 354.214844 231.921875 354.121094 231.828125 354.003906 231.828125 C 353.886719 231.828125 353.792969 231.921875 353.792969 232.039062 C 353.792969 232.15625 353.886719 232.25 354.003906 232.25 C 354.121094 232.25 354.214844 232.15625 354.214844 232.039062 Z M 354.214844 232.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 350.597656 234.8125 C 350.597656 234.695312 350.503906 234.601562 350.386719 234.601562 C 350.269531 234.601562 350.175781 234.695312 350.175781 234.8125 C 350.175781 234.929688 350.269531 235.023438 350.386719 235.023438 C 350.503906 235.023438 350.597656 234.929688 350.597656 234.8125 Z M 350.597656 234.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 350.511719 233.386719 C 350.511719 233.269531 350.417969 233.175781 350.300781 233.175781 C 350.183594 233.175781 350.089844 233.269531 350.089844 233.386719 C 350.089844 233.503906 350.183594 233.597656 350.300781 233.597656 C 350.417969 233.597656 350.511719 233.503906 350.511719 233.386719 Z M 350.511719 233.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.050781 231.917969 C 354.050781 231.800781 353.957031 231.707031 353.839844 231.707031 C 353.722656 231.707031 353.628906 231.800781 353.628906 231.917969 C 353.628906 232.035156 353.722656 232.128906 353.839844 232.128906 C 353.957031 232.128906 354.050781 232.035156 354.050781 231.917969 Z M 354.050781 231.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.484375 230.351562 C 353.484375 230.234375 353.390625 230.140625 353.273438 230.140625 C 353.15625 230.140625 353.0625 230.234375 353.0625 230.351562 C 353.0625 230.46875 353.15625 230.5625 353.273438 230.5625 C 353.390625 230.5625 353.484375 230.46875 353.484375 230.351562 Z M 353.484375 230.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.785156 231.40625 C 354.785156 231.289062 354.691406 231.195312 354.574219 231.195312 C 354.457031 231.195312 354.363281 231.289062 354.363281 231.40625 C 354.363281 231.523438 354.457031 231.617188 354.574219 231.617188 C 354.691406 231.617188 354.785156 231.523438 354.785156 231.40625 Z M 354.785156 231.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.082031 231.285156 C 358.082031 231.167969 357.988281 231.074219 357.871094 231.074219 C 357.753906 231.074219 357.660156 231.167969 357.660156 231.285156 C 357.660156 231.402344 357.753906 231.496094 357.871094 231.496094 C 357.988281 231.496094 358.082031 231.402344 358.082031 231.285156 Z M 358.082031 231.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 360.730469 232.796875 C 360.730469 232.679688 360.636719 232.585938 360.519531 232.585938 C 360.402344 232.585938 360.308594 232.679688 360.308594 232.796875 C 360.308594 232.914062 360.402344 233.007812 360.519531 233.007812 C 360.636719 233.007812 360.730469 232.914062 360.730469 232.796875 Z M 360.730469 232.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 359.785156 232.648438 C 359.785156 232.53125 359.691406 232.4375 359.574219 232.4375 C 359.457031 232.4375 359.363281 232.53125 359.363281 232.648438 C 359.363281 232.765625 359.457031 232.859375 359.574219 232.859375 C 359.691406 232.859375 359.785156 232.765625 359.785156 232.648438 Z M 359.785156 232.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 360.226562 232.109375 C 360.226562 231.992188 360.132812 231.898438 360.015625 231.898438 C 359.898438 231.898438 359.804688 231.992188 359.804688 232.109375 C 359.804688 232.226562 359.898438 232.320312 360.015625 232.320312 C 360.132812 232.320312 360.226562 232.226562 360.226562 232.109375 Z M 360.226562 232.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.707031 233.292969 C 358.707031 233.175781 358.613281 233.082031 358.496094 233.082031 C 358.378906 233.082031 358.285156 233.175781 358.285156 233.292969 C 358.285156 233.410156 358.378906 233.503906 358.496094 233.503906 C 358.613281 233.503906 358.707031 233.410156 358.707031 233.292969 Z M 358.707031 233.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.765625 232.035156 C 358.765625 231.917969 358.671875 231.824219 358.554688 231.824219 C 358.4375 231.824219 358.34375 231.917969 358.34375 232.035156 C 358.34375 232.152344 358.4375 232.246094 358.554688 232.246094 C 358.671875 232.246094 358.765625 232.152344 358.765625 232.035156 Z M 358.765625 232.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.089844 231.800781 C 358.089844 231.683594 357.996094 231.589844 357.878906 231.589844 C 357.761719 231.589844 357.667969 231.683594 357.667969 231.800781 C 357.667969 231.917969 357.761719 232.011719 357.878906 232.011719 C 357.996094 232.011719 358.089844 231.917969 358.089844 231.800781 Z M 358.089844 231.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 360.203125 230.96875 C 360.203125 230.851562 360.109375 230.757812 359.992188 230.757812 C 359.875 230.757812 359.78125 230.851562 359.78125 230.96875 C 359.78125 231.085938 359.875 231.179688 359.992188 231.179688 C 360.109375 231.179688 360.203125 231.085938 360.203125 230.96875 Z M 360.203125 230.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 361.601562 234.160156 C 361.601562 234.042969 361.507812 233.949219 361.390625 233.949219 C 361.273438 233.949219 361.179688 234.042969 361.179688 234.160156 C 361.179688 234.277344 361.273438 234.371094 361.390625 234.371094 C 361.507812 234.371094 361.601562 234.277344 361.601562 234.160156 Z M 361.601562 234.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 359.988281 234.707031 C 359.988281 234.589844 359.894531 234.496094 359.777344 234.496094 C 359.660156 234.496094 359.566406 234.589844 359.566406 234.707031 C 359.566406 234.824219 359.660156 234.917969 359.777344 234.917969 C 359.894531 234.917969 359.988281 234.824219 359.988281 234.707031 Z M 359.988281 234.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 361.609375 235.332031 C 361.609375 235.214844 361.515625 235.121094 361.398438 235.121094 C 361.28125 235.121094 361.1875 235.214844 361.1875 235.332031 C 361.1875 235.449219 361.28125 235.542969 361.398438 235.542969 C 361.515625 235.542969 361.609375 235.449219 361.609375 235.332031 Z M 361.609375 235.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 362.144531 237.507812 C 362.144531 237.390625 362.050781 237.296875 361.933594 237.296875 C 361.816406 237.296875 361.722656 237.390625 361.722656 237.507812 C 361.722656 237.625 361.816406 237.71875 361.933594 237.71875 C 362.050781 237.71875 362.144531 237.625 362.144531 237.507812 Z M 362.144531 237.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 362.078125 238.074219 C 362.078125 237.957031 361.984375 237.863281 361.867188 237.863281 C 361.75 237.863281 361.65625 237.957031 361.65625 238.074219 C 361.65625 238.191406 361.75 238.285156 361.867188 238.285156 C 361.984375 238.285156 362.078125 238.191406 362.078125 238.074219 Z M 362.078125 238.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 360.207031 239.550781 C 360.207031 239.433594 360.113281 239.339844 359.996094 239.339844 C 359.878906 239.339844 359.785156 239.433594 359.785156 239.550781 C 359.785156 239.667969 359.878906 239.761719 359.996094 239.761719 C 360.113281 239.761719 360.207031 239.667969 360.207031 239.550781 Z M 360.207031 239.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 361.390625 238.21875 C 361.390625 238.101562 361.296875 238.007812 361.179688 238.007812 C 361.0625 238.007812 360.96875 238.101562 360.96875 238.21875 C 360.96875 238.335938 361.0625 238.429688 361.179688 238.429688 C 361.296875 238.429688 361.390625 238.335938 361.390625 238.21875 Z M 361.390625 238.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.644531 243.503906 C 358.644531 243.386719 358.550781 243.292969 358.433594 243.292969 C 358.316406 243.292969 358.222656 243.386719 358.222656 243.503906 C 358.222656 243.621094 358.316406 243.714844 358.433594 243.714844 C 358.550781 243.714844 358.644531 243.621094 358.644531 243.503906 Z M 358.644531 243.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.246094 244.691406 C 358.246094 244.574219 358.152344 244.480469 358.035156 244.480469 C 357.917969 244.480469 357.824219 244.574219 357.824219 244.691406 C 357.824219 244.808594 357.917969 244.902344 358.035156 244.902344 C 358.152344 244.902344 358.246094 244.808594 358.246094 244.691406 Z M 358.246094 244.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 359.277344 243.460938 C 359.277344 243.34375 359.183594 243.25 359.066406 243.25 C 358.949219 243.25 358.855469 243.34375 358.855469 243.460938 C 358.855469 243.578125 358.949219 243.671875 359.066406 243.671875 C 359.183594 243.671875 359.277344 243.578125 359.277344 243.460938 Z M 359.277344 243.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 358.433594 246.085938 C 358.433594 245.96875 358.339844 245.875 358.222656 245.875 C 358.105469 245.875 358.011719 245.96875 358.011719 246.085938 C 358.011719 246.203125 358.105469 246.296875 358.222656 246.296875 C 358.339844 246.296875 358.433594 246.203125 358.433594 246.085938 Z M 358.433594 246.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 357.925781 247.378906 C 357.925781 247.261719 357.832031 247.167969 357.714844 247.167969 C 357.597656 247.167969 357.503906 247.261719 357.503906 247.378906 C 357.503906 247.496094 357.597656 247.589844 357.714844 247.589844 C 357.832031 247.589844 357.925781 247.496094 357.925781 247.378906 Z M 357.925781 247.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 357.480469 248.652344 C 357.480469 248.535156 357.386719 248.441406 357.269531 248.441406 C 357.152344 248.441406 357.058594 248.535156 357.058594 248.652344 C 357.058594 248.769531 357.152344 248.863281 357.269531 248.863281 C 357.386719 248.863281 357.480469 248.769531 357.480469 248.652344 Z M 357.480469 248.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.960938 248.445312 C 356.960938 248.328125 356.867188 248.234375 356.75 248.234375 C 356.632812 248.234375 356.539062 248.328125 356.539062 248.445312 C 356.539062 248.5625 356.632812 248.65625 356.75 248.65625 C 356.867188 248.65625 356.960938 248.5625 356.960938 248.445312 Z M 356.960938 248.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.226562 244.984375 C 354.226562 244.867188 354.132812 244.773438 354.015625 244.773438 C 353.898438 244.773438 353.804688 244.867188 353.804688 244.984375 C 353.804688 245.101562 353.898438 245.195312 354.015625 245.195312 C 354.132812 245.195312 354.226562 245.101562 354.226562 244.984375 Z M 354.226562 244.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.820312 243.316406 C 353.820312 243.199219 353.726562 243.105469 353.609375 243.105469 C 353.492188 243.105469 353.398438 243.199219 353.398438 243.316406 C 353.398438 243.433594 353.492188 243.527344 353.609375 243.527344 C 353.726562 243.527344 353.820312 243.433594 353.820312 243.316406 Z M 353.820312 243.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.113281 243.351562 C 354.113281 243.234375 354.019531 243.140625 353.902344 243.140625 C 353.785156 243.140625 353.691406 243.234375 353.691406 243.351562 C 353.691406 243.46875 353.785156 243.5625 353.902344 243.5625 C 354.019531 243.5625 354.113281 243.46875 354.113281 243.351562 Z M 354.113281 243.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.648438 243.902344 C 356.648438 243.785156 356.554688 243.691406 356.4375 243.691406 C 356.320312 243.691406 356.226562 243.785156 356.226562 243.902344 C 356.226562 244.019531 356.320312 244.113281 356.4375 244.113281 C 356.554688 244.113281 356.648438 244.019531 356.648438 243.902344 Z M 356.648438 243.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.214844 244.804688 C 355.214844 244.6875 355.121094 244.59375 355.003906 244.59375 C 354.886719 244.59375 354.792969 244.6875 354.792969 244.804688 C 354.792969 244.921875 354.886719 245.015625 355.003906 245.015625 C 355.121094 245.015625 355.214844 244.921875 355.214844 244.804688 Z M 355.214844 244.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.769531 243.933594 C 354.769531 243.816406 354.675781 243.722656 354.558594 243.722656 C 354.441406 243.722656 354.347656 243.816406 354.347656 243.933594 C 354.347656 244.050781 354.441406 244.144531 354.558594 244.144531 C 354.675781 244.144531 354.769531 244.050781 354.769531 243.933594 Z M 354.769531 243.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 354.136719 242.503906 C 354.136719 242.386719 354.042969 242.292969 353.925781 242.292969 C 353.808594 242.292969 353.714844 242.386719 353.714844 242.503906 C 353.714844 242.621094 353.808594 242.714844 353.925781 242.714844 C 354.042969 242.714844 354.136719 242.621094 354.136719 242.503906 Z M 354.136719 242.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.765625 240.652344 C 351.765625 240.535156 351.671875 240.441406 351.554688 240.441406 C 351.4375 240.441406 351.34375 240.535156 351.34375 240.652344 C 351.34375 240.769531 351.4375 240.863281 351.554688 240.863281 C 351.671875 240.863281 351.765625 240.769531 351.765625 240.652344 Z M 351.765625 240.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 348.023438 239.238281 C 348.023438 239.121094 347.929688 239.027344 347.8125 239.027344 C 347.695312 239.027344 347.601562 239.121094 347.601562 239.238281 C 347.601562 239.355469 347.695312 239.449219 347.8125 239.449219 C 347.929688 239.449219 348.023438 239.355469 348.023438 239.238281 Z M 348.023438 239.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 346.515625 238.023438 C 346.515625 237.90625 346.421875 237.8125 346.304688 237.8125 C 346.1875 237.8125 346.09375 237.90625 346.09375 238.023438 C 346.09375 238.140625 346.1875 238.234375 346.304688 238.234375 C 346.421875 238.234375 346.515625 238.140625 346.515625 238.023438 Z M 346.515625 238.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 349.785156 237.011719 C 349.785156 236.894531 349.691406 236.800781 349.574219 236.800781 C 349.457031 236.800781 349.363281 236.894531 349.363281 237.011719 C 349.363281 237.128906 349.457031 237.222656 349.574219 237.222656 C 349.691406 237.222656 349.785156 237.128906 349.785156 237.011719 Z M 349.785156 237.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 346.964844 238.042969 C 346.964844 237.925781 346.871094 237.832031 346.753906 237.832031 C 346.636719 237.832031 346.542969 237.925781 346.542969 238.042969 C 346.542969 238.160156 346.636719 238.253906 346.753906 238.253906 C 346.871094 238.253906 346.964844 238.160156 346.964844 238.042969 Z M 346.964844 238.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 346.132812 238.226562 C 346.132812 238.109375 346.039062 238.015625 345.921875 238.015625 C 345.804688 238.015625 345.710938 238.109375 345.710938 238.226562 C 345.710938 238.34375 345.804688 238.4375 345.921875 238.4375 C 346.039062 238.4375 346.132812 238.34375 346.132812 238.226562 Z M 346.132812 238.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 349.480469 242.28125 C 349.480469 242.164062 349.386719 242.070312 349.269531 242.070312 C 349.152344 242.070312 349.058594 242.164062 349.058594 242.28125 C 349.058594 242.398438 349.152344 242.492188 349.269531 242.492188 C 349.386719 242.492188 349.480469 242.398438 349.480469 242.28125 Z M 349.480469 242.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 348.785156 245.074219 C 348.785156 244.957031 348.691406 244.863281 348.574219 244.863281 C 348.457031 244.863281 348.363281 244.957031 348.363281 245.074219 C 348.363281 245.191406 348.457031 245.285156 348.574219 245.285156 C 348.691406 245.285156 348.785156 245.191406 348.785156 245.074219 Z M 348.785156 245.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 350.859375 240.183594 C 350.859375 240.066406 350.765625 239.972656 350.648438 239.972656 C 350.53125 239.972656 350.4375 240.066406 350.4375 240.183594 C 350.4375 240.300781 350.53125 240.394531 350.648438 240.394531 C 350.765625 240.394531 350.859375 240.300781 350.859375 240.183594 Z M 350.859375 240.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 348.59375 237.105469 C 348.59375 236.988281 348.5 236.894531 348.382812 236.894531 C 348.265625 236.894531 348.171875 236.988281 348.171875 237.105469 C 348.171875 237.222656 348.265625 237.316406 348.382812 237.316406 C 348.5 237.316406 348.59375 237.222656 348.59375 237.105469 Z M 348.59375 237.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.792969 235.136719 C 351.792969 235.019531 351.699219 234.925781 351.582031 234.925781 C 351.464844 234.925781 351.371094 235.019531 351.371094 235.136719 C 351.371094 235.253906 351.464844 235.347656 351.582031 235.347656 C 351.699219 235.347656 351.792969 235.253906 351.792969 235.136719 Z M 351.792969 235.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 353.492188 232.679688 C 353.492188 232.5625 353.398438 232.46875 353.28125 232.46875 C 353.164062 232.46875 353.070312 232.5625 353.070312 232.679688 C 353.070312 232.796875 353.164062 232.890625 353.28125 232.890625 C 353.398438 232.890625 353.492188 232.796875 353.492188 232.679688 Z M 353.492188 232.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 348.390625 234.847656 C 348.390625 234.730469 348.296875 234.636719 348.179688 234.636719 C 348.0625 234.636719 347.96875 234.730469 347.96875 234.847656 C 347.96875 234.964844 348.0625 235.058594 348.179688 235.058594 C 348.296875 235.058594 348.390625 234.964844 348.390625 234.847656 Z M 348.390625 234.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 344.917969 235.320312 C 344.917969 235.203125 344.824219 235.109375 344.707031 235.109375 C 344.589844 235.109375 344.496094 235.203125 344.496094 235.320312 C 344.496094 235.4375 344.589844 235.53125 344.707031 235.53125 C 344.824219 235.53125 344.917969 235.4375 344.917969 235.320312 Z M 344.917969 235.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 344.394531 233.015625 C 344.394531 232.898438 344.300781 232.804688 344.183594 232.804688 C 344.066406 232.804688 343.972656 232.898438 343.972656 233.015625 C 343.972656 233.132812 344.066406 233.226562 344.183594 233.226562 C 344.300781 233.226562 344.394531 233.132812 344.394531 233.015625 Z M 344.394531 233.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 344.683594 232.203125 C 344.683594 232.085938 344.589844 231.992188 344.472656 231.992188 C 344.355469 231.992188 344.261719 232.085938 344.261719 232.203125 C 344.261719 232.320312 344.355469 232.414062 344.472656 232.414062 C 344.589844 232.414062 344.683594 232.320312 344.683594 232.203125 Z M 344.683594 232.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 344.160156 231.855469 C 344.160156 231.738281 344.066406 231.644531 343.949219 231.644531 C 343.832031 231.644531 343.738281 231.738281 343.738281 231.855469 C 343.738281 231.972656 343.832031 232.066406 343.949219 232.066406 C 344.066406 232.066406 344.160156 231.972656 344.160156 231.855469 Z M 344.160156 231.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 342.125 229.578125 C 342.125 229.460938 342.03125 229.367188 341.914062 229.367188 C 341.796875 229.367188 341.703125 229.460938 341.703125 229.578125 C 341.703125 229.695312 341.796875 229.789062 341.914062 229.789062 C 342.03125 229.789062 342.125 229.695312 342.125 229.578125 Z M 342.125 229.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 344.089844 228.367188 C 344.089844 228.25 343.996094 228.15625 343.878906 228.15625 C 343.761719 228.15625 343.667969 228.25 343.667969 228.367188 C 343.667969 228.484375 343.761719 228.578125 343.878906 228.578125 C 343.996094 228.578125 344.089844 228.484375 344.089844 228.367188 Z M 344.089844 228.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 346.648438 226.839844 C 346.648438 226.722656 346.554688 226.628906 346.4375 226.628906 C 346.320312 226.628906 346.226562 226.722656 346.226562 226.839844 C 346.226562 226.957031 346.320312 227.050781 346.4375 227.050781 C 346.554688 227.050781 346.648438 226.957031 346.648438 226.839844 Z M 346.648438 226.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 345.460938 229.144531 C 345.460938 229.027344 345.367188 228.933594 345.25 228.933594 C 345.132812 228.933594 345.039062 229.027344 345.039062 229.144531 C 345.039062 229.261719 345.132812 229.355469 345.25 229.355469 C 345.367188 229.355469 345.460938 229.261719 345.460938 229.144531 Z M 345.460938 229.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 344.054688 230.863281 C 344.054688 230.746094 343.960938 230.652344 343.84375 230.652344 C 343.726562 230.652344 343.632812 230.746094 343.632812 230.863281 C 343.632812 230.980469 343.726562 231.074219 343.84375 231.074219 C 343.960938 231.074219 344.054688 230.980469 344.054688 230.863281 Z M 344.054688 230.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 343.085938 232.496094 C 343.085938 232.378906 342.992188 232.285156 342.875 232.285156 C 342.757812 232.285156 342.664062 232.378906 342.664062 232.496094 C 342.664062 232.613281 342.757812 232.707031 342.875 232.707031 C 342.992188 232.707031 343.085938 232.613281 343.085938 232.496094 Z M 343.085938 232.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 348.367188 233.253906 C 348.367188 233.136719 348.273438 233.042969 348.15625 233.042969 C 348.039062 233.042969 347.945312 233.136719 347.945312 233.253906 C 347.945312 233.371094 348.039062 233.464844 348.15625 233.464844 C 348.273438 233.464844 348.367188 233.371094 348.367188 233.253906 Z M 348.367188 233.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 348.996094 232.03125 C 348.996094 231.914062 348.902344 231.820312 348.785156 231.820312 C 348.667969 231.820312 348.574219 231.914062 348.574219 232.03125 C 348.574219 232.148438 348.667969 232.242188 348.785156 232.242188 C 348.902344 232.242188 348.996094 232.148438 348.996094 232.03125 Z M 348.996094 232.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 350.230469 230.914062 C 350.230469 230.796875 350.136719 230.703125 350.019531 230.703125 C 349.902344 230.703125 349.808594 230.796875 349.808594 230.914062 C 349.808594 231.03125 349.902344 231.125 350.019531 231.125 C 350.136719 231.125 350.230469 231.03125 350.230469 230.914062 Z M 350.230469 230.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 349.28125 229.257812 C 349.28125 229.140625 349.1875 229.046875 349.070312 229.046875 C 348.953125 229.046875 348.859375 229.140625 348.859375 229.257812 C 348.859375 229.375 348.953125 229.46875 349.070312 229.46875 C 349.1875 229.46875 349.28125 229.375 349.28125 229.257812 Z M 349.28125 229.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 349.96875 228.910156 C 349.96875 228.792969 349.875 228.699219 349.757812 228.699219 C 349.640625 228.699219 349.546875 228.792969 349.546875 228.910156 C 349.546875 229.027344 349.640625 229.121094 349.757812 229.121094 C 349.875 229.121094 349.96875 229.027344 349.96875 228.910156 Z M 349.96875 228.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 349.3125 227.992188 C 349.3125 227.875 349.21875 227.78125 349.101562 227.78125 C 348.984375 227.78125 348.890625 227.875 348.890625 227.992188 C 348.890625 228.109375 348.984375 228.203125 349.101562 228.203125 C 349.21875 228.203125 349.3125 228.109375 349.3125 227.992188 Z M 349.3125 227.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 352.183594 229.335938 C 352.183594 229.21875 352.089844 229.125 351.972656 229.125 C 351.855469 229.125 351.761719 229.21875 351.761719 229.335938 C 351.761719 229.453125 351.855469 229.546875 351.972656 229.546875 C 352.089844 229.546875 352.183594 229.453125 352.183594 229.335938 Z M 352.183594 229.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 356.699219 230.125 C 356.699219 230.007812 356.605469 229.914062 356.488281 229.914062 C 356.371094 229.914062 356.277344 230.007812 356.277344 230.125 C 356.277344 230.242188 356.371094 230.335938 356.488281 230.335938 C 356.605469 230.335938 356.699219 230.242188 356.699219 230.125 Z M 356.699219 230.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 355.179688 231.132812 C 355.179688 231.015625 355.085938 230.921875 354.96875 230.921875 C 354.851562 230.921875 354.757812 231.015625 354.757812 231.132812 C 354.757812 231.25 354.851562 231.34375 354.96875 231.34375 C 355.085938 231.34375 355.179688 231.25 355.179688 231.132812 Z M 355.179688 231.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 352.34375 227.84375 C 352.34375 227.726562 352.25 227.632812 352.132812 227.632812 C 352.015625 227.632812 351.921875 227.726562 351.921875 227.84375 C 351.921875 227.960938 352.015625 228.054688 352.132812 228.054688 C 352.25 228.054688 352.34375 227.960938 352.34375 227.84375 Z M 352.34375 227.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 351.394531 227.769531 C 351.394531 227.652344 351.300781 227.558594 351.183594 227.558594 C 351.066406 227.558594 350.972656 227.652344 350.972656 227.769531 C 350.972656 227.886719 351.066406 227.980469 351.183594 227.980469 C 351.300781 227.980469 351.394531 227.886719 351.394531 227.769531 Z M 351.394531 227.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 350.355469 225.941406 C 350.355469 225.824219 350.261719 225.730469 350.144531 225.730469 C 350.027344 225.730469 349.933594 225.824219 349.933594 225.941406 C 349.933594 226.058594 350.027344 226.152344 350.144531 226.152344 C 350.261719 226.152344 350.355469 226.058594 350.355469 225.941406 Z M 350.355469 225.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 344.875 228.394531 C 344.875 228.277344 344.78125 228.183594 344.664062 228.183594 C 344.546875 228.183594 344.453125 228.277344 344.453125 228.394531 C 344.453125 228.511719 344.546875 228.605469 344.664062 228.605469 C 344.78125 228.605469 344.875 228.511719 344.875 228.394531 Z M 344.875 228.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 344.304688 230.199219 C 344.304688 230.082031 344.210938 229.988281 344.09375 229.988281 C 343.976562 229.988281 343.882812 230.082031 343.882812 230.199219 C 343.882812 230.316406 343.976562 230.410156 344.09375 230.410156 C 344.210938 230.410156 344.304688 230.316406 344.304688 230.199219 Z M 344.304688 230.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 346.3125 233.148438 C 346.3125 233.03125 346.21875 232.9375 346.101562 232.9375 C 345.984375 232.9375 345.890625 233.03125 345.890625 233.148438 C 345.890625 233.265625 345.984375 233.359375 346.101562 233.359375 C 346.21875 233.359375 346.3125 233.265625 346.3125 233.148438 Z M 346.3125 233.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 343.902344 236.082031 C 343.902344 235.964844 343.808594 235.871094 343.691406 235.871094 C 343.574219 235.871094 343.480469 235.964844 343.480469 236.082031 C 343.480469 236.199219 343.574219 236.292969 343.691406 236.292969 C 343.808594 236.292969 343.902344 236.199219 343.902344 236.082031 Z M 343.902344 236.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 342.152344 235.617188 C 342.152344 235.5 342.058594 235.40625 341.941406 235.40625 C 341.824219 235.40625 341.730469 235.5 341.730469 235.617188 C 341.730469 235.734375 341.824219 235.828125 341.941406 235.828125 C 342.058594 235.828125 342.152344 235.734375 342.152344 235.617188 Z M 342.152344 235.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 341.644531 236.109375 C 341.644531 235.992188 341.550781 235.898438 341.433594 235.898438 C 341.316406 235.898438 341.222656 235.992188 341.222656 236.109375 C 341.222656 236.226562 341.316406 236.320312 341.433594 236.320312 C 341.550781 236.320312 341.644531 236.226562 341.644531 236.109375 Z M 341.644531 236.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 343.871094 238.109375 C 343.871094 237.992188 343.777344 237.898438 343.660156 237.898438 C 343.542969 237.898438 343.449219 237.992188 343.449219 238.109375 C 343.449219 238.226562 343.542969 238.320312 343.660156 238.320312 C 343.777344 238.320312 343.871094 238.226562 343.871094 238.109375 Z M 343.871094 238.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 343.578125 238.195312 C 343.578125 238.078125 343.484375 237.984375 343.367188 237.984375 C 343.25 237.984375 343.15625 238.078125 343.15625 238.195312 C 343.15625 238.3125 343.25 238.40625 343.367188 238.40625 C 343.484375 238.40625 343.578125 238.3125 343.578125 238.195312 Z M 343.578125 238.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 344.605469 233.710938 C 344.605469 233.59375 344.511719 233.5 344.394531 233.5 C 344.277344 233.5 344.183594 233.59375 344.183594 233.710938 C 344.183594 233.828125 344.277344 233.921875 344.394531 233.921875 C 344.511719 233.921875 344.605469 233.828125 344.605469 233.710938 Z M 344.605469 233.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 340.71875 235.609375 C 340.71875 235.492188 340.625 235.398438 340.507812 235.398438 C 340.390625 235.398438 340.296875 235.492188 340.296875 235.609375 C 340.296875 235.726562 340.390625 235.820312 340.507812 235.820312 C 340.625 235.820312 340.71875 235.726562 340.71875 235.609375 Z M 340.71875 235.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 337.203125 235.050781 C 337.203125 234.933594 337.109375 234.839844 336.992188 234.839844 C 336.875 234.839844 336.78125 234.933594 336.78125 235.050781 C 336.78125 235.167969 336.875 235.261719 336.992188 235.261719 C 337.109375 235.261719 337.203125 235.167969 337.203125 235.050781 Z M 337.203125 235.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 338.84375 235.933594 C 338.84375 235.816406 338.75 235.722656 338.632812 235.722656 C 338.515625 235.722656 338.421875 235.816406 338.421875 235.933594 C 338.421875 236.050781 338.515625 236.144531 338.632812 236.144531 C 338.75 236.144531 338.84375 236.050781 338.84375 235.933594 Z M 338.84375 235.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 337.699219 238.761719 C 337.699219 238.644531 337.605469 238.550781 337.488281 238.550781 C 337.371094 238.550781 337.277344 238.644531 337.277344 238.761719 C 337.277344 238.878906 337.371094 238.972656 337.488281 238.972656 C 337.605469 238.972656 337.699219 238.878906 337.699219 238.761719 Z M 337.699219 238.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 337.136719 238.21875 C 337.136719 238.101562 337.042969 238.007812 336.925781 238.007812 C 336.808594 238.007812 336.714844 238.101562 336.714844 238.21875 C 336.714844 238.335938 336.808594 238.429688 336.925781 238.429688 C 337.042969 238.429688 337.136719 238.335938 337.136719 238.21875 Z M 337.136719 238.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 339.949219 238.917969 C 339.949219 238.800781 339.855469 238.707031 339.738281 238.707031 C 339.621094 238.707031 339.527344 238.800781 339.527344 238.917969 C 339.527344 239.035156 339.621094 239.128906 339.738281 239.128906 C 339.855469 239.128906 339.949219 239.035156 339.949219 238.917969 Z M 339.949219 238.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 338.609375 239.09375 C 338.609375 238.976562 338.515625 238.882812 338.398438 238.882812 C 338.28125 238.882812 338.1875 238.976562 338.1875 239.09375 C 338.1875 239.210938 338.28125 239.304688 338.398438 239.304688 C 338.515625 239.304688 338.609375 239.210938 338.609375 239.09375 Z M 338.609375 239.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 336.613281 236.914062 C 336.613281 236.796875 336.519531 236.703125 336.402344 236.703125 C 336.285156 236.703125 336.191406 236.796875 336.191406 236.914062 C 336.191406 237.03125 336.285156 237.125 336.402344 237.125 C 336.519531 237.125 336.613281 237.03125 336.613281 236.914062 Z M 336.613281 236.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 338.476562 236.414062 C 338.476562 236.296875 338.382812 236.203125 338.265625 236.203125 C 338.148438 236.203125 338.054688 236.296875 338.054688 236.414062 C 338.054688 236.53125 338.148438 236.625 338.265625 236.625 C 338.382812 236.625 338.476562 236.53125 338.476562 236.414062 Z M 338.476562 236.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 337.011719 236.390625 C 337.011719 236.273438 336.917969 236.179688 336.800781 236.179688 C 336.683594 236.179688 336.589844 236.273438 336.589844 236.390625 C 336.589844 236.507812 336.683594 236.601562 336.800781 236.601562 C 336.917969 236.601562 337.011719 236.507812 337.011719 236.390625 Z M 337.011719 236.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 335.535156 242.09375 C 335.535156 241.976562 335.441406 241.882812 335.324219 241.882812 C 335.207031 241.882812 335.113281 241.976562 335.113281 242.09375 C 335.113281 242.210938 335.207031 242.304688 335.324219 242.304688 C 335.441406 242.304688 335.535156 242.210938 335.535156 242.09375 Z M 335.535156 242.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 334.644531 242.058594 C 334.644531 241.941406 334.550781 241.847656 334.433594 241.847656 C 334.316406 241.847656 334.222656 241.941406 334.222656 242.058594 C 334.222656 242.175781 334.316406 242.269531 334.433594 242.269531 C 334.550781 242.269531 334.644531 242.175781 334.644531 242.058594 Z M 334.644531 242.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 334.585938 242.804688 C 334.585938 242.6875 334.492188 242.59375 334.375 242.59375 C 334.257812 242.59375 334.164062 242.6875 334.164062 242.804688 C 334.164062 242.921875 334.257812 243.015625 334.375 243.015625 C 334.492188 243.015625 334.585938 242.921875 334.585938 242.804688 Z M 334.585938 242.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 335.847656 244.035156 C 335.847656 243.917969 335.753906 243.824219 335.636719 243.824219 C 335.519531 243.824219 335.425781 243.917969 335.425781 244.035156 C 335.425781 244.152344 335.519531 244.246094 335.636719 244.246094 C 335.753906 244.246094 335.847656 244.152344 335.847656 244.035156 Z M 335.847656 244.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 335.601562 240.882812 C 335.601562 240.765625 335.507812 240.671875 335.390625 240.671875 C 335.273438 240.671875 335.179688 240.765625 335.179688 240.882812 C 335.179688 241 335.273438 241.09375 335.390625 241.09375 C 335.507812 241.09375 335.601562 241 335.601562 240.882812 Z M 335.601562 240.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 338.488281 240.742188 C 338.488281 240.625 338.394531 240.53125 338.277344 240.53125 C 338.160156 240.53125 338.066406 240.625 338.066406 240.742188 C 338.066406 240.859375 338.160156 240.953125 338.277344 240.953125 C 338.394531 240.953125 338.488281 240.859375 338.488281 240.742188 Z M 338.488281 240.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 338.824219 241.390625 C 338.824219 241.273438 338.730469 241.179688 338.613281 241.179688 C 338.496094 241.179688 338.402344 241.273438 338.402344 241.390625 C 338.402344 241.507812 338.496094 241.601562 338.613281 241.601562 C 338.730469 241.601562 338.824219 241.507812 338.824219 241.390625 Z M 338.824219 241.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 339.617188 241.417969 C 339.617188 241.300781 339.523438 241.207031 339.40625 241.207031 C 339.289062 241.207031 339.195312 241.300781 339.195312 241.417969 C 339.195312 241.535156 339.289062 241.628906 339.40625 241.628906 C 339.523438 241.628906 339.617188 241.535156 339.617188 241.417969 Z M 339.617188 241.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 338.996094 241.890625 C 338.996094 241.773438 338.902344 241.679688 338.785156 241.679688 C 338.667969 241.679688 338.574219 241.773438 338.574219 241.890625 C 338.574219 242.007812 338.667969 242.101562 338.785156 242.101562 C 338.902344 242.101562 338.996094 242.007812 338.996094 241.890625 Z M 338.996094 241.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 337.640625 241.617188 C 337.640625 241.5 337.546875 241.40625 337.429688 241.40625 C 337.3125 241.40625 337.21875 241.5 337.21875 241.617188 C 337.21875 241.734375 337.3125 241.828125 337.429688 241.828125 C 337.546875 241.828125 337.640625 241.734375 337.640625 241.617188 Z M 337.640625 241.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 338.003906 239.695312 C 338.003906 239.578125 337.910156 239.484375 337.792969 239.484375 C 337.675781 239.484375 337.582031 239.578125 337.582031 239.695312 C 337.582031 239.8125 337.675781 239.90625 337.792969 239.90625 C 337.910156 239.90625 338.003906 239.8125 338.003906 239.695312 Z M 338.003906 239.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 339.167969 239.226562 C 339.167969 239.109375 339.074219 239.015625 338.957031 239.015625 C 338.839844 239.015625 338.746094 239.109375 338.746094 239.226562 C 338.746094 239.34375 338.839844 239.4375 338.957031 239.4375 C 339.074219 239.4375 339.167969 239.34375 339.167969 239.226562 Z M 339.167969 239.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 340.367188 241.425781 C 340.367188 241.308594 340.273438 241.214844 340.15625 241.214844 C 340.039062 241.214844 339.945312 241.308594 339.945312 241.425781 C 339.945312 241.542969 340.039062 241.636719 340.15625 241.636719 C 340.273438 241.636719 340.367188 241.542969 340.367188 241.425781 Z M 340.367188 241.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 337.203125 241.085938 C 337.203125 240.96875 337.109375 240.875 336.992188 240.875 C 336.875 240.875 336.78125 240.96875 336.78125 241.085938 C 336.78125 241.203125 336.875 241.296875 336.992188 241.296875 C 337.109375 241.296875 337.203125 241.203125 337.203125 241.085938 Z M 337.203125 241.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 338.644531 238.339844 C 338.644531 238.222656 338.550781 238.128906 338.433594 238.128906 C 338.316406 238.128906 338.222656 238.222656 338.222656 238.339844 C 338.222656 238.457031 338.316406 238.550781 338.433594 238.550781 C 338.550781 238.550781 338.644531 238.457031 338.644531 238.339844 Z M 338.644531 238.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 338.054688 237.894531 C 338.054688 237.777344 337.960938 237.683594 337.84375 237.683594 C 337.726562 237.683594 337.632812 237.777344 337.632812 237.894531 C 337.632812 238.011719 337.726562 238.105469 337.84375 238.105469 C 337.960938 238.105469 338.054688 238.011719 338.054688 237.894531 Z M 338.054688 237.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 339.84375 237.988281 C 339.84375 237.871094 339.75 237.777344 339.632812 237.777344 C 339.515625 237.777344 339.421875 237.871094 339.421875 237.988281 C 339.421875 238.105469 339.515625 238.199219 339.632812 238.199219 C 339.75 238.199219 339.84375 238.105469 339.84375 237.988281 Z M 339.84375 237.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 338.628906 238.953125 C 338.628906 238.835938 338.535156 238.742188 338.417969 238.742188 C 338.300781 238.742188 338.207031 238.835938 338.207031 238.953125 C 338.207031 239.070312 338.300781 239.164062 338.417969 239.164062 C 338.535156 239.164062 338.628906 239.070312 338.628906 238.953125 Z M 338.628906 238.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 335.066406 240.539062 C 335.066406 240.421875 334.972656 240.328125 334.855469 240.328125 C 334.738281 240.328125 334.644531 240.421875 334.644531 240.539062 C 334.644531 240.65625 334.738281 240.75 334.855469 240.75 C 334.972656 240.75 335.066406 240.65625 335.066406 240.539062 Z M 335.066406 240.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 334.4375 237.445312 C 334.4375 237.328125 334.34375 237.234375 334.226562 237.234375 C 334.109375 237.234375 334.015625 237.328125 334.015625 237.445312 C 334.015625 237.5625 334.109375 237.65625 334.226562 237.65625 C 334.34375 237.65625 334.4375 237.5625 334.4375 237.445312 Z M 334.4375 237.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 333.148438 237.195312 C 333.148438 237.078125 333.054688 236.984375 332.9375 236.984375 C 332.820312 236.984375 332.726562 237.078125 332.726562 237.195312 C 332.726562 237.3125 332.820312 237.40625 332.9375 237.40625 C 333.054688 237.40625 333.148438 237.3125 333.148438 237.195312 Z M 333.148438 237.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 337.273438 236.078125 C 337.273438 235.960938 337.179688 235.867188 337.0625 235.867188 C 336.945312 235.867188 336.851562 235.960938 336.851562 236.078125 C 336.851562 236.195312 336.945312 236.289062 337.0625 236.289062 C 337.179688 236.289062 337.273438 236.195312 337.273438 236.078125 Z M 337.273438 236.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 338.816406 234.832031 C 338.816406 234.714844 338.722656 234.621094 338.605469 234.621094 C 338.488281 234.621094 338.394531 234.714844 338.394531 234.832031 C 338.394531 234.949219 338.488281 235.042969 338.605469 235.042969 C 338.722656 235.042969 338.816406 234.949219 338.816406 234.832031 Z M 338.816406 234.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 339.59375 234.152344 C 339.59375 234.035156 339.5 233.941406 339.382812 233.941406 C 339.265625 233.941406 339.171875 234.035156 339.171875 234.152344 C 339.171875 234.269531 339.265625 234.363281 339.382812 234.363281 C 339.5 234.363281 339.59375 234.269531 339.59375 234.152344 Z M 339.59375 234.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 338.617188 231.804688 C 338.617188 231.6875 338.523438 231.59375 338.40625 231.59375 C 338.289062 231.59375 338.195312 231.6875 338.195312 231.804688 C 338.195312 231.921875 338.289062 232.015625 338.40625 232.015625 C 338.523438 232.015625 338.617188 231.921875 338.617188 231.804688 Z M 338.617188 231.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 341.492188 233.871094 C 341.492188 233.753906 341.398438 233.660156 341.28125 233.660156 C 341.164062 233.660156 341.070312 233.753906 341.070312 233.871094 C 341.070312 233.988281 341.164062 234.082031 341.28125 234.082031 C 341.398438 234.082031 341.492188 233.988281 341.492188 233.871094 Z M 341.492188 233.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 341.191406 235.980469 C 341.191406 235.863281 341.097656 235.769531 340.980469 235.769531 C 340.863281 235.769531 340.769531 235.863281 340.769531 235.980469 C 340.769531 236.097656 340.863281 236.191406 340.980469 236.191406 C 341.097656 236.191406 341.191406 236.097656 341.191406 235.980469 Z M 341.191406 235.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 334.773438 235.722656 C 334.773438 235.605469 334.679688 235.511719 334.5625 235.511719 C 334.445312 235.511719 334.351562 235.605469 334.351562 235.722656 C 334.351562 235.839844 334.445312 235.933594 334.5625 235.933594 C 334.679688 235.933594 334.773438 235.839844 334.773438 235.722656 Z M 334.773438 235.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 332.34375 235.449219 C 332.34375 235.332031 332.25 235.238281 332.132812 235.238281 C 332.015625 235.238281 331.921875 235.332031 331.921875 235.449219 C 331.921875 235.566406 332.015625 235.660156 332.132812 235.660156 C 332.25 235.660156 332.34375 235.566406 332.34375 235.449219 Z M 332.34375 235.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 331.648438 233.25 C 331.648438 233.132812 331.554688 233.039062 331.4375 233.039062 C 331.320312 233.039062 331.226562 233.132812 331.226562 233.25 C 331.226562 233.367188 331.320312 233.460938 331.4375 233.460938 C 331.554688 233.460938 331.648438 233.367188 331.648438 233.25 Z M 331.648438 233.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 331.515625 232.9375 C 331.515625 232.820312 331.421875 232.726562 331.304688 232.726562 C 331.1875 232.726562 331.09375 232.820312 331.09375 232.9375 C 331.09375 233.054688 331.1875 233.148438 331.304688 233.148438 C 331.421875 233.148438 331.515625 233.054688 331.515625 232.9375 Z M 331.515625 232.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 333.070312 232.695312 C 333.070312 232.578125 332.976562 232.484375 332.859375 232.484375 C 332.742188 232.484375 332.648438 232.578125 332.648438 232.695312 C 332.648438 232.8125 332.742188 232.90625 332.859375 232.90625 C 332.976562 232.90625 333.070312 232.8125 333.070312 232.695312 Z M 333.070312 232.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 333.058594 234.628906 C 333.058594 234.511719 332.964844 234.417969 332.847656 234.417969 C 332.730469 234.417969 332.636719 234.511719 332.636719 234.628906 C 332.636719 234.746094 332.730469 234.839844 332.847656 234.839844 C 332.964844 234.839844 333.058594 234.746094 333.058594 234.628906 Z M 333.058594 234.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 333.089844 236.820312 C 333.089844 236.703125 332.996094 236.609375 332.878906 236.609375 C 332.761719 236.609375 332.667969 236.703125 332.667969 236.820312 C 332.667969 236.9375 332.761719 237.03125 332.878906 237.03125 C 332.996094 237.03125 333.089844 236.9375 333.089844 236.820312 Z M 333.089844 236.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 334.089844 239.109375 C 334.089844 238.992188 333.996094 238.898438 333.878906 238.898438 C 333.761719 238.898438 333.667969 238.992188 333.667969 239.109375 C 333.667969 239.226562 333.761719 239.320312 333.878906 239.320312 C 333.996094 239.320312 334.089844 239.226562 334.089844 239.109375 Z M 334.089844 239.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 332.132812 238.132812 C 332.132812 238.015625 332.039062 237.921875 331.921875 237.921875 C 331.804688 237.921875 331.710938 238.015625 331.710938 238.132812 C 331.710938 238.25 331.804688 238.34375 331.921875 238.34375 C 332.039062 238.34375 332.132812 238.25 332.132812 238.132812 Z M 332.132812 238.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 332.546875 234.585938 C 332.546875 234.46875 332.453125 234.375 332.335938 234.375 C 332.21875 234.375 332.125 234.46875 332.125 234.585938 C 332.125 234.703125 332.21875 234.796875 332.335938 234.796875 C 332.453125 234.796875 332.546875 234.703125 332.546875 234.585938 Z M 332.546875 234.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 330.882812 232.957031 C 330.882812 232.839844 330.789062 232.746094 330.671875 232.746094 C 330.554688 232.746094 330.460938 232.839844 330.460938 232.957031 C 330.460938 233.074219 330.554688 233.167969 330.671875 233.167969 C 330.789062 233.167969 330.882812 233.074219 330.882812 232.957031 Z M 330.882812 232.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 333.191406 236.902344 C 333.191406 236.785156 333.097656 236.691406 332.980469 236.691406 C 332.863281 236.691406 332.769531 236.785156 332.769531 236.902344 C 332.769531 237.019531 332.863281 237.113281 332.980469 237.113281 C 333.097656 237.113281 333.191406 237.019531 333.191406 236.902344 Z M 333.191406 236.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 330.695312 238.304688 C 330.695312 238.1875 330.601562 238.09375 330.484375 238.09375 C 330.367188 238.09375 330.273438 238.1875 330.273438 238.304688 C 330.273438 238.421875 330.367188 238.515625 330.484375 238.515625 C 330.601562 238.515625 330.695312 238.421875 330.695312 238.304688 Z M 330.695312 238.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 334.722656 237.535156 C 334.722656 237.417969 334.628906 237.324219 334.511719 237.324219 C 334.394531 237.324219 334.300781 237.417969 334.300781 237.535156 C 334.300781 237.652344 334.394531 237.746094 334.511719 237.746094 C 334.628906 237.746094 334.722656 237.652344 334.722656 237.535156 Z M 334.722656 237.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 331.285156 239.777344 C 331.285156 239.660156 331.191406 239.566406 331.074219 239.566406 C 330.957031 239.566406 330.863281 239.660156 330.863281 239.777344 C 330.863281 239.894531 330.957031 239.988281 331.074219 239.988281 C 331.191406 239.988281 331.285156 239.894531 331.285156 239.777344 Z M 331.285156 239.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 331.046875 244.070312 C 331.046875 243.953125 330.953125 243.859375 330.835938 243.859375 C 330.71875 243.859375 330.625 243.953125 330.625 244.070312 C 330.625 244.1875 330.71875 244.28125 330.835938 244.28125 C 330.953125 244.28125 331.046875 244.1875 331.046875 244.070312 Z M 331.046875 244.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 328.746094 241.519531 C 328.746094 241.402344 328.652344 241.308594 328.535156 241.308594 C 328.417969 241.308594 328.324219 241.402344 328.324219 241.519531 C 328.324219 241.636719 328.417969 241.730469 328.535156 241.730469 C 328.652344 241.730469 328.746094 241.636719 328.746094 241.519531 Z M 328.746094 241.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 329.726562 239.441406 C 329.726562 239.324219 329.632812 239.230469 329.515625 239.230469 C 329.398438 239.230469 329.304688 239.324219 329.304688 239.441406 C 329.304688 239.558594 329.398438 239.652344 329.515625 239.652344 C 329.632812 239.652344 329.726562 239.558594 329.726562 239.441406 Z M 329.726562 239.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 329.839844 238.535156 C 329.839844 238.417969 329.746094 238.324219 329.628906 238.324219 C 329.511719 238.324219 329.417969 238.417969 329.417969 238.535156 C 329.417969 238.652344 329.511719 238.746094 329.628906 238.746094 C 329.746094 238.746094 329.839844 238.652344 329.839844 238.535156 Z M 329.839844 238.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 329.660156 240.101562 C 329.660156 239.984375 329.566406 239.890625 329.449219 239.890625 C 329.332031 239.890625 329.238281 239.984375 329.238281 240.101562 C 329.238281 240.21875 329.332031 240.3125 329.449219 240.3125 C 329.566406 240.3125 329.660156 240.21875 329.660156 240.101562 Z M 329.660156 240.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.488281 238.667969 C 326.488281 238.550781 326.394531 238.457031 326.277344 238.457031 C 326.160156 238.457031 326.066406 238.550781 326.066406 238.667969 C 326.066406 238.785156 326.160156 238.878906 326.277344 238.878906 C 326.394531 238.878906 326.488281 238.785156 326.488281 238.667969 Z M 326.488281 238.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.921875 238.046875 C 326.921875 237.929688 326.828125 237.835938 326.710938 237.835938 C 326.59375 237.835938 326.5 237.929688 326.5 238.046875 C 326.5 238.164062 326.59375 238.257812 326.710938 238.257812 C 326.828125 238.257812 326.921875 238.164062 326.921875 238.046875 Z M 326.921875 238.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.386719 236.054688 C 326.386719 235.9375 326.292969 235.84375 326.175781 235.84375 C 326.058594 235.84375 325.964844 235.9375 325.964844 236.054688 C 325.964844 236.171875 326.058594 236.265625 326.175781 236.265625 C 326.292969 236.265625 326.386719 236.171875 326.386719 236.054688 Z M 326.386719 236.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.617188 235.539062 C 325.617188 235.421875 325.523438 235.328125 325.40625 235.328125 C 325.289062 235.328125 325.195312 235.421875 325.195312 235.539062 C 325.195312 235.65625 325.289062 235.75 325.40625 235.75 C 325.523438 235.75 325.617188 235.65625 325.617188 235.539062 Z M 325.617188 235.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.648438 237.617188 C 322.648438 237.5 322.554688 237.40625 322.4375 237.40625 C 322.320312 237.40625 322.226562 237.5 322.226562 237.617188 C 322.226562 237.734375 322.320312 237.828125 322.4375 237.828125 C 322.554688 237.828125 322.648438 237.734375 322.648438 237.617188 Z M 322.648438 237.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.574219 236.925781 C 322.574219 236.808594 322.480469 236.714844 322.363281 236.714844 C 322.246094 236.714844 322.152344 236.808594 322.152344 236.925781 C 322.152344 237.042969 322.246094 237.136719 322.363281 237.136719 C 322.480469 237.136719 322.574219 237.042969 322.574219 236.925781 Z M 322.574219 236.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.910156 237.300781 C 321.910156 237.183594 321.816406 237.089844 321.699219 237.089844 C 321.582031 237.089844 321.488281 237.183594 321.488281 237.300781 C 321.488281 237.417969 321.582031 237.511719 321.699219 237.511719 C 321.816406 237.511719 321.910156 237.417969 321.910156 237.300781 Z M 321.910156 237.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.40625 238.628906 C 326.40625 238.511719 326.3125 238.417969 326.195312 238.417969 C 326.078125 238.417969 325.984375 238.511719 325.984375 238.628906 C 325.984375 238.746094 326.078125 238.839844 326.195312 238.839844 C 326.3125 238.839844 326.40625 238.746094 326.40625 238.628906 Z M 326.40625 238.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.464844 241.058594 C 325.464844 240.941406 325.371094 240.847656 325.253906 240.847656 C 325.136719 240.847656 325.042969 240.941406 325.042969 241.058594 C 325.042969 241.175781 325.136719 241.269531 325.253906 241.269531 C 325.371094 241.269531 325.464844 241.175781 325.464844 241.058594 Z M 325.464844 241.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 320.058594 243.71875 C 320.058594 243.601562 319.964844 243.507812 319.847656 243.507812 C 319.730469 243.507812 319.636719 243.601562 319.636719 243.71875 C 319.636719 243.835938 319.730469 243.929688 319.847656 243.929688 C 319.964844 243.929688 320.058594 243.835938 320.058594 243.71875 Z M 320.058594 243.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.722656 241.429688 C 321.722656 241.3125 321.628906 241.21875 321.511719 241.21875 C 321.394531 241.21875 321.300781 241.3125 321.300781 241.429688 C 321.300781 241.546875 321.394531 241.640625 321.511719 241.640625 C 321.628906 241.640625 321.722656 241.546875 321.722656 241.429688 Z M 321.722656 241.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 320.707031 237.683594 C 320.707031 237.566406 320.613281 237.472656 320.496094 237.472656 C 320.378906 237.472656 320.285156 237.566406 320.285156 237.683594 C 320.285156 237.800781 320.378906 237.894531 320.496094 237.894531 C 320.613281 237.894531 320.707031 237.800781 320.707031 237.683594 Z M 320.707031 237.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 320.105469 234.296875 C 320.105469 234.179688 320.011719 234.085938 319.894531 234.085938 C 319.777344 234.085938 319.683594 234.179688 319.683594 234.296875 C 319.683594 234.414062 319.777344 234.507812 319.894531 234.507812 C 320.011719 234.507812 320.105469 234.414062 320.105469 234.296875 Z M 320.105469 234.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 318.085938 237.644531 C 318.085938 237.527344 317.992188 237.433594 317.875 237.433594 C 317.757812 237.433594 317.664062 237.527344 317.664062 237.644531 C 317.664062 237.761719 317.757812 237.855469 317.875 237.855469 C 317.992188 237.855469 318.085938 237.761719 318.085938 237.644531 Z M 318.085938 237.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.316406 238.515625 C 321.316406 238.398438 321.222656 238.304688 321.105469 238.304688 C 320.988281 238.304688 320.894531 238.398438 320.894531 238.515625 C 320.894531 238.632812 320.988281 238.726562 321.105469 238.726562 C 321.222656 238.726562 321.316406 238.632812 321.316406 238.515625 Z M 321.316406 238.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.570312 240 C 324.570312 239.882812 324.476562 239.789062 324.359375 239.789062 C 324.242188 239.789062 324.148438 239.882812 324.148438 240 C 324.148438 240.117188 324.242188 240.210938 324.359375 240.210938 C 324.476562 240.210938 324.570312 240.117188 324.570312 240 Z M 324.570312 240 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.550781 239.761719 C 325.550781 239.644531 325.457031 239.550781 325.339844 239.550781 C 325.222656 239.550781 325.128906 239.644531 325.128906 239.761719 C 325.128906 239.878906 325.222656 239.972656 325.339844 239.972656 C 325.457031 239.972656 325.550781 239.878906 325.550781 239.761719 Z M 325.550781 239.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.675781 237.316406 C 326.675781 237.199219 326.582031 237.105469 326.464844 237.105469 C 326.347656 237.105469 326.253906 237.199219 326.253906 237.316406 C 326.253906 237.433594 326.347656 237.527344 326.464844 237.527344 C 326.582031 237.527344 326.675781 237.433594 326.675781 237.316406 Z M 326.675781 237.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.128906 239.824219 C 324.128906 239.707031 324.035156 239.613281 323.917969 239.613281 C 323.800781 239.613281 323.707031 239.707031 323.707031 239.824219 C 323.707031 239.941406 323.800781 240.035156 323.917969 240.035156 C 324.035156 240.035156 324.128906 239.941406 324.128906 239.824219 Z M 324.128906 239.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.242188 241.441406 C 322.242188 241.324219 322.148438 241.230469 322.03125 241.230469 C 321.914062 241.230469 321.820312 241.324219 321.820312 241.441406 C 321.820312 241.558594 321.914062 241.652344 322.03125 241.652344 C 322.148438 241.652344 322.242188 241.558594 322.242188 241.441406 Z M 322.242188 241.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.613281 241.003906 C 322.613281 240.886719 322.519531 240.792969 322.402344 240.792969 C 322.285156 240.792969 322.191406 240.886719 322.191406 241.003906 C 322.191406 241.121094 322.285156 241.214844 322.402344 241.214844 C 322.519531 241.214844 322.613281 241.121094 322.613281 241.003906 Z M 322.613281 241.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.871094 244.109375 C 322.871094 243.992188 322.777344 243.898438 322.660156 243.898438 C 322.542969 243.898438 322.449219 243.992188 322.449219 244.109375 C 322.449219 244.226562 322.542969 244.320312 322.660156 244.320312 C 322.777344 244.320312 322.871094 244.226562 322.871094 244.109375 Z M 322.871094 244.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.394531 244.007812 C 322.394531 243.890625 322.300781 243.796875 322.183594 243.796875 C 322.066406 243.796875 321.972656 243.890625 321.972656 244.007812 C 321.972656 244.125 322.066406 244.21875 322.183594 244.21875 C 322.300781 244.21875 322.394531 244.125 322.394531 244.007812 Z M 322.394531 244.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.308594 246.640625 C 323.308594 246.523438 323.214844 246.429688 323.097656 246.429688 C 322.980469 246.429688 322.886719 246.523438 322.886719 246.640625 C 322.886719 246.757812 322.980469 246.851562 323.097656 246.851562 C 323.214844 246.851562 323.308594 246.757812 323.308594 246.640625 Z M 323.308594 246.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 318.550781 248 C 318.550781 247.882812 318.457031 247.789062 318.339844 247.789062 C 318.222656 247.789062 318.128906 247.882812 318.128906 248 C 318.128906 248.117188 318.222656 248.210938 318.339844 248.210938 C 318.457031 248.210938 318.550781 248.117188 318.550781 248 Z M 318.550781 248 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 318.703125 247.769531 C 318.703125 247.652344 318.609375 247.558594 318.492188 247.558594 C 318.375 247.558594 318.28125 247.652344 318.28125 247.769531 C 318.28125 247.886719 318.375 247.980469 318.492188 247.980469 C 318.609375 247.980469 318.703125 247.886719 318.703125 247.769531 Z M 318.703125 247.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 319.753906 246.191406 C 319.753906 246.074219 319.660156 245.980469 319.542969 245.980469 C 319.425781 245.980469 319.332031 246.074219 319.332031 246.191406 C 319.332031 246.308594 319.425781 246.402344 319.542969 246.402344 C 319.660156 246.402344 319.753906 246.308594 319.753906 246.191406 Z M 319.753906 246.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 320.183594 248.789062 C 320.183594 248.671875 320.089844 248.578125 319.972656 248.578125 C 319.855469 248.578125 319.761719 248.671875 319.761719 248.789062 C 319.761719 248.90625 319.855469 249 319.972656 249 C 320.089844 249 320.183594 248.90625 320.183594 248.789062 Z M 320.183594 248.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.257812 245.898438 C 316.257812 245.78125 316.164062 245.6875 316.046875 245.6875 C 315.929688 245.6875 315.835938 245.78125 315.835938 245.898438 C 315.835938 246.015625 315.929688 246.109375 316.046875 246.109375 C 316.164062 246.109375 316.257812 246.015625 316.257812 245.898438 Z M 316.257812 245.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.40625 245.625 C 315.40625 245.507812 315.3125 245.414062 315.195312 245.414062 C 315.078125 245.414062 314.984375 245.507812 314.984375 245.625 C 314.984375 245.742188 315.078125 245.835938 315.195312 245.835938 C 315.3125 245.835938 315.40625 245.742188 315.40625 245.625 Z M 315.40625 245.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.421875 241.296875 C 313.421875 241.179688 313.328125 241.085938 313.210938 241.085938 C 313.09375 241.085938 313 241.179688 313 241.296875 C 313 241.414062 313.09375 241.507812 313.210938 241.507812 C 313.328125 241.507812 313.421875 241.414062 313.421875 241.296875 Z M 313.421875 241.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.914062 239.800781 C 314.914062 239.683594 314.820312 239.589844 314.703125 239.589844 C 314.585938 239.589844 314.492188 239.683594 314.492188 239.800781 C 314.492188 239.917969 314.585938 240.011719 314.703125 240.011719 C 314.820312 240.011719 314.914062 239.917969 314.914062 239.800781 Z M 314.914062 239.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.804688 238.214844 C 315.804688 238.097656 315.710938 238.003906 315.59375 238.003906 C 315.476562 238.003906 315.382812 238.097656 315.382812 238.214844 C 315.382812 238.332031 315.476562 238.425781 315.59375 238.425781 C 315.710938 238.425781 315.804688 238.332031 315.804688 238.214844 Z M 315.804688 238.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.4375 238.160156 C 317.4375 238.042969 317.34375 237.949219 317.226562 237.949219 C 317.109375 237.949219 317.015625 238.042969 317.015625 238.160156 C 317.015625 238.277344 317.109375 238.371094 317.226562 238.371094 C 317.34375 238.371094 317.4375 238.277344 317.4375 238.160156 Z M 317.4375 238.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 319.191406 237.429688 C 319.191406 237.3125 319.097656 237.21875 318.980469 237.21875 C 318.863281 237.21875 318.769531 237.3125 318.769531 237.429688 C 318.769531 237.546875 318.863281 237.640625 318.980469 237.640625 C 319.097656 237.640625 319.191406 237.546875 319.191406 237.429688 Z M 319.191406 237.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.96875 236.480469 C 317.96875 236.363281 317.875 236.269531 317.757812 236.269531 C 317.640625 236.269531 317.546875 236.363281 317.546875 236.480469 C 317.546875 236.597656 317.640625 236.691406 317.757812 236.691406 C 317.875 236.691406 317.96875 236.597656 317.96875 236.480469 Z M 317.96875 236.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.925781 233.714844 C 317.925781 233.597656 317.832031 233.503906 317.714844 233.503906 C 317.597656 233.503906 317.503906 233.597656 317.503906 233.714844 C 317.503906 233.832031 317.597656 233.925781 317.714844 233.925781 C 317.832031 233.925781 317.925781 233.832031 317.925781 233.714844 Z M 317.925781 233.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.597656 232.824219 C 312.597656 232.707031 312.503906 232.613281 312.386719 232.613281 C 312.269531 232.613281 312.175781 232.707031 312.175781 232.824219 C 312.175781 232.941406 312.269531 233.035156 312.386719 233.035156 C 312.503906 233.035156 312.597656 232.941406 312.597656 232.824219 Z M 312.597656 232.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.3125 234.164062 C 310.3125 234.046875 310.21875 233.953125 310.101562 233.953125 C 309.984375 233.953125 309.890625 234.046875 309.890625 234.164062 C 309.890625 234.28125 309.984375 234.375 310.101562 234.375 C 310.21875 234.375 310.3125 234.28125 310.3125 234.164062 Z M 310.3125 234.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.914062 236.304688 C 308.914062 236.1875 308.820312 236.09375 308.703125 236.09375 C 308.585938 236.09375 308.492188 236.1875 308.492188 236.304688 C 308.492188 236.421875 308.585938 236.515625 308.703125 236.515625 C 308.820312 236.515625 308.914062 236.421875 308.914062 236.304688 Z M 308.914062 236.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.933594 234.988281 C 309.933594 234.871094 309.839844 234.777344 309.722656 234.777344 C 309.605469 234.777344 309.511719 234.871094 309.511719 234.988281 C 309.511719 235.105469 309.605469 235.199219 309.722656 235.199219 C 309.839844 235.199219 309.933594 235.105469 309.933594 234.988281 Z M 309.933594 234.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.015625 233.175781 C 315.015625 233.058594 314.921875 232.964844 314.804688 232.964844 C 314.6875 232.964844 314.59375 233.058594 314.59375 233.175781 C 314.59375 233.292969 314.6875 233.386719 314.804688 233.386719 C 314.921875 233.386719 315.015625 233.292969 315.015625 233.175781 Z M 315.015625 233.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.0625 234.582031 C 316.0625 234.464844 315.96875 234.371094 315.851562 234.371094 C 315.734375 234.371094 315.640625 234.464844 315.640625 234.582031 C 315.640625 234.699219 315.734375 234.792969 315.851562 234.792969 C 315.96875 234.792969 316.0625 234.699219 316.0625 234.582031 Z M 316.0625 234.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.519531 229.894531 C 315.519531 229.777344 315.425781 229.683594 315.308594 229.683594 C 315.191406 229.683594 315.097656 229.777344 315.097656 229.894531 C 315.097656 230.011719 315.191406 230.105469 315.308594 230.105469 C 315.425781 230.105469 315.519531 230.011719 315.519531 229.894531 Z M 315.519531 229.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.226562 228.550781 C 314.226562 228.433594 314.132812 228.339844 314.015625 228.339844 C 313.898438 228.339844 313.804688 228.433594 313.804688 228.550781 C 313.804688 228.667969 313.898438 228.761719 314.015625 228.761719 C 314.132812 228.761719 314.226562 228.667969 314.226562 228.550781 Z M 314.226562 228.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.78125 230.742188 C 315.78125 230.625 315.6875 230.53125 315.570312 230.53125 C 315.453125 230.53125 315.359375 230.625 315.359375 230.742188 C 315.359375 230.859375 315.453125 230.953125 315.570312 230.953125 C 315.6875 230.953125 315.78125 230.859375 315.78125 230.742188 Z M 315.78125 230.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.835938 230.050781 C 313.835938 229.933594 313.742188 229.839844 313.625 229.839844 C 313.507812 229.839844 313.414062 229.933594 313.414062 230.050781 C 313.414062 230.167969 313.507812 230.261719 313.625 230.261719 C 313.742188 230.261719 313.835938 230.167969 313.835938 230.050781 Z M 313.835938 230.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.378906 230.429688 C 314.378906 230.3125 314.285156 230.21875 314.167969 230.21875 C 314.050781 230.21875 313.957031 230.3125 313.957031 230.429688 C 313.957031 230.546875 314.050781 230.640625 314.167969 230.640625 C 314.285156 230.640625 314.378906 230.546875 314.378906 230.429688 Z M 314.378906 230.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.058594 232.582031 C 316.058594 232.464844 315.964844 232.371094 315.847656 232.371094 C 315.730469 232.371094 315.636719 232.464844 315.636719 232.582031 C 315.636719 232.699219 315.730469 232.792969 315.847656 232.792969 C 315.964844 232.792969 316.058594 232.699219 316.058594 232.582031 Z M 316.058594 232.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.339844 229.941406 C 313.339844 229.824219 313.246094 229.730469 313.128906 229.730469 C 313.011719 229.730469 312.917969 229.824219 312.917969 229.941406 C 312.917969 230.058594 313.011719 230.152344 313.128906 230.152344 C 313.246094 230.152344 313.339844 230.058594 313.339844 229.941406 Z M 313.339844 229.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.875 233.648438 C 315.875 233.53125 315.78125 233.4375 315.664062 233.4375 C 315.546875 233.4375 315.453125 233.53125 315.453125 233.648438 C 315.453125 233.765625 315.546875 233.859375 315.664062 233.859375 C 315.78125 233.859375 315.875 233.765625 315.875 233.648438 Z M 315.875 233.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.894531 235.460938 C 312.894531 235.34375 312.800781 235.25 312.683594 235.25 C 312.566406 235.25 312.472656 235.34375 312.472656 235.460938 C 312.472656 235.578125 312.566406 235.671875 312.683594 235.671875 C 312.800781 235.671875 312.894531 235.578125 312.894531 235.460938 Z M 312.894531 235.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.839844 235.367188 C 313.839844 235.25 313.746094 235.15625 313.628906 235.15625 C 313.511719 235.15625 313.417969 235.25 313.417969 235.367188 C 313.417969 235.484375 313.511719 235.578125 313.628906 235.578125 C 313.746094 235.578125 313.839844 235.484375 313.839844 235.367188 Z M 313.839844 235.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.824219 233.785156 C 314.824219 233.667969 314.730469 233.574219 314.613281 233.574219 C 314.496094 233.574219 314.402344 233.667969 314.402344 233.785156 C 314.402344 233.902344 314.496094 233.996094 314.613281 233.996094 C 314.730469 233.996094 314.824219 233.902344 314.824219 233.785156 Z M 314.824219 233.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.296875 235.511719 C 315.296875 235.394531 315.203125 235.300781 315.085938 235.300781 C 314.96875 235.300781 314.875 235.394531 314.875 235.511719 C 314.875 235.628906 314.96875 235.722656 315.085938 235.722656 C 315.203125 235.722656 315.296875 235.628906 315.296875 235.511719 Z M 315.296875 235.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.191406 237.113281 C 313.191406 236.996094 313.097656 236.902344 312.980469 236.902344 C 312.863281 236.902344 312.769531 236.996094 312.769531 237.113281 C 312.769531 237.230469 312.863281 237.324219 312.980469 237.324219 C 313.097656 237.324219 313.191406 237.230469 313.191406 237.113281 Z M 313.191406 237.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.292969 241.300781 C 315.292969 241.183594 315.199219 241.089844 315.082031 241.089844 C 314.964844 241.089844 314.871094 241.183594 314.871094 241.300781 C 314.871094 241.417969 314.964844 241.511719 315.082031 241.511719 C 315.199219 241.511719 315.292969 241.417969 315.292969 241.300781 Z M 315.292969 241.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.257812 242.394531 C 317.257812 242.277344 317.164062 242.183594 317.046875 242.183594 C 316.929688 242.183594 316.835938 242.277344 316.835938 242.394531 C 316.835938 242.511719 316.929688 242.605469 317.046875 242.605469 C 317.164062 242.605469 317.257812 242.511719 317.257812 242.394531 Z M 317.257812 242.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.691406 240.316406 C 316.691406 240.199219 316.597656 240.105469 316.480469 240.105469 C 316.363281 240.105469 316.269531 240.199219 316.269531 240.316406 C 316.269531 240.433594 316.363281 240.527344 316.480469 240.527344 C 316.597656 240.527344 316.691406 240.433594 316.691406 240.316406 Z M 316.691406 240.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.855469 239.121094 C 313.855469 239.003906 313.761719 238.910156 313.644531 238.910156 C 313.527344 238.910156 313.433594 239.003906 313.433594 239.121094 C 313.433594 239.238281 313.527344 239.332031 313.644531 239.332031 C 313.761719 239.332031 313.855469 239.238281 313.855469 239.121094 Z M 313.855469 239.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.972656 242.476562 C 314.972656 242.359375 314.878906 242.265625 314.761719 242.265625 C 314.644531 242.265625 314.550781 242.359375 314.550781 242.476562 C 314.550781 242.59375 314.644531 242.6875 314.761719 242.6875 C 314.878906 242.6875 314.972656 242.59375 314.972656 242.476562 Z M 314.972656 242.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.253906 246.882812 C 315.253906 246.765625 315.160156 246.671875 315.042969 246.671875 C 314.925781 246.671875 314.832031 246.765625 314.832031 246.882812 C 314.832031 247 314.925781 247.09375 315.042969 247.09375 C 315.160156 247.09375 315.253906 247 315.253906 246.882812 Z M 315.253906 246.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.585938 246.351562 C 310.585938 246.234375 310.492188 246.140625 310.375 246.140625 C 310.257812 246.140625 310.164062 246.234375 310.164062 246.351562 C 310.164062 246.46875 310.257812 246.5625 310.375 246.5625 C 310.492188 246.5625 310.585938 246.46875 310.585938 246.351562 Z M 310.585938 246.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.4375 243.605469 C 310.4375 243.488281 310.34375 243.394531 310.226562 243.394531 C 310.109375 243.394531 310.015625 243.488281 310.015625 243.605469 C 310.015625 243.722656 310.109375 243.816406 310.226562 243.816406 C 310.34375 243.816406 310.4375 243.722656 310.4375 243.605469 Z M 310.4375 243.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.628906 245.96875 C 311.628906 245.851562 311.535156 245.757812 311.417969 245.757812 C 311.300781 245.757812 311.207031 245.851562 311.207031 245.96875 C 311.207031 246.085938 311.300781 246.179688 311.417969 246.179688 C 311.535156 246.179688 311.628906 246.085938 311.628906 245.96875 Z M 311.628906 245.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.992188 245.078125 C 307.992188 244.960938 307.898438 244.867188 307.78125 244.867188 C 307.664062 244.867188 307.570312 244.960938 307.570312 245.078125 C 307.570312 245.195312 307.664062 245.289062 307.78125 245.289062 C 307.898438 245.289062 307.992188 245.195312 307.992188 245.078125 Z M 307.992188 245.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.675781 247.371094 C 308.675781 247.253906 308.582031 247.160156 308.464844 247.160156 C 308.347656 247.160156 308.253906 247.253906 308.253906 247.371094 C 308.253906 247.488281 308.347656 247.582031 308.464844 247.582031 C 308.582031 247.582031 308.675781 247.488281 308.675781 247.371094 Z M 308.675781 247.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.480469 249.113281 C 307.480469 248.996094 307.386719 248.902344 307.269531 248.902344 C 307.152344 248.902344 307.058594 248.996094 307.058594 249.113281 C 307.058594 249.230469 307.152344 249.324219 307.269531 249.324219 C 307.386719 249.324219 307.480469 249.230469 307.480469 249.113281 Z M 307.480469 249.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.65625 247.304688 C 307.65625 247.1875 307.5625 247.09375 307.445312 247.09375 C 307.328125 247.09375 307.234375 247.1875 307.234375 247.304688 C 307.234375 247.421875 307.328125 247.515625 307.445312 247.515625 C 307.5625 247.515625 307.65625 247.421875 307.65625 247.304688 Z M 307.65625 247.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.246094 248.515625 C 309.246094 248.398438 309.152344 248.304688 309.035156 248.304688 C 308.917969 248.304688 308.824219 248.398438 308.824219 248.515625 C 308.824219 248.632812 308.917969 248.726562 309.035156 248.726562 C 309.152344 248.726562 309.246094 248.632812 309.246094 248.515625 Z M 309.246094 248.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.902344 252.226562 C 308.902344 252.109375 308.808594 252.015625 308.691406 252.015625 C 308.574219 252.015625 308.480469 252.109375 308.480469 252.226562 C 308.480469 252.34375 308.574219 252.4375 308.691406 252.4375 C 308.808594 252.4375 308.902344 252.34375 308.902344 252.226562 Z M 308.902344 252.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.328125 252.96875 C 308.328125 252.851562 308.234375 252.757812 308.117188 252.757812 C 308 252.757812 307.90625 252.851562 307.90625 252.96875 C 307.90625 253.085938 308 253.179688 308.117188 253.179688 C 308.234375 253.179688 308.328125 253.085938 308.328125 252.96875 Z M 308.328125 252.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.371094 254.539062 C 308.371094 254.421875 308.277344 254.328125 308.160156 254.328125 C 308.042969 254.328125 307.949219 254.421875 307.949219 254.539062 C 307.949219 254.65625 308.042969 254.75 308.160156 254.75 C 308.277344 254.75 308.371094 254.65625 308.371094 254.539062 Z M 308.371094 254.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.75 254.714844 C 306.75 254.597656 306.65625 254.503906 306.539062 254.503906 C 306.421875 254.503906 306.328125 254.597656 306.328125 254.714844 C 306.328125 254.832031 306.421875 254.925781 306.539062 254.925781 C 306.65625 254.925781 306.75 254.832031 306.75 254.714844 Z M 306.75 254.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.039062 254.511719 C 308.039062 254.394531 307.945312 254.300781 307.828125 254.300781 C 307.710938 254.300781 307.617188 254.394531 307.617188 254.511719 C 307.617188 254.628906 307.710938 254.722656 307.828125 254.722656 C 307.945312 254.722656 308.039062 254.628906 308.039062 254.511719 Z M 308.039062 254.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.429688 254.753906 C 306.429688 254.636719 306.335938 254.542969 306.21875 254.542969 C 306.101562 254.542969 306.007812 254.636719 306.007812 254.753906 C 306.007812 254.871094 306.101562 254.964844 306.21875 254.964844 C 306.335938 254.964844 306.429688 254.871094 306.429688 254.753906 Z M 306.429688 254.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.972656 254.75 C 308.972656 254.632812 308.878906 254.539062 308.761719 254.539062 C 308.644531 254.539062 308.550781 254.632812 308.550781 254.75 C 308.550781 254.867188 308.644531 254.960938 308.761719 254.960938 C 308.878906 254.960938 308.972656 254.867188 308.972656 254.75 Z M 308.972656 254.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309 256.589844 C 309 256.472656 308.90625 256.378906 308.789062 256.378906 C 308.671875 256.378906 308.578125 256.472656 308.578125 256.589844 C 308.578125 256.707031 308.671875 256.800781 308.789062 256.800781 C 308.90625 256.800781 309 256.707031 309 256.589844 Z M 309 256.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.160156 256.972656 C 309.160156 256.855469 309.066406 256.761719 308.949219 256.761719 C 308.832031 256.761719 308.738281 256.855469 308.738281 256.972656 C 308.738281 257.089844 308.832031 257.183594 308.949219 257.183594 C 309.066406 257.183594 309.160156 257.089844 309.160156 256.972656 Z M 309.160156 256.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.644531 253.671875 C 310.644531 253.554688 310.550781 253.460938 310.433594 253.460938 C 310.316406 253.460938 310.222656 253.554688 310.222656 253.671875 C 310.222656 253.789062 310.316406 253.882812 310.433594 253.882812 C 310.550781 253.882812 310.644531 253.789062 310.644531 253.671875 Z M 310.644531 253.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.238281 250.433594 C 311.238281 250.316406 311.144531 250.222656 311.027344 250.222656 C 310.910156 250.222656 310.816406 250.316406 310.816406 250.433594 C 310.816406 250.550781 310.910156 250.644531 311.027344 250.644531 C 311.144531 250.644531 311.238281 250.550781 311.238281 250.433594 Z M 311.238281 250.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.492188 253.144531 C 317.492188 253.027344 317.398438 252.933594 317.28125 252.933594 C 317.164062 252.933594 317.070312 253.027344 317.070312 253.144531 C 317.070312 253.261719 317.164062 253.355469 317.28125 253.355469 C 317.398438 253.355469 317.492188 253.261719 317.492188 253.144531 Z M 317.492188 253.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 318.289062 253.667969 C 318.289062 253.550781 318.195312 253.457031 318.078125 253.457031 C 317.960938 253.457031 317.867188 253.550781 317.867188 253.667969 C 317.867188 253.785156 317.960938 253.878906 318.078125 253.878906 C 318.195312 253.878906 318.289062 253.785156 318.289062 253.667969 Z M 318.289062 253.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 318.574219 256.949219 C 318.574219 256.832031 318.480469 256.738281 318.363281 256.738281 C 318.246094 256.738281 318.152344 256.832031 318.152344 256.949219 C 318.152344 257.066406 318.246094 257.160156 318.363281 257.160156 C 318.480469 257.160156 318.574219 257.066406 318.574219 256.949219 Z M 318.574219 256.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.765625 258.238281 C 315.765625 258.121094 315.671875 258.027344 315.554688 258.027344 C 315.4375 258.027344 315.34375 258.121094 315.34375 258.238281 C 315.34375 258.355469 315.4375 258.449219 315.554688 258.449219 C 315.671875 258.449219 315.765625 258.355469 315.765625 258.238281 Z M 315.765625 258.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.964844 254.988281 C 312.964844 254.871094 312.871094 254.777344 312.753906 254.777344 C 312.636719 254.777344 312.542969 254.871094 312.542969 254.988281 C 312.542969 255.105469 312.636719 255.199219 312.753906 255.199219 C 312.871094 255.199219 312.964844 255.105469 312.964844 254.988281 Z M 312.964844 254.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.261719 256.121094 C 312.261719 256.003906 312.167969 255.910156 312.050781 255.910156 C 311.933594 255.910156 311.839844 256.003906 311.839844 256.121094 C 311.839844 256.238281 311.933594 256.332031 312.050781 256.332031 C 312.167969 256.332031 312.261719 256.238281 312.261719 256.121094 Z M 312.261719 256.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.183594 257.808594 C 314.183594 257.691406 314.089844 257.597656 313.972656 257.597656 C 313.855469 257.597656 313.761719 257.691406 313.761719 257.808594 C 313.761719 257.925781 313.855469 258.019531 313.972656 258.019531 C 314.089844 258.019531 314.183594 257.925781 314.183594 257.808594 Z M 314.183594 257.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.101562 256.890625 C 313.101562 256.773438 313.007812 256.679688 312.890625 256.679688 C 312.773438 256.679688 312.679688 256.773438 312.679688 256.890625 C 312.679688 257.007812 312.773438 257.101562 312.890625 257.101562 C 313.007812 257.101562 313.101562 257.007812 313.101562 256.890625 Z M 313.101562 256.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.78125 261.066406 C 309.78125 260.949219 309.6875 260.855469 309.570312 260.855469 C 309.453125 260.855469 309.359375 260.949219 309.359375 261.066406 C 309.359375 261.183594 309.453125 261.277344 309.570312 261.277344 C 309.6875 261.277344 309.78125 261.183594 309.78125 261.066406 Z M 309.78125 261.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.90625 260.082031 C 306.90625 259.964844 306.8125 259.871094 306.695312 259.871094 C 306.578125 259.871094 306.484375 259.964844 306.484375 260.082031 C 306.484375 260.199219 306.578125 260.292969 306.695312 260.292969 C 306.8125 260.292969 306.90625 260.199219 306.90625 260.082031 Z M 306.90625 260.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.8125 258.492188 C 307.8125 258.375 307.71875 258.28125 307.601562 258.28125 C 307.484375 258.28125 307.390625 258.375 307.390625 258.492188 C 307.390625 258.609375 307.484375 258.703125 307.601562 258.703125 C 307.71875 258.703125 307.8125 258.609375 307.8125 258.492188 Z M 307.8125 258.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.460938 255.582031 C 303.460938 255.464844 303.367188 255.371094 303.25 255.371094 C 303.132812 255.371094 303.039062 255.464844 303.039062 255.582031 C 303.039062 255.699219 303.132812 255.792969 303.25 255.792969 C 303.367188 255.792969 303.460938 255.699219 303.460938 255.582031 Z M 303.460938 255.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.253906 255.753906 C 301.253906 255.636719 301.160156 255.542969 301.042969 255.542969 C 300.925781 255.542969 300.832031 255.636719 300.832031 255.753906 C 300.832031 255.871094 300.925781 255.964844 301.042969 255.964844 C 301.160156 255.964844 301.253906 255.871094 301.253906 255.753906 Z M 301.253906 255.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.347656 256.941406 C 299.347656 256.824219 299.253906 256.730469 299.136719 256.730469 C 299.019531 256.730469 298.925781 256.824219 298.925781 256.941406 C 298.925781 257.058594 299.019531 257.152344 299.136719 257.152344 C 299.253906 257.152344 299.347656 257.058594 299.347656 256.941406 Z M 299.347656 256.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.605469 255.773438 C 295.605469 255.65625 295.511719 255.5625 295.394531 255.5625 C 295.277344 255.5625 295.183594 255.65625 295.183594 255.773438 C 295.183594 255.890625 295.277344 255.984375 295.394531 255.984375 C 295.511719 255.984375 295.605469 255.890625 295.605469 255.773438 Z M 295.605469 255.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.722656 258.253906 C 297.722656 258.136719 297.628906 258.042969 297.511719 258.042969 C 297.394531 258.042969 297.300781 258.136719 297.300781 258.253906 C 297.300781 258.371094 297.394531 258.464844 297.511719 258.464844 C 297.628906 258.464844 297.722656 258.371094 297.722656 258.253906 Z M 297.722656 258.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.554688 252.484375 C 297.554688 252.367188 297.460938 252.273438 297.34375 252.273438 C 297.226562 252.273438 297.132812 252.367188 297.132812 252.484375 C 297.132812 252.601562 297.226562 252.695312 297.34375 252.695312 C 297.460938 252.695312 297.554688 252.601562 297.554688 252.484375 Z M 297.554688 252.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.496094 254.84375 C 298.496094 254.726562 298.402344 254.632812 298.285156 254.632812 C 298.167969 254.632812 298.074219 254.726562 298.074219 254.84375 C 298.074219 254.960938 298.167969 255.054688 298.285156 255.054688 C 298.402344 255.054688 298.496094 254.960938 298.496094 254.84375 Z M 298.496094 254.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.390625 253.644531 C 298.390625 253.527344 298.296875 253.433594 298.179688 253.433594 C 298.0625 253.433594 297.96875 253.527344 297.96875 253.644531 C 297.96875 253.761719 298.0625 253.855469 298.179688 253.855469 C 298.296875 253.855469 298.390625 253.761719 298.390625 253.644531 Z M 298.390625 253.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.382812 252.632812 C 300.382812 252.515625 300.289062 252.421875 300.171875 252.421875 C 300.054688 252.421875 299.960938 252.515625 299.960938 252.632812 C 299.960938 252.75 300.054688 252.84375 300.171875 252.84375 C 300.289062 252.84375 300.382812 252.75 300.382812 252.632812 Z M 300.382812 252.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.3125 252.28125 C 298.3125 252.164062 298.21875 252.070312 298.101562 252.070312 C 297.984375 252.070312 297.890625 252.164062 297.890625 252.28125 C 297.890625 252.398438 297.984375 252.492188 298.101562 252.492188 C 298.21875 252.492188 298.3125 252.398438 298.3125 252.28125 Z M 298.3125 252.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.882812 252.332031 C 299.882812 252.214844 299.789062 252.121094 299.671875 252.121094 C 299.554688 252.121094 299.460938 252.214844 299.460938 252.332031 C 299.460938 252.449219 299.554688 252.542969 299.671875 252.542969 C 299.789062 252.542969 299.882812 252.449219 299.882812 252.332031 Z M 299.882812 252.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.097656 250.859375 C 299.097656 250.742188 299.003906 250.648438 298.886719 250.648438 C 298.769531 250.648438 298.675781 250.742188 298.675781 250.859375 C 298.675781 250.976562 298.769531 251.070312 298.886719 251.070312 C 299.003906 251.070312 299.097656 250.976562 299.097656 250.859375 Z M 299.097656 250.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.804688 248.910156 C 299.804688 248.792969 299.710938 248.699219 299.59375 248.699219 C 299.476562 248.699219 299.382812 248.792969 299.382812 248.910156 C 299.382812 249.027344 299.476562 249.121094 299.59375 249.121094 C 299.710938 249.121094 299.804688 249.027344 299.804688 248.910156 Z M 299.804688 248.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.953125 248.929688 C 297.953125 248.8125 297.859375 248.71875 297.742188 248.71875 C 297.625 248.71875 297.53125 248.8125 297.53125 248.929688 C 297.53125 249.046875 297.625 249.140625 297.742188 249.140625 C 297.859375 249.140625 297.953125 249.046875 297.953125 248.929688 Z M 297.953125 248.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.929688 246.902344 C 297.929688 246.785156 297.835938 246.691406 297.71875 246.691406 C 297.601562 246.691406 297.507812 246.785156 297.507812 246.902344 C 297.507812 247.019531 297.601562 247.113281 297.71875 247.113281 C 297.835938 247.113281 297.929688 247.019531 297.929688 246.902344 Z M 297.929688 246.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.511719 243.9375 C 298.511719 243.820312 298.417969 243.726562 298.300781 243.726562 C 298.183594 243.726562 298.089844 243.820312 298.089844 243.9375 C 298.089844 244.054688 298.183594 244.148438 298.300781 244.148438 C 298.417969 244.148438 298.511719 244.054688 298.511719 243.9375 Z M 298.511719 243.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.664062 243.660156 C 296.664062 243.542969 296.570312 243.449219 296.453125 243.449219 C 296.335938 243.449219 296.242188 243.542969 296.242188 243.660156 C 296.242188 243.777344 296.335938 243.871094 296.453125 243.871094 C 296.570312 243.871094 296.664062 243.777344 296.664062 243.660156 Z M 296.664062 243.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.828125 246.242188 C 295.828125 246.125 295.734375 246.03125 295.617188 246.03125 C 295.5 246.03125 295.40625 246.125 295.40625 246.242188 C 295.40625 246.359375 295.5 246.453125 295.617188 246.453125 C 295.734375 246.453125 295.828125 246.359375 295.828125 246.242188 Z M 295.828125 246.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.585938 246.648438 C 293.585938 246.53125 293.492188 246.4375 293.375 246.4375 C 293.257812 246.4375 293.164062 246.53125 293.164062 246.648438 C 293.164062 246.765625 293.257812 246.859375 293.375 246.859375 C 293.492188 246.859375 293.585938 246.765625 293.585938 246.648438 Z M 293.585938 246.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.535156 246.527344 C 291.535156 246.410156 291.441406 246.316406 291.324219 246.316406 C 291.207031 246.316406 291.113281 246.410156 291.113281 246.527344 C 291.113281 246.644531 291.207031 246.738281 291.324219 246.738281 C 291.441406 246.738281 291.535156 246.644531 291.535156 246.527344 Z M 291.535156 246.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.683594 248.601562 C 290.683594 248.484375 290.589844 248.390625 290.472656 248.390625 C 290.355469 248.390625 290.261719 248.484375 290.261719 248.601562 C 290.261719 248.71875 290.355469 248.8125 290.472656 248.8125 C 290.589844 248.8125 290.683594 248.71875 290.683594 248.601562 Z M 290.683594 248.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.335938 250.582031 C 288.335938 250.464844 288.242188 250.371094 288.125 250.371094 C 288.007812 250.371094 287.914062 250.464844 287.914062 250.582031 C 287.914062 250.699219 288.007812 250.792969 288.125 250.792969 C 288.242188 250.792969 288.335938 250.699219 288.335938 250.582031 Z M 288.335938 250.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.925781 253.945312 C 290.925781 253.828125 290.832031 253.734375 290.714844 253.734375 C 290.597656 253.734375 290.503906 253.828125 290.503906 253.945312 C 290.503906 254.0625 290.597656 254.15625 290.714844 254.15625 C 290.832031 254.15625 290.925781 254.0625 290.925781 253.945312 Z M 290.925781 253.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.90625 255.839844 C 290.90625 255.722656 290.8125 255.628906 290.695312 255.628906 C 290.578125 255.628906 290.484375 255.722656 290.484375 255.839844 C 290.484375 255.957031 290.578125 256.050781 290.695312 256.050781 C 290.8125 256.050781 290.90625 255.957031 290.90625 255.839844 Z M 290.90625 255.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.613281 253.746094 C 291.613281 253.628906 291.519531 253.535156 291.402344 253.535156 C 291.285156 253.535156 291.191406 253.628906 291.191406 253.746094 C 291.191406 253.863281 291.285156 253.957031 291.402344 253.957031 C 291.519531 253.957031 291.613281 253.863281 291.613281 253.746094 Z M 291.613281 253.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.625 254.800781 C 290.625 254.683594 290.53125 254.589844 290.414062 254.589844 C 290.296875 254.589844 290.203125 254.683594 290.203125 254.800781 C 290.203125 254.917969 290.296875 255.011719 290.414062 255.011719 C 290.53125 255.011719 290.625 254.917969 290.625 254.800781 Z M 290.625 254.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.597656 254.8125 C 290.597656 254.695312 290.503906 254.601562 290.386719 254.601562 C 290.269531 254.601562 290.175781 254.695312 290.175781 254.8125 C 290.175781 254.929688 290.269531 255.023438 290.386719 255.023438 C 290.503906 255.023438 290.597656 254.929688 290.597656 254.8125 Z M 290.597656 254.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.253906 255.535156 C 292.253906 255.417969 292.160156 255.324219 292.042969 255.324219 C 291.925781 255.324219 291.832031 255.417969 291.832031 255.535156 C 291.832031 255.652344 291.925781 255.746094 292.042969 255.746094 C 292.160156 255.746094 292.253906 255.652344 292.253906 255.535156 Z M 292.253906 255.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.3125 252.792969 C 298.3125 252.675781 298.21875 252.582031 298.101562 252.582031 C 297.984375 252.582031 297.890625 252.675781 297.890625 252.792969 C 297.890625 252.910156 297.984375 253.003906 298.101562 253.003906 C 298.21875 253.003906 298.3125 252.910156 298.3125 252.792969 Z M 298.3125 252.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.4375 250.570312 C 300.4375 250.453125 300.34375 250.359375 300.226562 250.359375 C 300.109375 250.359375 300.015625 250.453125 300.015625 250.570312 C 300.015625 250.6875 300.109375 250.78125 300.226562 250.78125 C 300.34375 250.78125 300.4375 250.6875 300.4375 250.570312 Z M 300.4375 250.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.074219 249.382812 C 302.074219 249.265625 301.980469 249.171875 301.863281 249.171875 C 301.746094 249.171875 301.652344 249.265625 301.652344 249.382812 C 301.652344 249.5 301.746094 249.59375 301.863281 249.59375 C 301.980469 249.59375 302.074219 249.5 302.074219 249.382812 Z M 302.074219 249.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.5625 248.28125 C 302.5625 248.164062 302.46875 248.070312 302.351562 248.070312 C 302.234375 248.070312 302.140625 248.164062 302.140625 248.28125 C 302.140625 248.398438 302.234375 248.492188 302.351562 248.492188 C 302.46875 248.492188 302.5625 248.398438 302.5625 248.28125 Z M 302.5625 248.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.03125 245.515625 C 302.03125 245.398438 301.9375 245.304688 301.820312 245.304688 C 301.703125 245.304688 301.609375 245.398438 301.609375 245.515625 C 301.609375 245.632812 301.703125 245.726562 301.820312 245.726562 C 301.9375 245.726562 302.03125 245.632812 302.03125 245.515625 Z M 302.03125 245.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.105469 247.398438 C 305.105469 247.28125 305.011719 247.1875 304.894531 247.1875 C 304.777344 247.1875 304.683594 247.28125 304.683594 247.398438 C 304.683594 247.515625 304.777344 247.609375 304.894531 247.609375 C 305.011719 247.609375 305.105469 247.515625 305.105469 247.398438 Z M 305.105469 247.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.863281 248.53125 C 302.863281 248.414062 302.769531 248.320312 302.652344 248.320312 C 302.535156 248.320312 302.441406 248.414062 302.441406 248.53125 C 302.441406 248.648438 302.535156 248.742188 302.652344 248.742188 C 302.769531 248.742188 302.863281 248.648438 302.863281 248.53125 Z M 302.863281 248.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.730469 246.855469 C 305.730469 246.738281 305.636719 246.644531 305.519531 246.644531 C 305.402344 246.644531 305.308594 246.738281 305.308594 246.855469 C 305.308594 246.972656 305.402344 247.066406 305.519531 247.066406 C 305.636719 247.066406 305.730469 246.972656 305.730469 246.855469 Z M 305.730469 246.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.359375 248.066406 C 306.359375 247.949219 306.265625 247.855469 306.148438 247.855469 C 306.03125 247.855469 305.9375 247.949219 305.9375 248.066406 C 305.9375 248.183594 306.03125 248.277344 306.148438 248.277344 C 306.265625 248.277344 306.359375 248.183594 306.359375 248.066406 Z M 306.359375 248.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.023438 244.398438 C 307.023438 244.28125 306.929688 244.1875 306.8125 244.1875 C 306.695312 244.1875 306.601562 244.28125 306.601562 244.398438 C 306.601562 244.515625 306.695312 244.609375 306.8125 244.609375 C 306.929688 244.609375 307.023438 244.515625 307.023438 244.398438 Z M 307.023438 244.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.265625 248.039062 C 305.265625 247.921875 305.171875 247.828125 305.054688 247.828125 C 304.9375 247.828125 304.84375 247.921875 304.84375 248.039062 C 304.84375 248.15625 304.9375 248.25 305.054688 248.25 C 305.171875 248.25 305.265625 248.15625 305.265625 248.039062 Z M 305.265625 248.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.203125 249.75 C 303.203125 249.632812 303.109375 249.539062 302.992188 249.539062 C 302.875 249.539062 302.78125 249.632812 302.78125 249.75 C 302.78125 249.867188 302.875 249.960938 302.992188 249.960938 C 303.109375 249.960938 303.203125 249.867188 303.203125 249.75 Z M 303.203125 249.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.382812 252.691406 C 300.382812 252.574219 300.289062 252.480469 300.171875 252.480469 C 300.054688 252.480469 299.960938 252.574219 299.960938 252.691406 C 299.960938 252.808594 300.054688 252.902344 300.171875 252.902344 C 300.289062 252.902344 300.382812 252.808594 300.382812 252.691406 Z M 300.382812 252.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.898438 254.058594 C 303.898438 253.941406 303.804688 253.847656 303.6875 253.847656 C 303.570312 253.847656 303.476562 253.941406 303.476562 254.058594 C 303.476562 254.175781 303.570312 254.269531 303.6875 254.269531 C 303.804688 254.269531 303.898438 254.175781 303.898438 254.058594 Z M 303.898438 254.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.386719 255.484375 C 306.386719 255.367188 306.292969 255.273438 306.175781 255.273438 C 306.058594 255.273438 305.964844 255.367188 305.964844 255.484375 C 305.964844 255.601562 306.058594 255.695312 306.175781 255.695312 C 306.292969 255.695312 306.386719 255.601562 306.386719 255.484375 Z M 306.386719 255.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.996094 253.984375 C 305.996094 253.867188 305.902344 253.773438 305.785156 253.773438 C 305.667969 253.773438 305.574219 253.867188 305.574219 253.984375 C 305.574219 254.101562 305.667969 254.195312 305.785156 254.195312 C 305.902344 254.195312 305.996094 254.101562 305.996094 253.984375 Z M 305.996094 253.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.769531 252.613281 C 307.769531 252.496094 307.675781 252.402344 307.558594 252.402344 C 307.441406 252.402344 307.347656 252.496094 307.347656 252.613281 C 307.347656 252.730469 307.441406 252.824219 307.558594 252.824219 C 307.675781 252.824219 307.769531 252.730469 307.769531 252.613281 Z M 307.769531 252.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.703125 253.695312 C 305.703125 253.578125 305.609375 253.484375 305.492188 253.484375 C 305.375 253.484375 305.28125 253.578125 305.28125 253.695312 C 305.28125 253.8125 305.375 253.90625 305.492188 253.90625 C 305.609375 253.90625 305.703125 253.8125 305.703125 253.695312 Z M 305.703125 253.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.636719 254.253906 C 303.636719 254.136719 303.542969 254.042969 303.425781 254.042969 C 303.308594 254.042969 303.214844 254.136719 303.214844 254.253906 C 303.214844 254.371094 303.308594 254.464844 303.425781 254.464844 C 303.542969 254.464844 303.636719 254.371094 303.636719 254.253906 Z M 303.636719 254.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.332031 253.695312 C 305.332031 253.578125 305.238281 253.484375 305.121094 253.484375 C 305.003906 253.484375 304.910156 253.578125 304.910156 253.695312 C 304.910156 253.8125 305.003906 253.90625 305.121094 253.90625 C 305.238281 253.90625 305.332031 253.8125 305.332031 253.695312 Z M 305.332031 253.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.90625 253.667969 C 304.90625 253.550781 304.8125 253.457031 304.695312 253.457031 C 304.578125 253.457031 304.484375 253.550781 304.484375 253.667969 C 304.484375 253.785156 304.578125 253.878906 304.695312 253.878906 C 304.8125 253.878906 304.90625 253.785156 304.90625 253.667969 Z M 304.90625 253.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.734375 253.058594 C 305.734375 252.941406 305.640625 252.847656 305.523438 252.847656 C 305.40625 252.847656 305.3125 252.941406 305.3125 253.058594 C 305.3125 253.175781 305.40625 253.269531 305.523438 253.269531 C 305.640625 253.269531 305.734375 253.175781 305.734375 253.058594 Z M 305.734375 253.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.042969 257.925781 C 304.042969 257.808594 303.949219 257.714844 303.832031 257.714844 C 303.714844 257.714844 303.621094 257.808594 303.621094 257.925781 C 303.621094 258.042969 303.714844 258.136719 303.832031 258.136719 C 303.949219 258.136719 304.042969 258.042969 304.042969 257.925781 Z M 304.042969 257.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.707031 261.136719 C 303.707031 261.019531 303.613281 260.925781 303.496094 260.925781 C 303.378906 260.925781 303.285156 261.019531 303.285156 261.136719 C 303.285156 261.253906 303.378906 261.347656 303.496094 261.347656 C 303.613281 261.347656 303.707031 261.253906 303.707031 261.136719 Z M 303.707031 261.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.140625 261.050781 C 299.140625 260.933594 299.046875 260.839844 298.929688 260.839844 C 298.8125 260.839844 298.71875 260.933594 298.71875 261.050781 C 298.71875 261.167969 298.8125 261.261719 298.929688 261.261719 C 299.046875 261.261719 299.140625 261.167969 299.140625 261.050781 Z M 299.140625 261.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.035156 261.40625 C 304.035156 261.289062 303.941406 261.195312 303.824219 261.195312 C 303.707031 261.195312 303.613281 261.289062 303.613281 261.40625 C 303.613281 261.523438 303.707031 261.617188 303.824219 261.617188 C 303.941406 261.617188 304.035156 261.523438 304.035156 261.40625 Z M 304.035156 261.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.726562 260.667969 C 303.726562 260.550781 303.632812 260.457031 303.515625 260.457031 C 303.398438 260.457031 303.304688 260.550781 303.304688 260.667969 C 303.304688 260.785156 303.398438 260.878906 303.515625 260.878906 C 303.632812 260.878906 303.726562 260.785156 303.726562 260.667969 Z M 303.726562 260.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.308594 257.464844 C 303.308594 257.347656 303.214844 257.253906 303.097656 257.253906 C 302.980469 257.253906 302.886719 257.347656 302.886719 257.464844 C 302.886719 257.582031 302.980469 257.675781 303.097656 257.675781 C 303.214844 257.675781 303.308594 257.582031 303.308594 257.464844 Z M 303.308594 257.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.257812 255.121094 C 302.257812 255.003906 302.164062 254.910156 302.046875 254.910156 C 301.929688 254.910156 301.835938 255.003906 301.835938 255.121094 C 301.835938 255.238281 301.929688 255.332031 302.046875 255.332031 C 302.164062 255.332031 302.257812 255.238281 302.257812 255.121094 Z M 302.257812 255.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.328125 255.574219 C 303.328125 255.457031 303.234375 255.363281 303.117188 255.363281 C 303 255.363281 302.90625 255.457031 302.90625 255.574219 C 302.90625 255.691406 303 255.785156 303.117188 255.785156 C 303.234375 255.785156 303.328125 255.691406 303.328125 255.574219 Z M 303.328125 255.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.601562 255.101562 C 300.601562 254.984375 300.507812 254.890625 300.390625 254.890625 C 300.273438 254.890625 300.179688 254.984375 300.179688 255.101562 C 300.179688 255.21875 300.273438 255.3125 300.390625 255.3125 C 300.507812 255.3125 300.601562 255.21875 300.601562 255.101562 Z M 300.601562 255.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.480469 254.589844 C 303.480469 254.472656 303.386719 254.378906 303.269531 254.378906 C 303.152344 254.378906 303.058594 254.472656 303.058594 254.589844 C 303.058594 254.707031 303.152344 254.800781 303.269531 254.800781 C 303.386719 254.800781 303.480469 254.707031 303.480469 254.589844 Z M 303.480469 254.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.910156 250.097656 C 304.910156 249.980469 304.816406 249.886719 304.699219 249.886719 C 304.582031 249.886719 304.488281 249.980469 304.488281 250.097656 C 304.488281 250.214844 304.582031 250.308594 304.699219 250.308594 C 304.816406 250.308594 304.910156 250.214844 304.910156 250.097656 Z M 304.910156 250.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.449219 248.21875 C 302.449219 248.101562 302.355469 248.007812 302.238281 248.007812 C 302.121094 248.007812 302.027344 248.101562 302.027344 248.21875 C 302.027344 248.335938 302.121094 248.429688 302.238281 248.429688 C 302.355469 248.429688 302.449219 248.335938 302.449219 248.21875 Z M 302.449219 248.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.171875 248.894531 C 303.171875 248.777344 303.078125 248.683594 302.960938 248.683594 C 302.84375 248.683594 302.75 248.777344 302.75 248.894531 C 302.75 249.011719 302.84375 249.105469 302.960938 249.105469 C 303.078125 249.105469 303.171875 249.011719 303.171875 248.894531 Z M 303.171875 248.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.445312 249.410156 C 302.445312 249.292969 302.351562 249.199219 302.234375 249.199219 C 302.117188 249.199219 302.023438 249.292969 302.023438 249.410156 C 302.023438 249.527344 302.117188 249.621094 302.234375 249.621094 C 302.351562 249.621094 302.445312 249.527344 302.445312 249.410156 Z M 302.445312 249.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.730469 248.910156 C 298.730469 248.792969 298.636719 248.699219 298.519531 248.699219 C 298.402344 248.699219 298.308594 248.792969 298.308594 248.910156 C 298.308594 249.027344 298.402344 249.121094 298.519531 249.121094 C 298.636719 249.121094 298.730469 249.027344 298.730469 248.910156 Z M 298.730469 248.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.492188 249.371094 C 300.492188 249.253906 300.398438 249.160156 300.28125 249.160156 C 300.164062 249.160156 300.070312 249.253906 300.070312 249.371094 C 300.070312 249.488281 300.164062 249.582031 300.28125 249.582031 C 300.398438 249.582031 300.492188 249.488281 300.492188 249.371094 Z M 300.492188 249.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.609375 248.777344 C 301.609375 248.660156 301.515625 248.566406 301.398438 248.566406 C 301.28125 248.566406 301.1875 248.660156 301.1875 248.777344 C 301.1875 248.894531 301.28125 248.988281 301.398438 248.988281 C 301.515625 248.988281 301.609375 248.894531 301.609375 248.777344 Z M 301.609375 248.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.335938 247.558594 C 301.335938 247.441406 301.242188 247.347656 301.125 247.347656 C 301.007812 247.347656 300.914062 247.441406 300.914062 247.558594 C 300.914062 247.675781 301.007812 247.769531 301.125 247.769531 C 301.242188 247.769531 301.335938 247.675781 301.335938 247.558594 Z M 301.335938 247.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.261719 249.085938 C 303.261719 248.96875 303.167969 248.875 303.050781 248.875 C 302.933594 248.875 302.839844 248.96875 302.839844 249.085938 C 302.839844 249.203125 302.933594 249.296875 303.050781 249.296875 C 303.167969 249.296875 303.261719 249.203125 303.261719 249.085938 Z M 303.261719 249.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.707031 251.703125 C 296.707031 251.585938 296.613281 251.492188 296.496094 251.492188 C 296.378906 251.492188 296.285156 251.585938 296.285156 251.703125 C 296.285156 251.820312 296.378906 251.914062 296.496094 251.914062 C 296.613281 251.914062 296.707031 251.820312 296.707031 251.703125 Z M 296.707031 251.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.019531 248.789062 C 296.019531 248.671875 295.925781 248.578125 295.808594 248.578125 C 295.691406 248.578125 295.597656 248.671875 295.597656 248.789062 C 295.597656 248.90625 295.691406 249 295.808594 249 C 295.925781 249 296.019531 248.90625 296.019531 248.789062 Z M 296.019531 248.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.289062 253.789062 C 298.289062 253.671875 298.195312 253.578125 298.078125 253.578125 C 297.960938 253.578125 297.867188 253.671875 297.867188 253.789062 C 297.867188 253.90625 297.960938 254 298.078125 254 C 298.195312 254 298.289062 253.90625 298.289062 253.789062 Z M 298.289062 253.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.117188 255.863281 C 300.117188 255.746094 300.023438 255.652344 299.90625 255.652344 C 299.789062 255.652344 299.695312 255.746094 299.695312 255.863281 C 299.695312 255.980469 299.789062 256.074219 299.90625 256.074219 C 300.023438 256.074219 300.117188 255.980469 300.117188 255.863281 Z M 300.117188 255.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.789062 252.367188 C 302.789062 252.25 302.695312 252.15625 302.578125 252.15625 C 302.460938 252.15625 302.367188 252.25 302.367188 252.367188 C 302.367188 252.484375 302.460938 252.578125 302.578125 252.578125 C 302.695312 252.578125 302.789062 252.484375 302.789062 252.367188 Z M 302.789062 252.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.609375 251.925781 C 304.609375 251.808594 304.515625 251.714844 304.398438 251.714844 C 304.28125 251.714844 304.1875 251.808594 304.1875 251.925781 C 304.1875 252.042969 304.28125 252.136719 304.398438 252.136719 C 304.515625 252.136719 304.609375 252.042969 304.609375 251.925781 Z M 304.609375 251.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.5 251.46875 C 304.5 251.351562 304.40625 251.257812 304.289062 251.257812 C 304.171875 251.257812 304.078125 251.351562 304.078125 251.46875 C 304.078125 251.585938 304.171875 251.679688 304.289062 251.679688 C 304.40625 251.679688 304.5 251.585938 304.5 251.46875 Z M 304.5 251.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.824219 250.09375 C 301.824219 249.976562 301.730469 249.882812 301.613281 249.882812 C 301.496094 249.882812 301.402344 249.976562 301.402344 250.09375 C 301.402344 250.210938 301.496094 250.304688 301.613281 250.304688 C 301.730469 250.304688 301.824219 250.210938 301.824219 250.09375 Z M 301.824219 250.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.839844 249.84375 C 301.839844 249.726562 301.746094 249.632812 301.628906 249.632812 C 301.511719 249.632812 301.417969 249.726562 301.417969 249.84375 C 301.417969 249.960938 301.511719 250.054688 301.628906 250.054688 C 301.746094 250.054688 301.839844 249.960938 301.839844 249.84375 Z M 301.839844 249.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.003906 249.648438 C 303.003906 249.53125 302.910156 249.4375 302.792969 249.4375 C 302.675781 249.4375 302.582031 249.53125 302.582031 249.648438 C 302.582031 249.765625 302.675781 249.859375 302.792969 249.859375 C 302.910156 249.859375 303.003906 249.765625 303.003906 249.648438 Z M 303.003906 249.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.253906 249.53125 C 303.253906 249.414062 303.160156 249.320312 303.042969 249.320312 C 302.925781 249.320312 302.832031 249.414062 302.832031 249.53125 C 302.832031 249.648438 302.925781 249.742188 303.042969 249.742188 C 303.160156 249.742188 303.253906 249.648438 303.253906 249.53125 Z M 303.253906 249.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.367188 252.101562 C 301.367188 251.984375 301.273438 251.890625 301.15625 251.890625 C 301.039062 251.890625 300.945312 251.984375 300.945312 252.101562 C 300.945312 252.21875 301.039062 252.3125 301.15625 252.3125 C 301.273438 252.3125 301.367188 252.21875 301.367188 252.101562 Z M 301.367188 252.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.839844 254.449219 C 299.839844 254.332031 299.746094 254.238281 299.628906 254.238281 C 299.511719 254.238281 299.417969 254.332031 299.417969 254.449219 C 299.417969 254.566406 299.511719 254.660156 299.628906 254.660156 C 299.746094 254.660156 299.839844 254.566406 299.839844 254.449219 Z M 299.839844 254.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.015625 256.746094 C 301.015625 256.628906 300.921875 256.535156 300.804688 256.535156 C 300.6875 256.535156 300.59375 256.628906 300.59375 256.746094 C 300.59375 256.863281 300.6875 256.957031 300.804688 256.957031 C 300.921875 256.957031 301.015625 256.863281 301.015625 256.746094 Z M 301.015625 256.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.6875 257.554688 C 298.6875 257.4375 298.59375 257.34375 298.476562 257.34375 C 298.359375 257.34375 298.265625 257.4375 298.265625 257.554688 C 298.265625 257.671875 298.359375 257.765625 298.476562 257.765625 C 298.59375 257.765625 298.6875 257.671875 298.6875 257.554688 Z M 298.6875 257.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.585938 256.257812 C 302.585938 256.140625 302.492188 256.046875 302.375 256.046875 C 302.257812 256.046875 302.164062 256.140625 302.164062 256.257812 C 302.164062 256.375 302.257812 256.46875 302.375 256.46875 C 302.492188 256.46875 302.585938 256.375 302.585938 256.257812 Z M 302.585938 256.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.539062 257.050781 C 301.539062 256.933594 301.445312 256.839844 301.328125 256.839844 C 301.210938 256.839844 301.117188 256.933594 301.117188 257.050781 C 301.117188 257.167969 301.210938 257.261719 301.328125 257.261719 C 301.445312 257.261719 301.539062 257.167969 301.539062 257.050781 Z M 301.539062 257.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.082031 254.578125 C 302.082031 254.460938 301.988281 254.367188 301.871094 254.367188 C 301.753906 254.367188 301.660156 254.460938 301.660156 254.578125 C 301.660156 254.695312 301.753906 254.789062 301.871094 254.789062 C 301.988281 254.789062 302.082031 254.695312 302.082031 254.578125 Z M 302.082031 254.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.4375 250.480469 C 305.4375 250.363281 305.34375 250.269531 305.226562 250.269531 C 305.109375 250.269531 305.015625 250.363281 305.015625 250.480469 C 305.015625 250.597656 305.109375 250.691406 305.226562 250.691406 C 305.34375 250.691406 305.4375 250.597656 305.4375 250.480469 Z M 305.4375 250.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.234375 253.859375 C 306.234375 253.742188 306.140625 253.648438 306.023438 253.648438 C 305.90625 253.648438 305.8125 253.742188 305.8125 253.859375 C 305.8125 253.976562 305.90625 254.070312 306.023438 254.070312 C 306.140625 254.070312 306.234375 253.976562 306.234375 253.859375 Z M 306.234375 253.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.382812 254.730469 C 306.382812 254.613281 306.289062 254.519531 306.171875 254.519531 C 306.054688 254.519531 305.960938 254.613281 305.960938 254.730469 C 305.960938 254.847656 306.054688 254.941406 306.171875 254.941406 C 306.289062 254.941406 306.382812 254.847656 306.382812 254.730469 Z M 306.382812 254.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.265625 254.59375 C 305.265625 254.476562 305.171875 254.382812 305.054688 254.382812 C 304.9375 254.382812 304.84375 254.476562 304.84375 254.59375 C 304.84375 254.710938 304.9375 254.804688 305.054688 254.804688 C 305.171875 254.804688 305.265625 254.710938 305.265625 254.59375 Z M 305.265625 254.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.851562 257.96875 C 305.851562 257.851562 305.757812 257.757812 305.640625 257.757812 C 305.523438 257.757812 305.429688 257.851562 305.429688 257.96875 C 305.429688 258.085938 305.523438 258.179688 305.640625 258.179688 C 305.757812 258.179688 305.851562 258.085938 305.851562 257.96875 Z M 305.851562 257.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.449219 264.804688 C 305.449219 264.6875 305.355469 264.59375 305.238281 264.59375 C 305.121094 264.59375 305.027344 264.6875 305.027344 264.804688 C 305.027344 264.921875 305.121094 265.015625 305.238281 265.015625 C 305.355469 265.015625 305.449219 264.921875 305.449219 264.804688 Z M 305.449219 264.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.484375 265.359375 C 304.484375 265.242188 304.390625 265.148438 304.273438 265.148438 C 304.15625 265.148438 304.0625 265.242188 304.0625 265.359375 C 304.0625 265.476562 304.15625 265.570312 304.273438 265.570312 C 304.390625 265.570312 304.484375 265.476562 304.484375 265.359375 Z M 304.484375 265.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.671875 266.148438 C 304.671875 266.03125 304.578125 265.9375 304.460938 265.9375 C 304.34375 265.9375 304.25 266.03125 304.25 266.148438 C 304.25 266.265625 304.34375 266.359375 304.460938 266.359375 C 304.578125 266.359375 304.671875 266.265625 304.671875 266.148438 Z M 304.671875 266.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.324219 265.351562 C 300.324219 265.234375 300.230469 265.140625 300.113281 265.140625 C 299.996094 265.140625 299.902344 265.234375 299.902344 265.351562 C 299.902344 265.46875 299.996094 265.5625 300.113281 265.5625 C 300.230469 265.5625 300.324219 265.46875 300.324219 265.351562 Z M 300.324219 265.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.355469 263.75 C 296.355469 263.632812 296.261719 263.539062 296.144531 263.539062 C 296.027344 263.539062 295.933594 263.632812 295.933594 263.75 C 295.933594 263.867188 296.027344 263.960938 296.144531 263.960938 C 296.261719 263.960938 296.355469 263.867188 296.355469 263.75 Z M 296.355469 263.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.851562 261.992188 C 295.851562 261.875 295.757812 261.78125 295.640625 261.78125 C 295.523438 261.78125 295.429688 261.875 295.429688 261.992188 C 295.429688 262.109375 295.523438 262.203125 295.640625 262.203125 C 295.757812 262.203125 295.851562 262.109375 295.851562 261.992188 Z M 295.851562 261.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.566406 260.988281 C 293.566406 260.871094 293.472656 260.777344 293.355469 260.777344 C 293.238281 260.777344 293.144531 260.871094 293.144531 260.988281 C 293.144531 261.105469 293.238281 261.199219 293.355469 261.199219 C 293.472656 261.199219 293.566406 261.105469 293.566406 260.988281 Z M 293.566406 260.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.148438 260.117188 C 295.148438 260 295.054688 259.90625 294.9375 259.90625 C 294.820312 259.90625 294.726562 260 294.726562 260.117188 C 294.726562 260.234375 294.820312 260.328125 294.9375 260.328125 C 295.054688 260.328125 295.148438 260.234375 295.148438 260.117188 Z M 295.148438 260.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.351562 261.433594 C 294.351562 261.316406 294.257812 261.222656 294.140625 261.222656 C 294.023438 261.222656 293.929688 261.316406 293.929688 261.433594 C 293.929688 261.550781 294.023438 261.644531 294.140625 261.644531 C 294.257812 261.644531 294.351562 261.550781 294.351562 261.433594 Z M 294.351562 261.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.71875 260.140625 C 291.71875 260.023438 291.625 259.929688 291.507812 259.929688 C 291.390625 259.929688 291.296875 260.023438 291.296875 260.140625 C 291.296875 260.257812 291.390625 260.351562 291.507812 260.351562 C 291.625 260.351562 291.71875 260.257812 291.71875 260.140625 Z M 291.71875 260.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.433594 262.296875 C 292.433594 262.179688 292.339844 262.085938 292.222656 262.085938 C 292.105469 262.085938 292.011719 262.179688 292.011719 262.296875 C 292.011719 262.414062 292.105469 262.507812 292.222656 262.507812 C 292.339844 262.507812 292.433594 262.414062 292.433594 262.296875 Z M 292.433594 262.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.15625 262.421875 C 293.15625 262.304688 293.0625 262.210938 292.945312 262.210938 C 292.828125 262.210938 292.734375 262.304688 292.734375 262.421875 C 292.734375 262.539062 292.828125 262.632812 292.945312 262.632812 C 293.0625 262.632812 293.15625 262.539062 293.15625 262.421875 Z M 293.15625 262.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.894531 263.722656 C 292.894531 263.605469 292.800781 263.511719 292.683594 263.511719 C 292.566406 263.511719 292.472656 263.605469 292.472656 263.722656 C 292.472656 263.839844 292.566406 263.933594 292.683594 263.933594 C 292.800781 263.933594 292.894531 263.839844 292.894531 263.722656 Z M 292.894531 263.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.589844 265.574219 C 293.589844 265.457031 293.496094 265.363281 293.378906 265.363281 C 293.261719 265.363281 293.167969 265.457031 293.167969 265.574219 C 293.167969 265.691406 293.261719 265.785156 293.378906 265.785156 C 293.496094 265.785156 293.589844 265.691406 293.589844 265.574219 Z M 293.589844 265.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.242188 261.953125 C 293.242188 261.835938 293.148438 261.742188 293.03125 261.742188 C 292.914062 261.742188 292.820312 261.835938 292.820312 261.953125 C 292.820312 262.070312 292.914062 262.164062 293.03125 262.164062 C 293.148438 262.164062 293.242188 262.070312 293.242188 261.953125 Z M 293.242188 261.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.636719 262.78125 C 294.636719 262.664062 294.542969 262.570312 294.425781 262.570312 C 294.308594 262.570312 294.214844 262.664062 294.214844 262.78125 C 294.214844 262.898438 294.308594 262.992188 294.425781 262.992188 C 294.542969 262.992188 294.636719 262.898438 294.636719 262.78125 Z M 294.636719 262.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.582031 261.722656 C 296.582031 261.605469 296.488281 261.511719 296.371094 261.511719 C 296.253906 261.511719 296.160156 261.605469 296.160156 261.722656 C 296.160156 261.839844 296.253906 261.933594 296.371094 261.933594 C 296.488281 261.933594 296.582031 261.839844 296.582031 261.722656 Z M 296.582031 261.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.992188 260.902344 C 298.992188 260.785156 298.898438 260.691406 298.78125 260.691406 C 298.664062 260.691406 298.570312 260.785156 298.570312 260.902344 C 298.570312 261.019531 298.664062 261.113281 298.78125 261.113281 C 298.898438 261.113281 298.992188 261.019531 298.992188 260.902344 Z M 298.992188 260.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.109375 265.222656 C 302.109375 265.105469 302.015625 265.011719 301.898438 265.011719 C 301.78125 265.011719 301.6875 265.105469 301.6875 265.222656 C 301.6875 265.339844 301.78125 265.433594 301.898438 265.433594 C 302.015625 265.433594 302.109375 265.339844 302.109375 265.222656 Z M 302.109375 265.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.414062 266.007812 C 303.414062 265.890625 303.320312 265.796875 303.203125 265.796875 C 303.085938 265.796875 302.992188 265.890625 302.992188 266.007812 C 302.992188 266.125 303.085938 266.21875 303.203125 266.21875 C 303.320312 266.21875 303.414062 266.125 303.414062 266.007812 Z M 303.414062 266.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.917969 267.332031 C 300.917969 267.214844 300.824219 267.121094 300.707031 267.121094 C 300.589844 267.121094 300.496094 267.214844 300.496094 267.332031 C 300.496094 267.449219 300.589844 267.542969 300.707031 267.542969 C 300.824219 267.542969 300.917969 267.449219 300.917969 267.332031 Z M 300.917969 267.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.4375 265.699219 C 299.4375 265.582031 299.34375 265.488281 299.226562 265.488281 C 299.109375 265.488281 299.015625 265.582031 299.015625 265.699219 C 299.015625 265.816406 299.109375 265.910156 299.226562 265.910156 C 299.34375 265.910156 299.4375 265.816406 299.4375 265.699219 Z M 299.4375 265.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.496094 264.386719 C 300.496094 264.269531 300.402344 264.175781 300.285156 264.175781 C 300.167969 264.175781 300.074219 264.269531 300.074219 264.386719 C 300.074219 264.503906 300.167969 264.597656 300.285156 264.597656 C 300.402344 264.597656 300.496094 264.503906 300.496094 264.386719 Z M 300.496094 264.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.539062 264.425781 C 302.539062 264.308594 302.445312 264.214844 302.328125 264.214844 C 302.210938 264.214844 302.117188 264.308594 302.117188 264.425781 C 302.117188 264.542969 302.210938 264.636719 302.328125 264.636719 C 302.445312 264.636719 302.539062 264.542969 302.539062 264.425781 Z M 302.539062 264.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.3125 260.953125 C 300.3125 260.835938 300.21875 260.742188 300.101562 260.742188 C 299.984375 260.742188 299.890625 260.835938 299.890625 260.953125 C 299.890625 261.070312 299.984375 261.164062 300.101562 261.164062 C 300.21875 261.164062 300.3125 261.070312 300.3125 260.953125 Z M 300.3125 260.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.714844 264.074219 C 302.714844 263.957031 302.621094 263.863281 302.503906 263.863281 C 302.386719 263.863281 302.292969 263.957031 302.292969 264.074219 C 302.292969 264.191406 302.386719 264.285156 302.503906 264.285156 C 302.621094 264.285156 302.714844 264.191406 302.714844 264.074219 Z M 302.714844 264.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.222656 264.765625 C 307.222656 264.648438 307.128906 264.554688 307.011719 264.554688 C 306.894531 264.554688 306.800781 264.648438 306.800781 264.765625 C 306.800781 264.882812 306.894531 264.976562 307.011719 264.976562 C 307.128906 264.976562 307.222656 264.882812 307.222656 264.765625 Z M 307.222656 264.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.398438 266.234375 C 308.398438 266.117188 308.304688 266.023438 308.1875 266.023438 C 308.070312 266.023438 307.976562 266.117188 307.976562 266.234375 C 307.976562 266.351562 308.070312 266.445312 308.1875 266.445312 C 308.304688 266.445312 308.398438 266.351562 308.398438 266.234375 Z M 308.398438 266.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.832031 267.414062 C 306.832031 267.296875 306.738281 267.203125 306.621094 267.203125 C 306.503906 267.203125 306.410156 267.296875 306.410156 267.414062 C 306.410156 267.53125 306.503906 267.625 306.621094 267.625 C 306.738281 267.625 306.832031 267.53125 306.832031 267.414062 Z M 306.832031 267.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.253906 271.328125 C 306.253906 271.210938 306.160156 271.117188 306.042969 271.117188 C 305.925781 271.117188 305.832031 271.210938 305.832031 271.328125 C 305.832031 271.445312 305.925781 271.539062 306.042969 271.539062 C 306.160156 271.539062 306.253906 271.445312 306.253906 271.328125 Z M 306.253906 271.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.859375 272.3125 C 309.859375 272.195312 309.765625 272.101562 309.648438 272.101562 C 309.53125 272.101562 309.4375 272.195312 309.4375 272.3125 C 309.4375 272.429688 309.53125 272.523438 309.648438 272.523438 C 309.765625 272.523438 309.859375 272.429688 309.859375 272.3125 Z M 309.859375 272.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.683594 271.65625 C 310.683594 271.539062 310.589844 271.445312 310.472656 271.445312 C 310.355469 271.445312 310.261719 271.539062 310.261719 271.65625 C 310.261719 271.773438 310.355469 271.867188 310.472656 271.867188 C 310.589844 271.867188 310.683594 271.773438 310.683594 271.65625 Z M 310.683594 271.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.839844 269.28125 C 307.839844 269.164062 307.746094 269.070312 307.628906 269.070312 C 307.511719 269.070312 307.417969 269.164062 307.417969 269.28125 C 307.417969 269.398438 307.511719 269.492188 307.628906 269.492188 C 307.746094 269.492188 307.839844 269.398438 307.839844 269.28125 Z M 307.839844 269.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.785156 269.792969 C 306.785156 269.675781 306.691406 269.582031 306.574219 269.582031 C 306.457031 269.582031 306.363281 269.675781 306.363281 269.792969 C 306.363281 269.910156 306.457031 270.003906 306.574219 270.003906 C 306.691406 270.003906 306.785156 269.910156 306.785156 269.792969 Z M 306.785156 269.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.476562 267.460938 C 304.476562 267.34375 304.382812 267.25 304.265625 267.25 C 304.148438 267.25 304.054688 267.34375 304.054688 267.460938 C 304.054688 267.578125 304.148438 267.671875 304.265625 267.671875 C 304.382812 267.671875 304.476562 267.578125 304.476562 267.460938 Z M 304.476562 267.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.628906 266.734375 C 302.628906 266.617188 302.535156 266.523438 302.417969 266.523438 C 302.300781 266.523438 302.207031 266.617188 302.207031 266.734375 C 302.207031 266.851562 302.300781 266.945312 302.417969 266.945312 C 302.535156 266.945312 302.628906 266.851562 302.628906 266.734375 Z M 302.628906 266.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.066406 266.460938 C 302.066406 266.34375 301.972656 266.25 301.855469 266.25 C 301.738281 266.25 301.644531 266.34375 301.644531 266.460938 C 301.644531 266.578125 301.738281 266.671875 301.855469 266.671875 C 301.972656 266.671875 302.066406 266.578125 302.066406 266.460938 Z M 302.066406 266.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.625 265.875 C 299.625 265.757812 299.53125 265.664062 299.414062 265.664062 C 299.296875 265.664062 299.203125 265.757812 299.203125 265.875 C 299.203125 265.992188 299.296875 266.085938 299.414062 266.085938 C 299.53125 266.085938 299.625 265.992188 299.625 265.875 Z M 299.625 265.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.351562 262.992188 C 297.351562 262.875 297.257812 262.78125 297.140625 262.78125 C 297.023438 262.78125 296.929688 262.875 296.929688 262.992188 C 296.929688 263.109375 297.023438 263.203125 297.140625 263.203125 C 297.257812 263.203125 297.351562 263.109375 297.351562 262.992188 Z M 297.351562 262.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.933594 262.660156 C 296.933594 262.542969 296.839844 262.449219 296.722656 262.449219 C 296.605469 262.449219 296.511719 262.542969 296.511719 262.660156 C 296.511719 262.777344 296.605469 262.871094 296.722656 262.871094 C 296.839844 262.871094 296.933594 262.777344 296.933594 262.660156 Z M 296.933594 262.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.183594 264.65625 C 297.183594 264.539062 297.089844 264.445312 296.972656 264.445312 C 296.855469 264.445312 296.761719 264.539062 296.761719 264.65625 C 296.761719 264.773438 296.855469 264.867188 296.972656 264.867188 C 297.089844 264.867188 297.183594 264.773438 297.183594 264.65625 Z M 297.183594 264.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.523438 261.179688 C 296.523438 261.0625 296.429688 260.96875 296.3125 260.96875 C 296.195312 260.96875 296.101562 261.0625 296.101562 261.179688 C 296.101562 261.296875 296.195312 261.390625 296.3125 261.390625 C 296.429688 261.390625 296.523438 261.296875 296.523438 261.179688 Z M 296.523438 261.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.742188 258.613281 C 294.742188 258.496094 294.648438 258.402344 294.53125 258.402344 C 294.414062 258.402344 294.320312 258.496094 294.320312 258.613281 C 294.320312 258.730469 294.414062 258.824219 294.53125 258.824219 C 294.648438 258.824219 294.742188 258.730469 294.742188 258.613281 Z M 294.742188 258.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.367188 256.261719 C 294.367188 256.144531 294.273438 256.050781 294.15625 256.050781 C 294.039062 256.050781 293.945312 256.144531 293.945312 256.261719 C 293.945312 256.378906 294.039062 256.472656 294.15625 256.472656 C 294.273438 256.472656 294.367188 256.378906 294.367188 256.261719 Z M 294.367188 256.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.617188 259.007812 C 294.617188 258.890625 294.523438 258.796875 294.40625 258.796875 C 294.289062 258.796875 294.195312 258.890625 294.195312 259.007812 C 294.195312 259.125 294.289062 259.21875 294.40625 259.21875 C 294.523438 259.21875 294.617188 259.125 294.617188 259.007812 Z M 294.617188 259.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.460938 258.277344 C 292.460938 258.160156 292.367188 258.066406 292.25 258.066406 C 292.132812 258.066406 292.039062 258.160156 292.039062 258.277344 C 292.039062 258.394531 292.132812 258.488281 292.25 258.488281 C 292.367188 258.488281 292.460938 258.394531 292.460938 258.277344 Z M 292.460938 258.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.28125 254.75 C 292.28125 254.632812 292.1875 254.539062 292.070312 254.539062 C 291.953125 254.539062 291.859375 254.632812 291.859375 254.75 C 291.859375 254.867188 291.953125 254.960938 292.070312 254.960938 C 292.1875 254.960938 292.28125 254.867188 292.28125 254.75 Z M 292.28125 254.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.65625 250.855469 C 289.65625 250.738281 289.5625 250.644531 289.445312 250.644531 C 289.328125 250.644531 289.234375 250.738281 289.234375 250.855469 C 289.234375 250.972656 289.328125 251.066406 289.445312 251.066406 C 289.5625 251.066406 289.65625 250.972656 289.65625 250.855469 Z M 289.65625 250.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.511719 252.417969 C 292.511719 252.300781 292.417969 252.207031 292.300781 252.207031 C 292.183594 252.207031 292.089844 252.300781 292.089844 252.417969 C 292.089844 252.535156 292.183594 252.628906 292.300781 252.628906 C 292.417969 252.628906 292.511719 252.535156 292.511719 252.417969 Z M 292.511719 252.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.195312 255.128906 C 300.195312 255.011719 300.101562 254.917969 299.984375 254.917969 C 299.867188 254.917969 299.773438 255.011719 299.773438 255.128906 C 299.773438 255.246094 299.867188 255.339844 299.984375 255.339844 C 300.101562 255.339844 300.195312 255.246094 300.195312 255.128906 Z M 300.195312 255.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.945312 253.683594 C 295.945312 253.566406 295.851562 253.472656 295.734375 253.472656 C 295.617188 253.472656 295.523438 253.566406 295.523438 253.683594 C 295.523438 253.800781 295.617188 253.894531 295.734375 253.894531 C 295.851562 253.894531 295.945312 253.800781 295.945312 253.683594 Z M 295.945312 253.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.878906 253.78125 C 293.878906 253.664062 293.785156 253.570312 293.667969 253.570312 C 293.550781 253.570312 293.457031 253.664062 293.457031 253.78125 C 293.457031 253.898438 293.550781 253.992188 293.667969 253.992188 C 293.785156 253.992188 293.878906 253.898438 293.878906 253.78125 Z M 293.878906 253.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.789062 255.765625 C 292.789062 255.648438 292.695312 255.554688 292.578125 255.554688 C 292.460938 255.554688 292.367188 255.648438 292.367188 255.765625 C 292.367188 255.882812 292.460938 255.976562 292.578125 255.976562 C 292.695312 255.976562 292.789062 255.882812 292.789062 255.765625 Z M 292.789062 255.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.152344 253.386719 C 293.152344 253.269531 293.058594 253.175781 292.941406 253.175781 C 292.824219 253.175781 292.730469 253.269531 292.730469 253.386719 C 292.730469 253.503906 292.824219 253.597656 292.941406 253.597656 C 293.058594 253.597656 293.152344 253.503906 293.152344 253.386719 Z M 293.152344 253.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.574219 250.453125 C 292.574219 250.335938 292.480469 250.242188 292.363281 250.242188 C 292.246094 250.242188 292.152344 250.335938 292.152344 250.453125 C 292.152344 250.570312 292.246094 250.664062 292.363281 250.664062 C 292.480469 250.664062 292.574219 250.570312 292.574219 250.453125 Z M 292.574219 250.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.511719 252.6875 C 291.511719 252.570312 291.417969 252.476562 291.300781 252.476562 C 291.183594 252.476562 291.089844 252.570312 291.089844 252.6875 C 291.089844 252.804688 291.183594 252.898438 291.300781 252.898438 C 291.417969 252.898438 291.511719 252.804688 291.511719 252.6875 Z M 291.511719 252.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.660156 249.246094 C 293.660156 249.128906 293.566406 249.035156 293.449219 249.035156 C 293.332031 249.035156 293.238281 249.128906 293.238281 249.246094 C 293.238281 249.363281 293.332031 249.457031 293.449219 249.457031 C 293.566406 249.457031 293.660156 249.363281 293.660156 249.246094 Z M 293.660156 249.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.527344 249.023438 C 294.527344 248.90625 294.433594 248.8125 294.316406 248.8125 C 294.199219 248.8125 294.105469 248.90625 294.105469 249.023438 C 294.105469 249.140625 294.199219 249.234375 294.316406 249.234375 C 294.433594 249.234375 294.527344 249.140625 294.527344 249.023438 Z M 294.527344 249.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.65625 247.925781 C 292.65625 247.808594 292.5625 247.714844 292.445312 247.714844 C 292.328125 247.714844 292.234375 247.808594 292.234375 247.925781 C 292.234375 248.042969 292.328125 248.136719 292.445312 248.136719 C 292.5625 248.136719 292.65625 248.042969 292.65625 247.925781 Z M 292.65625 247.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.085938 246.042969 C 293.085938 245.925781 292.992188 245.832031 292.875 245.832031 C 292.757812 245.832031 292.664062 245.925781 292.664062 246.042969 C 292.664062 246.160156 292.757812 246.253906 292.875 246.253906 C 292.992188 246.253906 293.085938 246.160156 293.085938 246.042969 Z M 293.085938 246.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.351562 242.863281 C 286.351562 242.746094 286.257812 242.652344 286.140625 242.652344 C 286.023438 242.652344 285.929688 242.746094 285.929688 242.863281 C 285.929688 242.980469 286.023438 243.074219 286.140625 243.074219 C 286.257812 243.074219 286.351562 242.980469 286.351562 242.863281 Z M 286.351562 242.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.308594 245.0625 C 289.308594 244.945312 289.214844 244.851562 289.097656 244.851562 C 288.980469 244.851562 288.886719 244.945312 288.886719 245.0625 C 288.886719 245.179688 288.980469 245.273438 289.097656 245.273438 C 289.214844 245.273438 289.308594 245.179688 289.308594 245.0625 Z M 289.308594 245.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.152344 246.136719 C 288.152344 246.019531 288.058594 245.925781 287.941406 245.925781 C 287.824219 245.925781 287.730469 246.019531 287.730469 246.136719 C 287.730469 246.253906 287.824219 246.347656 287.941406 246.347656 C 288.058594 246.347656 288.152344 246.253906 288.152344 246.136719 Z M 288.152344 246.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.972656 248.175781 C 285.972656 248.058594 285.878906 247.964844 285.761719 247.964844 C 285.644531 247.964844 285.550781 248.058594 285.550781 248.175781 C 285.550781 248.292969 285.644531 248.386719 285.761719 248.386719 C 285.878906 248.386719 285.972656 248.292969 285.972656 248.175781 Z M 285.972656 248.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.609375 249.753906 C 287.609375 249.636719 287.515625 249.542969 287.398438 249.542969 C 287.28125 249.542969 287.1875 249.636719 287.1875 249.753906 C 287.1875 249.871094 287.28125 249.964844 287.398438 249.964844 C 287.515625 249.964844 287.609375 249.871094 287.609375 249.753906 Z M 287.609375 249.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.769531 245.785156 C 288.769531 245.667969 288.675781 245.574219 288.558594 245.574219 C 288.441406 245.574219 288.347656 245.667969 288.347656 245.785156 C 288.347656 245.902344 288.441406 245.996094 288.558594 245.996094 C 288.675781 245.996094 288.769531 245.902344 288.769531 245.785156 Z M 288.769531 245.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.671875 244.984375 C 287.671875 244.867188 287.578125 244.773438 287.460938 244.773438 C 287.34375 244.773438 287.25 244.867188 287.25 244.984375 C 287.25 245.101562 287.34375 245.195312 287.460938 245.195312 C 287.578125 245.195312 287.671875 245.101562 287.671875 244.984375 Z M 287.671875 244.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.75 249.496094 C 287.75 249.378906 287.65625 249.285156 287.539062 249.285156 C 287.421875 249.285156 287.328125 249.378906 287.328125 249.496094 C 287.328125 249.613281 287.421875 249.707031 287.539062 249.707031 C 287.65625 249.707031 287.75 249.613281 287.75 249.496094 Z M 287.75 249.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.558594 249.96875 C 287.558594 249.851562 287.464844 249.757812 287.347656 249.757812 C 287.230469 249.757812 287.136719 249.851562 287.136719 249.96875 C 287.136719 250.085938 287.230469 250.179688 287.347656 250.179688 C 287.464844 250.179688 287.558594 250.085938 287.558594 249.96875 Z M 287.558594 249.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.152344 248.167969 C 285.152344 248.050781 285.058594 247.957031 284.941406 247.957031 C 284.824219 247.957031 284.730469 248.050781 284.730469 248.167969 C 284.730469 248.285156 284.824219 248.378906 284.941406 248.378906 C 285.058594 248.378906 285.152344 248.285156 285.152344 248.167969 Z M 285.152344 248.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.386719 250.105469 C 288.386719 249.988281 288.292969 249.894531 288.175781 249.894531 C 288.058594 249.894531 287.964844 249.988281 287.964844 250.105469 C 287.964844 250.222656 288.058594 250.316406 288.175781 250.316406 C 288.292969 250.316406 288.386719 250.222656 288.386719 250.105469 Z M 288.386719 250.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.984375 248.140625 C 289.984375 248.023438 289.890625 247.929688 289.773438 247.929688 C 289.65625 247.929688 289.5625 248.023438 289.5625 248.140625 C 289.5625 248.257812 289.65625 248.351562 289.773438 248.351562 C 289.890625 248.351562 289.984375 248.257812 289.984375 248.140625 Z M 289.984375 248.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.914062 247.488281 C 289.914062 247.371094 289.820312 247.277344 289.703125 247.277344 C 289.585938 247.277344 289.492188 247.371094 289.492188 247.488281 C 289.492188 247.605469 289.585938 247.699219 289.703125 247.699219 C 289.820312 247.699219 289.914062 247.605469 289.914062 247.488281 Z M 289.914062 247.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.949219 247.210938 C 292.949219 247.09375 292.855469 247 292.738281 247 C 292.621094 247 292.527344 247.09375 292.527344 247.210938 C 292.527344 247.328125 292.621094 247.421875 292.738281 247.421875 C 292.855469 247.421875 292.949219 247.328125 292.949219 247.210938 Z M 292.949219 247.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.367188 251.101562 C 297.367188 250.984375 297.273438 250.890625 297.15625 250.890625 C 297.039062 250.890625 296.945312 250.984375 296.945312 251.101562 C 296.945312 251.21875 297.039062 251.3125 297.15625 251.3125 C 297.273438 251.3125 297.367188 251.21875 297.367188 251.101562 Z M 297.367188 251.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.351562 252.640625 C 299.351562 252.523438 299.257812 252.429688 299.140625 252.429688 C 299.023438 252.429688 298.929688 252.523438 298.929688 252.640625 C 298.929688 252.757812 299.023438 252.851562 299.140625 252.851562 C 299.257812 252.851562 299.351562 252.757812 299.351562 252.640625 Z M 299.351562 252.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.933594 256.878906 C 302.933594 256.761719 302.839844 256.667969 302.722656 256.667969 C 302.605469 256.667969 302.511719 256.761719 302.511719 256.878906 C 302.511719 256.996094 302.605469 257.089844 302.722656 257.089844 C 302.839844 257.089844 302.933594 256.996094 302.933594 256.878906 Z M 302.933594 256.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.605469 254.78125 C 303.605469 254.664062 303.511719 254.570312 303.394531 254.570312 C 303.277344 254.570312 303.183594 254.664062 303.183594 254.78125 C 303.183594 254.898438 303.277344 254.992188 303.394531 254.992188 C 303.511719 254.992188 303.605469 254.898438 303.605469 254.78125 Z M 303.605469 254.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.761719 256.3125 C 300.761719 256.195312 300.667969 256.101562 300.550781 256.101562 C 300.433594 256.101562 300.339844 256.195312 300.339844 256.3125 C 300.339844 256.429688 300.433594 256.523438 300.550781 256.523438 C 300.667969 256.523438 300.761719 256.429688 300.761719 256.3125 Z M 300.761719 256.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.222656 256.308594 C 299.222656 256.191406 299.128906 256.097656 299.011719 256.097656 C 298.894531 256.097656 298.800781 256.191406 298.800781 256.308594 C 298.800781 256.425781 298.894531 256.519531 299.011719 256.519531 C 299.128906 256.519531 299.222656 256.425781 299.222656 256.308594 Z M 299.222656 256.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.089844 262.164062 C 296.089844 262.046875 295.996094 261.953125 295.878906 261.953125 C 295.761719 261.953125 295.667969 262.046875 295.667969 262.164062 C 295.667969 262.28125 295.761719 262.375 295.878906 262.375 C 295.996094 262.375 296.089844 262.28125 296.089844 262.164062 Z M 296.089844 262.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.511719 262.335938 C 292.511719 262.21875 292.417969 262.125 292.300781 262.125 C 292.183594 262.125 292.089844 262.21875 292.089844 262.335938 C 292.089844 262.453125 292.183594 262.546875 292.300781 262.546875 C 292.417969 262.546875 292.511719 262.453125 292.511719 262.335938 Z M 292.511719 262.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.816406 268.433594 C 292.816406 268.316406 292.722656 268.222656 292.605469 268.222656 C 292.488281 268.222656 292.394531 268.316406 292.394531 268.433594 C 292.394531 268.550781 292.488281 268.644531 292.605469 268.644531 C 292.722656 268.644531 292.816406 268.550781 292.816406 268.433594 Z M 292.816406 268.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.628906 263.832031 C 292.628906 263.714844 292.535156 263.621094 292.417969 263.621094 C 292.300781 263.621094 292.207031 263.714844 292.207031 263.832031 C 292.207031 263.949219 292.300781 264.042969 292.417969 264.042969 C 292.535156 264.042969 292.628906 263.949219 292.628906 263.832031 Z M 292.628906 263.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.128906 261.320312 C 291.128906 261.203125 291.035156 261.109375 290.917969 261.109375 C 290.800781 261.109375 290.707031 261.203125 290.707031 261.320312 C 290.707031 261.4375 290.800781 261.53125 290.917969 261.53125 C 291.035156 261.53125 291.128906 261.4375 291.128906 261.320312 Z M 291.128906 261.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.632812 260.8125 C 290.632812 260.695312 290.539062 260.601562 290.421875 260.601562 C 290.304688 260.601562 290.210938 260.695312 290.210938 260.8125 C 290.210938 260.929688 290.304688 261.023438 290.421875 261.023438 C 290.539062 261.023438 290.632812 260.929688 290.632812 260.8125 Z M 290.632812 260.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.011719 261.035156 C 290.011719 260.917969 289.917969 260.824219 289.800781 260.824219 C 289.683594 260.824219 289.589844 260.917969 289.589844 261.035156 C 289.589844 261.152344 289.683594 261.246094 289.800781 261.246094 C 289.917969 261.246094 290.011719 261.152344 290.011719 261.035156 Z M 290.011719 261.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.859375 260.171875 C 289.859375 260.054688 289.765625 259.960938 289.648438 259.960938 C 289.53125 259.960938 289.4375 260.054688 289.4375 260.171875 C 289.4375 260.289062 289.53125 260.382812 289.648438 260.382812 C 289.765625 260.382812 289.859375 260.289062 289.859375 260.171875 Z M 289.859375 260.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.429688 260.476562 C 292.429688 260.359375 292.335938 260.265625 292.21875 260.265625 C 292.101562 260.265625 292.007812 260.359375 292.007812 260.476562 C 292.007812 260.59375 292.101562 260.6875 292.21875 260.6875 C 292.335938 260.6875 292.429688 260.59375 292.429688 260.476562 Z M 292.429688 260.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.972656 260.527344 C 289.972656 260.410156 289.878906 260.316406 289.761719 260.316406 C 289.644531 260.316406 289.550781 260.410156 289.550781 260.527344 C 289.550781 260.644531 289.644531 260.738281 289.761719 260.738281 C 289.878906 260.738281 289.972656 260.644531 289.972656 260.527344 Z M 289.972656 260.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.101562 258.769531 C 290.101562 258.652344 290.007812 258.558594 289.890625 258.558594 C 289.773438 258.558594 289.679688 258.652344 289.679688 258.769531 C 289.679688 258.886719 289.773438 258.980469 289.890625 258.980469 C 290.007812 258.980469 290.101562 258.886719 290.101562 258.769531 Z M 290.101562 258.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.511719 259.808594 C 289.511719 259.691406 289.417969 259.597656 289.300781 259.597656 C 289.183594 259.597656 289.089844 259.691406 289.089844 259.808594 C 289.089844 259.925781 289.183594 260.019531 289.300781 260.019531 C 289.417969 260.019531 289.511719 259.925781 289.511719 259.808594 Z M 289.511719 259.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.320312 260.039062 C 290.320312 259.921875 290.226562 259.828125 290.109375 259.828125 C 289.992188 259.828125 289.898438 259.921875 289.898438 260.039062 C 289.898438 260.15625 289.992188 260.25 290.109375 260.25 C 290.226562 260.25 290.320312 260.15625 290.320312 260.039062 Z M 290.320312 260.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.832031 263.1875 C 289.832031 263.070312 289.738281 262.976562 289.621094 262.976562 C 289.503906 262.976562 289.410156 263.070312 289.410156 263.1875 C 289.410156 263.304688 289.503906 263.398438 289.621094 263.398438 C 289.738281 263.398438 289.832031 263.304688 289.832031 263.1875 Z M 289.832031 263.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.5 260.875 C 292.5 260.757812 292.40625 260.664062 292.289062 260.664062 C 292.171875 260.664062 292.078125 260.757812 292.078125 260.875 C 292.078125 260.992188 292.171875 261.085938 292.289062 261.085938 C 292.40625 261.085938 292.5 260.992188 292.5 260.875 Z M 292.5 260.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.746094 256.15625 C 290.746094 256.039062 290.652344 255.945312 290.535156 255.945312 C 290.417969 255.945312 290.324219 256.039062 290.324219 256.15625 C 290.324219 256.273438 290.417969 256.367188 290.535156 256.367188 C 290.652344 256.367188 290.746094 256.273438 290.746094 256.15625 Z M 290.746094 256.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.246094 252.886719 C 290.246094 252.769531 290.152344 252.675781 290.035156 252.675781 C 289.917969 252.675781 289.824219 252.769531 289.824219 252.886719 C 289.824219 253.003906 289.917969 253.097656 290.035156 253.097656 C 290.152344 253.097656 290.246094 253.003906 290.246094 252.886719 Z M 290.246094 252.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.121094 248.042969 C 292.121094 247.925781 292.027344 247.832031 291.910156 247.832031 C 291.792969 247.832031 291.699219 247.925781 291.699219 248.042969 C 291.699219 248.160156 291.792969 248.253906 291.910156 248.253906 C 292.027344 248.253906 292.121094 248.160156 292.121094 248.042969 Z M 292.121094 248.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.148438 246.019531 C 292.148438 245.902344 292.054688 245.808594 291.9375 245.808594 C 291.820312 245.808594 291.726562 245.902344 291.726562 246.019531 C 291.726562 246.136719 291.820312 246.230469 291.9375 246.230469 C 292.054688 246.230469 292.148438 246.136719 292.148438 246.019531 Z M 292.148438 246.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.082031 245.621094 C 292.082031 245.503906 291.988281 245.410156 291.871094 245.410156 C 291.753906 245.410156 291.660156 245.503906 291.660156 245.621094 C 291.660156 245.738281 291.753906 245.832031 291.871094 245.832031 C 291.988281 245.832031 292.082031 245.738281 292.082031 245.621094 Z M 292.082031 245.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.980469 246.632812 C 291.980469 246.515625 291.886719 246.421875 291.769531 246.421875 C 291.652344 246.421875 291.558594 246.515625 291.558594 246.632812 C 291.558594 246.75 291.652344 246.84375 291.769531 246.84375 C 291.886719 246.84375 291.980469 246.75 291.980469 246.632812 Z M 291.980469 246.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.683594 246.4375 C 296.683594 246.320312 296.589844 246.226562 296.472656 246.226562 C 296.355469 246.226562 296.261719 246.320312 296.261719 246.4375 C 296.261719 246.554688 296.355469 246.648438 296.472656 246.648438 C 296.589844 246.648438 296.683594 246.554688 296.683594 246.4375 Z M 296.683594 246.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.015625 246.046875 C 302.015625 245.929688 301.921875 245.835938 301.804688 245.835938 C 301.6875 245.835938 301.59375 245.929688 301.59375 246.046875 C 301.59375 246.164062 301.6875 246.257812 301.804688 246.257812 C 301.921875 246.257812 302.015625 246.164062 302.015625 246.046875 Z M 302.015625 246.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.972656 249.714844 C 298.972656 249.597656 298.878906 249.503906 298.761719 249.503906 C 298.644531 249.503906 298.550781 249.597656 298.550781 249.714844 C 298.550781 249.832031 298.644531 249.925781 298.761719 249.925781 C 298.878906 249.925781 298.972656 249.832031 298.972656 249.714844 Z M 298.972656 249.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.027344 252.601562 C 295.027344 252.484375 294.933594 252.390625 294.816406 252.390625 C 294.699219 252.390625 294.605469 252.484375 294.605469 252.601562 C 294.605469 252.71875 294.699219 252.8125 294.816406 252.8125 C 294.933594 252.8125 295.027344 252.71875 295.027344 252.601562 Z M 295.027344 252.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.023438 251.609375 C 295.023438 251.492188 294.929688 251.398438 294.8125 251.398438 C 294.695312 251.398438 294.601562 251.492188 294.601562 251.609375 C 294.601562 251.726562 294.695312 251.820312 294.8125 251.820312 C 294.929688 251.820312 295.023438 251.726562 295.023438 251.609375 Z M 295.023438 251.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.140625 249.632812 C 294.140625 249.515625 294.046875 249.421875 293.929688 249.421875 C 293.8125 249.421875 293.71875 249.515625 293.71875 249.632812 C 293.71875 249.75 293.8125 249.84375 293.929688 249.84375 C 294.046875 249.84375 294.140625 249.75 294.140625 249.632812 Z M 294.140625 249.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.089844 248.089844 C 297.089844 247.972656 296.996094 247.878906 296.878906 247.878906 C 296.761719 247.878906 296.667969 247.972656 296.667969 248.089844 C 296.667969 248.207031 296.761719 248.300781 296.878906 248.300781 C 296.996094 248.300781 297.089844 248.207031 297.089844 248.089844 Z M 297.089844 248.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.476562 251.359375 C 301.476562 251.242188 301.382812 251.148438 301.265625 251.148438 C 301.148438 251.148438 301.054688 251.242188 301.054688 251.359375 C 301.054688 251.476562 301.148438 251.570312 301.265625 251.570312 C 301.382812 251.570312 301.476562 251.476562 301.476562 251.359375 Z M 301.476562 251.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.019531 252.648438 C 297.019531 252.53125 296.925781 252.4375 296.808594 252.4375 C 296.691406 252.4375 296.597656 252.53125 296.597656 252.648438 C 296.597656 252.765625 296.691406 252.859375 296.808594 252.859375 C 296.925781 252.859375 297.019531 252.765625 297.019531 252.648438 Z M 297.019531 252.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.1875 253.335938 C 295.1875 253.21875 295.09375 253.125 294.976562 253.125 C 294.859375 253.125 294.765625 253.21875 294.765625 253.335938 C 294.765625 253.453125 294.859375 253.546875 294.976562 253.546875 C 295.09375 253.546875 295.1875 253.453125 295.1875 253.335938 Z M 295.1875 253.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.460938 253.664062 C 296.460938 253.546875 296.367188 253.453125 296.25 253.453125 C 296.132812 253.453125 296.039062 253.546875 296.039062 253.664062 C 296.039062 253.78125 296.132812 253.875 296.25 253.875 C 296.367188 253.875 296.460938 253.78125 296.460938 253.664062 Z M 296.460938 253.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.335938 253.164062 C 298.335938 253.046875 298.242188 252.953125 298.125 252.953125 C 298.007812 252.953125 297.914062 253.046875 297.914062 253.164062 C 297.914062 253.28125 298.007812 253.375 298.125 253.375 C 298.242188 253.375 298.335938 253.28125 298.335938 253.164062 Z M 298.335938 253.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.425781 253.699219 C 303.425781 253.582031 303.332031 253.488281 303.214844 253.488281 C 303.097656 253.488281 303.003906 253.582031 303.003906 253.699219 C 303.003906 253.816406 303.097656 253.910156 303.214844 253.910156 C 303.332031 253.910156 303.425781 253.816406 303.425781 253.699219 Z M 303.425781 253.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.65625 253.328125 C 305.65625 253.210938 305.5625 253.117188 305.445312 253.117188 C 305.328125 253.117188 305.234375 253.210938 305.234375 253.328125 C 305.234375 253.445312 305.328125 253.539062 305.445312 253.539062 C 305.5625 253.539062 305.65625 253.445312 305.65625 253.328125 Z M 305.65625 253.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.148438 248.820312 C 307.148438 248.703125 307.054688 248.609375 306.9375 248.609375 C 306.820312 248.609375 306.726562 248.703125 306.726562 248.820312 C 306.726562 248.9375 306.820312 249.03125 306.9375 249.03125 C 307.054688 249.03125 307.148438 248.9375 307.148438 248.820312 Z M 307.148438 248.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.078125 247.53125 C 308.078125 247.414062 307.984375 247.320312 307.867188 247.320312 C 307.75 247.320312 307.65625 247.414062 307.65625 247.53125 C 307.65625 247.648438 307.75 247.742188 307.867188 247.742188 C 307.984375 247.742188 308.078125 247.648438 308.078125 247.53125 Z M 308.078125 247.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.378906 243.726562 C 307.378906 243.609375 307.285156 243.515625 307.167969 243.515625 C 307.050781 243.515625 306.957031 243.609375 306.957031 243.726562 C 306.957031 243.84375 307.050781 243.9375 307.167969 243.9375 C 307.285156 243.9375 307.378906 243.84375 307.378906 243.726562 Z M 307.378906 243.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.351562 243.308594 C 310.351562 243.191406 310.257812 243.097656 310.140625 243.097656 C 310.023438 243.097656 309.929688 243.191406 309.929688 243.308594 C 309.929688 243.425781 310.023438 243.519531 310.140625 243.519531 C 310.257812 243.519531 310.351562 243.425781 310.351562 243.308594 Z M 310.351562 243.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.738281 238.207031 C 311.738281 238.089844 311.644531 237.996094 311.527344 237.996094 C 311.410156 237.996094 311.316406 238.089844 311.316406 238.207031 C 311.316406 238.324219 311.410156 238.417969 311.527344 238.417969 C 311.644531 238.417969 311.738281 238.324219 311.738281 238.207031 Z M 311.738281 238.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.640625 236.421875 C 309.640625 236.304688 309.546875 236.210938 309.429688 236.210938 C 309.3125 236.210938 309.21875 236.304688 309.21875 236.421875 C 309.21875 236.539062 309.3125 236.632812 309.429688 236.632812 C 309.546875 236.632812 309.640625 236.539062 309.640625 236.421875 Z M 309.640625 236.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.921875 236.703125 C 307.921875 236.585938 307.828125 236.492188 307.710938 236.492188 C 307.59375 236.492188 307.5 236.585938 307.5 236.703125 C 307.5 236.820312 307.59375 236.914062 307.710938 236.914062 C 307.828125 236.914062 307.921875 236.820312 307.921875 236.703125 Z M 307.921875 236.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.082031 239.054688 C 308.082031 238.9375 307.988281 238.84375 307.871094 238.84375 C 307.753906 238.84375 307.660156 238.9375 307.660156 239.054688 C 307.660156 239.171875 307.753906 239.265625 307.871094 239.265625 C 307.988281 239.265625 308.082031 239.171875 308.082031 239.054688 Z M 308.082031 239.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.9375 239.90625 C 311.9375 239.789062 311.84375 239.695312 311.726562 239.695312 C 311.609375 239.695312 311.515625 239.789062 311.515625 239.90625 C 311.515625 240.023438 311.609375 240.117188 311.726562 240.117188 C 311.84375 240.117188 311.9375 240.023438 311.9375 239.90625 Z M 311.9375 239.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.484375 233.96875 C 313.484375 233.851562 313.390625 233.757812 313.273438 233.757812 C 313.15625 233.757812 313.0625 233.851562 313.0625 233.96875 C 313.0625 234.085938 313.15625 234.179688 313.273438 234.179688 C 313.390625 234.179688 313.484375 234.085938 313.484375 233.96875 Z M 313.484375 233.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.828125 233.242188 C 309.828125 233.125 309.734375 233.03125 309.617188 233.03125 C 309.5 233.03125 309.40625 233.125 309.40625 233.242188 C 309.40625 233.359375 309.5 233.453125 309.617188 233.453125 C 309.734375 233.453125 309.828125 233.359375 309.828125 233.242188 Z M 309.828125 233.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.53125 234.363281 C 310.53125 234.246094 310.4375 234.152344 310.320312 234.152344 C 310.203125 234.152344 310.109375 234.246094 310.109375 234.363281 C 310.109375 234.480469 310.203125 234.574219 310.320312 234.574219 C 310.4375 234.574219 310.53125 234.480469 310.53125 234.363281 Z M 310.53125 234.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.308594 233.539062 C 312.308594 233.421875 312.214844 233.328125 312.097656 233.328125 C 311.980469 233.328125 311.886719 233.421875 311.886719 233.539062 C 311.886719 233.65625 311.980469 233.75 312.097656 233.75 C 312.214844 233.75 312.308594 233.65625 312.308594 233.539062 Z M 312.308594 233.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.519531 235.941406 C 315.519531 235.824219 315.425781 235.730469 315.308594 235.730469 C 315.191406 235.730469 315.097656 235.824219 315.097656 235.941406 C 315.097656 236.058594 315.191406 236.152344 315.308594 236.152344 C 315.425781 236.152344 315.519531 236.058594 315.519531 235.941406 Z M 315.519531 235.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.816406 237.257812 C 310.816406 237.140625 310.722656 237.046875 310.605469 237.046875 C 310.488281 237.046875 310.394531 237.140625 310.394531 237.257812 C 310.394531 237.375 310.488281 237.46875 310.605469 237.46875 C 310.722656 237.46875 310.816406 237.375 310.816406 237.257812 Z M 310.816406 237.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.226562 236.03125 C 312.226562 235.914062 312.132812 235.820312 312.015625 235.820312 C 311.898438 235.820312 311.804688 235.914062 311.804688 236.03125 C 311.804688 236.148438 311.898438 236.242188 312.015625 236.242188 C 312.132812 236.242188 312.226562 236.148438 312.226562 236.03125 Z M 312.226562 236.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.417969 235.714844 C 309.417969 235.597656 309.324219 235.503906 309.207031 235.503906 C 309.089844 235.503906 308.996094 235.597656 308.996094 235.714844 C 308.996094 235.832031 309.089844 235.925781 309.207031 235.925781 C 309.324219 235.925781 309.417969 235.832031 309.417969 235.714844 Z M 309.417969 235.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.929688 235.480469 C 311.929688 235.363281 311.835938 235.269531 311.71875 235.269531 C 311.601562 235.269531 311.507812 235.363281 311.507812 235.480469 C 311.507812 235.597656 311.601562 235.691406 311.71875 235.691406 C 311.835938 235.691406 311.929688 235.597656 311.929688 235.480469 Z M 311.929688 235.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.195312 234.417969 C 310.195312 234.300781 310.101562 234.207031 309.984375 234.207031 C 309.867188 234.207031 309.773438 234.300781 309.773438 234.417969 C 309.773438 234.535156 309.867188 234.628906 309.984375 234.628906 C 310.101562 234.628906 310.195312 234.535156 310.195312 234.417969 Z M 310.195312 234.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.082031 235.464844 C 312.082031 235.347656 311.988281 235.253906 311.871094 235.253906 C 311.753906 235.253906 311.660156 235.347656 311.660156 235.464844 C 311.660156 235.582031 311.753906 235.675781 311.871094 235.675781 C 311.988281 235.675781 312.082031 235.582031 312.082031 235.464844 Z M 312.082031 235.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.078125 237.875 C 313.078125 237.757812 312.984375 237.664062 312.867188 237.664062 C 312.75 237.664062 312.65625 237.757812 312.65625 237.875 C 312.65625 237.992188 312.75 238.085938 312.867188 238.085938 C 312.984375 238.085938 313.078125 237.992188 313.078125 237.875 Z M 313.078125 237.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.761719 234.761719 C 310.761719 234.644531 310.667969 234.550781 310.550781 234.550781 C 310.433594 234.550781 310.339844 234.644531 310.339844 234.761719 C 310.339844 234.878906 310.433594 234.972656 310.550781 234.972656 C 310.667969 234.972656 310.761719 234.878906 310.761719 234.761719 Z M 310.761719 234.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.921875 231.054688 C 311.921875 230.9375 311.828125 230.84375 311.710938 230.84375 C 311.59375 230.84375 311.5 230.9375 311.5 231.054688 C 311.5 231.171875 311.59375 231.265625 311.710938 231.265625 C 311.828125 231.265625 311.921875 231.171875 311.921875 231.054688 Z M 311.921875 231.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.023438 228.558594 C 314.023438 228.441406 313.929688 228.347656 313.8125 228.347656 C 313.695312 228.347656 313.601562 228.441406 313.601562 228.558594 C 313.601562 228.675781 313.695312 228.769531 313.8125 228.769531 C 313.929688 228.769531 314.023438 228.675781 314.023438 228.558594 Z M 314.023438 228.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.515625 230.832031 C 311.515625 230.714844 311.421875 230.621094 311.304688 230.621094 C 311.1875 230.621094 311.09375 230.714844 311.09375 230.832031 C 311.09375 230.949219 311.1875 231.042969 311.304688 231.042969 C 311.421875 231.042969 311.515625 230.949219 311.515625 230.832031 Z M 311.515625 230.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.929688 229.613281 C 312.929688 229.496094 312.835938 229.402344 312.71875 229.402344 C 312.601562 229.402344 312.507812 229.496094 312.507812 229.613281 C 312.507812 229.730469 312.601562 229.824219 312.71875 229.824219 C 312.835938 229.824219 312.929688 229.730469 312.929688 229.613281 Z M 312.929688 229.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.976562 229.703125 C 310.976562 229.585938 310.882812 229.492188 310.765625 229.492188 C 310.648438 229.492188 310.554688 229.585938 310.554688 229.703125 C 310.554688 229.820312 310.648438 229.914062 310.765625 229.914062 C 310.882812 229.914062 310.976562 229.820312 310.976562 229.703125 Z M 310.976562 229.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.746094 232.207031 C 312.746094 232.089844 312.652344 231.996094 312.535156 231.996094 C 312.417969 231.996094 312.324219 232.089844 312.324219 232.207031 C 312.324219 232.324219 312.417969 232.417969 312.535156 232.417969 C 312.652344 232.417969 312.746094 232.324219 312.746094 232.207031 Z M 312.746094 232.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.027344 231.214844 C 314.027344 231.097656 313.933594 231.003906 313.816406 231.003906 C 313.699219 231.003906 313.605469 231.097656 313.605469 231.214844 C 313.605469 231.332031 313.699219 231.425781 313.816406 231.425781 C 313.933594 231.425781 314.027344 231.332031 314.027344 231.214844 Z M 314.027344 231.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.476562 231.234375 C 310.476562 231.117188 310.382812 231.023438 310.265625 231.023438 C 310.148438 231.023438 310.054688 231.117188 310.054688 231.234375 C 310.054688 231.351562 310.148438 231.445312 310.265625 231.445312 C 310.382812 231.445312 310.476562 231.351562 310.476562 231.234375 Z M 310.476562 231.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.074219 232.542969 C 312.074219 232.425781 311.980469 232.332031 311.863281 232.332031 C 311.746094 232.332031 311.652344 232.425781 311.652344 232.542969 C 311.652344 232.660156 311.746094 232.753906 311.863281 232.753906 C 311.980469 232.753906 312.074219 232.660156 312.074219 232.542969 Z M 312.074219 232.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.203125 229.070312 C 315.203125 228.953125 315.109375 228.859375 314.992188 228.859375 C 314.875 228.859375 314.78125 228.953125 314.78125 229.070312 C 314.78125 229.1875 314.875 229.28125 314.992188 229.28125 C 315.109375 229.28125 315.203125 229.1875 315.203125 229.070312 Z M 315.203125 229.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.765625 226.589844 C 312.765625 226.472656 312.671875 226.378906 312.554688 226.378906 C 312.4375 226.378906 312.34375 226.472656 312.34375 226.589844 C 312.34375 226.707031 312.4375 226.800781 312.554688 226.800781 C 312.671875 226.800781 312.765625 226.707031 312.765625 226.589844 Z M 312.765625 226.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.9375 225.207031 C 310.9375 225.089844 310.84375 224.996094 310.726562 224.996094 C 310.609375 224.996094 310.515625 225.089844 310.515625 225.207031 C 310.515625 225.324219 310.609375 225.417969 310.726562 225.417969 C 310.84375 225.417969 310.9375 225.324219 310.9375 225.207031 Z M 310.9375 225.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.507812 228.601562 C 310.507812 228.484375 310.414062 228.390625 310.296875 228.390625 C 310.179688 228.390625 310.085938 228.484375 310.085938 228.601562 C 310.085938 228.71875 310.179688 228.8125 310.296875 228.8125 C 310.414062 228.8125 310.507812 228.71875 310.507812 228.601562 Z M 310.507812 228.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.582031 231.21875 C 311.582031 231.101562 311.488281 231.007812 311.371094 231.007812 C 311.253906 231.007812 311.160156 231.101562 311.160156 231.21875 C 311.160156 231.335938 311.253906 231.429688 311.371094 231.429688 C 311.488281 231.429688 311.582031 231.335938 311.582031 231.21875 Z M 311.582031 231.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.597656 233.289062 C 308.597656 233.171875 308.503906 233.078125 308.386719 233.078125 C 308.269531 233.078125 308.175781 233.171875 308.175781 233.289062 C 308.175781 233.40625 308.269531 233.5 308.386719 233.5 C 308.503906 233.5 308.597656 233.40625 308.597656 233.289062 Z M 308.597656 233.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.324219 235.832031 C 311.324219 235.714844 311.230469 235.621094 311.113281 235.621094 C 310.996094 235.621094 310.902344 235.714844 310.902344 235.832031 C 310.902344 235.949219 310.996094 236.042969 311.113281 236.042969 C 311.230469 236.042969 311.324219 235.949219 311.324219 235.832031 Z M 311.324219 235.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.5 236.734375 C 309.5 236.617188 309.40625 236.523438 309.289062 236.523438 C 309.171875 236.523438 309.078125 236.617188 309.078125 236.734375 C 309.078125 236.851562 309.171875 236.945312 309.289062 236.945312 C 309.40625 236.945312 309.5 236.851562 309.5 236.734375 Z M 309.5 236.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.085938 237.839844 C 308.085938 237.722656 307.992188 237.628906 307.875 237.628906 C 307.757812 237.628906 307.664062 237.722656 307.664062 237.839844 C 307.664062 237.957031 307.757812 238.050781 307.875 238.050781 C 307.992188 238.050781 308.085938 237.957031 308.085938 237.839844 Z M 308.085938 237.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.214844 237.804688 C 309.214844 237.6875 309.121094 237.59375 309.003906 237.59375 C 308.886719 237.59375 308.792969 237.6875 308.792969 237.804688 C 308.792969 237.921875 308.886719 238.015625 309.003906 238.015625 C 309.121094 238.015625 309.214844 237.921875 309.214844 237.804688 Z M 309.214844 237.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.003906 236.542969 C 307.003906 236.425781 306.910156 236.332031 306.792969 236.332031 C 306.675781 236.332031 306.582031 236.425781 306.582031 236.542969 C 306.582031 236.660156 306.675781 236.753906 306.792969 236.753906 C 306.910156 236.753906 307.003906 236.660156 307.003906 236.542969 Z M 307.003906 236.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.199219 232.195312 C 305.199219 232.078125 305.105469 231.984375 304.988281 231.984375 C 304.871094 231.984375 304.777344 232.078125 304.777344 232.195312 C 304.777344 232.3125 304.871094 232.40625 304.988281 232.40625 C 305.105469 232.40625 305.199219 232.3125 305.199219 232.195312 Z M 305.199219 232.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.515625 235.644531 C 304.515625 235.527344 304.421875 235.433594 304.304688 235.433594 C 304.1875 235.433594 304.09375 235.527344 304.09375 235.644531 C 304.09375 235.761719 304.1875 235.855469 304.304688 235.855469 C 304.421875 235.855469 304.515625 235.761719 304.515625 235.644531 Z M 304.515625 235.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.691406 236.019531 C 304.691406 235.902344 304.597656 235.808594 304.480469 235.808594 C 304.363281 235.808594 304.269531 235.902344 304.269531 236.019531 C 304.269531 236.136719 304.363281 236.230469 304.480469 236.230469 C 304.597656 236.230469 304.691406 236.136719 304.691406 236.019531 Z M 304.691406 236.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.59375 232.855469 C 309.59375 232.738281 309.5 232.644531 309.382812 232.644531 C 309.265625 232.644531 309.171875 232.738281 309.171875 232.855469 C 309.171875 232.972656 309.265625 233.066406 309.382812 233.066406 C 309.5 233.066406 309.59375 232.972656 309.59375 232.855469 Z M 309.59375 232.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.671875 230.867188 C 306.671875 230.75 306.578125 230.65625 306.460938 230.65625 C 306.34375 230.65625 306.25 230.75 306.25 230.867188 C 306.25 230.984375 306.34375 231.078125 306.460938 231.078125 C 306.578125 231.078125 306.671875 230.984375 306.671875 230.867188 Z M 306.671875 230.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.777344 229.378906 C 305.777344 229.261719 305.683594 229.167969 305.566406 229.167969 C 305.449219 229.167969 305.355469 229.261719 305.355469 229.378906 C 305.355469 229.496094 305.449219 229.589844 305.566406 229.589844 C 305.683594 229.589844 305.777344 229.496094 305.777344 229.378906 Z M 305.777344 229.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.097656 229.75 C 308.097656 229.632812 308.003906 229.539062 307.886719 229.539062 C 307.769531 229.539062 307.675781 229.632812 307.675781 229.75 C 307.675781 229.867188 307.769531 229.960938 307.886719 229.960938 C 308.003906 229.960938 308.097656 229.867188 308.097656 229.75 Z M 308.097656 229.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.953125 233.648438 C 306.953125 233.53125 306.859375 233.4375 306.742188 233.4375 C 306.625 233.4375 306.53125 233.53125 306.53125 233.648438 C 306.53125 233.765625 306.625 233.859375 306.742188 233.859375 C 306.859375 233.859375 306.953125 233.765625 306.953125 233.648438 Z M 306.953125 233.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.457031 233.9375 C 306.457031 233.820312 306.363281 233.726562 306.246094 233.726562 C 306.128906 233.726562 306.035156 233.820312 306.035156 233.9375 C 306.035156 234.054688 306.128906 234.148438 306.246094 234.148438 C 306.363281 234.148438 306.457031 234.054688 306.457031 233.9375 Z M 306.457031 233.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.640625 236.476562 C 303.640625 236.359375 303.546875 236.265625 303.429688 236.265625 C 303.3125 236.265625 303.21875 236.359375 303.21875 236.476562 C 303.21875 236.59375 303.3125 236.6875 303.429688 236.6875 C 303.546875 236.6875 303.640625 236.59375 303.640625 236.476562 Z M 303.640625 236.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.414062 237 C 304.414062 236.882812 304.320312 236.789062 304.203125 236.789062 C 304.085938 236.789062 303.992188 236.882812 303.992188 237 C 303.992188 237.117188 304.085938 237.210938 304.203125 237.210938 C 304.320312 237.210938 304.414062 237.117188 304.414062 237 Z M 304.414062 237 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.257812 238.785156 C 308.257812 238.667969 308.164062 238.574219 308.046875 238.574219 C 307.929688 238.574219 307.835938 238.667969 307.835938 238.785156 C 307.835938 238.902344 307.929688 238.996094 308.046875 238.996094 C 308.164062 238.996094 308.257812 238.902344 308.257812 238.785156 Z M 308.257812 238.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.40625 240.492188 C 307.40625 240.375 307.3125 240.28125 307.195312 240.28125 C 307.078125 240.28125 306.984375 240.375 306.984375 240.492188 C 306.984375 240.609375 307.078125 240.703125 307.195312 240.703125 C 307.3125 240.703125 307.40625 240.609375 307.40625 240.492188 Z M 307.40625 240.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.796875 242.199219 C 309.796875 242.082031 309.703125 241.988281 309.585938 241.988281 C 309.46875 241.988281 309.375 242.082031 309.375 242.199219 C 309.375 242.316406 309.46875 242.410156 309.585938 242.410156 C 309.703125 242.410156 309.796875 242.316406 309.796875 242.199219 Z M 309.796875 242.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.410156 244.484375 C 307.410156 244.367188 307.316406 244.273438 307.199219 244.273438 C 307.082031 244.273438 306.988281 244.367188 306.988281 244.484375 C 306.988281 244.601562 307.082031 244.695312 307.199219 244.695312 C 307.316406 244.695312 307.410156 244.601562 307.410156 244.484375 Z M 307.410156 244.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.585938 242.777344 C 306.585938 242.660156 306.492188 242.566406 306.375 242.566406 C 306.257812 242.566406 306.164062 242.660156 306.164062 242.777344 C 306.164062 242.894531 306.257812 242.988281 306.375 242.988281 C 306.492188 242.988281 306.585938 242.894531 306.585938 242.777344 Z M 306.585938 242.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.441406 243.324219 C 304.441406 243.207031 304.347656 243.113281 304.230469 243.113281 C 304.113281 243.113281 304.019531 243.207031 304.019531 243.324219 C 304.019531 243.441406 304.113281 243.535156 304.230469 243.535156 C 304.347656 243.535156 304.441406 243.441406 304.441406 243.324219 Z M 304.441406 243.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.746094 242.390625 C 301.746094 242.273438 301.652344 242.179688 301.535156 242.179688 C 301.417969 242.179688 301.324219 242.273438 301.324219 242.390625 C 301.324219 242.507812 301.417969 242.601562 301.535156 242.601562 C 301.652344 242.601562 301.746094 242.507812 301.746094 242.390625 Z M 301.746094 242.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.867188 243.382812 C 299.867188 243.265625 299.773438 243.171875 299.65625 243.171875 C 299.539062 243.171875 299.445312 243.265625 299.445312 243.382812 C 299.445312 243.5 299.539062 243.59375 299.65625 243.59375 C 299.773438 243.59375 299.867188 243.5 299.867188 243.382812 Z M 299.867188 243.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.386719 241.382812 C 302.386719 241.265625 302.292969 241.171875 302.175781 241.171875 C 302.058594 241.171875 301.964844 241.265625 301.964844 241.382812 C 301.964844 241.5 302.058594 241.59375 302.175781 241.59375 C 302.292969 241.59375 302.386719 241.5 302.386719 241.382812 Z M 302.386719 241.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.53125 242.210938 C 303.53125 242.09375 303.4375 242 303.320312 242 C 303.203125 242 303.109375 242.09375 303.109375 242.210938 C 303.109375 242.328125 303.203125 242.421875 303.320312 242.421875 C 303.4375 242.421875 303.53125 242.328125 303.53125 242.210938 Z M 303.53125 242.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.925781 247.769531 C 308.925781 247.652344 308.832031 247.558594 308.714844 247.558594 C 308.597656 247.558594 308.503906 247.652344 308.503906 247.769531 C 308.503906 247.886719 308.597656 247.980469 308.714844 247.980469 C 308.832031 247.980469 308.925781 247.886719 308.925781 247.769531 Z M 308.925781 247.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.21875 246.386719 C 308.21875 246.269531 308.125 246.175781 308.007812 246.175781 C 307.890625 246.175781 307.796875 246.269531 307.796875 246.386719 C 307.796875 246.503906 307.890625 246.597656 308.007812 246.597656 C 308.125 246.597656 308.21875 246.503906 308.21875 246.386719 Z M 308.21875 246.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.285156 246.664062 C 309.285156 246.546875 309.191406 246.453125 309.074219 246.453125 C 308.957031 246.453125 308.863281 246.546875 308.863281 246.664062 C 308.863281 246.78125 308.957031 246.875 309.074219 246.875 C 309.191406 246.875 309.285156 246.78125 309.285156 246.664062 Z M 309.285156 246.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.335938 242.378906 C 306.335938 242.261719 306.242188 242.167969 306.125 242.167969 C 306.007812 242.167969 305.914062 242.261719 305.914062 242.378906 C 305.914062 242.496094 306.007812 242.589844 306.125 242.589844 C 306.242188 242.589844 306.335938 242.496094 306.335938 242.378906 Z M 306.335938 242.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.105469 240.207031 C 303.105469 240.089844 303.011719 239.996094 302.894531 239.996094 C 302.777344 239.996094 302.683594 240.089844 302.683594 240.207031 C 302.683594 240.324219 302.777344 240.417969 302.894531 240.417969 C 303.011719 240.417969 303.105469 240.324219 303.105469 240.207031 Z M 303.105469 240.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.019531 240.320312 C 310.019531 240.203125 309.925781 240.109375 309.808594 240.109375 C 309.691406 240.109375 309.597656 240.203125 309.597656 240.320312 C 309.597656 240.4375 309.691406 240.53125 309.808594 240.53125 C 309.925781 240.53125 310.019531 240.4375 310.019531 240.320312 Z M 310.019531 240.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.449219 238.925781 C 312.449219 238.808594 312.355469 238.714844 312.238281 238.714844 C 312.121094 238.714844 312.027344 238.808594 312.027344 238.925781 C 312.027344 239.042969 312.121094 239.136719 312.238281 239.136719 C 312.355469 239.136719 312.449219 239.042969 312.449219 238.925781 Z M 312.449219 238.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.574219 237.65625 C 313.574219 237.539062 313.480469 237.445312 313.363281 237.445312 C 313.246094 237.445312 313.152344 237.539062 313.152344 237.65625 C 313.152344 237.773438 313.246094 237.867188 313.363281 237.867188 C 313.480469 237.867188 313.574219 237.773438 313.574219 237.65625 Z M 313.574219 237.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.625 241.664062 C 314.625 241.546875 314.53125 241.453125 314.414062 241.453125 C 314.296875 241.453125 314.203125 241.546875 314.203125 241.664062 C 314.203125 241.78125 314.296875 241.875 314.414062 241.875 C 314.53125 241.875 314.625 241.78125 314.625 241.664062 Z M 314.625 241.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.109375 242.398438 C 317.109375 242.28125 317.015625 242.1875 316.898438 242.1875 C 316.78125 242.1875 316.6875 242.28125 316.6875 242.398438 C 316.6875 242.515625 316.78125 242.609375 316.898438 242.609375 C 317.015625 242.609375 317.109375 242.515625 317.109375 242.398438 Z M 317.109375 242.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.503906 239.472656 C 314.503906 239.355469 314.410156 239.261719 314.292969 239.261719 C 314.175781 239.261719 314.082031 239.355469 314.082031 239.472656 C 314.082031 239.589844 314.175781 239.683594 314.292969 239.683594 C 314.410156 239.683594 314.503906 239.589844 314.503906 239.472656 Z M 314.503906 239.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.226562 239.085938 C 316.226562 238.96875 316.132812 238.875 316.015625 238.875 C 315.898438 238.875 315.804688 238.96875 315.804688 239.085938 C 315.804688 239.203125 315.898438 239.296875 316.015625 239.296875 C 316.132812 239.296875 316.226562 239.203125 316.226562 239.085938 Z M 316.226562 239.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315 238.957031 C 315 238.839844 314.90625 238.746094 314.789062 238.746094 C 314.671875 238.746094 314.578125 238.839844 314.578125 238.957031 C 314.578125 239.074219 314.671875 239.167969 314.789062 239.167969 C 314.90625 239.167969 315 239.074219 315 238.957031 Z M 315 238.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 318.566406 233.261719 C 318.566406 233.144531 318.472656 233.050781 318.355469 233.050781 C 318.238281 233.050781 318.144531 233.144531 318.144531 233.261719 C 318.144531 233.378906 318.238281 233.472656 318.355469 233.472656 C 318.472656 233.472656 318.566406 233.378906 318.566406 233.261719 Z M 318.566406 233.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.273438 235.59375 C 323.273438 235.476562 323.179688 235.382812 323.0625 235.382812 C 322.945312 235.382812 322.851562 235.476562 322.851562 235.59375 C 322.851562 235.710938 322.945312 235.804688 323.0625 235.804688 C 323.179688 235.804688 323.273438 235.710938 323.273438 235.59375 Z M 323.273438 235.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.210938 236.910156 C 326.210938 236.792969 326.117188 236.699219 326 236.699219 C 325.882812 236.699219 325.789062 236.792969 325.789062 236.910156 C 325.789062 237.027344 325.882812 237.121094 326 237.121094 C 326.117188 237.121094 326.210938 237.027344 326.210938 236.910156 Z M 326.210938 236.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.460938 241.960938 C 326.460938 241.84375 326.367188 241.75 326.25 241.75 C 326.132812 241.75 326.039062 241.84375 326.039062 241.960938 C 326.039062 242.078125 326.132812 242.171875 326.25 242.171875 C 326.367188 242.171875 326.460938 242.078125 326.460938 241.960938 Z M 326.460938 241.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.347656 243.464844 C 325.347656 243.347656 325.253906 243.253906 325.136719 243.253906 C 325.019531 243.253906 324.925781 243.347656 324.925781 243.464844 C 324.925781 243.582031 325.019531 243.675781 325.136719 243.675781 C 325.253906 243.675781 325.347656 243.582031 325.347656 243.464844 Z M 325.347656 243.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.152344 243.5625 C 321.152344 243.445312 321.058594 243.351562 320.941406 243.351562 C 320.824219 243.351562 320.730469 243.445312 320.730469 243.5625 C 320.730469 243.679688 320.824219 243.773438 320.941406 243.773438 C 321.058594 243.773438 321.152344 243.679688 321.152344 243.5625 Z M 321.152344 243.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 320.75 244.480469 C 320.75 244.363281 320.65625 244.269531 320.539062 244.269531 C 320.421875 244.269531 320.328125 244.363281 320.328125 244.480469 C 320.328125 244.597656 320.421875 244.691406 320.539062 244.691406 C 320.65625 244.691406 320.75 244.597656 320.75 244.480469 Z M 320.75 244.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.738281 244.804688 C 322.738281 244.6875 322.644531 244.59375 322.527344 244.59375 C 322.410156 244.59375 322.316406 244.6875 322.316406 244.804688 C 322.316406 244.921875 322.410156 245.015625 322.527344 245.015625 C 322.644531 245.015625 322.738281 244.921875 322.738281 244.804688 Z M 322.738281 244.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.382812 245.003906 C 324.382812 244.886719 324.289062 244.792969 324.171875 244.792969 C 324.054688 244.792969 323.960938 244.886719 323.960938 245.003906 C 323.960938 245.121094 324.054688 245.214844 324.171875 245.214844 C 324.289062 245.214844 324.382812 245.121094 324.382812 245.003906 Z M 324.382812 245.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.226562 244.976562 C 325.226562 244.859375 325.132812 244.765625 325.015625 244.765625 C 324.898438 244.765625 324.804688 244.859375 324.804688 244.976562 C 324.804688 245.09375 324.898438 245.1875 325.015625 245.1875 C 325.132812 245.1875 325.226562 245.09375 325.226562 244.976562 Z M 325.226562 244.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.972656 248.183594 C 324.972656 248.066406 324.878906 247.972656 324.761719 247.972656 C 324.644531 247.972656 324.550781 248.066406 324.550781 248.183594 C 324.550781 248.300781 324.644531 248.394531 324.761719 248.394531 C 324.878906 248.394531 324.972656 248.300781 324.972656 248.183594 Z M 324.972656 248.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.648438 249.179688 C 325.648438 249.0625 325.554688 248.96875 325.4375 248.96875 C 325.320312 248.96875 325.226562 249.0625 325.226562 249.179688 C 325.226562 249.296875 325.320312 249.390625 325.4375 249.390625 C 325.554688 249.390625 325.648438 249.296875 325.648438 249.179688 Z M 325.648438 249.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 328.066406 247.761719 C 328.066406 247.644531 327.972656 247.550781 327.855469 247.550781 C 327.738281 247.550781 327.644531 247.644531 327.644531 247.761719 C 327.644531 247.878906 327.738281 247.972656 327.855469 247.972656 C 327.972656 247.972656 328.066406 247.878906 328.066406 247.761719 Z M 328.066406 247.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 328.773438 247.484375 C 328.773438 247.367188 328.679688 247.273438 328.5625 247.273438 C 328.445312 247.273438 328.351562 247.367188 328.351562 247.484375 C 328.351562 247.601562 328.445312 247.695312 328.5625 247.695312 C 328.679688 247.695312 328.773438 247.601562 328.773438 247.484375 Z M 328.773438 247.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 329.070312 246.710938 C 329.070312 246.59375 328.976562 246.5 328.859375 246.5 C 328.742188 246.5 328.648438 246.59375 328.648438 246.710938 C 328.648438 246.828125 328.742188 246.921875 328.859375 246.921875 C 328.976562 246.921875 329.070312 246.828125 329.070312 246.710938 Z M 329.070312 246.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.523438 246.652344 C 327.523438 246.535156 327.429688 246.441406 327.3125 246.441406 C 327.195312 246.441406 327.101562 246.535156 327.101562 246.652344 C 327.101562 246.769531 327.195312 246.863281 327.3125 246.863281 C 327.429688 246.863281 327.523438 246.769531 327.523438 246.652344 Z M 327.523438 246.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.128906 247.0625 C 327.128906 246.945312 327.035156 246.851562 326.917969 246.851562 C 326.800781 246.851562 326.707031 246.945312 326.707031 247.0625 C 326.707031 247.179688 326.800781 247.273438 326.917969 247.273438 C 327.035156 247.273438 327.128906 247.179688 327.128906 247.0625 Z M 327.128906 247.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.613281 248.183594 C 327.613281 248.066406 327.519531 247.972656 327.402344 247.972656 C 327.285156 247.972656 327.191406 248.066406 327.191406 248.183594 C 327.191406 248.300781 327.285156 248.394531 327.402344 248.394531 C 327.519531 248.394531 327.613281 248.300781 327.613281 248.183594 Z M 327.613281 248.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.773438 249.238281 C 327.773438 249.121094 327.679688 249.027344 327.5625 249.027344 C 327.445312 249.027344 327.351562 249.121094 327.351562 249.238281 C 327.351562 249.355469 327.445312 249.449219 327.5625 249.449219 C 327.679688 249.449219 327.773438 249.355469 327.773438 249.238281 Z M 327.773438 249.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.316406 247.53125 C 326.316406 247.414062 326.222656 247.320312 326.105469 247.320312 C 325.988281 247.320312 325.894531 247.414062 325.894531 247.53125 C 325.894531 247.648438 325.988281 247.742188 326.105469 247.742188 C 326.222656 247.742188 326.316406 247.648438 326.316406 247.53125 Z M 326.316406 247.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 329.515625 243.730469 C 329.515625 243.613281 329.421875 243.519531 329.304688 243.519531 C 329.1875 243.519531 329.09375 243.613281 329.09375 243.730469 C 329.09375 243.847656 329.1875 243.941406 329.304688 243.941406 C 329.421875 243.941406 329.515625 243.847656 329.515625 243.730469 Z M 329.515625 243.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 331.492188 243.363281 C 331.492188 243.246094 331.398438 243.152344 331.28125 243.152344 C 331.164062 243.152344 331.070312 243.246094 331.070312 243.363281 C 331.070312 243.480469 331.164062 243.574219 331.28125 243.574219 C 331.398438 243.574219 331.492188 243.480469 331.492188 243.363281 Z M 331.492188 243.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 332.433594 245.890625 C 332.433594 245.773438 332.339844 245.679688 332.222656 245.679688 C 332.105469 245.679688 332.011719 245.773438 332.011719 245.890625 C 332.011719 246.007812 332.105469 246.101562 332.222656 246.101562 C 332.339844 246.101562 332.433594 246.007812 332.433594 245.890625 Z M 332.433594 245.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 334.21875 247.582031 C 334.21875 247.464844 334.125 247.371094 334.007812 247.371094 C 333.890625 247.371094 333.796875 247.464844 333.796875 247.582031 C 333.796875 247.699219 333.890625 247.792969 334.007812 247.792969 C 334.125 247.792969 334.21875 247.699219 334.21875 247.582031 Z M 334.21875 247.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 332.257812 252.9375 C 332.257812 252.820312 332.164062 252.726562 332.046875 252.726562 C 331.929688 252.726562 331.835938 252.820312 331.835938 252.9375 C 331.835938 253.054688 331.929688 253.148438 332.046875 253.148438 C 332.164062 253.148438 332.257812 253.054688 332.257812 252.9375 Z M 332.257812 252.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 332.742188 246.585938 C 332.742188 246.46875 332.648438 246.375 332.53125 246.375 C 332.414062 246.375 332.320312 246.46875 332.320312 246.585938 C 332.320312 246.703125 332.414062 246.796875 332.53125 246.796875 C 332.648438 246.796875 332.742188 246.703125 332.742188 246.585938 Z M 332.742188 246.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 332.230469 247.164062 C 332.230469 247.046875 332.136719 246.953125 332.019531 246.953125 C 331.902344 246.953125 331.808594 247.046875 331.808594 247.164062 C 331.808594 247.28125 331.902344 247.375 332.019531 247.375 C 332.136719 247.375 332.230469 247.28125 332.230469 247.164062 Z M 332.230469 247.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 330.21875 247.695312 C 330.21875 247.578125 330.125 247.484375 330.007812 247.484375 C 329.890625 247.484375 329.796875 247.578125 329.796875 247.695312 C 329.796875 247.8125 329.890625 247.90625 330.007812 247.90625 C 330.125 247.90625 330.21875 247.8125 330.21875 247.695312 Z M 330.21875 247.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 330.25 246.296875 C 330.25 246.179688 330.15625 246.085938 330.039062 246.085938 C 329.921875 246.085938 329.828125 246.179688 329.828125 246.296875 C 329.828125 246.414062 329.921875 246.507812 330.039062 246.507812 C 330.15625 246.507812 330.25 246.414062 330.25 246.296875 Z M 330.25 246.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 331.082031 248.882812 C 331.082031 248.765625 330.988281 248.671875 330.871094 248.671875 C 330.753906 248.671875 330.660156 248.765625 330.660156 248.882812 C 330.660156 249 330.753906 249.09375 330.871094 249.09375 C 330.988281 249.09375 331.082031 249 331.082031 248.882812 Z M 331.082031 248.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 331.117188 249.269531 C 331.117188 249.152344 331.023438 249.058594 330.90625 249.058594 C 330.789062 249.058594 330.695312 249.152344 330.695312 249.269531 C 330.695312 249.386719 330.789062 249.480469 330.90625 249.480469 C 331.023438 249.480469 331.117188 249.386719 331.117188 249.269531 Z M 331.117188 249.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 334.351562 249.148438 C 334.351562 249.03125 334.257812 248.9375 334.140625 248.9375 C 334.023438 248.9375 333.929688 249.03125 333.929688 249.148438 C 333.929688 249.265625 334.023438 249.359375 334.140625 249.359375 C 334.257812 249.359375 334.351562 249.265625 334.351562 249.148438 Z M 334.351562 249.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 334.257812 246.269531 C 334.257812 246.152344 334.164062 246.058594 334.046875 246.058594 C 333.929688 246.058594 333.835938 246.152344 333.835938 246.269531 C 333.835938 246.386719 333.929688 246.480469 334.046875 246.480469 C 334.164062 246.480469 334.257812 246.386719 334.257812 246.269531 Z M 334.257812 246.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 333.78125 248.824219 C 333.78125 248.707031 333.6875 248.613281 333.570312 248.613281 C 333.453125 248.613281 333.359375 248.707031 333.359375 248.824219 C 333.359375 248.941406 333.453125 249.035156 333.570312 249.035156 C 333.6875 249.035156 333.78125 248.941406 333.78125 248.824219 Z M 333.78125 248.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 335.46875 247.828125 C 335.46875 247.710938 335.375 247.617188 335.257812 247.617188 C 335.140625 247.617188 335.046875 247.710938 335.046875 247.828125 C 335.046875 247.945312 335.140625 248.039062 335.257812 248.039062 C 335.375 248.039062 335.46875 247.945312 335.46875 247.828125 Z M 335.46875 247.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 337.121094 246.941406 C 337.121094 246.824219 337.027344 246.730469 336.910156 246.730469 C 336.792969 246.730469 336.699219 246.824219 336.699219 246.941406 C 336.699219 247.058594 336.792969 247.152344 336.910156 247.152344 C 337.027344 247.152344 337.121094 247.058594 337.121094 246.941406 Z M 337.121094 246.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 338.460938 246.515625 C 338.460938 246.398438 338.367188 246.304688 338.25 246.304688 C 338.132812 246.304688 338.039062 246.398438 338.039062 246.515625 C 338.039062 246.632812 338.132812 246.726562 338.25 246.726562 C 338.367188 246.726562 338.460938 246.632812 338.460938 246.515625 Z M 338.460938 246.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 334.589844 242.535156 C 334.589844 242.417969 334.496094 242.324219 334.378906 242.324219 C 334.261719 242.324219 334.167969 242.417969 334.167969 242.535156 C 334.167969 242.652344 334.261719 242.746094 334.378906 242.746094 C 334.496094 242.746094 334.589844 242.652344 334.589844 242.535156 Z M 334.589844 242.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 333.90625 241.308594 C 333.90625 241.191406 333.8125 241.097656 333.695312 241.097656 C 333.578125 241.097656 333.484375 241.191406 333.484375 241.308594 C 333.484375 241.425781 333.578125 241.519531 333.695312 241.519531 C 333.8125 241.519531 333.90625 241.425781 333.90625 241.308594 Z M 333.90625 241.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 333.605469 240.800781 C 333.605469 240.683594 333.511719 240.589844 333.394531 240.589844 C 333.277344 240.589844 333.183594 240.683594 333.183594 240.800781 C 333.183594 240.917969 333.277344 241.011719 333.394531 241.011719 C 333.511719 241.011719 333.605469 240.917969 333.605469 240.800781 Z M 333.605469 240.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 337.117188 243.285156 C 337.117188 243.167969 337.023438 243.074219 336.90625 243.074219 C 336.789062 243.074219 336.695312 243.167969 336.695312 243.285156 C 336.695312 243.402344 336.789062 243.496094 336.90625 243.496094 C 337.023438 243.496094 337.117188 243.402344 337.117188 243.285156 Z M 337.117188 243.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 339.539062 243.671875 C 339.539062 243.554688 339.445312 243.460938 339.328125 243.460938 C 339.210938 243.460938 339.117188 243.554688 339.117188 243.671875 C 339.117188 243.789062 339.210938 243.882812 339.328125 243.882812 C 339.445312 243.882812 339.539062 243.789062 339.539062 243.671875 Z M 339.539062 243.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 336.175781 244.800781 C 336.175781 244.683594 336.082031 244.589844 335.964844 244.589844 C 335.847656 244.589844 335.753906 244.683594 335.753906 244.800781 C 335.753906 244.917969 335.847656 245.011719 335.964844 245.011719 C 336.082031 245.011719 336.175781 244.917969 336.175781 244.800781 Z M 336.175781 244.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 337.972656 243.816406 C 337.972656 243.699219 337.878906 243.605469 337.761719 243.605469 C 337.644531 243.605469 337.550781 243.699219 337.550781 243.816406 C 337.550781 243.933594 337.644531 244.027344 337.761719 244.027344 C 337.878906 244.027344 337.972656 243.933594 337.972656 243.816406 Z M 337.972656 243.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 336.703125 243.675781 C 336.703125 243.558594 336.609375 243.464844 336.492188 243.464844 C 336.375 243.464844 336.28125 243.558594 336.28125 243.675781 C 336.28125 243.792969 336.375 243.886719 336.492188 243.886719 C 336.609375 243.886719 336.703125 243.792969 336.703125 243.675781 Z M 336.703125 243.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 332.945312 246.074219 C 332.945312 245.957031 332.851562 245.863281 332.734375 245.863281 C 332.617188 245.863281 332.523438 245.957031 332.523438 246.074219 C 332.523438 246.191406 332.617188 246.285156 332.734375 246.285156 C 332.851562 246.285156 332.945312 246.191406 332.945312 246.074219 Z M 332.945312 246.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 331.378906 247.414062 C 331.378906 247.296875 331.285156 247.203125 331.167969 247.203125 C 331.050781 247.203125 330.957031 247.296875 330.957031 247.414062 C 330.957031 247.53125 331.050781 247.625 331.167969 247.625 C 331.285156 247.625 331.378906 247.53125 331.378906 247.414062 Z M 331.378906 247.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 330.847656 246.785156 C 330.847656 246.667969 330.753906 246.574219 330.636719 246.574219 C 330.519531 246.574219 330.425781 246.667969 330.425781 246.785156 C 330.425781 246.902344 330.519531 246.996094 330.636719 246.996094 C 330.753906 246.996094 330.847656 246.902344 330.847656 246.785156 Z M 330.847656 246.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 329.671875 244.753906 C 329.671875 244.636719 329.578125 244.542969 329.460938 244.542969 C 329.34375 244.542969 329.25 244.636719 329.25 244.753906 C 329.25 244.871094 329.34375 244.964844 329.460938 244.964844 C 329.578125 244.964844 329.671875 244.871094 329.671875 244.753906 Z M 329.671875 244.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 331.296875 243.765625 C 331.296875 243.648438 331.203125 243.554688 331.085938 243.554688 C 330.96875 243.554688 330.875 243.648438 330.875 243.765625 C 330.875 243.882812 330.96875 243.976562 331.085938 243.976562 C 331.203125 243.976562 331.296875 243.882812 331.296875 243.765625 Z M 331.296875 243.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 331.660156 242.546875 C 331.660156 242.429688 331.566406 242.335938 331.449219 242.335938 C 331.332031 242.335938 331.238281 242.429688 331.238281 242.546875 C 331.238281 242.664062 331.332031 242.757812 331.449219 242.757812 C 331.566406 242.757812 331.660156 242.664062 331.660156 242.546875 Z M 331.660156 242.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 332.507812 243.472656 C 332.507812 243.355469 332.414062 243.261719 332.296875 243.261719 C 332.179688 243.261719 332.085938 243.355469 332.085938 243.472656 C 332.085938 243.589844 332.179688 243.683594 332.296875 243.683594 C 332.414062 243.683594 332.507812 243.589844 332.507812 243.472656 Z M 332.507812 243.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 334.308594 241.097656 C 334.308594 240.980469 334.214844 240.886719 334.097656 240.886719 C 333.980469 240.886719 333.886719 240.980469 333.886719 241.097656 C 333.886719 241.214844 333.980469 241.308594 334.097656 241.308594 C 334.214844 241.308594 334.308594 241.214844 334.308594 241.097656 Z M 334.308594 241.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 331.601562 244.882812 C 331.601562 244.765625 331.507812 244.671875 331.390625 244.671875 C 331.273438 244.671875 331.179688 244.765625 331.179688 244.882812 C 331.179688 245 331.273438 245.09375 331.390625 245.09375 C 331.507812 245.09375 331.601562 245 331.601562 244.882812 Z M 331.601562 244.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 330.84375 244.34375 C 330.84375 244.226562 330.75 244.132812 330.632812 244.132812 C 330.515625 244.132812 330.421875 244.226562 330.421875 244.34375 C 330.421875 244.460938 330.515625 244.554688 330.632812 244.554688 C 330.75 244.554688 330.84375 244.460938 330.84375 244.34375 Z M 330.84375 244.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 331.714844 243.722656 C 331.714844 243.605469 331.621094 243.511719 331.503906 243.511719 C 331.386719 243.511719 331.292969 243.605469 331.292969 243.722656 C 331.292969 243.839844 331.386719 243.933594 331.503906 243.933594 C 331.621094 243.933594 331.714844 243.839844 331.714844 243.722656 Z M 331.714844 243.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 332.308594 248.367188 C 332.308594 248.25 332.214844 248.15625 332.097656 248.15625 C 331.980469 248.15625 331.886719 248.25 331.886719 248.367188 C 331.886719 248.484375 331.980469 248.578125 332.097656 248.578125 C 332.214844 248.578125 332.308594 248.484375 332.308594 248.367188 Z M 332.308594 248.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 334.273438 250.453125 C 334.273438 250.335938 334.179688 250.242188 334.0625 250.242188 C 333.945312 250.242188 333.851562 250.335938 333.851562 250.453125 C 333.851562 250.570312 333.945312 250.664062 334.0625 250.664062 C 334.179688 250.664062 334.273438 250.570312 334.273438 250.453125 Z M 334.273438 250.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 332.554688 251.992188 C 332.554688 251.875 332.460938 251.78125 332.34375 251.78125 C 332.226562 251.78125 332.132812 251.875 332.132812 251.992188 C 332.132812 252.109375 332.226562 252.203125 332.34375 252.203125 C 332.460938 252.203125 332.554688 252.109375 332.554688 251.992188 Z M 332.554688 251.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 330.800781 254.039062 C 330.800781 253.921875 330.707031 253.828125 330.589844 253.828125 C 330.472656 253.828125 330.378906 253.921875 330.378906 254.039062 C 330.378906 254.15625 330.472656 254.25 330.589844 254.25 C 330.707031 254.25 330.800781 254.15625 330.800781 254.039062 Z M 330.800781 254.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 334.667969 256.039062 C 334.667969 255.921875 334.574219 255.828125 334.457031 255.828125 C 334.339844 255.828125 334.246094 255.921875 334.246094 256.039062 C 334.246094 256.15625 334.339844 256.25 334.457031 256.25 C 334.574219 256.25 334.667969 256.15625 334.667969 256.039062 Z M 334.667969 256.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 332.707031 258.503906 C 332.707031 258.386719 332.613281 258.292969 332.496094 258.292969 C 332.378906 258.292969 332.285156 258.386719 332.285156 258.503906 C 332.285156 258.621094 332.378906 258.714844 332.496094 258.714844 C 332.613281 258.714844 332.707031 258.621094 332.707031 258.503906 Z M 332.707031 258.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 329.675781 256.921875 C 329.675781 256.804688 329.582031 256.710938 329.464844 256.710938 C 329.347656 256.710938 329.253906 256.804688 329.253906 256.921875 C 329.253906 257.039062 329.347656 257.132812 329.464844 257.132812 C 329.582031 257.132812 329.675781 257.039062 329.675781 256.921875 Z M 329.675781 256.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 331.789062 258.503906 C 331.789062 258.386719 331.695312 258.292969 331.578125 258.292969 C 331.460938 258.292969 331.367188 258.386719 331.367188 258.503906 C 331.367188 258.621094 331.460938 258.714844 331.578125 258.714844 C 331.695312 258.714844 331.789062 258.621094 331.789062 258.503906 Z M 331.789062 258.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 330.507812 256.347656 C 330.507812 256.230469 330.414062 256.136719 330.296875 256.136719 C 330.179688 256.136719 330.085938 256.230469 330.085938 256.347656 C 330.085938 256.464844 330.179688 256.558594 330.296875 256.558594 C 330.414062 256.558594 330.507812 256.464844 330.507812 256.347656 Z M 330.507812 256.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 330.265625 260.492188 C 330.265625 260.375 330.171875 260.28125 330.054688 260.28125 C 329.9375 260.28125 329.84375 260.375 329.84375 260.492188 C 329.84375 260.609375 329.9375 260.703125 330.054688 260.703125 C 330.171875 260.703125 330.265625 260.609375 330.265625 260.492188 Z M 330.265625 260.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 332.960938 257.496094 C 332.960938 257.378906 332.867188 257.285156 332.75 257.285156 C 332.632812 257.285156 332.539062 257.378906 332.539062 257.496094 C 332.539062 257.613281 332.632812 257.707031 332.75 257.707031 C 332.867188 257.707031 332.960938 257.613281 332.960938 257.496094 Z M 332.960938 257.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 333.238281 255.785156 C 333.238281 255.667969 333.144531 255.574219 333.027344 255.574219 C 332.910156 255.574219 332.816406 255.667969 332.816406 255.785156 C 332.816406 255.902344 332.910156 255.996094 333.027344 255.996094 C 333.144531 255.996094 333.238281 255.902344 333.238281 255.785156 Z M 333.238281 255.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 333.96875 257.328125 C 333.96875 257.210938 333.875 257.117188 333.757812 257.117188 C 333.640625 257.117188 333.546875 257.210938 333.546875 257.328125 C 333.546875 257.445312 333.640625 257.539062 333.757812 257.539062 C 333.875 257.539062 333.96875 257.445312 333.96875 257.328125 Z M 333.96875 257.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 331.617188 258.367188 C 331.617188 258.25 331.523438 258.15625 331.40625 258.15625 C 331.289062 258.15625 331.195312 258.25 331.195312 258.367188 C 331.195312 258.484375 331.289062 258.578125 331.40625 258.578125 C 331.523438 258.578125 331.617188 258.484375 331.617188 258.367188 Z M 331.617188 258.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 331.03125 259.949219 C 331.03125 259.832031 330.9375 259.738281 330.820312 259.738281 C 330.703125 259.738281 330.609375 259.832031 330.609375 259.949219 C 330.609375 260.066406 330.703125 260.160156 330.820312 260.160156 C 330.9375 260.160156 331.03125 260.066406 331.03125 259.949219 Z M 331.03125 259.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 329.6875 262.808594 C 329.6875 262.691406 329.59375 262.597656 329.476562 262.597656 C 329.359375 262.597656 329.265625 262.691406 329.265625 262.808594 C 329.265625 262.925781 329.359375 263.019531 329.476562 263.019531 C 329.59375 263.019531 329.6875 262.925781 329.6875 262.808594 Z M 329.6875 262.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.464844 264.117188 C 327.464844 264 327.371094 263.90625 327.253906 263.90625 C 327.136719 263.90625 327.042969 264 327.042969 264.117188 C 327.042969 264.234375 327.136719 264.328125 327.253906 264.328125 C 327.371094 264.328125 327.464844 264.234375 327.464844 264.117188 Z M 327.464844 264.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.339844 264.242188 C 327.339844 264.125 327.246094 264.03125 327.128906 264.03125 C 327.011719 264.03125 326.917969 264.125 326.917969 264.242188 C 326.917969 264.359375 327.011719 264.453125 327.128906 264.453125 C 327.246094 264.453125 327.339844 264.359375 327.339844 264.242188 Z M 327.339844 264.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.511719 267.441406 C 327.511719 267.324219 327.417969 267.230469 327.300781 267.230469 C 327.183594 267.230469 327.089844 267.324219 327.089844 267.441406 C 327.089844 267.558594 327.183594 267.652344 327.300781 267.652344 C 327.417969 267.652344 327.511719 267.558594 327.511719 267.441406 Z M 327.511719 267.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 329.644531 265.9375 C 329.644531 265.820312 329.550781 265.726562 329.433594 265.726562 C 329.316406 265.726562 329.222656 265.820312 329.222656 265.9375 C 329.222656 266.054688 329.316406 266.148438 329.433594 266.148438 C 329.550781 266.148438 329.644531 266.054688 329.644531 265.9375 Z M 329.644531 265.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 329.964844 266.242188 C 329.964844 266.125 329.871094 266.03125 329.753906 266.03125 C 329.636719 266.03125 329.542969 266.125 329.542969 266.242188 C 329.542969 266.359375 329.636719 266.453125 329.753906 266.453125 C 329.871094 266.453125 329.964844 266.359375 329.964844 266.242188 Z M 329.964844 266.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.933594 267.828125 C 327.933594 267.710938 327.839844 267.617188 327.722656 267.617188 C 327.605469 267.617188 327.511719 267.710938 327.511719 267.828125 C 327.511719 267.945312 327.605469 268.039062 327.722656 268.039062 C 327.839844 268.039062 327.933594 267.945312 327.933594 267.828125 Z M 327.933594 267.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.484375 266.242188 C 325.484375 266.125 325.390625 266.03125 325.273438 266.03125 C 325.15625 266.03125 325.0625 266.125 325.0625 266.242188 C 325.0625 266.359375 325.15625 266.453125 325.273438 266.453125 C 325.390625 266.453125 325.484375 266.359375 325.484375 266.242188 Z M 325.484375 266.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.566406 265.582031 C 324.566406 265.464844 324.472656 265.371094 324.355469 265.371094 C 324.238281 265.371094 324.144531 265.464844 324.144531 265.582031 C 324.144531 265.699219 324.238281 265.792969 324.355469 265.792969 C 324.472656 265.792969 324.566406 265.699219 324.566406 265.582031 Z M 324.566406 265.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.59375 264.320312 C 325.59375 264.203125 325.5 264.109375 325.382812 264.109375 C 325.265625 264.109375 325.171875 264.203125 325.171875 264.320312 C 325.171875 264.4375 325.265625 264.53125 325.382812 264.53125 C 325.5 264.53125 325.59375 264.4375 325.59375 264.320312 Z M 325.59375 264.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.085938 263.800781 C 327.085938 263.683594 326.992188 263.589844 326.875 263.589844 C 326.757812 263.589844 326.664062 263.683594 326.664062 263.800781 C 326.664062 263.917969 326.757812 264.011719 326.875 264.011719 C 326.992188 264.011719 327.085938 263.917969 327.085938 263.800781 Z M 327.085938 263.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.128906 265.804688 C 327.128906 265.6875 327.035156 265.59375 326.917969 265.59375 C 326.800781 265.59375 326.707031 265.6875 326.707031 265.804688 C 326.707031 265.921875 326.800781 266.015625 326.917969 266.015625 C 327.035156 266.015625 327.128906 265.921875 327.128906 265.804688 Z M 327.128906 265.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.019531 266.976562 C 325.019531 266.859375 324.925781 266.765625 324.808594 266.765625 C 324.691406 266.765625 324.597656 266.859375 324.597656 266.976562 C 324.597656 267.09375 324.691406 267.1875 324.808594 267.1875 C 324.925781 267.1875 325.019531 267.09375 325.019531 266.976562 Z M 325.019531 266.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.289062 268.09375 C 321.289062 267.976562 321.195312 267.882812 321.078125 267.882812 C 320.960938 267.882812 320.867188 267.976562 320.867188 268.09375 C 320.867188 268.210938 320.960938 268.304688 321.078125 268.304688 C 321.195312 268.304688 321.289062 268.210938 321.289062 268.09375 Z M 321.289062 268.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 320.902344 269.214844 C 320.902344 269.097656 320.808594 269.003906 320.691406 269.003906 C 320.574219 269.003906 320.480469 269.097656 320.480469 269.214844 C 320.480469 269.332031 320.574219 269.425781 320.691406 269.425781 C 320.808594 269.425781 320.902344 269.332031 320.902344 269.214844 Z M 320.902344 269.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 319.867188 270.769531 C 319.867188 270.652344 319.773438 270.558594 319.65625 270.558594 C 319.539062 270.558594 319.445312 270.652344 319.445312 270.769531 C 319.445312 270.886719 319.539062 270.980469 319.65625 270.980469 C 319.773438 270.980469 319.867188 270.886719 319.867188 270.769531 Z M 319.867188 270.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.8125 269.570312 C 317.8125 269.453125 317.71875 269.359375 317.601562 269.359375 C 317.484375 269.359375 317.390625 269.453125 317.390625 269.570312 C 317.390625 269.6875 317.484375 269.78125 317.601562 269.78125 C 317.71875 269.78125 317.8125 269.6875 317.8125 269.570312 Z M 317.8125 269.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 319.023438 271.753906 C 319.023438 271.636719 318.929688 271.542969 318.8125 271.542969 C 318.695312 271.542969 318.601562 271.636719 318.601562 271.753906 C 318.601562 271.871094 318.695312 271.964844 318.8125 271.964844 C 318.929688 271.964844 319.023438 271.871094 319.023438 271.753906 Z M 319.023438 271.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.8125 270.96875 C 316.8125 270.851562 316.71875 270.757812 316.601562 270.757812 C 316.484375 270.757812 316.390625 270.851562 316.390625 270.96875 C 316.390625 271.085938 316.484375 271.179688 316.601562 271.179688 C 316.71875 271.179688 316.8125 271.085938 316.8125 270.96875 Z M 316.8125 270.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.042969 269.875 C 315.042969 269.757812 314.949219 269.664062 314.832031 269.664062 C 314.714844 269.664062 314.621094 269.757812 314.621094 269.875 C 314.621094 269.992188 314.714844 270.085938 314.832031 270.085938 C 314.949219 270.085938 315.042969 269.992188 315.042969 269.875 Z M 315.042969 269.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 318.71875 271.179688 C 318.71875 271.0625 318.625 270.96875 318.507812 270.96875 C 318.390625 270.96875 318.296875 271.0625 318.296875 271.179688 C 318.296875 271.296875 318.390625 271.390625 318.507812 271.390625 C 318.625 271.390625 318.71875 271.296875 318.71875 271.179688 Z M 318.71875 271.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 319.914062 268.042969 C 319.914062 267.925781 319.820312 267.832031 319.703125 267.832031 C 319.585938 267.832031 319.492188 267.925781 319.492188 268.042969 C 319.492188 268.160156 319.585938 268.253906 319.703125 268.253906 C 319.820312 268.253906 319.914062 268.160156 319.914062 268.042969 Z M 319.914062 268.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.964844 267.699219 C 322.964844 267.582031 322.871094 267.488281 322.753906 267.488281 C 322.636719 267.488281 322.542969 267.582031 322.542969 267.699219 C 322.542969 267.816406 322.636719 267.910156 322.753906 267.910156 C 322.871094 267.910156 322.964844 267.816406 322.964844 267.699219 Z M 322.964844 267.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.859375 269.6875 C 317.859375 269.570312 317.765625 269.476562 317.648438 269.476562 C 317.53125 269.476562 317.4375 269.570312 317.4375 269.6875 C 317.4375 269.804688 317.53125 269.898438 317.648438 269.898438 C 317.765625 269.898438 317.859375 269.804688 317.859375 269.6875 Z M 317.859375 269.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 319 274.128906 C 319 274.011719 318.90625 273.917969 318.789062 273.917969 C 318.671875 273.917969 318.578125 274.011719 318.578125 274.128906 C 318.578125 274.246094 318.671875 274.339844 318.789062 274.339844 C 318.90625 274.339844 319 274.246094 319 274.128906 Z M 319 274.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.203125 279.183594 C 315.203125 279.066406 315.109375 278.972656 314.992188 278.972656 C 314.875 278.972656 314.78125 279.066406 314.78125 279.183594 C 314.78125 279.300781 314.875 279.394531 314.992188 279.394531 C 315.109375 279.394531 315.203125 279.300781 315.203125 279.183594 Z M 315.203125 279.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.742188 280.355469 C 314.742188 280.238281 314.648438 280.144531 314.53125 280.144531 C 314.414062 280.144531 314.320312 280.238281 314.320312 280.355469 C 314.320312 280.472656 314.414062 280.566406 314.53125 280.566406 C 314.648438 280.566406 314.742188 280.472656 314.742188 280.355469 Z M 314.742188 280.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.429688 282.230469 C 317.429688 282.113281 317.335938 282.019531 317.21875 282.019531 C 317.101562 282.019531 317.007812 282.113281 317.007812 282.230469 C 317.007812 282.347656 317.101562 282.441406 317.21875 282.441406 C 317.335938 282.441406 317.429688 282.347656 317.429688 282.230469 Z M 317.429688 282.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.425781 281.394531 C 314.425781 281.277344 314.332031 281.183594 314.214844 281.183594 C 314.097656 281.183594 314.003906 281.277344 314.003906 281.394531 C 314.003906 281.511719 314.097656 281.605469 314.214844 281.605469 C 314.332031 281.605469 314.425781 281.511719 314.425781 281.394531 Z M 314.425781 281.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.585938 280.429688 C 316.585938 280.3125 316.492188 280.21875 316.375 280.21875 C 316.257812 280.21875 316.164062 280.3125 316.164062 280.429688 C 316.164062 280.546875 316.257812 280.640625 316.375 280.640625 C 316.492188 280.640625 316.585938 280.546875 316.585938 280.429688 Z M 316.585938 280.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 318.828125 279.328125 C 318.828125 279.210938 318.734375 279.117188 318.617188 279.117188 C 318.5 279.117188 318.40625 279.210938 318.40625 279.328125 C 318.40625 279.445312 318.5 279.539062 318.617188 279.539062 C 318.734375 279.539062 318.828125 279.445312 318.828125 279.328125 Z M 318.828125 279.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.136719 278.222656 C 316.136719 278.105469 316.042969 278.011719 315.925781 278.011719 C 315.808594 278.011719 315.714844 278.105469 315.714844 278.222656 C 315.714844 278.339844 315.808594 278.433594 315.925781 278.433594 C 316.042969 278.433594 316.136719 278.339844 316.136719 278.222656 Z M 316.136719 278.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.46875 277.328125 C 316.46875 277.210938 316.375 277.117188 316.257812 277.117188 C 316.140625 277.117188 316.046875 277.210938 316.046875 277.328125 C 316.046875 277.445312 316.140625 277.539062 316.257812 277.539062 C 316.375 277.539062 316.46875 277.445312 316.46875 277.328125 Z M 316.46875 277.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.519531 274.078125 C 314.519531 273.960938 314.425781 273.867188 314.308594 273.867188 C 314.191406 273.867188 314.097656 273.960938 314.097656 274.078125 C 314.097656 274.195312 314.191406 274.289062 314.308594 274.289062 C 314.425781 274.289062 314.519531 274.195312 314.519531 274.078125 Z M 314.519531 274.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.605469 277.964844 C 310.605469 277.847656 310.511719 277.753906 310.394531 277.753906 C 310.277344 277.753906 310.183594 277.847656 310.183594 277.964844 C 310.183594 278.082031 310.277344 278.175781 310.394531 278.175781 C 310.511719 278.175781 310.605469 278.082031 310.605469 277.964844 Z M 310.605469 277.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.847656 278.753906 C 307.847656 278.636719 307.753906 278.542969 307.636719 278.542969 C 307.519531 278.542969 307.425781 278.636719 307.425781 278.753906 C 307.425781 278.871094 307.519531 278.964844 307.636719 278.964844 C 307.753906 278.964844 307.847656 278.871094 307.847656 278.753906 Z M 307.847656 278.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.84375 278.96875 C 307.84375 278.851562 307.75 278.757812 307.632812 278.757812 C 307.515625 278.757812 307.421875 278.851562 307.421875 278.96875 C 307.421875 279.085938 307.515625 279.179688 307.632812 279.179688 C 307.75 279.179688 307.84375 279.085938 307.84375 278.96875 Z M 307.84375 278.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.289062 277.28125 C 303.289062 277.164062 303.195312 277.070312 303.078125 277.070312 C 302.960938 277.070312 302.867188 277.164062 302.867188 277.28125 C 302.867188 277.398438 302.960938 277.492188 303.078125 277.492188 C 303.195312 277.492188 303.289062 277.398438 303.289062 277.28125 Z M 303.289062 277.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.867188 278.863281 C 302.867188 278.746094 302.773438 278.652344 302.65625 278.652344 C 302.539062 278.652344 302.445312 278.746094 302.445312 278.863281 C 302.445312 278.980469 302.539062 279.074219 302.65625 279.074219 C 302.773438 279.074219 302.867188 278.980469 302.867188 278.863281 Z M 302.867188 278.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.589844 278.886719 C 300.589844 278.769531 300.496094 278.675781 300.378906 278.675781 C 300.261719 278.675781 300.167969 278.769531 300.167969 278.886719 C 300.167969 279.003906 300.261719 279.097656 300.378906 279.097656 C 300.496094 279.097656 300.589844 279.003906 300.589844 278.886719 Z M 300.589844 278.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.9375 275.804688 C 298.9375 275.6875 298.84375 275.59375 298.726562 275.59375 C 298.609375 275.59375 298.515625 275.6875 298.515625 275.804688 C 298.515625 275.921875 298.609375 276.015625 298.726562 276.015625 C 298.84375 276.015625 298.9375 275.921875 298.9375 275.804688 Z M 298.9375 275.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.8125 277.871094 C 300.8125 277.753906 300.71875 277.660156 300.601562 277.660156 C 300.484375 277.660156 300.390625 277.753906 300.390625 277.871094 C 300.390625 277.988281 300.484375 278.082031 300.601562 278.082031 C 300.71875 278.082031 300.8125 277.988281 300.8125 277.871094 Z M 300.8125 277.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.742188 277.386719 C 301.742188 277.269531 301.648438 277.175781 301.53125 277.175781 C 301.414062 277.175781 301.320312 277.269531 301.320312 277.386719 C 301.320312 277.503906 301.414062 277.597656 301.53125 277.597656 C 301.648438 277.597656 301.742188 277.503906 301.742188 277.386719 Z M 301.742188 277.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.722656 278.898438 C 301.722656 278.78125 301.628906 278.6875 301.511719 278.6875 C 301.394531 278.6875 301.300781 278.78125 301.300781 278.898438 C 301.300781 279.015625 301.394531 279.109375 301.511719 279.109375 C 301.628906 279.109375 301.722656 279.015625 301.722656 278.898438 Z M 301.722656 278.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.796875 274.53125 C 302.796875 274.414062 302.703125 274.320312 302.585938 274.320312 C 302.46875 274.320312 302.375 274.414062 302.375 274.53125 C 302.375 274.648438 302.46875 274.742188 302.585938 274.742188 C 302.703125 274.742188 302.796875 274.648438 302.796875 274.53125 Z M 302.796875 274.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.152344 275.070312 C 302.152344 274.953125 302.058594 274.859375 301.941406 274.859375 C 301.824219 274.859375 301.730469 274.953125 301.730469 275.070312 C 301.730469 275.1875 301.824219 275.28125 301.941406 275.28125 C 302.058594 275.28125 302.152344 275.1875 302.152344 275.070312 Z M 302.152344 275.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.34375 276.546875 C 298.34375 276.429688 298.25 276.335938 298.132812 276.335938 C 298.015625 276.335938 297.921875 276.429688 297.921875 276.546875 C 297.921875 276.664062 298.015625 276.757812 298.132812 276.757812 C 298.25 276.757812 298.34375 276.664062 298.34375 276.546875 Z M 298.34375 276.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.734375 277.246094 C 296.734375 277.128906 296.640625 277.035156 296.523438 277.035156 C 296.40625 277.035156 296.3125 277.128906 296.3125 277.246094 C 296.3125 277.363281 296.40625 277.457031 296.523438 277.457031 C 296.640625 277.457031 296.734375 277.363281 296.734375 277.246094 Z M 296.734375 277.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.496094 280.628906 C 299.496094 280.511719 299.402344 280.417969 299.285156 280.417969 C 299.167969 280.417969 299.074219 280.511719 299.074219 280.628906 C 299.074219 280.746094 299.167969 280.839844 299.285156 280.839844 C 299.402344 280.839844 299.496094 280.746094 299.496094 280.628906 Z M 299.496094 280.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.277344 283.125 C 296.277344 283.007812 296.183594 282.914062 296.066406 282.914062 C 295.949219 282.914062 295.855469 283.007812 295.855469 283.125 C 295.855469 283.242188 295.949219 283.335938 296.066406 283.335938 C 296.183594 283.335938 296.277344 283.242188 296.277344 283.125 Z M 296.277344 283.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.664062 286.800781 C 296.664062 286.683594 296.570312 286.589844 296.453125 286.589844 C 296.335938 286.589844 296.242188 286.683594 296.242188 286.800781 C 296.242188 286.917969 296.335938 287.011719 296.453125 287.011719 C 296.570312 287.011719 296.664062 286.917969 296.664062 286.800781 Z M 296.664062 286.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.585938 286.285156 C 295.585938 286.167969 295.492188 286.074219 295.375 286.074219 C 295.257812 286.074219 295.164062 286.167969 295.164062 286.285156 C 295.164062 286.402344 295.257812 286.496094 295.375 286.496094 C 295.492188 286.496094 295.585938 286.402344 295.585938 286.285156 Z M 295.585938 286.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.4375 287.15625 C 293.4375 287.039062 293.34375 286.945312 293.226562 286.945312 C 293.109375 286.945312 293.015625 287.039062 293.015625 287.15625 C 293.015625 287.273438 293.109375 287.367188 293.226562 287.367188 C 293.34375 287.367188 293.4375 287.273438 293.4375 287.15625 Z M 293.4375 287.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.726562 287.480469 C 294.726562 287.363281 294.632812 287.269531 294.515625 287.269531 C 294.398438 287.269531 294.304688 287.363281 294.304688 287.480469 C 294.304688 287.597656 294.398438 287.691406 294.515625 287.691406 C 294.632812 287.691406 294.726562 287.597656 294.726562 287.480469 Z M 294.726562 287.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.355469 290.238281 C 294.355469 290.121094 294.261719 290.027344 294.144531 290.027344 C 294.027344 290.027344 293.933594 290.121094 293.933594 290.238281 C 293.933594 290.355469 294.027344 290.449219 294.144531 290.449219 C 294.261719 290.449219 294.355469 290.355469 294.355469 290.238281 Z M 294.355469 290.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.515625 289.652344 C 295.515625 289.535156 295.421875 289.441406 295.304688 289.441406 C 295.1875 289.441406 295.09375 289.535156 295.09375 289.652344 C 295.09375 289.769531 295.1875 289.863281 295.304688 289.863281 C 295.421875 289.863281 295.515625 289.769531 295.515625 289.652344 Z M 295.515625 289.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.386719 292.023438 C 296.386719 291.90625 296.292969 291.8125 296.175781 291.8125 C 296.058594 291.8125 295.964844 291.90625 295.964844 292.023438 C 295.964844 292.140625 296.058594 292.234375 296.175781 292.234375 C 296.292969 292.234375 296.386719 292.140625 296.386719 292.023438 Z M 296.386719 292.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.488281 291.121094 C 298.488281 291.003906 298.394531 290.910156 298.277344 290.910156 C 298.160156 290.910156 298.066406 291.003906 298.066406 291.121094 C 298.066406 291.238281 298.160156 291.332031 298.277344 291.332031 C 298.394531 291.332031 298.488281 291.238281 298.488281 291.121094 Z M 298.488281 291.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.066406 289.113281 C 302.066406 288.996094 301.972656 288.902344 301.855469 288.902344 C 301.738281 288.902344 301.644531 288.996094 301.644531 289.113281 C 301.644531 289.230469 301.738281 289.324219 301.855469 289.324219 C 301.972656 289.324219 302.066406 289.230469 302.066406 289.113281 Z M 302.066406 289.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.191406 293.453125 C 302.191406 293.335938 302.097656 293.242188 301.980469 293.242188 C 301.863281 293.242188 301.769531 293.335938 301.769531 293.453125 C 301.769531 293.570312 301.863281 293.664062 301.980469 293.664062 C 302.097656 293.664062 302.191406 293.570312 302.191406 293.453125 Z M 302.191406 293.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.683594 295.285156 C 297.683594 295.167969 297.589844 295.074219 297.472656 295.074219 C 297.355469 295.074219 297.261719 295.167969 297.261719 295.285156 C 297.261719 295.402344 297.355469 295.496094 297.472656 295.496094 C 297.589844 295.496094 297.683594 295.402344 297.683594 295.285156 Z M 297.683594 295.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.929688 294.769531 C 294.929688 294.652344 294.835938 294.558594 294.71875 294.558594 C 294.601562 294.558594 294.507812 294.652344 294.507812 294.769531 C 294.507812 294.886719 294.601562 294.980469 294.71875 294.980469 C 294.835938 294.980469 294.929688 294.886719 294.929688 294.769531 Z M 294.929688 294.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.289062 296.9375 C 294.289062 296.820312 294.195312 296.726562 294.078125 296.726562 C 293.960938 296.726562 293.867188 296.820312 293.867188 296.9375 C 293.867188 297.054688 293.960938 297.148438 294.078125 297.148438 C 294.195312 297.148438 294.289062 297.054688 294.289062 296.9375 Z M 294.289062 296.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.59375 298.277344 C 293.59375 298.160156 293.5 298.066406 293.382812 298.066406 C 293.265625 298.066406 293.171875 298.160156 293.171875 298.277344 C 293.171875 298.394531 293.265625 298.488281 293.382812 298.488281 C 293.5 298.488281 293.59375 298.394531 293.59375 298.277344 Z M 293.59375 298.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.195312 296.871094 C 294.195312 296.753906 294.101562 296.660156 293.984375 296.660156 C 293.867188 296.660156 293.773438 296.753906 293.773438 296.871094 C 293.773438 296.988281 293.867188 297.082031 293.984375 297.082031 C 294.101562 297.082031 294.195312 296.988281 294.195312 296.871094 Z M 294.195312 296.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.488281 299.585938 C 296.488281 299.46875 296.394531 299.375 296.277344 299.375 C 296.160156 299.375 296.066406 299.46875 296.066406 299.585938 C 296.066406 299.703125 296.160156 299.796875 296.277344 299.796875 C 296.394531 299.796875 296.488281 299.703125 296.488281 299.585938 Z M 296.488281 299.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.695312 299.902344 C 296.695312 299.785156 296.601562 299.691406 296.484375 299.691406 C 296.367188 299.691406 296.273438 299.785156 296.273438 299.902344 C 296.273438 300.019531 296.367188 300.113281 296.484375 300.113281 C 296.601562 300.113281 296.695312 300.019531 296.695312 299.902344 Z M 296.695312 299.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.019531 300.003906 C 295.019531 299.886719 294.925781 299.792969 294.808594 299.792969 C 294.691406 299.792969 294.597656 299.886719 294.597656 300.003906 C 294.597656 300.121094 294.691406 300.214844 294.808594 300.214844 C 294.925781 300.214844 295.019531 300.121094 295.019531 300.003906 Z M 295.019531 300.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.789062 300.296875 C 293.789062 300.179688 293.695312 300.085938 293.578125 300.085938 C 293.460938 300.085938 293.367188 300.179688 293.367188 300.296875 C 293.367188 300.414062 293.460938 300.507812 293.578125 300.507812 C 293.695312 300.507812 293.789062 300.414062 293.789062 300.296875 Z M 293.789062 300.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.457031 302.164062 C 293.457031 302.046875 293.363281 301.953125 293.246094 301.953125 C 293.128906 301.953125 293.035156 302.046875 293.035156 302.164062 C 293.035156 302.28125 293.128906 302.375 293.246094 302.375 C 293.363281 302.375 293.457031 302.28125 293.457031 302.164062 Z M 293.457031 302.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.214844 302.617188 C 296.214844 302.5 296.121094 302.40625 296.003906 302.40625 C 295.886719 302.40625 295.792969 302.5 295.792969 302.617188 C 295.792969 302.734375 295.886719 302.828125 296.003906 302.828125 C 296.121094 302.828125 296.214844 302.734375 296.214844 302.617188 Z M 296.214844 302.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.648438 303.792969 C 294.648438 303.675781 294.554688 303.582031 294.4375 303.582031 C 294.320312 303.582031 294.226562 303.675781 294.226562 303.792969 C 294.226562 303.910156 294.320312 304.003906 294.4375 304.003906 C 294.554688 304.003906 294.648438 303.910156 294.648438 303.792969 Z M 294.648438 303.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.15625 306.644531 C 293.15625 306.527344 293.0625 306.433594 292.945312 306.433594 C 292.828125 306.433594 292.734375 306.527344 292.734375 306.644531 C 292.734375 306.761719 292.828125 306.855469 292.945312 306.855469 C 293.0625 306.855469 293.15625 306.761719 293.15625 306.644531 Z M 293.15625 306.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.371094 306.773438 C 292.371094 306.65625 292.277344 306.5625 292.160156 306.5625 C 292.042969 306.5625 291.949219 306.65625 291.949219 306.773438 C 291.949219 306.890625 292.042969 306.984375 292.160156 306.984375 C 292.277344 306.984375 292.371094 306.890625 292.371094 306.773438 Z M 292.371094 306.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.617188 305.75 C 293.617188 305.632812 293.523438 305.539062 293.40625 305.539062 C 293.289062 305.539062 293.195312 305.632812 293.195312 305.75 C 293.195312 305.867188 293.289062 305.960938 293.40625 305.960938 C 293.523438 305.960938 293.617188 305.867188 293.617188 305.75 Z M 293.617188 305.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.636719 302.210938 C 294.636719 302.09375 294.542969 302 294.425781 302 C 294.308594 302 294.214844 302.09375 294.214844 302.210938 C 294.214844 302.328125 294.308594 302.421875 294.425781 302.421875 C 294.542969 302.421875 294.636719 302.328125 294.636719 302.210938 Z M 294.636719 302.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.792969 299.546875 C 290.792969 299.429688 290.699219 299.335938 290.582031 299.335938 C 290.464844 299.335938 290.371094 299.429688 290.371094 299.546875 C 290.371094 299.664062 290.464844 299.757812 290.582031 299.757812 C 290.699219 299.757812 290.792969 299.664062 290.792969 299.546875 Z M 290.792969 299.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.835938 302.898438 C 289.835938 302.78125 289.742188 302.6875 289.625 302.6875 C 289.507812 302.6875 289.414062 302.78125 289.414062 302.898438 C 289.414062 303.015625 289.507812 303.109375 289.625 303.109375 C 289.742188 303.109375 289.835938 303.015625 289.835938 302.898438 Z M 289.835938 302.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.339844 308.785156 C 288.339844 308.667969 288.246094 308.574219 288.128906 308.574219 C 288.011719 308.574219 287.917969 308.667969 287.917969 308.785156 C 287.917969 308.902344 288.011719 308.996094 288.128906 308.996094 C 288.246094 308.996094 288.339844 308.902344 288.339844 308.785156 Z M 288.339844 308.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.378906 307.566406 C 288.378906 307.449219 288.285156 307.355469 288.167969 307.355469 C 288.050781 307.355469 287.957031 307.449219 287.957031 307.566406 C 287.957031 307.683594 288.050781 307.777344 288.167969 307.777344 C 288.285156 307.777344 288.378906 307.683594 288.378906 307.566406 Z M 288.378906 307.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.136719 305.105469 C 289.136719 304.988281 289.042969 304.894531 288.925781 304.894531 C 288.808594 304.894531 288.714844 304.988281 288.714844 305.105469 C 288.714844 305.222656 288.808594 305.316406 288.925781 305.316406 C 289.042969 305.316406 289.136719 305.222656 289.136719 305.105469 Z M 289.136719 305.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.03125 306.527344 C 291.03125 306.410156 290.9375 306.316406 290.820312 306.316406 C 290.703125 306.316406 290.609375 306.410156 290.609375 306.527344 C 290.609375 306.644531 290.703125 306.738281 290.820312 306.738281 C 290.9375 306.738281 291.03125 306.644531 291.03125 306.527344 Z M 291.03125 306.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.328125 309.265625 C 287.328125 309.148438 287.234375 309.054688 287.117188 309.054688 C 287 309.054688 286.90625 309.148438 286.90625 309.265625 C 286.90625 309.382812 287 309.476562 287.117188 309.476562 C 287.234375 309.476562 287.328125 309.382812 287.328125 309.265625 Z M 287.328125 309.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.40625 311.136719 C 288.40625 311.019531 288.3125 310.925781 288.195312 310.925781 C 288.078125 310.925781 287.984375 311.019531 287.984375 311.136719 C 287.984375 311.253906 288.078125 311.347656 288.195312 311.347656 C 288.3125 311.347656 288.40625 311.253906 288.40625 311.136719 Z M 288.40625 311.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.570312 313.332031 C 287.570312 313.214844 287.476562 313.121094 287.359375 313.121094 C 287.242188 313.121094 287.148438 313.214844 287.148438 313.332031 C 287.148438 313.449219 287.242188 313.542969 287.359375 313.542969 C 287.476562 313.542969 287.570312 313.449219 287.570312 313.332031 Z M 287.570312 313.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.8125 312.816406 C 288.8125 312.699219 288.71875 312.605469 288.601562 312.605469 C 288.484375 312.605469 288.390625 312.699219 288.390625 312.816406 C 288.390625 312.933594 288.484375 313.027344 288.601562 313.027344 C 288.71875 313.027344 288.8125 312.933594 288.8125 312.816406 Z M 288.8125 312.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.320312 310.210938 C 289.320312 310.09375 289.226562 310 289.109375 310 C 288.992188 310 288.898438 310.09375 288.898438 310.210938 C 288.898438 310.328125 288.992188 310.421875 289.109375 310.421875 C 289.226562 310.421875 289.320312 310.328125 289.320312 310.210938 Z M 289.320312 310.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.535156 314.949219 C 290.535156 314.832031 290.441406 314.738281 290.324219 314.738281 C 290.207031 314.738281 290.113281 314.832031 290.113281 314.949219 C 290.113281 315.066406 290.207031 315.160156 290.324219 315.160156 C 290.441406 315.160156 290.535156 315.066406 290.535156 314.949219 Z M 290.535156 314.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.667969 313.359375 C 292.667969 313.242188 292.574219 313.148438 292.457031 313.148438 C 292.339844 313.148438 292.246094 313.242188 292.246094 313.359375 C 292.246094 313.476562 292.339844 313.570312 292.457031 313.570312 C 292.574219 313.570312 292.667969 313.476562 292.667969 313.359375 Z M 292.667969 313.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.652344 315.660156 C 290.652344 315.542969 290.558594 315.449219 290.441406 315.449219 C 290.324219 315.449219 290.230469 315.542969 290.230469 315.660156 C 290.230469 315.777344 290.324219 315.871094 290.441406 315.871094 C 290.558594 315.871094 290.652344 315.777344 290.652344 315.660156 Z M 290.652344 315.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.34375 317.011719 C 288.34375 316.894531 288.25 316.800781 288.132812 316.800781 C 288.015625 316.800781 287.921875 316.894531 287.921875 317.011719 C 287.921875 317.128906 288.015625 317.222656 288.132812 317.222656 C 288.25 317.222656 288.34375 317.128906 288.34375 317.011719 Z M 288.34375 317.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.988281 319.753906 C 289.988281 319.636719 289.894531 319.542969 289.777344 319.542969 C 289.660156 319.542969 289.566406 319.636719 289.566406 319.753906 C 289.566406 319.871094 289.660156 319.964844 289.777344 319.964844 C 289.894531 319.964844 289.988281 319.871094 289.988281 319.753906 Z M 289.988281 319.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.390625 319.261719 C 291.390625 319.144531 291.296875 319.050781 291.179688 319.050781 C 291.0625 319.050781 290.96875 319.144531 290.96875 319.261719 C 290.96875 319.378906 291.0625 319.472656 291.179688 319.472656 C 291.296875 319.472656 291.390625 319.378906 291.390625 319.261719 Z M 291.390625 319.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.996094 321.210938 C 292.996094 321.09375 292.902344 321 292.785156 321 C 292.667969 321 292.574219 321.09375 292.574219 321.210938 C 292.574219 321.328125 292.667969 321.421875 292.785156 321.421875 C 292.902344 321.421875 292.996094 321.328125 292.996094 321.210938 Z M 292.996094 321.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.605469 319.519531 C 292.605469 319.402344 292.511719 319.308594 292.394531 319.308594 C 292.277344 319.308594 292.183594 319.402344 292.183594 319.519531 C 292.183594 319.636719 292.277344 319.730469 292.394531 319.730469 C 292.511719 319.730469 292.605469 319.636719 292.605469 319.519531 Z M 292.605469 319.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.039062 316.625 C 292.039062 316.507812 291.945312 316.414062 291.828125 316.414062 C 291.710938 316.414062 291.617188 316.507812 291.617188 316.625 C 291.617188 316.742188 291.710938 316.835938 291.828125 316.835938 C 291.945312 316.835938 292.039062 316.742188 292.039062 316.625 Z M 292.039062 316.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.132812 310.777344 C 292.132812 310.660156 292.039062 310.566406 291.921875 310.566406 C 291.804688 310.566406 291.710938 310.660156 291.710938 310.777344 C 291.710938 310.894531 291.804688 310.988281 291.921875 310.988281 C 292.039062 310.988281 292.132812 310.894531 292.132812 310.777344 Z M 292.132812 310.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.792969 312.042969 C 287.792969 311.925781 287.699219 311.832031 287.582031 311.832031 C 287.464844 311.832031 287.371094 311.925781 287.371094 312.042969 C 287.371094 312.160156 287.464844 312.253906 287.582031 312.253906 C 287.699219 312.253906 287.792969 312.160156 287.792969 312.042969 Z M 287.792969 312.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.59375 315.183594 C 290.59375 315.066406 290.5 314.972656 290.382812 314.972656 C 290.265625 314.972656 290.171875 315.066406 290.171875 315.183594 C 290.171875 315.300781 290.265625 315.394531 290.382812 315.394531 C 290.5 315.394531 290.59375 315.300781 290.59375 315.183594 Z M 290.59375 315.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.167969 316.757812 C 289.167969 316.640625 289.074219 316.546875 288.957031 316.546875 C 288.839844 316.546875 288.746094 316.640625 288.746094 316.757812 C 288.746094 316.875 288.839844 316.96875 288.957031 316.96875 C 289.074219 316.96875 289.167969 316.875 289.167969 316.757812 Z M 289.167969 316.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.148438 316.382812 C 287.148438 316.265625 287.054688 316.171875 286.9375 316.171875 C 286.820312 316.171875 286.726562 316.265625 286.726562 316.382812 C 286.726562 316.5 286.820312 316.59375 286.9375 316.59375 C 287.054688 316.59375 287.148438 316.5 287.148438 316.382812 Z M 287.148438 316.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.132812 315.332031 C 288.132812 315.214844 288.039062 315.121094 287.921875 315.121094 C 287.804688 315.121094 287.710938 315.214844 287.710938 315.332031 C 287.710938 315.449219 287.804688 315.542969 287.921875 315.542969 C 288.039062 315.542969 288.132812 315.449219 288.132812 315.332031 Z M 288.132812 315.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.746094 314.40625 C 288.746094 314.289062 288.652344 314.195312 288.535156 314.195312 C 288.417969 314.195312 288.324219 314.289062 288.324219 314.40625 C 288.324219 314.523438 288.417969 314.617188 288.535156 314.617188 C 288.652344 314.617188 288.746094 314.523438 288.746094 314.40625 Z M 288.746094 314.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.476562 312.578125 C 289.476562 312.460938 289.382812 312.367188 289.265625 312.367188 C 289.148438 312.367188 289.054688 312.460938 289.054688 312.578125 C 289.054688 312.695312 289.148438 312.789062 289.265625 312.789062 C 289.382812 312.789062 289.476562 312.695312 289.476562 312.578125 Z M 289.476562 312.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.542969 314.664062 C 287.542969 314.546875 287.449219 314.453125 287.332031 314.453125 C 287.214844 314.453125 287.121094 314.546875 287.121094 314.664062 C 287.121094 314.78125 287.214844 314.875 287.332031 314.875 C 287.449219 314.875 287.542969 314.78125 287.542969 314.664062 Z M 287.542969 314.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.199219 312.40625 C 284.199219 312.289062 284.105469 312.195312 283.988281 312.195312 C 283.871094 312.195312 283.777344 312.289062 283.777344 312.40625 C 283.777344 312.523438 283.871094 312.617188 283.988281 312.617188 C 284.105469 312.617188 284.199219 312.523438 284.199219 312.40625 Z M 284.199219 312.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.542969 314.613281 C 285.542969 314.496094 285.449219 314.402344 285.332031 314.402344 C 285.214844 314.402344 285.121094 314.496094 285.121094 314.613281 C 285.121094 314.730469 285.214844 314.824219 285.332031 314.824219 C 285.449219 314.824219 285.542969 314.730469 285.542969 314.613281 Z M 285.542969 314.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.601562 310.867188 C 288.601562 310.75 288.507812 310.65625 288.390625 310.65625 C 288.273438 310.65625 288.179688 310.75 288.179688 310.867188 C 288.179688 310.984375 288.273438 311.078125 288.390625 311.078125 C 288.507812 311.078125 288.601562 310.984375 288.601562 310.867188 Z M 288.601562 310.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.039062 313.070312 C 286.039062 312.953125 285.945312 312.859375 285.828125 312.859375 C 285.710938 312.859375 285.617188 312.953125 285.617188 313.070312 C 285.617188 313.1875 285.710938 313.28125 285.828125 313.28125 C 285.945312 313.28125 286.039062 313.1875 286.039062 313.070312 Z M 286.039062 313.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.324219 313.230469 C 284.324219 313.113281 284.230469 313.019531 284.113281 313.019531 C 283.996094 313.019531 283.902344 313.113281 283.902344 313.230469 C 283.902344 313.347656 283.996094 313.441406 284.113281 313.441406 C 284.230469 313.441406 284.324219 313.347656 284.324219 313.230469 Z M 284.324219 313.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.539062 311.539062 C 284.539062 311.421875 284.445312 311.328125 284.328125 311.328125 C 284.210938 311.328125 284.117188 311.421875 284.117188 311.539062 C 284.117188 311.65625 284.210938 311.75 284.328125 311.75 C 284.445312 311.75 284.539062 311.65625 284.539062 311.539062 Z M 284.539062 311.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.753906 308.246094 C 281.753906 308.128906 281.660156 308.035156 281.542969 308.035156 C 281.425781 308.035156 281.332031 308.128906 281.332031 308.246094 C 281.332031 308.363281 281.425781 308.457031 281.542969 308.457031 C 281.660156 308.457031 281.753906 308.363281 281.753906 308.246094 Z M 281.753906 308.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.730469 309.871094 C 282.730469 309.753906 282.636719 309.660156 282.519531 309.660156 C 282.402344 309.660156 282.308594 309.753906 282.308594 309.871094 C 282.308594 309.988281 282.402344 310.082031 282.519531 310.082031 C 282.636719 310.082031 282.730469 309.988281 282.730469 309.871094 Z M 282.730469 309.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.210938 309.121094 C 282.210938 309.003906 282.117188 308.910156 282 308.910156 C 281.882812 308.910156 281.789062 309.003906 281.789062 309.121094 C 281.789062 309.238281 281.882812 309.332031 282 309.332031 C 282.117188 309.332031 282.210938 309.238281 282.210938 309.121094 Z M 282.210938 309.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.703125 306.5625 C 285.703125 306.445312 285.609375 306.351562 285.492188 306.351562 C 285.375 306.351562 285.28125 306.445312 285.28125 306.5625 C 285.28125 306.679688 285.375 306.773438 285.492188 306.773438 C 285.609375 306.773438 285.703125 306.679688 285.703125 306.5625 Z M 285.703125 306.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.332031 308.441406 C 284.332031 308.324219 284.238281 308.230469 284.121094 308.230469 C 284.003906 308.230469 283.910156 308.324219 283.910156 308.441406 C 283.910156 308.558594 284.003906 308.652344 284.121094 308.652344 C 284.238281 308.652344 284.332031 308.558594 284.332031 308.441406 Z M 284.332031 308.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.308594 307.960938 C 287.308594 307.84375 287.214844 307.75 287.097656 307.75 C 286.980469 307.75 286.886719 307.84375 286.886719 307.960938 C 286.886719 308.078125 286.980469 308.171875 287.097656 308.171875 C 287.214844 308.171875 287.308594 308.078125 287.308594 307.960938 Z M 287.308594 307.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.765625 305.53125 C 286.765625 305.414062 286.671875 305.320312 286.554688 305.320312 C 286.4375 305.320312 286.34375 305.414062 286.34375 305.53125 C 286.34375 305.648438 286.4375 305.742188 286.554688 305.742188 C 286.671875 305.742188 286.765625 305.648438 286.765625 305.53125 Z M 286.765625 305.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.574219 308.730469 C 286.574219 308.613281 286.480469 308.519531 286.363281 308.519531 C 286.246094 308.519531 286.152344 308.613281 286.152344 308.730469 C 286.152344 308.847656 286.246094 308.941406 286.363281 308.941406 C 286.480469 308.941406 286.574219 308.847656 286.574219 308.730469 Z M 286.574219 308.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.730469 308.742188 C 286.730469 308.625 286.636719 308.53125 286.519531 308.53125 C 286.402344 308.53125 286.308594 308.625 286.308594 308.742188 C 286.308594 308.859375 286.402344 308.953125 286.519531 308.953125 C 286.636719 308.953125 286.730469 308.859375 286.730469 308.742188 Z M 286.730469 308.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.039062 307.882812 C 289.039062 307.765625 288.945312 307.671875 288.828125 307.671875 C 288.710938 307.671875 288.617188 307.765625 288.617188 307.882812 C 288.617188 308 288.710938 308.09375 288.828125 308.09375 C 288.945312 308.09375 289.039062 308 289.039062 307.882812 Z M 289.039062 307.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.28125 308.371094 C 291.28125 308.253906 291.1875 308.160156 291.070312 308.160156 C 290.953125 308.160156 290.859375 308.253906 290.859375 308.371094 C 290.859375 308.488281 290.953125 308.582031 291.070312 308.582031 C 291.1875 308.582031 291.28125 308.488281 291.28125 308.371094 Z M 291.28125 308.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.023438 310.359375 C 290.023438 310.242188 289.929688 310.148438 289.8125 310.148438 C 289.695312 310.148438 289.601562 310.242188 289.601562 310.359375 C 289.601562 310.476562 289.695312 310.570312 289.8125 310.570312 C 289.929688 310.570312 290.023438 310.476562 290.023438 310.359375 Z M 290.023438 310.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.890625 311.109375 C 291.890625 310.992188 291.796875 310.898438 291.679688 310.898438 C 291.5625 310.898438 291.46875 310.992188 291.46875 311.109375 C 291.46875 311.226562 291.5625 311.320312 291.679688 311.320312 C 291.796875 311.320312 291.890625 311.226562 291.890625 311.109375 Z M 291.890625 311.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.839844 310.914062 C 291.839844 310.796875 291.746094 310.703125 291.628906 310.703125 C 291.511719 310.703125 291.417969 310.796875 291.417969 310.914062 C 291.417969 311.03125 291.511719 311.125 291.628906 311.125 C 291.746094 311.125 291.839844 311.03125 291.839844 310.914062 Z M 291.839844 310.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.707031 312.351562 C 292.707031 312.234375 292.613281 312.140625 292.496094 312.140625 C 292.378906 312.140625 292.285156 312.234375 292.285156 312.351562 C 292.285156 312.46875 292.378906 312.5625 292.496094 312.5625 C 292.613281 312.5625 292.707031 312.46875 292.707031 312.351562 Z M 292.707031 312.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.582031 314.328125 C 295.582031 314.210938 295.488281 314.117188 295.371094 314.117188 C 295.253906 314.117188 295.160156 314.210938 295.160156 314.328125 C 295.160156 314.445312 295.253906 314.539062 295.371094 314.539062 C 295.488281 314.539062 295.582031 314.445312 295.582031 314.328125 Z M 295.582031 314.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.15625 313.496094 C 294.15625 313.378906 294.0625 313.285156 293.945312 313.285156 C 293.828125 313.285156 293.734375 313.378906 293.734375 313.496094 C 293.734375 313.613281 293.828125 313.707031 293.945312 313.707031 C 294.0625 313.707031 294.15625 313.613281 294.15625 313.496094 Z M 294.15625 313.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.003906 311.957031 C 295.003906 311.839844 294.910156 311.746094 294.792969 311.746094 C 294.675781 311.746094 294.582031 311.839844 294.582031 311.957031 C 294.582031 312.074219 294.675781 312.167969 294.792969 312.167969 C 294.910156 312.167969 295.003906 312.074219 295.003906 311.957031 Z M 295.003906 311.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.347656 311.609375 C 291.347656 311.492188 291.253906 311.398438 291.136719 311.398438 C 291.019531 311.398438 290.925781 311.492188 290.925781 311.609375 C 290.925781 311.726562 291.019531 311.820312 291.136719 311.820312 C 291.253906 311.820312 291.347656 311.726562 291.347656 311.609375 Z M 291.347656 311.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.503906 311.789062 C 291.503906 311.671875 291.410156 311.578125 291.292969 311.578125 C 291.175781 311.578125 291.082031 311.671875 291.082031 311.789062 C 291.082031 311.90625 291.175781 312 291.292969 312 C 291.410156 312 291.503906 311.90625 291.503906 311.789062 Z M 291.503906 311.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.703125 314.597656 C 293.703125 314.480469 293.609375 314.386719 293.492188 314.386719 C 293.375 314.386719 293.28125 314.480469 293.28125 314.597656 C 293.28125 314.714844 293.375 314.808594 293.492188 314.808594 C 293.609375 314.808594 293.703125 314.714844 293.703125 314.597656 Z M 293.703125 314.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.21875 312.738281 C 292.21875 312.621094 292.125 312.527344 292.007812 312.527344 C 291.890625 312.527344 291.796875 312.621094 291.796875 312.738281 C 291.796875 312.855469 291.890625 312.949219 292.007812 312.949219 C 292.125 312.949219 292.21875 312.855469 292.21875 312.738281 Z M 292.21875 312.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.804688 312.574219 C 295.804688 312.457031 295.710938 312.363281 295.59375 312.363281 C 295.476562 312.363281 295.382812 312.457031 295.382812 312.574219 C 295.382812 312.691406 295.476562 312.785156 295.59375 312.785156 C 295.710938 312.785156 295.804688 312.691406 295.804688 312.574219 Z M 295.804688 312.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.292969 310.324219 C 297.292969 310.207031 297.199219 310.113281 297.082031 310.113281 C 296.964844 310.113281 296.871094 310.207031 296.871094 310.324219 C 296.871094 310.441406 296.964844 310.535156 297.082031 310.535156 C 297.199219 310.535156 297.292969 310.441406 297.292969 310.324219 Z M 297.292969 310.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.023438 310.042969 C 296.023438 309.925781 295.929688 309.832031 295.8125 309.832031 C 295.695312 309.832031 295.601562 309.925781 295.601562 310.042969 C 295.601562 310.160156 295.695312 310.253906 295.8125 310.253906 C 295.929688 310.253906 296.023438 310.160156 296.023438 310.042969 Z M 296.023438 310.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.546875 308.457031 C 294.546875 308.339844 294.453125 308.246094 294.335938 308.246094 C 294.21875 308.246094 294.125 308.339844 294.125 308.457031 C 294.125 308.574219 294.21875 308.667969 294.335938 308.667969 C 294.453125 308.667969 294.546875 308.574219 294.546875 308.457031 Z M 294.546875 308.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.621094 310.925781 C 296.621094 310.808594 296.527344 310.714844 296.410156 310.714844 C 296.292969 310.714844 296.199219 310.808594 296.199219 310.925781 C 296.199219 311.042969 296.292969 311.136719 296.410156 311.136719 C 296.527344 311.136719 296.621094 311.042969 296.621094 310.925781 Z M 296.621094 310.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.96875 310.78125 C 294.96875 310.664062 294.875 310.570312 294.757812 310.570312 C 294.640625 310.570312 294.546875 310.664062 294.546875 310.78125 C 294.546875 310.898438 294.640625 310.992188 294.757812 310.992188 C 294.875 310.992188 294.96875 310.898438 294.96875 310.78125 Z M 294.96875 310.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.484375 316.417969 C 295.484375 316.300781 295.390625 316.207031 295.273438 316.207031 C 295.15625 316.207031 295.0625 316.300781 295.0625 316.417969 C 295.0625 316.535156 295.15625 316.628906 295.273438 316.628906 C 295.390625 316.628906 295.484375 316.535156 295.484375 316.417969 Z M 295.484375 316.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.644531 313.800781 C 294.644531 313.683594 294.550781 313.589844 294.433594 313.589844 C 294.316406 313.589844 294.222656 313.683594 294.222656 313.800781 C 294.222656 313.917969 294.316406 314.011719 294.433594 314.011719 C 294.550781 314.011719 294.644531 313.917969 294.644531 313.800781 Z M 294.644531 313.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.363281 316.03125 C 293.363281 315.914062 293.269531 315.820312 293.152344 315.820312 C 293.035156 315.820312 292.941406 315.914062 292.941406 316.03125 C 292.941406 316.148438 293.035156 316.242188 293.152344 316.242188 C 293.269531 316.242188 293.363281 316.148438 293.363281 316.03125 Z M 293.363281 316.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.941406 313.320312 C 294.941406 313.203125 294.847656 313.109375 294.730469 313.109375 C 294.613281 313.109375 294.519531 313.203125 294.519531 313.320312 C 294.519531 313.4375 294.613281 313.53125 294.730469 313.53125 C 294.847656 313.53125 294.941406 313.4375 294.941406 313.320312 Z M 294.941406 313.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.835938 313.207031 C 295.835938 313.089844 295.742188 312.996094 295.625 312.996094 C 295.507812 312.996094 295.414062 313.089844 295.414062 313.207031 C 295.414062 313.324219 295.507812 313.417969 295.625 313.417969 C 295.742188 313.417969 295.835938 313.324219 295.835938 313.207031 Z M 295.835938 313.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.59375 310.367188 C 297.59375 310.25 297.5 310.15625 297.382812 310.15625 C 297.265625 310.15625 297.171875 310.25 297.171875 310.367188 C 297.171875 310.484375 297.265625 310.578125 297.382812 310.578125 C 297.5 310.578125 297.59375 310.484375 297.59375 310.367188 Z M 297.59375 310.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.09375 311.496094 C 297.09375 311.378906 297 311.285156 296.882812 311.285156 C 296.765625 311.285156 296.671875 311.378906 296.671875 311.496094 C 296.671875 311.613281 296.765625 311.707031 296.882812 311.707031 C 297 311.707031 297.09375 311.613281 297.09375 311.496094 Z M 297.09375 311.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.496094 309.183594 C 299.496094 309.066406 299.402344 308.972656 299.285156 308.972656 C 299.167969 308.972656 299.074219 309.066406 299.074219 309.183594 C 299.074219 309.300781 299.167969 309.394531 299.285156 309.394531 C 299.402344 309.394531 299.496094 309.300781 299.496094 309.183594 Z M 299.496094 309.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.710938 308.464844 C 300.710938 308.347656 300.617188 308.253906 300.5 308.253906 C 300.382812 308.253906 300.289062 308.347656 300.289062 308.464844 C 300.289062 308.582031 300.382812 308.675781 300.5 308.675781 C 300.617188 308.675781 300.710938 308.582031 300.710938 308.464844 Z M 300.710938 308.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.800781 305.433594 C 301.800781 305.316406 301.707031 305.222656 301.589844 305.222656 C 301.472656 305.222656 301.378906 305.316406 301.378906 305.433594 C 301.378906 305.550781 301.472656 305.644531 301.589844 305.644531 C 301.707031 305.644531 301.800781 305.550781 301.800781 305.433594 Z M 301.800781 305.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.613281 305.476562 C 302.613281 305.359375 302.519531 305.265625 302.402344 305.265625 C 302.285156 305.265625 302.191406 305.359375 302.191406 305.476562 C 302.191406 305.59375 302.285156 305.6875 302.402344 305.6875 C 302.519531 305.6875 302.613281 305.59375 302.613281 305.476562 Z M 302.613281 305.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.558594 303.046875 C 304.558594 302.929688 304.464844 302.835938 304.347656 302.835938 C 304.230469 302.835938 304.136719 302.929688 304.136719 303.046875 C 304.136719 303.164062 304.230469 303.257812 304.347656 303.257812 C 304.464844 303.257812 304.558594 303.164062 304.558594 303.046875 Z M 304.558594 303.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.402344 304.730469 C 303.402344 304.613281 303.308594 304.519531 303.191406 304.519531 C 303.074219 304.519531 302.980469 304.613281 302.980469 304.730469 C 302.980469 304.847656 303.074219 304.941406 303.191406 304.941406 C 303.308594 304.941406 303.402344 304.847656 303.402344 304.730469 Z M 303.402344 304.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.527344 306.652344 C 301.527344 306.535156 301.433594 306.441406 301.316406 306.441406 C 301.199219 306.441406 301.105469 306.535156 301.105469 306.652344 C 301.105469 306.769531 301.199219 306.863281 301.316406 306.863281 C 301.433594 306.863281 301.527344 306.769531 301.527344 306.652344 Z M 301.527344 306.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.9375 307.132812 C 299.9375 307.015625 299.84375 306.921875 299.726562 306.921875 C 299.609375 306.921875 299.515625 307.015625 299.515625 307.132812 C 299.515625 307.25 299.609375 307.34375 299.726562 307.34375 C 299.84375 307.34375 299.9375 307.25 299.9375 307.132812 Z M 299.9375 307.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.039062 309.4375 C 300.039062 309.320312 299.945312 309.226562 299.828125 309.226562 C 299.710938 309.226562 299.617188 309.320312 299.617188 309.4375 C 299.617188 309.554688 299.710938 309.648438 299.828125 309.648438 C 299.945312 309.648438 300.039062 309.554688 300.039062 309.4375 Z M 300.039062 309.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.097656 310.539062 C 302.097656 310.421875 302.003906 310.328125 301.886719 310.328125 C 301.769531 310.328125 301.675781 310.421875 301.675781 310.539062 C 301.675781 310.65625 301.769531 310.75 301.886719 310.75 C 302.003906 310.75 302.097656 310.65625 302.097656 310.539062 Z M 302.097656 310.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.53125 307.398438 C 299.53125 307.28125 299.4375 307.1875 299.320312 307.1875 C 299.203125 307.1875 299.109375 307.28125 299.109375 307.398438 C 299.109375 307.515625 299.203125 307.609375 299.320312 307.609375 C 299.4375 307.609375 299.53125 307.515625 299.53125 307.398438 Z M 299.53125 307.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.101562 303.519531 C 303.101562 303.402344 303.007812 303.308594 302.890625 303.308594 C 302.773438 303.308594 302.679688 303.402344 302.679688 303.519531 C 302.679688 303.636719 302.773438 303.730469 302.890625 303.730469 C 303.007812 303.730469 303.101562 303.636719 303.101562 303.519531 Z M 303.101562 303.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.316406 300.273438 C 302.316406 300.15625 302.222656 300.0625 302.105469 300.0625 C 301.988281 300.0625 301.894531 300.15625 301.894531 300.273438 C 301.894531 300.390625 301.988281 300.484375 302.105469 300.484375 C 302.222656 300.484375 302.316406 300.390625 302.316406 300.273438 Z M 302.316406 300.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.457031 296.484375 C 301.457031 296.367188 301.363281 296.273438 301.246094 296.273438 C 301.128906 296.273438 301.035156 296.367188 301.035156 296.484375 C 301.035156 296.601562 301.128906 296.695312 301.246094 296.695312 C 301.363281 296.695312 301.457031 296.601562 301.457031 296.484375 Z M 301.457031 296.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.714844 296.855469 C 303.714844 296.738281 303.621094 296.644531 303.503906 296.644531 C 303.386719 296.644531 303.292969 296.738281 303.292969 296.855469 C 303.292969 296.972656 303.386719 297.066406 303.503906 297.066406 C 303.621094 297.066406 303.714844 296.972656 303.714844 296.855469 Z M 303.714844 296.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.117188 296.382812 C 300.117188 296.265625 300.023438 296.171875 299.90625 296.171875 C 299.789062 296.171875 299.695312 296.265625 299.695312 296.382812 C 299.695312 296.5 299.789062 296.59375 299.90625 296.59375 C 300.023438 296.59375 300.117188 296.5 300.117188 296.382812 Z M 300.117188 296.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.007812 294.191406 C 301.007812 294.074219 300.914062 293.980469 300.796875 293.980469 C 300.679688 293.980469 300.585938 294.074219 300.585938 294.191406 C 300.585938 294.308594 300.679688 294.402344 300.796875 294.402344 C 300.914062 294.402344 301.007812 294.308594 301.007812 294.191406 Z M 301.007812 294.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.4375 296.238281 C 302.4375 296.121094 302.34375 296.027344 302.226562 296.027344 C 302.109375 296.027344 302.015625 296.121094 302.015625 296.238281 C 302.015625 296.355469 302.109375 296.449219 302.226562 296.449219 C 302.34375 296.449219 302.4375 296.355469 302.4375 296.238281 Z M 302.4375 296.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.339844 294.890625 C 300.339844 294.773438 300.246094 294.679688 300.128906 294.679688 C 300.011719 294.679688 299.917969 294.773438 299.917969 294.890625 C 299.917969 295.007812 300.011719 295.101562 300.128906 295.101562 C 300.246094 295.101562 300.339844 295.007812 300.339844 294.890625 Z M 300.339844 294.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.867188 298.253906 C 299.867188 298.136719 299.773438 298.042969 299.65625 298.042969 C 299.539062 298.042969 299.445312 298.136719 299.445312 298.253906 C 299.445312 298.371094 299.539062 298.464844 299.65625 298.464844 C 299.773438 298.464844 299.867188 298.371094 299.867188 298.253906 Z M 299.867188 298.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.285156 297.28125 C 303.285156 297.164062 303.191406 297.070312 303.074219 297.070312 C 302.957031 297.070312 302.863281 297.164062 302.863281 297.28125 C 302.863281 297.398438 302.957031 297.492188 303.074219 297.492188 C 303.191406 297.492188 303.285156 297.398438 303.285156 297.28125 Z M 303.285156 297.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.261719 296.996094 C 303.261719 296.878906 303.167969 296.785156 303.050781 296.785156 C 302.933594 296.785156 302.839844 296.878906 302.839844 296.996094 C 302.839844 297.113281 302.933594 297.207031 303.050781 297.207031 C 303.167969 297.207031 303.261719 297.113281 303.261719 296.996094 Z M 303.261719 296.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.558594 296.386719 C 305.558594 296.269531 305.464844 296.175781 305.347656 296.175781 C 305.230469 296.175781 305.136719 296.269531 305.136719 296.386719 C 305.136719 296.503906 305.230469 296.597656 305.347656 296.597656 C 305.464844 296.597656 305.558594 296.503906 305.558594 296.386719 Z M 305.558594 296.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.011719 298.332031 C 307.011719 298.214844 306.917969 298.121094 306.800781 298.121094 C 306.683594 298.121094 306.589844 298.214844 306.589844 298.332031 C 306.589844 298.449219 306.683594 298.542969 306.800781 298.542969 C 306.917969 298.542969 307.011719 298.449219 307.011719 298.332031 Z M 307.011719 298.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.410156 297.675781 C 308.410156 297.558594 308.316406 297.464844 308.199219 297.464844 C 308.082031 297.464844 307.988281 297.558594 307.988281 297.675781 C 307.988281 297.792969 308.082031 297.886719 308.199219 297.886719 C 308.316406 297.886719 308.410156 297.792969 308.410156 297.675781 Z M 308.410156 297.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.855469 297.148438 C 307.855469 297.03125 307.761719 296.9375 307.644531 296.9375 C 307.527344 296.9375 307.433594 297.03125 307.433594 297.148438 C 307.433594 297.265625 307.527344 297.359375 307.644531 297.359375 C 307.761719 297.359375 307.855469 297.265625 307.855469 297.148438 Z M 307.855469 297.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.519531 295.917969 C 307.519531 295.800781 307.425781 295.707031 307.308594 295.707031 C 307.191406 295.707031 307.097656 295.800781 307.097656 295.917969 C 307.097656 296.035156 307.191406 296.128906 307.308594 296.128906 C 307.425781 296.128906 307.519531 296.035156 307.519531 295.917969 Z M 307.519531 295.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.789062 296.261719 C 307.789062 296.144531 307.695312 296.050781 307.578125 296.050781 C 307.460938 296.050781 307.367188 296.144531 307.367188 296.261719 C 307.367188 296.378906 307.460938 296.472656 307.578125 296.472656 C 307.695312 296.472656 307.789062 296.378906 307.789062 296.261719 Z M 307.789062 296.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.476562 295.855469 C 306.476562 295.738281 306.382812 295.644531 306.265625 295.644531 C 306.148438 295.644531 306.054688 295.738281 306.054688 295.855469 C 306.054688 295.972656 306.148438 296.066406 306.265625 296.066406 C 306.382812 296.066406 306.476562 295.972656 306.476562 295.855469 Z M 306.476562 295.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.207031 296.070312 C 307.207031 295.953125 307.113281 295.859375 306.996094 295.859375 C 306.878906 295.859375 306.785156 295.953125 306.785156 296.070312 C 306.785156 296.1875 306.878906 296.28125 306.996094 296.28125 C 307.113281 296.28125 307.207031 296.1875 307.207031 296.070312 Z M 307.207031 296.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.460938 293.21875 C 308.460938 293.101562 308.367188 293.007812 308.25 293.007812 C 308.132812 293.007812 308.039062 293.101562 308.039062 293.21875 C 308.039062 293.335938 308.132812 293.429688 308.25 293.429688 C 308.367188 293.429688 308.460938 293.335938 308.460938 293.21875 Z M 308.460938 293.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.074219 293.074219 C 307.074219 292.957031 306.980469 292.863281 306.863281 292.863281 C 306.746094 292.863281 306.652344 292.957031 306.652344 293.074219 C 306.652344 293.191406 306.746094 293.285156 306.863281 293.285156 C 306.980469 293.285156 307.074219 293.191406 307.074219 293.074219 Z M 307.074219 293.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.914062 292.148438 C 306.914062 292.03125 306.820312 291.9375 306.703125 291.9375 C 306.585938 291.9375 306.492188 292.03125 306.492188 292.148438 C 306.492188 292.265625 306.585938 292.359375 306.703125 292.359375 C 306.820312 292.359375 306.914062 292.265625 306.914062 292.148438 Z M 306.914062 292.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.464844 296.03125 C 304.464844 295.914062 304.371094 295.820312 304.253906 295.820312 C 304.136719 295.820312 304.042969 295.914062 304.042969 296.03125 C 304.042969 296.148438 304.136719 296.242188 304.253906 296.242188 C 304.371094 296.242188 304.464844 296.148438 304.464844 296.03125 Z M 304.464844 296.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.082031 295.066406 C 304.082031 294.949219 303.988281 294.855469 303.871094 294.855469 C 303.753906 294.855469 303.660156 294.949219 303.660156 295.066406 C 303.660156 295.183594 303.753906 295.277344 303.871094 295.277344 C 303.988281 295.277344 304.082031 295.183594 304.082031 295.066406 Z M 304.082031 295.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.90625 294.066406 C 303.90625 293.949219 303.8125 293.855469 303.695312 293.855469 C 303.578125 293.855469 303.484375 293.949219 303.484375 294.066406 C 303.484375 294.183594 303.578125 294.277344 303.695312 294.277344 C 303.8125 294.277344 303.90625 294.183594 303.90625 294.066406 Z M 303.90625 294.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.878906 292.398438 C 306.878906 292.28125 306.785156 292.1875 306.667969 292.1875 C 306.550781 292.1875 306.457031 292.28125 306.457031 292.398438 C 306.457031 292.515625 306.550781 292.609375 306.667969 292.609375 C 306.785156 292.609375 306.878906 292.515625 306.878906 292.398438 Z M 306.878906 292.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.179688 290.734375 C 309.179688 290.617188 309.085938 290.523438 308.96875 290.523438 C 308.851562 290.523438 308.757812 290.617188 308.757812 290.734375 C 308.757812 290.851562 308.851562 290.945312 308.96875 290.945312 C 309.085938 290.945312 309.179688 290.851562 309.179688 290.734375 Z M 309.179688 290.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.367188 291.429688 C 310.367188 291.3125 310.273438 291.21875 310.15625 291.21875 C 310.039062 291.21875 309.945312 291.3125 309.945312 291.429688 C 309.945312 291.546875 310.039062 291.640625 310.15625 291.640625 C 310.273438 291.640625 310.367188 291.546875 310.367188 291.429688 Z M 310.367188 291.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.894531 291.21875 C 308.894531 291.101562 308.800781 291.007812 308.683594 291.007812 C 308.566406 291.007812 308.472656 291.101562 308.472656 291.21875 C 308.472656 291.335938 308.566406 291.429688 308.683594 291.429688 C 308.800781 291.429688 308.894531 291.335938 308.894531 291.21875 Z M 308.894531 291.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.4375 293.636719 C 309.4375 293.519531 309.34375 293.425781 309.226562 293.425781 C 309.109375 293.425781 309.015625 293.519531 309.015625 293.636719 C 309.015625 293.753906 309.109375 293.847656 309.226562 293.847656 C 309.34375 293.847656 309.4375 293.753906 309.4375 293.636719 Z M 309.4375 293.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.957031 294.726562 C 307.957031 294.609375 307.863281 294.515625 307.746094 294.515625 C 307.628906 294.515625 307.535156 294.609375 307.535156 294.726562 C 307.535156 294.84375 307.628906 294.9375 307.746094 294.9375 C 307.863281 294.9375 307.957031 294.84375 307.957031 294.726562 Z M 307.957031 294.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.03125 294.464844 C 310.03125 294.347656 309.9375 294.253906 309.820312 294.253906 C 309.703125 294.253906 309.609375 294.347656 309.609375 294.464844 C 309.609375 294.582031 309.703125 294.675781 309.820312 294.675781 C 309.9375 294.675781 310.03125 294.582031 310.03125 294.464844 Z M 310.03125 294.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.417969 296.515625 C 310.417969 296.398438 310.324219 296.304688 310.207031 296.304688 C 310.089844 296.304688 309.996094 296.398438 309.996094 296.515625 C 309.996094 296.632812 310.089844 296.726562 310.207031 296.726562 C 310.324219 296.726562 310.417969 296.632812 310.417969 296.515625 Z M 310.417969 296.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.988281 298.316406 C 308.988281 298.199219 308.894531 298.105469 308.777344 298.105469 C 308.660156 298.105469 308.566406 298.199219 308.566406 298.316406 C 308.566406 298.433594 308.660156 298.527344 308.777344 298.527344 C 308.894531 298.527344 308.988281 298.433594 308.988281 298.316406 Z M 308.988281 298.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.03125 297.265625 C 308.03125 297.148438 307.9375 297.054688 307.820312 297.054688 C 307.703125 297.054688 307.609375 297.148438 307.609375 297.265625 C 307.609375 297.382812 307.703125 297.476562 307.820312 297.476562 C 307.9375 297.476562 308.03125 297.382812 308.03125 297.265625 Z M 308.03125 297.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.921875 295.703125 C 307.921875 295.585938 307.828125 295.492188 307.710938 295.492188 C 307.59375 295.492188 307.5 295.585938 307.5 295.703125 C 307.5 295.820312 307.59375 295.914062 307.710938 295.914062 C 307.828125 295.914062 307.921875 295.820312 307.921875 295.703125 Z M 307.921875 295.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.023438 296.003906 C 307.023438 295.886719 306.929688 295.792969 306.8125 295.792969 C 306.695312 295.792969 306.601562 295.886719 306.601562 296.003906 C 306.601562 296.121094 306.695312 296.214844 306.8125 296.214844 C 306.929688 296.214844 307.023438 296.121094 307.023438 296.003906 Z M 307.023438 296.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.730469 296.847656 C 309.730469 296.730469 309.636719 296.636719 309.519531 296.636719 C 309.402344 296.636719 309.308594 296.730469 309.308594 296.847656 C 309.308594 296.964844 309.402344 297.058594 309.519531 297.058594 C 309.636719 297.058594 309.730469 296.964844 309.730469 296.847656 Z M 309.730469 296.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.699219 292.554688 C 307.699219 292.4375 307.605469 292.34375 307.488281 292.34375 C 307.371094 292.34375 307.277344 292.4375 307.277344 292.554688 C 307.277344 292.671875 307.371094 292.765625 307.488281 292.765625 C 307.605469 292.765625 307.699219 292.671875 307.699219 292.554688 Z M 307.699219 292.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.441406 292.574219 C 307.441406 292.457031 307.347656 292.363281 307.230469 292.363281 C 307.113281 292.363281 307.019531 292.457031 307.019531 292.574219 C 307.019531 292.691406 307.113281 292.785156 307.230469 292.785156 C 307.347656 292.785156 307.441406 292.691406 307.441406 292.574219 Z M 307.441406 292.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.621094 294.113281 C 307.621094 293.996094 307.527344 293.902344 307.410156 293.902344 C 307.292969 293.902344 307.199219 293.996094 307.199219 294.113281 C 307.199219 294.230469 307.292969 294.324219 307.410156 294.324219 C 307.527344 294.324219 307.621094 294.230469 307.621094 294.113281 Z M 307.621094 294.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.996094 296.007812 C 310.996094 295.890625 310.902344 295.796875 310.785156 295.796875 C 310.667969 295.796875 310.574219 295.890625 310.574219 296.007812 C 310.574219 296.125 310.667969 296.21875 310.785156 296.21875 C 310.902344 296.21875 310.996094 296.125 310.996094 296.007812 Z M 310.996094 296.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.605469 295.46875 C 309.605469 295.351562 309.511719 295.257812 309.394531 295.257812 C 309.277344 295.257812 309.183594 295.351562 309.183594 295.46875 C 309.183594 295.585938 309.277344 295.679688 309.394531 295.679688 C 309.511719 295.679688 309.605469 295.585938 309.605469 295.46875 Z M 309.605469 295.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.527344 293.808594 C 309.527344 293.691406 309.433594 293.597656 309.316406 293.597656 C 309.199219 293.597656 309.105469 293.691406 309.105469 293.808594 C 309.105469 293.925781 309.199219 294.019531 309.316406 294.019531 C 309.433594 294.019531 309.527344 293.925781 309.527344 293.808594 Z M 309.527344 293.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.492188 291.722656 C 310.492188 291.605469 310.398438 291.511719 310.28125 291.511719 C 310.164062 291.511719 310.070312 291.605469 310.070312 291.722656 C 310.070312 291.839844 310.164062 291.933594 310.28125 291.933594 C 310.398438 291.933594 310.492188 291.839844 310.492188 291.722656 Z M 310.492188 291.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.972656 294.171875 C 310.972656 294.054688 310.878906 293.960938 310.761719 293.960938 C 310.644531 293.960938 310.550781 294.054688 310.550781 294.171875 C 310.550781 294.289062 310.644531 294.382812 310.761719 294.382812 C 310.878906 294.382812 310.972656 294.289062 310.972656 294.171875 Z M 310.972656 294.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.796875 292.523438 C 311.796875 292.40625 311.703125 292.3125 311.585938 292.3125 C 311.46875 292.3125 311.375 292.40625 311.375 292.523438 C 311.375 292.640625 311.46875 292.734375 311.585938 292.734375 C 311.703125 292.734375 311.796875 292.640625 311.796875 292.523438 Z M 311.796875 292.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.535156 291.382812 C 311.535156 291.265625 311.441406 291.171875 311.324219 291.171875 C 311.207031 291.171875 311.113281 291.265625 311.113281 291.382812 C 311.113281 291.5 311.207031 291.59375 311.324219 291.59375 C 311.441406 291.59375 311.535156 291.5 311.535156 291.382812 Z M 311.535156 291.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.976562 292.585938 C 309.976562 292.46875 309.882812 292.375 309.765625 292.375 C 309.648438 292.375 309.554688 292.46875 309.554688 292.585938 C 309.554688 292.703125 309.648438 292.796875 309.765625 292.796875 C 309.882812 292.796875 309.976562 292.703125 309.976562 292.585938 Z M 309.976562 292.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.554688 292.589844 C 308.554688 292.472656 308.460938 292.378906 308.34375 292.378906 C 308.226562 292.378906 308.132812 292.472656 308.132812 292.589844 C 308.132812 292.707031 308.226562 292.800781 308.34375 292.800781 C 308.460938 292.800781 308.554688 292.707031 308.554688 292.589844 Z M 308.554688 292.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.9375 291.734375 C 310.9375 291.617188 310.84375 291.523438 310.726562 291.523438 C 310.609375 291.523438 310.515625 291.617188 310.515625 291.734375 C 310.515625 291.851562 310.609375 291.945312 310.726562 291.945312 C 310.84375 291.945312 310.9375 291.851562 310.9375 291.734375 Z M 310.9375 291.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.945312 290.652344 C 312.945312 290.535156 312.851562 290.441406 312.734375 290.441406 C 312.617188 290.441406 312.523438 290.535156 312.523438 290.652344 C 312.523438 290.769531 312.617188 290.863281 312.734375 290.863281 C 312.851562 290.863281 312.945312 290.769531 312.945312 290.652344 Z M 312.945312 290.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.90625 292.320312 C 311.90625 292.203125 311.8125 292.109375 311.695312 292.109375 C 311.578125 292.109375 311.484375 292.203125 311.484375 292.320312 C 311.484375 292.4375 311.578125 292.53125 311.695312 292.53125 C 311.8125 292.53125 311.90625 292.4375 311.90625 292.320312 Z M 311.90625 292.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.980469 289.046875 C 309.980469 288.929688 309.886719 288.835938 309.769531 288.835938 C 309.652344 288.835938 309.558594 288.929688 309.558594 289.046875 C 309.558594 289.164062 309.652344 289.257812 309.769531 289.257812 C 309.886719 289.257812 309.980469 289.164062 309.980469 289.046875 Z M 309.980469 289.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.800781 287.285156 C 306.800781 287.167969 306.707031 287.074219 306.589844 287.074219 C 306.472656 287.074219 306.378906 287.167969 306.378906 287.285156 C 306.378906 287.402344 306.472656 287.496094 306.589844 287.496094 C 306.707031 287.496094 306.800781 287.402344 306.800781 287.285156 Z M 306.800781 287.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.050781 282.914062 C 308.050781 282.796875 307.957031 282.703125 307.839844 282.703125 C 307.722656 282.703125 307.628906 282.796875 307.628906 282.914062 C 307.628906 283.03125 307.722656 283.125 307.839844 283.125 C 307.957031 283.125 308.050781 283.03125 308.050781 282.914062 Z M 308.050781 282.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.566406 281.574219 C 308.566406 281.457031 308.472656 281.363281 308.355469 281.363281 C 308.238281 281.363281 308.144531 281.457031 308.144531 281.574219 C 308.144531 281.691406 308.238281 281.785156 308.355469 281.785156 C 308.472656 281.785156 308.566406 281.691406 308.566406 281.574219 Z M 308.566406 281.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.222656 282.25 C 308.222656 282.132812 308.128906 282.039062 308.011719 282.039062 C 307.894531 282.039062 307.800781 282.132812 307.800781 282.25 C 307.800781 282.367188 307.894531 282.460938 308.011719 282.460938 C 308.128906 282.460938 308.222656 282.367188 308.222656 282.25 Z M 308.222656 282.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.652344 284.503906 C 307.652344 284.386719 307.558594 284.292969 307.441406 284.292969 C 307.324219 284.292969 307.230469 284.386719 307.230469 284.503906 C 307.230469 284.621094 307.324219 284.714844 307.441406 284.714844 C 307.558594 284.714844 307.652344 284.621094 307.652344 284.503906 Z M 307.652344 284.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.691406 284.851562 C 309.691406 284.734375 309.597656 284.640625 309.480469 284.640625 C 309.363281 284.640625 309.269531 284.734375 309.269531 284.851562 C 309.269531 284.96875 309.363281 285.0625 309.480469 285.0625 C 309.597656 285.0625 309.691406 284.96875 309.691406 284.851562 Z M 309.691406 284.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.375 284.773438 C 308.375 284.65625 308.28125 284.5625 308.164062 284.5625 C 308.046875 284.5625 307.953125 284.65625 307.953125 284.773438 C 307.953125 284.890625 308.046875 284.984375 308.164062 284.984375 C 308.28125 284.984375 308.375 284.890625 308.375 284.773438 Z M 308.375 284.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.484375 289.3125 C 305.484375 289.195312 305.390625 289.101562 305.273438 289.101562 C 305.15625 289.101562 305.0625 289.195312 305.0625 289.3125 C 305.0625 289.429688 305.15625 289.523438 305.273438 289.523438 C 305.390625 289.523438 305.484375 289.429688 305.484375 289.3125 Z M 305.484375 289.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.265625 292.570312 C 306.265625 292.453125 306.171875 292.359375 306.054688 292.359375 C 305.9375 292.359375 305.84375 292.453125 305.84375 292.570312 C 305.84375 292.6875 305.9375 292.78125 306.054688 292.78125 C 306.171875 292.78125 306.265625 292.6875 306.265625 292.570312 Z M 306.265625 292.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.789062 290.585938 C 307.789062 290.46875 307.695312 290.375 307.578125 290.375 C 307.460938 290.375 307.367188 290.46875 307.367188 290.585938 C 307.367188 290.703125 307.460938 290.796875 307.578125 290.796875 C 307.695312 290.796875 307.789062 290.703125 307.789062 290.585938 Z M 307.789062 290.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.132812 286.722656 C 306.132812 286.605469 306.039062 286.511719 305.921875 286.511719 C 305.804688 286.511719 305.710938 286.605469 305.710938 286.722656 C 305.710938 286.839844 305.804688 286.933594 305.921875 286.933594 C 306.039062 286.933594 306.132812 286.839844 306.132812 286.722656 Z M 306.132812 286.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.65625 285.792969 C 303.65625 285.675781 303.5625 285.582031 303.445312 285.582031 C 303.328125 285.582031 303.234375 285.675781 303.234375 285.792969 C 303.234375 285.910156 303.328125 286.003906 303.445312 286.003906 C 303.5625 286.003906 303.65625 285.910156 303.65625 285.792969 Z M 303.65625 285.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.945312 288.066406 C 302.945312 287.949219 302.851562 287.855469 302.734375 287.855469 C 302.617188 287.855469 302.523438 287.949219 302.523438 288.066406 C 302.523438 288.183594 302.617188 288.277344 302.734375 288.277344 C 302.851562 288.277344 302.945312 288.183594 302.945312 288.066406 Z M 302.945312 288.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.667969 287.65625 C 305.667969 287.539062 305.574219 287.445312 305.457031 287.445312 C 305.339844 287.445312 305.246094 287.539062 305.246094 287.65625 C 305.246094 287.773438 305.339844 287.867188 305.457031 287.867188 C 305.574219 287.867188 305.667969 287.773438 305.667969 287.65625 Z M 305.667969 287.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.25 285.773438 C 309.25 285.65625 309.15625 285.5625 309.039062 285.5625 C 308.921875 285.5625 308.828125 285.65625 308.828125 285.773438 C 308.828125 285.890625 308.921875 285.984375 309.039062 285.984375 C 309.15625 285.984375 309.25 285.890625 309.25 285.773438 Z M 309.25 285.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.226562 284.082031 C 308.226562 283.964844 308.132812 283.871094 308.015625 283.871094 C 307.898438 283.871094 307.804688 283.964844 307.804688 284.082031 C 307.804688 284.199219 307.898438 284.292969 308.015625 284.292969 C 308.132812 284.292969 308.226562 284.199219 308.226562 284.082031 Z M 308.226562 284.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.542969 286.429688 C 310.542969 286.3125 310.449219 286.21875 310.332031 286.21875 C 310.214844 286.21875 310.121094 286.3125 310.121094 286.429688 C 310.121094 286.546875 310.214844 286.640625 310.332031 286.640625 C 310.449219 286.640625 310.542969 286.546875 310.542969 286.429688 Z M 310.542969 286.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.609375 288.003906 C 308.609375 287.886719 308.515625 287.792969 308.398438 287.792969 C 308.28125 287.792969 308.1875 287.886719 308.1875 288.003906 C 308.1875 288.121094 308.28125 288.214844 308.398438 288.214844 C 308.515625 288.214844 308.609375 288.121094 308.609375 288.003906 Z M 308.609375 288.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.535156 286.851562 C 308.535156 286.734375 308.441406 286.640625 308.324219 286.640625 C 308.207031 286.640625 308.113281 286.734375 308.113281 286.851562 C 308.113281 286.96875 308.207031 287.0625 308.324219 287.0625 C 308.441406 287.0625 308.535156 286.96875 308.535156 286.851562 Z M 308.535156 286.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.78125 287.542969 C 306.78125 287.425781 306.6875 287.332031 306.570312 287.332031 C 306.453125 287.332031 306.359375 287.425781 306.359375 287.542969 C 306.359375 287.660156 306.453125 287.753906 306.570312 287.753906 C 306.6875 287.753906 306.78125 287.660156 306.78125 287.542969 Z M 306.78125 287.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.609375 289.652344 C 306.609375 289.535156 306.515625 289.441406 306.398438 289.441406 C 306.28125 289.441406 306.1875 289.535156 306.1875 289.652344 C 306.1875 289.769531 306.28125 289.863281 306.398438 289.863281 C 306.515625 289.863281 306.609375 289.769531 306.609375 289.652344 Z M 306.609375 289.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.390625 290.808594 C 304.390625 290.691406 304.296875 290.597656 304.179688 290.597656 C 304.0625 290.597656 303.96875 290.691406 303.96875 290.808594 C 303.96875 290.925781 304.0625 291.019531 304.179688 291.019531 C 304.296875 291.019531 304.390625 290.925781 304.390625 290.808594 Z M 304.390625 290.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.5 294.105469 C 310.5 293.988281 310.40625 293.894531 310.289062 293.894531 C 310.171875 293.894531 310.078125 293.988281 310.078125 294.105469 C 310.078125 294.222656 310.171875 294.316406 310.289062 294.316406 C 310.40625 294.316406 310.5 294.222656 310.5 294.105469 Z M 310.5 294.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.898438 292.539062 C 311.898438 292.421875 311.804688 292.328125 311.6875 292.328125 C 311.570312 292.328125 311.476562 292.421875 311.476562 292.539062 C 311.476562 292.65625 311.570312 292.75 311.6875 292.75 C 311.804688 292.75 311.898438 292.65625 311.898438 292.539062 Z M 311.898438 292.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.871094 297.671875 C 310.871094 297.554688 310.777344 297.460938 310.660156 297.460938 C 310.542969 297.460938 310.449219 297.554688 310.449219 297.671875 C 310.449219 297.789062 310.542969 297.882812 310.660156 297.882812 C 310.777344 297.882812 310.871094 297.789062 310.871094 297.671875 Z M 310.871094 297.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.574219 300.425781 C 313.574219 300.308594 313.480469 300.214844 313.363281 300.214844 C 313.246094 300.214844 313.152344 300.308594 313.152344 300.425781 C 313.152344 300.542969 313.246094 300.636719 313.363281 300.636719 C 313.480469 300.636719 313.574219 300.542969 313.574219 300.425781 Z M 313.574219 300.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.1875 299.804688 C 314.1875 299.6875 314.09375 299.59375 313.976562 299.59375 C 313.859375 299.59375 313.765625 299.6875 313.765625 299.804688 C 313.765625 299.921875 313.859375 300.015625 313.976562 300.015625 C 314.09375 300.015625 314.1875 299.921875 314.1875 299.804688 Z M 314.1875 299.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.042969 297.921875 C 317.042969 297.804688 316.949219 297.710938 316.832031 297.710938 C 316.714844 297.710938 316.621094 297.804688 316.621094 297.921875 C 316.621094 298.039062 316.714844 298.132812 316.832031 298.132812 C 316.949219 298.132812 317.042969 298.039062 317.042969 297.921875 Z M 317.042969 297.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.800781 300.613281 C 315.800781 300.496094 315.707031 300.402344 315.589844 300.402344 C 315.472656 300.402344 315.378906 300.496094 315.378906 300.613281 C 315.378906 300.730469 315.472656 300.824219 315.589844 300.824219 C 315.707031 300.824219 315.800781 300.730469 315.800781 300.613281 Z M 315.800781 300.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.851562 303.3125 C 314.851562 303.195312 314.757812 303.101562 314.640625 303.101562 C 314.523438 303.101562 314.429688 303.195312 314.429688 303.3125 C 314.429688 303.429688 314.523438 303.523438 314.640625 303.523438 C 314.757812 303.523438 314.851562 303.429688 314.851562 303.3125 Z M 314.851562 303.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.722656 302.40625 C 315.722656 302.289062 315.628906 302.195312 315.511719 302.195312 C 315.394531 302.195312 315.300781 302.289062 315.300781 302.40625 C 315.300781 302.523438 315.394531 302.617188 315.511719 302.617188 C 315.628906 302.617188 315.722656 302.523438 315.722656 302.40625 Z M 315.722656 302.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.085938 301.582031 C 315.085938 301.464844 314.992188 301.371094 314.875 301.371094 C 314.757812 301.371094 314.664062 301.464844 314.664062 301.582031 C 314.664062 301.699219 314.757812 301.792969 314.875 301.792969 C 314.992188 301.792969 315.085938 301.699219 315.085938 301.582031 Z M 315.085938 301.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317 300.113281 C 317 299.996094 316.90625 299.902344 316.789062 299.902344 C 316.671875 299.902344 316.578125 299.996094 316.578125 300.113281 C 316.578125 300.230469 316.671875 300.324219 316.789062 300.324219 C 316.90625 300.324219 317 300.230469 317 300.113281 Z M 317 300.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.816406 301.261719 C 313.816406 301.144531 313.722656 301.050781 313.605469 301.050781 C 313.488281 301.050781 313.394531 301.144531 313.394531 301.261719 C 313.394531 301.378906 313.488281 301.472656 313.605469 301.472656 C 313.722656 301.472656 313.816406 301.378906 313.816406 301.261719 Z M 313.816406 301.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.410156 301.929688 C 313.410156 301.8125 313.316406 301.71875 313.199219 301.71875 C 313.082031 301.71875 312.988281 301.8125 312.988281 301.929688 C 312.988281 302.046875 313.082031 302.140625 313.199219 302.140625 C 313.316406 302.140625 313.410156 302.046875 313.410156 301.929688 Z M 313.410156 301.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.316406 303.171875 C 311.316406 303.054688 311.222656 302.960938 311.105469 302.960938 C 310.988281 302.960938 310.894531 303.054688 310.894531 303.171875 C 310.894531 303.289062 310.988281 303.382812 311.105469 303.382812 C 311.222656 303.382812 311.316406 303.289062 311.316406 303.171875 Z M 311.316406 303.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.261719 305.359375 C 315.261719 305.242188 315.167969 305.148438 315.050781 305.148438 C 314.933594 305.148438 314.839844 305.242188 314.839844 305.359375 C 314.839844 305.476562 314.933594 305.570312 315.050781 305.570312 C 315.167969 305.570312 315.261719 305.476562 315.261719 305.359375 Z M 315.261719 305.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.71875 301.441406 C 313.71875 301.324219 313.625 301.230469 313.507812 301.230469 C 313.390625 301.230469 313.296875 301.324219 313.296875 301.441406 C 313.296875 301.558594 313.390625 301.652344 313.507812 301.652344 C 313.625 301.652344 313.71875 301.558594 313.71875 301.441406 Z M 313.71875 301.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.566406 301.421875 C 314.566406 301.304688 314.472656 301.210938 314.355469 301.210938 C 314.238281 301.210938 314.144531 301.304688 314.144531 301.421875 C 314.144531 301.539062 314.238281 301.632812 314.355469 301.632812 C 314.472656 301.632812 314.566406 301.539062 314.566406 301.421875 Z M 314.566406 301.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.660156 298.203125 C 313.660156 298.085938 313.566406 297.992188 313.449219 297.992188 C 313.332031 297.992188 313.238281 298.085938 313.238281 298.203125 C 313.238281 298.320312 313.332031 298.414062 313.449219 298.414062 C 313.566406 298.414062 313.660156 298.320312 313.660156 298.203125 Z M 313.660156 298.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.140625 298.761719 C 314.140625 298.644531 314.046875 298.550781 313.929688 298.550781 C 313.8125 298.550781 313.71875 298.644531 313.71875 298.761719 C 313.71875 298.878906 313.8125 298.972656 313.929688 298.972656 C 314.046875 298.972656 314.140625 298.878906 314.140625 298.761719 Z M 314.140625 298.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.539062 303.460938 C 315.539062 303.34375 315.445312 303.25 315.328125 303.25 C 315.210938 303.25 315.117188 303.34375 315.117188 303.460938 C 315.117188 303.578125 315.210938 303.671875 315.328125 303.671875 C 315.445312 303.671875 315.539062 303.578125 315.539062 303.460938 Z M 315.539062 303.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.746094 301.402344 C 313.746094 301.285156 313.652344 301.191406 313.535156 301.191406 C 313.417969 301.191406 313.324219 301.285156 313.324219 301.402344 C 313.324219 301.519531 313.417969 301.613281 313.535156 301.613281 C 313.652344 301.613281 313.746094 301.519531 313.746094 301.402344 Z M 313.746094 301.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.71875 302.925781 C 313.71875 302.808594 313.625 302.714844 313.507812 302.714844 C 313.390625 302.714844 313.296875 302.808594 313.296875 302.925781 C 313.296875 303.042969 313.390625 303.136719 313.507812 303.136719 C 313.625 303.136719 313.71875 303.042969 313.71875 302.925781 Z M 313.71875 302.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.199219 301.582031 C 313.199219 301.464844 313.105469 301.371094 312.988281 301.371094 C 312.871094 301.371094 312.777344 301.464844 312.777344 301.582031 C 312.777344 301.699219 312.871094 301.792969 312.988281 301.792969 C 313.105469 301.792969 313.199219 301.699219 313.199219 301.582031 Z M 313.199219 301.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.476562 300.644531 C 315.476562 300.527344 315.382812 300.433594 315.265625 300.433594 C 315.148438 300.433594 315.054688 300.527344 315.054688 300.644531 C 315.054688 300.761719 315.148438 300.855469 315.265625 300.855469 C 315.382812 300.855469 315.476562 300.761719 315.476562 300.644531 Z M 315.476562 300.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.820312 304.507812 C 316.820312 304.390625 316.726562 304.296875 316.609375 304.296875 C 316.492188 304.296875 316.398438 304.390625 316.398438 304.507812 C 316.398438 304.625 316.492188 304.71875 316.609375 304.71875 C 316.726562 304.71875 316.820312 304.625 316.820312 304.507812 Z M 316.820312 304.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.09375 303.8125 C 315.09375 303.695312 315 303.601562 314.882812 303.601562 C 314.765625 303.601562 314.671875 303.695312 314.671875 303.8125 C 314.671875 303.929688 314.765625 304.023438 314.882812 304.023438 C 315 304.023438 315.09375 303.929688 315.09375 303.8125 Z M 315.09375 303.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.664062 304.785156 C 314.664062 304.667969 314.570312 304.574219 314.453125 304.574219 C 314.335938 304.574219 314.242188 304.667969 314.242188 304.785156 C 314.242188 304.902344 314.335938 304.996094 314.453125 304.996094 C 314.570312 304.996094 314.664062 304.902344 314.664062 304.785156 Z M 314.664062 304.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.957031 304.210938 C 316.957031 304.09375 316.863281 304 316.746094 304 C 316.628906 304 316.535156 304.09375 316.535156 304.210938 C 316.535156 304.328125 316.628906 304.421875 316.746094 304.421875 C 316.863281 304.421875 316.957031 304.328125 316.957031 304.210938 Z M 316.957031 304.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.394531 303.441406 C 316.394531 303.324219 316.300781 303.230469 316.183594 303.230469 C 316.066406 303.230469 315.972656 303.324219 315.972656 303.441406 C 315.972656 303.558594 316.066406 303.652344 316.183594 303.652344 C 316.300781 303.652344 316.394531 303.558594 316.394531 303.441406 Z M 316.394531 303.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.683594 304.875 C 316.683594 304.757812 316.589844 304.664062 316.472656 304.664062 C 316.355469 304.664062 316.261719 304.757812 316.261719 304.875 C 316.261719 304.992188 316.355469 305.085938 316.472656 305.085938 C 316.589844 305.085938 316.683594 304.992188 316.683594 304.875 Z M 316.683594 304.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.035156 303.46875 C 315.035156 303.351562 314.941406 303.257812 314.824219 303.257812 C 314.707031 303.257812 314.613281 303.351562 314.613281 303.46875 C 314.613281 303.585938 314.707031 303.679688 314.824219 303.679688 C 314.941406 303.679688 315.035156 303.585938 315.035156 303.46875 Z M 315.035156 303.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.960938 302.640625 C 315.960938 302.523438 315.867188 302.429688 315.75 302.429688 C 315.632812 302.429688 315.539062 302.523438 315.539062 302.640625 C 315.539062 302.757812 315.632812 302.851562 315.75 302.851562 C 315.867188 302.851562 315.960938 302.757812 315.960938 302.640625 Z M 315.960938 302.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.9375 303.144531 C 313.9375 303.027344 313.84375 302.933594 313.726562 302.933594 C 313.609375 302.933594 313.515625 303.027344 313.515625 303.144531 C 313.515625 303.261719 313.609375 303.355469 313.726562 303.355469 C 313.84375 303.355469 313.9375 303.261719 313.9375 303.144531 Z M 313.9375 303.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.691406 303.296875 C 312.691406 303.179688 312.597656 303.085938 312.480469 303.085938 C 312.363281 303.085938 312.269531 303.179688 312.269531 303.296875 C 312.269531 303.414062 312.363281 303.507812 312.480469 303.507812 C 312.597656 303.507812 312.691406 303.414062 312.691406 303.296875 Z M 312.691406 303.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.253906 305.902344 C 316.253906 305.785156 316.160156 305.691406 316.042969 305.691406 C 315.925781 305.691406 315.832031 305.785156 315.832031 305.902344 C 315.832031 306.019531 315.925781 306.113281 316.042969 306.113281 C 316.160156 306.113281 316.253906 306.019531 316.253906 305.902344 Z M 316.253906 305.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.75 307.28125 C 316.75 307.164062 316.65625 307.070312 316.539062 307.070312 C 316.421875 307.070312 316.328125 307.164062 316.328125 307.28125 C 316.328125 307.398438 316.421875 307.492188 316.539062 307.492188 C 316.65625 307.492188 316.75 307.398438 316.75 307.28125 Z M 316.75 307.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.015625 309.007812 C 315.015625 308.890625 314.921875 308.796875 314.804688 308.796875 C 314.6875 308.796875 314.59375 308.890625 314.59375 309.007812 C 314.59375 309.125 314.6875 309.21875 314.804688 309.21875 C 314.921875 309.21875 315.015625 309.125 315.015625 309.007812 Z M 315.015625 309.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.855469 308.730469 C 315.855469 308.613281 315.761719 308.519531 315.644531 308.519531 C 315.527344 308.519531 315.433594 308.613281 315.433594 308.730469 C 315.433594 308.847656 315.527344 308.941406 315.644531 308.941406 C 315.761719 308.941406 315.855469 308.847656 315.855469 308.730469 Z M 315.855469 308.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.652344 309.492188 C 317.652344 309.375 317.558594 309.28125 317.441406 309.28125 C 317.324219 309.28125 317.230469 309.375 317.230469 309.492188 C 317.230469 309.609375 317.324219 309.703125 317.441406 309.703125 C 317.558594 309.703125 317.652344 309.609375 317.652344 309.492188 Z M 317.652344 309.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.6875 308.957031 C 315.6875 308.839844 315.59375 308.746094 315.476562 308.746094 C 315.359375 308.746094 315.265625 308.839844 315.265625 308.957031 C 315.265625 309.074219 315.359375 309.167969 315.476562 309.167969 C 315.59375 309.167969 315.6875 309.074219 315.6875 308.957031 Z M 315.6875 308.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.769531 304.847656 C 317.769531 304.730469 317.675781 304.636719 317.558594 304.636719 C 317.441406 304.636719 317.347656 304.730469 317.347656 304.847656 C 317.347656 304.964844 317.441406 305.058594 317.558594 305.058594 C 317.675781 305.058594 317.769531 304.964844 317.769531 304.847656 Z M 317.769531 304.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 318.003906 302.566406 C 318.003906 302.449219 317.910156 302.355469 317.792969 302.355469 C 317.675781 302.355469 317.582031 302.449219 317.582031 302.566406 C 317.582031 302.683594 317.675781 302.777344 317.792969 302.777344 C 317.910156 302.777344 318.003906 302.683594 318.003906 302.566406 Z M 318.003906 302.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 319.855469 308.824219 C 319.855469 308.707031 319.761719 308.613281 319.644531 308.613281 C 319.527344 308.613281 319.433594 308.707031 319.433594 308.824219 C 319.433594 308.941406 319.527344 309.035156 319.644531 309.035156 C 319.761719 309.035156 319.855469 308.941406 319.855469 308.824219 Z M 319.855469 308.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.398438 310.582031 C 315.398438 310.464844 315.304688 310.371094 315.1875 310.371094 C 315.070312 310.371094 314.976562 310.464844 314.976562 310.582031 C 314.976562 310.699219 315.070312 310.792969 315.1875 310.792969 C 315.304688 310.792969 315.398438 310.699219 315.398438 310.582031 Z M 315.398438 310.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.085938 309.320312 C 314.085938 309.203125 313.992188 309.109375 313.875 309.109375 C 313.757812 309.109375 313.664062 309.203125 313.664062 309.320312 C 313.664062 309.4375 313.757812 309.53125 313.875 309.53125 C 313.992188 309.53125 314.085938 309.4375 314.085938 309.320312 Z M 314.085938 309.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.445312 309.140625 C 316.445312 309.023438 316.351562 308.929688 316.234375 308.929688 C 316.117188 308.929688 316.023438 309.023438 316.023438 309.140625 C 316.023438 309.257812 316.117188 309.351562 316.234375 309.351562 C 316.351562 309.351562 316.445312 309.257812 316.445312 309.140625 Z M 316.445312 309.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.367188 314.863281 C 315.367188 314.746094 315.273438 314.652344 315.15625 314.652344 C 315.039062 314.652344 314.945312 314.746094 314.945312 314.863281 C 314.945312 314.980469 315.039062 315.074219 315.15625 315.074219 C 315.273438 315.074219 315.367188 314.980469 315.367188 314.863281 Z M 315.367188 314.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.5625 314.839844 C 315.5625 314.722656 315.46875 314.628906 315.351562 314.628906 C 315.234375 314.628906 315.140625 314.722656 315.140625 314.839844 C 315.140625 314.957031 315.234375 315.050781 315.351562 315.050781 C 315.46875 315.050781 315.5625 314.957031 315.5625 314.839844 Z M 315.5625 314.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.125 315.558594 C 316.125 315.441406 316.03125 315.347656 315.914062 315.347656 C 315.796875 315.347656 315.703125 315.441406 315.703125 315.558594 C 315.703125 315.675781 315.796875 315.769531 315.914062 315.769531 C 316.03125 315.769531 316.125 315.675781 316.125 315.558594 Z M 316.125 315.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.328125 314.925781 C 317.328125 314.808594 317.234375 314.714844 317.117188 314.714844 C 317 314.714844 316.90625 314.808594 316.90625 314.925781 C 316.90625 315.042969 317 315.136719 317.117188 315.136719 C 317.234375 315.136719 317.328125 315.042969 317.328125 314.925781 Z M 317.328125 314.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 319.757812 315.605469 C 319.757812 315.488281 319.664062 315.394531 319.546875 315.394531 C 319.429688 315.394531 319.335938 315.488281 319.335938 315.605469 C 319.335938 315.722656 319.429688 315.816406 319.546875 315.816406 C 319.664062 315.816406 319.757812 315.722656 319.757812 315.605469 Z M 319.757812 315.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 320.964844 316.332031 C 320.964844 316.214844 320.871094 316.121094 320.753906 316.121094 C 320.636719 316.121094 320.542969 316.214844 320.542969 316.332031 C 320.542969 316.449219 320.636719 316.542969 320.753906 316.542969 C 320.871094 316.542969 320.964844 316.449219 320.964844 316.332031 Z M 320.964844 316.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.582031 318.792969 C 324.582031 318.675781 324.488281 318.582031 324.371094 318.582031 C 324.253906 318.582031 324.160156 318.675781 324.160156 318.792969 C 324.160156 318.910156 324.253906 319.003906 324.371094 319.003906 C 324.488281 319.003906 324.582031 318.910156 324.582031 318.792969 Z M 324.582031 318.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.820312 322.960938 C 325.820312 322.84375 325.726562 322.75 325.609375 322.75 C 325.492188 322.75 325.398438 322.84375 325.398438 322.960938 C 325.398438 323.078125 325.492188 323.171875 325.609375 323.171875 C 325.726562 323.171875 325.820312 323.078125 325.820312 322.960938 Z M 325.820312 322.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.96875 321.261719 C 322.96875 321.144531 322.875 321.050781 322.757812 321.050781 C 322.640625 321.050781 322.546875 321.144531 322.546875 321.261719 C 322.546875 321.378906 322.640625 321.472656 322.757812 321.472656 C 322.875 321.472656 322.96875 321.378906 322.96875 321.261719 Z M 322.96875 321.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.648438 323.308594 C 322.648438 323.191406 322.554688 323.097656 322.4375 323.097656 C 322.320312 323.097656 322.226562 323.191406 322.226562 323.308594 C 322.226562 323.425781 322.320312 323.519531 322.4375 323.519531 C 322.554688 323.519531 322.648438 323.425781 322.648438 323.308594 Z M 322.648438 323.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.714844 325.125 C 321.714844 325.007812 321.621094 324.914062 321.503906 324.914062 C 321.386719 324.914062 321.292969 325.007812 321.292969 325.125 C 321.292969 325.242188 321.386719 325.335938 321.503906 325.335938 C 321.621094 325.335938 321.714844 325.242188 321.714844 325.125 Z M 321.714844 325.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.011719 324.75 C 326.011719 324.632812 325.917969 324.539062 325.800781 324.539062 C 325.683594 324.539062 325.589844 324.632812 325.589844 324.75 C 325.589844 324.867188 325.683594 324.960938 325.800781 324.960938 C 325.917969 324.960938 326.011719 324.867188 326.011719 324.75 Z M 326.011719 324.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.6875 326.898438 C 325.6875 326.78125 325.59375 326.6875 325.476562 326.6875 C 325.359375 326.6875 325.265625 326.78125 325.265625 326.898438 C 325.265625 327.015625 325.359375 327.109375 325.476562 327.109375 C 325.59375 327.109375 325.6875 327.015625 325.6875 326.898438 Z M 325.6875 326.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.101562 327.441406 C 324.101562 327.324219 324.007812 327.230469 323.890625 327.230469 C 323.773438 327.230469 323.679688 327.324219 323.679688 327.441406 C 323.679688 327.558594 323.773438 327.652344 323.890625 327.652344 C 324.007812 327.652344 324.101562 327.558594 324.101562 327.441406 Z M 324.101562 327.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 328.546875 324.878906 C 328.546875 324.761719 328.453125 324.667969 328.335938 324.667969 C 328.21875 324.667969 328.125 324.761719 328.125 324.878906 C 328.125 324.996094 328.21875 325.089844 328.335938 325.089844 C 328.453125 325.089844 328.546875 324.996094 328.546875 324.878906 Z M 328.546875 324.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.667969 320.269531 C 327.667969 320.152344 327.574219 320.058594 327.457031 320.058594 C 327.339844 320.058594 327.246094 320.152344 327.246094 320.269531 C 327.246094 320.386719 327.339844 320.480469 327.457031 320.480469 C 327.574219 320.480469 327.667969 320.386719 327.667969 320.269531 Z M 327.667969 320.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 328.035156 322.957031 C 328.035156 322.839844 327.941406 322.746094 327.824219 322.746094 C 327.707031 322.746094 327.613281 322.839844 327.613281 322.957031 C 327.613281 323.074219 327.707031 323.167969 327.824219 323.167969 C 327.941406 323.167969 328.035156 323.074219 328.035156 322.957031 Z M 328.035156 322.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.972656 326.039062 C 325.972656 325.921875 325.878906 325.828125 325.761719 325.828125 C 325.644531 325.828125 325.550781 325.921875 325.550781 326.039062 C 325.550781 326.15625 325.644531 326.25 325.761719 326.25 C 325.878906 326.25 325.972656 326.15625 325.972656 326.039062 Z M 325.972656 326.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.660156 329.316406 C 327.660156 329.199219 327.566406 329.105469 327.449219 329.105469 C 327.332031 329.105469 327.238281 329.199219 327.238281 329.316406 C 327.238281 329.433594 327.332031 329.527344 327.449219 329.527344 C 327.566406 329.527344 327.660156 329.433594 327.660156 329.316406 Z M 327.660156 329.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.351562 325.765625 C 325.351562 325.648438 325.257812 325.554688 325.140625 325.554688 C 325.023438 325.554688 324.929688 325.648438 324.929688 325.765625 C 324.929688 325.882812 325.023438 325.976562 325.140625 325.976562 C 325.257812 325.976562 325.351562 325.882812 325.351562 325.765625 Z M 325.351562 325.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.539062 325.644531 C 322.539062 325.527344 322.445312 325.433594 322.328125 325.433594 C 322.210938 325.433594 322.117188 325.527344 322.117188 325.644531 C 322.117188 325.761719 322.210938 325.855469 322.328125 325.855469 C 322.445312 325.855469 322.539062 325.761719 322.539062 325.644531 Z M 322.539062 325.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.710938 323.257812 C 323.710938 323.140625 323.617188 323.046875 323.5 323.046875 C 323.382812 323.046875 323.289062 323.140625 323.289062 323.257812 C 323.289062 323.375 323.382812 323.46875 323.5 323.46875 C 323.617188 323.46875 323.710938 323.375 323.710938 323.257812 Z M 323.710938 323.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.699219 319.847656 C 324.699219 319.730469 324.605469 319.636719 324.488281 319.636719 C 324.371094 319.636719 324.277344 319.730469 324.277344 319.847656 C 324.277344 319.964844 324.371094 320.058594 324.488281 320.058594 C 324.605469 320.058594 324.699219 319.964844 324.699219 319.847656 Z M 324.699219 319.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.472656 318.863281 C 323.472656 318.746094 323.378906 318.652344 323.261719 318.652344 C 323.144531 318.652344 323.050781 318.746094 323.050781 318.863281 C 323.050781 318.980469 323.144531 319.074219 323.261719 319.074219 C 323.378906 319.074219 323.472656 318.980469 323.472656 318.863281 Z M 323.472656 318.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.007812 314.953125 C 321.007812 314.835938 320.914062 314.742188 320.796875 314.742188 C 320.679688 314.742188 320.585938 314.835938 320.585938 314.953125 C 320.585938 315.070312 320.679688 315.164062 320.796875 315.164062 C 320.914062 315.164062 321.007812 315.070312 321.007812 314.953125 Z M 321.007812 314.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.136719 310.753906 C 322.136719 310.636719 322.042969 310.542969 321.925781 310.542969 C 321.808594 310.542969 321.714844 310.636719 321.714844 310.753906 C 321.714844 310.871094 321.808594 310.964844 321.925781 310.964844 C 322.042969 310.964844 322.136719 310.871094 322.136719 310.753906 Z M 322.136719 310.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.058594 312.542969 C 322.058594 312.425781 321.964844 312.332031 321.847656 312.332031 C 321.730469 312.332031 321.636719 312.425781 321.636719 312.542969 C 321.636719 312.660156 321.730469 312.753906 321.847656 312.753906 C 321.964844 312.753906 322.058594 312.660156 322.058594 312.542969 Z M 322.058594 312.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 319.492188 310.6875 C 319.492188 310.570312 319.398438 310.476562 319.28125 310.476562 C 319.164062 310.476562 319.070312 310.570312 319.070312 310.6875 C 319.070312 310.804688 319.164062 310.898438 319.28125 310.898438 C 319.398438 310.898438 319.492188 310.804688 319.492188 310.6875 Z M 319.492188 310.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.867188 309.203125 C 316.867188 309.085938 316.773438 308.992188 316.65625 308.992188 C 316.539062 308.992188 316.445312 309.085938 316.445312 309.203125 C 316.445312 309.320312 316.539062 309.414062 316.65625 309.414062 C 316.773438 309.414062 316.867188 309.320312 316.867188 309.203125 Z M 316.867188 309.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.949219 309.273438 C 315.949219 309.15625 315.855469 309.0625 315.738281 309.0625 C 315.621094 309.0625 315.527344 309.15625 315.527344 309.273438 C 315.527344 309.390625 315.621094 309.484375 315.738281 309.484375 C 315.855469 309.484375 315.949219 309.390625 315.949219 309.273438 Z M 315.949219 309.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.035156 308.414062 C 316.035156 308.296875 315.941406 308.203125 315.824219 308.203125 C 315.707031 308.203125 315.613281 308.296875 315.613281 308.414062 C 315.613281 308.53125 315.707031 308.625 315.824219 308.625 C 315.941406 308.625 316.035156 308.53125 316.035156 308.414062 Z M 316.035156 308.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.695312 308.113281 C 317.695312 307.996094 317.601562 307.902344 317.484375 307.902344 C 317.367188 307.902344 317.273438 307.996094 317.273438 308.113281 C 317.273438 308.230469 317.367188 308.324219 317.484375 308.324219 C 317.601562 308.324219 317.695312 308.230469 317.695312 308.113281 Z M 317.695312 308.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.71875 307.722656 C 316.71875 307.605469 316.625 307.511719 316.507812 307.511719 C 316.390625 307.511719 316.296875 307.605469 316.296875 307.722656 C 316.296875 307.839844 316.390625 307.933594 316.507812 307.933594 C 316.625 307.933594 316.71875 307.839844 316.71875 307.722656 Z M 316.71875 307.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.390625 309.742188 C 314.390625 309.625 314.296875 309.53125 314.179688 309.53125 C 314.0625 309.53125 313.96875 309.625 313.96875 309.742188 C 313.96875 309.859375 314.0625 309.953125 314.179688 309.953125 C 314.296875 309.953125 314.390625 309.859375 314.390625 309.742188 Z M 314.390625 309.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.695312 311.339844 C 314.695312 311.222656 314.601562 311.128906 314.484375 311.128906 C 314.367188 311.128906 314.273438 311.222656 314.273438 311.339844 C 314.273438 311.457031 314.367188 311.550781 314.484375 311.550781 C 314.601562 311.550781 314.695312 311.457031 314.695312 311.339844 Z M 314.695312 311.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.695312 311.054688 C 314.695312 310.9375 314.601562 310.84375 314.484375 310.84375 C 314.367188 310.84375 314.273438 310.9375 314.273438 311.054688 C 314.273438 311.171875 314.367188 311.265625 314.484375 311.265625 C 314.601562 311.265625 314.695312 311.171875 314.695312 311.054688 Z M 314.695312 311.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.53125 312.808594 C 312.53125 312.691406 312.4375 312.597656 312.320312 312.597656 C 312.203125 312.597656 312.109375 312.691406 312.109375 312.808594 C 312.109375 312.925781 312.203125 313.019531 312.320312 313.019531 C 312.4375 313.019531 312.53125 312.925781 312.53125 312.808594 Z M 312.53125 312.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.496094 313.457031 C 313.496094 313.339844 313.402344 313.246094 313.285156 313.246094 C 313.167969 313.246094 313.074219 313.339844 313.074219 313.457031 C 313.074219 313.574219 313.167969 313.667969 313.285156 313.667969 C 313.402344 313.667969 313.496094 313.574219 313.496094 313.457031 Z M 313.496094 313.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.554688 313.910156 C 314.554688 313.792969 314.460938 313.699219 314.34375 313.699219 C 314.226562 313.699219 314.132812 313.792969 314.132812 313.910156 C 314.132812 314.027344 314.226562 314.121094 314.34375 314.121094 C 314.460938 314.121094 314.554688 314.027344 314.554688 313.910156 Z M 314.554688 313.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.15625 313.011719 C 314.15625 312.894531 314.0625 312.800781 313.945312 312.800781 C 313.828125 312.800781 313.734375 312.894531 313.734375 313.011719 C 313.734375 313.128906 313.828125 313.222656 313.945312 313.222656 C 314.0625 313.222656 314.15625 313.128906 314.15625 313.011719 Z M 314.15625 313.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.8125 309.929688 C 316.8125 309.8125 316.71875 309.71875 316.601562 309.71875 C 316.484375 309.71875 316.390625 309.8125 316.390625 309.929688 C 316.390625 310.046875 316.484375 310.140625 316.601562 310.140625 C 316.71875 310.140625 316.8125 310.046875 316.8125 309.929688 Z M 316.8125 309.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 318.003906 310.128906 C 318.003906 310.011719 317.910156 309.917969 317.792969 309.917969 C 317.675781 309.917969 317.582031 310.011719 317.582031 310.128906 C 317.582031 310.246094 317.675781 310.339844 317.792969 310.339844 C 317.910156 310.339844 318.003906 310.246094 318.003906 310.128906 Z M 318.003906 310.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.105469 306.304688 C 316.105469 306.1875 316.011719 306.09375 315.894531 306.09375 C 315.777344 306.09375 315.683594 306.1875 315.683594 306.304688 C 315.683594 306.421875 315.777344 306.515625 315.894531 306.515625 C 316.011719 306.515625 316.105469 306.421875 316.105469 306.304688 Z M 316.105469 306.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.59375 309.6875 C 316.59375 309.570312 316.5 309.476562 316.382812 309.476562 C 316.265625 309.476562 316.171875 309.570312 316.171875 309.6875 C 316.171875 309.804688 316.265625 309.898438 316.382812 309.898438 C 316.5 309.898438 316.59375 309.804688 316.59375 309.6875 Z M 316.59375 309.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313 309.769531 C 313 309.652344 312.90625 309.558594 312.789062 309.558594 C 312.671875 309.558594 312.578125 309.652344 312.578125 309.769531 C 312.578125 309.886719 312.671875 309.980469 312.789062 309.980469 C 312.90625 309.980469 313 309.886719 313 309.769531 Z M 313 309.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.511719 306.816406 C 314.511719 306.699219 314.417969 306.605469 314.300781 306.605469 C 314.183594 306.605469 314.089844 306.699219 314.089844 306.816406 C 314.089844 306.933594 314.183594 307.027344 314.300781 307.027344 C 314.417969 307.027344 314.511719 306.933594 314.511719 306.816406 Z M 314.511719 306.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.507812 303.679688 C 311.507812 303.5625 311.414062 303.46875 311.296875 303.46875 C 311.179688 303.46875 311.085938 303.5625 311.085938 303.679688 C 311.085938 303.796875 311.179688 303.890625 311.296875 303.890625 C 311.414062 303.890625 311.507812 303.796875 311.507812 303.679688 Z M 311.507812 303.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.863281 296.558594 C 308.863281 296.441406 308.769531 296.347656 308.652344 296.347656 C 308.535156 296.347656 308.441406 296.441406 308.441406 296.558594 C 308.441406 296.675781 308.535156 296.769531 308.652344 296.769531 C 308.769531 296.769531 308.863281 296.675781 308.863281 296.558594 Z M 308.863281 296.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.753906 299.066406 C 304.753906 298.949219 304.660156 298.855469 304.542969 298.855469 C 304.425781 298.855469 304.332031 298.949219 304.332031 299.066406 C 304.332031 299.183594 304.425781 299.277344 304.542969 299.277344 C 304.660156 299.277344 304.753906 299.183594 304.753906 299.066406 Z M 304.753906 299.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.777344 298.707031 C 301.777344 298.589844 301.683594 298.496094 301.566406 298.496094 C 301.449219 298.496094 301.355469 298.589844 301.355469 298.707031 C 301.355469 298.824219 301.449219 298.917969 301.566406 298.917969 C 301.683594 298.917969 301.777344 298.824219 301.777344 298.707031 Z M 301.777344 298.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.265625 297.707031 C 302.265625 297.589844 302.171875 297.496094 302.054688 297.496094 C 301.9375 297.496094 301.84375 297.589844 301.84375 297.707031 C 301.84375 297.824219 301.9375 297.917969 302.054688 297.917969 C 302.171875 297.917969 302.265625 297.824219 302.265625 297.707031 Z M 302.265625 297.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.035156 297.1875 C 302.035156 297.070312 301.941406 296.976562 301.824219 296.976562 C 301.707031 296.976562 301.613281 297.070312 301.613281 297.1875 C 301.613281 297.304688 301.707031 297.398438 301.824219 297.398438 C 301.941406 297.398438 302.035156 297.304688 302.035156 297.1875 Z M 302.035156 297.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.894531 294.789062 C 299.894531 294.671875 299.800781 294.578125 299.683594 294.578125 C 299.566406 294.578125 299.472656 294.671875 299.472656 294.789062 C 299.472656 294.90625 299.566406 295 299.683594 295 C 299.800781 295 299.894531 294.90625 299.894531 294.789062 Z M 299.894531 294.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.605469 291.066406 C 303.605469 290.949219 303.511719 290.855469 303.394531 290.855469 C 303.277344 290.855469 303.183594 290.949219 303.183594 291.066406 C 303.183594 291.183594 303.277344 291.277344 303.394531 291.277344 C 303.511719 291.277344 303.605469 291.183594 303.605469 291.066406 Z M 303.605469 291.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.914062 291.222656 C 301.914062 291.105469 301.820312 291.011719 301.703125 291.011719 C 301.585938 291.011719 301.492188 291.105469 301.492188 291.222656 C 301.492188 291.339844 301.585938 291.433594 301.703125 291.433594 C 301.820312 291.433594 301.914062 291.339844 301.914062 291.222656 Z M 301.914062 291.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.917969 298.128906 C 302.917969 298.011719 302.824219 297.917969 302.707031 297.917969 C 302.589844 297.917969 302.496094 298.011719 302.496094 298.128906 C 302.496094 298.246094 302.589844 298.339844 302.707031 298.339844 C 302.824219 298.339844 302.917969 298.246094 302.917969 298.128906 Z M 302.917969 298.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.1875 296.234375 C 302.1875 296.117188 302.09375 296.023438 301.976562 296.023438 C 301.859375 296.023438 301.765625 296.117188 301.765625 296.234375 C 301.765625 296.351562 301.859375 296.445312 301.976562 296.445312 C 302.09375 296.445312 302.1875 296.351562 302.1875 296.234375 Z M 302.1875 296.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.789062 297.769531 C 303.789062 297.652344 303.695312 297.558594 303.578125 297.558594 C 303.460938 297.558594 303.367188 297.652344 303.367188 297.769531 C 303.367188 297.886719 303.460938 297.980469 303.578125 297.980469 C 303.695312 297.980469 303.789062 297.886719 303.789062 297.769531 Z M 303.789062 297.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.816406 294.4375 C 305.816406 294.320312 305.722656 294.226562 305.605469 294.226562 C 305.488281 294.226562 305.394531 294.320312 305.394531 294.4375 C 305.394531 294.554688 305.488281 294.648438 305.605469 294.648438 C 305.722656 294.648438 305.816406 294.554688 305.816406 294.4375 Z M 305.816406 294.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.5625 292.191406 C 308.5625 292.074219 308.46875 291.980469 308.351562 291.980469 C 308.234375 291.980469 308.140625 292.074219 308.140625 292.191406 C 308.140625 292.308594 308.234375 292.402344 308.351562 292.402344 C 308.46875 292.402344 308.5625 292.308594 308.5625 292.191406 Z M 308.5625 292.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.683594 288.769531 C 308.683594 288.652344 308.589844 288.558594 308.472656 288.558594 C 308.355469 288.558594 308.261719 288.652344 308.261719 288.769531 C 308.261719 288.886719 308.355469 288.980469 308.472656 288.980469 C 308.589844 288.980469 308.683594 288.886719 308.683594 288.769531 Z M 308.683594 288.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.796875 290.121094 C 307.796875 290.003906 307.703125 289.910156 307.585938 289.910156 C 307.46875 289.910156 307.375 290.003906 307.375 290.121094 C 307.375 290.238281 307.46875 290.332031 307.585938 290.332031 C 307.703125 290.332031 307.796875 290.238281 307.796875 290.121094 Z M 307.796875 290.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.671875 294.042969 C 307.671875 293.925781 307.578125 293.832031 307.460938 293.832031 C 307.34375 293.832031 307.25 293.925781 307.25 294.042969 C 307.25 294.160156 307.34375 294.253906 307.460938 294.253906 C 307.578125 294.253906 307.671875 294.160156 307.671875 294.042969 Z M 307.671875 294.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.179688 292.980469 C 308.179688 292.863281 308.085938 292.769531 307.96875 292.769531 C 307.851562 292.769531 307.757812 292.863281 307.757812 292.980469 C 307.757812 293.097656 307.851562 293.191406 307.96875 293.191406 C 308.085938 293.191406 308.179688 293.097656 308.179688 292.980469 Z M 308.179688 292.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.488281 293.074219 C 313.488281 292.957031 313.394531 292.863281 313.277344 292.863281 C 313.160156 292.863281 313.066406 292.957031 313.066406 293.074219 C 313.066406 293.191406 313.160156 293.285156 313.277344 293.285156 C 313.394531 293.285156 313.488281 293.191406 313.488281 293.074219 Z M 313.488281 293.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.539062 291.238281 C 315.539062 291.121094 315.445312 291.027344 315.328125 291.027344 C 315.210938 291.027344 315.117188 291.121094 315.117188 291.238281 C 315.117188 291.355469 315.210938 291.449219 315.328125 291.449219 C 315.445312 291.449219 315.539062 291.355469 315.539062 291.238281 Z M 315.539062 291.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 318.511719 289.804688 C 318.511719 289.6875 318.417969 289.59375 318.300781 289.59375 C 318.183594 289.59375 318.089844 289.6875 318.089844 289.804688 C 318.089844 289.921875 318.183594 290.015625 318.300781 290.015625 C 318.417969 290.015625 318.511719 289.921875 318.511719 289.804688 Z M 318.511719 289.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 319.519531 290.214844 C 319.519531 290.097656 319.425781 290.003906 319.308594 290.003906 C 319.191406 290.003906 319.097656 290.097656 319.097656 290.214844 C 319.097656 290.332031 319.191406 290.425781 319.308594 290.425781 C 319.425781 290.425781 319.519531 290.332031 319.519531 290.214844 Z M 319.519531 290.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.820312 288.144531 C 322.820312 288.027344 322.726562 287.933594 322.609375 287.933594 C 322.492188 287.933594 322.398438 288.027344 322.398438 288.144531 C 322.398438 288.261719 322.492188 288.355469 322.609375 288.355469 C 322.726562 288.355469 322.820312 288.261719 322.820312 288.144531 Z M 322.820312 288.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.761719 289.015625 C 321.761719 288.898438 321.667969 288.804688 321.550781 288.804688 C 321.433594 288.804688 321.339844 288.898438 321.339844 289.015625 C 321.339844 289.132812 321.433594 289.226562 321.550781 289.226562 C 321.667969 289.226562 321.761719 289.132812 321.761719 289.015625 Z M 321.761719 289.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.429688 288.066406 C 322.429688 287.949219 322.335938 287.855469 322.21875 287.855469 C 322.101562 287.855469 322.007812 287.949219 322.007812 288.066406 C 322.007812 288.183594 322.101562 288.277344 322.21875 288.277344 C 322.335938 288.277344 322.429688 288.183594 322.429688 288.066406 Z M 322.429688 288.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.570312 287.128906 C 324.570312 287.011719 324.476562 286.917969 324.359375 286.917969 C 324.242188 286.917969 324.148438 287.011719 324.148438 287.128906 C 324.148438 287.246094 324.242188 287.339844 324.359375 287.339844 C 324.476562 287.339844 324.570312 287.246094 324.570312 287.128906 Z M 324.570312 287.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.980469 288.921875 C 326.980469 288.804688 326.886719 288.710938 326.769531 288.710938 C 326.652344 288.710938 326.558594 288.804688 326.558594 288.921875 C 326.558594 289.039062 326.652344 289.132812 326.769531 289.132812 C 326.886719 289.132812 326.980469 289.039062 326.980469 288.921875 Z M 326.980469 288.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.734375 289.539062 C 324.734375 289.421875 324.640625 289.328125 324.523438 289.328125 C 324.40625 289.328125 324.3125 289.421875 324.3125 289.539062 C 324.3125 289.65625 324.40625 289.75 324.523438 289.75 C 324.640625 289.75 324.734375 289.65625 324.734375 289.539062 Z M 324.734375 289.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.800781 292.386719 C 323.800781 292.269531 323.707031 292.175781 323.589844 292.175781 C 323.472656 292.175781 323.378906 292.269531 323.378906 292.386719 C 323.378906 292.503906 323.472656 292.597656 323.589844 292.597656 C 323.707031 292.597656 323.800781 292.503906 323.800781 292.386719 Z M 323.800781 292.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.445312 292.667969 C 324.445312 292.550781 324.351562 292.457031 324.234375 292.457031 C 324.117188 292.457031 324.023438 292.550781 324.023438 292.667969 C 324.023438 292.785156 324.117188 292.878906 324.234375 292.878906 C 324.351562 292.878906 324.445312 292.785156 324.445312 292.667969 Z M 324.445312 292.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.804688 292.207031 C 322.804688 292.089844 322.710938 291.996094 322.59375 291.996094 C 322.476562 291.996094 322.382812 292.089844 322.382812 292.207031 C 322.382812 292.324219 322.476562 292.417969 322.59375 292.417969 C 322.710938 292.417969 322.804688 292.324219 322.804688 292.207031 Z M 322.804688 292.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.773438 295.066406 C 322.773438 294.949219 322.679688 294.855469 322.5625 294.855469 C 322.445312 294.855469 322.351562 294.949219 322.351562 295.066406 C 322.351562 295.183594 322.445312 295.277344 322.5625 295.277344 C 322.679688 295.277344 322.773438 295.183594 322.773438 295.066406 Z M 322.773438 295.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.953125 296.453125 C 326.953125 296.335938 326.859375 296.242188 326.742188 296.242188 C 326.625 296.242188 326.53125 296.335938 326.53125 296.453125 C 326.53125 296.570312 326.625 296.664062 326.742188 296.664062 C 326.859375 296.664062 326.953125 296.570312 326.953125 296.453125 Z M 326.953125 296.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.238281 296.398438 C 326.238281 296.28125 326.144531 296.1875 326.027344 296.1875 C 325.910156 296.1875 325.816406 296.28125 325.816406 296.398438 C 325.816406 296.515625 325.910156 296.609375 326.027344 296.609375 C 326.144531 296.609375 326.238281 296.515625 326.238281 296.398438 Z M 326.238281 296.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.40625 298.316406 C 321.40625 298.199219 321.3125 298.105469 321.195312 298.105469 C 321.078125 298.105469 320.984375 298.199219 320.984375 298.316406 C 320.984375 298.433594 321.078125 298.527344 321.195312 298.527344 C 321.3125 298.527344 321.40625 298.433594 321.40625 298.316406 Z M 321.40625 298.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 320.1875 299.460938 C 320.1875 299.34375 320.09375 299.25 319.976562 299.25 C 319.859375 299.25 319.765625 299.34375 319.765625 299.460938 C 319.765625 299.578125 319.859375 299.671875 319.976562 299.671875 C 320.09375 299.671875 320.1875 299.578125 320.1875 299.460938 Z M 320.1875 299.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 320.980469 302.082031 C 320.980469 301.964844 320.886719 301.871094 320.769531 301.871094 C 320.652344 301.871094 320.558594 301.964844 320.558594 302.082031 C 320.558594 302.199219 320.652344 302.292969 320.769531 302.292969 C 320.886719 302.292969 320.980469 302.199219 320.980469 302.082031 Z M 320.980469 302.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 320.53125 298.460938 C 320.53125 298.34375 320.4375 298.25 320.320312 298.25 C 320.203125 298.25 320.109375 298.34375 320.109375 298.460938 C 320.109375 298.578125 320.203125 298.671875 320.320312 298.671875 C 320.4375 298.671875 320.53125 298.578125 320.53125 298.460938 Z M 320.53125 298.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.058594 300.632812 C 321.058594 300.515625 320.964844 300.421875 320.847656 300.421875 C 320.730469 300.421875 320.636719 300.515625 320.636719 300.632812 C 320.636719 300.75 320.730469 300.84375 320.847656 300.84375 C 320.964844 300.84375 321.058594 300.75 321.058594 300.632812 Z M 321.058594 300.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 319.851562 302.484375 C 319.851562 302.367188 319.757812 302.273438 319.640625 302.273438 C 319.523438 302.273438 319.429688 302.367188 319.429688 302.484375 C 319.429688 302.601562 319.523438 302.695312 319.640625 302.695312 C 319.757812 302.695312 319.851562 302.601562 319.851562 302.484375 Z M 319.851562 302.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.097656 301.472656 C 322.097656 301.355469 322.003906 301.261719 321.886719 301.261719 C 321.769531 301.261719 321.675781 301.355469 321.675781 301.472656 C 321.675781 301.589844 321.769531 301.683594 321.886719 301.683594 C 322.003906 301.683594 322.097656 301.589844 322.097656 301.472656 Z M 322.097656 301.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.984375 301.230469 C 324.984375 301.113281 324.890625 301.019531 324.773438 301.019531 C 324.65625 301.019531 324.5625 301.113281 324.5625 301.230469 C 324.5625 301.347656 324.65625 301.441406 324.773438 301.441406 C 324.890625 301.441406 324.984375 301.347656 324.984375 301.230469 Z M 324.984375 301.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.929688 300.59375 C 324.929688 300.476562 324.835938 300.382812 324.71875 300.382812 C 324.601562 300.382812 324.507812 300.476562 324.507812 300.59375 C 324.507812 300.710938 324.601562 300.804688 324.71875 300.804688 C 324.835938 300.804688 324.929688 300.710938 324.929688 300.59375 Z M 324.929688 300.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.847656 300.925781 C 323.847656 300.808594 323.753906 300.714844 323.636719 300.714844 C 323.519531 300.714844 323.425781 300.808594 323.425781 300.925781 C 323.425781 301.042969 323.519531 301.136719 323.636719 301.136719 C 323.753906 301.136719 323.847656 301.042969 323.847656 300.925781 Z M 323.847656 300.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.242188 297.695312 C 325.242188 297.578125 325.148438 297.484375 325.03125 297.484375 C 324.914062 297.484375 324.820312 297.578125 324.820312 297.695312 C 324.820312 297.8125 324.914062 297.90625 325.03125 297.90625 C 325.148438 297.90625 325.242188 297.8125 325.242188 297.695312 Z M 325.242188 297.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 328.765625 297.140625 C 328.765625 297.023438 328.671875 296.929688 328.554688 296.929688 C 328.4375 296.929688 328.34375 297.023438 328.34375 297.140625 C 328.34375 297.257812 328.4375 297.351562 328.554688 297.351562 C 328.671875 297.351562 328.765625 297.257812 328.765625 297.140625 Z M 328.765625 297.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 329.300781 293.519531 C 329.300781 293.402344 329.207031 293.308594 329.089844 293.308594 C 328.972656 293.308594 328.878906 293.402344 328.878906 293.519531 C 328.878906 293.636719 328.972656 293.730469 329.089844 293.730469 C 329.207031 293.730469 329.300781 293.636719 329.300781 293.519531 Z M 329.300781 293.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 329.414062 291.535156 C 329.414062 291.417969 329.320312 291.324219 329.203125 291.324219 C 329.085938 291.324219 328.992188 291.417969 328.992188 291.535156 C 328.992188 291.652344 329.085938 291.746094 329.203125 291.746094 C 329.320312 291.746094 329.414062 291.652344 329.414062 291.535156 Z M 329.414062 291.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.621094 291.886719 C 326.621094 291.769531 326.527344 291.675781 326.410156 291.675781 C 326.292969 291.675781 326.199219 291.769531 326.199219 291.886719 C 326.199219 292.003906 326.292969 292.097656 326.410156 292.097656 C 326.527344 292.097656 326.621094 292.003906 326.621094 291.886719 Z M 326.621094 291.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 328.230469 288.140625 C 328.230469 288.023438 328.136719 287.929688 328.019531 287.929688 C 327.902344 287.929688 327.808594 288.023438 327.808594 288.140625 C 327.808594 288.257812 327.902344 288.351562 328.019531 288.351562 C 328.136719 288.351562 328.230469 288.257812 328.230469 288.140625 Z M 328.230469 288.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.152344 290.761719 C 326.152344 290.644531 326.058594 290.550781 325.941406 290.550781 C 325.824219 290.550781 325.730469 290.644531 325.730469 290.761719 C 325.730469 290.878906 325.824219 290.972656 325.941406 290.972656 C 326.058594 290.972656 326.152344 290.878906 326.152344 290.761719 Z M 326.152344 290.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.066406 290.722656 C 324.066406 290.605469 323.972656 290.511719 323.855469 290.511719 C 323.738281 290.511719 323.644531 290.605469 323.644531 290.722656 C 323.644531 290.839844 323.738281 290.933594 323.855469 290.933594 C 323.972656 290.933594 324.066406 290.839844 324.066406 290.722656 Z M 324.066406 290.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.632812 293.484375 C 323.632812 293.367188 323.539062 293.273438 323.421875 293.273438 C 323.304688 293.273438 323.210938 293.367188 323.210938 293.484375 C 323.210938 293.601562 323.304688 293.695312 323.421875 293.695312 C 323.539062 293.695312 323.632812 293.601562 323.632812 293.484375 Z M 323.632812 293.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.660156 297 C 321.660156 296.882812 321.566406 296.789062 321.449219 296.789062 C 321.332031 296.789062 321.238281 296.882812 321.238281 297 C 321.238281 297.117188 321.332031 297.210938 321.449219 297.210938 C 321.566406 297.210938 321.660156 297.117188 321.660156 297 Z M 321.660156 297 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 318.503906 296.839844 C 318.503906 296.722656 318.410156 296.628906 318.292969 296.628906 C 318.175781 296.628906 318.082031 296.722656 318.082031 296.839844 C 318.082031 296.957031 318.175781 297.050781 318.292969 297.050781 C 318.410156 297.050781 318.503906 296.957031 318.503906 296.839844 Z M 318.503906 296.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 319.007812 297.085938 C 319.007812 296.96875 318.914062 296.875 318.796875 296.875 C 318.679688 296.875 318.585938 296.96875 318.585938 297.085938 C 318.585938 297.203125 318.679688 297.296875 318.796875 297.296875 C 318.914062 297.296875 319.007812 297.203125 319.007812 297.085938 Z M 319.007812 297.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 320.863281 294.789062 C 320.863281 294.671875 320.769531 294.578125 320.652344 294.578125 C 320.535156 294.578125 320.441406 294.671875 320.441406 294.789062 C 320.441406 294.90625 320.535156 295 320.652344 295 C 320.769531 295 320.863281 294.90625 320.863281 294.789062 Z M 320.863281 294.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.554688 298.707031 C 323.554688 298.589844 323.460938 298.496094 323.34375 298.496094 C 323.226562 298.496094 323.132812 298.589844 323.132812 298.707031 C 323.132812 298.824219 323.226562 298.917969 323.34375 298.917969 C 323.460938 298.917969 323.554688 298.824219 323.554688 298.707031 Z M 323.554688 298.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.28125 295.839844 C 322.28125 295.722656 322.1875 295.628906 322.070312 295.628906 C 321.953125 295.628906 321.859375 295.722656 321.859375 295.839844 C 321.859375 295.957031 321.953125 296.050781 322.070312 296.050781 C 322.1875 296.050781 322.28125 295.957031 322.28125 295.839844 Z M 322.28125 295.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 320.890625 297.285156 C 320.890625 297.167969 320.796875 297.074219 320.679688 297.074219 C 320.5625 297.074219 320.46875 297.167969 320.46875 297.285156 C 320.46875 297.402344 320.5625 297.496094 320.679688 297.496094 C 320.796875 297.496094 320.890625 297.402344 320.890625 297.285156 Z M 320.890625 297.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 319.910156 297.617188 C 319.910156 297.5 319.816406 297.40625 319.699219 297.40625 C 319.582031 297.40625 319.488281 297.5 319.488281 297.617188 C 319.488281 297.734375 319.582031 297.828125 319.699219 297.828125 C 319.816406 297.828125 319.910156 297.734375 319.910156 297.617188 Z M 319.910156 297.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.78125 296.785156 C 316.78125 296.667969 316.6875 296.574219 316.570312 296.574219 C 316.453125 296.574219 316.359375 296.667969 316.359375 296.785156 C 316.359375 296.902344 316.453125 296.996094 316.570312 296.996094 C 316.6875 296.996094 316.78125 296.902344 316.78125 296.785156 Z M 316.78125 296.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 319.433594 298.578125 C 319.433594 298.460938 319.339844 298.367188 319.222656 298.367188 C 319.105469 298.367188 319.011719 298.460938 319.011719 298.578125 C 319.011719 298.695312 319.105469 298.789062 319.222656 298.789062 C 319.339844 298.789062 319.433594 298.695312 319.433594 298.578125 Z M 319.433594 298.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.480469 297.53125 C 325.480469 297.414062 325.386719 297.320312 325.269531 297.320312 C 325.152344 297.320312 325.058594 297.414062 325.058594 297.53125 C 325.058594 297.648438 325.152344 297.742188 325.269531 297.742188 C 325.386719 297.742188 325.480469 297.648438 325.480469 297.53125 Z M 325.480469 297.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.6875 298.492188 C 325.6875 298.375 325.59375 298.28125 325.476562 298.28125 C 325.359375 298.28125 325.265625 298.375 325.265625 298.492188 C 325.265625 298.609375 325.359375 298.703125 325.476562 298.703125 C 325.59375 298.703125 325.6875 298.609375 325.6875 298.492188 Z M 325.6875 298.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.136719 296.386719 C 324.136719 296.269531 324.042969 296.175781 323.925781 296.175781 C 323.808594 296.175781 323.714844 296.269531 323.714844 296.386719 C 323.714844 296.503906 323.808594 296.597656 323.925781 296.597656 C 324.042969 296.597656 324.136719 296.503906 324.136719 296.386719 Z M 324.136719 296.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 320.132812 294.726562 C 320.132812 294.609375 320.039062 294.515625 319.921875 294.515625 C 319.804688 294.515625 319.710938 294.609375 319.710938 294.726562 C 319.710938 294.84375 319.804688 294.9375 319.921875 294.9375 C 320.039062 294.9375 320.132812 294.84375 320.132812 294.726562 Z M 320.132812 294.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.011719 291.566406 C 321.011719 291.449219 320.917969 291.355469 320.800781 291.355469 C 320.683594 291.355469 320.589844 291.449219 320.589844 291.566406 C 320.589844 291.683594 320.683594 291.777344 320.800781 291.777344 C 320.917969 291.777344 321.011719 291.683594 321.011719 291.566406 Z M 321.011719 291.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.464844 290.195312 C 317.464844 290.078125 317.371094 289.984375 317.253906 289.984375 C 317.136719 289.984375 317.042969 290.078125 317.042969 290.195312 C 317.042969 290.3125 317.136719 290.40625 317.253906 290.40625 C 317.371094 290.40625 317.464844 290.3125 317.464844 290.195312 Z M 317.464844 290.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.964844 292.976562 C 314.964844 292.859375 314.871094 292.765625 314.753906 292.765625 C 314.636719 292.765625 314.542969 292.859375 314.542969 292.976562 C 314.542969 293.09375 314.636719 293.1875 314.753906 293.1875 C 314.871094 293.1875 314.964844 293.09375 314.964844 292.976562 Z M 314.964844 292.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.070312 291.238281 C 315.070312 291.121094 314.976562 291.027344 314.859375 291.027344 C 314.742188 291.027344 314.648438 291.121094 314.648438 291.238281 C 314.648438 291.355469 314.742188 291.449219 314.859375 291.449219 C 314.976562 291.449219 315.070312 291.355469 315.070312 291.238281 Z M 315.070312 291.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.355469 295.257812 C 315.355469 295.140625 315.261719 295.046875 315.144531 295.046875 C 315.027344 295.046875 314.933594 295.140625 314.933594 295.257812 C 314.933594 295.375 315.027344 295.46875 315.144531 295.46875 C 315.261719 295.46875 315.355469 295.375 315.355469 295.257812 Z M 315.355469 295.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.527344 291.707031 C 314.527344 291.589844 314.433594 291.496094 314.316406 291.496094 C 314.199219 291.496094 314.105469 291.589844 314.105469 291.707031 C 314.105469 291.824219 314.199219 291.917969 314.316406 291.917969 C 314.433594 291.917969 314.527344 291.824219 314.527344 291.707031 Z M 314.527344 291.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.511719 293.414062 C 313.511719 293.296875 313.417969 293.203125 313.300781 293.203125 C 313.183594 293.203125 313.089844 293.296875 313.089844 293.414062 C 313.089844 293.53125 313.183594 293.625 313.300781 293.625 C 313.417969 293.625 313.511719 293.53125 313.511719 293.414062 Z M 313.511719 293.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.417969 293.351562 C 315.417969 293.234375 315.324219 293.140625 315.207031 293.140625 C 315.089844 293.140625 314.996094 293.234375 314.996094 293.351562 C 314.996094 293.46875 315.089844 293.5625 315.207031 293.5625 C 315.324219 293.5625 315.417969 293.46875 315.417969 293.351562 Z M 315.417969 293.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.617188 291.277344 C 307.617188 291.160156 307.523438 291.066406 307.40625 291.066406 C 307.289062 291.066406 307.195312 291.160156 307.195312 291.277344 C 307.195312 291.394531 307.289062 291.488281 307.40625 291.488281 C 307.523438 291.488281 307.617188 291.394531 307.617188 291.277344 Z M 307.617188 291.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.414062 288.066406 C 307.414062 287.949219 307.320312 287.855469 307.203125 287.855469 C 307.085938 287.855469 306.992188 287.949219 306.992188 288.066406 C 306.992188 288.183594 307.085938 288.277344 307.203125 288.277344 C 307.320312 288.277344 307.414062 288.183594 307.414062 288.066406 Z M 307.414062 288.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.425781 284.585938 C 310.425781 284.46875 310.332031 284.375 310.214844 284.375 C 310.097656 284.375 310.003906 284.46875 310.003906 284.585938 C 310.003906 284.703125 310.097656 284.796875 310.214844 284.796875 C 310.332031 284.796875 310.425781 284.703125 310.425781 284.585938 Z M 310.425781 284.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.546875 285.859375 C 308.546875 285.742188 308.453125 285.648438 308.335938 285.648438 C 308.21875 285.648438 308.125 285.742188 308.125 285.859375 C 308.125 285.976562 308.21875 286.070312 308.335938 286.070312 C 308.453125 286.070312 308.546875 285.976562 308.546875 285.859375 Z M 308.546875 285.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.628906 288.5625 C 314.628906 288.445312 314.535156 288.351562 314.417969 288.351562 C 314.300781 288.351562 314.207031 288.445312 314.207031 288.5625 C 314.207031 288.679688 314.300781 288.773438 314.417969 288.773438 C 314.535156 288.773438 314.628906 288.679688 314.628906 288.5625 Z M 314.628906 288.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.945312 290.664062 C 313.945312 290.546875 313.851562 290.453125 313.734375 290.453125 C 313.617188 290.453125 313.523438 290.546875 313.523438 290.664062 C 313.523438 290.78125 313.617188 290.875 313.734375 290.875 C 313.851562 290.875 313.945312 290.78125 313.945312 290.664062 Z M 313.945312 290.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.871094 292.699219 C 312.871094 292.582031 312.777344 292.488281 312.660156 292.488281 C 312.542969 292.488281 312.449219 292.582031 312.449219 292.699219 C 312.449219 292.816406 312.542969 292.910156 312.660156 292.910156 C 312.777344 292.910156 312.871094 292.816406 312.871094 292.699219 Z M 312.871094 292.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.351562 292.847656 C 314.351562 292.730469 314.257812 292.636719 314.140625 292.636719 C 314.023438 292.636719 313.929688 292.730469 313.929688 292.847656 C 313.929688 292.964844 314.023438 293.058594 314.140625 293.058594 C 314.257812 293.058594 314.351562 292.964844 314.351562 292.847656 Z M 314.351562 292.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.046875 289.46875 C 314.046875 289.351562 313.953125 289.257812 313.835938 289.257812 C 313.71875 289.257812 313.625 289.351562 313.625 289.46875 C 313.625 289.585938 313.71875 289.679688 313.835938 289.679688 C 313.953125 289.679688 314.046875 289.585938 314.046875 289.46875 Z M 314.046875 289.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.953125 292.570312 C 311.953125 292.453125 311.859375 292.359375 311.742188 292.359375 C 311.625 292.359375 311.53125 292.453125 311.53125 292.570312 C 311.53125 292.6875 311.625 292.78125 311.742188 292.78125 C 311.859375 292.78125 311.953125 292.6875 311.953125 292.570312 Z M 311.953125 292.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.824219 290.683594 C 313.824219 290.566406 313.730469 290.472656 313.613281 290.472656 C 313.496094 290.472656 313.402344 290.566406 313.402344 290.683594 C 313.402344 290.800781 313.496094 290.894531 313.613281 290.894531 C 313.730469 290.894531 313.824219 290.800781 313.824219 290.683594 Z M 313.824219 290.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.089844 289.191406 C 313.089844 289.074219 312.996094 288.980469 312.878906 288.980469 C 312.761719 288.980469 312.667969 289.074219 312.667969 289.191406 C 312.667969 289.308594 312.761719 289.402344 312.878906 289.402344 C 312.996094 289.402344 313.089844 289.308594 313.089844 289.191406 Z M 313.089844 289.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.117188 296.816406 C 311.117188 296.699219 311.023438 296.605469 310.90625 296.605469 C 310.789062 296.605469 310.695312 296.699219 310.695312 296.816406 C 310.695312 296.933594 310.789062 297.027344 310.90625 297.027344 C 311.023438 297.027344 311.117188 296.933594 311.117188 296.816406 Z M 311.117188 296.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.390625 299.492188 C 309.390625 299.375 309.296875 299.28125 309.179688 299.28125 C 309.0625 299.28125 308.96875 299.375 308.96875 299.492188 C 308.96875 299.609375 309.0625 299.703125 309.179688 299.703125 C 309.296875 299.703125 309.390625 299.609375 309.390625 299.492188 Z M 309.390625 299.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.117188 296.703125 C 309.117188 296.585938 309.023438 296.492188 308.90625 296.492188 C 308.789062 296.492188 308.695312 296.585938 308.695312 296.703125 C 308.695312 296.820312 308.789062 296.914062 308.90625 296.914062 C 309.023438 296.914062 309.117188 296.820312 309.117188 296.703125 Z M 309.117188 296.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.980469 297.453125 C 309.980469 297.335938 309.886719 297.242188 309.769531 297.242188 C 309.652344 297.242188 309.558594 297.335938 309.558594 297.453125 C 309.558594 297.570312 309.652344 297.664062 309.769531 297.664062 C 309.886719 297.664062 309.980469 297.570312 309.980469 297.453125 Z M 309.980469 297.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.769531 300.058594 C 312.769531 299.941406 312.675781 299.847656 312.558594 299.847656 C 312.441406 299.847656 312.347656 299.941406 312.347656 300.058594 C 312.347656 300.175781 312.441406 300.269531 312.558594 300.269531 C 312.675781 300.269531 312.769531 300.175781 312.769531 300.058594 Z M 312.769531 300.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.453125 296.007812 C 308.453125 295.890625 308.359375 295.796875 308.242188 295.796875 C 308.125 295.796875 308.03125 295.890625 308.03125 296.007812 C 308.03125 296.125 308.125 296.21875 308.242188 296.21875 C 308.359375 296.21875 308.453125 296.125 308.453125 296.007812 Z M 308.453125 296.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.921875 296.007812 C 306.921875 295.890625 306.828125 295.796875 306.710938 295.796875 C 306.59375 295.796875 306.5 295.890625 306.5 296.007812 C 306.5 296.125 306.59375 296.21875 306.710938 296.21875 C 306.828125 296.21875 306.921875 296.125 306.921875 296.007812 Z M 306.921875 296.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.039062 297.921875 C 312.039062 297.804688 311.945312 297.710938 311.828125 297.710938 C 311.710938 297.710938 311.617188 297.804688 311.617188 297.921875 C 311.617188 298.039062 311.710938 298.132812 311.828125 298.132812 C 311.945312 298.132812 312.039062 298.039062 312.039062 297.921875 Z M 312.039062 297.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.691406 297.953125 C 311.691406 297.835938 311.597656 297.742188 311.480469 297.742188 C 311.363281 297.742188 311.269531 297.835938 311.269531 297.953125 C 311.269531 298.070312 311.363281 298.164062 311.480469 298.164062 C 311.597656 298.164062 311.691406 298.070312 311.691406 297.953125 Z M 311.691406 297.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.992188 300.503906 C 308.992188 300.386719 308.898438 300.292969 308.78125 300.292969 C 308.664062 300.292969 308.570312 300.386719 308.570312 300.503906 C 308.570312 300.621094 308.664062 300.714844 308.78125 300.714844 C 308.898438 300.714844 308.992188 300.621094 308.992188 300.503906 Z M 308.992188 300.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.898438 302.214844 C 306.898438 302.097656 306.804688 302.003906 306.6875 302.003906 C 306.570312 302.003906 306.476562 302.097656 306.476562 302.214844 C 306.476562 302.332031 306.570312 302.425781 306.6875 302.425781 C 306.804688 302.425781 306.898438 302.332031 306.898438 302.214844 Z M 306.898438 302.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.503906 303.382812 C 304.503906 303.265625 304.410156 303.171875 304.292969 303.171875 C 304.175781 303.171875 304.082031 303.265625 304.082031 303.382812 C 304.082031 303.5 304.175781 303.59375 304.292969 303.59375 C 304.410156 303.59375 304.503906 303.5 304.503906 303.382812 Z M 304.503906 303.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.6875 304.484375 C 305.6875 304.367188 305.59375 304.273438 305.476562 304.273438 C 305.359375 304.273438 305.265625 304.367188 305.265625 304.484375 C 305.265625 304.601562 305.359375 304.695312 305.476562 304.695312 C 305.59375 304.695312 305.6875 304.601562 305.6875 304.484375 Z M 305.6875 304.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.367188 306.105469 C 306.367188 305.988281 306.273438 305.894531 306.15625 305.894531 C 306.039062 305.894531 305.945312 305.988281 305.945312 306.105469 C 305.945312 306.222656 306.039062 306.316406 306.15625 306.316406 C 306.273438 306.316406 306.367188 306.222656 306.367188 306.105469 Z M 306.367188 306.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.753906 307.230469 C 303.753906 307.113281 303.660156 307.019531 303.542969 307.019531 C 303.425781 307.019531 303.332031 307.113281 303.332031 307.230469 C 303.332031 307.347656 303.425781 307.441406 303.542969 307.441406 C 303.660156 307.441406 303.753906 307.347656 303.753906 307.230469 Z M 303.753906 307.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.855469 310.542969 C 307.855469 310.425781 307.761719 310.332031 307.644531 310.332031 C 307.527344 310.332031 307.433594 310.425781 307.433594 310.542969 C 307.433594 310.660156 307.527344 310.753906 307.644531 310.753906 C 307.761719 310.753906 307.855469 310.660156 307.855469 310.542969 Z M 307.855469 310.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.761719 307.429688 C 308.761719 307.3125 308.667969 307.21875 308.550781 307.21875 C 308.433594 307.21875 308.339844 307.3125 308.339844 307.429688 C 308.339844 307.546875 308.433594 307.640625 308.550781 307.640625 C 308.667969 307.640625 308.761719 307.546875 308.761719 307.429688 Z M 308.761719 307.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.582031 308.144531 C 308.582031 308.027344 308.488281 307.933594 308.371094 307.933594 C 308.253906 307.933594 308.160156 308.027344 308.160156 308.144531 C 308.160156 308.261719 308.253906 308.355469 308.371094 308.355469 C 308.488281 308.355469 308.582031 308.261719 308.582031 308.144531 Z M 308.582031 308.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.078125 306.800781 C 311.078125 306.683594 310.984375 306.589844 310.867188 306.589844 C 310.75 306.589844 310.65625 306.683594 310.65625 306.800781 C 310.65625 306.917969 310.75 307.011719 310.867188 307.011719 C 310.984375 307.011719 311.078125 306.917969 311.078125 306.800781 Z M 311.078125 306.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.480469 302.890625 C 309.480469 302.773438 309.386719 302.679688 309.269531 302.679688 C 309.152344 302.679688 309.058594 302.773438 309.058594 302.890625 C 309.058594 303.007812 309.152344 303.101562 309.269531 303.101562 C 309.386719 303.101562 309.480469 303.007812 309.480469 302.890625 Z M 309.480469 302.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.132812 303.679688 C 309.132812 303.5625 309.039062 303.46875 308.921875 303.46875 C 308.804688 303.46875 308.710938 303.5625 308.710938 303.679688 C 308.710938 303.796875 308.804688 303.890625 308.921875 303.890625 C 309.039062 303.890625 309.132812 303.796875 309.132812 303.679688 Z M 309.132812 303.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.550781 305.902344 C 311.550781 305.785156 311.457031 305.691406 311.339844 305.691406 C 311.222656 305.691406 311.128906 305.785156 311.128906 305.902344 C 311.128906 306.019531 311.222656 306.113281 311.339844 306.113281 C 311.457031 306.113281 311.550781 306.019531 311.550781 305.902344 Z M 311.550781 305.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.933594 305.847656 C 306.933594 305.730469 306.839844 305.636719 306.722656 305.636719 C 306.605469 305.636719 306.511719 305.730469 306.511719 305.847656 C 306.511719 305.964844 306.605469 306.058594 306.722656 306.058594 C 306.839844 306.058594 306.933594 305.964844 306.933594 305.847656 Z M 306.933594 305.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.191406 304.476562 C 305.191406 304.359375 305.097656 304.265625 304.980469 304.265625 C 304.863281 304.265625 304.769531 304.359375 304.769531 304.476562 C 304.769531 304.59375 304.863281 304.6875 304.980469 304.6875 C 305.097656 304.6875 305.191406 304.59375 305.191406 304.476562 Z M 305.191406 304.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.90625 307.453125 C 303.90625 307.335938 303.8125 307.242188 303.695312 307.242188 C 303.578125 307.242188 303.484375 307.335938 303.484375 307.453125 C 303.484375 307.570312 303.578125 307.664062 303.695312 307.664062 C 303.8125 307.664062 303.90625 307.570312 303.90625 307.453125 Z M 303.90625 307.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.386719 304.828125 C 307.386719 304.710938 307.292969 304.617188 307.175781 304.617188 C 307.058594 304.617188 306.964844 304.710938 306.964844 304.828125 C 306.964844 304.945312 307.058594 305.039062 307.175781 305.039062 C 307.292969 305.039062 307.386719 304.945312 307.386719 304.828125 Z M 307.386719 304.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.882812 305.472656 C 306.882812 305.355469 306.789062 305.261719 306.671875 305.261719 C 306.554688 305.261719 306.460938 305.355469 306.460938 305.472656 C 306.460938 305.589844 306.554688 305.683594 306.671875 305.683594 C 306.789062 305.683594 306.882812 305.589844 306.882812 305.472656 Z M 306.882812 305.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.730469 307.410156 C 307.730469 307.292969 307.636719 307.199219 307.519531 307.199219 C 307.402344 307.199219 307.308594 307.292969 307.308594 307.410156 C 307.308594 307.527344 307.402344 307.621094 307.519531 307.621094 C 307.636719 307.621094 307.730469 307.527344 307.730469 307.410156 Z M 307.730469 307.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.679688 306.226562 C 307.679688 306.109375 307.585938 306.015625 307.46875 306.015625 C 307.351562 306.015625 307.257812 306.109375 307.257812 306.226562 C 307.257812 306.34375 307.351562 306.4375 307.46875 306.4375 C 307.585938 306.4375 307.679688 306.34375 307.679688 306.226562 Z M 307.679688 306.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.804688 306.996094 C 307.804688 306.878906 307.710938 306.785156 307.59375 306.785156 C 307.476562 306.785156 307.382812 306.878906 307.382812 306.996094 C 307.382812 307.113281 307.476562 307.207031 307.59375 307.207031 C 307.710938 307.207031 307.804688 307.113281 307.804688 306.996094 Z M 307.804688 306.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.050781 308.304688 C 304.050781 308.1875 303.957031 308.09375 303.839844 308.09375 C 303.722656 308.09375 303.628906 308.1875 303.628906 308.304688 C 303.628906 308.421875 303.722656 308.515625 303.839844 308.515625 C 303.957031 308.515625 304.050781 308.421875 304.050781 308.304688 Z M 304.050781 308.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.429688 309.394531 C 301.429688 309.277344 301.335938 309.183594 301.21875 309.183594 C 301.101562 309.183594 301.007812 309.277344 301.007812 309.394531 C 301.007812 309.511719 301.101562 309.605469 301.21875 309.605469 C 301.335938 309.605469 301.429688 309.511719 301.429688 309.394531 Z M 301.429688 309.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.613281 309.144531 C 303.613281 309.027344 303.519531 308.933594 303.402344 308.933594 C 303.285156 308.933594 303.191406 309.027344 303.191406 309.144531 C 303.191406 309.261719 303.285156 309.355469 303.402344 309.355469 C 303.519531 309.355469 303.613281 309.261719 303.613281 309.144531 Z M 303.613281 309.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.117188 309.882812 C 301.117188 309.765625 301.023438 309.671875 300.90625 309.671875 C 300.789062 309.671875 300.695312 309.765625 300.695312 309.882812 C 300.695312 310 300.789062 310.09375 300.90625 310.09375 C 301.023438 310.09375 301.117188 310 301.117188 309.882812 Z M 301.117188 309.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.042969 309.9375 C 301.042969 309.820312 300.949219 309.726562 300.832031 309.726562 C 300.714844 309.726562 300.621094 309.820312 300.621094 309.9375 C 300.621094 310.054688 300.714844 310.148438 300.832031 310.148438 C 300.949219 310.148438 301.042969 310.054688 301.042969 309.9375 Z M 301.042969 309.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.566406 312.554688 C 299.566406 312.4375 299.472656 312.34375 299.355469 312.34375 C 299.238281 312.34375 299.144531 312.4375 299.144531 312.554688 C 299.144531 312.671875 299.238281 312.765625 299.355469 312.765625 C 299.472656 312.765625 299.566406 312.671875 299.566406 312.554688 Z M 299.566406 312.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.429688 307.796875 C 301.429688 307.679688 301.335938 307.585938 301.21875 307.585938 C 301.101562 307.585938 301.007812 307.679688 301.007812 307.796875 C 301.007812 307.914062 301.101562 308.007812 301.21875 308.007812 C 301.335938 308.007812 301.429688 307.914062 301.429688 307.796875 Z M 301.429688 307.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.492188 307.609375 C 299.492188 307.492188 299.398438 307.398438 299.28125 307.398438 C 299.164062 307.398438 299.070312 307.492188 299.070312 307.609375 C 299.070312 307.726562 299.164062 307.820312 299.28125 307.820312 C 299.398438 307.820312 299.492188 307.726562 299.492188 307.609375 Z M 299.492188 307.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.992188 311.78125 C 298.992188 311.664062 298.898438 311.570312 298.78125 311.570312 C 298.664062 311.570312 298.570312 311.664062 298.570312 311.78125 C 298.570312 311.898438 298.664062 311.992188 298.78125 311.992188 C 298.898438 311.992188 298.992188 311.898438 298.992188 311.78125 Z M 298.992188 311.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.101562 311.300781 C 299.101562 311.183594 299.007812 311.089844 298.890625 311.089844 C 298.773438 311.089844 298.679688 311.183594 298.679688 311.300781 C 298.679688 311.417969 298.773438 311.511719 298.890625 311.511719 C 299.007812 311.511719 299.101562 311.417969 299.101562 311.300781 Z M 299.101562 311.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.148438 308.601562 C 298.148438 308.484375 298.054688 308.390625 297.9375 308.390625 C 297.820312 308.390625 297.726562 308.484375 297.726562 308.601562 C 297.726562 308.71875 297.820312 308.8125 297.9375 308.8125 C 298.054688 308.8125 298.148438 308.71875 298.148438 308.601562 Z M 298.148438 308.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.398438 310.496094 C 296.398438 310.378906 296.304688 310.285156 296.1875 310.285156 C 296.070312 310.285156 295.976562 310.378906 295.976562 310.496094 C 295.976562 310.613281 296.070312 310.707031 296.1875 310.707031 C 296.304688 310.707031 296.398438 310.613281 296.398438 310.496094 Z M 296.398438 310.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.347656 309.503906 C 296.347656 309.386719 296.253906 309.292969 296.136719 309.292969 C 296.019531 309.292969 295.925781 309.386719 295.925781 309.503906 C 295.925781 309.621094 296.019531 309.714844 296.136719 309.714844 C 296.253906 309.714844 296.347656 309.621094 296.347656 309.503906 Z M 296.347656 309.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.996094 311.105469 C 298.996094 310.988281 298.902344 310.894531 298.785156 310.894531 C 298.667969 310.894531 298.574219 310.988281 298.574219 311.105469 C 298.574219 311.222656 298.667969 311.316406 298.785156 311.316406 C 298.902344 311.316406 298.996094 311.222656 298.996094 311.105469 Z M 298.996094 311.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.054688 311.113281 C 299.054688 310.996094 298.960938 310.902344 298.84375 310.902344 C 298.726562 310.902344 298.632812 310.996094 298.632812 311.113281 C 298.632812 311.230469 298.726562 311.324219 298.84375 311.324219 C 298.960938 311.324219 299.054688 311.230469 299.054688 311.113281 Z M 299.054688 311.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.101562 313.816406 C 297.101562 313.699219 297.007812 313.605469 296.890625 313.605469 C 296.773438 313.605469 296.679688 313.699219 296.679688 313.816406 C 296.679688 313.933594 296.773438 314.027344 296.890625 314.027344 C 297.007812 314.027344 297.101562 313.933594 297.101562 313.816406 Z M 297.101562 313.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.488281 314.515625 C 298.488281 314.398438 298.394531 314.304688 298.277344 314.304688 C 298.160156 314.304688 298.066406 314.398438 298.066406 314.515625 C 298.066406 314.632812 298.160156 314.726562 298.277344 314.726562 C 298.394531 314.726562 298.488281 314.632812 298.488281 314.515625 Z M 298.488281 314.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.496094 311.738281 C 297.496094 311.621094 297.402344 311.527344 297.285156 311.527344 C 297.167969 311.527344 297.074219 311.621094 297.074219 311.738281 C 297.074219 311.855469 297.167969 311.949219 297.285156 311.949219 C 297.402344 311.949219 297.496094 311.855469 297.496094 311.738281 Z M 297.496094 311.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.328125 312.167969 C 295.328125 312.050781 295.234375 311.957031 295.117188 311.957031 C 295 311.957031 294.90625 312.050781 294.90625 312.167969 C 294.90625 312.285156 295 312.378906 295.117188 312.378906 C 295.234375 312.378906 295.328125 312.285156 295.328125 312.167969 Z M 295.328125 312.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.898438 311.15625 C 294.898438 311.039062 294.804688 310.945312 294.6875 310.945312 C 294.570312 310.945312 294.476562 311.039062 294.476562 311.15625 C 294.476562 311.273438 294.570312 311.367188 294.6875 311.367188 C 294.804688 311.367188 294.898438 311.273438 294.898438 311.15625 Z M 294.898438 311.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.675781 308.351562 C 296.675781 308.234375 296.582031 308.140625 296.464844 308.140625 C 296.347656 308.140625 296.253906 308.234375 296.253906 308.351562 C 296.253906 308.46875 296.347656 308.5625 296.464844 308.5625 C 296.582031 308.5625 296.675781 308.46875 296.675781 308.351562 Z M 296.675781 308.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.238281 305.257812 C 296.238281 305.140625 296.144531 305.046875 296.027344 305.046875 C 295.910156 305.046875 295.816406 305.140625 295.816406 305.257812 C 295.816406 305.375 295.910156 305.46875 296.027344 305.46875 C 296.144531 305.46875 296.238281 305.375 296.238281 305.257812 Z M 296.238281 305.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.152344 307.140625 C 296.152344 307.023438 296.058594 306.929688 295.941406 306.929688 C 295.824219 306.929688 295.730469 307.023438 295.730469 307.140625 C 295.730469 307.257812 295.824219 307.351562 295.941406 307.351562 C 296.058594 307.351562 296.152344 307.257812 296.152344 307.140625 Z M 296.152344 307.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.785156 304.683594 C 293.785156 304.566406 293.691406 304.472656 293.574219 304.472656 C 293.457031 304.472656 293.363281 304.566406 293.363281 304.683594 C 293.363281 304.800781 293.457031 304.894531 293.574219 304.894531 C 293.691406 304.894531 293.785156 304.800781 293.785156 304.683594 Z M 293.785156 304.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.878906 303.214844 C 291.878906 303.097656 291.785156 303.003906 291.667969 303.003906 C 291.550781 303.003906 291.457031 303.097656 291.457031 303.214844 C 291.457031 303.332031 291.550781 303.425781 291.667969 303.425781 C 291.785156 303.425781 291.878906 303.332031 291.878906 303.214844 Z M 291.878906 303.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.84375 303.738281 C 292.84375 303.621094 292.75 303.527344 292.632812 303.527344 C 292.515625 303.527344 292.421875 303.621094 292.421875 303.738281 C 292.421875 303.855469 292.515625 303.949219 292.632812 303.949219 C 292.75 303.949219 292.84375 303.855469 292.84375 303.738281 Z M 292.84375 303.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.410156 303.265625 C 295.410156 303.148438 295.316406 303.054688 295.199219 303.054688 C 295.082031 303.054688 294.988281 303.148438 294.988281 303.265625 C 294.988281 303.382812 295.082031 303.476562 295.199219 303.476562 C 295.316406 303.476562 295.410156 303.382812 295.410156 303.265625 Z M 295.410156 303.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.40625 307.179688 C 295.40625 307.0625 295.3125 306.96875 295.195312 306.96875 C 295.078125 306.96875 294.984375 307.0625 294.984375 307.179688 C 294.984375 307.296875 295.078125 307.390625 295.195312 307.390625 C 295.3125 307.390625 295.40625 307.296875 295.40625 307.179688 Z M 295.40625 307.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.984375 305.394531 C 296.984375 305.277344 296.890625 305.183594 296.773438 305.183594 C 296.65625 305.183594 296.5625 305.277344 296.5625 305.394531 C 296.5625 305.511719 296.65625 305.605469 296.773438 305.605469 C 296.890625 305.605469 296.984375 305.511719 296.984375 305.394531 Z M 296.984375 305.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.003906 304.773438 C 294.003906 304.65625 293.910156 304.5625 293.792969 304.5625 C 293.675781 304.5625 293.582031 304.65625 293.582031 304.773438 C 293.582031 304.890625 293.675781 304.984375 293.792969 304.984375 C 293.910156 304.984375 294.003906 304.890625 294.003906 304.773438 Z M 294.003906 304.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.03125 305.496094 C 295.03125 305.378906 294.9375 305.285156 294.820312 305.285156 C 294.703125 305.285156 294.609375 305.378906 294.609375 305.496094 C 294.609375 305.613281 294.703125 305.707031 294.820312 305.707031 C 294.9375 305.707031 295.03125 305.613281 295.03125 305.496094 Z M 295.03125 305.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.179688 306.714844 C 292.179688 306.597656 292.085938 306.503906 291.96875 306.503906 C 291.851562 306.503906 291.757812 306.597656 291.757812 306.714844 C 291.757812 306.832031 291.851562 306.925781 291.96875 306.925781 C 292.085938 306.925781 292.179688 306.832031 292.179688 306.714844 Z M 292.179688 306.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.839844 307.246094 C 293.839844 307.128906 293.746094 307.035156 293.628906 307.035156 C 293.511719 307.035156 293.417969 307.128906 293.417969 307.246094 C 293.417969 307.363281 293.511719 307.457031 293.628906 307.457031 C 293.746094 307.457031 293.839844 307.363281 293.839844 307.246094 Z M 293.839844 307.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.214844 306.742188 C 293.214844 306.625 293.121094 306.53125 293.003906 306.53125 C 292.886719 306.53125 292.792969 306.625 292.792969 306.742188 C 292.792969 306.859375 292.886719 306.953125 293.003906 306.953125 C 293.121094 306.953125 293.214844 306.859375 293.214844 306.742188 Z M 293.214844 306.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.207031 309.0625 C 296.207031 308.945312 296.113281 308.851562 295.996094 308.851562 C 295.878906 308.851562 295.785156 308.945312 295.785156 309.0625 C 295.785156 309.179688 295.878906 309.273438 295.996094 309.273438 C 296.113281 309.273438 296.207031 309.179688 296.207031 309.0625 Z M 296.207031 309.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.636719 306.988281 C 297.636719 306.871094 297.542969 306.777344 297.425781 306.777344 C 297.308594 306.777344 297.214844 306.871094 297.214844 306.988281 C 297.214844 307.105469 297.308594 307.199219 297.425781 307.199219 C 297.542969 307.199219 297.636719 307.105469 297.636719 306.988281 Z M 297.636719 306.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.023438 307.3125 C 297.023438 307.195312 296.929688 307.101562 296.8125 307.101562 C 296.695312 307.101562 296.601562 307.195312 296.601562 307.3125 C 296.601562 307.429688 296.695312 307.523438 296.8125 307.523438 C 296.929688 307.523438 297.023438 307.429688 297.023438 307.3125 Z M 297.023438 307.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.992188 308.054688 C 296.992188 307.9375 296.898438 307.84375 296.78125 307.84375 C 296.664062 307.84375 296.570312 307.9375 296.570312 308.054688 C 296.570312 308.171875 296.664062 308.265625 296.78125 308.265625 C 296.898438 308.265625 296.992188 308.171875 296.992188 308.054688 Z M 296.992188 308.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.433594 308.246094 C 297.433594 308.128906 297.339844 308.035156 297.222656 308.035156 C 297.105469 308.035156 297.011719 308.128906 297.011719 308.246094 C 297.011719 308.363281 297.105469 308.457031 297.222656 308.457031 C 297.339844 308.457031 297.433594 308.363281 297.433594 308.246094 Z M 297.433594 308.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.335938 306.300781 C 299.335938 306.183594 299.242188 306.089844 299.125 306.089844 C 299.007812 306.089844 298.914062 306.183594 298.914062 306.300781 C 298.914062 306.417969 299.007812 306.511719 299.125 306.511719 C 299.242188 306.511719 299.335938 306.417969 299.335938 306.300781 Z M 299.335938 306.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.980469 306.078125 C 300.980469 305.960938 300.886719 305.867188 300.769531 305.867188 C 300.652344 305.867188 300.558594 305.960938 300.558594 306.078125 C 300.558594 306.195312 300.652344 306.289062 300.769531 306.289062 C 300.886719 306.289062 300.980469 306.195312 300.980469 306.078125 Z M 300.980469 306.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.898438 303.757812 C 301.898438 303.640625 301.804688 303.546875 301.6875 303.546875 C 301.570312 303.546875 301.476562 303.640625 301.476562 303.757812 C 301.476562 303.875 301.570312 303.96875 301.6875 303.96875 C 301.804688 303.96875 301.898438 303.875 301.898438 303.757812 Z M 301.898438 303.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.675781 302.03125 C 302.675781 301.914062 302.582031 301.820312 302.464844 301.820312 C 302.347656 301.820312 302.253906 301.914062 302.253906 302.03125 C 302.253906 302.148438 302.347656 302.242188 302.464844 302.242188 C 302.582031 302.242188 302.675781 302.148438 302.675781 302.03125 Z M 302.675781 302.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.386719 300.8125 C 304.386719 300.695312 304.292969 300.601562 304.175781 300.601562 C 304.058594 300.601562 303.964844 300.695312 303.964844 300.8125 C 303.964844 300.929688 304.058594 301.023438 304.175781 301.023438 C 304.292969 301.023438 304.386719 300.929688 304.386719 300.8125 Z M 304.386719 300.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.007812 301.109375 C 296.007812 300.992188 295.914062 300.898438 295.796875 300.898438 C 295.679688 300.898438 295.585938 300.992188 295.585938 301.109375 C 295.585938 301.226562 295.679688 301.320312 295.796875 301.320312 C 295.914062 301.320312 296.007812 301.226562 296.007812 301.109375 Z M 296.007812 301.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.957031 300.015625 C 293.957031 299.898438 293.863281 299.804688 293.746094 299.804688 C 293.628906 299.804688 293.535156 299.898438 293.535156 300.015625 C 293.535156 300.132812 293.628906 300.226562 293.746094 300.226562 C 293.863281 300.226562 293.957031 300.132812 293.957031 300.015625 Z M 293.957031 300.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.421875 299.457031 C 291.421875 299.339844 291.328125 299.246094 291.210938 299.246094 C 291.09375 299.246094 291 299.339844 291 299.457031 C 291 299.574219 291.09375 299.667969 291.210938 299.667969 C 291.328125 299.667969 291.421875 299.574219 291.421875 299.457031 Z M 291.421875 299.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.257812 298.648438 C 289.257812 298.53125 289.164062 298.4375 289.046875 298.4375 C 288.929688 298.4375 288.835938 298.53125 288.835938 298.648438 C 288.835938 298.765625 288.929688 298.859375 289.046875 298.859375 C 289.164062 298.859375 289.257812 298.765625 289.257812 298.648438 Z M 289.257812 298.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.492188 295.238281 C 291.492188 295.121094 291.398438 295.027344 291.28125 295.027344 C 291.164062 295.027344 291.070312 295.121094 291.070312 295.238281 C 291.070312 295.355469 291.164062 295.449219 291.28125 295.449219 C 291.398438 295.449219 291.492188 295.355469 291.492188 295.238281 Z M 291.492188 295.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.304688 292.210938 C 290.304688 292.09375 290.210938 292 290.09375 292 C 289.976562 292 289.882812 292.09375 289.882812 292.210938 C 289.882812 292.328125 289.976562 292.421875 290.09375 292.421875 C 290.210938 292.421875 290.304688 292.328125 290.304688 292.210938 Z M 290.304688 292.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.28125 288.175781 C 287.28125 288.058594 287.1875 287.964844 287.070312 287.964844 C 286.953125 287.964844 286.859375 288.058594 286.859375 288.175781 C 286.859375 288.292969 286.953125 288.386719 287.070312 288.386719 C 287.1875 288.386719 287.28125 288.292969 287.28125 288.175781 Z M 287.28125 288.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.964844 287.214844 C 283.964844 287.097656 283.871094 287.003906 283.753906 287.003906 C 283.636719 287.003906 283.542969 287.097656 283.542969 287.214844 C 283.542969 287.332031 283.636719 287.425781 283.753906 287.425781 C 283.871094 287.425781 283.964844 287.332031 283.964844 287.214844 Z M 283.964844 287.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.949219 286.484375 C 282.949219 286.367188 282.855469 286.273438 282.738281 286.273438 C 282.621094 286.273438 282.527344 286.367188 282.527344 286.484375 C 282.527344 286.601562 282.621094 286.695312 282.738281 286.695312 C 282.855469 286.695312 282.949219 286.601562 282.949219 286.484375 Z M 282.949219 286.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.640625 283.875 C 279.640625 283.757812 279.546875 283.664062 279.429688 283.664062 C 279.3125 283.664062 279.21875 283.757812 279.21875 283.875 C 279.21875 283.992188 279.3125 284.085938 279.429688 284.085938 C 279.546875 284.085938 279.640625 283.992188 279.640625 283.875 Z M 279.640625 283.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.132812 280.472656 C 282.132812 280.355469 282.039062 280.261719 281.921875 280.261719 C 281.804688 280.261719 281.710938 280.355469 281.710938 280.472656 C 281.710938 280.589844 281.804688 280.683594 281.921875 280.683594 C 282.039062 280.683594 282.132812 280.589844 282.132812 280.472656 Z M 282.132812 280.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.246094 275.113281 C 281.246094 274.996094 281.152344 274.902344 281.035156 274.902344 C 280.917969 274.902344 280.824219 274.996094 280.824219 275.113281 C 280.824219 275.230469 280.917969 275.324219 281.035156 275.324219 C 281.152344 275.324219 281.246094 275.230469 281.246094 275.113281 Z M 281.246094 275.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.140625 276.519531 C 282.140625 276.402344 282.046875 276.308594 281.929688 276.308594 C 281.8125 276.308594 281.71875 276.402344 281.71875 276.519531 C 281.71875 276.636719 281.8125 276.730469 281.929688 276.730469 C 282.046875 276.730469 282.140625 276.636719 282.140625 276.519531 Z M 282.140625 276.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.210938 278.4375 C 282.210938 278.320312 282.117188 278.226562 282 278.226562 C 281.882812 278.226562 281.789062 278.320312 281.789062 278.4375 C 281.789062 278.554688 281.882812 278.648438 282 278.648438 C 282.117188 278.648438 282.210938 278.554688 282.210938 278.4375 Z M 282.210938 278.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.15625 281.285156 C 281.15625 281.167969 281.0625 281.074219 280.945312 281.074219 C 280.828125 281.074219 280.734375 281.167969 280.734375 281.285156 C 280.734375 281.402344 280.828125 281.496094 280.945312 281.496094 C 281.0625 281.496094 281.15625 281.402344 281.15625 281.285156 Z M 281.15625 281.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.894531 278.507812 C 283.894531 278.390625 283.800781 278.296875 283.683594 278.296875 C 283.566406 278.296875 283.472656 278.390625 283.472656 278.507812 C 283.472656 278.625 283.566406 278.71875 283.683594 278.71875 C 283.800781 278.71875 283.894531 278.625 283.894531 278.507812 Z M 283.894531 278.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.1875 277.191406 C 287.1875 277.074219 287.09375 276.980469 286.976562 276.980469 C 286.859375 276.980469 286.765625 277.074219 286.765625 277.191406 C 286.765625 277.308594 286.859375 277.402344 286.976562 277.402344 C 287.09375 277.402344 287.1875 277.308594 287.1875 277.191406 Z M 287.1875 277.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.085938 277.269531 C 288.085938 277.152344 287.992188 277.058594 287.875 277.058594 C 287.757812 277.058594 287.664062 277.152344 287.664062 277.269531 C 287.664062 277.386719 287.757812 277.480469 287.875 277.480469 C 287.992188 277.480469 288.085938 277.386719 288.085938 277.269531 Z M 288.085938 277.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.421875 279.917969 C 288.421875 279.800781 288.328125 279.707031 288.210938 279.707031 C 288.09375 279.707031 288 279.800781 288 279.917969 C 288 280.035156 288.09375 280.128906 288.210938 280.128906 C 288.328125 280.128906 288.421875 280.035156 288.421875 279.917969 Z M 288.421875 279.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.609375 278.789062 C 288.609375 278.671875 288.515625 278.578125 288.398438 278.578125 C 288.28125 278.578125 288.1875 278.671875 288.1875 278.789062 C 288.1875 278.90625 288.28125 279 288.398438 279 C 288.515625 279 288.609375 278.90625 288.609375 278.789062 Z M 288.609375 278.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.671875 276.984375 C 286.671875 276.867188 286.578125 276.773438 286.460938 276.773438 C 286.34375 276.773438 286.25 276.867188 286.25 276.984375 C 286.25 277.101562 286.34375 277.195312 286.460938 277.195312 C 286.578125 277.195312 286.671875 277.101562 286.671875 276.984375 Z M 286.671875 276.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.476562 276.355469 C 285.476562 276.238281 285.382812 276.144531 285.265625 276.144531 C 285.148438 276.144531 285.054688 276.238281 285.054688 276.355469 C 285.054688 276.472656 285.148438 276.566406 285.265625 276.566406 C 285.382812 276.566406 285.476562 276.472656 285.476562 276.355469 Z M 285.476562 276.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.191406 275.886719 C 284.191406 275.769531 284.097656 275.675781 283.980469 275.675781 C 283.863281 275.675781 283.769531 275.769531 283.769531 275.886719 C 283.769531 276.003906 283.863281 276.097656 283.980469 276.097656 C 284.097656 276.097656 284.191406 276.003906 284.191406 275.886719 Z M 284.191406 275.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.339844 275.917969 C 286.339844 275.800781 286.246094 275.707031 286.128906 275.707031 C 286.011719 275.707031 285.917969 275.800781 285.917969 275.917969 C 285.917969 276.035156 286.011719 276.128906 286.128906 276.128906 C 286.246094 276.128906 286.339844 276.035156 286.339844 275.917969 Z M 286.339844 275.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.003906 277.03125 C 286.003906 276.914062 285.910156 276.820312 285.792969 276.820312 C 285.675781 276.820312 285.582031 276.914062 285.582031 277.03125 C 285.582031 277.148438 285.675781 277.242188 285.792969 277.242188 C 285.910156 277.242188 286.003906 277.148438 286.003906 277.03125 Z M 286.003906 277.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.910156 275.15625 C 281.910156 275.039062 281.816406 274.945312 281.699219 274.945312 C 281.582031 274.945312 281.488281 275.039062 281.488281 275.15625 C 281.488281 275.273438 281.582031 275.367188 281.699219 275.367188 C 281.816406 275.367188 281.910156 275.273438 281.910156 275.15625 Z M 281.910156 275.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.398438 271.9375 C 283.398438 271.820312 283.304688 271.726562 283.1875 271.726562 C 283.070312 271.726562 282.976562 271.820312 282.976562 271.9375 C 282.976562 272.054688 283.070312 272.148438 283.1875 272.148438 C 283.304688 272.148438 283.398438 272.054688 283.398438 271.9375 Z M 283.398438 271.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.097656 269.242188 C 286.097656 269.125 286.003906 269.03125 285.886719 269.03125 C 285.769531 269.03125 285.675781 269.125 285.675781 269.242188 C 285.675781 269.359375 285.769531 269.453125 285.886719 269.453125 C 286.003906 269.453125 286.097656 269.359375 286.097656 269.242188 Z M 286.097656 269.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.9375 267.769531 C 284.9375 267.652344 284.84375 267.558594 284.726562 267.558594 C 284.609375 267.558594 284.515625 267.652344 284.515625 267.769531 C 284.515625 267.886719 284.609375 267.980469 284.726562 267.980469 C 284.84375 267.980469 284.9375 267.886719 284.9375 267.769531 Z M 284.9375 267.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.289062 269.855469 C 284.289062 269.738281 284.195312 269.644531 284.078125 269.644531 C 283.960938 269.644531 283.867188 269.738281 283.867188 269.855469 C 283.867188 269.972656 283.960938 270.066406 284.078125 270.066406 C 284.195312 270.066406 284.289062 269.972656 284.289062 269.855469 Z M 284.289062 269.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.273438 269.941406 C 286.273438 269.824219 286.179688 269.730469 286.0625 269.730469 C 285.945312 269.730469 285.851562 269.824219 285.851562 269.941406 C 285.851562 270.058594 285.945312 270.152344 286.0625 270.152344 C 286.179688 270.152344 286.273438 270.058594 286.273438 269.941406 Z M 286.273438 269.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.242188 268.738281 C 287.242188 268.621094 287.148438 268.527344 287.03125 268.527344 C 286.914062 268.527344 286.820312 268.621094 286.820312 268.738281 C 286.820312 268.855469 286.914062 268.949219 287.03125 268.949219 C 287.148438 268.949219 287.242188 268.855469 287.242188 268.738281 Z M 287.242188 268.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.847656 266.789062 C 285.847656 266.671875 285.753906 266.578125 285.636719 266.578125 C 285.519531 266.578125 285.425781 266.671875 285.425781 266.789062 C 285.425781 266.90625 285.519531 267 285.636719 267 C 285.753906 267 285.847656 266.90625 285.847656 266.789062 Z M 285.847656 266.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.335938 266.835938 C 286.335938 266.71875 286.242188 266.625 286.125 266.625 C 286.007812 266.625 285.914062 266.71875 285.914062 266.835938 C 285.914062 266.953125 286.007812 267.046875 286.125 267.046875 C 286.242188 267.046875 286.335938 266.953125 286.335938 266.835938 Z M 286.335938 266.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.386719 267.222656 C 288.386719 267.105469 288.292969 267.011719 288.175781 267.011719 C 288.058594 267.011719 287.964844 267.105469 287.964844 267.222656 C 287.964844 267.339844 288.058594 267.433594 288.175781 267.433594 C 288.292969 267.433594 288.386719 267.339844 288.386719 267.222656 Z M 288.386719 267.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.464844 263.996094 C 287.464844 263.878906 287.371094 263.785156 287.253906 263.785156 C 287.136719 263.785156 287.042969 263.878906 287.042969 263.996094 C 287.042969 264.113281 287.136719 264.207031 287.253906 264.207031 C 287.371094 264.207031 287.464844 264.113281 287.464844 263.996094 Z M 287.464844 263.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.425781 264.257812 C 287.425781 264.140625 287.332031 264.046875 287.214844 264.046875 C 287.097656 264.046875 287.003906 264.140625 287.003906 264.257812 C 287.003906 264.375 287.097656 264.46875 287.214844 264.46875 C 287.332031 264.46875 287.425781 264.375 287.425781 264.257812 Z M 287.425781 264.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.367188 266.359375 C 287.367188 266.242188 287.273438 266.148438 287.15625 266.148438 C 287.039062 266.148438 286.945312 266.242188 286.945312 266.359375 C 286.945312 266.476562 287.039062 266.570312 287.15625 266.570312 C 287.273438 266.570312 287.367188 266.476562 287.367188 266.359375 Z M 287.367188 266.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.988281 269.441406 C 287.988281 269.324219 287.894531 269.230469 287.777344 269.230469 C 287.660156 269.230469 287.566406 269.324219 287.566406 269.441406 C 287.566406 269.558594 287.660156 269.652344 287.777344 269.652344 C 287.894531 269.652344 287.988281 269.558594 287.988281 269.441406 Z M 287.988281 269.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.707031 269.226562 C 284.707031 269.109375 284.613281 269.015625 284.496094 269.015625 C 284.378906 269.015625 284.285156 269.109375 284.285156 269.226562 C 284.285156 269.34375 284.378906 269.4375 284.496094 269.4375 C 284.613281 269.4375 284.707031 269.34375 284.707031 269.226562 Z M 284.707031 269.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.804688 270.042969 C 288.804688 269.925781 288.710938 269.832031 288.59375 269.832031 C 288.476562 269.832031 288.382812 269.925781 288.382812 270.042969 C 288.382812 270.160156 288.476562 270.253906 288.59375 270.253906 C 288.710938 270.253906 288.804688 270.160156 288.804688 270.042969 Z M 288.804688 270.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.6875 269.8125 C 286.6875 269.695312 286.59375 269.601562 286.476562 269.601562 C 286.359375 269.601562 286.265625 269.695312 286.265625 269.8125 C 286.265625 269.929688 286.359375 270.023438 286.476562 270.023438 C 286.59375 270.023438 286.6875 269.929688 286.6875 269.8125 Z M 286.6875 269.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.300781 269.707031 C 289.300781 269.589844 289.207031 269.496094 289.089844 269.496094 C 288.972656 269.496094 288.878906 269.589844 288.878906 269.707031 C 288.878906 269.824219 288.972656 269.917969 289.089844 269.917969 C 289.207031 269.917969 289.300781 269.824219 289.300781 269.707031 Z M 289.300781 269.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.894531 273.265625 C 293.894531 273.148438 293.800781 273.054688 293.683594 273.054688 C 293.566406 273.054688 293.472656 273.148438 293.472656 273.265625 C 293.472656 273.382812 293.566406 273.476562 293.683594 273.476562 C 293.800781 273.476562 293.894531 273.382812 293.894531 273.265625 Z M 293.894531 273.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.5 274.679688 C 296.5 274.5625 296.40625 274.46875 296.289062 274.46875 C 296.171875 274.46875 296.078125 274.5625 296.078125 274.679688 C 296.078125 274.796875 296.171875 274.890625 296.289062 274.890625 C 296.40625 274.890625 296.5 274.796875 296.5 274.679688 Z M 296.5 274.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.09375 277.101562 C 295.09375 276.984375 295 276.890625 294.882812 276.890625 C 294.765625 276.890625 294.671875 276.984375 294.671875 277.101562 C 294.671875 277.21875 294.765625 277.3125 294.882812 277.3125 C 295 277.3125 295.09375 277.21875 295.09375 277.101562 Z M 295.09375 277.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.398438 280.269531 C 292.398438 280.152344 292.304688 280.058594 292.1875 280.058594 C 292.070312 280.058594 291.976562 280.152344 291.976562 280.269531 C 291.976562 280.386719 292.070312 280.480469 292.1875 280.480469 C 292.304688 280.480469 292.398438 280.386719 292.398438 280.269531 Z M 292.398438 280.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.167969 277.199219 C 289.167969 277.082031 289.074219 276.988281 288.957031 276.988281 C 288.839844 276.988281 288.746094 277.082031 288.746094 277.199219 C 288.746094 277.316406 288.839844 277.410156 288.957031 277.410156 C 289.074219 277.410156 289.167969 277.316406 289.167969 277.199219 Z M 289.167969 277.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.433594 278.480469 C 291.433594 278.363281 291.339844 278.269531 291.222656 278.269531 C 291.105469 278.269531 291.011719 278.363281 291.011719 278.480469 C 291.011719 278.597656 291.105469 278.691406 291.222656 278.691406 C 291.339844 278.691406 291.433594 278.597656 291.433594 278.480469 Z M 291.433594 278.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.847656 277.523438 C 289.847656 277.40625 289.753906 277.3125 289.636719 277.3125 C 289.519531 277.3125 289.425781 277.40625 289.425781 277.523438 C 289.425781 277.640625 289.519531 277.734375 289.636719 277.734375 C 289.753906 277.734375 289.847656 277.640625 289.847656 277.523438 Z M 289.847656 277.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.730469 278.578125 C 289.730469 278.460938 289.636719 278.367188 289.519531 278.367188 C 289.402344 278.367188 289.308594 278.460938 289.308594 278.578125 C 289.308594 278.695312 289.402344 278.789062 289.519531 278.789062 C 289.636719 278.789062 289.730469 278.695312 289.730469 278.578125 Z M 289.730469 278.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.363281 277.085938 C 289.363281 276.96875 289.269531 276.875 289.152344 276.875 C 289.035156 276.875 288.941406 276.96875 288.941406 277.085938 C 288.941406 277.203125 289.035156 277.296875 289.152344 277.296875 C 289.269531 277.296875 289.363281 277.203125 289.363281 277.085938 Z M 289.363281 277.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.117188 277.601562 C 292.117188 277.484375 292.023438 277.390625 291.90625 277.390625 C 291.789062 277.390625 291.695312 277.484375 291.695312 277.601562 C 291.695312 277.71875 291.789062 277.8125 291.90625 277.8125 C 292.023438 277.8125 292.117188 277.71875 292.117188 277.601562 Z M 292.117188 277.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.996094 274.9375 C 295.996094 274.820312 295.902344 274.726562 295.785156 274.726562 C 295.667969 274.726562 295.574219 274.820312 295.574219 274.9375 C 295.574219 275.054688 295.667969 275.148438 295.785156 275.148438 C 295.902344 275.148438 295.996094 275.054688 295.996094 274.9375 Z M 295.996094 274.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.761719 274.171875 C 298.761719 274.054688 298.667969 273.960938 298.550781 273.960938 C 298.433594 273.960938 298.339844 274.054688 298.339844 274.171875 C 298.339844 274.289062 298.433594 274.382812 298.550781 274.382812 C 298.667969 274.382812 298.761719 274.289062 298.761719 274.171875 Z M 298.761719 274.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.089844 274.992188 C 296.089844 274.875 295.996094 274.78125 295.878906 274.78125 C 295.761719 274.78125 295.667969 274.875 295.667969 274.992188 C 295.667969 275.109375 295.761719 275.203125 295.878906 275.203125 C 295.996094 275.203125 296.089844 275.109375 296.089844 274.992188 Z M 296.089844 274.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.265625 279.660156 C 290.265625 279.542969 290.171875 279.449219 290.054688 279.449219 C 289.9375 279.449219 289.84375 279.542969 289.84375 279.660156 C 289.84375 279.777344 289.9375 279.871094 290.054688 279.871094 C 290.171875 279.871094 290.265625 279.777344 290.265625 279.660156 Z M 290.265625 279.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.542969 278.644531 C 290.542969 278.527344 290.449219 278.433594 290.332031 278.433594 C 290.214844 278.433594 290.121094 278.527344 290.121094 278.644531 C 290.121094 278.761719 290.214844 278.855469 290.332031 278.855469 C 290.449219 278.855469 290.542969 278.761719 290.542969 278.644531 Z M 290.542969 278.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.847656 278.746094 C 285.847656 278.628906 285.753906 278.535156 285.636719 278.535156 C 285.519531 278.535156 285.425781 278.628906 285.425781 278.746094 C 285.425781 278.863281 285.519531 278.957031 285.636719 278.957031 C 285.753906 278.957031 285.847656 278.863281 285.847656 278.746094 Z M 285.847656 278.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.074219 277.71875 C 284.074219 277.601562 283.980469 277.507812 283.863281 277.507812 C 283.746094 277.507812 283.652344 277.601562 283.652344 277.71875 C 283.652344 277.835938 283.746094 277.929688 283.863281 277.929688 C 283.980469 277.929688 284.074219 277.835938 284.074219 277.71875 Z M 284.074219 277.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.550781 276.433594 C 287.550781 276.316406 287.457031 276.222656 287.339844 276.222656 C 287.222656 276.222656 287.128906 276.316406 287.128906 276.433594 C 287.128906 276.550781 287.222656 276.644531 287.339844 276.644531 C 287.457031 276.644531 287.550781 276.550781 287.550781 276.433594 Z M 287.550781 276.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.042969 276.566406 C 287.042969 276.449219 286.949219 276.355469 286.832031 276.355469 C 286.714844 276.355469 286.621094 276.449219 286.621094 276.566406 C 286.621094 276.683594 286.714844 276.777344 286.832031 276.777344 C 286.949219 276.777344 287.042969 276.683594 287.042969 276.566406 Z M 287.042969 276.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.820312 277.054688 C 289.820312 276.9375 289.726562 276.84375 289.609375 276.84375 C 289.492188 276.84375 289.398438 276.9375 289.398438 277.054688 C 289.398438 277.171875 289.492188 277.265625 289.609375 277.265625 C 289.726562 277.265625 289.820312 277.171875 289.820312 277.054688 Z M 289.820312 277.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.976562 277.847656 C 289.976562 277.730469 289.882812 277.636719 289.765625 277.636719 C 289.648438 277.636719 289.554688 277.730469 289.554688 277.847656 C 289.554688 277.964844 289.648438 278.058594 289.765625 278.058594 C 289.882812 278.058594 289.976562 277.964844 289.976562 277.847656 Z M 289.976562 277.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.4375 277.382812 C 291.4375 277.265625 291.34375 277.171875 291.226562 277.171875 C 291.109375 277.171875 291.015625 277.265625 291.015625 277.382812 C 291.015625 277.5 291.109375 277.59375 291.226562 277.59375 C 291.34375 277.59375 291.4375 277.5 291.4375 277.382812 Z M 291.4375 277.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.972656 276.289062 C 291.972656 276.171875 291.878906 276.078125 291.761719 276.078125 C 291.644531 276.078125 291.550781 276.171875 291.550781 276.289062 C 291.550781 276.40625 291.644531 276.5 291.761719 276.5 C 291.878906 276.5 291.972656 276.40625 291.972656 276.289062 Z M 291.972656 276.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.265625 273.855469 C 294.265625 273.738281 294.171875 273.644531 294.054688 273.644531 C 293.9375 273.644531 293.84375 273.738281 293.84375 273.855469 C 293.84375 273.972656 293.9375 274.066406 294.054688 274.066406 C 294.171875 274.066406 294.265625 273.972656 294.265625 273.855469 Z M 294.265625 273.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.519531 275.488281 C 293.519531 275.371094 293.425781 275.277344 293.308594 275.277344 C 293.191406 275.277344 293.097656 275.371094 293.097656 275.488281 C 293.097656 275.605469 293.191406 275.699219 293.308594 275.699219 C 293.425781 275.699219 293.519531 275.605469 293.519531 275.488281 Z M 293.519531 275.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.960938 275.828125 C 293.960938 275.710938 293.867188 275.617188 293.75 275.617188 C 293.632812 275.617188 293.539062 275.710938 293.539062 275.828125 C 293.539062 275.945312 293.632812 276.039062 293.75 276.039062 C 293.867188 276.039062 293.960938 275.945312 293.960938 275.828125 Z M 293.960938 275.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.21875 278.003906 C 294.21875 277.886719 294.125 277.792969 294.007812 277.792969 C 293.890625 277.792969 293.796875 277.886719 293.796875 278.003906 C 293.796875 278.121094 293.890625 278.214844 294.007812 278.214844 C 294.125 278.214844 294.21875 278.121094 294.21875 278.003906 Z M 294.21875 278.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.125 274.289062 C 294.125 274.171875 294.03125 274.078125 293.914062 274.078125 C 293.796875 274.078125 293.703125 274.171875 293.703125 274.289062 C 293.703125 274.40625 293.796875 274.5 293.914062 274.5 C 294.03125 274.5 294.125 274.40625 294.125 274.289062 Z M 294.125 274.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.921875 274.980469 C 290.921875 274.863281 290.828125 274.769531 290.710938 274.769531 C 290.59375 274.769531 290.5 274.863281 290.5 274.980469 C 290.5 275.097656 290.59375 275.191406 290.710938 275.191406 C 290.828125 275.191406 290.921875 275.097656 290.921875 274.980469 Z M 290.921875 274.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.542969 277.152344 C 293.542969 277.035156 293.449219 276.941406 293.332031 276.941406 C 293.214844 276.941406 293.121094 277.035156 293.121094 277.152344 C 293.121094 277.269531 293.214844 277.363281 293.332031 277.363281 C 293.449219 277.363281 293.542969 277.269531 293.542969 277.152344 Z M 293.542969 277.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.308594 277.675781 C 292.308594 277.558594 292.214844 277.464844 292.097656 277.464844 C 291.980469 277.464844 291.886719 277.558594 291.886719 277.675781 C 291.886719 277.792969 291.980469 277.886719 292.097656 277.886719 C 292.214844 277.886719 292.308594 277.792969 292.308594 277.675781 Z M 292.308594 277.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.945312 277.117188 C 292.945312 277 292.851562 276.90625 292.734375 276.90625 C 292.617188 276.90625 292.523438 277 292.523438 277.117188 C 292.523438 277.234375 292.617188 277.328125 292.734375 277.328125 C 292.851562 277.328125 292.945312 277.234375 292.945312 277.117188 Z M 292.945312 277.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.730469 284.363281 C 287.730469 284.246094 287.636719 284.152344 287.519531 284.152344 C 287.402344 284.152344 287.308594 284.246094 287.308594 284.363281 C 287.308594 284.480469 287.402344 284.574219 287.519531 284.574219 C 287.636719 284.574219 287.730469 284.480469 287.730469 284.363281 Z M 287.730469 284.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.03125 286.507812 C 284.03125 286.390625 283.9375 286.296875 283.820312 286.296875 C 283.703125 286.296875 283.609375 286.390625 283.609375 286.507812 C 283.609375 286.625 283.703125 286.71875 283.820312 286.71875 C 283.9375 286.71875 284.03125 286.625 284.03125 286.507812 Z M 284.03125 286.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.554688 286.109375 C 282.554688 285.992188 282.460938 285.898438 282.34375 285.898438 C 282.226562 285.898438 282.132812 285.992188 282.132812 286.109375 C 282.132812 286.226562 282.226562 286.320312 282.34375 286.320312 C 282.460938 286.320312 282.554688 286.226562 282.554688 286.109375 Z M 282.554688 286.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.863281 292.425781 C 284.863281 292.308594 284.769531 292.214844 284.652344 292.214844 C 284.535156 292.214844 284.441406 292.308594 284.441406 292.425781 C 284.441406 292.542969 284.535156 292.636719 284.652344 292.636719 C 284.769531 292.636719 284.863281 292.542969 284.863281 292.425781 Z M 284.863281 292.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.664062 294.925781 C 287.664062 294.808594 287.570312 294.714844 287.453125 294.714844 C 287.335938 294.714844 287.242188 294.808594 287.242188 294.925781 C 287.242188 295.042969 287.335938 295.136719 287.453125 295.136719 C 287.570312 295.136719 287.664062 295.042969 287.664062 294.925781 Z M 287.664062 294.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.855469 297.152344 C 289.855469 297.035156 289.761719 296.941406 289.644531 296.941406 C 289.527344 296.941406 289.433594 297.035156 289.433594 297.152344 C 289.433594 297.269531 289.527344 297.363281 289.644531 297.363281 C 289.761719 297.363281 289.855469 297.269531 289.855469 297.152344 Z M 289.855469 297.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.109375 293.90625 C 294.109375 293.789062 294.015625 293.695312 293.898438 293.695312 C 293.78125 293.695312 293.6875 293.789062 293.6875 293.90625 C 293.6875 294.023438 293.78125 294.117188 293.898438 294.117188 C 294.015625 294.117188 294.109375 294.023438 294.109375 293.90625 Z M 294.109375 293.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.480469 294.203125 C 294.480469 294.085938 294.386719 293.992188 294.269531 293.992188 C 294.152344 293.992188 294.058594 294.085938 294.058594 294.203125 C 294.058594 294.320312 294.152344 294.414062 294.269531 294.414062 C 294.386719 294.414062 294.480469 294.320312 294.480469 294.203125 Z M 294.480469 294.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.234375 296.808594 C 294.234375 296.691406 294.140625 296.597656 294.023438 296.597656 C 293.90625 296.597656 293.8125 296.691406 293.8125 296.808594 C 293.8125 296.925781 293.90625 297.019531 294.023438 297.019531 C 294.140625 297.019531 294.234375 296.925781 294.234375 296.808594 Z M 294.234375 296.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.054688 301.027344 C 291.054688 300.910156 290.960938 300.816406 290.84375 300.816406 C 290.726562 300.816406 290.632812 300.910156 290.632812 301.027344 C 290.632812 301.144531 290.726562 301.238281 290.84375 301.238281 C 290.960938 301.238281 291.054688 301.144531 291.054688 301.027344 Z M 291.054688 301.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.582031 296.144531 C 289.582031 296.027344 289.488281 295.933594 289.371094 295.933594 C 289.253906 295.933594 289.160156 296.027344 289.160156 296.144531 C 289.160156 296.261719 289.253906 296.355469 289.371094 296.355469 C 289.488281 296.355469 289.582031 296.261719 289.582031 296.144531 Z M 289.582031 296.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.117188 293.46875 C 291.117188 293.351562 291.023438 293.257812 290.90625 293.257812 C 290.789062 293.257812 290.695312 293.351562 290.695312 293.46875 C 290.695312 293.585938 290.789062 293.679688 290.90625 293.679688 C 291.023438 293.679688 291.117188 293.585938 291.117188 293.46875 Z M 291.117188 293.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.160156 298.980469 C 288.160156 298.863281 288.066406 298.769531 287.949219 298.769531 C 287.832031 298.769531 287.738281 298.863281 287.738281 298.980469 C 287.738281 299.097656 287.832031 299.191406 287.949219 299.191406 C 288.066406 299.191406 288.160156 299.097656 288.160156 298.980469 Z M 288.160156 298.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.371094 300.179688 C 288.371094 300.0625 288.277344 299.96875 288.160156 299.96875 C 288.042969 299.96875 287.949219 300.0625 287.949219 300.179688 C 287.949219 300.296875 288.042969 300.390625 288.160156 300.390625 C 288.277344 300.390625 288.371094 300.296875 288.371094 300.179688 Z M 288.371094 300.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.777344 302.53125 C 288.777344 302.414062 288.683594 302.320312 288.566406 302.320312 C 288.449219 302.320312 288.355469 302.414062 288.355469 302.53125 C 288.355469 302.648438 288.449219 302.742188 288.566406 302.742188 C 288.683594 302.742188 288.777344 302.648438 288.777344 302.53125 Z M 288.777344 302.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.351562 302.523438 C 289.351562 302.40625 289.257812 302.3125 289.140625 302.3125 C 289.023438 302.3125 288.929688 302.40625 288.929688 302.523438 C 288.929688 302.640625 289.023438 302.734375 289.140625 302.734375 C 289.257812 302.734375 289.351562 302.640625 289.351562 302.523438 Z M 289.351562 302.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.128906 303.707031 C 291.128906 303.589844 291.035156 303.496094 290.917969 303.496094 C 290.800781 303.496094 290.707031 303.589844 290.707031 303.707031 C 290.707031 303.824219 290.800781 303.917969 290.917969 303.917969 C 291.035156 303.917969 291.128906 303.824219 291.128906 303.707031 Z M 291.128906 303.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.554688 302.015625 C 294.554688 301.898438 294.460938 301.804688 294.34375 301.804688 C 294.226562 301.804688 294.132812 301.898438 294.132812 302.015625 C 294.132812 302.132812 294.226562 302.226562 294.34375 302.226562 C 294.460938 302.226562 294.554688 302.132812 294.554688 302.015625 Z M 294.554688 302.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.523438 303.417969 C 291.523438 303.300781 291.429688 303.207031 291.3125 303.207031 C 291.195312 303.207031 291.101562 303.300781 291.101562 303.417969 C 291.101562 303.535156 291.195312 303.628906 291.3125 303.628906 C 291.429688 303.628906 291.523438 303.535156 291.523438 303.417969 Z M 291.523438 303.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.832031 302.382812 C 289.832031 302.265625 289.738281 302.171875 289.621094 302.171875 C 289.503906 302.171875 289.410156 302.265625 289.410156 302.382812 C 289.410156 302.5 289.503906 302.59375 289.621094 302.59375 C 289.738281 302.59375 289.832031 302.5 289.832031 302.382812 Z M 289.832031 302.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.152344 302.121094 C 288.152344 302.003906 288.058594 301.910156 287.941406 301.910156 C 287.824219 301.910156 287.730469 302.003906 287.730469 302.121094 C 287.730469 302.238281 287.824219 302.332031 287.941406 302.332031 C 288.058594 302.332031 288.152344 302.238281 288.152344 302.121094 Z M 288.152344 302.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.820312 298.496094 C 286.820312 298.378906 286.726562 298.285156 286.609375 298.285156 C 286.492188 298.285156 286.398438 298.378906 286.398438 298.496094 C 286.398438 298.613281 286.492188 298.707031 286.609375 298.707031 C 286.726562 298.707031 286.820312 298.613281 286.820312 298.496094 Z M 286.820312 298.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.214844 299.851562 C 289.214844 299.734375 289.121094 299.640625 289.003906 299.640625 C 288.886719 299.640625 288.792969 299.734375 288.792969 299.851562 C 288.792969 299.96875 288.886719 300.0625 289.003906 300.0625 C 289.121094 300.0625 289.214844 299.96875 289.214844 299.851562 Z M 289.214844 299.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.710938 301.917969 C 289.710938 301.800781 289.617188 301.707031 289.5 301.707031 C 289.382812 301.707031 289.289062 301.800781 289.289062 301.917969 C 289.289062 302.035156 289.382812 302.128906 289.5 302.128906 C 289.617188 302.128906 289.710938 302.035156 289.710938 301.917969 Z M 289.710938 301.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.804688 300.1875 C 292.804688 300.070312 292.710938 299.976562 292.59375 299.976562 C 292.476562 299.976562 292.382812 300.070312 292.382812 300.1875 C 292.382812 300.304688 292.476562 300.398438 292.59375 300.398438 C 292.710938 300.398438 292.804688 300.304688 292.804688 300.1875 Z M 292.804688 300.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.503906 299.355469 C 292.503906 299.238281 292.410156 299.144531 292.292969 299.144531 C 292.175781 299.144531 292.082031 299.238281 292.082031 299.355469 C 292.082031 299.472656 292.175781 299.566406 292.292969 299.566406 C 292.410156 299.566406 292.503906 299.472656 292.503906 299.355469 Z M 292.503906 299.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.515625 298.347656 C 288.515625 298.230469 288.421875 298.136719 288.304688 298.136719 C 288.1875 298.136719 288.09375 298.230469 288.09375 298.347656 C 288.09375 298.464844 288.1875 298.558594 288.304688 298.558594 C 288.421875 298.558594 288.515625 298.464844 288.515625 298.347656 Z M 288.515625 298.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.703125 299.097656 C 285.703125 298.980469 285.609375 298.886719 285.492188 298.886719 C 285.375 298.886719 285.28125 298.980469 285.28125 299.097656 C 285.28125 299.214844 285.375 299.308594 285.492188 299.308594 C 285.609375 299.308594 285.703125 299.214844 285.703125 299.097656 Z M 285.703125 299.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.664062 297.339844 C 284.664062 297.222656 284.570312 297.128906 284.453125 297.128906 C 284.335938 297.128906 284.242188 297.222656 284.242188 297.339844 C 284.242188 297.457031 284.335938 297.550781 284.453125 297.550781 C 284.570312 297.550781 284.664062 297.457031 284.664062 297.339844 Z M 284.664062 297.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.421875 297.929688 C 286.421875 297.8125 286.328125 297.71875 286.210938 297.71875 C 286.09375 297.71875 286 297.8125 286 297.929688 C 286 298.046875 286.09375 298.140625 286.210938 298.140625 C 286.328125 298.140625 286.421875 298.046875 286.421875 297.929688 Z M 286.421875 297.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.546875 297.515625 C 284.546875 297.398438 284.453125 297.304688 284.335938 297.304688 C 284.21875 297.304688 284.125 297.398438 284.125 297.515625 C 284.125 297.632812 284.21875 297.726562 284.335938 297.726562 C 284.453125 297.726562 284.546875 297.632812 284.546875 297.515625 Z M 284.546875 297.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.703125 296.183594 C 286.703125 296.066406 286.609375 295.972656 286.492188 295.972656 C 286.375 295.972656 286.28125 296.066406 286.28125 296.183594 C 286.28125 296.300781 286.375 296.394531 286.492188 296.394531 C 286.609375 296.394531 286.703125 296.300781 286.703125 296.183594 Z M 286.703125 296.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.632812 297.578125 C 288.632812 297.460938 288.539062 297.367188 288.421875 297.367188 C 288.304688 297.367188 288.210938 297.460938 288.210938 297.578125 C 288.210938 297.695312 288.304688 297.789062 288.421875 297.789062 C 288.539062 297.789062 288.632812 297.695312 288.632812 297.578125 Z M 288.632812 297.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.304688 297.453125 C 287.304688 297.335938 287.210938 297.242188 287.09375 297.242188 C 286.976562 297.242188 286.882812 297.335938 286.882812 297.453125 C 286.882812 297.570312 286.976562 297.664062 287.09375 297.664062 C 287.210938 297.664062 287.304688 297.570312 287.304688 297.453125 Z M 287.304688 297.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.222656 300.152344 C 288.222656 300.035156 288.128906 299.941406 288.011719 299.941406 C 287.894531 299.941406 287.800781 300.035156 287.800781 300.152344 C 287.800781 300.269531 287.894531 300.363281 288.011719 300.363281 C 288.128906 300.363281 288.222656 300.269531 288.222656 300.152344 Z M 288.222656 300.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.726562 299.453125 C 284.726562 299.335938 284.632812 299.242188 284.515625 299.242188 C 284.398438 299.242188 284.304688 299.335938 284.304688 299.453125 C 284.304688 299.570312 284.398438 299.664062 284.515625 299.664062 C 284.632812 299.664062 284.726562 299.570312 284.726562 299.453125 Z M 284.726562 299.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.394531 297.867188 C 286.394531 297.75 286.300781 297.65625 286.183594 297.65625 C 286.066406 297.65625 285.972656 297.75 285.972656 297.867188 C 285.972656 297.984375 286.066406 298.078125 286.183594 298.078125 C 286.300781 298.078125 286.394531 297.984375 286.394531 297.867188 Z M 286.394531 297.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.175781 297.09375 C 287.175781 296.976562 287.082031 296.882812 286.964844 296.882812 C 286.847656 296.882812 286.753906 296.976562 286.753906 297.09375 C 286.753906 297.210938 286.847656 297.304688 286.964844 297.304688 C 287.082031 297.304688 287.175781 297.210938 287.175781 297.09375 Z M 287.175781 297.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.792969 295.535156 C 288.792969 295.417969 288.699219 295.324219 288.582031 295.324219 C 288.464844 295.324219 288.371094 295.417969 288.371094 295.535156 C 288.371094 295.652344 288.464844 295.746094 288.582031 295.746094 C 288.699219 295.746094 288.792969 295.652344 288.792969 295.535156 Z M 288.792969 295.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.433594 294.855469 C 287.433594 294.738281 287.339844 294.644531 287.222656 294.644531 C 287.105469 294.644531 287.011719 294.738281 287.011719 294.855469 C 287.011719 294.972656 287.105469 295.066406 287.222656 295.066406 C 287.339844 295.066406 287.433594 294.972656 287.433594 294.855469 Z M 287.433594 294.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.46875 293.734375 C 286.46875 293.617188 286.375 293.523438 286.257812 293.523438 C 286.140625 293.523438 286.046875 293.617188 286.046875 293.734375 C 286.046875 293.851562 286.140625 293.945312 286.257812 293.945312 C 286.375 293.945312 286.46875 293.851562 286.46875 293.734375 Z M 286.46875 293.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.84375 295.957031 C 285.84375 295.839844 285.75 295.746094 285.632812 295.746094 C 285.515625 295.746094 285.421875 295.839844 285.421875 295.957031 C 285.421875 296.074219 285.515625 296.167969 285.632812 296.167969 C 285.75 296.167969 285.84375 296.074219 285.84375 295.957031 Z M 285.84375 295.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.609375 294.0625 C 283.609375 293.945312 283.515625 293.851562 283.398438 293.851562 C 283.28125 293.851562 283.1875 293.945312 283.1875 294.0625 C 283.1875 294.179688 283.28125 294.273438 283.398438 294.273438 C 283.515625 294.273438 283.609375 294.179688 283.609375 294.0625 Z M 283.609375 294.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.128906 291.742188 C 284.128906 291.625 284.035156 291.53125 283.917969 291.53125 C 283.800781 291.53125 283.707031 291.625 283.707031 291.742188 C 283.707031 291.859375 283.800781 291.953125 283.917969 291.953125 C 284.035156 291.953125 284.128906 291.859375 284.128906 291.742188 Z M 284.128906 291.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.230469 288.367188 C 282.230469 288.25 282.136719 288.15625 282.019531 288.15625 C 281.902344 288.15625 281.808594 288.25 281.808594 288.367188 C 281.808594 288.484375 281.902344 288.578125 282.019531 288.578125 C 282.136719 288.578125 282.230469 288.484375 282.230469 288.367188 Z M 282.230469 288.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.546875 283.558594 C 279.546875 283.441406 279.453125 283.347656 279.335938 283.347656 C 279.21875 283.347656 279.125 283.441406 279.125 283.558594 C 279.125 283.675781 279.21875 283.769531 279.335938 283.769531 C 279.453125 283.769531 279.546875 283.675781 279.546875 283.558594 Z M 279.546875 283.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.527344 284.632812 C 279.527344 284.515625 279.433594 284.421875 279.316406 284.421875 C 279.199219 284.421875 279.105469 284.515625 279.105469 284.632812 C 279.105469 284.75 279.199219 284.84375 279.316406 284.84375 C 279.433594 284.84375 279.527344 284.75 279.527344 284.632812 Z M 279.527344 284.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.359375 287.449219 C 277.359375 287.332031 277.265625 287.238281 277.148438 287.238281 C 277.03125 287.238281 276.9375 287.332031 276.9375 287.449219 C 276.9375 287.566406 277.03125 287.660156 277.148438 287.660156 C 277.265625 287.660156 277.359375 287.566406 277.359375 287.449219 Z M 277.359375 287.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.753906 287.332031 C 274.753906 287.214844 274.660156 287.121094 274.542969 287.121094 C 274.425781 287.121094 274.332031 287.214844 274.332031 287.332031 C 274.332031 287.449219 274.425781 287.542969 274.542969 287.542969 C 274.660156 287.542969 274.753906 287.449219 274.753906 287.332031 Z M 274.753906 287.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.972656 286.410156 C 270.972656 286.292969 270.878906 286.199219 270.761719 286.199219 C 270.644531 286.199219 270.550781 286.292969 270.550781 286.410156 C 270.550781 286.527344 270.644531 286.621094 270.761719 286.621094 C 270.878906 286.621094 270.972656 286.527344 270.972656 286.410156 Z M 270.972656 286.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.5 288.492188 C 275.5 288.375 275.40625 288.28125 275.289062 288.28125 C 275.171875 288.28125 275.078125 288.375 275.078125 288.492188 C 275.078125 288.609375 275.171875 288.703125 275.289062 288.703125 C 275.40625 288.703125 275.5 288.609375 275.5 288.492188 Z M 275.5 288.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.589844 290.953125 C 277.589844 290.835938 277.496094 290.742188 277.378906 290.742188 C 277.261719 290.742188 277.167969 290.835938 277.167969 290.953125 C 277.167969 291.070312 277.261719 291.164062 277.378906 291.164062 C 277.496094 291.164062 277.589844 291.070312 277.589844 290.953125 Z M 277.589844 290.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.03125 291.425781 C 277.03125 291.308594 276.9375 291.214844 276.820312 291.214844 C 276.703125 291.214844 276.609375 291.308594 276.609375 291.425781 C 276.609375 291.542969 276.703125 291.636719 276.820312 291.636719 C 276.9375 291.636719 277.03125 291.542969 277.03125 291.425781 Z M 277.03125 291.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.851562 293.175781 C 277.851562 293.058594 277.757812 292.964844 277.640625 292.964844 C 277.523438 292.964844 277.429688 293.058594 277.429688 293.175781 C 277.429688 293.292969 277.523438 293.386719 277.640625 293.386719 C 277.757812 293.386719 277.851562 293.292969 277.851562 293.175781 Z M 277.851562 293.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.152344 293.714844 C 279.152344 293.597656 279.058594 293.503906 278.941406 293.503906 C 278.824219 293.503906 278.730469 293.597656 278.730469 293.714844 C 278.730469 293.832031 278.824219 293.925781 278.941406 293.925781 C 279.058594 293.925781 279.152344 293.832031 279.152344 293.714844 Z M 279.152344 293.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.742188 293.214844 C 277.742188 293.097656 277.648438 293.003906 277.53125 293.003906 C 277.414062 293.003906 277.320312 293.097656 277.320312 293.214844 C 277.320312 293.332031 277.414062 293.425781 277.53125 293.425781 C 277.648438 293.425781 277.742188 293.332031 277.742188 293.214844 Z M 277.742188 293.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.609375 290.5625 C 272.609375 290.445312 272.515625 290.351562 272.398438 290.351562 C 272.28125 290.351562 272.1875 290.445312 272.1875 290.5625 C 272.1875 290.679688 272.28125 290.773438 272.398438 290.773438 C 272.515625 290.773438 272.609375 290.679688 272.609375 290.5625 Z M 272.609375 290.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.449219 290.980469 C 274.449219 290.863281 274.355469 290.769531 274.238281 290.769531 C 274.121094 290.769531 274.027344 290.863281 274.027344 290.980469 C 274.027344 291.097656 274.121094 291.191406 274.238281 291.191406 C 274.355469 291.191406 274.449219 291.097656 274.449219 290.980469 Z M 274.449219 290.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.308594 290.011719 C 273.308594 289.894531 273.214844 289.800781 273.097656 289.800781 C 272.980469 289.800781 272.886719 289.894531 272.886719 290.011719 C 272.886719 290.128906 272.980469 290.222656 273.097656 290.222656 C 273.214844 290.222656 273.308594 290.128906 273.308594 290.011719 Z M 273.308594 290.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.46875 287.507812 C 275.46875 287.390625 275.375 287.296875 275.257812 287.296875 C 275.140625 287.296875 275.046875 287.390625 275.046875 287.507812 C 275.046875 287.625 275.140625 287.71875 275.257812 287.71875 C 275.375 287.71875 275.46875 287.625 275.46875 287.507812 Z M 275.46875 287.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.007812 284.722656 C 274.007812 284.605469 273.914062 284.511719 273.796875 284.511719 C 273.679688 284.511719 273.585938 284.605469 273.585938 284.722656 C 273.585938 284.839844 273.679688 284.933594 273.796875 284.933594 C 273.914062 284.933594 274.007812 284.839844 274.007812 284.722656 Z M 274.007812 284.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.597656 287.480469 C 273.597656 287.363281 273.503906 287.269531 273.386719 287.269531 C 273.269531 287.269531 273.175781 287.363281 273.175781 287.480469 C 273.175781 287.597656 273.269531 287.691406 273.386719 287.691406 C 273.503906 287.691406 273.597656 287.597656 273.597656 287.480469 Z M 273.597656 287.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.40625 288.511719 C 274.40625 288.394531 274.3125 288.300781 274.195312 288.300781 C 274.078125 288.300781 273.984375 288.394531 273.984375 288.511719 C 273.984375 288.628906 274.078125 288.722656 274.195312 288.722656 C 274.3125 288.722656 274.40625 288.628906 274.40625 288.511719 Z M 274.40625 288.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.3125 285.863281 C 273.3125 285.746094 273.21875 285.652344 273.101562 285.652344 C 272.984375 285.652344 272.890625 285.746094 272.890625 285.863281 C 272.890625 285.980469 272.984375 286.074219 273.101562 286.074219 C 273.21875 286.074219 273.3125 285.980469 273.3125 285.863281 Z M 273.3125 285.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.039062 281.757812 C 273.039062 281.640625 272.945312 281.546875 272.828125 281.546875 C 272.710938 281.546875 272.617188 281.640625 272.617188 281.757812 C 272.617188 281.875 272.710938 281.96875 272.828125 281.96875 C 272.945312 281.96875 273.039062 281.875 273.039062 281.757812 Z M 273.039062 281.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.015625 282.671875 C 272.015625 282.554688 271.921875 282.460938 271.804688 282.460938 C 271.6875 282.460938 271.59375 282.554688 271.59375 282.671875 C 271.59375 282.789062 271.6875 282.882812 271.804688 282.882812 C 271.921875 282.882812 272.015625 282.789062 272.015625 282.671875 Z M 272.015625 282.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.046875 281.679688 C 272.046875 281.5625 271.953125 281.46875 271.835938 281.46875 C 271.71875 281.46875 271.625 281.5625 271.625 281.679688 C 271.625 281.796875 271.71875 281.890625 271.835938 281.890625 C 271.953125 281.890625 272.046875 281.796875 272.046875 281.679688 Z M 272.046875 281.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.429688 280.804688 C 268.429688 280.6875 268.335938 280.59375 268.21875 280.59375 C 268.101562 280.59375 268.007812 280.6875 268.007812 280.804688 C 268.007812 280.921875 268.101562 281.015625 268.21875 281.015625 C 268.335938 281.015625 268.429688 280.921875 268.429688 280.804688 Z M 268.429688 280.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.015625 281.195312 C 269.015625 281.078125 268.921875 280.984375 268.804688 280.984375 C 268.6875 280.984375 268.59375 281.078125 268.59375 281.195312 C 268.59375 281.3125 268.6875 281.40625 268.804688 281.40625 C 268.921875 281.40625 269.015625 281.3125 269.015625 281.195312 Z M 269.015625 281.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.222656 282.835938 C 270.222656 282.71875 270.128906 282.625 270.011719 282.625 C 269.894531 282.625 269.800781 282.71875 269.800781 282.835938 C 269.800781 282.953125 269.894531 283.046875 270.011719 283.046875 C 270.128906 283.046875 270.222656 282.953125 270.222656 282.835938 Z M 270.222656 282.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.699219 279.035156 C 270.699219 278.917969 270.605469 278.824219 270.488281 278.824219 C 270.371094 278.824219 270.277344 278.917969 270.277344 279.035156 C 270.277344 279.152344 270.371094 279.246094 270.488281 279.246094 C 270.605469 279.246094 270.699219 279.152344 270.699219 279.035156 Z M 270.699219 279.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.152344 279.066406 C 270.152344 278.949219 270.058594 278.855469 269.941406 278.855469 C 269.824219 278.855469 269.730469 278.949219 269.730469 279.066406 C 269.730469 279.183594 269.824219 279.277344 269.941406 279.277344 C 270.058594 279.277344 270.152344 279.183594 270.152344 279.066406 Z M 270.152344 279.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.039062 277.628906 C 269.039062 277.511719 268.945312 277.417969 268.828125 277.417969 C 268.710938 277.417969 268.617188 277.511719 268.617188 277.628906 C 268.617188 277.746094 268.710938 277.839844 268.828125 277.839844 C 268.945312 277.839844 269.039062 277.746094 269.039062 277.628906 Z M 269.039062 277.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.59375 280.792969 C 268.59375 280.675781 268.5 280.582031 268.382812 280.582031 C 268.265625 280.582031 268.171875 280.675781 268.171875 280.792969 C 268.171875 280.910156 268.265625 281.003906 268.382812 281.003906 C 268.5 281.003906 268.59375 280.910156 268.59375 280.792969 Z M 268.59375 280.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.574219 280.742188 C 266.574219 280.625 266.480469 280.53125 266.363281 280.53125 C 266.246094 280.53125 266.152344 280.625 266.152344 280.742188 C 266.152344 280.859375 266.246094 280.953125 266.363281 280.953125 C 266.480469 280.953125 266.574219 280.859375 266.574219 280.742188 Z M 266.574219 280.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.847656 282.765625 C 266.847656 282.648438 266.753906 282.554688 266.636719 282.554688 C 266.519531 282.554688 266.425781 282.648438 266.425781 282.765625 C 266.425781 282.882812 266.519531 282.976562 266.636719 282.976562 C 266.753906 282.976562 266.847656 282.882812 266.847656 282.765625 Z M 266.847656 282.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.542969 282.59375 C 266.542969 282.476562 266.449219 282.382812 266.332031 282.382812 C 266.214844 282.382812 266.121094 282.476562 266.121094 282.59375 C 266.121094 282.710938 266.214844 282.804688 266.332031 282.804688 C 266.449219 282.804688 266.542969 282.710938 266.542969 282.59375 Z M 266.542969 282.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.289062 282.230469 C 268.289062 282.113281 268.195312 282.019531 268.078125 282.019531 C 267.960938 282.019531 267.867188 282.113281 267.867188 282.230469 C 267.867188 282.347656 267.960938 282.441406 268.078125 282.441406 C 268.195312 282.441406 268.289062 282.347656 268.289062 282.230469 Z M 268.289062 282.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.949219 282.484375 C 268.949219 282.367188 268.855469 282.273438 268.738281 282.273438 C 268.621094 282.273438 268.527344 282.367188 268.527344 282.484375 C 268.527344 282.601562 268.621094 282.695312 268.738281 282.695312 C 268.855469 282.695312 268.949219 282.601562 268.949219 282.484375 Z M 268.949219 282.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.996094 282.890625 C 269.996094 282.773438 269.902344 282.679688 269.785156 282.679688 C 269.667969 282.679688 269.574219 282.773438 269.574219 282.890625 C 269.574219 283.007812 269.667969 283.101562 269.785156 283.101562 C 269.902344 283.101562 269.996094 283.007812 269.996094 282.890625 Z M 269.996094 282.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.570312 282.175781 C 269.570312 282.058594 269.476562 281.964844 269.359375 281.964844 C 269.242188 281.964844 269.148438 282.058594 269.148438 282.175781 C 269.148438 282.292969 269.242188 282.386719 269.359375 282.386719 C 269.476562 282.386719 269.570312 282.292969 269.570312 282.175781 Z M 269.570312 282.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.210938 283.777344 C 267.210938 283.660156 267.117188 283.566406 267 283.566406 C 266.882812 283.566406 266.789062 283.660156 266.789062 283.777344 C 266.789062 283.894531 266.882812 283.988281 267 283.988281 C 267.117188 283.988281 267.210938 283.894531 267.210938 283.777344 Z M 267.210938 283.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.804688 285.371094 C 266.804688 285.253906 266.710938 285.160156 266.59375 285.160156 C 266.476562 285.160156 266.382812 285.253906 266.382812 285.371094 C 266.382812 285.488281 266.476562 285.582031 266.59375 285.582031 C 266.710938 285.582031 266.804688 285.488281 266.804688 285.371094 Z M 266.804688 285.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.070312 285.804688 C 266.070312 285.6875 265.976562 285.59375 265.859375 285.59375 C 265.742188 285.59375 265.648438 285.6875 265.648438 285.804688 C 265.648438 285.921875 265.742188 286.015625 265.859375 286.015625 C 265.976562 286.015625 266.070312 285.921875 266.070312 285.804688 Z M 266.070312 285.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.402344 286.371094 C 266.402344 286.253906 266.308594 286.160156 266.191406 286.160156 C 266.074219 286.160156 265.980469 286.253906 265.980469 286.371094 C 265.980469 286.488281 266.074219 286.582031 266.191406 286.582031 C 266.308594 286.582031 266.402344 286.488281 266.402344 286.371094 Z M 266.402344 286.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.332031 289.625 C 265.332031 289.507812 265.238281 289.414062 265.121094 289.414062 C 265.003906 289.414062 264.910156 289.507812 264.910156 289.625 C 264.910156 289.742188 265.003906 289.835938 265.121094 289.835938 C 265.238281 289.835938 265.332031 289.742188 265.332031 289.625 Z M 265.332031 289.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.292969 293.257812 C 262.292969 293.140625 262.199219 293.046875 262.082031 293.046875 C 261.964844 293.046875 261.871094 293.140625 261.871094 293.257812 C 261.871094 293.375 261.964844 293.46875 262.082031 293.46875 C 262.199219 293.46875 262.292969 293.375 262.292969 293.257812 Z M 262.292969 293.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.675781 294.652344 C 262.675781 294.535156 262.582031 294.441406 262.464844 294.441406 C 262.347656 294.441406 262.253906 294.535156 262.253906 294.652344 C 262.253906 294.769531 262.347656 294.863281 262.464844 294.863281 C 262.582031 294.863281 262.675781 294.769531 262.675781 294.652344 Z M 262.675781 294.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.070312 294.789062 C 261.070312 294.671875 260.976562 294.578125 260.859375 294.578125 C 260.742188 294.578125 260.648438 294.671875 260.648438 294.789062 C 260.648438 294.90625 260.742188 295 260.859375 295 C 260.976562 295 261.070312 294.90625 261.070312 294.789062 Z M 261.070312 294.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.617188 294.648438 C 262.617188 294.53125 262.523438 294.4375 262.40625 294.4375 C 262.289062 294.4375 262.195312 294.53125 262.195312 294.648438 C 262.195312 294.765625 262.289062 294.859375 262.40625 294.859375 C 262.523438 294.859375 262.617188 294.765625 262.617188 294.648438 Z M 262.617188 294.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.808594 293.488281 C 261.808594 293.371094 261.714844 293.277344 261.597656 293.277344 C 261.480469 293.277344 261.386719 293.371094 261.386719 293.488281 C 261.386719 293.605469 261.480469 293.699219 261.597656 293.699219 C 261.714844 293.699219 261.808594 293.605469 261.808594 293.488281 Z M 261.808594 293.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.222656 294.25 C 264.222656 294.132812 264.128906 294.039062 264.011719 294.039062 C 263.894531 294.039062 263.800781 294.132812 263.800781 294.25 C 263.800781 294.367188 263.894531 294.460938 264.011719 294.460938 C 264.128906 294.460938 264.222656 294.367188 264.222656 294.25 Z M 264.222656 294.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.566406 292.160156 C 262.566406 292.042969 262.472656 291.949219 262.355469 291.949219 C 262.238281 291.949219 262.144531 292.042969 262.144531 292.160156 C 262.144531 292.277344 262.238281 292.371094 262.355469 292.371094 C 262.472656 292.371094 262.566406 292.277344 262.566406 292.160156 Z M 262.566406 292.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.390625 292.023438 C 265.390625 291.90625 265.296875 291.8125 265.179688 291.8125 C 265.0625 291.8125 264.96875 291.90625 264.96875 292.023438 C 264.96875 292.140625 265.0625 292.234375 265.179688 292.234375 C 265.296875 292.234375 265.390625 292.140625 265.390625 292.023438 Z M 265.390625 292.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.617188 291.472656 C 264.617188 291.355469 264.523438 291.261719 264.40625 291.261719 C 264.289062 291.261719 264.195312 291.355469 264.195312 291.472656 C 264.195312 291.589844 264.289062 291.683594 264.40625 291.683594 C 264.523438 291.683594 264.617188 291.589844 264.617188 291.472656 Z M 264.617188 291.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.5625 292.769531 C 265.5625 292.652344 265.46875 292.558594 265.351562 292.558594 C 265.234375 292.558594 265.140625 292.652344 265.140625 292.769531 C 265.140625 292.886719 265.234375 292.980469 265.351562 292.980469 C 265.46875 292.980469 265.5625 292.886719 265.5625 292.769531 Z M 265.5625 292.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.785156 292.4375 C 266.785156 292.320312 266.691406 292.226562 266.574219 292.226562 C 266.457031 292.226562 266.363281 292.320312 266.363281 292.4375 C 266.363281 292.554688 266.457031 292.648438 266.574219 292.648438 C 266.691406 292.648438 266.785156 292.554688 266.785156 292.4375 Z M 266.785156 292.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.804688 292.121094 C 270.804688 292.003906 270.710938 291.910156 270.59375 291.910156 C 270.476562 291.910156 270.382812 292.003906 270.382812 292.121094 C 270.382812 292.238281 270.476562 292.332031 270.59375 292.332031 C 270.710938 292.332031 270.804688 292.238281 270.804688 292.121094 Z M 270.804688 292.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.445312 289.878906 C 271.445312 289.761719 271.351562 289.667969 271.234375 289.667969 C 271.117188 289.667969 271.023438 289.761719 271.023438 289.878906 C 271.023438 289.996094 271.117188 290.089844 271.234375 290.089844 C 271.351562 290.089844 271.445312 289.996094 271.445312 289.878906 Z M 271.445312 289.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.488281 287.804688 C 271.488281 287.6875 271.394531 287.59375 271.277344 287.59375 C 271.160156 287.59375 271.066406 287.6875 271.066406 287.804688 C 271.066406 287.921875 271.160156 288.015625 271.277344 288.015625 C 271.394531 288.015625 271.488281 287.921875 271.488281 287.804688 Z M 271.488281 287.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.179688 285.390625 C 269.179688 285.273438 269.085938 285.179688 268.96875 285.179688 C 268.851562 285.179688 268.757812 285.273438 268.757812 285.390625 C 268.757812 285.507812 268.851562 285.601562 268.96875 285.601562 C 269.085938 285.601562 269.179688 285.507812 269.179688 285.390625 Z M 269.179688 285.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.914062 285.789062 C 269.914062 285.671875 269.820312 285.578125 269.703125 285.578125 C 269.585938 285.578125 269.492188 285.671875 269.492188 285.789062 C 269.492188 285.90625 269.585938 286 269.703125 286 C 269.820312 286 269.914062 285.90625 269.914062 285.789062 Z M 269.914062 285.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.101562 284.367188 C 268.101562 284.25 268.007812 284.15625 267.890625 284.15625 C 267.773438 284.15625 267.679688 284.25 267.679688 284.367188 C 267.679688 284.484375 267.773438 284.578125 267.890625 284.578125 C 268.007812 284.578125 268.101562 284.484375 268.101562 284.367188 Z M 268.101562 284.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.269531 287.980469 C 270.269531 287.863281 270.175781 287.769531 270.058594 287.769531 C 269.941406 287.769531 269.847656 287.863281 269.847656 287.980469 C 269.847656 288.097656 269.941406 288.191406 270.058594 288.191406 C 270.175781 288.191406 270.269531 288.097656 270.269531 287.980469 Z M 270.269531 287.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.433594 287.917969 C 269.433594 287.800781 269.339844 287.707031 269.222656 287.707031 C 269.105469 287.707031 269.011719 287.800781 269.011719 287.917969 C 269.011719 288.035156 269.105469 288.128906 269.222656 288.128906 C 269.339844 288.128906 269.433594 288.035156 269.433594 287.917969 Z M 269.433594 287.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.253906 288 C 270.253906 287.882812 270.160156 287.789062 270.042969 287.789062 C 269.925781 287.789062 269.832031 287.882812 269.832031 288 C 269.832031 288.117188 269.925781 288.210938 270.042969 288.210938 C 270.160156 288.210938 270.253906 288.117188 270.253906 288 Z M 270.253906 288 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.019531 289.082031 C 269.019531 288.964844 268.925781 288.871094 268.808594 288.871094 C 268.691406 288.871094 268.597656 288.964844 268.597656 289.082031 C 268.597656 289.199219 268.691406 289.292969 268.808594 289.292969 C 268.925781 289.292969 269.019531 289.199219 269.019531 289.082031 Z M 269.019531 289.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.457031 285.296875 C 266.457031 285.179688 266.363281 285.085938 266.246094 285.085938 C 266.128906 285.085938 266.035156 285.179688 266.035156 285.296875 C 266.035156 285.414062 266.128906 285.507812 266.246094 285.507812 C 266.363281 285.507812 266.457031 285.414062 266.457031 285.296875 Z M 266.457031 285.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.085938 290.519531 C 267.085938 290.402344 266.992188 290.308594 266.875 290.308594 C 266.757812 290.308594 266.664062 290.402344 266.664062 290.519531 C 266.664062 290.636719 266.757812 290.730469 266.875 290.730469 C 266.992188 290.730469 267.085938 290.636719 267.085938 290.519531 Z M 267.085938 290.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.589844 291.019531 C 266.589844 290.902344 266.496094 290.808594 266.378906 290.808594 C 266.261719 290.808594 266.167969 290.902344 266.167969 291.019531 C 266.167969 291.136719 266.261719 291.230469 266.378906 291.230469 C 266.496094 291.230469 266.589844 291.136719 266.589844 291.019531 Z M 266.589844 291.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.183594 292.433594 C 266.183594 292.316406 266.089844 292.222656 265.972656 292.222656 C 265.855469 292.222656 265.761719 292.316406 265.761719 292.433594 C 265.761719 292.550781 265.855469 292.644531 265.972656 292.644531 C 266.089844 292.644531 266.183594 292.550781 266.183594 292.433594 Z M 266.183594 292.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.292969 293.722656 C 265.292969 293.605469 265.199219 293.511719 265.082031 293.511719 C 264.964844 293.511719 264.871094 293.605469 264.871094 293.722656 C 264.871094 293.839844 264.964844 293.933594 265.082031 293.933594 C 265.199219 293.933594 265.292969 293.839844 265.292969 293.722656 Z M 265.292969 293.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.441406 292.976562 C 263.441406 292.859375 263.347656 292.765625 263.230469 292.765625 C 263.113281 292.765625 263.019531 292.859375 263.019531 292.976562 C 263.019531 293.09375 263.113281 293.1875 263.230469 293.1875 C 263.347656 293.1875 263.441406 293.09375 263.441406 292.976562 Z M 263.441406 292.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.921875 292.671875 C 262.921875 292.554688 262.828125 292.460938 262.710938 292.460938 C 262.59375 292.460938 262.5 292.554688 262.5 292.671875 C 262.5 292.789062 262.59375 292.882812 262.710938 292.882812 C 262.828125 292.882812 262.921875 292.789062 262.921875 292.671875 Z M 262.921875 292.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.835938 291.328125 C 260.835938 291.210938 260.742188 291.117188 260.625 291.117188 C 260.507812 291.117188 260.414062 291.210938 260.414062 291.328125 C 260.414062 291.445312 260.507812 291.539062 260.625 291.539062 C 260.742188 291.539062 260.835938 291.445312 260.835938 291.328125 Z M 260.835938 291.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.433594 287.289062 C 260.433594 287.171875 260.339844 287.078125 260.222656 287.078125 C 260.105469 287.078125 260.011719 287.171875 260.011719 287.289062 C 260.011719 287.40625 260.105469 287.5 260.222656 287.5 C 260.339844 287.5 260.433594 287.40625 260.433594 287.289062 Z M 260.433594 287.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.585938 287.410156 C 260.585938 287.292969 260.492188 287.199219 260.375 287.199219 C 260.257812 287.199219 260.164062 287.292969 260.164062 287.410156 C 260.164062 287.527344 260.257812 287.621094 260.375 287.621094 C 260.492188 287.621094 260.585938 287.527344 260.585938 287.410156 Z M 260.585938 287.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.492188 285.742188 C 259.492188 285.625 259.398438 285.53125 259.28125 285.53125 C 259.164062 285.53125 259.070312 285.625 259.070312 285.742188 C 259.070312 285.859375 259.164062 285.953125 259.28125 285.953125 C 259.398438 285.953125 259.492188 285.859375 259.492188 285.742188 Z M 259.492188 285.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.578125 286.53125 C 259.578125 286.414062 259.484375 286.320312 259.367188 286.320312 C 259.25 286.320312 259.15625 286.414062 259.15625 286.53125 C 259.15625 286.648438 259.25 286.742188 259.367188 286.742188 C 259.484375 286.742188 259.578125 286.648438 259.578125 286.53125 Z M 259.578125 286.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.890625 289.347656 C 261.890625 289.230469 261.796875 289.136719 261.679688 289.136719 C 261.5625 289.136719 261.46875 289.230469 261.46875 289.347656 C 261.46875 289.464844 261.5625 289.558594 261.679688 289.558594 C 261.796875 289.558594 261.890625 289.464844 261.890625 289.347656 Z M 261.890625 289.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.136719 290.523438 C 260.136719 290.40625 260.042969 290.3125 259.925781 290.3125 C 259.808594 290.3125 259.714844 290.40625 259.714844 290.523438 C 259.714844 290.640625 259.808594 290.734375 259.925781 290.734375 C 260.042969 290.734375 260.136719 290.640625 260.136719 290.523438 Z M 260.136719 290.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.125 293.992188 C 260.125 293.875 260.03125 293.78125 259.914062 293.78125 C 259.796875 293.78125 259.703125 293.875 259.703125 293.992188 C 259.703125 294.109375 259.796875 294.203125 259.914062 294.203125 C 260.03125 294.203125 260.125 294.109375 260.125 293.992188 Z M 260.125 293.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.296875 292.527344 C 259.296875 292.410156 259.203125 292.316406 259.085938 292.316406 C 258.96875 292.316406 258.875 292.410156 258.875 292.527344 C 258.875 292.644531 258.96875 292.738281 259.085938 292.738281 C 259.203125 292.738281 259.296875 292.644531 259.296875 292.527344 Z M 259.296875 292.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.453125 294.761719 C 259.453125 294.644531 259.359375 294.550781 259.242188 294.550781 C 259.125 294.550781 259.03125 294.644531 259.03125 294.761719 C 259.03125 294.878906 259.125 294.972656 259.242188 294.972656 C 259.359375 294.972656 259.453125 294.878906 259.453125 294.761719 Z M 259.453125 294.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.542969 293.269531 C 259.542969 293.152344 259.449219 293.058594 259.332031 293.058594 C 259.214844 293.058594 259.121094 293.152344 259.121094 293.269531 C 259.121094 293.386719 259.214844 293.480469 259.332031 293.480469 C 259.449219 293.480469 259.542969 293.386719 259.542969 293.269531 Z M 259.542969 293.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.226562 290.695312 C 262.226562 290.578125 262.132812 290.484375 262.015625 290.484375 C 261.898438 290.484375 261.804688 290.578125 261.804688 290.695312 C 261.804688 290.8125 261.898438 290.90625 262.015625 290.90625 C 262.132812 290.90625 262.226562 290.8125 262.226562 290.695312 Z M 262.226562 290.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.511719 298.082031 C 262.511719 297.964844 262.417969 297.871094 262.300781 297.871094 C 262.183594 297.871094 262.089844 297.964844 262.089844 298.082031 C 262.089844 298.199219 262.183594 298.292969 262.300781 298.292969 C 262.417969 298.292969 262.511719 298.199219 262.511719 298.082031 Z M 262.511719 298.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.070312 299.273438 C 263.070312 299.15625 262.976562 299.0625 262.859375 299.0625 C 262.742188 299.0625 262.648438 299.15625 262.648438 299.273438 C 262.648438 299.390625 262.742188 299.484375 262.859375 299.484375 C 262.976562 299.484375 263.070312 299.390625 263.070312 299.273438 Z M 263.070312 299.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.929688 297.742188 C 265.929688 297.625 265.835938 297.53125 265.71875 297.53125 C 265.601562 297.53125 265.507812 297.625 265.507812 297.742188 C 265.507812 297.859375 265.601562 297.953125 265.71875 297.953125 C 265.835938 297.953125 265.929688 297.859375 265.929688 297.742188 Z M 265.929688 297.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.070312 298.527344 C 266.070312 298.410156 265.976562 298.316406 265.859375 298.316406 C 265.742188 298.316406 265.648438 298.410156 265.648438 298.527344 C 265.648438 298.644531 265.742188 298.738281 265.859375 298.738281 C 265.976562 298.738281 266.070312 298.644531 266.070312 298.527344 Z M 266.070312 298.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.4375 297.414062 C 265.4375 297.296875 265.34375 297.203125 265.226562 297.203125 C 265.109375 297.203125 265.015625 297.296875 265.015625 297.414062 C 265.015625 297.53125 265.109375 297.625 265.226562 297.625 C 265.34375 297.625 265.4375 297.53125 265.4375 297.414062 Z M 265.4375 297.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.949219 298.125 C 266.949219 298.007812 266.855469 297.914062 266.738281 297.914062 C 266.621094 297.914062 266.527344 298.007812 266.527344 298.125 C 266.527344 298.242188 266.621094 298.335938 266.738281 298.335938 C 266.855469 298.335938 266.949219 298.242188 266.949219 298.125 Z M 266.949219 298.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.9375 296.921875 C 266.9375 296.804688 266.84375 296.710938 266.726562 296.710938 C 266.609375 296.710938 266.515625 296.804688 266.515625 296.921875 C 266.515625 297.039062 266.609375 297.132812 266.726562 297.132812 C 266.84375 297.132812 266.9375 297.039062 266.9375 296.921875 Z M 266.9375 296.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.144531 298.207031 C 268.144531 298.089844 268.050781 297.996094 267.933594 297.996094 C 267.816406 297.996094 267.722656 298.089844 267.722656 298.207031 C 267.722656 298.324219 267.816406 298.417969 267.933594 298.417969 C 268.050781 298.417969 268.144531 298.324219 268.144531 298.207031 Z M 268.144531 298.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.359375 294.71875 C 266.359375 294.601562 266.265625 294.507812 266.148438 294.507812 C 266.03125 294.507812 265.9375 294.601562 265.9375 294.71875 C 265.9375 294.835938 266.03125 294.929688 266.148438 294.929688 C 266.265625 294.929688 266.359375 294.835938 266.359375 294.71875 Z M 266.359375 294.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.90625 298.867188 C 264.90625 298.75 264.8125 298.65625 264.695312 298.65625 C 264.578125 298.65625 264.484375 298.75 264.484375 298.867188 C 264.484375 298.984375 264.578125 299.078125 264.695312 299.078125 C 264.8125 299.078125 264.90625 298.984375 264.90625 298.867188 Z M 264.90625 298.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.296875 294.59375 C 267.296875 294.476562 267.203125 294.382812 267.085938 294.382812 C 266.96875 294.382812 266.875 294.476562 266.875 294.59375 C 266.875 294.710938 266.96875 294.804688 267.085938 294.804688 C 267.203125 294.804688 267.296875 294.710938 267.296875 294.59375 Z M 267.296875 294.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.140625 295.34375 C 269.140625 295.226562 269.046875 295.132812 268.929688 295.132812 C 268.8125 295.132812 268.71875 295.226562 268.71875 295.34375 C 268.71875 295.460938 268.8125 295.554688 268.929688 295.554688 C 269.046875 295.554688 269.140625 295.460938 269.140625 295.34375 Z M 269.140625 295.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.214844 293.71875 C 269.214844 293.601562 269.121094 293.507812 269.003906 293.507812 C 268.886719 293.507812 268.792969 293.601562 268.792969 293.71875 C 268.792969 293.835938 268.886719 293.929688 269.003906 293.929688 C 269.121094 293.929688 269.214844 293.835938 269.214844 293.71875 Z M 269.214844 293.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.519531 296.976562 C 267.519531 296.859375 267.425781 296.765625 267.308594 296.765625 C 267.191406 296.765625 267.097656 296.859375 267.097656 296.976562 C 267.097656 297.09375 267.191406 297.1875 267.308594 297.1875 C 267.425781 297.1875 267.519531 297.09375 267.519531 296.976562 Z M 267.519531 296.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.519531 296.347656 C 265.519531 296.230469 265.425781 296.136719 265.308594 296.136719 C 265.191406 296.136719 265.097656 296.230469 265.097656 296.347656 C 265.097656 296.464844 265.191406 296.558594 265.308594 296.558594 C 265.425781 296.558594 265.519531 296.464844 265.519531 296.347656 Z M 265.519531 296.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.292969 291.222656 C 264.292969 291.105469 264.199219 291.011719 264.082031 291.011719 C 263.964844 291.011719 263.871094 291.105469 263.871094 291.222656 C 263.871094 291.339844 263.964844 291.433594 264.082031 291.433594 C 264.199219 291.433594 264.292969 291.339844 264.292969 291.222656 Z M 264.292969 291.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.972656 289.253906 C 265.972656 289.136719 265.878906 289.042969 265.761719 289.042969 C 265.644531 289.042969 265.550781 289.136719 265.550781 289.253906 C 265.550781 289.371094 265.644531 289.464844 265.761719 289.464844 C 265.878906 289.464844 265.972656 289.371094 265.972656 289.253906 Z M 265.972656 289.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.300781 290.128906 C 265.300781 290.011719 265.207031 289.917969 265.089844 289.917969 C 264.972656 289.917969 264.878906 290.011719 264.878906 290.128906 C 264.878906 290.246094 264.972656 290.339844 265.089844 290.339844 C 265.207031 290.339844 265.300781 290.246094 265.300781 290.128906 Z M 265.300781 290.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.585938 294.382812 C 261.585938 294.265625 261.492188 294.171875 261.375 294.171875 C 261.257812 294.171875 261.164062 294.265625 261.164062 294.382812 C 261.164062 294.5 261.257812 294.59375 261.375 294.59375 C 261.492188 294.59375 261.585938 294.5 261.585938 294.382812 Z M 261.585938 294.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.804688 295.574219 C 257.804688 295.457031 257.710938 295.363281 257.59375 295.363281 C 257.476562 295.363281 257.382812 295.457031 257.382812 295.574219 C 257.382812 295.691406 257.476562 295.785156 257.59375 295.785156 C 257.710938 295.785156 257.804688 295.691406 257.804688 295.574219 Z M 257.804688 295.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.871094 293.589844 C 258.871094 293.472656 258.777344 293.378906 258.660156 293.378906 C 258.542969 293.378906 258.449219 293.472656 258.449219 293.589844 C 258.449219 293.707031 258.542969 293.800781 258.660156 293.800781 C 258.777344 293.800781 258.871094 293.707031 258.871094 293.589844 Z M 258.871094 293.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.941406 294.804688 C 258.941406 294.6875 258.847656 294.59375 258.730469 294.59375 C 258.613281 294.59375 258.519531 294.6875 258.519531 294.804688 C 258.519531 294.921875 258.613281 295.015625 258.730469 295.015625 C 258.847656 295.015625 258.941406 294.921875 258.941406 294.804688 Z M 258.941406 294.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.613281 293.371094 C 259.613281 293.253906 259.519531 293.160156 259.402344 293.160156 C 259.285156 293.160156 259.191406 293.253906 259.191406 293.371094 C 259.191406 293.488281 259.285156 293.582031 259.402344 293.582031 C 259.519531 293.582031 259.613281 293.488281 259.613281 293.371094 Z M 259.613281 293.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.332031 289.503906 C 259.332031 289.386719 259.238281 289.292969 259.121094 289.292969 C 259.003906 289.292969 258.910156 289.386719 258.910156 289.503906 C 258.910156 289.621094 259.003906 289.714844 259.121094 289.714844 C 259.238281 289.714844 259.332031 289.621094 259.332031 289.503906 Z M 259.332031 289.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.125 288.433594 C 258.125 288.316406 258.03125 288.222656 257.914062 288.222656 C 257.796875 288.222656 257.703125 288.316406 257.703125 288.433594 C 257.703125 288.550781 257.796875 288.644531 257.914062 288.644531 C 258.03125 288.644531 258.125 288.550781 258.125 288.433594 Z M 258.125 288.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.589844 285.582031 C 260.589844 285.464844 260.496094 285.371094 260.378906 285.371094 C 260.261719 285.371094 260.167969 285.464844 260.167969 285.582031 C 260.167969 285.699219 260.261719 285.792969 260.378906 285.792969 C 260.496094 285.792969 260.589844 285.699219 260.589844 285.582031 Z M 260.589844 285.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.515625 288.425781 C 258.515625 288.308594 258.421875 288.214844 258.304688 288.214844 C 258.1875 288.214844 258.09375 288.308594 258.09375 288.425781 C 258.09375 288.542969 258.1875 288.636719 258.304688 288.636719 C 258.421875 288.636719 258.515625 288.542969 258.515625 288.425781 Z M 258.515625 288.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.746094 289.011719 C 258.746094 288.894531 258.652344 288.800781 258.535156 288.800781 C 258.417969 288.800781 258.324219 288.894531 258.324219 289.011719 C 258.324219 289.128906 258.417969 289.222656 258.535156 289.222656 C 258.652344 289.222656 258.746094 289.128906 258.746094 289.011719 Z M 258.746094 289.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.472656 286.605469 C 255.472656 286.488281 255.378906 286.394531 255.261719 286.394531 C 255.144531 286.394531 255.050781 286.488281 255.050781 286.605469 C 255.050781 286.722656 255.144531 286.816406 255.261719 286.816406 C 255.378906 286.816406 255.472656 286.722656 255.472656 286.605469 Z M 255.472656 286.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.757812 283.578125 C 252.757812 283.460938 252.664062 283.367188 252.546875 283.367188 C 252.429688 283.367188 252.335938 283.460938 252.335938 283.578125 C 252.335938 283.695312 252.429688 283.789062 252.546875 283.789062 C 252.664062 283.789062 252.757812 283.695312 252.757812 283.578125 Z M 252.757812 283.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.542969 281.847656 C 252.542969 281.730469 252.449219 281.636719 252.332031 281.636719 C 252.214844 281.636719 252.121094 281.730469 252.121094 281.847656 C 252.121094 281.964844 252.214844 282.058594 252.332031 282.058594 C 252.449219 282.058594 252.542969 281.964844 252.542969 281.847656 Z M 252.542969 281.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.058594 283.90625 C 255.058594 283.789062 254.964844 283.695312 254.847656 283.695312 C 254.730469 283.695312 254.636719 283.789062 254.636719 283.90625 C 254.636719 284.023438 254.730469 284.117188 254.847656 284.117188 C 254.964844 284.117188 255.058594 284.023438 255.058594 283.90625 Z M 255.058594 283.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.316406 283.550781 C 251.316406 283.433594 251.222656 283.339844 251.105469 283.339844 C 250.988281 283.339844 250.894531 283.433594 250.894531 283.550781 C 250.894531 283.667969 250.988281 283.761719 251.105469 283.761719 C 251.222656 283.761719 251.316406 283.667969 251.316406 283.550781 Z M 251.316406 283.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.082031 282.023438 C 256.082031 281.90625 255.988281 281.8125 255.871094 281.8125 C 255.753906 281.8125 255.660156 281.90625 255.660156 282.023438 C 255.660156 282.140625 255.753906 282.234375 255.871094 282.234375 C 255.988281 282.234375 256.082031 282.140625 256.082031 282.023438 Z M 256.082031 282.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.882812 280.90625 C 253.882812 280.789062 253.789062 280.695312 253.671875 280.695312 C 253.554688 280.695312 253.460938 280.789062 253.460938 280.90625 C 253.460938 281.023438 253.554688 281.117188 253.671875 281.117188 C 253.789062 281.117188 253.882812 281.023438 253.882812 280.90625 Z M 253.882812 280.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.019531 279.394531 C 254.019531 279.277344 253.925781 279.183594 253.808594 279.183594 C 253.691406 279.183594 253.597656 279.277344 253.597656 279.394531 C 253.597656 279.511719 253.691406 279.605469 253.808594 279.605469 C 253.925781 279.605469 254.019531 279.511719 254.019531 279.394531 Z M 254.019531 279.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.289062 279.386719 C 255.289062 279.269531 255.195312 279.175781 255.078125 279.175781 C 254.960938 279.175781 254.867188 279.269531 254.867188 279.386719 C 254.867188 279.503906 254.960938 279.597656 255.078125 279.597656 C 255.195312 279.597656 255.289062 279.503906 255.289062 279.386719 Z M 255.289062 279.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.570312 282.238281 C 253.570312 282.121094 253.476562 282.027344 253.359375 282.027344 C 253.242188 282.027344 253.148438 282.121094 253.148438 282.238281 C 253.148438 282.355469 253.242188 282.449219 253.359375 282.449219 C 253.476562 282.449219 253.570312 282.355469 253.570312 282.238281 Z M 253.570312 282.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.019531 281.703125 C 252.019531 281.585938 251.925781 281.492188 251.808594 281.492188 C 251.691406 281.492188 251.597656 281.585938 251.597656 281.703125 C 251.597656 281.820312 251.691406 281.914062 251.808594 281.914062 C 251.925781 281.914062 252.019531 281.820312 252.019531 281.703125 Z M 252.019531 281.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.714844 280.207031 C 250.714844 280.089844 250.621094 279.996094 250.503906 279.996094 C 250.386719 279.996094 250.292969 280.089844 250.292969 280.207031 C 250.292969 280.324219 250.386719 280.417969 250.503906 280.417969 C 250.621094 280.417969 250.714844 280.324219 250.714844 280.207031 Z M 250.714844 280.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.738281 281.355469 C 247.738281 281.238281 247.644531 281.144531 247.527344 281.144531 C 247.410156 281.144531 247.316406 281.238281 247.316406 281.355469 C 247.316406 281.472656 247.410156 281.566406 247.527344 281.566406 C 247.644531 281.566406 247.738281 281.472656 247.738281 281.355469 Z M 247.738281 281.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249 278.945312 C 249 278.828125 248.90625 278.734375 248.789062 278.734375 C 248.671875 278.734375 248.578125 278.828125 248.578125 278.945312 C 248.578125 279.0625 248.671875 279.15625 248.789062 279.15625 C 248.90625 279.15625 249 279.0625 249 278.945312 Z M 249 278.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.304688 275.644531 C 250.304688 275.527344 250.210938 275.433594 250.09375 275.433594 C 249.976562 275.433594 249.882812 275.527344 249.882812 275.644531 C 249.882812 275.761719 249.976562 275.855469 250.09375 275.855469 C 250.210938 275.855469 250.304688 275.761719 250.304688 275.644531 Z M 250.304688 275.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.59375 281.175781 C 249.59375 281.058594 249.5 280.964844 249.382812 280.964844 C 249.265625 280.964844 249.171875 281.058594 249.171875 281.175781 C 249.171875 281.292969 249.265625 281.386719 249.382812 281.386719 C 249.5 281.386719 249.59375 281.292969 249.59375 281.175781 Z M 249.59375 281.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.382812 279.308594 C 252.382812 279.191406 252.289062 279.097656 252.171875 279.097656 C 252.054688 279.097656 251.960938 279.191406 251.960938 279.308594 C 251.960938 279.425781 252.054688 279.519531 252.171875 279.519531 C 252.289062 279.519531 252.382812 279.425781 252.382812 279.308594 Z M 252.382812 279.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.597656 277.125 C 253.597656 277.007812 253.503906 276.914062 253.386719 276.914062 C 253.269531 276.914062 253.175781 277.007812 253.175781 277.125 C 253.175781 277.242188 253.269531 277.335938 253.386719 277.335938 C 253.503906 277.335938 253.597656 277.242188 253.597656 277.125 Z M 253.597656 277.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.316406 278.417969 C 250.316406 278.300781 250.222656 278.207031 250.105469 278.207031 C 249.988281 278.207031 249.894531 278.300781 249.894531 278.417969 C 249.894531 278.535156 249.988281 278.628906 250.105469 278.628906 C 250.222656 278.628906 250.316406 278.535156 250.316406 278.417969 Z M 250.316406 278.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.738281 281.371094 C 250.738281 281.253906 250.644531 281.160156 250.527344 281.160156 C 250.410156 281.160156 250.316406 281.253906 250.316406 281.371094 C 250.316406 281.488281 250.410156 281.582031 250.527344 281.582031 C 250.644531 281.582031 250.738281 281.488281 250.738281 281.371094 Z M 250.738281 281.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.875 286.40625 C 244.875 286.289062 244.78125 286.195312 244.664062 286.195312 C 244.546875 286.195312 244.453125 286.289062 244.453125 286.40625 C 244.453125 286.523438 244.546875 286.617188 244.664062 286.617188 C 244.78125 286.617188 244.875 286.523438 244.875 286.40625 Z M 244.875 286.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.789062 284.4375 C 246.789062 284.320312 246.695312 284.226562 246.578125 284.226562 C 246.460938 284.226562 246.367188 284.320312 246.367188 284.4375 C 246.367188 284.554688 246.460938 284.648438 246.578125 284.648438 C 246.695312 284.648438 246.789062 284.554688 246.789062 284.4375 Z M 246.789062 284.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.980469 286.421875 C 247.980469 286.304688 247.886719 286.210938 247.769531 286.210938 C 247.652344 286.210938 247.558594 286.304688 247.558594 286.421875 C 247.558594 286.539062 247.652344 286.632812 247.769531 286.632812 C 247.886719 286.632812 247.980469 286.539062 247.980469 286.421875 Z M 247.980469 286.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.097656 289.367188 C 250.097656 289.25 250.003906 289.15625 249.886719 289.15625 C 249.769531 289.15625 249.675781 289.25 249.675781 289.367188 C 249.675781 289.484375 249.769531 289.578125 249.886719 289.578125 C 250.003906 289.578125 250.097656 289.484375 250.097656 289.367188 Z M 250.097656 289.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.523438 289.882812 C 252.523438 289.765625 252.429688 289.671875 252.3125 289.671875 C 252.195312 289.671875 252.101562 289.765625 252.101562 289.882812 C 252.101562 290 252.195312 290.09375 252.3125 290.09375 C 252.429688 290.09375 252.523438 290 252.523438 289.882812 Z M 252.523438 289.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.648438 288.519531 C 251.648438 288.402344 251.554688 288.308594 251.4375 288.308594 C 251.320312 288.308594 251.226562 288.402344 251.226562 288.519531 C 251.226562 288.636719 251.320312 288.730469 251.4375 288.730469 C 251.554688 288.730469 251.648438 288.636719 251.648438 288.519531 Z M 251.648438 288.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.433594 290.378906 C 252.433594 290.261719 252.339844 290.167969 252.222656 290.167969 C 252.105469 290.167969 252.011719 290.261719 252.011719 290.378906 C 252.011719 290.496094 252.105469 290.589844 252.222656 290.589844 C 252.339844 290.589844 252.433594 290.496094 252.433594 290.378906 Z M 252.433594 290.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.75 288.757812 C 251.75 288.640625 251.65625 288.546875 251.539062 288.546875 C 251.421875 288.546875 251.328125 288.640625 251.328125 288.757812 C 251.328125 288.875 251.421875 288.96875 251.539062 288.96875 C 251.65625 288.96875 251.75 288.875 251.75 288.757812 Z M 251.75 288.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.042969 287.769531 C 253.042969 287.652344 252.949219 287.558594 252.832031 287.558594 C 252.714844 287.558594 252.621094 287.652344 252.621094 287.769531 C 252.621094 287.886719 252.714844 287.980469 252.832031 287.980469 C 252.949219 287.980469 253.042969 287.886719 253.042969 287.769531 Z M 253.042969 287.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.441406 287.242188 C 253.441406 287.125 253.347656 287.03125 253.230469 287.03125 C 253.113281 287.03125 253.019531 287.125 253.019531 287.242188 C 253.019531 287.359375 253.113281 287.453125 253.230469 287.453125 C 253.347656 287.453125 253.441406 287.359375 253.441406 287.242188 Z M 253.441406 287.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.117188 283.933594 C 251.117188 283.816406 251.023438 283.722656 250.90625 283.722656 C 250.789062 283.722656 250.695312 283.816406 250.695312 283.933594 C 250.695312 284.050781 250.789062 284.144531 250.90625 284.144531 C 251.023438 284.144531 251.117188 284.050781 251.117188 283.933594 Z M 251.117188 283.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.71875 277.855469 C 251.71875 277.738281 251.625 277.644531 251.507812 277.644531 C 251.390625 277.644531 251.296875 277.738281 251.296875 277.855469 C 251.296875 277.972656 251.390625 278.066406 251.507812 278.066406 C 251.625 278.066406 251.71875 277.972656 251.71875 277.855469 Z M 251.71875 277.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.082031 278.878906 C 256.082031 278.761719 255.988281 278.667969 255.871094 278.667969 C 255.753906 278.667969 255.660156 278.761719 255.660156 278.878906 C 255.660156 278.996094 255.753906 279.089844 255.871094 279.089844 C 255.988281 279.089844 256.082031 278.996094 256.082031 278.878906 Z M 256.082031 278.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.988281 277.027344 C 257.988281 276.910156 257.894531 276.816406 257.777344 276.816406 C 257.660156 276.816406 257.566406 276.910156 257.566406 277.027344 C 257.566406 277.144531 257.660156 277.238281 257.777344 277.238281 C 257.894531 277.238281 257.988281 277.144531 257.988281 277.027344 Z M 257.988281 277.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.683594 278.914062 C 255.683594 278.796875 255.589844 278.703125 255.472656 278.703125 C 255.355469 278.703125 255.261719 278.796875 255.261719 278.914062 C 255.261719 279.03125 255.355469 279.125 255.472656 279.125 C 255.589844 279.125 255.683594 279.03125 255.683594 278.914062 Z M 255.683594 278.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.644531 278.664062 C 253.644531 278.546875 253.550781 278.453125 253.433594 278.453125 C 253.316406 278.453125 253.222656 278.546875 253.222656 278.664062 C 253.222656 278.78125 253.316406 278.875 253.433594 278.875 C 253.550781 278.875 253.644531 278.78125 253.644531 278.664062 Z M 253.644531 278.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.785156 279.914062 C 253.785156 279.796875 253.691406 279.703125 253.574219 279.703125 C 253.457031 279.703125 253.363281 279.796875 253.363281 279.914062 C 253.363281 280.03125 253.457031 280.125 253.574219 280.125 C 253.691406 280.125 253.785156 280.03125 253.785156 279.914062 Z M 253.785156 279.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.394531 280.765625 C 252.394531 280.648438 252.300781 280.554688 252.183594 280.554688 C 252.066406 280.554688 251.972656 280.648438 251.972656 280.765625 C 251.972656 280.882812 252.066406 280.976562 252.183594 280.976562 C 252.300781 280.976562 252.394531 280.882812 252.394531 280.765625 Z M 252.394531 280.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.574219 280.269531 C 253.574219 280.152344 253.480469 280.058594 253.363281 280.058594 C 253.246094 280.058594 253.152344 280.152344 253.152344 280.269531 C 253.152344 280.386719 253.246094 280.480469 253.363281 280.480469 C 253.480469 280.480469 253.574219 280.386719 253.574219 280.269531 Z M 253.574219 280.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.027344 280.714844 C 253.027344 280.597656 252.933594 280.503906 252.816406 280.503906 C 252.699219 280.503906 252.605469 280.597656 252.605469 280.714844 C 252.605469 280.832031 252.699219 280.925781 252.816406 280.925781 C 252.933594 280.925781 253.027344 280.832031 253.027344 280.714844 Z M 253.027344 280.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.273438 283 C 252.273438 282.882812 252.179688 282.789062 252.0625 282.789062 C 251.945312 282.789062 251.851562 282.882812 251.851562 283 C 251.851562 283.117188 251.945312 283.210938 252.0625 283.210938 C 252.179688 283.210938 252.273438 283.117188 252.273438 283 Z M 252.273438 283 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.621094 282.957031 C 252.621094 282.839844 252.527344 282.746094 252.410156 282.746094 C 252.292969 282.746094 252.199219 282.839844 252.199219 282.957031 C 252.199219 283.074219 252.292969 283.167969 252.410156 283.167969 C 252.527344 283.167969 252.621094 283.074219 252.621094 282.957031 Z M 252.621094 282.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.605469 283.210938 C 256.605469 283.09375 256.511719 283 256.394531 283 C 256.277344 283 256.183594 283.09375 256.183594 283.210938 C 256.183594 283.328125 256.277344 283.421875 256.394531 283.421875 C 256.511719 283.421875 256.605469 283.328125 256.605469 283.210938 Z M 256.605469 283.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.007812 281.136719 C 252.007812 281.019531 251.914062 280.925781 251.796875 280.925781 C 251.679688 280.925781 251.585938 281.019531 251.585938 281.136719 C 251.585938 281.253906 251.679688 281.347656 251.796875 281.347656 C 251.914062 281.347656 252.007812 281.253906 252.007812 281.136719 Z M 252.007812 281.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.308594 281.230469 C 249.308594 281.113281 249.214844 281.019531 249.097656 281.019531 C 248.980469 281.019531 248.886719 281.113281 248.886719 281.230469 C 248.886719 281.347656 248.980469 281.441406 249.097656 281.441406 C 249.214844 281.441406 249.308594 281.347656 249.308594 281.230469 Z M 249.308594 281.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.320312 280.660156 C 249.320312 280.542969 249.226562 280.449219 249.109375 280.449219 C 248.992188 280.449219 248.898438 280.542969 248.898438 280.660156 C 248.898438 280.777344 248.992188 280.871094 249.109375 280.871094 C 249.226562 280.871094 249.320312 280.777344 249.320312 280.660156 Z M 249.320312 280.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.277344 284.789062 C 247.277344 284.671875 247.183594 284.578125 247.066406 284.578125 C 246.949219 284.578125 246.855469 284.671875 246.855469 284.789062 C 246.855469 284.90625 246.949219 285 247.066406 285 C 247.183594 285 247.277344 284.90625 247.277344 284.789062 Z M 247.277344 284.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.320312 280.167969 C 250.320312 280.050781 250.226562 279.957031 250.109375 279.957031 C 249.992188 279.957031 249.898438 280.050781 249.898438 280.167969 C 249.898438 280.285156 249.992188 280.378906 250.109375 280.378906 C 250.226562 280.378906 250.320312 280.285156 250.320312 280.167969 Z M 250.320312 280.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.1875 279.757812 C 249.1875 279.640625 249.09375 279.546875 248.976562 279.546875 C 248.859375 279.546875 248.765625 279.640625 248.765625 279.757812 C 248.765625 279.875 248.859375 279.96875 248.976562 279.96875 C 249.09375 279.96875 249.1875 279.875 249.1875 279.757812 Z M 249.1875 279.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.261719 277.203125 C 250.261719 277.085938 250.167969 276.992188 250.050781 276.992188 C 249.933594 276.992188 249.839844 277.085938 249.839844 277.203125 C 249.839844 277.320312 249.933594 277.414062 250.050781 277.414062 C 250.167969 277.414062 250.261719 277.320312 250.261719 277.203125 Z M 250.261719 277.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.722656 278.386719 C 252.722656 278.269531 252.628906 278.175781 252.511719 278.175781 C 252.394531 278.175781 252.300781 278.269531 252.300781 278.386719 C 252.300781 278.503906 252.394531 278.597656 252.511719 278.597656 C 252.628906 278.597656 252.722656 278.503906 252.722656 278.386719 Z M 252.722656 278.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.707031 275.976562 C 254.707031 275.859375 254.613281 275.765625 254.496094 275.765625 C 254.378906 275.765625 254.285156 275.859375 254.285156 275.976562 C 254.285156 276.09375 254.378906 276.1875 254.496094 276.1875 C 254.613281 276.1875 254.707031 276.09375 254.707031 275.976562 Z M 254.707031 275.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.898438 272.664062 C 256.898438 272.546875 256.804688 272.453125 256.6875 272.453125 C 256.570312 272.453125 256.476562 272.546875 256.476562 272.664062 C 256.476562 272.78125 256.570312 272.875 256.6875 272.875 C 256.804688 272.875 256.898438 272.78125 256.898438 272.664062 Z M 256.898438 272.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.542969 274.972656 C 255.542969 274.855469 255.449219 274.761719 255.332031 274.761719 C 255.214844 274.761719 255.121094 274.855469 255.121094 274.972656 C 255.121094 275.089844 255.214844 275.183594 255.332031 275.183594 C 255.449219 275.183594 255.542969 275.089844 255.542969 274.972656 Z M 255.542969 274.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.761719 278.691406 C 251.761719 278.574219 251.667969 278.480469 251.550781 278.480469 C 251.433594 278.480469 251.339844 278.574219 251.339844 278.691406 C 251.339844 278.808594 251.433594 278.902344 251.550781 278.902344 C 251.667969 278.902344 251.761719 278.808594 251.761719 278.691406 Z M 251.761719 278.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.449219 277.445312 C 255.449219 277.328125 255.355469 277.234375 255.238281 277.234375 C 255.121094 277.234375 255.027344 277.328125 255.027344 277.445312 C 255.027344 277.5625 255.121094 277.65625 255.238281 277.65625 C 255.355469 277.65625 255.449219 277.5625 255.449219 277.445312 Z M 255.449219 277.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.542969 278.949219 C 255.542969 278.832031 255.449219 278.738281 255.332031 278.738281 C 255.214844 278.738281 255.121094 278.832031 255.121094 278.949219 C 255.121094 279.066406 255.214844 279.160156 255.332031 279.160156 C 255.449219 279.160156 255.542969 279.066406 255.542969 278.949219 Z M 255.542969 278.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.230469 279.5625 C 259.230469 279.445312 259.136719 279.351562 259.019531 279.351562 C 258.902344 279.351562 258.808594 279.445312 258.808594 279.5625 C 258.808594 279.679688 258.902344 279.773438 259.019531 279.773438 C 259.136719 279.773438 259.230469 279.679688 259.230469 279.5625 Z M 259.230469 279.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.765625 282.246094 C 262.765625 282.128906 262.671875 282.035156 262.554688 282.035156 C 262.4375 282.035156 262.34375 282.128906 262.34375 282.246094 C 262.34375 282.363281 262.4375 282.457031 262.554688 282.457031 C 262.671875 282.457031 262.765625 282.363281 262.765625 282.246094 Z M 262.765625 282.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.488281 283.957031 C 262.488281 283.839844 262.394531 283.746094 262.277344 283.746094 C 262.160156 283.746094 262.066406 283.839844 262.066406 283.957031 C 262.066406 284.074219 262.160156 284.167969 262.277344 284.167969 C 262.394531 284.167969 262.488281 284.074219 262.488281 283.957031 Z M 262.488281 283.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.734375 281.902344 C 260.734375 281.785156 260.640625 281.691406 260.523438 281.691406 C 260.40625 281.691406 260.3125 281.785156 260.3125 281.902344 C 260.3125 282.019531 260.40625 282.113281 260.523438 282.113281 C 260.640625 282.113281 260.734375 282.019531 260.734375 281.902344 Z M 260.734375 281.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.988281 280.648438 C 262.988281 280.53125 262.894531 280.4375 262.777344 280.4375 C 262.660156 280.4375 262.566406 280.53125 262.566406 280.648438 C 262.566406 280.765625 262.660156 280.859375 262.777344 280.859375 C 262.894531 280.859375 262.988281 280.765625 262.988281 280.648438 Z M 262.988281 280.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.882812 279.265625 C 261.882812 279.148438 261.789062 279.054688 261.671875 279.054688 C 261.554688 279.054688 261.460938 279.148438 261.460938 279.265625 C 261.460938 279.382812 261.554688 279.476562 261.671875 279.476562 C 261.789062 279.476562 261.882812 279.382812 261.882812 279.265625 Z M 261.882812 279.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.875 274.910156 C 261.875 274.792969 261.78125 274.699219 261.664062 274.699219 C 261.546875 274.699219 261.453125 274.792969 261.453125 274.910156 C 261.453125 275.027344 261.546875 275.121094 261.664062 275.121094 C 261.78125 275.121094 261.875 275.027344 261.875 274.910156 Z M 261.875 274.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.75 276.417969 C 262.75 276.300781 262.65625 276.207031 262.539062 276.207031 C 262.421875 276.207031 262.328125 276.300781 262.328125 276.417969 C 262.328125 276.535156 262.421875 276.628906 262.539062 276.628906 C 262.65625 276.628906 262.75 276.535156 262.75 276.417969 Z M 262.75 276.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.226562 274.359375 C 262.226562 274.242188 262.132812 274.148438 262.015625 274.148438 C 261.898438 274.148438 261.804688 274.242188 261.804688 274.359375 C 261.804688 274.476562 261.898438 274.570312 262.015625 274.570312 C 262.132812 274.570312 262.226562 274.476562 262.226562 274.359375 Z M 262.226562 274.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.464844 272.527344 C 266.464844 272.410156 266.371094 272.316406 266.253906 272.316406 C 266.136719 272.316406 266.042969 272.410156 266.042969 272.527344 C 266.042969 272.644531 266.136719 272.738281 266.253906 272.738281 C 266.371094 272.738281 266.464844 272.644531 266.464844 272.527344 Z M 266.464844 272.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.46875 271.679688 C 266.46875 271.5625 266.375 271.46875 266.257812 271.46875 C 266.140625 271.46875 266.046875 271.5625 266.046875 271.679688 C 266.046875 271.796875 266.140625 271.890625 266.257812 271.890625 C 266.375 271.890625 266.46875 271.796875 266.46875 271.679688 Z M 266.46875 271.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.71875 271.128906 C 263.71875 271.011719 263.625 270.917969 263.507812 270.917969 C 263.390625 270.917969 263.296875 271.011719 263.296875 271.128906 C 263.296875 271.246094 263.390625 271.339844 263.507812 271.339844 C 263.625 271.339844 263.71875 271.246094 263.71875 271.128906 Z M 263.71875 271.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.40625 269.53125 C 264.40625 269.414062 264.3125 269.320312 264.195312 269.320312 C 264.078125 269.320312 263.984375 269.414062 263.984375 269.53125 C 263.984375 269.648438 264.078125 269.742188 264.195312 269.742188 C 264.3125 269.742188 264.40625 269.648438 264.40625 269.53125 Z M 264.40625 269.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.335938 271.191406 C 265.335938 271.074219 265.242188 270.980469 265.125 270.980469 C 265.007812 270.980469 264.914062 271.074219 264.914062 271.191406 C 264.914062 271.308594 265.007812 271.402344 265.125 271.402344 C 265.242188 271.402344 265.335938 271.308594 265.335938 271.191406 Z M 265.335938 271.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.039062 272.695312 C 268.039062 272.578125 267.945312 272.484375 267.828125 272.484375 C 267.710938 272.484375 267.617188 272.578125 267.617188 272.695312 C 267.617188 272.8125 267.710938 272.90625 267.828125 272.90625 C 267.945312 272.90625 268.039062 272.8125 268.039062 272.695312 Z M 268.039062 272.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.328125 271.796875 C 267.328125 271.679688 267.234375 271.585938 267.117188 271.585938 C 267 271.585938 266.90625 271.679688 266.90625 271.796875 C 266.90625 271.914062 267 272.007812 267.117188 272.007812 C 267.234375 272.007812 267.328125 271.914062 267.328125 271.796875 Z M 267.328125 271.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.410156 272.804688 C 267.410156 272.6875 267.316406 272.59375 267.199219 272.59375 C 267.082031 272.59375 266.988281 272.6875 266.988281 272.804688 C 266.988281 272.921875 267.082031 273.015625 267.199219 273.015625 C 267.316406 273.015625 267.410156 272.921875 267.410156 272.804688 Z M 267.410156 272.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.113281 269.621094 C 267.113281 269.503906 267.019531 269.410156 266.902344 269.410156 C 266.785156 269.410156 266.691406 269.503906 266.691406 269.621094 C 266.691406 269.738281 266.785156 269.832031 266.902344 269.832031 C 267.019531 269.832031 267.113281 269.738281 267.113281 269.621094 Z M 267.113281 269.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.351562 271.1875 C 266.351562 271.070312 266.257812 270.976562 266.140625 270.976562 C 266.023438 270.976562 265.929688 271.070312 265.929688 271.1875 C 265.929688 271.304688 266.023438 271.398438 266.140625 271.398438 C 266.257812 271.398438 266.351562 271.304688 266.351562 271.1875 Z M 266.351562 271.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.027344 271.242188 C 269.027344 271.125 268.933594 271.03125 268.816406 271.03125 C 268.699219 271.03125 268.605469 271.125 268.605469 271.242188 C 268.605469 271.359375 268.699219 271.453125 268.816406 271.453125 C 268.933594 271.453125 269.027344 271.359375 269.027344 271.242188 Z M 269.027344 271.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.691406 269.003906 C 273.691406 268.886719 273.597656 268.792969 273.480469 268.792969 C 273.363281 268.792969 273.269531 268.886719 273.269531 269.003906 C 273.269531 269.121094 273.363281 269.214844 273.480469 269.214844 C 273.597656 269.214844 273.691406 269.121094 273.691406 269.003906 Z M 273.691406 269.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.695312 264.027344 C 271.695312 263.910156 271.601562 263.816406 271.484375 263.816406 C 271.367188 263.816406 271.273438 263.910156 271.273438 264.027344 C 271.273438 264.144531 271.367188 264.238281 271.484375 264.238281 C 271.601562 264.238281 271.695312 264.144531 271.695312 264.027344 Z M 271.695312 264.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.90625 267.539062 C 270.90625 267.421875 270.8125 267.328125 270.695312 267.328125 C 270.578125 267.328125 270.484375 267.421875 270.484375 267.539062 C 270.484375 267.65625 270.578125 267.75 270.695312 267.75 C 270.8125 267.75 270.90625 267.65625 270.90625 267.539062 Z M 270.90625 267.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.3125 269.714844 C 272.3125 269.597656 272.21875 269.503906 272.101562 269.503906 C 271.984375 269.503906 271.890625 269.597656 271.890625 269.714844 C 271.890625 269.832031 271.984375 269.925781 272.101562 269.925781 C 272.21875 269.925781 272.3125 269.832031 272.3125 269.714844 Z M 272.3125 269.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.265625 271.25 C 272.265625 271.132812 272.171875 271.039062 272.054688 271.039062 C 271.9375 271.039062 271.84375 271.132812 271.84375 271.25 C 271.84375 271.367188 271.9375 271.460938 272.054688 271.460938 C 272.171875 271.460938 272.265625 271.367188 272.265625 271.25 Z M 272.265625 271.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.894531 273.195312 C 269.894531 273.078125 269.800781 272.984375 269.683594 272.984375 C 269.566406 272.984375 269.472656 273.078125 269.472656 273.195312 C 269.472656 273.3125 269.566406 273.40625 269.683594 273.40625 C 269.800781 273.40625 269.894531 273.3125 269.894531 273.195312 Z M 269.894531 273.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.058594 271.761719 C 273.058594 271.644531 272.964844 271.550781 272.847656 271.550781 C 272.730469 271.550781 272.636719 271.644531 272.636719 271.761719 C 272.636719 271.878906 272.730469 271.972656 272.847656 271.972656 C 272.964844 271.972656 273.058594 271.878906 273.058594 271.761719 Z M 273.058594 271.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.855469 273.28125 C 270.855469 273.164062 270.761719 273.070312 270.644531 273.070312 C 270.527344 273.070312 270.433594 273.164062 270.433594 273.28125 C 270.433594 273.398438 270.527344 273.492188 270.644531 273.492188 C 270.761719 273.492188 270.855469 273.398438 270.855469 273.28125 Z M 270.855469 273.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.0625 272.800781 C 270.0625 272.683594 269.96875 272.589844 269.851562 272.589844 C 269.734375 272.589844 269.640625 272.683594 269.640625 272.800781 C 269.640625 272.917969 269.734375 273.011719 269.851562 273.011719 C 269.96875 273.011719 270.0625 272.917969 270.0625 272.800781 Z M 270.0625 272.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.128906 272.605469 C 269.128906 272.488281 269.035156 272.394531 268.917969 272.394531 C 268.800781 272.394531 268.707031 272.488281 268.707031 272.605469 C 268.707031 272.722656 268.800781 272.816406 268.917969 272.816406 C 269.035156 272.816406 269.128906 272.722656 269.128906 272.605469 Z M 269.128906 272.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.621094 268.921875 C 268.621094 268.804688 268.527344 268.710938 268.410156 268.710938 C 268.292969 268.710938 268.199219 268.804688 268.199219 268.921875 C 268.199219 269.039062 268.292969 269.132812 268.410156 269.132812 C 268.527344 269.132812 268.621094 269.039062 268.621094 268.921875 Z M 268.621094 268.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.738281 267.75 C 265.738281 267.632812 265.644531 267.539062 265.527344 267.539062 C 265.410156 267.539062 265.316406 267.632812 265.316406 267.75 C 265.316406 267.867188 265.410156 267.960938 265.527344 267.960938 C 265.644531 267.960938 265.738281 267.867188 265.738281 267.75 Z M 265.738281 267.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.472656 268.289062 C 269.472656 268.171875 269.378906 268.078125 269.261719 268.078125 C 269.144531 268.078125 269.050781 268.171875 269.050781 268.289062 C 269.050781 268.40625 269.144531 268.5 269.261719 268.5 C 269.378906 268.5 269.472656 268.40625 269.472656 268.289062 Z M 269.472656 268.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.710938 268.214844 C 271.710938 268.097656 271.617188 268.003906 271.5 268.003906 C 271.382812 268.003906 271.289062 268.097656 271.289062 268.214844 C 271.289062 268.332031 271.382812 268.425781 271.5 268.425781 C 271.617188 268.425781 271.710938 268.332031 271.710938 268.214844 Z M 271.710938 268.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.113281 267.636719 C 273.113281 267.519531 273.019531 267.425781 272.902344 267.425781 C 272.785156 267.425781 272.691406 267.519531 272.691406 267.636719 C 272.691406 267.753906 272.785156 267.847656 272.902344 267.847656 C 273.019531 267.847656 273.113281 267.753906 273.113281 267.636719 Z M 273.113281 267.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.707031 266.34375 C 272.707031 266.226562 272.613281 266.132812 272.496094 266.132812 C 272.378906 266.132812 272.285156 266.226562 272.285156 266.34375 C 272.285156 266.460938 272.378906 266.554688 272.496094 266.554688 C 272.613281 266.554688 272.707031 266.460938 272.707031 266.34375 Z M 272.707031 266.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.488281 269.980469 C 273.488281 269.863281 273.394531 269.769531 273.277344 269.769531 C 273.160156 269.769531 273.066406 269.863281 273.066406 269.980469 C 273.066406 270.097656 273.160156 270.191406 273.277344 270.191406 C 273.394531 270.191406 273.488281 270.097656 273.488281 269.980469 Z M 273.488281 269.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.710938 271.746094 C 272.710938 271.628906 272.617188 271.535156 272.5 271.535156 C 272.382812 271.535156 272.289062 271.628906 272.289062 271.746094 C 272.289062 271.863281 272.382812 271.957031 272.5 271.957031 C 272.617188 271.957031 272.710938 271.863281 272.710938 271.746094 Z M 272.710938 271.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.125 268.449219 C 274.125 268.332031 274.03125 268.238281 273.914062 268.238281 C 273.796875 268.238281 273.703125 268.332031 273.703125 268.449219 C 273.703125 268.566406 273.796875 268.660156 273.914062 268.660156 C 274.03125 268.660156 274.125 268.566406 274.125 268.449219 Z M 274.125 268.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.097656 268.613281 C 276.097656 268.496094 276.003906 268.402344 275.886719 268.402344 C 275.769531 268.402344 275.675781 268.496094 275.675781 268.613281 C 275.675781 268.730469 275.769531 268.824219 275.886719 268.824219 C 276.003906 268.824219 276.097656 268.730469 276.097656 268.613281 Z M 276.097656 268.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.261719 267.105469 C 276.261719 266.988281 276.167969 266.894531 276.050781 266.894531 C 275.933594 266.894531 275.839844 266.988281 275.839844 267.105469 C 275.839844 267.222656 275.933594 267.316406 276.050781 267.316406 C 276.167969 267.316406 276.261719 267.222656 276.261719 267.105469 Z M 276.261719 267.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.972656 266.96875 C 275.972656 266.851562 275.878906 266.757812 275.761719 266.757812 C 275.644531 266.757812 275.550781 266.851562 275.550781 266.96875 C 275.550781 267.085938 275.644531 267.179688 275.761719 267.179688 C 275.878906 267.179688 275.972656 267.085938 275.972656 266.96875 Z M 275.972656 266.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.875 267.601562 C 274.875 267.484375 274.78125 267.390625 274.664062 267.390625 C 274.546875 267.390625 274.453125 267.484375 274.453125 267.601562 C 274.453125 267.71875 274.546875 267.8125 274.664062 267.8125 C 274.78125 267.8125 274.875 267.71875 274.875 267.601562 Z M 274.875 267.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.816406 267.734375 C 273.816406 267.617188 273.722656 267.523438 273.605469 267.523438 C 273.488281 267.523438 273.394531 267.617188 273.394531 267.734375 C 273.394531 267.851562 273.488281 267.945312 273.605469 267.945312 C 273.722656 267.945312 273.816406 267.851562 273.816406 267.734375 Z M 273.816406 267.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.996094 269.722656 C 274.996094 269.605469 274.902344 269.511719 274.785156 269.511719 C 274.667969 269.511719 274.574219 269.605469 274.574219 269.722656 C 274.574219 269.839844 274.667969 269.933594 274.785156 269.933594 C 274.902344 269.933594 274.996094 269.839844 274.996094 269.722656 Z M 274.996094 269.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.621094 274.289062 C 275.621094 274.171875 275.527344 274.078125 275.410156 274.078125 C 275.292969 274.078125 275.199219 274.171875 275.199219 274.289062 C 275.199219 274.40625 275.292969 274.5 275.410156 274.5 C 275.527344 274.5 275.621094 274.40625 275.621094 274.289062 Z M 275.621094 274.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.183594 273.046875 C 277.183594 272.929688 277.089844 272.835938 276.972656 272.835938 C 276.855469 272.835938 276.761719 272.929688 276.761719 273.046875 C 276.761719 273.164062 276.855469 273.257812 276.972656 273.257812 C 277.089844 273.257812 277.183594 273.164062 277.183594 273.046875 Z M 277.183594 273.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.550781 271.523438 C 279.550781 271.40625 279.457031 271.3125 279.339844 271.3125 C 279.222656 271.3125 279.128906 271.40625 279.128906 271.523438 C 279.128906 271.640625 279.222656 271.734375 279.339844 271.734375 C 279.457031 271.734375 279.550781 271.640625 279.550781 271.523438 Z M 279.550781 271.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.144531 270.636719 C 280.144531 270.519531 280.050781 270.425781 279.933594 270.425781 C 279.816406 270.425781 279.722656 270.519531 279.722656 270.636719 C 279.722656 270.753906 279.816406 270.847656 279.933594 270.847656 C 280.050781 270.847656 280.144531 270.753906 280.144531 270.636719 Z M 280.144531 270.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.199219 269.625 C 282.199219 269.507812 282.105469 269.414062 281.988281 269.414062 C 281.871094 269.414062 281.777344 269.507812 281.777344 269.625 C 281.777344 269.742188 281.871094 269.835938 281.988281 269.835938 C 282.105469 269.835938 282.199219 269.742188 282.199219 269.625 Z M 282.199219 269.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.511719 269.308594 C 282.511719 269.191406 282.417969 269.097656 282.300781 269.097656 C 282.183594 269.097656 282.089844 269.191406 282.089844 269.308594 C 282.089844 269.425781 282.183594 269.519531 282.300781 269.519531 C 282.417969 269.519531 282.511719 269.425781 282.511719 269.308594 Z M 282.511719 269.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.140625 269.300781 C 280.140625 269.183594 280.046875 269.089844 279.929688 269.089844 C 279.8125 269.089844 279.71875 269.183594 279.71875 269.300781 C 279.71875 269.417969 279.8125 269.511719 279.929688 269.511719 C 280.046875 269.511719 280.140625 269.417969 280.140625 269.300781 Z M 280.140625 269.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.628906 267.945312 C 282.628906 267.828125 282.535156 267.734375 282.417969 267.734375 C 282.300781 267.734375 282.207031 267.828125 282.207031 267.945312 C 282.207031 268.0625 282.300781 268.15625 282.417969 268.15625 C 282.535156 268.15625 282.628906 268.0625 282.628906 267.945312 Z M 282.628906 267.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.253906 268.246094 C 280.253906 268.128906 280.160156 268.035156 280.042969 268.035156 C 279.925781 268.035156 279.832031 268.128906 279.832031 268.246094 C 279.832031 268.363281 279.925781 268.457031 280.042969 268.457031 C 280.160156 268.457031 280.253906 268.363281 280.253906 268.246094 Z M 280.253906 268.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.6875 274.007812 C 279.6875 273.890625 279.59375 273.796875 279.476562 273.796875 C 279.359375 273.796875 279.265625 273.890625 279.265625 274.007812 C 279.265625 274.125 279.359375 274.21875 279.476562 274.21875 C 279.59375 274.21875 279.6875 274.125 279.6875 274.007812 Z M 279.6875 274.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.339844 274.0625 C 282.339844 273.945312 282.246094 273.851562 282.128906 273.851562 C 282.011719 273.851562 281.917969 273.945312 281.917969 274.0625 C 281.917969 274.179688 282.011719 274.273438 282.128906 274.273438 C 282.246094 274.273438 282.339844 274.179688 282.339844 274.0625 Z M 282.339844 274.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.578125 272.753906 C 281.578125 272.636719 281.484375 272.542969 281.367188 272.542969 C 281.25 272.542969 281.15625 272.636719 281.15625 272.753906 C 281.15625 272.871094 281.25 272.964844 281.367188 272.964844 C 281.484375 272.964844 281.578125 272.871094 281.578125 272.753906 Z M 281.578125 272.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.023438 267.5 C 282.023438 267.382812 281.929688 267.289062 281.8125 267.289062 C 281.695312 267.289062 281.601562 267.382812 281.601562 267.5 C 281.601562 267.617188 281.695312 267.710938 281.8125 267.710938 C 281.929688 267.710938 282.023438 267.617188 282.023438 267.5 Z M 282.023438 267.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.933594 269.175781 C 282.933594 269.058594 282.839844 268.964844 282.722656 268.964844 C 282.605469 268.964844 282.511719 269.058594 282.511719 269.175781 C 282.511719 269.292969 282.605469 269.386719 282.722656 269.386719 C 282.839844 269.386719 282.933594 269.292969 282.933594 269.175781 Z M 282.933594 269.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.71875 264.582031 C 279.71875 264.464844 279.625 264.371094 279.507812 264.371094 C 279.390625 264.371094 279.296875 264.464844 279.296875 264.582031 C 279.296875 264.699219 279.390625 264.792969 279.507812 264.792969 C 279.625 264.792969 279.71875 264.699219 279.71875 264.582031 Z M 279.71875 264.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.039062 266.171875 C 285.039062 266.054688 284.945312 265.960938 284.828125 265.960938 C 284.710938 265.960938 284.617188 266.054688 284.617188 266.171875 C 284.617188 266.289062 284.710938 266.382812 284.828125 266.382812 C 284.945312 266.382812 285.039062 266.289062 285.039062 266.171875 Z M 285.039062 266.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.375 266.160156 C 288.375 266.042969 288.28125 265.949219 288.164062 265.949219 C 288.046875 265.949219 287.953125 266.042969 287.953125 266.160156 C 287.953125 266.277344 288.046875 266.371094 288.164062 266.371094 C 288.28125 266.371094 288.375 266.277344 288.375 266.160156 Z M 288.375 266.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.199219 269.652344 C 290.199219 269.535156 290.105469 269.441406 289.988281 269.441406 C 289.871094 269.441406 289.777344 269.535156 289.777344 269.652344 C 289.777344 269.769531 289.871094 269.863281 289.988281 269.863281 C 290.105469 269.863281 290.199219 269.769531 290.199219 269.652344 Z M 290.199219 269.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.808594 267.53125 C 291.808594 267.414062 291.714844 267.320312 291.597656 267.320312 C 291.480469 267.320312 291.386719 267.414062 291.386719 267.53125 C 291.386719 267.648438 291.480469 267.742188 291.597656 267.742188 C 291.714844 267.742188 291.808594 267.648438 291.808594 267.53125 Z M 291.808594 267.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.972656 270.90625 C 290.972656 270.789062 290.878906 270.695312 290.761719 270.695312 C 290.644531 270.695312 290.550781 270.789062 290.550781 270.90625 C 290.550781 271.023438 290.644531 271.117188 290.761719 271.117188 C 290.878906 271.117188 290.972656 271.023438 290.972656 270.90625 Z M 290.972656 270.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.996094 270.773438 C 291.996094 270.65625 291.902344 270.5625 291.785156 270.5625 C 291.667969 270.5625 291.574219 270.65625 291.574219 270.773438 C 291.574219 270.890625 291.667969 270.984375 291.785156 270.984375 C 291.902344 270.984375 291.996094 270.890625 291.996094 270.773438 Z M 291.996094 270.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.4375 269.507812 C 289.4375 269.390625 289.34375 269.296875 289.226562 269.296875 C 289.109375 269.296875 289.015625 269.390625 289.015625 269.507812 C 289.015625 269.625 289.109375 269.71875 289.226562 269.71875 C 289.34375 269.71875 289.4375 269.625 289.4375 269.507812 Z M 289.4375 269.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.671875 267.859375 C 287.671875 267.742188 287.578125 267.648438 287.460938 267.648438 C 287.34375 267.648438 287.25 267.742188 287.25 267.859375 C 287.25 267.976562 287.34375 268.070312 287.460938 268.070312 C 287.578125 268.070312 287.671875 267.976562 287.671875 267.859375 Z M 287.671875 267.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.445312 271.640625 C 287.445312 271.523438 287.351562 271.429688 287.234375 271.429688 C 287.117188 271.429688 287.023438 271.523438 287.023438 271.640625 C 287.023438 271.757812 287.117188 271.851562 287.234375 271.851562 C 287.351562 271.851562 287.445312 271.757812 287.445312 271.640625 Z M 287.445312 271.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.199219 270.742188 C 289.199219 270.625 289.105469 270.53125 288.988281 270.53125 C 288.871094 270.53125 288.777344 270.625 288.777344 270.742188 C 288.777344 270.859375 288.871094 270.953125 288.988281 270.953125 C 289.105469 270.953125 289.199219 270.859375 289.199219 270.742188 Z M 289.199219 270.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.042969 271.394531 C 289.042969 271.277344 288.949219 271.183594 288.832031 271.183594 C 288.714844 271.183594 288.621094 271.277344 288.621094 271.394531 C 288.621094 271.511719 288.714844 271.605469 288.832031 271.605469 C 288.949219 271.605469 289.042969 271.511719 289.042969 271.394531 Z M 289.042969 271.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.6875 269.570312 C 288.6875 269.453125 288.59375 269.359375 288.476562 269.359375 C 288.359375 269.359375 288.265625 269.453125 288.265625 269.570312 C 288.265625 269.6875 288.359375 269.78125 288.476562 269.78125 C 288.59375 269.78125 288.6875 269.6875 288.6875 269.570312 Z M 288.6875 269.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.496094 270.25 C 290.496094 270.132812 290.402344 270.039062 290.285156 270.039062 C 290.167969 270.039062 290.074219 270.132812 290.074219 270.25 C 290.074219 270.367188 290.167969 270.460938 290.285156 270.460938 C 290.402344 270.460938 290.496094 270.367188 290.496094 270.25 Z M 290.496094 270.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.265625 272.257812 C 291.265625 272.140625 291.171875 272.046875 291.054688 272.046875 C 290.9375 272.046875 290.84375 272.140625 290.84375 272.257812 C 290.84375 272.375 290.9375 272.46875 291.054688 272.46875 C 291.171875 272.46875 291.265625 272.375 291.265625 272.257812 Z M 291.265625 272.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.074219 273.558594 C 292.074219 273.441406 291.980469 273.347656 291.863281 273.347656 C 291.746094 273.347656 291.652344 273.441406 291.652344 273.558594 C 291.652344 273.675781 291.746094 273.769531 291.863281 273.769531 C 291.980469 273.769531 292.074219 273.675781 292.074219 273.558594 Z M 292.074219 273.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.636719 269.394531 C 286.636719 269.277344 286.542969 269.183594 286.425781 269.183594 C 286.308594 269.183594 286.214844 269.277344 286.214844 269.394531 C 286.214844 269.511719 286.308594 269.605469 286.425781 269.605469 C 286.542969 269.605469 286.636719 269.511719 286.636719 269.394531 Z M 286.636719 269.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.65625 271.644531 C 285.65625 271.527344 285.5625 271.433594 285.445312 271.433594 C 285.328125 271.433594 285.234375 271.527344 285.234375 271.644531 C 285.234375 271.761719 285.328125 271.855469 285.445312 271.855469 C 285.5625 271.855469 285.65625 271.761719 285.65625 271.644531 Z M 285.65625 271.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.441406 273.09375 C 287.441406 272.976562 287.347656 272.882812 287.230469 272.882812 C 287.113281 272.882812 287.019531 272.976562 287.019531 273.09375 C 287.019531 273.210938 287.113281 273.304688 287.230469 273.304688 C 287.347656 273.304688 287.441406 273.210938 287.441406 273.09375 Z M 287.441406 273.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.148438 275.792969 C 287.148438 275.675781 287.054688 275.582031 286.9375 275.582031 C 286.820312 275.582031 286.726562 275.675781 286.726562 275.792969 C 286.726562 275.910156 286.820312 276.003906 286.9375 276.003906 C 287.054688 276.003906 287.148438 275.910156 287.148438 275.792969 Z M 287.148438 275.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.859375 278.945312 C 283.859375 278.828125 283.765625 278.734375 283.648438 278.734375 C 283.53125 278.734375 283.4375 278.828125 283.4375 278.945312 C 283.4375 279.0625 283.53125 279.15625 283.648438 279.15625 C 283.765625 279.15625 283.859375 279.0625 283.859375 278.945312 Z M 283.859375 278.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.027344 278.445312 C 283.027344 278.328125 282.933594 278.234375 282.816406 278.234375 C 282.699219 278.234375 282.605469 278.328125 282.605469 278.445312 C 282.605469 278.5625 282.699219 278.65625 282.816406 278.65625 C 282.933594 278.65625 283.027344 278.5625 283.027344 278.445312 Z M 283.027344 278.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.871094 276.714844 C 286.871094 276.597656 286.777344 276.503906 286.660156 276.503906 C 286.542969 276.503906 286.449219 276.597656 286.449219 276.714844 C 286.449219 276.832031 286.542969 276.925781 286.660156 276.925781 C 286.777344 276.925781 286.871094 276.832031 286.871094 276.714844 Z M 286.871094 276.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.953125 274.289062 C 286.953125 274.171875 286.859375 274.078125 286.742188 274.078125 C 286.625 274.078125 286.53125 274.171875 286.53125 274.289062 C 286.53125 274.40625 286.625 274.5 286.742188 274.5 C 286.859375 274.5 286.953125 274.40625 286.953125 274.289062 Z M 286.953125 274.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.234375 270.109375 C 288.234375 269.992188 288.140625 269.898438 288.023438 269.898438 C 287.90625 269.898438 287.8125 269.992188 287.8125 270.109375 C 287.8125 270.226562 287.90625 270.320312 288.023438 270.320312 C 288.140625 270.320312 288.234375 270.226562 288.234375 270.109375 Z M 288.234375 270.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.316406 267.390625 C 287.316406 267.273438 287.222656 267.179688 287.105469 267.179688 C 286.988281 267.179688 286.894531 267.273438 286.894531 267.390625 C 286.894531 267.507812 286.988281 267.601562 287.105469 267.601562 C 287.222656 267.601562 287.316406 267.507812 287.316406 267.390625 Z M 287.316406 267.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.558594 264.324219 C 288.558594 264.207031 288.464844 264.113281 288.347656 264.113281 C 288.230469 264.113281 288.136719 264.207031 288.136719 264.324219 C 288.136719 264.441406 288.230469 264.535156 288.347656 264.535156 C 288.464844 264.535156 288.558594 264.441406 288.558594 264.324219 Z M 288.558594 264.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.894531 267.90625 C 288.894531 267.789062 288.800781 267.695312 288.683594 267.695312 C 288.566406 267.695312 288.472656 267.789062 288.472656 267.90625 C 288.472656 268.023438 288.566406 268.117188 288.683594 268.117188 C 288.800781 268.117188 288.894531 268.023438 288.894531 267.90625 Z M 288.894531 267.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.628906 267.589844 C 290.628906 267.472656 290.535156 267.378906 290.417969 267.378906 C 290.300781 267.378906 290.207031 267.472656 290.207031 267.589844 C 290.207031 267.707031 290.300781 267.800781 290.417969 267.800781 C 290.535156 267.800781 290.628906 267.707031 290.628906 267.589844 Z M 290.628906 267.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.300781 264.773438 C 293.300781 264.65625 293.207031 264.5625 293.089844 264.5625 C 292.972656 264.5625 292.878906 264.65625 292.878906 264.773438 C 292.878906 264.890625 292.972656 264.984375 293.089844 264.984375 C 293.207031 264.984375 293.300781 264.890625 293.300781 264.773438 Z M 293.300781 264.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.261719 263.121094 C 296.261719 263.003906 296.167969 262.910156 296.050781 262.910156 C 295.933594 262.910156 295.839844 263.003906 295.839844 263.121094 C 295.839844 263.238281 295.933594 263.332031 296.050781 263.332031 C 296.167969 263.332031 296.261719 263.238281 296.261719 263.121094 Z M 296.261719 263.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.441406 260.820312 C 295.441406 260.703125 295.347656 260.609375 295.230469 260.609375 C 295.113281 260.609375 295.019531 260.703125 295.019531 260.820312 C 295.019531 260.9375 295.113281 261.03125 295.230469 261.03125 C 295.347656 261.03125 295.441406 260.9375 295.441406 260.820312 Z M 295.441406 260.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.511719 260.375 C 296.511719 260.257812 296.417969 260.164062 296.300781 260.164062 C 296.183594 260.164062 296.089844 260.257812 296.089844 260.375 C 296.089844 260.492188 296.183594 260.585938 296.300781 260.585938 C 296.417969 260.585938 296.511719 260.492188 296.511719 260.375 Z M 296.511719 260.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.207031 262.03125 C 295.207031 261.914062 295.113281 261.820312 294.996094 261.820312 C 294.878906 261.820312 294.785156 261.914062 294.785156 262.03125 C 294.785156 262.148438 294.878906 262.242188 294.996094 262.242188 C 295.113281 262.242188 295.207031 262.148438 295.207031 262.03125 Z M 295.207031 262.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.449219 261.847656 C 294.449219 261.730469 294.355469 261.636719 294.238281 261.636719 C 294.121094 261.636719 294.027344 261.730469 294.027344 261.847656 C 294.027344 261.964844 294.121094 262.058594 294.238281 262.058594 C 294.355469 262.058594 294.449219 261.964844 294.449219 261.847656 Z M 294.449219 261.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.160156 262.410156 C 291.160156 262.292969 291.066406 262.199219 290.949219 262.199219 C 290.832031 262.199219 290.738281 262.292969 290.738281 262.410156 C 290.738281 262.527344 290.832031 262.621094 290.949219 262.621094 C 291.066406 262.621094 291.160156 262.527344 291.160156 262.410156 Z M 291.160156 262.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.179688 261.804688 C 287.179688 261.6875 287.085938 261.59375 286.96875 261.59375 C 286.851562 261.59375 286.757812 261.6875 286.757812 261.804688 C 286.757812 261.921875 286.851562 262.015625 286.96875 262.015625 C 287.085938 262.015625 287.179688 261.921875 287.179688 261.804688 Z M 287.179688 261.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.847656 261.273438 C 287.847656 261.15625 287.753906 261.0625 287.636719 261.0625 C 287.519531 261.0625 287.425781 261.15625 287.425781 261.273438 C 287.425781 261.390625 287.519531 261.484375 287.636719 261.484375 C 287.753906 261.484375 287.847656 261.390625 287.847656 261.273438 Z M 287.847656 261.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.621094 255.894531 C 287.621094 255.777344 287.527344 255.683594 287.410156 255.683594 C 287.292969 255.683594 287.199219 255.777344 287.199219 255.894531 C 287.199219 256.011719 287.292969 256.105469 287.410156 256.105469 C 287.527344 256.105469 287.621094 256.011719 287.621094 255.894531 Z M 287.621094 255.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.875 253.5 C 284.875 253.382812 284.78125 253.289062 284.664062 253.289062 C 284.546875 253.289062 284.453125 253.382812 284.453125 253.5 C 284.453125 253.617188 284.546875 253.710938 284.664062 253.710938 C 284.78125 253.710938 284.875 253.617188 284.875 253.5 Z M 284.875 253.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.996094 252.277344 C 285.996094 252.160156 285.902344 252.066406 285.785156 252.066406 C 285.667969 252.066406 285.574219 252.160156 285.574219 252.277344 C 285.574219 252.394531 285.667969 252.488281 285.785156 252.488281 C 285.902344 252.488281 285.996094 252.394531 285.996094 252.277344 Z M 285.996094 252.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.804688 253.226562 C 283.804688 253.109375 283.710938 253.015625 283.59375 253.015625 C 283.476562 253.015625 283.382812 253.109375 283.382812 253.226562 C 283.382812 253.34375 283.476562 253.4375 283.59375 253.4375 C 283.710938 253.4375 283.804688 253.34375 283.804688 253.226562 Z M 283.804688 253.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.8125 254.523438 C 284.8125 254.40625 284.71875 254.3125 284.601562 254.3125 C 284.484375 254.3125 284.390625 254.40625 284.390625 254.523438 C 284.390625 254.640625 284.484375 254.734375 284.601562 254.734375 C 284.71875 254.734375 284.8125 254.640625 284.8125 254.523438 Z M 284.8125 254.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.285156 253.574219 C 283.285156 253.457031 283.191406 253.363281 283.074219 253.363281 C 282.957031 253.363281 282.863281 253.457031 282.863281 253.574219 C 282.863281 253.691406 282.957031 253.785156 283.074219 253.785156 C 283.191406 253.785156 283.285156 253.691406 283.285156 253.574219 Z M 283.285156 253.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.542969 256.851562 C 280.542969 256.734375 280.449219 256.640625 280.332031 256.640625 C 280.214844 256.640625 280.121094 256.734375 280.121094 256.851562 C 280.121094 256.96875 280.214844 257.0625 280.332031 257.0625 C 280.449219 257.0625 280.542969 256.96875 280.542969 256.851562 Z M 280.542969 256.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.316406 257.222656 C 282.316406 257.105469 282.222656 257.011719 282.105469 257.011719 C 281.988281 257.011719 281.894531 257.105469 281.894531 257.222656 C 281.894531 257.339844 281.988281 257.433594 282.105469 257.433594 C 282.222656 257.433594 282.316406 257.339844 282.316406 257.222656 Z M 282.316406 257.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.917969 260.101562 C 284.917969 259.984375 284.824219 259.890625 284.707031 259.890625 C 284.589844 259.890625 284.496094 259.984375 284.496094 260.101562 C 284.496094 260.21875 284.589844 260.3125 284.707031 260.3125 C 284.824219 260.3125 284.917969 260.21875 284.917969 260.101562 Z M 284.917969 260.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.578125 259.367188 C 283.578125 259.25 283.484375 259.15625 283.367188 259.15625 C 283.25 259.15625 283.15625 259.25 283.15625 259.367188 C 283.15625 259.484375 283.25 259.578125 283.367188 259.578125 C 283.484375 259.578125 283.578125 259.484375 283.578125 259.367188 Z M 283.578125 259.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.152344 257.125 C 283.152344 257.007812 283.058594 256.914062 282.941406 256.914062 C 282.824219 256.914062 282.730469 257.007812 282.730469 257.125 C 282.730469 257.242188 282.824219 257.335938 282.941406 257.335938 C 283.058594 257.335938 283.152344 257.242188 283.152344 257.125 Z M 283.152344 257.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.621094 256.980469 C 280.621094 256.863281 280.527344 256.769531 280.410156 256.769531 C 280.292969 256.769531 280.199219 256.863281 280.199219 256.980469 C 280.199219 257.097656 280.292969 257.191406 280.410156 257.191406 C 280.527344 257.191406 280.621094 257.097656 280.621094 256.980469 Z M 280.621094 256.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.886719 255.519531 C 281.886719 255.402344 281.792969 255.308594 281.675781 255.308594 C 281.558594 255.308594 281.464844 255.402344 281.464844 255.519531 C 281.464844 255.636719 281.558594 255.730469 281.675781 255.730469 C 281.792969 255.730469 281.886719 255.636719 281.886719 255.519531 Z M 281.886719 255.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.183594 256.996094 C 281.183594 256.878906 281.089844 256.785156 280.972656 256.785156 C 280.855469 256.785156 280.761719 256.878906 280.761719 256.996094 C 280.761719 257.113281 280.855469 257.207031 280.972656 257.207031 C 281.089844 257.207031 281.183594 257.113281 281.183594 256.996094 Z M 281.183594 256.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.507812 253.753906 C 279.507812 253.636719 279.414062 253.542969 279.296875 253.542969 C 279.179688 253.542969 279.085938 253.636719 279.085938 253.753906 C 279.085938 253.871094 279.179688 253.964844 279.296875 253.964844 C 279.414062 253.964844 279.507812 253.871094 279.507812 253.753906 Z M 279.507812 253.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.664062 254.679688 C 280.664062 254.5625 280.570312 254.46875 280.453125 254.46875 C 280.335938 254.46875 280.242188 254.5625 280.242188 254.679688 C 280.242188 254.796875 280.335938 254.890625 280.453125 254.890625 C 280.570312 254.890625 280.664062 254.796875 280.664062 254.679688 Z M 280.664062 254.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.839844 254.1875 C 279.839844 254.070312 279.746094 253.976562 279.628906 253.976562 C 279.511719 253.976562 279.417969 254.070312 279.417969 254.1875 C 279.417969 254.304688 279.511719 254.398438 279.628906 254.398438 C 279.746094 254.398438 279.839844 254.304688 279.839844 254.1875 Z M 279.839844 254.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.980469 254.820312 C 279.980469 254.703125 279.886719 254.609375 279.769531 254.609375 C 279.652344 254.609375 279.558594 254.703125 279.558594 254.820312 C 279.558594 254.9375 279.652344 255.03125 279.769531 255.03125 C 279.886719 255.03125 279.980469 254.9375 279.980469 254.820312 Z M 279.980469 254.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.3125 253.847656 C 279.3125 253.730469 279.21875 253.636719 279.101562 253.636719 C 278.984375 253.636719 278.890625 253.730469 278.890625 253.847656 C 278.890625 253.964844 278.984375 254.058594 279.101562 254.058594 C 279.21875 254.058594 279.3125 253.964844 279.3125 253.847656 Z M 279.3125 253.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.59375 256.859375 C 278.59375 256.742188 278.5 256.648438 278.382812 256.648438 C 278.265625 256.648438 278.171875 256.742188 278.171875 256.859375 C 278.171875 256.976562 278.265625 257.070312 278.382812 257.070312 C 278.5 257.070312 278.59375 256.976562 278.59375 256.859375 Z M 278.59375 256.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.117188 257.925781 C 281.117188 257.808594 281.023438 257.714844 280.90625 257.714844 C 280.789062 257.714844 280.695312 257.808594 280.695312 257.925781 C 280.695312 258.042969 280.789062 258.136719 280.90625 258.136719 C 281.023438 258.136719 281.117188 258.042969 281.117188 257.925781 Z M 281.117188 257.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.195312 259.058594 C 285.195312 258.941406 285.101562 258.847656 284.984375 258.847656 C 284.867188 258.847656 284.773438 258.941406 284.773438 259.058594 C 284.773438 259.175781 284.867188 259.269531 284.984375 259.269531 C 285.101562 259.269531 285.195312 259.175781 285.195312 259.058594 Z M 285.195312 259.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.679688 258.359375 C 286.679688 258.242188 286.585938 258.148438 286.46875 258.148438 C 286.351562 258.148438 286.257812 258.242188 286.257812 258.359375 C 286.257812 258.476562 286.351562 258.570312 286.46875 258.570312 C 286.585938 258.570312 286.679688 258.476562 286.679688 258.359375 Z M 286.679688 258.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.640625 260.078125 C 286.640625 259.960938 286.546875 259.867188 286.429688 259.867188 C 286.3125 259.867188 286.21875 259.960938 286.21875 260.078125 C 286.21875 260.195312 286.3125 260.289062 286.429688 260.289062 C 286.546875 260.289062 286.640625 260.195312 286.640625 260.078125 Z M 286.640625 260.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.53125 262.929688 C 285.53125 262.8125 285.4375 262.71875 285.320312 262.71875 C 285.203125 262.71875 285.109375 262.8125 285.109375 262.929688 C 285.109375 263.046875 285.203125 263.140625 285.320312 263.140625 C 285.4375 263.140625 285.53125 263.046875 285.53125 262.929688 Z M 285.53125 262.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.402344 260.117188 C 284.402344 260 284.308594 259.90625 284.191406 259.90625 C 284.074219 259.90625 283.980469 260 283.980469 260.117188 C 283.980469 260.234375 284.074219 260.328125 284.191406 260.328125 C 284.308594 260.328125 284.402344 260.234375 284.402344 260.117188 Z M 284.402344 260.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.203125 261.238281 C 288.203125 261.121094 288.109375 261.027344 287.992188 261.027344 C 287.875 261.027344 287.78125 261.121094 287.78125 261.238281 C 287.78125 261.355469 287.875 261.449219 287.992188 261.449219 C 288.109375 261.449219 288.203125 261.355469 288.203125 261.238281 Z M 288.203125 261.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.296875 259.949219 C 289.296875 259.832031 289.203125 259.738281 289.085938 259.738281 C 288.96875 259.738281 288.875 259.832031 288.875 259.949219 C 288.875 260.066406 288.96875 260.160156 289.085938 260.160156 C 289.203125 260.160156 289.296875 260.066406 289.296875 259.949219 Z M 289.296875 259.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.019531 260.921875 C 291.019531 260.804688 290.925781 260.710938 290.808594 260.710938 C 290.691406 260.710938 290.597656 260.804688 290.597656 260.921875 C 290.597656 261.039062 290.691406 261.132812 290.808594 261.132812 C 290.925781 261.132812 291.019531 261.039062 291.019531 260.921875 Z M 291.019531 260.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.207031 262.757812 C 290.207031 262.640625 290.113281 262.546875 289.996094 262.546875 C 289.878906 262.546875 289.785156 262.640625 289.785156 262.757812 C 289.785156 262.875 289.878906 262.96875 289.996094 262.96875 C 290.113281 262.96875 290.207031 262.875 290.207031 262.757812 Z M 290.207031 262.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.488281 263.695312 C 288.488281 263.578125 288.394531 263.484375 288.277344 263.484375 C 288.160156 263.484375 288.066406 263.578125 288.066406 263.695312 C 288.066406 263.8125 288.160156 263.90625 288.277344 263.90625 C 288.394531 263.90625 288.488281 263.8125 288.488281 263.695312 Z M 288.488281 263.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.242188 260.421875 C 289.242188 260.304688 289.148438 260.210938 289.03125 260.210938 C 288.914062 260.210938 288.820312 260.304688 288.820312 260.421875 C 288.820312 260.539062 288.914062 260.632812 289.03125 260.632812 C 289.148438 260.632812 289.242188 260.539062 289.242188 260.421875 Z M 289.242188 260.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.269531 261.574219 C 288.269531 261.457031 288.175781 261.363281 288.058594 261.363281 C 287.941406 261.363281 287.847656 261.457031 287.847656 261.574219 C 287.847656 261.691406 287.941406 261.785156 288.058594 261.785156 C 288.175781 261.785156 288.269531 261.691406 288.269531 261.574219 Z M 288.269531 261.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.148438 264.222656 C 290.148438 264.105469 290.054688 264.011719 289.9375 264.011719 C 289.820312 264.011719 289.726562 264.105469 289.726562 264.222656 C 289.726562 264.339844 289.820312 264.433594 289.9375 264.433594 C 290.054688 264.433594 290.148438 264.339844 290.148438 264.222656 Z M 290.148438 264.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.226562 262.46875 C 289.226562 262.351562 289.132812 262.257812 289.015625 262.257812 C 288.898438 262.257812 288.804688 262.351562 288.804688 262.46875 C 288.804688 262.585938 288.898438 262.679688 289.015625 262.679688 C 289.132812 262.679688 289.226562 262.585938 289.226562 262.46875 Z M 289.226562 262.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.875 261.957031 C 291.875 261.839844 291.78125 261.746094 291.664062 261.746094 C 291.546875 261.746094 291.453125 261.839844 291.453125 261.957031 C 291.453125 262.074219 291.546875 262.167969 291.664062 262.167969 C 291.78125 262.167969 291.875 262.074219 291.875 261.957031 Z M 291.875 261.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.859375 262.371094 C 290.859375 262.253906 290.765625 262.160156 290.648438 262.160156 C 290.53125 262.160156 290.4375 262.253906 290.4375 262.371094 C 290.4375 262.488281 290.53125 262.582031 290.648438 262.582031 C 290.765625 262.582031 290.859375 262.488281 290.859375 262.371094 Z M 290.859375 262.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.003906 261.421875 C 286.003906 261.304688 285.910156 261.210938 285.792969 261.210938 C 285.675781 261.210938 285.582031 261.304688 285.582031 261.421875 C 285.582031 261.539062 285.675781 261.632812 285.792969 261.632812 C 285.910156 261.632812 286.003906 261.539062 286.003906 261.421875 Z M 286.003906 261.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.804688 262.238281 C 283.804688 262.121094 283.710938 262.027344 283.59375 262.027344 C 283.476562 262.027344 283.382812 262.121094 283.382812 262.238281 C 283.382812 262.355469 283.476562 262.449219 283.59375 262.449219 C 283.710938 262.449219 283.804688 262.355469 283.804688 262.238281 Z M 283.804688 262.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.328125 266.40625 C 286.328125 266.289062 286.234375 266.195312 286.117188 266.195312 C 286 266.195312 285.90625 266.289062 285.90625 266.40625 C 285.90625 266.523438 286 266.617188 286.117188 266.617188 C 286.234375 266.617188 286.328125 266.523438 286.328125 266.40625 Z M 286.328125 266.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.871094 268.257812 C 285.871094 268.140625 285.777344 268.046875 285.660156 268.046875 C 285.542969 268.046875 285.449219 268.140625 285.449219 268.257812 C 285.449219 268.375 285.542969 268.46875 285.660156 268.46875 C 285.777344 268.46875 285.871094 268.375 285.871094 268.257812 Z M 285.871094 268.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.933594 269.554688 C 285.933594 269.4375 285.839844 269.34375 285.722656 269.34375 C 285.605469 269.34375 285.511719 269.4375 285.511719 269.554688 C 285.511719 269.671875 285.605469 269.765625 285.722656 269.765625 C 285.839844 269.765625 285.933594 269.671875 285.933594 269.554688 Z M 285.933594 269.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.292969 269.929688 C 285.292969 269.8125 285.199219 269.71875 285.082031 269.71875 C 284.964844 269.71875 284.871094 269.8125 284.871094 269.929688 C 284.871094 270.046875 284.964844 270.140625 285.082031 270.140625 C 285.199219 270.140625 285.292969 270.046875 285.292969 269.929688 Z M 285.292969 269.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.214844 268.949219 C 288.214844 268.832031 288.121094 268.738281 288.003906 268.738281 C 287.886719 268.738281 287.792969 268.832031 287.792969 268.949219 C 287.792969 269.066406 287.886719 269.160156 288.003906 269.160156 C 288.121094 269.160156 288.214844 269.066406 288.214844 268.949219 Z M 288.214844 268.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.347656 265.945312 C 291.347656 265.828125 291.253906 265.734375 291.136719 265.734375 C 291.019531 265.734375 290.925781 265.828125 290.925781 265.945312 C 290.925781 266.0625 291.019531 266.15625 291.136719 266.15625 C 291.253906 266.15625 291.347656 266.0625 291.347656 265.945312 Z M 291.347656 265.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.75 263.234375 C 291.75 263.117188 291.65625 263.023438 291.539062 263.023438 C 291.421875 263.023438 291.328125 263.117188 291.328125 263.234375 C 291.328125 263.351562 291.421875 263.445312 291.539062 263.445312 C 291.65625 263.445312 291.75 263.351562 291.75 263.234375 Z M 291.75 263.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.730469 268.625 C 295.730469 268.507812 295.636719 268.414062 295.519531 268.414062 C 295.402344 268.414062 295.308594 268.507812 295.308594 268.625 C 295.308594 268.742188 295.402344 268.835938 295.519531 268.835938 C 295.636719 268.835938 295.730469 268.742188 295.730469 268.625 Z M 295.730469 268.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.636719 269.015625 C 296.636719 268.898438 296.542969 268.804688 296.425781 268.804688 C 296.308594 268.804688 296.214844 268.898438 296.214844 269.015625 C 296.214844 269.132812 296.308594 269.226562 296.425781 269.226562 C 296.542969 269.226562 296.636719 269.132812 296.636719 269.015625 Z M 296.636719 269.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.503906 269.199219 C 297.503906 269.082031 297.410156 268.988281 297.292969 268.988281 C 297.175781 268.988281 297.082031 269.082031 297.082031 269.199219 C 297.082031 269.316406 297.175781 269.410156 297.292969 269.410156 C 297.410156 269.410156 297.503906 269.316406 297.503906 269.199219 Z M 297.503906 269.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.527344 268.757812 C 297.527344 268.640625 297.433594 268.546875 297.316406 268.546875 C 297.199219 268.546875 297.105469 268.640625 297.105469 268.757812 C 297.105469 268.875 297.199219 268.96875 297.316406 268.96875 C 297.433594 268.96875 297.527344 268.875 297.527344 268.757812 Z M 297.527344 268.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.570312 263.847656 C 294.570312 263.730469 294.476562 263.636719 294.359375 263.636719 C 294.242188 263.636719 294.148438 263.730469 294.148438 263.847656 C 294.148438 263.964844 294.242188 264.058594 294.359375 264.058594 C 294.476562 264.058594 294.570312 263.964844 294.570312 263.847656 Z M 294.570312 263.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.179688 265.386719 C 299.179688 265.269531 299.085938 265.175781 298.96875 265.175781 C 298.851562 265.175781 298.757812 265.269531 298.757812 265.386719 C 298.757812 265.503906 298.851562 265.597656 298.96875 265.597656 C 299.085938 265.597656 299.179688 265.503906 299.179688 265.386719 Z M 299.179688 265.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.050781 263.777344 C 297.050781 263.660156 296.957031 263.566406 296.839844 263.566406 C 296.722656 263.566406 296.628906 263.660156 296.628906 263.777344 C 296.628906 263.894531 296.722656 263.988281 296.839844 263.988281 C 296.957031 263.988281 297.050781 263.894531 297.050781 263.777344 Z M 297.050781 263.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.78125 264.480469 C 298.78125 264.363281 298.6875 264.269531 298.570312 264.269531 C 298.453125 264.269531 298.359375 264.363281 298.359375 264.480469 C 298.359375 264.597656 298.453125 264.691406 298.570312 264.691406 C 298.6875 264.691406 298.78125 264.597656 298.78125 264.480469 Z M 298.78125 264.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.199219 262.484375 C 299.199219 262.367188 299.105469 262.273438 298.988281 262.273438 C 298.871094 262.273438 298.777344 262.367188 298.777344 262.484375 C 298.777344 262.601562 298.871094 262.695312 298.988281 262.695312 C 299.105469 262.695312 299.199219 262.601562 299.199219 262.484375 Z M 299.199219 262.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.585938 266.734375 C 299.585938 266.617188 299.492188 266.523438 299.375 266.523438 C 299.257812 266.523438 299.164062 266.617188 299.164062 266.734375 C 299.164062 266.851562 299.257812 266.945312 299.375 266.945312 C 299.492188 266.945312 299.585938 266.851562 299.585938 266.734375 Z M 299.585938 266.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.585938 266.496094 C 298.585938 266.378906 298.492188 266.285156 298.375 266.285156 C 298.257812 266.285156 298.164062 266.378906 298.164062 266.496094 C 298.164062 266.613281 298.257812 266.707031 298.375 266.707031 C 298.492188 266.707031 298.585938 266.613281 298.585938 266.496094 Z M 298.585938 266.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.71875 265.660156 C 296.71875 265.542969 296.625 265.449219 296.507812 265.449219 C 296.390625 265.449219 296.296875 265.542969 296.296875 265.660156 C 296.296875 265.777344 296.390625 265.871094 296.507812 265.871094 C 296.625 265.871094 296.71875 265.777344 296.71875 265.660156 Z M 296.71875 265.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.554688 268.292969 C 299.554688 268.175781 299.460938 268.082031 299.34375 268.082031 C 299.226562 268.082031 299.132812 268.175781 299.132812 268.292969 C 299.132812 268.410156 299.226562 268.503906 299.34375 268.503906 C 299.460938 268.503906 299.554688 268.410156 299.554688 268.292969 Z M 299.554688 268.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.941406 268.472656 C 300.941406 268.355469 300.847656 268.261719 300.730469 268.261719 C 300.613281 268.261719 300.519531 268.355469 300.519531 268.472656 C 300.519531 268.589844 300.613281 268.683594 300.730469 268.683594 C 300.847656 268.683594 300.941406 268.589844 300.941406 268.472656 Z M 300.941406 268.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.238281 267.953125 C 302.238281 267.835938 302.144531 267.742188 302.027344 267.742188 C 301.910156 267.742188 301.816406 267.835938 301.816406 267.953125 C 301.816406 268.070312 301.910156 268.164062 302.027344 268.164062 C 302.144531 268.164062 302.238281 268.070312 302.238281 267.953125 Z M 302.238281 267.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.640625 266.160156 C 306.640625 266.042969 306.546875 265.949219 306.429688 265.949219 C 306.3125 265.949219 306.21875 266.042969 306.21875 266.160156 C 306.21875 266.277344 306.3125 266.371094 306.429688 266.371094 C 306.546875 266.371094 306.640625 266.277344 306.640625 266.160156 Z M 306.640625 266.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.714844 267.535156 C 306.714844 267.417969 306.621094 267.324219 306.503906 267.324219 C 306.386719 267.324219 306.292969 267.417969 306.292969 267.535156 C 306.292969 267.652344 306.386719 267.746094 306.503906 267.746094 C 306.621094 267.746094 306.714844 267.652344 306.714844 267.535156 Z M 306.714844 267.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.277344 265.613281 C 307.277344 265.496094 307.183594 265.402344 307.066406 265.402344 C 306.949219 265.402344 306.855469 265.496094 306.855469 265.613281 C 306.855469 265.730469 306.949219 265.824219 307.066406 265.824219 C 307.183594 265.824219 307.277344 265.730469 307.277344 265.613281 Z M 307.277344 265.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.722656 264.703125 C 305.722656 264.585938 305.628906 264.492188 305.511719 264.492188 C 305.394531 264.492188 305.300781 264.585938 305.300781 264.703125 C 305.300781 264.820312 305.394531 264.914062 305.511719 264.914062 C 305.628906 264.914062 305.722656 264.820312 305.722656 264.703125 Z M 305.722656 264.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.175781 265.085938 C 306.175781 264.96875 306.082031 264.875 305.964844 264.875 C 305.847656 264.875 305.753906 264.96875 305.753906 265.085938 C 305.753906 265.203125 305.847656 265.296875 305.964844 265.296875 C 306.082031 265.296875 306.175781 265.203125 306.175781 265.085938 Z M 306.175781 265.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.632812 264.589844 C 303.632812 264.472656 303.539062 264.378906 303.421875 264.378906 C 303.304688 264.378906 303.210938 264.472656 303.210938 264.589844 C 303.210938 264.707031 303.304688 264.800781 303.421875 264.800781 C 303.539062 264.800781 303.632812 264.707031 303.632812 264.589844 Z M 303.632812 264.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.492188 262.25 C 304.492188 262.132812 304.398438 262.039062 304.28125 262.039062 C 304.164062 262.039062 304.070312 262.132812 304.070312 262.25 C 304.070312 262.367188 304.164062 262.460938 304.28125 262.460938 C 304.398438 262.460938 304.492188 262.367188 304.492188 262.25 Z M 304.492188 262.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.988281 265.714844 C 306.988281 265.597656 306.894531 265.503906 306.777344 265.503906 C 306.660156 265.503906 306.566406 265.597656 306.566406 265.714844 C 306.566406 265.832031 306.660156 265.925781 306.777344 265.925781 C 306.894531 265.925781 306.988281 265.832031 306.988281 265.714844 Z M 306.988281 265.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.085938 266.277344 C 305.085938 266.160156 304.992188 266.066406 304.875 266.066406 C 304.757812 266.066406 304.664062 266.160156 304.664062 266.277344 C 304.664062 266.394531 304.757812 266.488281 304.875 266.488281 C 304.992188 266.488281 305.085938 266.394531 305.085938 266.277344 Z M 305.085938 266.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.191406 266.921875 C 306.191406 266.804688 306.097656 266.710938 305.980469 266.710938 C 305.863281 266.710938 305.769531 266.804688 305.769531 266.921875 C 305.769531 267.039062 305.863281 267.132812 305.980469 267.132812 C 306.097656 267.132812 306.191406 267.039062 306.191406 266.921875 Z M 306.191406 266.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.070312 263.988281 C 307.070312 263.871094 306.976562 263.777344 306.859375 263.777344 C 306.742188 263.777344 306.648438 263.871094 306.648438 263.988281 C 306.648438 264.105469 306.742188 264.199219 306.859375 264.199219 C 306.976562 264.199219 307.070312 264.105469 307.070312 263.988281 Z M 307.070312 263.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.8125 260.679688 C 308.8125 260.5625 308.71875 260.46875 308.601562 260.46875 C 308.484375 260.46875 308.390625 260.5625 308.390625 260.679688 C 308.390625 260.796875 308.484375 260.890625 308.601562 260.890625 C 308.71875 260.890625 308.8125 260.796875 308.8125 260.679688 Z M 308.8125 260.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.671875 259.304688 C 311.671875 259.1875 311.578125 259.09375 311.460938 259.09375 C 311.34375 259.09375 311.25 259.1875 311.25 259.304688 C 311.25 259.421875 311.34375 259.515625 311.460938 259.515625 C 311.578125 259.515625 311.671875 259.421875 311.671875 259.304688 Z M 311.671875 259.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.679688 258.878906 C 311.679688 258.761719 311.585938 258.667969 311.46875 258.667969 C 311.351562 258.667969 311.257812 258.761719 311.257812 258.878906 C 311.257812 258.996094 311.351562 259.089844 311.46875 259.089844 C 311.585938 259.089844 311.679688 258.996094 311.679688 258.878906 Z M 311.679688 258.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.652344 261.058594 C 311.652344 260.941406 311.558594 260.847656 311.441406 260.847656 C 311.324219 260.847656 311.230469 260.941406 311.230469 261.058594 C 311.230469 261.175781 311.324219 261.269531 311.441406 261.269531 C 311.558594 261.269531 311.652344 261.175781 311.652344 261.058594 Z M 311.652344 261.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.597656 262.964844 C 312.597656 262.847656 312.503906 262.753906 312.386719 262.753906 C 312.269531 262.753906 312.175781 262.847656 312.175781 262.964844 C 312.175781 263.082031 312.269531 263.175781 312.386719 263.175781 C 312.503906 263.175781 312.597656 263.082031 312.597656 262.964844 Z M 312.597656 262.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.636719 264.199219 C 309.636719 264.082031 309.542969 263.988281 309.425781 263.988281 C 309.308594 263.988281 309.214844 264.082031 309.214844 264.199219 C 309.214844 264.316406 309.308594 264.410156 309.425781 264.410156 C 309.542969 264.410156 309.636719 264.316406 309.636719 264.199219 Z M 309.636719 264.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.398438 267.558594 C 306.398438 267.441406 306.304688 267.347656 306.1875 267.347656 C 306.070312 267.347656 305.976562 267.441406 305.976562 267.558594 C 305.976562 267.675781 306.070312 267.769531 306.1875 267.769531 C 306.304688 267.769531 306.398438 267.675781 306.398438 267.558594 Z M 306.398438 267.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.917969 267.089844 C 305.917969 266.972656 305.824219 266.878906 305.707031 266.878906 C 305.589844 266.878906 305.496094 266.972656 305.496094 267.089844 C 305.496094 267.207031 305.589844 267.300781 305.707031 267.300781 C 305.824219 267.300781 305.917969 267.207031 305.917969 267.089844 Z M 305.917969 267.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.625 264.007812 C 310.625 263.890625 310.53125 263.796875 310.414062 263.796875 C 310.296875 263.796875 310.203125 263.890625 310.203125 264.007812 C 310.203125 264.125 310.296875 264.21875 310.414062 264.21875 C 310.53125 264.21875 310.625 264.125 310.625 264.007812 Z M 310.625 264.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.007812 263.636719 C 313.007812 263.519531 312.914062 263.425781 312.796875 263.425781 C 312.679688 263.425781 312.585938 263.519531 312.585938 263.636719 C 312.585938 263.753906 312.679688 263.847656 312.796875 263.847656 C 312.914062 263.847656 313.007812 263.753906 313.007812 263.636719 Z M 313.007812 263.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.480469 261.90625 C 317.480469 261.789062 317.386719 261.695312 317.269531 261.695312 C 317.152344 261.695312 317.058594 261.789062 317.058594 261.90625 C 317.058594 262.023438 317.152344 262.117188 317.269531 262.117188 C 317.386719 262.117188 317.480469 262.023438 317.480469 261.90625 Z M 317.480469 261.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.832031 258.550781 C 316.832031 258.433594 316.738281 258.339844 316.621094 258.339844 C 316.503906 258.339844 316.410156 258.433594 316.410156 258.550781 C 316.410156 258.667969 316.503906 258.761719 316.621094 258.761719 C 316.738281 258.761719 316.832031 258.667969 316.832031 258.550781 Z M 316.832031 258.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.925781 259.355469 C 317.925781 259.238281 317.832031 259.144531 317.714844 259.144531 C 317.597656 259.144531 317.503906 259.238281 317.503906 259.355469 C 317.503906 259.472656 317.597656 259.566406 317.714844 259.566406 C 317.832031 259.566406 317.925781 259.472656 317.925781 259.355469 Z M 317.925781 259.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.191406 259.992188 C 317.191406 259.875 317.097656 259.78125 316.980469 259.78125 C 316.863281 259.78125 316.769531 259.875 316.769531 259.992188 C 316.769531 260.109375 316.863281 260.203125 316.980469 260.203125 C 317.097656 260.203125 317.191406 260.109375 317.191406 259.992188 Z M 317.191406 259.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.714844 261.144531 C 311.714844 261.027344 311.621094 260.933594 311.503906 260.933594 C 311.386719 260.933594 311.292969 261.027344 311.292969 261.144531 C 311.292969 261.261719 311.386719 261.355469 311.503906 261.355469 C 311.621094 261.355469 311.714844 261.261719 311.714844 261.144531 Z M 311.714844 261.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.363281 262.011719 C 309.363281 261.894531 309.269531 261.800781 309.152344 261.800781 C 309.035156 261.800781 308.941406 261.894531 308.941406 262.011719 C 308.941406 262.128906 309.035156 262.222656 309.152344 262.222656 C 309.269531 262.222656 309.363281 262.128906 309.363281 262.011719 Z M 309.363281 262.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.78125 260.410156 C 309.78125 260.292969 309.6875 260.199219 309.570312 260.199219 C 309.453125 260.199219 309.359375 260.292969 309.359375 260.410156 C 309.359375 260.527344 309.453125 260.621094 309.570312 260.621094 C 309.6875 260.621094 309.78125 260.527344 309.78125 260.410156 Z M 309.78125 260.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.101562 262.183594 C 304.101562 262.066406 304.007812 261.972656 303.890625 261.972656 C 303.773438 261.972656 303.679688 262.066406 303.679688 262.183594 C 303.679688 262.300781 303.773438 262.394531 303.890625 262.394531 C 304.007812 262.394531 304.101562 262.300781 304.101562 262.183594 Z M 304.101562 262.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.054688 262.265625 C 309.054688 262.148438 308.960938 262.054688 308.84375 262.054688 C 308.726562 262.054688 308.632812 262.148438 308.632812 262.265625 C 308.632812 262.382812 308.726562 262.476562 308.84375 262.476562 C 308.960938 262.476562 309.054688 262.382812 309.054688 262.265625 Z M 309.054688 262.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.214844 262.457031 C 308.214844 262.339844 308.121094 262.246094 308.003906 262.246094 C 307.886719 262.246094 307.792969 262.339844 307.792969 262.457031 C 307.792969 262.574219 307.886719 262.667969 308.003906 262.667969 C 308.121094 262.667969 308.214844 262.574219 308.214844 262.457031 Z M 308.214844 262.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.734375 260.929688 C 310.734375 260.8125 310.640625 260.71875 310.523438 260.71875 C 310.40625 260.71875 310.3125 260.8125 310.3125 260.929688 C 310.3125 261.046875 310.40625 261.140625 310.523438 261.140625 C 310.640625 261.140625 310.734375 261.046875 310.734375 260.929688 Z M 310.734375 260.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.9375 261.148438 C 308.9375 261.03125 308.84375 260.9375 308.726562 260.9375 C 308.609375 260.9375 308.515625 261.03125 308.515625 261.148438 C 308.515625 261.265625 308.609375 261.359375 308.726562 261.359375 C 308.84375 261.359375 308.9375 261.265625 308.9375 261.148438 Z M 308.9375 261.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.625 263.34375 C 309.625 263.226562 309.53125 263.132812 309.414062 263.132812 C 309.296875 263.132812 309.203125 263.226562 309.203125 263.34375 C 309.203125 263.460938 309.296875 263.554688 309.414062 263.554688 C 309.53125 263.554688 309.625 263.460938 309.625 263.34375 Z M 309.625 263.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.859375 265.15625 C 307.859375 265.039062 307.765625 264.945312 307.648438 264.945312 C 307.53125 264.945312 307.4375 265.039062 307.4375 265.15625 C 307.4375 265.273438 307.53125 265.367188 307.648438 265.367188 C 307.765625 265.367188 307.859375 265.273438 307.859375 265.15625 Z M 307.859375 265.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.359375 265.972656 C 309.359375 265.855469 309.265625 265.761719 309.148438 265.761719 C 309.03125 265.761719 308.9375 265.855469 308.9375 265.972656 C 308.9375 266.089844 309.03125 266.183594 309.148438 266.183594 C 309.265625 266.183594 309.359375 266.089844 309.359375 265.972656 Z M 309.359375 265.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.394531 264.585938 C 312.394531 264.46875 312.300781 264.375 312.183594 264.375 C 312.066406 264.375 311.972656 264.46875 311.972656 264.585938 C 311.972656 264.703125 312.066406 264.796875 312.183594 264.796875 C 312.300781 264.796875 312.394531 264.703125 312.394531 264.585938 Z M 312.394531 264.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.988281 264.273438 C 308.988281 264.15625 308.894531 264.0625 308.777344 264.0625 C 308.660156 264.0625 308.566406 264.15625 308.566406 264.273438 C 308.566406 264.390625 308.660156 264.484375 308.777344 264.484375 C 308.894531 264.484375 308.988281 264.390625 308.988281 264.273438 Z M 308.988281 264.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.15625 263.261719 C 312.15625 263.144531 312.0625 263.050781 311.945312 263.050781 C 311.828125 263.050781 311.734375 263.144531 311.734375 263.261719 C 311.734375 263.378906 311.828125 263.472656 311.945312 263.472656 C 312.0625 263.472656 312.15625 263.378906 312.15625 263.261719 Z M 312.15625 263.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.355469 264.9375 C 310.355469 264.820312 310.261719 264.726562 310.144531 264.726562 C 310.027344 264.726562 309.933594 264.820312 309.933594 264.9375 C 309.933594 265.054688 310.027344 265.148438 310.144531 265.148438 C 310.261719 265.148438 310.355469 265.054688 310.355469 264.9375 Z M 310.355469 264.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.496094 266.414062 C 309.496094 266.296875 309.402344 266.203125 309.285156 266.203125 C 309.167969 266.203125 309.074219 266.296875 309.074219 266.414062 C 309.074219 266.53125 309.167969 266.625 309.285156 266.625 C 309.402344 266.625 309.496094 266.53125 309.496094 266.414062 Z M 309.496094 266.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.09375 265.558594 C 313.09375 265.441406 313 265.347656 312.882812 265.347656 C 312.765625 265.347656 312.671875 265.441406 312.671875 265.558594 C 312.671875 265.675781 312.765625 265.769531 312.882812 265.769531 C 313 265.769531 313.09375 265.675781 313.09375 265.558594 Z M 313.09375 265.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.632812 266.253906 C 311.632812 266.136719 311.539062 266.042969 311.421875 266.042969 C 311.304688 266.042969 311.210938 266.136719 311.210938 266.253906 C 311.210938 266.371094 311.304688 266.464844 311.421875 266.464844 C 311.539062 266.464844 311.632812 266.371094 311.632812 266.253906 Z M 311.632812 266.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.125 264.070312 C 310.125 263.953125 310.03125 263.859375 309.914062 263.859375 C 309.796875 263.859375 309.703125 263.953125 309.703125 264.070312 C 309.703125 264.1875 309.796875 264.28125 309.914062 264.28125 C 310.03125 264.28125 310.125 264.1875 310.125 264.070312 Z M 310.125 264.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.460938 260.179688 C 311.460938 260.0625 311.367188 259.96875 311.25 259.96875 C 311.132812 259.96875 311.039062 260.0625 311.039062 260.179688 C 311.039062 260.296875 311.132812 260.390625 311.25 260.390625 C 311.367188 260.390625 311.460938 260.296875 311.460938 260.179688 Z M 311.460938 260.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.898438 261.019531 C 310.898438 260.902344 310.804688 260.808594 310.6875 260.808594 C 310.570312 260.808594 310.476562 260.902344 310.476562 261.019531 C 310.476562 261.136719 310.570312 261.230469 310.6875 261.230469 C 310.804688 261.230469 310.898438 261.136719 310.898438 261.019531 Z M 310.898438 261.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.792969 259.925781 C 311.792969 259.808594 311.699219 259.714844 311.582031 259.714844 C 311.464844 259.714844 311.371094 259.808594 311.371094 259.925781 C 311.371094 260.042969 311.464844 260.136719 311.582031 260.136719 C 311.699219 260.136719 311.792969 260.042969 311.792969 259.925781 Z M 311.792969 259.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.15625 256.09375 C 310.15625 255.976562 310.0625 255.882812 309.945312 255.882812 C 309.828125 255.882812 309.734375 255.976562 309.734375 256.09375 C 309.734375 256.210938 309.828125 256.304688 309.945312 256.304688 C 310.0625 256.304688 310.15625 256.210938 310.15625 256.09375 Z M 310.15625 256.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.023438 258.59375 C 309.023438 258.476562 308.929688 258.382812 308.8125 258.382812 C 308.695312 258.382812 308.601562 258.476562 308.601562 258.59375 C 308.601562 258.710938 308.695312 258.804688 308.8125 258.804688 C 308.929688 258.804688 309.023438 258.710938 309.023438 258.59375 Z M 309.023438 258.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.179688 260.542969 C 307.179688 260.425781 307.085938 260.332031 306.96875 260.332031 C 306.851562 260.332031 306.757812 260.425781 306.757812 260.542969 C 306.757812 260.660156 306.851562 260.753906 306.96875 260.753906 C 307.085938 260.753906 307.179688 260.660156 307.179688 260.542969 Z M 307.179688 260.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.644531 260.171875 C 303.644531 260.054688 303.550781 259.960938 303.433594 259.960938 C 303.316406 259.960938 303.222656 260.054688 303.222656 260.171875 C 303.222656 260.289062 303.316406 260.382812 303.433594 260.382812 C 303.550781 260.382812 303.644531 260.289062 303.644531 260.171875 Z M 303.644531 260.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.875 261.203125 C 305.875 261.085938 305.78125 260.992188 305.664062 260.992188 C 305.546875 260.992188 305.453125 261.085938 305.453125 261.203125 C 305.453125 261.320312 305.546875 261.414062 305.664062 261.414062 C 305.78125 261.414062 305.875 261.320312 305.875 261.203125 Z M 305.875 261.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.394531 261.679688 C 302.394531 261.5625 302.300781 261.46875 302.183594 261.46875 C 302.066406 261.46875 301.972656 261.5625 301.972656 261.679688 C 301.972656 261.796875 302.066406 261.890625 302.183594 261.890625 C 302.300781 261.890625 302.394531 261.796875 302.394531 261.679688 Z M 302.394531 261.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.085938 261.9375 C 304.085938 261.820312 303.992188 261.726562 303.875 261.726562 C 303.757812 261.726562 303.664062 261.820312 303.664062 261.9375 C 303.664062 262.054688 303.757812 262.148438 303.875 262.148438 C 303.992188 262.148438 304.085938 262.054688 304.085938 261.9375 Z M 304.085938 261.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.949219 261.433594 C 302.949219 261.316406 302.855469 261.222656 302.738281 261.222656 C 302.621094 261.222656 302.527344 261.316406 302.527344 261.433594 C 302.527344 261.550781 302.621094 261.644531 302.738281 261.644531 C 302.855469 261.644531 302.949219 261.550781 302.949219 261.433594 Z M 302.949219 261.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.585938 255.613281 C 302.585938 255.496094 302.492188 255.402344 302.375 255.402344 C 302.257812 255.402344 302.164062 255.496094 302.164062 255.613281 C 302.164062 255.730469 302.257812 255.824219 302.375 255.824219 C 302.492188 255.824219 302.585938 255.730469 302.585938 255.613281 Z M 302.585938 255.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.289062 258.085938 C 301.289062 257.96875 301.195312 257.875 301.078125 257.875 C 300.960938 257.875 300.867188 257.96875 300.867188 258.085938 C 300.867188 258.203125 300.960938 258.296875 301.078125 258.296875 C 301.195312 258.296875 301.289062 258.203125 301.289062 258.085938 Z M 301.289062 258.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.289062 263.511719 C 303.289062 263.394531 303.195312 263.300781 303.078125 263.300781 C 302.960938 263.300781 302.867188 263.394531 302.867188 263.511719 C 302.867188 263.628906 302.960938 263.722656 303.078125 263.722656 C 303.195312 263.722656 303.289062 263.628906 303.289062 263.511719 Z M 303.289062 263.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.078125 261.65625 C 302.078125 261.539062 301.984375 261.445312 301.867188 261.445312 C 301.75 261.445312 301.65625 261.539062 301.65625 261.65625 C 301.65625 261.773438 301.75 261.867188 301.867188 261.867188 C 301.984375 261.867188 302.078125 261.773438 302.078125 261.65625 Z M 302.078125 261.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.136719 264.640625 C 303.136719 264.523438 303.042969 264.429688 302.925781 264.429688 C 302.808594 264.429688 302.714844 264.523438 302.714844 264.640625 C 302.714844 264.757812 302.808594 264.851562 302.925781 264.851562 C 303.042969 264.851562 303.136719 264.757812 303.136719 264.640625 Z M 303.136719 264.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.105469 266.128906 C 305.105469 266.011719 305.011719 265.917969 304.894531 265.917969 C 304.777344 265.917969 304.683594 266.011719 304.683594 266.128906 C 304.683594 266.246094 304.777344 266.339844 304.894531 266.339844 C 305.011719 266.339844 305.105469 266.246094 305.105469 266.128906 Z M 305.105469 266.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.660156 265.039062 C 302.660156 264.921875 302.566406 264.828125 302.449219 264.828125 C 302.332031 264.828125 302.238281 264.921875 302.238281 265.039062 C 302.238281 265.15625 302.332031 265.25 302.449219 265.25 C 302.566406 265.25 302.660156 265.15625 302.660156 265.039062 Z M 302.660156 265.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.207031 263.65625 C 304.207031 263.539062 304.113281 263.445312 303.996094 263.445312 C 303.878906 263.445312 303.785156 263.539062 303.785156 263.65625 C 303.785156 263.773438 303.878906 263.867188 303.996094 263.867188 C 304.113281 263.867188 304.207031 263.773438 304.207031 263.65625 Z M 304.207031 263.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.949219 268.109375 C 307.949219 267.992188 307.855469 267.898438 307.738281 267.898438 C 307.621094 267.898438 307.527344 267.992188 307.527344 268.109375 C 307.527344 268.226562 307.621094 268.320312 307.738281 268.320312 C 307.855469 268.320312 307.949219 268.226562 307.949219 268.109375 Z M 307.949219 268.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.582031 266.503906 C 309.582031 266.386719 309.488281 266.292969 309.371094 266.292969 C 309.253906 266.292969 309.160156 266.386719 309.160156 266.503906 C 309.160156 266.621094 309.253906 266.714844 309.371094 266.714844 C 309.488281 266.714844 309.582031 266.621094 309.582031 266.503906 Z M 309.582031 266.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.722656 266.515625 C 308.722656 266.398438 308.628906 266.304688 308.511719 266.304688 C 308.394531 266.304688 308.300781 266.398438 308.300781 266.515625 C 308.300781 266.632812 308.394531 266.726562 308.511719 266.726562 C 308.628906 266.726562 308.722656 266.632812 308.722656 266.515625 Z M 308.722656 266.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.84375 266.386719 C 308.84375 266.269531 308.75 266.175781 308.632812 266.175781 C 308.515625 266.175781 308.421875 266.269531 308.421875 266.386719 C 308.421875 266.503906 308.515625 266.597656 308.632812 266.597656 C 308.75 266.597656 308.84375 266.503906 308.84375 266.386719 Z M 308.84375 266.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.59375 263.640625 C 306.59375 263.523438 306.5 263.429688 306.382812 263.429688 C 306.265625 263.429688 306.171875 263.523438 306.171875 263.640625 C 306.171875 263.757812 306.265625 263.851562 306.382812 263.851562 C 306.5 263.851562 306.59375 263.757812 306.59375 263.640625 Z M 306.59375 263.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.242188 264.304688 C 305.242188 264.1875 305.148438 264.09375 305.03125 264.09375 C 304.914062 264.09375 304.820312 264.1875 304.820312 264.304688 C 304.820312 264.421875 304.914062 264.515625 305.03125 264.515625 C 305.148438 264.515625 305.242188 264.421875 305.242188 264.304688 Z M 305.242188 264.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.53125 265.992188 C 299.53125 265.875 299.4375 265.78125 299.320312 265.78125 C 299.203125 265.78125 299.109375 265.875 299.109375 265.992188 C 299.109375 266.109375 299.203125 266.203125 299.320312 266.203125 C 299.4375 266.203125 299.53125 266.109375 299.53125 265.992188 Z M 299.53125 265.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.304688 262.652344 C 301.304688 262.535156 301.210938 262.441406 301.09375 262.441406 C 300.976562 262.441406 300.882812 262.535156 300.882812 262.652344 C 300.882812 262.769531 300.976562 262.863281 301.09375 262.863281 C 301.210938 262.863281 301.304688 262.769531 301.304688 262.652344 Z M 301.304688 262.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.097656 266.136719 C 302.097656 266.019531 302.003906 265.925781 301.886719 265.925781 C 301.769531 265.925781 301.675781 266.019531 301.675781 266.136719 C 301.675781 266.253906 301.769531 266.347656 301.886719 266.347656 C 302.003906 266.347656 302.097656 266.253906 302.097656 266.136719 Z M 302.097656 266.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.464844 267.339844 C 302.464844 267.222656 302.371094 267.128906 302.253906 267.128906 C 302.136719 267.128906 302.042969 267.222656 302.042969 267.339844 C 302.042969 267.457031 302.136719 267.550781 302.253906 267.550781 C 302.371094 267.550781 302.464844 267.457031 302.464844 267.339844 Z M 302.464844 267.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.757812 266.523438 C 302.757812 266.40625 302.664062 266.3125 302.546875 266.3125 C 302.429688 266.3125 302.335938 266.40625 302.335938 266.523438 C 302.335938 266.640625 302.429688 266.734375 302.546875 266.734375 C 302.664062 266.734375 302.757812 266.640625 302.757812 266.523438 Z M 302.757812 266.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.574219 265.4375 C 302.574219 265.320312 302.480469 265.226562 302.363281 265.226562 C 302.246094 265.226562 302.152344 265.320312 302.152344 265.4375 C 302.152344 265.554688 302.246094 265.648438 302.363281 265.648438 C 302.480469 265.648438 302.574219 265.554688 302.574219 265.4375 Z M 302.574219 265.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.199219 268.253906 C 304.199219 268.136719 304.105469 268.042969 303.988281 268.042969 C 303.871094 268.042969 303.777344 268.136719 303.777344 268.253906 C 303.777344 268.371094 303.871094 268.464844 303.988281 268.464844 C 304.105469 268.464844 304.199219 268.371094 304.199219 268.253906 Z M 304.199219 268.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.804688 264.546875 C 303.804688 264.429688 303.710938 264.335938 303.59375 264.335938 C 303.476562 264.335938 303.382812 264.429688 303.382812 264.546875 C 303.382812 264.664062 303.476562 264.757812 303.59375 264.757812 C 303.710938 264.757812 303.804688 264.664062 303.804688 264.546875 Z M 303.804688 264.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.117188 264.101562 C 302.117188 263.984375 302.023438 263.890625 301.90625 263.890625 C 301.789062 263.890625 301.695312 263.984375 301.695312 264.101562 C 301.695312 264.21875 301.789062 264.3125 301.90625 264.3125 C 302.023438 264.3125 302.117188 264.21875 302.117188 264.101562 Z M 302.117188 264.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.488281 261.820312 C 306.488281 261.703125 306.394531 261.609375 306.277344 261.609375 C 306.160156 261.609375 306.066406 261.703125 306.066406 261.820312 C 306.066406 261.9375 306.160156 262.03125 306.277344 262.03125 C 306.394531 262.03125 306.488281 261.9375 306.488281 261.820312 Z M 306.488281 261.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.546875 265.246094 C 308.546875 265.128906 308.453125 265.035156 308.335938 265.035156 C 308.21875 265.035156 308.125 265.128906 308.125 265.246094 C 308.125 265.363281 308.21875 265.457031 308.335938 265.457031 C 308.453125 265.457031 308.546875 265.363281 308.546875 265.246094 Z M 308.546875 265.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.800781 266.453125 C 310.800781 266.335938 310.707031 266.242188 310.589844 266.242188 C 310.472656 266.242188 310.378906 266.335938 310.378906 266.453125 C 310.378906 266.570312 310.472656 266.664062 310.589844 266.664062 C 310.707031 266.664062 310.800781 266.570312 310.800781 266.453125 Z M 310.800781 266.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.804688 266.996094 C 308.804688 266.878906 308.710938 266.785156 308.59375 266.785156 C 308.476562 266.785156 308.382812 266.878906 308.382812 266.996094 C 308.382812 267.113281 308.476562 267.207031 308.59375 267.207031 C 308.710938 267.207031 308.804688 267.113281 308.804688 266.996094 Z M 308.804688 266.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.542969 269.585938 C 308.542969 269.46875 308.449219 269.375 308.332031 269.375 C 308.214844 269.375 308.121094 269.46875 308.121094 269.585938 C 308.121094 269.703125 308.214844 269.796875 308.332031 269.796875 C 308.449219 269.796875 308.542969 269.703125 308.542969 269.585938 Z M 308.542969 269.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.015625 269.222656 C 310.015625 269.105469 309.921875 269.011719 309.804688 269.011719 C 309.6875 269.011719 309.59375 269.105469 309.59375 269.222656 C 309.59375 269.339844 309.6875 269.433594 309.804688 269.433594 C 309.921875 269.433594 310.015625 269.339844 310.015625 269.222656 Z M 310.015625 269.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.40625 267.183594 C 309.40625 267.066406 309.3125 266.972656 309.195312 266.972656 C 309.078125 266.972656 308.984375 267.066406 308.984375 267.183594 C 308.984375 267.300781 309.078125 267.394531 309.195312 267.394531 C 309.3125 267.394531 309.40625 267.300781 309.40625 267.183594 Z M 309.40625 267.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.847656 264.191406 C 308.847656 264.074219 308.753906 263.980469 308.636719 263.980469 C 308.519531 263.980469 308.425781 264.074219 308.425781 264.191406 C 308.425781 264.308594 308.519531 264.402344 308.636719 264.402344 C 308.753906 264.402344 308.847656 264.308594 308.847656 264.191406 Z M 308.847656 264.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.285156 267.792969 C 308.285156 267.675781 308.191406 267.582031 308.074219 267.582031 C 307.957031 267.582031 307.863281 267.675781 307.863281 267.792969 C 307.863281 267.910156 307.957031 268.003906 308.074219 268.003906 C 308.191406 268.003906 308.285156 267.910156 308.285156 267.792969 Z M 308.285156 267.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.308594 268.089844 C 309.308594 267.972656 309.214844 267.878906 309.097656 267.878906 C 308.980469 267.878906 308.886719 267.972656 308.886719 268.089844 C 308.886719 268.207031 308.980469 268.300781 309.097656 268.300781 C 309.214844 268.300781 309.308594 268.207031 309.308594 268.089844 Z M 309.308594 268.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.125 268.515625 C 303.125 268.398438 303.03125 268.304688 302.914062 268.304688 C 302.796875 268.304688 302.703125 268.398438 302.703125 268.515625 C 302.703125 268.632812 302.796875 268.726562 302.914062 268.726562 C 303.03125 268.726562 303.125 268.632812 303.125 268.515625 Z M 303.125 268.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.113281 267.386719 C 304.113281 267.269531 304.019531 267.175781 303.902344 267.175781 C 303.785156 267.175781 303.691406 267.269531 303.691406 267.386719 C 303.691406 267.503906 303.785156 267.597656 303.902344 267.597656 C 304.019531 267.597656 304.113281 267.503906 304.113281 267.386719 Z M 304.113281 267.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.902344 267.457031 C 302.902344 267.339844 302.808594 267.246094 302.691406 267.246094 C 302.574219 267.246094 302.480469 267.339844 302.480469 267.457031 C 302.480469 267.574219 302.574219 267.667969 302.691406 267.667969 C 302.808594 267.667969 302.902344 267.574219 302.902344 267.457031 Z M 302.902344 267.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.257812 265.371094 C 304.257812 265.253906 304.164062 265.160156 304.046875 265.160156 C 303.929688 265.160156 303.835938 265.253906 303.835938 265.371094 C 303.835938 265.488281 303.929688 265.582031 304.046875 265.582031 C 304.164062 265.582031 304.257812 265.488281 304.257812 265.371094 Z M 304.257812 265.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.660156 267.429688 C 303.660156 267.3125 303.566406 267.21875 303.449219 267.21875 C 303.332031 267.21875 303.238281 267.3125 303.238281 267.429688 C 303.238281 267.546875 303.332031 267.640625 303.449219 267.640625 C 303.566406 267.640625 303.660156 267.546875 303.660156 267.429688 Z M 303.660156 267.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.292969 268.800781 C 302.292969 268.683594 302.199219 268.589844 302.082031 268.589844 C 301.964844 268.589844 301.871094 268.683594 301.871094 268.800781 C 301.871094 268.917969 301.964844 269.011719 302.082031 269.011719 C 302.199219 269.011719 302.292969 268.917969 302.292969 268.800781 Z M 302.292969 268.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.175781 267.355469 C 302.175781 267.238281 302.082031 267.144531 301.964844 267.144531 C 301.847656 267.144531 301.753906 267.238281 301.753906 267.355469 C 301.753906 267.472656 301.847656 267.566406 301.964844 267.566406 C 302.082031 267.566406 302.175781 267.472656 302.175781 267.355469 Z M 302.175781 267.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.28125 264.980469 C 302.28125 264.863281 302.1875 264.769531 302.070312 264.769531 C 301.953125 264.769531 301.859375 264.863281 301.859375 264.980469 C 301.859375 265.097656 301.953125 265.191406 302.070312 265.191406 C 302.1875 265.191406 302.28125 265.097656 302.28125 264.980469 Z M 302.28125 264.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.410156 260.355469 C 299.410156 260.238281 299.316406 260.144531 299.199219 260.144531 C 299.082031 260.144531 298.988281 260.238281 298.988281 260.355469 C 298.988281 260.472656 299.082031 260.566406 299.199219 260.566406 C 299.316406 260.566406 299.410156 260.472656 299.410156 260.355469 Z M 299.410156 260.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.925781 261.402344 C 297.925781 261.285156 297.832031 261.191406 297.714844 261.191406 C 297.597656 261.191406 297.503906 261.285156 297.503906 261.402344 C 297.503906 261.519531 297.597656 261.613281 297.714844 261.613281 C 297.832031 261.613281 297.925781 261.519531 297.925781 261.402344 Z M 297.925781 261.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.964844 258.71875 C 302.964844 258.601562 302.871094 258.507812 302.753906 258.507812 C 302.636719 258.507812 302.542969 258.601562 302.542969 258.71875 C 302.542969 258.835938 302.636719 258.929688 302.753906 258.929688 C 302.871094 258.929688 302.964844 258.835938 302.964844 258.71875 Z M 302.964844 258.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.019531 258.953125 C 303.019531 258.835938 302.925781 258.742188 302.808594 258.742188 C 302.691406 258.742188 302.597656 258.835938 302.597656 258.953125 C 302.597656 259.070312 302.691406 259.164062 302.808594 259.164062 C 302.925781 259.164062 303.019531 259.070312 303.019531 258.953125 Z M 303.019531 258.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.390625 259.203125 C 305.390625 259.085938 305.296875 258.992188 305.179688 258.992188 C 305.0625 258.992188 304.96875 259.085938 304.96875 259.203125 C 304.96875 259.320312 305.0625 259.414062 305.179688 259.414062 C 305.296875 259.414062 305.390625 259.320312 305.390625 259.203125 Z M 305.390625 259.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.714844 260.457031 C 305.714844 260.339844 305.621094 260.246094 305.503906 260.246094 C 305.386719 260.246094 305.292969 260.339844 305.292969 260.457031 C 305.292969 260.574219 305.386719 260.667969 305.503906 260.667969 C 305.621094 260.667969 305.714844 260.574219 305.714844 260.457031 Z M 305.714844 260.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.5 262.730469 C 302.5 262.613281 302.40625 262.519531 302.289062 262.519531 C 302.171875 262.519531 302.078125 262.613281 302.078125 262.730469 C 302.078125 262.847656 302.171875 262.941406 302.289062 262.941406 C 302.40625 262.941406 302.5 262.847656 302.5 262.730469 Z M 302.5 262.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.90625 262.597656 C 301.90625 262.480469 301.8125 262.386719 301.695312 262.386719 C 301.578125 262.386719 301.484375 262.480469 301.484375 262.597656 C 301.484375 262.714844 301.578125 262.808594 301.695312 262.808594 C 301.8125 262.808594 301.90625 262.714844 301.90625 262.597656 Z M 301.90625 262.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.625 264.519531 C 305.625 264.402344 305.53125 264.308594 305.414062 264.308594 C 305.296875 264.308594 305.203125 264.402344 305.203125 264.519531 C 305.203125 264.636719 305.296875 264.730469 305.414062 264.730469 C 305.53125 264.730469 305.625 264.636719 305.625 264.519531 Z M 305.625 264.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.886719 267.171875 C 304.886719 267.054688 304.792969 266.960938 304.675781 266.960938 C 304.558594 266.960938 304.464844 267.054688 304.464844 267.171875 C 304.464844 267.289062 304.558594 267.382812 304.675781 267.382812 C 304.792969 267.382812 304.886719 267.289062 304.886719 267.171875 Z M 304.886719 267.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.316406 270.660156 C 305.316406 270.542969 305.222656 270.449219 305.105469 270.449219 C 304.988281 270.449219 304.894531 270.542969 304.894531 270.660156 C 304.894531 270.777344 304.988281 270.871094 305.105469 270.871094 C 305.222656 270.871094 305.316406 270.777344 305.316406 270.660156 Z M 305.316406 270.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.703125 272.308594 C 303.703125 272.191406 303.609375 272.097656 303.492188 272.097656 C 303.375 272.097656 303.28125 272.191406 303.28125 272.308594 C 303.28125 272.425781 303.375 272.519531 303.492188 272.519531 C 303.609375 272.519531 303.703125 272.425781 303.703125 272.308594 Z M 303.703125 272.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.785156 274.292969 C 302.785156 274.175781 302.691406 274.082031 302.574219 274.082031 C 302.457031 274.082031 302.363281 274.175781 302.363281 274.292969 C 302.363281 274.410156 302.457031 274.503906 302.574219 274.503906 C 302.691406 274.503906 302.785156 274.410156 302.785156 274.292969 Z M 302.785156 274.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.734375 276.921875 C 304.734375 276.804688 304.640625 276.710938 304.523438 276.710938 C 304.40625 276.710938 304.3125 276.804688 304.3125 276.921875 C 304.3125 277.039062 304.40625 277.132812 304.523438 277.132812 C 304.640625 277.132812 304.734375 277.039062 304.734375 276.921875 Z M 304.734375 276.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.460938 277.40625 C 305.460938 277.289062 305.367188 277.195312 305.25 277.195312 C 305.132812 277.195312 305.039062 277.289062 305.039062 277.40625 C 305.039062 277.523438 305.132812 277.617188 305.25 277.617188 C 305.367188 277.617188 305.460938 277.523438 305.460938 277.40625 Z M 305.460938 277.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.441406 277.539062 C 307.441406 277.421875 307.347656 277.328125 307.230469 277.328125 C 307.113281 277.328125 307.019531 277.421875 307.019531 277.539062 C 307.019531 277.65625 307.113281 277.75 307.230469 277.75 C 307.347656 277.75 307.441406 277.65625 307.441406 277.539062 Z M 307.441406 277.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.820312 281.078125 C 304.820312 280.960938 304.726562 280.867188 304.609375 280.867188 C 304.492188 280.867188 304.398438 280.960938 304.398438 281.078125 C 304.398438 281.195312 304.492188 281.289062 304.609375 281.289062 C 304.726562 281.289062 304.820312 281.195312 304.820312 281.078125 Z M 304.820312 281.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.011719 281.394531 C 305.011719 281.277344 304.917969 281.183594 304.800781 281.183594 C 304.683594 281.183594 304.589844 281.277344 304.589844 281.394531 C 304.589844 281.511719 304.683594 281.605469 304.800781 281.605469 C 304.917969 281.605469 305.011719 281.511719 305.011719 281.394531 Z M 305.011719 281.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.335938 279.945312 C 303.335938 279.828125 303.242188 279.734375 303.125 279.734375 C 303.007812 279.734375 302.914062 279.828125 302.914062 279.945312 C 302.914062 280.0625 303.007812 280.15625 303.125 280.15625 C 303.242188 280.15625 303.335938 280.0625 303.335938 279.945312 Z M 303.335938 279.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.96875 281.195312 C 301.96875 281.078125 301.875 280.984375 301.757812 280.984375 C 301.640625 280.984375 301.546875 281.078125 301.546875 281.195312 C 301.546875 281.3125 301.640625 281.40625 301.757812 281.40625 C 301.875 281.40625 301.96875 281.3125 301.96875 281.195312 Z M 301.96875 281.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.390625 284.308594 C 302.390625 284.191406 302.296875 284.097656 302.179688 284.097656 C 302.0625 284.097656 301.96875 284.191406 301.96875 284.308594 C 301.96875 284.425781 302.0625 284.519531 302.179688 284.519531 C 302.296875 284.519531 302.390625 284.425781 302.390625 284.308594 Z M 302.390625 284.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.4375 281.953125 C 303.4375 281.835938 303.34375 281.742188 303.226562 281.742188 C 303.109375 281.742188 303.015625 281.835938 303.015625 281.953125 C 303.015625 282.070312 303.109375 282.164062 303.226562 282.164062 C 303.34375 282.164062 303.4375 282.070312 303.4375 281.953125 Z M 303.4375 281.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.527344 281.394531 C 302.527344 281.277344 302.433594 281.183594 302.316406 281.183594 C 302.199219 281.183594 302.105469 281.277344 302.105469 281.394531 C 302.105469 281.511719 302.199219 281.605469 302.316406 281.605469 C 302.433594 281.605469 302.527344 281.511719 302.527344 281.394531 Z M 302.527344 281.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.589844 281.292969 C 304.589844 281.175781 304.496094 281.082031 304.378906 281.082031 C 304.261719 281.082031 304.167969 281.175781 304.167969 281.292969 C 304.167969 281.410156 304.261719 281.503906 304.378906 281.503906 C 304.496094 281.503906 304.589844 281.410156 304.589844 281.292969 Z M 304.589844 281.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.820312 280.917969 C 301.820312 280.800781 301.726562 280.707031 301.609375 280.707031 C 301.492188 280.707031 301.398438 280.800781 301.398438 280.917969 C 301.398438 281.035156 301.492188 281.128906 301.609375 281.128906 C 301.726562 281.128906 301.820312 281.035156 301.820312 280.917969 Z M 301.820312 280.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.242188 288.78125 C 305.242188 288.664062 305.148438 288.570312 305.03125 288.570312 C 304.914062 288.570312 304.820312 288.664062 304.820312 288.78125 C 304.820312 288.898438 304.914062 288.992188 305.03125 288.992188 C 305.148438 288.992188 305.242188 288.898438 305.242188 288.78125 Z M 305.242188 288.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.074219 290.714844 C 308.074219 290.597656 307.980469 290.503906 307.863281 290.503906 C 307.746094 290.503906 307.652344 290.597656 307.652344 290.714844 C 307.652344 290.832031 307.746094 290.925781 307.863281 290.925781 C 307.980469 290.925781 308.074219 290.832031 308.074219 290.714844 Z M 308.074219 290.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.453125 291.199219 C 308.453125 291.082031 308.359375 290.988281 308.242188 290.988281 C 308.125 290.988281 308.03125 291.082031 308.03125 291.199219 C 308.03125 291.316406 308.125 291.410156 308.242188 291.410156 C 308.359375 291.410156 308.453125 291.316406 308.453125 291.199219 Z M 308.453125 291.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.554688 291.511719 C 312.554688 291.394531 312.460938 291.300781 312.34375 291.300781 C 312.226562 291.300781 312.132812 291.394531 312.132812 291.511719 C 312.132812 291.628906 312.226562 291.722656 312.34375 291.722656 C 312.460938 291.722656 312.554688 291.628906 312.554688 291.511719 Z M 312.554688 291.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.390625 291.097656 C 313.390625 290.980469 313.296875 290.886719 313.179688 290.886719 C 313.0625 290.886719 312.96875 290.980469 312.96875 291.097656 C 312.96875 291.214844 313.0625 291.308594 313.179688 291.308594 C 313.296875 291.308594 313.390625 291.214844 313.390625 291.097656 Z M 313.390625 291.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.046875 292.683594 C 315.046875 292.566406 314.953125 292.472656 314.835938 292.472656 C 314.71875 292.472656 314.625 292.566406 314.625 292.683594 C 314.625 292.800781 314.71875 292.894531 314.835938 292.894531 C 314.953125 292.894531 315.046875 292.800781 315.046875 292.683594 Z M 315.046875 292.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.238281 294.855469 C 312.238281 294.738281 312.144531 294.644531 312.027344 294.644531 C 311.910156 294.644531 311.816406 294.738281 311.816406 294.855469 C 311.816406 294.972656 311.910156 295.066406 312.027344 295.066406 C 312.144531 295.066406 312.238281 294.972656 312.238281 294.855469 Z M 312.238281 294.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.789062 294.308594 C 313.789062 294.191406 313.695312 294.097656 313.578125 294.097656 C 313.460938 294.097656 313.367188 294.191406 313.367188 294.308594 C 313.367188 294.425781 313.460938 294.519531 313.578125 294.519531 C 313.695312 294.519531 313.789062 294.425781 313.789062 294.308594 Z M 313.789062 294.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.914062 295.144531 C 314.914062 295.027344 314.820312 294.933594 314.703125 294.933594 C 314.585938 294.933594 314.492188 295.027344 314.492188 295.144531 C 314.492188 295.261719 314.585938 295.355469 314.703125 295.355469 C 314.820312 295.355469 314.914062 295.261719 314.914062 295.144531 Z M 314.914062 295.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.878906 295.265625 C 313.878906 295.148438 313.785156 295.054688 313.667969 295.054688 C 313.550781 295.054688 313.457031 295.148438 313.457031 295.265625 C 313.457031 295.382812 313.550781 295.476562 313.667969 295.476562 C 313.785156 295.476562 313.878906 295.382812 313.878906 295.265625 Z M 313.878906 295.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.273438 301.84375 C 313.273438 301.726562 313.179688 301.632812 313.0625 301.632812 C 312.945312 301.632812 312.851562 301.726562 312.851562 301.84375 C 312.851562 301.960938 312.945312 302.054688 313.0625 302.054688 C 313.179688 302.054688 313.273438 301.960938 313.273438 301.84375 Z M 313.273438 301.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.261719 302.429688 C 313.261719 302.3125 313.167969 302.21875 313.050781 302.21875 C 312.933594 302.21875 312.839844 302.3125 312.839844 302.429688 C 312.839844 302.546875 312.933594 302.640625 313.050781 302.640625 C 313.167969 302.640625 313.261719 302.546875 313.261719 302.429688 Z M 313.261719 302.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.460938 302.632812 C 314.460938 302.515625 314.367188 302.421875 314.25 302.421875 C 314.132812 302.421875 314.039062 302.515625 314.039062 302.632812 C 314.039062 302.75 314.132812 302.84375 314.25 302.84375 C 314.367188 302.84375 314.460938 302.75 314.460938 302.632812 Z M 314.460938 302.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.378906 300.085938 C 312.378906 299.96875 312.285156 299.875 312.167969 299.875 C 312.050781 299.875 311.957031 299.96875 311.957031 300.085938 C 311.957031 300.203125 312.050781 300.296875 312.167969 300.296875 C 312.285156 300.296875 312.378906 300.203125 312.378906 300.085938 Z M 312.378906 300.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.847656 297.585938 C 309.847656 297.46875 309.753906 297.375 309.636719 297.375 C 309.519531 297.375 309.425781 297.46875 309.425781 297.585938 C 309.425781 297.703125 309.519531 297.796875 309.636719 297.796875 C 309.753906 297.796875 309.847656 297.703125 309.847656 297.585938 Z M 309.847656 297.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.269531 296.867188 C 310.269531 296.75 310.175781 296.65625 310.058594 296.65625 C 309.941406 296.65625 309.847656 296.75 309.847656 296.867188 C 309.847656 296.984375 309.941406 297.078125 310.058594 297.078125 C 310.175781 297.078125 310.269531 296.984375 310.269531 296.867188 Z M 310.269531 296.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.765625 292.230469 C 311.765625 292.113281 311.671875 292.019531 311.554688 292.019531 C 311.4375 292.019531 311.34375 292.113281 311.34375 292.230469 C 311.34375 292.347656 311.4375 292.441406 311.554688 292.441406 C 311.671875 292.441406 311.765625 292.347656 311.765625 292.230469 Z M 311.765625 292.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.832031 292.082031 C 316.832031 291.964844 316.738281 291.871094 316.621094 291.871094 C 316.503906 291.871094 316.410156 291.964844 316.410156 292.082031 C 316.410156 292.199219 316.503906 292.292969 316.621094 292.292969 C 316.738281 292.292969 316.832031 292.199219 316.832031 292.082031 Z M 316.832031 292.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.320312 285.597656 C 317.320312 285.480469 317.226562 285.386719 317.109375 285.386719 C 316.992188 285.386719 316.898438 285.480469 316.898438 285.597656 C 316.898438 285.714844 316.992188 285.808594 317.109375 285.808594 C 317.226562 285.808594 317.320312 285.714844 317.320312 285.597656 Z M 317.320312 285.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.777344 285.84375 C 322.777344 285.726562 322.683594 285.632812 322.566406 285.632812 C 322.449219 285.632812 322.355469 285.726562 322.355469 285.84375 C 322.355469 285.960938 322.449219 286.054688 322.566406 286.054688 C 322.683594 286.054688 322.777344 285.960938 322.777344 285.84375 Z M 322.777344 285.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.929688 288.269531 C 317.929688 288.152344 317.835938 288.058594 317.71875 288.058594 C 317.601562 288.058594 317.507812 288.152344 317.507812 288.269531 C 317.507812 288.386719 317.601562 288.480469 317.71875 288.480469 C 317.835938 288.480469 317.929688 288.386719 317.929688 288.269531 Z M 317.929688 288.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 318.675781 286.480469 C 318.675781 286.363281 318.582031 286.269531 318.464844 286.269531 C 318.347656 286.269531 318.253906 286.363281 318.253906 286.480469 C 318.253906 286.597656 318.347656 286.691406 318.464844 286.691406 C 318.582031 286.691406 318.675781 286.597656 318.675781 286.480469 Z M 318.675781 286.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 319.179688 285.710938 C 319.179688 285.59375 319.085938 285.5 318.96875 285.5 C 318.851562 285.5 318.757812 285.59375 318.757812 285.710938 C 318.757812 285.828125 318.851562 285.921875 318.96875 285.921875 C 319.085938 285.921875 319.179688 285.828125 319.179688 285.710938 Z M 319.179688 285.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 319.316406 284.851562 C 319.316406 284.734375 319.222656 284.640625 319.105469 284.640625 C 318.988281 284.640625 318.894531 284.734375 318.894531 284.851562 C 318.894531 284.96875 318.988281 285.0625 319.105469 285.0625 C 319.222656 285.0625 319.316406 284.96875 319.316406 284.851562 Z M 319.316406 284.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.195312 284.390625 C 321.195312 284.273438 321.101562 284.179688 320.984375 284.179688 C 320.867188 284.179688 320.773438 284.273438 320.773438 284.390625 C 320.773438 284.507812 320.867188 284.601562 320.984375 284.601562 C 321.101562 284.601562 321.195312 284.507812 321.195312 284.390625 Z M 321.195312 284.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 320.207031 285.175781 C 320.207031 285.058594 320.113281 284.964844 319.996094 284.964844 C 319.878906 284.964844 319.785156 285.058594 319.785156 285.175781 C 319.785156 285.292969 319.878906 285.386719 319.996094 285.386719 C 320.113281 285.386719 320.207031 285.292969 320.207031 285.175781 Z M 320.207031 285.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.613281 281.304688 C 316.613281 281.1875 316.519531 281.09375 316.402344 281.09375 C 316.285156 281.09375 316.191406 281.1875 316.191406 281.304688 C 316.191406 281.421875 316.285156 281.515625 316.402344 281.515625 C 316.519531 281.515625 316.613281 281.421875 316.613281 281.304688 Z M 316.613281 281.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 318.464844 281.5 C 318.464844 281.382812 318.371094 281.289062 318.253906 281.289062 C 318.136719 281.289062 318.042969 281.382812 318.042969 281.5 C 318.042969 281.617188 318.136719 281.710938 318.253906 281.710938 C 318.371094 281.710938 318.464844 281.617188 318.464844 281.5 Z M 318.464844 281.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 318.203125 281.453125 C 318.203125 281.335938 318.109375 281.242188 317.992188 281.242188 C 317.875 281.242188 317.78125 281.335938 317.78125 281.453125 C 317.78125 281.570312 317.875 281.664062 317.992188 281.664062 C 318.109375 281.664062 318.203125 281.570312 318.203125 281.453125 Z M 318.203125 281.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.390625 281.777344 C 317.390625 281.660156 317.296875 281.566406 317.179688 281.566406 C 317.0625 281.566406 316.96875 281.660156 316.96875 281.777344 C 316.96875 281.894531 317.0625 281.988281 317.179688 281.988281 C 317.296875 281.988281 317.390625 281.894531 317.390625 281.777344 Z M 317.390625 281.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.433594 278.128906 C 317.433594 278.011719 317.339844 277.917969 317.222656 277.917969 C 317.105469 277.917969 317.011719 278.011719 317.011719 278.128906 C 317.011719 278.246094 317.105469 278.339844 317.222656 278.339844 C 317.339844 278.339844 317.433594 278.246094 317.433594 278.128906 Z M 317.433594 278.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.535156 275.921875 C 314.535156 275.804688 314.441406 275.710938 314.324219 275.710938 C 314.207031 275.710938 314.113281 275.804688 314.113281 275.921875 C 314.113281 276.039062 314.207031 276.132812 314.324219 276.132812 C 314.441406 276.132812 314.535156 276.039062 314.535156 275.921875 Z M 314.535156 275.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.390625 279.554688 C 315.390625 279.4375 315.296875 279.34375 315.179688 279.34375 C 315.0625 279.34375 314.96875 279.4375 314.96875 279.554688 C 314.96875 279.671875 315.0625 279.765625 315.179688 279.765625 C 315.296875 279.765625 315.390625 279.671875 315.390625 279.554688 Z M 315.390625 279.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.5 275.394531 C 312.5 275.277344 312.40625 275.183594 312.289062 275.183594 C 312.171875 275.183594 312.078125 275.277344 312.078125 275.394531 C 312.078125 275.511719 312.171875 275.605469 312.289062 275.605469 C 312.40625 275.605469 312.5 275.511719 312.5 275.394531 Z M 312.5 275.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.855469 272.007812 C 312.855469 271.890625 312.761719 271.796875 312.644531 271.796875 C 312.527344 271.796875 312.433594 271.890625 312.433594 272.007812 C 312.433594 272.125 312.527344 272.21875 312.644531 272.21875 C 312.761719 272.21875 312.855469 272.125 312.855469 272.007812 Z M 312.855469 272.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.109375 270.582031 C 314.109375 270.464844 314.015625 270.371094 313.898438 270.371094 C 313.78125 270.371094 313.6875 270.464844 313.6875 270.582031 C 313.6875 270.699219 313.78125 270.792969 313.898438 270.792969 C 314.015625 270.792969 314.109375 270.699219 314.109375 270.582031 Z M 314.109375 270.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.425781 268.984375 C 314.425781 268.867188 314.332031 268.773438 314.214844 268.773438 C 314.097656 268.773438 314.003906 268.867188 314.003906 268.984375 C 314.003906 269.101562 314.097656 269.195312 314.214844 269.195312 C 314.332031 269.195312 314.425781 269.101562 314.425781 268.984375 Z M 314.425781 268.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 320.039062 266.304688 C 320.039062 266.1875 319.945312 266.09375 319.828125 266.09375 C 319.710938 266.09375 319.617188 266.1875 319.617188 266.304688 C 319.617188 266.421875 319.710938 266.515625 319.828125 266.515625 C 319.945312 266.515625 320.039062 266.421875 320.039062 266.304688 Z M 320.039062 266.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 318.484375 265.773438 C 318.484375 265.65625 318.390625 265.5625 318.273438 265.5625 C 318.15625 265.5625 318.0625 265.65625 318.0625 265.773438 C 318.0625 265.890625 318.15625 265.984375 318.273438 265.984375 C 318.390625 265.984375 318.484375 265.890625 318.484375 265.773438 Z M 318.484375 265.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 320.191406 270.21875 C 320.191406 270.101562 320.097656 270.007812 319.980469 270.007812 C 319.863281 270.007812 319.769531 270.101562 319.769531 270.21875 C 319.769531 270.335938 319.863281 270.429688 319.980469 270.429688 C 320.097656 270.429688 320.191406 270.335938 320.191406 270.21875 Z M 320.191406 270.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 319.582031 273.980469 C 319.582031 273.863281 319.488281 273.769531 319.371094 273.769531 C 319.253906 273.769531 319.160156 273.863281 319.160156 273.980469 C 319.160156 274.097656 319.253906 274.191406 319.371094 274.191406 C 319.488281 274.191406 319.582031 274.097656 319.582031 273.980469 Z M 319.582031 273.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 318.085938 270.699219 C 318.085938 270.582031 317.992188 270.488281 317.875 270.488281 C 317.757812 270.488281 317.664062 270.582031 317.664062 270.699219 C 317.664062 270.816406 317.757812 270.910156 317.875 270.910156 C 317.992188 270.910156 318.085938 270.816406 318.085938 270.699219 Z M 318.085938 270.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.898438 271.316406 C 317.898438 271.199219 317.804688 271.105469 317.6875 271.105469 C 317.570312 271.105469 317.476562 271.199219 317.476562 271.316406 C 317.476562 271.433594 317.570312 271.527344 317.6875 271.527344 C 317.804688 271.527344 317.898438 271.433594 317.898438 271.316406 Z M 317.898438 271.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.460938 275.328125 C 317.460938 275.210938 317.367188 275.117188 317.25 275.117188 C 317.132812 275.117188 317.039062 275.210938 317.039062 275.328125 C 317.039062 275.445312 317.132812 275.539062 317.25 275.539062 C 317.367188 275.539062 317.460938 275.445312 317.460938 275.328125 Z M 317.460938 275.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.542969 271.449219 C 317.542969 271.332031 317.449219 271.238281 317.332031 271.238281 C 317.214844 271.238281 317.121094 271.332031 317.121094 271.449219 C 317.121094 271.566406 317.214844 271.660156 317.332031 271.660156 C 317.449219 271.660156 317.542969 271.566406 317.542969 271.449219 Z M 317.542969 271.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 318.445312 275.761719 C 318.445312 275.644531 318.351562 275.550781 318.234375 275.550781 C 318.117188 275.550781 318.023438 275.644531 318.023438 275.761719 C 318.023438 275.878906 318.117188 275.972656 318.234375 275.972656 C 318.351562 275.972656 318.445312 275.878906 318.445312 275.761719 Z M 318.445312 275.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.367188 273.640625 C 322.367188 273.523438 322.273438 273.429688 322.15625 273.429688 C 322.039062 273.429688 321.945312 273.523438 321.945312 273.640625 C 321.945312 273.757812 322.039062 273.851562 322.15625 273.851562 C 322.273438 273.851562 322.367188 273.757812 322.367188 273.640625 Z M 322.367188 273.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.804688 273.667969 C 321.804688 273.550781 321.710938 273.457031 321.59375 273.457031 C 321.476562 273.457031 321.382812 273.550781 321.382812 273.667969 C 321.382812 273.785156 321.476562 273.878906 321.59375 273.878906 C 321.710938 273.878906 321.804688 273.785156 321.804688 273.667969 Z M 321.804688 273.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.804688 275.289062 C 317.804688 275.171875 317.710938 275.078125 317.59375 275.078125 C 317.476562 275.078125 317.382812 275.171875 317.382812 275.289062 C 317.382812 275.40625 317.476562 275.5 317.59375 275.5 C 317.710938 275.5 317.804688 275.40625 317.804688 275.289062 Z M 317.804688 275.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.476562 278.03125 C 322.476562 277.914062 322.382812 277.820312 322.265625 277.820312 C 322.148438 277.820312 322.054688 277.914062 322.054688 278.03125 C 322.054688 278.148438 322.148438 278.242188 322.265625 278.242188 C 322.382812 278.242188 322.476562 278.148438 322.476562 278.03125 Z M 322.476562 278.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.183594 276.964844 C 321.183594 276.847656 321.089844 276.753906 320.972656 276.753906 C 320.855469 276.753906 320.761719 276.847656 320.761719 276.964844 C 320.761719 277.082031 320.855469 277.175781 320.972656 277.175781 C 321.089844 277.175781 321.183594 277.082031 321.183594 276.964844 Z M 321.183594 276.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.632812 272.339844 C 323.632812 272.222656 323.539062 272.128906 323.421875 272.128906 C 323.304688 272.128906 323.210938 272.222656 323.210938 272.339844 C 323.210938 272.457031 323.304688 272.550781 323.421875 272.550781 C 323.539062 272.550781 323.632812 272.457031 323.632812 272.339844 Z M 323.632812 272.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.921875 273.730469 C 326.921875 273.613281 326.828125 273.519531 326.710938 273.519531 C 326.59375 273.519531 326.5 273.613281 326.5 273.730469 C 326.5 273.847656 326.59375 273.941406 326.710938 273.941406 C 326.828125 273.941406 326.921875 273.847656 326.921875 273.730469 Z M 326.921875 273.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.222656 274.328125 C 325.222656 274.210938 325.128906 274.117188 325.011719 274.117188 C 324.894531 274.117188 324.800781 274.210938 324.800781 274.328125 C 324.800781 274.445312 324.894531 274.539062 325.011719 274.539062 C 325.128906 274.539062 325.222656 274.445312 325.222656 274.328125 Z M 325.222656 274.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.804688 274.761719 C 326.804688 274.644531 326.710938 274.550781 326.59375 274.550781 C 326.476562 274.550781 326.382812 274.644531 326.382812 274.761719 C 326.382812 274.878906 326.476562 274.972656 326.59375 274.972656 C 326.710938 274.972656 326.804688 274.878906 326.804688 274.761719 Z M 326.804688 274.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.691406 272.804688 C 326.691406 272.6875 326.597656 272.59375 326.480469 272.59375 C 326.363281 272.59375 326.269531 272.6875 326.269531 272.804688 C 326.269531 272.921875 326.363281 273.015625 326.480469 273.015625 C 326.597656 273.015625 326.691406 272.921875 326.691406 272.804688 Z M 326.691406 272.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.445312 275.496094 C 326.445312 275.378906 326.351562 275.285156 326.234375 275.285156 C 326.117188 275.285156 326.023438 275.378906 326.023438 275.496094 C 326.023438 275.613281 326.117188 275.707031 326.234375 275.707031 C 326.351562 275.707031 326.445312 275.613281 326.445312 275.496094 Z M 326.445312 275.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.078125 273.601562 C 326.078125 273.484375 325.984375 273.390625 325.867188 273.390625 C 325.75 273.390625 325.65625 273.484375 325.65625 273.601562 C 325.65625 273.71875 325.75 273.8125 325.867188 273.8125 C 325.984375 273.8125 326.078125 273.71875 326.078125 273.601562 Z M 326.078125 273.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.757812 273.121094 C 324.757812 273.003906 324.664062 272.910156 324.546875 272.910156 C 324.429688 272.910156 324.335938 273.003906 324.335938 273.121094 C 324.335938 273.238281 324.429688 273.332031 324.546875 273.332031 C 324.664062 273.332031 324.757812 273.238281 324.757812 273.121094 Z M 324.757812 273.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.574219 274.09375 C 324.574219 273.976562 324.480469 273.882812 324.363281 273.882812 C 324.246094 273.882812 324.152344 273.976562 324.152344 274.09375 C 324.152344 274.210938 324.246094 274.304688 324.363281 274.304688 C 324.480469 274.304688 324.574219 274.210938 324.574219 274.09375 Z M 324.574219 274.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.316406 272.550781 C 327.316406 272.433594 327.222656 272.339844 327.105469 272.339844 C 326.988281 272.339844 326.894531 272.433594 326.894531 272.550781 C 326.894531 272.667969 326.988281 272.761719 327.105469 272.761719 C 327.222656 272.761719 327.316406 272.667969 327.316406 272.550781 Z M 327.316406 272.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.757812 271.039062 C 327.757812 270.921875 327.664062 270.828125 327.546875 270.828125 C 327.429688 270.828125 327.335938 270.921875 327.335938 271.039062 C 327.335938 271.15625 327.429688 271.25 327.546875 271.25 C 327.664062 271.25 327.757812 271.15625 327.757812 271.039062 Z M 327.757812 271.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.207031 269.914062 C 324.207031 269.796875 324.113281 269.703125 323.996094 269.703125 C 323.878906 269.703125 323.785156 269.796875 323.785156 269.914062 C 323.785156 270.03125 323.878906 270.125 323.996094 270.125 C 324.113281 270.125 324.207031 270.03125 324.207031 269.914062 Z M 324.207031 269.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.164062 269.917969 C 321.164062 269.800781 321.070312 269.707031 320.953125 269.707031 C 320.835938 269.707031 320.742188 269.800781 320.742188 269.917969 C 320.742188 270.035156 320.835938 270.128906 320.953125 270.128906 C 321.070312 270.128906 321.164062 270.035156 321.164062 269.917969 Z M 321.164062 269.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.785156 268.042969 C 322.785156 267.925781 322.691406 267.832031 322.574219 267.832031 C 322.457031 267.832031 322.363281 267.925781 322.363281 268.042969 C 322.363281 268.160156 322.457031 268.253906 322.574219 268.253906 C 322.691406 268.253906 322.785156 268.160156 322.785156 268.042969 Z M 322.785156 268.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.210938 269.464844 C 322.210938 269.347656 322.117188 269.253906 322 269.253906 C 321.882812 269.253906 321.789062 269.347656 321.789062 269.464844 C 321.789062 269.582031 321.882812 269.675781 322 269.675781 C 322.117188 269.675781 322.210938 269.582031 322.210938 269.464844 Z M 322.210938 269.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.324219 267.554688 C 323.324219 267.4375 323.230469 267.34375 323.113281 267.34375 C 322.996094 267.34375 322.902344 267.4375 322.902344 267.554688 C 322.902344 267.671875 322.996094 267.765625 323.113281 267.765625 C 323.230469 267.765625 323.324219 267.671875 323.324219 267.554688 Z M 323.324219 267.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.148438 265.996094 C 323.148438 265.878906 323.054688 265.785156 322.9375 265.785156 C 322.820312 265.785156 322.726562 265.878906 322.726562 265.996094 C 322.726562 266.113281 322.820312 266.207031 322.9375 266.207031 C 323.054688 266.207031 323.148438 266.113281 323.148438 265.996094 Z M 323.148438 265.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.519531 266.5625 C 326.519531 266.445312 326.425781 266.351562 326.308594 266.351562 C 326.191406 266.351562 326.097656 266.445312 326.097656 266.5625 C 326.097656 266.679688 326.191406 266.773438 326.308594 266.773438 C 326.425781 266.773438 326.519531 266.679688 326.519531 266.5625 Z M 326.519531 266.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.480469 269.324219 C 324.480469 269.207031 324.386719 269.113281 324.269531 269.113281 C 324.152344 269.113281 324.058594 269.207031 324.058594 269.324219 C 324.058594 269.441406 324.152344 269.535156 324.269531 269.535156 C 324.386719 269.535156 324.480469 269.441406 324.480469 269.324219 Z M 324.480469 269.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.941406 268.355469 C 327.941406 268.238281 327.847656 268.144531 327.730469 268.144531 C 327.613281 268.144531 327.519531 268.238281 327.519531 268.355469 C 327.519531 268.472656 327.613281 268.566406 327.730469 268.566406 C 327.847656 268.566406 327.941406 268.472656 327.941406 268.355469 Z M 327.941406 268.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.542969 265.28125 C 327.542969 265.164062 327.449219 265.070312 327.332031 265.070312 C 327.214844 265.070312 327.121094 265.164062 327.121094 265.28125 C 327.121094 265.398438 327.214844 265.492188 327.332031 265.492188 C 327.449219 265.492188 327.542969 265.398438 327.542969 265.28125 Z M 327.542969 265.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.605469 268.820312 C 326.605469 268.703125 326.511719 268.609375 326.394531 268.609375 C 326.277344 268.609375 326.183594 268.703125 326.183594 268.820312 C 326.183594 268.9375 326.277344 269.03125 326.394531 269.03125 C 326.511719 269.03125 326.605469 268.9375 326.605469 268.820312 Z M 326.605469 268.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 328.773438 268.089844 C 328.773438 267.972656 328.679688 267.878906 328.5625 267.878906 C 328.445312 267.878906 328.351562 267.972656 328.351562 268.089844 C 328.351562 268.207031 328.445312 268.300781 328.5625 268.300781 C 328.679688 268.300781 328.773438 268.207031 328.773438 268.089844 Z M 328.773438 268.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.542969 267.503906 C 324.542969 267.386719 324.449219 267.292969 324.332031 267.292969 C 324.214844 267.292969 324.121094 267.386719 324.121094 267.503906 C 324.121094 267.621094 324.214844 267.714844 324.332031 267.714844 C 324.449219 267.714844 324.542969 267.621094 324.542969 267.503906 Z M 324.542969 267.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.730469 266.019531 C 323.730469 265.902344 323.636719 265.808594 323.519531 265.808594 C 323.402344 265.808594 323.308594 265.902344 323.308594 266.019531 C 323.308594 266.136719 323.402344 266.230469 323.519531 266.230469 C 323.636719 266.230469 323.730469 266.136719 323.730469 266.019531 Z M 323.730469 266.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.890625 263.878906 C 324.890625 263.761719 324.796875 263.667969 324.679688 263.667969 C 324.5625 263.667969 324.46875 263.761719 324.46875 263.878906 C 324.46875 263.996094 324.5625 264.089844 324.679688 264.089844 C 324.796875 264.089844 324.890625 263.996094 324.890625 263.878906 Z M 324.890625 263.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.878906 261.964844 C 322.878906 261.847656 322.785156 261.753906 322.667969 261.753906 C 322.550781 261.753906 322.457031 261.847656 322.457031 261.964844 C 322.457031 262.082031 322.550781 262.175781 322.667969 262.175781 C 322.785156 262.175781 322.878906 262.082031 322.878906 261.964844 Z M 322.878906 261.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.597656 261.605469 C 321.597656 261.488281 321.503906 261.394531 321.386719 261.394531 C 321.269531 261.394531 321.175781 261.488281 321.175781 261.605469 C 321.175781 261.722656 321.269531 261.816406 321.386719 261.816406 C 321.503906 261.816406 321.597656 261.722656 321.597656 261.605469 Z M 321.597656 261.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 320.871094 258.390625 C 320.871094 258.273438 320.777344 258.179688 320.660156 258.179688 C 320.542969 258.179688 320.449219 258.273438 320.449219 258.390625 C 320.449219 258.507812 320.542969 258.601562 320.660156 258.601562 C 320.777344 258.601562 320.871094 258.507812 320.871094 258.390625 Z M 320.871094 258.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 319.917969 257.96875 C 319.917969 257.851562 319.824219 257.757812 319.707031 257.757812 C 319.589844 257.757812 319.496094 257.851562 319.496094 257.96875 C 319.496094 258.085938 319.589844 258.179688 319.707031 258.179688 C 319.824219 258.179688 319.917969 258.085938 319.917969 257.96875 Z M 319.917969 257.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.816406 256.304688 C 316.816406 256.1875 316.722656 256.09375 316.605469 256.09375 C 316.488281 256.09375 316.394531 256.1875 316.394531 256.304688 C 316.394531 256.421875 316.488281 256.515625 316.605469 256.515625 C 316.722656 256.515625 316.816406 256.421875 316.816406 256.304688 Z M 316.816406 256.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.582031 253.636719 C 317.582031 253.519531 317.488281 253.425781 317.371094 253.425781 C 317.253906 253.425781 317.160156 253.519531 317.160156 253.636719 C 317.160156 253.753906 317.253906 253.847656 317.371094 253.847656 C 317.488281 253.847656 317.582031 253.753906 317.582031 253.636719 Z M 317.582031 253.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.558594 250.339844 C 317.558594 250.222656 317.464844 250.128906 317.347656 250.128906 C 317.230469 250.128906 317.136719 250.222656 317.136719 250.339844 C 317.136719 250.457031 317.230469 250.550781 317.347656 250.550781 C 317.464844 250.550781 317.558594 250.457031 317.558594 250.339844 Z M 317.558594 250.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.605469 255.183594 C 313.605469 255.066406 313.511719 254.972656 313.394531 254.972656 C 313.277344 254.972656 313.183594 255.066406 313.183594 255.183594 C 313.183594 255.300781 313.277344 255.394531 313.394531 255.394531 C 313.511719 255.394531 313.605469 255.300781 313.605469 255.183594 Z M 313.605469 255.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.132812 255.203125 C 312.132812 255.085938 312.039062 254.992188 311.921875 254.992188 C 311.804688 254.992188 311.710938 255.085938 311.710938 255.203125 C 311.710938 255.320312 311.804688 255.414062 311.921875 255.414062 C 312.039062 255.414062 312.132812 255.320312 312.132812 255.203125 Z M 312.132812 255.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.320312 255.902344 C 308.320312 255.785156 308.226562 255.691406 308.109375 255.691406 C 307.992188 255.691406 307.898438 255.785156 307.898438 255.902344 C 307.898438 256.019531 307.992188 256.113281 308.109375 256.113281 C 308.226562 256.113281 308.320312 256.019531 308.320312 255.902344 Z M 308.320312 255.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.097656 254.5625 C 311.097656 254.445312 311.003906 254.351562 310.886719 254.351562 C 310.769531 254.351562 310.675781 254.445312 310.675781 254.5625 C 310.675781 254.679688 310.769531 254.773438 310.886719 254.773438 C 311.003906 254.773438 311.097656 254.679688 311.097656 254.5625 Z M 311.097656 254.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.832031 251.683594 C 312.832031 251.566406 312.738281 251.472656 312.621094 251.472656 C 312.503906 251.472656 312.410156 251.566406 312.410156 251.683594 C 312.410156 251.800781 312.503906 251.894531 312.621094 251.894531 C 312.738281 251.894531 312.832031 251.800781 312.832031 251.683594 Z M 312.832031 251.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.765625 254.992188 C 314.765625 254.875 314.671875 254.78125 314.554688 254.78125 C 314.4375 254.78125 314.34375 254.875 314.34375 254.992188 C 314.34375 255.109375 314.4375 255.203125 314.554688 255.203125 C 314.671875 255.203125 314.765625 255.109375 314.765625 254.992188 Z M 314.765625 254.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.429688 255.53125 C 315.429688 255.414062 315.335938 255.320312 315.21875 255.320312 C 315.101562 255.320312 315.007812 255.414062 315.007812 255.53125 C 315.007812 255.648438 315.101562 255.742188 315.21875 255.742188 C 315.335938 255.742188 315.429688 255.648438 315.429688 255.53125 Z M 315.429688 255.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.761719 256.671875 C 315.761719 256.554688 315.667969 256.460938 315.550781 256.460938 C 315.433594 256.460938 315.339844 256.554688 315.339844 256.671875 C 315.339844 256.789062 315.433594 256.882812 315.550781 256.882812 C 315.667969 256.882812 315.761719 256.789062 315.761719 256.671875 Z M 315.761719 256.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.324219 254.042969 C 317.324219 253.925781 317.230469 253.832031 317.113281 253.832031 C 316.996094 253.832031 316.902344 253.925781 316.902344 254.042969 C 316.902344 254.160156 316.996094 254.253906 317.113281 254.253906 C 317.230469 254.253906 317.324219 254.160156 317.324219 254.042969 Z M 317.324219 254.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.351562 256.195312 C 316.351562 256.078125 316.257812 255.984375 316.140625 255.984375 C 316.023438 255.984375 315.929688 256.078125 315.929688 256.195312 C 315.929688 256.3125 316.023438 256.40625 316.140625 256.40625 C 316.257812 256.40625 316.351562 256.3125 316.351562 256.195312 Z M 316.351562 256.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.113281 262.570312 C 315.113281 262.453125 315.019531 262.359375 314.902344 262.359375 C 314.785156 262.359375 314.691406 262.453125 314.691406 262.570312 C 314.691406 262.6875 314.785156 262.78125 314.902344 262.78125 C 315.019531 262.78125 315.113281 262.6875 315.113281 262.570312 Z M 315.113281 262.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.335938 264.828125 C 315.335938 264.710938 315.242188 264.617188 315.125 264.617188 C 315.007812 264.617188 314.914062 264.710938 314.914062 264.828125 C 314.914062 264.945312 315.007812 265.039062 315.125 265.039062 C 315.242188 265.039062 315.335938 264.945312 315.335938 264.828125 Z M 315.335938 264.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.738281 267.269531 C 316.738281 267.152344 316.644531 267.058594 316.527344 267.058594 C 316.410156 267.058594 316.316406 267.152344 316.316406 267.269531 C 316.316406 267.386719 316.410156 267.480469 316.527344 267.480469 C 316.644531 267.480469 316.738281 267.386719 316.738281 267.269531 Z M 316.738281 267.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.511719 265.652344 C 317.511719 265.535156 317.417969 265.441406 317.300781 265.441406 C 317.183594 265.441406 317.089844 265.535156 317.089844 265.652344 C 317.089844 265.769531 317.183594 265.863281 317.300781 265.863281 C 317.417969 265.863281 317.511719 265.769531 317.511719 265.652344 Z M 317.511719 265.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.839844 266.777344 C 316.839844 266.660156 316.746094 266.566406 316.628906 266.566406 C 316.511719 266.566406 316.417969 266.660156 316.417969 266.777344 C 316.417969 266.894531 316.511719 266.988281 316.628906 266.988281 C 316.746094 266.988281 316.839844 266.894531 316.839844 266.777344 Z M 316.839844 266.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.855469 266.632812 C 317.855469 266.515625 317.761719 266.421875 317.644531 266.421875 C 317.527344 266.421875 317.433594 266.515625 317.433594 266.632812 C 317.433594 266.75 317.527344 266.84375 317.644531 266.84375 C 317.761719 266.84375 317.855469 266.75 317.855469 266.632812 Z M 317.855469 266.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.113281 270.355469 C 315.113281 270.238281 315.019531 270.144531 314.902344 270.144531 C 314.785156 270.144531 314.691406 270.238281 314.691406 270.355469 C 314.691406 270.472656 314.785156 270.566406 314.902344 270.566406 C 315.019531 270.566406 315.113281 270.472656 315.113281 270.355469 Z M 315.113281 270.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 318.722656 271.769531 C 318.722656 271.652344 318.628906 271.558594 318.511719 271.558594 C 318.394531 271.558594 318.300781 271.652344 318.300781 271.769531 C 318.300781 271.886719 318.394531 271.980469 318.511719 271.980469 C 318.628906 271.980469 318.722656 271.886719 318.722656 271.769531 Z M 318.722656 271.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 320.242188 270.195312 C 320.242188 270.078125 320.148438 269.984375 320.03125 269.984375 C 319.914062 269.984375 319.820312 270.078125 319.820312 270.195312 C 319.820312 270.3125 319.914062 270.40625 320.03125 270.40625 C 320.148438 270.40625 320.242188 270.3125 320.242188 270.195312 Z M 320.242188 270.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.96875 272.523438 C 315.96875 272.40625 315.875 272.3125 315.757812 272.3125 C 315.640625 272.3125 315.546875 272.40625 315.546875 272.523438 C 315.546875 272.640625 315.640625 272.734375 315.757812 272.734375 C 315.875 272.734375 315.96875 272.640625 315.96875 272.523438 Z M 315.96875 272.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.335938 273.140625 C 314.335938 273.023438 314.242188 272.929688 314.125 272.929688 C 314.007812 272.929688 313.914062 273.023438 313.914062 273.140625 C 313.914062 273.257812 314.007812 273.351562 314.125 273.351562 C 314.242188 273.351562 314.335938 273.257812 314.335938 273.140625 Z M 314.335938 273.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.425781 269.261719 C 310.425781 269.144531 310.332031 269.050781 310.214844 269.050781 C 310.097656 269.050781 310.003906 269.144531 310.003906 269.261719 C 310.003906 269.378906 310.097656 269.472656 310.214844 269.472656 C 310.332031 269.472656 310.425781 269.378906 310.425781 269.261719 Z M 310.425781 269.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.707031 268.917969 C 313.707031 268.800781 313.613281 268.707031 313.496094 268.707031 C 313.378906 268.707031 313.285156 268.800781 313.285156 268.917969 C 313.285156 269.035156 313.378906 269.128906 313.496094 269.128906 C 313.613281 269.128906 313.707031 269.035156 313.707031 268.917969 Z M 313.707031 268.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.679688 265.433594 C 314.679688 265.316406 314.585938 265.222656 314.46875 265.222656 C 314.351562 265.222656 314.257812 265.316406 314.257812 265.433594 C 314.257812 265.550781 314.351562 265.644531 314.46875 265.644531 C 314.585938 265.644531 314.679688 265.550781 314.679688 265.433594 Z M 314.679688 265.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.972656 264.859375 C 315.972656 264.742188 315.878906 264.648438 315.761719 264.648438 C 315.644531 264.648438 315.550781 264.742188 315.550781 264.859375 C 315.550781 264.976562 315.644531 265.070312 315.761719 265.070312 C 315.878906 265.070312 315.972656 264.976562 315.972656 264.859375 Z M 315.972656 264.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.039062 263.003906 C 317.039062 262.886719 316.945312 262.792969 316.828125 262.792969 C 316.710938 262.792969 316.617188 262.886719 316.617188 263.003906 C 316.617188 263.121094 316.710938 263.214844 316.828125 263.214844 C 316.945312 263.214844 317.039062 263.121094 317.039062 263.003906 Z M 317.039062 263.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.46875 262.851562 C 315.46875 262.734375 315.375 262.640625 315.257812 262.640625 C 315.140625 262.640625 315.046875 262.734375 315.046875 262.851562 C 315.046875 262.96875 315.140625 263.0625 315.257812 263.0625 C 315.375 263.0625 315.46875 262.96875 315.46875 262.851562 Z M 315.46875 262.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 318.304688 262.273438 C 318.304688 262.15625 318.210938 262.0625 318.09375 262.0625 C 317.976562 262.0625 317.882812 262.15625 317.882812 262.273438 C 317.882812 262.390625 317.976562 262.484375 318.09375 262.484375 C 318.210938 262.484375 318.304688 262.390625 318.304688 262.273438 Z M 318.304688 262.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.773438 260.375 C 322.773438 260.257812 322.679688 260.164062 322.5625 260.164062 C 322.445312 260.164062 322.351562 260.257812 322.351562 260.375 C 322.351562 260.492188 322.445312 260.585938 322.5625 260.585938 C 322.679688 260.585938 322.773438 260.492188 322.773438 260.375 Z M 322.773438 260.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.035156 257.960938 C 322.035156 257.84375 321.941406 257.75 321.824219 257.75 C 321.707031 257.75 321.613281 257.84375 321.613281 257.960938 C 321.613281 258.078125 321.707031 258.171875 321.824219 258.171875 C 321.941406 258.171875 322.035156 258.078125 322.035156 257.960938 Z M 322.035156 257.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.25 258.269531 C 323.25 258.152344 323.15625 258.058594 323.039062 258.058594 C 322.921875 258.058594 322.828125 258.152344 322.828125 258.269531 C 322.828125 258.386719 322.921875 258.480469 323.039062 258.480469 C 323.15625 258.480469 323.25 258.386719 323.25 258.269531 Z M 323.25 258.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.664062 260.976562 C 323.664062 260.859375 323.570312 260.765625 323.453125 260.765625 C 323.335938 260.765625 323.242188 260.859375 323.242188 260.976562 C 323.242188 261.09375 323.335938 261.1875 323.453125 261.1875 C 323.570312 261.1875 323.664062 261.09375 323.664062 260.976562 Z M 323.664062 260.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.605469 258.925781 C 322.605469 258.808594 322.511719 258.714844 322.394531 258.714844 C 322.277344 258.714844 322.183594 258.808594 322.183594 258.925781 C 322.183594 259.042969 322.277344 259.136719 322.394531 259.136719 C 322.511719 259.136719 322.605469 259.042969 322.605469 258.925781 Z M 322.605469 258.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.066406 257.914062 C 322.066406 257.796875 321.972656 257.703125 321.855469 257.703125 C 321.738281 257.703125 321.644531 257.796875 321.644531 257.914062 C 321.644531 258.03125 321.738281 258.125 321.855469 258.125 C 321.972656 258.125 322.066406 258.03125 322.066406 257.914062 Z M 322.066406 257.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.011719 258.097656 C 325.011719 257.980469 324.917969 257.886719 324.800781 257.886719 C 324.683594 257.886719 324.589844 257.980469 324.589844 258.097656 C 324.589844 258.214844 324.683594 258.308594 324.800781 258.308594 C 324.917969 258.308594 325.011719 258.214844 325.011719 258.097656 Z M 325.011719 258.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.203125 253.089844 C 323.203125 252.972656 323.109375 252.878906 322.992188 252.878906 C 322.875 252.878906 322.78125 252.972656 322.78125 253.089844 C 322.78125 253.207031 322.875 253.300781 322.992188 253.300781 C 323.109375 253.300781 323.203125 253.207031 323.203125 253.089844 Z M 323.203125 253.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.433594 256.253906 C 321.433594 256.136719 321.339844 256.042969 321.222656 256.042969 C 321.105469 256.042969 321.011719 256.136719 321.011719 256.253906 C 321.011719 256.371094 321.105469 256.464844 321.222656 256.464844 C 321.339844 256.464844 321.433594 256.371094 321.433594 256.253906 Z M 321.433594 256.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.226562 258.117188 C 321.226562 258 321.132812 257.90625 321.015625 257.90625 C 320.898438 257.90625 320.804688 258 320.804688 258.117188 C 320.804688 258.234375 320.898438 258.328125 321.015625 258.328125 C 321.132812 258.328125 321.226562 258.234375 321.226562 258.117188 Z M 321.226562 258.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.378906 255.71875 C 322.378906 255.601562 322.285156 255.507812 322.167969 255.507812 C 322.050781 255.507812 321.957031 255.601562 321.957031 255.71875 C 321.957031 255.835938 322.050781 255.929688 322.167969 255.929688 C 322.285156 255.929688 322.378906 255.835938 322.378906 255.71875 Z M 322.378906 255.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.132812 256.929688 C 321.132812 256.8125 321.039062 256.71875 320.921875 256.71875 C 320.804688 256.71875 320.710938 256.8125 320.710938 256.929688 C 320.710938 257.046875 320.804688 257.140625 320.921875 257.140625 C 321.039062 257.140625 321.132812 257.046875 321.132812 256.929688 Z M 321.132812 256.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.898438 257.007812 C 322.898438 256.890625 322.804688 256.796875 322.6875 256.796875 C 322.570312 256.796875 322.476562 256.890625 322.476562 257.007812 C 322.476562 257.125 322.570312 257.21875 322.6875 257.21875 C 322.804688 257.21875 322.898438 257.125 322.898438 257.007812 Z M 322.898438 257.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.4375 258.359375 C 325.4375 258.242188 325.34375 258.148438 325.226562 258.148438 C 325.109375 258.148438 325.015625 258.242188 325.015625 258.359375 C 325.015625 258.476562 325.109375 258.570312 325.226562 258.570312 C 325.34375 258.570312 325.4375 258.476562 325.4375 258.359375 Z M 325.4375 258.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.960938 259.347656 C 325.960938 259.230469 325.867188 259.136719 325.75 259.136719 C 325.632812 259.136719 325.539062 259.230469 325.539062 259.347656 C 325.539062 259.464844 325.632812 259.558594 325.75 259.558594 C 325.867188 259.558594 325.960938 259.464844 325.960938 259.347656 Z M 325.960938 259.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.230469 258.46875 C 326.230469 258.351562 326.136719 258.257812 326.019531 258.257812 C 325.902344 258.257812 325.808594 258.351562 325.808594 258.46875 C 325.808594 258.585938 325.902344 258.679688 326.019531 258.679688 C 326.136719 258.679688 326.230469 258.585938 326.230469 258.46875 Z M 326.230469 258.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.585938 256.960938 C 325.585938 256.84375 325.492188 256.75 325.375 256.75 C 325.257812 256.75 325.164062 256.84375 325.164062 256.960938 C 325.164062 257.078125 325.257812 257.171875 325.375 257.171875 C 325.492188 257.171875 325.585938 257.078125 325.585938 256.960938 Z M 325.585938 256.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.394531 253.71875 C 324.394531 253.601562 324.300781 253.507812 324.183594 253.507812 C 324.066406 253.507812 323.972656 253.601562 323.972656 253.71875 C 323.972656 253.835938 324.066406 253.929688 324.183594 253.929688 C 324.300781 253.929688 324.394531 253.835938 324.394531 253.71875 Z M 324.394531 253.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.171875 250.804688 C 324.171875 250.6875 324.078125 250.59375 323.960938 250.59375 C 323.84375 250.59375 323.75 250.6875 323.75 250.804688 C 323.75 250.921875 323.84375 251.015625 323.960938 251.015625 C 324.078125 251.015625 324.171875 250.921875 324.171875 250.804688 Z M 324.171875 250.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.972656 249.921875 C 325.972656 249.804688 325.878906 249.710938 325.761719 249.710938 C 325.644531 249.710938 325.550781 249.804688 325.550781 249.921875 C 325.550781 250.039062 325.644531 250.132812 325.761719 250.132812 C 325.878906 250.132812 325.972656 250.039062 325.972656 249.921875 Z M 325.972656 249.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 330.785156 250.867188 C 330.785156 250.75 330.691406 250.65625 330.574219 250.65625 C 330.457031 250.65625 330.363281 250.75 330.363281 250.867188 C 330.363281 250.984375 330.457031 251.078125 330.574219 251.078125 C 330.691406 251.078125 330.785156 250.984375 330.785156 250.867188 Z M 330.785156 250.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 328.507812 253.695312 C 328.507812 253.578125 328.414062 253.484375 328.296875 253.484375 C 328.179688 253.484375 328.085938 253.578125 328.085938 253.695312 C 328.085938 253.8125 328.179688 253.90625 328.296875 253.90625 C 328.414062 253.90625 328.507812 253.8125 328.507812 253.695312 Z M 328.507812 253.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 330.527344 253.8125 C 330.527344 253.695312 330.433594 253.601562 330.316406 253.601562 C 330.199219 253.601562 330.105469 253.695312 330.105469 253.8125 C 330.105469 253.929688 330.199219 254.023438 330.316406 254.023438 C 330.433594 254.023438 330.527344 253.929688 330.527344 253.8125 Z M 330.527344 253.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.78125 255.019531 C 327.78125 254.902344 327.6875 254.808594 327.570312 254.808594 C 327.453125 254.808594 327.359375 254.902344 327.359375 255.019531 C 327.359375 255.136719 327.453125 255.230469 327.570312 255.230469 C 327.6875 255.230469 327.78125 255.136719 327.78125 255.019531 Z M 327.78125 255.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 328.328125 254.65625 C 328.328125 254.539062 328.234375 254.445312 328.117188 254.445312 C 328 254.445312 327.90625 254.539062 327.90625 254.65625 C 327.90625 254.773438 328 254.867188 328.117188 254.867188 C 328.234375 254.867188 328.328125 254.773438 328.328125 254.65625 Z M 328.328125 254.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 331.339844 256.527344 C 331.339844 256.410156 331.246094 256.316406 331.128906 256.316406 C 331.011719 256.316406 330.917969 256.410156 330.917969 256.527344 C 330.917969 256.644531 331.011719 256.738281 331.128906 256.738281 C 331.246094 256.738281 331.339844 256.644531 331.339844 256.527344 Z M 331.339844 256.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 329.523438 256.457031 C 329.523438 256.339844 329.429688 256.246094 329.3125 256.246094 C 329.195312 256.246094 329.101562 256.339844 329.101562 256.457031 C 329.101562 256.574219 329.195312 256.667969 329.3125 256.667969 C 329.429688 256.667969 329.523438 256.574219 329.523438 256.457031 Z M 329.523438 256.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 330.984375 256.84375 C 330.984375 256.726562 330.890625 256.632812 330.773438 256.632812 C 330.65625 256.632812 330.5625 256.726562 330.5625 256.84375 C 330.5625 256.960938 330.65625 257.054688 330.773438 257.054688 C 330.890625 257.054688 330.984375 256.960938 330.984375 256.84375 Z M 330.984375 256.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 331.816406 256.253906 C 331.816406 256.136719 331.722656 256.042969 331.605469 256.042969 C 331.488281 256.042969 331.394531 256.136719 331.394531 256.253906 C 331.394531 256.371094 331.488281 256.464844 331.605469 256.464844 C 331.722656 256.464844 331.816406 256.371094 331.816406 256.253906 Z M 331.816406 256.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 329.769531 255.789062 C 329.769531 255.671875 329.675781 255.578125 329.558594 255.578125 C 329.441406 255.578125 329.347656 255.671875 329.347656 255.789062 C 329.347656 255.90625 329.441406 256 329.558594 256 C 329.675781 256 329.769531 255.90625 329.769531 255.789062 Z M 329.769531 255.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.3125 255.261719 C 326.3125 255.144531 326.21875 255.050781 326.101562 255.050781 C 325.984375 255.050781 325.890625 255.144531 325.890625 255.261719 C 325.890625 255.378906 325.984375 255.472656 326.101562 255.472656 C 326.21875 255.472656 326.3125 255.378906 326.3125 255.261719 Z M 326.3125 255.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 329.644531 253.53125 C 329.644531 253.414062 329.550781 253.320312 329.433594 253.320312 C 329.316406 253.320312 329.222656 253.414062 329.222656 253.53125 C 329.222656 253.648438 329.316406 253.742188 329.433594 253.742188 C 329.550781 253.742188 329.644531 253.648438 329.644531 253.53125 Z M 329.644531 253.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 332.722656 251.109375 C 332.722656 250.992188 332.628906 250.898438 332.511719 250.898438 C 332.394531 250.898438 332.300781 250.992188 332.300781 251.109375 C 332.300781 251.226562 332.394531 251.320312 332.511719 251.320312 C 332.628906 251.320312 332.722656 251.226562 332.722656 251.109375 Z M 332.722656 251.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 331.875 250.679688 C 331.875 250.5625 331.78125 250.46875 331.664062 250.46875 C 331.546875 250.46875 331.453125 250.5625 331.453125 250.679688 C 331.453125 250.796875 331.546875 250.890625 331.664062 250.890625 C 331.78125 250.890625 331.875 250.796875 331.875 250.679688 Z M 331.875 250.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 330.425781 248.105469 C 330.425781 247.988281 330.332031 247.894531 330.214844 247.894531 C 330.097656 247.894531 330.003906 247.988281 330.003906 248.105469 C 330.003906 248.222656 330.097656 248.316406 330.214844 248.316406 C 330.332031 248.316406 330.425781 248.222656 330.425781 248.105469 Z M 330.425781 248.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 331.464844 249.453125 C 331.464844 249.335938 331.371094 249.242188 331.253906 249.242188 C 331.136719 249.242188 331.042969 249.335938 331.042969 249.453125 C 331.042969 249.570312 331.136719 249.664062 331.253906 249.664062 C 331.371094 249.664062 331.464844 249.570312 331.464844 249.453125 Z M 331.464844 249.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 331.042969 250.332031 C 331.042969 250.214844 330.949219 250.121094 330.832031 250.121094 C 330.714844 250.121094 330.621094 250.214844 330.621094 250.332031 C 330.621094 250.449219 330.714844 250.542969 330.832031 250.542969 C 330.949219 250.542969 331.042969 250.449219 331.042969 250.332031 Z M 331.042969 250.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 332.226562 250.878906 C 332.226562 250.761719 332.132812 250.667969 332.015625 250.667969 C 331.898438 250.667969 331.804688 250.761719 331.804688 250.878906 C 331.804688 250.996094 331.898438 251.089844 332.015625 251.089844 C 332.132812 251.089844 332.226562 250.996094 332.226562 250.878906 Z M 332.226562 250.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 333.546875 250.652344 C 333.546875 250.535156 333.453125 250.441406 333.335938 250.441406 C 333.21875 250.441406 333.125 250.535156 333.125 250.652344 C 333.125 250.769531 333.21875 250.863281 333.335938 250.863281 C 333.453125 250.863281 333.546875 250.769531 333.546875 250.652344 Z M 333.546875 250.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 334.886719 252.292969 C 334.886719 252.175781 334.792969 252.082031 334.675781 252.082031 C 334.558594 252.082031 334.464844 252.175781 334.464844 252.292969 C 334.464844 252.410156 334.558594 252.503906 334.675781 252.503906 C 334.792969 252.503906 334.886719 252.410156 334.886719 252.292969 Z M 334.886719 252.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 331.980469 252.898438 C 331.980469 252.78125 331.886719 252.6875 331.769531 252.6875 C 331.652344 252.6875 331.558594 252.78125 331.558594 252.898438 C 331.558594 253.015625 331.652344 253.109375 331.769531 253.109375 C 331.886719 253.109375 331.980469 253.015625 331.980469 252.898438 Z M 331.980469 252.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 329.691406 253.648438 C 329.691406 253.53125 329.597656 253.4375 329.480469 253.4375 C 329.363281 253.4375 329.269531 253.53125 329.269531 253.648438 C 329.269531 253.765625 329.363281 253.859375 329.480469 253.859375 C 329.597656 253.859375 329.691406 253.765625 329.691406 253.648438 Z M 329.691406 253.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 329.476562 257.839844 C 329.476562 257.722656 329.382812 257.628906 329.265625 257.628906 C 329.148438 257.628906 329.054688 257.722656 329.054688 257.839844 C 329.054688 257.957031 329.148438 258.050781 329.265625 258.050781 C 329.382812 258.050781 329.476562 257.957031 329.476562 257.839844 Z M 329.476562 257.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 330.78125 256.71875 C 330.78125 256.601562 330.6875 256.507812 330.570312 256.507812 C 330.453125 256.507812 330.359375 256.601562 330.359375 256.71875 C 330.359375 256.835938 330.453125 256.929688 330.570312 256.929688 C 330.6875 256.929688 330.78125 256.835938 330.78125 256.71875 Z M 330.78125 256.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 330.625 254.984375 C 330.625 254.867188 330.53125 254.773438 330.414062 254.773438 C 330.296875 254.773438 330.203125 254.867188 330.203125 254.984375 C 330.203125 255.101562 330.296875 255.195312 330.414062 255.195312 C 330.53125 255.195312 330.625 255.101562 330.625 254.984375 Z M 330.625 254.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 328.445312 254.070312 C 328.445312 253.953125 328.351562 253.859375 328.234375 253.859375 C 328.117188 253.859375 328.023438 253.953125 328.023438 254.070312 C 328.023438 254.1875 328.117188 254.28125 328.234375 254.28125 C 328.351562 254.28125 328.445312 254.1875 328.445312 254.070312 Z M 328.445312 254.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 331.503906 253.792969 C 331.503906 253.675781 331.410156 253.582031 331.292969 253.582031 C 331.175781 253.582031 331.082031 253.675781 331.082031 253.792969 C 331.082031 253.910156 331.175781 254.003906 331.292969 254.003906 C 331.410156 254.003906 331.503906 253.910156 331.503906 253.792969 Z M 331.503906 253.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 332.417969 252.984375 C 332.417969 252.867188 332.324219 252.773438 332.207031 252.773438 C 332.089844 252.773438 331.996094 252.867188 331.996094 252.984375 C 331.996094 253.101562 332.089844 253.195312 332.207031 253.195312 C 332.324219 253.195312 332.417969 253.101562 332.417969 252.984375 Z M 332.417969 252.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 330.40625 254.417969 C 330.40625 254.300781 330.3125 254.207031 330.195312 254.207031 C 330.078125 254.207031 329.984375 254.300781 329.984375 254.417969 C 329.984375 254.535156 330.078125 254.628906 330.195312 254.628906 C 330.3125 254.628906 330.40625 254.535156 330.40625 254.417969 Z M 330.40625 254.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 329.570312 253.214844 C 329.570312 253.097656 329.476562 253.003906 329.359375 253.003906 C 329.242188 253.003906 329.148438 253.097656 329.148438 253.214844 C 329.148438 253.332031 329.242188 253.425781 329.359375 253.425781 C 329.476562 253.425781 329.570312 253.332031 329.570312 253.214844 Z M 329.570312 253.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 328.542969 253.769531 C 328.542969 253.652344 328.449219 253.558594 328.332031 253.558594 C 328.214844 253.558594 328.121094 253.652344 328.121094 253.769531 C 328.121094 253.886719 328.214844 253.980469 328.332031 253.980469 C 328.449219 253.980469 328.542969 253.886719 328.542969 253.769531 Z M 328.542969 253.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 330.585938 255.480469 C 330.585938 255.363281 330.492188 255.269531 330.375 255.269531 C 330.257812 255.269531 330.164062 255.363281 330.164062 255.480469 C 330.164062 255.597656 330.257812 255.691406 330.375 255.691406 C 330.492188 255.691406 330.585938 255.597656 330.585938 255.480469 Z M 330.585938 255.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 328.773438 253.289062 C 328.773438 253.171875 328.679688 253.078125 328.5625 253.078125 C 328.445312 253.078125 328.351562 253.171875 328.351562 253.289062 C 328.351562 253.40625 328.445312 253.5 328.5625 253.5 C 328.679688 253.5 328.773438 253.40625 328.773438 253.289062 Z M 328.773438 253.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.898438 252.113281 C 327.898438 251.996094 327.804688 251.902344 327.6875 251.902344 C 327.570312 251.902344 327.476562 251.996094 327.476562 252.113281 C 327.476562 252.230469 327.570312 252.324219 327.6875 252.324219 C 327.804688 252.324219 327.898438 252.230469 327.898438 252.113281 Z M 327.898438 252.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.398438 254.476562 C 325.398438 254.359375 325.304688 254.265625 325.1875 254.265625 C 325.070312 254.265625 324.976562 254.359375 324.976562 254.476562 C 324.976562 254.59375 325.070312 254.6875 325.1875 254.6875 C 325.304688 254.6875 325.398438 254.59375 325.398438 254.476562 Z M 325.398438 254.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 328.480469 252.886719 C 328.480469 252.769531 328.386719 252.675781 328.269531 252.675781 C 328.152344 252.675781 328.058594 252.769531 328.058594 252.886719 C 328.058594 253.003906 328.152344 253.097656 328.269531 253.097656 C 328.386719 253.097656 328.480469 253.003906 328.480469 252.886719 Z M 328.480469 252.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.070312 251.992188 C 327.070312 251.875 326.976562 251.78125 326.859375 251.78125 C 326.742188 251.78125 326.648438 251.875 326.648438 251.992188 C 326.648438 252.109375 326.742188 252.203125 326.859375 252.203125 C 326.976562 252.203125 327.070312 252.109375 327.070312 251.992188 Z M 327.070312 251.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 329.367188 254.515625 C 329.367188 254.398438 329.273438 254.304688 329.15625 254.304688 C 329.039062 254.304688 328.945312 254.398438 328.945312 254.515625 C 328.945312 254.632812 329.039062 254.726562 329.15625 254.726562 C 329.273438 254.726562 329.367188 254.632812 329.367188 254.515625 Z M 329.367188 254.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.753906 255.09375 C 327.753906 254.976562 327.660156 254.882812 327.542969 254.882812 C 327.425781 254.882812 327.332031 254.976562 327.332031 255.09375 C 327.332031 255.210938 327.425781 255.304688 327.542969 255.304688 C 327.660156 255.304688 327.753906 255.210938 327.753906 255.09375 Z M 327.753906 255.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 329.183594 255.921875 C 329.183594 255.804688 329.089844 255.710938 328.972656 255.710938 C 328.855469 255.710938 328.761719 255.804688 328.761719 255.921875 C 328.761719 256.039062 328.855469 256.132812 328.972656 256.132812 C 329.089844 256.132812 329.183594 256.039062 329.183594 255.921875 Z M 329.183594 255.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 329.328125 256.636719 C 329.328125 256.519531 329.234375 256.425781 329.117188 256.425781 C 329 256.425781 328.90625 256.519531 328.90625 256.636719 C 328.90625 256.753906 329 256.847656 329.117188 256.847656 C 329.234375 256.847656 329.328125 256.753906 329.328125 256.636719 Z M 329.328125 256.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 328.117188 257.875 C 328.117188 257.757812 328.023438 257.664062 327.90625 257.664062 C 327.789062 257.664062 327.695312 257.757812 327.695312 257.875 C 327.695312 257.992188 327.789062 258.085938 327.90625 258.085938 C 328.023438 258.085938 328.117188 257.992188 328.117188 257.875 Z M 328.117188 257.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.390625 258.320312 C 323.390625 258.203125 323.296875 258.109375 323.179688 258.109375 C 323.0625 258.109375 322.96875 258.203125 322.96875 258.320312 C 322.96875 258.4375 323.0625 258.53125 323.179688 258.53125 C 323.296875 258.53125 323.390625 258.4375 323.390625 258.320312 Z M 323.390625 258.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.679688 256.53125 C 324.679688 256.414062 324.585938 256.320312 324.46875 256.320312 C 324.351562 256.320312 324.257812 256.414062 324.257812 256.53125 C 324.257812 256.648438 324.351562 256.742188 324.46875 256.742188 C 324.585938 256.742188 324.679688 256.648438 324.679688 256.53125 Z M 324.679688 256.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.183594 258.582031 C 325.183594 258.464844 325.089844 258.371094 324.972656 258.371094 C 324.855469 258.371094 324.761719 258.464844 324.761719 258.582031 C 324.761719 258.699219 324.855469 258.792969 324.972656 258.792969 C 325.089844 258.792969 325.183594 258.699219 325.183594 258.582031 Z M 325.183594 258.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 328.082031 257.796875 C 328.082031 257.679688 327.988281 257.585938 327.871094 257.585938 C 327.753906 257.585938 327.660156 257.679688 327.660156 257.796875 C 327.660156 257.914062 327.753906 258.007812 327.871094 258.007812 C 327.988281 258.007812 328.082031 257.914062 328.082031 257.796875 Z M 328.082031 257.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 328.613281 262.824219 C 328.613281 262.707031 328.519531 262.613281 328.402344 262.613281 C 328.285156 262.613281 328.191406 262.707031 328.191406 262.824219 C 328.191406 262.941406 328.285156 263.035156 328.402344 263.035156 C 328.519531 263.035156 328.613281 262.941406 328.613281 262.824219 Z M 328.613281 262.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.652344 264.167969 C 325.652344 264.050781 325.558594 263.957031 325.441406 263.957031 C 325.324219 263.957031 325.230469 264.050781 325.230469 264.167969 C 325.230469 264.285156 325.324219 264.378906 325.441406 264.378906 C 325.558594 264.378906 325.652344 264.285156 325.652344 264.167969 Z M 325.652344 264.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.695312 264.140625 C 322.695312 264.023438 322.601562 263.929688 322.484375 263.929688 C 322.367188 263.929688 322.273438 264.023438 322.273438 264.140625 C 322.273438 264.257812 322.367188 264.351562 322.484375 264.351562 C 322.601562 264.351562 322.695312 264.257812 322.695312 264.140625 Z M 322.695312 264.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 320.1875 261.535156 C 320.1875 261.417969 320.09375 261.324219 319.976562 261.324219 C 319.859375 261.324219 319.765625 261.417969 319.765625 261.535156 C 319.765625 261.652344 319.859375 261.746094 319.976562 261.746094 C 320.09375 261.746094 320.1875 261.652344 320.1875 261.535156 Z M 320.1875 261.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.179688 260.933594 C 321.179688 260.816406 321.085938 260.722656 320.96875 260.722656 C 320.851562 260.722656 320.757812 260.816406 320.757812 260.933594 C 320.757812 261.050781 320.851562 261.144531 320.96875 261.144531 C 321.085938 261.144531 321.179688 261.050781 321.179688 260.933594 Z M 321.179688 260.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.730469 262.382812 C 321.730469 262.265625 321.636719 262.171875 321.519531 262.171875 C 321.402344 262.171875 321.308594 262.265625 321.308594 262.382812 C 321.308594 262.5 321.402344 262.59375 321.519531 262.59375 C 321.636719 262.59375 321.730469 262.5 321.730469 262.382812 Z M 321.730469 262.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.507812 262.550781 C 323.507812 262.433594 323.414062 262.339844 323.296875 262.339844 C 323.179688 262.339844 323.085938 262.433594 323.085938 262.550781 C 323.085938 262.667969 323.179688 262.761719 323.296875 262.761719 C 323.414062 262.761719 323.507812 262.667969 323.507812 262.550781 Z M 323.507812 262.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 330.03125 263.726562 C 330.03125 263.609375 329.9375 263.515625 329.820312 263.515625 C 329.703125 263.515625 329.609375 263.609375 329.609375 263.726562 C 329.609375 263.84375 329.703125 263.9375 329.820312 263.9375 C 329.9375 263.9375 330.03125 263.84375 330.03125 263.726562 Z M 330.03125 263.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 332.332031 263.027344 C 332.332031 262.910156 332.238281 262.816406 332.121094 262.816406 C 332.003906 262.816406 331.910156 262.910156 331.910156 263.027344 C 331.910156 263.144531 332.003906 263.238281 332.121094 263.238281 C 332.238281 263.238281 332.332031 263.144531 332.332031 263.027344 Z M 332.332031 263.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 330.828125 262.566406 C 330.828125 262.449219 330.734375 262.355469 330.617188 262.355469 C 330.5 262.355469 330.40625 262.449219 330.40625 262.566406 C 330.40625 262.683594 330.5 262.777344 330.617188 262.777344 C 330.734375 262.777344 330.828125 262.683594 330.828125 262.566406 Z M 330.828125 262.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 333.324219 262.105469 C 333.324219 261.988281 333.230469 261.894531 333.113281 261.894531 C 332.996094 261.894531 332.902344 261.988281 332.902344 262.105469 C 332.902344 262.222656 332.996094 262.316406 333.113281 262.316406 C 333.230469 262.316406 333.324219 262.222656 333.324219 262.105469 Z M 333.324219 262.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 332.527344 261.859375 C 332.527344 261.742188 332.433594 261.648438 332.316406 261.648438 C 332.199219 261.648438 332.105469 261.742188 332.105469 261.859375 C 332.105469 261.976562 332.199219 262.070312 332.316406 262.070312 C 332.433594 262.070312 332.527344 261.976562 332.527344 261.859375 Z M 332.527344 261.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 329.304688 263.296875 C 329.304688 263.179688 329.210938 263.085938 329.09375 263.085938 C 328.976562 263.085938 328.882812 263.179688 328.882812 263.296875 C 328.882812 263.414062 328.976562 263.507812 329.09375 263.507812 C 329.210938 263.507812 329.304688 263.414062 329.304688 263.296875 Z M 329.304688 263.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 328.125 263.410156 C 328.125 263.292969 328.03125 263.199219 327.914062 263.199219 C 327.796875 263.199219 327.703125 263.292969 327.703125 263.410156 C 327.703125 263.527344 327.796875 263.621094 327.914062 263.621094 C 328.03125 263.621094 328.125 263.527344 328.125 263.410156 Z M 328.125 263.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 331.492188 261.488281 C 331.492188 261.371094 331.398438 261.277344 331.28125 261.277344 C 331.164062 261.277344 331.070312 261.371094 331.070312 261.488281 C 331.070312 261.605469 331.164062 261.699219 331.28125 261.699219 C 331.398438 261.699219 331.492188 261.605469 331.492188 261.488281 Z M 331.492188 261.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.554688 260.363281 C 327.554688 260.246094 327.460938 260.152344 327.34375 260.152344 C 327.226562 260.152344 327.132812 260.246094 327.132812 260.363281 C 327.132812 260.480469 327.226562 260.574219 327.34375 260.574219 C 327.460938 260.574219 327.554688 260.480469 327.554688 260.363281 Z M 327.554688 260.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.070312 261.800781 C 325.070312 261.683594 324.976562 261.589844 324.859375 261.589844 C 324.742188 261.589844 324.648438 261.683594 324.648438 261.800781 C 324.648438 261.917969 324.742188 262.011719 324.859375 262.011719 C 324.976562 262.011719 325.070312 261.917969 325.070312 261.800781 Z M 325.070312 261.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.054688 261.402344 C 323.054688 261.285156 322.960938 261.191406 322.84375 261.191406 C 322.726562 261.191406 322.632812 261.285156 322.632812 261.402344 C 322.632812 261.519531 322.726562 261.613281 322.84375 261.613281 C 322.960938 261.613281 323.054688 261.519531 323.054688 261.402344 Z M 323.054688 261.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.238281 263.507812 C 324.238281 263.390625 324.144531 263.296875 324.027344 263.296875 C 323.910156 263.296875 323.816406 263.390625 323.816406 263.507812 C 323.816406 263.625 323.910156 263.71875 324.027344 263.71875 C 324.144531 263.71875 324.238281 263.625 324.238281 263.507812 Z M 324.238281 263.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.667969 264.128906 C 323.667969 264.011719 323.574219 263.917969 323.457031 263.917969 C 323.339844 263.917969 323.246094 264.011719 323.246094 264.128906 C 323.246094 264.246094 323.339844 264.339844 323.457031 264.339844 C 323.574219 264.339844 323.667969 264.246094 323.667969 264.128906 Z M 323.667969 264.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.921875 259.550781 C 324.921875 259.433594 324.828125 259.339844 324.710938 259.339844 C 324.59375 259.339844 324.5 259.433594 324.5 259.550781 C 324.5 259.667969 324.59375 259.761719 324.710938 259.761719 C 324.828125 259.761719 324.921875 259.667969 324.921875 259.550781 Z M 324.921875 259.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.441406 258.835938 C 323.441406 258.71875 323.347656 258.625 323.230469 258.625 C 323.113281 258.625 323.019531 258.71875 323.019531 258.835938 C 323.019531 258.953125 323.113281 259.046875 323.230469 259.046875 C 323.347656 259.046875 323.441406 258.953125 323.441406 258.835938 Z M 323.441406 258.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.570312 256.90625 C 324.570312 256.789062 324.476562 256.695312 324.359375 256.695312 C 324.242188 256.695312 324.148438 256.789062 324.148438 256.90625 C 324.148438 257.023438 324.242188 257.117188 324.359375 257.117188 C 324.476562 257.117188 324.570312 257.023438 324.570312 256.90625 Z M 324.570312 256.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 328.90625 254.960938 C 328.90625 254.84375 328.8125 254.75 328.695312 254.75 C 328.578125 254.75 328.484375 254.84375 328.484375 254.960938 C 328.484375 255.078125 328.578125 255.171875 328.695312 255.171875 C 328.8125 255.171875 328.90625 255.078125 328.90625 254.960938 Z M 328.90625 254.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.886719 258.292969 C 327.886719 258.175781 327.792969 258.082031 327.675781 258.082031 C 327.558594 258.082031 327.464844 258.175781 327.464844 258.292969 C 327.464844 258.410156 327.558594 258.503906 327.675781 258.503906 C 327.792969 258.503906 327.886719 258.410156 327.886719 258.292969 Z M 327.886719 258.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.195312 253.535156 C 325.195312 253.417969 325.101562 253.324219 324.984375 253.324219 C 324.867188 253.324219 324.773438 253.417969 324.773438 253.535156 C 324.773438 253.652344 324.867188 253.746094 324.984375 253.746094 C 325.101562 253.746094 325.195312 253.652344 325.195312 253.535156 Z M 325.195312 253.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.761719 254.296875 C 321.761719 254.179688 321.667969 254.085938 321.550781 254.085938 C 321.433594 254.085938 321.339844 254.179688 321.339844 254.296875 C 321.339844 254.414062 321.433594 254.507812 321.550781 254.507812 C 321.667969 254.507812 321.761719 254.414062 321.761719 254.296875 Z M 321.761719 254.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.585938 252.449219 C 322.585938 252.332031 322.492188 252.238281 322.375 252.238281 C 322.257812 252.238281 322.164062 252.332031 322.164062 252.449219 C 322.164062 252.566406 322.257812 252.660156 322.375 252.660156 C 322.492188 252.660156 322.585938 252.566406 322.585938 252.449219 Z M 322.585938 252.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.085938 256.335938 C 324.085938 256.21875 323.992188 256.125 323.875 256.125 C 323.757812 256.125 323.664062 256.21875 323.664062 256.335938 C 323.664062 256.453125 323.757812 256.546875 323.875 256.546875 C 323.992188 256.546875 324.085938 256.453125 324.085938 256.335938 Z M 324.085938 256.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.019531 251.851562 C 324.019531 251.734375 323.925781 251.640625 323.808594 251.640625 C 323.691406 251.640625 323.597656 251.734375 323.597656 251.851562 C 323.597656 251.96875 323.691406 252.0625 323.808594 252.0625 C 323.925781 252.0625 324.019531 251.96875 324.019531 251.851562 Z M 324.019531 251.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.609375 246.617188 C 322.609375 246.5 322.515625 246.40625 322.398438 246.40625 C 322.28125 246.40625 322.1875 246.5 322.1875 246.617188 C 322.1875 246.734375 322.28125 246.828125 322.398438 246.828125 C 322.515625 246.828125 322.609375 246.734375 322.609375 246.617188 Z M 322.609375 246.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.988281 243.085938 C 326.988281 242.96875 326.894531 242.875 326.777344 242.875 C 326.660156 242.875 326.566406 242.96875 326.566406 243.085938 C 326.566406 243.203125 326.660156 243.296875 326.777344 243.296875 C 326.894531 243.296875 326.988281 243.203125 326.988281 243.085938 Z M 326.988281 243.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.25 243.054688 C 323.25 242.9375 323.15625 242.84375 323.039062 242.84375 C 322.921875 242.84375 322.828125 242.9375 322.828125 243.054688 C 322.828125 243.171875 322.921875 243.265625 323.039062 243.265625 C 323.15625 243.265625 323.25 243.171875 323.25 243.054688 Z M 323.25 243.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.71875 244.074219 C 322.71875 243.957031 322.625 243.863281 322.507812 243.863281 C 322.390625 243.863281 322.296875 243.957031 322.296875 244.074219 C 322.296875 244.191406 322.390625 244.285156 322.507812 244.285156 C 322.625 244.285156 322.71875 244.191406 322.71875 244.074219 Z M 322.71875 244.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.140625 241.285156 C 324.140625 241.167969 324.046875 241.074219 323.929688 241.074219 C 323.8125 241.074219 323.71875 241.167969 323.71875 241.285156 C 323.71875 241.402344 323.8125 241.496094 323.929688 241.496094 C 324.046875 241.496094 324.140625 241.402344 324.140625 241.285156 Z M 324.140625 241.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.175781 241.585938 C 326.175781 241.46875 326.082031 241.375 325.964844 241.375 C 325.847656 241.375 325.753906 241.46875 325.753906 241.585938 C 325.753906 241.703125 325.847656 241.796875 325.964844 241.796875 C 326.082031 241.796875 326.175781 241.703125 326.175781 241.585938 Z M 326.175781 241.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.261719 241.523438 C 325.261719 241.40625 325.167969 241.3125 325.050781 241.3125 C 324.933594 241.3125 324.839844 241.40625 324.839844 241.523438 C 324.839844 241.640625 324.933594 241.734375 325.050781 241.734375 C 325.167969 241.734375 325.261719 241.640625 325.261719 241.523438 Z M 325.261719 241.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.742188 239.746094 C 324.742188 239.628906 324.648438 239.535156 324.53125 239.535156 C 324.414062 239.535156 324.320312 239.628906 324.320312 239.746094 C 324.320312 239.863281 324.414062 239.957031 324.53125 239.957031 C 324.648438 239.957031 324.742188 239.863281 324.742188 239.746094 Z M 324.742188 239.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.820312 241.679688 C 324.820312 241.5625 324.726562 241.46875 324.609375 241.46875 C 324.492188 241.46875 324.398438 241.5625 324.398438 241.679688 C 324.398438 241.796875 324.492188 241.890625 324.609375 241.890625 C 324.726562 241.890625 324.820312 241.796875 324.820312 241.679688 Z M 324.820312 241.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.292969 243.375 C 323.292969 243.257812 323.199219 243.164062 323.082031 243.164062 C 322.964844 243.164062 322.871094 243.257812 322.871094 243.375 C 322.871094 243.492188 322.964844 243.585938 323.082031 243.585938 C 323.199219 243.585938 323.292969 243.492188 323.292969 243.375 Z M 323.292969 243.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.304688 241.613281 C 324.304688 241.496094 324.210938 241.402344 324.09375 241.402344 C 323.976562 241.402344 323.882812 241.496094 323.882812 241.613281 C 323.882812 241.730469 323.976562 241.824219 324.09375 241.824219 C 324.210938 241.824219 324.304688 241.730469 324.304688 241.613281 Z M 324.304688 241.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.996094 242.871094 C 327.996094 242.753906 327.902344 242.660156 327.785156 242.660156 C 327.667969 242.660156 327.574219 242.753906 327.574219 242.871094 C 327.574219 242.988281 327.667969 243.082031 327.785156 243.082031 C 327.902344 243.082031 327.996094 242.988281 327.996094 242.871094 Z M 327.996094 242.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 329.195312 244.175781 C 329.195312 244.058594 329.101562 243.964844 328.984375 243.964844 C 328.867188 243.964844 328.773438 244.058594 328.773438 244.175781 C 328.773438 244.292969 328.867188 244.386719 328.984375 244.386719 C 329.101562 244.386719 329.195312 244.292969 329.195312 244.175781 Z M 329.195312 244.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.933594 244.113281 C 327.933594 243.996094 327.839844 243.902344 327.722656 243.902344 C 327.605469 243.902344 327.511719 243.996094 327.511719 244.113281 C 327.511719 244.230469 327.605469 244.324219 327.722656 244.324219 C 327.839844 244.324219 327.933594 244.230469 327.933594 244.113281 Z M 327.933594 244.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 328.933594 243.226562 C 328.933594 243.109375 328.839844 243.015625 328.722656 243.015625 C 328.605469 243.015625 328.511719 243.109375 328.511719 243.226562 C 328.511719 243.34375 328.605469 243.4375 328.722656 243.4375 C 328.839844 243.4375 328.933594 243.34375 328.933594 243.226562 Z M 328.933594 243.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.496094 245.050781 C 322.496094 244.933594 322.402344 244.839844 322.285156 244.839844 C 322.167969 244.839844 322.074219 244.933594 322.074219 245.050781 C 322.074219 245.167969 322.167969 245.261719 322.285156 245.261719 C 322.402344 245.261719 322.496094 245.167969 322.496094 245.050781 Z M 322.496094 245.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.761719 243.816406 C 321.761719 243.699219 321.667969 243.605469 321.550781 243.605469 C 321.433594 243.605469 321.339844 243.699219 321.339844 243.816406 C 321.339844 243.933594 321.433594 244.027344 321.550781 244.027344 C 321.667969 244.027344 321.761719 243.933594 321.761719 243.816406 Z M 321.761719 243.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.707031 246.828125 C 324.707031 246.710938 324.613281 246.617188 324.496094 246.617188 C 324.378906 246.617188 324.285156 246.710938 324.285156 246.828125 C 324.285156 246.945312 324.378906 247.039062 324.496094 247.039062 C 324.613281 247.039062 324.707031 246.945312 324.707031 246.828125 Z M 324.707031 246.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.253906 251.21875 C 326.253906 251.101562 326.160156 251.007812 326.042969 251.007812 C 325.925781 251.007812 325.832031 251.101562 325.832031 251.21875 C 325.832031 251.335938 325.925781 251.429688 326.042969 251.429688 C 326.160156 251.429688 326.253906 251.335938 326.253906 251.21875 Z M 326.253906 251.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.703125 251.695312 C 322.703125 251.578125 322.609375 251.484375 322.492188 251.484375 C 322.375 251.484375 322.28125 251.578125 322.28125 251.695312 C 322.28125 251.8125 322.375 251.90625 322.492188 251.90625 C 322.609375 251.90625 322.703125 251.8125 322.703125 251.695312 Z M 322.703125 251.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 320.75 251.539062 C 320.75 251.421875 320.65625 251.328125 320.539062 251.328125 C 320.421875 251.328125 320.328125 251.421875 320.328125 251.539062 C 320.328125 251.65625 320.421875 251.75 320.539062 251.75 C 320.65625 251.75 320.75 251.65625 320.75 251.539062 Z M 320.75 251.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.667969 247.371094 C 322.667969 247.253906 322.574219 247.160156 322.457031 247.160156 C 322.339844 247.160156 322.246094 247.253906 322.246094 247.371094 C 322.246094 247.488281 322.339844 247.582031 322.457031 247.582031 C 322.574219 247.582031 322.667969 247.488281 322.667969 247.371094 Z M 322.667969 247.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.273438 248.515625 C 323.273438 248.398438 323.179688 248.304688 323.0625 248.304688 C 322.945312 248.304688 322.851562 248.398438 322.851562 248.515625 C 322.851562 248.632812 322.945312 248.726562 323.0625 248.726562 C 323.179688 248.726562 323.273438 248.632812 323.273438 248.515625 Z M 323.273438 248.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.882812 245.824219 C 323.882812 245.707031 323.789062 245.613281 323.671875 245.613281 C 323.554688 245.613281 323.460938 245.707031 323.460938 245.824219 C 323.460938 245.941406 323.554688 246.035156 323.671875 246.035156 C 323.789062 246.035156 323.882812 245.941406 323.882812 245.824219 Z M 323.882812 245.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.277344 244.1875 C 326.277344 244.070312 326.183594 243.976562 326.066406 243.976562 C 325.949219 243.976562 325.855469 244.070312 325.855469 244.1875 C 325.855469 244.304688 325.949219 244.398438 326.066406 244.398438 C 326.183594 244.398438 326.277344 244.304688 326.277344 244.1875 Z M 326.277344 244.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.445312 242.902344 C 327.445312 242.785156 327.351562 242.691406 327.234375 242.691406 C 327.117188 242.691406 327.023438 242.785156 327.023438 242.902344 C 327.023438 243.019531 327.117188 243.113281 327.234375 243.113281 C 327.351562 243.113281 327.445312 243.019531 327.445312 242.902344 Z M 327.445312 242.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 328.800781 238.757812 C 328.800781 238.640625 328.707031 238.546875 328.589844 238.546875 C 328.472656 238.546875 328.378906 238.640625 328.378906 238.757812 C 328.378906 238.875 328.472656 238.96875 328.589844 238.96875 C 328.707031 238.96875 328.800781 238.875 328.800781 238.757812 Z M 328.800781 238.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 328.972656 239.101562 C 328.972656 238.984375 328.878906 238.890625 328.761719 238.890625 C 328.644531 238.890625 328.550781 238.984375 328.550781 239.101562 C 328.550781 239.21875 328.644531 239.3125 328.761719 239.3125 C 328.878906 239.3125 328.972656 239.21875 328.972656 239.101562 Z M 328.972656 239.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.417969 239.953125 C 327.417969 239.835938 327.324219 239.742188 327.207031 239.742188 C 327.089844 239.742188 326.996094 239.835938 326.996094 239.953125 C 326.996094 240.070312 327.089844 240.164062 327.207031 240.164062 C 327.324219 240.164062 327.417969 240.070312 327.417969 239.953125 Z M 327.417969 239.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.777344 239.117188 C 323.777344 239 323.683594 238.90625 323.566406 238.90625 C 323.449219 238.90625 323.355469 239 323.355469 239.117188 C 323.355469 239.234375 323.449219 239.328125 323.566406 239.328125 C 323.683594 239.328125 323.777344 239.234375 323.777344 239.117188 Z M 323.777344 239.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.820312 238.570312 C 323.820312 238.453125 323.726562 238.359375 323.609375 238.359375 C 323.492188 238.359375 323.398438 238.453125 323.398438 238.570312 C 323.398438 238.6875 323.492188 238.78125 323.609375 238.78125 C 323.726562 238.78125 323.820312 238.6875 323.820312 238.570312 Z M 323.820312 238.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.871094 239.445312 C 323.871094 239.328125 323.777344 239.234375 323.660156 239.234375 C 323.542969 239.234375 323.449219 239.328125 323.449219 239.445312 C 323.449219 239.5625 323.542969 239.65625 323.660156 239.65625 C 323.777344 239.65625 323.871094 239.5625 323.871094 239.445312 Z M 323.871094 239.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.808594 240.742188 C 323.808594 240.625 323.714844 240.53125 323.597656 240.53125 C 323.480469 240.53125 323.386719 240.625 323.386719 240.742188 C 323.386719 240.859375 323.480469 240.953125 323.597656 240.953125 C 323.714844 240.953125 323.808594 240.859375 323.808594 240.742188 Z M 323.808594 240.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.628906 239.800781 C 321.628906 239.683594 321.535156 239.589844 321.417969 239.589844 C 321.300781 239.589844 321.207031 239.683594 321.207031 239.800781 C 321.207031 239.917969 321.300781 240.011719 321.417969 240.011719 C 321.535156 240.011719 321.628906 239.917969 321.628906 239.800781 Z M 321.628906 239.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.460938 238.648438 C 317.460938 238.53125 317.367188 238.4375 317.25 238.4375 C 317.132812 238.4375 317.039062 238.53125 317.039062 238.648438 C 317.039062 238.765625 317.132812 238.859375 317.25 238.859375 C 317.367188 238.859375 317.460938 238.765625 317.460938 238.648438 Z M 317.460938 238.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.722656 239.15625 C 315.722656 239.039062 315.628906 238.945312 315.511719 238.945312 C 315.394531 238.945312 315.300781 239.039062 315.300781 239.15625 C 315.300781 239.273438 315.394531 239.367188 315.511719 239.367188 C 315.628906 239.367188 315.722656 239.273438 315.722656 239.15625 Z M 315.722656 239.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.835938 237.109375 C 312.835938 236.992188 312.742188 236.898438 312.625 236.898438 C 312.507812 236.898438 312.414062 236.992188 312.414062 237.109375 C 312.414062 237.226562 312.507812 237.320312 312.625 237.320312 C 312.742188 237.320312 312.835938 237.226562 312.835938 237.109375 Z M 312.835938 237.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.457031 235.765625 C 310.457031 235.648438 310.363281 235.554688 310.246094 235.554688 C 310.128906 235.554688 310.035156 235.648438 310.035156 235.765625 C 310.035156 235.882812 310.128906 235.976562 310.246094 235.976562 C 310.363281 235.976562 310.457031 235.882812 310.457031 235.765625 Z M 310.457031 235.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.621094 239.433594 C 307.621094 239.316406 307.527344 239.222656 307.410156 239.222656 C 307.292969 239.222656 307.199219 239.316406 307.199219 239.433594 C 307.199219 239.550781 307.292969 239.644531 307.410156 239.644531 C 307.527344 239.644531 307.621094 239.550781 307.621094 239.433594 Z M 307.621094 239.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.40625 236.90625 C 311.40625 236.789062 311.3125 236.695312 311.195312 236.695312 C 311.078125 236.695312 310.984375 236.789062 310.984375 236.90625 C 310.984375 237.023438 311.078125 237.117188 311.195312 237.117188 C 311.3125 237.117188 311.40625 237.023438 311.40625 236.90625 Z M 311.40625 236.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.636719 235.378906 C 309.636719 235.261719 309.542969 235.167969 309.425781 235.167969 C 309.308594 235.167969 309.214844 235.261719 309.214844 235.378906 C 309.214844 235.496094 309.308594 235.589844 309.425781 235.589844 C 309.542969 235.589844 309.636719 235.496094 309.636719 235.378906 Z M 309.636719 235.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 311.152344 234.359375 C 311.152344 234.242188 311.058594 234.148438 310.941406 234.148438 C 310.824219 234.148438 310.730469 234.242188 310.730469 234.359375 C 310.730469 234.476562 310.824219 234.570312 310.941406 234.570312 C 311.058594 234.570312 311.152344 234.476562 311.152344 234.359375 Z M 311.152344 234.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.378906 232.441406 C 310.378906 232.324219 310.285156 232.230469 310.167969 232.230469 C 310.050781 232.230469 309.957031 232.324219 309.957031 232.441406 C 309.957031 232.558594 310.050781 232.652344 310.167969 232.652344 C 310.285156 232.652344 310.378906 232.558594 310.378906 232.441406 Z M 310.378906 232.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.878906 232.664062 C 310.878906 232.546875 310.785156 232.453125 310.667969 232.453125 C 310.550781 232.453125 310.457031 232.546875 310.457031 232.664062 C 310.457031 232.78125 310.550781 232.875 310.667969 232.875 C 310.785156 232.875 310.878906 232.78125 310.878906 232.664062 Z M 310.878906 232.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.480469 232.046875 C 309.480469 231.929688 309.386719 231.835938 309.269531 231.835938 C 309.152344 231.835938 309.058594 231.929688 309.058594 232.046875 C 309.058594 232.164062 309.152344 232.257812 309.269531 232.257812 C 309.386719 232.257812 309.480469 232.164062 309.480469 232.046875 Z M 309.480469 232.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.011719 231.613281 C 307.011719 231.496094 306.917969 231.402344 306.800781 231.402344 C 306.683594 231.402344 306.589844 231.496094 306.589844 231.613281 C 306.589844 231.730469 306.683594 231.824219 306.800781 231.824219 C 306.917969 231.824219 307.011719 231.730469 307.011719 231.613281 Z M 307.011719 231.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.917969 229.617188 C 305.917969 229.5 305.824219 229.40625 305.707031 229.40625 C 305.589844 229.40625 305.496094 229.5 305.496094 229.617188 C 305.496094 229.734375 305.589844 229.828125 305.707031 229.828125 C 305.824219 229.828125 305.917969 229.734375 305.917969 229.617188 Z M 305.917969 229.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.863281 233.585938 C 307.863281 233.46875 307.769531 233.375 307.652344 233.375 C 307.535156 233.375 307.441406 233.46875 307.441406 233.585938 C 307.441406 233.703125 307.535156 233.796875 307.652344 233.796875 C 307.769531 233.796875 307.863281 233.703125 307.863281 233.585938 Z M 307.863281 233.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.257812 234.476562 C 306.257812 234.359375 306.164062 234.265625 306.046875 234.265625 C 305.929688 234.265625 305.835938 234.359375 305.835938 234.476562 C 305.835938 234.59375 305.929688 234.6875 306.046875 234.6875 C 306.164062 234.6875 306.257812 234.59375 306.257812 234.476562 Z M 306.257812 234.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.375 235.027344 C 307.375 234.910156 307.28125 234.816406 307.164062 234.816406 C 307.046875 234.816406 306.953125 234.910156 306.953125 235.027344 C 306.953125 235.144531 307.046875 235.238281 307.164062 235.238281 C 307.28125 235.238281 307.375 235.144531 307.375 235.027344 Z M 307.375 235.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.71875 237.378906 C 303.71875 237.261719 303.625 237.167969 303.507812 237.167969 C 303.390625 237.167969 303.296875 237.261719 303.296875 237.378906 C 303.296875 237.496094 303.390625 237.589844 303.507812 237.589844 C 303.625 237.589844 303.71875 237.496094 303.71875 237.378906 Z M 303.71875 237.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.332031 235.152344 C 304.332031 235.035156 304.238281 234.941406 304.121094 234.941406 C 304.003906 234.941406 303.910156 235.035156 303.910156 235.152344 C 303.910156 235.269531 304.003906 235.363281 304.121094 235.363281 C 304.238281 235.363281 304.332031 235.269531 304.332031 235.152344 Z M 304.332031 235.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.363281 238.734375 C 303.363281 238.617188 303.269531 238.523438 303.152344 238.523438 C 303.035156 238.523438 302.941406 238.617188 302.941406 238.734375 C 302.941406 238.851562 303.035156 238.945312 303.152344 238.945312 C 303.269531 238.945312 303.363281 238.851562 303.363281 238.734375 Z M 303.363281 238.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.914062 237.40625 C 306.914062 237.289062 306.820312 237.195312 306.703125 237.195312 C 306.585938 237.195312 306.492188 237.289062 306.492188 237.40625 C 306.492188 237.523438 306.585938 237.617188 306.703125 237.617188 C 306.820312 237.617188 306.914062 237.523438 306.914062 237.40625 Z M 306.914062 237.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.273438 235.554688 C 305.273438 235.4375 305.179688 235.34375 305.0625 235.34375 C 304.945312 235.34375 304.851562 235.4375 304.851562 235.554688 C 304.851562 235.671875 304.945312 235.765625 305.0625 235.765625 C 305.179688 235.765625 305.273438 235.671875 305.273438 235.554688 Z M 305.273438 235.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.933594 235.773438 C 304.933594 235.65625 304.839844 235.5625 304.722656 235.5625 C 304.605469 235.5625 304.511719 235.65625 304.511719 235.773438 C 304.511719 235.890625 304.605469 235.984375 304.722656 235.984375 C 304.839844 235.984375 304.933594 235.890625 304.933594 235.773438 Z M 304.933594 235.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.625 231.507812 C 304.625 231.390625 304.53125 231.296875 304.414062 231.296875 C 304.296875 231.296875 304.203125 231.390625 304.203125 231.507812 C 304.203125 231.625 304.296875 231.71875 304.414062 231.71875 C 304.53125 231.71875 304.625 231.625 304.625 231.507812 Z M 304.625 231.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.808594 227.019531 C 306.808594 226.902344 306.714844 226.808594 306.597656 226.808594 C 306.480469 226.808594 306.386719 226.902344 306.386719 227.019531 C 306.386719 227.136719 306.480469 227.230469 306.597656 227.230469 C 306.714844 227.230469 306.808594 227.136719 306.808594 227.019531 Z M 306.808594 227.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.03125 229.503906 C 303.03125 229.386719 302.9375 229.292969 302.820312 229.292969 C 302.703125 229.292969 302.609375 229.386719 302.609375 229.503906 C 302.609375 229.621094 302.703125 229.714844 302.820312 229.714844 C 302.9375 229.714844 303.03125 229.621094 303.03125 229.503906 Z M 303.03125 229.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.015625 230.410156 C 304.015625 230.292969 303.921875 230.199219 303.804688 230.199219 C 303.6875 230.199219 303.59375 230.292969 303.59375 230.410156 C 303.59375 230.527344 303.6875 230.621094 303.804688 230.621094 C 303.921875 230.621094 304.015625 230.527344 304.015625 230.410156 Z M 304.015625 230.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.566406 233.828125 C 304.566406 233.710938 304.472656 233.617188 304.355469 233.617188 C 304.238281 233.617188 304.144531 233.710938 304.144531 233.828125 C 304.144531 233.945312 304.238281 234.039062 304.355469 234.039062 C 304.472656 234.039062 304.566406 233.945312 304.566406 233.828125 Z M 304.566406 233.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.15625 234.597656 C 302.15625 234.480469 302.0625 234.386719 301.945312 234.386719 C 301.828125 234.386719 301.734375 234.480469 301.734375 234.597656 C 301.734375 234.714844 301.828125 234.808594 301.945312 234.808594 C 302.0625 234.808594 302.15625 234.714844 302.15625 234.597656 Z M 302.15625 234.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.03125 237.214844 C 302.03125 237.097656 301.9375 237.003906 301.820312 237.003906 C 301.703125 237.003906 301.609375 237.097656 301.609375 237.214844 C 301.609375 237.332031 301.703125 237.425781 301.820312 237.425781 C 301.9375 237.425781 302.03125 237.332031 302.03125 237.214844 Z M 302.03125 237.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.941406 234.105469 C 302.941406 233.988281 302.847656 233.894531 302.730469 233.894531 C 302.613281 233.894531 302.519531 233.988281 302.519531 234.105469 C 302.519531 234.222656 302.613281 234.316406 302.730469 234.316406 C 302.847656 234.316406 302.941406 234.222656 302.941406 234.105469 Z M 302.941406 234.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.21875 234.644531 C 304.21875 234.527344 304.125 234.433594 304.007812 234.433594 C 303.890625 234.433594 303.796875 234.527344 303.796875 234.644531 C 303.796875 234.761719 303.890625 234.855469 304.007812 234.855469 C 304.125 234.855469 304.21875 234.761719 304.21875 234.644531 Z M 304.21875 234.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.246094 233.699219 C 302.246094 233.582031 302.152344 233.488281 302.035156 233.488281 C 301.917969 233.488281 301.824219 233.582031 301.824219 233.699219 C 301.824219 233.816406 301.917969 233.910156 302.035156 233.910156 C 302.152344 233.910156 302.246094 233.816406 302.246094 233.699219 Z M 302.246094 233.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.546875 236.484375 C 301.546875 236.367188 301.453125 236.273438 301.335938 236.273438 C 301.21875 236.273438 301.125 236.367188 301.125 236.484375 C 301.125 236.601562 301.21875 236.695312 301.335938 236.695312 C 301.453125 236.695312 301.546875 236.601562 301.546875 236.484375 Z M 301.546875 236.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.820312 237.265625 C 304.820312 237.148438 304.726562 237.054688 304.609375 237.054688 C 304.492188 237.054688 304.398438 237.148438 304.398438 237.265625 C 304.398438 237.382812 304.492188 237.476562 304.609375 237.476562 C 304.726562 237.476562 304.820312 237.382812 304.820312 237.265625 Z M 304.820312 237.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.972656 232.015625 C 302.972656 231.898438 302.878906 231.804688 302.761719 231.804688 C 302.644531 231.804688 302.550781 231.898438 302.550781 232.015625 C 302.550781 232.132812 302.644531 232.226562 302.761719 232.226562 C 302.878906 232.226562 302.972656 232.132812 302.972656 232.015625 Z M 302.972656 232.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.082031 233.292969 C 302.082031 233.175781 301.988281 233.082031 301.871094 233.082031 C 301.753906 233.082031 301.660156 233.175781 301.660156 233.292969 C 301.660156 233.410156 301.753906 233.503906 301.871094 233.503906 C 301.988281 233.503906 302.082031 233.410156 302.082031 233.292969 Z M 302.082031 233.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.351562 233.027344 C 303.351562 232.910156 303.257812 232.816406 303.140625 232.816406 C 303.023438 232.816406 302.929688 232.910156 302.929688 233.027344 C 302.929688 233.144531 303.023438 233.238281 303.140625 233.238281 C 303.257812 233.238281 303.351562 233.144531 303.351562 233.027344 Z M 303.351562 233.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.171875 232.574219 C 304.171875 232.457031 304.078125 232.363281 303.960938 232.363281 C 303.84375 232.363281 303.75 232.457031 303.75 232.574219 C 303.75 232.691406 303.84375 232.785156 303.960938 232.785156 C 304.078125 232.785156 304.171875 232.691406 304.171875 232.574219 Z M 304.171875 232.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.082031 232.832031 C 306.082031 232.714844 305.988281 232.621094 305.871094 232.621094 C 305.753906 232.621094 305.660156 232.714844 305.660156 232.832031 C 305.660156 232.949219 305.753906 233.042969 305.871094 233.042969 C 305.988281 233.042969 306.082031 232.949219 306.082031 232.832031 Z M 306.082031 232.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.078125 235.8125 C 304.078125 235.695312 303.984375 235.601562 303.867188 235.601562 C 303.75 235.601562 303.65625 235.695312 303.65625 235.8125 C 303.65625 235.929688 303.75 236.023438 303.867188 236.023438 C 303.984375 236.023438 304.078125 235.929688 304.078125 235.8125 Z M 304.078125 235.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.148438 238.546875 C 302.148438 238.429688 302.054688 238.335938 301.9375 238.335938 C 301.820312 238.335938 301.726562 238.429688 301.726562 238.546875 C 301.726562 238.664062 301.820312 238.757812 301.9375 238.757812 C 302.054688 238.757812 302.148438 238.664062 302.148438 238.546875 Z M 302.148438 238.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.683594 240.898438 C 304.683594 240.78125 304.589844 240.6875 304.472656 240.6875 C 304.355469 240.6875 304.261719 240.78125 304.261719 240.898438 C 304.261719 241.015625 304.355469 241.109375 304.472656 241.109375 C 304.589844 241.109375 304.683594 241.015625 304.683594 240.898438 Z M 304.683594 240.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.574219 243.972656 C 302.574219 243.855469 302.480469 243.761719 302.363281 243.761719 C 302.246094 243.761719 302.152344 243.855469 302.152344 243.972656 C 302.152344 244.089844 302.246094 244.183594 302.363281 244.183594 C 302.480469 244.183594 302.574219 244.089844 302.574219 243.972656 Z M 302.574219 243.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.058594 244.234375 C 301.058594 244.117188 300.964844 244.023438 300.847656 244.023438 C 300.730469 244.023438 300.636719 244.117188 300.636719 244.234375 C 300.636719 244.351562 300.730469 244.445312 300.847656 244.445312 C 300.964844 244.445312 301.058594 244.351562 301.058594 244.234375 Z M 301.058594 244.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.691406 244.855469 C 299.691406 244.738281 299.597656 244.644531 299.480469 244.644531 C 299.363281 244.644531 299.269531 244.738281 299.269531 244.855469 C 299.269531 244.972656 299.363281 245.066406 299.480469 245.066406 C 299.597656 245.066406 299.691406 244.972656 299.691406 244.855469 Z M 299.691406 244.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.871094 246.476562 C 300.871094 246.359375 300.777344 246.265625 300.660156 246.265625 C 300.542969 246.265625 300.449219 246.359375 300.449219 246.476562 C 300.449219 246.59375 300.542969 246.6875 300.660156 246.6875 C 300.777344 246.6875 300.871094 246.59375 300.871094 246.476562 Z M 300.871094 246.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.613281 246.75 C 300.613281 246.632812 300.519531 246.539062 300.402344 246.539062 C 300.285156 246.539062 300.191406 246.632812 300.191406 246.75 C 300.191406 246.867188 300.285156 246.960938 300.402344 246.960938 C 300.519531 246.960938 300.613281 246.867188 300.613281 246.75 Z M 300.613281 246.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.59375 246.960938 C 298.59375 246.84375 298.5 246.75 298.382812 246.75 C 298.265625 246.75 298.171875 246.84375 298.171875 246.960938 C 298.171875 247.078125 298.265625 247.171875 298.382812 247.171875 C 298.5 247.171875 298.59375 247.078125 298.59375 246.960938 Z M 298.59375 246.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.121094 243.546875 C 296.121094 243.429688 296.027344 243.335938 295.910156 243.335938 C 295.792969 243.335938 295.699219 243.429688 295.699219 243.546875 C 295.699219 243.664062 295.792969 243.757812 295.910156 243.757812 C 296.027344 243.757812 296.121094 243.664062 296.121094 243.546875 Z M 296.121094 243.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.4375 247.28125 C 297.4375 247.164062 297.34375 247.070312 297.226562 247.070312 C 297.109375 247.070312 297.015625 247.164062 297.015625 247.28125 C 297.015625 247.398438 297.109375 247.492188 297.226562 247.492188 C 297.34375 247.492188 297.4375 247.398438 297.4375 247.28125 Z M 297.4375 247.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.304688 249.515625 C 298.304688 249.398438 298.210938 249.304688 298.09375 249.304688 C 297.976562 249.304688 297.882812 249.398438 297.882812 249.515625 C 297.882812 249.632812 297.976562 249.726562 298.09375 249.726562 C 298.210938 249.726562 298.304688 249.632812 298.304688 249.515625 Z M 298.304688 249.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.050781 248.257812 C 299.050781 248.140625 298.957031 248.046875 298.839844 248.046875 C 298.722656 248.046875 298.628906 248.140625 298.628906 248.257812 C 298.628906 248.375 298.722656 248.46875 298.839844 248.46875 C 298.957031 248.46875 299.050781 248.375 299.050781 248.257812 Z M 299.050781 248.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.59375 247.996094 C 297.59375 247.878906 297.5 247.785156 297.382812 247.785156 C 297.265625 247.785156 297.171875 247.878906 297.171875 247.996094 C 297.171875 248.113281 297.265625 248.207031 297.382812 248.207031 C 297.5 248.207031 297.59375 248.113281 297.59375 247.996094 Z M 297.59375 247.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.074219 246.992188 C 300.074219 246.875 299.980469 246.78125 299.863281 246.78125 C 299.746094 246.78125 299.652344 246.875 299.652344 246.992188 C 299.652344 247.109375 299.746094 247.203125 299.863281 247.203125 C 299.980469 247.203125 300.074219 247.109375 300.074219 246.992188 Z M 300.074219 246.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.898438 246.097656 C 300.898438 245.980469 300.804688 245.886719 300.6875 245.886719 C 300.570312 245.886719 300.476562 245.980469 300.476562 246.097656 C 300.476562 246.214844 300.570312 246.308594 300.6875 246.308594 C 300.804688 246.308594 300.898438 246.214844 300.898438 246.097656 Z M 300.898438 246.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.953125 247.128906 C 299.953125 247.011719 299.859375 246.917969 299.742188 246.917969 C 299.625 246.917969 299.53125 247.011719 299.53125 247.128906 C 299.53125 247.246094 299.625 247.339844 299.742188 247.339844 C 299.859375 247.339844 299.953125 247.246094 299.953125 247.128906 Z M 299.953125 247.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.988281 248.789062 C 299.988281 248.671875 299.894531 248.578125 299.777344 248.578125 C 299.660156 248.578125 299.566406 248.671875 299.566406 248.789062 C 299.566406 248.90625 299.660156 249 299.777344 249 C 299.894531 249 299.988281 248.90625 299.988281 248.789062 Z M 299.988281 248.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.398438 246.105469 C 301.398438 245.988281 301.304688 245.894531 301.1875 245.894531 C 301.070312 245.894531 300.976562 245.988281 300.976562 246.105469 C 300.976562 246.222656 301.070312 246.316406 301.1875 246.316406 C 301.304688 246.316406 301.398438 246.222656 301.398438 246.105469 Z M 301.398438 246.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.410156 245.132812 C 299.410156 245.015625 299.316406 244.921875 299.199219 244.921875 C 299.082031 244.921875 298.988281 245.015625 298.988281 245.132812 C 298.988281 245.25 299.082031 245.34375 299.199219 245.34375 C 299.316406 245.34375 299.410156 245.25 299.410156 245.132812 Z M 299.410156 245.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.324219 244.9375 C 300.324219 244.820312 300.230469 244.726562 300.113281 244.726562 C 299.996094 244.726562 299.902344 244.820312 299.902344 244.9375 C 299.902344 245.054688 299.996094 245.148438 300.113281 245.148438 C 300.230469 245.148438 300.324219 245.054688 300.324219 244.9375 Z M 300.324219 244.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.242188 242.332031 C 300.242188 242.214844 300.148438 242.121094 300.03125 242.121094 C 299.914062 242.121094 299.820312 242.214844 299.820312 242.332031 C 299.820312 242.449219 299.914062 242.542969 300.03125 242.542969 C 300.148438 242.542969 300.242188 242.449219 300.242188 242.332031 Z M 300.242188 242.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.789062 240.65625 C 301.789062 240.539062 301.695312 240.445312 301.578125 240.445312 C 301.460938 240.445312 301.367188 240.539062 301.367188 240.65625 C 301.367188 240.773438 301.460938 240.867188 301.578125 240.867188 C 301.695312 240.867188 301.789062 240.773438 301.789062 240.65625 Z M 301.789062 240.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.214844 239.9375 C 302.214844 239.820312 302.121094 239.726562 302.003906 239.726562 C 301.886719 239.726562 301.792969 239.820312 301.792969 239.9375 C 301.792969 240.054688 301.886719 240.148438 302.003906 240.148438 C 302.121094 240.148438 302.214844 240.054688 302.214844 239.9375 Z M 302.214844 239.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.652344 234.828125 C 300.652344 234.710938 300.558594 234.617188 300.441406 234.617188 C 300.324219 234.617188 300.230469 234.710938 300.230469 234.828125 C 300.230469 234.945312 300.324219 235.039062 300.441406 235.039062 C 300.558594 235.039062 300.652344 234.945312 300.652344 234.828125 Z M 300.652344 234.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.476562 235.085938 C 301.476562 234.96875 301.382812 234.875 301.265625 234.875 C 301.148438 234.875 301.054688 234.96875 301.054688 235.085938 C 301.054688 235.203125 301.148438 235.296875 301.265625 235.296875 C 301.382812 235.296875 301.476562 235.203125 301.476562 235.085938 Z M 301.476562 235.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.910156 239.75 C 302.910156 239.632812 302.816406 239.539062 302.699219 239.539062 C 302.582031 239.539062 302.488281 239.632812 302.488281 239.75 C 302.488281 239.867188 302.582031 239.960938 302.699219 239.960938 C 302.816406 239.960938 302.910156 239.867188 302.910156 239.75 Z M 302.910156 239.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.804688 240.167969 C 301.804688 240.050781 301.710938 239.957031 301.59375 239.957031 C 301.476562 239.957031 301.382812 240.050781 301.382812 240.167969 C 301.382812 240.285156 301.476562 240.378906 301.59375 240.378906 C 301.710938 240.378906 301.804688 240.285156 301.804688 240.167969 Z M 301.804688 240.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.230469 240.816406 C 299.230469 240.699219 299.136719 240.605469 299.019531 240.605469 C 298.902344 240.605469 298.808594 240.699219 298.808594 240.816406 C 298.808594 240.933594 298.902344 241.027344 299.019531 241.027344 C 299.136719 241.027344 299.230469 240.933594 299.230469 240.816406 Z M 299.230469 240.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.339844 241.46875 C 301.339844 241.351562 301.246094 241.257812 301.128906 241.257812 C 301.011719 241.257812 300.917969 241.351562 300.917969 241.46875 C 300.917969 241.585938 301.011719 241.679688 301.128906 241.679688 C 301.246094 241.679688 301.339844 241.585938 301.339844 241.46875 Z M 301.339844 241.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.652344 240.445312 C 299.652344 240.328125 299.558594 240.234375 299.441406 240.234375 C 299.324219 240.234375 299.230469 240.328125 299.230469 240.445312 C 299.230469 240.5625 299.324219 240.65625 299.441406 240.65625 C 299.558594 240.65625 299.652344 240.5625 299.652344 240.445312 Z M 299.652344 240.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.621094 241.933594 C 298.621094 241.816406 298.527344 241.722656 298.410156 241.722656 C 298.292969 241.722656 298.199219 241.816406 298.199219 241.933594 C 298.199219 242.050781 298.292969 242.144531 298.410156 242.144531 C 298.527344 242.144531 298.621094 242.050781 298.621094 241.933594 Z M 298.621094 241.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.832031 246.25 C 295.832031 246.132812 295.738281 246.039062 295.621094 246.039062 C 295.503906 246.039062 295.410156 246.132812 295.410156 246.25 C 295.410156 246.367188 295.503906 246.460938 295.621094 246.460938 C 295.738281 246.460938 295.832031 246.367188 295.832031 246.25 Z M 295.832031 246.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.746094 247.34375 C 294.746094 247.226562 294.652344 247.132812 294.535156 247.132812 C 294.417969 247.132812 294.324219 247.226562 294.324219 247.34375 C 294.324219 247.460938 294.417969 247.554688 294.535156 247.554688 C 294.652344 247.554688 294.746094 247.460938 294.746094 247.34375 Z M 294.746094 247.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297 247.976562 C 297 247.859375 296.90625 247.765625 296.789062 247.765625 C 296.671875 247.765625 296.578125 247.859375 296.578125 247.976562 C 296.578125 248.09375 296.671875 248.1875 296.789062 248.1875 C 296.90625 248.1875 297 248.09375 297 247.976562 Z M 297 247.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.933594 247.507812 C 296.933594 247.390625 296.839844 247.296875 296.722656 247.296875 C 296.605469 247.296875 296.511719 247.390625 296.511719 247.507812 C 296.511719 247.625 296.605469 247.71875 296.722656 247.71875 C 296.839844 247.71875 296.933594 247.625 296.933594 247.507812 Z M 296.933594 247.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.425781 247.214844 C 298.425781 247.097656 298.332031 247.003906 298.214844 247.003906 C 298.097656 247.003906 298.003906 247.097656 298.003906 247.214844 C 298.003906 247.332031 298.097656 247.425781 298.214844 247.425781 C 298.332031 247.425781 298.425781 247.332031 298.425781 247.214844 Z M 298.425781 247.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.316406 251.183594 C 298.316406 251.066406 298.222656 250.972656 298.105469 250.972656 C 297.988281 250.972656 297.894531 251.066406 297.894531 251.183594 C 297.894531 251.300781 297.988281 251.394531 298.105469 251.394531 C 298.222656 251.394531 298.316406 251.300781 298.316406 251.183594 Z M 298.316406 251.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.945312 251.152344 C 297.945312 251.035156 297.851562 250.941406 297.734375 250.941406 C 297.617188 250.941406 297.523438 251.035156 297.523438 251.152344 C 297.523438 251.269531 297.617188 251.363281 297.734375 251.363281 C 297.851562 251.363281 297.945312 251.269531 297.945312 251.152344 Z M 297.945312 251.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.144531 250.476562 C 296.144531 250.359375 296.050781 250.265625 295.933594 250.265625 C 295.816406 250.265625 295.722656 250.359375 295.722656 250.476562 C 295.722656 250.59375 295.816406 250.6875 295.933594 250.6875 C 296.050781 250.6875 296.144531 250.59375 296.144531 250.476562 Z M 296.144531 250.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.785156 252.308594 C 297.785156 252.191406 297.691406 252.097656 297.574219 252.097656 C 297.457031 252.097656 297.363281 252.191406 297.363281 252.308594 C 297.363281 252.425781 297.457031 252.519531 297.574219 252.519531 C 297.691406 252.519531 297.785156 252.425781 297.785156 252.308594 Z M 297.785156 252.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.964844 249.769531 C 294.964844 249.652344 294.871094 249.558594 294.753906 249.558594 C 294.636719 249.558594 294.542969 249.652344 294.542969 249.769531 C 294.542969 249.886719 294.636719 249.980469 294.753906 249.980469 C 294.871094 249.980469 294.964844 249.886719 294.964844 249.769531 Z M 294.964844 249.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.632812 248.171875 C 294.632812 248.054688 294.539062 247.960938 294.421875 247.960938 C 294.304688 247.960938 294.210938 248.054688 294.210938 248.171875 C 294.210938 248.289062 294.304688 248.382812 294.421875 248.382812 C 294.539062 248.382812 294.632812 248.289062 294.632812 248.171875 Z M 294.632812 248.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.574219 251.101562 C 292.574219 250.984375 292.480469 250.890625 292.363281 250.890625 C 292.246094 250.890625 292.152344 250.984375 292.152344 251.101562 C 292.152344 251.21875 292.246094 251.3125 292.363281 251.3125 C 292.480469 251.3125 292.574219 251.21875 292.574219 251.101562 Z M 292.574219 251.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.417969 250.898438 C 293.417969 250.78125 293.324219 250.6875 293.207031 250.6875 C 293.089844 250.6875 292.996094 250.78125 292.996094 250.898438 C 292.996094 251.015625 293.089844 251.109375 293.207031 251.109375 C 293.324219 251.109375 293.417969 251.015625 293.417969 250.898438 Z M 293.417969 250.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.734375 248.9375 C 293.734375 248.820312 293.640625 248.726562 293.523438 248.726562 C 293.40625 248.726562 293.3125 248.820312 293.3125 248.9375 C 293.3125 249.054688 293.40625 249.148438 293.523438 249.148438 C 293.640625 249.148438 293.734375 249.054688 293.734375 248.9375 Z M 293.734375 248.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.953125 247.777344 C 296.953125 247.660156 296.859375 247.566406 296.742188 247.566406 C 296.625 247.566406 296.53125 247.660156 296.53125 247.777344 C 296.53125 247.894531 296.625 247.988281 296.742188 247.988281 C 296.859375 247.988281 296.953125 247.894531 296.953125 247.777344 Z M 296.953125 247.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.148438 247.320312 C 297.148438 247.203125 297.054688 247.109375 296.9375 247.109375 C 296.820312 247.109375 296.726562 247.203125 296.726562 247.320312 C 296.726562 247.4375 296.820312 247.53125 296.9375 247.53125 C 297.054688 247.53125 297.148438 247.4375 297.148438 247.320312 Z M 297.148438 247.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.25 246.484375 C 299.25 246.367188 299.15625 246.273438 299.039062 246.273438 C 298.921875 246.273438 298.828125 246.367188 298.828125 246.484375 C 298.828125 246.601562 298.921875 246.695312 299.039062 246.695312 C 299.15625 246.695312 299.25 246.601562 299.25 246.484375 Z M 299.25 246.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.339844 247.066406 C 297.339844 246.949219 297.246094 246.855469 297.128906 246.855469 C 297.011719 246.855469 296.917969 246.949219 296.917969 247.066406 C 296.917969 247.183594 297.011719 247.277344 297.128906 247.277344 C 297.246094 247.277344 297.339844 247.183594 297.339844 247.066406 Z M 297.339844 247.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.023438 250.5625 C 294.023438 250.445312 293.929688 250.351562 293.8125 250.351562 C 293.695312 250.351562 293.601562 250.445312 293.601562 250.5625 C 293.601562 250.679688 293.695312 250.773438 293.8125 250.773438 C 293.929688 250.773438 294.023438 250.679688 294.023438 250.5625 Z M 294.023438 250.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.992188 249.347656 C 290.992188 249.230469 290.898438 249.136719 290.78125 249.136719 C 290.664062 249.136719 290.570312 249.230469 290.570312 249.347656 C 290.570312 249.464844 290.664062 249.558594 290.78125 249.558594 C 290.898438 249.558594 290.992188 249.464844 290.992188 249.347656 Z M 290.992188 249.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.355469 245.957031 C 292.355469 245.839844 292.261719 245.746094 292.144531 245.746094 C 292.027344 245.746094 291.933594 245.839844 291.933594 245.957031 C 291.933594 246.074219 292.027344 246.167969 292.144531 246.167969 C 292.261719 246.167969 292.355469 246.074219 292.355469 245.957031 Z M 292.355469 245.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.160156 247.207031 C 290.160156 247.089844 290.066406 246.996094 289.949219 246.996094 C 289.832031 246.996094 289.738281 247.089844 289.738281 247.207031 C 289.738281 247.324219 289.832031 247.417969 289.949219 247.417969 C 290.066406 247.417969 290.160156 247.324219 290.160156 247.207031 Z M 290.160156 247.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.476562 251.632812 C 292.476562 251.515625 292.382812 251.421875 292.265625 251.421875 C 292.148438 251.421875 292.054688 251.515625 292.054688 251.632812 C 292.054688 251.75 292.148438 251.84375 292.265625 251.84375 C 292.382812 251.84375 292.476562 251.75 292.476562 251.632812 Z M 292.476562 251.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.703125 247.757812 C 293.703125 247.640625 293.609375 247.546875 293.492188 247.546875 C 293.375 247.546875 293.28125 247.640625 293.28125 247.757812 C 293.28125 247.875 293.375 247.96875 293.492188 247.96875 C 293.609375 247.96875 293.703125 247.875 293.703125 247.757812 Z M 293.703125 247.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.34375 248.089844 C 294.34375 247.972656 294.25 247.878906 294.132812 247.878906 C 294.015625 247.878906 293.921875 247.972656 293.921875 248.089844 C 293.921875 248.207031 294.015625 248.300781 294.132812 248.300781 C 294.25 248.300781 294.34375 248.207031 294.34375 248.089844 Z M 294.34375 248.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.328125 247.972656 C 292.328125 247.855469 292.234375 247.761719 292.117188 247.761719 C 292 247.761719 291.90625 247.855469 291.90625 247.972656 C 291.90625 248.089844 292 248.183594 292.117188 248.183594 C 292.234375 248.183594 292.328125 248.089844 292.328125 247.972656 Z M 292.328125 247.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.617188 250.292969 C 293.617188 250.175781 293.523438 250.082031 293.40625 250.082031 C 293.289062 250.082031 293.195312 250.175781 293.195312 250.292969 C 293.195312 250.410156 293.289062 250.503906 293.40625 250.503906 C 293.523438 250.503906 293.617188 250.410156 293.617188 250.292969 Z M 293.617188 250.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.824219 247.371094 C 294.824219 247.253906 294.730469 247.160156 294.613281 247.160156 C 294.496094 247.160156 294.402344 247.253906 294.402344 247.371094 C 294.402344 247.488281 294.496094 247.582031 294.613281 247.582031 C 294.730469 247.582031 294.824219 247.488281 294.824219 247.371094 Z M 294.824219 247.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.523438 247.925781 C 295.523438 247.808594 295.429688 247.714844 295.3125 247.714844 C 295.195312 247.714844 295.101562 247.808594 295.101562 247.925781 C 295.101562 248.042969 295.195312 248.136719 295.3125 248.136719 C 295.429688 248.136719 295.523438 248.042969 295.523438 247.925781 Z M 295.523438 247.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.160156 248.242188 C 293.160156 248.125 293.066406 248.03125 292.949219 248.03125 C 292.832031 248.03125 292.738281 248.125 292.738281 248.242188 C 292.738281 248.359375 292.832031 248.453125 292.949219 248.453125 C 293.066406 248.453125 293.160156 248.359375 293.160156 248.242188 Z M 293.160156 248.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.921875 246.4375 C 293.921875 246.320312 293.828125 246.226562 293.710938 246.226562 C 293.59375 246.226562 293.5 246.320312 293.5 246.4375 C 293.5 246.554688 293.59375 246.648438 293.710938 246.648438 C 293.828125 246.648438 293.921875 246.554688 293.921875 246.4375 Z M 293.921875 246.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.824219 250.984375 C 292.824219 250.867188 292.730469 250.773438 292.613281 250.773438 C 292.496094 250.773438 292.402344 250.867188 292.402344 250.984375 C 292.402344 251.101562 292.496094 251.195312 292.613281 251.195312 C 292.730469 251.195312 292.824219 251.101562 292.824219 250.984375 Z M 292.824219 250.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.519531 251.980469 C 291.519531 251.863281 291.425781 251.769531 291.308594 251.769531 C 291.191406 251.769531 291.097656 251.863281 291.097656 251.980469 C 291.097656 252.097656 291.191406 252.191406 291.308594 252.191406 C 291.425781 252.191406 291.519531 252.097656 291.519531 251.980469 Z M 291.519531 251.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.964844 250.523438 C 288.964844 250.40625 288.871094 250.3125 288.753906 250.3125 C 288.636719 250.3125 288.542969 250.40625 288.542969 250.523438 C 288.542969 250.640625 288.636719 250.734375 288.753906 250.734375 C 288.871094 250.734375 288.964844 250.640625 288.964844 250.523438 Z M 288.964844 250.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.632812 250.644531 C 290.632812 250.527344 290.539062 250.433594 290.421875 250.433594 C 290.304688 250.433594 290.210938 250.527344 290.210938 250.644531 C 290.210938 250.761719 290.304688 250.855469 290.421875 250.855469 C 290.539062 250.855469 290.632812 250.761719 290.632812 250.644531 Z M 290.632812 250.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.472656 246.898438 C 291.472656 246.78125 291.378906 246.6875 291.261719 246.6875 C 291.144531 246.6875 291.050781 246.78125 291.050781 246.898438 C 291.050781 247.015625 291.144531 247.109375 291.261719 247.109375 C 291.378906 247.109375 291.472656 247.015625 291.472656 246.898438 Z M 291.472656 246.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.644531 248.976562 C 291.644531 248.859375 291.550781 248.765625 291.433594 248.765625 C 291.316406 248.765625 291.222656 248.859375 291.222656 248.976562 C 291.222656 249.09375 291.316406 249.1875 291.433594 249.1875 C 291.550781 249.1875 291.644531 249.09375 291.644531 248.976562 Z M 291.644531 248.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.910156 249.394531 C 291.910156 249.277344 291.816406 249.183594 291.699219 249.183594 C 291.582031 249.183594 291.488281 249.277344 291.488281 249.394531 C 291.488281 249.511719 291.582031 249.605469 291.699219 249.605469 C 291.816406 249.605469 291.910156 249.511719 291.910156 249.394531 Z M 291.910156 249.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.699219 248.566406 C 291.699219 248.449219 291.605469 248.355469 291.488281 248.355469 C 291.371094 248.355469 291.277344 248.449219 291.277344 248.566406 C 291.277344 248.683594 291.371094 248.777344 291.488281 248.777344 C 291.605469 248.777344 291.699219 248.683594 291.699219 248.566406 Z M 291.699219 248.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.988281 249.542969 C 290.988281 249.425781 290.894531 249.332031 290.777344 249.332031 C 290.660156 249.332031 290.566406 249.425781 290.566406 249.542969 C 290.566406 249.660156 290.660156 249.753906 290.777344 249.753906 C 290.894531 249.753906 290.988281 249.660156 290.988281 249.542969 Z M 290.988281 249.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.558594 249.59375 C 290.558594 249.476562 290.464844 249.382812 290.347656 249.382812 C 290.230469 249.382812 290.136719 249.476562 290.136719 249.59375 C 290.136719 249.710938 290.230469 249.804688 290.347656 249.804688 C 290.464844 249.804688 290.558594 249.710938 290.558594 249.59375 Z M 290.558594 249.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.625 250.523438 C 289.625 250.40625 289.53125 250.3125 289.414062 250.3125 C 289.296875 250.3125 289.203125 250.40625 289.203125 250.523438 C 289.203125 250.640625 289.296875 250.734375 289.414062 250.734375 C 289.53125 250.734375 289.625 250.640625 289.625 250.523438 Z M 289.625 250.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.117188 249.625 C 291.117188 249.507812 291.023438 249.414062 290.90625 249.414062 C 290.789062 249.414062 290.695312 249.507812 290.695312 249.625 C 290.695312 249.742188 290.789062 249.835938 290.90625 249.835938 C 291.023438 249.835938 291.117188 249.742188 291.117188 249.625 Z M 291.117188 249.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.226562 251.066406 C 293.226562 250.949219 293.132812 250.855469 293.015625 250.855469 C 292.898438 250.855469 292.804688 250.949219 292.804688 251.066406 C 292.804688 251.183594 292.898438 251.277344 293.015625 251.277344 C 293.132812 251.277344 293.226562 251.183594 293.226562 251.066406 Z M 293.226562 251.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.703125 249.128906 C 290.703125 249.011719 290.609375 248.917969 290.492188 248.917969 C 290.375 248.917969 290.28125 249.011719 290.28125 249.128906 C 290.28125 249.246094 290.375 249.339844 290.492188 249.339844 C 290.609375 249.339844 290.703125 249.246094 290.703125 249.128906 Z M 290.703125 249.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.0625 250.160156 C 288.0625 250.042969 287.96875 249.949219 287.851562 249.949219 C 287.734375 249.949219 287.640625 250.042969 287.640625 250.160156 C 287.640625 250.277344 287.734375 250.371094 287.851562 250.371094 C 287.96875 250.371094 288.0625 250.277344 288.0625 250.160156 Z M 288.0625 250.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.085938 248.664062 C 287.085938 248.546875 286.992188 248.453125 286.875 248.453125 C 286.757812 248.453125 286.664062 248.546875 286.664062 248.664062 C 286.664062 248.78125 286.757812 248.875 286.875 248.875 C 286.992188 248.875 287.085938 248.78125 287.085938 248.664062 Z M 287.085938 248.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.566406 249.304688 C 288.566406 249.1875 288.472656 249.09375 288.355469 249.09375 C 288.238281 249.09375 288.144531 249.1875 288.144531 249.304688 C 288.144531 249.421875 288.238281 249.515625 288.355469 249.515625 C 288.472656 249.515625 288.566406 249.421875 288.566406 249.304688 Z M 288.566406 249.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.035156 247.667969 C 291.035156 247.550781 290.941406 247.457031 290.824219 247.457031 C 290.707031 247.457031 290.613281 247.550781 290.613281 247.667969 C 290.613281 247.785156 290.707031 247.878906 290.824219 247.878906 C 290.941406 247.878906 291.035156 247.785156 291.035156 247.667969 Z M 291.035156 247.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.035156 250.675781 C 289.035156 250.558594 288.941406 250.464844 288.824219 250.464844 C 288.707031 250.464844 288.613281 250.558594 288.613281 250.675781 C 288.613281 250.792969 288.707031 250.886719 288.824219 250.886719 C 288.941406 250.886719 289.035156 250.792969 289.035156 250.675781 Z M 289.035156 250.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.722656 248.375 C 290.722656 248.257812 290.628906 248.164062 290.511719 248.164062 C 290.394531 248.164062 290.300781 248.257812 290.300781 248.375 C 290.300781 248.492188 290.394531 248.585938 290.511719 248.585938 C 290.628906 248.585938 290.722656 248.492188 290.722656 248.375 Z M 290.722656 248.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.140625 252.09375 C 289.140625 251.976562 289.046875 251.882812 288.929688 251.882812 C 288.8125 251.882812 288.71875 251.976562 288.71875 252.09375 C 288.71875 252.210938 288.8125 252.304688 288.929688 252.304688 C 289.046875 252.304688 289.140625 252.210938 289.140625 252.09375 Z M 289.140625 252.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.039062 249.964844 C 291.039062 249.847656 290.945312 249.753906 290.828125 249.753906 C 290.710938 249.753906 290.617188 249.847656 290.617188 249.964844 C 290.617188 250.082031 290.710938 250.175781 290.828125 250.175781 C 290.945312 250.175781 291.039062 250.082031 291.039062 249.964844 Z M 291.039062 249.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.085938 251.332031 C 293.085938 251.214844 292.992188 251.121094 292.875 251.121094 C 292.757812 251.121094 292.664062 251.214844 292.664062 251.332031 C 292.664062 251.449219 292.757812 251.542969 292.875 251.542969 C 292.992188 251.542969 293.085938 251.449219 293.085938 251.332031 Z M 293.085938 251.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.628906 250.035156 C 292.628906 249.917969 292.535156 249.824219 292.417969 249.824219 C 292.300781 249.824219 292.207031 249.917969 292.207031 250.035156 C 292.207031 250.152344 292.300781 250.246094 292.417969 250.246094 C 292.535156 250.246094 292.628906 250.152344 292.628906 250.035156 Z M 292.628906 250.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.136719 248.894531 C 295.136719 248.777344 295.042969 248.683594 294.925781 248.683594 C 294.808594 248.683594 294.714844 248.777344 294.714844 248.894531 C 294.714844 249.011719 294.808594 249.105469 294.925781 249.105469 C 295.042969 249.105469 295.136719 249.011719 295.136719 248.894531 Z M 295.136719 248.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.21875 248.382812 C 297.21875 248.265625 297.125 248.171875 297.007812 248.171875 C 296.890625 248.171875 296.796875 248.265625 296.796875 248.382812 C 296.796875 248.5 296.890625 248.59375 297.007812 248.59375 C 297.125 248.59375 297.21875 248.5 297.21875 248.382812 Z M 297.21875 248.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.640625 245.578125 C 293.640625 245.460938 293.546875 245.367188 293.429688 245.367188 C 293.3125 245.367188 293.21875 245.460938 293.21875 245.578125 C 293.21875 245.695312 293.3125 245.789062 293.429688 245.789062 C 293.546875 245.789062 293.640625 245.695312 293.640625 245.578125 Z M 293.640625 245.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.023438 246.765625 C 292.023438 246.648438 291.929688 246.554688 291.8125 246.554688 C 291.695312 246.554688 291.601562 246.648438 291.601562 246.765625 C 291.601562 246.882812 291.695312 246.976562 291.8125 246.976562 C 291.929688 246.976562 292.023438 246.882812 292.023438 246.765625 Z M 292.023438 246.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.203125 248.769531 C 288.203125 248.652344 288.109375 248.558594 287.992188 248.558594 C 287.875 248.558594 287.78125 248.652344 287.78125 248.769531 C 287.78125 248.886719 287.875 248.980469 287.992188 248.980469 C 288.109375 248.980469 288.203125 248.886719 288.203125 248.769531 Z M 288.203125 248.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.398438 250.25 C 286.398438 250.132812 286.304688 250.039062 286.1875 250.039062 C 286.070312 250.039062 285.976562 250.132812 285.976562 250.25 C 285.976562 250.367188 286.070312 250.460938 286.1875 250.460938 C 286.304688 250.460938 286.398438 250.367188 286.398438 250.25 Z M 286.398438 250.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.335938 248.652344 C 284.335938 248.535156 284.242188 248.441406 284.125 248.441406 C 284.007812 248.441406 283.914062 248.535156 283.914062 248.652344 C 283.914062 248.769531 284.007812 248.863281 284.125 248.863281 C 284.242188 248.863281 284.335938 248.769531 284.335938 248.652344 Z M 284.335938 248.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.050781 248.761719 C 286.050781 248.644531 285.957031 248.550781 285.839844 248.550781 C 285.722656 248.550781 285.628906 248.644531 285.628906 248.761719 C 285.628906 248.878906 285.722656 248.972656 285.839844 248.972656 C 285.957031 248.972656 286.050781 248.878906 286.050781 248.761719 Z M 286.050781 248.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.769531 250.859375 C 284.769531 250.742188 284.675781 250.648438 284.558594 250.648438 C 284.441406 250.648438 284.347656 250.742188 284.347656 250.859375 C 284.347656 250.976562 284.441406 251.070312 284.558594 251.070312 C 284.675781 251.070312 284.769531 250.976562 284.769531 250.859375 Z M 284.769531 250.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.675781 253.148438 C 284.675781 253.03125 284.582031 252.9375 284.464844 252.9375 C 284.347656 252.9375 284.253906 253.03125 284.253906 253.148438 C 284.253906 253.265625 284.347656 253.359375 284.464844 253.359375 C 284.582031 253.359375 284.675781 253.265625 284.675781 253.148438 Z M 284.675781 253.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.363281 247.644531 C 287.363281 247.527344 287.269531 247.433594 287.152344 247.433594 C 287.035156 247.433594 286.941406 247.527344 286.941406 247.644531 C 286.941406 247.761719 287.035156 247.855469 287.152344 247.855469 C 287.269531 247.855469 287.363281 247.761719 287.363281 247.644531 Z M 287.363281 247.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.558594 247.597656 C 288.558594 247.480469 288.464844 247.386719 288.347656 247.386719 C 288.230469 247.386719 288.136719 247.480469 288.136719 247.597656 C 288.136719 247.714844 288.230469 247.808594 288.347656 247.808594 C 288.464844 247.808594 288.558594 247.714844 288.558594 247.597656 Z M 288.558594 247.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.25 247.535156 C 287.25 247.417969 287.15625 247.324219 287.039062 247.324219 C 286.921875 247.324219 286.828125 247.417969 286.828125 247.535156 C 286.828125 247.652344 286.921875 247.746094 287.039062 247.746094 C 287.15625 247.746094 287.25 247.652344 287.25 247.535156 Z M 287.25 247.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.6875 245.871094 C 288.6875 245.753906 288.59375 245.660156 288.476562 245.660156 C 288.359375 245.660156 288.265625 245.753906 288.265625 245.871094 C 288.265625 245.988281 288.359375 246.082031 288.476562 246.082031 C 288.59375 246.082031 288.6875 245.988281 288.6875 245.871094 Z M 288.6875 245.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.765625 244.355469 C 287.765625 244.238281 287.671875 244.144531 287.554688 244.144531 C 287.4375 244.144531 287.34375 244.238281 287.34375 244.355469 C 287.34375 244.472656 287.4375 244.566406 287.554688 244.566406 C 287.671875 244.566406 287.765625 244.472656 287.765625 244.355469 Z M 287.765625 244.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.871094 242.9375 C 287.871094 242.820312 287.777344 242.726562 287.660156 242.726562 C 287.542969 242.726562 287.449219 242.820312 287.449219 242.9375 C 287.449219 243.054688 287.542969 243.148438 287.660156 243.148438 C 287.777344 243.148438 287.871094 243.054688 287.871094 242.9375 Z M 287.871094 242.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.476562 244.535156 C 285.476562 244.417969 285.382812 244.324219 285.265625 244.324219 C 285.148438 244.324219 285.054688 244.417969 285.054688 244.535156 C 285.054688 244.652344 285.148438 244.746094 285.265625 244.746094 C 285.382812 244.746094 285.476562 244.652344 285.476562 244.535156 Z M 285.476562 244.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.875 246.820312 C 284.875 246.703125 284.78125 246.609375 284.664062 246.609375 C 284.546875 246.609375 284.453125 246.703125 284.453125 246.820312 C 284.453125 246.9375 284.546875 247.03125 284.664062 247.03125 C 284.78125 247.03125 284.875 246.9375 284.875 246.820312 Z M 284.875 246.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.972656 249.382812 C 282.972656 249.265625 282.878906 249.171875 282.761719 249.171875 C 282.644531 249.171875 282.550781 249.265625 282.550781 249.382812 C 282.550781 249.5 282.644531 249.59375 282.761719 249.59375 C 282.878906 249.59375 282.972656 249.5 282.972656 249.382812 Z M 282.972656 249.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.511719 253.570312 C 281.511719 253.453125 281.417969 253.359375 281.300781 253.359375 C 281.183594 253.359375 281.089844 253.453125 281.089844 253.570312 C 281.089844 253.6875 281.183594 253.78125 281.300781 253.78125 C 281.417969 253.78125 281.511719 253.6875 281.511719 253.570312 Z M 281.511719 253.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.980469 255.378906 C 276.980469 255.261719 276.886719 255.167969 276.769531 255.167969 C 276.652344 255.167969 276.558594 255.261719 276.558594 255.378906 C 276.558594 255.496094 276.652344 255.589844 276.769531 255.589844 C 276.886719 255.589844 276.980469 255.496094 276.980469 255.378906 Z M 276.980469 255.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.417969 258.40625 C 278.417969 258.289062 278.324219 258.195312 278.207031 258.195312 C 278.089844 258.195312 277.996094 258.289062 277.996094 258.40625 C 277.996094 258.523438 278.089844 258.617188 278.207031 258.617188 C 278.324219 258.617188 278.417969 258.523438 278.417969 258.40625 Z M 278.417969 258.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.707031 259.28125 C 277.707031 259.164062 277.613281 259.070312 277.496094 259.070312 C 277.378906 259.070312 277.285156 259.164062 277.285156 259.28125 C 277.285156 259.398438 277.378906 259.492188 277.496094 259.492188 C 277.613281 259.492188 277.707031 259.398438 277.707031 259.28125 Z M 277.707031 259.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.96875 258.785156 C 274.96875 258.667969 274.875 258.574219 274.757812 258.574219 C 274.640625 258.574219 274.546875 258.667969 274.546875 258.785156 C 274.546875 258.902344 274.640625 258.996094 274.757812 258.996094 C 274.875 258.996094 274.96875 258.902344 274.96875 258.785156 Z M 274.96875 258.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.871094 260.207031 C 275.871094 260.089844 275.777344 259.996094 275.660156 259.996094 C 275.542969 259.996094 275.449219 260.089844 275.449219 260.207031 C 275.449219 260.324219 275.542969 260.417969 275.660156 260.417969 C 275.777344 260.417969 275.871094 260.324219 275.871094 260.207031 Z M 275.871094 260.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.644531 262 C 274.644531 261.882812 274.550781 261.789062 274.433594 261.789062 C 274.316406 261.789062 274.222656 261.882812 274.222656 262 C 274.222656 262.117188 274.316406 262.210938 274.433594 262.210938 C 274.550781 262.210938 274.644531 262.117188 274.644531 262 Z M 274.644531 262 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.6875 261.757812 C 271.6875 261.640625 271.59375 261.546875 271.476562 261.546875 C 271.359375 261.546875 271.265625 261.640625 271.265625 261.757812 C 271.265625 261.875 271.359375 261.96875 271.476562 261.96875 C 271.59375 261.96875 271.6875 261.875 271.6875 261.757812 Z M 271.6875 261.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.304688 260.902344 C 270.304688 260.785156 270.210938 260.691406 270.09375 260.691406 C 269.976562 260.691406 269.882812 260.785156 269.882812 260.902344 C 269.882812 261.019531 269.976562 261.113281 270.09375 261.113281 C 270.210938 261.113281 270.304688 261.019531 270.304688 260.902344 Z M 270.304688 260.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.242188 263.785156 C 270.242188 263.667969 270.148438 263.574219 270.03125 263.574219 C 269.914062 263.574219 269.820312 263.667969 269.820312 263.785156 C 269.820312 263.902344 269.914062 263.996094 270.03125 263.996094 C 270.148438 263.996094 270.242188 263.902344 270.242188 263.785156 Z M 270.242188 263.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.90625 262.503906 C 270.90625 262.386719 270.8125 262.292969 270.695312 262.292969 C 270.578125 262.292969 270.484375 262.386719 270.484375 262.503906 C 270.484375 262.621094 270.578125 262.714844 270.695312 262.714844 C 270.8125 262.714844 270.90625 262.621094 270.90625 262.503906 Z M 270.90625 262.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.230469 263.714844 C 271.230469 263.597656 271.136719 263.503906 271.019531 263.503906 C 270.902344 263.503906 270.808594 263.597656 270.808594 263.714844 C 270.808594 263.832031 270.902344 263.925781 271.019531 263.925781 C 271.136719 263.925781 271.230469 263.832031 271.230469 263.714844 Z M 271.230469 263.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.039062 260.898438 C 270.039062 260.78125 269.945312 260.6875 269.828125 260.6875 C 269.710938 260.6875 269.617188 260.78125 269.617188 260.898438 C 269.617188 261.015625 269.710938 261.109375 269.828125 261.109375 C 269.945312 261.109375 270.039062 261.015625 270.039062 260.898438 Z M 270.039062 260.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.050781 262.699219 C 271.050781 262.582031 270.957031 262.488281 270.839844 262.488281 C 270.722656 262.488281 270.628906 262.582031 270.628906 262.699219 C 270.628906 262.816406 270.722656 262.910156 270.839844 262.910156 C 270.957031 262.910156 271.050781 262.816406 271.050781 262.699219 Z M 271.050781 262.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.246094 262.84375 C 273.246094 262.726562 273.152344 262.632812 273.035156 262.632812 C 272.917969 262.632812 272.824219 262.726562 272.824219 262.84375 C 272.824219 262.960938 272.917969 263.054688 273.035156 263.054688 C 273.152344 263.054688 273.246094 262.960938 273.246094 262.84375 Z M 273.246094 262.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.367188 264.566406 C 276.367188 264.449219 276.273438 264.355469 276.15625 264.355469 C 276.039062 264.355469 275.945312 264.449219 275.945312 264.566406 C 275.945312 264.683594 276.039062 264.777344 276.15625 264.777344 C 276.273438 264.777344 276.367188 264.683594 276.367188 264.566406 Z M 276.367188 264.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.175781 264.996094 C 277.175781 264.878906 277.082031 264.785156 276.964844 264.785156 C 276.847656 264.785156 276.753906 264.878906 276.753906 264.996094 C 276.753906 265.113281 276.847656 265.207031 276.964844 265.207031 C 277.082031 265.207031 277.175781 265.113281 277.175781 264.996094 Z M 277.175781 264.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.496094 260.890625 C 276.496094 260.773438 276.402344 260.679688 276.285156 260.679688 C 276.167969 260.679688 276.074219 260.773438 276.074219 260.890625 C 276.074219 261.007812 276.167969 261.101562 276.285156 261.101562 C 276.402344 261.101562 276.496094 261.007812 276.496094 260.890625 Z M 276.496094 260.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.667969 258.027344 C 274.667969 257.910156 274.574219 257.816406 274.457031 257.816406 C 274.339844 257.816406 274.246094 257.910156 274.246094 258.027344 C 274.246094 258.144531 274.339844 258.238281 274.457031 258.238281 C 274.574219 258.238281 274.667969 258.144531 274.667969 258.027344 Z M 274.667969 258.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.585938 259.730469 C 274.585938 259.613281 274.492188 259.519531 274.375 259.519531 C 274.257812 259.519531 274.164062 259.613281 274.164062 259.730469 C 274.164062 259.847656 274.257812 259.941406 274.375 259.941406 C 274.492188 259.941406 274.585938 259.847656 274.585938 259.730469 Z M 274.585938 259.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.066406 257.628906 C 272.066406 257.511719 271.972656 257.417969 271.855469 257.417969 C 271.738281 257.417969 271.644531 257.511719 271.644531 257.628906 C 271.644531 257.746094 271.738281 257.839844 271.855469 257.839844 C 271.972656 257.839844 272.066406 257.746094 272.066406 257.628906 Z M 272.066406 257.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.519531 257.929688 C 275.519531 257.8125 275.425781 257.71875 275.308594 257.71875 C 275.191406 257.71875 275.097656 257.8125 275.097656 257.929688 C 275.097656 258.046875 275.191406 258.140625 275.308594 258.140625 C 275.425781 258.140625 275.519531 258.046875 275.519531 257.929688 Z M 275.519531 257.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.574219 259.203125 C 276.574219 259.085938 276.480469 258.992188 276.363281 258.992188 C 276.246094 258.992188 276.152344 259.085938 276.152344 259.203125 C 276.152344 259.320312 276.246094 259.414062 276.363281 259.414062 C 276.480469 259.414062 276.574219 259.320312 276.574219 259.203125 Z M 276.574219 259.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.027344 262.332031 C 275.027344 262.214844 274.933594 262.121094 274.816406 262.121094 C 274.699219 262.121094 274.605469 262.214844 274.605469 262.332031 C 274.605469 262.449219 274.699219 262.542969 274.816406 262.542969 C 274.933594 262.542969 275.027344 262.449219 275.027344 262.332031 Z M 275.027344 262.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.855469 262.574219 C 275.855469 262.457031 275.761719 262.363281 275.644531 262.363281 C 275.527344 262.363281 275.433594 262.457031 275.433594 262.574219 C 275.433594 262.691406 275.527344 262.785156 275.644531 262.785156 C 275.761719 262.785156 275.855469 262.691406 275.855469 262.574219 Z M 275.855469 262.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.964844 263.941406 C 272.964844 263.824219 272.871094 263.730469 272.753906 263.730469 C 272.636719 263.730469 272.542969 263.824219 272.542969 263.941406 C 272.542969 264.058594 272.636719 264.152344 272.753906 264.152344 C 272.871094 264.152344 272.964844 264.058594 272.964844 263.941406 Z M 272.964844 263.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.660156 265.363281 C 273.660156 265.246094 273.566406 265.152344 273.449219 265.152344 C 273.332031 265.152344 273.238281 265.246094 273.238281 265.363281 C 273.238281 265.480469 273.332031 265.574219 273.449219 265.574219 C 273.566406 265.574219 273.660156 265.480469 273.660156 265.363281 Z M 273.660156 265.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.324219 268.105469 C 274.324219 267.988281 274.230469 267.894531 274.113281 267.894531 C 273.996094 267.894531 273.902344 267.988281 273.902344 268.105469 C 273.902344 268.222656 273.996094 268.316406 274.113281 268.316406 C 274.230469 268.316406 274.324219 268.222656 274.324219 268.105469 Z M 274.324219 268.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.324219 262.863281 C 277.324219 262.746094 277.230469 262.652344 277.113281 262.652344 C 276.996094 262.652344 276.902344 262.746094 276.902344 262.863281 C 276.902344 262.980469 276.996094 263.074219 277.113281 263.074219 C 277.230469 263.074219 277.324219 262.980469 277.324219 262.863281 Z M 277.324219 262.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.238281 261.5625 C 280.238281 261.445312 280.144531 261.351562 280.027344 261.351562 C 279.910156 261.351562 279.816406 261.445312 279.816406 261.5625 C 279.816406 261.679688 279.910156 261.773438 280.027344 261.773438 C 280.144531 261.773438 280.238281 261.679688 280.238281 261.5625 Z M 280.238281 261.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.585938 259.613281 C 283.585938 259.496094 283.492188 259.402344 283.375 259.402344 C 283.257812 259.402344 283.164062 259.496094 283.164062 259.613281 C 283.164062 259.730469 283.257812 259.824219 283.375 259.824219 C 283.492188 259.824219 283.585938 259.730469 283.585938 259.613281 Z M 283.585938 259.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.191406 259.742188 C 287.191406 259.625 287.097656 259.53125 286.980469 259.53125 C 286.863281 259.53125 286.769531 259.625 286.769531 259.742188 C 286.769531 259.859375 286.863281 259.953125 286.980469 259.953125 C 287.097656 259.953125 287.191406 259.859375 287.191406 259.742188 Z M 287.191406 259.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.683594 261.710938 C 288.683594 261.59375 288.589844 261.5 288.472656 261.5 C 288.355469 261.5 288.261719 261.59375 288.261719 261.710938 C 288.261719 261.828125 288.355469 261.921875 288.472656 261.921875 C 288.589844 261.921875 288.683594 261.828125 288.683594 261.710938 Z M 288.683594 261.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.222656 262.023438 C 285.222656 261.90625 285.128906 261.8125 285.011719 261.8125 C 284.894531 261.8125 284.800781 261.90625 284.800781 262.023438 C 284.800781 262.140625 284.894531 262.234375 285.011719 262.234375 C 285.128906 262.234375 285.222656 262.140625 285.222656 262.023438 Z M 285.222656 262.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.539062 258.832031 C 291.539062 258.714844 291.445312 258.621094 291.328125 258.621094 C 291.210938 258.621094 291.117188 258.714844 291.117188 258.832031 C 291.117188 258.949219 291.210938 259.042969 291.328125 259.042969 C 291.445312 259.042969 291.539062 258.949219 291.539062 258.832031 Z M 291.539062 258.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.480469 257.691406 C 290.480469 257.574219 290.386719 257.480469 290.269531 257.480469 C 290.152344 257.480469 290.058594 257.574219 290.058594 257.691406 C 290.058594 257.808594 290.152344 257.902344 290.269531 257.902344 C 290.386719 257.902344 290.480469 257.808594 290.480469 257.691406 Z M 290.480469 257.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.460938 256.101562 C 289.460938 255.984375 289.367188 255.890625 289.25 255.890625 C 289.132812 255.890625 289.039062 255.984375 289.039062 256.101562 C 289.039062 256.21875 289.132812 256.3125 289.25 256.3125 C 289.367188 256.3125 289.460938 256.21875 289.460938 256.101562 Z M 289.460938 256.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.160156 255.867188 C 290.160156 255.75 290.066406 255.65625 289.949219 255.65625 C 289.832031 255.65625 289.738281 255.75 289.738281 255.867188 C 289.738281 255.984375 289.832031 256.078125 289.949219 256.078125 C 290.066406 256.078125 290.160156 255.984375 290.160156 255.867188 Z M 290.160156 255.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.148438 253.703125 C 290.148438 253.585938 290.054688 253.492188 289.9375 253.492188 C 289.820312 253.492188 289.726562 253.585938 289.726562 253.703125 C 289.726562 253.820312 289.820312 253.914062 289.9375 253.914062 C 290.054688 253.914062 290.148438 253.820312 290.148438 253.703125 Z M 290.148438 253.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.78125 254.210938 C 288.78125 254.09375 288.6875 254 288.570312 254 C 288.453125 254 288.359375 254.09375 288.359375 254.210938 C 288.359375 254.328125 288.453125 254.421875 288.570312 254.421875 C 288.6875 254.421875 288.78125 254.328125 288.78125 254.210938 Z M 288.78125 254.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.675781 252.613281 C 285.675781 252.496094 285.582031 252.402344 285.464844 252.402344 C 285.347656 252.402344 285.253906 252.496094 285.253906 252.613281 C 285.253906 252.730469 285.347656 252.824219 285.464844 252.824219 C 285.582031 252.824219 285.675781 252.730469 285.675781 252.613281 Z M 285.675781 252.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.171875 249.695312 C 284.171875 249.578125 284.078125 249.484375 283.960938 249.484375 C 283.84375 249.484375 283.75 249.578125 283.75 249.695312 C 283.75 249.8125 283.84375 249.90625 283.960938 249.90625 C 284.078125 249.90625 284.171875 249.8125 284.171875 249.695312 Z M 284.171875 249.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.898438 249.671875 C 283.898438 249.554688 283.804688 249.460938 283.6875 249.460938 C 283.570312 249.460938 283.476562 249.554688 283.476562 249.671875 C 283.476562 249.789062 283.570312 249.882812 283.6875 249.882812 C 283.804688 249.882812 283.898438 249.789062 283.898438 249.671875 Z M 283.898438 249.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.265625 250.488281 C 281.265625 250.371094 281.171875 250.277344 281.054688 250.277344 C 280.9375 250.277344 280.84375 250.371094 280.84375 250.488281 C 280.84375 250.605469 280.9375 250.699219 281.054688 250.699219 C 281.171875 250.699219 281.265625 250.605469 281.265625 250.488281 Z M 281.265625 250.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.75 251.148438 C 278.75 251.03125 278.65625 250.9375 278.539062 250.9375 C 278.421875 250.9375 278.328125 251.03125 278.328125 251.148438 C 278.328125 251.265625 278.421875 251.359375 278.539062 251.359375 C 278.65625 251.359375 278.75 251.265625 278.75 251.148438 Z M 278.75 251.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.109375 251.898438 C 283.109375 251.78125 283.015625 251.6875 282.898438 251.6875 C 282.78125 251.6875 282.6875 251.78125 282.6875 251.898438 C 282.6875 252.015625 282.78125 252.109375 282.898438 252.109375 C 283.015625 252.109375 283.109375 252.015625 283.109375 251.898438 Z M 283.109375 251.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.222656 254.996094 C 284.222656 254.878906 284.128906 254.785156 284.011719 254.785156 C 283.894531 254.785156 283.800781 254.878906 283.800781 254.996094 C 283.800781 255.113281 283.894531 255.207031 284.011719 255.207031 C 284.128906 255.207031 284.222656 255.113281 284.222656 254.996094 Z M 284.222656 254.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.859375 255.554688 C 284.859375 255.4375 284.765625 255.34375 284.648438 255.34375 C 284.53125 255.34375 284.4375 255.4375 284.4375 255.554688 C 284.4375 255.671875 284.53125 255.765625 284.648438 255.765625 C 284.765625 255.765625 284.859375 255.671875 284.859375 255.554688 Z M 284.859375 255.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.710938 255.492188 C 288.710938 255.375 288.617188 255.28125 288.5 255.28125 C 288.382812 255.28125 288.289062 255.375 288.289062 255.492188 C 288.289062 255.609375 288.382812 255.703125 288.5 255.703125 C 288.617188 255.703125 288.710938 255.609375 288.710938 255.492188 Z M 288.710938 255.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.386719 254.40625 C 287.386719 254.289062 287.292969 254.195312 287.175781 254.195312 C 287.058594 254.195312 286.964844 254.289062 286.964844 254.40625 C 286.964844 254.523438 287.058594 254.617188 287.175781 254.617188 C 287.292969 254.617188 287.386719 254.523438 287.386719 254.40625 Z M 287.386719 254.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.015625 254.457031 C 289.015625 254.339844 288.921875 254.246094 288.804688 254.246094 C 288.6875 254.246094 288.59375 254.339844 288.59375 254.457031 C 288.59375 254.574219 288.6875 254.667969 288.804688 254.667969 C 288.921875 254.667969 289.015625 254.574219 289.015625 254.457031 Z M 289.015625 254.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.5 254.730469 C 285.5 254.613281 285.40625 254.519531 285.289062 254.519531 C 285.171875 254.519531 285.078125 254.613281 285.078125 254.730469 C 285.078125 254.847656 285.171875 254.941406 285.289062 254.941406 C 285.40625 254.941406 285.5 254.847656 285.5 254.730469 Z M 285.5 254.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.136719 252.179688 C 288.136719 252.0625 288.042969 251.96875 287.925781 251.96875 C 287.808594 251.96875 287.714844 252.0625 287.714844 252.179688 C 287.714844 252.296875 287.808594 252.390625 287.925781 252.390625 C 288.042969 252.390625 288.136719 252.296875 288.136719 252.179688 Z M 288.136719 252.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.878906 254.15625 C 286.878906 254.039062 286.785156 253.945312 286.667969 253.945312 C 286.550781 253.945312 286.457031 254.039062 286.457031 254.15625 C 286.457031 254.273438 286.550781 254.367188 286.667969 254.367188 C 286.785156 254.367188 286.878906 254.273438 286.878906 254.15625 Z M 286.878906 254.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.207031 255.265625 C 286.207031 255.148438 286.113281 255.054688 285.996094 255.054688 C 285.878906 255.054688 285.785156 255.148438 285.785156 255.265625 C 285.785156 255.382812 285.878906 255.476562 285.996094 255.476562 C 286.113281 255.476562 286.207031 255.382812 286.207031 255.265625 Z M 286.207031 255.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.199219 256.269531 C 285.199219 256.152344 285.105469 256.058594 284.988281 256.058594 C 284.871094 256.058594 284.777344 256.152344 284.777344 256.269531 C 284.777344 256.386719 284.871094 256.480469 284.988281 256.480469 C 285.105469 256.480469 285.199219 256.386719 285.199219 256.269531 Z M 285.199219 256.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.222656 259.539062 C 284.222656 259.421875 284.128906 259.328125 284.011719 259.328125 C 283.894531 259.328125 283.800781 259.421875 283.800781 259.539062 C 283.800781 259.65625 283.894531 259.75 284.011719 259.75 C 284.128906 259.75 284.222656 259.65625 284.222656 259.539062 Z M 284.222656 259.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.527344 256.613281 C 284.527344 256.496094 284.433594 256.402344 284.316406 256.402344 C 284.199219 256.402344 284.105469 256.496094 284.105469 256.613281 C 284.105469 256.730469 284.199219 256.824219 284.316406 256.824219 C 284.433594 256.824219 284.527344 256.730469 284.527344 256.613281 Z M 284.527344 256.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.675781 254.902344 C 285.675781 254.785156 285.582031 254.691406 285.464844 254.691406 C 285.347656 254.691406 285.253906 254.785156 285.253906 254.902344 C 285.253906 255.019531 285.347656 255.113281 285.464844 255.113281 C 285.582031 255.113281 285.675781 255.019531 285.675781 254.902344 Z M 285.675781 254.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.703125 256.003906 C 284.703125 255.886719 284.609375 255.792969 284.492188 255.792969 C 284.375 255.792969 284.28125 255.886719 284.28125 256.003906 C 284.28125 256.121094 284.375 256.214844 284.492188 256.214844 C 284.609375 256.214844 284.703125 256.121094 284.703125 256.003906 Z M 284.703125 256.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.726562 256.394531 C 286.726562 256.277344 286.632812 256.183594 286.515625 256.183594 C 286.398438 256.183594 286.304688 256.277344 286.304688 256.394531 C 286.304688 256.511719 286.398438 256.605469 286.515625 256.605469 C 286.632812 256.605469 286.726562 256.511719 286.726562 256.394531 Z M 286.726562 256.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.417969 256.566406 C 289.417969 256.449219 289.324219 256.355469 289.207031 256.355469 C 289.089844 256.355469 288.996094 256.449219 288.996094 256.566406 C 288.996094 256.683594 289.089844 256.777344 289.207031 256.777344 C 289.324219 256.777344 289.417969 256.683594 289.417969 256.566406 Z M 289.417969 256.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.320312 257.960938 C 286.320312 257.84375 286.226562 257.75 286.109375 257.75 C 285.992188 257.75 285.898438 257.84375 285.898438 257.960938 C 285.898438 258.078125 285.992188 258.171875 286.109375 258.171875 C 286.226562 258.171875 286.320312 258.078125 286.320312 257.960938 Z M 286.320312 257.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.546875 255.875 C 283.546875 255.757812 283.453125 255.664062 283.335938 255.664062 C 283.21875 255.664062 283.125 255.757812 283.125 255.875 C 283.125 255.992188 283.21875 256.085938 283.335938 256.085938 C 283.453125 256.085938 283.546875 255.992188 283.546875 255.875 Z M 283.546875 255.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.335938 251.824219 C 286.335938 251.707031 286.242188 251.613281 286.125 251.613281 C 286.007812 251.613281 285.914062 251.707031 285.914062 251.824219 C 285.914062 251.941406 286.007812 252.035156 286.125 252.035156 C 286.242188 252.035156 286.335938 251.941406 286.335938 251.824219 Z M 286.335938 251.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.8125 252.398438 C 289.8125 252.28125 289.71875 252.1875 289.601562 252.1875 C 289.484375 252.1875 289.390625 252.28125 289.390625 252.398438 C 289.390625 252.515625 289.484375 252.609375 289.601562 252.609375 C 289.71875 252.609375 289.8125 252.515625 289.8125 252.398438 Z M 289.8125 252.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.925781 247.652344 C 293.925781 247.535156 293.832031 247.441406 293.714844 247.441406 C 293.597656 247.441406 293.503906 247.535156 293.503906 247.652344 C 293.503906 247.769531 293.597656 247.863281 293.714844 247.863281 C 293.832031 247.863281 293.925781 247.769531 293.925781 247.652344 Z M 293.925781 247.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.34375 247.34375 C 296.34375 247.226562 296.25 247.132812 296.132812 247.132812 C 296.015625 247.132812 295.921875 247.226562 295.921875 247.34375 C 295.921875 247.460938 296.015625 247.554688 296.132812 247.554688 C 296.25 247.554688 296.34375 247.460938 296.34375 247.34375 Z M 296.34375 247.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.605469 245.972656 C 294.605469 245.855469 294.511719 245.761719 294.394531 245.761719 C 294.277344 245.761719 294.183594 245.855469 294.183594 245.972656 C 294.183594 246.089844 294.277344 246.183594 294.394531 246.183594 C 294.511719 246.183594 294.605469 246.089844 294.605469 245.972656 Z M 294.605469 245.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.875 252.117188 C 292.875 252 292.78125 251.90625 292.664062 251.90625 C 292.546875 251.90625 292.453125 252 292.453125 252.117188 C 292.453125 252.234375 292.546875 252.328125 292.664062 252.328125 C 292.78125 252.328125 292.875 252.234375 292.875 252.117188 Z M 292.875 252.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.050781 252.519531 C 295.050781 252.402344 294.957031 252.308594 294.839844 252.308594 C 294.722656 252.308594 294.628906 252.402344 294.628906 252.519531 C 294.628906 252.636719 294.722656 252.730469 294.839844 252.730469 C 294.957031 252.730469 295.050781 252.636719 295.050781 252.519531 Z M 295.050781 252.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.234375 254.277344 C 296.234375 254.160156 296.140625 254.066406 296.023438 254.066406 C 295.90625 254.066406 295.8125 254.160156 295.8125 254.277344 C 295.8125 254.394531 295.90625 254.488281 296.023438 254.488281 C 296.140625 254.488281 296.234375 254.394531 296.234375 254.277344 Z M 296.234375 254.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.371094 252.097656 C 296.371094 251.980469 296.277344 251.886719 296.160156 251.886719 C 296.042969 251.886719 295.949219 251.980469 295.949219 252.097656 C 295.949219 252.214844 296.042969 252.308594 296.160156 252.308594 C 296.277344 252.308594 296.371094 252.214844 296.371094 252.097656 Z M 296.371094 252.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.335938 253.109375 C 295.335938 252.992188 295.242188 252.898438 295.125 252.898438 C 295.007812 252.898438 294.914062 252.992188 294.914062 253.109375 C 294.914062 253.226562 295.007812 253.320312 295.125 253.320312 C 295.242188 253.320312 295.335938 253.226562 295.335938 253.109375 Z M 295.335938 253.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.78125 256.714844 C 290.78125 256.597656 290.6875 256.503906 290.570312 256.503906 C 290.453125 256.503906 290.359375 256.597656 290.359375 256.714844 C 290.359375 256.832031 290.453125 256.925781 290.570312 256.925781 C 290.6875 256.925781 290.78125 256.832031 290.78125 256.714844 Z M 290.78125 256.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.457031 258.8125 C 290.457031 258.695312 290.363281 258.601562 290.246094 258.601562 C 290.128906 258.601562 290.035156 258.695312 290.035156 258.8125 C 290.035156 258.929688 290.128906 259.023438 290.246094 259.023438 C 290.363281 259.023438 290.457031 258.929688 290.457031 258.8125 Z M 290.457031 258.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.96875 257.140625 C 290.96875 257.023438 290.875 256.929688 290.757812 256.929688 C 290.640625 256.929688 290.546875 257.023438 290.546875 257.140625 C 290.546875 257.257812 290.640625 257.351562 290.757812 257.351562 C 290.875 257.351562 290.96875 257.257812 290.96875 257.140625 Z M 290.96875 257.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.0625 255.855469 C 290.0625 255.738281 289.96875 255.644531 289.851562 255.644531 C 289.734375 255.644531 289.640625 255.738281 289.640625 255.855469 C 289.640625 255.972656 289.734375 256.066406 289.851562 256.066406 C 289.96875 256.066406 290.0625 255.972656 290.0625 255.855469 Z M 290.0625 255.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.101562 258.386719 C 291.101562 258.269531 291.007812 258.175781 290.890625 258.175781 C 290.773438 258.175781 290.679688 258.269531 290.679688 258.386719 C 290.679688 258.503906 290.773438 258.597656 290.890625 258.597656 C 291.007812 258.597656 291.101562 258.503906 291.101562 258.386719 Z M 291.101562 258.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.394531 256.90625 C 290.394531 256.789062 290.300781 256.695312 290.183594 256.695312 C 290.066406 256.695312 289.972656 256.789062 289.972656 256.90625 C 289.972656 257.023438 290.066406 257.117188 290.183594 257.117188 C 290.300781 257.117188 290.394531 257.023438 290.394531 256.90625 Z M 290.394531 256.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.402344 257.65625 C 291.402344 257.539062 291.308594 257.445312 291.191406 257.445312 C 291.074219 257.445312 290.980469 257.539062 290.980469 257.65625 C 290.980469 257.773438 291.074219 257.867188 291.191406 257.867188 C 291.308594 257.867188 291.402344 257.773438 291.402344 257.65625 Z M 291.402344 257.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.480469 258.679688 C 291.480469 258.5625 291.386719 258.46875 291.269531 258.46875 C 291.152344 258.46875 291.058594 258.5625 291.058594 258.679688 C 291.058594 258.796875 291.152344 258.890625 291.269531 258.890625 C 291.386719 258.890625 291.480469 258.796875 291.480469 258.679688 Z M 291.480469 258.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.660156 258.019531 C 293.660156 257.902344 293.566406 257.808594 293.449219 257.808594 C 293.332031 257.808594 293.238281 257.902344 293.238281 258.019531 C 293.238281 258.136719 293.332031 258.230469 293.449219 258.230469 C 293.566406 258.230469 293.660156 258.136719 293.660156 258.019531 Z M 293.660156 258.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.582031 259.457031 C 292.582031 259.339844 292.488281 259.246094 292.371094 259.246094 C 292.253906 259.246094 292.160156 259.339844 292.160156 259.457031 C 292.160156 259.574219 292.253906 259.667969 292.371094 259.667969 C 292.488281 259.667969 292.582031 259.574219 292.582031 259.457031 Z M 292.582031 259.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.660156 261.050781 C 290.660156 260.933594 290.566406 260.839844 290.449219 260.839844 C 290.332031 260.839844 290.238281 260.933594 290.238281 261.050781 C 290.238281 261.167969 290.332031 261.261719 290.449219 261.261719 C 290.566406 261.261719 290.660156 261.167969 290.660156 261.050781 Z M 290.660156 261.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.070312 260.820312 C 293.070312 260.703125 292.976562 260.609375 292.859375 260.609375 C 292.742188 260.609375 292.648438 260.703125 292.648438 260.820312 C 292.648438 260.9375 292.742188 261.03125 292.859375 261.03125 C 292.976562 261.03125 293.070312 260.9375 293.070312 260.820312 Z M 293.070312 260.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.386719 263.621094 C 292.386719 263.503906 292.292969 263.410156 292.175781 263.410156 C 292.058594 263.410156 291.964844 263.503906 291.964844 263.621094 C 291.964844 263.738281 292.058594 263.832031 292.175781 263.832031 C 292.292969 263.832031 292.386719 263.738281 292.386719 263.621094 Z M 292.386719 263.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.308594 265.273438 C 291.308594 265.15625 291.214844 265.0625 291.097656 265.0625 C 290.980469 265.0625 290.886719 265.15625 290.886719 265.273438 C 290.886719 265.390625 290.980469 265.484375 291.097656 265.484375 C 291.214844 265.484375 291.308594 265.390625 291.308594 265.273438 Z M 291.308594 265.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.347656 268.789062 C 289.347656 268.671875 289.253906 268.578125 289.136719 268.578125 C 289.019531 268.578125 288.925781 268.671875 288.925781 268.789062 C 288.925781 268.90625 289.019531 269 289.136719 269 C 289.253906 269 289.347656 268.90625 289.347656 268.789062 Z M 289.347656 268.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.632812 269.71875 C 290.632812 269.601562 290.539062 269.507812 290.421875 269.507812 C 290.304688 269.507812 290.210938 269.601562 290.210938 269.71875 C 290.210938 269.835938 290.304688 269.929688 290.421875 269.929688 C 290.539062 269.929688 290.632812 269.835938 290.632812 269.71875 Z M 290.632812 269.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.699219 270.78125 C 287.699219 270.664062 287.605469 270.570312 287.488281 270.570312 C 287.371094 270.570312 287.277344 270.664062 287.277344 270.78125 C 287.277344 270.898438 287.371094 270.992188 287.488281 270.992188 C 287.605469 270.992188 287.699219 270.898438 287.699219 270.78125 Z M 287.699219 270.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.359375 274.4375 C 287.359375 274.320312 287.265625 274.226562 287.148438 274.226562 C 287.03125 274.226562 286.9375 274.320312 286.9375 274.4375 C 286.9375 274.554688 287.03125 274.648438 287.148438 274.648438 C 287.265625 274.648438 287.359375 274.554688 287.359375 274.4375 Z M 287.359375 274.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.660156 270.941406 C 288.660156 270.824219 288.566406 270.730469 288.449219 270.730469 C 288.332031 270.730469 288.238281 270.824219 288.238281 270.941406 C 288.238281 271.058594 288.332031 271.152344 288.449219 271.152344 C 288.566406 271.152344 288.660156 271.058594 288.660156 270.941406 Z M 288.660156 270.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.761719 272.039062 C 290.761719 271.921875 290.667969 271.828125 290.550781 271.828125 C 290.433594 271.828125 290.339844 271.921875 290.339844 272.039062 C 290.339844 272.15625 290.433594 272.25 290.550781 272.25 C 290.667969 272.25 290.761719 272.15625 290.761719 272.039062 Z M 290.761719 272.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.621094 273.488281 C 289.621094 273.371094 289.527344 273.277344 289.410156 273.277344 C 289.292969 273.277344 289.199219 273.371094 289.199219 273.488281 C 289.199219 273.605469 289.292969 273.699219 289.410156 273.699219 C 289.527344 273.699219 289.621094 273.605469 289.621094 273.488281 Z M 289.621094 273.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.726562 272.195312 C 291.726562 272.078125 291.632812 271.984375 291.515625 271.984375 C 291.398438 271.984375 291.304688 272.078125 291.304688 272.195312 C 291.304688 272.3125 291.398438 272.40625 291.515625 272.40625 C 291.632812 272.40625 291.726562 272.3125 291.726562 272.195312 Z M 291.726562 272.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.199219 269.125 C 288.199219 269.007812 288.105469 268.914062 287.988281 268.914062 C 287.871094 268.914062 287.777344 269.007812 287.777344 269.125 C 287.777344 269.242188 287.871094 269.335938 287.988281 269.335938 C 288.105469 269.335938 288.199219 269.242188 288.199219 269.125 Z M 288.199219 269.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.046875 269.652344 C 290.046875 269.535156 289.953125 269.441406 289.835938 269.441406 C 289.71875 269.441406 289.625 269.535156 289.625 269.652344 C 289.625 269.769531 289.71875 269.863281 289.835938 269.863281 C 289.953125 269.863281 290.046875 269.769531 290.046875 269.652344 Z M 290.046875 269.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288 269.269531 C 288 269.152344 287.90625 269.058594 287.789062 269.058594 C 287.671875 269.058594 287.578125 269.152344 287.578125 269.269531 C 287.578125 269.386719 287.671875 269.480469 287.789062 269.480469 C 287.90625 269.480469 288 269.386719 288 269.269531 Z M 288 269.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.972656 266.089844 C 289.972656 265.972656 289.878906 265.878906 289.761719 265.878906 C 289.644531 265.878906 289.550781 265.972656 289.550781 266.089844 C 289.550781 266.207031 289.644531 266.300781 289.761719 266.300781 C 289.878906 266.300781 289.972656 266.207031 289.972656 266.089844 Z M 289.972656 266.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.921875 263.285156 C 288.921875 263.167969 288.828125 263.074219 288.710938 263.074219 C 288.59375 263.074219 288.5 263.167969 288.5 263.285156 C 288.5 263.402344 288.59375 263.496094 288.710938 263.496094 C 288.828125 263.496094 288.921875 263.402344 288.921875 263.285156 Z M 288.921875 263.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.203125 264.332031 C 286.203125 264.214844 286.109375 264.121094 285.992188 264.121094 C 285.875 264.121094 285.78125 264.214844 285.78125 264.332031 C 285.78125 264.449219 285.875 264.542969 285.992188 264.542969 C 286.109375 264.542969 286.203125 264.449219 286.203125 264.332031 Z M 286.203125 264.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.746094 266.875 C 287.746094 266.757812 287.652344 266.664062 287.535156 266.664062 C 287.417969 266.664062 287.324219 266.757812 287.324219 266.875 C 287.324219 266.992188 287.417969 267.085938 287.535156 267.085938 C 287.652344 267.085938 287.746094 266.992188 287.746094 266.875 Z M 287.746094 266.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.59375 263.761719 C 288.59375 263.644531 288.5 263.550781 288.382812 263.550781 C 288.265625 263.550781 288.171875 263.644531 288.171875 263.761719 C 288.171875 263.878906 288.265625 263.972656 288.382812 263.972656 C 288.5 263.972656 288.59375 263.878906 288.59375 263.761719 Z M 288.59375 263.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.316406 265.867188 C 290.316406 265.75 290.222656 265.65625 290.105469 265.65625 C 289.988281 265.65625 289.894531 265.75 289.894531 265.867188 C 289.894531 265.984375 289.988281 266.078125 290.105469 266.078125 C 290.222656 266.078125 290.316406 265.984375 290.316406 265.867188 Z M 290.316406 265.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.089844 267.347656 C 287.089844 267.230469 286.996094 267.136719 286.878906 267.136719 C 286.761719 267.136719 286.667969 267.230469 286.667969 267.347656 C 286.667969 267.464844 286.761719 267.558594 286.878906 267.558594 C 286.996094 267.558594 287.089844 267.464844 287.089844 267.347656 Z M 287.089844 267.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.925781 268.25 C 287.925781 268.132812 287.832031 268.039062 287.714844 268.039062 C 287.597656 268.039062 287.503906 268.132812 287.503906 268.25 C 287.503906 268.367188 287.597656 268.460938 287.714844 268.460938 C 287.832031 268.460938 287.925781 268.367188 287.925781 268.25 Z M 287.925781 268.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.253906 266.519531 C 288.253906 266.402344 288.160156 266.308594 288.042969 266.308594 C 287.925781 266.308594 287.832031 266.402344 287.832031 266.519531 C 287.832031 266.636719 287.925781 266.730469 288.042969 266.730469 C 288.160156 266.730469 288.253906 266.636719 288.253906 266.519531 Z M 288.253906 266.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.1875 266.0625 C 289.1875 265.945312 289.09375 265.851562 288.976562 265.851562 C 288.859375 265.851562 288.765625 265.945312 288.765625 266.0625 C 288.765625 266.179688 288.859375 266.273438 288.976562 266.273438 C 289.09375 266.273438 289.1875 266.179688 289.1875 266.0625 Z M 289.1875 266.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.320312 263.617188 C 291.320312 263.5 291.226562 263.40625 291.109375 263.40625 C 290.992188 263.40625 290.898438 263.5 290.898438 263.617188 C 290.898438 263.734375 290.992188 263.828125 291.109375 263.828125 C 291.226562 263.828125 291.320312 263.734375 291.320312 263.617188 Z M 291.320312 263.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.484375 263.152344 C 289.484375 263.035156 289.390625 262.941406 289.273438 262.941406 C 289.15625 262.941406 289.0625 263.035156 289.0625 263.152344 C 289.0625 263.269531 289.15625 263.363281 289.273438 263.363281 C 289.390625 263.363281 289.484375 263.269531 289.484375 263.152344 Z M 289.484375 263.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.875 261.5 C 289.875 261.382812 289.78125 261.289062 289.664062 261.289062 C 289.546875 261.289062 289.453125 261.382812 289.453125 261.5 C 289.453125 261.617188 289.546875 261.710938 289.664062 261.710938 C 289.78125 261.710938 289.875 261.617188 289.875 261.5 Z M 289.875 261.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.367188 262.054688 C 292.367188 261.9375 292.273438 261.84375 292.15625 261.84375 C 292.039062 261.84375 291.945312 261.9375 291.945312 262.054688 C 291.945312 262.171875 292.039062 262.265625 292.15625 262.265625 C 292.273438 262.265625 292.367188 262.171875 292.367188 262.054688 Z M 292.367188 262.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.796875 257.375 C 291.796875 257.257812 291.703125 257.164062 291.585938 257.164062 C 291.46875 257.164062 291.375 257.257812 291.375 257.375 C 291.375 257.492188 291.46875 257.585938 291.585938 257.585938 C 291.703125 257.585938 291.796875 257.492188 291.796875 257.375 Z M 291.796875 257.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.066406 255.722656 C 290.066406 255.605469 289.972656 255.511719 289.855469 255.511719 C 289.738281 255.511719 289.644531 255.605469 289.644531 255.722656 C 289.644531 255.839844 289.738281 255.933594 289.855469 255.933594 C 289.972656 255.933594 290.066406 255.839844 290.066406 255.722656 Z M 290.066406 255.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.675781 253.136719 C 290.675781 253.019531 290.582031 252.925781 290.464844 252.925781 C 290.347656 252.925781 290.253906 253.019531 290.253906 253.136719 C 290.253906 253.253906 290.347656 253.347656 290.464844 253.347656 C 290.582031 253.347656 290.675781 253.253906 290.675781 253.136719 Z M 290.675781 253.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.804688 256.105469 C 293.804688 255.988281 293.710938 255.894531 293.59375 255.894531 C 293.476562 255.894531 293.382812 255.988281 293.382812 256.105469 C 293.382812 256.222656 293.476562 256.316406 293.59375 256.316406 C 293.710938 256.316406 293.804688 256.222656 293.804688 256.105469 Z M 293.804688 256.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.9375 254.484375 C 293.9375 254.367188 293.84375 254.273438 293.726562 254.273438 C 293.609375 254.273438 293.515625 254.367188 293.515625 254.484375 C 293.515625 254.601562 293.609375 254.695312 293.726562 254.695312 C 293.84375 254.695312 293.9375 254.601562 293.9375 254.484375 Z M 293.9375 254.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.273438 256.324219 C 292.273438 256.207031 292.179688 256.113281 292.0625 256.113281 C 291.945312 256.113281 291.851562 256.207031 291.851562 256.324219 C 291.851562 256.441406 291.945312 256.535156 292.0625 256.535156 C 292.179688 256.535156 292.273438 256.441406 292.273438 256.324219 Z M 292.273438 256.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.136719 253.371094 C 290.136719 253.253906 290.042969 253.160156 289.925781 253.160156 C 289.808594 253.160156 289.714844 253.253906 289.714844 253.371094 C 289.714844 253.488281 289.808594 253.582031 289.925781 253.582031 C 290.042969 253.582031 290.136719 253.488281 290.136719 253.371094 Z M 290.136719 253.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.058594 253.144531 C 292.058594 253.027344 291.964844 252.933594 291.847656 252.933594 C 291.730469 252.933594 291.636719 253.027344 291.636719 253.144531 C 291.636719 253.261719 291.730469 253.355469 291.847656 253.355469 C 291.964844 253.355469 292.058594 253.261719 292.058594 253.144531 Z M 292.058594 253.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.078125 251.976562 C 296.078125 251.859375 295.984375 251.765625 295.867188 251.765625 C 295.75 251.765625 295.65625 251.859375 295.65625 251.976562 C 295.65625 252.09375 295.75 252.1875 295.867188 252.1875 C 295.984375 252.1875 296.078125 252.09375 296.078125 251.976562 Z M 296.078125 251.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.875 253.210938 C 295.875 253.09375 295.78125 253 295.664062 253 C 295.546875 253 295.453125 253.09375 295.453125 253.210938 C 295.453125 253.328125 295.546875 253.421875 295.664062 253.421875 C 295.78125 253.421875 295.875 253.328125 295.875 253.210938 Z M 295.875 253.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.980469 257.066406 C 297.980469 256.949219 297.886719 256.855469 297.769531 256.855469 C 297.652344 256.855469 297.558594 256.949219 297.558594 257.066406 C 297.558594 257.183594 297.652344 257.277344 297.769531 257.277344 C 297.886719 257.277344 297.980469 257.183594 297.980469 257.066406 Z M 297.980469 257.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.304688 258.238281 C 298.304688 258.121094 298.210938 258.027344 298.09375 258.027344 C 297.976562 258.027344 297.882812 258.121094 297.882812 258.238281 C 297.882812 258.355469 297.976562 258.449219 298.09375 258.449219 C 298.210938 258.449219 298.304688 258.355469 298.304688 258.238281 Z M 298.304688 258.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.214844 258.589844 C 299.214844 258.472656 299.121094 258.378906 299.003906 258.378906 C 298.886719 258.378906 298.792969 258.472656 298.792969 258.589844 C 298.792969 258.707031 298.886719 258.800781 299.003906 258.800781 C 299.121094 258.800781 299.214844 258.707031 299.214844 258.589844 Z M 299.214844 258.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.523438 259.957031 C 304.523438 259.839844 304.429688 259.746094 304.3125 259.746094 C 304.195312 259.746094 304.101562 259.839844 304.101562 259.957031 C 304.101562 260.074219 304.195312 260.167969 304.3125 260.167969 C 304.429688 260.167969 304.523438 260.074219 304.523438 259.957031 Z M 304.523438 259.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.324219 257.050781 C 303.324219 256.933594 303.230469 256.839844 303.113281 256.839844 C 302.996094 256.839844 302.902344 256.933594 302.902344 257.050781 C 302.902344 257.167969 302.996094 257.261719 303.113281 257.261719 C 303.230469 257.261719 303.324219 257.167969 303.324219 257.050781 Z M 303.324219 257.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.789062 257.203125 C 301.789062 257.085938 301.695312 256.992188 301.578125 256.992188 C 301.460938 256.992188 301.367188 257.085938 301.367188 257.203125 C 301.367188 257.320312 301.460938 257.414062 301.578125 257.414062 C 301.695312 257.414062 301.789062 257.320312 301.789062 257.203125 Z M 301.789062 257.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.347656 257.902344 C 300.347656 257.785156 300.253906 257.691406 300.136719 257.691406 C 300.019531 257.691406 299.925781 257.785156 299.925781 257.902344 C 299.925781 258.019531 300.019531 258.113281 300.136719 258.113281 C 300.253906 258.113281 300.347656 258.019531 300.347656 257.902344 Z M 300.347656 257.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.761719 253.738281 C 298.761719 253.621094 298.667969 253.527344 298.550781 253.527344 C 298.433594 253.527344 298.339844 253.621094 298.339844 253.738281 C 298.339844 253.855469 298.433594 253.949219 298.550781 253.949219 C 298.667969 253.949219 298.761719 253.855469 298.761719 253.738281 Z M 298.761719 253.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.148438 254 C 301.148438 253.882812 301.054688 253.789062 300.9375 253.789062 C 300.820312 253.789062 300.726562 253.882812 300.726562 254 C 300.726562 254.117188 300.820312 254.210938 300.9375 254.210938 C 301.054688 254.210938 301.148438 254.117188 301.148438 254 Z M 301.148438 254 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.726562 253.808594 C 302.726562 253.691406 302.632812 253.597656 302.515625 253.597656 C 302.398438 253.597656 302.304688 253.691406 302.304688 253.808594 C 302.304688 253.925781 302.398438 254.019531 302.515625 254.019531 C 302.632812 254.019531 302.726562 253.925781 302.726562 253.808594 Z M 302.726562 253.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.789062 250.085938 C 304.789062 249.96875 304.695312 249.875 304.578125 249.875 C 304.460938 249.875 304.367188 249.96875 304.367188 250.085938 C 304.367188 250.203125 304.460938 250.296875 304.578125 250.296875 C 304.695312 250.296875 304.789062 250.203125 304.789062 250.085938 Z M 304.789062 250.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.078125 253.597656 C 305.078125 253.480469 304.984375 253.386719 304.867188 253.386719 C 304.75 253.386719 304.65625 253.480469 304.65625 253.597656 C 304.65625 253.714844 304.75 253.808594 304.867188 253.808594 C 304.984375 253.808594 305.078125 253.714844 305.078125 253.597656 Z M 305.078125 253.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.484375 255.691406 C 307.484375 255.574219 307.390625 255.480469 307.273438 255.480469 C 307.15625 255.480469 307.0625 255.574219 307.0625 255.691406 C 307.0625 255.808594 307.15625 255.902344 307.273438 255.902344 C 307.390625 255.902344 307.484375 255.808594 307.484375 255.691406 Z M 307.484375 255.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.996094 253.171875 C 308.996094 253.054688 308.902344 252.960938 308.785156 252.960938 C 308.667969 252.960938 308.574219 253.054688 308.574219 253.171875 C 308.574219 253.289062 308.667969 253.382812 308.785156 253.382812 C 308.902344 253.382812 308.996094 253.289062 308.996094 253.171875 Z M 308.996094 253.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.671875 249.863281 C 310.671875 249.746094 310.578125 249.652344 310.460938 249.652344 C 310.34375 249.652344 310.25 249.746094 310.25 249.863281 C 310.25 249.980469 310.34375 250.074219 310.460938 250.074219 C 310.578125 250.074219 310.671875 249.980469 310.671875 249.863281 Z M 310.671875 249.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.199219 249.609375 C 312.199219 249.492188 312.105469 249.398438 311.988281 249.398438 C 311.871094 249.398438 311.777344 249.492188 311.777344 249.609375 C 311.777344 249.726562 311.871094 249.820312 311.988281 249.820312 C 312.105469 249.820312 312.199219 249.726562 312.199219 249.609375 Z M 312.199219 249.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.449219 250.394531 C 314.449219 250.277344 314.355469 250.183594 314.238281 250.183594 C 314.121094 250.183594 314.027344 250.277344 314.027344 250.394531 C 314.027344 250.511719 314.121094 250.605469 314.238281 250.605469 C 314.355469 250.605469 314.449219 250.511719 314.449219 250.394531 Z M 314.449219 250.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.113281 249.992188 C 317.113281 249.875 317.019531 249.78125 316.902344 249.78125 C 316.785156 249.78125 316.691406 249.875 316.691406 249.992188 C 316.691406 250.109375 316.785156 250.203125 316.902344 250.203125 C 317.019531 250.203125 317.113281 250.109375 317.113281 249.992188 Z M 317.113281 249.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.027344 248.839844 C 317.027344 248.722656 316.933594 248.628906 316.816406 248.628906 C 316.699219 248.628906 316.605469 248.722656 316.605469 248.839844 C 316.605469 248.957031 316.699219 249.050781 316.816406 249.050781 C 316.933594 249.050781 317.027344 248.957031 317.027344 248.839844 Z M 317.027344 248.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.386719 251.914062 C 321.386719 251.796875 321.292969 251.703125 321.175781 251.703125 C 321.058594 251.703125 320.964844 251.796875 320.964844 251.914062 C 320.964844 252.03125 321.058594 252.125 321.175781 252.125 C 321.292969 252.125 321.386719 252.03125 321.386719 251.914062 Z M 321.386719 251.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.421875 253.617188 C 325.421875 253.5 325.328125 253.40625 325.210938 253.40625 C 325.09375 253.40625 325 253.5 325 253.617188 C 325 253.734375 325.09375 253.828125 325.210938 253.828125 C 325.328125 253.828125 325.421875 253.734375 325.421875 253.617188 Z M 325.421875 253.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.523438 253.515625 C 325.523438 253.398438 325.429688 253.304688 325.3125 253.304688 C 325.195312 253.304688 325.101562 253.398438 325.101562 253.515625 C 325.101562 253.632812 325.195312 253.726562 325.3125 253.726562 C 325.429688 253.726562 325.523438 253.632812 325.523438 253.515625 Z M 325.523438 253.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.914062 256.125 C 323.914062 256.007812 323.820312 255.914062 323.703125 255.914062 C 323.585938 255.914062 323.492188 256.007812 323.492188 256.125 C 323.492188 256.242188 323.585938 256.335938 323.703125 256.335938 C 323.820312 256.335938 323.914062 256.242188 323.914062 256.125 Z M 323.914062 256.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.410156 256.398438 C 323.410156 256.28125 323.316406 256.1875 323.199219 256.1875 C 323.082031 256.1875 322.988281 256.28125 322.988281 256.398438 C 322.988281 256.515625 323.082031 256.609375 323.199219 256.609375 C 323.316406 256.609375 323.410156 256.515625 323.410156 256.398438 Z M 323.410156 256.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.710938 256.109375 C 321.710938 255.992188 321.617188 255.898438 321.5 255.898438 C 321.382812 255.898438 321.289062 255.992188 321.289062 256.109375 C 321.289062 256.226562 321.382812 256.320312 321.5 256.320312 C 321.617188 256.320312 321.710938 256.226562 321.710938 256.109375 Z M 321.710938 256.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.496094 255.5625 C 321.496094 255.445312 321.402344 255.351562 321.285156 255.351562 C 321.167969 255.351562 321.074219 255.445312 321.074219 255.5625 C 321.074219 255.679688 321.167969 255.773438 321.285156 255.773438 C 321.402344 255.773438 321.496094 255.679688 321.496094 255.5625 Z M 321.496094 255.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.238281 254.453125 C 324.238281 254.335938 324.144531 254.242188 324.027344 254.242188 C 323.910156 254.242188 323.816406 254.335938 323.816406 254.453125 C 323.816406 254.570312 323.910156 254.664062 324.027344 254.664062 C 324.144531 254.664062 324.238281 254.570312 324.238281 254.453125 Z M 324.238281 254.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.234375 251.125 C 324.234375 251.007812 324.140625 250.914062 324.023438 250.914062 C 323.90625 250.914062 323.8125 251.007812 323.8125 251.125 C 323.8125 251.242188 323.90625 251.335938 324.023438 251.335938 C 324.140625 251.335938 324.234375 251.242188 324.234375 251.125 Z M 324.234375 251.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.015625 244.941406 C 326.015625 244.824219 325.921875 244.730469 325.804688 244.730469 C 325.6875 244.730469 325.59375 244.824219 325.59375 244.941406 C 325.59375 245.058594 325.6875 245.152344 325.804688 245.152344 C 325.921875 245.152344 326.015625 245.058594 326.015625 244.941406 Z M 326.015625 244.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.4375 242.214844 C 325.4375 242.097656 325.34375 242.003906 325.226562 242.003906 C 325.109375 242.003906 325.015625 242.097656 325.015625 242.214844 C 325.015625 242.332031 325.109375 242.425781 325.226562 242.425781 C 325.34375 242.425781 325.4375 242.332031 325.4375 242.214844 Z M 325.4375 242.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.453125 241.136719 C 327.453125 241.019531 327.359375 240.925781 327.242188 240.925781 C 327.125 240.925781 327.03125 241.019531 327.03125 241.136719 C 327.03125 241.253906 327.125 241.347656 327.242188 241.347656 C 327.359375 241.347656 327.453125 241.253906 327.453125 241.136719 Z M 327.453125 241.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.488281 239.226562 C 325.488281 239.109375 325.394531 239.015625 325.277344 239.015625 C 325.160156 239.015625 325.066406 239.109375 325.066406 239.226562 C 325.066406 239.34375 325.160156 239.4375 325.277344 239.4375 C 325.394531 239.4375 325.488281 239.34375 325.488281 239.226562 Z M 325.488281 239.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.191406 238.570312 C 325.191406 238.453125 325.097656 238.359375 324.980469 238.359375 C 324.863281 238.359375 324.769531 238.453125 324.769531 238.570312 C 324.769531 238.6875 324.863281 238.78125 324.980469 238.78125 C 325.097656 238.78125 325.191406 238.6875 325.191406 238.570312 Z M 325.191406 238.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 320.527344 238.125 C 320.527344 238.007812 320.433594 237.914062 320.316406 237.914062 C 320.199219 237.914062 320.105469 238.007812 320.105469 238.125 C 320.105469 238.242188 320.199219 238.335938 320.316406 238.335938 C 320.433594 238.335938 320.527344 238.242188 320.527344 238.125 Z M 320.527344 238.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 319.808594 238.566406 C 319.808594 238.449219 319.714844 238.355469 319.597656 238.355469 C 319.480469 238.355469 319.386719 238.449219 319.386719 238.566406 C 319.386719 238.683594 319.480469 238.777344 319.597656 238.777344 C 319.714844 238.777344 319.808594 238.683594 319.808594 238.566406 Z M 319.808594 238.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.5625 239.878906 C 321.5625 239.761719 321.46875 239.667969 321.351562 239.667969 C 321.234375 239.667969 321.140625 239.761719 321.140625 239.878906 C 321.140625 239.996094 321.234375 240.089844 321.351562 240.089844 C 321.46875 240.089844 321.5625 239.996094 321.5625 239.878906 Z M 321.5625 239.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 318.132812 236.027344 C 318.132812 235.910156 318.039062 235.816406 317.921875 235.816406 C 317.804688 235.816406 317.710938 235.910156 317.710938 236.027344 C 317.710938 236.144531 317.804688 236.238281 317.921875 236.238281 C 318.039062 236.238281 318.132812 236.144531 318.132812 236.027344 Z M 318.132812 236.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.746094 236.019531 C 316.746094 235.902344 316.652344 235.808594 316.535156 235.808594 C 316.417969 235.808594 316.324219 235.902344 316.324219 236.019531 C 316.324219 236.136719 316.417969 236.230469 316.535156 236.230469 C 316.652344 236.230469 316.746094 236.136719 316.746094 236.019531 Z M 316.746094 236.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.953125 232.800781 C 313.953125 232.683594 313.859375 232.589844 313.742188 232.589844 C 313.625 232.589844 313.53125 232.683594 313.53125 232.800781 C 313.53125 232.917969 313.625 233.011719 313.742188 233.011719 C 313.859375 233.011719 313.953125 232.917969 313.953125 232.800781 Z M 313.953125 232.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.164062 233.328125 C 317.164062 233.210938 317.070312 233.117188 316.953125 233.117188 C 316.835938 233.117188 316.742188 233.210938 316.742188 233.328125 C 316.742188 233.445312 316.835938 233.539062 316.953125 233.539062 C 317.070312 233.539062 317.164062 233.445312 317.164062 233.328125 Z M 317.164062 233.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.734375 236.242188 C 317.734375 236.125 317.640625 236.03125 317.523438 236.03125 C 317.40625 236.03125 317.3125 236.125 317.3125 236.242188 C 317.3125 236.359375 317.40625 236.453125 317.523438 236.453125 C 317.640625 236.453125 317.734375 236.359375 317.734375 236.242188 Z M 317.734375 236.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 318.339844 235.09375 C 318.339844 234.976562 318.246094 234.882812 318.128906 234.882812 C 318.011719 234.882812 317.917969 234.976562 317.917969 235.09375 C 317.917969 235.210938 318.011719 235.304688 318.128906 235.304688 C 318.246094 235.304688 318.339844 235.210938 318.339844 235.09375 Z M 318.339844 235.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 318.632812 236.171875 C 318.632812 236.054688 318.539062 235.960938 318.421875 235.960938 C 318.304688 235.960938 318.210938 236.054688 318.210938 236.171875 C 318.210938 236.289062 318.304688 236.382812 318.421875 236.382812 C 318.539062 236.382812 318.632812 236.289062 318.632812 236.171875 Z M 318.632812 236.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.074219 240.417969 C 323.074219 240.300781 322.980469 240.207031 322.863281 240.207031 C 322.746094 240.207031 322.652344 240.300781 322.652344 240.417969 C 322.652344 240.535156 322.746094 240.628906 322.863281 240.628906 C 322.980469 240.628906 323.074219 240.535156 323.074219 240.417969 Z M 323.074219 240.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.777344 239.972656 C 323.777344 239.855469 323.683594 239.761719 323.566406 239.761719 C 323.449219 239.761719 323.355469 239.855469 323.355469 239.972656 C 323.355469 240.089844 323.449219 240.183594 323.566406 240.183594 C 323.683594 240.183594 323.777344 240.089844 323.777344 239.972656 Z M 323.777344 239.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 320.503906 238.886719 C 320.503906 238.769531 320.410156 238.675781 320.292969 238.675781 C 320.175781 238.675781 320.082031 238.769531 320.082031 238.886719 C 320.082031 239.003906 320.175781 239.097656 320.292969 239.097656 C 320.410156 239.097656 320.503906 239.003906 320.503906 238.886719 Z M 320.503906 238.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.839844 238.046875 C 316.839844 237.929688 316.746094 237.835938 316.628906 237.835938 C 316.511719 237.835938 316.417969 237.929688 316.417969 238.046875 C 316.417969 238.164062 316.511719 238.257812 316.628906 238.257812 C 316.746094 238.257812 316.839844 238.164062 316.839844 238.046875 Z M 316.839844 238.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 319.28125 239.84375 C 319.28125 239.726562 319.1875 239.632812 319.070312 239.632812 C 318.953125 239.632812 318.859375 239.726562 318.859375 239.84375 C 318.859375 239.960938 318.953125 240.054688 319.070312 240.054688 C 319.1875 240.054688 319.28125 239.960938 319.28125 239.84375 Z M 319.28125 239.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 319.839844 239.765625 C 319.839844 239.648438 319.746094 239.554688 319.628906 239.554688 C 319.511719 239.554688 319.417969 239.648438 319.417969 239.765625 C 319.417969 239.882812 319.511719 239.976562 319.628906 239.976562 C 319.746094 239.976562 319.839844 239.882812 319.839844 239.765625 Z M 319.839844 239.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 317.632812 239.820312 C 317.632812 239.703125 317.539062 239.609375 317.421875 239.609375 C 317.304688 239.609375 317.210938 239.703125 317.210938 239.820312 C 317.210938 239.9375 317.304688 240.03125 317.421875 240.03125 C 317.539062 240.03125 317.632812 239.9375 317.632812 239.820312 Z M 317.632812 239.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.796875 243.464844 C 324.796875 243.347656 324.703125 243.253906 324.585938 243.253906 C 324.46875 243.253906 324.375 243.347656 324.375 243.464844 C 324.375 243.582031 324.46875 243.675781 324.585938 243.675781 C 324.703125 243.675781 324.796875 243.582031 324.796875 243.464844 Z M 324.796875 243.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.53125 244.316406 C 324.53125 244.199219 324.4375 244.105469 324.320312 244.105469 C 324.203125 244.105469 324.109375 244.199219 324.109375 244.316406 C 324.109375 244.433594 324.203125 244.527344 324.320312 244.527344 C 324.4375 244.527344 324.53125 244.433594 324.53125 244.316406 Z M 324.53125 244.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.292969 242.390625 C 325.292969 242.273438 325.199219 242.179688 325.082031 242.179688 C 324.964844 242.179688 324.871094 242.273438 324.871094 242.390625 C 324.871094 242.507812 324.964844 242.601562 325.082031 242.601562 C 325.199219 242.601562 325.292969 242.507812 325.292969 242.390625 Z M 325.292969 242.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.519531 245.089844 C 324.519531 244.972656 324.425781 244.878906 324.308594 244.878906 C 324.191406 244.878906 324.097656 244.972656 324.097656 245.089844 C 324.097656 245.207031 324.191406 245.300781 324.308594 245.300781 C 324.425781 245.300781 324.519531 245.207031 324.519531 245.089844 Z M 324.519531 245.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.914062 246.566406 C 322.914062 246.449219 322.820312 246.355469 322.703125 246.355469 C 322.585938 246.355469 322.492188 246.449219 322.492188 246.566406 C 322.492188 246.683594 322.585938 246.777344 322.703125 246.777344 C 322.820312 246.777344 322.914062 246.683594 322.914062 246.566406 Z M 322.914062 246.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 320.710938 248.554688 C 320.710938 248.4375 320.617188 248.34375 320.5 248.34375 C 320.382812 248.34375 320.289062 248.4375 320.289062 248.554688 C 320.289062 248.671875 320.382812 248.765625 320.5 248.765625 C 320.617188 248.765625 320.710938 248.671875 320.710938 248.554688 Z M 320.710938 248.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.21875 251.164062 C 323.21875 251.046875 323.125 250.953125 323.007812 250.953125 C 322.890625 250.953125 322.796875 251.046875 322.796875 251.164062 C 322.796875 251.28125 322.890625 251.375 323.007812 251.375 C 323.125 251.375 323.21875 251.28125 323.21875 251.164062 Z M 323.21875 251.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 320.671875 251.257812 C 320.671875 251.140625 320.578125 251.046875 320.460938 251.046875 C 320.34375 251.046875 320.25 251.140625 320.25 251.257812 C 320.25 251.375 320.34375 251.46875 320.460938 251.46875 C 320.578125 251.46875 320.671875 251.375 320.671875 251.257812 Z M 320.671875 251.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.625 250.160156 C 321.625 250.042969 321.53125 249.949219 321.414062 249.949219 C 321.296875 249.949219 321.203125 250.042969 321.203125 250.160156 C 321.203125 250.277344 321.296875 250.371094 321.414062 250.371094 C 321.53125 250.371094 321.625 250.277344 321.625 250.160156 Z M 321.625 250.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.882812 250 C 322.882812 249.882812 322.789062 249.789062 322.671875 249.789062 C 322.554688 249.789062 322.460938 249.882812 322.460938 250 C 322.460938 250.117188 322.554688 250.210938 322.671875 250.210938 C 322.789062 250.210938 322.882812 250.117188 322.882812 250 Z M 322.882812 250 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 322.480469 247.871094 C 322.480469 247.753906 322.386719 247.660156 322.269531 247.660156 C 322.152344 247.660156 322.058594 247.753906 322.058594 247.871094 C 322.058594 247.988281 322.152344 248.082031 322.269531 248.082031 C 322.386719 248.082031 322.480469 247.988281 322.480469 247.871094 Z M 322.480469 247.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.164062 245.484375 C 321.164062 245.367188 321.070312 245.273438 320.953125 245.273438 C 320.835938 245.273438 320.742188 245.367188 320.742188 245.484375 C 320.742188 245.601562 320.835938 245.695312 320.953125 245.695312 C 321.070312 245.695312 321.164062 245.601562 321.164062 245.484375 Z M 321.164062 245.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.621094 244.414062 C 324.621094 244.296875 324.527344 244.203125 324.410156 244.203125 C 324.292969 244.203125 324.199219 244.296875 324.199219 244.414062 C 324.199219 244.53125 324.292969 244.625 324.410156 244.625 C 324.527344 244.625 324.621094 244.53125 324.621094 244.414062 Z M 324.621094 244.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.363281 244.722656 C 327.363281 244.605469 327.269531 244.511719 327.152344 244.511719 C 327.035156 244.511719 326.941406 244.605469 326.941406 244.722656 C 326.941406 244.839844 327.035156 244.933594 327.152344 244.933594 C 327.269531 244.933594 327.363281 244.839844 327.363281 244.722656 Z M 327.363281 244.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.355469 246.734375 C 325.355469 246.617188 325.261719 246.523438 325.144531 246.523438 C 325.027344 246.523438 324.933594 246.617188 324.933594 246.734375 C 324.933594 246.851562 325.027344 246.945312 325.144531 246.945312 C 325.261719 246.945312 325.355469 246.851562 325.355469 246.734375 Z M 325.355469 246.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.164062 249.59375 C 324.164062 249.476562 324.070312 249.382812 323.953125 249.382812 C 323.835938 249.382812 323.742188 249.476562 323.742188 249.59375 C 323.742188 249.710938 323.835938 249.804688 323.953125 249.804688 C 324.070312 249.804688 324.164062 249.710938 324.164062 249.59375 Z M 324.164062 249.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.761719 248.085938 C 327.761719 247.96875 327.667969 247.875 327.550781 247.875 C 327.433594 247.875 327.339844 247.96875 327.339844 248.085938 C 327.339844 248.203125 327.433594 248.296875 327.550781 248.296875 C 327.667969 248.296875 327.761719 248.203125 327.761719 248.085938 Z M 327.761719 248.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 330.238281 249.035156 C 330.238281 248.917969 330.144531 248.824219 330.027344 248.824219 C 329.910156 248.824219 329.816406 248.917969 329.816406 249.035156 C 329.816406 249.152344 329.910156 249.246094 330.027344 249.246094 C 330.144531 249.246094 330.238281 249.152344 330.238281 249.035156 Z M 330.238281 249.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 330.4375 250.597656 C 330.4375 250.480469 330.34375 250.386719 330.226562 250.386719 C 330.109375 250.386719 330.015625 250.480469 330.015625 250.597656 C 330.015625 250.714844 330.109375 250.808594 330.226562 250.808594 C 330.34375 250.808594 330.4375 250.714844 330.4375 250.597656 Z M 330.4375 250.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 327.289062 251.789062 C 327.289062 251.671875 327.195312 251.578125 327.078125 251.578125 C 326.960938 251.578125 326.867188 251.671875 326.867188 251.789062 C 326.867188 251.90625 326.960938 252 327.078125 252 C 327.195312 252 327.289062 251.90625 327.289062 251.789062 Z M 327.289062 251.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.472656 254.199219 C 324.472656 254.082031 324.378906 253.988281 324.261719 253.988281 C 324.144531 253.988281 324.050781 254.082031 324.050781 254.199219 C 324.050781 254.316406 324.144531 254.410156 324.261719 254.410156 C 324.378906 254.410156 324.472656 254.316406 324.472656 254.199219 Z M 324.472656 254.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 323.417969 254.132812 C 323.417969 254.015625 323.324219 253.921875 323.207031 253.921875 C 323.089844 253.921875 322.996094 254.015625 322.996094 254.132812 C 322.996094 254.25 323.089844 254.34375 323.207031 254.34375 C 323.324219 254.34375 323.417969 254.25 323.417969 254.132812 Z M 323.417969 254.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.882812 255.914062 C 325.882812 255.796875 325.789062 255.703125 325.671875 255.703125 C 325.554688 255.703125 325.460938 255.796875 325.460938 255.914062 C 325.460938 256.03125 325.554688 256.125 325.671875 256.125 C 325.789062 256.125 325.882812 256.03125 325.882812 255.914062 Z M 325.882812 255.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 328.386719 255.546875 C 328.386719 255.429688 328.292969 255.335938 328.175781 255.335938 C 328.058594 255.335938 327.964844 255.429688 327.964844 255.546875 C 327.964844 255.664062 328.058594 255.757812 328.175781 255.757812 C 328.292969 255.757812 328.386719 255.664062 328.386719 255.546875 Z M 328.386719 255.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 325.609375 254.941406 C 325.609375 254.824219 325.515625 254.730469 325.398438 254.730469 C 325.28125 254.730469 325.1875 254.824219 325.1875 254.941406 C 325.1875 255.058594 325.28125 255.152344 325.398438 255.152344 C 325.515625 255.152344 325.609375 255.058594 325.609375 254.941406 Z M 325.609375 254.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 326.230469 254.199219 C 326.230469 254.082031 326.136719 253.988281 326.019531 253.988281 C 325.902344 253.988281 325.808594 254.082031 325.808594 254.199219 C 325.808594 254.316406 325.902344 254.410156 326.019531 254.410156 C 326.136719 254.410156 326.230469 254.316406 326.230469 254.199219 Z M 326.230469 254.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 324.613281 253.953125 C 324.613281 253.835938 324.519531 253.742188 324.402344 253.742188 C 324.285156 253.742188 324.191406 253.835938 324.191406 253.953125 C 324.191406 254.070312 324.285156 254.164062 324.402344 254.164062 C 324.519531 254.164062 324.613281 254.070312 324.613281 253.953125 Z M 324.613281 253.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 321.859375 254.1875 C 321.859375 254.070312 321.765625 253.976562 321.648438 253.976562 C 321.53125 253.976562 321.4375 254.070312 321.4375 254.1875 C 321.4375 254.304688 321.53125 254.398438 321.648438 254.398438 C 321.765625 254.398438 321.859375 254.304688 321.859375 254.1875 Z M 321.859375 254.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 316.75 250.917969 C 316.75 250.800781 316.65625 250.707031 316.539062 250.707031 C 316.421875 250.707031 316.328125 250.800781 316.328125 250.917969 C 316.328125 251.035156 316.421875 251.128906 316.539062 251.128906 C 316.65625 251.128906 316.75 251.035156 316.75 250.917969 Z M 316.75 250.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.324219 249.90625 C 315.324219 249.789062 315.230469 249.695312 315.113281 249.695312 C 314.996094 249.695312 314.902344 249.789062 314.902344 249.90625 C 314.902344 250.023438 314.996094 250.117188 315.113281 250.117188 C 315.230469 250.117188 315.324219 250.023438 315.324219 249.90625 Z M 315.324219 249.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.660156 249.949219 C 313.660156 249.832031 313.566406 249.738281 313.449219 249.738281 C 313.332031 249.738281 313.238281 249.832031 313.238281 249.949219 C 313.238281 250.066406 313.332031 250.160156 313.449219 250.160156 C 313.566406 250.160156 313.660156 250.066406 313.660156 249.949219 Z M 313.660156 249.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 315.574219 252.410156 C 315.574219 252.292969 315.480469 252.199219 315.363281 252.199219 C 315.246094 252.199219 315.152344 252.292969 315.152344 252.410156 C 315.152344 252.527344 315.246094 252.621094 315.363281 252.621094 C 315.480469 252.621094 315.574219 252.527344 315.574219 252.410156 Z M 315.574219 252.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.816406 252.195312 C 312.816406 252.078125 312.722656 251.984375 312.605469 251.984375 C 312.488281 251.984375 312.394531 252.078125 312.394531 252.195312 C 312.394531 252.3125 312.488281 252.40625 312.605469 252.40625 C 312.722656 252.40625 312.816406 252.3125 312.816406 252.195312 Z M 312.816406 252.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 312.355469 247.875 C 312.355469 247.757812 312.261719 247.664062 312.144531 247.664062 C 312.027344 247.664062 311.933594 247.757812 311.933594 247.875 C 311.933594 247.992188 312.027344 248.085938 312.144531 248.085938 C 312.261719 248.085938 312.355469 247.992188 312.355469 247.875 Z M 312.355469 247.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 314.835938 247.097656 C 314.835938 246.980469 314.742188 246.886719 314.625 246.886719 C 314.507812 246.886719 314.414062 246.980469 314.414062 247.097656 C 314.414062 247.214844 314.507812 247.308594 314.625 247.308594 C 314.742188 247.308594 314.835938 247.214844 314.835938 247.097656 Z M 314.835938 247.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 313.035156 244.59375 C 313.035156 244.476562 312.941406 244.382812 312.824219 244.382812 C 312.707031 244.382812 312.613281 244.476562 312.613281 244.59375 C 312.613281 244.710938 312.707031 244.804688 312.824219 244.804688 C 312.941406 244.804688 313.035156 244.710938 313.035156 244.59375 Z M 313.035156 244.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 310.367188 243.128906 C 310.367188 243.011719 310.273438 242.917969 310.15625 242.917969 C 310.039062 242.917969 309.945312 243.011719 309.945312 243.128906 C 309.945312 243.246094 310.039062 243.339844 310.15625 243.339844 C 310.273438 243.339844 310.367188 243.246094 310.367188 243.128906 Z M 310.367188 243.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.457031 242.476562 C 308.457031 242.359375 308.363281 242.265625 308.246094 242.265625 C 308.128906 242.265625 308.035156 242.359375 308.035156 242.476562 C 308.035156 242.59375 308.128906 242.6875 308.246094 242.6875 C 308.363281 242.6875 308.457031 242.59375 308.457031 242.476562 Z M 308.457031 242.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.089844 243.917969 C 307.089844 243.800781 306.996094 243.707031 306.878906 243.707031 C 306.761719 243.707031 306.667969 243.800781 306.667969 243.917969 C 306.667969 244.035156 306.761719 244.128906 306.878906 244.128906 C 306.996094 244.128906 307.089844 244.035156 307.089844 243.917969 Z M 307.089844 243.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.300781 245.878906 C 303.300781 245.761719 303.207031 245.667969 303.089844 245.667969 C 302.972656 245.667969 302.878906 245.761719 302.878906 245.878906 C 302.878906 245.996094 302.972656 246.089844 303.089844 246.089844 C 303.207031 246.089844 303.300781 245.996094 303.300781 245.878906 Z M 303.300781 245.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.394531 243.632812 C 302.394531 243.515625 302.300781 243.421875 302.183594 243.421875 C 302.066406 243.421875 301.972656 243.515625 301.972656 243.632812 C 301.972656 243.75 302.066406 243.84375 302.183594 243.84375 C 302.300781 243.84375 302.394531 243.75 302.394531 243.632812 Z M 302.394531 243.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.339844 245.300781 C 303.339844 245.183594 303.246094 245.089844 303.128906 245.089844 C 303.011719 245.089844 302.917969 245.183594 302.917969 245.300781 C 302.917969 245.417969 303.011719 245.511719 303.128906 245.511719 C 303.246094 245.511719 303.339844 245.417969 303.339844 245.300781 Z M 303.339844 245.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.402344 247.324219 C 302.402344 247.207031 302.308594 247.113281 302.191406 247.113281 C 302.074219 247.113281 301.980469 247.207031 301.980469 247.324219 C 301.980469 247.441406 302.074219 247.535156 302.191406 247.535156 C 302.308594 247.535156 302.402344 247.441406 302.402344 247.324219 Z M 302.402344 247.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.695312 246.414062 C 299.695312 246.296875 299.601562 246.203125 299.484375 246.203125 C 299.367188 246.203125 299.273438 246.296875 299.273438 246.414062 C 299.273438 246.53125 299.367188 246.625 299.484375 246.625 C 299.601562 246.625 299.695312 246.53125 299.695312 246.414062 Z M 299.695312 246.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.433594 247.460938 C 297.433594 247.34375 297.339844 247.25 297.222656 247.25 C 297.105469 247.25 297.011719 247.34375 297.011719 247.460938 C 297.011719 247.578125 297.105469 247.671875 297.222656 247.671875 C 297.339844 247.671875 297.433594 247.578125 297.433594 247.460938 Z M 297.433594 247.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.636719 247.496094 C 301.636719 247.378906 301.542969 247.285156 301.425781 247.285156 C 301.308594 247.285156 301.214844 247.378906 301.214844 247.496094 C 301.214844 247.613281 301.308594 247.707031 301.425781 247.707031 C 301.542969 247.707031 301.636719 247.613281 301.636719 247.496094 Z M 301.636719 247.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.796875 250.347656 C 301.796875 250.230469 301.703125 250.136719 301.585938 250.136719 C 301.46875 250.136719 301.375 250.230469 301.375 250.347656 C 301.375 250.464844 301.46875 250.558594 301.585938 250.558594 C 301.703125 250.558594 301.796875 250.464844 301.796875 250.347656 Z M 301.796875 250.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.773438 252.820312 C 302.773438 252.703125 302.679688 252.609375 302.5625 252.609375 C 302.445312 252.609375 302.351562 252.703125 302.351562 252.820312 C 302.351562 252.9375 302.445312 253.03125 302.5625 253.03125 C 302.679688 253.03125 302.773438 252.9375 302.773438 252.820312 Z M 302.773438 252.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.441406 251.546875 C 303.441406 251.429688 303.347656 251.335938 303.230469 251.335938 C 303.113281 251.335938 303.019531 251.429688 303.019531 251.546875 C 303.019531 251.664062 303.113281 251.757812 303.230469 251.757812 C 303.347656 251.757812 303.441406 251.664062 303.441406 251.546875 Z M 303.441406 251.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.492188 251.300781 C 303.492188 251.183594 303.398438 251.089844 303.28125 251.089844 C 303.164062 251.089844 303.070312 251.183594 303.070312 251.300781 C 303.070312 251.417969 303.164062 251.511719 303.28125 251.511719 C 303.398438 251.511719 303.492188 251.417969 303.492188 251.300781 Z M 303.492188 251.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.632812 250.113281 C 303.632812 249.996094 303.539062 249.902344 303.421875 249.902344 C 303.304688 249.902344 303.210938 249.996094 303.210938 250.113281 C 303.210938 250.230469 303.304688 250.324219 303.421875 250.324219 C 303.539062 250.324219 303.632812 250.230469 303.632812 250.113281 Z M 303.632812 250.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.242188 249.933594 C 303.242188 249.816406 303.148438 249.722656 303.03125 249.722656 C 302.914062 249.722656 302.820312 249.816406 302.820312 249.933594 C 302.820312 250.050781 302.914062 250.144531 303.03125 250.144531 C 303.148438 250.144531 303.242188 250.050781 303.242188 249.933594 Z M 303.242188 249.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.527344 251.171875 C 302.527344 251.054688 302.433594 250.960938 302.316406 250.960938 C 302.199219 250.960938 302.105469 251.054688 302.105469 251.171875 C 302.105469 251.289062 302.199219 251.382812 302.316406 251.382812 C 302.433594 251.382812 302.527344 251.289062 302.527344 251.171875 Z M 302.527344 251.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.078125 251.191406 C 305.078125 251.074219 304.984375 250.980469 304.867188 250.980469 C 304.75 250.980469 304.65625 251.074219 304.65625 251.191406 C 304.65625 251.308594 304.75 251.402344 304.867188 251.402344 C 304.984375 251.402344 305.078125 251.308594 305.078125 251.191406 Z M 305.078125 251.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.980469 252.375 C 304.980469 252.257812 304.886719 252.164062 304.769531 252.164062 C 304.652344 252.164062 304.558594 252.257812 304.558594 252.375 C 304.558594 252.492188 304.652344 252.585938 304.769531 252.585938 C 304.886719 252.585938 304.980469 252.492188 304.980469 252.375 Z M 304.980469 252.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.066406 250.882812 C 307.066406 250.765625 306.972656 250.671875 306.855469 250.671875 C 306.738281 250.671875 306.644531 250.765625 306.644531 250.882812 C 306.644531 251 306.738281 251.09375 306.855469 251.09375 C 306.972656 251.09375 307.066406 251 307.066406 250.882812 Z M 307.066406 250.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.660156 249.867188 C 308.660156 249.75 308.566406 249.65625 308.449219 249.65625 C 308.332031 249.65625 308.238281 249.75 308.238281 249.867188 C 308.238281 249.984375 308.332031 250.078125 308.449219 250.078125 C 308.566406 250.078125 308.660156 249.984375 308.660156 249.867188 Z M 308.660156 249.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.417969 248.09375 C 307.417969 247.976562 307.324219 247.882812 307.207031 247.882812 C 307.089844 247.882812 306.996094 247.976562 306.996094 248.09375 C 306.996094 248.210938 307.089844 248.304688 307.207031 248.304688 C 307.324219 248.304688 307.417969 248.210938 307.417969 248.09375 Z M 307.417969 248.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 307.621094 248.90625 C 307.621094 248.789062 307.527344 248.695312 307.410156 248.695312 C 307.292969 248.695312 307.199219 248.789062 307.199219 248.90625 C 307.199219 249.023438 307.292969 249.117188 307.410156 249.117188 C 307.527344 249.117188 307.621094 249.023438 307.621094 248.90625 Z M 307.621094 248.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.777344 247.648438 C 305.777344 247.53125 305.683594 247.4375 305.566406 247.4375 C 305.449219 247.4375 305.355469 247.53125 305.355469 247.648438 C 305.355469 247.765625 305.449219 247.859375 305.566406 247.859375 C 305.683594 247.859375 305.777344 247.765625 305.777344 247.648438 Z M 305.777344 247.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.476562 249.570312 C 304.476562 249.453125 304.382812 249.359375 304.265625 249.359375 C 304.148438 249.359375 304.054688 249.453125 304.054688 249.570312 C 304.054688 249.6875 304.148438 249.78125 304.265625 249.78125 C 304.382812 249.78125 304.476562 249.6875 304.476562 249.570312 Z M 304.476562 249.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.375 249.128906 C 305.375 249.011719 305.28125 248.917969 305.164062 248.917969 C 305.046875 248.917969 304.953125 249.011719 304.953125 249.128906 C 304.953125 249.246094 305.046875 249.339844 305.164062 249.339844 C 305.28125 249.339844 305.375 249.246094 305.375 249.128906 Z M 305.375 249.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.695312 250.078125 C 305.695312 249.960938 305.601562 249.867188 305.484375 249.867188 C 305.367188 249.867188 305.273438 249.960938 305.273438 250.078125 C 305.273438 250.195312 305.367188 250.289062 305.484375 250.289062 C 305.601562 250.289062 305.695312 250.195312 305.695312 250.078125 Z M 305.695312 250.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.285156 247.933594 C 308.285156 247.816406 308.191406 247.722656 308.074219 247.722656 C 307.957031 247.722656 307.863281 247.816406 307.863281 247.933594 C 307.863281 248.050781 307.957031 248.144531 308.074219 248.144531 C 308.191406 248.144531 308.285156 248.050781 308.285156 247.933594 Z M 308.285156 247.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.667969 251.03125 C 304.667969 250.914062 304.574219 250.820312 304.457031 250.820312 C 304.339844 250.820312 304.246094 250.914062 304.246094 251.03125 C 304.246094 251.148438 304.339844 251.242188 304.457031 251.242188 C 304.574219 251.242188 304.667969 251.148438 304.667969 251.03125 Z M 304.667969 251.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.246094 249.660156 C 304.246094 249.542969 304.152344 249.449219 304.035156 249.449219 C 303.917969 249.449219 303.824219 249.542969 303.824219 249.660156 C 303.824219 249.777344 303.917969 249.871094 304.035156 249.871094 C 304.152344 249.871094 304.246094 249.777344 304.246094 249.660156 Z M 304.246094 249.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.128906 248.882812 C 301.128906 248.765625 301.035156 248.671875 300.917969 248.671875 C 300.800781 248.671875 300.707031 248.765625 300.707031 248.882812 C 300.707031 249 300.800781 249.09375 300.917969 249.09375 C 301.035156 249.09375 301.128906 249 301.128906 248.882812 Z M 301.128906 248.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.726562 249.726562 C 298.726562 249.609375 298.632812 249.515625 298.515625 249.515625 C 298.398438 249.515625 298.304688 249.609375 298.304688 249.726562 C 298.304688 249.84375 298.398438 249.9375 298.515625 249.9375 C 298.632812 249.9375 298.726562 249.84375 298.726562 249.726562 Z M 298.726562 249.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.152344 250.21875 C 298.152344 250.101562 298.058594 250.007812 297.941406 250.007812 C 297.824219 250.007812 297.730469 250.101562 297.730469 250.21875 C 297.730469 250.335938 297.824219 250.429688 297.941406 250.429688 C 298.058594 250.429688 298.152344 250.335938 298.152344 250.21875 Z M 298.152344 250.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.636719 250.859375 C 296.636719 250.742188 296.542969 250.648438 296.425781 250.648438 C 296.308594 250.648438 296.214844 250.742188 296.214844 250.859375 C 296.214844 250.976562 296.308594 251.070312 296.425781 251.070312 C 296.542969 251.070312 296.636719 250.976562 296.636719 250.859375 Z M 296.636719 250.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.972656 247.121094 C 297.972656 247.003906 297.878906 246.910156 297.761719 246.910156 C 297.644531 246.910156 297.550781 247.003906 297.550781 247.121094 C 297.550781 247.238281 297.644531 247.332031 297.761719 247.332031 C 297.878906 247.332031 297.972656 247.238281 297.972656 247.121094 Z M 297.972656 247.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.523438 243.222656 C 299.523438 243.105469 299.429688 243.011719 299.3125 243.011719 C 299.195312 243.011719 299.101562 243.105469 299.101562 243.222656 C 299.101562 243.339844 299.195312 243.433594 299.3125 243.433594 C 299.429688 243.433594 299.523438 243.339844 299.523438 243.222656 Z M 299.523438 243.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.980469 242.621094 C 304.980469 242.503906 304.886719 242.410156 304.769531 242.410156 C 304.652344 242.410156 304.558594 242.503906 304.558594 242.621094 C 304.558594 242.738281 304.652344 242.832031 304.769531 242.832031 C 304.886719 242.832031 304.980469 242.738281 304.980469 242.621094 Z M 304.980469 242.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 306.1875 243.933594 C 306.1875 243.816406 306.09375 243.722656 305.976562 243.722656 C 305.859375 243.722656 305.765625 243.816406 305.765625 243.933594 C 305.765625 244.050781 305.859375 244.144531 305.976562 244.144531 C 306.09375 244.144531 306.1875 244.050781 306.1875 243.933594 Z M 306.1875 243.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.527344 242.164062 C 303.527344 242.046875 303.433594 241.953125 303.316406 241.953125 C 303.199219 241.953125 303.105469 242.046875 303.105469 242.164062 C 303.105469 242.28125 303.199219 242.375 303.316406 242.375 C 303.433594 242.375 303.527344 242.28125 303.527344 242.164062 Z M 303.527344 242.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.613281 238.761719 C 302.613281 238.644531 302.519531 238.550781 302.402344 238.550781 C 302.285156 238.550781 302.191406 238.644531 302.191406 238.761719 C 302.191406 238.878906 302.285156 238.972656 302.402344 238.972656 C 302.519531 238.972656 302.613281 238.878906 302.613281 238.761719 Z M 302.613281 238.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.9375 244.277344 C 302.9375 244.160156 302.84375 244.066406 302.726562 244.066406 C 302.609375 244.066406 302.515625 244.160156 302.515625 244.277344 C 302.515625 244.394531 302.609375 244.488281 302.726562 244.488281 C 302.84375 244.488281 302.9375 244.394531 302.9375 244.277344 Z M 302.9375 244.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.609375 244.058594 C 298.609375 243.941406 298.515625 243.847656 298.398438 243.847656 C 298.28125 243.847656 298.1875 243.941406 298.1875 244.058594 C 298.1875 244.175781 298.28125 244.269531 298.398438 244.269531 C 298.515625 244.269531 298.609375 244.175781 298.609375 244.058594 Z M 298.609375 244.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.621094 242.847656 C 296.621094 242.730469 296.527344 242.636719 296.410156 242.636719 C 296.292969 242.636719 296.199219 242.730469 296.199219 242.847656 C 296.199219 242.964844 296.292969 243.058594 296.410156 243.058594 C 296.527344 243.058594 296.621094 242.964844 296.621094 242.847656 Z M 296.621094 242.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.859375 246.742188 C 297.859375 246.625 297.765625 246.53125 297.648438 246.53125 C 297.53125 246.53125 297.4375 246.625 297.4375 246.742188 C 297.4375 246.859375 297.53125 246.953125 297.648438 246.953125 C 297.765625 246.953125 297.859375 246.859375 297.859375 246.742188 Z M 297.859375 246.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.324219 245.582031 C 299.324219 245.464844 299.230469 245.371094 299.113281 245.371094 C 298.996094 245.371094 298.902344 245.464844 298.902344 245.582031 C 298.902344 245.699219 298.996094 245.792969 299.113281 245.792969 C 299.230469 245.792969 299.324219 245.699219 299.324219 245.582031 Z M 299.324219 245.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.335938 244.25 C 298.335938 244.132812 298.242188 244.039062 298.125 244.039062 C 298.007812 244.039062 297.914062 244.132812 297.914062 244.25 C 297.914062 244.367188 298.007812 244.460938 298.125 244.460938 C 298.242188 244.460938 298.335938 244.367188 298.335938 244.25 Z M 298.335938 244.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.011719 242.851562 C 296.011719 242.734375 295.917969 242.640625 295.800781 242.640625 C 295.683594 242.640625 295.589844 242.734375 295.589844 242.851562 C 295.589844 242.96875 295.683594 243.0625 295.800781 243.0625 C 295.917969 243.0625 296.011719 242.96875 296.011719 242.851562 Z M 296.011719 242.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.164062 243.847656 C 298.164062 243.730469 298.070312 243.636719 297.953125 243.636719 C 297.835938 243.636719 297.742188 243.730469 297.742188 243.847656 C 297.742188 243.964844 297.835938 244.058594 297.953125 244.058594 C 298.070312 244.058594 298.164062 243.964844 298.164062 243.847656 Z M 298.164062 243.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.691406 244.378906 C 297.691406 244.261719 297.597656 244.167969 297.480469 244.167969 C 297.363281 244.167969 297.269531 244.261719 297.269531 244.378906 C 297.269531 244.496094 297.363281 244.589844 297.480469 244.589844 C 297.597656 244.589844 297.691406 244.496094 297.691406 244.378906 Z M 297.691406 244.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.636719 242.855469 C 297.636719 242.738281 297.542969 242.644531 297.425781 242.644531 C 297.308594 242.644531 297.214844 242.738281 297.214844 242.855469 C 297.214844 242.972656 297.308594 243.066406 297.425781 243.066406 C 297.542969 243.066406 297.636719 242.972656 297.636719 242.855469 Z M 297.636719 242.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.769531 244.695312 C 296.769531 244.578125 296.675781 244.484375 296.558594 244.484375 C 296.441406 244.484375 296.347656 244.578125 296.347656 244.695312 C 296.347656 244.8125 296.441406 244.90625 296.558594 244.90625 C 296.675781 244.90625 296.769531 244.8125 296.769531 244.695312 Z M 296.769531 244.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.128906 243.960938 C 295.128906 243.84375 295.035156 243.75 294.917969 243.75 C 294.800781 243.75 294.707031 243.84375 294.707031 243.960938 C 294.707031 244.078125 294.800781 244.171875 294.917969 244.171875 C 295.035156 244.171875 295.128906 244.078125 295.128906 243.960938 Z M 295.128906 243.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.074219 242.921875 C 294.074219 242.804688 293.980469 242.710938 293.863281 242.710938 C 293.746094 242.710938 293.652344 242.804688 293.652344 242.921875 C 293.652344 243.039062 293.746094 243.132812 293.863281 243.132812 C 293.980469 243.132812 294.074219 243.039062 294.074219 242.921875 Z M 294.074219 242.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.863281 241.847656 C 294.863281 241.730469 294.769531 241.636719 294.652344 241.636719 C 294.535156 241.636719 294.441406 241.730469 294.441406 241.847656 C 294.441406 241.964844 294.535156 242.058594 294.652344 242.058594 C 294.769531 242.058594 294.863281 241.964844 294.863281 241.847656 Z M 294.863281 241.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.464844 241.191406 C 294.464844 241.074219 294.371094 240.980469 294.253906 240.980469 C 294.136719 240.980469 294.042969 241.074219 294.042969 241.191406 C 294.042969 241.308594 294.136719 241.402344 294.253906 241.402344 C 294.371094 241.402344 294.464844 241.308594 294.464844 241.191406 Z M 294.464844 241.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.160156 244.839844 C 291.160156 244.722656 291.066406 244.628906 290.949219 244.628906 C 290.832031 244.628906 290.738281 244.722656 290.738281 244.839844 C 290.738281 244.957031 290.832031 245.050781 290.949219 245.050781 C 291.066406 245.050781 291.160156 244.957031 291.160156 244.839844 Z M 291.160156 244.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.957031 245.511719 C 287.957031 245.394531 287.863281 245.300781 287.746094 245.300781 C 287.628906 245.300781 287.535156 245.394531 287.535156 245.511719 C 287.535156 245.628906 287.628906 245.722656 287.746094 245.722656 C 287.863281 245.722656 287.957031 245.628906 287.957031 245.511719 Z M 287.957031 245.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.496094 245.945312 C 286.496094 245.828125 286.402344 245.734375 286.285156 245.734375 C 286.167969 245.734375 286.074219 245.828125 286.074219 245.945312 C 286.074219 246.0625 286.167969 246.15625 286.285156 246.15625 C 286.402344 246.15625 286.496094 246.0625 286.496094 245.945312 Z M 286.496094 245.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.066406 245.042969 C 284.066406 244.925781 283.972656 244.832031 283.855469 244.832031 C 283.738281 244.832031 283.644531 244.925781 283.644531 245.042969 C 283.644531 245.160156 283.738281 245.253906 283.855469 245.253906 C 283.972656 245.253906 284.066406 245.160156 284.066406 245.042969 Z M 284.066406 245.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.765625 245.828125 C 280.765625 245.710938 280.671875 245.617188 280.554688 245.617188 C 280.4375 245.617188 280.34375 245.710938 280.34375 245.828125 C 280.34375 245.945312 280.4375 246.039062 280.554688 246.039062 C 280.671875 246.039062 280.765625 245.945312 280.765625 245.828125 Z M 280.765625 245.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.890625 245.917969 C 281.890625 245.800781 281.796875 245.707031 281.679688 245.707031 C 281.5625 245.707031 281.46875 245.800781 281.46875 245.917969 C 281.46875 246.035156 281.5625 246.128906 281.679688 246.128906 C 281.796875 246.128906 281.890625 246.035156 281.890625 245.917969 Z M 281.890625 245.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.925781 245.605469 C 283.925781 245.488281 283.832031 245.394531 283.714844 245.394531 C 283.597656 245.394531 283.503906 245.488281 283.503906 245.605469 C 283.503906 245.722656 283.597656 245.816406 283.714844 245.816406 C 283.832031 245.816406 283.925781 245.722656 283.925781 245.605469 Z M 283.925781 245.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.910156 244.648438 C 285.910156 244.53125 285.816406 244.4375 285.699219 244.4375 C 285.582031 244.4375 285.488281 244.53125 285.488281 244.648438 C 285.488281 244.765625 285.582031 244.859375 285.699219 244.859375 C 285.816406 244.859375 285.910156 244.765625 285.910156 244.648438 Z M 285.910156 244.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.777344 245.777344 C 284.777344 245.660156 284.683594 245.566406 284.566406 245.566406 C 284.449219 245.566406 284.355469 245.660156 284.355469 245.777344 C 284.355469 245.894531 284.449219 245.988281 284.566406 245.988281 C 284.683594 245.988281 284.777344 245.894531 284.777344 245.777344 Z M 284.777344 245.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.734375 247.992188 C 285.734375 247.875 285.640625 247.78125 285.523438 247.78125 C 285.40625 247.78125 285.3125 247.875 285.3125 247.992188 C 285.3125 248.109375 285.40625 248.203125 285.523438 248.203125 C 285.640625 248.203125 285.734375 248.109375 285.734375 247.992188 Z M 285.734375 247.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.691406 250.664062 C 285.691406 250.546875 285.597656 250.453125 285.480469 250.453125 C 285.363281 250.453125 285.269531 250.546875 285.269531 250.664062 C 285.269531 250.78125 285.363281 250.875 285.480469 250.875 C 285.597656 250.875 285.691406 250.78125 285.691406 250.664062 Z M 285.691406 250.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.984375 249.363281 C 287.984375 249.246094 287.890625 249.152344 287.773438 249.152344 C 287.65625 249.152344 287.5625 249.246094 287.5625 249.363281 C 287.5625 249.480469 287.65625 249.574219 287.773438 249.574219 C 287.890625 249.574219 287.984375 249.480469 287.984375 249.363281 Z M 287.984375 249.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.015625 250.636719 C 286.015625 250.519531 285.921875 250.425781 285.804688 250.425781 C 285.6875 250.425781 285.59375 250.519531 285.59375 250.636719 C 285.59375 250.753906 285.6875 250.847656 285.804688 250.847656 C 285.921875 250.847656 286.015625 250.753906 286.015625 250.636719 Z M 286.015625 250.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.027344 249.617188 C 287.027344 249.5 286.933594 249.40625 286.816406 249.40625 C 286.699219 249.40625 286.605469 249.5 286.605469 249.617188 C 286.605469 249.734375 286.699219 249.828125 286.816406 249.828125 C 286.933594 249.828125 287.027344 249.734375 287.027344 249.617188 Z M 287.027344 249.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.082031 252.273438 C 285.082031 252.15625 284.988281 252.0625 284.871094 252.0625 C 284.753906 252.0625 284.660156 252.15625 284.660156 252.273438 C 284.660156 252.390625 284.753906 252.484375 284.871094 252.484375 C 284.988281 252.484375 285.082031 252.390625 285.082031 252.273438 Z M 285.082031 252.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.566406 250.109375 C 285.566406 249.992188 285.472656 249.898438 285.355469 249.898438 C 285.238281 249.898438 285.144531 249.992188 285.144531 250.109375 C 285.144531 250.226562 285.238281 250.320312 285.355469 250.320312 C 285.472656 250.320312 285.566406 250.226562 285.566406 250.109375 Z M 285.566406 250.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.90625 252.34375 C 284.90625 252.226562 284.8125 252.132812 284.695312 252.132812 C 284.578125 252.132812 284.484375 252.226562 284.484375 252.34375 C 284.484375 252.460938 284.578125 252.554688 284.695312 252.554688 C 284.8125 252.554688 284.90625 252.460938 284.90625 252.34375 Z M 284.90625 252.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.484375 251 C 278.484375 250.882812 278.390625 250.789062 278.273438 250.789062 C 278.15625 250.789062 278.0625 250.882812 278.0625 251 C 278.0625 251.117188 278.15625 251.210938 278.273438 251.210938 C 278.390625 251.210938 278.484375 251.117188 278.484375 251 Z M 278.484375 251 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.710938 251.085938 C 276.710938 250.96875 276.617188 250.875 276.5 250.875 C 276.382812 250.875 276.289062 250.96875 276.289062 251.085938 C 276.289062 251.203125 276.382812 251.296875 276.5 251.296875 C 276.617188 251.296875 276.710938 251.203125 276.710938 251.085938 Z M 276.710938 251.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.179688 250.132812 C 277.179688 250.015625 277.085938 249.921875 276.96875 249.921875 C 276.851562 249.921875 276.757812 250.015625 276.757812 250.132812 C 276.757812 250.25 276.851562 250.34375 276.96875 250.34375 C 277.085938 250.34375 277.179688 250.25 277.179688 250.132812 Z M 277.179688 250.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.246094 251.070312 C 279.246094 250.953125 279.152344 250.859375 279.035156 250.859375 C 278.917969 250.859375 278.824219 250.953125 278.824219 251.070312 C 278.824219 251.1875 278.917969 251.28125 279.035156 251.28125 C 279.152344 251.28125 279.246094 251.1875 279.246094 251.070312 Z M 279.246094 251.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.390625 253.1875 C 279.390625 253.070312 279.296875 252.976562 279.179688 252.976562 C 279.0625 252.976562 278.96875 253.070312 278.96875 253.1875 C 278.96875 253.304688 279.0625 253.398438 279.179688 253.398438 C 279.296875 253.398438 279.390625 253.304688 279.390625 253.1875 Z M 279.390625 253.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.414062 254.457031 C 275.414062 254.339844 275.320312 254.246094 275.203125 254.246094 C 275.085938 254.246094 274.992188 254.339844 274.992188 254.457031 C 274.992188 254.574219 275.085938 254.667969 275.203125 254.667969 C 275.320312 254.667969 275.414062 254.574219 275.414062 254.457031 Z M 275.414062 254.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.019531 256.453125 C 276.019531 256.335938 275.925781 256.242188 275.808594 256.242188 C 275.691406 256.242188 275.597656 256.335938 275.597656 256.453125 C 275.597656 256.570312 275.691406 256.664062 275.808594 256.664062 C 275.925781 256.664062 276.019531 256.570312 276.019531 256.453125 Z M 276.019531 256.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276 251.839844 C 276 251.722656 275.90625 251.628906 275.789062 251.628906 C 275.671875 251.628906 275.578125 251.722656 275.578125 251.839844 C 275.578125 251.957031 275.671875 252.050781 275.789062 252.050781 C 275.90625 252.050781 276 251.957031 276 251.839844 Z M 276 251.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.78125 250.023438 C 274.78125 249.90625 274.6875 249.8125 274.570312 249.8125 C 274.453125 249.8125 274.359375 249.90625 274.359375 250.023438 C 274.359375 250.140625 274.453125 250.234375 274.570312 250.234375 C 274.6875 250.234375 274.78125 250.140625 274.78125 250.023438 Z M 274.78125 250.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.375 246.976562 C 276.375 246.859375 276.28125 246.765625 276.164062 246.765625 C 276.046875 246.765625 275.953125 246.859375 275.953125 246.976562 C 275.953125 247.09375 276.046875 247.1875 276.164062 247.1875 C 276.28125 247.1875 276.375 247.09375 276.375 246.976562 Z M 276.375 246.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.949219 246.832031 C 276.949219 246.714844 276.855469 246.621094 276.738281 246.621094 C 276.621094 246.621094 276.527344 246.714844 276.527344 246.832031 C 276.527344 246.949219 276.621094 247.042969 276.738281 247.042969 C 276.855469 247.042969 276.949219 246.949219 276.949219 246.832031 Z M 276.949219 246.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.609375 245.816406 C 275.609375 245.699219 275.515625 245.605469 275.398438 245.605469 C 275.28125 245.605469 275.1875 245.699219 275.1875 245.816406 C 275.1875 245.933594 275.28125 246.027344 275.398438 246.027344 C 275.515625 246.027344 275.609375 245.933594 275.609375 245.816406 Z M 275.609375 245.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.667969 249.257812 C 273.667969 249.140625 273.574219 249.046875 273.457031 249.046875 C 273.339844 249.046875 273.246094 249.140625 273.246094 249.257812 C 273.246094 249.375 273.339844 249.46875 273.457031 249.46875 C 273.574219 249.46875 273.667969 249.375 273.667969 249.257812 Z M 273.667969 249.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.695312 243.839844 C 276.695312 243.722656 276.601562 243.628906 276.484375 243.628906 C 276.367188 243.628906 276.273438 243.722656 276.273438 243.839844 C 276.273438 243.957031 276.367188 244.050781 276.484375 244.050781 C 276.601562 244.050781 276.695312 243.957031 276.695312 243.839844 Z M 276.695312 243.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.992188 246.289062 C 277.992188 246.171875 277.898438 246.078125 277.78125 246.078125 C 277.664062 246.078125 277.570312 246.171875 277.570312 246.289062 C 277.570312 246.40625 277.664062 246.5 277.78125 246.5 C 277.898438 246.5 277.992188 246.40625 277.992188 246.289062 Z M 277.992188 246.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.789062 244.492188 C 278.789062 244.375 278.695312 244.28125 278.578125 244.28125 C 278.460938 244.28125 278.367188 244.375 278.367188 244.492188 C 278.367188 244.609375 278.460938 244.703125 278.578125 244.703125 C 278.695312 244.703125 278.789062 244.609375 278.789062 244.492188 Z M 278.789062 244.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.578125 243.136719 C 280.578125 243.019531 280.484375 242.925781 280.367188 242.925781 C 280.25 242.925781 280.15625 243.019531 280.15625 243.136719 C 280.15625 243.253906 280.25 243.347656 280.367188 243.347656 C 280.484375 243.347656 280.578125 243.253906 280.578125 243.136719 Z M 280.578125 243.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.980469 240.414062 C 278.980469 240.296875 278.886719 240.203125 278.769531 240.203125 C 278.652344 240.203125 278.558594 240.296875 278.558594 240.414062 C 278.558594 240.53125 278.652344 240.625 278.769531 240.625 C 278.886719 240.625 278.980469 240.53125 278.980469 240.414062 Z M 278.980469 240.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.804688 238.941406 C 279.804688 238.824219 279.710938 238.730469 279.59375 238.730469 C 279.476562 238.730469 279.382812 238.824219 279.382812 238.941406 C 279.382812 239.058594 279.476562 239.152344 279.59375 239.152344 C 279.710938 239.152344 279.804688 239.058594 279.804688 238.941406 Z M 279.804688 238.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.003906 236.039062 C 280.003906 235.921875 279.910156 235.828125 279.792969 235.828125 C 279.675781 235.828125 279.582031 235.921875 279.582031 236.039062 C 279.582031 236.15625 279.675781 236.25 279.792969 236.25 C 279.910156 236.25 280.003906 236.15625 280.003906 236.039062 Z M 280.003906 236.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.363281 234.210938 C 278.363281 234.09375 278.269531 234 278.152344 234 C 278.035156 234 277.941406 234.09375 277.941406 234.210938 C 277.941406 234.328125 278.035156 234.421875 278.152344 234.421875 C 278.269531 234.421875 278.363281 234.328125 278.363281 234.210938 Z M 278.363281 234.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.976562 233.125 C 277.976562 233.007812 277.882812 232.914062 277.765625 232.914062 C 277.648438 232.914062 277.554688 233.007812 277.554688 233.125 C 277.554688 233.242188 277.648438 233.335938 277.765625 233.335938 C 277.882812 233.335938 277.976562 233.242188 277.976562 233.125 Z M 277.976562 233.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.699219 233.417969 C 277.699219 233.300781 277.605469 233.207031 277.488281 233.207031 C 277.371094 233.207031 277.277344 233.300781 277.277344 233.417969 C 277.277344 233.535156 277.371094 233.628906 277.488281 233.628906 C 277.605469 233.628906 277.699219 233.535156 277.699219 233.417969 Z M 277.699219 233.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.957031 235.046875 C 278.957031 234.929688 278.863281 234.835938 278.746094 234.835938 C 278.628906 234.835938 278.535156 234.929688 278.535156 235.046875 C 278.535156 235.164062 278.628906 235.257812 278.746094 235.257812 C 278.863281 235.257812 278.957031 235.164062 278.957031 235.046875 Z M 278.957031 235.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.238281 234.492188 C 280.238281 234.375 280.144531 234.28125 280.027344 234.28125 C 279.910156 234.28125 279.816406 234.375 279.816406 234.492188 C 279.816406 234.609375 279.910156 234.703125 280.027344 234.703125 C 280.144531 234.703125 280.238281 234.609375 280.238281 234.492188 Z M 280.238281 234.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.121094 233.183594 C 281.121094 233.066406 281.027344 232.972656 280.910156 232.972656 C 280.792969 232.972656 280.699219 233.066406 280.699219 233.183594 C 280.699219 233.300781 280.792969 233.394531 280.910156 233.394531 C 281.027344 233.394531 281.121094 233.300781 281.121094 233.183594 Z M 281.121094 233.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.191406 233.085938 C 280.191406 232.96875 280.097656 232.875 279.980469 232.875 C 279.863281 232.875 279.769531 232.96875 279.769531 233.085938 C 279.769531 233.203125 279.863281 233.296875 279.980469 233.296875 C 280.097656 233.296875 280.191406 233.203125 280.191406 233.085938 Z M 280.191406 233.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.023438 233.808594 C 278.023438 233.691406 277.929688 233.597656 277.8125 233.597656 C 277.695312 233.597656 277.601562 233.691406 277.601562 233.808594 C 277.601562 233.925781 277.695312 234.019531 277.8125 234.019531 C 277.929688 234.019531 278.023438 233.925781 278.023438 233.808594 Z M 278.023438 233.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.144531 231.101562 C 276.144531 230.984375 276.050781 230.890625 275.933594 230.890625 C 275.816406 230.890625 275.722656 230.984375 275.722656 231.101562 C 275.722656 231.21875 275.816406 231.3125 275.933594 231.3125 C 276.050781 231.3125 276.144531 231.21875 276.144531 231.101562 Z M 276.144531 231.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.046875 233.945312 C 275.046875 233.828125 274.953125 233.734375 274.835938 233.734375 C 274.71875 233.734375 274.625 233.828125 274.625 233.945312 C 274.625 234.0625 274.71875 234.15625 274.835938 234.15625 C 274.953125 234.15625 275.046875 234.0625 275.046875 233.945312 Z M 275.046875 233.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.722656 232.816406 C 272.722656 232.699219 272.628906 232.605469 272.511719 232.605469 C 272.394531 232.605469 272.300781 232.699219 272.300781 232.816406 C 272.300781 232.933594 272.394531 233.027344 272.511719 233.027344 C 272.628906 233.027344 272.722656 232.933594 272.722656 232.816406 Z M 272.722656 232.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.027344 231.433594 C 269.027344 231.316406 268.933594 231.222656 268.816406 231.222656 C 268.699219 231.222656 268.605469 231.316406 268.605469 231.433594 C 268.605469 231.550781 268.699219 231.644531 268.816406 231.644531 C 268.933594 231.644531 269.027344 231.550781 269.027344 231.433594 Z M 269.027344 231.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.25 232.082031 C 267.25 231.964844 267.15625 231.871094 267.039062 231.871094 C 266.921875 231.871094 266.828125 231.964844 266.828125 232.082031 C 266.828125 232.199219 266.921875 232.292969 267.039062 232.292969 C 267.15625 232.292969 267.25 232.199219 267.25 232.082031 Z M 267.25 232.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.21875 235.335938 C 268.21875 235.21875 268.125 235.125 268.007812 235.125 C 267.890625 235.125 267.796875 235.21875 267.796875 235.335938 C 267.796875 235.453125 267.890625 235.546875 268.007812 235.546875 C 268.125 235.546875 268.21875 235.453125 268.21875 235.335938 Z M 268.21875 235.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.3125 236.855469 C 265.3125 236.738281 265.21875 236.644531 265.101562 236.644531 C 264.984375 236.644531 264.890625 236.738281 264.890625 236.855469 C 264.890625 236.972656 264.984375 237.066406 265.101562 237.066406 C 265.21875 237.066406 265.3125 236.972656 265.3125 236.855469 Z M 265.3125 236.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.234375 241.53125 C 263.234375 241.414062 263.140625 241.320312 263.023438 241.320312 C 262.90625 241.320312 262.8125 241.414062 262.8125 241.53125 C 262.8125 241.648438 262.90625 241.742188 263.023438 241.742188 C 263.140625 241.742188 263.234375 241.648438 263.234375 241.53125 Z M 263.234375 241.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.433594 241.929688 C 263.433594 241.8125 263.339844 241.71875 263.222656 241.71875 C 263.105469 241.71875 263.011719 241.8125 263.011719 241.929688 C 263.011719 242.046875 263.105469 242.140625 263.222656 242.140625 C 263.339844 242.140625 263.433594 242.046875 263.433594 241.929688 Z M 263.433594 241.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.75 244.625 C 265.75 244.507812 265.65625 244.414062 265.539062 244.414062 C 265.421875 244.414062 265.328125 244.507812 265.328125 244.625 C 265.328125 244.742188 265.421875 244.835938 265.539062 244.835938 C 265.65625 244.835938 265.75 244.742188 265.75 244.625 Z M 265.75 244.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.988281 242.5625 C 267.988281 242.445312 267.894531 242.351562 267.777344 242.351562 C 267.660156 242.351562 267.566406 242.445312 267.566406 242.5625 C 267.566406 242.679688 267.660156 242.773438 267.777344 242.773438 C 267.894531 242.773438 267.988281 242.679688 267.988281 242.5625 Z M 267.988281 242.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.3125 242.410156 C 269.3125 242.292969 269.21875 242.199219 269.101562 242.199219 C 268.984375 242.199219 268.890625 242.292969 268.890625 242.410156 C 268.890625 242.527344 268.984375 242.621094 269.101562 242.621094 C 269.21875 242.621094 269.3125 242.527344 269.3125 242.410156 Z M 269.3125 242.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.972656 245.605469 C 271.972656 245.488281 271.878906 245.394531 271.761719 245.394531 C 271.644531 245.394531 271.550781 245.488281 271.550781 245.605469 C 271.550781 245.722656 271.644531 245.816406 271.761719 245.816406 C 271.878906 245.816406 271.972656 245.722656 271.972656 245.605469 Z M 271.972656 245.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.105469 246.730469 C 272.105469 246.613281 272.011719 246.519531 271.894531 246.519531 C 271.777344 246.519531 271.683594 246.613281 271.683594 246.730469 C 271.683594 246.847656 271.777344 246.941406 271.894531 246.941406 C 272.011719 246.941406 272.105469 246.847656 272.105469 246.730469 Z M 272.105469 246.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.136719 248.875 C 276.136719 248.757812 276.042969 248.664062 275.925781 248.664062 C 275.808594 248.664062 275.714844 248.757812 275.714844 248.875 C 275.714844 248.992188 275.808594 249.085938 275.925781 249.085938 C 276.042969 249.085938 276.136719 248.992188 276.136719 248.875 Z M 276.136719 248.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.511719 246.230469 C 277.511719 246.113281 277.417969 246.019531 277.300781 246.019531 C 277.183594 246.019531 277.089844 246.113281 277.089844 246.230469 C 277.089844 246.347656 277.183594 246.441406 277.300781 246.441406 C 277.417969 246.441406 277.511719 246.347656 277.511719 246.230469 Z M 277.511719 246.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.625 247.328125 C 278.625 247.210938 278.53125 247.117188 278.414062 247.117188 C 278.296875 247.117188 278.203125 247.210938 278.203125 247.328125 C 278.203125 247.445312 278.296875 247.539062 278.414062 247.539062 C 278.53125 247.539062 278.625 247.445312 278.625 247.328125 Z M 278.625 247.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.027344 246.773438 C 278.027344 246.65625 277.933594 246.5625 277.816406 246.5625 C 277.699219 246.5625 277.605469 246.65625 277.605469 246.773438 C 277.605469 246.890625 277.699219 246.984375 277.816406 246.984375 C 277.933594 246.984375 278.027344 246.890625 278.027344 246.773438 Z M 278.027344 246.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.53125 245.738281 C 272.53125 245.621094 272.4375 245.527344 272.320312 245.527344 C 272.203125 245.527344 272.109375 245.621094 272.109375 245.738281 C 272.109375 245.855469 272.203125 245.949219 272.320312 245.949219 C 272.4375 245.949219 272.53125 245.855469 272.53125 245.738281 Z M 272.53125 245.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.34375 245.332031 C 274.34375 245.214844 274.25 245.121094 274.132812 245.121094 C 274.015625 245.121094 273.921875 245.214844 273.921875 245.332031 C 273.921875 245.449219 274.015625 245.542969 274.132812 245.542969 C 274.25 245.542969 274.34375 245.449219 274.34375 245.332031 Z M 274.34375 245.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.800781 246.285156 C 280.800781 246.167969 280.707031 246.074219 280.589844 246.074219 C 280.472656 246.074219 280.378906 246.167969 280.378906 246.285156 C 280.378906 246.402344 280.472656 246.496094 280.589844 246.496094 C 280.707031 246.496094 280.800781 246.402344 280.800781 246.285156 Z M 280.800781 246.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.855469 242.246094 C 280.855469 242.128906 280.761719 242.035156 280.644531 242.035156 C 280.527344 242.035156 280.433594 242.128906 280.433594 242.246094 C 280.433594 242.363281 280.527344 242.457031 280.644531 242.457031 C 280.761719 242.457031 280.855469 242.363281 280.855469 242.246094 Z M 280.855469 242.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.640625 247.34375 C 279.640625 247.226562 279.546875 247.132812 279.429688 247.132812 C 279.3125 247.132812 279.21875 247.226562 279.21875 247.34375 C 279.21875 247.460938 279.3125 247.554688 279.429688 247.554688 C 279.546875 247.554688 279.640625 247.460938 279.640625 247.34375 Z M 279.640625 247.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.25 249.632812 C 277.25 249.515625 277.15625 249.421875 277.039062 249.421875 C 276.921875 249.421875 276.828125 249.515625 276.828125 249.632812 C 276.828125 249.75 276.921875 249.84375 277.039062 249.84375 C 277.15625 249.84375 277.25 249.75 277.25 249.632812 Z M 277.25 249.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.980469 249.476562 C 275.980469 249.359375 275.886719 249.265625 275.769531 249.265625 C 275.652344 249.265625 275.558594 249.359375 275.558594 249.476562 C 275.558594 249.59375 275.652344 249.6875 275.769531 249.6875 C 275.886719 249.6875 275.980469 249.59375 275.980469 249.476562 Z M 275.980469 249.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.46875 247.808594 C 275.46875 247.691406 275.375 247.597656 275.257812 247.597656 C 275.140625 247.597656 275.046875 247.691406 275.046875 247.808594 C 275.046875 247.925781 275.140625 248.019531 275.257812 248.019531 C 275.375 248.019531 275.46875 247.925781 275.46875 247.808594 Z M 275.46875 247.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.136719 245.980469 C 275.136719 245.863281 275.042969 245.769531 274.925781 245.769531 C 274.808594 245.769531 274.714844 245.863281 274.714844 245.980469 C 274.714844 246.097656 274.808594 246.191406 274.925781 246.191406 C 275.042969 246.191406 275.136719 246.097656 275.136719 245.980469 Z M 275.136719 245.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.4375 245.445312 C 272.4375 245.328125 272.34375 245.234375 272.226562 245.234375 C 272.109375 245.234375 272.015625 245.328125 272.015625 245.445312 C 272.015625 245.5625 272.109375 245.65625 272.226562 245.65625 C 272.34375 245.65625 272.4375 245.5625 272.4375 245.445312 Z M 272.4375 245.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.832031 245.476562 C 271.832031 245.359375 271.738281 245.265625 271.621094 245.265625 C 271.503906 245.265625 271.410156 245.359375 271.410156 245.476562 C 271.410156 245.59375 271.503906 245.6875 271.621094 245.6875 C 271.738281 245.6875 271.832031 245.59375 271.832031 245.476562 Z M 271.832031 245.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.296875 246.148438 C 272.296875 246.03125 272.203125 245.9375 272.085938 245.9375 C 271.96875 245.9375 271.875 246.03125 271.875 246.148438 C 271.875 246.265625 271.96875 246.359375 272.085938 246.359375 C 272.203125 246.359375 272.296875 246.265625 272.296875 246.148438 Z M 272.296875 246.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.773438 246.5625 C 271.773438 246.445312 271.679688 246.351562 271.5625 246.351562 C 271.445312 246.351562 271.351562 246.445312 271.351562 246.5625 C 271.351562 246.679688 271.445312 246.773438 271.5625 246.773438 C 271.679688 246.773438 271.773438 246.679688 271.773438 246.5625 Z M 271.773438 246.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.195312 250.574219 C 274.195312 250.457031 274.101562 250.363281 273.984375 250.363281 C 273.867188 250.363281 273.773438 250.457031 273.773438 250.574219 C 273.773438 250.691406 273.867188 250.785156 273.984375 250.785156 C 274.101562 250.785156 274.195312 250.691406 274.195312 250.574219 Z M 274.195312 250.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.613281 250.855469 C 274.613281 250.738281 274.519531 250.644531 274.402344 250.644531 C 274.285156 250.644531 274.191406 250.738281 274.191406 250.855469 C 274.191406 250.972656 274.285156 251.066406 274.402344 251.066406 C 274.519531 251.066406 274.613281 250.972656 274.613281 250.855469 Z M 274.613281 250.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.761719 253.820312 C 272.761719 253.703125 272.667969 253.609375 272.550781 253.609375 C 272.433594 253.609375 272.339844 253.703125 272.339844 253.820312 C 272.339844 253.9375 272.433594 254.03125 272.550781 254.03125 C 272.667969 254.03125 272.761719 253.9375 272.761719 253.820312 Z M 272.761719 253.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.125 253.746094 C 273.125 253.628906 273.03125 253.535156 272.914062 253.535156 C 272.796875 253.535156 272.703125 253.628906 272.703125 253.746094 C 272.703125 253.863281 272.796875 253.957031 272.914062 253.957031 C 273.03125 253.957031 273.125 253.863281 273.125 253.746094 Z M 273.125 253.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.8125 255.324219 C 272.8125 255.207031 272.71875 255.113281 272.601562 255.113281 C 272.484375 255.113281 272.390625 255.207031 272.390625 255.324219 C 272.390625 255.441406 272.484375 255.535156 272.601562 255.535156 C 272.71875 255.535156 272.8125 255.441406 272.8125 255.324219 Z M 272.8125 255.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.25 257.464844 C 271.25 257.347656 271.15625 257.253906 271.039062 257.253906 C 270.921875 257.253906 270.828125 257.347656 270.828125 257.464844 C 270.828125 257.582031 270.921875 257.675781 271.039062 257.675781 C 271.15625 257.675781 271.25 257.582031 271.25 257.464844 Z M 271.25 257.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.410156 257.132812 C 271.410156 257.015625 271.316406 256.921875 271.199219 256.921875 C 271.082031 256.921875 270.988281 257.015625 270.988281 257.132812 C 270.988281 257.25 271.082031 257.34375 271.199219 257.34375 C 271.316406 257.34375 271.410156 257.25 271.410156 257.132812 Z M 271.410156 257.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.421875 258.226562 C 269.421875 258.109375 269.328125 258.015625 269.210938 258.015625 C 269.09375 258.015625 269 258.109375 269 258.226562 C 269 258.34375 269.09375 258.4375 269.210938 258.4375 C 269.328125 258.4375 269.421875 258.34375 269.421875 258.226562 Z M 269.421875 258.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.289062 253.753906 C 268.289062 253.636719 268.195312 253.542969 268.078125 253.542969 C 267.960938 253.542969 267.867188 253.636719 267.867188 253.753906 C 267.867188 253.871094 267.960938 253.964844 268.078125 253.964844 C 268.195312 253.964844 268.289062 253.871094 268.289062 253.753906 Z M 268.289062 253.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.378906 252.257812 C 269.378906 252.140625 269.285156 252.046875 269.167969 252.046875 C 269.050781 252.046875 268.957031 252.140625 268.957031 252.257812 C 268.957031 252.375 269.050781 252.46875 269.167969 252.46875 C 269.285156 252.46875 269.378906 252.375 269.378906 252.257812 Z M 269.378906 252.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.433594 250.925781 C 268.433594 250.808594 268.339844 250.714844 268.222656 250.714844 C 268.105469 250.714844 268.011719 250.808594 268.011719 250.925781 C 268.011719 251.042969 268.105469 251.136719 268.222656 251.136719 C 268.339844 251.136719 268.433594 251.042969 268.433594 250.925781 Z M 268.433594 250.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.652344 251.394531 C 268.652344 251.277344 268.558594 251.183594 268.441406 251.183594 C 268.324219 251.183594 268.230469 251.277344 268.230469 251.394531 C 268.230469 251.511719 268.324219 251.605469 268.441406 251.605469 C 268.558594 251.605469 268.652344 251.511719 268.652344 251.394531 Z M 268.652344 251.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.996094 251.695312 C 265.996094 251.578125 265.902344 251.484375 265.785156 251.484375 C 265.667969 251.484375 265.574219 251.578125 265.574219 251.695312 C 265.574219 251.8125 265.667969 251.90625 265.785156 251.90625 C 265.902344 251.90625 265.996094 251.8125 265.996094 251.695312 Z M 265.996094 251.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.800781 250.214844 C 262.800781 250.097656 262.707031 250.003906 262.589844 250.003906 C 262.472656 250.003906 262.378906 250.097656 262.378906 250.214844 C 262.378906 250.332031 262.472656 250.425781 262.589844 250.425781 C 262.707031 250.425781 262.800781 250.332031 262.800781 250.214844 Z M 262.800781 250.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.949219 249.9375 C 263.949219 249.820312 263.855469 249.726562 263.738281 249.726562 C 263.621094 249.726562 263.527344 249.820312 263.527344 249.9375 C 263.527344 250.054688 263.621094 250.148438 263.738281 250.148438 C 263.855469 250.148438 263.949219 250.054688 263.949219 249.9375 Z M 263.949219 249.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.117188 248.703125 C 264.117188 248.585938 264.023438 248.492188 263.90625 248.492188 C 263.789062 248.492188 263.695312 248.585938 263.695312 248.703125 C 263.695312 248.820312 263.789062 248.914062 263.90625 248.914062 C 264.023438 248.914062 264.117188 248.820312 264.117188 248.703125 Z M 264.117188 248.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.835938 247.648438 C 263.835938 247.53125 263.742188 247.4375 263.625 247.4375 C 263.507812 247.4375 263.414062 247.53125 263.414062 247.648438 C 263.414062 247.765625 263.507812 247.859375 263.625 247.859375 C 263.742188 247.859375 263.835938 247.765625 263.835938 247.648438 Z M 263.835938 247.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.214844 249.238281 C 266.214844 249.121094 266.121094 249.027344 266.003906 249.027344 C 265.886719 249.027344 265.792969 249.121094 265.792969 249.238281 C 265.792969 249.355469 265.886719 249.449219 266.003906 249.449219 C 266.121094 249.449219 266.214844 249.355469 266.214844 249.238281 Z M 266.214844 249.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.757812 250.613281 C 265.757812 250.496094 265.664062 250.402344 265.546875 250.402344 C 265.429688 250.402344 265.335938 250.496094 265.335938 250.613281 C 265.335938 250.730469 265.429688 250.824219 265.546875 250.824219 C 265.664062 250.824219 265.757812 250.730469 265.757812 250.613281 Z M 265.757812 250.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.617188 246.335938 C 264.617188 246.21875 264.523438 246.125 264.40625 246.125 C 264.289062 246.125 264.195312 246.21875 264.195312 246.335938 C 264.195312 246.453125 264.289062 246.546875 264.40625 246.546875 C 264.523438 246.546875 264.617188 246.453125 264.617188 246.335938 Z M 264.617188 246.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.703125 246.253906 C 264.703125 246.136719 264.609375 246.042969 264.492188 246.042969 C 264.375 246.042969 264.28125 246.136719 264.28125 246.253906 C 264.28125 246.371094 264.375 246.464844 264.492188 246.464844 C 264.609375 246.464844 264.703125 246.371094 264.703125 246.253906 Z M 264.703125 246.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266 246.808594 C 266 246.691406 265.90625 246.597656 265.789062 246.597656 C 265.671875 246.597656 265.578125 246.691406 265.578125 246.808594 C 265.578125 246.925781 265.671875 247.019531 265.789062 247.019531 C 265.90625 247.019531 266 246.925781 266 246.808594 Z M 266 246.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.542969 243.929688 C 267.542969 243.8125 267.449219 243.71875 267.332031 243.71875 C 267.214844 243.71875 267.121094 243.8125 267.121094 243.929688 C 267.121094 244.046875 267.214844 244.140625 267.332031 244.140625 C 267.449219 244.140625 267.542969 244.046875 267.542969 243.929688 Z M 267.542969 243.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.101562 243.171875 C 269.101562 243.054688 269.007812 242.960938 268.890625 242.960938 C 268.773438 242.960938 268.679688 243.054688 268.679688 243.171875 C 268.679688 243.289062 268.773438 243.382812 268.890625 243.382812 C 269.007812 243.382812 269.101562 243.289062 269.101562 243.171875 Z M 269.101562 243.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.105469 241.476562 C 268.105469 241.359375 268.011719 241.265625 267.894531 241.265625 C 267.777344 241.265625 267.683594 241.359375 267.683594 241.476562 C 267.683594 241.59375 267.777344 241.6875 267.894531 241.6875 C 268.011719 241.6875 268.105469 241.59375 268.105469 241.476562 Z M 268.105469 241.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.484375 242.265625 C 266.484375 242.148438 266.390625 242.054688 266.273438 242.054688 C 266.15625 242.054688 266.0625 242.148438 266.0625 242.265625 C 266.0625 242.382812 266.15625 242.476562 266.273438 242.476562 C 266.390625 242.476562 266.484375 242.382812 266.484375 242.265625 Z M 266.484375 242.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.800781 244.753906 C 263.800781 244.636719 263.707031 244.542969 263.589844 244.542969 C 263.472656 244.542969 263.378906 244.636719 263.378906 244.753906 C 263.378906 244.871094 263.472656 244.964844 263.589844 244.964844 C 263.707031 244.964844 263.800781 244.871094 263.800781 244.753906 Z M 263.800781 244.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.542969 243.875 C 264.542969 243.757812 264.449219 243.664062 264.332031 243.664062 C 264.214844 243.664062 264.121094 243.757812 264.121094 243.875 C 264.121094 243.992188 264.214844 244.085938 264.332031 244.085938 C 264.449219 244.085938 264.542969 243.992188 264.542969 243.875 Z M 264.542969 243.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.773438 244.246094 C 262.773438 244.128906 262.679688 244.035156 262.5625 244.035156 C 262.445312 244.035156 262.351562 244.128906 262.351562 244.246094 C 262.351562 244.363281 262.445312 244.457031 262.5625 244.457031 C 262.679688 244.457031 262.773438 244.363281 262.773438 244.246094 Z M 262.773438 244.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.457031 238.257812 C 260.457031 238.140625 260.363281 238.046875 260.246094 238.046875 C 260.128906 238.046875 260.035156 238.140625 260.035156 238.257812 C 260.035156 238.375 260.128906 238.46875 260.246094 238.46875 C 260.363281 238.46875 260.457031 238.375 260.457031 238.257812 Z M 260.457031 238.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.886719 239.40625 C 265.886719 239.289062 265.792969 239.195312 265.675781 239.195312 C 265.558594 239.195312 265.464844 239.289062 265.464844 239.40625 C 265.464844 239.523438 265.558594 239.617188 265.675781 239.617188 C 265.792969 239.617188 265.886719 239.523438 265.886719 239.40625 Z M 265.886719 239.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.945312 240.710938 C 266.945312 240.59375 266.851562 240.5 266.734375 240.5 C 266.617188 240.5 266.523438 240.59375 266.523438 240.710938 C 266.523438 240.828125 266.617188 240.921875 266.734375 240.921875 C 266.851562 240.921875 266.945312 240.828125 266.945312 240.710938 Z M 266.945312 240.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.917969 239.785156 C 265.917969 239.667969 265.824219 239.574219 265.707031 239.574219 C 265.589844 239.574219 265.496094 239.667969 265.496094 239.785156 C 265.496094 239.902344 265.589844 239.996094 265.707031 239.996094 C 265.824219 239.996094 265.917969 239.902344 265.917969 239.785156 Z M 265.917969 239.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.234375 239.101562 C 268.234375 238.984375 268.140625 238.890625 268.023438 238.890625 C 267.90625 238.890625 267.8125 238.984375 267.8125 239.101562 C 267.8125 239.21875 267.90625 239.3125 268.023438 239.3125 C 268.140625 239.3125 268.234375 239.21875 268.234375 239.101562 Z M 268.234375 239.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.363281 239.175781 C 267.363281 239.058594 267.269531 238.964844 267.152344 238.964844 C 267.035156 238.964844 266.941406 239.058594 266.941406 239.175781 C 266.941406 239.292969 267.035156 239.386719 267.152344 239.386719 C 267.269531 239.386719 267.363281 239.292969 267.363281 239.175781 Z M 267.363281 239.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.757812 238.433594 C 266.757812 238.316406 266.664062 238.222656 266.546875 238.222656 C 266.429688 238.222656 266.335938 238.316406 266.335938 238.433594 C 266.335938 238.550781 266.429688 238.644531 266.546875 238.644531 C 266.664062 238.644531 266.757812 238.550781 266.757812 238.433594 Z M 266.757812 238.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.601562 237.214844 C 266.601562 237.097656 266.507812 237.003906 266.390625 237.003906 C 266.273438 237.003906 266.179688 237.097656 266.179688 237.214844 C 266.179688 237.332031 266.273438 237.425781 266.390625 237.425781 C 266.507812 237.425781 266.601562 237.332031 266.601562 237.214844 Z M 266.601562 237.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.203125 232.574219 C 266.203125 232.457031 266.109375 232.363281 265.992188 232.363281 C 265.875 232.363281 265.78125 232.457031 265.78125 232.574219 C 265.78125 232.691406 265.875 232.785156 265.992188 232.785156 C 266.109375 232.785156 266.203125 232.691406 266.203125 232.574219 Z M 266.203125 232.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.914062 234.886719 C 265.914062 234.769531 265.820312 234.675781 265.703125 234.675781 C 265.585938 234.675781 265.492188 234.769531 265.492188 234.886719 C 265.492188 235.003906 265.585938 235.097656 265.703125 235.097656 C 265.820312 235.097656 265.914062 235.003906 265.914062 234.886719 Z M 265.914062 234.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.828125 235.359375 C 267.828125 235.242188 267.734375 235.148438 267.617188 235.148438 C 267.5 235.148438 267.40625 235.242188 267.40625 235.359375 C 267.40625 235.476562 267.5 235.570312 267.617188 235.570312 C 267.734375 235.570312 267.828125 235.476562 267.828125 235.359375 Z M 267.828125 235.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.304688 237.320312 C 266.304688 237.203125 266.210938 237.109375 266.09375 237.109375 C 265.976562 237.109375 265.882812 237.203125 265.882812 237.320312 C 265.882812 237.4375 265.976562 237.53125 266.09375 237.53125 C 266.210938 237.53125 266.304688 237.4375 266.304688 237.320312 Z M 266.304688 237.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.394531 235.597656 C 265.394531 235.480469 265.300781 235.386719 265.183594 235.386719 C 265.066406 235.386719 264.972656 235.480469 264.972656 235.597656 C 264.972656 235.714844 265.066406 235.808594 265.183594 235.808594 C 265.300781 235.808594 265.394531 235.714844 265.394531 235.597656 Z M 265.394531 235.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.957031 235.003906 C 265.957031 234.886719 265.863281 234.792969 265.746094 234.792969 C 265.628906 234.792969 265.535156 234.886719 265.535156 235.003906 C 265.535156 235.121094 265.628906 235.214844 265.746094 235.214844 C 265.863281 235.214844 265.957031 235.121094 265.957031 235.003906 Z M 265.957031 235.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.507812 231.28125 C 262.507812 231.164062 262.414062 231.070312 262.296875 231.070312 C 262.179688 231.070312 262.085938 231.164062 262.085938 231.28125 C 262.085938 231.398438 262.179688 231.492188 262.296875 231.492188 C 262.414062 231.492188 262.507812 231.398438 262.507812 231.28125 Z M 262.507812 231.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.046875 233.125 C 264.046875 233.007812 263.953125 232.914062 263.835938 232.914062 C 263.71875 232.914062 263.625 233.007812 263.625 233.125 C 263.625 233.242188 263.71875 233.335938 263.835938 233.335938 C 263.953125 233.335938 264.046875 233.242188 264.046875 233.125 Z M 264.046875 233.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.328125 235.78125 C 263.328125 235.664062 263.234375 235.570312 263.117188 235.570312 C 263 235.570312 262.90625 235.664062 262.90625 235.78125 C 262.90625 235.898438 263 235.992188 263.117188 235.992188 C 263.234375 235.992188 263.328125 235.898438 263.328125 235.78125 Z M 263.328125 235.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.734375 234.746094 C 262.734375 234.628906 262.640625 234.535156 262.523438 234.535156 C 262.40625 234.535156 262.3125 234.628906 262.3125 234.746094 C 262.3125 234.863281 262.40625 234.957031 262.523438 234.957031 C 262.640625 234.957031 262.734375 234.863281 262.734375 234.746094 Z M 262.734375 234.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.195312 234.851562 C 264.195312 234.734375 264.101562 234.640625 263.984375 234.640625 C 263.867188 234.640625 263.773438 234.734375 263.773438 234.851562 C 263.773438 234.96875 263.867188 235.0625 263.984375 235.0625 C 264.101562 235.0625 264.195312 234.96875 264.195312 234.851562 Z M 264.195312 234.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.210938 237.308594 C 265.210938 237.191406 265.117188 237.097656 265 237.097656 C 264.882812 237.097656 264.789062 237.191406 264.789062 237.308594 C 264.789062 237.425781 264.882812 237.519531 265 237.519531 C 265.117188 237.519531 265.210938 237.425781 265.210938 237.308594 Z M 265.210938 237.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.589844 239.585938 C 261.589844 239.46875 261.496094 239.375 261.378906 239.375 C 261.261719 239.375 261.167969 239.46875 261.167969 239.585938 C 261.167969 239.703125 261.261719 239.796875 261.378906 239.796875 C 261.496094 239.796875 261.589844 239.703125 261.589844 239.585938 Z M 261.589844 239.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.941406 236.289062 C 258.941406 236.171875 258.847656 236.078125 258.730469 236.078125 C 258.613281 236.078125 258.519531 236.171875 258.519531 236.289062 C 258.519531 236.40625 258.613281 236.5 258.730469 236.5 C 258.847656 236.5 258.941406 236.40625 258.941406 236.289062 Z M 258.941406 236.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.515625 239.457031 C 258.515625 239.339844 258.421875 239.246094 258.304688 239.246094 C 258.1875 239.246094 258.09375 239.339844 258.09375 239.457031 C 258.09375 239.574219 258.1875 239.667969 258.304688 239.667969 C 258.421875 239.667969 258.515625 239.574219 258.515625 239.457031 Z M 258.515625 239.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.265625 239.507812 C 254.265625 239.390625 254.171875 239.296875 254.054688 239.296875 C 253.9375 239.296875 253.84375 239.390625 253.84375 239.507812 C 253.84375 239.625 253.9375 239.71875 254.054688 239.71875 C 254.171875 239.71875 254.265625 239.625 254.265625 239.507812 Z M 254.265625 239.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.808594 241.210938 C 255.808594 241.09375 255.714844 241 255.597656 241 C 255.480469 241 255.386719 241.09375 255.386719 241.210938 C 255.386719 241.328125 255.480469 241.421875 255.597656 241.421875 C 255.714844 241.421875 255.808594 241.328125 255.808594 241.210938 Z M 255.808594 241.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.050781 243.425781 C 254.050781 243.308594 253.957031 243.214844 253.839844 243.214844 C 253.722656 243.214844 253.628906 243.308594 253.628906 243.425781 C 253.628906 243.542969 253.722656 243.636719 253.839844 243.636719 C 253.957031 243.636719 254.050781 243.542969 254.050781 243.425781 Z M 254.050781 243.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.519531 243.164062 C 251.519531 243.046875 251.425781 242.953125 251.308594 242.953125 C 251.191406 242.953125 251.097656 243.046875 251.097656 243.164062 C 251.097656 243.28125 251.191406 243.375 251.308594 243.375 C 251.425781 243.375 251.519531 243.28125 251.519531 243.164062 Z M 251.519531 243.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.976562 245.007812 C 251.976562 244.890625 251.882812 244.796875 251.765625 244.796875 C 251.648438 244.796875 251.554688 244.890625 251.554688 245.007812 C 251.554688 245.125 251.648438 245.21875 251.765625 245.21875 C 251.882812 245.21875 251.976562 245.125 251.976562 245.007812 Z M 251.976562 245.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.273438 240.269531 C 251.273438 240.152344 251.179688 240.058594 251.0625 240.058594 C 250.945312 240.058594 250.851562 240.152344 250.851562 240.269531 C 250.851562 240.386719 250.945312 240.480469 251.0625 240.480469 C 251.179688 240.480469 251.273438 240.386719 251.273438 240.269531 Z M 251.273438 240.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.589844 242.804688 C 254.589844 242.6875 254.496094 242.59375 254.378906 242.59375 C 254.261719 242.59375 254.167969 242.6875 254.167969 242.804688 C 254.167969 242.921875 254.261719 243.015625 254.378906 243.015625 C 254.496094 243.015625 254.589844 242.921875 254.589844 242.804688 Z M 254.589844 242.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.546875 243.746094 C 253.546875 243.628906 253.453125 243.535156 253.335938 243.535156 C 253.21875 243.535156 253.125 243.628906 253.125 243.746094 C 253.125 243.863281 253.21875 243.957031 253.335938 243.957031 C 253.453125 243.957031 253.546875 243.863281 253.546875 243.746094 Z M 253.546875 243.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.921875 243.738281 C 252.921875 243.621094 252.828125 243.527344 252.710938 243.527344 C 252.59375 243.527344 252.5 243.621094 252.5 243.738281 C 252.5 243.855469 252.59375 243.949219 252.710938 243.949219 C 252.828125 243.949219 252.921875 243.855469 252.921875 243.738281 Z M 252.921875 243.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.242188 244.367188 C 258.242188 244.25 258.148438 244.15625 258.03125 244.15625 C 257.914062 244.15625 257.820312 244.25 257.820312 244.367188 C 257.820312 244.484375 257.914062 244.578125 258.03125 244.578125 C 258.148438 244.578125 258.242188 244.484375 258.242188 244.367188 Z M 258.242188 244.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.371094 240.660156 C 258.371094 240.542969 258.277344 240.449219 258.160156 240.449219 C 258.042969 240.449219 257.949219 240.542969 257.949219 240.660156 C 257.949219 240.777344 258.042969 240.871094 258.160156 240.871094 C 258.277344 240.871094 258.371094 240.777344 258.371094 240.660156 Z M 258.371094 240.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.039062 240.785156 C 256.039062 240.667969 255.945312 240.574219 255.828125 240.574219 C 255.710938 240.574219 255.617188 240.667969 255.617188 240.785156 C 255.617188 240.902344 255.710938 240.996094 255.828125 240.996094 C 255.945312 240.996094 256.039062 240.902344 256.039062 240.785156 Z M 256.039062 240.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.761719 240.875 C 256.761719 240.757812 256.667969 240.664062 256.550781 240.664062 C 256.433594 240.664062 256.339844 240.757812 256.339844 240.875 C 256.339844 240.992188 256.433594 241.085938 256.550781 241.085938 C 256.667969 241.085938 256.761719 240.992188 256.761719 240.875 Z M 256.761719 240.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.710938 239.542969 C 255.710938 239.425781 255.617188 239.332031 255.5 239.332031 C 255.382812 239.332031 255.289062 239.425781 255.289062 239.542969 C 255.289062 239.660156 255.382812 239.753906 255.5 239.753906 C 255.617188 239.753906 255.710938 239.660156 255.710938 239.542969 Z M 255.710938 239.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.375 240.5625 C 256.375 240.445312 256.28125 240.351562 256.164062 240.351562 C 256.046875 240.351562 255.953125 240.445312 255.953125 240.5625 C 255.953125 240.679688 256.046875 240.773438 256.164062 240.773438 C 256.28125 240.773438 256.375 240.679688 256.375 240.5625 Z M 256.375 240.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.753906 240.566406 C 254.753906 240.449219 254.660156 240.355469 254.542969 240.355469 C 254.425781 240.355469 254.332031 240.449219 254.332031 240.566406 C 254.332031 240.683594 254.425781 240.777344 254.542969 240.777344 C 254.660156 240.777344 254.753906 240.683594 254.753906 240.566406 Z M 254.753906 240.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.085938 236.773438 C 254.085938 236.65625 253.992188 236.5625 253.875 236.5625 C 253.757812 236.5625 253.664062 236.65625 253.664062 236.773438 C 253.664062 236.890625 253.757812 236.984375 253.875 236.984375 C 253.992188 236.984375 254.085938 236.890625 254.085938 236.773438 Z M 254.085938 236.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.5625 239.570312 C 255.5625 239.453125 255.46875 239.359375 255.351562 239.359375 C 255.234375 239.359375 255.140625 239.453125 255.140625 239.570312 C 255.140625 239.6875 255.234375 239.78125 255.351562 239.78125 C 255.46875 239.78125 255.5625 239.6875 255.5625 239.570312 Z M 255.5625 239.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.382812 239.546875 C 254.382812 239.429688 254.289062 239.335938 254.171875 239.335938 C 254.054688 239.335938 253.960938 239.429688 253.960938 239.546875 C 253.960938 239.664062 254.054688 239.757812 254.171875 239.757812 C 254.289062 239.757812 254.382812 239.664062 254.382812 239.546875 Z M 254.382812 239.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.425781 239.679688 C 252.425781 239.5625 252.332031 239.46875 252.214844 239.46875 C 252.097656 239.46875 252.003906 239.5625 252.003906 239.679688 C 252.003906 239.796875 252.097656 239.890625 252.214844 239.890625 C 252.332031 239.890625 252.425781 239.796875 252.425781 239.679688 Z M 252.425781 239.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.695312 239.390625 C 252.695312 239.273438 252.601562 239.179688 252.484375 239.179688 C 252.367188 239.179688 252.273438 239.273438 252.273438 239.390625 C 252.273438 239.507812 252.367188 239.601562 252.484375 239.601562 C 252.601562 239.601562 252.695312 239.507812 252.695312 239.390625 Z M 252.695312 239.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.972656 241.242188 C 250.972656 241.125 250.878906 241.03125 250.761719 241.03125 C 250.644531 241.03125 250.550781 241.125 250.550781 241.242188 C 250.550781 241.359375 250.644531 241.453125 250.761719 241.453125 C 250.878906 241.453125 250.972656 241.359375 250.972656 241.242188 Z M 250.972656 241.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.53125 242.601562 C 251.53125 242.484375 251.4375 242.390625 251.320312 242.390625 C 251.203125 242.390625 251.109375 242.484375 251.109375 242.601562 C 251.109375 242.71875 251.203125 242.8125 251.320312 242.8125 C 251.4375 242.8125 251.53125 242.71875 251.53125 242.601562 Z M 251.53125 242.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.953125 245.769531 C 251.953125 245.652344 251.859375 245.558594 251.742188 245.558594 C 251.625 245.558594 251.53125 245.652344 251.53125 245.769531 C 251.53125 245.886719 251.625 245.980469 251.742188 245.980469 C 251.859375 245.980469 251.953125 245.886719 251.953125 245.769531 Z M 251.953125 245.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.5 247.84375 C 251.5 247.726562 251.40625 247.632812 251.289062 247.632812 C 251.171875 247.632812 251.078125 247.726562 251.078125 247.84375 C 251.078125 247.960938 251.171875 248.054688 251.289062 248.054688 C 251.40625 248.054688 251.5 247.960938 251.5 247.84375 Z M 251.5 247.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.253906 247.039062 C 250.253906 246.921875 250.160156 246.828125 250.042969 246.828125 C 249.925781 246.828125 249.832031 246.921875 249.832031 247.039062 C 249.832031 247.15625 249.925781 247.25 250.042969 247.25 C 250.160156 247.25 250.253906 247.15625 250.253906 247.039062 Z M 250.253906 247.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.0625 245.34375 C 252.0625 245.226562 251.96875 245.132812 251.851562 245.132812 C 251.734375 245.132812 251.640625 245.226562 251.640625 245.34375 C 251.640625 245.460938 251.734375 245.554688 251.851562 245.554688 C 251.96875 245.554688 252.0625 245.460938 252.0625 245.34375 Z M 252.0625 245.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.082031 248.074219 C 252.082031 247.957031 251.988281 247.863281 251.871094 247.863281 C 251.753906 247.863281 251.660156 247.957031 251.660156 248.074219 C 251.660156 248.191406 251.753906 248.285156 251.871094 248.285156 C 251.988281 248.285156 252.082031 248.191406 252.082031 248.074219 Z M 252.082031 248.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.605469 244.332031 C 252.605469 244.214844 252.511719 244.121094 252.394531 244.121094 C 252.277344 244.121094 252.183594 244.214844 252.183594 244.332031 C 252.183594 244.449219 252.277344 244.542969 252.394531 244.542969 C 252.511719 244.542969 252.605469 244.449219 252.605469 244.332031 Z M 252.605469 244.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.046875 241.558594 C 251.046875 241.441406 250.953125 241.347656 250.835938 241.347656 C 250.71875 241.347656 250.625 241.441406 250.625 241.558594 C 250.625 241.675781 250.71875 241.769531 250.835938 241.769531 C 250.953125 241.769531 251.046875 241.675781 251.046875 241.558594 Z M 251.046875 241.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.097656 241.015625 C 249.097656 240.898438 249.003906 240.804688 248.886719 240.804688 C 248.769531 240.804688 248.675781 240.898438 248.675781 241.015625 C 248.675781 241.132812 248.769531 241.226562 248.886719 241.226562 C 249.003906 241.226562 249.097656 241.132812 249.097656 241.015625 Z M 249.097656 241.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.492188 241.289062 C 247.492188 241.171875 247.398438 241.078125 247.28125 241.078125 C 247.164062 241.078125 247.070312 241.171875 247.070312 241.289062 C 247.070312 241.40625 247.164062 241.5 247.28125 241.5 C 247.398438 241.5 247.492188 241.40625 247.492188 241.289062 Z M 247.492188 241.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.117188 242.230469 C 246.117188 242.113281 246.023438 242.019531 245.90625 242.019531 C 245.789062 242.019531 245.695312 242.113281 245.695312 242.230469 C 245.695312 242.347656 245.789062 242.441406 245.90625 242.441406 C 246.023438 242.441406 246.117188 242.347656 246.117188 242.230469 Z M 246.117188 242.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.898438 243.898438 C 245.898438 243.78125 245.804688 243.6875 245.6875 243.6875 C 245.570312 243.6875 245.476562 243.78125 245.476562 243.898438 C 245.476562 244.015625 245.570312 244.109375 245.6875 244.109375 C 245.804688 244.109375 245.898438 244.015625 245.898438 243.898438 Z M 245.898438 243.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.703125 245.78125 C 248.703125 245.664062 248.609375 245.570312 248.492188 245.570312 C 248.375 245.570312 248.28125 245.664062 248.28125 245.78125 C 248.28125 245.898438 248.375 245.992188 248.492188 245.992188 C 248.609375 245.992188 248.703125 245.898438 248.703125 245.78125 Z M 248.703125 245.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.292969 248.023438 C 250.292969 247.90625 250.199219 247.8125 250.082031 247.8125 C 249.964844 247.8125 249.871094 247.90625 249.871094 248.023438 C 249.871094 248.140625 249.964844 248.234375 250.082031 248.234375 C 250.199219 248.234375 250.292969 248.140625 250.292969 248.023438 Z M 250.292969 248.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.171875 247.820312 C 248.171875 247.703125 248.078125 247.609375 247.960938 247.609375 C 247.84375 247.609375 247.75 247.703125 247.75 247.820312 C 247.75 247.9375 247.84375 248.03125 247.960938 248.03125 C 248.078125 248.03125 248.171875 247.9375 248.171875 247.820312 Z M 248.171875 247.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.738281 244.941406 C 247.738281 244.824219 247.644531 244.730469 247.527344 244.730469 C 247.410156 244.730469 247.316406 244.824219 247.316406 244.941406 C 247.316406 245.058594 247.410156 245.152344 247.527344 245.152344 C 247.644531 245.152344 247.738281 245.058594 247.738281 244.941406 Z M 247.738281 244.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.15625 245.984375 C 247.15625 245.867188 247.0625 245.773438 246.945312 245.773438 C 246.828125 245.773438 246.734375 245.867188 246.734375 245.984375 C 246.734375 246.101562 246.828125 246.195312 246.945312 246.195312 C 247.0625 246.195312 247.15625 246.101562 247.15625 245.984375 Z M 247.15625 245.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.355469 246.191406 C 247.355469 246.074219 247.261719 245.980469 247.144531 245.980469 C 247.027344 245.980469 246.933594 246.074219 246.933594 246.191406 C 246.933594 246.308594 247.027344 246.402344 247.144531 246.402344 C 247.261719 246.402344 247.355469 246.308594 247.355469 246.191406 Z M 247.355469 246.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.503906 247.273438 C 244.503906 247.15625 244.410156 247.0625 244.292969 247.0625 C 244.175781 247.0625 244.082031 247.15625 244.082031 247.273438 C 244.082031 247.390625 244.175781 247.484375 244.292969 247.484375 C 244.410156 247.484375 244.503906 247.390625 244.503906 247.273438 Z M 244.503906 247.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.015625 247.070312 C 245.015625 246.953125 244.921875 246.859375 244.804688 246.859375 C 244.6875 246.859375 244.59375 246.953125 244.59375 247.070312 C 244.59375 247.1875 244.6875 247.28125 244.804688 247.28125 C 244.921875 247.28125 245.015625 247.1875 245.015625 247.070312 Z M 245.015625 247.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.265625 248.464844 C 248.265625 248.347656 248.171875 248.253906 248.054688 248.253906 C 247.9375 248.253906 247.84375 248.347656 247.84375 248.464844 C 247.84375 248.582031 247.9375 248.675781 248.054688 248.675781 C 248.171875 248.675781 248.265625 248.582031 248.265625 248.464844 Z M 248.265625 248.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.183594 249.761719 C 249.183594 249.644531 249.089844 249.550781 248.972656 249.550781 C 248.855469 249.550781 248.761719 249.644531 248.761719 249.761719 C 248.761719 249.878906 248.855469 249.972656 248.972656 249.972656 C 249.089844 249.972656 249.183594 249.878906 249.183594 249.761719 Z M 249.183594 249.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.132812 249.039062 C 247.132812 248.921875 247.039062 248.828125 246.921875 248.828125 C 246.804688 248.828125 246.710938 248.921875 246.710938 249.039062 C 246.710938 249.15625 246.804688 249.25 246.921875 249.25 C 247.039062 249.25 247.132812 249.15625 247.132812 249.039062 Z M 247.132812 249.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.214844 245.078125 C 252.214844 244.960938 252.121094 244.867188 252.003906 244.867188 C 251.886719 244.867188 251.792969 244.960938 251.792969 245.078125 C 251.792969 245.195312 251.886719 245.289062 252.003906 245.289062 C 252.121094 245.289062 252.214844 245.195312 252.214844 245.078125 Z M 252.214844 245.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.523438 244.996094 C 253.523438 244.878906 253.429688 244.785156 253.3125 244.785156 C 253.195312 244.785156 253.101562 244.878906 253.101562 244.996094 C 253.101562 245.113281 253.195312 245.207031 253.3125 245.207031 C 253.429688 245.207031 253.523438 245.113281 253.523438 244.996094 Z M 253.523438 244.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.277344 244.929688 C 253.277344 244.8125 253.183594 244.71875 253.066406 244.71875 C 252.949219 244.71875 252.855469 244.8125 252.855469 244.929688 C 252.855469 245.046875 252.949219 245.140625 253.066406 245.140625 C 253.183594 245.140625 253.277344 245.046875 253.277344 244.929688 Z M 253.277344 244.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.703125 243.410156 C 257.703125 243.292969 257.609375 243.199219 257.492188 243.199219 C 257.375 243.199219 257.28125 243.292969 257.28125 243.410156 C 257.28125 243.527344 257.375 243.621094 257.492188 243.621094 C 257.609375 243.621094 257.703125 243.527344 257.703125 243.410156 Z M 257.703125 243.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.898438 243.296875 C 256.898438 243.179688 256.804688 243.085938 256.6875 243.085938 C 256.570312 243.085938 256.476562 243.179688 256.476562 243.296875 C 256.476562 243.414062 256.570312 243.507812 256.6875 243.507812 C 256.804688 243.507812 256.898438 243.414062 256.898438 243.296875 Z M 256.898438 243.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.320312 242.679688 C 258.320312 242.5625 258.226562 242.46875 258.109375 242.46875 C 257.992188 242.46875 257.898438 242.5625 257.898438 242.679688 C 257.898438 242.796875 257.992188 242.890625 258.109375 242.890625 C 258.226562 242.890625 258.320312 242.796875 258.320312 242.679688 Z M 258.320312 242.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.371094 238.695312 C 258.371094 238.578125 258.277344 238.484375 258.160156 238.484375 C 258.042969 238.484375 257.949219 238.578125 257.949219 238.695312 C 257.949219 238.8125 258.042969 238.90625 258.160156 238.90625 C 258.277344 238.90625 258.371094 238.8125 258.371094 238.695312 Z M 258.371094 238.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.230469 238.667969 C 256.230469 238.550781 256.136719 238.457031 256.019531 238.457031 C 255.902344 238.457031 255.808594 238.550781 255.808594 238.667969 C 255.808594 238.785156 255.902344 238.878906 256.019531 238.878906 C 256.136719 238.878906 256.230469 238.785156 256.230469 238.667969 Z M 256.230469 238.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.683594 238.648438 C 257.683594 238.53125 257.589844 238.4375 257.472656 238.4375 C 257.355469 238.4375 257.261719 238.53125 257.261719 238.648438 C 257.261719 238.765625 257.355469 238.859375 257.472656 238.859375 C 257.589844 238.859375 257.683594 238.765625 257.683594 238.648438 Z M 257.683594 238.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.015625 238.832031 C 258.015625 238.714844 257.921875 238.621094 257.804688 238.621094 C 257.6875 238.621094 257.59375 238.714844 257.59375 238.832031 C 257.59375 238.949219 257.6875 239.042969 257.804688 239.042969 C 257.921875 239.042969 258.015625 238.949219 258.015625 238.832031 Z M 258.015625 238.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.933594 240.21875 C 260.933594 240.101562 260.839844 240.007812 260.722656 240.007812 C 260.605469 240.007812 260.511719 240.101562 260.511719 240.21875 C 260.511719 240.335938 260.605469 240.429688 260.722656 240.429688 C 260.839844 240.429688 260.933594 240.335938 260.933594 240.21875 Z M 260.933594 240.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.910156 241.898438 C 258.910156 241.78125 258.816406 241.6875 258.699219 241.6875 C 258.582031 241.6875 258.488281 241.78125 258.488281 241.898438 C 258.488281 242.015625 258.582031 242.109375 258.699219 242.109375 C 258.816406 242.109375 258.910156 242.015625 258.910156 241.898438 Z M 258.910156 241.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.074219 240.554688 C 262.074219 240.4375 261.980469 240.34375 261.863281 240.34375 C 261.746094 240.34375 261.652344 240.4375 261.652344 240.554688 C 261.652344 240.671875 261.746094 240.765625 261.863281 240.765625 C 261.980469 240.765625 262.074219 240.671875 262.074219 240.554688 Z M 262.074219 240.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.40625 238.464844 C 259.40625 238.347656 259.3125 238.253906 259.195312 238.253906 C 259.078125 238.253906 258.984375 238.347656 258.984375 238.464844 C 258.984375 238.582031 259.078125 238.675781 259.195312 238.675781 C 259.3125 238.675781 259.40625 238.582031 259.40625 238.464844 Z M 259.40625 238.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.273438 239.4375 C 259.273438 239.320312 259.179688 239.226562 259.0625 239.226562 C 258.945312 239.226562 258.851562 239.320312 258.851562 239.4375 C 258.851562 239.554688 258.945312 239.648438 259.0625 239.648438 C 259.179688 239.648438 259.273438 239.554688 259.273438 239.4375 Z M 259.273438 239.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.316406 239.875 C 260.316406 239.757812 260.222656 239.664062 260.105469 239.664062 C 259.988281 239.664062 259.894531 239.757812 259.894531 239.875 C 259.894531 239.992188 259.988281 240.085938 260.105469 240.085938 C 260.222656 240.085938 260.316406 239.992188 260.316406 239.875 Z M 260.316406 239.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.34375 239.863281 C 262.34375 239.746094 262.25 239.652344 262.132812 239.652344 C 262.015625 239.652344 261.921875 239.746094 261.921875 239.863281 C 261.921875 239.980469 262.015625 240.074219 262.132812 240.074219 C 262.25 240.074219 262.34375 239.980469 262.34375 239.863281 Z M 262.34375 239.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.253906 245.117188 C 259.253906 245 259.160156 244.90625 259.042969 244.90625 C 258.925781 244.90625 258.832031 245 258.832031 245.117188 C 258.832031 245.234375 258.925781 245.328125 259.042969 245.328125 C 259.160156 245.328125 259.253906 245.234375 259.253906 245.117188 Z M 259.253906 245.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.335938 244.691406 C 260.335938 244.574219 260.242188 244.480469 260.125 244.480469 C 260.007812 244.480469 259.914062 244.574219 259.914062 244.691406 C 259.914062 244.808594 260.007812 244.902344 260.125 244.902344 C 260.242188 244.902344 260.335938 244.808594 260.335938 244.691406 Z M 260.335938 244.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.089844 239.015625 C 257.089844 238.898438 256.996094 238.804688 256.878906 238.804688 C 256.761719 238.804688 256.667969 238.898438 256.667969 239.015625 C 256.667969 239.132812 256.761719 239.226562 256.878906 239.226562 C 256.996094 239.226562 257.089844 239.132812 257.089844 239.015625 Z M 257.089844 239.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.203125 241.949219 C 257.203125 241.832031 257.109375 241.738281 256.992188 241.738281 C 256.875 241.738281 256.78125 241.832031 256.78125 241.949219 C 256.78125 242.066406 256.875 242.160156 256.992188 242.160156 C 257.109375 242.160156 257.203125 242.066406 257.203125 241.949219 Z M 257.203125 241.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.734375 244.742188 C 257.734375 244.625 257.640625 244.53125 257.523438 244.53125 C 257.40625 244.53125 257.3125 244.625 257.3125 244.742188 C 257.3125 244.859375 257.40625 244.953125 257.523438 244.953125 C 257.640625 244.953125 257.734375 244.859375 257.734375 244.742188 Z M 257.734375 244.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.296875 243.503906 C 253.296875 243.386719 253.203125 243.292969 253.085938 243.292969 C 252.96875 243.292969 252.875 243.386719 252.875 243.503906 C 252.875 243.621094 252.96875 243.714844 253.085938 243.714844 C 253.203125 243.714844 253.296875 243.621094 253.296875 243.503906 Z M 253.296875 243.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.238281 243.527344 C 253.238281 243.410156 253.144531 243.316406 253.027344 243.316406 C 252.910156 243.316406 252.816406 243.410156 252.816406 243.527344 C 252.816406 243.644531 252.910156 243.738281 253.027344 243.738281 C 253.144531 243.738281 253.238281 243.644531 253.238281 243.527344 Z M 253.238281 243.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.761719 244.054688 C 255.761719 243.9375 255.667969 243.84375 255.550781 243.84375 C 255.433594 243.84375 255.339844 243.9375 255.339844 244.054688 C 255.339844 244.171875 255.433594 244.265625 255.550781 244.265625 C 255.667969 244.265625 255.761719 244.171875 255.761719 244.054688 Z M 255.761719 244.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.921875 242.835938 C 256.921875 242.71875 256.828125 242.625 256.710938 242.625 C 256.59375 242.625 256.5 242.71875 256.5 242.835938 C 256.5 242.953125 256.59375 243.046875 256.710938 243.046875 C 256.828125 243.046875 256.921875 242.953125 256.921875 242.835938 Z M 256.921875 242.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.472656 242.757812 C 257.472656 242.640625 257.378906 242.546875 257.261719 242.546875 C 257.144531 242.546875 257.050781 242.640625 257.050781 242.757812 C 257.050781 242.875 257.144531 242.96875 257.261719 242.96875 C 257.378906 242.96875 257.472656 242.875 257.472656 242.757812 Z M 257.472656 242.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.121094 240.839844 C 261.121094 240.722656 261.027344 240.628906 260.910156 240.628906 C 260.792969 240.628906 260.699219 240.722656 260.699219 240.839844 C 260.699219 240.957031 260.792969 241.050781 260.910156 241.050781 C 261.027344 241.050781 261.121094 240.957031 261.121094 240.839844 Z M 261.121094 240.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.371094 239.984375 C 262.371094 239.867188 262.277344 239.773438 262.160156 239.773438 C 262.042969 239.773438 261.949219 239.867188 261.949219 239.984375 C 261.949219 240.101562 262.042969 240.195312 262.160156 240.195312 C 262.277344 240.195312 262.371094 240.101562 262.371094 239.984375 Z M 262.371094 239.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.972656 238.191406 C 262.972656 238.074219 262.878906 237.980469 262.761719 237.980469 C 262.644531 237.980469 262.550781 238.074219 262.550781 238.191406 C 262.550781 238.308594 262.644531 238.402344 262.761719 238.402344 C 262.878906 238.402344 262.972656 238.308594 262.972656 238.191406 Z M 262.972656 238.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.574219 238.574219 C 262.574219 238.457031 262.480469 238.363281 262.363281 238.363281 C 262.246094 238.363281 262.152344 238.457031 262.152344 238.574219 C 262.152344 238.691406 262.246094 238.785156 262.363281 238.785156 C 262.480469 238.785156 262.574219 238.691406 262.574219 238.574219 Z M 262.574219 238.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.882812 238.238281 C 269.882812 238.121094 269.789062 238.027344 269.671875 238.027344 C 269.554688 238.027344 269.460938 238.121094 269.460938 238.238281 C 269.460938 238.355469 269.554688 238.449219 269.671875 238.449219 C 269.789062 238.449219 269.882812 238.355469 269.882812 238.238281 Z M 269.882812 238.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.941406 240.734375 C 266.941406 240.617188 266.847656 240.523438 266.730469 240.523438 C 266.613281 240.523438 266.519531 240.617188 266.519531 240.734375 C 266.519531 240.851562 266.613281 240.945312 266.730469 240.945312 C 266.847656 240.945312 266.941406 240.851562 266.941406 240.734375 Z M 266.941406 240.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.296875 242.839844 C 268.296875 242.722656 268.203125 242.628906 268.085938 242.628906 C 267.96875 242.628906 267.875 242.722656 267.875 242.839844 C 267.875 242.957031 267.96875 243.050781 268.085938 243.050781 C 268.203125 243.050781 268.296875 242.957031 268.296875 242.839844 Z M 268.296875 242.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.261719 244.59375 C 269.261719 244.476562 269.167969 244.382812 269.050781 244.382812 C 268.933594 244.382812 268.839844 244.476562 268.839844 244.59375 C 268.839844 244.710938 268.933594 244.804688 269.050781 244.804688 C 269.167969 244.804688 269.261719 244.710938 269.261719 244.59375 Z M 269.261719 244.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.628906 243.550781 C 268.628906 243.433594 268.535156 243.339844 268.417969 243.339844 C 268.300781 243.339844 268.207031 243.433594 268.207031 243.550781 C 268.207031 243.667969 268.300781 243.761719 268.417969 243.761719 C 268.535156 243.761719 268.628906 243.667969 268.628906 243.550781 Z M 268.628906 243.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.859375 245.152344 C 272.859375 245.035156 272.765625 244.941406 272.648438 244.941406 C 272.53125 244.941406 272.4375 245.035156 272.4375 245.152344 C 272.4375 245.269531 272.53125 245.363281 272.648438 245.363281 C 272.765625 245.363281 272.859375 245.269531 272.859375 245.152344 Z M 272.859375 245.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.277344 247.296875 C 272.277344 247.179688 272.183594 247.085938 272.066406 247.085938 C 271.949219 247.085938 271.855469 247.179688 271.855469 247.296875 C 271.855469 247.414062 271.949219 247.507812 272.066406 247.507812 C 272.183594 247.507812 272.277344 247.414062 272.277344 247.296875 Z M 272.277344 247.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.914062 245.53125 C 270.914062 245.414062 270.820312 245.320312 270.703125 245.320312 C 270.585938 245.320312 270.492188 245.414062 270.492188 245.53125 C 270.492188 245.648438 270.585938 245.742188 270.703125 245.742188 C 270.820312 245.742188 270.914062 245.648438 270.914062 245.53125 Z M 270.914062 245.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.625 245.742188 C 270.625 245.625 270.53125 245.53125 270.414062 245.53125 C 270.296875 245.53125 270.203125 245.625 270.203125 245.742188 C 270.203125 245.859375 270.296875 245.953125 270.414062 245.953125 C 270.53125 245.953125 270.625 245.859375 270.625 245.742188 Z M 270.625 245.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.796875 243.773438 C 269.796875 243.65625 269.703125 243.5625 269.585938 243.5625 C 269.46875 243.5625 269.375 243.65625 269.375 243.773438 C 269.375 243.890625 269.46875 243.984375 269.585938 243.984375 C 269.703125 243.984375 269.796875 243.890625 269.796875 243.773438 Z M 269.796875 243.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.921875 243.023438 C 270.921875 242.90625 270.828125 242.8125 270.710938 242.8125 C 270.59375 242.8125 270.5 242.90625 270.5 243.023438 C 270.5 243.140625 270.59375 243.234375 270.710938 243.234375 C 270.828125 243.234375 270.921875 243.140625 270.921875 243.023438 Z M 270.921875 243.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.878906 241.445312 C 269.878906 241.328125 269.785156 241.234375 269.667969 241.234375 C 269.550781 241.234375 269.457031 241.328125 269.457031 241.445312 C 269.457031 241.5625 269.550781 241.65625 269.667969 241.65625 C 269.785156 241.65625 269.878906 241.5625 269.878906 241.445312 Z M 269.878906 241.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.820312 241.351562 C 271.820312 241.234375 271.726562 241.140625 271.609375 241.140625 C 271.492188 241.140625 271.398438 241.234375 271.398438 241.351562 C 271.398438 241.46875 271.492188 241.5625 271.609375 241.5625 C 271.726562 241.5625 271.820312 241.46875 271.820312 241.351562 Z M 271.820312 241.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.601562 240.09375 C 271.601562 239.976562 271.507812 239.882812 271.390625 239.882812 C 271.273438 239.882812 271.179688 239.976562 271.179688 240.09375 C 271.179688 240.210938 271.273438 240.304688 271.390625 240.304688 C 271.507812 240.304688 271.601562 240.210938 271.601562 240.09375 Z M 271.601562 240.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272 238.1875 C 272 238.070312 271.90625 237.976562 271.789062 237.976562 C 271.671875 237.976562 271.578125 238.070312 271.578125 238.1875 C 271.578125 238.304688 271.671875 238.398438 271.789062 238.398438 C 271.90625 238.398438 272 238.304688 272 238.1875 Z M 272 238.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.3125 235.304688 C 271.3125 235.1875 271.21875 235.09375 271.101562 235.09375 C 270.984375 235.09375 270.890625 235.1875 270.890625 235.304688 C 270.890625 235.421875 270.984375 235.515625 271.101562 235.515625 C 271.21875 235.515625 271.3125 235.421875 271.3125 235.304688 Z M 271.3125 235.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.304688 235.757812 C 268.304688 235.640625 268.210938 235.546875 268.09375 235.546875 C 267.976562 235.546875 267.882812 235.640625 267.882812 235.757812 C 267.882812 235.875 267.976562 235.96875 268.09375 235.96875 C 268.210938 235.96875 268.304688 235.875 268.304688 235.757812 Z M 268.304688 235.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.816406 236.003906 C 267.816406 235.886719 267.722656 235.792969 267.605469 235.792969 C 267.488281 235.792969 267.394531 235.886719 267.394531 236.003906 C 267.394531 236.121094 267.488281 236.214844 267.605469 236.214844 C 267.722656 236.214844 267.816406 236.121094 267.816406 236.003906 Z M 267.816406 236.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.035156 237.78125 C 267.035156 237.664062 266.941406 237.570312 266.824219 237.570312 C 266.707031 237.570312 266.613281 237.664062 266.613281 237.78125 C 266.613281 237.898438 266.707031 237.992188 266.824219 237.992188 C 266.941406 237.992188 267.035156 237.898438 267.035156 237.78125 Z M 267.035156 237.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.367188 240.183594 C 266.367188 240.066406 266.273438 239.972656 266.15625 239.972656 C 266.039062 239.972656 265.945312 240.066406 265.945312 240.183594 C 265.945312 240.300781 266.039062 240.394531 266.15625 240.394531 C 266.273438 240.394531 266.367188 240.300781 266.367188 240.183594 Z M 266.367188 240.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.585938 236.402344 C 268.585938 236.285156 268.492188 236.191406 268.375 236.191406 C 268.257812 236.191406 268.164062 236.285156 268.164062 236.402344 C 268.164062 236.519531 268.257812 236.613281 268.375 236.613281 C 268.492188 236.613281 268.585938 236.519531 268.585938 236.402344 Z M 268.585938 236.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.082031 237.980469 C 269.082031 237.863281 268.988281 237.769531 268.871094 237.769531 C 268.753906 237.769531 268.660156 237.863281 268.660156 237.980469 C 268.660156 238.097656 268.753906 238.191406 268.871094 238.191406 C 268.988281 238.191406 269.082031 238.097656 269.082031 237.980469 Z M 269.082031 237.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.109375 237.398438 C 266.109375 237.28125 266.015625 237.1875 265.898438 237.1875 C 265.78125 237.1875 265.6875 237.28125 265.6875 237.398438 C 265.6875 237.515625 265.78125 237.609375 265.898438 237.609375 C 266.015625 237.609375 266.109375 237.515625 266.109375 237.398438 Z M 266.109375 237.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.042969 237.890625 C 269.042969 237.773438 268.949219 237.679688 268.832031 237.679688 C 268.714844 237.679688 268.621094 237.773438 268.621094 237.890625 C 268.621094 238.007812 268.714844 238.101562 268.832031 238.101562 C 268.949219 238.101562 269.042969 238.007812 269.042969 237.890625 Z M 269.042969 237.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.804688 241.054688 C 270.804688 240.9375 270.710938 240.84375 270.59375 240.84375 C 270.476562 240.84375 270.382812 240.9375 270.382812 241.054688 C 270.382812 241.171875 270.476562 241.265625 270.59375 241.265625 C 270.710938 241.265625 270.804688 241.171875 270.804688 241.054688 Z M 270.804688 241.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.953125 242.550781 C 271.953125 242.433594 271.859375 242.339844 271.742188 242.339844 C 271.625 242.339844 271.53125 242.433594 271.53125 242.550781 C 271.53125 242.667969 271.625 242.761719 271.742188 242.761719 C 271.859375 242.761719 271.953125 242.667969 271.953125 242.550781 Z M 271.953125 242.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.535156 245.3125 C 273.535156 245.195312 273.441406 245.101562 273.324219 245.101562 C 273.207031 245.101562 273.113281 245.195312 273.113281 245.3125 C 273.113281 245.429688 273.207031 245.523438 273.324219 245.523438 C 273.441406 245.523438 273.535156 245.429688 273.535156 245.3125 Z M 273.535156 245.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.355469 243.949219 C 274.355469 243.832031 274.261719 243.738281 274.144531 243.738281 C 274.027344 243.738281 273.933594 243.832031 273.933594 243.949219 C 273.933594 244.066406 274.027344 244.160156 274.144531 244.160156 C 274.261719 244.160156 274.355469 244.066406 274.355469 243.949219 Z M 274.355469 243.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.863281 244.199219 C 275.863281 244.082031 275.769531 243.988281 275.652344 243.988281 C 275.535156 243.988281 275.441406 244.082031 275.441406 244.199219 C 275.441406 244.316406 275.535156 244.410156 275.652344 244.410156 C 275.769531 244.410156 275.863281 244.316406 275.863281 244.199219 Z M 275.863281 244.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.679688 240.898438 C 272.679688 240.78125 272.585938 240.6875 272.46875 240.6875 C 272.351562 240.6875 272.257812 240.78125 272.257812 240.898438 C 272.257812 241.015625 272.351562 241.109375 272.46875 241.109375 C 272.585938 241.109375 272.679688 241.015625 272.679688 240.898438 Z M 272.679688 240.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.039062 244.582031 C 274.039062 244.464844 273.945312 244.371094 273.828125 244.371094 C 273.710938 244.371094 273.617188 244.464844 273.617188 244.582031 C 273.617188 244.699219 273.710938 244.792969 273.828125 244.792969 C 273.945312 244.792969 274.039062 244.699219 274.039062 244.582031 Z M 274.039062 244.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.339844 246.765625 C 274.339844 246.648438 274.246094 246.554688 274.128906 246.554688 C 274.011719 246.554688 273.917969 246.648438 273.917969 246.765625 C 273.917969 246.882812 274.011719 246.976562 274.128906 246.976562 C 274.246094 246.976562 274.339844 246.882812 274.339844 246.765625 Z M 274.339844 246.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.664062 246.585938 C 274.664062 246.46875 274.570312 246.375 274.453125 246.375 C 274.335938 246.375 274.242188 246.46875 274.242188 246.585938 C 274.242188 246.703125 274.335938 246.796875 274.453125 246.796875 C 274.570312 246.796875 274.664062 246.703125 274.664062 246.585938 Z M 274.664062 246.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.492188 248.214844 C 278.492188 248.097656 278.398438 248.003906 278.28125 248.003906 C 278.164062 248.003906 278.070312 248.097656 278.070312 248.214844 C 278.070312 248.332031 278.164062 248.425781 278.28125 248.425781 C 278.398438 248.425781 278.492188 248.332031 278.492188 248.214844 Z M 278.492188 248.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.792969 248.089844 C 278.792969 247.972656 278.699219 247.878906 278.582031 247.878906 C 278.464844 247.878906 278.371094 247.972656 278.371094 248.089844 C 278.371094 248.207031 278.464844 248.300781 278.582031 248.300781 C 278.699219 248.300781 278.792969 248.207031 278.792969 248.089844 Z M 278.792969 248.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.949219 251.175781 C 275.949219 251.058594 275.855469 250.964844 275.738281 250.964844 C 275.621094 250.964844 275.527344 251.058594 275.527344 251.175781 C 275.527344 251.292969 275.621094 251.386719 275.738281 251.386719 C 275.855469 251.386719 275.949219 251.292969 275.949219 251.175781 Z M 275.949219 251.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.015625 249.167969 C 280.015625 249.050781 279.921875 248.957031 279.804688 248.957031 C 279.6875 248.957031 279.59375 249.050781 279.59375 249.167969 C 279.59375 249.285156 279.6875 249.378906 279.804688 249.378906 C 279.921875 249.378906 280.015625 249.285156 280.015625 249.167969 Z M 280.015625 249.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.15625 245.441406 C 279.15625 245.324219 279.0625 245.230469 278.945312 245.230469 C 278.828125 245.230469 278.734375 245.324219 278.734375 245.441406 C 278.734375 245.558594 278.828125 245.652344 278.945312 245.652344 C 279.0625 245.652344 279.15625 245.558594 279.15625 245.441406 Z M 279.15625 245.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.363281 244.28125 C 277.363281 244.164062 277.269531 244.070312 277.152344 244.070312 C 277.035156 244.070312 276.941406 244.164062 276.941406 244.28125 C 276.941406 244.398438 277.035156 244.492188 277.152344 244.492188 C 277.269531 244.492188 277.363281 244.398438 277.363281 244.28125 Z M 277.363281 244.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.050781 243.339844 C 276.050781 243.222656 275.957031 243.128906 275.839844 243.128906 C 275.722656 243.128906 275.628906 243.222656 275.628906 243.339844 C 275.628906 243.457031 275.722656 243.550781 275.839844 243.550781 C 275.957031 243.550781 276.050781 243.457031 276.050781 243.339844 Z M 276.050781 243.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.769531 242.847656 C 277.769531 242.730469 277.675781 242.636719 277.558594 242.636719 C 277.441406 242.636719 277.347656 242.730469 277.347656 242.847656 C 277.347656 242.964844 277.441406 243.058594 277.558594 243.058594 C 277.675781 243.058594 277.769531 242.964844 277.769531 242.847656 Z M 277.769531 242.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.289062 242.648438 C 277.289062 242.53125 277.195312 242.4375 277.078125 242.4375 C 276.960938 242.4375 276.867188 242.53125 276.867188 242.648438 C 276.867188 242.765625 276.960938 242.859375 277.078125 242.859375 C 277.195312 242.859375 277.289062 242.765625 277.289062 242.648438 Z M 277.289062 242.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.792969 246.015625 C 275.792969 245.898438 275.699219 245.804688 275.582031 245.804688 C 275.464844 245.804688 275.371094 245.898438 275.371094 246.015625 C 275.371094 246.132812 275.464844 246.226562 275.582031 246.226562 C 275.699219 246.226562 275.792969 246.132812 275.792969 246.015625 Z M 275.792969 246.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.21875 247.382812 C 278.21875 247.265625 278.125 247.171875 278.007812 247.171875 C 277.890625 247.171875 277.796875 247.265625 277.796875 247.382812 C 277.796875 247.5 277.890625 247.59375 278.007812 247.59375 C 278.125 247.59375 278.21875 247.5 278.21875 247.382812 Z M 278.21875 247.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.179688 249.128906 C 274.179688 249.011719 274.085938 248.917969 273.96875 248.917969 C 273.851562 248.917969 273.757812 249.011719 273.757812 249.128906 C 273.757812 249.246094 273.851562 249.339844 273.96875 249.339844 C 274.085938 249.339844 274.179688 249.246094 274.179688 249.128906 Z M 274.179688 249.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.851562 251.867188 C 276.851562 251.75 276.757812 251.65625 276.640625 251.65625 C 276.523438 251.65625 276.429688 251.75 276.429688 251.867188 C 276.429688 251.984375 276.523438 252.078125 276.640625 252.078125 C 276.757812 252.078125 276.851562 251.984375 276.851562 251.867188 Z M 276.851562 251.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.261719 246.804688 C 275.261719 246.6875 275.167969 246.59375 275.050781 246.59375 C 274.933594 246.59375 274.839844 246.6875 274.839844 246.804688 C 274.839844 246.921875 274.933594 247.015625 275.050781 247.015625 C 275.167969 247.015625 275.261719 246.921875 275.261719 246.804688 Z M 275.261719 246.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.875 249.515625 C 278.875 249.398438 278.78125 249.304688 278.664062 249.304688 C 278.546875 249.304688 278.453125 249.398438 278.453125 249.515625 C 278.453125 249.632812 278.546875 249.726562 278.664062 249.726562 C 278.78125 249.726562 278.875 249.632812 278.875 249.515625 Z M 278.875 249.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.316406 247.121094 C 277.316406 247.003906 277.222656 246.910156 277.105469 246.910156 C 276.988281 246.910156 276.894531 247.003906 276.894531 247.121094 C 276.894531 247.238281 276.988281 247.332031 277.105469 247.332031 C 277.222656 247.332031 277.316406 247.238281 277.316406 247.121094 Z M 277.316406 247.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.597656 247.46875 C 280.597656 247.351562 280.503906 247.257812 280.386719 247.257812 C 280.269531 247.257812 280.175781 247.351562 280.175781 247.46875 C 280.175781 247.585938 280.269531 247.679688 280.386719 247.679688 C 280.503906 247.679688 280.597656 247.585938 280.597656 247.46875 Z M 280.597656 247.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.859375 248.410156 C 281.859375 248.292969 281.765625 248.199219 281.648438 248.199219 C 281.53125 248.199219 281.4375 248.292969 281.4375 248.410156 C 281.4375 248.527344 281.53125 248.621094 281.648438 248.621094 C 281.765625 248.621094 281.859375 248.527344 281.859375 248.410156 Z M 281.859375 248.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.605469 249.875 C 282.605469 249.757812 282.511719 249.664062 282.394531 249.664062 C 282.277344 249.664062 282.183594 249.757812 282.183594 249.875 C 282.183594 249.992188 282.277344 250.085938 282.394531 250.085938 C 282.511719 250.085938 282.605469 249.992188 282.605469 249.875 Z M 282.605469 249.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.628906 249.648438 C 282.628906 249.53125 282.535156 249.4375 282.417969 249.4375 C 282.300781 249.4375 282.207031 249.53125 282.207031 249.648438 C 282.207031 249.765625 282.300781 249.859375 282.417969 249.859375 C 282.535156 249.859375 282.628906 249.765625 282.628906 249.648438 Z M 282.628906 249.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.769531 251.484375 C 278.769531 251.367188 278.675781 251.273438 278.558594 251.273438 C 278.441406 251.273438 278.347656 251.367188 278.347656 251.484375 C 278.347656 251.601562 278.441406 251.695312 278.558594 251.695312 C 278.675781 251.695312 278.769531 251.601562 278.769531 251.484375 Z M 278.769531 251.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.214844 251.09375 C 281.214844 250.976562 281.121094 250.882812 281.003906 250.882812 C 280.886719 250.882812 280.792969 250.976562 280.792969 251.09375 C 280.792969 251.210938 280.886719 251.304688 281.003906 251.304688 C 281.121094 251.304688 281.214844 251.210938 281.214844 251.09375 Z M 281.214844 251.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.097656 252.832031 C 280.097656 252.714844 280.003906 252.621094 279.886719 252.621094 C 279.769531 252.621094 279.675781 252.714844 279.675781 252.832031 C 279.675781 252.949219 279.769531 253.042969 279.886719 253.042969 C 280.003906 253.042969 280.097656 252.949219 280.097656 252.832031 Z M 280.097656 252.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.261719 252.96875 C 280.261719 252.851562 280.167969 252.757812 280.050781 252.757812 C 279.933594 252.757812 279.839844 252.851562 279.839844 252.96875 C 279.839844 253.085938 279.933594 253.179688 280.050781 253.179688 C 280.167969 253.179688 280.261719 253.085938 280.261719 252.96875 Z M 280.261719 252.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.152344 248.769531 C 277.152344 248.652344 277.058594 248.558594 276.941406 248.558594 C 276.824219 248.558594 276.730469 248.652344 276.730469 248.769531 C 276.730469 248.886719 276.824219 248.980469 276.941406 248.980469 C 277.058594 248.980469 277.152344 248.886719 277.152344 248.769531 Z M 277.152344 248.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.925781 250.054688 C 274.925781 249.9375 274.832031 249.84375 274.714844 249.84375 C 274.597656 249.84375 274.503906 249.9375 274.503906 250.054688 C 274.503906 250.171875 274.597656 250.265625 274.714844 250.265625 C 274.832031 250.265625 274.925781 250.171875 274.925781 250.054688 Z M 274.925781 250.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.378906 251.054688 C 276.378906 250.9375 276.285156 250.84375 276.167969 250.84375 C 276.050781 250.84375 275.957031 250.9375 275.957031 251.054688 C 275.957031 251.171875 276.050781 251.265625 276.167969 251.265625 C 276.285156 251.265625 276.378906 251.171875 276.378906 251.054688 Z M 276.378906 251.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.667969 251.777344 C 277.667969 251.660156 277.574219 251.566406 277.457031 251.566406 C 277.339844 251.566406 277.246094 251.660156 277.246094 251.777344 C 277.246094 251.894531 277.339844 251.988281 277.457031 251.988281 C 277.574219 251.988281 277.667969 251.894531 277.667969 251.777344 Z M 277.667969 251.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.160156 253.078125 C 277.160156 252.960938 277.066406 252.867188 276.949219 252.867188 C 276.832031 252.867188 276.738281 252.960938 276.738281 253.078125 C 276.738281 253.195312 276.832031 253.289062 276.949219 253.289062 C 277.066406 253.289062 277.160156 253.195312 277.160156 253.078125 Z M 277.160156 253.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.929688 250.902344 C 274.929688 250.785156 274.835938 250.691406 274.71875 250.691406 C 274.601562 250.691406 274.507812 250.785156 274.507812 250.902344 C 274.507812 251.019531 274.601562 251.113281 274.71875 251.113281 C 274.835938 251.113281 274.929688 251.019531 274.929688 250.902344 Z M 274.929688 250.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.554688 247.976562 C 274.554688 247.859375 274.460938 247.765625 274.34375 247.765625 C 274.226562 247.765625 274.132812 247.859375 274.132812 247.976562 C 274.132812 248.09375 274.226562 248.1875 274.34375 248.1875 C 274.460938 248.1875 274.554688 248.09375 274.554688 247.976562 Z M 274.554688 247.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.175781 248.253906 C 272.175781 248.136719 272.082031 248.042969 271.964844 248.042969 C 271.847656 248.042969 271.753906 248.136719 271.753906 248.253906 C 271.753906 248.371094 271.847656 248.464844 271.964844 248.464844 C 272.082031 248.464844 272.175781 248.371094 272.175781 248.253906 Z M 272.175781 248.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.195312 247.554688 C 271.195312 247.4375 271.101562 247.34375 270.984375 247.34375 C 270.867188 247.34375 270.773438 247.4375 270.773438 247.554688 C 270.773438 247.671875 270.867188 247.765625 270.984375 247.765625 C 271.101562 247.765625 271.195312 247.671875 271.195312 247.554688 Z M 271.195312 247.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.570312 245.753906 C 270.570312 245.636719 270.476562 245.542969 270.359375 245.542969 C 270.242188 245.542969 270.148438 245.636719 270.148438 245.753906 C 270.148438 245.871094 270.242188 245.964844 270.359375 245.964844 C 270.476562 245.964844 270.570312 245.871094 270.570312 245.753906 Z M 270.570312 245.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.074219 245.113281 C 273.074219 244.996094 272.980469 244.902344 272.863281 244.902344 C 272.746094 244.902344 272.652344 244.996094 272.652344 245.113281 C 272.652344 245.230469 272.746094 245.324219 272.863281 245.324219 C 272.980469 245.324219 273.074219 245.230469 273.074219 245.113281 Z M 273.074219 245.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.242188 244.238281 C 271.242188 244.121094 271.148438 244.027344 271.03125 244.027344 C 270.914062 244.027344 270.820312 244.121094 270.820312 244.238281 C 270.820312 244.355469 270.914062 244.449219 271.03125 244.449219 C 271.148438 244.449219 271.242188 244.355469 271.242188 244.238281 Z M 271.242188 244.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.691406 246.09375 C 271.691406 245.976562 271.597656 245.882812 271.480469 245.882812 C 271.363281 245.882812 271.269531 245.976562 271.269531 246.09375 C 271.269531 246.210938 271.363281 246.304688 271.480469 246.304688 C 271.597656 246.304688 271.691406 246.210938 271.691406 246.09375 Z M 271.691406 246.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.527344 245.085938 C 272.527344 244.96875 272.433594 244.875 272.316406 244.875 C 272.199219 244.875 272.105469 244.96875 272.105469 245.085938 C 272.105469 245.203125 272.199219 245.296875 272.316406 245.296875 C 272.433594 245.296875 272.527344 245.203125 272.527344 245.085938 Z M 272.527344 245.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.765625 242.652344 C 269.765625 242.535156 269.671875 242.441406 269.554688 242.441406 C 269.4375 242.441406 269.34375 242.535156 269.34375 242.652344 C 269.34375 242.769531 269.4375 242.863281 269.554688 242.863281 C 269.671875 242.863281 269.765625 242.769531 269.765625 242.652344 Z M 269.765625 242.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.363281 238.601562 C 266.363281 238.484375 266.269531 238.390625 266.152344 238.390625 C 266.035156 238.390625 265.941406 238.484375 265.941406 238.601562 C 265.941406 238.71875 266.035156 238.8125 266.152344 238.8125 C 266.269531 238.8125 266.363281 238.71875 266.363281 238.601562 Z M 266.363281 238.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.964844 238.816406 C 265.964844 238.699219 265.871094 238.605469 265.753906 238.605469 C 265.636719 238.605469 265.542969 238.699219 265.542969 238.816406 C 265.542969 238.933594 265.636719 239.027344 265.753906 239.027344 C 265.871094 239.027344 265.964844 238.933594 265.964844 238.816406 Z M 265.964844 238.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.257812 241.917969 C 263.257812 241.800781 263.164062 241.707031 263.046875 241.707031 C 262.929688 241.707031 262.835938 241.800781 262.835938 241.917969 C 262.835938 242.035156 262.929688 242.128906 263.046875 242.128906 C 263.164062 242.128906 263.257812 242.035156 263.257812 241.917969 Z M 263.257812 241.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.160156 244.480469 C 266.160156 244.363281 266.066406 244.269531 265.949219 244.269531 C 265.832031 244.269531 265.738281 244.363281 265.738281 244.480469 C 265.738281 244.597656 265.832031 244.691406 265.949219 244.691406 C 266.066406 244.691406 266.160156 244.597656 266.160156 244.480469 Z M 266.160156 244.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.058594 243.515625 C 264.058594 243.398438 263.964844 243.304688 263.847656 243.304688 C 263.730469 243.304688 263.636719 243.398438 263.636719 243.515625 C 263.636719 243.632812 263.730469 243.726562 263.847656 243.726562 C 263.964844 243.726562 264.058594 243.632812 264.058594 243.515625 Z M 264.058594 243.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.105469 242.238281 C 267.105469 242.121094 267.011719 242.027344 266.894531 242.027344 C 266.777344 242.027344 266.683594 242.121094 266.683594 242.238281 C 266.683594 242.355469 266.777344 242.449219 266.894531 242.449219 C 267.011719 242.449219 267.105469 242.355469 267.105469 242.238281 Z M 267.105469 242.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.589844 242.441406 C 264.589844 242.324219 264.496094 242.230469 264.378906 242.230469 C 264.261719 242.230469 264.167969 242.324219 264.167969 242.441406 C 264.167969 242.558594 264.261719 242.652344 264.378906 242.652344 C 264.496094 242.652344 264.589844 242.558594 264.589844 242.441406 Z M 264.589844 242.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.539062 241.871094 C 265.539062 241.753906 265.445312 241.660156 265.328125 241.660156 C 265.210938 241.660156 265.117188 241.753906 265.117188 241.871094 C 265.117188 241.988281 265.210938 242.082031 265.328125 242.082031 C 265.445312 242.082031 265.539062 241.988281 265.539062 241.871094 Z M 265.539062 241.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.40625 243.484375 C 261.40625 243.367188 261.3125 243.273438 261.195312 243.273438 C 261.078125 243.273438 260.984375 243.367188 260.984375 243.484375 C 260.984375 243.601562 261.078125 243.695312 261.195312 243.695312 C 261.3125 243.695312 261.40625 243.601562 261.40625 243.484375 Z M 261.40625 243.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.917969 245.65625 C 261.917969 245.539062 261.824219 245.445312 261.707031 245.445312 C 261.589844 245.445312 261.496094 245.539062 261.496094 245.65625 C 261.496094 245.773438 261.589844 245.867188 261.707031 245.867188 C 261.824219 245.867188 261.917969 245.773438 261.917969 245.65625 Z M 261.917969 245.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.859375 249.347656 C 257.859375 249.230469 257.765625 249.136719 257.648438 249.136719 C 257.53125 249.136719 257.4375 249.230469 257.4375 249.347656 C 257.4375 249.464844 257.53125 249.558594 257.648438 249.558594 C 257.765625 249.558594 257.859375 249.464844 257.859375 249.347656 Z M 257.859375 249.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.515625 250.472656 C 257.515625 250.355469 257.421875 250.261719 257.304688 250.261719 C 257.1875 250.261719 257.09375 250.355469 257.09375 250.472656 C 257.09375 250.589844 257.1875 250.683594 257.304688 250.683594 C 257.421875 250.683594 257.515625 250.589844 257.515625 250.472656 Z M 257.515625 250.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.015625 247.582031 C 260.015625 247.464844 259.921875 247.371094 259.804688 247.371094 C 259.6875 247.371094 259.59375 247.464844 259.59375 247.582031 C 259.59375 247.699219 259.6875 247.792969 259.804688 247.792969 C 259.921875 247.792969 260.015625 247.699219 260.015625 247.582031 Z M 260.015625 247.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.523438 250.757812 C 259.523438 250.640625 259.429688 250.546875 259.3125 250.546875 C 259.195312 250.546875 259.101562 250.640625 259.101562 250.757812 C 259.101562 250.875 259.195312 250.96875 259.3125 250.96875 C 259.429688 250.96875 259.523438 250.875 259.523438 250.757812 Z M 259.523438 250.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.453125 255.703125 C 263.453125 255.585938 263.359375 255.492188 263.242188 255.492188 C 263.125 255.492188 263.03125 255.585938 263.03125 255.703125 C 263.03125 255.820312 263.125 255.914062 263.242188 255.914062 C 263.359375 255.914062 263.453125 255.820312 263.453125 255.703125 Z M 263.453125 255.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.328125 255.761719 C 261.328125 255.644531 261.234375 255.550781 261.117188 255.550781 C 261 255.550781 260.90625 255.644531 260.90625 255.761719 C 260.90625 255.878906 261 255.972656 261.117188 255.972656 C 261.234375 255.972656 261.328125 255.878906 261.328125 255.761719 Z M 261.328125 255.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.457031 254.890625 C 261.457031 254.773438 261.363281 254.679688 261.246094 254.679688 C 261.128906 254.679688 261.035156 254.773438 261.035156 254.890625 C 261.035156 255.007812 261.128906 255.101562 261.246094 255.101562 C 261.363281 255.101562 261.457031 255.007812 261.457031 254.890625 Z M 261.457031 254.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.800781 254.21875 C 261.800781 254.101562 261.707031 254.007812 261.589844 254.007812 C 261.472656 254.007812 261.378906 254.101562 261.378906 254.21875 C 261.378906 254.335938 261.472656 254.429688 261.589844 254.429688 C 261.707031 254.429688 261.800781 254.335938 261.800781 254.21875 Z M 261.800781 254.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.109375 253.609375 C 259.109375 253.492188 259.015625 253.398438 258.898438 253.398438 C 258.78125 253.398438 258.6875 253.492188 258.6875 253.609375 C 258.6875 253.726562 258.78125 253.820312 258.898438 253.820312 C 259.015625 253.820312 259.109375 253.726562 259.109375 253.609375 Z M 259.109375 253.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.300781 253.699219 C 262.300781 253.582031 262.207031 253.488281 262.089844 253.488281 C 261.972656 253.488281 261.878906 253.582031 261.878906 253.699219 C 261.878906 253.816406 261.972656 253.910156 262.089844 253.910156 C 262.207031 253.910156 262.300781 253.816406 262.300781 253.699219 Z M 262.300781 253.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.980469 256.933594 C 262.980469 256.816406 262.886719 256.722656 262.769531 256.722656 C 262.652344 256.722656 262.558594 256.816406 262.558594 256.933594 C 262.558594 257.050781 262.652344 257.144531 262.769531 257.144531 C 262.886719 257.144531 262.980469 257.050781 262.980469 256.933594 Z M 262.980469 256.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.320312 255.257812 C 261.320312 255.140625 261.226562 255.046875 261.109375 255.046875 C 260.992188 255.046875 260.898438 255.140625 260.898438 255.257812 C 260.898438 255.375 260.992188 255.46875 261.109375 255.46875 C 261.226562 255.46875 261.320312 255.375 261.320312 255.257812 Z M 261.320312 255.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.796875 255.34375 C 261.796875 255.226562 261.703125 255.132812 261.585938 255.132812 C 261.46875 255.132812 261.375 255.226562 261.375 255.34375 C 261.375 255.460938 261.46875 255.554688 261.585938 255.554688 C 261.703125 255.554688 261.796875 255.460938 261.796875 255.34375 Z M 261.796875 255.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.546875 257.613281 C 263.546875 257.496094 263.453125 257.402344 263.335938 257.402344 C 263.21875 257.402344 263.125 257.496094 263.125 257.613281 C 263.125 257.730469 263.21875 257.824219 263.335938 257.824219 C 263.453125 257.824219 263.546875 257.730469 263.546875 257.613281 Z M 263.546875 257.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.9375 256.597656 C 260.9375 256.480469 260.84375 256.386719 260.726562 256.386719 C 260.609375 256.386719 260.515625 256.480469 260.515625 256.597656 C 260.515625 256.714844 260.609375 256.808594 260.726562 256.808594 C 260.84375 256.808594 260.9375 256.714844 260.9375 256.597656 Z M 260.9375 256.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.671875 256.875 C 258.671875 256.757812 258.578125 256.664062 258.460938 256.664062 C 258.34375 256.664062 258.25 256.757812 258.25 256.875 C 258.25 256.992188 258.34375 257.085938 258.460938 257.085938 C 258.578125 257.085938 258.671875 256.992188 258.671875 256.875 Z M 258.671875 256.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.375 259.671875 C 255.375 259.554688 255.28125 259.460938 255.164062 259.460938 C 255.046875 259.460938 254.953125 259.554688 254.953125 259.671875 C 254.953125 259.789062 255.046875 259.882812 255.164062 259.882812 C 255.28125 259.882812 255.375 259.789062 255.375 259.671875 Z M 255.375 259.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.128906 261.230469 C 256.128906 261.113281 256.035156 261.019531 255.917969 261.019531 C 255.800781 261.019531 255.707031 261.113281 255.707031 261.230469 C 255.707031 261.347656 255.800781 261.441406 255.917969 261.441406 C 256.035156 261.441406 256.128906 261.347656 256.128906 261.230469 Z M 256.128906 261.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.875 264.585938 C 257.875 264.46875 257.78125 264.375 257.664062 264.375 C 257.546875 264.375 257.453125 264.46875 257.453125 264.585938 C 257.453125 264.703125 257.546875 264.796875 257.664062 264.796875 C 257.78125 264.796875 257.875 264.703125 257.875 264.585938 Z M 257.875 264.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.460938 261.789062 C 252.460938 261.671875 252.367188 261.578125 252.25 261.578125 C 252.132812 261.578125 252.039062 261.671875 252.039062 261.789062 C 252.039062 261.90625 252.132812 262 252.25 262 C 252.367188 262 252.460938 261.90625 252.460938 261.789062 Z M 252.460938 261.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.839844 262.921875 C 252.839844 262.804688 252.746094 262.710938 252.628906 262.710938 C 252.511719 262.710938 252.417969 262.804688 252.417969 262.921875 C 252.417969 263.039062 252.511719 263.132812 252.628906 263.132812 C 252.746094 263.132812 252.839844 263.039062 252.839844 262.921875 Z M 252.839844 262.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.441406 264.273438 C 250.441406 264.15625 250.347656 264.0625 250.230469 264.0625 C 250.113281 264.0625 250.019531 264.15625 250.019531 264.273438 C 250.019531 264.390625 250.113281 264.484375 250.230469 264.484375 C 250.347656 264.484375 250.441406 264.390625 250.441406 264.273438 Z M 250.441406 264.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.453125 262.578125 C 248.453125 262.460938 248.359375 262.367188 248.242188 262.367188 C 248.125 262.367188 248.03125 262.460938 248.03125 262.578125 C 248.03125 262.695312 248.125 262.789062 248.242188 262.789062 C 248.359375 262.789062 248.453125 262.695312 248.453125 262.578125 Z M 248.453125 262.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.328125 266.671875 C 247.328125 266.554688 247.234375 266.460938 247.117188 266.460938 C 247 266.460938 246.90625 266.554688 246.90625 266.671875 C 246.90625 266.789062 247 266.882812 247.117188 266.882812 C 247.234375 266.882812 247.328125 266.789062 247.328125 266.671875 Z M 247.328125 266.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.476562 264.160156 C 248.476562 264.042969 248.382812 263.949219 248.265625 263.949219 C 248.148438 263.949219 248.054688 264.042969 248.054688 264.160156 C 248.054688 264.277344 248.148438 264.371094 248.265625 264.371094 C 248.382812 264.371094 248.476562 264.277344 248.476562 264.160156 Z M 248.476562 264.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.59375 262.246094 C 249.59375 262.128906 249.5 262.035156 249.382812 262.035156 C 249.265625 262.035156 249.171875 262.128906 249.171875 262.246094 C 249.171875 262.363281 249.265625 262.457031 249.382812 262.457031 C 249.5 262.457031 249.59375 262.363281 249.59375 262.246094 Z M 249.59375 262.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.746094 262.601562 C 252.746094 262.484375 252.652344 262.390625 252.535156 262.390625 C 252.417969 262.390625 252.324219 262.484375 252.324219 262.601562 C 252.324219 262.71875 252.417969 262.8125 252.535156 262.8125 C 252.652344 262.8125 252.746094 262.71875 252.746094 262.601562 Z M 252.746094 262.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.5625 260.3125 C 257.5625 260.195312 257.46875 260.101562 257.351562 260.101562 C 257.234375 260.101562 257.140625 260.195312 257.140625 260.3125 C 257.140625 260.429688 257.234375 260.523438 257.351562 260.523438 C 257.46875 260.523438 257.5625 260.429688 257.5625 260.3125 Z M 257.5625 260.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.304688 259.019531 C 261.304688 258.902344 261.210938 258.808594 261.09375 258.808594 C 260.976562 258.808594 260.882812 258.902344 260.882812 259.019531 C 260.882812 259.136719 260.976562 259.230469 261.09375 259.230469 C 261.210938 259.230469 261.304688 259.136719 261.304688 259.019531 Z M 261.304688 259.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.476562 261.828125 C 261.476562 261.710938 261.382812 261.617188 261.265625 261.617188 C 261.148438 261.617188 261.054688 261.710938 261.054688 261.828125 C 261.054688 261.945312 261.148438 262.039062 261.265625 262.039062 C 261.382812 262.039062 261.476562 261.945312 261.476562 261.828125 Z M 261.476562 261.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.644531 267.929688 C 261.644531 267.8125 261.550781 267.71875 261.433594 267.71875 C 261.316406 267.71875 261.222656 267.8125 261.222656 267.929688 C 261.222656 268.046875 261.316406 268.140625 261.433594 268.140625 C 261.550781 268.140625 261.644531 268.046875 261.644531 267.929688 Z M 261.644531 267.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.082031 267.46875 C 256.082031 267.351562 255.988281 267.257812 255.871094 267.257812 C 255.753906 267.257812 255.660156 267.351562 255.660156 267.46875 C 255.660156 267.585938 255.753906 267.679688 255.871094 267.679688 C 255.988281 267.679688 256.082031 267.585938 256.082031 267.46875 Z M 256.082031 267.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.96875 268.347656 C 254.96875 268.230469 254.875 268.136719 254.757812 268.136719 C 254.640625 268.136719 254.546875 268.230469 254.546875 268.347656 C 254.546875 268.464844 254.640625 268.558594 254.757812 268.558594 C 254.875 268.558594 254.96875 268.464844 254.96875 268.347656 Z M 254.96875 268.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.007812 268.136719 C 255.007812 268.019531 254.914062 267.925781 254.796875 267.925781 C 254.679688 267.925781 254.585938 268.019531 254.585938 268.136719 C 254.585938 268.253906 254.679688 268.347656 254.796875 268.347656 C 254.914062 268.347656 255.007812 268.253906 255.007812 268.136719 Z M 255.007812 268.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.546875 266.558594 C 254.546875 266.441406 254.453125 266.347656 254.335938 266.347656 C 254.21875 266.347656 254.125 266.441406 254.125 266.558594 C 254.125 266.675781 254.21875 266.769531 254.335938 266.769531 C 254.453125 266.769531 254.546875 266.675781 254.546875 266.558594 Z M 254.546875 266.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.984375 266.523438 C 256.984375 266.40625 256.890625 266.3125 256.773438 266.3125 C 256.65625 266.3125 256.5625 266.40625 256.5625 266.523438 C 256.5625 266.640625 256.65625 266.734375 256.773438 266.734375 C 256.890625 266.734375 256.984375 266.640625 256.984375 266.523438 Z M 256.984375 266.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.113281 264.40625 C 258.113281 264.289062 258.019531 264.195312 257.902344 264.195312 C 257.785156 264.195312 257.691406 264.289062 257.691406 264.40625 C 257.691406 264.523438 257.785156 264.617188 257.902344 264.617188 C 258.019531 264.617188 258.113281 264.523438 258.113281 264.40625 Z M 258.113281 264.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.617188 263.082031 C 255.617188 262.964844 255.523438 262.871094 255.40625 262.871094 C 255.289062 262.871094 255.195312 262.964844 255.195312 263.082031 C 255.195312 263.199219 255.289062 263.292969 255.40625 263.292969 C 255.523438 263.292969 255.617188 263.199219 255.617188 263.082031 Z M 255.617188 263.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.453125 260.539062 C 257.453125 260.421875 257.359375 260.328125 257.242188 260.328125 C 257.125 260.328125 257.03125 260.421875 257.03125 260.539062 C 257.03125 260.65625 257.125 260.75 257.242188 260.75 C 257.359375 260.75 257.453125 260.65625 257.453125 260.539062 Z M 257.453125 260.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.175781 260.03125 C 256.175781 259.914062 256.082031 259.820312 255.964844 259.820312 C 255.847656 259.820312 255.753906 259.914062 255.753906 260.03125 C 255.753906 260.148438 255.847656 260.242188 255.964844 260.242188 C 256.082031 260.242188 256.175781 260.148438 256.175781 260.03125 Z M 256.175781 260.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.214844 257.914062 C 258.214844 257.796875 258.121094 257.703125 258.003906 257.703125 C 257.886719 257.703125 257.792969 257.796875 257.792969 257.914062 C 257.792969 258.03125 257.886719 258.125 258.003906 258.125 C 258.121094 258.125 258.214844 258.03125 258.214844 257.914062 Z M 258.214844 257.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.90625 260.007812 C 257.90625 259.890625 257.8125 259.796875 257.695312 259.796875 C 257.578125 259.796875 257.484375 259.890625 257.484375 260.007812 C 257.484375 260.125 257.578125 260.21875 257.695312 260.21875 C 257.8125 260.21875 257.90625 260.125 257.90625 260.007812 Z M 257.90625 260.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.609375 257.597656 C 258.609375 257.480469 258.515625 257.386719 258.398438 257.386719 C 258.28125 257.386719 258.1875 257.480469 258.1875 257.597656 C 258.1875 257.714844 258.28125 257.808594 258.398438 257.808594 C 258.515625 257.808594 258.609375 257.714844 258.609375 257.597656 Z M 258.609375 257.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.152344 256.515625 C 255.152344 256.398438 255.058594 256.304688 254.941406 256.304688 C 254.824219 256.304688 254.730469 256.398438 254.730469 256.515625 C 254.730469 256.632812 254.824219 256.726562 254.941406 256.726562 C 255.058594 256.726562 255.152344 256.632812 255.152344 256.515625 Z M 255.152344 256.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.523438 256.804688 C 253.523438 256.6875 253.429688 256.59375 253.3125 256.59375 C 253.195312 256.59375 253.101562 256.6875 253.101562 256.804688 C 253.101562 256.921875 253.195312 257.015625 253.3125 257.015625 C 253.429688 257.015625 253.523438 256.921875 253.523438 256.804688 Z M 253.523438 256.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.828125 257.246094 C 254.828125 257.128906 254.734375 257.035156 254.617188 257.035156 C 254.5 257.035156 254.40625 257.128906 254.40625 257.246094 C 254.40625 257.363281 254.5 257.457031 254.617188 257.457031 C 254.734375 257.457031 254.828125 257.363281 254.828125 257.246094 Z M 254.828125 257.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.019531 255.058594 C 250.019531 254.941406 249.925781 254.847656 249.808594 254.847656 C 249.691406 254.847656 249.597656 254.941406 249.597656 255.058594 C 249.597656 255.175781 249.691406 255.269531 249.808594 255.269531 C 249.925781 255.269531 250.019531 255.175781 250.019531 255.058594 Z M 250.019531 255.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.066406 256.222656 C 251.066406 256.105469 250.972656 256.011719 250.855469 256.011719 C 250.738281 256.011719 250.644531 256.105469 250.644531 256.222656 C 250.644531 256.339844 250.738281 256.433594 250.855469 256.433594 C 250.972656 256.433594 251.066406 256.339844 251.066406 256.222656 Z M 251.066406 256.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.210938 255.515625 C 251.210938 255.398438 251.117188 255.304688 251 255.304688 C 250.882812 255.304688 250.789062 255.398438 250.789062 255.515625 C 250.789062 255.632812 250.882812 255.726562 251 255.726562 C 251.117188 255.726562 251.210938 255.632812 251.210938 255.515625 Z M 251.210938 255.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.964844 257.554688 C 250.964844 257.4375 250.871094 257.34375 250.753906 257.34375 C 250.636719 257.34375 250.542969 257.4375 250.542969 257.554688 C 250.542969 257.671875 250.636719 257.765625 250.753906 257.765625 C 250.871094 257.765625 250.964844 257.671875 250.964844 257.554688 Z M 250.964844 257.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.601562 256.570312 C 251.601562 256.453125 251.507812 256.359375 251.390625 256.359375 C 251.273438 256.359375 251.179688 256.453125 251.179688 256.570312 C 251.179688 256.6875 251.273438 256.78125 251.390625 256.78125 C 251.507812 256.78125 251.601562 256.6875 251.601562 256.570312 Z M 251.601562 256.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.84375 255.578125 C 250.84375 255.460938 250.75 255.367188 250.632812 255.367188 C 250.515625 255.367188 250.421875 255.460938 250.421875 255.578125 C 250.421875 255.695312 250.515625 255.789062 250.632812 255.789062 C 250.75 255.789062 250.84375 255.695312 250.84375 255.578125 Z M 250.84375 255.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.617188 257.027344 C 249.617188 256.910156 249.523438 256.816406 249.40625 256.816406 C 249.289062 256.816406 249.195312 256.910156 249.195312 257.027344 C 249.195312 257.144531 249.289062 257.238281 249.40625 257.238281 C 249.523438 257.238281 249.617188 257.144531 249.617188 257.027344 Z M 249.617188 257.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.316406 255.742188 C 251.316406 255.625 251.222656 255.53125 251.105469 255.53125 C 250.988281 255.53125 250.894531 255.625 250.894531 255.742188 C 250.894531 255.859375 250.988281 255.953125 251.105469 255.953125 C 251.222656 255.953125 251.316406 255.859375 251.316406 255.742188 Z M 251.316406 255.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.207031 252.738281 C 251.207031 252.621094 251.113281 252.527344 250.996094 252.527344 C 250.878906 252.527344 250.785156 252.621094 250.785156 252.738281 C 250.785156 252.855469 250.878906 252.949219 250.996094 252.949219 C 251.113281 252.949219 251.207031 252.855469 251.207031 252.738281 Z M 251.207031 252.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.042969 252.832031 C 252.042969 252.714844 251.949219 252.621094 251.832031 252.621094 C 251.714844 252.621094 251.621094 252.714844 251.621094 252.832031 C 251.621094 252.949219 251.714844 253.042969 251.832031 253.042969 C 251.949219 253.042969 252.042969 252.949219 252.042969 252.832031 Z M 252.042969 252.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.800781 253.660156 C 249.800781 253.542969 249.707031 253.449219 249.589844 253.449219 C 249.472656 253.449219 249.378906 253.542969 249.378906 253.660156 C 249.378906 253.777344 249.472656 253.871094 249.589844 253.871094 C 249.707031 253.871094 249.800781 253.777344 249.800781 253.660156 Z M 249.800781 253.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.226562 254.824219 C 249.226562 254.707031 249.132812 254.613281 249.015625 254.613281 C 248.898438 254.613281 248.804688 254.707031 248.804688 254.824219 C 248.804688 254.941406 248.898438 255.035156 249.015625 255.035156 C 249.132812 255.035156 249.226562 254.941406 249.226562 254.824219 Z M 249.226562 254.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.160156 253.253906 C 251.160156 253.136719 251.066406 253.042969 250.949219 253.042969 C 250.832031 253.042969 250.738281 253.136719 250.738281 253.253906 C 250.738281 253.371094 250.832031 253.464844 250.949219 253.464844 C 251.066406 253.464844 251.160156 253.371094 251.160156 253.253906 Z M 251.160156 253.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.65625 249.226562 C 252.65625 249.109375 252.5625 249.015625 252.445312 249.015625 C 252.328125 249.015625 252.234375 249.109375 252.234375 249.226562 C 252.234375 249.34375 252.328125 249.4375 252.445312 249.4375 C 252.5625 249.4375 252.65625 249.34375 252.65625 249.226562 Z M 252.65625 249.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.230469 249.421875 C 253.230469 249.304688 253.136719 249.210938 253.019531 249.210938 C 252.902344 249.210938 252.808594 249.304688 252.808594 249.421875 C 252.808594 249.539062 252.902344 249.632812 253.019531 249.632812 C 253.136719 249.632812 253.230469 249.539062 253.230469 249.421875 Z M 253.230469 249.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.878906 247.542969 C 252.878906 247.425781 252.785156 247.332031 252.667969 247.332031 C 252.550781 247.332031 252.457031 247.425781 252.457031 247.542969 C 252.457031 247.660156 252.550781 247.753906 252.667969 247.753906 C 252.785156 247.753906 252.878906 247.660156 252.878906 247.542969 Z M 252.878906 247.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.765625 244.84375 C 252.765625 244.726562 252.671875 244.632812 252.554688 244.632812 C 252.4375 244.632812 252.34375 244.726562 252.34375 244.84375 C 252.34375 244.960938 252.4375 245.054688 252.554688 245.054688 C 252.671875 245.054688 252.765625 244.960938 252.765625 244.84375 Z M 252.765625 244.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.386719 244.59375 C 255.386719 244.476562 255.292969 244.382812 255.175781 244.382812 C 255.058594 244.382812 254.964844 244.476562 254.964844 244.59375 C 254.964844 244.710938 255.058594 244.804688 255.175781 244.804688 C 255.292969 244.804688 255.386719 244.710938 255.386719 244.59375 Z M 255.386719 244.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.097656 242.917969 C 254.097656 242.800781 254.003906 242.707031 253.886719 242.707031 C 253.769531 242.707031 253.675781 242.800781 253.675781 242.917969 C 253.675781 243.035156 253.769531 243.128906 253.886719 243.128906 C 254.003906 243.128906 254.097656 243.035156 254.097656 242.917969 Z M 254.097656 242.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.285156 241.816406 C 257.285156 241.699219 257.191406 241.605469 257.074219 241.605469 C 256.957031 241.605469 256.863281 241.699219 256.863281 241.816406 C 256.863281 241.933594 256.957031 242.027344 257.074219 242.027344 C 257.191406 242.027344 257.285156 241.933594 257.285156 241.816406 Z M 257.285156 241.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.902344 242.046875 C 253.902344 241.929688 253.808594 241.835938 253.691406 241.835938 C 253.574219 241.835938 253.480469 241.929688 253.480469 242.046875 C 253.480469 242.164062 253.574219 242.257812 253.691406 242.257812 C 253.808594 242.257812 253.902344 242.164062 253.902344 242.046875 Z M 253.902344 242.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.234375 239.742188 C 256.234375 239.625 256.140625 239.53125 256.023438 239.53125 C 255.90625 239.53125 255.8125 239.625 255.8125 239.742188 C 255.8125 239.859375 255.90625 239.953125 256.023438 239.953125 C 256.140625 239.953125 256.234375 239.859375 256.234375 239.742188 Z M 256.234375 239.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.898438 238.160156 C 257.898438 238.042969 257.804688 237.949219 257.6875 237.949219 C 257.570312 237.949219 257.476562 238.042969 257.476562 238.160156 C 257.476562 238.277344 257.570312 238.371094 257.6875 238.371094 C 257.804688 238.371094 257.898438 238.277344 257.898438 238.160156 Z M 257.898438 238.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.230469 237.480469 C 257.230469 237.363281 257.136719 237.269531 257.019531 237.269531 C 256.902344 237.269531 256.808594 237.363281 256.808594 237.480469 C 256.808594 237.597656 256.902344 237.691406 257.019531 237.691406 C 257.136719 237.691406 257.230469 237.597656 257.230469 237.480469 Z M 257.230469 237.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.242188 235.117188 C 257.242188 235 257.148438 234.90625 257.03125 234.90625 C 256.914062 234.90625 256.820312 235 256.820312 235.117188 C 256.820312 235.234375 256.914062 235.328125 257.03125 235.328125 C 257.148438 235.328125 257.242188 235.234375 257.242188 235.117188 Z M 257.242188 235.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.84375 233.351562 C 254.84375 233.234375 254.75 233.140625 254.632812 233.140625 C 254.515625 233.140625 254.421875 233.234375 254.421875 233.351562 C 254.421875 233.46875 254.515625 233.5625 254.632812 233.5625 C 254.75 233.5625 254.84375 233.46875 254.84375 233.351562 Z M 254.84375 233.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.703125 231.796875 C 254.703125 231.679688 254.609375 231.585938 254.492188 231.585938 C 254.375 231.585938 254.28125 231.679688 254.28125 231.796875 C 254.28125 231.914062 254.375 232.007812 254.492188 232.007812 C 254.609375 232.007812 254.703125 231.914062 254.703125 231.796875 Z M 254.703125 231.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.550781 233.078125 C 253.550781 232.960938 253.457031 232.867188 253.339844 232.867188 C 253.222656 232.867188 253.128906 232.960938 253.128906 233.078125 C 253.128906 233.195312 253.222656 233.289062 253.339844 233.289062 C 253.457031 233.289062 253.550781 233.195312 253.550781 233.078125 Z M 253.550781 233.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.875 231.609375 C 254.875 231.492188 254.78125 231.398438 254.664062 231.398438 C 254.546875 231.398438 254.453125 231.492188 254.453125 231.609375 C 254.453125 231.726562 254.546875 231.820312 254.664062 231.820312 C 254.78125 231.820312 254.875 231.726562 254.875 231.609375 Z M 254.875 231.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.550781 232.089844 C 253.550781 231.972656 253.457031 231.878906 253.339844 231.878906 C 253.222656 231.878906 253.128906 231.972656 253.128906 232.089844 C 253.128906 232.207031 253.222656 232.300781 253.339844 232.300781 C 253.457031 232.300781 253.550781 232.207031 253.550781 232.089844 Z M 253.550781 232.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.179688 233.132812 C 255.179688 233.015625 255.085938 232.921875 254.96875 232.921875 C 254.851562 232.921875 254.757812 233.015625 254.757812 233.132812 C 254.757812 233.25 254.851562 233.34375 254.96875 233.34375 C 255.085938 233.34375 255.179688 233.25 255.179688 233.132812 Z M 255.179688 233.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.886719 234.660156 C 253.886719 234.542969 253.792969 234.449219 253.675781 234.449219 C 253.558594 234.449219 253.464844 234.542969 253.464844 234.660156 C 253.464844 234.777344 253.558594 234.871094 253.675781 234.871094 C 253.792969 234.871094 253.886719 234.777344 253.886719 234.660156 Z M 253.886719 234.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.140625 234.671875 C 251.140625 234.554688 251.046875 234.460938 250.929688 234.460938 C 250.8125 234.460938 250.71875 234.554688 250.71875 234.671875 C 250.71875 234.789062 250.8125 234.882812 250.929688 234.882812 C 251.046875 234.882812 251.140625 234.789062 251.140625 234.671875 Z M 251.140625 234.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.511719 237.050781 C 244.511719 236.933594 244.417969 236.839844 244.300781 236.839844 C 244.183594 236.839844 244.089844 236.933594 244.089844 237.050781 C 244.089844 237.167969 244.183594 237.261719 244.300781 237.261719 C 244.417969 237.261719 244.511719 237.167969 244.511719 237.050781 Z M 244.511719 237.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.128906 236.441406 C 241.128906 236.324219 241.035156 236.230469 240.917969 236.230469 C 240.800781 236.230469 240.707031 236.324219 240.707031 236.441406 C 240.707031 236.558594 240.800781 236.652344 240.917969 236.652344 C 241.035156 236.652344 241.128906 236.558594 241.128906 236.441406 Z M 241.128906 236.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.34375 241.582031 C 245.34375 241.464844 245.25 241.371094 245.132812 241.371094 C 245.015625 241.371094 244.921875 241.464844 244.921875 241.582031 C 244.921875 241.699219 245.015625 241.792969 245.132812 241.792969 C 245.25 241.792969 245.34375 241.699219 245.34375 241.582031 Z M 245.34375 241.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.636719 244.234375 C 246.636719 244.117188 246.542969 244.023438 246.425781 244.023438 C 246.308594 244.023438 246.214844 244.117188 246.214844 244.234375 C 246.214844 244.351562 246.308594 244.445312 246.425781 244.445312 C 246.542969 244.445312 246.636719 244.351562 246.636719 244.234375 Z M 246.636719 244.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.917969 244.222656 C 250.917969 244.105469 250.824219 244.011719 250.707031 244.011719 C 250.589844 244.011719 250.496094 244.105469 250.496094 244.222656 C 250.496094 244.339844 250.589844 244.433594 250.707031 244.433594 C 250.824219 244.433594 250.917969 244.339844 250.917969 244.222656 Z M 250.917969 244.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.792969 243.492188 C 251.792969 243.375 251.699219 243.28125 251.582031 243.28125 C 251.464844 243.28125 251.371094 243.375 251.371094 243.492188 C 251.371094 243.609375 251.464844 243.703125 251.582031 243.703125 C 251.699219 243.703125 251.792969 243.609375 251.792969 243.492188 Z M 251.792969 243.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.265625 241.828125 C 247.265625 241.710938 247.171875 241.617188 247.054688 241.617188 C 246.9375 241.617188 246.84375 241.710938 246.84375 241.828125 C 246.84375 241.945312 246.9375 242.039062 247.054688 242.039062 C 247.171875 242.039062 247.265625 241.945312 247.265625 241.828125 Z M 247.265625 241.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.925781 241.273438 C 244.925781 241.15625 244.832031 241.0625 244.714844 241.0625 C 244.597656 241.0625 244.503906 241.15625 244.503906 241.273438 C 244.503906 241.390625 244.597656 241.484375 244.714844 241.484375 C 244.832031 241.484375 244.925781 241.390625 244.925781 241.273438 Z M 244.925781 241.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.910156 244.355469 C 246.910156 244.238281 246.816406 244.144531 246.699219 244.144531 C 246.582031 244.144531 246.488281 244.238281 246.488281 244.355469 C 246.488281 244.472656 246.582031 244.566406 246.699219 244.566406 C 246.816406 244.566406 246.910156 244.472656 246.910156 244.355469 Z M 246.910156 244.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.738281 248.496094 C 246.738281 248.378906 246.644531 248.285156 246.527344 248.285156 C 246.410156 248.285156 246.316406 248.378906 246.316406 248.496094 C 246.316406 248.613281 246.410156 248.707031 246.527344 248.707031 C 246.644531 248.707031 246.738281 248.613281 246.738281 248.496094 Z M 246.738281 248.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.90625 249.59375 C 244.90625 249.476562 244.8125 249.382812 244.695312 249.382812 C 244.578125 249.382812 244.484375 249.476562 244.484375 249.59375 C 244.484375 249.710938 244.578125 249.804688 244.695312 249.804688 C 244.8125 249.804688 244.90625 249.710938 244.90625 249.59375 Z M 244.90625 249.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.355469 252.671875 C 247.355469 252.554688 247.261719 252.460938 247.144531 252.460938 C 247.027344 252.460938 246.933594 252.554688 246.933594 252.671875 C 246.933594 252.789062 247.027344 252.882812 247.144531 252.882812 C 247.261719 252.882812 247.355469 252.789062 247.355469 252.671875 Z M 247.355469 252.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.25 250.398438 C 249.25 250.28125 249.15625 250.1875 249.039062 250.1875 C 248.921875 250.1875 248.828125 250.28125 248.828125 250.398438 C 248.828125 250.515625 248.921875 250.609375 249.039062 250.609375 C 249.15625 250.609375 249.25 250.515625 249.25 250.398438 Z M 249.25 250.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.636719 249.144531 C 250.636719 249.027344 250.542969 248.933594 250.425781 248.933594 C 250.308594 248.933594 250.214844 249.027344 250.214844 249.144531 C 250.214844 249.261719 250.308594 249.355469 250.425781 249.355469 C 250.542969 249.355469 250.636719 249.261719 250.636719 249.144531 Z M 250.636719 249.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.222656 243.773438 C 251.222656 243.65625 251.128906 243.5625 251.011719 243.5625 C 250.894531 243.5625 250.800781 243.65625 250.800781 243.773438 C 250.800781 243.890625 250.894531 243.984375 251.011719 243.984375 C 251.128906 243.984375 251.222656 243.890625 251.222656 243.773438 Z M 251.222656 243.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.941406 242.164062 C 248.941406 242.046875 248.847656 241.953125 248.730469 241.953125 C 248.613281 241.953125 248.519531 242.046875 248.519531 242.164062 C 248.519531 242.28125 248.613281 242.375 248.730469 242.375 C 248.847656 242.375 248.941406 242.28125 248.941406 242.164062 Z M 248.941406 242.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.4375 243.707031 C 249.4375 243.589844 249.34375 243.496094 249.226562 243.496094 C 249.109375 243.496094 249.015625 243.589844 249.015625 243.707031 C 249.015625 243.824219 249.109375 243.917969 249.226562 243.917969 C 249.34375 243.917969 249.4375 243.824219 249.4375 243.707031 Z M 249.4375 243.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.503906 243.914062 C 251.503906 243.796875 251.410156 243.703125 251.292969 243.703125 C 251.175781 243.703125 251.082031 243.796875 251.082031 243.914062 C 251.082031 244.03125 251.175781 244.125 251.292969 244.125 C 251.410156 244.125 251.503906 244.03125 251.503906 243.914062 Z M 251.503906 243.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.921875 248.203125 C 247.921875 248.085938 247.828125 247.992188 247.710938 247.992188 C 247.59375 247.992188 247.5 248.085938 247.5 248.203125 C 247.5 248.320312 247.59375 248.414062 247.710938 248.414062 C 247.828125 248.414062 247.921875 248.320312 247.921875 248.203125 Z M 247.921875 248.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.191406 250.9375 C 247.191406 250.820312 247.097656 250.726562 246.980469 250.726562 C 246.863281 250.726562 246.769531 250.820312 246.769531 250.9375 C 246.769531 251.054688 246.863281 251.148438 246.980469 251.148438 C 247.097656 251.148438 247.191406 251.054688 247.191406 250.9375 Z M 247.191406 250.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.695312 251.730469 C 244.695312 251.613281 244.601562 251.519531 244.484375 251.519531 C 244.367188 251.519531 244.273438 251.613281 244.273438 251.730469 C 244.273438 251.847656 244.367188 251.941406 244.484375 251.941406 C 244.601562 251.941406 244.695312 251.847656 244.695312 251.730469 Z M 244.695312 251.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.425781 249.417969 C 245.425781 249.300781 245.332031 249.207031 245.214844 249.207031 C 245.097656 249.207031 245.003906 249.300781 245.003906 249.417969 C 245.003906 249.535156 245.097656 249.628906 245.214844 249.628906 C 245.332031 249.628906 245.425781 249.535156 245.425781 249.417969 Z M 245.425781 249.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.332031 246.394531 C 242.332031 246.277344 242.238281 246.183594 242.121094 246.183594 C 242.003906 246.183594 241.910156 246.277344 241.910156 246.394531 C 241.910156 246.511719 242.003906 246.605469 242.121094 246.605469 C 242.238281 246.605469 242.332031 246.511719 242.332031 246.394531 Z M 242.332031 246.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.253906 249.148438 C 242.253906 249.03125 242.160156 248.9375 242.042969 248.9375 C 241.925781 248.9375 241.832031 249.03125 241.832031 249.148438 C 241.832031 249.265625 241.925781 249.359375 242.042969 249.359375 C 242.160156 249.359375 242.253906 249.265625 242.253906 249.148438 Z M 242.253906 249.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.777344 248.136719 C 241.777344 248.019531 241.683594 247.925781 241.566406 247.925781 C 241.449219 247.925781 241.355469 248.019531 241.355469 248.136719 C 241.355469 248.253906 241.449219 248.347656 241.566406 248.347656 C 241.683594 248.347656 241.777344 248.253906 241.777344 248.136719 Z M 241.777344 248.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.234375 246.570312 C 243.234375 246.453125 243.140625 246.359375 243.023438 246.359375 C 242.90625 246.359375 242.8125 246.453125 242.8125 246.570312 C 242.8125 246.6875 242.90625 246.78125 243.023438 246.78125 C 243.140625 246.78125 243.234375 246.6875 243.234375 246.570312 Z M 243.234375 246.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.640625 246.4375 C 241.640625 246.320312 241.546875 246.226562 241.429688 246.226562 C 241.3125 246.226562 241.21875 246.320312 241.21875 246.4375 C 241.21875 246.554688 241.3125 246.648438 241.429688 246.648438 C 241.546875 246.648438 241.640625 246.554688 241.640625 246.4375 Z M 241.640625 246.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.257812 247.246094 C 244.257812 247.128906 244.164062 247.035156 244.046875 247.035156 C 243.929688 247.035156 243.835938 247.128906 243.835938 247.246094 C 243.835938 247.363281 243.929688 247.457031 244.046875 247.457031 C 244.164062 247.457031 244.257812 247.363281 244.257812 247.246094 Z M 244.257812 247.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.671875 249.164062 C 243.671875 249.046875 243.578125 248.953125 243.460938 248.953125 C 243.34375 248.953125 243.25 249.046875 243.25 249.164062 C 243.25 249.28125 243.34375 249.375 243.460938 249.375 C 243.578125 249.375 243.671875 249.28125 243.671875 249.164062 Z M 243.671875 249.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.527344 246.0625 C 243.527344 245.945312 243.433594 245.851562 243.316406 245.851562 C 243.199219 245.851562 243.105469 245.945312 243.105469 246.0625 C 243.105469 246.179688 243.199219 246.273438 243.316406 246.273438 C 243.433594 246.273438 243.527344 246.179688 243.527344 246.0625 Z M 243.527344 246.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.171875 245.007812 C 246.171875 244.890625 246.078125 244.796875 245.960938 244.796875 C 245.84375 244.796875 245.75 244.890625 245.75 245.007812 C 245.75 245.125 245.84375 245.21875 245.960938 245.21875 C 246.078125 245.21875 246.171875 245.125 246.171875 245.007812 Z M 246.171875 245.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.015625 249.925781 C 244.015625 249.808594 243.921875 249.714844 243.804688 249.714844 C 243.6875 249.714844 243.59375 249.808594 243.59375 249.925781 C 243.59375 250.042969 243.6875 250.136719 243.804688 250.136719 C 243.921875 250.136719 244.015625 250.042969 244.015625 249.925781 Z M 244.015625 249.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.921875 253.832031 C 242.921875 253.714844 242.828125 253.621094 242.710938 253.621094 C 242.59375 253.621094 242.5 253.714844 242.5 253.832031 C 242.5 253.949219 242.59375 254.042969 242.710938 254.042969 C 242.828125 254.042969 242.921875 253.949219 242.921875 253.832031 Z M 242.921875 253.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.878906 250.253906 C 244.878906 250.136719 244.785156 250.042969 244.667969 250.042969 C 244.550781 250.042969 244.457031 250.136719 244.457031 250.253906 C 244.457031 250.371094 244.550781 250.464844 244.667969 250.464844 C 244.785156 250.464844 244.878906 250.371094 244.878906 250.253906 Z M 244.878906 250.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.578125 252.78125 C 243.578125 252.664062 243.484375 252.570312 243.367188 252.570312 C 243.25 252.570312 243.15625 252.664062 243.15625 252.78125 C 243.15625 252.898438 243.25 252.992188 243.367188 252.992188 C 243.484375 252.992188 243.578125 252.898438 243.578125 252.78125 Z M 243.578125 252.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.511719 253.261719 C 246.511719 253.144531 246.417969 253.050781 246.300781 253.050781 C 246.183594 253.050781 246.089844 253.144531 246.089844 253.261719 C 246.089844 253.378906 246.183594 253.472656 246.300781 253.472656 C 246.417969 253.472656 246.511719 253.378906 246.511719 253.261719 Z M 246.511719 253.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.609375 252.707031 C 245.609375 252.589844 245.515625 252.496094 245.398438 252.496094 C 245.28125 252.496094 245.1875 252.589844 245.1875 252.707031 C 245.1875 252.824219 245.28125 252.917969 245.398438 252.917969 C 245.515625 252.917969 245.609375 252.824219 245.609375 252.707031 Z M 245.609375 252.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.132812 251.953125 C 245.132812 251.835938 245.039062 251.742188 244.921875 251.742188 C 244.804688 251.742188 244.710938 251.835938 244.710938 251.953125 C 244.710938 252.070312 244.804688 252.164062 244.921875 252.164062 C 245.039062 252.164062 245.132812 252.070312 245.132812 251.953125 Z M 245.132812 251.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.335938 251.917969 C 250.335938 251.800781 250.242188 251.707031 250.125 251.707031 C 250.007812 251.707031 249.914062 251.800781 249.914062 251.917969 C 249.914062 252.035156 250.007812 252.128906 250.125 252.128906 C 250.242188 252.128906 250.335938 252.035156 250.335938 251.917969 Z M 250.335938 251.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.871094 251.816406 C 250.871094 251.699219 250.777344 251.605469 250.660156 251.605469 C 250.542969 251.605469 250.449219 251.699219 250.449219 251.816406 C 250.449219 251.933594 250.542969 252.027344 250.660156 252.027344 C 250.777344 252.027344 250.871094 251.933594 250.871094 251.816406 Z M 250.871094 251.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.238281 250.488281 C 253.238281 250.371094 253.144531 250.277344 253.027344 250.277344 C 252.910156 250.277344 252.816406 250.371094 252.816406 250.488281 C 252.816406 250.605469 252.910156 250.699219 253.027344 250.699219 C 253.144531 250.699219 253.238281 250.605469 253.238281 250.488281 Z M 253.238281 250.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.480469 255.714844 C 251.480469 255.597656 251.386719 255.503906 251.269531 255.503906 C 251.152344 255.503906 251.058594 255.597656 251.058594 255.714844 C 251.058594 255.832031 251.152344 255.925781 251.269531 255.925781 C 251.386719 255.925781 251.480469 255.832031 251.480469 255.714844 Z M 251.480469 255.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.753906 253.414062 C 250.753906 253.296875 250.660156 253.203125 250.542969 253.203125 C 250.425781 253.203125 250.332031 253.296875 250.332031 253.414062 C 250.332031 253.53125 250.425781 253.625 250.542969 253.625 C 250.660156 253.625 250.753906 253.53125 250.753906 253.414062 Z M 250.753906 253.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.695312 254.089844 C 250.695312 253.972656 250.601562 253.878906 250.484375 253.878906 C 250.367188 253.878906 250.273438 253.972656 250.273438 254.089844 C 250.273438 254.207031 250.367188 254.300781 250.484375 254.300781 C 250.601562 254.300781 250.695312 254.207031 250.695312 254.089844 Z M 250.695312 254.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.222656 251.132812 C 251.222656 251.015625 251.128906 250.921875 251.011719 250.921875 C 250.894531 250.921875 250.800781 251.015625 250.800781 251.132812 C 250.800781 251.25 250.894531 251.34375 251.011719 251.34375 C 251.128906 251.34375 251.222656 251.25 251.222656 251.132812 Z M 251.222656 251.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.613281 250.925781 C 249.613281 250.808594 249.519531 250.714844 249.402344 250.714844 C 249.285156 250.714844 249.191406 250.808594 249.191406 250.925781 C 249.191406 251.042969 249.285156 251.136719 249.402344 251.136719 C 249.519531 251.136719 249.613281 251.042969 249.613281 250.925781 Z M 249.613281 250.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.609375 250.25 C 251.609375 250.132812 251.515625 250.039062 251.398438 250.039062 C 251.28125 250.039062 251.1875 250.132812 251.1875 250.25 C 251.1875 250.367188 251.28125 250.460938 251.398438 250.460938 C 251.515625 250.460938 251.609375 250.367188 251.609375 250.25 Z M 251.609375 250.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.882812 250.28125 C 251.882812 250.164062 251.789062 250.070312 251.671875 250.070312 C 251.554688 250.070312 251.460938 250.164062 251.460938 250.28125 C 251.460938 250.398438 251.554688 250.492188 251.671875 250.492188 C 251.789062 250.492188 251.882812 250.398438 251.882812 250.28125 Z M 251.882812 250.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.214844 251.632812 C 248.214844 251.515625 248.121094 251.421875 248.003906 251.421875 C 247.886719 251.421875 247.792969 251.515625 247.792969 251.632812 C 247.792969 251.75 247.886719 251.84375 248.003906 251.84375 C 248.121094 251.84375 248.214844 251.75 248.214844 251.632812 Z M 248.214844 251.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.910156 250.320312 C 246.910156 250.203125 246.816406 250.109375 246.699219 250.109375 C 246.582031 250.109375 246.488281 250.203125 246.488281 250.320312 C 246.488281 250.4375 246.582031 250.53125 246.699219 250.53125 C 246.816406 250.53125 246.910156 250.4375 246.910156 250.320312 Z M 246.910156 250.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.585938 249.078125 C 244.585938 248.960938 244.492188 248.867188 244.375 248.867188 C 244.257812 248.867188 244.164062 248.960938 244.164062 249.078125 C 244.164062 249.195312 244.257812 249.289062 244.375 249.289062 C 244.492188 249.289062 244.585938 249.195312 244.585938 249.078125 Z M 244.585938 249.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.613281 250.335938 C 244.613281 250.21875 244.519531 250.125 244.402344 250.125 C 244.285156 250.125 244.191406 250.21875 244.191406 250.335938 C 244.191406 250.453125 244.285156 250.546875 244.402344 250.546875 C 244.519531 250.546875 244.613281 250.453125 244.613281 250.335938 Z M 244.613281 250.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.414062 252 C 244.414062 251.882812 244.320312 251.789062 244.203125 251.789062 C 244.085938 251.789062 243.992188 251.882812 243.992188 252 C 243.992188 252.117188 244.085938 252.210938 244.203125 252.210938 C 244.320312 252.210938 244.414062 252.117188 244.414062 252 Z M 244.414062 252 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.550781 254.011719 C 242.550781 253.894531 242.457031 253.800781 242.339844 253.800781 C 242.222656 253.800781 242.128906 253.894531 242.128906 254.011719 C 242.128906 254.128906 242.222656 254.222656 242.339844 254.222656 C 242.457031 254.222656 242.550781 254.128906 242.550781 254.011719 Z M 242.550781 254.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.457031 250.539062 C 242.457031 250.421875 242.363281 250.328125 242.246094 250.328125 C 242.128906 250.328125 242.035156 250.421875 242.035156 250.539062 C 242.035156 250.65625 242.128906 250.75 242.246094 250.75 C 242.363281 250.75 242.457031 250.65625 242.457031 250.539062 Z M 242.457031 250.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243 250.988281 C 243 250.871094 242.90625 250.777344 242.789062 250.777344 C 242.671875 250.777344 242.578125 250.871094 242.578125 250.988281 C 242.578125 251.105469 242.671875 251.199219 242.789062 251.199219 C 242.90625 251.199219 243 251.105469 243 250.988281 Z M 243 250.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.421875 252.398438 C 245.421875 252.28125 245.328125 252.1875 245.210938 252.1875 C 245.09375 252.1875 245 252.28125 245 252.398438 C 245 252.515625 245.09375 252.609375 245.210938 252.609375 C 245.328125 252.609375 245.421875 252.515625 245.421875 252.398438 Z M 245.421875 252.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.148438 248.46875 C 247.148438 248.351562 247.054688 248.257812 246.9375 248.257812 C 246.820312 248.257812 246.726562 248.351562 246.726562 248.46875 C 246.726562 248.585938 246.820312 248.679688 246.9375 248.679688 C 247.054688 248.679688 247.148438 248.585938 247.148438 248.46875 Z M 247.148438 248.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.160156 250.308594 C 247.160156 250.191406 247.066406 250.097656 246.949219 250.097656 C 246.832031 250.097656 246.738281 250.191406 246.738281 250.308594 C 246.738281 250.425781 246.832031 250.519531 246.949219 250.519531 C 247.066406 250.519531 247.160156 250.425781 247.160156 250.308594 Z M 247.160156 250.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.566406 250.902344 C 246.566406 250.785156 246.472656 250.691406 246.355469 250.691406 C 246.238281 250.691406 246.144531 250.785156 246.144531 250.902344 C 246.144531 251.019531 246.238281 251.113281 246.355469 251.113281 C 246.472656 251.113281 246.566406 251.019531 246.566406 250.902344 Z M 246.566406 250.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.003906 250.386719 C 246.003906 250.269531 245.910156 250.175781 245.792969 250.175781 C 245.675781 250.175781 245.582031 250.269531 245.582031 250.386719 C 245.582031 250.503906 245.675781 250.597656 245.792969 250.597656 C 245.910156 250.597656 246.003906 250.503906 246.003906 250.386719 Z M 246.003906 250.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.34375 250.234375 C 246.34375 250.117188 246.25 250.023438 246.132812 250.023438 C 246.015625 250.023438 245.921875 250.117188 245.921875 250.234375 C 245.921875 250.351562 246.015625 250.445312 246.132812 250.445312 C 246.25 250.445312 246.34375 250.351562 246.34375 250.234375 Z M 246.34375 250.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.457031 253.023438 C 245.457031 252.90625 245.363281 252.8125 245.246094 252.8125 C 245.128906 252.8125 245.035156 252.90625 245.035156 253.023438 C 245.035156 253.140625 245.128906 253.234375 245.246094 253.234375 C 245.363281 253.234375 245.457031 253.140625 245.457031 253.023438 Z M 245.457031 253.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.210938 255.410156 C 245.210938 255.292969 245.117188 255.199219 245 255.199219 C 244.882812 255.199219 244.789062 255.292969 244.789062 255.410156 C 244.789062 255.527344 244.882812 255.621094 245 255.621094 C 245.117188 255.621094 245.210938 255.527344 245.210938 255.410156 Z M 245.210938 255.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.800781 255.554688 C 248.800781 255.4375 248.707031 255.34375 248.589844 255.34375 C 248.472656 255.34375 248.378906 255.4375 248.378906 255.554688 C 248.378906 255.671875 248.472656 255.765625 248.589844 255.765625 C 248.707031 255.765625 248.800781 255.671875 248.800781 255.554688 Z M 248.800781 255.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.734375 251.925781 C 251.734375 251.808594 251.640625 251.714844 251.523438 251.714844 C 251.40625 251.714844 251.3125 251.808594 251.3125 251.925781 C 251.3125 252.042969 251.40625 252.136719 251.523438 252.136719 C 251.640625 252.136719 251.734375 252.042969 251.734375 251.925781 Z M 251.734375 251.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.460938 251.207031 C 255.460938 251.089844 255.367188 250.996094 255.25 250.996094 C 255.132812 250.996094 255.039062 251.089844 255.039062 251.207031 C 255.039062 251.324219 255.132812 251.417969 255.25 251.417969 C 255.367188 251.417969 255.460938 251.324219 255.460938 251.207031 Z M 255.460938 251.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.140625 250.503906 C 254.140625 250.386719 254.046875 250.292969 253.929688 250.292969 C 253.8125 250.292969 253.71875 250.386719 253.71875 250.503906 C 253.71875 250.621094 253.8125 250.714844 253.929688 250.714844 C 254.046875 250.714844 254.140625 250.621094 254.140625 250.503906 Z M 254.140625 250.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.324219 249.960938 C 255.324219 249.84375 255.230469 249.75 255.113281 249.75 C 254.996094 249.75 254.902344 249.84375 254.902344 249.960938 C 254.902344 250.078125 254.996094 250.171875 255.113281 250.171875 C 255.230469 250.171875 255.324219 250.078125 255.324219 249.960938 Z M 255.324219 249.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.492188 251.703125 C 258.492188 251.585938 258.398438 251.492188 258.28125 251.492188 C 258.164062 251.492188 258.070312 251.585938 258.070312 251.703125 C 258.070312 251.820312 258.164062 251.914062 258.28125 251.914062 C 258.398438 251.914062 258.492188 251.820312 258.492188 251.703125 Z M 258.492188 251.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.578125 251.824219 C 259.578125 251.707031 259.484375 251.613281 259.367188 251.613281 C 259.25 251.613281 259.15625 251.707031 259.15625 251.824219 C 259.15625 251.941406 259.25 252.035156 259.367188 252.035156 C 259.484375 252.035156 259.578125 251.941406 259.578125 251.824219 Z M 259.578125 251.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.128906 258.085938 C 259.128906 257.96875 259.035156 257.875 258.917969 257.875 C 258.800781 257.875 258.707031 257.96875 258.707031 258.085938 C 258.707031 258.203125 258.800781 258.296875 258.917969 258.296875 C 259.035156 258.296875 259.128906 258.203125 259.128906 258.085938 Z M 259.128906 258.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.703125 254.808594 C 258.703125 254.691406 258.609375 254.597656 258.492188 254.597656 C 258.375 254.597656 258.28125 254.691406 258.28125 254.808594 C 258.28125 254.925781 258.375 255.019531 258.492188 255.019531 C 258.609375 255.019531 258.703125 254.925781 258.703125 254.808594 Z M 258.703125 254.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.292969 252.207031 C 257.292969 252.089844 257.199219 251.996094 257.082031 251.996094 C 256.964844 251.996094 256.871094 252.089844 256.871094 252.207031 C 256.871094 252.324219 256.964844 252.417969 257.082031 252.417969 C 257.199219 252.417969 257.292969 252.324219 257.292969 252.207031 Z M 257.292969 252.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.652344 254.992188 C 255.652344 254.875 255.558594 254.78125 255.441406 254.78125 C 255.324219 254.78125 255.230469 254.875 255.230469 254.992188 C 255.230469 255.109375 255.324219 255.203125 255.441406 255.203125 C 255.558594 255.203125 255.652344 255.109375 255.652344 254.992188 Z M 255.652344 254.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.03125 258.574219 C 259.03125 258.457031 258.9375 258.363281 258.820312 258.363281 C 258.703125 258.363281 258.609375 258.457031 258.609375 258.574219 C 258.609375 258.691406 258.703125 258.785156 258.820312 258.785156 C 258.9375 258.785156 259.03125 258.691406 259.03125 258.574219 Z M 259.03125 258.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.429688 255.949219 C 262.429688 255.832031 262.335938 255.738281 262.21875 255.738281 C 262.101562 255.738281 262.007812 255.832031 262.007812 255.949219 C 262.007812 256.066406 262.101562 256.160156 262.21875 256.160156 C 262.335938 256.160156 262.429688 256.066406 262.429688 255.949219 Z M 262.429688 255.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.855469 253.015625 C 261.855469 252.898438 261.761719 252.804688 261.644531 252.804688 C 261.527344 252.804688 261.433594 252.898438 261.433594 253.015625 C 261.433594 253.132812 261.527344 253.226562 261.644531 253.226562 C 261.761719 253.226562 261.855469 253.132812 261.855469 253.015625 Z M 261.855469 253.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.753906 250.980469 C 263.753906 250.863281 263.660156 250.769531 263.542969 250.769531 C 263.425781 250.769531 263.332031 250.863281 263.332031 250.980469 C 263.332031 251.097656 263.425781 251.191406 263.542969 251.191406 C 263.660156 251.191406 263.753906 251.097656 263.753906 250.980469 Z M 263.753906 250.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.726562 253.140625 C 262.726562 253.023438 262.632812 252.929688 262.515625 252.929688 C 262.398438 252.929688 262.304688 253.023438 262.304688 253.140625 C 262.304688 253.257812 262.398438 253.351562 262.515625 253.351562 C 262.632812 253.351562 262.726562 253.257812 262.726562 253.140625 Z M 262.726562 253.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.851562 253.226562 C 257.851562 253.109375 257.757812 253.015625 257.640625 253.015625 C 257.523438 253.015625 257.429688 253.109375 257.429688 253.226562 C 257.429688 253.34375 257.523438 253.4375 257.640625 253.4375 C 257.757812 253.4375 257.851562 253.34375 257.851562 253.226562 Z M 257.851562 253.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.828125 249.445312 C 256.828125 249.328125 256.734375 249.234375 256.617188 249.234375 C 256.5 249.234375 256.40625 249.328125 256.40625 249.445312 C 256.40625 249.5625 256.5 249.65625 256.617188 249.65625 C 256.734375 249.65625 256.828125 249.5625 256.828125 249.445312 Z M 256.828125 249.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.121094 252.816406 C 258.121094 252.699219 258.027344 252.605469 257.910156 252.605469 C 257.792969 252.605469 257.699219 252.699219 257.699219 252.816406 C 257.699219 252.933594 257.792969 253.027344 257.910156 253.027344 C 258.027344 253.027344 258.121094 252.933594 258.121094 252.816406 Z M 258.121094 252.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.480469 252.605469 C 259.480469 252.488281 259.386719 252.394531 259.269531 252.394531 C 259.152344 252.394531 259.058594 252.488281 259.058594 252.605469 C 259.058594 252.722656 259.152344 252.816406 259.269531 252.816406 C 259.386719 252.816406 259.480469 252.722656 259.480469 252.605469 Z M 259.480469 252.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.980469 250.910156 C 256.980469 250.792969 256.886719 250.699219 256.769531 250.699219 C 256.652344 250.699219 256.558594 250.792969 256.558594 250.910156 C 256.558594 251.027344 256.652344 251.121094 256.769531 251.121094 C 256.886719 251.121094 256.980469 251.027344 256.980469 250.910156 Z M 256.980469 250.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.914062 251.972656 C 254.914062 251.855469 254.820312 251.761719 254.703125 251.761719 C 254.585938 251.761719 254.492188 251.855469 254.492188 251.972656 C 254.492188 252.089844 254.585938 252.183594 254.703125 252.183594 C 254.820312 252.183594 254.914062 252.089844 254.914062 251.972656 Z M 254.914062 251.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.882812 249.566406 C 253.882812 249.449219 253.789062 249.355469 253.671875 249.355469 C 253.554688 249.355469 253.460938 249.449219 253.460938 249.566406 C 253.460938 249.683594 253.554688 249.777344 253.671875 249.777344 C 253.789062 249.777344 253.882812 249.683594 253.882812 249.566406 Z M 253.882812 249.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.730469 249.195312 C 253.730469 249.078125 253.636719 248.984375 253.519531 248.984375 C 253.402344 248.984375 253.308594 249.078125 253.308594 249.195312 C 253.308594 249.3125 253.402344 249.40625 253.519531 249.40625 C 253.636719 249.40625 253.730469 249.3125 253.730469 249.195312 Z M 253.730469 249.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.679688 248.683594 C 253.679688 248.566406 253.585938 248.472656 253.46875 248.472656 C 253.351562 248.472656 253.257812 248.566406 253.257812 248.683594 C 253.257812 248.800781 253.351562 248.894531 253.46875 248.894531 C 253.585938 248.894531 253.679688 248.800781 253.679688 248.683594 Z M 253.679688 248.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.988281 251.992188 C 254.988281 251.875 254.894531 251.78125 254.777344 251.78125 C 254.660156 251.78125 254.566406 251.875 254.566406 251.992188 C 254.566406 252.109375 254.660156 252.203125 254.777344 252.203125 C 254.894531 252.203125 254.988281 252.109375 254.988281 251.992188 Z M 254.988281 251.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.941406 252.21875 C 258.941406 252.101562 258.847656 252.007812 258.730469 252.007812 C 258.613281 252.007812 258.519531 252.101562 258.519531 252.21875 C 258.519531 252.335938 258.613281 252.429688 258.730469 252.429688 C 258.847656 252.429688 258.941406 252.335938 258.941406 252.21875 Z M 258.941406 252.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.253906 254.929688 C 260.253906 254.8125 260.160156 254.71875 260.042969 254.71875 C 259.925781 254.71875 259.832031 254.8125 259.832031 254.929688 C 259.832031 255.046875 259.925781 255.140625 260.042969 255.140625 C 260.160156 255.140625 260.253906 255.046875 260.253906 254.929688 Z M 260.253906 254.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.402344 257.007812 C 259.402344 256.890625 259.308594 256.796875 259.191406 256.796875 C 259.074219 256.796875 258.980469 256.890625 258.980469 257.007812 C 258.980469 257.125 259.074219 257.21875 259.191406 257.21875 C 259.308594 257.21875 259.402344 257.125 259.402344 257.007812 Z M 259.402344 257.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.089844 255.003906 C 258.089844 254.886719 257.996094 254.792969 257.878906 254.792969 C 257.761719 254.792969 257.667969 254.886719 257.667969 255.003906 C 257.667969 255.121094 257.761719 255.214844 257.878906 255.214844 C 257.996094 255.214844 258.089844 255.121094 258.089844 255.003906 Z M 258.089844 255.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.875 254.394531 C 256.875 254.277344 256.78125 254.183594 256.664062 254.183594 C 256.546875 254.183594 256.453125 254.277344 256.453125 254.394531 C 256.453125 254.511719 256.546875 254.605469 256.664062 254.605469 C 256.78125 254.605469 256.875 254.511719 256.875 254.394531 Z M 256.875 254.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.710938 253.34375 C 256.710938 253.226562 256.617188 253.132812 256.5 253.132812 C 256.382812 253.132812 256.289062 253.226562 256.289062 253.34375 C 256.289062 253.460938 256.382812 253.554688 256.5 253.554688 C 256.617188 253.554688 256.710938 253.460938 256.710938 253.34375 Z M 256.710938 253.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.042969 250.148438 C 257.042969 250.03125 256.949219 249.9375 256.832031 249.9375 C 256.714844 249.9375 256.621094 250.03125 256.621094 250.148438 C 256.621094 250.265625 256.714844 250.359375 256.832031 250.359375 C 256.949219 250.359375 257.042969 250.265625 257.042969 250.148438 Z M 257.042969 250.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.859375 250.5625 C 255.859375 250.445312 255.765625 250.351562 255.648438 250.351562 C 255.53125 250.351562 255.4375 250.445312 255.4375 250.5625 C 255.4375 250.679688 255.53125 250.773438 255.648438 250.773438 C 255.765625 250.773438 255.859375 250.679688 255.859375 250.5625 Z M 255.859375 250.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.128906 247.449219 C 257.128906 247.332031 257.035156 247.238281 256.917969 247.238281 C 256.800781 247.238281 256.707031 247.332031 256.707031 247.449219 C 256.707031 247.566406 256.800781 247.660156 256.917969 247.660156 C 257.035156 247.660156 257.128906 247.566406 257.128906 247.449219 Z M 257.128906 247.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.097656 247.070312 C 257.097656 246.953125 257.003906 246.859375 256.886719 246.859375 C 256.769531 246.859375 256.675781 246.953125 256.675781 247.070312 C 256.675781 247.1875 256.769531 247.28125 256.886719 247.28125 C 257.003906 247.28125 257.097656 247.1875 257.097656 247.070312 Z M 257.097656 247.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.328125 244.671875 C 257.328125 244.554688 257.234375 244.460938 257.117188 244.460938 C 257 244.460938 256.90625 244.554688 256.90625 244.671875 C 256.90625 244.789062 257 244.882812 257.117188 244.882812 C 257.234375 244.882812 257.328125 244.789062 257.328125 244.671875 Z M 257.328125 244.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.144531 244.820312 C 255.144531 244.703125 255.050781 244.609375 254.933594 244.609375 C 254.816406 244.609375 254.722656 244.703125 254.722656 244.820312 C 254.722656 244.9375 254.816406 245.03125 254.933594 245.03125 C 255.050781 245.03125 255.144531 244.9375 255.144531 244.820312 Z M 255.144531 244.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.535156 242.734375 C 257.535156 242.617188 257.441406 242.523438 257.324219 242.523438 C 257.207031 242.523438 257.113281 242.617188 257.113281 242.734375 C 257.113281 242.851562 257.207031 242.945312 257.324219 242.945312 C 257.441406 242.945312 257.535156 242.851562 257.535156 242.734375 Z M 257.535156 242.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.601562 240.363281 C 257.601562 240.246094 257.507812 240.152344 257.390625 240.152344 C 257.273438 240.152344 257.179688 240.246094 257.179688 240.363281 C 257.179688 240.480469 257.273438 240.574219 257.390625 240.574219 C 257.507812 240.574219 257.601562 240.480469 257.601562 240.363281 Z M 257.601562 240.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.929688 240.460938 C 257.929688 240.34375 257.835938 240.25 257.71875 240.25 C 257.601562 240.25 257.507812 240.34375 257.507812 240.460938 C 257.507812 240.578125 257.601562 240.671875 257.71875 240.671875 C 257.835938 240.671875 257.929688 240.578125 257.929688 240.460938 Z M 257.929688 240.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.402344 240.128906 C 255.402344 240.011719 255.308594 239.917969 255.191406 239.917969 C 255.074219 239.917969 254.980469 240.011719 254.980469 240.128906 C 254.980469 240.246094 255.074219 240.339844 255.191406 240.339844 C 255.308594 240.339844 255.402344 240.246094 255.402344 240.128906 Z M 255.402344 240.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.40625 242.070312 C 257.40625 241.953125 257.3125 241.859375 257.195312 241.859375 C 257.078125 241.859375 256.984375 241.953125 256.984375 242.070312 C 256.984375 242.1875 257.078125 242.28125 257.195312 242.28125 C 257.3125 242.28125 257.40625 242.1875 257.40625 242.070312 Z M 257.40625 242.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.089844 241.226562 C 256.089844 241.109375 255.996094 241.015625 255.878906 241.015625 C 255.761719 241.015625 255.667969 241.109375 255.667969 241.226562 C 255.667969 241.34375 255.761719 241.4375 255.878906 241.4375 C 255.996094 241.4375 256.089844 241.34375 256.089844 241.226562 Z M 256.089844 241.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.550781 242.019531 C 256.550781 241.902344 256.457031 241.808594 256.339844 241.808594 C 256.222656 241.808594 256.128906 241.902344 256.128906 242.019531 C 256.128906 242.136719 256.222656 242.230469 256.339844 242.230469 C 256.457031 242.230469 256.550781 242.136719 256.550781 242.019531 Z M 256.550781 242.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.890625 241.144531 C 256.890625 241.027344 256.796875 240.933594 256.679688 240.933594 C 256.5625 240.933594 256.46875 241.027344 256.46875 241.144531 C 256.46875 241.261719 256.5625 241.355469 256.679688 241.355469 C 256.796875 241.355469 256.890625 241.261719 256.890625 241.144531 Z M 256.890625 241.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.699219 239.246094 C 257.699219 239.128906 257.605469 239.035156 257.488281 239.035156 C 257.371094 239.035156 257.277344 239.128906 257.277344 239.246094 C 257.277344 239.363281 257.371094 239.457031 257.488281 239.457031 C 257.605469 239.457031 257.699219 239.363281 257.699219 239.246094 Z M 257.699219 239.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.324219 239.433594 C 255.324219 239.316406 255.230469 239.222656 255.113281 239.222656 C 254.996094 239.222656 254.902344 239.316406 254.902344 239.433594 C 254.902344 239.550781 254.996094 239.644531 255.113281 239.644531 C 255.230469 239.644531 255.324219 239.550781 255.324219 239.433594 Z M 255.324219 239.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.691406 239.414062 C 253.691406 239.296875 253.597656 239.203125 253.480469 239.203125 C 253.363281 239.203125 253.269531 239.296875 253.269531 239.414062 C 253.269531 239.53125 253.363281 239.625 253.480469 239.625 C 253.597656 239.625 253.691406 239.53125 253.691406 239.414062 Z M 253.691406 239.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.144531 240.894531 C 254.144531 240.777344 254.050781 240.683594 253.933594 240.683594 C 253.816406 240.683594 253.722656 240.777344 253.722656 240.894531 C 253.722656 241.011719 253.816406 241.105469 253.933594 241.105469 C 254.050781 241.105469 254.144531 241.011719 254.144531 240.894531 Z M 254.144531 240.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.621094 240.375 C 255.621094 240.257812 255.527344 240.164062 255.410156 240.164062 C 255.292969 240.164062 255.199219 240.257812 255.199219 240.375 C 255.199219 240.492188 255.292969 240.585938 255.410156 240.585938 C 255.527344 240.585938 255.621094 240.492188 255.621094 240.375 Z M 255.621094 240.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.65625 241.691406 C 254.65625 241.574219 254.5625 241.480469 254.445312 241.480469 C 254.328125 241.480469 254.234375 241.574219 254.234375 241.691406 C 254.234375 241.808594 254.328125 241.902344 254.445312 241.902344 C 254.5625 241.902344 254.65625 241.808594 254.65625 241.691406 Z M 254.65625 241.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.199219 240.835938 C 257.199219 240.71875 257.105469 240.625 256.988281 240.625 C 256.871094 240.625 256.777344 240.71875 256.777344 240.835938 C 256.777344 240.953125 256.871094 241.046875 256.988281 241.046875 C 257.105469 241.046875 257.199219 240.953125 257.199219 240.835938 Z M 257.199219 240.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.171875 240.917969 C 258.171875 240.800781 258.078125 240.707031 257.960938 240.707031 C 257.84375 240.707031 257.75 240.800781 257.75 240.917969 C 257.75 241.035156 257.84375 241.128906 257.960938 241.128906 C 258.078125 241.128906 258.171875 241.035156 258.171875 240.917969 Z M 258.171875 240.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.550781 240.714844 C 261.550781 240.597656 261.457031 240.503906 261.339844 240.503906 C 261.222656 240.503906 261.128906 240.597656 261.128906 240.714844 C 261.128906 240.832031 261.222656 240.925781 261.339844 240.925781 C 261.457031 240.925781 261.550781 240.832031 261.550781 240.714844 Z M 261.550781 240.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.464844 239.910156 C 262.464844 239.792969 262.371094 239.699219 262.253906 239.699219 C 262.136719 239.699219 262.042969 239.792969 262.042969 239.910156 C 262.042969 240.027344 262.136719 240.121094 262.253906 240.121094 C 262.371094 240.121094 262.464844 240.027344 262.464844 239.910156 Z M 262.464844 239.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.699219 239.753906 C 260.699219 239.636719 260.605469 239.542969 260.488281 239.542969 C 260.371094 239.542969 260.277344 239.636719 260.277344 239.753906 C 260.277344 239.871094 260.371094 239.964844 260.488281 239.964844 C 260.605469 239.964844 260.699219 239.871094 260.699219 239.753906 Z M 260.699219 239.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.550781 241.617188 C 262.550781 241.5 262.457031 241.40625 262.339844 241.40625 C 262.222656 241.40625 262.128906 241.5 262.128906 241.617188 C 262.128906 241.734375 262.222656 241.828125 262.339844 241.828125 C 262.457031 241.828125 262.550781 241.734375 262.550781 241.617188 Z M 262.550781 241.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.152344 246.195312 C 264.152344 246.078125 264.058594 245.984375 263.941406 245.984375 C 263.824219 245.984375 263.730469 246.078125 263.730469 246.195312 C 263.730469 246.3125 263.824219 246.40625 263.941406 246.40625 C 264.058594 246.40625 264.152344 246.3125 264.152344 246.195312 Z M 264.152344 246.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.761719 246.128906 C 263.761719 246.011719 263.667969 245.917969 263.550781 245.917969 C 263.433594 245.917969 263.339844 246.011719 263.339844 246.128906 C 263.339844 246.246094 263.433594 246.339844 263.550781 246.339844 C 263.667969 246.339844 263.761719 246.246094 263.761719 246.128906 Z M 263.761719 246.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.195312 246.769531 C 263.195312 246.652344 263.101562 246.558594 262.984375 246.558594 C 262.867188 246.558594 262.773438 246.652344 262.773438 246.769531 C 262.773438 246.886719 262.867188 246.980469 262.984375 246.980469 C 263.101562 246.980469 263.195312 246.886719 263.195312 246.769531 Z M 263.195312 246.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.9375 247.800781 C 259.9375 247.683594 259.84375 247.589844 259.726562 247.589844 C 259.609375 247.589844 259.515625 247.683594 259.515625 247.800781 C 259.515625 247.917969 259.609375 248.011719 259.726562 248.011719 C 259.84375 248.011719 259.9375 247.917969 259.9375 247.800781 Z M 259.9375 247.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.105469 242.386719 C 258.105469 242.269531 258.011719 242.175781 257.894531 242.175781 C 257.777344 242.175781 257.683594 242.269531 257.683594 242.386719 C 257.683594 242.503906 257.777344 242.597656 257.894531 242.597656 C 258.011719 242.597656 258.105469 242.503906 258.105469 242.386719 Z M 258.105469 242.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.042969 239.742188 C 257.042969 239.625 256.949219 239.53125 256.832031 239.53125 C 256.714844 239.53125 256.621094 239.625 256.621094 239.742188 C 256.621094 239.859375 256.714844 239.953125 256.832031 239.953125 C 256.949219 239.953125 257.042969 239.859375 257.042969 239.742188 Z M 257.042969 239.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.773438 239.464844 C 254.773438 239.347656 254.679688 239.253906 254.5625 239.253906 C 254.445312 239.253906 254.351562 239.347656 254.351562 239.464844 C 254.351562 239.582031 254.445312 239.675781 254.5625 239.675781 C 254.679688 239.675781 254.773438 239.582031 254.773438 239.464844 Z M 254.773438 239.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.929688 241.019531 C 255.929688 240.902344 255.835938 240.808594 255.71875 240.808594 C 255.601562 240.808594 255.507812 240.902344 255.507812 241.019531 C 255.507812 241.136719 255.601562 241.230469 255.71875 241.230469 C 255.835938 241.230469 255.929688 241.136719 255.929688 241.019531 Z M 255.929688 241.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.578125 240.980469 C 257.578125 240.863281 257.484375 240.769531 257.367188 240.769531 C 257.25 240.769531 257.15625 240.863281 257.15625 240.980469 C 257.15625 241.097656 257.25 241.191406 257.367188 241.191406 C 257.484375 241.191406 257.578125 241.097656 257.578125 240.980469 Z M 257.578125 240.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.707031 239.8125 C 261.707031 239.695312 261.613281 239.601562 261.496094 239.601562 C 261.378906 239.601562 261.285156 239.695312 261.285156 239.8125 C 261.285156 239.929688 261.378906 240.023438 261.496094 240.023438 C 261.613281 240.023438 261.707031 239.929688 261.707031 239.8125 Z M 261.707031 239.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.929688 243.992188 C 257.929688 243.875 257.835938 243.78125 257.71875 243.78125 C 257.601562 243.78125 257.507812 243.875 257.507812 243.992188 C 257.507812 244.109375 257.601562 244.203125 257.71875 244.203125 C 257.835938 244.203125 257.929688 244.109375 257.929688 243.992188 Z M 257.929688 243.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.316406 241.46875 C 256.316406 241.351562 256.222656 241.257812 256.105469 241.257812 C 255.988281 241.257812 255.894531 241.351562 255.894531 241.46875 C 255.894531 241.585938 255.988281 241.679688 256.105469 241.679688 C 256.222656 241.679688 256.316406 241.585938 256.316406 241.46875 Z M 256.316406 241.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.460938 243.726562 C 260.460938 243.609375 260.367188 243.515625 260.25 243.515625 C 260.132812 243.515625 260.039062 243.609375 260.039062 243.726562 C 260.039062 243.84375 260.132812 243.9375 260.25 243.9375 C 260.367188 243.9375 260.460938 243.84375 260.460938 243.726562 Z M 260.460938 243.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.300781 244.324219 C 260.300781 244.207031 260.207031 244.113281 260.089844 244.113281 C 259.972656 244.113281 259.878906 244.207031 259.878906 244.324219 C 259.878906 244.441406 259.972656 244.535156 260.089844 244.535156 C 260.207031 244.535156 260.300781 244.441406 260.300781 244.324219 Z M 260.300781 244.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.351562 241.828125 C 260.351562 241.710938 260.257812 241.617188 260.140625 241.617188 C 260.023438 241.617188 259.929688 241.710938 259.929688 241.828125 C 259.929688 241.945312 260.023438 242.039062 260.140625 242.039062 C 260.257812 242.039062 260.351562 241.945312 260.351562 241.828125 Z M 260.351562 241.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.796875 243.015625 C 260.796875 242.898438 260.703125 242.804688 260.585938 242.804688 C 260.46875 242.804688 260.375 242.898438 260.375 243.015625 C 260.375 243.132812 260.46875 243.226562 260.585938 243.226562 C 260.703125 243.226562 260.796875 243.132812 260.796875 243.015625 Z M 260.796875 243.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.871094 241.441406 C 257.871094 241.324219 257.777344 241.230469 257.660156 241.230469 C 257.542969 241.230469 257.449219 241.324219 257.449219 241.441406 C 257.449219 241.558594 257.542969 241.652344 257.660156 241.652344 C 257.777344 241.652344 257.871094 241.558594 257.871094 241.441406 Z M 257.871094 241.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.597656 240.539062 C 255.597656 240.421875 255.503906 240.328125 255.386719 240.328125 C 255.269531 240.328125 255.175781 240.421875 255.175781 240.539062 C 255.175781 240.65625 255.269531 240.75 255.386719 240.75 C 255.503906 240.75 255.597656 240.65625 255.597656 240.539062 Z M 255.597656 240.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.234375 238.082031 C 255.234375 237.964844 255.140625 237.871094 255.023438 237.871094 C 254.90625 237.871094 254.8125 237.964844 254.8125 238.082031 C 254.8125 238.199219 254.90625 238.292969 255.023438 238.292969 C 255.140625 238.292969 255.234375 238.199219 255.234375 238.082031 Z M 255.234375 238.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.214844 236.875 C 254.214844 236.757812 254.121094 236.664062 254.003906 236.664062 C 253.886719 236.664062 253.792969 236.757812 253.792969 236.875 C 253.792969 236.992188 253.886719 237.085938 254.003906 237.085938 C 254.121094 237.085938 254.214844 236.992188 254.214844 236.875 Z M 254.214844 236.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.355469 237.289062 C 250.355469 237.171875 250.261719 237.078125 250.144531 237.078125 C 250.027344 237.078125 249.933594 237.171875 249.933594 237.289062 C 249.933594 237.40625 250.027344 237.5 250.144531 237.5 C 250.261719 237.5 250.355469 237.40625 250.355469 237.289062 Z M 250.355469 237.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.699219 235.851562 C 251.699219 235.734375 251.605469 235.640625 251.488281 235.640625 C 251.371094 235.640625 251.277344 235.734375 251.277344 235.851562 C 251.277344 235.96875 251.371094 236.0625 251.488281 236.0625 C 251.605469 236.0625 251.699219 235.96875 251.699219 235.851562 Z M 251.699219 235.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.246094 235.53125 C 253.246094 235.414062 253.152344 235.320312 253.035156 235.320312 C 252.917969 235.320312 252.824219 235.414062 252.824219 235.53125 C 252.824219 235.648438 252.917969 235.742188 253.035156 235.742188 C 253.152344 235.742188 253.246094 235.648438 253.246094 235.53125 Z M 253.246094 235.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.976562 234.65625 C 253.976562 234.539062 253.882812 234.445312 253.765625 234.445312 C 253.648438 234.445312 253.554688 234.539062 253.554688 234.65625 C 253.554688 234.773438 253.648438 234.867188 253.765625 234.867188 C 253.882812 234.867188 253.976562 234.773438 253.976562 234.65625 Z M 253.976562 234.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.605469 234.363281 C 254.605469 234.246094 254.511719 234.152344 254.394531 234.152344 C 254.277344 234.152344 254.183594 234.246094 254.183594 234.363281 C 254.183594 234.480469 254.277344 234.574219 254.394531 234.574219 C 254.511719 234.574219 254.605469 234.480469 254.605469 234.363281 Z M 254.605469 234.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.390625 235.097656 C 259.390625 234.980469 259.296875 234.886719 259.179688 234.886719 C 259.0625 234.886719 258.96875 234.980469 258.96875 235.097656 C 258.96875 235.214844 259.0625 235.308594 259.179688 235.308594 C 259.296875 235.308594 259.390625 235.214844 259.390625 235.097656 Z M 259.390625 235.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.003906 234.710938 C 260.003906 234.59375 259.910156 234.5 259.792969 234.5 C 259.675781 234.5 259.582031 234.59375 259.582031 234.710938 C 259.582031 234.828125 259.675781 234.921875 259.792969 234.921875 C 259.910156 234.921875 260.003906 234.828125 260.003906 234.710938 Z M 260.003906 234.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.527344 234.125 C 258.527344 234.007812 258.433594 233.914062 258.316406 233.914062 C 258.199219 233.914062 258.105469 234.007812 258.105469 234.125 C 258.105469 234.242188 258.199219 234.335938 258.316406 234.335938 C 258.433594 234.335938 258.527344 234.242188 258.527344 234.125 Z M 258.527344 234.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.050781 236.289062 C 259.050781 236.171875 258.957031 236.078125 258.839844 236.078125 C 258.722656 236.078125 258.628906 236.171875 258.628906 236.289062 C 258.628906 236.40625 258.722656 236.5 258.839844 236.5 C 258.957031 236.5 259.050781 236.40625 259.050781 236.289062 Z M 259.050781 236.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.675781 233.449219 C 258.675781 233.332031 258.582031 233.238281 258.464844 233.238281 C 258.347656 233.238281 258.253906 233.332031 258.253906 233.449219 C 258.253906 233.566406 258.347656 233.660156 258.464844 233.660156 C 258.582031 233.660156 258.675781 233.566406 258.675781 233.449219 Z M 258.675781 233.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.324219 234.121094 C 257.324219 234.003906 257.230469 233.910156 257.113281 233.910156 C 256.996094 233.910156 256.902344 234.003906 256.902344 234.121094 C 256.902344 234.238281 256.996094 234.332031 257.113281 234.332031 C 257.230469 234.332031 257.324219 234.238281 257.324219 234.121094 Z M 257.324219 234.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.277344 234.527344 C 257.277344 234.410156 257.183594 234.316406 257.066406 234.316406 C 256.949219 234.316406 256.855469 234.410156 256.855469 234.527344 C 256.855469 234.644531 256.949219 234.738281 257.066406 234.738281 C 257.183594 234.738281 257.277344 234.644531 257.277344 234.527344 Z M 257.277344 234.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.96875 234.609375 C 256.96875 234.492188 256.875 234.398438 256.757812 234.398438 C 256.640625 234.398438 256.546875 234.492188 256.546875 234.609375 C 256.546875 234.726562 256.640625 234.820312 256.757812 234.820312 C 256.875 234.820312 256.96875 234.726562 256.96875 234.609375 Z M 256.96875 234.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255 232.644531 C 255 232.527344 254.90625 232.433594 254.789062 232.433594 C 254.671875 232.433594 254.578125 232.527344 254.578125 232.644531 C 254.578125 232.761719 254.671875 232.855469 254.789062 232.855469 C 254.90625 232.855469 255 232.761719 255 232.644531 Z M 255 232.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.402344 231.335938 C 256.402344 231.21875 256.308594 231.125 256.191406 231.125 C 256.074219 231.125 255.980469 231.21875 255.980469 231.335938 C 255.980469 231.453125 256.074219 231.546875 256.191406 231.546875 C 256.308594 231.546875 256.402344 231.453125 256.402344 231.335938 Z M 256.402344 231.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.058594 235.152344 C 253.058594 235.035156 252.964844 234.941406 252.847656 234.941406 C 252.730469 234.941406 252.636719 235.035156 252.636719 235.152344 C 252.636719 235.269531 252.730469 235.363281 252.847656 235.363281 C 252.964844 235.363281 253.058594 235.269531 253.058594 235.152344 Z M 253.058594 235.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.726562 239.277344 C 256.726562 239.160156 256.632812 239.066406 256.515625 239.066406 C 256.398438 239.066406 256.304688 239.160156 256.304688 239.277344 C 256.304688 239.394531 256.398438 239.488281 256.515625 239.488281 C 256.632812 239.488281 256.726562 239.394531 256.726562 239.277344 Z M 256.726562 239.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.554688 234.929688 C 259.554688 234.8125 259.460938 234.71875 259.34375 234.71875 C 259.226562 234.71875 259.132812 234.8125 259.132812 234.929688 C 259.132812 235.046875 259.226562 235.140625 259.34375 235.140625 C 259.460938 235.140625 259.554688 235.046875 259.554688 234.929688 Z M 259.554688 234.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.253906 234 C 263.253906 233.882812 263.160156 233.789062 263.042969 233.789062 C 262.925781 233.789062 262.832031 233.882812 262.832031 234 C 262.832031 234.117188 262.925781 234.210938 263.042969 234.210938 C 263.160156 234.210938 263.253906 234.117188 263.253906 234 Z M 263.253906 234 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.679688 235.574219 C 265.679688 235.457031 265.585938 235.363281 265.46875 235.363281 C 265.351562 235.363281 265.257812 235.457031 265.257812 235.574219 C 265.257812 235.691406 265.351562 235.785156 265.46875 235.785156 C 265.585938 235.785156 265.679688 235.691406 265.679688 235.574219 Z M 265.679688 235.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.828125 236.75 C 263.828125 236.632812 263.734375 236.539062 263.617188 236.539062 C 263.5 236.539062 263.40625 236.632812 263.40625 236.75 C 263.40625 236.867188 263.5 236.960938 263.617188 236.960938 C 263.734375 236.960938 263.828125 236.867188 263.828125 236.75 Z M 263.828125 236.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.023438 240.03125 C 263.023438 239.914062 262.929688 239.820312 262.8125 239.820312 C 262.695312 239.820312 262.601562 239.914062 262.601562 240.03125 C 262.601562 240.148438 262.695312 240.242188 262.8125 240.242188 C 262.929688 240.242188 263.023438 240.148438 263.023438 240.03125 Z M 263.023438 240.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.433594 240.773438 C 265.433594 240.65625 265.339844 240.5625 265.222656 240.5625 C 265.105469 240.5625 265.011719 240.65625 265.011719 240.773438 C 265.011719 240.890625 265.105469 240.984375 265.222656 240.984375 C 265.339844 240.984375 265.433594 240.890625 265.433594 240.773438 Z M 265.433594 240.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.871094 240.492188 C 265.871094 240.375 265.777344 240.28125 265.660156 240.28125 C 265.542969 240.28125 265.449219 240.375 265.449219 240.492188 C 265.449219 240.609375 265.542969 240.703125 265.660156 240.703125 C 265.777344 240.703125 265.871094 240.609375 265.871094 240.492188 Z M 265.871094 240.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.523438 236.90625 C 265.523438 236.789062 265.429688 236.695312 265.3125 236.695312 C 265.195312 236.695312 265.101562 236.789062 265.101562 236.90625 C 265.101562 237.023438 265.195312 237.117188 265.3125 237.117188 C 265.429688 237.117188 265.523438 237.023438 265.523438 236.90625 Z M 265.523438 236.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.015625 240.578125 C 264.015625 240.460938 263.921875 240.367188 263.804688 240.367188 C 263.6875 240.367188 263.59375 240.460938 263.59375 240.578125 C 263.59375 240.695312 263.6875 240.789062 263.804688 240.789062 C 263.921875 240.789062 264.015625 240.695312 264.015625 240.578125 Z M 264.015625 240.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.949219 242.574219 C 264.949219 242.457031 264.855469 242.363281 264.738281 242.363281 C 264.621094 242.363281 264.527344 242.457031 264.527344 242.574219 C 264.527344 242.691406 264.621094 242.785156 264.738281 242.785156 C 264.855469 242.785156 264.949219 242.691406 264.949219 242.574219 Z M 264.949219 242.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.964844 244.714844 C 265.964844 244.597656 265.871094 244.503906 265.753906 244.503906 C 265.636719 244.503906 265.542969 244.597656 265.542969 244.714844 C 265.542969 244.832031 265.636719 244.925781 265.753906 244.925781 C 265.871094 244.925781 265.964844 244.832031 265.964844 244.714844 Z M 265.964844 244.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.121094 242.511719 C 263.121094 242.394531 263.027344 242.300781 262.910156 242.300781 C 262.792969 242.300781 262.699219 242.394531 262.699219 242.511719 C 262.699219 242.628906 262.792969 242.722656 262.910156 242.722656 C 263.027344 242.722656 263.121094 242.628906 263.121094 242.511719 Z M 263.121094 242.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.710938 240.132812 C 260.710938 240.015625 260.617188 239.921875 260.5 239.921875 C 260.382812 239.921875 260.289062 240.015625 260.289062 240.132812 C 260.289062 240.25 260.382812 240.34375 260.5 240.34375 C 260.617188 240.34375 260.710938 240.25 260.710938 240.132812 Z M 260.710938 240.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.90625 239.605469 C 263.90625 239.488281 263.8125 239.394531 263.695312 239.394531 C 263.578125 239.394531 263.484375 239.488281 263.484375 239.605469 C 263.484375 239.722656 263.578125 239.816406 263.695312 239.816406 C 263.8125 239.816406 263.90625 239.722656 263.90625 239.605469 Z M 263.90625 239.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.367188 237.1875 C 262.367188 237.070312 262.273438 236.976562 262.15625 236.976562 C 262.039062 236.976562 261.945312 237.070312 261.945312 237.1875 C 261.945312 237.304688 262.039062 237.398438 262.15625 237.398438 C 262.273438 237.398438 262.367188 237.304688 262.367188 237.1875 Z M 262.367188 237.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.40625 238.019531 C 261.40625 237.902344 261.3125 237.808594 261.195312 237.808594 C 261.078125 237.808594 260.984375 237.902344 260.984375 238.019531 C 260.984375 238.136719 261.078125 238.230469 261.195312 238.230469 C 261.3125 238.230469 261.40625 238.136719 261.40625 238.019531 Z M 261.40625 238.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.746094 241.054688 C 257.746094 240.9375 257.652344 240.84375 257.535156 240.84375 C 257.417969 240.84375 257.324219 240.9375 257.324219 241.054688 C 257.324219 241.171875 257.417969 241.265625 257.535156 241.265625 C 257.652344 241.265625 257.746094 241.171875 257.746094 241.054688 Z M 257.746094 241.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.703125 241.597656 C 259.703125 241.480469 259.609375 241.386719 259.492188 241.386719 C 259.375 241.386719 259.28125 241.480469 259.28125 241.597656 C 259.28125 241.714844 259.375 241.808594 259.492188 241.808594 C 259.609375 241.808594 259.703125 241.714844 259.703125 241.597656 Z M 259.703125 241.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.808594 239.4375 C 255.808594 239.320312 255.714844 239.226562 255.597656 239.226562 C 255.480469 239.226562 255.386719 239.320312 255.386719 239.4375 C 255.386719 239.554688 255.480469 239.648438 255.597656 239.648438 C 255.714844 239.648438 255.808594 239.554688 255.808594 239.4375 Z M 255.808594 239.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.578125 238.496094 C 253.578125 238.378906 253.484375 238.285156 253.367188 238.285156 C 253.25 238.285156 253.15625 238.378906 253.15625 238.496094 C 253.15625 238.613281 253.25 238.707031 253.367188 238.707031 C 253.484375 238.707031 253.578125 238.613281 253.578125 238.496094 Z M 253.578125 238.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.691406 236.148438 C 251.691406 236.03125 251.597656 235.9375 251.480469 235.9375 C 251.363281 235.9375 251.269531 236.03125 251.269531 236.148438 C 251.269531 236.265625 251.363281 236.359375 251.480469 236.359375 C 251.597656 236.359375 251.691406 236.265625 251.691406 236.148438 Z M 251.691406 236.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.722656 237.824219 C 250.722656 237.707031 250.628906 237.613281 250.511719 237.613281 C 250.394531 237.613281 250.300781 237.707031 250.300781 237.824219 C 250.300781 237.941406 250.394531 238.035156 250.511719 238.035156 C 250.628906 238.035156 250.722656 237.941406 250.722656 237.824219 Z M 250.722656 237.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.902344 236.136719 C 249.902344 236.019531 249.808594 235.925781 249.691406 235.925781 C 249.574219 235.925781 249.480469 236.019531 249.480469 236.136719 C 249.480469 236.253906 249.574219 236.347656 249.691406 236.347656 C 249.808594 236.347656 249.902344 236.253906 249.902344 236.136719 Z M 249.902344 236.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.582031 234.984375 C 252.582031 234.867188 252.488281 234.773438 252.371094 234.773438 C 252.253906 234.773438 252.160156 234.867188 252.160156 234.984375 C 252.160156 235.101562 252.253906 235.195312 252.371094 235.195312 C 252.488281 235.195312 252.582031 235.101562 252.582031 234.984375 Z M 252.582031 234.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.621094 236.226562 C 254.621094 236.109375 254.527344 236.015625 254.410156 236.015625 C 254.292969 236.015625 254.199219 236.109375 254.199219 236.226562 C 254.199219 236.34375 254.292969 236.4375 254.410156 236.4375 C 254.527344 236.4375 254.621094 236.34375 254.621094 236.226562 Z M 254.621094 236.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.277344 239.050781 C 251.277344 238.933594 251.183594 238.839844 251.066406 238.839844 C 250.949219 238.839844 250.855469 238.933594 250.855469 239.050781 C 250.855469 239.167969 250.949219 239.261719 251.066406 239.261719 C 251.183594 239.261719 251.277344 239.167969 251.277344 239.050781 Z M 251.277344 239.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.257812 243.484375 C 253.257812 243.367188 253.164062 243.273438 253.046875 243.273438 C 252.929688 243.273438 252.835938 243.367188 252.835938 243.484375 C 252.835938 243.601562 252.929688 243.695312 253.046875 243.695312 C 253.164062 243.695312 253.257812 243.601562 253.257812 243.484375 Z M 253.257812 243.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.3125 246.582031 C 252.3125 246.464844 252.21875 246.371094 252.101562 246.371094 C 251.984375 246.371094 251.890625 246.464844 251.890625 246.582031 C 251.890625 246.699219 251.984375 246.792969 252.101562 246.792969 C 252.21875 246.792969 252.3125 246.699219 252.3125 246.582031 Z M 252.3125 246.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.554688 246.148438 C 252.554688 246.03125 252.460938 245.9375 252.34375 245.9375 C 252.226562 245.9375 252.132812 246.03125 252.132812 246.148438 C 252.132812 246.265625 252.226562 246.359375 252.34375 246.359375 C 252.460938 246.359375 252.554688 246.265625 252.554688 246.148438 Z M 252.554688 246.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.3125 247.222656 C 252.3125 247.105469 252.21875 247.011719 252.101562 247.011719 C 251.984375 247.011719 251.890625 247.105469 251.890625 247.222656 C 251.890625 247.339844 251.984375 247.433594 252.101562 247.433594 C 252.21875 247.433594 252.3125 247.339844 252.3125 247.222656 Z M 252.3125 247.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.109375 247.152344 C 254.109375 247.035156 254.015625 246.941406 253.898438 246.941406 C 253.78125 246.941406 253.6875 247.035156 253.6875 247.152344 C 253.6875 247.269531 253.78125 247.363281 253.898438 247.363281 C 254.015625 247.363281 254.109375 247.269531 254.109375 247.152344 Z M 254.109375 247.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.160156 248.386719 C 257.160156 248.269531 257.066406 248.175781 256.949219 248.175781 C 256.832031 248.175781 256.738281 248.269531 256.738281 248.386719 C 256.738281 248.503906 256.832031 248.597656 256.949219 248.597656 C 257.066406 248.597656 257.160156 248.503906 257.160156 248.386719 Z M 257.160156 248.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.328125 251.351562 C 256.328125 251.234375 256.234375 251.140625 256.117188 251.140625 C 256 251.140625 255.90625 251.234375 255.90625 251.351562 C 255.90625 251.46875 256 251.5625 256.117188 251.5625 C 256.234375 251.5625 256.328125 251.46875 256.328125 251.351562 Z M 256.328125 251.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.75 251.09375 C 260.75 250.976562 260.65625 250.882812 260.539062 250.882812 C 260.421875 250.882812 260.328125 250.976562 260.328125 251.09375 C 260.328125 251.210938 260.421875 251.304688 260.539062 251.304688 C 260.65625 251.304688 260.75 251.210938 260.75 251.09375 Z M 260.75 251.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.914062 252.285156 C 260.914062 252.167969 260.820312 252.074219 260.703125 252.074219 C 260.585938 252.074219 260.492188 252.167969 260.492188 252.285156 C 260.492188 252.402344 260.585938 252.496094 260.703125 252.496094 C 260.820312 252.496094 260.914062 252.402344 260.914062 252.285156 Z M 260.914062 252.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.117188 252.015625 C 258.117188 251.898438 258.023438 251.804688 257.90625 251.804688 C 257.789062 251.804688 257.695312 251.898438 257.695312 252.015625 C 257.695312 252.132812 257.789062 252.226562 257.90625 252.226562 C 258.023438 252.226562 258.117188 252.132812 258.117188 252.015625 Z M 258.117188 252.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.195312 252.46875 C 258.195312 252.351562 258.101562 252.257812 257.984375 252.257812 C 257.867188 252.257812 257.773438 252.351562 257.773438 252.46875 C 257.773438 252.585938 257.867188 252.679688 257.984375 252.679688 C 258.101562 252.679688 258.195312 252.585938 258.195312 252.46875 Z M 258.195312 252.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.425781 253.519531 C 258.425781 253.402344 258.332031 253.308594 258.214844 253.308594 C 258.097656 253.308594 258.003906 253.402344 258.003906 253.519531 C 258.003906 253.636719 258.097656 253.730469 258.214844 253.730469 C 258.332031 253.730469 258.425781 253.636719 258.425781 253.519531 Z M 258.425781 253.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.25 253.746094 C 256.25 253.628906 256.15625 253.535156 256.039062 253.535156 C 255.921875 253.535156 255.828125 253.628906 255.828125 253.746094 C 255.828125 253.863281 255.921875 253.957031 256.039062 253.957031 C 256.15625 253.957031 256.25 253.863281 256.25 253.746094 Z M 256.25 253.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.660156 255.488281 C 253.660156 255.371094 253.566406 255.277344 253.449219 255.277344 C 253.332031 255.277344 253.238281 255.371094 253.238281 255.488281 C 253.238281 255.605469 253.332031 255.699219 253.449219 255.699219 C 253.566406 255.699219 253.660156 255.605469 253.660156 255.488281 Z M 253.660156 255.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.3125 255.644531 C 257.3125 255.527344 257.21875 255.433594 257.101562 255.433594 C 256.984375 255.433594 256.890625 255.527344 256.890625 255.644531 C 256.890625 255.761719 256.984375 255.855469 257.101562 255.855469 C 257.21875 255.855469 257.3125 255.761719 257.3125 255.644531 Z M 257.3125 255.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.390625 258.960938 C 254.390625 258.84375 254.296875 258.75 254.179688 258.75 C 254.0625 258.75 253.96875 258.84375 253.96875 258.960938 C 253.96875 259.078125 254.0625 259.171875 254.179688 259.171875 C 254.296875 259.171875 254.390625 259.078125 254.390625 258.960938 Z M 254.390625 258.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.902344 258.433594 C 253.902344 258.316406 253.808594 258.222656 253.691406 258.222656 C 253.574219 258.222656 253.480469 258.316406 253.480469 258.433594 C 253.480469 258.550781 253.574219 258.644531 253.691406 258.644531 C 253.808594 258.644531 253.902344 258.550781 253.902344 258.433594 Z M 253.902344 258.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.746094 260.445312 C 253.746094 260.328125 253.652344 260.234375 253.535156 260.234375 C 253.417969 260.234375 253.324219 260.328125 253.324219 260.445312 C 253.324219 260.5625 253.417969 260.65625 253.535156 260.65625 C 253.652344 260.65625 253.746094 260.5625 253.746094 260.445312 Z M 253.746094 260.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.03125 262.578125 C 253.03125 262.460938 252.9375 262.367188 252.820312 262.367188 C 252.703125 262.367188 252.609375 262.460938 252.609375 262.578125 C 252.609375 262.695312 252.703125 262.789062 252.820312 262.789062 C 252.9375 262.789062 253.03125 262.695312 253.03125 262.578125 Z M 253.03125 262.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.371094 262.605469 C 248.371094 262.488281 248.277344 262.394531 248.160156 262.394531 C 248.042969 262.394531 247.949219 262.488281 247.949219 262.605469 C 247.949219 262.722656 248.042969 262.816406 248.160156 262.816406 C 248.277344 262.816406 248.371094 262.722656 248.371094 262.605469 Z M 248.371094 262.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.957031 264.050781 C 246.957031 263.933594 246.863281 263.839844 246.746094 263.839844 C 246.628906 263.839844 246.535156 263.933594 246.535156 264.050781 C 246.535156 264.167969 246.628906 264.261719 246.746094 264.261719 C 246.863281 264.261719 246.957031 264.167969 246.957031 264.050781 Z M 246.957031 264.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.574219 265.589844 C 245.574219 265.472656 245.480469 265.378906 245.363281 265.378906 C 245.246094 265.378906 245.152344 265.472656 245.152344 265.589844 C 245.152344 265.707031 245.246094 265.800781 245.363281 265.800781 C 245.480469 265.800781 245.574219 265.707031 245.574219 265.589844 Z M 245.574219 265.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.308594 264.136719 C 244.308594 264.019531 244.214844 263.925781 244.097656 263.925781 C 243.980469 263.925781 243.886719 264.019531 243.886719 264.136719 C 243.886719 264.253906 243.980469 264.347656 244.097656 264.347656 C 244.214844 264.347656 244.308594 264.253906 244.308594 264.136719 Z M 244.308594 264.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.226562 264.683594 C 241.226562 264.566406 241.132812 264.472656 241.015625 264.472656 C 240.898438 264.472656 240.804688 264.566406 240.804688 264.683594 C 240.804688 264.800781 240.898438 264.894531 241.015625 264.894531 C 241.132812 264.894531 241.226562 264.800781 241.226562 264.683594 Z M 241.226562 264.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.6875 265.972656 C 243.6875 265.855469 243.59375 265.761719 243.476562 265.761719 C 243.359375 265.761719 243.265625 265.855469 243.265625 265.972656 C 243.265625 266.089844 243.359375 266.183594 243.476562 266.183594 C 243.59375 266.183594 243.6875 266.089844 243.6875 265.972656 Z M 243.6875 265.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.054688 264.292969 C 246.054688 264.175781 245.960938 264.082031 245.84375 264.082031 C 245.726562 264.082031 245.632812 264.175781 245.632812 264.292969 C 245.632812 264.410156 245.726562 264.503906 245.84375 264.503906 C 245.960938 264.503906 246.054688 264.410156 246.054688 264.292969 Z M 246.054688 264.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.878906 260.917969 C 244.878906 260.800781 244.785156 260.707031 244.667969 260.707031 C 244.550781 260.707031 244.457031 260.800781 244.457031 260.917969 C 244.457031 261.035156 244.550781 261.128906 244.667969 261.128906 C 244.785156 261.128906 244.878906 261.035156 244.878906 260.917969 Z M 244.878906 260.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.933594 260.253906 C 244.933594 260.136719 244.839844 260.042969 244.722656 260.042969 C 244.605469 260.042969 244.511719 260.136719 244.511719 260.253906 C 244.511719 260.371094 244.605469 260.464844 244.722656 260.464844 C 244.839844 260.464844 244.933594 260.371094 244.933594 260.253906 Z M 244.933594 260.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.34375 258.929688 C 242.34375 258.8125 242.25 258.71875 242.132812 258.71875 C 242.015625 258.71875 241.921875 258.8125 241.921875 258.929688 C 241.921875 259.046875 242.015625 259.140625 242.132812 259.140625 C 242.25 259.140625 242.34375 259.046875 242.34375 258.929688 Z M 242.34375 258.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.253906 259.332031 C 243.253906 259.214844 243.160156 259.121094 243.042969 259.121094 C 242.925781 259.121094 242.832031 259.214844 242.832031 259.332031 C 242.832031 259.449219 242.925781 259.542969 243.042969 259.542969 C 243.160156 259.542969 243.253906 259.449219 243.253906 259.332031 Z M 243.253906 259.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.644531 260.394531 C 244.644531 260.277344 244.550781 260.183594 244.433594 260.183594 C 244.316406 260.183594 244.222656 260.277344 244.222656 260.394531 C 244.222656 260.511719 244.316406 260.605469 244.433594 260.605469 C 244.550781 260.605469 244.644531 260.511719 244.644531 260.394531 Z M 244.644531 260.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.699219 262.453125 C 245.699219 262.335938 245.605469 262.242188 245.488281 262.242188 C 245.371094 262.242188 245.277344 262.335938 245.277344 262.453125 C 245.277344 262.570312 245.371094 262.664062 245.488281 262.664062 C 245.605469 262.664062 245.699219 262.570312 245.699219 262.453125 Z M 245.699219 262.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.945312 265.21875 C 247.945312 265.101562 247.851562 265.007812 247.734375 265.007812 C 247.617188 265.007812 247.523438 265.101562 247.523438 265.21875 C 247.523438 265.335938 247.617188 265.429688 247.734375 265.429688 C 247.851562 265.429688 247.945312 265.335938 247.945312 265.21875 Z M 247.945312 265.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.652344 266.171875 C 246.652344 266.054688 246.558594 265.960938 246.441406 265.960938 C 246.324219 265.960938 246.230469 266.054688 246.230469 266.171875 C 246.230469 266.289062 246.324219 266.382812 246.441406 266.382812 C 246.558594 266.382812 246.652344 266.289062 246.652344 266.171875 Z M 246.652344 266.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.179688 264.359375 C 245.179688 264.242188 245.085938 264.148438 244.96875 264.148438 C 244.851562 264.148438 244.757812 264.242188 244.757812 264.359375 C 244.757812 264.476562 244.851562 264.570312 244.96875 264.570312 C 245.085938 264.570312 245.179688 264.476562 245.179688 264.359375 Z M 245.179688 264.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.238281 263.167969 C 242.238281 263.050781 242.144531 262.957031 242.027344 262.957031 C 241.910156 262.957031 241.816406 263.050781 241.816406 263.167969 C 241.816406 263.285156 241.910156 263.378906 242.027344 263.378906 C 242.144531 263.378906 242.238281 263.285156 242.238281 263.167969 Z M 242.238281 263.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.097656 262.675781 C 239.097656 262.558594 239.003906 262.464844 238.886719 262.464844 C 238.769531 262.464844 238.675781 262.558594 238.675781 262.675781 C 238.675781 262.792969 238.769531 262.886719 238.886719 262.886719 C 239.003906 262.886719 239.097656 262.792969 239.097656 262.675781 Z M 239.097656 262.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.839844 261.289062 C 239.839844 261.171875 239.746094 261.078125 239.628906 261.078125 C 239.511719 261.078125 239.417969 261.171875 239.417969 261.289062 C 239.417969 261.40625 239.511719 261.5 239.628906 261.5 C 239.746094 261.5 239.839844 261.40625 239.839844 261.289062 Z M 239.839844 261.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.351562 260.75 C 241.351562 260.632812 241.257812 260.539062 241.140625 260.539062 C 241.023438 260.539062 240.929688 260.632812 240.929688 260.75 C 240.929688 260.867188 241.023438 260.960938 241.140625 260.960938 C 241.257812 260.960938 241.351562 260.867188 241.351562 260.75 Z M 241.351562 260.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.308594 260.050781 C 242.308594 259.933594 242.214844 259.839844 242.097656 259.839844 C 241.980469 259.839844 241.886719 259.933594 241.886719 260.050781 C 241.886719 260.167969 241.980469 260.261719 242.097656 260.261719 C 242.214844 260.261719 242.308594 260.167969 242.308594 260.050781 Z M 242.308594 260.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.488281 259.789062 C 243.488281 259.671875 243.394531 259.578125 243.277344 259.578125 C 243.160156 259.578125 243.066406 259.671875 243.066406 259.789062 C 243.066406 259.90625 243.160156 260 243.277344 260 C 243.394531 260 243.488281 259.90625 243.488281 259.789062 Z M 243.488281 259.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.601562 260.960938 C 240.601562 260.84375 240.507812 260.75 240.390625 260.75 C 240.273438 260.75 240.179688 260.84375 240.179688 260.960938 C 240.179688 261.078125 240.273438 261.171875 240.390625 261.171875 C 240.507812 261.171875 240.601562 261.078125 240.601562 260.960938 Z M 240.601562 260.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.019531 257.574219 C 238.019531 257.457031 237.925781 257.363281 237.808594 257.363281 C 237.691406 257.363281 237.597656 257.457031 237.597656 257.574219 C 237.597656 257.691406 237.691406 257.785156 237.808594 257.785156 C 237.925781 257.785156 238.019531 257.691406 238.019531 257.574219 Z M 238.019531 257.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.925781 260.726562 C 241.925781 260.609375 241.832031 260.515625 241.714844 260.515625 C 241.597656 260.515625 241.503906 260.609375 241.503906 260.726562 C 241.503906 260.84375 241.597656 260.9375 241.714844 260.9375 C 241.832031 260.9375 241.925781 260.84375 241.925781 260.726562 Z M 241.925781 260.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.070312 261.4375 C 243.070312 261.320312 242.976562 261.226562 242.859375 261.226562 C 242.742188 261.226562 242.648438 261.320312 242.648438 261.4375 C 242.648438 261.554688 242.742188 261.648438 242.859375 261.648438 C 242.976562 261.648438 243.070312 261.554688 243.070312 261.4375 Z M 243.070312 261.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.5 263.773438 C 243.5 263.65625 243.40625 263.5625 243.289062 263.5625 C 243.171875 263.5625 243.078125 263.65625 243.078125 263.773438 C 243.078125 263.890625 243.171875 263.984375 243.289062 263.984375 C 243.40625 263.984375 243.5 263.890625 243.5 263.773438 Z M 243.5 263.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.539062 263.691406 C 245.539062 263.574219 245.445312 263.480469 245.328125 263.480469 C 245.210938 263.480469 245.117188 263.574219 245.117188 263.691406 C 245.117188 263.808594 245.210938 263.902344 245.328125 263.902344 C 245.445312 263.902344 245.539062 263.808594 245.539062 263.691406 Z M 245.539062 263.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.589844 260.636719 C 247.589844 260.519531 247.496094 260.425781 247.378906 260.425781 C 247.261719 260.425781 247.167969 260.519531 247.167969 260.636719 C 247.167969 260.753906 247.261719 260.847656 247.378906 260.847656 C 247.496094 260.847656 247.589844 260.753906 247.589844 260.636719 Z M 247.589844 260.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.792969 261.859375 C 246.792969 261.742188 246.699219 261.648438 246.582031 261.648438 C 246.464844 261.648438 246.371094 261.742188 246.371094 261.859375 C 246.371094 261.976562 246.464844 262.070312 246.582031 262.070312 C 246.699219 262.070312 246.792969 261.976562 246.792969 261.859375 Z M 246.792969 261.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.511719 263.691406 C 246.511719 263.574219 246.417969 263.480469 246.300781 263.480469 C 246.183594 263.480469 246.089844 263.574219 246.089844 263.691406 C 246.089844 263.808594 246.183594 263.902344 246.300781 263.902344 C 246.417969 263.902344 246.511719 263.808594 246.511719 263.691406 Z M 246.511719 263.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.550781 262.574219 C 244.550781 262.457031 244.457031 262.363281 244.339844 262.363281 C 244.222656 262.363281 244.128906 262.457031 244.128906 262.574219 C 244.128906 262.691406 244.222656 262.785156 244.339844 262.785156 C 244.457031 262.785156 244.550781 262.691406 244.550781 262.574219 Z M 244.550781 262.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.554688 267.5625 C 246.554688 267.445312 246.460938 267.351562 246.34375 267.351562 C 246.226562 267.351562 246.132812 267.445312 246.132812 267.5625 C 246.132812 267.679688 246.226562 267.773438 246.34375 267.773438 C 246.460938 267.773438 246.554688 267.679688 246.554688 267.5625 Z M 246.554688 267.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.730469 266.171875 C 246.730469 266.054688 246.636719 265.960938 246.519531 265.960938 C 246.402344 265.960938 246.308594 266.054688 246.308594 266.171875 C 246.308594 266.289062 246.402344 266.382812 246.519531 266.382812 C 246.636719 266.382812 246.730469 266.289062 246.730469 266.171875 Z M 246.730469 266.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.992188 265.65625 C 248.992188 265.539062 248.898438 265.445312 248.78125 265.445312 C 248.664062 265.445312 248.570312 265.539062 248.570312 265.65625 C 248.570312 265.773438 248.664062 265.867188 248.78125 265.867188 C 248.898438 265.867188 248.992188 265.773438 248.992188 265.65625 Z M 248.992188 265.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.9375 267.976562 C 250.9375 267.859375 250.84375 267.765625 250.726562 267.765625 C 250.609375 267.765625 250.515625 267.859375 250.515625 267.976562 C 250.515625 268.09375 250.609375 268.1875 250.726562 268.1875 C 250.84375 268.1875 250.9375 268.09375 250.9375 267.976562 Z M 250.9375 267.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.917969 269.277344 C 249.917969 269.160156 249.824219 269.066406 249.707031 269.066406 C 249.589844 269.066406 249.496094 269.160156 249.496094 269.277344 C 249.496094 269.394531 249.589844 269.488281 249.707031 269.488281 C 249.824219 269.488281 249.917969 269.394531 249.917969 269.277344 Z M 249.917969 269.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.148438 269.890625 C 251.148438 269.773438 251.054688 269.679688 250.9375 269.679688 C 250.820312 269.679688 250.726562 269.773438 250.726562 269.890625 C 250.726562 270.007812 250.820312 270.101562 250.9375 270.101562 C 251.054688 270.101562 251.148438 270.007812 251.148438 269.890625 Z M 251.148438 269.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.070312 267.699219 C 255.070312 267.582031 254.976562 267.488281 254.859375 267.488281 C 254.742188 267.488281 254.648438 267.582031 254.648438 267.699219 C 254.648438 267.816406 254.742188 267.910156 254.859375 267.910156 C 254.976562 267.910156 255.070312 267.816406 255.070312 267.699219 Z M 255.070312 267.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.605469 266.789062 C 255.605469 266.671875 255.511719 266.578125 255.394531 266.578125 C 255.277344 266.578125 255.183594 266.671875 255.183594 266.789062 C 255.183594 266.90625 255.277344 267 255.394531 267 C 255.511719 267 255.605469 266.90625 255.605469 266.789062 Z M 255.605469 266.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.984375 266.828125 C 259.984375 266.710938 259.890625 266.617188 259.773438 266.617188 C 259.65625 266.617188 259.5625 266.710938 259.5625 266.828125 C 259.5625 266.945312 259.65625 267.039062 259.773438 267.039062 C 259.890625 267.039062 259.984375 266.945312 259.984375 266.828125 Z M 259.984375 266.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.457031 262.792969 C 261.457031 262.675781 261.363281 262.582031 261.246094 262.582031 C 261.128906 262.582031 261.035156 262.675781 261.035156 262.792969 C 261.035156 262.910156 261.128906 263.003906 261.246094 263.003906 C 261.363281 263.003906 261.457031 262.910156 261.457031 262.792969 Z M 261.457031 262.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.976562 262.523438 C 262.976562 262.40625 262.882812 262.3125 262.765625 262.3125 C 262.648438 262.3125 262.554688 262.40625 262.554688 262.523438 C 262.554688 262.640625 262.648438 262.734375 262.765625 262.734375 C 262.882812 262.734375 262.976562 262.640625 262.976562 262.523438 Z M 262.976562 262.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.554688 261.457031 C 265.554688 261.339844 265.460938 261.246094 265.34375 261.246094 C 265.226562 261.246094 265.132812 261.339844 265.132812 261.457031 C 265.132812 261.574219 265.226562 261.667969 265.34375 261.667969 C 265.460938 261.667969 265.554688 261.574219 265.554688 261.457031 Z M 265.554688 261.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.097656 263.421875 C 265.097656 263.304688 265.003906 263.210938 264.886719 263.210938 C 264.769531 263.210938 264.675781 263.304688 264.675781 263.421875 C 264.675781 263.539062 264.769531 263.632812 264.886719 263.632812 C 265.003906 263.632812 265.097656 263.539062 265.097656 263.421875 Z M 265.097656 263.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.027344 262.085938 C 263.027344 261.96875 262.933594 261.875 262.816406 261.875 C 262.699219 261.875 262.605469 261.96875 262.605469 262.085938 C 262.605469 262.203125 262.699219 262.296875 262.816406 262.296875 C 262.933594 262.296875 263.027344 262.203125 263.027344 262.085938 Z M 263.027344 262.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.125 261.027344 C 266.125 260.910156 266.03125 260.816406 265.914062 260.816406 C 265.796875 260.816406 265.703125 260.910156 265.703125 261.027344 C 265.703125 261.144531 265.796875 261.238281 265.914062 261.238281 C 266.03125 261.238281 266.125 261.144531 266.125 261.027344 Z M 266.125 261.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.292969 257.320312 C 267.292969 257.203125 267.199219 257.109375 267.082031 257.109375 C 266.964844 257.109375 266.871094 257.203125 266.871094 257.320312 C 266.871094 257.4375 266.964844 257.53125 267.082031 257.53125 C 267.199219 257.53125 267.292969 257.4375 267.292969 257.320312 Z M 267.292969 257.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.878906 254.277344 C 265.878906 254.160156 265.785156 254.066406 265.667969 254.066406 C 265.550781 254.066406 265.457031 254.160156 265.457031 254.277344 C 265.457031 254.394531 265.550781 254.488281 265.667969 254.488281 C 265.785156 254.488281 265.878906 254.394531 265.878906 254.277344 Z M 265.878906 254.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.875 256.433594 C 259.875 256.316406 259.78125 256.222656 259.664062 256.222656 C 259.546875 256.222656 259.453125 256.316406 259.453125 256.433594 C 259.453125 256.550781 259.546875 256.644531 259.664062 256.644531 C 259.78125 256.644531 259.875 256.550781 259.875 256.433594 Z M 259.875 256.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.96875 260.742188 C 258.96875 260.625 258.875 260.53125 258.757812 260.53125 C 258.640625 260.53125 258.546875 260.625 258.546875 260.742188 C 258.546875 260.859375 258.640625 260.953125 258.757812 260.953125 C 258.875 260.953125 258.96875 260.859375 258.96875 260.742188 Z M 258.96875 260.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.617188 262.660156 C 257.617188 262.542969 257.523438 262.449219 257.40625 262.449219 C 257.289062 262.449219 257.195312 262.542969 257.195312 262.660156 C 257.195312 262.777344 257.289062 262.871094 257.40625 262.871094 C 257.523438 262.871094 257.617188 262.777344 257.617188 262.660156 Z M 257.617188 262.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.828125 264.75 C 257.828125 264.632812 257.734375 264.539062 257.617188 264.539062 C 257.5 264.539062 257.40625 264.632812 257.40625 264.75 C 257.40625 264.867188 257.5 264.960938 257.617188 264.960938 C 257.734375 264.960938 257.828125 264.867188 257.828125 264.75 Z M 257.828125 264.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.644531 265.203125 C 262.644531 265.085938 262.550781 264.992188 262.433594 264.992188 C 262.316406 264.992188 262.222656 265.085938 262.222656 265.203125 C 262.222656 265.320312 262.316406 265.414062 262.433594 265.414062 C 262.550781 265.414062 262.644531 265.320312 262.644531 265.203125 Z M 262.644531 265.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.605469 264.089844 C 260.605469 263.972656 260.511719 263.878906 260.394531 263.878906 C 260.277344 263.878906 260.183594 263.972656 260.183594 264.089844 C 260.183594 264.207031 260.277344 264.300781 260.394531 264.300781 C 260.511719 264.300781 260.605469 264.207031 260.605469 264.089844 Z M 260.605469 264.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.222656 267.46875 C 258.222656 267.351562 258.128906 267.257812 258.011719 267.257812 C 257.894531 267.257812 257.800781 267.351562 257.800781 267.46875 C 257.800781 267.585938 257.894531 267.679688 258.011719 267.679688 C 258.128906 267.679688 258.222656 267.585938 258.222656 267.46875 Z M 258.222656 267.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.851562 266.3125 C 258.851562 266.195312 258.757812 266.101562 258.640625 266.101562 C 258.523438 266.101562 258.429688 266.195312 258.429688 266.3125 C 258.429688 266.429688 258.523438 266.523438 258.640625 266.523438 C 258.757812 266.523438 258.851562 266.429688 258.851562 266.3125 Z M 258.851562 266.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.910156 268.457031 C 258.910156 268.339844 258.816406 268.246094 258.699219 268.246094 C 258.582031 268.246094 258.488281 268.339844 258.488281 268.457031 C 258.488281 268.574219 258.582031 268.667969 258.699219 268.667969 C 258.816406 268.667969 258.910156 268.574219 258.910156 268.457031 Z M 258.910156 268.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.328125 269.542969 C 261.328125 269.425781 261.234375 269.332031 261.117188 269.332031 C 261 269.332031 260.90625 269.425781 260.90625 269.542969 C 260.90625 269.660156 261 269.753906 261.117188 269.753906 C 261.234375 269.753906 261.328125 269.660156 261.328125 269.542969 Z M 261.328125 269.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.828125 269.6875 C 263.828125 269.570312 263.734375 269.476562 263.617188 269.476562 C 263.5 269.476562 263.40625 269.570312 263.40625 269.6875 C 263.40625 269.804688 263.5 269.898438 263.617188 269.898438 C 263.734375 269.898438 263.828125 269.804688 263.828125 269.6875 Z M 263.828125 269.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.449219 268.617188 C 266.449219 268.5 266.355469 268.40625 266.238281 268.40625 C 266.121094 268.40625 266.027344 268.5 266.027344 268.617188 C 266.027344 268.734375 266.121094 268.828125 266.238281 268.828125 C 266.355469 268.828125 266.449219 268.734375 266.449219 268.617188 Z M 266.449219 268.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.335938 268.691406 C 264.335938 268.574219 264.242188 268.480469 264.125 268.480469 C 264.007812 268.480469 263.914062 268.574219 263.914062 268.691406 C 263.914062 268.808594 264.007812 268.902344 264.125 268.902344 C 264.242188 268.902344 264.335938 268.808594 264.335938 268.691406 Z M 264.335938 268.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.535156 267.082031 C 266.535156 266.964844 266.441406 266.871094 266.324219 266.871094 C 266.207031 266.871094 266.113281 266.964844 266.113281 267.082031 C 266.113281 267.199219 266.207031 267.292969 266.324219 267.292969 C 266.441406 267.292969 266.535156 267.199219 266.535156 267.082031 Z M 266.535156 267.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.308594 267.792969 C 262.308594 267.675781 262.214844 267.582031 262.097656 267.582031 C 261.980469 267.582031 261.886719 267.675781 261.886719 267.792969 C 261.886719 267.910156 261.980469 268.003906 262.097656 268.003906 C 262.214844 268.003906 262.308594 267.910156 262.308594 267.792969 Z M 262.308594 267.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.734375 266.433594 C 260.734375 266.316406 260.640625 266.222656 260.523438 266.222656 C 260.40625 266.222656 260.3125 266.316406 260.3125 266.433594 C 260.3125 266.550781 260.40625 266.644531 260.523438 266.644531 C 260.640625 266.644531 260.734375 266.550781 260.734375 266.433594 Z M 260.734375 266.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.738281 266.585938 C 258.738281 266.46875 258.644531 266.375 258.527344 266.375 C 258.410156 266.375 258.316406 266.46875 258.316406 266.585938 C 258.316406 266.703125 258.410156 266.796875 258.527344 266.796875 C 258.644531 266.796875 258.738281 266.703125 258.738281 266.585938 Z M 258.738281 266.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.761719 269.820312 C 255.761719 269.703125 255.667969 269.609375 255.550781 269.609375 C 255.433594 269.609375 255.339844 269.703125 255.339844 269.820312 C 255.339844 269.9375 255.433594 270.03125 255.550781 270.03125 C 255.667969 270.03125 255.761719 269.9375 255.761719 269.820312 Z M 255.761719 269.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.605469 270.851562 C 255.605469 270.734375 255.511719 270.640625 255.394531 270.640625 C 255.277344 270.640625 255.183594 270.734375 255.183594 270.851562 C 255.183594 270.96875 255.277344 271.0625 255.394531 271.0625 C 255.511719 271.0625 255.605469 270.96875 255.605469 270.851562 Z M 255.605469 270.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.265625 268.699219 C 257.265625 268.582031 257.171875 268.488281 257.054688 268.488281 C 256.9375 268.488281 256.84375 268.582031 256.84375 268.699219 C 256.84375 268.816406 256.9375 268.910156 257.054688 268.910156 C 257.171875 268.910156 257.265625 268.816406 257.265625 268.699219 Z M 257.265625 268.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.148438 270.730469 C 259.148438 270.613281 259.054688 270.519531 258.9375 270.519531 C 258.820312 270.519531 258.726562 270.613281 258.726562 270.730469 C 258.726562 270.847656 258.820312 270.941406 258.9375 270.941406 C 259.054688 270.941406 259.148438 270.847656 259.148438 270.730469 Z M 259.148438 270.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.976562 272.289062 C 254.976562 272.171875 254.882812 272.078125 254.765625 272.078125 C 254.648438 272.078125 254.554688 272.171875 254.554688 272.289062 C 254.554688 272.40625 254.648438 272.5 254.765625 272.5 C 254.882812 272.5 254.976562 272.40625 254.976562 272.289062 Z M 254.976562 272.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.34375 272.089844 C 256.34375 271.972656 256.25 271.878906 256.132812 271.878906 C 256.015625 271.878906 255.921875 271.972656 255.921875 272.089844 C 255.921875 272.207031 256.015625 272.300781 256.132812 272.300781 C 256.25 272.300781 256.34375 272.207031 256.34375 272.089844 Z M 256.34375 272.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.550781 270.375 C 253.550781 270.257812 253.457031 270.164062 253.339844 270.164062 C 253.222656 270.164062 253.128906 270.257812 253.128906 270.375 C 253.128906 270.492188 253.222656 270.585938 253.339844 270.585938 C 253.457031 270.585938 253.550781 270.492188 253.550781 270.375 Z M 253.550781 270.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.667969 272.332031 C 252.667969 272.214844 252.574219 272.121094 252.457031 272.121094 C 252.339844 272.121094 252.246094 272.214844 252.246094 272.332031 C 252.246094 272.449219 252.339844 272.542969 252.457031 272.542969 C 252.574219 272.542969 252.667969 272.449219 252.667969 272.332031 Z M 252.667969 272.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.25 269.066406 C 253.25 268.949219 253.15625 268.855469 253.039062 268.855469 C 252.921875 268.855469 252.828125 268.949219 252.828125 269.066406 C 252.828125 269.183594 252.921875 269.277344 253.039062 269.277344 C 253.15625 269.277344 253.25 269.183594 253.25 269.066406 Z M 253.25 269.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.949219 266.929688 C 254.949219 266.8125 254.855469 266.71875 254.738281 266.71875 C 254.621094 266.71875 254.527344 266.8125 254.527344 266.929688 C 254.527344 267.046875 254.621094 267.140625 254.738281 267.140625 C 254.855469 267.140625 254.949219 267.046875 254.949219 266.929688 Z M 254.949219 266.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.613281 268.492188 C 257.613281 268.375 257.519531 268.28125 257.402344 268.28125 C 257.285156 268.28125 257.191406 268.375 257.191406 268.492188 C 257.191406 268.609375 257.285156 268.703125 257.402344 268.703125 C 257.519531 268.703125 257.613281 268.609375 257.613281 268.492188 Z M 257.613281 268.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.554688 264.210938 C 258.554688 264.09375 258.460938 264 258.34375 264 C 258.226562 264 258.132812 264.09375 258.132812 264.210938 C 258.132812 264.328125 258.226562 264.421875 258.34375 264.421875 C 258.460938 264.421875 258.554688 264.328125 258.554688 264.210938 Z M 258.554688 264.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.1875 261.421875 C 259.1875 261.304688 259.09375 261.210938 258.976562 261.210938 C 258.859375 261.210938 258.765625 261.304688 258.765625 261.421875 C 258.765625 261.539062 258.859375 261.632812 258.976562 261.632812 C 259.09375 261.632812 259.1875 261.539062 259.1875 261.421875 Z M 259.1875 261.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.933594 258.5 C 260.933594 258.382812 260.839844 258.289062 260.722656 258.289062 C 260.605469 258.289062 260.511719 258.382812 260.511719 258.5 C 260.511719 258.617188 260.605469 258.710938 260.722656 258.710938 C 260.839844 258.710938 260.933594 258.617188 260.933594 258.5 Z M 260.933594 258.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.371094 257.800781 C 264.371094 257.683594 264.277344 257.589844 264.160156 257.589844 C 264.042969 257.589844 263.949219 257.683594 263.949219 257.800781 C 263.949219 257.917969 264.042969 258.011719 264.160156 258.011719 C 264.277344 258.011719 264.371094 257.917969 264.371094 257.800781 Z M 264.371094 257.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.039062 259.863281 C 265.039062 259.746094 264.945312 259.652344 264.828125 259.652344 C 264.710938 259.652344 264.617188 259.746094 264.617188 259.863281 C 264.617188 259.980469 264.710938 260.074219 264.828125 260.074219 C 264.945312 260.074219 265.039062 259.980469 265.039062 259.863281 Z M 265.039062 259.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.058594 257.488281 C 265.058594 257.371094 264.964844 257.277344 264.847656 257.277344 C 264.730469 257.277344 264.636719 257.371094 264.636719 257.488281 C 264.636719 257.605469 264.730469 257.699219 264.847656 257.699219 C 264.964844 257.699219 265.058594 257.605469 265.058594 257.488281 Z M 265.058594 257.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.453125 256.746094 C 265.453125 256.628906 265.359375 256.535156 265.242188 256.535156 C 265.125 256.535156 265.03125 256.628906 265.03125 256.746094 C 265.03125 256.863281 265.125 256.957031 265.242188 256.957031 C 265.359375 256.957031 265.453125 256.863281 265.453125 256.746094 Z M 265.453125 256.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.96875 257.375 C 263.96875 257.257812 263.875 257.164062 263.757812 257.164062 C 263.640625 257.164062 263.546875 257.257812 263.546875 257.375 C 263.546875 257.492188 263.640625 257.585938 263.757812 257.585938 C 263.875 257.585938 263.96875 257.492188 263.96875 257.375 Z M 263.96875 257.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.835938 256.050781 C 267.835938 255.933594 267.742188 255.839844 267.625 255.839844 C 267.507812 255.839844 267.414062 255.933594 267.414062 256.050781 C 267.414062 256.167969 267.507812 256.261719 267.625 256.261719 C 267.742188 256.261719 267.835938 256.167969 267.835938 256.050781 Z M 267.835938 256.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.097656 252.660156 C 271.097656 252.542969 271.003906 252.449219 270.886719 252.449219 C 270.769531 252.449219 270.675781 252.542969 270.675781 252.660156 C 270.675781 252.777344 270.769531 252.871094 270.886719 252.871094 C 271.003906 252.871094 271.097656 252.777344 271.097656 252.660156 Z M 271.097656 252.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.375 252.199219 C 272.375 252.082031 272.28125 251.988281 272.164062 251.988281 C 272.046875 251.988281 271.953125 252.082031 271.953125 252.199219 C 271.953125 252.316406 272.046875 252.410156 272.164062 252.410156 C 272.28125 252.410156 272.375 252.316406 272.375 252.199219 Z M 272.375 252.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.515625 251.59375 C 271.515625 251.476562 271.421875 251.382812 271.304688 251.382812 C 271.1875 251.382812 271.09375 251.476562 271.09375 251.59375 C 271.09375 251.710938 271.1875 251.804688 271.304688 251.804688 C 271.421875 251.804688 271.515625 251.710938 271.515625 251.59375 Z M 271.515625 251.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.609375 249.851562 C 274.609375 249.734375 274.515625 249.640625 274.398438 249.640625 C 274.28125 249.640625 274.1875 249.734375 274.1875 249.851562 C 274.1875 249.96875 274.28125 250.0625 274.398438 250.0625 C 274.515625 250.0625 274.609375 249.96875 274.609375 249.851562 Z M 274.609375 249.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.1875 251.105469 C 274.1875 250.988281 274.09375 250.894531 273.976562 250.894531 C 273.859375 250.894531 273.765625 250.988281 273.765625 251.105469 C 273.765625 251.222656 273.859375 251.316406 273.976562 251.316406 C 274.09375 251.316406 274.1875 251.222656 274.1875 251.105469 Z M 274.1875 251.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.417969 248.90625 C 276.417969 248.789062 276.324219 248.695312 276.207031 248.695312 C 276.089844 248.695312 275.996094 248.789062 275.996094 248.90625 C 275.996094 249.023438 276.089844 249.117188 276.207031 249.117188 C 276.324219 249.117188 276.417969 249.023438 276.417969 248.90625 Z M 276.417969 248.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.238281 250.921875 C 273.238281 250.804688 273.144531 250.710938 273.027344 250.710938 C 272.910156 250.710938 272.816406 250.804688 272.816406 250.921875 C 272.816406 251.039062 272.910156 251.132812 273.027344 251.132812 C 273.144531 251.132812 273.238281 251.039062 273.238281 250.921875 Z M 273.238281 250.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.84375 248.261719 C 273.84375 248.144531 273.75 248.050781 273.632812 248.050781 C 273.515625 248.050781 273.421875 248.144531 273.421875 248.261719 C 273.421875 248.378906 273.515625 248.472656 273.632812 248.472656 C 273.75 248.472656 273.84375 248.378906 273.84375 248.261719 Z M 273.84375 248.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.277344 244.480469 C 272.277344 244.363281 272.183594 244.269531 272.066406 244.269531 C 271.949219 244.269531 271.855469 244.363281 271.855469 244.480469 C 271.855469 244.597656 271.949219 244.691406 272.066406 244.691406 C 272.183594 244.691406 272.277344 244.597656 272.277344 244.480469 Z M 272.277344 244.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.324219 242.433594 C 272.324219 242.316406 272.230469 242.222656 272.113281 242.222656 C 271.996094 242.222656 271.902344 242.316406 271.902344 242.433594 C 271.902344 242.550781 271.996094 242.644531 272.113281 242.644531 C 272.230469 242.644531 272.324219 242.550781 272.324219 242.433594 Z M 272.324219 242.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.699219 242.886719 C 272.699219 242.769531 272.605469 242.675781 272.488281 242.675781 C 272.371094 242.675781 272.277344 242.769531 272.277344 242.886719 C 272.277344 243.003906 272.371094 243.097656 272.488281 243.097656 C 272.605469 243.097656 272.699219 243.003906 272.699219 242.886719 Z M 272.699219 242.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.207031 241.957031 C 269.207031 241.839844 269.113281 241.746094 268.996094 241.746094 C 268.878906 241.746094 268.785156 241.839844 268.785156 241.957031 C 268.785156 242.074219 268.878906 242.167969 268.996094 242.167969 C 269.113281 242.167969 269.207031 242.074219 269.207031 241.957031 Z M 269.207031 241.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.28125 243.59375 C 273.28125 243.476562 273.1875 243.382812 273.070312 243.382812 C 272.953125 243.382812 272.859375 243.476562 272.859375 243.59375 C 272.859375 243.710938 272.953125 243.804688 273.070312 243.804688 C 273.1875 243.804688 273.28125 243.710938 273.28125 243.59375 Z M 273.28125 243.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.570312 245.742188 C 270.570312 245.625 270.476562 245.53125 270.359375 245.53125 C 270.242188 245.53125 270.148438 245.625 270.148438 245.742188 C 270.148438 245.859375 270.242188 245.953125 270.359375 245.953125 C 270.476562 245.953125 270.570312 245.859375 270.570312 245.742188 Z M 270.570312 245.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.226562 248.222656 C 270.226562 248.105469 270.132812 248.011719 270.015625 248.011719 C 269.898438 248.011719 269.804688 248.105469 269.804688 248.222656 C 269.804688 248.339844 269.898438 248.433594 270.015625 248.433594 C 270.132812 248.433594 270.226562 248.339844 270.226562 248.222656 Z M 270.226562 248.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.984375 250.496094 C 270.984375 250.378906 270.890625 250.285156 270.773438 250.285156 C 270.65625 250.285156 270.5625 250.378906 270.5625 250.496094 C 270.5625 250.613281 270.65625 250.707031 270.773438 250.707031 C 270.890625 250.707031 270.984375 250.613281 270.984375 250.496094 Z M 270.984375 250.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.519531 249.066406 C 272.519531 248.949219 272.425781 248.855469 272.308594 248.855469 C 272.191406 248.855469 272.097656 248.949219 272.097656 249.066406 C 272.097656 249.183594 272.191406 249.277344 272.308594 249.277344 C 272.425781 249.277344 272.519531 249.183594 272.519531 249.066406 Z M 272.519531 249.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.554688 248.050781 C 273.554688 247.933594 273.460938 247.839844 273.34375 247.839844 C 273.226562 247.839844 273.132812 247.933594 273.132812 248.050781 C 273.132812 248.167969 273.226562 248.261719 273.34375 248.261719 C 273.460938 248.261719 273.554688 248.167969 273.554688 248.050781 Z M 273.554688 248.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.453125 249.449219 C 276.453125 249.332031 276.359375 249.238281 276.242188 249.238281 C 276.125 249.238281 276.03125 249.332031 276.03125 249.449219 C 276.03125 249.566406 276.125 249.660156 276.242188 249.660156 C 276.359375 249.660156 276.453125 249.566406 276.453125 249.449219 Z M 276.453125 249.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.765625 245.929688 C 279.765625 245.8125 279.671875 245.71875 279.554688 245.71875 C 279.4375 245.71875 279.34375 245.8125 279.34375 245.929688 C 279.34375 246.046875 279.4375 246.140625 279.554688 246.140625 C 279.671875 246.140625 279.765625 246.046875 279.765625 245.929688 Z M 279.765625 245.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.359375 247.609375 C 279.359375 247.492188 279.265625 247.398438 279.148438 247.398438 C 279.03125 247.398438 278.9375 247.492188 278.9375 247.609375 C 278.9375 247.726562 279.03125 247.820312 279.148438 247.820312 C 279.265625 247.820312 279.359375 247.726562 279.359375 247.609375 Z M 279.359375 247.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.964844 247.480469 C 282.964844 247.363281 282.871094 247.269531 282.753906 247.269531 C 282.636719 247.269531 282.542969 247.363281 282.542969 247.480469 C 282.542969 247.597656 282.636719 247.691406 282.753906 247.691406 C 282.871094 247.691406 282.964844 247.597656 282.964844 247.480469 Z M 282.964844 247.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.949219 245.96875 C 281.949219 245.851562 281.855469 245.757812 281.738281 245.757812 C 281.621094 245.757812 281.527344 245.851562 281.527344 245.96875 C 281.527344 246.085938 281.621094 246.179688 281.738281 246.179688 C 281.855469 246.179688 281.949219 246.085938 281.949219 245.96875 Z M 281.949219 245.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.914062 244.734375 C 279.914062 244.617188 279.820312 244.523438 279.703125 244.523438 C 279.585938 244.523438 279.492188 244.617188 279.492188 244.734375 C 279.492188 244.851562 279.585938 244.945312 279.703125 244.945312 C 279.820312 244.945312 279.914062 244.851562 279.914062 244.734375 Z M 279.914062 244.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.929688 242.070312 C 278.929688 241.953125 278.835938 241.859375 278.71875 241.859375 C 278.601562 241.859375 278.507812 241.953125 278.507812 242.070312 C 278.507812 242.1875 278.601562 242.28125 278.71875 242.28125 C 278.835938 242.28125 278.929688 242.1875 278.929688 242.070312 Z M 278.929688 242.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.1875 247.054688 C 278.1875 246.9375 278.09375 246.84375 277.976562 246.84375 C 277.859375 246.84375 277.765625 246.9375 277.765625 247.054688 C 277.765625 247.171875 277.859375 247.265625 277.976562 247.265625 C 278.09375 247.265625 278.1875 247.171875 278.1875 247.054688 Z M 278.1875 247.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.125 245.867188 C 280.125 245.75 280.03125 245.65625 279.914062 245.65625 C 279.796875 245.65625 279.703125 245.75 279.703125 245.867188 C 279.703125 245.984375 279.796875 246.078125 279.914062 246.078125 C 280.03125 246.078125 280.125 245.984375 280.125 245.867188 Z M 280.125 245.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.742188 245.777344 C 279.742188 245.660156 279.648438 245.566406 279.53125 245.566406 C 279.414062 245.566406 279.320312 245.660156 279.320312 245.777344 C 279.320312 245.894531 279.414062 245.988281 279.53125 245.988281 C 279.648438 245.988281 279.742188 245.894531 279.742188 245.777344 Z M 279.742188 245.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.324219 242.355469 C 279.324219 242.238281 279.230469 242.144531 279.113281 242.144531 C 278.996094 242.144531 278.902344 242.238281 278.902344 242.355469 C 278.902344 242.472656 278.996094 242.566406 279.113281 242.566406 C 279.230469 242.566406 279.324219 242.472656 279.324219 242.355469 Z M 279.324219 242.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.351562 237.386719 C 279.351562 237.269531 279.257812 237.175781 279.140625 237.175781 C 279.023438 237.175781 278.929688 237.269531 278.929688 237.386719 C 278.929688 237.503906 279.023438 237.597656 279.140625 237.597656 C 279.257812 237.597656 279.351562 237.503906 279.351562 237.386719 Z M 279.351562 237.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.652344 239.734375 C 280.652344 239.617188 280.558594 239.523438 280.441406 239.523438 C 280.324219 239.523438 280.230469 239.617188 280.230469 239.734375 C 280.230469 239.851562 280.324219 239.945312 280.441406 239.945312 C 280.558594 239.945312 280.652344 239.851562 280.652344 239.734375 Z M 280.652344 239.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.277344 243.339844 C 282.277344 243.222656 282.183594 243.128906 282.066406 243.128906 C 281.949219 243.128906 281.855469 243.222656 281.855469 243.339844 C 281.855469 243.457031 281.949219 243.550781 282.066406 243.550781 C 282.183594 243.550781 282.277344 243.457031 282.277344 243.339844 Z M 282.277344 243.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.164062 243.546875 C 283.164062 243.429688 283.070312 243.335938 282.953125 243.335938 C 282.835938 243.335938 282.742188 243.429688 282.742188 243.546875 C 282.742188 243.664062 282.835938 243.757812 282.953125 243.757812 C 283.070312 243.757812 283.164062 243.664062 283.164062 243.546875 Z M 283.164062 243.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.691406 243.609375 C 284.691406 243.492188 284.597656 243.398438 284.480469 243.398438 C 284.363281 243.398438 284.269531 243.492188 284.269531 243.609375 C 284.269531 243.726562 284.363281 243.820312 284.480469 243.820312 C 284.597656 243.820312 284.691406 243.726562 284.691406 243.609375 Z M 284.691406 243.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.96875 246.144531 C 283.96875 246.027344 283.875 245.933594 283.757812 245.933594 C 283.640625 245.933594 283.546875 246.027344 283.546875 246.144531 C 283.546875 246.261719 283.640625 246.355469 283.757812 246.355469 C 283.875 246.355469 283.96875 246.261719 283.96875 246.144531 Z M 283.96875 246.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.101562 246.390625 C 283.101562 246.273438 283.007812 246.179688 282.890625 246.179688 C 282.773438 246.179688 282.679688 246.273438 282.679688 246.390625 C 282.679688 246.507812 282.773438 246.601562 282.890625 246.601562 C 283.007812 246.601562 283.101562 246.507812 283.101562 246.390625 Z M 283.101562 246.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.269531 246.1875 C 282.269531 246.070312 282.175781 245.976562 282.058594 245.976562 C 281.941406 245.976562 281.847656 246.070312 281.847656 246.1875 C 281.847656 246.304688 281.941406 246.398438 282.058594 246.398438 C 282.175781 246.398438 282.269531 246.304688 282.269531 246.1875 Z M 282.269531 246.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.613281 246.652344 C 282.613281 246.535156 282.519531 246.441406 282.402344 246.441406 C 282.285156 246.441406 282.191406 246.535156 282.191406 246.652344 C 282.191406 246.769531 282.285156 246.863281 282.402344 246.863281 C 282.519531 246.863281 282.613281 246.769531 282.613281 246.652344 Z M 282.613281 246.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.1875 245.203125 C 282.1875 245.085938 282.09375 244.992188 281.976562 244.992188 C 281.859375 244.992188 281.765625 245.085938 281.765625 245.203125 C 281.765625 245.320312 281.859375 245.414062 281.976562 245.414062 C 282.09375 245.414062 282.1875 245.320312 282.1875 245.203125 Z M 282.1875 245.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.679688 245.65625 C 283.679688 245.539062 283.585938 245.445312 283.46875 245.445312 C 283.351562 245.445312 283.257812 245.539062 283.257812 245.65625 C 283.257812 245.773438 283.351562 245.867188 283.46875 245.867188 C 283.585938 245.867188 283.679688 245.773438 283.679688 245.65625 Z M 283.679688 245.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.371094 244.199219 C 284.371094 244.082031 284.277344 243.988281 284.160156 243.988281 C 284.042969 243.988281 283.949219 244.082031 283.949219 244.199219 C 283.949219 244.316406 284.042969 244.410156 284.160156 244.410156 C 284.277344 244.410156 284.371094 244.316406 284.371094 244.199219 Z M 284.371094 244.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.808594 248.875 C 280.808594 248.757812 280.714844 248.664062 280.597656 248.664062 C 280.480469 248.664062 280.386719 248.757812 280.386719 248.875 C 280.386719 248.992188 280.480469 249.085938 280.597656 249.085938 C 280.714844 249.085938 280.808594 248.992188 280.808594 248.875 Z M 280.808594 248.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.523438 244.191406 C 282.523438 244.074219 282.429688 243.980469 282.3125 243.980469 C 282.195312 243.980469 282.101562 244.074219 282.101562 244.191406 C 282.101562 244.308594 282.195312 244.402344 282.3125 244.402344 C 282.429688 244.402344 282.523438 244.308594 282.523438 244.191406 Z M 282.523438 244.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.460938 243.234375 C 283.460938 243.117188 283.367188 243.023438 283.25 243.023438 C 283.132812 243.023438 283.039062 243.117188 283.039062 243.234375 C 283.039062 243.351562 283.132812 243.445312 283.25 243.445312 C 283.367188 243.445312 283.460938 243.351562 283.460938 243.234375 Z M 283.460938 243.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.640625 244.84375 C 279.640625 244.726562 279.546875 244.632812 279.429688 244.632812 C 279.3125 244.632812 279.21875 244.726562 279.21875 244.84375 C 279.21875 244.960938 279.3125 245.054688 279.429688 245.054688 C 279.546875 245.054688 279.640625 244.960938 279.640625 244.84375 Z M 279.640625 244.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.070312 242.207031 C 279.070312 242.089844 278.976562 241.996094 278.859375 241.996094 C 278.742188 241.996094 278.648438 242.089844 278.648438 242.207031 C 278.648438 242.324219 278.742188 242.417969 278.859375 242.417969 C 278.976562 242.417969 279.070312 242.324219 279.070312 242.207031 Z M 279.070312 242.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.457031 239.828125 C 278.457031 239.710938 278.363281 239.617188 278.246094 239.617188 C 278.128906 239.617188 278.035156 239.710938 278.035156 239.828125 C 278.035156 239.945312 278.128906 240.039062 278.246094 240.039062 C 278.363281 240.039062 278.457031 239.945312 278.457031 239.828125 Z M 278.457031 239.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.949219 242.308594 C 278.949219 242.191406 278.855469 242.097656 278.738281 242.097656 C 278.621094 242.097656 278.527344 242.191406 278.527344 242.308594 C 278.527344 242.425781 278.621094 242.519531 278.738281 242.519531 C 278.855469 242.519531 278.949219 242.425781 278.949219 242.308594 Z M 278.949219 242.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.40625 246.492188 C 272.40625 246.375 272.3125 246.28125 272.195312 246.28125 C 272.078125 246.28125 271.984375 246.375 271.984375 246.492188 C 271.984375 246.609375 272.078125 246.703125 272.195312 246.703125 C 272.3125 246.703125 272.40625 246.609375 272.40625 246.492188 Z M 272.40625 246.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.085938 246.589844 C 272.085938 246.472656 271.992188 246.378906 271.875 246.378906 C 271.757812 246.378906 271.664062 246.472656 271.664062 246.589844 C 271.664062 246.707031 271.757812 246.800781 271.875 246.800781 C 271.992188 246.800781 272.085938 246.707031 272.085938 246.589844 Z M 272.085938 246.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.925781 249.082031 C 271.925781 248.964844 271.832031 248.871094 271.714844 248.871094 C 271.597656 248.871094 271.503906 248.964844 271.503906 249.082031 C 271.503906 249.199219 271.597656 249.292969 271.714844 249.292969 C 271.832031 249.292969 271.925781 249.199219 271.925781 249.082031 Z M 271.925781 249.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.144531 246.714844 C 271.144531 246.597656 271.050781 246.503906 270.933594 246.503906 C 270.816406 246.503906 270.722656 246.597656 270.722656 246.714844 C 270.722656 246.832031 270.816406 246.925781 270.933594 246.925781 C 271.050781 246.925781 271.144531 246.832031 271.144531 246.714844 Z M 271.144531 246.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.878906 245.390625 C 271.878906 245.273438 271.785156 245.179688 271.667969 245.179688 C 271.550781 245.179688 271.457031 245.273438 271.457031 245.390625 C 271.457031 245.507812 271.550781 245.601562 271.667969 245.601562 C 271.785156 245.601562 271.878906 245.507812 271.878906 245.390625 Z M 271.878906 245.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.003906 246.066406 C 274.003906 245.949219 273.910156 245.855469 273.792969 245.855469 C 273.675781 245.855469 273.582031 245.949219 273.582031 246.066406 C 273.582031 246.183594 273.675781 246.277344 273.792969 246.277344 C 273.910156 246.277344 274.003906 246.183594 274.003906 246.066406 Z M 274.003906 246.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.445312 244.6875 C 272.445312 244.570312 272.351562 244.476562 272.234375 244.476562 C 272.117188 244.476562 272.023438 244.570312 272.023438 244.6875 C 272.023438 244.804688 272.117188 244.898438 272.234375 244.898438 C 272.351562 244.898438 272.445312 244.804688 272.445312 244.6875 Z M 272.445312 244.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.398438 243.972656 C 272.398438 243.855469 272.304688 243.761719 272.1875 243.761719 C 272.070312 243.761719 271.976562 243.855469 271.976562 243.972656 C 271.976562 244.089844 272.070312 244.183594 272.1875 244.183594 C 272.304688 244.183594 272.398438 244.089844 272.398438 243.972656 Z M 272.398438 243.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.832031 242.449219 C 268.832031 242.332031 268.738281 242.238281 268.621094 242.238281 C 268.503906 242.238281 268.410156 242.332031 268.410156 242.449219 C 268.410156 242.566406 268.503906 242.660156 268.621094 242.660156 C 268.738281 242.660156 268.832031 242.566406 268.832031 242.449219 Z M 268.832031 242.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.796875 240.402344 C 268.796875 240.285156 268.703125 240.191406 268.585938 240.191406 C 268.46875 240.191406 268.375 240.285156 268.375 240.402344 C 268.375 240.519531 268.46875 240.613281 268.585938 240.613281 C 268.703125 240.613281 268.796875 240.519531 268.796875 240.402344 Z M 268.796875 240.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.15625 240.359375 C 266.15625 240.242188 266.0625 240.148438 265.945312 240.148438 C 265.828125 240.148438 265.734375 240.242188 265.734375 240.359375 C 265.734375 240.476562 265.828125 240.570312 265.945312 240.570312 C 266.0625 240.570312 266.15625 240.476562 266.15625 240.359375 Z M 266.15625 240.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.507812 239.929688 C 268.507812 239.8125 268.414062 239.71875 268.296875 239.71875 C 268.179688 239.71875 268.085938 239.8125 268.085938 239.929688 C 268.085938 240.046875 268.179688 240.140625 268.296875 240.140625 C 268.414062 240.140625 268.507812 240.046875 268.507812 239.929688 Z M 268.507812 239.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.71875 238.539062 C 268.71875 238.421875 268.625 238.328125 268.507812 238.328125 C 268.390625 238.328125 268.296875 238.421875 268.296875 238.539062 C 268.296875 238.65625 268.390625 238.75 268.507812 238.75 C 268.625 238.75 268.71875 238.65625 268.71875 238.539062 Z M 268.71875 238.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.441406 235.511719 C 265.441406 235.394531 265.347656 235.300781 265.230469 235.300781 C 265.113281 235.300781 265.019531 235.394531 265.019531 235.511719 C 265.019531 235.628906 265.113281 235.722656 265.230469 235.722656 C 265.347656 235.722656 265.441406 235.628906 265.441406 235.511719 Z M 265.441406 235.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.285156 233.375 C 268.285156 233.257812 268.191406 233.164062 268.074219 233.164062 C 267.957031 233.164062 267.863281 233.257812 267.863281 233.375 C 267.863281 233.492188 267.957031 233.585938 268.074219 233.585938 C 268.191406 233.585938 268.285156 233.492188 268.285156 233.375 Z M 268.285156 233.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.445312 232.449219 C 267.445312 232.332031 267.351562 232.238281 267.234375 232.238281 C 267.117188 232.238281 267.023438 232.332031 267.023438 232.449219 C 267.023438 232.566406 267.117188 232.660156 267.234375 232.660156 C 267.351562 232.660156 267.445312 232.566406 267.445312 232.449219 Z M 267.445312 232.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.386719 234.046875 C 268.386719 233.929688 268.292969 233.835938 268.175781 233.835938 C 268.058594 233.835938 267.964844 233.929688 267.964844 234.046875 C 267.964844 234.164062 268.058594 234.257812 268.175781 234.257812 C 268.292969 234.257812 268.386719 234.164062 268.386719 234.046875 Z M 268.386719 234.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.105469 237.425781 C 268.105469 237.308594 268.011719 237.214844 267.894531 237.214844 C 267.777344 237.214844 267.683594 237.308594 267.683594 237.425781 C 267.683594 237.542969 267.777344 237.636719 267.894531 237.636719 C 268.011719 237.636719 268.105469 237.542969 268.105469 237.425781 Z M 268.105469 237.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.824219 236.019531 C 262.824219 235.902344 262.730469 235.808594 262.613281 235.808594 C 262.496094 235.808594 262.402344 235.902344 262.402344 236.019531 C 262.402344 236.136719 262.496094 236.230469 262.613281 236.230469 C 262.730469 236.230469 262.824219 236.136719 262.824219 236.019531 Z M 262.824219 236.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.878906 234.546875 C 260.878906 234.429688 260.785156 234.335938 260.667969 234.335938 C 260.550781 234.335938 260.457031 234.429688 260.457031 234.546875 C 260.457031 234.664062 260.550781 234.757812 260.667969 234.757812 C 260.785156 234.757812 260.878906 234.664062 260.878906 234.546875 Z M 260.878906 234.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.734375 236.253906 C 263.734375 236.136719 263.640625 236.042969 263.523438 236.042969 C 263.40625 236.042969 263.3125 236.136719 263.3125 236.253906 C 263.3125 236.371094 263.40625 236.464844 263.523438 236.464844 C 263.640625 236.464844 263.734375 236.371094 263.734375 236.253906 Z M 263.734375 236.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.628906 234.089844 C 260.628906 233.972656 260.535156 233.878906 260.417969 233.878906 C 260.300781 233.878906 260.207031 233.972656 260.207031 234.089844 C 260.207031 234.207031 260.300781 234.300781 260.417969 234.300781 C 260.535156 234.300781 260.628906 234.207031 260.628906 234.089844 Z M 260.628906 234.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.125 235.417969 C 263.125 235.300781 263.03125 235.207031 262.914062 235.207031 C 262.796875 235.207031 262.703125 235.300781 262.703125 235.417969 C 262.703125 235.535156 262.796875 235.628906 262.914062 235.628906 C 263.03125 235.628906 263.125 235.535156 263.125 235.417969 Z M 263.125 235.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.84375 233.527344 C 260.84375 233.410156 260.75 233.316406 260.632812 233.316406 C 260.515625 233.316406 260.421875 233.410156 260.421875 233.527344 C 260.421875 233.644531 260.515625 233.738281 260.632812 233.738281 C 260.75 233.738281 260.84375 233.644531 260.84375 233.527344 Z M 260.84375 233.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.480469 233.5 C 262.480469 233.382812 262.386719 233.289062 262.269531 233.289062 C 262.152344 233.289062 262.058594 233.382812 262.058594 233.5 C 262.058594 233.617188 262.152344 233.710938 262.269531 233.710938 C 262.386719 233.710938 262.480469 233.617188 262.480469 233.5 Z M 262.480469 233.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.738281 232.238281 C 264.738281 232.121094 264.644531 232.027344 264.527344 232.027344 C 264.410156 232.027344 264.316406 232.121094 264.316406 232.238281 C 264.316406 232.355469 264.410156 232.449219 264.527344 232.449219 C 264.644531 232.449219 264.738281 232.355469 264.738281 232.238281 Z M 264.738281 232.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.851562 232.277344 C 265.851562 232.160156 265.757812 232.066406 265.640625 232.066406 C 265.523438 232.066406 265.429688 232.160156 265.429688 232.277344 C 265.429688 232.394531 265.523438 232.488281 265.640625 232.488281 C 265.757812 232.488281 265.851562 232.394531 265.851562 232.277344 Z M 265.851562 232.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.902344 230.554688 C 265.902344 230.4375 265.808594 230.34375 265.691406 230.34375 C 265.574219 230.34375 265.480469 230.4375 265.480469 230.554688 C 265.480469 230.671875 265.574219 230.765625 265.691406 230.765625 C 265.808594 230.765625 265.902344 230.671875 265.902344 230.554688 Z M 265.902344 230.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.46875 231.542969 C 263.46875 231.425781 263.375 231.332031 263.257812 231.332031 C 263.140625 231.332031 263.046875 231.425781 263.046875 231.542969 C 263.046875 231.660156 263.140625 231.753906 263.257812 231.753906 C 263.375 231.753906 263.46875 231.660156 263.46875 231.542969 Z M 263.46875 231.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.347656 230.367188 C 261.347656 230.25 261.253906 230.15625 261.136719 230.15625 C 261.019531 230.15625 260.925781 230.25 260.925781 230.367188 C 260.925781 230.484375 261.019531 230.578125 261.136719 230.578125 C 261.253906 230.578125 261.347656 230.484375 261.347656 230.367188 Z M 261.347656 230.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.40625 232.058594 C 260.40625 231.941406 260.3125 231.847656 260.195312 231.847656 C 260.078125 231.847656 259.984375 231.941406 259.984375 232.058594 C 259.984375 232.175781 260.078125 232.269531 260.195312 232.269531 C 260.3125 232.269531 260.40625 232.175781 260.40625 232.058594 Z M 260.40625 232.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.78125 229.589844 C 259.78125 229.472656 259.6875 229.378906 259.570312 229.378906 C 259.453125 229.378906 259.359375 229.472656 259.359375 229.589844 C 259.359375 229.707031 259.453125 229.800781 259.570312 229.800781 C 259.6875 229.800781 259.78125 229.707031 259.78125 229.589844 Z M 259.78125 229.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.203125 228.371094 C 257.203125 228.253906 257.109375 228.160156 256.992188 228.160156 C 256.875 228.160156 256.78125 228.253906 256.78125 228.371094 C 256.78125 228.488281 256.875 228.582031 256.992188 228.582031 C 257.109375 228.582031 257.203125 228.488281 257.203125 228.371094 Z M 257.203125 228.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.277344 226.539062 C 259.277344 226.421875 259.183594 226.328125 259.066406 226.328125 C 258.949219 226.328125 258.855469 226.421875 258.855469 226.539062 C 258.855469 226.65625 258.949219 226.75 259.066406 226.75 C 259.183594 226.75 259.277344 226.65625 259.277344 226.539062 Z M 259.277344 226.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.84375 224.933594 C 263.84375 224.816406 263.75 224.722656 263.632812 224.722656 C 263.515625 224.722656 263.421875 224.816406 263.421875 224.933594 C 263.421875 225.050781 263.515625 225.144531 263.632812 225.144531 C 263.75 225.144531 263.84375 225.050781 263.84375 224.933594 Z M 263.84375 224.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.328125 229.539062 C 263.328125 229.421875 263.234375 229.328125 263.117188 229.328125 C 263 229.328125 262.90625 229.421875 262.90625 229.539062 C 262.90625 229.65625 263 229.75 263.117188 229.75 C 263.234375 229.75 263.328125 229.65625 263.328125 229.539062 Z M 263.328125 229.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.929688 226.015625 C 261.929688 225.898438 261.835938 225.804688 261.71875 225.804688 C 261.601562 225.804688 261.507812 225.898438 261.507812 226.015625 C 261.507812 226.132812 261.601562 226.226562 261.71875 226.226562 C 261.835938 226.226562 261.929688 226.132812 261.929688 226.015625 Z M 261.929688 226.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.457031 226.882812 C 263.457031 226.765625 263.363281 226.671875 263.246094 226.671875 C 263.128906 226.671875 263.035156 226.765625 263.035156 226.882812 C 263.035156 227 263.128906 227.09375 263.246094 227.09375 C 263.363281 227.09375 263.457031 227 263.457031 226.882812 Z M 263.457031 226.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.941406 222.898438 C 262.941406 222.78125 262.847656 222.6875 262.730469 222.6875 C 262.613281 222.6875 262.519531 222.78125 262.519531 222.898438 C 262.519531 223.015625 262.613281 223.109375 262.730469 223.109375 C 262.847656 223.109375 262.941406 223.015625 262.941406 222.898438 Z M 262.941406 222.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.875 223.421875 C 262.875 223.304688 262.78125 223.210938 262.664062 223.210938 C 262.546875 223.210938 262.453125 223.304688 262.453125 223.421875 C 262.453125 223.539062 262.546875 223.632812 262.664062 223.632812 C 262.78125 223.632812 262.875 223.539062 262.875 223.421875 Z M 262.875 223.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.492188 222.21875 C 261.492188 222.101562 261.398438 222.007812 261.28125 222.007812 C 261.164062 222.007812 261.070312 222.101562 261.070312 222.21875 C 261.070312 222.335938 261.164062 222.429688 261.28125 222.429688 C 261.398438 222.429688 261.492188 222.335938 261.492188 222.21875 Z M 261.492188 222.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.921875 223.273438 C 261.921875 223.15625 261.828125 223.0625 261.710938 223.0625 C 261.59375 223.0625 261.5 223.15625 261.5 223.273438 C 261.5 223.390625 261.59375 223.484375 261.710938 223.484375 C 261.828125 223.484375 261.921875 223.390625 261.921875 223.273438 Z M 261.921875 223.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.828125 219.585938 C 264.828125 219.46875 264.734375 219.375 264.617188 219.375 C 264.5 219.375 264.40625 219.46875 264.40625 219.585938 C 264.40625 219.703125 264.5 219.796875 264.617188 219.796875 C 264.734375 219.796875 264.828125 219.703125 264.828125 219.585938 Z M 264.828125 219.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.035156 219.78125 C 264.035156 219.664062 263.941406 219.570312 263.824219 219.570312 C 263.707031 219.570312 263.613281 219.664062 263.613281 219.78125 C 263.613281 219.898438 263.707031 219.992188 263.824219 219.992188 C 263.941406 219.992188 264.035156 219.898438 264.035156 219.78125 Z M 264.035156 219.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.820312 217.0625 C 263.820312 216.945312 263.726562 216.851562 263.609375 216.851562 C 263.492188 216.851562 263.398438 216.945312 263.398438 217.0625 C 263.398438 217.179688 263.492188 217.273438 263.609375 217.273438 C 263.726562 217.273438 263.820312 217.179688 263.820312 217.0625 Z M 263.820312 217.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.433594 217.347656 C 261.433594 217.230469 261.339844 217.136719 261.222656 217.136719 C 261.105469 217.136719 261.011719 217.230469 261.011719 217.347656 C 261.011719 217.464844 261.105469 217.558594 261.222656 217.558594 C 261.339844 217.558594 261.433594 217.464844 261.433594 217.347656 Z M 261.433594 217.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.136719 220.71875 C 261.136719 220.601562 261.042969 220.507812 260.925781 220.507812 C 260.808594 220.507812 260.714844 220.601562 260.714844 220.71875 C 260.714844 220.835938 260.808594 220.929688 260.925781 220.929688 C 261.042969 220.929688 261.136719 220.835938 261.136719 220.71875 Z M 261.136719 220.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.5 220.582031 C 256.5 220.464844 256.40625 220.371094 256.289062 220.371094 C 256.171875 220.371094 256.078125 220.464844 256.078125 220.582031 C 256.078125 220.699219 256.171875 220.792969 256.289062 220.792969 C 256.40625 220.792969 256.5 220.699219 256.5 220.582031 Z M 256.5 220.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.484375 219.675781 C 256.484375 219.558594 256.390625 219.464844 256.273438 219.464844 C 256.15625 219.464844 256.0625 219.558594 256.0625 219.675781 C 256.0625 219.792969 256.15625 219.886719 256.273438 219.886719 C 256.390625 219.886719 256.484375 219.792969 256.484375 219.675781 Z M 256.484375 219.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.925781 215.953125 C 256.925781 215.835938 256.832031 215.742188 256.714844 215.742188 C 256.597656 215.742188 256.503906 215.835938 256.503906 215.953125 C 256.503906 216.070312 256.597656 216.164062 256.714844 216.164062 C 256.832031 216.164062 256.925781 216.070312 256.925781 215.953125 Z M 256.925781 215.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.148438 213.859375 C 258.148438 213.742188 258.054688 213.648438 257.9375 213.648438 C 257.820312 213.648438 257.726562 213.742188 257.726562 213.859375 C 257.726562 213.976562 257.820312 214.070312 257.9375 214.070312 C 258.054688 214.070312 258.148438 213.976562 258.148438 213.859375 Z M 258.148438 213.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.695312 214.902344 C 261.695312 214.785156 261.601562 214.691406 261.484375 214.691406 C 261.367188 214.691406 261.273438 214.785156 261.273438 214.902344 C 261.273438 215.019531 261.367188 215.113281 261.484375 215.113281 C 261.601562 215.113281 261.695312 215.019531 261.695312 214.902344 Z M 261.695312 214.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.082031 216.25 C 262.082031 216.132812 261.988281 216.039062 261.871094 216.039062 C 261.753906 216.039062 261.660156 216.132812 261.660156 216.25 C 261.660156 216.367188 261.753906 216.460938 261.871094 216.460938 C 261.988281 216.460938 262.082031 216.367188 262.082031 216.25 Z M 262.082031 216.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.808594 215.609375 C 260.808594 215.492188 260.714844 215.398438 260.597656 215.398438 C 260.480469 215.398438 260.386719 215.492188 260.386719 215.609375 C 260.386719 215.726562 260.480469 215.820312 260.597656 215.820312 C 260.714844 215.820312 260.808594 215.726562 260.808594 215.609375 Z M 260.808594 215.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.863281 213.355469 C 266.863281 213.238281 266.769531 213.144531 266.652344 213.144531 C 266.535156 213.144531 266.441406 213.238281 266.441406 213.355469 C 266.441406 213.472656 266.535156 213.566406 266.652344 213.566406 C 266.769531 213.566406 266.863281 213.472656 266.863281 213.355469 Z M 266.863281 213.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.480469 215.464844 C 266.480469 215.347656 266.386719 215.253906 266.269531 215.253906 C 266.152344 215.253906 266.058594 215.347656 266.058594 215.464844 C 266.058594 215.582031 266.152344 215.675781 266.269531 215.675781 C 266.386719 215.675781 266.480469 215.582031 266.480469 215.464844 Z M 266.480469 215.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.21875 214.179688 C 266.21875 214.0625 266.125 213.96875 266.007812 213.96875 C 265.890625 213.96875 265.796875 214.0625 265.796875 214.179688 C 265.796875 214.296875 265.890625 214.390625 266.007812 214.390625 C 266.125 214.390625 266.21875 214.296875 266.21875 214.179688 Z M 266.21875 214.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.996094 214.148438 C 264.996094 214.03125 264.902344 213.9375 264.785156 213.9375 C 264.667969 213.9375 264.574219 214.03125 264.574219 214.148438 C 264.574219 214.265625 264.667969 214.359375 264.785156 214.359375 C 264.902344 214.359375 264.996094 214.265625 264.996094 214.148438 Z M 264.996094 214.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.046875 216.886719 C 267.046875 216.769531 266.953125 216.675781 266.835938 216.675781 C 266.71875 216.675781 266.625 216.769531 266.625 216.886719 C 266.625 217.003906 266.71875 217.097656 266.835938 217.097656 C 266.953125 217.097656 267.046875 217.003906 267.046875 216.886719 Z M 267.046875 216.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.929688 216.332031 C 268.929688 216.214844 268.835938 216.121094 268.71875 216.121094 C 268.601562 216.121094 268.507812 216.214844 268.507812 216.332031 C 268.507812 216.449219 268.601562 216.542969 268.71875 216.542969 C 268.835938 216.542969 268.929688 216.449219 268.929688 216.332031 Z M 268.929688 216.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.675781 216.238281 C 270.675781 216.121094 270.582031 216.027344 270.464844 216.027344 C 270.347656 216.027344 270.253906 216.121094 270.253906 216.238281 C 270.253906 216.355469 270.347656 216.449219 270.464844 216.449219 C 270.582031 216.449219 270.675781 216.355469 270.675781 216.238281 Z M 270.675781 216.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.566406 221.320312 C 274.566406 221.203125 274.472656 221.109375 274.355469 221.109375 C 274.238281 221.109375 274.144531 221.203125 274.144531 221.320312 C 274.144531 221.4375 274.238281 221.53125 274.355469 221.53125 C 274.472656 221.53125 274.566406 221.4375 274.566406 221.320312 Z M 274.566406 221.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.226562 220.019531 C 274.226562 219.902344 274.132812 219.808594 274.015625 219.808594 C 273.898438 219.808594 273.804688 219.902344 273.804688 220.019531 C 273.804688 220.136719 273.898438 220.230469 274.015625 220.230469 C 274.132812 220.230469 274.226562 220.136719 274.226562 220.019531 Z M 274.226562 220.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.195312 217.917969 C 274.195312 217.800781 274.101562 217.707031 273.984375 217.707031 C 273.867188 217.707031 273.773438 217.800781 273.773438 217.917969 C 273.773438 218.035156 273.867188 218.128906 273.984375 218.128906 C 274.101562 218.128906 274.195312 218.035156 274.195312 217.917969 Z M 274.195312 217.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.386719 219.515625 C 272.386719 219.398438 272.292969 219.304688 272.175781 219.304688 C 272.058594 219.304688 271.964844 219.398438 271.964844 219.515625 C 271.964844 219.632812 272.058594 219.726562 272.175781 219.726562 C 272.292969 219.726562 272.386719 219.632812 272.386719 219.515625 Z M 272.386719 219.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.253906 220.59375 C 272.253906 220.476562 272.160156 220.382812 272.042969 220.382812 C 271.925781 220.382812 271.832031 220.476562 271.832031 220.59375 C 271.832031 220.710938 271.925781 220.804688 272.042969 220.804688 C 272.160156 220.804688 272.253906 220.710938 272.253906 220.59375 Z M 272.253906 220.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.070312 221.234375 C 272.070312 221.117188 271.976562 221.023438 271.859375 221.023438 C 271.742188 221.023438 271.648438 221.117188 271.648438 221.234375 C 271.648438 221.351562 271.742188 221.445312 271.859375 221.445312 C 271.976562 221.445312 272.070312 221.351562 272.070312 221.234375 Z M 272.070312 221.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.871094 221.582031 C 270.871094 221.464844 270.777344 221.371094 270.660156 221.371094 C 270.542969 221.371094 270.449219 221.464844 270.449219 221.582031 C 270.449219 221.699219 270.542969 221.792969 270.660156 221.792969 C 270.777344 221.792969 270.871094 221.699219 270.871094 221.582031 Z M 270.871094 221.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.714844 221.171875 C 270.714844 221.054688 270.621094 220.960938 270.503906 220.960938 C 270.386719 220.960938 270.292969 221.054688 270.292969 221.171875 C 270.292969 221.289062 270.386719 221.382812 270.503906 221.382812 C 270.621094 221.382812 270.714844 221.289062 270.714844 221.171875 Z M 270.714844 221.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.78125 219.414062 C 267.78125 219.296875 267.6875 219.203125 267.570312 219.203125 C 267.453125 219.203125 267.359375 219.296875 267.359375 219.414062 C 267.359375 219.53125 267.453125 219.625 267.570312 219.625 C 267.6875 219.625 267.78125 219.53125 267.78125 219.414062 Z M 267.78125 219.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.066406 219.835938 C 267.066406 219.71875 266.972656 219.625 266.855469 219.625 C 266.738281 219.625 266.644531 219.71875 266.644531 219.835938 C 266.644531 219.953125 266.738281 220.046875 266.855469 220.046875 C 266.972656 220.046875 267.066406 219.953125 267.066406 219.835938 Z M 267.066406 219.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.128906 218.210938 C 269.128906 218.09375 269.035156 218 268.917969 218 C 268.800781 218 268.707031 218.09375 268.707031 218.210938 C 268.707031 218.328125 268.800781 218.421875 268.917969 218.421875 C 269.035156 218.421875 269.128906 218.328125 269.128906 218.210938 Z M 269.128906 218.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.300781 219.234375 C 271.300781 219.117188 271.207031 219.023438 271.089844 219.023438 C 270.972656 219.023438 270.878906 219.117188 270.878906 219.234375 C 270.878906 219.351562 270.972656 219.445312 271.089844 219.445312 C 271.207031 219.445312 271.300781 219.351562 271.300781 219.234375 Z M 271.300781 219.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.746094 222.953125 C 272.746094 222.835938 272.652344 222.742188 272.535156 222.742188 C 272.417969 222.742188 272.324219 222.835938 272.324219 222.953125 C 272.324219 223.070312 272.417969 223.164062 272.535156 223.164062 C 272.652344 223.164062 272.746094 223.070312 272.746094 222.953125 Z M 272.746094 222.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.949219 222.269531 C 273.949219 222.152344 273.855469 222.058594 273.738281 222.058594 C 273.621094 222.058594 273.527344 222.152344 273.527344 222.269531 C 273.527344 222.386719 273.621094 222.480469 273.738281 222.480469 C 273.855469 222.480469 273.949219 222.386719 273.949219 222.269531 Z M 273.949219 222.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.304688 222.6875 C 276.304688 222.570312 276.210938 222.476562 276.09375 222.476562 C 275.976562 222.476562 275.882812 222.570312 275.882812 222.6875 C 275.882812 222.804688 275.976562 222.898438 276.09375 222.898438 C 276.210938 222.898438 276.304688 222.804688 276.304688 222.6875 Z M 276.304688 222.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.527344 221.855469 C 282.527344 221.738281 282.433594 221.644531 282.316406 221.644531 C 282.199219 221.644531 282.105469 221.738281 282.105469 221.855469 C 282.105469 221.972656 282.199219 222.066406 282.316406 222.066406 C 282.433594 222.066406 282.527344 221.972656 282.527344 221.855469 Z M 282.527344 221.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.609375 223.667969 C 280.609375 223.550781 280.515625 223.457031 280.398438 223.457031 C 280.28125 223.457031 280.1875 223.550781 280.1875 223.667969 C 280.1875 223.785156 280.28125 223.878906 280.398438 223.878906 C 280.515625 223.878906 280.609375 223.785156 280.609375 223.667969 Z M 280.609375 223.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.734375 220.496094 C 277.734375 220.378906 277.640625 220.285156 277.523438 220.285156 C 277.40625 220.285156 277.3125 220.378906 277.3125 220.496094 C 277.3125 220.613281 277.40625 220.707031 277.523438 220.707031 C 277.640625 220.707031 277.734375 220.613281 277.734375 220.496094 Z M 277.734375 220.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.503906 217.460938 C 278.503906 217.34375 278.410156 217.25 278.292969 217.25 C 278.175781 217.25 278.082031 217.34375 278.082031 217.460938 C 278.082031 217.578125 278.175781 217.671875 278.292969 217.671875 C 278.410156 217.671875 278.503906 217.578125 278.503906 217.460938 Z M 278.503906 217.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.128906 216.117188 C 278.128906 216 278.035156 215.90625 277.917969 215.90625 C 277.800781 215.90625 277.707031 216 277.707031 216.117188 C 277.707031 216.234375 277.800781 216.328125 277.917969 216.328125 C 278.035156 216.328125 278.128906 216.234375 278.128906 216.117188 Z M 278.128906 216.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.566406 216.738281 C 279.566406 216.621094 279.472656 216.527344 279.355469 216.527344 C 279.238281 216.527344 279.144531 216.621094 279.144531 216.738281 C 279.144531 216.855469 279.238281 216.949219 279.355469 216.949219 C 279.472656 216.949219 279.566406 216.855469 279.566406 216.738281 Z M 279.566406 216.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.347656 218.695312 C 278.347656 218.578125 278.253906 218.484375 278.136719 218.484375 C 278.019531 218.484375 277.925781 218.578125 277.925781 218.695312 C 277.925781 218.8125 278.019531 218.90625 278.136719 218.90625 C 278.253906 218.90625 278.347656 218.8125 278.347656 218.695312 Z M 278.347656 218.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.523438 218.96875 C 276.523438 218.851562 276.429688 218.757812 276.3125 218.757812 C 276.195312 218.757812 276.101562 218.851562 276.101562 218.96875 C 276.101562 219.085938 276.195312 219.179688 276.3125 219.179688 C 276.429688 219.179688 276.523438 219.085938 276.523438 218.96875 Z M 276.523438 218.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.570312 220.933594 C 277.570312 220.816406 277.476562 220.722656 277.359375 220.722656 C 277.242188 220.722656 277.148438 220.816406 277.148438 220.933594 C 277.148438 221.050781 277.242188 221.144531 277.359375 221.144531 C 277.476562 221.144531 277.570312 221.050781 277.570312 220.933594 Z M 277.570312 220.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.660156 218.132812 C 274.660156 218.015625 274.566406 217.921875 274.449219 217.921875 C 274.332031 217.921875 274.238281 218.015625 274.238281 218.132812 C 274.238281 218.25 274.332031 218.34375 274.449219 218.34375 C 274.566406 218.34375 274.660156 218.25 274.660156 218.132812 Z M 274.660156 218.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.328125 218.71875 C 276.328125 218.601562 276.234375 218.507812 276.117188 218.507812 C 276 218.507812 275.90625 218.601562 275.90625 218.71875 C 275.90625 218.835938 276 218.929688 276.117188 218.929688 C 276.234375 218.929688 276.328125 218.835938 276.328125 218.71875 Z M 276.328125 218.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.679688 217.53125 C 278.679688 217.414062 278.585938 217.320312 278.46875 217.320312 C 278.351562 217.320312 278.257812 217.414062 278.257812 217.53125 C 278.257812 217.648438 278.351562 217.742188 278.46875 217.742188 C 278.585938 217.742188 278.679688 217.648438 278.679688 217.53125 Z M 278.679688 217.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.890625 215.945312 C 280.890625 215.828125 280.796875 215.734375 280.679688 215.734375 C 280.5625 215.734375 280.46875 215.828125 280.46875 215.945312 C 280.46875 216.0625 280.5625 216.15625 280.679688 216.15625 C 280.796875 216.15625 280.890625 216.0625 280.890625 215.945312 Z M 280.890625 215.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.207031 216.671875 C 282.207031 216.554688 282.113281 216.460938 281.996094 216.460938 C 281.878906 216.460938 281.785156 216.554688 281.785156 216.671875 C 281.785156 216.789062 281.878906 216.882812 281.996094 216.882812 C 282.113281 216.882812 282.207031 216.789062 282.207031 216.671875 Z M 282.207031 216.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.558594 216.445312 C 281.558594 216.328125 281.464844 216.234375 281.347656 216.234375 C 281.230469 216.234375 281.136719 216.328125 281.136719 216.445312 C 281.136719 216.5625 281.230469 216.65625 281.347656 216.65625 C 281.464844 216.65625 281.558594 216.5625 281.558594 216.445312 Z M 281.558594 216.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.070312 216.355469 C 280.070312 216.238281 279.976562 216.144531 279.859375 216.144531 C 279.742188 216.144531 279.648438 216.238281 279.648438 216.355469 C 279.648438 216.472656 279.742188 216.566406 279.859375 216.566406 C 279.976562 216.566406 280.070312 216.472656 280.070312 216.355469 Z M 280.070312 216.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.914062 214.683594 C 279.914062 214.566406 279.820312 214.472656 279.703125 214.472656 C 279.585938 214.472656 279.492188 214.566406 279.492188 214.683594 C 279.492188 214.800781 279.585938 214.894531 279.703125 214.894531 C 279.820312 214.894531 279.914062 214.800781 279.914062 214.683594 Z M 279.914062 214.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.269531 210.957031 C 279.269531 210.839844 279.175781 210.746094 279.058594 210.746094 C 278.941406 210.746094 278.847656 210.839844 278.847656 210.957031 C 278.847656 211.074219 278.941406 211.167969 279.058594 211.167969 C 279.175781 211.167969 279.269531 211.074219 279.269531 210.957031 Z M 279.269531 210.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.917969 210.246094 C 279.917969 210.128906 279.824219 210.035156 279.707031 210.035156 C 279.589844 210.035156 279.496094 210.128906 279.496094 210.246094 C 279.496094 210.363281 279.589844 210.457031 279.707031 210.457031 C 279.824219 210.457031 279.917969 210.363281 279.917969 210.246094 Z M 279.917969 210.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.429688 208.09375 C 282.429688 207.976562 282.335938 207.882812 282.21875 207.882812 C 282.101562 207.882812 282.007812 207.976562 282.007812 208.09375 C 282.007812 208.210938 282.101562 208.304688 282.21875 208.304688 C 282.335938 208.304688 282.429688 208.210938 282.429688 208.09375 Z M 282.429688 208.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.964844 205.980469 C 281.964844 205.863281 281.871094 205.769531 281.753906 205.769531 C 281.636719 205.769531 281.542969 205.863281 281.542969 205.980469 C 281.542969 206.097656 281.636719 206.191406 281.753906 206.191406 C 281.871094 206.191406 281.964844 206.097656 281.964844 205.980469 Z M 281.964844 205.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.125 206.257812 C 280.125 206.140625 280.03125 206.046875 279.914062 206.046875 C 279.796875 206.046875 279.703125 206.140625 279.703125 206.257812 C 279.703125 206.375 279.796875 206.46875 279.914062 206.46875 C 280.03125 206.46875 280.125 206.375 280.125 206.257812 Z M 280.125 206.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.234375 208.851562 C 283.234375 208.734375 283.140625 208.640625 283.023438 208.640625 C 282.90625 208.640625 282.8125 208.734375 282.8125 208.851562 C 282.8125 208.96875 282.90625 209.0625 283.023438 209.0625 C 283.140625 209.0625 283.234375 208.96875 283.234375 208.851562 Z M 283.234375 208.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.753906 210.722656 C 280.753906 210.605469 280.660156 210.511719 280.542969 210.511719 C 280.425781 210.511719 280.332031 210.605469 280.332031 210.722656 C 280.332031 210.839844 280.425781 210.933594 280.542969 210.933594 C 280.660156 210.933594 280.753906 210.839844 280.753906 210.722656 Z M 280.753906 210.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.421875 215.609375 C 277.421875 215.492188 277.328125 215.398438 277.210938 215.398438 C 277.09375 215.398438 277 215.492188 277 215.609375 C 277 215.726562 277.09375 215.820312 277.210938 215.820312 C 277.328125 215.820312 277.421875 215.726562 277.421875 215.609375 Z M 277.421875 215.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.164062 213.824219 C 279.164062 213.707031 279.070312 213.613281 278.953125 213.613281 C 278.835938 213.613281 278.742188 213.707031 278.742188 213.824219 C 278.742188 213.941406 278.835938 214.035156 278.953125 214.035156 C 279.070312 214.035156 279.164062 213.941406 279.164062 213.824219 Z M 279.164062 213.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.316406 213.277344 C 279.316406 213.160156 279.222656 213.066406 279.105469 213.066406 C 278.988281 213.066406 278.894531 213.160156 278.894531 213.277344 C 278.894531 213.394531 278.988281 213.488281 279.105469 213.488281 C 279.222656 213.488281 279.316406 213.394531 279.316406 213.277344 Z M 279.316406 213.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.863281 213.039062 C 275.863281 212.921875 275.769531 212.828125 275.652344 212.828125 C 275.535156 212.828125 275.441406 212.921875 275.441406 213.039062 C 275.441406 213.15625 275.535156 213.25 275.652344 213.25 C 275.769531 213.25 275.863281 213.15625 275.863281 213.039062 Z M 275.863281 213.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.8125 211.394531 C 276.8125 211.277344 276.71875 211.183594 276.601562 211.183594 C 276.484375 211.183594 276.390625 211.277344 276.390625 211.394531 C 276.390625 211.511719 276.484375 211.605469 276.601562 211.605469 C 276.71875 211.605469 276.8125 211.511719 276.8125 211.394531 Z M 276.8125 211.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.523438 210.429688 C 278.523438 210.3125 278.429688 210.21875 278.3125 210.21875 C 278.195312 210.21875 278.101562 210.3125 278.101562 210.429688 C 278.101562 210.546875 278.195312 210.640625 278.3125 210.640625 C 278.429688 210.640625 278.523438 210.546875 278.523438 210.429688 Z M 278.523438 210.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.648438 213.871094 C 280.648438 213.753906 280.554688 213.660156 280.4375 213.660156 C 280.320312 213.660156 280.226562 213.753906 280.226562 213.871094 C 280.226562 213.988281 280.320312 214.082031 280.4375 214.082031 C 280.554688 214.082031 280.648438 213.988281 280.648438 213.871094 Z M 280.648438 213.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.488281 215.246094 C 278.488281 215.128906 278.394531 215.035156 278.277344 215.035156 C 278.160156 215.035156 278.066406 215.128906 278.066406 215.246094 C 278.066406 215.363281 278.160156 215.457031 278.277344 215.457031 C 278.394531 215.457031 278.488281 215.363281 278.488281 215.246094 Z M 278.488281 215.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.105469 213.921875 C 278.105469 213.804688 278.011719 213.710938 277.894531 213.710938 C 277.777344 213.710938 277.683594 213.804688 277.683594 213.921875 C 277.683594 214.039062 277.777344 214.132812 277.894531 214.132812 C 278.011719 214.132812 278.105469 214.039062 278.105469 213.921875 Z M 278.105469 213.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.382812 214.292969 C 279.382812 214.175781 279.289062 214.082031 279.171875 214.082031 C 279.054688 214.082031 278.960938 214.175781 278.960938 214.292969 C 278.960938 214.410156 279.054688 214.503906 279.171875 214.503906 C 279.289062 214.503906 279.382812 214.410156 279.382812 214.292969 Z M 279.382812 214.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.386719 217 C 277.386719 216.882812 277.292969 216.789062 277.175781 216.789062 C 277.058594 216.789062 276.964844 216.882812 276.964844 217 C 276.964844 217.117188 277.058594 217.210938 277.175781 217.210938 C 277.292969 217.210938 277.386719 217.117188 277.386719 217 Z M 277.386719 217 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.085938 215.882812 C 278.085938 215.765625 277.992188 215.671875 277.875 215.671875 C 277.757812 215.671875 277.664062 215.765625 277.664062 215.882812 C 277.664062 216 277.757812 216.09375 277.875 216.09375 C 277.992188 216.09375 278.085938 216 278.085938 215.882812 Z M 278.085938 215.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.84375 216.394531 C 279.84375 216.277344 279.75 216.183594 279.632812 216.183594 C 279.515625 216.183594 279.421875 216.277344 279.421875 216.394531 C 279.421875 216.511719 279.515625 216.605469 279.632812 216.605469 C 279.75 216.605469 279.84375 216.511719 279.84375 216.394531 Z M 279.84375 216.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.3125 216.546875 C 277.3125 216.429688 277.21875 216.335938 277.101562 216.335938 C 276.984375 216.335938 276.890625 216.429688 276.890625 216.546875 C 276.890625 216.664062 276.984375 216.757812 277.101562 216.757812 C 277.21875 216.757812 277.3125 216.664062 277.3125 216.546875 Z M 277.3125 216.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.140625 215.222656 C 276.140625 215.105469 276.046875 215.011719 275.929688 215.011719 C 275.8125 215.011719 275.71875 215.105469 275.71875 215.222656 C 275.71875 215.339844 275.8125 215.433594 275.929688 215.433594 C 276.046875 215.433594 276.140625 215.339844 276.140625 215.222656 Z M 276.140625 215.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.507812 216.945312 C 278.507812 216.828125 278.414062 216.734375 278.296875 216.734375 C 278.179688 216.734375 278.085938 216.828125 278.085938 216.945312 C 278.085938 217.0625 278.179688 217.15625 278.296875 217.15625 C 278.414062 217.15625 278.507812 217.0625 278.507812 216.945312 Z M 278.507812 216.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.734375 219.632812 C 281.734375 219.515625 281.640625 219.421875 281.523438 219.421875 C 281.40625 219.421875 281.3125 219.515625 281.3125 219.632812 C 281.3125 219.75 281.40625 219.84375 281.523438 219.84375 C 281.640625 219.84375 281.734375 219.75 281.734375 219.632812 Z M 281.734375 219.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.175781 218.574219 C 281.175781 218.457031 281.082031 218.363281 280.964844 218.363281 C 280.847656 218.363281 280.753906 218.457031 280.753906 218.574219 C 280.753906 218.691406 280.847656 218.785156 280.964844 218.785156 C 281.082031 218.785156 281.175781 218.691406 281.175781 218.574219 Z M 281.175781 218.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.203125 222.207031 C 281.203125 222.089844 281.109375 221.996094 280.992188 221.996094 C 280.875 221.996094 280.78125 222.089844 280.78125 222.207031 C 280.78125 222.324219 280.875 222.417969 280.992188 222.417969 C 281.109375 222.417969 281.203125 222.324219 281.203125 222.207031 Z M 281.203125 222.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.675781 225.003906 C 279.675781 224.886719 279.582031 224.792969 279.464844 224.792969 C 279.347656 224.792969 279.253906 224.886719 279.253906 225.003906 C 279.253906 225.121094 279.347656 225.214844 279.464844 225.214844 C 279.582031 225.214844 279.675781 225.121094 279.675781 225.003906 Z M 279.675781 225.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.015625 226.222656 C 277.015625 226.105469 276.921875 226.011719 276.804688 226.011719 C 276.6875 226.011719 276.59375 226.105469 276.59375 226.222656 C 276.59375 226.339844 276.6875 226.433594 276.804688 226.433594 C 276.921875 226.433594 277.015625 226.339844 277.015625 226.222656 Z M 277.015625 226.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.742188 221.632812 C 276.742188 221.515625 276.648438 221.421875 276.53125 221.421875 C 276.414062 221.421875 276.320312 221.515625 276.320312 221.632812 C 276.320312 221.75 276.414062 221.84375 276.53125 221.84375 C 276.648438 221.84375 276.742188 221.75 276.742188 221.632812 Z M 276.742188 221.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.4375 220.671875 C 276.4375 220.554688 276.34375 220.460938 276.226562 220.460938 C 276.109375 220.460938 276.015625 220.554688 276.015625 220.671875 C 276.015625 220.789062 276.109375 220.882812 276.226562 220.882812 C 276.34375 220.882812 276.4375 220.789062 276.4375 220.671875 Z M 276.4375 220.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.324219 220.742188 C 278.324219 220.625 278.230469 220.53125 278.113281 220.53125 C 277.996094 220.53125 277.902344 220.625 277.902344 220.742188 C 277.902344 220.859375 277.996094 220.953125 278.113281 220.953125 C 278.230469 220.953125 278.324219 220.859375 278.324219 220.742188 Z M 278.324219 220.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.605469 219.707031 C 276.605469 219.589844 276.511719 219.496094 276.394531 219.496094 C 276.277344 219.496094 276.183594 219.589844 276.183594 219.707031 C 276.183594 219.824219 276.277344 219.917969 276.394531 219.917969 C 276.511719 219.917969 276.605469 219.824219 276.605469 219.707031 Z M 276.605469 219.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.066406 223.667969 C 277.066406 223.550781 276.972656 223.457031 276.855469 223.457031 C 276.738281 223.457031 276.644531 223.550781 276.644531 223.667969 C 276.644531 223.785156 276.738281 223.878906 276.855469 223.878906 C 276.972656 223.878906 277.066406 223.785156 277.066406 223.667969 Z M 277.066406 223.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.917969 221.117188 C 275.917969 221 275.824219 220.90625 275.707031 220.90625 C 275.589844 220.90625 275.496094 221 275.496094 221.117188 C 275.496094 221.234375 275.589844 221.328125 275.707031 221.328125 C 275.824219 221.328125 275.917969 221.234375 275.917969 221.117188 Z M 275.917969 221.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.605469 221.75 C 277.605469 221.632812 277.511719 221.539062 277.394531 221.539062 C 277.277344 221.539062 277.183594 221.632812 277.183594 221.75 C 277.183594 221.867188 277.277344 221.960938 277.394531 221.960938 C 277.511719 221.960938 277.605469 221.867188 277.605469 221.75 Z M 277.605469 221.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.71875 222.304688 C 275.71875 222.1875 275.625 222.09375 275.507812 222.09375 C 275.390625 222.09375 275.296875 222.1875 275.296875 222.304688 C 275.296875 222.421875 275.390625 222.515625 275.507812 222.515625 C 275.625 222.515625 275.71875 222.421875 275.71875 222.304688 Z M 275.71875 222.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.710938 224.914062 C 272.710938 224.796875 272.617188 224.703125 272.5 224.703125 C 272.382812 224.703125 272.289062 224.796875 272.289062 224.914062 C 272.289062 225.03125 272.382812 225.125 272.5 225.125 C 272.617188 225.125 272.710938 225.03125 272.710938 224.914062 Z M 272.710938 224.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.464844 224.691406 C 273.464844 224.574219 273.371094 224.480469 273.253906 224.480469 C 273.136719 224.480469 273.042969 224.574219 273.042969 224.691406 C 273.042969 224.808594 273.136719 224.902344 273.253906 224.902344 C 273.371094 224.902344 273.464844 224.808594 273.464844 224.691406 Z M 273.464844 224.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.699219 221.261719 C 273.699219 221.144531 273.605469 221.050781 273.488281 221.050781 C 273.371094 221.050781 273.277344 221.144531 273.277344 221.261719 C 273.277344 221.378906 273.371094 221.472656 273.488281 221.472656 C 273.605469 221.472656 273.699219 221.378906 273.699219 221.261719 Z M 273.699219 221.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.605469 220.410156 C 270.605469 220.292969 270.511719 220.199219 270.394531 220.199219 C 270.277344 220.199219 270.183594 220.292969 270.183594 220.410156 C 270.183594 220.527344 270.277344 220.621094 270.394531 220.621094 C 270.511719 220.621094 270.605469 220.527344 270.605469 220.410156 Z M 270.605469 220.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.28125 217.277344 C 270.28125 217.160156 270.1875 217.066406 270.070312 217.066406 C 269.953125 217.066406 269.859375 217.160156 269.859375 217.277344 C 269.859375 217.394531 269.953125 217.488281 270.070312 217.488281 C 270.1875 217.488281 270.28125 217.394531 270.28125 217.277344 Z M 270.28125 217.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.84375 219.988281 C 269.84375 219.871094 269.75 219.777344 269.632812 219.777344 C 269.515625 219.777344 269.421875 219.871094 269.421875 219.988281 C 269.421875 220.105469 269.515625 220.199219 269.632812 220.199219 C 269.75 220.199219 269.84375 220.105469 269.84375 219.988281 Z M 269.84375 219.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.777344 216.335938 C 270.777344 216.21875 270.683594 216.125 270.566406 216.125 C 270.449219 216.125 270.355469 216.21875 270.355469 216.335938 C 270.355469 216.453125 270.449219 216.546875 270.566406 216.546875 C 270.683594 216.546875 270.777344 216.453125 270.777344 216.335938 Z M 270.777344 216.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.648438 217.226562 C 270.648438 217.109375 270.554688 217.015625 270.4375 217.015625 C 270.320312 217.015625 270.226562 217.109375 270.226562 217.226562 C 270.226562 217.34375 270.320312 217.4375 270.4375 217.4375 C 270.554688 217.4375 270.648438 217.34375 270.648438 217.226562 Z M 270.648438 217.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.617188 217.609375 C 272.617188 217.492188 272.523438 217.398438 272.40625 217.398438 C 272.289062 217.398438 272.195312 217.492188 272.195312 217.609375 C 272.195312 217.726562 272.289062 217.820312 272.40625 217.820312 C 272.523438 217.820312 272.617188 217.726562 272.617188 217.609375 Z M 272.617188 217.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.445312 216.234375 C 271.445312 216.117188 271.351562 216.023438 271.234375 216.023438 C 271.117188 216.023438 271.023438 216.117188 271.023438 216.234375 C 271.023438 216.351562 271.117188 216.445312 271.234375 216.445312 C 271.351562 216.445312 271.445312 216.351562 271.445312 216.234375 Z M 271.445312 216.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.128906 220.011719 C 268.128906 219.894531 268.035156 219.800781 267.917969 219.800781 C 267.800781 219.800781 267.707031 219.894531 267.707031 220.011719 C 267.707031 220.128906 267.800781 220.222656 267.917969 220.222656 C 268.035156 220.222656 268.128906 220.128906 268.128906 220.011719 Z M 268.128906 220.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.203125 223.222656 C 268.203125 223.105469 268.109375 223.011719 267.992188 223.011719 C 267.875 223.011719 267.78125 223.105469 267.78125 223.222656 C 267.78125 223.339844 267.875 223.433594 267.992188 223.433594 C 268.109375 223.433594 268.203125 223.339844 268.203125 223.222656 Z M 268.203125 223.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.449219 219.574219 C 267.449219 219.457031 267.355469 219.363281 267.238281 219.363281 C 267.121094 219.363281 267.027344 219.457031 267.027344 219.574219 C 267.027344 219.691406 267.121094 219.785156 267.238281 219.785156 C 267.355469 219.785156 267.449219 219.691406 267.449219 219.574219 Z M 267.449219 219.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.527344 220.023438 C 269.527344 219.90625 269.433594 219.8125 269.316406 219.8125 C 269.199219 219.8125 269.105469 219.90625 269.105469 220.023438 C 269.105469 220.140625 269.199219 220.234375 269.316406 220.234375 C 269.433594 220.234375 269.527344 220.140625 269.527344 220.023438 Z M 269.527344 220.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.863281 219.035156 C 270.863281 218.917969 270.769531 218.824219 270.652344 218.824219 C 270.535156 218.824219 270.441406 218.917969 270.441406 219.035156 C 270.441406 219.152344 270.535156 219.246094 270.652344 219.246094 C 270.769531 219.246094 270.863281 219.152344 270.863281 219.035156 Z M 270.863281 219.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.300781 219.71875 C 266.300781 219.601562 266.207031 219.507812 266.089844 219.507812 C 265.972656 219.507812 265.878906 219.601562 265.878906 219.71875 C 265.878906 219.835938 265.972656 219.929688 266.089844 219.929688 C 266.207031 219.929688 266.300781 219.835938 266.300781 219.71875 Z M 266.300781 219.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.4375 219.453125 C 266.4375 219.335938 266.34375 219.242188 266.226562 219.242188 C 266.109375 219.242188 266.015625 219.335938 266.015625 219.453125 C 266.015625 219.570312 266.109375 219.664062 266.226562 219.664062 C 266.34375 219.664062 266.4375 219.570312 266.4375 219.453125 Z M 266.4375 219.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.925781 217.15625 C 263.925781 217.039062 263.832031 216.945312 263.714844 216.945312 C 263.597656 216.945312 263.503906 217.039062 263.503906 217.15625 C 263.503906 217.273438 263.597656 217.367188 263.714844 217.367188 C 263.832031 217.367188 263.925781 217.273438 263.925781 217.15625 Z M 263.925781 217.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.75 217.953125 C 265.75 217.835938 265.65625 217.742188 265.539062 217.742188 C 265.421875 217.742188 265.328125 217.835938 265.328125 217.953125 C 265.328125 218.070312 265.421875 218.164062 265.539062 218.164062 C 265.65625 218.164062 265.75 218.070312 265.75 217.953125 Z M 265.75 217.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.234375 218.445312 C 266.234375 218.328125 266.140625 218.234375 266.023438 218.234375 C 265.90625 218.234375 265.8125 218.328125 265.8125 218.445312 C 265.8125 218.5625 265.90625 218.65625 266.023438 218.65625 C 266.140625 218.65625 266.234375 218.5625 266.234375 218.445312 Z M 266.234375 218.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.445312 219.523438 C 266.445312 219.40625 266.351562 219.3125 266.234375 219.3125 C 266.117188 219.3125 266.023438 219.40625 266.023438 219.523438 C 266.023438 219.640625 266.117188 219.734375 266.234375 219.734375 C 266.351562 219.734375 266.445312 219.640625 266.445312 219.523438 Z M 266.445312 219.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.636719 218.382812 C 270.636719 218.265625 270.542969 218.171875 270.425781 218.171875 C 270.308594 218.171875 270.214844 218.265625 270.214844 218.382812 C 270.214844 218.5 270.308594 218.59375 270.425781 218.59375 C 270.542969 218.59375 270.636719 218.5 270.636719 218.382812 Z M 270.636719 218.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.128906 220.996094 C 269.128906 220.878906 269.035156 220.785156 268.917969 220.785156 C 268.800781 220.785156 268.707031 220.878906 268.707031 220.996094 C 268.707031 221.113281 268.800781 221.207031 268.917969 221.207031 C 269.035156 221.207031 269.128906 221.113281 269.128906 220.996094 Z M 269.128906 220.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.8125 217.480469 C 266.8125 217.363281 266.71875 217.269531 266.601562 217.269531 C 266.484375 217.269531 266.390625 217.363281 266.390625 217.480469 C 266.390625 217.597656 266.484375 217.691406 266.601562 217.691406 C 266.71875 217.691406 266.8125 217.597656 266.8125 217.480469 Z M 266.8125 217.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.210938 218.273438 C 268.210938 218.15625 268.117188 218.0625 268 218.0625 C 267.882812 218.0625 267.789062 218.15625 267.789062 218.273438 C 267.789062 218.390625 267.882812 218.484375 268 218.484375 C 268.117188 218.484375 268.210938 218.390625 268.210938 218.273438 Z M 268.210938 218.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.535156 217.121094 C 268.535156 217.003906 268.441406 216.910156 268.324219 216.910156 C 268.207031 216.910156 268.113281 217.003906 268.113281 217.121094 C 268.113281 217.238281 268.207031 217.332031 268.324219 217.332031 C 268.441406 217.332031 268.535156 217.238281 268.535156 217.121094 Z M 268.535156 217.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.550781 219.300781 C 270.550781 219.183594 270.457031 219.089844 270.339844 219.089844 C 270.222656 219.089844 270.128906 219.183594 270.128906 219.300781 C 270.128906 219.417969 270.222656 219.511719 270.339844 219.511719 C 270.457031 219.511719 270.550781 219.417969 270.550781 219.300781 Z M 270.550781 219.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.894531 221.097656 C 268.894531 220.980469 268.800781 220.886719 268.683594 220.886719 C 268.566406 220.886719 268.472656 220.980469 268.472656 221.097656 C 268.472656 221.214844 268.566406 221.308594 268.683594 221.308594 C 268.800781 221.308594 268.894531 221.214844 268.894531 221.097656 Z M 268.894531 221.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.6875 220.523438 C 269.6875 220.40625 269.59375 220.3125 269.476562 220.3125 C 269.359375 220.3125 269.265625 220.40625 269.265625 220.523438 C 269.265625 220.640625 269.359375 220.734375 269.476562 220.734375 C 269.59375 220.734375 269.6875 220.640625 269.6875 220.523438 Z M 269.6875 220.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.433594 221.277344 C 272.433594 221.160156 272.339844 221.066406 272.222656 221.066406 C 272.105469 221.066406 272.011719 221.160156 272.011719 221.277344 C 272.011719 221.394531 272.105469 221.488281 272.222656 221.488281 C 272.339844 221.488281 272.433594 221.394531 272.433594 221.277344 Z M 272.433594 221.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.019531 220.023438 C 271.019531 219.90625 270.925781 219.8125 270.808594 219.8125 C 270.691406 219.8125 270.597656 219.90625 270.597656 220.023438 C 270.597656 220.140625 270.691406 220.234375 270.808594 220.234375 C 270.925781 220.234375 271.019531 220.140625 271.019531 220.023438 Z M 271.019531 220.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.464844 222.515625 C 271.464844 222.398438 271.371094 222.304688 271.253906 222.304688 C 271.136719 222.304688 271.042969 222.398438 271.042969 222.515625 C 271.042969 222.632812 271.136719 222.726562 271.253906 222.726562 C 271.371094 222.726562 271.464844 222.632812 271.464844 222.515625 Z M 271.464844 222.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.242188 219.65625 C 271.242188 219.539062 271.148438 219.445312 271.03125 219.445312 C 270.914062 219.445312 270.820312 219.539062 270.820312 219.65625 C 270.820312 219.773438 270.914062 219.867188 271.03125 219.867188 C 271.148438 219.867188 271.242188 219.773438 271.242188 219.65625 Z M 271.242188 219.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.375 217.609375 C 271.375 217.492188 271.28125 217.398438 271.164062 217.398438 C 271.046875 217.398438 270.953125 217.492188 270.953125 217.609375 C 270.953125 217.726562 271.046875 217.820312 271.164062 217.820312 C 271.28125 217.820312 271.375 217.726562 271.375 217.609375 Z M 271.375 217.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.460938 220.914062 C 270.460938 220.796875 270.367188 220.703125 270.25 220.703125 C 270.132812 220.703125 270.039062 220.796875 270.039062 220.914062 C 270.039062 221.03125 270.132812 221.125 270.25 221.125 C 270.367188 221.125 270.460938 221.03125 270.460938 220.914062 Z M 270.460938 220.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.035156 221.363281 C 272.035156 221.246094 271.941406 221.152344 271.824219 221.152344 C 271.707031 221.152344 271.613281 221.246094 271.613281 221.363281 C 271.613281 221.480469 271.707031 221.574219 271.824219 221.574219 C 271.941406 221.574219 272.035156 221.480469 272.035156 221.363281 Z M 272.035156 221.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.421875 224.460938 C 271.421875 224.34375 271.328125 224.25 271.210938 224.25 C 271.09375 224.25 271 224.34375 271 224.460938 C 271 224.578125 271.09375 224.671875 271.210938 224.671875 C 271.328125 224.671875 271.421875 224.578125 271.421875 224.460938 Z M 271.421875 224.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.808594 223.054688 C 271.808594 222.9375 271.714844 222.84375 271.597656 222.84375 C 271.480469 222.84375 271.386719 222.9375 271.386719 223.054688 C 271.386719 223.171875 271.480469 223.265625 271.597656 223.265625 C 271.714844 223.265625 271.808594 223.171875 271.808594 223.054688 Z M 271.808594 223.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.996094 223.046875 C 271.996094 222.929688 271.902344 222.835938 271.785156 222.835938 C 271.667969 222.835938 271.574219 222.929688 271.574219 223.046875 C 271.574219 223.164062 271.667969 223.257812 271.785156 223.257812 C 271.902344 223.257812 271.996094 223.164062 271.996094 223.046875 Z M 271.996094 223.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.417969 224.304688 C 271.417969 224.1875 271.324219 224.09375 271.207031 224.09375 C 271.089844 224.09375 270.996094 224.1875 270.996094 224.304688 C 270.996094 224.421875 271.089844 224.515625 271.207031 224.515625 C 271.324219 224.515625 271.417969 224.421875 271.417969 224.304688 Z M 271.417969 224.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.722656 223.113281 C 273.722656 222.996094 273.628906 222.902344 273.511719 222.902344 C 273.394531 222.902344 273.300781 222.996094 273.300781 223.113281 C 273.300781 223.230469 273.394531 223.324219 273.511719 223.324219 C 273.628906 223.324219 273.722656 223.230469 273.722656 223.113281 Z M 273.722656 223.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.304688 227.25 C 274.304688 227.132812 274.210938 227.039062 274.09375 227.039062 C 273.976562 227.039062 273.882812 227.132812 273.882812 227.25 C 273.882812 227.367188 273.976562 227.460938 274.09375 227.460938 C 274.210938 227.460938 274.304688 227.367188 274.304688 227.25 Z M 274.304688 227.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.714844 230.464844 C 271.714844 230.347656 271.621094 230.253906 271.503906 230.253906 C 271.386719 230.253906 271.292969 230.347656 271.292969 230.464844 C 271.292969 230.582031 271.386719 230.675781 271.503906 230.675781 C 271.621094 230.675781 271.714844 230.582031 271.714844 230.464844 Z M 271.714844 230.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.664062 229.328125 C 268.664062 229.210938 268.570312 229.117188 268.453125 229.117188 C 268.335938 229.117188 268.242188 229.210938 268.242188 229.328125 C 268.242188 229.445312 268.335938 229.539062 268.453125 229.539062 C 268.570312 229.539062 268.664062 229.445312 268.664062 229.328125 Z M 268.664062 229.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.003906 229.097656 C 273.003906 228.980469 272.910156 228.886719 272.792969 228.886719 C 272.675781 228.886719 272.582031 228.980469 272.582031 229.097656 C 272.582031 229.214844 272.675781 229.308594 272.792969 229.308594 C 272.910156 229.308594 273.003906 229.214844 273.003906 229.097656 Z M 273.003906 229.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.023438 227.738281 C 272.023438 227.621094 271.929688 227.527344 271.8125 227.527344 C 271.695312 227.527344 271.601562 227.621094 271.601562 227.738281 C 271.601562 227.855469 271.695312 227.949219 271.8125 227.949219 C 271.929688 227.949219 272.023438 227.855469 272.023438 227.738281 Z M 272.023438 227.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.398438 228.203125 C 270.398438 228.085938 270.304688 227.992188 270.1875 227.992188 C 270.070312 227.992188 269.976562 228.085938 269.976562 228.203125 C 269.976562 228.320312 270.070312 228.414062 270.1875 228.414062 C 270.304688 228.414062 270.398438 228.320312 270.398438 228.203125 Z M 270.398438 228.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.707031 226.9375 C 268.707031 226.820312 268.613281 226.726562 268.496094 226.726562 C 268.378906 226.726562 268.285156 226.820312 268.285156 226.9375 C 268.285156 227.054688 268.378906 227.148438 268.496094 227.148438 C 268.613281 227.148438 268.707031 227.054688 268.707031 226.9375 Z M 268.707031 226.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.070312 225.722656 C 265.070312 225.605469 264.976562 225.511719 264.859375 225.511719 C 264.742188 225.511719 264.648438 225.605469 264.648438 225.722656 C 264.648438 225.839844 264.742188 225.933594 264.859375 225.933594 C 264.976562 225.933594 265.070312 225.839844 265.070312 225.722656 Z M 265.070312 225.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.453125 224.898438 C 264.453125 224.78125 264.359375 224.6875 264.242188 224.6875 C 264.125 224.6875 264.03125 224.78125 264.03125 224.898438 C 264.03125 225.015625 264.125 225.109375 264.242188 225.109375 C 264.359375 225.109375 264.453125 225.015625 264.453125 224.898438 Z M 264.453125 224.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.355469 224.6875 C 261.355469 224.570312 261.261719 224.476562 261.144531 224.476562 C 261.027344 224.476562 260.933594 224.570312 260.933594 224.6875 C 260.933594 224.804688 261.027344 224.898438 261.144531 224.898438 C 261.261719 224.898438 261.355469 224.804688 261.355469 224.6875 Z M 261.355469 224.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.121094 229.03125 C 257.121094 228.914062 257.027344 228.820312 256.910156 228.820312 C 256.792969 228.820312 256.699219 228.914062 256.699219 229.03125 C 256.699219 229.148438 256.792969 229.242188 256.910156 229.242188 C 257.027344 229.242188 257.121094 229.148438 257.121094 229.03125 Z M 257.121094 229.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.878906 228.957031 C 256.878906 228.839844 256.785156 228.746094 256.667969 228.746094 C 256.550781 228.746094 256.457031 228.839844 256.457031 228.957031 C 256.457031 229.074219 256.550781 229.167969 256.667969 229.167969 C 256.785156 229.167969 256.878906 229.074219 256.878906 228.957031 Z M 256.878906 228.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.882812 228.5 C 255.882812 228.382812 255.789062 228.289062 255.671875 228.289062 C 255.554688 228.289062 255.460938 228.382812 255.460938 228.5 C 255.460938 228.617188 255.554688 228.710938 255.671875 228.710938 C 255.789062 228.710938 255.882812 228.617188 255.882812 228.5 Z M 255.882812 228.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.652344 231.542969 C 256.652344 231.425781 256.558594 231.332031 256.441406 231.332031 C 256.324219 231.332031 256.230469 231.425781 256.230469 231.542969 C 256.230469 231.660156 256.324219 231.753906 256.441406 231.753906 C 256.558594 231.753906 256.652344 231.660156 256.652344 231.542969 Z M 256.652344 231.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.5625 231.875 C 254.5625 231.757812 254.46875 231.664062 254.351562 231.664062 C 254.234375 231.664062 254.140625 231.757812 254.140625 231.875 C 254.140625 231.992188 254.234375 232.085938 254.351562 232.085938 C 254.46875 232.085938 254.5625 231.992188 254.5625 231.875 Z M 254.5625 231.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.21875 230.804688 C 252.21875 230.6875 252.125 230.59375 252.007812 230.59375 C 251.890625 230.59375 251.796875 230.6875 251.796875 230.804688 C 251.796875 230.921875 251.890625 231.015625 252.007812 231.015625 C 252.125 231.015625 252.21875 230.921875 252.21875 230.804688 Z M 252.21875 230.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.734375 227.167969 C 249.734375 227.050781 249.640625 226.957031 249.523438 226.957031 C 249.40625 226.957031 249.3125 227.050781 249.3125 227.167969 C 249.3125 227.285156 249.40625 227.378906 249.523438 227.378906 C 249.640625 227.378906 249.734375 227.285156 249.734375 227.167969 Z M 249.734375 227.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.003906 225.675781 C 252.003906 225.558594 251.910156 225.464844 251.792969 225.464844 C 251.675781 225.464844 251.582031 225.558594 251.582031 225.675781 C 251.582031 225.792969 251.675781 225.886719 251.792969 225.886719 C 251.910156 225.886719 252.003906 225.792969 252.003906 225.675781 Z M 252.003906 225.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.328125 226.96875 C 253.328125 226.851562 253.234375 226.757812 253.117188 226.757812 C 253 226.757812 252.90625 226.851562 252.90625 226.96875 C 252.90625 227.085938 253 227.179688 253.117188 227.179688 C 253.234375 227.179688 253.328125 227.085938 253.328125 226.96875 Z M 253.328125 226.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.277344 227.699219 C 254.277344 227.582031 254.183594 227.488281 254.066406 227.488281 C 253.949219 227.488281 253.855469 227.582031 253.855469 227.699219 C 253.855469 227.816406 253.949219 227.910156 254.066406 227.910156 C 254.183594 227.910156 254.277344 227.816406 254.277344 227.699219 Z M 254.277344 227.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.648438 223.125 C 254.648438 223.007812 254.554688 222.914062 254.4375 222.914062 C 254.320312 222.914062 254.226562 223.007812 254.226562 223.125 C 254.226562 223.242188 254.320312 223.335938 254.4375 223.335938 C 254.554688 223.335938 254.648438 223.242188 254.648438 223.125 Z M 254.648438 223.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.578125 221.832031 C 256.578125 221.714844 256.484375 221.621094 256.367188 221.621094 C 256.25 221.621094 256.15625 221.714844 256.15625 221.832031 C 256.15625 221.949219 256.25 222.042969 256.367188 222.042969 C 256.484375 222.042969 256.578125 221.949219 256.578125 221.832031 Z M 256.578125 221.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.933594 222.988281 C 256.933594 222.871094 256.839844 222.777344 256.722656 222.777344 C 256.605469 222.777344 256.511719 222.871094 256.511719 222.988281 C 256.511719 223.105469 256.605469 223.199219 256.722656 223.199219 C 256.839844 223.199219 256.933594 223.105469 256.933594 222.988281 Z M 256.933594 222.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.136719 222.554688 C 259.136719 222.4375 259.042969 222.34375 258.925781 222.34375 C 258.808594 222.34375 258.714844 222.4375 258.714844 222.554688 C 258.714844 222.671875 258.808594 222.765625 258.925781 222.765625 C 259.042969 222.765625 259.136719 222.671875 259.136719 222.554688 Z M 259.136719 222.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.707031 222.304688 C 260.707031 222.1875 260.613281 222.09375 260.496094 222.09375 C 260.378906 222.09375 260.285156 222.1875 260.285156 222.304688 C 260.285156 222.421875 260.378906 222.515625 260.496094 222.515625 C 260.613281 222.515625 260.707031 222.421875 260.707031 222.304688 Z M 260.707031 222.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.394531 221.480469 C 259.394531 221.363281 259.300781 221.269531 259.183594 221.269531 C 259.066406 221.269531 258.972656 221.363281 258.972656 221.480469 C 258.972656 221.597656 259.066406 221.691406 259.183594 221.691406 C 259.300781 221.691406 259.394531 221.597656 259.394531 221.480469 Z M 259.394531 221.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.484375 221.75 C 260.484375 221.632812 260.390625 221.539062 260.273438 221.539062 C 260.15625 221.539062 260.0625 221.632812 260.0625 221.75 C 260.0625 221.867188 260.15625 221.960938 260.273438 221.960938 C 260.390625 221.960938 260.484375 221.867188 260.484375 221.75 Z M 260.484375 221.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.089844 222.695312 C 260.089844 222.578125 259.996094 222.484375 259.878906 222.484375 C 259.761719 222.484375 259.667969 222.578125 259.667969 222.695312 C 259.667969 222.8125 259.761719 222.90625 259.878906 222.90625 C 259.996094 222.90625 260.089844 222.8125 260.089844 222.695312 Z M 260.089844 222.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.296875 222.691406 C 261.296875 222.574219 261.203125 222.480469 261.085938 222.480469 C 260.96875 222.480469 260.875 222.574219 260.875 222.691406 C 260.875 222.808594 260.96875 222.902344 261.085938 222.902344 C 261.203125 222.902344 261.296875 222.808594 261.296875 222.691406 Z M 261.296875 222.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.792969 223.515625 C 263.792969 223.398438 263.699219 223.304688 263.582031 223.304688 C 263.464844 223.304688 263.371094 223.398438 263.371094 223.515625 C 263.371094 223.632812 263.464844 223.726562 263.582031 223.726562 C 263.699219 223.726562 263.792969 223.632812 263.792969 223.515625 Z M 263.792969 223.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.441406 224.078125 C 262.441406 223.960938 262.347656 223.867188 262.230469 223.867188 C 262.113281 223.867188 262.019531 223.960938 262.019531 224.078125 C 262.019531 224.195312 262.113281 224.289062 262.230469 224.289062 C 262.347656 224.289062 262.441406 224.195312 262.441406 224.078125 Z M 262.441406 224.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.488281 225.355469 C 262.488281 225.238281 262.394531 225.144531 262.277344 225.144531 C 262.160156 225.144531 262.066406 225.238281 262.066406 225.355469 C 262.066406 225.472656 262.160156 225.566406 262.277344 225.566406 C 262.394531 225.566406 262.488281 225.472656 262.488281 225.355469 Z M 262.488281 225.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.625 227 C 258.625 226.882812 258.53125 226.789062 258.414062 226.789062 C 258.296875 226.789062 258.203125 226.882812 258.203125 227 C 258.203125 227.117188 258.296875 227.210938 258.414062 227.210938 C 258.53125 227.210938 258.625 227.117188 258.625 227 Z M 258.625 227 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.835938 225.671875 C 257.835938 225.554688 257.742188 225.460938 257.625 225.460938 C 257.507812 225.460938 257.414062 225.554688 257.414062 225.671875 C 257.414062 225.789062 257.507812 225.882812 257.625 225.882812 C 257.742188 225.882812 257.835938 225.789062 257.835938 225.671875 Z M 257.835938 225.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.964844 224.699219 C 259.964844 224.582031 259.871094 224.488281 259.753906 224.488281 C 259.636719 224.488281 259.542969 224.582031 259.542969 224.699219 C 259.542969 224.816406 259.636719 224.910156 259.753906 224.910156 C 259.871094 224.910156 259.964844 224.816406 259.964844 224.699219 Z M 259.964844 224.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.601562 220.644531 C 258.601562 220.527344 258.507812 220.433594 258.390625 220.433594 C 258.273438 220.433594 258.179688 220.527344 258.179688 220.644531 C 258.179688 220.761719 258.273438 220.855469 258.390625 220.855469 C 258.507812 220.855469 258.601562 220.761719 258.601562 220.644531 Z M 258.601562 220.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.597656 220.414062 C 255.597656 220.296875 255.503906 220.203125 255.386719 220.203125 C 255.269531 220.203125 255.175781 220.296875 255.175781 220.414062 C 255.175781 220.53125 255.269531 220.625 255.386719 220.625 C 255.503906 220.625 255.597656 220.53125 255.597656 220.414062 Z M 255.597656 220.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.984375 223.074219 C 254.984375 222.957031 254.890625 222.863281 254.773438 222.863281 C 254.65625 222.863281 254.5625 222.957031 254.5625 223.074219 C 254.5625 223.191406 254.65625 223.285156 254.773438 223.285156 C 254.890625 223.285156 254.984375 223.191406 254.984375 223.074219 Z M 254.984375 223.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.910156 219.550781 C 261.910156 219.433594 261.816406 219.339844 261.699219 219.339844 C 261.582031 219.339844 261.488281 219.433594 261.488281 219.550781 C 261.488281 219.667969 261.582031 219.761719 261.699219 219.761719 C 261.816406 219.761719 261.910156 219.667969 261.910156 219.550781 Z M 261.910156 219.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.703125 220.089844 C 261.703125 219.972656 261.609375 219.878906 261.492188 219.878906 C 261.375 219.878906 261.28125 219.972656 261.28125 220.089844 C 261.28125 220.207031 261.375 220.300781 261.492188 220.300781 C 261.609375 220.300781 261.703125 220.207031 261.703125 220.089844 Z M 261.703125 220.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.523438 222.644531 C 261.523438 222.527344 261.429688 222.433594 261.3125 222.433594 C 261.195312 222.433594 261.101562 222.527344 261.101562 222.644531 C 261.101562 222.761719 261.195312 222.855469 261.3125 222.855469 C 261.429688 222.855469 261.523438 222.761719 261.523438 222.644531 Z M 261.523438 222.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.597656 224.519531 C 260.597656 224.402344 260.503906 224.308594 260.386719 224.308594 C 260.269531 224.308594 260.175781 224.402344 260.175781 224.519531 C 260.175781 224.636719 260.269531 224.730469 260.386719 224.730469 C 260.503906 224.730469 260.597656 224.636719 260.597656 224.519531 Z M 260.597656 224.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.292969 226.039062 C 259.292969 225.921875 259.199219 225.828125 259.082031 225.828125 C 258.964844 225.828125 258.871094 225.921875 258.871094 226.039062 C 258.871094 226.15625 258.964844 226.25 259.082031 226.25 C 259.199219 226.25 259.292969 226.15625 259.292969 226.039062 Z M 259.292969 226.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.75 225.015625 C 257.75 224.898438 257.65625 224.804688 257.539062 224.804688 C 257.421875 224.804688 257.328125 224.898438 257.328125 225.015625 C 257.328125 225.132812 257.421875 225.226562 257.539062 225.226562 C 257.65625 225.226562 257.75 225.132812 257.75 225.015625 Z M 257.75 225.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.101562 225.828125 C 256.101562 225.710938 256.007812 225.617188 255.890625 225.617188 C 255.773438 225.617188 255.679688 225.710938 255.679688 225.828125 C 255.679688 225.945312 255.773438 226.039062 255.890625 226.039062 C 256.007812 226.039062 256.101562 225.945312 256.101562 225.828125 Z M 256.101562 225.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.546875 224.488281 C 254.546875 224.371094 254.453125 224.277344 254.335938 224.277344 C 254.21875 224.277344 254.125 224.371094 254.125 224.488281 C 254.125 224.605469 254.21875 224.699219 254.335938 224.699219 C 254.453125 224.699219 254.546875 224.605469 254.546875 224.488281 Z M 254.546875 224.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.949219 221.71875 C 247.949219 221.601562 247.855469 221.507812 247.738281 221.507812 C 247.621094 221.507812 247.527344 221.601562 247.527344 221.71875 C 247.527344 221.835938 247.621094 221.929688 247.738281 221.929688 C 247.855469 221.929688 247.949219 221.835938 247.949219 221.71875 Z M 247.949219 221.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.800781 222.636719 C 248.800781 222.519531 248.707031 222.425781 248.589844 222.425781 C 248.472656 222.425781 248.378906 222.519531 248.378906 222.636719 C 248.378906 222.753906 248.472656 222.847656 248.589844 222.847656 C 248.707031 222.847656 248.800781 222.753906 248.800781 222.636719 Z M 248.800781 222.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.539062 224.035156 C 245.539062 223.917969 245.445312 223.824219 245.328125 223.824219 C 245.210938 223.824219 245.117188 223.917969 245.117188 224.035156 C 245.117188 224.152344 245.210938 224.246094 245.328125 224.246094 C 245.445312 224.246094 245.539062 224.152344 245.539062 224.035156 Z M 245.539062 224.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.484375 227.632812 C 245.484375 227.515625 245.390625 227.421875 245.273438 227.421875 C 245.15625 227.421875 245.0625 227.515625 245.0625 227.632812 C 245.0625 227.75 245.15625 227.84375 245.273438 227.84375 C 245.390625 227.84375 245.484375 227.75 245.484375 227.632812 Z M 245.484375 227.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.804688 225.050781 C 244.804688 224.933594 244.710938 224.839844 244.59375 224.839844 C 244.476562 224.839844 244.382812 224.933594 244.382812 225.050781 C 244.382812 225.167969 244.476562 225.261719 244.59375 225.261719 C 244.710938 225.261719 244.804688 225.167969 244.804688 225.050781 Z M 244.804688 225.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.167969 226.449219 C 240.167969 226.332031 240.074219 226.238281 239.957031 226.238281 C 239.839844 226.238281 239.746094 226.332031 239.746094 226.449219 C 239.746094 226.566406 239.839844 226.660156 239.957031 226.660156 C 240.074219 226.660156 240.167969 226.566406 240.167969 226.449219 Z M 240.167969 226.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.847656 225.679688 C 238.847656 225.5625 238.753906 225.46875 238.636719 225.46875 C 238.519531 225.46875 238.425781 225.5625 238.425781 225.679688 C 238.425781 225.796875 238.519531 225.890625 238.636719 225.890625 C 238.753906 225.890625 238.847656 225.796875 238.847656 225.679688 Z M 238.847656 225.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.78125 221.492188 C 239.78125 221.375 239.6875 221.28125 239.570312 221.28125 C 239.453125 221.28125 239.359375 221.375 239.359375 221.492188 C 239.359375 221.609375 239.453125 221.703125 239.570312 221.703125 C 239.6875 221.703125 239.78125 221.609375 239.78125 221.492188 Z M 239.78125 221.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.367188 222.820312 C 242.367188 222.703125 242.273438 222.609375 242.15625 222.609375 C 242.039062 222.609375 241.945312 222.703125 241.945312 222.820312 C 241.945312 222.9375 242.039062 223.03125 242.15625 223.03125 C 242.273438 223.03125 242.367188 222.9375 242.367188 222.820312 Z M 242.367188 222.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.644531 222.34375 C 243.644531 222.226562 243.550781 222.132812 243.433594 222.132812 C 243.316406 222.132812 243.222656 222.226562 243.222656 222.34375 C 243.222656 222.460938 243.316406 222.554688 243.433594 222.554688 C 243.550781 222.554688 243.644531 222.460938 243.644531 222.34375 Z M 243.644531 222.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.21875 223.375 C 246.21875 223.257812 246.125 223.164062 246.007812 223.164062 C 245.890625 223.164062 245.796875 223.257812 245.796875 223.375 C 245.796875 223.492188 245.890625 223.585938 246.007812 223.585938 C 246.125 223.585938 246.21875 223.492188 246.21875 223.375 Z M 246.21875 223.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.726562 227.132812 C 246.726562 227.015625 246.632812 226.921875 246.515625 226.921875 C 246.398438 226.921875 246.304688 227.015625 246.304688 227.132812 C 246.304688 227.25 246.398438 227.34375 246.515625 227.34375 C 246.632812 227.34375 246.726562 227.25 246.726562 227.132812 Z M 246.726562 227.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.382812 225.765625 C 246.382812 225.648438 246.289062 225.554688 246.171875 225.554688 C 246.054688 225.554688 245.960938 225.648438 245.960938 225.765625 C 245.960938 225.882812 246.054688 225.976562 246.171875 225.976562 C 246.289062 225.976562 246.382812 225.882812 246.382812 225.765625 Z M 246.382812 225.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.925781 223.613281 C 245.925781 223.496094 245.832031 223.402344 245.714844 223.402344 C 245.597656 223.402344 245.503906 223.496094 245.503906 223.613281 C 245.503906 223.730469 245.597656 223.824219 245.714844 223.824219 C 245.832031 223.824219 245.925781 223.730469 245.925781 223.613281 Z M 245.925781 223.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.507812 227.773438 C 245.507812 227.65625 245.414062 227.5625 245.296875 227.5625 C 245.179688 227.5625 245.085938 227.65625 245.085938 227.773438 C 245.085938 227.890625 245.179688 227.984375 245.296875 227.984375 C 245.414062 227.984375 245.507812 227.890625 245.507812 227.773438 Z M 245.507812 227.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.535156 230.183594 C 250.535156 230.066406 250.441406 229.972656 250.324219 229.972656 C 250.207031 229.972656 250.113281 230.066406 250.113281 230.183594 C 250.113281 230.300781 250.207031 230.394531 250.324219 230.394531 C 250.441406 230.394531 250.535156 230.300781 250.535156 230.183594 Z M 250.535156 230.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.976562 229.554688 C 249.976562 229.4375 249.882812 229.34375 249.765625 229.34375 C 249.648438 229.34375 249.554688 229.4375 249.554688 229.554688 C 249.554688 229.671875 249.648438 229.765625 249.765625 229.765625 C 249.882812 229.765625 249.976562 229.671875 249.976562 229.554688 Z M 249.976562 229.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.546875 228.027344 C 247.546875 227.910156 247.453125 227.816406 247.335938 227.816406 C 247.21875 227.816406 247.125 227.910156 247.125 228.027344 C 247.125 228.144531 247.21875 228.238281 247.335938 228.238281 C 247.453125 228.238281 247.546875 228.144531 247.546875 228.027344 Z M 247.546875 228.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.457031 226.101562 C 249.457031 225.984375 249.363281 225.890625 249.246094 225.890625 C 249.128906 225.890625 249.035156 225.984375 249.035156 226.101562 C 249.035156 226.21875 249.128906 226.3125 249.246094 226.3125 C 249.363281 226.3125 249.457031 226.21875 249.457031 226.101562 Z M 249.457031 226.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.414062 225.878906 C 248.414062 225.761719 248.320312 225.667969 248.203125 225.667969 C 248.085938 225.667969 247.992188 225.761719 247.992188 225.878906 C 247.992188 225.996094 248.085938 226.089844 248.203125 226.089844 C 248.320312 226.089844 248.414062 225.996094 248.414062 225.878906 Z M 248.414062 225.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.96875 231.410156 C 250.96875 231.292969 250.875 231.199219 250.757812 231.199219 C 250.640625 231.199219 250.546875 231.292969 250.546875 231.410156 C 250.546875 231.527344 250.640625 231.621094 250.757812 231.621094 C 250.875 231.621094 250.96875 231.527344 250.96875 231.410156 Z M 250.96875 231.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.898438 230.40625 C 249.898438 230.289062 249.804688 230.195312 249.6875 230.195312 C 249.570312 230.195312 249.476562 230.289062 249.476562 230.40625 C 249.476562 230.523438 249.570312 230.617188 249.6875 230.617188 C 249.804688 230.617188 249.898438 230.523438 249.898438 230.40625 Z M 249.898438 230.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.382812 230.335938 C 250.382812 230.21875 250.289062 230.125 250.171875 230.125 C 250.054688 230.125 249.960938 230.21875 249.960938 230.335938 C 249.960938 230.453125 250.054688 230.546875 250.171875 230.546875 C 250.289062 230.546875 250.382812 230.453125 250.382812 230.335938 Z M 250.382812 230.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.152344 229.683594 C 247.152344 229.566406 247.058594 229.472656 246.941406 229.472656 C 246.824219 229.472656 246.730469 229.566406 246.730469 229.683594 C 246.730469 229.800781 246.824219 229.894531 246.941406 229.894531 C 247.058594 229.894531 247.152344 229.800781 247.152344 229.683594 Z M 247.152344 229.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.730469 232.492188 C 247.730469 232.375 247.636719 232.28125 247.519531 232.28125 C 247.402344 232.28125 247.308594 232.375 247.308594 232.492188 C 247.308594 232.609375 247.402344 232.703125 247.519531 232.703125 C 247.636719 232.703125 247.730469 232.609375 247.730469 232.492188 Z M 247.730469 232.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.554688 234.027344 C 249.554688 233.910156 249.460938 233.816406 249.34375 233.816406 C 249.226562 233.816406 249.132812 233.910156 249.132812 234.027344 C 249.132812 234.144531 249.226562 234.238281 249.34375 234.238281 C 249.460938 234.238281 249.554688 234.144531 249.554688 234.027344 Z M 249.554688 234.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.167969 236.972656 C 247.167969 236.855469 247.074219 236.761719 246.957031 236.761719 C 246.839844 236.761719 246.746094 236.855469 246.746094 236.972656 C 246.746094 237.089844 246.839844 237.183594 246.957031 237.183594 C 247.074219 237.183594 247.167969 237.089844 247.167969 236.972656 Z M 247.167969 236.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.414062 233.136719 C 242.414062 233.019531 242.320312 232.925781 242.203125 232.925781 C 242.085938 232.925781 241.992188 233.019531 241.992188 233.136719 C 241.992188 233.253906 242.085938 233.347656 242.203125 233.347656 C 242.320312 233.347656 242.414062 233.253906 242.414062 233.136719 Z M 242.414062 233.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.125 229.824219 C 241.125 229.707031 241.03125 229.613281 240.914062 229.613281 C 240.796875 229.613281 240.703125 229.707031 240.703125 229.824219 C 240.703125 229.941406 240.796875 230.035156 240.914062 230.035156 C 241.03125 230.035156 241.125 229.941406 241.125 229.824219 Z M 241.125 229.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.742188 232.65625 C 239.742188 232.539062 239.648438 232.445312 239.53125 232.445312 C 239.414062 232.445312 239.320312 232.539062 239.320312 232.65625 C 239.320312 232.773438 239.414062 232.867188 239.53125 232.867188 C 239.648438 232.867188 239.742188 232.773438 239.742188 232.65625 Z M 239.742188 232.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.769531 231.757812 C 242.769531 231.640625 242.675781 231.546875 242.558594 231.546875 C 242.441406 231.546875 242.347656 231.640625 242.347656 231.757812 C 242.347656 231.875 242.441406 231.96875 242.558594 231.96875 C 242.675781 231.96875 242.769531 231.875 242.769531 231.757812 Z M 242.769531 231.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.109375 233.789062 C 243.109375 233.671875 243.015625 233.578125 242.898438 233.578125 C 242.78125 233.578125 242.6875 233.671875 242.6875 233.789062 C 242.6875 233.90625 242.78125 234 242.898438 234 C 243.015625 234 243.109375 233.90625 243.109375 233.789062 Z M 243.109375 233.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.292969 231.992188 C 244.292969 231.875 244.199219 231.78125 244.082031 231.78125 C 243.964844 231.78125 243.871094 231.875 243.871094 231.992188 C 243.871094 232.109375 243.964844 232.203125 244.082031 232.203125 C 244.199219 232.203125 244.292969 232.109375 244.292969 231.992188 Z M 244.292969 231.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.839844 235.222656 C 244.839844 235.105469 244.746094 235.011719 244.628906 235.011719 C 244.511719 235.011719 244.417969 235.105469 244.417969 235.222656 C 244.417969 235.339844 244.511719 235.433594 244.628906 235.433594 C 244.746094 235.433594 244.839844 235.339844 244.839844 235.222656 Z M 244.839844 235.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.582031 232.578125 C 242.582031 232.460938 242.488281 232.367188 242.371094 232.367188 C 242.253906 232.367188 242.160156 232.460938 242.160156 232.578125 C 242.160156 232.695312 242.253906 232.789062 242.371094 232.789062 C 242.488281 232.789062 242.582031 232.695312 242.582031 232.578125 Z M 242.582031 232.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.246094 232.011719 C 242.246094 231.894531 242.152344 231.800781 242.035156 231.800781 C 241.917969 231.800781 241.824219 231.894531 241.824219 232.011719 C 241.824219 232.128906 241.917969 232.222656 242.035156 232.222656 C 242.152344 232.222656 242.246094 232.128906 242.246094 232.011719 Z M 242.246094 232.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.648438 228.605469 C 243.648438 228.488281 243.554688 228.394531 243.4375 228.394531 C 243.320312 228.394531 243.226562 228.488281 243.226562 228.605469 C 243.226562 228.722656 243.320312 228.816406 243.4375 228.816406 C 243.554688 228.816406 243.648438 228.722656 243.648438 228.605469 Z M 243.648438 228.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.457031 227.183594 C 245.457031 227.066406 245.363281 226.972656 245.246094 226.972656 C 245.128906 226.972656 245.035156 227.066406 245.035156 227.183594 C 245.035156 227.300781 245.128906 227.394531 245.246094 227.394531 C 245.363281 227.394531 245.457031 227.300781 245.457031 227.183594 Z M 245.457031 227.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.816406 225.691406 C 245.816406 225.574219 245.722656 225.480469 245.605469 225.480469 C 245.488281 225.480469 245.394531 225.574219 245.394531 225.691406 C 245.394531 225.808594 245.488281 225.902344 245.605469 225.902344 C 245.722656 225.902344 245.816406 225.808594 245.816406 225.691406 Z M 245.816406 225.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.460938 227.71875 C 247.460938 227.601562 247.367188 227.507812 247.25 227.507812 C 247.132812 227.507812 247.039062 227.601562 247.039062 227.71875 C 247.039062 227.835938 247.132812 227.929688 247.25 227.929688 C 247.367188 227.929688 247.460938 227.835938 247.460938 227.71875 Z M 247.460938 227.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.089844 227.183594 C 248.089844 227.066406 247.996094 226.972656 247.878906 226.972656 C 247.761719 226.972656 247.667969 227.066406 247.667969 227.183594 C 247.667969 227.300781 247.761719 227.394531 247.878906 227.394531 C 247.996094 227.394531 248.089844 227.300781 248.089844 227.183594 Z M 248.089844 227.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.753906 227.507812 C 247.753906 227.390625 247.660156 227.296875 247.542969 227.296875 C 247.425781 227.296875 247.332031 227.390625 247.332031 227.507812 C 247.332031 227.625 247.425781 227.71875 247.542969 227.71875 C 247.660156 227.71875 247.753906 227.625 247.753906 227.507812 Z M 247.753906 227.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.808594 225.289062 C 249.808594 225.171875 249.714844 225.078125 249.597656 225.078125 C 249.480469 225.078125 249.386719 225.171875 249.386719 225.289062 C 249.386719 225.40625 249.480469 225.5 249.597656 225.5 C 249.714844 225.5 249.808594 225.40625 249.808594 225.289062 Z M 249.808594 225.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.585938 225.140625 C 249.585938 225.023438 249.492188 224.929688 249.375 224.929688 C 249.257812 224.929688 249.164062 225.023438 249.164062 225.140625 C 249.164062 225.257812 249.257812 225.351562 249.375 225.351562 C 249.492188 225.351562 249.585938 225.257812 249.585938 225.140625 Z M 249.585938 225.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.304688 225.316406 C 249.304688 225.199219 249.210938 225.105469 249.09375 225.105469 C 248.976562 225.105469 248.882812 225.199219 248.882812 225.316406 C 248.882812 225.433594 248.976562 225.527344 249.09375 225.527344 C 249.210938 225.527344 249.304688 225.433594 249.304688 225.316406 Z M 249.304688 225.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.277344 221.46875 C 249.277344 221.351562 249.183594 221.257812 249.066406 221.257812 C 248.949219 221.257812 248.855469 221.351562 248.855469 221.46875 C 248.855469 221.585938 248.949219 221.679688 249.066406 221.679688 C 249.183594 221.679688 249.277344 221.585938 249.277344 221.46875 Z M 249.277344 221.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.03125 223.578125 C 246.03125 223.460938 245.9375 223.367188 245.820312 223.367188 C 245.703125 223.367188 245.609375 223.460938 245.609375 223.578125 C 245.609375 223.695312 245.703125 223.789062 245.820312 223.789062 C 245.9375 223.789062 246.03125 223.695312 246.03125 223.578125 Z M 246.03125 223.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.933594 224.09375 C 245.933594 223.976562 245.839844 223.882812 245.722656 223.882812 C 245.605469 223.882812 245.511719 223.976562 245.511719 224.09375 C 245.511719 224.210938 245.605469 224.304688 245.722656 224.304688 C 245.839844 224.304688 245.933594 224.210938 245.933594 224.09375 Z M 245.933594 224.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.605469 225.050781 C 243.605469 224.933594 243.511719 224.839844 243.394531 224.839844 C 243.277344 224.839844 243.183594 224.933594 243.183594 225.050781 C 243.183594 225.167969 243.277344 225.261719 243.394531 225.261719 C 243.511719 225.261719 243.605469 225.167969 243.605469 225.050781 Z M 243.605469 225.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.921875 224.125 C 240.921875 224.007812 240.828125 223.914062 240.710938 223.914062 C 240.59375 223.914062 240.5 224.007812 240.5 224.125 C 240.5 224.242188 240.59375 224.335938 240.710938 224.335938 C 240.828125 224.335938 240.921875 224.242188 240.921875 224.125 Z M 240.921875 224.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.613281 221.960938 C 237.613281 221.84375 237.519531 221.75 237.402344 221.75 C 237.285156 221.75 237.191406 221.84375 237.191406 221.960938 C 237.191406 222.078125 237.285156 222.171875 237.402344 222.171875 C 237.519531 222.171875 237.613281 222.078125 237.613281 221.960938 Z M 237.613281 221.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.644531 225.636719 C 239.644531 225.519531 239.550781 225.425781 239.433594 225.425781 C 239.316406 225.425781 239.222656 225.519531 239.222656 225.636719 C 239.222656 225.753906 239.316406 225.847656 239.433594 225.847656 C 239.550781 225.847656 239.644531 225.753906 239.644531 225.636719 Z M 239.644531 225.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.867188 223.542969 C 242.867188 223.425781 242.773438 223.332031 242.65625 223.332031 C 242.539062 223.332031 242.445312 223.425781 242.445312 223.542969 C 242.445312 223.660156 242.539062 223.753906 242.65625 223.753906 C 242.773438 223.753906 242.867188 223.660156 242.867188 223.542969 Z M 242.867188 223.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.722656 224.300781 C 240.722656 224.183594 240.628906 224.089844 240.511719 224.089844 C 240.394531 224.089844 240.300781 224.183594 240.300781 224.300781 C 240.300781 224.417969 240.394531 224.511719 240.511719 224.511719 C 240.628906 224.511719 240.722656 224.417969 240.722656 224.300781 Z M 240.722656 224.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.300781 224.59375 C 241.300781 224.476562 241.207031 224.382812 241.089844 224.382812 C 240.972656 224.382812 240.878906 224.476562 240.878906 224.59375 C 240.878906 224.710938 240.972656 224.804688 241.089844 224.804688 C 241.207031 224.804688 241.300781 224.710938 241.300781 224.59375 Z M 241.300781 224.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.925781 230.738281 C 238.925781 230.621094 238.832031 230.527344 238.714844 230.527344 C 238.597656 230.527344 238.503906 230.621094 238.503906 230.738281 C 238.503906 230.855469 238.597656 230.949219 238.714844 230.949219 C 238.832031 230.949219 238.925781 230.855469 238.925781 230.738281 Z M 238.925781 230.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.433594 232.335938 C 237.433594 232.21875 237.339844 232.125 237.222656 232.125 C 237.105469 232.125 237.011719 232.21875 237.011719 232.335938 C 237.011719 232.453125 237.105469 232.546875 237.222656 232.546875 C 237.339844 232.546875 237.433594 232.453125 237.433594 232.335938 Z M 237.433594 232.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.828125 235.355469 C 234.828125 235.238281 234.734375 235.144531 234.617188 235.144531 C 234.5 235.144531 234.40625 235.238281 234.40625 235.355469 C 234.40625 235.472656 234.5 235.566406 234.617188 235.566406 C 234.734375 235.566406 234.828125 235.472656 234.828125 235.355469 Z M 234.828125 235.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.289062 236.8125 C 235.289062 236.695312 235.195312 236.601562 235.078125 236.601562 C 234.960938 236.601562 234.867188 236.695312 234.867188 236.8125 C 234.867188 236.929688 234.960938 237.023438 235.078125 237.023438 C 235.195312 237.023438 235.289062 236.929688 235.289062 236.8125 Z M 235.289062 236.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.574219 233.382812 C 236.574219 233.265625 236.480469 233.171875 236.363281 233.171875 C 236.246094 233.171875 236.152344 233.265625 236.152344 233.382812 C 236.152344 233.5 236.246094 233.59375 236.363281 233.59375 C 236.480469 233.59375 236.574219 233.5 236.574219 233.382812 Z M 236.574219 233.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.972656 232.144531 C 237.972656 232.027344 237.878906 231.933594 237.761719 231.933594 C 237.644531 231.933594 237.550781 232.027344 237.550781 232.144531 C 237.550781 232.261719 237.644531 232.355469 237.761719 232.355469 C 237.878906 232.355469 237.972656 232.261719 237.972656 232.144531 Z M 237.972656 232.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.597656 232.695312 C 237.597656 232.578125 237.503906 232.484375 237.386719 232.484375 C 237.269531 232.484375 237.175781 232.578125 237.175781 232.695312 C 237.175781 232.8125 237.269531 232.90625 237.386719 232.90625 C 237.503906 232.90625 237.597656 232.8125 237.597656 232.695312 Z M 237.597656 232.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.871094 231.800781 C 234.871094 231.683594 234.777344 231.589844 234.660156 231.589844 C 234.542969 231.589844 234.449219 231.683594 234.449219 231.800781 C 234.449219 231.917969 234.542969 232.011719 234.660156 232.011719 C 234.777344 232.011719 234.871094 231.917969 234.871094 231.800781 Z M 234.871094 231.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.984375 232.46875 C 235.984375 232.351562 235.890625 232.257812 235.773438 232.257812 C 235.65625 232.257812 235.5625 232.351562 235.5625 232.46875 C 235.5625 232.585938 235.65625 232.679688 235.773438 232.679688 C 235.890625 232.679688 235.984375 232.585938 235.984375 232.46875 Z M 235.984375 232.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.75 233.347656 C 233.75 233.230469 233.65625 233.136719 233.539062 233.136719 C 233.421875 233.136719 233.328125 233.230469 233.328125 233.347656 C 233.328125 233.464844 233.421875 233.558594 233.539062 233.558594 C 233.65625 233.558594 233.75 233.464844 233.75 233.347656 Z M 233.75 233.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.640625 232.96875 C 230.640625 232.851562 230.546875 232.757812 230.429688 232.757812 C 230.3125 232.757812 230.21875 232.851562 230.21875 232.96875 C 230.21875 233.085938 230.3125 233.179688 230.429688 233.179688 C 230.546875 233.179688 230.640625 233.085938 230.640625 232.96875 Z M 230.640625 232.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.382812 232.765625 C 229.382812 232.648438 229.289062 232.554688 229.171875 232.554688 C 229.054688 232.554688 228.960938 232.648438 228.960938 232.765625 C 228.960938 232.882812 229.054688 232.976562 229.171875 232.976562 C 229.289062 232.976562 229.382812 232.882812 229.382812 232.765625 Z M 229.382812 232.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.171875 233.167969 C 227.171875 233.050781 227.078125 232.957031 226.960938 232.957031 C 226.84375 232.957031 226.75 233.050781 226.75 233.167969 C 226.75 233.285156 226.84375 233.378906 226.960938 233.378906 C 227.078125 233.378906 227.171875 233.285156 227.171875 233.167969 Z M 227.171875 233.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.148438 226.828125 C 229.148438 226.710938 229.054688 226.617188 228.9375 226.617188 C 228.820312 226.617188 228.726562 226.710938 228.726562 226.828125 C 228.726562 226.945312 228.820312 227.039062 228.9375 227.039062 C 229.054688 227.039062 229.148438 226.945312 229.148438 226.828125 Z M 229.148438 226.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.957031 229.082031 C 230.957031 228.964844 230.863281 228.871094 230.746094 228.871094 C 230.628906 228.871094 230.535156 228.964844 230.535156 229.082031 C 230.535156 229.199219 230.628906 229.292969 230.746094 229.292969 C 230.863281 229.292969 230.957031 229.199219 230.957031 229.082031 Z M 230.957031 229.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.296875 231.328125 C 227.296875 231.210938 227.203125 231.117188 227.085938 231.117188 C 226.96875 231.117188 226.875 231.210938 226.875 231.328125 C 226.875 231.445312 226.96875 231.539062 227.085938 231.539062 C 227.203125 231.539062 227.296875 231.445312 227.296875 231.328125 Z M 227.296875 231.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.617188 233.335938 C 228.617188 233.21875 228.523438 233.125 228.40625 233.125 C 228.289062 233.125 228.195312 233.21875 228.195312 233.335938 C 228.195312 233.453125 228.289062 233.546875 228.40625 233.546875 C 228.523438 233.546875 228.617188 233.453125 228.617188 233.335938 Z M 228.617188 233.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.1875 238.308594 C 231.1875 238.191406 231.09375 238.097656 230.976562 238.097656 C 230.859375 238.097656 230.765625 238.191406 230.765625 238.308594 C 230.765625 238.425781 230.859375 238.519531 230.976562 238.519531 C 231.09375 238.519531 231.1875 238.425781 231.1875 238.308594 Z M 231.1875 238.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.199219 242.128906 C 233.199219 242.011719 233.105469 241.917969 232.988281 241.917969 C 232.871094 241.917969 232.777344 242.011719 232.777344 242.128906 C 232.777344 242.246094 232.871094 242.339844 232.988281 242.339844 C 233.105469 242.339844 233.199219 242.246094 233.199219 242.128906 Z M 233.199219 242.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.640625 244.382812 C 233.640625 244.265625 233.546875 244.171875 233.429688 244.171875 C 233.3125 244.171875 233.21875 244.265625 233.21875 244.382812 C 233.21875 244.5 233.3125 244.59375 233.429688 244.59375 C 233.546875 244.59375 233.640625 244.5 233.640625 244.382812 Z M 233.640625 244.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.367188 245.542969 C 230.367188 245.425781 230.273438 245.332031 230.15625 245.332031 C 230.039062 245.332031 229.945312 245.425781 229.945312 245.542969 C 229.945312 245.660156 230.039062 245.753906 230.15625 245.753906 C 230.273438 245.753906 230.367188 245.660156 230.367188 245.542969 Z M 230.367188 245.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.773438 246.714844 C 230.773438 246.597656 230.679688 246.503906 230.5625 246.503906 C 230.445312 246.503906 230.351562 246.597656 230.351562 246.714844 C 230.351562 246.832031 230.445312 246.925781 230.5625 246.925781 C 230.679688 246.925781 230.773438 246.832031 230.773438 246.714844 Z M 230.773438 246.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.203125 243.582031 C 228.203125 243.464844 228.109375 243.371094 227.992188 243.371094 C 227.875 243.371094 227.78125 243.464844 227.78125 243.582031 C 227.78125 243.699219 227.875 243.792969 227.992188 243.792969 C 228.109375 243.792969 228.203125 243.699219 228.203125 243.582031 Z M 228.203125 243.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.394531 240.609375 C 228.394531 240.492188 228.300781 240.398438 228.183594 240.398438 C 228.066406 240.398438 227.972656 240.492188 227.972656 240.609375 C 227.972656 240.726562 228.066406 240.820312 228.183594 240.820312 C 228.300781 240.820312 228.394531 240.726562 228.394531 240.609375 Z M 228.394531 240.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.882812 236.765625 C 228.882812 236.648438 228.789062 236.554688 228.671875 236.554688 C 228.554688 236.554688 228.460938 236.648438 228.460938 236.765625 C 228.460938 236.882812 228.554688 236.976562 228.671875 236.976562 C 228.789062 236.976562 228.882812 236.882812 228.882812 236.765625 Z M 228.882812 236.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.75 235.0625 C 227.75 234.945312 227.65625 234.851562 227.539062 234.851562 C 227.421875 234.851562 227.328125 234.945312 227.328125 235.0625 C 227.328125 235.179688 227.421875 235.273438 227.539062 235.273438 C 227.65625 235.273438 227.75 235.179688 227.75 235.0625 Z M 227.75 235.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.769531 238.609375 C 225.769531 238.492188 225.675781 238.398438 225.558594 238.398438 C 225.441406 238.398438 225.347656 238.492188 225.347656 238.609375 C 225.347656 238.726562 225.441406 238.820312 225.558594 238.820312 C 225.675781 238.820312 225.769531 238.726562 225.769531 238.609375 Z M 225.769531 238.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.351562 239.328125 C 227.351562 239.210938 227.257812 239.117188 227.140625 239.117188 C 227.023438 239.117188 226.929688 239.210938 226.929688 239.328125 C 226.929688 239.445312 227.023438 239.539062 227.140625 239.539062 C 227.257812 239.539062 227.351562 239.445312 227.351562 239.328125 Z M 227.351562 239.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.390625 241.996094 C 229.390625 241.878906 229.296875 241.785156 229.179688 241.785156 C 229.0625 241.785156 228.96875 241.878906 228.96875 241.996094 C 228.96875 242.113281 229.0625 242.207031 229.179688 242.207031 C 229.296875 242.207031 229.390625 242.113281 229.390625 241.996094 Z M 229.390625 241.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.96875 241.535156 C 227.96875 241.417969 227.875 241.324219 227.757812 241.324219 C 227.640625 241.324219 227.546875 241.417969 227.546875 241.535156 C 227.546875 241.652344 227.640625 241.746094 227.757812 241.746094 C 227.875 241.746094 227.96875 241.652344 227.96875 241.535156 Z M 227.96875 241.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.273438 244.253906 C 230.273438 244.136719 230.179688 244.042969 230.0625 244.042969 C 229.945312 244.042969 229.851562 244.136719 229.851562 244.253906 C 229.851562 244.371094 229.945312 244.464844 230.0625 244.464844 C 230.179688 244.464844 230.273438 244.371094 230.273438 244.253906 Z M 230.273438 244.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.730469 242.578125 C 228.730469 242.460938 228.636719 242.367188 228.519531 242.367188 C 228.402344 242.367188 228.308594 242.460938 228.308594 242.578125 C 228.308594 242.695312 228.402344 242.789062 228.519531 242.789062 C 228.636719 242.789062 228.730469 242.695312 228.730469 242.578125 Z M 228.730469 242.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.175781 245.203125 C 232.175781 245.085938 232.082031 244.992188 231.964844 244.992188 C 231.847656 244.992188 231.753906 245.085938 231.753906 245.203125 C 231.753906 245.320312 231.847656 245.414062 231.964844 245.414062 C 232.082031 245.414062 232.175781 245.320312 232.175781 245.203125 Z M 232.175781 245.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.617188 246.578125 C 233.617188 246.460938 233.523438 246.367188 233.40625 246.367188 C 233.289062 246.367188 233.195312 246.460938 233.195312 246.578125 C 233.195312 246.695312 233.289062 246.789062 233.40625 246.789062 C 233.523438 246.789062 233.617188 246.695312 233.617188 246.578125 Z M 233.617188 246.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.949219 245.648438 C 234.949219 245.53125 234.855469 245.4375 234.738281 245.4375 C 234.621094 245.4375 234.527344 245.53125 234.527344 245.648438 C 234.527344 245.765625 234.621094 245.859375 234.738281 245.859375 C 234.855469 245.859375 234.949219 245.765625 234.949219 245.648438 Z M 234.949219 245.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.273438 246.253906 C 234.273438 246.136719 234.179688 246.042969 234.0625 246.042969 C 233.945312 246.042969 233.851562 246.136719 233.851562 246.253906 C 233.851562 246.371094 233.945312 246.464844 234.0625 246.464844 C 234.179688 246.464844 234.273438 246.371094 234.273438 246.253906 Z M 234.273438 246.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.890625 246.730469 C 231.890625 246.613281 231.796875 246.519531 231.679688 246.519531 C 231.5625 246.519531 231.46875 246.613281 231.46875 246.730469 C 231.46875 246.847656 231.5625 246.941406 231.679688 246.941406 C 231.796875 246.941406 231.890625 246.847656 231.890625 246.730469 Z M 231.890625 246.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.757812 246.457031 C 231.757812 246.339844 231.664062 246.246094 231.546875 246.246094 C 231.429688 246.246094 231.335938 246.339844 231.335938 246.457031 C 231.335938 246.574219 231.429688 246.667969 231.546875 246.667969 C 231.664062 246.667969 231.757812 246.574219 231.757812 246.457031 Z M 231.757812 246.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.699219 249.460938 C 228.699219 249.34375 228.605469 249.25 228.488281 249.25 C 228.371094 249.25 228.277344 249.34375 228.277344 249.460938 C 228.277344 249.578125 228.371094 249.671875 228.488281 249.671875 C 228.605469 249.671875 228.699219 249.578125 228.699219 249.460938 Z M 228.699219 249.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.140625 246.710938 C 229.140625 246.59375 229.046875 246.5 228.929688 246.5 C 228.8125 246.5 228.71875 246.59375 228.71875 246.710938 C 228.71875 246.828125 228.8125 246.921875 228.929688 246.921875 C 229.046875 246.921875 229.140625 246.828125 229.140625 246.710938 Z M 229.140625 246.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.453125 247.664062 C 234.453125 247.546875 234.359375 247.453125 234.242188 247.453125 C 234.125 247.453125 234.03125 247.546875 234.03125 247.664062 C 234.03125 247.78125 234.125 247.875 234.242188 247.875 C 234.359375 247.875 234.453125 247.78125 234.453125 247.664062 Z M 234.453125 247.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.761719 250.523438 C 234.761719 250.40625 234.667969 250.3125 234.550781 250.3125 C 234.433594 250.3125 234.339844 250.40625 234.339844 250.523438 C 234.339844 250.640625 234.433594 250.734375 234.550781 250.734375 C 234.667969 250.734375 234.761719 250.640625 234.761719 250.523438 Z M 234.761719 250.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.554688 249.949219 C 235.554688 249.832031 235.460938 249.738281 235.34375 249.738281 C 235.226562 249.738281 235.132812 249.832031 235.132812 249.949219 C 235.132812 250.066406 235.226562 250.160156 235.34375 250.160156 C 235.460938 250.160156 235.554688 250.066406 235.554688 249.949219 Z M 235.554688 249.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.007812 253.589844 C 235.007812 253.472656 234.914062 253.378906 234.796875 253.378906 C 234.679688 253.378906 234.585938 253.472656 234.585938 253.589844 C 234.585938 253.707031 234.679688 253.800781 234.796875 253.800781 C 234.914062 253.800781 235.007812 253.707031 235.007812 253.589844 Z M 235.007812 253.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.691406 248.488281 C 235.691406 248.371094 235.597656 248.277344 235.480469 248.277344 C 235.363281 248.277344 235.269531 248.371094 235.269531 248.488281 C 235.269531 248.605469 235.363281 248.699219 235.480469 248.699219 C 235.597656 248.699219 235.691406 248.605469 235.691406 248.488281 Z M 235.691406 248.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.28125 244.582031 C 236.28125 244.464844 236.1875 244.371094 236.070312 244.371094 C 235.953125 244.371094 235.859375 244.464844 235.859375 244.582031 C 235.859375 244.699219 235.953125 244.792969 236.070312 244.792969 C 236.1875 244.792969 236.28125 244.699219 236.28125 244.582031 Z M 236.28125 244.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.796875 243.832031 C 232.796875 243.714844 232.703125 243.621094 232.585938 243.621094 C 232.46875 243.621094 232.375 243.714844 232.375 243.832031 C 232.375 243.949219 232.46875 244.042969 232.585938 244.042969 C 232.703125 244.042969 232.796875 243.949219 232.796875 243.832031 Z M 232.796875 243.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.785156 246.652344 C 233.785156 246.535156 233.691406 246.441406 233.574219 246.441406 C 233.457031 246.441406 233.363281 246.535156 233.363281 246.652344 C 233.363281 246.769531 233.457031 246.863281 233.574219 246.863281 C 233.691406 246.863281 233.785156 246.769531 233.785156 246.652344 Z M 233.785156 246.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.78125 247.457031 C 231.78125 247.339844 231.6875 247.246094 231.570312 247.246094 C 231.453125 247.246094 231.359375 247.339844 231.359375 247.457031 C 231.359375 247.574219 231.453125 247.667969 231.570312 247.667969 C 231.6875 247.667969 231.78125 247.574219 231.78125 247.457031 Z M 231.78125 247.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.851562 248.65625 C 229.851562 248.539062 229.757812 248.445312 229.640625 248.445312 C 229.523438 248.445312 229.429688 248.539062 229.429688 248.65625 C 229.429688 248.773438 229.523438 248.867188 229.640625 248.867188 C 229.757812 248.867188 229.851562 248.773438 229.851562 248.65625 Z M 229.851562 248.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.410156 248.277344 C 227.410156 248.160156 227.316406 248.066406 227.199219 248.066406 C 227.082031 248.066406 226.988281 248.160156 226.988281 248.277344 C 226.988281 248.394531 227.082031 248.488281 227.199219 248.488281 C 227.316406 248.488281 227.410156 248.394531 227.410156 248.277344 Z M 227.410156 248.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.542969 251.710938 C 228.542969 251.59375 228.449219 251.5 228.332031 251.5 C 228.214844 251.5 228.121094 251.59375 228.121094 251.710938 C 228.121094 251.828125 228.214844 251.921875 228.332031 251.921875 C 228.449219 251.921875 228.542969 251.828125 228.542969 251.710938 Z M 228.542969 251.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.898438 250.285156 C 223.898438 250.167969 223.804688 250.074219 223.6875 250.074219 C 223.570312 250.074219 223.476562 250.167969 223.476562 250.285156 C 223.476562 250.402344 223.570312 250.496094 223.6875 250.496094 C 223.804688 250.496094 223.898438 250.402344 223.898438 250.285156 Z M 223.898438 250.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 222.355469 250.597656 C 222.355469 250.480469 222.261719 250.386719 222.144531 250.386719 C 222.027344 250.386719 221.933594 250.480469 221.933594 250.597656 C 221.933594 250.714844 222.027344 250.808594 222.144531 250.808594 C 222.261719 250.808594 222.355469 250.714844 222.355469 250.597656 Z M 222.355469 250.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.917969 249.398438 C 223.917969 249.28125 223.824219 249.1875 223.707031 249.1875 C 223.589844 249.1875 223.496094 249.28125 223.496094 249.398438 C 223.496094 249.515625 223.589844 249.609375 223.707031 249.609375 C 223.824219 249.609375 223.917969 249.515625 223.917969 249.398438 Z M 223.917969 249.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 222.148438 247.0625 C 222.148438 246.945312 222.054688 246.851562 221.9375 246.851562 C 221.820312 246.851562 221.726562 246.945312 221.726562 247.0625 C 221.726562 247.179688 221.820312 247.273438 221.9375 247.273438 C 222.054688 247.273438 222.148438 247.179688 222.148438 247.0625 Z M 222.148438 247.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.757812 246.371094 C 224.757812 246.253906 224.664062 246.160156 224.546875 246.160156 C 224.429688 246.160156 224.335938 246.253906 224.335938 246.371094 C 224.335938 246.488281 224.429688 246.582031 224.546875 246.582031 C 224.664062 246.582031 224.757812 246.488281 224.757812 246.371094 Z M 224.757812 246.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.753906 249.667969 C 224.753906 249.550781 224.660156 249.457031 224.542969 249.457031 C 224.425781 249.457031 224.332031 249.550781 224.332031 249.667969 C 224.332031 249.785156 224.425781 249.878906 224.542969 249.878906 C 224.660156 249.878906 224.753906 249.785156 224.753906 249.667969 Z M 224.753906 249.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.449219 248.449219 C 223.449219 248.332031 223.355469 248.238281 223.238281 248.238281 C 223.121094 248.238281 223.027344 248.332031 223.027344 248.449219 C 223.027344 248.566406 223.121094 248.660156 223.238281 248.660156 C 223.355469 248.660156 223.449219 248.566406 223.449219 248.449219 Z M 223.449219 248.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 222.53125 248.277344 C 222.53125 248.160156 222.4375 248.066406 222.320312 248.066406 C 222.203125 248.066406 222.109375 248.160156 222.109375 248.277344 C 222.109375 248.394531 222.203125 248.488281 222.320312 248.488281 C 222.4375 248.488281 222.53125 248.394531 222.53125 248.277344 Z M 222.53125 248.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 220.0625 249.8125 C 220.0625 249.695312 219.96875 249.601562 219.851562 249.601562 C 219.734375 249.601562 219.640625 249.695312 219.640625 249.8125 C 219.640625 249.929688 219.734375 250.023438 219.851562 250.023438 C 219.96875 250.023438 220.0625 249.929688 220.0625 249.8125 Z M 220.0625 249.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.5625 245.886719 C 219.5625 245.769531 219.46875 245.675781 219.351562 245.675781 C 219.234375 245.675781 219.140625 245.769531 219.140625 245.886719 C 219.140625 246.003906 219.234375 246.097656 219.351562 246.097656 C 219.46875 246.097656 219.5625 246.003906 219.5625 245.886719 Z M 219.5625 245.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.265625 243.253906 C 221.265625 243.136719 221.171875 243.042969 221.054688 243.042969 C 220.9375 243.042969 220.84375 243.136719 220.84375 243.253906 C 220.84375 243.371094 220.9375 243.464844 221.054688 243.464844 C 221.171875 243.464844 221.265625 243.371094 221.265625 243.253906 Z M 221.265625 243.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.011719 246.476562 C 221.011719 246.359375 220.917969 246.265625 220.800781 246.265625 C 220.683594 246.265625 220.589844 246.359375 220.589844 246.476562 C 220.589844 246.59375 220.683594 246.6875 220.800781 246.6875 C 220.917969 246.6875 221.011719 246.59375 221.011719 246.476562 Z M 221.011719 246.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.109375 246.792969 C 224.109375 246.675781 224.015625 246.582031 223.898438 246.582031 C 223.78125 246.582031 223.6875 246.675781 223.6875 246.792969 C 223.6875 246.910156 223.78125 247.003906 223.898438 247.003906 C 224.015625 247.003906 224.109375 246.910156 224.109375 246.792969 Z M 224.109375 246.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 222.960938 244.648438 C 222.960938 244.53125 222.867188 244.4375 222.75 244.4375 C 222.632812 244.4375 222.539062 244.53125 222.539062 244.648438 C 222.539062 244.765625 222.632812 244.859375 222.75 244.859375 C 222.867188 244.859375 222.960938 244.765625 222.960938 244.648438 Z M 222.960938 244.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.246094 244.933594 C 225.246094 244.816406 225.152344 244.722656 225.035156 244.722656 C 224.917969 244.722656 224.824219 244.816406 224.824219 244.933594 C 224.824219 245.050781 224.917969 245.144531 225.035156 245.144531 C 225.152344 245.144531 225.246094 245.050781 225.246094 244.933594 Z M 225.246094 244.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 222.613281 245.226562 C 222.613281 245.109375 222.519531 245.015625 222.402344 245.015625 C 222.285156 245.015625 222.191406 245.109375 222.191406 245.226562 C 222.191406 245.34375 222.285156 245.4375 222.402344 245.4375 C 222.519531 245.4375 222.613281 245.34375 222.613281 245.226562 Z M 222.613281 245.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 222.957031 250.480469 C 222.957031 250.363281 222.863281 250.269531 222.746094 250.269531 C 222.628906 250.269531 222.535156 250.363281 222.535156 250.480469 C 222.535156 250.597656 222.628906 250.691406 222.746094 250.691406 C 222.863281 250.691406 222.957031 250.597656 222.957031 250.480469 Z M 222.957031 250.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.65625 250.273438 C 227.65625 250.15625 227.5625 250.0625 227.445312 250.0625 C 227.328125 250.0625 227.234375 250.15625 227.234375 250.273438 C 227.234375 250.390625 227.328125 250.484375 227.445312 250.484375 C 227.5625 250.484375 227.65625 250.390625 227.65625 250.273438 Z M 227.65625 250.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.558594 256.089844 C 228.558594 255.972656 228.464844 255.878906 228.347656 255.878906 C 228.230469 255.878906 228.136719 255.972656 228.136719 256.089844 C 228.136719 256.207031 228.230469 256.300781 228.347656 256.300781 C 228.464844 256.300781 228.558594 256.207031 228.558594 256.089844 Z M 228.558594 256.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.796875 257.324219 C 229.796875 257.207031 229.703125 257.113281 229.585938 257.113281 C 229.46875 257.113281 229.375 257.207031 229.375 257.324219 C 229.375 257.441406 229.46875 257.535156 229.585938 257.535156 C 229.703125 257.535156 229.796875 257.441406 229.796875 257.324219 Z M 229.796875 257.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.207031 254.234375 C 230.207031 254.117188 230.113281 254.023438 229.996094 254.023438 C 229.878906 254.023438 229.785156 254.117188 229.785156 254.234375 C 229.785156 254.351562 229.878906 254.445312 229.996094 254.445312 C 230.113281 254.445312 230.207031 254.351562 230.207031 254.234375 Z M 230.207031 254.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.558594 251.226562 C 229.558594 251.109375 229.464844 251.015625 229.347656 251.015625 C 229.230469 251.015625 229.136719 251.109375 229.136719 251.226562 C 229.136719 251.34375 229.230469 251.4375 229.347656 251.4375 C 229.464844 251.4375 229.558594 251.34375 229.558594 251.226562 Z M 229.558594 251.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.710938 251.585938 C 226.710938 251.46875 226.617188 251.375 226.5 251.375 C 226.382812 251.375 226.289062 251.46875 226.289062 251.585938 C 226.289062 251.703125 226.382812 251.796875 226.5 251.796875 C 226.617188 251.796875 226.710938 251.703125 226.710938 251.585938 Z M 226.710938 251.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.882812 250.753906 C 226.882812 250.636719 226.789062 250.542969 226.671875 250.542969 C 226.554688 250.542969 226.460938 250.636719 226.460938 250.753906 C 226.460938 250.871094 226.554688 250.964844 226.671875 250.964844 C 226.789062 250.964844 226.882812 250.871094 226.882812 250.753906 Z M 226.882812 250.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.640625 250.84375 C 227.640625 250.726562 227.546875 250.632812 227.429688 250.632812 C 227.3125 250.632812 227.21875 250.726562 227.21875 250.84375 C 227.21875 250.960938 227.3125 251.054688 227.429688 251.054688 C 227.546875 251.054688 227.640625 250.960938 227.640625 250.84375 Z M 227.640625 250.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.710938 253.542969 C 226.710938 253.425781 226.617188 253.332031 226.5 253.332031 C 226.382812 253.332031 226.289062 253.425781 226.289062 253.542969 C 226.289062 253.660156 226.382812 253.753906 226.5 253.753906 C 226.617188 253.753906 226.710938 253.660156 226.710938 253.542969 Z M 226.710938 253.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.160156 251.28125 C 225.160156 251.164062 225.066406 251.070312 224.949219 251.070312 C 224.832031 251.070312 224.738281 251.164062 224.738281 251.28125 C 224.738281 251.398438 224.832031 251.492188 224.949219 251.492188 C 225.066406 251.492188 225.160156 251.398438 225.160156 251.28125 Z M 225.160156 251.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.804688 252.789062 C 226.804688 252.671875 226.710938 252.578125 226.59375 252.578125 C 226.476562 252.578125 226.382812 252.671875 226.382812 252.789062 C 226.382812 252.90625 226.476562 253 226.59375 253 C 226.710938 253 226.804688 252.90625 226.804688 252.789062 Z M 226.804688 252.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.914062 255.925781 C 227.914062 255.808594 227.820312 255.714844 227.703125 255.714844 C 227.585938 255.714844 227.492188 255.808594 227.492188 255.925781 C 227.492188 256.042969 227.585938 256.136719 227.703125 256.136719 C 227.820312 256.136719 227.914062 256.042969 227.914062 255.925781 Z M 227.914062 255.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.035156 253.015625 C 225.035156 252.898438 224.941406 252.804688 224.824219 252.804688 C 224.707031 252.804688 224.613281 252.898438 224.613281 253.015625 C 224.613281 253.132812 224.707031 253.226562 224.824219 253.226562 C 224.941406 253.226562 225.035156 253.132812 225.035156 253.015625 Z M 225.035156 253.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.015625 254.855469 C 227.015625 254.738281 226.921875 254.644531 226.804688 254.644531 C 226.6875 254.644531 226.59375 254.738281 226.59375 254.855469 C 226.59375 254.972656 226.6875 255.066406 226.804688 255.066406 C 226.921875 255.066406 227.015625 254.972656 227.015625 254.855469 Z M 227.015625 254.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.832031 255.089844 C 227.832031 254.972656 227.738281 254.878906 227.621094 254.878906 C 227.503906 254.878906 227.410156 254.972656 227.410156 255.089844 C 227.410156 255.207031 227.503906 255.300781 227.621094 255.300781 C 227.738281 255.300781 227.832031 255.207031 227.832031 255.089844 Z M 227.832031 255.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.929688 255.398438 C 224.929688 255.28125 224.835938 255.1875 224.71875 255.1875 C 224.601562 255.1875 224.507812 255.28125 224.507812 255.398438 C 224.507812 255.515625 224.601562 255.609375 224.71875 255.609375 C 224.835938 255.609375 224.929688 255.515625 224.929688 255.398438 Z M 224.929688 255.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.878906 253.808594 C 223.878906 253.691406 223.785156 253.597656 223.667969 253.597656 C 223.550781 253.597656 223.457031 253.691406 223.457031 253.808594 C 223.457031 253.925781 223.550781 254.019531 223.667969 254.019531 C 223.785156 254.019531 223.878906 253.925781 223.878906 253.808594 Z M 223.878906 253.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.148438 256.519531 C 224.148438 256.402344 224.054688 256.308594 223.9375 256.308594 C 223.820312 256.308594 223.726562 256.402344 223.726562 256.519531 C 223.726562 256.636719 223.820312 256.730469 223.9375 256.730469 C 224.054688 256.730469 224.148438 256.636719 224.148438 256.519531 Z M 224.148438 256.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.632812 256.746094 C 221.632812 256.628906 221.539062 256.535156 221.421875 256.535156 C 221.304688 256.535156 221.210938 256.628906 221.210938 256.746094 C 221.210938 256.863281 221.304688 256.957031 221.421875 256.957031 C 221.539062 256.957031 221.632812 256.863281 221.632812 256.746094 Z M 221.632812 256.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 220.902344 256.253906 C 220.902344 256.136719 220.808594 256.042969 220.691406 256.042969 C 220.574219 256.042969 220.480469 256.136719 220.480469 256.253906 C 220.480469 256.371094 220.574219 256.464844 220.691406 256.464844 C 220.808594 256.464844 220.902344 256.371094 220.902344 256.253906 Z M 220.902344 256.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.984375 259.753906 C 217.984375 259.636719 217.890625 259.542969 217.773438 259.542969 C 217.65625 259.542969 217.5625 259.636719 217.5625 259.753906 C 217.5625 259.871094 217.65625 259.964844 217.773438 259.964844 C 217.890625 259.964844 217.984375 259.871094 217.984375 259.753906 Z M 217.984375 259.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.105469 256.984375 C 218.105469 256.867188 218.011719 256.773438 217.894531 256.773438 C 217.777344 256.773438 217.683594 256.867188 217.683594 256.984375 C 217.683594 257.101562 217.777344 257.195312 217.894531 257.195312 C 218.011719 257.195312 218.105469 257.101562 218.105469 256.984375 Z M 218.105469 256.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.488281 256.695312 C 215.488281 256.578125 215.394531 256.484375 215.277344 256.484375 C 215.160156 256.484375 215.066406 256.578125 215.066406 256.695312 C 215.066406 256.8125 215.160156 256.90625 215.277344 256.90625 C 215.394531 256.90625 215.488281 256.8125 215.488281 256.695312 Z M 215.488281 256.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.605469 257.835938 C 214.605469 257.71875 214.511719 257.625 214.394531 257.625 C 214.277344 257.625 214.183594 257.71875 214.183594 257.835938 C 214.183594 257.953125 214.277344 258.046875 214.394531 258.046875 C 214.511719 258.046875 214.605469 257.953125 214.605469 257.835938 Z M 214.605469 257.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.390625 259.03125 C 217.390625 258.914062 217.296875 258.820312 217.179688 258.820312 C 217.0625 258.820312 216.96875 258.914062 216.96875 259.03125 C 216.96875 259.148438 217.0625 259.242188 217.179688 259.242188 C 217.296875 259.242188 217.390625 259.148438 217.390625 259.03125 Z M 217.390625 259.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.4375 258.882812 C 216.4375 258.765625 216.34375 258.671875 216.226562 258.671875 C 216.109375 258.671875 216.015625 258.765625 216.015625 258.882812 C 216.015625 259 216.109375 259.09375 216.226562 259.09375 C 216.34375 259.09375 216.4375 259 216.4375 258.882812 Z M 216.4375 258.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.765625 258.433594 C 214.765625 258.316406 214.671875 258.222656 214.554688 258.222656 C 214.4375 258.222656 214.34375 258.316406 214.34375 258.433594 C 214.34375 258.550781 214.4375 258.644531 214.554688 258.644531 C 214.671875 258.644531 214.765625 258.550781 214.765625 258.433594 Z M 214.765625 258.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.542969 258.296875 C 215.542969 258.179688 215.449219 258.085938 215.332031 258.085938 C 215.214844 258.085938 215.121094 258.179688 215.121094 258.296875 C 215.121094 258.414062 215.214844 258.507812 215.332031 258.507812 C 215.449219 258.507812 215.542969 258.414062 215.542969 258.296875 Z M 215.542969 258.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.699219 256.3125 C 213.699219 256.195312 213.605469 256.101562 213.488281 256.101562 C 213.371094 256.101562 213.277344 256.195312 213.277344 256.3125 C 213.277344 256.429688 213.371094 256.523438 213.488281 256.523438 C 213.605469 256.523438 213.699219 256.429688 213.699219 256.3125 Z M 213.699219 256.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.253906 258.246094 C 216.253906 258.128906 216.160156 258.035156 216.042969 258.035156 C 215.925781 258.035156 215.832031 258.128906 215.832031 258.246094 C 215.832031 258.363281 215.925781 258.457031 216.042969 258.457031 C 216.160156 258.457031 216.253906 258.363281 216.253906 258.246094 Z M 216.253906 258.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.011719 262.074219 C 217.011719 261.957031 216.917969 261.863281 216.800781 261.863281 C 216.683594 261.863281 216.589844 261.957031 216.589844 262.074219 C 216.589844 262.191406 216.683594 262.285156 216.800781 262.285156 C 216.917969 262.285156 217.011719 262.191406 217.011719 262.074219 Z M 217.011719 262.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.277344 258.804688 C 216.277344 258.6875 216.183594 258.59375 216.066406 258.59375 C 215.949219 258.59375 215.855469 258.6875 215.855469 258.804688 C 215.855469 258.921875 215.949219 259.015625 216.066406 259.015625 C 216.183594 259.015625 216.277344 258.921875 216.277344 258.804688 Z M 216.277344 258.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.707031 260.441406 C 212.707031 260.324219 212.613281 260.230469 212.496094 260.230469 C 212.378906 260.230469 212.285156 260.324219 212.285156 260.441406 C 212.285156 260.558594 212.378906 260.652344 212.496094 260.652344 C 212.613281 260.652344 212.707031 260.558594 212.707031 260.441406 Z M 212.707031 260.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.734375 262.148438 C 214.734375 262.03125 214.640625 261.9375 214.523438 261.9375 C 214.40625 261.9375 214.3125 262.03125 214.3125 262.148438 C 214.3125 262.265625 214.40625 262.359375 214.523438 262.359375 C 214.640625 262.359375 214.734375 262.265625 214.734375 262.148438 Z M 214.734375 262.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.527344 257.914062 C 214.527344 257.796875 214.433594 257.703125 214.316406 257.703125 C 214.199219 257.703125 214.105469 257.796875 214.105469 257.914062 C 214.105469 258.03125 214.199219 258.125 214.316406 258.125 C 214.433594 258.125 214.527344 258.03125 214.527344 257.914062 Z M 214.527344 257.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.035156 261.285156 C 217.035156 261.167969 216.941406 261.074219 216.824219 261.074219 C 216.707031 261.074219 216.613281 261.167969 216.613281 261.285156 C 216.613281 261.402344 216.707031 261.496094 216.824219 261.496094 C 216.941406 261.496094 217.035156 261.402344 217.035156 261.285156 Z M 217.035156 261.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.902344 262.167969 C 215.902344 262.050781 215.808594 261.957031 215.691406 261.957031 C 215.574219 261.957031 215.480469 262.050781 215.480469 262.167969 C 215.480469 262.285156 215.574219 262.378906 215.691406 262.378906 C 215.808594 262.378906 215.902344 262.285156 215.902344 262.167969 Z M 215.902344 262.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.066406 263.964844 C 216.066406 263.847656 215.972656 263.753906 215.855469 263.753906 C 215.738281 263.753906 215.644531 263.847656 215.644531 263.964844 C 215.644531 264.082031 215.738281 264.175781 215.855469 264.175781 C 215.972656 264.175781 216.066406 264.082031 216.066406 263.964844 Z M 216.066406 263.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.960938 260.71875 C 216.960938 260.601562 216.867188 260.507812 216.75 260.507812 C 216.632812 260.507812 216.539062 260.601562 216.539062 260.71875 C 216.539062 260.835938 216.632812 260.929688 216.75 260.929688 C 216.867188 260.929688 216.960938 260.835938 216.960938 260.71875 Z M 216.960938 260.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.65625 262.210938 C 217.65625 262.09375 217.5625 262 217.445312 262 C 217.328125 262 217.234375 262.09375 217.234375 262.210938 C 217.234375 262.328125 217.328125 262.421875 217.445312 262.421875 C 217.5625 262.421875 217.65625 262.328125 217.65625 262.210938 Z M 217.65625 262.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.21875 259.402344 C 219.21875 259.285156 219.125 259.191406 219.007812 259.191406 C 218.890625 259.191406 218.796875 259.285156 218.796875 259.402344 C 218.796875 259.519531 218.890625 259.613281 219.007812 259.613281 C 219.125 259.613281 219.21875 259.519531 219.21875 259.402344 Z M 219.21875 259.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.511719 258.488281 C 218.511719 258.371094 218.417969 258.277344 218.300781 258.277344 C 218.183594 258.277344 218.089844 258.371094 218.089844 258.488281 C 218.089844 258.605469 218.183594 258.699219 218.300781 258.699219 C 218.417969 258.699219 218.511719 258.605469 218.511719 258.488281 Z M 218.511719 258.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.914062 255.5 C 216.914062 255.382812 216.820312 255.289062 216.703125 255.289062 C 216.585938 255.289062 216.492188 255.382812 216.492188 255.5 C 216.492188 255.617188 216.585938 255.710938 216.703125 255.710938 C 216.820312 255.710938 216.914062 255.617188 216.914062 255.5 Z M 216.914062 255.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.183594 253.382812 C 216.183594 253.265625 216.089844 253.171875 215.972656 253.171875 C 215.855469 253.171875 215.761719 253.265625 215.761719 253.382812 C 215.761719 253.5 215.855469 253.59375 215.972656 253.59375 C 216.089844 253.59375 216.183594 253.5 216.183594 253.382812 Z M 216.183594 253.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.683594 257.753906 C 218.683594 257.636719 218.589844 257.542969 218.472656 257.542969 C 218.355469 257.542969 218.261719 257.636719 218.261719 257.753906 C 218.261719 257.871094 218.355469 257.964844 218.472656 257.964844 C 218.589844 257.964844 218.683594 257.871094 218.683594 257.753906 Z M 218.683594 257.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.964844 262.023438 C 216.964844 261.90625 216.871094 261.8125 216.753906 261.8125 C 216.636719 261.8125 216.542969 261.90625 216.542969 262.023438 C 216.542969 262.140625 216.636719 262.234375 216.753906 262.234375 C 216.871094 262.234375 216.964844 262.140625 216.964844 262.023438 Z M 216.964844 262.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.855469 258.703125 C 217.855469 258.585938 217.761719 258.492188 217.644531 258.492188 C 217.527344 258.492188 217.433594 258.585938 217.433594 258.703125 C 217.433594 258.820312 217.527344 258.914062 217.644531 258.914062 C 217.761719 258.914062 217.855469 258.820312 217.855469 258.703125 Z M 217.855469 258.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 220.257812 258.269531 C 220.257812 258.152344 220.164062 258.058594 220.046875 258.058594 C 219.929688 258.058594 219.835938 258.152344 219.835938 258.269531 C 219.835938 258.386719 219.929688 258.480469 220.046875 258.480469 C 220.164062 258.480469 220.257812 258.386719 220.257812 258.269531 Z M 220.257812 258.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.847656 256.679688 C 219.847656 256.5625 219.753906 256.46875 219.636719 256.46875 C 219.519531 256.46875 219.425781 256.5625 219.425781 256.679688 C 219.425781 256.796875 219.519531 256.890625 219.636719 256.890625 C 219.753906 256.890625 219.847656 256.796875 219.847656 256.679688 Z M 219.847656 256.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.800781 256.730469 C 219.800781 256.613281 219.707031 256.519531 219.589844 256.519531 C 219.472656 256.519531 219.378906 256.613281 219.378906 256.730469 C 219.378906 256.847656 219.472656 256.941406 219.589844 256.941406 C 219.707031 256.941406 219.800781 256.847656 219.800781 256.730469 Z M 219.800781 256.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.171875 257.210938 C 219.171875 257.09375 219.078125 257 218.960938 257 C 218.84375 257 218.75 257.09375 218.75 257.210938 C 218.75 257.328125 218.84375 257.421875 218.960938 257.421875 C 219.078125 257.421875 219.171875 257.328125 219.171875 257.210938 Z M 219.171875 257.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.183594 257.503906 C 217.183594 257.386719 217.089844 257.292969 216.972656 257.292969 C 216.855469 257.292969 216.761719 257.386719 216.761719 257.503906 C 216.761719 257.621094 216.855469 257.714844 216.972656 257.714844 C 217.089844 257.714844 217.183594 257.621094 217.183594 257.503906 Z M 217.183594 257.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.210938 255.082031 C 221.210938 254.964844 221.117188 254.871094 221 254.871094 C 220.882812 254.871094 220.789062 254.964844 220.789062 255.082031 C 220.789062 255.199219 220.882812 255.292969 221 255.292969 C 221.117188 255.292969 221.210938 255.199219 221.210938 255.082031 Z M 221.210938 255.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 220.929688 255.535156 C 220.929688 255.417969 220.835938 255.324219 220.71875 255.324219 C 220.601562 255.324219 220.507812 255.417969 220.507812 255.535156 C 220.507812 255.652344 220.601562 255.746094 220.71875 255.746094 C 220.835938 255.746094 220.929688 255.652344 220.929688 255.535156 Z M 220.929688 255.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217 254.296875 C 217 254.179688 216.90625 254.085938 216.789062 254.085938 C 216.671875 254.085938 216.578125 254.179688 216.578125 254.296875 C 216.578125 254.414062 216.671875 254.507812 216.789062 254.507812 C 216.90625 254.507812 217 254.414062 217 254.296875 Z M 217 254.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.066406 255.917969 C 215.066406 255.800781 214.972656 255.707031 214.855469 255.707031 C 214.738281 255.707031 214.644531 255.800781 214.644531 255.917969 C 214.644531 256.035156 214.738281 256.128906 214.855469 256.128906 C 214.972656 256.128906 215.066406 256.035156 215.066406 255.917969 Z M 215.066406 255.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.683594 257.609375 C 212.683594 257.492188 212.589844 257.398438 212.472656 257.398438 C 212.355469 257.398438 212.261719 257.492188 212.261719 257.609375 C 212.261719 257.726562 212.355469 257.820312 212.472656 257.820312 C 212.589844 257.820312 212.683594 257.726562 212.683594 257.609375 Z M 212.683594 257.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.636719 260.191406 C 211.636719 260.074219 211.542969 259.980469 211.425781 259.980469 C 211.308594 259.980469 211.214844 260.074219 211.214844 260.191406 C 211.214844 260.308594 211.308594 260.402344 211.425781 260.402344 C 211.542969 260.402344 211.636719 260.308594 211.636719 260.191406 Z M 211.636719 260.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.871094 257.933594 C 207.871094 257.816406 207.777344 257.722656 207.660156 257.722656 C 207.542969 257.722656 207.449219 257.816406 207.449219 257.933594 C 207.449219 258.050781 207.542969 258.144531 207.660156 258.144531 C 207.777344 258.144531 207.871094 258.050781 207.871094 257.933594 Z M 207.871094 257.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.214844 256.234375 C 205.214844 256.117188 205.121094 256.023438 205.003906 256.023438 C 204.886719 256.023438 204.792969 256.117188 204.792969 256.234375 C 204.792969 256.351562 204.886719 256.445312 205.003906 256.445312 C 205.121094 256.445312 205.214844 256.351562 205.214844 256.234375 Z M 205.214844 256.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.734375 256.484375 C 206.734375 256.367188 206.640625 256.273438 206.523438 256.273438 C 206.40625 256.273438 206.3125 256.367188 206.3125 256.484375 C 206.3125 256.601562 206.40625 256.695312 206.523438 256.695312 C 206.640625 256.695312 206.734375 256.601562 206.734375 256.484375 Z M 206.734375 256.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.429688 255.617188 C 207.429688 255.5 207.335938 255.40625 207.21875 255.40625 C 207.101562 255.40625 207.007812 255.5 207.007812 255.617188 C 207.007812 255.734375 207.101562 255.828125 207.21875 255.828125 C 207.335938 255.828125 207.429688 255.734375 207.429688 255.617188 Z M 207.429688 255.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.960938 256.316406 C 204.960938 256.199219 204.867188 256.105469 204.75 256.105469 C 204.632812 256.105469 204.539062 256.199219 204.539062 256.316406 C 204.539062 256.433594 204.632812 256.527344 204.75 256.527344 C 204.867188 256.527344 204.960938 256.433594 204.960938 256.316406 Z M 204.960938 256.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.644531 253.859375 C 205.644531 253.742188 205.550781 253.648438 205.433594 253.648438 C 205.316406 253.648438 205.222656 253.742188 205.222656 253.859375 C 205.222656 253.976562 205.316406 254.070312 205.433594 254.070312 C 205.550781 254.070312 205.644531 253.976562 205.644531 253.859375 Z M 205.644531 253.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.128906 252.21875 C 208.128906 252.101562 208.035156 252.007812 207.917969 252.007812 C 207.800781 252.007812 207.707031 252.101562 207.707031 252.21875 C 207.707031 252.335938 207.800781 252.429688 207.917969 252.429688 C 208.035156 252.429688 208.128906 252.335938 208.128906 252.21875 Z M 208.128906 252.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.117188 251.191406 C 208.117188 251.074219 208.023438 250.980469 207.90625 250.980469 C 207.789062 250.980469 207.695312 251.074219 207.695312 251.191406 C 207.695312 251.308594 207.789062 251.402344 207.90625 251.402344 C 208.023438 251.402344 208.117188 251.308594 208.117188 251.191406 Z M 208.117188 251.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.171875 250.988281 C 207.171875 250.871094 207.078125 250.777344 206.960938 250.777344 C 206.84375 250.777344 206.75 250.871094 206.75 250.988281 C 206.75 251.105469 206.84375 251.199219 206.960938 251.199219 C 207.078125 251.199219 207.171875 251.105469 207.171875 250.988281 Z M 207.171875 250.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.6875 253.269531 C 207.6875 253.152344 207.59375 253.058594 207.476562 253.058594 C 207.359375 253.058594 207.265625 253.152344 207.265625 253.269531 C 207.265625 253.386719 207.359375 253.480469 207.476562 253.480469 C 207.59375 253.480469 207.6875 253.386719 207.6875 253.269531 Z M 207.6875 253.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.964844 252.226562 C 206.964844 252.109375 206.871094 252.015625 206.753906 252.015625 C 206.636719 252.015625 206.542969 252.109375 206.542969 252.226562 C 206.542969 252.34375 206.636719 252.4375 206.753906 252.4375 C 206.871094 252.4375 206.964844 252.34375 206.964844 252.226562 Z M 206.964844 252.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.371094 251.582031 C 207.371094 251.464844 207.277344 251.371094 207.160156 251.371094 C 207.042969 251.371094 206.949219 251.464844 206.949219 251.582031 C 206.949219 251.699219 207.042969 251.792969 207.160156 251.792969 C 207.277344 251.792969 207.371094 251.699219 207.371094 251.582031 Z M 207.371094 251.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.320312 252.203125 C 207.320312 252.085938 207.226562 251.992188 207.109375 251.992188 C 206.992188 251.992188 206.898438 252.085938 206.898438 252.203125 C 206.898438 252.320312 206.992188 252.414062 207.109375 252.414062 C 207.226562 252.414062 207.320312 252.320312 207.320312 252.203125 Z M 207.320312 252.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.78125 251.921875 C 207.78125 251.804688 207.6875 251.710938 207.570312 251.710938 C 207.453125 251.710938 207.359375 251.804688 207.359375 251.921875 C 207.359375 252.039062 207.453125 252.132812 207.570312 252.132812 C 207.6875 252.132812 207.78125 252.039062 207.78125 251.921875 Z M 207.78125 251.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.683594 254.753906 C 212.683594 254.636719 212.589844 254.542969 212.472656 254.542969 C 212.355469 254.542969 212.261719 254.636719 212.261719 254.753906 C 212.261719 254.871094 212.355469 254.964844 212.472656 254.964844 C 212.589844 254.964844 212.683594 254.871094 212.683594 254.753906 Z M 212.683594 254.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.898438 255.730469 C 209.898438 255.613281 209.804688 255.519531 209.6875 255.519531 C 209.570312 255.519531 209.476562 255.613281 209.476562 255.730469 C 209.476562 255.847656 209.570312 255.941406 209.6875 255.941406 C 209.804688 255.941406 209.898438 255.847656 209.898438 255.730469 Z M 209.898438 255.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.316406 257.773438 C 206.316406 257.65625 206.222656 257.5625 206.105469 257.5625 C 205.988281 257.5625 205.894531 257.65625 205.894531 257.773438 C 205.894531 257.890625 205.988281 257.984375 206.105469 257.984375 C 206.222656 257.984375 206.316406 257.890625 206.316406 257.773438 Z M 206.316406 257.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.816406 257.871094 C 203.816406 257.753906 203.722656 257.660156 203.605469 257.660156 C 203.488281 257.660156 203.394531 257.753906 203.394531 257.871094 C 203.394531 257.988281 203.488281 258.082031 203.605469 258.082031 C 203.722656 258.082031 203.816406 257.988281 203.816406 257.871094 Z M 203.816406 257.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.636719 258.507812 C 203.636719 258.390625 203.542969 258.296875 203.425781 258.296875 C 203.308594 258.296875 203.214844 258.390625 203.214844 258.507812 C 203.214844 258.625 203.308594 258.71875 203.425781 258.71875 C 203.542969 258.71875 203.636719 258.625 203.636719 258.507812 Z M 203.636719 258.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203 256.316406 C 203 256.199219 202.90625 256.105469 202.789062 256.105469 C 202.671875 256.105469 202.578125 256.199219 202.578125 256.316406 C 202.578125 256.433594 202.671875 256.527344 202.789062 256.527344 C 202.90625 256.527344 203 256.433594 203 256.316406 Z M 203 256.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.558594 255.765625 C 203.558594 255.648438 203.464844 255.554688 203.347656 255.554688 C 203.230469 255.554688 203.136719 255.648438 203.136719 255.765625 C 203.136719 255.882812 203.230469 255.976562 203.347656 255.976562 C 203.464844 255.976562 203.558594 255.882812 203.558594 255.765625 Z M 203.558594 255.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.601562 252.414062 C 208.601562 252.296875 208.507812 252.203125 208.390625 252.203125 C 208.273438 252.203125 208.179688 252.296875 208.179688 252.414062 C 208.179688 252.53125 208.273438 252.625 208.390625 252.625 C 208.507812 252.625 208.601562 252.53125 208.601562 252.414062 Z M 208.601562 252.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.523438 252.300781 C 209.523438 252.183594 209.429688 252.089844 209.3125 252.089844 C 209.195312 252.089844 209.101562 252.183594 209.101562 252.300781 C 209.101562 252.417969 209.195312 252.511719 209.3125 252.511719 C 209.429688 252.511719 209.523438 252.417969 209.523438 252.300781 Z M 209.523438 252.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.808594 250.535156 C 206.808594 250.417969 206.714844 250.324219 206.597656 250.324219 C 206.480469 250.324219 206.386719 250.417969 206.386719 250.535156 C 206.386719 250.652344 206.480469 250.746094 206.597656 250.746094 C 206.714844 250.746094 206.808594 250.652344 206.808594 250.535156 Z M 206.808594 250.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.785156 251.664062 C 204.785156 251.546875 204.691406 251.453125 204.574219 251.453125 C 204.457031 251.453125 204.363281 251.546875 204.363281 251.664062 C 204.363281 251.78125 204.457031 251.875 204.574219 251.875 C 204.691406 251.875 204.785156 251.78125 204.785156 251.664062 Z M 204.785156 251.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.945312 251.976562 C 204.945312 251.859375 204.851562 251.765625 204.734375 251.765625 C 204.617188 251.765625 204.523438 251.859375 204.523438 251.976562 C 204.523438 252.09375 204.617188 252.1875 204.734375 252.1875 C 204.851562 252.1875 204.945312 252.09375 204.945312 251.976562 Z M 204.945312 251.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.144531 254.144531 C 206.144531 254.027344 206.050781 253.933594 205.933594 253.933594 C 205.816406 253.933594 205.722656 254.027344 205.722656 254.144531 C 205.722656 254.261719 205.816406 254.355469 205.933594 254.355469 C 206.050781 254.355469 206.144531 254.261719 206.144531 254.144531 Z M 206.144531 254.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.527344 257.5625 C 206.527344 257.445312 206.433594 257.351562 206.316406 257.351562 C 206.199219 257.351562 206.105469 257.445312 206.105469 257.5625 C 206.105469 257.679688 206.199219 257.773438 206.316406 257.773438 C 206.433594 257.773438 206.527344 257.679688 206.527344 257.5625 Z M 206.527344 257.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.9375 258.761719 C 206.9375 258.644531 206.84375 258.550781 206.726562 258.550781 C 206.609375 258.550781 206.515625 258.644531 206.515625 258.761719 C 206.515625 258.878906 206.609375 258.972656 206.726562 258.972656 C 206.84375 258.972656 206.9375 258.878906 206.9375 258.761719 Z M 206.9375 258.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.414062 256.238281 C 207.414062 256.121094 207.320312 256.027344 207.203125 256.027344 C 207.085938 256.027344 206.992188 256.121094 206.992188 256.238281 C 206.992188 256.355469 207.085938 256.449219 207.203125 256.449219 C 207.320312 256.449219 207.414062 256.355469 207.414062 256.238281 Z M 207.414062 256.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.492188 255.125 C 203.492188 255.007812 203.398438 254.914062 203.28125 254.914062 C 203.164062 254.914062 203.070312 255.007812 203.070312 255.125 C 203.070312 255.242188 203.164062 255.335938 203.28125 255.335938 C 203.398438 255.335938 203.492188 255.242188 203.492188 255.125 Z M 203.492188 255.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.164062 256.953125 C 205.164062 256.835938 205.070312 256.742188 204.953125 256.742188 C 204.835938 256.742188 204.742188 256.835938 204.742188 256.953125 C 204.742188 257.070312 204.835938 257.164062 204.953125 257.164062 C 205.070312 257.164062 205.164062 257.070312 205.164062 256.953125 Z M 205.164062 256.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.8125 254.167969 C 202.8125 254.050781 202.71875 253.957031 202.601562 253.957031 C 202.484375 253.957031 202.390625 254.050781 202.390625 254.167969 C 202.390625 254.285156 202.484375 254.378906 202.601562 254.378906 C 202.71875 254.378906 202.8125 254.285156 202.8125 254.167969 Z M 202.8125 254.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.402344 253.949219 C 203.402344 253.832031 203.308594 253.738281 203.191406 253.738281 C 203.074219 253.738281 202.980469 253.832031 202.980469 253.949219 C 202.980469 254.066406 203.074219 254.160156 203.191406 254.160156 C 203.308594 254.160156 203.402344 254.066406 203.402344 253.949219 Z M 203.402344 253.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.550781 254.25 C 204.550781 254.132812 204.457031 254.039062 204.339844 254.039062 C 204.222656 254.039062 204.128906 254.132812 204.128906 254.25 C 204.128906 254.367188 204.222656 254.460938 204.339844 254.460938 C 204.457031 254.460938 204.550781 254.367188 204.550781 254.25 Z M 204.550781 254.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.324219 252.460938 C 207.324219 252.34375 207.230469 252.25 207.113281 252.25 C 206.996094 252.25 206.902344 252.34375 206.902344 252.460938 C 206.902344 252.578125 206.996094 252.671875 207.113281 252.671875 C 207.230469 252.671875 207.324219 252.578125 207.324219 252.460938 Z M 207.324219 252.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.464844 254.390625 C 205.464844 254.273438 205.371094 254.179688 205.253906 254.179688 C 205.136719 254.179688 205.042969 254.273438 205.042969 254.390625 C 205.042969 254.507812 205.136719 254.601562 205.253906 254.601562 C 205.371094 254.601562 205.464844 254.507812 205.464844 254.390625 Z M 205.464844 254.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.0625 253.398438 C 207.0625 253.28125 206.96875 253.1875 206.851562 253.1875 C 206.734375 253.1875 206.640625 253.28125 206.640625 253.398438 C 206.640625 253.515625 206.734375 253.609375 206.851562 253.609375 C 206.96875 253.609375 207.0625 253.515625 207.0625 253.398438 Z M 207.0625 253.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.402344 253.066406 C 209.402344 252.949219 209.308594 252.855469 209.191406 252.855469 C 209.074219 252.855469 208.980469 252.949219 208.980469 253.066406 C 208.980469 253.183594 209.074219 253.277344 209.191406 253.277344 C 209.308594 253.277344 209.402344 253.183594 209.402344 253.066406 Z M 209.402344 253.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.828125 251.636719 C 209.828125 251.519531 209.734375 251.425781 209.617188 251.425781 C 209.5 251.425781 209.40625 251.519531 209.40625 251.636719 C 209.40625 251.753906 209.5 251.847656 209.617188 251.847656 C 209.734375 251.847656 209.828125 251.753906 209.828125 251.636719 Z M 209.828125 251.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.5625 251.132812 C 209.5625 251.015625 209.46875 250.921875 209.351562 250.921875 C 209.234375 250.921875 209.140625 251.015625 209.140625 251.132812 C 209.140625 251.25 209.234375 251.34375 209.351562 251.34375 C 209.46875 251.34375 209.5625 251.25 209.5625 251.132812 Z M 209.5625 251.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.78125 251.964844 C 208.78125 251.847656 208.6875 251.753906 208.570312 251.753906 C 208.453125 251.753906 208.359375 251.847656 208.359375 251.964844 C 208.359375 252.082031 208.453125 252.175781 208.570312 252.175781 C 208.6875 252.175781 208.78125 252.082031 208.78125 251.964844 Z M 208.78125 251.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.457031 250.449219 C 208.457031 250.332031 208.363281 250.238281 208.246094 250.238281 C 208.128906 250.238281 208.035156 250.332031 208.035156 250.449219 C 208.035156 250.566406 208.128906 250.660156 208.246094 250.660156 C 208.363281 250.660156 208.457031 250.566406 208.457031 250.449219 Z M 208.457031 250.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.679688 246.902344 C 206.679688 246.785156 206.585938 246.691406 206.46875 246.691406 C 206.351562 246.691406 206.257812 246.785156 206.257812 246.902344 C 206.257812 247.019531 206.351562 247.113281 206.46875 247.113281 C 206.585938 247.113281 206.679688 247.019531 206.679688 246.902344 Z M 206.679688 246.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.253906 248.125 C 204.253906 248.007812 204.160156 247.914062 204.042969 247.914062 C 203.925781 247.914062 203.832031 248.007812 203.832031 248.125 C 203.832031 248.242188 203.925781 248.335938 204.042969 248.335938 C 204.160156 248.335938 204.253906 248.242188 204.253906 248.125 Z M 204.253906 248.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.53125 245.300781 C 204.53125 245.183594 204.4375 245.089844 204.320312 245.089844 C 204.203125 245.089844 204.109375 245.183594 204.109375 245.300781 C 204.109375 245.417969 204.203125 245.511719 204.320312 245.511719 C 204.4375 245.511719 204.53125 245.417969 204.53125 245.300781 Z M 204.53125 245.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.507812 245.613281 C 206.507812 245.496094 206.414062 245.402344 206.296875 245.402344 C 206.179688 245.402344 206.085938 245.496094 206.085938 245.613281 C 206.085938 245.730469 206.179688 245.824219 206.296875 245.824219 C 206.414062 245.824219 206.507812 245.730469 206.507812 245.613281 Z M 206.507812 245.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.25 246.019531 C 208.25 245.902344 208.15625 245.808594 208.039062 245.808594 C 207.921875 245.808594 207.828125 245.902344 207.828125 246.019531 C 207.828125 246.136719 207.921875 246.230469 208.039062 246.230469 C 208.15625 246.230469 208.25 246.136719 208.25 246.019531 Z M 208.25 246.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.445312 246.328125 C 209.445312 246.210938 209.351562 246.117188 209.234375 246.117188 C 209.117188 246.117188 209.023438 246.210938 209.023438 246.328125 C 209.023438 246.445312 209.117188 246.539062 209.234375 246.539062 C 209.351562 246.539062 209.445312 246.445312 209.445312 246.328125 Z M 209.445312 246.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.636719 242.867188 C 211.636719 242.75 211.542969 242.65625 211.425781 242.65625 C 211.308594 242.65625 211.214844 242.75 211.214844 242.867188 C 211.214844 242.984375 211.308594 243.078125 211.425781 243.078125 C 211.542969 243.078125 211.636719 242.984375 211.636719 242.867188 Z M 211.636719 242.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.382812 240.023438 C 212.382812 239.90625 212.289062 239.8125 212.171875 239.8125 C 212.054688 239.8125 211.960938 239.90625 211.960938 240.023438 C 211.960938 240.140625 212.054688 240.234375 212.171875 240.234375 C 212.289062 240.234375 212.382812 240.140625 212.382812 240.023438 Z M 212.382812 240.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.722656 239.359375 C 211.722656 239.242188 211.628906 239.148438 211.511719 239.148438 C 211.394531 239.148438 211.300781 239.242188 211.300781 239.359375 C 211.300781 239.476562 211.394531 239.570312 211.511719 239.570312 C 211.628906 239.570312 211.722656 239.476562 211.722656 239.359375 Z M 211.722656 239.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.367188 235.183594 C 209.367188 235.066406 209.273438 234.972656 209.15625 234.972656 C 209.039062 234.972656 208.945312 235.066406 208.945312 235.183594 C 208.945312 235.300781 209.039062 235.394531 209.15625 235.394531 C 209.273438 235.394531 209.367188 235.300781 209.367188 235.183594 Z M 209.367188 235.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.679688 235.945312 C 214.679688 235.828125 214.585938 235.734375 214.46875 235.734375 C 214.351562 235.734375 214.257812 235.828125 214.257812 235.945312 C 214.257812 236.0625 214.351562 236.15625 214.46875 236.15625 C 214.585938 236.15625 214.679688 236.0625 214.679688 235.945312 Z M 214.679688 235.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.34375 232.738281 C 216.34375 232.621094 216.25 232.527344 216.132812 232.527344 C 216.015625 232.527344 215.921875 232.621094 215.921875 232.738281 C 215.921875 232.855469 216.015625 232.949219 216.132812 232.949219 C 216.25 232.949219 216.34375 232.855469 216.34375 232.738281 Z M 216.34375 232.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.480469 231.726562 C 216.480469 231.609375 216.386719 231.515625 216.269531 231.515625 C 216.152344 231.515625 216.058594 231.609375 216.058594 231.726562 C 216.058594 231.84375 216.152344 231.9375 216.269531 231.9375 C 216.386719 231.9375 216.480469 231.84375 216.480469 231.726562 Z M 216.480469 231.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.226562 228.394531 C 219.226562 228.277344 219.132812 228.183594 219.015625 228.183594 C 218.898438 228.183594 218.804688 228.277344 218.804688 228.394531 C 218.804688 228.511719 218.898438 228.605469 219.015625 228.605469 C 219.132812 228.605469 219.226562 228.511719 219.226562 228.394531 Z M 219.226562 228.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 220.328125 229.746094 C 220.328125 229.628906 220.234375 229.535156 220.117188 229.535156 C 220 229.535156 219.90625 229.628906 219.90625 229.746094 C 219.90625 229.863281 220 229.957031 220.117188 229.957031 C 220.234375 229.957031 220.328125 229.863281 220.328125 229.746094 Z M 220.328125 229.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.40625 228.253906 C 224.40625 228.136719 224.3125 228.042969 224.195312 228.042969 C 224.078125 228.042969 223.984375 228.136719 223.984375 228.253906 C 223.984375 228.371094 224.078125 228.464844 224.195312 228.464844 C 224.3125 228.464844 224.40625 228.371094 224.40625 228.253906 Z M 224.40625 228.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.265625 228.554688 C 228.265625 228.4375 228.171875 228.34375 228.054688 228.34375 C 227.9375 228.34375 227.84375 228.4375 227.84375 228.554688 C 227.84375 228.671875 227.9375 228.765625 228.054688 228.765625 C 228.171875 228.765625 228.265625 228.671875 228.265625 228.554688 Z M 228.265625 228.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.300781 225.496094 C 232.300781 225.378906 232.207031 225.285156 232.089844 225.285156 C 231.972656 225.285156 231.878906 225.378906 231.878906 225.496094 C 231.878906 225.613281 231.972656 225.707031 232.089844 225.707031 C 232.207031 225.707031 232.300781 225.613281 232.300781 225.496094 Z M 232.300781 225.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.792969 223.96875 C 227.792969 223.851562 227.699219 223.757812 227.582031 223.757812 C 227.464844 223.757812 227.371094 223.851562 227.371094 223.96875 C 227.371094 224.085938 227.464844 224.179688 227.582031 224.179688 C 227.699219 224.179688 227.792969 224.085938 227.792969 223.96875 Z M 227.792969 223.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.113281 223.792969 C 225.113281 223.675781 225.019531 223.582031 224.902344 223.582031 C 224.785156 223.582031 224.691406 223.675781 224.691406 223.792969 C 224.691406 223.910156 224.785156 224.003906 224.902344 224.003906 C 225.019531 224.003906 225.113281 223.910156 225.113281 223.792969 Z M 225.113281 223.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.316406 221.445312 C 224.316406 221.328125 224.222656 221.234375 224.105469 221.234375 C 223.988281 221.234375 223.894531 221.328125 223.894531 221.445312 C 223.894531 221.5625 223.988281 221.65625 224.105469 221.65625 C 224.222656 221.65625 224.316406 221.5625 224.316406 221.445312 Z M 224.316406 221.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.597656 227.308594 C 223.597656 227.191406 223.503906 227.097656 223.386719 227.097656 C 223.269531 227.097656 223.175781 227.191406 223.175781 227.308594 C 223.175781 227.425781 223.269531 227.519531 223.386719 227.519531 C 223.503906 227.519531 223.597656 227.425781 223.597656 227.308594 Z M 223.597656 227.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.210938 225.394531 C 227.210938 225.277344 227.117188 225.183594 227 225.183594 C 226.882812 225.183594 226.789062 225.277344 226.789062 225.394531 C 226.789062 225.511719 226.882812 225.605469 227 225.605469 C 227.117188 225.605469 227.210938 225.511719 227.210938 225.394531 Z M 227.210938 225.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.867188 227.902344 C 227.867188 227.785156 227.773438 227.691406 227.65625 227.691406 C 227.539062 227.691406 227.445312 227.785156 227.445312 227.902344 C 227.445312 228.019531 227.539062 228.113281 227.65625 228.113281 C 227.773438 228.113281 227.867188 228.019531 227.867188 227.902344 Z M 227.867188 227.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.007812 225.980469 C 227.007812 225.863281 226.914062 225.769531 226.796875 225.769531 C 226.679688 225.769531 226.585938 225.863281 226.585938 225.980469 C 226.585938 226.097656 226.679688 226.191406 226.796875 226.191406 C 226.914062 226.191406 227.007812 226.097656 227.007812 225.980469 Z M 227.007812 225.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.304688 227.867188 C 229.304688 227.75 229.210938 227.65625 229.09375 227.65625 C 228.976562 227.65625 228.882812 227.75 228.882812 227.867188 C 228.882812 227.984375 228.976562 228.078125 229.09375 228.078125 C 229.210938 228.078125 229.304688 227.984375 229.304688 227.867188 Z M 229.304688 227.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.972656 226.164062 C 226.972656 226.046875 226.878906 225.953125 226.761719 225.953125 C 226.644531 225.953125 226.550781 226.046875 226.550781 226.164062 C 226.550781 226.28125 226.644531 226.375 226.761719 226.375 C 226.878906 226.375 226.972656 226.28125 226.972656 226.164062 Z M 226.972656 226.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.320312 222.027344 C 225.320312 221.910156 225.226562 221.816406 225.109375 221.816406 C 224.992188 221.816406 224.898438 221.910156 224.898438 222.027344 C 224.898438 222.144531 224.992188 222.238281 225.109375 222.238281 C 225.226562 222.238281 225.320312 222.144531 225.320312 222.027344 Z M 225.320312 222.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.070312 223.246094 C 227.070312 223.128906 226.976562 223.035156 226.859375 223.035156 C 226.742188 223.035156 226.648438 223.128906 226.648438 223.246094 C 226.648438 223.363281 226.742188 223.457031 226.859375 223.457031 C 226.976562 223.457031 227.070312 223.363281 227.070312 223.246094 Z M 227.070312 223.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.347656 220.15625 C 223.347656 220.039062 223.253906 219.945312 223.136719 219.945312 C 223.019531 219.945312 222.925781 220.039062 222.925781 220.15625 C 222.925781 220.273438 223.019531 220.367188 223.136719 220.367188 C 223.253906 220.367188 223.347656 220.273438 223.347656 220.15625 Z M 223.347656 220.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.734375 216.839844 C 227.734375 216.722656 227.640625 216.628906 227.523438 216.628906 C 227.40625 216.628906 227.3125 216.722656 227.3125 216.839844 C 227.3125 216.957031 227.40625 217.050781 227.523438 217.050781 C 227.640625 217.050781 227.734375 216.957031 227.734375 216.839844 Z M 227.734375 216.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 222.527344 218.78125 C 222.527344 218.664062 222.433594 218.570312 222.316406 218.570312 C 222.199219 218.570312 222.105469 218.664062 222.105469 218.78125 C 222.105469 218.898438 222.199219 218.992188 222.316406 218.992188 C 222.433594 218.992188 222.527344 218.898438 222.527344 218.78125 Z M 222.527344 218.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.765625 218.742188 C 226.765625 218.625 226.671875 218.53125 226.554688 218.53125 C 226.4375 218.53125 226.34375 218.625 226.34375 218.742188 C 226.34375 218.859375 226.4375 218.953125 226.554688 218.953125 C 226.671875 218.953125 226.765625 218.859375 226.765625 218.742188 Z M 226.765625 218.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.054688 221.9375 C 227.054688 221.820312 226.960938 221.726562 226.84375 221.726562 C 226.726562 221.726562 226.632812 221.820312 226.632812 221.9375 C 226.632812 222.054688 226.726562 222.148438 226.84375 222.148438 C 226.960938 222.148438 227.054688 222.054688 227.054688 221.9375 Z M 227.054688 221.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.308594 223.507812 C 227.308594 223.390625 227.214844 223.296875 227.097656 223.296875 C 226.980469 223.296875 226.886719 223.390625 226.886719 223.507812 C 226.886719 223.625 226.980469 223.71875 227.097656 223.71875 C 227.214844 223.71875 227.308594 223.625 227.308594 223.507812 Z M 227.308594 223.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.917969 224.007812 C 228.917969 223.890625 228.824219 223.796875 228.707031 223.796875 C 228.589844 223.796875 228.496094 223.890625 228.496094 224.007812 C 228.496094 224.125 228.589844 224.21875 228.707031 224.21875 C 228.824219 224.21875 228.917969 224.125 228.917969 224.007812 Z M 228.917969 224.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.226562 225.167969 C 232.226562 225.050781 232.132812 224.957031 232.015625 224.957031 C 231.898438 224.957031 231.804688 225.050781 231.804688 225.167969 C 231.804688 225.285156 231.898438 225.378906 232.015625 225.378906 C 232.132812 225.378906 232.226562 225.285156 232.226562 225.167969 Z M 232.226562 225.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.855469 219.65625 C 238.855469 219.539062 238.761719 219.445312 238.644531 219.445312 C 238.527344 219.445312 238.433594 219.539062 238.433594 219.65625 C 238.433594 219.773438 238.527344 219.867188 238.644531 219.867188 C 238.761719 219.867188 238.855469 219.773438 238.855469 219.65625 Z M 238.855469 219.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.183594 218.855469 C 238.183594 218.738281 238.089844 218.644531 237.972656 218.644531 C 237.855469 218.644531 237.761719 218.738281 237.761719 218.855469 C 237.761719 218.972656 237.855469 219.066406 237.972656 219.066406 C 238.089844 219.066406 238.183594 218.972656 238.183594 218.855469 Z M 238.183594 218.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.992188 217.15625 C 234.992188 217.039062 234.898438 216.945312 234.78125 216.945312 C 234.664062 216.945312 234.570312 217.039062 234.570312 217.15625 C 234.570312 217.273438 234.664062 217.367188 234.78125 217.367188 C 234.898438 217.367188 234.992188 217.273438 234.992188 217.15625 Z M 234.992188 217.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.296875 219.941406 C 235.296875 219.824219 235.203125 219.730469 235.085938 219.730469 C 234.96875 219.730469 234.875 219.824219 234.875 219.941406 C 234.875 220.058594 234.96875 220.152344 235.085938 220.152344 C 235.203125 220.152344 235.296875 220.058594 235.296875 219.941406 Z M 235.296875 219.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.695312 221.550781 C 236.695312 221.433594 236.601562 221.339844 236.484375 221.339844 C 236.367188 221.339844 236.273438 221.433594 236.273438 221.550781 C 236.273438 221.667969 236.367188 221.761719 236.484375 221.761719 C 236.601562 221.761719 236.695312 221.667969 236.695312 221.550781 Z M 236.695312 221.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.8125 221.597656 C 235.8125 221.480469 235.71875 221.386719 235.601562 221.386719 C 235.484375 221.386719 235.390625 221.480469 235.390625 221.597656 C 235.390625 221.714844 235.484375 221.808594 235.601562 221.808594 C 235.71875 221.808594 235.8125 221.714844 235.8125 221.597656 Z M 235.8125 221.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.027344 223.132812 C 233.027344 223.015625 232.933594 222.921875 232.816406 222.921875 C 232.699219 222.921875 232.605469 223.015625 232.605469 223.132812 C 232.605469 223.25 232.699219 223.34375 232.816406 223.34375 C 232.933594 223.34375 233.027344 223.25 233.027344 223.132812 Z M 233.027344 223.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.800781 224.953125 C 233.800781 224.835938 233.707031 224.742188 233.589844 224.742188 C 233.472656 224.742188 233.378906 224.835938 233.378906 224.953125 C 233.378906 225.070312 233.472656 225.164062 233.589844 225.164062 C 233.707031 225.164062 233.800781 225.070312 233.800781 224.953125 Z M 233.800781 224.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.851562 220.472656 C 233.851562 220.355469 233.757812 220.261719 233.640625 220.261719 C 233.523438 220.261719 233.429688 220.355469 233.429688 220.472656 C 233.429688 220.589844 233.523438 220.683594 233.640625 220.683594 C 233.757812 220.683594 233.851562 220.589844 233.851562 220.472656 Z M 233.851562 220.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.464844 219.804688 C 235.464844 219.6875 235.371094 219.59375 235.253906 219.59375 C 235.136719 219.59375 235.042969 219.6875 235.042969 219.804688 C 235.042969 219.921875 235.136719 220.015625 235.253906 220.015625 C 235.371094 220.015625 235.464844 219.921875 235.464844 219.804688 Z M 235.464844 219.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.585938 221.066406 C 233.585938 220.949219 233.492188 220.855469 233.375 220.855469 C 233.257812 220.855469 233.164062 220.949219 233.164062 221.066406 C 233.164062 221.183594 233.257812 221.277344 233.375 221.277344 C 233.492188 221.277344 233.585938 221.183594 233.585938 221.066406 Z M 233.585938 221.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.207031 222.714844 C 232.207031 222.597656 232.113281 222.503906 231.996094 222.503906 C 231.878906 222.503906 231.785156 222.597656 231.785156 222.714844 C 231.785156 222.832031 231.878906 222.925781 231.996094 222.925781 C 232.113281 222.925781 232.207031 222.832031 232.207031 222.714844 Z M 232.207031 222.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.046875 223.085938 C 227.046875 222.96875 226.953125 222.875 226.835938 222.875 C 226.71875 222.875 226.625 222.96875 226.625 223.085938 C 226.625 223.203125 226.71875 223.296875 226.835938 223.296875 C 226.953125 223.296875 227.046875 223.203125 227.046875 223.085938 Z M 227.046875 223.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.96875 226.769531 C 226.96875 226.652344 226.875 226.558594 226.757812 226.558594 C 226.640625 226.558594 226.546875 226.652344 226.546875 226.769531 C 226.546875 226.886719 226.640625 226.980469 226.757812 226.980469 C 226.875 226.980469 226.96875 226.886719 226.96875 226.769531 Z M 226.96875 226.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.050781 227.480469 C 231.050781 227.363281 230.957031 227.269531 230.839844 227.269531 C 230.722656 227.269531 230.628906 227.363281 230.628906 227.480469 C 230.628906 227.597656 230.722656 227.691406 230.839844 227.691406 C 230.957031 227.691406 231.050781 227.597656 231.050781 227.480469 Z M 231.050781 227.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.472656 231.652344 C 232.472656 231.535156 232.378906 231.441406 232.261719 231.441406 C 232.144531 231.441406 232.050781 231.535156 232.050781 231.652344 C 232.050781 231.769531 232.144531 231.863281 232.261719 231.863281 C 232.378906 231.863281 232.472656 231.769531 232.472656 231.652344 Z M 232.472656 231.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.714844 226.039062 C 233.714844 225.921875 233.621094 225.828125 233.503906 225.828125 C 233.386719 225.828125 233.292969 225.921875 233.292969 226.039062 C 233.292969 226.15625 233.386719 226.25 233.503906 226.25 C 233.621094 226.25 233.714844 226.15625 233.714844 226.039062 Z M 233.714844 226.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.960938 225.132812 C 231.960938 225.015625 231.867188 224.921875 231.75 224.921875 C 231.632812 224.921875 231.539062 225.015625 231.539062 225.132812 C 231.539062 225.25 231.632812 225.34375 231.75 225.34375 C 231.867188 225.34375 231.960938 225.25 231.960938 225.132812 Z M 231.960938 225.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.746094 221.664062 C 231.746094 221.546875 231.652344 221.453125 231.535156 221.453125 C 231.417969 221.453125 231.324219 221.546875 231.324219 221.664062 C 231.324219 221.78125 231.417969 221.875 231.535156 221.875 C 231.652344 221.875 231.746094 221.78125 231.746094 221.664062 Z M 231.746094 221.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.886719 219.871094 C 230.886719 219.753906 230.792969 219.660156 230.675781 219.660156 C 230.558594 219.660156 230.464844 219.753906 230.464844 219.871094 C 230.464844 219.988281 230.558594 220.082031 230.675781 220.082031 C 230.792969 220.082031 230.886719 219.988281 230.886719 219.871094 Z M 230.886719 219.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.6875 219.503906 C 232.6875 219.386719 232.59375 219.292969 232.476562 219.292969 C 232.359375 219.292969 232.265625 219.386719 232.265625 219.503906 C 232.265625 219.621094 232.359375 219.714844 232.476562 219.714844 C 232.59375 219.714844 232.6875 219.621094 232.6875 219.503906 Z M 232.6875 219.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.773438 221.847656 C 235.773438 221.730469 235.679688 221.636719 235.5625 221.636719 C 235.445312 221.636719 235.351562 221.730469 235.351562 221.847656 C 235.351562 221.964844 235.445312 222.058594 235.5625 222.058594 C 235.679688 222.058594 235.773438 221.964844 235.773438 221.847656 Z M 235.773438 221.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.976562 223.507812 C 237.976562 223.390625 237.882812 223.296875 237.765625 223.296875 C 237.648438 223.296875 237.554688 223.390625 237.554688 223.507812 C 237.554688 223.625 237.648438 223.71875 237.765625 223.71875 C 237.882812 223.71875 237.976562 223.625 237.976562 223.507812 Z M 237.976562 223.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.203125 222.433594 C 239.203125 222.316406 239.109375 222.222656 238.992188 222.222656 C 238.875 222.222656 238.78125 222.316406 238.78125 222.433594 C 238.78125 222.550781 238.875 222.644531 238.992188 222.644531 C 239.109375 222.644531 239.203125 222.550781 239.203125 222.433594 Z M 239.203125 222.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.960938 224.640625 C 237.960938 224.523438 237.867188 224.429688 237.75 224.429688 C 237.632812 224.429688 237.539062 224.523438 237.539062 224.640625 C 237.539062 224.757812 237.632812 224.851562 237.75 224.851562 C 237.867188 224.851562 237.960938 224.757812 237.960938 224.640625 Z M 237.960938 224.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.476562 219.378906 C 239.476562 219.261719 239.382812 219.167969 239.265625 219.167969 C 239.148438 219.167969 239.054688 219.261719 239.054688 219.378906 C 239.054688 219.496094 239.148438 219.589844 239.265625 219.589844 C 239.382812 219.589844 239.476562 219.496094 239.476562 219.378906 Z M 239.476562 219.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.859375 217.179688 C 236.859375 217.0625 236.765625 216.96875 236.648438 216.96875 C 236.53125 216.96875 236.4375 217.0625 236.4375 217.179688 C 236.4375 217.296875 236.53125 217.390625 236.648438 217.390625 C 236.765625 217.390625 236.859375 217.296875 236.859375 217.179688 Z M 236.859375 217.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.320312 215.714844 C 236.320312 215.597656 236.226562 215.503906 236.109375 215.503906 C 235.992188 215.503906 235.898438 215.597656 235.898438 215.714844 C 235.898438 215.832031 235.992188 215.925781 236.109375 215.925781 C 236.226562 215.925781 236.320312 215.832031 236.320312 215.714844 Z M 236.320312 215.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.382812 215.519531 C 237.382812 215.402344 237.289062 215.308594 237.171875 215.308594 C 237.054688 215.308594 236.960938 215.402344 236.960938 215.519531 C 236.960938 215.636719 237.054688 215.730469 237.171875 215.730469 C 237.289062 215.730469 237.382812 215.636719 237.382812 215.519531 Z M 237.382812 215.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.550781 216.140625 C 240.550781 216.023438 240.457031 215.929688 240.339844 215.929688 C 240.222656 215.929688 240.128906 216.023438 240.128906 216.140625 C 240.128906 216.257812 240.222656 216.351562 240.339844 216.351562 C 240.457031 216.351562 240.550781 216.257812 240.550781 216.140625 Z M 240.550781 216.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.59375 217.234375 C 237.59375 217.117188 237.5 217.023438 237.382812 217.023438 C 237.265625 217.023438 237.171875 217.117188 237.171875 217.234375 C 237.171875 217.351562 237.265625 217.445312 237.382812 217.445312 C 237.5 217.445312 237.59375 217.351562 237.59375 217.234375 Z M 237.59375 217.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.777344 220.515625 C 237.777344 220.398438 237.683594 220.304688 237.566406 220.304688 C 237.449219 220.304688 237.355469 220.398438 237.355469 220.515625 C 237.355469 220.632812 237.449219 220.726562 237.566406 220.726562 C 237.683594 220.726562 237.777344 220.632812 237.777344 220.515625 Z M 237.777344 220.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.953125 216.5625 C 238.953125 216.445312 238.859375 216.351562 238.742188 216.351562 C 238.625 216.351562 238.53125 216.445312 238.53125 216.5625 C 238.53125 216.679688 238.625 216.773438 238.742188 216.773438 C 238.859375 216.773438 238.953125 216.679688 238.953125 216.5625 Z M 238.953125 216.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.445312 214.789062 C 238.445312 214.671875 238.351562 214.578125 238.234375 214.578125 C 238.117188 214.578125 238.023438 214.671875 238.023438 214.789062 C 238.023438 214.90625 238.117188 215 238.234375 215 C 238.351562 215 238.445312 214.90625 238.445312 214.789062 Z M 238.445312 214.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.324219 217.171875 C 239.324219 217.054688 239.230469 216.960938 239.113281 216.960938 C 238.996094 216.960938 238.902344 217.054688 238.902344 217.171875 C 238.902344 217.289062 238.996094 217.382812 239.113281 217.382812 C 239.230469 217.382812 239.324219 217.289062 239.324219 217.171875 Z M 239.324219 217.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.996094 218.789062 C 236.996094 218.671875 236.902344 218.578125 236.785156 218.578125 C 236.667969 218.578125 236.574219 218.671875 236.574219 218.789062 C 236.574219 218.90625 236.667969 219 236.785156 219 C 236.902344 219 236.996094 218.90625 236.996094 218.789062 Z M 236.996094 218.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.636719 218.28125 C 238.636719 218.164062 238.542969 218.070312 238.425781 218.070312 C 238.308594 218.070312 238.214844 218.164062 238.214844 218.28125 C 238.214844 218.398438 238.308594 218.492188 238.425781 218.492188 C 238.542969 218.492188 238.636719 218.398438 238.636719 218.28125 Z M 238.636719 218.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.613281 219.589844 C 236.613281 219.472656 236.519531 219.378906 236.402344 219.378906 C 236.285156 219.378906 236.191406 219.472656 236.191406 219.589844 C 236.191406 219.707031 236.285156 219.800781 236.402344 219.800781 C 236.519531 219.800781 236.613281 219.707031 236.613281 219.589844 Z M 236.613281 219.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.058594 220.648438 C 237.058594 220.53125 236.964844 220.4375 236.847656 220.4375 C 236.730469 220.4375 236.636719 220.53125 236.636719 220.648438 C 236.636719 220.765625 236.730469 220.859375 236.847656 220.859375 C 236.964844 220.859375 237.058594 220.765625 237.058594 220.648438 Z M 237.058594 220.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.199219 226.027344 C 237.199219 225.910156 237.105469 225.816406 236.988281 225.816406 C 236.871094 225.816406 236.777344 225.910156 236.777344 226.027344 C 236.777344 226.144531 236.871094 226.238281 236.988281 226.238281 C 237.105469 226.238281 237.199219 226.144531 237.199219 226.027344 Z M 237.199219 226.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.601562 227.757812 C 239.601562 227.640625 239.507812 227.546875 239.390625 227.546875 C 239.273438 227.546875 239.179688 227.640625 239.179688 227.757812 C 239.179688 227.875 239.273438 227.96875 239.390625 227.96875 C 239.507812 227.96875 239.601562 227.875 239.601562 227.757812 Z M 239.601562 227.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.445312 230.546875 C 239.445312 230.429688 239.351562 230.335938 239.234375 230.335938 C 239.117188 230.335938 239.023438 230.429688 239.023438 230.546875 C 239.023438 230.664062 239.117188 230.757812 239.234375 230.757812 C 239.351562 230.757812 239.445312 230.664062 239.445312 230.546875 Z M 239.445312 230.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.773438 229.644531 C 237.773438 229.527344 237.679688 229.433594 237.5625 229.433594 C 237.445312 229.433594 237.351562 229.527344 237.351562 229.644531 C 237.351562 229.761719 237.445312 229.855469 237.5625 229.855469 C 237.679688 229.855469 237.773438 229.761719 237.773438 229.644531 Z M 237.773438 229.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.242188 232.601562 C 240.242188 232.484375 240.148438 232.390625 240.03125 232.390625 C 239.914062 232.390625 239.820312 232.484375 239.820312 232.601562 C 239.820312 232.71875 239.914062 232.8125 240.03125 232.8125 C 240.148438 232.8125 240.242188 232.71875 240.242188 232.601562 Z M 240.242188 232.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.28125 231.847656 C 240.28125 231.730469 240.1875 231.636719 240.070312 231.636719 C 239.953125 231.636719 239.859375 231.730469 239.859375 231.847656 C 239.859375 231.964844 239.953125 232.058594 240.070312 232.058594 C 240.1875 232.058594 240.28125 231.964844 240.28125 231.847656 Z M 240.28125 231.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.007812 230.726562 C 241.007812 230.609375 240.914062 230.515625 240.796875 230.515625 C 240.679688 230.515625 240.585938 230.609375 240.585938 230.726562 C 240.585938 230.84375 240.679688 230.9375 240.796875 230.9375 C 240.914062 230.9375 241.007812 230.84375 241.007812 230.726562 Z M 241.007812 230.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.804688 227.769531 C 242.804688 227.652344 242.710938 227.558594 242.59375 227.558594 C 242.476562 227.558594 242.382812 227.652344 242.382812 227.769531 C 242.382812 227.886719 242.476562 227.980469 242.59375 227.980469 C 242.710938 227.980469 242.804688 227.886719 242.804688 227.769531 Z M 242.804688 227.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.011719 229.648438 C 243.011719 229.53125 242.917969 229.4375 242.800781 229.4375 C 242.683594 229.4375 242.589844 229.53125 242.589844 229.648438 C 242.589844 229.765625 242.683594 229.859375 242.800781 229.859375 C 242.917969 229.859375 243.011719 229.765625 243.011719 229.648438 Z M 243.011719 229.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.699219 228.621094 C 245.699219 228.503906 245.605469 228.410156 245.488281 228.410156 C 245.371094 228.410156 245.277344 228.503906 245.277344 228.621094 C 245.277344 228.738281 245.371094 228.832031 245.488281 228.832031 C 245.605469 228.832031 245.699219 228.738281 245.699219 228.621094 Z M 245.699219 228.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.613281 230.613281 C 247.613281 230.496094 247.519531 230.402344 247.402344 230.402344 C 247.285156 230.402344 247.191406 230.496094 247.191406 230.613281 C 247.191406 230.730469 247.285156 230.824219 247.402344 230.824219 C 247.519531 230.824219 247.613281 230.730469 247.613281 230.613281 Z M 247.613281 230.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.980469 231.402344 C 251.980469 231.285156 251.886719 231.191406 251.769531 231.191406 C 251.652344 231.191406 251.558594 231.285156 251.558594 231.402344 C 251.558594 231.519531 251.652344 231.613281 251.769531 231.613281 C 251.886719 231.613281 251.980469 231.519531 251.980469 231.402344 Z M 251.980469 231.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.34375 228.792969 C 254.34375 228.675781 254.25 228.582031 254.132812 228.582031 C 254.015625 228.582031 253.921875 228.675781 253.921875 228.792969 C 253.921875 228.910156 254.015625 229.003906 254.132812 229.003906 C 254.25 229.003906 254.34375 228.910156 254.34375 228.792969 Z M 254.34375 228.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.0625 231.804688 C 254.0625 231.6875 253.96875 231.59375 253.851562 231.59375 C 253.734375 231.59375 253.640625 231.6875 253.640625 231.804688 C 253.640625 231.921875 253.734375 232.015625 253.851562 232.015625 C 253.96875 232.015625 254.0625 231.921875 254.0625 231.804688 Z M 254.0625 231.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.980469 232.175781 C 253.980469 232.058594 253.886719 231.964844 253.769531 231.964844 C 253.652344 231.964844 253.558594 232.058594 253.558594 232.175781 C 253.558594 232.292969 253.652344 232.386719 253.769531 232.386719 C 253.886719 232.386719 253.980469 232.292969 253.980469 232.175781 Z M 253.980469 232.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.429688 229.582031 C 253.429688 229.464844 253.335938 229.371094 253.21875 229.371094 C 253.101562 229.371094 253.007812 229.464844 253.007812 229.582031 C 253.007812 229.699219 253.101562 229.792969 253.21875 229.792969 C 253.335938 229.792969 253.429688 229.699219 253.429688 229.582031 Z M 253.429688 229.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.832031 227.914062 C 252.832031 227.796875 252.738281 227.703125 252.621094 227.703125 C 252.503906 227.703125 252.410156 227.796875 252.410156 227.914062 C 252.410156 228.03125 252.503906 228.125 252.621094 228.125 C 252.738281 228.125 252.832031 228.03125 252.832031 227.914062 Z M 252.832031 227.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.890625 228.871094 C 254.890625 228.753906 254.796875 228.660156 254.679688 228.660156 C 254.5625 228.660156 254.46875 228.753906 254.46875 228.871094 C 254.46875 228.988281 254.5625 229.082031 254.679688 229.082031 C 254.796875 229.082031 254.890625 228.988281 254.890625 228.871094 Z M 254.890625 228.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.8125 227.765625 C 254.8125 227.648438 254.71875 227.554688 254.601562 227.554688 C 254.484375 227.554688 254.390625 227.648438 254.390625 227.765625 C 254.390625 227.882812 254.484375 227.976562 254.601562 227.976562 C 254.71875 227.976562 254.8125 227.882812 254.8125 227.765625 Z M 254.8125 227.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.824219 231.011719 C 256.824219 230.894531 256.730469 230.800781 256.613281 230.800781 C 256.496094 230.800781 256.402344 230.894531 256.402344 231.011719 C 256.402344 231.128906 256.496094 231.222656 256.613281 231.222656 C 256.730469 231.222656 256.824219 231.128906 256.824219 231.011719 Z M 256.824219 231.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.828125 233.898438 C 258.828125 233.78125 258.734375 233.6875 258.617188 233.6875 C 258.5 233.6875 258.40625 233.78125 258.40625 233.898438 C 258.40625 234.015625 258.5 234.109375 258.617188 234.109375 C 258.734375 234.109375 258.828125 234.015625 258.828125 233.898438 Z M 258.828125 233.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.707031 229.3125 C 261.707031 229.195312 261.613281 229.101562 261.496094 229.101562 C 261.378906 229.101562 261.285156 229.195312 261.285156 229.3125 C 261.285156 229.429688 261.378906 229.523438 261.496094 229.523438 C 261.613281 229.523438 261.707031 229.429688 261.707031 229.3125 Z M 261.707031 229.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.65625 232.359375 C 265.65625 232.242188 265.5625 232.148438 265.445312 232.148438 C 265.328125 232.148438 265.234375 232.242188 265.234375 232.359375 C 265.234375 232.476562 265.328125 232.570312 265.445312 232.570312 C 265.5625 232.570312 265.65625 232.476562 265.65625 232.359375 Z M 265.65625 232.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.496094 232.070312 C 265.496094 231.953125 265.402344 231.859375 265.285156 231.859375 C 265.167969 231.859375 265.074219 231.953125 265.074219 232.070312 C 265.074219 232.1875 265.167969 232.28125 265.285156 232.28125 C 265.402344 232.28125 265.496094 232.1875 265.496094 232.070312 Z M 265.496094 232.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.460938 233.484375 C 266.460938 233.367188 266.367188 233.273438 266.25 233.273438 C 266.132812 233.273438 266.039062 233.367188 266.039062 233.484375 C 266.039062 233.601562 266.132812 233.695312 266.25 233.695312 C 266.367188 233.695312 266.460938 233.601562 266.460938 233.484375 Z M 266.460938 233.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.6875 231.96875 C 264.6875 231.851562 264.59375 231.757812 264.476562 231.757812 C 264.359375 231.757812 264.265625 231.851562 264.265625 231.96875 C 264.265625 232.085938 264.359375 232.179688 264.476562 232.179688 C 264.59375 232.179688 264.6875 232.085938 264.6875 231.96875 Z M 264.6875 231.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.332031 230.308594 C 263.332031 230.191406 263.238281 230.097656 263.121094 230.097656 C 263.003906 230.097656 262.910156 230.191406 262.910156 230.308594 C 262.910156 230.425781 263.003906 230.519531 263.121094 230.519531 C 263.238281 230.519531 263.332031 230.425781 263.332031 230.308594 Z M 263.332031 230.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.863281 235.210938 C 260.863281 235.09375 260.769531 235 260.652344 235 C 260.535156 235 260.441406 235.09375 260.441406 235.210938 C 260.441406 235.328125 260.535156 235.421875 260.652344 235.421875 C 260.769531 235.421875 260.863281 235.328125 260.863281 235.210938 Z M 260.863281 235.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.300781 236.546875 C 263.300781 236.429688 263.207031 236.335938 263.089844 236.335938 C 262.972656 236.335938 262.878906 236.429688 262.878906 236.546875 C 262.878906 236.664062 262.972656 236.757812 263.089844 236.757812 C 263.207031 236.757812 263.300781 236.664062 263.300781 236.546875 Z M 263.300781 236.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.679688 229.269531 C 262.679688 229.152344 262.585938 229.058594 262.46875 229.058594 C 262.351562 229.058594 262.257812 229.152344 262.257812 229.269531 C 262.257812 229.386719 262.351562 229.480469 262.46875 229.480469 C 262.585938 229.480469 262.679688 229.386719 262.679688 229.269531 Z M 262.679688 229.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.015625 229.058594 C 266.015625 228.941406 265.921875 228.847656 265.804688 228.847656 C 265.6875 228.847656 265.59375 228.941406 265.59375 229.058594 C 265.59375 229.175781 265.6875 229.269531 265.804688 229.269531 C 265.921875 229.269531 266.015625 229.175781 266.015625 229.058594 Z M 266.015625 229.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.683594 230.574219 C 266.683594 230.457031 266.589844 230.363281 266.472656 230.363281 C 266.355469 230.363281 266.261719 230.457031 266.261719 230.574219 C 266.261719 230.691406 266.355469 230.785156 266.472656 230.785156 C 266.589844 230.785156 266.683594 230.691406 266.683594 230.574219 Z M 266.683594 230.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.980469 229.675781 C 267.980469 229.558594 267.886719 229.464844 267.769531 229.464844 C 267.652344 229.464844 267.558594 229.558594 267.558594 229.675781 C 267.558594 229.792969 267.652344 229.886719 267.769531 229.886719 C 267.886719 229.886719 267.980469 229.792969 267.980469 229.675781 Z M 267.980469 229.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.171875 230.347656 C 266.171875 230.230469 266.078125 230.136719 265.960938 230.136719 C 265.84375 230.136719 265.75 230.230469 265.75 230.347656 C 265.75 230.464844 265.84375 230.558594 265.960938 230.558594 C 266.078125 230.558594 266.171875 230.464844 266.171875 230.347656 Z M 266.171875 230.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.714844 231.59375 C 267.714844 231.476562 267.621094 231.382812 267.503906 231.382812 C 267.386719 231.382812 267.292969 231.476562 267.292969 231.59375 C 267.292969 231.710938 267.386719 231.804688 267.503906 231.804688 C 267.621094 231.804688 267.714844 231.710938 267.714844 231.59375 Z M 267.714844 231.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.222656 236.664062 C 265.222656 236.546875 265.128906 236.453125 265.011719 236.453125 C 264.894531 236.453125 264.800781 236.546875 264.800781 236.664062 C 264.800781 236.78125 264.894531 236.875 265.011719 236.875 C 265.128906 236.875 265.222656 236.78125 265.222656 236.664062 Z M 265.222656 236.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.730469 239.660156 C 265.730469 239.542969 265.636719 239.449219 265.519531 239.449219 C 265.402344 239.449219 265.308594 239.542969 265.308594 239.660156 C 265.308594 239.777344 265.402344 239.871094 265.519531 239.871094 C 265.636719 239.871094 265.730469 239.777344 265.730469 239.660156 Z M 265.730469 239.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.234375 239.65625 C 263.234375 239.539062 263.140625 239.445312 263.023438 239.445312 C 262.90625 239.445312 262.8125 239.539062 262.8125 239.65625 C 262.8125 239.773438 262.90625 239.867188 263.023438 239.867188 C 263.140625 239.867188 263.234375 239.773438 263.234375 239.65625 Z M 263.234375 239.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.757812 241.296875 C 261.757812 241.179688 261.664062 241.085938 261.546875 241.085938 C 261.429688 241.085938 261.335938 241.179688 261.335938 241.296875 C 261.335938 241.414062 261.429688 241.507812 261.546875 241.507812 C 261.664062 241.507812 261.757812 241.414062 261.757812 241.296875 Z M 261.757812 241.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.429688 242.480469 C 261.429688 242.363281 261.335938 242.269531 261.21875 242.269531 C 261.101562 242.269531 261.007812 242.363281 261.007812 242.480469 C 261.007812 242.597656 261.101562 242.691406 261.21875 242.691406 C 261.335938 242.691406 261.429688 242.597656 261.429688 242.480469 Z M 261.429688 242.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.085938 242.304688 C 265.085938 242.1875 264.992188 242.09375 264.875 242.09375 C 264.757812 242.09375 264.664062 242.1875 264.664062 242.304688 C 264.664062 242.421875 264.757812 242.515625 264.875 242.515625 C 264.992188 242.515625 265.085938 242.421875 265.085938 242.304688 Z M 265.085938 242.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.253906 242.585938 C 262.253906 242.46875 262.160156 242.375 262.042969 242.375 C 261.925781 242.375 261.832031 242.46875 261.832031 242.585938 C 261.832031 242.703125 261.925781 242.796875 262.042969 242.796875 C 262.160156 242.796875 262.253906 242.703125 262.253906 242.585938 Z M 262.253906 242.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.394531 243.011719 C 262.394531 242.894531 262.300781 242.800781 262.183594 242.800781 C 262.066406 242.800781 261.972656 242.894531 261.972656 243.011719 C 261.972656 243.128906 262.066406 243.222656 262.183594 243.222656 C 262.300781 243.222656 262.394531 243.128906 262.394531 243.011719 Z M 262.394531 243.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.859375 241.585938 C 265.859375 241.46875 265.765625 241.375 265.648438 241.375 C 265.53125 241.375 265.4375 241.46875 265.4375 241.585938 C 265.4375 241.703125 265.53125 241.796875 265.648438 241.796875 C 265.765625 241.796875 265.859375 241.703125 265.859375 241.585938 Z M 265.859375 241.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.699219 244.125 C 261.699219 244.007812 261.605469 243.914062 261.488281 243.914062 C 261.371094 243.914062 261.277344 244.007812 261.277344 244.125 C 261.277344 244.242188 261.371094 244.335938 261.488281 244.335938 C 261.605469 244.335938 261.699219 244.242188 261.699219 244.125 Z M 261.699219 244.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.921875 240.667969 C 259.921875 240.550781 259.828125 240.457031 259.710938 240.457031 C 259.59375 240.457031 259.5 240.550781 259.5 240.667969 C 259.5 240.785156 259.59375 240.878906 259.710938 240.878906 C 259.828125 240.878906 259.921875 240.785156 259.921875 240.667969 Z M 259.921875 240.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.910156 240.410156 C 257.910156 240.292969 257.816406 240.199219 257.699219 240.199219 C 257.582031 240.199219 257.488281 240.292969 257.488281 240.410156 C 257.488281 240.527344 257.582031 240.621094 257.699219 240.621094 C 257.816406 240.621094 257.910156 240.527344 257.910156 240.410156 Z M 257.910156 240.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.90625 241.382812 C 260.90625 241.265625 260.8125 241.171875 260.695312 241.171875 C 260.578125 241.171875 260.484375 241.265625 260.484375 241.382812 C 260.484375 241.5 260.578125 241.59375 260.695312 241.59375 C 260.8125 241.59375 260.90625 241.5 260.90625 241.382812 Z M 260.90625 241.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.648438 238.488281 C 261.648438 238.371094 261.554688 238.277344 261.4375 238.277344 C 261.320312 238.277344 261.226562 238.371094 261.226562 238.488281 C 261.226562 238.605469 261.320312 238.699219 261.4375 238.699219 C 261.554688 238.699219 261.648438 238.605469 261.648438 238.488281 Z M 261.648438 238.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.632812 240.386719 C 261.632812 240.269531 261.539062 240.175781 261.421875 240.175781 C 261.304688 240.175781 261.210938 240.269531 261.210938 240.386719 C 261.210938 240.503906 261.304688 240.597656 261.421875 240.597656 C 261.539062 240.597656 261.632812 240.503906 261.632812 240.386719 Z M 261.632812 240.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.113281 240.378906 C 263.113281 240.261719 263.019531 240.167969 262.902344 240.167969 C 262.785156 240.167969 262.691406 240.261719 262.691406 240.378906 C 262.691406 240.496094 262.785156 240.589844 262.902344 240.589844 C 263.019531 240.589844 263.113281 240.496094 263.113281 240.378906 Z M 263.113281 240.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.59375 241.382812 C 266.59375 241.265625 266.5 241.171875 266.382812 241.171875 C 266.265625 241.171875 266.171875 241.265625 266.171875 241.382812 C 266.171875 241.5 266.265625 241.59375 266.382812 241.59375 C 266.5 241.59375 266.59375 241.5 266.59375 241.382812 Z M 266.59375 241.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.585938 243.105469 C 265.585938 242.988281 265.492188 242.894531 265.375 242.894531 C 265.257812 242.894531 265.164062 242.988281 265.164062 243.105469 C 265.164062 243.222656 265.257812 243.316406 265.375 243.316406 C 265.492188 243.316406 265.585938 243.222656 265.585938 243.105469 Z M 265.585938 243.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.4375 243.257812 C 264.4375 243.140625 264.34375 243.046875 264.226562 243.046875 C 264.109375 243.046875 264.015625 243.140625 264.015625 243.257812 C 264.015625 243.375 264.109375 243.46875 264.226562 243.46875 C 264.34375 243.46875 264.4375 243.375 264.4375 243.257812 Z M 264.4375 243.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.289062 244.703125 C 263.289062 244.585938 263.195312 244.492188 263.078125 244.492188 C 262.960938 244.492188 262.867188 244.585938 262.867188 244.703125 C 262.867188 244.820312 262.960938 244.914062 263.078125 244.914062 C 263.195312 244.914062 263.289062 244.820312 263.289062 244.703125 Z M 263.289062 244.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.214844 244.300781 C 262.214844 244.183594 262.121094 244.089844 262.003906 244.089844 C 261.886719 244.089844 261.792969 244.183594 261.792969 244.300781 C 261.792969 244.417969 261.886719 244.511719 262.003906 244.511719 C 262.121094 244.511719 262.214844 244.417969 262.214844 244.300781 Z M 262.214844 244.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.175781 245.410156 C 262.175781 245.292969 262.082031 245.199219 261.964844 245.199219 C 261.847656 245.199219 261.753906 245.292969 261.753906 245.410156 C 261.753906 245.527344 261.847656 245.621094 261.964844 245.621094 C 262.082031 245.621094 262.175781 245.527344 262.175781 245.410156 Z M 262.175781 245.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.597656 244.207031 C 261.597656 244.089844 261.503906 243.996094 261.386719 243.996094 C 261.269531 243.996094 261.175781 244.089844 261.175781 244.207031 C 261.175781 244.324219 261.269531 244.417969 261.386719 244.417969 C 261.503906 244.417969 261.597656 244.324219 261.597656 244.207031 Z M 261.597656 244.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.800781 242.308594 C 262.800781 242.191406 262.707031 242.097656 262.589844 242.097656 C 262.472656 242.097656 262.378906 242.191406 262.378906 242.308594 C 262.378906 242.425781 262.472656 242.519531 262.589844 242.519531 C 262.707031 242.519531 262.800781 242.425781 262.800781 242.308594 Z M 262.800781 242.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.8125 241.078125 C 263.8125 240.960938 263.71875 240.867188 263.601562 240.867188 C 263.484375 240.867188 263.390625 240.960938 263.390625 241.078125 C 263.390625 241.195312 263.484375 241.289062 263.601562 241.289062 C 263.71875 241.289062 263.8125 241.195312 263.8125 241.078125 Z M 263.8125 241.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.929688 244.785156 C 262.929688 244.667969 262.835938 244.574219 262.71875 244.574219 C 262.601562 244.574219 262.507812 244.667969 262.507812 244.785156 C 262.507812 244.902344 262.601562 244.996094 262.71875 244.996094 C 262.835938 244.996094 262.929688 244.902344 262.929688 244.785156 Z M 262.929688 244.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.433594 245.464844 C 262.433594 245.347656 262.339844 245.253906 262.222656 245.253906 C 262.105469 245.253906 262.011719 245.347656 262.011719 245.464844 C 262.011719 245.582031 262.105469 245.675781 262.222656 245.675781 C 262.339844 245.675781 262.433594 245.582031 262.433594 245.464844 Z M 262.433594 245.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.183594 246.285156 C 263.183594 246.167969 263.089844 246.074219 262.972656 246.074219 C 262.855469 246.074219 262.761719 246.167969 262.761719 246.285156 C 262.761719 246.402344 262.855469 246.496094 262.972656 246.496094 C 263.089844 246.496094 263.183594 246.402344 263.183594 246.285156 Z M 263.183594 246.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.058594 245.296875 C 263.058594 245.179688 262.964844 245.085938 262.847656 245.085938 C 262.730469 245.085938 262.636719 245.179688 262.636719 245.296875 C 262.636719 245.414062 262.730469 245.507812 262.847656 245.507812 C 262.964844 245.507812 263.058594 245.414062 263.058594 245.296875 Z M 263.058594 245.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.542969 248.539062 C 258.542969 248.421875 258.449219 248.328125 258.332031 248.328125 C 258.214844 248.328125 258.121094 248.421875 258.121094 248.539062 C 258.121094 248.65625 258.214844 248.75 258.332031 248.75 C 258.449219 248.75 258.542969 248.65625 258.542969 248.539062 Z M 258.542969 248.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.503906 250.523438 C 257.503906 250.40625 257.410156 250.3125 257.292969 250.3125 C 257.175781 250.3125 257.082031 250.40625 257.082031 250.523438 C 257.082031 250.640625 257.175781 250.734375 257.292969 250.734375 C 257.410156 250.734375 257.503906 250.640625 257.503906 250.523438 Z M 257.503906 250.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.222656 249.914062 C 259.222656 249.796875 259.128906 249.703125 259.011719 249.703125 C 258.894531 249.703125 258.800781 249.796875 258.800781 249.914062 C 258.800781 250.03125 258.894531 250.125 259.011719 250.125 C 259.128906 250.125 259.222656 250.03125 259.222656 249.914062 Z M 259.222656 249.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.644531 251.136719 C 264.644531 251.019531 264.550781 250.925781 264.433594 250.925781 C 264.316406 250.925781 264.222656 251.019531 264.222656 251.136719 C 264.222656 251.253906 264.316406 251.347656 264.433594 251.347656 C 264.550781 251.347656 264.644531 251.253906 264.644531 251.136719 Z M 264.644531 251.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.828125 250.515625 C 264.828125 250.398438 264.734375 250.304688 264.617188 250.304688 C 264.5 250.304688 264.40625 250.398438 264.40625 250.515625 C 264.40625 250.632812 264.5 250.726562 264.617188 250.726562 C 264.734375 250.726562 264.828125 250.632812 264.828125 250.515625 Z M 264.828125 250.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.9375 252.988281 C 266.9375 252.871094 266.84375 252.777344 266.726562 252.777344 C 266.609375 252.777344 266.515625 252.871094 266.515625 252.988281 C 266.515625 253.105469 266.609375 253.199219 266.726562 253.199219 C 266.84375 253.199219 266.9375 253.105469 266.9375 252.988281 Z M 266.9375 252.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.949219 253.527344 C 263.949219 253.410156 263.855469 253.316406 263.738281 253.316406 C 263.621094 253.316406 263.527344 253.410156 263.527344 253.527344 C 263.527344 253.644531 263.621094 253.738281 263.738281 253.738281 C 263.855469 253.738281 263.949219 253.644531 263.949219 253.527344 Z M 263.949219 253.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.671875 254.761719 C 265.671875 254.644531 265.578125 254.550781 265.460938 254.550781 C 265.34375 254.550781 265.25 254.644531 265.25 254.761719 C 265.25 254.878906 265.34375 254.972656 265.460938 254.972656 C 265.578125 254.972656 265.671875 254.878906 265.671875 254.761719 Z M 265.671875 254.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.0625 255.476562 C 267.0625 255.359375 266.96875 255.265625 266.851562 255.265625 C 266.734375 255.265625 266.640625 255.359375 266.640625 255.476562 C 266.640625 255.59375 266.734375 255.6875 266.851562 255.6875 C 266.96875 255.6875 267.0625 255.59375 267.0625 255.476562 Z M 267.0625 255.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.902344 253.871094 C 267.902344 253.753906 267.808594 253.660156 267.691406 253.660156 C 267.574219 253.660156 267.480469 253.753906 267.480469 253.871094 C 267.480469 253.988281 267.574219 254.082031 267.691406 254.082031 C 267.808594 254.082031 267.902344 253.988281 267.902344 253.871094 Z M 267.902344 253.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.417969 256.335938 C 267.417969 256.21875 267.324219 256.125 267.207031 256.125 C 267.089844 256.125 266.996094 256.21875 266.996094 256.335938 C 266.996094 256.453125 267.089844 256.546875 267.207031 256.546875 C 267.324219 256.546875 267.417969 256.453125 267.417969 256.335938 Z M 267.417969 256.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.910156 254.980469 C 268.910156 254.863281 268.816406 254.769531 268.699219 254.769531 C 268.582031 254.769531 268.488281 254.863281 268.488281 254.980469 C 268.488281 255.097656 268.582031 255.191406 268.699219 255.191406 C 268.816406 255.191406 268.910156 255.097656 268.910156 254.980469 Z M 268.910156 254.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.164062 255.765625 C 269.164062 255.648438 269.070312 255.554688 268.953125 255.554688 C 268.835938 255.554688 268.742188 255.648438 268.742188 255.765625 C 268.742188 255.882812 268.835938 255.976562 268.953125 255.976562 C 269.070312 255.976562 269.164062 255.882812 269.164062 255.765625 Z M 269.164062 255.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.960938 257.722656 C 268.960938 257.605469 268.867188 257.511719 268.75 257.511719 C 268.632812 257.511719 268.539062 257.605469 268.539062 257.722656 C 268.539062 257.839844 268.632812 257.933594 268.75 257.933594 C 268.867188 257.933594 268.960938 257.839844 268.960938 257.722656 Z M 268.960938 257.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.140625 252.742188 C 269.140625 252.625 269.046875 252.53125 268.929688 252.53125 C 268.8125 252.53125 268.71875 252.625 268.71875 252.742188 C 268.71875 252.859375 268.8125 252.953125 268.929688 252.953125 C 269.046875 252.953125 269.140625 252.859375 269.140625 252.742188 Z M 269.140625 252.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.554688 254.046875 C 273.554688 253.929688 273.460938 253.835938 273.34375 253.835938 C 273.226562 253.835938 273.132812 253.929688 273.132812 254.046875 C 273.132812 254.164062 273.226562 254.257812 273.34375 254.257812 C 273.460938 254.257812 273.554688 254.164062 273.554688 254.046875 Z M 273.554688 254.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.652344 252.410156 C 272.652344 252.292969 272.558594 252.199219 272.441406 252.199219 C 272.324219 252.199219 272.230469 252.292969 272.230469 252.410156 C 272.230469 252.527344 272.324219 252.621094 272.441406 252.621094 C 272.558594 252.621094 272.652344 252.527344 272.652344 252.410156 Z M 272.652344 252.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.820312 249.839844 C 271.820312 249.722656 271.726562 249.628906 271.609375 249.628906 C 271.492188 249.628906 271.398438 249.722656 271.398438 249.839844 C 271.398438 249.957031 271.492188 250.050781 271.609375 250.050781 C 271.726562 250.050781 271.820312 249.957031 271.820312 249.839844 Z M 271.820312 249.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.800781 250.242188 C 268.800781 250.125 268.707031 250.03125 268.589844 250.03125 C 268.472656 250.03125 268.378906 250.125 268.378906 250.242188 C 268.378906 250.359375 268.472656 250.453125 268.589844 250.453125 C 268.707031 250.453125 268.800781 250.359375 268.800781 250.242188 Z M 268.800781 250.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.238281 252.09375 C 270.238281 251.976562 270.144531 251.882812 270.027344 251.882812 C 269.910156 251.882812 269.816406 251.976562 269.816406 252.09375 C 269.816406 252.210938 269.910156 252.304688 270.027344 252.304688 C 270.144531 252.304688 270.238281 252.210938 270.238281 252.09375 Z M 270.238281 252.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.746094 251.996094 C 270.746094 251.878906 270.652344 251.785156 270.535156 251.785156 C 270.417969 251.785156 270.324219 251.878906 270.324219 251.996094 C 270.324219 252.113281 270.417969 252.207031 270.535156 252.207031 C 270.652344 252.207031 270.746094 252.113281 270.746094 251.996094 Z M 270.746094 251.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.632812 251.078125 C 271.632812 250.960938 271.539062 250.867188 271.421875 250.867188 C 271.304688 250.867188 271.210938 250.960938 271.210938 251.078125 C 271.210938 251.195312 271.304688 251.289062 271.421875 251.289062 C 271.539062 251.289062 271.632812 251.195312 271.632812 251.078125 Z M 271.632812 251.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.042969 253.675781 C 271.042969 253.558594 270.949219 253.464844 270.832031 253.464844 C 270.714844 253.464844 270.621094 253.558594 270.621094 253.675781 C 270.621094 253.792969 270.714844 253.886719 270.832031 253.886719 C 270.949219 253.886719 271.042969 253.792969 271.042969 253.675781 Z M 271.042969 253.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.746094 257.191406 C 269.746094 257.074219 269.652344 256.980469 269.535156 256.980469 C 269.417969 256.980469 269.324219 257.074219 269.324219 257.191406 C 269.324219 257.308594 269.417969 257.402344 269.535156 257.402344 C 269.652344 257.402344 269.746094 257.308594 269.746094 257.191406 Z M 269.746094 257.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.0625 255.464844 C 267.0625 255.347656 266.96875 255.253906 266.851562 255.253906 C 266.734375 255.253906 266.640625 255.347656 266.640625 255.464844 C 266.640625 255.582031 266.734375 255.675781 266.851562 255.675781 C 266.96875 255.675781 267.0625 255.582031 267.0625 255.464844 Z M 267.0625 255.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.171875 256.253906 C 267.171875 256.136719 267.078125 256.042969 266.960938 256.042969 C 266.84375 256.042969 266.75 256.136719 266.75 256.253906 C 266.75 256.371094 266.84375 256.464844 266.960938 256.464844 C 267.078125 256.464844 267.171875 256.371094 267.171875 256.253906 Z M 267.171875 256.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.207031 257.804688 C 265.207031 257.6875 265.113281 257.59375 264.996094 257.59375 C 264.878906 257.59375 264.785156 257.6875 264.785156 257.804688 C 264.785156 257.921875 264.878906 258.015625 264.996094 258.015625 C 265.113281 258.015625 265.207031 257.921875 265.207031 257.804688 Z M 265.207031 257.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.820312 260.4375 C 266.820312 260.320312 266.726562 260.226562 266.609375 260.226562 C 266.492188 260.226562 266.398438 260.320312 266.398438 260.4375 C 266.398438 260.554688 266.492188 260.648438 266.609375 260.648438 C 266.726562 260.648438 266.820312 260.554688 266.820312 260.4375 Z M 266.820312 260.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.539062 261.742188 C 266.539062 261.625 266.445312 261.53125 266.328125 261.53125 C 266.210938 261.53125 266.117188 261.625 266.117188 261.742188 C 266.117188 261.859375 266.210938 261.953125 266.328125 261.953125 C 266.445312 261.953125 266.539062 261.859375 266.539062 261.742188 Z M 266.539062 261.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.109375 263.167969 C 266.109375 263.050781 266.015625 262.957031 265.898438 262.957031 C 265.78125 262.957031 265.6875 263.050781 265.6875 263.167969 C 265.6875 263.285156 265.78125 263.378906 265.898438 263.378906 C 266.015625 263.378906 266.109375 263.285156 266.109375 263.167969 Z M 266.109375 263.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.160156 264.171875 C 265.160156 264.054688 265.066406 263.960938 264.949219 263.960938 C 264.832031 263.960938 264.738281 264.054688 264.738281 264.171875 C 264.738281 264.289062 264.832031 264.382812 264.949219 264.382812 C 265.066406 264.382812 265.160156 264.289062 265.160156 264.171875 Z M 265.160156 264.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.183594 263.210938 C 265.183594 263.09375 265.089844 263 264.972656 263 C 264.855469 263 264.761719 263.09375 264.761719 263.210938 C 264.761719 263.328125 264.855469 263.421875 264.972656 263.421875 C 265.089844 263.421875 265.183594 263.328125 265.183594 263.210938 Z M 265.183594 263.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.347656 268.261719 C 268.347656 268.144531 268.253906 268.050781 268.136719 268.050781 C 268.019531 268.050781 267.925781 268.144531 267.925781 268.261719 C 267.925781 268.378906 268.019531 268.472656 268.136719 268.472656 C 268.253906 268.472656 268.347656 268.378906 268.347656 268.261719 Z M 268.347656 268.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.199219 262.261719 C 268.199219 262.144531 268.105469 262.050781 267.988281 262.050781 C 267.871094 262.050781 267.777344 262.144531 267.777344 262.261719 C 267.777344 262.378906 267.871094 262.472656 267.988281 262.472656 C 268.105469 262.472656 268.199219 262.378906 268.199219 262.261719 Z M 268.199219 262.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.652344 262.910156 C 267.652344 262.792969 267.558594 262.699219 267.441406 262.699219 C 267.324219 262.699219 267.230469 262.792969 267.230469 262.910156 C 267.230469 263.027344 267.324219 263.121094 267.441406 263.121094 C 267.558594 263.121094 267.652344 263.027344 267.652344 262.910156 Z M 267.652344 262.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.753906 264.085938 C 270.753906 263.96875 270.660156 263.875 270.542969 263.875 C 270.425781 263.875 270.332031 263.96875 270.332031 264.085938 C 270.332031 264.203125 270.425781 264.296875 270.542969 264.296875 C 270.660156 264.296875 270.753906 264.203125 270.753906 264.085938 Z M 270.753906 264.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.753906 262.296875 C 269.753906 262.179688 269.660156 262.085938 269.542969 262.085938 C 269.425781 262.085938 269.332031 262.179688 269.332031 262.296875 C 269.332031 262.414062 269.425781 262.507812 269.542969 262.507812 C 269.660156 262.507812 269.753906 262.414062 269.753906 262.296875 Z M 269.753906 262.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.644531 261.285156 C 268.644531 261.167969 268.550781 261.074219 268.433594 261.074219 C 268.316406 261.074219 268.222656 261.167969 268.222656 261.285156 C 268.222656 261.402344 268.316406 261.496094 268.433594 261.496094 C 268.550781 261.496094 268.644531 261.402344 268.644531 261.285156 Z M 268.644531 261.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.394531 262.226562 C 267.394531 262.109375 267.300781 262.015625 267.183594 262.015625 C 267.066406 262.015625 266.972656 262.109375 266.972656 262.226562 C 266.972656 262.34375 267.066406 262.4375 267.183594 262.4375 C 267.300781 262.4375 267.394531 262.34375 267.394531 262.226562 Z M 267.394531 262.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.953125 261.558594 C 266.953125 261.441406 266.859375 261.347656 266.742188 261.347656 C 266.625 261.347656 266.53125 261.441406 266.53125 261.558594 C 266.53125 261.675781 266.625 261.769531 266.742188 261.769531 C 266.859375 261.769531 266.953125 261.675781 266.953125 261.558594 Z M 266.953125 261.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.90625 258.136719 C 267.90625 258.019531 267.8125 257.925781 267.695312 257.925781 C 267.578125 257.925781 267.484375 258.019531 267.484375 258.136719 C 267.484375 258.253906 267.578125 258.347656 267.695312 258.347656 C 267.8125 258.347656 267.90625 258.253906 267.90625 258.136719 Z M 267.90625 258.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.257812 256.140625 C 269.257812 256.023438 269.164062 255.929688 269.046875 255.929688 C 268.929688 255.929688 268.835938 256.023438 268.835938 256.140625 C 268.835938 256.257812 268.929688 256.351562 269.046875 256.351562 C 269.164062 256.351562 269.257812 256.257812 269.257812 256.140625 Z M 269.257812 256.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.441406 259.539062 C 269.441406 259.421875 269.347656 259.328125 269.230469 259.328125 C 269.113281 259.328125 269.019531 259.421875 269.019531 259.539062 C 269.019531 259.65625 269.113281 259.75 269.230469 259.75 C 269.347656 259.75 269.441406 259.65625 269.441406 259.539062 Z M 269.441406 259.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.917969 259.363281 C 265.917969 259.246094 265.824219 259.152344 265.707031 259.152344 C 265.589844 259.152344 265.496094 259.246094 265.496094 259.363281 C 265.496094 259.480469 265.589844 259.574219 265.707031 259.574219 C 265.824219 259.574219 265.917969 259.480469 265.917969 259.363281 Z M 265.917969 259.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.359375 259.617188 C 269.359375 259.5 269.265625 259.40625 269.148438 259.40625 C 269.03125 259.40625 268.9375 259.5 268.9375 259.617188 C 268.9375 259.734375 269.03125 259.828125 269.148438 259.828125 C 269.265625 259.828125 269.359375 259.734375 269.359375 259.617188 Z M 269.359375 259.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.734375 260.335938 C 268.734375 260.21875 268.640625 260.125 268.523438 260.125 C 268.40625 260.125 268.3125 260.21875 268.3125 260.335938 C 268.3125 260.453125 268.40625 260.546875 268.523438 260.546875 C 268.640625 260.546875 268.734375 260.453125 268.734375 260.335938 Z M 268.734375 260.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.597656 261.535156 C 267.597656 261.417969 267.503906 261.324219 267.386719 261.324219 C 267.269531 261.324219 267.175781 261.417969 267.175781 261.535156 C 267.175781 261.652344 267.269531 261.746094 267.386719 261.746094 C 267.503906 261.746094 267.597656 261.652344 267.597656 261.535156 Z M 267.597656 261.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.34375 261 C 264.34375 260.882812 264.25 260.789062 264.132812 260.789062 C 264.015625 260.789062 263.921875 260.882812 263.921875 261 C 263.921875 261.117188 264.015625 261.210938 264.132812 261.210938 C 264.25 261.210938 264.34375 261.117188 264.34375 261 Z M 264.34375 261 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.851562 258.109375 C 264.851562 257.992188 264.757812 257.898438 264.640625 257.898438 C 264.523438 257.898438 264.429688 257.992188 264.429688 258.109375 C 264.429688 258.226562 264.523438 258.320312 264.640625 258.320312 C 264.757812 258.320312 264.851562 258.226562 264.851562 258.109375 Z M 264.851562 258.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.679688 254.050781 C 263.679688 253.933594 263.585938 253.839844 263.46875 253.839844 C 263.351562 253.839844 263.257812 253.933594 263.257812 254.050781 C 263.257812 254.167969 263.351562 254.261719 263.46875 254.261719 C 263.585938 254.261719 263.679688 254.167969 263.679688 254.050781 Z M 263.679688 254.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.769531 253.394531 C 263.769531 253.277344 263.675781 253.183594 263.558594 253.183594 C 263.441406 253.183594 263.347656 253.277344 263.347656 253.394531 C 263.347656 253.511719 263.441406 253.605469 263.558594 253.605469 C 263.675781 253.605469 263.769531 253.511719 263.769531 253.394531 Z M 263.769531 253.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.617188 251.660156 C 264.617188 251.542969 264.523438 251.449219 264.40625 251.449219 C 264.289062 251.449219 264.195312 251.542969 264.195312 251.660156 C 264.195312 251.777344 264.289062 251.871094 264.40625 251.871094 C 264.523438 251.871094 264.617188 251.777344 264.617188 251.660156 Z M 264.617188 251.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.808594 252.9375 C 264.808594 252.820312 264.714844 252.726562 264.597656 252.726562 C 264.480469 252.726562 264.386719 252.820312 264.386719 252.9375 C 264.386719 253.054688 264.480469 253.148438 264.597656 253.148438 C 264.714844 253.148438 264.808594 253.054688 264.808594 252.9375 Z M 264.808594 252.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.613281 252.066406 C 265.613281 251.949219 265.519531 251.855469 265.402344 251.855469 C 265.285156 251.855469 265.191406 251.949219 265.191406 252.066406 C 265.191406 252.183594 265.285156 252.277344 265.402344 252.277344 C 265.519531 252.277344 265.613281 252.183594 265.613281 252.066406 Z M 265.613281 252.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.847656 254.75 C 267.847656 254.632812 267.753906 254.539062 267.636719 254.539062 C 267.519531 254.539062 267.425781 254.632812 267.425781 254.75 C 267.425781 254.867188 267.519531 254.960938 267.636719 254.960938 C 267.753906 254.960938 267.847656 254.867188 267.847656 254.75 Z M 267.847656 254.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.488281 257.511719 C 264.488281 257.394531 264.394531 257.300781 264.277344 257.300781 C 264.160156 257.300781 264.066406 257.394531 264.066406 257.511719 C 264.066406 257.628906 264.160156 257.722656 264.277344 257.722656 C 264.394531 257.722656 264.488281 257.628906 264.488281 257.511719 Z M 264.488281 257.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.851562 255.625 C 261.851562 255.507812 261.757812 255.414062 261.640625 255.414062 C 261.523438 255.414062 261.429688 255.507812 261.429688 255.625 C 261.429688 255.742188 261.523438 255.835938 261.640625 255.835938 C 261.757812 255.835938 261.851562 255.742188 261.851562 255.625 Z M 261.851562 255.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.308594 254.976562 C 257.308594 254.859375 257.214844 254.765625 257.097656 254.765625 C 256.980469 254.765625 256.886719 254.859375 256.886719 254.976562 C 256.886719 255.09375 256.980469 255.1875 257.097656 255.1875 C 257.214844 255.1875 257.308594 255.09375 257.308594 254.976562 Z M 257.308594 254.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.367188 253.734375 C 259.367188 253.617188 259.273438 253.523438 259.15625 253.523438 C 259.039062 253.523438 258.945312 253.617188 258.945312 253.734375 C 258.945312 253.851562 259.039062 253.945312 259.15625 253.945312 C 259.273438 253.945312 259.367188 253.851562 259.367188 253.734375 Z M 259.367188 253.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.269531 255.730469 C 259.269531 255.613281 259.175781 255.519531 259.058594 255.519531 C 258.941406 255.519531 258.847656 255.613281 258.847656 255.730469 C 258.847656 255.847656 258.941406 255.941406 259.058594 255.941406 C 259.175781 255.941406 259.269531 255.847656 259.269531 255.730469 Z M 259.269531 255.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.285156 251.980469 C 259.285156 251.863281 259.191406 251.769531 259.074219 251.769531 C 258.957031 251.769531 258.863281 251.863281 258.863281 251.980469 C 258.863281 252.097656 258.957031 252.191406 259.074219 252.191406 C 259.191406 252.191406 259.285156 252.097656 259.285156 251.980469 Z M 259.285156 251.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.628906 252.164062 C 261.628906 252.046875 261.535156 251.953125 261.417969 251.953125 C 261.300781 251.953125 261.207031 252.046875 261.207031 252.164062 C 261.207031 252.28125 261.300781 252.375 261.417969 252.375 C 261.535156 252.375 261.628906 252.28125 261.628906 252.164062 Z M 261.628906 252.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.917969 251.691406 C 264.917969 251.574219 264.824219 251.480469 264.707031 251.480469 C 264.589844 251.480469 264.496094 251.574219 264.496094 251.691406 C 264.496094 251.808594 264.589844 251.902344 264.707031 251.902344 C 264.824219 251.902344 264.917969 251.808594 264.917969 251.691406 Z M 264.917969 251.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.074219 249.742188 C 264.074219 249.625 263.980469 249.53125 263.863281 249.53125 C 263.746094 249.53125 263.652344 249.625 263.652344 249.742188 C 263.652344 249.859375 263.746094 249.953125 263.863281 249.953125 C 263.980469 249.953125 264.074219 249.859375 264.074219 249.742188 Z M 264.074219 249.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.941406 249.691406 C 261.941406 249.574219 261.847656 249.480469 261.730469 249.480469 C 261.613281 249.480469 261.519531 249.574219 261.519531 249.691406 C 261.519531 249.808594 261.613281 249.902344 261.730469 249.902344 C 261.847656 249.902344 261.941406 249.808594 261.941406 249.691406 Z M 261.941406 249.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.683594 249.378906 C 263.683594 249.261719 263.589844 249.167969 263.472656 249.167969 C 263.355469 249.167969 263.261719 249.261719 263.261719 249.378906 C 263.261719 249.496094 263.355469 249.589844 263.472656 249.589844 C 263.589844 249.589844 263.683594 249.496094 263.683594 249.378906 Z M 263.683594 249.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.835938 251.484375 C 264.835938 251.367188 264.742188 251.273438 264.625 251.273438 C 264.507812 251.273438 264.414062 251.367188 264.414062 251.484375 C 264.414062 251.601562 264.507812 251.695312 264.625 251.695312 C 264.742188 251.695312 264.835938 251.601562 264.835938 251.484375 Z M 264.835938 251.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.417969 251.03125 C 262.417969 250.914062 262.324219 250.820312 262.207031 250.820312 C 262.089844 250.820312 261.996094 250.914062 261.996094 251.03125 C 261.996094 251.148438 262.089844 251.242188 262.207031 251.242188 C 262.324219 251.242188 262.417969 251.148438 262.417969 251.03125 Z M 262.417969 251.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.265625 250.777344 C 259.265625 250.660156 259.171875 250.566406 259.054688 250.566406 C 258.9375 250.566406 258.84375 250.660156 258.84375 250.777344 C 258.84375 250.894531 258.9375 250.988281 259.054688 250.988281 C 259.171875 250.988281 259.265625 250.894531 259.265625 250.777344 Z M 259.265625 250.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.15625 252.058594 C 262.15625 251.941406 262.0625 251.847656 261.945312 251.847656 C 261.828125 251.847656 261.734375 251.941406 261.734375 252.058594 C 261.734375 252.175781 261.828125 252.269531 261.945312 252.269531 C 262.0625 252.269531 262.15625 252.175781 262.15625 252.058594 Z M 262.15625 252.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.863281 253.324219 C 259.863281 253.207031 259.769531 253.113281 259.652344 253.113281 C 259.535156 253.113281 259.441406 253.207031 259.441406 253.324219 C 259.441406 253.441406 259.535156 253.535156 259.652344 253.535156 C 259.769531 253.535156 259.863281 253.441406 259.863281 253.324219 Z M 259.863281 253.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.410156 253.996094 C 260.410156 253.878906 260.316406 253.785156 260.199219 253.785156 C 260.082031 253.785156 259.988281 253.878906 259.988281 253.996094 C 259.988281 254.113281 260.082031 254.207031 260.199219 254.207031 C 260.316406 254.207031 260.410156 254.113281 260.410156 253.996094 Z M 260.410156 253.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.738281 254.476562 C 258.738281 254.359375 258.644531 254.265625 258.527344 254.265625 C 258.410156 254.265625 258.316406 254.359375 258.316406 254.476562 C 258.316406 254.59375 258.410156 254.6875 258.527344 254.6875 C 258.644531 254.6875 258.738281 254.59375 258.738281 254.476562 Z M 258.738281 254.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.4375 254.066406 C 260.4375 253.949219 260.34375 253.855469 260.226562 253.855469 C 260.109375 253.855469 260.015625 253.949219 260.015625 254.066406 C 260.015625 254.183594 260.109375 254.277344 260.226562 254.277344 C 260.34375 254.277344 260.4375 254.183594 260.4375 254.066406 Z M 260.4375 254.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.960938 252.332031 C 263.960938 252.214844 263.867188 252.121094 263.75 252.121094 C 263.632812 252.121094 263.539062 252.214844 263.539062 252.332031 C 263.539062 252.449219 263.632812 252.542969 263.75 252.542969 C 263.867188 252.542969 263.960938 252.449219 263.960938 252.332031 Z M 263.960938 252.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.871094 251.945312 C 266.871094 251.828125 266.777344 251.734375 266.660156 251.734375 C 266.542969 251.734375 266.449219 251.828125 266.449219 251.945312 C 266.449219 252.0625 266.542969 252.15625 266.660156 252.15625 C 266.777344 252.15625 266.871094 252.0625 266.871094 251.945312 Z M 266.871094 251.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.445312 250.316406 C 269.445312 250.199219 269.351562 250.105469 269.234375 250.105469 C 269.117188 250.105469 269.023438 250.199219 269.023438 250.316406 C 269.023438 250.433594 269.117188 250.527344 269.234375 250.527344 C 269.351562 250.527344 269.445312 250.433594 269.445312 250.316406 Z M 269.445312 250.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.925781 249.046875 C 266.925781 248.929688 266.832031 248.835938 266.714844 248.835938 C 266.597656 248.835938 266.503906 248.929688 266.503906 249.046875 C 266.503906 249.164062 266.597656 249.257812 266.714844 249.257812 C 266.832031 249.257812 266.925781 249.164062 266.925781 249.046875 Z M 266.925781 249.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.636719 247.25 C 266.636719 247.132812 266.542969 247.039062 266.425781 247.039062 C 266.308594 247.039062 266.214844 247.132812 266.214844 247.25 C 266.214844 247.367188 266.308594 247.460938 266.425781 247.460938 C 266.542969 247.460938 266.636719 247.367188 266.636719 247.25 Z M 266.636719 247.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.890625 243.1875 C 263.890625 243.070312 263.796875 242.976562 263.679688 242.976562 C 263.5625 242.976562 263.46875 243.070312 263.46875 243.1875 C 263.46875 243.304688 263.5625 243.398438 263.679688 243.398438 C 263.796875 243.398438 263.890625 243.304688 263.890625 243.1875 Z M 263.890625 243.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.660156 242.316406 C 267.660156 242.199219 267.566406 242.105469 267.449219 242.105469 C 267.332031 242.105469 267.238281 242.199219 267.238281 242.316406 C 267.238281 242.433594 267.332031 242.527344 267.449219 242.527344 C 267.566406 242.527344 267.660156 242.433594 267.660156 242.316406 Z M 267.660156 242.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.707031 244.105469 C 263.707031 243.988281 263.613281 243.894531 263.496094 243.894531 C 263.378906 243.894531 263.285156 243.988281 263.285156 244.105469 C 263.285156 244.222656 263.378906 244.316406 263.496094 244.316406 C 263.613281 244.316406 263.707031 244.222656 263.707031 244.105469 Z M 263.707031 244.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.441406 243.394531 C 264.441406 243.277344 264.347656 243.183594 264.230469 243.183594 C 264.113281 243.183594 264.019531 243.277344 264.019531 243.394531 C 264.019531 243.511719 264.113281 243.605469 264.230469 243.605469 C 264.347656 243.605469 264.441406 243.511719 264.441406 243.394531 Z M 264.441406 243.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.503906 244.007812 C 262.503906 243.890625 262.410156 243.796875 262.292969 243.796875 C 262.175781 243.796875 262.082031 243.890625 262.082031 244.007812 C 262.082031 244.125 262.175781 244.21875 262.292969 244.21875 C 262.410156 244.21875 262.503906 244.125 262.503906 244.007812 Z M 262.503906 244.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.054688 248.164062 C 262.054688 248.046875 261.960938 247.953125 261.84375 247.953125 C 261.726562 247.953125 261.632812 248.046875 261.632812 248.164062 C 261.632812 248.28125 261.726562 248.375 261.84375 248.375 C 261.960938 248.375 262.054688 248.28125 262.054688 248.164062 Z M 262.054688 248.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.71875 252.5625 C 262.71875 252.445312 262.625 252.351562 262.507812 252.351562 C 262.390625 252.351562 262.296875 252.445312 262.296875 252.5625 C 262.296875 252.679688 262.390625 252.773438 262.507812 252.773438 C 262.625 252.773438 262.71875 252.679688 262.71875 252.5625 Z M 262.71875 252.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.371094 254.804688 C 262.371094 254.6875 262.277344 254.59375 262.160156 254.59375 C 262.042969 254.59375 261.949219 254.6875 261.949219 254.804688 C 261.949219 254.921875 262.042969 255.015625 262.160156 255.015625 C 262.277344 255.015625 262.371094 254.921875 262.371094 254.804688 Z M 262.371094 254.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.640625 255.414062 C 261.640625 255.296875 261.546875 255.203125 261.429688 255.203125 C 261.3125 255.203125 261.21875 255.296875 261.21875 255.414062 C 261.21875 255.53125 261.3125 255.625 261.429688 255.625 C 261.546875 255.625 261.640625 255.53125 261.640625 255.414062 Z M 261.640625 255.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.859375 254.695312 C 261.859375 254.578125 261.765625 254.484375 261.648438 254.484375 C 261.53125 254.484375 261.4375 254.578125 261.4375 254.695312 C 261.4375 254.8125 261.53125 254.90625 261.648438 254.90625 C 261.765625 254.90625 261.859375 254.8125 261.859375 254.695312 Z M 261.859375 254.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.496094 257.933594 C 259.496094 257.816406 259.402344 257.722656 259.285156 257.722656 C 259.167969 257.722656 259.074219 257.816406 259.074219 257.933594 C 259.074219 258.050781 259.167969 258.144531 259.285156 258.144531 C 259.402344 258.144531 259.496094 258.050781 259.496094 257.933594 Z M 259.496094 257.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.460938 255.699219 C 261.460938 255.582031 261.367188 255.488281 261.25 255.488281 C 261.132812 255.488281 261.039062 255.582031 261.039062 255.699219 C 261.039062 255.816406 261.132812 255.910156 261.25 255.910156 C 261.367188 255.910156 261.460938 255.816406 261.460938 255.699219 Z M 261.460938 255.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.167969 250.308594 C 264.167969 250.191406 264.074219 250.097656 263.957031 250.097656 C 263.839844 250.097656 263.746094 250.191406 263.746094 250.308594 C 263.746094 250.425781 263.839844 250.519531 263.957031 250.519531 C 264.074219 250.519531 264.167969 250.425781 264.167969 250.308594 Z M 264.167969 250.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.320312 248.546875 C 262.320312 248.429688 262.226562 248.335938 262.109375 248.335938 C 261.992188 248.335938 261.898438 248.429688 261.898438 248.546875 C 261.898438 248.664062 261.992188 248.757812 262.109375 248.757812 C 262.226562 248.757812 262.320312 248.664062 262.320312 248.546875 Z M 262.320312 248.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.980469 250.761719 C 262.980469 250.644531 262.886719 250.550781 262.769531 250.550781 C 262.652344 250.550781 262.558594 250.644531 262.558594 250.761719 C 262.558594 250.878906 262.652344 250.972656 262.769531 250.972656 C 262.886719 250.972656 262.980469 250.878906 262.980469 250.761719 Z M 262.980469 250.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.953125 249.601562 C 267.953125 249.484375 267.859375 249.390625 267.742188 249.390625 C 267.625 249.390625 267.53125 249.484375 267.53125 249.601562 C 267.53125 249.71875 267.625 249.8125 267.742188 249.8125 C 267.859375 249.8125 267.953125 249.71875 267.953125 249.601562 Z M 267.953125 249.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.183594 252.554688 C 265.183594 252.4375 265.089844 252.34375 264.972656 252.34375 C 264.855469 252.34375 264.761719 252.4375 264.761719 252.554688 C 264.761719 252.671875 264.855469 252.765625 264.972656 252.765625 C 265.089844 252.765625 265.183594 252.671875 265.183594 252.554688 Z M 265.183594 252.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.660156 253.253906 C 270.660156 253.136719 270.566406 253.042969 270.449219 253.042969 C 270.332031 253.042969 270.238281 253.136719 270.238281 253.253906 C 270.238281 253.371094 270.332031 253.464844 270.449219 253.464844 C 270.566406 253.464844 270.660156 253.371094 270.660156 253.253906 Z M 270.660156 253.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.859375 253.339844 C 269.859375 253.222656 269.765625 253.128906 269.648438 253.128906 C 269.53125 253.128906 269.4375 253.222656 269.4375 253.339844 C 269.4375 253.457031 269.53125 253.550781 269.648438 253.550781 C 269.765625 253.550781 269.859375 253.457031 269.859375 253.339844 Z M 269.859375 253.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.917969 251.398438 C 270.917969 251.28125 270.824219 251.1875 270.707031 251.1875 C 270.589844 251.1875 270.496094 251.28125 270.496094 251.398438 C 270.496094 251.515625 270.589844 251.609375 270.707031 251.609375 C 270.824219 251.609375 270.917969 251.515625 270.917969 251.398438 Z M 270.917969 251.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.726562 248.417969 C 266.726562 248.300781 266.632812 248.207031 266.515625 248.207031 C 266.398438 248.207031 266.304688 248.300781 266.304688 248.417969 C 266.304688 248.535156 266.398438 248.628906 266.515625 248.628906 C 266.632812 248.628906 266.726562 248.535156 266.726562 248.417969 Z M 266.726562 248.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.371094 247.328125 C 262.371094 247.210938 262.277344 247.117188 262.160156 247.117188 C 262.042969 247.117188 261.949219 247.210938 261.949219 247.328125 C 261.949219 247.445312 262.042969 247.539062 262.160156 247.539062 C 262.277344 247.539062 262.371094 247.445312 262.371094 247.328125 Z M 262.371094 247.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.632812 245.851562 C 260.632812 245.734375 260.539062 245.640625 260.421875 245.640625 C 260.304688 245.640625 260.210938 245.734375 260.210938 245.851562 C 260.210938 245.96875 260.304688 246.0625 260.421875 246.0625 C 260.539062 246.0625 260.632812 245.96875 260.632812 245.851562 Z M 260.632812 245.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.230469 248.464844 C 256.230469 248.347656 256.136719 248.253906 256.019531 248.253906 C 255.902344 248.253906 255.808594 248.347656 255.808594 248.464844 C 255.808594 248.582031 255.902344 248.675781 256.019531 248.675781 C 256.136719 248.675781 256.230469 248.582031 256.230469 248.464844 Z M 256.230469 248.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.421875 247.960938 C 256.421875 247.84375 256.328125 247.75 256.210938 247.75 C 256.09375 247.75 256 247.84375 256 247.960938 C 256 248.078125 256.09375 248.171875 256.210938 248.171875 C 256.328125 248.171875 256.421875 248.078125 256.421875 247.960938 Z M 256.421875 247.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.394531 252.078125 C 260.394531 251.960938 260.300781 251.867188 260.183594 251.867188 C 260.066406 251.867188 259.972656 251.960938 259.972656 252.078125 C 259.972656 252.195312 260.066406 252.289062 260.183594 252.289062 C 260.300781 252.289062 260.394531 252.195312 260.394531 252.078125 Z M 260.394531 252.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.117188 246.066406 C 256.117188 245.949219 256.023438 245.855469 255.90625 245.855469 C 255.789062 245.855469 255.695312 245.949219 255.695312 246.066406 C 255.695312 246.183594 255.789062 246.277344 255.90625 246.277344 C 256.023438 246.277344 256.117188 246.183594 256.117188 246.066406 Z M 256.117188 246.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.964844 247.90625 C 257.964844 247.789062 257.871094 247.695312 257.753906 247.695312 C 257.636719 247.695312 257.542969 247.789062 257.542969 247.90625 C 257.542969 248.023438 257.636719 248.117188 257.753906 248.117188 C 257.871094 248.117188 257.964844 248.023438 257.964844 247.90625 Z M 257.964844 247.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.90625 244.734375 C 256.90625 244.617188 256.8125 244.523438 256.695312 244.523438 C 256.578125 244.523438 256.484375 244.617188 256.484375 244.734375 C 256.484375 244.851562 256.578125 244.945312 256.695312 244.945312 C 256.8125 244.945312 256.90625 244.851562 256.90625 244.734375 Z M 256.90625 244.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.789062 243.214844 C 257.789062 243.097656 257.695312 243.003906 257.578125 243.003906 C 257.460938 243.003906 257.367188 243.097656 257.367188 243.214844 C 257.367188 243.332031 257.460938 243.425781 257.578125 243.425781 C 257.695312 243.425781 257.789062 243.332031 257.789062 243.214844 Z M 257.789062 243.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.441406 246.996094 C 256.441406 246.878906 256.347656 246.785156 256.230469 246.785156 C 256.113281 246.785156 256.019531 246.878906 256.019531 246.996094 C 256.019531 247.113281 256.113281 247.207031 256.230469 247.207031 C 256.347656 247.207031 256.441406 247.113281 256.441406 246.996094 Z M 256.441406 246.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.457031 246.855469 C 254.457031 246.738281 254.363281 246.644531 254.246094 246.644531 C 254.128906 246.644531 254.035156 246.738281 254.035156 246.855469 C 254.035156 246.972656 254.128906 247.066406 254.246094 247.066406 C 254.363281 247.066406 254.457031 246.972656 254.457031 246.855469 Z M 254.457031 246.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.097656 247.257812 C 257.097656 247.140625 257.003906 247.046875 256.886719 247.046875 C 256.769531 247.046875 256.675781 247.140625 256.675781 247.257812 C 256.675781 247.375 256.769531 247.46875 256.886719 247.46875 C 257.003906 247.46875 257.097656 247.375 257.097656 247.257812 Z M 257.097656 247.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.917969 247.214844 C 260.917969 247.097656 260.824219 247.003906 260.707031 247.003906 C 260.589844 247.003906 260.496094 247.097656 260.496094 247.214844 C 260.496094 247.332031 260.589844 247.425781 260.707031 247.425781 C 260.824219 247.425781 260.917969 247.332031 260.917969 247.214844 Z M 260.917969 247.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.105469 243.816406 C 265.105469 243.699219 265.011719 243.605469 264.894531 243.605469 C 264.777344 243.605469 264.683594 243.699219 264.683594 243.816406 C 264.683594 243.933594 264.777344 244.027344 264.894531 244.027344 C 265.011719 244.027344 265.105469 243.933594 265.105469 243.816406 Z M 265.105469 243.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.511719 244.054688 C 264.511719 243.9375 264.417969 243.84375 264.300781 243.84375 C 264.183594 243.84375 264.089844 243.9375 264.089844 244.054688 C 264.089844 244.171875 264.183594 244.265625 264.300781 244.265625 C 264.417969 244.265625 264.511719 244.171875 264.511719 244.054688 Z M 264.511719 244.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.027344 247.441406 C 263.027344 247.324219 262.933594 247.230469 262.816406 247.230469 C 262.699219 247.230469 262.605469 247.324219 262.605469 247.441406 C 262.605469 247.558594 262.699219 247.652344 262.816406 247.652344 C 262.933594 247.652344 263.027344 247.558594 263.027344 247.441406 Z M 263.027344 247.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.167969 247.484375 C 260.167969 247.367188 260.074219 247.273438 259.957031 247.273438 C 259.839844 247.273438 259.746094 247.367188 259.746094 247.484375 C 259.746094 247.601562 259.839844 247.695312 259.957031 247.695312 C 260.074219 247.695312 260.167969 247.601562 260.167969 247.484375 Z M 260.167969 247.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.78125 250.328125 C 261.78125 250.210938 261.6875 250.117188 261.570312 250.117188 C 261.453125 250.117188 261.359375 250.210938 261.359375 250.328125 C 261.359375 250.445312 261.453125 250.539062 261.570312 250.539062 C 261.6875 250.539062 261.78125 250.445312 261.78125 250.328125 Z M 261.78125 250.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.132812 250.144531 C 264.132812 250.027344 264.039062 249.933594 263.921875 249.933594 C 263.804688 249.933594 263.710938 250.027344 263.710938 250.144531 C 263.710938 250.261719 263.804688 250.355469 263.921875 250.355469 C 264.039062 250.355469 264.132812 250.261719 264.132812 250.144531 Z M 264.132812 250.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.980469 254.957031 C 263.980469 254.839844 263.886719 254.746094 263.769531 254.746094 C 263.652344 254.746094 263.558594 254.839844 263.558594 254.957031 C 263.558594 255.074219 263.652344 255.167969 263.769531 255.167969 C 263.886719 255.167969 263.980469 255.074219 263.980469 254.957031 Z M 263.980469 254.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.1875 259.539062 C 268.1875 259.421875 268.09375 259.328125 267.976562 259.328125 C 267.859375 259.328125 267.765625 259.421875 267.765625 259.539062 C 267.765625 259.65625 267.859375 259.75 267.976562 259.75 C 268.09375 259.75 268.1875 259.65625 268.1875 259.539062 Z M 268.1875 259.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.304688 257.015625 C 268.304688 256.898438 268.210938 256.804688 268.09375 256.804688 C 267.976562 256.804688 267.882812 256.898438 267.882812 257.015625 C 267.882812 257.132812 267.976562 257.226562 268.09375 257.226562 C 268.210938 257.226562 268.304688 257.132812 268.304688 257.015625 Z M 268.304688 257.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.789062 256.222656 C 269.789062 256.105469 269.695312 256.011719 269.578125 256.011719 C 269.460938 256.011719 269.367188 256.105469 269.367188 256.222656 C 269.367188 256.339844 269.460938 256.433594 269.578125 256.433594 C 269.695312 256.433594 269.789062 256.339844 269.789062 256.222656 Z M 269.789062 256.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.410156 256.496094 C 270.410156 256.378906 270.316406 256.285156 270.199219 256.285156 C 270.082031 256.285156 269.988281 256.378906 269.988281 256.496094 C 269.988281 256.613281 270.082031 256.707031 270.199219 256.707031 C 270.316406 256.707031 270.410156 256.613281 270.410156 256.496094 Z M 270.410156 256.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.835938 256.089844 C 271.835938 255.972656 271.742188 255.878906 271.625 255.878906 C 271.507812 255.878906 271.414062 255.972656 271.414062 256.089844 C 271.414062 256.207031 271.507812 256.300781 271.625 256.300781 C 271.742188 256.300781 271.835938 256.207031 271.835938 256.089844 Z M 271.835938 256.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272 255.914062 C 272 255.796875 271.90625 255.703125 271.789062 255.703125 C 271.671875 255.703125 271.578125 255.796875 271.578125 255.914062 C 271.578125 256.03125 271.671875 256.125 271.789062 256.125 C 271.90625 256.125 272 256.03125 272 255.914062 Z M 272 255.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.820312 257.222656 C 268.820312 257.105469 268.726562 257.011719 268.609375 257.011719 C 268.492188 257.011719 268.398438 257.105469 268.398438 257.222656 C 268.398438 257.339844 268.492188 257.433594 268.609375 257.433594 C 268.726562 257.433594 268.820312 257.339844 268.820312 257.222656 Z M 268.820312 257.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.738281 257.71875 C 267.738281 257.601562 267.644531 257.507812 267.527344 257.507812 C 267.410156 257.507812 267.316406 257.601562 267.316406 257.71875 C 267.316406 257.835938 267.410156 257.929688 267.527344 257.929688 C 267.644531 257.929688 267.738281 257.835938 267.738281 257.71875 Z M 267.738281 257.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.390625 258.078125 C 267.390625 257.960938 267.296875 257.867188 267.179688 257.867188 C 267.0625 257.867188 266.96875 257.960938 266.96875 258.078125 C 266.96875 258.195312 267.0625 258.289062 267.179688 258.289062 C 267.296875 258.289062 267.390625 258.195312 267.390625 258.078125 Z M 267.390625 258.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.882812 259.949219 C 270.882812 259.832031 270.789062 259.738281 270.671875 259.738281 C 270.554688 259.738281 270.460938 259.832031 270.460938 259.949219 C 270.460938 260.066406 270.554688 260.160156 270.671875 260.160156 C 270.789062 260.160156 270.882812 260.066406 270.882812 259.949219 Z M 270.882812 259.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.875 260.75 C 275.875 260.632812 275.78125 260.539062 275.664062 260.539062 C 275.546875 260.539062 275.453125 260.632812 275.453125 260.75 C 275.453125 260.867188 275.546875 260.960938 275.664062 260.960938 C 275.78125 260.960938 275.875 260.867188 275.875 260.75 Z M 275.875 260.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.480469 262.375 C 275.480469 262.257812 275.386719 262.164062 275.269531 262.164062 C 275.152344 262.164062 275.058594 262.257812 275.058594 262.375 C 275.058594 262.492188 275.152344 262.585938 275.269531 262.585938 C 275.386719 262.585938 275.480469 262.492188 275.480469 262.375 Z M 275.480469 262.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.28125 263.652344 C 274.28125 263.535156 274.1875 263.441406 274.070312 263.441406 C 273.953125 263.441406 273.859375 263.535156 273.859375 263.652344 C 273.859375 263.769531 273.953125 263.863281 274.070312 263.863281 C 274.1875 263.863281 274.28125 263.769531 274.28125 263.652344 Z M 274.28125 263.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.316406 266.496094 C 274.316406 266.378906 274.222656 266.285156 274.105469 266.285156 C 273.988281 266.285156 273.894531 266.378906 273.894531 266.496094 C 273.894531 266.613281 273.988281 266.707031 274.105469 266.707031 C 274.222656 266.707031 274.316406 266.613281 274.316406 266.496094 Z M 274.316406 266.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.210938 264.542969 C 270.210938 264.425781 270.117188 264.332031 270 264.332031 C 269.882812 264.332031 269.789062 264.425781 269.789062 264.542969 C 269.789062 264.660156 269.882812 264.753906 270 264.753906 C 270.117188 264.753906 270.210938 264.660156 270.210938 264.542969 Z M 270.210938 264.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.558594 264.023438 C 267.558594 263.90625 267.464844 263.8125 267.347656 263.8125 C 267.230469 263.8125 267.136719 263.90625 267.136719 264.023438 C 267.136719 264.140625 267.230469 264.234375 267.347656 264.234375 C 267.464844 264.234375 267.558594 264.140625 267.558594 264.023438 Z M 267.558594 264.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.828125 262.792969 C 266.828125 262.675781 266.734375 262.582031 266.617188 262.582031 C 266.5 262.582031 266.40625 262.675781 266.40625 262.792969 C 266.40625 262.910156 266.5 263.003906 266.617188 263.003906 C 266.734375 263.003906 266.828125 262.910156 266.828125 262.792969 Z M 266.828125 262.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.476562 264.078125 C 263.476562 263.960938 263.382812 263.867188 263.265625 263.867188 C 263.148438 263.867188 263.054688 263.960938 263.054688 264.078125 C 263.054688 264.195312 263.148438 264.289062 263.265625 264.289062 C 263.382812 264.289062 263.476562 264.195312 263.476562 264.078125 Z M 263.476562 264.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.28125 264.492188 C 263.28125 264.375 263.1875 264.28125 263.070312 264.28125 C 262.953125 264.28125 262.859375 264.375 262.859375 264.492188 C 262.859375 264.609375 262.953125 264.703125 263.070312 264.703125 C 263.1875 264.703125 263.28125 264.609375 263.28125 264.492188 Z M 263.28125 264.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.140625 262.503906 C 261.140625 262.386719 261.046875 262.292969 260.929688 262.292969 C 260.8125 262.292969 260.71875 262.386719 260.71875 262.503906 C 260.71875 262.621094 260.8125 262.714844 260.929688 262.714844 C 261.046875 262.714844 261.140625 262.621094 261.140625 262.503906 Z M 261.140625 262.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.757812 262.445312 C 259.757812 262.328125 259.664062 262.234375 259.546875 262.234375 C 259.429688 262.234375 259.335938 262.328125 259.335938 262.445312 C 259.335938 262.5625 259.429688 262.65625 259.546875 262.65625 C 259.664062 262.65625 259.757812 262.5625 259.757812 262.445312 Z M 259.757812 262.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.726562 261.796875 C 261.726562 261.679688 261.632812 261.585938 261.515625 261.585938 C 261.398438 261.585938 261.304688 261.679688 261.304688 261.796875 C 261.304688 261.914062 261.398438 262.007812 261.515625 262.007812 C 261.632812 262.007812 261.726562 261.914062 261.726562 261.796875 Z M 261.726562 261.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.816406 260.996094 C 257.816406 260.878906 257.722656 260.785156 257.605469 260.785156 C 257.488281 260.785156 257.394531 260.878906 257.394531 260.996094 C 257.394531 261.113281 257.488281 261.207031 257.605469 261.207031 C 257.722656 261.207031 257.816406 261.113281 257.816406 260.996094 Z M 257.816406 260.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.394531 257.25 C 258.394531 257.132812 258.300781 257.039062 258.183594 257.039062 C 258.066406 257.039062 257.972656 257.132812 257.972656 257.25 C 257.972656 257.367188 258.066406 257.460938 258.183594 257.460938 C 258.300781 257.460938 258.394531 257.367188 258.394531 257.25 Z M 258.394531 257.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.871094 255.863281 C 260.871094 255.746094 260.777344 255.652344 260.660156 255.652344 C 260.542969 255.652344 260.449219 255.746094 260.449219 255.863281 C 260.449219 255.980469 260.542969 256.074219 260.660156 256.074219 C 260.777344 256.074219 260.871094 255.980469 260.871094 255.863281 Z M 260.871094 255.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.390625 260.433594 C 259.390625 260.316406 259.296875 260.222656 259.179688 260.222656 C 259.0625 260.222656 258.96875 260.316406 258.96875 260.433594 C 258.96875 260.550781 259.0625 260.644531 259.179688 260.644531 C 259.296875 260.644531 259.390625 260.550781 259.390625 260.433594 Z M 259.390625 260.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.515625 259.167969 C 259.515625 259.050781 259.421875 258.957031 259.304688 258.957031 C 259.1875 258.957031 259.09375 259.050781 259.09375 259.167969 C 259.09375 259.285156 259.1875 259.378906 259.304688 259.378906 C 259.421875 259.378906 259.515625 259.285156 259.515625 259.167969 Z M 259.515625 259.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.414062 259.023438 C 262.414062 258.90625 262.320312 258.8125 262.203125 258.8125 C 262.085938 258.8125 261.992188 258.90625 261.992188 259.023438 C 261.992188 259.140625 262.085938 259.234375 262.203125 259.234375 C 262.320312 259.234375 262.414062 259.140625 262.414062 259.023438 Z M 262.414062 259.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.179688 258.417969 C 261.179688 258.300781 261.085938 258.207031 260.96875 258.207031 C 260.851562 258.207031 260.757812 258.300781 260.757812 258.417969 C 260.757812 258.535156 260.851562 258.628906 260.96875 258.628906 C 261.085938 258.628906 261.179688 258.535156 261.179688 258.417969 Z M 261.179688 258.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.226562 258.269531 C 260.226562 258.152344 260.132812 258.058594 260.015625 258.058594 C 259.898438 258.058594 259.804688 258.152344 259.804688 258.269531 C 259.804688 258.386719 259.898438 258.480469 260.015625 258.480469 C 260.132812 258.480469 260.226562 258.386719 260.226562 258.269531 Z M 260.226562 258.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.117188 258.671875 C 264.117188 258.554688 264.023438 258.460938 263.90625 258.460938 C 263.789062 258.460938 263.695312 258.554688 263.695312 258.671875 C 263.695312 258.789062 263.789062 258.882812 263.90625 258.882812 C 264.023438 258.882812 264.117188 258.789062 264.117188 258.671875 Z M 264.117188 258.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.539062 258.359375 C 263.539062 258.242188 263.445312 258.148438 263.328125 258.148438 C 263.210938 258.148438 263.117188 258.242188 263.117188 258.359375 C 263.117188 258.476562 263.210938 258.570312 263.328125 258.570312 C 263.445312 258.570312 263.539062 258.476562 263.539062 258.359375 Z M 263.539062 258.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.917969 253.382812 C 263.917969 253.265625 263.824219 253.171875 263.707031 253.171875 C 263.589844 253.171875 263.496094 253.265625 263.496094 253.382812 C 263.496094 253.5 263.589844 253.59375 263.707031 253.59375 C 263.824219 253.59375 263.917969 253.5 263.917969 253.382812 Z M 263.917969 253.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.457031 251.875 C 265.457031 251.757812 265.363281 251.664062 265.246094 251.664062 C 265.128906 251.664062 265.035156 251.757812 265.035156 251.875 C 265.035156 251.992188 265.128906 252.085938 265.246094 252.085938 C 265.363281 252.085938 265.457031 251.992188 265.457031 251.875 Z M 265.457031 251.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.460938 253.332031 C 266.460938 253.214844 266.367188 253.121094 266.25 253.121094 C 266.132812 253.121094 266.039062 253.214844 266.039062 253.332031 C 266.039062 253.449219 266.132812 253.542969 266.25 253.542969 C 266.367188 253.542969 266.460938 253.449219 266.460938 253.332031 Z M 266.460938 253.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.761719 254.277344 C 266.761719 254.160156 266.667969 254.066406 266.550781 254.066406 C 266.433594 254.066406 266.339844 254.160156 266.339844 254.277344 C 266.339844 254.394531 266.433594 254.488281 266.550781 254.488281 C 266.667969 254.488281 266.761719 254.394531 266.761719 254.277344 Z M 266.761719 254.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.078125 251.265625 C 266.078125 251.148438 265.984375 251.054688 265.867188 251.054688 C 265.75 251.054688 265.65625 251.148438 265.65625 251.265625 C 265.65625 251.382812 265.75 251.476562 265.867188 251.476562 C 265.984375 251.476562 266.078125 251.382812 266.078125 251.265625 Z M 266.078125 251.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.425781 248.710938 C 267.425781 248.59375 267.332031 248.5 267.214844 248.5 C 267.097656 248.5 267.003906 248.59375 267.003906 248.710938 C 267.003906 248.828125 267.097656 248.921875 267.214844 248.921875 C 267.332031 248.921875 267.425781 248.828125 267.425781 248.710938 Z M 267.425781 248.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.660156 252.359375 C 266.660156 252.242188 266.566406 252.148438 266.449219 252.148438 C 266.332031 252.148438 266.238281 252.242188 266.238281 252.359375 C 266.238281 252.476562 266.332031 252.570312 266.449219 252.570312 C 266.566406 252.570312 266.660156 252.476562 266.660156 252.359375 Z M 266.660156 252.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.429688 253.226562 C 269.429688 253.109375 269.335938 253.015625 269.21875 253.015625 C 269.101562 253.015625 269.007812 253.109375 269.007812 253.226562 C 269.007812 253.34375 269.101562 253.4375 269.21875 253.4375 C 269.335938 253.4375 269.429688 253.34375 269.429688 253.226562 Z M 269.429688 253.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.46875 254.480469 C 266.46875 254.363281 266.375 254.269531 266.257812 254.269531 C 266.140625 254.269531 266.046875 254.363281 266.046875 254.480469 C 266.046875 254.597656 266.140625 254.691406 266.257812 254.691406 C 266.375 254.691406 266.46875 254.597656 266.46875 254.480469 Z M 266.46875 254.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.828125 252.167969 C 267.828125 252.050781 267.734375 251.957031 267.617188 251.957031 C 267.5 251.957031 267.40625 252.050781 267.40625 252.167969 C 267.40625 252.285156 267.5 252.378906 267.617188 252.378906 C 267.734375 252.378906 267.828125 252.285156 267.828125 252.167969 Z M 267.828125 252.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.574219 251.019531 C 265.574219 250.902344 265.480469 250.808594 265.363281 250.808594 C 265.246094 250.808594 265.152344 250.902344 265.152344 251.019531 C 265.152344 251.136719 265.246094 251.230469 265.363281 251.230469 C 265.480469 251.230469 265.574219 251.136719 265.574219 251.019531 Z M 265.574219 251.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.660156 253.101562 C 263.660156 252.984375 263.566406 252.890625 263.449219 252.890625 C 263.332031 252.890625 263.238281 252.984375 263.238281 253.101562 C 263.238281 253.21875 263.332031 253.3125 263.449219 253.3125 C 263.566406 253.3125 263.660156 253.21875 263.660156 253.101562 Z M 263.660156 253.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.585938 251.761719 C 264.585938 251.644531 264.492188 251.550781 264.375 251.550781 C 264.257812 251.550781 264.164062 251.644531 264.164062 251.761719 C 264.164062 251.878906 264.257812 251.972656 264.375 251.972656 C 264.492188 251.972656 264.585938 251.878906 264.585938 251.761719 Z M 264.585938 251.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.550781 251.875 C 266.550781 251.757812 266.457031 251.664062 266.339844 251.664062 C 266.222656 251.664062 266.128906 251.757812 266.128906 251.875 C 266.128906 251.992188 266.222656 252.085938 266.339844 252.085938 C 266.457031 252.085938 266.550781 251.992188 266.550781 251.875 Z M 266.550781 251.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.28125 255.308594 C 266.28125 255.191406 266.1875 255.097656 266.070312 255.097656 C 265.953125 255.097656 265.859375 255.191406 265.859375 255.308594 C 265.859375 255.425781 265.953125 255.519531 266.070312 255.519531 C 266.1875 255.519531 266.28125 255.425781 266.28125 255.308594 Z M 266.28125 255.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.746094 256.59375 C 265.746094 256.476562 265.652344 256.382812 265.535156 256.382812 C 265.417969 256.382812 265.324219 256.476562 265.324219 256.59375 C 265.324219 256.710938 265.417969 256.804688 265.535156 256.804688 C 265.652344 256.804688 265.746094 256.710938 265.746094 256.59375 Z M 265.746094 256.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.195312 256.992188 C 266.195312 256.875 266.101562 256.78125 265.984375 256.78125 C 265.867188 256.78125 265.773438 256.875 265.773438 256.992188 C 265.773438 257.109375 265.867188 257.203125 265.984375 257.203125 C 266.101562 257.203125 266.195312 257.109375 266.195312 256.992188 Z M 266.195312 256.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.480469 255.746094 C 266.480469 255.628906 266.386719 255.535156 266.269531 255.535156 C 266.152344 255.535156 266.058594 255.628906 266.058594 255.746094 C 266.058594 255.863281 266.152344 255.957031 266.269531 255.957031 C 266.386719 255.957031 266.480469 255.863281 266.480469 255.746094 Z M 266.480469 255.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.398438 254.789062 C 266.398438 254.671875 266.304688 254.578125 266.1875 254.578125 C 266.070312 254.578125 265.976562 254.671875 265.976562 254.789062 C 265.976562 254.90625 266.070312 255 266.1875 255 C 266.304688 255 266.398438 254.90625 266.398438 254.789062 Z M 266.398438 254.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.320312 252.113281 C 268.320312 251.996094 268.226562 251.902344 268.109375 251.902344 C 267.992188 251.902344 267.898438 251.996094 267.898438 252.113281 C 267.898438 252.230469 267.992188 252.324219 268.109375 252.324219 C 268.226562 252.324219 268.320312 252.230469 268.320312 252.113281 Z M 268.320312 252.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.882812 253.714844 C 266.882812 253.597656 266.789062 253.503906 266.671875 253.503906 C 266.554688 253.503906 266.460938 253.597656 266.460938 253.714844 C 266.460938 253.832031 266.554688 253.925781 266.671875 253.925781 C 266.789062 253.925781 266.882812 253.832031 266.882812 253.714844 Z M 266.882812 253.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.585938 254.992188 C 266.585938 254.875 266.492188 254.78125 266.375 254.78125 C 266.257812 254.78125 266.164062 254.875 266.164062 254.992188 C 266.164062 255.109375 266.257812 255.203125 266.375 255.203125 C 266.492188 255.203125 266.585938 255.109375 266.585938 254.992188 Z M 266.585938 254.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.328125 255 C 270.328125 254.882812 270.234375 254.789062 270.117188 254.789062 C 270 254.789062 269.90625 254.882812 269.90625 255 C 269.90625 255.117188 270 255.210938 270.117188 255.210938 C 270.234375 255.210938 270.328125 255.117188 270.328125 255 Z M 270.328125 255 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.816406 254.28125 C 271.816406 254.164062 271.722656 254.070312 271.605469 254.070312 C 271.488281 254.070312 271.394531 254.164062 271.394531 254.28125 C 271.394531 254.398438 271.488281 254.492188 271.605469 254.492188 C 271.722656 254.492188 271.816406 254.398438 271.816406 254.28125 Z M 271.816406 254.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.105469 255.835938 C 271.105469 255.71875 271.011719 255.625 270.894531 255.625 C 270.777344 255.625 270.683594 255.71875 270.683594 255.835938 C 270.683594 255.953125 270.777344 256.046875 270.894531 256.046875 C 271.011719 256.046875 271.105469 255.953125 271.105469 255.835938 Z M 271.105469 255.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.574219 254.984375 C 269.574219 254.867188 269.480469 254.773438 269.363281 254.773438 C 269.246094 254.773438 269.152344 254.867188 269.152344 254.984375 C 269.152344 255.101562 269.246094 255.195312 269.363281 255.195312 C 269.480469 255.195312 269.574219 255.101562 269.574219 254.984375 Z M 269.574219 254.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.976562 251.105469 C 270.976562 250.988281 270.882812 250.894531 270.765625 250.894531 C 270.648438 250.894531 270.554688 250.988281 270.554688 251.105469 C 270.554688 251.222656 270.648438 251.316406 270.765625 251.316406 C 270.882812 251.316406 270.976562 251.222656 270.976562 251.105469 Z M 270.976562 251.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.269531 251.011719 C 267.269531 250.894531 267.175781 250.800781 267.058594 250.800781 C 266.941406 250.800781 266.847656 250.894531 266.847656 251.011719 C 266.847656 251.128906 266.941406 251.222656 267.058594 251.222656 C 267.175781 251.222656 267.269531 251.128906 267.269531 251.011719 Z M 267.269531 251.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.367188 247.507812 C 267.367188 247.390625 267.273438 247.296875 267.15625 247.296875 C 267.039062 247.296875 266.945312 247.390625 266.945312 247.507812 C 266.945312 247.625 267.039062 247.71875 267.15625 247.71875 C 267.273438 247.71875 267.367188 247.625 267.367188 247.507812 Z M 267.367188 247.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.320312 249.019531 C 268.320312 248.902344 268.226562 248.808594 268.109375 248.808594 C 267.992188 248.808594 267.898438 248.902344 267.898438 249.019531 C 267.898438 249.136719 267.992188 249.230469 268.109375 249.230469 C 268.226562 249.230469 268.320312 249.136719 268.320312 249.019531 Z M 268.320312 249.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.410156 250.953125 C 270.410156 250.835938 270.316406 250.742188 270.199219 250.742188 C 270.082031 250.742188 269.988281 250.835938 269.988281 250.953125 C 269.988281 251.070312 270.082031 251.164062 270.199219 251.164062 C 270.316406 251.164062 270.410156 251.070312 270.410156 250.953125 Z M 270.410156 250.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.601562 252.21875 C 273.601562 252.101562 273.507812 252.007812 273.390625 252.007812 C 273.273438 252.007812 273.179688 252.101562 273.179688 252.21875 C 273.179688 252.335938 273.273438 252.429688 273.390625 252.429688 C 273.507812 252.429688 273.601562 252.335938 273.601562 252.21875 Z M 273.601562 252.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.355469 256.601562 C 275.355469 256.484375 275.261719 256.390625 275.144531 256.390625 C 275.027344 256.390625 274.933594 256.484375 274.933594 256.601562 C 274.933594 256.71875 275.027344 256.8125 275.144531 256.8125 C 275.261719 256.8125 275.355469 256.71875 275.355469 256.601562 Z M 275.355469 256.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.820312 256.285156 C 276.820312 256.167969 276.726562 256.074219 276.609375 256.074219 C 276.492188 256.074219 276.398438 256.167969 276.398438 256.285156 C 276.398438 256.402344 276.492188 256.496094 276.609375 256.496094 C 276.726562 256.496094 276.820312 256.402344 276.820312 256.285156 Z M 276.820312 256.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.851562 257.75 C 281.851562 257.632812 281.757812 257.539062 281.640625 257.539062 C 281.523438 257.539062 281.429688 257.632812 281.429688 257.75 C 281.429688 257.867188 281.523438 257.960938 281.640625 257.960938 C 281.757812 257.960938 281.851562 257.867188 281.851562 257.75 Z M 281.851562 257.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.433594 256.636719 C 282.433594 256.519531 282.339844 256.425781 282.222656 256.425781 C 282.105469 256.425781 282.011719 256.519531 282.011719 256.636719 C 282.011719 256.753906 282.105469 256.847656 282.222656 256.847656 C 282.339844 256.847656 282.433594 256.753906 282.433594 256.636719 Z M 282.433594 256.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.265625 258.507812 C 283.265625 258.390625 283.171875 258.296875 283.054688 258.296875 C 282.9375 258.296875 282.84375 258.390625 282.84375 258.507812 C 282.84375 258.625 282.9375 258.71875 283.054688 258.71875 C 283.171875 258.71875 283.265625 258.625 283.265625 258.507812 Z M 283.265625 258.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.371094 257.25 C 279.371094 257.132812 279.277344 257.039062 279.160156 257.039062 C 279.042969 257.039062 278.949219 257.132812 278.949219 257.25 C 278.949219 257.367188 279.042969 257.460938 279.160156 257.460938 C 279.277344 257.460938 279.371094 257.367188 279.371094 257.25 Z M 279.371094 257.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.097656 260.152344 C 281.097656 260.035156 281.003906 259.941406 280.886719 259.941406 C 280.769531 259.941406 280.675781 260.035156 280.675781 260.152344 C 280.675781 260.269531 280.769531 260.363281 280.886719 260.363281 C 281.003906 260.363281 281.097656 260.269531 281.097656 260.152344 Z M 281.097656 260.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.035156 261.464844 C 282.035156 261.347656 281.941406 261.253906 281.824219 261.253906 C 281.707031 261.253906 281.613281 261.347656 281.613281 261.464844 C 281.613281 261.582031 281.707031 261.675781 281.824219 261.675781 C 281.941406 261.675781 282.035156 261.582031 282.035156 261.464844 Z M 282.035156 261.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.726562 260.367188 C 282.726562 260.25 282.632812 260.15625 282.515625 260.15625 C 282.398438 260.15625 282.304688 260.25 282.304688 260.367188 C 282.304688 260.484375 282.398438 260.578125 282.515625 260.578125 C 282.632812 260.578125 282.726562 260.484375 282.726562 260.367188 Z M 282.726562 260.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.980469 261.601562 C 282.980469 261.484375 282.886719 261.390625 282.769531 261.390625 C 282.652344 261.390625 282.558594 261.484375 282.558594 261.601562 C 282.558594 261.71875 282.652344 261.8125 282.769531 261.8125 C 282.886719 261.8125 282.980469 261.71875 282.980469 261.601562 Z M 282.980469 261.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.378906 260.164062 C 279.378906 260.046875 279.285156 259.953125 279.167969 259.953125 C 279.050781 259.953125 278.957031 260.046875 278.957031 260.164062 C 278.957031 260.28125 279.050781 260.375 279.167969 260.375 C 279.285156 260.375 279.378906 260.28125 279.378906 260.164062 Z M 279.378906 260.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.144531 259.457031 C 276.144531 259.339844 276.050781 259.246094 275.933594 259.246094 C 275.816406 259.246094 275.722656 259.339844 275.722656 259.457031 C 275.722656 259.574219 275.816406 259.667969 275.933594 259.667969 C 276.050781 259.667969 276.144531 259.574219 276.144531 259.457031 Z M 276.144531 259.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.574219 258.449219 C 279.574219 258.332031 279.480469 258.238281 279.363281 258.238281 C 279.246094 258.238281 279.152344 258.332031 279.152344 258.449219 C 279.152344 258.566406 279.246094 258.660156 279.363281 258.660156 C 279.480469 258.660156 279.574219 258.566406 279.574219 258.449219 Z M 279.574219 258.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.753906 255.019531 C 276.753906 254.902344 276.660156 254.808594 276.542969 254.808594 C 276.425781 254.808594 276.332031 254.902344 276.332031 255.019531 C 276.332031 255.136719 276.425781 255.230469 276.542969 255.230469 C 276.660156 255.230469 276.753906 255.136719 276.753906 255.019531 Z M 276.753906 255.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.410156 255.386719 C 278.410156 255.269531 278.316406 255.175781 278.199219 255.175781 C 278.082031 255.175781 277.988281 255.269531 277.988281 255.386719 C 277.988281 255.503906 278.082031 255.597656 278.199219 255.597656 C 278.316406 255.597656 278.410156 255.503906 278.410156 255.386719 Z M 278.410156 255.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.992188 259.246094 C 276.992188 259.128906 276.898438 259.035156 276.78125 259.035156 C 276.664062 259.035156 276.570312 259.128906 276.570312 259.246094 C 276.570312 259.363281 276.664062 259.457031 276.78125 259.457031 C 276.898438 259.457031 276.992188 259.363281 276.992188 259.246094 Z M 276.992188 259.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.742188 260.570312 C 276.742188 260.453125 276.648438 260.359375 276.53125 260.359375 C 276.414062 260.359375 276.320312 260.453125 276.320312 260.570312 C 276.320312 260.6875 276.414062 260.78125 276.53125 260.78125 C 276.648438 260.78125 276.742188 260.6875 276.742188 260.570312 Z M 276.742188 260.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.28125 262.441406 C 277.28125 262.324219 277.1875 262.230469 277.070312 262.230469 C 276.953125 262.230469 276.859375 262.324219 276.859375 262.441406 C 276.859375 262.558594 276.953125 262.652344 277.070312 262.652344 C 277.1875 262.652344 277.28125 262.558594 277.28125 262.441406 Z M 277.28125 262.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.519531 261.035156 C 275.519531 260.917969 275.425781 260.824219 275.308594 260.824219 C 275.191406 260.824219 275.097656 260.917969 275.097656 261.035156 C 275.097656 261.152344 275.191406 261.246094 275.308594 261.246094 C 275.425781 261.246094 275.519531 261.152344 275.519531 261.035156 Z M 275.519531 261.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.746094 262.46875 C 275.746094 262.351562 275.652344 262.257812 275.535156 262.257812 C 275.417969 262.257812 275.324219 262.351562 275.324219 262.46875 C 275.324219 262.585938 275.417969 262.679688 275.535156 262.679688 C 275.652344 262.679688 275.746094 262.585938 275.746094 262.46875 Z M 275.746094 262.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.238281 263.84375 C 278.238281 263.726562 278.144531 263.632812 278.027344 263.632812 C 277.910156 263.632812 277.816406 263.726562 277.816406 263.84375 C 277.816406 263.960938 277.910156 264.054688 278.027344 264.054688 C 278.144531 264.054688 278.238281 263.960938 278.238281 263.84375 Z M 278.238281 263.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.894531 264.121094 C 280.894531 264.003906 280.800781 263.910156 280.683594 263.910156 C 280.566406 263.910156 280.472656 264.003906 280.472656 264.121094 C 280.472656 264.238281 280.566406 264.332031 280.683594 264.332031 C 280.800781 264.332031 280.894531 264.238281 280.894531 264.121094 Z M 280.894531 264.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.277344 265.839844 C 283.277344 265.722656 283.183594 265.628906 283.066406 265.628906 C 282.949219 265.628906 282.855469 265.722656 282.855469 265.839844 C 282.855469 265.957031 282.949219 266.050781 283.066406 266.050781 C 283.183594 266.050781 283.277344 265.957031 283.277344 265.839844 Z M 283.277344 265.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.832031 266.480469 C 281.832031 266.363281 281.738281 266.269531 281.621094 266.269531 C 281.503906 266.269531 281.410156 266.363281 281.410156 266.480469 C 281.410156 266.597656 281.503906 266.691406 281.621094 266.691406 C 281.738281 266.691406 281.832031 266.597656 281.832031 266.480469 Z M 281.832031 266.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.464844 268.398438 C 283.464844 268.28125 283.371094 268.1875 283.253906 268.1875 C 283.136719 268.1875 283.042969 268.28125 283.042969 268.398438 C 283.042969 268.515625 283.136719 268.609375 283.253906 268.609375 C 283.371094 268.609375 283.464844 268.515625 283.464844 268.398438 Z M 283.464844 268.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.050781 266.71875 C 280.050781 266.601562 279.957031 266.507812 279.839844 266.507812 C 279.722656 266.507812 279.628906 266.601562 279.628906 266.71875 C 279.628906 266.835938 279.722656 266.929688 279.839844 266.929688 C 279.957031 266.929688 280.050781 266.835938 280.050781 266.71875 Z M 280.050781 266.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.835938 264.269531 C 278.835938 264.152344 278.742188 264.058594 278.625 264.058594 C 278.507812 264.058594 278.414062 264.152344 278.414062 264.269531 C 278.414062 264.386719 278.507812 264.480469 278.625 264.480469 C 278.742188 264.480469 278.835938 264.386719 278.835938 264.269531 Z M 278.835938 264.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.957031 264.074219 C 276.957031 263.957031 276.863281 263.863281 276.746094 263.863281 C 276.628906 263.863281 276.535156 263.957031 276.535156 264.074219 C 276.535156 264.191406 276.628906 264.285156 276.746094 264.285156 C 276.863281 264.285156 276.957031 264.191406 276.957031 264.074219 Z M 276.957031 264.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.257812 263.792969 C 277.257812 263.675781 277.164062 263.582031 277.046875 263.582031 C 276.929688 263.582031 276.835938 263.675781 276.835938 263.792969 C 276.835938 263.910156 276.929688 264.003906 277.046875 264.003906 C 277.164062 264.003906 277.257812 263.910156 277.257812 263.792969 Z M 277.257812 263.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.046875 267.449219 C 277.046875 267.332031 276.953125 267.238281 276.835938 267.238281 C 276.71875 267.238281 276.625 267.332031 276.625 267.449219 C 276.625 267.566406 276.71875 267.660156 276.835938 267.660156 C 276.953125 267.660156 277.046875 267.566406 277.046875 267.449219 Z M 277.046875 267.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.558594 271.203125 C 275.558594 271.085938 275.464844 270.992188 275.347656 270.992188 C 275.230469 270.992188 275.136719 271.085938 275.136719 271.203125 C 275.136719 271.320312 275.230469 271.414062 275.347656 271.414062 C 275.464844 271.414062 275.558594 271.320312 275.558594 271.203125 Z M 275.558594 271.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.949219 270.441406 C 279.949219 270.324219 279.855469 270.230469 279.738281 270.230469 C 279.621094 270.230469 279.527344 270.324219 279.527344 270.441406 C 279.527344 270.558594 279.621094 270.652344 279.738281 270.652344 C 279.855469 270.652344 279.949219 270.558594 279.949219 270.441406 Z M 279.949219 270.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.105469 269.65625 C 279.105469 269.539062 279.011719 269.445312 278.894531 269.445312 C 278.777344 269.445312 278.683594 269.539062 278.683594 269.65625 C 278.683594 269.773438 278.777344 269.867188 278.894531 269.867188 C 279.011719 269.867188 279.105469 269.773438 279.105469 269.65625 Z M 279.105469 269.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.40625 267.574219 C 276.40625 267.457031 276.3125 267.363281 276.195312 267.363281 C 276.078125 267.363281 275.984375 267.457031 275.984375 267.574219 C 275.984375 267.691406 276.078125 267.785156 276.195312 267.785156 C 276.3125 267.785156 276.40625 267.691406 276.40625 267.574219 Z M 276.40625 267.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.902344 267.746094 C 272.902344 267.628906 272.808594 267.535156 272.691406 267.535156 C 272.574219 267.535156 272.480469 267.628906 272.480469 267.746094 C 272.480469 267.863281 272.574219 267.957031 272.691406 267.957031 C 272.808594 267.957031 272.902344 267.863281 272.902344 267.746094 Z M 272.902344 267.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.734375 274.164062 C 272.734375 274.046875 272.640625 273.953125 272.523438 273.953125 C 272.40625 273.953125 272.3125 274.046875 272.3125 274.164062 C 272.3125 274.28125 272.40625 274.375 272.523438 274.375 C 272.640625 274.375 272.734375 274.28125 272.734375 274.164062 Z M 272.734375 274.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.09375 274.371094 C 272.09375 274.253906 272 274.160156 271.882812 274.160156 C 271.765625 274.160156 271.671875 274.253906 271.671875 274.371094 C 271.671875 274.488281 271.765625 274.582031 271.882812 274.582031 C 272 274.582031 272.09375 274.488281 272.09375 274.371094 Z M 272.09375 274.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.214844 272.59375 C 271.214844 272.476562 271.121094 272.382812 271.003906 272.382812 C 270.886719 272.382812 270.792969 272.476562 270.792969 272.59375 C 270.792969 272.710938 270.886719 272.804688 271.003906 272.804688 C 271.121094 272.804688 271.214844 272.710938 271.214844 272.59375 Z M 271.214844 272.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.804688 269.257812 C 270.804688 269.140625 270.710938 269.046875 270.59375 269.046875 C 270.476562 269.046875 270.382812 269.140625 270.382812 269.257812 C 270.382812 269.375 270.476562 269.46875 270.59375 269.46875 C 270.710938 269.46875 270.804688 269.375 270.804688 269.257812 Z M 270.804688 269.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.660156 268.371094 C 270.660156 268.253906 270.566406 268.160156 270.449219 268.160156 C 270.332031 268.160156 270.238281 268.253906 270.238281 268.371094 C 270.238281 268.488281 270.332031 268.582031 270.449219 268.582031 C 270.566406 268.582031 270.660156 268.488281 270.660156 268.371094 Z M 270.660156 268.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.25 265.34375 C 268.25 265.226562 268.15625 265.132812 268.039062 265.132812 C 267.921875 265.132812 267.828125 265.226562 267.828125 265.34375 C 267.828125 265.460938 267.921875 265.554688 268.039062 265.554688 C 268.15625 265.554688 268.25 265.460938 268.25 265.34375 Z M 268.25 265.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.722656 265.886719 C 265.722656 265.769531 265.628906 265.675781 265.511719 265.675781 C 265.394531 265.675781 265.300781 265.769531 265.300781 265.886719 C 265.300781 266.003906 265.394531 266.097656 265.511719 266.097656 C 265.628906 266.097656 265.722656 266.003906 265.722656 265.886719 Z M 265.722656 265.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.597656 266.492188 C 261.597656 266.375 261.503906 266.28125 261.386719 266.28125 C 261.269531 266.28125 261.175781 266.375 261.175781 266.492188 C 261.175781 266.609375 261.269531 266.703125 261.386719 266.703125 C 261.503906 266.703125 261.597656 266.609375 261.597656 266.492188 Z M 261.597656 266.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.621094 270.570312 C 259.621094 270.453125 259.527344 270.359375 259.410156 270.359375 C 259.292969 270.359375 259.199219 270.453125 259.199219 270.570312 C 259.199219 270.6875 259.292969 270.78125 259.410156 270.78125 C 259.527344 270.78125 259.621094 270.6875 259.621094 270.570312 Z M 259.621094 270.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.394531 269.796875 C 258.394531 269.679688 258.300781 269.585938 258.183594 269.585938 C 258.066406 269.585938 257.972656 269.679688 257.972656 269.796875 C 257.972656 269.914062 258.066406 270.007812 258.183594 270.007812 C 258.300781 270.007812 258.394531 269.914062 258.394531 269.796875 Z M 258.394531 269.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.0625 269.453125 C 258.0625 269.335938 257.96875 269.242188 257.851562 269.242188 C 257.734375 269.242188 257.640625 269.335938 257.640625 269.453125 C 257.640625 269.570312 257.734375 269.664062 257.851562 269.664062 C 257.96875 269.664062 258.0625 269.570312 258.0625 269.453125 Z M 258.0625 269.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.328125 271.566406 C 259.328125 271.449219 259.234375 271.355469 259.117188 271.355469 C 259 271.355469 258.90625 271.449219 258.90625 271.566406 C 258.90625 271.683594 259 271.777344 259.117188 271.777344 C 259.234375 271.777344 259.328125 271.683594 259.328125 271.566406 Z M 259.328125 271.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.679688 271.042969 C 255.679688 270.925781 255.585938 270.832031 255.46875 270.832031 C 255.351562 270.832031 255.257812 270.925781 255.257812 271.042969 C 255.257812 271.160156 255.351562 271.253906 255.46875 271.253906 C 255.585938 271.253906 255.679688 271.160156 255.679688 271.042969 Z M 255.679688 271.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.375 272.953125 C 257.375 272.835938 257.28125 272.742188 257.164062 272.742188 C 257.046875 272.742188 256.953125 272.835938 256.953125 272.953125 C 256.953125 273.070312 257.046875 273.164062 257.164062 273.164062 C 257.28125 273.164062 257.375 273.070312 257.375 272.953125 Z M 257.375 272.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.910156 277.828125 C 258.910156 277.710938 258.816406 277.617188 258.699219 277.617188 C 258.582031 277.617188 258.488281 277.710938 258.488281 277.828125 C 258.488281 277.945312 258.582031 278.039062 258.699219 278.039062 C 258.816406 278.039062 258.910156 277.945312 258.910156 277.828125 Z M 258.910156 277.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.734375 279.597656 C 260.734375 279.480469 260.640625 279.386719 260.523438 279.386719 C 260.40625 279.386719 260.3125 279.480469 260.3125 279.597656 C 260.3125 279.714844 260.40625 279.808594 260.523438 279.808594 C 260.640625 279.808594 260.734375 279.714844 260.734375 279.597656 Z M 260.734375 279.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.894531 277.378906 C 262.894531 277.261719 262.800781 277.167969 262.683594 277.167969 C 262.566406 277.167969 262.472656 277.261719 262.472656 277.378906 C 262.472656 277.496094 262.566406 277.589844 262.683594 277.589844 C 262.800781 277.589844 262.894531 277.496094 262.894531 277.378906 Z M 262.894531 277.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.15625 276.292969 C 262.15625 276.175781 262.0625 276.082031 261.945312 276.082031 C 261.828125 276.082031 261.734375 276.175781 261.734375 276.292969 C 261.734375 276.410156 261.828125 276.503906 261.945312 276.503906 C 262.0625 276.503906 262.15625 276.410156 262.15625 276.292969 Z M 262.15625 276.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.238281 274.007812 C 264.238281 273.890625 264.144531 273.796875 264.027344 273.796875 C 263.910156 273.796875 263.816406 273.890625 263.816406 274.007812 C 263.816406 274.125 263.910156 274.21875 264.027344 274.21875 C 264.144531 274.21875 264.238281 274.125 264.238281 274.007812 Z M 264.238281 274.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.988281 275.039062 C 263.988281 274.921875 263.894531 274.828125 263.777344 274.828125 C 263.660156 274.828125 263.566406 274.921875 263.566406 275.039062 C 263.566406 275.15625 263.660156 275.25 263.777344 275.25 C 263.894531 275.25 263.988281 275.15625 263.988281 275.039062 Z M 263.988281 275.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.421875 278.210938 C 261.421875 278.09375 261.328125 278 261.210938 278 C 261.09375 278 261 278.09375 261 278.210938 C 261 278.328125 261.09375 278.421875 261.210938 278.421875 C 261.328125 278.421875 261.421875 278.328125 261.421875 278.210938 Z M 261.421875 278.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.558594 278.777344 C 259.558594 278.660156 259.464844 278.566406 259.347656 278.566406 C 259.230469 278.566406 259.136719 278.660156 259.136719 278.777344 C 259.136719 278.894531 259.230469 278.988281 259.347656 278.988281 C 259.464844 278.988281 259.558594 278.894531 259.558594 278.777344 Z M 259.558594 278.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.601562 278.28125 C 261.601562 278.164062 261.507812 278.070312 261.390625 278.070312 C 261.273438 278.070312 261.179688 278.164062 261.179688 278.28125 C 261.179688 278.398438 261.273438 278.492188 261.390625 278.492188 C 261.507812 278.492188 261.601562 278.398438 261.601562 278.28125 Z M 261.601562 278.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.566406 278.980469 C 261.566406 278.863281 261.472656 278.769531 261.355469 278.769531 C 261.238281 278.769531 261.144531 278.863281 261.144531 278.980469 C 261.144531 279.097656 261.238281 279.191406 261.355469 279.191406 C 261.472656 279.191406 261.566406 279.097656 261.566406 278.980469 Z M 261.566406 278.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.355469 278.027344 C 260.355469 277.910156 260.261719 277.816406 260.144531 277.816406 C 260.027344 277.816406 259.933594 277.910156 259.933594 278.027344 C 259.933594 278.144531 260.027344 278.238281 260.144531 278.238281 C 260.261719 278.238281 260.355469 278.144531 260.355469 278.027344 Z M 260.355469 278.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.253906 279.136719 C 262.253906 279.019531 262.160156 278.925781 262.042969 278.925781 C 261.925781 278.925781 261.832031 279.019531 261.832031 279.136719 C 261.832031 279.253906 261.925781 279.347656 262.042969 279.347656 C 262.160156 279.347656 262.253906 279.253906 262.253906 279.136719 Z M 262.253906 279.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.367188 279.917969 C 260.367188 279.800781 260.273438 279.707031 260.15625 279.707031 C 260.039062 279.707031 259.945312 279.800781 259.945312 279.917969 C 259.945312 280.035156 260.039062 280.128906 260.15625 280.128906 C 260.273438 280.128906 260.367188 280.035156 260.367188 279.917969 Z M 260.367188 279.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.792969 280.214844 C 263.792969 280.097656 263.699219 280.003906 263.582031 280.003906 C 263.464844 280.003906 263.371094 280.097656 263.371094 280.214844 C 263.371094 280.332031 263.464844 280.425781 263.582031 280.425781 C 263.699219 280.425781 263.792969 280.332031 263.792969 280.214844 Z M 263.792969 280.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.460938 278.9375 C 266.460938 278.820312 266.367188 278.726562 266.25 278.726562 C 266.132812 278.726562 266.039062 278.820312 266.039062 278.9375 C 266.039062 279.054688 266.132812 279.148438 266.25 279.148438 C 266.367188 279.148438 266.460938 279.054688 266.460938 278.9375 Z M 266.460938 278.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.332031 277.851562 C 267.332031 277.734375 267.238281 277.640625 267.121094 277.640625 C 267.003906 277.640625 266.910156 277.734375 266.910156 277.851562 C 266.910156 277.96875 267.003906 278.0625 267.121094 278.0625 C 267.238281 278.0625 267.332031 277.96875 267.332031 277.851562 Z M 267.332031 277.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.917969 279.304688 C 270.917969 279.1875 270.824219 279.09375 270.707031 279.09375 C 270.589844 279.09375 270.496094 279.1875 270.496094 279.304688 C 270.496094 279.421875 270.589844 279.515625 270.707031 279.515625 C 270.824219 279.515625 270.917969 279.421875 270.917969 279.304688 Z M 270.917969 279.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.695312 278.320312 C 266.695312 278.203125 266.601562 278.109375 266.484375 278.109375 C 266.367188 278.109375 266.273438 278.203125 266.273438 278.320312 C 266.273438 278.4375 266.367188 278.53125 266.484375 278.53125 C 266.601562 278.53125 266.695312 278.4375 266.695312 278.320312 Z M 266.695312 278.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.222656 273.835938 C 266.222656 273.71875 266.128906 273.625 266.011719 273.625 C 265.894531 273.625 265.800781 273.71875 265.800781 273.835938 C 265.800781 273.953125 265.894531 274.046875 266.011719 274.046875 C 266.128906 274.046875 266.222656 273.953125 266.222656 273.835938 Z M 266.222656 273.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.632812 271.035156 C 266.632812 270.917969 266.539062 270.824219 266.421875 270.824219 C 266.304688 270.824219 266.210938 270.917969 266.210938 271.035156 C 266.210938 271.152344 266.304688 271.246094 266.421875 271.246094 C 266.539062 271.246094 266.632812 271.152344 266.632812 271.035156 Z M 266.632812 271.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.320312 268.773438 C 268.320312 268.65625 268.226562 268.5625 268.109375 268.5625 C 267.992188 268.5625 267.898438 268.65625 267.898438 268.773438 C 267.898438 268.890625 267.992188 268.984375 268.109375 268.984375 C 268.226562 268.984375 268.320312 268.890625 268.320312 268.773438 Z M 268.320312 268.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.449219 266.335938 C 269.449219 266.21875 269.355469 266.125 269.238281 266.125 C 269.121094 266.125 269.027344 266.21875 269.027344 266.335938 C 269.027344 266.453125 269.121094 266.546875 269.238281 266.546875 C 269.355469 266.546875 269.449219 266.453125 269.449219 266.335938 Z M 269.449219 266.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.453125 267.898438 C 270.453125 267.78125 270.359375 267.6875 270.242188 267.6875 C 270.125 267.6875 270.03125 267.78125 270.03125 267.898438 C 270.03125 268.015625 270.125 268.109375 270.242188 268.109375 C 270.359375 268.109375 270.453125 268.015625 270.453125 267.898438 Z M 270.453125 267.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.394531 264.789062 C 272.394531 264.671875 272.300781 264.578125 272.183594 264.578125 C 272.066406 264.578125 271.972656 264.671875 271.972656 264.789062 C 271.972656 264.90625 272.066406 265 272.183594 265 C 272.300781 265 272.394531 264.90625 272.394531 264.789062 Z M 272.394531 264.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.949219 266.832031 C 272.949219 266.714844 272.855469 266.621094 272.738281 266.621094 C 272.621094 266.621094 272.527344 266.714844 272.527344 266.832031 C 272.527344 266.949219 272.621094 267.042969 272.738281 267.042969 C 272.855469 267.042969 272.949219 266.949219 272.949219 266.832031 Z M 272.949219 266.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.796875 267.820312 C 274.796875 267.703125 274.703125 267.609375 274.585938 267.609375 C 274.46875 267.609375 274.375 267.703125 274.375 267.820312 C 274.375 267.9375 274.46875 268.03125 274.585938 268.03125 C 274.703125 268.03125 274.796875 267.9375 274.796875 267.820312 Z M 274.796875 267.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.300781 267.835938 C 277.300781 267.71875 277.207031 267.625 277.089844 267.625 C 276.972656 267.625 276.878906 267.71875 276.878906 267.835938 C 276.878906 267.953125 276.972656 268.046875 277.089844 268.046875 C 277.207031 268.046875 277.300781 267.953125 277.300781 267.835938 Z M 277.300781 267.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.171875 269.394531 C 277.171875 269.277344 277.078125 269.183594 276.960938 269.183594 C 276.84375 269.183594 276.75 269.277344 276.75 269.394531 C 276.75 269.511719 276.84375 269.605469 276.960938 269.605469 C 277.078125 269.605469 277.171875 269.511719 277.171875 269.394531 Z M 277.171875 269.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.011719 269.394531 C 277.011719 269.277344 276.917969 269.183594 276.800781 269.183594 C 276.683594 269.183594 276.589844 269.277344 276.589844 269.394531 C 276.589844 269.511719 276.683594 269.605469 276.800781 269.605469 C 276.917969 269.605469 277.011719 269.511719 277.011719 269.394531 Z M 277.011719 269.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.144531 266.953125 C 278.144531 266.835938 278.050781 266.742188 277.933594 266.742188 C 277.816406 266.742188 277.722656 266.835938 277.722656 266.953125 C 277.722656 267.070312 277.816406 267.164062 277.933594 267.164062 C 278.050781 267.164062 278.144531 267.070312 278.144531 266.953125 Z M 278.144531 266.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.136719 268.296875 C 280.136719 268.179688 280.042969 268.085938 279.925781 268.085938 C 279.808594 268.085938 279.714844 268.179688 279.714844 268.296875 C 279.714844 268.414062 279.808594 268.507812 279.925781 268.507812 C 280.042969 268.507812 280.136719 268.414062 280.136719 268.296875 Z M 280.136719 268.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.148438 262.691406 C 281.148438 262.574219 281.054688 262.480469 280.9375 262.480469 C 280.820312 262.480469 280.726562 262.574219 280.726562 262.691406 C 280.726562 262.808594 280.820312 262.902344 280.9375 262.902344 C 281.054688 262.902344 281.148438 262.808594 281.148438 262.691406 Z M 281.148438 262.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.644531 263.164062 C 278.644531 263.046875 278.550781 262.953125 278.433594 262.953125 C 278.316406 262.953125 278.222656 263.046875 278.222656 263.164062 C 278.222656 263.28125 278.316406 263.375 278.433594 263.375 C 278.550781 263.375 278.644531 263.28125 278.644531 263.164062 Z M 278.644531 263.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.675781 262.121094 C 276.675781 262.003906 276.582031 261.910156 276.464844 261.910156 C 276.347656 261.910156 276.253906 262.003906 276.253906 262.121094 C 276.253906 262.238281 276.347656 262.332031 276.464844 262.332031 C 276.582031 262.332031 276.675781 262.238281 276.675781 262.121094 Z M 276.675781 262.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.558594 263.285156 C 275.558594 263.167969 275.464844 263.074219 275.347656 263.074219 C 275.230469 263.074219 275.136719 263.167969 275.136719 263.285156 C 275.136719 263.402344 275.230469 263.496094 275.347656 263.496094 C 275.464844 263.496094 275.558594 263.402344 275.558594 263.285156 Z M 275.558594 263.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.617188 260.757812 C 272.617188 260.640625 272.523438 260.546875 272.40625 260.546875 C 272.289062 260.546875 272.195312 260.640625 272.195312 260.757812 C 272.195312 260.875 272.289062 260.96875 272.40625 260.96875 C 272.523438 260.96875 272.617188 260.875 272.617188 260.757812 Z M 272.617188 260.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.769531 262.949219 C 270.769531 262.832031 270.675781 262.738281 270.558594 262.738281 C 270.441406 262.738281 270.347656 262.832031 270.347656 262.949219 C 270.347656 263.066406 270.441406 263.160156 270.558594 263.160156 C 270.675781 263.160156 270.769531 263.066406 270.769531 262.949219 Z M 270.769531 262.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.847656 263.640625 C 269.847656 263.523438 269.753906 263.429688 269.636719 263.429688 C 269.519531 263.429688 269.425781 263.523438 269.425781 263.640625 C 269.425781 263.757812 269.519531 263.851562 269.636719 263.851562 C 269.753906 263.851562 269.847656 263.757812 269.847656 263.640625 Z M 269.847656 263.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.996094 262.039062 C 268.996094 261.921875 268.902344 261.828125 268.785156 261.828125 C 268.667969 261.828125 268.574219 261.921875 268.574219 262.039062 C 268.574219 262.15625 268.667969 262.25 268.785156 262.25 C 268.902344 262.25 268.996094 262.15625 268.996094 262.039062 Z M 268.996094 262.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.605469 259.226562 C 268.605469 259.109375 268.511719 259.015625 268.394531 259.015625 C 268.277344 259.015625 268.183594 259.109375 268.183594 259.226562 C 268.183594 259.34375 268.277344 259.4375 268.394531 259.4375 C 268.511719 259.4375 268.605469 259.34375 268.605469 259.226562 Z M 268.605469 259.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.152344 259.824219 C 267.152344 259.707031 267.058594 259.613281 266.941406 259.613281 C 266.824219 259.613281 266.730469 259.707031 266.730469 259.824219 C 266.730469 259.941406 266.824219 260.035156 266.941406 260.035156 C 267.058594 260.035156 267.152344 259.941406 267.152344 259.824219 Z M 267.152344 259.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.683594 258.988281 C 267.683594 258.871094 267.589844 258.777344 267.472656 258.777344 C 267.355469 258.777344 267.261719 258.871094 267.261719 258.988281 C 267.261719 259.105469 267.355469 259.199219 267.472656 259.199219 C 267.589844 259.199219 267.683594 259.105469 267.683594 258.988281 Z M 267.683594 258.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.933594 260.75 C 268.933594 260.632812 268.839844 260.539062 268.722656 260.539062 C 268.605469 260.539062 268.511719 260.632812 268.511719 260.75 C 268.511719 260.867188 268.605469 260.960938 268.722656 260.960938 C 268.839844 260.960938 268.933594 260.867188 268.933594 260.75 Z M 268.933594 260.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.910156 261.621094 C 266.910156 261.503906 266.816406 261.410156 266.699219 261.410156 C 266.582031 261.410156 266.488281 261.503906 266.488281 261.621094 C 266.488281 261.738281 266.582031 261.832031 266.699219 261.832031 C 266.816406 261.832031 266.910156 261.738281 266.910156 261.621094 Z M 266.910156 261.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.988281 260.816406 C 265.988281 260.699219 265.894531 260.605469 265.777344 260.605469 C 265.660156 260.605469 265.566406 260.699219 265.566406 260.816406 C 265.566406 260.933594 265.660156 261.027344 265.777344 261.027344 C 265.894531 261.027344 265.988281 260.933594 265.988281 260.816406 Z M 265.988281 260.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.796875 260.441406 C 266.796875 260.324219 266.703125 260.230469 266.585938 260.230469 C 266.46875 260.230469 266.375 260.324219 266.375 260.441406 C 266.375 260.558594 266.46875 260.652344 266.585938 260.652344 C 266.703125 260.652344 266.796875 260.558594 266.796875 260.441406 Z M 266.796875 260.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.40625 256.511719 C 268.40625 256.394531 268.3125 256.300781 268.195312 256.300781 C 268.078125 256.300781 267.984375 256.394531 267.984375 256.511719 C 267.984375 256.628906 268.078125 256.722656 268.195312 256.722656 C 268.3125 256.722656 268.40625 256.628906 268.40625 256.511719 Z M 268.40625 256.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.390625 258.664062 C 265.390625 258.546875 265.296875 258.453125 265.179688 258.453125 C 265.0625 258.453125 264.96875 258.546875 264.96875 258.664062 C 264.96875 258.78125 265.0625 258.875 265.179688 258.875 C 265.296875 258.875 265.390625 258.78125 265.390625 258.664062 Z M 265.390625 258.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.914062 258.339844 C 262.914062 258.222656 262.820312 258.128906 262.703125 258.128906 C 262.585938 258.128906 262.492188 258.222656 262.492188 258.339844 C 262.492188 258.457031 262.585938 258.550781 262.703125 258.550781 C 262.820312 258.550781 262.914062 258.457031 262.914062 258.339844 Z M 262.914062 258.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.933594 258.683594 C 265.933594 258.566406 265.839844 258.472656 265.722656 258.472656 C 265.605469 258.472656 265.511719 258.566406 265.511719 258.683594 C 265.511719 258.800781 265.605469 258.894531 265.722656 258.894531 C 265.839844 258.894531 265.933594 258.800781 265.933594 258.683594 Z M 265.933594 258.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.773438 257.496094 C 265.773438 257.378906 265.679688 257.285156 265.5625 257.285156 C 265.445312 257.285156 265.351562 257.378906 265.351562 257.496094 C 265.351562 257.613281 265.445312 257.707031 265.5625 257.707031 C 265.679688 257.707031 265.773438 257.613281 265.773438 257.496094 Z M 265.773438 257.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.464844 258.398438 C 265.464844 258.28125 265.371094 258.1875 265.253906 258.1875 C 265.136719 258.1875 265.042969 258.28125 265.042969 258.398438 C 265.042969 258.515625 265.136719 258.609375 265.253906 258.609375 C 265.371094 258.609375 265.464844 258.515625 265.464844 258.398438 Z M 265.464844 258.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.269531 255.988281 C 263.269531 255.871094 263.175781 255.777344 263.058594 255.777344 C 262.941406 255.777344 262.847656 255.871094 262.847656 255.988281 C 262.847656 256.105469 262.941406 256.199219 263.058594 256.199219 C 263.175781 256.199219 263.269531 256.105469 263.269531 255.988281 Z M 263.269531 255.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.078125 261.183594 C 265.078125 261.066406 264.984375 260.972656 264.867188 260.972656 C 264.75 260.972656 264.65625 261.066406 264.65625 261.183594 C 264.65625 261.300781 264.75 261.394531 264.867188 261.394531 C 264.984375 261.394531 265.078125 261.300781 265.078125 261.183594 Z M 265.078125 261.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.3125 261.078125 C 262.3125 260.960938 262.21875 260.867188 262.101562 260.867188 C 261.984375 260.867188 261.890625 260.960938 261.890625 261.078125 C 261.890625 261.195312 261.984375 261.289062 262.101562 261.289062 C 262.21875 261.289062 262.3125 261.195312 262.3125 261.078125 Z M 262.3125 261.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.695312 262.566406 C 261.695312 262.449219 261.601562 262.355469 261.484375 262.355469 C 261.367188 262.355469 261.273438 262.449219 261.273438 262.566406 C 261.273438 262.683594 261.367188 262.777344 261.484375 262.777344 C 261.601562 262.777344 261.695312 262.683594 261.695312 262.566406 Z M 261.695312 262.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.914062 261.019531 C 257.914062 260.902344 257.820312 260.808594 257.703125 260.808594 C 257.585938 260.808594 257.492188 260.902344 257.492188 261.019531 C 257.492188 261.136719 257.585938 261.230469 257.703125 261.230469 C 257.820312 261.230469 257.914062 261.136719 257.914062 261.019531 Z M 257.914062 261.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.261719 261.410156 C 256.261719 261.292969 256.167969 261.199219 256.050781 261.199219 C 255.933594 261.199219 255.839844 261.292969 255.839844 261.410156 C 255.839844 261.527344 255.933594 261.621094 256.050781 261.621094 C 256.167969 261.621094 256.261719 261.527344 256.261719 261.410156 Z M 256.261719 261.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.925781 258.691406 C 261.925781 258.574219 261.832031 258.480469 261.714844 258.480469 C 261.597656 258.480469 261.503906 258.574219 261.503906 258.691406 C 261.503906 258.808594 261.597656 258.902344 261.714844 258.902344 C 261.832031 258.902344 261.925781 258.808594 261.925781 258.691406 Z M 261.925781 258.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.148438 259.375 C 260.148438 259.257812 260.054688 259.164062 259.9375 259.164062 C 259.820312 259.164062 259.726562 259.257812 259.726562 259.375 C 259.726562 259.492188 259.820312 259.585938 259.9375 259.585938 C 260.054688 259.585938 260.148438 259.492188 260.148438 259.375 Z M 260.148438 259.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.605469 259.207031 C 262.605469 259.089844 262.511719 258.996094 262.394531 258.996094 C 262.277344 258.996094 262.183594 259.089844 262.183594 259.207031 C 262.183594 259.324219 262.277344 259.417969 262.394531 259.417969 C 262.511719 259.417969 262.605469 259.324219 262.605469 259.207031 Z M 262.605469 259.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.394531 258.527344 C 262.394531 258.410156 262.300781 258.316406 262.183594 258.316406 C 262.066406 258.316406 261.972656 258.410156 261.972656 258.527344 C 261.972656 258.644531 262.066406 258.738281 262.183594 258.738281 C 262.300781 258.738281 262.394531 258.644531 262.394531 258.527344 Z M 262.394531 258.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.410156 260.210938 C 258.410156 260.09375 258.316406 260 258.199219 260 C 258.082031 260 257.988281 260.09375 257.988281 260.210938 C 257.988281 260.328125 258.082031 260.421875 258.199219 260.421875 C 258.316406 260.421875 258.410156 260.328125 258.410156 260.210938 Z M 258.410156 260.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.03125 259.910156 C 260.03125 259.792969 259.9375 259.699219 259.820312 259.699219 C 259.703125 259.699219 259.609375 259.792969 259.609375 259.910156 C 259.609375 260.027344 259.703125 260.121094 259.820312 260.121094 C 259.9375 260.121094 260.03125 260.027344 260.03125 259.910156 Z M 260.03125 259.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.40625 262.007812 C 259.40625 261.890625 259.3125 261.796875 259.195312 261.796875 C 259.078125 261.796875 258.984375 261.890625 258.984375 262.007812 C 258.984375 262.125 259.078125 262.21875 259.195312 262.21875 C 259.3125 262.21875 259.40625 262.125 259.40625 262.007812 Z M 259.40625 262.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.527344 260.507812 C 257.527344 260.390625 257.433594 260.296875 257.316406 260.296875 C 257.199219 260.296875 257.105469 260.390625 257.105469 260.507812 C 257.105469 260.625 257.199219 260.71875 257.316406 260.71875 C 257.433594 260.71875 257.527344 260.625 257.527344 260.507812 Z M 257.527344 260.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.460938 260.875 C 259.460938 260.757812 259.367188 260.664062 259.25 260.664062 C 259.132812 260.664062 259.039062 260.757812 259.039062 260.875 C 259.039062 260.992188 259.132812 261.085938 259.25 261.085938 C 259.367188 261.085938 259.460938 260.992188 259.460938 260.875 Z M 259.460938 260.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.691406 259.097656 C 263.691406 258.980469 263.597656 258.886719 263.480469 258.886719 C 263.363281 258.886719 263.269531 258.980469 263.269531 259.097656 C 263.269531 259.214844 263.363281 259.308594 263.480469 259.308594 C 263.597656 259.308594 263.691406 259.214844 263.691406 259.097656 Z M 263.691406 259.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.898438 260.828125 C 259.898438 260.710938 259.804688 260.617188 259.6875 260.617188 C 259.570312 260.617188 259.476562 260.710938 259.476562 260.828125 C 259.476562 260.945312 259.570312 261.039062 259.6875 261.039062 C 259.804688 261.039062 259.898438 260.945312 259.898438 260.828125 Z M 259.898438 260.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.90625 259.574219 C 257.90625 259.457031 257.8125 259.363281 257.695312 259.363281 C 257.578125 259.363281 257.484375 259.457031 257.484375 259.574219 C 257.484375 259.691406 257.578125 259.785156 257.695312 259.785156 C 257.8125 259.785156 257.90625 259.691406 257.90625 259.574219 Z M 257.90625 259.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.199219 259.148438 C 259.199219 259.03125 259.105469 258.9375 258.988281 258.9375 C 258.871094 258.9375 258.777344 259.03125 258.777344 259.148438 C 258.777344 259.265625 258.871094 259.359375 258.988281 259.359375 C 259.105469 259.359375 259.199219 259.265625 259.199219 259.148438 Z M 259.199219 259.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.410156 259.574219 C 262.410156 259.457031 262.316406 259.363281 262.199219 259.363281 C 262.082031 259.363281 261.988281 259.457031 261.988281 259.574219 C 261.988281 259.691406 262.082031 259.785156 262.199219 259.785156 C 262.316406 259.785156 262.410156 259.691406 262.410156 259.574219 Z M 262.410156 259.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.664062 262.003906 C 261.664062 261.886719 261.570312 261.792969 261.453125 261.792969 C 261.335938 261.792969 261.242188 261.886719 261.242188 262.003906 C 261.242188 262.121094 261.335938 262.214844 261.453125 262.214844 C 261.570312 262.214844 261.664062 262.121094 261.664062 262.003906 Z M 261.664062 262.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.820312 262.074219 C 262.820312 261.957031 262.726562 261.863281 262.609375 261.863281 C 262.492188 261.863281 262.398438 261.957031 262.398438 262.074219 C 262.398438 262.191406 262.492188 262.285156 262.609375 262.285156 C 262.726562 262.285156 262.820312 262.191406 262.820312 262.074219 Z M 262.820312 262.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.566406 262.417969 C 259.566406 262.300781 259.472656 262.207031 259.355469 262.207031 C 259.238281 262.207031 259.144531 262.300781 259.144531 262.417969 C 259.144531 262.535156 259.238281 262.628906 259.355469 262.628906 C 259.472656 262.628906 259.566406 262.535156 259.566406 262.417969 Z M 259.566406 262.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.453125 260.355469 C 256.453125 260.238281 256.359375 260.144531 256.242188 260.144531 C 256.125 260.144531 256.03125 260.238281 256.03125 260.355469 C 256.03125 260.472656 256.125 260.566406 256.242188 260.566406 C 256.359375 260.566406 256.453125 260.472656 256.453125 260.355469 Z M 256.453125 260.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.753906 264.238281 C 254.753906 264.121094 254.660156 264.027344 254.542969 264.027344 C 254.425781 264.027344 254.332031 264.121094 254.332031 264.238281 C 254.332031 264.355469 254.425781 264.449219 254.542969 264.449219 C 254.660156 264.449219 254.753906 264.355469 254.753906 264.238281 Z M 254.753906 264.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.347656 264.113281 C 252.347656 263.996094 252.253906 263.902344 252.136719 263.902344 C 252.019531 263.902344 251.925781 263.996094 251.925781 264.113281 C 251.925781 264.230469 252.019531 264.324219 252.136719 264.324219 C 252.253906 264.324219 252.347656 264.230469 252.347656 264.113281 Z M 252.347656 264.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.328125 263.605469 C 254.328125 263.488281 254.234375 263.394531 254.117188 263.394531 C 254 263.394531 253.90625 263.488281 253.90625 263.605469 C 253.90625 263.722656 254 263.816406 254.117188 263.816406 C 254.234375 263.816406 254.328125 263.722656 254.328125 263.605469 Z M 254.328125 263.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.882812 264.714844 C 255.882812 264.597656 255.789062 264.503906 255.671875 264.503906 C 255.554688 264.503906 255.460938 264.597656 255.460938 264.714844 C 255.460938 264.832031 255.554688 264.925781 255.671875 264.925781 C 255.789062 264.925781 255.882812 264.832031 255.882812 264.714844 Z M 255.882812 264.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.660156 268.523438 C 261.660156 268.40625 261.566406 268.3125 261.449219 268.3125 C 261.332031 268.3125 261.238281 268.40625 261.238281 268.523438 C 261.238281 268.640625 261.332031 268.734375 261.449219 268.734375 C 261.566406 268.734375 261.660156 268.640625 261.660156 268.523438 Z M 261.660156 268.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.226562 271.898438 C 261.226562 271.78125 261.132812 271.6875 261.015625 271.6875 C 260.898438 271.6875 260.804688 271.78125 260.804688 271.898438 C 260.804688 272.015625 260.898438 272.109375 261.015625 272.109375 C 261.132812 272.109375 261.226562 272.015625 261.226562 271.898438 Z M 261.226562 271.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.011719 272.847656 C 261.011719 272.730469 260.917969 272.636719 260.800781 272.636719 C 260.683594 272.636719 260.589844 272.730469 260.589844 272.847656 C 260.589844 272.964844 260.683594 273.058594 260.800781 273.058594 C 260.917969 273.058594 261.011719 272.964844 261.011719 272.847656 Z M 261.011719 272.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.246094 269.585938 C 261.246094 269.46875 261.152344 269.375 261.035156 269.375 C 260.917969 269.375 260.824219 269.46875 260.824219 269.585938 C 260.824219 269.703125 260.917969 269.796875 261.035156 269.796875 C 261.152344 269.796875 261.246094 269.703125 261.246094 269.585938 Z M 261.246094 269.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.816406 268.667969 C 262.816406 268.550781 262.722656 268.457031 262.605469 268.457031 C 262.488281 268.457031 262.394531 268.550781 262.394531 268.667969 C 262.394531 268.785156 262.488281 268.878906 262.605469 268.878906 C 262.722656 268.878906 262.816406 268.785156 262.816406 268.667969 Z M 262.816406 268.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.027344 264.84375 C 260.027344 264.726562 259.933594 264.632812 259.816406 264.632812 C 259.699219 264.632812 259.605469 264.726562 259.605469 264.84375 C 259.605469 264.960938 259.699219 265.054688 259.816406 265.054688 C 259.933594 265.054688 260.027344 264.960938 260.027344 264.84375 Z M 260.027344 264.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.515625 265.191406 C 259.515625 265.074219 259.421875 264.980469 259.304688 264.980469 C 259.1875 264.980469 259.09375 265.074219 259.09375 265.191406 C 259.09375 265.308594 259.1875 265.402344 259.304688 265.402344 C 259.421875 265.402344 259.515625 265.308594 259.515625 265.191406 Z M 259.515625 265.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.074219 264.859375 C 261.074219 264.742188 260.980469 264.648438 260.863281 264.648438 C 260.746094 264.648438 260.652344 264.742188 260.652344 264.859375 C 260.652344 264.976562 260.746094 265.070312 260.863281 265.070312 C 260.980469 265.070312 261.074219 264.976562 261.074219 264.859375 Z M 261.074219 264.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.046875 263.253906 C 265.046875 263.136719 264.953125 263.042969 264.835938 263.042969 C 264.71875 263.042969 264.625 263.136719 264.625 263.253906 C 264.625 263.371094 264.71875 263.464844 264.835938 263.464844 C 264.953125 263.464844 265.046875 263.371094 265.046875 263.253906 Z M 265.046875 263.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.445312 266.226562 C 265.445312 266.109375 265.351562 266.015625 265.234375 266.015625 C 265.117188 266.015625 265.023438 266.109375 265.023438 266.226562 C 265.023438 266.34375 265.117188 266.4375 265.234375 266.4375 C 265.351562 266.4375 265.445312 266.34375 265.445312 266.226562 Z M 265.445312 266.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.375 267.71875 C 266.375 267.601562 266.28125 267.507812 266.164062 267.507812 C 266.046875 267.507812 265.953125 267.601562 265.953125 267.71875 C 265.953125 267.835938 266.046875 267.929688 266.164062 267.929688 C 266.28125 267.929688 266.375 267.835938 266.375 267.71875 Z M 266.375 267.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.503906 265.480469 C 268.503906 265.363281 268.410156 265.269531 268.292969 265.269531 C 268.175781 265.269531 268.082031 265.363281 268.082031 265.480469 C 268.082031 265.597656 268.175781 265.691406 268.292969 265.691406 C 268.410156 265.691406 268.503906 265.597656 268.503906 265.480469 Z M 268.503906 265.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.417969 265.421875 C 270.417969 265.304688 270.324219 265.210938 270.207031 265.210938 C 270.089844 265.210938 269.996094 265.304688 269.996094 265.421875 C 269.996094 265.539062 270.089844 265.632812 270.207031 265.632812 C 270.324219 265.632812 270.417969 265.539062 270.417969 265.421875 Z M 270.417969 265.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.472656 264.011719 C 268.472656 263.894531 268.378906 263.800781 268.261719 263.800781 C 268.144531 263.800781 268.050781 263.894531 268.050781 264.011719 C 268.050781 264.128906 268.144531 264.222656 268.261719 264.222656 C 268.378906 264.222656 268.472656 264.128906 268.472656 264.011719 Z M 268.472656 264.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.800781 264.496094 C 267.800781 264.378906 267.707031 264.285156 267.589844 264.285156 C 267.472656 264.285156 267.378906 264.378906 267.378906 264.496094 C 267.378906 264.613281 267.472656 264.707031 267.589844 264.707031 C 267.707031 264.707031 267.800781 264.613281 267.800781 264.496094 Z M 267.800781 264.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.621094 265.339844 C 269.621094 265.222656 269.527344 265.128906 269.410156 265.128906 C 269.292969 265.128906 269.199219 265.222656 269.199219 265.339844 C 269.199219 265.457031 269.292969 265.550781 269.410156 265.550781 C 269.527344 265.550781 269.621094 265.457031 269.621094 265.339844 Z M 269.621094 265.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.582031 262.652344 C 267.582031 262.535156 267.488281 262.441406 267.371094 262.441406 C 267.253906 262.441406 267.160156 262.535156 267.160156 262.652344 C 267.160156 262.769531 267.253906 262.863281 267.371094 262.863281 C 267.488281 262.863281 267.582031 262.769531 267.582031 262.652344 Z M 267.582031 262.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.339844 259.441406 C 270.339844 259.324219 270.246094 259.230469 270.128906 259.230469 C 270.011719 259.230469 269.917969 259.324219 269.917969 259.441406 C 269.917969 259.558594 270.011719 259.652344 270.128906 259.652344 C 270.246094 259.652344 270.339844 259.558594 270.339844 259.441406 Z M 270.339844 259.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.429688 261.871094 C 276.429688 261.753906 276.335938 261.660156 276.21875 261.660156 C 276.101562 261.660156 276.007812 261.753906 276.007812 261.871094 C 276.007812 261.988281 276.101562 262.082031 276.21875 262.082031 C 276.335938 262.082031 276.429688 261.988281 276.429688 261.871094 Z M 276.429688 261.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.582031 265.203125 C 274.582031 265.085938 274.488281 264.992188 274.371094 264.992188 C 274.253906 264.992188 274.160156 265.085938 274.160156 265.203125 C 274.160156 265.320312 274.253906 265.414062 274.371094 265.414062 C 274.488281 265.414062 274.582031 265.320312 274.582031 265.203125 Z M 274.582031 265.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.542969 267.789062 C 275.542969 267.671875 275.449219 267.578125 275.332031 267.578125 C 275.214844 267.578125 275.121094 267.671875 275.121094 267.789062 C 275.121094 267.90625 275.214844 268 275.332031 268 C 275.449219 268 275.542969 267.90625 275.542969 267.789062 Z M 275.542969 267.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.335938 268.402344 C 271.335938 268.285156 271.242188 268.191406 271.125 268.191406 C 271.007812 268.191406 270.914062 268.285156 270.914062 268.402344 C 270.914062 268.519531 271.007812 268.613281 271.125 268.613281 C 271.242188 268.613281 271.335938 268.519531 271.335938 268.402344 Z M 271.335938 268.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.046875 267.636719 C 273.046875 267.519531 272.953125 267.425781 272.835938 267.425781 C 272.71875 267.425781 272.625 267.519531 272.625 267.636719 C 272.625 267.753906 272.71875 267.847656 272.835938 267.847656 C 272.953125 267.847656 273.046875 267.753906 273.046875 267.636719 Z M 273.046875 267.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.519531 267.347656 C 270.519531 267.230469 270.425781 267.136719 270.308594 267.136719 C 270.191406 267.136719 270.097656 267.230469 270.097656 267.347656 C 270.097656 267.464844 270.191406 267.558594 270.308594 267.558594 C 270.425781 267.558594 270.519531 267.464844 270.519531 267.347656 Z M 270.519531 267.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.6875 267.761719 C 270.6875 267.644531 270.59375 267.550781 270.476562 267.550781 C 270.359375 267.550781 270.265625 267.644531 270.265625 267.761719 C 270.265625 267.878906 270.359375 267.972656 270.476562 267.972656 C 270.59375 267.972656 270.6875 267.878906 270.6875 267.761719 Z M 270.6875 267.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.292969 266.128906 C 271.292969 266.011719 271.199219 265.917969 271.082031 265.917969 C 270.964844 265.917969 270.871094 266.011719 270.871094 266.128906 C 270.871094 266.246094 270.964844 266.339844 271.082031 266.339844 C 271.199219 266.339844 271.292969 266.246094 271.292969 266.128906 Z M 271.292969 266.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.992188 265.019531 C 272.992188 264.902344 272.898438 264.808594 272.78125 264.808594 C 272.664062 264.808594 272.570312 264.902344 272.570312 265.019531 C 272.570312 265.136719 272.664062 265.230469 272.78125 265.230469 C 272.898438 265.230469 272.992188 265.136719 272.992188 265.019531 Z M 272.992188 265.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.742188 265.246094 C 272.742188 265.128906 272.648438 265.035156 272.53125 265.035156 C 272.414062 265.035156 272.320312 265.128906 272.320312 265.246094 C 272.320312 265.363281 272.414062 265.457031 272.53125 265.457031 C 272.648438 265.457031 272.742188 265.363281 272.742188 265.246094 Z M 272.742188 265.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.144531 265.6875 C 276.144531 265.570312 276.050781 265.476562 275.933594 265.476562 C 275.816406 265.476562 275.722656 265.570312 275.722656 265.6875 C 275.722656 265.804688 275.816406 265.898438 275.933594 265.898438 C 276.050781 265.898438 276.144531 265.804688 276.144531 265.6875 Z M 276.144531 265.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.816406 266.550781 C 276.816406 266.433594 276.722656 266.339844 276.605469 266.339844 C 276.488281 266.339844 276.394531 266.433594 276.394531 266.550781 C 276.394531 266.667969 276.488281 266.761719 276.605469 266.761719 C 276.722656 266.761719 276.816406 266.667969 276.816406 266.550781 Z M 276.816406 266.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.324219 263.421875 C 276.324219 263.304688 276.230469 263.210938 276.113281 263.210938 C 275.996094 263.210938 275.902344 263.304688 275.902344 263.421875 C 275.902344 263.539062 275.996094 263.632812 276.113281 263.632812 C 276.230469 263.632812 276.324219 263.539062 276.324219 263.421875 Z M 276.324219 263.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.078125 263.128906 C 277.078125 263.011719 276.984375 262.917969 276.867188 262.917969 C 276.75 262.917969 276.65625 263.011719 276.65625 263.128906 C 276.65625 263.246094 276.75 263.339844 276.867188 263.339844 C 276.984375 263.339844 277.078125 263.246094 277.078125 263.128906 Z M 277.078125 263.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.253906 264.84375 C 275.253906 264.726562 275.160156 264.632812 275.042969 264.632812 C 274.925781 264.632812 274.832031 264.726562 274.832031 264.84375 C 274.832031 264.960938 274.925781 265.054688 275.042969 265.054688 C 275.160156 265.054688 275.253906 264.960938 275.253906 264.84375 Z M 275.253906 264.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.09375 267.21875 C 276.09375 267.101562 276 267.007812 275.882812 267.007812 C 275.765625 267.007812 275.671875 267.101562 275.671875 267.21875 C 275.671875 267.335938 275.765625 267.429688 275.882812 267.429688 C 276 267.429688 276.09375 267.335938 276.09375 267.21875 Z M 276.09375 267.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.003906 266.503906 C 275.003906 266.386719 274.910156 266.292969 274.792969 266.292969 C 274.675781 266.292969 274.582031 266.386719 274.582031 266.503906 C 274.582031 266.621094 274.675781 266.714844 274.792969 266.714844 C 274.910156 266.714844 275.003906 266.621094 275.003906 266.503906 Z M 275.003906 266.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.734375 270.820312 C 276.734375 270.703125 276.640625 270.609375 276.523438 270.609375 C 276.40625 270.609375 276.3125 270.703125 276.3125 270.820312 C 276.3125 270.9375 276.40625 271.03125 276.523438 271.03125 C 276.640625 271.03125 276.734375 270.9375 276.734375 270.820312 Z M 276.734375 270.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.058594 270.917969 C 274.058594 270.800781 273.964844 270.707031 273.847656 270.707031 C 273.730469 270.707031 273.636719 270.800781 273.636719 270.917969 C 273.636719 271.035156 273.730469 271.128906 273.847656 271.128906 C 273.964844 271.128906 274.058594 271.035156 274.058594 270.917969 Z M 274.058594 270.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.542969 268.410156 C 276.542969 268.292969 276.449219 268.199219 276.332031 268.199219 C 276.214844 268.199219 276.121094 268.292969 276.121094 268.410156 C 276.121094 268.527344 276.214844 268.621094 276.332031 268.621094 C 276.449219 268.621094 276.542969 268.527344 276.542969 268.410156 Z M 276.542969 268.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.023438 267.003906 C 276.023438 266.886719 275.929688 266.792969 275.8125 266.792969 C 275.695312 266.792969 275.601562 266.886719 275.601562 267.003906 C 275.601562 267.121094 275.695312 267.214844 275.8125 267.214844 C 275.929688 267.214844 276.023438 267.121094 276.023438 267.003906 Z M 276.023438 267.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.652344 262.449219 C 279.652344 262.332031 279.558594 262.238281 279.441406 262.238281 C 279.324219 262.238281 279.230469 262.332031 279.230469 262.449219 C 279.230469 262.566406 279.324219 262.660156 279.441406 262.660156 C 279.558594 262.660156 279.652344 262.566406 279.652344 262.449219 Z M 279.652344 262.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.023438 263.160156 C 277.023438 263.042969 276.929688 262.949219 276.8125 262.949219 C 276.695312 262.949219 276.601562 263.042969 276.601562 263.160156 C 276.601562 263.277344 276.695312 263.371094 276.8125 263.371094 C 276.929688 263.371094 277.023438 263.277344 277.023438 263.160156 Z M 277.023438 263.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.042969 260.996094 C 279.042969 260.878906 278.949219 260.785156 278.832031 260.785156 C 278.714844 260.785156 278.621094 260.878906 278.621094 260.996094 C 278.621094 261.113281 278.714844 261.207031 278.832031 261.207031 C 278.949219 261.207031 279.042969 261.113281 279.042969 260.996094 Z M 279.042969 260.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.910156 257.28125 C 279.910156 257.164062 279.816406 257.070312 279.699219 257.070312 C 279.582031 257.070312 279.488281 257.164062 279.488281 257.28125 C 279.488281 257.398438 279.582031 257.492188 279.699219 257.492188 C 279.816406 257.492188 279.910156 257.398438 279.910156 257.28125 Z M 279.910156 257.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.445312 255.640625 C 280.445312 255.523438 280.351562 255.429688 280.234375 255.429688 C 280.117188 255.429688 280.023438 255.523438 280.023438 255.640625 C 280.023438 255.757812 280.117188 255.851562 280.234375 255.851562 C 280.351562 255.851562 280.445312 255.757812 280.445312 255.640625 Z M 280.445312 255.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.492188 259.894531 C 281.492188 259.777344 281.398438 259.683594 281.28125 259.683594 C 281.164062 259.683594 281.070312 259.777344 281.070312 259.894531 C 281.070312 260.011719 281.164062 260.105469 281.28125 260.105469 C 281.398438 260.105469 281.492188 260.011719 281.492188 259.894531 Z M 281.492188 259.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.261719 258.621094 C 285.261719 258.503906 285.167969 258.410156 285.050781 258.410156 C 284.933594 258.410156 284.839844 258.503906 284.839844 258.621094 C 284.839844 258.738281 284.933594 258.832031 285.050781 258.832031 C 285.167969 258.832031 285.261719 258.738281 285.261719 258.621094 Z M 285.261719 258.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.199219 258.324219 C 286.199219 258.207031 286.105469 258.113281 285.988281 258.113281 C 285.871094 258.113281 285.777344 258.207031 285.777344 258.324219 C 285.777344 258.441406 285.871094 258.535156 285.988281 258.535156 C 286.105469 258.535156 286.199219 258.441406 286.199219 258.324219 Z M 286.199219 258.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.269531 260.835938 C 288.269531 260.71875 288.175781 260.625 288.058594 260.625 C 287.941406 260.625 287.847656 260.71875 287.847656 260.835938 C 287.847656 260.953125 287.941406 261.046875 288.058594 261.046875 C 288.175781 261.046875 288.269531 260.953125 288.269531 260.835938 Z M 288.269531 260.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.644531 262.28125 C 290.644531 262.164062 290.550781 262.070312 290.433594 262.070312 C 290.316406 262.070312 290.222656 262.164062 290.222656 262.28125 C 290.222656 262.398438 290.316406 262.492188 290.433594 262.492188 C 290.550781 262.492188 290.644531 262.398438 290.644531 262.28125 Z M 290.644531 262.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.339844 260.3125 C 290.339844 260.195312 290.246094 260.101562 290.128906 260.101562 C 290.011719 260.101562 289.917969 260.195312 289.917969 260.3125 C 289.917969 260.429688 290.011719 260.523438 290.128906 260.523438 C 290.246094 260.523438 290.339844 260.429688 290.339844 260.3125 Z M 290.339844 260.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.550781 260.265625 C 290.550781 260.148438 290.457031 260.054688 290.339844 260.054688 C 290.222656 260.054688 290.128906 260.148438 290.128906 260.265625 C 290.128906 260.382812 290.222656 260.476562 290.339844 260.476562 C 290.457031 260.476562 290.550781 260.382812 290.550781 260.265625 Z M 290.550781 260.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.871094 259.4375 C 290.871094 259.320312 290.777344 259.226562 290.660156 259.226562 C 290.542969 259.226562 290.449219 259.320312 290.449219 259.4375 C 290.449219 259.554688 290.542969 259.648438 290.660156 259.648438 C 290.777344 259.648438 290.871094 259.554688 290.871094 259.4375 Z M 290.871094 259.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.433594 258.402344 C 292.433594 258.285156 292.339844 258.191406 292.222656 258.191406 C 292.105469 258.191406 292.011719 258.285156 292.011719 258.402344 C 292.011719 258.519531 292.105469 258.613281 292.222656 258.613281 C 292.339844 258.613281 292.433594 258.519531 292.433594 258.402344 Z M 292.433594 258.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.648438 257.414062 C 292.648438 257.296875 292.554688 257.203125 292.4375 257.203125 C 292.320312 257.203125 292.226562 257.296875 292.226562 257.414062 C 292.226562 257.53125 292.320312 257.625 292.4375 257.625 C 292.554688 257.625 292.648438 257.53125 292.648438 257.414062 Z M 292.648438 257.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.832031 256.46875 C 295.832031 256.351562 295.738281 256.257812 295.621094 256.257812 C 295.503906 256.257812 295.410156 256.351562 295.410156 256.46875 C 295.410156 256.585938 295.503906 256.679688 295.621094 256.679688 C 295.738281 256.679688 295.832031 256.585938 295.832031 256.46875 Z M 295.832031 256.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.128906 259.351562 C 293.128906 259.234375 293.035156 259.140625 292.917969 259.140625 C 292.800781 259.140625 292.707031 259.234375 292.707031 259.351562 C 292.707031 259.46875 292.800781 259.5625 292.917969 259.5625 C 293.035156 259.5625 293.128906 259.46875 293.128906 259.351562 Z M 293.128906 259.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.742188 260.214844 C 292.742188 260.097656 292.648438 260.003906 292.53125 260.003906 C 292.414062 260.003906 292.320312 260.097656 292.320312 260.214844 C 292.320312 260.332031 292.414062 260.425781 292.53125 260.425781 C 292.648438 260.425781 292.742188 260.332031 292.742188 260.214844 Z M 292.742188 260.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.601562 261.386719 C 292.601562 261.269531 292.507812 261.175781 292.390625 261.175781 C 292.273438 261.175781 292.179688 261.269531 292.179688 261.386719 C 292.179688 261.503906 292.273438 261.597656 292.390625 261.597656 C 292.507812 261.597656 292.601562 261.503906 292.601562 261.386719 Z M 292.601562 261.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.113281 262.746094 C 291.113281 262.628906 291.019531 262.535156 290.902344 262.535156 C 290.785156 262.535156 290.691406 262.628906 290.691406 262.746094 C 290.691406 262.863281 290.785156 262.957031 290.902344 262.957031 C 291.019531 262.957031 291.113281 262.863281 291.113281 262.746094 Z M 291.113281 262.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.328125 262.46875 C 293.328125 262.351562 293.234375 262.257812 293.117188 262.257812 C 293 262.257812 292.90625 262.351562 292.90625 262.46875 C 292.90625 262.585938 293 262.679688 293.117188 262.679688 C 293.234375 262.679688 293.328125 262.585938 293.328125 262.46875 Z M 293.328125 262.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.855469 260.351562 C 291.855469 260.234375 291.761719 260.140625 291.644531 260.140625 C 291.527344 260.140625 291.433594 260.234375 291.433594 260.351562 C 291.433594 260.46875 291.527344 260.5625 291.644531 260.5625 C 291.761719 260.5625 291.855469 260.46875 291.855469 260.351562 Z M 291.855469 260.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.917969 262.960938 C 290.917969 262.84375 290.824219 262.75 290.707031 262.75 C 290.589844 262.75 290.496094 262.84375 290.496094 262.960938 C 290.496094 263.078125 290.589844 263.171875 290.707031 263.171875 C 290.824219 263.171875 290.917969 263.078125 290.917969 262.960938 Z M 290.917969 262.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.675781 262.148438 C 289.675781 262.03125 289.582031 261.9375 289.464844 261.9375 C 289.347656 261.9375 289.253906 262.03125 289.253906 262.148438 C 289.253906 262.265625 289.347656 262.359375 289.464844 262.359375 C 289.582031 262.359375 289.675781 262.265625 289.675781 262.148438 Z M 289.675781 262.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.667969 265.132812 C 287.667969 265.015625 287.574219 264.921875 287.457031 264.921875 C 287.339844 264.921875 287.246094 265.015625 287.246094 265.132812 C 287.246094 265.25 287.339844 265.34375 287.457031 265.34375 C 287.574219 265.34375 287.667969 265.25 287.667969 265.132812 Z M 287.667969 265.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.339844 263.988281 C 288.339844 263.871094 288.246094 263.777344 288.128906 263.777344 C 288.011719 263.777344 287.917969 263.871094 287.917969 263.988281 C 287.917969 264.105469 288.011719 264.199219 288.128906 264.199219 C 288.246094 264.199219 288.339844 264.105469 288.339844 263.988281 Z M 288.339844 263.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.730469 263.269531 C 289.730469 263.152344 289.636719 263.058594 289.519531 263.058594 C 289.402344 263.058594 289.308594 263.152344 289.308594 263.269531 C 289.308594 263.386719 289.402344 263.480469 289.519531 263.480469 C 289.636719 263.480469 289.730469 263.386719 289.730469 263.269531 Z M 289.730469 263.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.78125 265.667969 C 291.78125 265.550781 291.6875 265.457031 291.570312 265.457031 C 291.453125 265.457031 291.359375 265.550781 291.359375 265.667969 C 291.359375 265.785156 291.453125 265.878906 291.570312 265.878906 C 291.6875 265.878906 291.78125 265.785156 291.78125 265.667969 Z M 291.78125 265.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.992188 263.457031 C 292.992188 263.339844 292.898438 263.246094 292.78125 263.246094 C 292.664062 263.246094 292.570312 263.339844 292.570312 263.457031 C 292.570312 263.574219 292.664062 263.667969 292.78125 263.667969 C 292.898438 263.667969 292.992188 263.574219 292.992188 263.457031 Z M 292.992188 263.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.230469 265.378906 C 295.230469 265.261719 295.136719 265.167969 295.019531 265.167969 C 294.902344 265.167969 294.808594 265.261719 294.808594 265.378906 C 294.808594 265.496094 294.902344 265.589844 295.019531 265.589844 C 295.136719 265.589844 295.230469 265.496094 295.230469 265.378906 Z M 295.230469 265.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.957031 266.40625 C 294.957031 266.289062 294.863281 266.195312 294.746094 266.195312 C 294.628906 266.195312 294.535156 266.289062 294.535156 266.40625 C 294.535156 266.523438 294.628906 266.617188 294.746094 266.617188 C 294.863281 266.617188 294.957031 266.523438 294.957031 266.40625 Z M 294.957031 266.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.109375 267.695312 C 295.109375 267.578125 295.015625 267.484375 294.898438 267.484375 C 294.78125 267.484375 294.6875 267.578125 294.6875 267.695312 C 294.6875 267.8125 294.78125 267.90625 294.898438 267.90625 C 295.015625 267.90625 295.109375 267.8125 295.109375 267.695312 Z M 295.109375 267.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.09375 266.519531 C 293.09375 266.402344 293 266.308594 292.882812 266.308594 C 292.765625 266.308594 292.671875 266.402344 292.671875 266.519531 C 292.671875 266.636719 292.765625 266.730469 292.882812 266.730469 C 293 266.730469 293.09375 266.636719 293.09375 266.519531 Z M 293.09375 266.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.320312 265.941406 C 293.320312 265.824219 293.226562 265.730469 293.109375 265.730469 C 292.992188 265.730469 292.898438 265.824219 292.898438 265.941406 C 292.898438 266.058594 292.992188 266.152344 293.109375 266.152344 C 293.226562 266.152344 293.320312 266.058594 293.320312 265.941406 Z M 293.320312 265.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.007812 265.679688 C 293.007812 265.5625 292.914062 265.46875 292.796875 265.46875 C 292.679688 265.46875 292.585938 265.5625 292.585938 265.679688 C 292.585938 265.796875 292.679688 265.890625 292.796875 265.890625 C 292.914062 265.890625 293.007812 265.796875 293.007812 265.679688 Z M 293.007812 265.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.625 262.289062 C 290.625 262.171875 290.53125 262.078125 290.414062 262.078125 C 290.296875 262.078125 290.203125 262.171875 290.203125 262.289062 C 290.203125 262.40625 290.296875 262.5 290.414062 262.5 C 290.53125 262.5 290.625 262.40625 290.625 262.289062 Z M 290.625 262.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.695312 262.0625 C 287.695312 261.945312 287.601562 261.851562 287.484375 261.851562 C 287.367188 261.851562 287.273438 261.945312 287.273438 262.0625 C 287.273438 262.179688 287.367188 262.273438 287.484375 262.273438 C 287.601562 262.273438 287.695312 262.179688 287.695312 262.0625 Z M 287.695312 262.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.472656 260.996094 C 291.472656 260.878906 291.378906 260.785156 291.261719 260.785156 C 291.144531 260.785156 291.050781 260.878906 291.050781 260.996094 C 291.050781 261.113281 291.144531 261.207031 291.261719 261.207031 C 291.378906 261.207031 291.472656 261.113281 291.472656 260.996094 Z M 291.472656 260.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.515625 260.121094 C 290.515625 260.003906 290.421875 259.910156 290.304688 259.910156 C 290.1875 259.910156 290.09375 260.003906 290.09375 260.121094 C 290.09375 260.238281 290.1875 260.332031 290.304688 260.332031 C 290.421875 260.332031 290.515625 260.238281 290.515625 260.121094 Z M 290.515625 260.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.429688 260.453125 C 295.429688 260.335938 295.335938 260.242188 295.21875 260.242188 C 295.101562 260.242188 295.007812 260.335938 295.007812 260.453125 C 295.007812 260.570312 295.101562 260.664062 295.21875 260.664062 C 295.335938 260.664062 295.429688 260.570312 295.429688 260.453125 Z M 295.429688 260.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.9375 261.683594 C 294.9375 261.566406 294.84375 261.472656 294.726562 261.472656 C 294.609375 261.472656 294.515625 261.566406 294.515625 261.683594 C 294.515625 261.800781 294.609375 261.894531 294.726562 261.894531 C 294.84375 261.894531 294.9375 261.800781 294.9375 261.683594 Z M 294.9375 261.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.855469 261.113281 C 296.855469 260.996094 296.761719 260.902344 296.644531 260.902344 C 296.527344 260.902344 296.433594 260.996094 296.433594 261.113281 C 296.433594 261.230469 296.527344 261.324219 296.644531 261.324219 C 296.761719 261.324219 296.855469 261.230469 296.855469 261.113281 Z M 296.855469 261.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.046875 262.652344 C 297.046875 262.535156 296.953125 262.441406 296.835938 262.441406 C 296.71875 262.441406 296.625 262.535156 296.625 262.652344 C 296.625 262.769531 296.71875 262.863281 296.835938 262.863281 C 296.953125 262.863281 297.046875 262.769531 297.046875 262.652344 Z M 297.046875 262.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.554688 262.019531 C 296.554688 261.902344 296.460938 261.808594 296.34375 261.808594 C 296.226562 261.808594 296.132812 261.902344 296.132812 262.019531 C 296.132812 262.136719 296.226562 262.230469 296.34375 262.230469 C 296.460938 262.230469 296.554688 262.136719 296.554688 262.019531 Z M 296.554688 262.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.882812 265.542969 C 298.882812 265.425781 298.789062 265.332031 298.671875 265.332031 C 298.554688 265.332031 298.460938 265.425781 298.460938 265.542969 C 298.460938 265.660156 298.554688 265.753906 298.671875 265.753906 C 298.789062 265.753906 298.882812 265.660156 298.882812 265.542969 Z M 298.882812 265.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.21875 267.125 C 296.21875 267.007812 296.125 266.914062 296.007812 266.914062 C 295.890625 266.914062 295.796875 267.007812 295.796875 267.125 C 295.796875 267.242188 295.890625 267.335938 296.007812 267.335938 C 296.125 267.335938 296.21875 267.242188 296.21875 267.125 Z M 296.21875 267.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.6875 263.148438 C 294.6875 263.03125 294.59375 262.9375 294.476562 262.9375 C 294.359375 262.9375 294.265625 263.03125 294.265625 263.148438 C 294.265625 263.265625 294.359375 263.359375 294.476562 263.359375 C 294.59375 263.359375 294.6875 263.265625 294.6875 263.148438 Z M 294.6875 263.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.003906 261.960938 C 293.003906 261.84375 292.910156 261.75 292.792969 261.75 C 292.675781 261.75 292.582031 261.84375 292.582031 261.960938 C 292.582031 262.078125 292.675781 262.171875 292.792969 262.171875 C 292.910156 262.171875 293.003906 262.078125 293.003906 261.960938 Z M 293.003906 261.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.351562 263.847656 C 295.351562 263.730469 295.257812 263.636719 295.140625 263.636719 C 295.023438 263.636719 294.929688 263.730469 294.929688 263.847656 C 294.929688 263.964844 295.023438 264.058594 295.140625 264.058594 C 295.257812 264.058594 295.351562 263.964844 295.351562 263.847656 Z M 295.351562 263.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297 261.335938 C 297 261.21875 296.90625 261.125 296.789062 261.125 C 296.671875 261.125 296.578125 261.21875 296.578125 261.335938 C 296.578125 261.453125 296.671875 261.546875 296.789062 261.546875 C 296.90625 261.546875 297 261.453125 297 261.335938 Z M 297 261.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.039062 260.910156 C 297.039062 260.792969 296.945312 260.699219 296.828125 260.699219 C 296.710938 260.699219 296.617188 260.792969 296.617188 260.910156 C 296.617188 261.027344 296.710938 261.121094 296.828125 261.121094 C 296.945312 261.121094 297.039062 261.027344 297.039062 260.910156 Z M 297.039062 260.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.316406 262.871094 C 299.316406 262.753906 299.222656 262.660156 299.105469 262.660156 C 298.988281 262.660156 298.894531 262.753906 298.894531 262.871094 C 298.894531 262.988281 298.988281 263.082031 299.105469 263.082031 C 299.222656 263.082031 299.316406 262.988281 299.316406 262.871094 Z M 299.316406 262.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.445312 259.726562 C 300.445312 259.609375 300.351562 259.515625 300.234375 259.515625 C 300.117188 259.515625 300.023438 259.609375 300.023438 259.726562 C 300.023438 259.84375 300.117188 259.9375 300.234375 259.9375 C 300.351562 259.9375 300.445312 259.84375 300.445312 259.726562 Z M 300.445312 259.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.996094 260.4375 C 300.996094 260.320312 300.902344 260.226562 300.785156 260.226562 C 300.667969 260.226562 300.574219 260.320312 300.574219 260.4375 C 300.574219 260.554688 300.667969 260.648438 300.785156 260.648438 C 300.902344 260.648438 300.996094 260.554688 300.996094 260.4375 Z M 300.996094 260.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.835938 260.292969 C 299.835938 260.175781 299.742188 260.082031 299.625 260.082031 C 299.507812 260.082031 299.414062 260.175781 299.414062 260.292969 C 299.414062 260.410156 299.507812 260.503906 299.625 260.503906 C 299.742188 260.503906 299.835938 260.410156 299.835938 260.292969 Z M 299.835938 260.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.476562 256.554688 C 299.476562 256.4375 299.382812 256.34375 299.265625 256.34375 C 299.148438 256.34375 299.054688 256.4375 299.054688 256.554688 C 299.054688 256.671875 299.148438 256.765625 299.265625 256.765625 C 299.382812 256.765625 299.476562 256.671875 299.476562 256.554688 Z M 299.476562 256.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.777344 250.449219 C 296.777344 250.332031 296.683594 250.238281 296.566406 250.238281 C 296.449219 250.238281 296.355469 250.332031 296.355469 250.449219 C 296.355469 250.566406 296.449219 250.660156 296.566406 250.660156 C 296.683594 250.660156 296.777344 250.566406 296.777344 250.449219 Z M 296.777344 250.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.253906 249.996094 C 293.253906 249.878906 293.160156 249.785156 293.042969 249.785156 C 292.925781 249.785156 292.832031 249.878906 292.832031 249.996094 C 292.832031 250.113281 292.925781 250.207031 293.042969 250.207031 C 293.160156 250.207031 293.253906 250.113281 293.253906 249.996094 Z M 293.253906 249.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.082031 247.640625 C 297.082031 247.523438 296.988281 247.429688 296.871094 247.429688 C 296.753906 247.429688 296.660156 247.523438 296.660156 247.640625 C 296.660156 247.757812 296.753906 247.851562 296.871094 247.851562 C 296.988281 247.851562 297.082031 247.757812 297.082031 247.640625 Z M 297.082031 247.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.949219 246.457031 C 293.949219 246.339844 293.855469 246.246094 293.738281 246.246094 C 293.621094 246.246094 293.527344 246.339844 293.527344 246.457031 C 293.527344 246.574219 293.621094 246.667969 293.738281 246.667969 C 293.855469 246.667969 293.949219 246.574219 293.949219 246.457031 Z M 293.949219 246.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.757812 247.21875 C 292.757812 247.101562 292.664062 247.007812 292.546875 247.007812 C 292.429688 247.007812 292.335938 247.101562 292.335938 247.21875 C 292.335938 247.335938 292.429688 247.429688 292.546875 247.429688 C 292.664062 247.429688 292.757812 247.335938 292.757812 247.21875 Z M 292.757812 247.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.449219 247.34375 C 295.449219 247.226562 295.355469 247.132812 295.238281 247.132812 C 295.121094 247.132812 295.027344 247.226562 295.027344 247.34375 C 295.027344 247.460938 295.121094 247.554688 295.238281 247.554688 C 295.355469 247.554688 295.449219 247.460938 295.449219 247.34375 Z M 295.449219 247.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.023438 248.746094 C 297.023438 248.628906 296.929688 248.535156 296.8125 248.535156 C 296.695312 248.535156 296.601562 248.628906 296.601562 248.746094 C 296.601562 248.863281 296.695312 248.957031 296.8125 248.957031 C 296.929688 248.957031 297.023438 248.863281 297.023438 248.746094 Z M 297.023438 248.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.121094 249.4375 C 299.121094 249.320312 299.027344 249.226562 298.910156 249.226562 C 298.792969 249.226562 298.699219 249.320312 298.699219 249.4375 C 298.699219 249.554688 298.792969 249.648438 298.910156 249.648438 C 299.027344 249.648438 299.121094 249.554688 299.121094 249.4375 Z M 299.121094 249.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.136719 255.625 C 298.136719 255.507812 298.042969 255.414062 297.925781 255.414062 C 297.808594 255.414062 297.714844 255.507812 297.714844 255.625 C 297.714844 255.742188 297.808594 255.835938 297.925781 255.835938 C 298.042969 255.835938 298.136719 255.742188 298.136719 255.625 Z M 298.136719 255.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.136719 256.515625 C 299.136719 256.398438 299.042969 256.304688 298.925781 256.304688 C 298.808594 256.304688 298.714844 256.398438 298.714844 256.515625 C 298.714844 256.632812 298.808594 256.726562 298.925781 256.726562 C 299.042969 256.726562 299.136719 256.632812 299.136719 256.515625 Z M 299.136719 256.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.285156 258.175781 C 297.285156 258.058594 297.191406 257.964844 297.074219 257.964844 C 296.957031 257.964844 296.863281 258.058594 296.863281 258.175781 C 296.863281 258.292969 296.957031 258.386719 297.074219 258.386719 C 297.191406 258.386719 297.285156 258.292969 297.285156 258.175781 Z M 297.285156 258.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.3125 258.976562 C 296.3125 258.859375 296.21875 258.765625 296.101562 258.765625 C 295.984375 258.765625 295.890625 258.859375 295.890625 258.976562 C 295.890625 259.09375 295.984375 259.1875 296.101562 259.1875 C 296.21875 259.1875 296.3125 259.09375 296.3125 258.976562 Z M 296.3125 258.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.574219 258.292969 C 297.574219 258.175781 297.480469 258.082031 297.363281 258.082031 C 297.246094 258.082031 297.152344 258.175781 297.152344 258.292969 C 297.152344 258.410156 297.246094 258.503906 297.363281 258.503906 C 297.480469 258.503906 297.574219 258.410156 297.574219 258.292969 Z M 297.574219 258.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.996094 258.757812 C 300.996094 258.640625 300.902344 258.546875 300.785156 258.546875 C 300.667969 258.546875 300.574219 258.640625 300.574219 258.757812 C 300.574219 258.875 300.667969 258.96875 300.785156 258.96875 C 300.902344 258.96875 300.996094 258.875 300.996094 258.757812 Z M 300.996094 258.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.632812 261.132812 C 300.632812 261.015625 300.539062 260.921875 300.421875 260.921875 C 300.304688 260.921875 300.210938 261.015625 300.210938 261.132812 C 300.210938 261.25 300.304688 261.34375 300.421875 261.34375 C 300.539062 261.34375 300.632812 261.25 300.632812 261.132812 Z M 300.632812 261.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.195312 258.574219 C 304.195312 258.457031 304.101562 258.363281 303.984375 258.363281 C 303.867188 258.363281 303.773438 258.457031 303.773438 258.574219 C 303.773438 258.691406 303.867188 258.785156 303.984375 258.785156 C 304.101562 258.785156 304.195312 258.691406 304.195312 258.574219 Z M 304.195312 258.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.429688 258.21875 C 304.429688 258.101562 304.335938 258.007812 304.21875 258.007812 C 304.101562 258.007812 304.007812 258.101562 304.007812 258.21875 C 304.007812 258.335938 304.101562 258.429688 304.21875 258.429688 C 304.335938 258.429688 304.429688 258.335938 304.429688 258.21875 Z M 304.429688 258.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.199219 257.3125 C 303.199219 257.195312 303.105469 257.101562 302.988281 257.101562 C 302.871094 257.101562 302.777344 257.195312 302.777344 257.3125 C 302.777344 257.429688 302.871094 257.523438 302.988281 257.523438 C 303.105469 257.523438 303.199219 257.429688 303.199219 257.3125 Z M 303.199219 257.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.863281 251.316406 C 302.863281 251.199219 302.769531 251.105469 302.652344 251.105469 C 302.535156 251.105469 302.441406 251.199219 302.441406 251.316406 C 302.441406 251.433594 302.535156 251.527344 302.652344 251.527344 C 302.769531 251.527344 302.863281 251.433594 302.863281 251.316406 Z M 302.863281 251.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.367188 251.476562 C 304.367188 251.359375 304.273438 251.265625 304.15625 251.265625 C 304.039062 251.265625 303.945312 251.359375 303.945312 251.476562 C 303.945312 251.59375 304.039062 251.6875 304.15625 251.6875 C 304.273438 251.6875 304.367188 251.59375 304.367188 251.476562 Z M 304.367188 251.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.933594 251.097656 C 303.933594 250.980469 303.839844 250.886719 303.722656 250.886719 C 303.605469 250.886719 303.511719 250.980469 303.511719 251.097656 C 303.511719 251.214844 303.605469 251.308594 303.722656 251.308594 C 303.839844 251.308594 303.933594 251.214844 303.933594 251.097656 Z M 303.933594 251.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.0625 251.433594 C 301.0625 251.316406 300.96875 251.222656 300.851562 251.222656 C 300.734375 251.222656 300.640625 251.316406 300.640625 251.433594 C 300.640625 251.550781 300.734375 251.644531 300.851562 251.644531 C 300.96875 251.644531 301.0625 251.550781 301.0625 251.433594 Z M 301.0625 251.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.625 247.449219 C 300.625 247.332031 300.53125 247.238281 300.414062 247.238281 C 300.296875 247.238281 300.203125 247.332031 300.203125 247.449219 C 300.203125 247.566406 300.296875 247.660156 300.414062 247.660156 C 300.53125 247.660156 300.625 247.566406 300.625 247.449219 Z M 300.625 247.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.871094 244.726562 C 300.871094 244.609375 300.777344 244.515625 300.660156 244.515625 C 300.542969 244.515625 300.449219 244.609375 300.449219 244.726562 C 300.449219 244.84375 300.542969 244.9375 300.660156 244.9375 C 300.777344 244.9375 300.871094 244.84375 300.871094 244.726562 Z M 300.871094 244.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.648438 245.347656 C 303.648438 245.230469 303.554688 245.136719 303.4375 245.136719 C 303.320312 245.136719 303.226562 245.230469 303.226562 245.347656 C 303.226562 245.464844 303.320312 245.558594 303.4375 245.558594 C 303.554688 245.558594 303.648438 245.464844 303.648438 245.347656 Z M 303.648438 245.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.253906 244.023438 C 301.253906 243.90625 301.160156 243.8125 301.042969 243.8125 C 300.925781 243.8125 300.832031 243.90625 300.832031 244.023438 C 300.832031 244.140625 300.925781 244.234375 301.042969 244.234375 C 301.160156 244.234375 301.253906 244.140625 301.253906 244.023438 Z M 301.253906 244.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.214844 240.0625 C 302.214844 239.945312 302.121094 239.851562 302.003906 239.851562 C 301.886719 239.851562 301.792969 239.945312 301.792969 240.0625 C 301.792969 240.179688 301.886719 240.273438 302.003906 240.273438 C 302.121094 240.273438 302.214844 240.179688 302.214844 240.0625 Z M 302.214844 240.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.371094 239.414062 C 299.371094 239.296875 299.277344 239.203125 299.160156 239.203125 C 299.042969 239.203125 298.949219 239.296875 298.949219 239.414062 C 298.949219 239.53125 299.042969 239.625 299.160156 239.625 C 299.277344 239.625 299.371094 239.53125 299.371094 239.414062 Z M 299.371094 239.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.300781 241.0625 C 300.300781 240.945312 300.207031 240.851562 300.089844 240.851562 C 299.972656 240.851562 299.878906 240.945312 299.878906 241.0625 C 299.878906 241.179688 299.972656 241.273438 300.089844 241.273438 C 300.207031 241.273438 300.300781 241.179688 300.300781 241.0625 Z M 300.300781 241.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.332031 240.414062 C 301.332031 240.296875 301.238281 240.203125 301.121094 240.203125 C 301.003906 240.203125 300.910156 240.296875 300.910156 240.414062 C 300.910156 240.53125 301.003906 240.625 301.121094 240.625 C 301.238281 240.625 301.332031 240.53125 301.332031 240.414062 Z M 301.332031 240.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.503906 245.097656 C 301.503906 244.980469 301.410156 244.886719 301.292969 244.886719 C 301.175781 244.886719 301.082031 244.980469 301.082031 245.097656 C 301.082031 245.214844 301.175781 245.308594 301.292969 245.308594 C 301.410156 245.308594 301.503906 245.214844 301.503906 245.097656 Z M 301.503906 245.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.25 245.035156 C 302.25 244.917969 302.15625 244.824219 302.039062 244.824219 C 301.921875 244.824219 301.828125 244.917969 301.828125 245.035156 C 301.828125 245.152344 301.921875 245.246094 302.039062 245.246094 C 302.15625 245.246094 302.25 245.152344 302.25 245.035156 Z M 302.25 245.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.542969 247.703125 C 301.542969 247.585938 301.449219 247.492188 301.332031 247.492188 C 301.214844 247.492188 301.121094 247.585938 301.121094 247.703125 C 301.121094 247.820312 301.214844 247.914062 301.332031 247.914062 C 301.449219 247.914062 301.542969 247.820312 301.542969 247.703125 Z M 301.542969 247.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.429688 251.355469 C 302.429688 251.238281 302.335938 251.144531 302.21875 251.144531 C 302.101562 251.144531 302.007812 251.238281 302.007812 251.355469 C 302.007812 251.472656 302.101562 251.566406 302.21875 251.566406 C 302.335938 251.566406 302.429688 251.472656 302.429688 251.355469 Z M 302.429688 251.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.515625 252.695312 C 302.515625 252.578125 302.421875 252.484375 302.304688 252.484375 C 302.1875 252.484375 302.09375 252.578125 302.09375 252.695312 C 302.09375 252.8125 302.1875 252.90625 302.304688 252.90625 C 302.421875 252.90625 302.515625 252.8125 302.515625 252.695312 Z M 302.515625 252.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.894531 254.519531 C 305.894531 254.402344 305.800781 254.308594 305.683594 254.308594 C 305.566406 254.308594 305.472656 254.402344 305.472656 254.519531 C 305.472656 254.636719 305.566406 254.730469 305.683594 254.730469 C 305.800781 254.730469 305.894531 254.636719 305.894531 254.519531 Z M 305.894531 254.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.871094 255.964844 C 305.871094 255.847656 305.777344 255.753906 305.660156 255.753906 C 305.542969 255.753906 305.449219 255.847656 305.449219 255.964844 C 305.449219 256.082031 305.542969 256.175781 305.660156 256.175781 C 305.777344 256.175781 305.871094 256.082031 305.871094 255.964844 Z M 305.871094 255.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.4375 255.191406 C 305.4375 255.074219 305.34375 254.980469 305.226562 254.980469 C 305.109375 254.980469 305.015625 255.074219 305.015625 255.191406 C 305.015625 255.308594 305.109375 255.402344 305.226562 255.402344 C 305.34375 255.402344 305.4375 255.308594 305.4375 255.191406 Z M 305.4375 255.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 305.046875 253.980469 C 305.046875 253.863281 304.953125 253.769531 304.835938 253.769531 C 304.71875 253.769531 304.625 253.863281 304.625 253.980469 C 304.625 254.097656 304.71875 254.191406 304.835938 254.191406 C 304.953125 254.191406 305.046875 254.097656 305.046875 253.980469 Z M 305.046875 253.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.183594 255.089844 C 302.183594 254.972656 302.089844 254.878906 301.972656 254.878906 C 301.855469 254.878906 301.761719 254.972656 301.761719 255.089844 C 301.761719 255.207031 301.855469 255.300781 301.972656 255.300781 C 302.089844 255.300781 302.183594 255.207031 302.183594 255.089844 Z M 302.183594 255.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.632812 252.894531 C 299.632812 252.777344 299.539062 252.683594 299.421875 252.683594 C 299.304688 252.683594 299.210938 252.777344 299.210938 252.894531 C 299.210938 253.011719 299.304688 253.105469 299.421875 253.105469 C 299.539062 253.105469 299.632812 253.011719 299.632812 252.894531 Z M 299.632812 252.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.183594 253.183594 C 298.183594 253.066406 298.089844 252.972656 297.972656 252.972656 C 297.855469 252.972656 297.761719 253.066406 297.761719 253.183594 C 297.761719 253.300781 297.855469 253.394531 297.972656 253.394531 C 298.089844 253.394531 298.183594 253.300781 298.183594 253.183594 Z M 298.183594 253.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.257812 252.828125 C 297.257812 252.710938 297.164062 252.617188 297.046875 252.617188 C 296.929688 252.617188 296.835938 252.710938 296.835938 252.828125 C 296.835938 252.945312 296.929688 253.039062 297.046875 253.039062 C 297.164062 253.039062 297.257812 252.945312 297.257812 252.828125 Z M 297.257812 252.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.523438 251.394531 C 297.523438 251.277344 297.429688 251.183594 297.3125 251.183594 C 297.195312 251.183594 297.101562 251.277344 297.101562 251.394531 C 297.101562 251.511719 297.195312 251.605469 297.3125 251.605469 C 297.429688 251.605469 297.523438 251.511719 297.523438 251.394531 Z M 297.523438 251.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.28125 250.84375 C 299.28125 250.726562 299.1875 250.632812 299.070312 250.632812 C 298.953125 250.632812 298.859375 250.726562 298.859375 250.84375 C 298.859375 250.960938 298.953125 251.054688 299.070312 251.054688 C 299.1875 251.054688 299.28125 250.960938 299.28125 250.84375 Z M 299.28125 250.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.679688 252.84375 C 300.679688 252.726562 300.585938 252.632812 300.46875 252.632812 C 300.351562 252.632812 300.257812 252.726562 300.257812 252.84375 C 300.257812 252.960938 300.351562 253.054688 300.46875 253.054688 C 300.585938 253.054688 300.679688 252.960938 300.679688 252.84375 Z M 300.679688 252.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.085938 253.25 C 294.085938 253.132812 293.992188 253.039062 293.875 253.039062 C 293.757812 253.039062 293.664062 253.132812 293.664062 253.25 C 293.664062 253.367188 293.757812 253.460938 293.875 253.460938 C 293.992188 253.460938 294.085938 253.367188 294.085938 253.25 Z M 294.085938 253.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.867188 252.65625 C 296.867188 252.539062 296.773438 252.445312 296.65625 252.445312 C 296.539062 252.445312 296.445312 252.539062 296.445312 252.65625 C 296.445312 252.773438 296.539062 252.867188 296.65625 252.867188 C 296.773438 252.867188 296.867188 252.773438 296.867188 252.65625 Z M 296.867188 252.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.269531 251.296875 C 296.269531 251.179688 296.175781 251.085938 296.058594 251.085938 C 295.941406 251.085938 295.847656 251.179688 295.847656 251.296875 C 295.847656 251.414062 295.941406 251.507812 296.058594 251.507812 C 296.175781 251.507812 296.269531 251.414062 296.269531 251.296875 Z M 296.269531 251.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.960938 254.992188 C 298.960938 254.875 298.867188 254.78125 298.75 254.78125 C 298.632812 254.78125 298.539062 254.875 298.539062 254.992188 C 298.539062 255.109375 298.632812 255.203125 298.75 255.203125 C 298.867188 255.203125 298.960938 255.109375 298.960938 254.992188 Z M 298.960938 254.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.617188 254.628906 C 294.617188 254.511719 294.523438 254.417969 294.40625 254.417969 C 294.289062 254.417969 294.195312 254.511719 294.195312 254.628906 C 294.195312 254.746094 294.289062 254.839844 294.40625 254.839844 C 294.523438 254.839844 294.617188 254.746094 294.617188 254.628906 Z M 294.617188 254.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.363281 254.832031 C 297.363281 254.714844 297.269531 254.621094 297.152344 254.621094 C 297.035156 254.621094 296.941406 254.714844 296.941406 254.832031 C 296.941406 254.949219 297.035156 255.042969 297.152344 255.042969 C 297.269531 255.042969 297.363281 254.949219 297.363281 254.832031 Z M 297.363281 254.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.851562 258.003906 C 292.851562 257.886719 292.757812 257.792969 292.640625 257.792969 C 292.523438 257.792969 292.429688 257.886719 292.429688 258.003906 C 292.429688 258.121094 292.523438 258.214844 292.640625 258.214844 C 292.757812 258.214844 292.851562 258.121094 292.851562 258.003906 Z M 292.851562 258.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.386719 257.84375 C 292.386719 257.726562 292.292969 257.632812 292.175781 257.632812 C 292.058594 257.632812 291.964844 257.726562 291.964844 257.84375 C 291.964844 257.960938 292.058594 258.054688 292.175781 258.054688 C 292.292969 258.054688 292.386719 257.960938 292.386719 257.84375 Z M 292.386719 257.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.445312 257.527344 C 288.445312 257.410156 288.351562 257.316406 288.234375 257.316406 C 288.117188 257.316406 288.023438 257.410156 288.023438 257.527344 C 288.023438 257.644531 288.117188 257.738281 288.234375 257.738281 C 288.351562 257.738281 288.445312 257.644531 288.445312 257.527344 Z M 288.445312 257.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.421875 257.71875 C 291.421875 257.601562 291.328125 257.507812 291.210938 257.507812 C 291.09375 257.507812 291 257.601562 291 257.71875 C 291 257.835938 291.09375 257.929688 291.210938 257.929688 C 291.328125 257.929688 291.421875 257.835938 291.421875 257.71875 Z M 291.421875 257.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.933594 259.296875 C 293.933594 259.179688 293.839844 259.085938 293.722656 259.085938 C 293.605469 259.085938 293.511719 259.179688 293.511719 259.296875 C 293.511719 259.414062 293.605469 259.507812 293.722656 259.507812 C 293.839844 259.507812 293.933594 259.414062 293.933594 259.296875 Z M 293.933594 259.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.136719 260.011719 C 292.136719 259.894531 292.042969 259.800781 291.925781 259.800781 C 291.808594 259.800781 291.714844 259.894531 291.714844 260.011719 C 291.714844 260.128906 291.808594 260.222656 291.925781 260.222656 C 292.042969 260.222656 292.136719 260.128906 292.136719 260.011719 Z M 292.136719 260.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.222656 259.714844 C 290.222656 259.597656 290.128906 259.503906 290.011719 259.503906 C 289.894531 259.503906 289.800781 259.597656 289.800781 259.714844 C 289.800781 259.832031 289.894531 259.925781 290.011719 259.925781 C 290.128906 259.925781 290.222656 259.832031 290.222656 259.714844 Z M 290.222656 259.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.84375 259.382812 C 288.84375 259.265625 288.75 259.171875 288.632812 259.171875 C 288.515625 259.171875 288.421875 259.265625 288.421875 259.382812 C 288.421875 259.5 288.515625 259.59375 288.632812 259.59375 C 288.75 259.59375 288.84375 259.5 288.84375 259.382812 Z M 288.84375 259.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.816406 262.238281 C 287.816406 262.121094 287.722656 262.027344 287.605469 262.027344 C 287.488281 262.027344 287.394531 262.121094 287.394531 262.238281 C 287.394531 262.355469 287.488281 262.449219 287.605469 262.449219 C 287.722656 262.449219 287.816406 262.355469 287.816406 262.238281 Z M 287.816406 262.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.984375 261.347656 C 283.984375 261.230469 283.890625 261.136719 283.773438 261.136719 C 283.65625 261.136719 283.5625 261.230469 283.5625 261.347656 C 283.5625 261.464844 283.65625 261.558594 283.773438 261.558594 C 283.890625 261.558594 283.984375 261.464844 283.984375 261.347656 Z M 283.984375 261.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.4375 262.003906 C 280.4375 261.886719 280.34375 261.792969 280.226562 261.792969 C 280.109375 261.792969 280.015625 261.886719 280.015625 262.003906 C 280.015625 262.121094 280.109375 262.214844 280.226562 262.214844 C 280.34375 262.214844 280.4375 262.121094 280.4375 262.003906 Z M 280.4375 262.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.40625 260.300781 C 277.40625 260.183594 277.3125 260.089844 277.195312 260.089844 C 277.078125 260.089844 276.984375 260.183594 276.984375 260.300781 C 276.984375 260.417969 277.078125 260.511719 277.195312 260.511719 C 277.3125 260.511719 277.40625 260.417969 277.40625 260.300781 Z M 277.40625 260.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.132812 259.707031 C 280.132812 259.589844 280.039062 259.496094 279.921875 259.496094 C 279.804688 259.496094 279.710938 259.589844 279.710938 259.707031 C 279.710938 259.824219 279.804688 259.917969 279.921875 259.917969 C 280.039062 259.917969 280.132812 259.824219 280.132812 259.707031 Z M 280.132812 259.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.320312 256.589844 C 278.320312 256.472656 278.226562 256.378906 278.109375 256.378906 C 277.992188 256.378906 277.898438 256.472656 277.898438 256.589844 C 277.898438 256.707031 277.992188 256.800781 278.109375 256.800781 C 278.226562 256.800781 278.320312 256.707031 278.320312 256.589844 Z M 278.320312 256.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.164062 254.554688 C 280.164062 254.4375 280.070312 254.34375 279.953125 254.34375 C 279.835938 254.34375 279.742188 254.4375 279.742188 254.554688 C 279.742188 254.671875 279.835938 254.765625 279.953125 254.765625 C 280.070312 254.765625 280.164062 254.671875 280.164062 254.554688 Z M 280.164062 254.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.339844 253.1875 C 279.339844 253.070312 279.246094 252.976562 279.128906 252.976562 C 279.011719 252.976562 278.917969 253.070312 278.917969 253.1875 C 278.917969 253.304688 279.011719 253.398438 279.128906 253.398438 C 279.246094 253.398438 279.339844 253.304688 279.339844 253.1875 Z M 279.339844 253.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.5625 251.785156 C 278.5625 251.667969 278.46875 251.574219 278.351562 251.574219 C 278.234375 251.574219 278.140625 251.667969 278.140625 251.785156 C 278.140625 251.902344 278.234375 251.996094 278.351562 251.996094 C 278.46875 251.996094 278.5625 251.902344 278.5625 251.785156 Z M 278.5625 251.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.945312 256.058594 C 276.945312 255.941406 276.851562 255.847656 276.734375 255.847656 C 276.617188 255.847656 276.523438 255.941406 276.523438 256.058594 C 276.523438 256.175781 276.617188 256.269531 276.734375 256.269531 C 276.851562 256.269531 276.945312 256.175781 276.945312 256.058594 Z M 276.945312 256.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.847656 259.40625 C 277.847656 259.289062 277.753906 259.195312 277.636719 259.195312 C 277.519531 259.195312 277.425781 259.289062 277.425781 259.40625 C 277.425781 259.523438 277.519531 259.617188 277.636719 259.617188 C 277.753906 259.617188 277.847656 259.523438 277.847656 259.40625 Z M 277.847656 259.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.453125 261.105469 C 280.453125 260.988281 280.359375 260.894531 280.242188 260.894531 C 280.125 260.894531 280.03125 260.988281 280.03125 261.105469 C 280.03125 261.222656 280.125 261.316406 280.242188 261.316406 C 280.359375 261.316406 280.453125 261.222656 280.453125 261.105469 Z M 280.453125 261.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.855469 257.820312 C 280.855469 257.703125 280.761719 257.609375 280.644531 257.609375 C 280.527344 257.609375 280.433594 257.703125 280.433594 257.820312 C 280.433594 257.9375 280.527344 258.03125 280.644531 258.03125 C 280.761719 258.03125 280.855469 257.9375 280.855469 257.820312 Z M 280.855469 257.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.609375 257.289062 C 279.609375 257.171875 279.515625 257.078125 279.398438 257.078125 C 279.28125 257.078125 279.1875 257.171875 279.1875 257.289062 C 279.1875 257.40625 279.28125 257.5 279.398438 257.5 C 279.515625 257.5 279.609375 257.40625 279.609375 257.289062 Z M 279.609375 257.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.863281 257.464844 C 278.863281 257.347656 278.769531 257.253906 278.652344 257.253906 C 278.535156 257.253906 278.441406 257.347656 278.441406 257.464844 C 278.441406 257.582031 278.535156 257.675781 278.652344 257.675781 C 278.769531 257.675781 278.863281 257.582031 278.863281 257.464844 Z M 278.863281 257.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.546875 257.050781 C 277.546875 256.933594 277.453125 256.839844 277.335938 256.839844 C 277.21875 256.839844 277.125 256.933594 277.125 257.050781 C 277.125 257.167969 277.21875 257.261719 277.335938 257.261719 C 277.453125 257.261719 277.546875 257.167969 277.546875 257.050781 Z M 277.546875 257.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.304688 259.4375 C 278.304688 259.320312 278.210938 259.226562 278.09375 259.226562 C 277.976562 259.226562 277.882812 259.320312 277.882812 259.4375 C 277.882812 259.554688 277.976562 259.648438 278.09375 259.648438 C 278.210938 259.648438 278.304688 259.554688 278.304688 259.4375 Z M 278.304688 259.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.238281 259.71875 C 281.238281 259.601562 281.144531 259.507812 281.027344 259.507812 C 280.910156 259.507812 280.816406 259.601562 280.816406 259.71875 C 280.816406 259.835938 280.910156 259.929688 281.027344 259.929688 C 281.144531 259.929688 281.238281 259.835938 281.238281 259.71875 Z M 281.238281 259.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.984375 256.9375 C 280.984375 256.820312 280.890625 256.726562 280.773438 256.726562 C 280.65625 256.726562 280.5625 256.820312 280.5625 256.9375 C 280.5625 257.054688 280.65625 257.148438 280.773438 257.148438 C 280.890625 257.148438 280.984375 257.054688 280.984375 256.9375 Z M 280.984375 256.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.867188 257.144531 C 280.867188 257.027344 280.773438 256.933594 280.65625 256.933594 C 280.539062 256.933594 280.445312 257.027344 280.445312 257.144531 C 280.445312 257.261719 280.539062 257.355469 280.65625 257.355469 C 280.773438 257.355469 280.867188 257.261719 280.867188 257.144531 Z M 280.867188 257.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.296875 258.847656 C 274.296875 258.730469 274.203125 258.636719 274.085938 258.636719 C 273.96875 258.636719 273.875 258.730469 273.875 258.847656 C 273.875 258.964844 273.96875 259.058594 274.085938 259.058594 C 274.203125 259.058594 274.296875 258.964844 274.296875 258.847656 Z M 274.296875 258.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.078125 258.402344 C 274.078125 258.285156 273.984375 258.191406 273.867188 258.191406 C 273.75 258.191406 273.65625 258.285156 273.65625 258.402344 C 273.65625 258.519531 273.75 258.613281 273.867188 258.613281 C 273.984375 258.613281 274.078125 258.519531 274.078125 258.402344 Z M 274.078125 258.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.722656 259.832031 C 273.722656 259.714844 273.628906 259.621094 273.511719 259.621094 C 273.394531 259.621094 273.300781 259.714844 273.300781 259.832031 C 273.300781 259.949219 273.394531 260.042969 273.511719 260.042969 C 273.628906 260.042969 273.722656 259.949219 273.722656 259.832031 Z M 273.722656 259.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.414062 260.894531 C 272.414062 260.777344 272.320312 260.683594 272.203125 260.683594 C 272.085938 260.683594 271.992188 260.777344 271.992188 260.894531 C 271.992188 261.011719 272.085938 261.105469 272.203125 261.105469 C 272.320312 261.105469 272.414062 261.011719 272.414062 260.894531 Z M 272.414062 260.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.539062 260.140625 C 272.539062 260.023438 272.445312 259.929688 272.328125 259.929688 C 272.210938 259.929688 272.117188 260.023438 272.117188 260.140625 C 272.117188 260.257812 272.210938 260.351562 272.328125 260.351562 C 272.445312 260.351562 272.539062 260.257812 272.539062 260.140625 Z M 272.539062 260.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.289062 257.984375 C 273.289062 257.867188 273.195312 257.773438 273.078125 257.773438 C 272.960938 257.773438 272.867188 257.867188 272.867188 257.984375 C 272.867188 258.101562 272.960938 258.195312 273.078125 258.195312 C 273.195312 258.195312 273.289062 258.101562 273.289062 257.984375 Z M 273.289062 257.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.34375 256.015625 C 274.34375 255.898438 274.25 255.804688 274.132812 255.804688 C 274.015625 255.804688 273.921875 255.898438 273.921875 256.015625 C 273.921875 256.132812 274.015625 256.226562 274.132812 256.226562 C 274.25 256.226562 274.34375 256.132812 274.34375 256.015625 Z M 274.34375 256.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.257812 252.398438 C 270.257812 252.28125 270.164062 252.1875 270.046875 252.1875 C 269.929688 252.1875 269.835938 252.28125 269.835938 252.398438 C 269.835938 252.515625 269.929688 252.609375 270.046875 252.609375 C 270.164062 252.609375 270.257812 252.515625 270.257812 252.398438 Z M 270.257812 252.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.863281 255.5625 C 269.863281 255.445312 269.769531 255.351562 269.652344 255.351562 C 269.535156 255.351562 269.441406 255.445312 269.441406 255.5625 C 269.441406 255.679688 269.535156 255.773438 269.652344 255.773438 C 269.769531 255.773438 269.863281 255.679688 269.863281 255.5625 Z M 269.863281 255.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.214844 259.039062 C 271.214844 258.921875 271.121094 258.828125 271.003906 258.828125 C 270.886719 258.828125 270.792969 258.921875 270.792969 259.039062 C 270.792969 259.15625 270.886719 259.25 271.003906 259.25 C 271.121094 259.25 271.214844 259.15625 271.214844 259.039062 Z M 271.214844 259.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.417969 261.726562 C 271.417969 261.609375 271.324219 261.515625 271.207031 261.515625 C 271.089844 261.515625 270.996094 261.609375 270.996094 261.726562 C 270.996094 261.84375 271.089844 261.9375 271.207031 261.9375 C 271.324219 261.9375 271.417969 261.84375 271.417969 261.726562 Z M 271.417969 261.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.628906 262.628906 C 271.628906 262.511719 271.535156 262.417969 271.417969 262.417969 C 271.300781 262.417969 271.207031 262.511719 271.207031 262.628906 C 271.207031 262.746094 271.300781 262.839844 271.417969 262.839844 C 271.535156 262.839844 271.628906 262.746094 271.628906 262.628906 Z M 271.628906 262.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.703125 259.578125 C 270.703125 259.460938 270.609375 259.367188 270.492188 259.367188 C 270.375 259.367188 270.28125 259.460938 270.28125 259.578125 C 270.28125 259.695312 270.375 259.789062 270.492188 259.789062 C 270.609375 259.789062 270.703125 259.695312 270.703125 259.578125 Z M 270.703125 259.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.550781 260.410156 C 272.550781 260.292969 272.457031 260.199219 272.339844 260.199219 C 272.222656 260.199219 272.128906 260.292969 272.128906 260.410156 C 272.128906 260.527344 272.222656 260.621094 272.339844 260.621094 C 272.457031 260.621094 272.550781 260.527344 272.550781 260.410156 Z M 272.550781 260.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.066406 257.523438 C 274.066406 257.40625 273.972656 257.3125 273.855469 257.3125 C 273.738281 257.3125 273.644531 257.40625 273.644531 257.523438 C 273.644531 257.640625 273.738281 257.734375 273.855469 257.734375 C 273.972656 257.734375 274.066406 257.640625 274.066406 257.523438 Z M 274.066406 257.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.460938 256.972656 C 275.460938 256.855469 275.367188 256.761719 275.25 256.761719 C 275.132812 256.761719 275.039062 256.855469 275.039062 256.972656 C 275.039062 257.089844 275.132812 257.183594 275.25 257.183594 C 275.367188 257.183594 275.460938 257.089844 275.460938 256.972656 Z M 275.460938 256.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.660156 257.558594 C 274.660156 257.441406 274.566406 257.347656 274.449219 257.347656 C 274.332031 257.347656 274.238281 257.441406 274.238281 257.558594 C 274.238281 257.675781 274.332031 257.769531 274.449219 257.769531 C 274.566406 257.769531 274.660156 257.675781 274.660156 257.558594 Z M 274.660156 257.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.351562 259.488281 C 273.351562 259.371094 273.257812 259.277344 273.140625 259.277344 C 273.023438 259.277344 272.929688 259.371094 272.929688 259.488281 C 272.929688 259.605469 273.023438 259.699219 273.140625 259.699219 C 273.257812 259.699219 273.351562 259.605469 273.351562 259.488281 Z M 273.351562 259.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.535156 261.417969 C 275.535156 261.300781 275.441406 261.207031 275.324219 261.207031 C 275.207031 261.207031 275.113281 261.300781 275.113281 261.417969 C 275.113281 261.535156 275.207031 261.628906 275.324219 261.628906 C 275.441406 261.628906 275.535156 261.535156 275.535156 261.417969 Z M 275.535156 261.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.570312 262.019531 C 273.570312 261.902344 273.476562 261.808594 273.359375 261.808594 C 273.242188 261.808594 273.148438 261.902344 273.148438 262.019531 C 273.148438 262.136719 273.242188 262.230469 273.359375 262.230469 C 273.476562 262.230469 273.570312 262.136719 273.570312 262.019531 Z M 273.570312 262.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.378906 260.957031 C 276.378906 260.839844 276.285156 260.746094 276.167969 260.746094 C 276.050781 260.746094 275.957031 260.839844 275.957031 260.957031 C 275.957031 261.074219 276.050781 261.167969 276.167969 261.167969 C 276.285156 261.167969 276.378906 261.074219 276.378906 260.957031 Z M 276.378906 260.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.359375 258.164062 C 271.359375 258.046875 271.265625 257.953125 271.148438 257.953125 C 271.03125 257.953125 270.9375 258.046875 270.9375 258.164062 C 270.9375 258.28125 271.03125 258.375 271.148438 258.375 C 271.265625 258.375 271.359375 258.28125 271.359375 258.164062 Z M 271.359375 258.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.574219 259.714844 C 270.574219 259.597656 270.480469 259.503906 270.363281 259.503906 C 270.246094 259.503906 270.152344 259.597656 270.152344 259.714844 C 270.152344 259.832031 270.246094 259.925781 270.363281 259.925781 C 270.480469 259.925781 270.574219 259.832031 270.574219 259.714844 Z M 270.574219 259.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.316406 257.53125 C 270.316406 257.414062 270.222656 257.320312 270.105469 257.320312 C 269.988281 257.320312 269.894531 257.414062 269.894531 257.53125 C 269.894531 257.648438 269.988281 257.742188 270.105469 257.742188 C 270.222656 257.742188 270.316406 257.648438 270.316406 257.53125 Z M 270.316406 257.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.914062 260.246094 C 273.914062 260.128906 273.820312 260.035156 273.703125 260.035156 C 273.585938 260.035156 273.492188 260.128906 273.492188 260.246094 C 273.492188 260.363281 273.585938 260.457031 273.703125 260.457031 C 273.820312 260.457031 273.914062 260.363281 273.914062 260.246094 Z M 273.914062 260.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.128906 260.828125 C 274.128906 260.710938 274.035156 260.617188 273.917969 260.617188 C 273.800781 260.617188 273.707031 260.710938 273.707031 260.828125 C 273.707031 260.945312 273.800781 261.039062 273.917969 261.039062 C 274.035156 261.039062 274.128906 260.945312 274.128906 260.828125 Z M 274.128906 260.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.941406 260.789062 C 278.941406 260.671875 278.847656 260.578125 278.730469 260.578125 C 278.613281 260.578125 278.519531 260.671875 278.519531 260.789062 C 278.519531 260.90625 278.613281 261 278.730469 261 C 278.847656 261 278.941406 260.90625 278.941406 260.789062 Z M 278.941406 260.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.175781 258.675781 C 281.175781 258.558594 281.082031 258.464844 280.964844 258.464844 C 280.847656 258.464844 280.753906 258.558594 280.753906 258.675781 C 280.753906 258.792969 280.847656 258.886719 280.964844 258.886719 C 281.082031 258.886719 281.175781 258.792969 281.175781 258.675781 Z M 281.175781 258.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.710938 257.234375 C 281.710938 257.117188 281.617188 257.023438 281.5 257.023438 C 281.382812 257.023438 281.289062 257.117188 281.289062 257.234375 C 281.289062 257.351562 281.382812 257.445312 281.5 257.445312 C 281.617188 257.445312 281.710938 257.351562 281.710938 257.234375 Z M 281.710938 257.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.542969 257.082031 C 281.542969 256.964844 281.449219 256.871094 281.332031 256.871094 C 281.214844 256.871094 281.121094 256.964844 281.121094 257.082031 C 281.121094 257.199219 281.214844 257.292969 281.332031 257.292969 C 281.449219 257.292969 281.542969 257.199219 281.542969 257.082031 Z M 281.542969 257.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.828125 258.167969 C 277.828125 258.050781 277.734375 257.957031 277.617188 257.957031 C 277.5 257.957031 277.40625 258.050781 277.40625 258.167969 C 277.40625 258.285156 277.5 258.378906 277.617188 258.378906 C 277.734375 258.378906 277.828125 258.285156 277.828125 258.167969 Z M 277.828125 258.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.296875 258.664062 C 275.296875 258.546875 275.203125 258.453125 275.085938 258.453125 C 274.96875 258.453125 274.875 258.546875 274.875 258.664062 C 274.875 258.78125 274.96875 258.875 275.085938 258.875 C 275.203125 258.875 275.296875 258.78125 275.296875 258.664062 Z M 275.296875 258.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.960938 256.867188 C 279.960938 256.75 279.867188 256.65625 279.75 256.65625 C 279.632812 256.65625 279.539062 256.75 279.539062 256.867188 C 279.539062 256.984375 279.632812 257.078125 279.75 257.078125 C 279.867188 257.078125 279.960938 256.984375 279.960938 256.867188 Z M 279.960938 256.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.054688 257.058594 C 282.054688 256.941406 281.960938 256.847656 281.84375 256.847656 C 281.726562 256.847656 281.632812 256.941406 281.632812 257.058594 C 281.632812 257.175781 281.726562 257.269531 281.84375 257.269531 C 281.960938 257.269531 282.054688 257.175781 282.054688 257.058594 Z M 282.054688 257.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.648438 258.742188 C 281.648438 258.625 281.554688 258.53125 281.4375 258.53125 C 281.320312 258.53125 281.226562 258.625 281.226562 258.742188 C 281.226562 258.859375 281.320312 258.953125 281.4375 258.953125 C 281.554688 258.953125 281.648438 258.859375 281.648438 258.742188 Z M 281.648438 258.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.792969 256.511719 C 283.792969 256.394531 283.699219 256.300781 283.582031 256.300781 C 283.464844 256.300781 283.371094 256.394531 283.371094 256.511719 C 283.371094 256.628906 283.464844 256.722656 283.582031 256.722656 C 283.699219 256.722656 283.792969 256.628906 283.792969 256.511719 Z M 283.792969 256.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.546875 254.109375 C 282.546875 253.992188 282.453125 253.898438 282.335938 253.898438 C 282.21875 253.898438 282.125 253.992188 282.125 254.109375 C 282.125 254.226562 282.21875 254.320312 282.335938 254.320312 C 282.453125 254.320312 282.546875 254.226562 282.546875 254.109375 Z M 282.546875 254.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.746094 253.183594 C 278.746094 253.066406 278.652344 252.972656 278.535156 252.972656 C 278.417969 252.972656 278.324219 253.066406 278.324219 253.183594 C 278.324219 253.300781 278.417969 253.394531 278.535156 253.394531 C 278.652344 253.394531 278.746094 253.300781 278.746094 253.183594 Z M 278.746094 253.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.742188 256.097656 C 277.742188 255.980469 277.648438 255.886719 277.53125 255.886719 C 277.414062 255.886719 277.320312 255.980469 277.320312 256.097656 C 277.320312 256.214844 277.414062 256.308594 277.53125 256.308594 C 277.648438 256.308594 277.742188 256.214844 277.742188 256.097656 Z M 277.742188 256.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.351562 252.605469 C 275.351562 252.488281 275.257812 252.394531 275.140625 252.394531 C 275.023438 252.394531 274.929688 252.488281 274.929688 252.605469 C 274.929688 252.722656 275.023438 252.816406 275.140625 252.816406 C 275.257812 252.816406 275.351562 252.722656 275.351562 252.605469 Z M 275.351562 252.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.386719 253.398438 C 271.386719 253.28125 271.292969 253.1875 271.175781 253.1875 C 271.058594 253.1875 270.964844 253.28125 270.964844 253.398438 C 270.964844 253.515625 271.058594 253.609375 271.175781 253.609375 C 271.292969 253.609375 271.386719 253.515625 271.386719 253.398438 Z M 271.386719 253.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.964844 252.390625 C 273.964844 252.273438 273.871094 252.179688 273.753906 252.179688 C 273.636719 252.179688 273.542969 252.273438 273.542969 252.390625 C 273.542969 252.507812 273.636719 252.601562 273.753906 252.601562 C 273.871094 252.601562 273.964844 252.507812 273.964844 252.390625 Z M 273.964844 252.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.742188 254.566406 C 273.742188 254.449219 273.648438 254.355469 273.53125 254.355469 C 273.414062 254.355469 273.320312 254.449219 273.320312 254.566406 C 273.320312 254.683594 273.414062 254.777344 273.53125 254.777344 C 273.648438 254.777344 273.742188 254.683594 273.742188 254.566406 Z M 273.742188 254.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.738281 255.441406 C 274.738281 255.324219 274.644531 255.230469 274.527344 255.230469 C 274.410156 255.230469 274.316406 255.324219 274.316406 255.441406 C 274.316406 255.558594 274.410156 255.652344 274.527344 255.652344 C 274.644531 255.652344 274.738281 255.558594 274.738281 255.441406 Z M 274.738281 255.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.65625 259.710938 C 271.65625 259.59375 271.5625 259.5 271.445312 259.5 C 271.328125 259.5 271.234375 259.59375 271.234375 259.710938 C 271.234375 259.828125 271.328125 259.921875 271.445312 259.921875 C 271.5625 259.921875 271.65625 259.828125 271.65625 259.710938 Z M 271.65625 259.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.382812 259.339844 C 273.382812 259.222656 273.289062 259.128906 273.171875 259.128906 C 273.054688 259.128906 272.960938 259.222656 272.960938 259.339844 C 272.960938 259.457031 273.054688 259.550781 273.171875 259.550781 C 273.289062 259.550781 273.382812 259.457031 273.382812 259.339844 Z M 273.382812 259.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.492188 261.105469 C 273.492188 260.988281 273.398438 260.894531 273.28125 260.894531 C 273.164062 260.894531 273.070312 260.988281 273.070312 261.105469 C 273.070312 261.222656 273.164062 261.316406 273.28125 261.316406 C 273.398438 261.316406 273.492188 261.222656 273.492188 261.105469 Z M 273.492188 261.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.992188 260.4375 C 269.992188 260.320312 269.898438 260.226562 269.78125 260.226562 C 269.664062 260.226562 269.570312 260.320312 269.570312 260.4375 C 269.570312 260.554688 269.664062 260.648438 269.78125 260.648438 C 269.898438 260.648438 269.992188 260.554688 269.992188 260.4375 Z M 269.992188 260.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.6875 262.257812 C 267.6875 262.140625 267.59375 262.046875 267.476562 262.046875 C 267.359375 262.046875 267.265625 262.140625 267.265625 262.257812 C 267.265625 262.375 267.359375 262.46875 267.476562 262.46875 C 267.59375 262.46875 267.6875 262.375 267.6875 262.257812 Z M 267.6875 262.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.894531 262.0625 C 264.894531 261.945312 264.800781 261.851562 264.683594 261.851562 C 264.566406 261.851562 264.472656 261.945312 264.472656 262.0625 C 264.472656 262.179688 264.566406 262.273438 264.683594 262.273438 C 264.800781 262.273438 264.894531 262.179688 264.894531 262.0625 Z M 264.894531 262.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.882812 264.511719 C 261.882812 264.394531 261.789062 264.300781 261.671875 264.300781 C 261.554688 264.300781 261.460938 264.394531 261.460938 264.511719 C 261.460938 264.628906 261.554688 264.722656 261.671875 264.722656 C 261.789062 264.722656 261.882812 264.628906 261.882812 264.511719 Z M 261.882812 264.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.242188 263.496094 C 260.242188 263.378906 260.148438 263.285156 260.03125 263.285156 C 259.914062 263.285156 259.820312 263.378906 259.820312 263.496094 C 259.820312 263.613281 259.914062 263.707031 260.03125 263.707031 C 260.148438 263.707031 260.242188 263.613281 260.242188 263.496094 Z M 260.242188 263.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.449219 265.433594 C 257.449219 265.316406 257.355469 265.222656 257.238281 265.222656 C 257.121094 265.222656 257.027344 265.316406 257.027344 265.433594 C 257.027344 265.550781 257.121094 265.644531 257.238281 265.644531 C 257.355469 265.644531 257.449219 265.550781 257.449219 265.433594 Z M 257.449219 265.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.371094 264.246094 C 261.371094 264.128906 261.277344 264.035156 261.160156 264.035156 C 261.042969 264.035156 260.949219 264.128906 260.949219 264.246094 C 260.949219 264.363281 261.042969 264.457031 261.160156 264.457031 C 261.277344 264.457031 261.371094 264.363281 261.371094 264.246094 Z M 261.371094 264.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.289062 263.296875 C 264.289062 263.179688 264.195312 263.085938 264.078125 263.085938 C 263.960938 263.085938 263.867188 263.179688 263.867188 263.296875 C 263.867188 263.414062 263.960938 263.507812 264.078125 263.507812 C 264.195312 263.507812 264.289062 263.414062 264.289062 263.296875 Z M 264.289062 263.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.761719 261.648438 C 263.761719 261.53125 263.667969 261.4375 263.550781 261.4375 C 263.433594 261.4375 263.339844 261.53125 263.339844 261.648438 C 263.339844 261.765625 263.433594 261.859375 263.550781 261.859375 C 263.667969 261.859375 263.761719 261.765625 263.761719 261.648438 Z M 263.761719 261.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.765625 263.832031 C 263.765625 263.714844 263.671875 263.621094 263.554688 263.621094 C 263.4375 263.621094 263.34375 263.714844 263.34375 263.832031 C 263.34375 263.949219 263.4375 264.042969 263.554688 264.042969 C 263.671875 264.042969 263.765625 263.949219 263.765625 263.832031 Z M 263.765625 263.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.253906 263.664062 C 264.253906 263.546875 264.160156 263.453125 264.042969 263.453125 C 263.925781 263.453125 263.832031 263.546875 263.832031 263.664062 C 263.832031 263.78125 263.925781 263.875 264.042969 263.875 C 264.160156 263.875 264.253906 263.78125 264.253906 263.664062 Z M 264.253906 263.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.90625 263.917969 C 266.90625 263.800781 266.8125 263.707031 266.695312 263.707031 C 266.578125 263.707031 266.484375 263.800781 266.484375 263.917969 C 266.484375 264.035156 266.578125 264.128906 266.695312 264.128906 C 266.8125 264.128906 266.90625 264.035156 266.90625 263.917969 Z M 266.90625 263.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.066406 266.027344 C 270.066406 265.910156 269.972656 265.816406 269.855469 265.816406 C 269.738281 265.816406 269.644531 265.910156 269.644531 266.027344 C 269.644531 266.144531 269.738281 266.238281 269.855469 266.238281 C 269.972656 266.238281 270.066406 266.144531 270.066406 266.027344 Z M 270.066406 266.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.589844 263.722656 C 272.589844 263.605469 272.496094 263.511719 272.378906 263.511719 C 272.261719 263.511719 272.167969 263.605469 272.167969 263.722656 C 272.167969 263.839844 272.261719 263.933594 272.378906 263.933594 C 272.496094 263.933594 272.589844 263.839844 272.589844 263.722656 Z M 272.589844 263.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.273438 264.050781 C 273.273438 263.933594 273.179688 263.839844 273.0625 263.839844 C 272.945312 263.839844 272.851562 263.933594 272.851562 264.050781 C 272.851562 264.167969 272.945312 264.261719 273.0625 264.261719 C 273.179688 264.261719 273.273438 264.167969 273.273438 264.050781 Z M 273.273438 264.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.679688 266.121094 C 272.679688 266.003906 272.585938 265.910156 272.46875 265.910156 C 272.351562 265.910156 272.257812 266.003906 272.257812 266.121094 C 272.257812 266.238281 272.351562 266.332031 272.46875 266.332031 C 272.585938 266.332031 272.679688 266.238281 272.679688 266.121094 Z M 272.679688 266.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.1875 266.90625 C 272.1875 266.789062 272.09375 266.695312 271.976562 266.695312 C 271.859375 266.695312 271.765625 266.789062 271.765625 266.90625 C 271.765625 267.023438 271.859375 267.117188 271.976562 267.117188 C 272.09375 267.117188 272.1875 267.023438 272.1875 266.90625 Z M 272.1875 266.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.492188 267.359375 C 278.492188 267.242188 278.398438 267.148438 278.28125 267.148438 C 278.164062 267.148438 278.070312 267.242188 278.070312 267.359375 C 278.070312 267.476562 278.164062 267.570312 278.28125 267.570312 C 278.398438 267.570312 278.492188 267.476562 278.492188 267.359375 Z M 278.492188 267.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.824219 265.558594 C 273.824219 265.441406 273.730469 265.347656 273.613281 265.347656 C 273.496094 265.347656 273.402344 265.441406 273.402344 265.558594 C 273.402344 265.675781 273.496094 265.769531 273.613281 265.769531 C 273.730469 265.769531 273.824219 265.675781 273.824219 265.558594 Z M 273.824219 265.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.574219 266.125 C 270.574219 266.007812 270.480469 265.914062 270.363281 265.914062 C 270.246094 265.914062 270.152344 266.007812 270.152344 266.125 C 270.152344 266.242188 270.246094 266.335938 270.363281 266.335938 C 270.480469 266.335938 270.574219 266.242188 270.574219 266.125 Z M 270.574219 266.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.683594 262.652344 C 272.683594 262.535156 272.589844 262.441406 272.472656 262.441406 C 272.355469 262.441406 272.261719 262.535156 272.261719 262.652344 C 272.261719 262.769531 272.355469 262.863281 272.472656 262.863281 C 272.589844 262.863281 272.683594 262.769531 272.683594 262.652344 Z M 272.683594 262.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.402344 261.613281 C 272.402344 261.496094 272.308594 261.402344 272.191406 261.402344 C 272.074219 261.402344 271.980469 261.496094 271.980469 261.613281 C 271.980469 261.730469 272.074219 261.824219 272.191406 261.824219 C 272.308594 261.824219 272.402344 261.730469 272.402344 261.613281 Z M 272.402344 261.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.152344 259.015625 C 271.152344 258.898438 271.058594 258.804688 270.941406 258.804688 C 270.824219 258.804688 270.730469 258.898438 270.730469 259.015625 C 270.730469 259.132812 270.824219 259.226562 270.941406 259.226562 C 271.058594 259.226562 271.152344 259.132812 271.152344 259.015625 Z M 271.152344 259.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.738281 262.261719 C 272.738281 262.144531 272.644531 262.050781 272.527344 262.050781 C 272.410156 262.050781 272.316406 262.144531 272.316406 262.261719 C 272.316406 262.378906 272.410156 262.472656 272.527344 262.472656 C 272.644531 262.472656 272.738281 262.378906 272.738281 262.261719 Z M 272.738281 262.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.578125 263.085938 C 266.578125 262.96875 266.484375 262.875 266.367188 262.875 C 266.25 262.875 266.15625 262.96875 266.15625 263.085938 C 266.15625 263.203125 266.25 263.296875 266.367188 263.296875 C 266.484375 263.296875 266.578125 263.203125 266.578125 263.085938 Z M 266.578125 263.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.941406 259.132812 C 266.941406 259.015625 266.847656 258.921875 266.730469 258.921875 C 266.613281 258.921875 266.519531 259.015625 266.519531 259.132812 C 266.519531 259.25 266.613281 259.34375 266.730469 259.34375 C 266.847656 259.34375 266.941406 259.25 266.941406 259.132812 Z M 266.941406 259.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.988281 258.386719 C 267.988281 258.269531 267.894531 258.175781 267.777344 258.175781 C 267.660156 258.175781 267.566406 258.269531 267.566406 258.386719 C 267.566406 258.503906 267.660156 258.597656 267.777344 258.597656 C 267.894531 258.597656 267.988281 258.503906 267.988281 258.386719 Z M 267.988281 258.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.957031 259.824219 C 267.957031 259.707031 267.863281 259.613281 267.746094 259.613281 C 267.628906 259.613281 267.535156 259.707031 267.535156 259.824219 C 267.535156 259.941406 267.628906 260.035156 267.746094 260.035156 C 267.863281 260.035156 267.957031 259.941406 267.957031 259.824219 Z M 267.957031 259.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.460938 259.933594 C 268.460938 259.816406 268.367188 259.722656 268.25 259.722656 C 268.132812 259.722656 268.039062 259.816406 268.039062 259.933594 C 268.039062 260.050781 268.132812 260.144531 268.25 260.144531 C 268.367188 260.144531 268.460938 260.050781 268.460938 259.933594 Z M 268.460938 259.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.429688 263.167969 C 268.429688 263.050781 268.335938 262.957031 268.21875 262.957031 C 268.101562 262.957031 268.007812 263.050781 268.007812 263.167969 C 268.007812 263.285156 268.101562 263.378906 268.21875 263.378906 C 268.335938 263.378906 268.429688 263.285156 268.429688 263.167969 Z M 268.429688 263.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.09375 266.132812 C 266.09375 266.015625 266 265.921875 265.882812 265.921875 C 265.765625 265.921875 265.671875 266.015625 265.671875 266.132812 C 265.671875 266.25 265.765625 266.34375 265.882812 266.34375 C 266 266.34375 266.09375 266.25 266.09375 266.132812 Z M 266.09375 266.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.75 260.734375 C 269.75 260.617188 269.65625 260.523438 269.539062 260.523438 C 269.421875 260.523438 269.328125 260.617188 269.328125 260.734375 C 269.328125 260.851562 269.421875 260.945312 269.539062 260.945312 C 269.65625 260.945312 269.75 260.851562 269.75 260.734375 Z M 269.75 260.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.976562 262.183594 C 268.976562 262.066406 268.882812 261.972656 268.765625 261.972656 C 268.648438 261.972656 268.554688 262.066406 268.554688 262.183594 C 268.554688 262.300781 268.648438 262.394531 268.765625 262.394531 C 268.882812 262.394531 268.976562 262.300781 268.976562 262.183594 Z M 268.976562 262.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.523438 263.238281 C 271.523438 263.121094 271.429688 263.027344 271.3125 263.027344 C 271.195312 263.027344 271.101562 263.121094 271.101562 263.238281 C 271.101562 263.355469 271.195312 263.449219 271.3125 263.449219 C 271.429688 263.449219 271.523438 263.355469 271.523438 263.238281 Z M 271.523438 263.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.570312 264.386719 C 275.570312 264.269531 275.476562 264.175781 275.359375 264.175781 C 275.242188 264.175781 275.148438 264.269531 275.148438 264.386719 C 275.148438 264.503906 275.242188 264.597656 275.359375 264.597656 C 275.476562 264.597656 275.570312 264.503906 275.570312 264.386719 Z M 275.570312 264.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.355469 265.671875 C 276.355469 265.554688 276.261719 265.460938 276.144531 265.460938 C 276.027344 265.460938 275.933594 265.554688 275.933594 265.671875 C 275.933594 265.789062 276.027344 265.882812 276.144531 265.882812 C 276.261719 265.882812 276.355469 265.789062 276.355469 265.671875 Z M 276.355469 265.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.535156 268.488281 C 276.535156 268.371094 276.441406 268.277344 276.324219 268.277344 C 276.207031 268.277344 276.113281 268.371094 276.113281 268.488281 C 276.113281 268.605469 276.207031 268.699219 276.324219 268.699219 C 276.441406 268.699219 276.535156 268.605469 276.535156 268.488281 Z M 276.535156 268.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.257812 271.65625 C 275.257812 271.539062 275.164062 271.445312 275.046875 271.445312 C 274.929688 271.445312 274.835938 271.539062 274.835938 271.65625 C 274.835938 271.773438 274.929688 271.867188 275.046875 271.867188 C 275.164062 271.867188 275.257812 271.773438 275.257812 271.65625 Z M 275.257812 271.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.835938 275.207031 C 277.835938 275.089844 277.742188 274.996094 277.625 274.996094 C 277.507812 274.996094 277.414062 275.089844 277.414062 275.207031 C 277.414062 275.324219 277.507812 275.417969 277.625 275.417969 C 277.742188 275.417969 277.835938 275.324219 277.835938 275.207031 Z M 277.835938 275.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.492188 275.738281 C 278.492188 275.621094 278.398438 275.527344 278.28125 275.527344 C 278.164062 275.527344 278.070312 275.621094 278.070312 275.738281 C 278.070312 275.855469 278.164062 275.949219 278.28125 275.949219 C 278.398438 275.949219 278.492188 275.855469 278.492188 275.738281 Z M 278.492188 275.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.445312 276.398438 C 275.445312 276.28125 275.351562 276.1875 275.234375 276.1875 C 275.117188 276.1875 275.023438 276.28125 275.023438 276.398438 C 275.023438 276.515625 275.117188 276.609375 275.234375 276.609375 C 275.351562 276.609375 275.445312 276.515625 275.445312 276.398438 Z M 275.445312 276.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.589844 276.273438 C 272.589844 276.15625 272.496094 276.0625 272.378906 276.0625 C 272.261719 276.0625 272.167969 276.15625 272.167969 276.273438 C 272.167969 276.390625 272.261719 276.484375 272.378906 276.484375 C 272.496094 276.484375 272.589844 276.390625 272.589844 276.273438 Z M 272.589844 276.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.640625 273.886719 C 269.640625 273.769531 269.546875 273.675781 269.429688 273.675781 C 269.3125 273.675781 269.21875 273.769531 269.21875 273.886719 C 269.21875 274.003906 269.3125 274.097656 269.429688 274.097656 C 269.546875 274.097656 269.640625 274.003906 269.640625 273.886719 Z M 269.640625 273.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.5625 274.6875 C 271.5625 274.570312 271.46875 274.476562 271.351562 274.476562 C 271.234375 274.476562 271.140625 274.570312 271.140625 274.6875 C 271.140625 274.804688 271.234375 274.898438 271.351562 274.898438 C 271.46875 274.898438 271.5625 274.804688 271.5625 274.6875 Z M 271.5625 274.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.574219 273.914062 C 271.574219 273.796875 271.480469 273.703125 271.363281 273.703125 C 271.246094 273.703125 271.152344 273.796875 271.152344 273.914062 C 271.152344 274.03125 271.246094 274.125 271.363281 274.125 C 271.480469 274.125 271.574219 274.03125 271.574219 273.914062 Z M 271.574219 273.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.085938 270.417969 C 269.085938 270.300781 268.992188 270.207031 268.875 270.207031 C 268.757812 270.207031 268.664062 270.300781 268.664062 270.417969 C 268.664062 270.535156 268.757812 270.628906 268.875 270.628906 C 268.992188 270.628906 269.085938 270.535156 269.085938 270.417969 Z M 269.085938 270.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.222656 272.464844 C 268.222656 272.347656 268.128906 272.253906 268.011719 272.253906 C 267.894531 272.253906 267.800781 272.347656 267.800781 272.464844 C 267.800781 272.582031 267.894531 272.675781 268.011719 272.675781 C 268.128906 272.675781 268.222656 272.582031 268.222656 272.464844 Z M 268.222656 272.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.398438 272.121094 C 266.398438 272.003906 266.304688 271.910156 266.1875 271.910156 C 266.070312 271.910156 265.976562 272.003906 265.976562 272.121094 C 265.976562 272.238281 266.070312 272.332031 266.1875 272.332031 C 266.304688 272.332031 266.398438 272.238281 266.398438 272.121094 Z M 266.398438 272.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.320312 269.933594 C 268.320312 269.816406 268.226562 269.722656 268.109375 269.722656 C 267.992188 269.722656 267.898438 269.816406 267.898438 269.933594 C 267.898438 270.050781 267.992188 270.144531 268.109375 270.144531 C 268.226562 270.144531 268.320312 270.050781 268.320312 269.933594 Z M 268.320312 269.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.1875 267.941406 C 272.1875 267.824219 272.09375 267.730469 271.976562 267.730469 C 271.859375 267.730469 271.765625 267.824219 271.765625 267.941406 C 271.765625 268.058594 271.859375 268.152344 271.976562 268.152344 C 272.09375 268.152344 272.1875 268.058594 272.1875 267.941406 Z M 272.1875 267.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.347656 269.578125 C 272.347656 269.460938 272.253906 269.367188 272.136719 269.367188 C 272.019531 269.367188 271.925781 269.460938 271.925781 269.578125 C 271.925781 269.695312 272.019531 269.789062 272.136719 269.789062 C 272.253906 269.789062 272.347656 269.695312 272.347656 269.578125 Z M 272.347656 269.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.925781 270.128906 C 273.925781 270.011719 273.832031 269.917969 273.714844 269.917969 C 273.597656 269.917969 273.503906 270.011719 273.503906 270.128906 C 273.503906 270.246094 273.597656 270.339844 273.714844 270.339844 C 273.832031 270.339844 273.925781 270.246094 273.925781 270.128906 Z M 273.925781 270.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.273438 269.882812 C 273.273438 269.765625 273.179688 269.671875 273.0625 269.671875 C 272.945312 269.671875 272.851562 269.765625 272.851562 269.882812 C 272.851562 270 272.945312 270.09375 273.0625 270.09375 C 273.179688 270.09375 273.273438 270 273.273438 269.882812 Z M 273.273438 269.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.910156 269.703125 C 273.910156 269.585938 273.816406 269.492188 273.699219 269.492188 C 273.582031 269.492188 273.488281 269.585938 273.488281 269.703125 C 273.488281 269.820312 273.582031 269.914062 273.699219 269.914062 C 273.816406 269.914062 273.910156 269.820312 273.910156 269.703125 Z M 273.910156 269.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.179688 268.175781 C 270.179688 268.058594 270.085938 267.964844 269.96875 267.964844 C 269.851562 267.964844 269.757812 268.058594 269.757812 268.175781 C 269.757812 268.292969 269.851562 268.386719 269.96875 268.386719 C 270.085938 268.386719 270.179688 268.292969 270.179688 268.175781 Z M 270.179688 268.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.769531 267.007812 C 266.769531 266.890625 266.675781 266.796875 266.558594 266.796875 C 266.441406 266.796875 266.347656 266.890625 266.347656 267.007812 C 266.347656 267.125 266.441406 267.21875 266.558594 267.21875 C 266.675781 267.21875 266.769531 267.125 266.769531 267.007812 Z M 266.769531 267.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.808594 269.289062 C 266.808594 269.171875 266.714844 269.078125 266.597656 269.078125 C 266.480469 269.078125 266.386719 269.171875 266.386719 269.289062 C 266.386719 269.40625 266.480469 269.5 266.597656 269.5 C 266.714844 269.5 266.808594 269.40625 266.808594 269.289062 Z M 266.808594 269.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.773438 273.71875 C 262.773438 273.601562 262.679688 273.507812 262.5625 273.507812 C 262.445312 273.507812 262.351562 273.601562 262.351562 273.71875 C 262.351562 273.835938 262.445312 273.929688 262.5625 273.929688 C 262.679688 273.929688 262.773438 273.835938 262.773438 273.71875 Z M 262.773438 273.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262 274.453125 C 262 274.335938 261.90625 274.242188 261.789062 274.242188 C 261.671875 274.242188 261.578125 274.335938 261.578125 274.453125 C 261.578125 274.570312 261.671875 274.664062 261.789062 274.664062 C 261.90625 274.664062 262 274.570312 262 274.453125 Z M 262 274.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.011719 271.097656 C 262.011719 270.980469 261.917969 270.886719 261.800781 270.886719 C 261.683594 270.886719 261.589844 270.980469 261.589844 271.097656 C 261.589844 271.214844 261.683594 271.308594 261.800781 271.308594 C 261.917969 271.308594 262.011719 271.214844 262.011719 271.097656 Z M 262.011719 271.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.648438 271.324219 C 261.648438 271.207031 261.554688 271.113281 261.4375 271.113281 C 261.320312 271.113281 261.226562 271.207031 261.226562 271.324219 C 261.226562 271.441406 261.320312 271.535156 261.4375 271.535156 C 261.554688 271.535156 261.648438 271.441406 261.648438 271.324219 Z M 261.648438 271.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.082031 270.15625 C 263.082031 270.039062 262.988281 269.945312 262.871094 269.945312 C 262.753906 269.945312 262.660156 270.039062 262.660156 270.15625 C 262.660156 270.273438 262.753906 270.367188 262.871094 270.367188 C 262.988281 270.367188 263.082031 270.273438 263.082031 270.15625 Z M 263.082031 270.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.335938 276.394531 C 264.335938 276.277344 264.242188 276.183594 264.125 276.183594 C 264.007812 276.183594 263.914062 276.277344 263.914062 276.394531 C 263.914062 276.511719 264.007812 276.605469 264.125 276.605469 C 264.242188 276.605469 264.335938 276.511719 264.335938 276.394531 Z M 264.335938 276.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.234375 276.070312 C 262.234375 275.953125 262.140625 275.859375 262.023438 275.859375 C 261.90625 275.859375 261.8125 275.953125 261.8125 276.070312 C 261.8125 276.1875 261.90625 276.28125 262.023438 276.28125 C 262.140625 276.28125 262.234375 276.1875 262.234375 276.070312 Z M 262.234375 276.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.785156 274.21875 C 260.785156 274.101562 260.691406 274.007812 260.574219 274.007812 C 260.457031 274.007812 260.363281 274.101562 260.363281 274.21875 C 260.363281 274.335938 260.457031 274.429688 260.574219 274.429688 C 260.691406 274.429688 260.785156 274.335938 260.785156 274.21875 Z M 260.785156 274.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.449219 270.480469 C 260.449219 270.363281 260.355469 270.269531 260.238281 270.269531 C 260.121094 270.269531 260.027344 270.363281 260.027344 270.480469 C 260.027344 270.597656 260.121094 270.691406 260.238281 270.691406 C 260.355469 270.691406 260.449219 270.597656 260.449219 270.480469 Z M 260.449219 270.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.867188 275.761719 C 258.867188 275.644531 258.773438 275.550781 258.65625 275.550781 C 258.539062 275.550781 258.445312 275.644531 258.445312 275.761719 C 258.445312 275.878906 258.539062 275.972656 258.65625 275.972656 C 258.773438 275.972656 258.867188 275.878906 258.867188 275.761719 Z M 258.867188 275.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.488281 275.558594 C 258.488281 275.441406 258.394531 275.347656 258.277344 275.347656 C 258.160156 275.347656 258.066406 275.441406 258.066406 275.558594 C 258.066406 275.675781 258.160156 275.769531 258.277344 275.769531 C 258.394531 275.769531 258.488281 275.675781 258.488281 275.558594 Z M 258.488281 275.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.261719 273.648438 C 260.261719 273.53125 260.167969 273.4375 260.050781 273.4375 C 259.933594 273.4375 259.839844 273.53125 259.839844 273.648438 C 259.839844 273.765625 259.933594 273.859375 260.050781 273.859375 C 260.167969 273.859375 260.261719 273.765625 260.261719 273.648438 Z M 260.261719 273.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.492188 275.410156 C 258.492188 275.292969 258.398438 275.199219 258.28125 275.199219 C 258.164062 275.199219 258.070312 275.292969 258.070312 275.410156 C 258.070312 275.527344 258.164062 275.621094 258.28125 275.621094 C 258.398438 275.621094 258.492188 275.527344 258.492188 275.410156 Z M 258.492188 275.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.191406 271.691406 C 257.191406 271.574219 257.097656 271.480469 256.980469 271.480469 C 256.863281 271.480469 256.769531 271.574219 256.769531 271.691406 C 256.769531 271.808594 256.863281 271.902344 256.980469 271.902344 C 257.097656 271.902344 257.191406 271.808594 257.191406 271.691406 Z M 257.191406 271.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.308594 267.5625 C 259.308594 267.445312 259.214844 267.351562 259.097656 267.351562 C 258.980469 267.351562 258.886719 267.445312 258.886719 267.5625 C 258.886719 267.679688 258.980469 267.773438 259.097656 267.773438 C 259.214844 267.773438 259.308594 267.679688 259.308594 267.5625 Z M 259.308594 267.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.921875 266.925781 C 259.921875 266.808594 259.828125 266.714844 259.710938 266.714844 C 259.59375 266.714844 259.5 266.808594 259.5 266.925781 C 259.5 267.042969 259.59375 267.136719 259.710938 267.136719 C 259.828125 267.136719 259.921875 267.042969 259.921875 266.925781 Z M 259.921875 266.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.402344 265.300781 C 256.402344 265.183594 256.308594 265.089844 256.191406 265.089844 C 256.074219 265.089844 255.980469 265.183594 255.980469 265.300781 C 255.980469 265.417969 256.074219 265.511719 256.191406 265.511719 C 256.308594 265.511719 256.402344 265.417969 256.402344 265.300781 Z M 256.402344 265.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.484375 265.421875 C 256.484375 265.304688 256.390625 265.210938 256.273438 265.210938 C 256.15625 265.210938 256.0625 265.304688 256.0625 265.421875 C 256.0625 265.539062 256.15625 265.632812 256.273438 265.632812 C 256.390625 265.632812 256.484375 265.539062 256.484375 265.421875 Z M 256.484375 265.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.347656 265.261719 C 255.347656 265.144531 255.253906 265.050781 255.136719 265.050781 C 255.019531 265.050781 254.925781 265.144531 254.925781 265.261719 C 254.925781 265.378906 255.019531 265.472656 255.136719 265.472656 C 255.253906 265.472656 255.347656 265.378906 255.347656 265.261719 Z M 255.347656 265.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.863281 265.035156 C 254.863281 264.917969 254.769531 264.824219 254.652344 264.824219 C 254.535156 264.824219 254.441406 264.917969 254.441406 265.035156 C 254.441406 265.152344 254.535156 265.246094 254.652344 265.246094 C 254.769531 265.246094 254.863281 265.152344 254.863281 265.035156 Z M 254.863281 265.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.945312 266.054688 C 248.945312 265.9375 248.851562 265.84375 248.734375 265.84375 C 248.617188 265.84375 248.523438 265.9375 248.523438 266.054688 C 248.523438 266.171875 248.617188 266.265625 248.734375 266.265625 C 248.851562 266.265625 248.945312 266.171875 248.945312 266.054688 Z M 248.945312 266.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.355469 263.34375 C 249.355469 263.226562 249.261719 263.132812 249.144531 263.132812 C 249.027344 263.132812 248.933594 263.226562 248.933594 263.34375 C 248.933594 263.460938 249.027344 263.554688 249.144531 263.554688 C 249.261719 263.554688 249.355469 263.460938 249.355469 263.34375 Z M 249.355469 263.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.085938 262.738281 C 251.085938 262.621094 250.992188 262.527344 250.875 262.527344 C 250.757812 262.527344 250.664062 262.621094 250.664062 262.738281 C 250.664062 262.855469 250.757812 262.949219 250.875 262.949219 C 250.992188 262.949219 251.085938 262.855469 251.085938 262.738281 Z M 251.085938 262.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.476562 264.839844 C 249.476562 264.722656 249.382812 264.628906 249.265625 264.628906 C 249.148438 264.628906 249.054688 264.722656 249.054688 264.839844 C 249.054688 264.957031 249.148438 265.050781 249.265625 265.050781 C 249.382812 265.050781 249.476562 264.957031 249.476562 264.839844 Z M 249.476562 264.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.152344 267.3125 C 249.152344 267.195312 249.058594 267.101562 248.941406 267.101562 C 248.824219 267.101562 248.730469 267.195312 248.730469 267.3125 C 248.730469 267.429688 248.824219 267.523438 248.941406 267.523438 C 249.058594 267.523438 249.152344 267.429688 249.152344 267.3125 Z M 249.152344 267.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.441406 268.0625 C 249.441406 267.945312 249.347656 267.851562 249.230469 267.851562 C 249.113281 267.851562 249.019531 267.945312 249.019531 268.0625 C 249.019531 268.179688 249.113281 268.273438 249.230469 268.273438 C 249.347656 268.273438 249.441406 268.179688 249.441406 268.0625 Z M 249.441406 268.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.140625 267.945312 C 247.140625 267.828125 247.046875 267.734375 246.929688 267.734375 C 246.8125 267.734375 246.71875 267.828125 246.71875 267.945312 C 246.71875 268.0625 246.8125 268.15625 246.929688 268.15625 C 247.046875 268.15625 247.140625 268.0625 247.140625 267.945312 Z M 247.140625 267.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.355469 269.085938 C 248.355469 268.96875 248.261719 268.875 248.144531 268.875 C 248.027344 268.875 247.933594 268.96875 247.933594 269.085938 C 247.933594 269.203125 248.027344 269.296875 248.144531 269.296875 C 248.261719 269.296875 248.355469 269.203125 248.355469 269.085938 Z M 248.355469 269.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.980469 268.679688 C 243.980469 268.5625 243.886719 268.46875 243.769531 268.46875 C 243.652344 268.46875 243.558594 268.5625 243.558594 268.679688 C 243.558594 268.796875 243.652344 268.890625 243.769531 268.890625 C 243.886719 268.890625 243.980469 268.796875 243.980469 268.679688 Z M 243.980469 268.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.882812 267.371094 C 242.882812 267.253906 242.789062 267.160156 242.671875 267.160156 C 242.554688 267.160156 242.460938 267.253906 242.460938 267.371094 C 242.460938 267.488281 242.554688 267.582031 242.671875 267.582031 C 242.789062 267.582031 242.882812 267.488281 242.882812 267.371094 Z M 242.882812 267.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.625 270.546875 C 244.625 270.429688 244.53125 270.335938 244.414062 270.335938 C 244.296875 270.335938 244.203125 270.429688 244.203125 270.546875 C 244.203125 270.664062 244.296875 270.757812 244.414062 270.757812 C 244.53125 270.757812 244.625 270.664062 244.625 270.546875 Z M 244.625 270.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.933594 271.84375 C 244.933594 271.726562 244.839844 271.632812 244.722656 271.632812 C 244.605469 271.632812 244.511719 271.726562 244.511719 271.84375 C 244.511719 271.960938 244.605469 272.054688 244.722656 272.054688 C 244.839844 272.054688 244.933594 271.960938 244.933594 271.84375 Z M 244.933594 271.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.199219 269.214844 C 243.199219 269.097656 243.105469 269.003906 242.988281 269.003906 C 242.871094 269.003906 242.777344 269.097656 242.777344 269.214844 C 242.777344 269.332031 242.871094 269.425781 242.988281 269.425781 C 243.105469 269.425781 243.199219 269.332031 243.199219 269.214844 Z M 243.199219 269.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.667969 273.332031 C 243.667969 273.214844 243.574219 273.121094 243.457031 273.121094 C 243.339844 273.121094 243.246094 273.214844 243.246094 273.332031 C 243.246094 273.449219 243.339844 273.542969 243.457031 273.542969 C 243.574219 273.542969 243.667969 273.449219 243.667969 273.332031 Z M 243.667969 273.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.5 275.925781 C 238.5 275.808594 238.40625 275.714844 238.289062 275.714844 C 238.171875 275.714844 238.078125 275.808594 238.078125 275.925781 C 238.078125 276.042969 238.171875 276.136719 238.289062 276.136719 C 238.40625 276.136719 238.5 276.042969 238.5 275.925781 Z M 238.5 275.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.5625 275.550781 C 237.5625 275.433594 237.46875 275.339844 237.351562 275.339844 C 237.234375 275.339844 237.140625 275.433594 237.140625 275.550781 C 237.140625 275.667969 237.234375 275.761719 237.351562 275.761719 C 237.46875 275.761719 237.5625 275.667969 237.5625 275.550781 Z M 237.5625 275.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.035156 273.25 C 236.035156 273.132812 235.941406 273.039062 235.824219 273.039062 C 235.707031 273.039062 235.613281 273.132812 235.613281 273.25 C 235.613281 273.367188 235.707031 273.460938 235.824219 273.460938 C 235.941406 273.460938 236.035156 273.367188 236.035156 273.25 Z M 236.035156 273.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.953125 270.753906 C 237.953125 270.636719 237.859375 270.542969 237.742188 270.542969 C 237.625 270.542969 237.53125 270.636719 237.53125 270.753906 C 237.53125 270.871094 237.625 270.964844 237.742188 270.964844 C 237.859375 270.964844 237.953125 270.871094 237.953125 270.753906 Z M 237.953125 270.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.695312 270.269531 C 237.695312 270.152344 237.601562 270.058594 237.484375 270.058594 C 237.367188 270.058594 237.273438 270.152344 237.273438 270.269531 C 237.273438 270.386719 237.367188 270.480469 237.484375 270.480469 C 237.601562 270.480469 237.695312 270.386719 237.695312 270.269531 Z M 237.695312 270.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.523438 271.277344 C 240.523438 271.160156 240.429688 271.066406 240.3125 271.066406 C 240.195312 271.066406 240.101562 271.160156 240.101562 271.277344 C 240.101562 271.394531 240.195312 271.488281 240.3125 271.488281 C 240.429688 271.488281 240.523438 271.394531 240.523438 271.277344 Z M 240.523438 271.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.695312 272.359375 C 238.695312 272.242188 238.601562 272.148438 238.484375 272.148438 C 238.367188 272.148438 238.273438 272.242188 238.273438 272.359375 C 238.273438 272.476562 238.367188 272.570312 238.484375 272.570312 C 238.601562 272.570312 238.695312 272.476562 238.695312 272.359375 Z M 238.695312 272.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.195312 273.3125 C 244.195312 273.195312 244.101562 273.101562 243.984375 273.101562 C 243.867188 273.101562 243.773438 273.195312 243.773438 273.3125 C 243.773438 273.429688 243.867188 273.523438 243.984375 273.523438 C 244.101562 273.523438 244.195312 273.429688 244.195312 273.3125 Z M 244.195312 273.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.628906 274.839844 C 242.628906 274.722656 242.535156 274.628906 242.417969 274.628906 C 242.300781 274.628906 242.207031 274.722656 242.207031 274.839844 C 242.207031 274.957031 242.300781 275.050781 242.417969 275.050781 C 242.535156 275.050781 242.628906 274.957031 242.628906 274.839844 Z M 242.628906 274.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.269531 271.058594 C 244.269531 270.941406 244.175781 270.847656 244.058594 270.847656 C 243.941406 270.847656 243.847656 270.941406 243.847656 271.058594 C 243.847656 271.175781 243.941406 271.269531 244.058594 271.269531 C 244.175781 271.269531 244.269531 271.175781 244.269531 271.058594 Z M 244.269531 271.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.707031 271.023438 C 244.707031 270.90625 244.613281 270.8125 244.496094 270.8125 C 244.378906 270.8125 244.285156 270.90625 244.285156 271.023438 C 244.285156 271.140625 244.378906 271.234375 244.496094 271.234375 C 244.613281 271.234375 244.707031 271.140625 244.707031 271.023438 Z M 244.707031 271.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.148438 273.328125 C 242.148438 273.210938 242.054688 273.117188 241.9375 273.117188 C 241.820312 273.117188 241.726562 273.210938 241.726562 273.328125 C 241.726562 273.445312 241.820312 273.539062 241.9375 273.539062 C 242.054688 273.539062 242.148438 273.445312 242.148438 273.328125 Z M 242.148438 273.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.183594 276.328125 C 243.183594 276.210938 243.089844 276.117188 242.972656 276.117188 C 242.855469 276.117188 242.761719 276.210938 242.761719 276.328125 C 242.761719 276.445312 242.855469 276.539062 242.972656 276.539062 C 243.089844 276.539062 243.183594 276.445312 243.183594 276.328125 Z M 243.183594 276.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.417969 278.179688 C 242.417969 278.0625 242.324219 277.96875 242.207031 277.96875 C 242.089844 277.96875 241.996094 278.0625 241.996094 278.179688 C 241.996094 278.296875 242.089844 278.390625 242.207031 278.390625 C 242.324219 278.390625 242.417969 278.296875 242.417969 278.179688 Z M 242.417969 278.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.816406 276.933594 C 238.816406 276.816406 238.722656 276.722656 238.605469 276.722656 C 238.488281 276.722656 238.394531 276.816406 238.394531 276.933594 C 238.394531 277.050781 238.488281 277.144531 238.605469 277.144531 C 238.722656 277.144531 238.816406 277.050781 238.816406 276.933594 Z M 238.816406 276.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.035156 273.488281 C 238.035156 273.371094 237.941406 273.277344 237.824219 273.277344 C 237.707031 273.277344 237.613281 273.371094 237.613281 273.488281 C 237.613281 273.605469 237.707031 273.699219 237.824219 273.699219 C 237.941406 273.699219 238.035156 273.605469 238.035156 273.488281 Z M 238.035156 273.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.917969 274.378906 C 240.917969 274.261719 240.824219 274.167969 240.707031 274.167969 C 240.589844 274.167969 240.496094 274.261719 240.496094 274.378906 C 240.496094 274.496094 240.589844 274.589844 240.707031 274.589844 C 240.824219 274.589844 240.917969 274.496094 240.917969 274.378906 Z M 240.917969 274.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.320312 273.394531 C 242.320312 273.277344 242.226562 273.183594 242.109375 273.183594 C 241.992188 273.183594 241.898438 273.277344 241.898438 273.394531 C 241.898438 273.511719 241.992188 273.605469 242.109375 273.605469 C 242.226562 273.605469 242.320312 273.511719 242.320312 273.394531 Z M 242.320312 273.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.179688 278.765625 C 241.179688 278.648438 241.085938 278.554688 240.96875 278.554688 C 240.851562 278.554688 240.757812 278.648438 240.757812 278.765625 C 240.757812 278.882812 240.851562 278.976562 240.96875 278.976562 C 241.085938 278.976562 241.179688 278.882812 241.179688 278.765625 Z M 241.179688 278.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.632812 277.664062 C 238.632812 277.546875 238.539062 277.453125 238.421875 277.453125 C 238.304688 277.453125 238.210938 277.546875 238.210938 277.664062 C 238.210938 277.78125 238.304688 277.875 238.421875 277.875 C 238.539062 277.875 238.632812 277.78125 238.632812 277.664062 Z M 238.632812 277.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.679688 277 C 241.679688 276.882812 241.585938 276.789062 241.46875 276.789062 C 241.351562 276.789062 241.257812 276.882812 241.257812 277 C 241.257812 277.117188 241.351562 277.210938 241.46875 277.210938 C 241.585938 277.210938 241.679688 277.117188 241.679688 277 Z M 241.679688 277 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.40625 278.152344 C 241.40625 278.035156 241.3125 277.941406 241.195312 277.941406 C 241.078125 277.941406 240.984375 278.035156 240.984375 278.152344 C 240.984375 278.269531 241.078125 278.363281 241.195312 278.363281 C 241.3125 278.363281 241.40625 278.269531 241.40625 278.152344 Z M 241.40625 278.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.074219 275.890625 C 244.074219 275.773438 243.980469 275.679688 243.863281 275.679688 C 243.746094 275.679688 243.652344 275.773438 243.652344 275.890625 C 243.652344 276.007812 243.746094 276.101562 243.863281 276.101562 C 243.980469 276.101562 244.074219 276.007812 244.074219 275.890625 Z M 244.074219 275.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.84375 278.210938 C 246.84375 278.09375 246.75 278 246.632812 278 C 246.515625 278 246.421875 278.09375 246.421875 278.210938 C 246.421875 278.328125 246.515625 278.421875 246.632812 278.421875 C 246.75 278.421875 246.84375 278.328125 246.84375 278.210938 Z M 246.84375 278.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.449219 274.929688 C 246.449219 274.8125 246.355469 274.71875 246.238281 274.71875 C 246.121094 274.71875 246.027344 274.8125 246.027344 274.929688 C 246.027344 275.046875 246.121094 275.140625 246.238281 275.140625 C 246.355469 275.140625 246.449219 275.046875 246.449219 274.929688 Z M 246.449219 274.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.980469 274.476562 C 240.980469 274.359375 240.886719 274.265625 240.769531 274.265625 C 240.652344 274.265625 240.558594 274.359375 240.558594 274.476562 C 240.558594 274.59375 240.652344 274.6875 240.769531 274.6875 C 240.886719 274.6875 240.980469 274.59375 240.980469 274.476562 Z M 240.980469 274.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.773438 273.828125 C 243.773438 273.710938 243.679688 273.617188 243.5625 273.617188 C 243.445312 273.617188 243.351562 273.710938 243.351562 273.828125 C 243.351562 273.945312 243.445312 274.039062 243.5625 274.039062 C 243.679688 274.039062 243.773438 273.945312 243.773438 273.828125 Z M 243.773438 273.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.445312 272.730469 C 242.445312 272.613281 242.351562 272.519531 242.234375 272.519531 C 242.117188 272.519531 242.023438 272.613281 242.023438 272.730469 C 242.023438 272.847656 242.117188 272.941406 242.234375 272.941406 C 242.351562 272.941406 242.445312 272.847656 242.445312 272.730469 Z M 242.445312 272.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.746094 272.613281 C 242.746094 272.496094 242.652344 272.402344 242.535156 272.402344 C 242.417969 272.402344 242.324219 272.496094 242.324219 272.613281 C 242.324219 272.730469 242.417969 272.824219 242.535156 272.824219 C 242.652344 272.824219 242.746094 272.730469 242.746094 272.613281 Z M 242.746094 272.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.855469 273.488281 C 241.855469 273.371094 241.761719 273.277344 241.644531 273.277344 C 241.527344 273.277344 241.433594 273.371094 241.433594 273.488281 C 241.433594 273.605469 241.527344 273.699219 241.644531 273.699219 C 241.761719 273.699219 241.855469 273.605469 241.855469 273.488281 Z M 241.855469 273.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.007812 270.671875 C 242.007812 270.554688 241.914062 270.460938 241.796875 270.460938 C 241.679688 270.460938 241.585938 270.554688 241.585938 270.671875 C 241.585938 270.789062 241.679688 270.882812 241.796875 270.882812 C 241.914062 270.882812 242.007812 270.789062 242.007812 270.671875 Z M 242.007812 270.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.945312 268.132812 C 240.945312 268.015625 240.851562 267.921875 240.734375 267.921875 C 240.617188 267.921875 240.523438 268.015625 240.523438 268.132812 C 240.523438 268.25 240.617188 268.34375 240.734375 268.34375 C 240.851562 268.34375 240.945312 268.25 240.945312 268.132812 Z M 240.945312 268.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.394531 267.066406 C 241.394531 266.949219 241.300781 266.855469 241.183594 266.855469 C 241.066406 266.855469 240.972656 266.949219 240.972656 267.066406 C 240.972656 267.183594 241.066406 267.277344 241.183594 267.277344 C 241.300781 267.277344 241.394531 267.183594 241.394531 267.066406 Z M 241.394531 267.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.738281 271.003906 C 242.738281 270.886719 242.644531 270.792969 242.527344 270.792969 C 242.410156 270.792969 242.316406 270.886719 242.316406 271.003906 C 242.316406 271.121094 242.410156 271.214844 242.527344 271.214844 C 242.644531 271.214844 242.738281 271.121094 242.738281 271.003906 Z M 242.738281 271.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.859375 267.914062 C 242.859375 267.796875 242.765625 267.703125 242.648438 267.703125 C 242.53125 267.703125 242.4375 267.796875 242.4375 267.914062 C 242.4375 268.03125 242.53125 268.125 242.648438 268.125 C 242.765625 268.125 242.859375 268.03125 242.859375 267.914062 Z M 242.859375 267.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.144531 269.304688 C 240.144531 269.1875 240.050781 269.09375 239.933594 269.09375 C 239.816406 269.09375 239.722656 269.1875 239.722656 269.304688 C 239.722656 269.421875 239.816406 269.515625 239.933594 269.515625 C 240.050781 269.515625 240.144531 269.421875 240.144531 269.304688 Z M 240.144531 269.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.878906 268.15625 C 240.878906 268.039062 240.785156 267.945312 240.667969 267.945312 C 240.550781 267.945312 240.457031 268.039062 240.457031 268.15625 C 240.457031 268.273438 240.550781 268.367188 240.667969 268.367188 C 240.785156 268.367188 240.878906 268.273438 240.878906 268.15625 Z M 240.878906 268.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.332031 267.28125 C 241.332031 267.164062 241.238281 267.070312 241.121094 267.070312 C 241.003906 267.070312 240.910156 267.164062 240.910156 267.28125 C 240.910156 267.398438 241.003906 267.492188 241.121094 267.492188 C 241.238281 267.492188 241.332031 267.398438 241.332031 267.28125 Z M 241.332031 267.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.449219 266.445312 C 243.449219 266.328125 243.355469 266.234375 243.238281 266.234375 C 243.121094 266.234375 243.027344 266.328125 243.027344 266.445312 C 243.027344 266.5625 243.121094 266.65625 243.238281 266.65625 C 243.355469 266.65625 243.449219 266.5625 243.449219 266.445312 Z M 243.449219 266.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.804688 266.207031 C 240.804688 266.089844 240.710938 265.996094 240.59375 265.996094 C 240.476562 265.996094 240.382812 266.089844 240.382812 266.207031 C 240.382812 266.324219 240.476562 266.417969 240.59375 266.417969 C 240.710938 266.417969 240.804688 266.324219 240.804688 266.207031 Z M 240.804688 266.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.714844 267.792969 C 242.714844 267.675781 242.621094 267.582031 242.503906 267.582031 C 242.386719 267.582031 242.292969 267.675781 242.292969 267.792969 C 242.292969 267.910156 242.386719 268.003906 242.503906 268.003906 C 242.621094 268.003906 242.714844 267.910156 242.714844 267.792969 Z M 242.714844 267.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.859375 268.238281 C 244.859375 268.121094 244.765625 268.027344 244.648438 268.027344 C 244.53125 268.027344 244.4375 268.121094 244.4375 268.238281 C 244.4375 268.355469 244.53125 268.449219 244.648438 268.449219 C 244.765625 268.449219 244.859375 268.355469 244.859375 268.238281 Z M 244.859375 268.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.285156 268.203125 C 243.285156 268.085938 243.191406 267.992188 243.074219 267.992188 C 242.957031 267.992188 242.863281 268.085938 242.863281 268.203125 C 242.863281 268.320312 242.957031 268.414062 243.074219 268.414062 C 243.191406 268.414062 243.285156 268.320312 243.285156 268.203125 Z M 243.285156 268.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.246094 265.6875 C 245.246094 265.570312 245.152344 265.476562 245.035156 265.476562 C 244.917969 265.476562 244.824219 265.570312 244.824219 265.6875 C 244.824219 265.804688 244.917969 265.898438 245.035156 265.898438 C 245.152344 265.898438 245.246094 265.804688 245.246094 265.6875 Z M 245.246094 265.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.070312 265.320312 C 246.070312 265.203125 245.976562 265.109375 245.859375 265.109375 C 245.742188 265.109375 245.648438 265.203125 245.648438 265.320312 C 245.648438 265.4375 245.742188 265.53125 245.859375 265.53125 C 245.976562 265.53125 246.070312 265.4375 246.070312 265.320312 Z M 246.070312 265.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.304688 263.441406 C 245.304688 263.324219 245.210938 263.230469 245.09375 263.230469 C 244.976562 263.230469 244.882812 263.324219 244.882812 263.441406 C 244.882812 263.558594 244.976562 263.652344 245.09375 263.652344 C 245.210938 263.652344 245.304688 263.558594 245.304688 263.441406 Z M 245.304688 263.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.746094 263.417969 C 243.746094 263.300781 243.652344 263.207031 243.535156 263.207031 C 243.417969 263.207031 243.324219 263.300781 243.324219 263.417969 C 243.324219 263.535156 243.417969 263.628906 243.535156 263.628906 C 243.652344 263.628906 243.746094 263.535156 243.746094 263.417969 Z M 243.746094 263.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.738281 261.582031 C 245.738281 261.464844 245.644531 261.371094 245.527344 261.371094 C 245.410156 261.371094 245.316406 261.464844 245.316406 261.582031 C 245.316406 261.699219 245.410156 261.792969 245.527344 261.792969 C 245.644531 261.792969 245.738281 261.699219 245.738281 261.582031 Z M 245.738281 261.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.59375 264.722656 C 243.59375 264.605469 243.5 264.511719 243.382812 264.511719 C 243.265625 264.511719 243.171875 264.605469 243.171875 264.722656 C 243.171875 264.839844 243.265625 264.933594 243.382812 264.933594 C 243.5 264.933594 243.59375 264.839844 243.59375 264.722656 Z M 243.59375 264.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.15625 264.949219 C 246.15625 264.832031 246.0625 264.738281 245.945312 264.738281 C 245.828125 264.738281 245.734375 264.832031 245.734375 264.949219 C 245.734375 265.066406 245.828125 265.160156 245.945312 265.160156 C 246.0625 265.160156 246.15625 265.066406 246.15625 264.949219 Z M 246.15625 264.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.699219 266.71875 C 245.699219 266.601562 245.605469 266.507812 245.488281 266.507812 C 245.371094 266.507812 245.277344 266.601562 245.277344 266.71875 C 245.277344 266.835938 245.371094 266.929688 245.488281 266.929688 C 245.605469 266.929688 245.699219 266.835938 245.699219 266.71875 Z M 245.699219 266.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.300781 265.707031 C 246.300781 265.589844 246.207031 265.496094 246.089844 265.496094 C 245.972656 265.496094 245.878906 265.589844 245.878906 265.707031 C 245.878906 265.824219 245.972656 265.917969 246.089844 265.917969 C 246.207031 265.917969 246.300781 265.824219 246.300781 265.707031 Z M 246.300781 265.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.664062 269.09375 C 244.664062 268.976562 244.570312 268.882812 244.453125 268.882812 C 244.335938 268.882812 244.242188 268.976562 244.242188 269.09375 C 244.242188 269.210938 244.335938 269.304688 244.453125 269.304688 C 244.570312 269.304688 244.664062 269.210938 244.664062 269.09375 Z M 244.664062 269.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.074219 268.390625 C 246.074219 268.273438 245.980469 268.179688 245.863281 268.179688 C 245.746094 268.179688 245.652344 268.273438 245.652344 268.390625 C 245.652344 268.507812 245.746094 268.601562 245.863281 268.601562 C 245.980469 268.601562 246.074219 268.507812 246.074219 268.390625 Z M 246.074219 268.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.742188 271.765625 C 246.742188 271.648438 246.648438 271.554688 246.53125 271.554688 C 246.414062 271.554688 246.320312 271.648438 246.320312 271.765625 C 246.320312 271.882812 246.414062 271.976562 246.53125 271.976562 C 246.648438 271.976562 246.742188 271.882812 246.742188 271.765625 Z M 246.742188 271.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.832031 271.191406 C 243.832031 271.074219 243.738281 270.980469 243.621094 270.980469 C 243.503906 270.980469 243.410156 271.074219 243.410156 271.191406 C 243.410156 271.308594 243.503906 271.402344 243.621094 271.402344 C 243.738281 271.402344 243.832031 271.308594 243.832031 271.191406 Z M 243.832031 271.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.144531 272.363281 C 243.144531 272.246094 243.050781 272.152344 242.933594 272.152344 C 242.816406 272.152344 242.722656 272.246094 242.722656 272.363281 C 242.722656 272.480469 242.816406 272.574219 242.933594 272.574219 C 243.050781 272.574219 243.144531 272.480469 243.144531 272.363281 Z M 243.144531 272.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.699219 271.296875 C 243.699219 271.179688 243.605469 271.085938 243.488281 271.085938 C 243.371094 271.085938 243.277344 271.179688 243.277344 271.296875 C 243.277344 271.414062 243.371094 271.507812 243.488281 271.507812 C 243.605469 271.507812 243.699219 271.414062 243.699219 271.296875 Z M 243.699219 271.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.304688 271.625 C 242.304688 271.507812 242.210938 271.414062 242.09375 271.414062 C 241.976562 271.414062 241.882812 271.507812 241.882812 271.625 C 241.882812 271.742188 241.976562 271.835938 242.09375 271.835938 C 242.210938 271.835938 242.304688 271.742188 242.304688 271.625 Z M 242.304688 271.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.839844 269.589844 C 240.839844 269.472656 240.746094 269.378906 240.628906 269.378906 C 240.511719 269.378906 240.417969 269.472656 240.417969 269.589844 C 240.417969 269.707031 240.511719 269.800781 240.628906 269.800781 C 240.746094 269.800781 240.839844 269.707031 240.839844 269.589844 Z M 240.839844 269.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.042969 267.628906 C 240.042969 267.511719 239.949219 267.417969 239.832031 267.417969 C 239.714844 267.417969 239.621094 267.511719 239.621094 267.628906 C 239.621094 267.746094 239.714844 267.839844 239.832031 267.839844 C 239.949219 267.839844 240.042969 267.746094 240.042969 267.628906 Z M 240.042969 267.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.203125 267.402344 C 238.203125 267.285156 238.109375 267.191406 237.992188 267.191406 C 237.875 267.191406 237.78125 267.285156 237.78125 267.402344 C 237.78125 267.519531 237.875 267.613281 237.992188 267.613281 C 238.109375 267.613281 238.203125 267.519531 238.203125 267.402344 Z M 238.203125 267.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.785156 268.269531 C 235.785156 268.152344 235.691406 268.058594 235.574219 268.058594 C 235.457031 268.058594 235.363281 268.152344 235.363281 268.269531 C 235.363281 268.386719 235.457031 268.480469 235.574219 268.480469 C 235.691406 268.480469 235.785156 268.386719 235.785156 268.269531 Z M 235.785156 268.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.378906 267.925781 C 236.378906 267.808594 236.285156 267.714844 236.167969 267.714844 C 236.050781 267.714844 235.957031 267.808594 235.957031 267.925781 C 235.957031 268.042969 236.050781 268.136719 236.167969 268.136719 C 236.285156 268.136719 236.378906 268.042969 236.378906 267.925781 Z M 236.378906 267.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.941406 265.53125 C 235.941406 265.414062 235.847656 265.320312 235.730469 265.320312 C 235.613281 265.320312 235.519531 265.414062 235.519531 265.53125 C 235.519531 265.648438 235.613281 265.742188 235.730469 265.742188 C 235.847656 265.742188 235.941406 265.648438 235.941406 265.53125 Z M 235.941406 265.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.515625 267.417969 C 234.515625 267.300781 234.421875 267.207031 234.304688 267.207031 C 234.1875 267.207031 234.09375 267.300781 234.09375 267.417969 C 234.09375 267.535156 234.1875 267.628906 234.304688 267.628906 C 234.421875 267.628906 234.515625 267.535156 234.515625 267.417969 Z M 234.515625 267.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.59375 271.480469 C 232.59375 271.363281 232.5 271.269531 232.382812 271.269531 C 232.265625 271.269531 232.171875 271.363281 232.171875 271.480469 C 232.171875 271.597656 232.265625 271.691406 232.382812 271.691406 C 232.5 271.691406 232.59375 271.597656 232.59375 271.480469 Z M 232.59375 271.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.9375 272.230469 C 235.9375 272.113281 235.84375 272.019531 235.726562 272.019531 C 235.609375 272.019531 235.515625 272.113281 235.515625 272.230469 C 235.515625 272.347656 235.609375 272.441406 235.726562 272.441406 C 235.84375 272.441406 235.9375 272.347656 235.9375 272.230469 Z M 235.9375 272.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.542969 273.363281 C 233.542969 273.246094 233.449219 273.152344 233.332031 273.152344 C 233.214844 273.152344 233.121094 273.246094 233.121094 273.363281 C 233.121094 273.480469 233.214844 273.574219 233.332031 273.574219 C 233.449219 273.574219 233.542969 273.480469 233.542969 273.363281 Z M 233.542969 273.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.195312 270.335938 C 233.195312 270.21875 233.101562 270.125 232.984375 270.125 C 232.867188 270.125 232.773438 270.21875 232.773438 270.335938 C 232.773438 270.453125 232.867188 270.546875 232.984375 270.546875 C 233.101562 270.546875 233.195312 270.453125 233.195312 270.335938 Z M 233.195312 270.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.976562 272.261719 C 234.976562 272.144531 234.882812 272.050781 234.765625 272.050781 C 234.648438 272.050781 234.554688 272.144531 234.554688 272.261719 C 234.554688 272.378906 234.648438 272.472656 234.765625 272.472656 C 234.882812 272.472656 234.976562 272.378906 234.976562 272.261719 Z M 234.976562 272.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.6875 270.808594 C 234.6875 270.691406 234.59375 270.597656 234.476562 270.597656 C 234.359375 270.597656 234.265625 270.691406 234.265625 270.808594 C 234.265625 270.925781 234.359375 271.019531 234.476562 271.019531 C 234.59375 271.019531 234.6875 270.925781 234.6875 270.808594 Z M 234.6875 270.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.664062 271.589844 C 235.664062 271.472656 235.570312 271.378906 235.453125 271.378906 C 235.335938 271.378906 235.242188 271.472656 235.242188 271.589844 C 235.242188 271.707031 235.335938 271.800781 235.453125 271.800781 C 235.570312 271.800781 235.664062 271.707031 235.664062 271.589844 Z M 235.664062 271.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.207031 269.367188 C 236.207031 269.25 236.113281 269.15625 235.996094 269.15625 C 235.878906 269.15625 235.785156 269.25 235.785156 269.367188 C 235.785156 269.484375 235.878906 269.578125 235.996094 269.578125 C 236.113281 269.578125 236.207031 269.484375 236.207031 269.367188 Z M 236.207031 269.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.457031 268.597656 C 235.457031 268.480469 235.363281 268.386719 235.246094 268.386719 C 235.128906 268.386719 235.035156 268.480469 235.035156 268.597656 C 235.035156 268.714844 235.128906 268.808594 235.246094 268.808594 C 235.363281 268.808594 235.457031 268.714844 235.457031 268.597656 Z M 235.457031 268.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.96875 265.433594 C 237.96875 265.316406 237.875 265.222656 237.757812 265.222656 C 237.640625 265.222656 237.546875 265.316406 237.546875 265.433594 C 237.546875 265.550781 237.640625 265.644531 237.757812 265.644531 C 237.875 265.644531 237.96875 265.550781 237.96875 265.433594 Z M 237.96875 265.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.164062 264.933594 C 237.164062 264.816406 237.070312 264.722656 236.953125 264.722656 C 236.835938 264.722656 236.742188 264.816406 236.742188 264.933594 C 236.742188 265.050781 236.835938 265.144531 236.953125 265.144531 C 237.070312 265.144531 237.164062 265.050781 237.164062 264.933594 Z M 237.164062 264.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.308594 266.722656 C 238.308594 266.605469 238.214844 266.511719 238.097656 266.511719 C 237.980469 266.511719 237.886719 266.605469 237.886719 266.722656 C 237.886719 266.839844 237.980469 266.933594 238.097656 266.933594 C 238.214844 266.933594 238.308594 266.839844 238.308594 266.722656 Z M 238.308594 266.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.652344 263.804688 C 238.652344 263.6875 238.558594 263.59375 238.441406 263.59375 C 238.324219 263.59375 238.230469 263.6875 238.230469 263.804688 C 238.230469 263.921875 238.324219 264.015625 238.441406 264.015625 C 238.558594 264.015625 238.652344 263.921875 238.652344 263.804688 Z M 238.652344 263.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.117188 264.390625 C 240.117188 264.273438 240.023438 264.179688 239.90625 264.179688 C 239.789062 264.179688 239.695312 264.273438 239.695312 264.390625 C 239.695312 264.507812 239.789062 264.601562 239.90625 264.601562 C 240.023438 264.601562 240.117188 264.507812 240.117188 264.390625 Z M 240.117188 264.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.773438 266.335938 C 241.773438 266.21875 241.679688 266.125 241.5625 266.125 C 241.445312 266.125 241.351562 266.21875 241.351562 266.335938 C 241.351562 266.453125 241.445312 266.546875 241.5625 266.546875 C 241.679688 266.546875 241.773438 266.453125 241.773438 266.335938 Z M 241.773438 266.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.574219 268.460938 C 241.574219 268.34375 241.480469 268.25 241.363281 268.25 C 241.246094 268.25 241.152344 268.34375 241.152344 268.460938 C 241.152344 268.578125 241.246094 268.671875 241.363281 268.671875 C 241.480469 268.671875 241.574219 268.578125 241.574219 268.460938 Z M 241.574219 268.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.601562 266.964844 C 238.601562 266.847656 238.507812 266.753906 238.390625 266.753906 C 238.273438 266.753906 238.179688 266.847656 238.179688 266.964844 C 238.179688 267.082031 238.273438 267.175781 238.390625 267.175781 C 238.507812 267.175781 238.601562 267.082031 238.601562 266.964844 Z M 238.601562 266.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.691406 262.535156 C 235.691406 262.417969 235.597656 262.324219 235.480469 262.324219 C 235.363281 262.324219 235.269531 262.417969 235.269531 262.535156 C 235.269531 262.652344 235.363281 262.746094 235.480469 262.746094 C 235.597656 262.746094 235.691406 262.652344 235.691406 262.535156 Z M 235.691406 262.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.546875 263.246094 C 237.546875 263.128906 237.453125 263.035156 237.335938 263.035156 C 237.21875 263.035156 237.125 263.128906 237.125 263.246094 C 237.125 263.363281 237.21875 263.457031 237.335938 263.457031 C 237.453125 263.457031 237.546875 263.363281 237.546875 263.246094 Z M 237.546875 263.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.316406 260.128906 C 236.316406 260.011719 236.222656 259.917969 236.105469 259.917969 C 235.988281 259.917969 235.894531 260.011719 235.894531 260.128906 C 235.894531 260.246094 235.988281 260.339844 236.105469 260.339844 C 236.222656 260.339844 236.316406 260.246094 236.316406 260.128906 Z M 236.316406 260.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.789062 257.542969 C 237.789062 257.425781 237.695312 257.332031 237.578125 257.332031 C 237.460938 257.332031 237.367188 257.425781 237.367188 257.542969 C 237.367188 257.660156 237.460938 257.753906 237.578125 257.753906 C 237.695312 257.753906 237.789062 257.660156 237.789062 257.542969 Z M 237.789062 257.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.53125 256.738281 C 237.53125 256.621094 237.4375 256.527344 237.320312 256.527344 C 237.203125 256.527344 237.109375 256.621094 237.109375 256.738281 C 237.109375 256.855469 237.203125 256.949219 237.320312 256.949219 C 237.4375 256.949219 237.53125 256.855469 237.53125 256.738281 Z M 237.53125 256.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.210938 260.238281 C 237.210938 260.121094 237.117188 260.027344 237 260.027344 C 236.882812 260.027344 236.789062 260.121094 236.789062 260.238281 C 236.789062 260.355469 236.882812 260.449219 237 260.449219 C 237.117188 260.449219 237.210938 260.355469 237.210938 260.238281 Z M 237.210938 260.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.875 260.503906 C 234.875 260.386719 234.78125 260.292969 234.664062 260.292969 C 234.546875 260.292969 234.453125 260.386719 234.453125 260.503906 C 234.453125 260.621094 234.546875 260.714844 234.664062 260.714844 C 234.78125 260.714844 234.875 260.621094 234.875 260.503906 Z M 234.875 260.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.34375 260.101562 C 235.34375 259.984375 235.25 259.890625 235.132812 259.890625 C 235.015625 259.890625 234.921875 259.984375 234.921875 260.101562 C 234.921875 260.21875 235.015625 260.3125 235.132812 260.3125 C 235.25 260.3125 235.34375 260.21875 235.34375 260.101562 Z M 235.34375 260.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.910156 257.25 C 234.910156 257.132812 234.816406 257.039062 234.699219 257.039062 C 234.582031 257.039062 234.488281 257.132812 234.488281 257.25 C 234.488281 257.367188 234.582031 257.460938 234.699219 257.460938 C 234.816406 257.460938 234.910156 257.367188 234.910156 257.25 Z M 234.910156 257.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.441406 257.375 C 235.441406 257.257812 235.347656 257.164062 235.230469 257.164062 C 235.113281 257.164062 235.019531 257.257812 235.019531 257.375 C 235.019531 257.492188 235.113281 257.585938 235.230469 257.585938 C 235.347656 257.585938 235.441406 257.492188 235.441406 257.375 Z M 235.441406 257.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.339844 259.355469 C 237.339844 259.238281 237.246094 259.144531 237.128906 259.144531 C 237.011719 259.144531 236.917969 259.238281 236.917969 259.355469 C 236.917969 259.472656 237.011719 259.566406 237.128906 259.566406 C 237.246094 259.566406 237.339844 259.472656 237.339844 259.355469 Z M 237.339844 259.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.722656 258.78125 C 234.722656 258.664062 234.628906 258.570312 234.511719 258.570312 C 234.394531 258.570312 234.300781 258.664062 234.300781 258.78125 C 234.300781 258.898438 234.394531 258.992188 234.511719 258.992188 C 234.628906 258.992188 234.722656 258.898438 234.722656 258.78125 Z M 234.722656 258.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.902344 257.050781 C 230.902344 256.933594 230.808594 256.839844 230.691406 256.839844 C 230.574219 256.839844 230.480469 256.933594 230.480469 257.050781 C 230.480469 257.167969 230.574219 257.261719 230.691406 257.261719 C 230.808594 257.261719 230.902344 257.167969 230.902344 257.050781 Z M 230.902344 257.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.441406 256.535156 C 232.441406 256.417969 232.347656 256.324219 232.230469 256.324219 C 232.113281 256.324219 232.019531 256.417969 232.019531 256.535156 C 232.019531 256.652344 232.113281 256.746094 232.230469 256.746094 C 232.347656 256.746094 232.441406 256.652344 232.441406 256.535156 Z M 232.441406 256.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.714844 259.589844 C 234.714844 259.472656 234.621094 259.378906 234.503906 259.378906 C 234.386719 259.378906 234.292969 259.472656 234.292969 259.589844 C 234.292969 259.707031 234.386719 259.800781 234.503906 259.800781 C 234.621094 259.800781 234.714844 259.707031 234.714844 259.589844 Z M 234.714844 259.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.128906 262.234375 C 237.128906 262.117188 237.035156 262.023438 236.917969 262.023438 C 236.800781 262.023438 236.707031 262.117188 236.707031 262.234375 C 236.707031 262.351562 236.800781 262.445312 236.917969 262.445312 C 237.035156 262.445312 237.128906 262.351562 237.128906 262.234375 Z M 237.128906 262.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.292969 262.558594 C 238.292969 262.441406 238.199219 262.347656 238.082031 262.347656 C 237.964844 262.347656 237.871094 262.441406 237.871094 262.558594 C 237.871094 262.675781 237.964844 262.769531 238.082031 262.769531 C 238.199219 262.769531 238.292969 262.675781 238.292969 262.558594 Z M 238.292969 262.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.9375 260.171875 C 238.9375 260.054688 238.84375 259.960938 238.726562 259.960938 C 238.609375 259.960938 238.515625 260.054688 238.515625 260.171875 C 238.515625 260.289062 238.609375 260.382812 238.726562 260.382812 C 238.84375 260.382812 238.9375 260.289062 238.9375 260.171875 Z M 238.9375 260.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.523438 256.578125 C 237.523438 256.460938 237.429688 256.367188 237.3125 256.367188 C 237.195312 256.367188 237.101562 256.460938 237.101562 256.578125 C 237.101562 256.695312 237.195312 256.789062 237.3125 256.789062 C 237.429688 256.789062 237.523438 256.695312 237.523438 256.578125 Z M 237.523438 256.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.277344 258.597656 C 241.277344 258.480469 241.183594 258.386719 241.066406 258.386719 C 240.949219 258.386719 240.855469 258.480469 240.855469 258.597656 C 240.855469 258.714844 240.949219 258.808594 241.066406 258.808594 C 241.183594 258.808594 241.277344 258.714844 241.277344 258.597656 Z M 241.277344 258.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.535156 253.914062 C 240.535156 253.796875 240.441406 253.703125 240.324219 253.703125 C 240.207031 253.703125 240.113281 253.796875 240.113281 253.914062 C 240.113281 254.03125 240.207031 254.125 240.324219 254.125 C 240.441406 254.125 240.535156 254.03125 240.535156 253.914062 Z M 240.535156 253.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.535156 252.777344 C 240.535156 252.660156 240.441406 252.566406 240.324219 252.566406 C 240.207031 252.566406 240.113281 252.660156 240.113281 252.777344 C 240.113281 252.894531 240.207031 252.988281 240.324219 252.988281 C 240.441406 252.988281 240.535156 252.894531 240.535156 252.777344 Z M 240.535156 252.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.425781 251.308594 C 243.425781 251.191406 243.332031 251.097656 243.214844 251.097656 C 243.097656 251.097656 243.003906 251.191406 243.003906 251.308594 C 243.003906 251.425781 243.097656 251.519531 243.214844 251.519531 C 243.332031 251.519531 243.425781 251.425781 243.425781 251.308594 Z M 243.425781 251.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.339844 254.167969 C 241.339844 254.050781 241.246094 253.957031 241.128906 253.957031 C 241.011719 253.957031 240.917969 254.050781 240.917969 254.167969 C 240.917969 254.285156 241.011719 254.378906 241.128906 254.378906 C 241.246094 254.378906 241.339844 254.285156 241.339844 254.167969 Z M 241.339844 254.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.21875 253.074219 C 242.21875 252.957031 242.125 252.863281 242.007812 252.863281 C 241.890625 252.863281 241.796875 252.957031 241.796875 253.074219 C 241.796875 253.191406 241.890625 253.285156 242.007812 253.285156 C 242.125 253.285156 242.21875 253.191406 242.21875 253.074219 Z M 242.21875 253.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.203125 251.15625 C 242.203125 251.039062 242.109375 250.945312 241.992188 250.945312 C 241.875 250.945312 241.78125 251.039062 241.78125 251.15625 C 241.78125 251.273438 241.875 251.367188 241.992188 251.367188 C 242.109375 251.367188 242.203125 251.273438 242.203125 251.15625 Z M 242.203125 251.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.058594 253.003906 C 243.058594 252.886719 242.964844 252.792969 242.847656 252.792969 C 242.730469 252.792969 242.636719 252.886719 242.636719 253.003906 C 242.636719 253.121094 242.730469 253.214844 242.847656 253.214844 C 242.964844 253.214844 243.058594 253.121094 243.058594 253.003906 Z M 243.058594 253.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.0625 251.746094 C 242.0625 251.628906 241.96875 251.535156 241.851562 251.535156 C 241.734375 251.535156 241.640625 251.628906 241.640625 251.746094 C 241.640625 251.863281 241.734375 251.957031 241.851562 251.957031 C 241.96875 251.957031 242.0625 251.863281 242.0625 251.746094 Z M 242.0625 251.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.179688 249.746094 C 239.179688 249.628906 239.085938 249.535156 238.96875 249.535156 C 238.851562 249.535156 238.757812 249.628906 238.757812 249.746094 C 238.757812 249.863281 238.851562 249.957031 238.96875 249.957031 C 239.085938 249.957031 239.179688 249.863281 239.179688 249.746094 Z M 239.179688 249.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.304688 250.929688 C 241.304688 250.8125 241.210938 250.71875 241.09375 250.71875 C 240.976562 250.71875 240.882812 250.8125 240.882812 250.929688 C 240.882812 251.046875 240.976562 251.140625 241.09375 251.140625 C 241.210938 251.140625 241.304688 251.046875 241.304688 250.929688 Z M 241.304688 250.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.765625 250.582031 C 241.765625 250.464844 241.671875 250.371094 241.554688 250.371094 C 241.4375 250.371094 241.34375 250.464844 241.34375 250.582031 C 241.34375 250.699219 241.4375 250.792969 241.554688 250.792969 C 241.671875 250.792969 241.765625 250.699219 241.765625 250.582031 Z M 241.765625 250.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.660156 250.875 C 241.660156 250.757812 241.566406 250.664062 241.449219 250.664062 C 241.332031 250.664062 241.238281 250.757812 241.238281 250.875 C 241.238281 250.992188 241.332031 251.085938 241.449219 251.085938 C 241.566406 251.085938 241.660156 250.992188 241.660156 250.875 Z M 241.660156 250.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.769531 250.46875 C 243.769531 250.351562 243.675781 250.257812 243.558594 250.257812 C 243.441406 250.257812 243.347656 250.351562 243.347656 250.46875 C 243.347656 250.585938 243.441406 250.679688 243.558594 250.679688 C 243.675781 250.679688 243.769531 250.585938 243.769531 250.46875 Z M 243.769531 250.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.613281 252.152344 C 243.613281 252.035156 243.519531 251.941406 243.402344 251.941406 C 243.285156 251.941406 243.191406 252.035156 243.191406 252.152344 C 243.191406 252.269531 243.285156 252.363281 243.402344 252.363281 C 243.519531 252.363281 243.613281 252.269531 243.613281 252.152344 Z M 243.613281 252.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.140625 254.828125 C 240.140625 254.710938 240.046875 254.617188 239.929688 254.617188 C 239.8125 254.617188 239.71875 254.710938 239.71875 254.828125 C 239.71875 254.945312 239.8125 255.039062 239.929688 255.039062 C 240.046875 255.039062 240.140625 254.945312 240.140625 254.828125 Z M 240.140625 254.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.285156 253.910156 C 240.285156 253.792969 240.191406 253.699219 240.074219 253.699219 C 239.957031 253.699219 239.863281 253.792969 239.863281 253.910156 C 239.863281 254.027344 239.957031 254.121094 240.074219 254.121094 C 240.191406 254.121094 240.285156 254.027344 240.285156 253.910156 Z M 240.285156 253.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.679688 252.957031 C 239.679688 252.839844 239.585938 252.746094 239.46875 252.746094 C 239.351562 252.746094 239.257812 252.839844 239.257812 252.957031 C 239.257812 253.074219 239.351562 253.167969 239.46875 253.167969 C 239.585938 253.167969 239.679688 253.074219 239.679688 252.957031 Z M 239.679688 252.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.675781 254.878906 C 237.675781 254.761719 237.582031 254.667969 237.464844 254.667969 C 237.347656 254.667969 237.253906 254.761719 237.253906 254.878906 C 237.253906 254.996094 237.347656 255.089844 237.464844 255.089844 C 237.582031 255.089844 237.675781 254.996094 237.675781 254.878906 Z M 237.675781 254.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.015625 254.65625 C 235.015625 254.539062 234.921875 254.445312 234.804688 254.445312 C 234.6875 254.445312 234.59375 254.539062 234.59375 254.65625 C 234.59375 254.773438 234.6875 254.867188 234.804688 254.867188 C 234.921875 254.867188 235.015625 254.773438 235.015625 254.65625 Z M 235.015625 254.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.4375 259.621094 C 231.4375 259.503906 231.34375 259.410156 231.226562 259.410156 C 231.109375 259.410156 231.015625 259.503906 231.015625 259.621094 C 231.015625 259.738281 231.109375 259.832031 231.226562 259.832031 C 231.34375 259.832031 231.4375 259.738281 231.4375 259.621094 Z M 231.4375 259.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.980469 261.164062 C 225.980469 261.046875 225.886719 260.953125 225.769531 260.953125 C 225.652344 260.953125 225.558594 261.046875 225.558594 261.164062 C 225.558594 261.28125 225.652344 261.375 225.769531 261.375 C 225.886719 261.375 225.980469 261.28125 225.980469 261.164062 Z M 225.980469 261.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.230469 261.566406 C 226.230469 261.449219 226.136719 261.355469 226.019531 261.355469 C 225.902344 261.355469 225.808594 261.449219 225.808594 261.566406 C 225.808594 261.683594 225.902344 261.777344 226.019531 261.777344 C 226.136719 261.777344 226.230469 261.683594 226.230469 261.566406 Z M 226.230469 261.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.039062 263.476562 C 226.039062 263.359375 225.945312 263.265625 225.828125 263.265625 C 225.710938 263.265625 225.617188 263.359375 225.617188 263.476562 C 225.617188 263.59375 225.710938 263.6875 225.828125 263.6875 C 225.945312 263.6875 226.039062 263.59375 226.039062 263.476562 Z M 226.039062 263.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.070312 260.851562 C 228.070312 260.734375 227.976562 260.640625 227.859375 260.640625 C 227.742188 260.640625 227.648438 260.734375 227.648438 260.851562 C 227.648438 260.96875 227.742188 261.0625 227.859375 261.0625 C 227.976562 261.0625 228.070312 260.96875 228.070312 260.851562 Z M 228.070312 260.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.640625 256.730469 C 229.640625 256.613281 229.546875 256.519531 229.429688 256.519531 C 229.3125 256.519531 229.21875 256.613281 229.21875 256.730469 C 229.21875 256.847656 229.3125 256.941406 229.429688 256.941406 C 229.546875 256.941406 229.640625 256.847656 229.640625 256.730469 Z M 229.640625 256.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.367188 258.273438 C 228.367188 258.15625 228.273438 258.0625 228.15625 258.0625 C 228.039062 258.0625 227.945312 258.15625 227.945312 258.273438 C 227.945312 258.390625 228.039062 258.484375 228.15625 258.484375 C 228.273438 258.484375 228.367188 258.390625 228.367188 258.273438 Z M 228.367188 258.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.996094 256.679688 C 226.996094 256.5625 226.902344 256.46875 226.785156 256.46875 C 226.667969 256.46875 226.574219 256.5625 226.574219 256.679688 C 226.574219 256.796875 226.667969 256.890625 226.785156 256.890625 C 226.902344 256.890625 226.996094 256.796875 226.996094 256.679688 Z M 226.996094 256.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.242188 256.320312 C 231.242188 256.203125 231.148438 256.109375 231.03125 256.109375 C 230.914062 256.109375 230.820312 256.203125 230.820312 256.320312 C 230.820312 256.4375 230.914062 256.53125 231.03125 256.53125 C 231.148438 256.53125 231.242188 256.4375 231.242188 256.320312 Z M 231.242188 256.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.472656 254.121094 C 230.472656 254.003906 230.378906 253.910156 230.261719 253.910156 C 230.144531 253.910156 230.050781 254.003906 230.050781 254.121094 C 230.050781 254.238281 230.144531 254.332031 230.261719 254.332031 C 230.378906 254.332031 230.472656 254.238281 230.472656 254.121094 Z M 230.472656 254.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.109375 254.660156 C 230.109375 254.542969 230.015625 254.449219 229.898438 254.449219 C 229.78125 254.449219 229.6875 254.542969 229.6875 254.660156 C 229.6875 254.777344 229.78125 254.871094 229.898438 254.871094 C 230.015625 254.871094 230.109375 254.777344 230.109375 254.660156 Z M 230.109375 254.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.742188 254.882812 C 227.742188 254.765625 227.648438 254.671875 227.53125 254.671875 C 227.414062 254.671875 227.320312 254.765625 227.320312 254.882812 C 227.320312 255 227.414062 255.09375 227.53125 255.09375 C 227.648438 255.09375 227.742188 255 227.742188 254.882812 Z M 227.742188 254.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.988281 255.230469 C 227.988281 255.113281 227.894531 255.019531 227.777344 255.019531 C 227.660156 255.019531 227.566406 255.113281 227.566406 255.230469 C 227.566406 255.347656 227.660156 255.441406 227.777344 255.441406 C 227.894531 255.441406 227.988281 255.347656 227.988281 255.230469 Z M 227.988281 255.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.476562 252.542969 C 227.476562 252.425781 227.382812 252.332031 227.265625 252.332031 C 227.148438 252.332031 227.054688 252.425781 227.054688 252.542969 C 227.054688 252.660156 227.148438 252.753906 227.265625 252.753906 C 227.382812 252.753906 227.476562 252.660156 227.476562 252.542969 Z M 227.476562 252.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.292969 253.730469 C 230.292969 253.613281 230.199219 253.519531 230.082031 253.519531 C 229.964844 253.519531 229.871094 253.613281 229.871094 253.730469 C 229.871094 253.847656 229.964844 253.941406 230.082031 253.941406 C 230.199219 253.941406 230.292969 253.847656 230.292969 253.730469 Z M 230.292969 253.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.285156 251.808594 C 232.285156 251.691406 232.191406 251.597656 232.074219 251.597656 C 231.957031 251.597656 231.863281 251.691406 231.863281 251.808594 C 231.863281 251.925781 231.957031 252.019531 232.074219 252.019531 C 232.191406 252.019531 232.285156 251.925781 232.285156 251.808594 Z M 232.285156 251.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.671875 251.679688 C 235.671875 251.5625 235.578125 251.46875 235.460938 251.46875 C 235.34375 251.46875 235.25 251.5625 235.25 251.679688 C 235.25 251.796875 235.34375 251.890625 235.460938 251.890625 C 235.578125 251.890625 235.671875 251.796875 235.671875 251.679688 Z M 235.671875 251.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.253906 249.761719 C 234.253906 249.644531 234.160156 249.550781 234.042969 249.550781 C 233.925781 249.550781 233.832031 249.644531 233.832031 249.761719 C 233.832031 249.878906 233.925781 249.972656 234.042969 249.972656 C 234.160156 249.972656 234.253906 249.878906 234.253906 249.761719 Z M 234.253906 249.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.242188 249.605469 C 233.242188 249.488281 233.148438 249.394531 233.03125 249.394531 C 232.914062 249.394531 232.820312 249.488281 232.820312 249.605469 C 232.820312 249.722656 232.914062 249.816406 233.03125 249.816406 C 233.148438 249.816406 233.242188 249.722656 233.242188 249.605469 Z M 233.242188 249.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.835938 249.75 C 234.835938 249.632812 234.742188 249.539062 234.625 249.539062 C 234.507812 249.539062 234.414062 249.632812 234.414062 249.75 C 234.414062 249.867188 234.507812 249.960938 234.625 249.960938 C 234.742188 249.960938 234.835938 249.867188 234.835938 249.75 Z M 234.835938 249.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.371094 248.585938 C 230.371094 248.46875 230.277344 248.375 230.160156 248.375 C 230.042969 248.375 229.949219 248.46875 229.949219 248.585938 C 229.949219 248.703125 230.042969 248.796875 230.160156 248.796875 C 230.277344 248.796875 230.371094 248.703125 230.371094 248.585938 Z M 230.371094 248.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.875 248.578125 C 230.875 248.460938 230.78125 248.367188 230.664062 248.367188 C 230.546875 248.367188 230.453125 248.460938 230.453125 248.578125 C 230.453125 248.695312 230.546875 248.789062 230.664062 248.789062 C 230.78125 248.789062 230.875 248.695312 230.875 248.578125 Z M 230.875 248.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.539062 247.289062 C 233.539062 247.171875 233.445312 247.078125 233.328125 247.078125 C 233.210938 247.078125 233.117188 247.171875 233.117188 247.289062 C 233.117188 247.40625 233.210938 247.5 233.328125 247.5 C 233.445312 247.5 233.539062 247.40625 233.539062 247.289062 Z M 233.539062 247.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.183594 246.734375 C 231.183594 246.617188 231.089844 246.523438 230.972656 246.523438 C 230.855469 246.523438 230.761719 246.617188 230.761719 246.734375 C 230.761719 246.851562 230.855469 246.945312 230.972656 246.945312 C 231.089844 246.945312 231.183594 246.851562 231.183594 246.734375 Z M 231.183594 246.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.328125 247.84375 C 230.328125 247.726562 230.234375 247.632812 230.117188 247.632812 C 230 247.632812 229.90625 247.726562 229.90625 247.84375 C 229.90625 247.960938 230 248.054688 230.117188 248.054688 C 230.234375 248.054688 230.328125 247.960938 230.328125 247.84375 Z M 230.328125 247.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.902344 249.574219 C 230.902344 249.457031 230.808594 249.363281 230.691406 249.363281 C 230.574219 249.363281 230.480469 249.457031 230.480469 249.574219 C 230.480469 249.691406 230.574219 249.785156 230.691406 249.785156 C 230.808594 249.785156 230.902344 249.691406 230.902344 249.574219 Z M 230.902344 249.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.355469 245.390625 C 230.355469 245.273438 230.261719 245.179688 230.144531 245.179688 C 230.027344 245.179688 229.933594 245.273438 229.933594 245.390625 C 229.933594 245.507812 230.027344 245.601562 230.144531 245.601562 C 230.261719 245.601562 230.355469 245.507812 230.355469 245.390625 Z M 230.355469 245.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.988281 245.769531 C 228.988281 245.652344 228.894531 245.558594 228.777344 245.558594 C 228.660156 245.558594 228.566406 245.652344 228.566406 245.769531 C 228.566406 245.886719 228.660156 245.980469 228.777344 245.980469 C 228.894531 245.980469 228.988281 245.886719 228.988281 245.769531 Z M 228.988281 245.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.363281 246.042969 C 225.363281 245.925781 225.269531 245.832031 225.152344 245.832031 C 225.035156 245.832031 224.941406 245.925781 224.941406 246.042969 C 224.941406 246.160156 225.035156 246.253906 225.152344 246.253906 C 225.269531 246.253906 225.363281 246.160156 225.363281 246.042969 Z M 225.363281 246.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.175781 247.210938 C 229.175781 247.09375 229.082031 247 228.964844 247 C 228.847656 247 228.753906 247.09375 228.753906 247.210938 C 228.753906 247.328125 228.847656 247.421875 228.964844 247.421875 C 229.082031 247.421875 229.175781 247.328125 229.175781 247.210938 Z M 229.175781 247.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.820312 247.238281 C 232.820312 247.121094 232.726562 247.027344 232.609375 247.027344 C 232.492188 247.027344 232.398438 247.121094 232.398438 247.238281 C 232.398438 247.355469 232.492188 247.449219 232.609375 247.449219 C 232.726562 247.449219 232.820312 247.355469 232.820312 247.238281 Z M 232.820312 247.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.136719 248.714844 C 231.136719 248.597656 231.042969 248.503906 230.925781 248.503906 C 230.808594 248.503906 230.714844 248.597656 230.714844 248.714844 C 230.714844 248.832031 230.808594 248.925781 230.925781 248.925781 C 231.042969 248.925781 231.136719 248.832031 231.136719 248.714844 Z M 231.136719 248.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.746094 245.8125 C 229.746094 245.695312 229.652344 245.601562 229.535156 245.601562 C 229.417969 245.601562 229.324219 245.695312 229.324219 245.8125 C 229.324219 245.929688 229.417969 246.023438 229.535156 246.023438 C 229.652344 246.023438 229.746094 245.929688 229.746094 245.8125 Z M 229.746094 245.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.113281 244.652344 C 231.113281 244.535156 231.019531 244.441406 230.902344 244.441406 C 230.785156 244.441406 230.691406 244.535156 230.691406 244.652344 C 230.691406 244.769531 230.785156 244.863281 230.902344 244.863281 C 231.019531 244.863281 231.113281 244.769531 231.113281 244.652344 Z M 231.113281 244.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.820312 247.800781 C 231.820312 247.683594 231.726562 247.589844 231.609375 247.589844 C 231.492188 247.589844 231.398438 247.683594 231.398438 247.800781 C 231.398438 247.917969 231.492188 248.011719 231.609375 248.011719 C 231.726562 248.011719 231.820312 247.917969 231.820312 247.800781 Z M 231.820312 247.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.269531 250.519531 C 230.269531 250.402344 230.175781 250.308594 230.058594 250.308594 C 229.941406 250.308594 229.847656 250.402344 229.847656 250.519531 C 229.847656 250.636719 229.941406 250.730469 230.058594 250.730469 C 230.175781 250.730469 230.269531 250.636719 230.269531 250.519531 Z M 230.269531 250.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.578125 252.269531 C 227.578125 252.152344 227.484375 252.058594 227.367188 252.058594 C 227.25 252.058594 227.15625 252.152344 227.15625 252.269531 C 227.15625 252.386719 227.25 252.480469 227.367188 252.480469 C 227.484375 252.480469 227.578125 252.386719 227.578125 252.269531 Z M 227.578125 252.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.597656 252.558594 C 229.597656 252.441406 229.503906 252.347656 229.386719 252.347656 C 229.269531 252.347656 229.175781 252.441406 229.175781 252.558594 C 229.175781 252.675781 229.269531 252.769531 229.386719 252.769531 C 229.503906 252.769531 229.597656 252.675781 229.597656 252.558594 Z M 229.597656 252.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.585938 245.367188 C 225.585938 245.25 225.492188 245.15625 225.375 245.15625 C 225.257812 245.15625 225.164062 245.25 225.164062 245.367188 C 225.164062 245.484375 225.257812 245.578125 225.375 245.578125 C 225.492188 245.578125 225.585938 245.484375 225.585938 245.367188 Z M 225.585938 245.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.894531 243.695312 C 223.894531 243.578125 223.800781 243.484375 223.683594 243.484375 C 223.566406 243.484375 223.472656 243.578125 223.472656 243.695312 C 223.472656 243.8125 223.566406 243.90625 223.683594 243.90625 C 223.800781 243.90625 223.894531 243.8125 223.894531 243.695312 Z M 223.894531 243.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.46875 244.519531 C 225.46875 244.402344 225.375 244.308594 225.257812 244.308594 C 225.140625 244.308594 225.046875 244.402344 225.046875 244.519531 C 225.046875 244.636719 225.140625 244.730469 225.257812 244.730469 C 225.375 244.730469 225.46875 244.636719 225.46875 244.519531 Z M 225.46875 244.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.371094 242.601562 C 224.371094 242.484375 224.277344 242.390625 224.160156 242.390625 C 224.042969 242.390625 223.949219 242.484375 223.949219 242.601562 C 223.949219 242.71875 224.042969 242.8125 224.160156 242.8125 C 224.277344 242.8125 224.371094 242.71875 224.371094 242.601562 Z M 224.371094 242.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.15625 244.777344 C 224.15625 244.660156 224.0625 244.566406 223.945312 244.566406 C 223.828125 244.566406 223.734375 244.660156 223.734375 244.777344 C 223.734375 244.894531 223.828125 244.988281 223.945312 244.988281 C 224.0625 244.988281 224.15625 244.894531 224.15625 244.777344 Z M 224.15625 244.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.707031 243.957031 C 226.707031 243.839844 226.613281 243.746094 226.496094 243.746094 C 226.378906 243.746094 226.285156 243.839844 226.285156 243.957031 C 226.285156 244.074219 226.378906 244.167969 226.496094 244.167969 C 226.613281 244.167969 226.707031 244.074219 226.707031 243.957031 Z M 226.707031 243.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.519531 242.5 C 224.519531 242.382812 224.425781 242.289062 224.308594 242.289062 C 224.191406 242.289062 224.097656 242.382812 224.097656 242.5 C 224.097656 242.617188 224.191406 242.710938 224.308594 242.710938 C 224.425781 242.710938 224.519531 242.617188 224.519531 242.5 Z M 224.519531 242.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.242188 240.285156 C 223.242188 240.167969 223.148438 240.074219 223.03125 240.074219 C 222.914062 240.074219 222.820312 240.167969 222.820312 240.285156 C 222.820312 240.402344 222.914062 240.496094 223.03125 240.496094 C 223.148438 240.496094 223.242188 240.402344 223.242188 240.285156 Z M 223.242188 240.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.75 237.65625 C 226.75 237.539062 226.65625 237.445312 226.539062 237.445312 C 226.421875 237.445312 226.328125 237.539062 226.328125 237.65625 C 226.328125 237.773438 226.421875 237.867188 226.539062 237.867188 C 226.65625 237.867188 226.75 237.773438 226.75 237.65625 Z M 226.75 237.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.421875 237.894531 C 226.421875 237.777344 226.328125 237.683594 226.210938 237.683594 C 226.09375 237.683594 226 237.777344 226 237.894531 C 226 238.011719 226.09375 238.105469 226.210938 238.105469 C 226.328125 238.105469 226.421875 238.011719 226.421875 237.894531 Z M 226.421875 237.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.394531 236.503906 C 227.394531 236.386719 227.300781 236.292969 227.183594 236.292969 C 227.066406 236.292969 226.972656 236.386719 226.972656 236.503906 C 226.972656 236.621094 227.066406 236.714844 227.183594 236.714844 C 227.300781 236.714844 227.394531 236.621094 227.394531 236.503906 Z M 227.394531 236.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.46875 232.917969 C 229.46875 232.800781 229.375 232.707031 229.257812 232.707031 C 229.140625 232.707031 229.046875 232.800781 229.046875 232.917969 C 229.046875 233.035156 229.140625 233.128906 229.257812 233.128906 C 229.375 233.128906 229.46875 233.035156 229.46875 232.917969 Z M 229.46875 232.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.246094 235.316406 C 223.246094 235.199219 223.152344 235.105469 223.035156 235.105469 C 222.917969 235.105469 222.824219 235.199219 222.824219 235.316406 C 222.824219 235.433594 222.917969 235.527344 223.035156 235.527344 C 223.152344 235.527344 223.246094 235.433594 223.246094 235.316406 Z M 223.246094 235.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.042969 234.003906 C 226.042969 233.886719 225.949219 233.792969 225.832031 233.792969 C 225.714844 233.792969 225.621094 233.886719 225.621094 234.003906 C 225.621094 234.121094 225.714844 234.214844 225.832031 234.214844 C 225.949219 234.214844 226.042969 234.121094 226.042969 234.003906 Z M 226.042969 234.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.644531 230.398438 C 223.644531 230.28125 223.550781 230.1875 223.433594 230.1875 C 223.316406 230.1875 223.222656 230.28125 223.222656 230.398438 C 223.222656 230.515625 223.316406 230.609375 223.433594 230.609375 C 223.550781 230.609375 223.644531 230.515625 223.644531 230.398438 Z M 223.644531 230.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.621094 229.492188 C 223.621094 229.375 223.527344 229.28125 223.410156 229.28125 C 223.292969 229.28125 223.199219 229.375 223.199219 229.492188 C 223.199219 229.609375 223.292969 229.703125 223.410156 229.703125 C 223.527344 229.703125 223.621094 229.609375 223.621094 229.492188 Z M 223.621094 229.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.980469 230.988281 C 221.980469 230.871094 221.886719 230.777344 221.769531 230.777344 C 221.652344 230.777344 221.558594 230.871094 221.558594 230.988281 C 221.558594 231.105469 221.652344 231.199219 221.769531 231.199219 C 221.886719 231.199219 221.980469 231.105469 221.980469 230.988281 Z M 221.980469 230.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 222.738281 225.605469 C 222.738281 225.488281 222.644531 225.394531 222.527344 225.394531 C 222.410156 225.394531 222.316406 225.488281 222.316406 225.605469 C 222.316406 225.722656 222.410156 225.816406 222.527344 225.816406 C 222.644531 225.816406 222.738281 225.722656 222.738281 225.605469 Z M 222.738281 225.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.847656 222.707031 C 223.847656 222.589844 223.753906 222.496094 223.636719 222.496094 C 223.519531 222.496094 223.425781 222.589844 223.425781 222.707031 C 223.425781 222.824219 223.519531 222.917969 223.636719 222.917969 C 223.753906 222.917969 223.847656 222.824219 223.847656 222.707031 Z M 223.847656 222.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.441406 222.019531 C 227.441406 221.902344 227.347656 221.808594 227.230469 221.808594 C 227.113281 221.808594 227.019531 221.902344 227.019531 222.019531 C 227.019531 222.136719 227.113281 222.230469 227.230469 222.230469 C 227.347656 222.230469 227.441406 222.136719 227.441406 222.019531 Z M 227.441406 222.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.851562 223.125 C 228.851562 223.007812 228.757812 222.914062 228.640625 222.914062 C 228.523438 222.914062 228.429688 223.007812 228.429688 223.125 C 228.429688 223.242188 228.523438 223.335938 228.640625 223.335938 C 228.757812 223.335938 228.851562 223.242188 228.851562 223.125 Z M 228.851562 223.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.660156 224.757812 C 228.660156 224.640625 228.566406 224.546875 228.449219 224.546875 C 228.332031 224.546875 228.238281 224.640625 228.238281 224.757812 C 228.238281 224.875 228.332031 224.96875 228.449219 224.96875 C 228.566406 224.96875 228.660156 224.875 228.660156 224.757812 Z M 228.660156 224.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.699219 221.800781 C 228.699219 221.683594 228.605469 221.589844 228.488281 221.589844 C 228.371094 221.589844 228.277344 221.683594 228.277344 221.800781 C 228.277344 221.917969 228.371094 222.011719 228.488281 222.011719 C 228.605469 222.011719 228.699219 221.917969 228.699219 221.800781 Z M 228.699219 221.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.714844 221.507812 C 228.714844 221.390625 228.621094 221.296875 228.503906 221.296875 C 228.386719 221.296875 228.292969 221.390625 228.292969 221.507812 C 228.292969 221.625 228.386719 221.71875 228.503906 221.71875 C 228.621094 221.71875 228.714844 221.625 228.714844 221.507812 Z M 228.714844 221.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.882812 220.191406 C 226.882812 220.074219 226.789062 219.980469 226.671875 219.980469 C 226.554688 219.980469 226.460938 220.074219 226.460938 220.191406 C 226.460938 220.308594 226.554688 220.402344 226.671875 220.402344 C 226.789062 220.402344 226.882812 220.308594 226.882812 220.191406 Z M 226.882812 220.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.695312 221.832031 C 226.695312 221.714844 226.601562 221.621094 226.484375 221.621094 C 226.367188 221.621094 226.273438 221.714844 226.273438 221.832031 C 226.273438 221.949219 226.367188 222.042969 226.484375 222.042969 C 226.601562 222.042969 226.695312 221.949219 226.695312 221.832031 Z M 226.695312 221.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.851562 222.054688 C 224.851562 221.9375 224.757812 221.84375 224.640625 221.84375 C 224.523438 221.84375 224.429688 221.9375 224.429688 222.054688 C 224.429688 222.171875 224.523438 222.265625 224.640625 222.265625 C 224.757812 222.265625 224.851562 222.171875 224.851562 222.054688 Z M 224.851562 222.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.828125 221.542969 C 224.828125 221.425781 224.734375 221.332031 224.617188 221.332031 C 224.5 221.332031 224.40625 221.425781 224.40625 221.542969 C 224.40625 221.660156 224.5 221.753906 224.617188 221.753906 C 224.734375 221.753906 224.828125 221.660156 224.828125 221.542969 Z M 224.828125 221.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.90625 223.027344 C 225.90625 222.910156 225.8125 222.816406 225.695312 222.816406 C 225.578125 222.816406 225.484375 222.910156 225.484375 223.027344 C 225.484375 223.144531 225.578125 223.238281 225.695312 223.238281 C 225.8125 223.238281 225.90625 223.144531 225.90625 223.027344 Z M 225.90625 223.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.5625 223.550781 C 224.5625 223.433594 224.46875 223.339844 224.351562 223.339844 C 224.234375 223.339844 224.140625 223.433594 224.140625 223.550781 C 224.140625 223.667969 224.234375 223.761719 224.351562 223.761719 C 224.46875 223.761719 224.5625 223.667969 224.5625 223.550781 Z M 224.5625 223.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.496094 222.867188 C 221.496094 222.75 221.402344 222.65625 221.285156 222.65625 C 221.167969 222.65625 221.074219 222.75 221.074219 222.867188 C 221.074219 222.984375 221.167969 223.078125 221.285156 223.078125 C 221.402344 223.078125 221.496094 222.984375 221.496094 222.867188 Z M 221.496094 222.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.820312 221.152344 C 224.820312 221.035156 224.726562 220.941406 224.609375 220.941406 C 224.492188 220.941406 224.398438 221.035156 224.398438 221.152344 C 224.398438 221.269531 224.492188 221.363281 224.609375 221.363281 C 224.726562 221.363281 224.820312 221.269531 224.820312 221.152344 Z M 224.820312 221.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.855469 224.105469 C 225.855469 223.988281 225.761719 223.894531 225.644531 223.894531 C 225.527344 223.894531 225.433594 223.988281 225.433594 224.105469 C 225.433594 224.222656 225.527344 224.316406 225.644531 224.316406 C 225.761719 224.316406 225.855469 224.222656 225.855469 224.105469 Z M 225.855469 224.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.761719 223.4375 C 228.761719 223.320312 228.667969 223.226562 228.550781 223.226562 C 228.433594 223.226562 228.339844 223.320312 228.339844 223.4375 C 228.339844 223.554688 228.433594 223.648438 228.550781 223.648438 C 228.667969 223.648438 228.761719 223.554688 228.761719 223.4375 Z M 228.761719 223.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.296875 219.878906 C 233.296875 219.761719 233.203125 219.667969 233.085938 219.667969 C 232.96875 219.667969 232.875 219.761719 232.875 219.878906 C 232.875 219.996094 232.96875 220.089844 233.085938 220.089844 C 233.203125 220.089844 233.296875 219.996094 233.296875 219.878906 Z M 233.296875 219.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.636719 218.671875 C 236.636719 218.554688 236.542969 218.460938 236.425781 218.460938 C 236.308594 218.460938 236.214844 218.554688 236.214844 218.671875 C 236.214844 218.789062 236.308594 218.882812 236.425781 218.882812 C 236.542969 218.882812 236.636719 218.789062 236.636719 218.671875 Z M 236.636719 218.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.820312 216.5 C 232.820312 216.382812 232.726562 216.289062 232.609375 216.289062 C 232.492188 216.289062 232.398438 216.382812 232.398438 216.5 C 232.398438 216.617188 232.492188 216.710938 232.609375 216.710938 C 232.726562 216.710938 232.820312 216.617188 232.820312 216.5 Z M 232.820312 216.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.980469 216.128906 C 235.980469 216.011719 235.886719 215.917969 235.769531 215.917969 C 235.652344 215.917969 235.558594 216.011719 235.558594 216.128906 C 235.558594 216.246094 235.652344 216.339844 235.769531 216.339844 C 235.886719 216.339844 235.980469 216.246094 235.980469 216.128906 Z M 235.980469 216.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.3125 217.8125 C 236.3125 217.695312 236.21875 217.601562 236.101562 217.601562 C 235.984375 217.601562 235.890625 217.695312 235.890625 217.8125 C 235.890625 217.929688 235.984375 218.023438 236.101562 218.023438 C 236.21875 218.023438 236.3125 217.929688 236.3125 217.8125 Z M 236.3125 217.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.683594 222.421875 C 236.683594 222.304688 236.589844 222.210938 236.472656 222.210938 C 236.355469 222.210938 236.261719 222.304688 236.261719 222.421875 C 236.261719 222.539062 236.355469 222.632812 236.472656 222.632812 C 236.589844 222.632812 236.683594 222.539062 236.683594 222.421875 Z M 236.683594 222.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.601562 221.347656 C 234.601562 221.230469 234.507812 221.136719 234.390625 221.136719 C 234.273438 221.136719 234.179688 221.230469 234.179688 221.347656 C 234.179688 221.464844 234.273438 221.558594 234.390625 221.558594 C 234.507812 221.558594 234.601562 221.464844 234.601562 221.347656 Z M 234.601562 221.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.34375 222.234375 C 233.34375 222.117188 233.25 222.023438 233.132812 222.023438 C 233.015625 222.023438 232.921875 222.117188 232.921875 222.234375 C 232.921875 222.351562 233.015625 222.445312 233.132812 222.445312 C 233.25 222.445312 233.34375 222.351562 233.34375 222.234375 Z M 233.34375 222.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.5625 219.492188 C 238.5625 219.375 238.46875 219.28125 238.351562 219.28125 C 238.234375 219.28125 238.140625 219.375 238.140625 219.492188 C 238.140625 219.609375 238.234375 219.703125 238.351562 219.703125 C 238.46875 219.703125 238.5625 219.609375 238.5625 219.492188 Z M 238.5625 219.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.9375 219.855469 C 237.9375 219.738281 237.84375 219.644531 237.726562 219.644531 C 237.609375 219.644531 237.515625 219.738281 237.515625 219.855469 C 237.515625 219.972656 237.609375 220.066406 237.726562 220.066406 C 237.84375 220.066406 237.9375 219.972656 237.9375 219.855469 Z M 237.9375 219.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.179688 221.074219 C 235.179688 220.957031 235.085938 220.863281 234.96875 220.863281 C 234.851562 220.863281 234.757812 220.957031 234.757812 221.074219 C 234.757812 221.191406 234.851562 221.285156 234.96875 221.285156 C 235.085938 221.285156 235.179688 221.191406 235.179688 221.074219 Z M 235.179688 221.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.730469 221.296875 C 232.730469 221.179688 232.636719 221.085938 232.519531 221.085938 C 232.402344 221.085938 232.308594 221.179688 232.308594 221.296875 C 232.308594 221.414062 232.402344 221.507812 232.519531 221.507812 C 232.636719 221.507812 232.730469 221.414062 232.730469 221.296875 Z M 232.730469 221.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.121094 217.949219 C 233.121094 217.832031 233.027344 217.738281 232.910156 217.738281 C 232.792969 217.738281 232.699219 217.832031 232.699219 217.949219 C 232.699219 218.066406 232.792969 218.160156 232.910156 218.160156 C 233.027344 218.160156 233.121094 218.066406 233.121094 217.949219 Z M 233.121094 217.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.207031 217.710938 C 230.207031 217.59375 230.113281 217.5 229.996094 217.5 C 229.878906 217.5 229.785156 217.59375 229.785156 217.710938 C 229.785156 217.828125 229.878906 217.921875 229.996094 217.921875 C 230.113281 217.921875 230.207031 217.828125 230.207031 217.710938 Z M 230.207031 217.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.574219 218.894531 C 229.574219 218.777344 229.480469 218.683594 229.363281 218.683594 C 229.246094 218.683594 229.152344 218.777344 229.152344 218.894531 C 229.152344 219.011719 229.246094 219.105469 229.363281 219.105469 C 229.480469 219.105469 229.574219 219.011719 229.574219 218.894531 Z M 229.574219 218.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.457031 217.714844 C 228.457031 217.597656 228.363281 217.503906 228.246094 217.503906 C 228.128906 217.503906 228.035156 217.597656 228.035156 217.714844 C 228.035156 217.832031 228.128906 217.925781 228.246094 217.925781 C 228.363281 217.925781 228.457031 217.832031 228.457031 217.714844 Z M 228.457031 217.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.015625 214.164062 C 226.015625 214.046875 225.921875 213.953125 225.804688 213.953125 C 225.6875 213.953125 225.59375 214.046875 225.59375 214.164062 C 225.59375 214.28125 225.6875 214.375 225.804688 214.375 C 225.921875 214.375 226.015625 214.28125 226.015625 214.164062 Z M 226.015625 214.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.085938 215.527344 C 223.085938 215.410156 222.992188 215.316406 222.875 215.316406 C 222.757812 215.316406 222.664062 215.410156 222.664062 215.527344 C 222.664062 215.644531 222.757812 215.738281 222.875 215.738281 C 222.992188 215.738281 223.085938 215.644531 223.085938 215.527344 Z M 223.085938 215.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.933594 216.210938 C 219.933594 216.09375 219.839844 216 219.722656 216 C 219.605469 216 219.511719 216.09375 219.511719 216.210938 C 219.511719 216.328125 219.605469 216.421875 219.722656 216.421875 C 219.839844 216.421875 219.933594 216.328125 219.933594 216.210938 Z M 219.933594 216.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.859375 217.324219 C 217.859375 217.207031 217.765625 217.113281 217.648438 217.113281 C 217.53125 217.113281 217.4375 217.207031 217.4375 217.324219 C 217.4375 217.441406 217.53125 217.535156 217.648438 217.535156 C 217.765625 217.535156 217.859375 217.441406 217.859375 217.324219 Z M 217.859375 217.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.222656 216.371094 C 219.222656 216.253906 219.128906 216.160156 219.011719 216.160156 C 218.894531 216.160156 218.800781 216.253906 218.800781 216.371094 C 218.800781 216.488281 218.894531 216.582031 219.011719 216.582031 C 219.128906 216.582031 219.222656 216.488281 219.222656 216.371094 Z M 219.222656 216.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 220.878906 219.886719 C 220.878906 219.769531 220.785156 219.675781 220.667969 219.675781 C 220.550781 219.675781 220.457031 219.769531 220.457031 219.886719 C 220.457031 220.003906 220.550781 220.097656 220.667969 220.097656 C 220.785156 220.097656 220.878906 220.003906 220.878906 219.886719 Z M 220.878906 219.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.53125 220.101562 C 219.53125 219.984375 219.4375 219.890625 219.320312 219.890625 C 219.203125 219.890625 219.109375 219.984375 219.109375 220.101562 C 219.109375 220.21875 219.203125 220.3125 219.320312 220.3125 C 219.4375 220.3125 219.53125 220.21875 219.53125 220.101562 Z M 219.53125 220.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.40625 223.210938 C 219.40625 223.09375 219.3125 223 219.195312 223 C 219.078125 223 218.984375 223.09375 218.984375 223.210938 C 218.984375 223.328125 219.078125 223.421875 219.195312 223.421875 C 219.3125 223.421875 219.40625 223.328125 219.40625 223.210938 Z M 219.40625 223.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.667969 225.425781 C 219.667969 225.308594 219.574219 225.214844 219.457031 225.214844 C 219.339844 225.214844 219.246094 225.308594 219.246094 225.425781 C 219.246094 225.542969 219.339844 225.636719 219.457031 225.636719 C 219.574219 225.636719 219.667969 225.542969 219.667969 225.425781 Z M 219.667969 225.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 222.160156 230.296875 C 222.160156 230.179688 222.066406 230.085938 221.949219 230.085938 C 221.832031 230.085938 221.738281 230.179688 221.738281 230.296875 C 221.738281 230.414062 221.832031 230.507812 221.949219 230.507812 C 222.066406 230.507812 222.160156 230.414062 222.160156 230.296875 Z M 222.160156 230.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.820312 227.53125 C 221.820312 227.414062 221.726562 227.320312 221.609375 227.320312 C 221.492188 227.320312 221.398438 227.414062 221.398438 227.53125 C 221.398438 227.648438 221.492188 227.742188 221.609375 227.742188 C 221.726562 227.742188 221.820312 227.648438 221.820312 227.53125 Z M 221.820312 227.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.308594 229.148438 C 218.308594 229.03125 218.214844 228.9375 218.097656 228.9375 C 217.980469 228.9375 217.886719 229.03125 217.886719 229.148438 C 217.886719 229.265625 217.980469 229.359375 218.097656 229.359375 C 218.214844 229.359375 218.308594 229.265625 218.308594 229.148438 Z M 218.308594 229.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.277344 226.410156 C 216.277344 226.292969 216.183594 226.199219 216.066406 226.199219 C 215.949219 226.199219 215.855469 226.292969 215.855469 226.410156 C 215.855469 226.527344 215.949219 226.621094 216.066406 226.621094 C 216.183594 226.621094 216.277344 226.527344 216.277344 226.410156 Z M 216.277344 226.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.480469 221.640625 C 218.480469 221.523438 218.386719 221.429688 218.269531 221.429688 C 218.152344 221.429688 218.058594 221.523438 218.058594 221.640625 C 218.058594 221.757812 218.152344 221.851562 218.269531 221.851562 C 218.386719 221.851562 218.480469 221.757812 218.480469 221.640625 Z M 218.480469 221.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.578125 226.5 C 217.578125 226.382812 217.484375 226.289062 217.367188 226.289062 C 217.25 226.289062 217.15625 226.382812 217.15625 226.5 C 217.15625 226.617188 217.25 226.710938 217.367188 226.710938 C 217.484375 226.710938 217.578125 226.617188 217.578125 226.5 Z M 217.578125 226.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.433594 228.410156 C 217.433594 228.292969 217.339844 228.199219 217.222656 228.199219 C 217.105469 228.199219 217.011719 228.292969 217.011719 228.410156 C 217.011719 228.527344 217.105469 228.621094 217.222656 228.621094 C 217.339844 228.621094 217.433594 228.527344 217.433594 228.410156 Z M 217.433594 228.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.347656 228.757812 C 216.347656 228.640625 216.253906 228.546875 216.136719 228.546875 C 216.019531 228.546875 215.925781 228.640625 215.925781 228.757812 C 215.925781 228.875 216.019531 228.96875 216.136719 228.96875 C 216.253906 228.96875 216.347656 228.875 216.347656 228.757812 Z M 216.347656 228.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.464844 228.429688 C 218.464844 228.3125 218.371094 228.21875 218.253906 228.21875 C 218.136719 228.21875 218.042969 228.3125 218.042969 228.429688 C 218.042969 228.546875 218.136719 228.640625 218.253906 228.640625 C 218.371094 228.640625 218.464844 228.546875 218.464844 228.429688 Z M 218.464844 228.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.566406 226.632812 C 218.566406 226.515625 218.472656 226.421875 218.355469 226.421875 C 218.238281 226.421875 218.144531 226.515625 218.144531 226.632812 C 218.144531 226.75 218.238281 226.84375 218.355469 226.84375 C 218.472656 226.84375 218.566406 226.75 218.566406 226.632812 Z M 218.566406 226.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 220.894531 226.847656 C 220.894531 226.730469 220.800781 226.636719 220.683594 226.636719 C 220.566406 226.636719 220.472656 226.730469 220.472656 226.847656 C 220.472656 226.964844 220.566406 227.058594 220.683594 227.058594 C 220.800781 227.058594 220.894531 226.964844 220.894531 226.847656 Z M 220.894531 226.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.25 225.0625 C 218.25 224.945312 218.15625 224.851562 218.039062 224.851562 C 217.921875 224.851562 217.828125 224.945312 217.828125 225.0625 C 217.828125 225.179688 217.921875 225.273438 218.039062 225.273438 C 218.15625 225.273438 218.25 225.179688 218.25 225.0625 Z M 218.25 225.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.644531 224.359375 C 221.644531 224.242188 221.550781 224.148438 221.433594 224.148438 C 221.316406 224.148438 221.222656 224.242188 221.222656 224.359375 C 221.222656 224.476562 221.316406 224.570312 221.433594 224.570312 C 221.550781 224.570312 221.644531 224.476562 221.644531 224.359375 Z M 221.644531 224.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 222.25 222.78125 C 222.25 222.664062 222.15625 222.570312 222.039062 222.570312 C 221.921875 222.570312 221.828125 222.664062 221.828125 222.78125 C 221.828125 222.898438 221.921875 222.992188 222.039062 222.992188 C 222.15625 222.992188 222.25 222.898438 222.25 222.78125 Z M 222.25 222.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 220.132812 222.605469 C 220.132812 222.488281 220.039062 222.394531 219.921875 222.394531 C 219.804688 222.394531 219.710938 222.488281 219.710938 222.605469 C 219.710938 222.722656 219.804688 222.816406 219.921875 222.816406 C 220.039062 222.816406 220.132812 222.722656 220.132812 222.605469 Z M 220.132812 222.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.640625 221.496094 C 218.640625 221.378906 218.546875 221.285156 218.429688 221.285156 C 218.3125 221.285156 218.21875 221.378906 218.21875 221.496094 C 218.21875 221.613281 218.3125 221.707031 218.429688 221.707031 C 218.546875 221.707031 218.640625 221.613281 218.640625 221.496094 Z M 218.640625 221.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 220.332031 219.78125 C 220.332031 219.664062 220.238281 219.570312 220.121094 219.570312 C 220.003906 219.570312 219.910156 219.664062 219.910156 219.78125 C 219.910156 219.898438 220.003906 219.992188 220.121094 219.992188 C 220.238281 219.992188 220.332031 219.898438 220.332031 219.78125 Z M 220.332031 219.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.121094 218.144531 C 221.121094 218.027344 221.027344 217.933594 220.910156 217.933594 C 220.792969 217.933594 220.699219 218.027344 220.699219 218.144531 C 220.699219 218.261719 220.792969 218.355469 220.910156 218.355469 C 221.027344 218.355469 221.121094 218.261719 221.121094 218.144531 Z M 221.121094 218.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.8125 216.34375 C 216.8125 216.226562 216.71875 216.132812 216.601562 216.132812 C 216.484375 216.132812 216.390625 216.226562 216.390625 216.34375 C 216.390625 216.460938 216.484375 216.554688 216.601562 216.554688 C 216.71875 216.554688 216.8125 216.460938 216.8125 216.34375 Z M 216.8125 216.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.128906 216.957031 C 214.128906 216.839844 214.035156 216.746094 213.917969 216.746094 C 213.800781 216.746094 213.707031 216.839844 213.707031 216.957031 C 213.707031 217.074219 213.800781 217.167969 213.917969 217.167969 C 214.035156 217.167969 214.128906 217.074219 214.128906 216.957031 Z M 214.128906 216.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.597656 215.964844 C 215.597656 215.847656 215.503906 215.753906 215.386719 215.753906 C 215.269531 215.753906 215.175781 215.847656 215.175781 215.964844 C 215.175781 216.082031 215.269531 216.175781 215.386719 216.175781 C 215.503906 216.175781 215.597656 216.082031 215.597656 215.964844 Z M 215.597656 215.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.457031 216.601562 C 214.457031 216.484375 214.363281 216.390625 214.246094 216.390625 C 214.128906 216.390625 214.035156 216.484375 214.035156 216.601562 C 214.035156 216.71875 214.128906 216.8125 214.246094 216.8125 C 214.363281 216.8125 214.457031 216.71875 214.457031 216.601562 Z M 214.457031 216.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.925781 218 C 213.925781 217.882812 213.832031 217.789062 213.714844 217.789062 C 213.597656 217.789062 213.503906 217.882812 213.503906 218 C 213.503906 218.117188 213.597656 218.210938 213.714844 218.210938 C 213.832031 218.210938 213.925781 218.117188 213.925781 218 Z M 213.925781 218 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.789062 218.886719 C 216.789062 218.769531 216.695312 218.675781 216.578125 218.675781 C 216.460938 218.675781 216.367188 218.769531 216.367188 218.886719 C 216.367188 219.003906 216.460938 219.097656 216.578125 219.097656 C 216.695312 219.097656 216.789062 219.003906 216.789062 218.886719 Z M 216.789062 218.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.363281 219.046875 C 217.363281 218.929688 217.269531 218.835938 217.152344 218.835938 C 217.035156 218.835938 216.941406 218.929688 216.941406 219.046875 C 216.941406 219.164062 217.035156 219.257812 217.152344 219.257812 C 217.269531 219.257812 217.363281 219.164062 217.363281 219.046875 Z M 217.363281 219.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.964844 222.917969 C 215.964844 222.800781 215.871094 222.707031 215.753906 222.707031 C 215.636719 222.707031 215.542969 222.800781 215.542969 222.917969 C 215.542969 223.035156 215.636719 223.128906 215.753906 223.128906 C 215.871094 223.128906 215.964844 223.035156 215.964844 222.917969 Z M 215.964844 222.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.402344 224.359375 C 217.402344 224.242188 217.308594 224.148438 217.191406 224.148438 C 217.074219 224.148438 216.980469 224.242188 216.980469 224.359375 C 216.980469 224.476562 217.074219 224.570312 217.191406 224.570312 C 217.308594 224.570312 217.402344 224.476562 217.402344 224.359375 Z M 217.402344 224.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.460938 226.691406 C 217.460938 226.574219 217.367188 226.480469 217.25 226.480469 C 217.132812 226.480469 217.039062 226.574219 217.039062 226.691406 C 217.039062 226.808594 217.132812 226.902344 217.25 226.902344 C 217.367188 226.902344 217.460938 226.808594 217.460938 226.691406 Z M 217.460938 226.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.03125 227.964844 C 216.03125 227.847656 215.9375 227.753906 215.820312 227.753906 C 215.703125 227.753906 215.609375 227.847656 215.609375 227.964844 C 215.609375 228.082031 215.703125 228.175781 215.820312 228.175781 C 215.9375 228.175781 216.03125 228.082031 216.03125 227.964844 Z M 216.03125 227.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.480469 227.453125 C 212.480469 227.335938 212.386719 227.242188 212.269531 227.242188 C 212.152344 227.242188 212.058594 227.335938 212.058594 227.453125 C 212.058594 227.570312 212.152344 227.664062 212.269531 227.664062 C 212.386719 227.664062 212.480469 227.570312 212.480469 227.453125 Z M 212.480469 227.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.027344 227.042969 C 211.027344 226.925781 210.933594 226.832031 210.816406 226.832031 C 210.699219 226.832031 210.605469 226.925781 210.605469 227.042969 C 210.605469 227.160156 210.699219 227.253906 210.816406 227.253906 C 210.933594 227.253906 211.027344 227.160156 211.027344 227.042969 Z M 211.027344 227.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.460938 227.269531 C 209.460938 227.152344 209.367188 227.058594 209.25 227.058594 C 209.132812 227.058594 209.039062 227.152344 209.039062 227.269531 C 209.039062 227.386719 209.132812 227.480469 209.25 227.480469 C 209.367188 227.480469 209.460938 227.386719 209.460938 227.269531 Z M 209.460938 227.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.035156 224.828125 C 209.035156 224.710938 208.941406 224.617188 208.824219 224.617188 C 208.707031 224.617188 208.613281 224.710938 208.613281 224.828125 C 208.613281 224.945312 208.707031 225.039062 208.824219 225.039062 C 208.941406 225.039062 209.035156 224.945312 209.035156 224.828125 Z M 209.035156 224.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.25 225.601562 C 210.25 225.484375 210.15625 225.390625 210.039062 225.390625 C 209.921875 225.390625 209.828125 225.484375 209.828125 225.601562 C 209.828125 225.71875 209.921875 225.8125 210.039062 225.8125 C 210.15625 225.8125 210.25 225.71875 210.25 225.601562 Z M 210.25 225.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.742188 227.027344 C 213.742188 226.910156 213.648438 226.816406 213.53125 226.816406 C 213.414062 226.816406 213.320312 226.910156 213.320312 227.027344 C 213.320312 227.144531 213.414062 227.238281 213.53125 227.238281 C 213.648438 227.238281 213.742188 227.144531 213.742188 227.027344 Z M 213.742188 227.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.785156 227.605469 C 212.785156 227.488281 212.691406 227.394531 212.574219 227.394531 C 212.457031 227.394531 212.363281 227.488281 212.363281 227.605469 C 212.363281 227.722656 212.457031 227.816406 212.574219 227.816406 C 212.691406 227.816406 212.785156 227.722656 212.785156 227.605469 Z M 212.785156 227.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.191406 227.277344 C 214.191406 227.160156 214.097656 227.066406 213.980469 227.066406 C 213.863281 227.066406 213.769531 227.160156 213.769531 227.277344 C 213.769531 227.394531 213.863281 227.488281 213.980469 227.488281 C 214.097656 227.488281 214.191406 227.394531 214.191406 227.277344 Z M 214.191406 227.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.636719 227.050781 C 214.636719 226.933594 214.542969 226.839844 214.425781 226.839844 C 214.308594 226.839844 214.214844 226.933594 214.214844 227.050781 C 214.214844 227.167969 214.308594 227.261719 214.425781 227.261719 C 214.542969 227.261719 214.636719 227.167969 214.636719 227.050781 Z M 214.636719 227.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.207031 226.394531 C 215.207031 226.277344 215.113281 226.183594 214.996094 226.183594 C 214.878906 226.183594 214.785156 226.277344 214.785156 226.394531 C 214.785156 226.511719 214.878906 226.605469 214.996094 226.605469 C 215.113281 226.605469 215.207031 226.511719 215.207031 226.394531 Z M 215.207031 226.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.742188 225.214844 C 214.742188 225.097656 214.648438 225.003906 214.53125 225.003906 C 214.414062 225.003906 214.320312 225.097656 214.320312 225.214844 C 214.320312 225.332031 214.414062 225.425781 214.53125 225.425781 C 214.648438 225.425781 214.742188 225.332031 214.742188 225.214844 Z M 214.742188 225.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.871094 227.707031 C 214.871094 227.589844 214.777344 227.496094 214.660156 227.496094 C 214.542969 227.496094 214.449219 227.589844 214.449219 227.707031 C 214.449219 227.824219 214.542969 227.917969 214.660156 227.917969 C 214.777344 227.917969 214.871094 227.824219 214.871094 227.707031 Z M 214.871094 227.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.277344 227.019531 C 216.277344 226.902344 216.183594 226.808594 216.066406 226.808594 C 215.949219 226.808594 215.855469 226.902344 215.855469 227.019531 C 215.855469 227.136719 215.949219 227.230469 216.066406 227.230469 C 216.183594 227.230469 216.277344 227.136719 216.277344 227.019531 Z M 216.277344 227.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.75 226.21875 C 214.75 226.101562 214.65625 226.007812 214.539062 226.007812 C 214.421875 226.007812 214.328125 226.101562 214.328125 226.21875 C 214.328125 226.335938 214.421875 226.429688 214.539062 226.429688 C 214.65625 226.429688 214.75 226.335938 214.75 226.21875 Z M 214.75 226.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.335938 228.539062 C 214.335938 228.421875 214.242188 228.328125 214.125 228.328125 C 214.007812 228.328125 213.914062 228.421875 213.914062 228.539062 C 213.914062 228.65625 214.007812 228.75 214.125 228.75 C 214.242188 228.75 214.335938 228.65625 214.335938 228.539062 Z M 214.335938 228.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.050781 227.527344 C 212.050781 227.410156 211.957031 227.316406 211.839844 227.316406 C 211.722656 227.316406 211.628906 227.410156 211.628906 227.527344 C 211.628906 227.644531 211.722656 227.738281 211.839844 227.738281 C 211.957031 227.738281 212.050781 227.644531 212.050781 227.527344 Z M 212.050781 227.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.269531 225.109375 C 208.269531 224.992188 208.175781 224.898438 208.058594 224.898438 C 207.941406 224.898438 207.847656 224.992188 207.847656 225.109375 C 207.847656 225.226562 207.941406 225.320312 208.058594 225.320312 C 208.175781 225.320312 208.269531 225.226562 208.269531 225.109375 Z M 208.269531 225.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.609375 226.238281 C 208.609375 226.121094 208.515625 226.027344 208.398438 226.027344 C 208.28125 226.027344 208.1875 226.121094 208.1875 226.238281 C 208.1875 226.355469 208.28125 226.449219 208.398438 226.449219 C 208.515625 226.449219 208.609375 226.355469 208.609375 226.238281 Z M 208.609375 226.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.550781 228.5 C 208.550781 228.382812 208.457031 228.289062 208.339844 228.289062 C 208.222656 228.289062 208.128906 228.382812 208.128906 228.5 C 208.128906 228.617188 208.222656 228.710938 208.339844 228.710938 C 208.457031 228.710938 208.550781 228.617188 208.550781 228.5 Z M 208.550781 228.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.316406 231.863281 C 208.316406 231.746094 208.222656 231.652344 208.105469 231.652344 C 207.988281 231.652344 207.894531 231.746094 207.894531 231.863281 C 207.894531 231.980469 207.988281 232.074219 208.105469 232.074219 C 208.222656 232.074219 208.316406 231.980469 208.316406 231.863281 Z M 208.316406 231.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.792969 231.023438 C 209.792969 230.90625 209.699219 230.8125 209.582031 230.8125 C 209.464844 230.8125 209.371094 230.90625 209.371094 231.023438 C 209.371094 231.140625 209.464844 231.234375 209.582031 231.234375 C 209.699219 231.234375 209.792969 231.140625 209.792969 231.023438 Z M 209.792969 231.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.324219 233.285156 C 209.324219 233.167969 209.230469 233.074219 209.113281 233.074219 C 208.996094 233.074219 208.902344 233.167969 208.902344 233.285156 C 208.902344 233.402344 208.996094 233.496094 209.113281 233.496094 C 209.230469 233.496094 209.324219 233.402344 209.324219 233.285156 Z M 209.324219 233.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.511719 235.546875 C 209.511719 235.429688 209.417969 235.335938 209.300781 235.335938 C 209.183594 235.335938 209.089844 235.429688 209.089844 235.546875 C 209.089844 235.664062 209.183594 235.757812 209.300781 235.757812 C 209.417969 235.757812 209.511719 235.664062 209.511719 235.546875 Z M 209.511719 235.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.582031 232.425781 C 210.582031 232.308594 210.488281 232.214844 210.371094 232.214844 C 210.253906 232.214844 210.160156 232.308594 210.160156 232.425781 C 210.160156 232.542969 210.253906 232.636719 210.371094 232.636719 C 210.488281 232.636719 210.582031 232.542969 210.582031 232.425781 Z M 210.582031 232.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.085938 235.210938 C 212.085938 235.09375 211.992188 235 211.875 235 C 211.757812 235 211.664062 235.09375 211.664062 235.210938 C 211.664062 235.328125 211.757812 235.421875 211.875 235.421875 C 211.992188 235.421875 212.085938 235.328125 212.085938 235.210938 Z M 212.085938 235.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.433594 238.160156 C 212.433594 238.042969 212.339844 237.949219 212.222656 237.949219 C 212.105469 237.949219 212.011719 238.042969 212.011719 238.160156 C 212.011719 238.277344 212.105469 238.371094 212.222656 238.371094 C 212.339844 238.371094 212.433594 238.277344 212.433594 238.160156 Z M 212.433594 238.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.039062 240.863281 C 213.039062 240.746094 212.945312 240.652344 212.828125 240.652344 C 212.710938 240.652344 212.617188 240.746094 212.617188 240.863281 C 212.617188 240.980469 212.710938 241.074219 212.828125 241.074219 C 212.945312 241.074219 213.039062 240.980469 213.039062 240.863281 Z M 213.039062 240.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.808594 240.023438 C 213.808594 239.90625 213.714844 239.8125 213.597656 239.8125 C 213.480469 239.8125 213.386719 239.90625 213.386719 240.023438 C 213.386719 240.140625 213.480469 240.234375 213.597656 240.234375 C 213.714844 240.234375 213.808594 240.140625 213.808594 240.023438 Z M 213.808594 240.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.746094 242.617188 C 214.746094 242.5 214.652344 242.40625 214.535156 242.40625 C 214.417969 242.40625 214.324219 242.5 214.324219 242.617188 C 214.324219 242.734375 214.417969 242.828125 214.535156 242.828125 C 214.652344 242.828125 214.746094 242.734375 214.746094 242.617188 Z M 214.746094 242.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.140625 244.570312 C 212.140625 244.453125 212.046875 244.359375 211.929688 244.359375 C 211.8125 244.359375 211.71875 244.453125 211.71875 244.570312 C 211.71875 244.6875 211.8125 244.78125 211.929688 244.78125 C 212.046875 244.78125 212.140625 244.6875 212.140625 244.570312 Z M 212.140625 244.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.097656 241.519531 C 213.097656 241.402344 213.003906 241.308594 212.886719 241.308594 C 212.769531 241.308594 212.675781 241.402344 212.675781 241.519531 C 212.675781 241.636719 212.769531 241.730469 212.886719 241.730469 C 213.003906 241.730469 213.097656 241.636719 213.097656 241.519531 Z M 213.097656 241.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.140625 241.3125 C 213.140625 241.195312 213.046875 241.101562 212.929688 241.101562 C 212.8125 241.101562 212.71875 241.195312 212.71875 241.3125 C 212.71875 241.429688 212.8125 241.523438 212.929688 241.523438 C 213.046875 241.523438 213.140625 241.429688 213.140625 241.3125 Z M 213.140625 241.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.246094 244.8125 C 212.246094 244.695312 212.152344 244.601562 212.035156 244.601562 C 211.917969 244.601562 211.824219 244.695312 211.824219 244.8125 C 211.824219 244.929688 211.917969 245.023438 212.035156 245.023438 C 212.152344 245.023438 212.246094 244.929688 212.246094 244.8125 Z M 212.246094 244.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.585938 241.449219 C 210.585938 241.332031 210.492188 241.238281 210.375 241.238281 C 210.257812 241.238281 210.164062 241.332031 210.164062 241.449219 C 210.164062 241.566406 210.257812 241.660156 210.375 241.660156 C 210.492188 241.660156 210.585938 241.566406 210.585938 241.449219 Z M 210.585938 241.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.988281 240.570312 C 212.988281 240.453125 212.894531 240.359375 212.777344 240.359375 C 212.660156 240.359375 212.566406 240.453125 212.566406 240.570312 C 212.566406 240.6875 212.660156 240.78125 212.777344 240.78125 C 212.894531 240.78125 212.988281 240.6875 212.988281 240.570312 Z M 212.988281 240.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.015625 241.621094 C 212.015625 241.503906 211.921875 241.410156 211.804688 241.410156 C 211.6875 241.410156 211.59375 241.503906 211.59375 241.621094 C 211.59375 241.738281 211.6875 241.832031 211.804688 241.832031 C 211.921875 241.832031 212.015625 241.738281 212.015625 241.621094 Z M 212.015625 241.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.203125 238.296875 C 215.203125 238.179688 215.109375 238.085938 214.992188 238.085938 C 214.875 238.085938 214.78125 238.179688 214.78125 238.296875 C 214.78125 238.414062 214.875 238.507812 214.992188 238.507812 C 215.109375 238.507812 215.203125 238.414062 215.203125 238.296875 Z M 215.203125 238.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.554688 235.828125 C 215.554688 235.710938 215.460938 235.617188 215.34375 235.617188 C 215.226562 235.617188 215.132812 235.710938 215.132812 235.828125 C 215.132812 235.945312 215.226562 236.039062 215.34375 236.039062 C 215.460938 236.039062 215.554688 235.945312 215.554688 235.828125 Z M 215.554688 235.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.9375 237.636719 C 214.9375 237.519531 214.84375 237.425781 214.726562 237.425781 C 214.609375 237.425781 214.515625 237.519531 214.515625 237.636719 C 214.515625 237.753906 214.609375 237.847656 214.726562 237.847656 C 214.84375 237.847656 214.9375 237.753906 214.9375 237.636719 Z M 214.9375 237.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.703125 236.738281 C 213.703125 236.621094 213.609375 236.527344 213.492188 236.527344 C 213.375 236.527344 213.28125 236.621094 213.28125 236.738281 C 213.28125 236.855469 213.375 236.949219 213.492188 236.949219 C 213.609375 236.949219 213.703125 236.855469 213.703125 236.738281 Z M 213.703125 236.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.25 236.660156 C 214.25 236.542969 214.15625 236.449219 214.039062 236.449219 C 213.921875 236.449219 213.828125 236.542969 213.828125 236.660156 C 213.828125 236.777344 213.921875 236.871094 214.039062 236.871094 C 214.15625 236.871094 214.25 236.777344 214.25 236.660156 Z M 214.25 236.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.097656 238.332031 C 217.097656 238.214844 217.003906 238.121094 216.886719 238.121094 C 216.769531 238.121094 216.675781 238.214844 216.675781 238.332031 C 216.675781 238.449219 216.769531 238.542969 216.886719 238.542969 C 217.003906 238.542969 217.097656 238.449219 217.097656 238.332031 Z M 217.097656 238.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.414062 238.460938 C 218.414062 238.34375 218.320312 238.25 218.203125 238.25 C 218.085938 238.25 217.992188 238.34375 217.992188 238.460938 C 217.992188 238.578125 218.085938 238.671875 218.203125 238.671875 C 218.320312 238.671875 218.414062 238.578125 218.414062 238.460938 Z M 218.414062 238.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.496094 239.28125 C 218.496094 239.164062 218.402344 239.070312 218.285156 239.070312 C 218.167969 239.070312 218.074219 239.164062 218.074219 239.28125 C 218.074219 239.398438 218.167969 239.492188 218.285156 239.492188 C 218.402344 239.492188 218.496094 239.398438 218.496094 239.28125 Z M 218.496094 239.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.773438 242.855469 C 218.773438 242.738281 218.679688 242.644531 218.5625 242.644531 C 218.445312 242.644531 218.351562 242.738281 218.351562 242.855469 C 218.351562 242.972656 218.445312 243.066406 218.5625 243.066406 C 218.679688 243.066406 218.773438 242.972656 218.773438 242.855469 Z M 218.773438 242.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.269531 241.324219 C 215.269531 241.207031 215.175781 241.113281 215.058594 241.113281 C 214.941406 241.113281 214.847656 241.207031 214.847656 241.324219 C 214.847656 241.441406 214.941406 241.535156 215.058594 241.535156 C 215.175781 241.535156 215.269531 241.441406 215.269531 241.324219 Z M 215.269531 241.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.175781 240.542969 C 213.175781 240.425781 213.082031 240.332031 212.964844 240.332031 C 212.847656 240.332031 212.753906 240.425781 212.753906 240.542969 C 212.753906 240.660156 212.847656 240.753906 212.964844 240.753906 C 213.082031 240.753906 213.175781 240.660156 213.175781 240.542969 Z M 213.175781 240.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.484375 239.910156 C 214.484375 239.792969 214.390625 239.699219 214.273438 239.699219 C 214.15625 239.699219 214.0625 239.792969 214.0625 239.910156 C 214.0625 240.027344 214.15625 240.121094 214.273438 240.121094 C 214.390625 240.121094 214.484375 240.027344 214.484375 239.910156 Z M 214.484375 239.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.65625 238.851562 C 212.65625 238.734375 212.5625 238.640625 212.445312 238.640625 C 212.328125 238.640625 212.234375 238.734375 212.234375 238.851562 C 212.234375 238.96875 212.328125 239.0625 212.445312 239.0625 C 212.5625 239.0625 212.65625 238.96875 212.65625 238.851562 Z M 212.65625 238.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.539062 235.035156 C 209.539062 234.917969 209.445312 234.824219 209.328125 234.824219 C 209.210938 234.824219 209.117188 234.917969 209.117188 235.035156 C 209.117188 235.152344 209.210938 235.246094 209.328125 235.246094 C 209.445312 235.246094 209.539062 235.152344 209.539062 235.035156 Z M 209.539062 235.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.539062 237.464844 C 209.539062 237.347656 209.445312 237.253906 209.328125 237.253906 C 209.210938 237.253906 209.117188 237.347656 209.117188 237.464844 C 209.117188 237.582031 209.210938 237.675781 209.328125 237.675781 C 209.445312 237.675781 209.539062 237.582031 209.539062 237.464844 Z M 209.539062 237.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.277344 238.863281 C 206.277344 238.746094 206.183594 238.652344 206.066406 238.652344 C 205.949219 238.652344 205.855469 238.746094 205.855469 238.863281 C 205.855469 238.980469 205.949219 239.074219 206.066406 239.074219 C 206.183594 239.074219 206.277344 238.980469 206.277344 238.863281 Z M 206.277344 238.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.046875 238.089844 C 205.046875 237.972656 204.953125 237.878906 204.835938 237.878906 C 204.71875 237.878906 204.625 237.972656 204.625 238.089844 C 204.625 238.207031 204.71875 238.300781 204.835938 238.300781 C 204.953125 238.300781 205.046875 238.207031 205.046875 238.089844 Z M 205.046875 238.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.519531 240.394531 C 206.519531 240.277344 206.425781 240.183594 206.308594 240.183594 C 206.191406 240.183594 206.097656 240.277344 206.097656 240.394531 C 206.097656 240.511719 206.191406 240.605469 206.308594 240.605469 C 206.425781 240.605469 206.519531 240.511719 206.519531 240.394531 Z M 206.519531 240.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.09375 241.027344 C 202.09375 240.910156 202 240.816406 201.882812 240.816406 C 201.765625 240.816406 201.671875 240.910156 201.671875 241.027344 C 201.671875 241.144531 201.765625 241.238281 201.882812 241.238281 C 202 241.238281 202.09375 241.144531 202.09375 241.027344 Z M 202.09375 241.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.234375 238.796875 C 203.234375 238.679688 203.140625 238.585938 203.023438 238.585938 C 202.90625 238.585938 202.8125 238.679688 202.8125 238.796875 C 202.8125 238.914062 202.90625 239.007812 203.023438 239.007812 C 203.140625 239.007812 203.234375 238.914062 203.234375 238.796875 Z M 203.234375 238.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.601562 238.378906 C 202.601562 238.261719 202.507812 238.167969 202.390625 238.167969 C 202.273438 238.167969 202.179688 238.261719 202.179688 238.378906 C 202.179688 238.496094 202.273438 238.589844 202.390625 238.589844 C 202.507812 238.589844 202.601562 238.496094 202.601562 238.378906 Z M 202.601562 238.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.046875 233.867188 C 202.046875 233.75 201.953125 233.65625 201.835938 233.65625 C 201.71875 233.65625 201.625 233.75 201.625 233.867188 C 201.625 233.984375 201.71875 234.078125 201.835938 234.078125 C 201.953125 234.078125 202.046875 233.984375 202.046875 233.867188 Z M 202.046875 233.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.996094 233.890625 C 200.996094 233.773438 200.902344 233.679688 200.785156 233.679688 C 200.667969 233.679688 200.574219 233.773438 200.574219 233.890625 C 200.574219 234.007812 200.667969 234.101562 200.785156 234.101562 C 200.902344 234.101562 200.996094 234.007812 200.996094 233.890625 Z M 200.996094 233.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.140625 237.09375 C 203.140625 236.976562 203.046875 236.882812 202.929688 236.882812 C 202.8125 236.882812 202.71875 236.976562 202.71875 237.09375 C 202.71875 237.210938 202.8125 237.304688 202.929688 237.304688 C 203.046875 237.304688 203.140625 237.210938 203.140625 237.09375 Z M 203.140625 237.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.179688 236.359375 C 207.179688 236.242188 207.085938 236.148438 206.96875 236.148438 C 206.851562 236.148438 206.757812 236.242188 206.757812 236.359375 C 206.757812 236.476562 206.851562 236.570312 206.96875 236.570312 C 207.085938 236.570312 207.179688 236.476562 207.179688 236.359375 Z M 207.179688 236.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.5 238.804688 C 207.5 238.6875 207.40625 238.59375 207.289062 238.59375 C 207.171875 238.59375 207.078125 238.6875 207.078125 238.804688 C 207.078125 238.921875 207.171875 239.015625 207.289062 239.015625 C 207.40625 239.015625 207.5 238.921875 207.5 238.804688 Z M 207.5 238.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.464844 238.617188 C 210.464844 238.5 210.371094 238.40625 210.253906 238.40625 C 210.136719 238.40625 210.042969 238.5 210.042969 238.617188 C 210.042969 238.734375 210.136719 238.828125 210.253906 238.828125 C 210.371094 238.828125 210.464844 238.734375 210.464844 238.617188 Z M 210.464844 238.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.792969 238.65625 C 209.792969 238.539062 209.699219 238.445312 209.582031 238.445312 C 209.464844 238.445312 209.371094 238.539062 209.371094 238.65625 C 209.371094 238.773438 209.464844 238.867188 209.582031 238.867188 C 209.699219 238.867188 209.792969 238.773438 209.792969 238.65625 Z M 209.792969 238.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.890625 233.769531 C 212.890625 233.652344 212.796875 233.558594 212.679688 233.558594 C 212.5625 233.558594 212.46875 233.652344 212.46875 233.769531 C 212.46875 233.886719 212.5625 233.980469 212.679688 233.980469 C 212.796875 233.980469 212.890625 233.886719 212.890625 233.769531 Z M 212.890625 233.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.261719 232.363281 C 214.261719 232.246094 214.167969 232.152344 214.050781 232.152344 C 213.933594 232.152344 213.839844 232.246094 213.839844 232.363281 C 213.839844 232.480469 213.933594 232.574219 214.050781 232.574219 C 214.167969 232.574219 214.261719 232.480469 214.261719 232.363281 Z M 214.261719 232.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.300781 231.472656 C 214.300781 231.355469 214.207031 231.261719 214.089844 231.261719 C 213.972656 231.261719 213.878906 231.355469 213.878906 231.472656 C 213.878906 231.589844 213.972656 231.683594 214.089844 231.683594 C 214.207031 231.683594 214.300781 231.589844 214.300781 231.472656 Z M 214.300781 231.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.539062 230.433594 C 216.539062 230.316406 216.445312 230.222656 216.328125 230.222656 C 216.210938 230.222656 216.117188 230.316406 216.117188 230.433594 C 216.117188 230.550781 216.210938 230.644531 216.328125 230.644531 C 216.445312 230.644531 216.539062 230.550781 216.539062 230.433594 Z M 216.539062 230.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.832031 231.863281 C 213.832031 231.746094 213.738281 231.652344 213.621094 231.652344 C 213.503906 231.652344 213.410156 231.746094 213.410156 231.863281 C 213.410156 231.980469 213.503906 232.074219 213.621094 232.074219 C 213.738281 232.074219 213.832031 231.980469 213.832031 231.863281 Z M 213.832031 231.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.261719 233.367188 C 211.261719 233.25 211.167969 233.15625 211.050781 233.15625 C 210.933594 233.15625 210.839844 233.25 210.839844 233.367188 C 210.839844 233.484375 210.933594 233.578125 211.050781 233.578125 C 211.167969 233.578125 211.261719 233.484375 211.261719 233.367188 Z M 211.261719 233.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.78125 227.347656 C 211.78125 227.230469 211.6875 227.136719 211.570312 227.136719 C 211.453125 227.136719 211.359375 227.230469 211.359375 227.347656 C 211.359375 227.464844 211.453125 227.558594 211.570312 227.558594 C 211.6875 227.558594 211.78125 227.464844 211.78125 227.347656 Z M 211.78125 227.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.226562 224.65625 C 211.226562 224.539062 211.132812 224.445312 211.015625 224.445312 C 210.898438 224.445312 210.804688 224.539062 210.804688 224.65625 C 210.804688 224.773438 210.898438 224.867188 211.015625 224.867188 C 211.132812 224.867188 211.226562 224.773438 211.226562 224.65625 Z M 211.226562 224.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.265625 219.632812 C 211.265625 219.515625 211.171875 219.421875 211.054688 219.421875 C 210.9375 219.421875 210.84375 219.515625 210.84375 219.632812 C 210.84375 219.75 210.9375 219.84375 211.054688 219.84375 C 211.171875 219.84375 211.265625 219.75 211.265625 219.632812 Z M 211.265625 219.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.269531 220.667969 C 208.269531 220.550781 208.175781 220.457031 208.058594 220.457031 C 207.941406 220.457031 207.847656 220.550781 207.847656 220.667969 C 207.847656 220.785156 207.941406 220.878906 208.058594 220.878906 C 208.175781 220.878906 208.269531 220.785156 208.269531 220.667969 Z M 208.269531 220.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.09375 225.757812 C 206.09375 225.640625 206 225.546875 205.882812 225.546875 C 205.765625 225.546875 205.671875 225.640625 205.671875 225.757812 C 205.671875 225.875 205.765625 225.96875 205.882812 225.96875 C 206 225.96875 206.09375 225.875 206.09375 225.757812 Z M 206.09375 225.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.59375 227.171875 C 211.59375 227.054688 211.5 226.960938 211.382812 226.960938 C 211.265625 226.960938 211.171875 227.054688 211.171875 227.171875 C 211.171875 227.289062 211.265625 227.382812 211.382812 227.382812 C 211.5 227.382812 211.59375 227.289062 211.59375 227.171875 Z M 211.59375 227.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.273438 229.558594 C 214.273438 229.441406 214.179688 229.347656 214.0625 229.347656 C 213.945312 229.347656 213.851562 229.441406 213.851562 229.558594 C 213.851562 229.675781 213.945312 229.769531 214.0625 229.769531 C 214.179688 229.769531 214.273438 229.675781 214.273438 229.558594 Z M 214.273438 229.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.835938 230.871094 C 213.835938 230.753906 213.742188 230.660156 213.625 230.660156 C 213.507812 230.660156 213.414062 230.753906 213.414062 230.871094 C 213.414062 230.988281 213.507812 231.082031 213.625 231.082031 C 213.742188 231.082031 213.835938 230.988281 213.835938 230.871094 Z M 213.835938 230.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.433594 230.125 C 212.433594 230.007812 212.339844 229.914062 212.222656 229.914062 C 212.105469 229.914062 212.011719 230.007812 212.011719 230.125 C 212.011719 230.242188 212.105469 230.335938 212.222656 230.335938 C 212.339844 230.335938 212.433594 230.242188 212.433594 230.125 Z M 212.433594 230.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.582031 228.976562 C 214.582031 228.859375 214.488281 228.765625 214.371094 228.765625 C 214.253906 228.765625 214.160156 228.859375 214.160156 228.976562 C 214.160156 229.09375 214.253906 229.1875 214.371094 229.1875 C 214.488281 229.1875 214.582031 229.09375 214.582031 228.976562 Z M 214.582031 228.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.765625 229.550781 C 212.765625 229.433594 212.671875 229.339844 212.554688 229.339844 C 212.4375 229.339844 212.34375 229.433594 212.34375 229.550781 C 212.34375 229.667969 212.4375 229.761719 212.554688 229.761719 C 212.671875 229.761719 212.765625 229.667969 212.765625 229.550781 Z M 212.765625 229.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.570312 231.355469 C 212.570312 231.238281 212.476562 231.144531 212.359375 231.144531 C 212.242188 231.144531 212.148438 231.238281 212.148438 231.355469 C 212.148438 231.472656 212.242188 231.566406 212.359375 231.566406 C 212.476562 231.566406 212.570312 231.472656 212.570312 231.355469 Z M 212.570312 231.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.210938 232.945312 C 213.210938 232.828125 213.117188 232.734375 213 232.734375 C 212.882812 232.734375 212.789062 232.828125 212.789062 232.945312 C 212.789062 233.0625 212.882812 233.15625 213 233.15625 C 213.117188 233.15625 213.210938 233.0625 213.210938 232.945312 Z M 213.210938 232.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.410156 235.835938 C 213.410156 235.71875 213.316406 235.625 213.199219 235.625 C 213.082031 235.625 212.988281 235.71875 212.988281 235.835938 C 212.988281 235.953125 213.082031 236.046875 213.199219 236.046875 C 213.316406 236.046875 213.410156 235.953125 213.410156 235.835938 Z M 213.410156 235.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.734375 235.96875 C 213.734375 235.851562 213.640625 235.757812 213.523438 235.757812 C 213.40625 235.757812 213.3125 235.851562 213.3125 235.96875 C 213.3125 236.085938 213.40625 236.179688 213.523438 236.179688 C 213.640625 236.179688 213.734375 236.085938 213.734375 235.96875 Z M 213.734375 235.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.6875 238.335938 C 221.6875 238.21875 221.59375 238.125 221.476562 238.125 C 221.359375 238.125 221.265625 238.21875 221.265625 238.335938 C 221.265625 238.453125 221.359375 238.546875 221.476562 238.546875 C 221.59375 238.546875 221.6875 238.453125 221.6875 238.335938 Z M 221.6875 238.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 220.4375 240.890625 C 220.4375 240.773438 220.34375 240.679688 220.226562 240.679688 C 220.109375 240.679688 220.015625 240.773438 220.015625 240.890625 C 220.015625 241.007812 220.109375 241.101562 220.226562 241.101562 C 220.34375 241.101562 220.4375 241.007812 220.4375 240.890625 Z M 220.4375 240.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 220.933594 242.226562 C 220.933594 242.109375 220.839844 242.015625 220.722656 242.015625 C 220.605469 242.015625 220.511719 242.109375 220.511719 242.226562 C 220.511719 242.34375 220.605469 242.4375 220.722656 242.4375 C 220.839844 242.4375 220.933594 242.34375 220.933594 242.226562 Z M 220.933594 242.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.886719 244.453125 C 217.886719 244.335938 217.792969 244.242188 217.675781 244.242188 C 217.558594 244.242188 217.464844 244.335938 217.464844 244.453125 C 217.464844 244.570312 217.558594 244.664062 217.675781 244.664062 C 217.792969 244.664062 217.886719 244.570312 217.886719 244.453125 Z M 217.886719 244.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 220.707031 245.160156 C 220.707031 245.042969 220.613281 244.949219 220.496094 244.949219 C 220.378906 244.949219 220.285156 245.042969 220.285156 245.160156 C 220.285156 245.277344 220.378906 245.371094 220.496094 245.371094 C 220.613281 245.371094 220.707031 245.277344 220.707031 245.160156 Z M 220.707031 245.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.464844 248.703125 C 218.464844 248.585938 218.371094 248.492188 218.253906 248.492188 C 218.136719 248.492188 218.042969 248.585938 218.042969 248.703125 C 218.042969 248.820312 218.136719 248.914062 218.253906 248.914062 C 218.371094 248.914062 218.464844 248.820312 218.464844 248.703125 Z M 218.464844 248.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.199219 251.519531 C 218.199219 251.402344 218.105469 251.308594 217.988281 251.308594 C 217.871094 251.308594 217.777344 251.402344 217.777344 251.519531 C 217.777344 251.636719 217.871094 251.730469 217.988281 251.730469 C 218.105469 251.730469 218.199219 251.636719 218.199219 251.519531 Z M 218.199219 251.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.691406 249.8125 C 215.691406 249.695312 215.597656 249.601562 215.480469 249.601562 C 215.363281 249.601562 215.269531 249.695312 215.269531 249.8125 C 215.269531 249.929688 215.363281 250.023438 215.480469 250.023438 C 215.597656 250.023438 215.691406 249.929688 215.691406 249.8125 Z M 215.691406 249.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.78125 249.492188 C 216.78125 249.375 216.6875 249.28125 216.570312 249.28125 C 216.453125 249.28125 216.359375 249.375 216.359375 249.492188 C 216.359375 249.609375 216.453125 249.703125 216.570312 249.703125 C 216.6875 249.703125 216.78125 249.609375 216.78125 249.492188 Z M 216.78125 249.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.125 246.113281 C 217.125 245.996094 217.03125 245.902344 216.914062 245.902344 C 216.796875 245.902344 216.703125 245.996094 216.703125 246.113281 C 216.703125 246.230469 216.796875 246.324219 216.914062 246.324219 C 217.03125 246.324219 217.125 246.230469 217.125 246.113281 Z M 217.125 246.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.648438 246.433594 C 216.648438 246.316406 216.554688 246.222656 216.4375 246.222656 C 216.320312 246.222656 216.226562 246.316406 216.226562 246.433594 C 216.226562 246.550781 216.320312 246.644531 216.4375 246.644531 C 216.554688 246.644531 216.648438 246.550781 216.648438 246.433594 Z M 216.648438 246.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.042969 242.773438 C 218.042969 242.65625 217.949219 242.5625 217.832031 242.5625 C 217.714844 242.5625 217.621094 242.65625 217.621094 242.773438 C 217.621094 242.890625 217.714844 242.984375 217.832031 242.984375 C 217.949219 242.984375 218.042969 242.890625 218.042969 242.773438 Z M 218.042969 242.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.417969 241.660156 C 218.417969 241.542969 218.324219 241.449219 218.207031 241.449219 C 218.089844 241.449219 217.996094 241.542969 217.996094 241.660156 C 217.996094 241.777344 218.089844 241.871094 218.207031 241.871094 C 218.324219 241.871094 218.417969 241.777344 218.417969 241.660156 Z M 218.417969 241.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.242188 242.535156 C 219.242188 242.417969 219.148438 242.324219 219.03125 242.324219 C 218.914062 242.324219 218.820312 242.417969 218.820312 242.535156 C 218.820312 242.652344 218.914062 242.746094 219.03125 242.746094 C 219.148438 242.746094 219.242188 242.652344 219.242188 242.535156 Z M 219.242188 242.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.550781 240.664062 C 218.550781 240.546875 218.457031 240.453125 218.339844 240.453125 C 218.222656 240.453125 218.128906 240.546875 218.128906 240.664062 C 218.128906 240.78125 218.222656 240.875 218.339844 240.875 C 218.457031 240.875 218.550781 240.78125 218.550781 240.664062 Z M 218.550781 240.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.789062 239.652344 C 218.789062 239.535156 218.695312 239.441406 218.578125 239.441406 C 218.460938 239.441406 218.367188 239.535156 218.367188 239.652344 C 218.367188 239.769531 218.460938 239.863281 218.578125 239.863281 C 218.695312 239.863281 218.789062 239.769531 218.789062 239.652344 Z M 218.789062 239.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 220.515625 242.273438 C 220.515625 242.15625 220.421875 242.0625 220.304688 242.0625 C 220.1875 242.0625 220.09375 242.15625 220.09375 242.273438 C 220.09375 242.390625 220.1875 242.484375 220.304688 242.484375 C 220.421875 242.484375 220.515625 242.390625 220.515625 242.273438 Z M 220.515625 242.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 220.882812 241.367188 C 220.882812 241.25 220.789062 241.15625 220.671875 241.15625 C 220.554688 241.15625 220.460938 241.25 220.460938 241.367188 C 220.460938 241.484375 220.554688 241.578125 220.671875 241.578125 C 220.789062 241.578125 220.882812 241.484375 220.882812 241.367188 Z M 220.882812 241.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.730469 240.320312 C 219.730469 240.203125 219.636719 240.109375 219.519531 240.109375 C 219.402344 240.109375 219.308594 240.203125 219.308594 240.320312 C 219.308594 240.4375 219.402344 240.53125 219.519531 240.53125 C 219.636719 240.53125 219.730469 240.4375 219.730469 240.320312 Z M 219.730469 240.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.957031 239.640625 C 219.957031 239.523438 219.863281 239.429688 219.746094 239.429688 C 219.628906 239.429688 219.535156 239.523438 219.535156 239.640625 C 219.535156 239.757812 219.628906 239.851562 219.746094 239.851562 C 219.863281 239.851562 219.957031 239.757812 219.957031 239.640625 Z M 219.957031 239.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.625 237.082031 C 217.625 236.964844 217.53125 236.871094 217.414062 236.871094 C 217.296875 236.871094 217.203125 236.964844 217.203125 237.082031 C 217.203125 237.199219 217.296875 237.292969 217.414062 237.292969 C 217.53125 237.292969 217.625 237.199219 217.625 237.082031 Z M 217.625 237.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.976562 243.261719 C 216.976562 243.144531 216.882812 243.050781 216.765625 243.050781 C 216.648438 243.050781 216.554688 243.144531 216.554688 243.261719 C 216.554688 243.378906 216.648438 243.472656 216.765625 243.472656 C 216.882812 243.472656 216.976562 243.378906 216.976562 243.261719 Z M 216.976562 243.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.988281 245.179688 C 219.988281 245.0625 219.894531 244.96875 219.777344 244.96875 C 219.660156 244.96875 219.566406 245.0625 219.566406 245.179688 C 219.566406 245.296875 219.660156 245.390625 219.777344 245.390625 C 219.894531 245.390625 219.988281 245.296875 219.988281 245.179688 Z M 219.988281 245.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.789062 243.210938 C 218.789062 243.09375 218.695312 243 218.578125 243 C 218.460938 243 218.367188 243.09375 218.367188 243.210938 C 218.367188 243.328125 218.460938 243.421875 218.578125 243.421875 C 218.695312 243.421875 218.789062 243.328125 218.789062 243.210938 Z M 218.789062 243.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 220.027344 245.21875 C 220.027344 245.101562 219.933594 245.007812 219.816406 245.007812 C 219.699219 245.007812 219.605469 245.101562 219.605469 245.21875 C 219.605469 245.335938 219.699219 245.429688 219.816406 245.429688 C 219.933594 245.429688 220.027344 245.335938 220.027344 245.21875 Z M 220.027344 245.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.398438 245.957031 C 218.398438 245.839844 218.304688 245.746094 218.1875 245.746094 C 218.070312 245.746094 217.976562 245.839844 217.976562 245.957031 C 217.976562 246.074219 218.070312 246.167969 218.1875 246.167969 C 218.304688 246.167969 218.398438 246.074219 218.398438 245.957031 Z M 218.398438 245.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.195312 241.691406 C 217.195312 241.574219 217.101562 241.480469 216.984375 241.480469 C 216.867188 241.480469 216.773438 241.574219 216.773438 241.691406 C 216.773438 241.808594 216.867188 241.902344 216.984375 241.902344 C 217.101562 241.902344 217.195312 241.808594 217.195312 241.691406 Z M 217.195312 241.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.992188 240.296875 C 213.992188 240.179688 213.898438 240.085938 213.78125 240.085938 C 213.664062 240.085938 213.570312 240.179688 213.570312 240.296875 C 213.570312 240.414062 213.664062 240.507812 213.78125 240.507812 C 213.898438 240.507812 213.992188 240.414062 213.992188 240.296875 Z M 213.992188 240.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.878906 247.019531 C 217.878906 246.902344 217.785156 246.808594 217.667969 246.808594 C 217.550781 246.808594 217.457031 246.902344 217.457031 247.019531 C 217.457031 247.136719 217.550781 247.230469 217.667969 247.230469 C 217.785156 247.230469 217.878906 247.136719 217.878906 247.019531 Z M 217.878906 247.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.828125 250.40625 C 216.828125 250.289062 216.734375 250.195312 216.617188 250.195312 C 216.5 250.195312 216.40625 250.289062 216.40625 250.40625 C 216.40625 250.523438 216.5 250.617188 216.617188 250.617188 C 216.734375 250.617188 216.828125 250.523438 216.828125 250.40625 Z M 216.828125 250.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.121094 251.996094 C 216.121094 251.878906 216.027344 251.785156 215.910156 251.785156 C 215.792969 251.785156 215.699219 251.878906 215.699219 251.996094 C 215.699219 252.113281 215.792969 252.207031 215.910156 252.207031 C 216.027344 252.207031 216.121094 252.113281 216.121094 251.996094 Z M 216.121094 251.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.511719 248.316406 C 218.511719 248.199219 218.417969 248.105469 218.300781 248.105469 C 218.183594 248.105469 218.089844 248.199219 218.089844 248.316406 C 218.089844 248.433594 218.183594 248.527344 218.300781 248.527344 C 218.417969 248.527344 218.511719 248.433594 218.511719 248.316406 Z M 218.511719 248.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.484375 250.183594 C 219.484375 250.066406 219.390625 249.972656 219.273438 249.972656 C 219.15625 249.972656 219.0625 250.066406 219.0625 250.183594 C 219.0625 250.300781 219.15625 250.394531 219.273438 250.394531 C 219.390625 250.394531 219.484375 250.300781 219.484375 250.183594 Z M 219.484375 250.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 220.984375 253.445312 C 220.984375 253.328125 220.890625 253.234375 220.773438 253.234375 C 220.65625 253.234375 220.5625 253.328125 220.5625 253.445312 C 220.5625 253.5625 220.65625 253.65625 220.773438 253.65625 C 220.890625 253.65625 220.984375 253.5625 220.984375 253.445312 Z M 220.984375 253.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.964844 251.832031 C 218.964844 251.714844 218.871094 251.621094 218.753906 251.621094 C 218.636719 251.621094 218.542969 251.714844 218.542969 251.832031 C 218.542969 251.949219 218.636719 252.042969 218.753906 252.042969 C 218.871094 252.042969 218.964844 251.949219 218.964844 251.832031 Z M 218.964844 251.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218 253.625 C 218 253.507812 217.90625 253.414062 217.789062 253.414062 C 217.671875 253.414062 217.578125 253.507812 217.578125 253.625 C 217.578125 253.742188 217.671875 253.835938 217.789062 253.835938 C 217.90625 253.835938 218 253.742188 218 253.625 Z M 218 253.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.289062 252.785156 C 218.289062 252.667969 218.195312 252.574219 218.078125 252.574219 C 217.960938 252.574219 217.867188 252.667969 217.867188 252.785156 C 217.867188 252.902344 217.960938 252.996094 218.078125 252.996094 C 218.195312 252.996094 218.289062 252.902344 218.289062 252.785156 Z M 218.289062 252.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.515625 250.019531 C 217.515625 249.902344 217.421875 249.808594 217.304688 249.808594 C 217.1875 249.808594 217.09375 249.902344 217.09375 250.019531 C 217.09375 250.136719 217.1875 250.230469 217.304688 250.230469 C 217.421875 250.230469 217.515625 250.136719 217.515625 250.019531 Z M 217.515625 250.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.660156 251.992188 C 214.660156 251.875 214.566406 251.78125 214.449219 251.78125 C 214.332031 251.78125 214.238281 251.875 214.238281 251.992188 C 214.238281 252.109375 214.332031 252.203125 214.449219 252.203125 C 214.566406 252.203125 214.660156 252.109375 214.660156 251.992188 Z M 214.660156 251.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.730469 250.917969 C 212.730469 250.800781 212.636719 250.707031 212.519531 250.707031 C 212.402344 250.707031 212.308594 250.800781 212.308594 250.917969 C 212.308594 251.035156 212.402344 251.128906 212.519531 251.128906 C 212.636719 251.128906 212.730469 251.035156 212.730469 250.917969 Z M 212.730469 250.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.683594 248.882812 C 213.683594 248.765625 213.589844 248.671875 213.472656 248.671875 C 213.355469 248.671875 213.261719 248.765625 213.261719 248.882812 C 213.261719 249 213.355469 249.09375 213.472656 249.09375 C 213.589844 249.09375 213.683594 249 213.683594 248.882812 Z M 213.683594 248.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.203125 248.71875 C 216.203125 248.601562 216.109375 248.507812 215.992188 248.507812 C 215.875 248.507812 215.78125 248.601562 215.78125 248.71875 C 215.78125 248.835938 215.875 248.929688 215.992188 248.929688 C 216.109375 248.929688 216.203125 248.835938 216.203125 248.71875 Z M 216.203125 248.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.445312 250.132812 C 216.445312 250.015625 216.351562 249.921875 216.234375 249.921875 C 216.117188 249.921875 216.023438 250.015625 216.023438 250.132812 C 216.023438 250.25 216.117188 250.34375 216.234375 250.34375 C 216.351562 250.34375 216.445312 250.25 216.445312 250.132812 Z M 216.445312 250.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.742188 249.710938 C 217.742188 249.59375 217.648438 249.5 217.53125 249.5 C 217.414062 249.5 217.320312 249.59375 217.320312 249.710938 C 217.320312 249.828125 217.414062 249.921875 217.53125 249.921875 C 217.648438 249.921875 217.742188 249.828125 217.742188 249.710938 Z M 217.742188 249.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.554688 247.230469 C 214.554688 247.113281 214.460938 247.019531 214.34375 247.019531 C 214.226562 247.019531 214.132812 247.113281 214.132812 247.230469 C 214.132812 247.347656 214.226562 247.441406 214.34375 247.441406 C 214.460938 247.441406 214.554688 247.347656 214.554688 247.230469 Z M 214.554688 247.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.492188 250.550781 C 211.492188 250.433594 211.398438 250.339844 211.28125 250.339844 C 211.164062 250.339844 211.070312 250.433594 211.070312 250.550781 C 211.070312 250.667969 211.164062 250.761719 211.28125 250.761719 C 211.398438 250.761719 211.492188 250.667969 211.492188 250.550781 Z M 211.492188 250.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.324219 249.671875 C 210.324219 249.554688 210.230469 249.460938 210.113281 249.460938 C 209.996094 249.460938 209.902344 249.554688 209.902344 249.671875 C 209.902344 249.789062 209.996094 249.882812 210.113281 249.882812 C 210.230469 249.882812 210.324219 249.789062 210.324219 249.671875 Z M 210.324219 249.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.511719 249.980469 C 208.511719 249.863281 208.417969 249.769531 208.300781 249.769531 C 208.183594 249.769531 208.089844 249.863281 208.089844 249.980469 C 208.089844 250.097656 208.183594 250.191406 208.300781 250.191406 C 208.417969 250.191406 208.511719 250.097656 208.511719 249.980469 Z M 208.511719 249.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.691406 241.988281 C 211.691406 241.871094 211.597656 241.777344 211.480469 241.777344 C 211.363281 241.777344 211.269531 241.871094 211.269531 241.988281 C 211.269531 242.105469 211.363281 242.199219 211.480469 242.199219 C 211.597656 242.199219 211.691406 242.105469 211.691406 241.988281 Z M 211.691406 241.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.550781 244.707031 C 211.550781 244.589844 211.457031 244.496094 211.339844 244.496094 C 211.222656 244.496094 211.128906 244.589844 211.128906 244.707031 C 211.128906 244.824219 211.222656 244.917969 211.339844 244.917969 C 211.457031 244.917969 211.550781 244.824219 211.550781 244.707031 Z M 211.550781 244.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.289062 240.207031 C 214.289062 240.089844 214.195312 239.996094 214.078125 239.996094 C 213.960938 239.996094 213.867188 240.089844 213.867188 240.207031 C 213.867188 240.324219 213.960938 240.417969 214.078125 240.417969 C 214.195312 240.417969 214.289062 240.324219 214.289062 240.207031 Z M 214.289062 240.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.691406 238.144531 C 214.691406 238.027344 214.597656 237.933594 214.480469 237.933594 C 214.363281 237.933594 214.269531 238.027344 214.269531 238.144531 C 214.269531 238.261719 214.363281 238.355469 214.480469 238.355469 C 214.597656 238.355469 214.691406 238.261719 214.691406 238.144531 Z M 214.691406 238.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.757812 238.703125 C 214.757812 238.585938 214.664062 238.492188 214.546875 238.492188 C 214.429688 238.492188 214.335938 238.585938 214.335938 238.703125 C 214.335938 238.820312 214.429688 238.914062 214.546875 238.914062 C 214.664062 238.914062 214.757812 238.820312 214.757812 238.703125 Z M 214.757812 238.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.011719 239.683594 C 215.011719 239.566406 214.917969 239.472656 214.800781 239.472656 C 214.683594 239.472656 214.589844 239.566406 214.589844 239.683594 C 214.589844 239.800781 214.683594 239.894531 214.800781 239.894531 C 214.917969 239.894531 215.011719 239.800781 215.011719 239.683594 Z M 215.011719 239.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.980469 242.570312 C 211.980469 242.453125 211.886719 242.359375 211.769531 242.359375 C 211.652344 242.359375 211.558594 242.453125 211.558594 242.570312 C 211.558594 242.6875 211.652344 242.78125 211.769531 242.78125 C 211.886719 242.78125 211.980469 242.6875 211.980469 242.570312 Z M 211.980469 242.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.539062 241.882812 C 207.539062 241.765625 207.445312 241.671875 207.328125 241.671875 C 207.210938 241.671875 207.117188 241.765625 207.117188 241.882812 C 207.117188 242 207.210938 242.09375 207.328125 242.09375 C 207.445312 242.09375 207.539062 242 207.539062 241.882812 Z M 207.539062 241.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.394531 236.199219 C 206.394531 236.082031 206.300781 235.988281 206.183594 235.988281 C 206.066406 235.988281 205.972656 236.082031 205.972656 236.199219 C 205.972656 236.316406 206.066406 236.410156 206.183594 236.410156 C 206.300781 236.410156 206.394531 236.316406 206.394531 236.199219 Z M 206.394531 236.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.71875 237.332031 C 206.71875 237.214844 206.625 237.121094 206.507812 237.121094 C 206.390625 237.121094 206.296875 237.214844 206.296875 237.332031 C 206.296875 237.449219 206.390625 237.542969 206.507812 237.542969 C 206.625 237.542969 206.71875 237.449219 206.71875 237.332031 Z M 206.71875 237.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.460938 238.914062 C 209.460938 238.796875 209.367188 238.703125 209.25 238.703125 C 209.132812 238.703125 209.039062 238.796875 209.039062 238.914062 C 209.039062 239.03125 209.132812 239.125 209.25 239.125 C 209.367188 239.125 209.460938 239.03125 209.460938 238.914062 Z M 209.460938 238.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206 237.929688 C 206 237.8125 205.90625 237.71875 205.789062 237.71875 C 205.671875 237.71875 205.578125 237.8125 205.578125 237.929688 C 205.578125 238.046875 205.671875 238.140625 205.789062 238.140625 C 205.90625 238.140625 206 238.046875 206 237.929688 Z M 206 237.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.960938 238.171875 C 204.960938 238.054688 204.867188 237.960938 204.75 237.960938 C 204.632812 237.960938 204.539062 238.054688 204.539062 238.171875 C 204.539062 238.289062 204.632812 238.382812 204.75 238.382812 C 204.867188 238.382812 204.960938 238.289062 204.960938 238.171875 Z M 204.960938 238.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.496094 237.824219 C 203.496094 237.707031 203.402344 237.613281 203.285156 237.613281 C 203.167969 237.613281 203.074219 237.707031 203.074219 237.824219 C 203.074219 237.941406 203.167969 238.035156 203.285156 238.035156 C 203.402344 238.035156 203.496094 237.941406 203.496094 237.824219 Z M 203.496094 237.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.78125 237.621094 C 202.78125 237.503906 202.6875 237.410156 202.570312 237.410156 C 202.453125 237.410156 202.359375 237.503906 202.359375 237.621094 C 202.359375 237.738281 202.453125 237.832031 202.570312 237.832031 C 202.6875 237.832031 202.78125 237.738281 202.78125 237.621094 Z M 202.78125 237.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.578125 236.023438 C 206.578125 235.90625 206.484375 235.8125 206.367188 235.8125 C 206.25 235.8125 206.15625 235.90625 206.15625 236.023438 C 206.15625 236.140625 206.25 236.234375 206.367188 236.234375 C 206.484375 236.234375 206.578125 236.140625 206.578125 236.023438 Z M 206.578125 236.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.726562 235.996094 C 205.726562 235.878906 205.632812 235.785156 205.515625 235.785156 C 205.398438 235.785156 205.304688 235.878906 205.304688 235.996094 C 205.304688 236.113281 205.398438 236.207031 205.515625 236.207031 C 205.632812 236.207031 205.726562 236.113281 205.726562 235.996094 Z M 205.726562 235.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.972656 233.550781 C 204.972656 233.433594 204.878906 233.339844 204.761719 233.339844 C 204.644531 233.339844 204.550781 233.433594 204.550781 233.550781 C 204.550781 233.667969 204.644531 233.761719 204.761719 233.761719 C 204.878906 233.761719 204.972656 233.667969 204.972656 233.550781 Z M 204.972656 233.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.078125 235.722656 C 200.078125 235.605469 199.984375 235.511719 199.867188 235.511719 C 199.75 235.511719 199.65625 235.605469 199.65625 235.722656 C 199.65625 235.839844 199.75 235.933594 199.867188 235.933594 C 199.984375 235.933594 200.078125 235.839844 200.078125 235.722656 Z M 200.078125 235.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.890625 232.667969 C 196.890625 232.550781 196.796875 232.457031 196.679688 232.457031 C 196.5625 232.457031 196.46875 232.550781 196.46875 232.667969 C 196.46875 232.785156 196.5625 232.878906 196.679688 232.878906 C 196.796875 232.878906 196.890625 232.785156 196.890625 232.667969 Z M 196.890625 232.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.472656 234.1875 C 193.472656 234.070312 193.378906 233.976562 193.261719 233.976562 C 193.144531 233.976562 193.050781 234.070312 193.050781 234.1875 C 193.050781 234.304688 193.144531 234.398438 193.261719 234.398438 C 193.378906 234.398438 193.472656 234.304688 193.472656 234.1875 Z M 193.472656 234.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.484375 231.054688 C 193.484375 230.9375 193.390625 230.84375 193.273438 230.84375 C 193.15625 230.84375 193.0625 230.9375 193.0625 231.054688 C 193.0625 231.171875 193.15625 231.265625 193.273438 231.265625 C 193.390625 231.265625 193.484375 231.171875 193.484375 231.054688 Z M 193.484375 231.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.191406 231.890625 C 194.191406 231.773438 194.097656 231.679688 193.980469 231.679688 C 193.863281 231.679688 193.769531 231.773438 193.769531 231.890625 C 193.769531 232.007812 193.863281 232.101562 193.980469 232.101562 C 194.097656 232.101562 194.191406 232.007812 194.191406 231.890625 Z M 194.191406 231.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.972656 231.902344 C 199.972656 231.785156 199.878906 231.691406 199.761719 231.691406 C 199.644531 231.691406 199.550781 231.785156 199.550781 231.902344 C 199.550781 232.019531 199.644531 232.113281 199.761719 232.113281 C 199.878906 232.113281 199.972656 232.019531 199.972656 231.902344 Z M 199.972656 231.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.382812 226.457031 C 199.382812 226.339844 199.289062 226.246094 199.171875 226.246094 C 199.054688 226.246094 198.960938 226.339844 198.960938 226.457031 C 198.960938 226.574219 199.054688 226.667969 199.171875 226.667969 C 199.289062 226.667969 199.382812 226.574219 199.382812 226.457031 Z M 199.382812 226.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.414062 227.917969 C 201.414062 227.800781 201.320312 227.707031 201.203125 227.707031 C 201.085938 227.707031 200.992188 227.800781 200.992188 227.917969 C 200.992188 228.035156 201.085938 228.128906 201.203125 228.128906 C 201.320312 228.128906 201.414062 228.035156 201.414062 227.917969 Z M 201.414062 227.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.179688 231.652344 C 200.179688 231.535156 200.085938 231.441406 199.96875 231.441406 C 199.851562 231.441406 199.757812 231.535156 199.757812 231.652344 C 199.757812 231.769531 199.851562 231.863281 199.96875 231.863281 C 200.085938 231.863281 200.179688 231.769531 200.179688 231.652344 Z M 200.179688 231.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.554688 232.765625 C 199.554688 232.648438 199.460938 232.554688 199.34375 232.554688 C 199.226562 232.554688 199.132812 232.648438 199.132812 232.765625 C 199.132812 232.882812 199.226562 232.976562 199.34375 232.976562 C 199.460938 232.976562 199.554688 232.882812 199.554688 232.765625 Z M 199.554688 232.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.984375 234.464844 C 202.984375 234.347656 202.890625 234.253906 202.773438 234.253906 C 202.65625 234.253906 202.5625 234.347656 202.5625 234.464844 C 202.5625 234.582031 202.65625 234.675781 202.773438 234.675781 C 202.890625 234.675781 202.984375 234.582031 202.984375 234.464844 Z M 202.984375 234.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.824219 234.429688 C 201.824219 234.3125 201.730469 234.21875 201.613281 234.21875 C 201.496094 234.21875 201.402344 234.3125 201.402344 234.429688 C 201.402344 234.546875 201.496094 234.640625 201.613281 234.640625 C 201.730469 234.640625 201.824219 234.546875 201.824219 234.429688 Z M 201.824219 234.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.25 233.613281 C 201.25 233.496094 201.15625 233.402344 201.039062 233.402344 C 200.921875 233.402344 200.828125 233.496094 200.828125 233.613281 C 200.828125 233.730469 200.921875 233.824219 201.039062 233.824219 C 201.15625 233.824219 201.25 233.730469 201.25 233.613281 Z M 201.25 233.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.894531 229.652344 C 202.894531 229.535156 202.800781 229.441406 202.683594 229.441406 C 202.566406 229.441406 202.472656 229.535156 202.472656 229.652344 C 202.472656 229.769531 202.566406 229.863281 202.683594 229.863281 C 202.800781 229.863281 202.894531 229.769531 202.894531 229.652344 Z M 202.894531 229.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.660156 229.613281 C 204.660156 229.496094 204.566406 229.402344 204.449219 229.402344 C 204.332031 229.402344 204.238281 229.496094 204.238281 229.613281 C 204.238281 229.730469 204.332031 229.824219 204.449219 229.824219 C 204.566406 229.824219 204.660156 229.730469 204.660156 229.613281 Z M 204.660156 229.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.992188 233.945312 C 204.992188 233.828125 204.898438 233.734375 204.78125 233.734375 C 204.664062 233.734375 204.570312 233.828125 204.570312 233.945312 C 204.570312 234.0625 204.664062 234.15625 204.78125 234.15625 C 204.898438 234.15625 204.992188 234.0625 204.992188 233.945312 Z M 204.992188 233.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.898438 231.695312 C 206.898438 231.578125 206.804688 231.484375 206.6875 231.484375 C 206.570312 231.484375 206.476562 231.578125 206.476562 231.695312 C 206.476562 231.8125 206.570312 231.90625 206.6875 231.90625 C 206.804688 231.90625 206.898438 231.8125 206.898438 231.695312 Z M 206.898438 231.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.984375 235.574219 C 205.984375 235.457031 205.890625 235.363281 205.773438 235.363281 C 205.65625 235.363281 205.5625 235.457031 205.5625 235.574219 C 205.5625 235.691406 205.65625 235.785156 205.773438 235.785156 C 205.890625 235.785156 205.984375 235.691406 205.984375 235.574219 Z M 205.984375 235.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.648438 233.441406 C 205.648438 233.324219 205.554688 233.230469 205.4375 233.230469 C 205.320312 233.230469 205.226562 233.324219 205.226562 233.441406 C 205.226562 233.558594 205.320312 233.652344 205.4375 233.652344 C 205.554688 233.652344 205.648438 233.558594 205.648438 233.441406 Z M 205.648438 233.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.410156 236.027344 C 208.410156 235.910156 208.316406 235.816406 208.199219 235.816406 C 208.082031 235.816406 207.988281 235.910156 207.988281 236.027344 C 207.988281 236.144531 208.082031 236.238281 208.199219 236.238281 C 208.316406 236.238281 208.410156 236.144531 208.410156 236.027344 Z M 208.410156 236.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.992188 239.054688 C 211.992188 238.9375 211.898438 238.84375 211.78125 238.84375 C 211.664062 238.84375 211.570312 238.9375 211.570312 239.054688 C 211.570312 239.171875 211.664062 239.265625 211.78125 239.265625 C 211.898438 239.265625 211.992188 239.171875 211.992188 239.054688 Z M 211.992188 239.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.046875 236.925781 C 215.046875 236.808594 214.953125 236.714844 214.835938 236.714844 C 214.71875 236.714844 214.625 236.808594 214.625 236.925781 C 214.625 237.042969 214.71875 237.136719 214.835938 237.136719 C 214.953125 237.136719 215.046875 237.042969 215.046875 236.925781 Z M 215.046875 236.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.972656 237.011719 C 213.972656 236.894531 213.878906 236.800781 213.761719 236.800781 C 213.644531 236.800781 213.550781 236.894531 213.550781 237.011719 C 213.550781 237.128906 213.644531 237.222656 213.761719 237.222656 C 213.878906 237.222656 213.972656 237.128906 213.972656 237.011719 Z M 213.972656 237.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.007812 236.699219 C 216.007812 236.582031 215.914062 236.488281 215.796875 236.488281 C 215.679688 236.488281 215.585938 236.582031 215.585938 236.699219 C 215.585938 236.816406 215.679688 236.910156 215.796875 236.910156 C 215.914062 236.910156 216.007812 236.816406 216.007812 236.699219 Z M 216.007812 236.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.46875 232.011719 C 217.46875 231.894531 217.375 231.800781 217.257812 231.800781 C 217.140625 231.800781 217.046875 231.894531 217.046875 232.011719 C 217.046875 232.128906 217.140625 232.222656 217.257812 232.222656 C 217.375 232.222656 217.46875 232.128906 217.46875 232.011719 Z M 217.46875 232.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.980469 230.6875 C 219.980469 230.570312 219.886719 230.476562 219.769531 230.476562 C 219.652344 230.476562 219.558594 230.570312 219.558594 230.6875 C 219.558594 230.804688 219.652344 230.898438 219.769531 230.898438 C 219.886719 230.898438 219.980469 230.804688 219.980469 230.6875 Z M 219.980469 230.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.679688 232.441406 C 219.679688 232.324219 219.585938 232.230469 219.46875 232.230469 C 219.351562 232.230469 219.257812 232.324219 219.257812 232.441406 C 219.257812 232.558594 219.351562 232.652344 219.46875 232.652344 C 219.585938 232.652344 219.679688 232.558594 219.679688 232.441406 Z M 219.679688 232.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.054688 232.84375 C 219.054688 232.726562 218.960938 232.632812 218.84375 232.632812 C 218.726562 232.632812 218.632812 232.726562 218.632812 232.84375 C 218.632812 232.960938 218.726562 233.054688 218.84375 233.054688 C 218.960938 233.054688 219.054688 232.960938 219.054688 232.84375 Z M 219.054688 232.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.660156 231.910156 C 214.660156 231.792969 214.566406 231.699219 214.449219 231.699219 C 214.332031 231.699219 214.238281 231.792969 214.238281 231.910156 C 214.238281 232.027344 214.332031 232.121094 214.449219 232.121094 C 214.566406 232.121094 214.660156 232.027344 214.660156 231.910156 Z M 214.660156 231.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.5625 232.105469 C 212.5625 231.988281 212.46875 231.894531 212.351562 231.894531 C 212.234375 231.894531 212.140625 231.988281 212.140625 232.105469 C 212.140625 232.222656 212.234375 232.316406 212.351562 232.316406 C 212.46875 232.316406 212.5625 232.222656 212.5625 232.105469 Z M 212.5625 232.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.085938 229.945312 C 212.085938 229.828125 211.992188 229.734375 211.875 229.734375 C 211.757812 229.734375 211.664062 229.828125 211.664062 229.945312 C 211.664062 230.0625 211.757812 230.15625 211.875 230.15625 C 211.992188 230.15625 212.085938 230.0625 212.085938 229.945312 Z M 212.085938 229.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.558594 227.859375 C 211.558594 227.742188 211.464844 227.648438 211.347656 227.648438 C 211.230469 227.648438 211.136719 227.742188 211.136719 227.859375 C 211.136719 227.976562 211.230469 228.070312 211.347656 228.070312 C 211.464844 228.070312 211.558594 227.976562 211.558594 227.859375 Z M 211.558594 227.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.800781 231.105469 C 209.800781 230.988281 209.707031 230.894531 209.589844 230.894531 C 209.472656 230.894531 209.378906 230.988281 209.378906 231.105469 C 209.378906 231.222656 209.472656 231.316406 209.589844 231.316406 C 209.707031 231.316406 209.800781 231.222656 209.800781 231.105469 Z M 209.800781 231.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.835938 229.117188 C 208.835938 229 208.742188 228.90625 208.625 228.90625 C 208.507812 228.90625 208.414062 229 208.414062 229.117188 C 208.414062 229.234375 208.507812 229.328125 208.625 229.328125 C 208.742188 229.328125 208.835938 229.234375 208.835938 229.117188 Z M 208.835938 229.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.960938 229.832031 C 208.960938 229.714844 208.867188 229.621094 208.75 229.621094 C 208.632812 229.621094 208.539062 229.714844 208.539062 229.832031 C 208.539062 229.949219 208.632812 230.042969 208.75 230.042969 C 208.867188 230.042969 208.960938 229.949219 208.960938 229.832031 Z M 208.960938 229.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.917969 230.722656 C 207.917969 230.605469 207.824219 230.511719 207.707031 230.511719 C 207.589844 230.511719 207.496094 230.605469 207.496094 230.722656 C 207.496094 230.839844 207.589844 230.933594 207.707031 230.933594 C 207.824219 230.933594 207.917969 230.839844 207.917969 230.722656 Z M 207.917969 230.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.738281 232.195312 C 208.738281 232.078125 208.644531 231.984375 208.527344 231.984375 C 208.410156 231.984375 208.316406 232.078125 208.316406 232.195312 C 208.316406 232.3125 208.410156 232.40625 208.527344 232.40625 C 208.644531 232.40625 208.738281 232.3125 208.738281 232.195312 Z M 208.738281 232.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.90625 229.996094 C 207.90625 229.878906 207.8125 229.785156 207.695312 229.785156 C 207.578125 229.785156 207.484375 229.878906 207.484375 229.996094 C 207.484375 230.113281 207.578125 230.207031 207.695312 230.207031 C 207.8125 230.207031 207.90625 230.113281 207.90625 229.996094 Z M 207.90625 229.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.640625 224.640625 C 205.640625 224.523438 205.546875 224.429688 205.429688 224.429688 C 205.3125 224.429688 205.21875 224.523438 205.21875 224.640625 C 205.21875 224.757812 205.3125 224.851562 205.429688 224.851562 C 205.546875 224.851562 205.640625 224.757812 205.640625 224.640625 Z M 205.640625 224.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.257812 228.246094 C 205.257812 228.128906 205.164062 228.035156 205.046875 228.035156 C 204.929688 228.035156 204.835938 228.128906 204.835938 228.246094 C 204.835938 228.363281 204.929688 228.457031 205.046875 228.457031 C 205.164062 228.457031 205.257812 228.363281 205.257812 228.246094 Z M 205.257812 228.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.242188 226.640625 C 205.242188 226.523438 205.148438 226.429688 205.03125 226.429688 C 204.914062 226.429688 204.820312 226.523438 204.820312 226.640625 C 204.820312 226.757812 204.914062 226.851562 205.03125 226.851562 C 205.148438 226.851562 205.242188 226.757812 205.242188 226.640625 Z M 205.242188 226.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.871094 227.363281 C 203.871094 227.246094 203.777344 227.152344 203.660156 227.152344 C 203.542969 227.152344 203.449219 227.246094 203.449219 227.363281 C 203.449219 227.480469 203.542969 227.574219 203.660156 227.574219 C 203.777344 227.574219 203.871094 227.480469 203.871094 227.363281 Z M 203.871094 227.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.875 227.035156 C 202.875 226.917969 202.78125 226.824219 202.664062 226.824219 C 202.546875 226.824219 202.453125 226.917969 202.453125 227.035156 C 202.453125 227.152344 202.546875 227.246094 202.664062 227.246094 C 202.78125 227.246094 202.875 227.152344 202.875 227.035156 Z M 202.875 227.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.300781 224.367188 C 201.300781 224.25 201.207031 224.15625 201.089844 224.15625 C 200.972656 224.15625 200.878906 224.25 200.878906 224.367188 C 200.878906 224.484375 200.972656 224.578125 201.089844 224.578125 C 201.207031 224.578125 201.300781 224.484375 201.300781 224.367188 Z M 201.300781 224.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.4375 224.148438 C 201.4375 224.03125 201.34375 223.9375 201.226562 223.9375 C 201.109375 223.9375 201.015625 224.03125 201.015625 224.148438 C 201.015625 224.265625 201.109375 224.359375 201.226562 224.359375 C 201.34375 224.359375 201.4375 224.265625 201.4375 224.148438 Z M 201.4375 224.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.167969 227.308594 C 203.167969 227.191406 203.074219 227.097656 202.957031 227.097656 C 202.839844 227.097656 202.746094 227.191406 202.746094 227.308594 C 202.746094 227.425781 202.839844 227.519531 202.957031 227.519531 C 203.074219 227.519531 203.167969 227.425781 203.167969 227.308594 Z M 203.167969 227.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.726562 226.488281 C 203.726562 226.371094 203.632812 226.277344 203.515625 226.277344 C 203.398438 226.277344 203.304688 226.371094 203.304688 226.488281 C 203.304688 226.605469 203.398438 226.699219 203.515625 226.699219 C 203.632812 226.699219 203.726562 226.605469 203.726562 226.488281 Z M 203.726562 226.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.183594 219.300781 C 202.183594 219.183594 202.089844 219.089844 201.972656 219.089844 C 201.855469 219.089844 201.761719 219.183594 201.761719 219.300781 C 201.761719 219.417969 201.855469 219.511719 201.972656 219.511719 C 202.089844 219.511719 202.183594 219.417969 202.183594 219.300781 Z M 202.183594 219.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.617188 220.0625 C 203.617188 219.945312 203.523438 219.851562 203.40625 219.851562 C 203.289062 219.851562 203.195312 219.945312 203.195312 220.0625 C 203.195312 220.179688 203.289062 220.273438 203.40625 220.273438 C 203.523438 220.273438 203.617188 220.179688 203.617188 220.0625 Z M 203.617188 220.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.710938 221.382812 C 200.710938 221.265625 200.617188 221.171875 200.5 221.171875 C 200.382812 221.171875 200.289062 221.265625 200.289062 221.382812 C 200.289062 221.5 200.382812 221.59375 200.5 221.59375 C 200.617188 221.59375 200.710938 221.5 200.710938 221.382812 Z M 200.710938 221.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.355469 220.007812 C 199.355469 219.890625 199.261719 219.796875 199.144531 219.796875 C 199.027344 219.796875 198.933594 219.890625 198.933594 220.007812 C 198.933594 220.125 199.027344 220.21875 199.144531 220.21875 C 199.261719 220.21875 199.355469 220.125 199.355469 220.007812 Z M 199.355469 220.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.492188 221.902344 C 198.492188 221.785156 198.398438 221.691406 198.28125 221.691406 C 198.164062 221.691406 198.070312 221.785156 198.070312 221.902344 C 198.070312 222.019531 198.164062 222.113281 198.28125 222.113281 C 198.398438 222.113281 198.492188 222.019531 198.492188 221.902344 Z M 198.492188 221.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.765625 219.605469 C 199.765625 219.488281 199.671875 219.394531 199.554688 219.394531 C 199.4375 219.394531 199.34375 219.488281 199.34375 219.605469 C 199.34375 219.722656 199.4375 219.816406 199.554688 219.816406 C 199.671875 219.816406 199.765625 219.722656 199.765625 219.605469 Z M 199.765625 219.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.023438 220.125 C 199.023438 220.007812 198.929688 219.914062 198.8125 219.914062 C 198.695312 219.914062 198.601562 220.007812 198.601562 220.125 C 198.601562 220.242188 198.695312 220.335938 198.8125 220.335938 C 198.929688 220.335938 199.023438 220.242188 199.023438 220.125 Z M 199.023438 220.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.386719 218.601562 C 198.386719 218.484375 198.292969 218.390625 198.175781 218.390625 C 198.058594 218.390625 197.964844 218.484375 197.964844 218.601562 C 197.964844 218.71875 198.058594 218.8125 198.175781 218.8125 C 198.292969 218.8125 198.386719 218.71875 198.386719 218.601562 Z M 198.386719 218.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.804688 219.589844 C 197.804688 219.472656 197.710938 219.378906 197.59375 219.378906 C 197.476562 219.378906 197.382812 219.472656 197.382812 219.589844 C 197.382812 219.707031 197.476562 219.800781 197.59375 219.800781 C 197.710938 219.800781 197.804688 219.707031 197.804688 219.589844 Z M 197.804688 219.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.941406 218.046875 C 196.941406 217.929688 196.847656 217.835938 196.730469 217.835938 C 196.613281 217.835938 196.519531 217.929688 196.519531 218.046875 C 196.519531 218.164062 196.613281 218.257812 196.730469 218.257812 C 196.847656 218.257812 196.941406 218.164062 196.941406 218.046875 Z M 196.941406 218.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.976562 218.394531 C 194.976562 218.277344 194.882812 218.183594 194.765625 218.183594 C 194.648438 218.183594 194.554688 218.277344 194.554688 218.394531 C 194.554688 218.511719 194.648438 218.605469 194.765625 218.605469 C 194.882812 218.605469 194.976562 218.511719 194.976562 218.394531 Z M 194.976562 218.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.089844 220.402344 C 194.089844 220.285156 193.996094 220.191406 193.878906 220.191406 C 193.761719 220.191406 193.667969 220.285156 193.667969 220.402344 C 193.667969 220.519531 193.761719 220.613281 193.878906 220.613281 C 193.996094 220.613281 194.089844 220.519531 194.089844 220.402344 Z M 194.089844 220.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.554688 221.871094 C 196.554688 221.753906 196.460938 221.660156 196.34375 221.660156 C 196.226562 221.660156 196.132812 221.753906 196.132812 221.871094 C 196.132812 221.988281 196.226562 222.082031 196.34375 222.082031 C 196.460938 222.082031 196.554688 221.988281 196.554688 221.871094 Z M 196.554688 221.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.835938 224.179688 C 196.835938 224.0625 196.742188 223.96875 196.625 223.96875 C 196.507812 223.96875 196.414062 224.0625 196.414062 224.179688 C 196.414062 224.296875 196.507812 224.390625 196.625 224.390625 C 196.742188 224.390625 196.835938 224.296875 196.835938 224.179688 Z M 196.835938 224.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.496094 226.242188 C 194.496094 226.125 194.402344 226.03125 194.285156 226.03125 C 194.167969 226.03125 194.074219 226.125 194.074219 226.242188 C 194.074219 226.359375 194.167969 226.453125 194.285156 226.453125 C 194.402344 226.453125 194.496094 226.359375 194.496094 226.242188 Z M 194.496094 226.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.761719 222.066406 C 196.761719 221.949219 196.667969 221.855469 196.550781 221.855469 C 196.433594 221.855469 196.339844 221.949219 196.339844 222.066406 C 196.339844 222.183594 196.433594 222.277344 196.550781 222.277344 C 196.667969 222.277344 196.761719 222.183594 196.761719 222.066406 Z M 196.761719 222.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.128906 220.613281 C 198.128906 220.496094 198.035156 220.402344 197.917969 220.402344 C 197.800781 220.402344 197.707031 220.496094 197.707031 220.613281 C 197.707031 220.730469 197.800781 220.824219 197.917969 220.824219 C 198.035156 220.824219 198.128906 220.730469 198.128906 220.613281 Z M 198.128906 220.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.480469 219.613281 C 198.480469 219.496094 198.386719 219.402344 198.269531 219.402344 C 198.152344 219.402344 198.058594 219.496094 198.058594 219.613281 C 198.058594 219.730469 198.152344 219.824219 198.269531 219.824219 C 198.386719 219.824219 198.480469 219.730469 198.480469 219.613281 Z M 198.480469 219.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.695312 219.5625 C 199.695312 219.445312 199.601562 219.351562 199.484375 219.351562 C 199.367188 219.351562 199.273438 219.445312 199.273438 219.5625 C 199.273438 219.679688 199.367188 219.773438 199.484375 219.773438 C 199.601562 219.773438 199.695312 219.679688 199.695312 219.5625 Z M 199.695312 219.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.886719 220.539062 C 198.886719 220.421875 198.792969 220.328125 198.675781 220.328125 C 198.558594 220.328125 198.464844 220.421875 198.464844 220.539062 C 198.464844 220.65625 198.558594 220.75 198.675781 220.75 C 198.792969 220.75 198.886719 220.65625 198.886719 220.539062 Z M 198.886719 220.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.148438 220.488281 C 200.148438 220.371094 200.054688 220.277344 199.9375 220.277344 C 199.820312 220.277344 199.726562 220.371094 199.726562 220.488281 C 199.726562 220.605469 199.820312 220.699219 199.9375 220.699219 C 200.054688 220.699219 200.148438 220.605469 200.148438 220.488281 Z M 200.148438 220.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.546875 217.15625 C 201.546875 217.039062 201.453125 216.945312 201.335938 216.945312 C 201.21875 216.945312 201.125 217.039062 201.125 217.15625 C 201.125 217.273438 201.21875 217.367188 201.335938 217.367188 C 201.453125 217.367188 201.546875 217.273438 201.546875 217.15625 Z M 201.546875 217.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.710938 217.734375 C 202.710938 217.617188 202.617188 217.523438 202.5 217.523438 C 202.382812 217.523438 202.289062 217.617188 202.289062 217.734375 C 202.289062 217.851562 202.382812 217.945312 202.5 217.945312 C 202.617188 217.945312 202.710938 217.851562 202.710938 217.734375 Z M 202.710938 217.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.277344 215.628906 C 203.277344 215.511719 203.183594 215.417969 203.066406 215.417969 C 202.949219 215.417969 202.855469 215.511719 202.855469 215.628906 C 202.855469 215.746094 202.949219 215.839844 203.066406 215.839844 C 203.183594 215.839844 203.277344 215.746094 203.277344 215.628906 Z M 203.277344 215.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.46875 215.210938 C 199.46875 215.09375 199.375 215 199.257812 215 C 199.140625 215 199.046875 215.09375 199.046875 215.210938 C 199.046875 215.328125 199.140625 215.421875 199.257812 215.421875 C 199.375 215.421875 199.46875 215.328125 199.46875 215.210938 Z M 199.46875 215.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.304688 214.210938 C 197.304688 214.09375 197.210938 214 197.09375 214 C 196.976562 214 196.882812 214.09375 196.882812 214.210938 C 196.882812 214.328125 196.976562 214.421875 197.09375 214.421875 C 197.210938 214.421875 197.304688 214.328125 197.304688 214.210938 Z M 197.304688 214.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.625 210.023438 C 193.625 209.90625 193.53125 209.8125 193.414062 209.8125 C 193.296875 209.8125 193.203125 209.90625 193.203125 210.023438 C 193.203125 210.140625 193.296875 210.234375 193.414062 210.234375 C 193.53125 210.234375 193.625 210.140625 193.625 210.023438 Z M 193.625 210.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.746094 209.363281 C 192.746094 209.246094 192.652344 209.152344 192.535156 209.152344 C 192.417969 209.152344 192.324219 209.246094 192.324219 209.363281 C 192.324219 209.480469 192.417969 209.574219 192.535156 209.574219 C 192.652344 209.574219 192.746094 209.480469 192.746094 209.363281 Z M 192.746094 209.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.738281 211.367188 C 189.738281 211.25 189.644531 211.15625 189.527344 211.15625 C 189.410156 211.15625 189.316406 211.25 189.316406 211.367188 C 189.316406 211.484375 189.410156 211.578125 189.527344 211.578125 C 189.644531 211.578125 189.738281 211.484375 189.738281 211.367188 Z M 189.738281 211.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.253906 214.28125 C 189.253906 214.164062 189.160156 214.070312 189.042969 214.070312 C 188.925781 214.070312 188.832031 214.164062 188.832031 214.28125 C 188.832031 214.398438 188.925781 214.492188 189.042969 214.492188 C 189.160156 214.492188 189.253906 214.398438 189.253906 214.28125 Z M 189.253906 214.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.269531 215.875 C 189.269531 215.757812 189.175781 215.664062 189.058594 215.664062 C 188.941406 215.664062 188.847656 215.757812 188.847656 215.875 C 188.847656 215.992188 188.941406 216.085938 189.058594 216.085938 C 189.175781 216.085938 189.269531 215.992188 189.269531 215.875 Z M 189.269531 215.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.851562 212.105469 C 188.851562 211.988281 188.757812 211.894531 188.640625 211.894531 C 188.523438 211.894531 188.429688 211.988281 188.429688 212.105469 C 188.429688 212.222656 188.523438 212.316406 188.640625 212.316406 C 188.757812 212.316406 188.851562 212.222656 188.851562 212.105469 Z M 188.851562 212.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.878906 211.339844 C 185.878906 211.222656 185.785156 211.128906 185.667969 211.128906 C 185.550781 211.128906 185.457031 211.222656 185.457031 211.339844 C 185.457031 211.457031 185.550781 211.550781 185.667969 211.550781 C 185.785156 211.550781 185.878906 211.457031 185.878906 211.339844 Z M 185.878906 211.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.441406 204.820312 C 184.441406 204.703125 184.347656 204.609375 184.230469 204.609375 C 184.113281 204.609375 184.019531 204.703125 184.019531 204.820312 C 184.019531 204.9375 184.113281 205.03125 184.230469 205.03125 C 184.347656 205.03125 184.441406 204.9375 184.441406 204.820312 Z M 184.441406 204.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.515625 207.367188 C 185.515625 207.25 185.421875 207.15625 185.304688 207.15625 C 185.1875 207.15625 185.09375 207.25 185.09375 207.367188 C 185.09375 207.484375 185.1875 207.578125 185.304688 207.578125 C 185.421875 207.578125 185.515625 207.484375 185.515625 207.367188 Z M 185.515625 207.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.449219 204.320312 C 185.449219 204.203125 185.355469 204.109375 185.238281 204.109375 C 185.121094 204.109375 185.027344 204.203125 185.027344 204.320312 C 185.027344 204.4375 185.121094 204.53125 185.238281 204.53125 C 185.355469 204.53125 185.449219 204.4375 185.449219 204.320312 Z M 185.449219 204.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.757812 204.929688 C 189.757812 204.8125 189.664062 204.71875 189.546875 204.71875 C 189.429688 204.71875 189.335938 204.8125 189.335938 204.929688 C 189.335938 205.046875 189.429688 205.140625 189.546875 205.140625 C 189.664062 205.140625 189.757812 205.046875 189.757812 204.929688 Z M 189.757812 204.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.367188 208.175781 C 184.367188 208.058594 184.273438 207.964844 184.15625 207.964844 C 184.039062 207.964844 183.945312 208.058594 183.945312 208.175781 C 183.945312 208.292969 184.039062 208.386719 184.15625 208.386719 C 184.273438 208.386719 184.367188 208.292969 184.367188 208.175781 Z M 184.367188 208.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.144531 205.726562 C 186.144531 205.609375 186.050781 205.515625 185.933594 205.515625 C 185.816406 205.515625 185.722656 205.609375 185.722656 205.726562 C 185.722656 205.84375 185.816406 205.9375 185.933594 205.9375 C 186.050781 205.9375 186.144531 205.84375 186.144531 205.726562 Z M 186.144531 205.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.886719 204.773438 C 186.886719 204.65625 186.792969 204.5625 186.675781 204.5625 C 186.558594 204.5625 186.464844 204.65625 186.464844 204.773438 C 186.464844 204.890625 186.558594 204.984375 186.675781 204.984375 C 186.792969 204.984375 186.886719 204.890625 186.886719 204.773438 Z M 186.886719 204.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.925781 205.214844 C 187.925781 205.097656 187.832031 205.003906 187.714844 205.003906 C 187.597656 205.003906 187.503906 205.097656 187.503906 205.214844 C 187.503906 205.332031 187.597656 205.425781 187.714844 205.425781 C 187.832031 205.425781 187.925781 205.332031 187.925781 205.214844 Z M 187.925781 205.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.828125 205.398438 C 184.828125 205.28125 184.734375 205.1875 184.617188 205.1875 C 184.5 205.1875 184.40625 205.28125 184.40625 205.398438 C 184.40625 205.515625 184.5 205.609375 184.617188 205.609375 C 184.734375 205.609375 184.828125 205.515625 184.828125 205.398438 Z M 184.828125 205.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.867188 201.765625 C 188.867188 201.648438 188.773438 201.554688 188.65625 201.554688 C 188.539062 201.554688 188.445312 201.648438 188.445312 201.765625 C 188.445312 201.882812 188.539062 201.976562 188.65625 201.976562 C 188.773438 201.976562 188.867188 201.882812 188.867188 201.765625 Z M 188.867188 201.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.734375 199.699219 C 189.734375 199.582031 189.640625 199.488281 189.523438 199.488281 C 189.40625 199.488281 189.3125 199.582031 189.3125 199.699219 C 189.3125 199.816406 189.40625 199.910156 189.523438 199.910156 C 189.640625 199.910156 189.734375 199.816406 189.734375 199.699219 Z M 189.734375 199.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.292969 196.902344 C 190.292969 196.785156 190.199219 196.691406 190.082031 196.691406 C 189.964844 196.691406 189.871094 196.785156 189.871094 196.902344 C 189.871094 197.019531 189.964844 197.113281 190.082031 197.113281 C 190.199219 197.113281 190.292969 197.019531 190.292969 196.902344 Z M 190.292969 196.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.84375 195.871094 C 190.84375 195.753906 190.75 195.660156 190.632812 195.660156 C 190.515625 195.660156 190.421875 195.753906 190.421875 195.871094 C 190.421875 195.988281 190.515625 196.082031 190.632812 196.082031 C 190.75 196.082031 190.84375 195.988281 190.84375 195.871094 Z M 190.84375 195.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.96875 197.332031 C 190.96875 197.214844 190.875 197.121094 190.757812 197.121094 C 190.640625 197.121094 190.546875 197.214844 190.546875 197.332031 C 190.546875 197.449219 190.640625 197.542969 190.757812 197.542969 C 190.875 197.542969 190.96875 197.449219 190.96875 197.332031 Z M 190.96875 197.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.164062 198.121094 C 188.164062 198.003906 188.070312 197.910156 187.953125 197.910156 C 187.835938 197.910156 187.742188 198.003906 187.742188 198.121094 C 187.742188 198.238281 187.835938 198.332031 187.953125 198.332031 C 188.070312 198.332031 188.164062 198.238281 188.164062 198.121094 Z M 188.164062 198.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.910156 198.230469 C 189.910156 198.113281 189.816406 198.019531 189.699219 198.019531 C 189.582031 198.019531 189.488281 198.113281 189.488281 198.230469 C 189.488281 198.347656 189.582031 198.441406 189.699219 198.441406 C 189.816406 198.441406 189.910156 198.347656 189.910156 198.230469 Z M 189.910156 198.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.070312 197.78125 C 193.070312 197.664062 192.976562 197.570312 192.859375 197.570312 C 192.742188 197.570312 192.648438 197.664062 192.648438 197.78125 C 192.648438 197.898438 192.742188 197.992188 192.859375 197.992188 C 192.976562 197.992188 193.070312 197.898438 193.070312 197.78125 Z M 193.070312 197.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.890625 196.925781 C 193.890625 196.808594 193.796875 196.714844 193.679688 196.714844 C 193.5625 196.714844 193.46875 196.808594 193.46875 196.925781 C 193.46875 197.042969 193.5625 197.136719 193.679688 197.136719 C 193.796875 197.136719 193.890625 197.042969 193.890625 196.925781 Z M 193.890625 196.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.046875 197.785156 C 195.046875 197.667969 194.953125 197.574219 194.835938 197.574219 C 194.71875 197.574219 194.625 197.667969 194.625 197.785156 C 194.625 197.902344 194.71875 197.996094 194.835938 197.996094 C 194.953125 197.996094 195.046875 197.902344 195.046875 197.785156 Z M 195.046875 197.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.195312 196.742188 C 198.195312 196.625 198.101562 196.53125 197.984375 196.53125 C 197.867188 196.53125 197.773438 196.625 197.773438 196.742188 C 197.773438 196.859375 197.867188 196.953125 197.984375 196.953125 C 198.101562 196.953125 198.195312 196.859375 198.195312 196.742188 Z M 198.195312 196.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.238281 197.96875 C 194.238281 197.851562 194.144531 197.757812 194.027344 197.757812 C 193.910156 197.757812 193.816406 197.851562 193.816406 197.96875 C 193.816406 198.085938 193.910156 198.179688 194.027344 198.179688 C 194.144531 198.179688 194.238281 198.085938 194.238281 197.96875 Z M 194.238281 197.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.710938 197.800781 C 192.710938 197.683594 192.617188 197.589844 192.5 197.589844 C 192.382812 197.589844 192.289062 197.683594 192.289062 197.800781 C 192.289062 197.917969 192.382812 198.011719 192.5 198.011719 C 192.617188 198.011719 192.710938 197.917969 192.710938 197.800781 Z M 192.710938 197.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.253906 199.660156 C 195.253906 199.542969 195.160156 199.449219 195.042969 199.449219 C 194.925781 199.449219 194.832031 199.542969 194.832031 199.660156 C 194.832031 199.777344 194.925781 199.871094 195.042969 199.871094 C 195.160156 199.871094 195.253906 199.777344 195.253906 199.660156 Z M 195.253906 199.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.734375 196.359375 C 192.734375 196.242188 192.640625 196.148438 192.523438 196.148438 C 192.40625 196.148438 192.3125 196.242188 192.3125 196.359375 C 192.3125 196.476562 192.40625 196.570312 192.523438 196.570312 C 192.640625 196.570312 192.734375 196.476562 192.734375 196.359375 Z M 192.734375 196.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.3125 197.820312 C 194.3125 197.703125 194.21875 197.609375 194.101562 197.609375 C 193.984375 197.609375 193.890625 197.703125 193.890625 197.820312 C 193.890625 197.9375 193.984375 198.03125 194.101562 198.03125 C 194.21875 198.03125 194.3125 197.9375 194.3125 197.820312 Z M 194.3125 197.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.511719 193.820312 C 194.511719 193.703125 194.417969 193.609375 194.300781 193.609375 C 194.183594 193.609375 194.089844 193.703125 194.089844 193.820312 C 194.089844 193.9375 194.183594 194.03125 194.300781 194.03125 C 194.417969 194.03125 194.511719 193.9375 194.511719 193.820312 Z M 194.511719 193.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.894531 191.074219 C 195.894531 190.957031 195.800781 190.863281 195.683594 190.863281 C 195.566406 190.863281 195.472656 190.957031 195.472656 191.074219 C 195.472656 191.191406 195.566406 191.285156 195.683594 191.285156 C 195.800781 191.285156 195.894531 191.191406 195.894531 191.074219 Z M 195.894531 191.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.882812 189.789062 C 197.882812 189.671875 197.789062 189.578125 197.671875 189.578125 C 197.554688 189.578125 197.460938 189.671875 197.460938 189.789062 C 197.460938 189.90625 197.554688 190 197.671875 190 C 197.789062 190 197.882812 189.90625 197.882812 189.789062 Z M 197.882812 189.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.824219 188.722656 C 194.824219 188.605469 194.730469 188.511719 194.613281 188.511719 C 194.496094 188.511719 194.402344 188.605469 194.402344 188.722656 C 194.402344 188.839844 194.496094 188.933594 194.613281 188.933594 C 194.730469 188.933594 194.824219 188.839844 194.824219 188.722656 Z M 194.824219 188.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.78125 188.574219 C 198.78125 188.457031 198.6875 188.363281 198.570312 188.363281 C 198.453125 188.363281 198.359375 188.457031 198.359375 188.574219 C 198.359375 188.691406 198.453125 188.785156 198.570312 188.785156 C 198.6875 188.785156 198.78125 188.691406 198.78125 188.574219 Z M 198.78125 188.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.167969 184.984375 C 196.167969 184.867188 196.074219 184.773438 195.957031 184.773438 C 195.839844 184.773438 195.746094 184.867188 195.746094 184.984375 C 195.746094 185.101562 195.839844 185.195312 195.957031 185.195312 C 196.074219 185.195312 196.167969 185.101562 196.167969 184.984375 Z M 196.167969 184.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.789062 184.472656 C 194.789062 184.355469 194.695312 184.261719 194.578125 184.261719 C 194.460938 184.261719 194.367188 184.355469 194.367188 184.472656 C 194.367188 184.589844 194.460938 184.683594 194.578125 184.683594 C 194.695312 184.683594 194.789062 184.589844 194.789062 184.472656 Z M 194.789062 184.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.035156 183.804688 C 194.035156 183.6875 193.941406 183.59375 193.824219 183.59375 C 193.707031 183.59375 193.613281 183.6875 193.613281 183.804688 C 193.613281 183.921875 193.707031 184.015625 193.824219 184.015625 C 193.941406 184.015625 194.035156 183.921875 194.035156 183.804688 Z M 194.035156 183.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.757812 184.132812 C 197.757812 184.015625 197.664062 183.921875 197.546875 183.921875 C 197.429688 183.921875 197.335938 184.015625 197.335938 184.132812 C 197.335938 184.25 197.429688 184.34375 197.546875 184.34375 C 197.664062 184.34375 197.757812 184.25 197.757812 184.132812 Z M 197.757812 184.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.6875 186.53125 C 199.6875 186.414062 199.59375 186.320312 199.476562 186.320312 C 199.359375 186.320312 199.265625 186.414062 199.265625 186.53125 C 199.265625 186.648438 199.359375 186.742188 199.476562 186.742188 C 199.59375 186.742188 199.6875 186.648438 199.6875 186.53125 Z M 199.6875 186.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.3125 187.0625 C 197.3125 186.945312 197.21875 186.851562 197.101562 186.851562 C 196.984375 186.851562 196.890625 186.945312 196.890625 187.0625 C 196.890625 187.179688 196.984375 187.273438 197.101562 187.273438 C 197.21875 187.273438 197.3125 187.179688 197.3125 187.0625 Z M 197.3125 187.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.75 188.53125 C 200.75 188.414062 200.65625 188.320312 200.539062 188.320312 C 200.421875 188.320312 200.328125 188.414062 200.328125 188.53125 C 200.328125 188.648438 200.421875 188.742188 200.539062 188.742188 C 200.65625 188.742188 200.75 188.648438 200.75 188.53125 Z M 200.75 188.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.753906 185.578125 C 197.753906 185.460938 197.660156 185.367188 197.542969 185.367188 C 197.425781 185.367188 197.332031 185.460938 197.332031 185.578125 C 197.332031 185.695312 197.425781 185.789062 197.542969 185.789062 C 197.660156 185.789062 197.753906 185.695312 197.753906 185.578125 Z M 197.753906 185.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.269531 183.074219 C 197.269531 182.957031 197.175781 182.863281 197.058594 182.863281 C 196.941406 182.863281 196.847656 182.957031 196.847656 183.074219 C 196.847656 183.191406 196.941406 183.285156 197.058594 183.285156 C 197.175781 183.285156 197.269531 183.191406 197.269531 183.074219 Z M 197.269531 183.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.386719 185.171875 C 198.386719 185.054688 198.292969 184.960938 198.175781 184.960938 C 198.058594 184.960938 197.964844 185.054688 197.964844 185.171875 C 197.964844 185.289062 198.058594 185.382812 198.175781 185.382812 C 198.292969 185.382812 198.386719 185.289062 198.386719 185.171875 Z M 198.386719 185.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.351562 187.496094 C 199.351562 187.378906 199.257812 187.285156 199.140625 187.285156 C 199.023438 187.285156 198.929688 187.378906 198.929688 187.496094 C 198.929688 187.613281 199.023438 187.707031 199.140625 187.707031 C 199.257812 187.707031 199.351562 187.613281 199.351562 187.496094 Z M 199.351562 187.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.414062 189.570312 C 196.414062 189.453125 196.320312 189.359375 196.203125 189.359375 C 196.085938 189.359375 195.992188 189.453125 195.992188 189.570312 C 195.992188 189.6875 196.085938 189.78125 196.203125 189.78125 C 196.320312 189.78125 196.414062 189.6875 196.414062 189.570312 Z M 196.414062 189.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.523438 187.28125 C 194.523438 187.164062 194.429688 187.070312 194.3125 187.070312 C 194.195312 187.070312 194.101562 187.164062 194.101562 187.28125 C 194.101562 187.398438 194.195312 187.492188 194.3125 187.492188 C 194.429688 187.492188 194.523438 187.398438 194.523438 187.28125 Z M 194.523438 187.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.183594 185.332031 C 197.183594 185.214844 197.089844 185.121094 196.972656 185.121094 C 196.855469 185.121094 196.761719 185.214844 196.761719 185.332031 C 196.761719 185.449219 196.855469 185.542969 196.972656 185.542969 C 197.089844 185.542969 197.183594 185.449219 197.183594 185.332031 Z M 197.183594 185.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.738281 183.292969 C 195.738281 183.175781 195.644531 183.082031 195.527344 183.082031 C 195.410156 183.082031 195.316406 183.175781 195.316406 183.292969 C 195.316406 183.410156 195.410156 183.503906 195.527344 183.503906 C 195.644531 183.503906 195.738281 183.410156 195.738281 183.292969 Z M 195.738281 183.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.769531 180.460938 C 193.769531 180.34375 193.675781 180.25 193.558594 180.25 C 193.441406 180.25 193.347656 180.34375 193.347656 180.460938 C 193.347656 180.578125 193.441406 180.671875 193.558594 180.671875 C 193.675781 180.671875 193.769531 180.578125 193.769531 180.460938 Z M 193.769531 180.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.453125 177.730469 C 194.453125 177.613281 194.359375 177.519531 194.242188 177.519531 C 194.125 177.519531 194.03125 177.613281 194.03125 177.730469 C 194.03125 177.847656 194.125 177.941406 194.242188 177.941406 C 194.359375 177.941406 194.453125 177.847656 194.453125 177.730469 Z M 194.453125 177.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.726562 179.125 C 195.726562 179.007812 195.632812 178.914062 195.515625 178.914062 C 195.398438 178.914062 195.304688 179.007812 195.304688 179.125 C 195.304688 179.242188 195.398438 179.335938 195.515625 179.335938 C 195.632812 179.335938 195.726562 179.242188 195.726562 179.125 Z M 195.726562 179.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.519531 180.921875 C 196.519531 180.804688 196.425781 180.710938 196.308594 180.710938 C 196.191406 180.710938 196.097656 180.804688 196.097656 180.921875 C 196.097656 181.039062 196.191406 181.132812 196.308594 181.132812 C 196.425781 181.132812 196.519531 181.039062 196.519531 180.921875 Z M 196.519531 180.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.378906 185.085938 C 196.378906 184.96875 196.285156 184.875 196.167969 184.875 C 196.050781 184.875 195.957031 184.96875 195.957031 185.085938 C 195.957031 185.203125 196.050781 185.296875 196.167969 185.296875 C 196.285156 185.296875 196.378906 185.203125 196.378906 185.085938 Z M 196.378906 185.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.921875 184.5 C 194.921875 184.382812 194.828125 184.289062 194.710938 184.289062 C 194.59375 184.289062 194.5 184.382812 194.5 184.5 C 194.5 184.617188 194.59375 184.710938 194.710938 184.710938 C 194.828125 184.710938 194.921875 184.617188 194.921875 184.5 Z M 194.921875 184.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.953125 187.191406 C 194.953125 187.074219 194.859375 186.980469 194.742188 186.980469 C 194.625 186.980469 194.53125 187.074219 194.53125 187.191406 C 194.53125 187.308594 194.625 187.402344 194.742188 187.402344 C 194.859375 187.402344 194.953125 187.308594 194.953125 187.191406 Z M 194.953125 187.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.769531 187.6875 C 195.769531 187.570312 195.675781 187.476562 195.558594 187.476562 C 195.441406 187.476562 195.347656 187.570312 195.347656 187.6875 C 195.347656 187.804688 195.441406 187.898438 195.558594 187.898438 C 195.675781 187.898438 195.769531 187.804688 195.769531 187.6875 Z M 195.769531 187.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.746094 184.003906 C 197.746094 183.886719 197.652344 183.792969 197.535156 183.792969 C 197.417969 183.792969 197.324219 183.886719 197.324219 184.003906 C 197.324219 184.121094 197.417969 184.214844 197.535156 184.214844 C 197.652344 184.214844 197.746094 184.121094 197.746094 184.003906 Z M 197.746094 184.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.1875 183.476562 C 195.1875 183.359375 195.09375 183.265625 194.976562 183.265625 C 194.859375 183.265625 194.765625 183.359375 194.765625 183.476562 C 194.765625 183.59375 194.859375 183.6875 194.976562 183.6875 C 195.09375 183.6875 195.1875 183.59375 195.1875 183.476562 Z M 195.1875 183.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.820312 184.8125 C 193.820312 184.695312 193.726562 184.601562 193.609375 184.601562 C 193.492188 184.601562 193.398438 184.695312 193.398438 184.8125 C 193.398438 184.929688 193.492188 185.023438 193.609375 185.023438 C 193.726562 185.023438 193.820312 184.929688 193.820312 184.8125 Z M 193.820312 184.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.976562 184.949219 C 195.976562 184.832031 195.882812 184.738281 195.765625 184.738281 C 195.648438 184.738281 195.554688 184.832031 195.554688 184.949219 C 195.554688 185.066406 195.648438 185.160156 195.765625 185.160156 C 195.882812 185.160156 195.976562 185.066406 195.976562 184.949219 Z M 195.976562 184.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.890625 185.484375 C 195.890625 185.367188 195.796875 185.273438 195.679688 185.273438 C 195.5625 185.273438 195.46875 185.367188 195.46875 185.484375 C 195.46875 185.601562 195.5625 185.695312 195.679688 185.695312 C 195.796875 185.695312 195.890625 185.601562 195.890625 185.484375 Z M 195.890625 185.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.042969 188.242188 C 194.042969 188.125 193.949219 188.03125 193.832031 188.03125 C 193.714844 188.03125 193.621094 188.125 193.621094 188.242188 C 193.621094 188.359375 193.714844 188.453125 193.832031 188.453125 C 193.949219 188.453125 194.042969 188.359375 194.042969 188.242188 Z M 194.042969 188.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.742188 188.699219 C 191.742188 188.582031 191.648438 188.488281 191.53125 188.488281 C 191.414062 188.488281 191.320312 188.582031 191.320312 188.699219 C 191.320312 188.816406 191.414062 188.910156 191.53125 188.910156 C 191.648438 188.910156 191.742188 188.816406 191.742188 188.699219 Z M 191.742188 188.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.441406 190.824219 C 195.441406 190.707031 195.347656 190.613281 195.230469 190.613281 C 195.113281 190.613281 195.019531 190.707031 195.019531 190.824219 C 195.019531 190.941406 195.113281 191.035156 195.230469 191.035156 C 195.347656 191.035156 195.441406 190.941406 195.441406 190.824219 Z M 195.441406 190.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.152344 192.621094 C 195.152344 192.503906 195.058594 192.410156 194.941406 192.410156 C 194.824219 192.410156 194.730469 192.503906 194.730469 192.621094 C 194.730469 192.738281 194.824219 192.832031 194.941406 192.832031 C 195.058594 192.832031 195.152344 192.738281 195.152344 192.621094 Z M 195.152344 192.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.015625 191.054688 C 195.015625 190.9375 194.921875 190.84375 194.804688 190.84375 C 194.6875 190.84375 194.59375 190.9375 194.59375 191.054688 C 194.59375 191.171875 194.6875 191.265625 194.804688 191.265625 C 194.921875 191.265625 195.015625 191.171875 195.015625 191.054688 Z M 195.015625 191.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.308594 191.253906 C 194.308594 191.136719 194.214844 191.042969 194.097656 191.042969 C 193.980469 191.042969 193.886719 191.136719 193.886719 191.253906 C 193.886719 191.371094 193.980469 191.464844 194.097656 191.464844 C 194.214844 191.464844 194.308594 191.371094 194.308594 191.253906 Z M 194.308594 191.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.949219 191.6875 C 193.949219 191.570312 193.855469 191.476562 193.738281 191.476562 C 193.621094 191.476562 193.527344 191.570312 193.527344 191.6875 C 193.527344 191.804688 193.621094 191.898438 193.738281 191.898438 C 193.855469 191.898438 193.949219 191.804688 193.949219 191.6875 Z M 193.949219 191.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.929688 192.3125 C 196.929688 192.195312 196.835938 192.101562 196.71875 192.101562 C 196.601562 192.101562 196.507812 192.195312 196.507812 192.3125 C 196.507812 192.429688 196.601562 192.523438 196.71875 192.523438 C 196.835938 192.523438 196.929688 192.429688 196.929688 192.3125 Z M 196.929688 192.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.511719 194.660156 C 193.511719 194.542969 193.417969 194.449219 193.300781 194.449219 C 193.183594 194.449219 193.089844 194.542969 193.089844 194.660156 C 193.089844 194.777344 193.183594 194.871094 193.300781 194.871094 C 193.417969 194.871094 193.511719 194.777344 193.511719 194.660156 Z M 193.511719 194.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.152344 193.691406 C 197.152344 193.574219 197.058594 193.480469 196.941406 193.480469 C 196.824219 193.480469 196.730469 193.574219 196.730469 193.691406 C 196.730469 193.808594 196.824219 193.902344 196.941406 193.902344 C 197.058594 193.902344 197.152344 193.808594 197.152344 193.691406 Z M 197.152344 193.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.964844 190.941406 C 199.964844 190.824219 199.871094 190.730469 199.753906 190.730469 C 199.636719 190.730469 199.542969 190.824219 199.542969 190.941406 C 199.542969 191.058594 199.636719 191.152344 199.753906 191.152344 C 199.871094 191.152344 199.964844 191.058594 199.964844 190.941406 Z M 199.964844 190.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.300781 192.058594 C 202.300781 191.941406 202.207031 191.847656 202.089844 191.847656 C 201.972656 191.847656 201.878906 191.941406 201.878906 192.058594 C 201.878906 192.175781 201.972656 192.269531 202.089844 192.269531 C 202.207031 192.269531 202.300781 192.175781 202.300781 192.058594 Z M 202.300781 192.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.859375 188.886719 C 202.859375 188.769531 202.765625 188.675781 202.648438 188.675781 C 202.53125 188.675781 202.4375 188.769531 202.4375 188.886719 C 202.4375 189.003906 202.53125 189.097656 202.648438 189.097656 C 202.765625 189.097656 202.859375 189.003906 202.859375 188.886719 Z M 202.859375 188.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.660156 191.59375 C 203.660156 191.476562 203.566406 191.382812 203.449219 191.382812 C 203.332031 191.382812 203.238281 191.476562 203.238281 191.59375 C 203.238281 191.710938 203.332031 191.804688 203.449219 191.804688 C 203.566406 191.804688 203.660156 191.710938 203.660156 191.59375 Z M 203.660156 191.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.820312 193.136719 C 202.820312 193.019531 202.726562 192.925781 202.609375 192.925781 C 202.492188 192.925781 202.398438 193.019531 202.398438 193.136719 C 202.398438 193.253906 202.492188 193.347656 202.609375 193.347656 C 202.726562 193.347656 202.820312 193.253906 202.820312 193.136719 Z M 202.820312 193.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.933594 192.773438 C 208.933594 192.65625 208.839844 192.5625 208.722656 192.5625 C 208.605469 192.5625 208.511719 192.65625 208.511719 192.773438 C 208.511719 192.890625 208.605469 192.984375 208.722656 192.984375 C 208.839844 192.984375 208.933594 192.890625 208.933594 192.773438 Z M 208.933594 192.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.828125 191.921875 C 210.828125 191.804688 210.734375 191.710938 210.617188 191.710938 C 210.5 191.710938 210.40625 191.804688 210.40625 191.921875 C 210.40625 192.039062 210.5 192.132812 210.617188 192.132812 C 210.734375 192.132812 210.828125 192.039062 210.828125 191.921875 Z M 210.828125 191.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.976562 192.832031 C 214.976562 192.714844 214.882812 192.621094 214.765625 192.621094 C 214.648438 192.621094 214.554688 192.714844 214.554688 192.832031 C 214.554688 192.949219 214.648438 193.042969 214.765625 193.042969 C 214.882812 193.042969 214.976562 192.949219 214.976562 192.832031 Z M 214.976562 192.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.878906 191.335938 C 215.878906 191.21875 215.785156 191.125 215.667969 191.125 C 215.550781 191.125 215.457031 191.21875 215.457031 191.335938 C 215.457031 191.453125 215.550781 191.546875 215.667969 191.546875 C 215.785156 191.546875 215.878906 191.453125 215.878906 191.335938 Z M 215.878906 191.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.425781 194.089844 C 216.425781 193.972656 216.332031 193.878906 216.214844 193.878906 C 216.097656 193.878906 216.003906 193.972656 216.003906 194.089844 C 216.003906 194.207031 216.097656 194.300781 216.214844 194.300781 C 216.332031 194.300781 216.425781 194.207031 216.425781 194.089844 Z M 216.425781 194.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.054688 193.71875 C 217.054688 193.601562 216.960938 193.507812 216.84375 193.507812 C 216.726562 193.507812 216.632812 193.601562 216.632812 193.71875 C 216.632812 193.835938 216.726562 193.929688 216.84375 193.929688 C 216.960938 193.929688 217.054688 193.835938 217.054688 193.71875 Z M 217.054688 193.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.128906 192.316406 C 214.128906 192.199219 214.035156 192.105469 213.917969 192.105469 C 213.800781 192.105469 213.707031 192.199219 213.707031 192.316406 C 213.707031 192.433594 213.800781 192.527344 213.917969 192.527344 C 214.035156 192.527344 214.128906 192.433594 214.128906 192.316406 Z M 214.128906 192.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.570312 192.308594 C 214.570312 192.191406 214.476562 192.097656 214.359375 192.097656 C 214.242188 192.097656 214.148438 192.191406 214.148438 192.308594 C 214.148438 192.425781 214.242188 192.519531 214.359375 192.519531 C 214.476562 192.519531 214.570312 192.425781 214.570312 192.308594 Z M 214.570312 192.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.539062 195.179688 C 212.539062 195.0625 212.445312 194.96875 212.328125 194.96875 C 212.210938 194.96875 212.117188 195.0625 212.117188 195.179688 C 212.117188 195.296875 212.210938 195.390625 212.328125 195.390625 C 212.445312 195.390625 212.539062 195.296875 212.539062 195.179688 Z M 212.539062 195.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.148438 194.488281 C 209.148438 194.371094 209.054688 194.277344 208.9375 194.277344 C 208.820312 194.277344 208.726562 194.371094 208.726562 194.488281 C 208.726562 194.605469 208.820312 194.699219 208.9375 194.699219 C 209.054688 194.699219 209.148438 194.605469 209.148438 194.488281 Z M 209.148438 194.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.816406 194.089844 C 213.816406 193.972656 213.722656 193.878906 213.605469 193.878906 C 213.488281 193.878906 213.394531 193.972656 213.394531 194.089844 C 213.394531 194.207031 213.488281 194.300781 213.605469 194.300781 C 213.722656 194.300781 213.816406 194.207031 213.816406 194.089844 Z M 213.816406 194.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.507812 194.386719 C 213.507812 194.269531 213.414062 194.175781 213.296875 194.175781 C 213.179688 194.175781 213.085938 194.269531 213.085938 194.386719 C 213.085938 194.503906 213.179688 194.597656 213.296875 194.597656 C 213.414062 194.597656 213.507812 194.503906 213.507812 194.386719 Z M 213.507812 194.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.421875 192.519531 C 210.421875 192.402344 210.328125 192.308594 210.210938 192.308594 C 210.09375 192.308594 210 192.402344 210 192.519531 C 210 192.636719 210.09375 192.730469 210.210938 192.730469 C 210.328125 192.730469 210.421875 192.636719 210.421875 192.519531 Z M 210.421875 192.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.25 194.574219 C 209.25 194.457031 209.15625 194.363281 209.039062 194.363281 C 208.921875 194.363281 208.828125 194.457031 208.828125 194.574219 C 208.828125 194.691406 208.921875 194.785156 209.039062 194.785156 C 209.15625 194.785156 209.25 194.691406 209.25 194.574219 Z M 209.25 194.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.804688 196.0625 C 208.804688 195.945312 208.710938 195.851562 208.59375 195.851562 C 208.476562 195.851562 208.382812 195.945312 208.382812 196.0625 C 208.382812 196.179688 208.476562 196.273438 208.59375 196.273438 C 208.710938 196.273438 208.804688 196.179688 208.804688 196.0625 Z M 208.804688 196.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.128906 197.886719 C 209.128906 197.769531 209.035156 197.675781 208.917969 197.675781 C 208.800781 197.675781 208.707031 197.769531 208.707031 197.886719 C 208.707031 198.003906 208.800781 198.097656 208.917969 198.097656 C 209.035156 198.097656 209.128906 198.003906 209.128906 197.886719 Z M 209.128906 197.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.28125 199.839844 C 209.28125 199.722656 209.1875 199.628906 209.070312 199.628906 C 208.953125 199.628906 208.859375 199.722656 208.859375 199.839844 C 208.859375 199.957031 208.953125 200.050781 209.070312 200.050781 C 209.1875 200.050781 209.28125 199.957031 209.28125 199.839844 Z M 209.28125 199.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.515625 197.984375 C 206.515625 197.867188 206.421875 197.773438 206.304688 197.773438 C 206.1875 197.773438 206.09375 197.867188 206.09375 197.984375 C 206.09375 198.101562 206.1875 198.195312 206.304688 198.195312 C 206.421875 198.195312 206.515625 198.101562 206.515625 197.984375 Z M 206.515625 197.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.953125 198.347656 C 204.953125 198.230469 204.859375 198.136719 204.742188 198.136719 C 204.625 198.136719 204.53125 198.230469 204.53125 198.347656 C 204.53125 198.464844 204.625 198.558594 204.742188 198.558594 C 204.859375 198.558594 204.953125 198.464844 204.953125 198.347656 Z M 204.953125 198.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.804688 194.253906 C 200.804688 194.136719 200.710938 194.042969 200.59375 194.042969 C 200.476562 194.042969 200.382812 194.136719 200.382812 194.253906 C 200.382812 194.371094 200.476562 194.464844 200.59375 194.464844 C 200.710938 194.464844 200.804688 194.371094 200.804688 194.253906 Z M 200.804688 194.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.3125 195.496094 C 201.3125 195.378906 201.21875 195.285156 201.101562 195.285156 C 200.984375 195.285156 200.890625 195.378906 200.890625 195.496094 C 200.890625 195.613281 200.984375 195.707031 201.101562 195.707031 C 201.21875 195.707031 201.3125 195.613281 201.3125 195.496094 Z M 201.3125 195.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.867188 194.191406 C 198.867188 194.074219 198.773438 193.980469 198.65625 193.980469 C 198.539062 193.980469 198.445312 194.074219 198.445312 194.191406 C 198.445312 194.308594 198.539062 194.402344 198.65625 194.402344 C 198.773438 194.402344 198.867188 194.308594 198.867188 194.191406 Z M 198.867188 194.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.132812 199.335938 C 200.132812 199.21875 200.039062 199.125 199.921875 199.125 C 199.804688 199.125 199.710938 199.21875 199.710938 199.335938 C 199.710938 199.453125 199.804688 199.546875 199.921875 199.546875 C 200.039062 199.546875 200.132812 199.453125 200.132812 199.335938 Z M 200.132812 199.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.929688 196.1875 C 199.929688 196.070312 199.835938 195.976562 199.71875 195.976562 C 199.601562 195.976562 199.507812 196.070312 199.507812 196.1875 C 199.507812 196.304688 199.601562 196.398438 199.71875 196.398438 C 199.835938 196.398438 199.929688 196.304688 199.929688 196.1875 Z M 199.929688 196.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.03125 195.523438 C 200.03125 195.40625 199.9375 195.3125 199.820312 195.3125 C 199.703125 195.3125 199.609375 195.40625 199.609375 195.523438 C 199.609375 195.640625 199.703125 195.734375 199.820312 195.734375 C 199.9375 195.734375 200.03125 195.640625 200.03125 195.523438 Z M 200.03125 195.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.113281 193.449219 C 198.113281 193.332031 198.019531 193.238281 197.902344 193.238281 C 197.785156 193.238281 197.691406 193.332031 197.691406 193.449219 C 197.691406 193.566406 197.785156 193.660156 197.902344 193.660156 C 198.019531 193.660156 198.113281 193.566406 198.113281 193.449219 Z M 198.113281 193.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.148438 193.863281 C 196.148438 193.746094 196.054688 193.652344 195.9375 193.652344 C 195.820312 193.652344 195.726562 193.746094 195.726562 193.863281 C 195.726562 193.980469 195.820312 194.074219 195.9375 194.074219 C 196.054688 194.074219 196.148438 193.980469 196.148438 193.863281 Z M 196.148438 193.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.546875 191.292969 C 193.546875 191.175781 193.453125 191.082031 193.335938 191.082031 C 193.21875 191.082031 193.125 191.175781 193.125 191.292969 C 193.125 191.410156 193.21875 191.503906 193.335938 191.503906 C 193.453125 191.503906 193.546875 191.410156 193.546875 191.292969 Z M 193.546875 191.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.988281 189.320312 C 191.988281 189.203125 191.894531 189.109375 191.777344 189.109375 C 191.660156 189.109375 191.566406 189.203125 191.566406 189.320312 C 191.566406 189.4375 191.660156 189.53125 191.777344 189.53125 C 191.894531 189.53125 191.988281 189.4375 191.988281 189.320312 Z M 191.988281 189.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.050781 189.691406 C 189.050781 189.574219 188.957031 189.480469 188.839844 189.480469 C 188.722656 189.480469 188.628906 189.574219 188.628906 189.691406 C 188.628906 189.808594 188.722656 189.902344 188.839844 189.902344 C 188.957031 189.902344 189.050781 189.808594 189.050781 189.691406 Z M 189.050781 189.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.066406 189.722656 C 187.066406 189.605469 186.972656 189.511719 186.855469 189.511719 C 186.738281 189.511719 186.644531 189.605469 186.644531 189.722656 C 186.644531 189.839844 186.738281 189.933594 186.855469 189.933594 C 186.972656 189.933594 187.066406 189.839844 187.066406 189.722656 Z M 187.066406 189.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.65625 187.8125 C 186.65625 187.695312 186.5625 187.601562 186.445312 187.601562 C 186.328125 187.601562 186.234375 187.695312 186.234375 187.8125 C 186.234375 187.929688 186.328125 188.023438 186.445312 188.023438 C 186.5625 188.023438 186.65625 187.929688 186.65625 187.8125 Z M 186.65625 187.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.816406 189.390625 C 184.816406 189.273438 184.722656 189.179688 184.605469 189.179688 C 184.488281 189.179688 184.394531 189.273438 184.394531 189.390625 C 184.394531 189.507812 184.488281 189.601562 184.605469 189.601562 C 184.722656 189.601562 184.816406 189.507812 184.816406 189.390625 Z M 184.816406 189.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.039062 190.796875 C 182.039062 190.679688 181.945312 190.585938 181.828125 190.585938 C 181.710938 190.585938 181.617188 190.679688 181.617188 190.796875 C 181.617188 190.914062 181.710938 191.007812 181.828125 191.007812 C 181.945312 191.007812 182.039062 190.914062 182.039062 190.796875 Z M 182.039062 190.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.675781 190.285156 C 183.675781 190.167969 183.582031 190.074219 183.464844 190.074219 C 183.347656 190.074219 183.253906 190.167969 183.253906 190.285156 C 183.253906 190.402344 183.347656 190.496094 183.464844 190.496094 C 183.582031 190.496094 183.675781 190.402344 183.675781 190.285156 Z M 183.675781 190.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.164062 187.414062 C 185.164062 187.296875 185.070312 187.203125 184.953125 187.203125 C 184.835938 187.203125 184.742188 187.296875 184.742188 187.414062 C 184.742188 187.53125 184.835938 187.625 184.953125 187.625 C 185.070312 187.625 185.164062 187.53125 185.164062 187.414062 Z M 185.164062 187.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.902344 185.265625 C 184.902344 185.148438 184.808594 185.054688 184.691406 185.054688 C 184.574219 185.054688 184.480469 185.148438 184.480469 185.265625 C 184.480469 185.382812 184.574219 185.476562 184.691406 185.476562 C 184.808594 185.476562 184.902344 185.382812 184.902344 185.265625 Z M 184.902344 185.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.816406 187.707031 C 185.816406 187.589844 185.722656 187.496094 185.605469 187.496094 C 185.488281 187.496094 185.394531 187.589844 185.394531 187.707031 C 185.394531 187.824219 185.488281 187.917969 185.605469 187.917969 C 185.722656 187.917969 185.816406 187.824219 185.816406 187.707031 Z M 185.816406 187.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.347656 191.222656 C 185.347656 191.105469 185.253906 191.011719 185.136719 191.011719 C 185.019531 191.011719 184.925781 191.105469 184.925781 191.222656 C 184.925781 191.339844 185.019531 191.433594 185.136719 191.433594 C 185.253906 191.433594 185.347656 191.339844 185.347656 191.222656 Z M 185.347656 191.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.226562 192.984375 C 185.226562 192.867188 185.132812 192.773438 185.015625 192.773438 C 184.898438 192.773438 184.804688 192.867188 184.804688 192.984375 C 184.804688 193.101562 184.898438 193.195312 185.015625 193.195312 C 185.132812 193.195312 185.226562 193.101562 185.226562 192.984375 Z M 185.226562 192.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.261719 192.554688 C 182.261719 192.4375 182.167969 192.34375 182.050781 192.34375 C 181.933594 192.34375 181.839844 192.4375 181.839844 192.554688 C 181.839844 192.671875 181.933594 192.765625 182.050781 192.765625 C 182.167969 192.765625 182.261719 192.671875 182.261719 192.554688 Z M 182.261719 192.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 180.433594 192.417969 C 180.433594 192.300781 180.339844 192.207031 180.222656 192.207031 C 180.105469 192.207031 180.011719 192.300781 180.011719 192.417969 C 180.011719 192.535156 180.105469 192.628906 180.222656 192.628906 C 180.339844 192.628906 180.433594 192.535156 180.433594 192.417969 Z M 180.433594 192.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.753906 193.609375 C 181.753906 193.492188 181.660156 193.398438 181.542969 193.398438 C 181.425781 193.398438 181.332031 193.492188 181.332031 193.609375 C 181.332031 193.726562 181.425781 193.820312 181.542969 193.820312 C 181.660156 193.820312 181.753906 193.726562 181.753906 193.609375 Z M 181.753906 193.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 180.433594 190.273438 C 180.433594 190.15625 180.339844 190.0625 180.222656 190.0625 C 180.105469 190.0625 180.011719 190.15625 180.011719 190.273438 C 180.011719 190.390625 180.105469 190.484375 180.222656 190.484375 C 180.339844 190.484375 180.433594 190.390625 180.433594 190.273438 Z M 180.433594 190.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.707031 188.785156 C 183.707031 188.667969 183.613281 188.574219 183.496094 188.574219 C 183.378906 188.574219 183.285156 188.667969 183.285156 188.785156 C 183.285156 188.902344 183.378906 188.996094 183.496094 188.996094 C 183.613281 188.996094 183.707031 188.902344 183.707031 188.785156 Z M 183.707031 188.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.667969 194.640625 C 182.667969 194.523438 182.574219 194.429688 182.457031 194.429688 C 182.339844 194.429688 182.246094 194.523438 182.246094 194.640625 C 182.246094 194.757812 182.339844 194.851562 182.457031 194.851562 C 182.574219 194.851562 182.667969 194.757812 182.667969 194.640625 Z M 182.667969 194.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.039062 197.261719 C 182.039062 197.144531 181.945312 197.050781 181.828125 197.050781 C 181.710938 197.050781 181.617188 197.144531 181.617188 197.261719 C 181.617188 197.378906 181.710938 197.472656 181.828125 197.472656 C 181.945312 197.472656 182.039062 197.378906 182.039062 197.261719 Z M 182.039062 197.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.773438 198.078125 C 187.773438 197.960938 187.679688 197.867188 187.5625 197.867188 C 187.445312 197.867188 187.351562 197.960938 187.351562 198.078125 C 187.351562 198.195312 187.445312 198.289062 187.5625 198.289062 C 187.679688 198.289062 187.773438 198.195312 187.773438 198.078125 Z M 187.773438 198.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.664062 201.445312 C 188.664062 201.328125 188.570312 201.234375 188.453125 201.234375 C 188.335938 201.234375 188.242188 201.328125 188.242188 201.445312 C 188.242188 201.5625 188.335938 201.65625 188.453125 201.65625 C 188.570312 201.65625 188.664062 201.5625 188.664062 201.445312 Z M 188.664062 201.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.8125 206.574219 C 189.8125 206.457031 189.71875 206.363281 189.601562 206.363281 C 189.484375 206.363281 189.390625 206.457031 189.390625 206.574219 C 189.390625 206.691406 189.484375 206.785156 189.601562 206.785156 C 189.71875 206.785156 189.8125 206.691406 189.8125 206.574219 Z M 189.8125 206.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.984375 209.640625 C 188.984375 209.523438 188.890625 209.429688 188.773438 209.429688 C 188.65625 209.429688 188.5625 209.523438 188.5625 209.640625 C 188.5625 209.757812 188.65625 209.851562 188.773438 209.851562 C 188.890625 209.851562 188.984375 209.757812 188.984375 209.640625 Z M 188.984375 209.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.6875 208.882812 C 190.6875 208.765625 190.59375 208.671875 190.476562 208.671875 C 190.359375 208.671875 190.265625 208.765625 190.265625 208.882812 C 190.265625 209 190.359375 209.09375 190.476562 209.09375 C 190.59375 209.09375 190.6875 209 190.6875 208.882812 Z M 190.6875 208.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.828125 209.285156 C 191.828125 209.167969 191.734375 209.074219 191.617188 209.074219 C 191.5 209.074219 191.40625 209.167969 191.40625 209.285156 C 191.40625 209.402344 191.5 209.496094 191.617188 209.496094 C 191.734375 209.496094 191.828125 209.402344 191.828125 209.285156 Z M 191.828125 209.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.542969 209.507812 C 194.542969 209.390625 194.449219 209.296875 194.332031 209.296875 C 194.214844 209.296875 194.121094 209.390625 194.121094 209.507812 C 194.121094 209.625 194.214844 209.71875 194.332031 209.71875 C 194.449219 209.71875 194.542969 209.625 194.542969 209.507812 Z M 194.542969 209.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.21875 209.777344 C 194.21875 209.660156 194.125 209.566406 194.007812 209.566406 C 193.890625 209.566406 193.796875 209.660156 193.796875 209.777344 C 193.796875 209.894531 193.890625 209.988281 194.007812 209.988281 C 194.125 209.988281 194.21875 209.894531 194.21875 209.777344 Z M 194.21875 209.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.898438 209.335938 C 194.898438 209.21875 194.804688 209.125 194.6875 209.125 C 194.570312 209.125 194.476562 209.21875 194.476562 209.335938 C 194.476562 209.453125 194.570312 209.546875 194.6875 209.546875 C 194.804688 209.546875 194.898438 209.453125 194.898438 209.335938 Z M 194.898438 209.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.398438 210.785156 C 194.398438 210.667969 194.304688 210.574219 194.1875 210.574219 C 194.070312 210.574219 193.976562 210.667969 193.976562 210.785156 C 193.976562 210.902344 194.070312 210.996094 194.1875 210.996094 C 194.304688 210.996094 194.398438 210.902344 194.398438 210.785156 Z M 194.398438 210.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.148438 210.589844 C 194.148438 210.472656 194.054688 210.378906 193.9375 210.378906 C 193.820312 210.378906 193.726562 210.472656 193.726562 210.589844 C 193.726562 210.707031 193.820312 210.800781 193.9375 210.800781 C 194.054688 210.800781 194.148438 210.707031 194.148438 210.589844 Z M 194.148438 210.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.757812 213.3125 C 193.757812 213.195312 193.664062 213.101562 193.546875 213.101562 C 193.429688 213.101562 193.335938 213.195312 193.335938 213.3125 C 193.335938 213.429688 193.429688 213.523438 193.546875 213.523438 C 193.664062 213.523438 193.757812 213.429688 193.757812 213.3125 Z M 193.757812 213.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.863281 212.589844 C 193.863281 212.472656 193.769531 212.378906 193.652344 212.378906 C 193.535156 212.378906 193.441406 212.472656 193.441406 212.589844 C 193.441406 212.707031 193.535156 212.800781 193.652344 212.800781 C 193.769531 212.800781 193.863281 212.707031 193.863281 212.589844 Z M 193.863281 212.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.164062 214.132812 C 190.164062 214.015625 190.070312 213.921875 189.953125 213.921875 C 189.835938 213.921875 189.742188 214.015625 189.742188 214.132812 C 189.742188 214.25 189.835938 214.34375 189.953125 214.34375 C 190.070312 214.34375 190.164062 214.25 190.164062 214.132812 Z M 190.164062 214.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.246094 214.375 C 190.246094 214.257812 190.152344 214.164062 190.035156 214.164062 C 189.917969 214.164062 189.824219 214.257812 189.824219 214.375 C 189.824219 214.492188 189.917969 214.585938 190.035156 214.585938 C 190.152344 214.585938 190.246094 214.492188 190.246094 214.375 Z M 190.246094 214.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.855469 213.226562 C 192.855469 213.109375 192.761719 213.015625 192.644531 213.015625 C 192.527344 213.015625 192.433594 213.109375 192.433594 213.226562 C 192.433594 213.34375 192.527344 213.4375 192.644531 213.4375 C 192.761719 213.4375 192.855469 213.34375 192.855469 213.226562 Z M 192.855469 213.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.105469 214.734375 C 192.105469 214.617188 192.011719 214.523438 191.894531 214.523438 C 191.777344 214.523438 191.683594 214.617188 191.683594 214.734375 C 191.683594 214.851562 191.777344 214.945312 191.894531 214.945312 C 192.011719 214.945312 192.105469 214.851562 192.105469 214.734375 Z M 192.105469 214.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.308594 216.035156 C 190.308594 215.917969 190.214844 215.824219 190.097656 215.824219 C 189.980469 215.824219 189.886719 215.917969 189.886719 216.035156 C 189.886719 216.152344 189.980469 216.246094 190.097656 216.246094 C 190.214844 216.246094 190.308594 216.152344 190.308594 216.035156 Z M 190.308594 216.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.246094 218.675781 C 190.246094 218.558594 190.152344 218.464844 190.035156 218.464844 C 189.917969 218.464844 189.824219 218.558594 189.824219 218.675781 C 189.824219 218.792969 189.917969 218.886719 190.035156 218.886719 C 190.152344 218.886719 190.246094 218.792969 190.246094 218.675781 Z M 190.246094 218.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.214844 220.332031 C 190.214844 220.214844 190.121094 220.121094 190.003906 220.121094 C 189.886719 220.121094 189.792969 220.214844 189.792969 220.332031 C 189.792969 220.449219 189.886719 220.542969 190.003906 220.542969 C 190.121094 220.542969 190.214844 220.449219 190.214844 220.332031 Z M 190.214844 220.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.074219 221.691406 C 189.074219 221.574219 188.980469 221.480469 188.863281 221.480469 C 188.746094 221.480469 188.652344 221.574219 188.652344 221.691406 C 188.652344 221.808594 188.746094 221.902344 188.863281 221.902344 C 188.980469 221.902344 189.074219 221.808594 189.074219 221.691406 Z M 189.074219 221.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.117188 218.890625 C 187.117188 218.773438 187.023438 218.679688 186.90625 218.679688 C 186.789062 218.679688 186.695312 218.773438 186.695312 218.890625 C 186.695312 219.007812 186.789062 219.101562 186.90625 219.101562 C 187.023438 219.101562 187.117188 219.007812 187.117188 218.890625 Z M 187.117188 218.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.296875 220.976562 C 186.296875 220.859375 186.203125 220.765625 186.085938 220.765625 C 185.96875 220.765625 185.875 220.859375 185.875 220.976562 C 185.875 221.09375 185.96875 221.1875 186.085938 221.1875 C 186.203125 221.1875 186.296875 221.09375 186.296875 220.976562 Z M 186.296875 220.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.558594 222.128906 C 188.558594 222.011719 188.464844 221.917969 188.347656 221.917969 C 188.230469 221.917969 188.136719 222.011719 188.136719 222.128906 C 188.136719 222.246094 188.230469 222.339844 188.347656 222.339844 C 188.464844 222.339844 188.558594 222.246094 188.558594 222.128906 Z M 188.558594 222.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.496094 219.257812 C 189.496094 219.140625 189.402344 219.046875 189.285156 219.046875 C 189.167969 219.046875 189.074219 219.140625 189.074219 219.257812 C 189.074219 219.375 189.167969 219.46875 189.285156 219.46875 C 189.402344 219.46875 189.496094 219.375 189.496094 219.257812 Z M 189.496094 219.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.070312 219.167969 C 188.070312 219.050781 187.976562 218.957031 187.859375 218.957031 C 187.742188 218.957031 187.648438 219.050781 187.648438 219.167969 C 187.648438 219.285156 187.742188 219.378906 187.859375 219.378906 C 187.976562 219.378906 188.070312 219.285156 188.070312 219.167969 Z M 188.070312 219.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.585938 220.441406 C 186.585938 220.324219 186.492188 220.230469 186.375 220.230469 C 186.257812 220.230469 186.164062 220.324219 186.164062 220.441406 C 186.164062 220.558594 186.257812 220.652344 186.375 220.652344 C 186.492188 220.652344 186.585938 220.558594 186.585938 220.441406 Z M 186.585938 220.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.542969 217.601562 C 185.542969 217.484375 185.449219 217.390625 185.332031 217.390625 C 185.214844 217.390625 185.121094 217.484375 185.121094 217.601562 C 185.121094 217.71875 185.214844 217.8125 185.332031 217.8125 C 185.449219 217.8125 185.542969 217.71875 185.542969 217.601562 Z M 185.542969 217.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.617188 217.320312 C 189.617188 217.203125 189.523438 217.109375 189.40625 217.109375 C 189.289062 217.109375 189.195312 217.203125 189.195312 217.320312 C 189.195312 217.4375 189.289062 217.53125 189.40625 217.53125 C 189.523438 217.53125 189.617188 217.4375 189.617188 217.320312 Z M 189.617188 217.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.636719 217.140625 C 188.636719 217.023438 188.542969 216.929688 188.425781 216.929688 C 188.308594 216.929688 188.214844 217.023438 188.214844 217.140625 C 188.214844 217.257812 188.308594 217.351562 188.425781 217.351562 C 188.542969 217.351562 188.636719 217.257812 188.636719 217.140625 Z M 188.636719 217.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.660156 217.519531 C 190.660156 217.402344 190.566406 217.308594 190.449219 217.308594 C 190.332031 217.308594 190.238281 217.402344 190.238281 217.519531 C 190.238281 217.636719 190.332031 217.730469 190.449219 217.730469 C 190.566406 217.730469 190.660156 217.636719 190.660156 217.519531 Z M 190.660156 217.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.148438 218.746094 C 192.148438 218.628906 192.054688 218.535156 191.9375 218.535156 C 191.820312 218.535156 191.726562 218.628906 191.726562 218.746094 C 191.726562 218.863281 191.820312 218.957031 191.9375 218.957031 C 192.054688 218.957031 192.148438 218.863281 192.148438 218.746094 Z M 192.148438 218.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.121094 217.152344 C 192.121094 217.035156 192.027344 216.941406 191.910156 216.941406 C 191.792969 216.941406 191.699219 217.035156 191.699219 217.152344 C 191.699219 217.269531 191.792969 217.363281 191.910156 217.363281 C 192.027344 217.363281 192.121094 217.269531 192.121094 217.152344 Z M 192.121094 217.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.253906 217.285156 C 192.253906 217.167969 192.160156 217.074219 192.042969 217.074219 C 191.925781 217.074219 191.832031 217.167969 191.832031 217.285156 C 191.832031 217.402344 191.925781 217.496094 192.042969 217.496094 C 192.160156 217.496094 192.253906 217.402344 192.253906 217.285156 Z M 192.253906 217.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.460938 215.597656 C 187.460938 215.480469 187.367188 215.386719 187.25 215.386719 C 187.132812 215.386719 187.039062 215.480469 187.039062 215.597656 C 187.039062 215.714844 187.132812 215.808594 187.25 215.808594 C 187.367188 215.808594 187.460938 215.714844 187.460938 215.597656 Z M 187.460938 215.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.257812 214.503906 C 187.257812 214.386719 187.164062 214.292969 187.046875 214.292969 C 186.929688 214.292969 186.835938 214.386719 186.835938 214.503906 C 186.835938 214.621094 186.929688 214.714844 187.046875 214.714844 C 187.164062 214.714844 187.257812 214.621094 187.257812 214.503906 Z M 187.257812 214.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.703125 218.359375 C 186.703125 218.242188 186.609375 218.148438 186.492188 218.148438 C 186.375 218.148438 186.28125 218.242188 186.28125 218.359375 C 186.28125 218.476562 186.375 218.570312 186.492188 218.570312 C 186.609375 218.570312 186.703125 218.476562 186.703125 218.359375 Z M 186.703125 218.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.261719 217.636719 C 187.261719 217.519531 187.167969 217.425781 187.050781 217.425781 C 186.933594 217.425781 186.839844 217.519531 186.839844 217.636719 C 186.839844 217.753906 186.933594 217.847656 187.050781 217.847656 C 187.167969 217.847656 187.261719 217.753906 187.261719 217.636719 Z M 187.261719 217.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.84375 219.144531 C 186.84375 219.027344 186.75 218.933594 186.632812 218.933594 C 186.515625 218.933594 186.421875 219.027344 186.421875 219.144531 C 186.421875 219.261719 186.515625 219.355469 186.632812 219.355469 C 186.75 219.355469 186.84375 219.261719 186.84375 219.144531 Z M 186.84375 219.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.859375 220.304688 C 185.859375 220.1875 185.765625 220.09375 185.648438 220.09375 C 185.53125 220.09375 185.4375 220.1875 185.4375 220.304688 C 185.4375 220.421875 185.53125 220.515625 185.648438 220.515625 C 185.765625 220.515625 185.859375 220.421875 185.859375 220.304688 Z M 185.859375 220.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.640625 218.96875 C 185.640625 218.851562 185.546875 218.757812 185.429688 218.757812 C 185.3125 218.757812 185.21875 218.851562 185.21875 218.96875 C 185.21875 219.085938 185.3125 219.179688 185.429688 219.179688 C 185.546875 219.179688 185.640625 219.085938 185.640625 218.96875 Z M 185.640625 218.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.5 217.8125 C 186.5 217.695312 186.40625 217.601562 186.289062 217.601562 C 186.171875 217.601562 186.078125 217.695312 186.078125 217.8125 C 186.078125 217.929688 186.171875 218.023438 186.289062 218.023438 C 186.40625 218.023438 186.5 217.929688 186.5 217.8125 Z M 186.5 217.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.957031 213.921875 C 188.957031 213.804688 188.863281 213.710938 188.746094 213.710938 C 188.628906 213.710938 188.535156 213.804688 188.535156 213.921875 C 188.535156 214.039062 188.628906 214.132812 188.746094 214.132812 C 188.863281 214.132812 188.957031 214.039062 188.957031 213.921875 Z M 188.957031 213.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.828125 213.019531 C 189.828125 212.902344 189.734375 212.808594 189.617188 212.808594 C 189.5 212.808594 189.40625 212.902344 189.40625 213.019531 C 189.40625 213.136719 189.5 213.230469 189.617188 213.230469 C 189.734375 213.230469 189.828125 213.136719 189.828125 213.019531 Z M 189.828125 213.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.796875 212.949219 C 188.796875 212.832031 188.703125 212.738281 188.585938 212.738281 C 188.46875 212.738281 188.375 212.832031 188.375 212.949219 C 188.375 213.066406 188.46875 213.160156 188.585938 213.160156 C 188.703125 213.160156 188.796875 213.066406 188.796875 212.949219 Z M 188.796875 212.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.277344 211.550781 C 186.277344 211.433594 186.183594 211.339844 186.066406 211.339844 C 185.949219 211.339844 185.855469 211.433594 185.855469 211.550781 C 185.855469 211.667969 185.949219 211.761719 186.066406 211.761719 C 186.183594 211.761719 186.277344 211.667969 186.277344 211.550781 Z M 186.277344 211.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.316406 210.476562 C 183.316406 210.359375 183.222656 210.265625 183.105469 210.265625 C 182.988281 210.265625 182.894531 210.359375 182.894531 210.476562 C 182.894531 210.59375 182.988281 210.6875 183.105469 210.6875 C 183.222656 210.6875 183.316406 210.59375 183.316406 210.476562 Z M 183.316406 210.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.761719 208.265625 C 185.761719 208.148438 185.667969 208.054688 185.550781 208.054688 C 185.433594 208.054688 185.339844 208.148438 185.339844 208.265625 C 185.339844 208.382812 185.433594 208.476562 185.550781 208.476562 C 185.667969 208.476562 185.761719 208.382812 185.761719 208.265625 Z M 185.761719 208.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.226562 209.414062 C 188.226562 209.296875 188.132812 209.203125 188.015625 209.203125 C 187.898438 209.203125 187.804688 209.296875 187.804688 209.414062 C 187.804688 209.53125 187.898438 209.625 188.015625 209.625 C 188.132812 209.625 188.226562 209.53125 188.226562 209.414062 Z M 188.226562 209.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.59375 207.828125 C 186.59375 207.710938 186.5 207.617188 186.382812 207.617188 C 186.265625 207.617188 186.171875 207.710938 186.171875 207.828125 C 186.171875 207.945312 186.265625 208.039062 186.382812 208.039062 C 186.5 208.039062 186.59375 207.945312 186.59375 207.828125 Z M 186.59375 207.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.84375 210.84375 C 186.84375 210.726562 186.75 210.632812 186.632812 210.632812 C 186.515625 210.632812 186.421875 210.726562 186.421875 210.84375 C 186.421875 210.960938 186.515625 211.054688 186.632812 211.054688 C 186.75 211.054688 186.84375 210.960938 186.84375 210.84375 Z M 186.84375 210.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.175781 211.625 C 189.175781 211.507812 189.082031 211.414062 188.964844 211.414062 C 188.847656 211.414062 188.753906 211.507812 188.753906 211.625 C 188.753906 211.742188 188.847656 211.835938 188.964844 211.835938 C 189.082031 211.835938 189.175781 211.742188 189.175781 211.625 Z M 189.175781 211.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.976562 213.652344 C 188.976562 213.535156 188.882812 213.441406 188.765625 213.441406 C 188.648438 213.441406 188.554688 213.535156 188.554688 213.652344 C 188.554688 213.769531 188.648438 213.863281 188.765625 213.863281 C 188.882812 213.863281 188.976562 213.769531 188.976562 213.652344 Z M 188.976562 213.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.765625 212.121094 C 189.765625 212.003906 189.671875 211.910156 189.554688 211.910156 C 189.4375 211.910156 189.34375 212.003906 189.34375 212.121094 C 189.34375 212.238281 189.4375 212.332031 189.554688 212.332031 C 189.671875 212.332031 189.765625 212.238281 189.765625 212.121094 Z M 189.765625 212.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.191406 213.621094 C 189.191406 213.503906 189.097656 213.410156 188.980469 213.410156 C 188.863281 213.410156 188.769531 213.503906 188.769531 213.621094 C 188.769531 213.738281 188.863281 213.832031 188.980469 213.832031 C 189.097656 213.832031 189.191406 213.738281 189.191406 213.621094 Z M 189.191406 213.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.164062 213.792969 C 193.164062 213.675781 193.070312 213.582031 192.953125 213.582031 C 192.835938 213.582031 192.742188 213.675781 192.742188 213.792969 C 192.742188 213.910156 192.835938 214.003906 192.953125 214.003906 C 193.070312 214.003906 193.164062 213.910156 193.164062 213.792969 Z M 193.164062 213.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.511719 219.363281 C 189.511719 219.246094 189.417969 219.152344 189.300781 219.152344 C 189.183594 219.152344 189.089844 219.246094 189.089844 219.363281 C 189.089844 219.480469 189.183594 219.574219 189.300781 219.574219 C 189.417969 219.574219 189.511719 219.480469 189.511719 219.363281 Z M 189.511719 219.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.875 216.871094 C 187.875 216.753906 187.78125 216.660156 187.664062 216.660156 C 187.546875 216.660156 187.453125 216.753906 187.453125 216.871094 C 187.453125 216.988281 187.546875 217.082031 187.664062 217.082031 C 187.78125 217.082031 187.875 216.988281 187.875 216.871094 Z M 187.875 216.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.792969 215.957031 C 185.792969 215.839844 185.699219 215.746094 185.582031 215.746094 C 185.464844 215.746094 185.371094 215.839844 185.371094 215.957031 C 185.371094 216.074219 185.464844 216.167969 185.582031 216.167969 C 185.699219 216.167969 185.792969 216.074219 185.792969 215.957031 Z M 185.792969 215.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.988281 220.878906 C 184.988281 220.761719 184.894531 220.667969 184.777344 220.667969 C 184.660156 220.667969 184.566406 220.761719 184.566406 220.878906 C 184.566406 220.996094 184.660156 221.089844 184.777344 221.089844 C 184.894531 221.089844 184.988281 220.996094 184.988281 220.878906 Z M 184.988281 220.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.195312 218.597656 C 187.195312 218.480469 187.101562 218.386719 186.984375 218.386719 C 186.867188 218.386719 186.773438 218.480469 186.773438 218.597656 C 186.773438 218.714844 186.867188 218.808594 186.984375 218.808594 C 187.101562 218.808594 187.195312 218.714844 187.195312 218.597656 Z M 187.195312 218.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.835938 220.417969 C 186.835938 220.300781 186.742188 220.207031 186.625 220.207031 C 186.507812 220.207031 186.414062 220.300781 186.414062 220.417969 C 186.414062 220.535156 186.507812 220.628906 186.625 220.628906 C 186.742188 220.628906 186.835938 220.535156 186.835938 220.417969 Z M 186.835938 220.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.472656 221.117188 C 191.472656 221 191.378906 220.90625 191.261719 220.90625 C 191.144531 220.90625 191.050781 221 191.050781 221.117188 C 191.050781 221.234375 191.144531 221.328125 191.261719 221.328125 C 191.378906 221.328125 191.472656 221.234375 191.472656 221.117188 Z M 191.472656 221.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.917969 220.71875 C 187.917969 220.601562 187.824219 220.507812 187.707031 220.507812 C 187.589844 220.507812 187.496094 220.601562 187.496094 220.71875 C 187.496094 220.835938 187.589844 220.929688 187.707031 220.929688 C 187.824219 220.929688 187.917969 220.835938 187.917969 220.71875 Z M 187.917969 220.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.96875 220.496094 C 185.96875 220.378906 185.875 220.285156 185.757812 220.285156 C 185.640625 220.285156 185.546875 220.378906 185.546875 220.496094 C 185.546875 220.613281 185.640625 220.707031 185.757812 220.707031 C 185.875 220.707031 185.96875 220.613281 185.96875 220.496094 Z M 185.96875 220.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.941406 217.039062 C 186.941406 216.921875 186.847656 216.828125 186.730469 216.828125 C 186.613281 216.828125 186.519531 216.921875 186.519531 217.039062 C 186.519531 217.15625 186.613281 217.25 186.730469 217.25 C 186.847656 217.25 186.941406 217.15625 186.941406 217.039062 Z M 186.941406 217.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.445312 218.140625 C 185.445312 218.023438 185.351562 217.929688 185.234375 217.929688 C 185.117188 217.929688 185.023438 218.023438 185.023438 218.140625 C 185.023438 218.257812 185.117188 218.351562 185.234375 218.351562 C 185.351562 218.351562 185.445312 218.257812 185.445312 218.140625 Z M 185.445312 218.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.722656 217.566406 C 188.722656 217.449219 188.628906 217.355469 188.511719 217.355469 C 188.394531 217.355469 188.300781 217.449219 188.300781 217.566406 C 188.300781 217.683594 188.394531 217.777344 188.511719 217.777344 C 188.628906 217.777344 188.722656 217.683594 188.722656 217.566406 Z M 188.722656 217.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.582031 216.847656 C 191.582031 216.730469 191.488281 216.636719 191.371094 216.636719 C 191.253906 216.636719 191.160156 216.730469 191.160156 216.847656 C 191.160156 216.964844 191.253906 217.058594 191.371094 217.058594 C 191.488281 217.058594 191.582031 216.964844 191.582031 216.847656 Z M 191.582031 216.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.449219 217.085938 C 192.449219 216.96875 192.355469 216.875 192.238281 216.875 C 192.121094 216.875 192.027344 216.96875 192.027344 217.085938 C 192.027344 217.203125 192.121094 217.296875 192.238281 217.296875 C 192.355469 217.296875 192.449219 217.203125 192.449219 217.085938 Z M 192.449219 217.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.921875 215.867188 C 191.921875 215.75 191.828125 215.65625 191.710938 215.65625 C 191.59375 215.65625 191.5 215.75 191.5 215.867188 C 191.5 215.984375 191.59375 216.078125 191.710938 216.078125 C 191.828125 216.078125 191.921875 215.984375 191.921875 215.867188 Z M 191.921875 215.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.320312 215.417969 C 192.320312 215.300781 192.226562 215.207031 192.109375 215.207031 C 191.992188 215.207031 191.898438 215.300781 191.898438 215.417969 C 191.898438 215.535156 191.992188 215.628906 192.109375 215.628906 C 192.226562 215.628906 192.320312 215.535156 192.320312 215.417969 Z M 192.320312 215.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.410156 213.117188 C 191.410156 213 191.316406 212.90625 191.199219 212.90625 C 191.082031 212.90625 190.988281 213 190.988281 213.117188 C 190.988281 213.234375 191.082031 213.328125 191.199219 213.328125 C 191.316406 213.328125 191.410156 213.234375 191.410156 213.117188 Z M 191.410156 213.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.933594 214.464844 C 189.933594 214.347656 189.839844 214.253906 189.722656 214.253906 C 189.605469 214.253906 189.511719 214.347656 189.511719 214.464844 C 189.511719 214.582031 189.605469 214.675781 189.722656 214.675781 C 189.839844 214.675781 189.933594 214.582031 189.933594 214.464844 Z M 189.933594 214.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.269531 213.386719 C 192.269531 213.269531 192.175781 213.175781 192.058594 213.175781 C 191.941406 213.175781 191.847656 213.269531 191.847656 213.386719 C 191.847656 213.503906 191.941406 213.597656 192.058594 213.597656 C 192.175781 213.597656 192.269531 213.503906 192.269531 213.386719 Z M 192.269531 213.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.554688 217.546875 C 195.554688 217.429688 195.460938 217.335938 195.34375 217.335938 C 195.226562 217.335938 195.132812 217.429688 195.132812 217.546875 C 195.132812 217.664062 195.226562 217.757812 195.34375 217.757812 C 195.460938 217.757812 195.554688 217.664062 195.554688 217.546875 Z M 195.554688 217.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.675781 219.265625 C 193.675781 219.148438 193.582031 219.054688 193.464844 219.054688 C 193.347656 219.054688 193.253906 219.148438 193.253906 219.265625 C 193.253906 219.382812 193.347656 219.476562 193.464844 219.476562 C 193.582031 219.476562 193.675781 219.382812 193.675781 219.265625 Z M 193.675781 219.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.703125 220.269531 C 193.703125 220.152344 193.609375 220.058594 193.492188 220.058594 C 193.375 220.058594 193.28125 220.152344 193.28125 220.269531 C 193.28125 220.386719 193.375 220.480469 193.492188 220.480469 C 193.609375 220.480469 193.703125 220.386719 193.703125 220.269531 Z M 193.703125 220.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.679688 221.136719 C 194.679688 221.019531 194.585938 220.925781 194.46875 220.925781 C 194.351562 220.925781 194.257812 221.019531 194.257812 221.136719 C 194.257812 221.253906 194.351562 221.347656 194.46875 221.347656 C 194.585938 221.347656 194.679688 221.253906 194.679688 221.136719 Z M 194.679688 221.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.777344 222.699219 C 198.777344 222.582031 198.683594 222.488281 198.566406 222.488281 C 198.449219 222.488281 198.355469 222.582031 198.355469 222.699219 C 198.355469 222.816406 198.449219 222.910156 198.566406 222.910156 C 198.683594 222.910156 198.777344 222.816406 198.777344 222.699219 Z M 198.777344 222.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.910156 219.210938 C 198.910156 219.09375 198.816406 219 198.699219 219 C 198.582031 219 198.488281 219.09375 198.488281 219.210938 C 198.488281 219.328125 198.582031 219.421875 198.699219 219.421875 C 198.816406 219.421875 198.910156 219.328125 198.910156 219.210938 Z M 198.910156 219.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.464844 217.726562 C 199.464844 217.609375 199.371094 217.515625 199.253906 217.515625 C 199.136719 217.515625 199.042969 217.609375 199.042969 217.726562 C 199.042969 217.84375 199.136719 217.9375 199.253906 217.9375 C 199.371094 217.9375 199.464844 217.84375 199.464844 217.726562 Z M 199.464844 217.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.722656 215.59375 C 197.722656 215.476562 197.628906 215.382812 197.511719 215.382812 C 197.394531 215.382812 197.300781 215.476562 197.300781 215.59375 C 197.300781 215.710938 197.394531 215.804688 197.511719 215.804688 C 197.628906 215.804688 197.722656 215.710938 197.722656 215.59375 Z M 197.722656 215.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.550781 220.238281 C 194.550781 220.121094 194.457031 220.027344 194.339844 220.027344 C 194.222656 220.027344 194.128906 220.121094 194.128906 220.238281 C 194.128906 220.355469 194.222656 220.449219 194.339844 220.449219 C 194.457031 220.449219 194.550781 220.355469 194.550781 220.238281 Z M 194.550781 220.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.8125 218.765625 C 194.8125 218.648438 194.71875 218.554688 194.601562 218.554688 C 194.484375 218.554688 194.390625 218.648438 194.390625 218.765625 C 194.390625 218.882812 194.484375 218.976562 194.601562 218.976562 C 194.71875 218.976562 194.8125 218.882812 194.8125 218.765625 Z M 194.8125 218.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.484375 219.136719 C 196.484375 219.019531 196.390625 218.925781 196.273438 218.925781 C 196.15625 218.925781 196.0625 219.019531 196.0625 219.136719 C 196.0625 219.253906 196.15625 219.347656 196.273438 219.347656 C 196.390625 219.347656 196.484375 219.253906 196.484375 219.136719 Z M 196.484375 219.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.441406 218.300781 C 197.441406 218.183594 197.347656 218.089844 197.230469 218.089844 C 197.113281 218.089844 197.019531 218.183594 197.019531 218.300781 C 197.019531 218.417969 197.113281 218.511719 197.230469 218.511719 C 197.347656 218.511719 197.441406 218.417969 197.441406 218.300781 Z M 197.441406 218.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.039062 219.027344 C 195.039062 218.910156 194.945312 218.816406 194.828125 218.816406 C 194.710938 218.816406 194.617188 218.910156 194.617188 219.027344 C 194.617188 219.144531 194.710938 219.238281 194.828125 219.238281 C 194.945312 219.238281 195.039062 219.144531 195.039062 219.027344 Z M 195.039062 219.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.414062 220.125 C 191.414062 220.007812 191.320312 219.914062 191.203125 219.914062 C 191.085938 219.914062 190.992188 220.007812 190.992188 220.125 C 190.992188 220.242188 191.085938 220.335938 191.203125 220.335938 C 191.320312 220.335938 191.414062 220.242188 191.414062 220.125 Z M 191.414062 220.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.726562 222.839844 C 193.726562 222.722656 193.632812 222.628906 193.515625 222.628906 C 193.398438 222.628906 193.304688 222.722656 193.304688 222.839844 C 193.304688 222.957031 193.398438 223.050781 193.515625 223.050781 C 193.632812 223.050781 193.726562 222.957031 193.726562 222.839844 Z M 193.726562 222.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.257812 223.640625 C 190.257812 223.523438 190.164062 223.429688 190.046875 223.429688 C 189.929688 223.429688 189.835938 223.523438 189.835938 223.640625 C 189.835938 223.757812 189.929688 223.851562 190.046875 223.851562 C 190.164062 223.851562 190.257812 223.757812 190.257812 223.640625 Z M 190.257812 223.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.996094 222.359375 C 189.996094 222.242188 189.902344 222.148438 189.785156 222.148438 C 189.667969 222.148438 189.574219 222.242188 189.574219 222.359375 C 189.574219 222.476562 189.667969 222.570312 189.785156 222.570312 C 189.902344 222.570312 189.996094 222.476562 189.996094 222.359375 Z M 189.996094 222.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.730469 224.617188 C 194.730469 224.5 194.636719 224.40625 194.519531 224.40625 C 194.402344 224.40625 194.308594 224.5 194.308594 224.617188 C 194.308594 224.734375 194.402344 224.828125 194.519531 224.828125 C 194.636719 224.828125 194.730469 224.734375 194.730469 224.617188 Z M 194.730469 224.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.675781 225.332031 C 191.675781 225.214844 191.582031 225.121094 191.464844 225.121094 C 191.347656 225.121094 191.253906 225.214844 191.253906 225.332031 C 191.253906 225.449219 191.347656 225.542969 191.464844 225.542969 C 191.582031 225.542969 191.675781 225.449219 191.675781 225.332031 Z M 191.675781 225.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.121094 227.652344 C 194.121094 227.535156 194.027344 227.441406 193.910156 227.441406 C 193.792969 227.441406 193.699219 227.535156 193.699219 227.652344 C 193.699219 227.769531 193.792969 227.863281 193.910156 227.863281 C 194.027344 227.863281 194.121094 227.769531 194.121094 227.652344 Z M 194.121094 227.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.78125 229.902344 C 193.78125 229.785156 193.6875 229.691406 193.570312 229.691406 C 193.453125 229.691406 193.359375 229.785156 193.359375 229.902344 C 193.359375 230.019531 193.453125 230.113281 193.570312 230.113281 C 193.6875 230.113281 193.78125 230.019531 193.78125 229.902344 Z M 193.78125 229.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.148438 229.582031 C 191.148438 229.464844 191.054688 229.371094 190.9375 229.371094 C 190.820312 229.371094 190.726562 229.464844 190.726562 229.582031 C 190.726562 229.699219 190.820312 229.792969 190.9375 229.792969 C 191.054688 229.792969 191.148438 229.699219 191.148438 229.582031 Z M 191.148438 229.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.863281 230.722656 C 190.863281 230.605469 190.769531 230.511719 190.652344 230.511719 C 190.535156 230.511719 190.441406 230.605469 190.441406 230.722656 C 190.441406 230.839844 190.535156 230.933594 190.652344 230.933594 C 190.769531 230.933594 190.863281 230.839844 190.863281 230.722656 Z M 190.863281 230.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.796875 231.753906 C 188.796875 231.636719 188.703125 231.542969 188.585938 231.542969 C 188.46875 231.542969 188.375 231.636719 188.375 231.753906 C 188.375 231.871094 188.46875 231.964844 188.585938 231.964844 C 188.703125 231.964844 188.796875 231.871094 188.796875 231.753906 Z M 188.796875 231.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.769531 231.3125 C 188.769531 231.195312 188.675781 231.101562 188.558594 231.101562 C 188.441406 231.101562 188.347656 231.195312 188.347656 231.3125 C 188.347656 231.429688 188.441406 231.523438 188.558594 231.523438 C 188.675781 231.523438 188.769531 231.429688 188.769531 231.3125 Z M 188.769531 231.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.402344 234.359375 C 188.402344 234.242188 188.308594 234.148438 188.191406 234.148438 C 188.074219 234.148438 187.980469 234.242188 187.980469 234.359375 C 187.980469 234.476562 188.074219 234.570312 188.191406 234.570312 C 188.308594 234.570312 188.402344 234.476562 188.402344 234.359375 Z M 188.402344 234.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.996094 232.65625 C 186.996094 232.539062 186.902344 232.445312 186.785156 232.445312 C 186.667969 232.445312 186.574219 232.539062 186.574219 232.65625 C 186.574219 232.773438 186.667969 232.867188 186.785156 232.867188 C 186.902344 232.867188 186.996094 232.773438 186.996094 232.65625 Z M 186.996094 232.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.796875 231.523438 C 187.796875 231.40625 187.703125 231.3125 187.585938 231.3125 C 187.46875 231.3125 187.375 231.40625 187.375 231.523438 C 187.375 231.640625 187.46875 231.734375 187.585938 231.734375 C 187.703125 231.734375 187.796875 231.640625 187.796875 231.523438 Z M 187.796875 231.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.050781 233.71875 C 188.050781 233.601562 187.957031 233.507812 187.839844 233.507812 C 187.722656 233.507812 187.628906 233.601562 187.628906 233.71875 C 187.628906 233.835938 187.722656 233.929688 187.839844 233.929688 C 187.957031 233.929688 188.050781 233.835938 188.050781 233.71875 Z M 188.050781 233.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.902344 229.707031 C 190.902344 229.589844 190.808594 229.496094 190.691406 229.496094 C 190.574219 229.496094 190.480469 229.589844 190.480469 229.707031 C 190.480469 229.824219 190.574219 229.917969 190.691406 229.917969 C 190.808594 229.917969 190.902344 229.824219 190.902344 229.707031 Z M 190.902344 229.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.007812 224.75 C 193.007812 224.632812 192.914062 224.539062 192.796875 224.539062 C 192.679688 224.539062 192.585938 224.632812 192.585938 224.75 C 192.585938 224.867188 192.679688 224.960938 192.796875 224.960938 C 192.914062 224.960938 193.007812 224.867188 193.007812 224.75 Z M 193.007812 224.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.070312 221.335938 C 192.070312 221.21875 191.976562 221.125 191.859375 221.125 C 191.742188 221.125 191.648438 221.21875 191.648438 221.335938 C 191.648438 221.453125 191.742188 221.546875 191.859375 221.546875 C 191.976562 221.546875 192.070312 221.453125 192.070312 221.335938 Z M 192.070312 221.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.996094 224.964844 C 190.996094 224.847656 190.902344 224.753906 190.785156 224.753906 C 190.667969 224.753906 190.574219 224.847656 190.574219 224.964844 C 190.574219 225.082031 190.667969 225.175781 190.785156 225.175781 C 190.902344 225.175781 190.996094 225.082031 190.996094 224.964844 Z M 190.996094 224.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.832031 226.621094 C 189.832031 226.503906 189.738281 226.410156 189.621094 226.410156 C 189.503906 226.410156 189.410156 226.503906 189.410156 226.621094 C 189.410156 226.738281 189.503906 226.832031 189.621094 226.832031 C 189.738281 226.832031 189.832031 226.738281 189.832031 226.621094 Z M 189.832031 226.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.179688 229.546875 C 190.179688 229.429688 190.085938 229.335938 189.96875 229.335938 C 189.851562 229.335938 189.757812 229.429688 189.757812 229.546875 C 189.757812 229.664062 189.851562 229.757812 189.96875 229.757812 C 190.085938 229.757812 190.179688 229.664062 190.179688 229.546875 Z M 190.179688 229.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.839844 227.730469 C 189.839844 227.613281 189.746094 227.519531 189.628906 227.519531 C 189.511719 227.519531 189.417969 227.613281 189.417969 227.730469 C 189.417969 227.847656 189.511719 227.941406 189.628906 227.941406 C 189.746094 227.941406 189.839844 227.847656 189.839844 227.730469 Z M 189.839844 227.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.421875 226.644531 C 185.421875 226.527344 185.328125 226.433594 185.210938 226.433594 C 185.09375 226.433594 185 226.527344 185 226.644531 C 185 226.761719 185.09375 226.855469 185.210938 226.855469 C 185.328125 226.855469 185.421875 226.761719 185.421875 226.644531 Z M 185.421875 226.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.042969 225.925781 C 189.042969 225.808594 188.949219 225.714844 188.832031 225.714844 C 188.714844 225.714844 188.621094 225.808594 188.621094 225.925781 C 188.621094 226.042969 188.714844 226.136719 188.832031 226.136719 C 188.949219 226.136719 189.042969 226.042969 189.042969 225.925781 Z M 189.042969 225.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.054688 227.8125 C 188.054688 227.695312 187.960938 227.601562 187.84375 227.601562 C 187.726562 227.601562 187.632812 227.695312 187.632812 227.8125 C 187.632812 227.929688 187.726562 228.023438 187.84375 228.023438 C 187.960938 228.023438 188.054688 227.929688 188.054688 227.8125 Z M 188.054688 227.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.59375 228.839844 C 186.59375 228.722656 186.5 228.628906 186.382812 228.628906 C 186.265625 228.628906 186.171875 228.722656 186.171875 228.839844 C 186.171875 228.957031 186.265625 229.050781 186.382812 229.050781 C 186.5 229.050781 186.59375 228.957031 186.59375 228.839844 Z M 186.59375 228.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.417969 227.515625 C 186.417969 227.398438 186.324219 227.304688 186.207031 227.304688 C 186.089844 227.304688 185.996094 227.398438 185.996094 227.515625 C 185.996094 227.632812 186.089844 227.726562 186.207031 227.726562 C 186.324219 227.726562 186.417969 227.632812 186.417969 227.515625 Z M 186.417969 227.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.242188 225.316406 C 190.242188 225.199219 190.148438 225.105469 190.03125 225.105469 C 189.914062 225.105469 189.820312 225.199219 189.820312 225.316406 C 189.820312 225.433594 189.914062 225.527344 190.03125 225.527344 C 190.148438 225.527344 190.242188 225.433594 190.242188 225.316406 Z M 190.242188 225.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.390625 222.949219 C 187.390625 222.832031 187.296875 222.738281 187.179688 222.738281 C 187.0625 222.738281 186.96875 222.832031 186.96875 222.949219 C 186.96875 223.066406 187.0625 223.160156 187.179688 223.160156 C 187.296875 223.160156 187.390625 223.066406 187.390625 222.949219 Z M 187.390625 222.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.507812 220.976562 C 186.507812 220.859375 186.414062 220.765625 186.296875 220.765625 C 186.179688 220.765625 186.085938 220.859375 186.085938 220.976562 C 186.085938 221.09375 186.179688 221.1875 186.296875 221.1875 C 186.414062 221.1875 186.507812 221.09375 186.507812 220.976562 Z M 186.507812 220.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.191406 224.636719 C 188.191406 224.519531 188.097656 224.425781 187.980469 224.425781 C 187.863281 224.425781 187.769531 224.519531 187.769531 224.636719 C 187.769531 224.753906 187.863281 224.847656 187.980469 224.847656 C 188.097656 224.847656 188.191406 224.753906 188.191406 224.636719 Z M 188.191406 224.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.96875 224.839844 C 188.96875 224.722656 188.875 224.628906 188.757812 224.628906 C 188.640625 224.628906 188.546875 224.722656 188.546875 224.839844 C 188.546875 224.957031 188.640625 225.050781 188.757812 225.050781 C 188.875 225.050781 188.96875 224.957031 188.96875 224.839844 Z M 188.96875 224.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.820312 219.964844 C 188.820312 219.847656 188.726562 219.753906 188.609375 219.753906 C 188.492188 219.753906 188.398438 219.847656 188.398438 219.964844 C 188.398438 220.082031 188.492188 220.175781 188.609375 220.175781 C 188.726562 220.175781 188.820312 220.082031 188.820312 219.964844 Z M 188.820312 219.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.761719 218.648438 C 189.761719 218.53125 189.667969 218.4375 189.550781 218.4375 C 189.433594 218.4375 189.339844 218.53125 189.339844 218.648438 C 189.339844 218.765625 189.433594 218.859375 189.550781 218.859375 C 189.667969 218.859375 189.761719 218.765625 189.761719 218.648438 Z M 189.761719 218.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.160156 218.378906 C 189.160156 218.261719 189.066406 218.167969 188.949219 218.167969 C 188.832031 218.167969 188.738281 218.261719 188.738281 218.378906 C 188.738281 218.496094 188.832031 218.589844 188.949219 218.589844 C 189.066406 218.589844 189.160156 218.496094 189.160156 218.378906 Z M 189.160156 218.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.636719 217.203125 C 187.636719 217.085938 187.542969 216.992188 187.425781 216.992188 C 187.308594 216.992188 187.214844 217.085938 187.214844 217.203125 C 187.214844 217.320312 187.308594 217.414062 187.425781 217.414062 C 187.542969 217.414062 187.636719 217.320312 187.636719 217.203125 Z M 187.636719 217.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.59375 213.863281 C 190.59375 213.746094 190.5 213.652344 190.382812 213.652344 C 190.265625 213.652344 190.171875 213.746094 190.171875 213.863281 C 190.171875 213.980469 190.265625 214.074219 190.382812 214.074219 C 190.5 214.074219 190.59375 213.980469 190.59375 213.863281 Z M 190.59375 213.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.636719 213.542969 C 194.636719 213.425781 194.542969 213.332031 194.425781 213.332031 C 194.308594 213.332031 194.214844 213.425781 194.214844 213.542969 C 194.214844 213.660156 194.308594 213.753906 194.425781 213.753906 C 194.542969 213.753906 194.636719 213.660156 194.636719 213.542969 Z M 194.636719 213.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.445312 214.257812 C 198.445312 214.140625 198.351562 214.046875 198.234375 214.046875 C 198.117188 214.046875 198.023438 214.140625 198.023438 214.257812 C 198.023438 214.375 198.117188 214.46875 198.234375 214.46875 C 198.351562 214.46875 198.445312 214.375 198.445312 214.257812 Z M 198.445312 214.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.082031 211.84375 C 200.082031 211.726562 199.988281 211.632812 199.871094 211.632812 C 199.753906 211.632812 199.660156 211.726562 199.660156 211.84375 C 199.660156 211.960938 199.753906 212.054688 199.871094 212.054688 C 199.988281 212.054688 200.082031 211.960938 200.082031 211.84375 Z M 200.082031 211.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.296875 212.894531 C 199.296875 212.777344 199.203125 212.683594 199.085938 212.683594 C 198.96875 212.683594 198.875 212.777344 198.875 212.894531 C 198.875 213.011719 198.96875 213.105469 199.085938 213.105469 C 199.203125 213.105469 199.296875 213.011719 199.296875 212.894531 Z M 199.296875 212.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.886719 214.761719 C 199.886719 214.644531 199.792969 214.550781 199.675781 214.550781 C 199.558594 214.550781 199.464844 214.644531 199.464844 214.761719 C 199.464844 214.878906 199.558594 214.972656 199.675781 214.972656 C 199.792969 214.972656 199.886719 214.878906 199.886719 214.761719 Z M 199.886719 214.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.625 214.671875 C 199.625 214.554688 199.53125 214.460938 199.414062 214.460938 C 199.296875 214.460938 199.203125 214.554688 199.203125 214.671875 C 199.203125 214.789062 199.296875 214.882812 199.414062 214.882812 C 199.53125 214.882812 199.625 214.789062 199.625 214.671875 Z M 199.625 214.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.421875 213.46875 C 197.421875 213.351562 197.328125 213.257812 197.210938 213.257812 C 197.09375 213.257812 197 213.351562 197 213.46875 C 197 213.585938 197.09375 213.679688 197.210938 213.679688 C 197.328125 213.679688 197.421875 213.585938 197.421875 213.46875 Z M 197.421875 213.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.644531 215.226562 C 194.644531 215.109375 194.550781 215.015625 194.433594 215.015625 C 194.316406 215.015625 194.222656 215.109375 194.222656 215.226562 C 194.222656 215.34375 194.316406 215.4375 194.433594 215.4375 C 194.550781 215.4375 194.644531 215.34375 194.644531 215.226562 Z M 194.644531 215.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.195312 215.484375 C 195.195312 215.367188 195.101562 215.273438 194.984375 215.273438 C 194.867188 215.273438 194.773438 215.367188 194.773438 215.484375 C 194.773438 215.601562 194.867188 215.695312 194.984375 215.695312 C 195.101562 215.695312 195.195312 215.601562 195.195312 215.484375 Z M 195.195312 215.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.144531 217.070312 C 196.144531 216.953125 196.050781 216.859375 195.933594 216.859375 C 195.816406 216.859375 195.722656 216.953125 195.722656 217.070312 C 195.722656 217.1875 195.816406 217.28125 195.933594 217.28125 C 196.050781 217.28125 196.144531 217.1875 196.144531 217.070312 Z M 196.144531 217.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.328125 214.769531 C 193.328125 214.652344 193.234375 214.558594 193.117188 214.558594 C 193 214.558594 192.90625 214.652344 192.90625 214.769531 C 192.90625 214.886719 193 214.980469 193.117188 214.980469 C 193.234375 214.980469 193.328125 214.886719 193.328125 214.769531 Z M 193.328125 214.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.796875 215.195312 C 193.796875 215.078125 193.703125 214.984375 193.585938 214.984375 C 193.46875 214.984375 193.375 215.078125 193.375 215.195312 C 193.375 215.3125 193.46875 215.40625 193.585938 215.40625 C 193.703125 215.40625 193.796875 215.3125 193.796875 215.195312 Z M 193.796875 215.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.445312 217.632812 C 194.445312 217.515625 194.351562 217.421875 194.234375 217.421875 C 194.117188 217.421875 194.023438 217.515625 194.023438 217.632812 C 194.023438 217.75 194.117188 217.84375 194.234375 217.84375 C 194.351562 217.84375 194.445312 217.75 194.445312 217.632812 Z M 194.445312 217.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.675781 218.886719 C 192.675781 218.769531 192.582031 218.675781 192.464844 218.675781 C 192.347656 218.675781 192.253906 218.769531 192.253906 218.886719 C 192.253906 219.003906 192.347656 219.097656 192.464844 219.097656 C 192.582031 219.097656 192.675781 219.003906 192.675781 218.886719 Z M 192.675781 218.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.265625 221.976562 C 191.265625 221.859375 191.171875 221.765625 191.054688 221.765625 C 190.9375 221.765625 190.84375 221.859375 190.84375 221.976562 C 190.84375 222.09375 190.9375 222.1875 191.054688 222.1875 C 191.171875 222.1875 191.265625 222.09375 191.265625 221.976562 Z M 191.265625 221.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.042969 221.148438 C 191.042969 221.03125 190.949219 220.9375 190.832031 220.9375 C 190.714844 220.9375 190.621094 221.03125 190.621094 221.148438 C 190.621094 221.265625 190.714844 221.359375 190.832031 221.359375 C 190.949219 221.359375 191.042969 221.265625 191.042969 221.148438 Z M 191.042969 221.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.390625 220.632812 C 193.390625 220.515625 193.296875 220.421875 193.179688 220.421875 C 193.0625 220.421875 192.96875 220.515625 192.96875 220.632812 C 192.96875 220.75 193.0625 220.84375 193.179688 220.84375 C 193.296875 220.84375 193.390625 220.75 193.390625 220.632812 Z M 193.390625 220.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.582031 221.820312 C 193.582031 221.703125 193.488281 221.609375 193.371094 221.609375 C 193.253906 221.609375 193.160156 221.703125 193.160156 221.820312 C 193.160156 221.9375 193.253906 222.03125 193.371094 222.03125 C 193.488281 222.03125 193.582031 221.9375 193.582031 221.820312 Z M 193.582031 221.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.800781 221.023438 C 192.800781 220.90625 192.707031 220.8125 192.589844 220.8125 C 192.472656 220.8125 192.378906 220.90625 192.378906 221.023438 C 192.378906 221.140625 192.472656 221.234375 192.589844 221.234375 C 192.707031 221.234375 192.800781 221.140625 192.800781 221.023438 Z M 192.800781 221.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.410156 221.4375 C 198.410156 221.320312 198.316406 221.226562 198.199219 221.226562 C 198.082031 221.226562 197.988281 221.320312 197.988281 221.4375 C 197.988281 221.554688 198.082031 221.648438 198.199219 221.648438 C 198.316406 221.648438 198.410156 221.554688 198.410156 221.4375 Z M 198.410156 221.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.988281 223.535156 C 195.988281 223.417969 195.894531 223.324219 195.777344 223.324219 C 195.660156 223.324219 195.566406 223.417969 195.566406 223.535156 C 195.566406 223.652344 195.660156 223.746094 195.777344 223.746094 C 195.894531 223.746094 195.988281 223.652344 195.988281 223.535156 Z M 195.988281 223.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.519531 224.703125 C 197.519531 224.585938 197.425781 224.492188 197.308594 224.492188 C 197.191406 224.492188 197.097656 224.585938 197.097656 224.703125 C 197.097656 224.820312 197.191406 224.914062 197.308594 224.914062 C 197.425781 224.914062 197.519531 224.820312 197.519531 224.703125 Z M 197.519531 224.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.480469 222.863281 C 200.480469 222.746094 200.386719 222.652344 200.269531 222.652344 C 200.152344 222.652344 200.058594 222.746094 200.058594 222.863281 C 200.058594 222.980469 200.152344 223.074219 200.269531 223.074219 C 200.386719 223.074219 200.480469 222.980469 200.480469 222.863281 Z M 200.480469 222.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.898438 223.277344 C 201.898438 223.160156 201.804688 223.066406 201.6875 223.066406 C 201.570312 223.066406 201.476562 223.160156 201.476562 223.277344 C 201.476562 223.394531 201.570312 223.488281 201.6875 223.488281 C 201.804688 223.488281 201.898438 223.394531 201.898438 223.277344 Z M 201.898438 223.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.90625 221.46875 C 202.90625 221.351562 202.8125 221.257812 202.695312 221.257812 C 202.578125 221.257812 202.484375 221.351562 202.484375 221.46875 C 202.484375 221.585938 202.578125 221.679688 202.695312 221.679688 C 202.8125 221.679688 202.90625 221.585938 202.90625 221.46875 Z M 202.90625 221.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.285156 221.207031 C 199.285156 221.089844 199.191406 220.996094 199.074219 220.996094 C 198.957031 220.996094 198.863281 221.089844 198.863281 221.207031 C 198.863281 221.324219 198.957031 221.417969 199.074219 221.417969 C 199.191406 221.417969 199.285156 221.324219 199.285156 221.207031 Z M 199.285156 221.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.113281 223.730469 C 201.113281 223.613281 201.019531 223.519531 200.902344 223.519531 C 200.785156 223.519531 200.691406 223.613281 200.691406 223.730469 C 200.691406 223.847656 200.785156 223.941406 200.902344 223.941406 C 201.019531 223.941406 201.113281 223.847656 201.113281 223.730469 Z M 201.113281 223.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.046875 223.507812 C 205.046875 223.390625 204.953125 223.296875 204.835938 223.296875 C 204.71875 223.296875 204.625 223.390625 204.625 223.507812 C 204.625 223.625 204.71875 223.71875 204.835938 223.71875 C 204.953125 223.71875 205.046875 223.625 205.046875 223.507812 Z M 205.046875 223.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.910156 223.742188 C 205.910156 223.625 205.816406 223.53125 205.699219 223.53125 C 205.582031 223.53125 205.488281 223.625 205.488281 223.742188 C 205.488281 223.859375 205.582031 223.953125 205.699219 223.953125 C 205.816406 223.953125 205.910156 223.859375 205.910156 223.742188 Z M 205.910156 223.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.101562 222.671875 C 209.101562 222.554688 209.007812 222.460938 208.890625 222.460938 C 208.773438 222.460938 208.679688 222.554688 208.679688 222.671875 C 208.679688 222.789062 208.773438 222.882812 208.890625 222.882812 C 209.007812 222.882812 209.101562 222.789062 209.101562 222.671875 Z M 209.101562 222.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.648438 225.488281 C 208.648438 225.371094 208.554688 225.277344 208.4375 225.277344 C 208.320312 225.277344 208.226562 225.371094 208.226562 225.488281 C 208.226562 225.605469 208.320312 225.699219 208.4375 225.699219 C 208.554688 225.699219 208.648438 225.605469 208.648438 225.488281 Z M 208.648438 225.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.457031 224.46875 C 210.457031 224.351562 210.363281 224.257812 210.246094 224.257812 C 210.128906 224.257812 210.035156 224.351562 210.035156 224.46875 C 210.035156 224.585938 210.128906 224.679688 210.246094 224.679688 C 210.363281 224.679688 210.457031 224.585938 210.457031 224.46875 Z M 210.457031 224.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.820312 223.738281 C 211.820312 223.621094 211.726562 223.527344 211.609375 223.527344 C 211.492188 223.527344 211.398438 223.621094 211.398438 223.738281 C 211.398438 223.855469 211.492188 223.949219 211.609375 223.949219 C 211.726562 223.949219 211.820312 223.855469 211.820312 223.738281 Z M 211.820312 223.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.894531 224.621094 C 207.894531 224.503906 207.800781 224.410156 207.683594 224.410156 C 207.566406 224.410156 207.472656 224.503906 207.472656 224.621094 C 207.472656 224.738281 207.566406 224.832031 207.683594 224.832031 C 207.800781 224.832031 207.894531 224.738281 207.894531 224.621094 Z M 207.894531 224.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.820312 227.117188 C 206.820312 227 206.726562 226.90625 206.609375 226.90625 C 206.492188 226.90625 206.398438 227 206.398438 227.117188 C 206.398438 227.234375 206.492188 227.328125 206.609375 227.328125 C 206.726562 227.328125 206.820312 227.234375 206.820312 227.117188 Z M 206.820312 227.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.835938 227.554688 C 208.835938 227.4375 208.742188 227.34375 208.625 227.34375 C 208.507812 227.34375 208.414062 227.4375 208.414062 227.554688 C 208.414062 227.671875 208.507812 227.765625 208.625 227.765625 C 208.742188 227.765625 208.835938 227.671875 208.835938 227.554688 Z M 208.835938 227.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.355469 230.425781 C 209.355469 230.308594 209.261719 230.214844 209.144531 230.214844 C 209.027344 230.214844 208.933594 230.308594 208.933594 230.425781 C 208.933594 230.542969 209.027344 230.636719 209.144531 230.636719 C 209.261719 230.636719 209.355469 230.542969 209.355469 230.425781 Z M 209.355469 230.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.664062 229.984375 C 208.664062 229.867188 208.570312 229.773438 208.453125 229.773438 C 208.335938 229.773438 208.242188 229.867188 208.242188 229.984375 C 208.242188 230.101562 208.335938 230.195312 208.453125 230.195312 C 208.570312 230.195312 208.664062 230.101562 208.664062 229.984375 Z M 208.664062 229.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.824219 228.628906 C 209.824219 228.511719 209.730469 228.417969 209.613281 228.417969 C 209.496094 228.417969 209.402344 228.511719 209.402344 228.628906 C 209.402344 228.746094 209.496094 228.839844 209.613281 228.839844 C 209.730469 228.839844 209.824219 228.746094 209.824219 228.628906 Z M 209.824219 228.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.539062 228.015625 C 206.539062 227.898438 206.445312 227.804688 206.328125 227.804688 C 206.210938 227.804688 206.117188 227.898438 206.117188 228.015625 C 206.117188 228.132812 206.210938 228.226562 206.328125 228.226562 C 206.445312 228.226562 206.539062 228.132812 206.539062 228.015625 Z M 206.539062 228.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.3125 231.246094 C 206.3125 231.128906 206.21875 231.035156 206.101562 231.035156 C 205.984375 231.035156 205.890625 231.128906 205.890625 231.246094 C 205.890625 231.363281 205.984375 231.457031 206.101562 231.457031 C 206.21875 231.457031 206.3125 231.363281 206.3125 231.246094 Z M 206.3125 231.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.394531 231.742188 C 205.394531 231.625 205.300781 231.53125 205.183594 231.53125 C 205.066406 231.53125 204.972656 231.625 204.972656 231.742188 C 204.972656 231.859375 205.066406 231.953125 205.183594 231.953125 C 205.300781 231.953125 205.394531 231.859375 205.394531 231.742188 Z M 205.394531 231.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.054688 230.488281 C 206.054688 230.371094 205.960938 230.277344 205.84375 230.277344 C 205.726562 230.277344 205.632812 230.371094 205.632812 230.488281 C 205.632812 230.605469 205.726562 230.699219 205.84375 230.699219 C 205.960938 230.699219 206.054688 230.605469 206.054688 230.488281 Z M 206.054688 230.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.9375 227.949219 C 206.9375 227.832031 206.84375 227.738281 206.726562 227.738281 C 206.609375 227.738281 206.515625 227.832031 206.515625 227.949219 C 206.515625 228.066406 206.609375 228.160156 206.726562 228.160156 C 206.84375 228.160156 206.9375 228.066406 206.9375 227.949219 Z M 206.9375 227.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.058594 226.035156 C 208.058594 225.917969 207.964844 225.824219 207.847656 225.824219 C 207.730469 225.824219 207.636719 225.917969 207.636719 226.035156 C 207.636719 226.152344 207.730469 226.246094 207.847656 226.246094 C 207.964844 226.246094 208.058594 226.152344 208.058594 226.035156 Z M 208.058594 226.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.34375 226.042969 C 206.34375 225.925781 206.25 225.832031 206.132812 225.832031 C 206.015625 225.832031 205.921875 225.925781 205.921875 226.042969 C 205.921875 226.160156 206.015625 226.253906 206.132812 226.253906 C 206.25 226.253906 206.34375 226.160156 206.34375 226.042969 Z M 206.34375 226.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.269531 220.214844 C 203.269531 220.097656 203.175781 220.003906 203.058594 220.003906 C 202.941406 220.003906 202.847656 220.097656 202.847656 220.214844 C 202.847656 220.332031 202.941406 220.425781 203.058594 220.425781 C 203.175781 220.425781 203.269531 220.332031 203.269531 220.214844 Z M 203.269531 220.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.875 220.339844 C 197.875 220.222656 197.78125 220.128906 197.664062 220.128906 C 197.546875 220.128906 197.453125 220.222656 197.453125 220.339844 C 197.453125 220.457031 197.546875 220.550781 197.664062 220.550781 C 197.78125 220.550781 197.875 220.457031 197.875 220.339844 Z M 197.875 220.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.851562 223.292969 C 197.851562 223.175781 197.757812 223.082031 197.640625 223.082031 C 197.523438 223.082031 197.429688 223.175781 197.429688 223.292969 C 197.429688 223.410156 197.523438 223.503906 197.640625 223.503906 C 197.757812 223.503906 197.851562 223.410156 197.851562 223.292969 Z M 197.851562 223.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.832031 224.265625 C 201.832031 224.148438 201.738281 224.054688 201.621094 224.054688 C 201.503906 224.054688 201.410156 224.148438 201.410156 224.265625 C 201.410156 224.382812 201.503906 224.476562 201.621094 224.476562 C 201.738281 224.476562 201.832031 224.382812 201.832031 224.265625 Z M 201.832031 224.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.617188 224.128906 C 202.617188 224.011719 202.523438 223.917969 202.40625 223.917969 C 202.289062 223.917969 202.195312 224.011719 202.195312 224.128906 C 202.195312 224.246094 202.289062 224.339844 202.40625 224.339844 C 202.523438 224.339844 202.617188 224.246094 202.617188 224.128906 Z M 202.617188 224.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.515625 225.613281 C 203.515625 225.496094 203.421875 225.402344 203.304688 225.402344 C 203.1875 225.402344 203.09375 225.496094 203.09375 225.613281 C 203.09375 225.730469 203.1875 225.824219 203.304688 225.824219 C 203.421875 225.824219 203.515625 225.730469 203.515625 225.613281 Z M 203.515625 225.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.746094 227.058594 C 198.746094 226.941406 198.652344 226.847656 198.535156 226.847656 C 198.417969 226.847656 198.324219 226.941406 198.324219 227.058594 C 198.324219 227.175781 198.417969 227.269531 198.535156 227.269531 C 198.652344 227.269531 198.746094 227.175781 198.746094 227.058594 Z M 198.746094 227.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.160156 228.636719 C 199.160156 228.519531 199.066406 228.425781 198.949219 228.425781 C 198.832031 228.425781 198.738281 228.519531 198.738281 228.636719 C 198.738281 228.753906 198.832031 228.847656 198.949219 228.847656 C 199.066406 228.847656 199.160156 228.753906 199.160156 228.636719 Z M 199.160156 228.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.035156 228.792969 C 197.035156 228.675781 196.941406 228.582031 196.824219 228.582031 C 196.707031 228.582031 196.613281 228.675781 196.613281 228.792969 C 196.613281 228.910156 196.707031 229.003906 196.824219 229.003906 C 196.941406 229.003906 197.035156 228.910156 197.035156 228.792969 Z M 197.035156 228.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.359375 225.507812 C 196.359375 225.390625 196.265625 225.296875 196.148438 225.296875 C 196.03125 225.296875 195.9375 225.390625 195.9375 225.507812 C 195.9375 225.625 196.03125 225.71875 196.148438 225.71875 C 196.265625 225.71875 196.359375 225.625 196.359375 225.507812 Z M 196.359375 225.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.984375 228.136719 C 197.984375 228.019531 197.890625 227.925781 197.773438 227.925781 C 197.65625 227.925781 197.5625 228.019531 197.5625 228.136719 C 197.5625 228.253906 197.65625 228.347656 197.773438 228.347656 C 197.890625 228.347656 197.984375 228.253906 197.984375 228.136719 Z M 197.984375 228.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.191406 227.242188 C 199.191406 227.125 199.097656 227.03125 198.980469 227.03125 C 198.863281 227.03125 198.769531 227.125 198.769531 227.242188 C 198.769531 227.359375 198.863281 227.453125 198.980469 227.453125 C 199.097656 227.453125 199.191406 227.359375 199.191406 227.242188 Z M 199.191406 227.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.035156 227.421875 C 198.035156 227.304688 197.941406 227.210938 197.824219 227.210938 C 197.707031 227.210938 197.613281 227.304688 197.613281 227.421875 C 197.613281 227.539062 197.707031 227.632812 197.824219 227.632812 C 197.941406 227.632812 198.035156 227.539062 198.035156 227.421875 Z M 198.035156 227.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.8125 228.808594 C 194.8125 228.691406 194.71875 228.597656 194.601562 228.597656 C 194.484375 228.597656 194.390625 228.691406 194.390625 228.808594 C 194.390625 228.925781 194.484375 229.019531 194.601562 229.019531 C 194.71875 229.019531 194.8125 228.925781 194.8125 228.808594 Z M 194.8125 228.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.925781 231.523438 C 194.925781 231.40625 194.832031 231.3125 194.714844 231.3125 C 194.597656 231.3125 194.503906 231.40625 194.503906 231.523438 C 194.503906 231.640625 194.597656 231.734375 194.714844 231.734375 C 194.832031 231.734375 194.925781 231.640625 194.925781 231.523438 Z M 194.925781 231.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.683594 231.6875 C 194.683594 231.570312 194.589844 231.476562 194.472656 231.476562 C 194.355469 231.476562 194.261719 231.570312 194.261719 231.6875 C 194.261719 231.804688 194.355469 231.898438 194.472656 231.898438 C 194.589844 231.898438 194.683594 231.804688 194.683594 231.6875 Z M 194.683594 231.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.25 232.746094 C 193.25 232.628906 193.15625 232.535156 193.039062 232.535156 C 192.921875 232.535156 192.828125 232.628906 192.828125 232.746094 C 192.828125 232.863281 192.921875 232.957031 193.039062 232.957031 C 193.15625 232.957031 193.25 232.863281 193.25 232.746094 Z M 193.25 232.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.394531 230.289062 C 192.394531 230.171875 192.300781 230.078125 192.183594 230.078125 C 192.066406 230.078125 191.972656 230.171875 191.972656 230.289062 C 191.972656 230.40625 192.066406 230.5 192.183594 230.5 C 192.300781 230.5 192.394531 230.40625 192.394531 230.289062 Z M 192.394531 230.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.378906 229.417969 C 196.378906 229.300781 196.285156 229.207031 196.167969 229.207031 C 196.050781 229.207031 195.957031 229.300781 195.957031 229.417969 C 195.957031 229.535156 196.050781 229.628906 196.167969 229.628906 C 196.285156 229.628906 196.378906 229.535156 196.378906 229.417969 Z M 196.378906 229.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.21875 228.976562 C 201.21875 228.859375 201.125 228.765625 201.007812 228.765625 C 200.890625 228.765625 200.796875 228.859375 200.796875 228.976562 C 200.796875 229.09375 200.890625 229.1875 201.007812 229.1875 C 201.125 229.1875 201.21875 229.09375 201.21875 228.976562 Z M 201.21875 228.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.199219 225.074219 C 202.199219 224.957031 202.105469 224.863281 201.988281 224.863281 C 201.871094 224.863281 201.777344 224.957031 201.777344 225.074219 C 201.777344 225.191406 201.871094 225.285156 201.988281 225.285156 C 202.105469 225.285156 202.199219 225.191406 202.199219 225.074219 Z M 202.199219 225.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.980469 229.402344 C 202.980469 229.285156 202.886719 229.191406 202.769531 229.191406 C 202.652344 229.191406 202.558594 229.285156 202.558594 229.402344 C 202.558594 229.519531 202.652344 229.613281 202.769531 229.613281 C 202.886719 229.613281 202.980469 229.519531 202.980469 229.402344 Z M 202.980469 229.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.273438 227.066406 C 205.273438 226.949219 205.179688 226.855469 205.0625 226.855469 C 204.945312 226.855469 204.851562 226.949219 204.851562 227.066406 C 204.851562 227.183594 204.945312 227.277344 205.0625 227.277344 C 205.179688 227.277344 205.273438 227.183594 205.273438 227.066406 Z M 205.273438 227.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.1875 226.8125 C 205.1875 226.695312 205.09375 226.601562 204.976562 226.601562 C 204.859375 226.601562 204.765625 226.695312 204.765625 226.8125 C 204.765625 226.929688 204.859375 227.023438 204.976562 227.023438 C 205.09375 227.023438 205.1875 226.929688 205.1875 226.8125 Z M 205.1875 226.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.980469 227.128906 C 207.980469 227.011719 207.886719 226.917969 207.769531 226.917969 C 207.652344 226.917969 207.558594 227.011719 207.558594 227.128906 C 207.558594 227.246094 207.652344 227.339844 207.769531 227.339844 C 207.886719 227.339844 207.980469 227.246094 207.980469 227.128906 Z M 207.980469 227.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.253906 227.945312 C 208.253906 227.828125 208.160156 227.734375 208.042969 227.734375 C 207.925781 227.734375 207.832031 227.828125 207.832031 227.945312 C 207.832031 228.0625 207.925781 228.15625 208.042969 228.15625 C 208.160156 228.15625 208.253906 228.0625 208.253906 227.945312 Z M 208.253906 227.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.984375 227.128906 C 204.984375 227.011719 204.890625 226.917969 204.773438 226.917969 C 204.65625 226.917969 204.5625 227.011719 204.5625 227.128906 C 204.5625 227.246094 204.65625 227.339844 204.773438 227.339844 C 204.890625 227.339844 204.984375 227.246094 204.984375 227.128906 Z M 204.984375 227.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.589844 228.449219 C 205.589844 228.332031 205.496094 228.238281 205.378906 228.238281 C 205.261719 228.238281 205.167969 228.332031 205.167969 228.449219 C 205.167969 228.566406 205.261719 228.660156 205.378906 228.660156 C 205.496094 228.660156 205.589844 228.566406 205.589844 228.449219 Z M 205.589844 228.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.90625 229.308594 C 204.90625 229.191406 204.8125 229.097656 204.695312 229.097656 C 204.578125 229.097656 204.484375 229.191406 204.484375 229.308594 C 204.484375 229.425781 204.578125 229.519531 204.695312 229.519531 C 204.8125 229.519531 204.90625 229.425781 204.90625 229.308594 Z M 204.90625 229.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.589844 229.859375 C 202.589844 229.742188 202.496094 229.648438 202.378906 229.648438 C 202.261719 229.648438 202.167969 229.742188 202.167969 229.859375 C 202.167969 229.976562 202.261719 230.070312 202.378906 230.070312 C 202.496094 230.070312 202.589844 229.976562 202.589844 229.859375 Z M 202.589844 229.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.640625 231.585938 C 201.640625 231.46875 201.546875 231.375 201.429688 231.375 C 201.3125 231.375 201.21875 231.46875 201.21875 231.585938 C 201.21875 231.703125 201.3125 231.796875 201.429688 231.796875 C 201.546875 231.796875 201.640625 231.703125 201.640625 231.585938 Z M 201.640625 231.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.574219 232.929688 C 203.574219 232.8125 203.480469 232.71875 203.363281 232.71875 C 203.246094 232.71875 203.152344 232.8125 203.152344 232.929688 C 203.152344 233.046875 203.246094 233.140625 203.363281 233.140625 C 203.480469 233.140625 203.574219 233.046875 203.574219 232.929688 Z M 203.574219 232.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.980469 231.0625 C 202.980469 230.945312 202.886719 230.851562 202.769531 230.851562 C 202.652344 230.851562 202.558594 230.945312 202.558594 231.0625 C 202.558594 231.179688 202.652344 231.273438 202.769531 231.273438 C 202.886719 231.273438 202.980469 231.179688 202.980469 231.0625 Z M 202.980469 231.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.574219 231.070312 C 200.574219 230.953125 200.480469 230.859375 200.363281 230.859375 C 200.246094 230.859375 200.152344 230.953125 200.152344 231.070312 C 200.152344 231.1875 200.246094 231.28125 200.363281 231.28125 C 200.480469 231.28125 200.574219 231.1875 200.574219 231.070312 Z M 200.574219 231.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.964844 231.5625 C 198.964844 231.445312 198.871094 231.351562 198.753906 231.351562 C 198.636719 231.351562 198.542969 231.445312 198.542969 231.5625 C 198.542969 231.679688 198.636719 231.773438 198.753906 231.773438 C 198.871094 231.773438 198.964844 231.679688 198.964844 231.5625 Z M 198.964844 231.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.070312 232.988281 C 197.070312 232.871094 196.976562 232.777344 196.859375 232.777344 C 196.742188 232.777344 196.648438 232.871094 196.648438 232.988281 C 196.648438 233.105469 196.742188 233.199219 196.859375 233.199219 C 196.976562 233.199219 197.070312 233.105469 197.070312 232.988281 Z M 197.070312 232.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.738281 230.726562 C 199.738281 230.609375 199.644531 230.515625 199.527344 230.515625 C 199.410156 230.515625 199.316406 230.609375 199.316406 230.726562 C 199.316406 230.84375 199.410156 230.9375 199.527344 230.9375 C 199.644531 230.9375 199.738281 230.84375 199.738281 230.726562 Z M 199.738281 230.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.21875 230.789062 C 203.21875 230.671875 203.125 230.578125 203.007812 230.578125 C 202.890625 230.578125 202.796875 230.671875 202.796875 230.789062 C 202.796875 230.90625 202.890625 231 203.007812 231 C 203.125 231 203.21875 230.90625 203.21875 230.789062 Z M 203.21875 230.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.804688 233.1875 C 202.804688 233.070312 202.710938 232.976562 202.59375 232.976562 C 202.476562 232.976562 202.382812 233.070312 202.382812 233.1875 C 202.382812 233.304688 202.476562 233.398438 202.59375 233.398438 C 202.710938 233.398438 202.804688 233.304688 202.804688 233.1875 Z M 202.804688 233.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.121094 232.335938 C 201.121094 232.21875 201.027344 232.125 200.910156 232.125 C 200.792969 232.125 200.699219 232.21875 200.699219 232.335938 C 200.699219 232.453125 200.792969 232.546875 200.910156 232.546875 C 201.027344 232.546875 201.121094 232.453125 201.121094 232.335938 Z M 201.121094 232.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.644531 234.546875 C 199.644531 234.429688 199.550781 234.335938 199.433594 234.335938 C 199.316406 234.335938 199.222656 234.429688 199.222656 234.546875 C 199.222656 234.664062 199.316406 234.757812 199.433594 234.757812 C 199.550781 234.757812 199.644531 234.664062 199.644531 234.546875 Z M 199.644531 234.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.902344 234.460938 C 198.902344 234.34375 198.808594 234.25 198.691406 234.25 C 198.574219 234.25 198.480469 234.34375 198.480469 234.460938 C 198.480469 234.578125 198.574219 234.671875 198.691406 234.671875 C 198.808594 234.671875 198.902344 234.578125 198.902344 234.460938 Z M 198.902344 234.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.628906 232.3125 C 199.628906 232.195312 199.535156 232.101562 199.417969 232.101562 C 199.300781 232.101562 199.207031 232.195312 199.207031 232.3125 C 199.207031 232.429688 199.300781 232.523438 199.417969 232.523438 C 199.535156 232.523438 199.628906 232.429688 199.628906 232.3125 Z M 199.628906 232.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.523438 234.324219 C 199.523438 234.207031 199.429688 234.113281 199.3125 234.113281 C 199.195312 234.113281 199.101562 234.207031 199.101562 234.324219 C 199.101562 234.441406 199.195312 234.535156 199.3125 234.535156 C 199.429688 234.535156 199.523438 234.441406 199.523438 234.324219 Z M 199.523438 234.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.265625 235.03125 C 200.265625 234.914062 200.171875 234.820312 200.054688 234.820312 C 199.9375 234.820312 199.84375 234.914062 199.84375 235.03125 C 199.84375 235.148438 199.9375 235.242188 200.054688 235.242188 C 200.171875 235.242188 200.265625 235.148438 200.265625 235.03125 Z M 200.265625 235.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.09375 235.226562 C 198.09375 235.109375 198 235.015625 197.882812 235.015625 C 197.765625 235.015625 197.671875 235.109375 197.671875 235.226562 C 197.671875 235.34375 197.765625 235.4375 197.882812 235.4375 C 198 235.4375 198.09375 235.34375 198.09375 235.226562 Z M 198.09375 235.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.1875 231.117188 C 199.1875 231 199.09375 230.90625 198.976562 230.90625 C 198.859375 230.90625 198.765625 231 198.765625 231.117188 C 198.765625 231.234375 198.859375 231.328125 198.976562 231.328125 C 199.09375 231.328125 199.1875 231.234375 199.1875 231.117188 Z M 199.1875 231.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.296875 230.851562 C 195.296875 230.734375 195.203125 230.640625 195.085938 230.640625 C 194.96875 230.640625 194.875 230.734375 194.875 230.851562 C 194.875 230.96875 194.96875 231.0625 195.085938 231.0625 C 195.203125 231.0625 195.296875 230.96875 195.296875 230.851562 Z M 195.296875 230.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.789062 230.445312 C 198.789062 230.328125 198.695312 230.234375 198.578125 230.234375 C 198.460938 230.234375 198.367188 230.328125 198.367188 230.445312 C 198.367188 230.5625 198.460938 230.65625 198.578125 230.65625 C 198.695312 230.65625 198.789062 230.5625 198.789062 230.445312 Z M 198.789062 230.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.515625 231.65625 C 197.515625 231.539062 197.421875 231.445312 197.304688 231.445312 C 197.1875 231.445312 197.09375 231.539062 197.09375 231.65625 C 197.09375 231.773438 197.1875 231.867188 197.304688 231.867188 C 197.421875 231.867188 197.515625 231.773438 197.515625 231.65625 Z M 197.515625 231.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.765625 232.152344 C 196.765625 232.035156 196.671875 231.941406 196.554688 231.941406 C 196.4375 231.941406 196.34375 232.035156 196.34375 232.152344 C 196.34375 232.269531 196.4375 232.363281 196.554688 232.363281 C 196.671875 232.363281 196.765625 232.269531 196.765625 232.152344 Z M 196.765625 232.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.636719 231.078125 C 193.636719 230.960938 193.542969 230.867188 193.425781 230.867188 C 193.308594 230.867188 193.214844 230.960938 193.214844 231.078125 C 193.214844 231.195312 193.308594 231.289062 193.425781 231.289062 C 193.542969 231.289062 193.636719 231.195312 193.636719 231.078125 Z M 193.636719 231.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.949219 231.824219 C 192.949219 231.707031 192.855469 231.613281 192.738281 231.613281 C 192.621094 231.613281 192.527344 231.707031 192.527344 231.824219 C 192.527344 231.941406 192.621094 232.035156 192.738281 232.035156 C 192.855469 232.035156 192.949219 231.941406 192.949219 231.824219 Z M 192.949219 231.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.597656 231.140625 C 189.597656 231.023438 189.503906 230.929688 189.386719 230.929688 C 189.269531 230.929688 189.175781 231.023438 189.175781 231.140625 C 189.175781 231.257812 189.269531 231.351562 189.386719 231.351562 C 189.503906 231.351562 189.597656 231.257812 189.597656 231.140625 Z M 189.597656 231.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.832031 229.734375 C 190.832031 229.617188 190.738281 229.523438 190.621094 229.523438 C 190.503906 229.523438 190.410156 229.617188 190.410156 229.734375 C 190.410156 229.851562 190.503906 229.945312 190.621094 229.945312 C 190.738281 229.945312 190.832031 229.851562 190.832031 229.734375 Z M 190.832031 229.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.988281 229.875 C 192.988281 229.757812 192.894531 229.664062 192.777344 229.664062 C 192.660156 229.664062 192.566406 229.757812 192.566406 229.875 C 192.566406 229.992188 192.660156 230.085938 192.777344 230.085938 C 192.894531 230.085938 192.988281 229.992188 192.988281 229.875 Z M 192.988281 229.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.484375 232.054688 C 196.484375 231.9375 196.390625 231.84375 196.273438 231.84375 C 196.15625 231.84375 196.0625 231.9375 196.0625 232.054688 C 196.0625 232.171875 196.15625 232.265625 196.273438 232.265625 C 196.390625 232.265625 196.484375 232.171875 196.484375 232.054688 Z M 196.484375 232.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.441406 232.28125 C 194.441406 232.164062 194.347656 232.070312 194.230469 232.070312 C 194.113281 232.070312 194.019531 232.164062 194.019531 232.28125 C 194.019531 232.398438 194.113281 232.492188 194.230469 232.492188 C 194.347656 232.492188 194.441406 232.398438 194.441406 232.28125 Z M 194.441406 232.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.070312 230.191406 C 195.070312 230.074219 194.976562 229.980469 194.859375 229.980469 C 194.742188 229.980469 194.648438 230.074219 194.648438 230.191406 C 194.648438 230.308594 194.742188 230.402344 194.859375 230.402344 C 194.976562 230.402344 195.070312 230.308594 195.070312 230.191406 Z M 195.070312 230.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.613281 231.289062 C 195.613281 231.171875 195.519531 231.078125 195.402344 231.078125 C 195.285156 231.078125 195.191406 231.171875 195.191406 231.289062 C 195.191406 231.40625 195.285156 231.5 195.402344 231.5 C 195.519531 231.5 195.613281 231.40625 195.613281 231.289062 Z M 195.613281 231.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.234375 232.730469 C 196.234375 232.613281 196.140625 232.519531 196.023438 232.519531 C 195.90625 232.519531 195.8125 232.613281 195.8125 232.730469 C 195.8125 232.847656 195.90625 232.941406 196.023438 232.941406 C 196.140625 232.941406 196.234375 232.847656 196.234375 232.730469 Z M 196.234375 232.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.972656 234.976562 C 197.972656 234.859375 197.878906 234.765625 197.761719 234.765625 C 197.644531 234.765625 197.550781 234.859375 197.550781 234.976562 C 197.550781 235.09375 197.644531 235.1875 197.761719 235.1875 C 197.878906 235.1875 197.972656 235.09375 197.972656 234.976562 Z M 197.972656 234.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.933594 233.765625 C 197.933594 233.648438 197.839844 233.554688 197.722656 233.554688 C 197.605469 233.554688 197.511719 233.648438 197.511719 233.765625 C 197.511719 233.882812 197.605469 233.976562 197.722656 233.976562 C 197.839844 233.976562 197.933594 233.882812 197.933594 233.765625 Z M 197.933594 233.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.375 235.390625 C 199.375 235.273438 199.28125 235.179688 199.164062 235.179688 C 199.046875 235.179688 198.953125 235.273438 198.953125 235.390625 C 198.953125 235.507812 199.046875 235.601562 199.164062 235.601562 C 199.28125 235.601562 199.375 235.507812 199.375 235.390625 Z M 199.375 235.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.460938 236.894531 C 198.460938 236.777344 198.367188 236.683594 198.25 236.683594 C 198.132812 236.683594 198.039062 236.777344 198.039062 236.894531 C 198.039062 237.011719 198.132812 237.105469 198.25 237.105469 C 198.367188 237.105469 198.460938 237.011719 198.460938 236.894531 Z M 198.460938 236.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.691406 239.140625 C 197.691406 239.023438 197.597656 238.929688 197.480469 238.929688 C 197.363281 238.929688 197.269531 239.023438 197.269531 239.140625 C 197.269531 239.257812 197.363281 239.351562 197.480469 239.351562 C 197.597656 239.351562 197.691406 239.257812 197.691406 239.140625 Z M 197.691406 239.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.167969 241.75 C 192.167969 241.632812 192.074219 241.539062 191.957031 241.539062 C 191.839844 241.539062 191.746094 241.632812 191.746094 241.75 C 191.746094 241.867188 191.839844 241.960938 191.957031 241.960938 C 192.074219 241.960938 192.167969 241.867188 192.167969 241.75 Z M 192.167969 241.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.957031 241.246094 C 194.957031 241.128906 194.863281 241.035156 194.746094 241.035156 C 194.628906 241.035156 194.535156 241.128906 194.535156 241.246094 C 194.535156 241.363281 194.628906 241.457031 194.746094 241.457031 C 194.863281 241.457031 194.957031 241.363281 194.957031 241.246094 Z M 194.957031 241.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.699219 241.429688 C 194.699219 241.3125 194.605469 241.21875 194.488281 241.21875 C 194.371094 241.21875 194.277344 241.3125 194.277344 241.429688 C 194.277344 241.546875 194.371094 241.640625 194.488281 241.640625 C 194.605469 241.640625 194.699219 241.546875 194.699219 241.429688 Z M 194.699219 241.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.171875 240.953125 C 194.171875 240.835938 194.078125 240.742188 193.960938 240.742188 C 193.84375 240.742188 193.75 240.835938 193.75 240.953125 C 193.75 241.070312 193.84375 241.164062 193.960938 241.164062 C 194.078125 241.164062 194.171875 241.070312 194.171875 240.953125 Z M 194.171875 240.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.949219 243.386719 C 193.949219 243.269531 193.855469 243.175781 193.738281 243.175781 C 193.621094 243.175781 193.527344 243.269531 193.527344 243.386719 C 193.527344 243.503906 193.621094 243.597656 193.738281 243.597656 C 193.855469 243.597656 193.949219 243.503906 193.949219 243.386719 Z M 193.949219 243.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.417969 244.257812 C 193.417969 244.140625 193.324219 244.046875 193.207031 244.046875 C 193.089844 244.046875 192.996094 244.140625 192.996094 244.257812 C 192.996094 244.375 193.089844 244.46875 193.207031 244.46875 C 193.324219 244.46875 193.417969 244.375 193.417969 244.257812 Z M 193.417969 244.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.316406 245.109375 C 195.316406 244.992188 195.222656 244.898438 195.105469 244.898438 C 194.988281 244.898438 194.894531 244.992188 194.894531 245.109375 C 194.894531 245.226562 194.988281 245.320312 195.105469 245.320312 C 195.222656 245.320312 195.316406 245.226562 195.316406 245.109375 Z M 195.316406 245.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.949219 245.078125 C 192.949219 244.960938 192.855469 244.867188 192.738281 244.867188 C 192.621094 244.867188 192.527344 244.960938 192.527344 245.078125 C 192.527344 245.195312 192.621094 245.289062 192.738281 245.289062 C 192.855469 245.289062 192.949219 245.195312 192.949219 245.078125 Z M 192.949219 245.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.925781 243.929688 C 190.925781 243.8125 190.832031 243.71875 190.714844 243.71875 C 190.597656 243.71875 190.503906 243.8125 190.503906 243.929688 C 190.503906 244.046875 190.597656 244.140625 190.714844 244.140625 C 190.832031 244.140625 190.925781 244.046875 190.925781 243.929688 Z M 190.925781 243.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.359375 243.140625 C 191.359375 243.023438 191.265625 242.929688 191.148438 242.929688 C 191.03125 242.929688 190.9375 243.023438 190.9375 243.140625 C 190.9375 243.257812 191.03125 243.351562 191.148438 243.351562 C 191.265625 243.351562 191.359375 243.257812 191.359375 243.140625 Z M 191.359375 243.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.800781 242.90625 C 195.800781 242.789062 195.707031 242.695312 195.589844 242.695312 C 195.472656 242.695312 195.378906 242.789062 195.378906 242.90625 C 195.378906 243.023438 195.472656 243.117188 195.589844 243.117188 C 195.707031 243.117188 195.800781 243.023438 195.800781 242.90625 Z M 195.800781 242.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.019531 244.996094 C 194.019531 244.878906 193.925781 244.785156 193.808594 244.785156 C 193.691406 244.785156 193.597656 244.878906 193.597656 244.996094 C 193.597656 245.113281 193.691406 245.207031 193.808594 245.207031 C 193.925781 245.207031 194.019531 245.113281 194.019531 244.996094 Z M 194.019531 244.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.457031 240.25 C 192.457031 240.132812 192.363281 240.039062 192.246094 240.039062 C 192.128906 240.039062 192.035156 240.132812 192.035156 240.25 C 192.035156 240.367188 192.128906 240.460938 192.246094 240.460938 C 192.363281 240.460938 192.457031 240.367188 192.457031 240.25 Z M 192.457031 240.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.640625 238.382812 C 194.640625 238.265625 194.546875 238.171875 194.429688 238.171875 C 194.3125 238.171875 194.21875 238.265625 194.21875 238.382812 C 194.21875 238.5 194.3125 238.59375 194.429688 238.59375 C 194.546875 238.59375 194.640625 238.5 194.640625 238.382812 Z M 194.640625 238.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.546875 239.1875 C 196.546875 239.070312 196.453125 238.976562 196.335938 238.976562 C 196.21875 238.976562 196.125 239.070312 196.125 239.1875 C 196.125 239.304688 196.21875 239.398438 196.335938 239.398438 C 196.453125 239.398438 196.546875 239.304688 196.546875 239.1875 Z M 196.546875 239.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.71875 240.308594 C 195.71875 240.191406 195.625 240.097656 195.507812 240.097656 C 195.390625 240.097656 195.296875 240.191406 195.296875 240.308594 C 195.296875 240.425781 195.390625 240.519531 195.507812 240.519531 C 195.625 240.519531 195.71875 240.425781 195.71875 240.308594 Z M 195.71875 240.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.789062 238.757812 C 197.789062 238.640625 197.695312 238.546875 197.578125 238.546875 C 197.460938 238.546875 197.367188 238.640625 197.367188 238.757812 C 197.367188 238.875 197.460938 238.96875 197.578125 238.96875 C 197.695312 238.96875 197.789062 238.875 197.789062 238.757812 Z M 197.789062 238.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.546875 238.695312 C 195.546875 238.578125 195.453125 238.484375 195.335938 238.484375 C 195.21875 238.484375 195.125 238.578125 195.125 238.695312 C 195.125 238.8125 195.21875 238.90625 195.335938 238.90625 C 195.453125 238.90625 195.546875 238.8125 195.546875 238.695312 Z M 195.546875 238.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.101562 239.976562 C 197.101562 239.859375 197.007812 239.765625 196.890625 239.765625 C 196.773438 239.765625 196.679688 239.859375 196.679688 239.976562 C 196.679688 240.09375 196.773438 240.1875 196.890625 240.1875 C 197.007812 240.1875 197.101562 240.09375 197.101562 239.976562 Z M 197.101562 239.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.777344 242.296875 C 196.777344 242.179688 196.683594 242.085938 196.566406 242.085938 C 196.449219 242.085938 196.355469 242.179688 196.355469 242.296875 C 196.355469 242.414062 196.449219 242.507812 196.566406 242.507812 C 196.683594 242.507812 196.777344 242.414062 196.777344 242.296875 Z M 196.777344 242.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.832031 242.515625 C 197.832031 242.398438 197.738281 242.304688 197.621094 242.304688 C 197.503906 242.304688 197.410156 242.398438 197.410156 242.515625 C 197.410156 242.632812 197.503906 242.726562 197.621094 242.726562 C 197.738281 242.726562 197.832031 242.632812 197.832031 242.515625 Z M 197.832031 242.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.734375 245.546875 C 194.734375 245.429688 194.640625 245.335938 194.523438 245.335938 C 194.40625 245.335938 194.3125 245.429688 194.3125 245.546875 C 194.3125 245.664062 194.40625 245.757812 194.523438 245.757812 C 194.640625 245.757812 194.734375 245.664062 194.734375 245.546875 Z M 194.734375 245.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.730469 245.621094 C 192.730469 245.503906 192.636719 245.410156 192.519531 245.410156 C 192.402344 245.410156 192.308594 245.503906 192.308594 245.621094 C 192.308594 245.738281 192.402344 245.832031 192.519531 245.832031 C 192.636719 245.832031 192.730469 245.738281 192.730469 245.621094 Z M 192.730469 245.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.117188 245.941406 C 193.117188 245.824219 193.023438 245.730469 192.90625 245.730469 C 192.789062 245.730469 192.695312 245.824219 192.695312 245.941406 C 192.695312 246.058594 192.789062 246.152344 192.90625 246.152344 C 193.023438 246.152344 193.117188 246.058594 193.117188 245.941406 Z M 193.117188 245.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.019531 243.332031 C 193.019531 243.214844 192.925781 243.121094 192.808594 243.121094 C 192.691406 243.121094 192.597656 243.214844 192.597656 243.332031 C 192.597656 243.449219 192.691406 243.542969 192.808594 243.542969 C 192.925781 243.542969 193.019531 243.449219 193.019531 243.332031 Z M 193.019531 243.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.082031 243.894531 C 197.082031 243.777344 196.988281 243.683594 196.871094 243.683594 C 196.753906 243.683594 196.660156 243.777344 196.660156 243.894531 C 196.660156 244.011719 196.753906 244.105469 196.871094 244.105469 C 196.988281 244.105469 197.082031 244.011719 197.082031 243.894531 Z M 197.082031 243.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.738281 243.65625 C 198.738281 243.539062 198.644531 243.445312 198.527344 243.445312 C 198.410156 243.445312 198.316406 243.539062 198.316406 243.65625 C 198.316406 243.773438 198.410156 243.867188 198.527344 243.867188 C 198.644531 243.867188 198.738281 243.773438 198.738281 243.65625 Z M 198.738281 243.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.898438 247.4375 C 198.898438 247.320312 198.804688 247.226562 198.6875 247.226562 C 198.570312 247.226562 198.476562 247.320312 198.476562 247.4375 C 198.476562 247.554688 198.570312 247.648438 198.6875 247.648438 C 198.804688 247.648438 198.898438 247.554688 198.898438 247.4375 Z M 198.898438 247.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.8125 246.878906 C 198.8125 246.761719 198.71875 246.667969 198.601562 246.667969 C 198.484375 246.667969 198.390625 246.761719 198.390625 246.878906 C 198.390625 246.996094 198.484375 247.089844 198.601562 247.089844 C 198.71875 247.089844 198.8125 246.996094 198.8125 246.878906 Z M 198.8125 246.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.082031 248.351562 C 201.082031 248.234375 200.988281 248.140625 200.871094 248.140625 C 200.753906 248.140625 200.660156 248.234375 200.660156 248.351562 C 200.660156 248.46875 200.753906 248.5625 200.871094 248.5625 C 200.988281 248.5625 201.082031 248.46875 201.082031 248.351562 Z M 201.082031 248.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.089844 246.699219 C 205.089844 246.582031 204.996094 246.488281 204.878906 246.488281 C 204.761719 246.488281 204.667969 246.582031 204.667969 246.699219 C 204.667969 246.816406 204.761719 246.910156 204.878906 246.910156 C 204.996094 246.910156 205.089844 246.816406 205.089844 246.699219 Z M 205.089844 246.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.679688 244.960938 C 200.679688 244.84375 200.585938 244.75 200.46875 244.75 C 200.351562 244.75 200.257812 244.84375 200.257812 244.960938 C 200.257812 245.078125 200.351562 245.171875 200.46875 245.171875 C 200.585938 245.171875 200.679688 245.078125 200.679688 244.960938 Z M 200.679688 244.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.230469 242.917969 C 199.230469 242.800781 199.136719 242.707031 199.019531 242.707031 C 198.902344 242.707031 198.808594 242.800781 198.808594 242.917969 C 198.808594 243.035156 198.902344 243.128906 199.019531 243.128906 C 199.136719 243.128906 199.230469 243.035156 199.230469 242.917969 Z M 199.230469 242.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.859375 243.953125 C 199.859375 243.835938 199.765625 243.742188 199.648438 243.742188 C 199.53125 243.742188 199.4375 243.835938 199.4375 243.953125 C 199.4375 244.070312 199.53125 244.164062 199.648438 244.164062 C 199.765625 244.164062 199.859375 244.070312 199.859375 243.953125 Z M 199.859375 243.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.023438 245.019531 C 201.023438 244.902344 200.929688 244.808594 200.8125 244.808594 C 200.695312 244.808594 200.601562 244.902344 200.601562 245.019531 C 200.601562 245.136719 200.695312 245.230469 200.8125 245.230469 C 200.929688 245.230469 201.023438 245.136719 201.023438 245.019531 Z M 201.023438 245.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.195312 246.496094 C 203.195312 246.378906 203.101562 246.285156 202.984375 246.285156 C 202.867188 246.285156 202.773438 246.378906 202.773438 246.496094 C 202.773438 246.613281 202.867188 246.707031 202.984375 246.707031 C 203.101562 246.707031 203.195312 246.613281 203.195312 246.496094 Z M 203.195312 246.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.804688 250.078125 C 200.804688 249.960938 200.710938 249.867188 200.59375 249.867188 C 200.476562 249.867188 200.382812 249.960938 200.382812 250.078125 C 200.382812 250.195312 200.476562 250.289062 200.59375 250.289062 C 200.710938 250.289062 200.804688 250.195312 200.804688 250.078125 Z M 200.804688 250.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.050781 250.949219 C 203.050781 250.832031 202.957031 250.738281 202.839844 250.738281 C 202.722656 250.738281 202.628906 250.832031 202.628906 250.949219 C 202.628906 251.066406 202.722656 251.160156 202.839844 251.160156 C 202.957031 251.160156 203.050781 251.066406 203.050781 250.949219 Z M 203.050781 250.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.5625 252.246094 C 201.5625 252.128906 201.46875 252.035156 201.351562 252.035156 C 201.234375 252.035156 201.140625 252.128906 201.140625 252.246094 C 201.140625 252.363281 201.234375 252.457031 201.351562 252.457031 C 201.46875 252.457031 201.5625 252.363281 201.5625 252.246094 Z M 201.5625 252.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.003906 254.441406 C 203.003906 254.324219 202.910156 254.230469 202.792969 254.230469 C 202.675781 254.230469 202.582031 254.324219 202.582031 254.441406 C 202.582031 254.558594 202.675781 254.652344 202.792969 254.652344 C 202.910156 254.652344 203.003906 254.558594 203.003906 254.441406 Z M 203.003906 254.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.253906 252.238281 C 202.253906 252.121094 202.160156 252.027344 202.042969 252.027344 C 201.925781 252.027344 201.832031 252.121094 201.832031 252.238281 C 201.832031 252.355469 201.925781 252.449219 202.042969 252.449219 C 202.160156 252.449219 202.253906 252.355469 202.253906 252.238281 Z M 202.253906 252.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.605469 253.453125 C 202.605469 253.335938 202.511719 253.242188 202.394531 253.242188 C 202.277344 253.242188 202.183594 253.335938 202.183594 253.453125 C 202.183594 253.570312 202.277344 253.664062 202.394531 253.664062 C 202.511719 253.664062 202.605469 253.570312 202.605469 253.453125 Z M 202.605469 253.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.203125 249.582031 C 203.203125 249.464844 203.109375 249.371094 202.992188 249.371094 C 202.875 249.371094 202.78125 249.464844 202.78125 249.582031 C 202.78125 249.699219 202.875 249.792969 202.992188 249.792969 C 203.109375 249.792969 203.203125 249.699219 203.203125 249.582031 Z M 203.203125 249.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.851562 248.414062 C 203.851562 248.296875 203.757812 248.203125 203.640625 248.203125 C 203.523438 248.203125 203.429688 248.296875 203.429688 248.414062 C 203.429688 248.53125 203.523438 248.625 203.640625 248.625 C 203.757812 248.625 203.851562 248.53125 203.851562 248.414062 Z M 203.851562 248.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.152344 251.425781 C 202.152344 251.308594 202.058594 251.214844 201.941406 251.214844 C 201.824219 251.214844 201.730469 251.308594 201.730469 251.425781 C 201.730469 251.542969 201.824219 251.636719 201.941406 251.636719 C 202.058594 251.636719 202.152344 251.542969 202.152344 251.425781 Z M 202.152344 251.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.765625 255.820312 C 201.765625 255.703125 201.671875 255.609375 201.554688 255.609375 C 201.4375 255.609375 201.34375 255.703125 201.34375 255.820312 C 201.34375 255.9375 201.4375 256.03125 201.554688 256.03125 C 201.671875 256.03125 201.765625 255.9375 201.765625 255.820312 Z M 201.765625 255.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.683594 254.242188 C 203.683594 254.125 203.589844 254.03125 203.472656 254.03125 C 203.355469 254.03125 203.261719 254.125 203.261719 254.242188 C 203.261719 254.359375 203.355469 254.453125 203.472656 254.453125 C 203.589844 254.453125 203.683594 254.359375 203.683594 254.242188 Z M 203.683594 254.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.558594 254.335938 C 198.558594 254.21875 198.464844 254.125 198.347656 254.125 C 198.230469 254.125 198.136719 254.21875 198.136719 254.335938 C 198.136719 254.453125 198.230469 254.546875 198.347656 254.546875 C 198.464844 254.546875 198.558594 254.453125 198.558594 254.335938 Z M 198.558594 254.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.492188 252.949219 C 196.492188 252.832031 196.398438 252.738281 196.28125 252.738281 C 196.164062 252.738281 196.070312 252.832031 196.070312 252.949219 C 196.070312 253.066406 196.164062 253.160156 196.28125 253.160156 C 196.398438 253.160156 196.492188 253.066406 196.492188 252.949219 Z M 196.492188 252.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.570312 253.742188 C 197.570312 253.625 197.476562 253.53125 197.359375 253.53125 C 197.242188 253.53125 197.148438 253.625 197.148438 253.742188 C 197.148438 253.859375 197.242188 253.953125 197.359375 253.953125 C 197.476562 253.953125 197.570312 253.859375 197.570312 253.742188 Z M 197.570312 253.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.097656 255.582031 C 198.097656 255.464844 198.003906 255.371094 197.886719 255.371094 C 197.769531 255.371094 197.675781 255.464844 197.675781 255.582031 C 197.675781 255.699219 197.769531 255.792969 197.886719 255.792969 C 198.003906 255.792969 198.097656 255.699219 198.097656 255.582031 Z M 198.097656 255.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.007812 253.777344 C 194.007812 253.660156 193.914062 253.566406 193.796875 253.566406 C 193.679688 253.566406 193.585938 253.660156 193.585938 253.777344 C 193.585938 253.894531 193.679688 253.988281 193.796875 253.988281 C 193.914062 253.988281 194.007812 253.894531 194.007812 253.777344 Z M 194.007812 253.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.085938 253.695312 C 193.085938 253.578125 192.992188 253.484375 192.875 253.484375 C 192.757812 253.484375 192.664062 253.578125 192.664062 253.695312 C 192.664062 253.8125 192.757812 253.90625 192.875 253.90625 C 192.992188 253.90625 193.085938 253.8125 193.085938 253.695312 Z M 193.085938 253.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.417969 256.179688 C 193.417969 256.0625 193.324219 255.96875 193.207031 255.96875 C 193.089844 255.96875 192.996094 256.0625 192.996094 256.179688 C 192.996094 256.296875 193.089844 256.390625 193.207031 256.390625 C 193.324219 256.390625 193.417969 256.296875 193.417969 256.179688 Z M 193.417969 256.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.867188 256.476562 C 191.867188 256.359375 191.773438 256.265625 191.65625 256.265625 C 191.539062 256.265625 191.445312 256.359375 191.445312 256.476562 C 191.445312 256.59375 191.539062 256.6875 191.65625 256.6875 C 191.773438 256.6875 191.867188 256.59375 191.867188 256.476562 Z M 191.867188 256.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.761719 257.453125 C 191.761719 257.335938 191.667969 257.242188 191.550781 257.242188 C 191.433594 257.242188 191.339844 257.335938 191.339844 257.453125 C 191.339844 257.570312 191.433594 257.664062 191.550781 257.664062 C 191.667969 257.664062 191.761719 257.570312 191.761719 257.453125 Z M 191.761719 257.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.160156 256.441406 C 192.160156 256.324219 192.066406 256.230469 191.949219 256.230469 C 191.832031 256.230469 191.738281 256.324219 191.738281 256.441406 C 191.738281 256.558594 191.832031 256.652344 191.949219 256.652344 C 192.066406 256.652344 192.160156 256.558594 192.160156 256.441406 Z M 192.160156 256.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.671875 257.347656 C 190.671875 257.230469 190.578125 257.136719 190.460938 257.136719 C 190.34375 257.136719 190.25 257.230469 190.25 257.347656 C 190.25 257.464844 190.34375 257.558594 190.460938 257.558594 C 190.578125 257.558594 190.671875 257.464844 190.671875 257.347656 Z M 190.671875 257.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.5625 256.703125 C 188.5625 256.585938 188.46875 256.492188 188.351562 256.492188 C 188.234375 256.492188 188.140625 256.585938 188.140625 256.703125 C 188.140625 256.820312 188.234375 256.914062 188.351562 256.914062 C 188.46875 256.914062 188.5625 256.820312 188.5625 256.703125 Z M 188.5625 256.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.074219 254.644531 C 189.074219 254.527344 188.980469 254.433594 188.863281 254.433594 C 188.746094 254.433594 188.652344 254.527344 188.652344 254.644531 C 188.652344 254.761719 188.746094 254.855469 188.863281 254.855469 C 188.980469 254.855469 189.074219 254.761719 189.074219 254.644531 Z M 189.074219 254.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.320312 254.273438 C 187.320312 254.15625 187.226562 254.0625 187.109375 254.0625 C 186.992188 254.0625 186.898438 254.15625 186.898438 254.273438 C 186.898438 254.390625 186.992188 254.484375 187.109375 254.484375 C 187.226562 254.484375 187.320312 254.390625 187.320312 254.273438 Z M 187.320312 254.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.84375 254.824219 C 186.84375 254.707031 186.75 254.613281 186.632812 254.613281 C 186.515625 254.613281 186.421875 254.707031 186.421875 254.824219 C 186.421875 254.941406 186.515625 255.035156 186.632812 255.035156 C 186.75 255.035156 186.84375 254.941406 186.84375 254.824219 Z M 186.84375 254.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.265625 255.046875 C 190.265625 254.929688 190.171875 254.835938 190.054688 254.835938 C 189.9375 254.835938 189.84375 254.929688 189.84375 255.046875 C 189.84375 255.164062 189.9375 255.257812 190.054688 255.257812 C 190.171875 255.257812 190.265625 255.164062 190.265625 255.046875 Z M 190.265625 255.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.363281 251.6875 C 193.363281 251.570312 193.269531 251.476562 193.152344 251.476562 C 193.035156 251.476562 192.941406 251.570312 192.941406 251.6875 C 192.941406 251.804688 193.035156 251.898438 193.152344 251.898438 C 193.269531 251.898438 193.363281 251.804688 193.363281 251.6875 Z M 193.363281 251.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.285156 254.9375 C 190.285156 254.820312 190.191406 254.726562 190.074219 254.726562 C 189.957031 254.726562 189.863281 254.820312 189.863281 254.9375 C 189.863281 255.054688 189.957031 255.148438 190.074219 255.148438 C 190.191406 255.148438 190.285156 255.054688 190.285156 254.9375 Z M 190.285156 254.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.847656 253.460938 C 191.847656 253.34375 191.753906 253.25 191.636719 253.25 C 191.519531 253.25 191.425781 253.34375 191.425781 253.460938 C 191.425781 253.578125 191.519531 253.671875 191.636719 253.671875 C 191.753906 253.671875 191.847656 253.578125 191.847656 253.460938 Z M 191.847656 253.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.328125 254.085938 C 190.328125 253.96875 190.234375 253.875 190.117188 253.875 C 190 253.875 189.90625 253.96875 189.90625 254.085938 C 189.90625 254.203125 190 254.296875 190.117188 254.296875 C 190.234375 254.296875 190.328125 254.203125 190.328125 254.085938 Z M 190.328125 254.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.203125 255.382812 C 191.203125 255.265625 191.109375 255.171875 190.992188 255.171875 C 190.875 255.171875 190.78125 255.265625 190.78125 255.382812 C 190.78125 255.5 190.875 255.59375 190.992188 255.59375 C 191.109375 255.59375 191.203125 255.5 191.203125 255.382812 Z M 191.203125 255.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.273438 256.796875 C 188.273438 256.679688 188.179688 256.585938 188.0625 256.585938 C 187.945312 256.585938 187.851562 256.679688 187.851562 256.796875 C 187.851562 256.914062 187.945312 257.007812 188.0625 257.007812 C 188.179688 257.007812 188.273438 256.914062 188.273438 256.796875 Z M 188.273438 256.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.769531 253.933594 C 189.769531 253.816406 189.675781 253.722656 189.558594 253.722656 C 189.441406 253.722656 189.347656 253.816406 189.347656 253.933594 C 189.347656 254.050781 189.441406 254.144531 189.558594 254.144531 C 189.675781 254.144531 189.769531 254.050781 189.769531 253.933594 Z M 189.769531 253.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.859375 251.96875 C 190.859375 251.851562 190.765625 251.757812 190.648438 251.757812 C 190.53125 251.757812 190.4375 251.851562 190.4375 251.96875 C 190.4375 252.085938 190.53125 252.179688 190.648438 252.179688 C 190.765625 252.179688 190.859375 252.085938 190.859375 251.96875 Z M 190.859375 251.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.914062 251.257812 C 192.914062 251.140625 192.820312 251.046875 192.703125 251.046875 C 192.585938 251.046875 192.492188 251.140625 192.492188 251.257812 C 192.492188 251.375 192.585938 251.46875 192.703125 251.46875 C 192.820312 251.46875 192.914062 251.375 192.914062 251.257812 Z M 192.914062 251.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.324219 250.386719 C 189.324219 250.269531 189.230469 250.175781 189.113281 250.175781 C 188.996094 250.175781 188.902344 250.269531 188.902344 250.386719 C 188.902344 250.503906 188.996094 250.597656 189.113281 250.597656 C 189.230469 250.597656 189.324219 250.503906 189.324219 250.386719 Z M 189.324219 250.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.453125 250.351562 C 190.453125 250.234375 190.359375 250.140625 190.242188 250.140625 C 190.125 250.140625 190.03125 250.234375 190.03125 250.351562 C 190.03125 250.46875 190.125 250.5625 190.242188 250.5625 C 190.359375 250.5625 190.453125 250.46875 190.453125 250.351562 Z M 190.453125 250.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.890625 249.828125 C 189.890625 249.710938 189.796875 249.617188 189.679688 249.617188 C 189.5625 249.617188 189.46875 249.710938 189.46875 249.828125 C 189.46875 249.945312 189.5625 250.039062 189.679688 250.039062 C 189.796875 250.039062 189.890625 249.945312 189.890625 249.828125 Z M 189.890625 249.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.859375 248.527344 C 188.859375 248.410156 188.765625 248.316406 188.648438 248.316406 C 188.53125 248.316406 188.4375 248.410156 188.4375 248.527344 C 188.4375 248.644531 188.53125 248.738281 188.648438 248.738281 C 188.765625 248.738281 188.859375 248.644531 188.859375 248.527344 Z M 188.859375 248.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.960938 248.03125 C 185.960938 247.914062 185.867188 247.820312 185.75 247.820312 C 185.632812 247.820312 185.539062 247.914062 185.539062 248.03125 C 185.539062 248.148438 185.632812 248.242188 185.75 248.242188 C 185.867188 248.242188 185.960938 248.148438 185.960938 248.03125 Z M 185.960938 248.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.625 251.804688 C 188.625 251.6875 188.53125 251.59375 188.414062 251.59375 C 188.296875 251.59375 188.203125 251.6875 188.203125 251.804688 C 188.203125 251.921875 188.296875 252.015625 188.414062 252.015625 C 188.53125 252.015625 188.625 251.921875 188.625 251.804688 Z M 188.625 251.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.035156 249.550781 C 185.035156 249.433594 184.941406 249.339844 184.824219 249.339844 C 184.707031 249.339844 184.613281 249.433594 184.613281 249.550781 C 184.613281 249.667969 184.707031 249.761719 184.824219 249.761719 C 184.941406 249.761719 185.035156 249.667969 185.035156 249.550781 Z M 185.035156 249.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.609375 250.214844 C 185.609375 250.097656 185.515625 250.003906 185.398438 250.003906 C 185.28125 250.003906 185.1875 250.097656 185.1875 250.214844 C 185.1875 250.332031 185.28125 250.425781 185.398438 250.425781 C 185.515625 250.425781 185.609375 250.332031 185.609375 250.214844 Z M 185.609375 250.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.21875 251 C 184.21875 250.882812 184.125 250.789062 184.007812 250.789062 C 183.890625 250.789062 183.796875 250.882812 183.796875 251 C 183.796875 251.117188 183.890625 251.210938 184.007812 251.210938 C 184.125 251.210938 184.21875 251.117188 184.21875 251 Z M 184.21875 251 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.300781 251.980469 C 183.300781 251.863281 183.207031 251.769531 183.089844 251.769531 C 182.972656 251.769531 182.878906 251.863281 182.878906 251.980469 C 182.878906 252.097656 182.972656 252.191406 183.089844 252.191406 C 183.207031 252.191406 183.300781 252.097656 183.300781 251.980469 Z M 183.300781 251.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.617188 252.496094 C 181.617188 252.378906 181.523438 252.285156 181.40625 252.285156 C 181.289062 252.285156 181.195312 252.378906 181.195312 252.496094 C 181.195312 252.613281 181.289062 252.707031 181.40625 252.707031 C 181.523438 252.707031 181.617188 252.613281 181.617188 252.496094 Z M 181.617188 252.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.058594 250.375 C 183.058594 250.257812 182.964844 250.164062 182.847656 250.164062 C 182.730469 250.164062 182.636719 250.257812 182.636719 250.375 C 182.636719 250.492188 182.730469 250.585938 182.847656 250.585938 C 182.964844 250.585938 183.058594 250.492188 183.058594 250.375 Z M 183.058594 250.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.128906 245.410156 C 185.128906 245.292969 185.035156 245.199219 184.917969 245.199219 C 184.800781 245.199219 184.707031 245.292969 184.707031 245.410156 C 184.707031 245.527344 184.800781 245.621094 184.917969 245.621094 C 185.035156 245.621094 185.128906 245.527344 185.128906 245.410156 Z M 185.128906 245.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.972656 245.046875 C 182.972656 244.929688 182.878906 244.835938 182.761719 244.835938 C 182.644531 244.835938 182.550781 244.929688 182.550781 245.046875 C 182.550781 245.164062 182.644531 245.257812 182.761719 245.257812 C 182.878906 245.257812 182.972656 245.164062 182.972656 245.046875 Z M 182.972656 245.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.328125 244.558594 C 183.328125 244.441406 183.234375 244.347656 183.117188 244.347656 C 183 244.347656 182.90625 244.441406 182.90625 244.558594 C 182.90625 244.675781 183 244.769531 183.117188 244.769531 C 183.234375 244.769531 183.328125 244.675781 183.328125 244.558594 Z M 183.328125 244.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.433594 246.632812 C 181.433594 246.515625 181.339844 246.421875 181.222656 246.421875 C 181.105469 246.421875 181.011719 246.515625 181.011719 246.632812 C 181.011719 246.75 181.105469 246.84375 181.222656 246.84375 C 181.339844 246.84375 181.433594 246.75 181.433594 246.632812 Z M 181.433594 246.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.417969 245.277344 C 182.417969 245.160156 182.324219 245.066406 182.207031 245.066406 C 182.089844 245.066406 181.996094 245.160156 181.996094 245.277344 C 181.996094 245.394531 182.089844 245.488281 182.207031 245.488281 C 182.324219 245.488281 182.417969 245.394531 182.417969 245.277344 Z M 182.417969 245.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 180.746094 246.65625 C 180.746094 246.539062 180.652344 246.445312 180.535156 246.445312 C 180.417969 246.445312 180.324219 246.539062 180.324219 246.65625 C 180.324219 246.773438 180.417969 246.867188 180.535156 246.867188 C 180.652344 246.867188 180.746094 246.773438 180.746094 246.65625 Z M 180.746094 246.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 179.679688 245.34375 C 179.679688 245.226562 179.585938 245.132812 179.46875 245.132812 C 179.351562 245.132812 179.257812 245.226562 179.257812 245.34375 C 179.257812 245.460938 179.351562 245.554688 179.46875 245.554688 C 179.585938 245.554688 179.679688 245.460938 179.679688 245.34375 Z M 179.679688 245.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 178.339844 244.722656 C 178.339844 244.605469 178.246094 244.511719 178.128906 244.511719 C 178.011719 244.511719 177.917969 244.605469 177.917969 244.722656 C 177.917969 244.839844 178.011719 244.933594 178.128906 244.933594 C 178.246094 244.933594 178.339844 244.839844 178.339844 244.722656 Z M 178.339844 244.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 177.390625 243.949219 C 177.390625 243.832031 177.296875 243.738281 177.179688 243.738281 C 177.0625 243.738281 176.96875 243.832031 176.96875 243.949219 C 176.96875 244.066406 177.0625 244.160156 177.179688 244.160156 C 177.296875 244.160156 177.390625 244.066406 177.390625 243.949219 Z M 177.390625 243.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 177.613281 238.8125 C 177.613281 238.695312 177.519531 238.601562 177.402344 238.601562 C 177.285156 238.601562 177.191406 238.695312 177.191406 238.8125 C 177.191406 238.929688 177.285156 239.023438 177.402344 239.023438 C 177.519531 239.023438 177.613281 238.929688 177.613281 238.8125 Z M 177.613281 238.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.492188 238.964844 C 175.492188 238.847656 175.398438 238.753906 175.28125 238.753906 C 175.164062 238.753906 175.070312 238.847656 175.070312 238.964844 C 175.070312 239.082031 175.164062 239.175781 175.28125 239.175781 C 175.398438 239.175781 175.492188 239.082031 175.492188 238.964844 Z M 175.492188 238.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 174.441406 240.296875 C 174.441406 240.179688 174.347656 240.085938 174.230469 240.085938 C 174.113281 240.085938 174.019531 240.179688 174.019531 240.296875 C 174.019531 240.414062 174.113281 240.507812 174.230469 240.507812 C 174.347656 240.507812 174.441406 240.414062 174.441406 240.296875 Z M 174.441406 240.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.25 240.304688 C 175.25 240.1875 175.15625 240.09375 175.039062 240.09375 C 174.921875 240.09375 174.828125 240.1875 174.828125 240.304688 C 174.828125 240.421875 174.921875 240.515625 175.039062 240.515625 C 175.15625 240.515625 175.25 240.421875 175.25 240.304688 Z M 175.25 240.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 176.699219 238.425781 C 176.699219 238.308594 176.605469 238.214844 176.488281 238.214844 C 176.371094 238.214844 176.277344 238.308594 176.277344 238.425781 C 176.277344 238.542969 176.371094 238.636719 176.488281 238.636719 C 176.605469 238.636719 176.699219 238.542969 176.699219 238.425781 Z M 176.699219 238.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 178.21875 239.871094 C 178.21875 239.753906 178.125 239.660156 178.007812 239.660156 C 177.890625 239.660156 177.796875 239.753906 177.796875 239.871094 C 177.796875 239.988281 177.890625 240.082031 178.007812 240.082031 C 178.125 240.082031 178.21875 239.988281 178.21875 239.871094 Z M 178.21875 239.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 180.148438 244.796875 C 180.148438 244.679688 180.054688 244.585938 179.9375 244.585938 C 179.820312 244.585938 179.726562 244.679688 179.726562 244.796875 C 179.726562 244.914062 179.820312 245.007812 179.9375 245.007812 C 180.054688 245.007812 180.148438 244.914062 180.148438 244.796875 Z M 180.148438 244.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.773438 242.3125 C 181.773438 242.195312 181.679688 242.101562 181.5625 242.101562 C 181.445312 242.101562 181.351562 242.195312 181.351562 242.3125 C 181.351562 242.429688 181.445312 242.523438 181.5625 242.523438 C 181.679688 242.523438 181.773438 242.429688 181.773438 242.3125 Z M 181.773438 242.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.65625 242.25 C 181.65625 242.132812 181.5625 242.039062 181.445312 242.039062 C 181.328125 242.039062 181.234375 242.132812 181.234375 242.25 C 181.234375 242.367188 181.328125 242.460938 181.445312 242.460938 C 181.5625 242.460938 181.65625 242.367188 181.65625 242.25 Z M 181.65625 242.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.421875 240.097656 C 184.421875 239.980469 184.328125 239.886719 184.210938 239.886719 C 184.09375 239.886719 184 239.980469 184 240.097656 C 184 240.214844 184.09375 240.308594 184.210938 240.308594 C 184.328125 240.308594 184.421875 240.214844 184.421875 240.097656 Z M 184.421875 240.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.308594 237.957031 C 183.308594 237.839844 183.214844 237.746094 183.097656 237.746094 C 182.980469 237.746094 182.886719 237.839844 182.886719 237.957031 C 182.886719 238.074219 182.980469 238.167969 183.097656 238.167969 C 183.214844 238.167969 183.308594 238.074219 183.308594 237.957031 Z M 183.308594 237.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 179.609375 239.300781 C 179.609375 239.183594 179.515625 239.089844 179.398438 239.089844 C 179.28125 239.089844 179.1875 239.183594 179.1875 239.300781 C 179.1875 239.417969 179.28125 239.511719 179.398438 239.511719 C 179.515625 239.511719 179.609375 239.417969 179.609375 239.300781 Z M 179.609375 239.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.925781 237.691406 C 175.925781 237.574219 175.832031 237.480469 175.714844 237.480469 C 175.597656 237.480469 175.503906 237.574219 175.503906 237.691406 C 175.503906 237.808594 175.597656 237.902344 175.714844 237.902344 C 175.832031 237.902344 175.925781 237.808594 175.925781 237.691406 Z M 175.925781 237.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 176.980469 236.144531 C 176.980469 236.027344 176.886719 235.933594 176.769531 235.933594 C 176.652344 235.933594 176.558594 236.027344 176.558594 236.144531 C 176.558594 236.261719 176.652344 236.355469 176.769531 236.355469 C 176.886719 236.355469 176.980469 236.261719 176.980469 236.144531 Z M 176.980469 236.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 178.296875 239.828125 C 178.296875 239.710938 178.203125 239.617188 178.085938 239.617188 C 177.96875 239.617188 177.875 239.710938 177.875 239.828125 C 177.875 239.945312 177.96875 240.039062 178.085938 240.039062 C 178.203125 240.039062 178.296875 239.945312 178.296875 239.828125 Z M 178.296875 239.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.203125 237.300781 C 181.203125 237.183594 181.109375 237.089844 180.992188 237.089844 C 180.875 237.089844 180.78125 237.183594 180.78125 237.300781 C 180.78125 237.417969 180.875 237.511719 180.992188 237.511719 C 181.109375 237.511719 181.203125 237.417969 181.203125 237.300781 Z M 181.203125 237.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 178.601562 237.632812 C 178.601562 237.515625 178.507812 237.421875 178.390625 237.421875 C 178.273438 237.421875 178.179688 237.515625 178.179688 237.632812 C 178.179688 237.75 178.273438 237.84375 178.390625 237.84375 C 178.507812 237.84375 178.601562 237.75 178.601562 237.632812 Z M 178.601562 237.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 177.898438 237.558594 C 177.898438 237.441406 177.804688 237.347656 177.6875 237.347656 C 177.570312 237.347656 177.476562 237.441406 177.476562 237.558594 C 177.476562 237.675781 177.570312 237.769531 177.6875 237.769531 C 177.804688 237.769531 177.898438 237.675781 177.898438 237.558594 Z M 177.898438 237.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.476562 234.777344 C 175.476562 234.660156 175.382812 234.566406 175.265625 234.566406 C 175.148438 234.566406 175.054688 234.660156 175.054688 234.777344 C 175.054688 234.894531 175.148438 234.988281 175.265625 234.988281 C 175.382812 234.988281 175.476562 234.894531 175.476562 234.777344 Z M 175.476562 234.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 171.402344 236.96875 C 171.402344 236.851562 171.308594 236.757812 171.191406 236.757812 C 171.074219 236.757812 170.980469 236.851562 170.980469 236.96875 C 170.980469 237.085938 171.074219 237.179688 171.191406 237.179688 C 171.308594 237.179688 171.402344 237.085938 171.402344 236.96875 Z M 171.402344 236.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 170.492188 235.027344 C 170.492188 234.910156 170.398438 234.816406 170.28125 234.816406 C 170.164062 234.816406 170.070312 234.910156 170.070312 235.027344 C 170.070312 235.144531 170.164062 235.238281 170.28125 235.238281 C 170.398438 235.238281 170.492188 235.144531 170.492188 235.027344 Z M 170.492188 235.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 171.960938 234.121094 C 171.960938 234.003906 171.867188 233.910156 171.75 233.910156 C 171.632812 233.910156 171.539062 234.003906 171.539062 234.121094 C 171.539062 234.238281 171.632812 234.332031 171.75 234.332031 C 171.867188 234.332031 171.960938 234.238281 171.960938 234.121094 Z M 171.960938 234.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 173.355469 237.460938 C 173.355469 237.34375 173.261719 237.25 173.144531 237.25 C 173.027344 237.25 172.933594 237.34375 172.933594 237.460938 C 172.933594 237.578125 173.027344 237.671875 173.144531 237.671875 C 173.261719 237.671875 173.355469 237.578125 173.355469 237.460938 Z M 173.355469 237.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 176.09375 241.488281 C 176.09375 241.371094 176 241.277344 175.882812 241.277344 C 175.765625 241.277344 175.671875 241.371094 175.671875 241.488281 C 175.671875 241.605469 175.765625 241.699219 175.882812 241.699219 C 176 241.699219 176.09375 241.605469 176.09375 241.488281 Z M 176.09375 241.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 172.84375 245.929688 C 172.84375 245.8125 172.75 245.71875 172.632812 245.71875 C 172.515625 245.71875 172.421875 245.8125 172.421875 245.929688 C 172.421875 246.046875 172.515625 246.140625 172.632812 246.140625 C 172.75 246.140625 172.84375 246.046875 172.84375 245.929688 Z M 172.84375 245.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.234375 240.601562 C 175.234375 240.484375 175.140625 240.390625 175.023438 240.390625 C 174.90625 240.390625 174.8125 240.484375 174.8125 240.601562 C 174.8125 240.71875 174.90625 240.8125 175.023438 240.8125 C 175.140625 240.8125 175.234375 240.71875 175.234375 240.601562 Z M 175.234375 240.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.273438 240.125 C 175.273438 240.007812 175.179688 239.914062 175.0625 239.914062 C 174.945312 239.914062 174.851562 240.007812 174.851562 240.125 C 174.851562 240.242188 174.945312 240.335938 175.0625 240.335938 C 175.179688 240.335938 175.273438 240.242188 175.273438 240.125 Z M 175.273438 240.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 178.773438 241.742188 C 178.773438 241.625 178.679688 241.53125 178.5625 241.53125 C 178.445312 241.53125 178.351562 241.625 178.351562 241.742188 C 178.351562 241.859375 178.445312 241.953125 178.5625 241.953125 C 178.679688 241.953125 178.773438 241.859375 178.773438 241.742188 Z M 178.773438 241.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 178.734375 245.027344 C 178.734375 244.910156 178.640625 244.816406 178.523438 244.816406 C 178.40625 244.816406 178.3125 244.910156 178.3125 245.027344 C 178.3125 245.144531 178.40625 245.238281 178.523438 245.238281 C 178.640625 245.238281 178.734375 245.144531 178.734375 245.027344 Z M 178.734375 245.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 176.589844 245.46875 C 176.589844 245.351562 176.496094 245.257812 176.378906 245.257812 C 176.261719 245.257812 176.167969 245.351562 176.167969 245.46875 C 176.167969 245.585938 176.261719 245.679688 176.378906 245.679688 C 176.496094 245.679688 176.589844 245.585938 176.589844 245.46875 Z M 176.589844 245.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 176.546875 242.945312 C 176.546875 242.828125 176.453125 242.734375 176.335938 242.734375 C 176.21875 242.734375 176.125 242.828125 176.125 242.945312 C 176.125 243.0625 176.21875 243.15625 176.335938 243.15625 C 176.453125 243.15625 176.546875 243.0625 176.546875 242.945312 Z M 176.546875 242.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 177.148438 244.398438 C 177.148438 244.28125 177.054688 244.1875 176.9375 244.1875 C 176.820312 244.1875 176.726562 244.28125 176.726562 244.398438 C 176.726562 244.515625 176.820312 244.609375 176.9375 244.609375 C 177.054688 244.609375 177.148438 244.515625 177.148438 244.398438 Z M 177.148438 244.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 174.082031 246.300781 C 174.082031 246.183594 173.988281 246.089844 173.871094 246.089844 C 173.753906 246.089844 173.660156 246.183594 173.660156 246.300781 C 173.660156 246.417969 173.753906 246.511719 173.871094 246.511719 C 173.988281 246.511719 174.082031 246.417969 174.082031 246.300781 Z M 174.082031 246.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 173.753906 248.871094 C 173.753906 248.753906 173.660156 248.660156 173.542969 248.660156 C 173.425781 248.660156 173.332031 248.753906 173.332031 248.871094 C 173.332031 248.988281 173.425781 249.082031 173.542969 249.082031 C 173.660156 249.082031 173.753906 248.988281 173.753906 248.871094 Z M 173.753906 248.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 174.851562 250.394531 C 174.851562 250.277344 174.757812 250.183594 174.640625 250.183594 C 174.523438 250.183594 174.429688 250.277344 174.429688 250.394531 C 174.429688 250.511719 174.523438 250.605469 174.640625 250.605469 C 174.757812 250.605469 174.851562 250.511719 174.851562 250.394531 Z M 174.851562 250.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 178.835938 247.738281 C 178.835938 247.621094 178.742188 247.527344 178.625 247.527344 C 178.507812 247.527344 178.414062 247.621094 178.414062 247.738281 C 178.414062 247.855469 178.507812 247.949219 178.625 247.949219 C 178.742188 247.949219 178.835938 247.855469 178.835938 247.738281 Z M 178.835938 247.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 178.691406 245.109375 C 178.691406 244.992188 178.597656 244.898438 178.480469 244.898438 C 178.363281 244.898438 178.269531 244.992188 178.269531 245.109375 C 178.269531 245.226562 178.363281 245.320312 178.480469 245.320312 C 178.597656 245.320312 178.691406 245.226562 178.691406 245.109375 Z M 178.691406 245.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 178.378906 245.472656 C 178.378906 245.355469 178.285156 245.261719 178.167969 245.261719 C 178.050781 245.261719 177.957031 245.355469 177.957031 245.472656 C 177.957031 245.589844 178.050781 245.683594 178.167969 245.683594 C 178.285156 245.683594 178.378906 245.589844 178.378906 245.472656 Z M 178.378906 245.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 177.628906 244.335938 C 177.628906 244.21875 177.535156 244.125 177.417969 244.125 C 177.300781 244.125 177.207031 244.21875 177.207031 244.335938 C 177.207031 244.453125 177.300781 244.546875 177.417969 244.546875 C 177.535156 244.546875 177.628906 244.453125 177.628906 244.335938 Z M 177.628906 244.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.835938 241.289062 C 175.835938 241.171875 175.742188 241.078125 175.625 241.078125 C 175.507812 241.078125 175.414062 241.171875 175.414062 241.289062 C 175.414062 241.40625 175.507812 241.5 175.625 241.5 C 175.742188 241.5 175.835938 241.40625 175.835938 241.289062 Z M 175.835938 241.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 174.097656 240.253906 C 174.097656 240.136719 174.003906 240.042969 173.886719 240.042969 C 173.769531 240.042969 173.675781 240.136719 173.675781 240.253906 C 173.675781 240.371094 173.769531 240.464844 173.886719 240.464844 C 174.003906 240.464844 174.097656 240.371094 174.097656 240.253906 Z M 174.097656 240.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 172.003906 241.097656 C 172.003906 240.980469 171.910156 240.886719 171.792969 240.886719 C 171.675781 240.886719 171.582031 240.980469 171.582031 241.097656 C 171.582031 241.214844 171.675781 241.308594 171.792969 241.308594 C 171.910156 241.308594 172.003906 241.214844 172.003906 241.097656 Z M 172.003906 241.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 171.585938 241.382812 C 171.585938 241.265625 171.492188 241.171875 171.375 241.171875 C 171.257812 241.171875 171.164062 241.265625 171.164062 241.382812 C 171.164062 241.5 171.257812 241.59375 171.375 241.59375 C 171.492188 241.59375 171.585938 241.5 171.585938 241.382812 Z M 171.585938 241.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 169.675781 242.324219 C 169.675781 242.207031 169.582031 242.113281 169.464844 242.113281 C 169.347656 242.113281 169.253906 242.207031 169.253906 242.324219 C 169.253906 242.441406 169.347656 242.535156 169.464844 242.535156 C 169.582031 242.535156 169.675781 242.441406 169.675781 242.324219 Z M 169.675781 242.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 165.589844 242.171875 C 165.589844 242.054688 165.496094 241.960938 165.378906 241.960938 C 165.261719 241.960938 165.167969 242.054688 165.167969 242.171875 C 165.167969 242.289062 165.261719 242.382812 165.378906 242.382812 C 165.496094 242.382812 165.589844 242.289062 165.589844 242.171875 Z M 165.589844 242.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 165.460938 245.988281 C 165.460938 245.871094 165.367188 245.777344 165.25 245.777344 C 165.132812 245.777344 165.039062 245.871094 165.039062 245.988281 C 165.039062 246.105469 165.132812 246.199219 165.25 246.199219 C 165.367188 246.199219 165.460938 246.105469 165.460938 245.988281 Z M 165.460938 245.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 162.816406 242.703125 C 162.816406 242.585938 162.722656 242.492188 162.605469 242.492188 C 162.488281 242.492188 162.394531 242.585938 162.394531 242.703125 C 162.394531 242.820312 162.488281 242.914062 162.605469 242.914062 C 162.722656 242.914062 162.816406 242.820312 162.816406 242.703125 Z M 162.816406 242.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 163.667969 242.886719 C 163.667969 242.769531 163.574219 242.675781 163.457031 242.675781 C 163.339844 242.675781 163.246094 242.769531 163.246094 242.886719 C 163.246094 243.003906 163.339844 243.097656 163.457031 243.097656 C 163.574219 243.097656 163.667969 243.003906 163.667969 242.886719 Z M 163.667969 242.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 164.269531 244.386719 C 164.269531 244.269531 164.175781 244.175781 164.058594 244.175781 C 163.941406 244.175781 163.847656 244.269531 163.847656 244.386719 C 163.847656 244.503906 163.941406 244.597656 164.058594 244.597656 C 164.175781 244.597656 164.269531 244.503906 164.269531 244.386719 Z M 164.269531 244.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 164.894531 241.996094 C 164.894531 241.878906 164.800781 241.785156 164.683594 241.785156 C 164.566406 241.785156 164.472656 241.878906 164.472656 241.996094 C 164.472656 242.113281 164.566406 242.207031 164.683594 242.207031 C 164.800781 242.207031 164.894531 242.113281 164.894531 241.996094 Z M 164.894531 241.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 168.480469 241.976562 C 168.480469 241.859375 168.386719 241.765625 168.269531 241.765625 C 168.152344 241.765625 168.058594 241.859375 168.058594 241.976562 C 168.058594 242.09375 168.152344 242.1875 168.269531 242.1875 C 168.386719 242.1875 168.480469 242.09375 168.480469 241.976562 Z M 168.480469 241.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 168.9375 243.667969 C 168.9375 243.550781 168.84375 243.457031 168.726562 243.457031 C 168.609375 243.457031 168.515625 243.550781 168.515625 243.667969 C 168.515625 243.785156 168.609375 243.878906 168.726562 243.878906 C 168.84375 243.878906 168.9375 243.785156 168.9375 243.667969 Z M 168.9375 243.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 171.410156 240.90625 C 171.410156 240.789062 171.316406 240.695312 171.199219 240.695312 C 171.082031 240.695312 170.988281 240.789062 170.988281 240.90625 C 170.988281 241.023438 171.082031 241.117188 171.199219 241.117188 C 171.316406 241.117188 171.410156 241.023438 171.410156 240.90625 Z M 171.410156 240.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 173.339844 237.777344 C 173.339844 237.660156 173.246094 237.566406 173.128906 237.566406 C 173.011719 237.566406 172.917969 237.660156 172.917969 237.777344 C 172.917969 237.894531 173.011719 237.988281 173.128906 237.988281 C 173.246094 237.988281 173.339844 237.894531 173.339844 237.777344 Z M 173.339844 237.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 174.886719 239.828125 C 174.886719 239.710938 174.792969 239.617188 174.675781 239.617188 C 174.558594 239.617188 174.464844 239.710938 174.464844 239.828125 C 174.464844 239.945312 174.558594 240.039062 174.675781 240.039062 C 174.792969 240.039062 174.886719 239.945312 174.886719 239.828125 Z M 174.886719 239.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.769531 237.984375 C 175.769531 237.867188 175.675781 237.773438 175.558594 237.773438 C 175.441406 237.773438 175.347656 237.867188 175.347656 237.984375 C 175.347656 238.101562 175.441406 238.195312 175.558594 238.195312 C 175.675781 238.195312 175.769531 238.101562 175.769531 237.984375 Z M 175.769531 237.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 174.914062 236.96875 C 174.914062 236.851562 174.820312 236.757812 174.703125 236.757812 C 174.585938 236.757812 174.492188 236.851562 174.492188 236.96875 C 174.492188 237.085938 174.585938 237.179688 174.703125 237.179688 C 174.820312 237.179688 174.914062 237.085938 174.914062 236.96875 Z M 174.914062 236.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 178.179688 236.957031 C 178.179688 236.839844 178.085938 236.746094 177.96875 236.746094 C 177.851562 236.746094 177.757812 236.839844 177.757812 236.957031 C 177.757812 237.074219 177.851562 237.167969 177.96875 237.167969 C 178.085938 237.167969 178.179688 237.074219 178.179688 236.957031 Z M 178.179688 236.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 180.425781 240.609375 C 180.425781 240.492188 180.332031 240.398438 180.214844 240.398438 C 180.097656 240.398438 180.003906 240.492188 180.003906 240.609375 C 180.003906 240.726562 180.097656 240.820312 180.214844 240.820312 C 180.332031 240.820312 180.425781 240.726562 180.425781 240.609375 Z M 180.425781 240.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 178.394531 242.957031 C 178.394531 242.839844 178.300781 242.746094 178.183594 242.746094 C 178.066406 242.746094 177.972656 242.839844 177.972656 242.957031 C 177.972656 243.074219 178.066406 243.167969 178.183594 243.167969 C 178.300781 243.167969 178.394531 243.074219 178.394531 242.957031 Z M 178.394531 242.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 176.953125 243.878906 C 176.953125 243.761719 176.859375 243.667969 176.742188 243.667969 C 176.625 243.667969 176.53125 243.761719 176.53125 243.878906 C 176.53125 243.996094 176.625 244.089844 176.742188 244.089844 C 176.859375 244.089844 176.953125 243.996094 176.953125 243.878906 Z M 176.953125 243.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 177.257812 243.476562 C 177.257812 243.359375 177.164062 243.265625 177.046875 243.265625 C 176.929688 243.265625 176.835938 243.359375 176.835938 243.476562 C 176.835938 243.59375 176.929688 243.6875 177.046875 243.6875 C 177.164062 243.6875 177.257812 243.59375 177.257812 243.476562 Z M 177.257812 243.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 176.792969 238.773438 C 176.792969 238.65625 176.699219 238.5625 176.582031 238.5625 C 176.464844 238.5625 176.371094 238.65625 176.371094 238.773438 C 176.371094 238.890625 176.464844 238.984375 176.582031 238.984375 C 176.699219 238.984375 176.792969 238.890625 176.792969 238.773438 Z M 176.792969 238.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 179.46875 239.152344 C 179.46875 239.035156 179.375 238.941406 179.257812 238.941406 C 179.140625 238.941406 179.046875 239.035156 179.046875 239.152344 C 179.046875 239.269531 179.140625 239.363281 179.257812 239.363281 C 179.375 239.363281 179.46875 239.269531 179.46875 239.152344 Z M 179.46875 239.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 180.648438 241.257812 C 180.648438 241.140625 180.554688 241.046875 180.4375 241.046875 C 180.320312 241.046875 180.226562 241.140625 180.226562 241.257812 C 180.226562 241.375 180.320312 241.46875 180.4375 241.46875 C 180.554688 241.46875 180.648438 241.375 180.648438 241.257812 Z M 180.648438 241.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 180.761719 240.871094 C 180.761719 240.753906 180.667969 240.660156 180.550781 240.660156 C 180.433594 240.660156 180.339844 240.753906 180.339844 240.871094 C 180.339844 240.988281 180.433594 241.082031 180.550781 241.082031 C 180.667969 241.082031 180.761719 240.988281 180.761719 240.871094 Z M 180.761719 240.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 180.179688 241.835938 C 180.179688 241.71875 180.085938 241.625 179.96875 241.625 C 179.851562 241.625 179.757812 241.71875 179.757812 241.835938 C 179.757812 241.953125 179.851562 242.046875 179.96875 242.046875 C 180.085938 242.046875 180.179688 241.953125 180.179688 241.835938 Z M 180.179688 241.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 180.066406 243.765625 C 180.066406 243.648438 179.972656 243.554688 179.855469 243.554688 C 179.738281 243.554688 179.644531 243.648438 179.644531 243.765625 C 179.644531 243.882812 179.738281 243.976562 179.855469 243.976562 C 179.972656 243.976562 180.066406 243.882812 180.066406 243.765625 Z M 180.066406 243.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 179.332031 240.714844 C 179.332031 240.597656 179.238281 240.503906 179.121094 240.503906 C 179.003906 240.503906 178.910156 240.597656 178.910156 240.714844 C 178.910156 240.832031 179.003906 240.925781 179.121094 240.925781 C 179.238281 240.925781 179.332031 240.832031 179.332031 240.714844 Z M 179.332031 240.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.066406 239.183594 C 181.066406 239.066406 180.972656 238.972656 180.855469 238.972656 C 180.738281 238.972656 180.644531 239.066406 180.644531 239.183594 C 180.644531 239.300781 180.738281 239.394531 180.855469 239.394531 C 180.972656 239.394531 181.066406 239.300781 181.066406 239.183594 Z M 181.066406 239.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 177.699219 239.355469 C 177.699219 239.238281 177.605469 239.144531 177.488281 239.144531 C 177.371094 239.144531 177.277344 239.238281 177.277344 239.355469 C 177.277344 239.472656 177.371094 239.566406 177.488281 239.566406 C 177.605469 239.566406 177.699219 239.472656 177.699219 239.355469 Z M 177.699219 239.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.644531 241.574219 C 183.644531 241.457031 183.550781 241.363281 183.433594 241.363281 C 183.316406 241.363281 183.222656 241.457031 183.222656 241.574219 C 183.222656 241.691406 183.316406 241.785156 183.433594 241.785156 C 183.550781 241.785156 183.644531 241.691406 183.644531 241.574219 Z M 183.644531 241.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.9375 241.863281 C 184.9375 241.746094 184.84375 241.652344 184.726562 241.652344 C 184.609375 241.652344 184.515625 241.746094 184.515625 241.863281 C 184.515625 241.980469 184.609375 242.074219 184.726562 242.074219 C 184.84375 242.074219 184.9375 241.980469 184.9375 241.863281 Z M 184.9375 241.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.675781 241.082031 C 183.675781 240.964844 183.582031 240.871094 183.464844 240.871094 C 183.347656 240.871094 183.253906 240.964844 183.253906 241.082031 C 183.253906 241.199219 183.347656 241.292969 183.464844 241.292969 C 183.582031 241.292969 183.675781 241.199219 183.675781 241.082031 Z M 183.675781 241.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.375 246.152344 C 186.375 246.035156 186.28125 245.941406 186.164062 245.941406 C 186.046875 245.941406 185.953125 246.035156 185.953125 246.152344 C 185.953125 246.269531 186.046875 246.363281 186.164062 246.363281 C 186.28125 246.363281 186.375 246.269531 186.375 246.152344 Z M 186.375 246.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.671875 248.492188 C 184.671875 248.375 184.578125 248.28125 184.460938 248.28125 C 184.34375 248.28125 184.25 248.375 184.25 248.492188 C 184.25 248.609375 184.34375 248.703125 184.460938 248.703125 C 184.578125 248.703125 184.671875 248.609375 184.671875 248.492188 Z M 184.671875 248.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.441406 249.972656 C 184.441406 249.855469 184.347656 249.761719 184.230469 249.761719 C 184.113281 249.761719 184.019531 249.855469 184.019531 249.972656 C 184.019531 250.089844 184.113281 250.183594 184.230469 250.183594 C 184.347656 250.183594 184.441406 250.089844 184.441406 249.972656 Z M 184.441406 249.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.523438 248.535156 C 181.523438 248.417969 181.429688 248.324219 181.3125 248.324219 C 181.195312 248.324219 181.101562 248.417969 181.101562 248.535156 C 181.101562 248.652344 181.195312 248.746094 181.3125 248.746094 C 181.429688 248.746094 181.523438 248.652344 181.523438 248.535156 Z M 181.523438 248.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.046875 247.214844 C 181.046875 247.097656 180.953125 247.003906 180.835938 247.003906 C 180.71875 247.003906 180.625 247.097656 180.625 247.214844 C 180.625 247.332031 180.71875 247.425781 180.835938 247.425781 C 180.953125 247.425781 181.046875 247.332031 181.046875 247.214844 Z M 181.046875 247.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.953125 247.269531 C 185.953125 247.152344 185.859375 247.058594 185.742188 247.058594 C 185.625 247.058594 185.53125 247.152344 185.53125 247.269531 C 185.53125 247.386719 185.625 247.480469 185.742188 247.480469 C 185.859375 247.480469 185.953125 247.386719 185.953125 247.269531 Z M 185.953125 247.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.355469 249.492188 C 186.355469 249.375 186.261719 249.28125 186.144531 249.28125 C 186.027344 249.28125 185.933594 249.375 185.933594 249.492188 C 185.933594 249.609375 186.027344 249.703125 186.144531 249.703125 C 186.261719 249.703125 186.355469 249.609375 186.355469 249.492188 Z M 186.355469 249.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.789062 249.921875 C 189.789062 249.804688 189.695312 249.710938 189.578125 249.710938 C 189.460938 249.710938 189.367188 249.804688 189.367188 249.921875 C 189.367188 250.039062 189.460938 250.132812 189.578125 250.132812 C 189.695312 250.132812 189.789062 250.039062 189.789062 249.921875 Z M 189.789062 249.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.375 250.683594 C 191.375 250.566406 191.28125 250.472656 191.164062 250.472656 C 191.046875 250.472656 190.953125 250.566406 190.953125 250.683594 C 190.953125 250.800781 191.046875 250.894531 191.164062 250.894531 C 191.28125 250.894531 191.375 250.800781 191.375 250.683594 Z M 191.375 250.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.84375 252.390625 C 191.84375 252.273438 191.75 252.179688 191.632812 252.179688 C 191.515625 252.179688 191.421875 252.273438 191.421875 252.390625 C 191.421875 252.507812 191.515625 252.601562 191.632812 252.601562 C 191.75 252.601562 191.84375 252.507812 191.84375 252.390625 Z M 191.84375 252.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.414062 251.253906 C 197.414062 251.136719 197.320312 251.042969 197.203125 251.042969 C 197.085938 251.042969 196.992188 251.136719 196.992188 251.253906 C 196.992188 251.371094 197.085938 251.464844 197.203125 251.464844 C 197.320312 251.464844 197.414062 251.371094 197.414062 251.253906 Z M 197.414062 251.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.871094 252.316406 C 197.871094 252.199219 197.777344 252.105469 197.660156 252.105469 C 197.542969 252.105469 197.449219 252.199219 197.449219 252.316406 C 197.449219 252.433594 197.542969 252.527344 197.660156 252.527344 C 197.777344 252.527344 197.871094 252.433594 197.871094 252.316406 Z M 197.871094 252.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.101562 250.808594 C 203.101562 250.691406 203.007812 250.597656 202.890625 250.597656 C 202.773438 250.597656 202.679688 250.691406 202.679688 250.808594 C 202.679688 250.925781 202.773438 251.019531 202.890625 251.019531 C 203.007812 251.019531 203.101562 250.925781 203.101562 250.808594 Z M 203.101562 250.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.605469 255.148438 C 204.605469 255.03125 204.511719 254.9375 204.394531 254.9375 C 204.277344 254.9375 204.183594 255.03125 204.183594 255.148438 C 204.183594 255.265625 204.277344 255.359375 204.394531 255.359375 C 204.511719 255.359375 204.605469 255.265625 204.605469 255.148438 Z M 204.605469 255.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.78125 254.152344 C 202.78125 254.035156 202.6875 253.941406 202.570312 253.941406 C 202.453125 253.941406 202.359375 254.035156 202.359375 254.152344 C 202.359375 254.269531 202.453125 254.363281 202.570312 254.363281 C 202.6875 254.363281 202.78125 254.269531 202.78125 254.152344 Z M 202.78125 254.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.824219 250.621094 C 202.824219 250.503906 202.730469 250.410156 202.613281 250.410156 C 202.496094 250.410156 202.402344 250.503906 202.402344 250.621094 C 202.402344 250.738281 202.496094 250.832031 202.613281 250.832031 C 202.730469 250.832031 202.824219 250.738281 202.824219 250.621094 Z M 202.824219 250.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.5 253.117188 C 203.5 253 203.40625 252.90625 203.289062 252.90625 C 203.171875 252.90625 203.078125 253 203.078125 253.117188 C 203.078125 253.234375 203.171875 253.328125 203.289062 253.328125 C 203.40625 253.328125 203.5 253.234375 203.5 253.117188 Z M 203.5 253.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.402344 255.847656 C 204.402344 255.730469 204.308594 255.636719 204.191406 255.636719 C 204.074219 255.636719 203.980469 255.730469 203.980469 255.847656 C 203.980469 255.964844 204.074219 256.058594 204.191406 256.058594 C 204.308594 256.058594 204.402344 255.964844 204.402344 255.847656 Z M 204.402344 255.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.589844 257.710938 C 205.589844 257.59375 205.496094 257.5 205.378906 257.5 C 205.261719 257.5 205.167969 257.59375 205.167969 257.710938 C 205.167969 257.828125 205.261719 257.921875 205.378906 257.921875 C 205.496094 257.921875 205.589844 257.828125 205.589844 257.710938 Z M 205.589844 257.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.894531 255.898438 C 204.894531 255.78125 204.800781 255.6875 204.683594 255.6875 C 204.566406 255.6875 204.472656 255.78125 204.472656 255.898438 C 204.472656 256.015625 204.566406 256.109375 204.683594 256.109375 C 204.800781 256.109375 204.894531 256.015625 204.894531 255.898438 Z M 204.894531 255.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.070312 257.738281 C 204.070312 257.621094 203.976562 257.527344 203.859375 257.527344 C 203.742188 257.527344 203.648438 257.621094 203.648438 257.738281 C 203.648438 257.855469 203.742188 257.949219 203.859375 257.949219 C 203.976562 257.949219 204.070312 257.855469 204.070312 257.738281 Z M 204.070312 257.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.683594 260.835938 C 206.683594 260.71875 206.589844 260.625 206.472656 260.625 C 206.355469 260.625 206.261719 260.71875 206.261719 260.835938 C 206.261719 260.953125 206.355469 261.046875 206.472656 261.046875 C 206.589844 261.046875 206.683594 260.953125 206.683594 260.835938 Z M 206.683594 260.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.894531 263.785156 C 205.894531 263.667969 205.800781 263.574219 205.683594 263.574219 C 205.566406 263.574219 205.472656 263.667969 205.472656 263.785156 C 205.472656 263.902344 205.566406 263.996094 205.683594 263.996094 C 205.800781 263.996094 205.894531 263.902344 205.894531 263.785156 Z M 205.894531 263.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.101562 263.609375 C 203.101562 263.492188 203.007812 263.398438 202.890625 263.398438 C 202.773438 263.398438 202.679688 263.492188 202.679688 263.609375 C 202.679688 263.726562 202.773438 263.820312 202.890625 263.820312 C 203.007812 263.820312 203.101562 263.726562 203.101562 263.609375 Z M 203.101562 263.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.542969 263.238281 C 200.542969 263.121094 200.449219 263.027344 200.332031 263.027344 C 200.214844 263.027344 200.121094 263.121094 200.121094 263.238281 C 200.121094 263.355469 200.214844 263.449219 200.332031 263.449219 C 200.449219 263.449219 200.542969 263.355469 200.542969 263.238281 Z M 200.542969 263.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.796875 263.859375 C 200.796875 263.742188 200.703125 263.648438 200.585938 263.648438 C 200.46875 263.648438 200.375 263.742188 200.375 263.859375 C 200.375 263.976562 200.46875 264.070312 200.585938 264.070312 C 200.703125 264.070312 200.796875 263.976562 200.796875 263.859375 Z M 200.796875 263.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.4375 260.226562 C 199.4375 260.109375 199.34375 260.015625 199.226562 260.015625 C 199.109375 260.015625 199.015625 260.109375 199.015625 260.226562 C 199.015625 260.34375 199.109375 260.4375 199.226562 260.4375 C 199.34375 260.4375 199.4375 260.34375 199.4375 260.226562 Z M 199.4375 260.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.011719 259.898438 C 202.011719 259.78125 201.917969 259.6875 201.800781 259.6875 C 201.683594 259.6875 201.589844 259.78125 201.589844 259.898438 C 201.589844 260.015625 201.683594 260.109375 201.800781 260.109375 C 201.917969 260.109375 202.011719 260.015625 202.011719 259.898438 Z M 202.011719 259.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.875 263.269531 C 204.875 263.152344 204.78125 263.058594 204.664062 263.058594 C 204.546875 263.058594 204.453125 263.152344 204.453125 263.269531 C 204.453125 263.386719 204.546875 263.480469 204.664062 263.480469 C 204.78125 263.480469 204.875 263.386719 204.875 263.269531 Z M 204.875 263.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.226562 261.074219 C 208.226562 260.957031 208.132812 260.863281 208.015625 260.863281 C 207.898438 260.863281 207.804688 260.957031 207.804688 261.074219 C 207.804688 261.191406 207.898438 261.285156 208.015625 261.285156 C 208.132812 261.285156 208.226562 261.191406 208.226562 261.074219 Z M 208.226562 261.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.097656 258.46875 C 206.097656 258.351562 206.003906 258.257812 205.886719 258.257812 C 205.769531 258.257812 205.675781 258.351562 205.675781 258.46875 C 205.675781 258.585938 205.769531 258.679688 205.886719 258.679688 C 206.003906 258.679688 206.097656 258.585938 206.097656 258.46875 Z M 206.097656 258.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.695312 255.648438 C 203.695312 255.53125 203.601562 255.4375 203.484375 255.4375 C 203.367188 255.4375 203.273438 255.53125 203.273438 255.648438 C 203.273438 255.765625 203.367188 255.859375 203.484375 255.859375 C 203.601562 255.859375 203.695312 255.765625 203.695312 255.648438 Z M 203.695312 255.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.929688 254.503906 C 205.929688 254.386719 205.835938 254.292969 205.71875 254.292969 C 205.601562 254.292969 205.507812 254.386719 205.507812 254.503906 C 205.507812 254.621094 205.601562 254.714844 205.71875 254.714844 C 205.835938 254.714844 205.929688 254.621094 205.929688 254.503906 Z M 205.929688 254.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.4375 252.640625 C 205.4375 252.523438 205.34375 252.429688 205.226562 252.429688 C 205.109375 252.429688 205.015625 252.523438 205.015625 252.640625 C 205.015625 252.757812 205.109375 252.851562 205.226562 252.851562 C 205.34375 252.851562 205.4375 252.757812 205.4375 252.640625 Z M 205.4375 252.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.757812 255.273438 C 204.757812 255.15625 204.664062 255.0625 204.546875 255.0625 C 204.429688 255.0625 204.335938 255.15625 204.335938 255.273438 C 204.335938 255.390625 204.429688 255.484375 204.546875 255.484375 C 204.664062 255.484375 204.757812 255.390625 204.757812 255.273438 Z M 204.757812 255.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.980469 254.144531 C 202.980469 254.027344 202.886719 253.933594 202.769531 253.933594 C 202.652344 253.933594 202.558594 254.027344 202.558594 254.144531 C 202.558594 254.261719 202.652344 254.355469 202.769531 254.355469 C 202.886719 254.355469 202.980469 254.261719 202.980469 254.144531 Z M 202.980469 254.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.285156 254.9375 C 199.285156 254.820312 199.191406 254.726562 199.074219 254.726562 C 198.957031 254.726562 198.863281 254.820312 198.863281 254.9375 C 198.863281 255.054688 198.957031 255.148438 199.074219 255.148438 C 199.191406 255.148438 199.285156 255.054688 199.285156 254.9375 Z M 199.285156 254.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.691406 253.988281 C 194.691406 253.871094 194.597656 253.777344 194.480469 253.777344 C 194.363281 253.777344 194.269531 253.871094 194.269531 253.988281 C 194.269531 254.105469 194.363281 254.199219 194.480469 254.199219 C 194.597656 254.199219 194.691406 254.105469 194.691406 253.988281 Z M 194.691406 253.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.859375 248.984375 C 194.859375 248.867188 194.765625 248.773438 194.648438 248.773438 C 194.53125 248.773438 194.4375 248.867188 194.4375 248.984375 C 194.4375 249.101562 194.53125 249.195312 194.648438 249.195312 C 194.765625 249.195312 194.859375 249.101562 194.859375 248.984375 Z M 194.859375 248.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.585938 243.5 C 198.585938 243.382812 198.492188 243.289062 198.375 243.289062 C 198.257812 243.289062 198.164062 243.382812 198.164062 243.5 C 198.164062 243.617188 198.257812 243.710938 198.375 243.710938 C 198.492188 243.710938 198.585938 243.617188 198.585938 243.5 Z M 198.585938 243.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.511719 244.417969 C 197.511719 244.300781 197.417969 244.207031 197.300781 244.207031 C 197.183594 244.207031 197.089844 244.300781 197.089844 244.417969 C 197.089844 244.535156 197.183594 244.628906 197.300781 244.628906 C 197.417969 244.628906 197.511719 244.535156 197.511719 244.417969 Z M 197.511719 244.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.324219 243.570312 C 197.324219 243.453125 197.230469 243.359375 197.113281 243.359375 C 196.996094 243.359375 196.902344 243.453125 196.902344 243.570312 C 196.902344 243.6875 196.996094 243.78125 197.113281 243.78125 C 197.230469 243.78125 197.324219 243.6875 197.324219 243.570312 Z M 197.324219 243.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.082031 248.152344 C 199.082031 248.035156 198.988281 247.941406 198.871094 247.941406 C 198.753906 247.941406 198.660156 248.035156 198.660156 248.152344 C 198.660156 248.269531 198.753906 248.363281 198.871094 248.363281 C 198.988281 248.363281 199.082031 248.269531 199.082031 248.152344 Z M 199.082031 248.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.878906 249.425781 C 199.878906 249.308594 199.785156 249.214844 199.667969 249.214844 C 199.550781 249.214844 199.457031 249.308594 199.457031 249.425781 C 199.457031 249.542969 199.550781 249.636719 199.667969 249.636719 C 199.785156 249.636719 199.878906 249.542969 199.878906 249.425781 Z M 199.878906 249.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.414062 245.261719 C 200.414062 245.144531 200.320312 245.050781 200.203125 245.050781 C 200.085938 245.050781 199.992188 245.144531 199.992188 245.261719 C 199.992188 245.378906 200.085938 245.472656 200.203125 245.472656 C 200.320312 245.472656 200.414062 245.378906 200.414062 245.261719 Z M 200.414062 245.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.015625 244.769531 C 203.015625 244.652344 202.921875 244.558594 202.804688 244.558594 C 202.6875 244.558594 202.59375 244.652344 202.59375 244.769531 C 202.59375 244.886719 202.6875 244.980469 202.804688 244.980469 C 202.921875 244.980469 203.015625 244.886719 203.015625 244.769531 Z M 203.015625 244.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.621094 244.773438 C 202.621094 244.65625 202.527344 244.5625 202.410156 244.5625 C 202.292969 244.5625 202.199219 244.65625 202.199219 244.773438 C 202.199219 244.890625 202.292969 244.984375 202.410156 244.984375 C 202.527344 244.984375 202.621094 244.890625 202.621094 244.773438 Z M 202.621094 244.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.472656 247.195312 C 201.472656 247.078125 201.378906 246.984375 201.261719 246.984375 C 201.144531 246.984375 201.050781 247.078125 201.050781 247.195312 C 201.050781 247.3125 201.144531 247.40625 201.261719 247.40625 C 201.378906 247.40625 201.472656 247.3125 201.472656 247.195312 Z M 201.472656 247.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.808594 247.132812 C 204.808594 247.015625 204.714844 246.921875 204.597656 246.921875 C 204.480469 246.921875 204.386719 247.015625 204.386719 247.132812 C 204.386719 247.25 204.480469 247.34375 204.597656 247.34375 C 204.714844 247.34375 204.808594 247.25 204.808594 247.132812 Z M 204.808594 247.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.527344 247.722656 C 204.527344 247.605469 204.433594 247.511719 204.316406 247.511719 C 204.199219 247.511719 204.105469 247.605469 204.105469 247.722656 C 204.105469 247.839844 204.199219 247.933594 204.316406 247.933594 C 204.433594 247.933594 204.527344 247.839844 204.527344 247.722656 Z M 204.527344 247.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.472656 246.980469 C 204.472656 246.863281 204.378906 246.769531 204.261719 246.769531 C 204.144531 246.769531 204.050781 246.863281 204.050781 246.980469 C 204.050781 247.097656 204.144531 247.191406 204.261719 247.191406 C 204.378906 247.191406 204.472656 247.097656 204.472656 246.980469 Z M 204.472656 246.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.847656 245.394531 C 202.847656 245.277344 202.753906 245.183594 202.636719 245.183594 C 202.519531 245.183594 202.425781 245.277344 202.425781 245.394531 C 202.425781 245.511719 202.519531 245.605469 202.636719 245.605469 C 202.753906 245.605469 202.847656 245.511719 202.847656 245.394531 Z M 202.847656 245.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.511719 242.886719 C 199.511719 242.769531 199.417969 242.675781 199.300781 242.675781 C 199.183594 242.675781 199.089844 242.769531 199.089844 242.886719 C 199.089844 243.003906 199.183594 243.097656 199.300781 243.097656 C 199.417969 243.097656 199.511719 243.003906 199.511719 242.886719 Z M 199.511719 242.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.796875 246.398438 C 199.796875 246.28125 199.703125 246.1875 199.585938 246.1875 C 199.46875 246.1875 199.375 246.28125 199.375 246.398438 C 199.375 246.515625 199.46875 246.609375 199.585938 246.609375 C 199.703125 246.609375 199.796875 246.515625 199.796875 246.398438 Z M 199.796875 246.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.574219 246.894531 C 198.574219 246.777344 198.480469 246.683594 198.363281 246.683594 C 198.246094 246.683594 198.152344 246.777344 198.152344 246.894531 C 198.152344 247.011719 198.246094 247.105469 198.363281 247.105469 C 198.480469 247.105469 198.574219 247.011719 198.574219 246.894531 Z M 198.574219 246.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.863281 242.78125 C 196.863281 242.664062 196.769531 242.570312 196.652344 242.570312 C 196.535156 242.570312 196.441406 242.664062 196.441406 242.78125 C 196.441406 242.898438 196.535156 242.992188 196.652344 242.992188 C 196.769531 242.992188 196.863281 242.898438 196.863281 242.78125 Z M 196.863281 242.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.78125 242 C 194.78125 241.882812 194.6875 241.789062 194.570312 241.789062 C 194.453125 241.789062 194.359375 241.882812 194.359375 242 C 194.359375 242.117188 194.453125 242.210938 194.570312 242.210938 C 194.6875 242.210938 194.78125 242.117188 194.78125 242 Z M 194.78125 242 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.308594 243.464844 C 195.308594 243.347656 195.214844 243.253906 195.097656 243.253906 C 194.980469 243.253906 194.886719 243.347656 194.886719 243.464844 C 194.886719 243.582031 194.980469 243.675781 195.097656 243.675781 C 195.214844 243.675781 195.308594 243.582031 195.308594 243.464844 Z M 195.308594 243.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.421875 249.316406 C 195.421875 249.199219 195.328125 249.105469 195.210938 249.105469 C 195.09375 249.105469 195 249.199219 195 249.316406 C 195 249.433594 195.09375 249.527344 195.210938 249.527344 C 195.328125 249.527344 195.421875 249.433594 195.421875 249.316406 Z M 195.421875 249.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.703125 253.097656 C 196.703125 252.980469 196.609375 252.886719 196.492188 252.886719 C 196.375 252.886719 196.28125 252.980469 196.28125 253.097656 C 196.28125 253.214844 196.375 253.308594 196.492188 253.308594 C 196.609375 253.308594 196.703125 253.214844 196.703125 253.097656 Z M 196.703125 253.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.171875 254.648438 C 201.171875 254.53125 201.078125 254.4375 200.960938 254.4375 C 200.84375 254.4375 200.75 254.53125 200.75 254.648438 C 200.75 254.765625 200.84375 254.859375 200.960938 254.859375 C 201.078125 254.859375 201.171875 254.765625 201.171875 254.648438 Z M 201.171875 254.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.863281 255.359375 C 203.863281 255.242188 203.769531 255.148438 203.652344 255.148438 C 203.535156 255.148438 203.441406 255.242188 203.441406 255.359375 C 203.441406 255.476562 203.535156 255.570312 203.652344 255.570312 C 203.769531 255.570312 203.863281 255.476562 203.863281 255.359375 Z M 203.863281 255.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.992188 255.402344 C 205.992188 255.285156 205.898438 255.191406 205.78125 255.191406 C 205.664062 255.191406 205.570312 255.285156 205.570312 255.402344 C 205.570312 255.519531 205.664062 255.613281 205.78125 255.613281 C 205.898438 255.613281 205.992188 255.519531 205.992188 255.402344 Z M 205.992188 255.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.84375 256.953125 C 206.84375 256.835938 206.75 256.742188 206.632812 256.742188 C 206.515625 256.742188 206.421875 256.835938 206.421875 256.953125 C 206.421875 257.070312 206.515625 257.164062 206.632812 257.164062 C 206.75 257.164062 206.84375 257.070312 206.84375 256.953125 Z M 206.84375 256.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.585938 253.84375 C 205.585938 253.726562 205.492188 253.632812 205.375 253.632812 C 205.257812 253.632812 205.164062 253.726562 205.164062 253.84375 C 205.164062 253.960938 205.257812 254.054688 205.375 254.054688 C 205.492188 254.054688 205.585938 253.960938 205.585938 253.84375 Z M 205.585938 253.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.714844 253.480469 C 207.714844 253.363281 207.621094 253.269531 207.503906 253.269531 C 207.386719 253.269531 207.292969 253.363281 207.292969 253.480469 C 207.292969 253.597656 207.386719 253.691406 207.503906 253.691406 C 207.621094 253.691406 207.714844 253.597656 207.714844 253.480469 Z M 207.714844 253.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.210938 252.183594 C 209.210938 252.066406 209.117188 251.972656 209 251.972656 C 208.882812 251.972656 208.789062 252.066406 208.789062 252.183594 C 208.789062 252.300781 208.882812 252.394531 209 252.394531 C 209.117188 252.394531 209.210938 252.300781 209.210938 252.183594 Z M 209.210938 252.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.277344 252.742188 C 208.277344 252.625 208.183594 252.53125 208.066406 252.53125 C 207.949219 252.53125 207.855469 252.625 207.855469 252.742188 C 207.855469 252.859375 207.949219 252.953125 208.066406 252.953125 C 208.183594 252.953125 208.277344 252.859375 208.277344 252.742188 Z M 208.277344 252.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.921875 255.390625 C 210.921875 255.273438 210.828125 255.179688 210.710938 255.179688 C 210.59375 255.179688 210.5 255.273438 210.5 255.390625 C 210.5 255.507812 210.59375 255.601562 210.710938 255.601562 C 210.828125 255.601562 210.921875 255.507812 210.921875 255.390625 Z M 210.921875 255.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.617188 256.359375 C 213.617188 256.242188 213.523438 256.148438 213.40625 256.148438 C 213.289062 256.148438 213.195312 256.242188 213.195312 256.359375 C 213.195312 256.476562 213.289062 256.570312 213.40625 256.570312 C 213.523438 256.570312 213.617188 256.476562 213.617188 256.359375 Z M 213.617188 256.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.859375 258.664062 C 215.859375 258.546875 215.765625 258.453125 215.648438 258.453125 C 215.53125 258.453125 215.4375 258.546875 215.4375 258.664062 C 215.4375 258.78125 215.53125 258.875 215.648438 258.875 C 215.765625 258.875 215.859375 258.78125 215.859375 258.664062 Z M 215.859375 258.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.9375 258.683594 C 215.9375 258.566406 215.84375 258.472656 215.726562 258.472656 C 215.609375 258.472656 215.515625 258.566406 215.515625 258.683594 C 215.515625 258.800781 215.609375 258.894531 215.726562 258.894531 C 215.84375 258.894531 215.9375 258.800781 215.9375 258.683594 Z M 215.9375 258.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.335938 258.671875 C 217.335938 258.554688 217.242188 258.460938 217.125 258.460938 C 217.007812 258.460938 216.914062 258.554688 216.914062 258.671875 C 216.914062 258.789062 217.007812 258.882812 217.125 258.882812 C 217.242188 258.882812 217.335938 258.789062 217.335938 258.671875 Z M 217.335938 258.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.457031 257.890625 C 218.457031 257.773438 218.363281 257.679688 218.246094 257.679688 C 218.128906 257.679688 218.035156 257.773438 218.035156 257.890625 C 218.035156 258.007812 218.128906 258.101562 218.246094 258.101562 C 218.363281 258.101562 218.457031 258.007812 218.457031 257.890625 Z M 218.457031 257.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.359375 259.121094 C 218.359375 259.003906 218.265625 258.910156 218.148438 258.910156 C 218.03125 258.910156 217.9375 259.003906 217.9375 259.121094 C 217.9375 259.238281 218.03125 259.332031 218.148438 259.332031 C 218.265625 259.332031 218.359375 259.238281 218.359375 259.121094 Z M 218.359375 259.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.878906 260.324219 C 215.878906 260.207031 215.785156 260.113281 215.667969 260.113281 C 215.550781 260.113281 215.457031 260.207031 215.457031 260.324219 C 215.457031 260.441406 215.550781 260.535156 215.667969 260.535156 C 215.785156 260.535156 215.878906 260.441406 215.878906 260.324219 Z M 215.878906 260.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.183594 264.230469 C 217.183594 264.113281 217.089844 264.019531 216.972656 264.019531 C 216.855469 264.019531 216.761719 264.113281 216.761719 264.230469 C 216.761719 264.347656 216.855469 264.441406 216.972656 264.441406 C 217.089844 264.441406 217.183594 264.347656 217.183594 264.230469 Z M 217.183594 264.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.375 265.925781 C 218.375 265.808594 218.28125 265.714844 218.164062 265.714844 C 218.046875 265.714844 217.953125 265.808594 217.953125 265.925781 C 217.953125 266.042969 218.046875 266.136719 218.164062 266.136719 C 218.28125 266.136719 218.375 266.042969 218.375 265.925781 Z M 218.375 265.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.535156 264.851562 C 216.535156 264.734375 216.441406 264.640625 216.324219 264.640625 C 216.207031 264.640625 216.113281 264.734375 216.113281 264.851562 C 216.113281 264.96875 216.207031 265.0625 216.324219 265.0625 C 216.441406 265.0625 216.535156 264.96875 216.535156 264.851562 Z M 216.535156 264.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.054688 262 C 219.054688 261.882812 218.960938 261.789062 218.84375 261.789062 C 218.726562 261.789062 218.632812 261.882812 218.632812 262 C 218.632812 262.117188 218.726562 262.210938 218.84375 262.210938 C 218.960938 262.210938 219.054688 262.117188 219.054688 262 Z M 219.054688 262 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.386719 261.085938 C 219.386719 260.96875 219.292969 260.875 219.175781 260.875 C 219.058594 260.875 218.964844 260.96875 218.964844 261.085938 C 218.964844 261.203125 219.058594 261.296875 219.175781 261.296875 C 219.292969 261.296875 219.386719 261.203125 219.386719 261.085938 Z M 219.386719 261.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.527344 257.910156 C 218.527344 257.792969 218.433594 257.699219 218.316406 257.699219 C 218.199219 257.699219 218.105469 257.792969 218.105469 257.910156 C 218.105469 258.027344 218.199219 258.121094 218.316406 258.121094 C 218.433594 258.121094 218.527344 258.027344 218.527344 257.910156 Z M 218.527344 257.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.214844 256.367188 C 219.214844 256.25 219.121094 256.15625 219.003906 256.15625 C 218.886719 256.15625 218.792969 256.25 218.792969 256.367188 C 218.792969 256.484375 218.886719 256.578125 219.003906 256.578125 C 219.121094 256.578125 219.214844 256.484375 219.214844 256.367188 Z M 219.214844 256.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.078125 251.957031 C 218.078125 251.839844 217.984375 251.746094 217.867188 251.746094 C 217.75 251.746094 217.65625 251.839844 217.65625 251.957031 C 217.65625 252.074219 217.75 252.167969 217.867188 252.167969 C 217.984375 252.167969 218.078125 252.074219 218.078125 251.957031 Z M 218.078125 251.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.191406 251.308594 C 217.191406 251.191406 217.097656 251.097656 216.980469 251.097656 C 216.863281 251.097656 216.769531 251.191406 216.769531 251.308594 C 216.769531 251.425781 216.863281 251.519531 216.980469 251.519531 C 217.097656 251.519531 217.191406 251.425781 217.191406 251.308594 Z M 217.191406 251.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.683594 251.457031 C 213.683594 251.339844 213.589844 251.246094 213.472656 251.246094 C 213.355469 251.246094 213.261719 251.339844 213.261719 251.457031 C 213.261719 251.574219 213.355469 251.667969 213.472656 251.667969 C 213.589844 251.667969 213.683594 251.574219 213.683594 251.457031 Z M 213.683594 251.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.011719 254.382812 C 215.011719 254.265625 214.917969 254.171875 214.800781 254.171875 C 214.683594 254.171875 214.589844 254.265625 214.589844 254.382812 C 214.589844 254.5 214.683594 254.59375 214.800781 254.59375 C 214.917969 254.59375 215.011719 254.5 215.011719 254.382812 Z M 215.011719 254.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.421875 252.644531 C 214.421875 252.527344 214.328125 252.433594 214.210938 252.433594 C 214.09375 252.433594 214 252.527344 214 252.644531 C 214 252.761719 214.09375 252.855469 214.210938 252.855469 C 214.328125 252.855469 214.421875 252.761719 214.421875 252.644531 Z M 214.421875 252.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.511719 254.695312 C 212.511719 254.578125 212.417969 254.484375 212.300781 254.484375 C 212.183594 254.484375 212.089844 254.578125 212.089844 254.695312 C 212.089844 254.8125 212.183594 254.90625 212.300781 254.90625 C 212.417969 254.90625 212.511719 254.8125 212.511719 254.695312 Z M 212.511719 254.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.855469 253.972656 C 211.855469 253.855469 211.761719 253.761719 211.644531 253.761719 C 211.527344 253.761719 211.433594 253.855469 211.433594 253.972656 C 211.433594 254.089844 211.527344 254.183594 211.644531 254.183594 C 211.761719 254.183594 211.855469 254.089844 211.855469 253.972656 Z M 211.855469 253.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.972656 254.753906 C 207.972656 254.636719 207.878906 254.542969 207.761719 254.542969 C 207.644531 254.542969 207.550781 254.636719 207.550781 254.753906 C 207.550781 254.871094 207.644531 254.964844 207.761719 254.964844 C 207.878906 254.964844 207.972656 254.871094 207.972656 254.753906 Z M 207.972656 254.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.523438 259.914062 C 207.523438 259.796875 207.429688 259.703125 207.3125 259.703125 C 207.195312 259.703125 207.101562 259.796875 207.101562 259.914062 C 207.101562 260.03125 207.195312 260.125 207.3125 260.125 C 207.429688 260.125 207.523438 260.03125 207.523438 259.914062 Z M 207.523438 259.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.640625 256.21875 C 209.640625 256.101562 209.546875 256.007812 209.429688 256.007812 C 209.3125 256.007812 209.21875 256.101562 209.21875 256.21875 C 209.21875 256.335938 209.3125 256.429688 209.429688 256.429688 C 209.546875 256.429688 209.640625 256.335938 209.640625 256.21875 Z M 209.640625 256.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.652344 254.730469 C 206.652344 254.613281 206.558594 254.519531 206.441406 254.519531 C 206.324219 254.519531 206.230469 254.613281 206.230469 254.730469 C 206.230469 254.847656 206.324219 254.941406 206.441406 254.941406 C 206.558594 254.941406 206.652344 254.847656 206.652344 254.730469 Z M 206.652344 254.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.296875 258.632812 C 206.296875 258.515625 206.203125 258.421875 206.085938 258.421875 C 205.96875 258.421875 205.875 258.515625 205.875 258.632812 C 205.875 258.75 205.96875 258.84375 206.085938 258.84375 C 206.203125 258.84375 206.296875 258.75 206.296875 258.632812 Z M 206.296875 258.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.507812 260.042969 C 204.507812 259.925781 204.414062 259.832031 204.296875 259.832031 C 204.179688 259.832031 204.085938 259.925781 204.085938 260.042969 C 204.085938 260.160156 204.179688 260.253906 204.296875 260.253906 C 204.414062 260.253906 204.507812 260.160156 204.507812 260.042969 Z M 204.507812 260.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.90625 260.996094 C 202.90625 260.878906 202.8125 260.785156 202.695312 260.785156 C 202.578125 260.785156 202.484375 260.878906 202.484375 260.996094 C 202.484375 261.113281 202.578125 261.207031 202.695312 261.207031 C 202.8125 261.207031 202.90625 261.113281 202.90625 260.996094 Z M 202.90625 260.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.410156 263.496094 C 205.410156 263.378906 205.316406 263.285156 205.199219 263.285156 C 205.082031 263.285156 204.988281 263.378906 204.988281 263.496094 C 204.988281 263.613281 205.082031 263.707031 205.199219 263.707031 C 205.316406 263.707031 205.410156 263.613281 205.410156 263.496094 Z M 205.410156 263.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.769531 265.753906 C 202.769531 265.636719 202.675781 265.542969 202.558594 265.542969 C 202.441406 265.542969 202.347656 265.636719 202.347656 265.753906 C 202.347656 265.871094 202.441406 265.964844 202.558594 265.964844 C 202.675781 265.964844 202.769531 265.871094 202.769531 265.753906 Z M 202.769531 265.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.324219 267.980469 C 203.324219 267.863281 203.230469 267.769531 203.113281 267.769531 C 202.996094 267.769531 202.902344 267.863281 202.902344 267.980469 C 202.902344 268.097656 202.996094 268.191406 203.113281 268.191406 C 203.230469 268.191406 203.324219 268.097656 203.324219 267.980469 Z M 203.324219 267.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207 267.753906 C 207 267.636719 206.90625 267.542969 206.789062 267.542969 C 206.671875 267.542969 206.578125 267.636719 206.578125 267.753906 C 206.578125 267.871094 206.671875 267.964844 206.789062 267.964844 C 206.90625 267.964844 207 267.871094 207 267.753906 Z M 207 267.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.421875 266.890625 C 206.421875 266.773438 206.328125 266.679688 206.210938 266.679688 C 206.09375 266.679688 206 266.773438 206 266.890625 C 206 267.007812 206.09375 267.101562 206.210938 267.101562 C 206.328125 267.101562 206.421875 267.007812 206.421875 266.890625 Z M 206.421875 266.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.863281 262 C 207.863281 261.882812 207.769531 261.789062 207.652344 261.789062 C 207.535156 261.789062 207.441406 261.882812 207.441406 262 C 207.441406 262.117188 207.535156 262.210938 207.652344 262.210938 C 207.769531 262.210938 207.863281 262.117188 207.863281 262 Z M 207.863281 262 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.523438 264.710938 C 207.523438 264.59375 207.429688 264.5 207.3125 264.5 C 207.195312 264.5 207.101562 264.59375 207.101562 264.710938 C 207.101562 264.828125 207.195312 264.921875 207.3125 264.921875 C 207.429688 264.921875 207.523438 264.828125 207.523438 264.710938 Z M 207.523438 264.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.164062 265.9375 C 209.164062 265.820312 209.070312 265.726562 208.953125 265.726562 C 208.835938 265.726562 208.742188 265.820312 208.742188 265.9375 C 208.742188 266.054688 208.835938 266.148438 208.953125 266.148438 C 209.070312 266.148438 209.164062 266.054688 209.164062 265.9375 Z M 209.164062 265.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.984375 264.878906 C 211.984375 264.761719 211.890625 264.667969 211.773438 264.667969 C 211.65625 264.667969 211.5625 264.761719 211.5625 264.878906 C 211.5625 264.996094 211.65625 265.089844 211.773438 265.089844 C 211.890625 265.089844 211.984375 264.996094 211.984375 264.878906 Z M 211.984375 264.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.40625 267.464844 C 208.40625 267.347656 208.3125 267.253906 208.195312 267.253906 C 208.078125 267.253906 207.984375 267.347656 207.984375 267.464844 C 207.984375 267.582031 208.078125 267.675781 208.195312 267.675781 C 208.3125 267.675781 208.40625 267.582031 208.40625 267.464844 Z M 208.40625 267.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.585938 272.132812 C 205.585938 272.015625 205.492188 271.921875 205.375 271.921875 C 205.257812 271.921875 205.164062 272.015625 205.164062 272.132812 C 205.164062 272.25 205.257812 272.34375 205.375 272.34375 C 205.492188 272.34375 205.585938 272.25 205.585938 272.132812 Z M 205.585938 272.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.429688 268.691406 C 208.429688 268.574219 208.335938 268.480469 208.21875 268.480469 C 208.101562 268.480469 208.007812 268.574219 208.007812 268.691406 C 208.007812 268.808594 208.101562 268.902344 208.21875 268.902344 C 208.335938 268.902344 208.429688 268.808594 208.429688 268.691406 Z M 208.429688 268.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.003906 269.425781 C 208.003906 269.308594 207.910156 269.214844 207.792969 269.214844 C 207.675781 269.214844 207.582031 269.308594 207.582031 269.425781 C 207.582031 269.542969 207.675781 269.636719 207.792969 269.636719 C 207.910156 269.636719 208.003906 269.542969 208.003906 269.425781 Z M 208.003906 269.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.296875 268.609375 C 205.296875 268.492188 205.203125 268.398438 205.085938 268.398438 C 204.96875 268.398438 204.875 268.492188 204.875 268.609375 C 204.875 268.726562 204.96875 268.820312 205.085938 268.820312 C 205.203125 268.820312 205.296875 268.726562 205.296875 268.609375 Z M 205.296875 268.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.714844 268.277344 C 205.714844 268.160156 205.621094 268.066406 205.503906 268.066406 C 205.386719 268.066406 205.292969 268.160156 205.292969 268.277344 C 205.292969 268.394531 205.386719 268.488281 205.503906 268.488281 C 205.621094 268.488281 205.714844 268.394531 205.714844 268.277344 Z M 205.714844 268.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.367188 268.539062 C 205.367188 268.421875 205.273438 268.328125 205.15625 268.328125 C 205.039062 268.328125 204.945312 268.421875 204.945312 268.539062 C 204.945312 268.65625 205.039062 268.75 205.15625 268.75 C 205.273438 268.75 205.367188 268.65625 205.367188 268.539062 Z M 205.367188 268.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.699219 267.304688 C 203.699219 267.1875 203.605469 267.09375 203.488281 267.09375 C 203.371094 267.09375 203.277344 267.1875 203.277344 267.304688 C 203.277344 267.421875 203.371094 267.515625 203.488281 267.515625 C 203.605469 267.515625 203.699219 267.421875 203.699219 267.304688 Z M 203.699219 267.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.964844 265.03125 C 202.964844 264.914062 202.871094 264.820312 202.753906 264.820312 C 202.636719 264.820312 202.542969 264.914062 202.542969 265.03125 C 202.542969 265.148438 202.636719 265.242188 202.753906 265.242188 C 202.871094 265.242188 202.964844 265.148438 202.964844 265.03125 Z M 202.964844 265.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.675781 266.058594 C 200.675781 265.941406 200.582031 265.847656 200.464844 265.847656 C 200.347656 265.847656 200.253906 265.941406 200.253906 266.058594 C 200.253906 266.175781 200.347656 266.269531 200.464844 266.269531 C 200.582031 266.269531 200.675781 266.175781 200.675781 266.058594 Z M 200.675781 266.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.9375 267.609375 C 196.9375 267.492188 196.84375 267.398438 196.726562 267.398438 C 196.609375 267.398438 196.515625 267.492188 196.515625 267.609375 C 196.515625 267.726562 196.609375 267.820312 196.726562 267.820312 C 196.84375 267.820312 196.9375 267.726562 196.9375 267.609375 Z M 196.9375 267.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.964844 270.125 C 193.964844 270.007812 193.871094 269.914062 193.753906 269.914062 C 193.636719 269.914062 193.542969 270.007812 193.542969 270.125 C 193.542969 270.242188 193.636719 270.335938 193.753906 270.335938 C 193.871094 270.335938 193.964844 270.242188 193.964844 270.125 Z M 193.964844 270.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.019531 271.179688 C 198.019531 271.0625 197.925781 270.96875 197.808594 270.96875 C 197.691406 270.96875 197.597656 271.0625 197.597656 271.179688 C 197.597656 271.296875 197.691406 271.390625 197.808594 271.390625 C 197.925781 271.390625 198.019531 271.296875 198.019531 271.179688 Z M 198.019531 271.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.96875 272.96875 C 195.96875 272.851562 195.875 272.757812 195.757812 272.757812 C 195.640625 272.757812 195.546875 272.851562 195.546875 272.96875 C 195.546875 273.085938 195.640625 273.179688 195.757812 273.179688 C 195.875 273.179688 195.96875 273.085938 195.96875 272.96875 Z M 195.96875 272.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.847656 268.828125 C 193.847656 268.710938 193.753906 268.617188 193.636719 268.617188 C 193.519531 268.617188 193.425781 268.710938 193.425781 268.828125 C 193.425781 268.945312 193.519531 269.039062 193.636719 269.039062 C 193.753906 269.039062 193.847656 268.945312 193.847656 268.828125 Z M 193.847656 268.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.980469 266.824219 C 196.980469 266.707031 196.886719 266.613281 196.769531 266.613281 C 196.652344 266.613281 196.558594 266.707031 196.558594 266.824219 C 196.558594 266.941406 196.652344 267.035156 196.769531 267.035156 C 196.886719 267.035156 196.980469 266.941406 196.980469 266.824219 Z M 196.980469 266.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.847656 266.230469 C 195.847656 266.113281 195.753906 266.019531 195.636719 266.019531 C 195.519531 266.019531 195.425781 266.113281 195.425781 266.230469 C 195.425781 266.347656 195.519531 266.441406 195.636719 266.441406 C 195.753906 266.441406 195.847656 266.347656 195.847656 266.230469 Z M 195.847656 266.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.914062 268.3125 C 194.914062 268.195312 194.820312 268.101562 194.703125 268.101562 C 194.585938 268.101562 194.492188 268.195312 194.492188 268.3125 C 194.492188 268.429688 194.585938 268.523438 194.703125 268.523438 C 194.820312 268.523438 194.914062 268.429688 194.914062 268.3125 Z M 194.914062 268.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.441406 267.796875 C 194.441406 267.679688 194.347656 267.585938 194.230469 267.585938 C 194.113281 267.585938 194.019531 267.679688 194.019531 267.796875 C 194.019531 267.914062 194.113281 268.007812 194.230469 268.007812 C 194.347656 268.007812 194.441406 267.914062 194.441406 267.796875 Z M 194.441406 267.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.824219 272.367188 C 191.824219 272.25 191.730469 272.15625 191.613281 272.15625 C 191.496094 272.15625 191.402344 272.25 191.402344 272.367188 C 191.402344 272.484375 191.496094 272.578125 191.613281 272.578125 C 191.730469 272.578125 191.824219 272.484375 191.824219 272.367188 Z M 191.824219 272.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.949219 271.710938 C 192.949219 271.59375 192.855469 271.5 192.738281 271.5 C 192.621094 271.5 192.527344 271.59375 192.527344 271.710938 C 192.527344 271.828125 192.621094 271.921875 192.738281 271.921875 C 192.855469 271.921875 192.949219 271.828125 192.949219 271.710938 Z M 192.949219 271.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.800781 269.585938 C 190.800781 269.46875 190.707031 269.375 190.589844 269.375 C 190.472656 269.375 190.378906 269.46875 190.378906 269.585938 C 190.378906 269.703125 190.472656 269.796875 190.589844 269.796875 C 190.707031 269.796875 190.800781 269.703125 190.800781 269.585938 Z M 190.800781 269.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.453125 266.640625 C 189.453125 266.523438 189.359375 266.429688 189.242188 266.429688 C 189.125 266.429688 189.03125 266.523438 189.03125 266.640625 C 189.03125 266.757812 189.125 266.851562 189.242188 266.851562 C 189.359375 266.851562 189.453125 266.757812 189.453125 266.640625 Z M 189.453125 266.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.414062 264.800781 C 190.414062 264.683594 190.320312 264.589844 190.203125 264.589844 C 190.085938 264.589844 189.992188 264.683594 189.992188 264.800781 C 189.992188 264.917969 190.085938 265.011719 190.203125 265.011719 C 190.320312 265.011719 190.414062 264.917969 190.414062 264.800781 Z M 190.414062 264.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.019531 269.378906 C 193.019531 269.261719 192.925781 269.167969 192.808594 269.167969 C 192.691406 269.167969 192.597656 269.261719 192.597656 269.378906 C 192.597656 269.496094 192.691406 269.589844 192.808594 269.589844 C 192.925781 269.589844 193.019531 269.496094 193.019531 269.378906 Z M 193.019531 269.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.726562 270.4375 C 192.726562 270.320312 192.632812 270.226562 192.515625 270.226562 C 192.398438 270.226562 192.304688 270.320312 192.304688 270.4375 C 192.304688 270.554688 192.398438 270.648438 192.515625 270.648438 C 192.632812 270.648438 192.726562 270.554688 192.726562 270.4375 Z M 192.726562 270.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.589844 269.566406 C 191.589844 269.449219 191.496094 269.355469 191.378906 269.355469 C 191.261719 269.355469 191.167969 269.449219 191.167969 269.566406 C 191.167969 269.683594 191.261719 269.777344 191.378906 269.777344 C 191.496094 269.777344 191.589844 269.683594 191.589844 269.566406 Z M 191.589844 269.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.835938 266.582031 C 191.835938 266.464844 191.742188 266.371094 191.625 266.371094 C 191.507812 266.371094 191.414062 266.464844 191.414062 266.582031 C 191.414062 266.699219 191.507812 266.792969 191.625 266.792969 C 191.742188 266.792969 191.835938 266.699219 191.835938 266.582031 Z M 191.835938 266.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.21875 265.292969 C 189.21875 265.175781 189.125 265.082031 189.007812 265.082031 C 188.890625 265.082031 188.796875 265.175781 188.796875 265.292969 C 188.796875 265.410156 188.890625 265.503906 189.007812 265.503906 C 189.125 265.503906 189.21875 265.410156 189.21875 265.292969 Z M 189.21875 265.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.707031 259.832031 C 191.707031 259.714844 191.613281 259.621094 191.496094 259.621094 C 191.378906 259.621094 191.285156 259.714844 191.285156 259.832031 C 191.285156 259.949219 191.378906 260.042969 191.496094 260.042969 C 191.613281 260.042969 191.707031 259.949219 191.707031 259.832031 Z M 191.707031 259.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.066406 261.226562 C 194.066406 261.109375 193.972656 261.015625 193.855469 261.015625 C 193.738281 261.015625 193.644531 261.109375 193.644531 261.226562 C 193.644531 261.34375 193.738281 261.4375 193.855469 261.4375 C 193.972656 261.4375 194.066406 261.34375 194.066406 261.226562 Z M 194.066406 261.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.507812 263.65625 C 194.507812 263.539062 194.414062 263.445312 194.296875 263.445312 C 194.179688 263.445312 194.085938 263.539062 194.085938 263.65625 C 194.085938 263.773438 194.179688 263.867188 194.296875 263.867188 C 194.414062 263.867188 194.507812 263.773438 194.507812 263.65625 Z M 194.507812 263.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.429688 262.667969 C 197.429688 262.550781 197.335938 262.457031 197.21875 262.457031 C 197.101562 262.457031 197.007812 262.550781 197.007812 262.667969 C 197.007812 262.785156 197.101562 262.878906 197.21875 262.878906 C 197.335938 262.878906 197.429688 262.785156 197.429688 262.667969 Z M 197.429688 262.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.261719 263.355469 C 200.261719 263.238281 200.167969 263.144531 200.050781 263.144531 C 199.933594 263.144531 199.839844 263.238281 199.839844 263.355469 C 199.839844 263.472656 199.933594 263.566406 200.050781 263.566406 C 200.167969 263.566406 200.261719 263.472656 200.261719 263.355469 Z M 200.261719 263.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.082031 261.992188 C 201.082031 261.875 200.988281 261.78125 200.871094 261.78125 C 200.753906 261.78125 200.660156 261.875 200.660156 261.992188 C 200.660156 262.109375 200.753906 262.203125 200.871094 262.203125 C 200.988281 262.203125 201.082031 262.109375 201.082031 261.992188 Z M 201.082031 261.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.21875 261.773438 C 201.21875 261.65625 201.125 261.5625 201.007812 261.5625 C 200.890625 261.5625 200.796875 261.65625 200.796875 261.773438 C 200.796875 261.890625 200.890625 261.984375 201.007812 261.984375 C 201.125 261.984375 201.21875 261.890625 201.21875 261.773438 Z M 201.21875 261.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.054688 262.976562 C 202.054688 262.859375 201.960938 262.765625 201.84375 262.765625 C 201.726562 262.765625 201.632812 262.859375 201.632812 262.976562 C 201.632812 263.09375 201.726562 263.1875 201.84375 263.1875 C 201.960938 263.1875 202.054688 263.09375 202.054688 262.976562 Z M 202.054688 262.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.355469 263.367188 C 202.355469 263.25 202.261719 263.15625 202.144531 263.15625 C 202.027344 263.15625 201.933594 263.25 201.933594 263.367188 C 201.933594 263.484375 202.027344 263.578125 202.144531 263.578125 C 202.261719 263.578125 202.355469 263.484375 202.355469 263.367188 Z M 202.355469 263.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.695312 262.757812 C 199.695312 262.640625 199.601562 262.546875 199.484375 262.546875 C 199.367188 262.546875 199.273438 262.640625 199.273438 262.757812 C 199.273438 262.875 199.367188 262.96875 199.484375 262.96875 C 199.601562 262.96875 199.695312 262.875 199.695312 262.757812 Z M 199.695312 262.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.46875 261.390625 C 201.46875 261.273438 201.375 261.179688 201.257812 261.179688 C 201.140625 261.179688 201.046875 261.273438 201.046875 261.390625 C 201.046875 261.507812 201.140625 261.601562 201.257812 261.601562 C 201.375 261.601562 201.46875 261.507812 201.46875 261.390625 Z M 201.46875 261.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.476562 260.503906 C 199.476562 260.386719 199.382812 260.292969 199.265625 260.292969 C 199.148438 260.292969 199.054688 260.386719 199.054688 260.503906 C 199.054688 260.621094 199.148438 260.714844 199.265625 260.714844 C 199.382812 260.714844 199.476562 260.621094 199.476562 260.503906 Z M 199.476562 260.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.414062 260.699219 C 199.414062 260.582031 199.320312 260.488281 199.203125 260.488281 C 199.085938 260.488281 198.992188 260.582031 198.992188 260.699219 C 198.992188 260.816406 199.085938 260.910156 199.203125 260.910156 C 199.320312 260.910156 199.414062 260.816406 199.414062 260.699219 Z M 199.414062 260.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.488281 260.050781 C 199.488281 259.933594 199.394531 259.839844 199.277344 259.839844 C 199.160156 259.839844 199.066406 259.933594 199.066406 260.050781 C 199.066406 260.167969 199.160156 260.261719 199.277344 260.261719 C 199.394531 260.261719 199.488281 260.167969 199.488281 260.050781 Z M 199.488281 260.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.96875 259.015625 C 197.96875 258.898438 197.875 258.804688 197.757812 258.804688 C 197.640625 258.804688 197.546875 258.898438 197.546875 259.015625 C 197.546875 259.132812 197.640625 259.226562 197.757812 259.226562 C 197.875 259.226562 197.96875 259.132812 197.96875 259.015625 Z M 197.96875 259.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.253906 253.613281 C 196.253906 253.496094 196.160156 253.402344 196.042969 253.402344 C 195.925781 253.402344 195.832031 253.496094 195.832031 253.613281 C 195.832031 253.730469 195.925781 253.824219 196.042969 253.824219 C 196.160156 253.824219 196.253906 253.730469 196.253906 253.613281 Z M 196.253906 253.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.199219 252.730469 C 197.199219 252.613281 197.105469 252.519531 196.988281 252.519531 C 196.871094 252.519531 196.777344 252.613281 196.777344 252.730469 C 196.777344 252.847656 196.871094 252.941406 196.988281 252.941406 C 197.105469 252.941406 197.199219 252.847656 197.199219 252.730469 Z M 197.199219 252.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.152344 249.167969 C 198.152344 249.050781 198.058594 248.957031 197.941406 248.957031 C 197.824219 248.957031 197.730469 249.050781 197.730469 249.167969 C 197.730469 249.285156 197.824219 249.378906 197.941406 249.378906 C 198.058594 249.378906 198.152344 249.285156 198.152344 249.167969 Z M 198.152344 249.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.632812 249.09375 C 200.632812 248.976562 200.539062 248.882812 200.421875 248.882812 C 200.304688 248.882812 200.210938 248.976562 200.210938 249.09375 C 200.210938 249.210938 200.304688 249.304688 200.421875 249.304688 C 200.539062 249.304688 200.632812 249.210938 200.632812 249.09375 Z M 200.632812 249.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.632812 253.371094 C 199.632812 253.253906 199.539062 253.160156 199.421875 253.160156 C 199.304688 253.160156 199.210938 253.253906 199.210938 253.371094 C 199.210938 253.488281 199.304688 253.582031 199.421875 253.582031 C 199.539062 253.582031 199.632812 253.488281 199.632812 253.371094 Z M 199.632812 253.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.082031 254.574219 C 197.082031 254.457031 196.988281 254.363281 196.871094 254.363281 C 196.753906 254.363281 196.660156 254.457031 196.660156 254.574219 C 196.660156 254.691406 196.753906 254.785156 196.871094 254.785156 C 196.988281 254.785156 197.082031 254.691406 197.082031 254.574219 Z M 197.082031 254.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.554688 259.324219 C 196.554688 259.207031 196.460938 259.113281 196.34375 259.113281 C 196.226562 259.113281 196.132812 259.207031 196.132812 259.324219 C 196.132812 259.441406 196.226562 259.535156 196.34375 259.535156 C 196.460938 259.535156 196.554688 259.441406 196.554688 259.324219 Z M 196.554688 259.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.179688 258.8125 C 196.179688 258.695312 196.085938 258.601562 195.96875 258.601562 C 195.851562 258.601562 195.757812 258.695312 195.757812 258.8125 C 195.757812 258.929688 195.851562 259.023438 195.96875 259.023438 C 196.085938 259.023438 196.179688 258.929688 196.179688 258.8125 Z M 196.179688 258.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.019531 259.421875 C 199.019531 259.304688 198.925781 259.210938 198.808594 259.210938 C 198.691406 259.210938 198.597656 259.304688 198.597656 259.421875 C 198.597656 259.539062 198.691406 259.632812 198.808594 259.632812 C 198.925781 259.632812 199.019531 259.539062 199.019531 259.421875 Z M 199.019531 259.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.929688 260.289062 C 198.929688 260.171875 198.835938 260.078125 198.71875 260.078125 C 198.601562 260.078125 198.507812 260.171875 198.507812 260.289062 C 198.507812 260.40625 198.601562 260.5 198.71875 260.5 C 198.835938 260.5 198.929688 260.40625 198.929688 260.289062 Z M 198.929688 260.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.15625 259.097656 C 200.15625 258.980469 200.0625 258.886719 199.945312 258.886719 C 199.828125 258.886719 199.734375 258.980469 199.734375 259.097656 C 199.734375 259.214844 199.828125 259.308594 199.945312 259.308594 C 200.0625 259.308594 200.15625 259.214844 200.15625 259.097656 Z M 200.15625 259.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.773438 258.855469 C 202.773438 258.738281 202.679688 258.644531 202.5625 258.644531 C 202.445312 258.644531 202.351562 258.738281 202.351562 258.855469 C 202.351562 258.972656 202.445312 259.066406 202.5625 259.066406 C 202.679688 259.066406 202.773438 258.972656 202.773438 258.855469 Z M 202.773438 258.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.183594 260.199219 C 203.183594 260.082031 203.089844 259.988281 202.972656 259.988281 C 202.855469 259.988281 202.761719 260.082031 202.761719 260.199219 C 202.761719 260.316406 202.855469 260.410156 202.972656 260.410156 C 203.089844 260.410156 203.183594 260.316406 203.183594 260.199219 Z M 203.183594 260.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.042969 263.980469 C 208.042969 263.863281 207.949219 263.769531 207.832031 263.769531 C 207.714844 263.769531 207.621094 263.863281 207.621094 263.980469 C 207.621094 264.097656 207.714844 264.191406 207.832031 264.191406 C 207.949219 264.191406 208.042969 264.097656 208.042969 263.980469 Z M 208.042969 263.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.097656 262.070312 C 207.097656 261.953125 207.003906 261.859375 206.886719 261.859375 C 206.769531 261.859375 206.675781 261.953125 206.675781 262.070312 C 206.675781 262.1875 206.769531 262.28125 206.886719 262.28125 C 207.003906 262.28125 207.097656 262.1875 207.097656 262.070312 Z M 207.097656 262.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.152344 262.988281 C 205.152344 262.871094 205.058594 262.777344 204.941406 262.777344 C 204.824219 262.777344 204.730469 262.871094 204.730469 262.988281 C 204.730469 263.105469 204.824219 263.199219 204.941406 263.199219 C 205.058594 263.199219 205.152344 263.105469 205.152344 262.988281 Z M 205.152344 262.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.753906 260.105469 C 204.753906 259.988281 204.660156 259.894531 204.542969 259.894531 C 204.425781 259.894531 204.332031 259.988281 204.332031 260.105469 C 204.332031 260.222656 204.425781 260.316406 204.542969 260.316406 C 204.660156 260.316406 204.753906 260.222656 204.753906 260.105469 Z M 204.753906 260.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.242188 262.09375 C 203.242188 261.976562 203.148438 261.882812 203.03125 261.882812 C 202.914062 261.882812 202.820312 261.976562 202.820312 262.09375 C 202.820312 262.210938 202.914062 262.304688 203.03125 262.304688 C 203.148438 262.304688 203.242188 262.210938 203.242188 262.09375 Z M 203.242188 262.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.617188 263.152344 C 200.617188 263.035156 200.523438 262.941406 200.40625 262.941406 C 200.289062 262.941406 200.195312 263.035156 200.195312 263.152344 C 200.195312 263.269531 200.289062 263.363281 200.40625 263.363281 C 200.523438 263.363281 200.617188 263.269531 200.617188 263.152344 Z M 200.617188 263.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.773438 262.949219 C 200.773438 262.832031 200.679688 262.738281 200.5625 262.738281 C 200.445312 262.738281 200.351562 262.832031 200.351562 262.949219 C 200.351562 263.066406 200.445312 263.160156 200.5625 263.160156 C 200.679688 263.160156 200.773438 263.066406 200.773438 262.949219 Z M 200.773438 262.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.101562 264.371094 C 199.101562 264.253906 199.007812 264.160156 198.890625 264.160156 C 198.773438 264.160156 198.679688 264.253906 198.679688 264.371094 C 198.679688 264.488281 198.773438 264.582031 198.890625 264.582031 C 199.007812 264.582031 199.101562 264.488281 199.101562 264.371094 Z M 199.101562 264.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.320312 261.902344 C 197.320312 261.785156 197.226562 261.691406 197.109375 261.691406 C 196.992188 261.691406 196.898438 261.785156 196.898438 261.902344 C 196.898438 262.019531 196.992188 262.113281 197.109375 262.113281 C 197.226562 262.113281 197.320312 262.019531 197.320312 261.902344 Z M 197.320312 261.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.015625 258.613281 C 197.015625 258.496094 196.921875 258.402344 196.804688 258.402344 C 196.6875 258.402344 196.59375 258.496094 196.59375 258.613281 C 196.59375 258.730469 196.6875 258.824219 196.804688 258.824219 C 196.921875 258.824219 197.015625 258.730469 197.015625 258.613281 Z M 197.015625 258.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.195312 257.652344 C 199.195312 257.535156 199.101562 257.441406 198.984375 257.441406 C 198.867188 257.441406 198.773438 257.535156 198.773438 257.652344 C 198.773438 257.769531 198.867188 257.863281 198.984375 257.863281 C 199.101562 257.863281 199.195312 257.769531 199.195312 257.652344 Z M 199.195312 257.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.621094 257.78125 C 195.621094 257.664062 195.527344 257.570312 195.410156 257.570312 C 195.292969 257.570312 195.199219 257.664062 195.199219 257.78125 C 195.199219 257.898438 195.292969 257.992188 195.410156 257.992188 C 195.527344 257.992188 195.621094 257.898438 195.621094 257.78125 Z M 195.621094 257.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.292969 258.320312 C 198.292969 258.203125 198.199219 258.109375 198.082031 258.109375 C 197.964844 258.109375 197.871094 258.203125 197.871094 258.320312 C 197.871094 258.4375 197.964844 258.53125 198.082031 258.53125 C 198.199219 258.53125 198.292969 258.4375 198.292969 258.320312 Z M 198.292969 258.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.761719 257.957031 C 200.761719 257.839844 200.667969 257.746094 200.550781 257.746094 C 200.433594 257.746094 200.339844 257.839844 200.339844 257.957031 C 200.339844 258.074219 200.433594 258.167969 200.550781 258.167969 C 200.667969 258.167969 200.761719 258.074219 200.761719 257.957031 Z M 200.761719 257.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.34375 260.933594 C 196.34375 260.816406 196.25 260.722656 196.132812 260.722656 C 196.015625 260.722656 195.921875 260.816406 195.921875 260.933594 C 195.921875 261.050781 196.015625 261.144531 196.132812 261.144531 C 196.25 261.144531 196.34375 261.050781 196.34375 260.933594 Z M 196.34375 260.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.738281 261.429688 C 197.738281 261.3125 197.644531 261.21875 197.527344 261.21875 C 197.410156 261.21875 197.316406 261.3125 197.316406 261.429688 C 197.316406 261.546875 197.410156 261.640625 197.527344 261.640625 C 197.644531 261.640625 197.738281 261.546875 197.738281 261.429688 Z M 197.738281 261.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.898438 259.230469 C 202.898438 259.113281 202.804688 259.019531 202.6875 259.019531 C 202.570312 259.019531 202.476562 259.113281 202.476562 259.230469 C 202.476562 259.347656 202.570312 259.441406 202.6875 259.441406 C 202.804688 259.441406 202.898438 259.347656 202.898438 259.230469 Z M 202.898438 259.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.253906 258.820312 C 201.253906 258.703125 201.160156 258.609375 201.042969 258.609375 C 200.925781 258.609375 200.832031 258.703125 200.832031 258.820312 C 200.832031 258.9375 200.925781 259.03125 201.042969 259.03125 C 201.160156 259.03125 201.253906 258.9375 201.253906 258.820312 Z M 201.253906 258.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.503906 259.859375 C 201.503906 259.742188 201.410156 259.648438 201.292969 259.648438 C 201.175781 259.648438 201.082031 259.742188 201.082031 259.859375 C 201.082031 259.976562 201.175781 260.070312 201.292969 260.070312 C 201.410156 260.070312 201.503906 259.976562 201.503906 259.859375 Z M 201.503906 259.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.472656 259.984375 C 201.472656 259.867188 201.378906 259.773438 201.261719 259.773438 C 201.144531 259.773438 201.050781 259.867188 201.050781 259.984375 C 201.050781 260.101562 201.144531 260.195312 201.261719 260.195312 C 201.378906 260.195312 201.472656 260.101562 201.472656 259.984375 Z M 201.472656 259.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.839844 258.15625 C 200.839844 258.039062 200.746094 257.945312 200.628906 257.945312 C 200.511719 257.945312 200.417969 258.039062 200.417969 258.15625 C 200.417969 258.273438 200.511719 258.367188 200.628906 258.367188 C 200.746094 258.367188 200.839844 258.273438 200.839844 258.15625 Z M 200.839844 258.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.105469 259.058594 C 203.105469 258.941406 203.011719 258.847656 202.894531 258.847656 C 202.777344 258.847656 202.683594 258.941406 202.683594 259.058594 C 202.683594 259.175781 202.777344 259.269531 202.894531 259.269531 C 203.011719 259.269531 203.105469 259.175781 203.105469 259.058594 Z M 203.105469 259.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.804688 259.359375 C 200.804688 259.242188 200.710938 259.148438 200.59375 259.148438 C 200.476562 259.148438 200.382812 259.242188 200.382812 259.359375 C 200.382812 259.476562 200.476562 259.570312 200.59375 259.570312 C 200.710938 259.570312 200.804688 259.476562 200.804688 259.359375 Z M 200.804688 259.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.34375 255.417969 C 200.34375 255.300781 200.25 255.207031 200.132812 255.207031 C 200.015625 255.207031 199.921875 255.300781 199.921875 255.417969 C 199.921875 255.535156 200.015625 255.628906 200.132812 255.628906 C 200.25 255.628906 200.34375 255.535156 200.34375 255.417969 Z M 200.34375 255.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.417969 254.988281 C 199.417969 254.871094 199.324219 254.777344 199.207031 254.777344 C 199.089844 254.777344 198.996094 254.871094 198.996094 254.988281 C 198.996094 255.105469 199.089844 255.199219 199.207031 255.199219 C 199.324219 255.199219 199.417969 255.105469 199.417969 254.988281 Z M 199.417969 254.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.300781 253.265625 C 197.300781 253.148438 197.207031 253.054688 197.089844 253.054688 C 196.972656 253.054688 196.878906 253.148438 196.878906 253.265625 C 196.878906 253.382812 196.972656 253.476562 197.089844 253.476562 C 197.207031 253.476562 197.300781 253.382812 197.300781 253.265625 Z M 197.300781 253.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.523438 252.917969 C 196.523438 252.800781 196.429688 252.707031 196.3125 252.707031 C 196.195312 252.707031 196.101562 252.800781 196.101562 252.917969 C 196.101562 253.035156 196.195312 253.128906 196.3125 253.128906 C 196.429688 253.128906 196.523438 253.035156 196.523438 252.917969 Z M 196.523438 252.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.765625 254.769531 C 196.765625 254.652344 196.671875 254.558594 196.554688 254.558594 C 196.4375 254.558594 196.34375 254.652344 196.34375 254.769531 C 196.34375 254.886719 196.4375 254.980469 196.554688 254.980469 C 196.671875 254.980469 196.765625 254.886719 196.765625 254.769531 Z M 196.765625 254.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.285156 253.007812 C 196.285156 252.890625 196.191406 252.796875 196.074219 252.796875 C 195.957031 252.796875 195.863281 252.890625 195.863281 253.007812 C 195.863281 253.125 195.957031 253.21875 196.074219 253.21875 C 196.191406 253.21875 196.285156 253.125 196.285156 253.007812 Z M 196.285156 253.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.738281 252.222656 C 196.738281 252.105469 196.644531 252.011719 196.527344 252.011719 C 196.410156 252.011719 196.316406 252.105469 196.316406 252.222656 C 196.316406 252.339844 196.410156 252.433594 196.527344 252.433594 C 196.644531 252.433594 196.738281 252.339844 196.738281 252.222656 Z M 196.738281 252.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.597656 255.222656 C 195.597656 255.105469 195.503906 255.011719 195.386719 255.011719 C 195.269531 255.011719 195.175781 255.105469 195.175781 255.222656 C 195.175781 255.339844 195.269531 255.433594 195.386719 255.433594 C 195.503906 255.433594 195.597656 255.339844 195.597656 255.222656 Z M 195.597656 255.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.628906 257.285156 C 198.628906 257.167969 198.535156 257.074219 198.417969 257.074219 C 198.300781 257.074219 198.207031 257.167969 198.207031 257.285156 C 198.207031 257.402344 198.300781 257.496094 198.417969 257.496094 C 198.535156 257.496094 198.628906 257.402344 198.628906 257.285156 Z M 198.628906 257.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.257812 259.707031 C 199.257812 259.589844 199.164062 259.496094 199.046875 259.496094 C 198.929688 259.496094 198.835938 259.589844 198.835938 259.707031 C 198.835938 259.824219 198.929688 259.917969 199.046875 259.917969 C 199.164062 259.917969 199.257812 259.824219 199.257812 259.707031 Z M 199.257812 259.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.320312 259.476562 C 199.320312 259.359375 199.226562 259.265625 199.109375 259.265625 C 198.992188 259.265625 198.898438 259.359375 198.898438 259.476562 C 198.898438 259.59375 198.992188 259.6875 199.109375 259.6875 C 199.226562 259.6875 199.320312 259.59375 199.320312 259.476562 Z M 199.320312 259.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.667969 261.644531 C 202.667969 261.527344 202.574219 261.433594 202.457031 261.433594 C 202.339844 261.433594 202.246094 261.527344 202.246094 261.644531 C 202.246094 261.761719 202.339844 261.855469 202.457031 261.855469 C 202.574219 261.855469 202.667969 261.761719 202.667969 261.644531 Z M 202.667969 261.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.515625 262.773438 C 204.515625 262.65625 204.421875 262.5625 204.304688 262.5625 C 204.1875 262.5625 204.09375 262.65625 204.09375 262.773438 C 204.09375 262.890625 204.1875 262.984375 204.304688 262.984375 C 204.421875 262.984375 204.515625 262.890625 204.515625 262.773438 Z M 204.515625 262.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.546875 262.1875 C 204.546875 262.070312 204.453125 261.976562 204.335938 261.976562 C 204.21875 261.976562 204.125 262.070312 204.125 262.1875 C 204.125 262.304688 204.21875 262.398438 204.335938 262.398438 C 204.453125 262.398438 204.546875 262.304688 204.546875 262.1875 Z M 204.546875 262.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.757812 261.578125 C 203.757812 261.460938 203.664062 261.367188 203.546875 261.367188 C 203.429688 261.367188 203.335938 261.460938 203.335938 261.578125 C 203.335938 261.695312 203.429688 261.789062 203.546875 261.789062 C 203.664062 261.789062 203.757812 261.695312 203.757812 261.578125 Z M 203.757812 261.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.105469 261.371094 C 201.105469 261.253906 201.011719 261.160156 200.894531 261.160156 C 200.777344 261.160156 200.683594 261.253906 200.683594 261.371094 C 200.683594 261.488281 200.777344 261.582031 200.894531 261.582031 C 201.011719 261.582031 201.105469 261.488281 201.105469 261.371094 Z M 201.105469 261.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.734375 260.996094 C 201.734375 260.878906 201.640625 260.785156 201.523438 260.785156 C 201.40625 260.785156 201.3125 260.878906 201.3125 260.996094 C 201.3125 261.113281 201.40625 261.207031 201.523438 261.207031 C 201.640625 261.207031 201.734375 261.113281 201.734375 260.996094 Z M 201.734375 260.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.878906 258.597656 C 201.878906 258.480469 201.785156 258.386719 201.667969 258.386719 C 201.550781 258.386719 201.457031 258.480469 201.457031 258.597656 C 201.457031 258.714844 201.550781 258.808594 201.667969 258.808594 C 201.785156 258.808594 201.878906 258.714844 201.878906 258.597656 Z M 201.878906 258.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.839844 262.855469 C 201.839844 262.738281 201.746094 262.644531 201.628906 262.644531 C 201.511719 262.644531 201.417969 262.738281 201.417969 262.855469 C 201.417969 262.972656 201.511719 263.066406 201.628906 263.066406 C 201.746094 263.066406 201.839844 262.972656 201.839844 262.855469 Z M 201.839844 262.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.9375 264.609375 C 198.9375 264.492188 198.84375 264.398438 198.726562 264.398438 C 198.609375 264.398438 198.515625 264.492188 198.515625 264.609375 C 198.515625 264.726562 198.609375 264.820312 198.726562 264.820312 C 198.84375 264.820312 198.9375 264.726562 198.9375 264.609375 Z M 198.9375 264.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.65625 264.253906 C 199.65625 264.136719 199.5625 264.042969 199.445312 264.042969 C 199.328125 264.042969 199.234375 264.136719 199.234375 264.253906 C 199.234375 264.371094 199.328125 264.464844 199.445312 264.464844 C 199.5625 264.464844 199.65625 264.371094 199.65625 264.253906 Z M 199.65625 264.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.449219 267.074219 C 199.449219 266.957031 199.355469 266.863281 199.238281 266.863281 C 199.121094 266.863281 199.027344 266.957031 199.027344 267.074219 C 199.027344 267.191406 199.121094 267.285156 199.238281 267.285156 C 199.355469 267.285156 199.449219 267.191406 199.449219 267.074219 Z M 199.449219 267.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.328125 264.957031 C 201.328125 264.839844 201.234375 264.746094 201.117188 264.746094 C 201 264.746094 200.90625 264.839844 200.90625 264.957031 C 200.90625 265.074219 201 265.167969 201.117188 265.167969 C 201.234375 265.167969 201.328125 265.074219 201.328125 264.957031 Z M 201.328125 264.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.886719 263.011719 C 198.886719 262.894531 198.792969 262.800781 198.675781 262.800781 C 198.558594 262.800781 198.464844 262.894531 198.464844 263.011719 C 198.464844 263.128906 198.558594 263.222656 198.675781 263.222656 C 198.792969 263.222656 198.886719 263.128906 198.886719 263.011719 Z M 198.886719 263.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.136719 264.886719 C 199.136719 264.769531 199.042969 264.675781 198.925781 264.675781 C 198.808594 264.675781 198.714844 264.769531 198.714844 264.886719 C 198.714844 265.003906 198.808594 265.097656 198.925781 265.097656 C 199.042969 265.097656 199.136719 265.003906 199.136719 264.886719 Z M 199.136719 264.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.917969 263.042969 C 196.917969 262.925781 196.824219 262.832031 196.707031 262.832031 C 196.589844 262.832031 196.496094 262.925781 196.496094 263.042969 C 196.496094 263.160156 196.589844 263.253906 196.707031 263.253906 C 196.824219 263.253906 196.917969 263.160156 196.917969 263.042969 Z M 196.917969 263.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.464844 260.632812 C 197.464844 260.515625 197.371094 260.421875 197.253906 260.421875 C 197.136719 260.421875 197.042969 260.515625 197.042969 260.632812 C 197.042969 260.75 197.136719 260.84375 197.253906 260.84375 C 197.371094 260.84375 197.464844 260.75 197.464844 260.632812 Z M 197.464844 260.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.921875 255.113281 C 200.921875 254.996094 200.828125 254.902344 200.710938 254.902344 C 200.59375 254.902344 200.5 254.996094 200.5 255.113281 C 200.5 255.230469 200.59375 255.324219 200.710938 255.324219 C 200.828125 255.324219 200.921875 255.230469 200.921875 255.113281 Z M 200.921875 255.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.355469 256.0625 C 205.355469 255.945312 205.261719 255.851562 205.144531 255.851562 C 205.027344 255.851562 204.933594 255.945312 204.933594 256.0625 C 204.933594 256.179688 205.027344 256.273438 205.144531 256.273438 C 205.261719 256.273438 205.355469 256.179688 205.355469 256.0625 Z M 205.355469 256.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.90625 254.121094 C 203.90625 254.003906 203.8125 253.910156 203.695312 253.910156 C 203.578125 253.910156 203.484375 254.003906 203.484375 254.121094 C 203.484375 254.238281 203.578125 254.332031 203.695312 254.332031 C 203.8125 254.332031 203.90625 254.238281 203.90625 254.121094 Z M 203.90625 254.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.679688 255.523438 C 204.679688 255.40625 204.585938 255.3125 204.46875 255.3125 C 204.351562 255.3125 204.257812 255.40625 204.257812 255.523438 C 204.257812 255.640625 204.351562 255.734375 204.46875 255.734375 C 204.585938 255.734375 204.679688 255.640625 204.679688 255.523438 Z M 204.679688 255.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.730469 254.046875 C 205.730469 253.929688 205.636719 253.835938 205.519531 253.835938 C 205.402344 253.835938 205.308594 253.929688 205.308594 254.046875 C 205.308594 254.164062 205.402344 254.257812 205.519531 254.257812 C 205.636719 254.257812 205.730469 254.164062 205.730469 254.046875 Z M 205.730469 254.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.148438 253.03125 C 207.148438 252.914062 207.054688 252.820312 206.9375 252.820312 C 206.820312 252.820312 206.726562 252.914062 206.726562 253.03125 C 206.726562 253.148438 206.820312 253.242188 206.9375 253.242188 C 207.054688 253.242188 207.148438 253.148438 207.148438 253.03125 Z M 207.148438 253.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.53125 249.734375 C 206.53125 249.617188 206.4375 249.523438 206.320312 249.523438 C 206.203125 249.523438 206.109375 249.617188 206.109375 249.734375 C 206.109375 249.851562 206.203125 249.945312 206.320312 249.945312 C 206.4375 249.945312 206.53125 249.851562 206.53125 249.734375 Z M 206.53125 249.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.570312 249.097656 C 204.570312 248.980469 204.476562 248.886719 204.359375 248.886719 C 204.242188 248.886719 204.148438 248.980469 204.148438 249.097656 C 204.148438 249.214844 204.242188 249.308594 204.359375 249.308594 C 204.476562 249.308594 204.570312 249.214844 204.570312 249.097656 Z M 204.570312 249.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.242188 249.148438 C 205.242188 249.03125 205.148438 248.9375 205.03125 248.9375 C 204.914062 248.9375 204.820312 249.03125 204.820312 249.148438 C 204.820312 249.265625 204.914062 249.359375 205.03125 249.359375 C 205.148438 249.359375 205.242188 249.265625 205.242188 249.148438 Z M 205.242188 249.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.351562 246.960938 C 204.351562 246.84375 204.257812 246.75 204.140625 246.75 C 204.023438 246.75 203.929688 246.84375 203.929688 246.960938 C 203.929688 247.078125 204.023438 247.171875 204.140625 247.171875 C 204.257812 247.171875 204.351562 247.078125 204.351562 246.960938 Z M 204.351562 246.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.8125 248.171875 C 204.8125 248.054688 204.71875 247.960938 204.601562 247.960938 C 204.484375 247.960938 204.390625 248.054688 204.390625 248.171875 C 204.390625 248.289062 204.484375 248.382812 204.601562 248.382812 C 204.71875 248.382812 204.8125 248.289062 204.8125 248.171875 Z M 204.8125 248.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.550781 247.378906 C 203.550781 247.261719 203.457031 247.167969 203.339844 247.167969 C 203.222656 247.167969 203.128906 247.261719 203.128906 247.378906 C 203.128906 247.496094 203.222656 247.589844 203.339844 247.589844 C 203.457031 247.589844 203.550781 247.496094 203.550781 247.378906 Z M 203.550781 247.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.515625 243.226562 C 203.515625 243.109375 203.421875 243.015625 203.304688 243.015625 C 203.1875 243.015625 203.09375 243.109375 203.09375 243.226562 C 203.09375 243.34375 203.1875 243.4375 203.304688 243.4375 C 203.421875 243.4375 203.515625 243.34375 203.515625 243.226562 Z M 203.515625 243.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.738281 243.65625 C 204.738281 243.539062 204.644531 243.445312 204.527344 243.445312 C 204.410156 243.445312 204.316406 243.539062 204.316406 243.65625 C 204.316406 243.773438 204.410156 243.867188 204.527344 243.867188 C 204.644531 243.867188 204.738281 243.773438 204.738281 243.65625 Z M 204.738281 243.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.898438 244.039062 C 201.898438 243.921875 201.804688 243.828125 201.6875 243.828125 C 201.570312 243.828125 201.476562 243.921875 201.476562 244.039062 C 201.476562 244.15625 201.570312 244.25 201.6875 244.25 C 201.804688 244.25 201.898438 244.15625 201.898438 244.039062 Z M 201.898438 244.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.1875 244.457031 C 199.1875 244.339844 199.09375 244.246094 198.976562 244.246094 C 198.859375 244.246094 198.765625 244.339844 198.765625 244.457031 C 198.765625 244.574219 198.859375 244.667969 198.976562 244.667969 C 199.09375 244.667969 199.1875 244.574219 199.1875 244.457031 Z M 199.1875 244.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.289062 243.851562 C 199.289062 243.734375 199.195312 243.640625 199.078125 243.640625 C 198.960938 243.640625 198.867188 243.734375 198.867188 243.851562 C 198.867188 243.96875 198.960938 244.0625 199.078125 244.0625 C 199.195312 244.0625 199.289062 243.96875 199.289062 243.851562 Z M 199.289062 243.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.34375 242.113281 C 201.34375 241.996094 201.25 241.902344 201.132812 241.902344 C 201.015625 241.902344 200.921875 241.996094 200.921875 242.113281 C 200.921875 242.230469 201.015625 242.324219 201.132812 242.324219 C 201.25 242.324219 201.34375 242.230469 201.34375 242.113281 Z M 201.34375 242.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.679688 240.183594 C 203.679688 240.066406 203.585938 239.972656 203.46875 239.972656 C 203.351562 239.972656 203.257812 240.066406 203.257812 240.183594 C 203.257812 240.300781 203.351562 240.394531 203.46875 240.394531 C 203.585938 240.394531 203.679688 240.300781 203.679688 240.183594 Z M 203.679688 240.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.179688 239.511719 C 208.179688 239.394531 208.085938 239.300781 207.96875 239.300781 C 207.851562 239.300781 207.757812 239.394531 207.757812 239.511719 C 207.757812 239.628906 207.851562 239.722656 207.96875 239.722656 C 208.085938 239.722656 208.179688 239.628906 208.179688 239.511719 Z M 208.179688 239.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.089844 243.335938 C 209.089844 243.21875 208.996094 243.125 208.878906 243.125 C 208.761719 243.125 208.667969 243.21875 208.667969 243.335938 C 208.667969 243.453125 208.761719 243.546875 208.878906 243.546875 C 208.996094 243.546875 209.089844 243.453125 209.089844 243.335938 Z M 209.089844 243.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.882812 245.09375 C 207.882812 244.976562 207.789062 244.882812 207.671875 244.882812 C 207.554688 244.882812 207.460938 244.976562 207.460938 245.09375 C 207.460938 245.210938 207.554688 245.304688 207.671875 245.304688 C 207.789062 245.304688 207.882812 245.210938 207.882812 245.09375 Z M 207.882812 245.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.621094 244.035156 C 206.621094 243.917969 206.527344 243.824219 206.410156 243.824219 C 206.292969 243.824219 206.199219 243.917969 206.199219 244.035156 C 206.199219 244.152344 206.292969 244.246094 206.410156 244.246094 C 206.527344 244.246094 206.621094 244.152344 206.621094 244.035156 Z M 206.621094 244.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.175781 242.511719 C 207.175781 242.394531 207.082031 242.300781 206.964844 242.300781 C 206.847656 242.300781 206.753906 242.394531 206.753906 242.511719 C 206.753906 242.628906 206.847656 242.722656 206.964844 242.722656 C 207.082031 242.722656 207.175781 242.628906 207.175781 242.511719 Z M 207.175781 242.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.6875 243.257812 C 207.6875 243.140625 207.59375 243.046875 207.476562 243.046875 C 207.359375 243.046875 207.265625 243.140625 207.265625 243.257812 C 207.265625 243.375 207.359375 243.46875 207.476562 243.46875 C 207.59375 243.46875 207.6875 243.375 207.6875 243.257812 Z M 207.6875 243.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.5 242.285156 C 207.5 242.167969 207.40625 242.074219 207.289062 242.074219 C 207.171875 242.074219 207.078125 242.167969 207.078125 242.285156 C 207.078125 242.402344 207.171875 242.496094 207.289062 242.496094 C 207.40625 242.496094 207.5 242.402344 207.5 242.285156 Z M 207.5 242.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.546875 241.589844 C 208.546875 241.472656 208.453125 241.378906 208.335938 241.378906 C 208.21875 241.378906 208.125 241.472656 208.125 241.589844 C 208.125 241.707031 208.21875 241.800781 208.335938 241.800781 C 208.453125 241.800781 208.546875 241.707031 208.546875 241.589844 Z M 208.546875 241.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.792969 244.613281 C 207.792969 244.496094 207.699219 244.402344 207.582031 244.402344 C 207.464844 244.402344 207.371094 244.496094 207.371094 244.613281 C 207.371094 244.730469 207.464844 244.824219 207.582031 244.824219 C 207.699219 244.824219 207.792969 244.730469 207.792969 244.613281 Z M 207.792969 244.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.394531 244.21875 C 206.394531 244.101562 206.300781 244.007812 206.183594 244.007812 C 206.066406 244.007812 205.972656 244.101562 205.972656 244.21875 C 205.972656 244.335938 206.066406 244.429688 206.183594 244.429688 C 206.300781 244.429688 206.394531 244.335938 206.394531 244.21875 Z M 206.394531 244.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.414062 241.886719 C 207.414062 241.769531 207.320312 241.675781 207.203125 241.675781 C 207.085938 241.675781 206.992188 241.769531 206.992188 241.886719 C 206.992188 242.003906 207.085938 242.097656 207.203125 242.097656 C 207.320312 242.097656 207.414062 242.003906 207.414062 241.886719 Z M 207.414062 241.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.640625 239.148438 C 207.640625 239.03125 207.546875 238.9375 207.429688 238.9375 C 207.3125 238.9375 207.21875 239.03125 207.21875 239.148438 C 207.21875 239.265625 207.3125 239.359375 207.429688 239.359375 C 207.546875 239.359375 207.640625 239.265625 207.640625 239.148438 Z M 207.640625 239.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.972656 237.242188 C 205.972656 237.125 205.878906 237.03125 205.761719 237.03125 C 205.644531 237.03125 205.550781 237.125 205.550781 237.242188 C 205.550781 237.359375 205.644531 237.453125 205.761719 237.453125 C 205.878906 237.453125 205.972656 237.359375 205.972656 237.242188 Z M 205.972656 237.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.226562 231.976562 C 203.226562 231.859375 203.132812 231.765625 203.015625 231.765625 C 202.898438 231.765625 202.804688 231.859375 202.804688 231.976562 C 202.804688 232.09375 202.898438 232.1875 203.015625 232.1875 C 203.132812 232.1875 203.226562 232.09375 203.226562 231.976562 Z M 203.226562 231.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.355469 230.335938 C 203.355469 230.21875 203.261719 230.125 203.144531 230.125 C 203.027344 230.125 202.933594 230.21875 202.933594 230.335938 C 202.933594 230.453125 203.027344 230.546875 203.144531 230.546875 C 203.261719 230.546875 203.355469 230.453125 203.355469 230.335938 Z M 203.355469 230.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.765625 229.898438 C 201.765625 229.78125 201.671875 229.6875 201.554688 229.6875 C 201.4375 229.6875 201.34375 229.78125 201.34375 229.898438 C 201.34375 230.015625 201.4375 230.109375 201.554688 230.109375 C 201.671875 230.109375 201.765625 230.015625 201.765625 229.898438 Z M 201.765625 229.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.417969 231.28125 C 202.417969 231.164062 202.324219 231.070312 202.207031 231.070312 C 202.089844 231.070312 201.996094 231.164062 201.996094 231.28125 C 201.996094 231.398438 202.089844 231.492188 202.207031 231.492188 C 202.324219 231.492188 202.417969 231.398438 202.417969 231.28125 Z M 202.417969 231.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.363281 233.796875 C 202.363281 233.679688 202.269531 233.585938 202.152344 233.585938 C 202.035156 233.585938 201.941406 233.679688 201.941406 233.796875 C 201.941406 233.914062 202.035156 234.007812 202.152344 234.007812 C 202.269531 234.007812 202.363281 233.914062 202.363281 233.796875 Z M 202.363281 233.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.175781 234.566406 C 200.175781 234.449219 200.082031 234.355469 199.964844 234.355469 C 199.847656 234.355469 199.753906 234.449219 199.753906 234.566406 C 199.753906 234.683594 199.847656 234.777344 199.964844 234.777344 C 200.082031 234.777344 200.175781 234.683594 200.175781 234.566406 Z M 200.175781 234.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.664062 239.421875 C 196.664062 239.304688 196.570312 239.210938 196.453125 239.210938 C 196.335938 239.210938 196.242188 239.304688 196.242188 239.421875 C 196.242188 239.539062 196.335938 239.632812 196.453125 239.632812 C 196.570312 239.632812 196.664062 239.539062 196.664062 239.421875 Z M 196.664062 239.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.371094 240.140625 C 196.371094 240.023438 196.277344 239.929688 196.160156 239.929688 C 196.042969 239.929688 195.949219 240.023438 195.949219 240.140625 C 195.949219 240.257812 196.042969 240.351562 196.160156 240.351562 C 196.277344 240.351562 196.371094 240.257812 196.371094 240.140625 Z M 196.371094 240.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.613281 241.722656 C 196.613281 241.605469 196.519531 241.511719 196.402344 241.511719 C 196.285156 241.511719 196.191406 241.605469 196.191406 241.722656 C 196.191406 241.839844 196.285156 241.933594 196.402344 241.933594 C 196.519531 241.933594 196.613281 241.839844 196.613281 241.722656 Z M 196.613281 241.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.457031 246.375 C 193.457031 246.257812 193.363281 246.164062 193.246094 246.164062 C 193.128906 246.164062 193.035156 246.257812 193.035156 246.375 C 193.035156 246.492188 193.128906 246.585938 193.246094 246.585938 C 193.363281 246.585938 193.457031 246.492188 193.457031 246.375 Z M 193.457031 246.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.886719 247.972656 C 192.886719 247.855469 192.792969 247.761719 192.675781 247.761719 C 192.558594 247.761719 192.464844 247.855469 192.464844 247.972656 C 192.464844 248.089844 192.558594 248.183594 192.675781 248.183594 C 192.792969 248.183594 192.886719 248.089844 192.886719 247.972656 Z M 192.886719 247.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.277344 250.125 C 194.277344 250.007812 194.183594 249.914062 194.066406 249.914062 C 193.949219 249.914062 193.855469 250.007812 193.855469 250.125 C 193.855469 250.242188 193.949219 250.335938 194.066406 250.335938 C 194.183594 250.335938 194.277344 250.242188 194.277344 250.125 Z M 194.277344 250.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.171875 252.113281 C 190.171875 251.996094 190.078125 251.902344 189.960938 251.902344 C 189.84375 251.902344 189.75 251.996094 189.75 252.113281 C 189.75 252.230469 189.84375 252.324219 189.960938 252.324219 C 190.078125 252.324219 190.171875 252.230469 190.171875 252.113281 Z M 190.171875 252.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.460938 249.753906 C 186.460938 249.636719 186.367188 249.542969 186.25 249.542969 C 186.132812 249.542969 186.039062 249.636719 186.039062 249.753906 C 186.039062 249.871094 186.132812 249.964844 186.25 249.964844 C 186.367188 249.964844 186.460938 249.871094 186.460938 249.753906 Z M 186.460938 249.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.8125 251.261719 C 184.8125 251.144531 184.71875 251.050781 184.601562 251.050781 C 184.484375 251.050781 184.390625 251.144531 184.390625 251.261719 C 184.390625 251.378906 184.484375 251.472656 184.601562 251.472656 C 184.71875 251.472656 184.8125 251.378906 184.8125 251.261719 Z M 184.8125 251.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.980469 252.554688 C 184.980469 252.4375 184.886719 252.34375 184.769531 252.34375 C 184.652344 252.34375 184.558594 252.4375 184.558594 252.554688 C 184.558594 252.671875 184.652344 252.765625 184.769531 252.765625 C 184.886719 252.765625 184.980469 252.671875 184.980469 252.554688 Z M 184.980469 252.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.304688 254.5 C 187.304688 254.382812 187.210938 254.289062 187.09375 254.289062 C 186.976562 254.289062 186.882812 254.382812 186.882812 254.5 C 186.882812 254.617188 186.976562 254.710938 187.09375 254.710938 C 187.210938 254.710938 187.304688 254.617188 187.304688 254.5 Z M 187.304688 254.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.140625 255.921875 C 189.140625 255.804688 189.046875 255.710938 188.929688 255.710938 C 188.8125 255.710938 188.71875 255.804688 188.71875 255.921875 C 188.71875 256.039062 188.8125 256.132812 188.929688 256.132812 C 189.046875 256.132812 189.140625 256.039062 189.140625 255.921875 Z M 189.140625 255.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.179688 257.167969 C 189.179688 257.050781 189.085938 256.957031 188.96875 256.957031 C 188.851562 256.957031 188.757812 257.050781 188.757812 257.167969 C 188.757812 257.285156 188.851562 257.378906 188.96875 257.378906 C 189.085938 257.378906 189.179688 257.285156 189.179688 257.167969 Z M 189.179688 257.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.808594 258.832031 C 188.808594 258.714844 188.714844 258.621094 188.597656 258.621094 C 188.480469 258.621094 188.386719 258.714844 188.386719 258.832031 C 188.386719 258.949219 188.480469 259.042969 188.597656 259.042969 C 188.714844 259.042969 188.808594 258.949219 188.808594 258.832031 Z M 188.808594 258.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.152344 258.121094 C 186.152344 258.003906 186.058594 257.910156 185.941406 257.910156 C 185.824219 257.910156 185.730469 258.003906 185.730469 258.121094 C 185.730469 258.238281 185.824219 258.332031 185.941406 258.332031 C 186.058594 258.332031 186.152344 258.238281 186.152344 258.121094 Z M 186.152344 258.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.171875 259 C 186.171875 258.882812 186.078125 258.789062 185.960938 258.789062 C 185.84375 258.789062 185.75 258.882812 185.75 259 C 185.75 259.117188 185.84375 259.210938 185.960938 259.210938 C 186.078125 259.210938 186.171875 259.117188 186.171875 259 Z M 186.171875 259 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.332031 261.210938 C 184.332031 261.09375 184.238281 261 184.121094 261 C 184.003906 261 183.910156 261.09375 183.910156 261.210938 C 183.910156 261.328125 184.003906 261.421875 184.121094 261.421875 C 184.238281 261.421875 184.332031 261.328125 184.332031 261.210938 Z M 184.332031 261.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.386719 257.992188 C 182.386719 257.875 182.292969 257.78125 182.175781 257.78125 C 182.058594 257.78125 181.964844 257.875 181.964844 257.992188 C 181.964844 258.109375 182.058594 258.203125 182.175781 258.203125 C 182.292969 258.203125 182.386719 258.109375 182.386719 257.992188 Z M 182.386719 257.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.082031 260.722656 C 183.082031 260.605469 182.988281 260.511719 182.871094 260.511719 C 182.753906 260.511719 182.660156 260.605469 182.660156 260.722656 C 182.660156 260.839844 182.753906 260.933594 182.871094 260.933594 C 182.988281 260.933594 183.082031 260.839844 183.082031 260.722656 Z M 183.082031 260.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.878906 259.472656 C 184.878906 259.355469 184.785156 259.261719 184.667969 259.261719 C 184.550781 259.261719 184.457031 259.355469 184.457031 259.472656 C 184.457031 259.589844 184.550781 259.683594 184.667969 259.683594 C 184.785156 259.683594 184.878906 259.589844 184.878906 259.472656 Z M 184.878906 259.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.398438 260.441406 C 183.398438 260.324219 183.304688 260.230469 183.1875 260.230469 C 183.070312 260.230469 182.976562 260.324219 182.976562 260.441406 C 182.976562 260.558594 183.070312 260.652344 183.1875 260.652344 C 183.304688 260.652344 183.398438 260.558594 183.398438 260.441406 Z M 183.398438 260.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.648438 255.359375 C 183.648438 255.242188 183.554688 255.148438 183.4375 255.148438 C 183.320312 255.148438 183.226562 255.242188 183.226562 255.359375 C 183.226562 255.476562 183.320312 255.570312 183.4375 255.570312 C 183.554688 255.570312 183.648438 255.476562 183.648438 255.359375 Z M 183.648438 255.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.1875 255.015625 C 186.1875 254.898438 186.09375 254.804688 185.976562 254.804688 C 185.859375 254.804688 185.765625 254.898438 185.765625 255.015625 C 185.765625 255.132812 185.859375 255.226562 185.976562 255.226562 C 186.09375 255.226562 186.1875 255.132812 186.1875 255.015625 Z M 186.1875 255.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.835938 255.597656 C 186.835938 255.480469 186.742188 255.386719 186.625 255.386719 C 186.507812 255.386719 186.414062 255.480469 186.414062 255.597656 C 186.414062 255.714844 186.507812 255.808594 186.625 255.808594 C 186.742188 255.808594 186.835938 255.714844 186.835938 255.597656 Z M 186.835938 255.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.460938 253.535156 C 186.460938 253.417969 186.367188 253.324219 186.25 253.324219 C 186.132812 253.324219 186.039062 253.417969 186.039062 253.535156 C 186.039062 253.652344 186.132812 253.746094 186.25 253.746094 C 186.367188 253.746094 186.460938 253.652344 186.460938 253.535156 Z M 186.460938 253.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.121094 253.375 C 186.121094 253.257812 186.027344 253.164062 185.910156 253.164062 C 185.792969 253.164062 185.699219 253.257812 185.699219 253.375 C 185.699219 253.492188 185.792969 253.585938 185.910156 253.585938 C 186.027344 253.585938 186.121094 253.492188 186.121094 253.375 Z M 186.121094 253.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.347656 252.683594 C 185.347656 252.566406 185.253906 252.472656 185.136719 252.472656 C 185.019531 252.472656 184.925781 252.566406 184.925781 252.683594 C 184.925781 252.800781 185.019531 252.894531 185.136719 252.894531 C 185.253906 252.894531 185.347656 252.800781 185.347656 252.683594 Z M 185.347656 252.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.054688 250.824219 C 186.054688 250.707031 185.960938 250.613281 185.84375 250.613281 C 185.726562 250.613281 185.632812 250.707031 185.632812 250.824219 C 185.632812 250.941406 185.726562 251.035156 185.84375 251.035156 C 185.960938 251.035156 186.054688 250.941406 186.054688 250.824219 Z M 186.054688 250.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.296875 253.746094 C 187.296875 253.628906 187.203125 253.535156 187.085938 253.535156 C 186.96875 253.535156 186.875 253.628906 186.875 253.746094 C 186.875 253.863281 186.96875 253.957031 187.085938 253.957031 C 187.203125 253.957031 187.296875 253.863281 187.296875 253.746094 Z M 187.296875 253.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.28125 251.886719 C 182.28125 251.769531 182.1875 251.675781 182.070312 251.675781 C 181.953125 251.675781 181.859375 251.769531 181.859375 251.886719 C 181.859375 252.003906 181.953125 252.097656 182.070312 252.097656 C 182.1875 252.097656 182.28125 252.003906 182.28125 251.886719 Z M 182.28125 251.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.648438 250.386719 C 182.648438 250.269531 182.554688 250.175781 182.4375 250.175781 C 182.320312 250.175781 182.226562 250.269531 182.226562 250.386719 C 182.226562 250.503906 182.320312 250.597656 182.4375 250.597656 C 182.554688 250.597656 182.648438 250.503906 182.648438 250.386719 Z M 182.648438 250.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 180.582031 250.65625 C 180.582031 250.539062 180.488281 250.445312 180.371094 250.445312 C 180.253906 250.445312 180.160156 250.539062 180.160156 250.65625 C 180.160156 250.773438 180.253906 250.867188 180.371094 250.867188 C 180.488281 250.867188 180.582031 250.773438 180.582031 250.65625 Z M 180.582031 250.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.808594 251.367188 C 182.808594 251.25 182.714844 251.15625 182.597656 251.15625 C 182.480469 251.15625 182.386719 251.25 182.386719 251.367188 C 182.386719 251.484375 182.480469 251.578125 182.597656 251.578125 C 182.714844 251.578125 182.808594 251.484375 182.808594 251.367188 Z M 182.808594 251.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.160156 249.800781 C 183.160156 249.683594 183.066406 249.589844 182.949219 249.589844 C 182.832031 249.589844 182.738281 249.683594 182.738281 249.800781 C 182.738281 249.917969 182.832031 250.011719 182.949219 250.011719 C 183.066406 250.011719 183.160156 249.917969 183.160156 249.800781 Z M 183.160156 249.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.261719 253.054688 C 183.261719 252.9375 183.167969 252.84375 183.050781 252.84375 C 182.933594 252.84375 182.839844 252.9375 182.839844 253.054688 C 182.839844 253.171875 182.933594 253.265625 183.050781 253.265625 C 183.167969 253.265625 183.261719 253.171875 183.261719 253.054688 Z M 183.261719 253.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.613281 250.949219 C 184.613281 250.832031 184.519531 250.738281 184.402344 250.738281 C 184.285156 250.738281 184.191406 250.832031 184.191406 250.949219 C 184.191406 251.066406 184.285156 251.160156 184.402344 251.160156 C 184.519531 251.160156 184.613281 251.066406 184.613281 250.949219 Z M 184.613281 250.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.449219 249.636719 C 181.449219 249.519531 181.355469 249.425781 181.238281 249.425781 C 181.121094 249.425781 181.027344 249.519531 181.027344 249.636719 C 181.027344 249.753906 181.121094 249.847656 181.238281 249.847656 C 181.355469 249.847656 181.449219 249.753906 181.449219 249.636719 Z M 181.449219 249.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 178.226562 251.863281 C 178.226562 251.746094 178.132812 251.652344 178.015625 251.652344 C 177.898438 251.652344 177.804688 251.746094 177.804688 251.863281 C 177.804688 251.980469 177.898438 252.074219 178.015625 252.074219 C 178.132812 252.074219 178.226562 251.980469 178.226562 251.863281 Z M 178.226562 251.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 179.03125 254.214844 C 179.03125 254.097656 178.9375 254.003906 178.820312 254.003906 C 178.703125 254.003906 178.609375 254.097656 178.609375 254.214844 C 178.609375 254.332031 178.703125 254.425781 178.820312 254.425781 C 178.9375 254.425781 179.03125 254.332031 179.03125 254.214844 Z M 179.03125 254.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.671875 252.382812 C 181.671875 252.265625 181.578125 252.171875 181.460938 252.171875 C 181.34375 252.171875 181.25 252.265625 181.25 252.382812 C 181.25 252.5 181.34375 252.59375 181.460938 252.59375 C 181.578125 252.59375 181.671875 252.5 181.671875 252.382812 Z M 181.671875 252.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.449219 249.019531 C 182.449219 248.902344 182.355469 248.808594 182.238281 248.808594 C 182.121094 248.808594 182.027344 248.902344 182.027344 249.019531 C 182.027344 249.136719 182.121094 249.230469 182.238281 249.230469 C 182.355469 249.230469 182.449219 249.136719 182.449219 249.019531 Z M 182.449219 249.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.074219 249.851562 C 183.074219 249.734375 182.980469 249.640625 182.863281 249.640625 C 182.746094 249.640625 182.652344 249.734375 182.652344 249.851562 C 182.652344 249.96875 182.746094 250.0625 182.863281 250.0625 C 182.980469 250.0625 183.074219 249.96875 183.074219 249.851562 Z M 183.074219 249.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.332031 246.300781 C 182.332031 246.183594 182.238281 246.089844 182.121094 246.089844 C 182.003906 246.089844 181.910156 246.183594 181.910156 246.300781 C 181.910156 246.417969 182.003906 246.511719 182.121094 246.511719 C 182.238281 246.511719 182.332031 246.417969 182.332031 246.300781 Z M 182.332031 246.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.15625 247.652344 C 181.15625 247.535156 181.0625 247.441406 180.945312 247.441406 C 180.828125 247.441406 180.734375 247.535156 180.734375 247.652344 C 180.734375 247.769531 180.828125 247.863281 180.945312 247.863281 C 181.0625 247.863281 181.15625 247.769531 181.15625 247.652344 Z M 181.15625 247.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.394531 248.871094 C 182.394531 248.753906 182.300781 248.660156 182.183594 248.660156 C 182.066406 248.660156 181.972656 248.753906 181.972656 248.871094 C 181.972656 248.988281 182.066406 249.082031 182.183594 249.082031 C 182.300781 249.082031 182.394531 248.988281 182.394531 248.871094 Z M 182.394531 248.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.449219 250.800781 C 181.449219 250.683594 181.355469 250.589844 181.238281 250.589844 C 181.121094 250.589844 181.027344 250.683594 181.027344 250.800781 C 181.027344 250.917969 181.121094 251.011719 181.238281 251.011719 C 181.355469 251.011719 181.449219 250.917969 181.449219 250.800781 Z M 181.449219 250.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 179.847656 247.832031 C 179.847656 247.714844 179.753906 247.621094 179.636719 247.621094 C 179.519531 247.621094 179.425781 247.714844 179.425781 247.832031 C 179.425781 247.949219 179.519531 248.042969 179.636719 248.042969 C 179.753906 248.042969 179.847656 247.949219 179.847656 247.832031 Z M 179.847656 247.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 179.523438 245.898438 C 179.523438 245.78125 179.429688 245.6875 179.3125 245.6875 C 179.195312 245.6875 179.101562 245.78125 179.101562 245.898438 C 179.101562 246.015625 179.195312 246.109375 179.3125 246.109375 C 179.429688 246.109375 179.523438 246.015625 179.523438 245.898438 Z M 179.523438 245.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 180.816406 245.464844 C 180.816406 245.347656 180.722656 245.253906 180.605469 245.253906 C 180.488281 245.253906 180.394531 245.347656 180.394531 245.464844 C 180.394531 245.582031 180.488281 245.675781 180.605469 245.675781 C 180.722656 245.675781 180.816406 245.582031 180.816406 245.464844 Z M 180.816406 245.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.664062 244.777344 C 181.664062 244.660156 181.570312 244.566406 181.453125 244.566406 C 181.335938 244.566406 181.242188 244.660156 181.242188 244.777344 C 181.242188 244.894531 181.335938 244.988281 181.453125 244.988281 C 181.570312 244.988281 181.664062 244.894531 181.664062 244.777344 Z M 181.664062 244.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 180.386719 243.007812 C 180.386719 242.890625 180.292969 242.796875 180.175781 242.796875 C 180.058594 242.796875 179.964844 242.890625 179.964844 243.007812 C 179.964844 243.125 180.058594 243.21875 180.175781 243.21875 C 180.292969 243.21875 180.386719 243.125 180.386719 243.007812 Z M 180.386719 243.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.789062 241.570312 C 182.789062 241.453125 182.695312 241.359375 182.578125 241.359375 C 182.460938 241.359375 182.367188 241.453125 182.367188 241.570312 C 182.367188 241.6875 182.460938 241.78125 182.578125 241.78125 C 182.695312 241.78125 182.789062 241.6875 182.789062 241.570312 Z M 182.789062 241.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.945312 242.855469 C 183.945312 242.738281 183.851562 242.644531 183.734375 242.644531 C 183.617188 242.644531 183.523438 242.738281 183.523438 242.855469 C 183.523438 242.972656 183.617188 243.066406 183.734375 243.066406 C 183.851562 243.066406 183.945312 242.972656 183.945312 242.855469 Z M 183.945312 242.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.339844 240.722656 C 184.339844 240.605469 184.246094 240.511719 184.128906 240.511719 C 184.011719 240.511719 183.917969 240.605469 183.917969 240.722656 C 183.917969 240.839844 184.011719 240.933594 184.128906 240.933594 C 184.246094 240.933594 184.339844 240.839844 184.339844 240.722656 Z M 184.339844 240.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.328125 241.527344 C 185.328125 241.410156 185.234375 241.316406 185.117188 241.316406 C 185 241.316406 184.90625 241.410156 184.90625 241.527344 C 184.90625 241.644531 185 241.738281 185.117188 241.738281 C 185.234375 241.738281 185.328125 241.644531 185.328125 241.527344 Z M 185.328125 241.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.390625 242.484375 C 186.390625 242.367188 186.296875 242.273438 186.179688 242.273438 C 186.0625 242.273438 185.96875 242.367188 185.96875 242.484375 C 185.96875 242.601562 186.0625 242.695312 186.179688 242.695312 C 186.296875 242.695312 186.390625 242.601562 186.390625 242.484375 Z M 186.390625 242.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.851562 240.652344 C 187.851562 240.535156 187.757812 240.441406 187.640625 240.441406 C 187.523438 240.441406 187.429688 240.535156 187.429688 240.652344 C 187.429688 240.769531 187.523438 240.863281 187.640625 240.863281 C 187.757812 240.863281 187.851562 240.769531 187.851562 240.652344 Z M 187.851562 240.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.339844 239.339844 C 190.339844 239.222656 190.246094 239.128906 190.128906 239.128906 C 190.011719 239.128906 189.917969 239.222656 189.917969 239.339844 C 189.917969 239.457031 190.011719 239.550781 190.128906 239.550781 C 190.246094 239.550781 190.339844 239.457031 190.339844 239.339844 Z M 190.339844 239.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.21875 235.367188 C 192.21875 235.25 192.125 235.15625 192.007812 235.15625 C 191.890625 235.15625 191.796875 235.25 191.796875 235.367188 C 191.796875 235.484375 191.890625 235.578125 192.007812 235.578125 C 192.125 235.578125 192.21875 235.484375 192.21875 235.367188 Z M 192.21875 235.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.355469 234.238281 C 191.355469 234.121094 191.261719 234.027344 191.144531 234.027344 C 191.027344 234.027344 190.933594 234.121094 190.933594 234.238281 C 190.933594 234.355469 191.027344 234.449219 191.144531 234.449219 C 191.261719 234.449219 191.355469 234.355469 191.355469 234.238281 Z M 191.355469 234.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.007812 232.660156 C 193.007812 232.542969 192.914062 232.449219 192.796875 232.449219 C 192.679688 232.449219 192.585938 232.542969 192.585938 232.660156 C 192.585938 232.777344 192.679688 232.871094 192.796875 232.871094 C 192.914062 232.871094 193.007812 232.777344 193.007812 232.660156 Z M 193.007812 232.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.933594 235.542969 C 190.933594 235.425781 190.839844 235.332031 190.722656 235.332031 C 190.605469 235.332031 190.511719 235.425781 190.511719 235.542969 C 190.511719 235.660156 190.605469 235.753906 190.722656 235.753906 C 190.839844 235.753906 190.933594 235.660156 190.933594 235.542969 Z M 190.933594 235.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.378906 231.855469 C 194.378906 231.738281 194.285156 231.644531 194.167969 231.644531 C 194.050781 231.644531 193.957031 231.738281 193.957031 231.855469 C 193.957031 231.972656 194.050781 232.066406 194.167969 232.066406 C 194.285156 232.066406 194.378906 231.972656 194.378906 231.855469 Z M 194.378906 231.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.640625 226.4375 C 194.640625 226.320312 194.546875 226.226562 194.429688 226.226562 C 194.3125 226.226562 194.21875 226.320312 194.21875 226.4375 C 194.21875 226.554688 194.3125 226.648438 194.429688 226.648438 C 194.546875 226.648438 194.640625 226.554688 194.640625 226.4375 Z M 194.640625 226.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.382812 227.722656 C 195.382812 227.605469 195.289062 227.511719 195.171875 227.511719 C 195.054688 227.511719 194.960938 227.605469 194.960938 227.722656 C 194.960938 227.839844 195.054688 227.933594 195.171875 227.933594 C 195.289062 227.933594 195.382812 227.839844 195.382812 227.722656 Z M 195.382812 227.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.921875 226.703125 C 191.921875 226.585938 191.828125 226.492188 191.710938 226.492188 C 191.59375 226.492188 191.5 226.585938 191.5 226.703125 C 191.5 226.820312 191.59375 226.914062 191.710938 226.914062 C 191.828125 226.914062 191.921875 226.820312 191.921875 226.703125 Z M 191.921875 226.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.089844 229.878906 C 193.089844 229.761719 192.996094 229.667969 192.878906 229.667969 C 192.761719 229.667969 192.667969 229.761719 192.667969 229.878906 C 192.667969 229.996094 192.761719 230.089844 192.878906 230.089844 C 192.996094 230.089844 193.089844 229.996094 193.089844 229.878906 Z M 193.089844 229.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.714844 234.164062 C 193.714844 234.046875 193.621094 233.953125 193.503906 233.953125 C 193.386719 233.953125 193.292969 234.046875 193.292969 234.164062 C 193.292969 234.28125 193.386719 234.375 193.503906 234.375 C 193.621094 234.375 193.714844 234.28125 193.714844 234.164062 Z M 193.714844 234.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.6875 235.070312 C 192.6875 234.953125 192.59375 234.859375 192.476562 234.859375 C 192.359375 234.859375 192.265625 234.953125 192.265625 235.070312 C 192.265625 235.1875 192.359375 235.28125 192.476562 235.28125 C 192.59375 235.28125 192.6875 235.1875 192.6875 235.070312 Z M 192.6875 235.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.679688 233.550781 C 190.679688 233.433594 190.585938 233.339844 190.46875 233.339844 C 190.351562 233.339844 190.257812 233.433594 190.257812 233.550781 C 190.257812 233.667969 190.351562 233.761719 190.46875 233.761719 C 190.585938 233.761719 190.679688 233.667969 190.679688 233.550781 Z M 190.679688 233.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.308594 233.097656 C 189.308594 232.980469 189.214844 232.886719 189.097656 232.886719 C 188.980469 232.886719 188.886719 232.980469 188.886719 233.097656 C 188.886719 233.214844 188.980469 233.308594 189.097656 233.308594 C 189.214844 233.308594 189.308594 233.214844 189.308594 233.097656 Z M 189.308594 233.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.421875 230.121094 C 191.421875 230.003906 191.328125 229.910156 191.210938 229.910156 C 191.09375 229.910156 191 230.003906 191 230.121094 C 191 230.238281 191.09375 230.332031 191.210938 230.332031 C 191.328125 230.332031 191.421875 230.238281 191.421875 230.121094 Z M 191.421875 230.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.363281 231.753906 C 193.363281 231.636719 193.269531 231.542969 193.152344 231.542969 C 193.035156 231.542969 192.941406 231.636719 192.941406 231.753906 C 192.941406 231.871094 193.035156 231.964844 193.152344 231.964844 C 193.269531 231.964844 193.363281 231.871094 193.363281 231.753906 Z M 193.363281 231.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.785156 228.851562 C 196.785156 228.734375 196.691406 228.640625 196.574219 228.640625 C 196.457031 228.640625 196.363281 228.734375 196.363281 228.851562 C 196.363281 228.96875 196.457031 229.0625 196.574219 229.0625 C 196.691406 229.0625 196.785156 228.96875 196.785156 228.851562 Z M 196.785156 228.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.078125 228.746094 C 195.078125 228.628906 194.984375 228.535156 194.867188 228.535156 C 194.75 228.535156 194.65625 228.628906 194.65625 228.746094 C 194.65625 228.863281 194.75 228.957031 194.867188 228.957031 C 194.984375 228.957031 195.078125 228.863281 195.078125 228.746094 Z M 195.078125 228.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.453125 226.253906 C 195.453125 226.136719 195.359375 226.042969 195.242188 226.042969 C 195.125 226.042969 195.03125 226.136719 195.03125 226.253906 C 195.03125 226.371094 195.125 226.464844 195.242188 226.464844 C 195.359375 226.464844 195.453125 226.371094 195.453125 226.253906 Z M 195.453125 226.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.597656 227.015625 C 196.597656 226.898438 196.503906 226.804688 196.386719 226.804688 C 196.269531 226.804688 196.175781 226.898438 196.175781 227.015625 C 196.175781 227.132812 196.269531 227.226562 196.386719 227.226562 C 196.503906 227.226562 196.597656 227.132812 196.597656 227.015625 Z M 196.597656 227.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.28125 227.269531 C 198.28125 227.152344 198.1875 227.058594 198.070312 227.058594 C 197.953125 227.058594 197.859375 227.152344 197.859375 227.269531 C 197.859375 227.386719 197.953125 227.480469 198.070312 227.480469 C 198.1875 227.480469 198.28125 227.386719 198.28125 227.269531 Z M 198.28125 227.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.652344 226.59375 C 196.652344 226.476562 196.558594 226.382812 196.441406 226.382812 C 196.324219 226.382812 196.230469 226.476562 196.230469 226.59375 C 196.230469 226.710938 196.324219 226.804688 196.441406 226.804688 C 196.558594 226.804688 196.652344 226.710938 196.652344 226.59375 Z M 196.652344 226.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.175781 226.953125 C 200.175781 226.835938 200.082031 226.742188 199.964844 226.742188 C 199.847656 226.742188 199.753906 226.835938 199.753906 226.953125 C 199.753906 227.070312 199.847656 227.164062 199.964844 227.164062 C 200.082031 227.164062 200.175781 227.070312 200.175781 226.953125 Z M 200.175781 226.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.6875 224.972656 C 199.6875 224.855469 199.59375 224.761719 199.476562 224.761719 C 199.359375 224.761719 199.265625 224.855469 199.265625 224.972656 C 199.265625 225.089844 199.359375 225.183594 199.476562 225.183594 C 199.59375 225.183594 199.6875 225.089844 199.6875 224.972656 Z M 199.6875 224.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.652344 221.339844 C 197.652344 221.222656 197.558594 221.128906 197.441406 221.128906 C 197.324219 221.128906 197.230469 221.222656 197.230469 221.339844 C 197.230469 221.457031 197.324219 221.550781 197.441406 221.550781 C 197.558594 221.550781 197.652344 221.457031 197.652344 221.339844 Z M 197.652344 221.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.695312 222.296875 C 197.695312 222.179688 197.601562 222.085938 197.484375 222.085938 C 197.367188 222.085938 197.273438 222.179688 197.273438 222.296875 C 197.273438 222.414062 197.367188 222.507812 197.484375 222.507812 C 197.601562 222.507812 197.695312 222.414062 197.695312 222.296875 Z M 197.695312 222.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.863281 224.28125 C 198.863281 224.164062 198.769531 224.070312 198.652344 224.070312 C 198.535156 224.070312 198.441406 224.164062 198.441406 224.28125 C 198.441406 224.398438 198.535156 224.492188 198.652344 224.492188 C 198.769531 224.492188 198.863281 224.398438 198.863281 224.28125 Z M 198.863281 224.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.105469 224.597656 C 197.105469 224.480469 197.011719 224.386719 196.894531 224.386719 C 196.777344 224.386719 196.683594 224.480469 196.683594 224.597656 C 196.683594 224.714844 196.777344 224.808594 196.894531 224.808594 C 197.011719 224.808594 197.105469 224.714844 197.105469 224.597656 Z M 197.105469 224.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.90625 226.75 C 195.90625 226.632812 195.8125 226.539062 195.695312 226.539062 C 195.578125 226.539062 195.484375 226.632812 195.484375 226.75 C 195.484375 226.867188 195.578125 226.960938 195.695312 226.960938 C 195.8125 226.960938 195.90625 226.867188 195.90625 226.75 Z M 195.90625 226.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.25 229.109375 C 201.25 228.992188 201.15625 228.898438 201.039062 228.898438 C 200.921875 228.898438 200.828125 228.992188 200.828125 229.109375 C 200.828125 229.226562 200.921875 229.320312 201.039062 229.320312 C 201.15625 229.320312 201.25 229.226562 201.25 229.109375 Z M 201.25 229.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.765625 229.097656 C 201.765625 228.980469 201.671875 228.886719 201.554688 228.886719 C 201.4375 228.886719 201.34375 228.980469 201.34375 229.097656 C 201.34375 229.214844 201.4375 229.308594 201.554688 229.308594 C 201.671875 229.308594 201.765625 229.214844 201.765625 229.097656 Z M 201.765625 229.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.230469 232.074219 C 203.230469 231.957031 203.136719 231.863281 203.019531 231.863281 C 202.902344 231.863281 202.808594 231.957031 202.808594 232.074219 C 202.808594 232.191406 202.902344 232.285156 203.019531 232.285156 C 203.136719 232.285156 203.230469 232.191406 203.230469 232.074219 Z M 203.230469 232.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.410156 231.800781 C 203.410156 231.683594 203.316406 231.589844 203.199219 231.589844 C 203.082031 231.589844 202.988281 231.683594 202.988281 231.800781 C 202.988281 231.917969 203.082031 232.011719 203.199219 232.011719 C 203.316406 232.011719 203.410156 231.917969 203.410156 231.800781 Z M 203.410156 231.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.273438 232.800781 C 203.273438 232.683594 203.179688 232.589844 203.0625 232.589844 C 202.945312 232.589844 202.851562 232.683594 202.851562 232.800781 C 202.851562 232.917969 202.945312 233.011719 203.0625 233.011719 C 203.179688 233.011719 203.273438 232.917969 203.273438 232.800781 Z M 203.273438 232.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.757812 231.199219 C 202.757812 231.082031 202.664062 230.988281 202.546875 230.988281 C 202.429688 230.988281 202.335938 231.082031 202.335938 231.199219 C 202.335938 231.316406 202.429688 231.410156 202.546875 231.410156 C 202.664062 231.410156 202.757812 231.316406 202.757812 231.199219 Z M 202.757812 231.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.378906 231.113281 C 203.378906 230.996094 203.285156 230.902344 203.167969 230.902344 C 203.050781 230.902344 202.957031 230.996094 202.957031 231.113281 C 202.957031 231.230469 203.050781 231.324219 203.167969 231.324219 C 203.285156 231.324219 203.378906 231.230469 203.378906 231.113281 Z M 203.378906 231.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.382812 237.234375 C 205.382812 237.117188 205.289062 237.023438 205.171875 237.023438 C 205.054688 237.023438 204.960938 237.117188 204.960938 237.234375 C 204.960938 237.351562 205.054688 237.445312 205.171875 237.445312 C 205.289062 237.445312 205.382812 237.351562 205.382812 237.234375 Z M 205.382812 237.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.515625 239.765625 C 206.515625 239.648438 206.421875 239.554688 206.304688 239.554688 C 206.1875 239.554688 206.09375 239.648438 206.09375 239.765625 C 206.09375 239.882812 206.1875 239.976562 206.304688 239.976562 C 206.421875 239.976562 206.515625 239.882812 206.515625 239.765625 Z M 206.515625 239.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.648438 235.1875 C 205.648438 235.070312 205.554688 234.976562 205.4375 234.976562 C 205.320312 234.976562 205.226562 235.070312 205.226562 235.1875 C 205.226562 235.304688 205.320312 235.398438 205.4375 235.398438 C 205.554688 235.398438 205.648438 235.304688 205.648438 235.1875 Z M 205.648438 235.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.835938 233.605469 C 208.835938 233.488281 208.742188 233.394531 208.625 233.394531 C 208.507812 233.394531 208.414062 233.488281 208.414062 233.605469 C 208.414062 233.722656 208.507812 233.816406 208.625 233.816406 C 208.742188 233.816406 208.835938 233.722656 208.835938 233.605469 Z M 208.835938 233.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.203125 232.472656 C 209.203125 232.355469 209.109375 232.261719 208.992188 232.261719 C 208.875 232.261719 208.78125 232.355469 208.78125 232.472656 C 208.78125 232.589844 208.875 232.683594 208.992188 232.683594 C 209.109375 232.683594 209.203125 232.589844 209.203125 232.472656 Z M 209.203125 232.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.679688 234.453125 C 211.679688 234.335938 211.585938 234.242188 211.46875 234.242188 C 211.351562 234.242188 211.257812 234.335938 211.257812 234.453125 C 211.257812 234.570312 211.351562 234.664062 211.46875 234.664062 C 211.585938 234.664062 211.679688 234.570312 211.679688 234.453125 Z M 211.679688 234.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.5 234.769531 C 213.5 234.652344 213.40625 234.558594 213.289062 234.558594 C 213.171875 234.558594 213.078125 234.652344 213.078125 234.769531 C 213.078125 234.886719 213.171875 234.980469 213.289062 234.980469 C 213.40625 234.980469 213.5 234.886719 213.5 234.769531 Z M 213.5 234.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.910156 231.1875 C 217.910156 231.070312 217.816406 230.976562 217.699219 230.976562 C 217.582031 230.976562 217.488281 231.070312 217.488281 231.1875 C 217.488281 231.304688 217.582031 231.398438 217.699219 231.398438 C 217.816406 231.398438 217.910156 231.304688 217.910156 231.1875 Z M 217.910156 231.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.414062 229.46875 C 217.414062 229.351562 217.320312 229.257812 217.203125 229.257812 C 217.085938 229.257812 216.992188 229.351562 216.992188 229.46875 C 216.992188 229.585938 217.085938 229.679688 217.203125 229.679688 C 217.320312 229.679688 217.414062 229.585938 217.414062 229.46875 Z M 217.414062 229.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.566406 227.867188 C 214.566406 227.75 214.472656 227.65625 214.355469 227.65625 C 214.238281 227.65625 214.144531 227.75 214.144531 227.867188 C 214.144531 227.984375 214.238281 228.078125 214.355469 228.078125 C 214.472656 228.078125 214.566406 227.984375 214.566406 227.867188 Z M 214.566406 227.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.410156 228.0625 C 217.410156 227.945312 217.316406 227.851562 217.199219 227.851562 C 217.082031 227.851562 216.988281 227.945312 216.988281 228.0625 C 216.988281 228.179688 217.082031 228.273438 217.199219 228.273438 C 217.316406 228.273438 217.410156 228.179688 217.410156 228.0625 Z M 217.410156 228.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.707031 230.183594 C 221.707031 230.066406 221.613281 229.972656 221.496094 229.972656 C 221.378906 229.972656 221.285156 230.066406 221.285156 230.183594 C 221.285156 230.300781 221.378906 230.394531 221.496094 230.394531 C 221.613281 230.394531 221.707031 230.300781 221.707031 230.183594 Z M 221.707031 230.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.0625 229.824219 C 219.0625 229.707031 218.96875 229.613281 218.851562 229.613281 C 218.734375 229.613281 218.640625 229.707031 218.640625 229.824219 C 218.640625 229.941406 218.734375 230.035156 218.851562 230.035156 C 218.96875 230.035156 219.0625 229.941406 219.0625 229.824219 Z M 219.0625 229.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.898438 229.878906 C 216.898438 229.761719 216.804688 229.667969 216.6875 229.667969 C 216.570312 229.667969 216.476562 229.761719 216.476562 229.878906 C 216.476562 229.996094 216.570312 230.089844 216.6875 230.089844 C 216.804688 230.089844 216.898438 229.996094 216.898438 229.878906 Z M 216.898438 229.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.210938 232.132812 C 219.210938 232.015625 219.117188 231.921875 219 231.921875 C 218.882812 231.921875 218.789062 232.015625 218.789062 232.132812 C 218.789062 232.25 218.882812 232.34375 219 232.34375 C 219.117188 232.34375 219.210938 232.25 219.210938 232.132812 Z M 219.210938 232.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 220.367188 231.839844 C 220.367188 231.722656 220.273438 231.628906 220.15625 231.628906 C 220.039062 231.628906 219.945312 231.722656 219.945312 231.839844 C 219.945312 231.957031 220.039062 232.050781 220.15625 232.050781 C 220.273438 232.050781 220.367188 231.957031 220.367188 231.839844 Z M 220.367188 231.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 220.492188 231.019531 C 220.492188 230.902344 220.398438 230.808594 220.28125 230.808594 C 220.164062 230.808594 220.070312 230.902344 220.070312 231.019531 C 220.070312 231.136719 220.164062 231.230469 220.28125 231.230469 C 220.398438 231.230469 220.492188 231.136719 220.492188 231.019531 Z M 220.492188 231.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 220.230469 228.796875 C 220.230469 228.679688 220.136719 228.585938 220.019531 228.585938 C 219.902344 228.585938 219.808594 228.679688 219.808594 228.796875 C 219.808594 228.914062 219.902344 229.007812 220.019531 229.007812 C 220.136719 229.007812 220.230469 228.914062 220.230469 228.796875 Z M 220.230469 228.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.449219 231.644531 C 221.449219 231.527344 221.355469 231.433594 221.238281 231.433594 C 221.121094 231.433594 221.027344 231.527344 221.027344 231.644531 C 221.027344 231.761719 221.121094 231.855469 221.238281 231.855469 C 221.355469 231.855469 221.449219 231.761719 221.449219 231.644531 Z M 221.449219 231.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.738281 230.929688 C 223.738281 230.8125 223.644531 230.71875 223.527344 230.71875 C 223.410156 230.71875 223.316406 230.8125 223.316406 230.929688 C 223.316406 231.046875 223.410156 231.140625 223.527344 231.140625 C 223.644531 231.140625 223.738281 231.046875 223.738281 230.929688 Z M 223.738281 230.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.109375 227.824219 C 223.109375 227.707031 223.015625 227.613281 222.898438 227.613281 C 222.78125 227.613281 222.6875 227.707031 222.6875 227.824219 C 222.6875 227.941406 222.78125 228.035156 222.898438 228.035156 C 223.015625 228.035156 223.109375 227.941406 223.109375 227.824219 Z M 223.109375 227.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.0625 225.914062 C 224.0625 225.796875 223.96875 225.703125 223.851562 225.703125 C 223.734375 225.703125 223.640625 225.796875 223.640625 225.914062 C 223.640625 226.03125 223.734375 226.125 223.851562 226.125 C 223.96875 226.125 224.0625 226.03125 224.0625 225.914062 Z M 224.0625 225.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.0625 224.398438 C 226.0625 224.28125 225.96875 224.1875 225.851562 224.1875 C 225.734375 224.1875 225.640625 224.28125 225.640625 224.398438 C 225.640625 224.515625 225.734375 224.609375 225.851562 224.609375 C 225.96875 224.609375 226.0625 224.515625 226.0625 224.398438 Z M 226.0625 224.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.042969 225.535156 C 224.042969 225.417969 223.949219 225.324219 223.832031 225.324219 C 223.714844 225.324219 223.621094 225.417969 223.621094 225.535156 C 223.621094 225.652344 223.714844 225.746094 223.832031 225.746094 C 223.949219 225.746094 224.042969 225.652344 224.042969 225.535156 Z M 224.042969 225.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.699219 228.042969 C 223.699219 227.925781 223.605469 227.832031 223.488281 227.832031 C 223.371094 227.832031 223.277344 227.925781 223.277344 228.042969 C 223.277344 228.160156 223.371094 228.253906 223.488281 228.253906 C 223.605469 228.253906 223.699219 228.160156 223.699219 228.042969 Z M 223.699219 228.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.585938 229.222656 C 221.585938 229.105469 221.492188 229.011719 221.375 229.011719 C 221.257812 229.011719 221.164062 229.105469 221.164062 229.222656 C 221.164062 229.339844 221.257812 229.433594 221.375 229.433594 C 221.492188 229.433594 221.585938 229.339844 221.585938 229.222656 Z M 221.585938 229.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.769531 229.3125 C 217.769531 229.195312 217.675781 229.101562 217.558594 229.101562 C 217.441406 229.101562 217.347656 229.195312 217.347656 229.3125 C 217.347656 229.429688 217.441406 229.523438 217.558594 229.523438 C 217.675781 229.523438 217.769531 229.429688 217.769531 229.3125 Z M 217.769531 229.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.828125 229.804688 C 217.828125 229.6875 217.734375 229.59375 217.617188 229.59375 C 217.5 229.59375 217.40625 229.6875 217.40625 229.804688 C 217.40625 229.921875 217.5 230.015625 217.617188 230.015625 C 217.734375 230.015625 217.828125 229.921875 217.828125 229.804688 Z M 217.828125 229.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.539062 231.316406 C 213.539062 231.199219 213.445312 231.105469 213.328125 231.105469 C 213.210938 231.105469 213.117188 231.199219 213.117188 231.316406 C 213.117188 231.433594 213.210938 231.527344 213.328125 231.527344 C 213.445312 231.527344 213.539062 231.433594 213.539062 231.316406 Z M 213.539062 231.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.875 235.65625 C 214.875 235.539062 214.78125 235.445312 214.664062 235.445312 C 214.546875 235.445312 214.453125 235.539062 214.453125 235.65625 C 214.453125 235.773438 214.546875 235.867188 214.664062 235.867188 C 214.78125 235.867188 214.875 235.773438 214.875 235.65625 Z M 214.875 235.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.867188 236.617188 C 214.867188 236.5 214.773438 236.40625 214.65625 236.40625 C 214.539062 236.40625 214.445312 236.5 214.445312 236.617188 C 214.445312 236.734375 214.539062 236.828125 214.65625 236.828125 C 214.773438 236.828125 214.867188 236.734375 214.867188 236.617188 Z M 214.867188 236.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.347656 235.222656 C 213.347656 235.105469 213.253906 235.011719 213.136719 235.011719 C 213.019531 235.011719 212.925781 235.105469 212.925781 235.222656 C 212.925781 235.339844 213.019531 235.433594 213.136719 235.433594 C 213.253906 235.433594 213.347656 235.339844 213.347656 235.222656 Z M 213.347656 235.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.511719 239.359375 C 213.511719 239.242188 213.417969 239.148438 213.300781 239.148438 C 213.183594 239.148438 213.089844 239.242188 213.089844 239.359375 C 213.089844 239.476562 213.183594 239.570312 213.300781 239.570312 C 213.417969 239.570312 213.511719 239.476562 213.511719 239.359375 Z M 213.511719 239.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.535156 240.976562 C 214.535156 240.859375 214.441406 240.765625 214.324219 240.765625 C 214.207031 240.765625 214.113281 240.859375 214.113281 240.976562 C 214.113281 241.09375 214.207031 241.1875 214.324219 241.1875 C 214.441406 241.1875 214.535156 241.09375 214.535156 240.976562 Z M 214.535156 240.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.785156 240.617188 C 215.785156 240.5 215.691406 240.40625 215.574219 240.40625 C 215.457031 240.40625 215.363281 240.5 215.363281 240.617188 C 215.363281 240.734375 215.457031 240.828125 215.574219 240.828125 C 215.691406 240.828125 215.785156 240.734375 215.785156 240.617188 Z M 215.785156 240.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.855469 239.957031 C 216.855469 239.839844 216.761719 239.746094 216.644531 239.746094 C 216.527344 239.746094 216.433594 239.839844 216.433594 239.957031 C 216.433594 240.074219 216.527344 240.167969 216.644531 240.167969 C 216.761719 240.167969 216.855469 240.074219 216.855469 239.957031 Z M 216.855469 239.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.726562 240.902344 C 215.726562 240.785156 215.632812 240.691406 215.515625 240.691406 C 215.398438 240.691406 215.304688 240.785156 215.304688 240.902344 C 215.304688 241.019531 215.398438 241.113281 215.515625 241.113281 C 215.632812 241.113281 215.726562 241.019531 215.726562 240.902344 Z M 215.726562 240.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.285156 240.433594 C 212.285156 240.316406 212.191406 240.222656 212.074219 240.222656 C 211.957031 240.222656 211.863281 240.316406 211.863281 240.433594 C 211.863281 240.550781 211.957031 240.644531 212.074219 240.644531 C 212.191406 240.644531 212.285156 240.550781 212.285156 240.433594 Z M 212.285156 240.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.226562 238.089844 C 209.226562 237.972656 209.132812 237.878906 209.015625 237.878906 C 208.898438 237.878906 208.804688 237.972656 208.804688 238.089844 C 208.804688 238.207031 208.898438 238.300781 209.015625 238.300781 C 209.132812 238.300781 209.226562 238.207031 209.226562 238.089844 Z M 209.226562 238.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.128906 237.996094 C 209.128906 237.878906 209.035156 237.785156 208.917969 237.785156 C 208.800781 237.785156 208.707031 237.878906 208.707031 237.996094 C 208.707031 238.113281 208.800781 238.207031 208.917969 238.207031 C 209.035156 238.207031 209.128906 238.113281 209.128906 237.996094 Z M 209.128906 237.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.816406 234.78125 C 207.816406 234.664062 207.722656 234.570312 207.605469 234.570312 C 207.488281 234.570312 207.394531 234.664062 207.394531 234.78125 C 207.394531 234.898438 207.488281 234.992188 207.605469 234.992188 C 207.722656 234.992188 207.816406 234.898438 207.816406 234.78125 Z M 207.816406 234.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.269531 238.582031 C 208.269531 238.464844 208.175781 238.371094 208.058594 238.371094 C 207.941406 238.371094 207.847656 238.464844 207.847656 238.582031 C 207.847656 238.699219 207.941406 238.792969 208.058594 238.792969 C 208.175781 238.792969 208.269531 238.699219 208.269531 238.582031 Z M 208.269531 238.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.222656 238.78125 C 202.222656 238.664062 202.128906 238.570312 202.011719 238.570312 C 201.894531 238.570312 201.800781 238.664062 201.800781 238.78125 C 201.800781 238.898438 201.894531 238.992188 202.011719 238.992188 C 202.128906 238.992188 202.222656 238.898438 202.222656 238.78125 Z M 202.222656 238.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.085938 239.171875 C 204.085938 239.054688 203.992188 238.960938 203.875 238.960938 C 203.757812 238.960938 203.664062 239.054688 203.664062 239.171875 C 203.664062 239.289062 203.757812 239.382812 203.875 239.382812 C 203.992188 239.382812 204.085938 239.289062 204.085938 239.171875 Z M 204.085938 239.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.8125 241.175781 C 203.8125 241.058594 203.71875 240.964844 203.601562 240.964844 C 203.484375 240.964844 203.390625 241.058594 203.390625 241.175781 C 203.390625 241.292969 203.484375 241.386719 203.601562 241.386719 C 203.71875 241.386719 203.8125 241.292969 203.8125 241.175781 Z M 203.8125 241.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.367188 238.59375 C 203.367188 238.476562 203.273438 238.382812 203.15625 238.382812 C 203.039062 238.382812 202.945312 238.476562 202.945312 238.59375 C 202.945312 238.710938 203.039062 238.804688 203.15625 238.804688 C 203.273438 238.804688 203.367188 238.710938 203.367188 238.59375 Z M 203.367188 238.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206 241.324219 C 206 241.207031 205.90625 241.113281 205.789062 241.113281 C 205.671875 241.113281 205.578125 241.207031 205.578125 241.324219 C 205.578125 241.441406 205.671875 241.535156 205.789062 241.535156 C 205.90625 241.535156 206 241.441406 206 241.324219 Z M 206 241.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.996094 241.535156 C 206.996094 241.417969 206.902344 241.324219 206.785156 241.324219 C 206.667969 241.324219 206.574219 241.417969 206.574219 241.535156 C 206.574219 241.652344 206.667969 241.746094 206.785156 241.746094 C 206.902344 241.746094 206.996094 241.652344 206.996094 241.535156 Z M 206.996094 241.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.699219 243.21875 C 206.699219 243.101562 206.605469 243.007812 206.488281 243.007812 C 206.371094 243.007812 206.277344 243.101562 206.277344 243.21875 C 206.277344 243.335938 206.371094 243.429688 206.488281 243.429688 C 206.605469 243.429688 206.699219 243.335938 206.699219 243.21875 Z M 206.699219 243.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.265625 241.238281 C 205.265625 241.121094 205.171875 241.027344 205.054688 241.027344 C 204.9375 241.027344 204.84375 241.121094 204.84375 241.238281 C 204.84375 241.355469 204.9375 241.449219 205.054688 241.449219 C 205.171875 241.449219 205.265625 241.355469 205.265625 241.238281 Z M 205.265625 241.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.582031 244.546875 C 204.582031 244.429688 204.488281 244.335938 204.371094 244.335938 C 204.253906 244.335938 204.160156 244.429688 204.160156 244.546875 C 204.160156 244.664062 204.253906 244.757812 204.371094 244.757812 C 204.488281 244.757812 204.582031 244.664062 204.582031 244.546875 Z M 204.582031 244.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.003906 244.792969 C 207.003906 244.675781 206.910156 244.582031 206.792969 244.582031 C 206.675781 244.582031 206.582031 244.675781 206.582031 244.792969 C 206.582031 244.910156 206.675781 245.003906 206.792969 245.003906 C 206.910156 245.003906 207.003906 244.910156 207.003906 244.792969 Z M 207.003906 244.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.292969 243.597656 C 210.292969 243.480469 210.199219 243.386719 210.082031 243.386719 C 209.964844 243.386719 209.871094 243.480469 209.871094 243.597656 C 209.871094 243.714844 209.964844 243.808594 210.082031 243.808594 C 210.199219 243.808594 210.292969 243.714844 210.292969 243.597656 Z M 210.292969 243.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.976562 237.859375 C 208.976562 237.742188 208.882812 237.648438 208.765625 237.648438 C 208.648438 237.648438 208.554688 237.742188 208.554688 237.859375 C 208.554688 237.976562 208.648438 238.070312 208.765625 238.070312 C 208.882812 238.070312 208.976562 237.976562 208.976562 237.859375 Z M 208.976562 237.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.386719 235.757812 C 207.386719 235.640625 207.292969 235.546875 207.175781 235.546875 C 207.058594 235.546875 206.964844 235.640625 206.964844 235.757812 C 206.964844 235.875 207.058594 235.96875 207.175781 235.96875 C 207.292969 235.96875 207.386719 235.875 207.386719 235.757812 Z M 207.386719 235.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.527344 240.195312 C 204.527344 240.078125 204.433594 239.984375 204.316406 239.984375 C 204.199219 239.984375 204.105469 240.078125 204.105469 240.195312 C 204.105469 240.3125 204.199219 240.40625 204.316406 240.40625 C 204.433594 240.40625 204.527344 240.3125 204.527344 240.195312 Z M 204.527344 240.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.96875 240.671875 C 205.96875 240.554688 205.875 240.460938 205.757812 240.460938 C 205.640625 240.460938 205.546875 240.554688 205.546875 240.671875 C 205.546875 240.789062 205.640625 240.882812 205.757812 240.882812 C 205.875 240.882812 205.96875 240.789062 205.96875 240.671875 Z M 205.96875 240.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.023438 239.367188 C 204.023438 239.25 203.929688 239.15625 203.8125 239.15625 C 203.695312 239.15625 203.601562 239.25 203.601562 239.367188 C 203.601562 239.484375 203.695312 239.578125 203.8125 239.578125 C 203.929688 239.578125 204.023438 239.484375 204.023438 239.367188 Z M 204.023438 239.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.261719 238.664062 C 201.261719 238.546875 201.167969 238.453125 201.050781 238.453125 C 200.933594 238.453125 200.839844 238.546875 200.839844 238.664062 C 200.839844 238.78125 200.933594 238.875 201.050781 238.875 C 201.167969 238.875 201.261719 238.78125 201.261719 238.664062 Z M 201.261719 238.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.179688 239.578125 C 201.179688 239.460938 201.085938 239.367188 200.96875 239.367188 C 200.851562 239.367188 200.757812 239.460938 200.757812 239.578125 C 200.757812 239.695312 200.851562 239.789062 200.96875 239.789062 C 201.085938 239.789062 201.179688 239.695312 201.179688 239.578125 Z M 201.179688 239.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.6875 240.011719 C 200.6875 239.894531 200.59375 239.800781 200.476562 239.800781 C 200.359375 239.800781 200.265625 239.894531 200.265625 240.011719 C 200.265625 240.128906 200.359375 240.222656 200.476562 240.222656 C 200.59375 240.222656 200.6875 240.128906 200.6875 240.011719 Z M 200.6875 240.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.328125 236.78125 C 200.328125 236.664062 200.234375 236.570312 200.117188 236.570312 C 200 236.570312 199.90625 236.664062 199.90625 236.78125 C 199.90625 236.898438 200 236.992188 200.117188 236.992188 C 200.234375 236.992188 200.328125 236.898438 200.328125 236.78125 Z M 200.328125 236.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.332031 235.914062 C 201.332031 235.796875 201.238281 235.703125 201.121094 235.703125 C 201.003906 235.703125 200.910156 235.796875 200.910156 235.914062 C 200.910156 236.03125 201.003906 236.125 201.121094 236.125 C 201.238281 236.125 201.332031 236.03125 201.332031 235.914062 Z M 201.332031 235.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.175781 236.132812 C 199.175781 236.015625 199.082031 235.921875 198.964844 235.921875 C 198.847656 235.921875 198.753906 236.015625 198.753906 236.132812 C 198.753906 236.25 198.847656 236.34375 198.964844 236.34375 C 199.082031 236.34375 199.175781 236.25 199.175781 236.132812 Z M 199.175781 236.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.367188 233.886719 C 198.367188 233.769531 198.273438 233.675781 198.15625 233.675781 C 198.039062 233.675781 197.945312 233.769531 197.945312 233.886719 C 197.945312 234.003906 198.039062 234.097656 198.15625 234.097656 C 198.273438 234.097656 198.367188 234.003906 198.367188 233.886719 Z M 198.367188 233.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.199219 236.183594 C 201.199219 236.066406 201.105469 235.972656 200.988281 235.972656 C 200.871094 235.972656 200.777344 236.066406 200.777344 236.183594 C 200.777344 236.300781 200.871094 236.394531 200.988281 236.394531 C 201.105469 236.394531 201.199219 236.300781 201.199219 236.183594 Z M 201.199219 236.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.894531 238.300781 C 199.894531 238.183594 199.800781 238.089844 199.683594 238.089844 C 199.566406 238.089844 199.472656 238.183594 199.472656 238.300781 C 199.472656 238.417969 199.566406 238.511719 199.683594 238.511719 C 199.800781 238.511719 199.894531 238.417969 199.894531 238.300781 Z M 199.894531 238.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.382812 237.585938 C 199.382812 237.46875 199.289062 237.375 199.171875 237.375 C 199.054688 237.375 198.960938 237.46875 198.960938 237.585938 C 198.960938 237.703125 199.054688 237.796875 199.171875 237.796875 C 199.289062 237.796875 199.382812 237.703125 199.382812 237.585938 Z M 199.382812 237.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.328125 240.265625 C 197.328125 240.148438 197.234375 240.054688 197.117188 240.054688 C 197 240.054688 196.90625 240.148438 196.90625 240.265625 C 196.90625 240.382812 197 240.476562 197.117188 240.476562 C 197.234375 240.476562 197.328125 240.382812 197.328125 240.265625 Z M 197.328125 240.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.042969 243.140625 C 199.042969 243.023438 198.949219 242.929688 198.832031 242.929688 C 198.714844 242.929688 198.621094 243.023438 198.621094 243.140625 C 198.621094 243.257812 198.714844 243.351562 198.832031 243.351562 C 198.949219 243.351562 199.042969 243.257812 199.042969 243.140625 Z M 199.042969 243.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.191406 242.085938 C 196.191406 241.96875 196.097656 241.875 195.980469 241.875 C 195.863281 241.875 195.769531 241.96875 195.769531 242.085938 C 195.769531 242.203125 195.863281 242.296875 195.980469 242.296875 C 196.097656 242.296875 196.191406 242.203125 196.191406 242.085938 Z M 196.191406 242.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.867188 243.222656 C 195.867188 243.105469 195.773438 243.011719 195.65625 243.011719 C 195.539062 243.011719 195.445312 243.105469 195.445312 243.222656 C 195.445312 243.339844 195.539062 243.433594 195.65625 243.433594 C 195.773438 243.433594 195.867188 243.339844 195.867188 243.222656 Z M 195.867188 243.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.714844 242.535156 C 197.714844 242.417969 197.621094 242.324219 197.503906 242.324219 C 197.386719 242.324219 197.292969 242.417969 197.292969 242.535156 C 197.292969 242.652344 197.386719 242.746094 197.503906 242.746094 C 197.621094 242.746094 197.714844 242.652344 197.714844 242.535156 Z M 197.714844 242.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.199219 239.980469 C 196.199219 239.863281 196.105469 239.769531 195.988281 239.769531 C 195.871094 239.769531 195.777344 239.863281 195.777344 239.980469 C 195.777344 240.097656 195.871094 240.191406 195.988281 240.191406 C 196.105469 240.191406 196.199219 240.097656 196.199219 239.980469 Z M 196.199219 239.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.722656 237.195312 C 198.722656 237.078125 198.628906 236.984375 198.511719 236.984375 C 198.394531 236.984375 198.300781 237.078125 198.300781 237.195312 C 198.300781 237.3125 198.394531 237.40625 198.511719 237.40625 C 198.628906 237.40625 198.722656 237.3125 198.722656 237.195312 Z M 198.722656 237.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.039062 235.988281 C 198.039062 235.871094 197.945312 235.777344 197.828125 235.777344 C 197.710938 235.777344 197.617188 235.871094 197.617188 235.988281 C 197.617188 236.105469 197.710938 236.199219 197.828125 236.199219 C 197.945312 236.199219 198.039062 236.105469 198.039062 235.988281 Z M 198.039062 235.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.078125 236.597656 C 198.078125 236.480469 197.984375 236.386719 197.867188 236.386719 C 197.75 236.386719 197.65625 236.480469 197.65625 236.597656 C 197.65625 236.714844 197.75 236.808594 197.867188 236.808594 C 197.984375 236.808594 198.078125 236.714844 198.078125 236.597656 Z M 198.078125 236.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.441406 234.792969 C 198.441406 234.675781 198.347656 234.582031 198.230469 234.582031 C 198.113281 234.582031 198.019531 234.675781 198.019531 234.792969 C 198.019531 234.910156 198.113281 235.003906 198.230469 235.003906 C 198.347656 235.003906 198.441406 234.910156 198.441406 234.792969 Z M 198.441406 234.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.136719 235.285156 C 198.136719 235.167969 198.042969 235.074219 197.925781 235.074219 C 197.808594 235.074219 197.714844 235.167969 197.714844 235.285156 C 197.714844 235.402344 197.808594 235.496094 197.925781 235.496094 C 198.042969 235.496094 198.136719 235.402344 198.136719 235.285156 Z M 198.136719 235.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.375 235.953125 C 200.375 235.835938 200.28125 235.742188 200.164062 235.742188 C 200.046875 235.742188 199.953125 235.835938 199.953125 235.953125 C 199.953125 236.070312 200.046875 236.164062 200.164062 236.164062 C 200.28125 236.164062 200.375 236.070312 200.375 235.953125 Z M 200.375 235.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.257812 233.484375 C 198.257812 233.367188 198.164062 233.273438 198.046875 233.273438 C 197.929688 233.273438 197.835938 233.367188 197.835938 233.484375 C 197.835938 233.601562 197.929688 233.695312 198.046875 233.695312 C 198.164062 233.695312 198.257812 233.601562 198.257812 233.484375 Z M 198.257812 233.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.523438 233.550781 C 197.523438 233.433594 197.429688 233.339844 197.3125 233.339844 C 197.195312 233.339844 197.101562 233.433594 197.101562 233.550781 C 197.101562 233.667969 197.195312 233.761719 197.3125 233.761719 C 197.429688 233.761719 197.523438 233.667969 197.523438 233.550781 Z M 197.523438 233.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.234375 234.058594 C 198.234375 233.941406 198.140625 233.847656 198.023438 233.847656 C 197.90625 233.847656 197.8125 233.941406 197.8125 234.058594 C 197.8125 234.175781 197.90625 234.269531 198.023438 234.269531 C 198.140625 234.269531 198.234375 234.175781 198.234375 234.058594 Z M 198.234375 234.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.683594 232.796875 C 199.683594 232.679688 199.589844 232.585938 199.472656 232.585938 C 199.355469 232.585938 199.261719 232.679688 199.261719 232.796875 C 199.261719 232.914062 199.355469 233.007812 199.472656 233.007812 C 199.589844 233.007812 199.683594 232.914062 199.683594 232.796875 Z M 199.683594 232.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.300781 235.414062 C 203.300781 235.296875 203.207031 235.203125 203.089844 235.203125 C 202.972656 235.203125 202.878906 235.296875 202.878906 235.414062 C 202.878906 235.53125 202.972656 235.625 203.089844 235.625 C 203.207031 235.625 203.300781 235.53125 203.300781 235.414062 Z M 203.300781 235.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.835938 238.195312 C 204.835938 238.078125 204.742188 237.984375 204.625 237.984375 C 204.507812 237.984375 204.414062 238.078125 204.414062 238.195312 C 204.414062 238.3125 204.507812 238.40625 204.625 238.40625 C 204.742188 238.40625 204.835938 238.3125 204.835938 238.195312 Z M 204.835938 238.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.839844 239.402344 C 205.839844 239.285156 205.746094 239.191406 205.628906 239.191406 C 205.511719 239.191406 205.417969 239.285156 205.417969 239.402344 C 205.417969 239.519531 205.511719 239.613281 205.628906 239.613281 C 205.746094 239.613281 205.839844 239.519531 205.839844 239.402344 Z M 205.839844 239.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.914062 239.625 C 201.914062 239.507812 201.820312 239.414062 201.703125 239.414062 C 201.585938 239.414062 201.492188 239.507812 201.492188 239.625 C 201.492188 239.742188 201.585938 239.835938 201.703125 239.835938 C 201.820312 239.835938 201.914062 239.742188 201.914062 239.625 Z M 201.914062 239.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.183594 239.933594 C 205.183594 239.816406 205.089844 239.722656 204.972656 239.722656 C 204.855469 239.722656 204.761719 239.816406 204.761719 239.933594 C 204.761719 240.050781 204.855469 240.144531 204.972656 240.144531 C 205.089844 240.144531 205.183594 240.050781 205.183594 239.933594 Z M 205.183594 239.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.550781 238.585938 C 204.550781 238.46875 204.457031 238.375 204.339844 238.375 C 204.222656 238.375 204.128906 238.46875 204.128906 238.585938 C 204.128906 238.703125 204.222656 238.796875 204.339844 238.796875 C 204.457031 238.796875 204.550781 238.703125 204.550781 238.585938 Z M 204.550781 238.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.863281 234.835938 C 207.863281 234.71875 207.769531 234.625 207.652344 234.625 C 207.535156 234.625 207.441406 234.71875 207.441406 234.835938 C 207.441406 234.953125 207.535156 235.046875 207.652344 235.046875 C 207.769531 235.046875 207.863281 234.953125 207.863281 234.835938 Z M 207.863281 234.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.277344 230.769531 C 208.277344 230.652344 208.183594 230.558594 208.066406 230.558594 C 207.949219 230.558594 207.855469 230.652344 207.855469 230.769531 C 207.855469 230.886719 207.949219 230.980469 208.066406 230.980469 C 208.183594 230.980469 208.277344 230.886719 208.277344 230.769531 Z M 208.277344 230.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.421875 232.628906 C 208.421875 232.511719 208.328125 232.417969 208.210938 232.417969 C 208.09375 232.417969 208 232.511719 208 232.628906 C 208 232.746094 208.09375 232.839844 208.210938 232.839844 C 208.328125 232.839844 208.421875 232.746094 208.421875 232.628906 Z M 208.421875 232.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.027344 231.554688 C 206.027344 231.4375 205.933594 231.34375 205.816406 231.34375 C 205.699219 231.34375 205.605469 231.4375 205.605469 231.554688 C 205.605469 231.671875 205.699219 231.765625 205.816406 231.765625 C 205.933594 231.765625 206.027344 231.671875 206.027344 231.554688 Z M 206.027344 231.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.539062 233.191406 C 208.539062 233.074219 208.445312 232.980469 208.328125 232.980469 C 208.210938 232.980469 208.117188 233.074219 208.117188 233.191406 C 208.117188 233.308594 208.210938 233.402344 208.328125 233.402344 C 208.445312 233.402344 208.539062 233.308594 208.539062 233.191406 Z M 208.539062 233.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.933594 234.691406 C 210.933594 234.574219 210.839844 234.480469 210.722656 234.480469 C 210.605469 234.480469 210.511719 234.574219 210.511719 234.691406 C 210.511719 234.808594 210.605469 234.902344 210.722656 234.902344 C 210.839844 234.902344 210.933594 234.808594 210.933594 234.691406 Z M 210.933594 234.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.648438 231.058594 C 213.648438 230.941406 213.554688 230.847656 213.4375 230.847656 C 213.320312 230.847656 213.226562 230.941406 213.226562 231.058594 C 213.226562 231.175781 213.320312 231.269531 213.4375 231.269531 C 213.554688 231.269531 213.648438 231.175781 213.648438 231.058594 Z M 213.648438 231.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.933594 231.132812 C 211.933594 231.015625 211.839844 230.921875 211.722656 230.921875 C 211.605469 230.921875 211.511719 231.015625 211.511719 231.132812 C 211.511719 231.25 211.605469 231.34375 211.722656 231.34375 C 211.839844 231.34375 211.933594 231.25 211.933594 231.132812 Z M 211.933594 231.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.148438 232.164062 C 210.148438 232.046875 210.054688 231.953125 209.9375 231.953125 C 209.820312 231.953125 209.726562 232.046875 209.726562 232.164062 C 209.726562 232.28125 209.820312 232.375 209.9375 232.375 C 210.054688 232.375 210.148438 232.28125 210.148438 232.164062 Z M 210.148438 232.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.203125 229.609375 C 205.203125 229.492188 205.109375 229.398438 204.992188 229.398438 C 204.875 229.398438 204.78125 229.492188 204.78125 229.609375 C 204.78125 229.726562 204.875 229.820312 204.992188 229.820312 C 205.109375 229.820312 205.203125 229.726562 205.203125 229.609375 Z M 205.203125 229.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.53125 227.019531 C 203.53125 226.902344 203.4375 226.808594 203.320312 226.808594 C 203.203125 226.808594 203.109375 226.902344 203.109375 227.019531 C 203.109375 227.136719 203.203125 227.230469 203.320312 227.230469 C 203.4375 227.230469 203.53125 227.136719 203.53125 227.019531 Z M 203.53125 227.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.433594 226.683594 C 207.433594 226.566406 207.339844 226.472656 207.222656 226.472656 C 207.105469 226.472656 207.011719 226.566406 207.011719 226.683594 C 207.011719 226.800781 207.105469 226.894531 207.222656 226.894531 C 207.339844 226.894531 207.433594 226.800781 207.433594 226.683594 Z M 207.433594 226.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.199219 227.1875 C 207.199219 227.070312 207.105469 226.976562 206.988281 226.976562 C 206.871094 226.976562 206.777344 227.070312 206.777344 227.1875 C 206.777344 227.304688 206.871094 227.398438 206.988281 227.398438 C 207.105469 227.398438 207.199219 227.304688 207.199219 227.1875 Z M 207.199219 227.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.738281 230.628906 C 206.738281 230.511719 206.644531 230.417969 206.527344 230.417969 C 206.410156 230.417969 206.316406 230.511719 206.316406 230.628906 C 206.316406 230.746094 206.410156 230.839844 206.527344 230.839844 C 206.644531 230.839844 206.738281 230.746094 206.738281 230.628906 Z M 206.738281 230.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.304688 230.734375 C 211.304688 230.617188 211.210938 230.523438 211.09375 230.523438 C 210.976562 230.523438 210.882812 230.617188 210.882812 230.734375 C 210.882812 230.851562 210.976562 230.945312 211.09375 230.945312 C 211.210938 230.945312 211.304688 230.851562 211.304688 230.734375 Z M 211.304688 230.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.1875 230.046875 C 212.1875 229.929688 212.09375 229.835938 211.976562 229.835938 C 211.859375 229.835938 211.765625 229.929688 211.765625 230.046875 C 211.765625 230.164062 211.859375 230.257812 211.976562 230.257812 C 212.09375 230.257812 212.1875 230.164062 212.1875 230.046875 Z M 212.1875 230.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.019531 232.292969 C 212.019531 232.175781 211.925781 232.082031 211.808594 232.082031 C 211.691406 232.082031 211.597656 232.175781 211.597656 232.292969 C 211.597656 232.410156 211.691406 232.503906 211.808594 232.503906 C 211.925781 232.503906 212.019531 232.410156 212.019531 232.292969 Z M 212.019531 232.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.261719 230.230469 C 210.261719 230.113281 210.167969 230.019531 210.050781 230.019531 C 209.933594 230.019531 209.839844 230.113281 209.839844 230.230469 C 209.839844 230.347656 209.933594 230.441406 210.050781 230.441406 C 210.167969 230.441406 210.261719 230.347656 210.261719 230.230469 Z M 210.261719 230.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.148438 227.359375 C 210.148438 227.242188 210.054688 227.148438 209.9375 227.148438 C 209.820312 227.148438 209.726562 227.242188 209.726562 227.359375 C 209.726562 227.476562 209.820312 227.570312 209.9375 227.570312 C 210.054688 227.570312 210.148438 227.476562 210.148438 227.359375 Z M 210.148438 227.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.820312 230.8125 C 209.820312 230.695312 209.726562 230.601562 209.609375 230.601562 C 209.492188 230.601562 209.398438 230.695312 209.398438 230.8125 C 209.398438 230.929688 209.492188 231.023438 209.609375 231.023438 C 209.726562 231.023438 209.820312 230.929688 209.820312 230.8125 Z M 209.820312 230.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.644531 229.007812 C 208.644531 228.890625 208.550781 228.796875 208.433594 228.796875 C 208.316406 228.796875 208.222656 228.890625 208.222656 229.007812 C 208.222656 229.125 208.316406 229.21875 208.433594 229.21875 C 208.550781 229.21875 208.644531 229.125 208.644531 229.007812 Z M 208.644531 229.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.09375 231.25 C 209.09375 231.132812 209 231.039062 208.882812 231.039062 C 208.765625 231.039062 208.671875 231.132812 208.671875 231.25 C 208.671875 231.367188 208.765625 231.460938 208.882812 231.460938 C 209 231.460938 209.09375 231.367188 209.09375 231.25 Z M 209.09375 231.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.230469 234.695312 C 208.230469 234.578125 208.136719 234.484375 208.019531 234.484375 C 207.902344 234.484375 207.808594 234.578125 207.808594 234.695312 C 207.808594 234.8125 207.902344 234.90625 208.019531 234.90625 C 208.136719 234.90625 208.230469 234.8125 208.230469 234.695312 Z M 208.230469 234.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.59375 231.722656 C 213.59375 231.605469 213.5 231.511719 213.382812 231.511719 C 213.265625 231.511719 213.171875 231.605469 213.171875 231.722656 C 213.171875 231.839844 213.265625 231.933594 213.382812 231.933594 C 213.5 231.933594 213.59375 231.839844 213.59375 231.722656 Z M 213.59375 231.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.585938 232.613281 C 213.585938 232.496094 213.492188 232.402344 213.375 232.402344 C 213.257812 232.402344 213.164062 232.496094 213.164062 232.613281 C 213.164062 232.730469 213.257812 232.824219 213.375 232.824219 C 213.492188 232.824219 213.585938 232.730469 213.585938 232.613281 Z M 213.585938 232.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.351562 232.078125 C 215.351562 231.960938 215.257812 231.867188 215.140625 231.867188 C 215.023438 231.867188 214.929688 231.960938 214.929688 232.078125 C 214.929688 232.195312 215.023438 232.289062 215.140625 232.289062 C 215.257812 232.289062 215.351562 232.195312 215.351562 232.078125 Z M 215.351562 232.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.484375 230.300781 C 211.484375 230.183594 211.390625 230.089844 211.273438 230.089844 C 211.15625 230.089844 211.0625 230.183594 211.0625 230.300781 C 211.0625 230.417969 211.15625 230.511719 211.273438 230.511719 C 211.390625 230.511719 211.484375 230.417969 211.484375 230.300781 Z M 211.484375 230.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.277344 234.667969 C 211.277344 234.550781 211.183594 234.457031 211.066406 234.457031 C 210.949219 234.457031 210.855469 234.550781 210.855469 234.667969 C 210.855469 234.785156 210.949219 234.878906 211.066406 234.878906 C 211.183594 234.878906 211.277344 234.785156 211.277344 234.667969 Z M 211.277344 234.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.261719 233.292969 C 212.261719 233.175781 212.167969 233.082031 212.050781 233.082031 C 211.933594 233.082031 211.839844 233.175781 211.839844 233.292969 C 211.839844 233.410156 211.933594 233.503906 212.050781 233.503906 C 212.167969 233.503906 212.261719 233.410156 212.261719 233.292969 Z M 212.261719 233.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.476562 231.125 C 212.476562 231.007812 212.382812 230.914062 212.265625 230.914062 C 212.148438 230.914062 212.054688 231.007812 212.054688 231.125 C 212.054688 231.242188 212.148438 231.335938 212.265625 231.335938 C 212.382812 231.335938 212.476562 231.242188 212.476562 231.125 Z M 212.476562 231.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.960938 234.488281 C 210.960938 234.371094 210.867188 234.277344 210.75 234.277344 C 210.632812 234.277344 210.539062 234.371094 210.539062 234.488281 C 210.539062 234.605469 210.632812 234.699219 210.75 234.699219 C 210.867188 234.699219 210.960938 234.605469 210.960938 234.488281 Z M 210.960938 234.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.632812 234.023438 C 211.632812 233.90625 211.539062 233.8125 211.421875 233.8125 C 211.304688 233.8125 211.210938 233.90625 211.210938 234.023438 C 211.210938 234.140625 211.304688 234.234375 211.421875 234.234375 C 211.539062 234.234375 211.632812 234.140625 211.632812 234.023438 Z M 211.632812 234.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.636719 230.636719 C 212.636719 230.519531 212.542969 230.425781 212.425781 230.425781 C 212.308594 230.425781 212.214844 230.519531 212.214844 230.636719 C 212.214844 230.753906 212.308594 230.847656 212.425781 230.847656 C 212.542969 230.847656 212.636719 230.753906 212.636719 230.636719 Z M 212.636719 230.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.980469 228.847656 C 213.980469 228.730469 213.886719 228.636719 213.769531 228.636719 C 213.652344 228.636719 213.558594 228.730469 213.558594 228.847656 C 213.558594 228.964844 213.652344 229.058594 213.769531 229.058594 C 213.886719 229.058594 213.980469 228.964844 213.980469 228.847656 Z M 213.980469 228.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.976562 231.203125 C 212.976562 231.085938 212.882812 230.992188 212.765625 230.992188 C 212.648438 230.992188 212.554688 231.085938 212.554688 231.203125 C 212.554688 231.320312 212.648438 231.414062 212.765625 231.414062 C 212.882812 231.414062 212.976562 231.320312 212.976562 231.203125 Z M 212.976562 231.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.128906 228.699219 C 215.128906 228.582031 215.035156 228.488281 214.917969 228.488281 C 214.800781 228.488281 214.707031 228.582031 214.707031 228.699219 C 214.707031 228.816406 214.800781 228.910156 214.917969 228.910156 C 215.035156 228.910156 215.128906 228.816406 215.128906 228.699219 Z M 215.128906 228.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.808594 227.691406 C 215.808594 227.574219 215.714844 227.480469 215.597656 227.480469 C 215.480469 227.480469 215.386719 227.574219 215.386719 227.691406 C 215.386719 227.808594 215.480469 227.902344 215.597656 227.902344 C 215.714844 227.902344 215.808594 227.808594 215.808594 227.691406 Z M 215.808594 227.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.808594 229.355469 C 215.808594 229.238281 215.714844 229.144531 215.597656 229.144531 C 215.480469 229.144531 215.386719 229.238281 215.386719 229.355469 C 215.386719 229.472656 215.480469 229.566406 215.597656 229.566406 C 215.714844 229.566406 215.808594 229.472656 215.808594 229.355469 Z M 215.808594 229.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.464844 227.785156 C 210.464844 227.667969 210.371094 227.574219 210.253906 227.574219 C 210.136719 227.574219 210.042969 227.667969 210.042969 227.785156 C 210.042969 227.902344 210.136719 227.996094 210.253906 227.996094 C 210.371094 227.996094 210.464844 227.902344 210.464844 227.785156 Z M 210.464844 227.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.210938 225.140625 C 209.210938 225.023438 209.117188 224.929688 209 224.929688 C 208.882812 224.929688 208.789062 225.023438 208.789062 225.140625 C 208.789062 225.257812 208.882812 225.351562 209 225.351562 C 209.117188 225.351562 209.210938 225.257812 209.210938 225.140625 Z M 209.210938 225.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.898438 222.457031 C 209.898438 222.339844 209.804688 222.246094 209.6875 222.246094 C 209.570312 222.246094 209.476562 222.339844 209.476562 222.457031 C 209.476562 222.574219 209.570312 222.667969 209.6875 222.667969 C 209.804688 222.667969 209.898438 222.574219 209.898438 222.457031 Z M 209.898438 222.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.910156 222.238281 C 207.910156 222.121094 207.816406 222.027344 207.699219 222.027344 C 207.582031 222.027344 207.488281 222.121094 207.488281 222.238281 C 207.488281 222.355469 207.582031 222.449219 207.699219 222.449219 C 207.816406 222.449219 207.910156 222.355469 207.910156 222.238281 Z M 207.910156 222.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.027344 224.558594 C 209.027344 224.441406 208.933594 224.347656 208.816406 224.347656 C 208.699219 224.347656 208.605469 224.441406 208.605469 224.558594 C 208.605469 224.675781 208.699219 224.769531 208.816406 224.769531 C 208.933594 224.769531 209.027344 224.675781 209.027344 224.558594 Z M 209.027344 224.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.460938 226.480469 C 210.460938 226.363281 210.367188 226.269531 210.25 226.269531 C 210.132812 226.269531 210.039062 226.363281 210.039062 226.480469 C 210.039062 226.597656 210.132812 226.691406 210.25 226.691406 C 210.367188 226.691406 210.460938 226.597656 210.460938 226.480469 Z M 210.460938 226.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.140625 228.515625 C 210.140625 228.398438 210.046875 228.304688 209.929688 228.304688 C 209.8125 228.304688 209.71875 228.398438 209.71875 228.515625 C 209.71875 228.632812 209.8125 228.726562 209.929688 228.726562 C 210.046875 228.726562 210.140625 228.632812 210.140625 228.515625 Z M 210.140625 228.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.9375 227.355469 C 206.9375 227.238281 206.84375 227.144531 206.726562 227.144531 C 206.609375 227.144531 206.515625 227.238281 206.515625 227.355469 C 206.515625 227.472656 206.609375 227.566406 206.726562 227.566406 C 206.84375 227.566406 206.9375 227.472656 206.9375 227.355469 Z M 206.9375 227.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.519531 227.144531 C 208.519531 227.027344 208.425781 226.933594 208.308594 226.933594 C 208.191406 226.933594 208.097656 227.027344 208.097656 227.144531 C 208.097656 227.261719 208.191406 227.355469 208.308594 227.355469 C 208.425781 227.355469 208.519531 227.261719 208.519531 227.144531 Z M 208.519531 227.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.515625 226.5625 C 211.515625 226.445312 211.421875 226.351562 211.304688 226.351562 C 211.1875 226.351562 211.09375 226.445312 211.09375 226.5625 C 211.09375 226.679688 211.1875 226.773438 211.304688 226.773438 C 211.421875 226.773438 211.515625 226.679688 211.515625 226.5625 Z M 211.515625 226.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.335938 228.394531 C 215.335938 228.277344 215.242188 228.183594 215.125 228.183594 C 215.007812 228.183594 214.914062 228.277344 214.914062 228.394531 C 214.914062 228.511719 215.007812 228.605469 215.125 228.605469 C 215.242188 228.605469 215.335938 228.511719 215.335938 228.394531 Z M 215.335938 228.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.644531 223.804688 C 214.644531 223.6875 214.550781 223.59375 214.433594 223.59375 C 214.316406 223.59375 214.222656 223.6875 214.222656 223.804688 C 214.222656 223.921875 214.316406 224.015625 214.433594 224.015625 C 214.550781 224.015625 214.644531 223.921875 214.644531 223.804688 Z M 214.644531 223.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.449219 221.421875 C 211.449219 221.304688 211.355469 221.210938 211.238281 221.210938 C 211.121094 221.210938 211.027344 221.304688 211.027344 221.421875 C 211.027344 221.539062 211.121094 221.632812 211.238281 221.632812 C 211.355469 221.632812 211.449219 221.539062 211.449219 221.421875 Z M 211.449219 221.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.050781 223.378906 C 211.050781 223.261719 210.957031 223.167969 210.839844 223.167969 C 210.722656 223.167969 210.628906 223.261719 210.628906 223.378906 C 210.628906 223.496094 210.722656 223.589844 210.839844 223.589844 C 210.957031 223.589844 211.050781 223.496094 211.050781 223.378906 Z M 211.050781 223.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.574219 225.691406 C 213.574219 225.574219 213.480469 225.480469 213.363281 225.480469 C 213.246094 225.480469 213.152344 225.574219 213.152344 225.691406 C 213.152344 225.808594 213.246094 225.902344 213.363281 225.902344 C 213.480469 225.902344 213.574219 225.808594 213.574219 225.691406 Z M 213.574219 225.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.128906 227.703125 C 216.128906 227.585938 216.035156 227.492188 215.917969 227.492188 C 215.800781 227.492188 215.707031 227.585938 215.707031 227.703125 C 215.707031 227.820312 215.800781 227.914062 215.917969 227.914062 C 216.035156 227.914062 216.128906 227.820312 216.128906 227.703125 Z M 216.128906 227.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.222656 226.320312 C 218.222656 226.203125 218.128906 226.109375 218.011719 226.109375 C 217.894531 226.109375 217.800781 226.203125 217.800781 226.320312 C 217.800781 226.4375 217.894531 226.53125 218.011719 226.53125 C 218.128906 226.53125 218.222656 226.4375 218.222656 226.320312 Z M 218.222656 226.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.695312 219.296875 C 217.695312 219.179688 217.601562 219.085938 217.484375 219.085938 C 217.367188 219.085938 217.273438 219.179688 217.273438 219.296875 C 217.273438 219.414062 217.367188 219.507812 217.484375 219.507812 C 217.601562 219.507812 217.695312 219.414062 217.695312 219.296875 Z M 217.695312 219.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.054688 221.953125 C 218.054688 221.835938 217.960938 221.742188 217.84375 221.742188 C 217.726562 221.742188 217.632812 221.835938 217.632812 221.953125 C 217.632812 222.070312 217.726562 222.164062 217.84375 222.164062 C 217.960938 222.164062 218.054688 222.070312 218.054688 221.953125 Z M 218.054688 221.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.421875 221.246094 C 218.421875 221.128906 218.328125 221.035156 218.210938 221.035156 C 218.09375 221.035156 218 221.128906 218 221.246094 C 218 221.363281 218.09375 221.457031 218.210938 221.457031 C 218.328125 221.457031 218.421875 221.363281 218.421875 221.246094 Z M 218.421875 221.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.550781 220 C 218.550781 219.882812 218.457031 219.789062 218.339844 219.789062 C 218.222656 219.789062 218.128906 219.882812 218.128906 220 C 218.128906 220.117188 218.222656 220.210938 218.339844 220.210938 C 218.457031 220.210938 218.550781 220.117188 218.550781 220 Z M 218.550781 220 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.445312 220.007812 C 221.445312 219.890625 221.351562 219.796875 221.234375 219.796875 C 221.117188 219.796875 221.023438 219.890625 221.023438 220.007812 C 221.023438 220.125 221.117188 220.21875 221.234375 220.21875 C 221.351562 220.21875 221.445312 220.125 221.445312 220.007812 Z M 221.445312 220.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 222.316406 222.449219 C 222.316406 222.332031 222.222656 222.238281 222.105469 222.238281 C 221.988281 222.238281 221.894531 222.332031 221.894531 222.449219 C 221.894531 222.566406 221.988281 222.660156 222.105469 222.660156 C 222.222656 222.660156 222.316406 222.566406 222.316406 222.449219 Z M 222.316406 222.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 222.347656 222.585938 C 222.347656 222.46875 222.253906 222.375 222.136719 222.375 C 222.019531 222.375 221.925781 222.46875 221.925781 222.585938 C 221.925781 222.703125 222.019531 222.796875 222.136719 222.796875 C 222.253906 222.796875 222.347656 222.703125 222.347656 222.585938 Z M 222.347656 222.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.453125 223.816406 C 223.453125 223.699219 223.359375 223.605469 223.242188 223.605469 C 223.125 223.605469 223.03125 223.699219 223.03125 223.816406 C 223.03125 223.933594 223.125 224.027344 223.242188 224.027344 C 223.359375 224.027344 223.453125 223.933594 223.453125 223.816406 Z M 223.453125 223.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.8125 224.402344 C 223.8125 224.285156 223.71875 224.191406 223.601562 224.191406 C 223.484375 224.191406 223.390625 224.285156 223.390625 224.402344 C 223.390625 224.519531 223.484375 224.613281 223.601562 224.613281 C 223.71875 224.613281 223.8125 224.519531 223.8125 224.402344 Z M 223.8125 224.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.984375 223.769531 C 218.984375 223.652344 218.890625 223.558594 218.773438 223.558594 C 218.65625 223.558594 218.5625 223.652344 218.5625 223.769531 C 218.5625 223.886719 218.65625 223.980469 218.773438 223.980469 C 218.890625 223.980469 218.984375 223.886719 218.984375 223.769531 Z M 218.984375 223.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.511719 221.367188 C 218.511719 221.25 218.417969 221.15625 218.300781 221.15625 C 218.183594 221.15625 218.089844 221.25 218.089844 221.367188 C 218.089844 221.484375 218.183594 221.578125 218.300781 221.578125 C 218.417969 221.578125 218.511719 221.484375 218.511719 221.367188 Z M 218.511719 221.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.398438 219.546875 C 218.398438 219.429688 218.304688 219.335938 218.1875 219.335938 C 218.070312 219.335938 217.976562 219.429688 217.976562 219.546875 C 217.976562 219.664062 218.070312 219.757812 218.1875 219.757812 C 218.304688 219.757812 218.398438 219.664062 218.398438 219.546875 Z M 218.398438 219.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.300781 219.03125 C 217.300781 218.914062 217.207031 218.820312 217.089844 218.820312 C 216.972656 218.820312 216.878906 218.914062 216.878906 219.03125 C 216.878906 219.148438 216.972656 219.242188 217.089844 219.242188 C 217.207031 219.242188 217.300781 219.148438 217.300781 219.03125 Z M 217.300781 219.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.078125 216.746094 C 216.078125 216.628906 215.984375 216.535156 215.867188 216.535156 C 215.75 216.535156 215.65625 216.628906 215.65625 216.746094 C 215.65625 216.863281 215.75 216.957031 215.867188 216.957031 C 215.984375 216.957031 216.078125 216.863281 216.078125 216.746094 Z M 216.078125 216.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.082031 216.363281 C 214.082031 216.246094 213.988281 216.152344 213.871094 216.152344 C 213.753906 216.152344 213.660156 216.246094 213.660156 216.363281 C 213.660156 216.480469 213.753906 216.574219 213.871094 216.574219 C 213.988281 216.574219 214.082031 216.480469 214.082031 216.363281 Z M 214.082031 216.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.210938 213.605469 C 213.210938 213.488281 213.117188 213.394531 213 213.394531 C 212.882812 213.394531 212.789062 213.488281 212.789062 213.605469 C 212.789062 213.722656 212.882812 213.816406 213 213.816406 C 213.117188 213.816406 213.210938 213.722656 213.210938 213.605469 Z M 213.210938 213.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.832031 212.011719 C 211.832031 211.894531 211.738281 211.800781 211.621094 211.800781 C 211.503906 211.800781 211.410156 211.894531 211.410156 212.011719 C 211.410156 212.128906 211.503906 212.222656 211.621094 212.222656 C 211.738281 212.222656 211.832031 212.128906 211.832031 212.011719 Z M 211.832031 212.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.695312 207.839844 C 209.695312 207.722656 209.601562 207.628906 209.484375 207.628906 C 209.367188 207.628906 209.273438 207.722656 209.273438 207.839844 C 209.273438 207.957031 209.367188 208.050781 209.484375 208.050781 C 209.601562 208.050781 209.695312 207.957031 209.695312 207.839844 Z M 209.695312 207.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.59375 208.457031 C 207.59375 208.339844 207.5 208.246094 207.382812 208.246094 C 207.265625 208.246094 207.171875 208.339844 207.171875 208.457031 C 207.171875 208.574219 207.265625 208.667969 207.382812 208.667969 C 207.5 208.667969 207.59375 208.574219 207.59375 208.457031 Z M 207.59375 208.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.101562 207.285156 C 206.101562 207.167969 206.007812 207.074219 205.890625 207.074219 C 205.773438 207.074219 205.679688 207.167969 205.679688 207.285156 C 205.679688 207.402344 205.773438 207.496094 205.890625 207.496094 C 206.007812 207.496094 206.101562 207.402344 206.101562 207.285156 Z M 206.101562 207.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.597656 209.15625 C 206.597656 209.039062 206.503906 208.945312 206.386719 208.945312 C 206.269531 208.945312 206.175781 209.039062 206.175781 209.15625 C 206.175781 209.273438 206.269531 209.367188 206.386719 209.367188 C 206.503906 209.367188 206.597656 209.273438 206.597656 209.15625 Z M 206.597656 209.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.84375 203.738281 C 209.84375 203.621094 209.75 203.527344 209.632812 203.527344 C 209.515625 203.527344 209.421875 203.621094 209.421875 203.738281 C 209.421875 203.855469 209.515625 203.949219 209.632812 203.949219 C 209.75 203.949219 209.84375 203.855469 209.84375 203.738281 Z M 209.84375 203.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.9375 201.21875 C 207.9375 201.101562 207.84375 201.007812 207.726562 201.007812 C 207.609375 201.007812 207.515625 201.101562 207.515625 201.21875 C 207.515625 201.335938 207.609375 201.429688 207.726562 201.429688 C 207.84375 201.429688 207.9375 201.335938 207.9375 201.21875 Z M 207.9375 201.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.472656 202.359375 C 206.472656 202.242188 206.378906 202.148438 206.261719 202.148438 C 206.144531 202.148438 206.050781 202.242188 206.050781 202.359375 C 206.050781 202.476562 206.144531 202.570312 206.261719 202.570312 C 206.378906 202.570312 206.472656 202.476562 206.472656 202.359375 Z M 206.472656 202.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.730469 209.769531 C 203.730469 209.652344 203.636719 209.558594 203.519531 209.558594 C 203.402344 209.558594 203.308594 209.652344 203.308594 209.769531 C 203.308594 209.886719 203.402344 209.980469 203.519531 209.980469 C 203.636719 209.980469 203.730469 209.886719 203.730469 209.769531 Z M 203.730469 209.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.328125 207.441406 C 204.328125 207.324219 204.234375 207.230469 204.117188 207.230469 C 204 207.230469 203.90625 207.324219 203.90625 207.441406 C 203.90625 207.558594 204 207.652344 204.117188 207.652344 C 204.234375 207.652344 204.328125 207.558594 204.328125 207.441406 Z M 204.328125 207.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.695312 209.84375 C 206.695312 209.726562 206.601562 209.632812 206.484375 209.632812 C 206.367188 209.632812 206.273438 209.726562 206.273438 209.84375 C 206.273438 209.960938 206.367188 210.054688 206.484375 210.054688 C 206.601562 210.054688 206.695312 209.960938 206.695312 209.84375 Z M 206.695312 209.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.109375 212.152344 C 205.109375 212.035156 205.015625 211.941406 204.898438 211.941406 C 204.78125 211.941406 204.6875 212.035156 204.6875 212.152344 C 204.6875 212.269531 204.78125 212.363281 204.898438 212.363281 C 205.015625 212.363281 205.109375 212.269531 205.109375 212.152344 Z M 205.109375 212.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.644531 214.296875 C 203.644531 214.179688 203.550781 214.085938 203.433594 214.085938 C 203.316406 214.085938 203.222656 214.179688 203.222656 214.296875 C 203.222656 214.414062 203.316406 214.507812 203.433594 214.507812 C 203.550781 214.507812 203.644531 214.414062 203.644531 214.296875 Z M 203.644531 214.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.378906 216.320312 C 199.378906 216.203125 199.285156 216.109375 199.167969 216.109375 C 199.050781 216.109375 198.957031 216.203125 198.957031 216.320312 C 198.957031 216.4375 199.050781 216.53125 199.167969 216.53125 C 199.285156 216.53125 199.378906 216.4375 199.378906 216.320312 Z M 199.378906 216.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.902344 217.847656 C 200.902344 217.730469 200.808594 217.636719 200.691406 217.636719 C 200.574219 217.636719 200.480469 217.730469 200.480469 217.847656 C 200.480469 217.964844 200.574219 218.058594 200.691406 218.058594 C 200.808594 218.058594 200.902344 217.964844 200.902344 217.847656 Z M 200.902344 217.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.992188 217.632812 C 196.992188 217.515625 196.898438 217.421875 196.78125 217.421875 C 196.664062 217.421875 196.570312 217.515625 196.570312 217.632812 C 196.570312 217.75 196.664062 217.84375 196.78125 217.84375 C 196.898438 217.84375 196.992188 217.75 196.992188 217.632812 Z M 196.992188 217.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.554688 220.347656 C 199.554688 220.230469 199.460938 220.136719 199.34375 220.136719 C 199.226562 220.136719 199.132812 220.230469 199.132812 220.347656 C 199.132812 220.464844 199.226562 220.558594 199.34375 220.558594 C 199.460938 220.558594 199.554688 220.464844 199.554688 220.347656 Z M 199.554688 220.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.195312 219.941406 C 200.195312 219.824219 200.101562 219.730469 199.984375 219.730469 C 199.867188 219.730469 199.773438 219.824219 199.773438 219.941406 C 199.773438 220.058594 199.867188 220.152344 199.984375 220.152344 C 200.101562 220.152344 200.195312 220.058594 200.195312 219.941406 Z M 200.195312 219.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.558594 218.113281 C 201.558594 217.996094 201.464844 217.902344 201.347656 217.902344 C 201.230469 217.902344 201.136719 217.996094 201.136719 218.113281 C 201.136719 218.230469 201.230469 218.324219 201.347656 218.324219 C 201.464844 218.324219 201.558594 218.230469 201.558594 218.113281 Z M 201.558594 218.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.988281 218.828125 C 200.988281 218.710938 200.894531 218.617188 200.777344 218.617188 C 200.660156 218.617188 200.566406 218.710938 200.566406 218.828125 C 200.566406 218.945312 200.660156 219.039062 200.777344 219.039062 C 200.894531 219.039062 200.988281 218.945312 200.988281 218.828125 Z M 200.988281 218.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.082031 216.742188 C 200.082031 216.625 199.988281 216.53125 199.871094 216.53125 C 199.753906 216.53125 199.660156 216.625 199.660156 216.742188 C 199.660156 216.859375 199.753906 216.953125 199.871094 216.953125 C 199.988281 216.953125 200.082031 216.859375 200.082031 216.742188 Z M 200.082031 216.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.074219 214.671875 C 203.074219 214.554688 202.980469 214.460938 202.863281 214.460938 C 202.746094 214.460938 202.652344 214.554688 202.652344 214.671875 C 202.652344 214.789062 202.746094 214.882812 202.863281 214.882812 C 202.980469 214.882812 203.074219 214.789062 203.074219 214.671875 Z M 203.074219 214.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.160156 215.75 C 205.160156 215.632812 205.066406 215.539062 204.949219 215.539062 C 204.832031 215.539062 204.738281 215.632812 204.738281 215.75 C 204.738281 215.867188 204.832031 215.960938 204.949219 215.960938 C 205.066406 215.960938 205.160156 215.867188 205.160156 215.75 Z M 205.160156 215.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.269531 216.398438 C 204.269531 216.28125 204.175781 216.1875 204.058594 216.1875 C 203.941406 216.1875 203.847656 216.28125 203.847656 216.398438 C 203.847656 216.515625 203.941406 216.609375 204.058594 216.609375 C 204.175781 216.609375 204.269531 216.515625 204.269531 216.398438 Z M 204.269531 216.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.410156 218.3125 C 204.410156 218.195312 204.316406 218.101562 204.199219 218.101562 C 204.082031 218.101562 203.988281 218.195312 203.988281 218.3125 C 203.988281 218.429688 204.082031 218.523438 204.199219 218.523438 C 204.316406 218.523438 204.410156 218.429688 204.410156 218.3125 Z M 204.410156 218.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.0625 219.53125 C 204.0625 219.414062 203.96875 219.320312 203.851562 219.320312 C 203.734375 219.320312 203.640625 219.414062 203.640625 219.53125 C 203.640625 219.648438 203.734375 219.742188 203.851562 219.742188 C 203.96875 219.742188 204.0625 219.648438 204.0625 219.53125 Z M 204.0625 219.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.316406 215.847656 C 209.316406 215.730469 209.222656 215.636719 209.105469 215.636719 C 208.988281 215.636719 208.894531 215.730469 208.894531 215.847656 C 208.894531 215.964844 208.988281 216.058594 209.105469 216.058594 C 209.222656 216.058594 209.316406 215.964844 209.316406 215.847656 Z M 209.316406 215.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.328125 217.855469 C 211.328125 217.738281 211.234375 217.644531 211.117188 217.644531 C 211 217.644531 210.90625 217.738281 210.90625 217.855469 C 210.90625 217.972656 211 218.066406 211.117188 218.066406 C 211.234375 218.066406 211.328125 217.972656 211.328125 217.855469 Z M 211.328125 217.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.984375 218.078125 C 208.984375 217.960938 208.890625 217.867188 208.773438 217.867188 C 208.65625 217.867188 208.5625 217.960938 208.5625 218.078125 C 208.5625 218.195312 208.65625 218.289062 208.773438 218.289062 C 208.890625 218.289062 208.984375 218.195312 208.984375 218.078125 Z M 208.984375 218.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.65625 216.144531 C 210.65625 216.027344 210.5625 215.933594 210.445312 215.933594 C 210.328125 215.933594 210.234375 216.027344 210.234375 216.144531 C 210.234375 216.261719 210.328125 216.355469 210.445312 216.355469 C 210.5625 216.355469 210.65625 216.261719 210.65625 216.144531 Z M 210.65625 216.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.78125 215.378906 C 208.78125 215.261719 208.6875 215.167969 208.570312 215.167969 C 208.453125 215.167969 208.359375 215.261719 208.359375 215.378906 C 208.359375 215.496094 208.453125 215.589844 208.570312 215.589844 C 208.6875 215.589844 208.78125 215.496094 208.78125 215.378906 Z M 208.78125 215.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.039062 216.804688 C 208.039062 216.6875 207.945312 216.59375 207.828125 216.59375 C 207.710938 216.59375 207.617188 216.6875 207.617188 216.804688 C 207.617188 216.921875 207.710938 217.015625 207.828125 217.015625 C 207.945312 217.015625 208.039062 216.921875 208.039062 216.804688 Z M 208.039062 216.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.421875 216.480469 C 212.421875 216.363281 212.328125 216.269531 212.210938 216.269531 C 212.09375 216.269531 212 216.363281 212 216.480469 C 212 216.597656 212.09375 216.691406 212.210938 216.691406 C 212.328125 216.691406 212.421875 216.597656 212.421875 216.480469 Z M 212.421875 216.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.539062 215.824219 C 207.539062 215.707031 207.445312 215.613281 207.328125 215.613281 C 207.210938 215.613281 207.117188 215.707031 207.117188 215.824219 C 207.117188 215.941406 207.210938 216.035156 207.328125 216.035156 C 207.445312 216.035156 207.539062 215.941406 207.539062 215.824219 Z M 207.539062 215.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.25 216.144531 C 206.25 216.027344 206.15625 215.933594 206.039062 215.933594 C 205.921875 215.933594 205.828125 216.027344 205.828125 216.144531 C 205.828125 216.261719 205.921875 216.355469 206.039062 216.355469 C 206.15625 216.355469 206.25 216.261719 206.25 216.144531 Z M 206.25 216.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.058594 220.054688 C 205.058594 219.9375 204.964844 219.84375 204.847656 219.84375 C 204.730469 219.84375 204.636719 219.9375 204.636719 220.054688 C 204.636719 220.171875 204.730469 220.265625 204.847656 220.265625 C 204.964844 220.265625 205.058594 220.171875 205.058594 220.054688 Z M 205.058594 220.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.464844 220.375 C 204.464844 220.257812 204.371094 220.164062 204.253906 220.164062 C 204.136719 220.164062 204.042969 220.257812 204.042969 220.375 C 204.042969 220.492188 204.136719 220.585938 204.253906 220.585938 C 204.371094 220.585938 204.464844 220.492188 204.464844 220.375 Z M 204.464844 220.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.582031 218.875 C 203.582031 218.757812 203.488281 218.664062 203.371094 218.664062 C 203.253906 218.664062 203.160156 218.757812 203.160156 218.875 C 203.160156 218.992188 203.253906 219.085938 203.371094 219.085938 C 203.488281 219.085938 203.582031 218.992188 203.582031 218.875 Z M 203.582031 218.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.601562 217.769531 C 206.601562 217.652344 206.507812 217.558594 206.390625 217.558594 C 206.273438 217.558594 206.179688 217.652344 206.179688 217.769531 C 206.179688 217.886719 206.273438 217.980469 206.390625 217.980469 C 206.507812 217.980469 206.601562 217.886719 206.601562 217.769531 Z M 206.601562 217.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.582031 220.648438 C 206.582031 220.53125 206.488281 220.4375 206.371094 220.4375 C 206.253906 220.4375 206.160156 220.53125 206.160156 220.648438 C 206.160156 220.765625 206.253906 220.859375 206.371094 220.859375 C 206.488281 220.859375 206.582031 220.765625 206.582031 220.648438 Z M 206.582031 220.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.234375 217.550781 C 200.234375 217.433594 200.140625 217.339844 200.023438 217.339844 C 199.90625 217.339844 199.8125 217.433594 199.8125 217.550781 C 199.8125 217.667969 199.90625 217.761719 200.023438 217.761719 C 200.140625 217.761719 200.234375 217.667969 200.234375 217.550781 Z M 200.234375 217.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.726562 215.75 C 200.726562 215.632812 200.632812 215.539062 200.515625 215.539062 C 200.398438 215.539062 200.304688 215.632812 200.304688 215.75 C 200.304688 215.867188 200.398438 215.960938 200.515625 215.960938 C 200.632812 215.960938 200.726562 215.867188 200.726562 215.75 Z M 200.726562 215.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.214844 216.621094 C 200.214844 216.503906 200.121094 216.410156 200.003906 216.410156 C 199.886719 216.410156 199.792969 216.503906 199.792969 216.621094 C 199.792969 216.738281 199.886719 216.832031 200.003906 216.832031 C 200.121094 216.832031 200.214844 216.738281 200.214844 216.621094 Z M 200.214844 216.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.9375 216 C 200.9375 215.882812 200.84375 215.789062 200.726562 215.789062 C 200.609375 215.789062 200.515625 215.882812 200.515625 216 C 200.515625 216.117188 200.609375 216.210938 200.726562 216.210938 C 200.84375 216.210938 200.9375 216.117188 200.9375 216 Z M 200.9375 216 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.183594 217.5625 C 202.183594 217.445312 202.089844 217.351562 201.972656 217.351562 C 201.855469 217.351562 201.761719 217.445312 201.761719 217.5625 C 201.761719 217.679688 201.855469 217.773438 201.972656 217.773438 C 202.089844 217.773438 202.183594 217.679688 202.183594 217.5625 Z M 202.183594 217.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.574219 220.789062 C 204.574219 220.671875 204.480469 220.578125 204.363281 220.578125 C 204.246094 220.578125 204.152344 220.671875 204.152344 220.789062 C 204.152344 220.90625 204.246094 221 204.363281 221 C 204.480469 221 204.574219 220.90625 204.574219 220.789062 Z M 204.574219 220.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.515625 215.371094 C 207.515625 215.253906 207.421875 215.160156 207.304688 215.160156 C 207.1875 215.160156 207.09375 215.253906 207.09375 215.371094 C 207.09375 215.488281 207.1875 215.582031 207.304688 215.582031 C 207.421875 215.582031 207.515625 215.488281 207.515625 215.371094 Z M 207.515625 215.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.699219 215.078125 C 208.699219 214.960938 208.605469 214.867188 208.488281 214.867188 C 208.371094 214.867188 208.277344 214.960938 208.277344 215.078125 C 208.277344 215.195312 208.371094 215.289062 208.488281 215.289062 C 208.605469 215.289062 208.699219 215.195312 208.699219 215.078125 Z M 208.699219 215.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.863281 214.90625 C 207.863281 214.789062 207.769531 214.695312 207.652344 214.695312 C 207.535156 214.695312 207.441406 214.789062 207.441406 214.90625 C 207.441406 215.023438 207.535156 215.117188 207.652344 215.117188 C 207.769531 215.117188 207.863281 215.023438 207.863281 214.90625 Z M 207.863281 214.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.652344 212.710938 C 210.652344 212.59375 210.558594 212.5 210.441406 212.5 C 210.324219 212.5 210.230469 212.59375 210.230469 212.710938 C 210.230469 212.828125 210.324219 212.921875 210.441406 212.921875 C 210.558594 212.921875 210.652344 212.828125 210.652344 212.710938 Z M 210.652344 212.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.929688 211.242188 C 210.929688 211.125 210.835938 211.03125 210.71875 211.03125 C 210.601562 211.03125 210.507812 211.125 210.507812 211.242188 C 210.507812 211.359375 210.601562 211.453125 210.71875 211.453125 C 210.835938 211.453125 210.929688 211.359375 210.929688 211.242188 Z M 210.929688 211.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.21875 209.523438 C 213.21875 209.40625 213.125 209.3125 213.007812 209.3125 C 212.890625 209.3125 212.796875 209.40625 212.796875 209.523438 C 212.796875 209.640625 212.890625 209.734375 213.007812 209.734375 C 213.125 209.734375 213.21875 209.640625 213.21875 209.523438 Z M 213.21875 209.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.78125 208.269531 C 214.78125 208.152344 214.6875 208.058594 214.570312 208.058594 C 214.453125 208.058594 214.359375 208.152344 214.359375 208.269531 C 214.359375 208.386719 214.453125 208.480469 214.570312 208.480469 C 214.6875 208.480469 214.78125 208.386719 214.78125 208.269531 Z M 214.78125 208.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.242188 208.816406 C 212.242188 208.699219 212.148438 208.605469 212.03125 208.605469 C 211.914062 208.605469 211.820312 208.699219 211.820312 208.816406 C 211.820312 208.933594 211.914062 209.027344 212.03125 209.027344 C 212.148438 209.027344 212.242188 208.933594 212.242188 208.816406 Z M 212.242188 208.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.472656 207.867188 C 210.472656 207.75 210.378906 207.65625 210.261719 207.65625 C 210.144531 207.65625 210.050781 207.75 210.050781 207.867188 C 210.050781 207.984375 210.144531 208.078125 210.261719 208.078125 C 210.378906 208.078125 210.472656 207.984375 210.472656 207.867188 Z M 210.472656 207.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.808594 209.671875 C 211.808594 209.554688 211.714844 209.460938 211.597656 209.460938 C 211.480469 209.460938 211.386719 209.554688 211.386719 209.671875 C 211.386719 209.789062 211.480469 209.882812 211.597656 209.882812 C 211.714844 209.882812 211.808594 209.789062 211.808594 209.671875 Z M 211.808594 209.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.492188 212.089844 C 210.492188 211.972656 210.398438 211.878906 210.28125 211.878906 C 210.164062 211.878906 210.070312 211.972656 210.070312 212.089844 C 210.070312 212.207031 210.164062 212.300781 210.28125 212.300781 C 210.398438 212.300781 210.492188 212.207031 210.492188 212.089844 Z M 210.492188 212.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.746094 218.296875 C 211.746094 218.179688 211.652344 218.085938 211.535156 218.085938 C 211.417969 218.085938 211.324219 218.179688 211.324219 218.296875 C 211.324219 218.414062 211.417969 218.507812 211.535156 218.507812 C 211.652344 218.507812 211.746094 218.414062 211.746094 218.296875 Z M 211.746094 218.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.535156 220.703125 C 209.535156 220.585938 209.441406 220.492188 209.324219 220.492188 C 209.207031 220.492188 209.113281 220.585938 209.113281 220.703125 C 209.113281 220.820312 209.207031 220.914062 209.324219 220.914062 C 209.441406 220.914062 209.535156 220.820312 209.535156 220.703125 Z M 209.535156 220.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.476562 217.546875 C 210.476562 217.429688 210.382812 217.335938 210.265625 217.335938 C 210.148438 217.335938 210.054688 217.429688 210.054688 217.546875 C 210.054688 217.664062 210.148438 217.757812 210.265625 217.757812 C 210.382812 217.757812 210.476562 217.664062 210.476562 217.546875 Z M 210.476562 217.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.992188 217.390625 C 211.992188 217.273438 211.898438 217.179688 211.78125 217.179688 C 211.664062 217.179688 211.570312 217.273438 211.570312 217.390625 C 211.570312 217.507812 211.664062 217.601562 211.78125 217.601562 C 211.898438 217.601562 211.992188 217.507812 211.992188 217.390625 Z M 211.992188 217.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.121094 217.167969 C 212.121094 217.050781 212.027344 216.957031 211.910156 216.957031 C 211.792969 216.957031 211.699219 217.050781 211.699219 217.167969 C 211.699219 217.285156 211.792969 217.378906 211.910156 217.378906 C 212.027344 217.378906 212.121094 217.285156 212.121094 217.167969 Z M 212.121094 217.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.453125 217.035156 C 210.453125 216.917969 210.359375 216.824219 210.242188 216.824219 C 210.125 216.824219 210.03125 216.917969 210.03125 217.035156 C 210.03125 217.152344 210.125 217.246094 210.242188 217.246094 C 210.359375 217.246094 210.453125 217.152344 210.453125 217.035156 Z M 210.453125 217.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.539062 214.246094 C 211.539062 214.128906 211.445312 214.035156 211.328125 214.035156 C 211.210938 214.035156 211.117188 214.128906 211.117188 214.246094 C 211.117188 214.363281 211.210938 214.457031 211.328125 214.457031 C 211.445312 214.457031 211.539062 214.363281 211.539062 214.246094 Z M 211.539062 214.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.667969 213.769531 C 210.667969 213.652344 210.574219 213.558594 210.457031 213.558594 C 210.339844 213.558594 210.246094 213.652344 210.246094 213.769531 C 210.246094 213.886719 210.339844 213.980469 210.457031 213.980469 C 210.574219 213.980469 210.667969 213.886719 210.667969 213.769531 Z M 210.667969 213.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.519531 217.402344 C 211.519531 217.285156 211.425781 217.191406 211.308594 217.191406 C 211.191406 217.191406 211.097656 217.285156 211.097656 217.402344 C 211.097656 217.519531 211.191406 217.613281 211.308594 217.613281 C 211.425781 217.613281 211.519531 217.519531 211.519531 217.402344 Z M 211.519531 217.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.128906 216.410156 C 212.128906 216.292969 212.035156 216.199219 211.917969 216.199219 C 211.800781 216.199219 211.707031 216.292969 211.707031 216.410156 C 211.707031 216.527344 211.800781 216.621094 211.917969 216.621094 C 212.035156 216.621094 212.128906 216.527344 212.128906 216.410156 Z M 212.128906 216.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.324219 217.214844 C 209.324219 217.097656 209.230469 217.003906 209.113281 217.003906 C 208.996094 217.003906 208.902344 217.097656 208.902344 217.214844 C 208.902344 217.332031 208.996094 217.425781 209.113281 217.425781 C 209.230469 217.425781 209.324219 217.332031 209.324219 217.214844 Z M 209.324219 217.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.761719 217.617188 C 209.761719 217.5 209.667969 217.40625 209.550781 217.40625 C 209.433594 217.40625 209.339844 217.5 209.339844 217.617188 C 209.339844 217.734375 209.433594 217.828125 209.550781 217.828125 C 209.667969 217.828125 209.761719 217.734375 209.761719 217.617188 Z M 209.761719 217.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.449219 216.066406 C 206.449219 215.949219 206.355469 215.855469 206.238281 215.855469 C 206.121094 215.855469 206.027344 215.949219 206.027344 216.066406 C 206.027344 216.183594 206.121094 216.277344 206.238281 216.277344 C 206.355469 216.277344 206.449219 216.183594 206.449219 216.066406 Z M 206.449219 216.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.492188 218.296875 C 205.492188 218.179688 205.398438 218.085938 205.28125 218.085938 C 205.164062 218.085938 205.070312 218.179688 205.070312 218.296875 C 205.070312 218.414062 205.164062 218.507812 205.28125 218.507812 C 205.398438 218.507812 205.492188 218.414062 205.492188 218.296875 Z M 205.492188 218.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.058594 219.949219 C 205.058594 219.832031 204.964844 219.738281 204.847656 219.738281 C 204.730469 219.738281 204.636719 219.832031 204.636719 219.949219 C 204.636719 220.066406 204.730469 220.160156 204.847656 220.160156 C 204.964844 220.160156 205.058594 220.066406 205.058594 219.949219 Z M 205.058594 219.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.644531 223.089844 C 204.644531 222.972656 204.550781 222.878906 204.433594 222.878906 C 204.316406 222.878906 204.222656 222.972656 204.222656 223.089844 C 204.222656 223.207031 204.316406 223.300781 204.433594 223.300781 C 204.550781 223.300781 204.644531 223.207031 204.644531 223.089844 Z M 204.644531 223.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.800781 224.097656 C 204.800781 223.980469 204.707031 223.886719 204.589844 223.886719 C 204.472656 223.886719 204.378906 223.980469 204.378906 224.097656 C 204.378906 224.214844 204.472656 224.308594 204.589844 224.308594 C 204.707031 224.308594 204.800781 224.214844 204.800781 224.097656 Z M 204.800781 224.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.566406 223.707031 C 202.566406 223.589844 202.472656 223.496094 202.355469 223.496094 C 202.238281 223.496094 202.144531 223.589844 202.144531 223.707031 C 202.144531 223.824219 202.238281 223.917969 202.355469 223.917969 C 202.472656 223.917969 202.566406 223.824219 202.566406 223.707031 Z M 202.566406 223.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.582031 221.695312 C 202.582031 221.578125 202.488281 221.484375 202.371094 221.484375 C 202.253906 221.484375 202.160156 221.578125 202.160156 221.695312 C 202.160156 221.8125 202.253906 221.90625 202.371094 221.90625 C 202.488281 221.90625 202.582031 221.8125 202.582031 221.695312 Z M 202.582031 221.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.503906 223.664062 C 203.503906 223.546875 203.410156 223.453125 203.292969 223.453125 C 203.175781 223.453125 203.082031 223.546875 203.082031 223.664062 C 203.082031 223.78125 203.175781 223.875 203.292969 223.875 C 203.410156 223.875 203.503906 223.78125 203.503906 223.664062 Z M 203.503906 223.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.585938 223.324219 C 203.585938 223.207031 203.492188 223.113281 203.375 223.113281 C 203.257812 223.113281 203.164062 223.207031 203.164062 223.324219 C 203.164062 223.441406 203.257812 223.535156 203.375 223.535156 C 203.492188 223.535156 203.585938 223.441406 203.585938 223.324219 Z M 203.585938 223.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.367188 225.492188 C 202.367188 225.375 202.273438 225.28125 202.15625 225.28125 C 202.039062 225.28125 201.945312 225.375 201.945312 225.492188 C 201.945312 225.609375 202.039062 225.703125 202.15625 225.703125 C 202.273438 225.703125 202.367188 225.609375 202.367188 225.492188 Z M 202.367188 225.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.78125 222.277344 C 204.78125 222.160156 204.6875 222.066406 204.570312 222.066406 C 204.453125 222.066406 204.359375 222.160156 204.359375 222.277344 C 204.359375 222.394531 204.453125 222.488281 204.570312 222.488281 C 204.6875 222.488281 204.78125 222.394531 204.78125 222.277344 Z M 204.78125 222.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.53125 220.84375 C 206.53125 220.726562 206.4375 220.632812 206.320312 220.632812 C 206.203125 220.632812 206.109375 220.726562 206.109375 220.84375 C 206.109375 220.960938 206.203125 221.054688 206.320312 221.054688 C 206.4375 221.054688 206.53125 220.960938 206.53125 220.84375 Z M 206.53125 220.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.890625 219.785156 C 209.890625 219.667969 209.796875 219.574219 209.679688 219.574219 C 209.5625 219.574219 209.46875 219.667969 209.46875 219.785156 C 209.46875 219.902344 209.5625 219.996094 209.679688 219.996094 C 209.796875 219.996094 209.890625 219.902344 209.890625 219.785156 Z M 209.890625 219.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.824219 218.242188 C 208.824219 218.125 208.730469 218.03125 208.613281 218.03125 C 208.496094 218.03125 208.402344 218.125 208.402344 218.242188 C 208.402344 218.359375 208.496094 218.453125 208.613281 218.453125 C 208.730469 218.453125 208.824219 218.359375 208.824219 218.242188 Z M 208.824219 218.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.113281 214.222656 C 210.113281 214.105469 210.019531 214.011719 209.902344 214.011719 C 209.785156 214.011719 209.691406 214.105469 209.691406 214.222656 C 209.691406 214.339844 209.785156 214.433594 209.902344 214.433594 C 210.019531 214.433594 210.113281 214.339844 210.113281 214.222656 Z M 210.113281 214.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.5 213.925781 C 206.5 213.808594 206.40625 213.714844 206.289062 213.714844 C 206.171875 213.714844 206.078125 213.808594 206.078125 213.925781 C 206.078125 214.042969 206.171875 214.136719 206.289062 214.136719 C 206.40625 214.136719 206.5 214.042969 206.5 213.925781 Z M 206.5 213.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.375 213.019531 C 210.375 212.902344 210.28125 212.808594 210.164062 212.808594 C 210.046875 212.808594 209.953125 212.902344 209.953125 213.019531 C 209.953125 213.136719 210.046875 213.230469 210.164062 213.230469 C 210.28125 213.230469 210.375 213.136719 210.375 213.019531 Z M 210.375 213.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.316406 214.832031 C 209.316406 214.714844 209.222656 214.621094 209.105469 214.621094 C 208.988281 214.621094 208.894531 214.714844 208.894531 214.832031 C 208.894531 214.949219 208.988281 215.042969 209.105469 215.042969 C 209.222656 215.042969 209.316406 214.949219 209.316406 214.832031 Z M 209.316406 214.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.707031 212.558594 C 208.707031 212.441406 208.613281 212.347656 208.496094 212.347656 C 208.378906 212.347656 208.285156 212.441406 208.285156 212.558594 C 208.285156 212.675781 208.378906 212.769531 208.496094 212.769531 C 208.613281 212.769531 208.707031 212.675781 208.707031 212.558594 Z M 208.707031 212.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.195312 215.261719 C 210.195312 215.144531 210.101562 215.050781 209.984375 215.050781 C 209.867188 215.050781 209.773438 215.144531 209.773438 215.261719 C 209.773438 215.378906 209.867188 215.472656 209.984375 215.472656 C 210.101562 215.472656 210.195312 215.378906 210.195312 215.261719 Z M 210.195312 215.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.453125 216.800781 C 209.453125 216.683594 209.359375 216.589844 209.242188 216.589844 C 209.125 216.589844 209.03125 216.683594 209.03125 216.800781 C 209.03125 216.917969 209.125 217.011719 209.242188 217.011719 C 209.359375 217.011719 209.453125 216.917969 209.453125 216.800781 Z M 209.453125 216.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.046875 216.804688 C 212.046875 216.6875 211.953125 216.59375 211.835938 216.59375 C 211.71875 216.59375 211.625 216.6875 211.625 216.804688 C 211.625 216.921875 211.71875 217.015625 211.835938 217.015625 C 211.953125 217.015625 212.046875 216.921875 212.046875 216.804688 Z M 212.046875 216.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.609375 217.945312 C 211.609375 217.828125 211.515625 217.734375 211.398438 217.734375 C 211.28125 217.734375 211.1875 217.828125 211.1875 217.945312 C 211.1875 218.0625 211.28125 218.15625 211.398438 218.15625 C 211.515625 218.15625 211.609375 218.0625 211.609375 217.945312 Z M 211.609375 217.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.5 220.96875 C 205.5 220.851562 205.40625 220.757812 205.289062 220.757812 C 205.171875 220.757812 205.078125 220.851562 205.078125 220.96875 C 205.078125 221.085938 205.171875 221.179688 205.289062 221.179688 C 205.40625 221.179688 205.5 221.085938 205.5 220.96875 Z M 205.5 220.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.769531 218.566406 C 205.769531 218.449219 205.675781 218.355469 205.558594 218.355469 C 205.441406 218.355469 205.347656 218.449219 205.347656 218.566406 C 205.347656 218.683594 205.441406 218.777344 205.558594 218.777344 C 205.675781 218.777344 205.769531 218.683594 205.769531 218.566406 Z M 205.769531 218.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.53125 221.089844 C 208.53125 220.972656 208.4375 220.878906 208.320312 220.878906 C 208.203125 220.878906 208.109375 220.972656 208.109375 221.089844 C 208.109375 221.207031 208.203125 221.300781 208.320312 221.300781 C 208.4375 221.300781 208.53125 221.207031 208.53125 221.089844 Z M 208.53125 221.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.875 220.300781 C 206.875 220.183594 206.78125 220.089844 206.664062 220.089844 C 206.546875 220.089844 206.453125 220.183594 206.453125 220.300781 C 206.453125 220.417969 206.546875 220.511719 206.664062 220.511719 C 206.78125 220.511719 206.875 220.417969 206.875 220.300781 Z M 206.875 220.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.039062 221.210938 C 204.039062 221.09375 203.945312 221 203.828125 221 C 203.710938 221 203.617188 221.09375 203.617188 221.210938 C 203.617188 221.328125 203.710938 221.421875 203.828125 221.421875 C 203.945312 221.421875 204.039062 221.328125 204.039062 221.210938 Z M 204.039062 221.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.417969 218.25 C 202.417969 218.132812 202.324219 218.039062 202.207031 218.039062 C 202.089844 218.039062 201.996094 218.132812 201.996094 218.25 C 201.996094 218.367188 202.089844 218.460938 202.207031 218.460938 C 202.324219 218.460938 202.417969 218.367188 202.417969 218.25 Z M 202.417969 218.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.886719 214.328125 C 204.886719 214.210938 204.792969 214.117188 204.675781 214.117188 C 204.558594 214.117188 204.464844 214.210938 204.464844 214.328125 C 204.464844 214.445312 204.558594 214.539062 204.675781 214.539062 C 204.792969 214.539062 204.886719 214.445312 204.886719 214.328125 Z M 204.886719 214.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.960938 217.394531 C 203.960938 217.277344 203.867188 217.183594 203.75 217.183594 C 203.632812 217.183594 203.539062 217.277344 203.539062 217.394531 C 203.539062 217.511719 203.632812 217.605469 203.75 217.605469 C 203.867188 217.605469 203.960938 217.511719 203.960938 217.394531 Z M 203.960938 217.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.726562 214.605469 C 202.726562 214.488281 202.632812 214.394531 202.515625 214.394531 C 202.398438 214.394531 202.304688 214.488281 202.304688 214.605469 C 202.304688 214.722656 202.398438 214.816406 202.515625 214.816406 C 202.632812 214.816406 202.726562 214.722656 202.726562 214.605469 Z M 202.726562 214.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.046875 213.207031 C 201.046875 213.089844 200.953125 212.996094 200.835938 212.996094 C 200.71875 212.996094 200.625 213.089844 200.625 213.207031 C 200.625 213.324219 200.71875 213.417969 200.835938 213.417969 C 200.953125 213.417969 201.046875 213.324219 201.046875 213.207031 Z M 201.046875 213.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.347656 213.261719 C 202.347656 213.144531 202.253906 213.050781 202.136719 213.050781 C 202.019531 213.050781 201.925781 213.144531 201.925781 213.261719 C 201.925781 213.378906 202.019531 213.472656 202.136719 213.472656 C 202.253906 213.472656 202.347656 213.378906 202.347656 213.261719 Z M 202.347656 213.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.386719 211.191406 C 205.386719 211.074219 205.292969 210.980469 205.175781 210.980469 C 205.058594 210.980469 204.964844 211.074219 204.964844 211.191406 C 204.964844 211.308594 205.058594 211.402344 205.175781 211.402344 C 205.292969 211.402344 205.386719 211.308594 205.386719 211.191406 Z M 205.386719 211.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.410156 209.878906 C 204.410156 209.761719 204.316406 209.667969 204.199219 209.667969 C 204.082031 209.667969 203.988281 209.761719 203.988281 209.878906 C 203.988281 209.996094 204.082031 210.089844 204.199219 210.089844 C 204.316406 210.089844 204.410156 209.996094 204.410156 209.878906 Z M 204.410156 209.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.625 212.074219 C 205.625 211.957031 205.53125 211.863281 205.414062 211.863281 C 205.296875 211.863281 205.203125 211.957031 205.203125 212.074219 C 205.203125 212.191406 205.296875 212.285156 205.414062 212.285156 C 205.53125 212.285156 205.625 212.191406 205.625 212.074219 Z M 205.625 212.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.535156 209.433594 C 207.535156 209.316406 207.441406 209.222656 207.324219 209.222656 C 207.207031 209.222656 207.113281 209.316406 207.113281 209.433594 C 207.113281 209.550781 207.207031 209.644531 207.324219 209.644531 C 207.441406 209.644531 207.535156 209.550781 207.535156 209.433594 Z M 207.535156 209.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.628906 209.351562 C 208.628906 209.234375 208.535156 209.140625 208.417969 209.140625 C 208.300781 209.140625 208.207031 209.234375 208.207031 209.351562 C 208.207031 209.46875 208.300781 209.5625 208.417969 209.5625 C 208.535156 209.5625 208.628906 209.46875 208.628906 209.351562 Z M 208.628906 209.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.933594 212.84375 C 206.933594 212.726562 206.839844 212.632812 206.722656 212.632812 C 206.605469 212.632812 206.511719 212.726562 206.511719 212.84375 C 206.511719 212.960938 206.605469 213.054688 206.722656 213.054688 C 206.839844 213.054688 206.933594 212.960938 206.933594 212.84375 Z M 206.933594 212.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.90625 211.851562 C 206.90625 211.734375 206.8125 211.640625 206.695312 211.640625 C 206.578125 211.640625 206.484375 211.734375 206.484375 211.851562 C 206.484375 211.96875 206.578125 212.0625 206.695312 212.0625 C 206.8125 212.0625 206.90625 211.96875 206.90625 211.851562 Z M 206.90625 211.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.078125 210.621094 C 205.078125 210.503906 204.984375 210.410156 204.867188 210.410156 C 204.75 210.410156 204.65625 210.503906 204.65625 210.621094 C 204.65625 210.738281 204.75 210.832031 204.867188 210.832031 C 204.984375 210.832031 205.078125 210.738281 205.078125 210.621094 Z M 205.078125 210.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.214844 214.136719 C 204.214844 214.019531 204.121094 213.925781 204.003906 213.925781 C 203.886719 213.925781 203.792969 214.019531 203.792969 214.136719 C 203.792969 214.253906 203.886719 214.347656 204.003906 214.347656 C 204.121094 214.347656 204.214844 214.253906 204.214844 214.136719 Z M 204.214844 214.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.667969 213.800781 C 204.667969 213.683594 204.574219 213.589844 204.457031 213.589844 C 204.339844 213.589844 204.246094 213.683594 204.246094 213.800781 C 204.246094 213.917969 204.339844 214.011719 204.457031 214.011719 C 204.574219 214.011719 204.667969 213.917969 204.667969 213.800781 Z M 204.667969 213.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.546875 216.144531 C 207.546875 216.027344 207.453125 215.933594 207.335938 215.933594 C 207.21875 215.933594 207.125 216.027344 207.125 216.144531 C 207.125 216.261719 207.21875 216.355469 207.335938 216.355469 C 207.453125 216.355469 207.546875 216.261719 207.546875 216.144531 Z M 207.546875 216.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.921875 213.152344 C 209.921875 213.035156 209.828125 212.941406 209.710938 212.941406 C 209.59375 212.941406 209.5 213.035156 209.5 213.152344 C 209.5 213.269531 209.59375 213.363281 209.710938 213.363281 C 209.828125 213.363281 209.921875 213.269531 209.921875 213.152344 Z M 209.921875 213.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.980469 215.023438 C 205.980469 214.90625 205.886719 214.8125 205.769531 214.8125 C 205.652344 214.8125 205.558594 214.90625 205.558594 215.023438 C 205.558594 215.140625 205.652344 215.234375 205.769531 215.234375 C 205.886719 215.234375 205.980469 215.140625 205.980469 215.023438 Z M 205.980469 215.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.386719 214.425781 C 205.386719 214.308594 205.292969 214.214844 205.175781 214.214844 C 205.058594 214.214844 204.964844 214.308594 204.964844 214.425781 C 204.964844 214.542969 205.058594 214.636719 205.175781 214.636719 C 205.292969 214.636719 205.386719 214.542969 205.386719 214.425781 Z M 205.386719 214.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.332031 212.640625 C 207.332031 212.523438 207.238281 212.429688 207.121094 212.429688 C 207.003906 212.429688 206.910156 212.523438 206.910156 212.640625 C 206.910156 212.757812 207.003906 212.851562 207.121094 212.851562 C 207.238281 212.851562 207.332031 212.757812 207.332031 212.640625 Z M 207.332031 212.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.9375 216.628906 C 211.9375 216.511719 211.84375 216.417969 211.726562 216.417969 C 211.609375 216.417969 211.515625 216.511719 211.515625 216.628906 C 211.515625 216.746094 211.609375 216.839844 211.726562 216.839844 C 211.84375 216.839844 211.9375 216.746094 211.9375 216.628906 Z M 211.9375 216.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.53125 221.9375 C 211.53125 221.820312 211.4375 221.726562 211.320312 221.726562 C 211.203125 221.726562 211.109375 221.820312 211.109375 221.9375 C 211.109375 222.054688 211.203125 222.148438 211.320312 222.148438 C 211.4375 222.148438 211.53125 222.054688 211.53125 221.9375 Z M 211.53125 221.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.039062 225.570312 C 211.039062 225.453125 210.945312 225.359375 210.828125 225.359375 C 210.710938 225.359375 210.617188 225.453125 210.617188 225.570312 C 210.617188 225.6875 210.710938 225.78125 210.828125 225.78125 C 210.945312 225.78125 211.039062 225.6875 211.039062 225.570312 Z M 211.039062 225.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.878906 226.355469 C 211.878906 226.238281 211.785156 226.144531 211.667969 226.144531 C 211.550781 226.144531 211.457031 226.238281 211.457031 226.355469 C 211.457031 226.472656 211.550781 226.566406 211.667969 226.566406 C 211.785156 226.566406 211.878906 226.472656 211.878906 226.355469 Z M 211.878906 226.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.324219 221.074219 C 211.324219 220.957031 211.230469 220.863281 211.113281 220.863281 C 210.996094 220.863281 210.902344 220.957031 210.902344 221.074219 C 210.902344 221.191406 210.996094 221.285156 211.113281 221.285156 C 211.230469 221.285156 211.324219 221.191406 211.324219 221.074219 Z M 211.324219 221.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.492188 222.703125 C 216.492188 222.585938 216.398438 222.492188 216.28125 222.492188 C 216.164062 222.492188 216.070312 222.585938 216.070312 222.703125 C 216.070312 222.820312 216.164062 222.914062 216.28125 222.914062 C 216.398438 222.914062 216.492188 222.820312 216.492188 222.703125 Z M 216.492188 222.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.128906 221.945312 C 217.128906 221.828125 217.035156 221.734375 216.917969 221.734375 C 216.800781 221.734375 216.707031 221.828125 216.707031 221.945312 C 216.707031 222.0625 216.800781 222.15625 216.917969 222.15625 C 217.035156 222.15625 217.128906 222.0625 217.128906 221.945312 Z M 217.128906 221.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.425781 223.496094 C 216.425781 223.378906 216.332031 223.285156 216.214844 223.285156 C 216.097656 223.285156 216.003906 223.378906 216.003906 223.496094 C 216.003906 223.613281 216.097656 223.707031 216.214844 223.707031 C 216.332031 223.707031 216.425781 223.613281 216.425781 223.496094 Z M 216.425781 223.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.707031 217.90625 C 213.707031 217.789062 213.613281 217.695312 213.496094 217.695312 C 213.378906 217.695312 213.285156 217.789062 213.285156 217.90625 C 213.285156 218.023438 213.378906 218.117188 213.496094 218.117188 C 213.613281 218.117188 213.707031 218.023438 213.707031 217.90625 Z M 213.707031 217.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.347656 218.148438 C 212.347656 218.03125 212.253906 217.9375 212.136719 217.9375 C 212.019531 217.9375 211.925781 218.03125 211.925781 218.148438 C 211.925781 218.265625 212.019531 218.359375 212.136719 218.359375 C 212.253906 218.359375 212.347656 218.265625 212.347656 218.148438 Z M 212.347656 218.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.078125 217.328125 C 213.078125 217.210938 212.984375 217.117188 212.867188 217.117188 C 212.75 217.117188 212.65625 217.210938 212.65625 217.328125 C 212.65625 217.445312 212.75 217.539062 212.867188 217.539062 C 212.984375 217.539062 213.078125 217.445312 213.078125 217.328125 Z M 213.078125 217.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.457031 214.511719 C 210.457031 214.394531 210.363281 214.300781 210.246094 214.300781 C 210.128906 214.300781 210.035156 214.394531 210.035156 214.511719 C 210.035156 214.628906 210.128906 214.722656 210.246094 214.722656 C 210.363281 214.722656 210.457031 214.628906 210.457031 214.511719 Z M 210.457031 214.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.542969 213.785156 C 209.542969 213.667969 209.449219 213.574219 209.332031 213.574219 C 209.214844 213.574219 209.121094 213.667969 209.121094 213.785156 C 209.121094 213.902344 209.214844 213.996094 209.332031 213.996094 C 209.449219 213.996094 209.542969 213.902344 209.542969 213.785156 Z M 209.542969 213.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.109375 213.550781 C 211.109375 213.433594 211.015625 213.339844 210.898438 213.339844 C 210.78125 213.339844 210.6875 213.433594 210.6875 213.550781 C 210.6875 213.667969 210.78125 213.761719 210.898438 213.761719 C 211.015625 213.761719 211.109375 213.667969 211.109375 213.550781 Z M 211.109375 213.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.171875 213.328125 C 208.171875 213.210938 208.078125 213.117188 207.960938 213.117188 C 207.84375 213.117188 207.75 213.210938 207.75 213.328125 C 207.75 213.445312 207.84375 213.539062 207.960938 213.539062 C 208.078125 213.539062 208.171875 213.445312 208.171875 213.328125 Z M 208.171875 213.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.699219 211.746094 C 208.699219 211.628906 208.605469 211.535156 208.488281 211.535156 C 208.371094 211.535156 208.277344 211.628906 208.277344 211.746094 C 208.277344 211.863281 208.371094 211.957031 208.488281 211.957031 C 208.605469 211.957031 208.699219 211.863281 208.699219 211.746094 Z M 208.699219 211.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.773438 210.113281 C 209.773438 209.996094 209.679688 209.902344 209.5625 209.902344 C 209.445312 209.902344 209.351562 209.996094 209.351562 210.113281 C 209.351562 210.230469 209.445312 210.324219 209.5625 210.324219 C 209.679688 210.324219 209.773438 210.230469 209.773438 210.113281 Z M 209.773438 210.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.542969 211.832031 C 209.542969 211.714844 209.449219 211.621094 209.332031 211.621094 C 209.214844 211.621094 209.121094 211.714844 209.121094 211.832031 C 209.121094 211.949219 209.214844 212.042969 209.332031 212.042969 C 209.449219 212.042969 209.542969 211.949219 209.542969 211.832031 Z M 209.542969 211.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.15625 212.972656 C 209.15625 212.855469 209.0625 212.761719 208.945312 212.761719 C 208.828125 212.761719 208.734375 212.855469 208.734375 212.972656 C 208.734375 213.089844 208.828125 213.183594 208.945312 213.183594 C 209.0625 213.183594 209.15625 213.089844 209.15625 212.972656 Z M 209.15625 212.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.410156 210.855469 C 209.410156 210.738281 209.316406 210.644531 209.199219 210.644531 C 209.082031 210.644531 208.988281 210.738281 208.988281 210.855469 C 208.988281 210.972656 209.082031 211.066406 209.199219 211.066406 C 209.316406 211.066406 209.410156 210.972656 209.410156 210.855469 Z M 209.410156 210.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.074219 207.488281 C 209.074219 207.371094 208.980469 207.277344 208.863281 207.277344 C 208.746094 207.277344 208.652344 207.371094 208.652344 207.488281 C 208.652344 207.605469 208.746094 207.699219 208.863281 207.699219 C 208.980469 207.699219 209.074219 207.605469 209.074219 207.488281 Z M 209.074219 207.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.113281 206.617188 C 206.113281 206.5 206.019531 206.40625 205.902344 206.40625 C 205.785156 206.40625 205.691406 206.5 205.691406 206.617188 C 205.691406 206.734375 205.785156 206.828125 205.902344 206.828125 C 206.019531 206.828125 206.113281 206.734375 206.113281 206.617188 Z M 206.113281 206.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.941406 203.183594 C 207.941406 203.066406 207.847656 202.972656 207.730469 202.972656 C 207.613281 202.972656 207.519531 203.066406 207.519531 203.183594 C 207.519531 203.300781 207.613281 203.394531 207.730469 203.394531 C 207.847656 203.394531 207.941406 203.300781 207.941406 203.183594 Z M 207.941406 203.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.703125 205.859375 C 206.703125 205.742188 206.609375 205.648438 206.492188 205.648438 C 206.375 205.648438 206.28125 205.742188 206.28125 205.859375 C 206.28125 205.976562 206.375 206.070312 206.492188 206.070312 C 206.609375 206.070312 206.703125 205.976562 206.703125 205.859375 Z M 206.703125 205.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.152344 203.949219 C 205.152344 203.832031 205.058594 203.738281 204.941406 203.738281 C 204.824219 203.738281 204.730469 203.832031 204.730469 203.949219 C 204.730469 204.066406 204.824219 204.160156 204.941406 204.160156 C 205.058594 204.160156 205.152344 204.066406 205.152344 203.949219 Z M 205.152344 203.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.578125 202.328125 C 203.578125 202.210938 203.484375 202.117188 203.367188 202.117188 C 203.25 202.117188 203.15625 202.210938 203.15625 202.328125 C 203.15625 202.445312 203.25 202.539062 203.367188 202.539062 C 203.484375 202.539062 203.578125 202.445312 203.578125 202.328125 Z M 203.578125 202.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.601562 199.625 C 203.601562 199.507812 203.507812 199.414062 203.390625 199.414062 C 203.273438 199.414062 203.179688 199.507812 203.179688 199.625 C 203.179688 199.742188 203.273438 199.835938 203.390625 199.835938 C 203.507812 199.835938 203.601562 199.742188 203.601562 199.625 Z M 203.601562 199.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.554688 200.609375 C 203.554688 200.492188 203.460938 200.398438 203.34375 200.398438 C 203.226562 200.398438 203.132812 200.492188 203.132812 200.609375 C 203.132812 200.726562 203.226562 200.820312 203.34375 200.820312 C 203.460938 200.820312 203.554688 200.726562 203.554688 200.609375 Z M 203.554688 200.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.421875 203.574219 C 200.421875 203.457031 200.328125 203.363281 200.210938 203.363281 C 200.09375 203.363281 200 203.457031 200 203.574219 C 200 203.691406 200.09375 203.785156 200.210938 203.785156 C 200.328125 203.785156 200.421875 203.691406 200.421875 203.574219 Z M 200.421875 203.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.332031 206.238281 C 199.332031 206.121094 199.238281 206.027344 199.121094 206.027344 C 199.003906 206.027344 198.910156 206.121094 198.910156 206.238281 C 198.910156 206.355469 199.003906 206.449219 199.121094 206.449219 C 199.238281 206.449219 199.332031 206.355469 199.332031 206.238281 Z M 199.332031 206.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.230469 207.828125 C 199.230469 207.710938 199.136719 207.617188 199.019531 207.617188 C 198.902344 207.617188 198.808594 207.710938 198.808594 207.828125 C 198.808594 207.945312 198.902344 208.039062 199.019531 208.039062 C 199.136719 208.039062 199.230469 207.945312 199.230469 207.828125 Z M 199.230469 207.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.285156 203.589844 C 196.285156 203.472656 196.191406 203.378906 196.074219 203.378906 C 195.957031 203.378906 195.863281 203.472656 195.863281 203.589844 C 195.863281 203.707031 195.957031 203.800781 196.074219 203.800781 C 196.191406 203.800781 196.285156 203.707031 196.285156 203.589844 Z M 196.285156 203.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.339844 201.640625 C 196.339844 201.523438 196.246094 201.429688 196.128906 201.429688 C 196.011719 201.429688 195.917969 201.523438 195.917969 201.640625 C 195.917969 201.757812 196.011719 201.851562 196.128906 201.851562 C 196.246094 201.851562 196.339844 201.757812 196.339844 201.640625 Z M 196.339844 201.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.601562 200.46875 C 193.601562 200.351562 193.507812 200.257812 193.390625 200.257812 C 193.273438 200.257812 193.179688 200.351562 193.179688 200.46875 C 193.179688 200.585938 193.273438 200.679688 193.390625 200.679688 C 193.507812 200.679688 193.601562 200.585938 193.601562 200.46875 Z M 193.601562 200.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.6875 203.109375 C 194.6875 202.992188 194.59375 202.898438 194.476562 202.898438 C 194.359375 202.898438 194.265625 202.992188 194.265625 203.109375 C 194.265625 203.226562 194.359375 203.320312 194.476562 203.320312 C 194.59375 203.320312 194.6875 203.226562 194.6875 203.109375 Z M 194.6875 203.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.472656 203.578125 C 193.472656 203.460938 193.378906 203.367188 193.261719 203.367188 C 193.144531 203.367188 193.050781 203.460938 193.050781 203.578125 C 193.050781 203.695312 193.144531 203.789062 193.261719 203.789062 C 193.378906 203.789062 193.472656 203.695312 193.472656 203.578125 Z M 193.472656 203.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.636719 204.234375 C 193.636719 204.117188 193.542969 204.023438 193.425781 204.023438 C 193.308594 204.023438 193.214844 204.117188 193.214844 204.234375 C 193.214844 204.351562 193.308594 204.445312 193.425781 204.445312 C 193.542969 204.445312 193.636719 204.351562 193.636719 204.234375 Z M 193.636719 204.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.347656 204.277344 C 194.347656 204.160156 194.253906 204.066406 194.136719 204.066406 C 194.019531 204.066406 193.925781 204.160156 193.925781 204.277344 C 193.925781 204.394531 194.019531 204.488281 194.136719 204.488281 C 194.253906 204.488281 194.347656 204.394531 194.347656 204.277344 Z M 194.347656 204.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.074219 207.421875 C 196.074219 207.304688 195.980469 207.210938 195.863281 207.210938 C 195.746094 207.210938 195.652344 207.304688 195.652344 207.421875 C 195.652344 207.539062 195.746094 207.632812 195.863281 207.632812 C 195.980469 207.632812 196.074219 207.539062 196.074219 207.421875 Z M 196.074219 207.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.742188 207.535156 C 193.742188 207.417969 193.648438 207.324219 193.53125 207.324219 C 193.414062 207.324219 193.320312 207.417969 193.320312 207.535156 C 193.320312 207.652344 193.414062 207.746094 193.53125 207.746094 C 193.648438 207.746094 193.742188 207.652344 193.742188 207.535156 Z M 193.742188 207.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.503906 209.332031 C 194.503906 209.214844 194.410156 209.121094 194.292969 209.121094 C 194.175781 209.121094 194.082031 209.214844 194.082031 209.332031 C 194.082031 209.449219 194.175781 209.542969 194.292969 209.542969 C 194.410156 209.542969 194.503906 209.449219 194.503906 209.332031 Z M 194.503906 209.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.058594 208.277344 C 195.058594 208.160156 194.964844 208.066406 194.847656 208.066406 C 194.730469 208.066406 194.636719 208.160156 194.636719 208.277344 C 194.636719 208.394531 194.730469 208.488281 194.847656 208.488281 C 194.964844 208.488281 195.058594 208.394531 195.058594 208.277344 Z M 195.058594 208.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.257812 209.6875 C 188.257812 209.570312 188.164062 209.476562 188.046875 209.476562 C 187.929688 209.476562 187.835938 209.570312 187.835938 209.6875 C 187.835938 209.804688 187.929688 209.898438 188.046875 209.898438 C 188.164062 209.898438 188.257812 209.804688 188.257812 209.6875 Z M 188.257812 209.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.332031 206.019531 C 188.332031 205.902344 188.238281 205.808594 188.121094 205.808594 C 188.003906 205.808594 187.910156 205.902344 187.910156 206.019531 C 187.910156 206.136719 188.003906 206.230469 188.121094 206.230469 C 188.238281 206.230469 188.332031 206.136719 188.332031 206.019531 Z M 188.332031 206.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.785156 208.9375 C 190.785156 208.820312 190.691406 208.726562 190.574219 208.726562 C 190.457031 208.726562 190.363281 208.820312 190.363281 208.9375 C 190.363281 209.054688 190.457031 209.148438 190.574219 209.148438 C 190.691406 209.148438 190.785156 209.054688 190.785156 208.9375 Z M 190.785156 208.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.957031 206.5625 C 189.957031 206.445312 189.863281 206.351562 189.746094 206.351562 C 189.628906 206.351562 189.535156 206.445312 189.535156 206.5625 C 189.535156 206.679688 189.628906 206.773438 189.746094 206.773438 C 189.863281 206.773438 189.957031 206.679688 189.957031 206.5625 Z M 189.957031 206.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.1875 205.238281 C 194.1875 205.121094 194.09375 205.027344 193.976562 205.027344 C 193.859375 205.027344 193.765625 205.121094 193.765625 205.238281 C 193.765625 205.355469 193.859375 205.449219 193.976562 205.449219 C 194.09375 205.449219 194.1875 205.355469 194.1875 205.238281 Z M 194.1875 205.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.320312 205.269531 C 193.320312 205.152344 193.226562 205.058594 193.109375 205.058594 C 192.992188 205.058594 192.898438 205.152344 192.898438 205.269531 C 192.898438 205.386719 192.992188 205.480469 193.109375 205.480469 C 193.226562 205.480469 193.320312 205.386719 193.320312 205.269531 Z M 193.320312 205.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.511719 201.394531 C 191.511719 201.277344 191.417969 201.183594 191.300781 201.183594 C 191.183594 201.183594 191.089844 201.277344 191.089844 201.394531 C 191.089844 201.511719 191.183594 201.605469 191.300781 201.605469 C 191.417969 201.605469 191.511719 201.511719 191.511719 201.394531 Z M 191.511719 201.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.929688 201.570312 C 187.929688 201.453125 187.835938 201.359375 187.71875 201.359375 C 187.601562 201.359375 187.507812 201.453125 187.507812 201.570312 C 187.507812 201.6875 187.601562 201.78125 187.71875 201.78125 C 187.835938 201.78125 187.929688 201.6875 187.929688 201.570312 Z M 187.929688 201.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.546875 199.804688 C 187.546875 199.6875 187.453125 199.59375 187.335938 199.59375 C 187.21875 199.59375 187.125 199.6875 187.125 199.804688 C 187.125 199.921875 187.21875 200.015625 187.335938 200.015625 C 187.453125 200.015625 187.546875 199.921875 187.546875 199.804688 Z M 187.546875 199.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.542969 196.398438 C 186.542969 196.28125 186.449219 196.1875 186.332031 196.1875 C 186.214844 196.1875 186.121094 196.28125 186.121094 196.398438 C 186.121094 196.515625 186.214844 196.609375 186.332031 196.609375 C 186.449219 196.609375 186.542969 196.515625 186.542969 196.398438 Z M 186.542969 196.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.203125 195.675781 C 185.203125 195.558594 185.109375 195.464844 184.992188 195.464844 C 184.875 195.464844 184.78125 195.558594 184.78125 195.675781 C 184.78125 195.792969 184.875 195.886719 184.992188 195.886719 C 185.109375 195.886719 185.203125 195.792969 185.203125 195.675781 Z M 185.203125 195.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.527344 192.992188 C 183.527344 192.875 183.433594 192.78125 183.316406 192.78125 C 183.199219 192.78125 183.105469 192.875 183.105469 192.992188 C 183.105469 193.109375 183.199219 193.203125 183.316406 193.203125 C 183.433594 193.203125 183.527344 193.109375 183.527344 192.992188 Z M 183.527344 192.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.359375 189.363281 C 186.359375 189.246094 186.265625 189.152344 186.148438 189.152344 C 186.03125 189.152344 185.9375 189.246094 185.9375 189.363281 C 185.9375 189.480469 186.03125 189.574219 186.148438 189.574219 C 186.265625 189.574219 186.359375 189.480469 186.359375 189.363281 Z M 186.359375 189.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.65625 190.011719 C 185.65625 189.894531 185.5625 189.800781 185.445312 189.800781 C 185.328125 189.800781 185.234375 189.894531 185.234375 190.011719 C 185.234375 190.128906 185.328125 190.222656 185.445312 190.222656 C 185.5625 190.222656 185.65625 190.128906 185.65625 190.011719 Z M 185.65625 190.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 179.390625 190.804688 C 179.390625 190.6875 179.296875 190.59375 179.179688 190.59375 C 179.0625 190.59375 178.96875 190.6875 178.96875 190.804688 C 178.96875 190.921875 179.0625 191.015625 179.179688 191.015625 C 179.296875 191.015625 179.390625 190.921875 179.390625 190.804688 Z M 179.390625 190.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.390625 192.945312 C 182.390625 192.828125 182.296875 192.734375 182.179688 192.734375 C 182.0625 192.734375 181.96875 192.828125 181.96875 192.945312 C 181.96875 193.0625 182.0625 193.15625 182.179688 193.15625 C 182.296875 193.15625 182.390625 193.0625 182.390625 192.945312 Z M 182.390625 192.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.699219 193.378906 C 183.699219 193.261719 183.605469 193.167969 183.488281 193.167969 C 183.371094 193.167969 183.277344 193.261719 183.277344 193.378906 C 183.277344 193.496094 183.371094 193.589844 183.488281 193.589844 C 183.605469 193.589844 183.699219 193.496094 183.699219 193.378906 Z M 183.699219 193.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.671875 191.984375 C 181.671875 191.867188 181.578125 191.773438 181.460938 191.773438 C 181.34375 191.773438 181.25 191.867188 181.25 191.984375 C 181.25 192.101562 181.34375 192.195312 181.460938 192.195312 C 181.578125 192.195312 181.671875 192.101562 181.671875 191.984375 Z M 181.671875 191.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 180.714844 194.804688 C 180.714844 194.6875 180.621094 194.59375 180.503906 194.59375 C 180.386719 194.59375 180.292969 194.6875 180.292969 194.804688 C 180.292969 194.921875 180.386719 195.015625 180.503906 195.015625 C 180.621094 195.015625 180.714844 194.921875 180.714844 194.804688 Z M 180.714844 194.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.226562 193.898438 C 185.226562 193.78125 185.132812 193.6875 185.015625 193.6875 C 184.898438 193.6875 184.804688 193.78125 184.804688 193.898438 C 184.804688 194.015625 184.898438 194.109375 185.015625 194.109375 C 185.132812 194.109375 185.226562 194.015625 185.226562 193.898438 Z M 185.226562 193.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.066406 191.507812 C 183.066406 191.390625 182.972656 191.296875 182.855469 191.296875 C 182.738281 191.296875 182.644531 191.390625 182.644531 191.507812 C 182.644531 191.625 182.738281 191.71875 182.855469 191.71875 C 182.972656 191.71875 183.066406 191.625 183.066406 191.507812 Z M 183.066406 191.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.324219 189.738281 C 181.324219 189.621094 181.230469 189.527344 181.113281 189.527344 C 180.996094 189.527344 180.902344 189.621094 180.902344 189.738281 C 180.902344 189.855469 180.996094 189.949219 181.113281 189.949219 C 181.230469 189.949219 181.324219 189.855469 181.324219 189.738281 Z M 181.324219 189.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.019531 191.183594 C 181.019531 191.066406 180.925781 190.972656 180.808594 190.972656 C 180.691406 190.972656 180.597656 191.066406 180.597656 191.183594 C 180.597656 191.300781 180.691406 191.394531 180.808594 191.394531 C 180.925781 191.394531 181.019531 191.300781 181.019531 191.183594 Z M 181.019531 191.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.253906 195.433594 C 183.253906 195.316406 183.160156 195.222656 183.042969 195.222656 C 182.925781 195.222656 182.832031 195.316406 182.832031 195.433594 C 182.832031 195.550781 182.925781 195.644531 183.042969 195.644531 C 183.160156 195.644531 183.253906 195.550781 183.253906 195.433594 Z M 183.253906 195.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.179688 191.082031 C 184.179688 190.964844 184.085938 190.871094 183.96875 190.871094 C 183.851562 190.871094 183.757812 190.964844 183.757812 191.082031 C 183.757812 191.199219 183.851562 191.292969 183.96875 191.292969 C 184.085938 191.292969 184.179688 191.199219 184.179688 191.082031 Z M 184.179688 191.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.605469 191.15625 C 182.605469 191.039062 182.511719 190.945312 182.394531 190.945312 C 182.277344 190.945312 182.183594 191.039062 182.183594 191.15625 C 182.183594 191.273438 182.277344 191.367188 182.394531 191.367188 C 182.511719 191.367188 182.605469 191.273438 182.605469 191.15625 Z M 182.605469 191.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.789062 192.972656 C 187.789062 192.855469 187.695312 192.761719 187.578125 192.761719 C 187.460938 192.761719 187.367188 192.855469 187.367188 192.972656 C 187.367188 193.089844 187.460938 193.183594 187.578125 193.183594 C 187.695312 193.183594 187.789062 193.089844 187.789062 192.972656 Z M 187.789062 192.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.019531 191.480469 C 189.019531 191.363281 188.925781 191.269531 188.808594 191.269531 C 188.691406 191.269531 188.597656 191.363281 188.597656 191.480469 C 188.597656 191.597656 188.691406 191.691406 188.808594 191.691406 C 188.925781 191.691406 189.019531 191.597656 189.019531 191.480469 Z M 189.019531 191.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.949219 190.03125 C 185.949219 189.914062 185.855469 189.820312 185.738281 189.820312 C 185.621094 189.820312 185.527344 189.914062 185.527344 190.03125 C 185.527344 190.148438 185.621094 190.242188 185.738281 190.242188 C 185.855469 190.242188 185.949219 190.148438 185.949219 190.03125 Z M 185.949219 190.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.960938 192.753906 C 185.960938 192.636719 185.867188 192.542969 185.75 192.542969 C 185.632812 192.542969 185.539062 192.636719 185.539062 192.753906 C 185.539062 192.871094 185.632812 192.964844 185.75 192.964844 C 185.867188 192.964844 185.960938 192.871094 185.960938 192.753906 Z M 185.960938 192.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.492188 194.789062 C 188.492188 194.671875 188.398438 194.578125 188.28125 194.578125 C 188.164062 194.578125 188.070312 194.671875 188.070312 194.789062 C 188.070312 194.90625 188.164062 195 188.28125 195 C 188.398438 195 188.492188 194.90625 188.492188 194.789062 Z M 188.492188 194.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.238281 196.5625 C 190.238281 196.445312 190.144531 196.351562 190.027344 196.351562 C 189.910156 196.351562 189.816406 196.445312 189.816406 196.5625 C 189.816406 196.679688 189.910156 196.773438 190.027344 196.773438 C 190.144531 196.773438 190.238281 196.679688 190.238281 196.5625 Z M 190.238281 196.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.246094 198.050781 C 193.246094 197.933594 193.152344 197.839844 193.035156 197.839844 C 192.917969 197.839844 192.824219 197.933594 192.824219 198.050781 C 192.824219 198.167969 192.917969 198.261719 193.035156 198.261719 C 193.152344 198.261719 193.246094 198.167969 193.246094 198.050781 Z M 193.246094 198.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.664062 198.367188 C 192.664062 198.25 192.570312 198.15625 192.453125 198.15625 C 192.335938 198.15625 192.242188 198.25 192.242188 198.367188 C 192.242188 198.484375 192.335938 198.578125 192.453125 198.578125 C 192.570312 198.578125 192.664062 198.484375 192.664062 198.367188 Z M 192.664062 198.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.054688 199.144531 C 196.054688 199.027344 195.960938 198.933594 195.84375 198.933594 C 195.726562 198.933594 195.632812 199.027344 195.632812 199.144531 C 195.632812 199.261719 195.726562 199.355469 195.84375 199.355469 C 195.960938 199.355469 196.054688 199.261719 196.054688 199.144531 Z M 196.054688 199.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.523438 202.347656 C 200.523438 202.230469 200.429688 202.136719 200.3125 202.136719 C 200.195312 202.136719 200.101562 202.230469 200.101562 202.347656 C 200.101562 202.464844 200.195312 202.558594 200.3125 202.558594 C 200.429688 202.558594 200.523438 202.464844 200.523438 202.347656 Z M 200.523438 202.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.382812 201.632812 C 199.382812 201.515625 199.289062 201.421875 199.171875 201.421875 C 199.054688 201.421875 198.960938 201.515625 198.960938 201.632812 C 198.960938 201.75 199.054688 201.84375 199.171875 201.84375 C 199.289062 201.84375 199.382812 201.75 199.382812 201.632812 Z M 199.382812 201.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.867188 202.046875 C 200.867188 201.929688 200.773438 201.835938 200.65625 201.835938 C 200.539062 201.835938 200.445312 201.929688 200.445312 202.046875 C 200.445312 202.164062 200.539062 202.257812 200.65625 202.257812 C 200.773438 202.257812 200.867188 202.164062 200.867188 202.046875 Z M 200.867188 202.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.425781 201.851562 C 202.425781 201.734375 202.332031 201.640625 202.214844 201.640625 C 202.097656 201.640625 202.003906 201.734375 202.003906 201.851562 C 202.003906 201.96875 202.097656 202.0625 202.214844 202.0625 C 202.332031 202.0625 202.425781 201.96875 202.425781 201.851562 Z M 202.425781 201.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.878906 204.316406 C 202.878906 204.199219 202.785156 204.105469 202.667969 204.105469 C 202.550781 204.105469 202.457031 204.199219 202.457031 204.316406 C 202.457031 204.433594 202.550781 204.527344 202.667969 204.527344 C 202.785156 204.527344 202.878906 204.433594 202.878906 204.316406 Z M 202.878906 204.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.613281 204.195312 C 203.613281 204.078125 203.519531 203.984375 203.402344 203.984375 C 203.285156 203.984375 203.191406 204.078125 203.191406 204.195312 C 203.191406 204.3125 203.285156 204.40625 203.402344 204.40625 C 203.519531 204.40625 203.613281 204.3125 203.613281 204.195312 Z M 203.613281 204.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.640625 202.242188 C 204.640625 202.125 204.546875 202.03125 204.429688 202.03125 C 204.3125 202.03125 204.21875 202.125 204.21875 202.242188 C 204.21875 202.359375 204.3125 202.453125 204.429688 202.453125 C 204.546875 202.453125 204.640625 202.359375 204.640625 202.242188 Z M 204.640625 202.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.160156 198.605469 C 206.160156 198.488281 206.066406 198.394531 205.949219 198.394531 C 205.832031 198.394531 205.738281 198.488281 205.738281 198.605469 C 205.738281 198.722656 205.832031 198.816406 205.949219 198.816406 C 206.066406 198.816406 206.160156 198.722656 206.160156 198.605469 Z M 206.160156 198.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.554688 196.851562 C 204.554688 196.734375 204.460938 196.640625 204.34375 196.640625 C 204.226562 196.640625 204.132812 196.734375 204.132812 196.851562 C 204.132812 196.96875 204.226562 197.0625 204.34375 197.0625 C 204.460938 197.0625 204.554688 196.96875 204.554688 196.851562 Z M 204.554688 196.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.078125 196.9375 C 204.078125 196.820312 203.984375 196.726562 203.867188 196.726562 C 203.75 196.726562 203.65625 196.820312 203.65625 196.9375 C 203.65625 197.054688 203.75 197.148438 203.867188 197.148438 C 203.984375 197.148438 204.078125 197.054688 204.078125 196.9375 Z M 204.078125 196.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.644531 197.933594 C 205.644531 197.816406 205.550781 197.722656 205.433594 197.722656 C 205.316406 197.722656 205.222656 197.816406 205.222656 197.933594 C 205.222656 198.050781 205.316406 198.144531 205.433594 198.144531 C 205.550781 198.144531 205.644531 198.050781 205.644531 197.933594 Z M 205.644531 197.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.203125 197.316406 C 208.203125 197.199219 208.109375 197.105469 207.992188 197.105469 C 207.875 197.105469 207.78125 197.199219 207.78125 197.316406 C 207.78125 197.433594 207.875 197.527344 207.992188 197.527344 C 208.109375 197.527344 208.203125 197.433594 208.203125 197.316406 Z M 208.203125 197.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.851562 196.097656 C 206.851562 195.980469 206.757812 195.886719 206.640625 195.886719 C 206.523438 195.886719 206.429688 195.980469 206.429688 196.097656 C 206.429688 196.214844 206.523438 196.308594 206.640625 196.308594 C 206.757812 196.308594 206.851562 196.214844 206.851562 196.097656 Z M 206.851562 196.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.695312 197.027344 C 205.695312 196.910156 205.601562 196.816406 205.484375 196.816406 C 205.367188 196.816406 205.273438 196.910156 205.273438 197.027344 C 205.273438 197.144531 205.367188 197.238281 205.484375 197.238281 C 205.601562 197.238281 205.695312 197.144531 205.695312 197.027344 Z M 205.695312 197.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.386719 195.386719 C 207.386719 195.269531 207.292969 195.175781 207.175781 195.175781 C 207.058594 195.175781 206.964844 195.269531 206.964844 195.386719 C 206.964844 195.503906 207.058594 195.597656 207.175781 195.597656 C 207.292969 195.597656 207.386719 195.503906 207.386719 195.386719 Z M 207.386719 195.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.355469 191.871094 C 209.355469 191.753906 209.261719 191.660156 209.144531 191.660156 C 209.027344 191.660156 208.933594 191.753906 208.933594 191.871094 C 208.933594 191.988281 209.027344 192.082031 209.144531 192.082031 C 209.261719 192.082031 209.355469 191.988281 209.355469 191.871094 Z M 209.355469 191.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.15625 193.601562 C 207.15625 193.484375 207.0625 193.390625 206.945312 193.390625 C 206.828125 193.390625 206.734375 193.484375 206.734375 193.601562 C 206.734375 193.71875 206.828125 193.8125 206.945312 193.8125 C 207.0625 193.8125 207.15625 193.71875 207.15625 193.601562 Z M 207.15625 193.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.398438 195.75 C 209.398438 195.632812 209.304688 195.539062 209.1875 195.539062 C 209.070312 195.539062 208.976562 195.632812 208.976562 195.75 C 208.976562 195.867188 209.070312 195.960938 209.1875 195.960938 C 209.304688 195.960938 209.398438 195.867188 209.398438 195.75 Z M 209.398438 195.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.121094 191.625 C 209.121094 191.507812 209.027344 191.414062 208.910156 191.414062 C 208.792969 191.414062 208.699219 191.507812 208.699219 191.625 C 208.699219 191.742188 208.792969 191.835938 208.910156 191.835938 C 209.027344 191.835938 209.121094 191.742188 209.121094 191.625 Z M 209.121094 191.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.390625 193.027344 C 208.390625 192.910156 208.296875 192.816406 208.179688 192.816406 C 208.0625 192.816406 207.96875 192.910156 207.96875 193.027344 C 207.96875 193.144531 208.0625 193.238281 208.179688 193.238281 C 208.296875 193.238281 208.390625 193.144531 208.390625 193.027344 Z M 208.390625 193.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.554688 193.292969 C 209.554688 193.175781 209.460938 193.082031 209.34375 193.082031 C 209.226562 193.082031 209.132812 193.175781 209.132812 193.292969 C 209.132812 193.410156 209.226562 193.503906 209.34375 193.503906 C 209.460938 193.503906 209.554688 193.410156 209.554688 193.292969 Z M 209.554688 193.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.734375 192.199219 C 210.734375 192.082031 210.640625 191.988281 210.523438 191.988281 C 210.40625 191.988281 210.3125 192.082031 210.3125 192.199219 C 210.3125 192.316406 210.40625 192.410156 210.523438 192.410156 C 210.640625 192.410156 210.734375 192.316406 210.734375 192.199219 Z M 210.734375 192.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.351562 190 C 213.351562 189.882812 213.257812 189.789062 213.140625 189.789062 C 213.023438 189.789062 212.929688 189.882812 212.929688 190 C 212.929688 190.117188 213.023438 190.210938 213.140625 190.210938 C 213.257812 190.210938 213.351562 190.117188 213.351562 190 Z M 213.351562 190 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.015625 190.085938 C 213.015625 189.96875 212.921875 189.875 212.804688 189.875 C 212.6875 189.875 212.59375 189.96875 212.59375 190.085938 C 212.59375 190.203125 212.6875 190.296875 212.804688 190.296875 C 212.921875 190.296875 213.015625 190.203125 213.015625 190.085938 Z M 213.015625 190.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.820312 186.042969 C 214.820312 185.925781 214.726562 185.832031 214.609375 185.832031 C 214.492188 185.832031 214.398438 185.925781 214.398438 186.042969 C 214.398438 186.160156 214.492188 186.253906 214.609375 186.253906 C 214.726562 186.253906 214.820312 186.160156 214.820312 186.042969 Z M 214.820312 186.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.015625 187.589844 C 211.015625 187.472656 210.921875 187.378906 210.804688 187.378906 C 210.6875 187.378906 210.59375 187.472656 210.59375 187.589844 C 210.59375 187.707031 210.6875 187.800781 210.804688 187.800781 C 210.921875 187.800781 211.015625 187.707031 211.015625 187.589844 Z M 211.015625 187.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.589844 187.484375 C 211.589844 187.367188 211.496094 187.273438 211.378906 187.273438 C 211.261719 187.273438 211.167969 187.367188 211.167969 187.484375 C 211.167969 187.601562 211.261719 187.695312 211.378906 187.695312 C 211.496094 187.695312 211.589844 187.601562 211.589844 187.484375 Z M 211.589844 187.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.421875 184.269531 C 210.421875 184.152344 210.328125 184.058594 210.210938 184.058594 C 210.09375 184.058594 210 184.152344 210 184.269531 C 210 184.386719 210.09375 184.480469 210.210938 184.480469 C 210.328125 184.480469 210.421875 184.386719 210.421875 184.269531 Z M 210.421875 184.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.484375 186.570312 C 208.484375 186.453125 208.390625 186.359375 208.273438 186.359375 C 208.15625 186.359375 208.0625 186.453125 208.0625 186.570312 C 208.0625 186.6875 208.15625 186.78125 208.273438 186.78125 C 208.390625 186.78125 208.484375 186.6875 208.484375 186.570312 Z M 208.484375 186.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.980469 185.765625 C 211.980469 185.648438 211.886719 185.554688 211.769531 185.554688 C 211.652344 185.554688 211.558594 185.648438 211.558594 185.765625 C 211.558594 185.882812 211.652344 185.976562 211.769531 185.976562 C 211.886719 185.976562 211.980469 185.882812 211.980469 185.765625 Z M 211.980469 185.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.519531 185.265625 C 212.519531 185.148438 212.425781 185.054688 212.308594 185.054688 C 212.191406 185.054688 212.097656 185.148438 212.097656 185.265625 C 212.097656 185.382812 212.191406 185.476562 212.308594 185.476562 C 212.425781 185.476562 212.519531 185.382812 212.519531 185.265625 Z M 212.519531 185.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.0625 184.785156 C 211.0625 184.667969 210.96875 184.574219 210.851562 184.574219 C 210.734375 184.574219 210.640625 184.667969 210.640625 184.785156 C 210.640625 184.902344 210.734375 184.996094 210.851562 184.996094 C 210.96875 184.996094 211.0625 184.902344 211.0625 184.785156 Z M 211.0625 184.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.625 181.476562 C 211.625 181.359375 211.53125 181.265625 211.414062 181.265625 C 211.296875 181.265625 211.203125 181.359375 211.203125 181.476562 C 211.203125 181.59375 211.296875 181.6875 211.414062 181.6875 C 211.53125 181.6875 211.625 181.59375 211.625 181.476562 Z M 211.625 181.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.285156 180.328125 C 211.285156 180.210938 211.191406 180.117188 211.074219 180.117188 C 210.957031 180.117188 210.863281 180.210938 210.863281 180.328125 C 210.863281 180.445312 210.957031 180.539062 211.074219 180.539062 C 211.191406 180.539062 211.285156 180.445312 211.285156 180.328125 Z M 211.285156 180.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.898438 178.988281 C 209.898438 178.871094 209.804688 178.777344 209.6875 178.777344 C 209.570312 178.777344 209.476562 178.871094 209.476562 178.988281 C 209.476562 179.105469 209.570312 179.199219 209.6875 179.199219 C 209.804688 179.199219 209.898438 179.105469 209.898438 178.988281 Z M 209.898438 178.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.488281 179.761719 C 212.488281 179.644531 212.394531 179.550781 212.277344 179.550781 C 212.160156 179.550781 212.066406 179.644531 212.066406 179.761719 C 212.066406 179.878906 212.160156 179.972656 212.277344 179.972656 C 212.394531 179.972656 212.488281 179.878906 212.488281 179.761719 Z M 212.488281 179.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.796875 180.140625 C 207.796875 180.023438 207.703125 179.929688 207.585938 179.929688 C 207.46875 179.929688 207.375 180.023438 207.375 180.140625 C 207.375 180.257812 207.46875 180.351562 207.585938 180.351562 C 207.703125 180.351562 207.796875 180.257812 207.796875 180.140625 Z M 207.796875 180.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.773438 181.867188 C 207.773438 181.75 207.679688 181.65625 207.5625 181.65625 C 207.445312 181.65625 207.351562 181.75 207.351562 181.867188 C 207.351562 181.984375 207.445312 182.078125 207.5625 182.078125 C 207.679688 182.078125 207.773438 181.984375 207.773438 181.867188 Z M 207.773438 181.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.191406 182.101562 C 210.191406 181.984375 210.097656 181.890625 209.980469 181.890625 C 209.863281 181.890625 209.769531 181.984375 209.769531 182.101562 C 209.769531 182.21875 209.863281 182.3125 209.980469 182.3125 C 210.097656 182.3125 210.191406 182.21875 210.191406 182.101562 Z M 210.191406 182.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.425781 182.527344 C 211.425781 182.410156 211.332031 182.316406 211.214844 182.316406 C 211.097656 182.316406 211.003906 182.410156 211.003906 182.527344 C 211.003906 182.644531 211.097656 182.738281 211.214844 182.738281 C 211.332031 182.738281 211.425781 182.644531 211.425781 182.527344 Z M 211.425781 182.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.03125 184.203125 C 212.03125 184.085938 211.9375 183.992188 211.820312 183.992188 C 211.703125 183.992188 211.609375 184.085938 211.609375 184.203125 C 211.609375 184.320312 211.703125 184.414062 211.820312 184.414062 C 211.9375 184.414062 212.03125 184.320312 212.03125 184.203125 Z M 212.03125 184.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.8125 185.816406 C 214.8125 185.699219 214.71875 185.605469 214.601562 185.605469 C 214.484375 185.605469 214.390625 185.699219 214.390625 185.816406 C 214.390625 185.933594 214.484375 186.027344 214.601562 186.027344 C 214.71875 186.027344 214.8125 185.933594 214.8125 185.816406 Z M 214.8125 185.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.179688 182.664062 C 219.179688 182.546875 219.085938 182.453125 218.96875 182.453125 C 218.851562 182.453125 218.757812 182.546875 218.757812 182.664062 C 218.757812 182.78125 218.851562 182.875 218.96875 182.875 C 219.085938 182.875 219.179688 182.78125 219.179688 182.664062 Z M 219.179688 182.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.382812 180.710938 C 219.382812 180.59375 219.289062 180.5 219.171875 180.5 C 219.054688 180.5 218.960938 180.59375 218.960938 180.710938 C 218.960938 180.828125 219.054688 180.921875 219.171875 180.921875 C 219.289062 180.921875 219.382812 180.828125 219.382812 180.710938 Z M 219.382812 180.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.289062 180.019531 C 219.289062 179.902344 219.195312 179.808594 219.078125 179.808594 C 218.960938 179.808594 218.867188 179.902344 218.867188 180.019531 C 218.867188 180.136719 218.960938 180.230469 219.078125 180.230469 C 219.195312 180.230469 219.289062 180.136719 219.289062 180.019531 Z M 219.289062 180.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.863281 182.1875 C 219.863281 182.070312 219.769531 181.976562 219.652344 181.976562 C 219.535156 181.976562 219.441406 182.070312 219.441406 182.1875 C 219.441406 182.304688 219.535156 182.398438 219.652344 182.398438 C 219.769531 182.398438 219.863281 182.304688 219.863281 182.1875 Z M 219.863281 182.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.546875 182.402344 C 216.546875 182.285156 216.453125 182.191406 216.335938 182.191406 C 216.21875 182.191406 216.125 182.285156 216.125 182.402344 C 216.125 182.519531 216.21875 182.613281 216.335938 182.613281 C 216.453125 182.613281 216.546875 182.519531 216.546875 182.402344 Z M 216.546875 182.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.785156 181.769531 C 217.785156 181.652344 217.691406 181.558594 217.574219 181.558594 C 217.457031 181.558594 217.363281 181.652344 217.363281 181.769531 C 217.363281 181.886719 217.457031 181.980469 217.574219 181.980469 C 217.691406 181.980469 217.785156 181.886719 217.785156 181.769531 Z M 217.785156 181.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.679688 181.839844 C 213.679688 181.722656 213.585938 181.628906 213.46875 181.628906 C 213.351562 181.628906 213.257812 181.722656 213.257812 181.839844 C 213.257812 181.957031 213.351562 182.050781 213.46875 182.050781 C 213.585938 182.050781 213.679688 181.957031 213.679688 181.839844 Z M 213.679688 181.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.71875 181.421875 C 215.71875 181.304688 215.625 181.210938 215.507812 181.210938 C 215.390625 181.210938 215.296875 181.304688 215.296875 181.421875 C 215.296875 181.539062 215.390625 181.632812 215.507812 181.632812 C 215.625 181.632812 215.71875 181.539062 215.71875 181.421875 Z M 215.71875 181.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.0625 179.894531 C 212.0625 179.777344 211.96875 179.683594 211.851562 179.683594 C 211.734375 179.683594 211.640625 179.777344 211.640625 179.894531 C 211.640625 180.011719 211.734375 180.105469 211.851562 180.105469 C 211.96875 180.105469 212.0625 180.011719 212.0625 179.894531 Z M 212.0625 179.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.804688 184.207031 C 210.804688 184.089844 210.710938 183.996094 210.59375 183.996094 C 210.476562 183.996094 210.382812 184.089844 210.382812 184.207031 C 210.382812 184.324219 210.476562 184.417969 210.59375 184.417969 C 210.710938 184.417969 210.804688 184.324219 210.804688 184.207031 Z M 210.804688 184.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.160156 182.984375 C 211.160156 182.867188 211.066406 182.773438 210.949219 182.773438 C 210.832031 182.773438 210.738281 182.867188 210.738281 182.984375 C 210.738281 183.101562 210.832031 183.195312 210.949219 183.195312 C 211.066406 183.195312 211.160156 183.101562 211.160156 182.984375 Z M 211.160156 182.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.085938 183.125 C 211.085938 183.007812 210.992188 182.914062 210.875 182.914062 C 210.757812 182.914062 210.664062 183.007812 210.664062 183.125 C 210.664062 183.242188 210.757812 183.335938 210.875 183.335938 C 210.992188 183.335938 211.085938 183.242188 211.085938 183.125 Z M 211.085938 183.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.746094 185.222656 C 210.746094 185.105469 210.652344 185.011719 210.535156 185.011719 C 210.417969 185.011719 210.324219 185.105469 210.324219 185.222656 C 210.324219 185.339844 210.417969 185.433594 210.535156 185.433594 C 210.652344 185.433594 210.746094 185.339844 210.746094 185.222656 Z M 210.746094 185.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.367188 184.960938 C 211.367188 184.84375 211.273438 184.75 211.15625 184.75 C 211.039062 184.75 210.945312 184.84375 210.945312 184.960938 C 210.945312 185.078125 211.039062 185.171875 211.15625 185.171875 C 211.273438 185.171875 211.367188 185.078125 211.367188 184.960938 Z M 211.367188 184.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.714844 184.222656 C 210.714844 184.105469 210.621094 184.011719 210.503906 184.011719 C 210.386719 184.011719 210.292969 184.105469 210.292969 184.222656 C 210.292969 184.339844 210.386719 184.433594 210.503906 184.433594 C 210.621094 184.433594 210.714844 184.339844 210.714844 184.222656 Z M 210.714844 184.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.628906 187.03125 C 209.628906 186.914062 209.535156 186.820312 209.417969 186.820312 C 209.300781 186.820312 209.207031 186.914062 209.207031 187.03125 C 209.207031 187.148438 209.300781 187.242188 209.417969 187.242188 C 209.535156 187.242188 209.628906 187.148438 209.628906 187.03125 Z M 209.628906 187.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.492188 187.308594 C 205.492188 187.191406 205.398438 187.097656 205.28125 187.097656 C 205.164062 187.097656 205.070312 187.191406 205.070312 187.308594 C 205.070312 187.425781 205.164062 187.519531 205.28125 187.519531 C 205.398438 187.519531 205.492188 187.425781 205.492188 187.308594 Z M 205.492188 187.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.59375 181.785156 C 206.59375 181.667969 206.5 181.574219 206.382812 181.574219 C 206.265625 181.574219 206.171875 181.667969 206.171875 181.785156 C 206.171875 181.902344 206.265625 181.996094 206.382812 181.996094 C 206.5 181.996094 206.59375 181.902344 206.59375 181.785156 Z M 206.59375 181.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.039062 184.046875 C 209.039062 183.929688 208.945312 183.835938 208.828125 183.835938 C 208.710938 183.835938 208.617188 183.929688 208.617188 184.046875 C 208.617188 184.164062 208.710938 184.257812 208.828125 184.257812 C 208.945312 184.257812 209.039062 184.164062 209.039062 184.046875 Z M 209.039062 184.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.074219 186.882812 C 212.074219 186.765625 211.980469 186.671875 211.863281 186.671875 C 211.746094 186.671875 211.652344 186.765625 211.652344 186.882812 C 211.652344 187 211.746094 187.09375 211.863281 187.09375 C 211.980469 187.09375 212.074219 187 212.074219 186.882812 Z M 212.074219 186.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.171875 186.746094 C 214.171875 186.628906 214.078125 186.535156 213.960938 186.535156 C 213.84375 186.535156 213.75 186.628906 213.75 186.746094 C 213.75 186.863281 213.84375 186.957031 213.960938 186.957031 C 214.078125 186.957031 214.171875 186.863281 214.171875 186.746094 Z M 214.171875 186.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.246094 183.617188 C 218.246094 183.5 218.152344 183.40625 218.035156 183.40625 C 217.917969 183.40625 217.824219 183.5 217.824219 183.617188 C 217.824219 183.734375 217.917969 183.828125 218.035156 183.828125 C 218.152344 183.828125 218.246094 183.734375 218.246094 183.617188 Z M 218.246094 183.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.519531 180.085938 C 221.519531 179.96875 221.425781 179.875 221.308594 179.875 C 221.191406 179.875 221.097656 179.96875 221.097656 180.085938 C 221.097656 180.203125 221.191406 180.296875 221.308594 180.296875 C 221.425781 180.296875 221.519531 180.203125 221.519531 180.085938 Z M 221.519531 180.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.59375 178.929688 C 223.59375 178.8125 223.5 178.71875 223.382812 178.71875 C 223.265625 178.71875 223.171875 178.8125 223.171875 178.929688 C 223.171875 179.046875 223.265625 179.140625 223.382812 179.140625 C 223.5 179.140625 223.59375 179.046875 223.59375 178.929688 Z M 223.59375 178.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 222.449219 180.246094 C 222.449219 180.128906 222.355469 180.035156 222.238281 180.035156 C 222.121094 180.035156 222.027344 180.128906 222.027344 180.246094 C 222.027344 180.363281 222.121094 180.457031 222.238281 180.457031 C 222.355469 180.457031 222.449219 180.363281 222.449219 180.246094 Z M 222.449219 180.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.082031 176.210938 C 221.082031 176.09375 220.988281 176 220.871094 176 C 220.753906 176 220.660156 176.09375 220.660156 176.210938 C 220.660156 176.328125 220.753906 176.421875 220.871094 176.421875 C 220.988281 176.421875 221.082031 176.328125 221.082031 176.210938 Z M 221.082031 176.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.234375 175.320312 C 223.234375 175.203125 223.140625 175.109375 223.023438 175.109375 C 222.90625 175.109375 222.8125 175.203125 222.8125 175.320312 C 222.8125 175.4375 222.90625 175.53125 223.023438 175.53125 C 223.140625 175.53125 223.234375 175.4375 223.234375 175.320312 Z M 223.234375 175.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.476562 172.144531 C 223.476562 172.027344 223.382812 171.933594 223.265625 171.933594 C 223.148438 171.933594 223.054688 172.027344 223.054688 172.144531 C 223.054688 172.261719 223.148438 172.355469 223.265625 172.355469 C 223.382812 172.355469 223.476562 172.261719 223.476562 172.144531 Z M 223.476562 172.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.984375 173.054688 C 225.984375 172.9375 225.890625 172.84375 225.773438 172.84375 C 225.65625 172.84375 225.5625 172.9375 225.5625 173.054688 C 225.5625 173.171875 225.65625 173.265625 225.773438 173.265625 C 225.890625 173.265625 225.984375 173.171875 225.984375 173.054688 Z M 225.984375 173.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.820312 169.179688 C 223.820312 169.0625 223.726562 168.96875 223.609375 168.96875 C 223.492188 168.96875 223.398438 169.0625 223.398438 169.179688 C 223.398438 169.296875 223.492188 169.390625 223.609375 169.390625 C 223.726562 169.390625 223.820312 169.296875 223.820312 169.179688 Z M 223.820312 169.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.335938 167.199219 C 223.335938 167.082031 223.242188 166.988281 223.125 166.988281 C 223.007812 166.988281 222.914062 167.082031 222.914062 167.199219 C 222.914062 167.316406 223.007812 167.410156 223.125 167.410156 C 223.242188 167.410156 223.335938 167.316406 223.335938 167.199219 Z M 223.335938 167.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.152344 162.128906 C 221.152344 162.011719 221.058594 161.917969 220.941406 161.917969 C 220.824219 161.917969 220.730469 162.011719 220.730469 162.128906 C 220.730469 162.246094 220.824219 162.339844 220.941406 162.339844 C 221.058594 162.339844 221.152344 162.246094 221.152344 162.128906 Z M 221.152344 162.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.339844 163.332031 C 218.339844 163.214844 218.246094 163.121094 218.128906 163.121094 C 218.011719 163.121094 217.917969 163.214844 217.917969 163.332031 C 217.917969 163.449219 218.011719 163.542969 218.128906 163.542969 C 218.246094 163.542969 218.339844 163.449219 218.339844 163.332031 Z M 218.339844 163.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.042969 160.695312 C 219.042969 160.578125 218.949219 160.484375 218.832031 160.484375 C 218.714844 160.484375 218.621094 160.578125 218.621094 160.695312 C 218.621094 160.8125 218.714844 160.90625 218.832031 160.90625 C 218.949219 160.90625 219.042969 160.8125 219.042969 160.695312 Z M 219.042969 160.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.867188 162.175781 C 217.867188 162.058594 217.773438 161.964844 217.65625 161.964844 C 217.539062 161.964844 217.445312 162.058594 217.445312 162.175781 C 217.445312 162.292969 217.539062 162.386719 217.65625 162.386719 C 217.773438 162.386719 217.867188 162.292969 217.867188 162.175781 Z M 217.867188 162.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.351562 167.222656 C 219.351562 167.105469 219.257812 167.011719 219.140625 167.011719 C 219.023438 167.011719 218.929688 167.105469 218.929688 167.222656 C 218.929688 167.339844 219.023438 167.433594 219.140625 167.433594 C 219.257812 167.433594 219.351562 167.339844 219.351562 167.222656 Z M 219.351562 167.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.515625 167.636719 C 215.515625 167.519531 215.421875 167.425781 215.304688 167.425781 C 215.1875 167.425781 215.09375 167.519531 215.09375 167.636719 C 215.09375 167.753906 215.1875 167.847656 215.304688 167.847656 C 215.421875 167.847656 215.515625 167.753906 215.515625 167.636719 Z M 215.515625 167.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.5 171.042969 C 212.5 170.925781 212.40625 170.832031 212.289062 170.832031 C 212.171875 170.832031 212.078125 170.925781 212.078125 171.042969 C 212.078125 171.160156 212.171875 171.253906 212.289062 171.253906 C 212.40625 171.253906 212.5 171.160156 212.5 171.042969 Z M 212.5 171.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.253906 169.957031 C 214.253906 169.839844 214.160156 169.746094 214.042969 169.746094 C 213.925781 169.746094 213.832031 169.839844 213.832031 169.957031 C 213.832031 170.074219 213.925781 170.167969 214.042969 170.167969 C 214.160156 170.167969 214.253906 170.074219 214.253906 169.957031 Z M 214.253906 169.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.277344 167.609375 C 212.277344 167.492188 212.183594 167.398438 212.066406 167.398438 C 211.949219 167.398438 211.855469 167.492188 211.855469 167.609375 C 211.855469 167.726562 211.949219 167.820312 212.066406 167.820312 C 212.183594 167.820312 212.277344 167.726562 212.277344 167.609375 Z M 212.277344 167.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.898438 166.105469 C 212.898438 165.988281 212.804688 165.894531 212.6875 165.894531 C 212.570312 165.894531 212.476562 165.988281 212.476562 166.105469 C 212.476562 166.222656 212.570312 166.316406 212.6875 166.316406 C 212.804688 166.316406 212.898438 166.222656 212.898438 166.105469 Z M 212.898438 166.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.929688 165.550781 C 212.929688 165.433594 212.835938 165.339844 212.71875 165.339844 C 212.601562 165.339844 212.507812 165.433594 212.507812 165.550781 C 212.507812 165.667969 212.601562 165.761719 212.71875 165.761719 C 212.835938 165.761719 212.929688 165.667969 212.929688 165.550781 Z M 212.929688 165.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.433594 164.769531 C 215.433594 164.652344 215.339844 164.558594 215.222656 164.558594 C 215.105469 164.558594 215.011719 164.652344 215.011719 164.769531 C 215.011719 164.886719 215.105469 164.980469 215.222656 164.980469 C 215.339844 164.980469 215.433594 164.886719 215.433594 164.769531 Z M 215.433594 164.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.933594 162.75 C 212.933594 162.632812 212.839844 162.539062 212.722656 162.539062 C 212.605469 162.539062 212.511719 162.632812 212.511719 162.75 C 212.511719 162.867188 212.605469 162.960938 212.722656 162.960938 C 212.839844 162.960938 212.933594 162.867188 212.933594 162.75 Z M 212.933594 162.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.550781 163.699219 C 212.550781 163.582031 212.457031 163.488281 212.339844 163.488281 C 212.222656 163.488281 212.128906 163.582031 212.128906 163.699219 C 212.128906 163.816406 212.222656 163.910156 212.339844 163.910156 C 212.457031 163.910156 212.550781 163.816406 212.550781 163.699219 Z M 212.550781 163.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.527344 168.230469 C 211.527344 168.113281 211.433594 168.019531 211.316406 168.019531 C 211.199219 168.019531 211.105469 168.113281 211.105469 168.230469 C 211.105469 168.347656 211.199219 168.441406 211.316406 168.441406 C 211.433594 168.441406 211.527344 168.347656 211.527344 168.230469 Z M 211.527344 168.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.617188 167.023438 C 210.617188 166.90625 210.523438 166.8125 210.40625 166.8125 C 210.289062 166.8125 210.195312 166.90625 210.195312 167.023438 C 210.195312 167.140625 210.289062 167.234375 210.40625 167.234375 C 210.523438 167.234375 210.617188 167.140625 210.617188 167.023438 Z M 210.617188 167.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.292969 167.898438 C 210.292969 167.78125 210.199219 167.6875 210.082031 167.6875 C 209.964844 167.6875 209.871094 167.78125 209.871094 167.898438 C 209.871094 168.015625 209.964844 168.109375 210.082031 168.109375 C 210.199219 168.109375 210.292969 168.015625 210.292969 167.898438 Z M 210.292969 167.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.734375 168.710938 C 208.734375 168.59375 208.640625 168.5 208.523438 168.5 C 208.40625 168.5 208.3125 168.59375 208.3125 168.710938 C 208.3125 168.828125 208.40625 168.921875 208.523438 168.921875 C 208.640625 168.921875 208.734375 168.828125 208.734375 168.710938 Z M 208.734375 168.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.183594 168.472656 C 213.183594 168.355469 213.089844 168.261719 212.972656 168.261719 C 212.855469 168.261719 212.761719 168.355469 212.761719 168.472656 C 212.761719 168.589844 212.855469 168.683594 212.972656 168.683594 C 213.089844 168.683594 213.183594 168.589844 213.183594 168.472656 Z M 213.183594 168.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.050781 168.5 C 213.050781 168.382812 212.957031 168.289062 212.839844 168.289062 C 212.722656 168.289062 212.628906 168.382812 212.628906 168.5 C 212.628906 168.617188 212.722656 168.710938 212.839844 168.710938 C 212.957031 168.710938 213.050781 168.617188 213.050781 168.5 Z M 213.050781 168.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.832031 170.664062 C 212.832031 170.546875 212.738281 170.453125 212.621094 170.453125 C 212.503906 170.453125 212.410156 170.546875 212.410156 170.664062 C 212.410156 170.78125 212.503906 170.875 212.621094 170.875 C 212.738281 170.875 212.832031 170.78125 212.832031 170.664062 Z M 212.832031 170.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.089844 169.484375 C 210.089844 169.367188 209.996094 169.273438 209.878906 169.273438 C 209.761719 169.273438 209.667969 169.367188 209.667969 169.484375 C 209.667969 169.601562 209.761719 169.695312 209.878906 169.695312 C 209.996094 169.695312 210.089844 169.601562 210.089844 169.484375 Z M 210.089844 169.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.898438 169.527344 C 209.898438 169.410156 209.804688 169.316406 209.6875 169.316406 C 209.570312 169.316406 209.476562 169.410156 209.476562 169.527344 C 209.476562 169.644531 209.570312 169.738281 209.6875 169.738281 C 209.804688 169.738281 209.898438 169.644531 209.898438 169.527344 Z M 209.898438 169.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.847656 168.363281 C 205.847656 168.246094 205.753906 168.152344 205.636719 168.152344 C 205.519531 168.152344 205.425781 168.246094 205.425781 168.363281 C 205.425781 168.480469 205.519531 168.574219 205.636719 168.574219 C 205.753906 168.574219 205.847656 168.480469 205.847656 168.363281 Z M 205.847656 168.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.789062 171.03125 C 204.789062 170.914062 204.695312 170.820312 204.578125 170.820312 C 204.460938 170.820312 204.367188 170.914062 204.367188 171.03125 C 204.367188 171.148438 204.460938 171.242188 204.578125 171.242188 C 204.695312 171.242188 204.789062 171.148438 204.789062 171.03125 Z M 204.789062 171.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.75 168.792969 C 206.75 168.675781 206.65625 168.582031 206.539062 168.582031 C 206.421875 168.582031 206.328125 168.675781 206.328125 168.792969 C 206.328125 168.910156 206.421875 169.003906 206.539062 169.003906 C 206.65625 169.003906 206.75 168.910156 206.75 168.792969 Z M 206.75 168.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.730469 168.449219 C 205.730469 168.332031 205.636719 168.238281 205.519531 168.238281 C 205.402344 168.238281 205.308594 168.332031 205.308594 168.449219 C 205.308594 168.566406 205.402344 168.660156 205.519531 168.660156 C 205.636719 168.660156 205.730469 168.566406 205.730469 168.449219 Z M 205.730469 168.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.207031 171.730469 C 205.207031 171.613281 205.113281 171.519531 204.996094 171.519531 C 204.878906 171.519531 204.785156 171.613281 204.785156 171.730469 C 204.785156 171.847656 204.878906 171.941406 204.996094 171.941406 C 205.113281 171.941406 205.207031 171.847656 205.207031 171.730469 Z M 205.207031 171.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.550781 171.890625 C 204.550781 171.773438 204.457031 171.679688 204.339844 171.679688 C 204.222656 171.679688 204.128906 171.773438 204.128906 171.890625 C 204.128906 172.007812 204.222656 172.101562 204.339844 172.101562 C 204.457031 172.101562 204.550781 172.007812 204.550781 171.890625 Z M 204.550781 171.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.039062 172.347656 C 202.039062 172.230469 201.945312 172.136719 201.828125 172.136719 C 201.710938 172.136719 201.617188 172.230469 201.617188 172.347656 C 201.617188 172.464844 201.710938 172.558594 201.828125 172.558594 C 201.945312 172.558594 202.039062 172.464844 202.039062 172.347656 Z M 202.039062 172.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.203125 169.828125 C 203.203125 169.710938 203.109375 169.617188 202.992188 169.617188 C 202.875 169.617188 202.78125 169.710938 202.78125 169.828125 C 202.78125 169.945312 202.875 170.039062 202.992188 170.039062 C 203.109375 170.039062 203.203125 169.945312 203.203125 169.828125 Z M 203.203125 169.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.316406 172.101562 C 203.316406 171.984375 203.222656 171.890625 203.105469 171.890625 C 202.988281 171.890625 202.894531 171.984375 202.894531 172.101562 C 202.894531 172.21875 202.988281 172.3125 203.105469 172.3125 C 203.222656 172.3125 203.316406 172.21875 203.316406 172.101562 Z M 203.316406 172.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.679688 169.308594 C 202.679688 169.191406 202.585938 169.097656 202.46875 169.097656 C 202.351562 169.097656 202.257812 169.191406 202.257812 169.308594 C 202.257812 169.425781 202.351562 169.519531 202.46875 169.519531 C 202.585938 169.519531 202.679688 169.425781 202.679688 169.308594 Z M 202.679688 169.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.589844 169.480469 C 201.589844 169.363281 201.496094 169.269531 201.378906 169.269531 C 201.261719 169.269531 201.167969 169.363281 201.167969 169.480469 C 201.167969 169.597656 201.261719 169.691406 201.378906 169.691406 C 201.496094 169.691406 201.589844 169.597656 201.589844 169.480469 Z M 201.589844 169.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.015625 170.140625 C 203.015625 170.023438 202.921875 169.929688 202.804688 169.929688 C 202.6875 169.929688 202.59375 170.023438 202.59375 170.140625 C 202.59375 170.257812 202.6875 170.351562 202.804688 170.351562 C 202.921875 170.351562 203.015625 170.257812 203.015625 170.140625 Z M 203.015625 170.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.878906 171.691406 C 205.878906 171.574219 205.785156 171.480469 205.667969 171.480469 C 205.550781 171.480469 205.457031 171.574219 205.457031 171.691406 C 205.457031 171.808594 205.550781 171.902344 205.667969 171.902344 C 205.785156 171.902344 205.878906 171.808594 205.878906 171.691406 Z M 205.878906 171.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.269531 176.816406 C 205.269531 176.699219 205.175781 176.605469 205.058594 176.605469 C 204.941406 176.605469 204.847656 176.699219 204.847656 176.816406 C 204.847656 176.933594 204.941406 177.027344 205.058594 177.027344 C 205.175781 177.027344 205.269531 176.933594 205.269531 176.816406 Z M 205.269531 176.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.140625 175.5 C 206.140625 175.382812 206.046875 175.289062 205.929688 175.289062 C 205.8125 175.289062 205.71875 175.382812 205.71875 175.5 C 205.71875 175.617188 205.8125 175.710938 205.929688 175.710938 C 206.046875 175.710938 206.140625 175.617188 206.140625 175.5 Z M 206.140625 175.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.773438 177.414062 C 204.773438 177.296875 204.679688 177.203125 204.5625 177.203125 C 204.445312 177.203125 204.351562 177.296875 204.351562 177.414062 C 204.351562 177.53125 204.445312 177.625 204.5625 177.625 C 204.679688 177.625 204.773438 177.53125 204.773438 177.414062 Z M 204.773438 177.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.605469 180.351562 C 207.605469 180.234375 207.511719 180.140625 207.394531 180.140625 C 207.277344 180.140625 207.183594 180.234375 207.183594 180.351562 C 207.183594 180.46875 207.277344 180.5625 207.394531 180.5625 C 207.511719 180.5625 207.605469 180.46875 207.605469 180.351562 Z M 207.605469 180.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.75 177.695312 C 206.75 177.578125 206.65625 177.484375 206.539062 177.484375 C 206.421875 177.484375 206.328125 177.578125 206.328125 177.695312 C 206.328125 177.8125 206.421875 177.90625 206.539062 177.90625 C 206.65625 177.90625 206.75 177.8125 206.75 177.695312 Z M 206.75 177.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.683594 179.234375 C 206.683594 179.117188 206.589844 179.023438 206.472656 179.023438 C 206.355469 179.023438 206.261719 179.117188 206.261719 179.234375 C 206.261719 179.351562 206.355469 179.445312 206.472656 179.445312 C 206.589844 179.445312 206.683594 179.351562 206.683594 179.234375 Z M 206.683594 179.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.175781 178.9375 C 206.175781 178.820312 206.082031 178.726562 205.964844 178.726562 C 205.847656 178.726562 205.753906 178.820312 205.753906 178.9375 C 205.753906 179.054688 205.847656 179.148438 205.964844 179.148438 C 206.082031 179.148438 206.175781 179.054688 206.175781 178.9375 Z M 206.175781 178.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.773438 177.976562 C 202.773438 177.859375 202.679688 177.765625 202.5625 177.765625 C 202.445312 177.765625 202.351562 177.859375 202.351562 177.976562 C 202.351562 178.09375 202.445312 178.1875 202.5625 178.1875 C 202.679688 178.1875 202.773438 178.09375 202.773438 177.976562 Z M 202.773438 177.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.304688 181.609375 C 205.304688 181.492188 205.210938 181.398438 205.09375 181.398438 C 204.976562 181.398438 204.882812 181.492188 204.882812 181.609375 C 204.882812 181.726562 204.976562 181.820312 205.09375 181.820312 C 205.210938 181.820312 205.304688 181.726562 205.304688 181.609375 Z M 205.304688 181.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.730469 179.574219 C 205.730469 179.457031 205.636719 179.363281 205.519531 179.363281 C 205.402344 179.363281 205.308594 179.457031 205.308594 179.574219 C 205.308594 179.691406 205.402344 179.785156 205.519531 179.785156 C 205.636719 179.785156 205.730469 179.691406 205.730469 179.574219 Z M 205.730469 179.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.542969 177.367188 C 207.542969 177.25 207.449219 177.15625 207.332031 177.15625 C 207.214844 177.15625 207.121094 177.25 207.121094 177.367188 C 207.121094 177.484375 207.214844 177.578125 207.332031 177.578125 C 207.449219 177.578125 207.542969 177.484375 207.542969 177.367188 Z M 207.542969 177.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.613281 179.785156 C 207.613281 179.667969 207.519531 179.574219 207.402344 179.574219 C 207.285156 179.574219 207.191406 179.667969 207.191406 179.785156 C 207.191406 179.902344 207.285156 179.996094 207.402344 179.996094 C 207.519531 179.996094 207.613281 179.902344 207.613281 179.785156 Z M 207.613281 179.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.597656 178.804688 C 205.597656 178.6875 205.503906 178.59375 205.386719 178.59375 C 205.269531 178.59375 205.175781 178.6875 205.175781 178.804688 C 205.175781 178.921875 205.269531 179.015625 205.386719 179.015625 C 205.503906 179.015625 205.597656 178.921875 205.597656 178.804688 Z M 205.597656 178.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.308594 179.414062 C 205.308594 179.296875 205.214844 179.203125 205.097656 179.203125 C 204.980469 179.203125 204.886719 179.296875 204.886719 179.414062 C 204.886719 179.53125 204.980469 179.625 205.097656 179.625 C 205.214844 179.625 205.308594 179.53125 205.308594 179.414062 Z M 205.308594 179.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.921875 179.664062 C 204.921875 179.546875 204.828125 179.453125 204.710938 179.453125 C 204.59375 179.453125 204.5 179.546875 204.5 179.664062 C 204.5 179.78125 204.59375 179.875 204.710938 179.875 C 204.828125 179.875 204.921875 179.78125 204.921875 179.664062 Z M 204.921875 179.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.3125 182.292969 C 204.3125 182.175781 204.21875 182.082031 204.101562 182.082031 C 203.984375 182.082031 203.890625 182.175781 203.890625 182.292969 C 203.890625 182.410156 203.984375 182.503906 204.101562 182.503906 C 204.21875 182.503906 204.3125 182.410156 204.3125 182.292969 Z M 204.3125 182.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.632812 182.480469 C 199.632812 182.363281 199.539062 182.269531 199.421875 182.269531 C 199.304688 182.269531 199.210938 182.363281 199.210938 182.480469 C 199.210938 182.597656 199.304688 182.691406 199.421875 182.691406 C 199.539062 182.691406 199.632812 182.597656 199.632812 182.480469 Z M 199.632812 182.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.078125 179.710938 C 201.078125 179.59375 200.984375 179.5 200.867188 179.5 C 200.75 179.5 200.65625 179.59375 200.65625 179.710938 C 200.65625 179.828125 200.75 179.921875 200.867188 179.921875 C 200.984375 179.921875 201.078125 179.828125 201.078125 179.710938 Z M 201.078125 179.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.640625 175.109375 C 197.640625 174.992188 197.546875 174.898438 197.429688 174.898438 C 197.3125 174.898438 197.21875 174.992188 197.21875 175.109375 C 197.21875 175.226562 197.3125 175.320312 197.429688 175.320312 C 197.546875 175.320312 197.640625 175.226562 197.640625 175.109375 Z M 197.640625 175.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.035156 174.5 C 196.035156 174.382812 195.941406 174.289062 195.824219 174.289062 C 195.707031 174.289062 195.613281 174.382812 195.613281 174.5 C 195.613281 174.617188 195.707031 174.710938 195.824219 174.710938 C 195.941406 174.710938 196.035156 174.617188 196.035156 174.5 Z M 196.035156 174.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.011719 171.257812 C 197.011719 171.140625 196.917969 171.046875 196.800781 171.046875 C 196.683594 171.046875 196.589844 171.140625 196.589844 171.257812 C 196.589844 171.375 196.683594 171.46875 196.800781 171.46875 C 196.917969 171.46875 197.011719 171.375 197.011719 171.257812 Z M 197.011719 171.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.394531 172.679688 C 198.394531 172.5625 198.300781 172.46875 198.183594 172.46875 C 198.066406 172.46875 197.972656 172.5625 197.972656 172.679688 C 197.972656 172.796875 198.066406 172.890625 198.183594 172.890625 C 198.300781 172.890625 198.394531 172.796875 198.394531 172.679688 Z M 198.394531 172.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.84375 176.832031 C 196.84375 176.714844 196.75 176.621094 196.632812 176.621094 C 196.515625 176.621094 196.421875 176.714844 196.421875 176.832031 C 196.421875 176.949219 196.515625 177.042969 196.632812 177.042969 C 196.75 177.042969 196.84375 176.949219 196.84375 176.832031 Z M 196.84375 176.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.691406 173.335938 C 193.691406 173.21875 193.597656 173.125 193.480469 173.125 C 193.363281 173.125 193.269531 173.21875 193.269531 173.335938 C 193.269531 173.453125 193.363281 173.546875 193.480469 173.546875 C 193.597656 173.546875 193.691406 173.453125 193.691406 173.335938 Z M 193.691406 173.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.304688 172.785156 C 196.304688 172.667969 196.210938 172.574219 196.09375 172.574219 C 195.976562 172.574219 195.882812 172.667969 195.882812 172.785156 C 195.882812 172.902344 195.976562 172.996094 196.09375 172.996094 C 196.210938 172.996094 196.304688 172.902344 196.304688 172.785156 Z M 196.304688 172.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.410156 169.351562 C 194.410156 169.234375 194.316406 169.140625 194.199219 169.140625 C 194.082031 169.140625 193.988281 169.234375 193.988281 169.351562 C 193.988281 169.46875 194.082031 169.5625 194.199219 169.5625 C 194.316406 169.5625 194.410156 169.46875 194.410156 169.351562 Z M 194.410156 169.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.5625 170.585938 C 196.5625 170.46875 196.46875 170.375 196.351562 170.375 C 196.234375 170.375 196.140625 170.46875 196.140625 170.585938 C 196.140625 170.703125 196.234375 170.796875 196.351562 170.796875 C 196.46875 170.796875 196.5625 170.703125 196.5625 170.585938 Z M 196.5625 170.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.8125 168.382812 C 191.8125 168.265625 191.71875 168.171875 191.601562 168.171875 C 191.484375 168.171875 191.390625 168.265625 191.390625 168.382812 C 191.390625 168.5 191.484375 168.59375 191.601562 168.59375 C 191.71875 168.59375 191.8125 168.5 191.8125 168.382812 Z M 191.8125 168.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.128906 168.59375 C 190.128906 168.476562 190.035156 168.382812 189.917969 168.382812 C 189.800781 168.382812 189.707031 168.476562 189.707031 168.59375 C 189.707031 168.710938 189.800781 168.804688 189.917969 168.804688 C 190.035156 168.804688 190.128906 168.710938 190.128906 168.59375 Z M 190.128906 168.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.40625 169.769531 C 195.40625 169.652344 195.3125 169.558594 195.195312 169.558594 C 195.078125 169.558594 194.984375 169.652344 194.984375 169.769531 C 194.984375 169.886719 195.078125 169.980469 195.195312 169.980469 C 195.3125 169.980469 195.40625 169.886719 195.40625 169.769531 Z M 195.40625 169.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.289062 173.238281 C 194.289062 173.121094 194.195312 173.027344 194.078125 173.027344 C 193.960938 173.027344 193.867188 173.121094 193.867188 173.238281 C 193.867188 173.355469 193.960938 173.449219 194.078125 173.449219 C 194.195312 173.449219 194.289062 173.355469 194.289062 173.238281 Z M 194.289062 173.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.171875 174.816406 C 194.171875 174.699219 194.078125 174.605469 193.960938 174.605469 C 193.84375 174.605469 193.75 174.699219 193.75 174.816406 C 193.75 174.933594 193.84375 175.027344 193.960938 175.027344 C 194.078125 175.027344 194.171875 174.933594 194.171875 174.816406 Z M 194.171875 174.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.074219 175.777344 C 196.074219 175.660156 195.980469 175.566406 195.863281 175.566406 C 195.746094 175.566406 195.652344 175.660156 195.652344 175.777344 C 195.652344 175.894531 195.746094 175.988281 195.863281 175.988281 C 195.980469 175.988281 196.074219 175.894531 196.074219 175.777344 Z M 196.074219 175.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.578125 174.996094 C 198.578125 174.878906 198.484375 174.785156 198.367188 174.785156 C 198.25 174.785156 198.15625 174.878906 198.15625 174.996094 C 198.15625 175.113281 198.25 175.207031 198.367188 175.207031 C 198.484375 175.207031 198.578125 175.113281 198.578125 174.996094 Z M 198.578125 174.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.3125 174.660156 C 199.3125 174.542969 199.21875 174.449219 199.101562 174.449219 C 198.984375 174.449219 198.890625 174.542969 198.890625 174.660156 C 198.890625 174.777344 198.984375 174.871094 199.101562 174.871094 C 199.21875 174.871094 199.3125 174.777344 199.3125 174.660156 Z M 199.3125 174.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.550781 174.878906 C 200.550781 174.761719 200.457031 174.667969 200.339844 174.667969 C 200.222656 174.667969 200.128906 174.761719 200.128906 174.878906 C 200.128906 174.996094 200.222656 175.089844 200.339844 175.089844 C 200.457031 175.089844 200.550781 174.996094 200.550781 174.878906 Z M 200.550781 174.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.574219 174.808594 C 199.574219 174.691406 199.480469 174.597656 199.363281 174.597656 C 199.246094 174.597656 199.152344 174.691406 199.152344 174.808594 C 199.152344 174.925781 199.246094 175.019531 199.363281 175.019531 C 199.480469 175.019531 199.574219 174.925781 199.574219 174.808594 Z M 199.574219 174.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.703125 175.109375 C 197.703125 174.992188 197.609375 174.898438 197.492188 174.898438 C 197.375 174.898438 197.28125 174.992188 197.28125 175.109375 C 197.28125 175.226562 197.375 175.320312 197.492188 175.320312 C 197.609375 175.320312 197.703125 175.226562 197.703125 175.109375 Z M 197.703125 175.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.578125 173.164062 C 196.578125 173.046875 196.484375 172.953125 196.367188 172.953125 C 196.25 172.953125 196.15625 173.046875 196.15625 173.164062 C 196.15625 173.28125 196.25 173.375 196.367188 173.375 C 196.484375 173.375 196.578125 173.28125 196.578125 173.164062 Z M 196.578125 173.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.304688 172.152344 C 198.304688 172.035156 198.210938 171.941406 198.09375 171.941406 C 197.976562 171.941406 197.882812 172.035156 197.882812 172.152344 C 197.882812 172.269531 197.976562 172.363281 198.09375 172.363281 C 198.210938 172.363281 198.304688 172.269531 198.304688 172.152344 Z M 198.304688 172.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.898438 170.164062 C 195.898438 170.046875 195.804688 169.953125 195.6875 169.953125 C 195.570312 169.953125 195.476562 170.046875 195.476562 170.164062 C 195.476562 170.28125 195.570312 170.375 195.6875 170.375 C 195.804688 170.375 195.898438 170.28125 195.898438 170.164062 Z M 195.898438 170.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.914062 166.382812 C 192.914062 166.265625 192.820312 166.171875 192.703125 166.171875 C 192.585938 166.171875 192.492188 166.265625 192.492188 166.382812 C 192.492188 166.5 192.585938 166.59375 192.703125 166.59375 C 192.820312 166.59375 192.914062 166.5 192.914062 166.382812 Z M 192.914062 166.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.078125 169.929688 C 191.078125 169.8125 190.984375 169.71875 190.867188 169.71875 C 190.75 169.71875 190.65625 169.8125 190.65625 169.929688 C 190.65625 170.046875 190.75 170.140625 190.867188 170.140625 C 190.984375 170.140625 191.078125 170.046875 191.078125 169.929688 Z M 191.078125 169.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.332031 170.472656 C 190.332031 170.355469 190.238281 170.261719 190.121094 170.261719 C 190.003906 170.261719 189.910156 170.355469 189.910156 170.472656 C 189.910156 170.589844 190.003906 170.683594 190.121094 170.683594 C 190.238281 170.683594 190.332031 170.589844 190.332031 170.472656 Z M 190.332031 170.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.226562 174.203125 C 191.226562 174.085938 191.132812 173.992188 191.015625 173.992188 C 190.898438 173.992188 190.804688 174.085938 190.804688 174.203125 C 190.804688 174.320312 190.898438 174.414062 191.015625 174.414062 C 191.132812 174.414062 191.226562 174.320312 191.226562 174.203125 Z M 191.226562 174.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.496094 171.894531 C 191.496094 171.777344 191.402344 171.683594 191.285156 171.683594 C 191.167969 171.683594 191.074219 171.777344 191.074219 171.894531 C 191.074219 172.011719 191.167969 172.105469 191.285156 172.105469 C 191.402344 172.105469 191.496094 172.011719 191.496094 171.894531 Z M 191.496094 171.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.769531 174.652344 C 189.769531 174.535156 189.675781 174.441406 189.558594 174.441406 C 189.441406 174.441406 189.347656 174.535156 189.347656 174.652344 C 189.347656 174.769531 189.441406 174.863281 189.558594 174.863281 C 189.675781 174.863281 189.769531 174.769531 189.769531 174.652344 Z M 189.769531 174.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.753906 175.136719 C 190.753906 175.019531 190.660156 174.925781 190.542969 174.925781 C 190.425781 174.925781 190.332031 175.019531 190.332031 175.136719 C 190.332031 175.253906 190.425781 175.347656 190.542969 175.347656 C 190.660156 175.347656 190.753906 175.253906 190.753906 175.136719 Z M 190.753906 175.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.976562 174.679688 C 189.976562 174.5625 189.882812 174.46875 189.765625 174.46875 C 189.648438 174.46875 189.554688 174.5625 189.554688 174.679688 C 189.554688 174.796875 189.648438 174.890625 189.765625 174.890625 C 189.882812 174.890625 189.976562 174.796875 189.976562 174.679688 Z M 189.976562 174.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.425781 173.34375 C 187.425781 173.226562 187.332031 173.132812 187.214844 173.132812 C 187.097656 173.132812 187.003906 173.226562 187.003906 173.34375 C 187.003906 173.460938 187.097656 173.554688 187.214844 173.554688 C 187.332031 173.554688 187.425781 173.460938 187.425781 173.34375 Z M 187.425781 173.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.753906 172.90625 C 188.753906 172.789062 188.660156 172.695312 188.542969 172.695312 C 188.425781 172.695312 188.332031 172.789062 188.332031 172.90625 C 188.332031 173.023438 188.425781 173.117188 188.542969 173.117188 C 188.660156 173.117188 188.753906 173.023438 188.753906 172.90625 Z M 188.753906 172.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.84375 172.515625 C 187.84375 172.398438 187.75 172.304688 187.632812 172.304688 C 187.515625 172.304688 187.421875 172.398438 187.421875 172.515625 C 187.421875 172.632812 187.515625 172.726562 187.632812 172.726562 C 187.75 172.726562 187.84375 172.632812 187.84375 172.515625 Z M 187.84375 172.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.636719 172.265625 C 187.636719 172.148438 187.542969 172.054688 187.425781 172.054688 C 187.308594 172.054688 187.214844 172.148438 187.214844 172.265625 C 187.214844 172.382812 187.308594 172.476562 187.425781 172.476562 C 187.542969 172.476562 187.636719 172.382812 187.636719 172.265625 Z M 187.636719 172.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.386719 170.007812 C 188.386719 169.890625 188.292969 169.796875 188.175781 169.796875 C 188.058594 169.796875 187.964844 169.890625 187.964844 170.007812 C 187.964844 170.125 188.058594 170.21875 188.175781 170.21875 C 188.292969 170.21875 188.386719 170.125 188.386719 170.007812 Z M 188.386719 170.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.8125 172.589844 C 186.8125 172.472656 186.71875 172.378906 186.601562 172.378906 C 186.484375 172.378906 186.390625 172.472656 186.390625 172.589844 C 186.390625 172.707031 186.484375 172.800781 186.601562 172.800781 C 186.71875 172.800781 186.8125 172.707031 186.8125 172.589844 Z M 186.8125 172.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.636719 174.5 C 189.636719 174.382812 189.542969 174.289062 189.425781 174.289062 C 189.308594 174.289062 189.214844 174.382812 189.214844 174.5 C 189.214844 174.617188 189.308594 174.710938 189.425781 174.710938 C 189.542969 174.710938 189.636719 174.617188 189.636719 174.5 Z M 189.636719 174.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.527344 173.820312 C 188.527344 173.703125 188.433594 173.609375 188.316406 173.609375 C 188.199219 173.609375 188.105469 173.703125 188.105469 173.820312 C 188.105469 173.9375 188.199219 174.03125 188.316406 174.03125 C 188.433594 174.03125 188.527344 173.9375 188.527344 173.820312 Z M 188.527344 173.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.371094 173.8125 C 185.371094 173.695312 185.277344 173.601562 185.160156 173.601562 C 185.042969 173.601562 184.949219 173.695312 184.949219 173.8125 C 184.949219 173.929688 185.042969 174.023438 185.160156 174.023438 C 185.277344 174.023438 185.371094 173.929688 185.371094 173.8125 Z M 185.371094 173.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.125 176.667969 C 189.125 176.550781 189.03125 176.457031 188.914062 176.457031 C 188.796875 176.457031 188.703125 176.550781 188.703125 176.667969 C 188.703125 176.785156 188.796875 176.878906 188.914062 176.878906 C 189.03125 176.878906 189.125 176.785156 189.125 176.667969 Z M 189.125 176.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.4375 175.65625 C 186.4375 175.539062 186.34375 175.445312 186.226562 175.445312 C 186.109375 175.445312 186.015625 175.539062 186.015625 175.65625 C 186.015625 175.773438 186.109375 175.867188 186.226562 175.867188 C 186.34375 175.867188 186.4375 175.773438 186.4375 175.65625 Z M 186.4375 175.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.621094 178.699219 C 188.621094 178.582031 188.527344 178.488281 188.410156 178.488281 C 188.292969 178.488281 188.199219 178.582031 188.199219 178.699219 C 188.199219 178.816406 188.292969 178.910156 188.410156 178.910156 C 188.527344 178.910156 188.621094 178.816406 188.621094 178.699219 Z M 188.621094 178.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.015625 178.925781 C 189.015625 178.808594 188.921875 178.714844 188.804688 178.714844 C 188.6875 178.714844 188.59375 178.808594 188.59375 178.925781 C 188.59375 179.042969 188.6875 179.136719 188.804688 179.136719 C 188.921875 179.136719 189.015625 179.042969 189.015625 178.925781 Z M 189.015625 178.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.789062 178.140625 C 187.789062 178.023438 187.695312 177.929688 187.578125 177.929688 C 187.460938 177.929688 187.367188 178.023438 187.367188 178.140625 C 187.367188 178.257812 187.460938 178.351562 187.578125 178.351562 C 187.695312 178.351562 187.789062 178.257812 187.789062 178.140625 Z M 187.789062 178.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.027344 179.191406 C 190.027344 179.074219 189.933594 178.980469 189.816406 178.980469 C 189.699219 178.980469 189.605469 179.074219 189.605469 179.191406 C 189.605469 179.308594 189.699219 179.402344 189.816406 179.402344 C 189.933594 179.402344 190.027344 179.308594 190.027344 179.191406 Z M 190.027344 179.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.929688 177.59375 C 185.929688 177.476562 185.835938 177.382812 185.71875 177.382812 C 185.601562 177.382812 185.507812 177.476562 185.507812 177.59375 C 185.507812 177.710938 185.601562 177.804688 185.71875 177.804688 C 185.835938 177.804688 185.929688 177.710938 185.929688 177.59375 Z M 185.929688 177.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.710938 176.34375 C 183.710938 176.226562 183.617188 176.132812 183.5 176.132812 C 183.382812 176.132812 183.289062 176.226562 183.289062 176.34375 C 183.289062 176.460938 183.382812 176.554688 183.5 176.554688 C 183.617188 176.554688 183.710938 176.460938 183.710938 176.34375 Z M 183.710938 176.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.558594 175.085938 C 181.558594 174.96875 181.464844 174.875 181.347656 174.875 C 181.230469 174.875 181.136719 174.96875 181.136719 175.085938 C 181.136719 175.203125 181.230469 175.296875 181.347656 175.296875 C 181.464844 175.296875 181.558594 175.203125 181.558594 175.085938 Z M 181.558594 175.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.191406 174.148438 C 181.191406 174.03125 181.097656 173.9375 180.980469 173.9375 C 180.863281 173.9375 180.769531 174.03125 180.769531 174.148438 C 180.769531 174.265625 180.863281 174.359375 180.980469 174.359375 C 181.097656 174.359375 181.191406 174.265625 181.191406 174.148438 Z M 181.191406 174.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.527344 174.324219 C 181.527344 174.207031 181.433594 174.113281 181.316406 174.113281 C 181.199219 174.113281 181.105469 174.207031 181.105469 174.324219 C 181.105469 174.441406 181.199219 174.535156 181.316406 174.535156 C 181.433594 174.535156 181.527344 174.441406 181.527344 174.324219 Z M 181.527344 174.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.433594 172.121094 C 182.433594 172.003906 182.339844 171.910156 182.222656 171.910156 C 182.105469 171.910156 182.011719 172.003906 182.011719 172.121094 C 182.011719 172.238281 182.105469 172.332031 182.222656 172.332031 C 182.339844 172.332031 182.433594 172.238281 182.433594 172.121094 Z M 182.433594 172.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.449219 174.164062 C 183.449219 174.046875 183.355469 173.953125 183.238281 173.953125 C 183.121094 173.953125 183.027344 174.046875 183.027344 174.164062 C 183.027344 174.28125 183.121094 174.375 183.238281 174.375 C 183.355469 174.375 183.449219 174.28125 183.449219 174.164062 Z M 183.449219 174.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.160156 174.195312 C 182.160156 174.078125 182.066406 173.984375 181.949219 173.984375 C 181.832031 173.984375 181.738281 174.078125 181.738281 174.195312 C 181.738281 174.3125 181.832031 174.40625 181.949219 174.40625 C 182.066406 174.40625 182.160156 174.3125 182.160156 174.195312 Z M 182.160156 174.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.691406 171.003906 C 181.691406 170.886719 181.597656 170.792969 181.480469 170.792969 C 181.363281 170.792969 181.269531 170.886719 181.269531 171.003906 C 181.269531 171.121094 181.363281 171.214844 181.480469 171.214844 C 181.597656 171.214844 181.691406 171.121094 181.691406 171.003906 Z M 181.691406 171.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 180.714844 170.511719 C 180.714844 170.394531 180.621094 170.300781 180.503906 170.300781 C 180.386719 170.300781 180.292969 170.394531 180.292969 170.511719 C 180.292969 170.628906 180.386719 170.722656 180.503906 170.722656 C 180.621094 170.722656 180.714844 170.628906 180.714844 170.511719 Z M 180.714844 170.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.941406 166.078125 C 181.941406 165.960938 181.847656 165.867188 181.730469 165.867188 C 181.613281 165.867188 181.519531 165.960938 181.519531 166.078125 C 181.519531 166.195312 181.613281 166.289062 181.730469 166.289062 C 181.847656 166.289062 181.941406 166.195312 181.941406 166.078125 Z M 181.941406 166.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.125 163.257812 C 181.125 163.140625 181.03125 163.046875 180.914062 163.046875 C 180.796875 163.046875 180.703125 163.140625 180.703125 163.257812 C 180.703125 163.375 180.796875 163.46875 180.914062 163.46875 C 181.03125 163.46875 181.125 163.375 181.125 163.257812 Z M 181.125 163.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.671875 163.667969 C 181.671875 163.550781 181.578125 163.457031 181.460938 163.457031 C 181.34375 163.457031 181.25 163.550781 181.25 163.667969 C 181.25 163.785156 181.34375 163.878906 181.460938 163.878906 C 181.578125 163.878906 181.671875 163.785156 181.671875 163.667969 Z M 181.671875 163.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.105469 165.933594 C 184.105469 165.816406 184.011719 165.722656 183.894531 165.722656 C 183.777344 165.722656 183.683594 165.816406 183.683594 165.933594 C 183.683594 166.050781 183.777344 166.144531 183.894531 166.144531 C 184.011719 166.144531 184.105469 166.050781 184.105469 165.933594 Z M 184.105469 165.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.625 166.625 C 183.625 166.507812 183.53125 166.414062 183.414062 166.414062 C 183.296875 166.414062 183.203125 166.507812 183.203125 166.625 C 183.203125 166.742188 183.296875 166.835938 183.414062 166.835938 C 183.53125 166.835938 183.625 166.742188 183.625 166.625 Z M 183.625 166.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.40625 167.6875 C 181.40625 167.570312 181.3125 167.476562 181.195312 167.476562 C 181.078125 167.476562 180.984375 167.570312 180.984375 167.6875 C 180.984375 167.804688 181.078125 167.898438 181.195312 167.898438 C 181.3125 167.898438 181.40625 167.804688 181.40625 167.6875 Z M 181.40625 167.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.351562 171.542969 C 182.351562 171.425781 182.257812 171.332031 182.140625 171.332031 C 182.023438 171.332031 181.929688 171.425781 181.929688 171.542969 C 181.929688 171.660156 182.023438 171.753906 182.140625 171.753906 C 182.257812 171.753906 182.351562 171.660156 182.351562 171.542969 Z M 182.351562 171.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.183594 172.144531 C 184.183594 172.027344 184.089844 171.933594 183.972656 171.933594 C 183.855469 171.933594 183.761719 172.027344 183.761719 172.144531 C 183.761719 172.261719 183.855469 172.355469 183.972656 172.355469 C 184.089844 172.355469 184.183594 172.261719 184.183594 172.144531 Z M 184.183594 172.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.089844 170.320312 C 186.089844 170.203125 185.996094 170.109375 185.878906 170.109375 C 185.761719 170.109375 185.667969 170.203125 185.667969 170.320312 C 185.667969 170.4375 185.761719 170.53125 185.878906 170.53125 C 185.996094 170.53125 186.089844 170.4375 186.089844 170.320312 Z M 186.089844 170.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.703125 170.011719 C 184.703125 169.894531 184.609375 169.800781 184.492188 169.800781 C 184.375 169.800781 184.28125 169.894531 184.28125 170.011719 C 184.28125 170.128906 184.375 170.222656 184.492188 170.222656 C 184.609375 170.222656 184.703125 170.128906 184.703125 170.011719 Z M 184.703125 170.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.480469 169.925781 C 186.480469 169.808594 186.386719 169.714844 186.269531 169.714844 C 186.152344 169.714844 186.058594 169.808594 186.058594 169.925781 C 186.058594 170.042969 186.152344 170.136719 186.269531 170.136719 C 186.386719 170.136719 186.480469 170.042969 186.480469 169.925781 Z M 186.480469 169.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.871094 169.933594 C 185.871094 169.816406 185.777344 169.722656 185.660156 169.722656 C 185.542969 169.722656 185.449219 169.816406 185.449219 169.933594 C 185.449219 170.050781 185.542969 170.144531 185.660156 170.144531 C 185.777344 170.144531 185.871094 170.050781 185.871094 169.933594 Z M 185.871094 169.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.34375 172.160156 C 184.34375 172.042969 184.25 171.949219 184.132812 171.949219 C 184.015625 171.949219 183.921875 172.042969 183.921875 172.160156 C 183.921875 172.277344 184.015625 172.371094 184.132812 172.371094 C 184.25 172.371094 184.34375 172.277344 184.34375 172.160156 Z M 184.34375 172.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.21875 173.765625 C 183.21875 173.648438 183.125 173.554688 183.007812 173.554688 C 182.890625 173.554688 182.796875 173.648438 182.796875 173.765625 C 182.796875 173.882812 182.890625 173.976562 183.007812 173.976562 C 183.125 173.976562 183.21875 173.882812 183.21875 173.765625 Z M 183.21875 173.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.691406 171.8125 C 183.691406 171.695312 183.597656 171.601562 183.480469 171.601562 C 183.363281 171.601562 183.269531 171.695312 183.269531 171.8125 C 183.269531 171.929688 183.363281 172.023438 183.480469 172.023438 C 183.597656 172.023438 183.691406 171.929688 183.691406 171.8125 Z M 183.691406 171.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.285156 168.910156 C 185.285156 168.792969 185.191406 168.699219 185.074219 168.699219 C 184.957031 168.699219 184.863281 168.792969 184.863281 168.910156 C 184.863281 169.027344 184.957031 169.121094 185.074219 169.121094 C 185.191406 169.121094 185.285156 169.027344 185.285156 168.910156 Z M 185.285156 168.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.898438 163.886719 C 184.898438 163.769531 184.804688 163.675781 184.6875 163.675781 C 184.570312 163.675781 184.476562 163.769531 184.476562 163.886719 C 184.476562 164.003906 184.570312 164.097656 184.6875 164.097656 C 184.804688 164.097656 184.898438 164.003906 184.898438 163.886719 Z M 184.898438 163.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.8125 164.199219 C 184.8125 164.082031 184.71875 163.988281 184.601562 163.988281 C 184.484375 163.988281 184.390625 164.082031 184.390625 164.199219 C 184.390625 164.316406 184.484375 164.410156 184.601562 164.410156 C 184.71875 164.410156 184.8125 164.316406 184.8125 164.199219 Z M 184.8125 164.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.644531 165.722656 C 185.644531 165.605469 185.550781 165.511719 185.433594 165.511719 C 185.316406 165.511719 185.222656 165.605469 185.222656 165.722656 C 185.222656 165.839844 185.316406 165.933594 185.433594 165.933594 C 185.550781 165.933594 185.644531 165.839844 185.644531 165.722656 Z M 185.644531 165.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.433594 167.929688 C 190.433594 167.8125 190.339844 167.71875 190.222656 167.71875 C 190.105469 167.71875 190.011719 167.8125 190.011719 167.929688 C 190.011719 168.046875 190.105469 168.140625 190.222656 168.140625 C 190.339844 168.140625 190.433594 168.046875 190.433594 167.929688 Z M 190.433594 167.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.113281 168.910156 C 190.113281 168.792969 190.019531 168.699219 189.902344 168.699219 C 189.785156 168.699219 189.691406 168.792969 189.691406 168.910156 C 189.691406 169.027344 189.785156 169.121094 189.902344 169.121094 C 190.019531 169.121094 190.113281 169.027344 190.113281 168.910156 Z M 190.113281 168.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.222656 172.320312 C 193.222656 172.203125 193.128906 172.109375 193.011719 172.109375 C 192.894531 172.109375 192.800781 172.203125 192.800781 172.320312 C 192.800781 172.4375 192.894531 172.53125 193.011719 172.53125 C 193.128906 172.53125 193.222656 172.4375 193.222656 172.320312 Z M 193.222656 172.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.695312 169.503906 C 195.695312 169.386719 195.601562 169.292969 195.484375 169.292969 C 195.367188 169.292969 195.273438 169.386719 195.273438 169.503906 C 195.273438 169.621094 195.367188 169.714844 195.484375 169.714844 C 195.601562 169.714844 195.695312 169.621094 195.695312 169.503906 Z M 195.695312 169.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.035156 167.851562 C 196.035156 167.734375 195.941406 167.640625 195.824219 167.640625 C 195.707031 167.640625 195.613281 167.734375 195.613281 167.851562 C 195.613281 167.96875 195.707031 168.0625 195.824219 168.0625 C 195.941406 168.0625 196.035156 167.96875 196.035156 167.851562 Z M 196.035156 167.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.398438 166.46875 C 195.398438 166.351562 195.304688 166.257812 195.1875 166.257812 C 195.070312 166.257812 194.976562 166.351562 194.976562 166.46875 C 194.976562 166.585938 195.070312 166.679688 195.1875 166.679688 C 195.304688 166.679688 195.398438 166.585938 195.398438 166.46875 Z M 195.398438 166.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.535156 167.195312 C 196.535156 167.078125 196.441406 166.984375 196.324219 166.984375 C 196.207031 166.984375 196.113281 167.078125 196.113281 167.195312 C 196.113281 167.3125 196.207031 167.40625 196.324219 167.40625 C 196.441406 167.40625 196.535156 167.3125 196.535156 167.195312 Z M 196.535156 167.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.070312 166.910156 C 192.070312 166.792969 191.976562 166.699219 191.859375 166.699219 C 191.742188 166.699219 191.648438 166.792969 191.648438 166.910156 C 191.648438 167.027344 191.742188 167.121094 191.859375 167.121094 C 191.976562 167.121094 192.070312 167.027344 192.070312 166.910156 Z M 192.070312 166.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.726562 168.296875 C 196.726562 168.179688 196.632812 168.085938 196.515625 168.085938 C 196.398438 168.085938 196.304688 168.179688 196.304688 168.296875 C 196.304688 168.414062 196.398438 168.507812 196.515625 168.507812 C 196.632812 168.507812 196.726562 168.414062 196.726562 168.296875 Z M 196.726562 168.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.507812 170.363281 C 199.507812 170.246094 199.414062 170.152344 199.296875 170.152344 C 199.179688 170.152344 199.085938 170.246094 199.085938 170.363281 C 199.085938 170.480469 199.179688 170.574219 199.296875 170.574219 C 199.414062 170.574219 199.507812 170.480469 199.507812 170.363281 Z M 199.507812 170.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.003906 171.730469 C 201.003906 171.613281 200.910156 171.519531 200.792969 171.519531 C 200.675781 171.519531 200.582031 171.613281 200.582031 171.730469 C 200.582031 171.847656 200.675781 171.941406 200.792969 171.941406 C 200.910156 171.941406 201.003906 171.847656 201.003906 171.730469 Z M 201.003906 171.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.347656 171.914062 C 200.347656 171.796875 200.253906 171.703125 200.136719 171.703125 C 200.019531 171.703125 199.925781 171.796875 199.925781 171.914062 C 199.925781 172.03125 200.019531 172.125 200.136719 172.125 C 200.253906 172.125 200.347656 172.03125 200.347656 171.914062 Z M 200.347656 171.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.925781 174.476562 C 199.925781 174.359375 199.832031 174.265625 199.714844 174.265625 C 199.597656 174.265625 199.503906 174.359375 199.503906 174.476562 C 199.503906 174.59375 199.597656 174.6875 199.714844 174.6875 C 199.832031 174.6875 199.925781 174.59375 199.925781 174.476562 Z M 199.925781 174.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.382812 173.878906 C 199.382812 173.761719 199.289062 173.667969 199.171875 173.667969 C 199.054688 173.667969 198.960938 173.761719 198.960938 173.878906 C 198.960938 173.996094 199.054688 174.089844 199.171875 174.089844 C 199.289062 174.089844 199.382812 173.996094 199.382812 173.878906 Z M 199.382812 173.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.324219 177.164062 C 198.324219 177.046875 198.230469 176.953125 198.113281 176.953125 C 197.996094 176.953125 197.902344 177.046875 197.902344 177.164062 C 197.902344 177.28125 197.996094 177.375 198.113281 177.375 C 198.230469 177.375 198.324219 177.28125 198.324219 177.164062 Z M 198.324219 177.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.457031 178.609375 C 201.457031 178.492188 201.363281 178.398438 201.246094 178.398438 C 201.128906 178.398438 201.035156 178.492188 201.035156 178.609375 C 201.035156 178.726562 201.128906 178.820312 201.246094 178.820312 C 201.363281 178.820312 201.457031 178.726562 201.457031 178.609375 Z M 201.457031 178.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.617188 180.785156 C 201.617188 180.667969 201.523438 180.574219 201.40625 180.574219 C 201.289062 180.574219 201.195312 180.667969 201.195312 180.785156 C 201.195312 180.902344 201.289062 180.996094 201.40625 180.996094 C 201.523438 180.996094 201.617188 180.902344 201.617188 180.785156 Z M 201.617188 180.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.445312 179.199219 C 202.445312 179.082031 202.351562 178.988281 202.234375 178.988281 C 202.117188 178.988281 202.023438 179.082031 202.023438 179.199219 C 202.023438 179.316406 202.117188 179.410156 202.234375 179.410156 C 202.351562 179.410156 202.445312 179.316406 202.445312 179.199219 Z M 202.445312 179.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.316406 176.277344 C 203.316406 176.160156 203.222656 176.066406 203.105469 176.066406 C 202.988281 176.066406 202.894531 176.160156 202.894531 176.277344 C 202.894531 176.394531 202.988281 176.488281 203.105469 176.488281 C 203.222656 176.488281 203.316406 176.394531 203.316406 176.277344 Z M 203.316406 176.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.800781 175.039062 C 203.800781 174.921875 203.707031 174.828125 203.589844 174.828125 C 203.472656 174.828125 203.378906 174.921875 203.378906 175.039062 C 203.378906 175.15625 203.472656 175.25 203.589844 175.25 C 203.707031 175.25 203.800781 175.15625 203.800781 175.039062 Z M 203.800781 175.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.8125 175.6875 C 202.8125 175.570312 202.71875 175.476562 202.601562 175.476562 C 202.484375 175.476562 202.390625 175.570312 202.390625 175.6875 C 202.390625 175.804688 202.484375 175.898438 202.601562 175.898438 C 202.71875 175.898438 202.8125 175.804688 202.8125 175.6875 Z M 202.8125 175.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.875 175.445312 C 203.875 175.328125 203.78125 175.234375 203.664062 175.234375 C 203.546875 175.234375 203.453125 175.328125 203.453125 175.445312 C 203.453125 175.5625 203.546875 175.65625 203.664062 175.65625 C 203.78125 175.65625 203.875 175.5625 203.875 175.445312 Z M 203.875 175.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.035156 174.917969 C 203.035156 174.800781 202.941406 174.707031 202.824219 174.707031 C 202.707031 174.707031 202.613281 174.800781 202.613281 174.917969 C 202.613281 175.035156 202.707031 175.128906 202.824219 175.128906 C 202.941406 175.128906 203.035156 175.035156 203.035156 174.917969 Z M 203.035156 174.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.675781 176.148438 C 203.675781 176.03125 203.582031 175.9375 203.464844 175.9375 C 203.347656 175.9375 203.253906 176.03125 203.253906 176.148438 C 203.253906 176.265625 203.347656 176.359375 203.464844 176.359375 C 203.582031 176.359375 203.675781 176.265625 203.675781 176.148438 Z M 203.675781 176.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.898438 176.457031 C 205.898438 176.339844 205.804688 176.246094 205.6875 176.246094 C 205.570312 176.246094 205.476562 176.339844 205.476562 176.457031 C 205.476562 176.574219 205.570312 176.667969 205.6875 176.667969 C 205.804688 176.667969 205.898438 176.574219 205.898438 176.457031 Z M 205.898438 176.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.515625 175.871094 C 203.515625 175.753906 203.421875 175.660156 203.304688 175.660156 C 203.1875 175.660156 203.09375 175.753906 203.09375 175.871094 C 203.09375 175.988281 203.1875 176.082031 203.304688 176.082031 C 203.421875 176.082031 203.515625 175.988281 203.515625 175.871094 Z M 203.515625 175.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.171875 176.945312 C 201.171875 176.828125 201.078125 176.734375 200.960938 176.734375 C 200.84375 176.734375 200.75 176.828125 200.75 176.945312 C 200.75 177.0625 200.84375 177.15625 200.960938 177.15625 C 201.078125 177.15625 201.171875 177.0625 201.171875 176.945312 Z M 201.171875 176.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.828125 177.550781 C 201.828125 177.433594 201.734375 177.339844 201.617188 177.339844 C 201.5 177.339844 201.40625 177.433594 201.40625 177.550781 C 201.40625 177.667969 201.5 177.761719 201.617188 177.761719 C 201.734375 177.761719 201.828125 177.667969 201.828125 177.550781 Z M 201.828125 177.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.003906 178.65625 C 202.003906 178.539062 201.910156 178.445312 201.792969 178.445312 C 201.675781 178.445312 201.582031 178.539062 201.582031 178.65625 C 201.582031 178.773438 201.675781 178.867188 201.792969 178.867188 C 201.910156 178.867188 202.003906 178.773438 202.003906 178.65625 Z M 202.003906 178.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.414062 182.296875 C 203.414062 182.179688 203.320312 182.085938 203.203125 182.085938 C 203.085938 182.085938 202.992188 182.179688 202.992188 182.296875 C 202.992188 182.414062 203.085938 182.507812 203.203125 182.507812 C 203.320312 182.507812 203.414062 182.414062 203.414062 182.296875 Z M 203.414062 182.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.460938 182.65625 C 200.460938 182.539062 200.367188 182.445312 200.25 182.445312 C 200.132812 182.445312 200.039062 182.539062 200.039062 182.65625 C 200.039062 182.773438 200.132812 182.867188 200.25 182.867188 C 200.367188 182.867188 200.460938 182.773438 200.460938 182.65625 Z M 200.460938 182.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.121094 181.054688 C 200.121094 180.9375 200.027344 180.84375 199.910156 180.84375 C 199.792969 180.84375 199.699219 180.9375 199.699219 181.054688 C 199.699219 181.171875 199.792969 181.265625 199.910156 181.265625 C 200.027344 181.265625 200.121094 181.171875 200.121094 181.054688 Z M 200.121094 181.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.324219 181.460938 C 201.324219 181.34375 201.230469 181.25 201.113281 181.25 C 200.996094 181.25 200.902344 181.34375 200.902344 181.460938 C 200.902344 181.578125 200.996094 181.671875 201.113281 181.671875 C 201.230469 181.671875 201.324219 181.578125 201.324219 181.460938 Z M 201.324219 181.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.5625 180.015625 C 204.5625 179.898438 204.46875 179.804688 204.351562 179.804688 C 204.234375 179.804688 204.140625 179.898438 204.140625 180.015625 C 204.140625 180.132812 204.234375 180.226562 204.351562 180.226562 C 204.46875 180.226562 204.5625 180.132812 204.5625 180.015625 Z M 204.5625 180.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.257812 179.140625 C 205.257812 179.023438 205.164062 178.929688 205.046875 178.929688 C 204.929688 178.929688 204.835938 179.023438 204.835938 179.140625 C 204.835938 179.257812 204.929688 179.351562 205.046875 179.351562 C 205.164062 179.351562 205.257812 179.257812 205.257812 179.140625 Z M 205.257812 179.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.230469 178.511719 C 202.230469 178.394531 202.136719 178.300781 202.019531 178.300781 C 201.902344 178.300781 201.808594 178.394531 201.808594 178.511719 C 201.808594 178.628906 201.902344 178.722656 202.019531 178.722656 C 202.136719 178.722656 202.230469 178.628906 202.230469 178.511719 Z M 202.230469 178.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.039062 176.402344 C 201.039062 176.285156 200.945312 176.191406 200.828125 176.191406 C 200.710938 176.191406 200.617188 176.285156 200.617188 176.402344 C 200.617188 176.519531 200.710938 176.613281 200.828125 176.613281 C 200.945312 176.613281 201.039062 176.519531 201.039062 176.402344 Z M 201.039062 176.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.816406 175.277344 C 201.816406 175.160156 201.722656 175.066406 201.605469 175.066406 C 201.488281 175.066406 201.394531 175.160156 201.394531 175.277344 C 201.394531 175.394531 201.488281 175.488281 201.605469 175.488281 C 201.722656 175.488281 201.816406 175.394531 201.816406 175.277344 Z M 201.816406 175.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.210938 171.121094 C 201.210938 171.003906 201.117188 170.910156 201 170.910156 C 200.882812 170.910156 200.789062 171.003906 200.789062 171.121094 C 200.789062 171.238281 200.882812 171.332031 201 171.332031 C 201.117188 171.332031 201.210938 171.238281 201.210938 171.121094 Z M 201.210938 171.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.703125 173.367188 C 204.703125 173.25 204.609375 173.15625 204.492188 173.15625 C 204.375 173.15625 204.28125 173.25 204.28125 173.367188 C 204.28125 173.484375 204.375 173.578125 204.492188 173.578125 C 204.609375 173.578125 204.703125 173.484375 204.703125 173.367188 Z M 204.703125 173.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.128906 172.800781 C 205.128906 172.683594 205.035156 172.589844 204.917969 172.589844 C 204.800781 172.589844 204.707031 172.683594 204.707031 172.800781 C 204.707031 172.917969 204.800781 173.011719 204.917969 173.011719 C 205.035156 173.011719 205.128906 172.917969 205.128906 172.800781 Z M 205.128906 172.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.027344 175.644531 C 207.027344 175.527344 206.933594 175.433594 206.816406 175.433594 C 206.699219 175.433594 206.605469 175.527344 206.605469 175.644531 C 206.605469 175.761719 206.699219 175.855469 206.816406 175.855469 C 206.933594 175.855469 207.027344 175.761719 207.027344 175.644531 Z M 207.027344 175.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.089844 175.921875 C 207.089844 175.804688 206.996094 175.710938 206.878906 175.710938 C 206.761719 175.710938 206.667969 175.804688 206.667969 175.921875 C 206.667969 176.039062 206.761719 176.132812 206.878906 176.132812 C 206.996094 176.132812 207.089844 176.039062 207.089844 175.921875 Z M 207.089844 175.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.429688 177.585938 C 203.429688 177.46875 203.335938 177.375 203.21875 177.375 C 203.101562 177.375 203.007812 177.46875 203.007812 177.585938 C 203.007812 177.703125 203.101562 177.796875 203.21875 177.796875 C 203.335938 177.796875 203.429688 177.703125 203.429688 177.585938 Z M 203.429688 177.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.078125 177.175781 C 202.078125 177.058594 201.984375 176.964844 201.867188 176.964844 C 201.75 176.964844 201.65625 177.058594 201.65625 177.175781 C 201.65625 177.292969 201.75 177.386719 201.867188 177.386719 C 201.984375 177.386719 202.078125 177.292969 202.078125 177.175781 Z M 202.078125 177.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.222656 178.273438 C 200.222656 178.15625 200.128906 178.0625 200.011719 178.0625 C 199.894531 178.0625 199.800781 178.15625 199.800781 178.273438 C 199.800781 178.390625 199.894531 178.484375 200.011719 178.484375 C 200.128906 178.484375 200.222656 178.390625 200.222656 178.273438 Z M 200.222656 178.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.085938 178.710938 C 196.085938 178.59375 195.992188 178.5 195.875 178.5 C 195.757812 178.5 195.664062 178.59375 195.664062 178.710938 C 195.664062 178.828125 195.757812 178.921875 195.875 178.921875 C 195.992188 178.921875 196.085938 178.828125 196.085938 178.710938 Z M 196.085938 178.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.070312 178.894531 C 197.070312 178.777344 196.976562 178.683594 196.859375 178.683594 C 196.742188 178.683594 196.648438 178.777344 196.648438 178.894531 C 196.648438 179.011719 196.742188 179.105469 196.859375 179.105469 C 196.976562 179.105469 197.070312 179.011719 197.070312 178.894531 Z M 197.070312 178.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.722656 176.496094 C 197.722656 176.378906 197.628906 176.285156 197.511719 176.285156 C 197.394531 176.285156 197.300781 176.378906 197.300781 176.496094 C 197.300781 176.613281 197.394531 176.707031 197.511719 176.707031 C 197.628906 176.707031 197.722656 176.613281 197.722656 176.496094 Z M 197.722656 176.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.574219 175.351562 C 198.574219 175.234375 198.480469 175.140625 198.363281 175.140625 C 198.246094 175.140625 198.152344 175.234375 198.152344 175.351562 C 198.152344 175.46875 198.246094 175.5625 198.363281 175.5625 C 198.480469 175.5625 198.574219 175.46875 198.574219 175.351562 Z M 198.574219 175.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.605469 173.601562 C 199.605469 173.484375 199.511719 173.390625 199.394531 173.390625 C 199.277344 173.390625 199.183594 173.484375 199.183594 173.601562 C 199.183594 173.71875 199.277344 173.8125 199.394531 173.8125 C 199.511719 173.8125 199.605469 173.71875 199.605469 173.601562 Z M 199.605469 173.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.394531 174.113281 C 198.394531 173.996094 198.300781 173.902344 198.183594 173.902344 C 198.066406 173.902344 197.972656 173.996094 197.972656 174.113281 C 197.972656 174.230469 198.066406 174.324219 198.183594 174.324219 C 198.300781 174.324219 198.394531 174.230469 198.394531 174.113281 Z M 198.394531 174.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.421875 169.75 C 194.421875 169.632812 194.328125 169.539062 194.210938 169.539062 C 194.09375 169.539062 194 169.632812 194 169.75 C 194 169.867188 194.09375 169.960938 194.210938 169.960938 C 194.328125 169.960938 194.421875 169.867188 194.421875 169.75 Z M 194.421875 169.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.070312 166.453125 C 195.070312 166.335938 194.976562 166.242188 194.859375 166.242188 C 194.742188 166.242188 194.648438 166.335938 194.648438 166.453125 C 194.648438 166.570312 194.742188 166.664062 194.859375 166.664062 C 194.976562 166.664062 195.070312 166.570312 195.070312 166.453125 Z M 195.070312 166.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.664062 163.664062 C 193.664062 163.546875 193.570312 163.453125 193.453125 163.453125 C 193.335938 163.453125 193.242188 163.546875 193.242188 163.664062 C 193.242188 163.78125 193.335938 163.875 193.453125 163.875 C 193.570312 163.875 193.664062 163.78125 193.664062 163.664062 Z M 193.664062 163.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.214844 160.59375 C 191.214844 160.476562 191.121094 160.382812 191.003906 160.382812 C 190.886719 160.382812 190.792969 160.476562 190.792969 160.59375 C 190.792969 160.710938 190.886719 160.804688 191.003906 160.804688 C 191.121094 160.804688 191.214844 160.710938 191.214844 160.59375 Z M 191.214844 160.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.730469 163.984375 C 190.730469 163.867188 190.636719 163.773438 190.519531 163.773438 C 190.402344 163.773438 190.308594 163.867188 190.308594 163.984375 C 190.308594 164.101562 190.402344 164.195312 190.519531 164.195312 C 190.636719 164.195312 190.730469 164.101562 190.730469 163.984375 Z M 190.730469 163.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.730469 165.890625 C 188.730469 165.773438 188.636719 165.679688 188.519531 165.679688 C 188.402344 165.679688 188.308594 165.773438 188.308594 165.890625 C 188.308594 166.007812 188.402344 166.101562 188.519531 166.101562 C 188.636719 166.101562 188.730469 166.007812 188.730469 165.890625 Z M 188.730469 165.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.96875 170.863281 C 185.96875 170.746094 185.875 170.652344 185.757812 170.652344 C 185.640625 170.652344 185.546875 170.746094 185.546875 170.863281 C 185.546875 170.980469 185.640625 171.074219 185.757812 171.074219 C 185.875 171.074219 185.96875 170.980469 185.96875 170.863281 Z M 185.96875 170.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.917969 172.285156 C 186.917969 172.167969 186.824219 172.074219 186.707031 172.074219 C 186.589844 172.074219 186.496094 172.167969 186.496094 172.285156 C 186.496094 172.402344 186.589844 172.496094 186.707031 172.496094 C 186.824219 172.496094 186.917969 172.402344 186.917969 172.285156 Z M 186.917969 172.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.667969 174.078125 C 189.667969 173.960938 189.574219 173.867188 189.457031 173.867188 C 189.339844 173.867188 189.246094 173.960938 189.246094 174.078125 C 189.246094 174.195312 189.339844 174.289062 189.457031 174.289062 C 189.574219 174.289062 189.667969 174.195312 189.667969 174.078125 Z M 189.667969 174.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.839844 173.742188 C 192.839844 173.625 192.746094 173.53125 192.628906 173.53125 C 192.511719 173.53125 192.417969 173.625 192.417969 173.742188 C 192.417969 173.859375 192.511719 173.953125 192.628906 173.953125 C 192.746094 173.953125 192.839844 173.859375 192.839844 173.742188 Z M 192.839844 173.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.957031 172.730469 C 196.957031 172.613281 196.863281 172.519531 196.746094 172.519531 C 196.628906 172.519531 196.535156 172.613281 196.535156 172.730469 C 196.535156 172.847656 196.628906 172.941406 196.746094 172.941406 C 196.863281 172.941406 196.957031 172.847656 196.957031 172.730469 Z M 196.957031 172.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.988281 171.652344 C 196.988281 171.535156 196.894531 171.441406 196.777344 171.441406 C 196.660156 171.441406 196.566406 171.535156 196.566406 171.652344 C 196.566406 171.769531 196.660156 171.863281 196.777344 171.863281 C 196.894531 171.863281 196.988281 171.769531 196.988281 171.652344 Z M 196.988281 171.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.324219 169.3125 C 199.324219 169.195312 199.230469 169.101562 199.113281 169.101562 C 198.996094 169.101562 198.902344 169.195312 198.902344 169.3125 C 198.902344 169.429688 198.996094 169.523438 199.113281 169.523438 C 199.230469 169.523438 199.324219 169.429688 199.324219 169.3125 Z M 199.324219 169.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.574219 167.902344 C 199.574219 167.785156 199.480469 167.691406 199.363281 167.691406 C 199.246094 167.691406 199.152344 167.785156 199.152344 167.902344 C 199.152344 168.019531 199.246094 168.113281 199.363281 168.113281 C 199.480469 168.113281 199.574219 168.019531 199.574219 167.902344 Z M 199.574219 167.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.175781 166.792969 C 198.175781 166.675781 198.082031 166.582031 197.964844 166.582031 C 197.847656 166.582031 197.753906 166.675781 197.753906 166.792969 C 197.753906 166.910156 197.847656 167.003906 197.964844 167.003906 C 198.082031 167.003906 198.175781 166.910156 198.175781 166.792969 Z M 198.175781 166.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.84375 166.894531 C 199.84375 166.777344 199.75 166.683594 199.632812 166.683594 C 199.515625 166.683594 199.421875 166.777344 199.421875 166.894531 C 199.421875 167.011719 199.515625 167.105469 199.632812 167.105469 C 199.75 167.105469 199.84375 167.011719 199.84375 166.894531 Z M 199.84375 166.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.386719 169.476562 C 203.386719 169.359375 203.292969 169.265625 203.175781 169.265625 C 203.058594 169.265625 202.964844 169.359375 202.964844 169.476562 C 202.964844 169.59375 203.058594 169.6875 203.175781 169.6875 C 203.292969 169.6875 203.386719 169.59375 203.386719 169.476562 Z M 203.386719 169.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.707031 171.097656 C 198.707031 170.980469 198.613281 170.886719 198.496094 170.886719 C 198.378906 170.886719 198.285156 170.980469 198.285156 171.097656 C 198.285156 171.214844 198.378906 171.308594 198.496094 171.308594 C 198.613281 171.308594 198.707031 171.214844 198.707031 171.097656 Z M 198.707031 171.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.382812 170.441406 C 197.382812 170.324219 197.289062 170.230469 197.171875 170.230469 C 197.054688 170.230469 196.960938 170.324219 196.960938 170.441406 C 196.960938 170.558594 197.054688 170.652344 197.171875 170.652344 C 197.289062 170.652344 197.382812 170.558594 197.382812 170.441406 Z M 197.382812 170.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.371094 167.628906 C 197.371094 167.511719 197.277344 167.417969 197.160156 167.417969 C 197.042969 167.417969 196.949219 167.511719 196.949219 167.628906 C 196.949219 167.746094 197.042969 167.839844 197.160156 167.839844 C 197.277344 167.839844 197.371094 167.746094 197.371094 167.628906 Z M 197.371094 167.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.527344 163.847656 C 198.527344 163.730469 198.433594 163.636719 198.316406 163.636719 C 198.199219 163.636719 198.105469 163.730469 198.105469 163.847656 C 198.105469 163.964844 198.199219 164.058594 198.316406 164.058594 C 198.433594 164.058594 198.527344 163.964844 198.527344 163.847656 Z M 198.527344 163.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.085938 162.441406 C 201.085938 162.324219 200.992188 162.230469 200.875 162.230469 C 200.757812 162.230469 200.664062 162.324219 200.664062 162.441406 C 200.664062 162.558594 200.757812 162.652344 200.875 162.652344 C 200.992188 162.652344 201.085938 162.558594 201.085938 162.441406 Z M 201.085938 162.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.382812 162.136719 C 202.382812 162.019531 202.289062 161.925781 202.171875 161.925781 C 202.054688 161.925781 201.960938 162.019531 201.960938 162.136719 C 201.960938 162.253906 202.054688 162.347656 202.171875 162.347656 C 202.289062 162.347656 202.382812 162.253906 202.382812 162.136719 Z M 202.382812 162.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.601562 161.921875 C 202.601562 161.804688 202.507812 161.710938 202.390625 161.710938 C 202.273438 161.710938 202.179688 161.804688 202.179688 161.921875 C 202.179688 162.039062 202.273438 162.132812 202.390625 162.132812 C 202.507812 162.132812 202.601562 162.039062 202.601562 161.921875 Z M 202.601562 161.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.617188 159.644531 C 199.617188 159.527344 199.523438 159.433594 199.40625 159.433594 C 199.289062 159.433594 199.195312 159.527344 199.195312 159.644531 C 199.195312 159.761719 199.289062 159.855469 199.40625 159.855469 C 199.523438 159.855469 199.617188 159.761719 199.617188 159.644531 Z M 199.617188 159.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.445312 159.59375 C 195.445312 159.476562 195.351562 159.382812 195.234375 159.382812 C 195.117188 159.382812 195.023438 159.476562 195.023438 159.59375 C 195.023438 159.710938 195.117188 159.804688 195.234375 159.804688 C 195.351562 159.804688 195.445312 159.710938 195.445312 159.59375 Z M 195.445312 159.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.773438 160.652344 C 200.773438 160.535156 200.679688 160.441406 200.5625 160.441406 C 200.445312 160.441406 200.351562 160.535156 200.351562 160.652344 C 200.351562 160.769531 200.445312 160.863281 200.5625 160.863281 C 200.679688 160.863281 200.773438 160.769531 200.773438 160.652344 Z M 200.773438 160.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.078125 161.492188 C 199.078125 161.375 198.984375 161.28125 198.867188 161.28125 C 198.75 161.28125 198.65625 161.375 198.65625 161.492188 C 198.65625 161.609375 198.75 161.703125 198.867188 161.703125 C 198.984375 161.703125 199.078125 161.609375 199.078125 161.492188 Z M 199.078125 161.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.417969 159.335938 C 202.417969 159.21875 202.324219 159.125 202.207031 159.125 C 202.089844 159.125 201.996094 159.21875 201.996094 159.335938 C 201.996094 159.453125 202.089844 159.546875 202.207031 159.546875 C 202.324219 159.546875 202.417969 159.453125 202.417969 159.335938 Z M 202.417969 159.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.3125 158.996094 C 204.3125 158.878906 204.21875 158.785156 204.101562 158.785156 C 203.984375 158.785156 203.890625 158.878906 203.890625 158.996094 C 203.890625 159.113281 203.984375 159.207031 204.101562 159.207031 C 204.21875 159.207031 204.3125 159.113281 204.3125 158.996094 Z M 204.3125 158.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.210938 165.160156 C 206.210938 165.042969 206.117188 164.949219 206 164.949219 C 205.882812 164.949219 205.789062 165.042969 205.789062 165.160156 C 205.789062 165.277344 205.882812 165.371094 206 165.371094 C 206.117188 165.371094 206.210938 165.277344 206.210938 165.160156 Z M 206.210938 165.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.316406 170.195312 C 208.316406 170.078125 208.222656 169.984375 208.105469 169.984375 C 207.988281 169.984375 207.894531 170.078125 207.894531 170.195312 C 207.894531 170.3125 207.988281 170.40625 208.105469 170.40625 C 208.222656 170.40625 208.316406 170.3125 208.316406 170.195312 Z M 208.316406 170.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.691406 169.074219 C 204.691406 168.957031 204.597656 168.863281 204.480469 168.863281 C 204.363281 168.863281 204.269531 168.957031 204.269531 169.074219 C 204.269531 169.191406 204.363281 169.285156 204.480469 169.285156 C 204.597656 169.285156 204.691406 169.191406 204.691406 169.074219 Z M 204.691406 169.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.605469 169.78125 C 204.605469 169.664062 204.511719 169.570312 204.394531 169.570312 C 204.277344 169.570312 204.183594 169.664062 204.183594 169.78125 C 204.183594 169.898438 204.277344 169.992188 204.394531 169.992188 C 204.511719 169.992188 204.605469 169.898438 204.605469 169.78125 Z M 204.605469 169.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.851562 172.613281 C 204.851562 172.496094 204.757812 172.402344 204.640625 172.402344 C 204.523438 172.402344 204.429688 172.496094 204.429688 172.613281 C 204.429688 172.730469 204.523438 172.824219 204.640625 172.824219 C 204.757812 172.824219 204.851562 172.730469 204.851562 172.613281 Z M 204.851562 172.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.148438 171.21875 C 205.148438 171.101562 205.054688 171.007812 204.9375 171.007812 C 204.820312 171.007812 204.726562 171.101562 204.726562 171.21875 C 204.726562 171.335938 204.820312 171.429688 204.9375 171.429688 C 205.054688 171.429688 205.148438 171.335938 205.148438 171.21875 Z M 205.148438 171.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.039062 173.605469 C 203.039062 173.488281 202.945312 173.394531 202.828125 173.394531 C 202.710938 173.394531 202.617188 173.488281 202.617188 173.605469 C 202.617188 173.722656 202.710938 173.816406 202.828125 173.816406 C 202.945312 173.816406 203.039062 173.722656 203.039062 173.605469 Z M 203.039062 173.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.859375 175.066406 C 203.859375 174.949219 203.765625 174.855469 203.648438 174.855469 C 203.53125 174.855469 203.4375 174.949219 203.4375 175.066406 C 203.4375 175.183594 203.53125 175.277344 203.648438 175.277344 C 203.765625 175.277344 203.859375 175.183594 203.859375 175.066406 Z M 203.859375 175.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.683594 178.832031 C 203.683594 178.714844 203.589844 178.621094 203.472656 178.621094 C 203.355469 178.621094 203.261719 178.714844 203.261719 178.832031 C 203.261719 178.949219 203.355469 179.042969 203.472656 179.042969 C 203.589844 179.042969 203.683594 178.949219 203.683594 178.832031 Z M 203.683594 178.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.703125 181.53125 C 202.703125 181.414062 202.609375 181.320312 202.492188 181.320312 C 202.375 181.320312 202.28125 181.414062 202.28125 181.53125 C 202.28125 181.648438 202.375 181.742188 202.492188 181.742188 C 202.609375 181.742188 202.703125 181.648438 202.703125 181.53125 Z M 202.703125 181.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.433594 178.832031 C 203.433594 178.714844 203.339844 178.621094 203.222656 178.621094 C 203.105469 178.621094 203.011719 178.714844 203.011719 178.832031 C 203.011719 178.949219 203.105469 179.042969 203.222656 179.042969 C 203.339844 179.042969 203.433594 178.949219 203.433594 178.832031 Z M 203.433594 178.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.761719 180.820312 C 205.761719 180.703125 205.667969 180.609375 205.550781 180.609375 C 205.433594 180.609375 205.339844 180.703125 205.339844 180.820312 C 205.339844 180.9375 205.433594 181.03125 205.550781 181.03125 C 205.667969 181.03125 205.761719 180.9375 205.761719 180.820312 Z M 205.761719 180.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.898438 179.113281 C 205.898438 178.996094 205.804688 178.902344 205.6875 178.902344 C 205.570312 178.902344 205.476562 178.996094 205.476562 179.113281 C 205.476562 179.230469 205.570312 179.324219 205.6875 179.324219 C 205.804688 179.324219 205.898438 179.230469 205.898438 179.113281 Z M 205.898438 179.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.015625 178.234375 C 204.015625 178.117188 203.921875 178.023438 203.804688 178.023438 C 203.6875 178.023438 203.59375 178.117188 203.59375 178.234375 C 203.59375 178.351562 203.6875 178.445312 203.804688 178.445312 C 203.921875 178.445312 204.015625 178.351562 204.015625 178.234375 Z M 204.015625 178.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.28125 180.75 C 201.28125 180.632812 201.1875 180.539062 201.070312 180.539062 C 200.953125 180.539062 200.859375 180.632812 200.859375 180.75 C 200.859375 180.867188 200.953125 180.960938 201.070312 180.960938 C 201.1875 180.960938 201.28125 180.867188 201.28125 180.75 Z M 201.28125 180.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.386719 179.695312 C 201.386719 179.578125 201.292969 179.484375 201.175781 179.484375 C 201.058594 179.484375 200.964844 179.578125 200.964844 179.695312 C 200.964844 179.8125 201.058594 179.90625 201.175781 179.90625 C 201.292969 179.90625 201.386719 179.8125 201.386719 179.695312 Z M 201.386719 179.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.21875 182.601562 C 201.21875 182.484375 201.125 182.390625 201.007812 182.390625 C 200.890625 182.390625 200.796875 182.484375 200.796875 182.601562 C 200.796875 182.71875 200.890625 182.8125 201.007812 182.8125 C 201.125 182.8125 201.21875 182.71875 201.21875 182.601562 Z M 201.21875 182.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.9375 186.855469 C 202.9375 186.738281 202.84375 186.644531 202.726562 186.644531 C 202.609375 186.644531 202.515625 186.738281 202.515625 186.855469 C 202.515625 186.972656 202.609375 187.066406 202.726562 187.066406 C 202.84375 187.066406 202.9375 186.972656 202.9375 186.855469 Z M 202.9375 186.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.585938 184.039062 C 200.585938 183.921875 200.492188 183.828125 200.375 183.828125 C 200.257812 183.828125 200.164062 183.921875 200.164062 184.039062 C 200.164062 184.15625 200.257812 184.25 200.375 184.25 C 200.492188 184.25 200.585938 184.15625 200.585938 184.039062 Z M 200.585938 184.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.394531 182.605469 C 204.394531 182.488281 204.300781 182.394531 204.183594 182.394531 C 204.066406 182.394531 203.972656 182.488281 203.972656 182.605469 C 203.972656 182.722656 204.066406 182.816406 204.183594 182.816406 C 204.300781 182.816406 204.394531 182.722656 204.394531 182.605469 Z M 204.394531 182.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.257812 185.140625 C 204.257812 185.023438 204.164062 184.929688 204.046875 184.929688 C 203.929688 184.929688 203.835938 185.023438 203.835938 185.140625 C 203.835938 185.257812 203.929688 185.351562 204.046875 185.351562 C 204.164062 185.351562 204.257812 185.257812 204.257812 185.140625 Z M 204.257812 185.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.011719 186.054688 C 205.011719 185.9375 204.917969 185.84375 204.800781 185.84375 C 204.683594 185.84375 204.589844 185.9375 204.589844 186.054688 C 204.589844 186.171875 204.683594 186.265625 204.800781 186.265625 C 204.917969 186.265625 205.011719 186.171875 205.011719 186.054688 Z M 205.011719 186.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.160156 186.484375 C 201.160156 186.367188 201.066406 186.273438 200.949219 186.273438 C 200.832031 186.273438 200.738281 186.367188 200.738281 186.484375 C 200.738281 186.601562 200.832031 186.695312 200.949219 186.695312 C 201.066406 186.695312 201.160156 186.601562 201.160156 186.484375 Z M 201.160156 186.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.003906 188.894531 C 197.003906 188.777344 196.910156 188.683594 196.792969 188.683594 C 196.675781 188.683594 196.582031 188.777344 196.582031 188.894531 C 196.582031 189.011719 196.675781 189.105469 196.792969 189.105469 C 196.910156 189.105469 197.003906 189.011719 197.003906 188.894531 Z M 197.003906 188.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.996094 191.378906 C 199.996094 191.261719 199.902344 191.167969 199.785156 191.167969 C 199.667969 191.167969 199.574219 191.261719 199.574219 191.378906 C 199.574219 191.496094 199.667969 191.589844 199.785156 191.589844 C 199.902344 191.589844 199.996094 191.496094 199.996094 191.378906 Z M 199.996094 191.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.433594 193.078125 C 196.433594 192.960938 196.339844 192.867188 196.222656 192.867188 C 196.105469 192.867188 196.011719 192.960938 196.011719 193.078125 C 196.011719 193.195312 196.105469 193.289062 196.222656 193.289062 C 196.339844 193.289062 196.433594 193.195312 196.433594 193.078125 Z M 196.433594 193.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.128906 196.539062 C 197.128906 196.421875 197.035156 196.328125 196.917969 196.328125 C 196.800781 196.328125 196.707031 196.421875 196.707031 196.539062 C 196.707031 196.65625 196.800781 196.75 196.917969 196.75 C 197.035156 196.75 197.128906 196.65625 197.128906 196.539062 Z M 197.128906 196.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.195312 198.335938 C 200.195312 198.21875 200.101562 198.125 199.984375 198.125 C 199.867188 198.125 199.773438 198.21875 199.773438 198.335938 C 199.773438 198.453125 199.867188 198.546875 199.984375 198.546875 C 200.101562 198.546875 200.195312 198.453125 200.195312 198.335938 Z M 200.195312 198.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.308594 200.714844 C 201.308594 200.597656 201.214844 200.503906 201.097656 200.503906 C 200.980469 200.503906 200.886719 200.597656 200.886719 200.714844 C 200.886719 200.832031 200.980469 200.925781 201.097656 200.925781 C 201.214844 200.925781 201.308594 200.832031 201.308594 200.714844 Z M 201.308594 200.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.113281 203.808594 C 202.113281 203.691406 202.019531 203.597656 201.902344 203.597656 C 201.785156 203.597656 201.691406 203.691406 201.691406 203.808594 C 201.691406 203.925781 201.785156 204.019531 201.902344 204.019531 C 202.019531 204.019531 202.113281 203.925781 202.113281 203.808594 Z M 202.113281 203.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.359375 205.679688 C 203.359375 205.5625 203.265625 205.46875 203.148438 205.46875 C 203.03125 205.46875 202.9375 205.5625 202.9375 205.679688 C 202.9375 205.796875 203.03125 205.890625 203.148438 205.890625 C 203.265625 205.890625 203.359375 205.796875 203.359375 205.679688 Z M 203.359375 205.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.191406 201.296875 C 204.191406 201.179688 204.097656 201.085938 203.980469 201.085938 C 203.863281 201.085938 203.769531 201.179688 203.769531 201.296875 C 203.769531 201.414062 203.863281 201.507812 203.980469 201.507812 C 204.097656 201.507812 204.191406 201.414062 204.191406 201.296875 Z M 204.191406 201.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.253906 198.890625 C 207.253906 198.773438 207.160156 198.679688 207.042969 198.679688 C 206.925781 198.679688 206.832031 198.773438 206.832031 198.890625 C 206.832031 199.007812 206.925781 199.101562 207.042969 199.101562 C 207.160156 199.101562 207.253906 199.007812 207.253906 198.890625 Z M 207.253906 198.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.441406 200.125 C 208.441406 200.007812 208.347656 199.914062 208.230469 199.914062 C 208.113281 199.914062 208.019531 200.007812 208.019531 200.125 C 208.019531 200.242188 208.113281 200.335938 208.230469 200.335938 C 208.347656 200.335938 208.441406 200.242188 208.441406 200.125 Z M 208.441406 200.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.988281 197.734375 C 210.988281 197.617188 210.894531 197.523438 210.777344 197.523438 C 210.660156 197.523438 210.566406 197.617188 210.566406 197.734375 C 210.566406 197.851562 210.660156 197.945312 210.777344 197.945312 C 210.894531 197.945312 210.988281 197.851562 210.988281 197.734375 Z M 210.988281 197.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.5 201.664062 C 210.5 201.546875 210.40625 201.453125 210.289062 201.453125 C 210.171875 201.453125 210.078125 201.546875 210.078125 201.664062 C 210.078125 201.78125 210.171875 201.875 210.289062 201.875 C 210.40625 201.875 210.5 201.78125 210.5 201.664062 Z M 210.5 201.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.960938 199.699219 C 213.960938 199.582031 213.867188 199.488281 213.75 199.488281 C 213.632812 199.488281 213.539062 199.582031 213.539062 199.699219 C 213.539062 199.816406 213.632812 199.910156 213.75 199.910156 C 213.867188 199.910156 213.960938 199.816406 213.960938 199.699219 Z M 213.960938 199.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.929688 201.9375 C 213.929688 201.820312 213.835938 201.726562 213.71875 201.726562 C 213.601562 201.726562 213.507812 201.820312 213.507812 201.9375 C 213.507812 202.054688 213.601562 202.148438 213.71875 202.148438 C 213.835938 202.148438 213.929688 202.054688 213.929688 201.9375 Z M 213.929688 201.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.09375 204.304688 C 215.09375 204.1875 215 204.09375 214.882812 204.09375 C 214.765625 204.09375 214.671875 204.1875 214.671875 204.304688 C 214.671875 204.421875 214.765625 204.515625 214.882812 204.515625 C 215 204.515625 215.09375 204.421875 215.09375 204.304688 Z M 215.09375 204.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.28125 205.609375 C 213.28125 205.492188 213.1875 205.398438 213.070312 205.398438 C 212.953125 205.398438 212.859375 205.492188 212.859375 205.609375 C 212.859375 205.726562 212.953125 205.820312 213.070312 205.820312 C 213.1875 205.820312 213.28125 205.726562 213.28125 205.609375 Z M 213.28125 205.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.421875 205.023438 C 212.421875 204.90625 212.328125 204.8125 212.210938 204.8125 C 212.09375 204.8125 212 204.90625 212 205.023438 C 212 205.140625 212.09375 205.234375 212.210938 205.234375 C 212.328125 205.234375 212.421875 205.140625 212.421875 205.023438 Z M 212.421875 205.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.703125 204.265625 C 213.703125 204.148438 213.609375 204.054688 213.492188 204.054688 C 213.375 204.054688 213.28125 204.148438 213.28125 204.265625 C 213.28125 204.382812 213.375 204.476562 213.492188 204.476562 C 213.609375 204.476562 213.703125 204.382812 213.703125 204.265625 Z M 213.703125 204.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.085938 203.824219 C 212.085938 203.707031 211.992188 203.613281 211.875 203.613281 C 211.757812 203.613281 211.664062 203.707031 211.664062 203.824219 C 211.664062 203.941406 211.757812 204.035156 211.875 204.035156 C 211.992188 204.035156 212.085938 203.941406 212.085938 203.824219 Z M 212.085938 203.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.574219 207.878906 C 213.574219 207.761719 213.480469 207.667969 213.363281 207.667969 C 213.246094 207.667969 213.152344 207.761719 213.152344 207.878906 C 213.152344 207.996094 213.246094 208.089844 213.363281 208.089844 C 213.480469 208.089844 213.574219 207.996094 213.574219 207.878906 Z M 213.574219 207.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.699219 208.136719 C 214.699219 208.019531 214.605469 207.925781 214.488281 207.925781 C 214.371094 207.925781 214.277344 208.019531 214.277344 208.136719 C 214.277344 208.253906 214.371094 208.347656 214.488281 208.347656 C 214.605469 208.347656 214.699219 208.253906 214.699219 208.136719 Z M 214.699219 208.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.667969 210.351562 C 214.667969 210.234375 214.574219 210.140625 214.457031 210.140625 C 214.339844 210.140625 214.246094 210.234375 214.246094 210.351562 C 214.246094 210.46875 214.339844 210.5625 214.457031 210.5625 C 214.574219 210.5625 214.667969 210.46875 214.667969 210.351562 Z M 214.667969 210.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.625 211.832031 C 211.625 211.714844 211.53125 211.621094 211.414062 211.621094 C 211.296875 211.621094 211.203125 211.714844 211.203125 211.832031 C 211.203125 211.949219 211.296875 212.042969 211.414062 212.042969 C 211.53125 212.042969 211.625 211.949219 211.625 211.832031 Z M 211.625 211.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.472656 213.140625 C 211.472656 213.023438 211.378906 212.929688 211.261719 212.929688 C 211.144531 212.929688 211.050781 213.023438 211.050781 213.140625 C 211.050781 213.257812 211.144531 213.351562 211.261719 213.351562 C 211.378906 213.351562 211.472656 213.257812 211.472656 213.140625 Z M 211.472656 213.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.386719 216.25 C 212.386719 216.132812 212.292969 216.039062 212.175781 216.039062 C 212.058594 216.039062 211.964844 216.132812 211.964844 216.25 C 211.964844 216.367188 212.058594 216.460938 212.175781 216.460938 C 212.292969 216.460938 212.386719 216.367188 212.386719 216.25 Z M 212.386719 216.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.992188 218.265625 C 211.992188 218.148438 211.898438 218.054688 211.78125 218.054688 C 211.664062 218.054688 211.570312 218.148438 211.570312 218.265625 C 211.570312 218.382812 211.664062 218.476562 211.78125 218.476562 C 211.898438 218.476562 211.992188 218.382812 211.992188 218.265625 Z M 211.992188 218.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.832031 216.730469 C 205.832031 216.613281 205.738281 216.519531 205.621094 216.519531 C 205.503906 216.519531 205.410156 216.613281 205.410156 216.730469 C 205.410156 216.847656 205.503906 216.941406 205.621094 216.941406 C 205.738281 216.941406 205.832031 216.847656 205.832031 216.730469 Z M 205.832031 216.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.210938 217.460938 C 206.210938 217.34375 206.117188 217.25 206 217.25 C 205.882812 217.25 205.789062 217.34375 205.789062 217.460938 C 205.789062 217.578125 205.882812 217.671875 206 217.671875 C 206.117188 217.671875 206.210938 217.578125 206.210938 217.460938 Z M 206.210938 217.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.902344 215.226562 C 208.902344 215.109375 208.808594 215.015625 208.691406 215.015625 C 208.574219 215.015625 208.480469 215.109375 208.480469 215.226562 C 208.480469 215.34375 208.574219 215.4375 208.691406 215.4375 C 208.808594 215.4375 208.902344 215.34375 208.902344 215.226562 Z M 208.902344 215.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.710938 211.703125 C 207.710938 211.585938 207.617188 211.492188 207.5 211.492188 C 207.382812 211.492188 207.289062 211.585938 207.289062 211.703125 C 207.289062 211.820312 207.382812 211.914062 207.5 211.914062 C 207.617188 211.914062 207.710938 211.820312 207.710938 211.703125 Z M 207.710938 211.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.742188 212.261719 C 207.742188 212.144531 207.648438 212.050781 207.53125 212.050781 C 207.414062 212.050781 207.320312 212.144531 207.320312 212.261719 C 207.320312 212.378906 207.414062 212.472656 207.53125 212.472656 C 207.648438 212.472656 207.742188 212.378906 207.742188 212.261719 Z M 207.742188 212.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.871094 213.261719 C 210.871094 213.144531 210.777344 213.050781 210.660156 213.050781 C 210.542969 213.050781 210.449219 213.144531 210.449219 213.261719 C 210.449219 213.378906 210.542969 213.472656 210.660156 213.472656 C 210.777344 213.472656 210.871094 213.378906 210.871094 213.261719 Z M 210.871094 213.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.753906 214.855469 C 211.753906 214.738281 211.660156 214.644531 211.542969 214.644531 C 211.425781 214.644531 211.332031 214.738281 211.332031 214.855469 C 211.332031 214.972656 211.425781 215.066406 211.542969 215.066406 C 211.660156 215.066406 211.753906 214.972656 211.753906 214.855469 Z M 211.753906 214.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.976562 214.019531 C 209.976562 213.902344 209.882812 213.808594 209.765625 213.808594 C 209.648438 213.808594 209.554688 213.902344 209.554688 214.019531 C 209.554688 214.136719 209.648438 214.230469 209.765625 214.230469 C 209.882812 214.230469 209.976562 214.136719 209.976562 214.019531 Z M 209.976562 214.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.824219 214.277344 C 208.824219 214.160156 208.730469 214.066406 208.613281 214.066406 C 208.496094 214.066406 208.402344 214.160156 208.402344 214.277344 C 208.402344 214.394531 208.496094 214.488281 208.613281 214.488281 C 208.730469 214.488281 208.824219 214.394531 208.824219 214.277344 Z M 208.824219 214.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.46875 216.695312 C 208.46875 216.578125 208.375 216.484375 208.257812 216.484375 C 208.140625 216.484375 208.046875 216.578125 208.046875 216.695312 C 208.046875 216.8125 208.140625 216.90625 208.257812 216.90625 C 208.375 216.90625 208.46875 216.8125 208.46875 216.695312 Z M 208.46875 216.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.335938 219.875 C 211.335938 219.757812 211.242188 219.664062 211.125 219.664062 C 211.007812 219.664062 210.914062 219.757812 210.914062 219.875 C 210.914062 219.992188 211.007812 220.085938 211.125 220.085938 C 211.242188 220.085938 211.335938 219.992188 211.335938 219.875 Z M 211.335938 219.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.207031 216.121094 C 216.207031 216.003906 216.113281 215.910156 215.996094 215.910156 C 215.878906 215.910156 215.785156 216.003906 215.785156 216.121094 C 215.785156 216.238281 215.878906 216.332031 215.996094 216.332031 C 216.113281 216.332031 216.207031 216.238281 216.207031 216.121094 Z M 216.207031 216.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.480469 209.789062 C 217.480469 209.671875 217.386719 209.578125 217.269531 209.578125 C 217.152344 209.578125 217.058594 209.671875 217.058594 209.789062 C 217.058594 209.90625 217.152344 210 217.269531 210 C 217.386719 210 217.480469 209.90625 217.480469 209.789062 Z M 217.480469 209.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.195312 208.039062 C 219.195312 207.921875 219.101562 207.828125 218.984375 207.828125 C 218.867188 207.828125 218.773438 207.921875 218.773438 208.039062 C 218.773438 208.15625 218.867188 208.25 218.984375 208.25 C 219.101562 208.25 219.195312 208.15625 219.195312 208.039062 Z M 219.195312 208.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.074219 211.304688 C 217.074219 211.1875 216.980469 211.09375 216.863281 211.09375 C 216.746094 211.09375 216.652344 211.1875 216.652344 211.304688 C 216.652344 211.421875 216.746094 211.515625 216.863281 211.515625 C 216.980469 211.515625 217.074219 211.421875 217.074219 211.304688 Z M 217.074219 211.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.890625 211.488281 C 215.890625 211.371094 215.796875 211.277344 215.679688 211.277344 C 215.5625 211.277344 215.46875 211.371094 215.46875 211.488281 C 215.46875 211.605469 215.5625 211.699219 215.679688 211.699219 C 215.796875 211.699219 215.890625 211.605469 215.890625 211.488281 Z M 215.890625 211.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.609375 212.515625 C 215.609375 212.398438 215.515625 212.304688 215.398438 212.304688 C 215.28125 212.304688 215.1875 212.398438 215.1875 212.515625 C 215.1875 212.632812 215.28125 212.726562 215.398438 212.726562 C 215.515625 212.726562 215.609375 212.632812 215.609375 212.515625 Z M 215.609375 212.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.925781 212.589844 C 214.925781 212.472656 214.832031 212.378906 214.714844 212.378906 C 214.597656 212.378906 214.503906 212.472656 214.503906 212.589844 C 214.503906 212.707031 214.597656 212.800781 214.714844 212.800781 C 214.832031 212.800781 214.925781 212.707031 214.925781 212.589844 Z M 214.925781 212.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.484375 212.667969 C 217.484375 212.550781 217.390625 212.457031 217.273438 212.457031 C 217.15625 212.457031 217.0625 212.550781 217.0625 212.667969 C 217.0625 212.785156 217.15625 212.878906 217.273438 212.878906 C 217.390625 212.878906 217.484375 212.785156 217.484375 212.667969 Z M 217.484375 212.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.222656 213.738281 C 218.222656 213.621094 218.128906 213.527344 218.011719 213.527344 C 217.894531 213.527344 217.800781 213.621094 217.800781 213.738281 C 217.800781 213.855469 217.894531 213.949219 218.011719 213.949219 C 218.128906 213.949219 218.222656 213.855469 218.222656 213.738281 Z M 218.222656 213.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.277344 214.460938 C 218.277344 214.34375 218.183594 214.25 218.066406 214.25 C 217.949219 214.25 217.855469 214.34375 217.855469 214.460938 C 217.855469 214.578125 217.949219 214.671875 218.066406 214.671875 C 218.183594 214.671875 218.277344 214.578125 218.277344 214.460938 Z M 218.277344 214.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.902344 214.585938 C 221.902344 214.46875 221.808594 214.375 221.691406 214.375 C 221.574219 214.375 221.480469 214.46875 221.480469 214.585938 C 221.480469 214.703125 221.574219 214.796875 221.691406 214.796875 C 221.808594 214.796875 221.902344 214.703125 221.902344 214.585938 Z M 221.902344 214.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.425781 213.144531 C 225.425781 213.027344 225.332031 212.933594 225.214844 212.933594 C 225.097656 212.933594 225.003906 213.027344 225.003906 213.144531 C 225.003906 213.261719 225.097656 213.355469 225.214844 213.355469 C 225.332031 213.355469 225.425781 213.261719 225.425781 213.144531 Z M 225.425781 213.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.78125 213.832031 C 223.78125 213.714844 223.6875 213.621094 223.570312 213.621094 C 223.453125 213.621094 223.359375 213.714844 223.359375 213.832031 C 223.359375 213.949219 223.453125 214.042969 223.570312 214.042969 C 223.6875 214.042969 223.78125 213.949219 223.78125 213.832031 Z M 223.78125 213.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.742188 210.941406 C 227.742188 210.824219 227.648438 210.730469 227.53125 210.730469 C 227.414062 210.730469 227.320312 210.824219 227.320312 210.941406 C 227.320312 211.058594 227.414062 211.152344 227.53125 211.152344 C 227.648438 211.152344 227.742188 211.058594 227.742188 210.941406 Z M 227.742188 210.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.914062 214.945312 C 225.914062 214.828125 225.820312 214.734375 225.703125 214.734375 C 225.585938 214.734375 225.492188 214.828125 225.492188 214.945312 C 225.492188 215.0625 225.585938 215.15625 225.703125 215.15625 C 225.820312 215.15625 225.914062 215.0625 225.914062 214.945312 Z M 225.914062 214.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.316406 215.371094 C 221.316406 215.253906 221.222656 215.160156 221.105469 215.160156 C 220.988281 215.160156 220.894531 215.253906 220.894531 215.371094 C 220.894531 215.488281 220.988281 215.582031 221.105469 215.582031 C 221.222656 215.582031 221.316406 215.488281 221.316406 215.371094 Z M 221.316406 215.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.3125 214.699219 C 221.3125 214.582031 221.21875 214.488281 221.101562 214.488281 C 220.984375 214.488281 220.890625 214.582031 220.890625 214.699219 C 220.890625 214.816406 220.984375 214.910156 221.101562 214.910156 C 221.21875 214.910156 221.3125 214.816406 221.3125 214.699219 Z M 221.3125 214.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.585938 215.339844 C 224.585938 215.222656 224.492188 215.128906 224.375 215.128906 C 224.257812 215.128906 224.164062 215.222656 224.164062 215.339844 C 224.164062 215.457031 224.257812 215.550781 224.375 215.550781 C 224.492188 215.550781 224.585938 215.457031 224.585938 215.339844 Z M 224.585938 215.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.777344 214.660156 C 224.777344 214.542969 224.683594 214.449219 224.566406 214.449219 C 224.449219 214.449219 224.355469 214.542969 224.355469 214.660156 C 224.355469 214.777344 224.449219 214.871094 224.566406 214.871094 C 224.683594 214.871094 224.777344 214.777344 224.777344 214.660156 Z M 224.777344 214.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.285156 215.585938 C 224.285156 215.46875 224.191406 215.375 224.074219 215.375 C 223.957031 215.375 223.863281 215.46875 223.863281 215.585938 C 223.863281 215.703125 223.957031 215.796875 224.074219 215.796875 C 224.191406 215.796875 224.285156 215.703125 224.285156 215.585938 Z M 224.285156 215.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.621094 213.199219 C 225.621094 213.082031 225.527344 212.988281 225.410156 212.988281 C 225.292969 212.988281 225.199219 213.082031 225.199219 213.199219 C 225.199219 213.316406 225.292969 213.410156 225.410156 213.410156 C 225.527344 213.410156 225.621094 213.316406 225.621094 213.199219 Z M 225.621094 213.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.84375 212.316406 C 224.84375 212.199219 224.75 212.105469 224.632812 212.105469 C 224.515625 212.105469 224.421875 212.199219 224.421875 212.316406 C 224.421875 212.433594 224.515625 212.527344 224.632812 212.527344 C 224.75 212.527344 224.84375 212.433594 224.84375 212.316406 Z M 224.84375 212.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.15625 213.96875 C 224.15625 213.851562 224.0625 213.757812 223.945312 213.757812 C 223.828125 213.757812 223.734375 213.851562 223.734375 213.96875 C 223.734375 214.085938 223.828125 214.179688 223.945312 214.179688 C 224.0625 214.179688 224.15625 214.085938 224.15625 213.96875 Z M 224.15625 213.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.3125 219.304688 C 224.3125 219.1875 224.21875 219.09375 224.101562 219.09375 C 223.984375 219.09375 223.890625 219.1875 223.890625 219.304688 C 223.890625 219.421875 223.984375 219.515625 224.101562 219.515625 C 224.21875 219.515625 224.3125 219.421875 224.3125 219.304688 Z M 224.3125 219.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.324219 219.566406 C 225.324219 219.449219 225.230469 219.355469 225.113281 219.355469 C 224.996094 219.355469 224.902344 219.449219 224.902344 219.566406 C 224.902344 219.683594 224.996094 219.777344 225.113281 219.777344 C 225.230469 219.777344 225.324219 219.683594 225.324219 219.566406 Z M 225.324219 219.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.332031 218.085938 C 229.332031 217.96875 229.238281 217.875 229.121094 217.875 C 229.003906 217.875 228.910156 217.96875 228.910156 218.085938 C 228.910156 218.203125 229.003906 218.296875 229.121094 218.296875 C 229.238281 218.296875 229.332031 218.203125 229.332031 218.085938 Z M 229.332031 218.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.09375 219.007812 C 232.09375 218.890625 232 218.796875 231.882812 218.796875 C 231.765625 218.796875 231.671875 218.890625 231.671875 219.007812 C 231.671875 219.125 231.765625 219.21875 231.882812 219.21875 C 232 219.21875 232.09375 219.125 232.09375 219.007812 Z M 232.09375 219.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.558594 217.140625 C 233.558594 217.023438 233.464844 216.929688 233.347656 216.929688 C 233.230469 216.929688 233.136719 217.023438 233.136719 217.140625 C 233.136719 217.257812 233.230469 217.351562 233.347656 217.351562 C 233.464844 217.351562 233.558594 217.257812 233.558594 217.140625 Z M 233.558594 217.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.820312 215.871094 C 234.820312 215.753906 234.726562 215.660156 234.609375 215.660156 C 234.492188 215.660156 234.398438 215.753906 234.398438 215.871094 C 234.398438 215.988281 234.492188 216.082031 234.609375 216.082031 C 234.726562 216.082031 234.820312 215.988281 234.820312 215.871094 Z M 234.820312 215.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.582031 218.46875 C 238.582031 218.351562 238.488281 218.257812 238.371094 218.257812 C 238.253906 218.257812 238.160156 218.351562 238.160156 218.46875 C 238.160156 218.585938 238.253906 218.679688 238.371094 218.679688 C 238.488281 218.679688 238.582031 218.585938 238.582031 218.46875 Z M 238.582031 218.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.777344 218.75 C 238.777344 218.632812 238.683594 218.539062 238.566406 218.539062 C 238.449219 218.539062 238.355469 218.632812 238.355469 218.75 C 238.355469 218.867188 238.449219 218.960938 238.566406 218.960938 C 238.683594 218.960938 238.777344 218.867188 238.777344 218.75 Z M 238.777344 218.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.449219 218.882812 C 239.449219 218.765625 239.355469 218.671875 239.238281 218.671875 C 239.121094 218.671875 239.027344 218.765625 239.027344 218.882812 C 239.027344 219 239.121094 219.09375 239.238281 219.09375 C 239.355469 219.09375 239.449219 219 239.449219 218.882812 Z M 239.449219 218.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.011719 216.480469 C 241.011719 216.363281 240.917969 216.269531 240.800781 216.269531 C 240.683594 216.269531 240.589844 216.363281 240.589844 216.480469 C 240.589844 216.597656 240.683594 216.691406 240.800781 216.691406 C 240.917969 216.691406 241.011719 216.597656 241.011719 216.480469 Z M 241.011719 216.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.972656 214.679688 C 242.972656 214.5625 242.878906 214.46875 242.761719 214.46875 C 242.644531 214.46875 242.550781 214.5625 242.550781 214.679688 C 242.550781 214.796875 242.644531 214.890625 242.761719 214.890625 C 242.878906 214.890625 242.972656 214.796875 242.972656 214.679688 Z M 242.972656 214.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.941406 211.914062 C 239.941406 211.796875 239.847656 211.703125 239.730469 211.703125 C 239.613281 211.703125 239.519531 211.796875 239.519531 211.914062 C 239.519531 212.03125 239.613281 212.125 239.730469 212.125 C 239.847656 212.125 239.941406 212.03125 239.941406 211.914062 Z M 239.941406 211.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.113281 212.691406 C 245.113281 212.574219 245.019531 212.480469 244.902344 212.480469 C 244.785156 212.480469 244.691406 212.574219 244.691406 212.691406 C 244.691406 212.808594 244.785156 212.902344 244.902344 212.902344 C 245.019531 212.902344 245.113281 212.808594 245.113281 212.691406 Z M 245.113281 212.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.804688 215.941406 C 248.804688 215.824219 248.710938 215.730469 248.59375 215.730469 C 248.476562 215.730469 248.382812 215.824219 248.382812 215.941406 C 248.382812 216.058594 248.476562 216.152344 248.59375 216.152344 C 248.710938 216.152344 248.804688 216.058594 248.804688 215.941406 Z M 248.804688 215.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.714844 211.863281 C 251.714844 211.746094 251.621094 211.652344 251.503906 211.652344 C 251.386719 211.652344 251.292969 211.746094 251.292969 211.863281 C 251.292969 211.980469 251.386719 212.074219 251.503906 212.074219 C 251.621094 212.074219 251.714844 211.980469 251.714844 211.863281 Z M 251.714844 211.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.734375 213.484375 C 250.734375 213.367188 250.640625 213.273438 250.523438 213.273438 C 250.40625 213.273438 250.3125 213.367188 250.3125 213.484375 C 250.3125 213.601562 250.40625 213.695312 250.523438 213.695312 C 250.640625 213.695312 250.734375 213.601562 250.734375 213.484375 Z M 250.734375 213.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.136719 211.945312 C 253.136719 211.828125 253.042969 211.734375 252.925781 211.734375 C 252.808594 211.734375 252.714844 211.828125 252.714844 211.945312 C 252.714844 212.0625 252.808594 212.15625 252.925781 212.15625 C 253.042969 212.15625 253.136719 212.0625 253.136719 211.945312 Z M 253.136719 211.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.671875 208.871094 C 252.671875 208.753906 252.578125 208.660156 252.460938 208.660156 C 252.34375 208.660156 252.25 208.753906 252.25 208.871094 C 252.25 208.988281 252.34375 209.082031 252.460938 209.082031 C 252.578125 209.082031 252.671875 208.988281 252.671875 208.871094 Z M 252.671875 208.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.671875 211.132812 C 248.671875 211.015625 248.578125 210.921875 248.460938 210.921875 C 248.34375 210.921875 248.25 211.015625 248.25 211.132812 C 248.25 211.25 248.34375 211.34375 248.460938 211.34375 C 248.578125 211.34375 248.671875 211.25 248.671875 211.132812 Z M 248.671875 211.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.796875 212.84375 C 248.796875 212.726562 248.703125 212.632812 248.585938 212.632812 C 248.46875 212.632812 248.375 212.726562 248.375 212.84375 C 248.375 212.960938 248.46875 213.054688 248.585938 213.054688 C 248.703125 213.054688 248.796875 212.960938 248.796875 212.84375 Z M 248.796875 212.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.953125 212.699219 C 248.953125 212.582031 248.859375 212.488281 248.742188 212.488281 C 248.625 212.488281 248.53125 212.582031 248.53125 212.699219 C 248.53125 212.816406 248.625 212.910156 248.742188 212.910156 C 248.859375 212.910156 248.953125 212.816406 248.953125 212.699219 Z M 248.953125 212.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.191406 211.496094 C 245.191406 211.378906 245.097656 211.285156 244.980469 211.285156 C 244.863281 211.285156 244.769531 211.378906 244.769531 211.496094 C 244.769531 211.613281 244.863281 211.707031 244.980469 211.707031 C 245.097656 211.707031 245.191406 211.613281 245.191406 211.496094 Z M 245.191406 211.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.507812 205.820312 C 250.507812 205.703125 250.414062 205.609375 250.296875 205.609375 C 250.179688 205.609375 250.085938 205.703125 250.085938 205.820312 C 250.085938 205.9375 250.179688 206.03125 250.296875 206.03125 C 250.414062 206.03125 250.507812 205.9375 250.507812 205.820312 Z M 250.507812 205.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.261719 204.519531 C 251.261719 204.402344 251.167969 204.308594 251.050781 204.308594 C 250.933594 204.308594 250.839844 204.402344 250.839844 204.519531 C 250.839844 204.636719 250.933594 204.730469 251.050781 204.730469 C 251.167969 204.730469 251.261719 204.636719 251.261719 204.519531 Z M 251.261719 204.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.242188 206.472656 C 250.242188 206.355469 250.148438 206.261719 250.03125 206.261719 C 249.914062 206.261719 249.820312 206.355469 249.820312 206.472656 C 249.820312 206.589844 249.914062 206.683594 250.03125 206.683594 C 250.148438 206.683594 250.242188 206.589844 250.242188 206.472656 Z M 250.242188 206.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.101562 206.628906 C 252.101562 206.511719 252.007812 206.417969 251.890625 206.417969 C 251.773438 206.417969 251.679688 206.511719 251.679688 206.628906 C 251.679688 206.746094 251.773438 206.839844 251.890625 206.839844 C 252.007812 206.839844 252.101562 206.746094 252.101562 206.628906 Z M 252.101562 206.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.726562 207.015625 C 255.726562 206.898438 255.632812 206.804688 255.515625 206.804688 C 255.398438 206.804688 255.304688 206.898438 255.304688 207.015625 C 255.304688 207.132812 255.398438 207.226562 255.515625 207.226562 C 255.632812 207.226562 255.726562 207.132812 255.726562 207.015625 Z M 255.726562 207.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.867188 207.035156 C 257.867188 206.917969 257.773438 206.824219 257.65625 206.824219 C 257.539062 206.824219 257.445312 206.917969 257.445312 207.035156 C 257.445312 207.152344 257.539062 207.246094 257.65625 207.246094 C 257.773438 207.246094 257.867188 207.152344 257.867188 207.035156 Z M 257.867188 207.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.757812 207.425781 C 260.757812 207.308594 260.664062 207.214844 260.546875 207.214844 C 260.429688 207.214844 260.335938 207.308594 260.335938 207.425781 C 260.335938 207.542969 260.429688 207.636719 260.546875 207.636719 C 260.664062 207.636719 260.757812 207.542969 260.757812 207.425781 Z M 260.757812 207.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.566406 206.574219 C 260.566406 206.457031 260.472656 206.363281 260.355469 206.363281 C 260.238281 206.363281 260.144531 206.457031 260.144531 206.574219 C 260.144531 206.691406 260.238281 206.785156 260.355469 206.785156 C 260.472656 206.785156 260.566406 206.691406 260.566406 206.574219 Z M 260.566406 206.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.371094 208.808594 C 259.371094 208.691406 259.277344 208.597656 259.160156 208.597656 C 259.042969 208.597656 258.949219 208.691406 258.949219 208.808594 C 258.949219 208.925781 259.042969 209.019531 259.160156 209.019531 C 259.277344 209.019531 259.371094 208.925781 259.371094 208.808594 Z M 259.371094 208.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.847656 207.339844 C 255.847656 207.222656 255.753906 207.128906 255.636719 207.128906 C 255.519531 207.128906 255.425781 207.222656 255.425781 207.339844 C 255.425781 207.457031 255.519531 207.550781 255.636719 207.550781 C 255.753906 207.550781 255.847656 207.457031 255.847656 207.339844 Z M 255.847656 207.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.40625 210.359375 C 257.40625 210.242188 257.3125 210.148438 257.195312 210.148438 C 257.078125 210.148438 256.984375 210.242188 256.984375 210.359375 C 256.984375 210.476562 257.078125 210.570312 257.195312 210.570312 C 257.3125 210.570312 257.40625 210.476562 257.40625 210.359375 Z M 257.40625 210.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.289062 206.566406 C 255.289062 206.449219 255.195312 206.355469 255.078125 206.355469 C 254.960938 206.355469 254.867188 206.449219 254.867188 206.566406 C 254.867188 206.683594 254.960938 206.777344 255.078125 206.777344 C 255.195312 206.777344 255.289062 206.683594 255.289062 206.566406 Z M 255.289062 206.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.191406 206.691406 C 257.191406 206.574219 257.097656 206.480469 256.980469 206.480469 C 256.863281 206.480469 256.769531 206.574219 256.769531 206.691406 C 256.769531 206.808594 256.863281 206.902344 256.980469 206.902344 C 257.097656 206.902344 257.191406 206.808594 257.191406 206.691406 Z M 257.191406 206.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.847656 206.671875 C 258.847656 206.554688 258.753906 206.460938 258.636719 206.460938 C 258.519531 206.460938 258.425781 206.554688 258.425781 206.671875 C 258.425781 206.789062 258.519531 206.882812 258.636719 206.882812 C 258.753906 206.882812 258.847656 206.789062 258.847656 206.671875 Z M 258.847656 206.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.253906 208.777344 C 257.253906 208.660156 257.160156 208.566406 257.042969 208.566406 C 256.925781 208.566406 256.832031 208.660156 256.832031 208.777344 C 256.832031 208.894531 256.925781 208.988281 257.042969 208.988281 C 257.160156 208.988281 257.253906 208.894531 257.253906 208.777344 Z M 257.253906 208.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.621094 206.289062 C 257.621094 206.171875 257.527344 206.078125 257.410156 206.078125 C 257.292969 206.078125 257.199219 206.171875 257.199219 206.289062 C 257.199219 206.40625 257.292969 206.5 257.410156 206.5 C 257.527344 206.5 257.621094 206.40625 257.621094 206.289062 Z M 257.621094 206.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.914062 206.949219 C 256.914062 206.832031 256.820312 206.738281 256.703125 206.738281 C 256.585938 206.738281 256.492188 206.832031 256.492188 206.949219 C 256.492188 207.066406 256.585938 207.160156 256.703125 207.160156 C 256.820312 207.160156 256.914062 207.066406 256.914062 206.949219 Z M 256.914062 206.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.554688 209.03125 C 257.554688 208.914062 257.460938 208.820312 257.34375 208.820312 C 257.226562 208.820312 257.132812 208.914062 257.132812 209.03125 C 257.132812 209.148438 257.226562 209.242188 257.34375 209.242188 C 257.460938 209.242188 257.554688 209.148438 257.554688 209.03125 Z M 257.554688 209.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.132812 210.203125 C 254.132812 210.085938 254.039062 209.992188 253.921875 209.992188 C 253.804688 209.992188 253.710938 210.085938 253.710938 210.203125 C 253.710938 210.320312 253.804688 210.414062 253.921875 210.414062 C 254.039062 210.414062 254.132812 210.320312 254.132812 210.203125 Z M 254.132812 210.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.921875 211.503906 C 254.921875 211.386719 254.828125 211.292969 254.710938 211.292969 C 254.59375 211.292969 254.5 211.386719 254.5 211.503906 C 254.5 211.621094 254.59375 211.714844 254.710938 211.714844 C 254.828125 211.714844 254.921875 211.621094 254.921875 211.503906 Z M 254.921875 211.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.871094 213.78125 C 256.871094 213.664062 256.777344 213.570312 256.660156 213.570312 C 256.542969 213.570312 256.449219 213.664062 256.449219 213.78125 C 256.449219 213.898438 256.542969 213.992188 256.660156 213.992188 C 256.777344 213.992188 256.871094 213.898438 256.871094 213.78125 Z M 256.871094 213.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.679688 212.167969 C 256.679688 212.050781 256.585938 211.957031 256.46875 211.957031 C 256.351562 211.957031 256.257812 212.050781 256.257812 212.167969 C 256.257812 212.285156 256.351562 212.378906 256.46875 212.378906 C 256.585938 212.378906 256.679688 212.285156 256.679688 212.167969 Z M 256.679688 212.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.933594 217.390625 C 254.933594 217.273438 254.839844 217.179688 254.722656 217.179688 C 254.605469 217.179688 254.511719 217.273438 254.511719 217.390625 C 254.511719 217.507812 254.605469 217.601562 254.722656 217.601562 C 254.839844 217.601562 254.933594 217.507812 254.933594 217.390625 Z M 254.933594 217.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.363281 220.03125 C 254.363281 219.914062 254.269531 219.820312 254.152344 219.820312 C 254.035156 219.820312 253.941406 219.914062 253.941406 220.03125 C 253.941406 220.148438 254.035156 220.242188 254.152344 220.242188 C 254.269531 220.242188 254.363281 220.148438 254.363281 220.03125 Z M 254.363281 220.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.363281 219.519531 C 251.363281 219.402344 251.269531 219.308594 251.152344 219.308594 C 251.035156 219.308594 250.941406 219.402344 250.941406 219.519531 C 250.941406 219.636719 251.035156 219.730469 251.152344 219.730469 C 251.269531 219.730469 251.363281 219.636719 251.363281 219.519531 Z M 251.363281 219.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.246094 218.074219 C 251.246094 217.957031 251.152344 217.863281 251.035156 217.863281 C 250.917969 217.863281 250.824219 217.957031 250.824219 218.074219 C 250.824219 218.191406 250.917969 218.285156 251.035156 218.285156 C 251.152344 218.285156 251.246094 218.191406 251.246094 218.074219 Z M 251.246094 218.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.546875 216.589844 C 248.546875 216.472656 248.453125 216.378906 248.335938 216.378906 C 248.21875 216.378906 248.125 216.472656 248.125 216.589844 C 248.125 216.707031 248.21875 216.800781 248.335938 216.800781 C 248.453125 216.800781 248.546875 216.707031 248.546875 216.589844 Z M 248.546875 216.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.4375 217.046875 C 251.4375 216.929688 251.34375 216.835938 251.226562 216.835938 C 251.109375 216.835938 251.015625 216.929688 251.015625 217.046875 C 251.015625 217.164062 251.109375 217.257812 251.226562 217.257812 C 251.34375 217.257812 251.4375 217.164062 251.4375 217.046875 Z M 251.4375 217.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.515625 216.261719 C 247.515625 216.144531 247.421875 216.050781 247.304688 216.050781 C 247.1875 216.050781 247.09375 216.144531 247.09375 216.261719 C 247.09375 216.378906 247.1875 216.472656 247.304688 216.472656 C 247.421875 216.472656 247.515625 216.378906 247.515625 216.261719 Z M 247.515625 216.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.796875 217.636719 C 247.796875 217.519531 247.703125 217.425781 247.585938 217.425781 C 247.46875 217.425781 247.375 217.519531 247.375 217.636719 C 247.375 217.753906 247.46875 217.847656 247.585938 217.847656 C 247.703125 217.847656 247.796875 217.753906 247.796875 217.636719 Z M 247.796875 217.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.136719 218.417969 C 246.136719 218.300781 246.042969 218.207031 245.925781 218.207031 C 245.808594 218.207031 245.714844 218.300781 245.714844 218.417969 C 245.714844 218.535156 245.808594 218.628906 245.925781 218.628906 C 246.042969 218.628906 246.136719 218.535156 246.136719 218.417969 Z M 246.136719 218.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.992188 220.378906 C 243.992188 220.261719 243.898438 220.167969 243.78125 220.167969 C 243.664062 220.167969 243.570312 220.261719 243.570312 220.378906 C 243.570312 220.496094 243.664062 220.589844 243.78125 220.589844 C 243.898438 220.589844 243.992188 220.496094 243.992188 220.378906 Z M 243.992188 220.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.574219 220.214844 C 242.574219 220.097656 242.480469 220.003906 242.363281 220.003906 C 242.246094 220.003906 242.152344 220.097656 242.152344 220.214844 C 242.152344 220.332031 242.246094 220.425781 242.363281 220.425781 C 242.480469 220.425781 242.574219 220.332031 242.574219 220.214844 Z M 242.574219 220.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.109375 218.722656 C 241.109375 218.605469 241.015625 218.511719 240.898438 218.511719 C 240.78125 218.511719 240.6875 218.605469 240.6875 218.722656 C 240.6875 218.839844 240.78125 218.933594 240.898438 218.933594 C 241.015625 218.933594 241.109375 218.839844 241.109375 218.722656 Z M 241.109375 218.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.339844 218.933594 C 245.339844 218.816406 245.246094 218.722656 245.128906 218.722656 C 245.011719 218.722656 244.917969 218.816406 244.917969 218.933594 C 244.917969 219.050781 245.011719 219.144531 245.128906 219.144531 C 245.246094 219.144531 245.339844 219.050781 245.339844 218.933594 Z M 245.339844 218.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.574219 216.605469 C 244.574219 216.488281 244.480469 216.394531 244.363281 216.394531 C 244.246094 216.394531 244.152344 216.488281 244.152344 216.605469 C 244.152344 216.722656 244.246094 216.816406 244.363281 216.816406 C 244.480469 216.816406 244.574219 216.722656 244.574219 216.605469 Z M 244.574219 216.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.75 215.660156 C 248.75 215.542969 248.65625 215.449219 248.539062 215.449219 C 248.421875 215.449219 248.328125 215.542969 248.328125 215.660156 C 248.328125 215.777344 248.421875 215.871094 248.539062 215.871094 C 248.65625 215.871094 248.75 215.777344 248.75 215.660156 Z M 248.75 215.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.125 218.851562 C 249.125 218.734375 249.03125 218.640625 248.914062 218.640625 C 248.796875 218.640625 248.703125 218.734375 248.703125 218.851562 C 248.703125 218.96875 248.796875 219.0625 248.914062 219.0625 C 249.03125 219.0625 249.125 218.96875 249.125 218.851562 Z M 249.125 218.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.027344 216.722656 C 252.027344 216.605469 251.933594 216.511719 251.816406 216.511719 C 251.699219 216.511719 251.605469 216.605469 251.605469 216.722656 C 251.605469 216.839844 251.699219 216.933594 251.816406 216.933594 C 251.933594 216.933594 252.027344 216.839844 252.027344 216.722656 Z M 252.027344 216.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.859375 216.558594 C 251.859375 216.441406 251.765625 216.347656 251.648438 216.347656 C 251.53125 216.347656 251.4375 216.441406 251.4375 216.558594 C 251.4375 216.675781 251.53125 216.769531 251.648438 216.769531 C 251.765625 216.769531 251.859375 216.675781 251.859375 216.558594 Z M 251.859375 216.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.574219 215.859375 C 250.574219 215.742188 250.480469 215.648438 250.363281 215.648438 C 250.246094 215.648438 250.152344 215.742188 250.152344 215.859375 C 250.152344 215.976562 250.246094 216.070312 250.363281 216.070312 C 250.480469 216.070312 250.574219 215.976562 250.574219 215.859375 Z M 250.574219 215.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.339844 217.214844 C 247.339844 217.097656 247.246094 217.003906 247.128906 217.003906 C 247.011719 217.003906 246.917969 217.097656 246.917969 217.214844 C 246.917969 217.332031 247.011719 217.425781 247.128906 217.425781 C 247.246094 217.425781 247.339844 217.332031 247.339844 217.214844 Z M 247.339844 217.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.3125 214.261719 C 248.3125 214.144531 248.21875 214.050781 248.101562 214.050781 C 247.984375 214.050781 247.890625 214.144531 247.890625 214.261719 C 247.890625 214.378906 247.984375 214.472656 248.101562 214.472656 C 248.21875 214.472656 248.3125 214.378906 248.3125 214.261719 Z M 248.3125 214.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.59375 212.40625 C 250.59375 212.289062 250.5 212.195312 250.382812 212.195312 C 250.265625 212.195312 250.171875 212.289062 250.171875 212.40625 C 250.171875 212.523438 250.265625 212.617188 250.382812 212.617188 C 250.5 212.617188 250.59375 212.523438 250.59375 212.40625 Z M 250.59375 212.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.089844 213.070312 C 250.089844 212.953125 249.996094 212.859375 249.878906 212.859375 C 249.761719 212.859375 249.667969 212.953125 249.667969 213.070312 C 249.667969 213.1875 249.761719 213.28125 249.878906 213.28125 C 249.996094 213.28125 250.089844 213.1875 250.089844 213.070312 Z M 250.089844 213.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.808594 213.085938 C 252.808594 212.96875 252.714844 212.875 252.597656 212.875 C 252.480469 212.875 252.386719 212.96875 252.386719 213.085938 C 252.386719 213.203125 252.480469 213.296875 252.597656 213.296875 C 252.714844 213.296875 252.808594 213.203125 252.808594 213.085938 Z M 252.808594 213.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.910156 213.039062 C 253.910156 212.921875 253.816406 212.828125 253.699219 212.828125 C 253.582031 212.828125 253.488281 212.921875 253.488281 213.039062 C 253.488281 213.15625 253.582031 213.25 253.699219 213.25 C 253.816406 213.25 253.910156 213.15625 253.910156 213.039062 Z M 253.910156 213.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.808594 214.011719 C 256.808594 213.894531 256.714844 213.800781 256.597656 213.800781 C 256.480469 213.800781 256.386719 213.894531 256.386719 214.011719 C 256.386719 214.128906 256.480469 214.222656 256.597656 214.222656 C 256.714844 214.222656 256.808594 214.128906 256.808594 214.011719 Z M 256.808594 214.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.378906 211.292969 C 258.378906 211.175781 258.285156 211.082031 258.167969 211.082031 C 258.050781 211.082031 257.957031 211.175781 257.957031 211.292969 C 257.957031 211.410156 258.050781 211.503906 258.167969 211.503906 C 258.285156 211.503906 258.378906 211.410156 258.378906 211.292969 Z M 258.378906 211.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.996094 208.835938 C 257.996094 208.71875 257.902344 208.625 257.785156 208.625 C 257.667969 208.625 257.574219 208.71875 257.574219 208.835938 C 257.574219 208.953125 257.667969 209.046875 257.785156 209.046875 C 257.902344 209.046875 257.996094 208.953125 257.996094 208.835938 Z M 257.996094 208.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.5625 209.652344 C 257.5625 209.535156 257.46875 209.441406 257.351562 209.441406 C 257.234375 209.441406 257.140625 209.535156 257.140625 209.652344 C 257.140625 209.769531 257.234375 209.863281 257.351562 209.863281 C 257.46875 209.863281 257.5625 209.769531 257.5625 209.652344 Z M 257.5625 209.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.160156 211.777344 C 258.160156 211.660156 258.066406 211.566406 257.949219 211.566406 C 257.832031 211.566406 257.738281 211.660156 257.738281 211.777344 C 257.738281 211.894531 257.832031 211.988281 257.949219 211.988281 C 258.066406 211.988281 258.160156 211.894531 258.160156 211.777344 Z M 258.160156 211.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.027344 211.511719 C 260.027344 211.394531 259.933594 211.300781 259.816406 211.300781 C 259.699219 211.300781 259.605469 211.394531 259.605469 211.511719 C 259.605469 211.628906 259.699219 211.722656 259.816406 211.722656 C 259.933594 211.722656 260.027344 211.628906 260.027344 211.511719 Z M 260.027344 211.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.542969 210.191406 C 254.542969 210.074219 254.449219 209.980469 254.332031 209.980469 C 254.214844 209.980469 254.121094 210.074219 254.121094 210.191406 C 254.121094 210.308594 254.214844 210.402344 254.332031 210.402344 C 254.449219 210.402344 254.542969 210.308594 254.542969 210.191406 Z M 254.542969 210.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.378906 213.101562 C 253.378906 212.984375 253.285156 212.890625 253.167969 212.890625 C 253.050781 212.890625 252.957031 212.984375 252.957031 213.101562 C 252.957031 213.21875 253.050781 213.3125 253.167969 213.3125 C 253.285156 213.3125 253.378906 213.21875 253.378906 213.101562 Z M 253.378906 213.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.945312 214.503906 C 251.945312 214.386719 251.851562 214.292969 251.734375 214.292969 C 251.617188 214.292969 251.523438 214.386719 251.523438 214.503906 C 251.523438 214.621094 251.617188 214.714844 251.734375 214.714844 C 251.851562 214.714844 251.945312 214.621094 251.945312 214.503906 Z M 251.945312 214.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.476562 214.777344 C 250.476562 214.660156 250.382812 214.566406 250.265625 214.566406 C 250.148438 214.566406 250.054688 214.660156 250.054688 214.777344 C 250.054688 214.894531 250.148438 214.988281 250.265625 214.988281 C 250.382812 214.988281 250.476562 214.894531 250.476562 214.777344 Z M 250.476562 214.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.664062 212.414062 C 249.664062 212.296875 249.570312 212.203125 249.453125 212.203125 C 249.335938 212.203125 249.242188 212.296875 249.242188 212.414062 C 249.242188 212.53125 249.335938 212.625 249.453125 212.625 C 249.570312 212.625 249.664062 212.53125 249.664062 212.414062 Z M 249.664062 212.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.359375 213.148438 C 252.359375 213.03125 252.265625 212.9375 252.148438 212.9375 C 252.03125 212.9375 251.9375 213.03125 251.9375 213.148438 C 251.9375 213.265625 252.03125 213.359375 252.148438 213.359375 C 252.265625 213.359375 252.359375 213.265625 252.359375 213.148438 Z M 252.359375 213.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.546875 210.835938 C 255.546875 210.71875 255.453125 210.625 255.335938 210.625 C 255.21875 210.625 255.125 210.71875 255.125 210.835938 C 255.125 210.953125 255.21875 211.046875 255.335938 211.046875 C 255.453125 211.046875 255.546875 210.953125 255.546875 210.835938 Z M 255.546875 210.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.765625 209.199219 C 255.765625 209.082031 255.671875 208.988281 255.554688 208.988281 C 255.4375 208.988281 255.34375 209.082031 255.34375 209.199219 C 255.34375 209.316406 255.4375 209.410156 255.554688 209.410156 C 255.671875 209.410156 255.765625 209.316406 255.765625 209.199219 Z M 255.765625 209.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.238281 208.925781 C 257.238281 208.808594 257.144531 208.714844 257.027344 208.714844 C 256.910156 208.714844 256.816406 208.808594 256.816406 208.925781 C 256.816406 209.042969 256.910156 209.136719 257.027344 209.136719 C 257.144531 209.136719 257.238281 209.042969 257.238281 208.925781 Z M 257.238281 208.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.082031 209.171875 C 261.082031 209.054688 260.988281 208.960938 260.871094 208.960938 C 260.753906 208.960938 260.660156 209.054688 260.660156 209.171875 C 260.660156 209.289062 260.753906 209.382812 260.871094 209.382812 C 260.988281 209.382812 261.082031 209.289062 261.082031 209.171875 Z M 261.082031 209.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.042969 210.371094 C 260.042969 210.253906 259.949219 210.160156 259.832031 210.160156 C 259.714844 210.160156 259.621094 210.253906 259.621094 210.371094 C 259.621094 210.488281 259.714844 210.582031 259.832031 210.582031 C 259.949219 210.582031 260.042969 210.488281 260.042969 210.371094 Z M 260.042969 210.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.632812 210.851562 C 258.632812 210.734375 258.539062 210.640625 258.421875 210.640625 C 258.304688 210.640625 258.210938 210.734375 258.210938 210.851562 C 258.210938 210.96875 258.304688 211.0625 258.421875 211.0625 C 258.539062 211.0625 258.632812 210.96875 258.632812 210.851562 Z M 258.632812 210.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.921875 213.453125 C 259.921875 213.335938 259.828125 213.242188 259.710938 213.242188 C 259.59375 213.242188 259.5 213.335938 259.5 213.453125 C 259.5 213.570312 259.59375 213.664062 259.710938 213.664062 C 259.828125 213.664062 259.921875 213.570312 259.921875 213.453125 Z M 259.921875 213.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.679688 215.21875 C 261.679688 215.101562 261.585938 215.007812 261.46875 215.007812 C 261.351562 215.007812 261.257812 215.101562 261.257812 215.21875 C 261.257812 215.335938 261.351562 215.429688 261.46875 215.429688 C 261.585938 215.429688 261.679688 215.335938 261.679688 215.21875 Z M 261.679688 215.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.167969 217.089844 C 262.167969 216.972656 262.074219 216.878906 261.957031 216.878906 C 261.839844 216.878906 261.746094 216.972656 261.746094 217.089844 C 261.746094 217.207031 261.839844 217.300781 261.957031 217.300781 C 262.074219 217.300781 262.167969 217.207031 262.167969 217.089844 Z M 262.167969 217.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.128906 212.445312 C 260.128906 212.328125 260.035156 212.234375 259.917969 212.234375 C 259.800781 212.234375 259.707031 212.328125 259.707031 212.445312 C 259.707031 212.5625 259.800781 212.65625 259.917969 212.65625 C 260.035156 212.65625 260.128906 212.5625 260.128906 212.445312 Z M 260.128906 212.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.417969 210.511719 C 263.417969 210.394531 263.324219 210.300781 263.207031 210.300781 C 263.089844 210.300781 262.996094 210.394531 262.996094 210.511719 C 262.996094 210.628906 263.089844 210.722656 263.207031 210.722656 C 263.324219 210.722656 263.417969 210.628906 263.417969 210.511719 Z M 263.417969 210.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.214844 213.226562 C 263.214844 213.109375 263.121094 213.015625 263.003906 213.015625 C 262.886719 213.015625 262.792969 213.109375 262.792969 213.226562 C 262.792969 213.34375 262.886719 213.4375 263.003906 213.4375 C 263.121094 213.4375 263.214844 213.34375 263.214844 213.226562 Z M 263.214844 213.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.367188 211.960938 C 265.367188 211.84375 265.273438 211.75 265.15625 211.75 C 265.039062 211.75 264.945312 211.84375 264.945312 211.960938 C 264.945312 212.078125 265.039062 212.171875 265.15625 212.171875 C 265.273438 212.171875 265.367188 212.078125 265.367188 211.960938 Z M 265.367188 211.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.203125 215.910156 C 263.203125 215.792969 263.109375 215.699219 262.992188 215.699219 C 262.875 215.699219 262.78125 215.792969 262.78125 215.910156 C 262.78125 216.027344 262.875 216.121094 262.992188 216.121094 C 263.109375 216.121094 263.203125 216.027344 263.203125 215.910156 Z M 263.203125 215.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.832031 215.097656 C 267.832031 214.980469 267.738281 214.886719 267.621094 214.886719 C 267.503906 214.886719 267.410156 214.980469 267.410156 215.097656 C 267.410156 215.214844 267.503906 215.308594 267.621094 215.308594 C 267.738281 215.308594 267.832031 215.214844 267.832031 215.097656 Z M 267.832031 215.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.324219 210.601562 C 268.324219 210.484375 268.230469 210.390625 268.113281 210.390625 C 267.996094 210.390625 267.902344 210.484375 267.902344 210.601562 C 267.902344 210.71875 267.996094 210.8125 268.113281 210.8125 C 268.230469 210.8125 268.324219 210.71875 268.324219 210.601562 Z M 268.324219 210.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.007812 208.710938 C 269.007812 208.59375 268.914062 208.5 268.796875 208.5 C 268.679688 208.5 268.585938 208.59375 268.585938 208.710938 C 268.585938 208.828125 268.679688 208.921875 268.796875 208.921875 C 268.914062 208.921875 269.007812 208.828125 269.007812 208.710938 Z M 269.007812 208.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.859375 207.273438 C 266.859375 207.15625 266.765625 207.0625 266.648438 207.0625 C 266.53125 207.0625 266.4375 207.15625 266.4375 207.273438 C 266.4375 207.390625 266.53125 207.484375 266.648438 207.484375 C 266.765625 207.484375 266.859375 207.390625 266.859375 207.273438 Z M 266.859375 207.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.351562 204.605469 C 266.351562 204.488281 266.257812 204.394531 266.140625 204.394531 C 266.023438 204.394531 265.929688 204.488281 265.929688 204.605469 C 265.929688 204.722656 266.023438 204.816406 266.140625 204.816406 C 266.257812 204.816406 266.351562 204.722656 266.351562 204.605469 Z M 266.351562 204.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.773438 202.066406 C 267.773438 201.949219 267.679688 201.855469 267.5625 201.855469 C 267.445312 201.855469 267.351562 201.949219 267.351562 202.066406 C 267.351562 202.183594 267.445312 202.277344 267.5625 202.277344 C 267.679688 202.277344 267.773438 202.183594 267.773438 202.066406 Z M 267.773438 202.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.277344 200.96875 C 268.277344 200.851562 268.183594 200.757812 268.066406 200.757812 C 267.949219 200.757812 267.855469 200.851562 267.855469 200.96875 C 267.855469 201.085938 267.949219 201.179688 268.066406 201.179688 C 268.183594 201.179688 268.277344 201.085938 268.277344 200.96875 Z M 268.277344 200.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.980469 198.648438 C 266.980469 198.53125 266.886719 198.4375 266.769531 198.4375 C 266.652344 198.4375 266.558594 198.53125 266.558594 198.648438 C 266.558594 198.765625 266.652344 198.859375 266.769531 198.859375 C 266.886719 198.859375 266.980469 198.765625 266.980469 198.648438 Z M 266.980469 198.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.21875 202.289062 C 266.21875 202.171875 266.125 202.078125 266.007812 202.078125 C 265.890625 202.078125 265.796875 202.171875 265.796875 202.289062 C 265.796875 202.40625 265.890625 202.5 266.007812 202.5 C 266.125 202.5 266.21875 202.40625 266.21875 202.289062 Z M 266.21875 202.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.859375 199.355469 C 265.859375 199.238281 265.765625 199.144531 265.648438 199.144531 C 265.53125 199.144531 265.4375 199.238281 265.4375 199.355469 C 265.4375 199.472656 265.53125 199.566406 265.648438 199.566406 C 265.765625 199.566406 265.859375 199.472656 265.859375 199.355469 Z M 265.859375 199.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.464844 198.808594 C 266.464844 198.691406 266.371094 198.597656 266.253906 198.597656 C 266.136719 198.597656 266.042969 198.691406 266.042969 198.808594 C 266.042969 198.925781 266.136719 199.019531 266.253906 199.019531 C 266.371094 199.019531 266.464844 198.925781 266.464844 198.808594 Z M 266.464844 198.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.277344 197.453125 C 266.277344 197.335938 266.183594 197.242188 266.066406 197.242188 C 265.949219 197.242188 265.855469 197.335938 265.855469 197.453125 C 265.855469 197.570312 265.949219 197.664062 266.066406 197.664062 C 266.183594 197.664062 266.277344 197.570312 266.277344 197.453125 Z M 266.277344 197.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.511719 198.242188 C 264.511719 198.125 264.417969 198.03125 264.300781 198.03125 C 264.183594 198.03125 264.089844 198.125 264.089844 198.242188 C 264.089844 198.359375 264.183594 198.453125 264.300781 198.453125 C 264.417969 198.453125 264.511719 198.359375 264.511719 198.242188 Z M 264.511719 198.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.570312 194.042969 C 264.570312 193.925781 264.476562 193.832031 264.359375 193.832031 C 264.242188 193.832031 264.148438 193.925781 264.148438 194.042969 C 264.148438 194.160156 264.242188 194.253906 264.359375 194.253906 C 264.476562 194.253906 264.570312 194.160156 264.570312 194.042969 Z M 264.570312 194.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.601562 192.429688 C 264.601562 192.3125 264.507812 192.21875 264.390625 192.21875 C 264.273438 192.21875 264.179688 192.3125 264.179688 192.429688 C 264.179688 192.546875 264.273438 192.640625 264.390625 192.640625 C 264.507812 192.640625 264.601562 192.546875 264.601562 192.429688 Z M 264.601562 192.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.785156 194.933594 C 262.785156 194.816406 262.691406 194.722656 262.574219 194.722656 C 262.457031 194.722656 262.363281 194.816406 262.363281 194.933594 C 262.363281 195.050781 262.457031 195.144531 262.574219 195.144531 C 262.691406 195.144531 262.785156 195.050781 262.785156 194.933594 Z M 262.785156 194.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.242188 192.785156 C 262.242188 192.667969 262.148438 192.574219 262.03125 192.574219 C 261.914062 192.574219 261.820312 192.667969 261.820312 192.785156 C 261.820312 192.902344 261.914062 192.996094 262.03125 192.996094 C 262.148438 192.996094 262.242188 192.902344 262.242188 192.785156 Z M 262.242188 192.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.855469 193.71875 C 262.855469 193.601562 262.761719 193.507812 262.644531 193.507812 C 262.527344 193.507812 262.433594 193.601562 262.433594 193.71875 C 262.433594 193.835938 262.527344 193.929688 262.644531 193.929688 C 262.761719 193.929688 262.855469 193.835938 262.855469 193.71875 Z M 262.855469 193.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.46875 194.914062 C 264.46875 194.796875 264.375 194.703125 264.257812 194.703125 C 264.140625 194.703125 264.046875 194.796875 264.046875 194.914062 C 264.046875 195.03125 264.140625 195.125 264.257812 195.125 C 264.375 195.125 264.46875 195.03125 264.46875 194.914062 Z M 264.46875 194.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.035156 193.679688 C 259.035156 193.5625 258.941406 193.46875 258.824219 193.46875 C 258.707031 193.46875 258.613281 193.5625 258.613281 193.679688 C 258.613281 193.796875 258.707031 193.890625 258.824219 193.890625 C 258.941406 193.890625 259.035156 193.796875 259.035156 193.679688 Z M 259.035156 193.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.980469 192.066406 C 257.980469 191.949219 257.886719 191.855469 257.769531 191.855469 C 257.652344 191.855469 257.558594 191.949219 257.558594 192.066406 C 257.558594 192.183594 257.652344 192.277344 257.769531 192.277344 C 257.886719 192.277344 257.980469 192.183594 257.980469 192.066406 Z M 257.980469 192.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.550781 193.820312 C 255.550781 193.703125 255.457031 193.609375 255.339844 193.609375 C 255.222656 193.609375 255.128906 193.703125 255.128906 193.820312 C 255.128906 193.9375 255.222656 194.03125 255.339844 194.03125 C 255.457031 194.03125 255.550781 193.9375 255.550781 193.820312 Z M 255.550781 193.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.601562 195.53125 C 255.601562 195.414062 255.507812 195.320312 255.390625 195.320312 C 255.273438 195.320312 255.179688 195.414062 255.179688 195.53125 C 255.179688 195.648438 255.273438 195.742188 255.390625 195.742188 C 255.507812 195.742188 255.601562 195.648438 255.601562 195.53125 Z M 255.601562 195.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.433594 195.375 C 253.433594 195.257812 253.339844 195.164062 253.222656 195.164062 C 253.105469 195.164062 253.011719 195.257812 253.011719 195.375 C 253.011719 195.492188 253.105469 195.585938 253.222656 195.585938 C 253.339844 195.585938 253.433594 195.492188 253.433594 195.375 Z M 253.433594 195.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.390625 192.59375 C 251.390625 192.476562 251.296875 192.382812 251.179688 192.382812 C 251.0625 192.382812 250.96875 192.476562 250.96875 192.59375 C 250.96875 192.710938 251.0625 192.804688 251.179688 192.804688 C 251.296875 192.804688 251.390625 192.710938 251.390625 192.59375 Z M 251.390625 192.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.671875 194.207031 C 254.671875 194.089844 254.578125 193.996094 254.460938 193.996094 C 254.34375 193.996094 254.25 194.089844 254.25 194.207031 C 254.25 194.324219 254.34375 194.417969 254.460938 194.417969 C 254.578125 194.417969 254.671875 194.324219 254.671875 194.207031 Z M 254.671875 194.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.539062 194.464844 C 253.539062 194.347656 253.445312 194.253906 253.328125 194.253906 C 253.210938 194.253906 253.117188 194.347656 253.117188 194.464844 C 253.117188 194.582031 253.210938 194.675781 253.328125 194.675781 C 253.445312 194.675781 253.539062 194.582031 253.539062 194.464844 Z M 253.539062 194.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.75 195.742188 C 254.75 195.625 254.65625 195.53125 254.539062 195.53125 C 254.421875 195.53125 254.328125 195.625 254.328125 195.742188 C 254.328125 195.859375 254.421875 195.953125 254.539062 195.953125 C 254.65625 195.953125 254.75 195.859375 254.75 195.742188 Z M 254.75 195.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.722656 194.832031 C 255.722656 194.714844 255.628906 194.621094 255.511719 194.621094 C 255.394531 194.621094 255.300781 194.714844 255.300781 194.832031 C 255.300781 194.949219 255.394531 195.042969 255.511719 195.042969 C 255.628906 195.042969 255.722656 194.949219 255.722656 194.832031 Z M 255.722656 194.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.710938 198.597656 C 252.710938 198.480469 252.617188 198.386719 252.5 198.386719 C 252.382812 198.386719 252.289062 198.480469 252.289062 198.597656 C 252.289062 198.714844 252.382812 198.808594 252.5 198.808594 C 252.617188 198.808594 252.710938 198.714844 252.710938 198.597656 Z M 252.710938 198.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.460938 198.613281 C 249.460938 198.496094 249.367188 198.402344 249.25 198.402344 C 249.132812 198.402344 249.039062 198.496094 249.039062 198.613281 C 249.039062 198.730469 249.132812 198.824219 249.25 198.824219 C 249.367188 198.824219 249.460938 198.730469 249.460938 198.613281 Z M 249.460938 198.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.175781 194.445312 C 249.175781 194.328125 249.082031 194.234375 248.964844 194.234375 C 248.847656 194.234375 248.753906 194.328125 248.753906 194.445312 C 248.753906 194.5625 248.847656 194.65625 248.964844 194.65625 C 249.082031 194.65625 249.175781 194.5625 249.175781 194.445312 Z M 249.175781 194.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.28125 191.859375 C 248.28125 191.742188 248.1875 191.648438 248.070312 191.648438 C 247.953125 191.648438 247.859375 191.742188 247.859375 191.859375 C 247.859375 191.976562 247.953125 192.070312 248.070312 192.070312 C 248.1875 192.070312 248.28125 191.976562 248.28125 191.859375 Z M 248.28125 191.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.988281 195.632812 C 250.988281 195.515625 250.894531 195.421875 250.777344 195.421875 C 250.660156 195.421875 250.566406 195.515625 250.566406 195.632812 C 250.566406 195.75 250.660156 195.84375 250.777344 195.84375 C 250.894531 195.84375 250.988281 195.75 250.988281 195.632812 Z M 250.988281 195.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.972656 198.542969 C 250.972656 198.425781 250.878906 198.332031 250.761719 198.332031 C 250.644531 198.332031 250.550781 198.425781 250.550781 198.542969 C 250.550781 198.660156 250.644531 198.753906 250.761719 198.753906 C 250.878906 198.753906 250.972656 198.660156 250.972656 198.542969 Z M 250.972656 198.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.34375 198.519531 C 254.34375 198.402344 254.25 198.308594 254.132812 198.308594 C 254.015625 198.308594 253.921875 198.402344 253.921875 198.519531 C 253.921875 198.636719 254.015625 198.730469 254.132812 198.730469 C 254.25 198.730469 254.34375 198.636719 254.34375 198.519531 Z M 254.34375 198.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.480469 200.269531 C 251.480469 200.152344 251.386719 200.058594 251.269531 200.058594 C 251.152344 200.058594 251.058594 200.152344 251.058594 200.269531 C 251.058594 200.386719 251.152344 200.480469 251.269531 200.480469 C 251.386719 200.480469 251.480469 200.386719 251.480469 200.269531 Z M 251.480469 200.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.230469 204.644531 C 249.230469 204.527344 249.136719 204.433594 249.019531 204.433594 C 248.902344 204.433594 248.808594 204.527344 248.808594 204.644531 C 248.808594 204.761719 248.902344 204.855469 249.019531 204.855469 C 249.136719 204.855469 249.230469 204.761719 249.230469 204.644531 Z M 249.230469 204.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.410156 204.144531 C 248.410156 204.027344 248.316406 203.933594 248.199219 203.933594 C 248.082031 203.933594 247.988281 204.027344 247.988281 204.144531 C 247.988281 204.261719 248.082031 204.355469 248.199219 204.355469 C 248.316406 204.355469 248.410156 204.261719 248.410156 204.144531 Z M 248.410156 204.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.292969 206.910156 C 246.292969 206.792969 246.199219 206.699219 246.082031 206.699219 C 245.964844 206.699219 245.871094 206.792969 245.871094 206.910156 C 245.871094 207.027344 245.964844 207.121094 246.082031 207.121094 C 246.199219 207.121094 246.292969 207.027344 246.292969 206.910156 Z M 246.292969 206.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.191406 207.53125 C 249.191406 207.414062 249.097656 207.320312 248.980469 207.320312 C 248.863281 207.320312 248.769531 207.414062 248.769531 207.53125 C 248.769531 207.648438 248.863281 207.742188 248.980469 207.742188 C 249.097656 207.742188 249.191406 207.648438 249.191406 207.53125 Z M 249.191406 207.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.5 205.714844 C 248.5 205.597656 248.40625 205.503906 248.289062 205.503906 C 248.171875 205.503906 248.078125 205.597656 248.078125 205.714844 C 248.078125 205.832031 248.171875 205.925781 248.289062 205.925781 C 248.40625 205.925781 248.5 205.832031 248.5 205.714844 Z M 248.5 205.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.808594 207.019531 C 249.808594 206.902344 249.714844 206.808594 249.597656 206.808594 C 249.480469 206.808594 249.386719 206.902344 249.386719 207.019531 C 249.386719 207.136719 249.480469 207.230469 249.597656 207.230469 C 249.714844 207.230469 249.808594 207.136719 249.808594 207.019531 Z M 249.808594 207.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.296875 207.066406 C 246.296875 206.949219 246.203125 206.855469 246.085938 206.855469 C 245.96875 206.855469 245.875 206.949219 245.875 207.066406 C 245.875 207.183594 245.96875 207.277344 246.085938 207.277344 C 246.203125 207.277344 246.296875 207.183594 246.296875 207.066406 Z M 246.296875 207.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.980469 205.3125 C 246.980469 205.195312 246.886719 205.101562 246.769531 205.101562 C 246.652344 205.101562 246.558594 205.195312 246.558594 205.3125 C 246.558594 205.429688 246.652344 205.523438 246.769531 205.523438 C 246.886719 205.523438 246.980469 205.429688 246.980469 205.3125 Z M 246.980469 205.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.816406 205.304688 C 247.816406 205.1875 247.722656 205.09375 247.605469 205.09375 C 247.488281 205.09375 247.394531 205.1875 247.394531 205.304688 C 247.394531 205.421875 247.488281 205.515625 247.605469 205.515625 C 247.722656 205.515625 247.816406 205.421875 247.816406 205.304688 Z M 247.816406 205.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.515625 203.039062 C 248.515625 202.921875 248.421875 202.828125 248.304688 202.828125 C 248.1875 202.828125 248.09375 202.921875 248.09375 203.039062 C 248.09375 203.15625 248.1875 203.25 248.304688 203.25 C 248.421875 203.25 248.515625 203.15625 248.515625 203.039062 Z M 248.515625 203.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.03125 201.765625 C 251.03125 201.648438 250.9375 201.554688 250.820312 201.554688 C 250.703125 201.554688 250.609375 201.648438 250.609375 201.765625 C 250.609375 201.882812 250.703125 201.976562 250.820312 201.976562 C 250.9375 201.976562 251.03125 201.882812 251.03125 201.765625 Z M 251.03125 201.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.6875 200.464844 C 251.6875 200.347656 251.59375 200.253906 251.476562 200.253906 C 251.359375 200.253906 251.265625 200.347656 251.265625 200.464844 C 251.265625 200.582031 251.359375 200.675781 251.476562 200.675781 C 251.59375 200.675781 251.6875 200.582031 251.6875 200.464844 Z M 251.6875 200.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.160156 200.335938 C 254.160156 200.21875 254.066406 200.125 253.949219 200.125 C 253.832031 200.125 253.738281 200.21875 253.738281 200.335938 C 253.738281 200.453125 253.832031 200.546875 253.949219 200.546875 C 254.066406 200.546875 254.160156 200.453125 254.160156 200.335938 Z M 254.160156 200.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.4375 200.21875 C 252.4375 200.101562 252.34375 200.007812 252.226562 200.007812 C 252.109375 200.007812 252.015625 200.101562 252.015625 200.21875 C 252.015625 200.335938 252.109375 200.429688 252.226562 200.429688 C 252.34375 200.429688 252.4375 200.335938 252.4375 200.21875 Z M 252.4375 200.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.964844 200.707031 C 252.964844 200.589844 252.871094 200.496094 252.753906 200.496094 C 252.636719 200.496094 252.542969 200.589844 252.542969 200.707031 C 252.542969 200.824219 252.636719 200.917969 252.753906 200.917969 C 252.871094 200.917969 252.964844 200.824219 252.964844 200.707031 Z M 252.964844 200.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.578125 200.277344 C 253.578125 200.160156 253.484375 200.066406 253.367188 200.066406 C 253.25 200.066406 253.15625 200.160156 253.15625 200.277344 C 253.15625 200.394531 253.25 200.488281 253.367188 200.488281 C 253.484375 200.488281 253.578125 200.394531 253.578125 200.277344 Z M 253.578125 200.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.636719 199.660156 C 249.636719 199.542969 249.542969 199.449219 249.425781 199.449219 C 249.308594 199.449219 249.214844 199.542969 249.214844 199.660156 C 249.214844 199.777344 249.308594 199.871094 249.425781 199.871094 C 249.542969 199.871094 249.636719 199.777344 249.636719 199.660156 Z M 249.636719 199.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.429688 199.179688 C 250.429688 199.0625 250.335938 198.96875 250.21875 198.96875 C 250.101562 198.96875 250.007812 199.0625 250.007812 199.179688 C 250.007812 199.296875 250.101562 199.390625 250.21875 199.390625 C 250.335938 199.390625 250.429688 199.296875 250.429688 199.179688 Z M 250.429688 199.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.875 198.410156 C 251.875 198.292969 251.78125 198.199219 251.664062 198.199219 C 251.546875 198.199219 251.453125 198.292969 251.453125 198.410156 C 251.453125 198.527344 251.546875 198.621094 251.664062 198.621094 C 251.78125 198.621094 251.875 198.527344 251.875 198.410156 Z M 251.875 198.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.578125 197.78125 C 251.578125 197.664062 251.484375 197.570312 251.367188 197.570312 C 251.25 197.570312 251.15625 197.664062 251.15625 197.78125 C 251.15625 197.898438 251.25 197.992188 251.367188 197.992188 C 251.484375 197.992188 251.578125 197.898438 251.578125 197.78125 Z M 251.578125 197.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.523438 195.539062 C 255.523438 195.421875 255.429688 195.328125 255.3125 195.328125 C 255.195312 195.328125 255.101562 195.421875 255.101562 195.539062 C 255.101562 195.65625 255.195312 195.75 255.3125 195.75 C 255.429688 195.75 255.523438 195.65625 255.523438 195.539062 Z M 255.523438 195.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.304688 195.054688 C 255.304688 194.9375 255.210938 194.84375 255.09375 194.84375 C 254.976562 194.84375 254.882812 194.9375 254.882812 195.054688 C 254.882812 195.171875 254.976562 195.265625 255.09375 195.265625 C 255.210938 195.265625 255.304688 195.171875 255.304688 195.054688 Z M 255.304688 195.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.703125 196.804688 C 252.703125 196.6875 252.609375 196.59375 252.492188 196.59375 C 252.375 196.59375 252.28125 196.6875 252.28125 196.804688 C 252.28125 196.921875 252.375 197.015625 252.492188 197.015625 C 252.609375 197.015625 252.703125 196.921875 252.703125 196.804688 Z M 252.703125 196.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.867188 196.675781 C 251.867188 196.558594 251.773438 196.464844 251.65625 196.464844 C 251.539062 196.464844 251.445312 196.558594 251.445312 196.675781 C 251.445312 196.792969 251.539062 196.886719 251.65625 196.886719 C 251.773438 196.886719 251.867188 196.792969 251.867188 196.675781 Z M 251.867188 196.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.992188 199.640625 C 248.992188 199.523438 248.898438 199.429688 248.78125 199.429688 C 248.664062 199.429688 248.570312 199.523438 248.570312 199.640625 C 248.570312 199.757812 248.664062 199.851562 248.78125 199.851562 C 248.898438 199.851562 248.992188 199.757812 248.992188 199.640625 Z M 248.992188 199.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.761719 198.8125 C 247.761719 198.695312 247.667969 198.601562 247.550781 198.601562 C 247.433594 198.601562 247.339844 198.695312 247.339844 198.8125 C 247.339844 198.929688 247.433594 199.023438 247.550781 199.023438 C 247.667969 199.023438 247.761719 198.929688 247.761719 198.8125 Z M 247.761719 198.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.582031 199.351562 C 249.582031 199.234375 249.488281 199.140625 249.371094 199.140625 C 249.253906 199.140625 249.160156 199.234375 249.160156 199.351562 C 249.160156 199.46875 249.253906 199.5625 249.371094 199.5625 C 249.488281 199.5625 249.582031 199.46875 249.582031 199.351562 Z M 249.582031 199.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.53125 198.296875 C 250.53125 198.179688 250.4375 198.085938 250.320312 198.085938 C 250.203125 198.085938 250.109375 198.179688 250.109375 198.296875 C 250.109375 198.414062 250.203125 198.507812 250.320312 198.507812 C 250.4375 198.507812 250.53125 198.414062 250.53125 198.296875 Z M 250.53125 198.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.597656 201.03125 C 249.597656 200.914062 249.503906 200.820312 249.386719 200.820312 C 249.269531 200.820312 249.175781 200.914062 249.175781 201.03125 C 249.175781 201.148438 249.269531 201.242188 249.386719 201.242188 C 249.503906 201.242188 249.597656 201.148438 249.597656 201.03125 Z M 249.597656 201.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.929688 201.335938 C 246.929688 201.21875 246.835938 201.125 246.71875 201.125 C 246.601562 201.125 246.507812 201.21875 246.507812 201.335938 C 246.507812 201.453125 246.601562 201.546875 246.71875 201.546875 C 246.835938 201.546875 246.929688 201.453125 246.929688 201.335938 Z M 246.929688 201.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.761719 201.402344 C 245.761719 201.285156 245.667969 201.191406 245.550781 201.191406 C 245.433594 201.191406 245.339844 201.285156 245.339844 201.402344 C 245.339844 201.519531 245.433594 201.613281 245.550781 201.613281 C 245.667969 201.613281 245.761719 201.519531 245.761719 201.402344 Z M 245.761719 201.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.925781 202.039062 C 246.925781 201.921875 246.832031 201.828125 246.714844 201.828125 C 246.597656 201.828125 246.503906 201.921875 246.503906 202.039062 C 246.503906 202.15625 246.597656 202.25 246.714844 202.25 C 246.832031 202.25 246.925781 202.15625 246.925781 202.039062 Z M 246.925781 202.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.742188 203.640625 C 251.742188 203.523438 251.648438 203.429688 251.53125 203.429688 C 251.414062 203.429688 251.320312 203.523438 251.320312 203.640625 C 251.320312 203.757812 251.414062 203.851562 251.53125 203.851562 C 251.648438 203.851562 251.742188 203.757812 251.742188 203.640625 Z M 251.742188 203.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.726562 201.132812 C 252.726562 201.015625 252.632812 200.921875 252.515625 200.921875 C 252.398438 200.921875 252.304688 201.015625 252.304688 201.132812 C 252.304688 201.25 252.398438 201.34375 252.515625 201.34375 C 252.632812 201.34375 252.726562 201.25 252.726562 201.132812 Z M 252.726562 201.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.617188 200.667969 C 255.617188 200.550781 255.523438 200.457031 255.40625 200.457031 C 255.289062 200.457031 255.195312 200.550781 255.195312 200.667969 C 255.195312 200.785156 255.289062 200.878906 255.40625 200.878906 C 255.523438 200.878906 255.617188 200.785156 255.617188 200.667969 Z M 255.617188 200.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.714844 202.140625 C 255.714844 202.023438 255.621094 201.929688 255.503906 201.929688 C 255.386719 201.929688 255.292969 202.023438 255.292969 202.140625 C 255.292969 202.257812 255.386719 202.351562 255.503906 202.351562 C 255.621094 202.351562 255.714844 202.257812 255.714844 202.140625 Z M 255.714844 202.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.375 200.671875 C 254.375 200.554688 254.28125 200.460938 254.164062 200.460938 C 254.046875 200.460938 253.953125 200.554688 253.953125 200.671875 C 253.953125 200.789062 254.046875 200.882812 254.164062 200.882812 C 254.28125 200.882812 254.375 200.789062 254.375 200.671875 Z M 254.375 200.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.730469 196.96875 C 256.730469 196.851562 256.636719 196.757812 256.519531 196.757812 C 256.402344 196.757812 256.308594 196.851562 256.308594 196.96875 C 256.308594 197.085938 256.402344 197.179688 256.519531 197.179688 C 256.636719 197.179688 256.730469 197.085938 256.730469 196.96875 Z M 256.730469 196.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.554688 197.21875 C 257.554688 197.101562 257.460938 197.007812 257.34375 197.007812 C 257.226562 197.007812 257.132812 197.101562 257.132812 197.21875 C 257.132812 197.335938 257.226562 197.429688 257.34375 197.429688 C 257.460938 197.429688 257.554688 197.335938 257.554688 197.21875 Z M 257.554688 197.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.433594 196.785156 C 258.433594 196.667969 258.339844 196.574219 258.222656 196.574219 C 258.105469 196.574219 258.011719 196.667969 258.011719 196.785156 C 258.011719 196.902344 258.105469 196.996094 258.222656 196.996094 C 258.339844 196.996094 258.433594 196.902344 258.433594 196.785156 Z M 258.433594 196.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.800781 196.417969 C 258.800781 196.300781 258.707031 196.207031 258.589844 196.207031 C 258.472656 196.207031 258.378906 196.300781 258.378906 196.417969 C 258.378906 196.535156 258.472656 196.628906 258.589844 196.628906 C 258.707031 196.628906 258.800781 196.535156 258.800781 196.417969 Z M 258.800781 196.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.230469 194.070312 C 257.230469 193.953125 257.136719 193.859375 257.019531 193.859375 C 256.902344 193.859375 256.808594 193.953125 256.808594 194.070312 C 256.808594 194.1875 256.902344 194.28125 257.019531 194.28125 C 257.136719 194.28125 257.230469 194.1875 257.230469 194.070312 Z M 257.230469 194.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.433594 192.738281 C 256.433594 192.621094 256.339844 192.527344 256.222656 192.527344 C 256.105469 192.527344 256.011719 192.621094 256.011719 192.738281 C 256.011719 192.855469 256.105469 192.949219 256.222656 192.949219 C 256.339844 192.949219 256.433594 192.855469 256.433594 192.738281 Z M 256.433594 192.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.398438 195.402344 C 251.398438 195.285156 251.304688 195.191406 251.1875 195.191406 C 251.070312 195.191406 250.976562 195.285156 250.976562 195.402344 C 250.976562 195.519531 251.070312 195.613281 251.1875 195.613281 C 251.304688 195.613281 251.398438 195.519531 251.398438 195.402344 Z M 251.398438 195.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.921875 195.601562 C 252.921875 195.484375 252.828125 195.390625 252.710938 195.390625 C 252.59375 195.390625 252.5 195.484375 252.5 195.601562 C 252.5 195.71875 252.59375 195.8125 252.710938 195.8125 C 252.828125 195.8125 252.921875 195.71875 252.921875 195.601562 Z M 252.921875 195.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.351562 192.59375 C 254.351562 192.476562 254.257812 192.382812 254.140625 192.382812 C 254.023438 192.382812 253.929688 192.476562 253.929688 192.59375 C 253.929688 192.710938 254.023438 192.804688 254.140625 192.804688 C 254.257812 192.804688 254.351562 192.710938 254.351562 192.59375 Z M 254.351562 192.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.546875 193.816406 C 253.546875 193.699219 253.453125 193.605469 253.335938 193.605469 C 253.21875 193.605469 253.125 193.699219 253.125 193.816406 C 253.125 193.933594 253.21875 194.027344 253.335938 194.027344 C 253.453125 194.027344 253.546875 193.933594 253.546875 193.816406 Z M 253.546875 193.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.5625 192.722656 C 252.5625 192.605469 252.46875 192.511719 252.351562 192.511719 C 252.234375 192.511719 252.140625 192.605469 252.140625 192.722656 C 252.140625 192.839844 252.234375 192.933594 252.351562 192.933594 C 252.46875 192.933594 252.5625 192.839844 252.5625 192.722656 Z M 252.5625 192.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.457031 194.238281 C 249.457031 194.121094 249.363281 194.027344 249.246094 194.027344 C 249.128906 194.027344 249.035156 194.121094 249.035156 194.238281 C 249.035156 194.355469 249.128906 194.449219 249.246094 194.449219 C 249.363281 194.449219 249.457031 194.355469 249.457031 194.238281 Z M 249.457031 194.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.722656 194.480469 C 250.722656 194.363281 250.628906 194.269531 250.511719 194.269531 C 250.394531 194.269531 250.300781 194.363281 250.300781 194.480469 C 250.300781 194.597656 250.394531 194.691406 250.511719 194.691406 C 250.628906 194.691406 250.722656 194.597656 250.722656 194.480469 Z M 250.722656 194.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.789062 197.132812 C 253.789062 197.015625 253.695312 196.921875 253.578125 196.921875 C 253.460938 196.921875 253.367188 197.015625 253.367188 197.132812 C 253.367188 197.25 253.460938 197.34375 253.578125 197.34375 C 253.695312 197.34375 253.789062 197.25 253.789062 197.132812 Z M 253.789062 197.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.484375 192.964844 C 250.484375 192.847656 250.390625 192.753906 250.273438 192.753906 C 250.15625 192.753906 250.0625 192.847656 250.0625 192.964844 C 250.0625 193.082031 250.15625 193.175781 250.273438 193.175781 C 250.390625 193.175781 250.484375 193.082031 250.484375 192.964844 Z M 250.484375 192.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.164062 191.875 C 247.164062 191.757812 247.070312 191.664062 246.953125 191.664062 C 246.835938 191.664062 246.742188 191.757812 246.742188 191.875 C 246.742188 191.992188 246.835938 192.085938 246.953125 192.085938 C 247.070312 192.085938 247.164062 191.992188 247.164062 191.875 Z M 247.164062 191.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.265625 191.378906 C 248.265625 191.261719 248.171875 191.167969 248.054688 191.167969 C 247.9375 191.167969 247.84375 191.261719 247.84375 191.378906 C 247.84375 191.496094 247.9375 191.589844 248.054688 191.589844 C 248.171875 191.589844 248.265625 191.496094 248.265625 191.378906 Z M 248.265625 191.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.859375 193.445312 C 248.859375 193.328125 248.765625 193.234375 248.648438 193.234375 C 248.53125 193.234375 248.4375 193.328125 248.4375 193.445312 C 248.4375 193.5625 248.53125 193.65625 248.648438 193.65625 C 248.765625 193.65625 248.859375 193.5625 248.859375 193.445312 Z M 248.859375 193.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.429688 192.3125 C 247.429688 192.195312 247.335938 192.101562 247.21875 192.101562 C 247.101562 192.101562 247.007812 192.195312 247.007812 192.3125 C 247.007812 192.429688 247.101562 192.523438 247.21875 192.523438 C 247.335938 192.523438 247.429688 192.429688 247.429688 192.3125 Z M 247.429688 192.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.039062 190.257812 C 250.039062 190.140625 249.945312 190.046875 249.828125 190.046875 C 249.710938 190.046875 249.617188 190.140625 249.617188 190.257812 C 249.617188 190.375 249.710938 190.46875 249.828125 190.46875 C 249.945312 190.46875 250.039062 190.375 250.039062 190.257812 Z M 250.039062 190.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.894531 190.445312 C 246.894531 190.328125 246.800781 190.234375 246.683594 190.234375 C 246.566406 190.234375 246.472656 190.328125 246.472656 190.445312 C 246.472656 190.5625 246.566406 190.65625 246.683594 190.65625 C 246.800781 190.65625 246.894531 190.5625 246.894531 190.445312 Z M 246.894531 190.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.183594 190.667969 C 248.183594 190.550781 248.089844 190.457031 247.972656 190.457031 C 247.855469 190.457031 247.761719 190.550781 247.761719 190.667969 C 247.761719 190.785156 247.855469 190.878906 247.972656 190.878906 C 248.089844 190.878906 248.183594 190.785156 248.183594 190.667969 Z M 248.183594 190.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.050781 189.128906 C 250.050781 189.011719 249.957031 188.917969 249.839844 188.917969 C 249.722656 188.917969 249.628906 189.011719 249.628906 189.128906 C 249.628906 189.246094 249.722656 189.339844 249.839844 189.339844 C 249.957031 189.339844 250.050781 189.246094 250.050781 189.128906 Z M 250.050781 189.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.753906 190.328125 C 253.753906 190.210938 253.660156 190.117188 253.542969 190.117188 C 253.425781 190.117188 253.332031 190.210938 253.332031 190.328125 C 253.332031 190.445312 253.425781 190.539062 253.542969 190.539062 C 253.660156 190.539062 253.753906 190.445312 253.753906 190.328125 Z M 253.753906 190.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.171875 192.015625 C 250.171875 191.898438 250.078125 191.804688 249.960938 191.804688 C 249.84375 191.804688 249.75 191.898438 249.75 192.015625 C 249.75 192.132812 249.84375 192.226562 249.960938 192.226562 C 250.078125 192.226562 250.171875 192.132812 250.171875 192.015625 Z M 250.171875 192.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.183594 187.722656 C 251.183594 187.605469 251.089844 187.511719 250.972656 187.511719 C 250.855469 187.511719 250.761719 187.605469 250.761719 187.722656 C 250.761719 187.839844 250.855469 187.933594 250.972656 187.933594 C 251.089844 187.933594 251.183594 187.839844 251.183594 187.722656 Z M 251.183594 187.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.140625 187.40625 C 252.140625 187.289062 252.046875 187.195312 251.929688 187.195312 C 251.8125 187.195312 251.71875 187.289062 251.71875 187.40625 C 251.71875 187.523438 251.8125 187.617188 251.929688 187.617188 C 252.046875 187.617188 252.140625 187.523438 252.140625 187.40625 Z M 252.140625 187.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.277344 189.640625 C 253.277344 189.523438 253.183594 189.429688 253.066406 189.429688 C 252.949219 189.429688 252.855469 189.523438 252.855469 189.640625 C 252.855469 189.757812 252.949219 189.851562 253.066406 189.851562 C 253.183594 189.851562 253.277344 189.757812 253.277344 189.640625 Z M 253.277344 189.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.566406 185.816406 C 251.566406 185.699219 251.472656 185.605469 251.355469 185.605469 C 251.238281 185.605469 251.144531 185.699219 251.144531 185.816406 C 251.144531 185.933594 251.238281 186.027344 251.355469 186.027344 C 251.472656 186.027344 251.566406 185.933594 251.566406 185.816406 Z M 251.566406 185.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.171875 184.574219 C 248.171875 184.457031 248.078125 184.363281 247.960938 184.363281 C 247.84375 184.363281 247.75 184.457031 247.75 184.574219 C 247.75 184.691406 247.84375 184.785156 247.960938 184.785156 C 248.078125 184.785156 248.171875 184.691406 248.171875 184.574219 Z M 248.171875 184.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.382812 185.492188 C 245.382812 185.375 245.289062 185.28125 245.171875 185.28125 C 245.054688 185.28125 244.960938 185.375 244.960938 185.492188 C 244.960938 185.609375 245.054688 185.703125 245.171875 185.703125 C 245.289062 185.703125 245.382812 185.609375 245.382812 185.492188 Z M 245.382812 185.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.796875 184.8125 C 247.796875 184.695312 247.703125 184.601562 247.585938 184.601562 C 247.46875 184.601562 247.375 184.695312 247.375 184.8125 C 247.375 184.929688 247.46875 185.023438 247.585938 185.023438 C 247.703125 185.023438 247.796875 184.929688 247.796875 184.8125 Z M 247.796875 184.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.816406 184.179688 C 249.816406 184.0625 249.722656 183.96875 249.605469 183.96875 C 249.488281 183.96875 249.394531 184.0625 249.394531 184.179688 C 249.394531 184.296875 249.488281 184.390625 249.605469 184.390625 C 249.722656 184.390625 249.816406 184.296875 249.816406 184.179688 Z M 249.816406 184.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.4375 187.699219 C 250.4375 187.582031 250.34375 187.488281 250.226562 187.488281 C 250.109375 187.488281 250.015625 187.582031 250.015625 187.699219 C 250.015625 187.816406 250.109375 187.910156 250.226562 187.910156 C 250.34375 187.910156 250.4375 187.816406 250.4375 187.699219 Z M 250.4375 187.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.871094 185.113281 C 250.871094 184.996094 250.777344 184.902344 250.660156 184.902344 C 250.542969 184.902344 250.449219 184.996094 250.449219 185.113281 C 250.449219 185.230469 250.542969 185.324219 250.660156 185.324219 C 250.777344 185.324219 250.871094 185.230469 250.871094 185.113281 Z M 250.871094 185.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.910156 184.371094 C 249.910156 184.253906 249.816406 184.160156 249.699219 184.160156 C 249.582031 184.160156 249.488281 184.253906 249.488281 184.371094 C 249.488281 184.488281 249.582031 184.582031 249.699219 184.582031 C 249.816406 184.582031 249.910156 184.488281 249.910156 184.371094 Z M 249.910156 184.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.441406 183.203125 C 251.441406 183.085938 251.347656 182.992188 251.230469 182.992188 C 251.113281 182.992188 251.019531 183.085938 251.019531 183.203125 C 251.019531 183.320312 251.113281 183.414062 251.230469 183.414062 C 251.347656 183.414062 251.441406 183.320312 251.441406 183.203125 Z M 251.441406 183.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.078125 184.082031 C 252.078125 183.964844 251.984375 183.871094 251.867188 183.871094 C 251.75 183.871094 251.65625 183.964844 251.65625 184.082031 C 251.65625 184.199219 251.75 184.292969 251.867188 184.292969 C 251.984375 184.292969 252.078125 184.199219 252.078125 184.082031 Z M 252.078125 184.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.367188 183.8125 C 253.367188 183.695312 253.273438 183.601562 253.15625 183.601562 C 253.039062 183.601562 252.945312 183.695312 252.945312 183.8125 C 252.945312 183.929688 253.039062 184.023438 253.15625 184.023438 C 253.273438 184.023438 253.367188 183.929688 253.367188 183.8125 Z M 253.367188 183.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.382812 180.242188 C 257.382812 180.125 257.289062 180.03125 257.171875 180.03125 C 257.054688 180.03125 256.960938 180.125 256.960938 180.242188 C 256.960938 180.359375 257.054688 180.453125 257.171875 180.453125 C 257.289062 180.453125 257.382812 180.359375 257.382812 180.242188 Z M 257.382812 180.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.617188 180.558594 C 258.617188 180.441406 258.523438 180.347656 258.40625 180.347656 C 258.289062 180.347656 258.195312 180.441406 258.195312 180.558594 C 258.195312 180.675781 258.289062 180.769531 258.40625 180.769531 C 258.523438 180.769531 258.617188 180.675781 258.617188 180.558594 Z M 258.617188 180.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.660156 178.429688 C 258.660156 178.3125 258.566406 178.21875 258.449219 178.21875 C 258.332031 178.21875 258.238281 178.3125 258.238281 178.429688 C 258.238281 178.546875 258.332031 178.640625 258.449219 178.640625 C 258.566406 178.640625 258.660156 178.546875 258.660156 178.429688 Z M 258.660156 178.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.78125 181.332031 C 258.78125 181.214844 258.6875 181.121094 258.570312 181.121094 C 258.453125 181.121094 258.359375 181.214844 258.359375 181.332031 C 258.359375 181.449219 258.453125 181.542969 258.570312 181.542969 C 258.6875 181.542969 258.78125 181.449219 258.78125 181.332031 Z M 258.78125 181.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.804688 180.722656 C 259.804688 180.605469 259.710938 180.511719 259.59375 180.511719 C 259.476562 180.511719 259.382812 180.605469 259.382812 180.722656 C 259.382812 180.839844 259.476562 180.933594 259.59375 180.933594 C 259.710938 180.933594 259.804688 180.839844 259.804688 180.722656 Z M 259.804688 180.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.910156 179.207031 C 256.910156 179.089844 256.816406 178.996094 256.699219 178.996094 C 256.582031 178.996094 256.488281 179.089844 256.488281 179.207031 C 256.488281 179.324219 256.582031 179.417969 256.699219 179.417969 C 256.816406 179.417969 256.910156 179.324219 256.910156 179.207031 Z M 256.910156 179.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.019531 177.929688 C 259.019531 177.8125 258.925781 177.71875 258.808594 177.71875 C 258.691406 177.71875 258.597656 177.8125 258.597656 177.929688 C 258.597656 178.046875 258.691406 178.140625 258.808594 178.140625 C 258.925781 178.140625 259.019531 178.046875 259.019531 177.929688 Z M 259.019531 177.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.152344 176.191406 C 259.152344 176.074219 259.058594 175.980469 258.941406 175.980469 C 258.824219 175.980469 258.730469 176.074219 258.730469 176.191406 C 258.730469 176.308594 258.824219 176.402344 258.941406 176.402344 C 259.058594 176.402344 259.152344 176.308594 259.152344 176.191406 Z M 259.152344 176.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.917969 175.6875 C 259.917969 175.570312 259.824219 175.476562 259.707031 175.476562 C 259.589844 175.476562 259.496094 175.570312 259.496094 175.6875 C 259.496094 175.804688 259.589844 175.898438 259.707031 175.898438 C 259.824219 175.898438 259.917969 175.804688 259.917969 175.6875 Z M 259.917969 175.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.296875 178.738281 C 259.296875 178.621094 259.203125 178.527344 259.085938 178.527344 C 258.96875 178.527344 258.875 178.621094 258.875 178.738281 C 258.875 178.855469 258.96875 178.949219 259.085938 178.949219 C 259.203125 178.949219 259.296875 178.855469 259.296875 178.738281 Z M 259.296875 178.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.90625 183.359375 C 260.90625 183.242188 260.8125 183.148438 260.695312 183.148438 C 260.578125 183.148438 260.484375 183.242188 260.484375 183.359375 C 260.484375 183.476562 260.578125 183.570312 260.695312 183.570312 C 260.8125 183.570312 260.90625 183.476562 260.90625 183.359375 Z M 260.90625 183.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.449219 182.589844 C 260.449219 182.472656 260.355469 182.378906 260.238281 182.378906 C 260.121094 182.378906 260.027344 182.472656 260.027344 182.589844 C 260.027344 182.707031 260.121094 182.800781 260.238281 182.800781 C 260.355469 182.800781 260.449219 182.707031 260.449219 182.589844 Z M 260.449219 182.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.03125 184.96875 C 262.03125 184.851562 261.9375 184.757812 261.820312 184.757812 C 261.703125 184.757812 261.609375 184.851562 261.609375 184.96875 C 261.609375 185.085938 261.703125 185.179688 261.820312 185.179688 C 261.9375 185.179688 262.03125 185.085938 262.03125 184.96875 Z M 262.03125 184.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.457031 183.765625 C 260.457031 183.648438 260.363281 183.554688 260.246094 183.554688 C 260.128906 183.554688 260.035156 183.648438 260.035156 183.765625 C 260.035156 183.882812 260.128906 183.976562 260.246094 183.976562 C 260.363281 183.976562 260.457031 183.882812 260.457031 183.765625 Z M 260.457031 183.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.546875 185.378906 C 257.546875 185.261719 257.453125 185.167969 257.335938 185.167969 C 257.21875 185.167969 257.125 185.261719 257.125 185.378906 C 257.125 185.496094 257.21875 185.589844 257.335938 185.589844 C 257.453125 185.589844 257.546875 185.496094 257.546875 185.378906 Z M 257.546875 185.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.761719 182.050781 C 255.761719 181.933594 255.667969 181.839844 255.550781 181.839844 C 255.433594 181.839844 255.339844 181.933594 255.339844 182.050781 C 255.339844 182.167969 255.433594 182.261719 255.550781 182.261719 C 255.667969 182.261719 255.761719 182.167969 255.761719 182.050781 Z M 255.761719 182.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.292969 179.742188 C 257.292969 179.625 257.199219 179.53125 257.082031 179.53125 C 256.964844 179.53125 256.871094 179.625 256.871094 179.742188 C 256.871094 179.859375 256.964844 179.953125 257.082031 179.953125 C 257.199219 179.953125 257.292969 179.859375 257.292969 179.742188 Z M 257.292969 179.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.3125 177.910156 C 260.3125 177.792969 260.21875 177.699219 260.101562 177.699219 C 259.984375 177.699219 259.890625 177.792969 259.890625 177.910156 C 259.890625 178.027344 259.984375 178.121094 260.101562 178.121094 C 260.21875 178.121094 260.3125 178.027344 260.3125 177.910156 Z M 260.3125 177.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.914062 178.792969 C 259.914062 178.675781 259.820312 178.582031 259.703125 178.582031 C 259.585938 178.582031 259.492188 178.675781 259.492188 178.792969 C 259.492188 178.910156 259.585938 179.003906 259.703125 179.003906 C 259.820312 179.003906 259.914062 178.910156 259.914062 178.792969 Z M 259.914062 178.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.183594 176.339844 C 260.183594 176.222656 260.089844 176.128906 259.972656 176.128906 C 259.855469 176.128906 259.761719 176.222656 259.761719 176.339844 C 259.761719 176.457031 259.855469 176.550781 259.972656 176.550781 C 260.089844 176.550781 260.183594 176.457031 260.183594 176.339844 Z M 260.183594 176.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.617188 174.191406 C 260.617188 174.074219 260.523438 173.980469 260.40625 173.980469 C 260.289062 173.980469 260.195312 174.074219 260.195312 174.191406 C 260.195312 174.308594 260.289062 174.402344 260.40625 174.402344 C 260.523438 174.402344 260.617188 174.308594 260.617188 174.191406 Z M 260.617188 174.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.703125 177.773438 C 262.703125 177.65625 262.609375 177.5625 262.492188 177.5625 C 262.375 177.5625 262.28125 177.65625 262.28125 177.773438 C 262.28125 177.890625 262.375 177.984375 262.492188 177.984375 C 262.609375 177.984375 262.703125 177.890625 262.703125 177.773438 Z M 262.703125 177.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.722656 178.609375 C 263.722656 178.492188 263.628906 178.398438 263.511719 178.398438 C 263.394531 178.398438 263.300781 178.492188 263.300781 178.609375 C 263.300781 178.726562 263.394531 178.820312 263.511719 178.820312 C 263.628906 178.820312 263.722656 178.726562 263.722656 178.609375 Z M 263.722656 178.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.976562 178.613281 C 262.976562 178.496094 262.882812 178.402344 262.765625 178.402344 C 262.648438 178.402344 262.554688 178.496094 262.554688 178.613281 C 262.554688 178.730469 262.648438 178.824219 262.765625 178.824219 C 262.882812 178.824219 262.976562 178.730469 262.976562 178.613281 Z M 262.976562 178.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.5625 177.757812 C 264.5625 177.640625 264.46875 177.546875 264.351562 177.546875 C 264.234375 177.546875 264.140625 177.640625 264.140625 177.757812 C 264.140625 177.875 264.234375 177.96875 264.351562 177.96875 C 264.46875 177.96875 264.5625 177.875 264.5625 177.757812 Z M 264.5625 177.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.175781 177.121094 C 260.175781 177.003906 260.082031 176.910156 259.964844 176.910156 C 259.847656 176.910156 259.753906 177.003906 259.753906 177.121094 C 259.753906 177.238281 259.847656 177.332031 259.964844 177.332031 C 260.082031 177.332031 260.175781 177.238281 260.175781 177.121094 Z M 260.175781 177.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.84375 178.542969 C 260.84375 178.425781 260.75 178.332031 260.632812 178.332031 C 260.515625 178.332031 260.421875 178.425781 260.421875 178.542969 C 260.421875 178.660156 260.515625 178.753906 260.632812 178.753906 C 260.75 178.753906 260.84375 178.660156 260.84375 178.542969 Z M 260.84375 178.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.445312 179.972656 C 262.445312 179.855469 262.351562 179.761719 262.234375 179.761719 C 262.117188 179.761719 262.023438 179.855469 262.023438 179.972656 C 262.023438 180.089844 262.117188 180.183594 262.234375 180.183594 C 262.351562 180.183594 262.445312 180.089844 262.445312 179.972656 Z M 262.445312 179.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.394531 182.304688 C 263.394531 182.1875 263.300781 182.09375 263.183594 182.09375 C 263.066406 182.09375 262.972656 182.1875 262.972656 182.304688 C 262.972656 182.421875 263.066406 182.515625 263.183594 182.515625 C 263.300781 182.515625 263.394531 182.421875 263.394531 182.304688 Z M 263.394531 182.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.660156 180.296875 C 261.660156 180.179688 261.566406 180.085938 261.449219 180.085938 C 261.332031 180.085938 261.238281 180.179688 261.238281 180.296875 C 261.238281 180.414062 261.332031 180.507812 261.449219 180.507812 C 261.566406 180.507812 261.660156 180.414062 261.660156 180.296875 Z M 261.660156 180.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.085938 180.320312 C 262.085938 180.203125 261.992188 180.109375 261.875 180.109375 C 261.757812 180.109375 261.664062 180.203125 261.664062 180.320312 C 261.664062 180.4375 261.757812 180.53125 261.875 180.53125 C 261.992188 180.53125 262.085938 180.4375 262.085938 180.320312 Z M 262.085938 180.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.910156 179.792969 C 264.910156 179.675781 264.816406 179.582031 264.699219 179.582031 C 264.582031 179.582031 264.488281 179.675781 264.488281 179.792969 C 264.488281 179.910156 264.582031 180.003906 264.699219 180.003906 C 264.816406 180.003906 264.910156 179.910156 264.910156 179.792969 Z M 264.910156 179.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.855469 180.316406 C 267.855469 180.199219 267.761719 180.105469 267.644531 180.105469 C 267.527344 180.105469 267.433594 180.199219 267.433594 180.316406 C 267.433594 180.433594 267.527344 180.527344 267.644531 180.527344 C 267.761719 180.527344 267.855469 180.433594 267.855469 180.316406 Z M 267.855469 180.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.265625 180.4375 C 268.265625 180.320312 268.171875 180.226562 268.054688 180.226562 C 267.9375 180.226562 267.84375 180.320312 267.84375 180.4375 C 267.84375 180.554688 267.9375 180.648438 268.054688 180.648438 C 268.171875 180.648438 268.265625 180.554688 268.265625 180.4375 Z M 268.265625 180.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.816406 182.121094 C 267.816406 182.003906 267.722656 181.910156 267.605469 181.910156 C 267.488281 181.910156 267.394531 182.003906 267.394531 182.121094 C 267.394531 182.238281 267.488281 182.332031 267.605469 182.332031 C 267.722656 182.332031 267.816406 182.238281 267.816406 182.121094 Z M 267.816406 182.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.042969 181.628906 C 268.042969 181.511719 267.949219 181.417969 267.832031 181.417969 C 267.714844 181.417969 267.621094 181.511719 267.621094 181.628906 C 267.621094 181.746094 267.714844 181.839844 267.832031 181.839844 C 267.949219 181.839844 268.042969 181.746094 268.042969 181.628906 Z M 268.042969 181.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.757812 183.300781 C 268.757812 183.183594 268.664062 183.089844 268.546875 183.089844 C 268.429688 183.089844 268.335938 183.183594 268.335938 183.300781 C 268.335938 183.417969 268.429688 183.511719 268.546875 183.511719 C 268.664062 183.511719 268.757812 183.417969 268.757812 183.300781 Z M 268.757812 183.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.074219 182.546875 C 268.074219 182.429688 267.980469 182.335938 267.863281 182.335938 C 267.746094 182.335938 267.652344 182.429688 267.652344 182.546875 C 267.652344 182.664062 267.746094 182.757812 267.863281 182.757812 C 267.980469 182.757812 268.074219 182.664062 268.074219 182.546875 Z M 268.074219 182.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.171875 184.003906 C 271.171875 183.886719 271.078125 183.792969 270.960938 183.792969 C 270.84375 183.792969 270.75 183.886719 270.75 184.003906 C 270.75 184.121094 270.84375 184.214844 270.960938 184.214844 C 271.078125 184.214844 271.171875 184.121094 271.171875 184.003906 Z M 271.171875 184.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.859375 185.777344 C 272.859375 185.660156 272.765625 185.566406 272.648438 185.566406 C 272.53125 185.566406 272.4375 185.660156 272.4375 185.777344 C 272.4375 185.894531 272.53125 185.988281 272.648438 185.988281 C 272.765625 185.988281 272.859375 185.894531 272.859375 185.777344 Z M 272.859375 185.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.070312 185.71875 C 272.070312 185.601562 271.976562 185.507812 271.859375 185.507812 C 271.742188 185.507812 271.648438 185.601562 271.648438 185.71875 C 271.648438 185.835938 271.742188 185.929688 271.859375 185.929688 C 271.976562 185.929688 272.070312 185.835938 272.070312 185.71875 Z M 272.070312 185.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.636719 186.792969 C 274.636719 186.675781 274.542969 186.582031 274.425781 186.582031 C 274.308594 186.582031 274.214844 186.675781 274.214844 186.792969 C 274.214844 186.910156 274.308594 187.003906 274.425781 187.003906 C 274.542969 187.003906 274.636719 186.910156 274.636719 186.792969 Z M 274.636719 186.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.390625 192.199219 C 276.390625 192.082031 276.296875 191.988281 276.179688 191.988281 C 276.0625 191.988281 275.96875 192.082031 275.96875 192.199219 C 275.96875 192.316406 276.0625 192.410156 276.179688 192.410156 C 276.296875 192.410156 276.390625 192.316406 276.390625 192.199219 Z M 276.390625 192.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.609375 194.488281 C 277.609375 194.371094 277.515625 194.277344 277.398438 194.277344 C 277.28125 194.277344 277.1875 194.371094 277.1875 194.488281 C 277.1875 194.605469 277.28125 194.699219 277.398438 194.699219 C 277.515625 194.699219 277.609375 194.605469 277.609375 194.488281 Z M 277.609375 194.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.8125 189.6875 C 277.8125 189.570312 277.71875 189.476562 277.601562 189.476562 C 277.484375 189.476562 277.390625 189.570312 277.390625 189.6875 C 277.390625 189.804688 277.484375 189.898438 277.601562 189.898438 C 277.71875 189.898438 277.8125 189.804688 277.8125 189.6875 Z M 277.8125 189.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.007812 185.933594 C 278.007812 185.816406 277.914062 185.722656 277.796875 185.722656 C 277.679688 185.722656 277.585938 185.816406 277.585938 185.933594 C 277.585938 186.050781 277.679688 186.144531 277.796875 186.144531 C 277.914062 186.144531 278.007812 186.050781 278.007812 185.933594 Z M 278.007812 185.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.5 190.039062 C 281.5 189.921875 281.40625 189.828125 281.289062 189.828125 C 281.171875 189.828125 281.078125 189.921875 281.078125 190.039062 C 281.078125 190.15625 281.171875 190.25 281.289062 190.25 C 281.40625 190.25 281.5 190.15625 281.5 190.039062 Z M 281.5 190.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.238281 190.558594 C 284.238281 190.441406 284.144531 190.347656 284.027344 190.347656 C 283.910156 190.347656 283.816406 190.441406 283.816406 190.558594 C 283.816406 190.675781 283.910156 190.769531 284.027344 190.769531 C 284.144531 190.769531 284.238281 190.675781 284.238281 190.558594 Z M 284.238281 190.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.253906 192.929688 C 283.253906 192.8125 283.160156 192.71875 283.042969 192.71875 C 282.925781 192.71875 282.832031 192.8125 282.832031 192.929688 C 282.832031 193.046875 282.925781 193.140625 283.042969 193.140625 C 283.160156 193.140625 283.253906 193.046875 283.253906 192.929688 Z M 283.253906 192.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.078125 193.019531 C 281.078125 192.902344 280.984375 192.808594 280.867188 192.808594 C 280.75 192.808594 280.65625 192.902344 280.65625 193.019531 C 280.65625 193.136719 280.75 193.230469 280.867188 193.230469 C 280.984375 193.230469 281.078125 193.136719 281.078125 193.019531 Z M 281.078125 193.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.804688 194.253906 C 278.804688 194.136719 278.710938 194.042969 278.59375 194.042969 C 278.476562 194.042969 278.382812 194.136719 278.382812 194.253906 C 278.382812 194.371094 278.476562 194.464844 278.59375 194.464844 C 278.710938 194.464844 278.804688 194.371094 278.804688 194.253906 Z M 278.804688 194.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.273438 195.082031 C 280.273438 194.964844 280.179688 194.871094 280.0625 194.871094 C 279.945312 194.871094 279.851562 194.964844 279.851562 195.082031 C 279.851562 195.199219 279.945312 195.292969 280.0625 195.292969 C 280.179688 195.292969 280.273438 195.199219 280.273438 195.082031 Z M 280.273438 195.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.203125 193.609375 C 279.203125 193.492188 279.109375 193.398438 278.992188 193.398438 C 278.875 193.398438 278.78125 193.492188 278.78125 193.609375 C 278.78125 193.726562 278.875 193.820312 278.992188 193.820312 C 279.109375 193.820312 279.203125 193.726562 279.203125 193.609375 Z M 279.203125 193.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.859375 192.828125 C 277.859375 192.710938 277.765625 192.617188 277.648438 192.617188 C 277.53125 192.617188 277.4375 192.710938 277.4375 192.828125 C 277.4375 192.945312 277.53125 193.039062 277.648438 193.039062 C 277.765625 193.039062 277.859375 192.945312 277.859375 192.828125 Z M 277.859375 192.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.636719 191.925781 C 278.636719 191.808594 278.542969 191.714844 278.425781 191.714844 C 278.308594 191.714844 278.214844 191.808594 278.214844 191.925781 C 278.214844 192.042969 278.308594 192.136719 278.425781 192.136719 C 278.542969 192.136719 278.636719 192.042969 278.636719 191.925781 Z M 278.636719 191.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.324219 191.769531 C 279.324219 191.652344 279.230469 191.558594 279.113281 191.558594 C 278.996094 191.558594 278.902344 191.652344 278.902344 191.769531 C 278.902344 191.886719 278.996094 191.980469 279.113281 191.980469 C 279.230469 191.980469 279.324219 191.886719 279.324219 191.769531 Z M 279.324219 191.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.082031 189.761719 C 280.082031 189.644531 279.988281 189.550781 279.871094 189.550781 C 279.753906 189.550781 279.660156 189.644531 279.660156 189.761719 C 279.660156 189.878906 279.753906 189.972656 279.871094 189.972656 C 279.988281 189.972656 280.082031 189.878906 280.082031 189.761719 Z M 280.082031 189.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.421875 191.941406 C 278.421875 191.824219 278.328125 191.730469 278.210938 191.730469 C 278.09375 191.730469 278 191.824219 278 191.941406 C 278 192.058594 278.09375 192.152344 278.210938 192.152344 C 278.328125 192.152344 278.421875 192.058594 278.421875 191.941406 Z M 278.421875 191.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.972656 190.824219 C 279.972656 190.707031 279.878906 190.613281 279.761719 190.613281 C 279.644531 190.613281 279.550781 190.707031 279.550781 190.824219 C 279.550781 190.941406 279.644531 191.035156 279.761719 191.035156 C 279.878906 191.035156 279.972656 190.941406 279.972656 190.824219 Z M 279.972656 190.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.429688 190.554688 C 278.429688 190.4375 278.335938 190.34375 278.21875 190.34375 C 278.101562 190.34375 278.007812 190.4375 278.007812 190.554688 C 278.007812 190.671875 278.101562 190.765625 278.21875 190.765625 C 278.335938 190.765625 278.429688 190.671875 278.429688 190.554688 Z M 278.429688 190.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.984375 188.972656 C 279.984375 188.855469 279.890625 188.761719 279.773438 188.761719 C 279.65625 188.761719 279.5625 188.855469 279.5625 188.972656 C 279.5625 189.089844 279.65625 189.183594 279.773438 189.183594 C 279.890625 189.183594 279.984375 189.089844 279.984375 188.972656 Z M 279.984375 188.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.636719 193.417969 C 281.636719 193.300781 281.542969 193.207031 281.425781 193.207031 C 281.308594 193.207031 281.214844 193.300781 281.214844 193.417969 C 281.214844 193.535156 281.308594 193.628906 281.425781 193.628906 C 281.542969 193.628906 281.636719 193.535156 281.636719 193.417969 Z M 281.636719 193.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.132812 190.367188 C 280.132812 190.25 280.039062 190.15625 279.921875 190.15625 C 279.804688 190.15625 279.710938 190.25 279.710938 190.367188 C 279.710938 190.484375 279.804688 190.578125 279.921875 190.578125 C 280.039062 190.578125 280.132812 190.484375 280.132812 190.367188 Z M 280.132812 190.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.921875 192.335938 C 279.921875 192.21875 279.828125 192.125 279.710938 192.125 C 279.59375 192.125 279.5 192.21875 279.5 192.335938 C 279.5 192.453125 279.59375 192.546875 279.710938 192.546875 C 279.828125 192.546875 279.921875 192.453125 279.921875 192.335938 Z M 279.921875 192.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.90625 190.078125 C 274.90625 189.960938 274.8125 189.867188 274.695312 189.867188 C 274.578125 189.867188 274.484375 189.960938 274.484375 190.078125 C 274.484375 190.195312 274.578125 190.289062 274.695312 190.289062 C 274.8125 190.289062 274.90625 190.195312 274.90625 190.078125 Z M 274.90625 190.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.316406 190.625 C 274.316406 190.507812 274.222656 190.414062 274.105469 190.414062 C 273.988281 190.414062 273.894531 190.507812 273.894531 190.625 C 273.894531 190.742188 273.988281 190.835938 274.105469 190.835938 C 274.222656 190.835938 274.316406 190.742188 274.316406 190.625 Z M 274.316406 190.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.105469 191.515625 C 273.105469 191.398438 273.011719 191.304688 272.894531 191.304688 C 272.777344 191.304688 272.683594 191.398438 272.683594 191.515625 C 272.683594 191.632812 272.777344 191.726562 272.894531 191.726562 C 273.011719 191.726562 273.105469 191.632812 273.105469 191.515625 Z M 273.105469 191.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.753906 196.054688 C 272.753906 195.9375 272.660156 195.84375 272.542969 195.84375 C 272.425781 195.84375 272.332031 195.9375 272.332031 196.054688 C 272.332031 196.171875 272.425781 196.265625 272.542969 196.265625 C 272.660156 196.265625 272.753906 196.171875 272.753906 196.054688 Z M 272.753906 196.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.871094 194.816406 C 273.871094 194.699219 273.777344 194.605469 273.660156 194.605469 C 273.542969 194.605469 273.449219 194.699219 273.449219 194.816406 C 273.449219 194.933594 273.542969 195.027344 273.660156 195.027344 C 273.777344 195.027344 273.871094 194.933594 273.871094 194.816406 Z M 273.871094 194.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.488281 191.546875 C 274.488281 191.429688 274.394531 191.335938 274.277344 191.335938 C 274.160156 191.335938 274.066406 191.429688 274.066406 191.546875 C 274.066406 191.664062 274.160156 191.757812 274.277344 191.757812 C 274.394531 191.757812 274.488281 191.664062 274.488281 191.546875 Z M 274.488281 191.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.175781 188.886719 C 276.175781 188.769531 276.082031 188.675781 275.964844 188.675781 C 275.847656 188.675781 275.753906 188.769531 275.753906 188.886719 C 275.753906 189.003906 275.847656 189.097656 275.964844 189.097656 C 276.082031 189.097656 276.175781 189.003906 276.175781 188.886719 Z M 276.175781 188.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.246094 187.605469 C 276.246094 187.488281 276.152344 187.394531 276.035156 187.394531 C 275.917969 187.394531 275.824219 187.488281 275.824219 187.605469 C 275.824219 187.722656 275.917969 187.816406 276.035156 187.816406 C 276.152344 187.816406 276.246094 187.722656 276.246094 187.605469 Z M 276.246094 187.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.746094 185.90625 C 274.746094 185.789062 274.652344 185.695312 274.535156 185.695312 C 274.417969 185.695312 274.324219 185.789062 274.324219 185.90625 C 274.324219 186.023438 274.417969 186.117188 274.535156 186.117188 C 274.652344 186.117188 274.746094 186.023438 274.746094 185.90625 Z M 274.746094 185.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.347656 187.535156 C 273.347656 187.417969 273.253906 187.324219 273.136719 187.324219 C 273.019531 187.324219 272.925781 187.417969 272.925781 187.535156 C 272.925781 187.652344 273.019531 187.746094 273.136719 187.746094 C 273.253906 187.746094 273.347656 187.652344 273.347656 187.535156 Z M 273.347656 187.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.296875 187.375 C 273.296875 187.257812 273.203125 187.164062 273.085938 187.164062 C 272.96875 187.164062 272.875 187.257812 272.875 187.375 C 272.875 187.492188 272.96875 187.585938 273.085938 187.585938 C 273.203125 187.585938 273.296875 187.492188 273.296875 187.375 Z M 273.296875 187.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.839844 186.894531 C 271.839844 186.777344 271.746094 186.683594 271.628906 186.683594 C 271.511719 186.683594 271.417969 186.777344 271.417969 186.894531 C 271.417969 187.011719 271.511719 187.105469 271.628906 187.105469 C 271.746094 187.105469 271.839844 187.011719 271.839844 186.894531 Z M 271.839844 186.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.652344 186.046875 C 270.652344 185.929688 270.558594 185.835938 270.441406 185.835938 C 270.324219 185.835938 270.230469 185.929688 270.230469 186.046875 C 270.230469 186.164062 270.324219 186.257812 270.441406 186.257812 C 270.558594 186.257812 270.652344 186.164062 270.652344 186.046875 Z M 270.652344 186.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.535156 182.492188 C 269.535156 182.375 269.441406 182.28125 269.324219 182.28125 C 269.207031 182.28125 269.113281 182.375 269.113281 182.492188 C 269.113281 182.609375 269.207031 182.703125 269.324219 182.703125 C 269.441406 182.703125 269.535156 182.609375 269.535156 182.492188 Z M 269.535156 182.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.300781 187.445312 C 272.300781 187.328125 272.207031 187.234375 272.089844 187.234375 C 271.972656 187.234375 271.878906 187.328125 271.878906 187.445312 C 271.878906 187.5625 271.972656 187.65625 272.089844 187.65625 C 272.207031 187.65625 272.300781 187.5625 272.300781 187.445312 Z M 272.300781 187.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.917969 188.496094 C 271.917969 188.378906 271.824219 188.285156 271.707031 188.285156 C 271.589844 188.285156 271.496094 188.378906 271.496094 188.496094 C 271.496094 188.613281 271.589844 188.707031 271.707031 188.707031 C 271.824219 188.707031 271.917969 188.613281 271.917969 188.496094 Z M 271.917969 188.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.277344 190.058594 C 275.277344 189.941406 275.183594 189.847656 275.066406 189.847656 C 274.949219 189.847656 274.855469 189.941406 274.855469 190.058594 C 274.855469 190.175781 274.949219 190.269531 275.066406 190.269531 C 275.183594 190.269531 275.277344 190.175781 275.277344 190.058594 Z M 275.277344 190.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.214844 189.21875 C 275.214844 189.101562 275.121094 189.007812 275.003906 189.007812 C 274.886719 189.007812 274.792969 189.101562 274.792969 189.21875 C 274.792969 189.335938 274.886719 189.429688 275.003906 189.429688 C 275.121094 189.429688 275.214844 189.335938 275.214844 189.21875 Z M 275.214844 189.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.878906 189.117188 C 277.878906 189 277.785156 188.90625 277.667969 188.90625 C 277.550781 188.90625 277.457031 189 277.457031 189.117188 C 277.457031 189.234375 277.550781 189.328125 277.667969 189.328125 C 277.785156 189.328125 277.878906 189.234375 277.878906 189.117188 Z M 277.878906 189.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.570312 192.144531 C 276.570312 192.027344 276.476562 191.933594 276.359375 191.933594 C 276.242188 191.933594 276.148438 192.027344 276.148438 192.144531 C 276.148438 192.261719 276.242188 192.355469 276.359375 192.355469 C 276.476562 192.355469 276.570312 192.261719 276.570312 192.144531 Z M 276.570312 192.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.265625 189.726562 C 278.265625 189.609375 278.171875 189.515625 278.054688 189.515625 C 277.9375 189.515625 277.84375 189.609375 277.84375 189.726562 C 277.84375 189.84375 277.9375 189.9375 278.054688 189.9375 C 278.171875 189.9375 278.265625 189.84375 278.265625 189.726562 Z M 278.265625 189.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.597656 191.875 C 279.597656 191.757812 279.503906 191.664062 279.386719 191.664062 C 279.269531 191.664062 279.175781 191.757812 279.175781 191.875 C 279.175781 191.992188 279.269531 192.085938 279.386719 192.085938 C 279.503906 192.085938 279.597656 191.992188 279.597656 191.875 Z M 279.597656 191.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.152344 192.632812 C 284.152344 192.515625 284.058594 192.421875 283.941406 192.421875 C 283.824219 192.421875 283.730469 192.515625 283.730469 192.632812 C 283.730469 192.75 283.824219 192.84375 283.941406 192.84375 C 284.058594 192.84375 284.152344 192.75 284.152344 192.632812 Z M 284.152344 192.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.707031 191.335938 C 282.707031 191.21875 282.613281 191.125 282.496094 191.125 C 282.378906 191.125 282.285156 191.21875 282.285156 191.335938 C 282.285156 191.453125 282.378906 191.546875 282.496094 191.546875 C 282.613281 191.546875 282.707031 191.453125 282.707031 191.335938 Z M 282.707031 191.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.253906 189.96875 C 285.253906 189.851562 285.160156 189.757812 285.042969 189.757812 C 284.925781 189.757812 284.832031 189.851562 284.832031 189.96875 C 284.832031 190.085938 284.925781 190.179688 285.042969 190.179688 C 285.160156 190.179688 285.253906 190.085938 285.253906 189.96875 Z M 285.253906 189.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.898438 184.054688 C 283.898438 183.9375 283.804688 183.84375 283.6875 183.84375 C 283.570312 183.84375 283.476562 183.9375 283.476562 184.054688 C 283.476562 184.171875 283.570312 184.265625 283.6875 184.265625 C 283.804688 184.265625 283.898438 184.171875 283.898438 184.054688 Z M 283.898438 184.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.277344 185.414062 C 285.277344 185.296875 285.183594 185.203125 285.066406 185.203125 C 284.949219 185.203125 284.855469 185.296875 284.855469 185.414062 C 284.855469 185.53125 284.949219 185.625 285.066406 185.625 C 285.183594 185.625 285.277344 185.53125 285.277344 185.414062 Z M 285.277344 185.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.546875 184.472656 C 287.546875 184.355469 287.453125 184.261719 287.335938 184.261719 C 287.21875 184.261719 287.125 184.355469 287.125 184.472656 C 287.125 184.589844 287.21875 184.683594 287.335938 184.683594 C 287.453125 184.683594 287.546875 184.589844 287.546875 184.472656 Z M 287.546875 184.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.601562 182.414062 C 286.601562 182.296875 286.507812 182.203125 286.390625 182.203125 C 286.273438 182.203125 286.179688 182.296875 286.179688 182.414062 C 286.179688 182.53125 286.273438 182.625 286.390625 182.625 C 286.507812 182.625 286.601562 182.53125 286.601562 182.414062 Z M 286.601562 182.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.28125 183.398438 C 286.28125 183.28125 286.1875 183.1875 286.070312 183.1875 C 285.953125 183.1875 285.859375 183.28125 285.859375 183.398438 C 285.859375 183.515625 285.953125 183.609375 286.070312 183.609375 C 286.1875 183.609375 286.28125 183.515625 286.28125 183.398438 Z M 286.28125 183.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.65625 182.453125 C 287.65625 182.335938 287.5625 182.242188 287.445312 182.242188 C 287.328125 182.242188 287.234375 182.335938 287.234375 182.453125 C 287.234375 182.570312 287.328125 182.664062 287.445312 182.664062 C 287.5625 182.664062 287.65625 182.570312 287.65625 182.453125 Z M 287.65625 182.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.828125 180.707031 C 285.828125 180.589844 285.734375 180.496094 285.617188 180.496094 C 285.5 180.496094 285.40625 180.589844 285.40625 180.707031 C 285.40625 180.824219 285.5 180.917969 285.617188 180.917969 C 285.734375 180.917969 285.828125 180.824219 285.828125 180.707031 Z M 285.828125 180.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.296875 177.851562 C 284.296875 177.734375 284.203125 177.640625 284.085938 177.640625 C 283.96875 177.640625 283.875 177.734375 283.875 177.851562 C 283.875 177.96875 283.96875 178.0625 284.085938 178.0625 C 284.203125 178.0625 284.296875 177.96875 284.296875 177.851562 Z M 284.296875 177.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.699219 178.109375 C 284.699219 177.992188 284.605469 177.898438 284.488281 177.898438 C 284.371094 177.898438 284.277344 177.992188 284.277344 178.109375 C 284.277344 178.226562 284.371094 178.320312 284.488281 178.320312 C 284.605469 178.320312 284.699219 178.226562 284.699219 178.109375 Z M 284.699219 178.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.925781 176.761719 C 284.925781 176.644531 284.832031 176.550781 284.714844 176.550781 C 284.597656 176.550781 284.503906 176.644531 284.503906 176.761719 C 284.503906 176.878906 284.597656 176.972656 284.714844 176.972656 C 284.832031 176.972656 284.925781 176.878906 284.925781 176.761719 Z M 284.925781 176.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.476562 180.261719 C 285.476562 180.144531 285.382812 180.050781 285.265625 180.050781 C 285.148438 180.050781 285.054688 180.144531 285.054688 180.261719 C 285.054688 180.378906 285.148438 180.472656 285.265625 180.472656 C 285.382812 180.472656 285.476562 180.378906 285.476562 180.261719 Z M 285.476562 180.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.472656 185.785156 C 284.472656 185.667969 284.378906 185.574219 284.261719 185.574219 C 284.144531 185.574219 284.050781 185.667969 284.050781 185.785156 C 284.050781 185.902344 284.144531 185.996094 284.261719 185.996094 C 284.378906 185.996094 284.472656 185.902344 284.472656 185.785156 Z M 284.472656 185.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.019531 183.601562 C 287.019531 183.484375 286.925781 183.390625 286.808594 183.390625 C 286.691406 183.390625 286.597656 183.484375 286.597656 183.601562 C 286.597656 183.71875 286.691406 183.8125 286.808594 183.8125 C 286.925781 183.8125 287.019531 183.71875 287.019531 183.601562 Z M 287.019531 183.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.160156 181.351562 C 288.160156 181.234375 288.066406 181.140625 287.949219 181.140625 C 287.832031 181.140625 287.738281 181.234375 287.738281 181.351562 C 287.738281 181.46875 287.832031 181.5625 287.949219 181.5625 C 288.066406 181.5625 288.160156 181.46875 288.160156 181.351562 Z M 288.160156 181.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.261719 184.730469 C 287.261719 184.613281 287.167969 184.519531 287.050781 184.519531 C 286.933594 184.519531 286.839844 184.613281 286.839844 184.730469 C 286.839844 184.847656 286.933594 184.941406 287.050781 184.941406 C 287.167969 184.941406 287.261719 184.847656 287.261719 184.730469 Z M 287.261719 184.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.230469 184.4375 C 287.230469 184.320312 287.136719 184.226562 287.019531 184.226562 C 286.902344 184.226562 286.808594 184.320312 286.808594 184.4375 C 286.808594 184.554688 286.902344 184.648438 287.019531 184.648438 C 287.136719 184.648438 287.230469 184.554688 287.230469 184.4375 Z M 287.230469 184.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.542969 182.699219 C 286.542969 182.582031 286.449219 182.488281 286.332031 182.488281 C 286.214844 182.488281 286.121094 182.582031 286.121094 182.699219 C 286.121094 182.816406 286.214844 182.910156 286.332031 182.910156 C 286.449219 182.910156 286.542969 182.816406 286.542969 182.699219 Z M 286.542969 182.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.757812 183.957031 C 285.757812 183.839844 285.664062 183.746094 285.546875 183.746094 C 285.429688 183.746094 285.335938 183.839844 285.335938 183.957031 C 285.335938 184.074219 285.429688 184.167969 285.546875 184.167969 C 285.664062 184.167969 285.757812 184.074219 285.757812 183.957031 Z M 285.757812 183.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.484375 186.378906 C 285.484375 186.261719 285.390625 186.167969 285.273438 186.167969 C 285.15625 186.167969 285.0625 186.261719 285.0625 186.378906 C 285.0625 186.496094 285.15625 186.589844 285.273438 186.589844 C 285.390625 186.589844 285.484375 186.496094 285.484375 186.378906 Z M 285.484375 186.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.757812 183.28125 C 283.757812 183.164062 283.664062 183.070312 283.546875 183.070312 C 283.429688 183.070312 283.335938 183.164062 283.335938 183.28125 C 283.335938 183.398438 283.429688 183.492188 283.546875 183.492188 C 283.664062 183.492188 283.757812 183.398438 283.757812 183.28125 Z M 283.757812 183.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.824219 183.269531 C 284.824219 183.152344 284.730469 183.058594 284.613281 183.058594 C 284.496094 183.058594 284.402344 183.152344 284.402344 183.269531 C 284.402344 183.386719 284.496094 183.480469 284.613281 183.480469 C 284.730469 183.480469 284.824219 183.386719 284.824219 183.269531 Z M 284.824219 183.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.871094 183.835938 C 287.871094 183.71875 287.777344 183.625 287.660156 183.625 C 287.542969 183.625 287.449219 183.71875 287.449219 183.835938 C 287.449219 183.953125 287.542969 184.046875 287.660156 184.046875 C 287.777344 184.046875 287.871094 183.953125 287.871094 183.835938 Z M 287.871094 183.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.460938 179.300781 C 289.460938 179.183594 289.367188 179.089844 289.25 179.089844 C 289.132812 179.089844 289.039062 179.183594 289.039062 179.300781 C 289.039062 179.417969 289.132812 179.511719 289.25 179.511719 C 289.367188 179.511719 289.460938 179.417969 289.460938 179.300781 Z M 289.460938 179.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.007812 181.921875 C 290.007812 181.804688 289.914062 181.710938 289.796875 181.710938 C 289.679688 181.710938 289.585938 181.804688 289.585938 181.921875 C 289.585938 182.039062 289.679688 182.132812 289.796875 182.132812 C 289.914062 182.132812 290.007812 182.039062 290.007812 181.921875 Z M 290.007812 181.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.167969 179.902344 C 289.167969 179.785156 289.074219 179.691406 288.957031 179.691406 C 288.839844 179.691406 288.746094 179.785156 288.746094 179.902344 C 288.746094 180.019531 288.839844 180.113281 288.957031 180.113281 C 289.074219 180.113281 289.167969 180.019531 289.167969 179.902344 Z M 289.167969 179.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.75 176.207031 C 287.75 176.089844 287.65625 175.996094 287.539062 175.996094 C 287.421875 175.996094 287.328125 176.089844 287.328125 176.207031 C 287.328125 176.324219 287.421875 176.417969 287.539062 176.417969 C 287.65625 176.417969 287.75 176.324219 287.75 176.207031 Z M 287.75 176.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.796875 177.238281 C 285.796875 177.121094 285.703125 177.027344 285.585938 177.027344 C 285.46875 177.027344 285.375 177.121094 285.375 177.238281 C 285.375 177.355469 285.46875 177.449219 285.585938 177.449219 C 285.703125 177.449219 285.796875 177.355469 285.796875 177.238281 Z M 285.796875 177.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.308594 178.039062 C 283.308594 177.921875 283.214844 177.828125 283.097656 177.828125 C 282.980469 177.828125 282.886719 177.921875 282.886719 178.039062 C 282.886719 178.15625 282.980469 178.25 283.097656 178.25 C 283.214844 178.25 283.308594 178.15625 283.308594 178.039062 Z M 283.308594 178.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.007812 182.015625 C 288.007812 181.898438 287.914062 181.804688 287.796875 181.804688 C 287.679688 181.804688 287.585938 181.898438 287.585938 182.015625 C 287.585938 182.132812 287.679688 182.226562 287.796875 182.226562 C 287.914062 182.226562 288.007812 182.132812 288.007812 182.015625 Z M 288.007812 182.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.425781 183.351562 C 288.425781 183.234375 288.332031 183.140625 288.214844 183.140625 C 288.097656 183.140625 288.003906 183.234375 288.003906 183.351562 C 288.003906 183.46875 288.097656 183.5625 288.214844 183.5625 C 288.332031 183.5625 288.425781 183.46875 288.425781 183.351562 Z M 288.425781 183.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.546875 184.046875 C 292.546875 183.929688 292.453125 183.835938 292.335938 183.835938 C 292.21875 183.835938 292.125 183.929688 292.125 184.046875 C 292.125 184.164062 292.21875 184.257812 292.335938 184.257812 C 292.453125 184.257812 292.546875 184.164062 292.546875 184.046875 Z M 292.546875 184.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.679688 181.445312 C 292.679688 181.328125 292.585938 181.234375 292.46875 181.234375 C 292.351562 181.234375 292.257812 181.328125 292.257812 181.445312 C 292.257812 181.5625 292.351562 181.65625 292.46875 181.65625 C 292.585938 181.65625 292.679688 181.5625 292.679688 181.445312 Z M 292.679688 181.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.308594 179.324219 C 293.308594 179.207031 293.214844 179.113281 293.097656 179.113281 C 292.980469 179.113281 292.886719 179.207031 292.886719 179.324219 C 292.886719 179.441406 292.980469 179.535156 293.097656 179.535156 C 293.214844 179.535156 293.308594 179.441406 293.308594 179.324219 Z M 293.308594 179.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.300781 181.332031 C 292.300781 181.214844 292.207031 181.121094 292.089844 181.121094 C 291.972656 181.121094 291.878906 181.214844 291.878906 181.332031 C 291.878906 181.449219 291.972656 181.542969 292.089844 181.542969 C 292.207031 181.542969 292.300781 181.449219 292.300781 181.332031 Z M 292.300781 181.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.414062 179.777344 C 290.414062 179.660156 290.320312 179.566406 290.203125 179.566406 C 290.085938 179.566406 289.992188 179.660156 289.992188 179.777344 C 289.992188 179.894531 290.085938 179.988281 290.203125 179.988281 C 290.320312 179.988281 290.414062 179.894531 290.414062 179.777344 Z M 290.414062 179.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.488281 181.800781 C 287.488281 181.683594 287.394531 181.589844 287.277344 181.589844 C 287.160156 181.589844 287.066406 181.683594 287.066406 181.800781 C 287.066406 181.917969 287.160156 182.011719 287.277344 182.011719 C 287.394531 182.011719 287.488281 181.917969 287.488281 181.800781 Z M 287.488281 181.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.179688 181.402344 C 290.179688 181.285156 290.085938 181.191406 289.96875 181.191406 C 289.851562 181.191406 289.757812 181.285156 289.757812 181.402344 C 289.757812 181.519531 289.851562 181.613281 289.96875 181.613281 C 290.085938 181.613281 290.179688 181.519531 290.179688 181.402344 Z M 290.179688 181.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.191406 182.441406 C 290.191406 182.324219 290.097656 182.230469 289.980469 182.230469 C 289.863281 182.230469 289.769531 182.324219 289.769531 182.441406 C 289.769531 182.558594 289.863281 182.652344 289.980469 182.652344 C 290.097656 182.652344 290.191406 182.558594 290.191406 182.441406 Z M 290.191406 182.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.460938 184.054688 C 291.460938 183.9375 291.367188 183.84375 291.25 183.84375 C 291.132812 183.84375 291.039062 183.9375 291.039062 184.054688 C 291.039062 184.171875 291.132812 184.265625 291.25 184.265625 C 291.367188 184.265625 291.460938 184.171875 291.460938 184.054688 Z M 291.460938 184.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.558594 178.304688 C 291.558594 178.1875 291.464844 178.09375 291.347656 178.09375 C 291.230469 178.09375 291.136719 178.1875 291.136719 178.304688 C 291.136719 178.421875 291.230469 178.515625 291.347656 178.515625 C 291.464844 178.515625 291.558594 178.421875 291.558594 178.304688 Z M 291.558594 178.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 291.632812 182.28125 C 291.632812 182.164062 291.539062 182.070312 291.421875 182.070312 C 291.304688 182.070312 291.210938 182.164062 291.210938 182.28125 C 291.210938 182.398438 291.304688 182.492188 291.421875 182.492188 C 291.539062 182.492188 291.632812 182.398438 291.632812 182.28125 Z M 291.632812 182.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.316406 180.4375 C 290.316406 180.320312 290.222656 180.226562 290.105469 180.226562 C 289.988281 180.226562 289.894531 180.320312 289.894531 180.4375 C 289.894531 180.554688 289.988281 180.648438 290.105469 180.648438 C 290.222656 180.648438 290.316406 180.554688 290.316406 180.4375 Z M 290.316406 180.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.425781 181.558594 C 294.425781 181.441406 294.332031 181.347656 294.214844 181.347656 C 294.097656 181.347656 294.003906 181.441406 294.003906 181.558594 C 294.003906 181.675781 294.097656 181.769531 294.214844 181.769531 C 294.332031 181.769531 294.425781 181.675781 294.425781 181.558594 Z M 294.425781 181.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.84375 182.804688 C 293.84375 182.6875 293.75 182.59375 293.632812 182.59375 C 293.515625 182.59375 293.421875 182.6875 293.421875 182.804688 C 293.421875 182.921875 293.515625 183.015625 293.632812 183.015625 C 293.75 183.015625 293.84375 182.921875 293.84375 182.804688 Z M 293.84375 182.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.292969 186.015625 C 293.292969 185.898438 293.199219 185.804688 293.082031 185.804688 C 292.964844 185.804688 292.871094 185.898438 292.871094 186.015625 C 292.871094 186.132812 292.964844 186.226562 293.082031 186.226562 C 293.199219 186.226562 293.292969 186.132812 293.292969 186.015625 Z M 293.292969 186.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.027344 184.449219 C 288.027344 184.332031 287.933594 184.238281 287.816406 184.238281 C 287.699219 184.238281 287.605469 184.332031 287.605469 184.449219 C 287.605469 184.566406 287.699219 184.660156 287.816406 184.660156 C 287.933594 184.660156 288.027344 184.566406 288.027344 184.449219 Z M 288.027344 184.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.09375 183.71875 C 287.09375 183.601562 287 183.507812 286.882812 183.507812 C 286.765625 183.507812 286.671875 183.601562 286.671875 183.71875 C 286.671875 183.835938 286.765625 183.929688 286.882812 183.929688 C 287 183.929688 287.09375 183.835938 287.09375 183.71875 Z M 287.09375 183.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.6875 185.324219 C 285.6875 185.207031 285.59375 185.113281 285.476562 185.113281 C 285.359375 185.113281 285.265625 185.207031 285.265625 185.324219 C 285.265625 185.441406 285.359375 185.535156 285.476562 185.535156 C 285.59375 185.535156 285.6875 185.441406 285.6875 185.324219 Z M 285.6875 185.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.21875 189.515625 C 284.21875 189.398438 284.125 189.304688 284.007812 189.304688 C 283.890625 189.304688 283.796875 189.398438 283.796875 189.515625 C 283.796875 189.632812 283.890625 189.726562 284.007812 189.726562 C 284.125 189.726562 284.21875 189.632812 284.21875 189.515625 Z M 284.21875 189.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.945312 188.675781 C 283.945312 188.558594 283.851562 188.464844 283.734375 188.464844 C 283.617188 188.464844 283.523438 188.558594 283.523438 188.675781 C 283.523438 188.792969 283.617188 188.886719 283.734375 188.886719 C 283.851562 188.886719 283.945312 188.792969 283.945312 188.675781 Z M 283.945312 188.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.625 188.648438 C 282.625 188.53125 282.53125 188.4375 282.414062 188.4375 C 282.296875 188.4375 282.203125 188.53125 282.203125 188.648438 C 282.203125 188.765625 282.296875 188.859375 282.414062 188.859375 C 282.53125 188.859375 282.625 188.765625 282.625 188.648438 Z M 282.625 188.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.472656 189.3125 C 278.472656 189.195312 278.378906 189.101562 278.261719 189.101562 C 278.144531 189.101562 278.050781 189.195312 278.050781 189.3125 C 278.050781 189.429688 278.144531 189.523438 278.261719 189.523438 C 278.378906 189.523438 278.472656 189.429688 278.472656 189.3125 Z M 278.472656 189.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.953125 189.210938 C 279.953125 189.09375 279.859375 189 279.742188 189 C 279.625 189 279.53125 189.09375 279.53125 189.210938 C 279.53125 189.328125 279.625 189.421875 279.742188 189.421875 C 279.859375 189.421875 279.953125 189.328125 279.953125 189.210938 Z M 279.953125 189.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.996094 190.050781 C 281.996094 189.933594 281.902344 189.839844 281.785156 189.839844 C 281.667969 189.839844 281.574219 189.933594 281.574219 190.050781 C 281.574219 190.167969 281.667969 190.261719 281.785156 190.261719 C 281.902344 190.261719 281.996094 190.167969 281.996094 190.050781 Z M 281.996094 190.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.972656 187.847656 C 283.972656 187.730469 283.878906 187.636719 283.761719 187.636719 C 283.644531 187.636719 283.550781 187.730469 283.550781 187.847656 C 283.550781 187.964844 283.644531 188.058594 283.761719 188.058594 C 283.878906 188.058594 283.972656 187.964844 283.972656 187.847656 Z M 283.972656 187.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.066406 192.957031 C 284.066406 192.839844 283.972656 192.746094 283.855469 192.746094 C 283.738281 192.746094 283.644531 192.839844 283.644531 192.957031 C 283.644531 193.074219 283.738281 193.167969 283.855469 193.167969 C 283.972656 193.167969 284.066406 193.074219 284.066406 192.957031 Z M 284.066406 192.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.105469 189.097656 C 287.105469 188.980469 287.011719 188.886719 286.894531 188.886719 C 286.777344 188.886719 286.683594 188.980469 286.683594 189.097656 C 286.683594 189.214844 286.777344 189.308594 286.894531 189.308594 C 287.011719 189.308594 287.105469 189.214844 287.105469 189.097656 Z M 287.105469 189.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.765625 185.128906 C 286.765625 185.011719 286.671875 184.917969 286.554688 184.917969 C 286.4375 184.917969 286.34375 185.011719 286.34375 185.128906 C 286.34375 185.246094 286.4375 185.339844 286.554688 185.339844 C 286.671875 185.339844 286.765625 185.246094 286.765625 185.128906 Z M 286.765625 185.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.34375 182.441406 C 287.34375 182.324219 287.25 182.230469 287.132812 182.230469 C 287.015625 182.230469 286.921875 182.324219 286.921875 182.441406 C 286.921875 182.558594 287.015625 182.652344 287.132812 182.652344 C 287.25 182.652344 287.34375 182.558594 287.34375 182.441406 Z M 287.34375 182.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.003906 179.273438 C 289.003906 179.15625 288.910156 179.0625 288.792969 179.0625 C 288.675781 179.0625 288.582031 179.15625 288.582031 179.273438 C 288.582031 179.390625 288.675781 179.484375 288.792969 179.484375 C 288.910156 179.484375 289.003906 179.390625 289.003906 179.273438 Z M 289.003906 179.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.753906 181.839844 C 288.753906 181.722656 288.660156 181.628906 288.542969 181.628906 C 288.425781 181.628906 288.332031 181.722656 288.332031 181.839844 C 288.332031 181.957031 288.425781 182.050781 288.542969 182.050781 C 288.660156 182.050781 288.753906 181.957031 288.753906 181.839844 Z M 288.753906 181.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.074219 186.707031 C 287.074219 186.589844 286.980469 186.496094 286.863281 186.496094 C 286.746094 186.496094 286.652344 186.589844 286.652344 186.707031 C 286.652344 186.824219 286.746094 186.917969 286.863281 186.917969 C 286.980469 186.917969 287.074219 186.824219 287.074219 186.707031 Z M 287.074219 186.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.859375 182.472656 C 287.859375 182.355469 287.765625 182.261719 287.648438 182.261719 C 287.53125 182.261719 287.4375 182.355469 287.4375 182.472656 C 287.4375 182.589844 287.53125 182.683594 287.648438 182.683594 C 287.765625 182.683594 287.859375 182.589844 287.859375 182.472656 Z M 287.859375 182.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.992188 179.164062 C 285.992188 179.046875 285.898438 178.953125 285.78125 178.953125 C 285.664062 178.953125 285.570312 179.046875 285.570312 179.164062 C 285.570312 179.28125 285.664062 179.375 285.78125 179.375 C 285.898438 179.375 285.992188 179.28125 285.992188 179.164062 Z M 285.992188 179.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.09375 177.636719 C 283.09375 177.519531 283 177.425781 282.882812 177.425781 C 282.765625 177.425781 282.671875 177.519531 282.671875 177.636719 C 282.671875 177.753906 282.765625 177.847656 282.882812 177.847656 C 283 177.847656 283.09375 177.753906 283.09375 177.636719 Z M 283.09375 177.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.117188 175.402344 C 283.117188 175.285156 283.023438 175.191406 282.90625 175.191406 C 282.789062 175.191406 282.695312 175.285156 282.695312 175.402344 C 282.695312 175.519531 282.789062 175.613281 282.90625 175.613281 C 283.023438 175.613281 283.117188 175.519531 283.117188 175.402344 Z M 283.117188 175.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.535156 176.847656 C 283.535156 176.730469 283.441406 176.636719 283.324219 176.636719 C 283.207031 176.636719 283.113281 176.730469 283.113281 176.847656 C 283.113281 176.964844 283.207031 177.058594 283.324219 177.058594 C 283.441406 177.058594 283.535156 176.964844 283.535156 176.847656 Z M 283.535156 176.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.953125 179.722656 C 284.953125 179.605469 284.859375 179.511719 284.742188 179.511719 C 284.625 179.511719 284.53125 179.605469 284.53125 179.722656 C 284.53125 179.839844 284.625 179.933594 284.742188 179.933594 C 284.859375 179.933594 284.953125 179.839844 284.953125 179.722656 Z M 284.953125 179.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.992188 180.910156 C 284.992188 180.792969 284.898438 180.699219 284.78125 180.699219 C 284.664062 180.699219 284.570312 180.792969 284.570312 180.910156 C 284.570312 181.027344 284.664062 181.121094 284.78125 181.121094 C 284.898438 181.121094 284.992188 181.027344 284.992188 180.910156 Z M 284.992188 180.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.453125 184.960938 C 287.453125 184.84375 287.359375 184.75 287.242188 184.75 C 287.125 184.75 287.03125 184.84375 287.03125 184.960938 C 287.03125 185.078125 287.125 185.171875 287.242188 185.171875 C 287.359375 185.171875 287.453125 185.078125 287.453125 184.960938 Z M 287.453125 184.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.609375 187.898438 C 287.609375 187.78125 287.515625 187.6875 287.398438 187.6875 C 287.28125 187.6875 287.1875 187.78125 287.1875 187.898438 C 287.1875 188.015625 287.28125 188.109375 287.398438 188.109375 C 287.515625 188.109375 287.609375 188.015625 287.609375 187.898438 Z M 287.609375 187.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.308594 189.332031 C 288.308594 189.214844 288.214844 189.121094 288.097656 189.121094 C 287.980469 189.121094 287.886719 189.214844 287.886719 189.332031 C 287.886719 189.449219 287.980469 189.542969 288.097656 189.542969 C 288.214844 189.542969 288.308594 189.449219 288.308594 189.332031 Z M 288.308594 189.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.460938 189.617188 C 289.460938 189.5 289.367188 189.40625 289.25 189.40625 C 289.132812 189.40625 289.039062 189.5 289.039062 189.617188 C 289.039062 189.734375 289.132812 189.828125 289.25 189.828125 C 289.367188 189.828125 289.460938 189.734375 289.460938 189.617188 Z M 289.460938 189.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.328125 191.523438 C 290.328125 191.40625 290.234375 191.3125 290.117188 191.3125 C 290 191.3125 289.90625 191.40625 289.90625 191.523438 C 289.90625 191.640625 290 191.734375 290.117188 191.734375 C 290.234375 191.734375 290.328125 191.640625 290.328125 191.523438 Z M 290.328125 191.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.253906 191.550781 C 286.253906 191.433594 286.160156 191.339844 286.042969 191.339844 C 285.925781 191.339844 285.832031 191.433594 285.832031 191.550781 C 285.832031 191.667969 285.925781 191.761719 286.042969 191.761719 C 286.160156 191.761719 286.253906 191.667969 286.253906 191.550781 Z M 286.253906 191.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.292969 191.734375 C 285.292969 191.617188 285.199219 191.523438 285.082031 191.523438 C 284.964844 191.523438 284.871094 191.617188 284.871094 191.734375 C 284.871094 191.851562 284.964844 191.945312 285.082031 191.945312 C 285.199219 191.945312 285.292969 191.851562 285.292969 191.734375 Z M 285.292969 191.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.691406 188.828125 C 288.691406 188.710938 288.597656 188.617188 288.480469 188.617188 C 288.363281 188.617188 288.269531 188.710938 288.269531 188.828125 C 288.269531 188.945312 288.363281 189.039062 288.480469 189.039062 C 288.597656 189.039062 288.691406 188.945312 288.691406 188.828125 Z M 288.691406 188.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.726562 189.820312 C 290.726562 189.703125 290.632812 189.609375 290.515625 189.609375 C 290.398438 189.609375 290.304688 189.703125 290.304688 189.820312 C 290.304688 189.9375 290.398438 190.03125 290.515625 190.03125 C 290.632812 190.03125 290.726562 189.9375 290.726562 189.820312 Z M 290.726562 189.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.71875 188.546875 C 286.71875 188.429688 286.625 188.335938 286.507812 188.335938 C 286.390625 188.335938 286.296875 188.429688 286.296875 188.546875 C 286.296875 188.664062 286.390625 188.757812 286.507812 188.757812 C 286.625 188.757812 286.71875 188.664062 286.71875 188.546875 Z M 286.71875 188.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.023438 186.589844 C 287.023438 186.472656 286.929688 186.378906 286.8125 186.378906 C 286.695312 186.378906 286.601562 186.472656 286.601562 186.589844 C 286.601562 186.707031 286.695312 186.800781 286.8125 186.800781 C 286.929688 186.800781 287.023438 186.707031 287.023438 186.589844 Z M 287.023438 186.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.960938 193.511719 C 287.960938 193.394531 287.867188 193.300781 287.75 193.300781 C 287.632812 193.300781 287.539062 193.394531 287.539062 193.511719 C 287.539062 193.628906 287.632812 193.722656 287.75 193.722656 C 287.867188 193.722656 287.960938 193.628906 287.960938 193.511719 Z M 287.960938 193.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.878906 194.230469 C 289.878906 194.113281 289.785156 194.019531 289.667969 194.019531 C 289.550781 194.019531 289.457031 194.113281 289.457031 194.230469 C 289.457031 194.347656 289.550781 194.441406 289.667969 194.441406 C 289.785156 194.441406 289.878906 194.347656 289.878906 194.230469 Z M 289.878906 194.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.226562 194.132812 C 286.226562 194.015625 286.132812 193.921875 286.015625 193.921875 C 285.898438 193.921875 285.804688 194.015625 285.804688 194.132812 C 285.804688 194.25 285.898438 194.34375 286.015625 194.34375 C 286.132812 194.34375 286.226562 194.25 286.226562 194.132812 Z M 286.226562 194.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.257812 190.234375 C 288.257812 190.117188 288.164062 190.023438 288.046875 190.023438 C 287.929688 190.023438 287.835938 190.117188 287.835938 190.234375 C 287.835938 190.351562 287.929688 190.445312 288.046875 190.445312 C 288.164062 190.445312 288.257812 190.351562 288.257812 190.234375 Z M 288.257812 190.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.117188 189.15625 C 286.117188 189.039062 286.023438 188.945312 285.90625 188.945312 C 285.789062 188.945312 285.695312 189.039062 285.695312 189.15625 C 285.695312 189.273438 285.789062 189.367188 285.90625 189.367188 C 286.023438 189.367188 286.117188 189.273438 286.117188 189.15625 Z M 286.117188 189.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.011719 189.691406 C 288.011719 189.574219 287.917969 189.480469 287.800781 189.480469 C 287.683594 189.480469 287.589844 189.574219 287.589844 189.691406 C 287.589844 189.808594 287.683594 189.902344 287.800781 189.902344 C 287.917969 189.902344 288.011719 189.808594 288.011719 189.691406 Z M 288.011719 189.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.96875 189.988281 C 286.96875 189.871094 286.875 189.777344 286.757812 189.777344 C 286.640625 189.777344 286.546875 189.871094 286.546875 189.988281 C 286.546875 190.105469 286.640625 190.199219 286.757812 190.199219 C 286.875 190.199219 286.96875 190.105469 286.96875 189.988281 Z M 286.96875 189.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.070312 194.742188 C 289.070312 194.625 288.976562 194.53125 288.859375 194.53125 C 288.742188 194.53125 288.648438 194.625 288.648438 194.742188 C 288.648438 194.859375 288.742188 194.953125 288.859375 194.953125 C 288.976562 194.953125 289.070312 194.859375 289.070312 194.742188 Z M 289.070312 194.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.265625 195.992188 C 292.265625 195.875 292.171875 195.78125 292.054688 195.78125 C 291.9375 195.78125 291.84375 195.875 291.84375 195.992188 C 291.84375 196.109375 291.9375 196.203125 292.054688 196.203125 C 292.171875 196.203125 292.265625 196.109375 292.265625 195.992188 Z M 292.265625 195.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.972656 192.867188 C 293.972656 192.75 293.878906 192.65625 293.761719 192.65625 C 293.644531 192.65625 293.550781 192.75 293.550781 192.867188 C 293.550781 192.984375 293.644531 193.078125 293.761719 193.078125 C 293.878906 193.078125 293.972656 192.984375 293.972656 192.867188 Z M 293.972656 192.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.148438 193.285156 C 296.148438 193.167969 296.054688 193.074219 295.9375 193.074219 C 295.820312 193.074219 295.726562 193.167969 295.726562 193.285156 C 295.726562 193.402344 295.820312 193.496094 295.9375 193.496094 C 296.054688 193.496094 296.148438 193.402344 296.148438 193.285156 Z M 296.148438 193.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.765625 193.347656 C 294.765625 193.230469 294.671875 193.136719 294.554688 193.136719 C 294.4375 193.136719 294.34375 193.230469 294.34375 193.347656 C 294.34375 193.464844 294.4375 193.558594 294.554688 193.558594 C 294.671875 193.558594 294.765625 193.464844 294.765625 193.347656 Z M 294.765625 193.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.582031 197.246094 C 294.582031 197.128906 294.488281 197.035156 294.371094 197.035156 C 294.253906 197.035156 294.160156 197.128906 294.160156 197.246094 C 294.160156 197.363281 294.253906 197.457031 294.371094 197.457031 C 294.488281 197.457031 294.582031 197.363281 294.582031 197.246094 Z M 294.582031 197.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.410156 196.308594 C 295.410156 196.191406 295.316406 196.097656 295.199219 196.097656 C 295.082031 196.097656 294.988281 196.191406 294.988281 196.308594 C 294.988281 196.425781 295.082031 196.519531 295.199219 196.519531 C 295.316406 196.519531 295.410156 196.425781 295.410156 196.308594 Z M 295.410156 196.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.914062 196.902344 C 295.914062 196.785156 295.820312 196.691406 295.703125 196.691406 C 295.585938 196.691406 295.492188 196.785156 295.492188 196.902344 C 295.492188 197.019531 295.585938 197.113281 295.703125 197.113281 C 295.820312 197.113281 295.914062 197.019531 295.914062 196.902344 Z M 295.914062 196.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.648438 196.539062 C 294.648438 196.421875 294.554688 196.328125 294.4375 196.328125 C 294.320312 196.328125 294.226562 196.421875 294.226562 196.539062 C 294.226562 196.65625 294.320312 196.75 294.4375 196.75 C 294.554688 196.75 294.648438 196.65625 294.648438 196.539062 Z M 294.648438 196.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 295.261719 195.339844 C 295.261719 195.222656 295.167969 195.128906 295.050781 195.128906 C 294.933594 195.128906 294.839844 195.222656 294.839844 195.339844 C 294.839844 195.457031 294.933594 195.550781 295.050781 195.550781 C 295.167969 195.550781 295.261719 195.457031 295.261719 195.339844 Z M 295.261719 195.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.214844 192.515625 C 296.214844 192.398438 296.121094 192.304688 296.003906 192.304688 C 295.886719 192.304688 295.792969 192.398438 295.792969 192.515625 C 295.792969 192.632812 295.886719 192.726562 296.003906 192.726562 C 296.121094 192.726562 296.214844 192.632812 296.214844 192.515625 Z M 296.214844 192.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.824219 193.597656 C 299.824219 193.480469 299.730469 193.386719 299.613281 193.386719 C 299.496094 193.386719 299.402344 193.480469 299.402344 193.597656 C 299.402344 193.714844 299.496094 193.808594 299.613281 193.808594 C 299.730469 193.808594 299.824219 193.714844 299.824219 193.597656 Z M 299.824219 193.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.839844 190.636719 C 299.839844 190.519531 299.746094 190.425781 299.628906 190.425781 C 299.511719 190.425781 299.417969 190.519531 299.417969 190.636719 C 299.417969 190.753906 299.511719 190.847656 299.628906 190.847656 C 299.746094 190.847656 299.839844 190.753906 299.839844 190.636719 Z M 299.839844 190.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.535156 194.324219 C 301.535156 194.207031 301.441406 194.113281 301.324219 194.113281 C 301.207031 194.113281 301.113281 194.207031 301.113281 194.324219 C 301.113281 194.441406 301.207031 194.535156 301.324219 194.535156 C 301.441406 194.535156 301.535156 194.441406 301.535156 194.324219 Z M 301.535156 194.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.285156 197.476562 C 301.285156 197.359375 301.191406 197.265625 301.074219 197.265625 C 300.957031 197.265625 300.863281 197.359375 300.863281 197.476562 C 300.863281 197.59375 300.957031 197.6875 301.074219 197.6875 C 301.191406 197.6875 301.285156 197.59375 301.285156 197.476562 Z M 301.285156 197.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 298.910156 197.839844 C 298.910156 197.722656 298.816406 197.628906 298.699219 197.628906 C 298.582031 197.628906 298.488281 197.722656 298.488281 197.839844 C 298.488281 197.957031 298.582031 198.050781 298.699219 198.050781 C 298.816406 198.050781 298.910156 197.957031 298.910156 197.839844 Z M 298.910156 197.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 300.65625 196.867188 C 300.65625 196.75 300.5625 196.65625 300.445312 196.65625 C 300.328125 196.65625 300.234375 196.75 300.234375 196.867188 C 300.234375 196.984375 300.328125 197.078125 300.445312 197.078125 C 300.5625 197.078125 300.65625 196.984375 300.65625 196.867188 Z M 300.65625 196.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 301.597656 198.199219 C 301.597656 198.082031 301.503906 197.988281 301.386719 197.988281 C 301.269531 197.988281 301.175781 198.082031 301.175781 198.199219 C 301.175781 198.316406 301.269531 198.410156 301.386719 198.410156 C 301.503906 198.410156 301.597656 198.316406 301.597656 198.199219 Z M 301.597656 198.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.960938 199.148438 C 303.960938 199.03125 303.867188 198.9375 303.75 198.9375 C 303.632812 198.9375 303.539062 199.03125 303.539062 199.148438 C 303.539062 199.265625 303.632812 199.359375 303.75 199.359375 C 303.867188 199.359375 303.960938 199.265625 303.960938 199.148438 Z M 303.960938 199.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.726562 198.75 C 303.726562 198.632812 303.632812 198.539062 303.515625 198.539062 C 303.398438 198.539062 303.304688 198.632812 303.304688 198.75 C 303.304688 198.867188 303.398438 198.960938 303.515625 198.960938 C 303.632812 198.960938 303.726562 198.867188 303.726562 198.75 Z M 303.726562 198.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 302.976562 197.273438 C 302.976562 197.15625 302.882812 197.0625 302.765625 197.0625 C 302.648438 197.0625 302.554688 197.15625 302.554688 197.273438 C 302.554688 197.390625 302.648438 197.484375 302.765625 197.484375 C 302.882812 197.484375 302.976562 197.390625 302.976562 197.273438 Z M 302.976562 197.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 304.132812 199.148438 C 304.132812 199.03125 304.039062 198.9375 303.921875 198.9375 C 303.804688 198.9375 303.710938 199.03125 303.710938 199.148438 C 303.710938 199.265625 303.804688 199.359375 303.921875 199.359375 C 304.039062 199.359375 304.132812 199.265625 304.132812 199.148438 Z M 304.132812 199.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.125 198.09375 C 308.125 197.976562 308.03125 197.882812 307.914062 197.882812 C 307.796875 197.882812 307.703125 197.976562 307.703125 198.09375 C 307.703125 198.210938 307.796875 198.304688 307.914062 198.304688 C 308.03125 198.304688 308.125 198.210938 308.125 198.09375 Z M 308.125 198.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 309.070312 199.742188 C 309.070312 199.625 308.976562 199.53125 308.859375 199.53125 C 308.742188 199.53125 308.648438 199.625 308.648438 199.742188 C 308.648438 199.859375 308.742188 199.953125 308.859375 199.953125 C 308.976562 199.953125 309.070312 199.859375 309.070312 199.742188 Z M 309.070312 199.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 308.644531 199.183594 C 308.644531 199.066406 308.550781 198.972656 308.433594 198.972656 C 308.316406 198.972656 308.222656 199.066406 308.222656 199.183594 C 308.222656 199.300781 308.316406 199.394531 308.433594 199.394531 C 308.550781 199.394531 308.644531 199.300781 308.644531 199.183594 Z M 308.644531 199.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 303.171875 196.398438 C 303.171875 196.28125 303.078125 196.1875 302.960938 196.1875 C 302.84375 196.1875 302.75 196.28125 302.75 196.398438 C 302.75 196.515625 302.84375 196.609375 302.960938 196.609375 C 303.078125 196.609375 303.171875 196.515625 303.171875 196.398438 Z M 303.171875 196.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.957031 197.304688 C 299.957031 197.1875 299.863281 197.09375 299.746094 197.09375 C 299.628906 197.09375 299.535156 197.1875 299.535156 197.304688 C 299.535156 197.421875 299.628906 197.515625 299.746094 197.515625 C 299.863281 197.515625 299.957031 197.421875 299.957031 197.304688 Z M 299.957031 197.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 299.402344 198.65625 C 299.402344 198.539062 299.308594 198.445312 299.191406 198.445312 C 299.074219 198.445312 298.980469 198.539062 298.980469 198.65625 C 298.980469 198.773438 299.074219 198.867188 299.191406 198.867188 C 299.308594 198.867188 299.402344 198.773438 299.402344 198.65625 Z M 299.402344 198.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 297.902344 204.605469 C 297.902344 204.488281 297.808594 204.394531 297.691406 204.394531 C 297.574219 204.394531 297.480469 204.488281 297.480469 204.605469 C 297.480469 204.722656 297.574219 204.816406 297.691406 204.816406 C 297.808594 204.816406 297.902344 204.722656 297.902344 204.605469 Z M 297.902344 204.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.300781 201.914062 C 292.300781 201.796875 292.207031 201.703125 292.089844 201.703125 C 291.972656 201.703125 291.878906 201.796875 291.878906 201.914062 C 291.878906 202.03125 291.972656 202.125 292.089844 202.125 C 292.207031 202.125 292.300781 202.03125 292.300781 201.914062 Z M 292.300781 201.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.378906 200.132812 C 293.378906 200.015625 293.285156 199.921875 293.167969 199.921875 C 293.050781 199.921875 292.957031 200.015625 292.957031 200.132812 C 292.957031 200.25 293.050781 200.34375 293.167969 200.34375 C 293.285156 200.34375 293.378906 200.25 293.378906 200.132812 Z M 293.378906 200.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.792969 201.910156 C 293.792969 201.792969 293.699219 201.699219 293.582031 201.699219 C 293.464844 201.699219 293.371094 201.792969 293.371094 201.910156 C 293.371094 202.027344 293.464844 202.121094 293.582031 202.121094 C 293.699219 202.121094 293.792969 202.027344 293.792969 201.910156 Z M 293.792969 201.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.703125 201.378906 C 292.703125 201.261719 292.609375 201.167969 292.492188 201.167969 C 292.375 201.167969 292.28125 201.261719 292.28125 201.378906 C 292.28125 201.496094 292.375 201.589844 292.492188 201.589844 C 292.609375 201.589844 292.703125 201.496094 292.703125 201.378906 Z M 292.703125 201.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 293.851562 199.347656 C 293.851562 199.230469 293.757812 199.136719 293.640625 199.136719 C 293.523438 199.136719 293.429688 199.230469 293.429688 199.347656 C 293.429688 199.464844 293.523438 199.558594 293.640625 199.558594 C 293.757812 199.558594 293.851562 199.464844 293.851562 199.347656 Z M 293.851562 199.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 296.367188 203.132812 C 296.367188 203.015625 296.273438 202.921875 296.15625 202.921875 C 296.039062 202.921875 295.945312 203.015625 295.945312 203.132812 C 295.945312 203.25 296.039062 203.34375 296.15625 203.34375 C 296.273438 203.34375 296.367188 203.25 296.367188 203.132812 Z M 296.367188 203.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 294.453125 202.390625 C 294.453125 202.273438 294.359375 202.179688 294.242188 202.179688 C 294.125 202.179688 294.03125 202.273438 294.03125 202.390625 C 294.03125 202.507812 294.125 202.601562 294.242188 202.601562 C 294.359375 202.601562 294.453125 202.507812 294.453125 202.390625 Z M 294.453125 202.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.519531 202.921875 C 290.519531 202.804688 290.425781 202.710938 290.308594 202.710938 C 290.191406 202.710938 290.097656 202.804688 290.097656 202.921875 C 290.097656 203.039062 290.191406 203.132812 290.308594 203.132812 C 290.425781 203.132812 290.519531 203.039062 290.519531 202.921875 Z M 290.519531 202.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.566406 197.230469 C 290.566406 197.113281 290.472656 197.019531 290.355469 197.019531 C 290.238281 197.019531 290.144531 197.113281 290.144531 197.230469 C 290.144531 197.347656 290.238281 197.441406 290.355469 197.441406 C 290.472656 197.441406 290.566406 197.347656 290.566406 197.230469 Z M 290.566406 197.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.472656 195.503906 C 288.472656 195.386719 288.378906 195.292969 288.261719 195.292969 C 288.144531 195.292969 288.050781 195.386719 288.050781 195.503906 C 288.050781 195.621094 288.144531 195.714844 288.261719 195.714844 C 288.378906 195.714844 288.472656 195.621094 288.472656 195.503906 Z M 288.472656 195.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.808594 195.082031 C 290.808594 194.964844 290.714844 194.871094 290.597656 194.871094 C 290.480469 194.871094 290.386719 194.964844 290.386719 195.082031 C 290.386719 195.199219 290.480469 195.292969 290.597656 195.292969 C 290.714844 195.292969 290.808594 195.199219 290.808594 195.082031 Z M 290.808594 195.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.117188 196.0625 C 289.117188 195.945312 289.023438 195.851562 288.90625 195.851562 C 288.789062 195.851562 288.695312 195.945312 288.695312 196.0625 C 288.695312 196.179688 288.789062 196.273438 288.90625 196.273438 C 289.023438 196.273438 289.117188 196.179688 289.117188 196.0625 Z M 289.117188 196.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.441406 197.808594 C 289.441406 197.691406 289.347656 197.597656 289.230469 197.597656 C 289.113281 197.597656 289.019531 197.691406 289.019531 197.808594 C 289.019531 197.925781 289.113281 198.019531 289.230469 198.019531 C 289.347656 198.019531 289.441406 197.925781 289.441406 197.808594 Z M 289.441406 197.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.953125 194.058594 C 290.953125 193.941406 290.859375 193.847656 290.742188 193.847656 C 290.625 193.847656 290.53125 193.941406 290.53125 194.058594 C 290.53125 194.175781 290.625 194.269531 290.742188 194.269531 C 290.859375 194.269531 290.953125 194.175781 290.953125 194.058594 Z M 290.953125 194.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.410156 191.101562 C 290.410156 190.984375 290.316406 190.890625 290.199219 190.890625 C 290.082031 190.890625 289.988281 190.984375 289.988281 191.101562 C 289.988281 191.21875 290.082031 191.3125 290.199219 191.3125 C 290.316406 191.3125 290.410156 191.21875 290.410156 191.101562 Z M 290.410156 191.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.5 194.332031 C 292.5 194.214844 292.40625 194.121094 292.289062 194.121094 C 292.171875 194.121094 292.078125 194.214844 292.078125 194.332031 C 292.078125 194.449219 292.171875 194.542969 292.289062 194.542969 C 292.40625 194.542969 292.5 194.449219 292.5 194.332031 Z M 292.5 194.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.585938 195.804688 C 290.585938 195.6875 290.492188 195.59375 290.375 195.59375 C 290.257812 195.59375 290.164062 195.6875 290.164062 195.804688 C 290.164062 195.921875 290.257812 196.015625 290.375 196.015625 C 290.492188 196.015625 290.585938 195.921875 290.585938 195.804688 Z M 290.585938 195.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.910156 195.097656 C 285.910156 194.980469 285.816406 194.886719 285.699219 194.886719 C 285.582031 194.886719 285.488281 194.980469 285.488281 195.097656 C 285.488281 195.214844 285.582031 195.308594 285.699219 195.308594 C 285.816406 195.308594 285.910156 195.214844 285.910156 195.097656 Z M 285.910156 195.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.117188 192.734375 C 286.117188 192.617188 286.023438 192.523438 285.90625 192.523438 C 285.789062 192.523438 285.695312 192.617188 285.695312 192.734375 C 285.695312 192.851562 285.789062 192.945312 285.90625 192.945312 C 286.023438 192.945312 286.117188 192.851562 286.117188 192.734375 Z M 286.117188 192.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.335938 192.746094 C 285.335938 192.628906 285.242188 192.535156 285.125 192.535156 C 285.007812 192.535156 284.914062 192.628906 284.914062 192.746094 C 284.914062 192.863281 285.007812 192.957031 285.125 192.957031 C 285.242188 192.957031 285.335938 192.863281 285.335938 192.746094 Z M 285.335938 192.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.21875 190.882812 C 284.21875 190.765625 284.125 190.671875 284.007812 190.671875 C 283.890625 190.671875 283.796875 190.765625 283.796875 190.882812 C 283.796875 191 283.890625 191.09375 284.007812 191.09375 C 284.125 191.09375 284.21875 191 284.21875 190.882812 Z M 284.21875 190.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.53125 191.082031 C 285.53125 190.964844 285.4375 190.871094 285.320312 190.871094 C 285.203125 190.871094 285.109375 190.964844 285.109375 191.082031 C 285.109375 191.199219 285.203125 191.292969 285.320312 191.292969 C 285.4375 191.292969 285.53125 191.199219 285.53125 191.082031 Z M 285.53125 191.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.019531 188.863281 C 284.019531 188.746094 283.925781 188.652344 283.808594 188.652344 C 283.691406 188.652344 283.597656 188.746094 283.597656 188.863281 C 283.597656 188.980469 283.691406 189.074219 283.808594 189.074219 C 283.925781 189.074219 284.019531 188.980469 284.019531 188.863281 Z M 284.019531 188.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.925781 190.636719 C 280.925781 190.519531 280.832031 190.425781 280.714844 190.425781 C 280.597656 190.425781 280.503906 190.519531 280.503906 190.636719 C 280.503906 190.753906 280.597656 190.847656 280.714844 190.847656 C 280.832031 190.847656 280.925781 190.753906 280.925781 190.636719 Z M 280.925781 190.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.125 187.679688 C 281.125 187.5625 281.03125 187.46875 280.914062 187.46875 C 280.796875 187.46875 280.703125 187.5625 280.703125 187.679688 C 280.703125 187.796875 280.796875 187.890625 280.914062 187.890625 C 281.03125 187.890625 281.125 187.796875 281.125 187.679688 Z M 281.125 187.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.117188 190.949219 C 284.117188 190.832031 284.023438 190.738281 283.90625 190.738281 C 283.789062 190.738281 283.695312 190.832031 283.695312 190.949219 C 283.695312 191.066406 283.789062 191.160156 283.90625 191.160156 C 284.023438 191.160156 284.117188 191.066406 284.117188 190.949219 Z M 284.117188 190.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.601562 192.132812 C 284.601562 192.015625 284.507812 191.921875 284.390625 191.921875 C 284.273438 191.921875 284.179688 192.015625 284.179688 192.132812 C 284.179688 192.25 284.273438 192.34375 284.390625 192.34375 C 284.507812 192.34375 284.601562 192.25 284.601562 192.132812 Z M 284.601562 192.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.957031 195.050781 C 282.957031 194.933594 282.863281 194.839844 282.746094 194.839844 C 282.628906 194.839844 282.535156 194.933594 282.535156 195.050781 C 282.535156 195.167969 282.628906 195.261719 282.746094 195.261719 C 282.863281 195.261719 282.957031 195.167969 282.957031 195.050781 Z M 282.957031 195.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.414062 191.84375 C 279.414062 191.726562 279.320312 191.632812 279.203125 191.632812 C 279.085938 191.632812 278.992188 191.726562 278.992188 191.84375 C 278.992188 191.960938 279.085938 192.054688 279.203125 192.054688 C 279.320312 192.054688 279.414062 191.960938 279.414062 191.84375 Z M 279.414062 191.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.925781 191.847656 C 278.925781 191.730469 278.832031 191.636719 278.714844 191.636719 C 278.597656 191.636719 278.503906 191.730469 278.503906 191.847656 C 278.503906 191.964844 278.597656 192.058594 278.714844 192.058594 C 278.832031 192.058594 278.925781 191.964844 278.925781 191.847656 Z M 278.925781 191.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.128906 191.761719 C 278.128906 191.644531 278.035156 191.550781 277.917969 191.550781 C 277.800781 191.550781 277.707031 191.644531 277.707031 191.761719 C 277.707031 191.878906 277.800781 191.972656 277.917969 191.972656 C 278.035156 191.972656 278.128906 191.878906 278.128906 191.761719 Z M 278.128906 191.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.886719 190.1875 C 278.886719 190.070312 278.792969 189.976562 278.675781 189.976562 C 278.558594 189.976562 278.464844 190.070312 278.464844 190.1875 C 278.464844 190.304688 278.558594 190.398438 278.675781 190.398438 C 278.792969 190.398438 278.886719 190.304688 278.886719 190.1875 Z M 278.886719 190.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.054688 188.5 C 278.054688 188.382812 277.960938 188.289062 277.84375 188.289062 C 277.726562 188.289062 277.632812 188.382812 277.632812 188.5 C 277.632812 188.617188 277.726562 188.710938 277.84375 188.710938 C 277.960938 188.710938 278.054688 188.617188 278.054688 188.5 Z M 278.054688 188.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.898438 193.90625 C 278.898438 193.789062 278.804688 193.695312 278.6875 193.695312 C 278.570312 193.695312 278.476562 193.789062 278.476562 193.90625 C 278.476562 194.023438 278.570312 194.117188 278.6875 194.117188 C 278.804688 194.117188 278.898438 194.023438 278.898438 193.90625 Z M 278.898438 193.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.714844 193.960938 C 281.714844 193.84375 281.621094 193.75 281.503906 193.75 C 281.386719 193.75 281.292969 193.84375 281.292969 193.960938 C 281.292969 194.078125 281.386719 194.171875 281.503906 194.171875 C 281.621094 194.171875 281.714844 194.078125 281.714844 193.960938 Z M 281.714844 193.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.75 197.175781 C 283.75 197.058594 283.65625 196.964844 283.539062 196.964844 C 283.421875 196.964844 283.328125 197.058594 283.328125 197.175781 C 283.328125 197.292969 283.421875 197.386719 283.539062 197.386719 C 283.65625 197.386719 283.75 197.292969 283.75 197.175781 Z M 283.75 197.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.882812 199.890625 C 283.882812 199.773438 283.789062 199.679688 283.671875 199.679688 C 283.554688 199.679688 283.460938 199.773438 283.460938 199.890625 C 283.460938 200.007812 283.554688 200.101562 283.671875 200.101562 C 283.789062 200.101562 283.882812 200.007812 283.882812 199.890625 Z M 283.882812 199.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.035156 200.933594 C 281.035156 200.816406 280.941406 200.722656 280.824219 200.722656 C 280.707031 200.722656 280.613281 200.816406 280.613281 200.933594 C 280.613281 201.050781 280.707031 201.144531 280.824219 201.144531 C 280.941406 201.144531 281.035156 201.050781 281.035156 200.933594 Z M 281.035156 200.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.003906 202.417969 C 285.003906 202.300781 284.910156 202.207031 284.792969 202.207031 C 284.675781 202.207031 284.582031 202.300781 284.582031 202.417969 C 284.582031 202.535156 284.675781 202.628906 284.792969 202.628906 C 284.910156 202.628906 285.003906 202.535156 285.003906 202.417969 Z M 285.003906 202.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.496094 202.21875 C 285.496094 202.101562 285.402344 202.007812 285.285156 202.007812 C 285.167969 202.007812 285.074219 202.101562 285.074219 202.21875 C 285.074219 202.335938 285.167969 202.429688 285.285156 202.429688 C 285.402344 202.429688 285.496094 202.335938 285.496094 202.21875 Z M 285.496094 202.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.433594 198.789062 C 283.433594 198.671875 283.339844 198.578125 283.222656 198.578125 C 283.105469 198.578125 283.011719 198.671875 283.011719 198.789062 C 283.011719 198.90625 283.105469 199 283.222656 199 C 283.339844 199 283.433594 198.90625 283.433594 198.789062 Z M 283.433594 198.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.589844 196.417969 C 283.589844 196.300781 283.496094 196.207031 283.378906 196.207031 C 283.261719 196.207031 283.167969 196.300781 283.167969 196.417969 C 283.167969 196.535156 283.261719 196.628906 283.378906 196.628906 C 283.496094 196.628906 283.589844 196.535156 283.589844 196.417969 Z M 283.589844 196.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.820312 194.3125 C 280.820312 194.195312 280.726562 194.101562 280.609375 194.101562 C 280.492188 194.101562 280.398438 194.195312 280.398438 194.3125 C 280.398438 194.429688 280.492188 194.523438 280.609375 194.523438 C 280.726562 194.523438 280.820312 194.429688 280.820312 194.3125 Z M 280.820312 194.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.605469 192.546875 C 281.605469 192.429688 281.511719 192.335938 281.394531 192.335938 C 281.277344 192.335938 281.183594 192.429688 281.183594 192.546875 C 281.183594 192.664062 281.277344 192.757812 281.394531 192.757812 C 281.511719 192.757812 281.605469 192.664062 281.605469 192.546875 Z M 281.605469 192.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.210938 191.957031 C 281.210938 191.839844 281.117188 191.746094 281 191.746094 C 280.882812 191.746094 280.789062 191.839844 280.789062 191.957031 C 280.789062 192.074219 280.882812 192.167969 281 192.167969 C 281.117188 192.167969 281.210938 192.074219 281.210938 191.957031 Z M 281.210938 191.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.609375 191.441406 C 280.609375 191.324219 280.515625 191.230469 280.398438 191.230469 C 280.28125 191.230469 280.1875 191.324219 280.1875 191.441406 C 280.1875 191.558594 280.28125 191.652344 280.398438 191.652344 C 280.515625 191.652344 280.609375 191.558594 280.609375 191.441406 Z M 280.609375 191.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.335938 188.625 C 279.335938 188.507812 279.242188 188.414062 279.125 188.414062 C 279.007812 188.414062 278.914062 188.507812 278.914062 188.625 C 278.914062 188.742188 279.007812 188.835938 279.125 188.835938 C 279.242188 188.835938 279.335938 188.742188 279.335938 188.625 Z M 279.335938 188.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.1875 187.144531 C 279.1875 187.027344 279.09375 186.933594 278.976562 186.933594 C 278.859375 186.933594 278.765625 187.027344 278.765625 187.144531 C 278.765625 187.261719 278.859375 187.355469 278.976562 187.355469 C 279.09375 187.355469 279.1875 187.261719 279.1875 187.144531 Z M 279.1875 187.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.699219 187.265625 C 278.699219 187.148438 278.605469 187.054688 278.488281 187.054688 C 278.371094 187.054688 278.277344 187.148438 278.277344 187.265625 C 278.277344 187.382812 278.371094 187.476562 278.488281 187.476562 C 278.605469 187.476562 278.699219 187.382812 278.699219 187.265625 Z M 278.699219 187.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.1875 190.027344 C 278.1875 189.910156 278.09375 189.816406 277.976562 189.816406 C 277.859375 189.816406 277.765625 189.910156 277.765625 190.027344 C 277.765625 190.144531 277.859375 190.238281 277.976562 190.238281 C 278.09375 190.238281 278.1875 190.144531 278.1875 190.027344 Z M 278.1875 190.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.28125 187.09375 C 276.28125 186.976562 276.1875 186.882812 276.070312 186.882812 C 275.953125 186.882812 275.859375 186.976562 275.859375 187.09375 C 275.859375 187.210938 275.953125 187.304688 276.070312 187.304688 C 276.1875 187.304688 276.28125 187.210938 276.28125 187.09375 Z M 276.28125 187.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.902344 183.21875 C 277.902344 183.101562 277.808594 183.007812 277.691406 183.007812 C 277.574219 183.007812 277.480469 183.101562 277.480469 183.21875 C 277.480469 183.335938 277.574219 183.429688 277.691406 183.429688 C 277.808594 183.429688 277.902344 183.335938 277.902344 183.21875 Z M 277.902344 183.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.773438 181.578125 C 274.773438 181.460938 274.679688 181.367188 274.5625 181.367188 C 274.445312 181.367188 274.351562 181.460938 274.351562 181.578125 C 274.351562 181.695312 274.445312 181.789062 274.5625 181.789062 C 274.679688 181.789062 274.773438 181.695312 274.773438 181.578125 Z M 274.773438 181.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.796875 183.402344 C 275.796875 183.285156 275.703125 183.191406 275.585938 183.191406 C 275.46875 183.191406 275.375 183.285156 275.375 183.402344 C 275.375 183.519531 275.46875 183.613281 275.585938 183.613281 C 275.703125 183.613281 275.796875 183.519531 275.796875 183.402344 Z M 275.796875 183.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.589844 180.066406 C 274.589844 179.949219 274.496094 179.855469 274.378906 179.855469 C 274.261719 179.855469 274.167969 179.949219 274.167969 180.066406 C 274.167969 180.183594 274.261719 180.277344 274.378906 180.277344 C 274.496094 180.277344 274.589844 180.183594 274.589844 180.066406 Z M 274.589844 180.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.917969 181.914062 C 272.917969 181.796875 272.824219 181.703125 272.707031 181.703125 C 272.589844 181.703125 272.496094 181.796875 272.496094 181.914062 C 272.496094 182.03125 272.589844 182.125 272.707031 182.125 C 272.824219 182.125 272.917969 182.03125 272.917969 181.914062 Z M 272.917969 181.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.507812 184.761719 C 272.507812 184.644531 272.414062 184.550781 272.296875 184.550781 C 272.179688 184.550781 272.085938 184.644531 272.085938 184.761719 C 272.085938 184.878906 272.179688 184.972656 272.296875 184.972656 C 272.414062 184.972656 272.507812 184.878906 272.507812 184.761719 Z M 272.507812 184.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.230469 184.132812 C 270.230469 184.015625 270.136719 183.921875 270.019531 183.921875 C 269.902344 183.921875 269.808594 184.015625 269.808594 184.132812 C 269.808594 184.25 269.902344 184.34375 270.019531 184.34375 C 270.136719 184.34375 270.230469 184.25 270.230469 184.132812 Z M 270.230469 184.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.238281 182.589844 C 271.238281 182.472656 271.144531 182.378906 271.027344 182.378906 C 270.910156 182.378906 270.816406 182.472656 270.816406 182.589844 C 270.816406 182.707031 270.910156 182.800781 271.027344 182.800781 C 271.144531 182.800781 271.238281 182.707031 271.238281 182.589844 Z M 271.238281 182.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.527344 183.320312 C 276.527344 183.203125 276.433594 183.109375 276.316406 183.109375 C 276.199219 183.109375 276.105469 183.203125 276.105469 183.320312 C 276.105469 183.4375 276.199219 183.53125 276.316406 183.53125 C 276.433594 183.53125 276.527344 183.4375 276.527344 183.320312 Z M 276.527344 183.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.777344 184.527344 C 278.777344 184.410156 278.683594 184.316406 278.566406 184.316406 C 278.449219 184.316406 278.355469 184.410156 278.355469 184.527344 C 278.355469 184.644531 278.449219 184.738281 278.566406 184.738281 C 278.683594 184.738281 278.777344 184.644531 278.777344 184.527344 Z M 278.777344 184.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.824219 185.152344 C 275.824219 185.035156 275.730469 184.941406 275.613281 184.941406 C 275.496094 184.941406 275.402344 185.035156 275.402344 185.152344 C 275.402344 185.269531 275.496094 185.363281 275.613281 185.363281 C 275.730469 185.363281 275.824219 185.269531 275.824219 185.152344 Z M 275.824219 185.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.375 187.773438 C 274.375 187.65625 274.28125 187.5625 274.164062 187.5625 C 274.046875 187.5625 273.953125 187.65625 273.953125 187.773438 C 273.953125 187.890625 274.046875 187.984375 274.164062 187.984375 C 274.28125 187.984375 274.375 187.890625 274.375 187.773438 Z M 274.375 187.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.527344 187.996094 C 272.527344 187.878906 272.433594 187.785156 272.316406 187.785156 C 272.199219 187.785156 272.105469 187.878906 272.105469 187.996094 C 272.105469 188.113281 272.199219 188.207031 272.316406 188.207031 C 272.433594 188.207031 272.527344 188.113281 272.527344 187.996094 Z M 272.527344 187.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.0625 187.445312 C 272.0625 187.328125 271.96875 187.234375 271.851562 187.234375 C 271.734375 187.234375 271.640625 187.328125 271.640625 187.445312 C 271.640625 187.5625 271.734375 187.65625 271.851562 187.65625 C 271.96875 187.65625 272.0625 187.5625 272.0625 187.445312 Z M 272.0625 187.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.785156 188.28125 C 271.785156 188.164062 271.691406 188.070312 271.574219 188.070312 C 271.457031 188.070312 271.363281 188.164062 271.363281 188.28125 C 271.363281 188.398438 271.457031 188.492188 271.574219 188.492188 C 271.691406 188.492188 271.785156 188.398438 271.785156 188.28125 Z M 271.785156 188.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.195312 188.699219 C 273.195312 188.582031 273.101562 188.488281 272.984375 188.488281 C 272.867188 188.488281 272.773438 188.582031 272.773438 188.699219 C 272.773438 188.816406 272.867188 188.910156 272.984375 188.910156 C 273.101562 188.910156 273.195312 188.816406 273.195312 188.699219 Z M 273.195312 188.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.640625 188.894531 C 270.640625 188.777344 270.546875 188.683594 270.429688 188.683594 C 270.3125 188.683594 270.21875 188.777344 270.21875 188.894531 C 270.21875 189.011719 270.3125 189.105469 270.429688 189.105469 C 270.546875 189.105469 270.640625 189.011719 270.640625 188.894531 Z M 270.640625 188.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.496094 189.667969 C 274.496094 189.550781 274.402344 189.457031 274.285156 189.457031 C 274.167969 189.457031 274.074219 189.550781 274.074219 189.667969 C 274.074219 189.785156 274.167969 189.878906 274.285156 189.878906 C 274.402344 189.878906 274.496094 189.785156 274.496094 189.667969 Z M 274.496094 189.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.738281 186.753906 C 275.738281 186.636719 275.644531 186.542969 275.527344 186.542969 C 275.410156 186.542969 275.316406 186.636719 275.316406 186.753906 C 275.316406 186.871094 275.410156 186.964844 275.527344 186.964844 C 275.644531 186.964844 275.738281 186.871094 275.738281 186.753906 Z M 275.738281 186.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.242188 187.277344 C 277.242188 187.160156 277.148438 187.066406 277.03125 187.066406 C 276.914062 187.066406 276.820312 187.160156 276.820312 187.277344 C 276.820312 187.394531 276.914062 187.488281 277.03125 187.488281 C 277.148438 187.488281 277.242188 187.394531 277.242188 187.277344 Z M 277.242188 187.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.976562 186.964844 C 276.976562 186.847656 276.882812 186.753906 276.765625 186.753906 C 276.648438 186.753906 276.554688 186.847656 276.554688 186.964844 C 276.554688 187.082031 276.648438 187.175781 276.765625 187.175781 C 276.882812 187.175781 276.976562 187.082031 276.976562 186.964844 Z M 276.976562 186.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.855469 189.769531 C 276.855469 189.652344 276.761719 189.558594 276.644531 189.558594 C 276.527344 189.558594 276.433594 189.652344 276.433594 189.769531 C 276.433594 189.886719 276.527344 189.980469 276.644531 189.980469 C 276.761719 189.980469 276.855469 189.886719 276.855469 189.769531 Z M 276.855469 189.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277 188.96875 C 277 188.851562 276.90625 188.757812 276.789062 188.757812 C 276.671875 188.757812 276.578125 188.851562 276.578125 188.96875 C 276.578125 189.085938 276.671875 189.179688 276.789062 189.179688 C 276.90625 189.179688 277 189.085938 277 188.96875 Z M 277 188.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.117188 191.085938 C 276.117188 190.96875 276.023438 190.875 275.90625 190.875 C 275.789062 190.875 275.695312 190.96875 275.695312 191.085938 C 275.695312 191.203125 275.789062 191.296875 275.90625 191.296875 C 276.023438 191.296875 276.117188 191.203125 276.117188 191.085938 Z M 276.117188 191.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.042969 193.046875 C 275.042969 192.929688 274.949219 192.835938 274.832031 192.835938 C 274.714844 192.835938 274.621094 192.929688 274.621094 193.046875 C 274.621094 193.164062 274.714844 193.257812 274.832031 193.257812 C 274.949219 193.257812 275.042969 193.164062 275.042969 193.046875 Z M 275.042969 193.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.03125 194.082031 C 273.03125 193.964844 272.9375 193.871094 272.820312 193.871094 C 272.703125 193.871094 272.609375 193.964844 272.609375 194.082031 C 272.609375 194.199219 272.703125 194.292969 272.820312 194.292969 C 272.9375 194.292969 273.03125 194.199219 273.03125 194.082031 Z M 273.03125 194.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.816406 193.40625 C 273.816406 193.289062 273.722656 193.195312 273.605469 193.195312 C 273.488281 193.195312 273.394531 193.289062 273.394531 193.40625 C 273.394531 193.523438 273.488281 193.617188 273.605469 193.617188 C 273.722656 193.617188 273.816406 193.523438 273.816406 193.40625 Z M 273.816406 193.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.695312 195.949219 C 272.695312 195.832031 272.601562 195.738281 272.484375 195.738281 C 272.367188 195.738281 272.273438 195.832031 272.273438 195.949219 C 272.273438 196.066406 272.367188 196.160156 272.484375 196.160156 C 272.601562 196.160156 272.695312 196.066406 272.695312 195.949219 Z M 272.695312 195.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.953125 195.671875 C 275.953125 195.554688 275.859375 195.460938 275.742188 195.460938 C 275.625 195.460938 275.53125 195.554688 275.53125 195.671875 C 275.53125 195.789062 275.625 195.882812 275.742188 195.882812 C 275.859375 195.882812 275.953125 195.789062 275.953125 195.671875 Z M 275.953125 195.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.636719 192.546875 C 274.636719 192.429688 274.542969 192.335938 274.425781 192.335938 C 274.308594 192.335938 274.214844 192.429688 274.214844 192.546875 C 274.214844 192.664062 274.308594 192.757812 274.425781 192.757812 C 274.542969 192.757812 274.636719 192.664062 274.636719 192.546875 Z M 274.636719 192.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.703125 192.367188 C 275.703125 192.25 275.609375 192.15625 275.492188 192.15625 C 275.375 192.15625 275.28125 192.25 275.28125 192.367188 C 275.28125 192.484375 275.375 192.578125 275.492188 192.578125 C 275.609375 192.578125 275.703125 192.484375 275.703125 192.367188 Z M 275.703125 192.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.769531 195.636719 C 274.769531 195.519531 274.675781 195.425781 274.558594 195.425781 C 274.441406 195.425781 274.347656 195.519531 274.347656 195.636719 C 274.347656 195.753906 274.441406 195.847656 274.558594 195.847656 C 274.675781 195.847656 274.769531 195.753906 274.769531 195.636719 Z M 274.769531 195.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.460938 197.238281 C 275.460938 197.121094 275.367188 197.027344 275.25 197.027344 C 275.132812 197.027344 275.039062 197.121094 275.039062 197.238281 C 275.039062 197.355469 275.132812 197.449219 275.25 197.449219 C 275.367188 197.449219 275.460938 197.355469 275.460938 197.238281 Z M 275.460938 197.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.671875 198.640625 C 272.671875 198.523438 272.578125 198.429688 272.460938 198.429688 C 272.34375 198.429688 272.25 198.523438 272.25 198.640625 C 272.25 198.757812 272.34375 198.851562 272.460938 198.851562 C 272.578125 198.851562 272.671875 198.757812 272.671875 198.640625 Z M 272.671875 198.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.238281 202.265625 C 273.238281 202.148438 273.144531 202.054688 273.027344 202.054688 C 272.910156 202.054688 272.816406 202.148438 272.816406 202.265625 C 272.816406 202.382812 272.910156 202.476562 273.027344 202.476562 C 273.144531 202.476562 273.238281 202.382812 273.238281 202.265625 Z M 273.238281 202.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.867188 203.003906 C 273.867188 202.886719 273.773438 202.792969 273.65625 202.792969 C 273.539062 202.792969 273.445312 202.886719 273.445312 203.003906 C 273.445312 203.121094 273.539062 203.214844 273.65625 203.214844 C 273.773438 203.214844 273.867188 203.121094 273.867188 203.003906 Z M 273.867188 203.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.980469 197.820312 C 271.980469 197.703125 271.886719 197.609375 271.769531 197.609375 C 271.652344 197.609375 271.558594 197.703125 271.558594 197.820312 C 271.558594 197.9375 271.652344 198.03125 271.769531 198.03125 C 271.886719 198.03125 271.980469 197.9375 271.980469 197.820312 Z M 271.980469 197.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.117188 200.496094 C 275.117188 200.378906 275.023438 200.285156 274.90625 200.285156 C 274.789062 200.285156 274.695312 200.378906 274.695312 200.496094 C 274.695312 200.613281 274.789062 200.707031 274.90625 200.707031 C 275.023438 200.707031 275.117188 200.613281 275.117188 200.496094 Z M 275.117188 200.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.5625 201.308594 C 278.5625 201.191406 278.46875 201.097656 278.351562 201.097656 C 278.234375 201.097656 278.140625 201.191406 278.140625 201.308594 C 278.140625 201.425781 278.234375 201.519531 278.351562 201.519531 C 278.46875 201.519531 278.5625 201.425781 278.5625 201.308594 Z M 278.5625 201.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.640625 197.195312 C 277.640625 197.078125 277.546875 196.984375 277.429688 196.984375 C 277.3125 196.984375 277.21875 197.078125 277.21875 197.195312 C 277.21875 197.3125 277.3125 197.40625 277.429688 197.40625 C 277.546875 197.40625 277.640625 197.3125 277.640625 197.195312 Z M 277.640625 197.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.292969 198.523438 C 277.292969 198.40625 277.199219 198.3125 277.082031 198.3125 C 276.964844 198.3125 276.871094 198.40625 276.871094 198.523438 C 276.871094 198.640625 276.964844 198.734375 277.082031 198.734375 C 277.199219 198.734375 277.292969 198.640625 277.292969 198.523438 Z M 277.292969 198.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.917969 197.714844 C 273.917969 197.597656 273.824219 197.503906 273.707031 197.503906 C 273.589844 197.503906 273.496094 197.597656 273.496094 197.714844 C 273.496094 197.832031 273.589844 197.925781 273.707031 197.925781 C 273.824219 197.925781 273.917969 197.832031 273.917969 197.714844 Z M 273.917969 197.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.609375 199.191406 C 274.609375 199.074219 274.515625 198.980469 274.398438 198.980469 C 274.28125 198.980469 274.1875 199.074219 274.1875 199.191406 C 274.1875 199.308594 274.28125 199.402344 274.398438 199.402344 C 274.515625 199.402344 274.609375 199.308594 274.609375 199.191406 Z M 274.609375 199.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.066406 199.066406 C 276.066406 198.949219 275.972656 198.855469 275.855469 198.855469 C 275.738281 198.855469 275.644531 198.949219 275.644531 199.066406 C 275.644531 199.183594 275.738281 199.277344 275.855469 199.277344 C 275.972656 199.277344 276.066406 199.183594 276.066406 199.066406 Z M 276.066406 199.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.296875 200.359375 C 275.296875 200.242188 275.203125 200.148438 275.085938 200.148438 C 274.96875 200.148438 274.875 200.242188 274.875 200.359375 C 274.875 200.476562 274.96875 200.570312 275.085938 200.570312 C 275.203125 200.570312 275.296875 200.476562 275.296875 200.359375 Z M 275.296875 200.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.824219 200.394531 C 275.824219 200.277344 275.730469 200.183594 275.613281 200.183594 C 275.496094 200.183594 275.402344 200.277344 275.402344 200.394531 C 275.402344 200.511719 275.496094 200.605469 275.613281 200.605469 C 275.730469 200.605469 275.824219 200.511719 275.824219 200.394531 Z M 275.824219 200.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.984375 201.070312 C 274.984375 200.953125 274.890625 200.859375 274.773438 200.859375 C 274.65625 200.859375 274.5625 200.953125 274.5625 201.070312 C 274.5625 201.1875 274.65625 201.28125 274.773438 201.28125 C 274.890625 201.28125 274.984375 201.1875 274.984375 201.070312 Z M 274.984375 201.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.125 201.347656 C 273.125 201.230469 273.03125 201.136719 272.914062 201.136719 C 272.796875 201.136719 272.703125 201.230469 272.703125 201.347656 C 272.703125 201.464844 272.796875 201.558594 272.914062 201.558594 C 273.03125 201.558594 273.125 201.464844 273.125 201.347656 Z M 273.125 201.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.050781 203.382812 C 274.050781 203.265625 273.957031 203.171875 273.839844 203.171875 C 273.722656 203.171875 273.628906 203.265625 273.628906 203.382812 C 273.628906 203.5 273.722656 203.59375 273.839844 203.59375 C 273.957031 203.59375 274.050781 203.5 274.050781 203.382812 Z M 274.050781 203.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.539062 202.601562 C 274.539062 202.484375 274.445312 202.390625 274.328125 202.390625 C 274.210938 202.390625 274.117188 202.484375 274.117188 202.601562 C 274.117188 202.71875 274.210938 202.8125 274.328125 202.8125 C 274.445312 202.8125 274.539062 202.71875 274.539062 202.601562 Z M 274.539062 202.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.089844 196.535156 C 273.089844 196.417969 272.996094 196.324219 272.878906 196.324219 C 272.761719 196.324219 272.667969 196.417969 272.667969 196.535156 C 272.667969 196.652344 272.761719 196.746094 272.878906 196.746094 C 272.996094 196.746094 273.089844 196.652344 273.089844 196.535156 Z M 273.089844 196.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.789062 195.050781 C 276.789062 194.933594 276.695312 194.839844 276.578125 194.839844 C 276.460938 194.839844 276.367188 194.933594 276.367188 195.050781 C 276.367188 195.167969 276.460938 195.261719 276.578125 195.261719 C 276.695312 195.261719 276.789062 195.167969 276.789062 195.050781 Z M 276.789062 195.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.1875 195.128906 C 275.1875 195.011719 275.09375 194.917969 274.976562 194.917969 C 274.859375 194.917969 274.765625 195.011719 274.765625 195.128906 C 274.765625 195.246094 274.859375 195.339844 274.976562 195.339844 C 275.09375 195.339844 275.1875 195.246094 275.1875 195.128906 Z M 275.1875 195.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.652344 194.566406 C 276.652344 194.449219 276.558594 194.355469 276.441406 194.355469 C 276.324219 194.355469 276.230469 194.449219 276.230469 194.566406 C 276.230469 194.683594 276.324219 194.777344 276.441406 194.777344 C 276.558594 194.777344 276.652344 194.683594 276.652344 194.566406 Z M 276.652344 194.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.496094 190.269531 C 276.496094 190.152344 276.402344 190.058594 276.285156 190.058594 C 276.167969 190.058594 276.074219 190.152344 276.074219 190.269531 C 276.074219 190.386719 276.167969 190.480469 276.285156 190.480469 C 276.402344 190.480469 276.496094 190.386719 276.496094 190.269531 Z M 276.496094 190.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.453125 191.328125 C 277.453125 191.210938 277.359375 191.117188 277.242188 191.117188 C 277.125 191.117188 277.03125 191.210938 277.03125 191.328125 C 277.03125 191.445312 277.125 191.539062 277.242188 191.539062 C 277.359375 191.539062 277.453125 191.445312 277.453125 191.328125 Z M 277.453125 191.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.613281 191.679688 C 276.613281 191.5625 276.519531 191.46875 276.402344 191.46875 C 276.285156 191.46875 276.191406 191.5625 276.191406 191.679688 C 276.191406 191.796875 276.285156 191.890625 276.402344 191.890625 C 276.519531 191.890625 276.613281 191.796875 276.613281 191.679688 Z M 276.613281 191.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.78125 191.402344 C 279.78125 191.285156 279.6875 191.191406 279.570312 191.191406 C 279.453125 191.191406 279.359375 191.285156 279.359375 191.402344 C 279.359375 191.519531 279.453125 191.613281 279.570312 191.613281 C 279.6875 191.613281 279.78125 191.519531 279.78125 191.402344 Z M 279.78125 191.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.945312 192.667969 C 274.945312 192.550781 274.851562 192.457031 274.734375 192.457031 C 274.617188 192.457031 274.523438 192.550781 274.523438 192.667969 C 274.523438 192.785156 274.617188 192.878906 274.734375 192.878906 C 274.851562 192.878906 274.945312 192.785156 274.945312 192.667969 Z M 274.945312 192.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.042969 193.8125 C 275.042969 193.695312 274.949219 193.601562 274.832031 193.601562 C 274.714844 193.601562 274.621094 193.695312 274.621094 193.8125 C 274.621094 193.929688 274.714844 194.023438 274.832031 194.023438 C 274.949219 194.023438 275.042969 193.929688 275.042969 193.8125 Z M 275.042969 193.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.265625 191.917969 C 276.265625 191.800781 276.171875 191.707031 276.054688 191.707031 C 275.9375 191.707031 275.84375 191.800781 275.84375 191.917969 C 275.84375 192.035156 275.9375 192.128906 276.054688 192.128906 C 276.171875 192.128906 276.265625 192.035156 276.265625 191.917969 Z M 276.265625 191.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.328125 192.453125 C 280.328125 192.335938 280.234375 192.242188 280.117188 192.242188 C 280 192.242188 279.90625 192.335938 279.90625 192.453125 C 279.90625 192.570312 280 192.664062 280.117188 192.664062 C 280.234375 192.664062 280.328125 192.570312 280.328125 192.453125 Z M 280.328125 192.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.671875 191.015625 C 282.671875 190.898438 282.578125 190.804688 282.460938 190.804688 C 282.34375 190.804688 282.25 190.898438 282.25 191.015625 C 282.25 191.132812 282.34375 191.226562 282.460938 191.226562 C 282.578125 191.226562 282.671875 191.132812 282.671875 191.015625 Z M 282.671875 191.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.722656 194.296875 C 279.722656 194.179688 279.628906 194.085938 279.511719 194.085938 C 279.394531 194.085938 279.300781 194.179688 279.300781 194.296875 C 279.300781 194.414062 279.394531 194.507812 279.511719 194.507812 C 279.628906 194.507812 279.722656 194.414062 279.722656 194.296875 Z M 279.722656 194.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.417969 195.164062 C 278.417969 195.046875 278.324219 194.953125 278.207031 194.953125 C 278.089844 194.953125 277.996094 195.046875 277.996094 195.164062 C 277.996094 195.28125 278.089844 195.375 278.207031 195.375 C 278.324219 195.375 278.417969 195.28125 278.417969 195.164062 Z M 278.417969 195.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.488281 194.613281 C 280.488281 194.496094 280.394531 194.402344 280.277344 194.402344 C 280.160156 194.402344 280.066406 194.496094 280.066406 194.613281 C 280.066406 194.730469 280.160156 194.824219 280.277344 194.824219 C 280.394531 194.824219 280.488281 194.730469 280.488281 194.613281 Z M 280.488281 194.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.632812 192.28125 C 279.632812 192.164062 279.539062 192.070312 279.421875 192.070312 C 279.304688 192.070312 279.210938 192.164062 279.210938 192.28125 C 279.210938 192.398438 279.304688 192.492188 279.421875 192.492188 C 279.539062 192.492188 279.632812 192.398438 279.632812 192.28125 Z M 279.632812 192.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.566406 191.109375 C 276.566406 190.992188 276.472656 190.898438 276.355469 190.898438 C 276.238281 190.898438 276.144531 190.992188 276.144531 191.109375 C 276.144531 191.226562 276.238281 191.320312 276.355469 191.320312 C 276.472656 191.320312 276.566406 191.226562 276.566406 191.109375 Z M 276.566406 191.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.269531 189.578125 C 275.269531 189.460938 275.175781 189.367188 275.058594 189.367188 C 274.941406 189.367188 274.847656 189.460938 274.847656 189.578125 C 274.847656 189.695312 274.941406 189.789062 275.058594 189.789062 C 275.175781 189.789062 275.269531 189.695312 275.269531 189.578125 Z M 275.269531 189.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.226562 185.0625 C 277.226562 184.945312 277.132812 184.851562 277.015625 184.851562 C 276.898438 184.851562 276.804688 184.945312 276.804688 185.0625 C 276.804688 185.179688 276.898438 185.273438 277.015625 185.273438 C 277.132812 185.273438 277.226562 185.179688 277.226562 185.0625 Z M 277.226562 185.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.875 184.699219 C 270.875 184.582031 270.78125 184.488281 270.664062 184.488281 C 270.546875 184.488281 270.453125 184.582031 270.453125 184.699219 C 270.453125 184.816406 270.546875 184.910156 270.664062 184.910156 C 270.78125 184.910156 270.875 184.816406 270.875 184.699219 Z M 270.875 184.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.601562 185.425781 C 269.601562 185.308594 269.507812 185.214844 269.390625 185.214844 C 269.273438 185.214844 269.179688 185.308594 269.179688 185.425781 C 269.179688 185.542969 269.273438 185.636719 269.390625 185.636719 C 269.507812 185.636719 269.601562 185.542969 269.601562 185.425781 Z M 269.601562 185.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.886719 188.46875 C 268.886719 188.351562 268.792969 188.257812 268.675781 188.257812 C 268.558594 188.257812 268.464844 188.351562 268.464844 188.46875 C 268.464844 188.585938 268.558594 188.679688 268.675781 188.679688 C 268.792969 188.679688 268.886719 188.585938 268.886719 188.46875 Z M 268.886719 188.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.914062 189.246094 C 263.914062 189.128906 263.820312 189.035156 263.703125 189.035156 C 263.585938 189.035156 263.492188 189.128906 263.492188 189.246094 C 263.492188 189.363281 263.585938 189.457031 263.703125 189.457031 C 263.820312 189.457031 263.914062 189.363281 263.914062 189.246094 Z M 263.914062 189.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.910156 189.546875 C 265.910156 189.429688 265.816406 189.335938 265.699219 189.335938 C 265.582031 189.335938 265.488281 189.429688 265.488281 189.546875 C 265.488281 189.664062 265.582031 189.757812 265.699219 189.757812 C 265.816406 189.757812 265.910156 189.664062 265.910156 189.546875 Z M 265.910156 189.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.777344 188.542969 C 262.777344 188.425781 262.683594 188.332031 262.566406 188.332031 C 262.449219 188.332031 262.355469 188.425781 262.355469 188.542969 C 262.355469 188.660156 262.449219 188.753906 262.566406 188.753906 C 262.683594 188.753906 262.777344 188.660156 262.777344 188.542969 Z M 262.777344 188.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.480469 184.972656 C 262.480469 184.855469 262.386719 184.761719 262.269531 184.761719 C 262.152344 184.761719 262.058594 184.855469 262.058594 184.972656 C 262.058594 185.089844 262.152344 185.183594 262.269531 185.183594 C 262.386719 185.183594 262.480469 185.089844 262.480469 184.972656 Z M 262.480469 184.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.105469 188.144531 C 259.105469 188.027344 259.011719 187.933594 258.894531 187.933594 C 258.777344 187.933594 258.683594 188.027344 258.683594 188.144531 C 258.683594 188.261719 258.777344 188.355469 258.894531 188.355469 C 259.011719 188.355469 259.105469 188.261719 259.105469 188.144531 Z M 259.105469 188.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.246094 192.277344 C 261.246094 192.160156 261.152344 192.066406 261.035156 192.066406 C 260.917969 192.066406 260.824219 192.160156 260.824219 192.277344 C 260.824219 192.394531 260.917969 192.488281 261.035156 192.488281 C 261.152344 192.488281 261.246094 192.394531 261.246094 192.277344 Z M 261.246094 192.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.394531 194.707031 C 262.394531 194.589844 262.300781 194.496094 262.183594 194.496094 C 262.066406 194.496094 261.972656 194.589844 261.972656 194.707031 C 261.972656 194.824219 262.066406 194.917969 262.183594 194.917969 C 262.300781 194.917969 262.394531 194.824219 262.394531 194.707031 Z M 262.394531 194.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.335938 196.429688 C 261.335938 196.3125 261.242188 196.21875 261.125 196.21875 C 261.007812 196.21875 260.914062 196.3125 260.914062 196.429688 C 260.914062 196.546875 261.007812 196.640625 261.125 196.640625 C 261.242188 196.640625 261.335938 196.546875 261.335938 196.429688 Z M 261.335938 196.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.136719 195.769531 C 259.136719 195.652344 259.042969 195.558594 258.925781 195.558594 C 258.808594 195.558594 258.714844 195.652344 258.714844 195.769531 C 258.714844 195.886719 258.808594 195.980469 258.925781 195.980469 C 259.042969 195.980469 259.136719 195.886719 259.136719 195.769531 Z M 259.136719 195.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.617188 197.511719 C 256.617188 197.394531 256.523438 197.300781 256.40625 197.300781 C 256.289062 197.300781 256.195312 197.394531 256.195312 197.511719 C 256.195312 197.628906 256.289062 197.722656 256.40625 197.722656 C 256.523438 197.722656 256.617188 197.628906 256.617188 197.511719 Z M 256.617188 197.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.28125 199.109375 C 255.28125 198.992188 255.1875 198.898438 255.070312 198.898438 C 254.953125 198.898438 254.859375 198.992188 254.859375 199.109375 C 254.859375 199.226562 254.953125 199.320312 255.070312 199.320312 C 255.1875 199.320312 255.28125 199.226562 255.28125 199.109375 Z M 255.28125 199.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.558594 197.015625 C 253.558594 196.898438 253.464844 196.804688 253.347656 196.804688 C 253.230469 196.804688 253.136719 196.898438 253.136719 197.015625 C 253.136719 197.132812 253.230469 197.226562 253.347656 197.226562 C 253.464844 197.226562 253.558594 197.132812 253.558594 197.015625 Z M 253.558594 197.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.554688 194.925781 C 252.554688 194.808594 252.460938 194.714844 252.34375 194.714844 C 252.226562 194.714844 252.132812 194.808594 252.132812 194.925781 C 252.132812 195.042969 252.226562 195.136719 252.34375 195.136719 C 252.460938 195.136719 252.554688 195.042969 252.554688 194.925781 Z M 252.554688 194.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.382812 197.644531 C 249.382812 197.527344 249.289062 197.433594 249.171875 197.433594 C 249.054688 197.433594 248.960938 197.527344 248.960938 197.644531 C 248.960938 197.761719 249.054688 197.855469 249.171875 197.855469 C 249.289062 197.855469 249.382812 197.761719 249.382812 197.644531 Z M 249.382812 197.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.863281 198.148438 C 252.863281 198.03125 252.769531 197.9375 252.652344 197.9375 C 252.535156 197.9375 252.441406 198.03125 252.441406 198.148438 C 252.441406 198.265625 252.535156 198.359375 252.652344 198.359375 C 252.769531 198.359375 252.863281 198.265625 252.863281 198.148438 Z M 252.863281 198.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.03125 196.984375 C 252.03125 196.867188 251.9375 196.773438 251.820312 196.773438 C 251.703125 196.773438 251.609375 196.867188 251.609375 196.984375 C 251.609375 197.101562 251.703125 197.195312 251.820312 197.195312 C 251.9375 197.195312 252.03125 197.101562 252.03125 196.984375 Z M 252.03125 196.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.542969 196.496094 C 252.542969 196.378906 252.449219 196.285156 252.332031 196.285156 C 252.214844 196.285156 252.121094 196.378906 252.121094 196.496094 C 252.121094 196.613281 252.214844 196.707031 252.332031 196.707031 C 252.449219 196.707031 252.542969 196.613281 252.542969 196.496094 Z M 252.542969 196.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.601562 193.285156 C 250.601562 193.167969 250.507812 193.074219 250.390625 193.074219 C 250.273438 193.074219 250.179688 193.167969 250.179688 193.285156 C 250.179688 193.402344 250.273438 193.496094 250.390625 193.496094 C 250.507812 193.496094 250.601562 193.402344 250.601562 193.285156 Z M 250.601562 193.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.34375 197.09375 C 249.34375 196.976562 249.25 196.882812 249.132812 196.882812 C 249.015625 196.882812 248.921875 196.976562 248.921875 197.09375 C 248.921875 197.210938 249.015625 197.304688 249.132812 197.304688 C 249.25 197.304688 249.34375 197.210938 249.34375 197.09375 Z M 249.34375 197.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.761719 195.492188 C 247.761719 195.375 247.667969 195.28125 247.550781 195.28125 C 247.433594 195.28125 247.339844 195.375 247.339844 195.492188 C 247.339844 195.609375 247.433594 195.703125 247.550781 195.703125 C 247.667969 195.703125 247.761719 195.609375 247.761719 195.492188 Z M 247.761719 195.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.859375 195.609375 C 247.859375 195.492188 247.765625 195.398438 247.648438 195.398438 C 247.53125 195.398438 247.4375 195.492188 247.4375 195.609375 C 247.4375 195.726562 247.53125 195.820312 247.648438 195.820312 C 247.765625 195.820312 247.859375 195.726562 247.859375 195.609375 Z M 247.859375 195.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.074219 195.785156 C 248.074219 195.667969 247.980469 195.574219 247.863281 195.574219 C 247.746094 195.574219 247.652344 195.667969 247.652344 195.785156 C 247.652344 195.902344 247.746094 195.996094 247.863281 195.996094 C 247.980469 195.996094 248.074219 195.902344 248.074219 195.785156 Z M 248.074219 195.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.507812 196.253906 C 246.507812 196.136719 246.414062 196.042969 246.296875 196.042969 C 246.179688 196.042969 246.085938 196.136719 246.085938 196.253906 C 246.085938 196.371094 246.179688 196.464844 246.296875 196.464844 C 246.414062 196.464844 246.507812 196.371094 246.507812 196.253906 Z M 246.507812 196.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.132812 197.3125 C 246.132812 197.195312 246.039062 197.101562 245.921875 197.101562 C 245.804688 197.101562 245.710938 197.195312 245.710938 197.3125 C 245.710938 197.429688 245.804688 197.523438 245.921875 197.523438 C 246.039062 197.523438 246.132812 197.429688 246.132812 197.3125 Z M 246.132812 197.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.207031 199.59375 C 247.207031 199.476562 247.113281 199.382812 246.996094 199.382812 C 246.878906 199.382812 246.785156 199.476562 246.785156 199.59375 C 246.785156 199.710938 246.878906 199.804688 246.996094 199.804688 C 247.113281 199.804688 247.207031 199.710938 247.207031 199.59375 Z M 247.207031 199.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.222656 196.511719 C 249.222656 196.394531 249.128906 196.300781 249.011719 196.300781 C 248.894531 196.300781 248.800781 196.394531 248.800781 196.511719 C 248.800781 196.628906 248.894531 196.722656 249.011719 196.722656 C 249.128906 196.722656 249.222656 196.628906 249.222656 196.511719 Z M 249.222656 196.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.117188 196.367188 C 249.117188 196.25 249.023438 196.15625 248.90625 196.15625 C 248.789062 196.15625 248.695312 196.25 248.695312 196.367188 C 248.695312 196.484375 248.789062 196.578125 248.90625 196.578125 C 249.023438 196.578125 249.117188 196.484375 249.117188 196.367188 Z M 249.117188 196.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.671875 195.222656 C 247.671875 195.105469 247.578125 195.011719 247.460938 195.011719 C 247.34375 195.011719 247.25 195.105469 247.25 195.222656 C 247.25 195.339844 247.34375 195.433594 247.460938 195.433594 C 247.578125 195.433594 247.671875 195.339844 247.671875 195.222656 Z M 247.671875 195.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.292969 198.78125 C 244.292969 198.664062 244.199219 198.570312 244.082031 198.570312 C 243.964844 198.570312 243.871094 198.664062 243.871094 198.78125 C 243.871094 198.898438 243.964844 198.992188 244.082031 198.992188 C 244.199219 198.992188 244.292969 198.898438 244.292969 198.78125 Z M 244.292969 198.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.34375 199.636719 C 246.34375 199.519531 246.25 199.425781 246.132812 199.425781 C 246.015625 199.425781 245.921875 199.519531 245.921875 199.636719 C 245.921875 199.753906 246.015625 199.847656 246.132812 199.847656 C 246.25 199.847656 246.34375 199.753906 246.34375 199.636719 Z M 246.34375 199.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.191406 199.386719 C 244.191406 199.269531 244.097656 199.175781 243.980469 199.175781 C 243.863281 199.175781 243.769531 199.269531 243.769531 199.386719 C 243.769531 199.503906 243.863281 199.597656 243.980469 199.597656 C 244.097656 199.597656 244.191406 199.503906 244.191406 199.386719 Z M 244.191406 199.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.789062 202.234375 C 243.789062 202.117188 243.695312 202.023438 243.578125 202.023438 C 243.460938 202.023438 243.367188 202.117188 243.367188 202.234375 C 243.367188 202.351562 243.460938 202.445312 243.578125 202.445312 C 243.695312 202.445312 243.789062 202.351562 243.789062 202.234375 Z M 243.789062 202.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.277344 198.511719 C 242.277344 198.394531 242.183594 198.300781 242.066406 198.300781 C 241.949219 198.300781 241.855469 198.394531 241.855469 198.511719 C 241.855469 198.628906 241.949219 198.722656 242.066406 198.722656 C 242.183594 198.722656 242.277344 198.628906 242.277344 198.511719 Z M 242.277344 198.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.5625 198.132812 C 241.5625 198.015625 241.46875 197.921875 241.351562 197.921875 C 241.234375 197.921875 241.140625 198.015625 241.140625 198.132812 C 241.140625 198.25 241.234375 198.34375 241.351562 198.34375 C 241.46875 198.34375 241.5625 198.25 241.5625 198.132812 Z M 241.5625 198.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.917969 201.316406 C 240.917969 201.199219 240.824219 201.105469 240.707031 201.105469 C 240.589844 201.105469 240.496094 201.199219 240.496094 201.316406 C 240.496094 201.433594 240.589844 201.527344 240.707031 201.527344 C 240.824219 201.527344 240.917969 201.433594 240.917969 201.316406 Z M 240.917969 201.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.683594 204.007812 C 239.683594 203.890625 239.589844 203.796875 239.472656 203.796875 C 239.355469 203.796875 239.261719 203.890625 239.261719 204.007812 C 239.261719 204.125 239.355469 204.21875 239.472656 204.21875 C 239.589844 204.21875 239.683594 204.125 239.683594 204.007812 Z M 239.683594 204.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.042969 205.914062 C 240.042969 205.796875 239.949219 205.703125 239.832031 205.703125 C 239.714844 205.703125 239.621094 205.796875 239.621094 205.914062 C 239.621094 206.03125 239.714844 206.125 239.832031 206.125 C 239.949219 206.125 240.042969 206.03125 240.042969 205.914062 Z M 240.042969 205.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.78125 204.585938 C 238.78125 204.46875 238.6875 204.375 238.570312 204.375 C 238.453125 204.375 238.359375 204.46875 238.359375 204.585938 C 238.359375 204.703125 238.453125 204.796875 238.570312 204.796875 C 238.6875 204.796875 238.78125 204.703125 238.78125 204.585938 Z M 238.78125 204.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.578125 205.472656 C 241.578125 205.355469 241.484375 205.261719 241.367188 205.261719 C 241.25 205.261719 241.15625 205.355469 241.15625 205.472656 C 241.15625 205.589844 241.25 205.683594 241.367188 205.683594 C 241.484375 205.683594 241.578125 205.589844 241.578125 205.472656 Z M 241.578125 205.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.53125 202.535156 C 240.53125 202.417969 240.4375 202.324219 240.320312 202.324219 C 240.203125 202.324219 240.109375 202.417969 240.109375 202.535156 C 240.109375 202.652344 240.203125 202.746094 240.320312 202.746094 C 240.4375 202.746094 240.53125 202.652344 240.53125 202.535156 Z M 240.53125 202.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.441406 202.792969 C 240.441406 202.675781 240.347656 202.582031 240.230469 202.582031 C 240.113281 202.582031 240.019531 202.675781 240.019531 202.792969 C 240.019531 202.910156 240.113281 203.003906 240.230469 203.003906 C 240.347656 203.003906 240.441406 202.910156 240.441406 202.792969 Z M 240.441406 202.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.789062 203.484375 C 242.789062 203.367188 242.695312 203.273438 242.578125 203.273438 C 242.460938 203.273438 242.367188 203.367188 242.367188 203.484375 C 242.367188 203.601562 242.460938 203.695312 242.578125 203.695312 C 242.695312 203.695312 242.789062 203.601562 242.789062 203.484375 Z M 242.789062 203.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.140625 205.488281 C 239.140625 205.371094 239.046875 205.277344 238.929688 205.277344 C 238.8125 205.277344 238.71875 205.371094 238.71875 205.488281 C 238.71875 205.605469 238.8125 205.699219 238.929688 205.699219 C 239.046875 205.699219 239.140625 205.605469 239.140625 205.488281 Z M 239.140625 205.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.136719 205.398438 C 242.136719 205.28125 242.042969 205.1875 241.925781 205.1875 C 241.808594 205.1875 241.714844 205.28125 241.714844 205.398438 C 241.714844 205.515625 241.808594 205.609375 241.925781 205.609375 C 242.042969 205.609375 242.136719 205.515625 242.136719 205.398438 Z M 242.136719 205.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.730469 200.914062 C 243.730469 200.796875 243.636719 200.703125 243.519531 200.703125 C 243.402344 200.703125 243.308594 200.796875 243.308594 200.914062 C 243.308594 201.03125 243.402344 201.125 243.519531 201.125 C 243.636719 201.125 243.730469 201.03125 243.730469 200.914062 Z M 243.730469 200.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.273438 202.417969 C 243.273438 202.300781 243.179688 202.207031 243.0625 202.207031 C 242.945312 202.207031 242.851562 202.300781 242.851562 202.417969 C 242.851562 202.535156 242.945312 202.628906 243.0625 202.628906 C 243.179688 202.628906 243.273438 202.535156 243.273438 202.417969 Z M 243.273438 202.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.277344 203.179688 C 247.277344 203.0625 247.183594 202.96875 247.066406 202.96875 C 246.949219 202.96875 246.855469 203.0625 246.855469 203.179688 C 246.855469 203.296875 246.949219 203.390625 247.066406 203.390625 C 247.183594 203.390625 247.277344 203.296875 247.277344 203.179688 Z M 247.277344 203.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.386719 200.578125 C 246.386719 200.460938 246.292969 200.367188 246.175781 200.367188 C 246.058594 200.367188 245.964844 200.460938 245.964844 200.578125 C 245.964844 200.695312 246.058594 200.789062 246.175781 200.789062 C 246.292969 200.789062 246.386719 200.695312 246.386719 200.578125 Z M 246.386719 200.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.617188 200.589844 C 243.617188 200.472656 243.523438 200.378906 243.40625 200.378906 C 243.289062 200.378906 243.195312 200.472656 243.195312 200.589844 C 243.195312 200.707031 243.289062 200.800781 243.40625 200.800781 C 243.523438 200.800781 243.617188 200.707031 243.617188 200.589844 Z M 243.617188 200.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.726562 199.707031 C 239.726562 199.589844 239.632812 199.496094 239.515625 199.496094 C 239.398438 199.496094 239.304688 199.589844 239.304688 199.707031 C 239.304688 199.824219 239.398438 199.917969 239.515625 199.917969 C 239.632812 199.917969 239.726562 199.824219 239.726562 199.707031 Z M 239.726562 199.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.3125 201.894531 C 240.3125 201.777344 240.21875 201.683594 240.101562 201.683594 C 239.984375 201.683594 239.890625 201.777344 239.890625 201.894531 C 239.890625 202.011719 239.984375 202.105469 240.101562 202.105469 C 240.21875 202.105469 240.3125 202.011719 240.3125 201.894531 Z M 240.3125 201.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.125 203.335938 C 241.125 203.21875 241.03125 203.125 240.914062 203.125 C 240.796875 203.125 240.703125 203.21875 240.703125 203.335938 C 240.703125 203.453125 240.796875 203.546875 240.914062 203.546875 C 241.03125 203.546875 241.125 203.453125 241.125 203.335938 Z M 241.125 203.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.394531 200.503906 C 240.394531 200.386719 240.300781 200.292969 240.183594 200.292969 C 240.066406 200.292969 239.972656 200.386719 239.972656 200.503906 C 239.972656 200.621094 240.066406 200.714844 240.183594 200.714844 C 240.300781 200.714844 240.394531 200.621094 240.394531 200.503906 Z M 240.394531 200.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.332031 198.867188 C 238.332031 198.75 238.238281 198.65625 238.121094 198.65625 C 238.003906 198.65625 237.910156 198.75 237.910156 198.867188 C 237.910156 198.984375 238.003906 199.078125 238.121094 199.078125 C 238.238281 199.078125 238.332031 198.984375 238.332031 198.867188 Z M 238.332031 198.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.894531 197.476562 C 236.894531 197.359375 236.800781 197.265625 236.683594 197.265625 C 236.566406 197.265625 236.472656 197.359375 236.472656 197.476562 C 236.472656 197.59375 236.566406 197.6875 236.683594 197.6875 C 236.800781 197.6875 236.894531 197.59375 236.894531 197.476562 Z M 236.894531 197.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.382812 199.820312 C 236.382812 199.703125 236.289062 199.609375 236.171875 199.609375 C 236.054688 199.609375 235.960938 199.703125 235.960938 199.820312 C 235.960938 199.9375 236.054688 200.03125 236.171875 200.03125 C 236.289062 200.03125 236.382812 199.9375 236.382812 199.820312 Z M 236.382812 199.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.265625 200.417969 C 238.265625 200.300781 238.171875 200.207031 238.054688 200.207031 C 237.9375 200.207031 237.84375 200.300781 237.84375 200.417969 C 237.84375 200.535156 237.9375 200.628906 238.054688 200.628906 C 238.171875 200.628906 238.265625 200.535156 238.265625 200.417969 Z M 238.265625 200.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.839844 199.824219 C 232.839844 199.707031 232.746094 199.613281 232.628906 199.613281 C 232.511719 199.613281 232.417969 199.707031 232.417969 199.824219 C 232.417969 199.941406 232.511719 200.035156 232.628906 200.035156 C 232.746094 200.035156 232.839844 199.941406 232.839844 199.824219 Z M 232.839844 199.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.570312 204.835938 C 231.570312 204.71875 231.476562 204.625 231.359375 204.625 C 231.242188 204.625 231.148438 204.71875 231.148438 204.835938 C 231.148438 204.953125 231.242188 205.046875 231.359375 205.046875 C 231.476562 205.046875 231.570312 204.953125 231.570312 204.835938 Z M 231.570312 204.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.21875 205.628906 C 231.21875 205.511719 231.125 205.417969 231.007812 205.417969 C 230.890625 205.417969 230.796875 205.511719 230.796875 205.628906 C 230.796875 205.746094 230.890625 205.839844 231.007812 205.839844 C 231.125 205.839844 231.21875 205.746094 231.21875 205.628906 Z M 231.21875 205.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.796875 207.351562 C 229.796875 207.234375 229.703125 207.140625 229.585938 207.140625 C 229.46875 207.140625 229.375 207.234375 229.375 207.351562 C 229.375 207.46875 229.46875 207.5625 229.585938 207.5625 C 229.703125 207.5625 229.796875 207.46875 229.796875 207.351562 Z M 229.796875 207.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.875 206.179688 C 229.875 206.0625 229.78125 205.96875 229.664062 205.96875 C 229.546875 205.96875 229.453125 206.0625 229.453125 206.179688 C 229.453125 206.296875 229.546875 206.390625 229.664062 206.390625 C 229.78125 206.390625 229.875 206.296875 229.875 206.179688 Z M 229.875 206.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.082031 205.6875 C 229.082031 205.570312 228.988281 205.476562 228.871094 205.476562 C 228.753906 205.476562 228.660156 205.570312 228.660156 205.6875 C 228.660156 205.804688 228.753906 205.898438 228.871094 205.898438 C 228.988281 205.898438 229.082031 205.804688 229.082031 205.6875 Z M 229.082031 205.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.152344 207.132812 C 231.152344 207.015625 231.058594 206.921875 230.941406 206.921875 C 230.824219 206.921875 230.730469 207.015625 230.730469 207.132812 C 230.730469 207.25 230.824219 207.34375 230.941406 207.34375 C 231.058594 207.34375 231.152344 207.25 231.152344 207.132812 Z M 231.152344 207.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.988281 208.320312 C 233.988281 208.203125 233.894531 208.109375 233.777344 208.109375 C 233.660156 208.109375 233.566406 208.203125 233.566406 208.320312 C 233.566406 208.4375 233.660156 208.53125 233.777344 208.53125 C 233.894531 208.53125 233.988281 208.4375 233.988281 208.320312 Z M 233.988281 208.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.222656 210.175781 C 234.222656 210.058594 234.128906 209.964844 234.011719 209.964844 C 233.894531 209.964844 233.800781 210.058594 233.800781 210.175781 C 233.800781 210.292969 233.894531 210.386719 234.011719 210.386719 C 234.128906 210.386719 234.222656 210.292969 234.222656 210.175781 Z M 234.222656 210.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.84375 208.277344 C 232.84375 208.160156 232.75 208.066406 232.632812 208.066406 C 232.515625 208.066406 232.421875 208.160156 232.421875 208.277344 C 232.421875 208.394531 232.515625 208.488281 232.632812 208.488281 C 232.75 208.488281 232.84375 208.394531 232.84375 208.277344 Z M 232.84375 208.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.410156 207.917969 C 229.410156 207.800781 229.316406 207.707031 229.199219 207.707031 C 229.082031 207.707031 228.988281 207.800781 228.988281 207.917969 C 228.988281 208.035156 229.082031 208.128906 229.199219 208.128906 C 229.316406 208.128906 229.410156 208.035156 229.410156 207.917969 Z M 229.410156 207.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.488281 209.25 C 229.488281 209.132812 229.394531 209.039062 229.277344 209.039062 C 229.160156 209.039062 229.066406 209.132812 229.066406 209.25 C 229.066406 209.367188 229.160156 209.460938 229.277344 209.460938 C 229.394531 209.460938 229.488281 209.367188 229.488281 209.25 Z M 229.488281 209.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.71875 210.390625 C 227.71875 210.273438 227.625 210.179688 227.507812 210.179688 C 227.390625 210.179688 227.296875 210.273438 227.296875 210.390625 C 227.296875 210.507812 227.390625 210.601562 227.507812 210.601562 C 227.625 210.601562 227.71875 210.507812 227.71875 210.390625 Z M 227.71875 210.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.429688 209.417969 C 226.429688 209.300781 226.335938 209.207031 226.21875 209.207031 C 226.101562 209.207031 226.007812 209.300781 226.007812 209.417969 C 226.007812 209.535156 226.101562 209.628906 226.21875 209.628906 C 226.335938 209.628906 226.429688 209.535156 226.429688 209.417969 Z M 226.429688 209.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.714844 208.917969 C 221.714844 208.800781 221.621094 208.707031 221.503906 208.707031 C 221.386719 208.707031 221.292969 208.800781 221.292969 208.917969 C 221.292969 209.035156 221.386719 209.128906 221.503906 209.128906 C 221.621094 209.128906 221.714844 209.035156 221.714844 208.917969 Z M 221.714844 208.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 220.777344 208.074219 C 220.777344 207.957031 220.683594 207.863281 220.566406 207.863281 C 220.449219 207.863281 220.355469 207.957031 220.355469 208.074219 C 220.355469 208.191406 220.449219 208.285156 220.566406 208.285156 C 220.683594 208.285156 220.777344 208.191406 220.777344 208.074219 Z M 220.777344 208.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.652344 209.953125 C 221.652344 209.835938 221.558594 209.742188 221.441406 209.742188 C 221.324219 209.742188 221.230469 209.835938 221.230469 209.953125 C 221.230469 210.070312 221.324219 210.164062 221.441406 210.164062 C 221.558594 210.164062 221.652344 210.070312 221.652344 209.953125 Z M 221.652344 209.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.238281 208.976562 C 223.238281 208.859375 223.144531 208.765625 223.027344 208.765625 C 222.910156 208.765625 222.816406 208.859375 222.816406 208.976562 C 222.816406 209.09375 222.910156 209.1875 223.027344 209.1875 C 223.144531 209.1875 223.238281 209.09375 223.238281 208.976562 Z M 223.238281 208.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.046875 208.621094 C 221.046875 208.503906 220.953125 208.410156 220.835938 208.410156 C 220.71875 208.410156 220.625 208.503906 220.625 208.621094 C 220.625 208.738281 220.71875 208.832031 220.835938 208.832031 C 220.953125 208.832031 221.046875 208.738281 221.046875 208.621094 Z M 221.046875 208.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 220.628906 210.507812 C 220.628906 210.390625 220.535156 210.296875 220.417969 210.296875 C 220.300781 210.296875 220.207031 210.390625 220.207031 210.507812 C 220.207031 210.625 220.300781 210.71875 220.417969 210.71875 C 220.535156 210.71875 220.628906 210.625 220.628906 210.507812 Z M 220.628906 210.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.914062 212.785156 C 217.914062 212.667969 217.820312 212.574219 217.703125 212.574219 C 217.585938 212.574219 217.492188 212.667969 217.492188 212.785156 C 217.492188 212.902344 217.585938 212.996094 217.703125 212.996094 C 217.820312 212.996094 217.914062 212.902344 217.914062 212.785156 Z M 217.914062 212.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.671875 213.34375 C 218.671875 213.226562 218.578125 213.132812 218.460938 213.132812 C 218.34375 213.132812 218.25 213.226562 218.25 213.34375 C 218.25 213.460938 218.34375 213.554688 218.460938 213.554688 C 218.578125 213.554688 218.671875 213.460938 218.671875 213.34375 Z M 218.671875 213.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.734375 214.707031 C 218.734375 214.589844 218.640625 214.496094 218.523438 214.496094 C 218.40625 214.496094 218.3125 214.589844 218.3125 214.707031 C 218.3125 214.824219 218.40625 214.917969 218.523438 214.917969 C 218.640625 214.917969 218.734375 214.824219 218.734375 214.707031 Z M 218.734375 214.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.167969 216.59375 C 216.167969 216.476562 216.074219 216.382812 215.957031 216.382812 C 215.839844 216.382812 215.746094 216.476562 215.746094 216.59375 C 215.746094 216.710938 215.839844 216.804688 215.957031 216.804688 C 216.074219 216.804688 216.167969 216.710938 216.167969 216.59375 Z M 216.167969 216.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.210938 220.445312 C 216.210938 220.328125 216.117188 220.234375 216 220.234375 C 215.882812 220.234375 215.789062 220.328125 215.789062 220.445312 C 215.789062 220.5625 215.882812 220.65625 216 220.65625 C 216.117188 220.65625 216.210938 220.5625 216.210938 220.445312 Z M 216.210938 220.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.648438 220.359375 C 215.648438 220.242188 215.554688 220.148438 215.4375 220.148438 C 215.320312 220.148438 215.226562 220.242188 215.226562 220.359375 C 215.226562 220.476562 215.320312 220.570312 215.4375 220.570312 C 215.554688 220.570312 215.648438 220.476562 215.648438 220.359375 Z M 215.648438 220.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.855469 220.917969 C 217.855469 220.800781 217.761719 220.707031 217.644531 220.707031 C 217.527344 220.707031 217.433594 220.800781 217.433594 220.917969 C 217.433594 221.035156 217.527344 221.128906 217.644531 221.128906 C 217.761719 221.128906 217.855469 221.035156 217.855469 220.917969 Z M 217.855469 220.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.6875 221.675781 C 219.6875 221.558594 219.59375 221.464844 219.476562 221.464844 C 219.359375 221.464844 219.265625 221.558594 219.265625 221.675781 C 219.265625 221.792969 219.359375 221.886719 219.476562 221.886719 C 219.59375 221.886719 219.6875 221.792969 219.6875 221.675781 Z M 219.6875 221.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.695312 224.417969 C 223.695312 224.300781 223.601562 224.207031 223.484375 224.207031 C 223.367188 224.207031 223.273438 224.300781 223.273438 224.417969 C 223.273438 224.535156 223.367188 224.628906 223.484375 224.628906 C 223.601562 224.628906 223.695312 224.535156 223.695312 224.417969 Z M 223.695312 224.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 222.695312 226.285156 C 222.695312 226.167969 222.601562 226.074219 222.484375 226.074219 C 222.367188 226.074219 222.273438 226.167969 222.273438 226.285156 C 222.273438 226.402344 222.367188 226.496094 222.484375 226.496094 C 222.601562 226.496094 222.695312 226.402344 222.695312 226.285156 Z M 222.695312 226.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.804688 223.421875 C 224.804688 223.304688 224.710938 223.210938 224.59375 223.210938 C 224.476562 223.210938 224.382812 223.304688 224.382812 223.421875 C 224.382812 223.539062 224.476562 223.632812 224.59375 223.632812 C 224.710938 223.632812 224.804688 223.539062 224.804688 223.421875 Z M 224.804688 223.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.804688 223.289062 C 225.804688 223.171875 225.710938 223.078125 225.59375 223.078125 C 225.476562 223.078125 225.382812 223.171875 225.382812 223.289062 C 225.382812 223.40625 225.476562 223.5 225.59375 223.5 C 225.710938 223.5 225.804688 223.40625 225.804688 223.289062 Z M 225.804688 223.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.925781 224.402344 C 228.925781 224.285156 228.832031 224.191406 228.714844 224.191406 C 228.597656 224.191406 228.503906 224.285156 228.503906 224.402344 C 228.503906 224.519531 228.597656 224.613281 228.714844 224.613281 C 228.832031 224.613281 228.925781 224.519531 228.925781 224.402344 Z M 228.925781 224.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.914062 223.5 C 230.914062 223.382812 230.820312 223.289062 230.703125 223.289062 C 230.585938 223.289062 230.492188 223.382812 230.492188 223.5 C 230.492188 223.617188 230.585938 223.710938 230.703125 223.710938 C 230.820312 223.710938 230.914062 223.617188 230.914062 223.5 Z M 230.914062 223.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.617188 226.285156 C 232.617188 226.167969 232.523438 226.074219 232.40625 226.074219 C 232.289062 226.074219 232.195312 226.167969 232.195312 226.285156 C 232.195312 226.402344 232.289062 226.496094 232.40625 226.496094 C 232.523438 226.496094 232.617188 226.402344 232.617188 226.285156 Z M 232.617188 226.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.765625 226.128906 C 231.765625 226.011719 231.671875 225.917969 231.554688 225.917969 C 231.4375 225.917969 231.34375 226.011719 231.34375 226.128906 C 231.34375 226.246094 231.4375 226.339844 231.554688 226.339844 C 231.671875 226.339844 231.765625 226.246094 231.765625 226.128906 Z M 231.765625 226.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.421875 225.519531 C 231.421875 225.402344 231.328125 225.308594 231.210938 225.308594 C 231.09375 225.308594 231 225.402344 231 225.519531 C 231 225.636719 231.09375 225.730469 231.210938 225.730469 C 231.328125 225.730469 231.421875 225.636719 231.421875 225.519531 Z M 231.421875 225.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.816406 223.957031 C 229.816406 223.839844 229.722656 223.746094 229.605469 223.746094 C 229.488281 223.746094 229.394531 223.839844 229.394531 223.957031 C 229.394531 224.074219 229.488281 224.167969 229.605469 224.167969 C 229.722656 224.167969 229.816406 224.074219 229.816406 223.957031 Z M 229.816406 223.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.484375 220.277344 C 231.484375 220.160156 231.390625 220.066406 231.273438 220.066406 C 231.15625 220.066406 231.0625 220.160156 231.0625 220.277344 C 231.0625 220.394531 231.15625 220.488281 231.273438 220.488281 C 231.390625 220.488281 231.484375 220.394531 231.484375 220.277344 Z M 231.484375 220.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.5 221.535156 C 230.5 221.417969 230.40625 221.324219 230.289062 221.324219 C 230.171875 221.324219 230.078125 221.417969 230.078125 221.535156 C 230.078125 221.652344 230.171875 221.746094 230.289062 221.746094 C 230.40625 221.746094 230.5 221.652344 230.5 221.535156 Z M 230.5 221.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.695312 224.121094 C 230.695312 224.003906 230.601562 223.910156 230.484375 223.910156 C 230.367188 223.910156 230.273438 224.003906 230.273438 224.121094 C 230.273438 224.238281 230.367188 224.332031 230.484375 224.332031 C 230.601562 224.332031 230.695312 224.238281 230.695312 224.121094 Z M 230.695312 224.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.328125 222.898438 C 230.328125 222.78125 230.234375 222.6875 230.117188 222.6875 C 230 222.6875 229.90625 222.78125 229.90625 222.898438 C 229.90625 223.015625 230 223.109375 230.117188 223.109375 C 230.234375 223.109375 230.328125 223.015625 230.328125 222.898438 Z M 230.328125 222.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.234375 222.59375 C 232.234375 222.476562 232.140625 222.382812 232.023438 222.382812 C 231.90625 222.382812 231.8125 222.476562 231.8125 222.59375 C 231.8125 222.710938 231.90625 222.804688 232.023438 222.804688 C 232.140625 222.804688 232.234375 222.710938 232.234375 222.59375 Z M 232.234375 222.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.046875 223.871094 C 231.046875 223.753906 230.953125 223.660156 230.835938 223.660156 C 230.71875 223.660156 230.625 223.753906 230.625 223.871094 C 230.625 223.988281 230.71875 224.082031 230.835938 224.082031 C 230.953125 224.082031 231.046875 223.988281 231.046875 223.871094 Z M 231.046875 223.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.0625 225.855469 C 234.0625 225.738281 233.96875 225.644531 233.851562 225.644531 C 233.734375 225.644531 233.640625 225.738281 233.640625 225.855469 C 233.640625 225.972656 233.734375 226.066406 233.851562 226.066406 C 233.96875 226.066406 234.0625 225.972656 234.0625 225.855469 Z M 234.0625 225.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.132812 224.027344 C 233.132812 223.910156 233.039062 223.816406 232.921875 223.816406 C 232.804688 223.816406 232.710938 223.910156 232.710938 224.027344 C 232.710938 224.144531 232.804688 224.238281 232.921875 224.238281 C 233.039062 224.238281 233.132812 224.144531 233.132812 224.027344 Z M 233.132812 224.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.839844 225.730469 C 237.839844 225.613281 237.746094 225.519531 237.628906 225.519531 C 237.511719 225.519531 237.417969 225.613281 237.417969 225.730469 C 237.417969 225.847656 237.511719 225.941406 237.628906 225.941406 C 237.746094 225.941406 237.839844 225.847656 237.839844 225.730469 Z M 237.839844 225.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.371094 228.371094 C 239.371094 228.253906 239.277344 228.160156 239.160156 228.160156 C 239.042969 228.160156 238.949219 228.253906 238.949219 228.371094 C 238.949219 228.488281 239.042969 228.582031 239.160156 228.582031 C 239.277344 228.582031 239.371094 228.488281 239.371094 228.371094 Z M 239.371094 228.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.261719 224.410156 C 239.261719 224.292969 239.167969 224.199219 239.050781 224.199219 C 238.933594 224.199219 238.839844 224.292969 238.839844 224.410156 C 238.839844 224.527344 238.933594 224.621094 239.050781 224.621094 C 239.167969 224.621094 239.261719 224.527344 239.261719 224.410156 Z M 239.261719 224.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.019531 220.429688 C 237.019531 220.3125 236.925781 220.21875 236.808594 220.21875 C 236.691406 220.21875 236.597656 220.3125 236.597656 220.429688 C 236.597656 220.546875 236.691406 220.640625 236.808594 220.640625 C 236.925781 220.640625 237.019531 220.546875 237.019531 220.429688 Z M 237.019531 220.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.421875 221.683594 C 238.421875 221.566406 238.328125 221.472656 238.210938 221.472656 C 238.09375 221.472656 238 221.566406 238 221.683594 C 238 221.800781 238.09375 221.894531 238.210938 221.894531 C 238.328125 221.894531 238.421875 221.800781 238.421875 221.683594 Z M 238.421875 221.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.121094 222.894531 C 240.121094 222.777344 240.027344 222.683594 239.910156 222.683594 C 239.792969 222.683594 239.699219 222.777344 239.699219 222.894531 C 239.699219 223.011719 239.792969 223.105469 239.910156 223.105469 C 240.027344 223.105469 240.121094 223.011719 240.121094 222.894531 Z M 240.121094 222.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.027344 222.160156 C 240.027344 222.042969 239.933594 221.949219 239.816406 221.949219 C 239.699219 221.949219 239.605469 222.042969 239.605469 222.160156 C 239.605469 222.277344 239.699219 222.371094 239.816406 222.371094 C 239.933594 222.371094 240.027344 222.277344 240.027344 222.160156 Z M 240.027344 222.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.121094 221.234375 C 242.121094 221.117188 242.027344 221.023438 241.910156 221.023438 C 241.792969 221.023438 241.699219 221.117188 241.699219 221.234375 C 241.699219 221.351562 241.792969 221.445312 241.910156 221.445312 C 242.027344 221.445312 242.121094 221.351562 242.121094 221.234375 Z M 242.121094 221.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.25 219.382812 C 240.25 219.265625 240.15625 219.171875 240.039062 219.171875 C 239.921875 219.171875 239.828125 219.265625 239.828125 219.382812 C 239.828125 219.5 239.921875 219.59375 240.039062 219.59375 C 240.15625 219.59375 240.25 219.5 240.25 219.382812 Z M 240.25 219.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.726562 219.511719 C 235.726562 219.394531 235.632812 219.300781 235.515625 219.300781 C 235.398438 219.300781 235.304688 219.394531 235.304688 219.511719 C 235.304688 219.628906 235.398438 219.722656 235.515625 219.722656 C 235.632812 219.722656 235.726562 219.628906 235.726562 219.511719 Z M 235.726562 219.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.585938 218.910156 C 234.585938 218.792969 234.492188 218.699219 234.375 218.699219 C 234.257812 218.699219 234.164062 218.792969 234.164062 218.910156 C 234.164062 219.027344 234.257812 219.121094 234.375 219.121094 C 234.492188 219.121094 234.585938 219.027344 234.585938 218.910156 Z M 234.585938 218.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.984375 219.011719 C 236.984375 218.894531 236.890625 218.800781 236.773438 218.800781 C 236.65625 218.800781 236.5625 218.894531 236.5625 219.011719 C 236.5625 219.128906 236.65625 219.222656 236.773438 219.222656 C 236.890625 219.222656 236.984375 219.128906 236.984375 219.011719 Z M 236.984375 219.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.351562 219.097656 C 237.351562 218.980469 237.257812 218.886719 237.140625 218.886719 C 237.023438 218.886719 236.929688 218.980469 236.929688 219.097656 C 236.929688 219.214844 237.023438 219.308594 237.140625 219.308594 C 237.257812 219.308594 237.351562 219.214844 237.351562 219.097656 Z M 237.351562 219.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.925781 220.976562 C 241.925781 220.859375 241.832031 220.765625 241.714844 220.765625 C 241.597656 220.765625 241.503906 220.859375 241.503906 220.976562 C 241.503906 221.09375 241.597656 221.1875 241.714844 221.1875 C 241.832031 221.1875 241.925781 221.09375 241.925781 220.976562 Z M 241.925781 220.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.03125 220.972656 C 246.03125 220.855469 245.9375 220.761719 245.820312 220.761719 C 245.703125 220.761719 245.609375 220.855469 245.609375 220.972656 C 245.609375 221.089844 245.703125 221.183594 245.820312 221.183594 C 245.9375 221.183594 246.03125 221.089844 246.03125 220.972656 Z M 246.03125 220.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.527344 222.492188 C 243.527344 222.375 243.433594 222.28125 243.316406 222.28125 C 243.199219 222.28125 243.105469 222.375 243.105469 222.492188 C 243.105469 222.609375 243.199219 222.703125 243.316406 222.703125 C 243.433594 222.703125 243.527344 222.609375 243.527344 222.492188 Z M 243.527344 222.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.359375 223.648438 C 243.359375 223.53125 243.265625 223.4375 243.148438 223.4375 C 243.03125 223.4375 242.9375 223.53125 242.9375 223.648438 C 242.9375 223.765625 243.03125 223.859375 243.148438 223.859375 C 243.265625 223.859375 243.359375 223.765625 243.359375 223.648438 Z M 243.359375 223.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.082031 226.898438 C 245.082031 226.78125 244.988281 226.6875 244.871094 226.6875 C 244.753906 226.6875 244.660156 226.78125 244.660156 226.898438 C 244.660156 227.015625 244.753906 227.109375 244.871094 227.109375 C 244.988281 227.109375 245.082031 227.015625 245.082031 226.898438 Z M 245.082031 226.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.992188 224.304688 C 243.992188 224.1875 243.898438 224.09375 243.78125 224.09375 C 243.664062 224.09375 243.570312 224.1875 243.570312 224.304688 C 243.570312 224.421875 243.664062 224.515625 243.78125 224.515625 C 243.898438 224.515625 243.992188 224.421875 243.992188 224.304688 Z M 243.992188 224.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.835938 224.578125 C 243.835938 224.460938 243.742188 224.367188 243.625 224.367188 C 243.507812 224.367188 243.414062 224.460938 243.414062 224.578125 C 243.414062 224.695312 243.507812 224.789062 243.625 224.789062 C 243.742188 224.789062 243.835938 224.695312 243.835938 224.578125 Z M 243.835938 224.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.273438 224.382812 C 242.273438 224.265625 242.179688 224.171875 242.0625 224.171875 C 241.945312 224.171875 241.851562 224.265625 241.851562 224.382812 C 241.851562 224.5 241.945312 224.59375 242.0625 224.59375 C 242.179688 224.59375 242.273438 224.5 242.273438 224.382812 Z M 242.273438 224.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.210938 223.609375 C 243.210938 223.492188 243.117188 223.398438 243 223.398438 C 242.882812 223.398438 242.789062 223.492188 242.789062 223.609375 C 242.789062 223.726562 242.882812 223.820312 243 223.820312 C 243.117188 223.820312 243.210938 223.726562 243.210938 223.609375 Z M 243.210938 223.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.875 221.667969 C 244.875 221.550781 244.78125 221.457031 244.664062 221.457031 C 244.546875 221.457031 244.453125 221.550781 244.453125 221.667969 C 244.453125 221.785156 244.546875 221.878906 244.664062 221.878906 C 244.78125 221.878906 244.875 221.785156 244.875 221.667969 Z M 244.875 221.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.296875 222.832031 C 242.296875 222.714844 242.203125 222.621094 242.085938 222.621094 C 241.96875 222.621094 241.875 222.714844 241.875 222.832031 C 241.875 222.949219 241.96875 223.042969 242.085938 223.042969 C 242.203125 223.042969 242.296875 222.949219 242.296875 222.832031 Z M 242.296875 222.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.230469 221.351562 C 243.230469 221.234375 243.136719 221.140625 243.019531 221.140625 C 242.902344 221.140625 242.808594 221.234375 242.808594 221.351562 C 242.808594 221.46875 242.902344 221.5625 243.019531 221.5625 C 243.136719 221.5625 243.230469 221.46875 243.230469 221.351562 Z M 243.230469 221.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.058594 222.828125 C 245.058594 222.710938 244.964844 222.617188 244.847656 222.617188 C 244.730469 222.617188 244.636719 222.710938 244.636719 222.828125 C 244.636719 222.945312 244.730469 223.039062 244.847656 223.039062 C 244.964844 223.039062 245.058594 222.945312 245.058594 222.828125 Z M 245.058594 222.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.253906 219.609375 C 243.253906 219.492188 243.160156 219.398438 243.042969 219.398438 C 242.925781 219.398438 242.832031 219.492188 242.832031 219.609375 C 242.832031 219.726562 242.925781 219.820312 243.042969 219.820312 C 243.160156 219.820312 243.253906 219.726562 243.253906 219.609375 Z M 243.253906 219.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.5 217.457031 C 243.5 217.339844 243.40625 217.246094 243.289062 217.246094 C 243.171875 217.246094 243.078125 217.339844 243.078125 217.457031 C 243.078125 217.574219 243.171875 217.667969 243.289062 217.667969 C 243.40625 217.667969 243.5 217.574219 243.5 217.457031 Z M 243.5 217.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.242188 218.445312 C 245.242188 218.328125 245.148438 218.234375 245.03125 218.234375 C 244.914062 218.234375 244.820312 218.328125 244.820312 218.445312 C 244.820312 218.5625 244.914062 218.65625 245.03125 218.65625 C 245.148438 218.65625 245.242188 218.5625 245.242188 218.445312 Z M 245.242188 218.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.402344 217.921875 C 241.402344 217.804688 241.308594 217.710938 241.191406 217.710938 C 241.074219 217.710938 240.980469 217.804688 240.980469 217.921875 C 240.980469 218.039062 241.074219 218.132812 241.191406 218.132812 C 241.308594 218.132812 241.402344 218.039062 241.402344 217.921875 Z M 241.402344 217.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.753906 220.0625 C 244.753906 219.945312 244.660156 219.851562 244.542969 219.851562 C 244.425781 219.851562 244.332031 219.945312 244.332031 220.0625 C 244.332031 220.179688 244.425781 220.273438 244.542969 220.273438 C 244.660156 220.273438 244.753906 220.179688 244.753906 220.0625 Z M 244.753906 220.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.015625 219.519531 C 247.015625 219.402344 246.921875 219.308594 246.804688 219.308594 C 246.6875 219.308594 246.59375 219.402344 246.59375 219.519531 C 246.59375 219.636719 246.6875 219.730469 246.804688 219.730469 C 246.921875 219.730469 247.015625 219.636719 247.015625 219.519531 Z M 247.015625 219.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.851562 222.640625 C 245.851562 222.523438 245.757812 222.429688 245.640625 222.429688 C 245.523438 222.429688 245.429688 222.523438 245.429688 222.640625 C 245.429688 222.757812 245.523438 222.851562 245.640625 222.851562 C 245.757812 222.851562 245.851562 222.757812 245.851562 222.640625 Z M 245.851562 222.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.304688 225.265625 C 248.304688 225.148438 248.210938 225.054688 248.09375 225.054688 C 247.976562 225.054688 247.882812 225.148438 247.882812 225.265625 C 247.882812 225.382812 247.976562 225.476562 248.09375 225.476562 C 248.210938 225.476562 248.304688 225.382812 248.304688 225.265625 Z M 248.304688 225.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.445312 228.097656 C 245.445312 227.980469 245.351562 227.886719 245.234375 227.886719 C 245.117188 227.886719 245.023438 227.980469 245.023438 228.097656 C 245.023438 228.214844 245.117188 228.308594 245.234375 228.308594 C 245.351562 228.308594 245.445312 228.214844 245.445312 228.097656 Z M 245.445312 228.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.738281 227.429688 C 240.738281 227.3125 240.644531 227.21875 240.527344 227.21875 C 240.410156 227.21875 240.316406 227.3125 240.316406 227.429688 C 240.316406 227.546875 240.410156 227.640625 240.527344 227.640625 C 240.644531 227.640625 240.738281 227.546875 240.738281 227.429688 Z M 240.738281 227.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.535156 225.195312 C 240.535156 225.078125 240.441406 224.984375 240.324219 224.984375 C 240.207031 224.984375 240.113281 225.078125 240.113281 225.195312 C 240.113281 225.3125 240.207031 225.40625 240.324219 225.40625 C 240.441406 225.40625 240.535156 225.3125 240.535156 225.195312 Z M 240.535156 225.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.238281 225.617188 C 236.238281 225.5 236.144531 225.40625 236.027344 225.40625 C 235.910156 225.40625 235.816406 225.5 235.816406 225.617188 C 235.816406 225.734375 235.910156 225.828125 236.027344 225.828125 C 236.144531 225.828125 236.238281 225.734375 236.238281 225.617188 Z M 236.238281 225.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.121094 226.617188 C 237.121094 226.5 237.027344 226.40625 236.910156 226.40625 C 236.792969 226.40625 236.699219 226.5 236.699219 226.617188 C 236.699219 226.734375 236.792969 226.828125 236.910156 226.828125 C 237.027344 226.828125 237.121094 226.734375 237.121094 226.617188 Z M 237.121094 226.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.152344 224.679688 C 239.152344 224.5625 239.058594 224.46875 238.941406 224.46875 C 238.824219 224.46875 238.730469 224.5625 238.730469 224.679688 C 238.730469 224.796875 238.824219 224.890625 238.941406 224.890625 C 239.058594 224.890625 239.152344 224.796875 239.152344 224.679688 Z M 239.152344 224.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.507812 223.6875 C 240.507812 223.570312 240.414062 223.476562 240.296875 223.476562 C 240.179688 223.476562 240.085938 223.570312 240.085938 223.6875 C 240.085938 223.804688 240.179688 223.898438 240.296875 223.898438 C 240.414062 223.898438 240.507812 223.804688 240.507812 223.6875 Z M 240.507812 223.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.070312 224.039062 C 241.070312 223.921875 240.976562 223.828125 240.859375 223.828125 C 240.742188 223.828125 240.648438 223.921875 240.648438 224.039062 C 240.648438 224.15625 240.742188 224.25 240.859375 224.25 C 240.976562 224.25 241.070312 224.15625 241.070312 224.039062 Z M 241.070312 224.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.878906 224.425781 C 238.878906 224.308594 238.785156 224.214844 238.667969 224.214844 C 238.550781 224.214844 238.457031 224.308594 238.457031 224.425781 C 238.457031 224.542969 238.550781 224.636719 238.667969 224.636719 C 238.785156 224.636719 238.878906 224.542969 238.878906 224.425781 Z M 238.878906 224.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.21875 223.136719 C 240.21875 223.019531 240.125 222.925781 240.007812 222.925781 C 239.890625 222.925781 239.796875 223.019531 239.796875 223.136719 C 239.796875 223.253906 239.890625 223.347656 240.007812 223.347656 C 240.125 223.347656 240.21875 223.253906 240.21875 223.136719 Z M 240.21875 223.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.5625 223.78125 C 240.5625 223.664062 240.46875 223.570312 240.351562 223.570312 C 240.234375 223.570312 240.140625 223.664062 240.140625 223.78125 C 240.140625 223.898438 240.234375 223.992188 240.351562 223.992188 C 240.46875 223.992188 240.5625 223.898438 240.5625 223.78125 Z M 240.5625 223.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.523438 224.808594 C 236.523438 224.691406 236.429688 224.597656 236.3125 224.597656 C 236.195312 224.597656 236.101562 224.691406 236.101562 224.808594 C 236.101562 224.925781 236.195312 225.019531 236.3125 225.019531 C 236.429688 225.019531 236.523438 224.925781 236.523438 224.808594 Z M 236.523438 224.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.414062 225.882812 C 237.414062 225.765625 237.320312 225.671875 237.203125 225.671875 C 237.085938 225.671875 236.992188 225.765625 236.992188 225.882812 C 236.992188 226 237.085938 226.09375 237.203125 226.09375 C 237.320312 226.09375 237.414062 226 237.414062 225.882812 Z M 237.414062 225.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.742188 225.019531 C 237.742188 224.902344 237.648438 224.808594 237.53125 224.808594 C 237.414062 224.808594 237.320312 224.902344 237.320312 225.019531 C 237.320312 225.136719 237.414062 225.230469 237.53125 225.230469 C 237.648438 225.230469 237.742188 225.136719 237.742188 225.019531 Z M 237.742188 225.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.320312 220.085938 C 239.320312 219.96875 239.226562 219.875 239.109375 219.875 C 238.992188 219.875 238.898438 219.96875 238.898438 220.085938 C 238.898438 220.203125 238.992188 220.296875 239.109375 220.296875 C 239.226562 220.296875 239.320312 220.203125 239.320312 220.085938 Z M 239.320312 220.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.738281 223.3125 C 239.738281 223.195312 239.644531 223.101562 239.527344 223.101562 C 239.410156 223.101562 239.316406 223.195312 239.316406 223.3125 C 239.316406 223.429688 239.410156 223.523438 239.527344 223.523438 C 239.644531 223.523438 239.738281 223.429688 239.738281 223.3125 Z M 239.738281 223.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.550781 227.03125 C 239.550781 226.914062 239.457031 226.820312 239.339844 226.820312 C 239.222656 226.820312 239.128906 226.914062 239.128906 227.03125 C 239.128906 227.148438 239.222656 227.242188 239.339844 227.242188 C 239.457031 227.242188 239.550781 227.148438 239.550781 227.03125 Z M 239.550781 227.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.484375 228.222656 C 241.484375 228.105469 241.390625 228.011719 241.273438 228.011719 C 241.15625 228.011719 241.0625 228.105469 241.0625 228.222656 C 241.0625 228.339844 241.15625 228.433594 241.273438 228.433594 C 241.390625 228.433594 241.484375 228.339844 241.484375 228.222656 Z M 241.484375 228.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.78125 229.347656 C 246.78125 229.230469 246.6875 229.136719 246.570312 229.136719 C 246.453125 229.136719 246.359375 229.230469 246.359375 229.347656 C 246.359375 229.464844 246.453125 229.558594 246.570312 229.558594 C 246.6875 229.558594 246.78125 229.464844 246.78125 229.347656 Z M 246.78125 229.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.796875 227.804688 C 247.796875 227.6875 247.703125 227.59375 247.585938 227.59375 C 247.46875 227.59375 247.375 227.6875 247.375 227.804688 C 247.375 227.921875 247.46875 228.015625 247.585938 228.015625 C 247.703125 228.015625 247.796875 227.921875 247.796875 227.804688 Z M 247.796875 227.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.933594 226.570312 C 245.933594 226.453125 245.839844 226.359375 245.722656 226.359375 C 245.605469 226.359375 245.511719 226.453125 245.511719 226.570312 C 245.511719 226.6875 245.605469 226.78125 245.722656 226.78125 C 245.839844 226.78125 245.933594 226.6875 245.933594 226.570312 Z M 245.933594 226.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.691406 227.554688 C 242.691406 227.4375 242.597656 227.34375 242.480469 227.34375 C 242.363281 227.34375 242.269531 227.4375 242.269531 227.554688 C 242.269531 227.671875 242.363281 227.765625 242.480469 227.765625 C 242.597656 227.765625 242.691406 227.671875 242.691406 227.554688 Z M 242.691406 227.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.246094 230.132812 C 244.246094 230.015625 244.152344 229.921875 244.035156 229.921875 C 243.917969 229.921875 243.824219 230.015625 243.824219 230.132812 C 243.824219 230.25 243.917969 230.34375 244.035156 230.34375 C 244.152344 230.34375 244.246094 230.25 244.246094 230.132812 Z M 244.246094 230.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.3125 232.125 C 242.3125 232.007812 242.21875 231.914062 242.101562 231.914062 C 241.984375 231.914062 241.890625 232.007812 241.890625 232.125 C 241.890625 232.242188 241.984375 232.335938 242.101562 232.335938 C 242.21875 232.335938 242.3125 232.242188 242.3125 232.125 Z M 242.3125 232.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.929688 235.886719 C 240.929688 235.769531 240.835938 235.675781 240.71875 235.675781 C 240.601562 235.675781 240.507812 235.769531 240.507812 235.886719 C 240.507812 236.003906 240.601562 236.097656 240.71875 236.097656 C 240.835938 236.097656 240.929688 236.003906 240.929688 235.886719 Z M 240.929688 235.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.519531 238.109375 C 236.519531 237.992188 236.425781 237.898438 236.308594 237.898438 C 236.191406 237.898438 236.097656 237.992188 236.097656 238.109375 C 236.097656 238.226562 236.191406 238.320312 236.308594 238.320312 C 236.425781 238.320312 236.519531 238.226562 236.519531 238.109375 Z M 236.519531 238.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.546875 239.683594 C 239.546875 239.566406 239.453125 239.472656 239.335938 239.472656 C 239.21875 239.472656 239.125 239.566406 239.125 239.683594 C 239.125 239.800781 239.21875 239.894531 239.335938 239.894531 C 239.453125 239.894531 239.546875 239.800781 239.546875 239.683594 Z M 239.546875 239.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.058594 239.628906 C 238.058594 239.511719 237.964844 239.417969 237.847656 239.417969 C 237.730469 239.417969 237.636719 239.511719 237.636719 239.628906 C 237.636719 239.746094 237.730469 239.839844 237.847656 239.839844 C 237.964844 239.839844 238.058594 239.746094 238.058594 239.628906 Z M 238.058594 239.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.308594 236.867188 C 234.308594 236.75 234.214844 236.65625 234.097656 236.65625 C 233.980469 236.65625 233.886719 236.75 233.886719 236.867188 C 233.886719 236.984375 233.980469 237.078125 234.097656 237.078125 C 234.214844 237.078125 234.308594 236.984375 234.308594 236.867188 Z M 234.308594 236.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.464844 234.804688 C 235.464844 234.6875 235.371094 234.59375 235.253906 234.59375 C 235.136719 234.59375 235.042969 234.6875 235.042969 234.804688 C 235.042969 234.921875 235.136719 235.015625 235.253906 235.015625 C 235.371094 235.015625 235.464844 234.921875 235.464844 234.804688 Z M 235.464844 234.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.957031 233.378906 C 235.957031 233.261719 235.863281 233.167969 235.746094 233.167969 C 235.628906 233.167969 235.535156 233.261719 235.535156 233.378906 C 235.535156 233.496094 235.628906 233.589844 235.746094 233.589844 C 235.863281 233.589844 235.957031 233.496094 235.957031 233.378906 Z M 235.957031 233.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.453125 234.195312 C 237.453125 234.078125 237.359375 233.984375 237.242188 233.984375 C 237.125 233.984375 237.03125 234.078125 237.03125 234.195312 C 237.03125 234.3125 237.125 234.40625 237.242188 234.40625 C 237.359375 234.40625 237.453125 234.3125 237.453125 234.195312 Z M 237.453125 234.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.683594 233.433594 C 237.683594 233.316406 237.589844 233.222656 237.472656 233.222656 C 237.355469 233.222656 237.261719 233.316406 237.261719 233.433594 C 237.261719 233.550781 237.355469 233.644531 237.472656 233.644531 C 237.589844 233.644531 237.683594 233.550781 237.683594 233.433594 Z M 237.683594 233.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.335938 234.519531 C 235.335938 234.402344 235.242188 234.308594 235.125 234.308594 C 235.007812 234.308594 234.914062 234.402344 234.914062 234.519531 C 234.914062 234.636719 235.007812 234.730469 235.125 234.730469 C 235.242188 234.730469 235.335938 234.636719 235.335938 234.519531 Z M 235.335938 234.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.667969 235.109375 C 236.667969 234.992188 236.574219 234.898438 236.457031 234.898438 C 236.339844 234.898438 236.246094 234.992188 236.246094 235.109375 C 236.246094 235.226562 236.339844 235.320312 236.457031 235.320312 C 236.574219 235.320312 236.667969 235.226562 236.667969 235.109375 Z M 236.667969 235.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.554688 237.878906 C 236.554688 237.761719 236.460938 237.667969 236.34375 237.667969 C 236.226562 237.667969 236.132812 237.761719 236.132812 237.878906 C 236.132812 237.996094 236.226562 238.089844 236.34375 238.089844 C 236.460938 238.089844 236.554688 237.996094 236.554688 237.878906 Z M 236.554688 237.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.453125 236.277344 C 235.453125 236.160156 235.359375 236.066406 235.242188 236.066406 C 235.125 236.066406 235.03125 236.160156 235.03125 236.277344 C 235.03125 236.394531 235.125 236.488281 235.242188 236.488281 C 235.359375 236.488281 235.453125 236.394531 235.453125 236.277344 Z M 235.453125 236.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.894531 235.679688 C 233.894531 235.5625 233.800781 235.46875 233.683594 235.46875 C 233.566406 235.46875 233.472656 235.5625 233.472656 235.679688 C 233.472656 235.796875 233.566406 235.890625 233.683594 235.890625 C 233.800781 235.890625 233.894531 235.796875 233.894531 235.679688 Z M 233.894531 235.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.03125 237.109375 C 232.03125 236.992188 231.9375 236.898438 231.820312 236.898438 C 231.703125 236.898438 231.609375 236.992188 231.609375 237.109375 C 231.609375 237.226562 231.703125 237.320312 231.820312 237.320312 C 231.9375 237.320312 232.03125 237.226562 232.03125 237.109375 Z M 232.03125 237.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.074219 238.632812 C 231.074219 238.515625 230.980469 238.421875 230.863281 238.421875 C 230.746094 238.421875 230.652344 238.515625 230.652344 238.632812 C 230.652344 238.75 230.746094 238.84375 230.863281 238.84375 C 230.980469 238.84375 231.074219 238.75 231.074219 238.632812 Z M 231.074219 238.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.042969 241.636719 C 231.042969 241.519531 230.949219 241.425781 230.832031 241.425781 C 230.714844 241.425781 230.621094 241.519531 230.621094 241.636719 C 230.621094 241.753906 230.714844 241.847656 230.832031 241.847656 C 230.949219 241.847656 231.042969 241.753906 231.042969 241.636719 Z M 231.042969 241.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.890625 243.714844 C 229.890625 243.597656 229.796875 243.503906 229.679688 243.503906 C 229.5625 243.503906 229.46875 243.597656 229.46875 243.714844 C 229.46875 243.832031 229.5625 243.925781 229.679688 243.925781 C 229.796875 243.925781 229.890625 243.832031 229.890625 243.714844 Z M 229.890625 243.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.785156 244.574219 C 228.785156 244.457031 228.691406 244.363281 228.574219 244.363281 C 228.457031 244.363281 228.363281 244.457031 228.363281 244.574219 C 228.363281 244.691406 228.457031 244.785156 228.574219 244.785156 C 228.691406 244.785156 228.785156 244.691406 228.785156 244.574219 Z M 228.785156 244.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.070312 245.949219 C 228.070312 245.832031 227.976562 245.738281 227.859375 245.738281 C 227.742188 245.738281 227.648438 245.832031 227.648438 245.949219 C 227.648438 246.066406 227.742188 246.160156 227.859375 246.160156 C 227.976562 246.160156 228.070312 246.066406 228.070312 245.949219 Z M 228.070312 245.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.625 246.285156 C 228.625 246.167969 228.53125 246.074219 228.414062 246.074219 C 228.296875 246.074219 228.203125 246.167969 228.203125 246.285156 C 228.203125 246.402344 228.296875 246.496094 228.414062 246.496094 C 228.53125 246.496094 228.625 246.402344 228.625 246.285156 Z M 228.625 246.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.589844 246.121094 C 227.589844 246.003906 227.496094 245.910156 227.378906 245.910156 C 227.261719 245.910156 227.167969 246.003906 227.167969 246.121094 C 227.167969 246.238281 227.261719 246.332031 227.378906 246.332031 C 227.496094 246.332031 227.589844 246.238281 227.589844 246.121094 Z M 227.589844 246.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.75 247.699219 C 231.75 247.582031 231.65625 247.488281 231.539062 247.488281 C 231.421875 247.488281 231.328125 247.582031 231.328125 247.699219 C 231.328125 247.816406 231.421875 247.910156 231.539062 247.910156 C 231.65625 247.910156 231.75 247.816406 231.75 247.699219 Z M 231.75 247.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.121094 246.378906 C 230.121094 246.261719 230.027344 246.167969 229.910156 246.167969 C 229.792969 246.167969 229.699219 246.261719 229.699219 246.378906 C 229.699219 246.496094 229.792969 246.589844 229.910156 246.589844 C 230.027344 246.589844 230.121094 246.496094 230.121094 246.378906 Z M 230.121094 246.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.101562 248.078125 C 232.101562 247.960938 232.007812 247.867188 231.890625 247.867188 C 231.773438 247.867188 231.679688 247.960938 231.679688 248.078125 C 231.679688 248.195312 231.773438 248.289062 231.890625 248.289062 C 232.007812 248.289062 232.101562 248.195312 232.101562 248.078125 Z M 232.101562 248.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.949219 245.117188 C 233.949219 245 233.855469 244.90625 233.738281 244.90625 C 233.621094 244.90625 233.527344 245 233.527344 245.117188 C 233.527344 245.234375 233.621094 245.328125 233.738281 245.328125 C 233.855469 245.328125 233.949219 245.234375 233.949219 245.117188 Z M 233.949219 245.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.097656 243.363281 C 238.097656 243.246094 238.003906 243.152344 237.886719 243.152344 C 237.769531 243.152344 237.675781 243.246094 237.675781 243.363281 C 237.675781 243.480469 237.769531 243.574219 237.886719 243.574219 C 238.003906 243.574219 238.097656 243.480469 238.097656 243.363281 Z M 238.097656 243.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.53125 243.472656 C 238.53125 243.355469 238.4375 243.261719 238.320312 243.261719 C 238.203125 243.261719 238.109375 243.355469 238.109375 243.472656 C 238.109375 243.589844 238.203125 243.683594 238.320312 243.683594 C 238.4375 243.683594 238.53125 243.589844 238.53125 243.472656 Z M 238.53125 243.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.335938 244.78125 C 239.335938 244.664062 239.242188 244.570312 239.125 244.570312 C 239.007812 244.570312 238.914062 244.664062 238.914062 244.78125 C 238.914062 244.898438 239.007812 244.992188 239.125 244.992188 C 239.242188 244.992188 239.335938 244.898438 239.335938 244.78125 Z M 239.335938 244.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.269531 247.886719 C 241.269531 247.769531 241.175781 247.675781 241.058594 247.675781 C 240.941406 247.675781 240.847656 247.769531 240.847656 247.886719 C 240.847656 248.003906 240.941406 248.097656 241.058594 248.097656 C 241.175781 248.097656 241.269531 248.003906 241.269531 247.886719 Z M 241.269531 247.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.488281 246.691406 C 240.488281 246.574219 240.394531 246.480469 240.277344 246.480469 C 240.160156 246.480469 240.066406 246.574219 240.066406 246.691406 C 240.066406 246.808594 240.160156 246.902344 240.277344 246.902344 C 240.394531 246.902344 240.488281 246.808594 240.488281 246.691406 Z M 240.488281 246.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.855469 252.636719 C 242.855469 252.519531 242.761719 252.425781 242.644531 252.425781 C 242.527344 252.425781 242.433594 252.519531 242.433594 252.636719 C 242.433594 252.753906 242.527344 252.847656 242.644531 252.847656 C 242.761719 252.847656 242.855469 252.753906 242.855469 252.636719 Z M 242.855469 252.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.09375 252.71875 C 243.09375 252.601562 243 252.507812 242.882812 252.507812 C 242.765625 252.507812 242.671875 252.601562 242.671875 252.71875 C 242.671875 252.835938 242.765625 252.929688 242.882812 252.929688 C 243 252.929688 243.09375 252.835938 243.09375 252.71875 Z M 243.09375 252.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.753906 252.0625 C 249.753906 251.945312 249.660156 251.851562 249.542969 251.851562 C 249.425781 251.851562 249.332031 251.945312 249.332031 252.0625 C 249.332031 252.179688 249.425781 252.273438 249.542969 252.273438 C 249.660156 252.273438 249.753906 252.179688 249.753906 252.0625 Z M 249.753906 252.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.835938 255.191406 C 247.835938 255.074219 247.742188 254.980469 247.625 254.980469 C 247.507812 254.980469 247.414062 255.074219 247.414062 255.191406 C 247.414062 255.308594 247.507812 255.402344 247.625 255.402344 C 247.742188 255.402344 247.835938 255.308594 247.835938 255.191406 Z M 247.835938 255.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.785156 251.113281 C 248.785156 250.996094 248.691406 250.902344 248.574219 250.902344 C 248.457031 250.902344 248.363281 250.996094 248.363281 251.113281 C 248.363281 251.230469 248.457031 251.324219 248.574219 251.324219 C 248.691406 251.324219 248.785156 251.230469 248.785156 251.113281 Z M 248.785156 251.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.660156 250.347656 C 248.660156 250.230469 248.566406 250.136719 248.449219 250.136719 C 248.332031 250.136719 248.238281 250.230469 248.238281 250.347656 C 248.238281 250.464844 248.332031 250.558594 248.449219 250.558594 C 248.566406 250.558594 248.660156 250.464844 248.660156 250.347656 Z M 248.660156 250.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.765625 247.511719 C 250.765625 247.394531 250.671875 247.300781 250.554688 247.300781 C 250.4375 247.300781 250.34375 247.394531 250.34375 247.511719 C 250.34375 247.628906 250.4375 247.722656 250.554688 247.722656 C 250.671875 247.722656 250.765625 247.628906 250.765625 247.511719 Z M 250.765625 247.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.082031 247.339844 C 250.082031 247.222656 249.988281 247.128906 249.871094 247.128906 C 249.753906 247.128906 249.660156 247.222656 249.660156 247.339844 C 249.660156 247.457031 249.753906 247.550781 249.871094 247.550781 C 249.988281 247.550781 250.082031 247.457031 250.082031 247.339844 Z M 250.082031 247.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.570312 248.222656 C 250.570312 248.105469 250.476562 248.011719 250.359375 248.011719 C 250.242188 248.011719 250.148438 248.105469 250.148438 248.222656 C 250.148438 248.339844 250.242188 248.433594 250.359375 248.433594 C 250.476562 248.433594 250.570312 248.339844 250.570312 248.222656 Z M 250.570312 248.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.683594 244.503906 C 251.683594 244.386719 251.589844 244.292969 251.472656 244.292969 C 251.355469 244.292969 251.261719 244.386719 251.261719 244.503906 C 251.261719 244.621094 251.355469 244.714844 251.472656 244.714844 C 251.589844 244.714844 251.683594 244.621094 251.683594 244.503906 Z M 251.683594 244.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.503906 245.070312 C 248.503906 244.953125 248.410156 244.859375 248.292969 244.859375 C 248.175781 244.859375 248.082031 244.953125 248.082031 245.070312 C 248.082031 245.1875 248.175781 245.28125 248.292969 245.28125 C 248.410156 245.28125 248.503906 245.1875 248.503906 245.070312 Z M 248.503906 245.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.324219 245.003906 C 250.324219 244.886719 250.230469 244.792969 250.113281 244.792969 C 249.996094 244.792969 249.902344 244.886719 249.902344 245.003906 C 249.902344 245.121094 249.996094 245.214844 250.113281 245.214844 C 250.230469 245.214844 250.324219 245.121094 250.324219 245.003906 Z M 250.324219 245.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.105469 245.597656 C 252.105469 245.480469 252.011719 245.386719 251.894531 245.386719 C 251.777344 245.386719 251.683594 245.480469 251.683594 245.597656 C 251.683594 245.714844 251.777344 245.808594 251.894531 245.808594 C 252.011719 245.808594 252.105469 245.714844 252.105469 245.597656 Z M 252.105469 245.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.945312 244.335938 C 250.945312 244.21875 250.851562 244.125 250.734375 244.125 C 250.617188 244.125 250.523438 244.21875 250.523438 244.335938 C 250.523438 244.453125 250.617188 244.546875 250.734375 244.546875 C 250.851562 244.546875 250.945312 244.453125 250.945312 244.335938 Z M 250.945312 244.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.691406 243.84375 C 249.691406 243.726562 249.597656 243.632812 249.480469 243.632812 C 249.363281 243.632812 249.269531 243.726562 249.269531 243.84375 C 249.269531 243.960938 249.363281 244.054688 249.480469 244.054688 C 249.597656 244.054688 249.691406 243.960938 249.691406 243.84375 Z M 249.691406 243.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.007812 242.753906 C 249.007812 242.636719 248.914062 242.542969 248.796875 242.542969 C 248.679688 242.542969 248.585938 242.636719 248.585938 242.753906 C 248.585938 242.871094 248.679688 242.964844 248.796875 242.964844 C 248.914062 242.964844 249.007812 242.871094 249.007812 242.753906 Z M 249.007812 242.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.71875 246.023438 C 246.71875 245.90625 246.625 245.8125 246.507812 245.8125 C 246.390625 245.8125 246.296875 245.90625 246.296875 246.023438 C 246.296875 246.140625 246.390625 246.234375 246.507812 246.234375 C 246.625 246.234375 246.71875 246.140625 246.71875 246.023438 Z M 246.71875 246.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.894531 243.65625 C 244.894531 243.539062 244.800781 243.445312 244.683594 243.445312 C 244.566406 243.445312 244.472656 243.539062 244.472656 243.65625 C 244.472656 243.773438 244.566406 243.867188 244.683594 243.867188 C 244.800781 243.867188 244.894531 243.773438 244.894531 243.65625 Z M 244.894531 243.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.75 244.644531 C 242.75 244.527344 242.65625 244.433594 242.539062 244.433594 C 242.421875 244.433594 242.328125 244.527344 242.328125 244.644531 C 242.328125 244.761719 242.421875 244.855469 242.539062 244.855469 C 242.65625 244.855469 242.75 244.761719 242.75 244.644531 Z M 242.75 244.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.011719 245.65625 C 238.011719 245.539062 237.917969 245.445312 237.800781 245.445312 C 237.683594 245.445312 237.589844 245.539062 237.589844 245.65625 C 237.589844 245.773438 237.683594 245.867188 237.800781 245.867188 C 237.917969 245.867188 238.011719 245.773438 238.011719 245.65625 Z M 238.011719 245.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.59375 246.316406 C 238.59375 246.199219 238.5 246.105469 238.382812 246.105469 C 238.265625 246.105469 238.171875 246.199219 238.171875 246.316406 C 238.171875 246.433594 238.265625 246.527344 238.382812 246.527344 C 238.5 246.527344 238.59375 246.433594 238.59375 246.316406 Z M 238.59375 246.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.6875 247.363281 C 241.6875 247.246094 241.59375 247.152344 241.476562 247.152344 C 241.359375 247.152344 241.265625 247.246094 241.265625 247.363281 C 241.265625 247.480469 241.359375 247.574219 241.476562 247.574219 C 241.59375 247.574219 241.6875 247.480469 241.6875 247.363281 Z M 241.6875 247.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.65625 250.082031 C 242.65625 249.964844 242.5625 249.871094 242.445312 249.871094 C 242.328125 249.871094 242.234375 249.964844 242.234375 250.082031 C 242.234375 250.199219 242.328125 250.292969 242.445312 250.292969 C 242.5625 250.292969 242.65625 250.199219 242.65625 250.082031 Z M 242.65625 250.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.84375 250.226562 C 241.84375 250.109375 241.75 250.015625 241.632812 250.015625 C 241.515625 250.015625 241.421875 250.109375 241.421875 250.226562 C 241.421875 250.34375 241.515625 250.4375 241.632812 250.4375 C 241.75 250.4375 241.84375 250.34375 241.84375 250.226562 Z M 241.84375 250.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.304688 245.773438 C 242.304688 245.65625 242.210938 245.5625 242.09375 245.5625 C 241.976562 245.5625 241.882812 245.65625 241.882812 245.773438 C 241.882812 245.890625 241.976562 245.984375 242.09375 245.984375 C 242.210938 245.984375 242.304688 245.890625 242.304688 245.773438 Z M 242.304688 245.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.332031 243.101562 C 238.332031 242.984375 238.238281 242.890625 238.121094 242.890625 C 238.003906 242.890625 237.910156 242.984375 237.910156 243.101562 C 237.910156 243.21875 238.003906 243.3125 238.121094 243.3125 C 238.238281 243.3125 238.332031 243.21875 238.332031 243.101562 Z M 238.332031 243.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.839844 244.097656 C 241.839844 243.980469 241.746094 243.886719 241.628906 243.886719 C 241.511719 243.886719 241.417969 243.980469 241.417969 244.097656 C 241.417969 244.214844 241.511719 244.308594 241.628906 244.308594 C 241.746094 244.308594 241.839844 244.214844 241.839844 244.097656 Z M 241.839844 244.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.039062 236.648438 C 238.039062 236.53125 237.945312 236.4375 237.828125 236.4375 C 237.710938 236.4375 237.617188 236.53125 237.617188 236.648438 C 237.617188 236.765625 237.710938 236.859375 237.828125 236.859375 C 237.945312 236.859375 238.039062 236.765625 238.039062 236.648438 Z M 238.039062 236.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.300781 236.855469 C 240.300781 236.738281 240.207031 236.644531 240.089844 236.644531 C 239.972656 236.644531 239.878906 236.738281 239.878906 236.855469 C 239.878906 236.972656 239.972656 237.066406 240.089844 237.066406 C 240.207031 237.066406 240.300781 236.972656 240.300781 236.855469 Z M 240.300781 236.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.726562 235.65625 C 236.726562 235.539062 236.632812 235.445312 236.515625 235.445312 C 236.398438 235.445312 236.304688 235.539062 236.304688 235.65625 C 236.304688 235.773438 236.398438 235.867188 236.515625 235.867188 C 236.632812 235.867188 236.726562 235.773438 236.726562 235.65625 Z M 236.726562 235.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.871094 234.550781 C 237.871094 234.433594 237.777344 234.339844 237.660156 234.339844 C 237.542969 234.339844 237.449219 234.433594 237.449219 234.550781 C 237.449219 234.667969 237.542969 234.761719 237.660156 234.761719 C 237.777344 234.761719 237.871094 234.667969 237.871094 234.550781 Z M 237.871094 234.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.980469 233.796875 C 236.980469 233.679688 236.886719 233.585938 236.769531 233.585938 C 236.652344 233.585938 236.558594 233.679688 236.558594 233.796875 C 236.558594 233.914062 236.652344 234.007812 236.769531 234.007812 C 236.886719 234.007812 236.980469 233.914062 236.980469 233.796875 Z M 236.980469 233.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.320312 234.828125 C 232.320312 234.710938 232.226562 234.617188 232.109375 234.617188 C 231.992188 234.617188 231.898438 234.710938 231.898438 234.828125 C 231.898438 234.945312 231.992188 235.039062 232.109375 235.039062 C 232.226562 235.039062 232.320312 234.945312 232.320312 234.828125 Z M 232.320312 234.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.660156 233.253906 C 231.660156 233.136719 231.566406 233.042969 231.449219 233.042969 C 231.332031 233.042969 231.238281 233.136719 231.238281 233.253906 C 231.238281 233.371094 231.332031 233.464844 231.449219 233.464844 C 231.566406 233.464844 231.660156 233.371094 231.660156 233.253906 Z M 231.660156 233.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.28125 231 C 229.28125 230.882812 229.1875 230.789062 229.070312 230.789062 C 228.953125 230.789062 228.859375 230.882812 228.859375 231 C 228.859375 231.117188 228.953125 231.210938 229.070312 231.210938 C 229.1875 231.210938 229.28125 231.117188 229.28125 231 Z M 229.28125 231 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.738281 228.226562 C 231.738281 228.109375 231.644531 228.015625 231.527344 228.015625 C 231.410156 228.015625 231.316406 228.109375 231.316406 228.226562 C 231.316406 228.34375 231.410156 228.4375 231.527344 228.4375 C 231.644531 228.4375 231.738281 228.34375 231.738281 228.226562 Z M 231.738281 228.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.9375 226.421875 C 233.9375 226.304688 233.84375 226.210938 233.726562 226.210938 C 233.609375 226.210938 233.515625 226.304688 233.515625 226.421875 C 233.515625 226.539062 233.609375 226.632812 233.726562 226.632812 C 233.84375 226.632812 233.9375 226.539062 233.9375 226.421875 Z M 233.9375 226.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.589844 226.980469 C 235.589844 226.863281 235.496094 226.769531 235.378906 226.769531 C 235.261719 226.769531 235.167969 226.863281 235.167969 226.980469 C 235.167969 227.097656 235.261719 227.191406 235.378906 227.191406 C 235.496094 227.191406 235.589844 227.097656 235.589844 226.980469 Z M 235.589844 226.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.660156 224.980469 C 234.660156 224.863281 234.566406 224.769531 234.449219 224.769531 C 234.332031 224.769531 234.238281 224.863281 234.238281 224.980469 C 234.238281 225.097656 234.332031 225.191406 234.449219 225.191406 C 234.566406 225.191406 234.660156 225.097656 234.660156 224.980469 Z M 234.660156 224.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.949219 225.980469 C 237.949219 225.863281 237.855469 225.769531 237.738281 225.769531 C 237.621094 225.769531 237.527344 225.863281 237.527344 225.980469 C 237.527344 226.097656 237.621094 226.191406 237.738281 226.191406 C 237.855469 226.191406 237.949219 226.097656 237.949219 225.980469 Z M 237.949219 225.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.957031 221.808594 C 233.957031 221.691406 233.863281 221.597656 233.746094 221.597656 C 233.628906 221.597656 233.535156 221.691406 233.535156 221.808594 C 233.535156 221.925781 233.628906 222.019531 233.746094 222.019531 C 233.863281 222.019531 233.957031 221.925781 233.957031 221.808594 Z M 233.957031 221.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.941406 217.5 C 231.941406 217.382812 231.847656 217.289062 231.730469 217.289062 C 231.613281 217.289062 231.519531 217.382812 231.519531 217.5 C 231.519531 217.617188 231.613281 217.710938 231.730469 217.710938 C 231.847656 217.710938 231.941406 217.617188 231.941406 217.5 Z M 231.941406 217.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.757812 219.363281 C 235.757812 219.246094 235.664062 219.152344 235.546875 219.152344 C 235.429688 219.152344 235.335938 219.246094 235.335938 219.363281 C 235.335938 219.480469 235.429688 219.574219 235.546875 219.574219 C 235.664062 219.574219 235.757812 219.480469 235.757812 219.363281 Z M 235.757812 219.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.878906 217.71875 C 234.878906 217.601562 234.785156 217.507812 234.667969 217.507812 C 234.550781 217.507812 234.457031 217.601562 234.457031 217.71875 C 234.457031 217.835938 234.550781 217.929688 234.667969 217.929688 C 234.785156 217.929688 234.878906 217.835938 234.878906 217.71875 Z M 234.878906 217.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.664062 215.140625 C 232.664062 215.023438 232.570312 214.929688 232.453125 214.929688 C 232.335938 214.929688 232.242188 215.023438 232.242188 215.140625 C 232.242188 215.257812 232.335938 215.351562 232.453125 215.351562 C 232.570312 215.351562 232.664062 215.257812 232.664062 215.140625 Z M 232.664062 215.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.746094 216.144531 C 232.746094 216.027344 232.652344 215.933594 232.535156 215.933594 C 232.417969 215.933594 232.324219 216.027344 232.324219 216.144531 C 232.324219 216.261719 232.417969 216.355469 232.535156 216.355469 C 232.652344 216.355469 232.746094 216.261719 232.746094 216.144531 Z M 232.746094 216.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.832031 215.652344 C 231.832031 215.535156 231.738281 215.441406 231.621094 215.441406 C 231.503906 215.441406 231.410156 215.535156 231.410156 215.652344 C 231.410156 215.769531 231.503906 215.863281 231.621094 215.863281 C 231.738281 215.863281 231.832031 215.769531 231.832031 215.652344 Z M 231.832031 215.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.71875 218.941406 C 230.71875 218.824219 230.625 218.730469 230.507812 218.730469 C 230.390625 218.730469 230.296875 218.824219 230.296875 218.941406 C 230.296875 219.058594 230.390625 219.152344 230.507812 219.152344 C 230.625 219.152344 230.71875 219.058594 230.71875 218.941406 Z M 230.71875 218.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.691406 216.160156 C 228.691406 216.042969 228.597656 215.949219 228.480469 215.949219 C 228.363281 215.949219 228.269531 216.042969 228.269531 216.160156 C 228.269531 216.277344 228.363281 216.371094 228.480469 216.371094 C 228.597656 216.371094 228.691406 216.277344 228.691406 216.160156 Z M 228.691406 216.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.5625 213.238281 C 229.5625 213.121094 229.46875 213.027344 229.351562 213.027344 C 229.234375 213.027344 229.140625 213.121094 229.140625 213.238281 C 229.140625 213.355469 229.234375 213.449219 229.351562 213.449219 C 229.46875 213.449219 229.5625 213.355469 229.5625 213.238281 Z M 229.5625 213.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.230469 216.113281 C 230.230469 215.996094 230.136719 215.902344 230.019531 215.902344 C 229.902344 215.902344 229.808594 215.996094 229.808594 216.113281 C 229.808594 216.230469 229.902344 216.324219 230.019531 216.324219 C 230.136719 216.324219 230.230469 216.230469 230.230469 216.113281 Z M 230.230469 216.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.984375 217.792969 C 226.984375 217.675781 226.890625 217.582031 226.773438 217.582031 C 226.65625 217.582031 226.5625 217.675781 226.5625 217.792969 C 226.5625 217.910156 226.65625 218.003906 226.773438 218.003906 C 226.890625 218.003906 226.984375 217.910156 226.984375 217.792969 Z M 226.984375 217.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.445312 218.355469 C 225.445312 218.238281 225.351562 218.144531 225.234375 218.144531 C 225.117188 218.144531 225.023438 218.238281 225.023438 218.355469 C 225.023438 218.472656 225.117188 218.566406 225.234375 218.566406 C 225.351562 218.566406 225.445312 218.472656 225.445312 218.355469 Z M 225.445312 218.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.050781 219.230469 C 230.050781 219.113281 229.957031 219.019531 229.839844 219.019531 C 229.722656 219.019531 229.628906 219.113281 229.628906 219.230469 C 229.628906 219.347656 229.722656 219.441406 229.839844 219.441406 C 229.957031 219.441406 230.050781 219.347656 230.050781 219.230469 Z M 230.050781 219.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.449219 221.578125 C 233.449219 221.460938 233.355469 221.367188 233.238281 221.367188 C 233.121094 221.367188 233.027344 221.460938 233.027344 221.578125 C 233.027344 221.695312 233.121094 221.789062 233.238281 221.789062 C 233.355469 221.789062 233.449219 221.695312 233.449219 221.578125 Z M 233.449219 221.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.089844 218.660156 C 232.089844 218.542969 231.996094 218.449219 231.878906 218.449219 C 231.761719 218.449219 231.667969 218.542969 231.667969 218.660156 C 231.667969 218.777344 231.761719 218.871094 231.878906 218.871094 C 231.996094 218.871094 232.089844 218.777344 232.089844 218.660156 Z M 232.089844 218.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.332031 221.746094 C 234.332031 221.628906 234.238281 221.535156 234.121094 221.535156 C 234.003906 221.535156 233.910156 221.628906 233.910156 221.746094 C 233.910156 221.863281 234.003906 221.957031 234.121094 221.957031 C 234.238281 221.957031 234.332031 221.863281 234.332031 221.746094 Z M 234.332031 221.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.828125 220.832031 C 235.828125 220.714844 235.734375 220.621094 235.617188 220.621094 C 235.5 220.621094 235.40625 220.714844 235.40625 220.832031 C 235.40625 220.949219 235.5 221.042969 235.617188 221.042969 C 235.734375 221.042969 235.828125 220.949219 235.828125 220.832031 Z M 235.828125 220.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.332031 220.058594 C 236.332031 219.941406 236.238281 219.847656 236.121094 219.847656 C 236.003906 219.847656 235.910156 219.941406 235.910156 220.058594 C 235.910156 220.175781 236.003906 220.269531 236.121094 220.269531 C 236.238281 220.269531 236.332031 220.175781 236.332031 220.058594 Z M 236.332031 220.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.988281 217.625 C 232.988281 217.507812 232.894531 217.414062 232.777344 217.414062 C 232.660156 217.414062 232.566406 217.507812 232.566406 217.625 C 232.566406 217.742188 232.660156 217.835938 232.777344 217.835938 C 232.894531 217.835938 232.988281 217.742188 232.988281 217.625 Z M 232.988281 217.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.835938 214.0625 C 232.835938 213.945312 232.742188 213.851562 232.625 213.851562 C 232.507812 213.851562 232.414062 213.945312 232.414062 214.0625 C 232.414062 214.179688 232.507812 214.273438 232.625 214.273438 C 232.742188 214.273438 232.835938 214.179688 232.835938 214.0625 Z M 232.835938 214.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.027344 217.1875 C 233.027344 217.070312 232.933594 216.976562 232.816406 216.976562 C 232.699219 216.976562 232.605469 217.070312 232.605469 217.1875 C 232.605469 217.304688 232.699219 217.398438 232.816406 217.398438 C 232.933594 217.398438 233.027344 217.304688 233.027344 217.1875 Z M 233.027344 217.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.609375 214.707031 C 231.609375 214.589844 231.515625 214.496094 231.398438 214.496094 C 231.28125 214.496094 231.1875 214.589844 231.1875 214.707031 C 231.1875 214.824219 231.28125 214.917969 231.398438 214.917969 C 231.515625 214.917969 231.609375 214.824219 231.609375 214.707031 Z M 231.609375 214.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.59375 213.851562 C 232.59375 213.734375 232.5 213.640625 232.382812 213.640625 C 232.265625 213.640625 232.171875 213.734375 232.171875 213.851562 C 232.171875 213.96875 232.265625 214.0625 232.382812 214.0625 C 232.5 214.0625 232.59375 213.96875 232.59375 213.851562 Z M 232.59375 213.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.214844 213.929688 C 232.214844 213.8125 232.121094 213.71875 232.003906 213.71875 C 231.886719 213.71875 231.792969 213.8125 231.792969 213.929688 C 231.792969 214.046875 231.886719 214.140625 232.003906 214.140625 C 232.121094 214.140625 232.214844 214.046875 232.214844 213.929688 Z M 232.214844 213.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.9375 210.074219 C 229.9375 209.957031 229.84375 209.863281 229.726562 209.863281 C 229.609375 209.863281 229.515625 209.957031 229.515625 210.074219 C 229.515625 210.191406 229.609375 210.285156 229.726562 210.285156 C 229.84375 210.285156 229.9375 210.191406 229.9375 210.074219 Z M 229.9375 210.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.15625 205.675781 C 230.15625 205.558594 230.0625 205.464844 229.945312 205.464844 C 229.828125 205.464844 229.734375 205.558594 229.734375 205.675781 C 229.734375 205.792969 229.828125 205.886719 229.945312 205.886719 C 230.0625 205.886719 230.15625 205.792969 230.15625 205.675781 Z M 230.15625 205.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.160156 206.167969 C 228.160156 206.050781 228.066406 205.957031 227.949219 205.957031 C 227.832031 205.957031 227.738281 206.050781 227.738281 206.167969 C 227.738281 206.285156 227.832031 206.378906 227.949219 206.378906 C 228.066406 206.378906 228.160156 206.285156 228.160156 206.167969 Z M 228.160156 206.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.5 206.605469 C 227.5 206.488281 227.40625 206.394531 227.289062 206.394531 C 227.171875 206.394531 227.078125 206.488281 227.078125 206.605469 C 227.078125 206.722656 227.171875 206.816406 227.289062 206.816406 C 227.40625 206.816406 227.5 206.722656 227.5 206.605469 Z M 227.5 206.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.363281 207.761719 C 227.363281 207.644531 227.269531 207.550781 227.152344 207.550781 C 227.035156 207.550781 226.941406 207.644531 226.941406 207.761719 C 226.941406 207.878906 227.035156 207.972656 227.152344 207.972656 C 227.269531 207.972656 227.363281 207.878906 227.363281 207.761719 Z M 227.363281 207.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.972656 209.386719 C 221.972656 209.269531 221.878906 209.175781 221.761719 209.175781 C 221.644531 209.175781 221.550781 209.269531 221.550781 209.386719 C 221.550781 209.503906 221.644531 209.597656 221.761719 209.597656 C 221.878906 209.597656 221.972656 209.503906 221.972656 209.386719 Z M 221.972656 209.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.679688 208.574219 C 223.679688 208.457031 223.585938 208.363281 223.46875 208.363281 C 223.351562 208.363281 223.257812 208.457031 223.257812 208.574219 C 223.257812 208.691406 223.351562 208.785156 223.46875 208.785156 C 223.585938 208.785156 223.679688 208.691406 223.679688 208.574219 Z M 223.679688 208.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.6875 208.292969 C 224.6875 208.175781 224.59375 208.082031 224.476562 208.082031 C 224.359375 208.082031 224.265625 208.175781 224.265625 208.292969 C 224.265625 208.410156 224.359375 208.503906 224.476562 208.503906 C 224.59375 208.503906 224.6875 208.410156 224.6875 208.292969 Z M 224.6875 208.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.289062 206.800781 C 225.289062 206.683594 225.195312 206.589844 225.078125 206.589844 C 224.960938 206.589844 224.867188 206.683594 224.867188 206.800781 C 224.867188 206.917969 224.960938 207.011719 225.078125 207.011719 C 225.195312 207.011719 225.289062 206.917969 225.289062 206.800781 Z M 225.289062 206.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.265625 203.636719 C 226.265625 203.519531 226.171875 203.425781 226.054688 203.425781 C 225.9375 203.425781 225.84375 203.519531 225.84375 203.636719 C 225.84375 203.753906 225.9375 203.847656 226.054688 203.847656 C 226.171875 203.847656 226.265625 203.753906 226.265625 203.636719 Z M 226.265625 203.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.296875 206.445312 C 227.296875 206.328125 227.203125 206.234375 227.085938 206.234375 C 226.96875 206.234375 226.875 206.328125 226.875 206.445312 C 226.875 206.5625 226.96875 206.65625 227.085938 206.65625 C 227.203125 206.65625 227.296875 206.5625 227.296875 206.445312 Z M 227.296875 206.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.847656 206.5625 C 228.847656 206.445312 228.753906 206.351562 228.636719 206.351562 C 228.519531 206.351562 228.425781 206.445312 228.425781 206.5625 C 228.425781 206.679688 228.519531 206.773438 228.636719 206.773438 C 228.753906 206.773438 228.847656 206.679688 228.847656 206.5625 Z M 228.847656 206.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.996094 205.804688 C 228.996094 205.6875 228.902344 205.59375 228.785156 205.59375 C 228.667969 205.59375 228.574219 205.6875 228.574219 205.804688 C 228.574219 205.921875 228.667969 206.015625 228.785156 206.015625 C 228.902344 206.015625 228.996094 205.921875 228.996094 205.804688 Z M 228.996094 205.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.160156 207.070312 C 230.160156 206.953125 230.066406 206.859375 229.949219 206.859375 C 229.832031 206.859375 229.738281 206.953125 229.738281 207.070312 C 229.738281 207.1875 229.832031 207.28125 229.949219 207.28125 C 230.066406 207.28125 230.160156 207.1875 230.160156 207.070312 Z M 230.160156 207.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.039062 206.886719 C 228.039062 206.769531 227.945312 206.675781 227.828125 206.675781 C 227.710938 206.675781 227.617188 206.769531 227.617188 206.886719 C 227.617188 207.003906 227.710938 207.097656 227.828125 207.097656 C 227.945312 207.097656 228.039062 207.003906 228.039062 206.886719 Z M 228.039062 206.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.851562 206.082031 C 229.851562 205.964844 229.757812 205.871094 229.640625 205.871094 C 229.523438 205.871094 229.429688 205.964844 229.429688 206.082031 C 229.429688 206.199219 229.523438 206.292969 229.640625 206.292969 C 229.757812 206.292969 229.851562 206.199219 229.851562 206.082031 Z M 229.851562 206.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.796875 206.035156 C 227.796875 205.917969 227.703125 205.824219 227.585938 205.824219 C 227.46875 205.824219 227.375 205.917969 227.375 206.035156 C 227.375 206.152344 227.46875 206.246094 227.585938 206.246094 C 227.703125 206.246094 227.796875 206.152344 227.796875 206.035156 Z M 227.796875 206.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.101562 208.277344 C 233.101562 208.160156 233.007812 208.066406 232.890625 208.066406 C 232.773438 208.066406 232.679688 208.160156 232.679688 208.277344 C 232.679688 208.394531 232.773438 208.488281 232.890625 208.488281 C 233.007812 208.488281 233.101562 208.394531 233.101562 208.277344 Z M 233.101562 208.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.074219 208.863281 C 234.074219 208.746094 233.980469 208.652344 233.863281 208.652344 C 233.746094 208.652344 233.652344 208.746094 233.652344 208.863281 C 233.652344 208.980469 233.746094 209.074219 233.863281 209.074219 C 233.980469 209.074219 234.074219 208.980469 234.074219 208.863281 Z M 234.074219 208.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.171875 207.816406 C 233.171875 207.699219 233.078125 207.605469 232.960938 207.605469 C 232.84375 207.605469 232.75 207.699219 232.75 207.816406 C 232.75 207.933594 232.84375 208.027344 232.960938 208.027344 C 233.078125 208.027344 233.171875 207.933594 233.171875 207.816406 Z M 233.171875 207.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.898438 206.136719 C 230.898438 206.019531 230.804688 205.925781 230.6875 205.925781 C 230.570312 205.925781 230.476562 206.019531 230.476562 206.136719 C 230.476562 206.253906 230.570312 206.347656 230.6875 206.347656 C 230.804688 206.347656 230.898438 206.253906 230.898438 206.136719 Z M 230.898438 206.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.476562 204.96875 C 230.476562 204.851562 230.382812 204.757812 230.265625 204.757812 C 230.148438 204.757812 230.054688 204.851562 230.054688 204.96875 C 230.054688 205.085938 230.148438 205.179688 230.265625 205.179688 C 230.382812 205.179688 230.476562 205.085938 230.476562 204.96875 Z M 230.476562 204.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.09375 201.390625 C 227.09375 201.273438 227 201.179688 226.882812 201.179688 C 226.765625 201.179688 226.671875 201.273438 226.671875 201.390625 C 226.671875 201.507812 226.765625 201.601562 226.882812 201.601562 C 227 201.601562 227.09375 201.507812 227.09375 201.390625 Z M 227.09375 201.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.363281 200.011719 C 230.363281 199.894531 230.269531 199.800781 230.152344 199.800781 C 230.035156 199.800781 229.941406 199.894531 229.941406 200.011719 C 229.941406 200.128906 230.035156 200.222656 230.152344 200.222656 C 230.269531 200.222656 230.363281 200.128906 230.363281 200.011719 Z M 230.363281 200.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.992188 202.800781 C 230.992188 202.683594 230.898438 202.589844 230.78125 202.589844 C 230.664062 202.589844 230.570312 202.683594 230.570312 202.800781 C 230.570312 202.917969 230.664062 203.011719 230.78125 203.011719 C 230.898438 203.011719 230.992188 202.917969 230.992188 202.800781 Z M 230.992188 202.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.40625 204.15625 C 230.40625 204.039062 230.3125 203.945312 230.195312 203.945312 C 230.078125 203.945312 229.984375 204.039062 229.984375 204.15625 C 229.984375 204.273438 230.078125 204.367188 230.195312 204.367188 C 230.3125 204.367188 230.40625 204.273438 230.40625 204.15625 Z M 230.40625 204.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 233.914062 207.179688 C 233.914062 207.0625 233.820312 206.96875 233.703125 206.96875 C 233.585938 206.96875 233.492188 207.0625 233.492188 207.179688 C 233.492188 207.296875 233.585938 207.390625 233.703125 207.390625 C 233.820312 207.390625 233.914062 207.296875 233.914062 207.179688 Z M 233.914062 207.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.71875 206.839844 C 234.71875 206.722656 234.625 206.628906 234.507812 206.628906 C 234.390625 206.628906 234.296875 206.722656 234.296875 206.839844 C 234.296875 206.957031 234.390625 207.050781 234.507812 207.050781 C 234.625 207.050781 234.71875 206.957031 234.71875 206.839844 Z M 234.71875 206.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.710938 208.621094 C 235.710938 208.503906 235.617188 208.410156 235.5 208.410156 C 235.382812 208.410156 235.289062 208.503906 235.289062 208.621094 C 235.289062 208.738281 235.382812 208.832031 235.5 208.832031 C 235.617188 208.832031 235.710938 208.738281 235.710938 208.621094 Z M 235.710938 208.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.058594 207.875 C 237.058594 207.757812 236.964844 207.664062 236.847656 207.664062 C 236.730469 207.664062 236.636719 207.757812 236.636719 207.875 C 236.636719 207.992188 236.730469 208.085938 236.847656 208.085938 C 236.964844 208.085938 237.058594 207.992188 237.058594 207.875 Z M 237.058594 207.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.386719 208.335938 C 239.386719 208.21875 239.292969 208.125 239.175781 208.125 C 239.058594 208.125 238.964844 208.21875 238.964844 208.335938 C 238.964844 208.453125 239.058594 208.546875 239.175781 208.546875 C 239.292969 208.546875 239.386719 208.453125 239.386719 208.335938 Z M 239.386719 208.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240 212.785156 C 240 212.667969 239.90625 212.574219 239.789062 212.574219 C 239.671875 212.574219 239.578125 212.667969 239.578125 212.785156 C 239.578125 212.902344 239.671875 212.996094 239.789062 212.996094 C 239.90625 212.996094 240 212.902344 240 212.785156 Z M 240 212.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.410156 211.070312 C 241.410156 210.953125 241.316406 210.859375 241.199219 210.859375 C 241.082031 210.859375 240.988281 210.953125 240.988281 211.070312 C 240.988281 211.1875 241.082031 211.28125 241.199219 211.28125 C 241.316406 211.28125 241.410156 211.1875 241.410156 211.070312 Z M 241.410156 211.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.925781 209.058594 C 246.925781 208.941406 246.832031 208.847656 246.714844 208.847656 C 246.597656 208.847656 246.503906 208.941406 246.503906 209.058594 C 246.503906 209.175781 246.597656 209.269531 246.714844 209.269531 C 246.832031 209.269531 246.925781 209.175781 246.925781 209.058594 Z M 246.925781 209.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.464844 206.804688 C 249.464844 206.6875 249.371094 206.59375 249.253906 206.59375 C 249.136719 206.59375 249.042969 206.6875 249.042969 206.804688 C 249.042969 206.921875 249.136719 207.015625 249.253906 207.015625 C 249.371094 207.015625 249.464844 206.921875 249.464844 206.804688 Z M 249.464844 206.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.695312 208.003906 C 249.695312 207.886719 249.601562 207.792969 249.484375 207.792969 C 249.367188 207.792969 249.273438 207.886719 249.273438 208.003906 C 249.273438 208.121094 249.367188 208.214844 249.484375 208.214844 C 249.601562 208.214844 249.695312 208.121094 249.695312 208.003906 Z M 249.695312 208.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.78125 209.789062 C 245.78125 209.671875 245.6875 209.578125 245.570312 209.578125 C 245.453125 209.578125 245.359375 209.671875 245.359375 209.789062 C 245.359375 209.90625 245.453125 210 245.570312 210 C 245.6875 210 245.78125 209.90625 245.78125 209.789062 Z M 245.78125 209.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.496094 210.808594 C 242.496094 210.691406 242.402344 210.597656 242.285156 210.597656 C 242.167969 210.597656 242.074219 210.691406 242.074219 210.808594 C 242.074219 210.925781 242.167969 211.019531 242.285156 211.019531 C 242.402344 211.019531 242.496094 210.925781 242.496094 210.808594 Z M 242.496094 210.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.492188 213.253906 C 243.492188 213.136719 243.398438 213.042969 243.28125 213.042969 C 243.164062 213.042969 243.070312 213.136719 243.070312 213.253906 C 243.070312 213.371094 243.164062 213.464844 243.28125 213.464844 C 243.398438 213.464844 243.492188 213.371094 243.492188 213.253906 Z M 243.492188 213.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.941406 213.019531 C 244.941406 212.902344 244.847656 212.808594 244.730469 212.808594 C 244.613281 212.808594 244.519531 212.902344 244.519531 213.019531 C 244.519531 213.136719 244.613281 213.230469 244.730469 213.230469 C 244.847656 213.230469 244.941406 213.136719 244.941406 213.019531 Z M 244.941406 213.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.136719 212.367188 C 246.136719 212.25 246.042969 212.15625 245.925781 212.15625 C 245.808594 212.15625 245.714844 212.25 245.714844 212.367188 C 245.714844 212.484375 245.808594 212.578125 245.925781 212.578125 C 246.042969 212.578125 246.136719 212.484375 246.136719 212.367188 Z M 246.136719 212.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.097656 212.234375 C 247.097656 212.117188 247.003906 212.023438 246.886719 212.023438 C 246.769531 212.023438 246.675781 212.117188 246.675781 212.234375 C 246.675781 212.351562 246.769531 212.445312 246.886719 212.445312 C 247.003906 212.445312 247.097656 212.351562 247.097656 212.234375 Z M 247.097656 212.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.554688 215.257812 C 247.554688 215.140625 247.460938 215.046875 247.34375 215.046875 C 247.226562 215.046875 247.132812 215.140625 247.132812 215.257812 C 247.132812 215.375 247.226562 215.46875 247.34375 215.46875 C 247.460938 215.46875 247.554688 215.375 247.554688 215.257812 Z M 247.554688 215.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.964844 213.929688 C 248.964844 213.8125 248.871094 213.71875 248.753906 213.71875 C 248.636719 213.71875 248.542969 213.8125 248.542969 213.929688 C 248.542969 214.046875 248.636719 214.140625 248.753906 214.140625 C 248.871094 214.140625 248.964844 214.046875 248.964844 213.929688 Z M 248.964844 213.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.03125 216.417969 C 249.03125 216.300781 248.9375 216.207031 248.820312 216.207031 C 248.703125 216.207031 248.609375 216.300781 248.609375 216.417969 C 248.609375 216.535156 248.703125 216.628906 248.820312 216.628906 C 248.9375 216.628906 249.03125 216.535156 249.03125 216.417969 Z M 249.03125 216.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.808594 214.347656 C 252.808594 214.230469 252.714844 214.136719 252.597656 214.136719 C 252.480469 214.136719 252.386719 214.230469 252.386719 214.347656 C 252.386719 214.464844 252.480469 214.558594 252.597656 214.558594 C 252.714844 214.558594 252.808594 214.464844 252.808594 214.347656 Z M 252.808594 214.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.234375 217.976562 C 252.234375 217.859375 252.140625 217.765625 252.023438 217.765625 C 251.90625 217.765625 251.8125 217.859375 251.8125 217.976562 C 251.8125 218.09375 251.90625 218.1875 252.023438 218.1875 C 252.140625 218.1875 252.234375 218.09375 252.234375 217.976562 Z M 252.234375 217.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.363281 219.316406 C 248.363281 219.199219 248.269531 219.105469 248.152344 219.105469 C 248.035156 219.105469 247.941406 219.199219 247.941406 219.316406 C 247.941406 219.433594 248.035156 219.527344 248.152344 219.527344 C 248.269531 219.527344 248.363281 219.433594 248.363281 219.316406 Z M 248.363281 219.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.234375 219.503906 C 248.234375 219.386719 248.140625 219.292969 248.023438 219.292969 C 247.90625 219.292969 247.8125 219.386719 247.8125 219.503906 C 247.8125 219.621094 247.90625 219.714844 248.023438 219.714844 C 248.140625 219.714844 248.234375 219.621094 248.234375 219.503906 Z M 248.234375 219.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.109375 217.644531 C 248.109375 217.527344 248.015625 217.433594 247.898438 217.433594 C 247.78125 217.433594 247.6875 217.527344 247.6875 217.644531 C 247.6875 217.761719 247.78125 217.855469 247.898438 217.855469 C 248.015625 217.855469 248.109375 217.761719 248.109375 217.644531 Z M 248.109375 217.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.515625 216.730469 C 247.515625 216.613281 247.421875 216.519531 247.304688 216.519531 C 247.1875 216.519531 247.09375 216.613281 247.09375 216.730469 C 247.09375 216.847656 247.1875 216.941406 247.304688 216.941406 C 247.421875 216.941406 247.515625 216.847656 247.515625 216.730469 Z M 247.515625 216.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.101562 215.683594 C 246.101562 215.566406 246.007812 215.472656 245.890625 215.472656 C 245.773438 215.472656 245.679688 215.566406 245.679688 215.683594 C 245.679688 215.800781 245.773438 215.894531 245.890625 215.894531 C 246.007812 215.894531 246.101562 215.800781 246.101562 215.683594 Z M 246.101562 215.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.347656 217.101562 C 248.347656 216.984375 248.253906 216.890625 248.136719 216.890625 C 248.019531 216.890625 247.925781 216.984375 247.925781 217.101562 C 247.925781 217.21875 248.019531 217.3125 248.136719 217.3125 C 248.253906 217.3125 248.347656 217.21875 248.347656 217.101562 Z M 248.347656 217.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.429688 216.996094 C 247.429688 216.878906 247.335938 216.785156 247.21875 216.785156 C 247.101562 216.785156 247.007812 216.878906 247.007812 216.996094 C 247.007812 217.113281 247.101562 217.207031 247.21875 217.207031 C 247.335938 217.207031 247.429688 217.113281 247.429688 216.996094 Z M 247.429688 216.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.203125 215.46875 C 245.203125 215.351562 245.109375 215.257812 244.992188 215.257812 C 244.875 215.257812 244.78125 215.351562 244.78125 215.46875 C 244.78125 215.585938 244.875 215.679688 244.992188 215.679688 C 245.109375 215.679688 245.203125 215.585938 245.203125 215.46875 Z M 245.203125 215.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.605469 216.28125 C 243.605469 216.164062 243.511719 216.070312 243.394531 216.070312 C 243.277344 216.070312 243.183594 216.164062 243.183594 216.28125 C 243.183594 216.398438 243.277344 216.492188 243.394531 216.492188 C 243.511719 216.492188 243.605469 216.398438 243.605469 216.28125 Z M 243.605469 216.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.824219 214.101562 C 245.824219 213.984375 245.730469 213.890625 245.613281 213.890625 C 245.496094 213.890625 245.402344 213.984375 245.402344 214.101562 C 245.402344 214.21875 245.496094 214.3125 245.613281 214.3125 C 245.730469 214.3125 245.824219 214.21875 245.824219 214.101562 Z M 245.824219 214.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.285156 215.636719 C 245.285156 215.519531 245.191406 215.425781 245.074219 215.425781 C 244.957031 215.425781 244.863281 215.519531 244.863281 215.636719 C 244.863281 215.753906 244.957031 215.847656 245.074219 215.847656 C 245.191406 215.847656 245.285156 215.753906 245.285156 215.636719 Z M 245.285156 215.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.417969 219.046875 C 245.417969 218.929688 245.324219 218.835938 245.207031 218.835938 C 245.089844 218.835938 244.996094 218.929688 244.996094 219.046875 C 244.996094 219.164062 245.089844 219.257812 245.207031 219.257812 C 245.324219 219.257812 245.417969 219.164062 245.417969 219.046875 Z M 245.417969 219.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.609375 217.152344 C 245.609375 217.035156 245.515625 216.941406 245.398438 216.941406 C 245.28125 216.941406 245.1875 217.035156 245.1875 217.152344 C 245.1875 217.269531 245.28125 217.363281 245.398438 217.363281 C 245.515625 217.363281 245.609375 217.269531 245.609375 217.152344 Z M 245.609375 217.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.847656 213.570312 C 245.847656 213.453125 245.753906 213.359375 245.636719 213.359375 C 245.519531 213.359375 245.425781 213.453125 245.425781 213.570312 C 245.425781 213.6875 245.519531 213.78125 245.636719 213.78125 C 245.753906 213.78125 245.847656 213.6875 245.847656 213.570312 Z M 245.847656 213.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.769531 212.539062 C 243.769531 212.421875 243.675781 212.328125 243.558594 212.328125 C 243.441406 212.328125 243.347656 212.421875 243.347656 212.539062 C 243.347656 212.65625 243.441406 212.75 243.558594 212.75 C 243.675781 212.75 243.769531 212.65625 243.769531 212.539062 Z M 243.769531 212.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.945312 211.542969 C 241.945312 211.425781 241.851562 211.332031 241.734375 211.332031 C 241.617188 211.332031 241.523438 211.425781 241.523438 211.542969 C 241.523438 211.660156 241.617188 211.753906 241.734375 211.753906 C 241.851562 211.753906 241.945312 211.660156 241.945312 211.542969 Z M 241.945312 211.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.085938 213.121094 C 243.085938 213.003906 242.992188 212.910156 242.875 212.910156 C 242.757812 212.910156 242.664062 213.003906 242.664062 213.121094 C 242.664062 213.238281 242.757812 213.332031 242.875 213.332031 C 242.992188 213.332031 243.085938 213.238281 243.085938 213.121094 Z M 243.085938 213.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.140625 212.144531 C 244.140625 212.027344 244.046875 211.933594 243.929688 211.933594 C 243.8125 211.933594 243.71875 212.027344 243.71875 212.144531 C 243.71875 212.261719 243.8125 212.355469 243.929688 212.355469 C 244.046875 212.355469 244.140625 212.261719 244.140625 212.144531 Z M 244.140625 212.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.894531 206.492188 C 242.894531 206.375 242.800781 206.28125 242.683594 206.28125 C 242.566406 206.28125 242.472656 206.375 242.472656 206.492188 C 242.472656 206.609375 242.566406 206.703125 242.683594 206.703125 C 242.800781 206.703125 242.894531 206.609375 242.894531 206.492188 Z M 242.894531 206.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.210938 207.585938 C 243.210938 207.46875 243.117188 207.375 243 207.375 C 242.882812 207.375 242.789062 207.46875 242.789062 207.585938 C 242.789062 207.703125 242.882812 207.796875 243 207.796875 C 243.117188 207.796875 243.210938 207.703125 243.210938 207.585938 Z M 243.210938 207.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.804688 206.25 C 243.804688 206.132812 243.710938 206.039062 243.59375 206.039062 C 243.476562 206.039062 243.382812 206.132812 243.382812 206.25 C 243.382812 206.367188 243.476562 206.460938 243.59375 206.460938 C 243.710938 206.460938 243.804688 206.367188 243.804688 206.25 Z M 243.804688 206.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.226562 207.234375 C 245.226562 207.117188 245.132812 207.023438 245.015625 207.023438 C 244.898438 207.023438 244.804688 207.117188 244.804688 207.234375 C 244.804688 207.351562 244.898438 207.445312 245.015625 207.445312 C 245.132812 207.445312 245.226562 207.351562 245.226562 207.234375 Z M 245.226562 207.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.476562 208.933594 C 245.476562 208.816406 245.382812 208.722656 245.265625 208.722656 C 245.148438 208.722656 245.054688 208.816406 245.054688 208.933594 C 245.054688 209.050781 245.148438 209.144531 245.265625 209.144531 C 245.382812 209.144531 245.476562 209.050781 245.476562 208.933594 Z M 245.476562 208.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.0625 205.003906 C 244.0625 204.886719 243.96875 204.792969 243.851562 204.792969 C 243.734375 204.792969 243.640625 204.886719 243.640625 205.003906 C 243.640625 205.121094 243.734375 205.214844 243.851562 205.214844 C 243.96875 205.214844 244.0625 205.121094 244.0625 205.003906 Z M 244.0625 205.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.375 201.804688 C 244.375 201.6875 244.28125 201.59375 244.164062 201.59375 C 244.046875 201.59375 243.953125 201.6875 243.953125 201.804688 C 243.953125 201.921875 244.046875 202.015625 244.164062 202.015625 C 244.28125 202.015625 244.375 201.921875 244.375 201.804688 Z M 244.375 201.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.144531 201.667969 C 244.144531 201.550781 244.050781 201.457031 243.933594 201.457031 C 243.816406 201.457031 243.722656 201.550781 243.722656 201.667969 C 243.722656 201.785156 243.816406 201.878906 243.933594 201.878906 C 244.050781 201.878906 244.144531 201.785156 244.144531 201.667969 Z M 244.144531 201.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.121094 202.324219 C 244.121094 202.207031 244.027344 202.113281 243.910156 202.113281 C 243.792969 202.113281 243.699219 202.207031 243.699219 202.324219 C 243.699219 202.441406 243.792969 202.535156 243.910156 202.535156 C 244.027344 202.535156 244.121094 202.441406 244.121094 202.324219 Z M 244.121094 202.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.984375 204.726562 C 245.984375 204.609375 245.890625 204.515625 245.773438 204.515625 C 245.65625 204.515625 245.5625 204.609375 245.5625 204.726562 C 245.5625 204.84375 245.65625 204.9375 245.773438 204.9375 C 245.890625 204.9375 245.984375 204.84375 245.984375 204.726562 Z M 245.984375 204.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.636719 207.503906 C 250.636719 207.386719 250.542969 207.292969 250.425781 207.292969 C 250.308594 207.292969 250.214844 207.386719 250.214844 207.503906 C 250.214844 207.621094 250.308594 207.714844 250.425781 207.714844 C 250.542969 207.714844 250.636719 207.621094 250.636719 207.503906 Z M 250.636719 207.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.253906 209.652344 C 249.253906 209.535156 249.160156 209.441406 249.042969 209.441406 C 248.925781 209.441406 248.832031 209.535156 248.832031 209.652344 C 248.832031 209.769531 248.925781 209.863281 249.042969 209.863281 C 249.160156 209.863281 249.253906 209.769531 249.253906 209.652344 Z M 249.253906 209.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.382812 210.539062 C 250.382812 210.421875 250.289062 210.328125 250.171875 210.328125 C 250.054688 210.328125 249.960938 210.421875 249.960938 210.539062 C 249.960938 210.65625 250.054688 210.75 250.171875 210.75 C 250.289062 210.75 250.382812 210.65625 250.382812 210.539062 Z M 250.382812 210.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.523438 207.425781 C 250.523438 207.308594 250.429688 207.214844 250.3125 207.214844 C 250.195312 207.214844 250.101562 207.308594 250.101562 207.425781 C 250.101562 207.542969 250.195312 207.636719 250.3125 207.636719 C 250.429688 207.636719 250.523438 207.542969 250.523438 207.425781 Z M 250.523438 207.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.117188 206.203125 C 251.117188 206.085938 251.023438 205.992188 250.90625 205.992188 C 250.789062 205.992188 250.695312 206.085938 250.695312 206.203125 C 250.695312 206.320312 250.789062 206.414062 250.90625 206.414062 C 251.023438 206.414062 251.117188 206.320312 251.117188 206.203125 Z M 251.117188 206.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.875 204.09375 C 253.875 203.976562 253.78125 203.882812 253.664062 203.882812 C 253.546875 203.882812 253.453125 203.976562 253.453125 204.09375 C 253.453125 204.210938 253.546875 204.304688 253.664062 204.304688 C 253.78125 204.304688 253.875 204.210938 253.875 204.09375 Z M 253.875 204.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.664062 205.015625 C 253.664062 204.898438 253.570312 204.804688 253.453125 204.804688 C 253.335938 204.804688 253.242188 204.898438 253.242188 205.015625 C 253.242188 205.132812 253.335938 205.226562 253.453125 205.226562 C 253.570312 205.226562 253.664062 205.132812 253.664062 205.015625 Z M 253.664062 205.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.179688 208.867188 C 254.179688 208.75 254.085938 208.65625 253.96875 208.65625 C 253.851562 208.65625 253.757812 208.75 253.757812 208.867188 C 253.757812 208.984375 253.851562 209.078125 253.96875 209.078125 C 254.085938 209.078125 254.179688 208.984375 254.179688 208.867188 Z M 254.179688 208.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.921875 207.859375 C 253.921875 207.742188 253.828125 207.648438 253.710938 207.648438 C 253.59375 207.648438 253.5 207.742188 253.5 207.859375 C 253.5 207.976562 253.59375 208.070312 253.710938 208.070312 C 253.828125 208.070312 253.921875 207.976562 253.921875 207.859375 Z M 253.921875 207.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.273438 207.550781 C 250.273438 207.433594 250.179688 207.339844 250.0625 207.339844 C 249.945312 207.339844 249.851562 207.433594 249.851562 207.550781 C 249.851562 207.667969 249.945312 207.761719 250.0625 207.761719 C 250.179688 207.761719 250.273438 207.667969 250.273438 207.550781 Z M 250.273438 207.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.136719 203.953125 C 252.136719 203.835938 252.042969 203.742188 251.925781 203.742188 C 251.808594 203.742188 251.714844 203.835938 251.714844 203.953125 C 251.714844 204.070312 251.808594 204.164062 251.925781 204.164062 C 252.042969 204.164062 252.136719 204.070312 252.136719 203.953125 Z M 252.136719 203.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.210938 203.589844 C 248.210938 203.472656 248.117188 203.378906 248 203.378906 C 247.882812 203.378906 247.789062 203.472656 247.789062 203.589844 C 247.789062 203.707031 247.882812 203.800781 248 203.800781 C 248.117188 203.800781 248.210938 203.707031 248.210938 203.589844 Z M 248.210938 203.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.773438 203.855469 C 245.773438 203.738281 245.679688 203.644531 245.5625 203.644531 C 245.445312 203.644531 245.351562 203.738281 245.351562 203.855469 C 245.351562 203.972656 245.445312 204.066406 245.5625 204.066406 C 245.679688 204.066406 245.773438 203.972656 245.773438 203.855469 Z M 245.773438 203.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.429688 200.53125 C 246.429688 200.414062 246.335938 200.320312 246.21875 200.320312 C 246.101562 200.320312 246.007812 200.414062 246.007812 200.53125 C 246.007812 200.648438 246.101562 200.742188 246.21875 200.742188 C 246.335938 200.742188 246.429688 200.648438 246.429688 200.53125 Z M 246.429688 200.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.847656 200.511719 C 242.847656 200.394531 242.753906 200.300781 242.636719 200.300781 C 242.519531 200.300781 242.425781 200.394531 242.425781 200.511719 C 242.425781 200.628906 242.519531 200.722656 242.636719 200.722656 C 242.753906 200.722656 242.847656 200.628906 242.847656 200.511719 Z M 242.847656 200.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.546875 197.765625 C 243.546875 197.648438 243.453125 197.554688 243.335938 197.554688 C 243.21875 197.554688 243.125 197.648438 243.125 197.765625 C 243.125 197.882812 243.21875 197.976562 243.335938 197.976562 C 243.453125 197.976562 243.546875 197.882812 243.546875 197.765625 Z M 243.546875 197.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.898438 196.453125 C 244.898438 196.335938 244.804688 196.242188 244.6875 196.242188 C 244.570312 196.242188 244.476562 196.335938 244.476562 196.453125 C 244.476562 196.570312 244.570312 196.664062 244.6875 196.664062 C 244.804688 196.664062 244.898438 196.570312 244.898438 196.453125 Z M 244.898438 196.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.472656 197.710938 C 250.472656 197.59375 250.378906 197.5 250.261719 197.5 C 250.144531 197.5 250.050781 197.59375 250.050781 197.710938 C 250.050781 197.828125 250.144531 197.921875 250.261719 197.921875 C 250.378906 197.921875 250.472656 197.828125 250.472656 197.710938 Z M 250.472656 197.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.570312 196.527344 C 252.570312 196.410156 252.476562 196.316406 252.359375 196.316406 C 252.242188 196.316406 252.148438 196.410156 252.148438 196.527344 C 252.148438 196.644531 252.242188 196.738281 252.359375 196.738281 C 252.476562 196.738281 252.570312 196.644531 252.570312 196.527344 Z M 252.570312 196.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.824219 198.683594 C 251.824219 198.566406 251.730469 198.472656 251.613281 198.472656 C 251.496094 198.472656 251.402344 198.566406 251.402344 198.683594 C 251.402344 198.800781 251.496094 198.894531 251.613281 198.894531 C 251.730469 198.894531 251.824219 198.800781 251.824219 198.683594 Z M 251.824219 198.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.03125 199.664062 C 252.03125 199.546875 251.9375 199.453125 251.820312 199.453125 C 251.703125 199.453125 251.609375 199.546875 251.609375 199.664062 C 251.609375 199.78125 251.703125 199.875 251.820312 199.875 C 251.9375 199.875 252.03125 199.78125 252.03125 199.664062 Z M 252.03125 199.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.574219 200.851562 C 252.574219 200.734375 252.480469 200.640625 252.363281 200.640625 C 252.246094 200.640625 252.152344 200.734375 252.152344 200.851562 C 252.152344 200.96875 252.246094 201.0625 252.363281 201.0625 C 252.480469 201.0625 252.574219 200.96875 252.574219 200.851562 Z M 252.574219 200.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.035156 201.261719 C 251.035156 201.144531 250.941406 201.050781 250.824219 201.050781 C 250.707031 201.050781 250.613281 201.144531 250.613281 201.261719 C 250.613281 201.378906 250.707031 201.472656 250.824219 201.472656 C 250.941406 201.472656 251.035156 201.378906 251.035156 201.261719 Z M 251.035156 201.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.410156 200.210938 C 252.410156 200.09375 252.316406 200 252.199219 200 C 252.082031 200 251.988281 200.09375 251.988281 200.210938 C 251.988281 200.328125 252.082031 200.421875 252.199219 200.421875 C 252.316406 200.421875 252.410156 200.328125 252.410156 200.210938 Z M 252.410156 200.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.464844 195.898438 C 251.464844 195.78125 251.371094 195.6875 251.253906 195.6875 C 251.136719 195.6875 251.042969 195.78125 251.042969 195.898438 C 251.042969 196.015625 251.136719 196.109375 251.253906 196.109375 C 251.371094 196.109375 251.464844 196.015625 251.464844 195.898438 Z M 251.464844 195.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.234375 198.15625 C 252.234375 198.039062 252.140625 197.945312 252.023438 197.945312 C 251.90625 197.945312 251.8125 198.039062 251.8125 198.15625 C 251.8125 198.273438 251.90625 198.367188 252.023438 198.367188 C 252.140625 198.367188 252.234375 198.273438 252.234375 198.15625 Z M 252.234375 198.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.101562 198.636719 C 251.101562 198.519531 251.007812 198.425781 250.890625 198.425781 C 250.773438 198.425781 250.679688 198.519531 250.679688 198.636719 C 250.679688 198.753906 250.773438 198.847656 250.890625 198.847656 C 251.007812 198.847656 251.101562 198.753906 251.101562 198.636719 Z M 251.101562 198.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.496094 198.664062 C 251.496094 198.546875 251.402344 198.453125 251.285156 198.453125 C 251.167969 198.453125 251.074219 198.546875 251.074219 198.664062 C 251.074219 198.78125 251.167969 198.875 251.285156 198.875 C 251.402344 198.875 251.496094 198.78125 251.496094 198.664062 Z M 251.496094 198.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.464844 200.007812 C 249.464844 199.890625 249.371094 199.796875 249.253906 199.796875 C 249.136719 199.796875 249.042969 199.890625 249.042969 200.007812 C 249.042969 200.125 249.136719 200.21875 249.253906 200.21875 C 249.371094 200.21875 249.464844 200.125 249.464844 200.007812 Z M 249.464844 200.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.199219 199.621094 C 248.199219 199.503906 248.105469 199.410156 247.988281 199.410156 C 247.871094 199.410156 247.777344 199.503906 247.777344 199.621094 C 247.777344 199.738281 247.871094 199.832031 247.988281 199.832031 C 248.105469 199.832031 248.199219 199.738281 248.199219 199.621094 Z M 248.199219 199.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.410156 199.160156 C 246.410156 199.042969 246.316406 198.949219 246.199219 198.949219 C 246.082031 198.949219 245.988281 199.042969 245.988281 199.160156 C 245.988281 199.277344 246.082031 199.371094 246.199219 199.371094 C 246.316406 199.371094 246.410156 199.277344 246.410156 199.160156 Z M 246.410156 199.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.835938 196.324219 C 248.835938 196.207031 248.742188 196.113281 248.625 196.113281 C 248.507812 196.113281 248.414062 196.207031 248.414062 196.324219 C 248.414062 196.441406 248.507812 196.535156 248.625 196.535156 C 248.742188 196.535156 248.835938 196.441406 248.835938 196.324219 Z M 248.835938 196.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.464844 196.203125 C 249.464844 196.085938 249.371094 195.992188 249.253906 195.992188 C 249.136719 195.992188 249.042969 196.085938 249.042969 196.203125 C 249.042969 196.320312 249.136719 196.414062 249.253906 196.414062 C 249.371094 196.414062 249.464844 196.320312 249.464844 196.203125 Z M 249.464844 196.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.183594 197.121094 C 252.183594 197.003906 252.089844 196.910156 251.972656 196.910156 C 251.855469 196.910156 251.761719 197.003906 251.761719 197.121094 C 251.761719 197.238281 251.855469 197.332031 251.972656 197.332031 C 252.089844 197.332031 252.183594 197.238281 252.183594 197.121094 Z M 252.183594 197.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.441406 201.585938 C 247.441406 201.46875 247.347656 201.375 247.230469 201.375 C 247.113281 201.375 247.019531 201.46875 247.019531 201.585938 C 247.019531 201.703125 247.113281 201.796875 247.230469 201.796875 C 247.347656 201.796875 247.441406 201.703125 247.441406 201.585938 Z M 247.441406 201.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.554688 200.4375 C 249.554688 200.320312 249.460938 200.226562 249.34375 200.226562 C 249.226562 200.226562 249.132812 200.320312 249.132812 200.4375 C 249.132812 200.554688 249.226562 200.648438 249.34375 200.648438 C 249.460938 200.648438 249.554688 200.554688 249.554688 200.4375 Z M 249.554688 200.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.996094 201.140625 C 248.996094 201.023438 248.902344 200.929688 248.785156 200.929688 C 248.667969 200.929688 248.574219 201.023438 248.574219 201.140625 C 248.574219 201.257812 248.667969 201.351562 248.785156 201.351562 C 248.902344 201.351562 248.996094 201.257812 248.996094 201.140625 Z M 248.996094 201.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.300781 201.59375 C 248.300781 201.476562 248.207031 201.382812 248.089844 201.382812 C 247.972656 201.382812 247.878906 201.476562 247.878906 201.59375 C 247.878906 201.710938 247.972656 201.804688 248.089844 201.804688 C 248.207031 201.804688 248.300781 201.710938 248.300781 201.59375 Z M 248.300781 201.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.726562 200.898438 C 245.726562 200.78125 245.632812 200.6875 245.515625 200.6875 C 245.398438 200.6875 245.304688 200.78125 245.304688 200.898438 C 245.304688 201.015625 245.398438 201.109375 245.515625 201.109375 C 245.632812 201.109375 245.726562 201.015625 245.726562 200.898438 Z M 245.726562 200.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.429688 199.003906 C 246.429688 198.886719 246.335938 198.792969 246.21875 198.792969 C 246.101562 198.792969 246.007812 198.886719 246.007812 199.003906 C 246.007812 199.121094 246.101562 199.214844 246.21875 199.214844 C 246.335938 199.214844 246.429688 199.121094 246.429688 199.003906 Z M 246.429688 199.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.300781 202.289062 C 248.300781 202.171875 248.207031 202.078125 248.089844 202.078125 C 247.972656 202.078125 247.878906 202.171875 247.878906 202.289062 C 247.878906 202.40625 247.972656 202.5 248.089844 202.5 C 248.207031 202.5 248.300781 202.40625 248.300781 202.289062 Z M 248.300781 202.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.46875 202.46875 C 248.46875 202.351562 248.375 202.257812 248.257812 202.257812 C 248.140625 202.257812 248.046875 202.351562 248.046875 202.46875 C 248.046875 202.585938 248.140625 202.679688 248.257812 202.679688 C 248.375 202.679688 248.46875 202.585938 248.46875 202.46875 Z M 248.46875 202.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.546875 201.753906 C 249.546875 201.636719 249.453125 201.542969 249.335938 201.542969 C 249.21875 201.542969 249.125 201.636719 249.125 201.753906 C 249.125 201.871094 249.21875 201.964844 249.335938 201.964844 C 249.453125 201.964844 249.546875 201.871094 249.546875 201.753906 Z M 249.546875 201.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.753906 207.039062 C 252.753906 206.921875 252.660156 206.828125 252.542969 206.828125 C 252.425781 206.828125 252.332031 206.921875 252.332031 207.039062 C 252.332031 207.15625 252.425781 207.25 252.542969 207.25 C 252.660156 207.25 252.753906 207.15625 252.753906 207.039062 Z M 252.753906 207.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.453125 207.558594 C 252.453125 207.441406 252.359375 207.347656 252.242188 207.347656 C 252.125 207.347656 252.03125 207.441406 252.03125 207.558594 C 252.03125 207.675781 252.125 207.769531 252.242188 207.769531 C 252.359375 207.769531 252.453125 207.675781 252.453125 207.558594 Z M 252.453125 207.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.515625 207.335938 C 251.515625 207.21875 251.421875 207.125 251.304688 207.125 C 251.1875 207.125 251.09375 207.21875 251.09375 207.335938 C 251.09375 207.453125 251.1875 207.546875 251.304688 207.546875 C 251.421875 207.546875 251.515625 207.453125 251.515625 207.335938 Z M 251.515625 207.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.933594 205.1875 C 249.933594 205.070312 249.839844 204.976562 249.722656 204.976562 C 249.605469 204.976562 249.511719 205.070312 249.511719 205.1875 C 249.511719 205.304688 249.605469 205.398438 249.722656 205.398438 C 249.839844 205.398438 249.933594 205.304688 249.933594 205.1875 Z M 249.933594 205.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.019531 206.210938 C 250.019531 206.09375 249.925781 206 249.808594 206 C 249.691406 206 249.597656 206.09375 249.597656 206.210938 C 249.597656 206.328125 249.691406 206.421875 249.808594 206.421875 C 249.925781 206.421875 250.019531 206.328125 250.019531 206.210938 Z M 250.019531 206.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.6875 201.121094 C 252.6875 201.003906 252.59375 200.910156 252.476562 200.910156 C 252.359375 200.910156 252.265625 201.003906 252.265625 201.121094 C 252.265625 201.238281 252.359375 201.332031 252.476562 201.332031 C 252.59375 201.332031 252.6875 201.238281 252.6875 201.121094 Z M 252.6875 201.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.757812 202.1875 C 253.757812 202.070312 253.664062 201.976562 253.546875 201.976562 C 253.429688 201.976562 253.335938 202.070312 253.335938 202.1875 C 253.335938 202.304688 253.429688 202.398438 253.546875 202.398438 C 253.664062 202.398438 253.757812 202.304688 253.757812 202.1875 Z M 253.757812 202.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.777344 201.492188 C 256.777344 201.375 256.683594 201.28125 256.566406 201.28125 C 256.449219 201.28125 256.355469 201.375 256.355469 201.492188 C 256.355469 201.609375 256.449219 201.703125 256.566406 201.703125 C 256.683594 201.703125 256.777344 201.609375 256.777344 201.492188 Z M 256.777344 201.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.824219 199.964844 C 254.824219 199.847656 254.730469 199.753906 254.613281 199.753906 C 254.496094 199.753906 254.402344 199.847656 254.402344 199.964844 C 254.402344 200.082031 254.496094 200.175781 254.613281 200.175781 C 254.730469 200.175781 254.824219 200.082031 254.824219 199.964844 Z M 254.824219 199.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.644531 200.625 C 256.644531 200.507812 256.550781 200.414062 256.433594 200.414062 C 256.316406 200.414062 256.222656 200.507812 256.222656 200.625 C 256.222656 200.742188 256.316406 200.835938 256.433594 200.835938 C 256.550781 200.835938 256.644531 200.742188 256.644531 200.625 Z M 256.644531 200.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.414062 201.691406 C 258.414062 201.574219 258.320312 201.480469 258.203125 201.480469 C 258.085938 201.480469 257.992188 201.574219 257.992188 201.691406 C 257.992188 201.808594 258.085938 201.902344 258.203125 201.902344 C 258.320312 201.902344 258.414062 201.808594 258.414062 201.691406 Z M 258.414062 201.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.582031 199.675781 C 262.582031 199.558594 262.488281 199.464844 262.371094 199.464844 C 262.253906 199.464844 262.160156 199.558594 262.160156 199.675781 C 262.160156 199.792969 262.253906 199.886719 262.371094 199.886719 C 262.488281 199.886719 262.582031 199.792969 262.582031 199.675781 Z M 262.582031 199.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.085938 200.539062 C 265.085938 200.421875 264.992188 200.328125 264.875 200.328125 C 264.757812 200.328125 264.664062 200.421875 264.664062 200.539062 C 264.664062 200.65625 264.757812 200.75 264.875 200.75 C 264.992188 200.75 265.085938 200.65625 265.085938 200.539062 Z M 265.085938 200.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.320312 202.457031 C 262.320312 202.339844 262.226562 202.246094 262.109375 202.246094 C 261.992188 202.246094 261.898438 202.339844 261.898438 202.457031 C 261.898438 202.574219 261.992188 202.667969 262.109375 202.667969 C 262.226562 202.667969 262.320312 202.574219 262.320312 202.457031 Z M 262.320312 202.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.496094 202.558594 C 261.496094 202.441406 261.402344 202.347656 261.285156 202.347656 C 261.167969 202.347656 261.074219 202.441406 261.074219 202.558594 C 261.074219 202.675781 261.167969 202.769531 261.285156 202.769531 C 261.402344 202.769531 261.496094 202.675781 261.496094 202.558594 Z M 261.496094 202.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.773438 201.589844 C 259.773438 201.472656 259.679688 201.378906 259.5625 201.378906 C 259.445312 201.378906 259.351562 201.472656 259.351562 201.589844 C 259.351562 201.707031 259.445312 201.800781 259.5625 201.800781 C 259.679688 201.800781 259.773438 201.707031 259.773438 201.589844 Z M 259.773438 201.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.777344 200.058594 C 261.777344 199.941406 261.683594 199.847656 261.566406 199.847656 C 261.449219 199.847656 261.355469 199.941406 261.355469 200.058594 C 261.355469 200.175781 261.449219 200.269531 261.566406 200.269531 C 261.683594 200.269531 261.777344 200.175781 261.777344 200.058594 Z M 261.777344 200.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.746094 199.054688 C 261.746094 198.9375 261.652344 198.84375 261.535156 198.84375 C 261.417969 198.84375 261.324219 198.9375 261.324219 199.054688 C 261.324219 199.171875 261.417969 199.265625 261.535156 199.265625 C 261.652344 199.265625 261.746094 199.171875 261.746094 199.054688 Z M 261.746094 199.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.65625 199.996094 C 260.65625 199.878906 260.5625 199.785156 260.445312 199.785156 C 260.328125 199.785156 260.234375 199.878906 260.234375 199.996094 C 260.234375 200.113281 260.328125 200.207031 260.445312 200.207031 C 260.5625 200.207031 260.65625 200.113281 260.65625 199.996094 Z M 260.65625 199.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.664062 195.867188 C 260.664062 195.75 260.570312 195.65625 260.453125 195.65625 C 260.335938 195.65625 260.242188 195.75 260.242188 195.867188 C 260.242188 195.984375 260.335938 196.078125 260.453125 196.078125 C 260.570312 196.078125 260.664062 195.984375 260.664062 195.867188 Z M 260.664062 195.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.300781 195.605469 C 261.300781 195.488281 261.207031 195.394531 261.089844 195.394531 C 260.972656 195.394531 260.878906 195.488281 260.878906 195.605469 C 260.878906 195.722656 260.972656 195.816406 261.089844 195.816406 C 261.207031 195.816406 261.300781 195.722656 261.300781 195.605469 Z M 261.300781 195.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.714844 195.664062 C 261.714844 195.546875 261.621094 195.453125 261.503906 195.453125 C 261.386719 195.453125 261.292969 195.546875 261.292969 195.664062 C 261.292969 195.78125 261.386719 195.875 261.503906 195.875 C 261.621094 195.875 261.714844 195.78125 261.714844 195.664062 Z M 261.714844 195.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.210938 195.183594 C 263.210938 195.066406 263.117188 194.972656 263 194.972656 C 262.882812 194.972656 262.789062 195.066406 262.789062 195.183594 C 262.789062 195.300781 262.882812 195.394531 263 195.394531 C 263.117188 195.394531 263.210938 195.300781 263.210938 195.183594 Z M 263.210938 195.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.324219 193.339844 C 260.324219 193.222656 260.230469 193.128906 260.113281 193.128906 C 259.996094 193.128906 259.902344 193.222656 259.902344 193.339844 C 259.902344 193.457031 259.996094 193.550781 260.113281 193.550781 C 260.230469 193.550781 260.324219 193.457031 260.324219 193.339844 Z M 260.324219 193.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.636719 193.316406 C 261.636719 193.199219 261.542969 193.105469 261.425781 193.105469 C 261.308594 193.105469 261.214844 193.199219 261.214844 193.316406 C 261.214844 193.433594 261.308594 193.527344 261.425781 193.527344 C 261.542969 193.527344 261.636719 193.433594 261.636719 193.316406 Z M 261.636719 193.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.136719 195.980469 C 259.136719 195.863281 259.042969 195.769531 258.925781 195.769531 C 258.808594 195.769531 258.714844 195.863281 258.714844 195.980469 C 258.714844 196.097656 258.808594 196.191406 258.925781 196.191406 C 259.042969 196.191406 259.136719 196.097656 259.136719 195.980469 Z M 259.136719 195.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.394531 197.386719 C 262.394531 197.269531 262.300781 197.175781 262.183594 197.175781 C 262.066406 197.175781 261.972656 197.269531 261.972656 197.386719 C 261.972656 197.503906 262.066406 197.597656 262.183594 197.597656 C 262.300781 197.597656 262.394531 197.503906 262.394531 197.386719 Z M 262.394531 197.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.710938 197.25 C 262.710938 197.132812 262.617188 197.039062 262.5 197.039062 C 262.382812 197.039062 262.289062 197.132812 262.289062 197.25 C 262.289062 197.367188 262.382812 197.460938 262.5 197.460938 C 262.617188 197.460938 262.710938 197.367188 262.710938 197.25 Z M 262.710938 197.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.054688 197.886719 C 260.054688 197.769531 259.960938 197.675781 259.84375 197.675781 C 259.726562 197.675781 259.632812 197.769531 259.632812 197.886719 C 259.632812 198.003906 259.726562 198.097656 259.84375 198.097656 C 259.960938 198.097656 260.054688 198.003906 260.054688 197.886719 Z M 260.054688 197.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.589844 199 C 263.589844 198.882812 263.496094 198.789062 263.378906 198.789062 C 263.261719 198.789062 263.167969 198.882812 263.167969 199 C 263.167969 199.117188 263.261719 199.210938 263.378906 199.210938 C 263.496094 199.210938 263.589844 199.117188 263.589844 199 Z M 263.589844 199 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.234375 202.320312 C 266.234375 202.203125 266.140625 202.109375 266.023438 202.109375 C 265.90625 202.109375 265.8125 202.203125 265.8125 202.320312 C 265.8125 202.4375 265.90625 202.53125 266.023438 202.53125 C 266.140625 202.53125 266.234375 202.4375 266.234375 202.320312 Z M 266.234375 202.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.808594 200.964844 C 268.808594 200.847656 268.714844 200.753906 268.597656 200.753906 C 268.480469 200.753906 268.386719 200.847656 268.386719 200.964844 C 268.386719 201.082031 268.480469 201.175781 268.597656 201.175781 C 268.714844 201.175781 268.808594 201.082031 268.808594 200.964844 Z M 268.808594 200.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.492188 199.171875 C 269.492188 199.054688 269.398438 198.960938 269.28125 198.960938 C 269.164062 198.960938 269.070312 199.054688 269.070312 199.171875 C 269.070312 199.289062 269.164062 199.382812 269.28125 199.382812 C 269.398438 199.382812 269.492188 199.289062 269.492188 199.171875 Z M 269.492188 199.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.40625 196.363281 C 268.40625 196.246094 268.3125 196.152344 268.195312 196.152344 C 268.078125 196.152344 267.984375 196.246094 267.984375 196.363281 C 267.984375 196.480469 268.078125 196.574219 268.195312 196.574219 C 268.3125 196.574219 268.40625 196.480469 268.40625 196.363281 Z M 268.40625 196.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.210938 193.492188 C 267.210938 193.375 267.117188 193.28125 267 193.28125 C 266.882812 193.28125 266.789062 193.375 266.789062 193.492188 C 266.789062 193.609375 266.882812 193.703125 267 193.703125 C 267.117188 193.703125 267.210938 193.609375 267.210938 193.492188 Z M 267.210938 193.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.46875 193.410156 C 271.46875 193.292969 271.375 193.199219 271.257812 193.199219 C 271.140625 193.199219 271.046875 193.292969 271.046875 193.410156 C 271.046875 193.527344 271.140625 193.621094 271.257812 193.621094 C 271.375 193.621094 271.46875 193.527344 271.46875 193.410156 Z M 271.46875 193.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.339844 193.597656 C 269.339844 193.480469 269.246094 193.386719 269.128906 193.386719 C 269.011719 193.386719 268.917969 193.480469 268.917969 193.597656 C 268.917969 193.714844 269.011719 193.808594 269.128906 193.808594 C 269.246094 193.808594 269.339844 193.714844 269.339844 193.597656 Z M 269.339844 193.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.78125 193.726562 C 271.78125 193.609375 271.6875 193.515625 271.570312 193.515625 C 271.453125 193.515625 271.359375 193.609375 271.359375 193.726562 C 271.359375 193.84375 271.453125 193.9375 271.570312 193.9375 C 271.6875 193.9375 271.78125 193.84375 271.78125 193.726562 Z M 271.78125 193.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.359375 195.347656 C 272.359375 195.230469 272.265625 195.136719 272.148438 195.136719 C 272.03125 195.136719 271.9375 195.230469 271.9375 195.347656 C 271.9375 195.464844 272.03125 195.558594 272.148438 195.558594 C 272.265625 195.558594 272.359375 195.464844 272.359375 195.347656 Z M 272.359375 195.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.101562 194.261719 C 271.101562 194.144531 271.007812 194.050781 270.890625 194.050781 C 270.773438 194.050781 270.679688 194.144531 270.679688 194.261719 C 270.679688 194.378906 270.773438 194.472656 270.890625 194.472656 C 271.007812 194.472656 271.101562 194.378906 271.101562 194.261719 Z M 271.101562 194.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.5625 193.550781 C 267.5625 193.433594 267.46875 193.339844 267.351562 193.339844 C 267.234375 193.339844 267.140625 193.433594 267.140625 193.550781 C 267.140625 193.667969 267.234375 193.761719 267.351562 193.761719 C 267.46875 193.761719 267.5625 193.667969 267.5625 193.550781 Z M 267.5625 193.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.035156 197.789062 C 264.035156 197.671875 263.941406 197.578125 263.824219 197.578125 C 263.707031 197.578125 263.613281 197.671875 263.613281 197.789062 C 263.613281 197.90625 263.707031 198 263.824219 198 C 263.941406 198 264.035156 197.90625 264.035156 197.789062 Z M 264.035156 197.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.457031 196.703125 C 260.457031 196.585938 260.363281 196.492188 260.246094 196.492188 C 260.128906 196.492188 260.035156 196.585938 260.035156 196.703125 C 260.035156 196.820312 260.128906 196.914062 260.246094 196.914062 C 260.363281 196.914062 260.457031 196.820312 260.457031 196.703125 Z M 260.457031 196.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.375 198.042969 C 259.375 197.925781 259.28125 197.832031 259.164062 197.832031 C 259.046875 197.832031 258.953125 197.925781 258.953125 198.042969 C 258.953125 198.160156 259.046875 198.253906 259.164062 198.253906 C 259.28125 198.253906 259.375 198.160156 259.375 198.042969 Z M 259.375 198.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.925781 200.355469 C 259.925781 200.238281 259.832031 200.144531 259.714844 200.144531 C 259.597656 200.144531 259.503906 200.238281 259.503906 200.355469 C 259.503906 200.472656 259.597656 200.566406 259.714844 200.566406 C 259.832031 200.566406 259.925781 200.472656 259.925781 200.355469 Z M 259.925781 200.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.566406 198.234375 C 259.566406 198.117188 259.472656 198.023438 259.355469 198.023438 C 259.238281 198.023438 259.144531 198.117188 259.144531 198.234375 C 259.144531 198.351562 259.238281 198.445312 259.355469 198.445312 C 259.472656 198.445312 259.566406 198.351562 259.566406 198.234375 Z M 259.566406 198.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.785156 198.289062 C 261.785156 198.171875 261.691406 198.078125 261.574219 198.078125 C 261.457031 198.078125 261.363281 198.171875 261.363281 198.289062 C 261.363281 198.40625 261.457031 198.5 261.574219 198.5 C 261.691406 198.5 261.785156 198.40625 261.785156 198.289062 Z M 261.785156 198.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.488281 199.050781 C 260.488281 198.933594 260.394531 198.839844 260.277344 198.839844 C 260.160156 198.839844 260.066406 198.933594 260.066406 199.050781 C 260.066406 199.167969 260.160156 199.261719 260.277344 199.261719 C 260.394531 199.261719 260.488281 199.167969 260.488281 199.050781 Z M 260.488281 199.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.875 199.457031 C 261.875 199.339844 261.78125 199.246094 261.664062 199.246094 C 261.546875 199.246094 261.453125 199.339844 261.453125 199.457031 C 261.453125 199.574219 261.546875 199.667969 261.664062 199.667969 C 261.78125 199.667969 261.875 199.574219 261.875 199.457031 Z M 261.875 199.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.507812 199.820312 C 259.507812 199.703125 259.414062 199.609375 259.296875 199.609375 C 259.179688 199.609375 259.085938 199.703125 259.085938 199.820312 C 259.085938 199.9375 259.179688 200.03125 259.296875 200.03125 C 259.414062 200.03125 259.507812 199.9375 259.507812 199.820312 Z M 259.507812 199.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.890625 199.800781 C 258.890625 199.683594 258.796875 199.589844 258.679688 199.589844 C 258.5625 199.589844 258.46875 199.683594 258.46875 199.800781 C 258.46875 199.917969 258.5625 200.011719 258.679688 200.011719 C 258.796875 200.011719 258.890625 199.917969 258.890625 199.800781 Z M 258.890625 199.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.929688 199.039062 C 259.929688 198.921875 259.835938 198.828125 259.71875 198.828125 C 259.601562 198.828125 259.507812 198.921875 259.507812 199.039062 C 259.507812 199.15625 259.601562 199.25 259.71875 199.25 C 259.835938 199.25 259.929688 199.15625 259.929688 199.039062 Z M 259.929688 199.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.214844 197.3125 C 260.214844 197.195312 260.121094 197.101562 260.003906 197.101562 C 259.886719 197.101562 259.792969 197.195312 259.792969 197.3125 C 259.792969 197.429688 259.886719 197.523438 260.003906 197.523438 C 260.121094 197.523438 260.214844 197.429688 260.214844 197.3125 Z M 260.214844 197.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.515625 198.660156 C 260.515625 198.542969 260.421875 198.449219 260.304688 198.449219 C 260.1875 198.449219 260.09375 198.542969 260.09375 198.660156 C 260.09375 198.777344 260.1875 198.871094 260.304688 198.871094 C 260.421875 198.871094 260.515625 198.777344 260.515625 198.660156 Z M 260.515625 198.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.652344 198.734375 C 259.652344 198.617188 259.558594 198.523438 259.441406 198.523438 C 259.324219 198.523438 259.230469 198.617188 259.230469 198.734375 C 259.230469 198.851562 259.324219 198.945312 259.441406 198.945312 C 259.558594 198.945312 259.652344 198.851562 259.652344 198.734375 Z M 259.652344 198.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.65625 197.363281 C 258.65625 197.246094 258.5625 197.152344 258.445312 197.152344 C 258.328125 197.152344 258.234375 197.246094 258.234375 197.363281 C 258.234375 197.480469 258.328125 197.574219 258.445312 197.574219 C 258.5625 197.574219 258.65625 197.480469 258.65625 197.363281 Z M 258.65625 197.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.363281 196.878906 C 259.363281 196.761719 259.269531 196.667969 259.152344 196.667969 C 259.035156 196.667969 258.941406 196.761719 258.941406 196.878906 C 258.941406 196.996094 259.035156 197.089844 259.152344 197.089844 C 259.269531 197.089844 259.363281 196.996094 259.363281 196.878906 Z M 259.363281 196.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.980469 194.808594 C 259.980469 194.691406 259.886719 194.597656 259.769531 194.597656 C 259.652344 194.597656 259.558594 194.691406 259.558594 194.808594 C 259.558594 194.925781 259.652344 195.019531 259.769531 195.019531 C 259.886719 195.019531 259.980469 194.925781 259.980469 194.808594 Z M 259.980469 194.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.214844 194.414062 C 262.214844 194.296875 262.121094 194.203125 262.003906 194.203125 C 261.886719 194.203125 261.792969 194.296875 261.792969 194.414062 C 261.792969 194.53125 261.886719 194.625 262.003906 194.625 C 262.121094 194.625 262.214844 194.53125 262.214844 194.414062 Z M 262.214844 194.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.339844 196.628906 C 263.339844 196.511719 263.246094 196.417969 263.128906 196.417969 C 263.011719 196.417969 262.917969 196.511719 262.917969 196.628906 C 262.917969 196.746094 263.011719 196.839844 263.128906 196.839844 C 263.246094 196.839844 263.339844 196.746094 263.339844 196.628906 Z M 263.339844 196.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.375 195.808594 C 261.375 195.691406 261.28125 195.597656 261.164062 195.597656 C 261.046875 195.597656 260.953125 195.691406 260.953125 195.808594 C 260.953125 195.925781 261.046875 196.019531 261.164062 196.019531 C 261.28125 196.019531 261.375 195.925781 261.375 195.808594 Z M 261.375 195.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.808594 199.351562 C 262.808594 199.234375 262.714844 199.140625 262.597656 199.140625 C 262.480469 199.140625 262.386719 199.234375 262.386719 199.351562 C 262.386719 199.46875 262.480469 199.5625 262.597656 199.5625 C 262.714844 199.5625 262.808594 199.46875 262.808594 199.351562 Z M 262.808594 199.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.242188 197.582031 C 262.242188 197.464844 262.148438 197.371094 262.03125 197.371094 C 261.914062 197.371094 261.820312 197.464844 261.820312 197.582031 C 261.820312 197.699219 261.914062 197.792969 262.03125 197.792969 C 262.148438 197.792969 262.242188 197.699219 262.242188 197.582031 Z M 262.242188 197.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.855469 196.84375 C 262.855469 196.726562 262.761719 196.632812 262.644531 196.632812 C 262.527344 196.632812 262.433594 196.726562 262.433594 196.84375 C 262.433594 196.960938 262.527344 197.054688 262.644531 197.054688 C 262.761719 197.054688 262.855469 196.960938 262.855469 196.84375 Z M 262.855469 196.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.691406 195.851562 C 262.691406 195.734375 262.597656 195.640625 262.480469 195.640625 C 262.363281 195.640625 262.269531 195.734375 262.269531 195.851562 C 262.269531 195.96875 262.363281 196.0625 262.480469 196.0625 C 262.597656 196.0625 262.691406 195.96875 262.691406 195.851562 Z M 262.691406 195.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.03125 197.003906 C 265.03125 196.886719 264.9375 196.792969 264.820312 196.792969 C 264.703125 196.792969 264.609375 196.886719 264.609375 197.003906 C 264.609375 197.121094 264.703125 197.214844 264.820312 197.214844 C 264.9375 197.214844 265.03125 197.121094 265.03125 197.003906 Z M 265.03125 197.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.058594 194.058594 C 268.058594 193.941406 267.964844 193.847656 267.847656 193.847656 C 267.730469 193.847656 267.636719 193.941406 267.636719 194.058594 C 267.636719 194.175781 267.730469 194.269531 267.847656 194.269531 C 267.964844 194.269531 268.058594 194.175781 268.058594 194.058594 Z M 268.058594 194.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.621094 189.800781 C 266.621094 189.683594 266.527344 189.589844 266.410156 189.589844 C 266.292969 189.589844 266.199219 189.683594 266.199219 189.800781 C 266.199219 189.917969 266.292969 190.011719 266.410156 190.011719 C 266.527344 190.011719 266.621094 189.917969 266.621094 189.800781 Z M 266.621094 189.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.679688 189.699219 C 263.679688 189.582031 263.585938 189.488281 263.46875 189.488281 C 263.351562 189.488281 263.257812 189.582031 263.257812 189.699219 C 263.257812 189.816406 263.351562 189.910156 263.46875 189.910156 C 263.585938 189.910156 263.679688 189.816406 263.679688 189.699219 Z M 263.679688 189.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.179688 190.988281 C 263.179688 190.871094 263.085938 190.777344 262.96875 190.777344 C 262.851562 190.777344 262.757812 190.871094 262.757812 190.988281 C 262.757812 191.105469 262.851562 191.199219 262.96875 191.199219 C 263.085938 191.199219 263.179688 191.105469 263.179688 190.988281 Z M 263.179688 190.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.363281 189.414062 C 261.363281 189.296875 261.269531 189.203125 261.152344 189.203125 C 261.035156 189.203125 260.941406 189.296875 260.941406 189.414062 C 260.941406 189.53125 261.035156 189.625 261.152344 189.625 C 261.269531 189.625 261.363281 189.53125 261.363281 189.414062 Z M 261.363281 189.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.777344 192.640625 C 259.777344 192.523438 259.683594 192.429688 259.566406 192.429688 C 259.449219 192.429688 259.355469 192.523438 259.355469 192.640625 C 259.355469 192.757812 259.449219 192.851562 259.566406 192.851562 C 259.683594 192.851562 259.777344 192.757812 259.777344 192.640625 Z M 259.777344 192.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.003906 192.703125 C 256.003906 192.585938 255.910156 192.492188 255.792969 192.492188 C 255.675781 192.492188 255.582031 192.585938 255.582031 192.703125 C 255.582031 192.820312 255.675781 192.914062 255.792969 192.914062 C 255.910156 192.914062 256.003906 192.820312 256.003906 192.703125 Z M 256.003906 192.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.984375 193.230469 C 259.984375 193.113281 259.890625 193.019531 259.773438 193.019531 C 259.65625 193.019531 259.5625 193.113281 259.5625 193.230469 C 259.5625 193.347656 259.65625 193.441406 259.773438 193.441406 C 259.890625 193.441406 259.984375 193.347656 259.984375 193.230469 Z M 259.984375 193.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.417969 193.019531 C 259.417969 192.902344 259.324219 192.808594 259.207031 192.808594 C 259.089844 192.808594 258.996094 192.902344 258.996094 193.019531 C 258.996094 193.136719 259.089844 193.230469 259.207031 193.230469 C 259.324219 193.230469 259.417969 193.136719 259.417969 193.019531 Z M 259.417969 193.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.484375 194.171875 C 257.484375 194.054688 257.390625 193.960938 257.273438 193.960938 C 257.15625 193.960938 257.0625 194.054688 257.0625 194.171875 C 257.0625 194.289062 257.15625 194.382812 257.273438 194.382812 C 257.390625 194.382812 257.484375 194.289062 257.484375 194.171875 Z M 257.484375 194.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.40625 193.671875 C 257.40625 193.554688 257.3125 193.460938 257.195312 193.460938 C 257.078125 193.460938 256.984375 193.554688 256.984375 193.671875 C 256.984375 193.789062 257.078125 193.882812 257.195312 193.882812 C 257.3125 193.882812 257.40625 193.789062 257.40625 193.671875 Z M 257.40625 193.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.222656 194.804688 C 258.222656 194.6875 258.128906 194.59375 258.011719 194.59375 C 257.894531 194.59375 257.800781 194.6875 257.800781 194.804688 C 257.800781 194.921875 257.894531 195.015625 258.011719 195.015625 C 258.128906 195.015625 258.222656 194.921875 258.222656 194.804688 Z M 258.222656 194.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.671875 196.875 C 257.671875 196.757812 257.578125 196.664062 257.460938 196.664062 C 257.34375 196.664062 257.25 196.757812 257.25 196.875 C 257.25 196.992188 257.34375 197.085938 257.460938 197.085938 C 257.578125 197.085938 257.671875 196.992188 257.671875 196.875 Z M 257.671875 196.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.496094 196.5 C 257.496094 196.382812 257.402344 196.289062 257.285156 196.289062 C 257.167969 196.289062 257.074219 196.382812 257.074219 196.5 C 257.074219 196.617188 257.167969 196.710938 257.285156 196.710938 C 257.402344 196.710938 257.496094 196.617188 257.496094 196.5 Z M 257.496094 196.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.671875 197.988281 C 259.671875 197.871094 259.578125 197.777344 259.460938 197.777344 C 259.34375 197.777344 259.25 197.871094 259.25 197.988281 C 259.25 198.105469 259.34375 198.199219 259.460938 198.199219 C 259.578125 198.199219 259.671875 198.105469 259.671875 197.988281 Z M 259.671875 197.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.929688 199.589844 C 258.929688 199.472656 258.835938 199.378906 258.71875 199.378906 C 258.601562 199.378906 258.507812 199.472656 258.507812 199.589844 C 258.507812 199.707031 258.601562 199.800781 258.71875 199.800781 C 258.835938 199.800781 258.929688 199.707031 258.929688 199.589844 Z M 258.929688 199.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.933594 201.261719 C 259.933594 201.144531 259.839844 201.050781 259.722656 201.050781 C 259.605469 201.050781 259.511719 201.144531 259.511719 201.261719 C 259.511719 201.378906 259.605469 201.472656 259.722656 201.472656 C 259.839844 201.472656 259.933594 201.378906 259.933594 201.261719 Z M 259.933594 201.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.640625 198.734375 C 260.640625 198.617188 260.546875 198.523438 260.429688 198.523438 C 260.3125 198.523438 260.21875 198.617188 260.21875 198.734375 C 260.21875 198.851562 260.3125 198.945312 260.429688 198.945312 C 260.546875 198.945312 260.640625 198.851562 260.640625 198.734375 Z M 260.640625 198.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.070312 199.617188 C 258.070312 199.5 257.976562 199.40625 257.859375 199.40625 C 257.742188 199.40625 257.648438 199.5 257.648438 199.617188 C 257.648438 199.734375 257.742188 199.828125 257.859375 199.828125 C 257.976562 199.828125 258.070312 199.734375 258.070312 199.617188 Z M 258.070312 199.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.667969 198.835938 C 259.667969 198.71875 259.574219 198.625 259.457031 198.625 C 259.339844 198.625 259.246094 198.71875 259.246094 198.835938 C 259.246094 198.953125 259.339844 199.046875 259.457031 199.046875 C 259.574219 199.046875 259.667969 198.953125 259.667969 198.835938 Z M 259.667969 198.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.253906 195.9375 C 258.253906 195.820312 258.160156 195.726562 258.042969 195.726562 C 257.925781 195.726562 257.832031 195.820312 257.832031 195.9375 C 257.832031 196.054688 257.925781 196.148438 258.042969 196.148438 C 258.160156 196.148438 258.253906 196.054688 258.253906 195.9375 Z M 258.253906 195.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.335938 196.273438 C 257.335938 196.15625 257.242188 196.0625 257.125 196.0625 C 257.007812 196.0625 256.914062 196.15625 256.914062 196.273438 C 256.914062 196.390625 257.007812 196.484375 257.125 196.484375 C 257.242188 196.484375 257.335938 196.390625 257.335938 196.273438 Z M 257.335938 196.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.28125 197.738281 C 262.28125 197.621094 262.1875 197.527344 262.070312 197.527344 C 261.953125 197.527344 261.859375 197.621094 261.859375 197.738281 C 261.859375 197.855469 261.953125 197.949219 262.070312 197.949219 C 262.1875 197.949219 262.28125 197.855469 262.28125 197.738281 Z M 262.28125 197.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.855469 198.78125 C 260.855469 198.664062 260.761719 198.570312 260.644531 198.570312 C 260.527344 198.570312 260.433594 198.664062 260.433594 198.78125 C 260.433594 198.898438 260.527344 198.992188 260.644531 198.992188 C 260.761719 198.992188 260.855469 198.898438 260.855469 198.78125 Z M 260.855469 198.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.273438 198.808594 C 258.273438 198.691406 258.179688 198.597656 258.0625 198.597656 C 257.945312 198.597656 257.851562 198.691406 257.851562 198.808594 C 257.851562 198.925781 257.945312 199.019531 258.0625 199.019531 C 258.179688 199.019531 258.273438 198.925781 258.273438 198.808594 Z M 258.273438 198.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.382812 194.851562 C 259.382812 194.734375 259.289062 194.640625 259.171875 194.640625 C 259.054688 194.640625 258.960938 194.734375 258.960938 194.851562 C 258.960938 194.96875 259.054688 195.0625 259.171875 195.0625 C 259.289062 195.0625 259.382812 194.96875 259.382812 194.851562 Z M 259.382812 194.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.394531 196.164062 C 259.394531 196.046875 259.300781 195.953125 259.183594 195.953125 C 259.066406 195.953125 258.972656 196.046875 258.972656 196.164062 C 258.972656 196.28125 259.066406 196.375 259.183594 196.375 C 259.300781 196.375 259.394531 196.28125 259.394531 196.164062 Z M 259.394531 196.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.003906 197.503906 C 262.003906 197.386719 261.910156 197.292969 261.792969 197.292969 C 261.675781 197.292969 261.582031 197.386719 261.582031 197.503906 C 261.582031 197.621094 261.675781 197.714844 261.792969 197.714844 C 261.910156 197.714844 262.003906 197.621094 262.003906 197.503906 Z M 262.003906 197.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.28125 198.367188 C 263.28125 198.25 263.1875 198.15625 263.070312 198.15625 C 262.953125 198.15625 262.859375 198.25 262.859375 198.367188 C 262.859375 198.484375 262.953125 198.578125 263.070312 198.578125 C 263.1875 198.578125 263.28125 198.484375 263.28125 198.367188 Z M 263.28125 198.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.335938 196.996094 C 263.335938 196.878906 263.242188 196.785156 263.125 196.785156 C 263.007812 196.785156 262.914062 196.878906 262.914062 196.996094 C 262.914062 197.113281 263.007812 197.207031 263.125 197.207031 C 263.242188 197.207031 263.335938 197.113281 263.335938 196.996094 Z M 263.335938 196.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.160156 198.765625 C 265.160156 198.648438 265.066406 198.554688 264.949219 198.554688 C 264.832031 198.554688 264.738281 198.648438 264.738281 198.765625 C 264.738281 198.882812 264.832031 198.976562 264.949219 198.976562 C 265.066406 198.976562 265.160156 198.882812 265.160156 198.765625 Z M 265.160156 198.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.875 199.964844 C 259.875 199.847656 259.78125 199.753906 259.664062 199.753906 C 259.546875 199.753906 259.453125 199.847656 259.453125 199.964844 C 259.453125 200.082031 259.546875 200.175781 259.664062 200.175781 C 259.78125 200.175781 259.875 200.082031 259.875 199.964844 Z M 259.875 199.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.472656 203.328125 C 263.472656 203.210938 263.378906 203.117188 263.261719 203.117188 C 263.144531 203.117188 263.050781 203.210938 263.050781 203.328125 C 263.050781 203.445312 263.144531 203.539062 263.261719 203.539062 C 263.378906 203.539062 263.472656 203.445312 263.472656 203.328125 Z M 263.472656 203.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.265625 202.832031 C 264.265625 202.714844 264.171875 202.621094 264.054688 202.621094 C 263.9375 202.621094 263.84375 202.714844 263.84375 202.832031 C 263.84375 202.949219 263.9375 203.042969 264.054688 203.042969 C 264.171875 203.042969 264.265625 202.949219 264.265625 202.832031 Z M 264.265625 202.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.429688 198.921875 C 265.429688 198.804688 265.335938 198.710938 265.21875 198.710938 C 265.101562 198.710938 265.007812 198.804688 265.007812 198.921875 C 265.007812 199.039062 265.101562 199.132812 265.21875 199.132812 C 265.335938 199.132812 265.429688 199.039062 265.429688 198.921875 Z M 265.429688 198.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.828125 198.140625 C 265.828125 198.023438 265.734375 197.929688 265.617188 197.929688 C 265.5 197.929688 265.40625 198.023438 265.40625 198.140625 C 265.40625 198.257812 265.5 198.351562 265.617188 198.351562 C 265.734375 198.351562 265.828125 198.257812 265.828125 198.140625 Z M 265.828125 198.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.613281 200.390625 C 262.613281 200.273438 262.519531 200.179688 262.402344 200.179688 C 262.285156 200.179688 262.191406 200.273438 262.191406 200.390625 C 262.191406 200.507812 262.285156 200.601562 262.402344 200.601562 C 262.519531 200.601562 262.613281 200.507812 262.613281 200.390625 Z M 262.613281 200.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.296875 198.976562 C 261.296875 198.859375 261.203125 198.765625 261.085938 198.765625 C 260.96875 198.765625 260.875 198.859375 260.875 198.976562 C 260.875 199.09375 260.96875 199.1875 261.085938 199.1875 C 261.203125 199.1875 261.296875 199.09375 261.296875 198.976562 Z M 261.296875 198.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.289062 196.664062 C 258.289062 196.546875 258.195312 196.453125 258.078125 196.453125 C 257.960938 196.453125 257.867188 196.546875 257.867188 196.664062 C 257.867188 196.78125 257.960938 196.875 258.078125 196.875 C 258.195312 196.875 258.289062 196.78125 258.289062 196.664062 Z M 258.289062 196.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.175781 197.855469 C 254.175781 197.738281 254.082031 197.644531 253.964844 197.644531 C 253.847656 197.644531 253.753906 197.738281 253.753906 197.855469 C 253.753906 197.972656 253.847656 198.066406 253.964844 198.066406 C 254.082031 198.066406 254.175781 197.972656 254.175781 197.855469 Z M 254.175781 197.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.617188 200.136719 C 253.617188 200.019531 253.523438 199.925781 253.40625 199.925781 C 253.289062 199.925781 253.195312 200.019531 253.195312 200.136719 C 253.195312 200.253906 253.289062 200.347656 253.40625 200.347656 C 253.523438 200.347656 253.617188 200.253906 253.617188 200.136719 Z M 253.617188 200.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.667969 194.171875 C 252.667969 194.054688 252.574219 193.960938 252.457031 193.960938 C 252.339844 193.960938 252.246094 194.054688 252.246094 194.171875 C 252.246094 194.289062 252.339844 194.382812 252.457031 194.382812 C 252.574219 194.382812 252.667969 194.289062 252.667969 194.171875 Z M 252.667969 194.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.339844 195.570312 C 252.339844 195.453125 252.246094 195.359375 252.128906 195.359375 C 252.011719 195.359375 251.917969 195.453125 251.917969 195.570312 C 251.917969 195.6875 252.011719 195.78125 252.128906 195.78125 C 252.246094 195.78125 252.339844 195.6875 252.339844 195.570312 Z M 252.339844 195.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.648438 196.808594 C 248.648438 196.691406 248.554688 196.597656 248.4375 196.597656 C 248.320312 196.597656 248.226562 196.691406 248.226562 196.808594 C 248.226562 196.925781 248.320312 197.019531 248.4375 197.019531 C 248.554688 197.019531 248.648438 196.925781 248.648438 196.808594 Z M 248.648438 196.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.765625 198.652344 C 246.765625 198.535156 246.671875 198.441406 246.554688 198.441406 C 246.4375 198.441406 246.34375 198.535156 246.34375 198.652344 C 246.34375 198.769531 246.4375 198.863281 246.554688 198.863281 C 246.671875 198.863281 246.765625 198.769531 246.765625 198.652344 Z M 246.765625 198.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.507812 200.039062 C 247.507812 199.921875 247.414062 199.828125 247.296875 199.828125 C 247.179688 199.828125 247.085938 199.921875 247.085938 200.039062 C 247.085938 200.15625 247.179688 200.25 247.296875 200.25 C 247.414062 200.25 247.507812 200.15625 247.507812 200.039062 Z M 247.507812 200.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.542969 198.335938 C 244.542969 198.21875 244.449219 198.125 244.332031 198.125 C 244.214844 198.125 244.121094 198.21875 244.121094 198.335938 C 244.121094 198.453125 244.214844 198.546875 244.332031 198.546875 C 244.449219 198.546875 244.542969 198.453125 244.542969 198.335938 Z M 244.542969 198.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.777344 195.882812 C 242.777344 195.765625 242.683594 195.671875 242.566406 195.671875 C 242.449219 195.671875 242.355469 195.765625 242.355469 195.882812 C 242.355469 196 242.449219 196.09375 242.566406 196.09375 C 242.683594 196.09375 242.777344 196 242.777344 195.882812 Z M 242.777344 195.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.378906 194.140625 C 245.378906 194.023438 245.285156 193.929688 245.167969 193.929688 C 245.050781 193.929688 244.957031 194.023438 244.957031 194.140625 C 244.957031 194.257812 245.050781 194.351562 245.167969 194.351562 C 245.285156 194.351562 245.378906 194.257812 245.378906 194.140625 Z M 245.378906 194.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.875 195.402344 C 248.875 195.285156 248.78125 195.191406 248.664062 195.191406 C 248.546875 195.191406 248.453125 195.285156 248.453125 195.402344 C 248.453125 195.519531 248.546875 195.613281 248.664062 195.613281 C 248.78125 195.613281 248.875 195.519531 248.875 195.402344 Z M 248.875 195.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.070312 197.429688 C 252.070312 197.3125 251.976562 197.21875 251.859375 197.21875 C 251.742188 197.21875 251.648438 197.3125 251.648438 197.429688 C 251.648438 197.546875 251.742188 197.640625 251.859375 197.640625 C 251.976562 197.640625 252.070312 197.546875 252.070312 197.429688 Z M 252.070312 197.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.339844 200.871094 C 250.339844 200.753906 250.246094 200.660156 250.128906 200.660156 C 250.011719 200.660156 249.917969 200.753906 249.917969 200.871094 C 249.917969 200.988281 250.011719 201.082031 250.128906 201.082031 C 250.246094 201.082031 250.339844 200.988281 250.339844 200.871094 Z M 250.339844 200.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.75 202.519531 C 254.75 202.402344 254.65625 202.308594 254.539062 202.308594 C 254.421875 202.308594 254.328125 202.402344 254.328125 202.519531 C 254.328125 202.636719 254.421875 202.730469 254.539062 202.730469 C 254.65625 202.730469 254.75 202.636719 254.75 202.519531 Z M 254.75 202.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.414062 202.0625 C 251.414062 201.945312 251.320312 201.851562 251.203125 201.851562 C 251.085938 201.851562 250.992188 201.945312 250.992188 202.0625 C 250.992188 202.179688 251.085938 202.273438 251.203125 202.273438 C 251.320312 202.273438 251.414062 202.179688 251.414062 202.0625 Z M 251.414062 202.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.414062 198.691406 C 251.414062 198.574219 251.320312 198.480469 251.203125 198.480469 C 251.085938 198.480469 250.992188 198.574219 250.992188 198.691406 C 250.992188 198.808594 251.085938 198.902344 251.203125 198.902344 C 251.320312 198.902344 251.414062 198.808594 251.414062 198.691406 Z M 251.414062 198.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.070312 200.101562 C 251.070312 199.984375 250.976562 199.890625 250.859375 199.890625 C 250.742188 199.890625 250.648438 199.984375 250.648438 200.101562 C 250.648438 200.21875 250.742188 200.3125 250.859375 200.3125 C 250.976562 200.3125 251.070312 200.21875 251.070312 200.101562 Z M 251.070312 200.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.089844 203.894531 C 246.089844 203.777344 245.996094 203.683594 245.878906 203.683594 C 245.761719 203.683594 245.667969 203.777344 245.667969 203.894531 C 245.667969 204.011719 245.761719 204.105469 245.878906 204.105469 C 245.996094 204.105469 246.089844 204.011719 246.089844 203.894531 Z M 246.089844 203.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.25 203.835938 C 247.25 203.71875 247.15625 203.625 247.039062 203.625 C 246.921875 203.625 246.828125 203.71875 246.828125 203.835938 C 246.828125 203.953125 246.921875 204.046875 247.039062 204.046875 C 247.15625 204.046875 247.25 203.953125 247.25 203.835938 Z M 247.25 203.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.484375 200.882812 C 248.484375 200.765625 248.390625 200.671875 248.273438 200.671875 C 248.15625 200.671875 248.0625 200.765625 248.0625 200.882812 C 248.0625 201 248.15625 201.09375 248.273438 201.09375 C 248.390625 201.09375 248.484375 201 248.484375 200.882812 Z M 248.484375 200.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.910156 200.039062 C 245.910156 199.921875 245.816406 199.828125 245.699219 199.828125 C 245.582031 199.828125 245.488281 199.921875 245.488281 200.039062 C 245.488281 200.15625 245.582031 200.25 245.699219 200.25 C 245.816406 200.25 245.910156 200.15625 245.910156 200.039062 Z M 245.910156 200.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.144531 199.367188 C 245.144531 199.25 245.050781 199.15625 244.933594 199.15625 C 244.816406 199.15625 244.722656 199.25 244.722656 199.367188 C 244.722656 199.484375 244.816406 199.578125 244.933594 199.578125 C 245.050781 199.578125 245.144531 199.484375 245.144531 199.367188 Z M 245.144531 199.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.015625 198 C 247.015625 197.882812 246.921875 197.789062 246.804688 197.789062 C 246.6875 197.789062 246.59375 197.882812 246.59375 198 C 246.59375 198.117188 246.6875 198.210938 246.804688 198.210938 C 246.921875 198.210938 247.015625 198.117188 247.015625 198 Z M 247.015625 198 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.0625 199.460938 C 248.0625 199.34375 247.96875 199.25 247.851562 199.25 C 247.734375 199.25 247.640625 199.34375 247.640625 199.460938 C 247.640625 199.578125 247.734375 199.671875 247.851562 199.671875 C 247.96875 199.671875 248.0625 199.578125 248.0625 199.460938 Z M 248.0625 199.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.054688 197.40625 C 245.054688 197.289062 244.960938 197.195312 244.84375 197.195312 C 244.726562 197.195312 244.632812 197.289062 244.632812 197.40625 C 244.632812 197.523438 244.726562 197.617188 244.84375 197.617188 C 244.960938 197.617188 245.054688 197.523438 245.054688 197.40625 Z M 245.054688 197.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.558594 192.84375 C 242.558594 192.726562 242.464844 192.632812 242.347656 192.632812 C 242.230469 192.632812 242.136719 192.726562 242.136719 192.84375 C 242.136719 192.960938 242.230469 193.054688 242.347656 193.054688 C 242.464844 193.054688 242.558594 192.960938 242.558594 192.84375 Z M 242.558594 192.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.992188 192.835938 C 240.992188 192.71875 240.898438 192.625 240.78125 192.625 C 240.664062 192.625 240.570312 192.71875 240.570312 192.835938 C 240.570312 192.953125 240.664062 193.046875 240.78125 193.046875 C 240.898438 193.046875 240.992188 192.953125 240.992188 192.835938 Z M 240.992188 192.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.3125 193.082031 C 238.3125 192.964844 238.21875 192.871094 238.101562 192.871094 C 237.984375 192.871094 237.890625 192.964844 237.890625 193.082031 C 237.890625 193.199219 237.984375 193.292969 238.101562 193.292969 C 238.21875 193.292969 238.3125 193.199219 238.3125 193.082031 Z M 238.3125 193.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.542969 194.363281 C 239.542969 194.246094 239.449219 194.152344 239.332031 194.152344 C 239.214844 194.152344 239.121094 194.246094 239.121094 194.363281 C 239.121094 194.480469 239.214844 194.574219 239.332031 194.574219 C 239.449219 194.574219 239.542969 194.480469 239.542969 194.363281 Z M 239.542969 194.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.339844 195.476562 C 234.339844 195.359375 234.246094 195.265625 234.128906 195.265625 C 234.011719 195.265625 233.917969 195.359375 233.917969 195.476562 C 233.917969 195.59375 234.011719 195.6875 234.128906 195.6875 C 234.246094 195.6875 234.339844 195.59375 234.339844 195.476562 Z M 234.339844 195.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.578125 191.167969 C 230.578125 191.050781 230.484375 190.957031 230.367188 190.957031 C 230.25 190.957031 230.15625 191.050781 230.15625 191.167969 C 230.15625 191.285156 230.25 191.378906 230.367188 191.378906 C 230.484375 191.378906 230.578125 191.285156 230.578125 191.167969 Z M 230.578125 191.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.339844 194.28125 C 235.339844 194.164062 235.246094 194.070312 235.128906 194.070312 C 235.011719 194.070312 234.917969 194.164062 234.917969 194.28125 C 234.917969 194.398438 235.011719 194.492188 235.128906 194.492188 C 235.246094 194.492188 235.339844 194.398438 235.339844 194.28125 Z M 235.339844 194.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.835938 194.511719 C 231.835938 194.394531 231.742188 194.300781 231.625 194.300781 C 231.507812 194.300781 231.414062 194.394531 231.414062 194.511719 C 231.414062 194.628906 231.507812 194.722656 231.625 194.722656 C 231.742188 194.722656 231.835938 194.628906 231.835938 194.511719 Z M 231.835938 194.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.394531 197.058594 C 231.394531 196.941406 231.300781 196.847656 231.183594 196.847656 C 231.066406 196.847656 230.972656 196.941406 230.972656 197.058594 C 230.972656 197.175781 231.066406 197.269531 231.183594 197.269531 C 231.300781 197.269531 231.394531 197.175781 231.394531 197.058594 Z M 231.394531 197.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.535156 194.035156 C 231.535156 193.917969 231.441406 193.824219 231.324219 193.824219 C 231.207031 193.824219 231.113281 193.917969 231.113281 194.035156 C 231.113281 194.152344 231.207031 194.246094 231.324219 194.246094 C 231.441406 194.246094 231.535156 194.152344 231.535156 194.035156 Z M 231.535156 194.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.4375 195.625 C 231.4375 195.507812 231.34375 195.414062 231.226562 195.414062 C 231.109375 195.414062 231.015625 195.507812 231.015625 195.625 C 231.015625 195.742188 231.109375 195.835938 231.226562 195.835938 C 231.34375 195.835938 231.4375 195.742188 231.4375 195.625 Z M 231.4375 195.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.855469 198.375 C 229.855469 198.257812 229.761719 198.164062 229.644531 198.164062 C 229.527344 198.164062 229.433594 198.257812 229.433594 198.375 C 229.433594 198.492188 229.527344 198.585938 229.644531 198.585938 C 229.761719 198.585938 229.855469 198.492188 229.855469 198.375 Z M 229.855469 198.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.199219 198.527344 C 229.199219 198.410156 229.105469 198.316406 228.988281 198.316406 C 228.871094 198.316406 228.777344 198.410156 228.777344 198.527344 C 228.777344 198.644531 228.871094 198.738281 228.988281 198.738281 C 229.105469 198.738281 229.199219 198.644531 229.199219 198.527344 Z M 229.199219 198.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.761719 197.488281 C 228.761719 197.371094 228.667969 197.277344 228.550781 197.277344 C 228.433594 197.277344 228.339844 197.371094 228.339844 197.488281 C 228.339844 197.605469 228.433594 197.699219 228.550781 197.699219 C 228.667969 197.699219 228.761719 197.605469 228.761719 197.488281 Z M 228.761719 197.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.6875 193.679688 C 228.6875 193.5625 228.59375 193.46875 228.476562 193.46875 C 228.359375 193.46875 228.265625 193.5625 228.265625 193.679688 C 228.265625 193.796875 228.359375 193.890625 228.476562 193.890625 C 228.59375 193.890625 228.6875 193.796875 228.6875 193.679688 Z M 228.6875 193.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.574219 192.546875 C 228.574219 192.429688 228.480469 192.335938 228.363281 192.335938 C 228.246094 192.335938 228.152344 192.429688 228.152344 192.546875 C 228.152344 192.664062 228.246094 192.757812 228.363281 192.757812 C 228.480469 192.757812 228.574219 192.664062 228.574219 192.546875 Z M 228.574219 192.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.84375 190.714844 C 226.84375 190.597656 226.75 190.503906 226.632812 190.503906 C 226.515625 190.503906 226.421875 190.597656 226.421875 190.714844 C 226.421875 190.832031 226.515625 190.925781 226.632812 190.925781 C 226.75 190.925781 226.84375 190.832031 226.84375 190.714844 Z M 226.84375 190.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.152344 192.375 C 225.152344 192.257812 225.058594 192.164062 224.941406 192.164062 C 224.824219 192.164062 224.730469 192.257812 224.730469 192.375 C 224.730469 192.492188 224.824219 192.585938 224.941406 192.585938 C 225.058594 192.585938 225.152344 192.492188 225.152344 192.375 Z M 225.152344 192.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.050781 194.238281 C 225.050781 194.121094 224.957031 194.027344 224.839844 194.027344 C 224.722656 194.027344 224.628906 194.121094 224.628906 194.238281 C 224.628906 194.355469 224.722656 194.449219 224.839844 194.449219 C 224.957031 194.449219 225.050781 194.355469 225.050781 194.238281 Z M 225.050781 194.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.226562 192.09375 C 225.226562 191.976562 225.132812 191.882812 225.015625 191.882812 C 224.898438 191.882812 224.804688 191.976562 224.804688 192.09375 C 224.804688 192.210938 224.898438 192.304688 225.015625 192.304688 C 225.132812 192.304688 225.226562 192.210938 225.226562 192.09375 Z M 225.226562 192.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.066406 188.324219 C 224.066406 188.207031 223.972656 188.113281 223.855469 188.113281 C 223.738281 188.113281 223.644531 188.207031 223.644531 188.324219 C 223.644531 188.441406 223.738281 188.535156 223.855469 188.535156 C 223.972656 188.535156 224.066406 188.441406 224.066406 188.324219 Z M 224.066406 188.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.535156 189.332031 C 224.535156 189.214844 224.441406 189.121094 224.324219 189.121094 C 224.207031 189.121094 224.113281 189.214844 224.113281 189.332031 C 224.113281 189.449219 224.207031 189.542969 224.324219 189.542969 C 224.441406 189.542969 224.535156 189.449219 224.535156 189.332031 Z M 224.535156 189.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.347656 189.308594 C 231.347656 189.191406 231.253906 189.097656 231.136719 189.097656 C 231.019531 189.097656 230.925781 189.191406 230.925781 189.308594 C 230.925781 189.425781 231.019531 189.519531 231.136719 189.519531 C 231.253906 189.519531 231.347656 189.425781 231.347656 189.308594 Z M 231.347656 189.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.414062 190.457031 C 232.414062 190.339844 232.320312 190.246094 232.203125 190.246094 C 232.085938 190.246094 231.992188 190.339844 231.992188 190.457031 C 231.992188 190.574219 232.085938 190.667969 232.203125 190.667969 C 232.320312 190.667969 232.414062 190.574219 232.414062 190.457031 Z M 232.414062 190.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.722656 189.660156 C 230.722656 189.542969 230.628906 189.449219 230.511719 189.449219 C 230.394531 189.449219 230.300781 189.542969 230.300781 189.660156 C 230.300781 189.777344 230.394531 189.871094 230.511719 189.871094 C 230.628906 189.871094 230.722656 189.777344 230.722656 189.660156 Z M 230.722656 189.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.964844 188.15625 C 229.964844 188.039062 229.871094 187.945312 229.753906 187.945312 C 229.636719 187.945312 229.542969 188.039062 229.542969 188.15625 C 229.542969 188.273438 229.636719 188.367188 229.753906 188.367188 C 229.871094 188.367188 229.964844 188.273438 229.964844 188.15625 Z M 229.964844 188.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 228.953125 189.902344 C 228.953125 189.785156 228.859375 189.691406 228.742188 189.691406 C 228.625 189.691406 228.53125 189.785156 228.53125 189.902344 C 228.53125 190.019531 228.625 190.113281 228.742188 190.113281 C 228.859375 190.113281 228.953125 190.019531 228.953125 189.902344 Z M 228.953125 189.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.453125 189.058594 C 229.453125 188.941406 229.359375 188.847656 229.242188 188.847656 C 229.125 188.847656 229.03125 188.941406 229.03125 189.058594 C 229.03125 189.175781 229.125 189.269531 229.242188 189.269531 C 229.359375 189.269531 229.453125 189.175781 229.453125 189.058594 Z M 229.453125 189.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.648438 189.757812 C 230.648438 189.640625 230.554688 189.546875 230.4375 189.546875 C 230.320312 189.546875 230.226562 189.640625 230.226562 189.757812 C 230.226562 189.875 230.320312 189.96875 230.4375 189.96875 C 230.554688 189.96875 230.648438 189.875 230.648438 189.757812 Z M 230.648438 189.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.285156 193.191406 C 230.285156 193.074219 230.191406 192.980469 230.074219 192.980469 C 229.957031 192.980469 229.863281 193.074219 229.863281 193.191406 C 229.863281 193.308594 229.957031 193.402344 230.074219 193.402344 C 230.191406 193.402344 230.285156 193.308594 230.285156 193.191406 Z M 230.285156 193.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.730469 192.945312 C 232.730469 192.828125 232.636719 192.734375 232.519531 192.734375 C 232.402344 192.734375 232.308594 192.828125 232.308594 192.945312 C 232.308594 193.0625 232.402344 193.15625 232.519531 193.15625 C 232.636719 193.15625 232.730469 193.0625 232.730469 192.945312 Z M 232.730469 192.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.011719 191.777344 C 234.011719 191.660156 233.917969 191.566406 233.800781 191.566406 C 233.683594 191.566406 233.589844 191.660156 233.589844 191.777344 C 233.589844 191.894531 233.683594 191.988281 233.800781 191.988281 C 233.917969 191.988281 234.011719 191.894531 234.011719 191.777344 Z M 234.011719 191.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.738281 195.613281 C 231.738281 195.496094 231.644531 195.402344 231.527344 195.402344 C 231.410156 195.402344 231.316406 195.496094 231.316406 195.613281 C 231.316406 195.730469 231.410156 195.824219 231.527344 195.824219 C 231.644531 195.824219 231.738281 195.730469 231.738281 195.613281 Z M 231.738281 195.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.542969 196.617188 C 230.542969 196.5 230.449219 196.40625 230.332031 196.40625 C 230.214844 196.40625 230.121094 196.5 230.121094 196.617188 C 230.121094 196.734375 230.214844 196.828125 230.332031 196.828125 C 230.449219 196.828125 230.542969 196.734375 230.542969 196.617188 Z M 230.542969 196.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.003906 199.875 C 231.003906 199.757812 230.910156 199.664062 230.792969 199.664062 C 230.675781 199.664062 230.582031 199.757812 230.582031 199.875 C 230.582031 199.992188 230.675781 200.085938 230.792969 200.085938 C 230.910156 200.085938 231.003906 199.992188 231.003906 199.875 Z M 231.003906 199.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 229.136719 203.09375 C 229.136719 202.976562 229.042969 202.882812 228.925781 202.882812 C 228.808594 202.882812 228.714844 202.976562 228.714844 203.09375 C 228.714844 203.210938 228.808594 203.304688 228.925781 203.304688 C 229.042969 203.304688 229.136719 203.210938 229.136719 203.09375 Z M 229.136719 203.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.28125 208.042969 C 230.28125 207.925781 230.1875 207.832031 230.070312 207.832031 C 229.953125 207.832031 229.859375 207.925781 229.859375 208.042969 C 229.859375 208.160156 229.953125 208.253906 230.070312 208.253906 C 230.1875 208.253906 230.28125 208.160156 230.28125 208.042969 Z M 230.28125 208.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.4375 212.957031 C 232.4375 212.839844 232.34375 212.746094 232.226562 212.746094 C 232.109375 212.746094 232.015625 212.839844 232.015625 212.957031 C 232.015625 213.074219 232.109375 213.167969 232.226562 213.167969 C 232.34375 213.167969 232.4375 213.074219 232.4375 212.957031 Z M 232.4375 212.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 232.703125 211.609375 C 232.703125 211.492188 232.609375 211.398438 232.492188 211.398438 C 232.375 211.398438 232.28125 211.492188 232.28125 211.609375 C 232.28125 211.726562 232.375 211.820312 232.492188 211.820312 C 232.609375 211.820312 232.703125 211.726562 232.703125 211.609375 Z M 232.703125 211.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.191406 214.292969 C 235.191406 214.175781 235.097656 214.082031 234.980469 214.082031 C 234.863281 214.082031 234.769531 214.175781 234.769531 214.292969 C 234.769531 214.410156 234.863281 214.503906 234.980469 214.503906 C 235.097656 214.503906 235.191406 214.410156 235.191406 214.292969 Z M 235.191406 214.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.699219 216.496094 C 239.699219 216.378906 239.605469 216.285156 239.488281 216.285156 C 239.371094 216.285156 239.277344 216.378906 239.277344 216.496094 C 239.277344 216.613281 239.371094 216.707031 239.488281 216.707031 C 239.605469 216.707031 239.699219 216.613281 239.699219 216.496094 Z M 239.699219 216.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.214844 216.101562 C 238.214844 215.984375 238.121094 215.890625 238.003906 215.890625 C 237.886719 215.890625 237.792969 215.984375 237.792969 216.101562 C 237.792969 216.21875 237.886719 216.3125 238.003906 216.3125 C 238.121094 216.3125 238.214844 216.21875 238.214844 216.101562 Z M 238.214844 216.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.203125 216.773438 C 240.203125 216.65625 240.109375 216.5625 239.992188 216.5625 C 239.875 216.5625 239.78125 216.65625 239.78125 216.773438 C 239.78125 216.890625 239.875 216.984375 239.992188 216.984375 C 240.109375 216.984375 240.203125 216.890625 240.203125 216.773438 Z M 240.203125 216.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.742188 214.710938 C 240.742188 214.59375 240.648438 214.5 240.53125 214.5 C 240.414062 214.5 240.320312 214.59375 240.320312 214.710938 C 240.320312 214.828125 240.414062 214.921875 240.53125 214.921875 C 240.648438 214.921875 240.742188 214.828125 240.742188 214.710938 Z M 240.742188 214.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.996094 216.183594 C 240.996094 216.066406 240.902344 215.972656 240.785156 215.972656 C 240.667969 215.972656 240.574219 216.066406 240.574219 216.183594 C 240.574219 216.300781 240.667969 216.394531 240.785156 216.394531 C 240.902344 216.394531 240.996094 216.300781 240.996094 216.183594 Z M 240.996094 216.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.929688 211.839844 C 238.929688 211.722656 238.835938 211.628906 238.71875 211.628906 C 238.601562 211.628906 238.507812 211.722656 238.507812 211.839844 C 238.507812 211.957031 238.601562 212.050781 238.71875 212.050781 C 238.835938 212.050781 238.929688 211.957031 238.929688 211.839844 Z M 238.929688 211.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.007812 212.609375 C 237.007812 212.492188 236.914062 212.398438 236.796875 212.398438 C 236.679688 212.398438 236.585938 212.492188 236.585938 212.609375 C 236.585938 212.726562 236.679688 212.820312 236.796875 212.820312 C 236.914062 212.820312 237.007812 212.726562 237.007812 212.609375 Z M 237.007812 212.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.007812 210.390625 C 239.007812 210.273438 238.914062 210.179688 238.796875 210.179688 C 238.679688 210.179688 238.585938 210.273438 238.585938 210.390625 C 238.585938 210.507812 238.679688 210.601562 238.796875 210.601562 C 238.914062 210.601562 239.007812 210.507812 239.007812 210.390625 Z M 239.007812 210.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.035156 208.269531 C 241.035156 208.152344 240.941406 208.058594 240.824219 208.058594 C 240.707031 208.058594 240.613281 208.152344 240.613281 208.269531 C 240.613281 208.386719 240.707031 208.480469 240.824219 208.480469 C 240.941406 208.480469 241.035156 208.386719 241.035156 208.269531 Z M 241.035156 208.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.21875 205.5625 C 243.21875 205.445312 243.125 205.351562 243.007812 205.351562 C 242.890625 205.351562 242.796875 205.445312 242.796875 205.5625 C 242.796875 205.679688 242.890625 205.773438 243.007812 205.773438 C 243.125 205.773438 243.21875 205.679688 243.21875 205.5625 Z M 243.21875 205.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.386719 207.96875 C 244.386719 207.851562 244.292969 207.757812 244.175781 207.757812 C 244.058594 207.757812 243.964844 207.851562 243.964844 207.96875 C 243.964844 208.085938 244.058594 208.179688 244.175781 208.179688 C 244.292969 208.179688 244.386719 208.085938 244.386719 207.96875 Z M 244.386719 207.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.675781 208.351562 C 245.675781 208.234375 245.582031 208.140625 245.464844 208.140625 C 245.347656 208.140625 245.253906 208.234375 245.253906 208.351562 C 245.253906 208.46875 245.347656 208.5625 245.464844 208.5625 C 245.582031 208.5625 245.675781 208.46875 245.675781 208.351562 Z M 245.675781 208.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.265625 208.578125 C 249.265625 208.460938 249.171875 208.367188 249.054688 208.367188 C 248.9375 208.367188 248.84375 208.460938 248.84375 208.578125 C 248.84375 208.695312 248.9375 208.789062 249.054688 208.789062 C 249.171875 208.789062 249.265625 208.695312 249.265625 208.578125 Z M 249.265625 208.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.898438 209.726562 C 250.898438 209.609375 250.804688 209.515625 250.6875 209.515625 C 250.570312 209.515625 250.476562 209.609375 250.476562 209.726562 C 250.476562 209.84375 250.570312 209.9375 250.6875 209.9375 C 250.804688 209.9375 250.898438 209.84375 250.898438 209.726562 Z M 250.898438 209.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.351562 212 C 249.351562 211.882812 249.257812 211.789062 249.140625 211.789062 C 249.023438 211.789062 248.929688 211.882812 248.929688 212 C 248.929688 212.117188 249.023438 212.210938 249.140625 212.210938 C 249.257812 212.210938 249.351562 212.117188 249.351562 212 Z M 249.351562 212 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.707031 213.976562 C 250.707031 213.859375 250.613281 213.765625 250.496094 213.765625 C 250.378906 213.765625 250.285156 213.859375 250.285156 213.976562 C 250.285156 214.09375 250.378906 214.1875 250.496094 214.1875 C 250.613281 214.1875 250.707031 214.09375 250.707031 213.976562 Z M 250.707031 213.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.238281 210.082031 C 250.238281 209.964844 250.144531 209.871094 250.027344 209.871094 C 249.910156 209.871094 249.816406 209.964844 249.816406 210.082031 C 249.816406 210.199219 249.910156 210.292969 250.027344 210.292969 C 250.144531 210.292969 250.238281 210.199219 250.238281 210.082031 Z M 250.238281 210.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.070312 208.359375 C 248.070312 208.242188 247.976562 208.148438 247.859375 208.148438 C 247.742188 208.148438 247.648438 208.242188 247.648438 208.359375 C 247.648438 208.476562 247.742188 208.570312 247.859375 208.570312 C 247.976562 208.570312 248.070312 208.476562 248.070312 208.359375 Z M 248.070312 208.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.957031 208.90625 C 250.957031 208.789062 250.863281 208.695312 250.746094 208.695312 C 250.628906 208.695312 250.535156 208.789062 250.535156 208.90625 C 250.535156 209.023438 250.628906 209.117188 250.746094 209.117188 C 250.863281 209.117188 250.957031 209.023438 250.957031 208.90625 Z M 250.957031 208.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.023438 208.703125 C 249.023438 208.585938 248.929688 208.492188 248.8125 208.492188 C 248.695312 208.492188 248.601562 208.585938 248.601562 208.703125 C 248.601562 208.820312 248.695312 208.914062 248.8125 208.914062 C 248.929688 208.914062 249.023438 208.820312 249.023438 208.703125 Z M 249.023438 208.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.007812 208.414062 C 250.007812 208.296875 249.914062 208.203125 249.796875 208.203125 C 249.679688 208.203125 249.585938 208.296875 249.585938 208.414062 C 249.585938 208.53125 249.679688 208.625 249.796875 208.625 C 249.914062 208.625 250.007812 208.53125 250.007812 208.414062 Z M 250.007812 208.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.644531 205.878906 C 250.644531 205.761719 250.550781 205.667969 250.433594 205.667969 C 250.316406 205.667969 250.222656 205.761719 250.222656 205.878906 C 250.222656 205.996094 250.316406 206.089844 250.433594 206.089844 C 250.550781 206.089844 250.644531 205.996094 250.644531 205.878906 Z M 250.644531 205.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.039062 205.292969 C 251.039062 205.175781 250.945312 205.082031 250.828125 205.082031 C 250.710938 205.082031 250.617188 205.175781 250.617188 205.292969 C 250.617188 205.410156 250.710938 205.503906 250.828125 205.503906 C 250.945312 205.503906 251.039062 205.410156 251.039062 205.292969 Z M 251.039062 205.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.363281 201.574219 C 252.363281 201.457031 252.269531 201.363281 252.152344 201.363281 C 252.035156 201.363281 251.941406 201.457031 251.941406 201.574219 C 251.941406 201.691406 252.035156 201.785156 252.152344 201.785156 C 252.269531 201.785156 252.363281 201.691406 252.363281 201.574219 Z M 252.363281 201.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.070312 203.09375 C 251.070312 202.976562 250.976562 202.882812 250.859375 202.882812 C 250.742188 202.882812 250.648438 202.976562 250.648438 203.09375 C 250.648438 203.210938 250.742188 203.304688 250.859375 203.304688 C 250.976562 203.304688 251.070312 203.210938 251.070312 203.09375 Z M 251.070312 203.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.472656 201.476562 C 246.472656 201.359375 246.378906 201.265625 246.261719 201.265625 C 246.144531 201.265625 246.050781 201.359375 246.050781 201.476562 C 246.050781 201.59375 246.144531 201.6875 246.261719 201.6875 C 246.378906 201.6875 246.472656 201.59375 246.472656 201.476562 Z M 246.472656 201.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.507812 206.164062 C 243.507812 206.046875 243.414062 205.953125 243.296875 205.953125 C 243.179688 205.953125 243.085938 206.046875 243.085938 206.164062 C 243.085938 206.28125 243.179688 206.375 243.296875 206.375 C 243.414062 206.375 243.507812 206.28125 243.507812 206.164062 Z M 243.507812 206.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.679688 207.695312 C 243.679688 207.578125 243.585938 207.484375 243.46875 207.484375 C 243.351562 207.484375 243.257812 207.578125 243.257812 207.695312 C 243.257812 207.8125 243.351562 207.90625 243.46875 207.90625 C 243.585938 207.90625 243.679688 207.8125 243.679688 207.695312 Z M 243.679688 207.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.367188 206.273438 C 245.367188 206.15625 245.273438 206.0625 245.15625 206.0625 C 245.039062 206.0625 244.945312 206.15625 244.945312 206.273438 C 244.945312 206.390625 245.039062 206.484375 245.15625 206.484375 C 245.273438 206.484375 245.367188 206.390625 245.367188 206.273438 Z M 245.367188 206.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.488281 205.554688 C 246.488281 205.4375 246.394531 205.34375 246.277344 205.34375 C 246.160156 205.34375 246.066406 205.4375 246.066406 205.554688 C 246.066406 205.671875 246.160156 205.765625 246.277344 205.765625 C 246.394531 205.765625 246.488281 205.671875 246.488281 205.554688 Z M 246.488281 205.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.515625 201.570312 C 246.515625 201.453125 246.421875 201.359375 246.304688 201.359375 C 246.1875 201.359375 246.09375 201.453125 246.09375 201.570312 C 246.09375 201.6875 246.1875 201.78125 246.304688 201.78125 C 246.421875 201.78125 246.515625 201.6875 246.515625 201.570312 Z M 246.515625 201.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.152344 201.742188 C 248.152344 201.625 248.058594 201.53125 247.941406 201.53125 C 247.824219 201.53125 247.730469 201.625 247.730469 201.742188 C 247.730469 201.859375 247.824219 201.953125 247.941406 201.953125 C 248.058594 201.953125 248.152344 201.859375 248.152344 201.742188 Z M 248.152344 201.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.054688 197.769531 C 250.054688 197.652344 249.960938 197.558594 249.84375 197.558594 C 249.726562 197.558594 249.632812 197.652344 249.632812 197.769531 C 249.632812 197.886719 249.726562 197.980469 249.84375 197.980469 C 249.960938 197.980469 250.054688 197.886719 250.054688 197.769531 Z M 250.054688 197.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.910156 197.910156 C 252.910156 197.792969 252.816406 197.699219 252.699219 197.699219 C 252.582031 197.699219 252.488281 197.792969 252.488281 197.910156 C 252.488281 198.027344 252.582031 198.121094 252.699219 198.121094 C 252.816406 198.121094 252.910156 198.027344 252.910156 197.910156 Z M 252.910156 197.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.980469 195.734375 C 249.980469 195.617188 249.886719 195.523438 249.769531 195.523438 C 249.652344 195.523438 249.558594 195.617188 249.558594 195.734375 C 249.558594 195.851562 249.652344 195.945312 249.769531 195.945312 C 249.886719 195.945312 249.980469 195.851562 249.980469 195.734375 Z M 249.980469 195.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.523438 195.863281 C 254.523438 195.746094 254.429688 195.652344 254.3125 195.652344 C 254.195312 195.652344 254.101562 195.746094 254.101562 195.863281 C 254.101562 195.980469 254.195312 196.074219 254.3125 196.074219 C 254.429688 196.074219 254.523438 195.980469 254.523438 195.863281 Z M 254.523438 195.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.492188 190.460938 C 257.492188 190.34375 257.398438 190.25 257.28125 190.25 C 257.164062 190.25 257.070312 190.34375 257.070312 190.460938 C 257.070312 190.578125 257.164062 190.671875 257.28125 190.671875 C 257.398438 190.671875 257.492188 190.578125 257.492188 190.460938 Z M 257.492188 190.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.550781 188.070312 C 254.550781 187.953125 254.457031 187.859375 254.339844 187.859375 C 254.222656 187.859375 254.128906 187.953125 254.128906 188.070312 C 254.128906 188.1875 254.222656 188.28125 254.339844 188.28125 C 254.457031 188.28125 254.550781 188.1875 254.550781 188.070312 Z M 254.550781 188.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.824219 190.414062 C 254.824219 190.296875 254.730469 190.203125 254.613281 190.203125 C 254.496094 190.203125 254.402344 190.296875 254.402344 190.414062 C 254.402344 190.53125 254.496094 190.625 254.613281 190.625 C 254.730469 190.625 254.824219 190.53125 254.824219 190.414062 Z M 254.824219 190.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.226562 190.71875 C 259.226562 190.601562 259.132812 190.507812 259.015625 190.507812 C 258.898438 190.507812 258.804688 190.601562 258.804688 190.71875 C 258.804688 190.835938 258.898438 190.929688 259.015625 190.929688 C 259.132812 190.929688 259.226562 190.835938 259.226562 190.71875 Z M 259.226562 190.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.457031 191.851562 C 260.457031 191.734375 260.363281 191.640625 260.246094 191.640625 C 260.128906 191.640625 260.035156 191.734375 260.035156 191.851562 C 260.035156 191.96875 260.128906 192.0625 260.246094 192.0625 C 260.363281 192.0625 260.457031 191.96875 260.457031 191.851562 Z M 260.457031 191.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.609375 191.921875 C 257.609375 191.804688 257.515625 191.710938 257.398438 191.710938 C 257.28125 191.710938 257.1875 191.804688 257.1875 191.921875 C 257.1875 192.039062 257.28125 192.132812 257.398438 192.132812 C 257.515625 192.132812 257.609375 192.039062 257.609375 191.921875 Z M 257.609375 191.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.410156 191.578125 C 259.410156 191.460938 259.316406 191.367188 259.199219 191.367188 C 259.082031 191.367188 258.988281 191.460938 258.988281 191.578125 C 258.988281 191.695312 259.082031 191.789062 259.199219 191.789062 C 259.316406 191.789062 259.410156 191.695312 259.410156 191.578125 Z M 259.410156 191.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.265625 190.46875 C 261.265625 190.351562 261.171875 190.257812 261.054688 190.257812 C 260.9375 190.257812 260.84375 190.351562 260.84375 190.46875 C 260.84375 190.585938 260.9375 190.679688 261.054688 190.679688 C 261.171875 190.679688 261.265625 190.585938 261.265625 190.46875 Z M 261.265625 190.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.136719 191.222656 C 258.136719 191.105469 258.042969 191.011719 257.925781 191.011719 C 257.808594 191.011719 257.714844 191.105469 257.714844 191.222656 C 257.714844 191.339844 257.808594 191.433594 257.925781 191.433594 C 258.042969 191.433594 258.136719 191.339844 258.136719 191.222656 Z M 258.136719 191.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.917969 191.078125 C 257.917969 190.960938 257.824219 190.867188 257.707031 190.867188 C 257.589844 190.867188 257.496094 190.960938 257.496094 191.078125 C 257.496094 191.195312 257.589844 191.289062 257.707031 191.289062 C 257.824219 191.289062 257.917969 191.195312 257.917969 191.078125 Z M 257.917969 191.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.722656 189.75 C 256.722656 189.632812 256.628906 189.539062 256.511719 189.539062 C 256.394531 189.539062 256.300781 189.632812 256.300781 189.75 C 256.300781 189.867188 256.394531 189.960938 256.511719 189.960938 C 256.628906 189.960938 256.722656 189.867188 256.722656 189.75 Z M 256.722656 189.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.496094 192.777344 C 259.496094 192.660156 259.402344 192.566406 259.285156 192.566406 C 259.167969 192.566406 259.074219 192.660156 259.074219 192.777344 C 259.074219 192.894531 259.167969 192.988281 259.285156 192.988281 C 259.402344 192.988281 259.496094 192.894531 259.496094 192.777344 Z M 259.496094 192.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.285156 192.289062 C 262.285156 192.171875 262.191406 192.078125 262.074219 192.078125 C 261.957031 192.078125 261.863281 192.171875 261.863281 192.289062 C 261.863281 192.40625 261.957031 192.5 262.074219 192.5 C 262.191406 192.5 262.285156 192.40625 262.285156 192.289062 Z M 262.285156 192.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.777344 191.753906 C 261.777344 191.636719 261.683594 191.542969 261.566406 191.542969 C 261.449219 191.542969 261.355469 191.636719 261.355469 191.753906 C 261.355469 191.871094 261.449219 191.964844 261.566406 191.964844 C 261.683594 191.964844 261.777344 191.871094 261.777344 191.753906 Z M 261.777344 191.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.9375 194.5 C 259.9375 194.382812 259.84375 194.289062 259.726562 194.289062 C 259.609375 194.289062 259.515625 194.382812 259.515625 194.5 C 259.515625 194.617188 259.609375 194.710938 259.726562 194.710938 C 259.84375 194.710938 259.9375 194.617188 259.9375 194.5 Z M 259.9375 194.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.160156 197.28125 C 257.160156 197.164062 257.066406 197.070312 256.949219 197.070312 C 256.832031 197.070312 256.738281 197.164062 256.738281 197.28125 C 256.738281 197.398438 256.832031 197.492188 256.949219 197.492188 C 257.066406 197.492188 257.160156 197.398438 257.160156 197.28125 Z M 257.160156 197.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.019531 196.175781 C 256.019531 196.058594 255.925781 195.964844 255.808594 195.964844 C 255.691406 195.964844 255.597656 196.058594 255.597656 196.175781 C 255.597656 196.292969 255.691406 196.386719 255.808594 196.386719 C 255.925781 196.386719 256.019531 196.292969 256.019531 196.175781 Z M 256.019531 196.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.335938 196.375 C 255.335938 196.257812 255.242188 196.164062 255.125 196.164062 C 255.007812 196.164062 254.914062 196.257812 254.914062 196.375 C 254.914062 196.492188 255.007812 196.585938 255.125 196.585938 C 255.242188 196.585938 255.335938 196.492188 255.335938 196.375 Z M 255.335938 196.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.394531 196.523438 C 256.394531 196.40625 256.300781 196.3125 256.183594 196.3125 C 256.066406 196.3125 255.972656 196.40625 255.972656 196.523438 C 255.972656 196.640625 256.066406 196.734375 256.183594 196.734375 C 256.300781 196.734375 256.394531 196.640625 256.394531 196.523438 Z M 256.394531 196.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.925781 196.578125 C 257.925781 196.460938 257.832031 196.367188 257.714844 196.367188 C 257.597656 196.367188 257.503906 196.460938 257.503906 196.578125 C 257.503906 196.695312 257.597656 196.789062 257.714844 196.789062 C 257.832031 196.789062 257.925781 196.695312 257.925781 196.578125 Z M 257.925781 196.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.703125 197.039062 C 257.703125 196.921875 257.609375 196.828125 257.492188 196.828125 C 257.375 196.828125 257.28125 196.921875 257.28125 197.039062 C 257.28125 197.15625 257.375 197.25 257.492188 197.25 C 257.609375 197.25 257.703125 197.15625 257.703125 197.039062 Z M 257.703125 197.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255 196.652344 C 255 196.535156 254.90625 196.441406 254.789062 196.441406 C 254.671875 196.441406 254.578125 196.535156 254.578125 196.652344 C 254.578125 196.769531 254.671875 196.863281 254.789062 196.863281 C 254.90625 196.863281 255 196.769531 255 196.652344 Z M 255 196.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.019531 197.171875 C 256.019531 197.054688 255.925781 196.960938 255.808594 196.960938 C 255.691406 196.960938 255.597656 197.054688 255.597656 197.171875 C 255.597656 197.289062 255.691406 197.382812 255.808594 197.382812 C 255.925781 197.382812 256.019531 197.289062 256.019531 197.171875 Z M 256.019531 197.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.246094 199.40625 C 255.246094 199.289062 255.152344 199.195312 255.035156 199.195312 C 254.917969 199.195312 254.824219 199.289062 254.824219 199.40625 C 254.824219 199.523438 254.917969 199.617188 255.035156 199.617188 C 255.152344 199.617188 255.246094 199.523438 255.246094 199.40625 Z M 255.246094 199.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.765625 198.96875 C 254.765625 198.851562 254.671875 198.757812 254.554688 198.757812 C 254.4375 198.757812 254.34375 198.851562 254.34375 198.96875 C 254.34375 199.085938 254.4375 199.179688 254.554688 199.179688 C 254.671875 199.179688 254.765625 199.085938 254.765625 198.96875 Z M 254.765625 198.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.941406 199.945312 C 259.941406 199.828125 259.847656 199.734375 259.730469 199.734375 C 259.613281 199.734375 259.519531 199.828125 259.519531 199.945312 C 259.519531 200.0625 259.613281 200.15625 259.730469 200.15625 C 259.847656 200.15625 259.941406 200.0625 259.941406 199.945312 Z M 259.941406 199.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.894531 196.71875 C 259.894531 196.601562 259.800781 196.507812 259.683594 196.507812 C 259.566406 196.507812 259.472656 196.601562 259.472656 196.71875 C 259.472656 196.835938 259.566406 196.929688 259.683594 196.929688 C 259.800781 196.929688 259.894531 196.835938 259.894531 196.71875 Z M 259.894531 196.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.441406 198.871094 C 260.441406 198.753906 260.347656 198.660156 260.230469 198.660156 C 260.113281 198.660156 260.019531 198.753906 260.019531 198.871094 C 260.019531 198.988281 260.113281 199.082031 260.230469 199.082031 C 260.347656 199.082031 260.441406 198.988281 260.441406 198.871094 Z M 260.441406 198.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.691406 197.019531 C 258.691406 196.902344 258.597656 196.808594 258.480469 196.808594 C 258.363281 196.808594 258.269531 196.902344 258.269531 197.019531 C 258.269531 197.136719 258.363281 197.230469 258.480469 197.230469 C 258.597656 197.230469 258.691406 197.136719 258.691406 197.019531 Z M 258.691406 197.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.359375 195.152344 C 256.359375 195.035156 256.265625 194.941406 256.148438 194.941406 C 256.03125 194.941406 255.9375 195.035156 255.9375 195.152344 C 255.9375 195.269531 256.03125 195.363281 256.148438 195.363281 C 256.265625 195.363281 256.359375 195.269531 256.359375 195.152344 Z M 256.359375 195.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.988281 193.964844 C 254.988281 193.847656 254.894531 193.753906 254.777344 193.753906 C 254.660156 193.753906 254.566406 193.847656 254.566406 193.964844 C 254.566406 194.082031 254.660156 194.175781 254.777344 194.175781 C 254.894531 194.175781 254.988281 194.082031 254.988281 193.964844 Z M 254.988281 193.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.269531 193.347656 C 256.269531 193.230469 256.175781 193.136719 256.058594 193.136719 C 255.941406 193.136719 255.847656 193.230469 255.847656 193.347656 C 255.847656 193.464844 255.941406 193.558594 256.058594 193.558594 C 256.175781 193.558594 256.269531 193.464844 256.269531 193.347656 Z M 256.269531 193.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.722656 196.980469 C 257.722656 196.863281 257.628906 196.769531 257.511719 196.769531 C 257.394531 196.769531 257.300781 196.863281 257.300781 196.980469 C 257.300781 197.097656 257.394531 197.191406 257.511719 197.191406 C 257.628906 197.191406 257.722656 197.097656 257.722656 196.980469 Z M 257.722656 196.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.332031 198.195312 C 256.332031 198.078125 256.238281 197.984375 256.121094 197.984375 C 256.003906 197.984375 255.910156 198.078125 255.910156 198.195312 C 255.910156 198.3125 256.003906 198.40625 256.121094 198.40625 C 256.238281 198.40625 256.332031 198.3125 256.332031 198.195312 Z M 256.332031 198.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.507812 200.164062 C 258.507812 200.046875 258.414062 199.953125 258.296875 199.953125 C 258.179688 199.953125 258.085938 200.046875 258.085938 200.164062 C 258.085938 200.28125 258.179688 200.375 258.296875 200.375 C 258.414062 200.375 258.507812 200.28125 258.507812 200.164062 Z M 258.507812 200.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.910156 198.710938 C 257.910156 198.59375 257.816406 198.5 257.699219 198.5 C 257.582031 198.5 257.488281 198.59375 257.488281 198.710938 C 257.488281 198.828125 257.582031 198.921875 257.699219 198.921875 C 257.816406 198.921875 257.910156 198.828125 257.910156 198.710938 Z M 257.910156 198.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.753906 196.765625 C 259.753906 196.648438 259.660156 196.554688 259.542969 196.554688 C 259.425781 196.554688 259.332031 196.648438 259.332031 196.765625 C 259.332031 196.882812 259.425781 196.976562 259.542969 196.976562 C 259.660156 196.976562 259.753906 196.882812 259.753906 196.765625 Z M 259.753906 196.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.164062 196.679688 C 262.164062 196.5625 262.070312 196.46875 261.953125 196.46875 C 261.835938 196.46875 261.742188 196.5625 261.742188 196.679688 C 261.742188 196.796875 261.835938 196.890625 261.953125 196.890625 C 262.070312 196.890625 262.164062 196.796875 262.164062 196.679688 Z M 262.164062 196.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.070312 193.074219 C 261.070312 192.957031 260.976562 192.863281 260.859375 192.863281 C 260.742188 192.863281 260.648438 192.957031 260.648438 193.074219 C 260.648438 193.191406 260.742188 193.285156 260.859375 193.285156 C 260.976562 193.285156 261.070312 193.191406 261.070312 193.074219 Z M 261.070312 193.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.75 195.578125 C 259.75 195.460938 259.65625 195.367188 259.539062 195.367188 C 259.421875 195.367188 259.328125 195.460938 259.328125 195.578125 C 259.328125 195.695312 259.421875 195.789062 259.539062 195.789062 C 259.65625 195.789062 259.75 195.695312 259.75 195.578125 Z M 259.75 195.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.480469 196.777344 C 258.480469 196.660156 258.386719 196.566406 258.269531 196.566406 C 258.152344 196.566406 258.058594 196.660156 258.058594 196.777344 C 258.058594 196.894531 258.152344 196.988281 258.269531 196.988281 C 258.386719 196.988281 258.480469 196.894531 258.480469 196.777344 Z M 258.480469 196.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.203125 196.875 C 260.203125 196.757812 260.109375 196.664062 259.992188 196.664062 C 259.875 196.664062 259.78125 196.757812 259.78125 196.875 C 259.78125 196.992188 259.875 197.085938 259.992188 197.085938 C 260.109375 197.085938 260.203125 196.992188 260.203125 196.875 Z M 260.203125 196.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.355469 197.128906 C 256.355469 197.011719 256.261719 196.917969 256.144531 196.917969 C 256.027344 196.917969 255.933594 197.011719 255.933594 197.128906 C 255.933594 197.246094 256.027344 197.339844 256.144531 197.339844 C 256.261719 197.339844 256.355469 197.246094 256.355469 197.128906 Z M 256.355469 197.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.84375 198.566406 C 255.84375 198.449219 255.75 198.355469 255.632812 198.355469 C 255.515625 198.355469 255.421875 198.449219 255.421875 198.566406 C 255.421875 198.683594 255.515625 198.777344 255.632812 198.777344 C 255.75 198.777344 255.84375 198.683594 255.84375 198.566406 Z M 255.84375 198.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.0625 194.601562 C 257.0625 194.484375 256.96875 194.390625 256.851562 194.390625 C 256.734375 194.390625 256.640625 194.484375 256.640625 194.601562 C 256.640625 194.71875 256.734375 194.8125 256.851562 194.8125 C 256.96875 194.8125 257.0625 194.71875 257.0625 194.601562 Z M 257.0625 194.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.949219 194.742188 C 259.949219 194.625 259.855469 194.53125 259.738281 194.53125 C 259.621094 194.53125 259.527344 194.625 259.527344 194.742188 C 259.527344 194.859375 259.621094 194.953125 259.738281 194.953125 C 259.855469 194.953125 259.949219 194.859375 259.949219 194.742188 Z M 259.949219 194.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.78125 196.128906 C 260.78125 196.011719 260.6875 195.917969 260.570312 195.917969 C 260.453125 195.917969 260.359375 196.011719 260.359375 196.128906 C 260.359375 196.246094 260.453125 196.339844 260.570312 196.339844 C 260.6875 196.339844 260.78125 196.246094 260.78125 196.128906 Z M 260.78125 196.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.308594 199.207031 C 256.308594 199.089844 256.214844 198.996094 256.097656 198.996094 C 255.980469 198.996094 255.886719 199.089844 255.886719 199.207031 C 255.886719 199.324219 255.980469 199.417969 256.097656 199.417969 C 256.214844 199.417969 256.308594 199.324219 256.308594 199.207031 Z M 256.308594 199.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.164062 200.421875 C 254.164062 200.304688 254.070312 200.210938 253.953125 200.210938 C 253.835938 200.210938 253.742188 200.304688 253.742188 200.421875 C 253.742188 200.539062 253.835938 200.632812 253.953125 200.632812 C 254.070312 200.632812 254.164062 200.539062 254.164062 200.421875 Z M 254.164062 200.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.121094 201.265625 C 254.121094 201.148438 254.027344 201.054688 253.910156 201.054688 C 253.792969 201.054688 253.699219 201.148438 253.699219 201.265625 C 253.699219 201.382812 253.792969 201.476562 253.910156 201.476562 C 254.027344 201.476562 254.121094 201.382812 254.121094 201.265625 Z M 254.121094 201.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.207031 200.523438 C 256.207031 200.40625 256.113281 200.3125 255.996094 200.3125 C 255.878906 200.3125 255.785156 200.40625 255.785156 200.523438 C 255.785156 200.640625 255.878906 200.734375 255.996094 200.734375 C 256.113281 200.734375 256.207031 200.640625 256.207031 200.523438 Z M 256.207031 200.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.515625 200.226562 C 257.515625 200.109375 257.421875 200.015625 257.304688 200.015625 C 257.1875 200.015625 257.09375 200.109375 257.09375 200.226562 C 257.09375 200.34375 257.1875 200.4375 257.304688 200.4375 C 257.421875 200.4375 257.515625 200.34375 257.515625 200.226562 Z M 257.515625 200.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.816406 200.023438 C 256.816406 199.90625 256.722656 199.8125 256.605469 199.8125 C 256.488281 199.8125 256.394531 199.90625 256.394531 200.023438 C 256.394531 200.140625 256.488281 200.234375 256.605469 200.234375 C 256.722656 200.234375 256.816406 200.140625 256.816406 200.023438 Z M 256.816406 200.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.5 199.828125 C 256.5 199.710938 256.40625 199.617188 256.289062 199.617188 C 256.171875 199.617188 256.078125 199.710938 256.078125 199.828125 C 256.078125 199.945312 256.171875 200.039062 256.289062 200.039062 C 256.40625 200.039062 256.5 199.945312 256.5 199.828125 Z M 256.5 199.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.921875 201.730469 C 255.921875 201.613281 255.828125 201.519531 255.710938 201.519531 C 255.59375 201.519531 255.5 201.613281 255.5 201.730469 C 255.5 201.847656 255.59375 201.941406 255.710938 201.941406 C 255.828125 201.941406 255.921875 201.847656 255.921875 201.730469 Z M 255.921875 201.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.9375 204.035156 C 253.9375 203.917969 253.84375 203.824219 253.726562 203.824219 C 253.609375 203.824219 253.515625 203.917969 253.515625 204.035156 C 253.515625 204.152344 253.609375 204.246094 253.726562 204.246094 C 253.84375 204.246094 253.9375 204.152344 253.9375 204.035156 Z M 253.9375 204.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.183594 204.09375 C 258.183594 203.976562 258.089844 203.882812 257.972656 203.882812 C 257.855469 203.882812 257.761719 203.976562 257.761719 204.09375 C 257.761719 204.210938 257.855469 204.304688 257.972656 204.304688 C 258.089844 204.304688 258.183594 204.210938 258.183594 204.09375 Z M 258.183594 204.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.914062 207.246094 C 258.914062 207.128906 258.820312 207.035156 258.703125 207.035156 C 258.585938 207.035156 258.492188 207.128906 258.492188 207.246094 C 258.492188 207.363281 258.585938 207.457031 258.703125 207.457031 C 258.820312 207.457031 258.914062 207.363281 258.914062 207.246094 Z M 258.914062 207.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.878906 208.410156 C 258.878906 208.292969 258.785156 208.199219 258.667969 208.199219 C 258.550781 208.199219 258.457031 208.292969 258.457031 208.410156 C 258.457031 208.527344 258.550781 208.621094 258.667969 208.621094 C 258.785156 208.621094 258.878906 208.527344 258.878906 208.410156 Z M 258.878906 208.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.800781 207.84375 C 254.800781 207.726562 254.707031 207.632812 254.589844 207.632812 C 254.472656 207.632812 254.378906 207.726562 254.378906 207.84375 C 254.378906 207.960938 254.472656 208.054688 254.589844 208.054688 C 254.707031 208.054688 254.800781 207.960938 254.800781 207.84375 Z M 254.800781 207.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.414062 208.101562 C 257.414062 207.984375 257.320312 207.890625 257.203125 207.890625 C 257.085938 207.890625 256.992188 207.984375 256.992188 208.101562 C 256.992188 208.21875 257.085938 208.3125 257.203125 208.3125 C 257.320312 208.3125 257.414062 208.21875 257.414062 208.101562 Z M 257.414062 208.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.097656 207.667969 C 257.097656 207.550781 257.003906 207.457031 256.886719 207.457031 C 256.769531 207.457031 256.675781 207.550781 256.675781 207.667969 C 256.675781 207.785156 256.769531 207.878906 256.886719 207.878906 C 257.003906 207.878906 257.097656 207.785156 257.097656 207.667969 Z M 257.097656 207.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.789062 204.910156 C 261.789062 204.792969 261.695312 204.699219 261.578125 204.699219 C 261.460938 204.699219 261.367188 204.792969 261.367188 204.910156 C 261.367188 205.027344 261.460938 205.121094 261.578125 205.121094 C 261.695312 205.121094 261.789062 205.027344 261.789062 204.910156 Z M 261.789062 204.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.097656 209.109375 C 260.097656 208.992188 260.003906 208.898438 259.886719 208.898438 C 259.769531 208.898438 259.675781 208.992188 259.675781 209.109375 C 259.675781 209.226562 259.769531 209.320312 259.886719 209.320312 C 260.003906 209.320312 260.097656 209.226562 260.097656 209.109375 Z M 260.097656 209.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.296875 206.855469 C 259.296875 206.738281 259.203125 206.644531 259.085938 206.644531 C 258.96875 206.644531 258.875 206.738281 258.875 206.855469 C 258.875 206.972656 258.96875 207.066406 259.085938 207.066406 C 259.203125 207.066406 259.296875 206.972656 259.296875 206.855469 Z M 259.296875 206.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.269531 208.234375 C 259.269531 208.117188 259.175781 208.023438 259.058594 208.023438 C 258.941406 208.023438 258.847656 208.117188 258.847656 208.234375 C 258.847656 208.351562 258.941406 208.445312 259.058594 208.445312 C 259.175781 208.445312 259.269531 208.351562 259.269531 208.234375 Z M 259.269531 208.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.539062 208.503906 C 260.539062 208.386719 260.445312 208.292969 260.328125 208.292969 C 260.210938 208.292969 260.117188 208.386719 260.117188 208.503906 C 260.117188 208.621094 260.210938 208.714844 260.328125 208.714844 C 260.445312 208.714844 260.539062 208.621094 260.539062 208.503906 Z M 260.539062 208.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.125 209.9375 C 257.125 209.820312 257.03125 209.726562 256.914062 209.726562 C 256.796875 209.726562 256.703125 209.820312 256.703125 209.9375 C 256.703125 210.054688 256.796875 210.148438 256.914062 210.148438 C 257.03125 210.148438 257.125 210.054688 257.125 209.9375 Z M 257.125 209.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.738281 208.371094 C 257.738281 208.253906 257.644531 208.160156 257.527344 208.160156 C 257.410156 208.160156 257.316406 208.253906 257.316406 208.371094 C 257.316406 208.488281 257.410156 208.582031 257.527344 208.582031 C 257.644531 208.582031 257.738281 208.488281 257.738281 208.371094 Z M 257.738281 208.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.769531 204.695312 C 256.769531 204.578125 256.675781 204.484375 256.558594 204.484375 C 256.441406 204.484375 256.347656 204.578125 256.347656 204.695312 C 256.347656 204.8125 256.441406 204.90625 256.558594 204.90625 C 256.675781 204.90625 256.769531 204.8125 256.769531 204.695312 Z M 256.769531 204.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.039062 203.234375 C 253.039062 203.117188 252.945312 203.023438 252.828125 203.023438 C 252.710938 203.023438 252.617188 203.117188 252.617188 203.234375 C 252.617188 203.351562 252.710938 203.445312 252.828125 203.445312 C 252.945312 203.445312 253.039062 203.351562 253.039062 203.234375 Z M 253.039062 203.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.136719 204.949219 C 255.136719 204.832031 255.042969 204.738281 254.925781 204.738281 C 254.808594 204.738281 254.714844 204.832031 254.714844 204.949219 C 254.714844 205.066406 254.808594 205.160156 254.925781 205.160156 C 255.042969 205.160156 255.136719 205.066406 255.136719 204.949219 Z M 255.136719 204.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.722656 204.078125 C 256.722656 203.960938 256.628906 203.867188 256.511719 203.867188 C 256.394531 203.867188 256.300781 203.960938 256.300781 204.078125 C 256.300781 204.195312 256.394531 204.289062 256.511719 204.289062 C 256.628906 204.289062 256.722656 204.195312 256.722656 204.078125 Z M 256.722656 204.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.425781 203.71875 C 257.425781 203.601562 257.332031 203.507812 257.214844 203.507812 C 257.097656 203.507812 257.003906 203.601562 257.003906 203.71875 C 257.003906 203.835938 257.097656 203.929688 257.214844 203.929688 C 257.332031 203.929688 257.425781 203.835938 257.425781 203.71875 Z M 257.425781 203.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.542969 204.125 C 260.542969 204.007812 260.449219 203.914062 260.332031 203.914062 C 260.214844 203.914062 260.121094 204.007812 260.121094 204.125 C 260.121094 204.242188 260.214844 204.335938 260.332031 204.335938 C 260.449219 204.335938 260.542969 204.242188 260.542969 204.125 Z M 260.542969 204.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.324219 202.09375 C 261.324219 201.976562 261.230469 201.882812 261.113281 201.882812 C 260.996094 201.882812 260.902344 201.976562 260.902344 202.09375 C 260.902344 202.210938 260.996094 202.304688 261.113281 202.304688 C 261.230469 202.304688 261.324219 202.210938 261.324219 202.09375 Z M 261.324219 202.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.144531 203.144531 C 261.144531 203.027344 261.050781 202.933594 260.933594 202.933594 C 260.816406 202.933594 260.722656 203.027344 260.722656 203.144531 C 260.722656 203.261719 260.816406 203.355469 260.933594 203.355469 C 261.050781 203.355469 261.144531 203.261719 261.144531 203.144531 Z M 261.144531 203.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.722656 206.460938 C 263.722656 206.34375 263.628906 206.25 263.511719 206.25 C 263.394531 206.25 263.300781 206.34375 263.300781 206.460938 C 263.300781 206.578125 263.394531 206.671875 263.511719 206.671875 C 263.628906 206.671875 263.722656 206.578125 263.722656 206.460938 Z M 263.722656 206.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.832031 209.550781 C 264.832031 209.433594 264.738281 209.339844 264.621094 209.339844 C 264.503906 209.339844 264.410156 209.433594 264.410156 209.550781 C 264.410156 209.667969 264.503906 209.761719 264.621094 209.761719 C 264.738281 209.761719 264.832031 209.667969 264.832031 209.550781 Z M 264.832031 209.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.851562 204.140625 C 263.851562 204.023438 263.757812 203.929688 263.640625 203.929688 C 263.523438 203.929688 263.429688 204.023438 263.429688 204.140625 C 263.429688 204.257812 263.523438 204.351562 263.640625 204.351562 C 263.757812 204.351562 263.851562 204.257812 263.851562 204.140625 Z M 263.851562 204.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.851562 203.179688 C 262.851562 203.0625 262.757812 202.96875 262.640625 202.96875 C 262.523438 202.96875 262.429688 203.0625 262.429688 203.179688 C 262.429688 203.296875 262.523438 203.390625 262.640625 203.390625 C 262.757812 203.390625 262.851562 203.296875 262.851562 203.179688 Z M 262.851562 203.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.640625 200.855469 C 264.640625 200.738281 264.546875 200.644531 264.429688 200.644531 C 264.3125 200.644531 264.21875 200.738281 264.21875 200.855469 C 264.21875 200.972656 264.3125 201.066406 264.429688 201.066406 C 264.546875 201.066406 264.640625 200.972656 264.640625 200.855469 Z M 264.640625 200.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.074219 204.847656 C 265.074219 204.730469 264.980469 204.636719 264.863281 204.636719 C 264.746094 204.636719 264.652344 204.730469 264.652344 204.847656 C 264.652344 204.964844 264.746094 205.058594 264.863281 205.058594 C 264.980469 205.058594 265.074219 204.964844 265.074219 204.847656 Z M 265.074219 204.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.234375 200.035156 C 267.234375 199.917969 267.140625 199.824219 267.023438 199.824219 C 266.90625 199.824219 266.8125 199.917969 266.8125 200.035156 C 266.8125 200.152344 266.90625 200.246094 267.023438 200.246094 C 267.140625 200.246094 267.234375 200.152344 267.234375 200.035156 Z M 267.234375 200.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.140625 197.789062 C 268.140625 197.671875 268.046875 197.578125 267.929688 197.578125 C 267.8125 197.578125 267.71875 197.671875 267.71875 197.789062 C 267.71875 197.90625 267.8125 198 267.929688 198 C 268.046875 198 268.140625 197.90625 268.140625 197.789062 Z M 268.140625 197.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.882812 198.9375 C 268.882812 198.820312 268.789062 198.726562 268.671875 198.726562 C 268.554688 198.726562 268.460938 198.820312 268.460938 198.9375 C 268.460938 199.054688 268.554688 199.148438 268.671875 199.148438 C 268.789062 199.148438 268.882812 199.054688 268.882812 198.9375 Z M 268.882812 198.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.433594 201.410156 C 269.433594 201.292969 269.339844 201.199219 269.222656 201.199219 C 269.105469 201.199219 269.011719 201.292969 269.011719 201.410156 C 269.011719 201.527344 269.105469 201.621094 269.222656 201.621094 C 269.339844 201.621094 269.433594 201.527344 269.433594 201.410156 Z M 269.433594 201.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.378906 202.058594 C 269.378906 201.941406 269.285156 201.847656 269.167969 201.847656 C 269.050781 201.847656 268.957031 201.941406 268.957031 202.058594 C 268.957031 202.175781 269.050781 202.269531 269.167969 202.269531 C 269.285156 202.269531 269.378906 202.175781 269.378906 202.058594 Z M 269.378906 202.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.78125 202.535156 C 268.78125 202.417969 268.6875 202.324219 268.570312 202.324219 C 268.453125 202.324219 268.359375 202.417969 268.359375 202.535156 C 268.359375 202.652344 268.453125 202.746094 268.570312 202.746094 C 268.6875 202.746094 268.78125 202.652344 268.78125 202.535156 Z M 268.78125 202.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.800781 202.628906 C 268.800781 202.511719 268.707031 202.417969 268.589844 202.417969 C 268.472656 202.417969 268.378906 202.511719 268.378906 202.628906 C 268.378906 202.746094 268.472656 202.839844 268.589844 202.839844 C 268.707031 202.839844 268.800781 202.746094 268.800781 202.628906 Z M 268.800781 202.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.121094 202.691406 C 267.121094 202.574219 267.027344 202.480469 266.910156 202.480469 C 266.792969 202.480469 266.699219 202.574219 266.699219 202.691406 C 266.699219 202.808594 266.792969 202.902344 266.910156 202.902344 C 267.027344 202.902344 267.121094 202.808594 267.121094 202.691406 Z M 267.121094 202.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.664062 204.875 C 266.664062 204.757812 266.570312 204.664062 266.453125 204.664062 C 266.335938 204.664062 266.242188 204.757812 266.242188 204.875 C 266.242188 204.992188 266.335938 205.085938 266.453125 205.085938 C 266.570312 205.085938 266.664062 204.992188 266.664062 204.875 Z M 266.664062 204.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.742188 200.59375 C 266.742188 200.476562 266.648438 200.382812 266.53125 200.382812 C 266.414062 200.382812 266.320312 200.476562 266.320312 200.59375 C 266.320312 200.710938 266.414062 200.804688 266.53125 200.804688 C 266.648438 200.804688 266.742188 200.710938 266.742188 200.59375 Z M 266.742188 200.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.90625 200.449219 C 268.90625 200.332031 268.8125 200.238281 268.695312 200.238281 C 268.578125 200.238281 268.484375 200.332031 268.484375 200.449219 C 268.484375 200.566406 268.578125 200.660156 268.695312 200.660156 C 268.8125 200.660156 268.90625 200.566406 268.90625 200.449219 Z M 268.90625 200.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.464844 199.894531 C 267.464844 199.777344 267.371094 199.683594 267.253906 199.683594 C 267.136719 199.683594 267.042969 199.777344 267.042969 199.894531 C 267.042969 200.011719 267.136719 200.105469 267.253906 200.105469 C 267.371094 200.105469 267.464844 200.011719 267.464844 199.894531 Z M 267.464844 199.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.222656 198.570312 C 268.222656 198.453125 268.128906 198.359375 268.011719 198.359375 C 267.894531 198.359375 267.800781 198.453125 267.800781 198.570312 C 267.800781 198.6875 267.894531 198.78125 268.011719 198.78125 C 268.128906 198.78125 268.222656 198.6875 268.222656 198.570312 Z M 268.222656 198.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.75 195.9375 C 270.75 195.820312 270.65625 195.726562 270.539062 195.726562 C 270.421875 195.726562 270.328125 195.820312 270.328125 195.9375 C 270.328125 196.054688 270.421875 196.148438 270.539062 196.148438 C 270.65625 196.148438 270.75 196.054688 270.75 195.9375 Z M 270.75 195.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.464844 197.367188 C 270.464844 197.25 270.371094 197.15625 270.253906 197.15625 C 270.136719 197.15625 270.042969 197.25 270.042969 197.367188 C 270.042969 197.484375 270.136719 197.578125 270.253906 197.578125 C 270.371094 197.578125 270.464844 197.484375 270.464844 197.367188 Z M 270.464844 197.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.714844 195.410156 C 272.714844 195.292969 272.621094 195.199219 272.503906 195.199219 C 272.386719 195.199219 272.292969 195.292969 272.292969 195.410156 C 272.292969 195.527344 272.386719 195.621094 272.503906 195.621094 C 272.621094 195.621094 272.714844 195.527344 272.714844 195.410156 Z M 272.714844 195.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.339844 196.839844 C 271.339844 196.722656 271.246094 196.628906 271.128906 196.628906 C 271.011719 196.628906 270.917969 196.722656 270.917969 196.839844 C 270.917969 196.957031 271.011719 197.050781 271.128906 197.050781 C 271.246094 197.050781 271.339844 196.957031 271.339844 196.839844 Z M 271.339844 196.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.523438 199.828125 C 267.523438 199.710938 267.429688 199.617188 267.3125 199.617188 C 267.195312 199.617188 267.101562 199.710938 267.101562 199.828125 C 267.101562 199.945312 267.195312 200.039062 267.3125 200.039062 C 267.429688 200.039062 267.523438 199.945312 267.523438 199.828125 Z M 267.523438 199.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.894531 200.789062 C 267.894531 200.671875 267.800781 200.578125 267.683594 200.578125 C 267.566406 200.578125 267.472656 200.671875 267.472656 200.789062 C 267.472656 200.90625 267.566406 201 267.683594 201 C 267.800781 201 267.894531 200.90625 267.894531 200.789062 Z M 267.894531 200.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.191406 200.445312 C 268.191406 200.328125 268.097656 200.234375 267.980469 200.234375 C 267.863281 200.234375 267.769531 200.328125 267.769531 200.445312 C 267.769531 200.5625 267.863281 200.65625 267.980469 200.65625 C 268.097656 200.65625 268.191406 200.5625 268.191406 200.445312 Z M 268.191406 200.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.167969 200.734375 C 267.167969 200.617188 267.074219 200.523438 266.957031 200.523438 C 266.839844 200.523438 266.746094 200.617188 266.746094 200.734375 C 266.746094 200.851562 266.839844 200.945312 266.957031 200.945312 C 267.074219 200.945312 267.167969 200.851562 267.167969 200.734375 Z M 267.167969 200.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.976562 201.699219 C 266.976562 201.582031 266.882812 201.488281 266.765625 201.488281 C 266.648438 201.488281 266.554688 201.582031 266.554688 201.699219 C 266.554688 201.816406 266.648438 201.910156 266.765625 201.910156 C 266.882812 201.910156 266.976562 201.816406 266.976562 201.699219 Z M 266.976562 201.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.257812 203.574219 C 266.257812 203.457031 266.164062 203.363281 266.046875 203.363281 C 265.929688 203.363281 265.835938 203.457031 265.835938 203.574219 C 265.835938 203.691406 265.929688 203.785156 266.046875 203.785156 C 266.164062 203.785156 266.257812 203.691406 266.257812 203.574219 Z M 266.257812 203.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.308594 204.699219 C 265.308594 204.582031 265.214844 204.488281 265.097656 204.488281 C 264.980469 204.488281 264.886719 204.582031 264.886719 204.699219 C 264.886719 204.816406 264.980469 204.910156 265.097656 204.910156 C 265.214844 204.910156 265.308594 204.816406 265.308594 204.699219 Z M 265.308594 204.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.132812 204.605469 C 262.132812 204.488281 262.039062 204.394531 261.921875 204.394531 C 261.804688 204.394531 261.710938 204.488281 261.710938 204.605469 C 261.710938 204.722656 261.804688 204.816406 261.921875 204.816406 C 262.039062 204.816406 262.132812 204.722656 262.132812 204.605469 Z M 262.132812 204.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.820312 200.980469 C 259.820312 200.863281 259.726562 200.769531 259.609375 200.769531 C 259.492188 200.769531 259.398438 200.863281 259.398438 200.980469 C 259.398438 201.097656 259.492188 201.191406 259.609375 201.191406 C 259.726562 201.191406 259.820312 201.097656 259.820312 200.980469 Z M 259.820312 200.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.003906 203.066406 C 259.003906 202.949219 258.910156 202.855469 258.792969 202.855469 C 258.675781 202.855469 258.582031 202.949219 258.582031 203.066406 C 258.582031 203.183594 258.675781 203.277344 258.792969 203.277344 C 258.910156 203.277344 259.003906 203.183594 259.003906 203.066406 Z M 259.003906 203.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.78125 205.734375 C 258.78125 205.617188 258.6875 205.523438 258.570312 205.523438 C 258.453125 205.523438 258.359375 205.617188 258.359375 205.734375 C 258.359375 205.851562 258.453125 205.945312 258.570312 205.945312 C 258.6875 205.945312 258.78125 205.851562 258.78125 205.734375 Z M 258.78125 205.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.277344 204.792969 C 257.277344 204.675781 257.183594 204.582031 257.066406 204.582031 C 256.949219 204.582031 256.855469 204.675781 256.855469 204.792969 C 256.855469 204.910156 256.949219 205.003906 257.066406 205.003906 C 257.183594 205.003906 257.277344 204.910156 257.277344 204.792969 Z M 257.277344 204.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.851562 201.34375 C 257.851562 201.226562 257.757812 201.132812 257.640625 201.132812 C 257.523438 201.132812 257.429688 201.226562 257.429688 201.34375 C 257.429688 201.460938 257.523438 201.554688 257.640625 201.554688 C 257.757812 201.554688 257.851562 201.460938 257.851562 201.34375 Z M 257.851562 201.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.207031 198.566406 C 257.207031 198.449219 257.113281 198.355469 256.996094 198.355469 C 256.878906 198.355469 256.785156 198.449219 256.785156 198.566406 C 256.785156 198.683594 256.878906 198.777344 256.996094 198.777344 C 257.113281 198.777344 257.207031 198.683594 257.207031 198.566406 Z M 257.207031 198.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.773438 199.453125 C 260.773438 199.335938 260.679688 199.242188 260.5625 199.242188 C 260.445312 199.242188 260.351562 199.335938 260.351562 199.453125 C 260.351562 199.570312 260.445312 199.664062 260.5625 199.664062 C 260.679688 199.664062 260.773438 199.570312 260.773438 199.453125 Z M 260.773438 199.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.527344 198.605469 C 258.527344 198.488281 258.433594 198.394531 258.316406 198.394531 C 258.199219 198.394531 258.105469 198.488281 258.105469 198.605469 C 258.105469 198.722656 258.199219 198.816406 258.316406 198.816406 C 258.433594 198.816406 258.527344 198.722656 258.527344 198.605469 Z M 258.527344 198.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.457031 199.484375 C 258.457031 199.367188 258.363281 199.273438 258.246094 199.273438 C 258.128906 199.273438 258.035156 199.367188 258.035156 199.484375 C 258.035156 199.601562 258.128906 199.695312 258.246094 199.695312 C 258.363281 199.695312 258.457031 199.601562 258.457031 199.484375 Z M 258.457031 199.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.140625 197.753906 C 258.140625 197.636719 258.046875 197.542969 257.929688 197.542969 C 257.8125 197.542969 257.71875 197.636719 257.71875 197.753906 C 257.71875 197.871094 257.8125 197.964844 257.929688 197.964844 C 258.046875 197.964844 258.140625 197.871094 258.140625 197.753906 Z M 258.140625 197.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.910156 200.941406 C 255.910156 200.824219 255.816406 200.730469 255.699219 200.730469 C 255.582031 200.730469 255.488281 200.824219 255.488281 200.941406 C 255.488281 201.058594 255.582031 201.152344 255.699219 201.152344 C 255.816406 201.152344 255.910156 201.058594 255.910156 200.941406 Z M 255.910156 200.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.953125 201.320312 C 256.953125 201.203125 256.859375 201.109375 256.742188 201.109375 C 256.625 201.109375 256.53125 201.203125 256.53125 201.320312 C 256.53125 201.4375 256.625 201.53125 256.742188 201.53125 C 256.859375 201.53125 256.953125 201.4375 256.953125 201.320312 Z M 256.953125 201.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.949219 204.183594 C 256.949219 204.066406 256.855469 203.972656 256.738281 203.972656 C 256.621094 203.972656 256.527344 204.066406 256.527344 204.183594 C 256.527344 204.300781 256.621094 204.394531 256.738281 204.394531 C 256.855469 204.394531 256.949219 204.300781 256.949219 204.183594 Z M 256.949219 204.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.652344 201.785156 C 259.652344 201.667969 259.558594 201.574219 259.441406 201.574219 C 259.324219 201.574219 259.230469 201.667969 259.230469 201.785156 C 259.230469 201.902344 259.324219 201.996094 259.441406 201.996094 C 259.558594 201.996094 259.652344 201.902344 259.652344 201.785156 Z M 259.652344 201.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.761719 202.527344 C 261.761719 202.410156 261.667969 202.316406 261.550781 202.316406 C 261.433594 202.316406 261.339844 202.410156 261.339844 202.527344 C 261.339844 202.644531 261.433594 202.738281 261.550781 202.738281 C 261.667969 202.738281 261.761719 202.644531 261.761719 202.527344 Z M 261.761719 202.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.039062 200.988281 C 261.039062 200.871094 260.945312 200.777344 260.828125 200.777344 C 260.710938 200.777344 260.617188 200.871094 260.617188 200.988281 C 260.617188 201.105469 260.710938 201.199219 260.828125 201.199219 C 260.945312 201.199219 261.039062 201.105469 261.039062 200.988281 Z M 261.039062 200.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.789062 204.921875 C 261.789062 204.804688 261.695312 204.710938 261.578125 204.710938 C 261.460938 204.710938 261.367188 204.804688 261.367188 204.921875 C 261.367188 205.039062 261.460938 205.132812 261.578125 205.132812 C 261.695312 205.132812 261.789062 205.039062 261.789062 204.921875 Z M 261.789062 204.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.746094 204.730469 C 260.746094 204.613281 260.652344 204.519531 260.535156 204.519531 C 260.417969 204.519531 260.324219 204.613281 260.324219 204.730469 C 260.324219 204.847656 260.417969 204.941406 260.535156 204.941406 C 260.652344 204.941406 260.746094 204.847656 260.746094 204.730469 Z M 260.746094 204.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.175781 206.277344 C 260.175781 206.160156 260.082031 206.066406 259.964844 206.066406 C 259.847656 206.066406 259.753906 206.160156 259.753906 206.277344 C 259.753906 206.394531 259.847656 206.488281 259.964844 206.488281 C 260.082031 206.488281 260.175781 206.394531 260.175781 206.277344 Z M 260.175781 206.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.902344 207.546875 C 260.902344 207.429688 260.808594 207.335938 260.691406 207.335938 C 260.574219 207.335938 260.480469 207.429688 260.480469 207.546875 C 260.480469 207.664062 260.574219 207.757812 260.691406 207.757812 C 260.808594 207.757812 260.902344 207.664062 260.902344 207.546875 Z M 260.902344 207.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.546875 209.070312 C 262.546875 208.953125 262.453125 208.859375 262.335938 208.859375 C 262.21875 208.859375 262.125 208.953125 262.125 209.070312 C 262.125 209.1875 262.21875 209.28125 262.335938 209.28125 C 262.453125 209.28125 262.546875 209.1875 262.546875 209.070312 Z M 262.546875 209.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.0625 212.03125 C 261.0625 211.914062 260.96875 211.820312 260.851562 211.820312 C 260.734375 211.820312 260.640625 211.914062 260.640625 212.03125 C 260.640625 212.148438 260.734375 212.242188 260.851562 212.242188 C 260.96875 212.242188 261.0625 212.148438 261.0625 212.03125 Z M 261.0625 212.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.382812 209.589844 C 258.382812 209.472656 258.289062 209.378906 258.171875 209.378906 C 258.054688 209.378906 257.960938 209.472656 257.960938 209.589844 C 257.960938 209.707031 258.054688 209.800781 258.171875 209.800781 C 258.289062 209.800781 258.382812 209.707031 258.382812 209.589844 Z M 258.382812 209.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.472656 203.429688 C 256.472656 203.3125 256.378906 203.21875 256.261719 203.21875 C 256.144531 203.21875 256.050781 203.3125 256.050781 203.429688 C 256.050781 203.546875 256.144531 203.640625 256.261719 203.640625 C 256.378906 203.640625 256.472656 203.546875 256.472656 203.429688 Z M 256.472656 203.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.542969 204.304688 C 254.542969 204.1875 254.449219 204.09375 254.332031 204.09375 C 254.214844 204.09375 254.121094 204.1875 254.121094 204.304688 C 254.121094 204.421875 254.214844 204.515625 254.332031 204.515625 C 254.449219 204.515625 254.542969 204.421875 254.542969 204.304688 Z M 254.542969 204.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.570312 201.964844 C 255.570312 201.847656 255.476562 201.753906 255.359375 201.753906 C 255.242188 201.753906 255.148438 201.847656 255.148438 201.964844 C 255.148438 202.082031 255.242188 202.175781 255.359375 202.175781 C 255.476562 202.175781 255.570312 202.082031 255.570312 201.964844 Z M 255.570312 201.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.117188 201.242188 C 258.117188 201.125 258.023438 201.03125 257.90625 201.03125 C 257.789062 201.03125 257.695312 201.125 257.695312 201.242188 C 257.695312 201.359375 257.789062 201.453125 257.90625 201.453125 C 258.023438 201.453125 258.117188 201.359375 258.117188 201.242188 Z M 258.117188 201.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.558594 205.644531 C 260.558594 205.527344 260.464844 205.433594 260.347656 205.433594 C 260.230469 205.433594 260.136719 205.527344 260.136719 205.644531 C 260.136719 205.761719 260.230469 205.855469 260.347656 205.855469 C 260.464844 205.855469 260.558594 205.761719 260.558594 205.644531 Z M 260.558594 205.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.632812 208.429688 C 261.632812 208.3125 261.539062 208.21875 261.421875 208.21875 C 261.304688 208.21875 261.210938 208.3125 261.210938 208.429688 C 261.210938 208.546875 261.304688 208.640625 261.421875 208.640625 C 261.539062 208.640625 261.632812 208.546875 261.632812 208.429688 Z M 261.632812 208.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.402344 212.417969 C 263.402344 212.300781 263.308594 212.207031 263.191406 212.207031 C 263.074219 212.207031 262.980469 212.300781 262.980469 212.417969 C 262.980469 212.535156 263.074219 212.628906 263.191406 212.628906 C 263.308594 212.628906 263.402344 212.535156 263.402344 212.417969 Z M 263.402344 212.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.957031 210.746094 C 263.957031 210.628906 263.863281 210.535156 263.746094 210.535156 C 263.628906 210.535156 263.535156 210.628906 263.535156 210.746094 C 263.535156 210.863281 263.628906 210.957031 263.746094 210.957031 C 263.863281 210.957031 263.957031 210.863281 263.957031 210.746094 Z M 263.957031 210.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.292969 206.628906 C 266.292969 206.511719 266.199219 206.417969 266.082031 206.417969 C 265.964844 206.417969 265.871094 206.511719 265.871094 206.628906 C 265.871094 206.746094 265.964844 206.839844 266.082031 206.839844 C 266.199219 206.839844 266.292969 206.746094 266.292969 206.628906 Z M 266.292969 206.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.058594 209.460938 C 267.058594 209.34375 266.964844 209.25 266.847656 209.25 C 266.730469 209.25 266.636719 209.34375 266.636719 209.460938 C 266.636719 209.578125 266.730469 209.671875 266.847656 209.671875 C 266.964844 209.671875 267.058594 209.578125 267.058594 209.460938 Z M 267.058594 209.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.792969 209.386719 C 264.792969 209.269531 264.699219 209.175781 264.582031 209.175781 C 264.464844 209.175781 264.371094 209.269531 264.371094 209.386719 C 264.371094 209.503906 264.464844 209.597656 264.582031 209.597656 C 264.699219 209.597656 264.792969 209.503906 264.792969 209.386719 Z M 264.792969 209.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.980469 211.132812 C 263.980469 211.015625 263.886719 210.921875 263.769531 210.921875 C 263.652344 210.921875 263.558594 211.015625 263.558594 211.132812 C 263.558594 211.25 263.652344 211.34375 263.769531 211.34375 C 263.886719 211.34375 263.980469 211.25 263.980469 211.132812 Z M 263.980469 211.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.410156 210.320312 C 260.410156 210.203125 260.316406 210.109375 260.199219 210.109375 C 260.082031 210.109375 259.988281 210.203125 259.988281 210.320312 C 259.988281 210.4375 260.082031 210.53125 260.199219 210.53125 C 260.316406 210.53125 260.410156 210.4375 260.410156 210.320312 Z M 260.410156 210.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.167969 206.765625 C 260.167969 206.648438 260.074219 206.554688 259.957031 206.554688 C 259.839844 206.554688 259.746094 206.648438 259.746094 206.765625 C 259.746094 206.882812 259.839844 206.976562 259.957031 206.976562 C 260.074219 206.976562 260.167969 206.882812 260.167969 206.765625 Z M 260.167969 206.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.410156 205.179688 C 256.410156 205.0625 256.316406 204.96875 256.199219 204.96875 C 256.082031 204.96875 255.988281 205.0625 255.988281 205.179688 C 255.988281 205.296875 256.082031 205.390625 256.199219 205.390625 C 256.316406 205.390625 256.410156 205.296875 256.410156 205.179688 Z M 256.410156 205.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.386719 210.683594 C 256.386719 210.566406 256.292969 210.472656 256.175781 210.472656 C 256.058594 210.472656 255.964844 210.566406 255.964844 210.683594 C 255.964844 210.800781 256.058594 210.894531 256.175781 210.894531 C 256.292969 210.894531 256.386719 210.800781 256.386719 210.683594 Z M 256.386719 210.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.804688 210.90625 C 257.804688 210.789062 257.710938 210.695312 257.59375 210.695312 C 257.476562 210.695312 257.382812 210.789062 257.382812 210.90625 C 257.382812 211.023438 257.476562 211.117188 257.59375 211.117188 C 257.710938 211.117188 257.804688 211.023438 257.804688 210.90625 Z M 257.804688 210.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.6875 213.082031 C 263.6875 212.964844 263.59375 212.871094 263.476562 212.871094 C 263.359375 212.871094 263.265625 212.964844 263.265625 213.082031 C 263.265625 213.199219 263.359375 213.292969 263.476562 213.292969 C 263.59375 213.292969 263.6875 213.199219 263.6875 213.082031 Z M 263.6875 213.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.945312 211.871094 C 262.945312 211.753906 262.851562 211.660156 262.734375 211.660156 C 262.617188 211.660156 262.523438 211.753906 262.523438 211.871094 C 262.523438 211.988281 262.617188 212.082031 262.734375 212.082031 C 262.851562 212.082031 262.945312 211.988281 262.945312 211.871094 Z M 262.945312 211.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.148438 211.160156 C 264.148438 211.042969 264.054688 210.949219 263.9375 210.949219 C 263.820312 210.949219 263.726562 211.042969 263.726562 211.160156 C 263.726562 211.277344 263.820312 211.371094 263.9375 211.371094 C 264.054688 211.371094 264.148438 211.277344 264.148438 211.160156 Z M 264.148438 211.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.179688 209.355469 C 263.179688 209.238281 263.085938 209.144531 262.96875 209.144531 C 262.851562 209.144531 262.757812 209.238281 262.757812 209.355469 C 262.757812 209.472656 262.851562 209.566406 262.96875 209.566406 C 263.085938 209.566406 263.179688 209.472656 263.179688 209.355469 Z M 263.179688 209.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.417969 215.046875 C 263.417969 214.929688 263.324219 214.835938 263.207031 214.835938 C 263.089844 214.835938 262.996094 214.929688 262.996094 215.046875 C 262.996094 215.164062 263.089844 215.257812 263.207031 215.257812 C 263.324219 215.257812 263.417969 215.164062 263.417969 215.046875 Z M 263.417969 215.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.679688 215.402344 C 261.679688 215.285156 261.585938 215.191406 261.46875 215.191406 C 261.351562 215.191406 261.257812 215.285156 261.257812 215.402344 C 261.257812 215.519531 261.351562 215.613281 261.46875 215.613281 C 261.585938 215.613281 261.679688 215.519531 261.679688 215.402344 Z M 261.679688 215.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.710938 214.589844 C 264.710938 214.472656 264.617188 214.378906 264.5 214.378906 C 264.382812 214.378906 264.289062 214.472656 264.289062 214.589844 C 264.289062 214.707031 264.382812 214.800781 264.5 214.800781 C 264.617188 214.800781 264.710938 214.707031 264.710938 214.589844 Z M 264.710938 214.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.058594 214.789062 C 261.058594 214.671875 260.964844 214.578125 260.847656 214.578125 C 260.730469 214.578125 260.636719 214.671875 260.636719 214.789062 C 260.636719 214.90625 260.730469 215 260.847656 215 C 260.964844 215 261.058594 214.90625 261.058594 214.789062 Z M 261.058594 214.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.382812 212.742188 C 263.382812 212.625 263.289062 212.53125 263.171875 212.53125 C 263.054688 212.53125 262.960938 212.625 262.960938 212.742188 C 262.960938 212.859375 263.054688 212.953125 263.171875 212.953125 C 263.289062 212.953125 263.382812 212.859375 263.382812 212.742188 Z M 263.382812 212.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.210938 212.808594 C 260.210938 212.691406 260.117188 212.597656 260 212.597656 C 259.882812 212.597656 259.789062 212.691406 259.789062 212.808594 C 259.789062 212.925781 259.882812 213.019531 260 213.019531 C 260.117188 213.019531 260.210938 212.925781 260.210938 212.808594 Z M 260.210938 212.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.402344 215.992188 C 259.402344 215.875 259.308594 215.78125 259.191406 215.78125 C 259.074219 215.78125 258.980469 215.875 258.980469 215.992188 C 258.980469 216.109375 259.074219 216.203125 259.191406 216.203125 C 259.308594 216.203125 259.402344 216.109375 259.402344 215.992188 Z M 259.402344 215.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.347656 212.289062 C 261.347656 212.171875 261.253906 212.078125 261.136719 212.078125 C 261.019531 212.078125 260.925781 212.171875 260.925781 212.289062 C 260.925781 212.40625 261.019531 212.5 261.136719 212.5 C 261.253906 212.5 261.347656 212.40625 261.347656 212.289062 Z M 261.347656 212.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.953125 212.097656 C 256.953125 211.980469 256.859375 211.886719 256.742188 211.886719 C 256.625 211.886719 256.53125 211.980469 256.53125 212.097656 C 256.53125 212.214844 256.625 212.308594 256.742188 212.308594 C 256.859375 212.308594 256.953125 212.214844 256.953125 212.097656 Z M 256.953125 212.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.433594 210.699219 C 258.433594 210.582031 258.339844 210.488281 258.222656 210.488281 C 258.105469 210.488281 258.011719 210.582031 258.011719 210.699219 C 258.011719 210.816406 258.105469 210.910156 258.222656 210.910156 C 258.339844 210.910156 258.433594 210.816406 258.433594 210.699219 Z M 258.433594 210.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.300781 208.917969 C 259.300781 208.800781 259.207031 208.707031 259.089844 208.707031 C 258.972656 208.707031 258.878906 208.800781 258.878906 208.917969 C 258.878906 209.035156 258.972656 209.128906 259.089844 209.128906 C 259.207031 209.128906 259.300781 209.035156 259.300781 208.917969 Z M 259.300781 208.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.378906 207.023438 C 260.378906 206.90625 260.285156 206.8125 260.167969 206.8125 C 260.050781 206.8125 259.957031 206.90625 259.957031 207.023438 C 259.957031 207.140625 260.050781 207.234375 260.167969 207.234375 C 260.285156 207.234375 260.378906 207.140625 260.378906 207.023438 Z M 260.378906 207.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.769531 209.582031 C 261.769531 209.464844 261.675781 209.371094 261.558594 209.371094 C 261.441406 209.371094 261.347656 209.464844 261.347656 209.582031 C 261.347656 209.699219 261.441406 209.792969 261.558594 209.792969 C 261.675781 209.792969 261.769531 209.699219 261.769531 209.582031 Z M 261.769531 209.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.980469 210.175781 C 265.980469 210.058594 265.886719 209.964844 265.769531 209.964844 C 265.652344 209.964844 265.558594 210.058594 265.558594 210.175781 C 265.558594 210.292969 265.652344 210.386719 265.769531 210.386719 C 265.886719 210.386719 265.980469 210.292969 265.980469 210.175781 Z M 265.980469 210.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.460938 210.265625 C 264.460938 210.148438 264.367188 210.054688 264.25 210.054688 C 264.132812 210.054688 264.039062 210.148438 264.039062 210.265625 C 264.039062 210.382812 264.132812 210.476562 264.25 210.476562 C 264.367188 210.476562 264.460938 210.382812 264.460938 210.265625 Z M 264.460938 210.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.207031 208.734375 C 267.207031 208.617188 267.113281 208.523438 266.996094 208.523438 C 266.878906 208.523438 266.785156 208.617188 266.785156 208.734375 C 266.785156 208.851562 266.878906 208.945312 266.996094 208.945312 C 267.113281 208.945312 267.207031 208.851562 267.207031 208.734375 Z M 267.207031 208.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.160156 207.195312 C 266.160156 207.078125 266.066406 206.984375 265.949219 206.984375 C 265.832031 206.984375 265.738281 207.078125 265.738281 207.195312 C 265.738281 207.3125 265.832031 207.40625 265.949219 207.40625 C 266.066406 207.40625 266.160156 207.3125 266.160156 207.195312 Z M 266.160156 207.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.1875 204.71875 C 268.1875 204.601562 268.09375 204.507812 267.976562 204.507812 C 267.859375 204.507812 267.765625 204.601562 267.765625 204.71875 C 267.765625 204.835938 267.859375 204.929688 267.976562 204.929688 C 268.09375 204.929688 268.1875 204.835938 268.1875 204.71875 Z M 268.1875 204.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.527344 204.230469 C 266.527344 204.113281 266.433594 204.019531 266.316406 204.019531 C 266.199219 204.019531 266.105469 204.113281 266.105469 204.230469 C 266.105469 204.347656 266.199219 204.441406 266.316406 204.441406 C 266.433594 204.441406 266.527344 204.347656 266.527344 204.230469 Z M 266.527344 204.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.726562 206.863281 C 266.726562 206.746094 266.632812 206.652344 266.515625 206.652344 C 266.398438 206.652344 266.304688 206.746094 266.304688 206.863281 C 266.304688 206.980469 266.398438 207.074219 266.515625 207.074219 C 266.632812 207.074219 266.726562 206.980469 266.726562 206.863281 Z M 266.726562 206.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.65625 204.292969 C 264.65625 204.175781 264.5625 204.082031 264.445312 204.082031 C 264.328125 204.082031 264.234375 204.175781 264.234375 204.292969 C 264.234375 204.410156 264.328125 204.503906 264.445312 204.503906 C 264.5625 204.503906 264.65625 204.410156 264.65625 204.292969 Z M 264.65625 204.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.574219 205.867188 C 261.574219 205.75 261.480469 205.65625 261.363281 205.65625 C 261.246094 205.65625 261.152344 205.75 261.152344 205.867188 C 261.152344 205.984375 261.246094 206.078125 261.363281 206.078125 C 261.480469 206.078125 261.574219 205.984375 261.574219 205.867188 Z M 261.574219 205.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.609375 207.128906 C 264.609375 207.011719 264.515625 206.917969 264.398438 206.917969 C 264.28125 206.917969 264.1875 207.011719 264.1875 207.128906 C 264.1875 207.246094 264.28125 207.339844 264.398438 207.339844 C 264.515625 207.339844 264.609375 207.246094 264.609375 207.128906 Z M 264.609375 207.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.320312 204.691406 C 263.320312 204.574219 263.226562 204.480469 263.109375 204.480469 C 262.992188 204.480469 262.898438 204.574219 262.898438 204.691406 C 262.898438 204.808594 262.992188 204.902344 263.109375 204.902344 C 263.226562 204.902344 263.320312 204.808594 263.320312 204.691406 Z M 263.320312 204.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.371094 202.171875 C 268.371094 202.054688 268.277344 201.960938 268.160156 201.960938 C 268.042969 201.960938 267.949219 202.054688 267.949219 202.171875 C 267.949219 202.289062 268.042969 202.382812 268.160156 202.382812 C 268.277344 202.382812 268.371094 202.289062 268.371094 202.171875 Z M 268.371094 202.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.316406 204.335938 C 266.316406 204.21875 266.222656 204.125 266.105469 204.125 C 265.988281 204.125 265.894531 204.21875 265.894531 204.335938 C 265.894531 204.453125 265.988281 204.546875 266.105469 204.546875 C 266.222656 204.546875 266.316406 204.453125 266.316406 204.335938 Z M 266.316406 204.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.824219 201.976562 C 268.824219 201.859375 268.730469 201.765625 268.613281 201.765625 C 268.496094 201.765625 268.402344 201.859375 268.402344 201.976562 C 268.402344 202.09375 268.496094 202.1875 268.613281 202.1875 C 268.730469 202.1875 268.824219 202.09375 268.824219 201.976562 Z M 268.824219 201.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.21875 204.34375 C 270.21875 204.226562 270.125 204.132812 270.007812 204.132812 C 269.890625 204.132812 269.796875 204.226562 269.796875 204.34375 C 269.796875 204.460938 269.890625 204.554688 270.007812 204.554688 C 270.125 204.554688 270.21875 204.460938 270.21875 204.34375 Z M 270.21875 204.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.632812 207.945312 C 272.632812 207.828125 272.539062 207.734375 272.421875 207.734375 C 272.304688 207.734375 272.210938 207.828125 272.210938 207.945312 C 272.210938 208.0625 272.304688 208.15625 272.421875 208.15625 C 272.539062 208.15625 272.632812 208.0625 272.632812 207.945312 Z M 272.632812 207.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.308594 206.5 C 273.308594 206.382812 273.214844 206.289062 273.097656 206.289062 C 272.980469 206.289062 272.886719 206.382812 272.886719 206.5 C 272.886719 206.617188 272.980469 206.710938 273.097656 206.710938 C 273.214844 206.710938 273.308594 206.617188 273.308594 206.5 Z M 273.308594 206.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.375 206.800781 C 267.375 206.683594 267.28125 206.589844 267.164062 206.589844 C 267.046875 206.589844 266.953125 206.683594 266.953125 206.800781 C 266.953125 206.917969 267.046875 207.011719 267.164062 207.011719 C 267.28125 207.011719 267.375 206.917969 267.375 206.800781 Z M 267.375 206.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.039062 213.324219 C 264.039062 213.207031 263.945312 213.113281 263.828125 213.113281 C 263.710938 213.113281 263.617188 213.207031 263.617188 213.324219 C 263.617188 213.441406 263.710938 213.535156 263.828125 213.535156 C 263.945312 213.535156 264.039062 213.441406 264.039062 213.324219 Z M 264.039062 213.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.695312 211.058594 C 266.695312 210.941406 266.601562 210.847656 266.484375 210.847656 C 266.367188 210.847656 266.273438 210.941406 266.273438 211.058594 C 266.273438 211.175781 266.367188 211.269531 266.484375 211.269531 C 266.601562 211.269531 266.695312 211.175781 266.695312 211.058594 Z M 266.695312 211.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.425781 214.007812 C 268.425781 213.890625 268.332031 213.796875 268.214844 213.796875 C 268.097656 213.796875 268.003906 213.890625 268.003906 214.007812 C 268.003906 214.125 268.097656 214.21875 268.214844 214.21875 C 268.332031 214.21875 268.425781 214.125 268.425781 214.007812 Z M 268.425781 214.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.371094 213.710938 C 269.371094 213.59375 269.277344 213.5 269.160156 213.5 C 269.042969 213.5 268.949219 213.59375 268.949219 213.710938 C 268.949219 213.828125 269.042969 213.921875 269.160156 213.921875 C 269.277344 213.921875 269.371094 213.828125 269.371094 213.710938 Z M 269.371094 213.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.085938 213.828125 C 272.085938 213.710938 271.992188 213.617188 271.875 213.617188 C 271.757812 213.617188 271.664062 213.710938 271.664062 213.828125 C 271.664062 213.945312 271.757812 214.039062 271.875 214.039062 C 271.992188 214.039062 272.085938 213.945312 272.085938 213.828125 Z M 272.085938 213.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.445312 212.050781 C 269.445312 211.933594 269.351562 211.839844 269.234375 211.839844 C 269.117188 211.839844 269.023438 211.933594 269.023438 212.050781 C 269.023438 212.167969 269.117188 212.261719 269.234375 212.261719 C 269.351562 212.261719 269.445312 212.167969 269.445312 212.050781 Z M 269.445312 212.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.710938 210.496094 C 266.710938 210.378906 266.617188 210.285156 266.5 210.285156 C 266.382812 210.285156 266.289062 210.378906 266.289062 210.496094 C 266.289062 210.613281 266.382812 210.707031 266.5 210.707031 C 266.617188 210.707031 266.710938 210.613281 266.710938 210.496094 Z M 266.710938 210.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.285156 212.03125 C 269.285156 211.914062 269.191406 211.820312 269.074219 211.820312 C 268.957031 211.820312 268.863281 211.914062 268.863281 212.03125 C 268.863281 212.148438 268.957031 212.242188 269.074219 212.242188 C 269.191406 212.242188 269.285156 212.148438 269.285156 212.03125 Z M 269.285156 212.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.308594 212.089844 C 268.308594 211.972656 268.214844 211.878906 268.097656 211.878906 C 267.980469 211.878906 267.886719 211.972656 267.886719 212.089844 C 267.886719 212.207031 267.980469 212.300781 268.097656 212.300781 C 268.214844 212.300781 268.308594 212.207031 268.308594 212.089844 Z M 268.308594 212.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.527344 209.050781 C 268.527344 208.933594 268.433594 208.839844 268.316406 208.839844 C 268.199219 208.839844 268.105469 208.933594 268.105469 209.050781 C 268.105469 209.167969 268.199219 209.261719 268.316406 209.261719 C 268.433594 209.261719 268.527344 209.167969 268.527344 209.050781 Z M 268.527344 209.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.328125 210.734375 C 267.328125 210.617188 267.234375 210.523438 267.117188 210.523438 C 267 210.523438 266.90625 210.617188 266.90625 210.734375 C 266.90625 210.851562 267 210.945312 267.117188 210.945312 C 267.234375 210.945312 267.328125 210.851562 267.328125 210.734375 Z M 267.328125 210.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.691406 210.582031 C 265.691406 210.464844 265.597656 210.371094 265.480469 210.371094 C 265.363281 210.371094 265.269531 210.464844 265.269531 210.582031 C 265.269531 210.699219 265.363281 210.792969 265.480469 210.792969 C 265.597656 210.792969 265.691406 210.699219 265.691406 210.582031 Z M 265.691406 210.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.621094 208.011719 C 266.621094 207.894531 266.527344 207.800781 266.410156 207.800781 C 266.292969 207.800781 266.199219 207.894531 266.199219 208.011719 C 266.199219 208.128906 266.292969 208.222656 266.410156 208.222656 C 266.527344 208.222656 266.621094 208.128906 266.621094 208.011719 Z M 266.621094 208.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.070312 209.105469 C 266.070312 208.988281 265.976562 208.894531 265.859375 208.894531 C 265.742188 208.894531 265.648438 208.988281 265.648438 209.105469 C 265.648438 209.222656 265.742188 209.316406 265.859375 209.316406 C 265.976562 209.316406 266.070312 209.222656 266.070312 209.105469 Z M 266.070312 209.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.230469 212.023438 C 266.230469 211.90625 266.136719 211.8125 266.019531 211.8125 C 265.902344 211.8125 265.808594 211.90625 265.808594 212.023438 C 265.808594 212.140625 265.902344 212.234375 266.019531 212.234375 C 266.136719 212.234375 266.230469 212.140625 266.230469 212.023438 Z M 266.230469 212.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.710938 210.679688 C 265.710938 210.5625 265.617188 210.46875 265.5 210.46875 C 265.382812 210.46875 265.289062 210.5625 265.289062 210.679688 C 265.289062 210.796875 265.382812 210.890625 265.5 210.890625 C 265.617188 210.890625 265.710938 210.796875 265.710938 210.679688 Z M 265.710938 210.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.109375 210.886719 C 266.109375 210.769531 266.015625 210.675781 265.898438 210.675781 C 265.78125 210.675781 265.6875 210.769531 265.6875 210.886719 C 265.6875 211.003906 265.78125 211.097656 265.898438 211.097656 C 266.015625 211.097656 266.109375 211.003906 266.109375 210.886719 Z M 266.109375 210.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.304688 210.804688 C 266.304688 210.6875 266.210938 210.59375 266.09375 210.59375 C 265.976562 210.59375 265.882812 210.6875 265.882812 210.804688 C 265.882812 210.921875 265.976562 211.015625 266.09375 211.015625 C 266.210938 211.015625 266.304688 210.921875 266.304688 210.804688 Z M 266.304688 210.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.742188 208.558594 C 266.742188 208.441406 266.648438 208.347656 266.53125 208.347656 C 266.414062 208.347656 266.320312 208.441406 266.320312 208.558594 C 266.320312 208.675781 266.414062 208.769531 266.53125 208.769531 C 266.648438 208.769531 266.742188 208.675781 266.742188 208.558594 Z M 266.742188 208.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.640625 215.003906 C 268.640625 214.886719 268.546875 214.792969 268.429688 214.792969 C 268.3125 214.792969 268.21875 214.886719 268.21875 215.003906 C 268.21875 215.121094 268.3125 215.214844 268.429688 215.214844 C 268.546875 215.214844 268.640625 215.121094 268.640625 215.003906 Z M 268.640625 215.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.226562 215.710938 C 272.226562 215.59375 272.132812 215.5 272.015625 215.5 C 271.898438 215.5 271.804688 215.59375 271.804688 215.710938 C 271.804688 215.828125 271.898438 215.921875 272.015625 215.921875 C 272.132812 215.921875 272.226562 215.828125 272.226562 215.710938 Z M 272.226562 215.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.894531 215.898438 C 273.894531 215.78125 273.800781 215.6875 273.683594 215.6875 C 273.566406 215.6875 273.472656 215.78125 273.472656 215.898438 C 273.472656 216.015625 273.566406 216.109375 273.683594 216.109375 C 273.800781 216.109375 273.894531 216.015625 273.894531 215.898438 Z M 273.894531 215.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.492188 216.535156 C 274.492188 216.417969 274.398438 216.324219 274.28125 216.324219 C 274.164062 216.324219 274.070312 216.417969 274.070312 216.535156 C 274.070312 216.652344 274.164062 216.746094 274.28125 216.746094 C 274.398438 216.746094 274.492188 216.652344 274.492188 216.535156 Z M 274.492188 216.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.191406 215.1875 C 273.191406 215.070312 273.097656 214.976562 272.980469 214.976562 C 272.863281 214.976562 272.769531 215.070312 272.769531 215.1875 C 272.769531 215.304688 272.863281 215.398438 272.980469 215.398438 C 273.097656 215.398438 273.191406 215.304688 273.191406 215.1875 Z M 273.191406 215.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.324219 212.339844 C 270.324219 212.222656 270.230469 212.128906 270.113281 212.128906 C 269.996094 212.128906 269.902344 212.222656 269.902344 212.339844 C 269.902344 212.457031 269.996094 212.550781 270.113281 212.550781 C 270.230469 212.550781 270.324219 212.457031 270.324219 212.339844 Z M 270.324219 212.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.363281 215.886719 C 269.363281 215.769531 269.269531 215.675781 269.152344 215.675781 C 269.035156 215.675781 268.941406 215.769531 268.941406 215.886719 C 268.941406 216.003906 269.035156 216.097656 269.152344 216.097656 C 269.269531 216.097656 269.363281 216.003906 269.363281 215.886719 Z M 269.363281 215.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.199219 213.214844 C 270.199219 213.097656 270.105469 213.003906 269.988281 213.003906 C 269.871094 213.003906 269.777344 213.097656 269.777344 213.214844 C 269.777344 213.332031 269.871094 213.425781 269.988281 213.425781 C 270.105469 213.425781 270.199219 213.332031 270.199219 213.214844 Z M 270.199219 213.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.894531 209.839844 C 268.894531 209.722656 268.800781 209.628906 268.683594 209.628906 C 268.566406 209.628906 268.472656 209.722656 268.472656 209.839844 C 268.472656 209.957031 268.566406 210.050781 268.683594 210.050781 C 268.800781 210.050781 268.894531 209.957031 268.894531 209.839844 Z M 268.894531 209.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.738281 211.691406 C 268.738281 211.574219 268.644531 211.480469 268.527344 211.480469 C 268.410156 211.480469 268.316406 211.574219 268.316406 211.691406 C 268.316406 211.808594 268.410156 211.902344 268.527344 211.902344 C 268.644531 211.902344 268.738281 211.808594 268.738281 211.691406 Z M 268.738281 211.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.433594 206.992188 C 269.433594 206.875 269.339844 206.78125 269.222656 206.78125 C 269.105469 206.78125 269.011719 206.875 269.011719 206.992188 C 269.011719 207.109375 269.105469 207.203125 269.222656 207.203125 C 269.339844 207.203125 269.433594 207.109375 269.433594 206.992188 Z M 269.433594 206.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.363281 206.019531 C 270.363281 205.902344 270.269531 205.808594 270.152344 205.808594 C 270.035156 205.808594 269.941406 205.902344 269.941406 206.019531 C 269.941406 206.136719 270.035156 206.230469 270.152344 206.230469 C 270.269531 206.230469 270.363281 206.136719 270.363281 206.019531 Z M 270.363281 206.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.441406 204.015625 C 272.441406 203.898438 272.347656 203.804688 272.230469 203.804688 C 272.113281 203.804688 272.019531 203.898438 272.019531 204.015625 C 272.019531 204.132812 272.113281 204.226562 272.230469 204.226562 C 272.347656 204.226562 272.441406 204.132812 272.441406 204.015625 Z M 272.441406 204.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.097656 207.683594 C 273.097656 207.566406 273.003906 207.472656 272.886719 207.472656 C 272.769531 207.472656 272.675781 207.566406 272.675781 207.683594 C 272.675781 207.800781 272.769531 207.894531 272.886719 207.894531 C 273.003906 207.894531 273.097656 207.800781 273.097656 207.683594 Z M 273.097656 207.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.144531 207.339844 C 277.144531 207.222656 277.050781 207.128906 276.933594 207.128906 C 276.816406 207.128906 276.722656 207.222656 276.722656 207.339844 C 276.722656 207.457031 276.816406 207.550781 276.933594 207.550781 C 277.050781 207.550781 277.144531 207.457031 277.144531 207.339844 Z M 277.144531 207.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.488281 208.148438 C 277.488281 208.03125 277.394531 207.9375 277.277344 207.9375 C 277.160156 207.9375 277.066406 208.03125 277.066406 208.148438 C 277.066406 208.265625 277.160156 208.359375 277.277344 208.359375 C 277.394531 208.359375 277.488281 208.265625 277.488281 208.148438 Z M 277.488281 208.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.300781 208.773438 C 278.300781 208.65625 278.207031 208.5625 278.089844 208.5625 C 277.972656 208.5625 277.878906 208.65625 277.878906 208.773438 C 277.878906 208.890625 277.972656 208.984375 278.089844 208.984375 C 278.207031 208.984375 278.300781 208.890625 278.300781 208.773438 Z M 278.300781 208.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.59375 208.890625 C 281.59375 208.773438 281.5 208.679688 281.382812 208.679688 C 281.265625 208.679688 281.171875 208.773438 281.171875 208.890625 C 281.171875 209.007812 281.265625 209.101562 281.382812 209.101562 C 281.5 209.101562 281.59375 209.007812 281.59375 208.890625 Z M 281.59375 208.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.128906 211.054688 C 275.128906 210.9375 275.035156 210.84375 274.917969 210.84375 C 274.800781 210.84375 274.707031 210.9375 274.707031 211.054688 C 274.707031 211.171875 274.800781 211.265625 274.917969 211.265625 C 275.035156 211.265625 275.128906 211.171875 275.128906 211.054688 Z M 275.128906 211.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.019531 210.582031 C 274.019531 210.464844 273.925781 210.371094 273.808594 210.371094 C 273.691406 210.371094 273.597656 210.464844 273.597656 210.582031 C 273.597656 210.699219 273.691406 210.792969 273.808594 210.792969 C 273.925781 210.792969 274.019531 210.699219 274.019531 210.582031 Z M 274.019531 210.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.4375 210.667969 C 275.4375 210.550781 275.34375 210.457031 275.226562 210.457031 C 275.109375 210.457031 275.015625 210.550781 275.015625 210.667969 C 275.015625 210.785156 275.109375 210.878906 275.226562 210.878906 C 275.34375 210.878906 275.4375 210.785156 275.4375 210.667969 Z M 275.4375 210.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.613281 207.964844 C 274.613281 207.847656 274.519531 207.753906 274.402344 207.753906 C 274.285156 207.753906 274.191406 207.847656 274.191406 207.964844 C 274.191406 208.082031 274.285156 208.175781 274.402344 208.175781 C 274.519531 208.175781 274.613281 208.082031 274.613281 207.964844 Z M 274.613281 207.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.964844 207.550781 C 276.964844 207.433594 276.871094 207.339844 276.753906 207.339844 C 276.636719 207.339844 276.542969 207.433594 276.542969 207.550781 C 276.542969 207.667969 276.636719 207.761719 276.753906 207.761719 C 276.871094 207.761719 276.964844 207.667969 276.964844 207.550781 Z M 276.964844 207.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.242188 207.753906 C 282.242188 207.636719 282.148438 207.542969 282.03125 207.542969 C 281.914062 207.542969 281.820312 207.636719 281.820312 207.753906 C 281.820312 207.871094 281.914062 207.964844 282.03125 207.964844 C 282.148438 207.964844 282.242188 207.871094 282.242188 207.753906 Z M 282.242188 207.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.871094 204.617188 C 280.871094 204.5 280.777344 204.40625 280.660156 204.40625 C 280.542969 204.40625 280.449219 204.5 280.449219 204.617188 C 280.449219 204.734375 280.542969 204.828125 280.660156 204.828125 C 280.777344 204.828125 280.871094 204.734375 280.871094 204.617188 Z M 280.871094 204.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.308594 204.460938 C 281.308594 204.34375 281.214844 204.25 281.097656 204.25 C 280.980469 204.25 280.886719 204.34375 280.886719 204.460938 C 280.886719 204.578125 280.980469 204.671875 281.097656 204.671875 C 281.214844 204.671875 281.308594 204.578125 281.308594 204.460938 Z M 281.308594 204.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.535156 204.515625 C 280.535156 204.398438 280.441406 204.304688 280.324219 204.304688 C 280.207031 204.304688 280.113281 204.398438 280.113281 204.515625 C 280.113281 204.632812 280.207031 204.726562 280.324219 204.726562 C 280.441406 204.726562 280.535156 204.632812 280.535156 204.515625 Z M 280.535156 204.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.714844 205.375 C 280.714844 205.257812 280.621094 205.164062 280.503906 205.164062 C 280.386719 205.164062 280.292969 205.257812 280.292969 205.375 C 280.292969 205.492188 280.386719 205.585938 280.503906 205.585938 C 280.621094 205.585938 280.714844 205.492188 280.714844 205.375 Z M 280.714844 205.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.359375 208.648438 C 282.359375 208.53125 282.265625 208.4375 282.148438 208.4375 C 282.03125 208.4375 281.9375 208.53125 281.9375 208.648438 C 281.9375 208.765625 282.03125 208.859375 282.148438 208.859375 C 282.265625 208.859375 282.359375 208.765625 282.359375 208.648438 Z M 282.359375 208.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.105469 207.671875 C 281.105469 207.554688 281.011719 207.460938 280.894531 207.460938 C 280.777344 207.460938 280.683594 207.554688 280.683594 207.671875 C 280.683594 207.789062 280.777344 207.882812 280.894531 207.882812 C 281.011719 207.882812 281.105469 207.789062 281.105469 207.671875 Z M 281.105469 207.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.011719 210.960938 C 282.011719 210.84375 281.917969 210.75 281.800781 210.75 C 281.683594 210.75 281.589844 210.84375 281.589844 210.960938 C 281.589844 211.078125 281.683594 211.171875 281.800781 211.171875 C 281.917969 211.171875 282.011719 211.078125 282.011719 210.960938 Z M 282.011719 210.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.484375 213.933594 C 281.484375 213.816406 281.390625 213.722656 281.273438 213.722656 C 281.15625 213.722656 281.0625 213.816406 281.0625 213.933594 C 281.0625 214.050781 281.15625 214.144531 281.273438 214.144531 C 281.390625 214.144531 281.484375 214.050781 281.484375 213.933594 Z M 281.484375 213.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.539062 215.707031 C 280.539062 215.589844 280.445312 215.496094 280.328125 215.496094 C 280.210938 215.496094 280.117188 215.589844 280.117188 215.707031 C 280.117188 215.824219 280.210938 215.917969 280.328125 215.917969 C 280.445312 215.917969 280.539062 215.824219 280.539062 215.707031 Z M 280.539062 215.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.734375 211.175781 C 283.734375 211.058594 283.640625 210.964844 283.523438 210.964844 C 283.40625 210.964844 283.3125 211.058594 283.3125 211.175781 C 283.3125 211.292969 283.40625 211.386719 283.523438 211.386719 C 283.640625 211.386719 283.734375 211.292969 283.734375 211.175781 Z M 283.734375 211.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.289062 213.90625 C 286.289062 213.789062 286.195312 213.695312 286.078125 213.695312 C 285.960938 213.695312 285.867188 213.789062 285.867188 213.90625 C 285.867188 214.023438 285.960938 214.117188 286.078125 214.117188 C 286.195312 214.117188 286.289062 214.023438 286.289062 213.90625 Z M 286.289062 213.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 288.417969 216.21875 C 288.417969 216.101562 288.324219 216.007812 288.207031 216.007812 C 288.089844 216.007812 287.996094 216.101562 287.996094 216.21875 C 287.996094 216.335938 288.089844 216.429688 288.207031 216.429688 C 288.324219 216.429688 288.417969 216.335938 288.417969 216.21875 Z M 288.417969 216.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.035156 218.683594 C 285.035156 218.566406 284.941406 218.472656 284.824219 218.472656 C 284.707031 218.472656 284.613281 218.566406 284.613281 218.683594 C 284.613281 218.800781 284.707031 218.894531 284.824219 218.894531 C 284.941406 218.894531 285.035156 218.800781 285.035156 218.683594 Z M 285.035156 218.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.082031 218.644531 C 284.082031 218.527344 283.988281 218.433594 283.871094 218.433594 C 283.753906 218.433594 283.660156 218.527344 283.660156 218.644531 C 283.660156 218.761719 283.753906 218.855469 283.871094 218.855469 C 283.988281 218.855469 284.082031 218.761719 284.082031 218.644531 Z M 284.082031 218.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.234375 216.453125 C 287.234375 216.335938 287.140625 216.242188 287.023438 216.242188 C 286.90625 216.242188 286.8125 216.335938 286.8125 216.453125 C 286.8125 216.570312 286.90625 216.664062 287.023438 216.664062 C 287.140625 216.664062 287.234375 216.570312 287.234375 216.453125 Z M 287.234375 216.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.238281 217.878906 C 284.238281 217.761719 284.144531 217.667969 284.027344 217.667969 C 283.910156 217.667969 283.816406 217.761719 283.816406 217.878906 C 283.816406 217.996094 283.910156 218.089844 284.027344 218.089844 C 284.144531 218.089844 284.238281 217.996094 284.238281 217.878906 Z M 284.238281 217.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.410156 215.984375 C 284.410156 215.867188 284.316406 215.773438 284.199219 215.773438 C 284.082031 215.773438 283.988281 215.867188 283.988281 215.984375 C 283.988281 216.101562 284.082031 216.195312 284.199219 216.195312 C 284.316406 216.195312 284.410156 216.101562 284.410156 215.984375 Z M 284.410156 215.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.496094 217.488281 C 289.496094 217.371094 289.402344 217.277344 289.285156 217.277344 C 289.167969 217.277344 289.074219 217.371094 289.074219 217.488281 C 289.074219 217.605469 289.167969 217.699219 289.285156 217.699219 C 289.402344 217.699219 289.496094 217.605469 289.496094 217.488281 Z M 289.496094 217.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.960938 220.613281 C 285.960938 220.496094 285.867188 220.402344 285.75 220.402344 C 285.632812 220.402344 285.539062 220.496094 285.539062 220.613281 C 285.539062 220.730469 285.632812 220.824219 285.75 220.824219 C 285.867188 220.824219 285.960938 220.730469 285.960938 220.613281 Z M 285.960938 220.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.476562 217.195312 C 285.476562 217.078125 285.382812 216.984375 285.265625 216.984375 C 285.148438 216.984375 285.054688 217.078125 285.054688 217.195312 C 285.054688 217.3125 285.148438 217.40625 285.265625 217.40625 C 285.382812 217.40625 285.476562 217.3125 285.476562 217.195312 Z M 285.476562 217.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.671875 217.324219 C 285.671875 217.207031 285.578125 217.113281 285.460938 217.113281 C 285.34375 217.113281 285.25 217.207031 285.25 217.324219 C 285.25 217.441406 285.34375 217.535156 285.460938 217.535156 C 285.578125 217.535156 285.671875 217.441406 285.671875 217.324219 Z M 285.671875 217.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.011719 215.878906 C 287.011719 215.761719 286.917969 215.667969 286.800781 215.667969 C 286.683594 215.667969 286.589844 215.761719 286.589844 215.878906 C 286.589844 215.996094 286.683594 216.089844 286.800781 216.089844 C 286.917969 216.089844 287.011719 215.996094 287.011719 215.878906 Z M 287.011719 215.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 290.417969 217.335938 C 290.417969 217.21875 290.324219 217.125 290.207031 217.125 C 290.089844 217.125 289.996094 217.21875 289.996094 217.335938 C 289.996094 217.453125 290.089844 217.546875 290.207031 217.546875 C 290.324219 217.546875 290.417969 217.453125 290.417969 217.335938 Z M 290.417969 217.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.917969 217.546875 C 292.917969 217.429688 292.824219 217.335938 292.707031 217.335938 C 292.589844 217.335938 292.496094 217.429688 292.496094 217.546875 C 292.496094 217.664062 292.589844 217.757812 292.707031 217.757812 C 292.824219 217.757812 292.917969 217.664062 292.917969 217.546875 Z M 292.917969 217.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 292.542969 213.226562 C 292.542969 213.109375 292.449219 213.015625 292.332031 213.015625 C 292.214844 213.015625 292.121094 213.109375 292.121094 213.226562 C 292.121094 213.34375 292.214844 213.4375 292.332031 213.4375 C 292.449219 213.4375 292.542969 213.34375 292.542969 213.226562 Z M 292.542969 213.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.6875 213.136719 C 289.6875 213.019531 289.59375 212.925781 289.476562 212.925781 C 289.359375 212.925781 289.265625 213.019531 289.265625 213.136719 C 289.265625 213.253906 289.359375 213.347656 289.476562 213.347656 C 289.59375 213.347656 289.6875 213.253906 289.6875 213.136719 Z M 289.6875 213.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.523438 210.539062 C 289.523438 210.421875 289.429688 210.328125 289.3125 210.328125 C 289.195312 210.328125 289.101562 210.421875 289.101562 210.539062 C 289.101562 210.65625 289.195312 210.75 289.3125 210.75 C 289.429688 210.75 289.523438 210.65625 289.523438 210.539062 Z M 289.523438 210.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.898438 215.789062 C 287.898438 215.671875 287.804688 215.578125 287.6875 215.578125 C 287.570312 215.578125 287.476562 215.671875 287.476562 215.789062 C 287.476562 215.90625 287.570312 216 287.6875 216 C 287.804688 216 287.898438 215.90625 287.898438 215.789062 Z M 287.898438 215.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.84375 212.390625 C 287.84375 212.273438 287.75 212.179688 287.632812 212.179688 C 287.515625 212.179688 287.421875 212.273438 287.421875 212.390625 C 287.421875 212.507812 287.515625 212.601562 287.632812 212.601562 C 287.75 212.601562 287.84375 212.507812 287.84375 212.390625 Z M 287.84375 212.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.179688 215.121094 C 287.179688 215.003906 287.085938 214.910156 286.96875 214.910156 C 286.851562 214.910156 286.757812 215.003906 286.757812 215.121094 C 286.757812 215.238281 286.851562 215.332031 286.96875 215.332031 C 287.085938 215.332031 287.179688 215.238281 287.179688 215.121094 Z M 287.179688 215.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.265625 215.320312 C 287.265625 215.203125 287.171875 215.109375 287.054688 215.109375 C 286.9375 215.109375 286.84375 215.203125 286.84375 215.320312 C 286.84375 215.4375 286.9375 215.53125 287.054688 215.53125 C 287.171875 215.53125 287.265625 215.4375 287.265625 215.320312 Z M 287.265625 215.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.085938 213.742188 C 284.085938 213.625 283.992188 213.53125 283.875 213.53125 C 283.757812 213.53125 283.664062 213.625 283.664062 213.742188 C 283.664062 213.859375 283.757812 213.953125 283.875 213.953125 C 283.992188 213.953125 284.085938 213.859375 284.085938 213.742188 Z M 284.085938 213.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.375 212.414062 C 285.375 212.296875 285.28125 212.203125 285.164062 212.203125 C 285.046875 212.203125 284.953125 212.296875 284.953125 212.414062 C 284.953125 212.53125 285.046875 212.625 285.164062 212.625 C 285.28125 212.625 285.375 212.53125 285.375 212.414062 Z M 285.375 212.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.496094 215.539062 C 281.496094 215.421875 281.402344 215.328125 281.285156 215.328125 C 281.167969 215.328125 281.074219 215.421875 281.074219 215.539062 C 281.074219 215.65625 281.167969 215.75 281.285156 215.75 C 281.402344 215.75 281.496094 215.65625 281.496094 215.539062 Z M 281.496094 215.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.769531 217.128906 C 282.769531 217.011719 282.675781 216.917969 282.558594 216.917969 C 282.441406 216.917969 282.347656 217.011719 282.347656 217.128906 C 282.347656 217.246094 282.441406 217.339844 282.558594 217.339844 C 282.675781 217.339844 282.769531 217.246094 282.769531 217.128906 Z M 282.769531 217.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 282.230469 217.554688 C 282.230469 217.4375 282.136719 217.34375 282.019531 217.34375 C 281.902344 217.34375 281.808594 217.4375 281.808594 217.554688 C 281.808594 217.671875 281.902344 217.765625 282.019531 217.765625 C 282.136719 217.765625 282.230469 217.671875 282.230469 217.554688 Z M 282.230469 217.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.144531 217.230469 C 283.144531 217.113281 283.050781 217.019531 282.933594 217.019531 C 282.816406 217.019531 282.722656 217.113281 282.722656 217.230469 C 282.722656 217.347656 282.816406 217.441406 282.933594 217.441406 C 283.050781 217.441406 283.144531 217.347656 283.144531 217.230469 Z M 283.144531 217.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.816406 216.496094 C 283.816406 216.378906 283.722656 216.285156 283.605469 216.285156 C 283.488281 216.285156 283.394531 216.378906 283.394531 216.496094 C 283.394531 216.613281 283.488281 216.707031 283.605469 216.707031 C 283.722656 216.707031 283.816406 216.613281 283.816406 216.496094 Z M 283.816406 216.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.597656 213.773438 C 287.597656 213.65625 287.503906 213.5625 287.386719 213.5625 C 287.269531 213.5625 287.175781 213.65625 287.175781 213.773438 C 287.175781 213.890625 287.269531 213.984375 287.386719 213.984375 C 287.503906 213.984375 287.597656 213.890625 287.597656 213.773438 Z M 287.597656 213.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.933594 215.8125 C 285.933594 215.695312 285.839844 215.601562 285.722656 215.601562 C 285.605469 215.601562 285.511719 215.695312 285.511719 215.8125 C 285.511719 215.929688 285.605469 216.023438 285.722656 216.023438 C 285.839844 216.023438 285.933594 215.929688 285.933594 215.8125 Z M 285.933594 215.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.667969 214.523438 C 284.667969 214.40625 284.574219 214.3125 284.457031 214.3125 C 284.339844 214.3125 284.246094 214.40625 284.246094 214.523438 C 284.246094 214.640625 284.339844 214.734375 284.457031 214.734375 C 284.574219 214.734375 284.667969 214.640625 284.667969 214.523438 Z M 284.667969 214.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 285.105469 211.160156 C 285.105469 211.042969 285.011719 210.949219 284.894531 210.949219 C 284.777344 210.949219 284.683594 211.042969 284.683594 211.160156 C 284.683594 211.277344 284.777344 211.371094 284.894531 211.371094 C 285.011719 211.371094 285.105469 211.277344 285.105469 211.160156 Z M 285.105469 211.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.039062 211.09375 C 287.039062 210.976562 286.945312 210.882812 286.828125 210.882812 C 286.710938 210.882812 286.617188 210.976562 286.617188 211.09375 C 286.617188 211.210938 286.710938 211.304688 286.828125 211.304688 C 286.945312 211.304688 287.039062 211.210938 287.039062 211.09375 Z M 287.039062 211.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 287.085938 210.464844 C 287.085938 210.347656 286.992188 210.253906 286.875 210.253906 C 286.757812 210.253906 286.664062 210.347656 286.664062 210.464844 C 286.664062 210.582031 286.757812 210.675781 286.875 210.675781 C 286.992188 210.675781 287.085938 210.582031 287.085938 210.464844 Z M 287.085938 210.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.511719 207.539062 C 286.511719 207.421875 286.417969 207.328125 286.300781 207.328125 C 286.183594 207.328125 286.089844 207.421875 286.089844 207.539062 C 286.089844 207.65625 286.183594 207.75 286.300781 207.75 C 286.417969 207.75 286.511719 207.65625 286.511719 207.539062 Z M 286.511719 207.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 286.496094 207.449219 C 286.496094 207.332031 286.402344 207.238281 286.285156 207.238281 C 286.167969 207.238281 286.074219 207.332031 286.074219 207.449219 C 286.074219 207.566406 286.167969 207.660156 286.285156 207.660156 C 286.402344 207.660156 286.496094 207.566406 286.496094 207.449219 Z M 286.496094 207.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 289.042969 208.71875 C 289.042969 208.601562 288.949219 208.507812 288.832031 208.507812 C 288.714844 208.507812 288.621094 208.601562 288.621094 208.71875 C 288.621094 208.835938 288.714844 208.929688 288.832031 208.929688 C 288.949219 208.929688 289.042969 208.835938 289.042969 208.71875 Z M 289.042969 208.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 284.644531 207.535156 C 284.644531 207.417969 284.550781 207.324219 284.433594 207.324219 C 284.316406 207.324219 284.222656 207.417969 284.222656 207.535156 C 284.222656 207.652344 284.316406 207.746094 284.433594 207.746094 C 284.550781 207.746094 284.644531 207.652344 284.644531 207.535156 Z M 284.644531 207.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.964844 207.183594 C 283.964844 207.066406 283.871094 206.972656 283.753906 206.972656 C 283.636719 206.972656 283.542969 207.066406 283.542969 207.183594 C 283.542969 207.300781 283.636719 207.394531 283.753906 207.394531 C 283.871094 207.394531 283.964844 207.300781 283.964844 207.183594 Z M 283.964844 207.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 283.019531 209.617188 C 283.019531 209.5 282.925781 209.40625 282.808594 209.40625 C 282.691406 209.40625 282.597656 209.5 282.597656 209.617188 C 282.597656 209.734375 282.691406 209.828125 282.808594 209.828125 C 282.925781 209.828125 283.019531 209.734375 283.019531 209.617188 Z M 283.019531 209.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.164062 209.113281 C 281.164062 208.996094 281.070312 208.902344 280.953125 208.902344 C 280.835938 208.902344 280.742188 208.996094 280.742188 209.113281 C 280.742188 209.230469 280.835938 209.324219 280.953125 209.324219 C 281.070312 209.324219 281.164062 209.230469 281.164062 209.113281 Z M 281.164062 209.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.375 210.523438 C 280.375 210.40625 280.28125 210.3125 280.164062 210.3125 C 280.046875 210.3125 279.953125 210.40625 279.953125 210.523438 C 279.953125 210.640625 280.046875 210.734375 280.164062 210.734375 C 280.28125 210.734375 280.375 210.640625 280.375 210.523438 Z M 280.375 210.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.945312 207.722656 C 278.945312 207.605469 278.851562 207.511719 278.734375 207.511719 C 278.617188 207.511719 278.523438 207.605469 278.523438 207.722656 C 278.523438 207.839844 278.617188 207.933594 278.734375 207.933594 C 278.851562 207.933594 278.945312 207.839844 278.945312 207.722656 Z M 278.945312 207.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.730469 203.785156 C 280.730469 203.667969 280.636719 203.574219 280.519531 203.574219 C 280.402344 203.574219 280.308594 203.667969 280.308594 203.785156 C 280.308594 203.902344 280.402344 203.996094 280.519531 203.996094 C 280.636719 203.996094 280.730469 203.902344 280.730469 203.785156 Z M 280.730469 203.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 281.503906 203.222656 C 281.503906 203.105469 281.410156 203.011719 281.292969 203.011719 C 281.175781 203.011719 281.082031 203.105469 281.082031 203.222656 C 281.082031 203.339844 281.175781 203.433594 281.292969 203.433594 C 281.410156 203.433594 281.503906 203.339844 281.503906 203.222656 Z M 281.503906 203.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.621094 202.300781 C 278.621094 202.183594 278.527344 202.089844 278.410156 202.089844 C 278.292969 202.089844 278.199219 202.183594 278.199219 202.300781 C 278.199219 202.417969 278.292969 202.511719 278.410156 202.511719 C 278.527344 202.511719 278.621094 202.417969 278.621094 202.300781 Z M 278.621094 202.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.277344 200.875 C 280.277344 200.757812 280.183594 200.664062 280.066406 200.664062 C 279.949219 200.664062 279.855469 200.757812 279.855469 200.875 C 279.855469 200.992188 279.949219 201.085938 280.066406 201.085938 C 280.183594 201.085938 280.277344 200.992188 280.277344 200.875 Z M 280.277344 200.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.78125 197.558594 C 279.78125 197.441406 279.6875 197.347656 279.570312 197.347656 C 279.453125 197.347656 279.359375 197.441406 279.359375 197.558594 C 279.359375 197.675781 279.453125 197.769531 279.570312 197.769531 C 279.6875 197.769531 279.78125 197.675781 279.78125 197.558594 Z M 279.78125 197.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.683594 202.03125 C 277.683594 201.914062 277.589844 201.820312 277.472656 201.820312 C 277.355469 201.820312 277.261719 201.914062 277.261719 202.03125 C 277.261719 202.148438 277.355469 202.242188 277.472656 202.242188 C 277.589844 202.242188 277.683594 202.148438 277.683594 202.03125 Z M 277.683594 202.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.96875 205.359375 C 278.96875 205.242188 278.875 205.148438 278.757812 205.148438 C 278.640625 205.148438 278.546875 205.242188 278.546875 205.359375 C 278.546875 205.476562 278.640625 205.570312 278.757812 205.570312 C 278.875 205.570312 278.96875 205.476562 278.96875 205.359375 Z M 278.96875 205.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.191406 204.792969 C 277.191406 204.675781 277.097656 204.582031 276.980469 204.582031 C 276.863281 204.582031 276.769531 204.675781 276.769531 204.792969 C 276.769531 204.910156 276.863281 205.003906 276.980469 205.003906 C 277.097656 205.003906 277.191406 204.910156 277.191406 204.792969 Z M 277.191406 204.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.734375 207.234375 C 273.734375 207.117188 273.640625 207.023438 273.523438 207.023438 C 273.40625 207.023438 273.3125 207.117188 273.3125 207.234375 C 273.3125 207.351562 273.40625 207.445312 273.523438 207.445312 C 273.640625 207.445312 273.734375 207.351562 273.734375 207.234375 Z M 273.734375 207.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.261719 206.738281 C 275.261719 206.621094 275.167969 206.527344 275.050781 206.527344 C 274.933594 206.527344 274.839844 206.621094 274.839844 206.738281 C 274.839844 206.855469 274.933594 206.949219 275.050781 206.949219 C 275.167969 206.949219 275.261719 206.855469 275.261719 206.738281 Z M 275.261719 206.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.039062 208.679688 C 271.039062 208.5625 270.945312 208.46875 270.828125 208.46875 C 270.710938 208.46875 270.617188 208.5625 270.617188 208.679688 C 270.617188 208.796875 270.710938 208.890625 270.828125 208.890625 C 270.945312 208.890625 271.039062 208.796875 271.039062 208.679688 Z M 271.039062 208.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.046875 210.957031 C 271.046875 210.839844 270.953125 210.746094 270.835938 210.746094 C 270.71875 210.746094 270.625 210.839844 270.625 210.957031 C 270.625 211.074219 270.71875 211.167969 270.835938 211.167969 C 270.953125 211.167969 271.046875 211.074219 271.046875 210.957031 Z M 271.046875 210.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.21875 209.519531 C 272.21875 209.402344 272.125 209.308594 272.007812 209.308594 C 271.890625 209.308594 271.796875 209.402344 271.796875 209.519531 C 271.796875 209.636719 271.890625 209.730469 272.007812 209.730469 C 272.125 209.730469 272.21875 209.636719 272.21875 209.519531 Z M 272.21875 209.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.183594 209.984375 C 273.183594 209.867188 273.089844 209.773438 272.972656 209.773438 C 272.855469 209.773438 272.761719 209.867188 272.761719 209.984375 C 272.761719 210.101562 272.855469 210.195312 272.972656 210.195312 C 273.089844 210.195312 273.183594 210.101562 273.183594 209.984375 Z M 273.183594 209.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.257812 211.582031 C 276.257812 211.464844 276.164062 211.371094 276.046875 211.371094 C 275.929688 211.371094 275.835938 211.464844 275.835938 211.582031 C 275.835938 211.699219 275.929688 211.792969 276.046875 211.792969 C 276.164062 211.792969 276.257812 211.699219 276.257812 211.582031 Z M 276.257812 211.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.191406 213.523438 C 273.191406 213.40625 273.097656 213.3125 272.980469 213.3125 C 272.863281 213.3125 272.769531 213.40625 272.769531 213.523438 C 272.769531 213.640625 272.863281 213.734375 272.980469 213.734375 C 273.097656 213.734375 273.191406 213.640625 273.191406 213.523438 Z M 273.191406 213.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.402344 216.1875 C 271.402344 216.070312 271.308594 215.976562 271.191406 215.976562 C 271.074219 215.976562 270.980469 216.070312 270.980469 216.1875 C 270.980469 216.304688 271.074219 216.398438 271.191406 216.398438 C 271.308594 216.398438 271.402344 216.304688 271.402344 216.1875 Z M 271.402344 216.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.785156 216.054688 C 270.785156 215.9375 270.691406 215.84375 270.574219 215.84375 C 270.457031 215.84375 270.363281 215.9375 270.363281 216.054688 C 270.363281 216.171875 270.457031 216.265625 270.574219 216.265625 C 270.691406 216.265625 270.785156 216.171875 270.785156 216.054688 Z M 270.785156 216.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.917969 217.792969 C 271.917969 217.675781 271.824219 217.582031 271.707031 217.582031 C 271.589844 217.582031 271.496094 217.675781 271.496094 217.792969 C 271.496094 217.910156 271.589844 218.003906 271.707031 218.003906 C 271.824219 218.003906 271.917969 217.910156 271.917969 217.792969 Z M 271.917969 217.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.378906 216.472656 C 273.378906 216.355469 273.285156 216.261719 273.167969 216.261719 C 273.050781 216.261719 272.957031 216.355469 272.957031 216.472656 C 272.957031 216.589844 273.050781 216.683594 273.167969 216.683594 C 273.285156 216.683594 273.378906 216.589844 273.378906 216.472656 Z M 273.378906 216.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.808594 224.136719 C 270.808594 224.019531 270.714844 223.925781 270.597656 223.925781 C 270.480469 223.925781 270.386719 224.019531 270.386719 224.136719 C 270.386719 224.253906 270.480469 224.347656 270.597656 224.347656 C 270.714844 224.347656 270.808594 224.253906 270.808594 224.136719 Z M 270.808594 224.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.402344 226.183594 C 271.402344 226.066406 271.308594 225.972656 271.191406 225.972656 C 271.074219 225.972656 270.980469 226.066406 270.980469 226.183594 C 270.980469 226.300781 271.074219 226.394531 271.191406 226.394531 C 271.308594 226.394531 271.402344 226.300781 271.402344 226.183594 Z M 271.402344 226.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.132812 225.964844 C 271.132812 225.847656 271.039062 225.753906 270.921875 225.753906 C 270.804688 225.753906 270.710938 225.847656 270.710938 225.964844 C 270.710938 226.082031 270.804688 226.175781 270.921875 226.175781 C 271.039062 226.175781 271.132812 226.082031 271.132812 225.964844 Z M 271.132812 225.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.332031 225.191406 C 270.332031 225.074219 270.238281 224.980469 270.121094 224.980469 C 270.003906 224.980469 269.910156 225.074219 269.910156 225.191406 C 269.910156 225.308594 270.003906 225.402344 270.121094 225.402344 C 270.238281 225.402344 270.332031 225.308594 270.332031 225.191406 Z M 270.332031 225.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.53125 223.859375 C 274.53125 223.742188 274.4375 223.648438 274.320312 223.648438 C 274.203125 223.648438 274.109375 223.742188 274.109375 223.859375 C 274.109375 223.976562 274.203125 224.070312 274.320312 224.070312 C 274.4375 224.070312 274.53125 223.976562 274.53125 223.859375 Z M 274.53125 223.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.019531 221.976562 C 273.019531 221.859375 272.925781 221.765625 272.808594 221.765625 C 272.691406 221.765625 272.597656 221.859375 272.597656 221.976562 C 272.597656 222.09375 272.691406 222.1875 272.808594 222.1875 C 272.925781 222.1875 273.019531 222.09375 273.019531 221.976562 Z M 273.019531 221.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.566406 225.335938 C 274.566406 225.21875 274.472656 225.125 274.355469 225.125 C 274.238281 225.125 274.144531 225.21875 274.144531 225.335938 C 274.144531 225.453125 274.238281 225.546875 274.355469 225.546875 C 274.472656 225.546875 274.566406 225.453125 274.566406 225.335938 Z M 274.566406 225.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.738281 226.191406 C 275.738281 226.074219 275.644531 225.980469 275.527344 225.980469 C 275.410156 225.980469 275.316406 226.074219 275.316406 226.191406 C 275.316406 226.308594 275.410156 226.402344 275.527344 226.402344 C 275.644531 226.402344 275.738281 226.308594 275.738281 226.191406 Z M 275.738281 226.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.707031 225.058594 C 273.707031 224.941406 273.613281 224.847656 273.496094 224.847656 C 273.378906 224.847656 273.285156 224.941406 273.285156 225.058594 C 273.285156 225.175781 273.378906 225.269531 273.496094 225.269531 C 273.613281 225.269531 273.707031 225.175781 273.707031 225.058594 Z M 273.707031 225.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.421875 221.761719 C 275.421875 221.644531 275.328125 221.550781 275.210938 221.550781 C 275.09375 221.550781 275 221.644531 275 221.761719 C 275 221.878906 275.09375 221.972656 275.210938 221.972656 C 275.328125 221.972656 275.421875 221.878906 275.421875 221.761719 Z M 275.421875 221.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.09375 223.480469 C 272.09375 223.363281 272 223.269531 271.882812 223.269531 C 271.765625 223.269531 271.671875 223.363281 271.671875 223.480469 C 271.671875 223.597656 271.765625 223.691406 271.882812 223.691406 C 272 223.691406 272.09375 223.597656 272.09375 223.480469 Z M 272.09375 223.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.617188 221.761719 C 268.617188 221.644531 268.523438 221.550781 268.40625 221.550781 C 268.289062 221.550781 268.195312 221.644531 268.195312 221.761719 C 268.195312 221.878906 268.289062 221.972656 268.40625 221.972656 C 268.523438 221.972656 268.617188 221.878906 268.617188 221.761719 Z M 268.617188 221.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.277344 222.191406 C 266.277344 222.074219 266.183594 221.980469 266.066406 221.980469 C 265.949219 221.980469 265.855469 222.074219 265.855469 222.191406 C 265.855469 222.308594 265.949219 222.402344 266.066406 222.402344 C 266.183594 222.402344 266.277344 222.308594 266.277344 222.191406 Z M 266.277344 222.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.621094 222.683594 C 265.621094 222.566406 265.527344 222.472656 265.410156 222.472656 C 265.292969 222.472656 265.199219 222.566406 265.199219 222.683594 C 265.199219 222.800781 265.292969 222.894531 265.410156 222.894531 C 265.527344 222.894531 265.621094 222.800781 265.621094 222.683594 Z M 265.621094 222.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.835938 219.503906 C 265.835938 219.386719 265.742188 219.292969 265.625 219.292969 C 265.507812 219.292969 265.414062 219.386719 265.414062 219.503906 C 265.414062 219.621094 265.507812 219.714844 265.625 219.714844 C 265.742188 219.714844 265.835938 219.621094 265.835938 219.503906 Z M 265.835938 219.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.722656 222.550781 C 264.722656 222.433594 264.628906 222.339844 264.511719 222.339844 C 264.394531 222.339844 264.300781 222.433594 264.300781 222.550781 C 264.300781 222.667969 264.394531 222.761719 264.511719 222.761719 C 264.628906 222.761719 264.722656 222.667969 264.722656 222.550781 Z M 264.722656 222.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.332031 224.132812 C 264.332031 224.015625 264.238281 223.921875 264.121094 223.921875 C 264.003906 223.921875 263.910156 224.015625 263.910156 224.132812 C 263.910156 224.25 264.003906 224.34375 264.121094 224.34375 C 264.238281 224.34375 264.332031 224.25 264.332031 224.132812 Z M 264.332031 224.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.726562 221.636719 C 264.726562 221.519531 264.632812 221.425781 264.515625 221.425781 C 264.398438 221.425781 264.304688 221.519531 264.304688 221.636719 C 264.304688 221.753906 264.398438 221.847656 264.515625 221.847656 C 264.632812 221.847656 264.726562 221.753906 264.726562 221.636719 Z M 264.726562 221.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.640625 220.359375 C 261.640625 220.242188 261.546875 220.148438 261.429688 220.148438 C 261.3125 220.148438 261.21875 220.242188 261.21875 220.359375 C 261.21875 220.476562 261.3125 220.570312 261.429688 220.570312 C 261.546875 220.570312 261.640625 220.476562 261.640625 220.359375 Z M 261.640625 220.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.355469 219.820312 C 261.355469 219.703125 261.261719 219.609375 261.144531 219.609375 C 261.027344 219.609375 260.933594 219.703125 260.933594 219.820312 C 260.933594 219.9375 261.027344 220.03125 261.144531 220.03125 C 261.261719 220.03125 261.355469 219.9375 261.355469 219.820312 Z M 261.355469 219.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.953125 218.542969 C 262.953125 218.425781 262.859375 218.332031 262.742188 218.332031 C 262.625 218.332031 262.53125 218.425781 262.53125 218.542969 C 262.53125 218.660156 262.625 218.753906 262.742188 218.753906 C 262.859375 218.753906 262.953125 218.660156 262.953125 218.542969 Z M 262.953125 218.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.507812 218.546875 C 262.507812 218.429688 262.414062 218.335938 262.296875 218.335938 C 262.179688 218.335938 262.085938 218.429688 262.085938 218.546875 C 262.085938 218.664062 262.179688 218.757812 262.296875 218.757812 C 262.414062 218.757812 262.507812 218.664062 262.507812 218.546875 Z M 262.507812 218.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.328125 216.320312 C 262.328125 216.203125 262.234375 216.109375 262.117188 216.109375 C 262 216.109375 261.90625 216.203125 261.90625 216.320312 C 261.90625 216.4375 262 216.53125 262.117188 216.53125 C 262.234375 216.53125 262.328125 216.4375 262.328125 216.320312 Z M 262.328125 216.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.730469 215.972656 C 260.730469 215.855469 260.636719 215.761719 260.519531 215.761719 C 260.402344 215.761719 260.308594 215.855469 260.308594 215.972656 C 260.308594 216.089844 260.402344 216.183594 260.519531 216.183594 C 260.636719 216.183594 260.730469 216.089844 260.730469 215.972656 Z M 260.730469 215.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.070312 213.597656 C 263.070312 213.480469 262.976562 213.386719 262.859375 213.386719 C 262.742188 213.386719 262.648438 213.480469 262.648438 213.597656 C 262.648438 213.714844 262.742188 213.808594 262.859375 213.808594 C 262.976562 213.808594 263.070312 213.714844 263.070312 213.597656 Z M 263.070312 213.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.839844 216.65625 C 265.839844 216.539062 265.746094 216.445312 265.628906 216.445312 C 265.511719 216.445312 265.417969 216.539062 265.417969 216.65625 C 265.417969 216.773438 265.511719 216.867188 265.628906 216.867188 C 265.746094 216.867188 265.839844 216.773438 265.839844 216.65625 Z M 265.839844 216.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.945312 214.863281 C 266.945312 214.746094 266.851562 214.652344 266.734375 214.652344 C 266.617188 214.652344 266.523438 214.746094 266.523438 214.863281 C 266.523438 214.980469 266.617188 215.074219 266.734375 215.074219 C 266.851562 215.074219 266.945312 214.980469 266.945312 214.863281 Z M 266.945312 214.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.566406 211.386719 C 264.566406 211.269531 264.472656 211.175781 264.355469 211.175781 C 264.238281 211.175781 264.144531 211.269531 264.144531 211.386719 C 264.144531 211.503906 264.238281 211.597656 264.355469 211.597656 C 264.472656 211.597656 264.566406 211.503906 264.566406 211.386719 Z M 264.566406 211.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.269531 213.175781 C 263.269531 213.058594 263.175781 212.964844 263.058594 212.964844 C 262.941406 212.964844 262.847656 213.058594 262.847656 213.175781 C 262.847656 213.292969 262.941406 213.386719 263.058594 213.386719 C 263.175781 213.386719 263.269531 213.292969 263.269531 213.175781 Z M 263.269531 213.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.800781 214.261719 C 265.800781 214.144531 265.707031 214.050781 265.589844 214.050781 C 265.472656 214.050781 265.378906 214.144531 265.378906 214.261719 C 265.378906 214.378906 265.472656 214.472656 265.589844 214.472656 C 265.707031 214.472656 265.800781 214.378906 265.800781 214.261719 Z M 265.800781 214.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.226562 210.417969 C 264.226562 210.300781 264.132812 210.207031 264.015625 210.207031 C 263.898438 210.207031 263.804688 210.300781 263.804688 210.417969 C 263.804688 210.535156 263.898438 210.628906 264.015625 210.628906 C 264.132812 210.628906 264.226562 210.535156 264.226562 210.417969 Z M 264.226562 210.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.433594 211.425781 C 264.433594 211.308594 264.339844 211.214844 264.222656 211.214844 C 264.105469 211.214844 264.011719 211.308594 264.011719 211.425781 C 264.011719 211.542969 264.105469 211.636719 264.222656 211.636719 C 264.339844 211.636719 264.433594 211.542969 264.433594 211.425781 Z M 264.433594 211.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.105469 210.910156 C 263.105469 210.792969 263.011719 210.699219 262.894531 210.699219 C 262.777344 210.699219 262.683594 210.792969 262.683594 210.910156 C 262.683594 211.027344 262.777344 211.121094 262.894531 211.121094 C 263.011719 211.121094 263.105469 211.027344 263.105469 210.910156 Z M 263.105469 210.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.910156 211.71875 C 263.910156 211.601562 263.816406 211.507812 263.699219 211.507812 C 263.582031 211.507812 263.488281 211.601562 263.488281 211.71875 C 263.488281 211.835938 263.582031 211.929688 263.699219 211.929688 C 263.816406 211.929688 263.910156 211.835938 263.910156 211.71875 Z M 263.910156 211.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.195312 214.128906 C 266.195312 214.011719 266.101562 213.917969 265.984375 213.917969 C 265.867188 213.917969 265.773438 214.011719 265.773438 214.128906 C 265.773438 214.246094 265.867188 214.339844 265.984375 214.339844 C 266.101562 214.339844 266.195312 214.246094 266.195312 214.128906 Z M 266.195312 214.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.042969 215.976562 C 267.042969 215.859375 266.949219 215.765625 266.832031 215.765625 C 266.714844 215.765625 266.621094 215.859375 266.621094 215.976562 C 266.621094 216.09375 266.714844 216.1875 266.832031 216.1875 C 266.949219 216.1875 267.042969 216.09375 267.042969 215.976562 Z M 267.042969 215.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.410156 211.230469 C 263.410156 211.113281 263.316406 211.019531 263.199219 211.019531 C 263.082031 211.019531 262.988281 211.113281 262.988281 211.230469 C 262.988281 211.347656 263.082031 211.441406 263.199219 211.441406 C 263.316406 211.441406 263.410156 211.347656 263.410156 211.230469 Z M 263.410156 211.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.132812 210.351562 C 262.132812 210.234375 262.039062 210.140625 261.921875 210.140625 C 261.804688 210.140625 261.710938 210.234375 261.710938 210.351562 C 261.710938 210.46875 261.804688 210.5625 261.921875 210.5625 C 262.039062 210.5625 262.132812 210.46875 262.132812 210.351562 Z M 262.132812 210.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.101562 207.574219 C 259.101562 207.457031 259.007812 207.363281 258.890625 207.363281 C 258.773438 207.363281 258.679688 207.457031 258.679688 207.574219 C 258.679688 207.691406 258.773438 207.785156 258.890625 207.785156 C 259.007812 207.785156 259.101562 207.691406 259.101562 207.574219 Z M 259.101562 207.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.75 207.226562 C 259.75 207.109375 259.65625 207.015625 259.539062 207.015625 C 259.421875 207.015625 259.328125 207.109375 259.328125 207.226562 C 259.328125 207.34375 259.421875 207.4375 259.539062 207.4375 C 259.65625 207.4375 259.75 207.34375 259.75 207.226562 Z M 259.75 207.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.234375 209.832031 C 257.234375 209.714844 257.140625 209.621094 257.023438 209.621094 C 256.90625 209.621094 256.8125 209.714844 256.8125 209.832031 C 256.8125 209.949219 256.90625 210.042969 257.023438 210.042969 C 257.140625 210.042969 257.234375 209.949219 257.234375 209.832031 Z M 257.234375 209.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.867188 210.234375 C 257.867188 210.117188 257.773438 210.023438 257.65625 210.023438 C 257.539062 210.023438 257.445312 210.117188 257.445312 210.234375 C 257.445312 210.351562 257.539062 210.445312 257.65625 210.445312 C 257.773438 210.445312 257.867188 210.351562 257.867188 210.234375 Z M 257.867188 210.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.09375 208.371094 C 258.09375 208.253906 258 208.160156 257.882812 208.160156 C 257.765625 208.160156 257.671875 208.253906 257.671875 208.371094 C 257.671875 208.488281 257.765625 208.582031 257.882812 208.582031 C 258 208.582031 258.09375 208.488281 258.09375 208.371094 Z M 258.09375 208.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.378906 207.082031 C 259.378906 206.964844 259.285156 206.871094 259.167969 206.871094 C 259.050781 206.871094 258.957031 206.964844 258.957031 207.082031 C 258.957031 207.199219 259.050781 207.292969 259.167969 207.292969 C 259.285156 207.292969 259.378906 207.199219 259.378906 207.082031 Z M 259.378906 207.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.085938 202.238281 C 258.085938 202.121094 257.992188 202.027344 257.875 202.027344 C 257.757812 202.027344 257.664062 202.121094 257.664062 202.238281 C 257.664062 202.355469 257.757812 202.449219 257.875 202.449219 C 257.992188 202.449219 258.085938 202.355469 258.085938 202.238281 Z M 258.085938 202.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.53125 199.140625 C 256.53125 199.023438 256.4375 198.929688 256.320312 198.929688 C 256.203125 198.929688 256.109375 199.023438 256.109375 199.140625 C 256.109375 199.257812 256.203125 199.351562 256.320312 199.351562 C 256.4375 199.351562 256.53125 199.257812 256.53125 199.140625 Z M 256.53125 199.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.855469 201.695312 C 255.855469 201.578125 255.761719 201.484375 255.644531 201.484375 C 255.527344 201.484375 255.433594 201.578125 255.433594 201.695312 C 255.433594 201.8125 255.527344 201.90625 255.644531 201.90625 C 255.761719 201.90625 255.855469 201.8125 255.855469 201.695312 Z M 255.855469 201.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.183594 203.128906 C 253.183594 203.011719 253.089844 202.917969 252.972656 202.917969 C 252.855469 202.917969 252.761719 203.011719 252.761719 203.128906 C 252.761719 203.246094 252.855469 203.339844 252.972656 203.339844 C 253.089844 203.339844 253.183594 203.246094 253.183594 203.128906 Z M 253.183594 203.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.203125 201.863281 C 252.203125 201.746094 252.109375 201.652344 251.992188 201.652344 C 251.875 201.652344 251.78125 201.746094 251.78125 201.863281 C 251.78125 201.980469 251.875 202.074219 251.992188 202.074219 C 252.109375 202.074219 252.203125 201.980469 252.203125 201.863281 Z M 252.203125 201.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.320312 203.582031 C 253.320312 203.464844 253.226562 203.371094 253.109375 203.371094 C 252.992188 203.371094 252.898438 203.464844 252.898438 203.582031 C 252.898438 203.699219 252.992188 203.792969 253.109375 203.792969 C 253.226562 203.792969 253.320312 203.699219 253.320312 203.582031 Z M 253.320312 203.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.589844 204.082031 C 253.589844 203.964844 253.496094 203.871094 253.378906 203.871094 C 253.261719 203.871094 253.167969 203.964844 253.167969 204.082031 C 253.167969 204.199219 253.261719 204.292969 253.378906 204.292969 C 253.496094 204.292969 253.589844 204.199219 253.589844 204.082031 Z M 253.589844 204.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.972656 206.644531 C 256.972656 206.527344 256.878906 206.433594 256.761719 206.433594 C 256.644531 206.433594 256.550781 206.527344 256.550781 206.644531 C 256.550781 206.761719 256.644531 206.855469 256.761719 206.855469 C 256.878906 206.855469 256.972656 206.761719 256.972656 206.644531 Z M 256.972656 206.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.335938 206.96875 C 256.335938 206.851562 256.242188 206.757812 256.125 206.757812 C 256.007812 206.757812 255.914062 206.851562 255.914062 206.96875 C 255.914062 207.085938 256.007812 207.179688 256.125 207.179688 C 256.242188 207.179688 256.335938 207.085938 256.335938 206.96875 Z M 256.335938 206.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.007812 204.980469 C 256.007812 204.863281 255.914062 204.769531 255.796875 204.769531 C 255.679688 204.769531 255.585938 204.863281 255.585938 204.980469 C 255.585938 205.097656 255.679688 205.191406 255.796875 205.191406 C 255.914062 205.191406 256.007812 205.097656 256.007812 204.980469 Z M 256.007812 204.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.371094 202.40625 C 255.371094 202.289062 255.277344 202.195312 255.160156 202.195312 C 255.042969 202.195312 254.949219 202.289062 254.949219 202.40625 C 254.949219 202.523438 255.042969 202.617188 255.160156 202.617188 C 255.277344 202.617188 255.371094 202.523438 255.371094 202.40625 Z M 255.371094 202.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.730469 201.046875 C 253.730469 200.929688 253.636719 200.835938 253.519531 200.835938 C 253.402344 200.835938 253.308594 200.929688 253.308594 201.046875 C 253.308594 201.164062 253.402344 201.257812 253.519531 201.257812 C 253.636719 201.257812 253.730469 201.164062 253.730469 201.046875 Z M 253.730469 201.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.984375 203.707031 C 253.984375 203.589844 253.890625 203.496094 253.773438 203.496094 C 253.65625 203.496094 253.5625 203.589844 253.5625 203.707031 C 253.5625 203.824219 253.65625 203.917969 253.773438 203.917969 C 253.890625 203.917969 253.984375 203.824219 253.984375 203.707031 Z M 253.984375 203.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.332031 201.691406 C 255.332031 201.574219 255.238281 201.480469 255.121094 201.480469 C 255.003906 201.480469 254.910156 201.574219 254.910156 201.691406 C 254.910156 201.808594 255.003906 201.902344 255.121094 201.902344 C 255.238281 201.902344 255.332031 201.808594 255.332031 201.691406 Z M 255.332031 201.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.800781 202.675781 C 256.800781 202.558594 256.707031 202.464844 256.589844 202.464844 C 256.472656 202.464844 256.378906 202.558594 256.378906 202.675781 C 256.378906 202.792969 256.472656 202.886719 256.589844 202.886719 C 256.707031 202.886719 256.800781 202.792969 256.800781 202.675781 Z M 256.800781 202.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.425781 202.890625 C 256.425781 202.773438 256.332031 202.679688 256.214844 202.679688 C 256.097656 202.679688 256.003906 202.773438 256.003906 202.890625 C 256.003906 203.007812 256.097656 203.101562 256.214844 203.101562 C 256.332031 203.101562 256.425781 203.007812 256.425781 202.890625 Z M 256.425781 202.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.359375 203.910156 C 253.359375 203.792969 253.265625 203.699219 253.148438 203.699219 C 253.03125 203.699219 252.9375 203.792969 252.9375 203.910156 C 252.9375 204.027344 253.03125 204.121094 253.148438 204.121094 C 253.265625 204.121094 253.359375 204.027344 253.359375 203.910156 Z M 253.359375 203.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.023438 202.136719 C 254.023438 202.019531 253.929688 201.925781 253.8125 201.925781 C 253.695312 201.925781 253.601562 202.019531 253.601562 202.136719 C 253.601562 202.253906 253.695312 202.347656 253.8125 202.347656 C 253.929688 202.347656 254.023438 202.253906 254.023438 202.136719 Z M 254.023438 202.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.339844 202.414062 C 254.339844 202.296875 254.246094 202.203125 254.128906 202.203125 C 254.011719 202.203125 253.917969 202.296875 253.917969 202.414062 C 253.917969 202.53125 254.011719 202.625 254.128906 202.625 C 254.246094 202.625 254.339844 202.53125 254.339844 202.414062 Z M 254.339844 202.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.671875 203.449219 C 253.671875 203.332031 253.578125 203.238281 253.460938 203.238281 C 253.34375 203.238281 253.25 203.332031 253.25 203.449219 C 253.25 203.566406 253.34375 203.660156 253.460938 203.660156 C 253.578125 203.660156 253.671875 203.566406 253.671875 203.449219 Z M 253.671875 203.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.257812 204.964844 C 254.257812 204.847656 254.164062 204.753906 254.046875 204.753906 C 253.929688 204.753906 253.835938 204.847656 253.835938 204.964844 C 253.835938 205.082031 253.929688 205.175781 254.046875 205.175781 C 254.164062 205.175781 254.257812 205.082031 254.257812 204.964844 Z M 254.257812 204.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.152344 208.019531 C 253.152344 207.902344 253.058594 207.808594 252.941406 207.808594 C 252.824219 207.808594 252.730469 207.902344 252.730469 208.019531 C 252.730469 208.136719 252.824219 208.230469 252.941406 208.230469 C 253.058594 208.230469 253.152344 208.136719 253.152344 208.019531 Z M 253.152344 208.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.019531 206.285156 C 256.019531 206.167969 255.925781 206.074219 255.808594 206.074219 C 255.691406 206.074219 255.597656 206.167969 255.597656 206.285156 C 255.597656 206.402344 255.691406 206.496094 255.808594 206.496094 C 255.925781 206.496094 256.019531 206.402344 256.019531 206.285156 Z M 256.019531 206.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.621094 210.226562 C 255.621094 210.109375 255.527344 210.015625 255.410156 210.015625 C 255.292969 210.015625 255.199219 210.109375 255.199219 210.226562 C 255.199219 210.34375 255.292969 210.4375 255.410156 210.4375 C 255.527344 210.4375 255.621094 210.34375 255.621094 210.226562 Z M 255.621094 210.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.859375 209.898438 C 254.859375 209.78125 254.765625 209.6875 254.648438 209.6875 C 254.53125 209.6875 254.4375 209.78125 254.4375 209.898438 C 254.4375 210.015625 254.53125 210.109375 254.648438 210.109375 C 254.765625 210.109375 254.859375 210.015625 254.859375 209.898438 Z M 254.859375 209.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.757812 209.042969 C 252.757812 208.925781 252.664062 208.832031 252.546875 208.832031 C 252.429688 208.832031 252.335938 208.925781 252.335938 209.042969 C 252.335938 209.160156 252.429688 209.253906 252.546875 209.253906 C 252.664062 209.253906 252.757812 209.160156 252.757812 209.042969 Z M 252.757812 209.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.789062 209.941406 C 255.789062 209.824219 255.695312 209.730469 255.578125 209.730469 C 255.460938 209.730469 255.367188 209.824219 255.367188 209.941406 C 255.367188 210.058594 255.460938 210.152344 255.578125 210.152344 C 255.695312 210.152344 255.789062 210.058594 255.789062 209.941406 Z M 255.789062 209.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.511719 212.816406 C 256.511719 212.699219 256.417969 212.605469 256.300781 212.605469 C 256.183594 212.605469 256.089844 212.699219 256.089844 212.816406 C 256.089844 212.933594 256.183594 213.027344 256.300781 213.027344 C 256.417969 213.027344 256.511719 212.933594 256.511719 212.816406 Z M 256.511719 212.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.976562 213.015625 C 256.976562 212.898438 256.882812 212.804688 256.765625 212.804688 C 256.648438 212.804688 256.554688 212.898438 256.554688 213.015625 C 256.554688 213.132812 256.648438 213.226562 256.765625 213.226562 C 256.882812 213.226562 256.976562 213.132812 256.976562 213.015625 Z M 256.976562 213.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.34375 211.308594 C 256.34375 211.191406 256.25 211.097656 256.132812 211.097656 C 256.015625 211.097656 255.921875 211.191406 255.921875 211.308594 C 255.921875 211.425781 256.015625 211.519531 256.132812 211.519531 C 256.25 211.519531 256.34375 211.425781 256.34375 211.308594 Z M 256.34375 211.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.90625 211.511719 C 250.90625 211.394531 250.8125 211.300781 250.695312 211.300781 C 250.578125 211.300781 250.484375 211.394531 250.484375 211.511719 C 250.484375 211.628906 250.578125 211.722656 250.695312 211.722656 C 250.8125 211.722656 250.90625 211.628906 250.90625 211.511719 Z M 250.90625 211.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.550781 210.445312 C 249.550781 210.328125 249.457031 210.234375 249.339844 210.234375 C 249.222656 210.234375 249.128906 210.328125 249.128906 210.445312 C 249.128906 210.5625 249.222656 210.65625 249.339844 210.65625 C 249.457031 210.65625 249.550781 210.5625 249.550781 210.445312 Z M 249.550781 210.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.675781 208.808594 C 248.675781 208.691406 248.582031 208.597656 248.464844 208.597656 C 248.347656 208.597656 248.253906 208.691406 248.253906 208.808594 C 248.253906 208.925781 248.347656 209.019531 248.464844 209.019531 C 248.582031 209.019531 248.675781 208.925781 248.675781 208.808594 Z M 248.675781 208.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.441406 208.78125 C 247.441406 208.664062 247.347656 208.570312 247.230469 208.570312 C 247.113281 208.570312 247.019531 208.664062 247.019531 208.78125 C 247.019531 208.898438 247.113281 208.992188 247.230469 208.992188 C 247.347656 208.992188 247.441406 208.898438 247.441406 208.78125 Z M 247.441406 208.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.691406 210.320312 C 248.691406 210.203125 248.597656 210.109375 248.480469 210.109375 C 248.363281 210.109375 248.269531 210.203125 248.269531 210.320312 C 248.269531 210.4375 248.363281 210.53125 248.480469 210.53125 C 248.597656 210.53125 248.691406 210.4375 248.691406 210.320312 Z M 248.691406 210.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.324219 210.746094 C 245.324219 210.628906 245.230469 210.535156 245.113281 210.535156 C 244.996094 210.535156 244.902344 210.628906 244.902344 210.746094 C 244.902344 210.863281 244.996094 210.957031 245.113281 210.957031 C 245.230469 210.957031 245.324219 210.863281 245.324219 210.746094 Z M 245.324219 210.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.4375 212.75 C 247.4375 212.632812 247.34375 212.539062 247.226562 212.539062 C 247.109375 212.539062 247.015625 212.632812 247.015625 212.75 C 247.015625 212.867188 247.109375 212.960938 247.226562 212.960938 C 247.34375 212.960938 247.4375 212.867188 247.4375 212.75 Z M 247.4375 212.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.695312 212.632812 C 246.695312 212.515625 246.601562 212.421875 246.484375 212.421875 C 246.367188 212.421875 246.273438 212.515625 246.273438 212.632812 C 246.273438 212.75 246.367188 212.84375 246.484375 212.84375 C 246.601562 212.84375 246.695312 212.75 246.695312 212.632812 Z M 246.695312 212.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.371094 211.660156 C 247.371094 211.542969 247.277344 211.449219 247.160156 211.449219 C 247.042969 211.449219 246.949219 211.542969 246.949219 211.660156 C 246.949219 211.777344 247.042969 211.871094 247.160156 211.871094 C 247.277344 211.871094 247.371094 211.777344 247.371094 211.660156 Z M 247.371094 211.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.847656 212.394531 C 247.847656 212.277344 247.753906 212.183594 247.636719 212.183594 C 247.519531 212.183594 247.425781 212.277344 247.425781 212.394531 C 247.425781 212.511719 247.519531 212.605469 247.636719 212.605469 C 247.753906 212.605469 247.847656 212.511719 247.847656 212.394531 Z M 247.847656 212.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.410156 209.019531 C 249.410156 208.902344 249.316406 208.808594 249.199219 208.808594 C 249.082031 208.808594 248.988281 208.902344 248.988281 209.019531 C 248.988281 209.136719 249.082031 209.230469 249.199219 209.230469 C 249.316406 209.230469 249.410156 209.136719 249.410156 209.019531 Z M 249.410156 209.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.628906 211.46875 C 251.628906 211.351562 251.535156 211.257812 251.417969 211.257812 C 251.300781 211.257812 251.207031 211.351562 251.207031 211.46875 C 251.207031 211.585938 251.300781 211.679688 251.417969 211.679688 C 251.535156 211.679688 251.628906 211.585938 251.628906 211.46875 Z M 251.628906 211.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.839844 211.808594 C 253.839844 211.691406 253.746094 211.597656 253.628906 211.597656 C 253.511719 211.597656 253.417969 211.691406 253.417969 211.808594 C 253.417969 211.925781 253.511719 212.019531 253.628906 212.019531 C 253.746094 212.019531 253.839844 211.925781 253.839844 211.808594 Z M 253.839844 211.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.449219 213.785156 C 256.449219 213.667969 256.355469 213.574219 256.238281 213.574219 C 256.121094 213.574219 256.027344 213.667969 256.027344 213.785156 C 256.027344 213.902344 256.121094 213.996094 256.238281 213.996094 C 256.355469 213.996094 256.449219 213.902344 256.449219 213.785156 Z M 256.449219 213.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.480469 212.007812 C 252.480469 211.890625 252.386719 211.796875 252.269531 211.796875 C 252.152344 211.796875 252.058594 211.890625 252.058594 212.007812 C 252.058594 212.125 252.152344 212.21875 252.269531 212.21875 C 252.386719 212.21875 252.480469 212.125 252.480469 212.007812 Z M 252.480469 212.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.035156 214.140625 C 252.035156 214.023438 251.941406 213.929688 251.824219 213.929688 C 251.707031 213.929688 251.613281 214.023438 251.613281 214.140625 C 251.613281 214.257812 251.707031 214.351562 251.824219 214.351562 C 251.941406 214.351562 252.035156 214.257812 252.035156 214.140625 Z M 252.035156 214.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.753906 214.476562 C 250.753906 214.359375 250.660156 214.265625 250.542969 214.265625 C 250.425781 214.265625 250.332031 214.359375 250.332031 214.476562 C 250.332031 214.59375 250.425781 214.6875 250.542969 214.6875 C 250.660156 214.6875 250.753906 214.59375 250.753906 214.476562 Z M 250.753906 214.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.867188 215.84375 C 251.867188 215.726562 251.773438 215.632812 251.65625 215.632812 C 251.539062 215.632812 251.445312 215.726562 251.445312 215.84375 C 251.445312 215.960938 251.539062 216.054688 251.65625 216.054688 C 251.773438 216.054688 251.867188 215.960938 251.867188 215.84375 Z M 251.867188 215.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.171875 215.765625 C 251.171875 215.648438 251.078125 215.554688 250.960938 215.554688 C 250.84375 215.554688 250.75 215.648438 250.75 215.765625 C 250.75 215.882812 250.84375 215.976562 250.960938 215.976562 C 251.078125 215.976562 251.171875 215.882812 251.171875 215.765625 Z M 251.171875 215.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.890625 214.265625 C 252.890625 214.148438 252.796875 214.054688 252.679688 214.054688 C 252.5625 214.054688 252.46875 214.148438 252.46875 214.265625 C 252.46875 214.382812 252.5625 214.476562 252.679688 214.476562 C 252.796875 214.476562 252.890625 214.382812 252.890625 214.265625 Z M 252.890625 214.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.671875 213.925781 C 253.671875 213.808594 253.578125 213.714844 253.460938 213.714844 C 253.34375 213.714844 253.25 213.808594 253.25 213.925781 C 253.25 214.042969 253.34375 214.136719 253.460938 214.136719 C 253.578125 214.136719 253.671875 214.042969 253.671875 213.925781 Z M 253.671875 213.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.554688 216.402344 C 252.554688 216.285156 252.460938 216.191406 252.34375 216.191406 C 252.226562 216.191406 252.132812 216.285156 252.132812 216.402344 C 252.132812 216.519531 252.226562 216.613281 252.34375 216.613281 C 252.460938 216.613281 252.554688 216.519531 252.554688 216.402344 Z M 252.554688 216.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.101562 215.367188 C 253.101562 215.25 253.007812 215.15625 252.890625 215.15625 C 252.773438 215.15625 252.679688 215.25 252.679688 215.367188 C 252.679688 215.484375 252.773438 215.578125 252.890625 215.578125 C 253.007812 215.578125 253.101562 215.484375 253.101562 215.367188 Z M 253.101562 215.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.085938 211.914062 C 252.085938 211.796875 251.992188 211.703125 251.875 211.703125 C 251.757812 211.703125 251.664062 211.796875 251.664062 211.914062 C 251.664062 212.03125 251.757812 212.125 251.875 212.125 C 251.992188 212.125 252.085938 212.03125 252.085938 211.914062 Z M 252.085938 211.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.398438 214.945312 C 246.398438 214.828125 246.304688 214.734375 246.1875 214.734375 C 246.070312 214.734375 245.976562 214.828125 245.976562 214.945312 C 245.976562 215.0625 246.070312 215.15625 246.1875 215.15625 C 246.304688 215.15625 246.398438 215.0625 246.398438 214.945312 Z M 246.398438 214.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.671875 213.921875 C 245.671875 213.804688 245.578125 213.710938 245.460938 213.710938 C 245.34375 213.710938 245.25 213.804688 245.25 213.921875 C 245.25 214.039062 245.34375 214.132812 245.460938 214.132812 C 245.578125 214.132812 245.671875 214.039062 245.671875 213.921875 Z M 245.671875 213.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.917969 209.953125 C 246.917969 209.835938 246.824219 209.742188 246.707031 209.742188 C 246.589844 209.742188 246.496094 209.835938 246.496094 209.953125 C 246.496094 210.070312 246.589844 210.164062 246.707031 210.164062 C 246.824219 210.164062 246.917969 210.070312 246.917969 209.953125 Z M 246.917969 209.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.925781 209.527344 C 249.925781 209.410156 249.832031 209.316406 249.714844 209.316406 C 249.597656 209.316406 249.503906 209.410156 249.503906 209.527344 C 249.503906 209.644531 249.597656 209.738281 249.714844 209.738281 C 249.832031 209.738281 249.925781 209.644531 249.925781 209.527344 Z M 249.925781 209.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.363281 209.714844 C 249.363281 209.597656 249.269531 209.503906 249.152344 209.503906 C 249.035156 209.503906 248.941406 209.597656 248.941406 209.714844 C 248.941406 209.832031 249.035156 209.925781 249.152344 209.925781 C 249.269531 209.925781 249.363281 209.832031 249.363281 209.714844 Z M 249.363281 209.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.027344 209.914062 C 250.027344 209.796875 249.933594 209.703125 249.816406 209.703125 C 249.699219 209.703125 249.605469 209.796875 249.605469 209.914062 C 249.605469 210.03125 249.699219 210.125 249.816406 210.125 C 249.933594 210.125 250.027344 210.03125 250.027344 209.914062 Z M 250.027344 209.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.417969 210.65625 C 248.417969 210.539062 248.324219 210.445312 248.207031 210.445312 C 248.089844 210.445312 247.996094 210.539062 247.996094 210.65625 C 247.996094 210.773438 248.089844 210.867188 248.207031 210.867188 C 248.324219 210.867188 248.417969 210.773438 248.417969 210.65625 Z M 248.417969 210.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 247.617188 214.308594 C 247.617188 214.191406 247.523438 214.097656 247.40625 214.097656 C 247.289062 214.097656 247.195312 214.191406 247.195312 214.308594 C 247.195312 214.425781 247.289062 214.519531 247.40625 214.519531 C 247.523438 214.519531 247.617188 214.425781 247.617188 214.308594 Z M 247.617188 214.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.117188 214.777344 C 245.117188 214.660156 245.023438 214.566406 244.90625 214.566406 C 244.789062 214.566406 244.695312 214.660156 244.695312 214.777344 C 244.695312 214.894531 244.789062 214.988281 244.90625 214.988281 C 245.023438 214.988281 245.117188 214.894531 245.117188 214.777344 Z M 245.117188 214.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.558594 207.464844 C 248.558594 207.347656 248.464844 207.253906 248.347656 207.253906 C 248.230469 207.253906 248.136719 207.347656 248.136719 207.464844 C 248.136719 207.582031 248.230469 207.675781 248.347656 207.675781 C 248.464844 207.675781 248.558594 207.582031 248.558594 207.464844 Z M 248.558594 207.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.011719 208.417969 C 245.011719 208.300781 244.917969 208.207031 244.800781 208.207031 C 244.683594 208.207031 244.589844 208.300781 244.589844 208.417969 C 244.589844 208.535156 244.683594 208.628906 244.800781 208.628906 C 244.917969 208.628906 245.011719 208.535156 245.011719 208.417969 Z M 245.011719 208.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 248.066406 205.765625 C 248.066406 205.648438 247.972656 205.554688 247.855469 205.554688 C 247.738281 205.554688 247.644531 205.648438 247.644531 205.765625 C 247.644531 205.882812 247.738281 205.976562 247.855469 205.976562 C 247.972656 205.976562 248.066406 205.882812 248.066406 205.765625 Z M 248.066406 205.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.21875 207.480469 C 250.21875 207.363281 250.125 207.269531 250.007812 207.269531 C 249.890625 207.269531 249.796875 207.363281 249.796875 207.480469 C 249.796875 207.597656 249.890625 207.691406 250.007812 207.691406 C 250.125 207.691406 250.21875 207.597656 250.21875 207.480469 Z M 250.21875 207.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.886719 210.546875 C 250.886719 210.429688 250.792969 210.335938 250.675781 210.335938 C 250.558594 210.335938 250.464844 210.429688 250.464844 210.546875 C 250.464844 210.664062 250.558594 210.757812 250.675781 210.757812 C 250.792969 210.757812 250.886719 210.664062 250.886719 210.546875 Z M 250.886719 210.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.660156 209.617188 C 253.660156 209.5 253.566406 209.40625 253.449219 209.40625 C 253.332031 209.40625 253.238281 209.5 253.238281 209.617188 C 253.238281 209.734375 253.332031 209.828125 253.449219 209.828125 C 253.566406 209.828125 253.660156 209.734375 253.660156 209.617188 Z M 253.660156 209.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.152344 213.898438 C 256.152344 213.78125 256.058594 213.6875 255.941406 213.6875 C 255.824219 213.6875 255.730469 213.78125 255.730469 213.898438 C 255.730469 214.015625 255.824219 214.109375 255.941406 214.109375 C 256.058594 214.109375 256.152344 214.015625 256.152344 213.898438 Z M 256.152344 213.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 253.769531 213.46875 C 253.769531 213.351562 253.675781 213.257812 253.558594 213.257812 C 253.441406 213.257812 253.347656 213.351562 253.347656 213.46875 C 253.347656 213.585938 253.441406 213.679688 253.558594 213.679688 C 253.675781 213.679688 253.769531 213.585938 253.769531 213.46875 Z M 253.769531 213.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.007812 216.1875 C 252.007812 216.070312 251.914062 215.976562 251.796875 215.976562 C 251.679688 215.976562 251.585938 216.070312 251.585938 216.1875 C 251.585938 216.304688 251.679688 216.398438 251.796875 216.398438 C 251.914062 216.398438 252.007812 216.304688 252.007812 216.1875 Z M 252.007812 216.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.925781 213.15625 C 249.925781 213.039062 249.832031 212.945312 249.714844 212.945312 C 249.597656 212.945312 249.503906 213.039062 249.503906 213.15625 C 249.503906 213.273438 249.597656 213.367188 249.714844 213.367188 C 249.832031 213.367188 249.925781 213.273438 249.925781 213.15625 Z M 249.925781 213.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254 211.414062 C 254 211.296875 253.90625 211.203125 253.789062 211.203125 C 253.671875 211.203125 253.578125 211.296875 253.578125 211.414062 C 253.578125 211.53125 253.671875 211.625 253.789062 211.625 C 253.90625 211.625 254 211.53125 254 211.414062 Z M 254 211.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.339844 211.921875 C 252.339844 211.804688 252.246094 211.710938 252.128906 211.710938 C 252.011719 211.710938 251.917969 211.804688 251.917969 211.921875 C 251.917969 212.039062 252.011719 212.132812 252.128906 212.132812 C 252.246094 212.132812 252.339844 212.039062 252.339844 211.921875 Z M 252.339844 211.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.175781 209.402344 C 255.175781 209.285156 255.082031 209.191406 254.964844 209.191406 C 254.847656 209.191406 254.753906 209.285156 254.753906 209.402344 C 254.753906 209.519531 254.847656 209.613281 254.964844 209.613281 C 255.082031 209.613281 255.175781 209.519531 255.175781 209.402344 Z M 255.175781 209.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.078125 209.269531 C 255.078125 209.152344 254.984375 209.058594 254.867188 209.058594 C 254.75 209.058594 254.65625 209.152344 254.65625 209.269531 C 254.65625 209.386719 254.75 209.480469 254.867188 209.480469 C 254.984375 209.480469 255.078125 209.386719 255.078125 209.269531 Z M 255.078125 209.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.53125 208.015625 C 254.53125 207.898438 254.4375 207.804688 254.320312 207.804688 C 254.203125 207.804688 254.109375 207.898438 254.109375 208.015625 C 254.109375 208.132812 254.203125 208.226562 254.320312 208.226562 C 254.4375 208.226562 254.53125 208.132812 254.53125 208.015625 Z M 254.53125 208.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.226562 208.847656 C 255.226562 208.730469 255.132812 208.636719 255.015625 208.636719 C 254.898438 208.636719 254.804688 208.730469 254.804688 208.847656 C 254.804688 208.964844 254.898438 209.058594 255.015625 209.058594 C 255.132812 209.058594 255.226562 208.964844 255.226562 208.847656 Z M 255.226562 208.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.207031 207.726562 C 258.207031 207.609375 258.113281 207.515625 257.996094 207.515625 C 257.878906 207.515625 257.785156 207.609375 257.785156 207.726562 C 257.785156 207.84375 257.878906 207.9375 257.996094 207.9375 C 258.113281 207.9375 258.207031 207.84375 258.207031 207.726562 Z M 258.207031 207.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.160156 203.390625 C 260.160156 203.273438 260.066406 203.179688 259.949219 203.179688 C 259.832031 203.179688 259.738281 203.273438 259.738281 203.390625 C 259.738281 203.507812 259.832031 203.601562 259.949219 203.601562 C 260.066406 203.601562 260.160156 203.507812 260.160156 203.390625 Z M 260.160156 203.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.640625 201.691406 C 261.640625 201.574219 261.546875 201.480469 261.429688 201.480469 C 261.3125 201.480469 261.21875 201.574219 261.21875 201.691406 C 261.21875 201.808594 261.3125 201.902344 261.429688 201.902344 C 261.546875 201.902344 261.640625 201.808594 261.640625 201.691406 Z M 261.640625 201.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.691406 198.886719 C 262.691406 198.769531 262.597656 198.675781 262.480469 198.675781 C 262.363281 198.675781 262.269531 198.769531 262.269531 198.886719 C 262.269531 199.003906 262.363281 199.097656 262.480469 199.097656 C 262.597656 199.097656 262.691406 199.003906 262.691406 198.886719 Z M 262.691406 198.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.34375 196.902344 C 264.34375 196.785156 264.25 196.691406 264.132812 196.691406 C 264.015625 196.691406 263.921875 196.785156 263.921875 196.902344 C 263.921875 197.019531 264.015625 197.113281 264.132812 197.113281 C 264.25 197.113281 264.34375 197.019531 264.34375 196.902344 Z M 264.34375 196.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.484375 196.996094 C 263.484375 196.878906 263.390625 196.785156 263.273438 196.785156 C 263.15625 196.785156 263.0625 196.878906 263.0625 196.996094 C 263.0625 197.113281 263.15625 197.207031 263.273438 197.207031 C 263.390625 197.207031 263.484375 197.113281 263.484375 196.996094 Z M 263.484375 196.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.605469 194.816406 C 263.605469 194.699219 263.511719 194.605469 263.394531 194.605469 C 263.277344 194.605469 263.183594 194.699219 263.183594 194.816406 C 263.183594 194.933594 263.277344 195.027344 263.394531 195.027344 C 263.511719 195.027344 263.605469 194.933594 263.605469 194.816406 Z M 263.605469 194.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.0625 194.753906 C 261.0625 194.636719 260.96875 194.542969 260.851562 194.542969 C 260.734375 194.542969 260.640625 194.636719 260.640625 194.753906 C 260.640625 194.871094 260.734375 194.964844 260.851562 194.964844 C 260.96875 194.964844 261.0625 194.871094 261.0625 194.753906 Z M 261.0625 194.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.050781 196.472656 C 260.050781 196.355469 259.957031 196.261719 259.839844 196.261719 C 259.722656 196.261719 259.628906 196.355469 259.628906 196.472656 C 259.628906 196.589844 259.722656 196.683594 259.839844 196.683594 C 259.957031 196.683594 260.050781 196.589844 260.050781 196.472656 Z M 260.050781 196.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.019531 197.207031 C 259.019531 197.089844 258.925781 196.996094 258.808594 196.996094 C 258.691406 196.996094 258.597656 197.089844 258.597656 197.207031 C 258.597656 197.324219 258.691406 197.417969 258.808594 197.417969 C 258.925781 197.417969 259.019531 197.324219 259.019531 197.207031 Z M 259.019531 197.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.507812 195.90625 C 255.507812 195.789062 255.414062 195.695312 255.296875 195.695312 C 255.179688 195.695312 255.085938 195.789062 255.085938 195.90625 C 255.085938 196.023438 255.179688 196.117188 255.296875 196.117188 C 255.414062 196.117188 255.507812 196.023438 255.507812 195.90625 Z M 255.507812 195.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.515625 198.566406 C 256.515625 198.449219 256.421875 198.355469 256.304688 198.355469 C 256.1875 198.355469 256.09375 198.449219 256.09375 198.566406 C 256.09375 198.683594 256.1875 198.777344 256.304688 198.777344 C 256.421875 198.777344 256.515625 198.683594 256.515625 198.566406 Z M 256.515625 198.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.640625 200.117188 C 255.640625 200 255.546875 199.90625 255.429688 199.90625 C 255.3125 199.90625 255.21875 200 255.21875 200.117188 C 255.21875 200.234375 255.3125 200.328125 255.429688 200.328125 C 255.546875 200.328125 255.640625 200.234375 255.640625 200.117188 Z M 255.640625 200.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.964844 204.097656 C 257.964844 203.980469 257.871094 203.886719 257.753906 203.886719 C 257.636719 203.886719 257.542969 203.980469 257.542969 204.097656 C 257.542969 204.214844 257.636719 204.308594 257.753906 204.308594 C 257.871094 204.308594 257.964844 204.214844 257.964844 204.097656 Z M 257.964844 204.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.148438 202.890625 C 258.148438 202.773438 258.054688 202.679688 257.9375 202.679688 C 257.820312 202.679688 257.726562 202.773438 257.726562 202.890625 C 257.726562 203.007812 257.820312 203.101562 257.9375 203.101562 C 258.054688 203.101562 258.148438 203.007812 258.148438 202.890625 Z M 258.148438 202.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.875 203.339844 C 258.875 203.222656 258.78125 203.128906 258.664062 203.128906 C 258.546875 203.128906 258.453125 203.222656 258.453125 203.339844 C 258.453125 203.457031 258.546875 203.550781 258.664062 203.550781 C 258.78125 203.550781 258.875 203.457031 258.875 203.339844 Z M 258.875 203.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.8125 205.988281 C 258.8125 205.871094 258.71875 205.777344 258.601562 205.777344 C 258.484375 205.777344 258.390625 205.871094 258.390625 205.988281 C 258.390625 206.105469 258.484375 206.199219 258.601562 206.199219 C 258.71875 206.199219 258.8125 206.105469 258.8125 205.988281 Z M 258.8125 205.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.515625 204.71875 C 259.515625 204.601562 259.421875 204.507812 259.304688 204.507812 C 259.1875 204.507812 259.09375 204.601562 259.09375 204.71875 C 259.09375 204.835938 259.1875 204.929688 259.304688 204.929688 C 259.421875 204.929688 259.515625 204.835938 259.515625 204.71875 Z M 259.515625 204.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.289062 203.617188 C 258.289062 203.5 258.195312 203.40625 258.078125 203.40625 C 257.960938 203.40625 257.867188 203.5 257.867188 203.617188 C 257.867188 203.734375 257.960938 203.828125 258.078125 203.828125 C 258.195312 203.828125 258.289062 203.734375 258.289062 203.617188 Z M 258.289062 203.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.375 202.714844 C 259.375 202.597656 259.28125 202.503906 259.164062 202.503906 C 259.046875 202.503906 258.953125 202.597656 258.953125 202.714844 C 258.953125 202.832031 259.046875 202.925781 259.164062 202.925781 C 259.28125 202.925781 259.375 202.832031 259.375 202.714844 Z M 259.375 202.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.402344 204.980469 C 260.402344 204.863281 260.308594 204.769531 260.191406 204.769531 C 260.074219 204.769531 259.980469 204.863281 259.980469 204.980469 C 259.980469 205.097656 260.074219 205.191406 260.191406 205.191406 C 260.308594 205.191406 260.402344 205.097656 260.402344 204.980469 Z M 260.402344 204.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.128906 207.601562 C 263.128906 207.484375 263.035156 207.390625 262.917969 207.390625 C 262.800781 207.390625 262.707031 207.484375 262.707031 207.601562 C 262.707031 207.71875 262.800781 207.8125 262.917969 207.8125 C 263.035156 207.8125 263.128906 207.71875 263.128906 207.601562 Z M 263.128906 207.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.917969 208.371094 C 263.917969 208.253906 263.824219 208.160156 263.707031 208.160156 C 263.589844 208.160156 263.496094 208.253906 263.496094 208.371094 C 263.496094 208.488281 263.589844 208.582031 263.707031 208.582031 C 263.824219 208.582031 263.917969 208.488281 263.917969 208.371094 Z M 263.917969 208.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.191406 206.578125 C 263.191406 206.460938 263.097656 206.367188 262.980469 206.367188 C 262.863281 206.367188 262.769531 206.460938 262.769531 206.578125 C 262.769531 206.695312 262.863281 206.789062 262.980469 206.789062 C 263.097656 206.789062 263.191406 206.695312 263.191406 206.578125 Z M 263.191406 206.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.105469 208.417969 C 262.105469 208.300781 262.011719 208.207031 261.894531 208.207031 C 261.777344 208.207031 261.683594 208.300781 261.683594 208.417969 C 261.683594 208.535156 261.777344 208.628906 261.894531 208.628906 C 262.011719 208.628906 262.105469 208.535156 262.105469 208.417969 Z M 262.105469 208.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.417969 209.8125 C 263.417969 209.695312 263.324219 209.601562 263.207031 209.601562 C 263.089844 209.601562 262.996094 209.695312 262.996094 209.8125 C 262.996094 209.929688 263.089844 210.023438 263.207031 210.023438 C 263.324219 210.023438 263.417969 209.929688 263.417969 209.8125 Z M 263.417969 209.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.398438 206.664062 C 261.398438 206.546875 261.304688 206.453125 261.1875 206.453125 C 261.070312 206.453125 260.976562 206.546875 260.976562 206.664062 C 260.976562 206.78125 261.070312 206.875 261.1875 206.875 C 261.304688 206.875 261.398438 206.78125 261.398438 206.664062 Z M 261.398438 206.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.570312 210.027344 C 263.570312 209.910156 263.476562 209.816406 263.359375 209.816406 C 263.242188 209.816406 263.148438 209.910156 263.148438 210.027344 C 263.148438 210.144531 263.242188 210.238281 263.359375 210.238281 C 263.476562 210.238281 263.570312 210.144531 263.570312 210.027344 Z M 263.570312 210.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.503906 208.257812 C 264.503906 208.140625 264.410156 208.046875 264.292969 208.046875 C 264.175781 208.046875 264.082031 208.140625 264.082031 208.257812 C 264.082031 208.375 264.175781 208.46875 264.292969 208.46875 C 264.410156 208.46875 264.503906 208.375 264.503906 208.257812 Z M 264.503906 208.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.125 207.429688 C 262.125 207.3125 262.03125 207.21875 261.914062 207.21875 C 261.796875 207.21875 261.703125 207.3125 261.703125 207.429688 C 261.703125 207.546875 261.796875 207.640625 261.914062 207.640625 C 262.03125 207.640625 262.125 207.546875 262.125 207.429688 Z M 262.125 207.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.605469 209.609375 C 264.605469 209.492188 264.511719 209.398438 264.394531 209.398438 C 264.277344 209.398438 264.183594 209.492188 264.183594 209.609375 C 264.183594 209.726562 264.277344 209.820312 264.394531 209.820312 C 264.511719 209.820312 264.605469 209.726562 264.605469 209.609375 Z M 264.605469 209.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.160156 206.164062 C 267.160156 206.046875 267.066406 205.953125 266.949219 205.953125 C 266.832031 205.953125 266.738281 206.046875 266.738281 206.164062 C 266.738281 206.28125 266.832031 206.375 266.949219 206.375 C 267.066406 206.375 267.160156 206.28125 267.160156 206.164062 Z M 267.160156 206.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.140625 208.167969 C 268.140625 208.050781 268.046875 207.957031 267.929688 207.957031 C 267.8125 207.957031 267.71875 208.050781 267.71875 208.167969 C 267.71875 208.285156 267.8125 208.378906 267.929688 208.378906 C 268.046875 208.378906 268.140625 208.285156 268.140625 208.167969 Z M 268.140625 208.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.769531 204.53125 C 268.769531 204.414062 268.675781 204.320312 268.558594 204.320312 C 268.441406 204.320312 268.347656 204.414062 268.347656 204.53125 C 268.347656 204.648438 268.441406 204.742188 268.558594 204.742188 C 268.675781 204.742188 268.769531 204.648438 268.769531 204.53125 Z M 268.769531 204.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.453125 202.527344 C 268.453125 202.410156 268.359375 202.316406 268.242188 202.316406 C 268.125 202.316406 268.03125 202.410156 268.03125 202.527344 C 268.03125 202.644531 268.125 202.738281 268.242188 202.738281 C 268.359375 202.738281 268.453125 202.644531 268.453125 202.527344 Z M 268.453125 202.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.234375 202.15625 C 268.234375 202.039062 268.140625 201.945312 268.023438 201.945312 C 267.90625 201.945312 267.8125 202.039062 267.8125 202.15625 C 267.8125 202.273438 267.90625 202.367188 268.023438 202.367188 C 268.140625 202.367188 268.234375 202.273438 268.234375 202.15625 Z M 268.234375 202.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.746094 202.179688 C 266.746094 202.0625 266.652344 201.96875 266.535156 201.96875 C 266.417969 201.96875 266.324219 202.0625 266.324219 202.179688 C 266.324219 202.296875 266.417969 202.390625 266.535156 202.390625 C 266.652344 202.390625 266.746094 202.296875 266.746094 202.179688 Z M 266.746094 202.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.410156 201.820312 C 267.410156 201.703125 267.316406 201.609375 267.199219 201.609375 C 267.082031 201.609375 266.988281 201.703125 266.988281 201.820312 C 266.988281 201.9375 267.082031 202.03125 267.199219 202.03125 C 267.316406 202.03125 267.410156 201.9375 267.410156 201.820312 Z M 267.410156 201.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.210938 201.75 C 267.210938 201.632812 267.117188 201.539062 267 201.539062 C 266.882812 201.539062 266.789062 201.632812 266.789062 201.75 C 266.789062 201.867188 266.882812 201.960938 267 201.960938 C 267.117188 201.960938 267.210938 201.867188 267.210938 201.75 Z M 267.210938 201.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.300781 198.910156 C 270.300781 198.792969 270.207031 198.699219 270.089844 198.699219 C 269.972656 198.699219 269.878906 198.792969 269.878906 198.910156 C 269.878906 199.027344 269.972656 199.121094 270.089844 199.121094 C 270.207031 199.121094 270.300781 199.027344 270.300781 198.910156 Z M 270.300781 198.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.929688 198.160156 C 270.929688 198.042969 270.835938 197.949219 270.71875 197.949219 C 270.601562 197.949219 270.507812 198.042969 270.507812 198.160156 C 270.507812 198.277344 270.601562 198.371094 270.71875 198.371094 C 270.835938 198.371094 270.929688 198.277344 270.929688 198.160156 Z M 270.929688 198.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.453125 202.613281 C 271.453125 202.496094 271.359375 202.402344 271.242188 202.402344 C 271.125 202.402344 271.03125 202.496094 271.03125 202.613281 C 271.03125 202.730469 271.125 202.824219 271.242188 202.824219 C 271.359375 202.824219 271.453125 202.730469 271.453125 202.613281 Z M 271.453125 202.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.882812 201.980469 C 268.882812 201.863281 268.789062 201.769531 268.671875 201.769531 C 268.554688 201.769531 268.460938 201.863281 268.460938 201.980469 C 268.460938 202.097656 268.554688 202.191406 268.671875 202.191406 C 268.789062 202.191406 268.882812 202.097656 268.882812 201.980469 Z M 268.882812 201.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.636719 203.792969 C 268.636719 203.675781 268.542969 203.582031 268.425781 203.582031 C 268.308594 203.582031 268.214844 203.675781 268.214844 203.792969 C 268.214844 203.910156 268.308594 204.003906 268.425781 204.003906 C 268.542969 204.003906 268.636719 203.910156 268.636719 203.792969 Z M 268.636719 203.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.59375 207.960938 C 265.59375 207.84375 265.5 207.75 265.382812 207.75 C 265.265625 207.75 265.171875 207.84375 265.171875 207.960938 C 265.171875 208.078125 265.265625 208.171875 265.382812 208.171875 C 265.5 208.171875 265.59375 208.078125 265.59375 207.960938 Z M 265.59375 207.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.042969 206.933594 C 265.042969 206.816406 264.949219 206.722656 264.832031 206.722656 C 264.714844 206.722656 264.621094 206.816406 264.621094 206.933594 C 264.621094 207.050781 264.714844 207.144531 264.832031 207.144531 C 264.949219 207.144531 265.042969 207.050781 265.042969 206.933594 Z M 265.042969 206.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.132812 206.339844 C 266.132812 206.222656 266.039062 206.128906 265.921875 206.128906 C 265.804688 206.128906 265.710938 206.222656 265.710938 206.339844 C 265.710938 206.457031 265.804688 206.550781 265.921875 206.550781 C 266.039062 206.550781 266.132812 206.457031 266.132812 206.339844 Z M 266.132812 206.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.375 205.230469 C 264.375 205.113281 264.28125 205.019531 264.164062 205.019531 C 264.046875 205.019531 263.953125 205.113281 263.953125 205.230469 C 263.953125 205.347656 264.046875 205.441406 264.164062 205.441406 C 264.28125 205.441406 264.375 205.347656 264.375 205.230469 Z M 264.375 205.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.570312 205.566406 C 264.570312 205.449219 264.476562 205.355469 264.359375 205.355469 C 264.242188 205.355469 264.148438 205.449219 264.148438 205.566406 C 264.148438 205.683594 264.242188 205.777344 264.359375 205.777344 C 264.476562 205.777344 264.570312 205.683594 264.570312 205.566406 Z M 264.570312 205.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.210938 203.589844 C 260.210938 203.472656 260.117188 203.378906 260 203.378906 C 259.882812 203.378906 259.789062 203.472656 259.789062 203.589844 C 259.789062 203.707031 259.882812 203.800781 260 203.800781 C 260.117188 203.800781 260.210938 203.707031 260.210938 203.589844 Z M 260.210938 203.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.214844 206.148438 C 261.214844 206.03125 261.121094 205.9375 261.003906 205.9375 C 260.886719 205.9375 260.792969 206.03125 260.792969 206.148438 C 260.792969 206.265625 260.886719 206.359375 261.003906 206.359375 C 261.121094 206.359375 261.214844 206.265625 261.214844 206.148438 Z M 261.214844 206.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.503906 208.738281 C 260.503906 208.621094 260.410156 208.527344 260.292969 208.527344 C 260.175781 208.527344 260.082031 208.621094 260.082031 208.738281 C 260.082031 208.855469 260.175781 208.949219 260.292969 208.949219 C 260.410156 208.949219 260.503906 208.855469 260.503906 208.738281 Z M 260.503906 208.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.1875 204.363281 C 259.1875 204.246094 259.09375 204.152344 258.976562 204.152344 C 258.859375 204.152344 258.765625 204.246094 258.765625 204.363281 C 258.765625 204.480469 258.859375 204.574219 258.976562 204.574219 C 259.09375 204.574219 259.1875 204.480469 259.1875 204.363281 Z M 259.1875 204.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.164062 202.378906 C 257.164062 202.261719 257.070312 202.167969 256.953125 202.167969 C 256.835938 202.167969 256.742188 202.261719 256.742188 202.378906 C 256.742188 202.496094 256.835938 202.589844 256.953125 202.589844 C 257.070312 202.589844 257.164062 202.496094 257.164062 202.378906 Z M 257.164062 202.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.289062 203.609375 C 262.289062 203.492188 262.195312 203.398438 262.078125 203.398438 C 261.960938 203.398438 261.867188 203.492188 261.867188 203.609375 C 261.867188 203.726562 261.960938 203.820312 262.078125 203.820312 C 262.195312 203.820312 262.289062 203.726562 262.289062 203.609375 Z M 262.289062 203.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.742188 204.328125 C 262.742188 204.210938 262.648438 204.117188 262.53125 204.117188 C 262.414062 204.117188 262.320312 204.210938 262.320312 204.328125 C 262.320312 204.445312 262.414062 204.539062 262.53125 204.539062 C 262.648438 204.539062 262.742188 204.445312 262.742188 204.328125 Z M 262.742188 204.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.292969 205.847656 C 264.292969 205.730469 264.199219 205.636719 264.082031 205.636719 C 263.964844 205.636719 263.871094 205.730469 263.871094 205.847656 C 263.871094 205.964844 263.964844 206.058594 264.082031 206.058594 C 264.199219 206.058594 264.292969 205.964844 264.292969 205.847656 Z M 264.292969 205.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.925781 204.195312 C 261.925781 204.078125 261.832031 203.984375 261.714844 203.984375 C 261.597656 203.984375 261.503906 204.078125 261.503906 204.195312 C 261.503906 204.3125 261.597656 204.40625 261.714844 204.40625 C 261.832031 204.40625 261.925781 204.3125 261.925781 204.195312 Z M 261.925781 204.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.824219 205.367188 C 258.824219 205.25 258.730469 205.15625 258.613281 205.15625 C 258.496094 205.15625 258.402344 205.25 258.402344 205.367188 C 258.402344 205.484375 258.496094 205.578125 258.613281 205.578125 C 258.730469 205.578125 258.824219 205.484375 258.824219 205.367188 Z M 258.824219 205.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.308594 202.28125 C 261.308594 202.164062 261.214844 202.070312 261.097656 202.070312 C 260.980469 202.070312 260.886719 202.164062 260.886719 202.28125 C 260.886719 202.398438 260.980469 202.492188 261.097656 202.492188 C 261.214844 202.492188 261.308594 202.398438 261.308594 202.28125 Z M 261.308594 202.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.800781 197.742188 C 265.800781 197.625 265.707031 197.53125 265.589844 197.53125 C 265.472656 197.53125 265.378906 197.625 265.378906 197.742188 C 265.378906 197.859375 265.472656 197.953125 265.589844 197.953125 C 265.707031 197.953125 265.800781 197.859375 265.800781 197.742188 Z M 265.800781 197.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.789062 200.820312 C 263.789062 200.703125 263.695312 200.609375 263.578125 200.609375 C 263.460938 200.609375 263.367188 200.703125 263.367188 200.820312 C 263.367188 200.9375 263.460938 201.03125 263.578125 201.03125 C 263.695312 201.03125 263.789062 200.9375 263.789062 200.820312 Z M 263.789062 200.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.375 198.585938 C 263.375 198.46875 263.28125 198.375 263.164062 198.375 C 263.046875 198.375 262.953125 198.46875 262.953125 198.585938 C 262.953125 198.703125 263.046875 198.796875 263.164062 198.796875 C 263.28125 198.796875 263.375 198.703125 263.375 198.585938 Z M 263.375 198.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.667969 196.15625 C 260.667969 196.039062 260.574219 195.945312 260.457031 195.945312 C 260.339844 195.945312 260.246094 196.039062 260.246094 196.15625 C 260.246094 196.273438 260.339844 196.367188 260.457031 196.367188 C 260.574219 196.367188 260.667969 196.273438 260.667969 196.15625 Z M 260.667969 196.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.867188 195.433594 C 259.867188 195.316406 259.773438 195.222656 259.65625 195.222656 C 259.539062 195.222656 259.445312 195.316406 259.445312 195.433594 C 259.445312 195.550781 259.539062 195.644531 259.65625 195.644531 C 259.773438 195.644531 259.867188 195.550781 259.867188 195.433594 Z M 259.867188 195.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.875 197.753906 C 256.875 197.636719 256.78125 197.542969 256.664062 197.542969 C 256.546875 197.542969 256.453125 197.636719 256.453125 197.753906 C 256.453125 197.871094 256.546875 197.964844 256.664062 197.964844 C 256.78125 197.964844 256.875 197.871094 256.875 197.753906 Z M 256.875 197.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.613281 199.917969 C 258.613281 199.800781 258.519531 199.707031 258.402344 199.707031 C 258.285156 199.707031 258.191406 199.800781 258.191406 199.917969 C 258.191406 200.035156 258.285156 200.128906 258.402344 200.128906 C 258.519531 200.128906 258.613281 200.035156 258.613281 199.917969 Z M 258.613281 199.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.074219 203.933594 C 257.074219 203.816406 256.980469 203.722656 256.863281 203.722656 C 256.746094 203.722656 256.652344 203.816406 256.652344 203.933594 C 256.652344 204.050781 256.746094 204.144531 256.863281 204.144531 C 256.980469 204.144531 257.074219 204.050781 257.074219 203.933594 Z M 257.074219 203.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.703125 203.117188 C 254.703125 203 254.609375 202.90625 254.492188 202.90625 C 254.375 202.90625 254.28125 203 254.28125 203.117188 C 254.28125 203.234375 254.375 203.328125 254.492188 203.328125 C 254.609375 203.328125 254.703125 203.234375 254.703125 203.117188 Z M 254.703125 203.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.246094 203.171875 C 255.246094 203.054688 255.152344 202.960938 255.035156 202.960938 C 254.917969 202.960938 254.824219 203.054688 254.824219 203.171875 C 254.824219 203.289062 254.917969 203.382812 255.035156 203.382812 C 255.152344 203.382812 255.246094 203.289062 255.246094 203.171875 Z M 255.246094 203.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.304688 203.480469 C 257.304688 203.363281 257.210938 203.269531 257.09375 203.269531 C 256.976562 203.269531 256.882812 203.363281 256.882812 203.480469 C 256.882812 203.597656 256.976562 203.691406 257.09375 203.691406 C 257.210938 203.691406 257.304688 203.597656 257.304688 203.480469 Z M 257.304688 203.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.308594 203.203125 C 259.308594 203.085938 259.214844 202.992188 259.097656 202.992188 C 258.980469 202.992188 258.886719 203.085938 258.886719 203.203125 C 258.886719 203.320312 258.980469 203.414062 259.097656 203.414062 C 259.214844 203.414062 259.308594 203.320312 259.308594 203.203125 Z M 259.308594 203.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.097656 206.054688 C 255.097656 205.9375 255.003906 205.84375 254.886719 205.84375 C 254.769531 205.84375 254.675781 205.9375 254.675781 206.054688 C 254.675781 206.171875 254.769531 206.265625 254.886719 206.265625 C 255.003906 206.265625 255.097656 206.171875 255.097656 206.054688 Z M 255.097656 206.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.765625 206.707031 C 256.765625 206.589844 256.671875 206.496094 256.554688 206.496094 C 256.4375 206.496094 256.34375 206.589844 256.34375 206.707031 C 256.34375 206.824219 256.4375 206.917969 256.554688 206.917969 C 256.671875 206.917969 256.765625 206.824219 256.765625 206.707031 Z M 256.765625 206.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.832031 205.804688 C 255.832031 205.6875 255.738281 205.59375 255.621094 205.59375 C 255.503906 205.59375 255.410156 205.6875 255.410156 205.804688 C 255.410156 205.921875 255.503906 206.015625 255.621094 206.015625 C 255.738281 206.015625 255.832031 205.921875 255.832031 205.804688 Z M 255.832031 205.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.042969 205.128906 C 258.042969 205.011719 257.949219 204.917969 257.832031 204.917969 C 257.714844 204.917969 257.621094 205.011719 257.621094 205.128906 C 257.621094 205.246094 257.714844 205.339844 257.832031 205.339844 C 257.949219 205.339844 258.042969 205.246094 258.042969 205.128906 Z M 258.042969 205.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.449219 209.160156 C 256.449219 209.042969 256.355469 208.949219 256.238281 208.949219 C 256.121094 208.949219 256.027344 209.042969 256.027344 209.160156 C 256.027344 209.277344 256.121094 209.371094 256.238281 209.371094 C 256.355469 209.371094 256.449219 209.277344 256.449219 209.160156 Z M 256.449219 209.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.910156 204.128906 C 256.910156 204.011719 256.816406 203.917969 256.699219 203.917969 C 256.582031 203.917969 256.488281 204.011719 256.488281 204.128906 C 256.488281 204.246094 256.582031 204.339844 256.699219 204.339844 C 256.816406 204.339844 256.910156 204.246094 256.910156 204.128906 Z M 256.910156 204.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.960938 204.351562 C 255.960938 204.234375 255.867188 204.140625 255.75 204.140625 C 255.632812 204.140625 255.539062 204.234375 255.539062 204.351562 C 255.539062 204.46875 255.632812 204.5625 255.75 204.5625 C 255.867188 204.5625 255.960938 204.46875 255.960938 204.351562 Z M 255.960938 204.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.359375 207.378906 C 259.359375 207.261719 259.265625 207.167969 259.148438 207.167969 C 259.03125 207.167969 258.9375 207.261719 258.9375 207.378906 C 258.9375 207.496094 259.03125 207.589844 259.148438 207.589844 C 259.265625 207.589844 259.359375 207.496094 259.359375 207.378906 Z M 259.359375 207.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.707031 206.464844 C 259.707031 206.347656 259.613281 206.253906 259.496094 206.253906 C 259.378906 206.253906 259.285156 206.347656 259.285156 206.464844 C 259.285156 206.582031 259.378906 206.675781 259.496094 206.675781 C 259.613281 206.675781 259.707031 206.582031 259.707031 206.464844 Z M 259.707031 206.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.746094 205.238281 C 254.746094 205.121094 254.652344 205.027344 254.535156 205.027344 C 254.417969 205.027344 254.324219 205.121094 254.324219 205.238281 C 254.324219 205.355469 254.417969 205.449219 254.535156 205.449219 C 254.652344 205.449219 254.746094 205.355469 254.746094 205.238281 Z M 254.746094 205.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.832031 203.601562 C 254.832031 203.484375 254.738281 203.390625 254.621094 203.390625 C 254.503906 203.390625 254.410156 203.484375 254.410156 203.601562 C 254.410156 203.71875 254.503906 203.8125 254.621094 203.8125 C 254.738281 203.8125 254.832031 203.71875 254.832031 203.601562 Z M 254.832031 203.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.816406 206.792969 C 254.816406 206.675781 254.722656 206.582031 254.605469 206.582031 C 254.488281 206.582031 254.394531 206.675781 254.394531 206.792969 C 254.394531 206.910156 254.488281 207.003906 254.605469 207.003906 C 254.722656 207.003906 254.816406 206.910156 254.816406 206.792969 Z M 254.816406 206.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.109375 205.875 C 251.109375 205.757812 251.015625 205.664062 250.898438 205.664062 C 250.78125 205.664062 250.6875 205.757812 250.6875 205.875 C 250.6875 205.992188 250.78125 206.085938 250.898438 206.085938 C 251.015625 206.085938 251.109375 205.992188 251.109375 205.875 Z M 251.109375 205.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 254.984375 206.492188 C 254.984375 206.375 254.890625 206.28125 254.773438 206.28125 C 254.65625 206.28125 254.5625 206.375 254.5625 206.492188 C 254.5625 206.609375 254.65625 206.703125 254.773438 206.703125 C 254.890625 206.703125 254.984375 206.609375 254.984375 206.492188 Z M 254.984375 206.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.421875 204.90625 C 256.421875 204.789062 256.328125 204.695312 256.210938 204.695312 C 256.09375 204.695312 256 204.789062 256 204.90625 C 256 205.023438 256.09375 205.117188 256.210938 205.117188 C 256.328125 205.117188 256.421875 205.023438 256.421875 204.90625 Z M 256.421875 204.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.074219 205.265625 C 255.074219 205.148438 254.980469 205.054688 254.863281 205.054688 C 254.746094 205.054688 254.652344 205.148438 254.652344 205.265625 C 254.652344 205.382812 254.746094 205.476562 254.863281 205.476562 C 254.980469 205.476562 255.074219 205.382812 255.074219 205.265625 Z M 255.074219 205.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.902344 206 C 255.902344 205.882812 255.808594 205.789062 255.691406 205.789062 C 255.574219 205.789062 255.480469 205.882812 255.480469 206 C 255.480469 206.117188 255.574219 206.210938 255.691406 206.210938 C 255.808594 206.210938 255.902344 206.117188 255.902344 206 Z M 255.902344 206 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.222656 206.195312 C 256.222656 206.078125 256.128906 205.984375 256.011719 205.984375 C 255.894531 205.984375 255.800781 206.078125 255.800781 206.195312 C 255.800781 206.3125 255.894531 206.40625 256.011719 206.40625 C 256.128906 206.40625 256.222656 206.3125 256.222656 206.195312 Z M 256.222656 206.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.082031 210.65625 C 256.082031 210.539062 255.988281 210.445312 255.871094 210.445312 C 255.753906 210.445312 255.660156 210.539062 255.660156 210.65625 C 255.660156 210.773438 255.753906 210.867188 255.871094 210.867188 C 255.988281 210.867188 256.082031 210.773438 256.082031 210.65625 Z M 256.082031 210.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.011719 209.300781 C 256.011719 209.183594 255.917969 209.089844 255.800781 209.089844 C 255.683594 209.089844 255.589844 209.183594 255.589844 209.300781 C 255.589844 209.417969 255.683594 209.511719 255.800781 209.511719 C 255.917969 209.511719 256.011719 209.417969 256.011719 209.300781 Z M 256.011719 209.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.773438 207.863281 C 255.773438 207.746094 255.679688 207.652344 255.5625 207.652344 C 255.445312 207.652344 255.351562 207.746094 255.351562 207.863281 C 255.351562 207.980469 255.445312 208.074219 255.5625 208.074219 C 255.679688 208.074219 255.773438 207.980469 255.773438 207.863281 Z M 255.773438 207.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.632812 209.464844 C 257.632812 209.347656 257.539062 209.253906 257.421875 209.253906 C 257.304688 209.253906 257.210938 209.347656 257.210938 209.464844 C 257.210938 209.582031 257.304688 209.675781 257.421875 209.675781 C 257.539062 209.675781 257.632812 209.582031 257.632812 209.464844 Z M 257.632812 209.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.355469 205.972656 C 259.355469 205.855469 259.261719 205.761719 259.144531 205.761719 C 259.027344 205.761719 258.933594 205.855469 258.933594 205.972656 C 258.933594 206.089844 259.027344 206.183594 259.144531 206.183594 C 259.261719 206.183594 259.355469 206.089844 259.355469 205.972656 Z M 259.355469 205.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.785156 204.085938 C 257.785156 203.96875 257.691406 203.875 257.574219 203.875 C 257.457031 203.875 257.363281 203.96875 257.363281 204.085938 C 257.363281 204.203125 257.457031 204.296875 257.574219 204.296875 C 257.691406 204.296875 257.785156 204.203125 257.785156 204.085938 Z M 257.785156 204.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.636719 203.558594 C 257.636719 203.441406 257.542969 203.347656 257.425781 203.347656 C 257.308594 203.347656 257.214844 203.441406 257.214844 203.558594 C 257.214844 203.675781 257.308594 203.769531 257.425781 203.769531 C 257.542969 203.769531 257.636719 203.675781 257.636719 203.558594 Z M 257.636719 203.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.792969 202.121094 C 256.792969 202.003906 256.699219 201.910156 256.582031 201.910156 C 256.464844 201.910156 256.371094 202.003906 256.371094 202.121094 C 256.371094 202.238281 256.464844 202.332031 256.582031 202.332031 C 256.699219 202.332031 256.792969 202.238281 256.792969 202.121094 Z M 256.792969 202.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.863281 202.609375 C 259.863281 202.492188 259.769531 202.398438 259.652344 202.398438 C 259.535156 202.398438 259.441406 202.492188 259.441406 202.609375 C 259.441406 202.726562 259.535156 202.820312 259.652344 202.820312 C 259.769531 202.820312 259.863281 202.726562 259.863281 202.609375 Z M 259.863281 202.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.121094 207.105469 C 260.121094 206.988281 260.027344 206.894531 259.910156 206.894531 C 259.792969 206.894531 259.699219 206.988281 259.699219 207.105469 C 259.699219 207.222656 259.792969 207.316406 259.910156 207.316406 C 260.027344 207.316406 260.121094 207.222656 260.121094 207.105469 Z M 260.121094 207.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.703125 205.835938 C 261.703125 205.71875 261.609375 205.625 261.492188 205.625 C 261.375 205.625 261.28125 205.71875 261.28125 205.835938 C 261.28125 205.953125 261.375 206.046875 261.492188 206.046875 C 261.609375 206.046875 261.703125 205.953125 261.703125 205.835938 Z M 261.703125 205.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264 202.914062 C 264 202.796875 263.90625 202.703125 263.789062 202.703125 C 263.671875 202.703125 263.578125 202.796875 263.578125 202.914062 C 263.578125 203.03125 263.671875 203.125 263.789062 203.125 C 263.90625 203.125 264 203.03125 264 202.914062 Z M 264 202.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.402344 205.683594 C 261.402344 205.566406 261.308594 205.472656 261.191406 205.472656 C 261.074219 205.472656 260.980469 205.566406 260.980469 205.683594 C 260.980469 205.800781 261.074219 205.894531 261.191406 205.894531 C 261.308594 205.894531 261.402344 205.800781 261.402344 205.683594 Z M 261.402344 205.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.230469 207.546875 C 264.230469 207.429688 264.136719 207.335938 264.019531 207.335938 C 263.902344 207.335938 263.808594 207.429688 263.808594 207.546875 C 263.808594 207.664062 263.902344 207.757812 264.019531 207.757812 C 264.136719 207.757812 264.230469 207.664062 264.230469 207.546875 Z M 264.230469 207.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.019531 205.101562 C 264.019531 204.984375 263.925781 204.890625 263.808594 204.890625 C 263.691406 204.890625 263.597656 204.984375 263.597656 205.101562 C 263.597656 205.21875 263.691406 205.3125 263.808594 205.3125 C 263.925781 205.3125 264.019531 205.21875 264.019531 205.101562 Z M 264.019531 205.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.09375 202.96875 C 261.09375 202.851562 261 202.757812 260.882812 202.757812 C 260.765625 202.757812 260.671875 202.851562 260.671875 202.96875 C 260.671875 203.085938 260.765625 203.179688 260.882812 203.179688 C 261 203.179688 261.09375 203.085938 261.09375 202.96875 Z M 261.09375 202.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.253906 205.332031 C 260.253906 205.214844 260.160156 205.121094 260.042969 205.121094 C 259.925781 205.121094 259.832031 205.214844 259.832031 205.332031 C 259.832031 205.449219 259.925781 205.542969 260.042969 205.542969 C 260.160156 205.542969 260.253906 205.449219 260.253906 205.332031 Z M 260.253906 205.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.355469 206.480469 C 261.355469 206.363281 261.261719 206.269531 261.144531 206.269531 C 261.027344 206.269531 260.933594 206.363281 260.933594 206.480469 C 260.933594 206.597656 261.027344 206.691406 261.144531 206.691406 C 261.261719 206.691406 261.355469 206.597656 261.355469 206.480469 Z M 261.355469 206.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.566406 203.542969 C 263.566406 203.425781 263.472656 203.332031 263.355469 203.332031 C 263.238281 203.332031 263.144531 203.425781 263.144531 203.542969 C 263.144531 203.660156 263.238281 203.753906 263.355469 203.753906 C 263.472656 203.753906 263.566406 203.660156 263.566406 203.542969 Z M 263.566406 203.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.78125 205.121094 C 262.78125 205.003906 262.6875 204.910156 262.570312 204.910156 C 262.453125 204.910156 262.359375 205.003906 262.359375 205.121094 C 262.359375 205.238281 262.453125 205.332031 262.570312 205.332031 C 262.6875 205.332031 262.78125 205.238281 262.78125 205.121094 Z M 262.78125 205.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.8125 199.773438 C 263.8125 199.65625 263.71875 199.5625 263.601562 199.5625 C 263.484375 199.5625 263.390625 199.65625 263.390625 199.773438 C 263.390625 199.890625 263.484375 199.984375 263.601562 199.984375 C 263.71875 199.984375 263.8125 199.890625 263.8125 199.773438 Z M 263.8125 199.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.863281 199.589844 C 264.863281 199.472656 264.769531 199.378906 264.652344 199.378906 C 264.535156 199.378906 264.441406 199.472656 264.441406 199.589844 C 264.441406 199.707031 264.535156 199.800781 264.652344 199.800781 C 264.769531 199.800781 264.863281 199.707031 264.863281 199.589844 Z M 264.863281 199.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.800781 196.957031 C 264.800781 196.839844 264.707031 196.746094 264.589844 196.746094 C 264.472656 196.746094 264.378906 196.839844 264.378906 196.957031 C 264.378906 197.074219 264.472656 197.167969 264.589844 197.167969 C 264.707031 197.167969 264.800781 197.074219 264.800781 196.957031 Z M 264.800781 196.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265 194.679688 C 265 194.5625 264.90625 194.46875 264.789062 194.46875 C 264.671875 194.46875 264.578125 194.5625 264.578125 194.679688 C 264.578125 194.796875 264.671875 194.890625 264.789062 194.890625 C 264.90625 194.890625 265 194.796875 265 194.679688 Z M 265 194.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.453125 192.519531 C 261.453125 192.402344 261.359375 192.308594 261.242188 192.308594 C 261.125 192.308594 261.03125 192.402344 261.03125 192.519531 C 261.03125 192.636719 261.125 192.730469 261.242188 192.730469 C 261.359375 192.730469 261.453125 192.636719 261.453125 192.519531 Z M 261.453125 192.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.070312 191.683594 C 260.070312 191.566406 259.976562 191.472656 259.859375 191.472656 C 259.742188 191.472656 259.648438 191.566406 259.648438 191.683594 C 259.648438 191.800781 259.742188 191.894531 259.859375 191.894531 C 259.976562 191.894531 260.070312 191.800781 260.070312 191.683594 Z M 260.070312 191.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.480469 191.6875 C 262.480469 191.570312 262.386719 191.476562 262.269531 191.476562 C 262.152344 191.476562 262.058594 191.570312 262.058594 191.6875 C 262.058594 191.804688 262.152344 191.898438 262.269531 191.898438 C 262.386719 191.898438 262.480469 191.804688 262.480469 191.6875 Z M 262.480469 191.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.066406 188.992188 C 267.066406 188.875 266.972656 188.78125 266.855469 188.78125 C 266.738281 188.78125 266.644531 188.875 266.644531 188.992188 C 266.644531 189.109375 266.738281 189.203125 266.855469 189.203125 C 266.972656 189.203125 267.066406 189.109375 267.066406 188.992188 Z M 267.066406 188.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.511719 192.476562 C 263.511719 192.359375 263.417969 192.265625 263.300781 192.265625 C 263.183594 192.265625 263.089844 192.359375 263.089844 192.476562 C 263.089844 192.59375 263.183594 192.6875 263.300781 192.6875 C 263.417969 192.6875 263.511719 192.59375 263.511719 192.476562 Z M 263.511719 192.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.136719 191.59375 C 261.136719 191.476562 261.042969 191.382812 260.925781 191.382812 C 260.808594 191.382812 260.714844 191.476562 260.714844 191.59375 C 260.714844 191.710938 260.808594 191.804688 260.925781 191.804688 C 261.042969 191.804688 261.136719 191.710938 261.136719 191.59375 Z M 261.136719 191.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.984375 189.476562 C 263.984375 189.359375 263.890625 189.265625 263.773438 189.265625 C 263.65625 189.265625 263.5625 189.359375 263.5625 189.476562 C 263.5625 189.59375 263.65625 189.6875 263.773438 189.6875 C 263.890625 189.6875 263.984375 189.59375 263.984375 189.476562 Z M 263.984375 189.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.335938 189.175781 C 263.335938 189.058594 263.242188 188.964844 263.125 188.964844 C 263.007812 188.964844 262.914062 189.058594 262.914062 189.175781 C 262.914062 189.292969 263.007812 189.386719 263.125 189.386719 C 263.242188 189.386719 263.335938 189.292969 263.335938 189.175781 Z M 263.335938 189.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.058594 190.183594 C 267.058594 190.066406 266.964844 189.972656 266.847656 189.972656 C 266.730469 189.972656 266.636719 190.066406 266.636719 190.183594 C 266.636719 190.300781 266.730469 190.394531 266.847656 190.394531 C 266.964844 190.394531 267.058594 190.300781 267.058594 190.183594 Z M 267.058594 190.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.496094 192.132812 C 266.496094 192.015625 266.402344 191.921875 266.285156 191.921875 C 266.167969 191.921875 266.074219 192.015625 266.074219 192.132812 C 266.074219 192.25 266.167969 192.34375 266.285156 192.34375 C 266.402344 192.34375 266.496094 192.25 266.496094 192.132812 Z M 266.496094 192.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.785156 189.273438 C 263.785156 189.15625 263.691406 189.0625 263.574219 189.0625 C 263.457031 189.0625 263.363281 189.15625 263.363281 189.273438 C 263.363281 189.390625 263.457031 189.484375 263.574219 189.484375 C 263.691406 189.484375 263.785156 189.390625 263.785156 189.273438 Z M 263.785156 189.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.828125 190.132812 C 261.828125 190.015625 261.734375 189.921875 261.617188 189.921875 C 261.5 189.921875 261.40625 190.015625 261.40625 190.132812 C 261.40625 190.25 261.5 190.34375 261.617188 190.34375 C 261.734375 190.34375 261.828125 190.25 261.828125 190.132812 Z M 261.828125 190.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.597656 190.949219 C 262.597656 190.832031 262.503906 190.738281 262.386719 190.738281 C 262.269531 190.738281 262.175781 190.832031 262.175781 190.949219 C 262.175781 191.066406 262.269531 191.160156 262.386719 191.160156 C 262.503906 191.160156 262.597656 191.066406 262.597656 190.949219 Z M 262.597656 190.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.289062 190.785156 C 263.289062 190.667969 263.195312 190.574219 263.078125 190.574219 C 262.960938 190.574219 262.867188 190.667969 262.867188 190.785156 C 262.867188 190.902344 262.960938 190.996094 263.078125 190.996094 C 263.195312 190.996094 263.289062 190.902344 263.289062 190.785156 Z M 263.289062 190.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.566406 190.15625 C 263.566406 190.039062 263.472656 189.945312 263.355469 189.945312 C 263.238281 189.945312 263.144531 190.039062 263.144531 190.15625 C 263.144531 190.273438 263.238281 190.367188 263.355469 190.367188 C 263.472656 190.367188 263.566406 190.273438 263.566406 190.15625 Z M 263.566406 190.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.304688 194.660156 C 262.304688 194.542969 262.210938 194.449219 262.09375 194.449219 C 261.976562 194.449219 261.882812 194.542969 261.882812 194.660156 C 261.882812 194.777344 261.976562 194.871094 262.09375 194.871094 C 262.210938 194.871094 262.304688 194.777344 262.304688 194.660156 Z M 262.304688 194.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.5 194.492188 C 263.5 194.375 263.40625 194.28125 263.289062 194.28125 C 263.171875 194.28125 263.078125 194.375 263.078125 194.492188 C 263.078125 194.609375 263.171875 194.703125 263.289062 194.703125 C 263.40625 194.703125 263.5 194.609375 263.5 194.492188 Z M 263.5 194.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.644531 197.621094 C 263.644531 197.503906 263.550781 197.410156 263.433594 197.410156 C 263.316406 197.410156 263.222656 197.503906 263.222656 197.621094 C 263.222656 197.738281 263.316406 197.832031 263.433594 197.832031 C 263.550781 197.832031 263.644531 197.738281 263.644531 197.621094 Z M 263.644531 197.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.253906 196.402344 C 267.253906 196.285156 267.160156 196.191406 267.042969 196.191406 C 266.925781 196.191406 266.832031 196.285156 266.832031 196.402344 C 266.832031 196.519531 266.925781 196.613281 267.042969 196.613281 C 267.160156 196.613281 267.253906 196.519531 267.253906 196.402344 Z M 267.253906 196.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.855469 194.3125 C 267.855469 194.195312 267.761719 194.101562 267.644531 194.101562 C 267.527344 194.101562 267.433594 194.195312 267.433594 194.3125 C 267.433594 194.429688 267.527344 194.523438 267.644531 194.523438 C 267.761719 194.523438 267.855469 194.429688 267.855469 194.3125 Z M 267.855469 194.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.460938 193.222656 C 269.460938 193.105469 269.367188 193.011719 269.25 193.011719 C 269.132812 193.011719 269.039062 193.105469 269.039062 193.222656 C 269.039062 193.339844 269.132812 193.433594 269.25 193.433594 C 269.367188 193.433594 269.460938 193.339844 269.460938 193.222656 Z M 269.460938 193.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.386719 192.785156 C 273.386719 192.667969 273.292969 192.574219 273.175781 192.574219 C 273.058594 192.574219 272.964844 192.667969 272.964844 192.785156 C 272.964844 192.902344 273.058594 192.996094 273.175781 192.996094 C 273.292969 192.996094 273.386719 192.902344 273.386719 192.785156 Z M 273.386719 192.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.578125 191.734375 C 273.578125 191.617188 273.484375 191.523438 273.367188 191.523438 C 273.25 191.523438 273.15625 191.617188 273.15625 191.734375 C 273.15625 191.851562 273.25 191.945312 273.367188 191.945312 C 273.484375 191.945312 273.578125 191.851562 273.578125 191.734375 Z M 273.578125 191.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.941406 193.085938 C 275.941406 192.96875 275.847656 192.875 275.730469 192.875 C 275.613281 192.875 275.519531 192.96875 275.519531 193.085938 C 275.519531 193.203125 275.613281 193.296875 275.730469 193.296875 C 275.847656 193.296875 275.941406 193.203125 275.941406 193.085938 Z M 275.941406 193.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.414062 194.128906 C 279.414062 194.011719 279.320312 193.917969 279.203125 193.917969 C 279.085938 193.917969 278.992188 194.011719 278.992188 194.128906 C 278.992188 194.246094 279.085938 194.339844 279.203125 194.339844 C 279.320312 194.339844 279.414062 194.246094 279.414062 194.128906 Z M 279.414062 194.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 279.136719 194.132812 C 279.136719 194.015625 279.042969 193.921875 278.925781 193.921875 C 278.808594 193.921875 278.714844 194.015625 278.714844 194.132812 C 278.714844 194.25 278.808594 194.34375 278.925781 194.34375 C 279.042969 194.34375 279.136719 194.25 279.136719 194.132812 Z M 279.136719 194.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.785156 192.558594 C 276.785156 192.441406 276.691406 192.347656 276.574219 192.347656 C 276.457031 192.347656 276.363281 192.441406 276.363281 192.558594 C 276.363281 192.675781 276.457031 192.769531 276.574219 192.769531 C 276.691406 192.769531 276.785156 192.675781 276.785156 192.558594 Z M 276.785156 192.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.195312 189.890625 C 275.195312 189.773438 275.101562 189.679688 274.984375 189.679688 C 274.867188 189.679688 274.773438 189.773438 274.773438 189.890625 C 274.773438 190.007812 274.867188 190.101562 274.984375 190.101562 C 275.101562 190.101562 275.195312 190.007812 275.195312 189.890625 Z M 275.195312 189.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.972656 191.753906 C 276.972656 191.636719 276.878906 191.542969 276.761719 191.542969 C 276.644531 191.542969 276.550781 191.636719 276.550781 191.753906 C 276.550781 191.871094 276.644531 191.964844 276.761719 191.964844 C 276.878906 191.964844 276.972656 191.871094 276.972656 191.753906 Z M 276.972656 191.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.394531 191.96875 C 275.394531 191.851562 275.300781 191.757812 275.183594 191.757812 C 275.066406 191.757812 274.972656 191.851562 274.972656 191.96875 C 274.972656 192.085938 275.066406 192.179688 275.183594 192.179688 C 275.300781 192.179688 275.394531 192.085938 275.394531 191.96875 Z M 275.394531 191.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.390625 194.128906 C 276.390625 194.011719 276.296875 193.917969 276.179688 193.917969 C 276.0625 193.917969 275.96875 194.011719 275.96875 194.128906 C 275.96875 194.246094 276.0625 194.339844 276.179688 194.339844 C 276.296875 194.339844 276.390625 194.246094 276.390625 194.128906 Z M 276.390625 194.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 278.089844 194.378906 C 278.089844 194.261719 277.996094 194.167969 277.878906 194.167969 C 277.761719 194.167969 277.667969 194.261719 277.667969 194.378906 C 277.667969 194.496094 277.761719 194.589844 277.878906 194.589844 C 277.996094 194.589844 278.089844 194.496094 278.089844 194.378906 Z M 278.089844 194.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.027344 198.578125 C 277.027344 198.460938 276.933594 198.367188 276.816406 198.367188 C 276.699219 198.367188 276.605469 198.460938 276.605469 198.578125 C 276.605469 198.695312 276.699219 198.789062 276.816406 198.789062 C 276.933594 198.789062 277.027344 198.695312 277.027344 198.578125 Z M 277.027344 198.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 280.65625 196.503906 C 280.65625 196.386719 280.5625 196.292969 280.445312 196.292969 C 280.328125 196.292969 280.234375 196.386719 280.234375 196.503906 C 280.234375 196.621094 280.328125 196.714844 280.445312 196.714844 C 280.5625 196.714844 280.65625 196.621094 280.65625 196.503906 Z M 280.65625 196.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.867188 195.925781 C 277.867188 195.808594 277.773438 195.714844 277.65625 195.714844 C 277.539062 195.714844 277.445312 195.808594 277.445312 195.925781 C 277.445312 196.042969 277.539062 196.136719 277.65625 196.136719 C 277.773438 196.136719 277.867188 196.042969 277.867188 195.925781 Z M 277.867188 195.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.710938 199.234375 C 273.710938 199.117188 273.617188 199.023438 273.5 199.023438 C 273.382812 199.023438 273.289062 199.117188 273.289062 199.234375 C 273.289062 199.351562 273.382812 199.445312 273.5 199.445312 C 273.617188 199.445312 273.710938 199.351562 273.710938 199.234375 Z M 273.710938 199.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.386719 197.796875 C 275.386719 197.679688 275.292969 197.585938 275.175781 197.585938 C 275.058594 197.585938 274.964844 197.679688 274.964844 197.796875 C 274.964844 197.914062 275.058594 198.007812 275.175781 198.007812 C 275.292969 198.007812 275.386719 197.914062 275.386719 197.796875 Z M 275.386719 197.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.511719 201.203125 C 274.511719 201.085938 274.417969 200.992188 274.300781 200.992188 C 274.183594 200.992188 274.089844 201.085938 274.089844 201.203125 C 274.089844 201.320312 274.183594 201.414062 274.300781 201.414062 C 274.417969 201.414062 274.511719 201.320312 274.511719 201.203125 Z M 274.511719 201.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.238281 200.140625 C 276.238281 200.023438 276.144531 199.929688 276.027344 199.929688 C 275.910156 199.929688 275.816406 200.023438 275.816406 200.140625 C 275.816406 200.257812 275.910156 200.351562 276.027344 200.351562 C 276.144531 200.351562 276.238281 200.257812 276.238281 200.140625 Z M 276.238281 200.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.070312 198.960938 C 275.070312 198.84375 274.976562 198.75 274.859375 198.75 C 274.742188 198.75 274.648438 198.84375 274.648438 198.960938 C 274.648438 199.078125 274.742188 199.171875 274.859375 199.171875 C 274.976562 199.171875 275.070312 199.078125 275.070312 198.960938 Z M 275.070312 198.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.308594 201.117188 C 273.308594 201 273.214844 200.90625 273.097656 200.90625 C 272.980469 200.90625 272.886719 201 272.886719 201.117188 C 272.886719 201.234375 272.980469 201.328125 273.097656 201.328125 C 273.214844 201.328125 273.308594 201.234375 273.308594 201.117188 Z M 273.308594 201.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.746094 201.308594 C 271.746094 201.191406 271.652344 201.097656 271.535156 201.097656 C 271.417969 201.097656 271.324219 201.191406 271.324219 201.308594 C 271.324219 201.425781 271.417969 201.519531 271.535156 201.519531 C 271.652344 201.519531 271.746094 201.425781 271.746094 201.308594 Z M 271.746094 201.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.976562 203.460938 C 271.976562 203.34375 271.882812 203.25 271.765625 203.25 C 271.648438 203.25 271.554688 203.34375 271.554688 203.460938 C 271.554688 203.578125 271.648438 203.671875 271.765625 203.671875 C 271.882812 203.671875 271.976562 203.578125 271.976562 203.460938 Z M 271.976562 203.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.96875 200.589844 C 274.96875 200.472656 274.875 200.378906 274.757812 200.378906 C 274.640625 200.378906 274.546875 200.472656 274.546875 200.589844 C 274.546875 200.707031 274.640625 200.800781 274.757812 200.800781 C 274.875 200.800781 274.96875 200.707031 274.96875 200.589844 Z M 274.96875 200.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.546875 200.875 C 275.546875 200.757812 275.453125 200.664062 275.335938 200.664062 C 275.21875 200.664062 275.125 200.757812 275.125 200.875 C 275.125 200.992188 275.21875 201.085938 275.335938 201.085938 C 275.453125 201.085938 275.546875 200.992188 275.546875 200.875 Z M 275.546875 200.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.519531 199.710938 C 275.519531 199.59375 275.425781 199.5 275.308594 199.5 C 275.191406 199.5 275.097656 199.59375 275.097656 199.710938 C 275.097656 199.828125 275.191406 199.921875 275.308594 199.921875 C 275.425781 199.921875 275.519531 199.828125 275.519531 199.710938 Z M 275.519531 199.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.078125 198.964844 C 274.078125 198.847656 273.984375 198.753906 273.867188 198.753906 C 273.75 198.753906 273.65625 198.847656 273.65625 198.964844 C 273.65625 199.082031 273.75 199.175781 273.867188 199.175781 C 273.984375 199.175781 274.078125 199.082031 274.078125 198.964844 Z M 274.078125 198.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.046875 203.445312 C 272.046875 203.328125 271.953125 203.234375 271.835938 203.234375 C 271.71875 203.234375 271.625 203.328125 271.625 203.445312 C 271.625 203.5625 271.71875 203.65625 271.835938 203.65625 C 271.953125 203.65625 272.046875 203.5625 272.046875 203.445312 Z M 272.046875 203.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.664062 200.847656 C 272.664062 200.730469 272.570312 200.636719 272.453125 200.636719 C 272.335938 200.636719 272.242188 200.730469 272.242188 200.847656 C 272.242188 200.964844 272.335938 201.058594 272.453125 201.058594 C 272.570312 201.058594 272.664062 200.964844 272.664062 200.847656 Z M 272.664062 200.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.867188 199.703125 C 274.867188 199.585938 274.773438 199.492188 274.65625 199.492188 C 274.539062 199.492188 274.445312 199.585938 274.445312 199.703125 C 274.445312 199.820312 274.539062 199.914062 274.65625 199.914062 C 274.773438 199.914062 274.867188 199.820312 274.867188 199.703125 Z M 274.867188 199.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 277.003906 197.335938 C 277.003906 197.21875 276.910156 197.125 276.792969 197.125 C 276.675781 197.125 276.582031 197.21875 276.582031 197.335938 C 276.582031 197.453125 276.675781 197.546875 276.792969 197.546875 C 276.910156 197.546875 277.003906 197.453125 277.003906 197.335938 Z M 277.003906 197.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 276.320312 200.460938 C 276.320312 200.34375 276.226562 200.25 276.109375 200.25 C 275.992188 200.25 275.898438 200.34375 275.898438 200.460938 C 275.898438 200.578125 275.992188 200.671875 276.109375 200.671875 C 276.226562 200.671875 276.320312 200.578125 276.320312 200.460938 Z M 276.320312 200.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.753906 201.402344 C 275.753906 201.285156 275.660156 201.191406 275.542969 201.191406 C 275.425781 201.191406 275.332031 201.285156 275.332031 201.402344 C 275.332031 201.519531 275.425781 201.613281 275.542969 201.613281 C 275.660156 201.613281 275.753906 201.519531 275.753906 201.402344 Z M 275.753906 201.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.117188 201.085938 C 274.117188 200.96875 274.023438 200.875 273.90625 200.875 C 273.789062 200.875 273.695312 200.96875 273.695312 201.085938 C 273.695312 201.203125 273.789062 201.296875 273.90625 201.296875 C 274.023438 201.296875 274.117188 201.203125 274.117188 201.085938 Z M 274.117188 201.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.773438 202.128906 C 274.773438 202.011719 274.679688 201.917969 274.5625 201.917969 C 274.445312 201.917969 274.351562 202.011719 274.351562 202.128906 C 274.351562 202.246094 274.445312 202.339844 274.5625 202.339844 C 274.679688 202.339844 274.773438 202.246094 274.773438 202.128906 Z M 274.773438 202.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.132812 203.054688 C 275.132812 202.9375 275.039062 202.84375 274.921875 202.84375 C 274.804688 202.84375 274.710938 202.9375 274.710938 203.054688 C 274.710938 203.171875 274.804688 203.265625 274.921875 203.265625 C 275.039062 203.265625 275.132812 203.171875 275.132812 203.054688 Z M 275.132812 203.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.960938 201.984375 C 272.960938 201.867188 272.867188 201.773438 272.75 201.773438 C 272.632812 201.773438 272.539062 201.867188 272.539062 201.984375 C 272.539062 202.101562 272.632812 202.195312 272.75 202.195312 C 272.867188 202.195312 272.960938 202.101562 272.960938 201.984375 Z M 272.960938 201.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.226562 203.183594 C 272.226562 203.066406 272.132812 202.972656 272.015625 202.972656 C 271.898438 202.972656 271.804688 203.066406 271.804688 203.183594 C 271.804688 203.300781 271.898438 203.394531 272.015625 203.394531 C 272.132812 203.394531 272.226562 203.300781 272.226562 203.183594 Z M 272.226562 203.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.84375 204.699219 C 271.84375 204.582031 271.75 204.488281 271.632812 204.488281 C 271.515625 204.488281 271.421875 204.582031 271.421875 204.699219 C 271.421875 204.816406 271.515625 204.910156 271.632812 204.910156 C 271.75 204.910156 271.84375 204.816406 271.84375 204.699219 Z M 271.84375 204.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.945312 204.160156 C 270.945312 204.042969 270.851562 203.949219 270.734375 203.949219 C 270.617188 203.949219 270.523438 204.042969 270.523438 204.160156 C 270.523438 204.277344 270.617188 204.371094 270.734375 204.371094 C 270.851562 204.371094 270.945312 204.277344 270.945312 204.160156 Z M 270.945312 204.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 275.648438 200.574219 C 275.648438 200.457031 275.554688 200.363281 275.4375 200.363281 C 275.320312 200.363281 275.226562 200.457031 275.226562 200.574219 C 275.226562 200.691406 275.320312 200.785156 275.4375 200.785156 C 275.554688 200.785156 275.648438 200.691406 275.648438 200.574219 Z M 275.648438 200.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.5625 202.222656 C 273.5625 202.105469 273.46875 202.011719 273.351562 202.011719 C 273.234375 202.011719 273.140625 202.105469 273.140625 202.222656 C 273.140625 202.339844 273.234375 202.433594 273.351562 202.433594 C 273.46875 202.433594 273.5625 202.339844 273.5625 202.222656 Z M 273.5625 202.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.695312 204.03125 C 270.695312 203.914062 270.601562 203.820312 270.484375 203.820312 C 270.367188 203.820312 270.273438 203.914062 270.273438 204.03125 C 270.273438 204.148438 270.367188 204.242188 270.484375 204.242188 C 270.601562 204.242188 270.695312 204.148438 270.695312 204.03125 Z M 270.695312 204.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.3125 205.648438 C 270.3125 205.53125 270.21875 205.4375 270.101562 205.4375 C 269.984375 205.4375 269.890625 205.53125 269.890625 205.648438 C 269.890625 205.765625 269.984375 205.859375 270.101562 205.859375 C 270.21875 205.859375 270.3125 205.765625 270.3125 205.648438 Z M 270.3125 205.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.140625 206.40625 C 272.140625 206.289062 272.046875 206.195312 271.929688 206.195312 C 271.8125 206.195312 271.71875 206.289062 271.71875 206.40625 C 271.71875 206.523438 271.8125 206.617188 271.929688 206.617188 C 272.046875 206.617188 272.140625 206.523438 272.140625 206.40625 Z M 272.140625 206.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.386719 209.097656 C 272.386719 208.980469 272.292969 208.886719 272.175781 208.886719 C 272.058594 208.886719 271.964844 208.980469 271.964844 209.097656 C 271.964844 209.214844 272.058594 209.308594 272.175781 209.308594 C 272.292969 209.308594 272.386719 209.214844 272.386719 209.097656 Z M 272.386719 209.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.828125 209.074219 C 270.828125 208.957031 270.734375 208.863281 270.617188 208.863281 C 270.5 208.863281 270.40625 208.957031 270.40625 209.074219 C 270.40625 209.191406 270.5 209.285156 270.617188 209.285156 C 270.734375 209.285156 270.828125 209.191406 270.828125 209.074219 Z M 270.828125 209.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.394531 208.710938 C 271.394531 208.59375 271.300781 208.5 271.183594 208.5 C 271.066406 208.5 270.972656 208.59375 270.972656 208.710938 C 270.972656 208.828125 271.066406 208.921875 271.183594 208.921875 C 271.300781 208.921875 271.394531 208.828125 271.394531 208.710938 Z M 271.394531 208.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.601562 207.332031 C 271.601562 207.214844 271.507812 207.121094 271.390625 207.121094 C 271.273438 207.121094 271.179688 207.214844 271.179688 207.332031 C 271.179688 207.449219 271.273438 207.542969 271.390625 207.542969 C 271.507812 207.542969 271.601562 207.449219 271.601562 207.332031 Z M 271.601562 207.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.625 207.976562 C 268.625 207.859375 268.53125 207.765625 268.414062 207.765625 C 268.296875 207.765625 268.203125 207.859375 268.203125 207.976562 C 268.203125 208.09375 268.296875 208.1875 268.414062 208.1875 C 268.53125 208.1875 268.625 208.09375 268.625 207.976562 Z M 268.625 207.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.671875 208.25 C 267.671875 208.132812 267.578125 208.039062 267.460938 208.039062 C 267.34375 208.039062 267.25 208.132812 267.25 208.25 C 267.25 208.367188 267.34375 208.460938 267.460938 208.460938 C 267.578125 208.460938 267.671875 208.367188 267.671875 208.25 Z M 267.671875 208.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.308594 206.199219 C 269.308594 206.082031 269.214844 205.988281 269.097656 205.988281 C 268.980469 205.988281 268.886719 206.082031 268.886719 206.199219 C 268.886719 206.316406 268.980469 206.410156 269.097656 206.410156 C 269.214844 206.410156 269.308594 206.316406 269.308594 206.199219 Z M 269.308594 206.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.890625 206.988281 C 265.890625 206.871094 265.796875 206.777344 265.679688 206.777344 C 265.5625 206.777344 265.46875 206.871094 265.46875 206.988281 C 265.46875 207.105469 265.5625 207.199219 265.679688 207.199219 C 265.796875 207.199219 265.890625 207.105469 265.890625 206.988281 Z M 265.890625 206.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 271.972656 207.449219 C 271.972656 207.332031 271.878906 207.238281 271.761719 207.238281 C 271.644531 207.238281 271.550781 207.332031 271.550781 207.449219 C 271.550781 207.566406 271.644531 207.660156 271.761719 207.660156 C 271.878906 207.660156 271.972656 207.566406 271.972656 207.449219 Z M 271.972656 207.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.917969 205.449219 C 270.917969 205.332031 270.824219 205.238281 270.707031 205.238281 C 270.589844 205.238281 270.496094 205.332031 270.496094 205.449219 C 270.496094 205.566406 270.589844 205.660156 270.707031 205.660156 C 270.824219 205.660156 270.917969 205.566406 270.917969 205.449219 Z M 270.917969 205.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 273.894531 207.917969 C 273.894531 207.800781 273.800781 207.707031 273.683594 207.707031 C 273.566406 207.707031 273.472656 207.800781 273.472656 207.917969 C 273.472656 208.035156 273.566406 208.128906 273.683594 208.128906 C 273.800781 208.128906 273.894531 208.035156 273.894531 207.917969 Z M 273.894531 207.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 274.878906 210.398438 C 274.878906 210.28125 274.785156 210.1875 274.667969 210.1875 C 274.550781 210.1875 274.457031 210.28125 274.457031 210.398438 C 274.457031 210.515625 274.550781 210.609375 274.667969 210.609375 C 274.785156 210.609375 274.878906 210.515625 274.878906 210.398438 Z M 274.878906 210.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.832031 208.5 C 272.832031 208.382812 272.738281 208.289062 272.621094 208.289062 C 272.503906 208.289062 272.410156 208.382812 272.410156 208.5 C 272.410156 208.617188 272.503906 208.710938 272.621094 208.710938 C 272.738281 208.710938 272.832031 208.617188 272.832031 208.5 Z M 272.832031 208.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.761719 205.953125 C 270.761719 205.835938 270.667969 205.742188 270.550781 205.742188 C 270.433594 205.742188 270.339844 205.835938 270.339844 205.953125 C 270.339844 206.070312 270.433594 206.164062 270.550781 206.164062 C 270.667969 206.164062 270.761719 206.070312 270.761719 205.953125 Z M 270.761719 205.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 268.824219 203.691406 C 268.824219 203.574219 268.730469 203.480469 268.613281 203.480469 C 268.496094 203.480469 268.402344 203.574219 268.402344 203.691406 C 268.402344 203.808594 268.496094 203.902344 268.613281 203.902344 C 268.730469 203.902344 268.824219 203.808594 268.824219 203.691406 Z M 268.824219 203.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 266.953125 203.136719 C 266.953125 203.019531 266.859375 202.925781 266.742188 202.925781 C 266.625 202.925781 266.53125 203.019531 266.53125 203.136719 C 266.53125 203.253906 266.625 203.347656 266.742188 203.347656 C 266.859375 203.347656 266.953125 203.253906 266.953125 203.136719 Z M 266.953125 203.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.992188 201.332031 C 265.992188 201.214844 265.898438 201.121094 265.78125 201.121094 C 265.664062 201.121094 265.570312 201.214844 265.570312 201.332031 C 265.570312 201.449219 265.664062 201.542969 265.78125 201.542969 C 265.898438 201.542969 265.992188 201.449219 265.992188 201.332031 Z M 265.992188 201.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.738281 200.425781 C 264.738281 200.308594 264.644531 200.214844 264.527344 200.214844 C 264.410156 200.214844 264.316406 200.308594 264.316406 200.425781 C 264.316406 200.542969 264.410156 200.636719 264.527344 200.636719 C 264.644531 200.636719 264.738281 200.542969 264.738281 200.425781 Z M 264.738281 200.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.890625 202.550781 C 270.890625 202.433594 270.796875 202.339844 270.679688 202.339844 C 270.5625 202.339844 270.46875 202.433594 270.46875 202.550781 C 270.46875 202.667969 270.5625 202.761719 270.679688 202.761719 C 270.796875 202.761719 270.890625 202.667969 270.890625 202.550781 Z M 270.890625 202.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.875 202.085938 C 272.875 201.96875 272.78125 201.875 272.664062 201.875 C 272.546875 201.875 272.453125 201.96875 272.453125 202.085938 C 272.453125 202.203125 272.546875 202.296875 272.664062 202.296875 C 272.78125 202.296875 272.875 202.203125 272.875 202.085938 Z M 272.875 202.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 272.152344 202.242188 C 272.152344 202.125 272.058594 202.03125 271.941406 202.03125 C 271.824219 202.03125 271.730469 202.125 271.730469 202.242188 C 271.730469 202.359375 271.824219 202.453125 271.941406 202.453125 C 272.058594 202.453125 272.152344 202.359375 272.152344 202.242188 Z M 272.152344 202.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 270.144531 203.054688 C 270.144531 202.9375 270.050781 202.84375 269.933594 202.84375 C 269.816406 202.84375 269.722656 202.9375 269.722656 203.054688 C 269.722656 203.171875 269.816406 203.265625 269.933594 203.265625 C 270.050781 203.265625 270.144531 203.171875 270.144531 203.054688 Z M 270.144531 203.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.34375 202.203125 C 269.34375 202.085938 269.25 201.992188 269.132812 201.992188 C 269.015625 201.992188 268.921875 202.085938 268.921875 202.203125 C 268.921875 202.320312 269.015625 202.414062 269.132812 202.414062 C 269.25 202.414062 269.34375 202.320312 269.34375 202.203125 Z M 269.34375 202.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 269.253906 200.144531 C 269.253906 200.027344 269.160156 199.933594 269.042969 199.933594 C 268.925781 199.933594 268.832031 200.027344 268.832031 200.144531 C 268.832031 200.261719 268.925781 200.355469 269.042969 200.355469 C 269.160156 200.355469 269.253906 200.261719 269.253906 200.144531 Z M 269.253906 200.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 267.089844 201.519531 C 267.089844 201.402344 266.996094 201.308594 266.878906 201.308594 C 266.761719 201.308594 266.667969 201.402344 266.667969 201.519531 C 266.667969 201.636719 266.761719 201.730469 266.878906 201.730469 C 266.996094 201.730469 267.089844 201.636719 267.089844 201.519531 Z M 267.089844 201.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 262.269531 201.023438 C 262.269531 200.90625 262.175781 200.8125 262.058594 200.8125 C 261.941406 200.8125 261.847656 200.90625 261.847656 201.023438 C 261.847656 201.140625 261.941406 201.234375 262.058594 201.234375 C 262.175781 201.234375 262.269531 201.140625 262.269531 201.023438 Z M 262.269531 201.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 264.445312 200.328125 C 264.445312 200.210938 264.351562 200.117188 264.234375 200.117188 C 264.117188 200.117188 264.023438 200.210938 264.023438 200.328125 C 264.023438 200.445312 264.117188 200.539062 264.234375 200.539062 C 264.351562 200.539062 264.445312 200.445312 264.445312 200.328125 Z M 264.445312 200.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.265625 198.351562 C 265.265625 198.234375 265.171875 198.140625 265.054688 198.140625 C 264.9375 198.140625 264.84375 198.234375 264.84375 198.351562 C 264.84375 198.46875 264.9375 198.5625 265.054688 198.5625 C 265.171875 198.5625 265.265625 198.46875 265.265625 198.351562 Z M 265.265625 198.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 263.289062 199.402344 C 263.289062 199.285156 263.195312 199.191406 263.078125 199.191406 C 262.960938 199.191406 262.867188 199.285156 262.867188 199.402344 C 262.867188 199.519531 262.960938 199.613281 263.078125 199.613281 C 263.195312 199.613281 263.289062 199.519531 263.289062 199.402344 Z M 263.289062 199.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 265.117188 199.4375 C 265.117188 199.320312 265.023438 199.226562 264.90625 199.226562 C 264.789062 199.226562 264.695312 199.320312 264.695312 199.4375 C 264.695312 199.554688 264.789062 199.648438 264.90625 199.648438 C 265.023438 199.648438 265.117188 199.554688 265.117188 199.4375 Z M 265.117188 199.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.285156 198.105469 C 259.285156 197.988281 259.191406 197.894531 259.074219 197.894531 C 258.957031 197.894531 258.863281 197.988281 258.863281 198.105469 C 258.863281 198.222656 258.957031 198.316406 259.074219 198.316406 C 259.191406 198.316406 259.285156 198.222656 259.285156 198.105469 Z M 259.285156 198.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.78125 202.613281 C 256.78125 202.496094 256.6875 202.402344 256.570312 202.402344 C 256.453125 202.402344 256.359375 202.496094 256.359375 202.613281 C 256.359375 202.730469 256.453125 202.824219 256.570312 202.824219 C 256.6875 202.824219 256.78125 202.730469 256.78125 202.613281 Z M 256.78125 202.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 259.058594 204.292969 C 259.058594 204.175781 258.964844 204.082031 258.847656 204.082031 C 258.730469 204.082031 258.636719 204.175781 258.636719 204.292969 C 258.636719 204.410156 258.730469 204.503906 258.847656 204.503906 C 258.964844 204.503906 259.058594 204.410156 259.058594 204.292969 Z M 259.058594 204.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.777344 202.699219 C 261.777344 202.582031 261.683594 202.488281 261.566406 202.488281 C 261.449219 202.488281 261.355469 202.582031 261.355469 202.699219 C 261.355469 202.816406 261.449219 202.910156 261.566406 202.910156 C 261.683594 202.910156 261.777344 202.816406 261.777344 202.699219 Z M 261.777344 202.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 261.644531 198.769531 C 261.644531 198.652344 261.550781 198.558594 261.433594 198.558594 C 261.316406 198.558594 261.222656 198.652344 261.222656 198.769531 C 261.222656 198.886719 261.316406 198.980469 261.433594 198.980469 C 261.550781 198.980469 261.644531 198.886719 261.644531 198.769531 Z M 261.644531 198.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.816406 198.484375 C 260.816406 198.367188 260.722656 198.273438 260.605469 198.273438 C 260.488281 198.273438 260.394531 198.367188 260.394531 198.484375 C 260.394531 198.601562 260.488281 198.695312 260.605469 198.695312 C 260.722656 198.695312 260.816406 198.601562 260.816406 198.484375 Z M 260.816406 198.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 258.238281 199.484375 C 258.238281 199.367188 258.144531 199.273438 258.027344 199.273438 C 257.910156 199.273438 257.816406 199.367188 257.816406 199.484375 C 257.816406 199.601562 257.910156 199.695312 258.027344 199.695312 C 258.144531 199.695312 258.238281 199.601562 258.238281 199.484375 Z M 258.238281 199.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 257.949219 196.949219 C 257.949219 196.832031 257.855469 196.738281 257.738281 196.738281 C 257.621094 196.738281 257.527344 196.832031 257.527344 196.949219 C 257.527344 197.066406 257.621094 197.160156 257.738281 197.160156 C 257.855469 197.160156 257.949219 197.066406 257.949219 196.949219 Z M 257.949219 196.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 260.253906 193.6875 C 260.253906 193.570312 260.160156 193.476562 260.042969 193.476562 C 259.925781 193.476562 259.832031 193.570312 259.832031 193.6875 C 259.832031 193.804688 259.925781 193.898438 260.042969 193.898438 C 260.160156 193.898438 260.253906 193.804688 260.253906 193.6875 Z M 260.253906 193.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 256.035156 189.339844 C 256.035156 189.222656 255.941406 189.128906 255.824219 189.128906 C 255.707031 189.128906 255.613281 189.222656 255.613281 189.339844 C 255.613281 189.457031 255.707031 189.550781 255.824219 189.550781 C 255.941406 189.550781 256.035156 189.457031 256.035156 189.339844 Z M 256.035156 189.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 255.644531 185.023438 C 255.644531 184.90625 255.550781 184.8125 255.433594 184.8125 C 255.316406 184.8125 255.222656 184.90625 255.222656 185.023438 C 255.222656 185.140625 255.316406 185.234375 255.433594 185.234375 C 255.550781 185.234375 255.644531 185.140625 255.644531 185.023438 Z M 255.644531 185.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.003906 180.226562 C 252.003906 180.109375 251.910156 180.015625 251.792969 180.015625 C 251.675781 180.015625 251.582031 180.109375 251.582031 180.226562 C 251.582031 180.34375 251.675781 180.4375 251.792969 180.4375 C 251.910156 180.4375 252.003906 180.34375 252.003906 180.226562 Z M 252.003906 180.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 251.414062 178.871094 C 251.414062 178.753906 251.320312 178.660156 251.203125 178.660156 C 251.085938 178.660156 250.992188 178.753906 250.992188 178.871094 C 250.992188 178.988281 251.085938 179.082031 251.203125 179.082031 C 251.320312 179.082031 251.414062 178.988281 251.414062 178.871094 Z M 251.414062 178.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 252.671875 180.191406 C 252.671875 180.074219 252.578125 179.980469 252.460938 179.980469 C 252.34375 179.980469 252.25 180.074219 252.25 180.191406 C 252.25 180.308594 252.34375 180.402344 252.460938 180.402344 C 252.578125 180.402344 252.671875 180.308594 252.671875 180.191406 Z M 252.671875 180.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 250.691406 178.207031 C 250.691406 178.089844 250.597656 177.996094 250.480469 177.996094 C 250.363281 177.996094 250.269531 178.089844 250.269531 178.207031 C 250.269531 178.324219 250.363281 178.417969 250.480469 178.417969 C 250.597656 178.417969 250.691406 178.324219 250.691406 178.207031 Z M 250.691406 178.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 249.128906 177.753906 C 249.128906 177.636719 249.035156 177.542969 248.917969 177.542969 C 248.800781 177.542969 248.707031 177.636719 248.707031 177.753906 C 248.707031 177.871094 248.800781 177.964844 248.917969 177.964844 C 249.035156 177.964844 249.128906 177.871094 249.128906 177.753906 Z M 249.128906 177.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.589844 177.792969 C 246.589844 177.675781 246.496094 177.582031 246.378906 177.582031 C 246.261719 177.582031 246.167969 177.675781 246.167969 177.792969 C 246.167969 177.910156 246.261719 178.003906 246.378906 178.003906 C 246.496094 178.003906 246.589844 177.910156 246.589844 177.792969 Z M 246.589844 177.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 242.964844 180.398438 C 242.964844 180.28125 242.871094 180.1875 242.753906 180.1875 C 242.636719 180.1875 242.542969 180.28125 242.542969 180.398438 C 242.542969 180.515625 242.636719 180.609375 242.753906 180.609375 C 242.871094 180.609375 242.964844 180.515625 242.964844 180.398438 Z M 242.964844 180.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.0625 181.933594 C 243.0625 181.816406 242.96875 181.722656 242.851562 181.722656 C 242.734375 181.722656 242.640625 181.816406 242.640625 181.933594 C 242.640625 182.050781 242.734375 182.144531 242.851562 182.144531 C 242.96875 182.144531 243.0625 182.050781 243.0625 181.933594 Z M 243.0625 181.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.605469 182.660156 C 244.605469 182.542969 244.511719 182.449219 244.394531 182.449219 C 244.277344 182.449219 244.183594 182.542969 244.183594 182.660156 C 244.183594 182.777344 244.277344 182.871094 244.394531 182.871094 C 244.511719 182.871094 244.605469 182.777344 244.605469 182.660156 Z M 244.605469 182.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 245.292969 181.980469 C 245.292969 181.863281 245.199219 181.769531 245.082031 181.769531 C 244.964844 181.769531 244.871094 181.863281 244.871094 181.980469 C 244.871094 182.097656 244.964844 182.191406 245.082031 182.191406 C 245.199219 182.191406 245.292969 182.097656 245.292969 181.980469 Z M 245.292969 181.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.03125 177.785156 C 244.03125 177.667969 243.9375 177.574219 243.820312 177.574219 C 243.703125 177.574219 243.609375 177.667969 243.609375 177.785156 C 243.609375 177.902344 243.703125 177.996094 243.820312 177.996094 C 243.9375 177.996094 244.03125 177.902344 244.03125 177.785156 Z M 244.03125 177.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.425781 176.539062 C 244.425781 176.421875 244.332031 176.328125 244.214844 176.328125 C 244.097656 176.328125 244.003906 176.421875 244.003906 176.539062 C 244.003906 176.65625 244.097656 176.75 244.214844 176.75 C 244.332031 176.75 244.425781 176.65625 244.425781 176.539062 Z M 244.425781 176.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.21875 176.546875 C 244.21875 176.429688 244.125 176.335938 244.007812 176.335938 C 243.890625 176.335938 243.796875 176.429688 243.796875 176.546875 C 243.796875 176.664062 243.890625 176.757812 244.007812 176.757812 C 244.125 176.757812 244.21875 176.664062 244.21875 176.546875 Z M 244.21875 176.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 243.75 171.40625 C 243.75 171.289062 243.65625 171.195312 243.539062 171.195312 C 243.421875 171.195312 243.328125 171.289062 243.328125 171.40625 C 243.328125 171.523438 243.421875 171.617188 243.539062 171.617188 C 243.65625 171.617188 243.75 171.523438 243.75 171.40625 Z M 243.75 171.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.761719 170.898438 C 241.761719 170.78125 241.667969 170.6875 241.550781 170.6875 C 241.433594 170.6875 241.339844 170.78125 241.339844 170.898438 C 241.339844 171.015625 241.433594 171.109375 241.550781 171.109375 C 241.667969 171.109375 241.761719 171.015625 241.761719 170.898438 Z M 241.761719 170.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.796875 174.082031 C 241.796875 173.964844 241.703125 173.871094 241.585938 173.871094 C 241.46875 173.871094 241.375 173.964844 241.375 174.082031 C 241.375 174.199219 241.46875 174.292969 241.585938 174.292969 C 241.703125 174.292969 241.796875 174.199219 241.796875 174.082031 Z M 241.796875 174.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.613281 173.667969 C 240.613281 173.550781 240.519531 173.457031 240.402344 173.457031 C 240.285156 173.457031 240.191406 173.550781 240.191406 173.667969 C 240.191406 173.785156 240.285156 173.878906 240.402344 173.878906 C 240.519531 173.878906 240.613281 173.785156 240.613281 173.667969 Z M 240.613281 173.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.859375 174.394531 C 237.859375 174.277344 237.765625 174.183594 237.648438 174.183594 C 237.53125 174.183594 237.4375 174.277344 237.4375 174.394531 C 237.4375 174.511719 237.53125 174.605469 237.648438 174.605469 C 237.765625 174.605469 237.859375 174.511719 237.859375 174.394531 Z M 237.859375 174.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.722656 174.007812 C 241.722656 173.890625 241.628906 173.796875 241.511719 173.796875 C 241.394531 173.796875 241.300781 173.890625 241.300781 174.007812 C 241.300781 174.125 241.394531 174.21875 241.511719 174.21875 C 241.628906 174.21875 241.722656 174.125 241.722656 174.007812 Z M 241.722656 174.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.964844 172.539062 C 239.964844 172.421875 239.871094 172.328125 239.753906 172.328125 C 239.636719 172.328125 239.542969 172.421875 239.542969 172.539062 C 239.542969 172.65625 239.636719 172.75 239.753906 172.75 C 239.871094 172.75 239.964844 172.65625 239.964844 172.539062 Z M 239.964844 172.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.242188 174.714844 C 241.242188 174.597656 241.148438 174.503906 241.03125 174.503906 C 240.914062 174.503906 240.820312 174.597656 240.820312 174.714844 C 240.820312 174.832031 240.914062 174.925781 241.03125 174.925781 C 241.148438 174.925781 241.242188 174.832031 241.242188 174.714844 Z M 241.242188 174.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.839844 173.832031 C 240.839844 173.714844 240.746094 173.621094 240.628906 173.621094 C 240.511719 173.621094 240.417969 173.714844 240.417969 173.832031 C 240.417969 173.949219 240.511719 174.042969 240.628906 174.042969 C 240.746094 174.042969 240.839844 173.949219 240.839844 173.832031 Z M 240.839844 173.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 235.292969 178.5 C 235.292969 178.382812 235.199219 178.289062 235.082031 178.289062 C 234.964844 178.289062 234.871094 178.382812 234.871094 178.5 C 234.871094 178.617188 234.964844 178.710938 235.082031 178.710938 C 235.199219 178.710938 235.292969 178.617188 235.292969 178.5 Z M 235.292969 178.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.984375 175.90625 C 231.984375 175.789062 231.890625 175.695312 231.773438 175.695312 C 231.65625 175.695312 231.5625 175.789062 231.5625 175.90625 C 231.5625 176.023438 231.65625 176.117188 231.773438 176.117188 C 231.890625 176.117188 231.984375 176.023438 231.984375 175.90625 Z M 231.984375 175.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 231.644531 174.929688 C 231.644531 174.8125 231.550781 174.71875 231.433594 174.71875 C 231.316406 174.71875 231.222656 174.8125 231.222656 174.929688 C 231.222656 175.046875 231.316406 175.140625 231.433594 175.140625 C 231.550781 175.140625 231.644531 175.046875 231.644531 174.929688 Z M 231.644531 174.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.828125 173.984375 C 230.828125 173.867188 230.734375 173.773438 230.617188 173.773438 C 230.5 173.773438 230.40625 173.867188 230.40625 173.984375 C 230.40625 174.101562 230.5 174.195312 230.617188 174.195312 C 230.734375 174.195312 230.828125 174.101562 230.828125 173.984375 Z M 230.828125 173.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.507812 176.214844 C 234.507812 176.097656 234.414062 176.003906 234.296875 176.003906 C 234.179688 176.003906 234.085938 176.097656 234.085938 176.214844 C 234.085938 176.332031 234.179688 176.425781 234.296875 176.425781 C 234.414062 176.425781 234.507812 176.332031 234.507812 176.214844 Z M 234.507812 176.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.78125 173.875 C 234.78125 173.757812 234.6875 173.664062 234.570312 173.664062 C 234.453125 173.664062 234.359375 173.757812 234.359375 173.875 C 234.359375 173.992188 234.453125 174.085938 234.570312 174.085938 C 234.6875 174.085938 234.78125 173.992188 234.78125 173.875 Z M 234.78125 173.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.867188 172.355469 C 237.867188 172.238281 237.773438 172.144531 237.65625 172.144531 C 237.539062 172.144531 237.445312 172.238281 237.445312 172.355469 C 237.445312 172.472656 237.539062 172.566406 237.65625 172.566406 C 237.773438 172.566406 237.867188 172.472656 237.867188 172.355469 Z M 237.867188 172.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.523438 170.632812 C 239.523438 170.515625 239.429688 170.421875 239.3125 170.421875 C 239.195312 170.421875 239.101562 170.515625 239.101562 170.632812 C 239.101562 170.75 239.195312 170.84375 239.3125 170.84375 C 239.429688 170.84375 239.523438 170.75 239.523438 170.632812 Z M 239.523438 170.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.261719 169.296875 C 237.261719 169.179688 237.167969 169.085938 237.050781 169.085938 C 236.933594 169.085938 236.839844 169.179688 236.839844 169.296875 C 236.839844 169.414062 236.933594 169.507812 237.050781 169.507812 C 237.167969 169.507812 237.261719 169.414062 237.261719 169.296875 Z M 237.261719 169.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 234.828125 167.683594 C 234.828125 167.566406 234.734375 167.472656 234.617188 167.472656 C 234.5 167.472656 234.40625 167.566406 234.40625 167.683594 C 234.40625 167.800781 234.5 167.894531 234.617188 167.894531 C 234.734375 167.894531 234.828125 167.800781 234.828125 167.683594 Z M 234.828125 167.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.558594 166.390625 C 236.558594 166.273438 236.464844 166.179688 236.347656 166.179688 C 236.230469 166.179688 236.136719 166.273438 236.136719 166.390625 C 236.136719 166.507812 236.230469 166.601562 236.347656 166.601562 C 236.464844 166.601562 236.558594 166.507812 236.558594 166.390625 Z M 236.558594 166.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.285156 163.535156 C 239.285156 163.417969 239.191406 163.324219 239.074219 163.324219 C 238.957031 163.324219 238.863281 163.417969 238.863281 163.535156 C 238.863281 163.652344 238.957031 163.746094 239.074219 163.746094 C 239.191406 163.746094 239.285156 163.652344 239.285156 163.535156 Z M 239.285156 163.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.324219 163.398438 C 238.324219 163.28125 238.230469 163.1875 238.113281 163.1875 C 237.996094 163.1875 237.902344 163.28125 237.902344 163.398438 C 237.902344 163.515625 237.996094 163.609375 238.113281 163.609375 C 238.230469 163.609375 238.324219 163.515625 238.324219 163.398438 Z M 238.324219 163.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.78125 161.070312 C 240.78125 160.953125 240.6875 160.859375 240.570312 160.859375 C 240.453125 160.859375 240.359375 160.953125 240.359375 161.070312 C 240.359375 161.1875 240.453125 161.28125 240.570312 161.28125 C 240.6875 161.28125 240.78125 161.1875 240.78125 161.070312 Z M 240.78125 161.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.980469 164.800781 C 241.980469 164.683594 241.886719 164.589844 241.769531 164.589844 C 241.652344 164.589844 241.558594 164.683594 241.558594 164.800781 C 241.558594 164.917969 241.652344 165.011719 241.769531 165.011719 C 241.886719 165.011719 241.980469 164.917969 241.980469 164.800781 Z M 241.980469 164.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.996094 163.539062 C 240.996094 163.421875 240.902344 163.328125 240.785156 163.328125 C 240.667969 163.328125 240.574219 163.421875 240.574219 163.539062 C 240.574219 163.65625 240.667969 163.75 240.785156 163.75 C 240.902344 163.75 240.996094 163.65625 240.996094 163.539062 Z M 240.996094 163.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 244.402344 167.652344 C 244.402344 167.535156 244.308594 167.441406 244.191406 167.441406 C 244.074219 167.441406 243.980469 167.535156 243.980469 167.652344 C 243.980469 167.769531 244.074219 167.863281 244.191406 167.863281 C 244.308594 167.863281 244.402344 167.769531 244.402344 167.652344 Z M 244.402344 167.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.539062 167.054688 C 246.539062 166.9375 246.445312 166.84375 246.328125 166.84375 C 246.210938 166.84375 246.117188 166.9375 246.117188 167.054688 C 246.117188 167.171875 246.210938 167.265625 246.328125 167.265625 C 246.445312 167.265625 246.539062 167.171875 246.539062 167.054688 Z M 246.539062 167.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 246.359375 169.515625 C 246.359375 169.398438 246.265625 169.304688 246.148438 169.304688 C 246.03125 169.304688 245.9375 169.398438 245.9375 169.515625 C 245.9375 169.632812 246.03125 169.726562 246.148438 169.726562 C 246.265625 169.726562 246.359375 169.632812 246.359375 169.515625 Z M 246.359375 169.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 241.535156 168.234375 C 241.535156 168.117188 241.441406 168.023438 241.324219 168.023438 C 241.207031 168.023438 241.113281 168.117188 241.113281 168.234375 C 241.113281 168.351562 241.207031 168.445312 241.324219 168.445312 C 241.441406 168.445312 241.535156 168.351562 241.535156 168.234375 Z M 241.535156 168.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 240.320312 167.742188 C 240.320312 167.625 240.226562 167.53125 240.109375 167.53125 C 239.992188 167.53125 239.898438 167.625 239.898438 167.742188 C 239.898438 167.859375 239.992188 167.953125 240.109375 167.953125 C 240.226562 167.953125 240.320312 167.859375 240.320312 167.742188 Z M 240.320312 167.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.761719 169.089844 C 238.761719 168.972656 238.667969 168.878906 238.550781 168.878906 C 238.433594 168.878906 238.339844 168.972656 238.339844 169.089844 C 238.339844 169.207031 238.433594 169.300781 238.550781 169.300781 C 238.667969 169.300781 238.761719 169.207031 238.761719 169.089844 Z M 238.761719 169.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 238.964844 168.589844 C 238.964844 168.472656 238.871094 168.378906 238.753906 168.378906 C 238.636719 168.378906 238.542969 168.472656 238.542969 168.589844 C 238.542969 168.707031 238.636719 168.800781 238.753906 168.800781 C 238.871094 168.800781 238.964844 168.707031 238.964844 168.589844 Z M 238.964844 168.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 239.65625 167.347656 C 239.65625 167.230469 239.5625 167.136719 239.445312 167.136719 C 239.328125 167.136719 239.234375 167.230469 239.234375 167.347656 C 239.234375 167.464844 239.328125 167.558594 239.445312 167.558594 C 239.5625 167.558594 239.65625 167.464844 239.65625 167.347656 Z M 239.65625 167.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 236.9375 171.15625 C 236.9375 171.039062 236.84375 170.945312 236.726562 170.945312 C 236.609375 170.945312 236.515625 171.039062 236.515625 171.15625 C 236.515625 171.273438 236.609375 171.367188 236.726562 171.367188 C 236.84375 171.367188 236.9375 171.273438 236.9375 171.15625 Z M 236.9375 171.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 237.089844 168.449219 C 237.089844 168.332031 236.996094 168.238281 236.878906 168.238281 C 236.761719 168.238281 236.667969 168.332031 236.667969 168.449219 C 236.667969 168.566406 236.761719 168.660156 236.878906 168.660156 C 236.996094 168.660156 237.089844 168.566406 237.089844 168.449219 Z M 237.089844 168.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 230.492188 166.777344 C 230.492188 166.660156 230.398438 166.566406 230.28125 166.566406 C 230.164062 166.566406 230.070312 166.660156 230.070312 166.777344 C 230.070312 166.894531 230.164062 166.988281 230.28125 166.988281 C 230.398438 166.988281 230.492188 166.894531 230.492188 166.777344 Z M 230.492188 166.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.460938 165.894531 C 225.460938 165.777344 225.367188 165.683594 225.25 165.683594 C 225.132812 165.683594 225.039062 165.777344 225.039062 165.894531 C 225.039062 166.011719 225.132812 166.105469 225.25 166.105469 C 225.367188 166.105469 225.460938 166.011719 225.460938 165.894531 Z M 225.460938 165.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.242188 166.535156 C 225.242188 166.417969 225.148438 166.324219 225.03125 166.324219 C 224.914062 166.324219 224.820312 166.417969 224.820312 166.535156 C 224.820312 166.652344 224.914062 166.746094 225.03125 166.746094 C 225.148438 166.746094 225.242188 166.652344 225.242188 166.535156 Z M 225.242188 166.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.535156 164.945312 C 224.535156 164.828125 224.441406 164.734375 224.324219 164.734375 C 224.207031 164.734375 224.113281 164.828125 224.113281 164.945312 C 224.113281 165.0625 224.207031 165.15625 224.324219 165.15625 C 224.441406 165.15625 224.535156 165.0625 224.535156 164.945312 Z M 224.535156 164.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 222.238281 165.304688 C 222.238281 165.1875 222.144531 165.09375 222.027344 165.09375 C 221.910156 165.09375 221.816406 165.1875 221.816406 165.304688 C 221.816406 165.421875 221.910156 165.515625 222.027344 165.515625 C 222.144531 165.515625 222.238281 165.421875 222.238281 165.304688 Z M 222.238281 165.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 222.039062 161.148438 C 222.039062 161.03125 221.945312 160.9375 221.828125 160.9375 C 221.710938 160.9375 221.617188 161.03125 221.617188 161.148438 C 221.617188 161.265625 221.710938 161.359375 221.828125 161.359375 C 221.945312 161.359375 222.039062 161.265625 222.039062 161.148438 Z M 222.039062 161.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.503906 160.136719 C 224.503906 160.019531 224.410156 159.925781 224.292969 159.925781 C 224.175781 159.925781 224.082031 160.019531 224.082031 160.136719 C 224.082031 160.253906 224.175781 160.347656 224.292969 160.347656 C 224.410156 160.347656 224.503906 160.253906 224.503906 160.136719 Z M 224.503906 160.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.179688 159.945312 C 224.179688 159.828125 224.085938 159.734375 223.96875 159.734375 C 223.851562 159.734375 223.757812 159.828125 223.757812 159.945312 C 223.757812 160.0625 223.851562 160.15625 223.96875 160.15625 C 224.085938 160.15625 224.179688 160.0625 224.179688 159.945312 Z M 224.179688 159.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.789062 160.332031 C 226.789062 160.214844 226.695312 160.121094 226.578125 160.121094 C 226.460938 160.121094 226.367188 160.214844 226.367188 160.332031 C 226.367188 160.449219 226.460938 160.542969 226.578125 160.542969 C 226.695312 160.542969 226.789062 160.449219 226.789062 160.332031 Z M 226.789062 160.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.347656 161.574219 C 226.347656 161.457031 226.253906 161.363281 226.136719 161.363281 C 226.019531 161.363281 225.925781 161.457031 225.925781 161.574219 C 225.925781 161.691406 226.019531 161.785156 226.136719 161.785156 C 226.253906 161.785156 226.347656 161.691406 226.347656 161.574219 Z M 226.347656 161.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.570312 160.640625 C 227.570312 160.523438 227.476562 160.429688 227.359375 160.429688 C 227.242188 160.429688 227.148438 160.523438 227.148438 160.640625 C 227.148438 160.757812 227.242188 160.851562 227.359375 160.851562 C 227.476562 160.851562 227.570312 160.757812 227.570312 160.640625 Z M 227.570312 160.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 223.695312 161.738281 C 223.695312 161.621094 223.601562 161.527344 223.484375 161.527344 C 223.367188 161.527344 223.273438 161.621094 223.273438 161.738281 C 223.273438 161.855469 223.367188 161.949219 223.484375 161.949219 C 223.601562 161.949219 223.695312 161.855469 223.695312 161.738281 Z M 223.695312 161.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.148438 162.042969 C 224.148438 161.925781 224.054688 161.832031 223.9375 161.832031 C 223.820312 161.832031 223.726562 161.925781 223.726562 162.042969 C 223.726562 162.160156 223.820312 162.253906 223.9375 162.253906 C 224.054688 162.253906 224.148438 162.160156 224.148438 162.042969 Z M 224.148438 162.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.960938 160.460938 C 224.960938 160.34375 224.867188 160.25 224.75 160.25 C 224.632812 160.25 224.539062 160.34375 224.539062 160.460938 C 224.539062 160.578125 224.632812 160.671875 224.75 160.671875 C 224.867188 160.671875 224.960938 160.578125 224.960938 160.460938 Z M 224.960938 160.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.292969 161.90625 C 226.292969 161.789062 226.199219 161.695312 226.082031 161.695312 C 225.964844 161.695312 225.871094 161.789062 225.871094 161.90625 C 225.871094 162.023438 225.964844 162.117188 226.082031 162.117188 C 226.199219 162.117188 226.292969 162.023438 226.292969 161.90625 Z M 226.292969 161.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.144531 162.316406 C 224.144531 162.199219 224.050781 162.105469 223.933594 162.105469 C 223.816406 162.105469 223.722656 162.199219 223.722656 162.316406 C 223.722656 162.433594 223.816406 162.527344 223.933594 162.527344 C 224.050781 162.527344 224.144531 162.433594 224.144531 162.316406 Z M 224.144531 162.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 225.660156 159.859375 C 225.660156 159.742188 225.566406 159.648438 225.449219 159.648438 C 225.332031 159.648438 225.238281 159.742188 225.238281 159.859375 C 225.238281 159.976562 225.332031 160.070312 225.449219 160.070312 C 225.566406 160.070312 225.660156 159.976562 225.660156 159.859375 Z M 225.660156 159.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 222.789062 157.566406 C 222.789062 157.449219 222.695312 157.355469 222.578125 157.355469 C 222.460938 157.355469 222.367188 157.449219 222.367188 157.566406 C 222.367188 157.683594 222.460938 157.777344 222.578125 157.777344 C 222.695312 157.777344 222.789062 157.683594 222.789062 157.566406 Z M 222.789062 157.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.746094 157.582031 C 217.746094 157.464844 217.652344 157.371094 217.535156 157.371094 C 217.417969 157.371094 217.324219 157.464844 217.324219 157.582031 C 217.324219 157.699219 217.417969 157.792969 217.535156 157.792969 C 217.652344 157.792969 217.746094 157.699219 217.746094 157.582031 Z M 217.746094 157.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.371094 154.816406 C 218.371094 154.699219 218.277344 154.605469 218.160156 154.605469 C 218.042969 154.605469 217.949219 154.699219 217.949219 154.816406 C 217.949219 154.933594 218.042969 155.027344 218.160156 155.027344 C 218.277344 155.027344 218.371094 154.933594 218.371094 154.816406 Z M 218.371094 154.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.164062 154.8125 C 214.164062 154.695312 214.070312 154.601562 213.953125 154.601562 C 213.835938 154.601562 213.742188 154.695312 213.742188 154.8125 C 213.742188 154.929688 213.835938 155.023438 213.953125 155.023438 C 214.070312 155.023438 214.164062 154.929688 214.164062 154.8125 Z M 214.164062 154.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.859375 152.484375 C 212.859375 152.367188 212.765625 152.273438 212.648438 152.273438 C 212.53125 152.273438 212.4375 152.367188 212.4375 152.484375 C 212.4375 152.601562 212.53125 152.695312 212.648438 152.695312 C 212.765625 152.695312 212.859375 152.601562 212.859375 152.484375 Z M 212.859375 152.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.085938 149.027344 C 211.085938 148.910156 210.992188 148.816406 210.875 148.816406 C 210.757812 148.816406 210.664062 148.910156 210.664062 149.027344 C 210.664062 149.144531 210.757812 149.238281 210.875 149.238281 C 210.992188 149.238281 211.085938 149.144531 211.085938 149.027344 Z M 211.085938 149.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.226562 150.625 C 210.226562 150.507812 210.132812 150.414062 210.015625 150.414062 C 209.898438 150.414062 209.804688 150.507812 209.804688 150.625 C 209.804688 150.742188 209.898438 150.835938 210.015625 150.835938 C 210.132812 150.835938 210.226562 150.742188 210.226562 150.625 Z M 210.226562 150.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.65625 152.699219 C 209.65625 152.582031 209.5625 152.488281 209.445312 152.488281 C 209.328125 152.488281 209.234375 152.582031 209.234375 152.699219 C 209.234375 152.816406 209.328125 152.910156 209.445312 152.910156 C 209.5625 152.910156 209.65625 152.816406 209.65625 152.699219 Z M 209.65625 152.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.972656 151.457031 C 214.972656 151.339844 214.878906 151.246094 214.761719 151.246094 C 214.644531 151.246094 214.550781 151.339844 214.550781 151.457031 C 214.550781 151.574219 214.644531 151.667969 214.761719 151.667969 C 214.878906 151.667969 214.972656 151.574219 214.972656 151.457031 Z M 214.972656 151.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.925781 150.210938 C 213.925781 150.09375 213.832031 150 213.714844 150 C 213.597656 150 213.503906 150.09375 213.503906 150.210938 C 213.503906 150.328125 213.597656 150.421875 213.714844 150.421875 C 213.832031 150.421875 213.925781 150.328125 213.925781 150.210938 Z M 213.925781 150.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.785156 150.753906 C 213.785156 150.636719 213.691406 150.542969 213.574219 150.542969 C 213.457031 150.542969 213.363281 150.636719 213.363281 150.753906 C 213.363281 150.871094 213.457031 150.964844 213.574219 150.964844 C 213.691406 150.964844 213.785156 150.871094 213.785156 150.753906 Z M 213.785156 150.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.464844 151.261719 C 215.464844 151.144531 215.371094 151.050781 215.253906 151.050781 C 215.136719 151.050781 215.042969 151.144531 215.042969 151.261719 C 215.042969 151.378906 215.136719 151.472656 215.253906 151.472656 C 215.371094 151.472656 215.464844 151.378906 215.464844 151.261719 Z M 215.464844 151.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.585938 150.4375 C 221.585938 150.320312 221.492188 150.226562 221.375 150.226562 C 221.257812 150.226562 221.164062 150.320312 221.164062 150.4375 C 221.164062 150.554688 221.257812 150.648438 221.375 150.648438 C 221.492188 150.648438 221.585938 150.554688 221.585938 150.4375 Z M 221.585938 150.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 220.714844 146.910156 C 220.714844 146.792969 220.621094 146.699219 220.503906 146.699219 C 220.386719 146.699219 220.292969 146.792969 220.292969 146.910156 C 220.292969 147.027344 220.386719 147.121094 220.503906 147.121094 C 220.621094 147.121094 220.714844 147.027344 220.714844 146.910156 Z M 220.714844 146.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 222.683594 149.683594 C 222.683594 149.566406 222.589844 149.472656 222.472656 149.472656 C 222.355469 149.472656 222.261719 149.566406 222.261719 149.683594 C 222.261719 149.800781 222.355469 149.894531 222.472656 149.894531 C 222.589844 149.894531 222.683594 149.800781 222.683594 149.683594 Z M 222.683594 149.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 226.746094 145.679688 C 226.746094 145.5625 226.652344 145.46875 226.535156 145.46875 C 226.417969 145.46875 226.324219 145.5625 226.324219 145.679688 C 226.324219 145.796875 226.417969 145.890625 226.535156 145.890625 C 226.652344 145.890625 226.746094 145.796875 226.746094 145.679688 Z M 226.746094 145.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 227.140625 143.019531 C 227.140625 142.902344 227.046875 142.808594 226.929688 142.808594 C 226.8125 142.808594 226.71875 142.902344 226.71875 143.019531 C 226.71875 143.136719 226.8125 143.230469 226.929688 143.230469 C 227.046875 143.230469 227.140625 143.136719 227.140625 143.019531 Z M 227.140625 143.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 224.484375 142.988281 C 224.484375 142.871094 224.390625 142.777344 224.273438 142.777344 C 224.15625 142.777344 224.0625 142.871094 224.0625 142.988281 C 224.0625 143.105469 224.15625 143.199219 224.273438 143.199219 C 224.390625 143.199219 224.484375 143.105469 224.484375 142.988281 Z M 224.484375 142.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 221.675781 142.519531 C 221.675781 142.402344 221.582031 142.308594 221.464844 142.308594 C 221.347656 142.308594 221.253906 142.402344 221.253906 142.519531 C 221.253906 142.636719 221.347656 142.730469 221.464844 142.730469 C 221.582031 142.730469 221.675781 142.636719 221.675781 142.519531 Z M 221.675781 142.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.890625 141.203125 C 215.890625 141.085938 215.796875 140.992188 215.679688 140.992188 C 215.5625 140.992188 215.46875 141.085938 215.46875 141.203125 C 215.46875 141.320312 215.5625 141.414062 215.679688 141.414062 C 215.796875 141.414062 215.890625 141.320312 215.890625 141.203125 Z M 215.890625 141.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.238281 141.484375 C 217.238281 141.367188 217.144531 141.273438 217.027344 141.273438 C 216.910156 141.273438 216.816406 141.367188 216.816406 141.484375 C 216.816406 141.601562 216.910156 141.695312 217.027344 141.695312 C 217.144531 141.695312 217.238281 141.601562 217.238281 141.484375 Z M 217.238281 141.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.214844 139.292969 C 216.214844 139.175781 216.121094 139.082031 216.003906 139.082031 C 215.886719 139.082031 215.792969 139.175781 215.792969 139.292969 C 215.792969 139.410156 215.886719 139.503906 216.003906 139.503906 C 216.121094 139.503906 216.214844 139.410156 216.214844 139.292969 Z M 216.214844 139.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.914062 139.667969 C 216.914062 139.550781 216.820312 139.457031 216.703125 139.457031 C 216.585938 139.457031 216.492188 139.550781 216.492188 139.667969 C 216.492188 139.785156 216.585938 139.878906 216.703125 139.878906 C 216.820312 139.878906 216.914062 139.785156 216.914062 139.667969 Z M 216.914062 139.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.78125 139.578125 C 212.78125 139.460938 212.6875 139.367188 212.570312 139.367188 C 212.453125 139.367188 212.359375 139.460938 212.359375 139.578125 C 212.359375 139.695312 212.453125 139.789062 212.570312 139.789062 C 212.6875 139.789062 212.78125 139.695312 212.78125 139.578125 Z M 212.78125 139.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.105469 137.109375 C 215.105469 136.992188 215.011719 136.898438 214.894531 136.898438 C 214.777344 136.898438 214.683594 136.992188 214.683594 137.109375 C 214.683594 137.226562 214.777344 137.320312 214.894531 137.320312 C 215.011719 137.320312 215.105469 137.226562 215.105469 137.109375 Z M 215.105469 137.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.707031 136.75 C 213.707031 136.632812 213.613281 136.539062 213.496094 136.539062 C 213.378906 136.539062 213.285156 136.632812 213.285156 136.75 C 213.285156 136.867188 213.378906 136.960938 213.496094 136.960938 C 213.613281 136.960938 213.707031 136.867188 213.707031 136.75 Z M 213.707031 136.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.183594 137.105469 C 213.183594 136.988281 213.089844 136.894531 212.972656 136.894531 C 212.855469 136.894531 212.761719 136.988281 212.761719 137.105469 C 212.761719 137.222656 212.855469 137.316406 212.972656 137.316406 C 213.089844 137.316406 213.183594 137.222656 213.183594 137.105469 Z M 213.183594 137.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.921875 137.347656 C 212.921875 137.230469 212.828125 137.136719 212.710938 137.136719 C 212.59375 137.136719 212.5 137.230469 212.5 137.347656 C 212.5 137.464844 212.59375 137.558594 212.710938 137.558594 C 212.828125 137.558594 212.921875 137.464844 212.921875 137.347656 Z M 212.921875 137.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.613281 140.121094 C 209.613281 140.003906 209.519531 139.910156 209.402344 139.910156 C 209.285156 139.910156 209.191406 140.003906 209.191406 140.121094 C 209.191406 140.238281 209.285156 140.332031 209.402344 140.332031 C 209.519531 140.332031 209.613281 140.238281 209.613281 140.121094 Z M 209.613281 140.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.925781 141.394531 C 208.925781 141.277344 208.832031 141.183594 208.714844 141.183594 C 208.597656 141.183594 208.503906 141.277344 208.503906 141.394531 C 208.503906 141.511719 208.597656 141.605469 208.714844 141.605469 C 208.832031 141.605469 208.925781 141.511719 208.925781 141.394531 Z M 208.925781 141.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.164062 142.125 C 205.164062 142.007812 205.070312 141.914062 204.953125 141.914062 C 204.835938 141.914062 204.742188 142.007812 204.742188 142.125 C 204.742188 142.242188 204.835938 142.335938 204.953125 142.335938 C 205.070312 142.335938 205.164062 142.242188 205.164062 142.125 Z M 205.164062 142.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.515625 141.175781 C 206.515625 141.058594 206.421875 140.964844 206.304688 140.964844 C 206.1875 140.964844 206.09375 141.058594 206.09375 141.175781 C 206.09375 141.292969 206.1875 141.386719 206.304688 141.386719 C 206.421875 141.386719 206.515625 141.292969 206.515625 141.175781 Z M 206.515625 141.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.480469 143.472656 C 206.480469 143.355469 206.386719 143.261719 206.269531 143.261719 C 206.152344 143.261719 206.058594 143.355469 206.058594 143.472656 C 206.058594 143.589844 206.152344 143.683594 206.269531 143.683594 C 206.386719 143.683594 206.480469 143.589844 206.480469 143.472656 Z M 206.480469 143.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.25 142.113281 C 207.25 141.996094 207.15625 141.902344 207.039062 141.902344 C 206.921875 141.902344 206.828125 141.996094 206.828125 142.113281 C 206.828125 142.230469 206.921875 142.324219 207.039062 142.324219 C 207.15625 142.324219 207.25 142.230469 207.25 142.113281 Z M 207.25 142.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.464844 143.570312 C 208.464844 143.453125 208.371094 143.359375 208.253906 143.359375 C 208.136719 143.359375 208.042969 143.453125 208.042969 143.570312 C 208.042969 143.6875 208.136719 143.78125 208.253906 143.78125 C 208.371094 143.78125 208.464844 143.6875 208.464844 143.570312 Z M 208.464844 143.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.449219 143.179688 C 203.449219 143.0625 203.355469 142.96875 203.238281 142.96875 C 203.121094 142.96875 203.027344 143.0625 203.027344 143.179688 C 203.027344 143.296875 203.121094 143.390625 203.238281 143.390625 C 203.355469 143.390625 203.449219 143.296875 203.449219 143.179688 Z M 203.449219 143.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.910156 144.066406 C 204.910156 143.949219 204.816406 143.855469 204.699219 143.855469 C 204.582031 143.855469 204.488281 143.949219 204.488281 144.066406 C 204.488281 144.183594 204.582031 144.277344 204.699219 144.277344 C 204.816406 144.277344 204.910156 144.183594 204.910156 144.066406 Z M 204.910156 144.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.332031 142.964844 C 205.332031 142.847656 205.238281 142.753906 205.121094 142.753906 C 205.003906 142.753906 204.910156 142.847656 204.910156 142.964844 C 204.910156 143.082031 205.003906 143.175781 205.121094 143.175781 C 205.238281 143.175781 205.332031 143.082031 205.332031 142.964844 Z M 205.332031 142.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.023438 140.828125 C 205.023438 140.710938 204.929688 140.617188 204.8125 140.617188 C 204.695312 140.617188 204.601562 140.710938 204.601562 140.828125 C 204.601562 140.945312 204.695312 141.039062 204.8125 141.039062 C 204.929688 141.039062 205.023438 140.945312 205.023438 140.828125 Z M 205.023438 140.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.871094 143.878906 C 202.871094 143.761719 202.777344 143.667969 202.660156 143.667969 C 202.542969 143.667969 202.449219 143.761719 202.449219 143.878906 C 202.449219 143.996094 202.542969 144.089844 202.660156 144.089844 C 202.777344 144.089844 202.871094 143.996094 202.871094 143.878906 Z M 202.871094 143.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.855469 145.382812 C 204.855469 145.265625 204.761719 145.171875 204.644531 145.171875 C 204.527344 145.171875 204.433594 145.265625 204.433594 145.382812 C 204.433594 145.5 204.527344 145.59375 204.644531 145.59375 C 204.761719 145.59375 204.855469 145.5 204.855469 145.382812 Z M 204.855469 145.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.675781 142.414062 C 203.675781 142.296875 203.582031 142.203125 203.464844 142.203125 C 203.347656 142.203125 203.253906 142.296875 203.253906 142.414062 C 203.253906 142.53125 203.347656 142.625 203.464844 142.625 C 203.582031 142.625 203.675781 142.53125 203.675781 142.414062 Z M 203.675781 142.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.207031 143.957031 C 206.207031 143.839844 206.113281 143.746094 205.996094 143.746094 C 205.878906 143.746094 205.785156 143.839844 205.785156 143.957031 C 205.785156 144.074219 205.878906 144.167969 205.996094 144.167969 C 206.113281 144.167969 206.207031 144.074219 206.207031 143.957031 Z M 206.207031 143.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.855469 143.648438 C 208.855469 143.53125 208.761719 143.4375 208.644531 143.4375 C 208.527344 143.4375 208.433594 143.53125 208.433594 143.648438 C 208.433594 143.765625 208.527344 143.859375 208.644531 143.859375 C 208.761719 143.859375 208.855469 143.765625 208.855469 143.648438 Z M 208.855469 143.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.171875 143.375 C 209.171875 143.257812 209.078125 143.164062 208.960938 143.164062 C 208.84375 143.164062 208.75 143.257812 208.75 143.375 C 208.75 143.492188 208.84375 143.585938 208.960938 143.585938 C 209.078125 143.585938 209.171875 143.492188 209.171875 143.375 Z M 209.171875 143.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.855469 144.019531 C 208.855469 143.902344 208.761719 143.808594 208.644531 143.808594 C 208.527344 143.808594 208.433594 143.902344 208.433594 144.019531 C 208.433594 144.136719 208.527344 144.230469 208.644531 144.230469 C 208.761719 144.230469 208.855469 144.136719 208.855469 144.019531 Z M 208.855469 144.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.9375 141.210938 C 209.9375 141.09375 209.84375 141 209.726562 141 C 209.609375 141 209.515625 141.09375 209.515625 141.210938 C 209.515625 141.328125 209.609375 141.421875 209.726562 141.421875 C 209.84375 141.421875 209.9375 141.328125 209.9375 141.210938 Z M 209.9375 141.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.605469 138.863281 C 207.605469 138.746094 207.511719 138.652344 207.394531 138.652344 C 207.277344 138.652344 207.183594 138.746094 207.183594 138.863281 C 207.183594 138.980469 207.277344 139.074219 207.394531 139.074219 C 207.511719 139.074219 207.605469 138.980469 207.605469 138.863281 Z M 207.605469 138.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.496094 140.746094 C 210.496094 140.628906 210.402344 140.535156 210.285156 140.535156 C 210.167969 140.535156 210.074219 140.628906 210.074219 140.746094 C 210.074219 140.863281 210.167969 140.957031 210.285156 140.957031 C 210.402344 140.957031 210.496094 140.863281 210.496094 140.746094 Z M 210.496094 140.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.304688 136.207031 C 213.304688 136.089844 213.210938 135.996094 213.09375 135.996094 C 212.976562 135.996094 212.882812 136.089844 212.882812 136.207031 C 212.882812 136.324219 212.976562 136.417969 213.09375 136.417969 C 213.210938 136.417969 213.304688 136.324219 213.304688 136.207031 Z M 213.304688 136.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.734375 134.992188 C 213.734375 134.875 213.640625 134.78125 213.523438 134.78125 C 213.40625 134.78125 213.3125 134.875 213.3125 134.992188 C 213.3125 135.109375 213.40625 135.203125 213.523438 135.203125 C 213.640625 135.203125 213.734375 135.109375 213.734375 134.992188 Z M 213.734375 134.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.808594 135.003906 C 212.808594 134.886719 212.714844 134.792969 212.597656 134.792969 C 212.480469 134.792969 212.386719 134.886719 212.386719 135.003906 C 212.386719 135.121094 212.480469 135.214844 212.597656 135.214844 C 212.714844 135.214844 212.808594 135.121094 212.808594 135.003906 Z M 212.808594 135.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.269531 136.496094 C 212.269531 136.378906 212.175781 136.285156 212.058594 136.285156 C 211.941406 136.285156 211.847656 136.378906 211.847656 136.496094 C 211.847656 136.613281 211.941406 136.707031 212.058594 136.707031 C 212.175781 136.707031 212.269531 136.613281 212.269531 136.496094 Z M 212.269531 136.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.652344 140.382812 C 209.652344 140.265625 209.558594 140.171875 209.441406 140.171875 C 209.324219 140.171875 209.230469 140.265625 209.230469 140.382812 C 209.230469 140.5 209.324219 140.59375 209.441406 140.59375 C 209.558594 140.59375 209.652344 140.5 209.652344 140.382812 Z M 209.652344 140.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.136719 141.621094 C 208.136719 141.503906 208.042969 141.410156 207.925781 141.410156 C 207.808594 141.410156 207.714844 141.503906 207.714844 141.621094 C 207.714844 141.738281 207.808594 141.832031 207.925781 141.832031 C 208.042969 141.832031 208.136719 141.738281 208.136719 141.621094 Z M 208.136719 141.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.308594 140.089844 C 207.308594 139.972656 207.214844 139.878906 207.097656 139.878906 C 206.980469 139.878906 206.886719 139.972656 206.886719 140.089844 C 206.886719 140.207031 206.980469 140.300781 207.097656 140.300781 C 207.214844 140.300781 207.308594 140.207031 207.308594 140.089844 Z M 207.308594 140.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.285156 141.421875 C 212.285156 141.304688 212.191406 141.210938 212.074219 141.210938 C 211.957031 141.210938 211.863281 141.304688 211.863281 141.421875 C 211.863281 141.539062 211.957031 141.632812 212.074219 141.632812 C 212.191406 141.632812 212.285156 141.539062 212.285156 141.421875 Z M 212.285156 141.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.609375 142.570312 C 213.609375 142.453125 213.515625 142.359375 213.398438 142.359375 C 213.28125 142.359375 213.1875 142.453125 213.1875 142.570312 C 213.1875 142.6875 213.28125 142.78125 213.398438 142.78125 C 213.515625 142.78125 213.609375 142.6875 213.609375 142.570312 Z M 213.609375 142.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.554688 138.574219 C 212.554688 138.457031 212.460938 138.363281 212.34375 138.363281 C 212.226562 138.363281 212.132812 138.457031 212.132812 138.574219 C 212.132812 138.691406 212.226562 138.785156 212.34375 138.785156 C 212.460938 138.785156 212.554688 138.691406 212.554688 138.574219 Z M 212.554688 138.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.867188 135.808594 C 212.867188 135.691406 212.773438 135.597656 212.65625 135.597656 C 212.539062 135.597656 212.445312 135.691406 212.445312 135.808594 C 212.445312 135.925781 212.539062 136.019531 212.65625 136.019531 C 212.773438 136.019531 212.867188 135.925781 212.867188 135.808594 Z M 212.867188 135.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.890625 131.765625 C 213.890625 131.648438 213.796875 131.554688 213.679688 131.554688 C 213.5625 131.554688 213.46875 131.648438 213.46875 131.765625 C 213.46875 131.882812 213.5625 131.976562 213.679688 131.976562 C 213.796875 131.976562 213.890625 131.882812 213.890625 131.765625 Z M 213.890625 131.765625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.144531 131.613281 C 214.144531 131.496094 214.050781 131.402344 213.933594 131.402344 C 213.816406 131.402344 213.722656 131.496094 213.722656 131.613281 C 213.722656 131.730469 213.816406 131.824219 213.933594 131.824219 C 214.050781 131.824219 214.144531 131.730469 214.144531 131.613281 Z M 214.144531 131.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.636719 129.117188 C 216.636719 129 216.542969 128.90625 216.425781 128.90625 C 216.308594 128.90625 216.214844 129 216.214844 129.117188 C 216.214844 129.234375 216.308594 129.328125 216.425781 129.328125 C 216.542969 129.328125 216.636719 129.234375 216.636719 129.117188 Z M 216.636719 129.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.980469 128.925781 C 219.980469 128.808594 219.886719 128.714844 219.769531 128.714844 C 219.652344 128.714844 219.558594 128.808594 219.558594 128.925781 C 219.558594 129.042969 219.652344 129.136719 219.769531 129.136719 C 219.886719 129.136719 219.980469 129.042969 219.980469 128.925781 Z M 219.980469 128.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 220.386719 132.40625 C 220.386719 132.289062 220.292969 132.195312 220.175781 132.195312 C 220.058594 132.195312 219.964844 132.289062 219.964844 132.40625 C 219.964844 132.523438 220.058594 132.617188 220.175781 132.617188 C 220.292969 132.617188 220.386719 132.523438 220.386719 132.40625 Z M 220.386719 132.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.226562 134.402344 C 217.226562 134.285156 217.132812 134.191406 217.015625 134.191406 C 216.898438 134.191406 216.804688 134.285156 216.804688 134.402344 C 216.804688 134.519531 216.898438 134.613281 217.015625 134.613281 C 217.132812 134.613281 217.226562 134.519531 217.226562 134.402344 Z M 217.226562 134.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.941406 136.472656 C 215.941406 136.355469 215.847656 136.261719 215.730469 136.261719 C 215.613281 136.261719 215.519531 136.355469 215.519531 136.472656 C 215.519531 136.589844 215.613281 136.683594 215.730469 136.683594 C 215.847656 136.683594 215.941406 136.589844 215.941406 136.472656 Z M 215.941406 136.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.703125 136.882812 C 215.703125 136.765625 215.609375 136.671875 215.492188 136.671875 C 215.375 136.671875 215.28125 136.765625 215.28125 136.882812 C 215.28125 137 215.375 137.09375 215.492188 137.09375 C 215.609375 137.09375 215.703125 137 215.703125 136.882812 Z M 215.703125 136.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.042969 132.621094 C 216.042969 132.503906 215.949219 132.410156 215.832031 132.410156 C 215.714844 132.410156 215.621094 132.503906 215.621094 132.621094 C 215.621094 132.738281 215.714844 132.832031 215.832031 132.832031 C 215.949219 132.832031 216.042969 132.738281 216.042969 132.621094 Z M 216.042969 132.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.628906 130.335938 C 216.628906 130.21875 216.535156 130.125 216.417969 130.125 C 216.300781 130.125 216.207031 130.21875 216.207031 130.335938 C 216.207031 130.453125 216.300781 130.546875 216.417969 130.546875 C 216.535156 130.546875 216.628906 130.453125 216.628906 130.335938 Z M 216.628906 130.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.90625 129.121094 C 216.90625 129.003906 216.8125 128.910156 216.695312 128.910156 C 216.578125 128.910156 216.484375 129.003906 216.484375 129.121094 C 216.484375 129.238281 216.578125 129.332031 216.695312 129.332031 C 216.8125 129.332031 216.90625 129.238281 216.90625 129.121094 Z M 216.90625 129.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.820312 129.679688 C 215.820312 129.5625 215.726562 129.46875 215.609375 129.46875 C 215.492188 129.46875 215.398438 129.5625 215.398438 129.679688 C 215.398438 129.796875 215.492188 129.890625 215.609375 129.890625 C 215.726562 129.890625 215.820312 129.796875 215.820312 129.679688 Z M 215.820312 129.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.675781 130.800781 C 212.675781 130.683594 212.582031 130.589844 212.464844 130.589844 C 212.347656 130.589844 212.253906 130.683594 212.253906 130.800781 C 212.253906 130.917969 212.347656 131.011719 212.464844 131.011719 C 212.582031 131.011719 212.675781 130.917969 212.675781 130.800781 Z M 212.675781 130.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.667969 132.453125 C 211.667969 132.335938 211.574219 132.242188 211.457031 132.242188 C 211.339844 132.242188 211.246094 132.335938 211.246094 132.453125 C 211.246094 132.570312 211.339844 132.664062 211.457031 132.664062 C 211.574219 132.664062 211.667969 132.570312 211.667969 132.453125 Z M 211.667969 132.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.191406 134.535156 C 216.191406 134.417969 216.097656 134.324219 215.980469 134.324219 C 215.863281 134.324219 215.769531 134.417969 215.769531 134.535156 C 215.769531 134.652344 215.863281 134.746094 215.980469 134.746094 C 216.097656 134.746094 216.191406 134.652344 216.191406 134.535156 Z M 216.191406 134.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.085938 136.105469 C 218.085938 135.988281 217.992188 135.894531 217.875 135.894531 C 217.757812 135.894531 217.664062 135.988281 217.664062 136.105469 C 217.664062 136.222656 217.757812 136.316406 217.875 136.316406 C 217.992188 136.316406 218.085938 136.222656 218.085938 136.105469 Z M 218.085938 136.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.386719 136.355469 C 218.386719 136.238281 218.292969 136.144531 218.175781 136.144531 C 218.058594 136.144531 217.964844 136.238281 217.964844 136.355469 C 217.964844 136.472656 218.058594 136.566406 218.175781 136.566406 C 218.292969 136.566406 218.386719 136.472656 218.386719 136.355469 Z M 218.386719 136.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.746094 137.859375 C 215.746094 137.742188 215.652344 137.648438 215.535156 137.648438 C 215.417969 137.648438 215.324219 137.742188 215.324219 137.859375 C 215.324219 137.976562 215.417969 138.070312 215.535156 138.070312 C 215.652344 138.070312 215.746094 137.976562 215.746094 137.859375 Z M 215.746094 137.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.527344 139.136719 C 214.527344 139.019531 214.433594 138.925781 214.316406 138.925781 C 214.199219 138.925781 214.105469 139.019531 214.105469 139.136719 C 214.105469 139.253906 214.199219 139.347656 214.316406 139.347656 C 214.433594 139.347656 214.527344 139.253906 214.527344 139.136719 Z M 214.527344 139.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.585938 138.28125 C 219.585938 138.164062 219.492188 138.070312 219.375 138.070312 C 219.257812 138.070312 219.164062 138.164062 219.164062 138.28125 C 219.164062 138.398438 219.257812 138.492188 219.375 138.492188 C 219.492188 138.492188 219.585938 138.398438 219.585938 138.28125 Z M 219.585938 138.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.753906 139.847656 C 215.753906 139.730469 215.660156 139.636719 215.542969 139.636719 C 215.425781 139.636719 215.332031 139.730469 215.332031 139.847656 C 215.332031 139.964844 215.425781 140.058594 215.542969 140.058594 C 215.660156 140.058594 215.753906 139.964844 215.753906 139.847656 Z M 215.753906 139.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.105469 141.132812 C 215.105469 141.015625 215.011719 140.921875 214.894531 140.921875 C 214.777344 140.921875 214.683594 141.015625 214.683594 141.132812 C 214.683594 141.25 214.777344 141.34375 214.894531 141.34375 C 215.011719 141.34375 215.105469 141.25 215.105469 141.132812 Z M 215.105469 141.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.042969 141.015625 C 216.042969 140.898438 215.949219 140.804688 215.832031 140.804688 C 215.714844 140.804688 215.621094 140.898438 215.621094 141.015625 C 215.621094 141.132812 215.714844 141.226562 215.832031 141.226562 C 215.949219 141.226562 216.042969 141.132812 216.042969 141.015625 Z M 216.042969 141.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 216.300781 142.644531 C 216.300781 142.527344 216.207031 142.433594 216.089844 142.433594 C 215.972656 142.433594 215.878906 142.527344 215.878906 142.644531 C 215.878906 142.761719 215.972656 142.855469 216.089844 142.855469 C 216.207031 142.855469 216.300781 142.761719 216.300781 142.644531 Z M 216.300781 142.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.765625 141.425781 C 215.765625 141.308594 215.671875 141.214844 215.554688 141.214844 C 215.4375 141.214844 215.34375 141.308594 215.34375 141.425781 C 215.34375 141.542969 215.4375 141.636719 215.554688 141.636719 C 215.671875 141.636719 215.765625 141.542969 215.765625 141.425781 Z M 215.765625 141.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.863281 138.828125 C 209.863281 138.710938 209.769531 138.617188 209.652344 138.617188 C 209.535156 138.617188 209.441406 138.710938 209.441406 138.828125 C 209.441406 138.945312 209.535156 139.039062 209.652344 139.039062 C 209.769531 139.039062 209.863281 138.945312 209.863281 138.828125 Z M 209.863281 138.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.636719 137.113281 C 212.636719 136.996094 212.542969 136.902344 212.425781 136.902344 C 212.308594 136.902344 212.214844 136.996094 212.214844 137.113281 C 212.214844 137.230469 212.308594 137.324219 212.425781 137.324219 C 212.542969 137.324219 212.636719 137.230469 212.636719 137.113281 Z M 212.636719 137.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.707031 137.550781 C 206.707031 137.433594 206.613281 137.339844 206.496094 137.339844 C 206.378906 137.339844 206.285156 137.433594 206.285156 137.550781 C 206.285156 137.667969 206.378906 137.761719 206.496094 137.761719 C 206.613281 137.761719 206.707031 137.667969 206.707031 137.550781 Z M 206.707031 137.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.167969 139.714844 C 204.167969 139.597656 204.074219 139.503906 203.957031 139.503906 C 203.839844 139.503906 203.746094 139.597656 203.746094 139.714844 C 203.746094 139.832031 203.839844 139.925781 203.957031 139.925781 C 204.074219 139.925781 204.167969 139.832031 204.167969 139.714844 Z M 204.167969 139.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.023438 143.902344 C 207.023438 143.785156 206.929688 143.691406 206.8125 143.691406 C 206.695312 143.691406 206.601562 143.785156 206.601562 143.902344 C 206.601562 144.019531 206.695312 144.113281 206.8125 144.113281 C 206.929688 144.113281 207.023438 144.019531 207.023438 143.902344 Z M 207.023438 143.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.9375 143.109375 C 208.9375 142.992188 208.84375 142.898438 208.726562 142.898438 C 208.609375 142.898438 208.515625 142.992188 208.515625 143.109375 C 208.515625 143.226562 208.609375 143.320312 208.726562 143.320312 C 208.84375 143.320312 208.9375 143.226562 208.9375 143.109375 Z M 208.9375 143.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.195312 144.109375 C 208.195312 143.992188 208.101562 143.898438 207.984375 143.898438 C 207.867188 143.898438 207.773438 143.992188 207.773438 144.109375 C 207.773438 144.226562 207.867188 144.320312 207.984375 144.320312 C 208.101562 144.320312 208.195312 144.226562 208.195312 144.109375 Z M 208.195312 144.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.617188 142.953125 C 204.617188 142.835938 204.523438 142.742188 204.40625 142.742188 C 204.289062 142.742188 204.195312 142.835938 204.195312 142.953125 C 204.195312 143.070312 204.289062 143.164062 204.40625 143.164062 C 204.523438 143.164062 204.617188 143.070312 204.617188 142.953125 Z M 204.617188 142.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.6875 142.921875 C 210.6875 142.804688 210.59375 142.710938 210.476562 142.710938 C 210.359375 142.710938 210.265625 142.804688 210.265625 142.921875 C 210.265625 143.039062 210.359375 143.132812 210.476562 143.132812 C 210.59375 143.132812 210.6875 143.039062 210.6875 142.921875 Z M 210.6875 142.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.738281 142.820312 C 209.738281 142.703125 209.644531 142.609375 209.527344 142.609375 C 209.410156 142.609375 209.316406 142.703125 209.316406 142.820312 C 209.316406 142.9375 209.410156 143.03125 209.527344 143.03125 C 209.644531 143.03125 209.738281 142.9375 209.738281 142.820312 Z M 209.738281 142.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.632812 139.414062 C 213.632812 139.296875 213.539062 139.203125 213.421875 139.203125 C 213.304688 139.203125 213.210938 139.296875 213.210938 139.414062 C 213.210938 139.53125 213.304688 139.625 213.421875 139.625 C 213.539062 139.625 213.632812 139.53125 213.632812 139.414062 Z M 213.632812 139.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.730469 140.902344 C 214.730469 140.785156 214.636719 140.691406 214.519531 140.691406 C 214.402344 140.691406 214.308594 140.785156 214.308594 140.902344 C 214.308594 141.019531 214.402344 141.113281 214.519531 141.113281 C 214.636719 141.113281 214.730469 141.019531 214.730469 140.902344 Z M 214.730469 140.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 214.363281 142.417969 C 214.363281 142.300781 214.269531 142.207031 214.152344 142.207031 C 214.035156 142.207031 213.941406 142.300781 213.941406 142.417969 C 213.941406 142.535156 214.035156 142.628906 214.152344 142.628906 C 214.269531 142.628906 214.363281 142.535156 214.363281 142.417969 Z M 214.363281 142.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.179688 141.265625 C 210.179688 141.148438 210.085938 141.054688 209.96875 141.054688 C 209.851562 141.054688 209.757812 141.148438 209.757812 141.265625 C 209.757812 141.382812 209.851562 141.476562 209.96875 141.476562 C 210.085938 141.476562 210.179688 141.382812 210.179688 141.265625 Z M 210.179688 141.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.113281 141.191406 C 212.113281 141.074219 212.019531 140.980469 211.902344 140.980469 C 211.785156 140.980469 211.691406 141.074219 211.691406 141.191406 C 211.691406 141.308594 211.785156 141.402344 211.902344 141.402344 C 212.019531 141.402344 212.113281 141.308594 212.113281 141.191406 Z M 212.113281 141.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.394531 140.113281 C 209.394531 139.996094 209.300781 139.902344 209.183594 139.902344 C 209.066406 139.902344 208.972656 139.996094 208.972656 140.113281 C 208.972656 140.230469 209.066406 140.324219 209.183594 140.324219 C 209.300781 140.324219 209.394531 140.230469 209.394531 140.113281 Z M 209.394531 140.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.695312 136.832031 C 207.695312 136.714844 207.601562 136.621094 207.484375 136.621094 C 207.367188 136.621094 207.273438 136.714844 207.273438 136.832031 C 207.273438 136.949219 207.367188 137.042969 207.484375 137.042969 C 207.601562 137.042969 207.695312 136.949219 207.695312 136.832031 Z M 207.695312 136.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.667969 138.476562 C 208.667969 138.359375 208.574219 138.265625 208.457031 138.265625 C 208.339844 138.265625 208.246094 138.359375 208.246094 138.476562 C 208.246094 138.59375 208.339844 138.6875 208.457031 138.6875 C 208.574219 138.6875 208.667969 138.59375 208.667969 138.476562 Z M 208.667969 138.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.660156 140.035156 C 208.660156 139.917969 208.566406 139.824219 208.449219 139.824219 C 208.332031 139.824219 208.238281 139.917969 208.238281 140.035156 C 208.238281 140.152344 208.332031 140.246094 208.449219 140.246094 C 208.566406 140.246094 208.660156 140.152344 208.660156 140.035156 Z M 208.660156 140.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.316406 139.742188 C 204.316406 139.625 204.222656 139.53125 204.105469 139.53125 C 203.988281 139.53125 203.894531 139.625 203.894531 139.742188 C 203.894531 139.859375 203.988281 139.953125 204.105469 139.953125 C 204.222656 139.953125 204.316406 139.859375 204.316406 139.742188 Z M 204.316406 139.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.808594 140.480469 C 198.808594 140.363281 198.714844 140.269531 198.597656 140.269531 C 198.480469 140.269531 198.386719 140.363281 198.386719 140.480469 C 198.386719 140.597656 198.480469 140.691406 198.597656 140.691406 C 198.714844 140.691406 198.808594 140.597656 198.808594 140.480469 Z M 198.808594 140.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.589844 139.4375 C 193.589844 139.320312 193.496094 139.226562 193.378906 139.226562 C 193.261719 139.226562 193.167969 139.320312 193.167969 139.4375 C 193.167969 139.554688 193.261719 139.648438 193.378906 139.648438 C 193.496094 139.648438 193.589844 139.554688 193.589844 139.4375 Z M 193.589844 139.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.3125 142.273438 C 191.3125 142.15625 191.21875 142.0625 191.101562 142.0625 C 190.984375 142.0625 190.890625 142.15625 190.890625 142.273438 C 190.890625 142.390625 190.984375 142.484375 191.101562 142.484375 C 191.21875 142.484375 191.3125 142.390625 191.3125 142.273438 Z M 191.3125 142.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.234375 140.667969 C 191.234375 140.550781 191.140625 140.457031 191.023438 140.457031 C 190.90625 140.457031 190.8125 140.550781 190.8125 140.667969 C 190.8125 140.785156 190.90625 140.878906 191.023438 140.878906 C 191.140625 140.878906 191.234375 140.785156 191.234375 140.667969 Z M 191.234375 140.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.183594 142.339844 C 187.183594 142.222656 187.089844 142.128906 186.972656 142.128906 C 186.855469 142.128906 186.761719 142.222656 186.761719 142.339844 C 186.761719 142.457031 186.855469 142.550781 186.972656 142.550781 C 187.089844 142.550781 187.183594 142.457031 187.183594 142.339844 Z M 187.183594 142.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.949219 141.324219 C 186.949219 141.207031 186.855469 141.113281 186.738281 141.113281 C 186.621094 141.113281 186.527344 141.207031 186.527344 141.324219 C 186.527344 141.441406 186.621094 141.535156 186.738281 141.535156 C 186.855469 141.535156 186.949219 141.441406 186.949219 141.324219 Z M 186.949219 141.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.015625 142.558594 C 184.015625 142.441406 183.921875 142.347656 183.804688 142.347656 C 183.6875 142.347656 183.59375 142.441406 183.59375 142.558594 C 183.59375 142.675781 183.6875 142.769531 183.804688 142.769531 C 183.921875 142.769531 184.015625 142.675781 184.015625 142.558594 Z M 184.015625 142.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 184.820312 140.839844 C 184.820312 140.722656 184.726562 140.628906 184.609375 140.628906 C 184.492188 140.628906 184.398438 140.722656 184.398438 140.839844 C 184.398438 140.957031 184.492188 141.050781 184.609375 141.050781 C 184.726562 141.050781 184.820312 140.957031 184.820312 140.839844 Z M 184.820312 140.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.632812 138.78125 C 183.632812 138.664062 183.539062 138.570312 183.421875 138.570312 C 183.304688 138.570312 183.210938 138.664062 183.210938 138.78125 C 183.210938 138.898438 183.304688 138.992188 183.421875 138.992188 C 183.539062 138.992188 183.632812 138.898438 183.632812 138.78125 Z M 183.632812 138.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.402344 138.449219 C 182.402344 138.332031 182.308594 138.238281 182.191406 138.238281 C 182.074219 138.238281 181.980469 138.332031 181.980469 138.449219 C 181.980469 138.566406 182.074219 138.660156 182.191406 138.660156 C 182.308594 138.660156 182.402344 138.566406 182.402344 138.449219 Z M 182.402344 138.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.269531 139.617188 C 181.269531 139.5 181.175781 139.40625 181.058594 139.40625 C 180.941406 139.40625 180.847656 139.5 180.847656 139.617188 C 180.847656 139.734375 180.941406 139.828125 181.058594 139.828125 C 181.175781 139.828125 181.269531 139.734375 181.269531 139.617188 Z M 181.269531 139.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 180.441406 139.207031 C 180.441406 139.089844 180.347656 138.996094 180.230469 138.996094 C 180.113281 138.996094 180.019531 139.089844 180.019531 139.207031 C 180.019531 139.324219 180.113281 139.417969 180.230469 139.417969 C 180.347656 139.417969 180.441406 139.324219 180.441406 139.207031 Z M 180.441406 139.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 176.875 134.441406 C 176.875 134.324219 176.78125 134.230469 176.664062 134.230469 C 176.546875 134.230469 176.453125 134.324219 176.453125 134.441406 C 176.453125 134.558594 176.546875 134.652344 176.664062 134.652344 C 176.78125 134.652344 176.875 134.558594 176.875 134.441406 Z M 176.875 134.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.738281 136.832031 C 175.738281 136.714844 175.644531 136.621094 175.527344 136.621094 C 175.410156 136.621094 175.316406 136.714844 175.316406 136.832031 C 175.316406 136.949219 175.410156 137.042969 175.527344 137.042969 C 175.644531 137.042969 175.738281 136.949219 175.738281 136.832031 Z M 175.738281 136.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 178.5625 136.371094 C 178.5625 136.253906 178.46875 136.160156 178.351562 136.160156 C 178.234375 136.160156 178.140625 136.253906 178.140625 136.371094 C 178.140625 136.488281 178.234375 136.582031 178.351562 136.582031 C 178.46875 136.582031 178.5625 136.488281 178.5625 136.371094 Z M 178.5625 136.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 176.042969 132.953125 C 176.042969 132.835938 175.949219 132.742188 175.832031 132.742188 C 175.714844 132.742188 175.621094 132.835938 175.621094 132.953125 C 175.621094 133.070312 175.714844 133.164062 175.832031 133.164062 C 175.949219 133.164062 176.042969 133.070312 176.042969 132.953125 Z M 176.042969 132.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 176.097656 131.175781 C 176.097656 131.058594 176.003906 130.964844 175.886719 130.964844 C 175.769531 130.964844 175.675781 131.058594 175.675781 131.175781 C 175.675781 131.292969 175.769531 131.386719 175.886719 131.386719 C 176.003906 131.386719 176.097656 131.292969 176.097656 131.175781 Z M 176.097656 131.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.117188 133.621094 C 175.117188 133.503906 175.023438 133.410156 174.90625 133.410156 C 174.789062 133.410156 174.695312 133.503906 174.695312 133.621094 C 174.695312 133.738281 174.789062 133.832031 174.90625 133.832031 C 175.023438 133.832031 175.117188 133.738281 175.117188 133.621094 Z M 175.117188 133.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 178.007812 130.886719 C 178.007812 130.769531 177.914062 130.675781 177.796875 130.675781 C 177.679688 130.675781 177.585938 130.769531 177.585938 130.886719 C 177.585938 131.003906 177.679688 131.097656 177.796875 131.097656 C 177.914062 131.097656 178.007812 131.003906 178.007812 130.886719 Z M 178.007812 130.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 176.679688 127.503906 C 176.679688 127.386719 176.585938 127.292969 176.46875 127.292969 C 176.351562 127.292969 176.257812 127.386719 176.257812 127.503906 C 176.257812 127.621094 176.351562 127.714844 176.46875 127.714844 C 176.585938 127.714844 176.679688 127.621094 176.679688 127.503906 Z M 176.679688 127.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.910156 127.382812 C 175.910156 127.265625 175.816406 127.171875 175.699219 127.171875 C 175.582031 127.171875 175.488281 127.265625 175.488281 127.382812 C 175.488281 127.5 175.582031 127.59375 175.699219 127.59375 C 175.816406 127.59375 175.910156 127.5 175.910156 127.382812 Z M 175.910156 127.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 174.023438 127.863281 C 174.023438 127.746094 173.929688 127.652344 173.8125 127.652344 C 173.695312 127.652344 173.601562 127.746094 173.601562 127.863281 C 173.601562 127.980469 173.695312 128.074219 173.8125 128.074219 C 173.929688 128.074219 174.023438 127.980469 174.023438 127.863281 Z M 174.023438 127.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 173.007812 129.90625 C 173.007812 129.789062 172.914062 129.695312 172.796875 129.695312 C 172.679688 129.695312 172.585938 129.789062 172.585938 129.90625 C 172.585938 130.023438 172.679688 130.117188 172.796875 130.117188 C 172.914062 130.117188 173.007812 130.023438 173.007812 129.90625 Z M 173.007812 129.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.121094 130.238281 C 175.121094 130.121094 175.027344 130.027344 174.910156 130.027344 C 174.792969 130.027344 174.699219 130.121094 174.699219 130.238281 C 174.699219 130.355469 174.792969 130.449219 174.910156 130.449219 C 175.027344 130.449219 175.121094 130.355469 175.121094 130.238281 Z M 175.121094 130.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 173.195312 133.253906 C 173.195312 133.136719 173.101562 133.042969 172.984375 133.042969 C 172.867188 133.042969 172.773438 133.136719 172.773438 133.253906 C 172.773438 133.371094 172.867188 133.464844 172.984375 133.464844 C 173.101562 133.464844 173.195312 133.371094 173.195312 133.253906 Z M 173.195312 133.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 174.273438 132.296875 C 174.273438 132.179688 174.179688 132.085938 174.0625 132.085938 C 173.945312 132.085938 173.851562 132.179688 173.851562 132.296875 C 173.851562 132.414062 173.945312 132.507812 174.0625 132.507812 C 174.179688 132.507812 174.273438 132.414062 174.273438 132.296875 Z M 174.273438 132.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 172.726562 131.796875 C 172.726562 131.679688 172.632812 131.585938 172.515625 131.585938 C 172.398438 131.585938 172.304688 131.679688 172.304688 131.796875 C 172.304688 131.914062 172.398438 132.007812 172.515625 132.007812 C 172.632812 132.007812 172.726562 131.914062 172.726562 131.796875 Z M 172.726562 131.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 174.070312 130.707031 C 174.070312 130.589844 173.976562 130.496094 173.859375 130.496094 C 173.742188 130.496094 173.648438 130.589844 173.648438 130.707031 C 173.648438 130.824219 173.742188 130.917969 173.859375 130.917969 C 173.976562 130.917969 174.070312 130.824219 174.070312 130.707031 Z M 174.070312 130.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.566406 133.636719 C 175.566406 133.519531 175.472656 133.425781 175.355469 133.425781 C 175.238281 133.425781 175.144531 133.519531 175.144531 133.636719 C 175.144531 133.753906 175.238281 133.847656 175.355469 133.847656 C 175.472656 133.847656 175.566406 133.753906 175.566406 133.636719 Z M 175.566406 133.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.914062 133.152344 C 175.914062 133.035156 175.820312 132.941406 175.703125 132.941406 C 175.585938 132.941406 175.492188 133.035156 175.492188 133.152344 C 175.492188 133.269531 175.585938 133.363281 175.703125 133.363281 C 175.820312 133.363281 175.914062 133.269531 175.914062 133.152344 Z M 175.914062 133.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 177.222656 133.429688 C 177.222656 133.3125 177.128906 133.21875 177.011719 133.21875 C 176.894531 133.21875 176.800781 133.3125 176.800781 133.429688 C 176.800781 133.546875 176.894531 133.640625 177.011719 133.640625 C 177.128906 133.640625 177.222656 133.546875 177.222656 133.429688 Z M 177.222656 133.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 179.894531 136.148438 C 179.894531 136.03125 179.800781 135.9375 179.683594 135.9375 C 179.566406 135.9375 179.472656 136.03125 179.472656 136.148438 C 179.472656 136.265625 179.566406 136.359375 179.683594 136.359375 C 179.800781 136.359375 179.894531 136.265625 179.894531 136.148438 Z M 179.894531 136.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 180.550781 139.054688 C 180.550781 138.9375 180.457031 138.84375 180.339844 138.84375 C 180.222656 138.84375 180.128906 138.9375 180.128906 139.054688 C 180.128906 139.171875 180.222656 139.265625 180.339844 139.265625 C 180.457031 139.265625 180.550781 139.171875 180.550781 139.054688 Z M 180.550781 139.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.300781 140.871094 C 181.300781 140.753906 181.207031 140.660156 181.089844 140.660156 C 180.972656 140.660156 180.878906 140.753906 180.878906 140.871094 C 180.878906 140.988281 180.972656 141.082031 181.089844 141.082031 C 181.207031 141.082031 181.300781 140.988281 181.300781 140.871094 Z M 181.300781 140.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 179.496094 142.378906 C 179.496094 142.261719 179.402344 142.167969 179.285156 142.167969 C 179.167969 142.167969 179.074219 142.261719 179.074219 142.378906 C 179.074219 142.496094 179.167969 142.589844 179.285156 142.589844 C 179.402344 142.589844 179.496094 142.496094 179.496094 142.378906 Z M 179.496094 142.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.335938 141.347656 C 181.335938 141.230469 181.242188 141.136719 181.125 141.136719 C 181.007812 141.136719 180.914062 141.230469 180.914062 141.347656 C 180.914062 141.464844 181.007812 141.558594 181.125 141.558594 C 181.242188 141.558594 181.335938 141.464844 181.335938 141.347656 Z M 181.335938 141.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 178.3125 140.1875 C 178.3125 140.070312 178.21875 139.976562 178.101562 139.976562 C 177.984375 139.976562 177.890625 140.070312 177.890625 140.1875 C 177.890625 140.304688 177.984375 140.398438 178.101562 140.398438 C 178.21875 140.398438 178.3125 140.304688 178.3125 140.1875 Z M 178.3125 140.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 177.007812 138.355469 C 177.007812 138.238281 176.914062 138.144531 176.796875 138.144531 C 176.679688 138.144531 176.585938 138.238281 176.585938 138.355469 C 176.585938 138.472656 176.679688 138.566406 176.796875 138.566406 C 176.914062 138.566406 177.007812 138.472656 177.007812 138.355469 Z M 177.007812 138.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 179.398438 134.71875 C 179.398438 134.601562 179.304688 134.507812 179.1875 134.507812 C 179.070312 134.507812 178.976562 134.601562 178.976562 134.71875 C 178.976562 134.835938 179.070312 134.929688 179.1875 134.929688 C 179.304688 134.929688 179.398438 134.835938 179.398438 134.71875 Z M 179.398438 134.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.402344 132.769531 C 175.402344 132.652344 175.308594 132.558594 175.191406 132.558594 C 175.074219 132.558594 174.980469 132.652344 174.980469 132.769531 C 174.980469 132.886719 175.074219 132.980469 175.191406 132.980469 C 175.308594 132.980469 175.402344 132.886719 175.402344 132.769531 Z M 175.402344 132.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 171.515625 131.828125 C 171.515625 131.710938 171.421875 131.617188 171.304688 131.617188 C 171.1875 131.617188 171.09375 131.710938 171.09375 131.828125 C 171.09375 131.945312 171.1875 132.039062 171.304688 132.039062 C 171.421875 132.039062 171.515625 131.945312 171.515625 131.828125 Z M 171.515625 131.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 170.976562 131.515625 C 170.976562 131.398438 170.882812 131.304688 170.765625 131.304688 C 170.648438 131.304688 170.554688 131.398438 170.554688 131.515625 C 170.554688 131.632812 170.648438 131.726562 170.765625 131.726562 C 170.882812 131.726562 170.976562 131.632812 170.976562 131.515625 Z M 170.976562 131.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 173.976562 132.570312 C 173.976562 132.453125 173.882812 132.359375 173.765625 132.359375 C 173.648438 132.359375 173.554688 132.453125 173.554688 132.570312 C 173.554688 132.6875 173.648438 132.78125 173.765625 132.78125 C 173.882812 132.78125 173.976562 132.6875 173.976562 132.570312 Z M 173.976562 132.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 173.5 134.457031 C 173.5 134.339844 173.40625 134.246094 173.289062 134.246094 C 173.171875 134.246094 173.078125 134.339844 173.078125 134.457031 C 173.078125 134.574219 173.171875 134.667969 173.289062 134.667969 C 173.40625 134.667969 173.5 134.574219 173.5 134.457031 Z M 173.5 134.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.46875 134.832031 C 175.46875 134.714844 175.375 134.621094 175.257812 134.621094 C 175.140625 134.621094 175.046875 134.714844 175.046875 134.832031 C 175.046875 134.949219 175.140625 135.042969 175.257812 135.042969 C 175.375 135.042969 175.46875 134.949219 175.46875 134.832031 Z M 175.46875 134.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 177.023438 137.023438 C 177.023438 136.90625 176.929688 136.8125 176.8125 136.8125 C 176.695312 136.8125 176.601562 136.90625 176.601562 137.023438 C 176.601562 137.140625 176.695312 137.234375 176.8125 137.234375 C 176.929688 137.234375 177.023438 137.140625 177.023438 137.023438 Z M 177.023438 137.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.90625 136.789062 C 175.90625 136.671875 175.8125 136.578125 175.695312 136.578125 C 175.578125 136.578125 175.484375 136.671875 175.484375 136.789062 C 175.484375 136.90625 175.578125 137 175.695312 137 C 175.8125 137 175.90625 136.90625 175.90625 136.789062 Z M 175.90625 136.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.339844 134.925781 C 175.339844 134.808594 175.246094 134.714844 175.128906 134.714844 C 175.011719 134.714844 174.917969 134.808594 174.917969 134.925781 C 174.917969 135.042969 175.011719 135.136719 175.128906 135.136719 C 175.246094 135.136719 175.339844 135.042969 175.339844 134.925781 Z M 175.339844 134.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 174.851562 134.898438 C 174.851562 134.78125 174.757812 134.6875 174.640625 134.6875 C 174.523438 134.6875 174.429688 134.78125 174.429688 134.898438 C 174.429688 135.015625 174.523438 135.109375 174.640625 135.109375 C 174.757812 135.109375 174.851562 135.015625 174.851562 134.898438 Z M 174.851562 134.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.496094 135.027344 C 175.496094 134.910156 175.402344 134.816406 175.285156 134.816406 C 175.167969 134.816406 175.074219 134.910156 175.074219 135.027344 C 175.074219 135.144531 175.167969 135.238281 175.285156 135.238281 C 175.402344 135.238281 175.496094 135.144531 175.496094 135.027344 Z M 175.496094 135.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.605469 136.664062 C 175.605469 136.546875 175.511719 136.453125 175.394531 136.453125 C 175.277344 136.453125 175.183594 136.546875 175.183594 136.664062 C 175.183594 136.78125 175.277344 136.875 175.394531 136.875 C 175.511719 136.875 175.605469 136.78125 175.605469 136.664062 Z M 175.605469 136.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 177.347656 137.964844 C 177.347656 137.847656 177.253906 137.753906 177.136719 137.753906 C 177.019531 137.753906 176.925781 137.847656 176.925781 137.964844 C 176.925781 138.082031 177.019531 138.175781 177.136719 138.175781 C 177.253906 138.175781 177.347656 138.082031 177.347656 137.964844 Z M 177.347656 137.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 180.691406 137.738281 C 180.691406 137.621094 180.597656 137.527344 180.480469 137.527344 C 180.363281 137.527344 180.269531 137.621094 180.269531 137.738281 C 180.269531 137.855469 180.363281 137.949219 180.480469 137.949219 C 180.597656 137.949219 180.691406 137.855469 180.691406 137.738281 Z M 180.691406 137.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.742188 136.546875 C 183.742188 136.429688 183.648438 136.335938 183.53125 136.335938 C 183.414062 136.335938 183.320312 136.429688 183.320312 136.546875 C 183.320312 136.664062 183.414062 136.757812 183.53125 136.757812 C 183.648438 136.757812 183.742188 136.664062 183.742188 136.546875 Z M 183.742188 136.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.820312 136.9375 C 181.820312 136.820312 181.726562 136.726562 181.609375 136.726562 C 181.492188 136.726562 181.398438 136.820312 181.398438 136.9375 C 181.398438 137.054688 181.492188 137.148438 181.609375 137.148438 C 181.726562 137.148438 181.820312 137.054688 181.820312 136.9375 Z M 181.820312 136.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 176.867188 140 C 176.867188 139.882812 176.773438 139.789062 176.65625 139.789062 C 176.539062 139.789062 176.445312 139.882812 176.445312 140 C 176.445312 140.117188 176.539062 140.210938 176.65625 140.210938 C 176.773438 140.210938 176.867188 140.117188 176.867188 140 Z M 176.867188 140 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.636719 139.867188 C 175.636719 139.75 175.542969 139.65625 175.425781 139.65625 C 175.308594 139.65625 175.214844 139.75 175.214844 139.867188 C 175.214844 139.984375 175.308594 140.078125 175.425781 140.078125 C 175.542969 140.078125 175.636719 139.984375 175.636719 139.867188 Z M 175.636719 139.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 177.382812 140.792969 C 177.382812 140.675781 177.289062 140.582031 177.171875 140.582031 C 177.054688 140.582031 176.960938 140.675781 176.960938 140.792969 C 176.960938 140.910156 177.054688 141.003906 177.171875 141.003906 C 177.289062 141.003906 177.382812 140.910156 177.382812 140.792969 Z M 177.382812 140.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 172.578125 141.25 C 172.578125 141.132812 172.484375 141.039062 172.367188 141.039062 C 172.25 141.039062 172.15625 141.132812 172.15625 141.25 C 172.15625 141.367188 172.25 141.460938 172.367188 141.460938 C 172.484375 141.460938 172.578125 141.367188 172.578125 141.25 Z M 172.578125 141.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 174.960938 136.949219 C 174.960938 136.832031 174.867188 136.738281 174.75 136.738281 C 174.632812 136.738281 174.539062 136.832031 174.539062 136.949219 C 174.539062 137.066406 174.632812 137.160156 174.75 137.160156 C 174.867188 137.160156 174.960938 137.066406 174.960938 136.949219 Z M 174.960938 136.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 177.628906 136.464844 C 177.628906 136.347656 177.535156 136.253906 177.417969 136.253906 C 177.300781 136.253906 177.207031 136.347656 177.207031 136.464844 C 177.207031 136.582031 177.300781 136.675781 177.417969 136.675781 C 177.535156 136.675781 177.628906 136.582031 177.628906 136.464844 Z M 177.628906 136.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 178.070312 136.289062 C 178.070312 136.171875 177.976562 136.078125 177.859375 136.078125 C 177.742188 136.078125 177.648438 136.171875 177.648438 136.289062 C 177.648438 136.40625 177.742188 136.5 177.859375 136.5 C 177.976562 136.5 178.070312 136.40625 178.070312 136.289062 Z M 178.070312 136.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.578125 134.660156 C 175.578125 134.542969 175.484375 134.449219 175.367188 134.449219 C 175.25 134.449219 175.15625 134.542969 175.15625 134.660156 C 175.15625 134.777344 175.25 134.871094 175.367188 134.871094 C 175.484375 134.871094 175.578125 134.777344 175.578125 134.660156 Z M 175.578125 134.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 178.21875 134.503906 C 178.21875 134.386719 178.125 134.292969 178.007812 134.292969 C 177.890625 134.292969 177.796875 134.386719 177.796875 134.503906 C 177.796875 134.621094 177.890625 134.714844 178.007812 134.714844 C 178.125 134.714844 178.21875 134.621094 178.21875 134.503906 Z M 178.21875 134.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 179.296875 131.164062 C 179.296875 131.046875 179.203125 130.953125 179.085938 130.953125 C 178.96875 130.953125 178.875 131.046875 178.875 131.164062 C 178.875 131.28125 178.96875 131.375 179.085938 131.375 C 179.203125 131.375 179.296875 131.28125 179.296875 131.164062 Z M 179.296875 131.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 180.777344 130.832031 C 180.777344 130.714844 180.683594 130.621094 180.566406 130.621094 C 180.449219 130.621094 180.355469 130.714844 180.355469 130.832031 C 180.355469 130.949219 180.449219 131.042969 180.566406 131.042969 C 180.683594 131.042969 180.777344 130.949219 180.777344 130.832031 Z M 180.777344 130.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.390625 130.34375 C 181.390625 130.226562 181.296875 130.132812 181.179688 130.132812 C 181.0625 130.132812 180.96875 130.226562 180.96875 130.34375 C 180.96875 130.460938 181.0625 130.554688 181.179688 130.554688 C 181.296875 130.554688 181.390625 130.460938 181.390625 130.34375 Z M 181.390625 130.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.097656 134.292969 C 182.097656 134.175781 182.003906 134.082031 181.886719 134.082031 C 181.769531 134.082031 181.675781 134.175781 181.675781 134.292969 C 181.675781 134.410156 181.769531 134.503906 181.886719 134.503906 C 182.003906 134.503906 182.097656 134.410156 182.097656 134.292969 Z M 182.097656 134.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 179.574219 130.332031 C 179.574219 130.214844 179.480469 130.121094 179.363281 130.121094 C 179.246094 130.121094 179.152344 130.214844 179.152344 130.332031 C 179.152344 130.449219 179.246094 130.542969 179.363281 130.542969 C 179.480469 130.542969 179.574219 130.449219 179.574219 130.332031 Z M 179.574219 130.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 179.890625 131.558594 C 179.890625 131.441406 179.796875 131.347656 179.679688 131.347656 C 179.5625 131.347656 179.46875 131.441406 179.46875 131.558594 C 179.46875 131.675781 179.5625 131.769531 179.679688 131.769531 C 179.796875 131.769531 179.890625 131.675781 179.890625 131.558594 Z M 179.890625 131.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 177.363281 128.773438 C 177.363281 128.65625 177.269531 128.5625 177.152344 128.5625 C 177.035156 128.5625 176.941406 128.65625 176.941406 128.773438 C 176.941406 128.890625 177.035156 128.984375 177.152344 128.984375 C 177.269531 128.984375 177.363281 128.890625 177.363281 128.773438 Z M 177.363281 128.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 177.285156 128.792969 C 177.285156 128.675781 177.191406 128.582031 177.074219 128.582031 C 176.957031 128.582031 176.863281 128.675781 176.863281 128.792969 C 176.863281 128.910156 176.957031 129.003906 177.074219 129.003906 C 177.191406 129.003906 177.285156 128.910156 177.285156 128.792969 Z M 177.285156 128.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 173.808594 126.433594 C 173.808594 126.316406 173.714844 126.222656 173.597656 126.222656 C 173.480469 126.222656 173.386719 126.316406 173.386719 126.433594 C 173.386719 126.550781 173.480469 126.644531 173.597656 126.644531 C 173.714844 126.644531 173.808594 126.550781 173.808594 126.433594 Z M 173.808594 126.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 173.742188 127.121094 C 173.742188 127.003906 173.648438 126.910156 173.53125 126.910156 C 173.414062 126.910156 173.320312 127.003906 173.320312 127.121094 C 173.320312 127.238281 173.414062 127.332031 173.53125 127.332031 C 173.648438 127.332031 173.742188 127.238281 173.742188 127.121094 Z M 173.742188 127.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 174.777344 125.027344 C 174.777344 124.910156 174.683594 124.816406 174.566406 124.816406 C 174.449219 124.816406 174.355469 124.910156 174.355469 125.027344 C 174.355469 125.144531 174.449219 125.238281 174.566406 125.238281 C 174.683594 125.238281 174.777344 125.144531 174.777344 125.027344 Z M 174.777344 125.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 177.121094 123.699219 C 177.121094 123.582031 177.027344 123.488281 176.910156 123.488281 C 176.792969 123.488281 176.699219 123.582031 176.699219 123.699219 C 176.699219 123.816406 176.792969 123.910156 176.910156 123.910156 C 177.027344 123.910156 177.121094 123.816406 177.121094 123.699219 Z M 177.121094 123.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 174.222656 121.699219 C 174.222656 121.582031 174.128906 121.488281 174.011719 121.488281 C 173.894531 121.488281 173.800781 121.582031 173.800781 121.699219 C 173.800781 121.816406 173.894531 121.910156 174.011719 121.910156 C 174.128906 121.910156 174.222656 121.816406 174.222656 121.699219 Z M 174.222656 121.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.945312 118.382812 C 175.945312 118.265625 175.851562 118.171875 175.734375 118.171875 C 175.617188 118.171875 175.523438 118.265625 175.523438 118.382812 C 175.523438 118.5 175.617188 118.59375 175.734375 118.59375 C 175.851562 118.59375 175.945312 118.5 175.945312 118.382812 Z M 175.945312 118.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 176.460938 119.707031 C 176.460938 119.589844 176.367188 119.496094 176.25 119.496094 C 176.132812 119.496094 176.039062 119.589844 176.039062 119.707031 C 176.039062 119.824219 176.132812 119.917969 176.25 119.917969 C 176.367188 119.917969 176.460938 119.824219 176.460938 119.707031 Z M 176.460938 119.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 174.296875 119.453125 C 174.296875 119.335938 174.203125 119.242188 174.085938 119.242188 C 173.96875 119.242188 173.875 119.335938 173.875 119.453125 C 173.875 119.570312 173.96875 119.664062 174.085938 119.664062 C 174.203125 119.664062 174.296875 119.570312 174.296875 119.453125 Z M 174.296875 119.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 173.636719 122.316406 C 173.636719 122.199219 173.542969 122.105469 173.425781 122.105469 C 173.308594 122.105469 173.214844 122.199219 173.214844 122.316406 C 173.214844 122.433594 173.308594 122.527344 173.425781 122.527344 C 173.542969 122.527344 173.636719 122.433594 173.636719 122.316406 Z M 173.636719 122.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 172.671875 124.558594 C 172.671875 124.441406 172.578125 124.347656 172.460938 124.347656 C 172.34375 124.347656 172.25 124.441406 172.25 124.558594 C 172.25 124.675781 172.34375 124.769531 172.460938 124.769531 C 172.578125 124.769531 172.671875 124.675781 172.671875 124.558594 Z M 172.671875 124.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 170.085938 124.910156 C 170.085938 124.792969 169.992188 124.699219 169.875 124.699219 C 169.757812 124.699219 169.664062 124.792969 169.664062 124.910156 C 169.664062 125.027344 169.757812 125.121094 169.875 125.121094 C 169.992188 125.121094 170.085938 125.027344 170.085938 124.910156 Z M 170.085938 124.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 170.410156 122.328125 C 170.410156 122.210938 170.316406 122.117188 170.199219 122.117188 C 170.082031 122.117188 169.988281 122.210938 169.988281 122.328125 C 169.988281 122.445312 170.082031 122.539062 170.199219 122.539062 C 170.316406 122.539062 170.410156 122.445312 170.410156 122.328125 Z M 170.410156 122.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 169.132812 122.09375 C 169.132812 121.976562 169.039062 121.882812 168.921875 121.882812 C 168.804688 121.882812 168.710938 121.976562 168.710938 122.09375 C 168.710938 122.210938 168.804688 122.304688 168.921875 122.304688 C 169.039062 122.304688 169.132812 122.210938 169.132812 122.09375 Z M 169.132812 122.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 170.257812 122.246094 C 170.257812 122.128906 170.164062 122.035156 170.046875 122.035156 C 169.929688 122.035156 169.835938 122.128906 169.835938 122.246094 C 169.835938 122.363281 169.929688 122.457031 170.046875 122.457031 C 170.164062 122.457031 170.257812 122.363281 170.257812 122.246094 Z M 170.257812 122.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 170.675781 122.023438 C 170.675781 121.90625 170.582031 121.8125 170.464844 121.8125 C 170.347656 121.8125 170.253906 121.90625 170.253906 122.023438 C 170.253906 122.140625 170.347656 122.234375 170.464844 122.234375 C 170.582031 122.234375 170.675781 122.140625 170.675781 122.023438 Z M 170.675781 122.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 170.988281 123.335938 C 170.988281 123.21875 170.894531 123.125 170.777344 123.125 C 170.660156 123.125 170.566406 123.21875 170.566406 123.335938 C 170.566406 123.453125 170.660156 123.546875 170.777344 123.546875 C 170.894531 123.546875 170.988281 123.453125 170.988281 123.335938 Z M 170.988281 123.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 169.574219 124.949219 C 169.574219 124.832031 169.480469 124.738281 169.363281 124.738281 C 169.246094 124.738281 169.152344 124.832031 169.152344 124.949219 C 169.152344 125.066406 169.246094 125.160156 169.363281 125.160156 C 169.480469 125.160156 169.574219 125.066406 169.574219 124.949219 Z M 169.574219 124.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 169.679688 129.539062 C 169.679688 129.421875 169.585938 129.328125 169.46875 129.328125 C 169.351562 129.328125 169.257812 129.421875 169.257812 129.539062 C 169.257812 129.65625 169.351562 129.75 169.46875 129.75 C 169.585938 129.75 169.679688 129.65625 169.679688 129.539062 Z M 169.679688 129.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 169.277344 128.714844 C 169.277344 128.597656 169.183594 128.503906 169.066406 128.503906 C 168.949219 128.503906 168.855469 128.597656 168.855469 128.714844 C 168.855469 128.832031 168.949219 128.925781 169.066406 128.925781 C 169.183594 128.925781 169.277344 128.832031 169.277344 128.714844 Z M 169.277344 128.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 164.5625 124.609375 C 164.5625 124.492188 164.46875 124.398438 164.351562 124.398438 C 164.234375 124.398438 164.140625 124.492188 164.140625 124.609375 C 164.140625 124.726562 164.234375 124.820312 164.351562 124.820312 C 164.46875 124.820312 164.5625 124.726562 164.5625 124.609375 Z M 164.5625 124.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 161.691406 126.734375 C 161.691406 126.617188 161.597656 126.523438 161.480469 126.523438 C 161.363281 126.523438 161.269531 126.617188 161.269531 126.734375 C 161.269531 126.851562 161.363281 126.945312 161.480469 126.945312 C 161.597656 126.945312 161.691406 126.851562 161.691406 126.734375 Z M 161.691406 126.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 160.433594 125.554688 C 160.433594 125.4375 160.339844 125.34375 160.222656 125.34375 C 160.105469 125.34375 160.011719 125.4375 160.011719 125.554688 C 160.011719 125.671875 160.105469 125.765625 160.222656 125.765625 C 160.339844 125.765625 160.433594 125.671875 160.433594 125.554688 Z M 160.433594 125.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 160.351562 126.996094 C 160.351562 126.878906 160.257812 126.785156 160.140625 126.785156 C 160.023438 126.785156 159.929688 126.878906 159.929688 126.996094 C 159.929688 127.113281 160.023438 127.207031 160.140625 127.207031 C 160.257812 127.207031 160.351562 127.113281 160.351562 126.996094 Z M 160.351562 126.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 160.175781 124.507812 C 160.175781 124.390625 160.082031 124.296875 159.964844 124.296875 C 159.847656 124.296875 159.753906 124.390625 159.753906 124.507812 C 159.753906 124.625 159.847656 124.71875 159.964844 124.71875 C 160.082031 124.71875 160.175781 124.625 160.175781 124.507812 Z M 160.175781 124.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 164.234375 126.535156 C 164.234375 126.417969 164.140625 126.324219 164.023438 126.324219 C 163.90625 126.324219 163.8125 126.417969 163.8125 126.535156 C 163.8125 126.652344 163.90625 126.746094 164.023438 126.746094 C 164.140625 126.746094 164.234375 126.652344 164.234375 126.535156 Z M 164.234375 126.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 166.183594 126.679688 C 166.183594 126.5625 166.089844 126.46875 165.972656 126.46875 C 165.855469 126.46875 165.761719 126.5625 165.761719 126.679688 C 165.761719 126.796875 165.855469 126.890625 165.972656 126.890625 C 166.089844 126.890625 166.183594 126.796875 166.183594 126.679688 Z M 166.183594 126.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 169.019531 124.359375 C 169.019531 124.242188 168.925781 124.148438 168.808594 124.148438 C 168.691406 124.148438 168.597656 124.242188 168.597656 124.359375 C 168.597656 124.476562 168.691406 124.570312 168.808594 124.570312 C 168.925781 124.570312 169.019531 124.476562 169.019531 124.359375 Z M 169.019531 124.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 169.699219 125.25 C 169.699219 125.132812 169.605469 125.039062 169.488281 125.039062 C 169.371094 125.039062 169.277344 125.132812 169.277344 125.25 C 169.277344 125.367188 169.371094 125.460938 169.488281 125.460938 C 169.605469 125.460938 169.699219 125.367188 169.699219 125.25 Z M 169.699219 125.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 170.84375 125.699219 C 170.84375 125.582031 170.75 125.488281 170.632812 125.488281 C 170.515625 125.488281 170.421875 125.582031 170.421875 125.699219 C 170.421875 125.816406 170.515625 125.910156 170.632812 125.910156 C 170.75 125.910156 170.84375 125.816406 170.84375 125.699219 Z M 170.84375 125.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.636719 123.683594 C 175.636719 123.566406 175.542969 123.472656 175.425781 123.472656 C 175.308594 123.472656 175.214844 123.566406 175.214844 123.683594 C 175.214844 123.800781 175.308594 123.894531 175.425781 123.894531 C 175.542969 123.894531 175.636719 123.800781 175.636719 123.683594 Z M 175.636719 123.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 174.9375 125.917969 C 174.9375 125.800781 174.84375 125.707031 174.726562 125.707031 C 174.609375 125.707031 174.515625 125.800781 174.515625 125.917969 C 174.515625 126.035156 174.609375 126.128906 174.726562 126.128906 C 174.84375 126.128906 174.9375 126.035156 174.9375 125.917969 Z M 174.9375 125.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 171.203125 123.675781 C 171.203125 123.558594 171.109375 123.464844 170.992188 123.464844 C 170.875 123.464844 170.78125 123.558594 170.78125 123.675781 C 170.78125 123.792969 170.875 123.886719 170.992188 123.886719 C 171.109375 123.886719 171.203125 123.792969 171.203125 123.675781 Z M 171.203125 123.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 173.816406 124.539062 C 173.816406 124.421875 173.722656 124.328125 173.605469 124.328125 C 173.488281 124.328125 173.394531 124.421875 173.394531 124.539062 C 173.394531 124.65625 173.488281 124.75 173.605469 124.75 C 173.722656 124.75 173.816406 124.65625 173.816406 124.539062 Z M 173.816406 124.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.738281 126.175781 C 175.738281 126.058594 175.644531 125.964844 175.527344 125.964844 C 175.410156 125.964844 175.316406 126.058594 175.316406 126.175781 C 175.316406 126.292969 175.410156 126.386719 175.527344 126.386719 C 175.644531 126.386719 175.738281 126.292969 175.738281 126.175781 Z M 175.738281 126.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.3125 124.980469 C 175.3125 124.863281 175.21875 124.769531 175.101562 124.769531 C 174.984375 124.769531 174.890625 124.863281 174.890625 124.980469 C 174.890625 125.097656 174.984375 125.191406 175.101562 125.191406 C 175.21875 125.191406 175.3125 125.097656 175.3125 124.980469 Z M 175.3125 124.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 173.074219 123.992188 C 173.074219 123.875 172.980469 123.78125 172.863281 123.78125 C 172.746094 123.78125 172.652344 123.875 172.652344 123.992188 C 172.652344 124.109375 172.746094 124.203125 172.863281 124.203125 C 172.980469 124.203125 173.074219 124.109375 173.074219 123.992188 Z M 173.074219 123.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 172.730469 125.625 C 172.730469 125.507812 172.636719 125.414062 172.519531 125.414062 C 172.402344 125.414062 172.308594 125.507812 172.308594 125.625 C 172.308594 125.742188 172.402344 125.835938 172.519531 125.835938 C 172.636719 125.835938 172.730469 125.742188 172.730469 125.625 Z M 172.730469 125.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 173.738281 123.605469 C 173.738281 123.488281 173.644531 123.394531 173.527344 123.394531 C 173.410156 123.394531 173.316406 123.488281 173.316406 123.605469 C 173.316406 123.722656 173.410156 123.816406 173.527344 123.816406 C 173.644531 123.816406 173.738281 123.722656 173.738281 123.605469 Z M 173.738281 123.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 172.644531 121.382812 C 172.644531 121.265625 172.550781 121.171875 172.433594 121.171875 C 172.316406 121.171875 172.222656 121.265625 172.222656 121.382812 C 172.222656 121.5 172.316406 121.59375 172.433594 121.59375 C 172.550781 121.59375 172.644531 121.5 172.644531 121.382812 Z M 172.644531 121.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 176.066406 121.894531 C 176.066406 121.777344 175.972656 121.683594 175.855469 121.683594 C 175.738281 121.683594 175.644531 121.777344 175.644531 121.894531 C 175.644531 122.011719 175.738281 122.105469 175.855469 122.105469 C 175.972656 122.105469 176.066406 122.011719 176.066406 121.894531 Z M 176.066406 121.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 176.535156 126.191406 C 176.535156 126.074219 176.441406 125.980469 176.324219 125.980469 C 176.207031 125.980469 176.113281 126.074219 176.113281 126.191406 C 176.113281 126.308594 176.207031 126.402344 176.324219 126.402344 C 176.441406 126.402344 176.535156 126.308594 176.535156 126.191406 Z M 176.535156 126.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 170.484375 124.808594 C 170.484375 124.691406 170.390625 124.597656 170.273438 124.597656 C 170.15625 124.597656 170.0625 124.691406 170.0625 124.808594 C 170.0625 124.925781 170.15625 125.019531 170.273438 125.019531 C 170.390625 125.019531 170.484375 124.925781 170.484375 124.808594 Z M 170.484375 124.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 174.242188 125.929688 C 174.242188 125.8125 174.148438 125.71875 174.03125 125.71875 C 173.914062 125.71875 173.820312 125.8125 173.820312 125.929688 C 173.820312 126.046875 173.914062 126.140625 174.03125 126.140625 C 174.148438 126.140625 174.242188 126.046875 174.242188 125.929688 Z M 174.242188 125.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 173.589844 126.34375 C 173.589844 126.226562 173.496094 126.132812 173.378906 126.132812 C 173.261719 126.132812 173.167969 126.226562 173.167969 126.34375 C 173.167969 126.460938 173.261719 126.554688 173.378906 126.554688 C 173.496094 126.554688 173.589844 126.460938 173.589844 126.34375 Z M 173.589844 126.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 172.324219 128.15625 C 172.324219 128.039062 172.230469 127.945312 172.113281 127.945312 C 171.996094 127.945312 171.902344 128.039062 171.902344 128.15625 C 171.902344 128.273438 171.996094 128.367188 172.113281 128.367188 C 172.230469 128.367188 172.324219 128.273438 172.324219 128.15625 Z M 172.324219 128.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 171.699219 128.675781 C 171.699219 128.558594 171.605469 128.464844 171.488281 128.464844 C 171.371094 128.464844 171.277344 128.558594 171.277344 128.675781 C 171.277344 128.792969 171.371094 128.886719 171.488281 128.886719 C 171.605469 128.886719 171.699219 128.792969 171.699219 128.675781 Z M 171.699219 128.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 171.414062 125.941406 C 171.414062 125.824219 171.320312 125.730469 171.203125 125.730469 C 171.085938 125.730469 170.992188 125.824219 170.992188 125.941406 C 170.992188 126.058594 171.085938 126.152344 171.203125 126.152344 C 171.320312 126.152344 171.414062 126.058594 171.414062 125.941406 Z M 171.414062 125.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 170.84375 120.554688 C 170.84375 120.4375 170.75 120.34375 170.632812 120.34375 C 170.515625 120.34375 170.421875 120.4375 170.421875 120.554688 C 170.421875 120.671875 170.515625 120.765625 170.632812 120.765625 C 170.75 120.765625 170.84375 120.671875 170.84375 120.554688 Z M 170.84375 120.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 170.101562 121.25 C 170.101562 121.132812 170.007812 121.039062 169.890625 121.039062 C 169.773438 121.039062 169.679688 121.132812 169.679688 121.25 C 169.679688 121.367188 169.773438 121.460938 169.890625 121.460938 C 170.007812 121.460938 170.101562 121.367188 170.101562 121.25 Z M 170.101562 121.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 169.628906 122.972656 C 169.628906 122.855469 169.535156 122.761719 169.417969 122.761719 C 169.300781 122.761719 169.207031 122.855469 169.207031 122.972656 C 169.207031 123.089844 169.300781 123.183594 169.417969 123.183594 C 169.535156 123.183594 169.628906 123.089844 169.628906 122.972656 Z M 169.628906 122.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 167.476562 124.867188 C 167.476562 124.75 167.382812 124.65625 167.265625 124.65625 C 167.148438 124.65625 167.054688 124.75 167.054688 124.867188 C 167.054688 124.984375 167.148438 125.078125 167.265625 125.078125 C 167.382812 125.078125 167.476562 124.984375 167.476562 124.867188 Z M 167.476562 124.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 164.019531 126.9375 C 164.019531 126.820312 163.925781 126.726562 163.808594 126.726562 C 163.691406 126.726562 163.597656 126.820312 163.597656 126.9375 C 163.597656 127.054688 163.691406 127.148438 163.808594 127.148438 C 163.925781 127.148438 164.019531 127.054688 164.019531 126.9375 Z M 164.019531 126.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 163.382812 123.445312 C 163.382812 123.328125 163.289062 123.234375 163.171875 123.234375 C 163.054688 123.234375 162.960938 123.328125 162.960938 123.445312 C 162.960938 123.5625 163.054688 123.65625 163.171875 123.65625 C 163.289062 123.65625 163.382812 123.5625 163.382812 123.445312 Z M 163.382812 123.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 162.273438 125.171875 C 162.273438 125.054688 162.179688 124.960938 162.0625 124.960938 C 161.945312 124.960938 161.851562 125.054688 161.851562 125.171875 C 161.851562 125.289062 161.945312 125.382812 162.0625 125.382812 C 162.179688 125.382812 162.273438 125.289062 162.273438 125.171875 Z M 162.273438 125.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 161.058594 129.191406 C 161.058594 129.074219 160.964844 128.980469 160.847656 128.980469 C 160.730469 128.980469 160.636719 129.074219 160.636719 129.191406 C 160.636719 129.308594 160.730469 129.402344 160.847656 129.402344 C 160.964844 129.402344 161.058594 129.308594 161.058594 129.191406 Z M 161.058594 129.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 157.832031 129.109375 C 157.832031 128.992188 157.738281 128.898438 157.621094 128.898438 C 157.503906 128.898438 157.410156 128.992188 157.410156 129.109375 C 157.410156 129.226562 157.503906 129.320312 157.621094 129.320312 C 157.738281 129.320312 157.832031 129.226562 157.832031 129.109375 Z M 157.832031 129.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 162.484375 129.964844 C 162.484375 129.847656 162.390625 129.753906 162.273438 129.753906 C 162.15625 129.753906 162.0625 129.847656 162.0625 129.964844 C 162.0625 130.082031 162.15625 130.175781 162.273438 130.175781 C 162.390625 130.175781 162.484375 130.082031 162.484375 129.964844 Z M 162.484375 129.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 165.019531 129.148438 C 165.019531 129.03125 164.925781 128.9375 164.808594 128.9375 C 164.691406 128.9375 164.597656 129.03125 164.597656 129.148438 C 164.597656 129.265625 164.691406 129.359375 164.808594 129.359375 C 164.925781 129.359375 165.019531 129.265625 165.019531 129.148438 Z M 165.019531 129.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 164.238281 131.976562 C 164.238281 131.859375 164.144531 131.765625 164.027344 131.765625 C 163.910156 131.765625 163.816406 131.859375 163.816406 131.976562 C 163.816406 132.09375 163.910156 132.1875 164.027344 132.1875 C 164.144531 132.1875 164.238281 132.09375 164.238281 131.976562 Z M 164.238281 131.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 160.078125 133.859375 C 160.078125 133.742188 159.984375 133.648438 159.867188 133.648438 C 159.75 133.648438 159.65625 133.742188 159.65625 133.859375 C 159.65625 133.976562 159.75 134.070312 159.867188 134.070312 C 159.984375 134.070312 160.078125 133.976562 160.078125 133.859375 Z M 160.078125 133.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 159.820312 132.363281 C 159.820312 132.246094 159.726562 132.152344 159.609375 132.152344 C 159.492188 132.152344 159.398438 132.246094 159.398438 132.363281 C 159.398438 132.480469 159.492188 132.574219 159.609375 132.574219 C 159.726562 132.574219 159.820312 132.480469 159.820312 132.363281 Z M 159.820312 132.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 157.042969 132.019531 C 157.042969 131.902344 156.949219 131.808594 156.832031 131.808594 C 156.714844 131.808594 156.621094 131.902344 156.621094 132.019531 C 156.621094 132.136719 156.714844 132.230469 156.832031 132.230469 C 156.949219 132.230469 157.042969 132.136719 157.042969 132.019531 Z M 157.042969 132.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 156.898438 134.058594 C 156.898438 133.941406 156.804688 133.847656 156.6875 133.847656 C 156.570312 133.847656 156.476562 133.941406 156.476562 134.058594 C 156.476562 134.175781 156.570312 134.269531 156.6875 134.269531 C 156.804688 134.269531 156.898438 134.175781 156.898438 134.058594 Z M 156.898438 134.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 155.351562 135.136719 C 155.351562 135.019531 155.257812 134.925781 155.140625 134.925781 C 155.023438 134.925781 154.929688 135.019531 154.929688 135.136719 C 154.929688 135.253906 155.023438 135.347656 155.140625 135.347656 C 155.257812 135.347656 155.351562 135.253906 155.351562 135.136719 Z M 155.351562 135.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 159.417969 135.5625 C 159.417969 135.445312 159.324219 135.351562 159.207031 135.351562 C 159.089844 135.351562 158.996094 135.445312 158.996094 135.5625 C 158.996094 135.679688 159.089844 135.773438 159.207031 135.773438 C 159.324219 135.773438 159.417969 135.679688 159.417969 135.5625 Z M 159.417969 135.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 160.566406 136.015625 C 160.566406 135.898438 160.472656 135.804688 160.355469 135.804688 C 160.238281 135.804688 160.144531 135.898438 160.144531 136.015625 C 160.144531 136.132812 160.238281 136.226562 160.355469 136.226562 C 160.472656 136.226562 160.566406 136.132812 160.566406 136.015625 Z M 160.566406 136.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 162.296875 136.191406 C 162.296875 136.074219 162.203125 135.980469 162.085938 135.980469 C 161.96875 135.980469 161.875 136.074219 161.875 136.191406 C 161.875 136.308594 161.96875 136.402344 162.085938 136.402344 C 162.203125 136.402344 162.296875 136.308594 162.296875 136.191406 Z M 162.296875 136.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 161.363281 135.71875 C 161.363281 135.601562 161.269531 135.507812 161.152344 135.507812 C 161.035156 135.507812 160.941406 135.601562 160.941406 135.71875 C 160.941406 135.835938 161.035156 135.929688 161.152344 135.929688 C 161.269531 135.929688 161.363281 135.835938 161.363281 135.71875 Z M 161.363281 135.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 156.84375 136.003906 C 156.84375 135.886719 156.75 135.792969 156.632812 135.792969 C 156.515625 135.792969 156.421875 135.886719 156.421875 136.003906 C 156.421875 136.121094 156.515625 136.214844 156.632812 136.214844 C 156.75 136.214844 156.84375 136.121094 156.84375 136.003906 Z M 156.84375 136.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 156.777344 134.667969 C 156.777344 134.550781 156.683594 134.457031 156.566406 134.457031 C 156.449219 134.457031 156.355469 134.550781 156.355469 134.667969 C 156.355469 134.785156 156.449219 134.878906 156.566406 134.878906 C 156.683594 134.878906 156.777344 134.785156 156.777344 134.667969 Z M 156.777344 134.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 157.445312 133.625 C 157.445312 133.507812 157.351562 133.414062 157.234375 133.414062 C 157.117188 133.414062 157.023438 133.507812 157.023438 133.625 C 157.023438 133.742188 157.117188 133.835938 157.234375 133.835938 C 157.351562 133.835938 157.445312 133.742188 157.445312 133.625 Z M 157.445312 133.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 157.335938 134.878906 C 157.335938 134.761719 157.242188 134.667969 157.125 134.667969 C 157.007812 134.667969 156.914062 134.761719 156.914062 134.878906 C 156.914062 134.996094 157.007812 135.089844 157.125 135.089844 C 157.242188 135.089844 157.335938 134.996094 157.335938 134.878906 Z M 157.335938 134.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 160.210938 132.75 C 160.210938 132.632812 160.117188 132.539062 160 132.539062 C 159.882812 132.539062 159.789062 132.632812 159.789062 132.75 C 159.789062 132.867188 159.882812 132.960938 160 132.960938 C 160.117188 132.960938 160.210938 132.867188 160.210938 132.75 Z M 160.210938 132.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 159.550781 132.605469 C 159.550781 132.488281 159.457031 132.394531 159.339844 132.394531 C 159.222656 132.394531 159.128906 132.488281 159.128906 132.605469 C 159.128906 132.722656 159.222656 132.816406 159.339844 132.816406 C 159.457031 132.816406 159.550781 132.722656 159.550781 132.605469 Z M 159.550781 132.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 160.929688 130.632812 C 160.929688 130.515625 160.835938 130.421875 160.71875 130.421875 C 160.601562 130.421875 160.507812 130.515625 160.507812 130.632812 C 160.507812 130.75 160.601562 130.84375 160.71875 130.84375 C 160.835938 130.84375 160.929688 130.75 160.929688 130.632812 Z M 160.929688 130.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 160.695312 134.757812 C 160.695312 134.640625 160.601562 134.546875 160.484375 134.546875 C 160.367188 134.546875 160.273438 134.640625 160.273438 134.757812 C 160.273438 134.875 160.367188 134.96875 160.484375 134.96875 C 160.601562 134.96875 160.695312 134.875 160.695312 134.757812 Z M 160.695312 134.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 160.082031 132.964844 C 160.082031 132.847656 159.988281 132.753906 159.871094 132.753906 C 159.753906 132.753906 159.660156 132.847656 159.660156 132.964844 C 159.660156 133.082031 159.753906 133.175781 159.871094 133.175781 C 159.988281 133.175781 160.082031 133.082031 160.082031 132.964844 Z M 160.082031 132.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 160.183594 134.921875 C 160.183594 134.804688 160.089844 134.710938 159.972656 134.710938 C 159.855469 134.710938 159.761719 134.804688 159.761719 134.921875 C 159.761719 135.039062 159.855469 135.132812 159.972656 135.132812 C 160.089844 135.132812 160.183594 135.039062 160.183594 134.921875 Z M 160.183594 134.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 161.269531 136.804688 C 161.269531 136.6875 161.175781 136.59375 161.058594 136.59375 C 160.941406 136.59375 160.847656 136.6875 160.847656 136.804688 C 160.847656 136.921875 160.941406 137.015625 161.058594 137.015625 C 161.175781 137.015625 161.269531 136.921875 161.269531 136.804688 Z M 161.269531 136.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 159.902344 138.246094 C 159.902344 138.128906 159.808594 138.035156 159.691406 138.035156 C 159.574219 138.035156 159.480469 138.128906 159.480469 138.246094 C 159.480469 138.363281 159.574219 138.457031 159.691406 138.457031 C 159.808594 138.457031 159.902344 138.363281 159.902344 138.246094 Z M 159.902344 138.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 161.503906 137.402344 C 161.503906 137.285156 161.410156 137.191406 161.292969 137.191406 C 161.175781 137.191406 161.082031 137.285156 161.082031 137.402344 C 161.082031 137.519531 161.175781 137.613281 161.292969 137.613281 C 161.410156 137.613281 161.503906 137.519531 161.503906 137.402344 Z M 161.503906 137.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 164.457031 140.1875 C 164.457031 140.070312 164.363281 139.976562 164.246094 139.976562 C 164.128906 139.976562 164.035156 140.070312 164.035156 140.1875 C 164.035156 140.304688 164.128906 140.398438 164.246094 140.398438 C 164.363281 140.398438 164.457031 140.304688 164.457031 140.1875 Z M 164.457031 140.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 166.035156 143.398438 C 166.035156 143.28125 165.941406 143.1875 165.824219 143.1875 C 165.707031 143.1875 165.613281 143.28125 165.613281 143.398438 C 165.613281 143.515625 165.707031 143.609375 165.824219 143.609375 C 165.941406 143.609375 166.035156 143.515625 166.035156 143.398438 Z M 166.035156 143.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 162.84375 146.367188 C 162.84375 146.25 162.75 146.15625 162.632812 146.15625 C 162.515625 146.15625 162.421875 146.25 162.421875 146.367188 C 162.421875 146.484375 162.515625 146.578125 162.632812 146.578125 C 162.75 146.578125 162.84375 146.484375 162.84375 146.367188 Z M 162.84375 146.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 163.535156 146.003906 C 163.535156 145.886719 163.441406 145.792969 163.324219 145.792969 C 163.207031 145.792969 163.113281 145.886719 163.113281 146.003906 C 163.113281 146.121094 163.207031 146.214844 163.324219 146.214844 C 163.441406 146.214844 163.535156 146.121094 163.535156 146.003906 Z M 163.535156 146.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 167.03125 142.867188 C 167.03125 142.75 166.9375 142.65625 166.820312 142.65625 C 166.703125 142.65625 166.609375 142.75 166.609375 142.867188 C 166.609375 142.984375 166.703125 143.078125 166.820312 143.078125 C 166.9375 143.078125 167.03125 142.984375 167.03125 142.867188 Z M 167.03125 142.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 168.25 141.910156 C 168.25 141.792969 168.15625 141.699219 168.039062 141.699219 C 167.921875 141.699219 167.828125 141.792969 167.828125 141.910156 C 167.828125 142.027344 167.921875 142.121094 168.039062 142.121094 C 168.15625 142.121094 168.25 142.027344 168.25 141.910156 Z M 168.25 141.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 168.636719 141.613281 C 168.636719 141.496094 168.542969 141.402344 168.425781 141.402344 C 168.308594 141.402344 168.214844 141.496094 168.214844 141.613281 C 168.214844 141.730469 168.308594 141.824219 168.425781 141.824219 C 168.542969 141.824219 168.636719 141.730469 168.636719 141.613281 Z M 168.636719 141.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 169.992188 140.714844 C 169.992188 140.597656 169.898438 140.503906 169.78125 140.503906 C 169.664062 140.503906 169.570312 140.597656 169.570312 140.714844 C 169.570312 140.832031 169.664062 140.925781 169.78125 140.925781 C 169.898438 140.925781 169.992188 140.832031 169.992188 140.714844 Z M 169.992188 140.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 169.394531 136.71875 C 169.394531 136.601562 169.300781 136.507812 169.183594 136.507812 C 169.066406 136.507812 168.972656 136.601562 168.972656 136.71875 C 168.972656 136.835938 169.066406 136.929688 169.183594 136.929688 C 169.300781 136.929688 169.394531 136.835938 169.394531 136.71875 Z M 169.394531 136.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 168.832031 138.347656 C 168.832031 138.230469 168.738281 138.136719 168.621094 138.136719 C 168.503906 138.136719 168.410156 138.230469 168.410156 138.347656 C 168.410156 138.464844 168.503906 138.558594 168.621094 138.558594 C 168.738281 138.558594 168.832031 138.464844 168.832031 138.347656 Z M 168.832031 138.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 170.988281 141.035156 C 170.988281 140.917969 170.894531 140.824219 170.777344 140.824219 C 170.660156 140.824219 170.566406 140.917969 170.566406 141.035156 C 170.566406 141.152344 170.660156 141.246094 170.777344 141.246094 C 170.894531 141.246094 170.988281 141.152344 170.988281 141.035156 Z M 170.988281 141.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 171.320312 140.371094 C 171.320312 140.253906 171.226562 140.160156 171.109375 140.160156 C 170.992188 140.160156 170.898438 140.253906 170.898438 140.371094 C 170.898438 140.488281 170.992188 140.582031 171.109375 140.582031 C 171.226562 140.582031 171.320312 140.488281 171.320312 140.371094 Z M 171.320312 140.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 174.714844 141.199219 C 174.714844 141.082031 174.621094 140.988281 174.503906 140.988281 C 174.386719 140.988281 174.292969 141.082031 174.292969 141.199219 C 174.292969 141.316406 174.386719 141.410156 174.503906 141.410156 C 174.621094 141.410156 174.714844 141.316406 174.714844 141.199219 Z M 174.714844 141.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 176.289062 138.867188 C 176.289062 138.75 176.195312 138.65625 176.078125 138.65625 C 175.960938 138.65625 175.867188 138.75 175.867188 138.867188 C 175.867188 138.984375 175.960938 139.078125 176.078125 139.078125 C 176.195312 139.078125 176.289062 138.984375 176.289062 138.867188 Z M 176.289062 138.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 177.046875 135.105469 C 177.046875 134.988281 176.953125 134.894531 176.835938 134.894531 C 176.71875 134.894531 176.625 134.988281 176.625 135.105469 C 176.625 135.222656 176.71875 135.316406 176.835938 135.316406 C 176.953125 135.316406 177.046875 135.222656 177.046875 135.105469 Z M 177.046875 135.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 176.625 134.046875 C 176.625 133.929688 176.53125 133.835938 176.414062 133.835938 C 176.296875 133.835938 176.203125 133.929688 176.203125 134.046875 C 176.203125 134.164062 176.296875 134.257812 176.414062 134.257812 C 176.53125 134.257812 176.625 134.164062 176.625 134.046875 Z M 176.625 134.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 179.742188 133.117188 C 179.742188 133 179.648438 132.90625 179.53125 132.90625 C 179.414062 132.90625 179.320312 133 179.320312 133.117188 C 179.320312 133.234375 179.414062 133.328125 179.53125 133.328125 C 179.648438 133.328125 179.742188 133.234375 179.742188 133.117188 Z M 179.742188 133.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.355469 135.488281 C 182.355469 135.371094 182.261719 135.277344 182.144531 135.277344 C 182.027344 135.277344 181.933594 135.371094 181.933594 135.488281 C 181.933594 135.605469 182.027344 135.699219 182.144531 135.699219 C 182.261719 135.699219 182.355469 135.605469 182.355469 135.488281 Z M 182.355469 135.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.617188 136.609375 C 182.617188 136.492188 182.523438 136.398438 182.40625 136.398438 C 182.289062 136.398438 182.195312 136.492188 182.195312 136.609375 C 182.195312 136.726562 182.289062 136.820312 182.40625 136.820312 C 182.523438 136.820312 182.617188 136.726562 182.617188 136.609375 Z M 182.617188 136.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.511719 139.15625 C 183.511719 139.039062 183.417969 138.945312 183.300781 138.945312 C 183.183594 138.945312 183.089844 139.039062 183.089844 139.15625 C 183.089844 139.273438 183.183594 139.367188 183.300781 139.367188 C 183.417969 139.367188 183.511719 139.273438 183.511719 139.15625 Z M 183.511719 139.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.152344 139.628906 C 183.152344 139.511719 183.058594 139.417969 182.941406 139.417969 C 182.824219 139.417969 182.730469 139.511719 182.730469 139.628906 C 182.730469 139.746094 182.824219 139.839844 182.941406 139.839844 C 183.058594 139.839844 183.152344 139.746094 183.152344 139.628906 Z M 183.152344 139.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.632812 139.984375 C 181.632812 139.867188 181.539062 139.773438 181.421875 139.773438 C 181.304688 139.773438 181.210938 139.867188 181.210938 139.984375 C 181.210938 140.101562 181.304688 140.195312 181.421875 140.195312 C 181.539062 140.195312 181.632812 140.101562 181.632812 139.984375 Z M 181.632812 139.984375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.335938 138.207031 C 182.335938 138.089844 182.242188 137.996094 182.125 137.996094 C 182.007812 137.996094 181.914062 138.089844 181.914062 138.207031 C 181.914062 138.324219 182.007812 138.417969 182.125 138.417969 C 182.242188 138.417969 182.335938 138.324219 182.335938 138.207031 Z M 182.335938 138.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 180.828125 138.535156 C 180.828125 138.417969 180.734375 138.324219 180.617188 138.324219 C 180.5 138.324219 180.40625 138.417969 180.40625 138.535156 C 180.40625 138.652344 180.5 138.746094 180.617188 138.746094 C 180.734375 138.746094 180.828125 138.652344 180.828125 138.535156 Z M 180.828125 138.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.710938 137.585938 C 181.710938 137.46875 181.617188 137.375 181.5 137.375 C 181.382812 137.375 181.289062 137.46875 181.289062 137.585938 C 181.289062 137.703125 181.382812 137.796875 181.5 137.796875 C 181.617188 137.796875 181.710938 137.703125 181.710938 137.585938 Z M 181.710938 137.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.296875 134.285156 C 183.296875 134.167969 183.203125 134.074219 183.085938 134.074219 C 182.96875 134.074219 182.875 134.167969 182.875 134.285156 C 182.875 134.402344 182.96875 134.496094 183.085938 134.496094 C 183.203125 134.496094 183.296875 134.402344 183.296875 134.285156 Z M 183.296875 134.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.527344 134.660156 C 183.527344 134.542969 183.433594 134.449219 183.316406 134.449219 C 183.199219 134.449219 183.105469 134.542969 183.105469 134.660156 C 183.105469 134.777344 183.199219 134.871094 183.316406 134.871094 C 183.433594 134.871094 183.527344 134.777344 183.527344 134.660156 Z M 183.527344 134.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.625 133.359375 C 187.625 133.242188 187.53125 133.148438 187.414062 133.148438 C 187.296875 133.148438 187.203125 133.242188 187.203125 133.359375 C 187.203125 133.476562 187.296875 133.570312 187.414062 133.570312 C 187.53125 133.570312 187.625 133.476562 187.625 133.359375 Z M 187.625 133.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.699219 130.769531 C 185.699219 130.652344 185.605469 130.558594 185.488281 130.558594 C 185.371094 130.558594 185.277344 130.652344 185.277344 130.769531 C 185.277344 130.886719 185.371094 130.980469 185.488281 130.980469 C 185.605469 130.980469 185.699219 130.886719 185.699219 130.769531 Z M 185.699219 130.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.691406 132.703125 C 187.691406 132.585938 187.597656 132.492188 187.480469 132.492188 C 187.363281 132.492188 187.269531 132.585938 187.269531 132.703125 C 187.269531 132.820312 187.363281 132.914062 187.480469 132.914062 C 187.597656 132.914062 187.691406 132.820312 187.691406 132.703125 Z M 187.691406 132.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.144531 130.882812 C 189.144531 130.765625 189.050781 130.671875 188.933594 130.671875 C 188.816406 130.671875 188.722656 130.765625 188.722656 130.882812 C 188.722656 131 188.816406 131.09375 188.933594 131.09375 C 189.050781 131.09375 189.144531 131 189.144531 130.882812 Z M 189.144531 130.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.394531 130.738281 C 191.394531 130.621094 191.300781 130.527344 191.183594 130.527344 C 191.066406 130.527344 190.972656 130.621094 190.972656 130.738281 C 190.972656 130.855469 191.066406 130.949219 191.183594 130.949219 C 191.300781 130.949219 191.394531 130.855469 191.394531 130.738281 Z M 191.394531 130.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.90625 130.75 C 192.90625 130.632812 192.8125 130.539062 192.695312 130.539062 C 192.578125 130.539062 192.484375 130.632812 192.484375 130.75 C 192.484375 130.867188 192.578125 130.960938 192.695312 130.960938 C 192.8125 130.960938 192.90625 130.867188 192.90625 130.75 Z M 192.90625 130.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.453125 129.136719 C 193.453125 129.019531 193.359375 128.925781 193.242188 128.925781 C 193.125 128.925781 193.03125 129.019531 193.03125 129.136719 C 193.03125 129.253906 193.125 129.347656 193.242188 129.347656 C 193.359375 129.347656 193.453125 129.253906 193.453125 129.136719 Z M 193.453125 129.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.582031 131.046875 C 191.582031 130.929688 191.488281 130.835938 191.371094 130.835938 C 191.253906 130.835938 191.160156 130.929688 191.160156 131.046875 C 191.160156 131.164062 191.253906 131.257812 191.371094 131.257812 C 191.488281 131.257812 191.582031 131.164062 191.582031 131.046875 Z M 191.582031 131.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 193.640625 128.660156 C 193.640625 128.542969 193.546875 128.449219 193.429688 128.449219 C 193.3125 128.449219 193.21875 128.542969 193.21875 128.660156 C 193.21875 128.777344 193.3125 128.871094 193.429688 128.871094 C 193.546875 128.871094 193.640625 128.777344 193.640625 128.660156 Z M 193.640625 128.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.167969 126.914062 C 194.167969 126.796875 194.074219 126.703125 193.957031 126.703125 C 193.839844 126.703125 193.746094 126.796875 193.746094 126.914062 C 193.746094 127.03125 193.839844 127.125 193.957031 127.125 C 194.074219 127.125 194.167969 127.03125 194.167969 126.914062 Z M 194.167969 126.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.269531 127.914062 C 191.269531 127.796875 191.175781 127.703125 191.058594 127.703125 C 190.941406 127.703125 190.847656 127.796875 190.847656 127.914062 C 190.847656 128.03125 190.941406 128.125 191.058594 128.125 C 191.175781 128.125 191.269531 128.03125 191.269531 127.914062 Z M 191.269531 127.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.199219 126.886719 C 187.199219 126.769531 187.105469 126.675781 186.988281 126.675781 C 186.871094 126.675781 186.777344 126.769531 186.777344 126.886719 C 186.777344 127.003906 186.871094 127.097656 186.988281 127.097656 C 187.105469 127.097656 187.199219 127.003906 187.199219 126.886719 Z M 187.199219 126.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.792969 130.757812 C 186.792969 130.640625 186.699219 130.546875 186.582031 130.546875 C 186.464844 130.546875 186.371094 130.640625 186.371094 130.757812 C 186.371094 130.875 186.464844 130.96875 186.582031 130.96875 C 186.699219 130.96875 186.792969 130.875 186.792969 130.757812 Z M 186.792969 130.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.460938 131.644531 C 186.460938 131.527344 186.367188 131.433594 186.25 131.433594 C 186.132812 131.433594 186.039062 131.527344 186.039062 131.644531 C 186.039062 131.761719 186.132812 131.855469 186.25 131.855469 C 186.367188 131.855469 186.460938 131.761719 186.460938 131.644531 Z M 186.460938 131.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.253906 131.789062 C 185.253906 131.671875 185.160156 131.578125 185.042969 131.578125 C 184.925781 131.578125 184.832031 131.671875 184.832031 131.789062 C 184.832031 131.90625 184.925781 132 185.042969 132 C 185.160156 132 185.253906 131.90625 185.253906 131.789062 Z M 185.253906 131.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.476562 135.085938 C 188.476562 134.96875 188.382812 134.875 188.265625 134.875 C 188.148438 134.875 188.054688 134.96875 188.054688 135.085938 C 188.054688 135.203125 188.148438 135.296875 188.265625 135.296875 C 188.382812 135.296875 188.476562 135.203125 188.476562 135.085938 Z M 188.476562 135.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.671875 140.441406 C 188.671875 140.324219 188.578125 140.230469 188.460938 140.230469 C 188.34375 140.230469 188.25 140.324219 188.25 140.441406 C 188.25 140.558594 188.34375 140.652344 188.460938 140.652344 C 188.578125 140.652344 188.671875 140.558594 188.671875 140.441406 Z M 188.671875 140.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.078125 141.414062 C 190.078125 141.296875 189.984375 141.203125 189.867188 141.203125 C 189.75 141.203125 189.65625 141.296875 189.65625 141.414062 C 189.65625 141.53125 189.75 141.625 189.867188 141.625 C 189.984375 141.625 190.078125 141.53125 190.078125 141.414062 Z M 190.078125 141.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.875 140.023438 C 192.875 139.90625 192.78125 139.8125 192.664062 139.8125 C 192.546875 139.8125 192.453125 139.90625 192.453125 140.023438 C 192.453125 140.140625 192.546875 140.234375 192.664062 140.234375 C 192.78125 140.234375 192.875 140.140625 192.875 140.023438 Z M 192.875 140.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.277344 139.148438 C 195.277344 139.03125 195.183594 138.9375 195.066406 138.9375 C 194.949219 138.9375 194.855469 139.03125 194.855469 139.148438 C 194.855469 139.265625 194.949219 139.359375 195.066406 139.359375 C 195.183594 139.359375 195.277344 139.265625 195.277344 139.148438 Z M 195.277344 139.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.789062 138.628906 C 192.789062 138.511719 192.695312 138.417969 192.578125 138.417969 C 192.460938 138.417969 192.367188 138.511719 192.367188 138.628906 C 192.367188 138.746094 192.460938 138.839844 192.578125 138.839844 C 192.695312 138.839844 192.789062 138.746094 192.789062 138.628906 Z M 192.789062 138.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.269531 136.046875 C 188.269531 135.929688 188.175781 135.835938 188.058594 135.835938 C 187.941406 135.835938 187.847656 135.929688 187.847656 136.046875 C 187.847656 136.164062 187.941406 136.257812 188.058594 136.257812 C 188.175781 136.257812 188.269531 136.164062 188.269531 136.046875 Z M 188.269531 136.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.410156 133.207031 C 189.410156 133.089844 189.316406 132.996094 189.199219 132.996094 C 189.082031 132.996094 188.988281 133.089844 188.988281 133.207031 C 188.988281 133.324219 189.082031 133.417969 189.199219 133.417969 C 189.316406 133.417969 189.410156 133.324219 189.410156 133.207031 Z M 189.410156 133.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.023438 135.777344 C 189.023438 135.660156 188.929688 135.566406 188.8125 135.566406 C 188.695312 135.566406 188.601562 135.660156 188.601562 135.777344 C 188.601562 135.894531 188.695312 135.988281 188.8125 135.988281 C 188.929688 135.988281 189.023438 135.894531 189.023438 135.777344 Z M 189.023438 135.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.425781 137.269531 C 188.425781 137.152344 188.332031 137.058594 188.214844 137.058594 C 188.097656 137.058594 188.003906 137.152344 188.003906 137.269531 C 188.003906 137.386719 188.097656 137.480469 188.214844 137.480469 C 188.332031 137.480469 188.425781 137.386719 188.425781 137.269531 Z M 188.425781 137.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.5 134.847656 C 187.5 134.730469 187.40625 134.636719 187.289062 134.636719 C 187.171875 134.636719 187.078125 134.730469 187.078125 134.847656 C 187.078125 134.964844 187.171875 135.058594 187.289062 135.058594 C 187.40625 135.058594 187.5 134.964844 187.5 134.847656 Z M 187.5 134.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.601562 135.335938 C 188.601562 135.21875 188.507812 135.125 188.390625 135.125 C 188.273438 135.125 188.179688 135.21875 188.179688 135.335938 C 188.179688 135.453125 188.273438 135.546875 188.390625 135.546875 C 188.507812 135.546875 188.601562 135.453125 188.601562 135.335938 Z M 188.601562 135.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.9375 133.855469 C 190.9375 133.738281 190.84375 133.644531 190.726562 133.644531 C 190.609375 133.644531 190.515625 133.738281 190.515625 133.855469 C 190.515625 133.972656 190.609375 134.066406 190.726562 134.066406 C 190.84375 134.066406 190.9375 133.972656 190.9375 133.855469 Z M 190.9375 133.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.222656 134.542969 C 190.222656 134.425781 190.128906 134.332031 190.011719 134.332031 C 189.894531 134.332031 189.800781 134.425781 189.800781 134.542969 C 189.800781 134.660156 189.894531 134.753906 190.011719 134.753906 C 190.128906 134.753906 190.222656 134.660156 190.222656 134.542969 Z M 190.222656 134.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.476562 134.453125 C 190.476562 134.335938 190.382812 134.242188 190.265625 134.242188 C 190.148438 134.242188 190.054688 134.335938 190.054688 134.453125 C 190.054688 134.570312 190.148438 134.664062 190.265625 134.664062 C 190.382812 134.664062 190.476562 134.570312 190.476562 134.453125 Z M 190.476562 134.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.699219 133.222656 C 190.699219 133.105469 190.605469 133.011719 190.488281 133.011719 C 190.371094 133.011719 190.277344 133.105469 190.277344 133.222656 C 190.277344 133.339844 190.371094 133.433594 190.488281 133.433594 C 190.605469 133.433594 190.699219 133.339844 190.699219 133.222656 Z M 190.699219 133.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.496094 131.894531 C 194.496094 131.777344 194.402344 131.683594 194.285156 131.683594 C 194.167969 131.683594 194.074219 131.777344 194.074219 131.894531 C 194.074219 132.011719 194.167969 132.105469 194.285156 132.105469 C 194.402344 132.105469 194.496094 132.011719 194.496094 131.894531 Z M 194.496094 131.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.289062 134.207031 C 194.289062 134.089844 194.195312 133.996094 194.078125 133.996094 C 193.960938 133.996094 193.867188 134.089844 193.867188 134.207031 C 193.867188 134.324219 193.960938 134.417969 194.078125 134.417969 C 194.195312 134.417969 194.289062 134.324219 194.289062 134.207031 Z M 194.289062 134.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.414062 133.609375 C 194.414062 133.492188 194.320312 133.398438 194.203125 133.398438 C 194.085938 133.398438 193.992188 133.492188 193.992188 133.609375 C 193.992188 133.726562 194.085938 133.820312 194.203125 133.820312 C 194.320312 133.820312 194.414062 133.726562 194.414062 133.609375 Z M 194.414062 133.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.339844 134.195312 C 195.339844 134.078125 195.246094 133.984375 195.128906 133.984375 C 195.011719 133.984375 194.917969 134.078125 194.917969 134.195312 C 194.917969 134.3125 195.011719 134.40625 195.128906 134.40625 C 195.246094 134.40625 195.339844 134.3125 195.339844 134.195312 Z M 195.339844 134.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.019531 133.0625 C 199.019531 132.945312 198.925781 132.851562 198.808594 132.851562 C 198.691406 132.851562 198.597656 132.945312 198.597656 133.0625 C 198.597656 133.179688 198.691406 133.273438 198.808594 133.273438 C 198.925781 133.273438 199.019531 133.179688 199.019531 133.0625 Z M 199.019531 133.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.558594 132.335938 C 197.558594 132.21875 197.464844 132.125 197.347656 132.125 C 197.230469 132.125 197.136719 132.21875 197.136719 132.335938 C 197.136719 132.453125 197.230469 132.546875 197.347656 132.546875 C 197.464844 132.546875 197.558594 132.453125 197.558594 132.335938 Z M 197.558594 132.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.542969 131.894531 C 198.542969 131.777344 198.449219 131.683594 198.332031 131.683594 C 198.214844 131.683594 198.121094 131.777344 198.121094 131.894531 C 198.121094 132.011719 198.214844 132.105469 198.332031 132.105469 C 198.449219 132.105469 198.542969 132.011719 198.542969 131.894531 Z M 198.542969 131.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.953125 131.878906 C 201.953125 131.761719 201.859375 131.667969 201.742188 131.667969 C 201.625 131.667969 201.53125 131.761719 201.53125 131.878906 C 201.53125 131.996094 201.625 132.089844 201.742188 132.089844 C 201.859375 132.089844 201.953125 131.996094 201.953125 131.878906 Z M 201.953125 131.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.375 129.445312 C 201.375 129.328125 201.28125 129.234375 201.164062 129.234375 C 201.046875 129.234375 200.953125 129.328125 200.953125 129.445312 C 200.953125 129.5625 201.046875 129.65625 201.164062 129.65625 C 201.28125 129.65625 201.375 129.5625 201.375 129.445312 Z M 201.375 129.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.589844 131.039062 C 201.589844 130.921875 201.496094 130.828125 201.378906 130.828125 C 201.261719 130.828125 201.167969 130.921875 201.167969 131.039062 C 201.167969 131.15625 201.261719 131.25 201.378906 131.25 C 201.496094 131.25 201.589844 131.15625 201.589844 131.039062 Z M 201.589844 131.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.605469 130.714844 C 202.605469 130.597656 202.511719 130.503906 202.394531 130.503906 C 202.277344 130.503906 202.183594 130.597656 202.183594 130.714844 C 202.183594 130.832031 202.277344 130.925781 202.394531 130.925781 C 202.511719 130.925781 202.605469 130.832031 202.605469 130.714844 Z M 202.605469 130.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.96875 133.101562 C 203.96875 132.984375 203.875 132.890625 203.757812 132.890625 C 203.640625 132.890625 203.546875 132.984375 203.546875 133.101562 C 203.546875 133.21875 203.640625 133.3125 203.757812 133.3125 C 203.875 133.3125 203.96875 133.21875 203.96875 133.101562 Z M 203.96875 133.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.5 126.335938 C 204.5 126.21875 204.40625 126.125 204.289062 126.125 C 204.171875 126.125 204.078125 126.21875 204.078125 126.335938 C 204.078125 126.453125 204.171875 126.546875 204.289062 126.546875 C 204.40625 126.546875 204.5 126.453125 204.5 126.335938 Z M 204.5 126.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.253906 126.457031 C 204.253906 126.339844 204.160156 126.246094 204.042969 126.246094 C 203.925781 126.246094 203.832031 126.339844 203.832031 126.457031 C 203.832031 126.574219 203.925781 126.667969 204.042969 126.667969 C 204.160156 126.667969 204.253906 126.574219 204.253906 126.457031 Z M 204.253906 126.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.03125 129.757812 C 205.03125 129.640625 204.9375 129.546875 204.820312 129.546875 C 204.703125 129.546875 204.609375 129.640625 204.609375 129.757812 C 204.609375 129.875 204.703125 129.96875 204.820312 129.96875 C 204.9375 129.96875 205.03125 129.875 205.03125 129.757812 Z M 205.03125 129.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.699219 129.621094 C 203.699219 129.503906 203.605469 129.410156 203.488281 129.410156 C 203.371094 129.410156 203.277344 129.503906 203.277344 129.621094 C 203.277344 129.738281 203.371094 129.832031 203.488281 129.832031 C 203.605469 129.832031 203.699219 129.738281 203.699219 129.621094 Z M 203.699219 129.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.414062 129.074219 C 204.414062 128.957031 204.320312 128.863281 204.203125 128.863281 C 204.085938 128.863281 203.992188 128.957031 203.992188 129.074219 C 203.992188 129.191406 204.085938 129.285156 204.203125 129.285156 C 204.320312 129.285156 204.414062 129.191406 204.414062 129.074219 Z M 204.414062 129.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.292969 128.515625 C 203.292969 128.398438 203.199219 128.304688 203.082031 128.304688 C 202.964844 128.304688 202.871094 128.398438 202.871094 128.515625 C 202.871094 128.632812 202.964844 128.726562 203.082031 128.726562 C 203.199219 128.726562 203.292969 128.632812 203.292969 128.515625 Z M 203.292969 128.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.261719 131.667969 C 202.261719 131.550781 202.167969 131.457031 202.050781 131.457031 C 201.933594 131.457031 201.839844 131.550781 201.839844 131.667969 C 201.839844 131.785156 201.933594 131.878906 202.050781 131.878906 C 202.167969 131.878906 202.261719 131.785156 202.261719 131.667969 Z M 202.261719 131.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.984375 131.816406 C 202.984375 131.699219 202.890625 131.605469 202.773438 131.605469 C 202.65625 131.605469 202.5625 131.699219 202.5625 131.816406 C 202.5625 131.933594 202.65625 132.027344 202.773438 132.027344 C 202.890625 132.027344 202.984375 131.933594 202.984375 131.816406 Z M 202.984375 131.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.785156 134.554688 C 203.785156 134.4375 203.691406 134.34375 203.574219 134.34375 C 203.457031 134.34375 203.363281 134.4375 203.363281 134.554688 C 203.363281 134.671875 203.457031 134.765625 203.574219 134.765625 C 203.691406 134.765625 203.785156 134.671875 203.785156 134.554688 Z M 203.785156 134.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.1875 131.785156 C 204.1875 131.667969 204.09375 131.574219 203.976562 131.574219 C 203.859375 131.574219 203.765625 131.667969 203.765625 131.785156 C 203.765625 131.902344 203.859375 131.996094 203.976562 131.996094 C 204.09375 131.996094 204.1875 131.902344 204.1875 131.785156 Z M 204.1875 131.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.105469 133.445312 C 199.105469 133.328125 199.011719 133.234375 198.894531 133.234375 C 198.777344 133.234375 198.683594 133.328125 198.683594 133.445312 C 198.683594 133.5625 198.777344 133.65625 198.894531 133.65625 C 199.011719 133.65625 199.105469 133.5625 199.105469 133.445312 Z M 199.105469 133.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.976562 130.78125 C 194.976562 130.664062 194.882812 130.570312 194.765625 130.570312 C 194.648438 130.570312 194.554688 130.664062 194.554688 130.78125 C 194.554688 130.898438 194.648438 130.992188 194.765625 130.992188 C 194.882812 130.992188 194.976562 130.898438 194.976562 130.78125 Z M 194.976562 130.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.808594 129.019531 C 194.808594 128.902344 194.714844 128.808594 194.597656 128.808594 C 194.480469 128.808594 194.386719 128.902344 194.386719 129.019531 C 194.386719 129.136719 194.480469 129.230469 194.597656 129.230469 C 194.714844 129.230469 194.808594 129.136719 194.808594 129.019531 Z M 194.808594 129.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.691406 133.3125 C 195.691406 133.195312 195.597656 133.101562 195.480469 133.101562 C 195.363281 133.101562 195.269531 133.195312 195.269531 133.3125 C 195.269531 133.429688 195.363281 133.523438 195.480469 133.523438 C 195.597656 133.523438 195.691406 133.429688 195.691406 133.3125 Z M 195.691406 133.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.613281 131.742188 C 196.613281 131.625 196.519531 131.53125 196.402344 131.53125 C 196.285156 131.53125 196.191406 131.625 196.191406 131.742188 C 196.191406 131.859375 196.285156 131.953125 196.402344 131.953125 C 196.519531 131.953125 196.613281 131.859375 196.613281 131.742188 Z M 196.613281 131.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.265625 135.601562 C 196.265625 135.484375 196.171875 135.390625 196.054688 135.390625 C 195.9375 135.390625 195.84375 135.484375 195.84375 135.601562 C 195.84375 135.71875 195.9375 135.8125 196.054688 135.8125 C 196.171875 135.8125 196.265625 135.71875 196.265625 135.601562 Z M 196.265625 135.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.707031 132.390625 C 198.707031 132.273438 198.613281 132.179688 198.496094 132.179688 C 198.378906 132.179688 198.285156 132.273438 198.285156 132.390625 C 198.285156 132.507812 198.378906 132.601562 198.496094 132.601562 C 198.613281 132.601562 198.707031 132.507812 198.707031 132.390625 Z M 198.707031 132.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.539062 132.671875 C 198.539062 132.554688 198.445312 132.460938 198.328125 132.460938 C 198.210938 132.460938 198.117188 132.554688 198.117188 132.671875 C 198.117188 132.789062 198.210938 132.882812 198.328125 132.882812 C 198.445312 132.882812 198.539062 132.789062 198.539062 132.671875 Z M 198.539062 132.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.058594 131.796875 C 196.058594 131.679688 195.964844 131.585938 195.847656 131.585938 C 195.730469 131.585938 195.636719 131.679688 195.636719 131.796875 C 195.636719 131.914062 195.730469 132.007812 195.847656 132.007812 C 195.964844 132.007812 196.058594 131.914062 196.058594 131.796875 Z M 196.058594 131.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.761719 132.273438 C 199.761719 132.15625 199.667969 132.0625 199.550781 132.0625 C 199.433594 132.0625 199.339844 132.15625 199.339844 132.273438 C 199.339844 132.390625 199.433594 132.484375 199.550781 132.484375 C 199.667969 132.484375 199.761719 132.390625 199.761719 132.273438 Z M 199.761719 132.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.183594 130.511719 C 202.183594 130.394531 202.089844 130.300781 201.972656 130.300781 C 201.855469 130.300781 201.761719 130.394531 201.761719 130.511719 C 201.761719 130.628906 201.855469 130.722656 201.972656 130.722656 C 202.089844 130.722656 202.183594 130.628906 202.183594 130.511719 Z M 202.183594 130.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.898438 129.246094 C 203.898438 129.128906 203.804688 129.035156 203.6875 129.035156 C 203.570312 129.035156 203.476562 129.128906 203.476562 129.246094 C 203.476562 129.363281 203.570312 129.457031 203.6875 129.457031 C 203.804688 129.457031 203.898438 129.363281 203.898438 129.246094 Z M 203.898438 129.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.101562 131.757812 C 205.101562 131.640625 205.007812 131.546875 204.890625 131.546875 C 204.773438 131.546875 204.679688 131.640625 204.679688 131.757812 C 204.679688 131.875 204.773438 131.96875 204.890625 131.96875 C 205.007812 131.96875 205.101562 131.875 205.101562 131.757812 Z M 205.101562 131.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.613281 136.175781 C 201.613281 136.058594 201.519531 135.964844 201.402344 135.964844 C 201.285156 135.964844 201.191406 136.058594 201.191406 136.175781 C 201.191406 136.292969 201.285156 136.386719 201.402344 136.386719 C 201.519531 136.386719 201.613281 136.292969 201.613281 136.175781 Z M 201.613281 136.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.503906 135.359375 C 201.503906 135.242188 201.410156 135.148438 201.292969 135.148438 C 201.175781 135.148438 201.082031 135.242188 201.082031 135.359375 C 201.082031 135.476562 201.175781 135.570312 201.292969 135.570312 C 201.410156 135.570312 201.503906 135.476562 201.503906 135.359375 Z M 201.503906 135.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.34375 132.757812 C 201.34375 132.640625 201.25 132.546875 201.132812 132.546875 C 201.015625 132.546875 200.921875 132.640625 200.921875 132.757812 C 200.921875 132.875 201.015625 132.96875 201.132812 132.96875 C 201.25 132.96875 201.34375 132.875 201.34375 132.757812 Z M 201.34375 132.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.519531 133.441406 C 203.519531 133.324219 203.425781 133.230469 203.308594 133.230469 C 203.191406 133.230469 203.097656 133.324219 203.097656 133.441406 C 203.097656 133.558594 203.191406 133.652344 203.308594 133.652344 C 203.425781 133.652344 203.519531 133.558594 203.519531 133.441406 Z M 203.519531 133.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.394531 132.496094 C 203.394531 132.378906 203.300781 132.285156 203.183594 132.285156 C 203.066406 132.285156 202.972656 132.378906 202.972656 132.496094 C 202.972656 132.613281 203.066406 132.707031 203.183594 132.707031 C 203.300781 132.707031 203.394531 132.613281 203.394531 132.496094 Z M 203.394531 132.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.925781 133.996094 C 206.925781 133.878906 206.832031 133.785156 206.714844 133.785156 C 206.597656 133.785156 206.503906 133.878906 206.503906 133.996094 C 206.503906 134.113281 206.597656 134.207031 206.714844 134.207031 C 206.832031 134.207031 206.925781 134.113281 206.925781 133.996094 Z M 206.925781 133.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.554688 135.253906 C 204.554688 135.136719 204.460938 135.042969 204.34375 135.042969 C 204.226562 135.042969 204.132812 135.136719 204.132812 135.253906 C 204.132812 135.371094 204.226562 135.464844 204.34375 135.464844 C 204.460938 135.464844 204.554688 135.371094 204.554688 135.253906 Z M 204.554688 135.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.617188 132.539062 C 205.617188 132.421875 205.523438 132.328125 205.40625 132.328125 C 205.289062 132.328125 205.195312 132.421875 205.195312 132.539062 C 205.195312 132.65625 205.289062 132.75 205.40625 132.75 C 205.523438 132.75 205.617188 132.65625 205.617188 132.539062 Z M 205.617188 132.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.730469 137.339844 C 207.730469 137.222656 207.636719 137.128906 207.519531 137.128906 C 207.402344 137.128906 207.308594 137.222656 207.308594 137.339844 C 207.308594 137.457031 207.402344 137.550781 207.519531 137.550781 C 207.636719 137.550781 207.730469 137.457031 207.730469 137.339844 Z M 207.730469 137.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.3125 138.324219 C 207.3125 138.207031 207.21875 138.113281 207.101562 138.113281 C 206.984375 138.113281 206.890625 138.207031 206.890625 138.324219 C 206.890625 138.441406 206.984375 138.535156 207.101562 138.535156 C 207.21875 138.535156 207.3125 138.441406 207.3125 138.324219 Z M 207.3125 138.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.347656 137.824219 C 206.347656 137.707031 206.253906 137.613281 206.136719 137.613281 C 206.019531 137.613281 205.925781 137.707031 205.925781 137.824219 C 205.925781 137.941406 206.019531 138.035156 206.136719 138.035156 C 206.253906 138.035156 206.347656 137.941406 206.347656 137.824219 Z M 206.347656 137.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.425781 135.339844 C 209.425781 135.222656 209.332031 135.128906 209.214844 135.128906 C 209.097656 135.128906 209.003906 135.222656 209.003906 135.339844 C 209.003906 135.457031 209.097656 135.550781 209.214844 135.550781 C 209.332031 135.550781 209.425781 135.457031 209.425781 135.339844 Z M 209.425781 135.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.867188 137.507812 C 207.867188 137.390625 207.773438 137.296875 207.65625 137.296875 C 207.539062 137.296875 207.445312 137.390625 207.445312 137.507812 C 207.445312 137.625 207.539062 137.71875 207.65625 137.71875 C 207.773438 137.71875 207.867188 137.625 207.867188 137.507812 Z M 207.867188 137.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.433594 137.238281 C 205.433594 137.121094 205.339844 137.027344 205.222656 137.027344 C 205.105469 137.027344 205.011719 137.121094 205.011719 137.238281 C 205.011719 137.355469 205.105469 137.449219 205.222656 137.449219 C 205.339844 137.449219 205.433594 137.355469 205.433594 137.238281 Z M 205.433594 137.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.917969 138.179688 C 204.917969 138.0625 204.824219 137.96875 204.707031 137.96875 C 204.589844 137.96875 204.496094 138.0625 204.496094 138.179688 C 204.496094 138.296875 204.589844 138.390625 204.707031 138.390625 C 204.824219 138.390625 204.917969 138.296875 204.917969 138.179688 Z M 204.917969 138.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.246094 134.804688 C 208.246094 134.6875 208.152344 134.59375 208.035156 134.59375 C 207.917969 134.59375 207.824219 134.6875 207.824219 134.804688 C 207.824219 134.921875 207.917969 135.015625 208.035156 135.015625 C 208.152344 135.015625 208.246094 134.921875 208.246094 134.804688 Z M 208.246094 134.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 212.101562 133.84375 C 212.101562 133.726562 212.007812 133.632812 211.890625 133.632812 C 211.773438 133.632812 211.679688 133.726562 211.679688 133.84375 C 211.679688 133.960938 211.773438 134.054688 211.890625 134.054688 C 212.007812 134.054688 212.101562 133.960938 212.101562 133.84375 Z M 212.101562 133.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.003906 133.25 C 215.003906 133.132812 214.910156 133.039062 214.792969 133.039062 C 214.675781 133.039062 214.582031 133.132812 214.582031 133.25 C 214.582031 133.367188 214.675781 133.460938 214.792969 133.460938 C 214.910156 133.460938 215.003906 133.367188 215.003906 133.25 Z M 215.003906 133.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.441406 128.828125 C 219.441406 128.710938 219.347656 128.617188 219.230469 128.617188 C 219.113281 128.617188 219.019531 128.710938 219.019531 128.828125 C 219.019531 128.945312 219.113281 129.039062 219.230469 129.039062 C 219.347656 129.039062 219.441406 128.945312 219.441406 128.828125 Z M 219.441406 128.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 219.855469 127.523438 C 219.855469 127.40625 219.761719 127.3125 219.644531 127.3125 C 219.527344 127.3125 219.433594 127.40625 219.433594 127.523438 C 219.433594 127.640625 219.527344 127.734375 219.644531 127.734375 C 219.761719 127.734375 219.855469 127.640625 219.855469 127.523438 Z M 219.855469 127.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 217.640625 126.035156 C 217.640625 125.917969 217.546875 125.824219 217.429688 125.824219 C 217.3125 125.824219 217.21875 125.917969 217.21875 126.035156 C 217.21875 126.152344 217.3125 126.246094 217.429688 126.246094 C 217.546875 126.246094 217.640625 126.152344 217.640625 126.035156 Z M 217.640625 126.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.230469 127.515625 C 218.230469 127.398438 218.136719 127.304688 218.019531 127.304688 C 217.902344 127.304688 217.808594 127.398438 217.808594 127.515625 C 217.808594 127.632812 217.902344 127.726562 218.019531 127.726562 C 218.136719 127.726562 218.230469 127.632812 218.230469 127.515625 Z M 218.230469 127.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 218.496094 129.300781 C 218.496094 129.183594 218.402344 129.089844 218.285156 129.089844 C 218.167969 129.089844 218.074219 129.183594 218.074219 129.300781 C 218.074219 129.417969 218.167969 129.511719 218.285156 129.511719 C 218.402344 129.511719 218.496094 129.417969 218.496094 129.300781 Z M 218.496094 129.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 215.925781 130.054688 C 215.925781 129.9375 215.832031 129.84375 215.714844 129.84375 C 215.597656 129.84375 215.503906 129.9375 215.503906 130.054688 C 215.503906 130.171875 215.597656 130.265625 215.714844 130.265625 C 215.832031 130.265625 215.925781 130.171875 215.925781 130.054688 Z M 215.925781 130.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 213.824219 129.074219 C 213.824219 128.957031 213.730469 128.863281 213.613281 128.863281 C 213.496094 128.863281 213.402344 128.957031 213.402344 129.074219 C 213.402344 129.191406 213.496094 129.285156 213.613281 129.285156 C 213.730469 129.285156 213.824219 129.191406 213.824219 129.074219 Z M 213.824219 129.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 210.152344 131.253906 C 210.152344 131.136719 210.058594 131.042969 209.941406 131.042969 C 209.824219 131.042969 209.730469 131.136719 209.730469 131.253906 C 209.730469 131.371094 209.824219 131.464844 209.941406 131.464844 C 210.058594 131.464844 210.152344 131.371094 210.152344 131.253906 Z M 210.152344 131.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.617188 130.085938 C 208.617188 129.96875 208.523438 129.875 208.40625 129.875 C 208.289062 129.875 208.195312 129.96875 208.195312 130.085938 C 208.195312 130.203125 208.289062 130.296875 208.40625 130.296875 C 208.523438 130.296875 208.617188 130.203125 208.617188 130.085938 Z M 208.617188 130.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.5 128.285156 C 207.5 128.167969 207.40625 128.074219 207.289062 128.074219 C 207.171875 128.074219 207.078125 128.167969 207.078125 128.285156 C 207.078125 128.402344 207.171875 128.496094 207.289062 128.496094 C 207.40625 128.496094 207.5 128.402344 207.5 128.285156 Z M 207.5 128.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.832031 129.582031 C 205.832031 129.464844 205.738281 129.371094 205.621094 129.371094 C 205.503906 129.371094 205.410156 129.464844 205.410156 129.582031 C 205.410156 129.699219 205.503906 129.792969 205.621094 129.792969 C 205.738281 129.792969 205.832031 129.699219 205.832031 129.582031 Z M 205.832031 129.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.542969 129.242188 C 209.542969 129.125 209.449219 129.03125 209.332031 129.03125 C 209.214844 129.03125 209.121094 129.125 209.121094 129.242188 C 209.121094 129.359375 209.214844 129.453125 209.332031 129.453125 C 209.449219 129.453125 209.542969 129.359375 209.542969 129.242188 Z M 209.542969 129.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.089844 126.808594 C 208.089844 126.691406 207.996094 126.597656 207.878906 126.597656 C 207.761719 126.597656 207.667969 126.691406 207.667969 126.808594 C 207.667969 126.925781 207.761719 127.019531 207.878906 127.019531 C 207.996094 127.019531 208.089844 126.925781 208.089844 126.808594 Z M 208.089844 126.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.246094 126.722656 C 209.246094 126.605469 209.152344 126.511719 209.035156 126.511719 C 208.917969 126.511719 208.824219 126.605469 208.824219 126.722656 C 208.824219 126.839844 208.917969 126.933594 209.035156 126.933594 C 209.152344 126.933594 209.246094 126.839844 209.246094 126.722656 Z M 209.246094 126.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.667969 127.703125 C 204.667969 127.585938 204.574219 127.492188 204.457031 127.492188 C 204.339844 127.492188 204.246094 127.585938 204.246094 127.703125 C 204.246094 127.820312 204.339844 127.914062 204.457031 127.914062 C 204.574219 127.914062 204.667969 127.820312 204.667969 127.703125 Z M 204.667969 127.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.296875 129.847656 C 203.296875 129.730469 203.203125 129.636719 203.085938 129.636719 C 202.96875 129.636719 202.875 129.730469 202.875 129.847656 C 202.875 129.964844 202.96875 130.058594 203.085938 130.058594 C 203.203125 130.058594 203.296875 129.964844 203.296875 129.847656 Z M 203.296875 129.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.078125 132.546875 C 201.078125 132.429688 200.984375 132.335938 200.867188 132.335938 C 200.75 132.335938 200.65625 132.429688 200.65625 132.546875 C 200.65625 132.664062 200.75 132.757812 200.867188 132.757812 C 200.984375 132.757812 201.078125 132.664062 201.078125 132.546875 Z M 201.078125 132.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.578125 132.546875 C 199.578125 132.429688 199.484375 132.335938 199.367188 132.335938 C 199.25 132.335938 199.15625 132.429688 199.15625 132.546875 C 199.15625 132.664062 199.25 132.757812 199.367188 132.757812 C 199.484375 132.757812 199.578125 132.664062 199.578125 132.546875 Z M 199.578125 132.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.480469 132.503906 C 202.480469 132.386719 202.386719 132.292969 202.269531 132.292969 C 202.152344 132.292969 202.058594 132.386719 202.058594 132.503906 C 202.058594 132.621094 202.152344 132.714844 202.269531 132.714844 C 202.386719 132.714844 202.480469 132.621094 202.480469 132.503906 Z M 202.480469 132.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.070312 133.320312 C 204.070312 133.203125 203.976562 133.109375 203.859375 133.109375 C 203.742188 133.109375 203.648438 133.203125 203.648438 133.320312 C 203.648438 133.4375 203.742188 133.53125 203.859375 133.53125 C 203.976562 133.53125 204.070312 133.4375 204.070312 133.320312 Z M 204.070312 133.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.710938 129.90625 C 206.710938 129.789062 206.617188 129.695312 206.5 129.695312 C 206.382812 129.695312 206.289062 129.789062 206.289062 129.90625 C 206.289062 130.023438 206.382812 130.117188 206.5 130.117188 C 206.617188 130.117188 206.710938 130.023438 206.710938 129.90625 Z M 206.710938 129.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.246094 132.507812 C 205.246094 132.390625 205.152344 132.296875 205.035156 132.296875 C 204.917969 132.296875 204.824219 132.390625 204.824219 132.507812 C 204.824219 132.625 204.917969 132.71875 205.035156 132.71875 C 205.152344 132.71875 205.246094 132.625 205.246094 132.507812 Z M 205.246094 132.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.636719 128.625 C 203.636719 128.507812 203.542969 128.414062 203.425781 128.414062 C 203.308594 128.414062 203.214844 128.507812 203.214844 128.625 C 203.214844 128.742188 203.308594 128.835938 203.425781 128.835938 C 203.542969 128.835938 203.636719 128.742188 203.636719 128.625 Z M 203.636719 128.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.535156 131.039062 C 204.535156 130.921875 204.441406 130.828125 204.324219 130.828125 C 204.207031 130.828125 204.113281 130.921875 204.113281 131.039062 C 204.113281 131.15625 204.207031 131.25 204.324219 131.25 C 204.441406 131.25 204.535156 131.15625 204.535156 131.039062 Z M 204.535156 131.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.160156 130.78125 C 203.160156 130.664062 203.066406 130.570312 202.949219 130.570312 C 202.832031 130.570312 202.738281 130.664062 202.738281 130.78125 C 202.738281 130.898438 202.832031 130.992188 202.949219 130.992188 C 203.066406 130.992188 203.160156 130.898438 203.160156 130.78125 Z M 203.160156 130.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.191406 131.039062 C 208.191406 130.921875 208.097656 130.828125 207.980469 130.828125 C 207.863281 130.828125 207.769531 130.921875 207.769531 131.039062 C 207.769531 131.15625 207.863281 131.25 207.980469 131.25 C 208.097656 131.25 208.191406 131.15625 208.191406 131.039062 Z M 208.191406 131.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.433594 128.097656 C 208.433594 127.980469 208.339844 127.886719 208.222656 127.886719 C 208.105469 127.886719 208.011719 127.980469 208.011719 128.097656 C 208.011719 128.214844 208.105469 128.308594 208.222656 128.308594 C 208.339844 128.308594 208.433594 128.214844 208.433594 128.097656 Z M 208.433594 128.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 204.855469 126.597656 C 204.855469 126.480469 204.761719 126.386719 204.644531 126.386719 C 204.527344 126.386719 204.433594 126.480469 204.433594 126.597656 C 204.433594 126.714844 204.527344 126.808594 204.644531 126.808594 C 204.761719 126.808594 204.855469 126.714844 204.855469 126.597656 Z M 204.855469 126.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.613281 125.523438 C 209.613281 125.40625 209.519531 125.3125 209.402344 125.3125 C 209.285156 125.3125 209.191406 125.40625 209.191406 125.523438 C 209.191406 125.640625 209.285156 125.734375 209.402344 125.734375 C 209.519531 125.734375 209.613281 125.640625 209.613281 125.523438 Z M 209.613281 125.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 211.378906 124.839844 C 211.378906 124.722656 211.285156 124.628906 211.167969 124.628906 C 211.050781 124.628906 210.957031 124.722656 210.957031 124.839844 C 210.957031 124.957031 211.050781 125.050781 211.167969 125.050781 C 211.285156 125.050781 211.378906 124.957031 211.378906 124.839844 Z M 211.378906 124.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.582031 121.574219 C 209.582031 121.457031 209.488281 121.363281 209.371094 121.363281 C 209.253906 121.363281 209.160156 121.457031 209.160156 121.574219 C 209.160156 121.691406 209.253906 121.785156 209.371094 121.785156 C 209.488281 121.785156 209.582031 121.691406 209.582031 121.574219 Z M 209.582031 121.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.902344 118.722656 C 208.902344 118.605469 208.808594 118.511719 208.691406 118.511719 C 208.574219 118.511719 208.480469 118.605469 208.480469 118.722656 C 208.480469 118.839844 208.574219 118.933594 208.691406 118.933594 C 208.808594 118.933594 208.902344 118.839844 208.902344 118.722656 Z M 208.902344 118.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.871094 119.441406 C 205.871094 119.324219 205.777344 119.230469 205.660156 119.230469 C 205.542969 119.230469 205.449219 119.324219 205.449219 119.441406 C 205.449219 119.558594 205.542969 119.652344 205.660156 119.652344 C 205.777344 119.652344 205.871094 119.558594 205.871094 119.441406 Z M 205.871094 119.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.519531 118.417969 C 206.519531 118.300781 206.425781 118.207031 206.308594 118.207031 C 206.191406 118.207031 206.097656 118.300781 206.097656 118.417969 C 206.097656 118.535156 206.191406 118.628906 206.308594 118.628906 C 206.425781 118.628906 206.519531 118.535156 206.519531 118.417969 Z M 206.519531 118.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.273438 116.179688 C 201.273438 116.0625 201.179688 115.96875 201.0625 115.96875 C 200.945312 115.96875 200.851562 116.0625 200.851562 116.179688 C 200.851562 116.296875 200.945312 116.390625 201.0625 116.390625 C 201.179688 116.390625 201.273438 116.296875 201.273438 116.179688 Z M 201.273438 116.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.707031 113.496094 C 198.707031 113.378906 198.613281 113.285156 198.496094 113.285156 C 198.378906 113.285156 198.285156 113.378906 198.285156 113.496094 C 198.285156 113.613281 198.378906 113.707031 198.496094 113.707031 C 198.613281 113.707031 198.707031 113.613281 198.707031 113.496094 Z M 198.707031 113.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.941406 113.453125 C 199.941406 113.335938 199.847656 113.242188 199.730469 113.242188 C 199.613281 113.242188 199.519531 113.335938 199.519531 113.453125 C 199.519531 113.570312 199.613281 113.664062 199.730469 113.664062 C 199.847656 113.664062 199.941406 113.570312 199.941406 113.453125 Z M 199.941406 113.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.847656 111.515625 C 197.847656 111.398438 197.753906 111.304688 197.636719 111.304688 C 197.519531 111.304688 197.425781 111.398438 197.425781 111.515625 C 197.425781 111.632812 197.519531 111.726562 197.636719 111.726562 C 197.753906 111.726562 197.847656 111.632812 197.847656 111.515625 Z M 197.847656 111.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.308594 109.679688 C 197.308594 109.5625 197.214844 109.46875 197.097656 109.46875 C 196.980469 109.46875 196.886719 109.5625 196.886719 109.679688 C 196.886719 109.796875 196.980469 109.890625 197.097656 109.890625 C 197.214844 109.890625 197.308594 109.796875 197.308594 109.679688 Z M 197.308594 109.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.953125 107.964844 C 198.953125 107.847656 198.859375 107.753906 198.742188 107.753906 C 198.625 107.753906 198.53125 107.847656 198.53125 107.964844 C 198.53125 108.082031 198.625 108.175781 198.742188 108.175781 C 198.859375 108.175781 198.953125 108.082031 198.953125 107.964844 Z M 198.953125 107.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.1875 107.46875 C 199.1875 107.351562 199.09375 107.257812 198.976562 107.257812 C 198.859375 107.257812 198.765625 107.351562 198.765625 107.46875 C 198.765625 107.585938 198.859375 107.679688 198.976562 107.679688 C 199.09375 107.679688 199.1875 107.585938 199.1875 107.46875 Z M 199.1875 107.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.703125 107.816406 C 197.703125 107.699219 197.609375 107.605469 197.492188 107.605469 C 197.375 107.605469 197.28125 107.699219 197.28125 107.816406 C 197.28125 107.933594 197.375 108.027344 197.492188 108.027344 C 197.609375 108.027344 197.703125 107.933594 197.703125 107.816406 Z M 197.703125 107.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.195312 102.933594 C 200.195312 102.816406 200.101562 102.722656 199.984375 102.722656 C 199.867188 102.722656 199.773438 102.816406 199.773438 102.933594 C 199.773438 103.050781 199.867188 103.144531 199.984375 103.144531 C 200.101562 103.144531 200.195312 103.050781 200.195312 102.933594 Z M 200.195312 102.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.59375 102.59375 C 196.59375 102.476562 196.5 102.382812 196.382812 102.382812 C 196.265625 102.382812 196.171875 102.476562 196.171875 102.59375 C 196.171875 102.710938 196.265625 102.804688 196.382812 102.804688 C 196.5 102.804688 196.59375 102.710938 196.59375 102.59375 Z M 196.59375 102.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.929688 105.332031 C 196.929688 105.214844 196.835938 105.121094 196.71875 105.121094 C 196.601562 105.121094 196.507812 105.214844 196.507812 105.332031 C 196.507812 105.449219 196.601562 105.542969 196.71875 105.542969 C 196.835938 105.542969 196.929688 105.449219 196.929688 105.332031 Z M 196.929688 105.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.273438 101.792969 C 196.273438 101.675781 196.179688 101.582031 196.0625 101.582031 C 195.945312 101.582031 195.851562 101.675781 195.851562 101.792969 C 195.851562 101.910156 195.945312 102.003906 196.0625 102.003906 C 196.179688 102.003906 196.273438 101.910156 196.273438 101.792969 Z M 196.273438 101.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.464844 100.386719 C 195.464844 100.269531 195.371094 100.175781 195.253906 100.175781 C 195.136719 100.175781 195.042969 100.269531 195.042969 100.386719 C 195.042969 100.503906 195.136719 100.597656 195.253906 100.597656 C 195.371094 100.597656 195.464844 100.503906 195.464844 100.386719 Z M 195.464844 100.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.847656 101.328125 C 194.847656 101.210938 194.753906 101.117188 194.636719 101.117188 C 194.519531 101.117188 194.425781 101.210938 194.425781 101.328125 C 194.425781 101.445312 194.519531 101.539062 194.636719 101.539062 C 194.753906 101.539062 194.847656 101.445312 194.847656 101.328125 Z M 194.847656 101.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.914062 100.246094 C 197.914062 100.128906 197.820312 100.035156 197.703125 100.035156 C 197.585938 100.035156 197.492188 100.128906 197.492188 100.246094 C 197.492188 100.363281 197.585938 100.457031 197.703125 100.457031 C 197.820312 100.457031 197.914062 100.363281 197.914062 100.246094 Z M 197.914062 100.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.453125 100.476562 C 198.453125 100.359375 198.359375 100.265625 198.242188 100.265625 C 198.125 100.265625 198.03125 100.359375 198.03125 100.476562 C 198.03125 100.59375 198.125 100.6875 198.242188 100.6875 C 198.359375 100.6875 198.453125 100.59375 198.453125 100.476562 Z M 198.453125 100.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.242188 98.121094 C 198.242188 98.003906 198.148438 97.910156 198.03125 97.910156 C 197.914062 97.910156 197.820312 98.003906 197.820312 98.121094 C 197.820312 98.238281 197.914062 98.332031 198.03125 98.332031 C 198.148438 98.332031 198.242188 98.238281 198.242188 98.121094 Z M 198.242188 98.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.976562 97.90625 C 197.976562 97.789062 197.882812 97.695312 197.765625 97.695312 C 197.648438 97.695312 197.554688 97.789062 197.554688 97.90625 C 197.554688 98.023438 197.648438 98.117188 197.765625 98.117188 C 197.882812 98.117188 197.976562 98.023438 197.976562 97.90625 Z M 197.976562 97.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.242188 99.351562 C 196.242188 99.234375 196.148438 99.140625 196.03125 99.140625 C 195.914062 99.140625 195.820312 99.234375 195.820312 99.351562 C 195.820312 99.46875 195.914062 99.5625 196.03125 99.5625 C 196.148438 99.5625 196.242188 99.46875 196.242188 99.351562 Z M 196.242188 99.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.25 96.988281 C 201.25 96.871094 201.15625 96.777344 201.039062 96.777344 C 200.921875 96.777344 200.828125 96.871094 200.828125 96.988281 C 200.828125 97.105469 200.921875 97.199219 201.039062 97.199219 C 201.15625 97.199219 201.25 97.105469 201.25 96.988281 Z M 201.25 96.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.308594 95.757812 C 195.308594 95.640625 195.214844 95.546875 195.097656 95.546875 C 194.980469 95.546875 194.886719 95.640625 194.886719 95.757812 C 194.886719 95.875 194.980469 95.96875 195.097656 95.96875 C 195.214844 95.96875 195.308594 95.875 195.308594 95.757812 Z M 195.308594 95.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.925781 95.636719 C 195.925781 95.519531 195.832031 95.425781 195.714844 95.425781 C 195.597656 95.425781 195.503906 95.519531 195.503906 95.636719 C 195.503906 95.753906 195.597656 95.847656 195.714844 95.847656 C 195.832031 95.847656 195.925781 95.753906 195.925781 95.636719 Z M 195.925781 95.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.730469 92.683594 C 198.730469 92.566406 198.636719 92.472656 198.519531 92.472656 C 198.402344 92.472656 198.308594 92.566406 198.308594 92.683594 C 198.308594 92.800781 198.402344 92.894531 198.519531 92.894531 C 198.636719 92.894531 198.730469 92.800781 198.730469 92.683594 Z M 198.730469 92.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.476562 92.589844 C 196.476562 92.472656 196.382812 92.378906 196.265625 92.378906 C 196.148438 92.378906 196.054688 92.472656 196.054688 92.589844 C 196.054688 92.707031 196.148438 92.800781 196.265625 92.800781 C 196.382812 92.800781 196.476562 92.707031 196.476562 92.589844 Z M 196.476562 92.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.167969 93.074219 C 194.167969 92.957031 194.074219 92.863281 193.957031 92.863281 C 193.839844 92.863281 193.746094 92.957031 193.746094 93.074219 C 193.746094 93.191406 193.839844 93.285156 193.957031 93.285156 C 194.074219 93.285156 194.167969 93.191406 194.167969 93.074219 Z M 194.167969 93.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.46875 92.402344 C 200.46875 92.285156 200.375 92.191406 200.257812 92.191406 C 200.140625 92.191406 200.046875 92.285156 200.046875 92.402344 C 200.046875 92.519531 200.140625 92.613281 200.257812 92.613281 C 200.375 92.613281 200.46875 92.519531 200.46875 92.402344 Z M 200.46875 92.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.53125 86.339844 C 197.53125 86.222656 197.4375 86.128906 197.320312 86.128906 C 197.203125 86.128906 197.109375 86.222656 197.109375 86.339844 C 197.109375 86.457031 197.203125 86.550781 197.320312 86.550781 C 197.4375 86.550781 197.53125 86.457031 197.53125 86.339844 Z M 197.53125 86.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.890625 86.929688 C 199.890625 86.8125 199.796875 86.71875 199.679688 86.71875 C 199.5625 86.71875 199.46875 86.8125 199.46875 86.929688 C 199.46875 87.046875 199.5625 87.140625 199.679688 87.140625 C 199.796875 87.140625 199.890625 87.046875 199.890625 86.929688 Z M 199.890625 86.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.539062 87.527344 C 201.539062 87.410156 201.445312 87.316406 201.328125 87.316406 C 201.210938 87.316406 201.117188 87.410156 201.117188 87.527344 C 201.117188 87.644531 201.210938 87.738281 201.328125 87.738281 C 201.445312 87.738281 201.539062 87.644531 201.539062 87.527344 Z M 201.539062 87.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.890625 89.914062 C 201.890625 89.796875 201.796875 89.703125 201.679688 89.703125 C 201.5625 89.703125 201.46875 89.796875 201.46875 89.914062 C 201.46875 90.03125 201.5625 90.125 201.679688 90.125 C 201.796875 90.125 201.890625 90.03125 201.890625 89.914062 Z M 201.890625 89.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.824219 89.117188 C 203.824219 89 203.730469 88.90625 203.613281 88.90625 C 203.496094 88.90625 203.402344 89 203.402344 89.117188 C 203.402344 89.234375 203.496094 89.328125 203.613281 89.328125 C 203.730469 89.328125 203.824219 89.234375 203.824219 89.117188 Z M 203.824219 89.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.613281 88.300781 C 206.613281 88.183594 206.519531 88.089844 206.402344 88.089844 C 206.285156 88.089844 206.191406 88.183594 206.191406 88.300781 C 206.191406 88.417969 206.285156 88.511719 206.402344 88.511719 C 206.519531 88.511719 206.613281 88.417969 206.613281 88.300781 Z M 206.613281 88.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.71875 89.175781 C 205.71875 89.058594 205.625 88.964844 205.507812 88.964844 C 205.390625 88.964844 205.296875 89.058594 205.296875 89.175781 C 205.296875 89.292969 205.390625 89.386719 205.507812 89.386719 C 205.625 89.386719 205.71875 89.292969 205.71875 89.175781 Z M 205.71875 89.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 208.300781 89.335938 C 208.300781 89.21875 208.207031 89.125 208.089844 89.125 C 207.972656 89.125 207.878906 89.21875 207.878906 89.335938 C 207.878906 89.453125 207.972656 89.546875 208.089844 89.546875 C 208.207031 89.546875 208.300781 89.453125 208.300781 89.335938 Z M 208.300781 89.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.027344 87.046875 C 205.027344 86.929688 204.933594 86.835938 204.816406 86.835938 C 204.699219 86.835938 204.605469 86.929688 204.605469 87.046875 C 204.605469 87.164062 204.699219 87.257812 204.816406 87.257812 C 204.933594 87.257812 205.027344 87.164062 205.027344 87.046875 Z M 205.027344 87.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.480469 82.527344 C 205.480469 82.410156 205.386719 82.316406 205.269531 82.316406 C 205.152344 82.316406 205.058594 82.410156 205.058594 82.527344 C 205.058594 82.644531 205.152344 82.738281 205.269531 82.738281 C 205.386719 82.738281 205.480469 82.644531 205.480469 82.527344 Z M 205.480469 82.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 205.808594 83.527344 C 205.808594 83.410156 205.714844 83.316406 205.597656 83.316406 C 205.480469 83.316406 205.386719 83.410156 205.386719 83.527344 C 205.386719 83.644531 205.480469 83.738281 205.597656 83.738281 C 205.714844 83.738281 205.808594 83.644531 205.808594 83.527344 Z M 205.808594 83.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 206.105469 84.0625 C 206.105469 83.945312 206.011719 83.851562 205.894531 83.851562 C 205.777344 83.851562 205.683594 83.945312 205.683594 84.0625 C 205.683594 84.179688 205.777344 84.273438 205.894531 84.273438 C 206.011719 84.273438 206.105469 84.179688 206.105469 84.0625 Z M 206.105469 84.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.230469 84.761719 C 203.230469 84.644531 203.136719 84.550781 203.019531 84.550781 C 202.902344 84.550781 202.808594 84.644531 202.808594 84.761719 C 202.808594 84.878906 202.902344 84.972656 203.019531 84.972656 C 203.136719 84.972656 203.230469 84.878906 203.230469 84.761719 Z M 203.230469 84.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 209.359375 84.894531 C 209.359375 84.777344 209.265625 84.683594 209.148438 84.683594 C 209.03125 84.683594 208.9375 84.777344 208.9375 84.894531 C 208.9375 85.011719 209.03125 85.105469 209.148438 85.105469 C 209.265625 85.105469 209.359375 85.011719 209.359375 84.894531 Z M 209.359375 84.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.265625 85.023438 C 207.265625 84.90625 207.171875 84.8125 207.054688 84.8125 C 206.9375 84.8125 206.84375 84.90625 206.84375 85.023438 C 206.84375 85.140625 206.9375 85.234375 207.054688 85.234375 C 207.171875 85.234375 207.265625 85.140625 207.265625 85.023438 Z M 207.265625 85.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 207.679688 82.160156 C 207.679688 82.042969 207.585938 81.949219 207.46875 81.949219 C 207.351562 81.949219 207.257812 82.042969 207.257812 82.160156 C 207.257812 82.277344 207.351562 82.371094 207.46875 82.371094 C 207.585938 82.371094 207.679688 82.277344 207.679688 82.160156 Z M 207.679688 82.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.84375 81.328125 C 203.84375 81.210938 203.75 81.117188 203.632812 81.117188 C 203.515625 81.117188 203.421875 81.210938 203.421875 81.328125 C 203.421875 81.445312 203.515625 81.539062 203.632812 81.539062 C 203.75 81.539062 203.84375 81.445312 203.84375 81.328125 Z M 203.84375 81.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 200.082031 80.6875 C 200.082031 80.570312 199.988281 80.476562 199.871094 80.476562 C 199.753906 80.476562 199.660156 80.570312 199.660156 80.6875 C 199.660156 80.804688 199.753906 80.898438 199.871094 80.898438 C 199.988281 80.898438 200.082031 80.804688 200.082031 80.6875 Z M 200.082031 80.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.070312 81.167969 C 202.070312 81.050781 201.976562 80.957031 201.859375 80.957031 C 201.742188 80.957031 201.648438 81.050781 201.648438 81.167969 C 201.648438 81.285156 201.742188 81.378906 201.859375 81.378906 C 201.976562 81.378906 202.070312 81.285156 202.070312 81.167969 Z M 202.070312 81.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.527344 78.667969 C 202.527344 78.550781 202.433594 78.457031 202.316406 78.457031 C 202.199219 78.457031 202.105469 78.550781 202.105469 78.667969 C 202.105469 78.785156 202.199219 78.878906 202.316406 78.878906 C 202.433594 78.878906 202.527344 78.785156 202.527344 78.667969 Z M 202.527344 78.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.417969 77.066406 C 201.417969 76.949219 201.324219 76.855469 201.207031 76.855469 C 201.089844 76.855469 200.996094 76.949219 200.996094 77.066406 C 200.996094 77.183594 201.089844 77.277344 201.207031 77.277344 C 201.324219 77.277344 201.417969 77.183594 201.417969 77.066406 Z M 201.417969 77.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.691406 76.207031 C 201.691406 76.089844 201.597656 75.996094 201.480469 75.996094 C 201.363281 75.996094 201.269531 76.089844 201.269531 76.207031 C 201.269531 76.324219 201.363281 76.417969 201.480469 76.417969 C 201.597656 76.417969 201.691406 76.324219 201.691406 76.207031 Z M 201.691406 76.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.390625 77 C 199.390625 76.882812 199.296875 76.789062 199.179688 76.789062 C 199.0625 76.789062 198.96875 76.882812 198.96875 77 C 198.96875 77.117188 199.0625 77.210938 199.179688 77.210938 C 199.296875 77.210938 199.390625 77.117188 199.390625 77 Z M 199.390625 77 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.570312 77.0625 C 196.570312 76.945312 196.476562 76.851562 196.359375 76.851562 C 196.242188 76.851562 196.148438 76.945312 196.148438 77.0625 C 196.148438 77.179688 196.242188 77.273438 196.359375 77.273438 C 196.476562 77.273438 196.570312 77.179688 196.570312 77.0625 Z M 196.570312 77.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.039062 76.078125 C 194.039062 75.960938 193.945312 75.867188 193.828125 75.867188 C 193.710938 75.867188 193.617188 75.960938 193.617188 76.078125 C 193.617188 76.195312 193.710938 76.289062 193.828125 76.289062 C 193.945312 76.289062 194.039062 76.195312 194.039062 76.078125 Z M 194.039062 76.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.789062 75.941406 C 190.789062 75.824219 190.695312 75.730469 190.578125 75.730469 C 190.460938 75.730469 190.367188 75.824219 190.367188 75.941406 C 190.367188 76.058594 190.460938 76.152344 190.578125 76.152344 C 190.695312 76.152344 190.789062 76.058594 190.789062 75.941406 Z M 190.789062 75.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.496094 76.210938 C 190.496094 76.09375 190.402344 76 190.285156 76 C 190.167969 76 190.074219 76.09375 190.074219 76.210938 C 190.074219 76.328125 190.167969 76.421875 190.285156 76.421875 C 190.402344 76.421875 190.496094 76.328125 190.496094 76.210938 Z M 190.496094 76.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 189.777344 78.726562 C 189.777344 78.609375 189.683594 78.515625 189.566406 78.515625 C 189.449219 78.515625 189.355469 78.609375 189.355469 78.726562 C 189.355469 78.84375 189.449219 78.9375 189.566406 78.9375 C 189.683594 78.9375 189.777344 78.84375 189.777344 78.726562 Z M 189.777344 78.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.382812 82.285156 C 190.382812 82.167969 190.289062 82.074219 190.171875 82.074219 C 190.054688 82.074219 189.960938 82.167969 189.960938 82.285156 C 189.960938 82.402344 190.054688 82.496094 190.171875 82.496094 C 190.289062 82.496094 190.382812 82.402344 190.382812 82.285156 Z M 190.382812 82.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 194.203125 81.386719 C 194.203125 81.269531 194.109375 81.175781 193.992188 81.175781 C 193.875 81.175781 193.78125 81.269531 193.78125 81.386719 C 193.78125 81.503906 193.875 81.597656 193.992188 81.597656 C 194.109375 81.597656 194.203125 81.503906 194.203125 81.386719 Z M 194.203125 81.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.417969 80.625 C 197.417969 80.507812 197.324219 80.414062 197.207031 80.414062 C 197.089844 80.414062 196.996094 80.507812 196.996094 80.625 C 196.996094 80.742188 197.089844 80.835938 197.207031 80.835938 C 197.324219 80.835938 197.417969 80.742188 197.417969 80.625 Z M 197.417969 80.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.746094 82.136719 C 198.746094 82.019531 198.652344 81.925781 198.535156 81.925781 C 198.417969 81.925781 198.324219 82.019531 198.324219 82.136719 C 198.324219 82.253906 198.417969 82.347656 198.535156 82.347656 C 198.652344 82.347656 198.746094 82.253906 198.746094 82.136719 Z M 198.746094 82.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.144531 80.324219 C 199.144531 80.207031 199.050781 80.113281 198.933594 80.113281 C 198.816406 80.113281 198.722656 80.207031 198.722656 80.324219 C 198.722656 80.441406 198.816406 80.535156 198.933594 80.535156 C 199.050781 80.535156 199.144531 80.441406 199.144531 80.324219 Z M 199.144531 80.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 202.164062 79.929688 C 202.164062 79.8125 202.070312 79.71875 201.953125 79.71875 C 201.835938 79.71875 201.742188 79.8125 201.742188 79.929688 C 201.742188 80.046875 201.835938 80.140625 201.953125 80.140625 C 202.070312 80.140625 202.164062 80.046875 202.164062 79.929688 Z M 202.164062 79.929688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.519531 81.40625 C 203.519531 81.289062 203.425781 81.195312 203.308594 81.195312 C 203.191406 81.195312 203.097656 81.289062 203.097656 81.40625 C 203.097656 81.523438 203.191406 81.617188 203.308594 81.617188 C 203.425781 81.617188 203.519531 81.523438 203.519531 81.40625 Z M 203.519531 81.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 201.535156 80.59375 C 201.535156 80.476562 201.441406 80.382812 201.324219 80.382812 C 201.207031 80.382812 201.113281 80.476562 201.113281 80.59375 C 201.113281 80.710938 201.207031 80.804688 201.324219 80.804688 C 201.441406 80.804688 201.535156 80.710938 201.535156 80.59375 Z M 201.535156 80.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 203.003906 81.375 C 203.003906 81.257812 202.910156 81.164062 202.792969 81.164062 C 202.675781 81.164062 202.582031 81.257812 202.582031 81.375 C 202.582031 81.492188 202.675781 81.585938 202.792969 81.585938 C 202.910156 81.585938 203.003906 81.492188 203.003906 81.375 Z M 203.003906 81.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.976562 83.617188 C 198.976562 83.5 198.882812 83.40625 198.765625 83.40625 C 198.648438 83.40625 198.554688 83.5 198.554688 83.617188 C 198.554688 83.734375 198.648438 83.828125 198.765625 83.828125 C 198.882812 83.828125 198.976562 83.734375 198.976562 83.617188 Z M 198.976562 83.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.363281 81.316406 C 197.363281 81.199219 197.269531 81.105469 197.152344 81.105469 C 197.035156 81.105469 196.941406 81.199219 196.941406 81.316406 C 196.941406 81.433594 197.035156 81.527344 197.152344 81.527344 C 197.269531 81.527344 197.363281 81.433594 197.363281 81.316406 Z M 197.363281 81.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 197.875 84.265625 C 197.875 84.148438 197.78125 84.054688 197.664062 84.054688 C 197.546875 84.054688 197.453125 84.148438 197.453125 84.265625 C 197.453125 84.382812 197.546875 84.476562 197.664062 84.476562 C 197.78125 84.476562 197.875 84.382812 197.875 84.265625 Z M 197.875 84.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.792969 86.40625 C 198.792969 86.289062 198.699219 86.195312 198.582031 86.195312 C 198.464844 86.195312 198.371094 86.289062 198.371094 86.40625 C 198.371094 86.523438 198.464844 86.617188 198.582031 86.617188 C 198.699219 86.617188 198.792969 86.523438 198.792969 86.40625 Z M 198.792969 86.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 199.160156 82.445312 C 199.160156 82.328125 199.066406 82.234375 198.949219 82.234375 C 198.832031 82.234375 198.738281 82.328125 198.738281 82.445312 C 198.738281 82.5625 198.832031 82.65625 198.949219 82.65625 C 199.066406 82.65625 199.160156 82.5625 199.160156 82.445312 Z M 199.160156 82.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.054688 82.039062 C 198.054688 81.921875 197.960938 81.828125 197.84375 81.828125 C 197.726562 81.828125 197.632812 81.921875 197.632812 82.039062 C 197.632812 82.15625 197.726562 82.25 197.84375 82.25 C 197.960938 82.25 198.054688 82.15625 198.054688 82.039062 Z M 198.054688 82.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 196.496094 85.847656 C 196.496094 85.730469 196.402344 85.636719 196.285156 85.636719 C 196.167969 85.636719 196.074219 85.730469 196.074219 85.847656 C 196.074219 85.964844 196.167969 86.058594 196.285156 86.058594 C 196.402344 86.058594 196.496094 85.964844 196.496094 85.847656 Z M 196.496094 85.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 198.585938 83.898438 C 198.585938 83.78125 198.492188 83.6875 198.375 83.6875 C 198.257812 83.6875 198.164062 83.78125 198.164062 83.898438 C 198.164062 84.015625 198.257812 84.109375 198.375 84.109375 C 198.492188 84.109375 198.585938 84.015625 198.585938 83.898438 Z M 198.585938 83.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 195.636719 82.472656 C 195.636719 82.355469 195.542969 82.261719 195.425781 82.261719 C 195.308594 82.261719 195.214844 82.355469 195.214844 82.472656 C 195.214844 82.589844 195.308594 82.683594 195.425781 82.683594 C 195.542969 82.683594 195.636719 82.589844 195.636719 82.472656 Z M 195.636719 82.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 192.476562 81.921875 C 192.476562 81.804688 192.382812 81.710938 192.265625 81.710938 C 192.148438 81.710938 192.054688 81.804688 192.054688 81.921875 C 192.054688 82.039062 192.148438 82.132812 192.265625 82.132812 C 192.382812 82.132812 192.476562 82.039062 192.476562 81.921875 Z M 192.476562 81.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 190.957031 81.066406 C 190.957031 80.949219 190.863281 80.855469 190.746094 80.855469 C 190.628906 80.855469 190.535156 80.949219 190.535156 81.066406 C 190.535156 81.183594 190.628906 81.277344 190.746094 81.277344 C 190.863281 81.277344 190.957031 81.183594 190.957031 81.066406 Z M 190.957031 81.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.015625 78 C 191.015625 77.882812 190.921875 77.789062 190.804688 77.789062 C 190.6875 77.789062 190.59375 77.882812 190.59375 78 C 190.59375 78.117188 190.6875 78.210938 190.804688 78.210938 C 190.921875 78.210938 191.015625 78.117188 191.015625 78 Z M 191.015625 78 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 191.210938 81.0625 C 191.210938 80.945312 191.117188 80.851562 191 80.851562 C 190.882812 80.851562 190.789062 80.945312 190.789062 81.0625 C 190.789062 81.179688 190.882812 81.273438 191 81.273438 C 191.117188 81.273438 191.210938 81.179688 191.210938 81.0625 Z M 191.210938 81.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 187.394531 80.15625 C 187.394531 80.039062 187.300781 79.945312 187.183594 79.945312 C 187.066406 79.945312 186.972656 80.039062 186.972656 80.15625 C 186.972656 80.273438 187.066406 80.367188 187.183594 80.367188 C 187.300781 80.367188 187.394531 80.273438 187.394531 80.15625 Z M 187.394531 80.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 188.234375 83.597656 C 188.234375 83.480469 188.140625 83.386719 188.023438 83.386719 C 187.90625 83.386719 187.8125 83.480469 187.8125 83.597656 C 187.8125 83.714844 187.90625 83.808594 188.023438 83.808594 C 188.140625 83.808594 188.234375 83.714844 188.234375 83.597656 Z M 188.234375 83.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 186.019531 82.71875 C 186.019531 82.601562 185.925781 82.507812 185.808594 82.507812 C 185.691406 82.507812 185.597656 82.601562 185.597656 82.71875 C 185.597656 82.835938 185.691406 82.929688 185.808594 82.929688 C 185.925781 82.929688 186.019531 82.835938 186.019531 82.71875 Z M 186.019531 82.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 185.097656 83.917969 C 185.097656 83.800781 185.003906 83.707031 184.886719 83.707031 C 184.769531 83.707031 184.675781 83.800781 184.675781 83.917969 C 184.675781 84.035156 184.769531 84.128906 184.886719 84.128906 C 185.003906 84.128906 185.097656 84.035156 185.097656 83.917969 Z M 185.097656 83.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.476562 82.058594 C 182.476562 81.941406 182.382812 81.847656 182.265625 81.847656 C 182.148438 81.847656 182.054688 81.941406 182.054688 82.058594 C 182.054688 82.175781 182.148438 82.269531 182.265625 82.269531 C 182.382812 82.269531 182.476562 82.175781 182.476562 82.058594 Z M 182.476562 82.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 181.410156 81.777344 C 181.410156 81.660156 181.316406 81.566406 181.199219 81.566406 C 181.082031 81.566406 180.988281 81.660156 180.988281 81.777344 C 180.988281 81.894531 181.082031 81.988281 181.199219 81.988281 C 181.316406 81.988281 181.410156 81.894531 181.410156 81.777344 Z M 181.410156 81.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 180.03125 83.058594 C 180.03125 82.941406 179.9375 82.847656 179.820312 82.847656 C 179.703125 82.847656 179.609375 82.941406 179.609375 83.058594 C 179.609375 83.175781 179.703125 83.269531 179.820312 83.269531 C 179.9375 83.269531 180.03125 83.175781 180.03125 83.058594 Z M 180.03125 83.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 178.636719 86.09375 C 178.636719 85.976562 178.542969 85.882812 178.425781 85.882812 C 178.308594 85.882812 178.214844 85.976562 178.214844 86.09375 C 178.214844 86.210938 178.308594 86.304688 178.425781 86.304688 C 178.542969 86.304688 178.636719 86.210938 178.636719 86.09375 Z M 178.636719 86.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 177.582031 82.546875 C 177.582031 82.429688 177.488281 82.335938 177.371094 82.335938 C 177.253906 82.335938 177.160156 82.429688 177.160156 82.546875 C 177.160156 82.664062 177.253906 82.757812 177.371094 82.757812 C 177.488281 82.757812 177.582031 82.664062 177.582031 82.546875 Z M 177.582031 82.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 177.484375 84.300781 C 177.484375 84.183594 177.390625 84.089844 177.273438 84.089844 C 177.15625 84.089844 177.0625 84.183594 177.0625 84.300781 C 177.0625 84.417969 177.15625 84.511719 177.273438 84.511719 C 177.390625 84.511719 177.484375 84.417969 177.484375 84.300781 Z M 177.484375 84.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 177.679688 82.417969 C 177.679688 82.300781 177.585938 82.207031 177.46875 82.207031 C 177.351562 82.207031 177.257812 82.300781 177.257812 82.417969 C 177.257812 82.535156 177.351562 82.628906 177.46875 82.628906 C 177.585938 82.628906 177.679688 82.535156 177.679688 82.417969 Z M 177.679688 82.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 176.289062 77.621094 C 176.289062 77.503906 176.195312 77.410156 176.078125 77.410156 C 175.960938 77.410156 175.867188 77.503906 175.867188 77.621094 C 175.867188 77.738281 175.960938 77.832031 176.078125 77.832031 C 176.195312 77.832031 176.289062 77.738281 176.289062 77.621094 Z M 176.289062 77.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 176.390625 80.730469 C 176.390625 80.613281 176.296875 80.519531 176.179688 80.519531 C 176.0625 80.519531 175.96875 80.613281 175.96875 80.730469 C 175.96875 80.847656 176.0625 80.941406 176.179688 80.941406 C 176.296875 80.941406 176.390625 80.847656 176.390625 80.730469 Z M 176.390625 80.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.308594 85.015625 C 175.308594 84.898438 175.214844 84.804688 175.097656 84.804688 C 174.980469 84.804688 174.886719 84.898438 174.886719 85.015625 C 174.886719 85.132812 174.980469 85.226562 175.097656 85.226562 C 175.214844 85.226562 175.308594 85.132812 175.308594 85.015625 Z M 175.308594 85.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.300781 86.269531 C 175.300781 86.152344 175.207031 86.058594 175.089844 86.058594 C 174.972656 86.058594 174.878906 86.152344 174.878906 86.269531 C 174.878906 86.386719 174.972656 86.480469 175.089844 86.480469 C 175.207031 86.480469 175.300781 86.386719 175.300781 86.269531 Z M 175.300781 86.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 169.710938 84.71875 C 169.710938 84.601562 169.617188 84.507812 169.5 84.507812 C 169.382812 84.507812 169.289062 84.601562 169.289062 84.71875 C 169.289062 84.835938 169.382812 84.929688 169.5 84.929688 C 169.617188 84.929688 169.710938 84.835938 169.710938 84.71875 Z M 169.710938 84.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 171 84.828125 C 171 84.710938 170.90625 84.617188 170.789062 84.617188 C 170.671875 84.617188 170.578125 84.710938 170.578125 84.828125 C 170.578125 84.945312 170.671875 85.039062 170.789062 85.039062 C 170.90625 85.039062 171 84.945312 171 84.828125 Z M 171 84.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 169.4375 84.34375 C 169.4375 84.226562 169.34375 84.132812 169.226562 84.132812 C 169.109375 84.132812 169.015625 84.226562 169.015625 84.34375 C 169.015625 84.460938 169.109375 84.554688 169.226562 84.554688 C 169.34375 84.554688 169.4375 84.460938 169.4375 84.34375 Z M 169.4375 84.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 169.277344 84.25 C 169.277344 84.132812 169.183594 84.039062 169.066406 84.039062 C 168.949219 84.039062 168.855469 84.132812 168.855469 84.25 C 168.855469 84.367188 168.949219 84.460938 169.066406 84.460938 C 169.183594 84.460938 169.277344 84.367188 169.277344 84.25 Z M 169.277344 84.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 170.445312 85.792969 C 170.445312 85.675781 170.351562 85.582031 170.234375 85.582031 C 170.117188 85.582031 170.023438 85.675781 170.023438 85.792969 C 170.023438 85.910156 170.117188 86.003906 170.234375 86.003906 C 170.351562 86.003906 170.445312 85.910156 170.445312 85.792969 Z M 170.445312 85.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 167.386719 84.902344 C 167.386719 84.785156 167.292969 84.691406 167.175781 84.691406 C 167.058594 84.691406 166.964844 84.785156 166.964844 84.902344 C 166.964844 85.019531 167.058594 85.113281 167.175781 85.113281 C 167.292969 85.113281 167.386719 85.019531 167.386719 84.902344 Z M 167.386719 84.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 167.023438 87.632812 C 167.023438 87.515625 166.929688 87.421875 166.8125 87.421875 C 166.695312 87.421875 166.601562 87.515625 166.601562 87.632812 C 166.601562 87.75 166.695312 87.84375 166.8125 87.84375 C 166.929688 87.84375 167.023438 87.75 167.023438 87.632812 Z M 167.023438 87.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 167.628906 85.351562 C 167.628906 85.234375 167.535156 85.140625 167.417969 85.140625 C 167.300781 85.140625 167.207031 85.234375 167.207031 85.351562 C 167.207031 85.46875 167.300781 85.5625 167.417969 85.5625 C 167.535156 85.5625 167.628906 85.46875 167.628906 85.351562 Z M 167.628906 85.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 168.601562 83.332031 C 168.601562 83.214844 168.507812 83.121094 168.390625 83.121094 C 168.273438 83.121094 168.179688 83.214844 168.179688 83.332031 C 168.179688 83.449219 168.273438 83.542969 168.390625 83.542969 C 168.507812 83.542969 168.601562 83.449219 168.601562 83.332031 Z M 168.601562 83.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 168.355469 84.402344 C 168.355469 84.285156 168.261719 84.191406 168.144531 84.191406 C 168.027344 84.191406 167.933594 84.285156 167.933594 84.402344 C 167.933594 84.519531 168.027344 84.613281 168.144531 84.613281 C 168.261719 84.613281 168.355469 84.519531 168.355469 84.402344 Z M 168.355469 84.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 171.007812 81.917969 C 171.007812 81.800781 170.914062 81.707031 170.796875 81.707031 C 170.679688 81.707031 170.585938 81.800781 170.585938 81.917969 C 170.585938 82.035156 170.679688 82.128906 170.796875 82.128906 C 170.914062 82.128906 171.007812 82.035156 171.007812 81.917969 Z M 171.007812 81.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 172.8125 80.417969 C 172.8125 80.300781 172.71875 80.207031 172.601562 80.207031 C 172.484375 80.207031 172.390625 80.300781 172.390625 80.417969 C 172.390625 80.535156 172.484375 80.628906 172.601562 80.628906 C 172.71875 80.628906 172.8125 80.535156 172.8125 80.417969 Z M 172.8125 80.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 169.957031 81.742188 C 169.957031 81.625 169.863281 81.53125 169.746094 81.53125 C 169.628906 81.53125 169.535156 81.625 169.535156 81.742188 C 169.535156 81.859375 169.628906 81.953125 169.746094 81.953125 C 169.863281 81.953125 169.957031 81.859375 169.957031 81.742188 Z M 169.957031 81.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 169.222656 79.554688 C 169.222656 79.4375 169.128906 79.34375 169.011719 79.34375 C 168.894531 79.34375 168.800781 79.4375 168.800781 79.554688 C 168.800781 79.671875 168.894531 79.765625 169.011719 79.765625 C 169.128906 79.765625 169.222656 79.671875 169.222656 79.554688 Z M 169.222656 79.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 170.019531 81.433594 C 170.019531 81.316406 169.925781 81.222656 169.808594 81.222656 C 169.691406 81.222656 169.597656 81.316406 169.597656 81.433594 C 169.597656 81.550781 169.691406 81.644531 169.808594 81.644531 C 169.925781 81.644531 170.019531 81.550781 170.019531 81.433594 Z M 170.019531 81.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 174.3125 84.320312 C 174.3125 84.203125 174.21875 84.109375 174.101562 84.109375 C 173.984375 84.109375 173.890625 84.203125 173.890625 84.320312 C 173.890625 84.4375 173.984375 84.53125 174.101562 84.53125 C 174.21875 84.53125 174.3125 84.4375 174.3125 84.320312 Z M 174.3125 84.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.003906 84.921875 C 175.003906 84.804688 174.910156 84.710938 174.792969 84.710938 C 174.675781 84.710938 174.582031 84.804688 174.582031 84.921875 C 174.582031 85.039062 174.675781 85.132812 174.792969 85.132812 C 174.910156 85.132812 175.003906 85.039062 175.003906 84.921875 Z M 175.003906 84.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 174.292969 82.671875 C 174.292969 82.554688 174.199219 82.460938 174.082031 82.460938 C 173.964844 82.460938 173.871094 82.554688 173.871094 82.671875 C 173.871094 82.789062 173.964844 82.882812 174.082031 82.882812 C 174.199219 82.882812 174.292969 82.789062 174.292969 82.671875 Z M 174.292969 82.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 171.613281 82.539062 C 171.613281 82.421875 171.519531 82.328125 171.402344 82.328125 C 171.285156 82.328125 171.191406 82.421875 171.191406 82.539062 C 171.191406 82.65625 171.285156 82.75 171.402344 82.75 C 171.519531 82.75 171.613281 82.65625 171.613281 82.539062 Z M 171.613281 82.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 171.851562 78.117188 C 171.851562 78 171.757812 77.90625 171.640625 77.90625 C 171.523438 77.90625 171.429688 78 171.429688 78.117188 C 171.429688 78.234375 171.523438 78.328125 171.640625 78.328125 C 171.757812 78.328125 171.851562 78.234375 171.851562 78.117188 Z M 171.851562 78.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 172.164062 77.199219 C 172.164062 77.082031 172.070312 76.988281 171.953125 76.988281 C 171.835938 76.988281 171.742188 77.082031 171.742188 77.199219 C 171.742188 77.316406 171.835938 77.410156 171.953125 77.410156 C 172.070312 77.410156 172.164062 77.316406 172.164062 77.199219 Z M 172.164062 77.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 169.277344 74.128906 C 169.277344 74.011719 169.183594 73.917969 169.066406 73.917969 C 168.949219 73.917969 168.855469 74.011719 168.855469 74.128906 C 168.855469 74.246094 168.949219 74.339844 169.066406 74.339844 C 169.183594 74.339844 169.277344 74.246094 169.277344 74.128906 Z M 169.277344 74.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 169.660156 73.863281 C 169.660156 73.746094 169.566406 73.652344 169.449219 73.652344 C 169.332031 73.652344 169.238281 73.746094 169.238281 73.863281 C 169.238281 73.980469 169.332031 74.074219 169.449219 74.074219 C 169.566406 74.074219 169.660156 73.980469 169.660156 73.863281 Z M 169.660156 73.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 167.890625 73.667969 C 167.890625 73.550781 167.796875 73.457031 167.679688 73.457031 C 167.5625 73.457031 167.46875 73.550781 167.46875 73.667969 C 167.46875 73.785156 167.5625 73.878906 167.679688 73.878906 C 167.796875 73.878906 167.890625 73.785156 167.890625 73.667969 Z M 167.890625 73.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 171.007812 74.277344 C 171.007812 74.160156 170.914062 74.066406 170.796875 74.066406 C 170.679688 74.066406 170.585938 74.160156 170.585938 74.277344 C 170.585938 74.394531 170.679688 74.488281 170.796875 74.488281 C 170.914062 74.488281 171.007812 74.394531 171.007812 74.277344 Z M 171.007812 74.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 172.269531 69.074219 C 172.269531 68.957031 172.175781 68.863281 172.058594 68.863281 C 171.941406 68.863281 171.847656 68.957031 171.847656 69.074219 C 171.847656 69.191406 171.941406 69.285156 172.058594 69.285156 C 172.175781 69.285156 172.269531 69.191406 172.269531 69.074219 Z M 172.269531 69.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.753906 69.9375 C 175.753906 69.820312 175.660156 69.726562 175.542969 69.726562 C 175.425781 69.726562 175.332031 69.820312 175.332031 69.9375 C 175.332031 70.054688 175.425781 70.148438 175.542969 70.148438 C 175.660156 70.148438 175.753906 70.054688 175.753906 69.9375 Z M 175.753906 69.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 177.160156 63.738281 C 177.160156 63.621094 177.066406 63.527344 176.949219 63.527344 C 176.832031 63.527344 176.738281 63.621094 176.738281 63.738281 C 176.738281 63.855469 176.832031 63.949219 176.949219 63.949219 C 177.066406 63.949219 177.160156 63.855469 177.160156 63.738281 Z M 177.160156 63.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 178.148438 64.316406 C 178.148438 64.199219 178.054688 64.105469 177.9375 64.105469 C 177.820312 64.105469 177.726562 64.199219 177.726562 64.316406 C 177.726562 64.433594 177.820312 64.527344 177.9375 64.527344 C 178.054688 64.527344 178.148438 64.433594 178.148438 64.316406 Z M 178.148438 64.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.003906 65.113281 C 182.003906 64.996094 181.910156 64.902344 181.792969 64.902344 C 181.675781 64.902344 181.582031 64.996094 181.582031 65.113281 C 181.582031 65.230469 181.675781 65.324219 181.792969 65.324219 C 181.910156 65.324219 182.003906 65.230469 182.003906 65.113281 Z M 182.003906 65.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 183.546875 65.40625 C 183.546875 65.289062 183.453125 65.195312 183.335938 65.195312 C 183.21875 65.195312 183.125 65.289062 183.125 65.40625 C 183.125 65.523438 183.21875 65.617188 183.335938 65.617188 C 183.453125 65.617188 183.546875 65.523438 183.546875 65.40625 Z M 183.546875 65.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 182.644531 61.644531 C 182.644531 61.527344 182.550781 61.433594 182.433594 61.433594 C 182.316406 61.433594 182.222656 61.527344 182.222656 61.644531 C 182.222656 61.761719 182.316406 61.855469 182.433594 61.855469 C 182.550781 61.855469 182.644531 61.761719 182.644531 61.644531 Z M 182.644531 61.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 179.417969 61.53125 C 179.417969 61.414062 179.324219 61.320312 179.207031 61.320312 C 179.089844 61.320312 178.996094 61.414062 178.996094 61.53125 C 178.996094 61.648438 179.089844 61.742188 179.207031 61.742188 C 179.324219 61.742188 179.417969 61.648438 179.417969 61.53125 Z M 179.417969 61.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 179.398438 57.570312 C 179.398438 57.453125 179.304688 57.359375 179.1875 57.359375 C 179.070312 57.359375 178.976562 57.453125 178.976562 57.570312 C 178.976562 57.6875 179.070312 57.78125 179.1875 57.78125 C 179.304688 57.78125 179.398438 57.6875 179.398438 57.570312 Z M 179.398438 57.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 177.925781 55.207031 C 177.925781 55.089844 177.832031 54.996094 177.714844 54.996094 C 177.597656 54.996094 177.503906 55.089844 177.503906 55.207031 C 177.503906 55.324219 177.597656 55.417969 177.714844 55.417969 C 177.832031 55.417969 177.925781 55.324219 177.925781 55.207031 Z M 177.925781 55.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 178.304688 54.046875 C 178.304688 53.929688 178.210938 53.835938 178.09375 53.835938 C 177.976562 53.835938 177.882812 53.929688 177.882812 54.046875 C 177.882812 54.164062 177.976562 54.257812 178.09375 54.257812 C 178.210938 54.257812 178.304688 54.164062 178.304688 54.046875 Z M 178.304688 54.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 176.523438 53.328125 C 176.523438 53.210938 176.429688 53.117188 176.3125 53.117188 C 176.195312 53.117188 176.101562 53.210938 176.101562 53.328125 C 176.101562 53.445312 176.195312 53.539062 176.3125 53.539062 C 176.429688 53.539062 176.523438 53.445312 176.523438 53.328125 Z M 176.523438 53.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 174.699219 57.117188 C 174.699219 57 174.605469 56.90625 174.488281 56.90625 C 174.371094 56.90625 174.277344 57 174.277344 57.117188 C 174.277344 57.234375 174.371094 57.328125 174.488281 57.328125 C 174.605469 57.328125 174.699219 57.234375 174.699219 57.117188 Z M 174.699219 57.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 173.691406 59.058594 C 173.691406 58.941406 173.597656 58.847656 173.480469 58.847656 C 173.363281 58.847656 173.269531 58.941406 173.269531 59.058594 C 173.269531 59.175781 173.363281 59.269531 173.480469 59.269531 C 173.597656 59.269531 173.691406 59.175781 173.691406 59.058594 Z M 173.691406 59.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 170.894531 60.265625 C 170.894531 60.148438 170.800781 60.054688 170.683594 60.054688 C 170.566406 60.054688 170.472656 60.148438 170.472656 60.265625 C 170.472656 60.382812 170.566406 60.476562 170.683594 60.476562 C 170.800781 60.476562 170.894531 60.382812 170.894531 60.265625 Z M 170.894531 60.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 166.492188 59.894531 C 166.492188 59.777344 166.398438 59.683594 166.28125 59.683594 C 166.164062 59.683594 166.070312 59.777344 166.070312 59.894531 C 166.070312 60.011719 166.164062 60.105469 166.28125 60.105469 C 166.398438 60.105469 166.492188 60.011719 166.492188 59.894531 Z M 166.492188 59.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 167.675781 63.457031 C 167.675781 63.339844 167.582031 63.246094 167.464844 63.246094 C 167.347656 63.246094 167.253906 63.339844 167.253906 63.457031 C 167.253906 63.574219 167.347656 63.667969 167.464844 63.667969 C 167.582031 63.667969 167.675781 63.574219 167.675781 63.457031 Z M 167.675781 63.457031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 172.386719 59.414062 C 172.386719 59.296875 172.292969 59.203125 172.175781 59.203125 C 172.058594 59.203125 171.964844 59.296875 171.964844 59.414062 C 171.964844 59.53125 172.058594 59.625 172.175781 59.625 C 172.292969 59.625 172.386719 59.53125 172.386719 59.414062 Z M 172.386719 59.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 172.421875 60.617188 C 172.421875 60.5 172.328125 60.40625 172.210938 60.40625 C 172.09375 60.40625 172 60.5 172 60.617188 C 172 60.734375 172.09375 60.828125 172.210938 60.828125 C 172.328125 60.828125 172.421875 60.734375 172.421875 60.617188 Z M 172.421875 60.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 173.773438 56.578125 C 173.773438 56.460938 173.679688 56.367188 173.5625 56.367188 C 173.445312 56.367188 173.351562 56.460938 173.351562 56.578125 C 173.351562 56.695312 173.445312 56.789062 173.5625 56.789062 C 173.679688 56.789062 173.773438 56.695312 173.773438 56.578125 Z M 173.773438 56.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 177.25 56.976562 C 177.25 56.859375 177.15625 56.765625 177.039062 56.765625 C 176.921875 56.765625 176.828125 56.859375 176.828125 56.976562 C 176.828125 57.09375 176.921875 57.1875 177.039062 57.1875 C 177.15625 57.1875 177.25 57.09375 177.25 56.976562 Z M 177.25 56.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 177.234375 55.714844 C 177.234375 55.597656 177.140625 55.503906 177.023438 55.503906 C 176.90625 55.503906 176.8125 55.597656 176.8125 55.714844 C 176.8125 55.832031 176.90625 55.925781 177.023438 55.925781 C 177.140625 55.925781 177.234375 55.832031 177.234375 55.714844 Z M 177.234375 55.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 175.835938 53.140625 C 175.835938 53.023438 175.742188 52.929688 175.625 52.929688 C 175.507812 52.929688 175.414062 53.023438 175.414062 53.140625 C 175.414062 53.257812 175.507812 53.351562 175.625 53.351562 C 175.742188 53.351562 175.835938 53.257812 175.835938 53.140625 Z M 175.835938 53.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 171.207031 52.839844 C 171.207031 52.722656 171.113281 52.628906 170.996094 52.628906 C 170.878906 52.628906 170.785156 52.722656 170.785156 52.839844 C 170.785156 52.957031 170.878906 53.050781 170.996094 53.050781 C 171.113281 53.050781 171.207031 52.957031 171.207031 52.839844 Z M 171.207031 52.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 169.800781 52.554688 C 169.800781 52.4375 169.707031 52.34375 169.589844 52.34375 C 169.472656 52.34375 169.378906 52.4375 169.378906 52.554688 C 169.378906 52.671875 169.472656 52.765625 169.589844 52.765625 C 169.707031 52.765625 169.800781 52.671875 169.800781 52.554688 Z M 169.800781 52.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 170.066406 54.523438 C 170.066406 54.40625 169.972656 54.3125 169.855469 54.3125 C 169.738281 54.3125 169.644531 54.40625 169.644531 54.523438 C 169.644531 54.640625 169.738281 54.734375 169.855469 54.734375 C 169.972656 54.734375 170.066406 54.640625 170.066406 54.523438 Z M 170.066406 54.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 171.503906 52.910156 C 171.503906 52.792969 171.410156 52.699219 171.292969 52.699219 C 171.175781 52.699219 171.082031 52.792969 171.082031 52.910156 C 171.082031 53.027344 171.175781 53.121094 171.292969 53.121094 C 171.410156 53.121094 171.503906 53.027344 171.503906 52.910156 Z M 171.503906 52.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 173.027344 56.097656 C 173.027344 55.980469 172.933594 55.886719 172.816406 55.886719 C 172.699219 55.886719 172.605469 55.980469 172.605469 56.097656 C 172.605469 56.214844 172.699219 56.308594 172.816406 56.308594 C 172.933594 56.308594 173.027344 56.214844 173.027344 56.097656 Z M 173.027344 56.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 171.167969 56.121094 C 171.167969 56.003906 171.074219 55.910156 170.957031 55.910156 C 170.839844 55.910156 170.746094 56.003906 170.746094 56.121094 C 170.746094 56.238281 170.839844 56.332031 170.957031 56.332031 C 171.074219 56.332031 171.167969 56.238281 171.167969 56.121094 Z M 171.167969 56.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 166.359375 54.792969 C 166.359375 54.675781 166.265625 54.582031 166.148438 54.582031 C 166.03125 54.582031 165.9375 54.675781 165.9375 54.792969 C 165.9375 54.910156 166.03125 55.003906 166.148438 55.003906 C 166.265625 55.003906 166.359375 54.910156 166.359375 54.792969 Z M 166.359375 54.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 166.917969 58.546875 C 166.917969 58.429688 166.824219 58.335938 166.707031 58.335938 C 166.589844 58.335938 166.496094 58.429688 166.496094 58.546875 C 166.496094 58.664062 166.589844 58.757812 166.707031 58.757812 C 166.824219 58.757812 166.917969 58.664062 166.917969 58.546875 Z M 166.917969 58.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 165.894531 62.445312 C 165.894531 62.328125 165.800781 62.234375 165.683594 62.234375 C 165.566406 62.234375 165.472656 62.328125 165.472656 62.445312 C 165.472656 62.5625 165.566406 62.65625 165.683594 62.65625 C 165.800781 62.65625 165.894531 62.5625 165.894531 62.445312 Z M 165.894531 62.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 167.515625 63.40625 C 167.515625 63.289062 167.421875 63.195312 167.304688 63.195312 C 167.1875 63.195312 167.09375 63.289062 167.09375 63.40625 C 167.09375 63.523438 167.1875 63.617188 167.304688 63.617188 C 167.421875 63.617188 167.515625 63.523438 167.515625 63.40625 Z M 167.515625 63.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 167.628906 63.367188 C 167.628906 63.25 167.535156 63.15625 167.417969 63.15625 C 167.300781 63.15625 167.207031 63.25 167.207031 63.367188 C 167.207031 63.484375 167.300781 63.578125 167.417969 63.578125 C 167.535156 63.578125 167.628906 63.484375 167.628906 63.367188 Z M 167.628906 63.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 166.308594 62.359375 C 166.308594 62.242188 166.214844 62.148438 166.097656 62.148438 C 165.980469 62.148438 165.886719 62.242188 165.886719 62.359375 C 165.886719 62.476562 165.980469 62.570312 166.097656 62.570312 C 166.214844 62.570312 166.308594 62.476562 166.308594 62.359375 Z M 166.308594 62.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 165.800781 60.207031 C 165.800781 60.089844 165.707031 59.996094 165.589844 59.996094 C 165.472656 59.996094 165.378906 60.089844 165.378906 60.207031 C 165.378906 60.324219 165.472656 60.417969 165.589844 60.417969 C 165.707031 60.417969 165.800781 60.324219 165.800781 60.207031 Z M 165.800781 60.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 164.132812 62.160156 C 164.132812 62.042969 164.039062 61.949219 163.921875 61.949219 C 163.804688 61.949219 163.710938 62.042969 163.710938 62.160156 C 163.710938 62.277344 163.804688 62.371094 163.921875 62.371094 C 164.039062 62.371094 164.132812 62.277344 164.132812 62.160156 Z M 164.132812 62.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 160.53125 65.359375 C 160.53125 65.242188 160.4375 65.148438 160.320312 65.148438 C 160.203125 65.148438 160.109375 65.242188 160.109375 65.359375 C 160.109375 65.476562 160.203125 65.570312 160.320312 65.570312 C 160.4375 65.570312 160.53125 65.476562 160.53125 65.359375 Z M 160.53125 65.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 157.933594 65.375 C 157.933594 65.257812 157.839844 65.164062 157.722656 65.164062 C 157.605469 65.164062 157.511719 65.257812 157.511719 65.375 C 157.511719 65.492188 157.605469 65.585938 157.722656 65.585938 C 157.839844 65.585938 157.933594 65.492188 157.933594 65.375 Z M 157.933594 65.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 158.792969 63.710938 C 158.792969 63.59375 158.699219 63.5 158.582031 63.5 C 158.464844 63.5 158.371094 63.59375 158.371094 63.710938 C 158.371094 63.828125 158.464844 63.921875 158.582031 63.921875 C 158.699219 63.921875 158.792969 63.828125 158.792969 63.710938 Z M 158.792969 63.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 160.222656 64.875 C 160.222656 64.757812 160.128906 64.664062 160.011719 64.664062 C 159.894531 64.664062 159.800781 64.757812 159.800781 64.875 C 159.800781 64.992188 159.894531 65.085938 160.011719 65.085938 C 160.128906 65.085938 160.222656 64.992188 160.222656 64.875 Z M 160.222656 64.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 159.15625 61.691406 C 159.15625 61.574219 159.0625 61.480469 158.945312 61.480469 C 158.828125 61.480469 158.734375 61.574219 158.734375 61.691406 C 158.734375 61.808594 158.828125 61.902344 158.945312 61.902344 C 159.0625 61.902344 159.15625 61.808594 159.15625 61.691406 Z M 159.15625 61.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 157.375 59.203125 C 157.375 59.085938 157.28125 58.992188 157.164062 58.992188 C 157.046875 58.992188 156.953125 59.085938 156.953125 59.203125 C 156.953125 59.320312 157.046875 59.414062 157.164062 59.414062 C 157.28125 59.414062 157.375 59.320312 157.375 59.203125 Z M 157.375 59.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 158.578125 64.003906 C 158.578125 63.886719 158.484375 63.792969 158.367188 63.792969 C 158.25 63.792969 158.15625 63.886719 158.15625 64.003906 C 158.15625 64.121094 158.25 64.214844 158.367188 64.214844 C 158.484375 64.214844 158.578125 64.121094 158.578125 64.003906 Z M 158.578125 64.003906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 160.378906 62.472656 C 160.378906 62.355469 160.285156 62.261719 160.167969 62.261719 C 160.050781 62.261719 159.957031 62.355469 159.957031 62.472656 C 159.957031 62.589844 160.050781 62.683594 160.167969 62.683594 C 160.285156 62.683594 160.378906 62.589844 160.378906 62.472656 Z M 160.378906 62.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 161.910156 60.449219 C 161.910156 60.332031 161.816406 60.238281 161.699219 60.238281 C 161.582031 60.238281 161.488281 60.332031 161.488281 60.449219 C 161.488281 60.566406 161.582031 60.660156 161.699219 60.660156 C 161.816406 60.660156 161.910156 60.566406 161.910156 60.449219 Z M 161.910156 60.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 164.101562 60.757812 C 164.101562 60.640625 164.007812 60.546875 163.890625 60.546875 C 163.773438 60.546875 163.679688 60.640625 163.679688 60.757812 C 163.679688 60.875 163.773438 60.96875 163.890625 60.96875 C 164.007812 60.96875 164.101562 60.875 164.101562 60.757812 Z M 164.101562 60.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 164.957031 59.621094 C 164.957031 59.503906 164.863281 59.410156 164.746094 59.410156 C 164.628906 59.410156 164.535156 59.503906 164.535156 59.621094 C 164.535156 59.738281 164.628906 59.832031 164.746094 59.832031 C 164.863281 59.832031 164.957031 59.738281 164.957031 59.621094 Z M 164.957031 59.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 164.714844 57.816406 C 164.714844 57.699219 164.621094 57.605469 164.503906 57.605469 C 164.386719 57.605469 164.292969 57.699219 164.292969 57.816406 C 164.292969 57.933594 164.386719 58.027344 164.503906 58.027344 C 164.621094 58.027344 164.714844 57.933594 164.714844 57.816406 Z M 164.714844 57.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 162.179688 54.097656 C 162.179688 53.980469 162.085938 53.886719 161.96875 53.886719 C 161.851562 53.886719 161.757812 53.980469 161.757812 54.097656 C 161.757812 54.214844 161.851562 54.308594 161.96875 54.308594 C 162.085938 54.308594 162.179688 54.214844 162.179688 54.097656 Z M 162.179688 54.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 163.375 54.5 C 163.375 54.382812 163.28125 54.289062 163.164062 54.289062 C 163.046875 54.289062 162.953125 54.382812 162.953125 54.5 C 162.953125 54.617188 163.046875 54.710938 163.164062 54.710938 C 163.28125 54.710938 163.375 54.617188 163.375 54.5 Z M 163.375 54.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 164.316406 54.414062 C 164.316406 54.296875 164.222656 54.203125 164.105469 54.203125 C 163.988281 54.203125 163.894531 54.296875 163.894531 54.414062 C 163.894531 54.53125 163.988281 54.625 164.105469 54.625 C 164.222656 54.625 164.316406 54.53125 164.316406 54.414062 Z M 164.316406 54.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 160.507812 56.171875 C 160.507812 56.054688 160.414062 55.960938 160.296875 55.960938 C 160.179688 55.960938 160.085938 56.054688 160.085938 56.171875 C 160.085938 56.289062 160.179688 56.382812 160.296875 56.382812 C 160.414062 56.382812 160.507812 56.289062 160.507812 56.171875 Z M 160.507812 56.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 160.582031 55.472656 C 160.582031 55.355469 160.488281 55.261719 160.371094 55.261719 C 160.253906 55.261719 160.160156 55.355469 160.160156 55.472656 C 160.160156 55.589844 160.253906 55.683594 160.371094 55.683594 C 160.488281 55.683594 160.582031 55.589844 160.582031 55.472656 Z M 160.582031 55.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 161.800781 56.6875 C 161.800781 56.570312 161.707031 56.476562 161.589844 56.476562 C 161.472656 56.476562 161.378906 56.570312 161.378906 56.6875 C 161.378906 56.804688 161.472656 56.898438 161.589844 56.898438 C 161.707031 56.898438 161.800781 56.804688 161.800781 56.6875 Z M 161.800781 56.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 162.34375 54.625 C 162.34375 54.507812 162.25 54.414062 162.132812 54.414062 C 162.015625 54.414062 161.921875 54.507812 161.921875 54.625 C 161.921875 54.742188 162.015625 54.835938 162.132812 54.835938 C 162.25 54.835938 162.34375 54.742188 162.34375 54.625 Z M 162.34375 54.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 159.910156 57.902344 C 159.910156 57.785156 159.816406 57.691406 159.699219 57.691406 C 159.582031 57.691406 159.488281 57.785156 159.488281 57.902344 C 159.488281 58.019531 159.582031 58.113281 159.699219 58.113281 C 159.816406 58.113281 159.910156 58.019531 159.910156 57.902344 Z M 159.910156 57.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 162.421875 61.632812 C 162.421875 61.515625 162.328125 61.421875 162.210938 61.421875 C 162.09375 61.421875 162 61.515625 162 61.632812 C 162 61.75 162.09375 61.84375 162.210938 61.84375 C 162.328125 61.84375 162.421875 61.75 162.421875 61.632812 Z M 162.421875 61.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 163.484375 60.0625 C 163.484375 59.945312 163.390625 59.851562 163.273438 59.851562 C 163.15625 59.851562 163.0625 59.945312 163.0625 60.0625 C 163.0625 60.179688 163.15625 60.273438 163.273438 60.273438 C 163.390625 60.273438 163.484375 60.179688 163.484375 60.0625 Z M 163.484375 60.0625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 165.5625 56.164062 C 165.5625 56.046875 165.46875 55.953125 165.351562 55.953125 C 165.234375 55.953125 165.140625 56.046875 165.140625 56.164062 C 165.140625 56.28125 165.234375 56.375 165.351562 56.375 C 165.46875 56.375 165.5625 56.28125 165.5625 56.164062 Z M 165.5625 56.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 163.796875 53.347656 C 163.796875 53.230469 163.703125 53.136719 163.585938 53.136719 C 163.46875 53.136719 163.375 53.230469 163.375 53.347656 C 163.375 53.464844 163.46875 53.558594 163.585938 53.558594 C 163.703125 53.558594 163.796875 53.464844 163.796875 53.347656 Z M 163.796875 53.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 163.359375 53.171875 C 163.359375 53.054688 163.265625 52.960938 163.148438 52.960938 C 163.03125 52.960938 162.9375 53.054688 162.9375 53.171875 C 162.9375 53.289062 163.03125 53.382812 163.148438 53.382812 C 163.265625 53.382812 163.359375 53.289062 163.359375 53.171875 Z M 163.359375 53.171875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 165.738281 50.316406 C 165.738281 50.199219 165.644531 50.105469 165.527344 50.105469 C 165.410156 50.105469 165.316406 50.199219 165.316406 50.316406 C 165.316406 50.433594 165.410156 50.527344 165.527344 50.527344 C 165.644531 50.527344 165.738281 50.433594 165.738281 50.316406 Z M 165.738281 50.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 168.261719 51.585938 C 168.261719 51.46875 168.167969 51.375 168.050781 51.375 C 167.933594 51.375 167.839844 51.46875 167.839844 51.585938 C 167.839844 51.703125 167.933594 51.796875 168.050781 51.796875 C 168.167969 51.796875 168.261719 51.703125 168.261719 51.585938 Z M 168.261719 51.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 170.605469 53.117188 C 170.605469 53 170.511719 52.90625 170.394531 52.90625 C 170.277344 52.90625 170.183594 53 170.183594 53.117188 C 170.183594 53.234375 170.277344 53.328125 170.394531 53.328125 C 170.511719 53.328125 170.605469 53.234375 170.605469 53.117188 Z M 170.605469 53.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 170.851562 51.578125 C 170.851562 51.460938 170.757812 51.367188 170.640625 51.367188 C 170.523438 51.367188 170.429688 51.460938 170.429688 51.578125 C 170.429688 51.695312 170.523438 51.789062 170.640625 51.789062 C 170.757812 51.789062 170.851562 51.695312 170.851562 51.578125 Z M 170.851562 51.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 168.019531 50.925781 C 168.019531 50.808594 167.925781 50.714844 167.808594 50.714844 C 167.691406 50.714844 167.597656 50.808594 167.597656 50.925781 C 167.597656 51.042969 167.691406 51.136719 167.808594 51.136719 C 167.925781 51.136719 168.019531 51.042969 168.019531 50.925781 Z M 168.019531 50.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 167.246094 50.996094 C 167.246094 50.878906 167.152344 50.785156 167.035156 50.785156 C 166.917969 50.785156 166.824219 50.878906 166.824219 50.996094 C 166.824219 51.113281 166.917969 51.207031 167.035156 51.207031 C 167.152344 51.207031 167.246094 51.113281 167.246094 50.996094 Z M 167.246094 50.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 169.046875 53.558594 C 169.046875 53.441406 168.953125 53.347656 168.835938 53.347656 C 168.71875 53.347656 168.625 53.441406 168.625 53.558594 C 168.625 53.675781 168.71875 53.769531 168.835938 53.769531 C 168.953125 53.769531 169.046875 53.675781 169.046875 53.558594 Z M 169.046875 53.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 172.15625 53.414062 C 172.15625 53.296875 172.0625 53.203125 171.945312 53.203125 C 171.828125 53.203125 171.734375 53.296875 171.734375 53.414062 C 171.734375 53.53125 171.828125 53.625 171.945312 53.625 C 172.0625 53.625 172.15625 53.53125 172.15625 53.414062 Z M 172.15625 53.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 172.042969 53.226562 C 172.042969 53.109375 171.949219 53.015625 171.832031 53.015625 C 171.714844 53.015625 171.621094 53.109375 171.621094 53.226562 C 171.621094 53.34375 171.714844 53.4375 171.832031 53.4375 C 171.949219 53.4375 172.042969 53.34375 172.042969 53.226562 Z M 172.042969 53.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 168.746094 52.136719 C 168.746094 52.019531 168.652344 51.925781 168.535156 51.925781 C 168.417969 51.925781 168.324219 52.019531 168.324219 52.136719 C 168.324219 52.253906 168.417969 52.347656 168.535156 52.347656 C 168.652344 52.347656 168.746094 52.253906 168.746094 52.136719 Z M 168.746094 52.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 168.015625 49.878906 C 168.015625 49.761719 167.921875 49.667969 167.804688 49.667969 C 167.6875 49.667969 167.59375 49.761719 167.59375 49.878906 C 167.59375 49.996094 167.6875 50.089844 167.804688 50.089844 C 167.921875 50.089844 168.015625 49.996094 168.015625 49.878906 Z M 168.015625 49.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 168.269531 50.90625 C 168.269531 50.789062 168.175781 50.695312 168.058594 50.695312 C 167.941406 50.695312 167.847656 50.789062 167.847656 50.90625 C 167.847656 51.023438 167.941406 51.117188 168.058594 51.117188 C 168.175781 51.117188 168.269531 51.023438 168.269531 50.90625 Z M 168.269531 50.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 163.429688 50.660156 C 163.429688 50.542969 163.335938 50.449219 163.21875 50.449219 C 163.101562 50.449219 163.007812 50.542969 163.007812 50.660156 C 163.007812 50.777344 163.101562 50.871094 163.21875 50.871094 C 163.335938 50.871094 163.429688 50.777344 163.429688 50.660156 Z M 163.429688 50.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 160.878906 49.40625 C 160.878906 49.289062 160.785156 49.195312 160.667969 49.195312 C 160.550781 49.195312 160.457031 49.289062 160.457031 49.40625 C 160.457031 49.523438 160.550781 49.617188 160.667969 49.617188 C 160.785156 49.617188 160.878906 49.523438 160.878906 49.40625 Z M 160.878906 49.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 159.859375 51.523438 C 159.859375 51.40625 159.765625 51.3125 159.648438 51.3125 C 159.53125 51.3125 159.4375 51.40625 159.4375 51.523438 C 159.4375 51.640625 159.53125 51.734375 159.648438 51.734375 C 159.765625 51.734375 159.859375 51.640625 159.859375 51.523438 Z M 159.859375 51.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 159.160156 52.15625 C 159.160156 52.039062 159.066406 51.945312 158.949219 51.945312 C 158.832031 51.945312 158.738281 52.039062 158.738281 52.15625 C 158.738281 52.273438 158.832031 52.367188 158.949219 52.367188 C 159.066406 52.367188 159.160156 52.273438 159.160156 52.15625 Z M 159.160156 52.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 158.703125 49.867188 C 158.703125 49.75 158.609375 49.65625 158.492188 49.65625 C 158.375 49.65625 158.28125 49.75 158.28125 49.867188 C 158.28125 49.984375 158.375 50.078125 158.492188 50.078125 C 158.609375 50.078125 158.703125 49.984375 158.703125 49.867188 Z M 158.703125 49.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 155.652344 48.121094 C 155.652344 48.003906 155.558594 47.910156 155.441406 47.910156 C 155.324219 47.910156 155.230469 48.003906 155.230469 48.121094 C 155.230469 48.238281 155.324219 48.332031 155.441406 48.332031 C 155.558594 48.332031 155.652344 48.238281 155.652344 48.121094 Z M 155.652344 48.121094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 153.386719 46.503906 C 153.386719 46.386719 153.292969 46.292969 153.175781 46.292969 C 153.058594 46.292969 152.964844 46.386719 152.964844 46.503906 C 152.964844 46.621094 153.058594 46.714844 153.175781 46.714844 C 153.292969 46.714844 153.386719 46.621094 153.386719 46.503906 Z M 153.386719 46.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 152.675781 47.316406 C 152.675781 47.199219 152.582031 47.105469 152.464844 47.105469 C 152.347656 47.105469 152.253906 47.199219 152.253906 47.316406 C 152.253906 47.433594 152.347656 47.527344 152.464844 47.527344 C 152.582031 47.527344 152.675781 47.433594 152.675781 47.316406 Z M 152.675781 47.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 150.136719 46.636719 C 150.136719 46.519531 150.042969 46.425781 149.925781 46.425781 C 149.808594 46.425781 149.714844 46.519531 149.714844 46.636719 C 149.714844 46.753906 149.808594 46.847656 149.925781 46.847656 C 150.042969 46.847656 150.136719 46.753906 150.136719 46.636719 Z M 150.136719 46.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 146.230469 47.738281 C 146.230469 47.621094 146.136719 47.527344 146.019531 47.527344 C 145.902344 47.527344 145.808594 47.621094 145.808594 47.738281 C 145.808594 47.855469 145.902344 47.949219 146.019531 47.949219 C 146.136719 47.949219 146.230469 47.855469 146.230469 47.738281 Z M 146.230469 47.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 148.804688 40.472656 C 148.804688 40.355469 148.710938 40.261719 148.59375 40.261719 C 148.476562 40.261719 148.382812 40.355469 148.382812 40.472656 C 148.382812 40.589844 148.476562 40.683594 148.59375 40.683594 C 148.710938 40.683594 148.804688 40.589844 148.804688 40.472656 Z M 148.804688 40.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 145.328125 43.601562 C 145.328125 43.484375 145.234375 43.390625 145.117188 43.390625 C 145 43.390625 144.90625 43.484375 144.90625 43.601562 C 144.90625 43.71875 145 43.8125 145.117188 43.8125 C 145.234375 43.8125 145.328125 43.71875 145.328125 43.601562 Z M 145.328125 43.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 145.660156 44.871094 C 145.660156 44.753906 145.566406 44.660156 145.449219 44.660156 C 145.332031 44.660156 145.238281 44.753906 145.238281 44.871094 C 145.238281 44.988281 145.332031 45.082031 145.449219 45.082031 C 145.566406 45.082031 145.660156 44.988281 145.660156 44.871094 Z M 145.660156 44.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 145.242188 45.671875 C 145.242188 45.554688 145.148438 45.460938 145.03125 45.460938 C 144.914062 45.460938 144.820312 45.554688 144.820312 45.671875 C 144.820312 45.789062 144.914062 45.882812 145.03125 45.882812 C 145.148438 45.882812 145.242188 45.789062 145.242188 45.671875 Z M 145.242188 45.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 148.824219 43.617188 C 148.824219 43.5 148.730469 43.40625 148.613281 43.40625 C 148.496094 43.40625 148.402344 43.5 148.402344 43.617188 C 148.402344 43.734375 148.496094 43.828125 148.613281 43.828125 C 148.730469 43.828125 148.824219 43.734375 148.824219 43.617188 Z M 148.824219 43.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 150.957031 43.78125 C 150.957031 43.664062 150.863281 43.570312 150.746094 43.570312 C 150.628906 43.570312 150.535156 43.664062 150.535156 43.78125 C 150.535156 43.898438 150.628906 43.992188 150.746094 43.992188 C 150.863281 43.992188 150.957031 43.898438 150.957031 43.78125 Z M 150.957031 43.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 153.558594 45.027344 C 153.558594 44.910156 153.464844 44.816406 153.347656 44.816406 C 153.230469 44.816406 153.136719 44.910156 153.136719 45.027344 C 153.136719 45.144531 153.230469 45.238281 153.347656 45.238281 C 153.464844 45.238281 153.558594 45.144531 153.558594 45.027344 Z M 153.558594 45.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 152.507812 45.277344 C 152.507812 45.160156 152.414062 45.066406 152.296875 45.066406 C 152.179688 45.066406 152.085938 45.160156 152.085938 45.277344 C 152.085938 45.394531 152.179688 45.488281 152.296875 45.488281 C 152.414062 45.488281 152.507812 45.394531 152.507812 45.277344 Z M 152.507812 45.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 152.390625 46.832031 C 152.390625 46.714844 152.296875 46.621094 152.179688 46.621094 C 152.0625 46.621094 151.96875 46.714844 151.96875 46.832031 C 151.96875 46.949219 152.0625 47.042969 152.179688 47.042969 C 152.296875 47.042969 152.390625 46.949219 152.390625 46.832031 Z M 152.390625 46.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 152.152344 48.152344 C 152.152344 48.035156 152.058594 47.941406 151.941406 47.941406 C 151.824219 47.941406 151.730469 48.035156 151.730469 48.152344 C 151.730469 48.269531 151.824219 48.363281 151.941406 48.363281 C 152.058594 48.363281 152.152344 48.269531 152.152344 48.152344 Z M 152.152344 48.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 150.875 47.425781 C 150.875 47.308594 150.78125 47.214844 150.664062 47.214844 C 150.546875 47.214844 150.453125 47.308594 150.453125 47.425781 C 150.453125 47.542969 150.546875 47.636719 150.664062 47.636719 C 150.78125 47.636719 150.875 47.542969 150.875 47.425781 Z M 150.875 47.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 151.269531 47.488281 C 151.269531 47.371094 151.175781 47.277344 151.058594 47.277344 C 150.941406 47.277344 150.847656 47.371094 150.847656 47.488281 C 150.847656 47.605469 150.941406 47.699219 151.058594 47.699219 C 151.175781 47.699219 151.269531 47.605469 151.269531 47.488281 Z M 151.269531 47.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 149.082031 52.476562 C 149.082031 52.359375 148.988281 52.265625 148.871094 52.265625 C 148.753906 52.265625 148.660156 52.359375 148.660156 52.476562 C 148.660156 52.59375 148.753906 52.6875 148.871094 52.6875 C 148.988281 52.6875 149.082031 52.59375 149.082031 52.476562 Z M 149.082031 52.476562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 148.71875 53.773438 C 148.71875 53.65625 148.625 53.5625 148.507812 53.5625 C 148.390625 53.5625 148.296875 53.65625 148.296875 53.773438 C 148.296875 53.890625 148.390625 53.984375 148.507812 53.984375 C 148.625 53.984375 148.71875 53.890625 148.71875 53.773438 Z M 148.71875 53.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 151.085938 54.378906 C 151.085938 54.261719 150.992188 54.167969 150.875 54.167969 C 150.757812 54.167969 150.664062 54.261719 150.664062 54.378906 C 150.664062 54.496094 150.757812 54.589844 150.875 54.589844 C 150.992188 54.589844 151.085938 54.496094 151.085938 54.378906 Z M 151.085938 54.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 149.996094 58.769531 C 149.996094 58.652344 149.902344 58.558594 149.785156 58.558594 C 149.667969 58.558594 149.574219 58.652344 149.574219 58.769531 C 149.574219 58.886719 149.667969 58.980469 149.785156 58.980469 C 149.902344 58.980469 149.996094 58.886719 149.996094 58.769531 Z M 149.996094 58.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 149.792969 58.242188 C 149.792969 58.125 149.699219 58.03125 149.582031 58.03125 C 149.464844 58.03125 149.371094 58.125 149.371094 58.242188 C 149.371094 58.359375 149.464844 58.453125 149.582031 58.453125 C 149.699219 58.453125 149.792969 58.359375 149.792969 58.242188 Z M 149.792969 58.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 151.417969 59.832031 C 151.417969 59.714844 151.324219 59.621094 151.207031 59.621094 C 151.089844 59.621094 150.996094 59.714844 150.996094 59.832031 C 150.996094 59.949219 151.089844 60.042969 151.207031 60.042969 C 151.324219 60.042969 151.417969 59.949219 151.417969 59.832031 Z M 151.417969 59.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 153.496094 58.316406 C 153.496094 58.199219 153.402344 58.105469 153.285156 58.105469 C 153.167969 58.105469 153.074219 58.199219 153.074219 58.316406 C 153.074219 58.433594 153.167969 58.527344 153.285156 58.527344 C 153.402344 58.527344 153.496094 58.433594 153.496094 58.316406 Z M 153.496094 58.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 152.394531 60.980469 C 152.394531 60.863281 152.300781 60.769531 152.183594 60.769531 C 152.066406 60.769531 151.972656 60.863281 151.972656 60.980469 C 151.972656 61.097656 152.066406 61.191406 152.183594 61.191406 C 152.300781 61.191406 152.394531 61.097656 152.394531 60.980469 Z M 152.394531 60.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 156.917969 59.726562 C 156.917969 59.609375 156.824219 59.515625 156.707031 59.515625 C 156.589844 59.515625 156.496094 59.609375 156.496094 59.726562 C 156.496094 59.84375 156.589844 59.9375 156.707031 59.9375 C 156.824219 59.9375 156.917969 59.84375 156.917969 59.726562 Z M 156.917969 59.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 155.53125 58.074219 C 155.53125 57.957031 155.4375 57.863281 155.320312 57.863281 C 155.203125 57.863281 155.109375 57.957031 155.109375 58.074219 C 155.109375 58.191406 155.203125 58.285156 155.320312 58.285156 C 155.4375 58.285156 155.53125 58.191406 155.53125 58.074219 Z M 155.53125 58.074219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 155.523438 60.222656 C 155.523438 60.105469 155.429688 60.011719 155.3125 60.011719 C 155.195312 60.011719 155.101562 60.105469 155.101562 60.222656 C 155.101562 60.339844 155.195312 60.433594 155.3125 60.433594 C 155.429688 60.433594 155.523438 60.339844 155.523438 60.222656 Z M 155.523438 60.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 153.117188 62.355469 C 153.117188 62.238281 153.023438 62.144531 152.90625 62.144531 C 152.789062 62.144531 152.695312 62.238281 152.695312 62.355469 C 152.695312 62.472656 152.789062 62.566406 152.90625 62.566406 C 153.023438 62.566406 153.117188 62.472656 153.117188 62.355469 Z M 153.117188 62.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 148.464844 61.160156 C 148.464844 61.042969 148.371094 60.949219 148.253906 60.949219 C 148.136719 60.949219 148.042969 61.042969 148.042969 61.160156 C 148.042969 61.277344 148.136719 61.371094 148.253906 61.371094 C 148.371094 61.371094 148.464844 61.277344 148.464844 61.160156 Z M 148.464844 61.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 151.988281 62.875 C 151.988281 62.757812 151.894531 62.664062 151.777344 62.664062 C 151.660156 62.664062 151.566406 62.757812 151.566406 62.875 C 151.566406 62.992188 151.660156 63.085938 151.777344 63.085938 C 151.894531 63.085938 151.988281 62.992188 151.988281 62.875 Z M 151.988281 62.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 153.828125 63.742188 C 153.828125 63.625 153.734375 63.53125 153.617188 63.53125 C 153.5 63.53125 153.40625 63.625 153.40625 63.742188 C 153.40625 63.859375 153.5 63.953125 153.617188 63.953125 C 153.734375 63.953125 153.828125 63.859375 153.828125 63.742188 Z M 153.828125 63.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 155.625 60.566406 C 155.625 60.449219 155.53125 60.355469 155.414062 60.355469 C 155.296875 60.355469 155.203125 60.449219 155.203125 60.566406 C 155.203125 60.683594 155.296875 60.777344 155.414062 60.777344 C 155.53125 60.777344 155.625 60.683594 155.625 60.566406 Z M 155.625 60.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 152.875 60.542969 C 152.875 60.425781 152.78125 60.332031 152.664062 60.332031 C 152.546875 60.332031 152.453125 60.425781 152.453125 60.542969 C 152.453125 60.660156 152.546875 60.753906 152.664062 60.753906 C 152.78125 60.753906 152.875 60.660156 152.875 60.542969 Z M 152.875 60.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 154.308594 60.160156 C 154.308594 60.042969 154.214844 59.949219 154.097656 59.949219 C 153.980469 59.949219 153.886719 60.042969 153.886719 60.160156 C 153.886719 60.277344 153.980469 60.371094 154.097656 60.371094 C 154.214844 60.371094 154.308594 60.277344 154.308594 60.160156 Z M 154.308594 60.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 151.789062 66.933594 C 151.789062 66.816406 151.695312 66.722656 151.578125 66.722656 C 151.460938 66.722656 151.367188 66.816406 151.367188 66.933594 C 151.367188 67.050781 151.460938 67.144531 151.578125 67.144531 C 151.695312 67.144531 151.789062 67.050781 151.789062 66.933594 Z M 151.789062 66.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 152.714844 62.507812 C 152.714844 62.390625 152.621094 62.296875 152.503906 62.296875 C 152.386719 62.296875 152.292969 62.390625 152.292969 62.507812 C 152.292969 62.625 152.386719 62.71875 152.503906 62.71875 C 152.621094 62.71875 152.714844 62.625 152.714844 62.507812 Z M 152.714844 62.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 149.699219 60.40625 C 149.699219 60.289062 149.605469 60.195312 149.488281 60.195312 C 149.371094 60.195312 149.277344 60.289062 149.277344 60.40625 C 149.277344 60.523438 149.371094 60.617188 149.488281 60.617188 C 149.605469 60.617188 149.699219 60.523438 149.699219 60.40625 Z M 149.699219 60.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 146.875 55.535156 C 146.875 55.417969 146.78125 55.324219 146.664062 55.324219 C 146.546875 55.324219 146.453125 55.417969 146.453125 55.535156 C 146.453125 55.652344 146.546875 55.746094 146.664062 55.746094 C 146.78125 55.746094 146.875 55.652344 146.875 55.535156 Z M 146.875 55.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 148.925781 61.605469 C 148.925781 61.488281 148.832031 61.394531 148.714844 61.394531 C 148.597656 61.394531 148.503906 61.488281 148.503906 61.605469 C 148.503906 61.722656 148.597656 61.816406 148.714844 61.816406 C 148.832031 61.816406 148.925781 61.722656 148.925781 61.605469 Z M 148.925781 61.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 149.4375 61.230469 C 149.4375 61.113281 149.34375 61.019531 149.226562 61.019531 C 149.109375 61.019531 149.015625 61.113281 149.015625 61.230469 C 149.015625 61.347656 149.109375 61.441406 149.226562 61.441406 C 149.34375 61.441406 149.4375 61.347656 149.4375 61.230469 Z M 149.4375 61.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 149.464844 59.359375 C 149.464844 59.242188 149.371094 59.148438 149.253906 59.148438 C 149.136719 59.148438 149.042969 59.242188 149.042969 59.359375 C 149.042969 59.476562 149.136719 59.570312 149.253906 59.570312 C 149.371094 59.570312 149.464844 59.476562 149.464844 59.359375 Z M 149.464844 59.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 148 58.28125 C 148 58.164062 147.90625 58.070312 147.789062 58.070312 C 147.671875 58.070312 147.578125 58.164062 147.578125 58.28125 C 147.578125 58.398438 147.671875 58.492188 147.789062 58.492188 C 147.90625 58.492188 148 58.398438 148 58.28125 Z M 148 58.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 144.746094 56.382812 C 144.746094 56.265625 144.652344 56.171875 144.535156 56.171875 C 144.417969 56.171875 144.324219 56.265625 144.324219 56.382812 C 144.324219 56.5 144.417969 56.59375 144.535156 56.59375 C 144.652344 56.59375 144.746094 56.5 144.746094 56.382812 Z M 144.746094 56.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 144.535156 58.492188 C 144.535156 58.375 144.441406 58.28125 144.324219 58.28125 C 144.207031 58.28125 144.113281 58.375 144.113281 58.492188 C 144.113281 58.609375 144.207031 58.703125 144.324219 58.703125 C 144.441406 58.703125 144.535156 58.609375 144.535156 58.492188 Z M 144.535156 58.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 142.785156 58.546875 C 142.785156 58.429688 142.691406 58.335938 142.574219 58.335938 C 142.457031 58.335938 142.363281 58.429688 142.363281 58.546875 C 142.363281 58.664062 142.457031 58.757812 142.574219 58.757812 C 142.691406 58.757812 142.785156 58.664062 142.785156 58.546875 Z M 142.785156 58.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 141.71875 59.085938 C 141.71875 58.96875 141.625 58.875 141.507812 58.875 C 141.390625 58.875 141.296875 58.96875 141.296875 59.085938 C 141.296875 59.203125 141.390625 59.296875 141.507812 59.296875 C 141.625 59.296875 141.71875 59.203125 141.71875 59.085938 Z M 141.71875 59.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 140.601562 61.292969 C 140.601562 61.175781 140.507812 61.082031 140.390625 61.082031 C 140.273438 61.082031 140.179688 61.175781 140.179688 61.292969 C 140.179688 61.410156 140.273438 61.503906 140.390625 61.503906 C 140.507812 61.503906 140.601562 61.410156 140.601562 61.292969 Z M 140.601562 61.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 140.625 61.699219 C 140.625 61.582031 140.53125 61.488281 140.414062 61.488281 C 140.296875 61.488281 140.203125 61.582031 140.203125 61.699219 C 140.203125 61.816406 140.296875 61.910156 140.414062 61.910156 C 140.53125 61.910156 140.625 61.816406 140.625 61.699219 Z M 140.625 61.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 139.699219 63.421875 C 139.699219 63.304688 139.605469 63.210938 139.488281 63.210938 C 139.371094 63.210938 139.277344 63.304688 139.277344 63.421875 C 139.277344 63.539062 139.371094 63.632812 139.488281 63.632812 C 139.605469 63.632812 139.699219 63.539062 139.699219 63.421875 Z M 139.699219 63.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 138.964844 66.875 C 138.964844 66.757812 138.871094 66.664062 138.753906 66.664062 C 138.636719 66.664062 138.542969 66.757812 138.542969 66.875 C 138.542969 66.992188 138.636719 67.085938 138.753906 67.085938 C 138.871094 67.085938 138.964844 66.992188 138.964844 66.875 Z M 138.964844 66.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 136.523438 67.207031 C 136.523438 67.089844 136.429688 66.996094 136.3125 66.996094 C 136.195312 66.996094 136.101562 67.089844 136.101562 67.207031 C 136.101562 67.324219 136.195312 67.417969 136.3125 67.417969 C 136.429688 67.417969 136.523438 67.324219 136.523438 67.207031 Z M 136.523438 67.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 136.46875 67.054688 C 136.46875 66.9375 136.375 66.84375 136.257812 66.84375 C 136.140625 66.84375 136.046875 66.9375 136.046875 67.054688 C 136.046875 67.171875 136.140625 67.265625 136.257812 67.265625 C 136.375 67.265625 136.46875 67.171875 136.46875 67.054688 Z M 136.46875 67.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 134.628906 69.242188 C 134.628906 69.125 134.535156 69.03125 134.417969 69.03125 C 134.300781 69.03125 134.207031 69.125 134.207031 69.242188 C 134.207031 69.359375 134.300781 69.453125 134.417969 69.453125 C 134.535156 69.453125 134.628906 69.359375 134.628906 69.242188 Z M 134.628906 69.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 138.375 67.089844 C 138.375 66.972656 138.28125 66.878906 138.164062 66.878906 C 138.046875 66.878906 137.953125 66.972656 137.953125 67.089844 C 137.953125 67.207031 138.046875 67.300781 138.164062 67.300781 C 138.28125 67.300781 138.375 67.207031 138.375 67.089844 Z M 138.375 67.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.113281 63.953125 C 135.113281 63.835938 135.019531 63.742188 134.902344 63.742188 C 134.785156 63.742188 134.691406 63.835938 134.691406 63.953125 C 134.691406 64.070312 134.785156 64.164062 134.902344 64.164062 C 135.019531 64.164062 135.113281 64.070312 135.113281 63.953125 Z M 135.113281 63.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 134.097656 60.664062 C 134.097656 60.546875 134.003906 60.453125 133.886719 60.453125 C 133.769531 60.453125 133.675781 60.546875 133.675781 60.664062 C 133.675781 60.78125 133.769531 60.875 133.886719 60.875 C 134.003906 60.875 134.097656 60.78125 134.097656 60.664062 Z M 134.097656 60.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.328125 54.289062 C 133.328125 54.171875 133.234375 54.078125 133.117188 54.078125 C 133 54.078125 132.90625 54.171875 132.90625 54.289062 C 132.90625 54.40625 133 54.5 133.117188 54.5 C 133.234375 54.5 133.328125 54.40625 133.328125 54.289062 Z M 133.328125 54.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.554688 53.8125 C 133.554688 53.695312 133.460938 53.601562 133.34375 53.601562 C 133.226562 53.601562 133.132812 53.695312 133.132812 53.8125 C 133.132812 53.929688 133.226562 54.023438 133.34375 54.023438 C 133.460938 54.023438 133.554688 53.929688 133.554688 53.8125 Z M 133.554688 53.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 131.4375 56.378906 C 131.4375 56.261719 131.34375 56.167969 131.226562 56.167969 C 131.109375 56.167969 131.015625 56.261719 131.015625 56.378906 C 131.015625 56.496094 131.109375 56.589844 131.226562 56.589844 C 131.34375 56.589844 131.4375 56.496094 131.4375 56.378906 Z M 131.4375 56.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 134.140625 55.734375 C 134.140625 55.617188 134.046875 55.523438 133.929688 55.523438 C 133.8125 55.523438 133.71875 55.617188 133.71875 55.734375 C 133.71875 55.851562 133.8125 55.945312 133.929688 55.945312 C 134.046875 55.945312 134.140625 55.851562 134.140625 55.734375 Z M 134.140625 55.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.988281 57.300781 C 132.988281 57.183594 132.894531 57.089844 132.777344 57.089844 C 132.660156 57.089844 132.566406 57.183594 132.566406 57.300781 C 132.566406 57.417969 132.660156 57.511719 132.777344 57.511719 C 132.894531 57.511719 132.988281 57.417969 132.988281 57.300781 Z M 132.988281 57.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.242188 58.867188 C 132.242188 58.75 132.148438 58.65625 132.03125 58.65625 C 131.914062 58.65625 131.820312 58.75 131.820312 58.867188 C 131.820312 58.984375 131.914062 59.078125 132.03125 59.078125 C 132.148438 59.078125 132.242188 58.984375 132.242188 58.867188 Z M 132.242188 58.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 127.96875 56.738281 C 127.96875 56.621094 127.875 56.527344 127.757812 56.527344 C 127.640625 56.527344 127.546875 56.621094 127.546875 56.738281 C 127.546875 56.855469 127.640625 56.949219 127.757812 56.949219 C 127.875 56.949219 127.96875 56.855469 127.96875 56.738281 Z M 127.96875 56.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 129.636719 56.933594 C 129.636719 56.816406 129.542969 56.722656 129.425781 56.722656 C 129.308594 56.722656 129.214844 56.816406 129.214844 56.933594 C 129.214844 57.050781 129.308594 57.144531 129.425781 57.144531 C 129.542969 57.144531 129.636719 57.050781 129.636719 56.933594 Z M 129.636719 56.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 129.535156 56.785156 C 129.535156 56.667969 129.441406 56.574219 129.324219 56.574219 C 129.207031 56.574219 129.113281 56.667969 129.113281 56.785156 C 129.113281 56.902344 129.207031 56.996094 129.324219 56.996094 C 129.441406 56.996094 129.535156 56.902344 129.535156 56.785156 Z M 129.535156 56.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.589844 55.175781 C 130.589844 55.058594 130.496094 54.964844 130.378906 54.964844 C 130.261719 54.964844 130.167969 55.058594 130.167969 55.175781 C 130.167969 55.292969 130.261719 55.386719 130.378906 55.386719 C 130.496094 55.386719 130.589844 55.292969 130.589844 55.175781 Z M 130.589844 55.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.101562 51.945312 C 133.101562 51.828125 133.007812 51.734375 132.890625 51.734375 C 132.773438 51.734375 132.679688 51.828125 132.679688 51.945312 C 132.679688 52.0625 132.773438 52.15625 132.890625 52.15625 C 133.007812 52.15625 133.101562 52.0625 133.101562 51.945312 Z M 133.101562 51.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.703125 51.007812 C 133.703125 50.890625 133.609375 50.796875 133.492188 50.796875 C 133.375 50.796875 133.28125 50.890625 133.28125 51.007812 C 133.28125 51.125 133.375 51.21875 133.492188 51.21875 C 133.609375 51.21875 133.703125 51.125 133.703125 51.007812 Z M 133.703125 51.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.871094 49.03125 C 132.871094 48.914062 132.777344 48.820312 132.660156 48.820312 C 132.542969 48.820312 132.449219 48.914062 132.449219 49.03125 C 132.449219 49.148438 132.542969 49.242188 132.660156 49.242188 C 132.777344 49.242188 132.871094 49.148438 132.871094 49.03125 Z M 132.871094 49.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.722656 47.972656 C 135.722656 47.855469 135.628906 47.761719 135.511719 47.761719 C 135.394531 47.761719 135.300781 47.855469 135.300781 47.972656 C 135.300781 48.089844 135.394531 48.183594 135.511719 48.183594 C 135.628906 48.183594 135.722656 48.089844 135.722656 47.972656 Z M 135.722656 47.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 138.046875 46.230469 C 138.046875 46.113281 137.953125 46.019531 137.835938 46.019531 C 137.71875 46.019531 137.625 46.113281 137.625 46.230469 C 137.625 46.347656 137.71875 46.441406 137.835938 46.441406 C 137.953125 46.441406 138.046875 46.347656 138.046875 46.230469 Z M 138.046875 46.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 137.8125 45.359375 C 137.8125 45.242188 137.71875 45.148438 137.601562 45.148438 C 137.484375 45.148438 137.390625 45.242188 137.390625 45.359375 C 137.390625 45.476562 137.484375 45.570312 137.601562 45.570312 C 137.71875 45.570312 137.8125 45.476562 137.8125 45.359375 Z M 137.8125 45.359375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 142.058594 47.167969 C 142.058594 47.050781 141.964844 46.957031 141.847656 46.957031 C 141.730469 46.957031 141.636719 47.050781 141.636719 47.167969 C 141.636719 47.285156 141.730469 47.378906 141.847656 47.378906 C 141.964844 47.378906 142.058594 47.285156 142.058594 47.167969 Z M 142.058594 47.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 139.269531 47.082031 C 139.269531 46.964844 139.175781 46.871094 139.058594 46.871094 C 138.941406 46.871094 138.847656 46.964844 138.847656 47.082031 C 138.847656 47.199219 138.941406 47.292969 139.058594 47.292969 C 139.175781 47.292969 139.269531 47.199219 139.269531 47.082031 Z M 139.269531 47.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 140.886719 43.828125 C 140.886719 43.710938 140.792969 43.617188 140.675781 43.617188 C 140.558594 43.617188 140.464844 43.710938 140.464844 43.828125 C 140.464844 43.945312 140.558594 44.039062 140.675781 44.039062 C 140.792969 44.039062 140.886719 43.945312 140.886719 43.828125 Z M 140.886719 43.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 144.339844 48.117188 C 144.339844 48 144.246094 47.90625 144.128906 47.90625 C 144.011719 47.90625 143.917969 48 143.917969 48.117188 C 143.917969 48.234375 144.011719 48.328125 144.128906 48.328125 C 144.246094 48.328125 144.339844 48.234375 144.339844 48.117188 Z M 144.339844 48.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 146.148438 49.859375 C 146.148438 49.742188 146.054688 49.648438 145.9375 49.648438 C 145.820312 49.648438 145.726562 49.742188 145.726562 49.859375 C 145.726562 49.976562 145.820312 50.070312 145.9375 50.070312 C 146.054688 50.070312 146.148438 49.976562 146.148438 49.859375 Z M 146.148438 49.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 143.308594 50.570312 C 143.308594 50.453125 143.214844 50.359375 143.097656 50.359375 C 142.980469 50.359375 142.886719 50.453125 142.886719 50.570312 C 142.886719 50.6875 142.980469 50.78125 143.097656 50.78125 C 143.214844 50.78125 143.308594 50.6875 143.308594 50.570312 Z M 143.308594 50.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 147.207031 50.253906 C 147.207031 50.136719 147.113281 50.042969 146.996094 50.042969 C 146.878906 50.042969 146.785156 50.136719 146.785156 50.253906 C 146.785156 50.371094 146.878906 50.464844 146.996094 50.464844 C 147.113281 50.464844 147.207031 50.371094 147.207031 50.253906 Z M 147.207031 50.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 150.578125 48.640625 C 150.578125 48.523438 150.484375 48.429688 150.367188 48.429688 C 150.25 48.429688 150.15625 48.523438 150.15625 48.640625 C 150.15625 48.757812 150.25 48.851562 150.367188 48.851562 C 150.484375 48.851562 150.578125 48.757812 150.578125 48.640625 Z M 150.578125 48.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 151.132812 50.011719 C 151.132812 49.894531 151.039062 49.800781 150.921875 49.800781 C 150.804688 49.800781 150.710938 49.894531 150.710938 50.011719 C 150.710938 50.128906 150.804688 50.222656 150.921875 50.222656 C 151.039062 50.222656 151.132812 50.128906 151.132812 50.011719 Z M 151.132812 50.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 149.585938 46.527344 C 149.585938 46.410156 149.492188 46.316406 149.375 46.316406 C 149.257812 46.316406 149.164062 46.410156 149.164062 46.527344 C 149.164062 46.644531 149.257812 46.738281 149.375 46.738281 C 149.492188 46.738281 149.585938 46.644531 149.585938 46.527344 Z M 149.585938 46.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 148.539062 50.160156 C 148.539062 50.042969 148.445312 49.949219 148.328125 49.949219 C 148.210938 49.949219 148.117188 50.042969 148.117188 50.160156 C 148.117188 50.277344 148.210938 50.371094 148.328125 50.371094 C 148.445312 50.371094 148.539062 50.277344 148.539062 50.160156 Z M 148.539062 50.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 149.0625 49.894531 C 149.0625 49.777344 148.96875 49.683594 148.851562 49.683594 C 148.734375 49.683594 148.640625 49.777344 148.640625 49.894531 C 148.640625 50.011719 148.734375 50.105469 148.851562 50.105469 C 148.96875 50.105469 149.0625 50.011719 149.0625 49.894531 Z M 149.0625 49.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 147.625 52.363281 C 147.625 52.246094 147.53125 52.152344 147.414062 52.152344 C 147.296875 52.152344 147.203125 52.246094 147.203125 52.363281 C 147.203125 52.480469 147.296875 52.574219 147.414062 52.574219 C 147.53125 52.574219 147.625 52.480469 147.625 52.363281 Z M 147.625 52.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 149.417969 55.597656 C 149.417969 55.480469 149.324219 55.386719 149.207031 55.386719 C 149.089844 55.386719 148.996094 55.480469 148.996094 55.597656 C 148.996094 55.714844 149.089844 55.808594 149.207031 55.808594 C 149.324219 55.808594 149.417969 55.714844 149.417969 55.597656 Z M 149.417969 55.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 146.324219 54.394531 C 146.324219 54.277344 146.230469 54.183594 146.113281 54.183594 C 145.996094 54.183594 145.902344 54.277344 145.902344 54.394531 C 145.902344 54.511719 145.996094 54.605469 146.113281 54.605469 C 146.230469 54.605469 146.324219 54.511719 146.324219 54.394531 Z M 146.324219 54.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 144.945312 54.578125 C 144.945312 54.460938 144.851562 54.367188 144.734375 54.367188 C 144.617188 54.367188 144.523438 54.460938 144.523438 54.578125 C 144.523438 54.695312 144.617188 54.789062 144.734375 54.789062 C 144.851562 54.789062 144.945312 54.695312 144.945312 54.578125 Z M 144.945312 54.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 143.394531 55.605469 C 143.394531 55.488281 143.300781 55.394531 143.183594 55.394531 C 143.066406 55.394531 142.972656 55.488281 142.972656 55.605469 C 142.972656 55.722656 143.066406 55.816406 143.183594 55.816406 C 143.300781 55.816406 143.394531 55.722656 143.394531 55.605469 Z M 143.394531 55.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 141.410156 58.109375 C 141.410156 57.992188 141.316406 57.898438 141.199219 57.898438 C 141.082031 57.898438 140.988281 57.992188 140.988281 58.109375 C 140.988281 58.226562 141.082031 58.320312 141.199219 58.320312 C 141.316406 58.320312 141.410156 58.226562 141.410156 58.109375 Z M 141.410156 58.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 142.867188 54.507812 C 142.867188 54.390625 142.773438 54.296875 142.65625 54.296875 C 142.539062 54.296875 142.445312 54.390625 142.445312 54.507812 C 142.445312 54.625 142.539062 54.71875 142.65625 54.71875 C 142.773438 54.71875 142.867188 54.625 142.867188 54.507812 Z M 142.867188 54.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 141.296875 52.351562 C 141.296875 52.234375 141.203125 52.140625 141.085938 52.140625 C 140.96875 52.140625 140.875 52.234375 140.875 52.351562 C 140.875 52.46875 140.96875 52.5625 141.085938 52.5625 C 141.203125 52.5625 141.296875 52.46875 141.296875 52.351562 Z M 141.296875 52.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 145.042969 54.203125 C 145.042969 54.085938 144.949219 53.992188 144.832031 53.992188 C 144.714844 53.992188 144.621094 54.085938 144.621094 54.203125 C 144.621094 54.320312 144.714844 54.414062 144.832031 54.414062 C 144.949219 54.414062 145.042969 54.320312 145.042969 54.203125 Z M 145.042969 54.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 141.628906 54.289062 C 141.628906 54.171875 141.535156 54.078125 141.417969 54.078125 C 141.300781 54.078125 141.207031 54.171875 141.207031 54.289062 C 141.207031 54.40625 141.300781 54.5 141.417969 54.5 C 141.535156 54.5 141.628906 54.40625 141.628906 54.289062 Z M 141.628906 54.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 141.339844 54.316406 C 141.339844 54.199219 141.246094 54.105469 141.128906 54.105469 C 141.011719 54.105469 140.917969 54.199219 140.917969 54.316406 C 140.917969 54.433594 141.011719 54.527344 141.128906 54.527344 C 141.246094 54.527344 141.339844 54.433594 141.339844 54.316406 Z M 141.339844 54.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 142.949219 57.058594 C 142.949219 56.941406 142.855469 56.847656 142.738281 56.847656 C 142.621094 56.847656 142.527344 56.941406 142.527344 57.058594 C 142.527344 57.175781 142.621094 57.269531 142.738281 57.269531 C 142.855469 57.269531 142.949219 57.175781 142.949219 57.058594 Z M 142.949219 57.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 143.8125 58.917969 C 143.8125 58.800781 143.71875 58.707031 143.601562 58.707031 C 143.484375 58.707031 143.390625 58.800781 143.390625 58.917969 C 143.390625 59.035156 143.484375 59.128906 143.601562 59.128906 C 143.71875 59.128906 143.8125 59.035156 143.8125 58.917969 Z M 143.8125 58.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 138.484375 59.328125 C 138.484375 59.210938 138.390625 59.117188 138.273438 59.117188 C 138.15625 59.117188 138.0625 59.210938 138.0625 59.328125 C 138.0625 59.445312 138.15625 59.539062 138.273438 59.539062 C 138.390625 59.539062 138.484375 59.445312 138.484375 59.328125 Z M 138.484375 59.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 138.683594 57.605469 C 138.683594 57.488281 138.589844 57.394531 138.472656 57.394531 C 138.355469 57.394531 138.261719 57.488281 138.261719 57.605469 C 138.261719 57.722656 138.355469 57.816406 138.472656 57.816406 C 138.589844 57.816406 138.683594 57.722656 138.683594 57.605469 Z M 138.683594 57.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 138.570312 59.871094 C 138.570312 59.753906 138.476562 59.660156 138.359375 59.660156 C 138.242188 59.660156 138.148438 59.753906 138.148438 59.871094 C 138.148438 59.988281 138.242188 60.082031 138.359375 60.082031 C 138.476562 60.082031 138.570312 59.988281 138.570312 59.871094 Z M 138.570312 59.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 138.472656 60.773438 C 138.472656 60.65625 138.378906 60.5625 138.261719 60.5625 C 138.144531 60.5625 138.050781 60.65625 138.050781 60.773438 C 138.050781 60.890625 138.144531 60.984375 138.261719 60.984375 C 138.378906 60.984375 138.472656 60.890625 138.472656 60.773438 Z M 138.472656 60.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 137.914062 63.542969 C 137.914062 63.425781 137.820312 63.332031 137.703125 63.332031 C 137.585938 63.332031 137.492188 63.425781 137.492188 63.542969 C 137.492188 63.660156 137.585938 63.753906 137.703125 63.753906 C 137.820312 63.753906 137.914062 63.660156 137.914062 63.542969 Z M 137.914062 63.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 138.78125 64.5 C 138.78125 64.382812 138.6875 64.289062 138.570312 64.289062 C 138.453125 64.289062 138.359375 64.382812 138.359375 64.5 C 138.359375 64.617188 138.453125 64.710938 138.570312 64.710938 C 138.6875 64.710938 138.78125 64.617188 138.78125 64.5 Z M 138.78125 64.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 140.140625 69.207031 C 140.140625 69.089844 140.046875 68.996094 139.929688 68.996094 C 139.8125 68.996094 139.71875 69.089844 139.71875 69.207031 C 139.71875 69.324219 139.8125 69.417969 139.929688 69.417969 C 140.046875 69.417969 140.140625 69.324219 140.140625 69.207031 Z M 140.140625 69.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.703125 70.085938 C 135.703125 69.96875 135.609375 69.875 135.492188 69.875 C 135.375 69.875 135.28125 69.96875 135.28125 70.085938 C 135.28125 70.203125 135.375 70.296875 135.492188 70.296875 C 135.609375 70.296875 135.703125 70.203125 135.703125 70.085938 Z M 135.703125 70.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.632812 72.109375 C 133.632812 71.992188 133.539062 71.898438 133.421875 71.898438 C 133.304688 71.898438 133.210938 71.992188 133.210938 72.109375 C 133.210938 72.226562 133.304688 72.320312 133.421875 72.320312 C 133.539062 72.320312 133.632812 72.226562 133.632812 72.109375 Z M 133.632812 72.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 138.441406 72.96875 C 138.441406 72.851562 138.347656 72.757812 138.230469 72.757812 C 138.113281 72.757812 138.019531 72.851562 138.019531 72.96875 C 138.019531 73.085938 138.113281 73.179688 138.230469 73.179688 C 138.347656 73.179688 138.441406 73.085938 138.441406 72.96875 Z M 138.441406 72.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.089844 80.148438 C 135.089844 80.03125 134.996094 79.9375 134.878906 79.9375 C 134.761719 79.9375 134.667969 80.03125 134.667969 80.148438 C 134.667969 80.265625 134.761719 80.359375 134.878906 80.359375 C 134.996094 80.359375 135.089844 80.265625 135.089844 80.148438 Z M 135.089844 80.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.386719 81.9375 C 135.386719 81.820312 135.292969 81.726562 135.175781 81.726562 C 135.058594 81.726562 134.964844 81.820312 134.964844 81.9375 C 134.964844 82.054688 135.058594 82.148438 135.175781 82.148438 C 135.292969 82.148438 135.386719 82.054688 135.386719 81.9375 Z M 135.386719 81.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 134.660156 83.398438 C 134.660156 83.28125 134.566406 83.1875 134.449219 83.1875 C 134.332031 83.1875 134.238281 83.28125 134.238281 83.398438 C 134.238281 83.515625 134.332031 83.609375 134.449219 83.609375 C 134.566406 83.609375 134.660156 83.515625 134.660156 83.398438 Z M 134.660156 83.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.132812 83.464844 C 135.132812 83.347656 135.039062 83.253906 134.921875 83.253906 C 134.804688 83.253906 134.710938 83.347656 134.710938 83.464844 C 134.710938 83.582031 134.804688 83.675781 134.921875 83.675781 C 135.039062 83.675781 135.132812 83.582031 135.132812 83.464844 Z M 135.132812 83.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.148438 88.386719 C 133.148438 88.269531 133.054688 88.175781 132.9375 88.175781 C 132.820312 88.175781 132.726562 88.269531 132.726562 88.386719 C 132.726562 88.503906 132.820312 88.597656 132.9375 88.597656 C 133.054688 88.597656 133.148438 88.503906 133.148438 88.386719 Z M 133.148438 88.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.628906 87.371094 C 130.628906 87.253906 130.535156 87.160156 130.417969 87.160156 C 130.300781 87.160156 130.207031 87.253906 130.207031 87.371094 C 130.207031 87.488281 130.300781 87.582031 130.417969 87.582031 C 130.535156 87.582031 130.628906 87.488281 130.628906 87.371094 Z M 130.628906 87.371094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.542969 90.980469 C 128.542969 90.863281 128.449219 90.769531 128.332031 90.769531 C 128.214844 90.769531 128.121094 90.863281 128.121094 90.980469 C 128.121094 91.097656 128.214844 91.191406 128.332031 91.191406 C 128.449219 91.191406 128.542969 91.097656 128.542969 90.980469 Z M 128.542969 90.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 127.484375 88.832031 C 127.484375 88.714844 127.390625 88.621094 127.273438 88.621094 C 127.15625 88.621094 127.0625 88.714844 127.0625 88.832031 C 127.0625 88.949219 127.15625 89.042969 127.273438 89.042969 C 127.390625 89.042969 127.484375 88.949219 127.484375 88.832031 Z M 127.484375 88.832031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 129.640625 92.230469 C 129.640625 92.113281 129.546875 92.019531 129.429688 92.019531 C 129.3125 92.019531 129.21875 92.113281 129.21875 92.230469 C 129.21875 92.347656 129.3125 92.441406 129.429688 92.441406 C 129.546875 92.441406 129.640625 92.347656 129.640625 92.230469 Z M 129.640625 92.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.527344 87.914062 C 130.527344 87.796875 130.433594 87.703125 130.316406 87.703125 C 130.199219 87.703125 130.105469 87.796875 130.105469 87.914062 C 130.105469 88.03125 130.199219 88.125 130.316406 88.125 C 130.433594 88.125 130.527344 88.03125 130.527344 87.914062 Z M 130.527344 87.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.445312 88.382812 C 128.445312 88.265625 128.351562 88.171875 128.234375 88.171875 C 128.117188 88.171875 128.023438 88.265625 128.023438 88.382812 C 128.023438 88.5 128.117188 88.59375 128.234375 88.59375 C 128.351562 88.59375 128.445312 88.5 128.445312 88.382812 Z M 128.445312 88.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.390625 91.230469 C 132.390625 91.113281 132.296875 91.019531 132.179688 91.019531 C 132.0625 91.019531 131.96875 91.113281 131.96875 91.230469 C 131.96875 91.347656 132.0625 91.441406 132.179688 91.441406 C 132.296875 91.441406 132.390625 91.347656 132.390625 91.230469 Z M 132.390625 91.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.546875 90.109375 C 130.546875 89.992188 130.453125 89.898438 130.335938 89.898438 C 130.21875 89.898438 130.125 89.992188 130.125 90.109375 C 130.125 90.226562 130.21875 90.320312 130.335938 90.320312 C 130.453125 90.320312 130.546875 90.226562 130.546875 90.109375 Z M 130.546875 90.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 129.46875 88.941406 C 129.46875 88.824219 129.375 88.730469 129.257812 88.730469 C 129.140625 88.730469 129.046875 88.824219 129.046875 88.941406 C 129.046875 89.058594 129.140625 89.152344 129.257812 89.152344 C 129.375 89.152344 129.46875 89.058594 129.46875 88.941406 Z M 129.46875 88.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 127.027344 89.082031 C 127.027344 88.964844 126.933594 88.871094 126.816406 88.871094 C 126.699219 88.871094 126.605469 88.964844 126.605469 89.082031 C 126.605469 89.199219 126.699219 89.292969 126.816406 89.292969 C 126.933594 89.292969 127.027344 89.199219 127.027344 89.082031 Z M 127.027344 89.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 131.164062 88.671875 C 131.164062 88.554688 131.070312 88.460938 130.953125 88.460938 C 130.835938 88.460938 130.742188 88.554688 130.742188 88.671875 C 130.742188 88.789062 130.835938 88.882812 130.953125 88.882812 C 131.070312 88.882812 131.164062 88.789062 131.164062 88.671875 Z M 131.164062 88.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.003906 89.644531 C 132.003906 89.527344 131.910156 89.433594 131.792969 89.433594 C 131.675781 89.433594 131.582031 89.527344 131.582031 89.644531 C 131.582031 89.761719 131.675781 89.855469 131.792969 89.855469 C 131.910156 89.855469 132.003906 89.761719 132.003906 89.644531 Z M 132.003906 89.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 131.042969 94.703125 C 131.042969 94.585938 130.949219 94.492188 130.832031 94.492188 C 130.714844 94.492188 130.621094 94.585938 130.621094 94.703125 C 130.621094 94.820312 130.714844 94.914062 130.832031 94.914062 C 130.949219 94.914062 131.042969 94.820312 131.042969 94.703125 Z M 131.042969 94.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.039062 92.355469 C 128.039062 92.238281 127.945312 92.144531 127.828125 92.144531 C 127.710938 92.144531 127.617188 92.238281 127.617188 92.355469 C 127.617188 92.472656 127.710938 92.566406 127.828125 92.566406 C 127.945312 92.566406 128.039062 92.472656 128.039062 92.355469 Z M 128.039062 92.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.824219 92.265625 C 125.824219 92.148438 125.730469 92.054688 125.613281 92.054688 C 125.496094 92.054688 125.402344 92.148438 125.402344 92.265625 C 125.402344 92.382812 125.496094 92.476562 125.613281 92.476562 C 125.730469 92.476562 125.824219 92.382812 125.824219 92.265625 Z M 125.824219 92.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 127.488281 91.183594 C 127.488281 91.066406 127.394531 90.972656 127.277344 90.972656 C 127.160156 90.972656 127.066406 91.066406 127.066406 91.183594 C 127.066406 91.300781 127.160156 91.394531 127.277344 91.394531 C 127.394531 91.394531 127.488281 91.300781 127.488281 91.183594 Z M 127.488281 91.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.832031 92.089844 C 125.832031 91.972656 125.738281 91.878906 125.621094 91.878906 C 125.503906 91.878906 125.410156 91.972656 125.410156 92.089844 C 125.410156 92.207031 125.503906 92.300781 125.621094 92.300781 C 125.738281 92.300781 125.832031 92.207031 125.832031 92.089844 Z M 125.832031 92.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.128906 90.6875 C 125.128906 90.570312 125.035156 90.476562 124.917969 90.476562 C 124.800781 90.476562 124.707031 90.570312 124.707031 90.6875 C 124.707031 90.804688 124.800781 90.898438 124.917969 90.898438 C 125.035156 90.898438 125.128906 90.804688 125.128906 90.6875 Z M 125.128906 90.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 123.078125 89.320312 C 123.078125 89.203125 122.984375 89.109375 122.867188 89.109375 C 122.75 89.109375 122.65625 89.203125 122.65625 89.320312 C 122.65625 89.4375 122.75 89.53125 122.867188 89.53125 C 122.984375 89.53125 123.078125 89.4375 123.078125 89.320312 Z M 123.078125 89.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.289062 88.042969 C 122.289062 87.925781 122.195312 87.832031 122.078125 87.832031 C 121.960938 87.832031 121.867188 87.925781 121.867188 88.042969 C 121.867188 88.160156 121.960938 88.253906 122.078125 88.253906 C 122.195312 88.253906 122.289062 88.160156 122.289062 88.042969 Z M 122.289062 88.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 121.117188 89.285156 C 121.117188 89.167969 121.023438 89.074219 120.90625 89.074219 C 120.789062 89.074219 120.695312 89.167969 120.695312 89.285156 C 120.695312 89.402344 120.789062 89.496094 120.90625 89.496094 C 121.023438 89.496094 121.117188 89.402344 121.117188 89.285156 Z M 121.117188 89.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 118.90625 88.59375 C 118.90625 88.476562 118.8125 88.382812 118.695312 88.382812 C 118.578125 88.382812 118.484375 88.476562 118.484375 88.59375 C 118.484375 88.710938 118.578125 88.804688 118.695312 88.804688 C 118.8125 88.804688 118.90625 88.710938 118.90625 88.59375 Z M 118.90625 88.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.742188 87.136719 C 122.742188 87.019531 122.648438 86.925781 122.53125 86.925781 C 122.414062 86.925781 122.320312 87.019531 122.320312 87.136719 C 122.320312 87.253906 122.414062 87.347656 122.53125 87.347656 C 122.648438 87.347656 122.742188 87.253906 122.742188 87.136719 Z M 122.742188 87.136719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 121.152344 86.546875 C 121.152344 86.429688 121.058594 86.335938 120.941406 86.335938 C 120.824219 86.335938 120.730469 86.429688 120.730469 86.546875 C 120.730469 86.664062 120.824219 86.757812 120.941406 86.757812 C 121.058594 86.757812 121.152344 86.664062 121.152344 86.546875 Z M 121.152344 86.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 120.558594 82.414062 C 120.558594 82.296875 120.464844 82.203125 120.347656 82.203125 C 120.230469 82.203125 120.136719 82.296875 120.136719 82.414062 C 120.136719 82.53125 120.230469 82.625 120.347656 82.625 C 120.464844 82.625 120.558594 82.53125 120.558594 82.414062 Z M 120.558594 82.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.230469 84.921875 C 122.230469 84.804688 122.136719 84.710938 122.019531 84.710938 C 121.902344 84.710938 121.808594 84.804688 121.808594 84.921875 C 121.808594 85.039062 121.902344 85.132812 122.019531 85.132812 C 122.136719 85.132812 122.230469 85.039062 122.230469 84.921875 Z M 122.230469 84.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 124.234375 81.808594 C 124.234375 81.691406 124.140625 81.597656 124.023438 81.597656 C 123.90625 81.597656 123.8125 81.691406 123.8125 81.808594 C 123.8125 81.925781 123.90625 82.019531 124.023438 82.019531 C 124.140625 82.019531 124.234375 81.925781 124.234375 81.808594 Z M 124.234375 81.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.839844 82.269531 C 125.839844 82.152344 125.746094 82.058594 125.628906 82.058594 C 125.511719 82.058594 125.417969 82.152344 125.417969 82.269531 C 125.417969 82.386719 125.511719 82.480469 125.628906 82.480469 C 125.746094 82.480469 125.839844 82.386719 125.839844 82.269531 Z M 125.839844 82.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 127.660156 83.679688 C 127.660156 83.5625 127.566406 83.46875 127.449219 83.46875 C 127.332031 83.46875 127.238281 83.5625 127.238281 83.679688 C 127.238281 83.796875 127.332031 83.890625 127.449219 83.890625 C 127.566406 83.890625 127.660156 83.796875 127.660156 83.679688 Z M 127.660156 83.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.859375 88.820312 C 133.859375 88.703125 133.765625 88.609375 133.648438 88.609375 C 133.53125 88.609375 133.4375 88.703125 133.4375 88.820312 C 133.4375 88.9375 133.53125 89.03125 133.648438 89.03125 C 133.765625 89.03125 133.859375 88.9375 133.859375 88.820312 Z M 133.859375 88.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.652344 87.363281 C 132.652344 87.246094 132.558594 87.152344 132.441406 87.152344 C 132.324219 87.152344 132.230469 87.246094 132.230469 87.363281 C 132.230469 87.480469 132.324219 87.574219 132.441406 87.574219 C 132.558594 87.574219 132.652344 87.480469 132.652344 87.363281 Z M 132.652344 87.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.175781 84.089844 C 133.175781 83.972656 133.082031 83.878906 132.964844 83.878906 C 132.847656 83.878906 132.753906 83.972656 132.753906 84.089844 C 132.753906 84.207031 132.847656 84.300781 132.964844 84.300781 C 133.082031 84.300781 133.175781 84.207031 133.175781 84.089844 Z M 133.175781 84.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.605469 83.648438 C 132.605469 83.53125 132.511719 83.4375 132.394531 83.4375 C 132.277344 83.4375 132.183594 83.53125 132.183594 83.648438 C 132.183594 83.765625 132.277344 83.859375 132.394531 83.859375 C 132.511719 83.859375 132.605469 83.765625 132.605469 83.648438 Z M 132.605469 83.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.082031 80.394531 C 132.082031 80.277344 131.988281 80.183594 131.871094 80.183594 C 131.753906 80.183594 131.660156 80.277344 131.660156 80.394531 C 131.660156 80.511719 131.753906 80.605469 131.871094 80.605469 C 131.988281 80.605469 132.082031 80.511719 132.082031 80.394531 Z M 132.082031 80.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.683594 81.84375 C 133.683594 81.726562 133.589844 81.632812 133.472656 81.632812 C 133.355469 81.632812 133.261719 81.726562 133.261719 81.84375 C 133.261719 81.960938 133.355469 82.054688 133.472656 82.054688 C 133.589844 82.054688 133.683594 81.960938 133.683594 81.84375 Z M 133.683594 81.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.757812 82.214844 C 128.757812 82.097656 128.664062 82.003906 128.546875 82.003906 C 128.429688 82.003906 128.335938 82.097656 128.335938 82.214844 C 128.335938 82.332031 128.429688 82.425781 128.546875 82.425781 C 128.664062 82.425781 128.757812 82.332031 128.757812 82.214844 Z M 128.757812 82.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.285156 82.445312 C 128.285156 82.328125 128.191406 82.234375 128.074219 82.234375 C 127.957031 82.234375 127.863281 82.328125 127.863281 82.445312 C 127.863281 82.5625 127.957031 82.65625 128.074219 82.65625 C 128.191406 82.65625 128.285156 82.5625 128.285156 82.445312 Z M 128.285156 82.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.160156 81.015625 C 125.160156 80.898438 125.066406 80.804688 124.949219 80.804688 C 124.832031 80.804688 124.738281 80.898438 124.738281 81.015625 C 124.738281 81.132812 124.832031 81.226562 124.949219 81.226562 C 125.066406 81.226562 125.160156 81.132812 125.160156 81.015625 Z M 125.160156 81.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.140625 80.800781 C 126.140625 80.683594 126.046875 80.589844 125.929688 80.589844 C 125.8125 80.589844 125.71875 80.683594 125.71875 80.800781 C 125.71875 80.917969 125.8125 81.011719 125.929688 81.011719 C 126.046875 81.011719 126.140625 80.917969 126.140625 80.800781 Z M 126.140625 80.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 127.652344 81.871094 C 127.652344 81.753906 127.558594 81.660156 127.441406 81.660156 C 127.324219 81.660156 127.230469 81.753906 127.230469 81.871094 C 127.230469 81.988281 127.324219 82.082031 127.441406 82.082031 C 127.558594 82.082031 127.652344 81.988281 127.652344 81.871094 Z M 127.652344 81.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.351562 84.496094 C 128.351562 84.378906 128.257812 84.285156 128.140625 84.285156 C 128.023438 84.285156 127.929688 84.378906 127.929688 84.496094 C 127.929688 84.613281 128.023438 84.707031 128.140625 84.707031 C 128.257812 84.707031 128.351562 84.613281 128.351562 84.496094 Z M 128.351562 84.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 123.636719 83.25 C 123.636719 83.132812 123.542969 83.039062 123.425781 83.039062 C 123.308594 83.039062 123.214844 83.132812 123.214844 83.25 C 123.214844 83.367188 123.308594 83.460938 123.425781 83.460938 C 123.542969 83.460938 123.636719 83.367188 123.636719 83.25 Z M 123.636719 83.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.605469 84.097656 C 126.605469 83.980469 126.511719 83.886719 126.394531 83.886719 C 126.277344 83.886719 126.183594 83.980469 126.183594 84.097656 C 126.183594 84.214844 126.277344 84.308594 126.394531 84.308594 C 126.511719 84.308594 126.605469 84.214844 126.605469 84.097656 Z M 126.605469 84.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.035156 87.632812 C 125.035156 87.515625 124.941406 87.421875 124.824219 87.421875 C 124.707031 87.421875 124.613281 87.515625 124.613281 87.632812 C 124.613281 87.75 124.707031 87.84375 124.824219 87.84375 C 124.941406 87.84375 125.035156 87.75 125.035156 87.632812 Z M 125.035156 87.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.972656 92.558594 C 126.972656 92.441406 126.878906 92.347656 126.761719 92.347656 C 126.644531 92.347656 126.550781 92.441406 126.550781 92.558594 C 126.550781 92.675781 126.644531 92.769531 126.761719 92.769531 C 126.878906 92.769531 126.972656 92.675781 126.972656 92.558594 Z M 126.972656 92.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.484375 90.316406 C 128.484375 90.199219 128.390625 90.105469 128.273438 90.105469 C 128.15625 90.105469 128.0625 90.199219 128.0625 90.316406 C 128.0625 90.433594 128.15625 90.527344 128.273438 90.527344 C 128.390625 90.527344 128.484375 90.433594 128.484375 90.316406 Z M 128.484375 90.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 131.425781 91.769531 C 131.425781 91.652344 131.332031 91.558594 131.214844 91.558594 C 131.097656 91.558594 131.003906 91.652344 131.003906 91.769531 C 131.003906 91.886719 131.097656 91.980469 131.214844 91.980469 C 131.332031 91.980469 131.425781 91.886719 131.425781 91.769531 Z M 131.425781 91.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 131.050781 90.855469 C 131.050781 90.738281 130.957031 90.644531 130.839844 90.644531 C 130.722656 90.644531 130.628906 90.738281 130.628906 90.855469 C 130.628906 90.972656 130.722656 91.066406 130.839844 91.066406 C 130.957031 91.066406 131.050781 90.972656 131.050781 90.855469 Z M 131.050781 90.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.90625 91.085938 C 130.90625 90.96875 130.8125 90.875 130.695312 90.875 C 130.578125 90.875 130.484375 90.96875 130.484375 91.085938 C 130.484375 91.203125 130.578125 91.296875 130.695312 91.296875 C 130.8125 91.296875 130.90625 91.203125 130.90625 91.085938 Z M 130.90625 91.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.34375 91.914062 C 130.34375 91.796875 130.25 91.703125 130.132812 91.703125 C 130.015625 91.703125 129.921875 91.796875 129.921875 91.914062 C 129.921875 92.03125 130.015625 92.125 130.132812 92.125 C 130.25 92.125 130.34375 92.03125 130.34375 91.914062 Z M 130.34375 91.914062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.425781 93.238281 C 130.425781 93.121094 130.332031 93.027344 130.214844 93.027344 C 130.097656 93.027344 130.003906 93.121094 130.003906 93.238281 C 130.003906 93.355469 130.097656 93.449219 130.214844 93.449219 C 130.332031 93.449219 130.425781 93.355469 130.425781 93.238281 Z M 130.425781 93.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.484375 90.847656 C 132.484375 90.730469 132.390625 90.636719 132.273438 90.636719 C 132.15625 90.636719 132.0625 90.730469 132.0625 90.847656 C 132.0625 90.964844 132.15625 91.058594 132.273438 91.058594 C 132.390625 91.058594 132.484375 90.964844 132.484375 90.847656 Z M 132.484375 90.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 131.402344 90.042969 C 131.402344 89.925781 131.308594 89.832031 131.191406 89.832031 C 131.074219 89.832031 130.980469 89.925781 130.980469 90.042969 C 130.980469 90.160156 131.074219 90.253906 131.191406 90.253906 C 131.308594 90.253906 131.402344 90.160156 131.402344 90.042969 Z M 131.402344 90.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 131.582031 89.066406 C 131.582031 88.949219 131.488281 88.855469 131.371094 88.855469 C 131.253906 88.855469 131.160156 88.949219 131.160156 89.066406 C 131.160156 89.183594 131.253906 89.277344 131.371094 89.277344 C 131.488281 89.277344 131.582031 89.183594 131.582031 89.066406 Z M 131.582031 89.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.898438 85.535156 C 133.898438 85.417969 133.804688 85.324219 133.6875 85.324219 C 133.570312 85.324219 133.476562 85.417969 133.476562 85.535156 C 133.476562 85.652344 133.570312 85.746094 133.6875 85.746094 C 133.804688 85.746094 133.898438 85.652344 133.898438 85.535156 Z M 133.898438 85.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 138.59375 84.191406 C 138.59375 84.074219 138.5 83.980469 138.382812 83.980469 C 138.265625 83.980469 138.171875 84.074219 138.171875 84.191406 C 138.171875 84.308594 138.265625 84.402344 138.382812 84.402344 C 138.5 84.402344 138.59375 84.308594 138.59375 84.191406 Z M 138.59375 84.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 137.605469 83.90625 C 137.605469 83.789062 137.511719 83.695312 137.394531 83.695312 C 137.277344 83.695312 137.183594 83.789062 137.183594 83.90625 C 137.183594 84.023438 137.277344 84.117188 137.394531 84.117188 C 137.511719 84.117188 137.605469 84.023438 137.605469 83.90625 Z M 137.605469 83.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 136.390625 81.953125 C 136.390625 81.835938 136.296875 81.742188 136.179688 81.742188 C 136.0625 81.742188 135.96875 81.835938 135.96875 81.953125 C 135.96875 82.070312 136.0625 82.164062 136.179688 82.164062 C 136.296875 82.164062 136.390625 82.070312 136.390625 81.953125 Z M 136.390625 81.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 137.050781 83.785156 C 137.050781 83.667969 136.957031 83.574219 136.839844 83.574219 C 136.722656 83.574219 136.628906 83.667969 136.628906 83.785156 C 136.628906 83.902344 136.722656 83.996094 136.839844 83.996094 C 136.957031 83.996094 137.050781 83.902344 137.050781 83.785156 Z M 137.050781 83.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 138.554688 80.890625 C 138.554688 80.773438 138.460938 80.679688 138.34375 80.679688 C 138.226562 80.679688 138.132812 80.773438 138.132812 80.890625 C 138.132812 81.007812 138.226562 81.101562 138.34375 81.101562 C 138.460938 81.101562 138.554688 81.007812 138.554688 80.890625 Z M 138.554688 80.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 134.933594 79.246094 C 134.933594 79.128906 134.839844 79.035156 134.722656 79.035156 C 134.605469 79.035156 134.511719 79.128906 134.511719 79.246094 C 134.511719 79.363281 134.605469 79.457031 134.722656 79.457031 C 134.839844 79.457031 134.933594 79.363281 134.933594 79.246094 Z M 134.933594 79.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 138.863281 81.238281 C 138.863281 81.121094 138.769531 81.027344 138.652344 81.027344 C 138.535156 81.027344 138.441406 81.121094 138.441406 81.238281 C 138.441406 81.355469 138.535156 81.449219 138.652344 81.449219 C 138.769531 81.449219 138.863281 81.355469 138.863281 81.238281 Z M 138.863281 81.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.804688 82.578125 C 135.804688 82.460938 135.710938 82.367188 135.59375 82.367188 C 135.476562 82.367188 135.382812 82.460938 135.382812 82.578125 C 135.382812 82.695312 135.476562 82.789062 135.59375 82.789062 C 135.710938 82.789062 135.804688 82.695312 135.804688 82.578125 Z M 135.804688 82.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 136.144531 76.640625 C 136.144531 76.523438 136.050781 76.429688 135.933594 76.429688 C 135.816406 76.429688 135.722656 76.523438 135.722656 76.640625 C 135.722656 76.757812 135.816406 76.851562 135.933594 76.851562 C 136.050781 76.851562 136.144531 76.757812 136.144531 76.640625 Z M 136.144531 76.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.960938 76.65625 C 133.960938 76.539062 133.867188 76.445312 133.75 76.445312 C 133.632812 76.445312 133.539062 76.539062 133.539062 76.65625 C 133.539062 76.773438 133.632812 76.867188 133.75 76.867188 C 133.867188 76.867188 133.960938 76.773438 133.960938 76.65625 Z M 133.960938 76.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 136.359375 71.230469 C 136.359375 71.113281 136.265625 71.019531 136.148438 71.019531 C 136.03125 71.019531 135.9375 71.113281 135.9375 71.230469 C 135.9375 71.347656 136.03125 71.441406 136.148438 71.441406 C 136.265625 71.441406 136.359375 71.347656 136.359375 71.230469 Z M 136.359375 71.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.640625 69.449219 C 135.640625 69.332031 135.546875 69.238281 135.429688 69.238281 C 135.3125 69.238281 135.21875 69.332031 135.21875 69.449219 C 135.21875 69.566406 135.3125 69.660156 135.429688 69.660156 C 135.546875 69.660156 135.640625 69.566406 135.640625 69.449219 Z M 135.640625 69.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.445312 75.347656 C 135.445312 75.230469 135.351562 75.136719 135.234375 75.136719 C 135.117188 75.136719 135.023438 75.230469 135.023438 75.347656 C 135.023438 75.464844 135.117188 75.558594 135.234375 75.558594 C 135.351562 75.558594 135.445312 75.464844 135.445312 75.347656 Z M 135.445312 75.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 134.816406 73.964844 C 134.816406 73.847656 134.722656 73.753906 134.605469 73.753906 C 134.488281 73.753906 134.394531 73.847656 134.394531 73.964844 C 134.394531 74.082031 134.488281 74.175781 134.605469 74.175781 C 134.722656 74.175781 134.816406 74.082031 134.816406 73.964844 Z M 134.816406 73.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.019531 74.035156 C 135.019531 73.917969 134.925781 73.824219 134.808594 73.824219 C 134.691406 73.824219 134.597656 73.917969 134.597656 74.035156 C 134.597656 74.152344 134.691406 74.246094 134.808594 74.246094 C 134.925781 74.246094 135.019531 74.152344 135.019531 74.035156 Z M 135.019531 74.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 136.796875 72.527344 C 136.796875 72.410156 136.703125 72.316406 136.585938 72.316406 C 136.46875 72.316406 136.375 72.410156 136.375 72.527344 C 136.375 72.644531 136.46875 72.738281 136.585938 72.738281 C 136.703125 72.738281 136.796875 72.644531 136.796875 72.527344 Z M 136.796875 72.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 141.09375 70.296875 C 141.09375 70.179688 141 70.085938 140.882812 70.085938 C 140.765625 70.085938 140.671875 70.179688 140.671875 70.296875 C 140.671875 70.414062 140.765625 70.507812 140.882812 70.507812 C 141 70.507812 141.09375 70.414062 141.09375 70.296875 Z M 141.09375 70.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 142.433594 70.460938 C 142.433594 70.34375 142.339844 70.25 142.222656 70.25 C 142.105469 70.25 142.011719 70.34375 142.011719 70.460938 C 142.011719 70.578125 142.105469 70.671875 142.222656 70.671875 C 142.339844 70.671875 142.433594 70.578125 142.433594 70.460938 Z M 142.433594 70.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 140.859375 72.800781 C 140.859375 72.683594 140.765625 72.589844 140.648438 72.589844 C 140.53125 72.589844 140.4375 72.683594 140.4375 72.800781 C 140.4375 72.917969 140.53125 73.011719 140.648438 73.011719 C 140.765625 73.011719 140.859375 72.917969 140.859375 72.800781 Z M 140.859375 72.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 145.617188 73.285156 C 145.617188 73.167969 145.523438 73.074219 145.40625 73.074219 C 145.289062 73.074219 145.195312 73.167969 145.195312 73.285156 C 145.195312 73.402344 145.289062 73.496094 145.40625 73.496094 C 145.523438 73.496094 145.617188 73.402344 145.617188 73.285156 Z M 145.617188 73.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 144.320312 72.808594 C 144.320312 72.691406 144.226562 72.597656 144.109375 72.597656 C 143.992188 72.597656 143.898438 72.691406 143.898438 72.808594 C 143.898438 72.925781 143.992188 73.019531 144.109375 73.019531 C 144.226562 73.019531 144.320312 72.925781 144.320312 72.808594 Z M 144.320312 72.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 146.703125 73.484375 C 146.703125 73.367188 146.609375 73.273438 146.492188 73.273438 C 146.375 73.273438 146.28125 73.367188 146.28125 73.484375 C 146.28125 73.601562 146.375 73.695312 146.492188 73.695312 C 146.609375 73.695312 146.703125 73.601562 146.703125 73.484375 Z M 146.703125 73.484375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 142.964844 74.09375 C 142.964844 73.976562 142.871094 73.882812 142.753906 73.882812 C 142.636719 73.882812 142.542969 73.976562 142.542969 74.09375 C 142.542969 74.210938 142.636719 74.304688 142.753906 74.304688 C 142.871094 74.304688 142.964844 74.210938 142.964844 74.09375 Z M 142.964844 74.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 142.132812 73.894531 C 142.132812 73.777344 142.039062 73.683594 141.921875 73.683594 C 141.804688 73.683594 141.710938 73.777344 141.710938 73.894531 C 141.710938 74.011719 141.804688 74.105469 141.921875 74.105469 C 142.039062 74.105469 142.132812 74.011719 142.132812 73.894531 Z M 142.132812 73.894531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 139.625 73.320312 C 139.625 73.203125 139.53125 73.109375 139.414062 73.109375 C 139.296875 73.109375 139.203125 73.203125 139.203125 73.320312 C 139.203125 73.4375 139.296875 73.53125 139.414062 73.53125 C 139.53125 73.53125 139.625 73.4375 139.625 73.320312 Z M 139.625 73.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 139.789062 72.292969 C 139.789062 72.175781 139.695312 72.082031 139.578125 72.082031 C 139.460938 72.082031 139.367188 72.175781 139.367188 72.292969 C 139.367188 72.410156 139.460938 72.503906 139.578125 72.503906 C 139.695312 72.503906 139.789062 72.410156 139.789062 72.292969 Z M 139.789062 72.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 139.207031 69.703125 C 139.207031 69.585938 139.113281 69.492188 138.996094 69.492188 C 138.878906 69.492188 138.785156 69.585938 138.785156 69.703125 C 138.785156 69.820312 138.878906 69.914062 138.996094 69.914062 C 139.113281 69.914062 139.207031 69.820312 139.207031 69.703125 Z M 139.207031 69.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 137.777344 67.421875 C 137.777344 67.304688 137.683594 67.210938 137.566406 67.210938 C 137.449219 67.210938 137.355469 67.304688 137.355469 67.421875 C 137.355469 67.539062 137.449219 67.632812 137.566406 67.632812 C 137.683594 67.632812 137.777344 67.539062 137.777344 67.421875 Z M 137.777344 67.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 138.296875 69.179688 C 138.296875 69.0625 138.203125 68.96875 138.085938 68.96875 C 137.96875 68.96875 137.875 69.0625 137.875 69.179688 C 137.875 69.296875 137.96875 69.390625 138.085938 69.390625 C 138.203125 69.390625 138.296875 69.296875 138.296875 69.179688 Z M 138.296875 69.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 139.527344 70.347656 C 139.527344 70.230469 139.433594 70.136719 139.316406 70.136719 C 139.199219 70.136719 139.105469 70.230469 139.105469 70.347656 C 139.105469 70.464844 139.199219 70.558594 139.316406 70.558594 C 139.433594 70.558594 139.527344 70.464844 139.527344 70.347656 Z M 139.527344 70.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 134.105469 70.1875 C 134.105469 70.070312 134.011719 69.976562 133.894531 69.976562 C 133.777344 69.976562 133.683594 70.070312 133.683594 70.1875 C 133.683594 70.304688 133.777344 70.398438 133.894531 70.398438 C 134.011719 70.398438 134.105469 70.304688 134.105469 70.1875 Z M 134.105469 70.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.734375 68.339844 C 133.734375 68.222656 133.640625 68.128906 133.523438 68.128906 C 133.40625 68.128906 133.3125 68.222656 133.3125 68.339844 C 133.3125 68.457031 133.40625 68.550781 133.523438 68.550781 C 133.640625 68.550781 133.734375 68.457031 133.734375 68.339844 Z M 133.734375 68.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 134.199219 69.109375 C 134.199219 68.992188 134.105469 68.898438 133.988281 68.898438 C 133.871094 68.898438 133.777344 68.992188 133.777344 69.109375 C 133.777344 69.226562 133.871094 69.320312 133.988281 69.320312 C 134.105469 69.320312 134.199219 69.226562 134.199219 69.109375 Z M 134.199219 69.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.875 70.328125 C 132.875 70.210938 132.78125 70.117188 132.664062 70.117188 C 132.546875 70.117188 132.453125 70.210938 132.453125 70.328125 C 132.453125 70.445312 132.546875 70.539062 132.664062 70.539062 C 132.78125 70.539062 132.875 70.445312 132.875 70.328125 Z M 132.875 70.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 131.386719 65.222656 C 131.386719 65.105469 131.292969 65.011719 131.175781 65.011719 C 131.058594 65.011719 130.964844 65.105469 130.964844 65.222656 C 130.964844 65.339844 131.058594 65.433594 131.175781 65.433594 C 131.292969 65.433594 131.386719 65.339844 131.386719 65.222656 Z M 131.386719 65.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.277344 65.75 C 125.277344 65.632812 125.183594 65.539062 125.066406 65.539062 C 124.949219 65.539062 124.855469 65.632812 124.855469 65.75 C 124.855469 65.867188 124.949219 65.960938 125.066406 65.960938 C 125.183594 65.960938 125.277344 65.867188 125.277344 65.75 Z M 125.277344 65.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.035156 65.066406 C 125.035156 64.949219 124.941406 64.855469 124.824219 64.855469 C 124.707031 64.855469 124.613281 64.949219 124.613281 65.066406 C 124.613281 65.183594 124.707031 65.277344 124.824219 65.277344 C 124.941406 65.277344 125.035156 65.183594 125.035156 65.066406 Z M 125.035156 65.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 123 68.804688 C 123 68.6875 122.90625 68.59375 122.789062 68.59375 C 122.671875 68.59375 122.578125 68.6875 122.578125 68.804688 C 122.578125 68.921875 122.671875 69.015625 122.789062 69.015625 C 122.90625 69.015625 123 68.921875 123 68.804688 Z M 123 68.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 127.449219 73.046875 C 127.449219 72.929688 127.355469 72.835938 127.238281 72.835938 C 127.121094 72.835938 127.027344 72.929688 127.027344 73.046875 C 127.027344 73.164062 127.121094 73.257812 127.238281 73.257812 C 127.355469 73.257812 127.449219 73.164062 127.449219 73.046875 Z M 127.449219 73.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 131.804688 75.132812 C 131.804688 75.015625 131.710938 74.921875 131.59375 74.921875 C 131.476562 74.921875 131.382812 75.015625 131.382812 75.132812 C 131.382812 75.25 131.476562 75.34375 131.59375 75.34375 C 131.710938 75.34375 131.804688 75.25 131.804688 75.132812 Z M 131.804688 75.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.964844 74.480469 C 130.964844 74.363281 130.871094 74.269531 130.753906 74.269531 C 130.636719 74.269531 130.542969 74.363281 130.542969 74.480469 C 130.542969 74.597656 130.636719 74.691406 130.753906 74.691406 C 130.871094 74.691406 130.964844 74.597656 130.964844 74.480469 Z M 130.964844 74.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.253906 73.101562 C 132.253906 72.984375 132.160156 72.890625 132.042969 72.890625 C 131.925781 72.890625 131.832031 72.984375 131.832031 73.101562 C 131.832031 73.21875 131.925781 73.3125 132.042969 73.3125 C 132.160156 73.3125 132.253906 73.21875 132.253906 73.101562 Z M 132.253906 73.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.902344 75.308594 C 132.902344 75.191406 132.808594 75.097656 132.691406 75.097656 C 132.574219 75.097656 132.480469 75.191406 132.480469 75.308594 C 132.480469 75.425781 132.574219 75.519531 132.691406 75.519531 C 132.808594 75.519531 132.902344 75.425781 132.902344 75.308594 Z M 132.902344 75.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 136.117188 75.011719 C 136.117188 74.894531 136.023438 74.800781 135.90625 74.800781 C 135.789062 74.800781 135.695312 74.894531 135.695312 75.011719 C 135.695312 75.128906 135.789062 75.222656 135.90625 75.222656 C 136.023438 75.222656 136.117188 75.128906 136.117188 75.011719 Z M 136.117188 75.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 134.886719 75.886719 C 134.886719 75.769531 134.792969 75.675781 134.675781 75.675781 C 134.558594 75.675781 134.464844 75.769531 134.464844 75.886719 C 134.464844 76.003906 134.558594 76.097656 134.675781 76.097656 C 134.792969 76.097656 134.886719 76.003906 134.886719 75.886719 Z M 134.886719 75.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.273438 76.609375 C 133.273438 76.492188 133.179688 76.398438 133.0625 76.398438 C 132.945312 76.398438 132.851562 76.492188 132.851562 76.609375 C 132.851562 76.726562 132.945312 76.820312 133.0625 76.820312 C 133.179688 76.820312 133.273438 76.726562 133.273438 76.609375 Z M 133.273438 76.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.378906 81.222656 C 132.378906 81.105469 132.285156 81.011719 132.167969 81.011719 C 132.050781 81.011719 131.957031 81.105469 131.957031 81.222656 C 131.957031 81.339844 132.050781 81.433594 132.167969 81.433594 C 132.285156 81.433594 132.378906 81.339844 132.378906 81.222656 Z M 132.378906 81.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 134.824219 79.910156 C 134.824219 79.792969 134.730469 79.699219 134.613281 79.699219 C 134.496094 79.699219 134.402344 79.792969 134.402344 79.910156 C 134.402344 80.027344 134.496094 80.121094 134.613281 80.121094 C 134.730469 80.121094 134.824219 80.027344 134.824219 79.910156 Z M 134.824219 79.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.566406 77.441406 C 135.566406 77.324219 135.472656 77.230469 135.355469 77.230469 C 135.238281 77.230469 135.144531 77.324219 135.144531 77.441406 C 135.144531 77.558594 135.238281 77.652344 135.355469 77.652344 C 135.472656 77.652344 135.566406 77.558594 135.566406 77.441406 Z M 135.566406 77.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 137.960938 77.980469 C 137.960938 77.863281 137.867188 77.769531 137.75 77.769531 C 137.632812 77.769531 137.539062 77.863281 137.539062 77.980469 C 137.539062 78.097656 137.632812 78.191406 137.75 78.191406 C 137.867188 78.191406 137.960938 78.097656 137.960938 77.980469 Z M 137.960938 77.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.753906 78.542969 C 135.753906 78.425781 135.660156 78.332031 135.542969 78.332031 C 135.425781 78.332031 135.332031 78.425781 135.332031 78.542969 C 135.332031 78.660156 135.425781 78.753906 135.542969 78.753906 C 135.660156 78.753906 135.753906 78.660156 135.753906 78.542969 Z M 135.753906 78.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.28125 77.652344 C 132.28125 77.535156 132.1875 77.441406 132.070312 77.441406 C 131.953125 77.441406 131.859375 77.535156 131.859375 77.652344 C 131.859375 77.769531 131.953125 77.863281 132.070312 77.863281 C 132.1875 77.863281 132.28125 77.769531 132.28125 77.652344 Z M 132.28125 77.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.257812 71.589844 C 130.257812 71.472656 130.164062 71.378906 130.046875 71.378906 C 129.929688 71.378906 129.835938 71.472656 129.835938 71.589844 C 129.835938 71.707031 129.929688 71.800781 130.046875 71.800781 C 130.164062 71.800781 130.257812 71.707031 130.257812 71.589844 Z M 130.257812 71.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 129.464844 72.691406 C 129.464844 72.574219 129.371094 72.480469 129.253906 72.480469 C 129.136719 72.480469 129.042969 72.574219 129.042969 72.691406 C 129.042969 72.808594 129.136719 72.902344 129.253906 72.902344 C 129.371094 72.902344 129.464844 72.808594 129.464844 72.691406 Z M 129.464844 72.691406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.046875 71.921875 C 130.046875 71.804688 129.953125 71.710938 129.835938 71.710938 C 129.71875 71.710938 129.625 71.804688 129.625 71.921875 C 129.625 72.039062 129.71875 72.132812 129.835938 72.132812 C 129.953125 72.132812 130.046875 72.039062 130.046875 71.921875 Z M 130.046875 71.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.84375 70.675781 C 128.84375 70.558594 128.75 70.464844 128.632812 70.464844 C 128.515625 70.464844 128.421875 70.558594 128.421875 70.675781 C 128.421875 70.792969 128.515625 70.886719 128.632812 70.886719 C 128.75 70.886719 128.84375 70.792969 128.84375 70.675781 Z M 128.84375 70.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 129.792969 71.070312 C 129.792969 70.953125 129.699219 70.859375 129.582031 70.859375 C 129.464844 70.859375 129.371094 70.953125 129.371094 71.070312 C 129.371094 71.1875 129.464844 71.28125 129.582031 71.28125 C 129.699219 71.28125 129.792969 71.1875 129.792969 71.070312 Z M 129.792969 71.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.886719 70.132812 C 133.886719 70.015625 133.792969 69.921875 133.675781 69.921875 C 133.558594 69.921875 133.464844 70.015625 133.464844 70.132812 C 133.464844 70.25 133.558594 70.34375 133.675781 70.34375 C 133.792969 70.34375 133.886719 70.25 133.886719 70.132812 Z M 133.886719 70.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 134.507812 69.152344 C 134.507812 69.035156 134.414062 68.941406 134.296875 68.941406 C 134.179688 68.941406 134.085938 69.035156 134.085938 69.152344 C 134.085938 69.269531 134.179688 69.363281 134.296875 69.363281 C 134.414062 69.363281 134.507812 69.269531 134.507812 69.152344 Z M 134.507812 69.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.976562 72.5625 C 133.976562 72.445312 133.882812 72.351562 133.765625 72.351562 C 133.648438 72.351562 133.554688 72.445312 133.554688 72.5625 C 133.554688 72.679688 133.648438 72.773438 133.765625 72.773438 C 133.882812 72.773438 133.976562 72.679688 133.976562 72.5625 Z M 133.976562 72.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.617188 71.996094 C 132.617188 71.878906 132.523438 71.785156 132.40625 71.785156 C 132.289062 71.785156 132.195312 71.878906 132.195312 71.996094 C 132.195312 72.113281 132.289062 72.207031 132.40625 72.207031 C 132.523438 72.207031 132.617188 72.113281 132.617188 71.996094 Z M 132.617188 71.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.050781 71.503906 C 130.050781 71.386719 129.957031 71.292969 129.839844 71.292969 C 129.722656 71.292969 129.628906 71.386719 129.628906 71.503906 C 129.628906 71.621094 129.722656 71.714844 129.839844 71.714844 C 129.957031 71.714844 130.050781 71.621094 130.050781 71.503906 Z M 130.050781 71.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 129.570312 74.335938 C 129.570312 74.21875 129.476562 74.125 129.359375 74.125 C 129.242188 74.125 129.148438 74.21875 129.148438 74.335938 C 129.148438 74.453125 129.242188 74.546875 129.359375 74.546875 C 129.476562 74.546875 129.570312 74.453125 129.570312 74.335938 Z M 129.570312 74.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.375 73.054688 C 128.375 72.9375 128.28125 72.84375 128.164062 72.84375 C 128.046875 72.84375 127.953125 72.9375 127.953125 73.054688 C 127.953125 73.171875 128.046875 73.265625 128.164062 73.265625 C 128.28125 73.265625 128.375 73.171875 128.375 73.054688 Z M 128.375 73.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 129.785156 68.496094 C 129.785156 68.378906 129.691406 68.285156 129.574219 68.285156 C 129.457031 68.285156 129.363281 68.378906 129.363281 68.496094 C 129.363281 68.613281 129.457031 68.707031 129.574219 68.707031 C 129.691406 68.707031 129.785156 68.613281 129.785156 68.496094 Z M 129.785156 68.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.699219 70.050781 C 126.699219 69.933594 126.605469 69.839844 126.488281 69.839844 C 126.371094 69.839844 126.277344 69.933594 126.277344 70.050781 C 126.277344 70.167969 126.371094 70.261719 126.488281 70.261719 C 126.605469 70.261719 126.699219 70.167969 126.699219 70.050781 Z M 126.699219 70.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.71875 71.917969 C 122.71875 71.800781 122.625 71.707031 122.507812 71.707031 C 122.390625 71.707031 122.296875 71.800781 122.296875 71.917969 C 122.296875 72.035156 122.390625 72.128906 122.507812 72.128906 C 122.625 72.128906 122.71875 72.035156 122.71875 71.917969 Z M 122.71875 71.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 124.429688 69.078125 C 124.429688 68.960938 124.335938 68.867188 124.21875 68.867188 C 124.101562 68.867188 124.007812 68.960938 124.007812 69.078125 C 124.007812 69.195312 124.101562 69.289062 124.21875 69.289062 C 124.335938 69.289062 124.429688 69.195312 124.429688 69.078125 Z M 124.429688 69.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.445312 70.851562 C 122.445312 70.734375 122.351562 70.640625 122.234375 70.640625 C 122.117188 70.640625 122.023438 70.734375 122.023438 70.851562 C 122.023438 70.96875 122.117188 71.0625 122.234375 71.0625 C 122.351562 71.0625 122.445312 70.96875 122.445312 70.851562 Z M 122.445312 70.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.050781 70.789062 C 125.050781 70.671875 124.957031 70.578125 124.839844 70.578125 C 124.722656 70.578125 124.628906 70.671875 124.628906 70.789062 C 124.628906 70.90625 124.722656 71 124.839844 71 C 124.957031 71 125.050781 70.90625 125.050781 70.789062 Z M 125.050781 70.789062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 129.902344 70.5 C 129.902344 70.382812 129.808594 70.289062 129.691406 70.289062 C 129.574219 70.289062 129.480469 70.382812 129.480469 70.5 C 129.480469 70.617188 129.574219 70.710938 129.691406 70.710938 C 129.808594 70.710938 129.902344 70.617188 129.902344 70.5 Z M 129.902344 70.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.351562 69.726562 C 132.351562 69.609375 132.257812 69.515625 132.140625 69.515625 C 132.023438 69.515625 131.929688 69.609375 131.929688 69.726562 C 131.929688 69.84375 132.023438 69.9375 132.140625 69.9375 C 132.257812 69.9375 132.351562 69.84375 132.351562 69.726562 Z M 132.351562 69.726562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.914062 68.25 C 133.914062 68.132812 133.820312 68.039062 133.703125 68.039062 C 133.585938 68.039062 133.492188 68.132812 133.492188 68.25 C 133.492188 68.367188 133.585938 68.460938 133.703125 68.460938 C 133.820312 68.460938 133.914062 68.367188 133.914062 68.25 Z M 133.914062 68.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 129.523438 69.089844 C 129.523438 68.972656 129.429688 68.878906 129.3125 68.878906 C 129.195312 68.878906 129.101562 68.972656 129.101562 69.089844 C 129.101562 69.207031 129.195312 69.300781 129.3125 69.300781 C 129.429688 69.300781 129.523438 69.207031 129.523438 69.089844 Z M 129.523438 69.089844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 127.234375 72.429688 C 127.234375 72.3125 127.140625 72.21875 127.023438 72.21875 C 126.90625 72.21875 126.8125 72.3125 126.8125 72.429688 C 126.8125 72.546875 126.90625 72.640625 127.023438 72.640625 C 127.140625 72.640625 127.234375 72.546875 127.234375 72.429688 Z M 127.234375 72.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.460938 70.902344 C 130.460938 70.785156 130.367188 70.691406 130.25 70.691406 C 130.132812 70.691406 130.039062 70.785156 130.039062 70.902344 C 130.039062 71.019531 130.132812 71.113281 130.25 71.113281 C 130.367188 71.113281 130.460938 71.019531 130.460938 70.902344 Z M 130.460938 70.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.746094 73.4375 C 128.746094 73.320312 128.652344 73.226562 128.535156 73.226562 C 128.417969 73.226562 128.324219 73.320312 128.324219 73.4375 C 128.324219 73.554688 128.417969 73.648438 128.535156 73.648438 C 128.652344 73.648438 128.746094 73.554688 128.746094 73.4375 Z M 128.746094 73.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.917969 72.742188 C 128.917969 72.625 128.824219 72.53125 128.707031 72.53125 C 128.589844 72.53125 128.496094 72.625 128.496094 72.742188 C 128.496094 72.859375 128.589844 72.953125 128.707031 72.953125 C 128.824219 72.953125 128.917969 72.859375 128.917969 72.742188 Z M 128.917969 72.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.488281 71.761719 C 128.488281 71.644531 128.394531 71.550781 128.277344 71.550781 C 128.160156 71.550781 128.066406 71.644531 128.066406 71.761719 C 128.066406 71.878906 128.160156 71.972656 128.277344 71.972656 C 128.394531 71.972656 128.488281 71.878906 128.488281 71.761719 Z M 128.488281 71.761719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 129.21875 71.03125 C 129.21875 70.914062 129.125 70.820312 129.007812 70.820312 C 128.890625 70.820312 128.796875 70.914062 128.796875 71.03125 C 128.796875 71.148438 128.890625 71.242188 129.007812 71.242188 C 129.125 71.242188 129.21875 71.148438 129.21875 71.03125 Z M 129.21875 71.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 131.25 71.382812 C 131.25 71.265625 131.15625 71.171875 131.039062 71.171875 C 130.921875 71.171875 130.828125 71.265625 130.828125 71.382812 C 130.828125 71.5 130.921875 71.59375 131.039062 71.59375 C 131.15625 71.59375 131.25 71.5 131.25 71.382812 Z M 131.25 71.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 131.09375 74.554688 C 131.09375 74.4375 131 74.34375 130.882812 74.34375 C 130.765625 74.34375 130.671875 74.4375 130.671875 74.554688 C 130.671875 74.671875 130.765625 74.765625 130.882812 74.765625 C 131 74.765625 131.09375 74.671875 131.09375 74.554688 Z M 131.09375 74.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 131.25 75.710938 C 131.25 75.59375 131.15625 75.5 131.039062 75.5 C 130.921875 75.5 130.828125 75.59375 130.828125 75.710938 C 130.828125 75.828125 130.921875 75.921875 131.039062 75.921875 C 131.15625 75.921875 131.25 75.828125 131.25 75.710938 Z M 131.25 75.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 131.914062 75.964844 C 131.914062 75.847656 131.820312 75.753906 131.703125 75.753906 C 131.585938 75.753906 131.492188 75.847656 131.492188 75.964844 C 131.492188 76.082031 131.585938 76.175781 131.703125 76.175781 C 131.820312 76.175781 131.914062 76.082031 131.914062 75.964844 Z M 131.914062 75.964844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.605469 79.027344 C 133.605469 78.910156 133.511719 78.816406 133.394531 78.816406 C 133.277344 78.816406 133.183594 78.910156 133.183594 79.027344 C 133.183594 79.144531 133.277344 79.238281 133.394531 79.238281 C 133.511719 79.238281 133.605469 79.144531 133.605469 79.027344 Z M 133.605469 79.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 134.210938 79.589844 C 134.210938 79.472656 134.117188 79.378906 134 79.378906 C 133.882812 79.378906 133.789062 79.472656 133.789062 79.589844 C 133.789062 79.707031 133.882812 79.800781 134 79.800781 C 134.117188 79.800781 134.210938 79.707031 134.210938 79.589844 Z M 134.210938 79.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.324219 81.195312 C 133.324219 81.078125 133.230469 80.984375 133.113281 80.984375 C 132.996094 80.984375 132.902344 81.078125 132.902344 81.195312 C 132.902344 81.3125 132.996094 81.40625 133.113281 81.40625 C 133.230469 81.40625 133.324219 81.3125 133.324219 81.195312 Z M 133.324219 81.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.546875 80.273438 C 135.546875 80.15625 135.453125 80.0625 135.335938 80.0625 C 135.21875 80.0625 135.125 80.15625 135.125 80.273438 C 135.125 80.390625 135.21875 80.484375 135.335938 80.484375 C 135.453125 80.484375 135.546875 80.390625 135.546875 80.273438 Z M 135.546875 80.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.519531 77.953125 C 135.519531 77.835938 135.425781 77.742188 135.308594 77.742188 C 135.191406 77.742188 135.097656 77.835938 135.097656 77.953125 C 135.097656 78.070312 135.191406 78.164062 135.308594 78.164062 C 135.425781 78.164062 135.519531 78.070312 135.519531 77.953125 Z M 135.519531 77.953125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 134.949219 76.324219 C 134.949219 76.207031 134.855469 76.113281 134.738281 76.113281 C 134.621094 76.113281 134.527344 76.207031 134.527344 76.324219 C 134.527344 76.441406 134.621094 76.535156 134.738281 76.535156 C 134.855469 76.535156 134.949219 76.441406 134.949219 76.324219 Z M 134.949219 76.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 137.007812 76.632812 C 137.007812 76.515625 136.914062 76.421875 136.796875 76.421875 C 136.679688 76.421875 136.585938 76.515625 136.585938 76.632812 C 136.585938 76.75 136.679688 76.84375 136.796875 76.84375 C 136.914062 76.84375 137.007812 76.75 137.007812 76.632812 Z M 137.007812 76.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 136.632812 77.597656 C 136.632812 77.480469 136.539062 77.386719 136.421875 77.386719 C 136.304688 77.386719 136.210938 77.480469 136.210938 77.597656 C 136.210938 77.714844 136.304688 77.808594 136.421875 77.808594 C 136.539062 77.808594 136.632812 77.714844 136.632812 77.597656 Z M 136.632812 77.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 137.542969 78.367188 C 137.542969 78.25 137.449219 78.15625 137.332031 78.15625 C 137.214844 78.15625 137.121094 78.25 137.121094 78.367188 C 137.121094 78.484375 137.214844 78.578125 137.332031 78.578125 C 137.449219 78.578125 137.542969 78.484375 137.542969 78.367188 Z M 137.542969 78.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 134.804688 81.011719 C 134.804688 80.894531 134.710938 80.800781 134.59375 80.800781 C 134.476562 80.800781 134.382812 80.894531 134.382812 81.011719 C 134.382812 81.128906 134.476562 81.222656 134.59375 81.222656 C 134.710938 81.222656 134.804688 81.128906 134.804688 81.011719 Z M 134.804688 81.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 134.371094 77.3125 C 134.371094 77.195312 134.277344 77.101562 134.160156 77.101562 C 134.042969 77.101562 133.949219 77.195312 133.949219 77.3125 C 133.949219 77.429688 134.042969 77.523438 134.160156 77.523438 C 134.277344 77.523438 134.371094 77.429688 134.371094 77.3125 Z M 134.371094 77.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.160156 76.609375 C 135.160156 76.492188 135.066406 76.398438 134.949219 76.398438 C 134.832031 76.398438 134.738281 76.492188 134.738281 76.609375 C 134.738281 76.726562 134.832031 76.820312 134.949219 76.820312 C 135.066406 76.820312 135.160156 76.726562 135.160156 76.609375 Z M 135.160156 76.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 138.210938 74.816406 C 138.210938 74.699219 138.117188 74.605469 138 74.605469 C 137.882812 74.605469 137.789062 74.699219 137.789062 74.816406 C 137.789062 74.933594 137.882812 75.027344 138 75.027344 C 138.117188 75.027344 138.210938 74.933594 138.210938 74.816406 Z M 138.210938 74.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 140.585938 71.8125 C 140.585938 71.695312 140.492188 71.601562 140.375 71.601562 C 140.257812 71.601562 140.164062 71.695312 140.164062 71.8125 C 140.164062 71.929688 140.257812 72.023438 140.375 72.023438 C 140.492188 72.023438 140.585938 71.929688 140.585938 71.8125 Z M 140.585938 71.8125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 142.628906 70.722656 C 142.628906 70.605469 142.535156 70.511719 142.417969 70.511719 C 142.300781 70.511719 142.207031 70.605469 142.207031 70.722656 C 142.207031 70.839844 142.300781 70.933594 142.417969 70.933594 C 142.535156 70.933594 142.628906 70.839844 142.628906 70.722656 Z M 142.628906 70.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 141.578125 69.140625 C 141.578125 69.023438 141.484375 68.929688 141.367188 68.929688 C 141.25 68.929688 141.15625 69.023438 141.15625 69.140625 C 141.15625 69.257812 141.25 69.351562 141.367188 69.351562 C 141.484375 69.351562 141.578125 69.257812 141.578125 69.140625 Z M 141.578125 69.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 138.300781 70.796875 C 138.300781 70.679688 138.207031 70.585938 138.089844 70.585938 C 137.972656 70.585938 137.878906 70.679688 137.878906 70.796875 C 137.878906 70.914062 137.972656 71.007812 138.089844 71.007812 C 138.207031 71.007812 138.300781 70.914062 138.300781 70.796875 Z M 138.300781 70.796875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.84375 68.507812 C 133.84375 68.390625 133.75 68.296875 133.632812 68.296875 C 133.515625 68.296875 133.421875 68.390625 133.421875 68.507812 C 133.421875 68.625 133.515625 68.71875 133.632812 68.71875 C 133.75 68.71875 133.84375 68.625 133.84375 68.507812 Z M 133.84375 68.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.980469 72.609375 C 133.980469 72.492188 133.886719 72.398438 133.769531 72.398438 C 133.652344 72.398438 133.558594 72.492188 133.558594 72.609375 C 133.558594 72.726562 133.652344 72.820312 133.769531 72.820312 C 133.886719 72.820312 133.980469 72.726562 133.980469 72.609375 Z M 133.980469 72.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.863281 74.421875 C 133.863281 74.304688 133.769531 74.210938 133.652344 74.210938 C 133.535156 74.210938 133.441406 74.304688 133.441406 74.421875 C 133.441406 74.539062 133.535156 74.632812 133.652344 74.632812 C 133.769531 74.632812 133.863281 74.539062 133.863281 74.421875 Z M 133.863281 74.421875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.574219 73.972656 C 133.574219 73.855469 133.480469 73.761719 133.363281 73.761719 C 133.246094 73.761719 133.152344 73.855469 133.152344 73.972656 C 133.152344 74.089844 133.246094 74.183594 133.363281 74.183594 C 133.480469 74.183594 133.574219 74.089844 133.574219 73.972656 Z M 133.574219 73.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.304688 73.992188 C 133.304688 73.875 133.210938 73.78125 133.09375 73.78125 C 132.976562 73.78125 132.882812 73.875 132.882812 73.992188 C 132.882812 74.109375 132.976562 74.203125 133.09375 74.203125 C 133.210938 74.203125 133.304688 74.109375 133.304688 73.992188 Z M 133.304688 73.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.84375 75.808594 C 135.84375 75.691406 135.75 75.597656 135.632812 75.597656 C 135.515625 75.597656 135.421875 75.691406 135.421875 75.808594 C 135.421875 75.925781 135.515625 76.019531 135.632812 76.019531 C 135.75 76.019531 135.84375 75.925781 135.84375 75.808594 Z M 135.84375 75.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 136.175781 77.410156 C 136.175781 77.292969 136.082031 77.199219 135.964844 77.199219 C 135.847656 77.199219 135.753906 77.292969 135.753906 77.410156 C 135.753906 77.527344 135.847656 77.621094 135.964844 77.621094 C 136.082031 77.621094 136.175781 77.527344 136.175781 77.410156 Z M 136.175781 77.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.15625 77.019531 C 135.15625 76.902344 135.0625 76.808594 134.945312 76.808594 C 134.828125 76.808594 134.734375 76.902344 134.734375 77.019531 C 134.734375 77.136719 134.828125 77.230469 134.945312 77.230469 C 135.0625 77.230469 135.15625 77.136719 135.15625 77.019531 Z M 135.15625 77.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 140.414062 76.273438 C 140.414062 76.15625 140.320312 76.0625 140.203125 76.0625 C 140.085938 76.0625 139.992188 76.15625 139.992188 76.273438 C 139.992188 76.390625 140.085938 76.484375 140.203125 76.484375 C 140.320312 76.484375 140.414062 76.390625 140.414062 76.273438 Z M 140.414062 76.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 139.894531 72.625 C 139.894531 72.507812 139.800781 72.414062 139.683594 72.414062 C 139.566406 72.414062 139.472656 72.507812 139.472656 72.625 C 139.472656 72.742188 139.566406 72.835938 139.683594 72.835938 C 139.800781 72.835938 139.894531 72.742188 139.894531 72.625 Z M 139.894531 72.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 138.617188 69.585938 C 138.617188 69.46875 138.523438 69.375 138.40625 69.375 C 138.289062 69.375 138.195312 69.46875 138.195312 69.585938 C 138.195312 69.703125 138.289062 69.796875 138.40625 69.796875 C 138.523438 69.796875 138.617188 69.703125 138.617188 69.585938 Z M 138.617188 69.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.03125 68.464844 C 135.03125 68.347656 134.9375 68.253906 134.820312 68.253906 C 134.703125 68.253906 134.609375 68.347656 134.609375 68.464844 C 134.609375 68.582031 134.703125 68.675781 134.820312 68.675781 C 134.9375 68.675781 135.03125 68.582031 135.03125 68.464844 Z M 135.03125 68.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 136.082031 67.1875 C 136.082031 67.070312 135.988281 66.976562 135.871094 66.976562 C 135.753906 66.976562 135.660156 67.070312 135.660156 67.1875 C 135.660156 67.304688 135.753906 67.398438 135.871094 67.398438 C 135.988281 67.398438 136.082031 67.304688 136.082031 67.1875 Z M 136.082031 67.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 138.164062 62.414062 C 138.164062 62.296875 138.070312 62.203125 137.953125 62.203125 C 137.835938 62.203125 137.742188 62.296875 137.742188 62.414062 C 137.742188 62.53125 137.835938 62.625 137.953125 62.625 C 138.070312 62.625 138.164062 62.53125 138.164062 62.414062 Z M 138.164062 62.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 136.132812 63.402344 C 136.132812 63.285156 136.039062 63.191406 135.921875 63.191406 C 135.804688 63.191406 135.710938 63.285156 135.710938 63.402344 C 135.710938 63.519531 135.804688 63.613281 135.921875 63.613281 C 136.039062 63.613281 136.132812 63.519531 136.132812 63.402344 Z M 136.132812 63.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 136.976562 61.242188 C 136.976562 61.125 136.882812 61.03125 136.765625 61.03125 C 136.648438 61.03125 136.554688 61.125 136.554688 61.242188 C 136.554688 61.359375 136.648438 61.453125 136.765625 61.453125 C 136.882812 61.453125 136.976562 61.359375 136.976562 61.242188 Z M 136.976562 61.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 137.234375 62.511719 C 137.234375 62.394531 137.140625 62.300781 137.023438 62.300781 C 136.90625 62.300781 136.8125 62.394531 136.8125 62.511719 C 136.8125 62.628906 136.90625 62.722656 137.023438 62.722656 C 137.140625 62.722656 137.234375 62.628906 137.234375 62.511719 Z M 137.234375 62.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.625 60.46875 C 135.625 60.351562 135.53125 60.257812 135.414062 60.257812 C 135.296875 60.257812 135.203125 60.351562 135.203125 60.46875 C 135.203125 60.585938 135.296875 60.679688 135.414062 60.679688 C 135.53125 60.679688 135.625 60.585938 135.625 60.46875 Z M 135.625 60.46875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.578125 57.957031 C 135.578125 57.839844 135.484375 57.746094 135.367188 57.746094 C 135.25 57.746094 135.15625 57.839844 135.15625 57.957031 C 135.15625 58.074219 135.25 58.167969 135.367188 58.167969 C 135.484375 58.167969 135.578125 58.074219 135.578125 57.957031 Z M 135.578125 57.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 137.429688 54.496094 C 137.429688 54.378906 137.335938 54.285156 137.21875 54.285156 C 137.101562 54.285156 137.007812 54.378906 137.007812 54.496094 C 137.007812 54.613281 137.101562 54.707031 137.21875 54.707031 C 137.335938 54.707031 137.429688 54.613281 137.429688 54.496094 Z M 137.429688 54.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 137.53125 54.554688 C 137.53125 54.4375 137.4375 54.34375 137.320312 54.34375 C 137.203125 54.34375 137.109375 54.4375 137.109375 54.554688 C 137.109375 54.671875 137.203125 54.765625 137.320312 54.765625 C 137.4375 54.765625 137.53125 54.671875 137.53125 54.554688 Z M 137.53125 54.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 136.820312 54.050781 C 136.820312 53.933594 136.726562 53.839844 136.609375 53.839844 C 136.492188 53.839844 136.398438 53.933594 136.398438 54.050781 C 136.398438 54.167969 136.492188 54.261719 136.609375 54.261719 C 136.726562 54.261719 136.820312 54.167969 136.820312 54.050781 Z M 136.820312 54.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.535156 53.019531 C 133.535156 52.902344 133.441406 52.808594 133.324219 52.808594 C 133.207031 52.808594 133.113281 52.902344 133.113281 53.019531 C 133.113281 53.136719 133.207031 53.230469 133.324219 53.230469 C 133.441406 53.230469 133.535156 53.136719 133.535156 53.019531 Z M 133.535156 53.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.863281 52.53125 C 132.863281 52.414062 132.769531 52.320312 132.652344 52.320312 C 132.535156 52.320312 132.441406 52.414062 132.441406 52.53125 C 132.441406 52.648438 132.535156 52.742188 132.652344 52.742188 C 132.769531 52.742188 132.863281 52.648438 132.863281 52.53125 Z M 132.863281 52.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.238281 56.082031 C 130.238281 55.964844 130.144531 55.871094 130.027344 55.871094 C 129.910156 55.871094 129.816406 55.964844 129.816406 56.082031 C 129.816406 56.199219 129.910156 56.292969 130.027344 56.292969 C 130.144531 56.292969 130.238281 56.199219 130.238281 56.082031 Z M 130.238281 56.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.421875 51.972656 C 128.421875 51.855469 128.328125 51.761719 128.210938 51.761719 C 128.09375 51.761719 128 51.855469 128 51.972656 C 128 52.089844 128.09375 52.183594 128.210938 52.183594 C 128.328125 52.183594 128.421875 52.089844 128.421875 51.972656 Z M 128.421875 51.972656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.394531 51.097656 C 126.394531 50.980469 126.300781 50.886719 126.183594 50.886719 C 126.066406 50.886719 125.972656 50.980469 125.972656 51.097656 C 125.972656 51.214844 126.066406 51.308594 126.183594 51.308594 C 126.300781 51.308594 126.394531 51.214844 126.394531 51.097656 Z M 126.394531 51.097656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.375 48.652344 C 128.375 48.535156 128.28125 48.441406 128.164062 48.441406 C 128.046875 48.441406 127.953125 48.535156 127.953125 48.652344 C 127.953125 48.769531 128.046875 48.863281 128.164062 48.863281 C 128.28125 48.863281 128.375 48.769531 128.375 48.652344 Z M 128.375 48.652344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.507812 46.878906 C 128.507812 46.761719 128.414062 46.667969 128.296875 46.667969 C 128.179688 46.667969 128.085938 46.761719 128.085938 46.878906 C 128.085938 46.996094 128.179688 47.089844 128.296875 47.089844 C 128.414062 47.089844 128.507812 46.996094 128.507812 46.878906 Z M 128.507812 46.878906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.339844 45.933594 C 128.339844 45.816406 128.246094 45.722656 128.128906 45.722656 C 128.011719 45.722656 127.917969 45.816406 127.917969 45.933594 C 127.917969 46.050781 128.011719 46.144531 128.128906 46.144531 C 128.246094 46.144531 128.339844 46.050781 128.339844 45.933594 Z M 128.339844 45.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.378906 48.039062 C 130.378906 47.921875 130.285156 47.828125 130.167969 47.828125 C 130.050781 47.828125 129.957031 47.921875 129.957031 48.039062 C 129.957031 48.15625 130.050781 48.25 130.167969 48.25 C 130.285156 48.25 130.378906 48.15625 130.378906 48.039062 Z M 130.378906 48.039062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 131.625 48.703125 C 131.625 48.585938 131.53125 48.492188 131.414062 48.492188 C 131.296875 48.492188 131.203125 48.585938 131.203125 48.703125 C 131.203125 48.820312 131.296875 48.914062 131.414062 48.914062 C 131.53125 48.914062 131.625 48.820312 131.625 48.703125 Z M 131.625 48.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.773438 48.542969 C 132.773438 48.425781 132.679688 48.332031 132.5625 48.332031 C 132.445312 48.332031 132.351562 48.425781 132.351562 48.542969 C 132.351562 48.660156 132.445312 48.753906 132.5625 48.753906 C 132.679688 48.753906 132.773438 48.660156 132.773438 48.542969 Z M 132.773438 48.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 134.910156 51.289062 C 134.910156 51.171875 134.816406 51.078125 134.699219 51.078125 C 134.582031 51.078125 134.488281 51.171875 134.488281 51.289062 C 134.488281 51.40625 134.582031 51.5 134.699219 51.5 C 134.816406 51.5 134.910156 51.40625 134.910156 51.289062 Z M 134.910156 51.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.5625 50.773438 C 133.5625 50.65625 133.46875 50.5625 133.351562 50.5625 C 133.234375 50.5625 133.140625 50.65625 133.140625 50.773438 C 133.140625 50.890625 133.234375 50.984375 133.351562 50.984375 C 133.46875 50.984375 133.5625 50.890625 133.5625 50.773438 Z M 133.5625 50.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 136.324219 52.730469 C 136.324219 52.613281 136.230469 52.519531 136.113281 52.519531 C 135.996094 52.519531 135.902344 52.613281 135.902344 52.730469 C 135.902344 52.847656 135.996094 52.941406 136.113281 52.941406 C 136.230469 52.941406 136.324219 52.847656 136.324219 52.730469 Z M 136.324219 52.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 136.492188 53.414062 C 136.492188 53.296875 136.398438 53.203125 136.28125 53.203125 C 136.164062 53.203125 136.070312 53.296875 136.070312 53.414062 C 136.070312 53.53125 136.164062 53.625 136.28125 53.625 C 136.398438 53.625 136.492188 53.53125 136.492188 53.414062 Z M 136.492188 53.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.117188 52.3125 C 133.117188 52.195312 133.023438 52.101562 132.90625 52.101562 C 132.789062 52.101562 132.695312 52.195312 132.695312 52.3125 C 132.695312 52.429688 132.789062 52.523438 132.90625 52.523438 C 133.023438 52.523438 133.117188 52.429688 133.117188 52.3125 Z M 133.117188 52.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.464844 54.464844 C 132.464844 54.347656 132.371094 54.253906 132.253906 54.253906 C 132.136719 54.253906 132.042969 54.347656 132.042969 54.464844 C 132.042969 54.582031 132.136719 54.675781 132.253906 54.675781 C 132.371094 54.675781 132.464844 54.582031 132.464844 54.464844 Z M 132.464844 54.464844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 127.953125 54.949219 C 127.953125 54.832031 127.859375 54.738281 127.742188 54.738281 C 127.625 54.738281 127.53125 54.832031 127.53125 54.949219 C 127.53125 55.066406 127.625 55.160156 127.742188 55.160156 C 127.859375 55.160156 127.953125 55.066406 127.953125 54.949219 Z M 127.953125 54.949219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 124.03125 55.917969 C 124.03125 55.800781 123.9375 55.707031 123.820312 55.707031 C 123.703125 55.707031 123.609375 55.800781 123.609375 55.917969 C 123.609375 56.035156 123.703125 56.128906 123.820312 56.128906 C 123.9375 56.128906 124.03125 56.035156 124.03125 55.917969 Z M 124.03125 55.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.878906 57.023438 C 122.878906 56.90625 122.785156 56.8125 122.667969 56.8125 C 122.550781 56.8125 122.457031 56.90625 122.457031 57.023438 C 122.457031 57.140625 122.550781 57.234375 122.667969 57.234375 C 122.785156 57.234375 122.878906 57.140625 122.878906 57.023438 Z M 122.878906 57.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 123.789062 54.714844 C 123.789062 54.597656 123.695312 54.503906 123.578125 54.503906 C 123.460938 54.503906 123.367188 54.597656 123.367188 54.714844 C 123.367188 54.832031 123.460938 54.925781 123.578125 54.925781 C 123.695312 54.925781 123.789062 54.832031 123.789062 54.714844 Z M 123.789062 54.714844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 123.964844 53.179688 C 123.964844 53.0625 123.871094 52.96875 123.753906 52.96875 C 123.636719 52.96875 123.542969 53.0625 123.542969 53.179688 C 123.542969 53.296875 123.636719 53.390625 123.753906 53.390625 C 123.871094 53.390625 123.964844 53.296875 123.964844 53.179688 Z M 123.964844 53.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.917969 55.496094 C 122.917969 55.378906 122.824219 55.285156 122.707031 55.285156 C 122.589844 55.285156 122.496094 55.378906 122.496094 55.496094 C 122.496094 55.613281 122.589844 55.707031 122.707031 55.707031 C 122.824219 55.707031 122.917969 55.613281 122.917969 55.496094 Z M 122.917969 55.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 121.917969 54.777344 C 121.917969 54.660156 121.824219 54.566406 121.707031 54.566406 C 121.589844 54.566406 121.496094 54.660156 121.496094 54.777344 C 121.496094 54.894531 121.589844 54.988281 121.707031 54.988281 C 121.824219 54.988281 121.917969 54.894531 121.917969 54.777344 Z M 121.917969 54.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 121.851562 54.449219 C 121.851562 54.332031 121.757812 54.238281 121.640625 54.238281 C 121.523438 54.238281 121.429688 54.332031 121.429688 54.449219 C 121.429688 54.566406 121.523438 54.660156 121.640625 54.660156 C 121.757812 54.660156 121.851562 54.566406 121.851562 54.449219 Z M 121.851562 54.449219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.65625 54.855469 C 122.65625 54.738281 122.5625 54.644531 122.445312 54.644531 C 122.328125 54.644531 122.234375 54.738281 122.234375 54.855469 C 122.234375 54.972656 122.328125 55.066406 122.445312 55.066406 C 122.5625 55.066406 122.65625 54.972656 122.65625 54.855469 Z M 122.65625 54.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.976562 51.066406 C 122.976562 50.949219 122.882812 50.855469 122.765625 50.855469 C 122.648438 50.855469 122.554688 50.949219 122.554688 51.066406 C 122.554688 51.183594 122.648438 51.277344 122.765625 51.277344 C 122.882812 51.277344 122.976562 51.183594 122.976562 51.066406 Z M 122.976562 51.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.871094 52.203125 C 122.871094 52.085938 122.777344 51.992188 122.660156 51.992188 C 122.542969 51.992188 122.449219 52.085938 122.449219 52.203125 C 122.449219 52.320312 122.542969 52.414062 122.660156 52.414062 C 122.777344 52.414062 122.871094 52.320312 122.871094 52.203125 Z M 122.871094 52.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 120.527344 50.410156 C 120.527344 50.292969 120.433594 50.199219 120.316406 50.199219 C 120.199219 50.199219 120.105469 50.292969 120.105469 50.410156 C 120.105469 50.527344 120.199219 50.621094 120.316406 50.621094 C 120.433594 50.621094 120.527344 50.527344 120.527344 50.410156 Z M 120.527344 50.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.109375 50.402344 C 122.109375 50.285156 122.015625 50.191406 121.898438 50.191406 C 121.78125 50.191406 121.6875 50.285156 121.6875 50.402344 C 121.6875 50.519531 121.78125 50.613281 121.898438 50.613281 C 122.015625 50.613281 122.109375 50.519531 122.109375 50.402344 Z M 122.109375 50.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.003906 49.308594 C 122.003906 49.191406 121.910156 49.097656 121.792969 49.097656 C 121.675781 49.097656 121.582031 49.191406 121.582031 49.308594 C 121.582031 49.425781 121.675781 49.519531 121.792969 49.519531 C 121.910156 49.519531 122.003906 49.425781 122.003906 49.308594 Z M 122.003906 49.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.527344 49.554688 C 122.527344 49.4375 122.433594 49.34375 122.316406 49.34375 C 122.199219 49.34375 122.105469 49.4375 122.105469 49.554688 C 122.105469 49.671875 122.199219 49.765625 122.316406 49.765625 C 122.433594 49.765625 122.527344 49.671875 122.527344 49.554688 Z M 122.527344 49.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 123.375 45.386719 C 123.375 45.269531 123.28125 45.175781 123.164062 45.175781 C 123.046875 45.175781 122.953125 45.269531 122.953125 45.386719 C 122.953125 45.503906 123.046875 45.597656 123.164062 45.597656 C 123.28125 45.597656 123.375 45.503906 123.375 45.386719 Z M 123.375 45.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 127.492188 45.03125 C 127.492188 44.914062 127.398438 44.820312 127.28125 44.820312 C 127.164062 44.820312 127.070312 44.914062 127.070312 45.03125 C 127.070312 45.148438 127.164062 45.242188 127.28125 45.242188 C 127.398438 45.242188 127.492188 45.148438 127.492188 45.03125 Z M 127.492188 45.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.222656 45.453125 C 130.222656 45.335938 130.128906 45.242188 130.011719 45.242188 C 129.894531 45.242188 129.800781 45.335938 129.800781 45.453125 C 129.800781 45.570312 129.894531 45.664062 130.011719 45.664062 C 130.128906 45.664062 130.222656 45.570312 130.222656 45.453125 Z M 130.222656 45.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 127.8125 47.644531 C 127.8125 47.527344 127.71875 47.433594 127.601562 47.433594 C 127.484375 47.433594 127.390625 47.527344 127.390625 47.644531 C 127.390625 47.761719 127.484375 47.855469 127.601562 47.855469 C 127.71875 47.855469 127.8125 47.761719 127.8125 47.644531 Z M 127.8125 47.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.945312 46.222656 C 132.945312 46.105469 132.851562 46.011719 132.734375 46.011719 C 132.617188 46.011719 132.523438 46.105469 132.523438 46.222656 C 132.523438 46.339844 132.617188 46.433594 132.734375 46.433594 C 132.851562 46.433594 132.945312 46.339844 132.945312 46.222656 Z M 132.945312 46.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.007812 43.242188 C 133.007812 43.125 132.914062 43.03125 132.796875 43.03125 C 132.679688 43.03125 132.585938 43.125 132.585938 43.242188 C 132.585938 43.359375 132.679688 43.453125 132.796875 43.453125 C 132.914062 43.453125 133.007812 43.359375 133.007812 43.242188 Z M 133.007812 43.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.476562 45.6875 C 130.476562 45.570312 130.382812 45.476562 130.265625 45.476562 C 130.148438 45.476562 130.054688 45.570312 130.054688 45.6875 C 130.054688 45.804688 130.148438 45.898438 130.265625 45.898438 C 130.382812 45.898438 130.476562 45.804688 130.476562 45.6875 Z M 130.476562 45.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 131.476562 43.847656 C 131.476562 43.730469 131.382812 43.636719 131.265625 43.636719 C 131.148438 43.636719 131.054688 43.730469 131.054688 43.847656 C 131.054688 43.964844 131.148438 44.058594 131.265625 44.058594 C 131.382812 44.058594 131.476562 43.964844 131.476562 43.847656 Z M 131.476562 43.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 129.070312 44.734375 C 129.070312 44.617188 128.976562 44.523438 128.859375 44.523438 C 128.742188 44.523438 128.648438 44.617188 128.648438 44.734375 C 128.648438 44.851562 128.742188 44.945312 128.859375 44.945312 C 128.976562 44.945312 129.070312 44.851562 129.070312 44.734375 Z M 129.070312 44.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.464844 44.730469 C 126.464844 44.613281 126.371094 44.519531 126.253906 44.519531 C 126.136719 44.519531 126.042969 44.613281 126.042969 44.730469 C 126.042969 44.847656 126.136719 44.941406 126.253906 44.941406 C 126.371094 44.941406 126.464844 44.847656 126.464844 44.730469 Z M 126.464844 44.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.792969 43.160156 C 125.792969 43.042969 125.699219 42.949219 125.582031 42.949219 C 125.464844 42.949219 125.371094 43.042969 125.371094 43.160156 C 125.371094 43.277344 125.464844 43.371094 125.582031 43.371094 C 125.699219 43.371094 125.792969 43.277344 125.792969 43.160156 Z M 125.792969 43.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 123.308594 40.445312 C 123.308594 40.328125 123.214844 40.234375 123.097656 40.234375 C 122.980469 40.234375 122.886719 40.328125 122.886719 40.445312 C 122.886719 40.5625 122.980469 40.65625 123.097656 40.65625 C 123.214844 40.65625 123.308594 40.5625 123.308594 40.445312 Z M 123.308594 40.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 123.152344 41.941406 C 123.152344 41.824219 123.058594 41.730469 122.941406 41.730469 C 122.824219 41.730469 122.730469 41.824219 122.730469 41.941406 C 122.730469 42.058594 122.824219 42.152344 122.941406 42.152344 C 123.058594 42.152344 123.152344 42.058594 123.152344 41.941406 Z M 123.152344 41.941406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.558594 43.152344 C 125.558594 43.035156 125.464844 42.941406 125.347656 42.941406 C 125.230469 42.941406 125.136719 43.035156 125.136719 43.152344 C 125.136719 43.269531 125.230469 43.363281 125.347656 43.363281 C 125.464844 43.363281 125.558594 43.269531 125.558594 43.152344 Z M 125.558594 43.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.558594 40.757812 C 122.558594 40.640625 122.464844 40.546875 122.347656 40.546875 C 122.230469 40.546875 122.136719 40.640625 122.136719 40.757812 C 122.136719 40.875 122.230469 40.96875 122.347656 40.96875 C 122.464844 40.96875 122.558594 40.875 122.558594 40.757812 Z M 122.558594 40.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 121.859375 41.140625 C 121.859375 41.023438 121.765625 40.929688 121.648438 40.929688 C 121.53125 40.929688 121.4375 41.023438 121.4375 41.140625 C 121.4375 41.257812 121.53125 41.351562 121.648438 41.351562 C 121.765625 41.351562 121.859375 41.257812 121.859375 41.140625 Z M 121.859375 41.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.179688 39.710938 C 126.179688 39.59375 126.085938 39.5 125.96875 39.5 C 125.851562 39.5 125.757812 39.59375 125.757812 39.710938 C 125.757812 39.828125 125.851562 39.921875 125.96875 39.921875 C 126.085938 39.921875 126.179688 39.828125 126.179688 39.710938 Z M 126.179688 39.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 123.253906 39.152344 C 123.253906 39.035156 123.160156 38.941406 123.042969 38.941406 C 122.925781 38.941406 122.832031 39.035156 122.832031 39.152344 C 122.832031 39.269531 122.925781 39.363281 123.042969 39.363281 C 123.160156 39.363281 123.253906 39.269531 123.253906 39.152344 Z M 123.253906 39.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 121.230469 39.570312 C 121.230469 39.453125 121.136719 39.359375 121.019531 39.359375 C 120.902344 39.359375 120.808594 39.453125 120.808594 39.570312 C 120.808594 39.6875 120.902344 39.78125 121.019531 39.78125 C 121.136719 39.78125 121.230469 39.6875 121.230469 39.570312 Z M 121.230469 39.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 121.839844 38.375 C 121.839844 38.257812 121.746094 38.164062 121.628906 38.164062 C 121.511719 38.164062 121.417969 38.257812 121.417969 38.375 C 121.417969 38.492188 121.511719 38.585938 121.628906 38.585938 C 121.746094 38.585938 121.839844 38.492188 121.839844 38.375 Z M 121.839844 38.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.121094 36.238281 C 122.121094 36.121094 122.027344 36.027344 121.910156 36.027344 C 121.792969 36.027344 121.699219 36.121094 121.699219 36.238281 C 121.699219 36.355469 121.792969 36.449219 121.910156 36.449219 C 122.027344 36.449219 122.121094 36.355469 122.121094 36.238281 Z M 122.121094 36.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 120.769531 35.308594 C 120.769531 35.191406 120.675781 35.097656 120.558594 35.097656 C 120.441406 35.097656 120.347656 35.191406 120.347656 35.308594 C 120.347656 35.425781 120.441406 35.519531 120.558594 35.519531 C 120.675781 35.519531 120.769531 35.425781 120.769531 35.308594 Z M 120.769531 35.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 120.691406 35.5 C 120.691406 35.382812 120.597656 35.289062 120.480469 35.289062 C 120.363281 35.289062 120.269531 35.382812 120.269531 35.5 C 120.269531 35.617188 120.363281 35.710938 120.480469 35.710938 C 120.597656 35.710938 120.691406 35.617188 120.691406 35.5 Z M 120.691406 35.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 120.621094 38.59375 C 120.621094 38.476562 120.527344 38.382812 120.410156 38.382812 C 120.292969 38.382812 120.199219 38.476562 120.199219 38.59375 C 120.199219 38.710938 120.292969 38.804688 120.410156 38.804688 C 120.527344 38.804688 120.621094 38.710938 120.621094 38.59375 Z M 120.621094 38.59375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 120.960938 39.199219 C 120.960938 39.082031 120.867188 38.988281 120.75 38.988281 C 120.632812 38.988281 120.539062 39.082031 120.539062 39.199219 C 120.539062 39.316406 120.632812 39.410156 120.75 39.410156 C 120.867188 39.410156 120.960938 39.316406 120.960938 39.199219 Z M 120.960938 39.199219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 121.5 38.480469 C 121.5 38.363281 121.40625 38.269531 121.289062 38.269531 C 121.171875 38.269531 121.078125 38.363281 121.078125 38.480469 C 121.078125 38.597656 121.171875 38.691406 121.289062 38.691406 C 121.40625 38.691406 121.5 38.597656 121.5 38.480469 Z M 121.5 38.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 120.835938 39.742188 C 120.835938 39.625 120.742188 39.53125 120.625 39.53125 C 120.507812 39.53125 120.414062 39.625 120.414062 39.742188 C 120.414062 39.859375 120.507812 39.953125 120.625 39.953125 C 120.742188 39.953125 120.835938 39.859375 120.835938 39.742188 Z M 120.835938 39.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 121.234375 38.835938 C 121.234375 38.71875 121.140625 38.625 121.023438 38.625 C 120.90625 38.625 120.8125 38.71875 120.8125 38.835938 C 120.8125 38.953125 120.90625 39.046875 121.023438 39.046875 C 121.140625 39.046875 121.234375 38.953125 121.234375 38.835938 Z M 121.234375 38.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 121.566406 32.980469 C 121.566406 32.863281 121.472656 32.769531 121.355469 32.769531 C 121.238281 32.769531 121.144531 32.863281 121.144531 32.980469 C 121.144531 33.097656 121.238281 33.191406 121.355469 33.191406 C 121.472656 33.191406 121.566406 33.097656 121.566406 32.980469 Z M 121.566406 32.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.625 35.304688 C 122.625 35.1875 122.53125 35.09375 122.414062 35.09375 C 122.296875 35.09375 122.203125 35.1875 122.203125 35.304688 C 122.203125 35.421875 122.296875 35.515625 122.414062 35.515625 C 122.53125 35.515625 122.625 35.421875 122.625 35.304688 Z M 122.625 35.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 120.316406 37.269531 C 120.316406 37.152344 120.222656 37.058594 120.105469 37.058594 C 119.988281 37.058594 119.894531 37.152344 119.894531 37.269531 C 119.894531 37.386719 119.988281 37.480469 120.105469 37.480469 C 120.222656 37.480469 120.316406 37.386719 120.316406 37.269531 Z M 120.316406 37.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 120.445312 39.175781 C 120.445312 39.058594 120.351562 38.964844 120.234375 38.964844 C 120.117188 38.964844 120.023438 39.058594 120.023438 39.175781 C 120.023438 39.292969 120.117188 39.386719 120.234375 39.386719 C 120.351562 39.386719 120.445312 39.292969 120.445312 39.175781 Z M 120.445312 39.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 119.234375 40.144531 C 119.234375 40.027344 119.140625 39.933594 119.023438 39.933594 C 118.90625 39.933594 118.8125 40.027344 118.8125 40.144531 C 118.8125 40.261719 118.90625 40.355469 119.023438 40.355469 C 119.140625 40.355469 119.234375 40.261719 119.234375 40.144531 Z M 119.234375 40.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 124.695312 41.40625 C 124.695312 41.289062 124.601562 41.195312 124.484375 41.195312 C 124.367188 41.195312 124.273438 41.289062 124.273438 41.40625 C 124.273438 41.523438 124.367188 41.617188 124.484375 41.617188 C 124.601562 41.617188 124.695312 41.523438 124.695312 41.40625 Z M 124.695312 41.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.183594 40.375 C 122.183594 40.257812 122.089844 40.164062 121.972656 40.164062 C 121.855469 40.164062 121.761719 40.257812 121.761719 40.375 C 121.761719 40.492188 121.855469 40.585938 121.972656 40.585938 C 122.089844 40.585938 122.183594 40.492188 122.183594 40.375 Z M 122.183594 40.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.144531 39.5625 C 122.144531 39.445312 122.050781 39.351562 121.933594 39.351562 C 121.816406 39.351562 121.722656 39.445312 121.722656 39.5625 C 121.722656 39.679688 121.816406 39.773438 121.933594 39.773438 C 122.050781 39.773438 122.144531 39.679688 122.144531 39.5625 Z M 122.144531 39.5625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 123.71875 35.863281 C 123.71875 35.746094 123.625 35.652344 123.507812 35.652344 C 123.390625 35.652344 123.296875 35.746094 123.296875 35.863281 C 123.296875 35.980469 123.390625 36.074219 123.507812 36.074219 C 123.625 36.074219 123.71875 35.980469 123.71875 35.863281 Z M 123.71875 35.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.867188 36.621094 C 126.867188 36.503906 126.773438 36.410156 126.65625 36.410156 C 126.539062 36.410156 126.445312 36.503906 126.445312 36.621094 C 126.445312 36.738281 126.539062 36.832031 126.65625 36.832031 C 126.773438 36.832031 126.867188 36.738281 126.867188 36.621094 Z M 126.867188 36.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.425781 36.957031 C 126.425781 36.839844 126.332031 36.746094 126.214844 36.746094 C 126.097656 36.746094 126.003906 36.839844 126.003906 36.957031 C 126.003906 37.074219 126.097656 37.167969 126.214844 37.167969 C 126.332031 37.167969 126.425781 37.074219 126.425781 36.957031 Z M 126.425781 36.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.167969 35.679688 C 130.167969 35.5625 130.074219 35.46875 129.957031 35.46875 C 129.839844 35.46875 129.746094 35.5625 129.746094 35.679688 C 129.746094 35.796875 129.839844 35.890625 129.957031 35.890625 C 130.074219 35.890625 130.167969 35.796875 130.167969 35.679688 Z M 130.167969 35.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.574219 33.96875 C 133.574219 33.851562 133.480469 33.757812 133.363281 33.757812 C 133.246094 33.757812 133.152344 33.851562 133.152344 33.96875 C 133.152344 34.085938 133.246094 34.179688 133.363281 34.179688 C 133.480469 34.179688 133.574219 34.085938 133.574219 33.96875 Z M 133.574219 33.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.15625 33.875 C 133.15625 33.757812 133.0625 33.664062 132.945312 33.664062 C 132.828125 33.664062 132.734375 33.757812 132.734375 33.875 C 132.734375 33.992188 132.828125 34.085938 132.945312 34.085938 C 133.0625 34.085938 133.15625 33.992188 133.15625 33.875 Z M 133.15625 33.875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.527344 36.636719 C 135.527344 36.519531 135.433594 36.425781 135.316406 36.425781 C 135.199219 36.425781 135.105469 36.519531 135.105469 36.636719 C 135.105469 36.753906 135.199219 36.847656 135.316406 36.847656 C 135.433594 36.847656 135.527344 36.753906 135.527344 36.636719 Z M 135.527344 36.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.714844 34.410156 C 132.714844 34.292969 132.621094 34.199219 132.503906 34.199219 C 132.386719 34.199219 132.292969 34.292969 132.292969 34.410156 C 132.292969 34.527344 132.386719 34.621094 132.503906 34.621094 C 132.621094 34.621094 132.714844 34.527344 132.714844 34.410156 Z M 132.714844 34.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.464844 33.210938 C 130.464844 33.09375 130.371094 33 130.253906 33 C 130.136719 33 130.042969 33.09375 130.042969 33.210938 C 130.042969 33.328125 130.136719 33.421875 130.253906 33.421875 C 130.371094 33.421875 130.464844 33.328125 130.464844 33.210938 Z M 130.464844 33.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.289062 32.496094 C 132.289062 32.378906 132.195312 32.285156 132.078125 32.285156 C 131.960938 32.285156 131.867188 32.378906 131.867188 32.496094 C 131.867188 32.613281 131.960938 32.707031 132.078125 32.707031 C 132.195312 32.707031 132.289062 32.613281 132.289062 32.496094 Z M 132.289062 32.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.914062 31.160156 C 133.914062 31.042969 133.820312 30.949219 133.703125 30.949219 C 133.585938 30.949219 133.492188 31.042969 133.492188 31.160156 C 133.492188 31.277344 133.585938 31.371094 133.703125 31.371094 C 133.820312 31.371094 133.914062 31.277344 133.914062 31.160156 Z M 133.914062 31.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.503906 25.4375 C 132.503906 25.320312 132.410156 25.226562 132.292969 25.226562 C 132.175781 25.226562 132.082031 25.320312 132.082031 25.4375 C 132.082031 25.554688 132.175781 25.648438 132.292969 25.648438 C 132.410156 25.648438 132.503906 25.554688 132.503906 25.4375 Z M 132.503906 25.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 134.984375 23.394531 C 134.984375 23.277344 134.890625 23.183594 134.773438 23.183594 C 134.65625 23.183594 134.5625 23.277344 134.5625 23.394531 C 134.5625 23.511719 134.65625 23.605469 134.773438 23.605469 C 134.890625 23.605469 134.984375 23.511719 134.984375 23.394531 Z M 134.984375 23.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 131.164062 24.21875 C 131.164062 24.101562 131.070312 24.007812 130.953125 24.007812 C 130.835938 24.007812 130.742188 24.101562 130.742188 24.21875 C 130.742188 24.335938 130.835938 24.429688 130.953125 24.429688 C 131.070312 24.429688 131.164062 24.335938 131.164062 24.21875 Z M 131.164062 24.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 134.320312 23.9375 C 134.320312 23.820312 134.226562 23.726562 134.109375 23.726562 C 133.992188 23.726562 133.898438 23.820312 133.898438 23.9375 C 133.898438 24.054688 133.992188 24.148438 134.109375 24.148438 C 134.226562 24.148438 134.320312 24.054688 134.320312 23.9375 Z M 134.320312 23.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 136.671875 24.75 C 136.671875 24.632812 136.578125 24.539062 136.460938 24.539062 C 136.34375 24.539062 136.25 24.632812 136.25 24.75 C 136.25 24.867188 136.34375 24.960938 136.460938 24.960938 C 136.578125 24.960938 136.671875 24.867188 136.671875 24.75 Z M 136.671875 24.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 137.769531 26.054688 C 137.769531 25.9375 137.675781 25.84375 137.558594 25.84375 C 137.441406 25.84375 137.347656 25.9375 137.347656 26.054688 C 137.347656 26.171875 137.441406 26.265625 137.558594 26.265625 C 137.675781 26.265625 137.769531 26.171875 137.769531 26.054688 Z M 137.769531 26.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 137.046875 24.859375 C 137.046875 24.742188 136.953125 24.648438 136.835938 24.648438 C 136.71875 24.648438 136.625 24.742188 136.625 24.859375 C 136.625 24.976562 136.71875 25.070312 136.835938 25.070312 C 136.953125 25.070312 137.046875 24.976562 137.046875 24.859375 Z M 137.046875 24.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 137.957031 23.574219 C 137.957031 23.457031 137.863281 23.363281 137.746094 23.363281 C 137.628906 23.363281 137.535156 23.457031 137.535156 23.574219 C 137.535156 23.691406 137.628906 23.785156 137.746094 23.785156 C 137.863281 23.785156 137.957031 23.691406 137.957031 23.574219 Z M 137.957031 23.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 138.125 24.273438 C 138.125 24.15625 138.03125 24.0625 137.914062 24.0625 C 137.796875 24.0625 137.703125 24.15625 137.703125 24.273438 C 137.703125 24.390625 137.796875 24.484375 137.914062 24.484375 C 138.03125 24.484375 138.125 24.390625 138.125 24.273438 Z M 138.125 24.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 139.046875 22.550781 C 139.046875 22.433594 138.953125 22.339844 138.835938 22.339844 C 138.71875 22.339844 138.625 22.433594 138.625 22.550781 C 138.625 22.667969 138.71875 22.761719 138.835938 22.761719 C 138.953125 22.761719 139.046875 22.667969 139.046875 22.550781 Z M 139.046875 22.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 136.382812 23.453125 C 136.382812 23.335938 136.289062 23.242188 136.171875 23.242188 C 136.054688 23.242188 135.960938 23.335938 135.960938 23.453125 C 135.960938 23.570312 136.054688 23.664062 136.171875 23.664062 C 136.289062 23.664062 136.382812 23.570312 136.382812 23.453125 Z M 136.382812 23.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.214844 27.046875 C 135.214844 26.929688 135.121094 26.835938 135.003906 26.835938 C 134.886719 26.835938 134.792969 26.929688 134.792969 27.046875 C 134.792969 27.164062 134.886719 27.257812 135.003906 27.257812 C 135.121094 27.257812 135.214844 27.164062 135.214844 27.046875 Z M 135.214844 27.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.988281 25.707031 C 133.988281 25.589844 133.894531 25.496094 133.777344 25.496094 C 133.660156 25.496094 133.566406 25.589844 133.566406 25.707031 C 133.566406 25.824219 133.660156 25.917969 133.777344 25.917969 C 133.894531 25.917969 133.988281 25.824219 133.988281 25.707031 Z M 133.988281 25.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.511719 24.621094 C 133.511719 24.503906 133.417969 24.410156 133.300781 24.410156 C 133.183594 24.410156 133.089844 24.503906 133.089844 24.621094 C 133.089844 24.738281 133.183594 24.832031 133.300781 24.832031 C 133.417969 24.832031 133.511719 24.738281 133.511719 24.621094 Z M 133.511719 24.621094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.683594 27.589844 C 132.683594 27.472656 132.589844 27.378906 132.472656 27.378906 C 132.355469 27.378906 132.261719 27.472656 132.261719 27.589844 C 132.261719 27.707031 132.355469 27.800781 132.472656 27.800781 C 132.589844 27.800781 132.683594 27.707031 132.683594 27.589844 Z M 132.683594 27.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.222656 28.777344 C 133.222656 28.660156 133.128906 28.566406 133.011719 28.566406 C 132.894531 28.566406 132.800781 28.660156 132.800781 28.777344 C 132.800781 28.894531 132.894531 28.988281 133.011719 28.988281 C 133.128906 28.988281 133.222656 28.894531 133.222656 28.777344 Z M 133.222656 28.777344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.949219 29.925781 C 130.949219 29.808594 130.855469 29.714844 130.738281 29.714844 C 130.621094 29.714844 130.527344 29.808594 130.527344 29.925781 C 130.527344 30.042969 130.621094 30.136719 130.738281 30.136719 C 130.855469 30.136719 130.949219 30.042969 130.949219 29.925781 Z M 130.949219 29.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.34375 29.773438 C 135.34375 29.65625 135.25 29.5625 135.132812 29.5625 C 135.015625 29.5625 134.921875 29.65625 134.921875 29.773438 C 134.921875 29.890625 135.015625 29.984375 135.132812 29.984375 C 135.25 29.984375 135.34375 29.890625 135.34375 29.773438 Z M 135.34375 29.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.65625 31.269531 C 135.65625 31.152344 135.5625 31.058594 135.445312 31.058594 C 135.328125 31.058594 135.234375 31.152344 135.234375 31.269531 C 135.234375 31.386719 135.328125 31.480469 135.445312 31.480469 C 135.5625 31.480469 135.65625 31.386719 135.65625 31.269531 Z M 135.65625 31.269531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.027344 31.441406 C 135.027344 31.324219 134.933594 31.230469 134.816406 31.230469 C 134.699219 31.230469 134.605469 31.324219 134.605469 31.441406 C 134.605469 31.558594 134.699219 31.652344 134.816406 31.652344 C 134.933594 31.652344 135.027344 31.558594 135.027344 31.441406 Z M 135.027344 31.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.804688 30.757812 C 133.804688 30.640625 133.710938 30.546875 133.59375 30.546875 C 133.476562 30.546875 133.382812 30.640625 133.382812 30.757812 C 133.382812 30.875 133.476562 30.96875 133.59375 30.96875 C 133.710938 30.96875 133.804688 30.875 133.804688 30.757812 Z M 133.804688 30.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.488281 31.265625 C 130.488281 31.148438 130.394531 31.054688 130.277344 31.054688 C 130.160156 31.054688 130.066406 31.148438 130.066406 31.265625 C 130.066406 31.382812 130.160156 31.476562 130.277344 31.476562 C 130.394531 31.476562 130.488281 31.382812 130.488281 31.265625 Z M 130.488281 31.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.019531 29.996094 C 128.019531 29.878906 127.925781 29.785156 127.808594 29.785156 C 127.691406 29.785156 127.597656 29.878906 127.597656 29.996094 C 127.597656 30.113281 127.691406 30.207031 127.808594 30.207031 C 127.925781 30.207031 128.019531 30.113281 128.019531 29.996094 Z M 128.019531 29.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.679688 32.804688 C 125.679688 32.6875 125.585938 32.59375 125.46875 32.59375 C 125.351562 32.59375 125.257812 32.6875 125.257812 32.804688 C 125.257812 32.921875 125.351562 33.015625 125.46875 33.015625 C 125.585938 33.015625 125.679688 32.921875 125.679688 32.804688 Z M 125.679688 32.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 127.308594 38.023438 C 127.308594 37.90625 127.214844 37.8125 127.097656 37.8125 C 126.980469 37.8125 126.886719 37.90625 126.886719 38.023438 C 126.886719 38.140625 126.980469 38.234375 127.097656 38.234375 C 127.214844 38.234375 127.308594 38.140625 127.308594 38.023438 Z M 127.308594 38.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 121.859375 36.824219 C 121.859375 36.707031 121.765625 36.613281 121.648438 36.613281 C 121.53125 36.613281 121.4375 36.707031 121.4375 36.824219 C 121.4375 36.941406 121.53125 37.035156 121.648438 37.035156 C 121.765625 37.035156 121.859375 36.941406 121.859375 36.824219 Z M 121.859375 36.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 118.335938 38.417969 C 118.335938 38.300781 118.242188 38.207031 118.125 38.207031 C 118.007812 38.207031 117.914062 38.300781 117.914062 38.417969 C 117.914062 38.535156 118.007812 38.628906 118.125 38.628906 C 118.242188 38.628906 118.335938 38.535156 118.335938 38.417969 Z M 118.335938 38.417969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 116.917969 37.554688 C 116.917969 37.4375 116.824219 37.34375 116.707031 37.34375 C 116.589844 37.34375 116.496094 37.4375 116.496094 37.554688 C 116.496094 37.671875 116.589844 37.765625 116.707031 37.765625 C 116.824219 37.765625 116.917969 37.671875 116.917969 37.554688 Z M 116.917969 37.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 118.65625 39.917969 C 118.65625 39.800781 118.5625 39.707031 118.445312 39.707031 C 118.328125 39.707031 118.234375 39.800781 118.234375 39.917969 C 118.234375 40.035156 118.328125 40.128906 118.445312 40.128906 C 118.5625 40.128906 118.65625 40.035156 118.65625 39.917969 Z M 118.65625 39.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 118.59375 38.625 C 118.59375 38.507812 118.5 38.414062 118.382812 38.414062 C 118.265625 38.414062 118.171875 38.507812 118.171875 38.625 C 118.171875 38.742188 118.265625 38.835938 118.382812 38.835938 C 118.5 38.835938 118.59375 38.742188 118.59375 38.625 Z M 118.59375 38.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 118.894531 40.566406 C 118.894531 40.449219 118.800781 40.355469 118.683594 40.355469 C 118.566406 40.355469 118.472656 40.449219 118.472656 40.566406 C 118.472656 40.683594 118.566406 40.777344 118.683594 40.777344 C 118.800781 40.777344 118.894531 40.683594 118.894531 40.566406 Z M 118.894531 40.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 118.5625 40.488281 C 118.5625 40.371094 118.46875 40.277344 118.351562 40.277344 C 118.234375 40.277344 118.140625 40.371094 118.140625 40.488281 C 118.140625 40.605469 118.234375 40.699219 118.351562 40.699219 C 118.46875 40.699219 118.5625 40.605469 118.5625 40.488281 Z M 118.5625 40.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 115.730469 39.90625 C 115.730469 39.789062 115.636719 39.695312 115.519531 39.695312 C 115.402344 39.695312 115.308594 39.789062 115.308594 39.90625 C 115.308594 40.023438 115.402344 40.117188 115.519531 40.117188 C 115.636719 40.117188 115.730469 40.023438 115.730469 39.90625 Z M 115.730469 39.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 117.558594 39.304688 C 117.558594 39.1875 117.464844 39.09375 117.347656 39.09375 C 117.230469 39.09375 117.136719 39.1875 117.136719 39.304688 C 117.136719 39.421875 117.230469 39.515625 117.347656 39.515625 C 117.464844 39.515625 117.558594 39.421875 117.558594 39.304688 Z M 117.558594 39.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 117.707031 41.179688 C 117.707031 41.0625 117.613281 40.96875 117.496094 40.96875 C 117.378906 40.96875 117.285156 41.0625 117.285156 41.179688 C 117.285156 41.296875 117.378906 41.390625 117.496094 41.390625 C 117.613281 41.390625 117.707031 41.296875 117.707031 41.179688 Z M 117.707031 41.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 121.117188 42.046875 C 121.117188 41.929688 121.023438 41.835938 120.90625 41.835938 C 120.789062 41.835938 120.695312 41.929688 120.695312 42.046875 C 120.695312 42.164062 120.789062 42.257812 120.90625 42.257812 C 121.023438 42.257812 121.117188 42.164062 121.117188 42.046875 Z M 121.117188 42.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 120.78125 46.722656 C 120.78125 46.605469 120.6875 46.511719 120.570312 46.511719 C 120.453125 46.511719 120.359375 46.605469 120.359375 46.722656 C 120.359375 46.839844 120.453125 46.933594 120.570312 46.933594 C 120.6875 46.933594 120.78125 46.839844 120.78125 46.722656 Z M 120.78125 46.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 120.605469 45.15625 C 120.605469 45.039062 120.511719 44.945312 120.394531 44.945312 C 120.277344 44.945312 120.183594 45.039062 120.183594 45.15625 C 120.183594 45.273438 120.277344 45.367188 120.394531 45.367188 C 120.511719 45.367188 120.605469 45.273438 120.605469 45.15625 Z M 120.605469 45.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 123.75 45.078125 C 123.75 44.960938 123.65625 44.867188 123.539062 44.867188 C 123.421875 44.867188 123.328125 44.960938 123.328125 45.078125 C 123.328125 45.195312 123.421875 45.289062 123.539062 45.289062 C 123.65625 45.289062 123.75 45.195312 123.75 45.078125 Z M 123.75 45.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.585938 44.257812 C 122.585938 44.140625 122.492188 44.046875 122.375 44.046875 C 122.257812 44.046875 122.164062 44.140625 122.164062 44.257812 C 122.164062 44.375 122.257812 44.46875 122.375 44.46875 C 122.492188 44.46875 122.585938 44.375 122.585938 44.257812 Z M 122.585938 44.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 123.632812 44.582031 C 123.632812 44.464844 123.539062 44.371094 123.421875 44.371094 C 123.304688 44.371094 123.210938 44.464844 123.210938 44.582031 C 123.210938 44.699219 123.304688 44.792969 123.421875 44.792969 C 123.539062 44.792969 123.632812 44.699219 123.632812 44.582031 Z M 123.632812 44.582031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.601562 44.859375 C 122.601562 44.742188 122.507812 44.648438 122.390625 44.648438 C 122.273438 44.648438 122.179688 44.742188 122.179688 44.859375 C 122.179688 44.976562 122.273438 45.070312 122.390625 45.070312 C 122.507812 45.070312 122.601562 44.976562 122.601562 44.859375 Z M 122.601562 44.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.269531 41.238281 C 122.269531 41.121094 122.175781 41.027344 122.058594 41.027344 C 121.941406 41.027344 121.847656 41.121094 121.847656 41.238281 C 121.847656 41.355469 121.941406 41.449219 122.058594 41.449219 C 122.175781 41.449219 122.269531 41.355469 122.269531 41.238281 Z M 122.269531 41.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.117188 39.203125 C 126.117188 39.085938 126.023438 38.992188 125.90625 38.992188 C 125.789062 38.992188 125.695312 39.085938 125.695312 39.203125 C 125.695312 39.320312 125.789062 39.414062 125.90625 39.414062 C 126.023438 39.414062 126.117188 39.320312 126.117188 39.203125 Z M 126.117188 39.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 127.964844 39.265625 C 127.964844 39.148438 127.871094 39.054688 127.753906 39.054688 C 127.636719 39.054688 127.542969 39.148438 127.542969 39.265625 C 127.542969 39.382812 127.636719 39.476562 127.753906 39.476562 C 127.871094 39.476562 127.964844 39.382812 127.964844 39.265625 Z M 127.964844 39.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.609375 34.960938 C 125.609375 34.84375 125.515625 34.75 125.398438 34.75 C 125.28125 34.75 125.1875 34.84375 125.1875 34.960938 C 125.1875 35.078125 125.28125 35.171875 125.398438 35.171875 C 125.515625 35.171875 125.609375 35.078125 125.609375 34.960938 Z M 125.609375 34.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.316406 30.996094 C 126.316406 30.878906 126.222656 30.785156 126.105469 30.785156 C 125.988281 30.785156 125.894531 30.878906 125.894531 30.996094 C 125.894531 31.113281 125.988281 31.207031 126.105469 31.207031 C 126.222656 31.207031 126.316406 31.113281 126.316406 30.996094 Z M 126.316406 30.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.433594 28.683594 C 126.433594 28.566406 126.339844 28.472656 126.222656 28.472656 C 126.105469 28.472656 126.011719 28.566406 126.011719 28.683594 C 126.011719 28.800781 126.105469 28.894531 126.222656 28.894531 C 126.339844 28.894531 126.433594 28.800781 126.433594 28.683594 Z M 126.433594 28.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 127.566406 31.472656 C 127.566406 31.355469 127.472656 31.261719 127.355469 31.261719 C 127.238281 31.261719 127.144531 31.355469 127.144531 31.472656 C 127.144531 31.589844 127.238281 31.683594 127.355469 31.683594 C 127.472656 31.683594 127.566406 31.589844 127.566406 31.472656 Z M 127.566406 31.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 127.152344 32.164062 C 127.152344 32.046875 127.058594 31.953125 126.941406 31.953125 C 126.824219 31.953125 126.730469 32.046875 126.730469 32.164062 C 126.730469 32.28125 126.824219 32.375 126.941406 32.375 C 127.058594 32.375 127.152344 32.28125 127.152344 32.164062 Z M 127.152344 32.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.347656 32.515625 C 126.347656 32.398438 126.253906 32.304688 126.136719 32.304688 C 126.019531 32.304688 125.925781 32.398438 125.925781 32.515625 C 125.925781 32.632812 126.019531 32.726562 126.136719 32.726562 C 126.253906 32.726562 126.347656 32.632812 126.347656 32.515625 Z M 126.347656 32.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.757812 35.859375 C 126.757812 35.742188 126.664062 35.648438 126.546875 35.648438 C 126.429688 35.648438 126.335938 35.742188 126.335938 35.859375 C 126.335938 35.976562 126.429688 36.070312 126.546875 36.070312 C 126.664062 36.070312 126.757812 35.976562 126.757812 35.859375 Z M 126.757812 35.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.457031 31.054688 C 126.457031 30.9375 126.363281 30.84375 126.246094 30.84375 C 126.128906 30.84375 126.035156 30.9375 126.035156 31.054688 C 126.035156 31.171875 126.128906 31.265625 126.246094 31.265625 C 126.363281 31.265625 126.457031 31.171875 126.457031 31.054688 Z M 126.457031 31.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.164062 31.738281 C 130.164062 31.621094 130.070312 31.527344 129.953125 31.527344 C 129.835938 31.527344 129.742188 31.621094 129.742188 31.738281 C 129.742188 31.855469 129.835938 31.949219 129.953125 31.949219 C 130.070312 31.949219 130.164062 31.855469 130.164062 31.738281 Z M 130.164062 31.738281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 124.980469 29.667969 C 124.980469 29.550781 124.886719 29.457031 124.769531 29.457031 C 124.652344 29.457031 124.558594 29.550781 124.558594 29.667969 C 124.558594 29.785156 124.652344 29.878906 124.769531 29.878906 C 124.886719 29.878906 124.980469 29.785156 124.980469 29.667969 Z M 124.980469 29.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.796875 27.65625 C 122.796875 27.539062 122.703125 27.445312 122.585938 27.445312 C 122.46875 27.445312 122.375 27.539062 122.375 27.65625 C 122.375 27.773438 122.46875 27.867188 122.585938 27.867188 C 122.703125 27.867188 122.796875 27.773438 122.796875 27.65625 Z M 122.796875 27.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 123.945312 28.140625 C 123.945312 28.023438 123.851562 27.929688 123.734375 27.929688 C 123.617188 27.929688 123.523438 28.023438 123.523438 28.140625 C 123.523438 28.257812 123.617188 28.351562 123.734375 28.351562 C 123.851562 28.351562 123.945312 28.257812 123.945312 28.140625 Z M 123.945312 28.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 123.773438 26.617188 C 123.773438 26.5 123.679688 26.40625 123.5625 26.40625 C 123.445312 26.40625 123.351562 26.5 123.351562 26.617188 C 123.351562 26.734375 123.445312 26.828125 123.5625 26.828125 C 123.679688 26.828125 123.773438 26.734375 123.773438 26.617188 Z M 123.773438 26.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 120.363281 25.75 C 120.363281 25.632812 120.269531 25.539062 120.152344 25.539062 C 120.035156 25.539062 119.941406 25.632812 119.941406 25.75 C 119.941406 25.867188 120.035156 25.960938 120.152344 25.960938 C 120.269531 25.960938 120.363281 25.867188 120.363281 25.75 Z M 120.363281 25.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 119.363281 26.558594 C 119.363281 26.441406 119.269531 26.347656 119.152344 26.347656 C 119.035156 26.347656 118.941406 26.441406 118.941406 26.558594 C 118.941406 26.675781 119.035156 26.769531 119.152344 26.769531 C 119.269531 26.769531 119.363281 26.675781 119.363281 26.558594 Z M 119.363281 26.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 119.75 23.355469 C 119.75 23.238281 119.65625 23.144531 119.539062 23.144531 C 119.421875 23.144531 119.328125 23.238281 119.328125 23.355469 C 119.328125 23.472656 119.421875 23.566406 119.539062 23.566406 C 119.65625 23.566406 119.75 23.472656 119.75 23.355469 Z M 119.75 23.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.65625 21.886719 C 122.65625 21.769531 122.5625 21.675781 122.445312 21.675781 C 122.328125 21.675781 122.234375 21.769531 122.234375 21.886719 C 122.234375 22.003906 122.328125 22.097656 122.445312 22.097656 C 122.5625 22.097656 122.65625 22.003906 122.65625 21.886719 Z M 122.65625 21.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.449219 19.054688 C 125.449219 18.9375 125.355469 18.84375 125.238281 18.84375 C 125.121094 18.84375 125.027344 18.9375 125.027344 19.054688 C 125.027344 19.171875 125.121094 19.265625 125.238281 19.265625 C 125.355469 19.265625 125.449219 19.171875 125.449219 19.054688 Z M 125.449219 19.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 121.023438 15.585938 C 121.023438 15.46875 120.929688 15.375 120.8125 15.375 C 120.695312 15.375 120.601562 15.46875 120.601562 15.585938 C 120.601562 15.703125 120.695312 15.796875 120.8125 15.796875 C 120.929688 15.796875 121.023438 15.703125 121.023438 15.585938 Z M 121.023438 15.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 121.140625 16.511719 C 121.140625 16.394531 121.046875 16.300781 120.929688 16.300781 C 120.8125 16.300781 120.71875 16.394531 120.71875 16.511719 C 120.71875 16.628906 120.8125 16.722656 120.929688 16.722656 C 121.046875 16.722656 121.140625 16.628906 121.140625 16.511719 Z M 121.140625 16.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 121.46875 14.640625 C 121.46875 14.523438 121.375 14.429688 121.257812 14.429688 C 121.140625 14.429688 121.046875 14.523438 121.046875 14.640625 C 121.046875 14.757812 121.140625 14.851562 121.257812 14.851562 C 121.375 14.851562 121.46875 14.757812 121.46875 14.640625 Z M 121.46875 14.640625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.730469 9.570312 C 122.730469 9.453125 122.636719 9.359375 122.519531 9.359375 C 122.402344 9.359375 122.308594 9.453125 122.308594 9.570312 C 122.308594 9.6875 122.402344 9.78125 122.519531 9.78125 C 122.636719 9.78125 122.730469 9.6875 122.730469 9.570312 Z M 122.730469 9.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.824219 6.804688 C 122.824219 6.6875 122.730469 6.59375 122.613281 6.59375 C 122.496094 6.59375 122.402344 6.6875 122.402344 6.804688 C 122.402344 6.921875 122.496094 7.015625 122.613281 7.015625 C 122.730469 7.015625 122.824219 6.921875 122.824219 6.804688 Z M 122.824219 6.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 118.351562 10.660156 C 118.351562 10.542969 118.257812 10.449219 118.140625 10.449219 C 118.023438 10.449219 117.929688 10.542969 117.929688 10.660156 C 117.929688 10.777344 118.023438 10.871094 118.140625 10.871094 C 118.257812 10.871094 118.351562 10.777344 118.351562 10.660156 Z M 118.351562 10.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 120.941406 9.257812 C 120.941406 9.140625 120.847656 9.046875 120.730469 9.046875 C 120.613281 9.046875 120.519531 9.140625 120.519531 9.257812 C 120.519531 9.375 120.613281 9.46875 120.730469 9.46875 C 120.847656 9.46875 120.941406 9.375 120.941406 9.257812 Z M 120.941406 9.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 120.808594 7.289062 C 120.808594 7.171875 120.714844 7.078125 120.597656 7.078125 C 120.480469 7.078125 120.386719 7.171875 120.386719 7.289062 C 120.386719 7.40625 120.480469 7.5 120.597656 7.5 C 120.714844 7.5 120.808594 7.40625 120.808594 7.289062 Z M 120.808594 7.289062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 123.554688 10.574219 C 123.554688 10.457031 123.460938 10.363281 123.34375 10.363281 C 123.226562 10.363281 123.132812 10.457031 123.132812 10.574219 C 123.132812 10.691406 123.226562 10.785156 123.34375 10.785156 C 123.460938 10.785156 123.554688 10.691406 123.554688 10.574219 Z M 123.554688 10.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.253906 11.355469 C 125.253906 11.238281 125.160156 11.144531 125.042969 11.144531 C 124.925781 11.144531 124.832031 11.238281 124.832031 11.355469 C 124.832031 11.472656 124.925781 11.566406 125.042969 11.566406 C 125.160156 11.566406 125.253906 11.472656 125.253906 11.355469 Z M 125.253906 11.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 124.691406 13.03125 C 124.691406 12.914062 124.597656 12.820312 124.480469 12.820312 C 124.363281 12.820312 124.269531 12.914062 124.269531 13.03125 C 124.269531 13.148438 124.363281 13.242188 124.480469 13.242188 C 124.597656 13.242188 124.691406 13.148438 124.691406 13.03125 Z M 124.691406 13.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.898438 13.75 C 125.898438 13.632812 125.804688 13.539062 125.6875 13.539062 C 125.570312 13.539062 125.476562 13.632812 125.476562 13.75 C 125.476562 13.867188 125.570312 13.960938 125.6875 13.960938 C 125.804688 13.960938 125.898438 13.867188 125.898438 13.75 Z M 125.898438 13.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.625 13.472656 C 126.625 13.355469 126.53125 13.261719 126.414062 13.261719 C 126.296875 13.261719 126.203125 13.355469 126.203125 13.472656 C 126.203125 13.589844 126.296875 13.683594 126.414062 13.683594 C 126.53125 13.683594 126.625 13.589844 126.625 13.472656 Z M 126.625 13.472656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 127.273438 14.980469 C 127.273438 14.863281 127.179688 14.769531 127.0625 14.769531 C 126.945312 14.769531 126.851562 14.863281 126.851562 14.980469 C 126.851562 15.097656 126.945312 15.191406 127.0625 15.191406 C 127.179688 15.191406 127.273438 15.097656 127.273438 14.980469 Z M 127.273438 14.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.25 13.375 C 128.25 13.257812 128.15625 13.164062 128.039062 13.164062 C 127.921875 13.164062 127.828125 13.257812 127.828125 13.375 C 127.828125 13.492188 127.921875 13.585938 128.039062 13.585938 C 128.15625 13.585938 128.25 13.492188 128.25 13.375 Z M 128.25 13.375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.832031 9.566406 C 125.832031 9.449219 125.738281 9.355469 125.621094 9.355469 C 125.503906 9.355469 125.410156 9.449219 125.410156 9.566406 C 125.410156 9.683594 125.503906 9.777344 125.621094 9.777344 C 125.738281 9.777344 125.832031 9.683594 125.832031 9.566406 Z M 125.832031 9.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.347656 15.28125 C 125.347656 15.164062 125.253906 15.070312 125.136719 15.070312 C 125.019531 15.070312 124.925781 15.164062 124.925781 15.28125 C 124.925781 15.398438 125.019531 15.492188 125.136719 15.492188 C 125.253906 15.492188 125.347656 15.398438 125.347656 15.28125 Z M 125.347656 15.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.835938 15.230469 C 122.835938 15.113281 122.742188 15.019531 122.625 15.019531 C 122.507812 15.019531 122.414062 15.113281 122.414062 15.230469 C 122.414062 15.347656 122.507812 15.441406 122.625 15.441406 C 122.742188 15.441406 122.835938 15.347656 122.835938 15.230469 Z M 122.835938 15.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.105469 16.1875 C 125.105469 16.070312 125.011719 15.976562 124.894531 15.976562 C 124.777344 15.976562 124.683594 16.070312 124.683594 16.1875 C 124.683594 16.304688 124.777344 16.398438 124.894531 16.398438 C 125.011719 16.398438 125.105469 16.304688 125.105469 16.1875 Z M 125.105469 16.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.726562 20.214844 C 125.726562 20.097656 125.632812 20.003906 125.515625 20.003906 C 125.398438 20.003906 125.304688 20.097656 125.304688 20.214844 C 125.304688 20.332031 125.398438 20.425781 125.515625 20.425781 C 125.632812 20.425781 125.726562 20.332031 125.726562 20.214844 Z M 125.726562 20.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 123.898438 19.214844 C 123.898438 19.097656 123.804688 19.003906 123.6875 19.003906 C 123.570312 19.003906 123.476562 19.097656 123.476562 19.214844 C 123.476562 19.332031 123.570312 19.425781 123.6875 19.425781 C 123.804688 19.425781 123.898438 19.332031 123.898438 19.214844 Z M 123.898438 19.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 124.816406 20.792969 C 124.816406 20.675781 124.722656 20.582031 124.605469 20.582031 C 124.488281 20.582031 124.394531 20.675781 124.394531 20.792969 C 124.394531 20.910156 124.488281 21.003906 124.605469 21.003906 C 124.722656 21.003906 124.816406 20.910156 124.816406 20.792969 Z M 124.816406 20.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 123.566406 18.507812 C 123.566406 18.390625 123.472656 18.296875 123.355469 18.296875 C 123.238281 18.296875 123.144531 18.390625 123.144531 18.507812 C 123.144531 18.625 123.238281 18.71875 123.355469 18.71875 C 123.472656 18.71875 123.566406 18.625 123.566406 18.507812 Z M 123.566406 18.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.8125 19.453125 C 126.8125 19.335938 126.71875 19.242188 126.601562 19.242188 C 126.484375 19.242188 126.390625 19.335938 126.390625 19.453125 C 126.390625 19.570312 126.484375 19.664062 126.601562 19.664062 C 126.71875 19.664062 126.8125 19.570312 126.8125 19.453125 Z M 126.8125 19.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 127.570312 17.035156 C 127.570312 16.917969 127.476562 16.824219 127.359375 16.824219 C 127.242188 16.824219 127.148438 16.917969 127.148438 17.035156 C 127.148438 17.152344 127.242188 17.246094 127.359375 17.246094 C 127.476562 17.246094 127.570312 17.152344 127.570312 17.035156 Z M 127.570312 17.035156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.402344 11.53125 C 126.402344 11.414062 126.308594 11.320312 126.191406 11.320312 C 126.074219 11.320312 125.980469 11.414062 125.980469 11.53125 C 125.980469 11.648438 126.074219 11.742188 126.191406 11.742188 C 126.308594 11.742188 126.402344 11.648438 126.402344 11.53125 Z M 126.402344 11.53125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.246094 10.214844 C 126.246094 10.097656 126.152344 10.003906 126.035156 10.003906 C 125.917969 10.003906 125.824219 10.097656 125.824219 10.214844 C 125.824219 10.332031 125.917969 10.425781 126.035156 10.425781 C 126.152344 10.425781 126.246094 10.332031 126.246094 10.214844 Z M 126.246094 10.214844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 123.757812 8.757812 C 123.757812 8.640625 123.664062 8.546875 123.546875 8.546875 C 123.429688 8.546875 123.335938 8.640625 123.335938 8.757812 C 123.335938 8.875 123.429688 8.96875 123.546875 8.96875 C 123.664062 8.96875 123.757812 8.875 123.757812 8.757812 Z M 123.757812 8.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 119.066406 8.347656 C 119.066406 8.230469 118.972656 8.136719 118.855469 8.136719 C 118.738281 8.136719 118.644531 8.230469 118.644531 8.347656 C 118.644531 8.464844 118.738281 8.558594 118.855469 8.558594 C 118.972656 8.558594 119.066406 8.464844 119.066406 8.347656 Z M 119.066406 8.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 116.917969 4.996094 C 116.917969 4.878906 116.824219 4.785156 116.707031 4.785156 C 116.589844 4.785156 116.496094 4.878906 116.496094 4.996094 C 116.496094 5.113281 116.589844 5.207031 116.707031 5.207031 C 116.824219 5.207031 116.917969 5.113281 116.917969 4.996094 Z M 116.917969 4.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 118.699219 3.066406 C 118.699219 2.949219 118.605469 2.855469 118.488281 2.855469 C 118.371094 2.855469 118.277344 2.949219 118.277344 3.066406 C 118.277344 3.183594 118.371094 3.277344 118.488281 3.277344 C 118.605469 3.277344 118.699219 3.183594 118.699219 3.066406 Z M 118.699219 3.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 120.613281 8.4375 C 120.613281 8.320312 120.519531 8.226562 120.402344 8.226562 C 120.285156 8.226562 120.191406 8.320312 120.191406 8.4375 C 120.191406 8.554688 120.285156 8.648438 120.402344 8.648438 C 120.519531 8.648438 120.613281 8.554688 120.613281 8.4375 Z M 120.613281 8.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.136719 9.855469 C 122.136719 9.738281 122.042969 9.644531 121.925781 9.644531 C 121.808594 9.644531 121.714844 9.738281 121.714844 9.855469 C 121.714844 9.972656 121.808594 10.066406 121.925781 10.066406 C 122.042969 10.066406 122.136719 9.972656 122.136719 9.855469 Z M 122.136719 9.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 119.34375 10.320312 C 119.34375 10.203125 119.25 10.109375 119.132812 10.109375 C 119.015625 10.109375 118.921875 10.203125 118.921875 10.320312 C 118.921875 10.4375 119.015625 10.53125 119.132812 10.53125 C 119.25 10.53125 119.34375 10.4375 119.34375 10.320312 Z M 119.34375 10.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 120.839844 8.9375 C 120.839844 8.820312 120.746094 8.726562 120.628906 8.726562 C 120.511719 8.726562 120.417969 8.820312 120.417969 8.9375 C 120.417969 9.054688 120.511719 9.148438 120.628906 9.148438 C 120.746094 9.148438 120.839844 9.054688 120.839844 8.9375 Z M 120.839844 8.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 119.296875 6.769531 C 119.296875 6.652344 119.203125 6.558594 119.085938 6.558594 C 118.96875 6.558594 118.875 6.652344 118.875 6.769531 C 118.875 6.886719 118.96875 6.980469 119.085938 6.980469 C 119.203125 6.980469 119.296875 6.886719 119.296875 6.769531 Z M 119.296875 6.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 117.464844 5.378906 C 117.464844 5.261719 117.371094 5.167969 117.253906 5.167969 C 117.136719 5.167969 117.042969 5.261719 117.042969 5.378906 C 117.042969 5.496094 117.136719 5.589844 117.253906 5.589844 C 117.371094 5.589844 117.464844 5.496094 117.464844 5.378906 Z M 117.464844 5.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 117.953125 7.890625 C 117.953125 7.773438 117.859375 7.679688 117.742188 7.679688 C 117.625 7.679688 117.53125 7.773438 117.53125 7.890625 C 117.53125 8.007812 117.625 8.101562 117.742188 8.101562 C 117.859375 8.101562 117.953125 8.007812 117.953125 7.890625 Z M 117.953125 7.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 116.621094 7.160156 C 116.621094 7.042969 116.527344 6.949219 116.410156 6.949219 C 116.292969 6.949219 116.199219 7.042969 116.199219 7.160156 C 116.199219 7.277344 116.292969 7.371094 116.410156 7.371094 C 116.527344 7.371094 116.621094 7.277344 116.621094 7.160156 Z M 116.621094 7.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 116.199219 7.613281 C 116.199219 7.496094 116.105469 7.402344 115.988281 7.402344 C 115.871094 7.402344 115.777344 7.496094 115.777344 7.613281 C 115.777344 7.730469 115.871094 7.824219 115.988281 7.824219 C 116.105469 7.824219 116.199219 7.730469 116.199219 7.613281 Z M 116.199219 7.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 117.792969 9.175781 C 117.792969 9.058594 117.699219 8.964844 117.582031 8.964844 C 117.464844 8.964844 117.371094 9.058594 117.371094 9.175781 C 117.371094 9.292969 117.464844 9.386719 117.582031 9.386719 C 117.699219 9.386719 117.792969 9.292969 117.792969 9.175781 Z M 117.792969 9.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 121.410156 6.144531 C 121.410156 6.027344 121.316406 5.933594 121.199219 5.933594 C 121.082031 5.933594 120.988281 6.027344 120.988281 6.144531 C 120.988281 6.261719 121.082031 6.355469 121.199219 6.355469 C 121.316406 6.355469 121.410156 6.261719 121.410156 6.144531 Z M 121.410156 6.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 121.605469 3.25 C 121.605469 3.132812 121.511719 3.039062 121.394531 3.039062 C 121.277344 3.039062 121.183594 3.132812 121.183594 3.25 C 121.183594 3.367188 121.277344 3.460938 121.394531 3.460938 C 121.511719 3.460938 121.605469 3.367188 121.605469 3.25 Z M 121.605469 3.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.300781 3.140625 C 122.300781 3.023438 122.207031 2.929688 122.089844 2.929688 C 121.972656 2.929688 121.878906 3.023438 121.878906 3.140625 C 121.878906 3.257812 121.972656 3.351562 122.089844 3.351562 C 122.207031 3.351562 122.300781 3.257812 122.300781 3.140625 Z M 122.300781 3.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.464844 2.414062 C 122.464844 2.296875 122.371094 2.203125 122.253906 2.203125 C 122.136719 2.203125 122.042969 2.296875 122.042969 2.414062 C 122.042969 2.53125 122.136719 2.625 122.253906 2.625 C 122.371094 2.625 122.464844 2.53125 122.464844 2.414062 Z M 122.464844 2.414062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 124.199219 3.664062 C 124.199219 3.546875 124.105469 3.453125 123.988281 3.453125 C 123.871094 3.453125 123.777344 3.546875 123.777344 3.664062 C 123.777344 3.78125 123.871094 3.875 123.988281 3.875 C 124.105469 3.875 124.199219 3.78125 124.199219 3.664062 Z M 124.199219 3.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.136719 4.71875 C 122.136719 4.601562 122.042969 4.507812 121.925781 4.507812 C 121.808594 4.507812 121.714844 4.601562 121.714844 4.71875 C 121.714844 4.835938 121.808594 4.929688 121.925781 4.929688 C 122.042969 4.929688 122.136719 4.835938 122.136719 4.71875 Z M 122.136719 4.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.363281 2.851562 C 122.363281 2.734375 122.269531 2.640625 122.152344 2.640625 C 122.035156 2.640625 121.941406 2.734375 121.941406 2.851562 C 121.941406 2.96875 122.035156 3.0625 122.152344 3.0625 C 122.269531 3.0625 122.363281 2.96875 122.363281 2.851562 Z M 122.363281 2.851562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 121.796875 5.148438 C 121.796875 5.03125 121.703125 4.9375 121.585938 4.9375 C 121.46875 4.9375 121.375 5.03125 121.375 5.148438 C 121.375 5.265625 121.46875 5.359375 121.585938 5.359375 C 121.703125 5.359375 121.796875 5.265625 121.796875 5.148438 Z M 121.796875 5.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 120.925781 5.050781 C 120.925781 4.933594 120.832031 4.839844 120.714844 4.839844 C 120.597656 4.839844 120.503906 4.933594 120.503906 5.050781 C 120.503906 5.167969 120.597656 5.261719 120.714844 5.261719 C 120.832031 5.261719 120.925781 5.167969 120.925781 5.050781 Z M 120.925781 5.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.5625 1.386719 C 122.5625 1.269531 122.46875 1.175781 122.351562 1.175781 C 122.234375 1.175781 122.140625 1.269531 122.140625 1.386719 C 122.140625 1.503906 122.234375 1.597656 122.351562 1.597656 C 122.46875 1.597656 122.5625 1.503906 122.5625 1.386719 Z M 122.5625 1.386719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 124.3125 3.195312 C 124.3125 3.078125 124.21875 2.984375 124.101562 2.984375 C 123.984375 2.984375 123.890625 3.078125 123.890625 3.195312 C 123.890625 3.3125 123.984375 3.40625 124.101562 3.40625 C 124.21875 3.40625 124.3125 3.3125 124.3125 3.195312 Z M 124.3125 3.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 123.621094 3.011719 C 123.621094 2.894531 123.527344 2.800781 123.410156 2.800781 C 123.292969 2.800781 123.199219 2.894531 123.199219 3.011719 C 123.199219 3.128906 123.292969 3.222656 123.410156 3.222656 C 123.527344 3.222656 123.621094 3.128906 123.621094 3.011719 Z M 123.621094 3.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.707031 0.210938 C 126.707031 0.09375 126.613281 0 126.496094 0 C 126.378906 0 126.285156 0.09375 126.285156 0.210938 C 126.285156 0.328125 126.378906 0.421875 126.496094 0.421875 C 126.613281 0.421875 126.707031 0.328125 126.707031 0.210938 Z M 126.707031 0.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.585938 3.730469 C 126.585938 3.613281 126.492188 3.519531 126.375 3.519531 C 126.257812 3.519531 126.164062 3.613281 126.164062 3.730469 C 126.164062 3.847656 126.257812 3.941406 126.375 3.941406 C 126.492188 3.941406 126.585938 3.847656 126.585938 3.730469 Z M 126.585938 3.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.679688 3.800781 C 125.679688 3.683594 125.585938 3.589844 125.46875 3.589844 C 125.351562 3.589844 125.257812 3.683594 125.257812 3.800781 C 125.257812 3.917969 125.351562 4.011719 125.46875 4.011719 C 125.585938 4.011719 125.679688 3.917969 125.679688 3.800781 Z M 125.679688 3.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 124.980469 6.890625 C 124.980469 6.773438 124.886719 6.679688 124.769531 6.679688 C 124.652344 6.679688 124.558594 6.773438 124.558594 6.890625 C 124.558594 7.007812 124.652344 7.101562 124.769531 7.101562 C 124.886719 7.101562 124.980469 7.007812 124.980469 6.890625 Z M 124.980469 6.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.230469 7.210938 C 125.230469 7.09375 125.136719 7 125.019531 7 C 124.902344 7 124.808594 7.09375 124.808594 7.210938 C 124.808594 7.328125 124.902344 7.421875 125.019531 7.421875 C 125.136719 7.421875 125.230469 7.328125 125.230469 7.210938 Z M 125.230469 7.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 124.257812 8.335938 C 124.257812 8.21875 124.164062 8.125 124.046875 8.125 C 123.929688 8.125 123.835938 8.21875 123.835938 8.335938 C 123.835938 8.453125 123.929688 8.546875 124.046875 8.546875 C 124.164062 8.546875 124.257812 8.453125 124.257812 8.335938 Z M 124.257812 8.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.417969 10.273438 C 126.417969 10.15625 126.324219 10.0625 126.207031 10.0625 C 126.089844 10.0625 125.996094 10.15625 125.996094 10.273438 C 125.996094 10.390625 126.089844 10.484375 126.207031 10.484375 C 126.324219 10.484375 126.417969 10.390625 126.417969 10.273438 Z M 126.417969 10.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.871094 14.183594 C 125.871094 14.066406 125.777344 13.972656 125.660156 13.972656 C 125.542969 13.972656 125.449219 14.066406 125.449219 14.183594 C 125.449219 14.300781 125.542969 14.394531 125.660156 14.394531 C 125.777344 14.394531 125.871094 14.300781 125.871094 14.183594 Z M 125.871094 14.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 127.28125 15.707031 C 127.28125 15.589844 127.1875 15.496094 127.070312 15.496094 C 126.953125 15.496094 126.859375 15.589844 126.859375 15.707031 C 126.859375 15.824219 126.953125 15.917969 127.070312 15.917969 C 127.1875 15.917969 127.28125 15.824219 127.28125 15.707031 Z M 127.28125 15.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 131.109375 17.34375 C 131.109375 17.226562 131.015625 17.132812 130.898438 17.132812 C 130.78125 17.132812 130.6875 17.226562 130.6875 17.34375 C 130.6875 17.460938 130.78125 17.554688 130.898438 17.554688 C 131.015625 17.554688 131.109375 17.460938 131.109375 17.34375 Z M 131.109375 17.34375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.75 16.679688 C 130.75 16.5625 130.65625 16.46875 130.539062 16.46875 C 130.421875 16.46875 130.328125 16.5625 130.328125 16.679688 C 130.328125 16.796875 130.421875 16.890625 130.539062 16.890625 C 130.65625 16.890625 130.75 16.796875 130.75 16.679688 Z M 130.75 16.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 134.394531 18.65625 C 134.394531 18.539062 134.300781 18.445312 134.183594 18.445312 C 134.066406 18.445312 133.972656 18.539062 133.972656 18.65625 C 133.972656 18.773438 134.066406 18.867188 134.183594 18.867188 C 134.300781 18.867188 134.394531 18.773438 134.394531 18.65625 Z M 134.394531 18.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.714844 21.570312 C 132.714844 21.453125 132.621094 21.359375 132.503906 21.359375 C 132.386719 21.359375 132.292969 21.453125 132.292969 21.570312 C 132.292969 21.6875 132.386719 21.78125 132.503906 21.78125 C 132.621094 21.78125 132.714844 21.6875 132.714844 21.570312 Z M 132.714844 21.570312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.824219 25.410156 C 130.824219 25.292969 130.730469 25.199219 130.613281 25.199219 C 130.496094 25.199219 130.402344 25.292969 130.402344 25.410156 C 130.402344 25.527344 130.496094 25.621094 130.613281 25.621094 C 130.730469 25.621094 130.824219 25.527344 130.824219 25.410156 Z M 130.824219 25.410156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 131.175781 27.625 C 131.175781 27.507812 131.082031 27.414062 130.964844 27.414062 C 130.847656 27.414062 130.753906 27.507812 130.753906 27.625 C 130.753906 27.742188 130.847656 27.835938 130.964844 27.835938 C 131.082031 27.835938 131.175781 27.742188 131.175781 27.625 Z M 131.175781 27.625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.839844 25.367188 C 130.839844 25.25 130.746094 25.15625 130.628906 25.15625 C 130.511719 25.15625 130.417969 25.25 130.417969 25.367188 C 130.417969 25.484375 130.511719 25.578125 130.628906 25.578125 C 130.746094 25.578125 130.839844 25.484375 130.839844 25.367188 Z M 130.839844 25.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 131.808594 26.535156 C 131.808594 26.417969 131.714844 26.324219 131.597656 26.324219 C 131.480469 26.324219 131.386719 26.417969 131.386719 26.535156 C 131.386719 26.652344 131.480469 26.746094 131.597656 26.746094 C 131.714844 26.746094 131.808594 26.652344 131.808594 26.535156 Z M 131.808594 26.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.460938 23.992188 C 130.460938 23.875 130.367188 23.78125 130.25 23.78125 C 130.132812 23.78125 130.039062 23.875 130.039062 23.992188 C 130.039062 24.109375 130.132812 24.203125 130.25 24.203125 C 130.367188 24.203125 130.460938 24.109375 130.460938 23.992188 Z M 130.460938 23.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 130.292969 24.578125 C 130.292969 24.460938 130.199219 24.367188 130.082031 24.367188 C 129.964844 24.367188 129.871094 24.460938 129.871094 24.578125 C 129.871094 24.695312 129.964844 24.789062 130.082031 24.789062 C 130.199219 24.789062 130.292969 24.695312 130.292969 24.578125 Z M 130.292969 24.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 127.394531 23.617188 C 127.394531 23.5 127.300781 23.40625 127.183594 23.40625 C 127.066406 23.40625 126.972656 23.5 126.972656 23.617188 C 126.972656 23.734375 127.066406 23.828125 127.183594 23.828125 C 127.300781 23.828125 127.394531 23.734375 127.394531 23.617188 Z M 127.394531 23.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.757812 24.21875 C 126.757812 24.101562 126.664062 24.007812 126.546875 24.007812 C 126.429688 24.007812 126.335938 24.101562 126.335938 24.21875 C 126.335938 24.335938 126.429688 24.429688 126.546875 24.429688 C 126.664062 24.429688 126.757812 24.335938 126.757812 24.21875 Z M 126.757812 24.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 129.730469 25.339844 C 129.730469 25.222656 129.636719 25.128906 129.519531 25.128906 C 129.402344 25.128906 129.308594 25.222656 129.308594 25.339844 C 129.308594 25.457031 129.402344 25.550781 129.519531 25.550781 C 129.636719 25.550781 129.730469 25.457031 129.730469 25.339844 Z M 129.730469 25.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.8125 24.425781 C 126.8125 24.308594 126.71875 24.214844 126.601562 24.214844 C 126.484375 24.214844 126.390625 24.308594 126.390625 24.425781 C 126.390625 24.542969 126.484375 24.636719 126.601562 24.636719 C 126.71875 24.636719 126.8125 24.542969 126.8125 24.425781 Z M 126.8125 24.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.019531 23.734375 C 128.019531 23.617188 127.925781 23.523438 127.808594 23.523438 C 127.691406 23.523438 127.597656 23.617188 127.597656 23.734375 C 127.597656 23.851562 127.691406 23.945312 127.808594 23.945312 C 127.925781 23.945312 128.019531 23.851562 128.019531 23.734375 Z M 128.019531 23.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.78125 22.550781 C 126.78125 22.433594 126.6875 22.339844 126.570312 22.339844 C 126.453125 22.339844 126.359375 22.433594 126.359375 22.550781 C 126.359375 22.667969 126.453125 22.761719 126.570312 22.761719 C 126.6875 22.761719 126.78125 22.667969 126.78125 22.550781 Z M 126.78125 22.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.789062 26.339844 C 128.789062 26.222656 128.695312 26.128906 128.578125 26.128906 C 128.460938 26.128906 128.367188 26.222656 128.367188 26.339844 C 128.367188 26.457031 128.460938 26.550781 128.578125 26.550781 C 128.695312 26.550781 128.789062 26.457031 128.789062 26.339844 Z M 128.789062 26.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 129.816406 25.109375 C 129.816406 24.992188 129.722656 24.898438 129.605469 24.898438 C 129.488281 24.898438 129.394531 24.992188 129.394531 25.109375 C 129.394531 25.226562 129.488281 25.320312 129.605469 25.320312 C 129.722656 25.320312 129.816406 25.226562 129.816406 25.109375 Z M 129.816406 25.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 129.5625 24.09375 C 129.5625 23.976562 129.46875 23.882812 129.351562 23.882812 C 129.234375 23.882812 129.140625 23.976562 129.140625 24.09375 C 129.140625 24.210938 129.234375 24.304688 129.351562 24.304688 C 129.46875 24.304688 129.5625 24.210938 129.5625 24.09375 Z M 129.5625 24.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.28125 23.445312 C 128.28125 23.328125 128.1875 23.234375 128.070312 23.234375 C 127.953125 23.234375 127.859375 23.328125 127.859375 23.445312 C 127.859375 23.5625 127.953125 23.65625 128.070312 23.65625 C 128.1875 23.65625 128.28125 23.5625 128.28125 23.445312 Z M 128.28125 23.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.921875 23.800781 C 128.921875 23.683594 128.828125 23.589844 128.710938 23.589844 C 128.59375 23.589844 128.5 23.683594 128.5 23.800781 C 128.5 23.917969 128.59375 24.011719 128.710938 24.011719 C 128.828125 24.011719 128.921875 23.917969 128.921875 23.800781 Z M 128.921875 23.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 129.78125 22.992188 C 129.78125 22.875 129.6875 22.78125 129.570312 22.78125 C 129.453125 22.78125 129.359375 22.875 129.359375 22.992188 C 129.359375 23.109375 129.453125 23.203125 129.570312 23.203125 C 129.6875 23.203125 129.78125 23.109375 129.78125 22.992188 Z M 129.78125 22.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 131.648438 23.535156 C 131.648438 23.417969 131.554688 23.324219 131.4375 23.324219 C 131.320312 23.324219 131.226562 23.417969 131.226562 23.535156 C 131.226562 23.652344 131.320312 23.746094 131.4375 23.746094 C 131.554688 23.746094 131.648438 23.652344 131.648438 23.535156 Z M 131.648438 23.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 131.148438 17.800781 C 131.148438 17.683594 131.054688 17.589844 130.9375 17.589844 C 130.820312 17.589844 130.726562 17.683594 130.726562 17.800781 C 130.726562 17.917969 130.820312 18.011719 130.9375 18.011719 C 131.054688 18.011719 131.148438 17.917969 131.148438 17.800781 Z M 131.148438 17.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 133.0625 18.425781 C 133.0625 18.308594 132.96875 18.214844 132.851562 18.214844 C 132.734375 18.214844 132.640625 18.308594 132.640625 18.425781 C 132.640625 18.542969 132.734375 18.636719 132.851562 18.636719 C 132.96875 18.636719 133.0625 18.542969 133.0625 18.425781 Z M 133.0625 18.425781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 131.503906 18.523438 C 131.503906 18.40625 131.410156 18.3125 131.292969 18.3125 C 131.175781 18.3125 131.082031 18.40625 131.082031 18.523438 C 131.082031 18.640625 131.175781 18.734375 131.292969 18.734375 C 131.410156 18.734375 131.503906 18.640625 131.503906 18.523438 Z M 131.503906 18.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 134.289062 16.113281 C 134.289062 15.996094 134.195312 15.902344 134.078125 15.902344 C 133.960938 15.902344 133.867188 15.996094 133.867188 16.113281 C 133.867188 16.230469 133.960938 16.324219 134.078125 16.324219 C 134.195312 16.324219 134.289062 16.230469 134.289062 16.113281 Z M 134.289062 16.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.832031 16.261719 C 135.832031 16.144531 135.738281 16.050781 135.621094 16.050781 C 135.503906 16.050781 135.410156 16.144531 135.410156 16.261719 C 135.410156 16.378906 135.503906 16.472656 135.621094 16.472656 C 135.738281 16.472656 135.832031 16.378906 135.832031 16.261719 Z M 135.832031 16.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 134.507812 17.058594 C 134.507812 16.941406 134.414062 16.847656 134.296875 16.847656 C 134.179688 16.847656 134.085938 16.941406 134.085938 17.058594 C 134.085938 17.175781 134.179688 17.269531 134.296875 17.269531 C 134.414062 17.269531 134.507812 17.175781 134.507812 17.058594 Z M 134.507812 17.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 135.660156 17.785156 C 135.660156 17.667969 135.566406 17.574219 135.449219 17.574219 C 135.332031 17.574219 135.238281 17.667969 135.238281 17.785156 C 135.238281 17.902344 135.332031 17.996094 135.449219 17.996094 C 135.566406 17.996094 135.660156 17.902344 135.660156 17.785156 Z M 135.660156 17.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 132.292969 17.601562 C 132.292969 17.484375 132.199219 17.390625 132.082031 17.390625 C 131.964844 17.390625 131.871094 17.484375 131.871094 17.601562 C 131.871094 17.71875 131.964844 17.8125 132.082031 17.8125 C 132.199219 17.8125 132.292969 17.71875 132.292969 17.601562 Z M 132.292969 17.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.742188 15.167969 C 128.742188 15.050781 128.648438 14.957031 128.53125 14.957031 C 128.414062 14.957031 128.320312 15.050781 128.320312 15.167969 C 128.320312 15.285156 128.414062 15.378906 128.53125 15.378906 C 128.648438 15.378906 128.742188 15.285156 128.742188 15.167969 Z M 128.742188 15.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 127.222656 15.488281 C 127.222656 15.371094 127.128906 15.277344 127.011719 15.277344 C 126.894531 15.277344 126.800781 15.371094 126.800781 15.488281 C 126.800781 15.605469 126.894531 15.699219 127.011719 15.699219 C 127.128906 15.699219 127.222656 15.605469 127.222656 15.488281 Z M 127.222656 15.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 129.460938 15.308594 C 129.460938 15.191406 129.367188 15.097656 129.25 15.097656 C 129.132812 15.097656 129.039062 15.191406 129.039062 15.308594 C 129.039062 15.425781 129.132812 15.519531 129.25 15.519531 C 129.367188 15.519531 129.460938 15.425781 129.460938 15.308594 Z M 129.460938 15.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.335938 13.125 C 126.335938 13.007812 126.242188 12.914062 126.125 12.914062 C 126.007812 12.914062 125.914062 13.007812 125.914062 13.125 C 125.914062 13.242188 126.007812 13.335938 126.125 13.335938 C 126.242188 13.335938 126.335938 13.242188 126.335938 13.125 Z M 126.335938 13.125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.457031 12.734375 C 126.457031 12.617188 126.363281 12.523438 126.246094 12.523438 C 126.128906 12.523438 126.035156 12.617188 126.035156 12.734375 C 126.035156 12.851562 126.128906 12.945312 126.246094 12.945312 C 126.363281 12.945312 126.457031 12.851562 126.457031 12.734375 Z M 126.457031 12.734375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.628906 11.144531 C 125.628906 11.027344 125.535156 10.933594 125.417969 10.933594 C 125.300781 10.933594 125.207031 11.027344 125.207031 11.144531 C 125.207031 11.261719 125.300781 11.355469 125.417969 11.355469 C 125.535156 11.355469 125.628906 11.261719 125.628906 11.144531 Z M 125.628906 11.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.359375 10.132812 C 126.359375 10.015625 126.265625 9.921875 126.148438 9.921875 C 126.03125 9.921875 125.9375 10.015625 125.9375 10.132812 C 125.9375 10.25 126.03125 10.34375 126.148438 10.34375 C 126.265625 10.34375 126.359375 10.25 126.359375 10.132812 Z M 126.359375 10.132812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 124.699219 6.101562 C 124.699219 5.984375 124.605469 5.890625 124.488281 5.890625 C 124.371094 5.890625 124.277344 5.984375 124.277344 6.101562 C 124.277344 6.21875 124.371094 6.3125 124.488281 6.3125 C 124.605469 6.3125 124.699219 6.21875 124.699219 6.101562 Z M 124.699219 6.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.566406 5.988281 C 126.566406 5.871094 126.472656 5.777344 126.355469 5.777344 C 126.238281 5.777344 126.144531 5.871094 126.144531 5.988281 C 126.144531 6.105469 126.238281 6.199219 126.355469 6.199219 C 126.472656 6.199219 126.566406 6.105469 126.566406 5.988281 Z M 126.566406 5.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.804688 7.226562 C 128.804688 7.109375 128.710938 7.015625 128.59375 7.015625 C 128.476562 7.015625 128.382812 7.109375 128.382812 7.226562 C 128.382812 7.34375 128.476562 7.4375 128.59375 7.4375 C 128.710938 7.4375 128.804688 7.34375 128.804688 7.226562 Z M 128.804688 7.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.730469 2.335938 C 126.730469 2.21875 126.636719 2.125 126.519531 2.125 C 126.402344 2.125 126.308594 2.21875 126.308594 2.335938 C 126.308594 2.453125 126.402344 2.546875 126.519531 2.546875 C 126.636719 2.546875 126.730469 2.453125 126.730469 2.335938 Z M 126.730469 2.335938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.285156 5.933594 C 128.285156 5.816406 128.191406 5.722656 128.074219 5.722656 C 127.957031 5.722656 127.863281 5.816406 127.863281 5.933594 C 127.863281 6.050781 127.957031 6.144531 128.074219 6.144531 C 128.191406 6.144531 128.285156 6.050781 128.285156 5.933594 Z M 128.285156 5.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 129.375 5.917969 C 129.375 5.800781 129.28125 5.707031 129.164062 5.707031 C 129.046875 5.707031 128.953125 5.800781 128.953125 5.917969 C 128.953125 6.035156 129.046875 6.128906 129.164062 6.128906 C 129.28125 6.128906 129.375 6.035156 129.375 5.917969 Z M 129.375 5.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 128.566406 3.882812 C 128.566406 3.765625 128.472656 3.671875 128.355469 3.671875 C 128.238281 3.671875 128.144531 3.765625 128.144531 3.882812 C 128.144531 4 128.238281 4.09375 128.355469 4.09375 C 128.472656 4.09375 128.566406 4 128.566406 3.882812 Z M 128.566406 3.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.714844 2.957031 C 126.714844 2.839844 126.621094 2.746094 126.503906 2.746094 C 126.386719 2.746094 126.292969 2.839844 126.292969 2.957031 C 126.292969 3.074219 126.386719 3.167969 126.503906 3.167969 C 126.621094 3.167969 126.714844 3.074219 126.714844 2.957031 Z M 126.714844 2.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 123.65625 0.917969 C 123.65625 0.800781 123.5625 0.707031 123.445312 0.707031 C 123.328125 0.707031 123.234375 0.800781 123.234375 0.917969 C 123.234375 1.035156 123.328125 1.128906 123.445312 1.128906 C 123.5625 1.128906 123.65625 1.035156 123.65625 0.917969 Z M 123.65625 0.917969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 121.628906 5.09375 C 121.628906 4.976562 121.535156 4.882812 121.417969 4.882812 C 121.300781 4.882812 121.207031 4.976562 121.207031 5.09375 C 121.207031 5.210938 121.300781 5.304688 121.417969 5.304688 C 121.535156 5.304688 121.628906 5.210938 121.628906 5.09375 Z M 121.628906 5.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 121.199219 6.496094 C 121.199219 6.378906 121.105469 6.285156 120.988281 6.285156 C 120.871094 6.285156 120.777344 6.378906 120.777344 6.496094 C 120.777344 6.613281 120.871094 6.707031 120.988281 6.707031 C 121.105469 6.707031 121.199219 6.613281 121.199219 6.496094 Z M 121.199219 6.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 120.167969 5.011719 C 120.167969 4.894531 120.074219 4.800781 119.957031 4.800781 C 119.839844 4.800781 119.746094 4.894531 119.746094 5.011719 C 119.746094 5.128906 119.839844 5.222656 119.957031 5.222656 C 120.074219 5.222656 120.167969 5.128906 120.167969 5.011719 Z M 120.167969 5.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 120.4375 4.445312 C 120.4375 4.328125 120.34375 4.234375 120.226562 4.234375 C 120.109375 4.234375 120.015625 4.328125 120.015625 4.445312 C 120.015625 4.5625 120.109375 4.65625 120.226562 4.65625 C 120.34375 4.65625 120.4375 4.5625 120.4375 4.445312 Z M 120.4375 4.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 118.503906 4.6875 C 118.503906 4.570312 118.410156 4.476562 118.292969 4.476562 C 118.175781 4.476562 118.082031 4.570312 118.082031 4.6875 C 118.082031 4.804688 118.175781 4.898438 118.292969 4.898438 C 118.410156 4.898438 118.503906 4.804688 118.503906 4.6875 Z M 118.503906 4.6875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 121.066406 7.4375 C 121.066406 7.320312 120.972656 7.226562 120.855469 7.226562 C 120.738281 7.226562 120.644531 7.320312 120.644531 7.4375 C 120.644531 7.554688 120.738281 7.648438 120.855469 7.648438 C 120.972656 7.648438 121.066406 7.554688 121.066406 7.4375 Z M 121.066406 7.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 125.414062 10.183594 C 125.414062 10.066406 125.320312 9.972656 125.203125 9.972656 C 125.085938 9.972656 124.992188 10.066406 124.992188 10.183594 C 124.992188 10.300781 125.085938 10.394531 125.203125 10.394531 C 125.320312 10.394531 125.414062 10.300781 125.414062 10.183594 Z M 125.414062 10.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 126.90625 9.644531 C 126.90625 9.527344 126.8125 9.433594 126.695312 9.433594 C 126.578125 9.433594 126.484375 9.527344 126.484375 9.644531 C 126.484375 9.761719 126.578125 9.855469 126.695312 9.855469 C 126.8125 9.855469 126.90625 9.761719 126.90625 9.644531 Z M 126.90625 9.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.488281 10.332031 C 122.488281 10.214844 122.394531 10.121094 122.277344 10.121094 C 122.160156 10.121094 122.066406 10.214844 122.066406 10.332031 C 122.066406 10.449219 122.160156 10.542969 122.277344 10.542969 C 122.394531 10.542969 122.488281 10.449219 122.488281 10.332031 Z M 122.488281 10.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 124.6875 9.285156 C 124.6875 9.167969 124.59375 9.074219 124.476562 9.074219 C 124.359375 9.074219 124.265625 9.167969 124.265625 9.285156 C 124.265625 9.402344 124.359375 9.496094 124.476562 9.496094 C 124.59375 9.496094 124.6875 9.402344 124.6875 9.285156 Z M 124.6875 9.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 122.207031 7.921875 C 122.207031 7.804688 122.113281 7.710938 121.996094 7.710938 C 121.878906 7.710938 121.785156 7.804688 121.785156 7.921875 C 121.785156 8.039062 121.878906 8.132812 121.996094 8.132812 C 122.113281 8.132812 122.207031 8.039062 122.207031 7.921875 Z M 122.207031 7.921875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 118.597656 9.40625 C 118.597656 9.289062 118.503906 9.195312 118.386719 9.195312 C 118.269531 9.195312 118.175781 9.289062 118.175781 9.40625 C 118.175781 9.523438 118.269531 9.617188 118.386719 9.617188 C 118.503906 9.617188 118.597656 9.523438 118.597656 9.40625 Z M 118.597656 9.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 117.507812 13.589844 C 117.507812 13.472656 117.414062 13.378906 117.296875 13.378906 C 117.179688 13.378906 117.085938 13.472656 117.085938 13.589844 C 117.085938 13.707031 117.179688 13.800781 117.296875 13.800781 C 117.414062 13.800781 117.507812 13.707031 117.507812 13.589844 Z M 117.507812 13.589844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 113.984375 15.101562 C 113.984375 14.984375 113.890625 14.890625 113.773438 14.890625 C 113.65625 14.890625 113.5625 14.984375 113.5625 15.101562 C 113.5625 15.21875 113.65625 15.3125 113.773438 15.3125 C 113.890625 15.3125 113.984375 15.21875 113.984375 15.101562 Z M 113.984375 15.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 113.304688 13.925781 C 113.304688 13.808594 113.210938 13.714844 113.09375 13.714844 C 112.976562 13.714844 112.882812 13.808594 112.882812 13.925781 C 112.882812 14.042969 112.976562 14.136719 113.09375 14.136719 C 113.210938 14.136719 113.304688 14.042969 113.304688 13.925781 Z M 113.304688 13.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 112.414062 13.347656 C 112.414062 13.230469 112.320312 13.136719 112.203125 13.136719 C 112.085938 13.136719 111.992188 13.230469 111.992188 13.347656 C 111.992188 13.464844 112.085938 13.558594 112.203125 13.558594 C 112.320312 13.558594 112.414062 13.464844 112.414062 13.347656 Z M 112.414062 13.347656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 108.550781 16.230469 C 108.550781 16.113281 108.457031 16.019531 108.339844 16.019531 C 108.222656 16.019531 108.128906 16.113281 108.128906 16.230469 C 108.128906 16.347656 108.222656 16.441406 108.339844 16.441406 C 108.457031 16.441406 108.550781 16.347656 108.550781 16.230469 Z M 108.550781 16.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 109.09375 16.105469 C 109.09375 15.988281 109 15.894531 108.882812 15.894531 C 108.765625 15.894531 108.671875 15.988281 108.671875 16.105469 C 108.671875 16.222656 108.765625 16.316406 108.882812 16.316406 C 109 16.316406 109.09375 16.222656 109.09375 16.105469 Z M 109.09375 16.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 107.375 17.109375 C 107.375 16.992188 107.28125 16.898438 107.164062 16.898438 C 107.046875 16.898438 106.953125 16.992188 106.953125 17.109375 C 106.953125 17.226562 107.046875 17.320312 107.164062 17.320312 C 107.28125 17.320312 107.375 17.226562 107.375 17.109375 Z M 107.375 17.109375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 105.40625 18.757812 C 105.40625 18.640625 105.3125 18.546875 105.195312 18.546875 C 105.078125 18.546875 104.984375 18.640625 104.984375 18.757812 C 104.984375 18.875 105.078125 18.96875 105.195312 18.96875 C 105.3125 18.96875 105.40625 18.875 105.40625 18.757812 Z M 105.40625 18.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 103.292969 15.757812 C 103.292969 15.640625 103.199219 15.546875 103.082031 15.546875 C 102.964844 15.546875 102.871094 15.640625 102.871094 15.757812 C 102.871094 15.875 102.964844 15.96875 103.082031 15.96875 C 103.199219 15.96875 103.292969 15.875 103.292969 15.757812 Z M 103.292969 15.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.277344 18.328125 C 100.277344 18.210938 100.183594 18.117188 100.066406 18.117188 C 99.949219 18.117188 99.855469 18.210938 99.855469 18.328125 C 99.855469 18.445312 99.949219 18.539062 100.066406 18.539062 C 100.183594 18.539062 100.277344 18.445312 100.277344 18.328125 Z M 100.277344 18.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.160156 21.785156 C 99.160156 21.667969 99.066406 21.574219 98.949219 21.574219 C 98.832031 21.574219 98.738281 21.667969 98.738281 21.785156 C 98.738281 21.902344 98.832031 21.996094 98.949219 21.996094 C 99.066406 21.996094 99.160156 21.902344 99.160156 21.785156 Z M 99.160156 21.785156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.007812 22.066406 C 100.007812 21.949219 99.914062 21.855469 99.796875 21.855469 C 99.679688 21.855469 99.585938 21.949219 99.585938 22.066406 C 99.585938 22.183594 99.679688 22.277344 99.796875 22.277344 C 99.914062 22.277344 100.007812 22.183594 100.007812 22.066406 Z M 100.007812 22.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.308594 26.902344 C 100.308594 26.785156 100.214844 26.691406 100.097656 26.691406 C 99.980469 26.691406 99.886719 26.785156 99.886719 26.902344 C 99.886719 27.019531 99.980469 27.113281 100.097656 27.113281 C 100.214844 27.113281 100.308594 27.019531 100.308594 26.902344 Z M 100.308594 26.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 103.289062 21.804688 C 103.289062 21.6875 103.195312 21.59375 103.078125 21.59375 C 102.960938 21.59375 102.867188 21.6875 102.867188 21.804688 C 102.867188 21.921875 102.960938 22.015625 103.078125 22.015625 C 103.195312 22.015625 103.289062 21.921875 103.289062 21.804688 Z M 103.289062 21.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.238281 25.433594 C 100.238281 25.316406 100.144531 25.222656 100.027344 25.222656 C 99.910156 25.222656 99.816406 25.316406 99.816406 25.433594 C 99.816406 25.550781 99.910156 25.644531 100.027344 25.644531 C 100.144531 25.644531 100.238281 25.550781 100.238281 25.433594 Z M 100.238281 25.433594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.632812 26.617188 C 100.632812 26.5 100.539062 26.40625 100.421875 26.40625 C 100.304688 26.40625 100.210938 26.5 100.210938 26.617188 C 100.210938 26.734375 100.304688 26.828125 100.421875 26.828125 C 100.539062 26.828125 100.632812 26.734375 100.632812 26.617188 Z M 100.632812 26.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 102.089844 23.5 C 102.089844 23.382812 101.996094 23.289062 101.878906 23.289062 C 101.761719 23.289062 101.667969 23.382812 101.667969 23.5 C 101.667969 23.617188 101.761719 23.710938 101.878906 23.710938 C 101.996094 23.710938 102.089844 23.617188 102.089844 23.5 Z M 102.089844 23.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 101.222656 23.128906 C 101.222656 23.011719 101.128906 22.917969 101.011719 22.917969 C 100.894531 22.917969 100.800781 23.011719 100.800781 23.128906 C 100.800781 23.246094 100.894531 23.339844 101.011719 23.339844 C 101.128906 23.339844 101.222656 23.246094 101.222656 23.128906 Z M 101.222656 23.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 102.171875 25.351562 C 102.171875 25.234375 102.078125 25.140625 101.960938 25.140625 C 101.84375 25.140625 101.75 25.234375 101.75 25.351562 C 101.75 25.46875 101.84375 25.5625 101.960938 25.5625 C 102.078125 25.5625 102.171875 25.46875 102.171875 25.351562 Z M 102.171875 25.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 102.222656 26.550781 C 102.222656 26.433594 102.128906 26.339844 102.011719 26.339844 C 101.894531 26.339844 101.800781 26.433594 101.800781 26.550781 C 101.800781 26.667969 101.894531 26.761719 102.011719 26.761719 C 102.128906 26.761719 102.222656 26.667969 102.222656 26.550781 Z M 102.222656 26.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.660156 23.597656 C 99.660156 23.480469 99.566406 23.386719 99.449219 23.386719 C 99.332031 23.386719 99.238281 23.480469 99.238281 23.597656 C 99.238281 23.714844 99.332031 23.808594 99.449219 23.808594 C 99.566406 23.808594 99.660156 23.714844 99.660156 23.597656 Z M 99.660156 23.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 97.75 24.25 C 97.75 24.132812 97.65625 24.039062 97.539062 24.039062 C 97.421875 24.039062 97.328125 24.132812 97.328125 24.25 C 97.328125 24.367188 97.421875 24.460938 97.539062 24.460938 C 97.65625 24.460938 97.75 24.367188 97.75 24.25 Z M 97.75 24.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.789062 22.378906 C 99.789062 22.261719 99.695312 22.167969 99.578125 22.167969 C 99.460938 22.167969 99.367188 22.261719 99.367188 22.378906 C 99.367188 22.496094 99.460938 22.589844 99.578125 22.589844 C 99.695312 22.589844 99.789062 22.496094 99.789062 22.378906 Z M 99.789062 22.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.054688 21.363281 C 100.054688 21.246094 99.960938 21.152344 99.84375 21.152344 C 99.726562 21.152344 99.632812 21.246094 99.632812 21.363281 C 99.632812 21.480469 99.726562 21.574219 99.84375 21.574219 C 99.960938 21.574219 100.054688 21.480469 100.054688 21.363281 Z M 100.054688 21.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.761719 22.519531 C 100.761719 22.402344 100.667969 22.308594 100.550781 22.308594 C 100.433594 22.308594 100.339844 22.402344 100.339844 22.519531 C 100.339844 22.636719 100.433594 22.730469 100.550781 22.730469 C 100.667969 22.730469 100.761719 22.636719 100.761719 22.519531 Z M 100.761719 22.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.585938 23.515625 C 99.585938 23.398438 99.492188 23.304688 99.375 23.304688 C 99.257812 23.304688 99.164062 23.398438 99.164062 23.515625 C 99.164062 23.632812 99.257812 23.726562 99.375 23.726562 C 99.492188 23.726562 99.585938 23.632812 99.585938 23.515625 Z M 99.585938 23.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 102.621094 23.585938 C 102.621094 23.46875 102.527344 23.375 102.410156 23.375 C 102.292969 23.375 102.199219 23.46875 102.199219 23.585938 C 102.199219 23.703125 102.292969 23.796875 102.410156 23.796875 C 102.527344 23.796875 102.621094 23.703125 102.621094 23.585938 Z M 102.621094 23.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 105.929688 22.046875 C 105.929688 21.929688 105.835938 21.835938 105.71875 21.835938 C 105.601562 21.835938 105.507812 21.929688 105.507812 22.046875 C 105.507812 22.164062 105.601562 22.257812 105.71875 22.257812 C 105.835938 22.257812 105.929688 22.164062 105.929688 22.046875 Z M 105.929688 22.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 107.605469 23.296875 C 107.605469 23.179688 107.511719 23.085938 107.394531 23.085938 C 107.277344 23.085938 107.183594 23.179688 107.183594 23.296875 C 107.183594 23.414062 107.277344 23.507812 107.394531 23.507812 C 107.511719 23.507812 107.605469 23.414062 107.605469 23.296875 Z M 107.605469 23.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 107.664062 18.75 C 107.664062 18.632812 107.570312 18.539062 107.453125 18.539062 C 107.335938 18.539062 107.242188 18.632812 107.242188 18.75 C 107.242188 18.867188 107.335938 18.960938 107.453125 18.960938 C 107.570312 18.960938 107.664062 18.867188 107.664062 18.75 Z M 107.664062 18.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 107.214844 22.828125 C 107.214844 22.710938 107.121094 22.617188 107.003906 22.617188 C 106.886719 22.617188 106.792969 22.710938 106.792969 22.828125 C 106.792969 22.945312 106.886719 23.039062 107.003906 23.039062 C 107.121094 23.039062 107.214844 22.945312 107.214844 22.828125 Z M 107.214844 22.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 108.714844 26.042969 C 108.714844 25.925781 108.621094 25.832031 108.503906 25.832031 C 108.386719 25.832031 108.292969 25.925781 108.292969 26.042969 C 108.292969 26.160156 108.386719 26.253906 108.503906 26.253906 C 108.621094 26.253906 108.714844 26.160156 108.714844 26.042969 Z M 108.714844 26.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 107.117188 21.992188 C 107.117188 21.875 107.023438 21.78125 106.90625 21.78125 C 106.789062 21.78125 106.695312 21.875 106.695312 21.992188 C 106.695312 22.109375 106.789062 22.203125 106.90625 22.203125 C 107.023438 22.203125 107.117188 22.109375 107.117188 21.992188 Z M 107.117188 21.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 103.070312 23.550781 C 103.070312 23.433594 102.976562 23.339844 102.859375 23.339844 C 102.742188 23.339844 102.648438 23.433594 102.648438 23.550781 C 102.648438 23.667969 102.742188 23.761719 102.859375 23.761719 C 102.976562 23.761719 103.070312 23.667969 103.070312 23.550781 Z M 103.070312 23.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.4375 20.144531 C 100.4375 20.027344 100.34375 19.933594 100.226562 19.933594 C 100.109375 19.933594 100.015625 20.027344 100.015625 20.144531 C 100.015625 20.261719 100.109375 20.355469 100.226562 20.355469 C 100.34375 20.355469 100.4375 20.261719 100.4375 20.144531 Z M 100.4375 20.144531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.398438 21.566406 C 100.398438 21.449219 100.304688 21.355469 100.1875 21.355469 C 100.070312 21.355469 99.976562 21.449219 99.976562 21.566406 C 99.976562 21.683594 100.070312 21.777344 100.1875 21.777344 C 100.304688 21.777344 100.398438 21.683594 100.398438 21.566406 Z M 100.398438 21.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.476562 21.304688 C 99.476562 21.1875 99.382812 21.09375 99.265625 21.09375 C 99.148438 21.09375 99.054688 21.1875 99.054688 21.304688 C 99.054688 21.421875 99.148438 21.515625 99.265625 21.515625 C 99.382812 21.515625 99.476562 21.421875 99.476562 21.304688 Z M 99.476562 21.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 101.179688 21.382812 C 101.179688 21.265625 101.085938 21.171875 100.96875 21.171875 C 100.851562 21.171875 100.757812 21.265625 100.757812 21.382812 C 100.757812 21.5 100.851562 21.59375 100.96875 21.59375 C 101.085938 21.59375 101.179688 21.5 101.179688 21.382812 Z M 101.179688 21.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 98.902344 20.398438 C 98.902344 20.28125 98.808594 20.1875 98.691406 20.1875 C 98.574219 20.1875 98.480469 20.28125 98.480469 20.398438 C 98.480469 20.515625 98.574219 20.609375 98.691406 20.609375 C 98.808594 20.609375 98.902344 20.515625 98.902344 20.398438 Z M 98.902344 20.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 98.984375 18.191406 C 98.984375 18.074219 98.890625 17.980469 98.773438 17.980469 C 98.65625 17.980469 98.5625 18.074219 98.5625 18.191406 C 98.5625 18.308594 98.65625 18.402344 98.773438 18.402344 C 98.890625 18.402344 98.984375 18.308594 98.984375 18.191406 Z M 98.984375 18.191406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 96.476562 18.027344 C 96.476562 17.910156 96.382812 17.816406 96.265625 17.816406 C 96.148438 17.816406 96.054688 17.910156 96.054688 18.027344 C 96.054688 18.144531 96.148438 18.238281 96.265625 18.238281 C 96.382812 18.238281 96.476562 18.144531 96.476562 18.027344 Z M 96.476562 18.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 97.21875 16.988281 C 97.21875 16.871094 97.125 16.777344 97.007812 16.777344 C 96.890625 16.777344 96.796875 16.871094 96.796875 16.988281 C 96.796875 17.105469 96.890625 17.199219 97.007812 17.199219 C 97.125 17.199219 97.21875 17.105469 97.21875 16.988281 Z M 97.21875 16.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 98.945312 22.660156 C 98.945312 22.542969 98.851562 22.449219 98.734375 22.449219 C 98.617188 22.449219 98.523438 22.542969 98.523438 22.660156 C 98.523438 22.777344 98.617188 22.871094 98.734375 22.871094 C 98.851562 22.871094 98.945312 22.777344 98.945312 22.660156 Z M 98.945312 22.660156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 97.609375 26.363281 C 97.609375 26.246094 97.515625 26.152344 97.398438 26.152344 C 97.28125 26.152344 97.1875 26.246094 97.1875 26.363281 C 97.1875 26.480469 97.28125 26.574219 97.398438 26.574219 C 97.515625 26.574219 97.609375 26.480469 97.609375 26.363281 Z M 97.609375 26.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 97.675781 25.980469 C 97.675781 25.863281 97.582031 25.769531 97.464844 25.769531 C 97.347656 25.769531 97.253906 25.863281 97.253906 25.980469 C 97.253906 26.097656 97.347656 26.191406 97.464844 26.191406 C 97.582031 26.191406 97.675781 26.097656 97.675781 25.980469 Z M 97.675781 25.980469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 97.59375 24.671875 C 97.59375 24.554688 97.5 24.460938 97.382812 24.460938 C 97.265625 24.460938 97.171875 24.554688 97.171875 24.671875 C 97.171875 24.789062 97.265625 24.882812 97.382812 24.882812 C 97.5 24.882812 97.59375 24.789062 97.59375 24.671875 Z M 97.59375 24.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.628906 27.304688 C 99.628906 27.1875 99.535156 27.09375 99.417969 27.09375 C 99.300781 27.09375 99.207031 27.1875 99.207031 27.304688 C 99.207031 27.421875 99.300781 27.515625 99.417969 27.515625 C 99.535156 27.515625 99.628906 27.421875 99.628906 27.304688 Z M 99.628906 27.304688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 100.136719 26.183594 C 100.136719 26.066406 100.042969 25.972656 99.925781 25.972656 C 99.808594 25.972656 99.714844 26.066406 99.714844 26.183594 C 99.714844 26.300781 99.808594 26.394531 99.925781 26.394531 C 100.042969 26.394531 100.136719 26.300781 100.136719 26.183594 Z M 100.136719 26.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 99.90625 25.945312 C 99.90625 25.828125 99.8125 25.734375 99.695312 25.734375 C 99.578125 25.734375 99.484375 25.828125 99.484375 25.945312 C 99.484375 26.0625 99.578125 26.15625 99.695312 26.15625 C 99.8125 26.15625 99.90625 26.0625 99.90625 25.945312 Z M 99.90625 25.945312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.269531 20.316406 C 94.269531 20.199219 94.175781 20.105469 94.058594 20.105469 C 93.941406 20.105469 93.847656 20.199219 93.847656 20.316406 C 93.847656 20.433594 93.941406 20.527344 94.058594 20.527344 C 94.175781 20.527344 94.269531 20.433594 94.269531 20.316406 Z M 94.269531 20.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.777344 24.105469 C 90.777344 23.988281 90.683594 23.894531 90.566406 23.894531 C 90.449219 23.894531 90.355469 23.988281 90.355469 24.105469 C 90.355469 24.222656 90.449219 24.316406 90.566406 24.316406 C 90.683594 24.316406 90.777344 24.222656 90.777344 24.105469 Z M 90.777344 24.105469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.222656 26.699219 C 88.222656 26.582031 88.128906 26.488281 88.011719 26.488281 C 87.894531 26.488281 87.800781 26.582031 87.800781 26.699219 C 87.800781 26.816406 87.894531 26.910156 88.011719 26.910156 C 88.128906 26.910156 88.222656 26.816406 88.222656 26.699219 Z M 88.222656 26.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.804688 25.835938 C 90.804688 25.71875 90.710938 25.625 90.59375 25.625 C 90.476562 25.625 90.382812 25.71875 90.382812 25.835938 C 90.382812 25.953125 90.476562 26.046875 90.59375 26.046875 C 90.710938 26.046875 90.804688 25.953125 90.804688 25.835938 Z M 90.804688 25.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.789062 26.226562 C 90.789062 26.109375 90.695312 26.015625 90.578125 26.015625 C 90.460938 26.015625 90.367188 26.109375 90.367188 26.226562 C 90.367188 26.34375 90.460938 26.4375 90.578125 26.4375 C 90.695312 26.4375 90.789062 26.34375 90.789062 26.226562 Z M 90.789062 26.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 94.820312 26.902344 C 94.820312 26.785156 94.726562 26.691406 94.609375 26.691406 C 94.492188 26.691406 94.398438 26.785156 94.398438 26.902344 C 94.398438 27.019531 94.492188 27.113281 94.609375 27.113281 C 94.726562 27.113281 94.820312 27.019531 94.820312 26.902344 Z M 94.820312 26.902344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 93.628906 28.867188 C 93.628906 28.75 93.535156 28.65625 93.417969 28.65625 C 93.300781 28.65625 93.207031 28.75 93.207031 28.867188 C 93.207031 28.984375 93.300781 29.078125 93.417969 29.078125 C 93.535156 29.078125 93.628906 28.984375 93.628906 28.867188 Z M 93.628906 28.867188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.089844 26.898438 C 90.089844 26.78125 89.996094 26.6875 89.878906 26.6875 C 89.761719 26.6875 89.667969 26.78125 89.667969 26.898438 C 89.667969 27.015625 89.761719 27.109375 89.878906 27.109375 C 89.996094 27.109375 90.089844 27.015625 90.089844 26.898438 Z M 90.089844 26.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.765625 27.078125 C 84.765625 26.960938 84.671875 26.867188 84.554688 26.867188 C 84.4375 26.867188 84.34375 26.960938 84.34375 27.078125 C 84.34375 27.195312 84.4375 27.289062 84.554688 27.289062 C 84.671875 27.289062 84.765625 27.195312 84.765625 27.078125 Z M 84.765625 27.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.636719 33.179688 C 84.636719 33.0625 84.542969 32.96875 84.425781 32.96875 C 84.308594 32.96875 84.214844 33.0625 84.214844 33.179688 C 84.214844 33.296875 84.308594 33.390625 84.425781 33.390625 C 84.542969 33.390625 84.636719 33.296875 84.636719 33.179688 Z M 84.636719 33.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.445312 30.492188 C 86.445312 30.375 86.351562 30.28125 86.234375 30.28125 C 86.117188 30.28125 86.023438 30.375 86.023438 30.492188 C 86.023438 30.609375 86.117188 30.703125 86.234375 30.703125 C 86.351562 30.703125 86.445312 30.609375 86.445312 30.492188 Z M 86.445312 30.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.882812 29.800781 C 86.882812 29.683594 86.789062 29.589844 86.671875 29.589844 C 86.554688 29.589844 86.460938 29.683594 86.460938 29.800781 C 86.460938 29.917969 86.554688 30.011719 86.671875 30.011719 C 86.789062 30.011719 86.882812 29.917969 86.882812 29.800781 Z M 86.882812 29.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.105469 27.816406 C 86.105469 27.699219 86.011719 27.605469 85.894531 27.605469 C 85.777344 27.605469 85.683594 27.699219 85.683594 27.816406 C 85.683594 27.933594 85.777344 28.027344 85.894531 28.027344 C 86.011719 28.027344 86.105469 27.933594 86.105469 27.816406 Z M 86.105469 27.816406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 85.039062 28.628906 C 85.039062 28.511719 84.945312 28.417969 84.828125 28.417969 C 84.710938 28.417969 84.617188 28.511719 84.617188 28.628906 C 84.617188 28.746094 84.710938 28.839844 84.828125 28.839844 C 84.945312 28.839844 85.039062 28.746094 85.039062 28.628906 Z M 85.039062 28.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 89.65625 26.273438 C 89.65625 26.15625 89.5625 26.0625 89.445312 26.0625 C 89.328125 26.0625 89.234375 26.15625 89.234375 26.273438 C 89.234375 26.390625 89.328125 26.484375 89.445312 26.484375 C 89.5625 26.484375 89.65625 26.390625 89.65625 26.273438 Z M 89.65625 26.273438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.550781 24.164062 C 90.550781 24.046875 90.457031 23.953125 90.339844 23.953125 C 90.222656 23.953125 90.128906 24.046875 90.128906 24.164062 C 90.128906 24.28125 90.222656 24.375 90.339844 24.375 C 90.457031 24.375 90.550781 24.28125 90.550781 24.164062 Z M 90.550781 24.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.546875 24.9375 C 88.546875 24.820312 88.453125 24.726562 88.335938 24.726562 C 88.21875 24.726562 88.125 24.820312 88.125 24.9375 C 88.125 25.054688 88.21875 25.148438 88.335938 25.148438 C 88.453125 25.148438 88.546875 25.054688 88.546875 24.9375 Z M 88.546875 24.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.75 25.082031 C 87.75 24.964844 87.65625 24.871094 87.539062 24.871094 C 87.421875 24.871094 87.328125 24.964844 87.328125 25.082031 C 87.328125 25.199219 87.421875 25.292969 87.539062 25.292969 C 87.65625 25.292969 87.75 25.199219 87.75 25.082031 Z M 87.75 25.082031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 88.902344 25.203125 C 88.902344 25.085938 88.808594 24.992188 88.691406 24.992188 C 88.574219 24.992188 88.480469 25.085938 88.480469 25.203125 C 88.480469 25.320312 88.574219 25.414062 88.691406 25.414062 C 88.808594 25.414062 88.902344 25.320312 88.902344 25.203125 Z M 88.902344 25.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 90.960938 30.355469 C 90.960938 30.238281 90.867188 30.144531 90.75 30.144531 C 90.632812 30.144531 90.539062 30.238281 90.539062 30.355469 C 90.539062 30.472656 90.632812 30.566406 90.75 30.566406 C 90.867188 30.566406 90.960938 30.472656 90.960938 30.355469 Z M 90.960938 30.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.972656 28.628906 C 84.972656 28.511719 84.878906 28.417969 84.761719 28.417969 C 84.644531 28.417969 84.550781 28.511719 84.550781 28.628906 C 84.550781 28.746094 84.644531 28.839844 84.761719 28.839844 C 84.878906 28.839844 84.972656 28.746094 84.972656 28.628906 Z M 84.972656 28.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.746094 28.117188 C 84.746094 28 84.652344 27.90625 84.535156 27.90625 C 84.417969 27.90625 84.324219 28 84.324219 28.117188 C 84.324219 28.234375 84.417969 28.328125 84.535156 28.328125 C 84.652344 28.328125 84.746094 28.234375 84.746094 28.117188 Z M 84.746094 28.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.054688 29.675781 C 84.054688 29.558594 83.960938 29.464844 83.84375 29.464844 C 83.726562 29.464844 83.632812 29.558594 83.632812 29.675781 C 83.632812 29.792969 83.726562 29.886719 83.84375 29.886719 C 83.960938 29.886719 84.054688 29.792969 84.054688 29.675781 Z M 84.054688 29.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.109375 26.046875 C 82.109375 25.929688 82.015625 25.835938 81.898438 25.835938 C 81.78125 25.835938 81.6875 25.929688 81.6875 26.046875 C 81.6875 26.164062 81.78125 26.257812 81.898438 26.257812 C 82.015625 26.257812 82.109375 26.164062 82.109375 26.046875 Z M 82.109375 26.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.550781 24.882812 C 84.550781 24.765625 84.457031 24.671875 84.339844 24.671875 C 84.222656 24.671875 84.128906 24.765625 84.128906 24.882812 C 84.128906 25 84.222656 25.09375 84.339844 25.09375 C 84.457031 25.09375 84.550781 25 84.550781 24.882812 Z M 84.550781 24.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.316406 23.753906 C 86.316406 23.636719 86.222656 23.542969 86.105469 23.542969 C 85.988281 23.542969 85.894531 23.636719 85.894531 23.753906 C 85.894531 23.871094 85.988281 23.964844 86.105469 23.964844 C 86.222656 23.964844 86.316406 23.871094 86.316406 23.753906 Z M 86.316406 23.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.332031 23.71875 C 86.332031 23.601562 86.238281 23.507812 86.121094 23.507812 C 86.003906 23.507812 85.910156 23.601562 85.910156 23.71875 C 85.910156 23.835938 86.003906 23.929688 86.121094 23.929688 C 86.238281 23.929688 86.332031 23.835938 86.332031 23.71875 Z M 86.332031 23.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.867188 21.363281 C 82.867188 21.246094 82.773438 21.152344 82.65625 21.152344 C 82.539062 21.152344 82.445312 21.246094 82.445312 21.363281 C 82.445312 21.480469 82.539062 21.574219 82.65625 21.574219 C 82.773438 21.574219 82.867188 21.480469 82.867188 21.363281 Z M 82.867188 21.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 82.660156 23.03125 C 82.660156 22.914062 82.566406 22.820312 82.449219 22.820312 C 82.332031 22.820312 82.238281 22.914062 82.238281 23.03125 C 82.238281 23.148438 82.332031 23.242188 82.449219 23.242188 C 82.566406 23.242188 82.660156 23.148438 82.660156 23.03125 Z M 82.660156 23.03125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.339844 21.527344 C 83.339844 21.410156 83.246094 21.316406 83.128906 21.316406 C 83.011719 21.316406 82.917969 21.410156 82.917969 21.527344 C 82.917969 21.644531 83.011719 21.738281 83.128906 21.738281 C 83.246094 21.738281 83.339844 21.644531 83.339844 21.527344 Z M 83.339844 21.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.824219 19.679688 C 83.824219 19.5625 83.730469 19.46875 83.613281 19.46875 C 83.496094 19.46875 83.402344 19.5625 83.402344 19.679688 C 83.402344 19.796875 83.496094 19.890625 83.613281 19.890625 C 83.730469 19.890625 83.824219 19.796875 83.824219 19.679688 Z M 83.824219 19.679688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.527344 17.363281 C 86.527344 17.246094 86.433594 17.152344 86.316406 17.152344 C 86.199219 17.152344 86.105469 17.246094 86.105469 17.363281 C 86.105469 17.480469 86.199219 17.574219 86.316406 17.574219 C 86.433594 17.574219 86.527344 17.480469 86.527344 17.363281 Z M 86.527344 17.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 86.535156 18.179688 C 86.535156 18.0625 86.441406 17.96875 86.324219 17.96875 C 86.207031 17.96875 86.113281 18.0625 86.113281 18.179688 C 86.113281 18.296875 86.207031 18.390625 86.324219 18.390625 C 86.441406 18.390625 86.535156 18.296875 86.535156 18.179688 Z M 86.535156 18.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.488281 14.566406 C 87.488281 14.449219 87.394531 14.355469 87.277344 14.355469 C 87.160156 14.355469 87.066406 14.449219 87.066406 14.566406 C 87.066406 14.683594 87.160156 14.777344 87.277344 14.777344 C 87.394531 14.777344 87.488281 14.683594 87.488281 14.566406 Z M 87.488281 14.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 87.761719 16.828125 C 87.761719 16.710938 87.667969 16.617188 87.550781 16.617188 C 87.433594 16.617188 87.339844 16.710938 87.339844 16.828125 C 87.339844 16.945312 87.433594 17.039062 87.550781 17.039062 C 87.667969 17.039062 87.761719 16.945312 87.761719 16.828125 Z M 87.761719 16.828125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.996094 15.671875 C 83.996094 15.554688 83.902344 15.460938 83.785156 15.460938 C 83.667969 15.460938 83.574219 15.554688 83.574219 15.671875 C 83.574219 15.789062 83.667969 15.882812 83.785156 15.882812 C 83.902344 15.882812 83.996094 15.789062 83.996094 15.671875 Z M 83.996094 15.671875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.183594 12.28125 C 84.183594 12.164062 84.089844 12.070312 83.972656 12.070312 C 83.855469 12.070312 83.761719 12.164062 83.761719 12.28125 C 83.761719 12.398438 83.855469 12.492188 83.972656 12.492188 C 84.089844 12.492188 84.183594 12.398438 84.183594 12.28125 Z M 84.183594 12.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 84.378906 14.203125 C 84.378906 14.085938 84.285156 13.992188 84.167969 13.992188 C 84.050781 13.992188 83.957031 14.085938 83.957031 14.203125 C 83.957031 14.320312 84.050781 14.414062 84.167969 14.414062 C 84.285156 14.414062 84.378906 14.320312 84.378906 14.203125 Z M 84.378906 14.203125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 83.808594 14.507812 C 83.808594 14.390625 83.714844 14.296875 83.597656 14.296875 C 83.480469 14.296875 83.386719 14.390625 83.386719 14.507812 C 83.386719 14.625 83.480469 14.71875 83.597656 14.71875 C 83.714844 14.71875 83.808594 14.625 83.808594 14.507812 Z M 83.808594 14.507812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80 13.957031 C 80 13.839844 79.90625 13.746094 79.789062 13.746094 C 79.671875 13.746094 79.578125 13.839844 79.578125 13.957031 C 79.578125 14.074219 79.671875 14.167969 79.789062 14.167969 C 79.90625 14.167969 80 14.074219 80 13.957031 Z M 80 13.957031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 79.238281 15.332031 C 79.238281 15.214844 79.144531 15.121094 79.027344 15.121094 C 78.910156 15.121094 78.816406 15.214844 78.816406 15.332031 C 78.816406 15.449219 78.910156 15.542969 79.027344 15.542969 C 79.144531 15.542969 79.238281 15.449219 79.238281 15.332031 Z M 79.238281 15.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.863281 17.523438 C 78.863281 17.40625 78.769531 17.3125 78.652344 17.3125 C 78.535156 17.3125 78.441406 17.40625 78.441406 17.523438 C 78.441406 17.640625 78.535156 17.734375 78.652344 17.734375 C 78.769531 17.734375 78.863281 17.640625 78.863281 17.523438 Z M 78.863281 17.523438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.792969 16.265625 C 76.792969 16.148438 76.699219 16.054688 76.582031 16.054688 C 76.464844 16.054688 76.371094 16.148438 76.371094 16.265625 C 76.371094 16.382812 76.464844 16.476562 76.582031 16.476562 C 76.699219 16.476562 76.792969 16.382812 76.792969 16.265625 Z M 76.792969 16.265625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.945312 14.246094 C 73.945312 14.128906 73.851562 14.035156 73.734375 14.035156 C 73.617188 14.035156 73.523438 14.128906 73.523438 14.246094 C 73.523438 14.363281 73.617188 14.457031 73.734375 14.457031 C 73.851562 14.457031 73.945312 14.363281 73.945312 14.246094 Z M 73.945312 14.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.832031 14.683594 C 76.832031 14.566406 76.738281 14.472656 76.621094 14.472656 C 76.503906 14.472656 76.410156 14.566406 76.410156 14.683594 C 76.410156 14.800781 76.503906 14.894531 76.621094 14.894531 C 76.738281 14.894531 76.832031 14.800781 76.832031 14.683594 Z M 76.832031 14.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 80.109375 15.515625 C 80.109375 15.398438 80.015625 15.304688 79.898438 15.304688 C 79.78125 15.304688 79.6875 15.398438 79.6875 15.515625 C 79.6875 15.632812 79.78125 15.726562 79.898438 15.726562 C 80.015625 15.726562 80.109375 15.632812 80.109375 15.515625 Z M 80.109375 15.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.820312 16.4375 C 77.820312 16.320312 77.726562 16.226562 77.609375 16.226562 C 77.492188 16.226562 77.398438 16.320312 77.398438 16.4375 C 77.398438 16.554688 77.492188 16.648438 77.609375 16.648438 C 77.726562 16.648438 77.820312 16.554688 77.820312 16.4375 Z M 77.820312 16.4375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.441406 12.71875 C 77.441406 12.601562 77.347656 12.507812 77.230469 12.507812 C 77.113281 12.507812 77.019531 12.601562 77.019531 12.71875 C 77.019531 12.835938 77.113281 12.929688 77.230469 12.929688 C 77.347656 12.929688 77.441406 12.835938 77.441406 12.71875 Z M 77.441406 12.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.394531 11.675781 C 75.394531 11.558594 75.300781 11.464844 75.183594 11.464844 C 75.066406 11.464844 74.972656 11.558594 74.972656 11.675781 C 74.972656 11.792969 75.066406 11.886719 75.183594 11.886719 C 75.300781 11.886719 75.394531 11.792969 75.394531 11.675781 Z M 75.394531 11.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.746094 14.75 C 78.746094 14.632812 78.652344 14.539062 78.535156 14.539062 C 78.417969 14.539062 78.324219 14.632812 78.324219 14.75 C 78.324219 14.867188 78.417969 14.960938 78.535156 14.960938 C 78.652344 14.960938 78.746094 14.867188 78.746094 14.75 Z M 78.746094 14.75 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 78.332031 13.042969 C 78.332031 12.925781 78.238281 12.832031 78.121094 12.832031 C 78.003906 12.832031 77.910156 12.925781 77.910156 13.042969 C 77.910156 13.160156 78.003906 13.253906 78.121094 13.253906 C 78.238281 13.253906 78.332031 13.160156 78.332031 13.042969 Z M 78.332031 13.042969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 77.183594 13.140625 C 77.183594 13.023438 77.089844 12.929688 76.972656 12.929688 C 76.855469 12.929688 76.761719 13.023438 76.761719 13.140625 C 76.761719 13.257812 76.855469 13.351562 76.972656 13.351562 C 77.089844 13.351562 77.183594 13.257812 77.183594 13.140625 Z M 77.183594 13.140625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.980469 15.390625 C 76.980469 15.273438 76.886719 15.179688 76.769531 15.179688 C 76.652344 15.179688 76.558594 15.273438 76.558594 15.390625 C 76.558594 15.507812 76.652344 15.601562 76.769531 15.601562 C 76.886719 15.601562 76.980469 15.507812 76.980469 15.390625 Z M 76.980469 15.390625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.480469 17.277344 C 71.480469 17.160156 71.386719 17.066406 71.269531 17.066406 C 71.152344 17.066406 71.058594 17.160156 71.058594 17.277344 C 71.058594 17.394531 71.152344 17.488281 71.269531 17.488281 C 71.386719 17.488281 71.480469 17.394531 71.480469 17.277344 Z M 71.480469 17.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.121094 16.363281 C 70.121094 16.246094 70.027344 16.152344 69.910156 16.152344 C 69.792969 16.152344 69.699219 16.246094 69.699219 16.363281 C 69.699219 16.480469 69.792969 16.574219 69.910156 16.574219 C 70.027344 16.574219 70.121094 16.480469 70.121094 16.363281 Z M 70.121094 16.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 71.394531 16.824219 C 71.394531 16.707031 71.300781 16.613281 71.183594 16.613281 C 71.066406 16.613281 70.972656 16.707031 70.972656 16.824219 C 70.972656 16.941406 71.066406 17.035156 71.183594 17.035156 C 71.300781 17.035156 71.394531 16.941406 71.394531 16.824219 Z M 71.394531 16.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.613281 15.542969 C 72.613281 15.425781 72.519531 15.332031 72.402344 15.332031 C 72.285156 15.332031 72.191406 15.425781 72.191406 15.542969 C 72.191406 15.660156 72.285156 15.753906 72.402344 15.753906 C 72.519531 15.753906 72.613281 15.660156 72.613281 15.542969 Z M 72.613281 15.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.132812 16.558594 C 74.132812 16.441406 74.039062 16.347656 73.921875 16.347656 C 73.804688 16.347656 73.710938 16.441406 73.710938 16.558594 C 73.710938 16.675781 73.804688 16.769531 73.921875 16.769531 C 74.039062 16.769531 74.132812 16.675781 74.132812 16.558594 Z M 74.132812 16.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.050781 17.277344 C 74.050781 17.160156 73.957031 17.066406 73.839844 17.066406 C 73.722656 17.066406 73.628906 17.160156 73.628906 17.277344 C 73.628906 17.394531 73.722656 17.488281 73.839844 17.488281 C 73.957031 17.488281 74.050781 17.394531 74.050781 17.277344 Z M 74.050781 17.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 75.550781 14.257812 C 75.550781 14.140625 75.457031 14.046875 75.339844 14.046875 C 75.222656 14.046875 75.128906 14.140625 75.128906 14.257812 C 75.128906 14.375 75.222656 14.46875 75.339844 14.46875 C 75.457031 14.46875 75.550781 14.375 75.550781 14.257812 Z M 75.550781 14.257812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.878906 13.542969 C 73.878906 13.425781 73.785156 13.332031 73.667969 13.332031 C 73.550781 13.332031 73.457031 13.425781 73.457031 13.542969 C 73.457031 13.660156 73.550781 13.753906 73.667969 13.753906 C 73.785156 13.753906 73.878906 13.660156 73.878906 13.542969 Z M 73.878906 13.542969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.949219 11.328125 C 74.949219 11.210938 74.855469 11.117188 74.738281 11.117188 C 74.621094 11.117188 74.527344 11.210938 74.527344 11.328125 C 74.527344 11.445312 74.621094 11.539062 74.738281 11.539062 C 74.855469 11.539062 74.949219 11.445312 74.949219 11.328125 Z M 74.949219 11.328125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.105469 15.054688 C 72.105469 14.9375 72.011719 14.84375 71.894531 14.84375 C 71.777344 14.84375 71.683594 14.9375 71.683594 15.054688 C 71.683594 15.171875 71.777344 15.265625 71.894531 15.265625 C 72.011719 15.265625 72.105469 15.171875 72.105469 15.054688 Z M 72.105469 15.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 72.5625 16.308594 C 72.5625 16.191406 72.46875 16.097656 72.351562 16.097656 C 72.234375 16.097656 72.140625 16.191406 72.140625 16.308594 C 72.140625 16.425781 72.234375 16.519531 72.351562 16.519531 C 72.46875 16.519531 72.5625 16.425781 72.5625 16.308594 Z M 72.5625 16.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 73.054688 16.976562 C 73.054688 16.859375 72.960938 16.765625 72.84375 16.765625 C 72.726562 16.765625 72.632812 16.859375 72.632812 16.976562 C 72.632812 17.09375 72.726562 17.1875 72.84375 17.1875 C 72.960938 17.1875 73.054688 17.09375 73.054688 16.976562 Z M 73.054688 16.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.996094 16.707031 C 70.996094 16.589844 70.902344 16.496094 70.785156 16.496094 C 70.667969 16.496094 70.574219 16.589844 70.574219 16.707031 C 70.574219 16.824219 70.667969 16.917969 70.785156 16.917969 C 70.902344 16.917969 70.996094 16.824219 70.996094 16.707031 Z M 70.996094 16.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 76.960938 17.578125 C 76.960938 17.460938 76.867188 17.367188 76.75 17.367188 C 76.632812 17.367188 76.539062 17.460938 76.539062 17.578125 C 76.539062 17.695312 76.632812 17.789062 76.75 17.789062 C 76.867188 17.789062 76.960938 17.695312 76.960938 17.578125 Z M 76.960938 17.578125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 74.546875 18.1875 C 74.546875 18.070312 74.453125 17.976562 74.335938 17.976562 C 74.21875 17.976562 74.125 18.070312 74.125 18.1875 C 74.125 18.304688 74.21875 18.398438 74.335938 18.398438 C 74.453125 18.398438 74.546875 18.304688 74.546875 18.1875 Z M 74.546875 18.1875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 70.984375 16.65625 C 70.984375 16.539062 70.890625 16.445312 70.773438 16.445312 C 70.65625 16.445312 70.5625 16.539062 70.5625 16.65625 C 70.5625 16.773438 70.65625 16.867188 70.773438 16.867188 C 70.890625 16.867188 70.984375 16.773438 70.984375 16.65625 Z M 70.984375 16.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 69.195312 16.308594 C 69.195312 16.191406 69.101562 16.097656 68.984375 16.097656 C 68.867188 16.097656 68.773438 16.191406 68.773438 16.308594 C 68.773438 16.425781 68.867188 16.519531 68.984375 16.519531 C 69.101562 16.519531 69.195312 16.425781 69.195312 16.308594 Z M 69.195312 16.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.300781 15.480469 C 66.300781 15.363281 66.207031 15.269531 66.089844 15.269531 C 65.972656 15.269531 65.878906 15.363281 65.878906 15.480469 C 65.878906 15.597656 65.972656 15.691406 66.089844 15.691406 C 66.207031 15.691406 66.300781 15.597656 66.300781 15.480469 Z M 66.300781 15.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 66.671875 14.566406 C 66.671875 14.449219 66.578125 14.355469 66.460938 14.355469 C 66.34375 14.355469 66.25 14.449219 66.25 14.566406 C 66.25 14.683594 66.34375 14.777344 66.460938 14.777344 C 66.578125 14.777344 66.671875 14.683594 66.671875 14.566406 Z M 66.671875 14.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.296875 16.027344 C 65.296875 15.910156 65.203125 15.816406 65.085938 15.816406 C 64.96875 15.816406 64.875 15.910156 64.875 16.027344 C 64.875 16.144531 64.96875 16.238281 65.085938 16.238281 C 65.203125 16.238281 65.296875 16.144531 65.296875 16.027344 Z M 65.296875 16.027344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 65.890625 15.859375 C 65.890625 15.742188 65.796875 15.648438 65.679688 15.648438 C 65.5625 15.648438 65.46875 15.742188 65.46875 15.859375 C 65.46875 15.976562 65.5625 16.070312 65.679688 16.070312 C 65.796875 16.070312 65.890625 15.976562 65.890625 15.859375 Z M 65.890625 15.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 64.175781 13.890625 C 64.175781 13.773438 64.082031 13.679688 63.964844 13.679688 C 63.847656 13.679688 63.753906 13.773438 63.753906 13.890625 C 63.753906 14.007812 63.847656 14.101562 63.964844 14.101562 C 64.082031 14.101562 64.175781 14.007812 64.175781 13.890625 Z M 64.175781 13.890625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 61.601562 16.070312 C 61.601562 15.953125 61.507812 15.859375 61.390625 15.859375 C 61.273438 15.859375 61.179688 15.953125 61.179688 16.070312 C 61.179688 16.1875 61.273438 16.28125 61.390625 16.28125 C 61.507812 16.28125 61.601562 16.1875 61.601562 16.070312 Z M 61.601562 16.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.394531 13.613281 C 55.394531 13.496094 55.300781 13.402344 55.183594 13.402344 C 55.066406 13.402344 54.972656 13.496094 54.972656 13.613281 C 54.972656 13.730469 55.066406 13.824219 55.183594 13.824219 C 55.300781 13.824219 55.394531 13.730469 55.394531 13.613281 Z M 55.394531 13.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.0625 13.636719 C 55.0625 13.519531 54.96875 13.425781 54.851562 13.425781 C 54.734375 13.425781 54.640625 13.519531 54.640625 13.636719 C 54.640625 13.753906 54.734375 13.847656 54.851562 13.847656 C 54.96875 13.847656 55.0625 13.753906 55.0625 13.636719 Z M 55.0625 13.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.046875 17.675781 C 55.046875 17.558594 54.953125 17.464844 54.835938 17.464844 C 54.71875 17.464844 54.625 17.558594 54.625 17.675781 C 54.625 17.792969 54.71875 17.886719 54.835938 17.886719 C 54.953125 17.886719 55.046875 17.792969 55.046875 17.675781 Z M 55.046875 17.675781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.917969 16.40625 C 54.917969 16.289062 54.824219 16.195312 54.707031 16.195312 C 54.589844 16.195312 54.496094 16.289062 54.496094 16.40625 C 54.496094 16.523438 54.589844 16.617188 54.707031 16.617188 C 54.824219 16.617188 54.917969 16.523438 54.917969 16.40625 Z M 54.917969 16.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.53125 14.601562 C 55.53125 14.484375 55.4375 14.390625 55.320312 14.390625 C 55.203125 14.390625 55.109375 14.484375 55.109375 14.601562 C 55.109375 14.71875 55.203125 14.8125 55.320312 14.8125 C 55.4375 14.8125 55.53125 14.71875 55.53125 14.601562 Z M 55.53125 14.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.160156 15.238281 C 54.160156 15.121094 54.066406 15.027344 53.949219 15.027344 C 53.832031 15.027344 53.738281 15.121094 53.738281 15.238281 C 53.738281 15.355469 53.832031 15.449219 53.949219 15.449219 C 54.066406 15.449219 54.160156 15.355469 54.160156 15.238281 Z M 54.160156 15.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.164062 14.628906 C 57.164062 14.511719 57.070312 14.417969 56.953125 14.417969 C 56.835938 14.417969 56.742188 14.511719 56.742188 14.628906 C 56.742188 14.746094 56.835938 14.839844 56.953125 14.839844 C 57.070312 14.839844 57.164062 14.746094 57.164062 14.628906 Z M 57.164062 14.628906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.519531 14.527344 C 52.519531 14.410156 52.425781 14.316406 52.308594 14.316406 C 52.191406 14.316406 52.097656 14.410156 52.097656 14.527344 C 52.097656 14.644531 52.191406 14.738281 52.308594 14.738281 C 52.425781 14.738281 52.519531 14.644531 52.519531 14.527344 Z M 52.519531 14.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.671875 13.835938 C 54.671875 13.71875 54.578125 13.625 54.460938 13.625 C 54.34375 13.625 54.25 13.71875 54.25 13.835938 C 54.25 13.953125 54.34375 14.046875 54.460938 14.046875 C 54.578125 14.046875 54.671875 13.953125 54.671875 13.835938 Z M 54.671875 13.835938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.035156 17.605469 C 52.035156 17.488281 51.941406 17.394531 51.824219 17.394531 C 51.707031 17.394531 51.613281 17.488281 51.613281 17.605469 C 51.613281 17.722656 51.707031 17.816406 51.824219 17.816406 C 51.941406 17.816406 52.035156 17.722656 52.035156 17.605469 Z M 52.035156 17.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.910156 16.398438 C 48.910156 16.28125 48.816406 16.1875 48.699219 16.1875 C 48.582031 16.1875 48.488281 16.28125 48.488281 16.398438 C 48.488281 16.515625 48.582031 16.609375 48.699219 16.609375 C 48.816406 16.609375 48.910156 16.515625 48.910156 16.398438 Z M 48.910156 16.398438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.992188 18.28125 C 47.992188 18.164062 47.898438 18.070312 47.78125 18.070312 C 47.664062 18.070312 47.570312 18.164062 47.570312 18.28125 C 47.570312 18.398438 47.664062 18.492188 47.78125 18.492188 C 47.898438 18.492188 47.992188 18.398438 47.992188 18.28125 Z M 47.992188 18.28125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.71875 14.40625 C 48.71875 14.289062 48.625 14.195312 48.507812 14.195312 C 48.390625 14.195312 48.296875 14.289062 48.296875 14.40625 C 48.296875 14.523438 48.390625 14.617188 48.507812 14.617188 C 48.625 14.617188 48.71875 14.523438 48.71875 14.40625 Z M 48.71875 14.40625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.773438 12 C 51.773438 11.882812 51.679688 11.789062 51.5625 11.789062 C 51.445312 11.789062 51.351562 11.882812 51.351562 12 C 51.351562 12.117188 51.445312 12.210938 51.5625 12.210938 C 51.679688 12.210938 51.773438 12.117188 51.773438 12 Z M 51.773438 12 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.070312 8.355469 C 53.070312 8.238281 52.976562 8.144531 52.859375 8.144531 C 52.742188 8.144531 52.648438 8.238281 52.648438 8.355469 C 52.648438 8.472656 52.742188 8.566406 52.859375 8.566406 C 52.976562 8.566406 53.070312 8.472656 53.070312 8.355469 Z M 53.070312 8.355469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.746094 4.976562 C 54.746094 4.859375 54.652344 4.765625 54.535156 4.765625 C 54.417969 4.765625 54.324219 4.859375 54.324219 4.976562 C 54.324219 5.09375 54.417969 5.1875 54.535156 5.1875 C 54.652344 5.1875 54.746094 5.09375 54.746094 4.976562 Z M 54.746094 4.976562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 55.699219 5.546875 C 55.699219 5.429688 55.605469 5.335938 55.488281 5.335938 C 55.371094 5.335938 55.277344 5.429688 55.277344 5.546875 C 55.277344 5.664062 55.371094 5.757812 55.488281 5.757812 C 55.605469 5.757812 55.699219 5.664062 55.699219 5.546875 Z M 55.699219 5.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.257812 7.480469 C 54.257812 7.363281 54.164062 7.269531 54.046875 7.269531 C 53.929688 7.269531 53.835938 7.363281 53.835938 7.480469 C 53.835938 7.597656 53.929688 7.691406 54.046875 7.691406 C 54.164062 7.691406 54.257812 7.597656 54.257812 7.480469 Z M 54.257812 7.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.765625 7.285156 C 54.765625 7.167969 54.671875 7.074219 54.554688 7.074219 C 54.4375 7.074219 54.34375 7.167969 54.34375 7.285156 C 54.34375 7.402344 54.4375 7.496094 54.554688 7.496094 C 54.671875 7.496094 54.765625 7.402344 54.765625 7.285156 Z M 54.765625 7.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.730469 10.871094 C 54.730469 10.753906 54.636719 10.660156 54.519531 10.660156 C 54.402344 10.660156 54.308594 10.753906 54.308594 10.871094 C 54.308594 10.988281 54.402344 11.082031 54.519531 11.082031 C 54.636719 11.082031 54.730469 10.988281 54.730469 10.871094 Z M 54.730469 10.871094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.585938 10.910156 C 50.585938 10.792969 50.492188 10.699219 50.375 10.699219 C 50.257812 10.699219 50.164062 10.792969 50.164062 10.910156 C 50.164062 11.027344 50.257812 11.121094 50.375 11.121094 C 50.492188 11.121094 50.585938 11.027344 50.585938 10.910156 Z M 50.585938 10.910156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.761719 11.996094 C 53.761719 11.878906 53.667969 11.785156 53.550781 11.785156 C 53.433594 11.785156 53.339844 11.878906 53.339844 11.996094 C 53.339844 12.113281 53.433594 12.207031 53.550781 12.207031 C 53.667969 12.207031 53.761719 12.113281 53.761719 11.996094 Z M 53.761719 11.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.460938 12.585938 C 56.460938 12.46875 56.367188 12.375 56.25 12.375 C 56.132812 12.375 56.039062 12.46875 56.039062 12.585938 C 56.039062 12.703125 56.132812 12.796875 56.25 12.796875 C 56.367188 12.796875 56.460938 12.703125 56.460938 12.585938 Z M 56.460938 12.585938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 57.574219 15.300781 C 57.574219 15.183594 57.480469 15.089844 57.363281 15.089844 C 57.246094 15.089844 57.152344 15.183594 57.152344 15.300781 C 57.152344 15.417969 57.246094 15.511719 57.363281 15.511719 C 57.480469 15.511719 57.574219 15.417969 57.574219 15.300781 Z M 57.574219 15.300781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.910156 13.296875 C 56.910156 13.179688 56.816406 13.085938 56.699219 13.085938 C 56.582031 13.085938 56.488281 13.179688 56.488281 13.296875 C 56.488281 13.414062 56.582031 13.507812 56.699219 13.507812 C 56.816406 13.507812 56.910156 13.414062 56.910156 13.296875 Z M 56.910156 13.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.046875 11.550781 C 56.046875 11.433594 55.953125 11.339844 55.835938 11.339844 C 55.71875 11.339844 55.625 11.433594 55.625 11.550781 C 55.625 11.667969 55.71875 11.761719 55.835938 11.761719 C 55.953125 11.761719 56.046875 11.667969 56.046875 11.550781 Z M 56.046875 11.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.132812 11.96875 C 53.132812 11.851562 53.039062 11.757812 52.921875 11.757812 C 52.804688 11.757812 52.710938 11.851562 52.710938 11.96875 C 52.710938 12.085938 52.804688 12.179688 52.921875 12.179688 C 53.039062 12.179688 53.132812 12.085938 53.132812 11.96875 Z M 53.132812 11.96875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.976562 8.160156 C 49.976562 8.042969 49.882812 7.949219 49.765625 7.949219 C 49.648438 7.949219 49.554688 8.042969 49.554688 8.160156 C 49.554688 8.277344 49.648438 8.371094 49.765625 8.371094 C 49.882812 8.371094 49.976562 8.277344 49.976562 8.160156 Z M 49.976562 8.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.839844 5.808594 C 49.839844 5.691406 49.746094 5.597656 49.628906 5.597656 C 49.511719 5.597656 49.417969 5.691406 49.417969 5.808594 C 49.417969 5.925781 49.511719 6.019531 49.628906 6.019531 C 49.746094 6.019531 49.839844 5.925781 49.839844 5.808594 Z M 49.839844 5.808594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 51.4375 7.65625 C 51.4375 7.539062 51.34375 7.445312 51.226562 7.445312 C 51.109375 7.445312 51.015625 7.539062 51.015625 7.65625 C 51.015625 7.773438 51.109375 7.867188 51.226562 7.867188 C 51.34375 7.867188 51.4375 7.773438 51.4375 7.65625 Z M 51.4375 7.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.054688 11.367188 C 52.054688 11.25 51.960938 11.15625 51.84375 11.15625 C 51.726562 11.15625 51.632812 11.25 51.632812 11.367188 C 51.632812 11.484375 51.726562 11.578125 51.84375 11.578125 C 51.960938 11.578125 52.054688 11.484375 52.054688 11.367188 Z M 52.054688 11.367188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 54.273438 10.402344 C 54.273438 10.285156 54.179688 10.191406 54.0625 10.191406 C 53.945312 10.191406 53.851562 10.285156 53.851562 10.402344 C 53.851562 10.519531 53.945312 10.613281 54.0625 10.613281 C 54.179688 10.613281 54.273438 10.519531 54.273438 10.402344 Z M 54.273438 10.402344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 56.65625 11.226562 C 56.65625 11.109375 56.5625 11.015625 56.445312 11.015625 C 56.328125 11.015625 56.234375 11.109375 56.234375 11.226562 C 56.234375 11.34375 56.328125 11.4375 56.445312 11.4375 C 56.5625 11.4375 56.65625 11.34375 56.65625 11.226562 Z M 56.65625 11.226562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.753906 11.839844 C 52.753906 11.722656 52.660156 11.628906 52.542969 11.628906 C 52.425781 11.628906 52.332031 11.722656 52.332031 11.839844 C 52.332031 11.957031 52.425781 12.050781 52.542969 12.050781 C 52.660156 12.050781 52.753906 11.957031 52.753906 11.839844 Z M 52.753906 11.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 50.175781 13.648438 C 50.175781 13.53125 50.082031 13.4375 49.964844 13.4375 C 49.847656 13.4375 49.753906 13.53125 49.753906 13.648438 C 49.753906 13.765625 49.847656 13.859375 49.964844 13.859375 C 50.082031 13.859375 50.175781 13.765625 50.175781 13.648438 Z M 50.175781 13.648438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.089844 14.488281 C 49.089844 14.371094 48.996094 14.277344 48.878906 14.277344 C 48.761719 14.277344 48.667969 14.371094 48.667969 14.488281 C 48.667969 14.605469 48.761719 14.699219 48.878906 14.699219 C 48.996094 14.699219 49.089844 14.605469 49.089844 14.488281 Z M 49.089844 14.488281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.824219 13.84375 C 46.824219 13.726562 46.730469 13.632812 46.613281 13.632812 C 46.496094 13.632812 46.402344 13.726562 46.402344 13.84375 C 46.402344 13.960938 46.496094 14.054688 46.613281 14.054688 C 46.730469 14.054688 46.824219 13.960938 46.824219 13.84375 Z M 46.824219 13.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.558594 12.574219 C 46.558594 12.457031 46.464844 12.363281 46.347656 12.363281 C 46.230469 12.363281 46.136719 12.457031 46.136719 12.574219 C 46.136719 12.691406 46.230469 12.785156 46.347656 12.785156 C 46.464844 12.785156 46.558594 12.691406 46.558594 12.574219 Z M 46.558594 12.574219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.074219 12.441406 C 47.074219 12.324219 46.980469 12.230469 46.863281 12.230469 C 46.746094 12.230469 46.652344 12.324219 46.652344 12.441406 C 46.652344 12.558594 46.746094 12.652344 46.863281 12.652344 C 46.980469 12.652344 47.074219 12.558594 47.074219 12.441406 Z M 47.074219 12.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.203125 15.351562 C 47.203125 15.234375 47.109375 15.140625 46.992188 15.140625 C 46.875 15.140625 46.78125 15.234375 46.78125 15.351562 C 46.78125 15.46875 46.875 15.5625 46.992188 15.5625 C 47.109375 15.5625 47.203125 15.46875 47.203125 15.351562 Z M 47.203125 15.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 49.488281 14.617188 C 49.488281 14.5 49.394531 14.40625 49.277344 14.40625 C 49.160156 14.40625 49.066406 14.5 49.066406 14.617188 C 49.066406 14.734375 49.160156 14.828125 49.277344 14.828125 C 49.394531 14.828125 49.488281 14.734375 49.488281 14.617188 Z M 49.488281 14.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 52.082031 17.65625 C 52.082031 17.539062 51.988281 17.445312 51.871094 17.445312 C 51.753906 17.445312 51.660156 17.539062 51.660156 17.65625 C 51.660156 17.773438 51.753906 17.867188 51.871094 17.867188 C 51.988281 17.867188 52.082031 17.773438 52.082031 17.65625 Z M 52.082031 17.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 53.3125 18.535156 C 53.3125 18.417969 53.21875 18.324219 53.101562 18.324219 C 52.984375 18.324219 52.890625 18.417969 52.890625 18.535156 C 52.890625 18.652344 52.984375 18.746094 53.101562 18.746094 C 53.21875 18.746094 53.3125 18.652344 53.3125 18.535156 Z M 53.3125 18.535156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.339844 18.164062 C 47.339844 18.046875 47.246094 17.953125 47.128906 17.953125 C 47.011719 17.953125 46.917969 18.046875 46.917969 18.164062 C 46.917969 18.28125 47.011719 18.375 47.128906 18.375 C 47.246094 18.375 47.339844 18.28125 47.339844 18.164062 Z M 47.339844 18.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.882812 19.046875 C 46.882812 18.929688 46.789062 18.835938 46.671875 18.835938 C 46.554688 18.835938 46.460938 18.929688 46.460938 19.046875 C 46.460938 19.164062 46.554688 19.257812 46.671875 19.257812 C 46.789062 19.257812 46.882812 19.164062 46.882812 19.046875 Z M 46.882812 19.046875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.40625 19.855469 C 48.40625 19.738281 48.3125 19.644531 48.195312 19.644531 C 48.078125 19.644531 47.984375 19.738281 47.984375 19.855469 C 47.984375 19.972656 48.078125 20.066406 48.195312 20.066406 C 48.3125 20.066406 48.40625 19.972656 48.40625 19.855469 Z M 48.40625 19.855469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.3125 22.847656 C 48.3125 22.730469 48.21875 22.636719 48.101562 22.636719 C 47.984375 22.636719 47.890625 22.730469 47.890625 22.847656 C 47.890625 22.964844 47.984375 23.058594 48.101562 23.058594 C 48.21875 23.058594 48.3125 22.964844 48.3125 22.847656 Z M 48.3125 22.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.554688 23.113281 C 48.554688 22.996094 48.460938 22.902344 48.34375 22.902344 C 48.226562 22.902344 48.132812 22.996094 48.132812 23.113281 C 48.132812 23.230469 48.226562 23.324219 48.34375 23.324219 C 48.460938 23.324219 48.554688 23.230469 48.554688 23.113281 Z M 48.554688 23.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.429688 23.15625 C 44.429688 23.039062 44.335938 22.945312 44.21875 22.945312 C 44.101562 22.945312 44.007812 23.039062 44.007812 23.15625 C 44.007812 23.273438 44.101562 23.367188 44.21875 23.367188 C 44.335938 23.367188 44.429688 23.273438 44.429688 23.15625 Z M 44.429688 23.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.5625 21.285156 C 43.5625 21.167969 43.46875 21.074219 43.351562 21.074219 C 43.234375 21.074219 43.140625 21.167969 43.140625 21.285156 C 43.140625 21.402344 43.234375 21.496094 43.351562 21.496094 C 43.46875 21.496094 43.5625 21.402344 43.5625 21.285156 Z M 43.5625 21.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.085938 23.09375 C 43.085938 22.976562 42.992188 22.882812 42.875 22.882812 C 42.757812 22.882812 42.664062 22.976562 42.664062 23.09375 C 42.664062 23.210938 42.757812 23.304688 42.875 23.304688 C 42.992188 23.304688 43.085938 23.210938 43.085938 23.09375 Z M 43.085938 23.09375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.800781 24.332031 C 40.800781 24.214844 40.707031 24.121094 40.589844 24.121094 C 40.472656 24.121094 40.378906 24.214844 40.378906 24.332031 C 40.378906 24.449219 40.472656 24.542969 40.589844 24.542969 C 40.707031 24.542969 40.800781 24.449219 40.800781 24.332031 Z M 40.800781 24.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.871094 29.753906 C 39.871094 29.636719 39.777344 29.542969 39.660156 29.542969 C 39.542969 29.542969 39.449219 29.636719 39.449219 29.753906 C 39.449219 29.871094 39.542969 29.964844 39.660156 29.964844 C 39.777344 29.964844 39.871094 29.871094 39.871094 29.753906 Z M 39.871094 29.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.796875 32.886719 C 37.796875 32.769531 37.703125 32.675781 37.585938 32.675781 C 37.46875 32.675781 37.375 32.769531 37.375 32.886719 C 37.375 33.003906 37.46875 33.097656 37.585938 33.097656 C 37.703125 33.097656 37.796875 33.003906 37.796875 32.886719 Z M 37.796875 32.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.449219 33.707031 C 34.449219 33.589844 34.355469 33.496094 34.238281 33.496094 C 34.121094 33.496094 34.027344 33.589844 34.027344 33.707031 C 34.027344 33.824219 34.121094 33.917969 34.238281 33.917969 C 34.355469 33.917969 34.449219 33.824219 34.449219 33.707031 Z M 34.449219 33.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.996094 37.070312 C 32.996094 36.953125 32.902344 36.859375 32.785156 36.859375 C 32.667969 36.859375 32.574219 36.953125 32.574219 37.070312 C 32.574219 37.1875 32.667969 37.28125 32.785156 37.28125 C 32.902344 37.28125 32.996094 37.1875 32.996094 37.070312 Z M 32.996094 37.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.253906 35.925781 C 33.253906 35.808594 33.160156 35.714844 33.042969 35.714844 C 32.925781 35.714844 32.832031 35.808594 32.832031 35.925781 C 32.832031 36.042969 32.925781 36.136719 33.042969 36.136719 C 33.160156 36.136719 33.253906 36.042969 33.253906 35.925781 Z M 33.253906 35.925781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 33.449219 35.699219 C 33.449219 35.582031 33.355469 35.488281 33.238281 35.488281 C 33.121094 35.488281 33.027344 35.582031 33.027344 35.699219 C 33.027344 35.816406 33.121094 35.910156 33.238281 35.910156 C 33.355469 35.910156 33.449219 35.816406 33.449219 35.699219 Z M 33.449219 35.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.660156 35.179688 C 32.660156 35.0625 32.566406 34.96875 32.449219 34.96875 C 32.332031 34.96875 32.238281 35.0625 32.238281 35.179688 C 32.238281 35.296875 32.332031 35.390625 32.449219 35.390625 C 32.566406 35.390625 32.660156 35.296875 32.660156 35.179688 Z M 32.660156 35.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.566406 35.316406 C 29.566406 35.199219 29.472656 35.105469 29.355469 35.105469 C 29.238281 35.105469 29.144531 35.199219 29.144531 35.316406 C 29.144531 35.433594 29.238281 35.527344 29.355469 35.527344 C 29.472656 35.527344 29.566406 35.433594 29.566406 35.316406 Z M 29.566406 35.316406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.820312 35.539062 C 26.820312 35.421875 26.726562 35.328125 26.609375 35.328125 C 26.492188 35.328125 26.398438 35.421875 26.398438 35.539062 C 26.398438 35.65625 26.492188 35.75 26.609375 35.75 C 26.726562 35.75 26.820312 35.65625 26.820312 35.539062 Z M 26.820312 35.539062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.5 35.363281 C 25.5 35.246094 25.40625 35.152344 25.289062 35.152344 C 25.171875 35.152344 25.078125 35.246094 25.078125 35.363281 C 25.078125 35.480469 25.171875 35.574219 25.289062 35.574219 C 25.40625 35.574219 25.5 35.480469 25.5 35.363281 Z M 25.5 35.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.796875 37.746094 C 23.796875 37.628906 23.703125 37.535156 23.585938 37.535156 C 23.46875 37.535156 23.375 37.628906 23.375 37.746094 C 23.375 37.863281 23.46875 37.957031 23.585938 37.957031 C 23.703125 37.957031 23.796875 37.863281 23.796875 37.746094 Z M 23.796875 37.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.445312 37.683594 C 27.445312 37.566406 27.351562 37.472656 27.234375 37.472656 C 27.117188 37.472656 27.023438 37.566406 27.023438 37.683594 C 27.023438 37.800781 27.117188 37.894531 27.234375 37.894531 C 27.351562 37.894531 27.445312 37.800781 27.445312 37.683594 Z M 27.445312 37.683594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.757812 40.453125 C 29.757812 40.335938 29.664062 40.242188 29.546875 40.242188 C 29.429688 40.242188 29.335938 40.335938 29.335938 40.453125 C 29.335938 40.570312 29.429688 40.664062 29.546875 40.664062 C 29.664062 40.664062 29.757812 40.570312 29.757812 40.453125 Z M 29.757812 40.453125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.609375 44.3125 C 30.609375 44.195312 30.515625 44.101562 30.398438 44.101562 C 30.28125 44.101562 30.1875 44.195312 30.1875 44.3125 C 30.1875 44.429688 30.28125 44.523438 30.398438 44.523438 C 30.515625 44.523438 30.609375 44.429688 30.609375 44.3125 Z M 30.609375 44.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.71875 44.160156 C 32.71875 44.042969 32.625 43.949219 32.507812 43.949219 C 32.390625 43.949219 32.296875 44.042969 32.296875 44.160156 C 32.296875 44.277344 32.390625 44.371094 32.507812 44.371094 C 32.625 44.371094 32.71875 44.277344 32.71875 44.160156 Z M 32.71875 44.160156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.976562 42.15625 C 30.976562 42.039062 30.882812 41.945312 30.765625 41.945312 C 30.648438 41.945312 30.554688 42.039062 30.554688 42.15625 C 30.554688 42.273438 30.648438 42.367188 30.765625 42.367188 C 30.882812 42.367188 30.976562 42.273438 30.976562 42.15625 Z M 30.976562 42.15625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.859375 44.636719 C 32.859375 44.519531 32.765625 44.425781 32.648438 44.425781 C 32.53125 44.425781 32.4375 44.519531 32.4375 44.636719 C 32.4375 44.753906 32.53125 44.847656 32.648438 44.847656 C 32.765625 44.847656 32.859375 44.753906 32.859375 44.636719 Z M 32.859375 44.636719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.019531 45.183594 C 30.019531 45.066406 29.925781 44.972656 29.808594 44.972656 C 29.691406 44.972656 29.597656 45.066406 29.597656 45.183594 C 29.597656 45.300781 29.691406 45.394531 29.808594 45.394531 C 29.925781 45.394531 30.019531 45.300781 30.019531 45.183594 Z M 30.019531 45.183594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 27.773438 47.175781 C 27.773438 47.058594 27.679688 46.964844 27.5625 46.964844 C 27.445312 46.964844 27.351562 47.058594 27.351562 47.175781 C 27.351562 47.292969 27.445312 47.386719 27.5625 47.386719 C 27.679688 47.386719 27.773438 47.292969 27.773438 47.175781 Z M 27.773438 47.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.050781 45.21875 C 28.050781 45.101562 27.957031 45.007812 27.839844 45.007812 C 27.722656 45.007812 27.628906 45.101562 27.628906 45.21875 C 27.628906 45.335938 27.722656 45.429688 27.839844 45.429688 C 27.957031 45.429688 28.050781 45.335938 28.050781 45.21875 Z M 28.050781 45.21875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.636719 46.167969 C 25.636719 46.050781 25.542969 45.957031 25.425781 45.957031 C 25.308594 45.957031 25.214844 46.050781 25.214844 46.167969 C 25.214844 46.285156 25.308594 46.378906 25.425781 46.378906 C 25.542969 46.378906 25.636719 46.285156 25.636719 46.167969 Z M 25.636719 46.167969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 21.515625 43.480469 C 21.515625 43.363281 21.421875 43.269531 21.304688 43.269531 C 21.1875 43.269531 21.09375 43.363281 21.09375 43.480469 C 21.09375 43.597656 21.1875 43.691406 21.304688 43.691406 C 21.421875 43.691406 21.515625 43.597656 21.515625 43.480469 Z M 21.515625 43.480469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.832031 43.515625 C 23.832031 43.398438 23.738281 43.304688 23.621094 43.304688 C 23.503906 43.304688 23.410156 43.398438 23.410156 43.515625 C 23.410156 43.632812 23.503906 43.726562 23.621094 43.726562 C 23.738281 43.726562 23.832031 43.632812 23.832031 43.515625 Z M 23.832031 43.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 23.039062 47.960938 C 23.039062 47.84375 22.945312 47.75 22.828125 47.75 C 22.710938 47.75 22.617188 47.84375 22.617188 47.960938 C 22.617188 48.078125 22.710938 48.171875 22.828125 48.171875 C 22.945312 48.171875 23.039062 48.078125 23.039062 47.960938 Z M 23.039062 47.960938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.046875 45.84375 C 20.046875 45.726562 19.953125 45.632812 19.835938 45.632812 C 19.71875 45.632812 19.625 45.726562 19.625 45.84375 C 19.625 45.960938 19.71875 46.054688 19.835938 46.054688 C 19.953125 46.054688 20.046875 45.960938 20.046875 45.84375 Z M 20.046875 45.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.953125 45.847656 C 22.953125 45.730469 22.859375 45.636719 22.742188 45.636719 C 22.625 45.636719 22.53125 45.730469 22.53125 45.847656 C 22.53125 45.964844 22.625 46.058594 22.742188 46.058594 C 22.859375 46.058594 22.953125 45.964844 22.953125 45.847656 Z M 22.953125 45.847656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 21.710938 47.363281 C 21.710938 47.246094 21.617188 47.152344 21.5 47.152344 C 21.382812 47.152344 21.289062 47.246094 21.289062 47.363281 C 21.289062 47.480469 21.382812 47.574219 21.5 47.574219 C 21.617188 47.574219 21.710938 47.480469 21.710938 47.363281 Z M 21.710938 47.363281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.746094 43.175781 C 19.746094 43.058594 19.652344 42.964844 19.535156 42.964844 C 19.417969 42.964844 19.324219 43.058594 19.324219 43.175781 C 19.324219 43.292969 19.417969 43.386719 19.535156 43.386719 C 19.652344 43.386719 19.746094 43.292969 19.746094 43.175781 Z M 19.746094 43.175781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 21.015625 40.566406 C 21.015625 40.449219 20.921875 40.355469 20.804688 40.355469 C 20.6875 40.355469 20.59375 40.449219 20.59375 40.566406 C 20.59375 40.683594 20.6875 40.777344 20.804688 40.777344 C 20.921875 40.777344 21.015625 40.683594 21.015625 40.566406 Z M 21.015625 40.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.003906 37.71875 C 19.003906 37.601562 18.910156 37.507812 18.792969 37.507812 C 18.675781 37.507812 18.582031 37.601562 18.582031 37.71875 C 18.582031 37.835938 18.675781 37.929688 18.792969 37.929688 C 18.910156 37.929688 19.003906 37.835938 19.003906 37.71875 Z M 19.003906 37.71875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 17.058594 36.613281 C 17.058594 36.496094 16.964844 36.402344 16.847656 36.402344 C 16.730469 36.402344 16.636719 36.496094 16.636719 36.613281 C 16.636719 36.730469 16.730469 36.824219 16.847656 36.824219 C 16.964844 36.824219 17.058594 36.730469 17.058594 36.613281 Z M 17.058594 36.613281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 17.375 38.722656 C 17.375 38.605469 17.28125 38.511719 17.164062 38.511719 C 17.046875 38.511719 16.953125 38.605469 16.953125 38.722656 C 16.953125 38.839844 17.046875 38.933594 17.164062 38.933594 C 17.28125 38.933594 17.375 38.839844 17.375 38.722656 Z M 17.375 38.722656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 13.847656 41.800781 C 13.847656 41.683594 13.753906 41.589844 13.636719 41.589844 C 13.519531 41.589844 13.425781 41.683594 13.425781 41.800781 C 13.425781 41.917969 13.519531 42.011719 13.636719 42.011719 C 13.753906 42.011719 13.847656 41.917969 13.847656 41.800781 Z M 13.847656 41.800781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 13.046875 38.378906 C 13.046875 38.261719 12.953125 38.167969 12.835938 38.167969 C 12.71875 38.167969 12.625 38.261719 12.625 38.378906 C 12.625 38.496094 12.71875 38.589844 12.835938 38.589844 C 12.953125 38.589844 13.046875 38.496094 13.046875 38.378906 Z M 13.046875 38.378906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 10.394531 35.753906 C 10.394531 35.636719 10.300781 35.542969 10.183594 35.542969 C 10.066406 35.542969 9.972656 35.636719 9.972656 35.753906 C 9.972656 35.871094 10.066406 35.964844 10.183594 35.964844 C 10.300781 35.964844 10.394531 35.871094 10.394531 35.753906 Z M 10.394531 35.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 10.039062 34.839844 C 10.039062 34.722656 9.945312 34.628906 9.828125 34.628906 C 9.710938 34.628906 9.617188 34.722656 9.617188 34.839844 C 9.617188 34.957031 9.710938 35.050781 9.828125 35.050781 C 9.945312 35.050781 10.039062 34.957031 10.039062 34.839844 Z M 10.039062 34.839844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 7.457031 39.066406 C 7.457031 38.949219 7.363281 38.855469 7.246094 38.855469 C 7.128906 38.855469 7.035156 38.949219 7.035156 39.066406 C 7.035156 39.183594 7.128906 39.277344 7.246094 39.277344 C 7.363281 39.277344 7.457031 39.183594 7.457031 39.066406 Z M 7.457031 39.066406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 5.171875 43.558594 C 5.171875 43.441406 5.078125 43.347656 4.960938 43.347656 C 4.84375 43.347656 4.75 43.441406 4.75 43.558594 C 4.75 43.675781 4.84375 43.769531 4.960938 43.769531 C 5.078125 43.769531 5.171875 43.675781 5.171875 43.558594 Z M 5.171875 43.558594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 4.988281 44.054688 C 4.988281 43.9375 4.894531 43.84375 4.777344 43.84375 C 4.660156 43.84375 4.566406 43.9375 4.566406 44.054688 C 4.566406 44.171875 4.660156 44.265625 4.777344 44.265625 C 4.894531 44.265625 4.988281 44.171875 4.988281 44.054688 Z M 4.988281 44.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 9.972656 44.332031 C 9.972656 44.214844 9.878906 44.121094 9.761719 44.121094 C 9.644531 44.121094 9.550781 44.214844 9.550781 44.332031 C 9.550781 44.449219 9.644531 44.542969 9.761719 44.542969 C 9.878906 44.542969 9.972656 44.449219 9.972656 44.332031 Z M 9.972656 44.332031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 10.191406 43.117188 C 10.191406 43 10.097656 42.90625 9.980469 42.90625 C 9.863281 42.90625 9.769531 43 9.769531 43.117188 C 9.769531 43.234375 9.863281 43.328125 9.980469 43.328125 C 10.097656 43.328125 10.191406 43.234375 10.191406 43.117188 Z M 10.191406 43.117188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 8.558594 45.058594 C 8.558594 44.941406 8.464844 44.847656 8.347656 44.847656 C 8.230469 44.847656 8.136719 44.941406 8.136719 45.058594 C 8.136719 45.175781 8.230469 45.269531 8.347656 45.269531 C 8.464844 45.269531 8.558594 45.175781 8.558594 45.058594 Z M 8.558594 45.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 5.238281 45.351562 C 5.238281 45.234375 5.144531 45.140625 5.027344 45.140625 C 4.910156 45.140625 4.816406 45.234375 4.816406 45.351562 C 4.816406 45.46875 4.910156 45.5625 5.027344 45.5625 C 5.144531 45.5625 5.238281 45.46875 5.238281 45.351562 Z M 5.238281 45.351562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 6.214844 47.710938 C 6.214844 47.59375 6.121094 47.5 6.003906 47.5 C 5.886719 47.5 5.792969 47.59375 5.792969 47.710938 C 5.792969 47.828125 5.886719 47.921875 6.003906 47.921875 C 6.121094 47.921875 6.214844 47.828125 6.214844 47.710938 Z M 6.214844 47.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 5.910156 49.65625 C 5.910156 49.539062 5.816406 49.445312 5.699219 49.445312 C 5.582031 49.445312 5.488281 49.539062 5.488281 49.65625 C 5.488281 49.773438 5.582031 49.867188 5.699219 49.867188 C 5.816406 49.867188 5.910156 49.773438 5.910156 49.65625 Z M 5.910156 49.65625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 5.742188 51.566406 C 5.742188 51.449219 5.648438 51.355469 5.53125 51.355469 C 5.414062 51.355469 5.320312 51.449219 5.320312 51.566406 C 5.320312 51.683594 5.414062 51.777344 5.53125 51.777344 C 5.648438 51.777344 5.742188 51.683594 5.742188 51.566406 Z M 5.742188 51.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 5.074219 55.238281 C 5.074219 55.121094 4.980469 55.027344 4.863281 55.027344 C 4.746094 55.027344 4.652344 55.121094 4.652344 55.238281 C 4.652344 55.355469 4.746094 55.449219 4.863281 55.449219 C 4.980469 55.449219 5.074219 55.355469 5.074219 55.238281 Z M 5.074219 55.238281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 6.625 52.152344 C 6.625 52.035156 6.53125 51.941406 6.414062 51.941406 C 6.296875 51.941406 6.203125 52.035156 6.203125 52.152344 C 6.203125 52.269531 6.296875 52.363281 6.414062 52.363281 C 6.53125 52.363281 6.625 52.269531 6.625 52.152344 Z M 6.625 52.152344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 7.113281 47.859375 C 7.113281 47.742188 7.019531 47.648438 6.902344 47.648438 C 6.785156 47.648438 6.691406 47.742188 6.691406 47.859375 C 6.691406 47.976562 6.785156 48.070312 6.902344 48.070312 C 7.019531 48.070312 7.113281 47.976562 7.113281 47.859375 Z M 7.113281 47.859375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 6.851562 49.050781 C 6.851562 48.933594 6.757812 48.839844 6.640625 48.839844 C 6.523438 48.839844 6.429688 48.933594 6.429688 49.050781 C 6.429688 49.167969 6.523438 49.261719 6.640625 49.261719 C 6.757812 49.261719 6.851562 49.167969 6.851562 49.050781 Z M 6.851562 49.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 8.058594 48.730469 C 8.058594 48.613281 7.964844 48.519531 7.847656 48.519531 C 7.730469 48.519531 7.636719 48.613281 7.636719 48.730469 C 7.636719 48.847656 7.730469 48.941406 7.847656 48.941406 C 7.964844 48.941406 8.058594 48.847656 8.058594 48.730469 Z M 8.058594 48.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 7.003906 49.207031 C 7.003906 49.089844 6.910156 48.996094 6.792969 48.996094 C 6.675781 48.996094 6.582031 49.089844 6.582031 49.207031 C 6.582031 49.324219 6.675781 49.417969 6.792969 49.417969 C 6.910156 49.417969 7.003906 49.324219 7.003906 49.207031 Z M 7.003906 49.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 4.15625 50.546875 C 4.15625 50.429688 4.0625 50.335938 3.945312 50.335938 C 3.828125 50.335938 3.734375 50.429688 3.734375 50.546875 C 3.734375 50.664062 3.828125 50.757812 3.945312 50.757812 C 4.0625 50.757812 4.15625 50.664062 4.15625 50.546875 Z M 4.15625 50.546875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 6.039062 51.753906 C 6.039062 51.636719 5.945312 51.542969 5.828125 51.542969 C 5.710938 51.542969 5.617188 51.636719 5.617188 51.753906 C 5.617188 51.871094 5.710938 51.964844 5.828125 51.964844 C 5.945312 51.964844 6.039062 51.871094 6.039062 51.753906 Z M 6.039062 51.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 7.292969 52.429688 C 7.292969 52.3125 7.199219 52.21875 7.082031 52.21875 C 6.964844 52.21875 6.871094 52.3125 6.871094 52.429688 C 6.871094 52.546875 6.964844 52.640625 7.082031 52.640625 C 7.199219 52.640625 7.292969 52.546875 7.292969 52.429688 Z M 7.292969 52.429688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 7.246094 55.070312 C 7.246094 54.953125 7.152344 54.859375 7.035156 54.859375 C 6.917969 54.859375 6.824219 54.953125 6.824219 55.070312 C 6.824219 55.1875 6.917969 55.28125 7.035156 55.28125 C 7.152344 55.28125 7.246094 55.1875 7.246094 55.070312 Z M 7.246094 55.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 1.6875 57.882812 C 1.6875 57.765625 1.59375 57.671875 1.476562 57.671875 C 1.359375 57.671875 1.265625 57.765625 1.265625 57.882812 C 1.265625 58 1.359375 58.09375 1.476562 58.09375 C 1.59375 58.09375 1.6875 58 1.6875 57.882812 Z M 1.6875 57.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 0.417969 57.550781 C 0.417969 57.433594 0.324219 57.339844 0.207031 57.339844 C 0.0898438 57.339844 -0.00390625 57.433594 -0.00390625 57.550781 C -0.00390625 57.667969 0.0898438 57.761719 0.207031 57.761719 C 0.324219 57.761719 0.417969 57.667969 0.417969 57.550781 Z M 0.417969 57.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 3.464844 60.511719 C 3.464844 60.394531 3.371094 60.300781 3.253906 60.300781 C 3.136719 60.300781 3.042969 60.394531 3.042969 60.511719 C 3.042969 60.628906 3.136719 60.722656 3.253906 60.722656 C 3.371094 60.722656 3.464844 60.628906 3.464844 60.511719 Z M 3.464844 60.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 2.574219 62.285156 C 2.574219 62.167969 2.480469 62.074219 2.363281 62.074219 C 2.246094 62.074219 2.152344 62.167969 2.152344 62.285156 C 2.152344 62.402344 2.246094 62.496094 2.363281 62.496094 C 2.480469 62.496094 2.574219 62.402344 2.574219 62.285156 Z M 2.574219 62.285156 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 3 64.605469 C 3 64.488281 2.90625 64.394531 2.789062 64.394531 C 2.671875 64.394531 2.578125 64.488281 2.578125 64.605469 C 2.578125 64.722656 2.671875 64.816406 2.789062 64.816406 C 2.90625 64.816406 3 64.722656 3 64.605469 Z M 3 64.605469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 5.195312 67.632812 C 5.195312 67.515625 5.101562 67.421875 4.984375 67.421875 C 4.867188 67.421875 4.773438 67.515625 4.773438 67.632812 C 4.773438 67.75 4.867188 67.84375 4.984375 67.84375 C 5.101562 67.84375 5.195312 67.75 5.195312 67.632812 Z M 5.195312 67.632812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 3.265625 68.773438 C 3.265625 68.65625 3.171875 68.5625 3.054688 68.5625 C 2.9375 68.5625 2.84375 68.65625 2.84375 68.773438 C 2.84375 68.890625 2.9375 68.984375 3.054688 68.984375 C 3.171875 68.984375 3.265625 68.890625 3.265625 68.773438 Z M 3.265625 68.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 2.886719 65.667969 C 2.886719 65.550781 2.792969 65.457031 2.675781 65.457031 C 2.558594 65.457031 2.464844 65.550781 2.464844 65.667969 C 2.464844 65.785156 2.558594 65.878906 2.675781 65.878906 C 2.792969 65.878906 2.886719 65.785156 2.886719 65.667969 Z M 2.886719 65.667969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 2.753906 61.792969 C 2.753906 61.675781 2.660156 61.582031 2.542969 61.582031 C 2.425781 61.582031 2.332031 61.675781 2.332031 61.792969 C 2.332031 61.910156 2.425781 62.003906 2.542969 62.003906 C 2.660156 62.003906 2.753906 61.910156 2.753906 61.792969 Z M 2.753906 61.792969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 2.445312 58.496094 C 2.445312 58.378906 2.351562 58.285156 2.234375 58.285156 C 2.117188 58.285156 2.023438 58.378906 2.023438 58.496094 C 2.023438 58.613281 2.117188 58.707031 2.234375 58.707031 C 2.351562 58.707031 2.445312 58.613281 2.445312 58.496094 Z M 2.445312 58.496094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 2.738281 55.710938 C 2.738281 55.59375 2.644531 55.5 2.527344 55.5 C 2.410156 55.5 2.316406 55.59375 2.316406 55.710938 C 2.316406 55.828125 2.410156 55.921875 2.527344 55.921875 C 2.644531 55.921875 2.738281 55.828125 2.738281 55.710938 Z M 2.738281 55.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 1.777344 57.757812 C 1.777344 57.640625 1.683594 57.546875 1.566406 57.546875 C 1.449219 57.546875 1.355469 57.640625 1.355469 57.757812 C 1.355469 57.875 1.449219 57.96875 1.566406 57.96875 C 1.683594 57.96875 1.777344 57.875 1.777344 57.757812 Z M 1.777344 57.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 1.890625 56.023438 C 1.890625 55.90625 1.796875 55.8125 1.679688 55.8125 C 1.5625 55.8125 1.46875 55.90625 1.46875 56.023438 C 1.46875 56.140625 1.5625 56.234375 1.679688 56.234375 C 1.796875 56.234375 1.890625 56.140625 1.890625 56.023438 Z M 1.890625 56.023438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 3.171875 54.996094 C 3.171875 54.878906 3.078125 54.785156 2.960938 54.785156 C 2.84375 54.785156 2.75 54.878906 2.75 54.996094 C 2.75 55.113281 2.84375 55.207031 2.960938 55.207031 C 3.078125 55.207031 3.171875 55.113281 3.171875 54.996094 Z M 3.171875 54.996094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 5.46875 55.113281 C 5.46875 54.996094 5.375 54.902344 5.257812 54.902344 C 5.140625 54.902344 5.046875 54.996094 5.046875 55.113281 C 5.046875 55.230469 5.140625 55.324219 5.257812 55.324219 C 5.375 55.324219 5.46875 55.230469 5.46875 55.113281 Z M 5.46875 55.113281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 3.957031 54.308594 C 3.957031 54.191406 3.863281 54.097656 3.746094 54.097656 C 3.628906 54.097656 3.535156 54.191406 3.535156 54.308594 C 3.535156 54.425781 3.628906 54.519531 3.746094 54.519531 C 3.863281 54.519531 3.957031 54.425781 3.957031 54.308594 Z M 3.957031 54.308594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 6.71875 53.070312 C 6.71875 52.953125 6.625 52.859375 6.507812 52.859375 C 6.390625 52.859375 6.296875 52.953125 6.296875 53.070312 C 6.296875 53.1875 6.390625 53.28125 6.507812 53.28125 C 6.625 53.28125 6.71875 53.1875 6.71875 53.070312 Z M 6.71875 53.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 8.867188 50.058594 C 8.867188 49.941406 8.773438 49.847656 8.65625 49.847656 C 8.539062 49.847656 8.445312 49.941406 8.445312 50.058594 C 8.445312 50.175781 8.539062 50.269531 8.65625 50.269531 C 8.773438 50.269531 8.867188 50.175781 8.867188 50.058594 Z M 8.867188 50.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 7.617188 47.394531 C 7.617188 47.277344 7.523438 47.183594 7.40625 47.183594 C 7.289062 47.183594 7.195312 47.277344 7.195312 47.394531 C 7.195312 47.511719 7.289062 47.605469 7.40625 47.605469 C 7.523438 47.605469 7.617188 47.511719 7.617188 47.394531 Z M 7.617188 47.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 9.605469 46.863281 C 9.605469 46.746094 9.511719 46.652344 9.394531 46.652344 C 9.277344 46.652344 9.183594 46.746094 9.183594 46.863281 C 9.183594 46.980469 9.277344 47.074219 9.394531 47.074219 C 9.511719 47.074219 9.605469 46.980469 9.605469 46.863281 Z M 9.605469 46.863281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 9.871094 48.988281 C 9.871094 48.871094 9.777344 48.777344 9.660156 48.777344 C 9.542969 48.777344 9.449219 48.871094 9.449219 48.988281 C 9.449219 49.105469 9.542969 49.199219 9.660156 49.199219 C 9.777344 49.199219 9.871094 49.105469 9.871094 48.988281 Z M 9.871094 48.988281 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 8.726562 48.277344 C 8.726562 48.160156 8.632812 48.066406 8.515625 48.066406 C 8.398438 48.066406 8.304688 48.160156 8.304688 48.277344 C 8.304688 48.394531 8.398438 48.488281 8.515625 48.488281 C 8.632812 48.488281 8.726562 48.394531 8.726562 48.277344 Z M 8.726562 48.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 9.035156 50.277344 C 9.035156 50.160156 8.941406 50.066406 8.824219 50.066406 C 8.707031 50.066406 8.613281 50.160156 8.613281 50.277344 C 8.613281 50.394531 8.707031 50.488281 8.824219 50.488281 C 8.941406 50.488281 9.035156 50.394531 9.035156 50.277344 Z M 9.035156 50.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 8.65625 53.707031 C 8.65625 53.589844 8.5625 53.496094 8.445312 53.496094 C 8.328125 53.496094 8.234375 53.589844 8.234375 53.707031 C 8.234375 53.824219 8.328125 53.917969 8.445312 53.917969 C 8.5625 53.917969 8.65625 53.824219 8.65625 53.707031 Z M 8.65625 53.707031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 9.949219 52.058594 C 9.949219 51.941406 9.855469 51.847656 9.738281 51.847656 C 9.621094 51.847656 9.527344 51.941406 9.527344 52.058594 C 9.527344 52.175781 9.621094 52.269531 9.738281 52.269531 C 9.855469 52.269531 9.949219 52.175781 9.949219 52.058594 Z M 9.949219 52.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 8.496094 51.804688 C 8.496094 51.6875 8.402344 51.59375 8.285156 51.59375 C 8.167969 51.59375 8.074219 51.6875 8.074219 51.804688 C 8.074219 51.921875 8.167969 52.015625 8.285156 52.015625 C 8.402344 52.015625 8.496094 51.921875 8.496094 51.804688 Z M 8.496094 51.804688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 9.636719 52.382812 C 9.636719 52.265625 9.542969 52.171875 9.425781 52.171875 C 9.308594 52.171875 9.214844 52.265625 9.214844 52.382812 C 9.214844 52.5 9.308594 52.59375 9.425781 52.59375 C 9.542969 52.59375 9.636719 52.5 9.636719 52.382812 Z M 9.636719 52.382812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 14.796875 51.527344 C 14.796875 51.410156 14.703125 51.316406 14.585938 51.316406 C 14.46875 51.316406 14.375 51.410156 14.375 51.527344 C 14.375 51.644531 14.46875 51.738281 14.585938 51.738281 C 14.703125 51.738281 14.796875 51.644531 14.796875 51.527344 Z M 14.796875 51.527344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 14.207031 48.773438 C 14.207031 48.65625 14.113281 48.5625 13.996094 48.5625 C 13.878906 48.5625 13.785156 48.65625 13.785156 48.773438 C 13.785156 48.890625 13.878906 48.984375 13.996094 48.984375 C 14.113281 48.984375 14.207031 48.890625 14.207031 48.773438 Z M 14.207031 48.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 16.023438 54.007812 C 16.023438 53.890625 15.929688 53.796875 15.8125 53.796875 C 15.695312 53.796875 15.601562 53.890625 15.601562 54.007812 C 15.601562 54.125 15.695312 54.21875 15.8125 54.21875 C 15.929688 54.21875 16.023438 54.125 16.023438 54.007812 Z M 16.023438 54.007812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 15.324219 54.324219 C 15.324219 54.207031 15.230469 54.113281 15.113281 54.113281 C 14.996094 54.113281 14.902344 54.207031 14.902344 54.324219 C 14.902344 54.441406 14.996094 54.535156 15.113281 54.535156 C 15.230469 54.535156 15.324219 54.441406 15.324219 54.324219 Z M 15.324219 54.324219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 14.769531 55.617188 C 14.769531 55.5 14.675781 55.40625 14.558594 55.40625 C 14.441406 55.40625 14.347656 55.5 14.347656 55.617188 C 14.347656 55.734375 14.441406 55.828125 14.558594 55.828125 C 14.675781 55.828125 14.769531 55.734375 14.769531 55.617188 Z M 14.769531 55.617188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 14.671875 55.757812 C 14.671875 55.640625 14.578125 55.546875 14.460938 55.546875 C 14.34375 55.546875 14.25 55.640625 14.25 55.757812 C 14.25 55.875 14.34375 55.96875 14.460938 55.96875 C 14.578125 55.96875 14.671875 55.875 14.671875 55.757812 Z M 14.671875 55.757812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 11.328125 58.609375 C 11.328125 58.492188 11.234375 58.398438 11.117188 58.398438 C 11 58.398438 10.90625 58.492188 10.90625 58.609375 C 10.90625 58.726562 11 58.820312 11.117188 58.820312 C 11.234375 58.820312 11.328125 58.726562 11.328125 58.609375 Z M 11.328125 58.609375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 8.945312 59.90625 C 8.945312 59.789062 8.851562 59.695312 8.734375 59.695312 C 8.617188 59.695312 8.523438 59.789062 8.523438 59.90625 C 8.523438 60.023438 8.617188 60.117188 8.734375 60.117188 C 8.851562 60.117188 8.945312 60.023438 8.945312 59.90625 Z M 8.945312 59.90625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 9.15625 55.511719 C 9.15625 55.394531 9.0625 55.300781 8.945312 55.300781 C 8.828125 55.300781 8.734375 55.394531 8.734375 55.511719 C 8.734375 55.628906 8.828125 55.722656 8.945312 55.722656 C 9.0625 55.722656 9.15625 55.628906 9.15625 55.511719 Z M 9.15625 55.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 8.589844 54.164062 C 8.589844 54.046875 8.496094 53.953125 8.378906 53.953125 C 8.261719 53.953125 8.167969 54.046875 8.167969 54.164062 C 8.167969 54.28125 8.261719 54.375 8.378906 54.375 C 8.496094 54.375 8.589844 54.28125 8.589844 54.164062 Z M 8.589844 54.164062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 9.617188 54.882812 C 9.617188 54.765625 9.523438 54.671875 9.40625 54.671875 C 9.289062 54.671875 9.195312 54.765625 9.195312 54.882812 C 9.195312 55 9.289062 55.09375 9.40625 55.09375 C 9.523438 55.09375 9.617188 55 9.617188 54.882812 Z M 9.617188 54.882812 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 12.9375 58.050781 C 12.9375 57.933594 12.84375 57.839844 12.726562 57.839844 C 12.609375 57.839844 12.515625 57.933594 12.515625 58.050781 C 12.515625 58.167969 12.609375 58.261719 12.726562 58.261719 C 12.84375 58.261719 12.9375 58.167969 12.9375 58.050781 Z M 12.9375 58.050781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 14.535156 57.054688 C 14.535156 56.9375 14.441406 56.84375 14.324219 56.84375 C 14.207031 56.84375 14.113281 56.9375 14.113281 57.054688 C 14.113281 57.171875 14.207031 57.265625 14.324219 57.265625 C 14.441406 57.265625 14.535156 57.171875 14.535156 57.054688 Z M 14.535156 57.054688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 19.027344 58.339844 C 19.027344 58.222656 18.933594 58.128906 18.816406 58.128906 C 18.699219 58.128906 18.605469 58.222656 18.605469 58.339844 C 18.605469 58.457031 18.699219 58.550781 18.816406 58.550781 C 18.933594 58.550781 19.027344 58.457031 19.027344 58.339844 Z M 19.027344 58.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 20.183594 57.699219 C 20.183594 57.582031 20.089844 57.488281 19.972656 57.488281 C 19.855469 57.488281 19.761719 57.582031 19.761719 57.699219 C 19.761719 57.816406 19.855469 57.910156 19.972656 57.910156 C 20.089844 57.910156 20.183594 57.816406 20.183594 57.699219 Z M 20.183594 57.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 21.09375 57.070312 C 21.09375 56.953125 21 56.859375 20.882812 56.859375 C 20.765625 56.859375 20.671875 56.953125 20.671875 57.070312 C 20.671875 57.1875 20.765625 57.28125 20.882812 57.28125 C 21 57.28125 21.09375 57.1875 21.09375 57.070312 Z M 21.09375 57.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.132812 59.933594 C 22.132812 59.816406 22.039062 59.722656 21.921875 59.722656 C 21.804688 59.722656 21.710938 59.816406 21.710938 59.933594 C 21.710938 60.050781 21.804688 60.144531 21.921875 60.144531 C 22.039062 60.144531 22.132812 60.050781 22.132812 59.933594 Z M 22.132812 59.933594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.324219 60.753906 C 26.324219 60.636719 26.230469 60.542969 26.113281 60.542969 C 25.996094 60.542969 25.902344 60.636719 25.902344 60.753906 C 25.902344 60.871094 25.996094 60.964844 26.113281 60.964844 C 26.230469 60.964844 26.324219 60.871094 26.324219 60.753906 Z M 26.324219 60.753906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 22.578125 60.703125 C 22.578125 60.585938 22.484375 60.492188 22.367188 60.492188 C 22.25 60.492188 22.15625 60.585938 22.15625 60.703125 C 22.15625 60.820312 22.25 60.914062 22.367188 60.914062 C 22.484375 60.914062 22.578125 60.820312 22.578125 60.703125 Z M 22.578125 60.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 24.105469 58.078125 C 24.105469 57.960938 24.011719 57.867188 23.894531 57.867188 C 23.777344 57.867188 23.683594 57.960938 23.683594 58.078125 C 23.683594 58.195312 23.777344 58.289062 23.894531 58.289062 C 24.011719 58.289062 24.105469 58.195312 24.105469 58.078125 Z M 24.105469 58.078125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 25.863281 59.9375 C 25.863281 59.820312 25.769531 59.726562 25.652344 59.726562 C 25.535156 59.726562 25.441406 59.820312 25.441406 59.9375 C 25.441406 60.054688 25.535156 60.148438 25.652344 60.148438 C 25.769531 60.148438 25.863281 60.054688 25.863281 59.9375 Z M 25.863281 59.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 28.089844 57.550781 C 28.089844 57.433594 27.996094 57.339844 27.878906 57.339844 C 27.761719 57.339844 27.667969 57.433594 27.667969 57.550781 C 27.667969 57.667969 27.761719 57.761719 27.878906 57.761719 C 27.996094 57.761719 28.089844 57.667969 28.089844 57.550781 Z M 28.089844 57.550781 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.605469 60.699219 C 26.605469 60.582031 26.511719 60.488281 26.394531 60.488281 C 26.277344 60.488281 26.183594 60.582031 26.183594 60.699219 C 26.183594 60.816406 26.277344 60.910156 26.394531 60.910156 C 26.511719 60.910156 26.605469 60.816406 26.605469 60.699219 Z M 26.605469 60.699219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 26.964844 59.441406 C 26.964844 59.324219 26.871094 59.230469 26.753906 59.230469 C 26.636719 59.230469 26.542969 59.324219 26.542969 59.441406 C 26.542969 59.558594 26.636719 59.652344 26.753906 59.652344 C 26.871094 59.652344 26.964844 59.558594 26.964844 59.441406 Z M 26.964844 59.441406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 29.640625 57.703125 C 29.640625 57.585938 29.546875 57.492188 29.429688 57.492188 C 29.3125 57.492188 29.21875 57.585938 29.21875 57.703125 C 29.21875 57.820312 29.3125 57.914062 29.429688 57.914062 C 29.546875 57.914062 29.640625 57.820312 29.640625 57.703125 Z M 29.640625 57.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.535156 58.601562 C 34.535156 58.484375 34.441406 58.390625 34.324219 58.390625 C 34.207031 58.390625 34.113281 58.484375 34.113281 58.601562 C 34.113281 58.71875 34.207031 58.8125 34.324219 58.8125 C 34.441406 58.8125 34.535156 58.71875 34.535156 58.601562 Z M 34.535156 58.601562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.640625 55.058594 C 31.640625 54.941406 31.546875 54.847656 31.429688 54.847656 C 31.3125 54.847656 31.21875 54.941406 31.21875 55.058594 C 31.21875 55.175781 31.3125 55.269531 31.429688 55.269531 C 31.546875 55.269531 31.640625 55.175781 31.640625 55.058594 Z M 31.640625 55.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.71875 56.230469 C 31.71875 56.113281 31.625 56.019531 31.507812 56.019531 C 31.390625 56.019531 31.296875 56.113281 31.296875 56.230469 C 31.296875 56.347656 31.390625 56.441406 31.507812 56.441406 C 31.625 56.441406 31.71875 56.347656 31.71875 56.230469 Z M 31.71875 56.230469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.921875 54.492188 C 30.921875 54.375 30.828125 54.28125 30.710938 54.28125 C 30.59375 54.28125 30.5 54.375 30.5 54.492188 C 30.5 54.609375 30.59375 54.703125 30.710938 54.703125 C 30.828125 54.703125 30.921875 54.609375 30.921875 54.492188 Z M 30.921875 54.492188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 30.765625 50.394531 C 30.765625 50.277344 30.671875 50.183594 30.554688 50.183594 C 30.4375 50.183594 30.34375 50.277344 30.34375 50.394531 C 30.34375 50.511719 30.4375 50.605469 30.554688 50.605469 C 30.671875 50.605469 30.765625 50.511719 30.765625 50.394531 Z M 30.765625 50.394531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 32.859375 48.101562 C 32.859375 47.984375 32.765625 47.890625 32.648438 47.890625 C 32.53125 47.890625 32.4375 47.984375 32.4375 48.101562 C 32.4375 48.21875 32.53125 48.3125 32.648438 48.3125 C 32.765625 48.3125 32.859375 48.21875 32.859375 48.101562 Z M 32.859375 48.101562 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 34.421875 51.261719 C 34.421875 51.144531 34.328125 51.050781 34.210938 51.050781 C 34.09375 51.050781 34 51.144531 34 51.261719 C 34 51.378906 34.09375 51.472656 34.210938 51.472656 C 34.328125 51.472656 34.421875 51.378906 34.421875 51.261719 Z M 34.421875 51.261719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.144531 50.597656 C 36.144531 50.480469 36.050781 50.386719 35.933594 50.386719 C 35.816406 50.386719 35.722656 50.480469 35.722656 50.597656 C 35.722656 50.714844 35.816406 50.808594 35.933594 50.808594 C 36.050781 50.808594 36.144531 50.714844 36.144531 50.597656 Z M 36.144531 50.597656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 31.589844 52.730469 C 31.589844 52.613281 31.496094 52.519531 31.378906 52.519531 C 31.261719 52.519531 31.167969 52.613281 31.167969 52.730469 C 31.167969 52.847656 31.261719 52.941406 31.378906 52.941406 C 31.496094 52.941406 31.589844 52.847656 31.589844 52.730469 Z M 31.589844 52.730469 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.769531 51.195312 C 36.769531 51.078125 36.675781 50.984375 36.558594 50.984375 C 36.441406 50.984375 36.347656 51.078125 36.347656 51.195312 C 36.347656 51.3125 36.441406 51.40625 36.558594 51.40625 C 36.675781 51.40625 36.769531 51.3125 36.769531 51.195312 Z M 36.769531 51.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.777344 51.292969 C 37.777344 51.175781 37.683594 51.082031 37.566406 51.082031 C 37.449219 51.082031 37.355469 51.175781 37.355469 51.292969 C 37.355469 51.410156 37.449219 51.503906 37.566406 51.503906 C 37.683594 51.503906 37.777344 51.410156 37.777344 51.292969 Z M 37.777344 51.292969 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.890625 54.011719 C 40.890625 53.894531 40.796875 53.800781 40.679688 53.800781 C 40.5625 53.800781 40.46875 53.894531 40.46875 54.011719 C 40.46875 54.128906 40.5625 54.222656 40.679688 54.222656 C 40.796875 54.222656 40.890625 54.128906 40.890625 54.011719 Z M 40.890625 54.011719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.097656 51.742188 C 44.097656 51.625 44.003906 51.53125 43.886719 51.53125 C 43.769531 51.53125 43.675781 51.625 43.675781 51.742188 C 43.675781 51.859375 43.769531 51.953125 43.886719 51.953125 C 44.003906 51.953125 44.097656 51.859375 44.097656 51.742188 Z M 44.097656 51.742188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.042969 50.769531 C 42.042969 50.652344 41.949219 50.558594 41.832031 50.558594 C 41.714844 50.558594 41.621094 50.652344 41.621094 50.769531 C 41.621094 50.886719 41.714844 50.980469 41.832031 50.980469 C 41.949219 50.980469 42.042969 50.886719 42.042969 50.769531 Z M 42.042969 50.769531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.332031 52.695312 C 44.332031 52.578125 44.238281 52.484375 44.121094 52.484375 C 44.003906 52.484375 43.910156 52.578125 43.910156 52.695312 C 43.910156 52.8125 44.003906 52.90625 44.121094 52.90625 C 44.238281 52.90625 44.332031 52.8125 44.332031 52.695312 Z M 44.332031 52.695312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 41.949219 54.460938 C 41.949219 54.34375 41.855469 54.25 41.738281 54.25 C 41.621094 54.25 41.527344 54.34375 41.527344 54.460938 C 41.527344 54.578125 41.621094 54.671875 41.738281 54.671875 C 41.855469 54.671875 41.949219 54.578125 41.949219 54.460938 Z M 41.949219 54.460938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.394531 55.242188 C 46.394531 55.125 46.300781 55.03125 46.183594 55.03125 C 46.066406 55.03125 45.972656 55.125 45.972656 55.242188 C 45.972656 55.359375 46.066406 55.453125 46.183594 55.453125 C 46.300781 55.453125 46.394531 55.359375 46.394531 55.242188 Z M 46.394531 55.242188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.703125 55.519531 C 44.703125 55.402344 44.609375 55.308594 44.492188 55.308594 C 44.375 55.308594 44.28125 55.402344 44.28125 55.519531 C 44.28125 55.636719 44.375 55.730469 44.492188 55.730469 C 44.609375 55.730469 44.703125 55.636719 44.703125 55.519531 Z M 44.703125 55.519531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.394531 56.554688 C 46.394531 56.4375 46.300781 56.34375 46.183594 56.34375 C 46.066406 56.34375 45.972656 56.4375 45.972656 56.554688 C 45.972656 56.671875 46.066406 56.765625 46.183594 56.765625 C 46.300781 56.765625 46.394531 56.671875 46.394531 56.554688 Z M 46.394531 56.554688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.125 56.085938 C 46.125 55.96875 46.03125 55.875 45.914062 55.875 C 45.796875 55.875 45.703125 55.96875 45.703125 56.085938 C 45.703125 56.203125 45.796875 56.296875 45.914062 56.296875 C 46.03125 56.296875 46.125 56.203125 46.125 56.085938 Z M 46.125 56.085938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.570312 51.820312 C 44.570312 51.703125 44.476562 51.609375 44.359375 51.609375 C 44.242188 51.609375 44.148438 51.703125 44.148438 51.820312 C 44.148438 51.9375 44.242188 52.03125 44.359375 52.03125 C 44.476562 52.03125 44.570312 51.9375 44.570312 51.820312 Z M 44.570312 51.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 47.71875 49.992188 C 47.71875 49.875 47.625 49.78125 47.507812 49.78125 C 47.390625 49.78125 47.296875 49.875 47.296875 49.992188 C 47.296875 50.109375 47.390625 50.203125 47.507812 50.203125 C 47.625 50.203125 47.71875 50.109375 47.71875 49.992188 Z M 47.71875 49.992188 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.476562 51.566406 C 45.476562 51.449219 45.382812 51.355469 45.265625 51.355469 C 45.148438 51.355469 45.054688 51.449219 45.054688 51.566406 C 45.054688 51.683594 45.148438 51.777344 45.265625 51.777344 C 45.382812 51.777344 45.476562 51.683594 45.476562 51.566406 Z M 45.476562 51.566406 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.355469 54.234375 C 46.355469 54.117188 46.261719 54.023438 46.144531 54.023438 C 46.027344 54.023438 45.933594 54.117188 45.933594 54.234375 C 45.933594 54.351562 46.027344 54.445312 46.144531 54.445312 C 46.261719 54.445312 46.355469 54.351562 46.355469 54.234375 Z M 46.355469 54.234375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 46.621094 51.179688 C 46.621094 51.0625 46.527344 50.96875 46.410156 50.96875 C 46.292969 50.96875 46.199219 51.0625 46.199219 51.179688 C 46.199219 51.296875 46.292969 51.390625 46.410156 51.390625 C 46.527344 51.390625 46.621094 51.296875 46.621094 51.179688 Z M 46.621094 51.179688 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.640625 50.296875 C 44.640625 50.179688 44.546875 50.085938 44.429688 50.085938 C 44.3125 50.085938 44.21875 50.179688 44.21875 50.296875 C 44.21875 50.414062 44.3125 50.507812 44.429688 50.507812 C 44.546875 50.507812 44.640625 50.414062 44.640625 50.296875 Z M 44.640625 50.296875 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.039062 53.148438 C 44.039062 53.03125 43.945312 52.9375 43.828125 52.9375 C 43.710938 52.9375 43.617188 53.03125 43.617188 53.148438 C 43.617188 53.265625 43.710938 53.359375 43.828125 53.359375 C 43.945312 53.359375 44.039062 53.265625 44.039062 53.148438 Z M 44.039062 53.148438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.65625 51.820312 C 43.65625 51.703125 43.5625 51.609375 43.445312 51.609375 C 43.328125 51.609375 43.234375 51.703125 43.234375 51.820312 C 43.234375 51.9375 43.328125 52.03125 43.445312 52.03125 C 43.5625 52.03125 43.65625 51.9375 43.65625 51.820312 Z M 43.65625 51.820312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.152344 51.207031 C 44.152344 51.089844 44.058594 50.996094 43.941406 50.996094 C 43.824219 50.996094 43.730469 51.089844 43.730469 51.207031 C 43.730469 51.324219 43.824219 51.417969 43.941406 51.417969 C 44.058594 51.417969 44.152344 51.324219 44.152344 51.207031 Z M 44.152344 51.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 44.378906 50.644531 C 44.378906 50.527344 44.285156 50.433594 44.167969 50.433594 C 44.050781 50.433594 43.957031 50.527344 43.957031 50.644531 C 43.957031 50.761719 44.050781 50.855469 44.167969 50.855469 C 44.285156 50.855469 44.378906 50.761719 44.378906 50.644531 Z M 44.378906 50.644531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.996094 53.339844 C 45.996094 53.222656 45.902344 53.128906 45.785156 53.128906 C 45.667969 53.128906 45.574219 53.222656 45.574219 53.339844 C 45.574219 53.457031 45.667969 53.550781 45.785156 53.550781 C 45.902344 53.550781 45.996094 53.457031 45.996094 53.339844 Z M 45.996094 53.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 48.578125 53.773438 C 48.578125 53.65625 48.484375 53.5625 48.367188 53.5625 C 48.25 53.5625 48.15625 53.65625 48.15625 53.773438 C 48.15625 53.890625 48.25 53.984375 48.367188 53.984375 C 48.484375 53.984375 48.578125 53.890625 48.578125 53.773438 Z M 48.578125 53.773438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 45.671875 55.886719 C 45.671875 55.769531 45.578125 55.675781 45.460938 55.675781 C 45.34375 55.675781 45.25 55.769531 45.25 55.886719 C 45.25 56.003906 45.34375 56.097656 45.460938 56.097656 C 45.578125 56.097656 45.671875 56.003906 45.671875 55.886719 Z M 45.671875 55.886719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 43.820312 56.9375 C 43.820312 56.820312 43.726562 56.726562 43.609375 56.726562 C 43.492188 56.726562 43.398438 56.820312 43.398438 56.9375 C 43.398438 57.054688 43.492188 57.148438 43.609375 57.148438 C 43.726562 57.148438 43.820312 57.054688 43.820312 56.9375 Z M 43.820312 56.9375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.707031 55.253906 C 42.707031 55.136719 42.613281 55.042969 42.496094 55.042969 C 42.378906 55.042969 42.285156 55.136719 42.285156 55.253906 C 42.285156 55.371094 42.378906 55.464844 42.496094 55.464844 C 42.613281 55.464844 42.707031 55.371094 42.707031 55.253906 Z M 42.707031 55.253906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.070312 53.058594 C 40.070312 52.941406 39.976562 52.847656 39.859375 52.847656 C 39.742188 52.847656 39.648438 52.941406 39.648438 53.058594 C 39.648438 53.175781 39.742188 53.269531 39.859375 53.269531 C 39.976562 53.269531 40.070312 53.175781 40.070312 53.058594 Z M 40.070312 53.058594 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.851562 53.207031 C 39.851562 53.089844 39.757812 52.996094 39.640625 52.996094 C 39.523438 52.996094 39.429688 53.089844 39.429688 53.207031 C 39.429688 53.324219 39.523438 53.417969 39.640625 53.417969 C 39.757812 53.417969 39.851562 53.324219 39.851562 53.207031 Z M 39.851562 53.207031 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.953125 53.445312 C 38.953125 53.328125 38.859375 53.234375 38.742188 53.234375 C 38.625 53.234375 38.53125 53.328125 38.53125 53.445312 C 38.53125 53.5625 38.625 53.65625 38.742188 53.65625 C 38.859375 53.65625 38.953125 53.5625 38.953125 53.445312 Z M 38.953125 53.445312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.164062 53.320312 C 35.164062 53.203125 35.070312 53.109375 34.953125 53.109375 C 34.835938 53.109375 34.742188 53.203125 34.742188 53.320312 C 34.742188 53.4375 34.835938 53.53125 34.953125 53.53125 C 35.070312 53.53125 35.164062 53.4375 35.164062 53.320312 Z M 35.164062 53.320312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.625 54.710938 C 37.625 54.59375 37.53125 54.5 37.414062 54.5 C 37.296875 54.5 37.203125 54.59375 37.203125 54.710938 C 37.203125 54.828125 37.296875 54.921875 37.414062 54.921875 C 37.53125 54.921875 37.625 54.828125 37.625 54.710938 Z M 37.625 54.710938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.34375 55.5 C 36.34375 55.382812 36.25 55.289062 36.132812 55.289062 C 36.015625 55.289062 35.921875 55.382812 35.921875 55.5 C 35.921875 55.617188 36.015625 55.710938 36.132812 55.710938 C 36.25 55.710938 36.34375 55.617188 36.34375 55.5 Z M 36.34375 55.5 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.835938 54.277344 C 38.835938 54.160156 38.742188 54.066406 38.625 54.066406 C 38.507812 54.066406 38.414062 54.160156 38.414062 54.277344 C 38.414062 54.394531 38.507812 54.488281 38.625 54.488281 C 38.742188 54.488281 38.835938 54.394531 38.835938 54.277344 Z M 38.835938 54.277344 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.605469 53.898438 C 37.605469 53.78125 37.511719 53.6875 37.394531 53.6875 C 37.277344 53.6875 37.183594 53.78125 37.183594 53.898438 C 37.183594 54.015625 37.277344 54.109375 37.394531 54.109375 C 37.511719 54.109375 37.605469 54.015625 37.605469 53.898438 Z M 37.605469 53.898438 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.234375 54.84375 C 39.234375 54.726562 39.140625 54.632812 39.023438 54.632812 C 38.90625 54.632812 38.8125 54.726562 38.8125 54.84375 C 38.8125 54.960938 38.90625 55.054688 39.023438 55.054688 C 39.140625 55.054688 39.234375 54.960938 39.234375 54.84375 Z M 39.234375 54.84375 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.148438 54.824219 C 40.148438 54.707031 40.054688 54.613281 39.9375 54.613281 C 39.820312 54.613281 39.726562 54.707031 39.726562 54.824219 C 39.726562 54.941406 39.820312 55.035156 39.9375 55.035156 C 40.054688 55.035156 40.148438 54.941406 40.148438 54.824219 Z M 40.148438 54.824219 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 42.332031 55.746094 C 42.332031 55.628906 42.238281 55.535156 42.121094 55.535156 C 42.003906 55.535156 41.910156 55.628906 41.910156 55.746094 C 41.910156 55.863281 42.003906 55.957031 42.121094 55.957031 C 42.238281 55.957031 42.332031 55.863281 42.332031 55.746094 Z M 42.332031 55.746094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.894531 54.3125 C 39.894531 54.195312 39.800781 54.101562 39.683594 54.101562 C 39.566406 54.101562 39.472656 54.195312 39.472656 54.3125 C 39.472656 54.429688 39.566406 54.523438 39.683594 54.523438 C 39.800781 54.523438 39.894531 54.429688 39.894531 54.3125 Z M 39.894531 54.3125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.609375 51.070312 C 40.609375 50.953125 40.515625 50.859375 40.398438 50.859375 C 40.28125 50.859375 40.1875 50.953125 40.1875 51.070312 C 40.1875 51.1875 40.28125 51.28125 40.398438 51.28125 C 40.515625 51.28125 40.609375 51.1875 40.609375 51.070312 Z M 40.609375 51.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.445312 49.511719 C 39.445312 49.394531 39.351562 49.300781 39.234375 49.300781 C 39.117188 49.300781 39.023438 49.394531 39.023438 49.511719 C 39.023438 49.628906 39.117188 49.722656 39.234375 49.722656 C 39.351562 49.722656 39.445312 49.628906 39.445312 49.511719 Z M 39.445312 49.511719 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.910156 46.339844 C 39.910156 46.222656 39.816406 46.128906 39.699219 46.128906 C 39.582031 46.128906 39.488281 46.222656 39.488281 46.339844 C 39.488281 46.457031 39.582031 46.550781 39.699219 46.550781 C 39.816406 46.550781 39.910156 46.457031 39.910156 46.339844 Z M 39.910156 46.339844 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.511719 45.78125 C 40.511719 45.664062 40.417969 45.570312 40.300781 45.570312 C 40.183594 45.570312 40.089844 45.664062 40.089844 45.78125 C 40.089844 45.898438 40.183594 45.992188 40.300781 45.992188 C 40.417969 45.992188 40.511719 45.898438 40.511719 45.78125 Z M 40.511719 45.78125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.910156 44.25 C 39.910156 44.132812 39.816406 44.039062 39.699219 44.039062 C 39.582031 44.039062 39.488281 44.132812 39.488281 44.25 C 39.488281 44.367188 39.582031 44.460938 39.699219 44.460938 C 39.816406 44.460938 39.910156 44.367188 39.910156 44.25 Z M 39.910156 44.25 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.613281 40.503906 C 38.613281 40.386719 38.519531 40.292969 38.402344 40.292969 C 38.285156 40.292969 38.191406 40.386719 38.191406 40.503906 C 38.191406 40.621094 38.285156 40.714844 38.402344 40.714844 C 38.519531 40.714844 38.613281 40.621094 38.613281 40.503906 Z M 38.613281 40.503906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 40.820312 41.195312 C 40.820312 41.078125 40.726562 40.984375 40.609375 40.984375 C 40.492188 40.984375 40.398438 41.078125 40.398438 41.195312 C 40.398438 41.3125 40.492188 41.40625 40.609375 41.40625 C 40.726562 41.40625 40.820312 41.3125 40.820312 41.195312 Z M 40.820312 41.195312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.980469 42.019531 C 37.980469 41.902344 37.886719 41.808594 37.769531 41.808594 C 37.652344 41.808594 37.558594 41.902344 37.558594 42.019531 C 37.558594 42.136719 37.652344 42.230469 37.769531 42.230469 C 37.886719 42.230469 37.980469 42.136719 37.980469 42.019531 Z M 37.980469 42.019531 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.699219 43.210938 C 35.699219 43.09375 35.605469 43 35.488281 43 C 35.371094 43 35.277344 43.09375 35.277344 43.210938 C 35.277344 43.328125 35.371094 43.421875 35.488281 43.421875 C 35.605469 43.421875 35.699219 43.328125 35.699219 43.210938 Z M 35.699219 43.210938 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.902344 39.222656 C 36.902344 39.105469 36.808594 39.011719 36.691406 39.011719 C 36.574219 39.011719 36.480469 39.105469 36.480469 39.222656 C 36.480469 39.339844 36.574219 39.433594 36.691406 39.433594 C 36.808594 39.433594 36.902344 39.339844 36.902344 39.222656 Z M 36.902344 39.222656 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.683594 35.703125 C 37.683594 35.585938 37.589844 35.492188 37.472656 35.492188 C 37.355469 35.492188 37.261719 35.585938 37.261719 35.703125 C 37.261719 35.820312 37.355469 35.914062 37.472656 35.914062 C 37.589844 35.914062 37.683594 35.820312 37.683594 35.703125 Z M 37.683594 35.703125 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 39.738281 36.664062 C 39.738281 36.546875 39.644531 36.453125 39.527344 36.453125 C 39.410156 36.453125 39.316406 36.546875 39.316406 36.664062 C 39.316406 36.78125 39.410156 36.875 39.527344 36.875 C 39.644531 36.875 39.738281 36.78125 39.738281 36.664062 Z M 39.738281 36.664062 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.226562 38.015625 C 38.226562 37.898438 38.132812 37.804688 38.015625 37.804688 C 37.898438 37.804688 37.804688 37.898438 37.804688 38.015625 C 37.804688 38.132812 37.898438 38.226562 38.015625 38.226562 C 38.132812 38.226562 38.226562 38.132812 38.226562 38.015625 Z M 38.226562 38.015625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.027344 37.128906 C 37.027344 37.011719 36.933594 36.917969 36.816406 36.917969 C 36.699219 36.917969 36.605469 37.011719 36.605469 37.128906 C 36.605469 37.246094 36.699219 37.339844 36.816406 37.339844 C 36.933594 37.339844 37.027344 37.246094 37.027344 37.128906 Z M 37.027344 37.128906 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 36.703125 35.070312 C 36.703125 34.953125 36.609375 34.859375 36.492188 34.859375 C 36.375 34.859375 36.28125 34.953125 36.28125 35.070312 C 36.28125 35.1875 36.375 35.28125 36.492188 35.28125 C 36.609375 35.28125 36.703125 35.1875 36.703125 35.070312 Z M 36.703125 35.070312 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 35.25 35.515625 C 35.25 35.398438 35.15625 35.304688 35.039062 35.304688 C 34.921875 35.304688 34.828125 35.398438 34.828125 35.515625 C 34.828125 35.632812 34.921875 35.726562 35.039062 35.726562 C 35.15625 35.726562 35.25 35.632812 35.25 35.515625 Z M 35.25 35.515625 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 38.769531 37.246094 C 38.769531 37.128906 38.675781 37.035156 38.558594 37.035156 C 38.441406 37.035156 38.347656 37.128906 38.347656 37.246094 C 38.347656 37.363281 38.441406 37.457031 38.558594 37.457031 C 38.675781 37.457031 38.769531 37.363281 38.769531 37.246094 Z M 38.769531 37.246094 \\\"/>\\n\",\n       \"<path style=\\\"fill:none;stroke-width:1.408079;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\\\" d=\\\"M 37.023438 33.886719 C 37.023438 33.769531 36.929688 33.675781 36.8125 33.675781 C 36.695312 33.675781 36.601562 33.769531 36.601562 33.886719 C 36.601562 34.003906 36.695312 34.097656 36.8125 34.097656 C 36.929688 34.097656 37.023438 34.003906 37.023438 33.886719 Z M 37.023438 33.886719 \\\"/>\\n\",\n       \"</g>\\n\",\n       \"</svg>\\n\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"convertPointToDiagram :: V2 Double -> Diagram C.B\\n\",\n    \"convertPointToDiagram point = circle 0.001 # translate point\\n\",\n    \"\\n\",\n    \"convertListofNPointsToDiagram :: Int -> [V2 Double] -> Diagram C.B\\n\",\n    \"convertListofNPointsToDiagram n = mconcat . take n . fmap convertPointToDiagram\\n\",\n    \"\\n\",\n    \"diagramList :: Distribution (Diagram C.B)\\n\",\n    \"diagramList = fmap (convertListofNPointsToDiagram 10000) randomWalk\\n\",\n    \"\\n\",\n    \"d <- L.sampler diagramList\\n\",\n    \"diagram d\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"custom haskell\",\n   \"language\": \"haskell\",\n   \"name\": \"custom-haskell\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": \"ihaskell\",\n   \"file_extension\": \".hs\",\n   \"mimetype\": \"text/x-haskell\",\n   \"name\": \"haskell\",\n   \"pygments_lexer\": \"Haskell\",\n   \"version\": \"9.0.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "notebooks/examples/Histogram.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"id\": \"d9f736cc-ee3f-4567-966e-9c15a5122ea6\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import Prelude \\n\",\n    \"import Control.Monad.Bayes.Class\\n\",\n    \"import Control.Monad.Bayes.Enumerator\\n\",\n    \"import Control.Monad.Bayes.Weighted\\n\",\n    \"import Control.Monad.Bayes.Sampler.Strict\\n\",\n    \"import Control.Monad\\n\",\n    \"import Numeric.Log\\n\",\n    \"\\n\",\n    \":l ../plotting.hs\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"5005eab6-3193-4bfc-b1be-e9e3748d2554\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Distributions over **anything**\\n\",\n    \"\\n\",\n    \"In Monad-Bayes, you can have distributions over absolutely any kind of value, of any type. Below, you can see a distribution over histograms, and a distribution over plots.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"id\": \"01e82e4f-e5a2-4fbb-8fad-5e4ab3a253c6\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"unnormalizedDistribution :: Measure Double\\n\",\n    \"unnormalizedDistribution = do\\n\",\n    \"    x <- bernoulli 0.5\\n\",\n    \"    y <- normal (if x then (-2) else 2) 1\\n\",\n    \"    factor (normalPdf 0 4 y)\\n\",\n    \"    return y\\n\",\n    \"    \\n\",\n    \"distributionOverWeightedSamples :: Distribution (Double, Log Double)\\n\",\n    \"distributionOverWeightedSamples = runWeightedT unnormalizedDistribution\\n\",\n    \"    \\n\",\n    \"iidDistribution :: Distribution [(Double, Log Double)]\\n\",\n    \"iidDistribution = replicateM 100000 distributionOverWeightedSamples\\n\",\n    \"    \\n\",\n    \"histogramDistribution :: Distribution Histogram\\n\",\n    \"histogramDistribution = histogram 500 <$> iidDistribution\\n\",\n    \"    \\n\",\n    \"plotDistribution :: Distribution Plot\\n\",\n    \"plotDistribution = plot . histogramToList <$> histogramDistribution\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"2cb70027-b2fd-45c8-8434-22f2c92e0933\",\n   \"metadata\": {},\n   \"source\": [\n    \"`unnormalizedDistribution` is an (unnormalized) distribution that we want to plot. \\n\",\n    \"\\n\",\n    \"`distributionOverWeightedSamples` is a distribution over pairs of samples from `unnormalizedDistribution` and their density. \\n\",\n    \"\\n\",\n    \"`iidDistribution` is a distribution over 100000 iid draws from `distributionOverWeightedSamples`.\\n\",\n    \"\\n\",\n    \"`histogramDistribution` is a distribution over histograms, each corresponding to a possible list of iid samples.\\n\",\n    \"\\n\",\n    \"`plotDistribution` is a distribution over plots (i.e. 2D visualizations that can be rendered in a notebook), each corresponding to a possible histogram. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"id\": \"ace53904-ff25-419c-95b8-e3ee6debea48\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"X\": -6.0089217245146305,\n          \"Y\": 0.06436598001308692\n         },\n         {\n          \"X\": -5.984213001382199,\n          \"Y\": 0\n         },\n         {\n          \"X\": -5.959504278249766,\n          \"Y\": 0\n         },\n         {\n          \"X\": -5.934795555117335,\n          \"Y\": 0\n         },\n         {\n          \"X\": -5.910086831984902,\n          \"Y\": 0\n         },\n         {\n          \"X\": -5.88537810885247,\n          \"Y\": 0.03381346439252048\n         },\n         {\n          \"X\": -5.860669385720038,\n          \"Y\": 0.03402809986227849\n         },\n         {\n          \"X\": -5.835960662587606,\n          \"Y\": 0\n         },\n         {\n          \"X\": -5.811251939455174,\n          \"Y\": 0\n         },\n         {\n          \"X\": -5.786543216322741,\n          \"Y\": 0.03488223661543553\n         },\n         {\n          \"X\": -5.761834493190309,\n          \"Y\": 0\n         },\n         {\n          \"X\": -5.737125770057877,\n          \"Y\": 0\n         },\n         {\n          \"X\": -5.712417046925445,\n          \"Y\": 0\n         },\n         {\n          \"X\": -5.687708323793013,\n          \"Y\": 0\n         },\n         {\n          \"X\": -5.662999600660581,\n          \"Y\": 0.07312172445509142\n         },\n         {\n          \"X\": -5.638290877528148,\n          \"Y\": 0.03701486949431892\n         },\n         {\n          \"X\": -5.613582154395717,\n          \"Y\": 0\n         },\n         {\n          \"X\": -5.588873431263284,\n          \"Y\": 0.03767435032354156\n         },\n         {\n          \"X\": -5.5641647081308525,\n          \"Y\": 0.03785147087512243\n         },\n         {\n          \"X\": -5.53945598499842,\n          \"Y\": 0\n         },\n         {\n          \"X\": -5.514747261865988,\n          \"Y\": 0.0384696777234303\n         },\n         {\n          \"X\": -5.490038538733556,\n          \"Y\": 0.11661872267593157\n         },\n         {\n          \"X\": -5.465329815601124,\n          \"Y\": 0.039270242090076096\n         },\n         {\n          \"X\": -5.4406210924686915,\n          \"Y\": 0\n         },\n         {\n          \"X\": -5.41591236933626,\n          \"Y\": 0.07990075373803746\n         },\n         {\n          \"X\": -5.391203646203827,\n          \"Y\": 0\n         },\n         {\n          \"X\": -5.366494923071395,\n          \"Y\": 0.040419268105091756\n         },\n         {\n          \"X\": -5.341786199938963,\n          \"Y\": 0.20440327709755488\n         },\n         {\n          \"X\": -5.317077476806531,\n          \"Y\": 0.041354106989514576\n         },\n         {\n          \"X\": -5.292368753674099,\n          \"Y\": 0.041434399423424625\n         },\n         {\n          \"X\": -5.267660030541666,\n          \"Y\": 0.08372306230707435\n         },\n         {\n          \"X\": -5.242951307409235,\n          \"Y\": 0.08457562303617844\n         },\n         {\n          \"X\": -5.218242584276802,\n          \"Y\": 0.08523723655480925\n         },\n         {\n          \"X\": -5.19353386114437,\n          \"Y\": 0.12877744959499762\n         },\n         {\n          \"X\": -5.168825138011938,\n          \"Y\": 0.08653480981517722\n         },\n         {\n          \"X\": -5.144116414879506,\n          \"Y\": 0.13085913124718732\n         },\n         {\n          \"X\": -5.119407691747074,\n          \"Y\": 0.21991689735537875\n         },\n         {\n          \"X\": -5.094698968614642,\n          \"Y\": 0.13329962214517627\n         },\n         {\n          \"X\": -5.0699902454822094,\n          \"Y\": 0.17882863911129349\n         },\n         {\n          \"X\": -5.045281522349778,\n          \"Y\": 0.22482062332073816\n         },\n         {\n          \"X\": -5.020572799217345,\n          \"Y\": 0.22726637416827394\n         },\n         {\n          \"X\": -4.995864076084914,\n          \"Y\": 0.4574552608509581\n         },\n         {\n          \"X\": -4.971155352952481,\n          \"Y\": 0.32240866425919873\n         },\n         {\n          \"X\": -4.9464466298200485,\n          \"Y\": 0.2788537026617831\n         },\n         {\n          \"X\": -4.921737906687617,\n          \"Y\": 0.23393766276029404\n         },\n         {\n          \"X\": -4.897029183555185,\n          \"Y\": 0.2829440671161367\n         },\n         {\n          \"X\": -4.872320460422753,\n          \"Y\": 0.6176798364386836\n         },\n         {\n          \"X\": -4.84761173729032,\n          \"Y\": 0.43073495842312703\n         },\n         {\n          \"X\": -4.822903014157888,\n          \"Y\": 0.48226483881993976\n         },\n         {\n          \"X\": -4.798194291025457,\n          \"Y\": 0.4372585825231104\n         },\n         {\n          \"X\": -4.773485567893024,\n          \"Y\": 0.7826008435036651\n         },\n         {\n          \"X\": -4.748776844760592,\n          \"Y\": 0.8381534673176434\n         },\n         {\n          \"X\": -4.72406812162816,\n          \"Y\": 0.5954658645746935\n         },\n         {\n          \"X\": -4.699359398495727,\n          \"Y\": 0.9999561137530477\n         },\n         {\n          \"X\": -4.674650675363296,\n          \"Y\": 0.45333519712117726\n         },\n         {\n          \"X\": -4.649941952230863,\n          \"Y\": 0.5074102223392255\n         },\n         {\n          \"X\": -4.6252332290984315,\n          \"Y\": 0.6129652478836873\n         },\n         {\n          \"X\": -4.600524505965999,\n          \"Y\": 1.1842068875087786\n         },\n         {\n          \"X\": -4.575815782833567,\n          \"Y\": 1.5034646007474188\n         },\n         {\n          \"X\": -4.551107059701135,\n          \"Y\": 0.8352834634117816\n         },\n         {\n          \"X\": -4.526398336568702,\n          \"Y\": 0.6838353903450933\n         },\n         {\n          \"X\": -4.5016896134362705,\n          \"Y\": 0.6360055015870401\n         },\n         {\n          \"X\": -4.476980890303839,\n          \"Y\": 1.5999409916174339\n         },\n         {\n          \"X\": -4.452272167171406,\n          \"Y\": 1.288165994720481\n         },\n         {\n          \"X\": -4.427563444038974,\n          \"Y\": 1.2979763280993106\n         },\n         {\n          \"X\": -4.402854720906542,\n          \"Y\": 1.4698085557273868\n         },\n         {\n          \"X\": -4.37814599777411,\n          \"Y\": 1.2595928108087364\n         },\n         {\n          \"X\": -4.353437274641678,\n          \"Y\": 0.9928624048520462\n         },\n         {\n          \"X\": -4.328728551509245,\n          \"Y\": 1.9990366504068187\n         },\n         {\n          \"X\": -4.304019828376814,\n          \"Y\": 1.84500102131843\n         },\n         {\n          \"X\": -4.279311105244381,\n          \"Y\": 2.025959763445529\n         },\n         {\n          \"X\": -4.254602382111949,\n          \"Y\": 2.7747059540724304\n         },\n         {\n          \"X\": -4.229893658979517,\n          \"Y\": 3.076564644184636\n         },\n         {\n          \"X\": -4.205184935847085,\n          \"Y\": 2.4109956991091437\n         },\n         {\n          \"X\": -4.180476212714653,\n          \"Y\": 3.0616982722314785\n         },\n         {\n          \"X\": -4.155767489582221,\n          \"Y\": 2.848197050837875\n         },\n         {\n          \"X\": -4.131058766449788,\n          \"Y\": 3.3342832656704653\n         },\n         {\n          \"X\": -4.106350043317357,\n          \"Y\": 3.3569294399548846\n         },\n         {\n          \"X\": -4.081641320184924,\n          \"Y\": 2.9032128971049196\n         },\n         {\n          \"X\": -4.0569325970524925,\n          \"Y\": 3.8169788834649814\n         },\n         {\n          \"X\": -4.03222387392006,\n          \"Y\": 4.201371325047379\n         },\n         {\n          \"X\": -4.007515150787627,\n          \"Y\": 3.9840333463296838\n         },\n         {\n          \"X\": -3.9828064276551958,\n          \"Y\": 3.9489778441664853\n         },\n         {\n          \"X\": -3.958097704522763,\n          \"Y\": 4.156704196012278\n         },\n         {\n          \"X\": -3.933388981390331,\n          \"Y\": 4.6123139761388785\n         },\n         {\n          \"X\": -3.908680258257899,\n          \"Y\": 4.70214497014048\n         },\n         {\n          \"X\": -3.883971535125467,\n          \"Y\": 4.5434450060589455\n         },\n         {\n          \"X\": -3.859262811993035,\n          \"Y\": 5.38591672043316\n         },\n         {\n          \"X\": -3.8345540888606027,\n          \"Y\": 5.040160881745403\n         },\n         {\n          \"X\": -3.8098453657281706,\n          \"Y\": 7.035579792925246\n         },\n         {\n          \"X\": -3.7851366425957385,\n          \"Y\": 7.139017030800116\n         },\n         {\n          \"X\": -3.7604279194633063,\n          \"Y\": 6.85914712502999\n         },\n         {\n          \"X\": -3.7357191963308742,\n          \"Y\": 5.738960543301927\n         },\n         {\n          \"X\": -3.711010473198442,\n          \"Y\": 7.716352402288785\n         },\n         {\n          \"X\": -3.68630175006601,\n          \"Y\": 7.306405861414238\n         },\n         {\n          \"X\": -3.661593026933578,\n          \"Y\": 8.721136763109758\n         },\n         {\n          \"X\": -3.636884303801146,\n          \"Y\": 8.511739596213928\n         },\n         {\n          \"X\": -3.6121755806687137,\n          \"Y\": 8.890840075929876\n         },\n         {\n          \"X\": -3.5874668575362816,\n          \"Y\": 9.871036008772927\n         },\n         {\n          \"X\": -3.5627581344038495,\n          \"Y\": 9.995338147689537\n         },\n         {\n          \"X\": -3.5380494112714174,\n          \"Y\": 10.790580378811898\n         },\n         {\n          \"X\": -3.513340688138985,\n          \"Y\": 11.25420201077188\n         },\n         {\n          \"X\": -3.4886319650065527,\n          \"Y\": 10.842958109350546\n         },\n         {\n          \"X\": -3.4639232418741206,\n          \"Y\": 10.693119391390733\n         },\n         {\n          \"X\": -3.4392145187416885,\n          \"Y\": 11.509223095174304\n         },\n         {\n          \"X\": -3.4145057956092564,\n          \"Y\": 12.885926892225067\n         },\n         {\n          \"X\": -3.3897970724768243,\n          \"Y\": 14.834659783499115\n         },\n         {\n          \"X\": -3.365088349344392,\n          \"Y\": 12.88318522791812\n         },\n         {\n          \"X\": -3.34037962621196,\n          \"Y\": 15.412690473016786\n         },\n         {\n          \"X\": -3.315670903079528,\n          \"Y\": 15.138308346093456\n         },\n         {\n          \"X\": -3.290962179947096,\n          \"Y\": 16.20853817121795\n         },\n         {\n          \"X\": -3.2662534568146637,\n          \"Y\": 15.292758528347138\n         },\n         {\n          \"X\": -3.2415447336822316,\n          \"Y\": 16.590805039539784\n         },\n         {\n          \"X\": -3.2168360105497995,\n          \"Y\": 17.89863372327899\n         },\n         {\n          \"X\": -3.1921272874173674,\n          \"Y\": 16.827809192395033\n         },\n         {\n          \"X\": -3.1674185642849353,\n          \"Y\": 20.3369597900328\n         },\n         {\n          \"X\": -3.142709841152503,\n          \"Y\": 20.95155871482908\n         },\n         {\n          \"X\": -3.118001118020071,\n          \"Y\": 16.71057479730506\n         },\n         {\n          \"X\": -3.093292394887639,\n          \"Y\": 22.854022743543087\n         },\n         {\n          \"X\": -3.0685836717552064,\n          \"Y\": 20.136975448774074\n         },\n         {\n          \"X\": -3.0438749486227743,\n          \"Y\": 24.5649111982752\n         },\n         {\n          \"X\": -3.019166225490342,\n          \"Y\": 22.576577437801525\n         },\n         {\n          \"X\": -2.99445750235791,\n          \"Y\": 23.287474948497493\n         },\n         {\n          \"X\": -2.969748779225478,\n          \"Y\": 21.87985300329724\n         },\n         {\n          \"X\": -2.945040056093046,\n          \"Y\": 21.067267485794222\n         },\n         {\n          \"X\": -2.9203313329606138,\n          \"Y\": 24.14089196366951\n         },\n         {\n          \"X\": -2.8956226098281816,\n          \"Y\": 24.943065367538527\n         },\n         {\n          \"X\": -2.8709138866957495,\n          \"Y\": 27.59668064881158\n         },\n         {\n          \"X\": -2.8462051635633174,\n          \"Y\": 27.563539921799702\n         },\n         {\n          \"X\": -2.8214964404308853,\n          \"Y\": 27.762674642006974\n         },\n         {\n          \"X\": -2.796787717298453,\n          \"Y\": 28.3552641035962\n         },\n         {\n          \"X\": -2.772078994166021,\n          \"Y\": 27.61554494524911\n         },\n         {\n          \"X\": -2.747370271033589,\n          \"Y\": 27.491825083118652\n         },\n         {\n          \"X\": -2.722661547901157,\n          \"Y\": 31.16939716705034\n         },\n         {\n          \"X\": -2.6979528247687248,\n          \"Y\": 31.698918822755846\n         },\n         {\n          \"X\": -2.6732441016362927,\n          \"Y\": 31.032978548996606\n         },\n         {\n          \"X\": -2.6485353785038606,\n          \"Y\": 30.275604084134358\n         },\n         {\n          \"X\": -2.6238266553714285,\n          \"Y\": 33.70003427593482\n         },\n         {\n          \"X\": -2.599117932238996,\n          \"Y\": 32.6255873396766\n         },\n         {\n          \"X\": -2.574409209106564,\n          \"Y\": 35.91598835002564\n         },\n         {\n          \"X\": -2.5497004859741317,\n          \"Y\": 35.49170531458677\n         },\n         {\n          \"X\": -2.5249917628416996,\n          \"Y\": 33.66900235337601\n         },\n         {\n          \"X\": -2.5002830397092675,\n          \"Y\": 35.6860556759161\n         },\n         {\n          \"X\": -2.4755743165768354,\n          \"Y\": 36.733054851028335\n         },\n         {\n          \"X\": -2.4508655934444032,\n          \"Y\": 38.687907424956826\n         },\n         {\n          \"X\": -2.426156870311971,\n          \"Y\": 35.18213033497522\n         },\n         {\n          \"X\": -2.401448147179539,\n          \"Y\": 38.06039818072502\n         },\n         {\n          \"X\": -2.376739424047107,\n          \"Y\": 38.284337326437964\n         },\n         {\n          \"X\": -2.352030700914675,\n          \"Y\": 38.93067696807831\n         },\n         {\n          \"X\": -2.3273219777822427,\n          \"Y\": 39.157214178906074\n         },\n         {\n          \"X\": -2.3026132546498106,\n          \"Y\": 40.56392806402764\n         },\n         {\n          \"X\": -2.2779045315173785,\n          \"Y\": 36.97874892989157\n         },\n         {\n          \"X\": -2.2531958083849464,\n          \"Y\": 41.53106387501214\n         },\n         {\n          \"X\": -2.2284870852525143,\n          \"Y\": 41.58793843001898\n         },\n         {\n          \"X\": -2.203778362120082,\n          \"Y\": 40.530791203657735\n         },\n         {\n          \"X\": -2.17906963898765,\n          \"Y\": 40.151957407194196\n         },\n         {\n          \"X\": -2.1543609158552175,\n          \"Y\": 41.494816646642036\n         },\n         {\n          \"X\": -2.1296521927227854,\n          \"Y\": 39.03287868279963\n         },\n         {\n          \"X\": -2.1049434695903533,\n          \"Y\": 42.553403993065594\n         },\n         {\n          \"X\": -2.080234746457921,\n          \"Y\": 44.2571184357169\n         },\n         {\n          \"X\": -2.055526023325489,\n          \"Y\": 42.0383366984788\n         },\n         {\n          \"X\": -2.030817300193057,\n          \"Y\": 46.20515263888747\n         },\n         {\n          \"X\": -2.0061085770606253,\n          \"Y\": 41.60274850303092\n         },\n         {\n          \"X\": -1.9813998539281927,\n          \"Y\": 46.57795759499732\n         },\n         {\n          \"X\": -1.956691130795761,\n          \"Y\": 43.97862459558296\n         },\n         {\n          \"X\": -1.9319824076633285,\n          \"Y\": 41.45142958991336\n         },\n         {\n          \"X\": -1.907273684530896,\n          \"Y\": 42.37106635130894\n         },\n         {\n          \"X\": -1.8825649613984643,\n          \"Y\": 40.35456770129033\n         },\n         {\n          \"X\": -1.8578562382660317,\n          \"Y\": 42.17380852821673\n         },\n         {\n          \"X\": -1.8331475151336,\n          \"Y\": 41.84178703939828\n         },\n         {\n          \"X\": -1.8084387920011675,\n          \"Y\": 42.59211805228891\n         },\n         {\n          \"X\": -1.7837300688687359,\n          \"Y\": 47.405854298680914\n         },\n         {\n          \"X\": -1.7590213457363033,\n          \"Y\": 43.00930475544739\n         },\n         {\n          \"X\": -1.7343126226038716,\n          \"Y\": 43.75849991929209\n         },\n         {\n          \"X\": -1.709603899471439,\n          \"Y\": 43.60548944355928\n         },\n         {\n          \"X\": -1.6848951763390074,\n          \"Y\": 42.25884476956666\n         },\n         {\n          \"X\": -1.6601864532065749,\n          \"Y\": 39.35010466305151\n         },\n         {\n          \"X\": -1.6354777300741432,\n          \"Y\": 42.47297728685894\n         },\n         {\n          \"X\": -1.6107690069417107,\n          \"Y\": 43.68639483133674\n         },\n         {\n          \"X\": -1.586060283809279,\n          \"Y\": 45.72856663508428\n         },\n         {\n          \"X\": -1.5613515606768464,\n          \"Y\": 41.30986273656901\n         },\n         {\n          \"X\": -1.5366428375444148,\n          \"Y\": 41.1304248029407\n         },\n         {\n          \"X\": -1.5119341144119822,\n          \"Y\": 42.25187354985236\n         },\n         {\n          \"X\": -1.4872253912795497,\n          \"Y\": 41.23212143330253\n         },\n         {\n          \"X\": -1.462516668147118,\n          \"Y\": 40.859918837080194\n         },\n         {\n          \"X\": -1.4378079450146855,\n          \"Y\": 36.65164696662195\n         },\n         {\n          \"X\": -1.4130992218822538,\n          \"Y\": 40.1050037650212\n         },\n         {\n          \"X\": -1.3883904987498212,\n          \"Y\": 37.93853455831329\n         },\n         {\n          \"X\": -1.3636817756173896,\n          \"Y\": 34.348208534381726\n         },\n         {\n          \"X\": -1.338973052484957,\n          \"Y\": 38.75716258299296\n         },\n         {\n          \"X\": -1.3142643293525254,\n          \"Y\": 37.88955040067198\n         },\n         {\n          \"X\": -1.2895556062200928,\n          \"Y\": 39.86070850689678\n         },\n         {\n          \"X\": -1.2648468830876611,\n          \"Y\": 38.23273946873289\n         },\n         {\n          \"X\": -1.2401381599552286,\n          \"Y\": 33.557585166775816\n         },\n         {\n          \"X\": -1.215429436822797,\n          \"Y\": 35.23717666400324\n         },\n         {\n          \"X\": -1.1907207136903644,\n          \"Y\": 33.58551178623465\n         },\n         {\n          \"X\": -1.1660119905579327,\n          \"Y\": 34.793521127343226\n         },\n         {\n          \"X\": -1.1413032674255001,\n          \"Y\": 35.430188122956096\n         },\n         {\n          \"X\": -1.1165945442930685,\n          \"Y\": 34.43581863760561\n         },\n         {\n          \"X\": -1.091885821160636,\n          \"Y\": 27.479547684611145\n         },\n         {\n          \"X\": -1.0671770980282043,\n          \"Y\": 32.916509313259375\n         },\n         {\n          \"X\": -1.0424683748957717,\n          \"Y\": 28.728904663104153\n         },\n         {\n          \"X\": -1.0177596517633392,\n          \"Y\": 28.38802374454083\n         },\n         {\n          \"X\": -0.9930509286309075,\n          \"Y\": 29.3994608523828\n         },\n         {\n          \"X\": -0.9683422054984749,\n          \"Y\": 26.827841843728525\n         },\n         {\n          \"X\": -0.9436334823660433,\n          \"Y\": 28.033131035649372\n         },\n         {\n          \"X\": -0.9189247592336107,\n          \"Y\": 30.111513213303322\n         },\n         {\n          \"X\": -0.8942160361011791,\n          \"Y\": 23.054244882436777\n         },\n         {\n          \"X\": -0.8695073129687465,\n          \"Y\": 26.591356821779318\n         },\n         {\n          \"X\": -0.8447985898363148,\n          \"Y\": 23.213259972908197\n         },\n         {\n          \"X\": -0.8200898667038823,\n          \"Y\": 26.56321827054447\n         },\n         {\n          \"X\": -0.7953811435714506,\n          \"Y\": 24.250544769621243\n         },\n         {\n          \"X\": -0.7706724204390181,\n          \"Y\": 25.748289755039313\n         },\n         {\n          \"X\": -0.7459636973065864,\n          \"Y\": 19.406938425852527\n         },\n         {\n          \"X\": -0.7212549741741539,\n          \"Y\": 19.919744765406744\n         },\n         {\n          \"X\": -0.6965462510417222,\n          \"Y\": 24.363043134507507\n         },\n         {\n          \"X\": -0.6718375279092896,\n          \"Y\": 21.438079944820213\n         },\n         {\n          \"X\": -0.647128804776858,\n          \"Y\": 20.573601210118362\n         },\n         {\n          \"X\": -0.6224200816444254,\n          \"Y\": 18.918916692685112\n         },\n         {\n          \"X\": -0.5977113585119938,\n          \"Y\": 19.13325318729233\n         },\n         {\n          \"X\": -0.5730026353795612,\n          \"Y\": 21.026674571077024\n         },\n         {\n          \"X\": -0.5482939122471286,\n          \"Y\": 17.3895040570883\n         },\n         {\n          \"X\": -0.523585189114697,\n          \"Y\": 19.777124174906994\n         },\n         {\n          \"X\": -0.4988764659822644,\n          \"Y\": 19.59468331416895\n         },\n         {\n          \"X\": -0.47416774284983276,\n          \"Y\": 18.817876198053412\n         },\n         {\n          \"X\": -0.4494590197174002,\n          \"Y\": 18.830225946265397\n         },\n         {\n          \"X\": -0.42475029658496855,\n          \"Y\": 18.34735206432481\n         },\n         {\n          \"X\": -0.400041573452536,\n          \"Y\": 14.984596740620747\n         },\n         {\n          \"X\": -0.3753328503201043,\n          \"Y\": 15.788197044792451\n         },\n         {\n          \"X\": -0.3506241271876718,\n          \"Y\": 13.611674886973216\n         },\n         {\n          \"X\": -0.3259154040552401,\n          \"Y\": 18.091802484621546\n         },\n         {\n          \"X\": -0.30120668092280756,\n          \"Y\": 14.818512075454704\n         },\n         {\n          \"X\": -0.2764979577903759,\n          \"Y\": 16.217640138002437\n         },\n         {\n          \"X\": -0.25178923465794334,\n          \"Y\": 13.736165466321435\n         },\n         {\n          \"X\": -0.22708051152551167,\n          \"Y\": 12.845261325322944\n         },\n         {\n          \"X\": -0.20237178839307912,\n          \"Y\": 12.45114475728478\n         },\n         {\n          \"X\": -0.17766306526064746,\n          \"Y\": 13.749899003544389\n         },\n         {\n          \"X\": -0.1529543421282149,\n          \"Y\": 12.457766191281154\n         },\n         {\n          \"X\": -0.12824561899578235,\n          \"Y\": 13.756365096801856\n         },\n         {\n          \"X\": -0.10353689586335069,\n          \"Y\": 15.453807662812105\n         },\n         {\n          \"X\": -0.07882817273091813,\n          \"Y\": 13.860481449965748\n         },\n         {\n          \"X\": -0.05411944959848647,\n          \"Y\": 12.366075142974426\n         },\n         {\n          \"X\": -0.029410726466053916,\n          \"Y\": 11.668709800566038\n         },\n         {\n          \"X\": -0.004702003333622251,\n          \"Y\": 12.167710931914211\n         },\n         {\n          \"X\": 0.020006719798810302,\n          \"Y\": 12.466791141838392\n         },\n         {\n          \"X\": 0.04471544293124197,\n          \"Y\": 12.067211905131938\n         },\n         {\n          \"X\": 0.06942416606367452,\n          \"Y\": 13.960896702696354\n         },\n         {\n          \"X\": 0.09413288919610618,\n          \"Y\": 11.865261195563276\n         },\n         {\n          \"X\": 0.11884161232853874,\n          \"Y\": 11.564050741480928\n         },\n         {\n          \"X\": 0.1435503354609704,\n          \"Y\": 12.857572528726678\n         },\n         {\n          \"X\": 0.16825905859340295,\n          \"Y\": 13.352719676018049\n         },\n         {\n          \"X\": 0.19296778172583462,\n          \"Y\": 15.440982337563588\n         },\n         {\n          \"X\": 0.21767650485826717,\n          \"Y\": 14.440130541994257\n         },\n         {\n          \"X\": 0.24238522799069884,\n          \"Y\": 15.828956376536942\n         },\n         {\n          \"X\": 0.2670939511231314,\n          \"Y\": 13.235154351059416\n         },\n         {\n          \"X\": 0.29180267425556305,\n          \"Y\": 14.025251751115862\n         },\n         {\n          \"X\": 0.3165113973879956,\n          \"Y\": 16.902014935313414\n         },\n         {\n          \"X\": 0.34122012052042816,\n          \"Y\": 15.800337940474277\n         },\n         {\n          \"X\": 0.3659288436528598,\n          \"Y\": 14.401327431787465\n         },\n         {\n          \"X\": 0.3906375667852924,\n          \"Y\": 14.69032526696409\n         },\n         {\n          \"X\": 0.41534628991772404,\n          \"Y\": 18.252962173456933\n         },\n         {\n          \"X\": 0.4400550130501566,\n          \"Y\": 16.951993454187967\n         },\n         {\n          \"X\": 0.46476373618258826,\n          \"Y\": 17.930328777706404\n         },\n         {\n          \"X\": 0.4894724593150208,\n          \"Y\": 17.817470586180736\n         },\n         {\n          \"X\": 0.5141811824474525,\n          \"Y\": 17.606304226434567\n         },\n         {\n          \"X\": 0.538889905579885,\n          \"Y\": 18.580780192817073\n         },\n         {\n          \"X\": 0.5635986287123167,\n          \"Y\": 18.169714894803352\n         },\n         {\n          \"X\": 0.5883073518447492,\n          \"Y\": 20.423736600946068\n         },\n         {\n          \"X\": 0.6130160749771809,\n          \"Y\": 21.390367042951908\n         },\n         {\n          \"X\": 0.6377247981096135,\n          \"Y\": 22.059028614949636\n         },\n         {\n          \"X\": 0.6624335212420451,\n          \"Y\": 18.790554913407508\n         },\n         {\n          \"X\": 0.6871422443744777,\n          \"Y\": 25.453572219350956\n         },\n         {\n          \"X\": 0.7118509675069093,\n          \"Y\": 21.49885893227534\n         },\n         {\n          \"X\": 0.7365596906393419,\n          \"Y\": 24.5145203865934\n         },\n         {\n          \"X\": 0.7612684137717736,\n          \"Y\": 24.093883013929812\n         },\n         {\n          \"X\": 0.7859771369042061,\n          \"Y\": 24.555446625123626\n         },\n         {\n          \"X\": 0.8106858600366387,\n          \"Y\": 26.77101735805807\n         },\n         {\n          \"X\": 0.8353945831690703,\n          \"Y\": 25.956483763332653\n         },\n         {\n          \"X\": 0.8601033063015029,\n          \"Y\": 26.995666527863623\n         },\n         {\n          \"X\": 0.8848120294339346,\n          \"Y\": 28.418751724327752\n         },\n         {\n          \"X\": 0.9095207525663671,\n          \"Y\": 28.573628001957204\n         },\n         {\n          \"X\": 0.9342294756987988,\n          \"Y\": 26.592006210915198\n         },\n         {\n          \"X\": 0.9589381988312313,\n          \"Y\": 29.363481718047122\n         },\n         {\n          \"X\": 0.983646921963663,\n          \"Y\": 30.77263570444857\n         },\n         {\n          \"X\": 1.0083556450960955,\n          \"Y\": 34.10524577296647\n         },\n         {\n          \"X\": 1.0330643682285272,\n          \"Y\": 33.18389020228303\n         },\n         {\n          \"X\": 1.0577730913609598,\n          \"Y\": 28.41207315183007\n         },\n         {\n          \"X\": 1.0824818144933914,\n          \"Y\": 32.497886561682655\n         },\n         {\n          \"X\": 1.107190537625824,\n          \"Y\": 31.293101526249888\n         },\n         {\n          \"X\": 1.1318992607582556,\n          \"Y\": 32.09961236828386\n         },\n         {\n          \"X\": 1.1566079838906882,\n          \"Y\": 32.617213192350064\n         },\n         {\n          \"X\": 1.1813167070231199,\n          \"Y\": 32.65455367445013\n         },\n         {\n          \"X\": 1.2060254301555524,\n          \"Y\": 35.64343175520338\n         },\n         {\n          \"X\": 1.230734153287985,\n          \"Y\": 37.00326441405618\n         },\n         {\n          \"X\": 1.2554428764204166,\n          \"Y\": 34.36876794917463\n         },\n         {\n          \"X\": 1.2801515995528492,\n          \"Y\": 35.059277567338874\n         },\n         {\n          \"X\": 1.3048603226852808,\n          \"Y\": 35.275134453488086\n         },\n         {\n          \"X\": 1.3295690458177134,\n          \"Y\": 37.561691206518574\n         },\n         {\n          \"X\": 1.354277768950145,\n          \"Y\": 40.02723320608505\n         },\n         {\n          \"X\": 1.3789864920825776,\n          \"Y\": 35.90010254061527\n         },\n         {\n          \"X\": 1.4036952152150093,\n          \"Y\": 37.69978802635619\n         },\n         {\n          \"X\": 1.4284039383474418,\n          \"Y\": 37.15052604791056\n         },\n         {\n          \"X\": 1.4531126614798735,\n          \"Y\": 40.52138229762324\n         },\n         {\n          \"X\": 1.477821384612306,\n          \"Y\": 43.41073041676884\n         },\n         {\n          \"X\": 1.5025301077447377,\n          \"Y\": 38.75612453662198\n         },\n         {\n          \"X\": 1.5272388308771703,\n          \"Y\": 40.98344553136436\n         },\n         {\n          \"X\": 1.551947554009602,\n          \"Y\": 41.44036181189422\n         },\n         {\n          \"X\": 1.5766562771420345,\n          \"Y\": 39.86634779451997\n         },\n         {\n          \"X\": 1.6013650002744662,\n          \"Y\": 43.44864979628387\n         },\n         {\n          \"X\": 1.6260737234068987,\n          \"Y\": 39.67101693490139\n         },\n         {\n          \"X\": 1.6507824465393304,\n          \"Y\": 42.5937350666885\n         },\n         {\n          \"X\": 1.675491169671763,\n          \"Y\": 40.47217472111512\n         },\n         {\n          \"X\": 1.7001998928041955,\n          \"Y\": 43.46481264630419\n         },\n         {\n          \"X\": 1.7249086159366271,\n          \"Y\": 45.34750953692863\n         },\n         {\n          \"X\": 1.7496173390690597,\n          \"Y\": 44.14066354776209\n         },\n         {\n          \"X\": 1.7743260622014914,\n          \"Y\": 41.31025208295274\n         },\n         {\n          \"X\": 1.799034785333924,\n          \"Y\": 42.549872329658406\n         },\n         {\n          \"X\": 1.8237435084663556,\n          \"Y\": 45.30560513479073\n         },\n         {\n          \"X\": 1.8484522315987881,\n          \"Y\": 40.60423709891016\n         },\n         {\n          \"X\": 1.8731609547312198,\n          \"Y\": 48.08626034992968\n         },\n         {\n          \"X\": 1.8978696778636523,\n          \"Y\": 43.224826464056704\n         },\n         {\n          \"X\": 1.922578400996084,\n          \"Y\": 40.34057931829437\n         },\n         {\n          \"X\": 1.9472871241285166,\n          \"Y\": 42.608809057408564\n         },\n         {\n          \"X\": 1.9719958472609482,\n          \"Y\": 42.57151596214939\n         },\n         {\n          \"X\": 1.996704570393379,\n          \"Y\": 41.90927744857683\n         },\n         {\n          \"X\": 2.0214132935258116,\n          \"Y\": 47.139104271536056\n         },\n         {\n          \"X\": 2.046122016658244,\n          \"Y\": 41.21687024608036\n         },\n         {\n          \"X\": 2.0708307397906767,\n          \"Y\": 47.27830543190963\n         },\n         {\n          \"X\": 2.0955394629231074,\n          \"Y\": 40.77812886179572\n         },\n         {\n          \"X\": 2.12024818605554,\n          \"Y\": 41.1636472710846\n         },\n         {\n          \"X\": 2.1449569091879725,\n          \"Y\": 42.49586991468964\n         },\n         {\n          \"X\": 2.169665632320405,\n          \"Y\": 44.68300367505257\n         },\n         {\n          \"X\": 2.1943743554528377,\n          \"Y\": 39.03998069328269\n         },\n         {\n          \"X\": 2.2190830785852684,\n          \"Y\": 39.50559694567912\n         },\n         {\n          \"X\": 2.243791801717701,\n          \"Y\": 40.90097987632673\n         },\n         {\n          \"X\": 2.2685005248501335,\n          \"Y\": 40.50494923004692\n         },\n         {\n          \"X\": 2.293209247982566,\n          \"Y\": 38.844598068670805\n         },\n         {\n          \"X\": 2.317917971114997,\n          \"Y\": 35.49881129306099\n         },\n         {\n          \"X\": 2.3426266942474294,\n          \"Y\": 38.8174963806082\n         },\n         {\n          \"X\": 2.367335417379862,\n          \"Y\": 38.42442190377412\n         },\n         {\n          \"X\": 2.3920441405122945,\n          \"Y\": 35.61591395221525\n         },\n         {\n          \"X\": 2.4167528636447253,\n          \"Y\": 36.8119095980132\n         },\n         {\n          \"X\": 2.441461586777158,\n          \"Y\": 39.324418684459346\n         },\n         {\n          \"X\": 2.4661703099095904,\n          \"Y\": 36.12165694940774\n         },\n         {\n          \"X\": 2.490879033042023,\n          \"Y\": 36.393609100321925\n         },\n         {\n          \"X\": 2.5155877561744537,\n          \"Y\": 34.6163408119633\n         },\n         {\n          \"X\": 2.5402964793068863,\n          \"Y\": 33.505408030175836\n         },\n         {\n          \"X\": 2.565005202439319,\n          \"Y\": 33.12670324762529\n         },\n         {\n          \"X\": 2.5897139255717514,\n          \"Y\": 34.8593585128976\n         },\n         {\n          \"X\": 2.614422648704184,\n          \"Y\": 34.153818914416455\n         },\n         {\n          \"X\": 2.6391313718366147,\n          \"Y\": 33.21392167940385\n         },\n         {\n          \"X\": 2.6638400949690473,\n          \"Y\": 30.836743930317578\n         },\n         {\n          \"X\": 2.68854881810148,\n          \"Y\": 28.806209372333864\n         },\n         {\n          \"X\": 2.7132575412339124,\n          \"Y\": 31.296477151941016\n         },\n         {\n          \"X\": 2.737966264366343,\n          \"Y\": 31.643197874526276\n         },\n         {\n          \"X\": 2.7626749874987757,\n          \"Y\": 26.55703059283822\n         },\n         {\n          \"X\": 2.7873837106312083,\n          \"Y\": 29.49196682551053\n         },\n         {\n          \"X\": 2.812092433763641,\n          \"Y\": 26.72085569288447\n         },\n         {\n          \"X\": 2.8368011568960716,\n          \"Y\": 27.919077439795384\n         },\n         {\n          \"X\": 2.861509880028504,\n          \"Y\": 27.104875869832124\n         },\n         {\n          \"X\": 2.8862186031609367,\n          \"Y\": 25.370006052765703\n         },\n         {\n          \"X\": 2.9109273262933693,\n          \"Y\": 24.25978072379728\n         },\n         {\n          \"X\": 2.9356360494258,\n          \"Y\": 22.703777984892895\n         },\n         {\n          \"X\": 2.9603447725582326,\n          \"Y\": 24.801621942554924\n         },\n         {\n          \"X\": 2.985053495690665,\n          \"Y\": 24.308690238087927\n         },\n         {\n          \"X\": 3.0097622188230977,\n          \"Y\": 22.47034794981525\n         },\n         {\n          \"X\": 3.0344709419555302,\n          \"Y\": 22.889271748557594\n         },\n         {\n          \"X\": 3.059179665087961,\n          \"Y\": 19.431354345341376\n         },\n         {\n          \"X\": 3.0838883882203936,\n          \"Y\": 18.74741818720601\n         },\n         {\n          \"X\": 3.108597111352826,\n          \"Y\": 20.500139452618384\n         },\n         {\n          \"X\": 3.1333058344852587,\n          \"Y\": 21.28247222306949\n         },\n         {\n          \"X\": 3.1580145576176895,\n          \"Y\": 18.18608657242754\n         },\n         {\n          \"X\": 3.182723280750122,\n          \"Y\": 17.078076913326182\n         },\n         {\n          \"X\": 3.2074320038825546,\n          \"Y\": 16.8508199454337\n         },\n         {\n          \"X\": 3.232140727014987,\n          \"Y\": 15.037914536562653\n         },\n         {\n          \"X\": 3.256849450147418,\n          \"Y\": 17.256052906867986\n         },\n         {\n          \"X\": 3.2815581732798504,\n          \"Y\": 15.672981084366228\n         },\n         {\n          \"X\": 3.306266896412283,\n          \"Y\": 13.398850310609918\n         },\n         {\n          \"X\": 3.3309756195447155,\n          \"Y\": 16.148101155892927\n         },\n         {\n          \"X\": 3.3556843426771463,\n          \"Y\": 12.13597825228821\n         },\n         {\n          \"X\": 3.380393065809579,\n          \"Y\": 13.397254095247922\n         },\n         {\n          \"X\": 3.4051017889420114,\n          \"Y\": 11.802531731536972\n         },\n         {\n          \"X\": 3.429810512074444,\n          \"Y\": 10.912992512203857\n         },\n         {\n          \"X\": 3.4545192352068748,\n          \"Y\": 10.85282144974084\n         },\n         {\n          \"X\": 3.4792279583393073,\n          \"Y\": 10.930609345459231\n         },\n         {\n          \"X\": 3.50393668147174,\n          \"Y\": 11.824815770673192\n         },\n         {\n          \"X\": 3.5286454046041724,\n          \"Y\": 10.34068389929586\n         },\n         {\n          \"X\": 3.553354127736605,\n          \"Y\": 9.345963931705008\n         },\n         {\n          \"X\": 3.5780628508690357,\n          \"Y\": 9.492216845231425\n         },\n         {\n          \"X\": 3.6027715740014683,\n          \"Y\": 9.440930020517115\n         },\n         {\n          \"X\": 3.627480297133901,\n          \"Y\": 9.518899206079858\n         },\n         {\n          \"X\": 3.6521890202663334,\n          \"Y\": 9.069608974439529\n         },\n         {\n          \"X\": 3.676897743398764,\n          \"Y\": 6.928533488001969\n         },\n         {\n          \"X\": 3.7016064665311967,\n          \"Y\": 8.319881722173866\n         },\n         {\n          \"X\": 3.7263151896636293,\n          \"Y\": 8.858689592366929\n         },\n         {\n          \"X\": 3.751023912796062,\n          \"Y\": 6.039902148152036\n         },\n         {\n          \"X\": 3.7757326359284926,\n          \"Y\": 6.1316927313421985\n         },\n         {\n          \"X\": 3.800441359060925,\n          \"Y\": 6.288586585659372\n         },\n         {\n          \"X\": 3.8251500821933577,\n          \"Y\": 5.2404328883115765\n         },\n         {\n          \"X\": 3.8498588053257903,\n          \"Y\": 5.3985602745501335\n         },\n         {\n          \"X\": 3.874567528458221,\n          \"Y\": 5.3034702579686135\n         },\n         {\n          \"X\": 3.8992762515906536,\n          \"Y\": 5.024706108803253\n         },\n         {\n          \"X\": 3.923984974723086,\n          \"Y\": 4.931420948987622\n         },\n         {\n          \"X\": 3.9486936978555187,\n          \"Y\": 4.227747442314353\n         },\n         {\n          \"X\": 3.9734024209879513,\n          \"Y\": 4.323527900117694\n         },\n         {\n          \"X\": 3.998111144120382,\n          \"Y\": 4.357543081507386\n         },\n         {\n          \"X\": 4.022819867252815,\n          \"Y\": 3.6091789441314703\n         },\n         {\n          \"X\": 4.047528590385247,\n          \"Y\": 2.988294060985391\n         },\n         {\n          \"X\": 4.07223731351768,\n          \"Y\": 3.148300871712172\n         },\n         {\n          \"X\": 4.0969460366501105,\n          \"Y\": 2.8329079365225875\n         },\n         {\n          \"X\": 4.121654759782543,\n          \"Y\": 2.9325614842188776\n         },\n         {\n          \"X\": 4.146363482914976,\n          \"Y\": 3.2629437821121843\n         },\n         {\n          \"X\": 4.171072206047408,\n          \"Y\": 2.954371156114901\n         },\n         {\n          \"X\": 4.195780929179839,\n          \"Y\": 2.531483962913992\n         },\n         {\n          \"X\": 4.2204896523122715,\n          \"Y\": 3.0305027475425863\n         },\n         {\n          \"X\": 4.245198375444704,\n          \"Y\": 2.0439133083911427\n         },\n         {\n          \"X\": 4.269907098577137,\n          \"Y\": 2.256153398292313\n         },\n         {\n          \"X\": 4.294615821709567,\n          \"Y\": 1.960402271412433\n         },\n         {\n          \"X\": 4.319324544842,\n          \"Y\": 1.7819633813070974\n         },\n         {\n          \"X\": 4.3440332679744325,\n          \"Y\": 1.7704301144955796\n         },\n         {\n          \"X\": 4.368741991106865,\n          \"Y\": 2.3634161802700913\n         },\n         {\n          \"X\": 4.393450714239298,\n          \"Y\": 1.5284886204721733\n         },\n         {\n          \"X\": 4.418159437371728,\n          \"Y\": 1.7880265295021038\n         },\n         {\n          \"X\": 4.442868160504161,\n          \"Y\": 2.0984750651885\n         },\n         {\n          \"X\": 4.467576883636593,\n          \"Y\": 1.4961955053488782\n         },\n         {\n          \"X\": 4.492285606769026,\n          \"Y\": 1.114393148198418\n         },\n         {\n          \"X\": 4.516994329901457,\n          \"Y\": 1.1599262806697297\n         },\n         {\n          \"X\": 4.541703053033889,\n          \"Y\": 0.8376504137825302\n         },\n         {\n          \"X\": 4.566411776166322,\n          \"Y\": 0.779316077022603\n         },\n         {\n          \"X\": 4.591120499298754,\n          \"Y\": 0.7744169363636016\n         },\n         {\n          \"X\": 4.615829222431185,\n          \"Y\": 0.973044435569106\n         },\n         {\n          \"X\": 4.640537945563618,\n          \"Y\": 0.7645531346633573\n         },\n         {\n          \"X\": 4.66524666869605,\n          \"Y\": 0.7572904114936728\n         },\n         {\n          \"X\": 4.689955391828483,\n          \"Y\": 0.6523412182503231\n         },\n         {\n          \"X\": 4.714664114960914,\n          \"Y\": 0.4482146575712663\n         },\n         {\n          \"X\": 4.739372838093346,\n          \"Y\": 0.34577191394521717\n         },\n         {\n          \"X\": 4.764081561225779,\n          \"Y\": 0.39242475294685053\n         },\n         {\n          \"X\": 4.788790284358211,\n          \"Y\": 0.5360607695099395\n         },\n         {\n          \"X\": 4.813499007490642,\n          \"Y\": 0.5798776765417563\n         },\n         {\n          \"X\": 4.838207730623075,\n          \"Y\": 0.5280358317393693\n         },\n         {\n          \"X\": 4.862916453755507,\n          \"Y\": 0.571334176912555\n         },\n         {\n          \"X\": 4.88762517688794,\n          \"Y\": 0.47209046981529823\n         },\n         {\n          \"X\": 4.912333900020372,\n          \"Y\": 0.09359050325590149\n         },\n         {\n          \"X\": 4.937042623152803,\n          \"Y\": 0.32620438660229956\n         },\n         {\n          \"X\": 4.961751346285236,\n          \"Y\": 0.2772999714701909\n         },\n         {\n          \"X\": 4.986460069417668,\n          \"Y\": 0.3667903556694632\n         },\n         {\n          \"X\": 5.011168792550101,\n          \"Y\": 0.18152001255089312\n         },\n         {\n          \"X\": 5.0358775156825315,\n          \"Y\": 0.36129055415867073\n         },\n         {\n          \"X\": 5.060586238814964,\n          \"Y\": 0.22377753284027765\n         },\n         {\n          \"X\": 5.085294961947397,\n          \"Y\": 0.17773777288222908\n         },\n         {\n          \"X\": 5.110003685079829,\n          \"Y\": 0.17645646525135483\n         },\n         {\n          \"X\": 5.13471240821226,\n          \"Y\": 0.08780727066687444\n         },\n         {\n          \"X\": 5.1594211313446925,\n          \"Y\": 0.21696349156720374\n         },\n         {\n          \"X\": 5.184129854477125,\n          \"Y\": 0.17250174801045592\n         },\n         {\n          \"X\": 5.208838577609558,\n          \"Y\": 0.0854566950118135\n         },\n         {\n          \"X\": 5.233547300741988,\n          \"Y\": 0.042410519512412204\n         },\n         {\n          \"X\": 5.258256023874421,\n          \"Y\": 0.16800592410150014\n         },\n         {\n          \"X\": 5.2829647470068535,\n          \"Y\": 0.16701472768429942\n         },\n         {\n          \"X\": 5.307673470139286,\n          \"Y\": 0.04126799341410359\n         },\n         {\n          \"X\": 5.332382193271719,\n          \"Y\": 0.08218399757197797\n         },\n         {\n          \"X\": 5.357090916404149,\n          \"Y\": 0.04072532339385404\n         },\n         {\n          \"X\": 5.381799639536582,\n          \"Y\": 0.08056434530933945\n         },\n         {\n          \"X\": 5.4065083626690145,\n          \"Y\": 0.12010785818091799\n         },\n         {\n          \"X\": 5.431217085801447,\n          \"Y\": 0\n         },\n         {\n          \"X\": 5.455925808933878,\n          \"Y\": 0\n         },\n         {\n          \"X\": 5.48063453206631,\n          \"Y\": 0\n         },\n         {\n          \"X\": 5.505343255198743,\n          \"Y\": 0.07729224513886634\n         },\n         {\n          \"X\": 5.5300519783311755,\n          \"Y\": 0\n         },\n         {\n          \"X\": 5.554760701463606,\n          \"Y\": 0.07606712333441693\n         },\n         {\n          \"X\": 5.579469424596039,\n          \"Y\": 0.037661211181885514\n         },\n         {\n          \"X\": 5.604178147728471,\n          \"Y\": 0\n         },\n         {\n          \"X\": 5.628886870860904,\n          \"Y\": 0.037179537497664714\n         },\n         {\n          \"X\": 5.653595593993335,\n          \"Y\": 0.0366313605933591\n         },\n         {\n          \"X\": 5.678304317125767,\n          \"Y\": 0.07277069223740595\n         },\n         {\n          \"X\": 5.7030130402582,\n          \"Y\": 0\n         },\n         {\n          \"X\": 5.727721763390632,\n          \"Y\": 0\n         },\n         {\n          \"X\": 5.752430486523065,\n          \"Y\": 0\n         },\n         {\n          \"X\": 5.777139209655496,\n          \"Y\": 0\n         },\n         {\n          \"X\": 5.801847932787928,\n          \"Y\": 0.034978286174887394\n         },\n         {\n          \"X\": 5.826556655920361,\n          \"Y\": 0\n         },\n         {\n          \"X\": 5.851265379052793,\n          \"Y\": 0.034278347052329225\n         },\n         {\n          \"X\": 5.875974102185224,\n          \"Y\": 0\n         },\n         {\n          \"X\": 5.900682825317657,\n          \"Y\": 0\n         },\n         {\n          \"X\": 5.925391548450089,\n          \"Y\": 0.03339867929760542\n         },\n         {\n          \"X\": 5.950100271582522,\n          \"Y\": 0\n         },\n         {\n          \"X\": 5.9748089947149525,\n          \"Y\": 0\n         },\n         {\n          \"X\": 5.999517717847385,\n          \"Y\": 0\n         },\n         {\n          \"X\": 6.024226440979818,\n          \"Y\": 0\n         },\n         {\n          \"X\": 6.04893516411225,\n          \"Y\": 0\n         },\n         {\n          \"X\": 6.073643887244681,\n          \"Y\": 0\n         },\n         {\n          \"X\": 6.0983526103771135,\n          \"Y\": 0\n         },\n         {\n          \"X\": 6.123061333509546,\n          \"Y\": 0\n         },\n         {\n          \"X\": 6.147770056641979,\n          \"Y\": 0.06139316984479559\n         },\n         {\n          \"X\": 6.172478779774409,\n          \"Y\": 0\n         },\n         {\n          \"X\": 6.197187502906842,\n          \"Y\": 0\n         },\n         {\n          \"X\": 6.2218962260392745,\n          \"Y\": 0\n         },\n         {\n          \"X\": 6.246604949171707,\n          \"Y\": 0\n         },\n         {\n          \"X\": 6.27131367230414,\n          \"Y\": 0\n         },\n         {\n          \"X\": 6.29602239543657,\n          \"Y\": 0\n         },\n         {\n          \"X\": 6.320731118569003,\n          \"Y\": 0\n         }\n        ]\n       },\n       \"encoding\": {\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"bar\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"sampler plotDistribution\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Haskell - nixpkgs\",\n   \"language\": \"haskell\",\n   \"name\": \"ihaskell_nixpkgs\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": \"ihaskell\",\n   \"file_extension\": \".hs\",\n   \"mimetype\": \"text/x-haskell\",\n   \"name\": \"haskell\",\n   \"pygments_lexer\": \"Haskell\",\n   \"version\": \"9.0.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "notebooks/examples/Ising.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"id\": \"de51b2ba-b424-47c1-9825-4e8087914f69\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \":e TypeFamilies\\n\",\n    \":e GeneralizedNewtypeDeriving\\n\",\n    \":e DeriveTraversable\\n\",\n    \":e TypeSynonymInstances\\n\",\n    \":e FlexibleInstances\\n\",\n    \":e ApplicativeDo\\n\",\n    \":e LambdaCase\\n\",\n    \":e TupleSections\\n\",\n    \"\\n\",\n    \"import Graphics.Gloss.Interface.IO.Simulate (simulateIO, Display (FullScreen))\\n\",\n    \"import Graphics.Gloss (white, Picture (Text, Polygon, Color, Circle, Pictures), simulate, Rectangle (Rectangle), black, red, translate)\\n\",\n    \"import Control.Monad.Bayes.Class (MonadDistribution(bernoulli, uniformD, random, normal), factor, MonadMeasure)\\n\",\n    \"import Control.Monad.Bayes.Sampler.Strict (sampler, sampleIOfixed)\\n\",\n    \"import Control.Monad.Bayes.Traced (mh, mhStep)\\n\",\n    \"import Control.Monad.Bayes.Weighted\\n\",\n    \"import Data.Functor.Compose (Compose(..))\\n\",\n    \"import qualified Data.Vector as V\\n\",\n    \"import Data.Bool (bool)\\n\",\n    \"import Data.Distributive (Distributive(..))\\n\",\n    \"import Data.Functor.Rep (Representable(..), distributeRep, ifoldMapRep)\\n\",\n    \"import Data.Functor.Identity (Identity(..))\\n\",\n    \"import Control.Arrow ((***), Arrow (first, second))\\n\",\n    \"import Control.Comonad.Representable.Store (Store(..), StoreT(..), store, experiment, runStore)\\n\",\n    \"import Control.Comonad (Comonad(..), (=>>))\\n\",\n    \"import Graphics.Gloss.Data.Color (Color)\\n\",\n    \"import Control.Monad (filterM)\\n\",\n    \"import Debug.Trace (trace)\\n\",\n    \"import Data.Monoid (Sum(Sum, getSum))\\n\",\n    \"import Control.Monad.Bayes.Inference.SMC \\n\",\n    \"import Control.Monad.Bayes.Population \\n\",\n    \"import qualified Pipes.Prelude as P\\n\",\n    \"import Pipes ((>->))\\n\",\n    \"import Graphics.Gloss.Interface.IO.Animate (animateIO)\\n\",\n    \"import Data.IORef (newIORef, writeIORef)\\n\",\n    \"import GHC.IORef (readIORef)\\n\",\n    \"import qualified Pipes as P\\n\",\n    \"import Control.Concurrent (forkIO, threadDelay)\\n\",\n    \"import Control.Monad.IO.Class\\n\",\n    \"import Control.Monad.Bayes.Sampler.Strict\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"66f4ec05-fc58-4f99-ac3b-6c5015e19c60\",\n   \"metadata\": {},\n   \"source\": [\n    \"The Ising model is a famous model in statistical mechanics. See the wonderful https://jaan.io/how-does-physics-connect-machine-learning/. Basically, it's a big grid of squares, each of which can be in one of two states. We can assign an \\\"interaction energy\\\" between adjacent states, which says how much they like to be in similar or different states. A configuration of the whole grid (i.e. choosing a setting for each square) determines a global energy, and in turn, a distribution (the Boltzmann distribution) over grids.\\n\",\n    \"\\n\",\n    \"The code borrows heavily from the excellent https://chrispenner.ca/posts/conways-game-of-life which uses a representable store comonad to perform efficient local updates to a grid. The approach should extend easily to similar models with different topologies.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"id\": \"0d9a571f-c793-49a1-9414-c118449353b0\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"\\n\",\n    \"\\n\",\n    \"------\\n\",\n    \"-- Define a board as a length 20 array of length 20 arrays\\n\",\n    \"-- Define a grid as a board and a pointer to a square\\n\",\n    \"------\\n\",\n    \"\\n\",\n    \"-- | Grid a ~ ([[a]], (Int, Int))\\n\",\n    \"type Grid a = Store (Compose VBounded VBounded) a\\n\",\n    \"\\n\",\n    \"type Table = Compose VBounded VBounded\\n\",\n    \"\\n\",\n    \"-- | VBounded a ~ [a]\\n\",\n    \"newtype VBounded a = VBounded (V.Vector a)\\n\",\n    \"  deriving (Eq, Show, Functor, Foldable, Traversable)\\n\",\n    \"\\n\",\n    \"instance Distributive VBounded where\\n\",\n    \"  distribute = distributeRep\\n\",\n    \"\\n\",\n    \"-- | size of the Ising grid\\n\",\n    \"gridSize :: Int\\n\",\n    \"gridSize = 40\\n\",\n    \"\\n\",\n    \"-- | you can view a grid as a function from indices to square values\\n\",\n    \"-- or as an array of square values.\\n\",\n    \"-- These two structures are isomorphic, as witnessed by: \\n\",\n    \"-- index . tabulate === id === tabulate . index\\n\",\n    \"instance Representable VBounded where\\n\",\n    \"  type Rep VBounded = Int\\n\",\n    \"  index (VBounded v) i = v V.! (i `mod` gridSize)\\n\",\n    \"  tabulate desc = VBounded $ V.generate gridSize desc\\n\",\n    \"\\n\",\n    \"-- | make a grid\\n\",\n    \"mkGrid :: [(Int, Int)] -> Grid Bool\\n\",\n    \"mkGrid xs = store (`elem` xs) (0, 0)\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"caa4f57b-2fe1-4158-b662-910d3229decb\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Approach 1: calculate the energy and perform Markov Chain Monte Carlo\\n\",\n    \"\\n\",\n    \"There are two ways we can simulate an Ising model. The first is to define a distribution over grids directly, by drawing from a uniform prior, and adding a factor statement for the energy. One can then sample from this distribution using MCMC, and indeed, the MCMC chain will look like a time-evolving Ising model. Which is very cool!\\n\",\n    \"\\n\",\n    \"Let's do that first:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"id\": \"eb37114e-94c1-438e-baa2-8515fe98248c\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"-- | calculate the energy of a particular square in the grid \\n\",\n    \"-- (which depends on the rest of the grid, in particular its neighbours)\\n\",\n    \"interactionEnergy :: Grid Bool -> Int\\n\",\n    \"interactionEnergy g = numNeighboursSame\\n\",\n    \"  where\\n\",\n    \"    numNeighboursSame = length (filter (==color) neighbours)\\n\",\n    \"    color = extract g\\n\",\n    \"    neighbours = experiment (\\\\s -> addCoords s <$> neighbourCoords) g\\n\",\n    \"    addCoords (x, y) (x', y') = (x + x', y + y')\\n\",\n    \"    neighbourCoords = [(x, y) | x <- [-1, 0, 1], y <- [-1, 0, 1], (x, y) /= (0, 0)]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"id\": \"7a15c7b6-bdf2-4ff3-abb3-94311346a716\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"-- | The prior is uniform over all configurations of the grid\\n\",\n    \"-- We score states based on their energy\\n\",\n    \"model :: MonadMeasure m => m (Grid Bool)\\n\",\n    \"model = do\\n\",\n    \"    let allCoords = [(x,y) | x <- [0..gridSize-1], y <- [0..gridSize-1]]\\n\",\n    \"    coords <- filterM (const $ bernoulli 0.5) allCoords\\n\",\n    \"    let grid = mkGrid coords\\n\",\n    \"        StoreT (Identity energy) _ = extend interactionEnergy grid\\n\",\n    \"        score  = getSum $ foldMap Sum energy\\n\",\n    \"    factor $ exp $ fromIntegral score\\n\",\n    \"    return grid\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"id\": \"e0d27328-ff1f-4fb6-b1f2-e6b323e4dde6\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"---\\n\",\n    \"-- render a grid into ascii using an indexed fold\\n\",\n    \"---\\n\",\n    \"\\n\",\n    \"display :: Grid Bool -> String\\n\",\n    \"display (StoreT (Identity grid) _) = ifoldMapRep match grid where\\n\",\n    \"    match (_,n) b \\n\",\n    \"        | n==0 = \\\"\\\\n|\\\" <> showB b\\n\",\n    \"        | n==gridSize-1 = \\\"|\\\" <> showB b <> \\\"|\\\"\\n\",\n    \"        | otherwise = \\\"|\\\" <> showB b\\n\",\n    \"    showB True = \\\"X\\\"\\n\",\n    \"    showB False = \\\"O\\\"\\n\",\n    \"    \\n\",\n    \"samples = do\\n\",\n    \"  s <- sampler $ unweighted $ mh 2 model\\n\",\n    \"  mapM_ (\\\\x -> putStrLn (\\\"\\\\n\\\\n\\\" <> display x)) $ reverse $ take 2 s\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"id\": \"e532c2fd-b74e-40bb-b487-4f04a6dc4d62\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"|X|O|O|X|X|O|X|X|X|O|X|O|X|O|O|X|O|O|X|X|X|O|O|X|X|O|O|X|O|O|X|O|O|X|X|X|X|O|O|X|\\n\",\n       \"|X|O|X|O|X|O|X|O|X|O|O|X|O|O|X|X|X|X|X|O|X|O|X|X|O|X|X|X|X|X|X|O|X|O|X|O|X|X|O|X|\\n\",\n       \"|O|O|O|X|X|X|X|O|X|O|O|X|X|O|O|X|O|X|X|X|O|X|X|O|X|O|O|O|O|O|O|X|O|O|X|O|O|X|X|O|\\n\",\n       \"|X|X|X|X|X|O|O|O|O|O|O|X|O|X|X|X|X|X|O|O|O|O|X|X|X|X|X|O|X|O|X|O|X|X|X|X|X|X|O|O|\\n\",\n       \"|X|O|O|X|X|O|X|O|O|O|O|O|O|O|X|X|X|O|O|X|O|X|O|O|O|X|O|X|X|O|X|O|X|O|O|X|O|O|X|O|\\n\",\n       \"|O|O|O|O|X|O|O|X|X|O|X|X|X|X|O|O|X|O|O|X|X|O|O|X|O|X|X|O|X|X|X|O|X|X|X|X|O|O|O|O|\\n\",\n       \"|O|O|O|O|X|O|X|O|X|O|O|O|X|O|O|O|X|O|X|O|O|X|X|X|O|X|O|O|X|O|O|O|O|X|X|X|X|X|O|X|\\n\",\n       \"|X|O|O|O|X|X|X|X|X|X|O|X|X|X|X|O|O|O|X|X|X|X|O|O|O|X|X|O|O|X|O|X|X|O|X|O|O|O|X|O|\\n\",\n       \"|O|X|O|O|X|X|O|X|O|X|O|O|X|X|O|X|X|X|O|X|X|X|O|X|O|X|O|O|X|X|O|O|O|O|O|O|X|O|X|O|\\n\",\n       \"|O|X|O|X|O|O|O|O|O|X|O|X|O|O|O|O|O|O|X|O|X|X|X|O|O|O|O|O|X|X|O|O|O|O|X|O|X|X|O|O|\\n\",\n       \"|O|O|O|X|O|X|O|O|O|O|X|X|X|X|X|O|X|X|X|X|X|X|X|O|X|O|O|O|X|X|X|O|X|O|X|O|O|X|X|X|\\n\",\n       \"|X|O|X|O|O|X|O|O|O|X|X|X|X|X|X|O|X|X|O|O|X|O|O|X|X|X|X|O|O|O|O|X|X|X|O|X|X|X|X|O|\\n\",\n       \"|O|X|X|O|O|X|X|X|O|X|O|O|O|O|O|X|O|O|X|X|O|O|O|X|O|O|X|X|O|O|X|O|O|X|X|O|X|X|X|X|\\n\",\n       \"|O|O|X|O|X|O|X|O|X|X|X|O|O|X|O|O|X|X|X|X|X|X|O|X|X|O|X|O|X|O|X|O|O|X|O|O|O|X|X|X|\\n\",\n       \"|O|X|X|X|O|O|O|O|O|X|O|X|X|O|X|O|X|O|O|X|O|X|X|O|O|X|O|X|X|O|O|X|O|X|O|O|O|X|X|O|\\n\",\n       \"|O|O|X|O|O|X|O|O|O|X|O|X|X|O|X|O|X|O|X|X|X|X|O|X|X|X|O|X|X|X|X|X|X|X|X|O|O|O|X|X|\\n\",\n       \"|O|O|X|X|O|O|O|X|O|O|X|O|O|X|X|X|X|O|X|X|O|O|X|O|O|O|X|X|X|X|X|O|O|O|O|O|O|O|X|X|\\n\",\n       \"|X|O|O|X|O|O|X|X|O|O|X|X|X|X|X|X|X|O|O|O|O|O|X|X|O|O|O|O|O|O|O|O|X|X|O|X|O|X|O|X|\\n\",\n       \"|O|O|O|O|O|O|O|X|X|O|O|X|X|X|X|X|O|X|O|O|X|X|O|O|O|O|X|O|X|O|X|O|X|O|X|O|X|O|O|O|\\n\",\n       \"|X|X|X|O|X|O|X|X|O|O|X|O|O|O|X|O|O|O|X|X|O|X|X|O|O|O|X|O|O|O|X|X|O|O|X|O|O|O|O|O|\\n\",\n       \"|X|X|O|O|O|X|O|O|O|X|O|O|X|X|O|O|X|X|O|X|X|X|O|X|O|O|X|X|O|O|X|X|X|O|X|X|X|X|X|O|\\n\",\n       \"|X|O|X|X|O|X|O|X|O|O|O|X|X|O|O|X|O|O|X|O|O|O|O|O|X|X|X|X|O|X|X|O|O|X|O|O|O|X|X|O|\\n\",\n       \"|X|O|X|X|X|X|O|O|X|X|O|X|O|X|O|X|X|X|O|X|X|O|O|X|O|X|O|X|X|X|O|X|X|X|X|O|X|O|O|O|\\n\",\n       \"|X|X|X|X|X|O|X|X|X|X|X|O|X|O|O|X|X|X|X|O|X|O|O|O|O|X|X|X|O|X|O|O|O|O|O|O|X|X|X|O|\\n\",\n       \"|O|X|O|X|O|O|X|X|O|O|O|X|O|X|O|X|O|O|O|X|O|X|O|X|X|X|O|O|X|O|O|O|O|O|O|O|O|O|O|X|\\n\",\n       \"|X|O|X|O|X|X|X|X|O|X|O|O|X|O|O|X|X|X|X|X|X|O|O|O|X|O|O|X|O|X|X|O|X|X|O|O|O|O|O|O|\\n\",\n       \"|O|O|X|X|X|X|O|O|O|O|O|O|O|O|X|X|O|X|X|O|X|X|X|X|X|X|X|O|X|X|O|O|X|O|X|X|X|X|X|X|\\n\",\n       \"|X|O|O|X|X|X|X|X|X|O|X|O|O|O|O|X|O|O|O|O|X|X|O|O|O|O|O|X|X|O|X|X|O|O|X|X|X|X|O|O|\\n\",\n       \"|O|O|X|X|O|O|X|O|O|O|O|O|X|X|X|O|O|O|O|X|O|X|X|X|O|O|X|O|X|X|X|O|X|X|O|O|O|X|O|O|\\n\",\n       \"|X|O|O|X|O|O|O|O|X|X|X|O|X|X|X|O|X|O|O|X|O|X|O|X|O|O|X|X|O|O|O|X|O|X|O|X|O|O|O|X|\\n\",\n       \"|O|X|O|X|X|X|O|X|X|X|O|O|O|X|X|O|X|O|X|O|O|X|X|X|O|X|O|O|O|X|X|X|O|X|O|O|O|X|O|X|\\n\",\n       \"|O|O|O|X|O|O|O|O|O|O|X|O|O|X|X|X|O|O|O|O|O|O|X|X|O|X|X|X|X|O|X|X|O|O|O|X|O|O|O|O|\\n\",\n       \"|X|O|O|O|X|X|X|X|O|X|X|O|O|O|X|X|X|X|O|O|O|X|X|X|O|X|O|O|X|X|X|O|X|X|X|X|X|O|O|O|\\n\",\n       \"|X|O|X|O|X|O|X|O|O|X|O|O|X|X|O|X|X|O|X|X|O|X|X|O|O|O|O|X|O|X|O|O|X|O|O|O|X|O|O|O|\\n\",\n       \"|O|X|O|O|O|O|O|O|X|X|O|X|X|X|O|X|X|X|X|X|X|O|O|O|X|X|X|X|O|O|O|X|O|O|O|O|O|O|X|O|\\n\",\n       \"|O|O|X|X|X|O|O|O|X|O|O|X|X|X|O|X|O|O|O|O|X|X|X|X|O|O|O|X|O|O|O|O|X|O|X|O|O|X|O|O|\\n\",\n       \"|O|O|X|X|O|X|O|X|O|X|O|X|O|X|O|X|O|X|O|X|O|O|O|O|X|X|X|O|X|O|X|O|O|X|X|O|O|O|X|X|\\n\",\n       \"|X|X|X|O|O|X|X|X|O|O|O|O|X|X|X|X|O|X|X|O|O|O|X|O|O|X|X|X|X|X|X|X|O|O|O|X|O|O|O|O|\\n\",\n       \"|X|O|O|X|X|X|O|O|O|O|O|X|X|X|X|X|X|O|O|X|O|X|X|X|X|O|O|X|O|O|X|X|X|X|X|O|X|X|O|O|\\n\",\n       \"|O|O|X|O|O|O|X|X|O|X|O|X|O|X|X|X|X|O|X|X|O|X|O|X|X|X|O|X|O|O|O|O|X|X|X|X|X|O|O|X|\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"\\n\",\n       \"|X|O|O|X|X|O|X|X|X|O|X|O|X|O|O|X|O|O|X|X|X|O|O|X|X|O|O|X|O|O|X|O|O|X|X|X|X|O|O|X|\\n\",\n       \"|X|O|X|O|X|O|X|O|X|O|O|X|O|O|X|X|X|X|X|O|X|O|X|X|O|X|X|X|X|X|X|O|X|O|X|O|X|X|O|X|\\n\",\n       \"|O|O|O|X|X|X|X|X|X|O|O|X|X|O|O|X|O|X|X|X|O|X|X|O|X|O|O|O|O|O|O|X|O|O|X|O|O|X|X|O|\\n\",\n       \"|X|X|X|X|X|O|O|O|O|O|O|X|O|X|X|X|X|X|O|O|O|O|X|X|X|X|X|O|X|O|X|O|X|X|X|X|X|X|O|O|\\n\",\n       \"|X|O|O|X|X|O|X|O|O|O|O|O|O|O|X|X|X|O|O|X|O|X|O|O|O|X|O|X|X|O|X|O|X|O|O|X|O|O|X|O|\\n\",\n       \"|O|O|O|O|X|O|O|X|X|O|X|X|X|X|O|O|X|O|O|X|X|O|O|X|O|X|X|O|X|X|X|O|X|X|X|X|O|O|O|O|\\n\",\n       \"|O|O|O|O|X|O|X|O|X|O|O|O|X|O|O|O|X|O|X|O|O|X|X|X|O|X|O|O|X|O|O|O|O|X|X|X|X|X|O|X|\\n\",\n       \"|X|O|O|O|X|X|X|X|X|X|O|X|X|X|X|O|O|O|X|X|X|X|O|O|O|X|X|O|O|X|O|X|X|O|X|O|O|O|X|O|\\n\",\n       \"|O|X|O|O|X|X|O|X|O|X|O|O|X|X|O|X|X|X|O|X|X|X|O|X|O|X|O|O|X|X|O|O|O|O|O|O|X|O|X|O|\\n\",\n       \"|O|X|O|X|O|O|O|O|O|X|O|X|O|O|O|O|O|O|X|O|X|X|X|O|O|O|O|O|X|X|O|O|O|O|X|O|X|X|O|O|\\n\",\n       \"|O|O|O|X|O|X|O|O|O|O|X|X|X|X|X|O|X|X|X|X|X|X|X|O|X|O|O|O|X|X|X|O|X|O|X|O|O|X|X|X|\\n\",\n       \"|X|O|X|O|O|X|O|O|O|X|X|X|X|X|X|O|X|X|O|O|X|O|O|X|X|X|X|O|O|O|O|X|X|X|O|X|X|X|X|O|\\n\",\n       \"|O|X|X|O|O|X|X|X|O|X|O|O|O|O|O|X|O|O|X|X|O|O|O|X|O|O|X|X|O|O|X|O|O|X|X|O|X|X|X|X|\\n\",\n       \"|O|O|X|O|X|O|X|O|X|X|X|O|O|X|O|O|X|X|X|X|X|X|O|X|X|O|X|O|X|O|X|O|O|X|O|O|O|X|X|X|\\n\",\n       \"|O|X|X|X|O|O|O|O|O|X|O|X|X|O|X|O|X|O|O|X|O|X|X|O|O|X|O|X|X|O|O|X|O|X|O|O|O|X|X|O|\\n\",\n       \"|O|O|X|O|O|X|O|O|O|X|O|X|X|O|X|O|X|O|X|X|X|X|O|X|X|X|O|X|X|X|X|X|X|X|X|O|O|O|X|X|\\n\",\n       \"|O|O|X|X|O|O|O|X|O|O|X|O|O|X|X|X|X|O|X|X|O|O|X|O|O|O|X|X|X|X|X|O|O|O|O|O|O|O|X|X|\\n\",\n       \"|X|O|O|X|O|O|X|X|O|O|X|X|X|X|X|X|X|O|O|O|O|O|X|X|O|O|O|O|O|O|O|O|X|X|O|X|O|X|O|X|\\n\",\n       \"|O|O|O|O|O|O|O|X|X|O|O|X|X|X|X|X|O|X|O|O|X|X|O|O|O|O|X|O|X|O|X|O|X|O|X|O|X|O|O|O|\\n\",\n       \"|X|X|X|O|X|O|X|X|O|O|X|O|O|O|X|O|O|O|X|X|O|X|X|O|O|O|X|O|O|O|X|X|O|O|X|O|O|O|O|O|\\n\",\n       \"|X|X|O|O|O|X|O|O|O|X|O|O|X|X|O|O|X|X|O|X|X|X|O|X|O|O|X|X|O|O|X|X|X|O|X|X|X|X|X|O|\\n\",\n       \"|X|O|X|X|O|X|O|X|O|O|O|X|X|O|O|X|O|O|X|O|O|O|O|O|X|X|X|X|O|X|X|O|O|X|O|O|O|X|X|O|\\n\",\n       \"|X|O|X|X|X|X|O|O|X|X|O|X|O|X|O|X|X|X|O|X|X|O|O|X|O|X|O|X|X|X|O|X|X|X|X|O|X|O|O|O|\\n\",\n       \"|X|X|X|X|X|O|X|X|X|X|X|O|X|O|O|X|X|X|X|O|X|O|O|O|O|X|X|X|O|X|O|O|O|O|O|O|X|X|X|O|\\n\",\n       \"|O|X|O|X|O|O|X|X|O|O|O|X|O|X|O|X|O|O|O|X|O|X|O|X|X|X|O|O|X|O|O|O|O|O|O|O|O|O|O|X|\\n\",\n       \"|X|O|X|O|X|X|X|X|O|X|O|O|X|O|O|X|X|X|X|X|X|O|O|O|X|O|O|X|O|X|X|O|X|X|O|O|O|O|O|O|\\n\",\n       \"|O|O|X|X|X|X|O|O|O|O|O|O|O|O|X|X|O|X|X|O|X|X|X|X|X|X|X|O|X|X|O|O|X|O|X|X|X|X|X|X|\\n\",\n       \"|X|O|O|X|X|X|X|X|X|O|X|O|O|O|O|X|O|O|O|O|X|X|O|O|O|O|O|X|X|O|X|X|O|O|X|X|X|X|O|O|\\n\",\n       \"|O|O|X|X|O|O|X|O|O|O|O|O|X|X|X|O|O|O|O|X|O|X|X|X|O|O|X|O|X|X|X|O|X|X|O|O|O|X|O|O|\\n\",\n       \"|X|O|O|X|O|O|O|O|X|X|X|O|X|X|X|O|X|O|O|X|O|X|O|X|O|O|X|X|O|O|O|X|O|X|O|X|O|O|O|X|\\n\",\n       \"|O|X|O|X|X|X|O|X|X|X|O|O|O|X|X|O|X|O|X|O|O|X|X|X|O|X|O|O|O|X|X|X|O|X|O|O|O|X|O|X|\\n\",\n       \"|O|O|O|X|O|O|O|O|O|O|X|O|O|X|X|X|O|O|O|O|O|O|X|X|O|X|X|X|X|O|X|X|O|O|O|X|O|O|O|O|\\n\",\n       \"|X|O|O|O|X|X|X|X|O|X|X|O|O|O|X|X|X|X|O|O|O|X|X|X|O|X|O|O|X|X|X|O|X|X|X|X|X|O|O|O|\\n\",\n       \"|X|O|X|O|X|O|X|O|O|X|O|O|X|X|O|X|X|O|X|X|O|X|X|O|O|O|O|X|O|X|O|O|X|O|O|O|X|O|O|O|\\n\",\n       \"|O|X|O|O|O|O|O|O|X|X|O|X|X|X|O|X|X|X|X|X|X|O|O|O|X|X|X|X|O|O|O|X|O|O|O|O|O|O|X|O|\\n\",\n       \"|O|O|X|X|X|O|O|O|X|O|O|X|X|X|O|X|O|O|O|O|X|X|X|X|O|O|O|X|O|O|O|O|X|O|X|O|O|X|O|O|\\n\",\n       \"|O|O|X|X|O|X|O|X|O|X|O|X|O|X|O|X|O|X|O|X|O|O|O|O|X|X|X|O|X|O|X|O|O|X|X|O|O|O|X|X|\\n\",\n       \"|X|X|X|O|O|X|X|X|O|O|O|O|X|X|X|X|O|X|X|O|O|O|X|O|O|X|X|X|X|X|X|X|O|O|O|X|O|O|O|O|\\n\",\n       \"|X|O|O|X|X|X|O|O|O|O|O|X|X|X|X|X|X|O|O|X|O|X|X|X|X|O|O|X|O|O|X|X|X|X|X|O|X|X|O|O|\\n\",\n       \"|O|O|X|O|O|O|X|X|O|X|O|X|O|X|X|X|X|O|X|X|O|X|O|X|X|X|O|X|O|O|O|O|X|X|X|X|X|O|O|X|\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"samples\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"8e6c9193-9fa3-4d31-9af5-b1512c3c6d1f\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Approach 2: perform the stochastic evolution directly\\n\",\n    \"\\n\",\n    \"Instead of indirectly obtaining the Ising model time evolution as a Markov Chain over a model, we can also just directly write the kernel which moves from one state of a grid to the next, stochastically. We express the chain as a stream (a `Producer`) and display that.\\n\",\n    \"\\n\",\n    \"The one subtlety is that we need a function `Store (m a) -> m (Store a)`, i.e. a `Traversable` instance for `Store`, so that we can expand local stochasticity to global stochasticity. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"id\": \"f9dfa532-e417-4775-a2bf-d3d1f1486d87\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"instance Foldable (Store g)\\n\",\n    \"instance (Traversable g, Representable g, Functor g) => Traversable (Store g) where\\n\",\n    \"  sequenceA g = fmap (uncurry store . first index) (distributed g) where\\n\",\n    \"    distributed :: (Representable g, Traversable g, Applicative m) => Store g (m a) -> m (g a, Rep g)\\n\",\n    \"    distributed  g = grab $\\n\",\n    \"      first (sequenceA . tabulate) $\\n\",\n    \"      runStore g\\n\",\n    \"    grab (ma, b) = (,b) <$> ma\\n\",\n    \"\\n\",\n    \"step :: MonadDistribution m =>  Grid Bool -> m (Grid Bool)\\n\",\n    \"step = sequence . extend rule \\n\",\n    \"\\n\",\n    \"rule :: MonadDistribution m => Grid Bool -> m Bool\\n\",\n    \"rule = experiment (uniformD . neighbours)\\n\",\n    \"  where\\n\",\n    \"    neighbours s = addCoords s <$> neighbourCoords\\n\",\n    \"    addCoords (x, y) (x', y') = (x + x', y + y')\\n\",\n    \"    neighbourCoords = [(x, y) | x <- [-1, 0, 1], y <- [-1, 0, 1], (x, y) /= (0, 0)]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"id\": \"570a3655-5b2b-49d2-94af-ecb35227cc23\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"\\n\",\n       \"|X|X|O|O|O|O|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|\\n\",\n       \"|X|O|O|O|O|O|O|O|O|O|X|O|O|X|O|X|X|X|O|X|O|X|O|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|X|O|X|X|O|O|X|X|X|X|X|X|X|X|X|X|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|X|O|O|O|O|X|O|X|X|O|X|X|X|X|O|O|O|O|X|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|\\n\",\n       \"|O|O|O|O|O|X|X|X|X|X|X|X|O|O|O|X|X|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|X|O|\\n\",\n       \"|O|O|O|O|X|X|X|O|X|X|X|X|X|X|X|O|O|X|X|X|O|O|O|O|O|O|O|O|O|X|O|X|X|O|O|O|X|O|O|O|\\n\",\n       \"|O|O|O|O|X|X|O|X|O|X|X|X|X|X|X|O|X|X|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|O|\\n\",\n       \"|O|O|X|O|X|X|X|X|X|X|X|X|X|O|X|X|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|X|X|O|O|O|O|O|\\n\",\n       \"|O|O|O|X|O|O|X|X|X|X|X|X|O|X|X|X|O|X|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|O|\\n\",\n       \"|O|O|X|O|O|O|O|O|O|O|O|X|X|O|O|X|X|O|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|X|X|X|X|X|X|X|O|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|X|O|O|X|X|X|O|O|X|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|X|X|O|X|X|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|X|\\n\",\n       \"|X|O|O|O|O|O|O|O|O|O|X|O|O|O|X|X|X|O|X|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|X|O|O|O|O|O|O|O|O|O|X|O|X|X|X|X|O|O|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|X|O|X|O|O|O|O|O|O|O|O|X|O|X|X|O|X|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|\\n\",\n       \"|O|X|O|O|O|O|O|O|O|O|O|O|O|O|X|O|X|O|O|O|O|O|O|O|X|O|O|O|O|O|O|O|O|O|O|X|X|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|O|O|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|X|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|X|X|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|X|X|X|X|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|X|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|X|O|X|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|X|O|O|X|O|X|X|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|X|O|O|O|O|O|O|O|O|X|O|O|O|O|O|X|X|O|O|O|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|X|X|X|O|O|O|O|O|O|O|O|X|O|X|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|O|X|X|O|O|O|X|O|O|X|X|O|O|O|O|O|O|O|O|O|O|O|O|O|X|\\n\",\n       \"|O|X|O|O|O|O|X|O|O|X|O|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|\\n\",\n       \"|O|X|O|O|O|O|O|X|O|X|O|X|X|O|O|O|O|X|O|O|O|O|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|X|\\n\",\n       \"|O|O|O|O|X|O|X|O|X|X|O|X|X|X|O|X|X|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|\\n\",\n       \"|O|O|O|O|O|O|X|X|O|O|O|X|X|O|X|O|O|X|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|X|O|X|\\n\",\n       \"|O|O|O|O|X|X|X|X|O|X|X|X|O|O|O|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|X|O|X|X|X|O|\\n\",\n       \"|O|O|O|O|O|X|X|O|X|X|X|X|X|X|X|X|O|X|X|O|O|O|O|O|O|O|O|O|O|O|X|O|O|X|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|X|X|X|O|X|X|O|X|X|X|X|O|X|X|O|O|X|O|O|O|O|O|O|O|O|O|O|X|O|X|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|X|X|X|X|X|X|X|X|X|O|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|X|O|X|O|O|X|O|X|X|X|X|O|X|O|X|O|X|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|\\n\",\n       \"|O|O|O|X|O|O|O|O|X|O|X|X|O|X|X|X|O|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|X|O|X|X|X|X|X|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|\\n\",\n       \"|X|O|O|O|O|O|O|O|O|O|X|O|O|X|X|X|X|O|O|X|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|X|X|O|X|O|X|O|O|X|X|X|X|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|X|O|X|O|O|O|O|O|O|O|O|O|X|O|X|X|X|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|X|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|X|X|O|O|O|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|\\n\",\n       \"|O|X|O|X|O|O|O|O|O|O|O|O|O|X|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|X|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|X|O|X|X|O|O|X|X|O|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|X|X|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|X|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|X|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|X|X|X|O|X|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|X|X|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|X|X|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|X|X|O|X|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|O|O|O|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|O|O|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|X|X|X|O|O|O|X|X|X|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|O|O|X|O|O|O|O|O|X|X|X|X|O|O|O|O|O|X|O|O|X|O|X|O|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|\\n\",\n       \"|X|O|O|O|O|O|O|O|O|X|O|O|O|O|O|O|O|O|O|X|O|O|X|O|X|O|X|O|O|O|O|O|O|O|O|O|O|O|O|O|\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"steps :: MonadDistribution m => P.Producer (Grid Bool) m ()\\n\",\n    \"steps = P.unfoldr\\n\",\n    \"          (fmap (Right . (\\\\y -> (y,y))) . step)\\n\",\n    \"          (mkGrid [(m,n) | m <- [0..10], n <- [0..20]])\\n\",\n    \"          \\n\",\n    \"\\n\",\n    \"sampler $ P.runEffect (steps >-> P.drop 50 >-> P.mapM (liftIO . putStrLn . display) >-> P.take 2 >-> P.drain)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Haskell - nixpkgs\",\n   \"language\": \"haskell\",\n   \"name\": \"ihaskell_nixpkgs\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": \"ihaskell\",\n   \"file_extension\": \".hs\",\n   \"mimetype\": \"text/x-haskell\",\n   \"name\": \"haskell\",\n   \"pygments_lexer\": \"Haskell\",\n   \"version\": \"9.0.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "notebooks/examples/Lenses.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"46d2f1ea-9998-43d3-9e85-6ea21ea32956\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Lenses and probability\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"id\": \"51f00092-2847-4e33-8976-733d2b6db324\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \":e BlockArguments\\n\",\n    \":e LambdaCase\\n\",\n    \":e OverloadedStrings\\n\",\n    \"\\n\",\n    \"import Data.Aeson.Lens\\n\",\n    \"import Control.Lens hiding (nth, (#))\\n\",\n    \"import Data.Aeson\\n\",\n    \"import Data.Maybe (fromMaybe)\\n\",\n    \"import Control.Monad.Bayes.Class\\n\",\n    \"import Control.Monad.Bayes.Sampler.Strict\\n\",\n    \"import Control.Monad.Bayes.Weighted\\n\",\n    \"import Data.Monoid \\n\",\n    \"import qualified Data.ByteString.Lazy as B\\n\",\n    \"import Text.Pretty.Simple\\n\",\n    \"import qualified Data.Text as T\\n\",\n    \"import Control.Monad\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"c7eba945-6bda-41ff-9a77-7e9962f3b739\",\n   \"metadata\": {},\n   \"source\": [\n    \"Lenses are *getters* and *setters*, i.e. ways of extracting a value from inside a data structure or updating that value.\\n\",\n    \"\\n\",\n    \"Because of their type in the Haskell `lens` library, namely `forall f. (a -> f b) -> (c -> f d)`, we can specialize `f` to `MonadDistribution m => m`, and so use any lens to **probabilistically update** a data structure's elements in complex ways.\\n\",\n    \"\\n\",\n    \"As an example of how easy and extensible this, we provide some examples using lenses to manipulate a JSON file. This relies on the `aeson` and `lens-aeson` packages.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"id\": \"834e9c3d-87b4-4ef5-ae61-0f411f5199f2\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Object\\n\",\n       \"  ( fromList\\n\",\n       \"    [\\n\",\n       \"      ( \\\"address\\\"\\n\",\n       \"      , Object\\n\",\n       \"        ( fromList\\n\",\n       \"          [ ( \\\"id\\\", Number 5.4 ), ( \\\"streetAddress\\\", String \\\"21 2nd Street\\\" ) ]\\n\",\n       \"        )\\n\",\n       \"      )\\n\",\n       \"    ,\\n\",\n       \"      ( \\\"age\\\", Number 27.0 )\\n\",\n       \"    ,\\n\",\n       \"      ( \\\"height\\\", Number 1.5 )\\n\",\n       \"    ,\\n\",\n       \"      ( \\\"isAlive\\\", Bool True )\\n\",\n       \"    ,\\n\",\n       \"      ( \\\"name\\\", String \\\"John\\\" )\\n\",\n       \"    ]\\n\",\n       \"  )\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"json <- fromMaybe undefined . decode <$> B.readFile \\\"../file.json\\\" :: IO Value\\n\",\n    \"\\n\",\n    \"pPrintCustom = pPrintOpt CheckColorTty defaultOutputOptionsNoColor {outputOptionsCompact = True, outputOptionsIndentAmount = 2} \\n\",\n    \"pPrintCustom json\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"1f862322-d071-44d4-a874-0a7002550b56\",\n   \"metadata\": {},\n   \"source\": [\n    \"For example, if I have a function that randomly flips a boolean or a function that puts noise into a string, like\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"id\": \"52b5b2e7-6faf-41a9-9e96-b57a6dc30a48\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"randomlyFlip :: MonadDistribution m => Bool -> m Bool\\n\",\n    \"randomlyFlip True = bernoulli 0.01\\n\",\n    \"randomlyFlip False = bernoulli 0.9\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"id\": \"514ffd97-35fb-470d-8bf9-8aa38eec0119\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"noisifyString :: MonadDistribution m => T.Text -> m T.Text\\n\",\n    \"noisifyString t = fmap T.pack $ forM (T.unpack t) $ \\\\letter -> do\\n\",\n    \"    x <- bernoulli 0.2\\n\",\n    \"    if x then uniformD \\\"abcdefghijklmnopqrstuvwxyz\\\" else return letter\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"60d0dabd-52b6-4919-8520-b982efe0a979\",\n   \"metadata\": {},\n   \"source\": [\n    \"then I can use it to update the \\\"isAlive\\\" value as follows, using the lens `(_Object . traverse . _Bool)` which points to the json object's list of element's boolean element:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"id\": \"0ce3c580-a097-47ff-8292-f8570ed6aebb\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Object\\n\",\n       \"  ( fromList\\n\",\n       \"    [\\n\",\n       \"      ( \\\"address\\\"\\n\",\n       \"      , Object\\n\",\n       \"        ( fromList\\n\",\n       \"          [ ( \\\"id\\\", Number 5.4 ), ( \\\"streetAddress\\\", String \\\"21 2nd Street\\\" ) ]\\n\",\n       \"        )\\n\",\n       \"      )\\n\",\n       \"    ,\\n\",\n       \"      ( \\\"age\\\", Number 27.0 )\\n\",\n       \"    ,\\n\",\n       \"      ( \\\"height\\\", Number 1.5 )\\n\",\n       \"    ,\\n\",\n       \"      ( \\\"isAlive\\\", Bool False )\\n\",\n       \"    ,\\n\",\n       \"      ( \\\"name\\\", String \\\"John\\\" )\\n\",\n       \"    ]\\n\",\n       \"  )\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"pPrintCustom =<< sampleIOfixed ((_Object . traverse . _Bool) randomlyFlip json)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"5ffa03fb-8a44-40dd-a034-79c2bf3e3054\",\n   \"metadata\": {},\n   \"source\": [\n    \"Using the `Plated` instance of json values, I can do more powerful operations, like updating all doubles, bools and strings at arbitrarily nested positions in the json\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"id\": \"ef68efea-f0c9-4161-9b1f-510678195c6e\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"jsonDist :: Distribution Value\\n\",\n    \"jsonDist = \\n\",\n    \"    ((transformM . _Double) (\\\\case x -> normal x 0.001) >=>\\n\",\n    \"    (transformM . _Bool) randomlyFlip >=>\\n\",\n    \"    (transformM . _String) noisifyString\\n\",\n    \"    )\\n\",\n    \"    json\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"id\": \"abd5a2af-f4a6-4cbf-b242-9d79bc18004e\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Object\\n\",\n       \"  ( fromList\\n\",\n       \"    [\\n\",\n       \"      ( \\\"address\\\"\\n\",\n       \"      , Object\\n\",\n       \"        ( fromList\\n\",\n       \"          [\\n\",\n       \"            ( \\\"id\\\", Number 5.398324403347256605911752558313310146331787109375 )\\n\",\n       \"          ,\\n\",\n       \"            ( \\\"streetAddress\\\", String \\\"21 fnd Stredt\\\" )\\n\",\n       \"          ]\\n\",\n       \"        )\\n\",\n       \"      )\\n\",\n       \"    ,\\n\",\n       \"      ( \\\"age\\\", Number 27.001264842576262026341282762587070465087890625 )\\n\",\n       \"    ,\\n\",\n       \"      ( \\\"height\\\"\\n\",\n       \"      , Number 1.5021398495523310412380624256911687552928924560546875\\n\",\n       \"      )\\n\",\n       \"    ,\\n\",\n       \"      ( \\\"isAlive\\\", Bool False )\\n\",\n       \"    ,\\n\",\n       \"      ( \\\"name\\\", String \\\"lohn\\\" )\\n\",\n       \"    ]\\n\",\n       \"  )\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"pPrintCustom =<< sampleIOfixed (unweighted jsonDist)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Haskell - nixpkgs\",\n   \"language\": \"haskell\",\n   \"name\": \"ihaskell_nixpkgs\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": \"ihaskell\",\n   \"file_extension\": \".hs\",\n   \"mimetype\": \"text/x-haskell\",\n   \"name\": \"haskell\",\n   \"pygments_lexer\": \"Haskell\",\n   \"version\": \"9.0.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "notebooks/examples/Parsing.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"2a798ffe-30c0-43ec-9614-c84c2a433da5\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Probabilistic Parser Combinators\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"id\": \"b14be2d4-ec16-46d3-8cd9-810a25f70495\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import Text.Megaparsec\\n\",\n    \"import Text.Megaparsec.Char\\n\",\n    \"import Data.Char\\n\",\n    \"import qualified Data.Text as T\\n\",\n    \"import Control.Monad.Bayes.Class\\n\",\n    \"import Control.Monad.Bayes.Sampler.Strict\\n\",\n    \"import Control.Monad.Bayes.Weighted\\n\",\n    \"import Control.Monad.Bayes.Population\\n\",\n    \"import Control.Monad.Bayes.Enumerator\\n\",\n    \"import Control.Monad.Bayes.Inference.SMC\\n\",\n    \"import Control.Monad.Trans (lift)\\n\",\n    \"import Control.Monad (join, replicateM)\\n\",\n    \"import Data.Void\\n\",\n    \"import Control.Monad.Bayes.Enumerator\\n\",\n    \"import Text.Pretty.Simple\\n\",\n    \"\\n\",\n    \":e OverloadedStrings\\n\",\n    \":e FlexibleContexts\\n\",\n    \":e GADTs\\n\",\n    \":e LambdaCase\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"97f7ae67-5a7f-4650-8530-72385d84b019\",\n   \"metadata\": {},\n   \"source\": [\n    \"Probability interfaces nicely with parser combinators from libraries like `megaparsec`. A parser in this setting is roughly a function `[Char] -> m (a, [Char])`, in other words a function which (monadically) strips off a prefix of the input string and returns a result. \\n\",\n    \"\\n\",\n    \"To make this probabilistic, we simply set `m` to a probability monad. The result of parsing is then a distribution over possible parses (and possible parse failures).\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"id\": \"5aec194f-b147-456b-8be0-46c12f4ed495\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"alphabet = map (: []) ['h', 'i', 'x']\\n\",\n    \"\\n\",\n    \"noise x = do\\n\",\n    \"    perturb <- lift $ bernoulli 0.1\\n\",\n    \"    if perturb then lift $ uniformD alphabet else return x\\n\",\n    \"\\n\",\n    \"letter = do\\n\",\n    \"    true <-  lift $ uniformD [\\\"h\\\", \\\"i\\\",\\\"x\\\"]\\n\",\n    \"    predicted <- noise true\\n\",\n    \"    observed <- lookAhead (foldr1 (<|>) [\\\"h\\\",\\\"i\\\", \\\"x\\\"])\\n\",\n    \"    lift . condition $ predicted == observed\\n\",\n    \"    string observed\\n\",\n    \"    return $ head true \\n\",\n    \"    \\n\",\n    \"word = (do \\n\",\n    \"    wd <- some letter\\n\",\n    \"    lift $ factor (if wd `elem` [\\\"hi\\\", \\\"goodbye\\\"] then 100 else 1)\\n\",\n    \"    return wd\\n\",\n    \"    ) <* eof\\n\",\n    \"\\n\",\n    \"errorBundlePretty' :: (TraversableStream s, VisualStream s) => ParseErrorBundle s Void -> String \\n\",\n    \"errorBundlePretty' = errorBundlePretty\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"run parser input = either (T.pack . errorBundlePretty' ) (T.pack . show) <$> runParserT parser \\\"\\\" input\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"id\": \"e64782da-ddcc-41bd-aa29-b8f2dcd27184\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[\\n\",\n       \"  ( \\\"\\\"hi\\\"\\\", 0.7563333333333333 )\\n\",\n       \",\\n\",\n       \"  ( \\\"\\\"hx\\\"\\\", 0.20799999999999993 )\\n\",\n       \",\\n\",\n       \"  ( \\\"\\\"xx\\\"\\\", 1.5000000000000038 e- 2 )\\n\",\n       \",\\n\",\n       \"  ( \\\"\\\"hh\\\"\\\", 1.06666666666667 e- 2 )\\n\",\n       \",\\n\",\n       \"  ( \\\"\\\"ix\\\"\\\", 1.0000000000000014 e- 2 )\\n\",\n       \"]\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"pPrintCustom = pPrintOpt CheckColorTty defaultOutputOptionsNoColor {outputOptionsCompact = True, outputOptionsIndentAmount = 2} \\n\",\n    \"\\n\",\n    \"runWordParser w = do\\n\",\n    \"    x <- sampler \\n\",\n    \"        . runPopulationT \\n\",\n    \"        . smc SMCConfig {numSteps = 5, numParticles = 3000, resampler = resampleMultinomial} \\n\",\n    \"        $ run word w\\n\",\n    \"    pPrintCustom $ toEmpiricalWeighted x\\n\",\n    \"    \\n\",\n    \"runWordParser \\\"hx\\\"\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"id\": \"bff38aec-9249-4d0e-b173-20ccecda9ab3\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[\\n\",\n       \"  ( \\\"\\\"hi\\\"\\\", 0.7813333333333331 )\\n\",\n       \",\\n\",\n       \"  ( \\\"\\\"ii\\\"\\\", 0.2046666666666667 )\\n\",\n       \",\\n\",\n       \"  ( \\\"\\\"xi\\\"\\\", 6.66666666666668 e- 3 )\\n\",\n       \",\\n\",\n       \"  ( \\\"\\\"ix\\\"\\\", 4.333333333333346 e- 3 )\\n\",\n       \",\\n\",\n       \"  ( \\\"\\\"ih\\\"\\\", 1.6666666666666711 e- 3 )\\n\",\n       \",\\n\",\n       \"  ( \\\"\\\"xh\\\"\\\", 1.0000000000000028 e- 3 )\\n\",\n       \",\\n\",\n       \"  ( \\\"\\\"xx\\\"\\\", 3.333333333333342 e- 4 )\\n\",\n       \"]\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"runWordParser \\\"ii\\\"\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"id\": \"7ad652ee-3e29-4cce-8d50-e1fd2e5c26ea\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[\\n\",\n       \"  ( \\\"\\\"hii\\\"\\\", 0.8063333333333336 )\\n\",\n       \",\\n\",\n       \"  ( \\\"\\\"xii\\\"\\\", 3.9333333333333186 e- 2 )\\n\",\n       \",\\n\",\n       \"  ( \\\"\\\"hhi\\\"\\\", 3.533333333333321 e- 2 )\\n\",\n       \",\\n\",\n       \"  ( \\\"\\\"hix\\\"\\\", 2.966666666666659 e- 2 )\\n\",\n       \",\\n\",\n       \"  ( \\\"\\\"hih\\\"\\\", 2.8999999999999908 e- 2 )\\n\",\n       \",\\n\",\n       \"  ( \\\"\\\"hxi\\\"\\\", 2.633333333333325 e- 2 )\\n\",\n       \",\\n\",\n       \"  ( \\\"\\\"iii\\\"\\\", 1.666666666666663 e- 2 )\\n\",\n       \",\\n\",\n       \"  ( \\\"\\\"hxx\\\"\\\", 4.333333333333327 e- 3 )\\n\",\n       \",\\n\",\n       \"  ( \\\"\\\"xih\\\"\\\", 3.999999999999995 e- 3 )\\n\",\n       \",\\n\",\n       \"  ( \\\"\\\"ixi\\\"\\\", 3.6666666666666636 e- 3 )\\n\",\n       \",\\n\",\n       \"  ( \\\"\\\"hhx\\\"\\\", 2.666666666666665 e- 3 )\\n\",\n       \",\\n\",\n       \"  ( \\\"\\\"xxi\\\"\\\", 2.3333333333333314 e- 3 )\\n\",\n       \",\\n\",\n       \"  ( \\\"\\\"hhh\\\"\\\", 3.333333333333324 e- 4 )\\n\",\n       \"]\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"runWordParser \\\"hii\\\"\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Haskell - nixpkgs\",\n   \"language\": \"haskell\",\n   \"name\": \"ihaskell_nixpkgs\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": \"ihaskell\",\n   \"file_extension\": \".hs\",\n   \"mimetype\": \"text/x-haskell\",\n   \"name\": \"haskell\",\n   \"pygments_lexer\": \"Haskell\",\n   \"version\": \"9.0.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "notebooks/examples/Streaming.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"8fbdbe43-ea41-4693-9e33-01be36977a43\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Probabilistic Streaming\\n\",\n    \"\\n\",\n    \"Streaming libraries in Haskell exist to represent streams of data where each incoming datapoint may involve a side-effect. \\n\",\n    \"\\n\",\n    \"In this notebook, we'll use the `pipes` library, which is not the fastest streaming library, but is simple and easy to use.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"id\": \"748a7e61-e214-4a92-9d84-0ab8fc62da22\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \":e ImportQualifiedPost\\n\",\n    \":e FlexibleContexts\\n\",\n    \":e BlockArguments\\n\",\n    \":e TupleSections\\n\",\n    \":e FlexibleContexts\\n\",\n    \":e OverloadedStrings\\n\",\n    \":e LambdaCase\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"import Control.Monad.Bayes.Class\\n\",\n    \"import Control.Monad.Bayes.Enumerator\\n\",\n    \"import Control.Monad.Bayes.Weighted\\n\",\n    \"import Control.Monad.Bayes.Sampler.Strict\\n\",\n    \"import Control.Monad.Bayes.Density.Free\\n\",\n    \"import Control.Monad.Bayes.Population\\n\",\n    \"import Control.Monad.Bayes.Sequential.Coroutine\\n\",\n    \"import Control.Monad.Bayes.Inference.SMC\\n\",\n    \"\\n\",\n    \"import qualified Graphics.Vega.VegaLite as VL\\n\",\n    \"import IHaskell.Display.Hvega (vlShow)\\n\",\n    \"import Control.Applicative\\n\",\n    \"import qualified Data.Text as T\\n\",\n    \"import Pipes (Producer, (>->))\\n\",\n    \"import qualified Pipes as P\\n\",\n    \"import Pipes.Prelude (unfoldr)\\n\",\n    \"import qualified Pipes.Prelude as P\\n\",\n    \"import Data.Ord\\n\",\n    \"import Data.List\\n\",\n    \"import Control.Monad\\n\",\n    \"import Control.Arrow (first)\\n\",\n    \"import Numeric.Log\\n\",\n    \"import Data.Vector qualified as V\\n\",\n    \"\\n\",\n    \":e PackageImports\\n\",\n    \"import \\\"matrix\\\" Data.Matrix hiding ((!))\\n\",\n    \"import Data.Vector.Generic as VG (Vector, map, mapM, null, sum, (!))\\n\",\n    \"\\n\",\n    \":l ../plotting.hs\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"feb44c2e-d5ff-46d3-b393-37fb3b316d12\",\n   \"metadata\": {},\n   \"source\": [\n    \"A `Producer` represents a stream of data, and a `Pipe` maps one stream to another. Both are parametrized by a monad `m`, which in our case will be `MonadDistribution m => m`. \\n\",\n    \"\\n\",\n    \"For example, a random walk with a Gaussian `transition` kernel can be written as follows:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"id\": \"44083303-1d6c-4ba8-9cec-40f5af9455a4\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"-- how to move from one latent state to the next\\n\",\n    \"transition :: MonadDistribution m => V.Vector Double -> m (V.Vector Double)\\n\",\n    \"transition vector = mvNormal (fmap (+0.5) vector) (fromLists [[1,0], [0,1]])\\n\",\n    \"    -- (normal (x+0.5) 1) (normal (y+0.5) 1)\\n\",\n    \"\\n\",\n    \"-- a Markovian random walk starting at (0,0), with latentTransition as the kernel\\n\",\n    \"-- a Producer is an infinite stream of values\\n\",\n    \"prior :: MonadDistribution m => Producer (V.Vector Double) m r\\n\",\n    \"prior = flip P.unfoldr (V.fromList [0,0]) $ \\\\s ->\\n\",\n    \"    Right <$> do\\n\",\n    \"        new <- transition s\\n\",\n    \"        return (new, new)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"e2138945-588b-4956-81a1-91a0072506f2\",\n   \"metadata\": {},\n   \"source\": [\n    \"It's straightforward to take the first `n` steps of this infinite stream, and convert it into a distribution over finite list, from which we can then sample:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"id\": \"22553f70-df63-4819-8836-7f420a4ca451\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.976725852798596,\n          \"Y\": 1.6137193880196077\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0.20408138974710444,\n          \"Y\": 1.7919034094222825\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0.4831200523092556,\n          \"Y\": 1.907099116274424\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.09176882753590254,\n          \"Y\": 1.8955141804642897\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -1.2218589977848304,\n          \"Y\": 2.1822412112642686\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.7668458940561108,\n          \"Y\": 2.212530442551486\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.6690157871149474,\n          \"Y\": 3.6065228326525913\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0.11244333089173442,\n          \"Y\": 2.9159986959761524\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 1.2687408682854557,\n          \"Y\": 3.1217227285265796\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.9374928178780935,\n          \"Y\": 4.807186806397708\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 1.7506468484445976,\n          \"Y\": 6.528258479316207\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.736589222593742,\n          \"Y\": 6.949265904332787\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 3.641180710652565,\n          \"Y\": 6.681148574533908\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 3.256520244565894,\n          \"Y\": 7.874942228007868\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 3.532287597906861,\n          \"Y\": 8.830585157823975\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.1806733831668645,\n          \"Y\": 8.017622208601368\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.009761220323491,\n          \"Y\": 7.84268801368802\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.141654233585815,\n          \"Y\": 7.1758683184915455\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.109134026193262,\n          \"Y\": 6.295985176823156\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.405745472992563,\n          \"Y\": 6.200693454492153\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.01763593390225182,\n          \"Y\": 6.26472827677569\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.7129309873545127,\n          \"Y\": 6.073043706411563\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -1.3881353873773867,\n          \"Y\": 5.511813869639958\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -2.0112168014112006,\n          \"Y\": 4.863763667368105\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -2.6313526403453142,\n          \"Y\": 6.526587675025231\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -3.647308978418825,\n          \"Y\": 9.059358389741346\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -3.522248228389822,\n          \"Y\": 10.81130328807151\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -3.1756973573574925,\n          \"Y\": 11.004220161318386\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0.11010814466808982,\n          \"Y\": 10.321234798745154\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.39187980161433855,\n          \"Y\": 12.364011379280585\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0.03081207681047786,\n          \"Y\": 12.291837576109366\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.14240533533610533,\n          \"Y\": 14.912448411461696\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0.7434588861709679,\n          \"Y\": 15.226819972736129\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.08616212989934202,\n          \"Y\": 16.246907651854926\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -1.2965615882985957,\n          \"Y\": 16.938548777168933\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -1.0233599219588343,\n          \"Y\": 18.172882376939775\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -1.593063313624189,\n          \"Y\": 17.761804204307506\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.9071992020452398,\n          \"Y\": 16.80832237549457\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 1.537278546495295,\n          \"Y\": 18.239554653824978\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 1.293986040876521,\n          \"Y\": 18.531479436575104\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0.33734706739165166,\n          \"Y\": 19.17952773388102\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 1.5526873356861643,\n          \"Y\": 19.89809726940538\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0.9653041361138308,\n          \"Y\": 18.978715147896484\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.1754309252424315,\n          \"Y\": 20.733465934111884\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 1.9042944402780204,\n          \"Y\": 21.96238995944239\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 1.1670764368639701,\n          \"Y\": 20.42119386858742\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 1.3725692433059047,\n          \"Y\": 20.078416515233386\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.685773076792982,\n          \"Y\": 19.780304063644362\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.304412655375019,\n          \"Y\": 18.3267445924497\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 3.3005017878405236,\n          \"Y\": 19.282099858122923\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 5.293682460243824,\n          \"Y\": 18.09075163407331\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 5.48617010881213,\n          \"Y\": 18.88912742921528\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 5.460178753240708,\n          \"Y\": 20.05661588255413\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 6.694373042710004,\n          \"Y\": 21.28417138017432\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 7.176262338621055,\n          \"Y\": 23.610823147215058\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 9.263967259279326,\n          \"Y\": 23.793471620769253\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 9.570548244239397,\n          \"Y\": 22.80525709268169\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 12.224205146716235,\n          \"Y\": 23.467270848547056\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 12.998028549367675,\n          \"Y\": 24.976179113989346\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 13.469190861482701,\n          \"Y\": 25.033371366639106\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 15.202761232337336,\n          \"Y\": 23.705490410204654\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 15.45147544674246,\n          \"Y\": 23.62245393809943\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 15.948845956272837,\n          \"Y\": 23.316292902745392\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 17.16913170577638,\n          \"Y\": 24.777353392198744\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 17.210423055711384,\n          \"Y\": 26.565764557732845\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 17.498127213076074,\n          \"Y\": 26.891514119480085\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 16.154587096331557,\n          \"Y\": 26.96269886332814\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 17.365461967568603,\n          \"Y\": 27.809691065821152\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 17.798709082450195,\n          \"Y\": 26.878326604248347\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 18.711785330404158,\n          \"Y\": 27.40681326568193\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 19.69126789860091,\n          \"Y\": 29.24772788318292\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 18.611842559840028,\n          \"Y\": 29.623895863932383\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 18.839415485737106,\n          \"Y\": 30.176998016059404\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 17.872071800282136,\n          \"Y\": 31.31449032366575\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 17.234433457755895,\n          \"Y\": 31.92462627820767\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 18.316980583807805,\n          \"Y\": 31.971459033847758\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 18.20614845743506,\n          \"Y\": 33.38337742068083\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 19.469906680607902,\n          \"Y\": 35.00768028137768\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 21.166533013229724,\n          \"Y\": 36.2275881565787\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 20.934551476362326,\n          \"Y\": 37.71788456932134\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 23.091390514827275,\n          \"Y\": 37.35456321648551\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 23.202579247316468,\n          \"Y\": 38.33182657807645\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 24.814982095085746,\n          \"Y\": 39.896259204044675\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 26.862289553534435,\n          \"Y\": 41.594015899000084\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 29.13108856747485,\n          \"Y\": 43.24237558248829\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 29.96573917639689,\n          \"Y\": 43.08564704913662\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 30.38129760060132,\n          \"Y\": 42.60313904655006\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 30.127208744625026,\n          \"Y\": 43.46925607531138\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 30.55395052376439,\n          \"Y\": 44.113573468167885\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 31.939391547518845,\n          \"Y\": 43.2108558967726\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 32.61564963693414,\n          \"Y\": 44.322174851055706\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 33.968317987343596,\n          \"Y\": 43.58458105865007\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 33.869346145845,\n          \"Y\": 44.815191784044025\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 35.656369696990275,\n          \"Y\": 45.33590548300918\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 36.36554153078791,\n          \"Y\": 43.511280010066635\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 38.89653663422507,\n          \"Y\": 42.455163627123405\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 40.62441756480252,\n          \"Y\": 41.727621228442274\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 41.91827352178923,\n          \"Y\": 41.3009998512681\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 41.57668178338979,\n          \"Y\": 41.469615373408814\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 41.42459856678652,\n          \"Y\": 42.382041619310584\n         }\n        ]\n       },\n       \"encoding\": {\n        \"color\": {\n         \"field\": \"Outlier\"\n        },\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"circle\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"-- convert the stream to a list, taking only the first 100 steps\\n\",\n    \"toList :: Monad m => P.Producer a m () -> m [a]\\n\",\n    \"toList prod = P.toListM (prod >-> P.take 100)\\n\",\n    \"\\n\",\n    \"trueVectors <- sampleIOfixed $ toList prior\\n\",\n    \"\\n\",\n    \"plot \\n\",\n    \"    (zip \\n\",\n    \"        (fmap (\\\\v -> (v V.! 0, v V.! 1)) $ trueVectors) \\n\",\n    \"        (replicate 100 (T.pack \\\"Latent\\\")))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"618f1d07-cd05-41da-929c-94499e1e856c\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can also produce a stream of observations from `prior`, each a noisy perturbation of the datapoint in question, by using a `Pipe`:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"id\": \"8ff7849d-4acc-48be-83ab-a3ecd5392094\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"observationModel = (`mvNormal` fromLists [[20,0],[0,20]])\\n\",\n    \"\\n\",\n    \"observations :: MonadDistribution m => P.Pipe (V.Vector Double) (V.Vector Double) m ()\\n\",\n    \"observations = P.mapM observationModel\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"id\": \"dad1d7a2-784f-481d-89a5-5ce14c9dcc9b\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.976725852798596,\n          \"Y\": 1.6137193880196077\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0.20408138974710444,\n          \"Y\": 1.7919034094222825\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0.4831200523092556,\n          \"Y\": 1.907099116274424\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.09176882753590254,\n          \"Y\": 1.8955141804642897\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -1.2218589977848304,\n          \"Y\": 2.1822412112642686\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.7668458940561108,\n          \"Y\": 2.212530442551486\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.6690157871149474,\n          \"Y\": 3.6065228326525913\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0.11244333089173442,\n          \"Y\": 2.9159986959761524\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 1.2687408682854557,\n          \"Y\": 3.1217227285265796\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.9374928178780935,\n          \"Y\": 4.807186806397708\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 1.7506468484445976,\n          \"Y\": 6.528258479316207\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.736589222593742,\n          \"Y\": 6.949265904332787\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 3.641180710652565,\n          \"Y\": 6.681148574533908\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 3.256520244565894,\n          \"Y\": 7.874942228007868\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 3.532287597906861,\n          \"Y\": 8.830585157823975\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.1806733831668645,\n          \"Y\": 8.017622208601368\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.009761220323491,\n          \"Y\": 7.84268801368802\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.141654233585815,\n          \"Y\": 7.1758683184915455\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.109134026193262,\n          \"Y\": 6.295985176823156\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.405745472992563,\n          \"Y\": 6.200693454492153\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.01763593390225182,\n          \"Y\": 6.26472827677569\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.7129309873545127,\n          \"Y\": 6.073043706411563\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -1.3881353873773867,\n          \"Y\": 5.511813869639958\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -2.0112168014112006,\n          \"Y\": 4.863763667368105\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -2.6313526403453142,\n          \"Y\": 6.526587675025231\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -3.647308978418825,\n          \"Y\": 9.059358389741346\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -3.522248228389822,\n          \"Y\": 10.81130328807151\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -3.1756973573574925,\n          \"Y\": 11.004220161318386\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0.11010814466808982,\n          \"Y\": 10.321234798745154\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.39187980161433855,\n          \"Y\": 12.364011379280585\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0.03081207681047786,\n          \"Y\": 12.291837576109366\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.14240533533610533,\n          \"Y\": 14.912448411461696\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0.7434588861709679,\n          \"Y\": 15.226819972736129\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.08616212989934202,\n          \"Y\": 16.246907651854926\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -1.2965615882985957,\n          \"Y\": 16.938548777168933\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -1.0233599219588343,\n          \"Y\": 18.172882376939775\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -1.593063313624189,\n          \"Y\": 17.761804204307506\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.9071992020452398,\n          \"Y\": 16.80832237549457\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 1.537278546495295,\n          \"Y\": 18.239554653824978\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 1.293986040876521,\n          \"Y\": 18.531479436575104\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0.33734706739165166,\n          \"Y\": 19.17952773388102\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 1.5526873356861643,\n          \"Y\": 19.89809726940538\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0.9653041361138308,\n          \"Y\": 18.978715147896484\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.1754309252424315,\n          \"Y\": 20.733465934111884\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 1.9042944402780204,\n          \"Y\": 21.96238995944239\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 1.1670764368639701,\n          \"Y\": 20.42119386858742\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 1.3725692433059047,\n          \"Y\": 20.078416515233386\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.685773076792982,\n          \"Y\": 19.780304063644362\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.304412655375019,\n          \"Y\": 18.3267445924497\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 3.3005017878405236,\n          \"Y\": 19.282099858122923\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 5.293682460243824,\n          \"Y\": 18.09075163407331\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 5.48617010881213,\n          \"Y\": 18.88912742921528\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 5.460178753240708,\n          \"Y\": 20.05661588255413\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 6.694373042710004,\n          \"Y\": 21.28417138017432\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 7.176262338621055,\n          \"Y\": 23.610823147215058\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 9.263967259279326,\n          \"Y\": 23.793471620769253\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 9.570548244239397,\n          \"Y\": 22.80525709268169\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 12.224205146716235,\n          \"Y\": 23.467270848547056\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 12.998028549367675,\n          \"Y\": 24.976179113989346\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 13.469190861482701,\n          \"Y\": 25.033371366639106\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 15.202761232337336,\n          \"Y\": 23.705490410204654\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 15.45147544674246,\n          \"Y\": 23.62245393809943\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 15.948845956272837,\n          \"Y\": 23.316292902745392\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 17.16913170577638,\n          \"Y\": 24.777353392198744\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 17.210423055711384,\n          \"Y\": 26.565764557732845\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 17.498127213076074,\n          \"Y\": 26.891514119480085\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 16.154587096331557,\n          \"Y\": 26.96269886332814\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 17.365461967568603,\n          \"Y\": 27.809691065821152\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 17.798709082450195,\n          \"Y\": 26.878326604248347\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 18.711785330404158,\n          \"Y\": 27.40681326568193\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 19.69126789860091,\n          \"Y\": 29.24772788318292\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 18.611842559840028,\n          \"Y\": 29.623895863932383\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 18.839415485737106,\n          \"Y\": 30.176998016059404\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 17.872071800282136,\n          \"Y\": 31.31449032366575\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 17.234433457755895,\n          \"Y\": 31.92462627820767\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 18.316980583807805,\n          \"Y\": 31.971459033847758\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 18.20614845743506,\n          \"Y\": 33.38337742068083\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 19.469906680607902,\n          \"Y\": 35.00768028137768\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 21.166533013229724,\n          \"Y\": 36.2275881565787\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 20.934551476362326,\n          \"Y\": 37.71788456932134\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 23.091390514827275,\n          \"Y\": 37.35456321648551\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 23.202579247316468,\n          \"Y\": 38.33182657807645\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 24.814982095085746,\n          \"Y\": 39.896259204044675\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 26.862289553534435,\n          \"Y\": 41.594015899000084\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 29.13108856747485,\n          \"Y\": 43.24237558248829\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 29.96573917639689,\n          \"Y\": 43.08564704913662\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 30.38129760060132,\n          \"Y\": 42.60313904655006\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 30.127208744625026,\n          \"Y\": 43.46925607531138\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 30.55395052376439,\n          \"Y\": 44.113573468167885\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 31.939391547518845,\n          \"Y\": 43.2108558967726\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 32.61564963693414,\n          \"Y\": 44.322174851055706\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 33.968317987343596,\n          \"Y\": 43.58458105865007\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 33.869346145845,\n          \"Y\": 44.815191784044025\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 35.656369696990275,\n          \"Y\": 45.33590548300918\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 36.36554153078791,\n          \"Y\": 43.511280010066635\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 38.89653663422507,\n          \"Y\": 42.455163627123405\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 40.62441756480252,\n          \"Y\": 41.727621228442274\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 41.91827352178923,\n          \"Y\": 41.3009998512681\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 41.57668178338979,\n          \"Y\": 41.469615373408814\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 41.42459856678652,\n          \"Y\": 42.382041619310584\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -7.580844634776614,\n          \"Y\": 6.5944239069622235\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 3.248743937559851,\n          \"Y\": 0.3526986006438093\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -0.5050490895113429,\n          \"Y\": 0.18620200124968855\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -4.898818034720657,\n          \"Y\": -0.3923632050083641\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -8.511843858046447,\n          \"Y\": 1.2284554974753363\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -0.9680334103747406,\n          \"Y\": 0.11192002534055767\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -2.467574225881706,\n          \"Y\": 7.604578343919755\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 1.3711667723918857,\n          \"Y\": -2.408187100949384\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 4.203792682441598,\n          \"Y\": 1.8056805938030605\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 8.164310434127184,\n          \"Y\": 10.108743332405604\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -5.79315766200506,\n          \"Y\": 11.989057011406512\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 4.909789586083988,\n          \"Y\": 6.596000369571432\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 5.450568851487211,\n          \"Y\": 3.2460234462820723\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -0.6998016337869939,\n          \"Y\": 10.977681771059281\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 2.5294887164982844,\n          \"Y\": 10.868282286895937\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -6.099997121360188,\n          \"Y\": 2.145873395800658\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -0.9906491857748931,\n          \"Y\": 4.824290533357343\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 0.49542974290970143,\n          \"Y\": 1.9576920066017385\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -0.2723687400508079,\n          \"Y\": 0.12496016527017417\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 1.4961642113883717,\n          \"Y\": 3.538467939342046\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -13.091395033853809,\n          \"Y\": 4.31503273038212\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -6.058452972731513,\n          \"Y\": 2.979736269767715\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -6.643809239193391,\n          \"Y\": 0.7658497600953291\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -7.033789573503589,\n          \"Y\": -0.27047292035638915\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -7.640752400126181,\n          \"Y\": 11.726894729005371\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -10.42687182412687,\n          \"Y\": 18.150185391293476\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -5.199027529125694,\n          \"Y\": 16.410171081572134\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -3.8619427242771804,\n          \"Y\": 9.630902668992045\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 12.56860909391235,\n          \"Y\": 5.030763424543189\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -4.872906122660174,\n          \"Y\": 19.263517995624394\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -0.3149203532993794,\n          \"Y\": 9.732998538438505\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -3.1531251297286103,\n          \"Y\": 24.396108374802544\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 2.469096144920672,\n          \"Y\": 14.396664357641086\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -6.0324080823904485,\n          \"Y\": 18.57281046139439\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -8.945700503617706,\n          \"Y\": 17.795593944142286\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -2.037632904454779,\n          \"Y\": 21.456922071439237\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -6.376922312675819,\n          \"Y\": 13.687338750663415\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -0.07598962590896796,\n          \"Y\": 10.308154028921695\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 10.233247399440053,\n          \"Y\": 22.404152008202583\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -2.030119098582926,\n          \"Y\": 17.60093877616759\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -6.176940459383712,\n          \"Y\": 19.84161984733927\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 4.751786269585101,\n          \"Y\": 20.875569947891428\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -3.897621367556085,\n          \"Y\": 12.631045328412961\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 5.351214471512851,\n          \"Y\": 26.344882039709773\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -1.5443327603433157,\n          \"Y\": 25.222237301585974\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -4.365930680376797,\n          \"Y\": 11.292687439470313\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 0.05549303398885996,\n          \"Y\": 16.30940161123943\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 6.32253117927403,\n          \"Y\": 16.21103667276023\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -1.6371509745618358,\n          \"Y\": 9.59016104109009\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 5.5190798340240566,\n          \"Y\": 21.318510514038525\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 11.971389432609072,\n          \"Y\": 10.526812428876351\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 4.110933065367986,\n          \"Y\": 20.22350455077127\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 3.1078738999707833,\n          \"Y\": 23.041714994277868\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 9.977789722601011,\n          \"Y\": 24.537898480339187\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 7.095268807694508,\n          \"Y\": 31.77985819186145\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 16.364399520884938,\n          \"Y\": 22.374232448976972\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 8.705552112698728,\n          \"Y\": 16.149759392868564\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 21.85565161501593,\n          \"Y\": 24.191818391357085\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 14.222604033685503,\n          \"Y\": 29.48815404317007\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 13.340224800633258,\n          \"Y\": 23.05307491856172\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 20.719455640858513,\n          \"Y\": 15.53095826347512\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 14.327691250003301,\n          \"Y\": 21.01503556812154\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 15.93708651740031,\n          \"Y\": 19.711031151018922\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 20.390347504004996,\n          \"Y\": 29.07534656201258\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 15.1590156088864,\n          \"Y\": 32.32771445594081\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 16.54871134212977,\n          \"Y\": 26.11224246939548\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 7.910025055754277,\n          \"Y\": 25.044978738238672\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 20.544591038733497,\n          \"Y\": 29.361487370694647\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 17.500181104812206,\n          \"Y\": 20.477070130939993\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 20.559118471035397,\n          \"Y\": 27.53420948851696\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 21.83557913162914,\n          \"Y\": 35.244480356693614\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 11.548437714130095,\n          \"Y\": 29.070102238261843\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 17.621084572526097,\n          \"Y\": 30.41447805987451\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 11.309911346217373,\n          \"Y\": 34.16544259354775\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 12.146760122358163,\n          \"Y\": 32.41716924045278\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 20.922210531706227,\n          \"Y\": 29.944833506717718\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 15.474424142614655,\n          \"Y\": 37.46160042646224\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 22.88553729138576,\n          \"Y\": 40.03571552900896\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 26.518008660047066,\n          \"Y\": 39.44711404955252\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 17.661030526941786,\n          \"Y\": 42.146624762854835\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 30.5009999503933,\n          \"Y\": 33.49367275374949\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 21.463762398172424,\n          \"Y\": 40.46621321745128\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 29.789798867038662,\n          \"Y\": 44.656546622311794\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 33.782058871901825,\n          \"Y\": 46.950546679851634\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 37.04139823488559,\n          \"Y\": 48.37799621228787\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 31.46234219691965,\n          \"Y\": 40.148667762460455\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 30.003663393389132,\n          \"Y\": 38.20922968210791\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 26.754820858548936,\n          \"Y\": 45.106581203372485\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 30.226329800254234,\n          \"Y\": 44.75898046969328\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 35.89920418588279,\n          \"Y\": 36.93771221102605\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 33.40389977596779,\n          \"Y\": 47.05607632647793\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 37.781566774899915,\n          \"Y\": 38.04989336194857\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 31.19066263744683,\n          \"Y\": 48.08258227818665\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 41.4121139949983,\n          \"Y\": 45.42853996091228\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 37.300986409487486,\n          \"Y\": 33.11523885061237\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 47.97942286073449,\n          \"Y\": 35.49599960079908\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 46.11566802289627,\n          \"Y\": 36.23788473101395\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 45.468505290120085,\n          \"Y\": 37.15702307373626\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 37.81296911066304,\n          \"Y\": 39.98761893504553\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 38.50839376816329,\n          \"Y\": 44.226467862393385\n         }\n        ]\n       },\n       \"encoding\": {\n        \"color\": {\n         \"field\": \"Outlier\"\n        },\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"circle\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"observedVectors <- sampleIOfixed $ toList $ P.each trueVectors >-> observations\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"plot \\n\",\n    \"    (zip \\n\",\n    \"        (fmap (\\\\v -> (v V.! 0, v V.! 1)) $ trueVectors <> observedVectors) \\n\",\n    \"        (replicate 100 (T.pack \\\"Latent\\\") <> replicate 100 (T.pack \\\"Observed\\\")))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"e48ded8f-26c7-4b8c-a423-072381fbf741\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Conditioning\\n\",\n    \"\\n\",\n    \"But most interestingly, we can update our prior, based on a stream of incoming observations. `conditioning` below takes two `Producer`s, the stream corresponding to the prior (see `prior` above) and the stream corresponding to the observations (`P.each observedVectors`, where `P.each` lifts a list to a stream), and a likelihood, and returns a posterior, also expressed as a stream.  \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"id\": \"29063963-1733-48f5-b71e-05dd727ee664\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"-- take the original random walk as a prior and condition on the observations\\n\",\n    \"-- to obtain a posterior random walk\\n\",\n    \"conditioning :: MonadMeasure m => \\n\",\n    \"    P.Producer (V.Vector Double) m () -> \\n\",\n    \"    P.Producer (V.Vector Double) m () -> \\n\",\n    \"    ((V.Vector Double, V.Vector Double) -> m ()) ->\\n\",\n    \"    P.Producer (V.Vector Double) m ()\\n\",\n    \"conditioning prior observations observationModel = \\n\",\n    \"    P.zip prior observations\\n\",\n    \"    >-> P.chain observationModel\\n\",\n    \"    >-> P.map fst \\n\",\n    \"\\n\",\n    \"\\n\",\n    \"posterior :: MonadMeasure m => m [V.Vector Double]\\n\",\n    \"posterior = toList $ conditioning \\n\",\n    \"    prior\\n\",\n    \"    (P.each observedVectors)\\n\",\n    \"    (\\\\(v, v') -> do\\n\",\n    \"        prediction <- observationModel v\\n\",\n    \"        let (x, y, x', y') = (prediction V.! 0, prediction V.! 1, v' V.! 0, v' V.! 1)\\n\",\n    \"        factor $ normalPdf x 2 x' * normalPdf y 2 y' )\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"53c196ce-a76b-486a-af09-07dad9100abe\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can then use an inference method of our liking:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"id\": \"38c2337a-4c9f-4ef8-85b3-691fc691ff51\",\n   \"metadata\": {\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": []\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"particles <- sampleIOfixed $ runPopulationT $ \\n\",\n    \"    smc SMCConfig {\\n\",\n    \"        numSteps = 100, \\n\",\n    \"        numParticles = 1000, \\n\",\n    \"        resampler = resampleMultinomial} \\n\",\n    \"    posterior\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"id\": \"ddd48970-cf80-4945-9b13-ceb33b5ef362\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -0.976725852798596,\n          \"Y\": 1.6137193880196077\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 0.20408138974710444,\n          \"Y\": 1.7919034094222825\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 0.4831200523092556,\n          \"Y\": 1.907099116274424\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -0.09176882753590254,\n          \"Y\": 1.8955141804642897\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -1.2218589977848304,\n          \"Y\": 2.1822412112642686\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -0.7668458940561108,\n          \"Y\": 2.212530442551486\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -0.6690157871149474,\n          \"Y\": 3.6065228326525913\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 0.11244333089173442,\n          \"Y\": 2.9159986959761524\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 1.2687408682854557,\n          \"Y\": 3.1217227285265796\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 2.9374928178780935,\n          \"Y\": 4.807186806397708\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 1.7506468484445976,\n          \"Y\": 6.528258479316207\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 2.736589222593742,\n          \"Y\": 6.949265904332787\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 3.641180710652565,\n          \"Y\": 6.681148574533908\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 3.256520244565894,\n          \"Y\": 7.874942228007868\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 3.532287597906861,\n          \"Y\": 8.830585157823975\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 2.1806733831668645,\n          \"Y\": 8.017622208601368\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 2.009761220323491,\n          \"Y\": 7.84268801368802\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 2.141654233585815,\n          \"Y\": 7.1758683184915455\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 2.109134026193262,\n          \"Y\": 6.295985176823156\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 2.405745472992563,\n          \"Y\": 6.200693454492153\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -0.01763593390225182,\n          \"Y\": 6.26472827677569\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -0.7129309873545127,\n          \"Y\": 6.073043706411563\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -1.3881353873773867,\n          \"Y\": 5.511813869639958\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -2.0112168014112006,\n          \"Y\": 4.863763667368105\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -2.6313526403453142,\n          \"Y\": 6.526587675025231\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -3.647308978418825,\n          \"Y\": 9.059358389741346\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -3.522248228389822,\n          \"Y\": 10.81130328807151\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -3.1756973573574925,\n          \"Y\": 11.004220161318386\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 0.11010814466808982,\n          \"Y\": 10.321234798745154\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -0.39187980161433855,\n          \"Y\": 12.364011379280585\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 0.03081207681047786,\n          \"Y\": 12.291837576109366\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -0.14240533533610533,\n          \"Y\": 14.912448411461696\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 0.7434588861709679,\n          \"Y\": 15.226819972736129\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -0.08616212989934202,\n          \"Y\": 16.246907651854926\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -1.2965615882985957,\n          \"Y\": 16.938548777168933\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -1.0233599219588343,\n          \"Y\": 18.172882376939775\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -1.593063313624189,\n          \"Y\": 17.761804204307506\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -0.9071992020452398,\n          \"Y\": 16.80832237549457\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 1.537278546495295,\n          \"Y\": 18.239554653824978\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 1.293986040876521,\n          \"Y\": 18.531479436575104\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 0.33734706739165166,\n          \"Y\": 19.17952773388102\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 1.5526873356861643,\n          \"Y\": 19.89809726940538\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 0.9653041361138308,\n          \"Y\": 18.978715147896484\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 2.1754309252424315,\n          \"Y\": 20.733465934111884\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 1.9042944402780204,\n          \"Y\": 21.96238995944239\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 1.1670764368639701,\n          \"Y\": 20.42119386858742\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 1.3725692433059047,\n          \"Y\": 20.078416515233386\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 2.685773076792982,\n          \"Y\": 19.780304063644362\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 2.304412655375019,\n          \"Y\": 18.3267445924497\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 3.3005017878405236,\n          \"Y\": 19.282099858122923\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 5.293682460243824,\n          \"Y\": 18.09075163407331\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 5.48617010881213,\n          \"Y\": 18.88912742921528\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 5.460178753240708,\n          \"Y\": 20.05661588255413\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 6.694373042710004,\n          \"Y\": 21.28417138017432\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 7.176262338621055,\n          \"Y\": 23.610823147215058\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 9.263967259279326,\n          \"Y\": 23.793471620769253\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 9.570548244239397,\n          \"Y\": 22.80525709268169\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 12.224205146716235,\n          \"Y\": 23.467270848547056\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 12.998028549367675,\n          \"Y\": 24.976179113989346\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 13.469190861482701,\n          \"Y\": 25.033371366639106\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 15.202761232337336,\n          \"Y\": 23.705490410204654\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 15.45147544674246,\n          \"Y\": 23.62245393809943\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 15.948845956272837,\n          \"Y\": 23.316292902745392\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 17.16913170577638,\n          \"Y\": 24.777353392198744\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 17.210423055711384,\n          \"Y\": 26.565764557732845\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 17.498127213076074,\n          \"Y\": 26.891514119480085\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 16.154587096331557,\n          \"Y\": 26.96269886332814\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 17.365461967568603,\n          \"Y\": 27.809691065821152\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 17.798709082450195,\n          \"Y\": 26.878326604248347\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 18.711785330404158,\n          \"Y\": 27.40681326568193\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 19.69126789860091,\n          \"Y\": 29.24772788318292\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 18.611842559840028,\n          \"Y\": 29.623895863932383\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 18.839415485737106,\n          \"Y\": 30.176998016059404\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 17.872071800282136,\n          \"Y\": 31.31449032366575\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 17.234433457755895,\n          \"Y\": 31.92462627820767\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 18.316980583807805,\n          \"Y\": 31.971459033847758\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 18.20614845743506,\n          \"Y\": 33.38337742068083\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 19.469906680607902,\n          \"Y\": 35.00768028137768\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 21.166533013229724,\n          \"Y\": 36.2275881565787\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 20.934551476362326,\n          \"Y\": 37.71788456932134\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 23.091390514827275,\n          \"Y\": 37.35456321648551\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 23.202579247316468,\n          \"Y\": 38.33182657807645\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 24.814982095085746,\n          \"Y\": 39.896259204044675\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 26.862289553534435,\n          \"Y\": 41.594015899000084\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 29.13108856747485,\n          \"Y\": 43.24237558248829\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 29.96573917639689,\n          \"Y\": 43.08564704913662\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 30.38129760060132,\n          \"Y\": 42.60313904655006\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 30.127208744625026,\n          \"Y\": 43.46925607531138\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 30.55395052376439,\n          \"Y\": 44.113573468167885\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 31.939391547518845,\n          \"Y\": 43.2108558967726\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 32.61564963693414,\n          \"Y\": 44.322174851055706\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 33.968317987343596,\n          \"Y\": 43.58458105865007\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 33.869346145845,\n          \"Y\": 44.815191784044025\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 35.656369696990275,\n          \"Y\": 45.33590548300918\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 36.36554153078791,\n          \"Y\": 43.511280010066635\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 38.89653663422507,\n          \"Y\": 42.455163627123405\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 40.62441756480252,\n          \"Y\": 41.727621228442274\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 41.91827352178923,\n          \"Y\": 41.3009998512681\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 41.57668178338979,\n          \"Y\": 41.469615373408814\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 41.42459856678652,\n          \"Y\": 42.382041619310584\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.3672224100432464,\n          \"Y\": 0.48810911351361935\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.362481961988402,\n          \"Y\": 0.7076446081740262\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.8715888597202504,\n          \"Y\": 0.5387869363321125\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7846730243034472,\n          \"Y\": 0.10506846798668501\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7248963513441793,\n          \"Y\": 1.7527964620207235\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.4584252971562393,\n          \"Y\": 2.228366920830615\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.1279224722940642,\n          \"Y\": 3.443210568179678\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.479008906435281,\n          \"Y\": 3.6908288290815645\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.3615054073081352,\n          \"Y\": 4.27972153425087\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.8486611255806581,\n          \"Y\": 4.592720222548362\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.32944348639832954,\n          \"Y\": 4.596809693227079\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.21925626392848585,\n          \"Y\": 5.163907931661737\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.21992193392391401,\n          \"Y\": 4.118185761295895\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.4150919011751638,\n          \"Y\": 5.538117360209408\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7892140966783031,\n          \"Y\": 5.695449583765478\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.1404372527748952,\n          \"Y\": 5.866232913939554\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.8380893328893904,\n          \"Y\": 6.364770313736374\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.649053221222315,\n          \"Y\": 6.512174927857027\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.737182974826292,\n          \"Y\": 5.77836967516248\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.11560529994996305,\n          \"Y\": 7.5367062800404945\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2298973114533206,\n          \"Y\": 7.989511766138773\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.57161291446925,\n          \"Y\": 6.901917929677629\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.1801023491411033,\n          \"Y\": 8.860615665751432\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.1784410881273133,\n          \"Y\": 9.923272270828765\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7917192002889752,\n          \"Y\": 11.753085534646807\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7648020508226134,\n          \"Y\": 10.25041393399106\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.5234743284293881,\n          \"Y\": 11.775350954803978\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.05357856804105787,\n          \"Y\": 12.024349478829999\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.4184332014913338,\n          \"Y\": 14.340893261404778\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.7969379235979688,\n          \"Y\": 14.997540083518635\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7096426760664147,\n          \"Y\": 14.162334925784382\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.1397135872644253,\n          \"Y\": 14.5137914003321\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.31644446775231205,\n          \"Y\": 17.969278373643117\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.6438733418570133,\n          \"Y\": 18.422304921183187\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.1175523451407152,\n          \"Y\": 18.713873184030778\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.9686962872665608,\n          \"Y\": 18.74605534641339\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.001348574224465,\n          \"Y\": 18.21984280700007\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2367693402425317,\n          \"Y\": 17.359669921367168\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.2995047254719734,\n          \"Y\": 17.419198206704273\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.8622826020639092,\n          \"Y\": 18.53931366111848\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.0735971282483163,\n          \"Y\": 17.975531013733278\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2451588531584312,\n          \"Y\": 18.79352133226893\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.7834409223822317,\n          \"Y\": 17.519317572506424\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.022324380796899135,\n          \"Y\": 18.666677816733223\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.25037506894952266,\n          \"Y\": 18.291326001784068\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.4904983920693601,\n          \"Y\": 17.539516184689955\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.718080349400857,\n          \"Y\": 18.155677211910415\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 3.3596451377280476,\n          \"Y\": 18.220928966901553\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 3.3573249852732205,\n          \"Y\": 17.474933199455286\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 4.407756003985588,\n          \"Y\": 19.226227061730217\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 4.025326796779369,\n          \"Y\": 20.335740872647136\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 4.136009675859851,\n          \"Y\": 20.372922008281094\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.113886810674396,\n          \"Y\": 21.700707769054723\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 6.363757913621467,\n          \"Y\": 21.700884276542915\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.380513986552057,\n          \"Y\": 22.53312193721249\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 9.507495481737594,\n          \"Y\": 23.947165773969388\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.705051024174601,\n          \"Y\": 23.72928746015251\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 11.765533446012132,\n          \"Y\": 24.62943086593668\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.817092153370208,\n          \"Y\": 24.983992747919615\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.839903740647154,\n          \"Y\": 24.945670025253797\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.855560416110526,\n          \"Y\": 24.66026185817934\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.891630492065383,\n          \"Y\": 25.0091091682573\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.110979638937462,\n          \"Y\": 25.382025977889217\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.175315840723284,\n          \"Y\": 25.279189038539325\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.852563449400975,\n          \"Y\": 26.018139606634307\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.917435832583863,\n          \"Y\": 27.146710919741135\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.7687201873816,\n          \"Y\": 26.501965148446903\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.335633120183564,\n          \"Y\": 27.417137424621757\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.89298811356995,\n          \"Y\": 29.928059673411973\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.932265711934539,\n          \"Y\": 30.17466234904125\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.594058543048224,\n          \"Y\": 29.645958436715073\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.420555656807428,\n          \"Y\": 29.81173518026478\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.421965217753142,\n          \"Y\": 31.288824931313332\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 16.719885419922207,\n          \"Y\": 31.768289549055897\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 16.977312283523595,\n          \"Y\": 33.692246596923425\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.24846897951622,\n          \"Y\": 33.579691656810056\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.55970934625396,\n          \"Y\": 34.71815458258916\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 18.857404869889844,\n          \"Y\": 37.086689719432165\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 20.167204798700876,\n          \"Y\": 37.04991765209162\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 20.45696123231277,\n          \"Y\": 38.41671597334564\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 21.33683630179494,\n          \"Y\": 37.52199058052792\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 24.379793053083965,\n          \"Y\": 38.510208714498376\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 25.9118914603695,\n          \"Y\": 40.00458672337111\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 26.472021004401107,\n          \"Y\": 41.16434149906598\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 28.00143245255418,\n          \"Y\": 41.34628621369594\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 28.623048075222574,\n          \"Y\": 41.24911218583916\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 29.093924172752153,\n          \"Y\": 43.33013794916392\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 29.465159428401815,\n          \"Y\": 43.13527487211388\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 30.847921308558476,\n          \"Y\": 43.6008633497382\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.57186656276913,\n          \"Y\": 42.62515709471449\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 34.482945010545,\n          \"Y\": 42.518897466883935\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 34.17363173007262,\n          \"Y\": 41.861459922001316\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 35.27052242714312,\n          \"Y\": 42.76006934967258\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 35.98082394808923,\n          \"Y\": 42.90941628061991\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 38.027476041690825,\n          \"Y\": 43.141604485103805\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 39.41165420651421,\n          \"Y\": 41.57184901265951\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 39.650445873702225,\n          \"Y\": 41.23521114741483\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 39.099143849909865,\n          \"Y\": 41.108285841788685\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 40.276439391113776,\n          \"Y\": 42.94205135331792\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 39.48522961995993,\n          \"Y\": 42.081363043446665\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.3672224100432464,\n          \"Y\": 0.48810911351361935\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.362481961988402,\n          \"Y\": 0.7076446081740262\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.8715888597202504,\n          \"Y\": 0.5387869363321125\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7846730243034472,\n          \"Y\": 0.10506846798668501\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7248963513441793,\n          \"Y\": 1.7527964620207235\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.4584252971562393,\n          \"Y\": 2.228366920830615\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.1279224722940642,\n          \"Y\": 3.443210568179678\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.479008906435281,\n          \"Y\": 3.6908288290815645\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.3615054073081352,\n          \"Y\": 4.27972153425087\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.8486611255806581,\n          \"Y\": 4.592720222548362\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.32944348639832954,\n          \"Y\": 4.596809693227079\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.21925626392848585,\n          \"Y\": 5.163907931661737\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.21992193392391401,\n          \"Y\": 4.118185761295895\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.4150919011751638,\n          \"Y\": 5.538117360209408\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7892140966783031,\n          \"Y\": 5.695449583765478\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.1404372527748952,\n          \"Y\": 5.866232913939554\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.8380893328893904,\n          \"Y\": 6.364770313736374\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.649053221222315,\n          \"Y\": 6.512174927857027\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.737182974826292,\n          \"Y\": 5.77836967516248\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.11560529994996305,\n          \"Y\": 7.5367062800404945\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2298973114533206,\n          \"Y\": 7.989511766138773\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.57161291446925,\n          \"Y\": 6.901917929677629\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.1801023491411033,\n          \"Y\": 8.860615665751432\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.1784410881273133,\n          \"Y\": 9.923272270828765\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7917192002889752,\n          \"Y\": 11.753085534646807\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7648020508226134,\n          \"Y\": 10.25041393399106\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.5234743284293881,\n          \"Y\": 11.775350954803978\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.05357856804105787,\n          \"Y\": 12.024349478829999\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.4184332014913338,\n          \"Y\": 14.340893261404778\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.7969379235979688,\n          \"Y\": 14.997540083518635\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7096426760664147,\n          \"Y\": 14.162334925784382\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.1397135872644253,\n          \"Y\": 14.5137914003321\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.31644446775231205,\n          \"Y\": 17.969278373643117\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.6438733418570133,\n          \"Y\": 18.422304921183187\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.1175523451407152,\n          \"Y\": 18.713873184030778\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.9686962872665608,\n          \"Y\": 18.74605534641339\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.001348574224465,\n          \"Y\": 18.21984280700007\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2367693402425317,\n          \"Y\": 17.359669921367168\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.2995047254719734,\n          \"Y\": 17.419198206704273\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.8622826020639092,\n          \"Y\": 18.53931366111848\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.0735971282483163,\n          \"Y\": 17.975531013733278\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2451588531584312,\n          \"Y\": 18.79352133226893\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.7834409223822317,\n          \"Y\": 17.519317572506424\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.022324380796899135,\n          \"Y\": 18.666677816733223\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7061071858531587,\n          \"Y\": 17.365038139967538\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.0408194778375142,\n          \"Y\": 16.453328413776028\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.5405091660502246,\n          \"Y\": 17.549414850528695\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 3.9338660225548883,\n          \"Y\": 18.810585449009046\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.934341937148822,\n          \"Y\": 19.291644715457366\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.860698325850149,\n          \"Y\": 18.481355238954116\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.705451214097312,\n          \"Y\": 19.045493557223\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 6.967486968545026,\n          \"Y\": 20.43685475506132\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 7.850876988134879,\n          \"Y\": 20.85970235656663\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.392808772137586,\n          \"Y\": 23.32121753848475\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.372631457732883,\n          \"Y\": 23.550505259601916\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 9.871662866734457,\n          \"Y\": 23.307490436256916\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.314173898117193,\n          \"Y\": 22.949374682117536\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.32563322222216,\n          \"Y\": 22.80572929728597\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 11.975182162138363,\n          \"Y\": 22.756945025950817\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.534798358225013,\n          \"Y\": 23.922399218838915\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.939544608950607,\n          \"Y\": 24.9043680997103\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.852997836030292,\n          \"Y\": 24.505991407121257\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.722821358543685,\n          \"Y\": 24.594075915773587\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.103015251522454,\n          \"Y\": 25.337305991383168\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.613805810396606,\n          \"Y\": 24.313422106066636\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.080486829217792,\n          \"Y\": 25.777670422612843\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 11.503005763094693,\n          \"Y\": 26.751491443530828\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.268003621078462,\n          \"Y\": 27.23493393620551\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.107978224639371,\n          \"Y\": 26.92306508382835\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.28221444777585,\n          \"Y\": 29.395602706911507\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.801724593495212,\n          \"Y\": 31.014010268316014\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.27581330599868,\n          \"Y\": 32.454234349787356\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.029469444313813,\n          \"Y\": 32.87117959294212\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.19015709218286,\n          \"Y\": 32.86952476370945\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.773016432325253,\n          \"Y\": 32.73681053907679\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.51929695827333,\n          \"Y\": 34.48234688075527\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 18.517892728110063,\n          \"Y\": 36.48035168551525\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 19.204987885038665,\n          \"Y\": 39.88678266817718\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 21.442417253877316,\n          \"Y\": 41.08072121114131\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 23.00537003178552,\n          \"Y\": 40.67876253519744\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 24.77068463689155,\n          \"Y\": 39.644754539327785\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 26.841222405457636,\n          \"Y\": 40.610556540600946\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 27.866274921957416,\n          \"Y\": 40.70386345163607\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 28.440999181920027,\n          \"Y\": 41.26333519355627\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 29.415990440563707,\n          \"Y\": 41.53555764534253\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 29.311058090188595,\n          \"Y\": 42.16967838673546\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 30.282831663472386,\n          \"Y\": 43.0424291894592\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 30.293365662434958,\n          \"Y\": 42.438015235063844\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 31.068088386419674,\n          \"Y\": 42.2623529357851\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 30.43196031201329,\n          \"Y\": 39.82537011905435\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.64091621401201,\n          \"Y\": 40.45746585540844\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 34.41602785548827,\n          \"Y\": 40.00534774705635\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 35.08714623791322,\n          \"Y\": 41.56836269107095\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 35.32292828665068,\n          \"Y\": 41.9525104837474\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 35.32395767902641,\n          \"Y\": 42.46841137513841\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 36.34356272388683,\n          \"Y\": 42.603824984142584\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 37.2337481055561,\n          \"Y\": 41.48813504823372\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 36.767323082024035,\n          \"Y\": 43.16868445004919\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 37.33470777201462,\n          \"Y\": 42.692084291783516\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 38.36005025576521,\n          \"Y\": 44.10347570499716\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.3672224100432464,\n          \"Y\": 0.48810911351361935\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.362481961988402,\n          \"Y\": 0.7076446081740262\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.8715888597202504,\n          \"Y\": 0.5387869363321125\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7846730243034472,\n          \"Y\": 0.10506846798668501\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7248963513441793,\n          \"Y\": 1.7527964620207235\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.4584252971562393,\n          \"Y\": 2.228366920830615\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.1279224722940642,\n          \"Y\": 3.443210568179678\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.479008906435281,\n          \"Y\": 3.6908288290815645\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.3615054073081352,\n          \"Y\": 4.27972153425087\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.8486611255806581,\n          \"Y\": 4.592720222548362\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.32944348639832954,\n          \"Y\": 4.596809693227079\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.21925626392848585,\n          \"Y\": 5.163907931661737\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.21992193392391401,\n          \"Y\": 4.118185761295895\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.4150919011751638,\n          \"Y\": 5.538117360209408\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7892140966783031,\n          \"Y\": 5.695449583765478\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.1404372527748952,\n          \"Y\": 5.866232913939554\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.8380893328893904,\n          \"Y\": 6.364770313736374\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.649053221222315,\n          \"Y\": 6.512174927857027\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.737182974826292,\n          \"Y\": 5.77836967516248\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.11560529994996305,\n          \"Y\": 7.5367062800404945\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2298973114533206,\n          \"Y\": 7.989511766138773\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.57161291446925,\n          \"Y\": 6.901917929677629\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.1801023491411033,\n          \"Y\": 8.860615665751432\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.1784410881273133,\n          \"Y\": 9.923272270828765\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7917192002889752,\n          \"Y\": 11.753085534646807\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7648020508226134,\n          \"Y\": 10.25041393399106\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.5234743284293881,\n          \"Y\": 11.775350954803978\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.05357856804105787,\n          \"Y\": 12.024349478829999\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.4184332014913338,\n          \"Y\": 14.340893261404778\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.7969379235979688,\n          \"Y\": 14.997540083518635\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7096426760664147,\n          \"Y\": 14.162334925784382\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.1397135872644253,\n          \"Y\": 14.5137914003321\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.31644446775231205,\n          \"Y\": 17.969278373643117\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.6438733418570133,\n          \"Y\": 18.422304921183187\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.1175523451407152,\n          \"Y\": 18.713873184030778\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.9686962872665608,\n          \"Y\": 18.74605534641339\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.001348574224465,\n          \"Y\": 18.21984280700007\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2367693402425317,\n          \"Y\": 17.359669921367168\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.2995047254719734,\n          \"Y\": 17.419198206704273\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.8622826020639092,\n          \"Y\": 18.53931366111848\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.0735971282483163,\n          \"Y\": 17.975531013733278\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2451588531584312,\n          \"Y\": 18.79352133226893\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.7834409223822317,\n          \"Y\": 17.519317572506424\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.022324380796899135,\n          \"Y\": 18.666677816733223\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7061071858531587,\n          \"Y\": 17.365038139967538\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.0408194778375142,\n          \"Y\": 16.453328413776028\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.5405091660502246,\n          \"Y\": 17.549414850528695\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 3.9338660225548883,\n          \"Y\": 18.810585449009046\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.934341937148822,\n          \"Y\": 19.291644715457366\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.860698325850149,\n          \"Y\": 18.481355238954116\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.705451214097312,\n          \"Y\": 19.045493557223\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 6.967486968545026,\n          \"Y\": 20.43685475506132\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 7.850876988134879,\n          \"Y\": 20.85970235656663\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.392808772137586,\n          \"Y\": 23.32121753848475\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.372631457732883,\n          \"Y\": 23.550505259601916\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 9.871662866734457,\n          \"Y\": 23.307490436256916\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.314173898117193,\n          \"Y\": 22.949374682117536\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.32563322222216,\n          \"Y\": 22.80572929728597\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 11.975182162138363,\n          \"Y\": 22.756945025950817\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.534798358225013,\n          \"Y\": 23.922399218838915\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.939544608950607,\n          \"Y\": 24.9043680997103\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.852997836030292,\n          \"Y\": 24.505991407121257\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.722821358543685,\n          \"Y\": 24.594075915773587\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.103015251522454,\n          \"Y\": 25.337305991383168\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.613805810396606,\n          \"Y\": 24.313422106066636\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.080486829217792,\n          \"Y\": 25.777670422612843\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 11.503005763094693,\n          \"Y\": 26.751491443530828\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.268003621078462,\n          \"Y\": 27.23493393620551\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.107978224639371,\n          \"Y\": 26.92306508382835\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.28221444777585,\n          \"Y\": 29.395602706911507\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.801724593495212,\n          \"Y\": 31.014010268316014\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.27581330599868,\n          \"Y\": 32.454234349787356\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.029469444313813,\n          \"Y\": 32.87117959294212\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.19015709218286,\n          \"Y\": 32.86952476370945\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.773016432325253,\n          \"Y\": 32.73681053907679\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.51929695827333,\n          \"Y\": 34.48234688075527\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 18.517892728110063,\n          \"Y\": 36.48035168551525\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 19.204987885038665,\n          \"Y\": 39.88678266817718\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 21.442417253877316,\n          \"Y\": 41.08072121114131\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 23.00537003178552,\n          \"Y\": 40.67876253519744\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 24.77068463689155,\n          \"Y\": 39.644754539327785\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 26.841222405457636,\n          \"Y\": 40.610556540600946\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 27.866274921957416,\n          \"Y\": 40.70386345163607\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 28.916950242086248,\n          \"Y\": 41.28456229329697\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 30.94026908912259,\n          \"Y\": 40.70140875415903\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 30.038866630751038,\n          \"Y\": 39.818984693557866\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 31.22226611843761,\n          \"Y\": 40.73133733059518\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.59389188003861,\n          \"Y\": 39.65332936503432\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.4663340160892,\n          \"Y\": 40.09740529655399\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 33.37503831069919,\n          \"Y\": 41.42950937314977\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 34.73118899157602,\n          \"Y\": 42.78168258862689\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 35.66436590227478,\n          \"Y\": 42.83057238033694\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 38.553890594846315,\n          \"Y\": 43.39277641890018\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 38.70345011625045,\n          \"Y\": 44.54318027243104\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 41.23517242356548,\n          \"Y\": 44.7490902467863\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 41.163655561388815,\n          \"Y\": 43.21644303021634\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 42.42113565444212,\n          \"Y\": 43.02494482051242\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 42.99773197244849,\n          \"Y\": 42.20056737363797\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 41.690277858644414,\n          \"Y\": 41.44598697156346\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 42.51786496796608,\n          \"Y\": 41.74514370591297\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.3672224100432464,\n          \"Y\": 0.48810911351361935\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.362481961988402,\n          \"Y\": 0.7076446081740262\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.8715888597202504,\n          \"Y\": 0.5387869363321125\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7846730243034472,\n          \"Y\": 0.10506846798668501\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7248963513441793,\n          \"Y\": 1.7527964620207235\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.4584252971562393,\n          \"Y\": 2.228366920830615\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.1279224722940642,\n          \"Y\": 3.443210568179678\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.479008906435281,\n          \"Y\": 3.6908288290815645\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.3615054073081352,\n          \"Y\": 4.27972153425087\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.8486611255806581,\n          \"Y\": 4.592720222548362\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.32944348639832954,\n          \"Y\": 4.596809693227079\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.21925626392848585,\n          \"Y\": 5.163907931661737\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.21992193392391401,\n          \"Y\": 4.118185761295895\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.4150919011751638,\n          \"Y\": 5.538117360209408\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7892140966783031,\n          \"Y\": 5.695449583765478\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.1404372527748952,\n          \"Y\": 5.866232913939554\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.8380893328893904,\n          \"Y\": 6.364770313736374\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.649053221222315,\n          \"Y\": 6.512174927857027\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.737182974826292,\n          \"Y\": 5.77836967516248\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.11560529994996305,\n          \"Y\": 7.5367062800404945\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2298973114533206,\n          \"Y\": 7.989511766138773\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.57161291446925,\n          \"Y\": 6.901917929677629\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.1801023491411033,\n          \"Y\": 8.860615665751432\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.1784410881273133,\n          \"Y\": 9.923272270828765\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7917192002889752,\n          \"Y\": 11.753085534646807\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7648020508226134,\n          \"Y\": 10.25041393399106\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.5234743284293881,\n          \"Y\": 11.775350954803978\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.05357856804105787,\n          \"Y\": 12.024349478829999\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.4184332014913338,\n          \"Y\": 14.340893261404778\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.7969379235979688,\n          \"Y\": 14.997540083518635\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7096426760664147,\n          \"Y\": 14.162334925784382\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.1397135872644253,\n          \"Y\": 14.5137914003321\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.31644446775231205,\n          \"Y\": 17.969278373643117\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.6438733418570133,\n          \"Y\": 18.422304921183187\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.1175523451407152,\n          \"Y\": 18.713873184030778\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.9686962872665608,\n          \"Y\": 18.74605534641339\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.001348574224465,\n          \"Y\": 18.21984280700007\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2367693402425317,\n          \"Y\": 17.359669921367168\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.2995047254719734,\n          \"Y\": 17.419198206704273\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.8622826020639092,\n          \"Y\": 18.53931366111848\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.0735971282483163,\n          \"Y\": 17.975531013733278\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2451588531584312,\n          \"Y\": 18.79352133226893\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.7834409223822317,\n          \"Y\": 17.519317572506424\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.022324380796899135,\n          \"Y\": 18.666677816733223\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7061071858531587,\n          \"Y\": 17.365038139967538\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.0408194778375142,\n          \"Y\": 16.453328413776028\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.5405091660502246,\n          \"Y\": 17.549414850528695\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 3.9338660225548883,\n          \"Y\": 18.810585449009046\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.934341937148822,\n          \"Y\": 19.291644715457366\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.860698325850149,\n          \"Y\": 18.481355238954116\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.705451214097312,\n          \"Y\": 19.045493557223\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 6.967486968545026,\n          \"Y\": 20.43685475506132\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 7.850876988134879,\n          \"Y\": 20.85970235656663\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.392808772137586,\n          \"Y\": 23.32121753848475\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.372631457732883,\n          \"Y\": 23.550505259601916\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 9.871662866734457,\n          \"Y\": 23.307490436256916\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.314173898117193,\n          \"Y\": 22.949374682117536\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.32563322222216,\n          \"Y\": 22.80572929728597\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 11.975182162138363,\n          \"Y\": 22.756945025950817\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.534798358225013,\n          \"Y\": 23.922399218838915\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.939544608950607,\n          \"Y\": 24.9043680997103\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.852997836030292,\n          \"Y\": 24.505991407121257\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.722821358543685,\n          \"Y\": 24.594075915773587\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.103015251522454,\n          \"Y\": 25.337305991383168\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.613805810396606,\n          \"Y\": 24.313422106066636\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.080486829217792,\n          \"Y\": 25.777670422612843\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 11.503005763094693,\n          \"Y\": 26.751491443530828\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.268003621078462,\n          \"Y\": 27.23493393620551\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.107978224639371,\n          \"Y\": 26.92306508382835\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.28221444777585,\n          \"Y\": 29.395602706911507\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.801724593495212,\n          \"Y\": 31.014010268316014\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.27581330599868,\n          \"Y\": 32.454234349787356\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.029469444313813,\n          \"Y\": 32.87117959294212\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.19015709218286,\n          \"Y\": 32.86952476370945\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.773016432325253,\n          \"Y\": 32.73681053907679\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.51929695827333,\n          \"Y\": 34.48234688075527\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 20.037100194311396,\n          \"Y\": 34.946070338043754\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 21.818139030888776,\n          \"Y\": 35.85262831787663\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 21.732369533022062,\n          \"Y\": 38.285815587214415\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 22.57036154565432,\n          \"Y\": 39.26475493081164\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 22.65428937960439,\n          \"Y\": 38.16420139841805\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 24.780585362838643,\n          \"Y\": 39.91054354562683\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 25.38354438220824,\n          \"Y\": 39.24486197722906\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 27.164442953314957,\n          \"Y\": 40.251417386922114\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 28.28179394365139,\n          \"Y\": 40.646152553616645\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 28.30913626904519,\n          \"Y\": 41.02315352290143\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 29.883021734981654,\n          \"Y\": 41.74567007600542\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 31.777263046995003,\n          \"Y\": 41.57505095385209\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.06844181937742,\n          \"Y\": 42.277030586291964\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 34.001286580375854,\n          \"Y\": 44.064459055471616\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 35.46263684098056,\n          \"Y\": 44.39313681002709\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 35.91657596164125,\n          \"Y\": 43.94958775308008\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 36.54973787601623,\n          \"Y\": 42.1580021668003\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 37.3930776154532,\n          \"Y\": 41.48314238427116\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 38.38432519062528,\n          \"Y\": 42.29679000879268\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 38.91123441323717,\n          \"Y\": 41.26209411757374\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 40.26594826553113,\n          \"Y\": 41.8782209368717\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 39.4284901166666,\n          \"Y\": 41.68026687276266\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 40.12485821299953,\n          \"Y\": 40.82370707767209\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 40.09959115483099,\n          \"Y\": 40.61801492575557\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.3672224100432464,\n          \"Y\": 0.48810911351361935\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.362481961988402,\n          \"Y\": 0.7076446081740262\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.8715888597202504,\n          \"Y\": 0.5387869363321125\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7846730243034472,\n          \"Y\": 0.10506846798668501\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7248963513441793,\n          \"Y\": 1.7527964620207235\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.4584252971562393,\n          \"Y\": 2.228366920830615\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.1279224722940642,\n          \"Y\": 3.443210568179678\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.479008906435281,\n          \"Y\": 3.6908288290815645\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.3615054073081352,\n          \"Y\": 4.27972153425087\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.8486611255806581,\n          \"Y\": 4.592720222548362\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.32944348639832954,\n          \"Y\": 4.596809693227079\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.21925626392848585,\n          \"Y\": 5.163907931661737\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.21992193392391401,\n          \"Y\": 4.118185761295895\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.4150919011751638,\n          \"Y\": 5.538117360209408\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7892140966783031,\n          \"Y\": 5.695449583765478\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.1404372527748952,\n          \"Y\": 5.866232913939554\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.8380893328893904,\n          \"Y\": 6.364770313736374\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.649053221222315,\n          \"Y\": 6.512174927857027\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.737182974826292,\n          \"Y\": 5.77836967516248\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.11560529994996305,\n          \"Y\": 7.5367062800404945\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2298973114533206,\n          \"Y\": 7.989511766138773\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.57161291446925,\n          \"Y\": 6.901917929677629\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.1801023491411033,\n          \"Y\": 8.860615665751432\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.1784410881273133,\n          \"Y\": 9.923272270828765\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7917192002889752,\n          \"Y\": 11.753085534646807\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7648020508226134,\n          \"Y\": 10.25041393399106\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.5234743284293881,\n          \"Y\": 11.775350954803978\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.05357856804105787,\n          \"Y\": 12.024349478829999\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.4184332014913338,\n          \"Y\": 14.340893261404778\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.7969379235979688,\n          \"Y\": 14.997540083518635\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7096426760664147,\n          \"Y\": 14.162334925784382\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.1397135872644253,\n          \"Y\": 14.5137914003321\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.31644446775231205,\n          \"Y\": 17.969278373643117\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.6438733418570133,\n          \"Y\": 18.422304921183187\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.1175523451407152,\n          \"Y\": 18.713873184030778\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.9686962872665608,\n          \"Y\": 18.74605534641339\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.001348574224465,\n          \"Y\": 18.21984280700007\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2367693402425317,\n          \"Y\": 17.359669921367168\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.2995047254719734,\n          \"Y\": 17.419198206704273\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.8622826020639092,\n          \"Y\": 18.53931366111848\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.0735971282483163,\n          \"Y\": 17.975531013733278\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2451588531584312,\n          \"Y\": 18.79352133226893\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.7834409223822317,\n          \"Y\": 17.519317572506424\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.022324380796899135,\n          \"Y\": 18.666677816733223\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7061071858531587,\n          \"Y\": 17.365038139967538\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.0408194778375142,\n          \"Y\": 16.453328413776028\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.5405091660502246,\n          \"Y\": 17.549414850528695\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 3.9338660225548883,\n          \"Y\": 18.810585449009046\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.934341937148822,\n          \"Y\": 19.291644715457366\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.860698325850149,\n          \"Y\": 18.481355238954116\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.705451214097312,\n          \"Y\": 19.045493557223\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 6.967486968545026,\n          \"Y\": 20.43685475506132\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 7.850876988134879,\n          \"Y\": 20.85970235656663\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.392808772137586,\n          \"Y\": 23.32121753848475\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.372631457732883,\n          \"Y\": 23.550505259601916\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 9.871662866734457,\n          \"Y\": 23.307490436256916\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.314173898117193,\n          \"Y\": 22.949374682117536\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.32563322222216,\n          \"Y\": 22.80572929728597\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 11.975182162138363,\n          \"Y\": 22.756945025950817\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.534798358225013,\n          \"Y\": 23.922399218838915\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.939544608950607,\n          \"Y\": 24.9043680997103\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.852997836030292,\n          \"Y\": 24.505991407121257\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.722821358543685,\n          \"Y\": 24.594075915773587\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.103015251522454,\n          \"Y\": 25.337305991383168\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.613805810396606,\n          \"Y\": 24.313422106066636\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.080486829217792,\n          \"Y\": 25.777670422612843\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 11.503005763094693,\n          \"Y\": 26.751491443530828\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.268003621078462,\n          \"Y\": 27.23493393620551\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.107978224639371,\n          \"Y\": 26.92306508382835\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.28221444777585,\n          \"Y\": 29.395602706911507\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.801724593495212,\n          \"Y\": 31.014010268316014\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.27581330599868,\n          \"Y\": 32.454234349787356\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.029469444313813,\n          \"Y\": 32.87117959294212\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.19015709218286,\n          \"Y\": 32.86952476370945\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.773016432325253,\n          \"Y\": 32.73681053907679\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.51929695827333,\n          \"Y\": 34.48234688075527\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 20.037100194311396,\n          \"Y\": 34.946070338043754\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 21.818139030888776,\n          \"Y\": 35.85262831787663\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 21.732369533022062,\n          \"Y\": 38.285815587214415\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 22.57036154565432,\n          \"Y\": 39.26475493081164\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 22.65428937960439,\n          \"Y\": 38.16420139841805\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 24.780585362838643,\n          \"Y\": 39.91054354562683\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 25.38354438220824,\n          \"Y\": 39.24486197722906\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 27.164442953314957,\n          \"Y\": 40.251417386922114\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 28.28179394365139,\n          \"Y\": 40.646152553616645\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 28.30913626904519,\n          \"Y\": 41.02315352290143\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 29.883021734981654,\n          \"Y\": 41.74567007600542\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 31.777263046995003,\n          \"Y\": 41.57505095385209\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.06844181937742,\n          \"Y\": 42.277030586291964\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 34.001286580375854,\n          \"Y\": 44.064459055471616\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 35.46263684098056,\n          \"Y\": 44.39313681002709\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 35.91657596164125,\n          \"Y\": 43.94958775308008\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 36.54973787601623,\n          \"Y\": 42.1580021668003\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 37.3930776154532,\n          \"Y\": 41.48314238427116\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 38.38432519062528,\n          \"Y\": 42.29679000879268\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 38.91123441323717,\n          \"Y\": 41.26209411757374\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 40.166021193732696,\n          \"Y\": 40.759603208035806\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 40.50605107857945,\n          \"Y\": 41.098319086440625\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 41.47828444799129,\n          \"Y\": 42.79761600201785\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 41.18248674870844,\n          \"Y\": 42.65921546057904\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.3672224100432464,\n          \"Y\": 0.48810911351361935\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.362481961988402,\n          \"Y\": 0.7076446081740262\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.8715888597202504,\n          \"Y\": 0.5387869363321125\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7846730243034472,\n          \"Y\": 0.10506846798668501\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7248963513441793,\n          \"Y\": 1.7527964620207235\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.4584252971562393,\n          \"Y\": 2.228366920830615\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.1279224722940642,\n          \"Y\": 3.443210568179678\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.479008906435281,\n          \"Y\": 3.6908288290815645\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.3615054073081352,\n          \"Y\": 4.27972153425087\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.8486611255806581,\n          \"Y\": 4.592720222548362\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.32944348639832954,\n          \"Y\": 4.596809693227079\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.21925626392848585,\n          \"Y\": 5.163907931661737\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.21992193392391401,\n          \"Y\": 4.118185761295895\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.4150919011751638,\n          \"Y\": 5.538117360209408\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7892140966783031,\n          \"Y\": 5.695449583765478\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.1404372527748952,\n          \"Y\": 5.866232913939554\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.8380893328893904,\n          \"Y\": 6.364770313736374\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.649053221222315,\n          \"Y\": 6.512174927857027\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.737182974826292,\n          \"Y\": 5.77836967516248\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.11560529994996305,\n          \"Y\": 7.5367062800404945\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2298973114533206,\n          \"Y\": 7.989511766138773\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.57161291446925,\n          \"Y\": 6.901917929677629\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.1801023491411033,\n          \"Y\": 8.860615665751432\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.1784410881273133,\n          \"Y\": 9.923272270828765\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7917192002889752,\n          \"Y\": 11.753085534646807\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7648020508226134,\n          \"Y\": 10.25041393399106\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.5234743284293881,\n          \"Y\": 11.775350954803978\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.05357856804105787,\n          \"Y\": 12.024349478829999\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.4184332014913338,\n          \"Y\": 14.340893261404778\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.7969379235979688,\n          \"Y\": 14.997540083518635\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7096426760664147,\n          \"Y\": 14.162334925784382\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.1397135872644253,\n          \"Y\": 14.5137914003321\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.31644446775231205,\n          \"Y\": 17.969278373643117\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.6438733418570133,\n          \"Y\": 18.422304921183187\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.1175523451407152,\n          \"Y\": 18.713873184030778\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.9686962872665608,\n          \"Y\": 18.74605534641339\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.001348574224465,\n          \"Y\": 18.21984280700007\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2367693402425317,\n          \"Y\": 17.359669921367168\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.2995047254719734,\n          \"Y\": 17.419198206704273\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.8622826020639092,\n          \"Y\": 18.53931366111848\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.0735971282483163,\n          \"Y\": 17.975531013733278\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2451588531584312,\n          \"Y\": 18.79352133226893\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.7834409223822317,\n          \"Y\": 17.519317572506424\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.022324380796899135,\n          \"Y\": 18.666677816733223\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7061071858531587,\n          \"Y\": 17.365038139967538\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.0408194778375142,\n          \"Y\": 16.453328413776028\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.5405091660502246,\n          \"Y\": 17.549414850528695\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 3.9338660225548883,\n          \"Y\": 18.810585449009046\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.934341937148822,\n          \"Y\": 19.291644715457366\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.860698325850149,\n          \"Y\": 18.481355238954116\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.705451214097312,\n          \"Y\": 19.045493557223\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 6.967486968545026,\n          \"Y\": 20.43685475506132\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 7.850876988134879,\n          \"Y\": 20.85970235656663\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.392808772137586,\n          \"Y\": 23.32121753848475\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.372631457732883,\n          \"Y\": 23.550505259601916\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 9.871662866734457,\n          \"Y\": 23.307490436256916\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.314173898117193,\n          \"Y\": 22.949374682117536\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.32563322222216,\n          \"Y\": 22.80572929728597\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 11.975182162138363,\n          \"Y\": 22.756945025950817\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.534798358225013,\n          \"Y\": 23.922399218838915\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.939544608950607,\n          \"Y\": 24.9043680997103\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.852997836030292,\n          \"Y\": 24.505991407121257\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.722821358543685,\n          \"Y\": 24.594075915773587\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.103015251522454,\n          \"Y\": 25.337305991383168\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.613805810396606,\n          \"Y\": 24.313422106066636\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.080486829217792,\n          \"Y\": 25.777670422612843\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 11.503005763094693,\n          \"Y\": 26.751491443530828\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.268003621078462,\n          \"Y\": 27.23493393620551\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.107978224639371,\n          \"Y\": 26.92306508382835\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.28221444777585,\n          \"Y\": 29.395602706911507\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.801724593495212,\n          \"Y\": 31.014010268316014\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.27581330599868,\n          \"Y\": 32.454234349787356\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.029469444313813,\n          \"Y\": 32.87117959294212\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.19015709218286,\n          \"Y\": 32.86952476370945\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.773016432325253,\n          \"Y\": 32.73681053907679\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.51929695827333,\n          \"Y\": 34.48234688075527\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 20.037100194311396,\n          \"Y\": 34.946070338043754\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 21.818139030888776,\n          \"Y\": 35.85262831787663\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 21.732369533022062,\n          \"Y\": 38.285815587214415\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 22.57036154565432,\n          \"Y\": 39.26475493081164\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 22.65428937960439,\n          \"Y\": 38.16420139841805\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 24.780585362838643,\n          \"Y\": 39.91054354562683\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 25.38354438220824,\n          \"Y\": 39.24486197722906\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 27.164442953314957,\n          \"Y\": 40.251417386922114\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 28.28179394365139,\n          \"Y\": 40.646152553616645\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 28.30913626904519,\n          \"Y\": 41.02315352290143\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 29.883021734981654,\n          \"Y\": 41.74567007600542\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 31.777263046995003,\n          \"Y\": 41.57505095385209\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.06844181937742,\n          \"Y\": 42.277030586291964\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 34.001286580375854,\n          \"Y\": 44.064459055471616\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 35.46263684098056,\n          \"Y\": 44.39313681002709\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 35.91657596164125,\n          \"Y\": 43.94958775308008\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 36.54973787601623,\n          \"Y\": 42.1580021668003\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 37.3930776154532,\n          \"Y\": 41.48314238427116\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 38.38432519062528,\n          \"Y\": 42.29679000879268\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 38.91123441323717,\n          \"Y\": 41.26209411757374\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 40.166021193732696,\n          \"Y\": 40.759603208035806\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 40.50605107857945,\n          \"Y\": 41.098319086440625\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 41.47828444799129,\n          \"Y\": 42.79761600201785\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 41.953536690486416,\n          \"Y\": 44.50060661126623\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.3672224100432464,\n          \"Y\": 0.48810911351361935\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.362481961988402,\n          \"Y\": 0.7076446081740262\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.8715888597202504,\n          \"Y\": 0.5387869363321125\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7846730243034472,\n          \"Y\": 0.10506846798668501\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7248963513441793,\n          \"Y\": 1.7527964620207235\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.4584252971562393,\n          \"Y\": 2.228366920830615\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.1279224722940642,\n          \"Y\": 3.443210568179678\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.479008906435281,\n          \"Y\": 3.6908288290815645\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.3615054073081352,\n          \"Y\": 4.27972153425087\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.8486611255806581,\n          \"Y\": 4.592720222548362\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.32944348639832954,\n          \"Y\": 4.596809693227079\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.21925626392848585,\n          \"Y\": 5.163907931661737\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.21992193392391401,\n          \"Y\": 4.118185761295895\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.4150919011751638,\n          \"Y\": 5.538117360209408\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7892140966783031,\n          \"Y\": 5.695449583765478\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.1404372527748952,\n          \"Y\": 5.866232913939554\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.8380893328893904,\n          \"Y\": 6.364770313736374\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.649053221222315,\n          \"Y\": 6.512174927857027\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.737182974826292,\n          \"Y\": 5.77836967516248\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.11560529994996305,\n          \"Y\": 7.5367062800404945\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2298973114533206,\n          \"Y\": 7.989511766138773\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.57161291446925,\n          \"Y\": 6.901917929677629\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.1801023491411033,\n          \"Y\": 8.860615665751432\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.1784410881273133,\n          \"Y\": 9.923272270828765\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7917192002889752,\n          \"Y\": 11.753085534646807\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7648020508226134,\n          \"Y\": 10.25041393399106\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.5234743284293881,\n          \"Y\": 11.775350954803978\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.05357856804105787,\n          \"Y\": 12.024349478829999\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.4184332014913338,\n          \"Y\": 14.340893261404778\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.7969379235979688,\n          \"Y\": 14.997540083518635\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7096426760664147,\n          \"Y\": 14.162334925784382\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.1397135872644253,\n          \"Y\": 14.5137914003321\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.31644446775231205,\n          \"Y\": 17.969278373643117\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.6438733418570133,\n          \"Y\": 18.422304921183187\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.1175523451407152,\n          \"Y\": 18.713873184030778\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.9686962872665608,\n          \"Y\": 18.74605534641339\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.001348574224465,\n          \"Y\": 18.21984280700007\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2367693402425317,\n          \"Y\": 17.359669921367168\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.2995047254719734,\n          \"Y\": 17.419198206704273\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.8622826020639092,\n          \"Y\": 18.53931366111848\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.0735971282483163,\n          \"Y\": 17.975531013733278\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2451588531584312,\n          \"Y\": 18.79352133226893\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.7834409223822317,\n          \"Y\": 17.519317572506424\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.022324380796899135,\n          \"Y\": 18.666677816733223\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7061071858531587,\n          \"Y\": 17.365038139967538\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.0408194778375142,\n          \"Y\": 16.453328413776028\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.5405091660502246,\n          \"Y\": 17.549414850528695\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 3.9338660225548883,\n          \"Y\": 18.810585449009046\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.934341937148822,\n          \"Y\": 19.291644715457366\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.860698325850149,\n          \"Y\": 18.481355238954116\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.705451214097312,\n          \"Y\": 19.045493557223\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 6.967486968545026,\n          \"Y\": 20.43685475506132\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 7.850876988134879,\n          \"Y\": 20.85970235656663\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.392808772137586,\n          \"Y\": 23.32121753848475\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.372631457732883,\n          \"Y\": 23.550505259601916\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 9.871662866734457,\n          \"Y\": 23.307490436256916\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.314173898117193,\n          \"Y\": 22.949374682117536\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.32563322222216,\n          \"Y\": 22.80572929728597\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 11.975182162138363,\n          \"Y\": 22.756945025950817\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.534798358225013,\n          \"Y\": 23.922399218838915\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.939544608950607,\n          \"Y\": 24.9043680997103\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.852997836030292,\n          \"Y\": 24.505991407121257\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.722821358543685,\n          \"Y\": 24.594075915773587\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.103015251522454,\n          \"Y\": 25.337305991383168\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.613805810396606,\n          \"Y\": 24.313422106066636\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.080486829217792,\n          \"Y\": 25.777670422612843\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 11.503005763094693,\n          \"Y\": 26.751491443530828\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.268003621078462,\n          \"Y\": 27.23493393620551\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.107978224639371,\n          \"Y\": 26.92306508382835\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.28221444777585,\n          \"Y\": 29.395602706911507\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.801724593495212,\n          \"Y\": 31.014010268316014\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.27581330599868,\n          \"Y\": 32.454234349787356\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.029469444313813,\n          \"Y\": 32.87117959294212\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.19015709218286,\n          \"Y\": 32.86952476370945\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.773016432325253,\n          \"Y\": 32.73681053907679\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.51929695827333,\n          \"Y\": 34.48234688075527\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 20.037100194311396,\n          \"Y\": 34.946070338043754\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 21.818139030888776,\n          \"Y\": 35.85262831787663\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 21.732369533022062,\n          \"Y\": 38.285815587214415\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 22.57036154565432,\n          \"Y\": 39.26475493081164\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 22.65428937960439,\n          \"Y\": 38.16420139841805\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 24.780585362838643,\n          \"Y\": 39.91054354562683\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 25.38354438220824,\n          \"Y\": 39.24486197722906\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 27.164442953314957,\n          \"Y\": 40.251417386922114\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 28.28179394365139,\n          \"Y\": 40.646152553616645\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 28.30913626904519,\n          \"Y\": 41.02315352290143\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 29.883021734981654,\n          \"Y\": 41.74567007600542\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 31.777263046995003,\n          \"Y\": 41.57505095385209\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.06844181937742,\n          \"Y\": 42.277030586291964\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 34.001286580375854,\n          \"Y\": 44.064459055471616\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 35.46263684098056,\n          \"Y\": 44.39313681002709\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 35.91657596164125,\n          \"Y\": 43.94958775308008\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 36.54973787601623,\n          \"Y\": 42.1580021668003\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 37.3930776154532,\n          \"Y\": 41.48314238427116\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 38.38432519062528,\n          \"Y\": 42.29679000879268\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 38.91123441323717,\n          \"Y\": 41.26209411757374\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 39.52098004401935,\n          \"Y\": 40.99541891009436\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 40.31056007737459,\n          \"Y\": 41.773538622098734\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 40.49512318630572,\n          \"Y\": 41.23779202277633\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 41.97362812691924,\n          \"Y\": 40.64697990298612\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.3672224100432464,\n          \"Y\": 0.48810911351361935\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.362481961988402,\n          \"Y\": 0.7076446081740262\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.8715888597202504,\n          \"Y\": 0.5387869363321125\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7846730243034472,\n          \"Y\": 0.10506846798668501\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7248963513441793,\n          \"Y\": 1.7527964620207235\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.4584252971562393,\n          \"Y\": 2.228366920830615\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.1279224722940642,\n          \"Y\": 3.443210568179678\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.479008906435281,\n          \"Y\": 3.6908288290815645\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.3615054073081352,\n          \"Y\": 4.27972153425087\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.8486611255806581,\n          \"Y\": 4.592720222548362\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.32944348639832954,\n          \"Y\": 4.596809693227079\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.21925626392848585,\n          \"Y\": 5.163907931661737\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.21992193392391401,\n          \"Y\": 4.118185761295895\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.4150919011751638,\n          \"Y\": 5.538117360209408\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7892140966783031,\n          \"Y\": 5.695449583765478\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.1404372527748952,\n          \"Y\": 5.866232913939554\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.8380893328893904,\n          \"Y\": 6.364770313736374\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.649053221222315,\n          \"Y\": 6.512174927857027\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.737182974826292,\n          \"Y\": 5.77836967516248\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.11560529994996305,\n          \"Y\": 7.5367062800404945\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2298973114533206,\n          \"Y\": 7.989511766138773\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.57161291446925,\n          \"Y\": 6.901917929677629\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.1801023491411033,\n          \"Y\": 8.860615665751432\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.1784410881273133,\n          \"Y\": 9.923272270828765\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7917192002889752,\n          \"Y\": 11.753085534646807\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7648020508226134,\n          \"Y\": 10.25041393399106\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.5234743284293881,\n          \"Y\": 11.775350954803978\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.05357856804105787,\n          \"Y\": 12.024349478829999\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.4184332014913338,\n          \"Y\": 14.340893261404778\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.7969379235979688,\n          \"Y\": 14.997540083518635\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7096426760664147,\n          \"Y\": 14.162334925784382\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.1397135872644253,\n          \"Y\": 14.5137914003321\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.31644446775231205,\n          \"Y\": 17.969278373643117\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.6438733418570133,\n          \"Y\": 18.422304921183187\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.1175523451407152,\n          \"Y\": 18.713873184030778\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.9686962872665608,\n          \"Y\": 18.74605534641339\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.001348574224465,\n          \"Y\": 18.21984280700007\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2367693402425317,\n          \"Y\": 17.359669921367168\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.2995047254719734,\n          \"Y\": 17.419198206704273\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.8622826020639092,\n          \"Y\": 18.53931366111848\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.0735971282483163,\n          \"Y\": 17.975531013733278\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2451588531584312,\n          \"Y\": 18.79352133226893\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.7834409223822317,\n          \"Y\": 17.519317572506424\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.022324380796899135,\n          \"Y\": 18.666677816733223\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7061071858531587,\n          \"Y\": 17.365038139967538\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.0408194778375142,\n          \"Y\": 16.453328413776028\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.5405091660502246,\n          \"Y\": 17.549414850528695\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 3.9338660225548883,\n          \"Y\": 18.810585449009046\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.934341937148822,\n          \"Y\": 19.291644715457366\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.860698325850149,\n          \"Y\": 18.481355238954116\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.705451214097312,\n          \"Y\": 19.045493557223\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 6.967486968545026,\n          \"Y\": 20.43685475506132\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 7.850876988134879,\n          \"Y\": 20.85970235656663\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.392808772137586,\n          \"Y\": 23.32121753848475\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.372631457732883,\n          \"Y\": 23.550505259601916\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 9.871662866734457,\n          \"Y\": 23.307490436256916\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.314173898117193,\n          \"Y\": 22.949374682117536\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.32563322222216,\n          \"Y\": 22.80572929728597\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 11.975182162138363,\n          \"Y\": 22.756945025950817\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.534798358225013,\n          \"Y\": 23.922399218838915\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.939544608950607,\n          \"Y\": 24.9043680997103\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.852997836030292,\n          \"Y\": 24.505991407121257\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.722821358543685,\n          \"Y\": 24.594075915773587\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.103015251522454,\n          \"Y\": 25.337305991383168\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.613805810396606,\n          \"Y\": 24.313422106066636\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.080486829217792,\n          \"Y\": 25.777670422612843\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 11.503005763094693,\n          \"Y\": 26.751491443530828\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.268003621078462,\n          \"Y\": 27.23493393620551\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.107978224639371,\n          \"Y\": 26.92306508382835\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.28221444777585,\n          \"Y\": 29.395602706911507\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.801724593495212,\n          \"Y\": 31.014010268316014\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.27581330599868,\n          \"Y\": 32.454234349787356\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.029469444313813,\n          \"Y\": 32.87117959294212\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.19015709218286,\n          \"Y\": 32.86952476370945\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.773016432325253,\n          \"Y\": 32.73681053907679\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.51929695827333,\n          \"Y\": 34.48234688075527\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 20.037100194311396,\n          \"Y\": 34.946070338043754\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 21.818139030888776,\n          \"Y\": 35.85262831787663\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 21.732369533022062,\n          \"Y\": 38.285815587214415\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 22.57036154565432,\n          \"Y\": 39.26475493081164\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 22.65428937960439,\n          \"Y\": 38.16420139841805\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 24.780585362838643,\n          \"Y\": 39.91054354562683\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 25.38354438220824,\n          \"Y\": 39.24486197722906\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 27.164442953314957,\n          \"Y\": 40.251417386922114\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 26.560669601746632,\n          \"Y\": 39.735256602104684\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 27.68676596745725,\n          \"Y\": 39.29922370466575\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 28.952704273061375,\n          \"Y\": 38.57956299703587\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 30.85994523760473,\n          \"Y\": 38.58780878001739\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 31.71173182195131,\n          \"Y\": 41.00963032424547\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.25996671802696,\n          \"Y\": 42.62987372674458\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.13901643341855,\n          \"Y\": 42.64956953142973\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.51223380321943,\n          \"Y\": 42.002610122649294\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 34.35299124605617,\n          \"Y\": 41.24064784804826\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 35.844122036634836,\n          \"Y\": 42.1810784481577\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 37.9081438014521,\n          \"Y\": 42.22351955942152\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 38.894510433125106,\n          \"Y\": 43.06239427926112\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 38.91558178103346,\n          \"Y\": 42.185826893594445\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 39.14616660606475,\n          \"Y\": 41.82351594693451\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 39.517857227969024,\n          \"Y\": 43.242523449616634\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 39.33222642368304,\n          \"Y\": 44.853212976568145\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.3672224100432464,\n          \"Y\": 0.48810911351361935\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.362481961988402,\n          \"Y\": 0.7076446081740262\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.8715888597202504,\n          \"Y\": 0.5387869363321125\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7846730243034472,\n          \"Y\": 0.10506846798668501\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7248963513441793,\n          \"Y\": 1.7527964620207235\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.4584252971562393,\n          \"Y\": 2.228366920830615\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.1279224722940642,\n          \"Y\": 3.443210568179678\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.479008906435281,\n          \"Y\": 3.6908288290815645\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.3615054073081352,\n          \"Y\": 4.27972153425087\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.8486611255806581,\n          \"Y\": 4.592720222548362\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.32944348639832954,\n          \"Y\": 4.596809693227079\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.21925626392848585,\n          \"Y\": 5.163907931661737\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.21992193392391401,\n          \"Y\": 4.118185761295895\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.4150919011751638,\n          \"Y\": 5.538117360209408\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7892140966783031,\n          \"Y\": 5.695449583765478\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.1404372527748952,\n          \"Y\": 5.866232913939554\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.8380893328893904,\n          \"Y\": 6.364770313736374\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.649053221222315,\n          \"Y\": 6.512174927857027\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.737182974826292,\n          \"Y\": 5.77836967516248\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.11560529994996305,\n          \"Y\": 7.5367062800404945\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2298973114533206,\n          \"Y\": 7.989511766138773\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.57161291446925,\n          \"Y\": 6.901917929677629\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.1801023491411033,\n          \"Y\": 8.860615665751432\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.1784410881273133,\n          \"Y\": 9.923272270828765\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7917192002889752,\n          \"Y\": 11.753085534646807\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7648020508226134,\n          \"Y\": 10.25041393399106\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.5234743284293881,\n          \"Y\": 11.775350954803978\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.05357856804105787,\n          \"Y\": 12.024349478829999\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.4184332014913338,\n          \"Y\": 14.340893261404778\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.7969379235979688,\n          \"Y\": 14.997540083518635\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7096426760664147,\n          \"Y\": 14.162334925784382\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.1397135872644253,\n          \"Y\": 14.5137914003321\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.31644446775231205,\n          \"Y\": 17.969278373643117\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.6438733418570133,\n          \"Y\": 18.422304921183187\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.1175523451407152,\n          \"Y\": 18.713873184030778\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.9686962872665608,\n          \"Y\": 18.74605534641339\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.001348574224465,\n          \"Y\": 18.21984280700007\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2367693402425317,\n          \"Y\": 17.359669921367168\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.2995047254719734,\n          \"Y\": 17.419198206704273\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.8622826020639092,\n          \"Y\": 18.53931366111848\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.0735971282483163,\n          \"Y\": 17.975531013733278\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2451588531584312,\n          \"Y\": 18.79352133226893\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.7834409223822317,\n          \"Y\": 17.519317572506424\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.022324380796899135,\n          \"Y\": 18.666677816733223\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7061071858531587,\n          \"Y\": 17.365038139967538\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.0408194778375142,\n          \"Y\": 16.453328413776028\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.5405091660502246,\n          \"Y\": 17.549414850528695\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 3.9338660225548883,\n          \"Y\": 18.810585449009046\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.934341937148822,\n          \"Y\": 19.291644715457366\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.860698325850149,\n          \"Y\": 18.481355238954116\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.705451214097312,\n          \"Y\": 19.045493557223\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 6.967486968545026,\n          \"Y\": 20.43685475506132\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 7.850876988134879,\n          \"Y\": 20.85970235656663\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.392808772137586,\n          \"Y\": 23.32121753848475\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.372631457732883,\n          \"Y\": 23.550505259601916\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 9.871662866734457,\n          \"Y\": 23.307490436256916\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.314173898117193,\n          \"Y\": 22.949374682117536\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.32563322222216,\n          \"Y\": 22.80572929728597\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 11.975182162138363,\n          \"Y\": 22.756945025950817\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.534798358225013,\n          \"Y\": 23.922399218838915\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.939544608950607,\n          \"Y\": 24.9043680997103\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.852997836030292,\n          \"Y\": 24.505991407121257\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.722821358543685,\n          \"Y\": 24.594075915773587\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.103015251522454,\n          \"Y\": 25.337305991383168\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.613805810396606,\n          \"Y\": 24.313422106066636\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.080486829217792,\n          \"Y\": 25.777670422612843\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 11.503005763094693,\n          \"Y\": 26.751491443530828\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.268003621078462,\n          \"Y\": 27.23493393620551\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.107978224639371,\n          \"Y\": 26.92306508382835\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.28221444777585,\n          \"Y\": 29.395602706911507\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.801724593495212,\n          \"Y\": 31.014010268316014\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.27581330599868,\n          \"Y\": 32.454234349787356\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.029469444313813,\n          \"Y\": 32.87117959294212\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.19015709218286,\n          \"Y\": 32.86952476370945\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.773016432325253,\n          \"Y\": 32.73681053907679\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.51929695827333,\n          \"Y\": 34.48234688075527\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 20.037100194311396,\n          \"Y\": 34.946070338043754\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 21.818139030888776,\n          \"Y\": 35.85262831787663\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 21.732369533022062,\n          \"Y\": 38.285815587214415\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 22.57036154565432,\n          \"Y\": 39.26475493081164\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 22.65428937960439,\n          \"Y\": 38.16420139841805\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 24.780585362838643,\n          \"Y\": 39.91054354562683\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 25.38354438220824,\n          \"Y\": 39.24486197722906\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 27.164442953314957,\n          \"Y\": 40.251417386922114\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 28.28179394365139,\n          \"Y\": 40.646152553616645\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 28.30913626904519,\n          \"Y\": 41.02315352290143\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 29.883021734981654,\n          \"Y\": 41.74567007600542\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 31.777263046995003,\n          \"Y\": 41.57505095385209\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.06844181937742,\n          \"Y\": 42.277030586291964\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 34.001286580375854,\n          \"Y\": 44.064459055471616\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 35.46263684098056,\n          \"Y\": 44.39313681002709\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 35.91657596164125,\n          \"Y\": 43.94958775308008\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 36.54973787601623,\n          \"Y\": 42.1580021668003\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 37.3930776154532,\n          \"Y\": 41.48314238427116\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 38.38432519062528,\n          \"Y\": 42.29679000879268\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 39.898957888172944,\n          \"Y\": 42.09404055571683\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 41.46989633031488,\n          \"Y\": 42.94971882423167\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 41.64092592263666,\n          \"Y\": 42.01241395939619\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 41.17027081443124,\n          \"Y\": 43.06694784486476\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 41.634263968098416,\n          \"Y\": 41.98798231318356\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.3672224100432464,\n          \"Y\": 0.48810911351361935\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.362481961988402,\n          \"Y\": 0.7076446081740262\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.8715888597202504,\n          \"Y\": 0.5387869363321125\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7846730243034472,\n          \"Y\": 0.10506846798668501\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7248963513441793,\n          \"Y\": 1.7527964620207235\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.4584252971562393,\n          \"Y\": 2.228366920830615\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.1279224722940642,\n          \"Y\": 3.443210568179678\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.479008906435281,\n          \"Y\": 3.6908288290815645\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.3615054073081352,\n          \"Y\": 4.27972153425087\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.8486611255806581,\n          \"Y\": 4.592720222548362\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.32944348639832954,\n          \"Y\": 4.596809693227079\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.21925626392848585,\n          \"Y\": 5.163907931661737\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.21992193392391401,\n          \"Y\": 4.118185761295895\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.4150919011751638,\n          \"Y\": 5.538117360209408\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7892140966783031,\n          \"Y\": 5.695449583765478\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.1404372527748952,\n          \"Y\": 5.866232913939554\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.8380893328893904,\n          \"Y\": 6.364770313736374\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.649053221222315,\n          \"Y\": 6.512174927857027\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.737182974826292,\n          \"Y\": 5.77836967516248\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.11560529994996305,\n          \"Y\": 7.5367062800404945\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2298973114533206,\n          \"Y\": 7.989511766138773\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.57161291446925,\n          \"Y\": 6.901917929677629\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.1801023491411033,\n          \"Y\": 8.860615665751432\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.1784410881273133,\n          \"Y\": 9.923272270828765\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7917192002889752,\n          \"Y\": 11.753085534646807\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7648020508226134,\n          \"Y\": 10.25041393399106\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.5234743284293881,\n          \"Y\": 11.775350954803978\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.05357856804105787,\n          \"Y\": 12.024349478829999\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.4184332014913338,\n          \"Y\": 14.340893261404778\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.7969379235979688,\n          \"Y\": 14.997540083518635\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7096426760664147,\n          \"Y\": 14.162334925784382\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.1397135872644253,\n          \"Y\": 14.5137914003321\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.31644446775231205,\n          \"Y\": 17.969278373643117\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.6438733418570133,\n          \"Y\": 18.422304921183187\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.1175523451407152,\n          \"Y\": 18.713873184030778\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.9686962872665608,\n          \"Y\": 18.74605534641339\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.001348574224465,\n          \"Y\": 18.21984280700007\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2367693402425317,\n          \"Y\": 17.359669921367168\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.2995047254719734,\n          \"Y\": 17.419198206704273\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.8622826020639092,\n          \"Y\": 18.53931366111848\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.0735971282483163,\n          \"Y\": 17.975531013733278\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2451588531584312,\n          \"Y\": 18.79352133226893\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.7834409223822317,\n          \"Y\": 17.519317572506424\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.022324380796899135,\n          \"Y\": 18.666677816733223\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7061071858531587,\n          \"Y\": 17.365038139967538\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.0408194778375142,\n          \"Y\": 16.453328413776028\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.5405091660502246,\n          \"Y\": 17.549414850528695\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 3.9338660225548883,\n          \"Y\": 18.810585449009046\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.934341937148822,\n          \"Y\": 19.291644715457366\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.860698325850149,\n          \"Y\": 18.481355238954116\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.705451214097312,\n          \"Y\": 19.045493557223\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 6.967486968545026,\n          \"Y\": 20.43685475506132\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 7.850876988134879,\n          \"Y\": 20.85970235656663\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.392808772137586,\n          \"Y\": 23.32121753848475\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.372631457732883,\n          \"Y\": 23.550505259601916\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 9.871662866734457,\n          \"Y\": 23.307490436256916\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.314173898117193,\n          \"Y\": 22.949374682117536\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.32563322222216,\n          \"Y\": 22.80572929728597\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 11.975182162138363,\n          \"Y\": 22.756945025950817\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.534798358225013,\n          \"Y\": 23.922399218838915\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.939544608950607,\n          \"Y\": 24.9043680997103\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.852997836030292,\n          \"Y\": 24.505991407121257\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.722821358543685,\n          \"Y\": 24.594075915773587\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.103015251522454,\n          \"Y\": 25.337305991383168\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.613805810396606,\n          \"Y\": 24.313422106066636\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.080486829217792,\n          \"Y\": 25.777670422612843\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 11.503005763094693,\n          \"Y\": 26.751491443530828\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.268003621078462,\n          \"Y\": 27.23493393620551\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.107978224639371,\n          \"Y\": 26.92306508382835\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.28221444777585,\n          \"Y\": 29.395602706911507\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.801724593495212,\n          \"Y\": 31.014010268316014\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.27581330599868,\n          \"Y\": 32.454234349787356\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.029469444313813,\n          \"Y\": 32.87117959294212\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.19015709218286,\n          \"Y\": 32.86952476370945\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.773016432325253,\n          \"Y\": 32.73681053907679\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.51929695827333,\n          \"Y\": 34.48234688075527\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 18.517892728110063,\n          \"Y\": 36.48035168551525\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 19.204987885038665,\n          \"Y\": 39.88678266817718\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 21.442417253877316,\n          \"Y\": 41.08072121114131\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 23.00537003178552,\n          \"Y\": 40.67876253519744\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 24.77068463689155,\n          \"Y\": 39.644754539327785\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 26.841222405457636,\n          \"Y\": 40.610556540600946\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 27.866274921957416,\n          \"Y\": 40.70386345163607\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 28.440999181920027,\n          \"Y\": 41.26333519355627\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 29.415990440563707,\n          \"Y\": 41.53555764534253\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 29.311058090188595,\n          \"Y\": 42.16967838673546\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 30.282831663472386,\n          \"Y\": 43.0424291894592\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 30.293365662434958,\n          \"Y\": 42.438015235063844\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 31.068088386419674,\n          \"Y\": 42.2623529357851\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 30.43196031201329,\n          \"Y\": 39.82537011905435\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.64091621401201,\n          \"Y\": 40.45746585540844\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 34.41602785548827,\n          \"Y\": 40.00534774705635\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 35.08714623791322,\n          \"Y\": 41.56836269107095\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 35.85003087316117,\n          \"Y\": 42.44067187392689\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 35.37660646007298,\n          \"Y\": 40.60848049122916\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 37.356787408662605,\n          \"Y\": 39.767933934314186\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 39.74513735869365,\n          \"Y\": 38.194836342145834\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 37.94004385048179,\n          \"Y\": 38.336382378021625\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 37.758549528236486,\n          \"Y\": 38.273403209139026\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 37.048338160833765,\n          \"Y\": 40.01044901766141\n         }\n        ]\n       },\n       \"encoding\": {\n        \"color\": {\n         \"field\": \"Outlier\"\n        },\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"circle\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"inferredVectors = fst =<< particles\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"plot \\n\",\n    \"    (zip \\n\",\n    \"        (fmap (\\\\v -> (v V.! 0, v V.! 1)) $ trueVectors <> inferredVectors) \\n\",\n    \"        (replicate 100 (T.pack \\\"True\\\") <> replicate 1000 (T.pack \\\"Inferred\\\")))\\n\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Haskell - nixpkgs\",\n   \"language\": \"haskell\",\n   \"name\": \"ihaskell_nixpkgs\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": \"ihaskell\",\n   \"file_extension\": \".hs\",\n   \"mimetype\": \"text/x-haskell\",\n   \"name\": \"haskell\",\n   \"pygments_lexer\": \"Haskell\",\n   \"version\": \"9.0.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "notebooks/file.json",
    "content": "{\n  \"name\": \"John\",\n  \"isAlive\": true,\n  \"age\": 27,\n  \"height\": 1.5,\n  \"address\": {\n    \"streetAddress\": \"21 2nd Street\",\n    \"id\" : 5.4\n  }\n\n}"
  },
  {
    "path": "notebooks/models/LDA.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"id\": \"01d81119-f1fc-4bd1-9e31-c3477b8edebc\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \":e OverloadedStrings\\n\",\n    \":l ../models/LDA.hs\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"id\": \"635da03a-4d61-453f-bbd1-cc81b1315200\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"( fromList\\n\",\n       \"    [\\n\",\n       \"        ( \\\"topic1\\\"\\n\",\n       \"        ,\\n\",\n       \"            [\\n\",\n       \"                ( \\\"bear\\\"\\n\",\n       \"                , 0.34365781935415857\\n\",\n       \"                )\\n\",\n       \"            ,\\n\",\n       \"                ( \\\"wolf\\\"\\n\",\n       \"                , 0.2556245339526619\\n\",\n       \"                )\\n\",\n       \"            ,\\n\",\n       \"                ( \\\"python\\\"\\n\",\n       \"                , 0.24562951016031953\\n\",\n       \"                )\\n\",\n       \"            ,\\n\",\n       \"                ( \\\"prolog\\\"\\n\",\n       \"                , 0.15508813653285997\\n\",\n       \"                )\\n\",\n       \"            ]\\n\",\n       \"        )\\n\",\n       \"    ,\\n\",\n       \"        ( \\\"topic2\\\"\\n\",\n       \"        ,\\n\",\n       \"            [\\n\",\n       \"                ( \\\"bear\\\"\\n\",\n       \"                , 3.910578485111217 e- 2\\n\",\n       \"                )\\n\",\n       \"            ,\\n\",\n       \"                ( \\\"wolf\\\"\\n\",\n       \"                , 0.4304465204440071\\n\",\n       \"                )\\n\",\n       \"            ,\\n\",\n       \"                ( \\\"python\\\"\\n\",\n       \"                , 0.1486640274645592\\n\",\n       \"                )\\n\",\n       \"            ,\\n\",\n       \"                ( \\\"prolog\\\"\\n\",\n       \"                , 0.3817836672403215\\n\",\n       \"                )\\n\",\n       \"            ]\\n\",\n       \"        )\\n\",\n       \"    ]\\n\",\n       \",\\n\",\n       \"    [\\n\",\n       \"        ( \\\"bear wolf bear wolf bear wolf python wolf bear wolf\\\"\\n\",\n       \"        ,\\n\",\n       \"            [\\n\",\n       \"                ( \\\"topic1\\\"\\n\",\n       \"                , 0.9047101354542013\\n\",\n       \"                )\\n\",\n       \"            ,\\n\",\n       \"                ( \\\"topic2\\\"\\n\",\n       \"                , 9.528986454579876 e- 2\\n\",\n       \"                )\\n\",\n       \"            ]\\n\",\n       \"        )\\n\",\n       \"    ,\\n\",\n       \"        ( \\\"python prolog python prolog python prolog python prolog python prolog\\\"\\n\",\n       \"        ,\\n\",\n       \"            [\\n\",\n       \"                ( \\\"topic1\\\"\\n\",\n       \"                , 9.413029740935884 e- 2\\n\",\n       \"                )\\n\",\n       \"            ,\\n\",\n       \"                ( \\\"topic2\\\"\\n\",\n       \"                , 0.9058697025906413\\n\",\n       \"                )\\n\",\n       \"            ]\\n\",\n       \"        )\\n\",\n       \"    ,\\n\",\n       \"        ( \\\"bear wolf bear wolf bear wolf bear wolf bear wolf\\\"\\n\",\n       \"        ,\\n\",\n       \"            [\\n\",\n       \"                ( \\\"topic1\\\"\\n\",\n       \"                , 0.6835490762786085\\n\",\n       \"                )\\n\",\n       \"            ,\\n\",\n       \"                ( \\\"topic2\\\"\\n\",\n       \"                , 0.31645092372139155\\n\",\n       \"                )\\n\",\n       \"            ]\\n\",\n       \"        )\\n\",\n       \"    ,\\n\",\n       \"        ( \\\"python prolog python prolog python prolog python prolog python prolog\\\"\\n\",\n       \"        ,\\n\",\n       \"            [\\n\",\n       \"                ( \\\"topic1\\\"\\n\",\n       \"                , 3.698500977423746 e- 2\\n\",\n       \"                )\\n\",\n       \"            ,\\n\",\n       \"                ( \\\"topic2\\\"\\n\",\n       \"                , 0.9630149902257626\\n\",\n       \"                )\\n\",\n       \"            ]\\n\",\n       \"        )\\n\",\n       \"    ,\\n\",\n       \"        ( \\\"bear wolf bear python bear wolf bear wolf bear wolf\\\"\\n\",\n       \"        ,\\n\",\n       \"            [\\n\",\n       \"                ( \\\"topic1\\\"\\n\",\n       \"                , 0.9101537223185177\\n\",\n       \"                )\\n\",\n       \"            ,\\n\",\n       \"                ( \\\"topic2\\\"\\n\",\n       \"                , 8.98462776814825 e- 2\\n\",\n       \"                )\\n\",\n       \"            ]\\n\",\n       \"        )\\n\",\n       \"    ]\\n\",\n       \")\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"runLDA\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"ce857de6-2b0c-44ce-893f-a67ad39f3040\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Haskell - nixpkgs\",\n   \"language\": \"haskell\",\n   \"name\": \"ihaskell_nixpkgs\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": \"ihaskell\",\n   \"file_extension\": \".hs\",\n   \"mimetype\": \"text/x-haskell\",\n   \"name\": \"haskell\",\n   \"pygments_lexer\": \"Haskell\",\n   \"version\": \"9.0.2\"\n  },\n  \"toc-autonumbering\": false\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "notebooks/plotting.hs",
    "content": "{-# LANGUAGE FlexibleContexts #-}\n{-# LANGUAGE FlexibleInstances #-}\n{-# LANGUAGE OverloadedStrings #-}\n\nmodule Plotting where\n\nimport Control.Arrow (first, second)\nimport qualified Data.Text as T\nimport Graphics.Vega.VegaLite hiding (filter, length)\nimport IHaskell.Display.Hvega\n\nhist (xs, ys) =\n  let enc =\n        encoding\n          . position X [PName \"X\", PmType Quantitative]\n          . position Y [PName \"Y\", PmType Quantitative]\n\n      dat =\n        ( dataFromColumns []\n            . dataColumn \"X\" (Numbers xs)\n            . dataColumn \"Y\" (Numbers ys)\n        )\n          []\n   in toVegaLite\n        [ dat,\n          mark Bar [],\n          enc [],\n          width 400,\n          height 400\n        ]\n\nbarplot (xs, ys) =\n  let enc =\n        encoding\n          . position X [PName \"X\", PmType Nominal]\n          . position Y [PName \"Y\", PmType Quantitative]\n\n      dat =\n        ( dataFromColumns []\n            . dataColumn \"X\" (Strings xs)\n            . dataColumn \"Y\" (Numbers ys)\n        )\n          []\n   in toVegaLite\n        [ dat,\n          mark Bar [],\n          enc [],\n          width 400,\n          height 400\n        ]\n\nscatterplot ((xs, ys), cs) cE f mode =\n  let enc =\n        encoding\n          . position X [PName \"X\", PmType Quantitative]\n          . position Y [PName \"Y\", PmType Quantitative]\n          . cE\n\n      dat =\n        ( dataFromColumns []\n            . dataColumn \"X\" (Numbers xs)\n            . dataColumn \"Y\" (Numbers ys)\n            . dataColumn \"Outlier\" (f cs)\n        )\n          []\n   in toVegaLite\n        [ dat,\n          mark mode [],\n          enc [],\n          width 400,\n          height 400\n        ]\n\nclass Plottable a where\n  plot :: a -> VegaLiteLab\n\ninstance Plottable [((Double, Double), T.Text)] where\n  plot ls =\n    vlShow $\n      scatterplot\n        (first unzip $ unzip ls)\n        (color [MName \"Outlier\"])\n        (\\cs -> (Strings (T.pack . show <$> cs)))\n        Circle\n\ninstance Plottable [((Double, Double), Double)] where\n  plot ls =\n    vlShow $\n      scatterplot\n        (first unzip $ unzip (ls))\n        ( color\n            [ MName \"Outlier\",\n              MmType Quantitative,\n              MScale\n                [ SScheme \"viridis\" []\n                ]\n            ]\n        )\n        Numbers\n        Circle\n\ninstance Plottable ([Double], (Double, Double)) where\n  plot ls =\n    let cs = take (length $ fst ls) $ Prelude.repeat 1\n        xs = fst ls\n        (slope, intercept) = snd ls\n        ys = (+ intercept) . (* slope) <$> xs\n     in vlShow $\n          scatterplot\n            ((xs, ys), cs)\n            (color [])\n            Numbers\n            Line\n\ninstance Plottable [(T.Text, Double)] where\n  plot ls = vlShow $ barplot $ unzip ls\n\ninstance Plottable [(Double, Double)] where\n  plot ls = vlShow $ hist $ unzip ls\n\ninstance Plottable ([Double], [Double]) where\n  plot (xs, ys) =\n    vlShow $\n      scatterplot ((xs, ys), replicate (length xs) 1) (color []) Numbers Line\n\ntype Plot = VegaLiteLab\n"
  },
  {
    "path": "notebooks/tutorials/AdvancedSampling.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \":e ImportQualifiedPost\\n\",\n    \":e FlexibleContexts\\n\",\n    \":e BlockArguments\\n\",\n    \":e TupleSections\\n\",\n    \":e FlexibleContexts\\n\",\n    \":e OverloadedStrings\\n\",\n    \":e LambdaCase\\n\",\n    \"\\n\",\n    \"import Control.Monad.Bayes.Class\\n\",\n    \"import Control.Monad.Bayes.Enumerator\\n\",\n    \"import Control.Monad.Bayes.Weighted\\n\",\n    \"import Control.Monad.Bayes.Sampler.Strict\\n\",\n    \"import Control.Monad.Bayes.Density.Free\\n\",\n    \"import Control.Monad.Bayes.Population\\n\",\n    \"import Control.Monad.Bayes.Sequential.Coroutine\\n\",\n    \"import Control.Monad.Bayes.Inference.SMC\\n\",\n    \"import Control.Monad.Bayes.Inference.RMSMC\\n\",\n    \"import Control.Monad.Bayes.Inference.PMMH\\n\",\n    \"import Control.Monad.Bayes.Inference.MCMC\\n\",\n    \"import qualified Data.Text as T\\n\",\n    \"import Numeric.Log\\n\",\n    \"import Control.Arrow (first,second)\\n\",\n    \"import Control.Monad\\n\",\n    \"import Control.Applicative\\n\",\n    \"import Control.Monad.Bayes.Class \\n\",\n    \"import Control.Monad.Bayes.Traced\\n\",\n    \"import Control.Monad.Bayes.Weighted\\n\",\n    \"import Graphics.Vega.VegaLite hiding (runDensityT)\\n\",\n    \"import qualified Graphics.Vega.VegaLite as VL\\n\",\n    \"import IHaskell.Display.Hvega (vlShow)\\n\",\n    \"\\n\",\n    \"import qualified Pipes.Prelude as P\\n\",\n    \"import qualified Pipes as P\\n\",\n    \"import Pipes (Producer, (>->), MonadTrans (lift))\\n\",\n    \"\\n\",\n    \":l ../plotting.hs\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Combining SMC and MCMC\\n\",\n    \"\\n\",\n    \"Monad-bayes offers several more advanced inference methods, which are modular combinations of `SMC` and `MCMC`. \\n\",\n    \"\\n\",\n    \"`Sampling`, `MCMC` and `SMC` notebooks describe those methods in more detail.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Resample Move Sequential Monte Carlo (RMSMC)\\n\",\n    \"\\n\",\n    \"RMSMC is fundamentally an SMC technique. It creates and updates a population of weighted samples. The clever part is that after resampling, the update step uses MCMC to perform a walk on each particle, which updates the population efficiently.\\n\",\n    \"\\n\",\n    \"To motivate this more sophisticated inference method, let's pick a relatively hard inference problem: inferring the position of a moving point mass from measurements of its bearings.\\n\",\n    \"\\n\",\n    \"Here it is in practice:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"-- calculate the bearing (the angle) of a point\\n\",\n    \"bearing (x, y) = atan2 y x\\n\",\n    \"\\n\",\n    \"prior :: MonadDistribution m => Producer (Double,Double) m ()\\n\",\n    \"prior = do\\n\",\n    \"    let velocity_var = 1e-5\\n\",\n    \"    initialPosition <- lift $ liftA2 (,) (normal 0.01 0.01) (normal 0.95 0.01)\\n\",\n    \"    initialVelocity <- lift $ liftA2 (,) (normal 0.002 0.01) (normal (-0.013) 0.01)\\n\",\n    \"    -- step is performed for a unit of time\\n\",\n    \"    let step ((qx,qy), (vx,vy)) = do\\n\",\n    \"        vxNew <- normal vx (sqrt velocity_var)\\n\",\n    \"        vyNew <- normal vy (sqrt velocity_var)\\n\",\n    \"        return ((qx + vx, qy + vy), (vxNew, vyNew))\\n\",\n    \"    P.unfoldr (\\\\x -> Right <$> dup (step x)) (initialPosition, initialVelocity) >-> P.map fst\\n\",\n    \"    \\n\",\n    \"    where \\n\",\n    \"    dup :: Monad m => m b -> m (b, b)\\n\",\n    \"    dup mx = do\\n\",\n    \"        x <- mx\\n\",\n    \"        return (x,x)\\n\",\n    \"\\n\",\n    \"measurementNoise = 0.005\\n\",\n    \"\\n\",\n    \"-- observationModel :: MonadDistribution m => P.Pipe (Double, Double) Double m ()\\n\",\n    \"observationModel position = normal (bearing position) measurementNoise\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"numPoints = 40\\n\",\n    \"\\n\",\n    \"model :: MonadMeasure m => [Double] -> Producer (Double, Double) m ()\\n\",\n    \"model observations = zipWithM likelihood prior observationStream\\n\",\n    \"  where  \\n\",\n    \"    observationStream = P.each observations\\n\",\n    \"    measurement_noise = 0.005\\n\",\n    \"    likelihood (pos, obs) = do\\n\",\n    \"        o <- observationModel pos \\n\",\n    \"        factor $ normalPdf o measurement_noise obs\\n\",\n    \"    zipWithM f p1 p2 = P.zip p1 p2 >-> P.chain f >-> P.map fst\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"positions <- sampleIOfixed $ P.toListM (prior >-> P.take numPoints)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.004040813897471044,\n          \"Y\": 0.9449190340942227\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.012150145221787412,\n          \"Y\": 0.9274840162884911\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.016860379454206022,\n          \"Y\": 0.9084312248689684\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.01641581595718638,\n          \"Y\": 0.8887040051034267\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.015828991403087755,\n          \"Y\": 0.8674914294672441\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.013970393980576864,\n          \"Y\": 0.8491059059946388\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.013001848439189199,\n          \"Y\": 0.8269556146407302\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.01410869793872522,\n          \"Y\": 0.8038747409690314\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.01891146561873628,\n          \"Y\": 0.7845426338677167\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.018379957973462722,\n          \"Y\": 0.7690718944391366\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.019385135042090187,\n          \"Y\": 0.7533513585553672\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.021669742734900348,\n          \"Y\": 0.7352018223991866\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.021156808398970484,\n          \"Y\": 0.7192462544141534\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.01993478817383033,\n          \"Y\": 0.7047315558870912\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.012857449682167671,\n          \"Y\": 0.6860649039570736\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.0036585006460101623,\n          \"Y\": 0.6652639227003978\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.006704504890859797,\n          \"Y\": 0.6407731335881577\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.01875148718315546,\n          \"Y\": 0.6119187708433766\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.03144164055357166,\n          \"Y\": 0.5811819303837852\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.05337633763916294,\n          \"Y\": 0.5490664469820896\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.07909088956959608,\n          \"Y\": 0.5147636649156484\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.10852176412035312,\n          \"Y\": 0.4771049794440802\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.1415041339372596,\n          \"Y\": 0.4358158404651159\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.17802868429398142,\n          \"Y\": 0.3982038738682732\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.21934710951238376,\n          \"Y\": 0.3670200926908218\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.26185119674488966,\n          \"Y\": 0.3397953088971217\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.3048405327299023,\n          \"Y\": 0.3115994429918755\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.3390203782102853,\n          \"Y\": 0.2796626489022578\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.3763687877889552,\n          \"Y\": 0.25260454272789823\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.4139616671134319,\n          \"Y\": 0.22373706411803673\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.4536834468207761,\n          \"Y\": 0.20157554577872092\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.49218501672059023,\n          \"Y\": 0.1788270187745313\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.5348912174560139,\n          \"Y\": 0.1577231534193479\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.5830061761886975,\n          \"Y\": 0.1372253105135145\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.6318383342252785,\n          \"Y\": 0.11904963434534747\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.684053191400329,\n          \"Y\": 0.09799287602519839\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.7356802946475065,\n          \"Y\": 0.07233980458833347\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.7811584193497797,\n          \"Y\": 0.04963154818166052\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.8289870413375418,\n          \"Y\": 0.026265300163843604\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.8814219602100856,\n          \"Y\": 0.0033672219692231498\n         }\n        ]\n       },\n       \"encoding\": {\n        \"color\": {\n         \"field\": \"Outlier\"\n        },\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"circle\",\n       \"width\": 400\n      },\n      \"image/png\": \"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teLkZCRAAiRAAiRgTQK2N/zXX3/d+Hmf2tTv+n/yk584kN6/f7/xd7W1tRIZGWk88rdbt25wNdy9L2DXrl3y8MMPS3h4uBQXF8sLL7xg/ErBX5u7+B5//HH5+uuz7yNQbNTPJd9//31/hSfu4lPvW1Axqp9rlpaWGjVWz27w1+Yuvr/97W/y97//3egptd1zzz2NT470R4zu4muIYevWrcYDrtT4sDD/PXbaXXw7duwQ9QAudcNuZWWl/PWvfzUexe2vzV18Bw8elB//+Mei+lDFpx4MZqXjV3FSTzFV7xh57733JCYmxufo3DEz+44UbwJ2F4OaU/X8Aw88IPfdd59fj0lv8vG3xtaGr4xUPbd/9erV0qVLFxk3bpx88MEH0q9fv0aO6glL119/vfEsf7VI79u3T37961/DnN29L0AtZuqnhmlpacZzB/79738bP0/01+YuvqZx/OEPfzA+BKkFzl+bu/jeeust+fzzz+WPf/yj8ZKlQ4cOGU9n9NfmLr4nn3xSRowYIbfeequ/QnLYj7v4Gj7I3XjjjaLMVb2rQn2o89fmLr45c+bINddcYxwjy5YtMx6trT6M+2tzF99TTz1lfMBU68bbb79tPDdEvf/DX5u7+L744guD2cqVK/32YcRdTGbfkeINS3cxqAe/qQ/fygPUB8hp06Z5s5t2q7G14f/3v/8VdYavjFxt6iE/l1xyidx8882NBZs4caL85S9/MR7b+8033xgv8/nss8+ggnryvoDnnntO1M8O1XsD1FMG1SOHn376aWi/noo9ia9hLnUmc/fdd8tHH33k9ueRnu7f3ThP4rv33nuNOh49elR69+5tfGjz1+ZJfA899JBceOGFxlmzOrtST4v01+ZJfCqWZ555xlj01Ac6tRj7y/A9ja+Bl7r6pZ7JYcXjQ8X46quvGmeNv//97/1SYjP81EPLFixY4POrD57EZPYdKWZhehJDw5yq99W6QcN3pGwbw588ebJD5OqhPursYM2aNfL8888b/6aKrD7ZqUs5Ddsvf/lLOXPmjDz66KPy4osvGp+KN27c6HGv/b//9/9k8+bNDuPV72LVi39ae1+AMlJlUn379hX1Z3XGqj506N68ja8hjkceecQ4c77qqqt0h2bM52186jJ0jx495M477zSujgwaNEjUWZfuzdv41OOh1dUiteCqD53qg6X6wKl78zY+1ePquPjnP/9pXPnyleF7G5/itGXLFrn99tulc+fO8vHHH7f4aG2EKRKf2u/atWuNr+bU5fOWXu7VlvH5y/DRd6QgjBq0nsRAw2+dtG0Mv6KiwiETtUioy1nqEb7q+z+1qe981WN9m76KV13iUZeFt23bZrymV12WU6bv6ab0dXV1Tvt2974AFcOMGTOMrxzUlQV1RqiuSOjevI1PxaG+mxw5cqSx8Cqevti8jU/dj6E+uKmanTx5Ui677DLje2jdm7fxNY1DPS1ywoQJRp11b97Gp46Dxx57zDjLUV8vqbPoa6+9VvtVHG/ja8pJXS5XV+mUqerekPhUXOrqnPpAp17A4osNiU/F4y/D98U7Uszy9CQGGn47MXxXaRw/ftxoeHWmrQxLXc7/z3/+IwMGDDDO6tUNVV9++aV0795dzj//fOPgVR8c1EKIbq7eF6C+z23Yr4pLXdYfNWqUqBv41L+pswV/be7iU3Gosyp1BujPewsa8ncX35/+9CdjqDq7Ukav/uuLD0wt1cNdfOpDpLrqNHjwYOMeA3UFySrxqUv3DfxUfipWZfqq79091VJXf7rjp76yUY/fHj58uPEq7aZXzHTF0No87uJT9wWpq4Pq+/vWnhbqq1jdxdewX38Zvtqfu5jU/VNm3pHiDTt372lp6G9e0ndN1zZn+C01hzJxZfLqpj11aVpdVj18+LDxZL7t27cbNyupmzjUd5nqbvQlS5YYd86jm6v3BagPIA37XbVqlTzxxBOSkJBgfP/3f//3f8YZlr82d/GpOF566SWDlb++O22au7v41AcndblXLbbqfeXz5s2Tiy++2F/4jFc0N38fRNP6qnseVH3PO+882b17t3Hj1OjRoy0TX9NAfHlJv6WE3fFTV+fUsaruf/j222+NHvTnTZnu4lNfx+3du7fxawZVZ/WrDH9t7uJTH9TVTY7qqxv1VaFaZ9S9Br7c3MWkroSaeUeKN7G6e0+Luhqorqbu2bPHeH+Lem+L+hCi45dZ3sRrNY3tDV8Bra6uNriqArvalNGrM3sdRt98fnfvCzh9+rR07drVb2dWZuNr64Z0x0/9JE/dGOevM1Mz/NTPkNQvRdpyMXHHz+r15fHReoWsWF93MXn6jhSkN93FgMzdnrXtwvDbc4GYGwmQAAmQAAnoIEDD10GRc5AACZAACZCAxQnQ8C1eIIZHAiRAAiRAAjoI0PB1UOQcJEACJEACJGBxAjR8ixeI4ZEACZAACZCADgI0fB0UOQcJkAAJkAAJWJwADd/iBWJ4JOCKgHp++pEjR4zHDauHTqnnFqgHxahnFdxyyy2ERgIkQAJOBGj4bAoSsCEB9QAS9bhh9eAp9RQ99Rhn9WAY9d4H9fQ/biRAAiTQnAANnz1BAjYloB7nq562ph6NrN4sqF6Wo4yfGwmQAAm4IkDDZ1+QgE0JqKdHqlf0qhdDJSUlGe+N8NVLkGyKiGGTAAk0IUDDZzuQgE0JqLeHjRkzxriMf+mll4p6f0NbPYLYpggZNgl0KAI0/A5Vbibbngg8+eSTxmtv1YuF1KuE//KXv8j999/fnlJkLiRAAhoJ0PA1wuRUJOAvAhs2bJCxY8eKeg3o448/brwRUr3KVb2ZMSoqyl9hcD8kQAI2IkDDt1GxGCoJKAI1NTXGd/bqbX15eXnGq6FPnDgh8fHxMmHCBON10dxIgARIoDkBGj57ggRIgARIgAQ6AAEafgcoMlMkARIgARIgARo+e4AESIAESIAEOgABGn4HKDJTJAESIAESIAEaPnuABEiABEiABDoAARp+BygyUyQBEiABEiCB/w85LLpW54M+IgAAAABJRU5ErkJggg==\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plot ( zip positions $ Prelude.repeat $ T.pack \\\"prior\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"observations <- sampleIOfixed $ mapM observationModel positions\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": []\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"sMCMC <- sampleIOfixed $ unweighted $ mcmc MCMCConfig {numMCMCSteps = 10000, numBurnIn = 1000, proposal = SingleSiteMH} $ \\n\",\n    \"    P.toListM $ model observations\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"MCMC inference arrived returned a path which is divergent in the begining (starting at point (0,0.95)) from prior path.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.004040813897471044,\n          \"Y\": 0.9449190340942227\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.012150145221787412,\n          \"Y\": 0.9274840162884911\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.016860379454206022,\n          \"Y\": 0.9084312248689684\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.01641581595718638,\n          \"Y\": 0.8887040051034267\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.015828991403087755,\n          \"Y\": 0.8674914294672441\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.013970393980576864,\n          \"Y\": 0.8491059059946388\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.013001848439189199,\n          \"Y\": 0.8269556146407302\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.01410869793872522,\n          \"Y\": 0.8038747409690314\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.01891146561873628,\n          \"Y\": 0.7845426338677167\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.018379957973462722,\n          \"Y\": 0.7690718944391366\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.019385135042090187,\n          \"Y\": 0.7533513585553672\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.021669742734900348,\n          \"Y\": 0.7352018223991866\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.021156808398970484,\n          \"Y\": 0.7192462544141534\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.01993478817383033,\n          \"Y\": 0.7047315558870912\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.012857449682167671,\n          \"Y\": 0.6860649039570736\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.0036585006460101623,\n          \"Y\": 0.6652639227003978\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.006704504890859797,\n          \"Y\": 0.6407731335881577\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.01875148718315546,\n          \"Y\": 0.6119187708433766\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.03144164055357166,\n          \"Y\": 0.5811819303837852\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.05337633763916294,\n          \"Y\": 0.5490664469820896\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.07909088956959608,\n          \"Y\": 0.5147636649156484\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.10852176412035312,\n          \"Y\": 0.4771049794440802\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.1415041339372596,\n          \"Y\": 0.4358158404651159\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.17802868429398142,\n          \"Y\": 0.3982038738682732\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.21934710951238376,\n          \"Y\": 0.3670200926908218\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.26185119674488966,\n          \"Y\": 0.3397953088971217\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.3048405327299023,\n          \"Y\": 0.3115994429918755\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.3390203782102853,\n          \"Y\": 0.2796626489022578\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.3763687877889552,\n          \"Y\": 0.25260454272789823\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.4139616671134319,\n          \"Y\": 0.22373706411803673\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.4536834468207761,\n          \"Y\": 0.20157554577872092\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.49218501672059023,\n          \"Y\": 0.1788270187745313\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.5348912174560139,\n          \"Y\": 0.1577231534193479\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.5830061761886975,\n          \"Y\": 0.1372253105135145\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.6318383342252785,\n          \"Y\": 0.11904963434534747\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.684053191400329,\n          \"Y\": 0.09799287602519839\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.7356802946475065,\n          \"Y\": 0.07233980458833347\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.7811584193497797,\n          \"Y\": 0.04963154818166052\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.8289870413375418,\n          \"Y\": 0.026265300163843604\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.8814219602100856,\n          \"Y\": 0.0033672219692231498\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": 0.009522606824511044,\n          \"Y\": 0.9507967170703003\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": 0.030715754715736746,\n          \"Y\": 0.9359462721413535\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": 0.04692266318358654,\n          \"Y\": 0.9212877564229398\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": 0.06259269174502599,\n          \"Y\": 0.9100069051435712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": 0.07409952810746244,\n          \"Y\": 0.898098257118873\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": 0.08040726133570095,\n          \"Y\": 0.883049600147868\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": 0.07892336644873973,\n          \"Y\": 0.8675075966703154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": 0.07225244694630924,\n          \"Y\": 0.8511196920262338\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": 0.06572498864778742,\n          \"Y\": 0.8376221023853665\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": 0.05143791095247105,\n          \"Y\": 0.8210472908965629\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": 0.04285280594715003,\n          \"Y\": 0.802706317200674\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": 0.03552054619819507,\n          \"Y\": 0.7820548562357635\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": 0.02697061907391134,\n          \"Y\": 0.7647106837538756\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": 0.014572110285940316,\n          \"Y\": 0.7456511472472253\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": 0.0021130810418944195,\n          \"Y\": 0.7285400944333256\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -0.010860568224164573,\n          \"Y\": 0.7122968247477851\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -0.02356788043336675,\n          \"Y\": 0.6932974286925321\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -0.041643788735266765,\n          \"Y\": 0.6755885608853368\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -0.06353076508451232,\n          \"Y\": 0.65658650963109\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -0.08805380951449007,\n          \"Y\": 0.6372642355851278\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -0.11651582565803084,\n          \"Y\": 0.6135799742551241\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -0.1501164008693634,\n          \"Y\": 0.5868560622602802\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -0.18985408507545656,\n          \"Y\": 0.5540535538274423\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -0.2342509367894407,\n          \"Y\": 0.5233366455303043\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -0.28478081820773254,\n          \"Y\": 0.48887115593987873\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -0.3427190297393583,\n          \"Y\": 0.46338987069019677\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -0.40728348129548897,\n          \"Y\": 0.43170607420912593\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -0.4745863636296226,\n          \"Y\": 0.4039591275741752\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -0.5404920487503329,\n          \"Y\": 0.3723629285755027\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -0.6026372899710436,\n          \"Y\": 0.33724158407782906\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -0.6639896015993596,\n          \"Y\": 0.3008302546507704\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -0.7202638821878264,\n          \"Y\": 0.2637154738525396\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -0.7779704001260951,\n          \"Y\": 0.23025433100914067\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -0.8454376222886029,\n          \"Y\": 0.19890029220903532\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -0.9148160949875993,\n          \"Y\": 0.16774932459725583\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -0.9840269862747459,\n          \"Y\": 0.1367335911191669\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -1.052693761413397,\n          \"Y\": 0.10593147256721763\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -1.1208170895211886,\n          \"Y\": 0.07359904936818655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -1.1930381207683638,\n          \"Y\": 0.041103437433913446\n         },\n         {\n          \"Outlier\": \"\\\"inferred: MCMC\\\"\",\n          \"X\": -1.261504703232232,\n          \"Y\": 0.013537981021413618\n         }\n        ]\n       },\n       \"encoding\": {\n        \"color\": {\n         \"field\": \"Outlier\"\n        },\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"circle\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plot $\\n\",\n    \"  zip positions (Prelude.repeat $ T.pack \\\"prior\\\") <>  \\n\",\n    \"  zip (head sMCMC) (Prelude.repeat $ T.pack \\\"inferred: MCMC\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": []\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"sSMC <- sampleIOfixed $ runPopulationT $ smc \\n\",\n    \"    SMCConfig {numSteps = numPoints, numParticles = 10000, resampler = resampleSystematic} \\n\",\n    \"    $ P.toListM $ model observations\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"SMC on the ther hand provided many paths close to the prior at the path's beginning and diverging as the path progresses.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.004040813897471044,\n          \"Y\": 0.9449190340942227\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.012150145221787412,\n          \"Y\": 0.9274840162884911\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.016860379454206022,\n          \"Y\": 0.9084312248689684\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.01641581595718638,\n          \"Y\": 0.8887040051034267\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.015828991403087755,\n          \"Y\": 0.8674914294672441\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.013970393980576864,\n          \"Y\": 0.8491059059946388\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.013001848439189199,\n          \"Y\": 0.8269556146407302\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.01410869793872522,\n          \"Y\": 0.8038747409690314\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.01891146561873628,\n          \"Y\": 0.7845426338677167\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.018379957973462722,\n          \"Y\": 0.7690718944391366\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.019385135042090187,\n          \"Y\": 0.7533513585553672\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.021669742734900348,\n          \"Y\": 0.7352018223991866\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.021156808398970484,\n          \"Y\": 0.7192462544141534\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.01993478817383033,\n          \"Y\": 0.7047315558870912\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.012857449682167671,\n          \"Y\": 0.6860649039570736\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.0036585006460101623,\n          \"Y\": 0.6652639227003978\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.006704504890859797,\n          \"Y\": 0.6407731335881577\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.01875148718315546,\n          \"Y\": 0.6119187708433766\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.03144164055357166,\n          \"Y\": 0.5811819303837852\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.05337633763916294,\n          \"Y\": 0.5490664469820896\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.07909088956959608,\n          \"Y\": 0.5147636649156484\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.10852176412035312,\n          \"Y\": 0.4771049794440802\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.1415041339372596,\n          \"Y\": 0.4358158404651159\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.17802868429398142,\n          \"Y\": 0.3982038738682732\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.21934710951238376,\n          \"Y\": 0.3670200926908218\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.26185119674488966,\n          \"Y\": 0.3397953088971217\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.3048405327299023,\n          \"Y\": 0.3115994429918755\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.3390203782102853,\n          \"Y\": 0.2796626489022578\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.3763687877889552,\n          \"Y\": 0.25260454272789823\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.4139616671134319,\n          \"Y\": 0.22373706411803673\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.4536834468207761,\n          \"Y\": 0.20157554577872092\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.49218501672059023,\n          \"Y\": 0.1788270187745313\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.5348912174560139,\n          \"Y\": 0.1577231534193479\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.5830061761886975,\n          \"Y\": 0.1372253105135145\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.6318383342252785,\n          \"Y\": 0.11904963434534747\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.684053191400329,\n          \"Y\": 0.09799287602519839\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.7356802946475065,\n          \"Y\": 0.07233980458833347\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.7811584193497797,\n          \"Y\": 0.04963154818166052\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.8289870413375418,\n          \"Y\": 0.026265300163843604\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.8814219602100856,\n          \"Y\": 0.0033672219692231498\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1470299080949992,\n          \"Y\": 0.32546980397473285\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.16731251286754456,\n          \"Y\": 0.28043416488829437\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18560897724432393,\n          \"Y\": 0.24096350414027412\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2042139432854838,\n          \"Y\": 0.20741903899779135\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2231812098936276,\n          \"Y\": 0.18343075644211632\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24054151773340796,\n          \"Y\": 0.1594861418520304\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2529400756199515,\n          \"Y\": 0.139813861151296\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.26502270156481317,\n          \"Y\": 0.12025843263195456\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2816291175493261,\n          \"Y\": 0.10243088574452486\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.29295240656029375,\n          \"Y\": 0.08734038146741441\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.30587282873915017,\n          \"Y\": 0.07224082263624831\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31913869468557965,\n          \"Y\": 0.06141227935709128\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33919864790040305,\n          \"Y\": 0.047529134272641334\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.352388546477684,\n          \"Y\": 0.035168574648325936\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3656999857298576,\n          \"Y\": 0.022899997645560256\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3804967404175305,\n          \"Y\": 0.01335145996772475\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3947674308695043,\n          \"Y\": 0.0006792850988576841\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1470299080949992,\n          \"Y\": 0.32546980397473285\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.16731251286754456,\n          \"Y\": 0.28043416488829437\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18560897724432393,\n          \"Y\": 0.24096350414027412\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2042139432854838,\n          \"Y\": 0.20741903899779135\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2231812098936276,\n          \"Y\": 0.18343075644211632\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24054151773340796,\n          \"Y\": 0.1594861418520304\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2529400756199515,\n          \"Y\": 0.139813861151296\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.26502270156481317,\n          \"Y\": 0.12025843263195456\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2816291175493261,\n          \"Y\": 0.10243088574452486\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.29295240656029375,\n          \"Y\": 0.08734038146741441\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.30587282873915017,\n          \"Y\": 0.07224082263624831\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31913869468557965,\n          \"Y\": 0.06141227935709128\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33919864790040305,\n          \"Y\": 0.047529134272641334\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.352388546477684,\n          \"Y\": 0.035168574648325936\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3656999857298576,\n          \"Y\": 0.022899997645560256\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3804967404175305,\n          \"Y\": 0.01335145996772475\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3947674308695043,\n          \"Y\": 0.0006792850988576841\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1470299080949992,\n          \"Y\": 0.32546980397473285\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.16731251286754456,\n          \"Y\": 0.28043416488829437\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18560897724432393,\n          \"Y\": 0.24096350414027412\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2042139432854838,\n          \"Y\": 0.20741903899779135\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2231812098936276,\n          \"Y\": 0.18343075644211632\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24054151773340796,\n          \"Y\": 0.1594861418520304\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2529400756199515,\n          \"Y\": 0.139813861151296\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.26502270156481317,\n          \"Y\": 0.12025843263195456\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2816291175493261,\n          \"Y\": 0.10243088574452486\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.29295240656029375,\n          \"Y\": 0.08734038146741441\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.30587282873915017,\n          \"Y\": 0.07224082263624831\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31913869468557965,\n          \"Y\": 0.06141227935709128\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33919864790040305,\n          \"Y\": 0.047529134272641334\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.352388546477684,\n          \"Y\": 0.035168574648325936\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3656999857298576,\n          \"Y\": 0.022899997645560256\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3804967404175305,\n          \"Y\": 0.01335145996772475\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3947674308695043,\n          \"Y\": 0.0006792850988576841\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.37146228338370496,\n          \"Y\": 0.16788696195433328\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.406496564566301,\n          \"Y\": 0.15156305204064338\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44103033905325845,\n          \"Y\": 0.13395267488189772\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46990206166806425,\n          \"Y\": 0.11283092923708206\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49820987192566185,\n          \"Y\": 0.0933413613640384\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5268048865276319,\n          \"Y\": 0.0750778042677162\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5544316698307336,\n          \"Y\": 0.059303740262610746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5788701921163963,\n          \"Y\": 0.04212873549002538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5959402621420208,\n          \"Y\": 0.024110995529660662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6084726987787488,\n          \"Y\": 0.0050497173524213755\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.37146228338370496,\n          \"Y\": 0.16788696195433328\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.406496564566301,\n          \"Y\": 0.15156305204064338\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44103033905325845,\n          \"Y\": 0.13395267488189772\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46990206166806425,\n          \"Y\": 0.11283092923708206\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49820987192566185,\n          \"Y\": 0.0933413613640384\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5268048865276319,\n          \"Y\": 0.0750778042677162\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5544316698307336,\n          \"Y\": 0.059303740262610746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5788701921163963,\n          \"Y\": 0.04212873549002538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5959402621420208,\n          \"Y\": 0.024110995529660662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6084726987787488,\n          \"Y\": 0.0050497173524213755\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.37146228338370496,\n          \"Y\": 0.16788696195433328\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.406496564566301,\n          \"Y\": 0.15156305204064338\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44103033905325845,\n          \"Y\": 0.13395267488189772\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46990206166806425,\n          \"Y\": 0.11283092923708206\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49820987192566185,\n          \"Y\": 0.0933413613640384\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5268048865276319,\n          \"Y\": 0.0750778042677162\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5544316698307336,\n          \"Y\": 0.059303740262610746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5788701921163963,\n          \"Y\": 0.04212873549002538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5959402621420208,\n          \"Y\": 0.024110995529660662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6084726987787488,\n          \"Y\": 0.0050497173524213755\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.37146228338370496,\n          \"Y\": 0.16788696195433328\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.406496564566301,\n          \"Y\": 0.15156305204064338\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44103033905325845,\n          \"Y\": 0.13395267488189772\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46990206166806425,\n          \"Y\": 0.11283092923708206\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49820987192566185,\n          \"Y\": 0.0933413613640384\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5268048865276319,\n          \"Y\": 0.0750778042677162\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5544316698307336,\n          \"Y\": 0.059303740262610746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5788701921163963,\n          \"Y\": 0.04212873549002538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5959402621420208,\n          \"Y\": 0.024110995529660662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6084726987787488,\n          \"Y\": 0.0050497173524213755\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.37146228338370496,\n          \"Y\": 0.16788696195433328\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.406496564566301,\n          \"Y\": 0.15156305204064338\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44103033905325845,\n          \"Y\": 0.13395267488189772\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46990206166806425,\n          \"Y\": 0.11283092923708206\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49820987192566185,\n          \"Y\": 0.0933413613640384\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5268048865276319,\n          \"Y\": 0.0750778042677162\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5544316698307336,\n          \"Y\": 0.059303740262610746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5788701921163963,\n          \"Y\": 0.04212873549002538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5959402621420208,\n          \"Y\": 0.024110995529660662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6084726987787488,\n          \"Y\": 0.0050497173524213755\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.37146228338370496,\n          \"Y\": 0.16788696195433328\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.406496564566301,\n          \"Y\": 0.15156305204064338\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44103033905325845,\n          \"Y\": 0.13395267488189772\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46990206166806425,\n          \"Y\": 0.11283092923708206\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49820987192566185,\n          \"Y\": 0.0933413613640384\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5268048865276319,\n          \"Y\": 0.0750778042677162\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5544316698307336,\n          \"Y\": 0.059303740262610746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5788701921163963,\n          \"Y\": 0.04212873549002538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5959402621420208,\n          \"Y\": 0.024110995529660662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6084726987787488,\n          \"Y\": 0.0050497173524213755\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.37146228338370496,\n          \"Y\": 0.16788696195433328\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.406496564566301,\n          \"Y\": 0.15156305204064338\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44103033905325845,\n          \"Y\": 0.13395267488189772\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46990206166806425,\n          \"Y\": 0.11283092923708206\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49820987192566185,\n          \"Y\": 0.0933413613640384\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5268048865276319,\n          \"Y\": 0.0750778042677162\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5544316698307336,\n          \"Y\": 0.059303740262610746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5788701921163963,\n          \"Y\": 0.04212873549002538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5959402621420208,\n          \"Y\": 0.024110995529660662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6084726987787488,\n          \"Y\": 0.0050497173524213755\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.37146228338370496,\n          \"Y\": 0.16788696195433328\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.406496564566301,\n          \"Y\": 0.15156305204064338\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44103033905325845,\n          \"Y\": 0.13395267488189772\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46990206166806425,\n          \"Y\": 0.11283092923708206\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49820987192566185,\n          \"Y\": 0.0933413613640384\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5268048865276319,\n          \"Y\": 0.0750778042677162\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5544316698307336,\n          \"Y\": 0.059303740262610746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5788701921163963,\n          \"Y\": 0.04212873549002538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5959402621420208,\n          \"Y\": 0.024110995529660662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6084726987787488,\n          \"Y\": 0.0050497173524213755\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.37146228338370496,\n          \"Y\": 0.16788696195433328\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.406496564566301,\n          \"Y\": 0.15156305204064338\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44103033905325845,\n          \"Y\": 0.13395267488189772\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46990206166806425,\n          \"Y\": 0.11283092923708206\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49820987192566185,\n          \"Y\": 0.0933413613640384\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5268048865276319,\n          \"Y\": 0.0750778042677162\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5544316698307336,\n          \"Y\": 0.059303740262610746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5788701921163963,\n          \"Y\": 0.04212873549002538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5959402621420208,\n          \"Y\": 0.024110995529660662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6084726987787488,\n          \"Y\": 0.0050497173524213755\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.418304824620685,\n          \"Y\": 0.1247345104579328\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44415411784533915,\n          \"Y\": 0.10742985237090857\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4714725260015922,\n          \"Y\": 0.09066442050647268\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4997711212413936,\n          \"Y\": 0.07232118703726038\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5277928547571716,\n          \"Y\": 0.05553341802170174\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5610967800448166,\n          \"Y\": 0.03791930691287462\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5986788873352781,\n          \"Y\": 0.022777584667947572\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6409631290945261,\n          \"Y\": 0.006010353504989106\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.418304824620685,\n          \"Y\": 0.1247345104579328\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44415411784533915,\n          \"Y\": 0.10742985237090857\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4714725260015922,\n          \"Y\": 0.09066442050647268\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4997711212413936,\n          \"Y\": 0.07232118703726038\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5277928547571716,\n          \"Y\": 0.05553341802170174\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5610967800448166,\n          \"Y\": 0.03791930691287462\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5986788873352781,\n          \"Y\": 0.022777584667947572\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6409631290945261,\n          \"Y\": 0.006010353504989106\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.418304824620685,\n          \"Y\": 0.1247345104579328\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44415411784533915,\n          \"Y\": 0.10742985237090857\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4714725260015922,\n          \"Y\": 0.09066442050647268\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4997711212413936,\n          \"Y\": 0.07232118703726038\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5277928547571716,\n          \"Y\": 0.05553341802170174\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5610967800448166,\n          \"Y\": 0.03791930691287462\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5986788873352781,\n          \"Y\": 0.022777584667947572\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6409631290945261,\n          \"Y\": 0.006010353504989106\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.418304824620685,\n          \"Y\": 0.1247345104579328\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44415411784533915,\n          \"Y\": 0.10742985237090857\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4714725260015922,\n          \"Y\": 0.09066442050647268\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4997711212413936,\n          \"Y\": 0.07232118703726038\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5235082685829185,\n          \"Y\": 0.05417094978355112\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5490028869859905,\n          \"Y\": 0.03787162608691825\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5795076067569219,\n          \"Y\": 0.0213045474798786\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6075415011028229,\n          \"Y\": 0.007238353972601173\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.418304824620685,\n          \"Y\": 0.1247345104579328\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44415411784533915,\n          \"Y\": 0.10742985237090857\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4714725260015922,\n          \"Y\": 0.09066442050647268\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4997711212413936,\n          \"Y\": 0.07232118703726038\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5235082685829185,\n          \"Y\": 0.05417094978355112\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5490028869859905,\n          \"Y\": 0.03787162608691825\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5795076067569219,\n          \"Y\": 0.0213045474798786\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6075415011028229,\n          \"Y\": 0.007238353972601173\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.418304824620685,\n          \"Y\": 0.1247345104579328\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44415411784533915,\n          \"Y\": 0.10742985237090857\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4714725260015922,\n          \"Y\": 0.09066442050647268\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4997711212413936,\n          \"Y\": 0.07232118703726038\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5235082685829185,\n          \"Y\": 0.05417094978355112\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5490028869859905,\n          \"Y\": 0.03787162608691825\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5795076067569219,\n          \"Y\": 0.0213045474798786\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6075415011028229,\n          \"Y\": 0.007238353972601173\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.418304824620685,\n          \"Y\": 0.1247345104579328\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44415411784533915,\n          \"Y\": 0.10742985237090857\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4714725260015922,\n          \"Y\": 0.09066442050647268\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4997711212413936,\n          \"Y\": 0.07232118703726038\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5235082685829185,\n          \"Y\": 0.05417094978355112\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5490028869859905,\n          \"Y\": 0.03787162608691825\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5795076067569219,\n          \"Y\": 0.0213045474798786\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6117994345812957,\n          \"Y\": 0.004113810983075804\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.418304824620685,\n          \"Y\": 0.1247345104579328\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44415411784533915,\n          \"Y\": 0.10742985237090857\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4714725260015922,\n          \"Y\": 0.09066442050647268\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4997711212413936,\n          \"Y\": 0.07232118703726038\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5235082685829185,\n          \"Y\": 0.05417094978355112\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5490028869859905,\n          \"Y\": 0.03787162608691825\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5795076067569219,\n          \"Y\": 0.0213045474798786\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6117994345812957,\n          \"Y\": 0.004113810983075804\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.418304824620685,\n          \"Y\": 0.1247345104579328\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44415411784533915,\n          \"Y\": 0.10742985237090857\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4714725260015922,\n          \"Y\": 0.09066442050647268\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4997711212413936,\n          \"Y\": 0.07232118703726038\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5258020682052938,\n          \"Y\": 0.05324839893869771\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5499372369086811,\n          \"Y\": 0.035664557968704665\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5671766939846303,\n          \"Y\": 0.01836525144056505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5858177757000866,\n          \"Y\": 0.002163084957957407\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.418304824620685,\n          \"Y\": 0.1247345104579328\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44415411784533915,\n          \"Y\": 0.10742985237090857\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4714725260015922,\n          \"Y\": 0.09066442050647268\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4997711212413936,\n          \"Y\": 0.07232118703726038\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5258020682052938,\n          \"Y\": 0.05324839893869771\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5499372369086811,\n          \"Y\": 0.035664557968704665\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5671766939846303,\n          \"Y\": 0.01836525144056505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5858177757000866,\n          \"Y\": 0.002163084957957407\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.418304824620685,\n          \"Y\": 0.1247345104579328\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44415411784533915,\n          \"Y\": 0.10742985237090857\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4714725260015922,\n          \"Y\": 0.09066442050647268\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4997711212413936,\n          \"Y\": 0.07232118703726038\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5258020682052938,\n          \"Y\": 0.05324839893869771\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5499372369086811,\n          \"Y\": 0.035664557968704665\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5671766939846303,\n          \"Y\": 0.01836525144056505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5858177757000866,\n          \"Y\": 0.002163084957957407\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.418304824620685,\n          \"Y\": 0.1247345104579328\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44415411784533915,\n          \"Y\": 0.10742985237090857\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4714725260015922,\n          \"Y\": 0.09066442050647268\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4997711212413936,\n          \"Y\": 0.07232118703726038\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5258020682052938,\n          \"Y\": 0.05324839893869771\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5499372369086811,\n          \"Y\": 0.035664557968704665\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5671766939846303,\n          \"Y\": 0.01836525144056505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5858177757000866,\n          \"Y\": 0.002163084957957407\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41803790766612176,\n          \"Y\": 0.12845256076352055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44780397778571973,\n          \"Y\": 0.10736495208197308\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4809764939266371,\n          \"Y\": 0.09020954496650124\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.510543803641569,\n          \"Y\": 0.07439237612780701\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5376709920967517,\n          \"Y\": 0.06054410013658778\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5609537384195166,\n          \"Y\": 0.042238001798521004\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5829971207678224,\n          \"Y\": 0.025350577828863786\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5991409434202528,\n          \"Y\": 0.009513163384471817\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41803790766612176,\n          \"Y\": 0.12845256076352055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44780397778571973,\n          \"Y\": 0.10736495208197308\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4809764939266371,\n          \"Y\": 0.09020954496650124\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5093542072990245,\n          \"Y\": 0.07315535239775298\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5415842459214427,\n          \"Y\": 0.057809987131930925\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5724465907125911,\n          \"Y\": 0.03884289353433087\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6001866497200343,\n          \"Y\": 0.01874923811805947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6238782318487894,\n          \"Y\": 0.0024913035193562597\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41803790766612176,\n          \"Y\": 0.12845256076352055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44780397778571973,\n          \"Y\": 0.10736495208197308\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4809764939266371,\n          \"Y\": 0.09020954496650124\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5093542072990245,\n          \"Y\": 0.07315535239775298\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5415842459214427,\n          \"Y\": 0.057809987131930925\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5724465907125911,\n          \"Y\": 0.03884289353433087\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6001866497200343,\n          \"Y\": 0.01874923811805947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6238782318487894,\n          \"Y\": 0.0024913035193562597\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41803790766612176,\n          \"Y\": 0.12845256076352055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44780397778571973,\n          \"Y\": 0.10736495208197308\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4809764939266371,\n          \"Y\": 0.09020954496650124\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5093542072990245,\n          \"Y\": 0.07315535239775298\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5415842459214427,\n          \"Y\": 0.057809987131930925\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5724465907125911,\n          \"Y\": 0.03884289353433087\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6001866497200343,\n          \"Y\": 0.01874923811805947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6238782318487894,\n          \"Y\": 0.0024913035193562597\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41803790766612176,\n          \"Y\": 0.12845256076352055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44780397778571973,\n          \"Y\": 0.10736495208197308\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4809764939266371,\n          \"Y\": 0.09020954496650124\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5093542072990245,\n          \"Y\": 0.07315535239775298\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5415842459214427,\n          \"Y\": 0.057809987131930925\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5724465907125911,\n          \"Y\": 0.03884289353433087\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6001866497200343,\n          \"Y\": 0.01874923811805947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6238782318487894,\n          \"Y\": 0.0024913035193562597\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41803790766612176,\n          \"Y\": 0.12845256076352055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44780397778571973,\n          \"Y\": 0.10736495208197308\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4809764939266371,\n          \"Y\": 0.09020954496650124\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5093542072990245,\n          \"Y\": 0.07315535239775298\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5415842459214427,\n          \"Y\": 0.057809987131930925\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5724465907125911,\n          \"Y\": 0.03884289353433087\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6001866497200343,\n          \"Y\": 0.01874923811805947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6238782318487894,\n          \"Y\": 0.0024913035193562597\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41803790766612176,\n          \"Y\": 0.12845256076352055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44780397778571973,\n          \"Y\": 0.10736495208197308\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4809764939266371,\n          \"Y\": 0.09020954496650124\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5093542072990245,\n          \"Y\": 0.07315535239775298\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5415842459214427,\n          \"Y\": 0.057809987131930925\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5724465907125911,\n          \"Y\": 0.03884289353433087\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6001866497200343,\n          \"Y\": 0.01874923811805947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6238782318487894,\n          \"Y\": 0.0024913035193562597\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41803790766612176,\n          \"Y\": 0.12845256076352055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44780397778571973,\n          \"Y\": 0.10736495208197308\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4809764939266371,\n          \"Y\": 0.09020954496650124\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5093542072990245,\n          \"Y\": 0.07315535239775298\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5415842459214427,\n          \"Y\": 0.057809987131930925\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5724465907125911,\n          \"Y\": 0.03884289353433087\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6082064185056434,\n          \"Y\": 0.01937177146703478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6473883259106232,\n          \"Y\": 0.003986036761488827\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41803790766612176,\n          \"Y\": 0.12845256076352055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44780397778571973,\n          \"Y\": 0.10736495208197308\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4809764939266371,\n          \"Y\": 0.09020954496650124\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5093542072990245,\n          \"Y\": 0.07315535239775298\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5415842459214427,\n          \"Y\": 0.057809987131930925\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5724465907125911,\n          \"Y\": 0.03884289353433087\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6082064185056434,\n          \"Y\": 0.01937177146703478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6473883259106232,\n          \"Y\": 0.003986036761488827\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41803790766612176,\n          \"Y\": 0.12845256076352055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44780397778571973,\n          \"Y\": 0.10736495208197308\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4809764939266371,\n          \"Y\": 0.09020954496650124\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5093542072990245,\n          \"Y\": 0.07315535239775298\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5415842459214427,\n          \"Y\": 0.057809987131930925\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5724465907125911,\n          \"Y\": 0.03884289353433087\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6082064185056434,\n          \"Y\": 0.01937177146703478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6473883259106232,\n          \"Y\": 0.003986036761488827\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41803790766612176,\n          \"Y\": 0.12845256076352055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44780397778571973,\n          \"Y\": 0.10736495208197308\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4809764939266371,\n          \"Y\": 0.09020954496650124\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5093542072990245,\n          \"Y\": 0.07315535239775298\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5415842459214427,\n          \"Y\": 0.057809987131930925\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5724465907125911,\n          \"Y\": 0.03884289353433087\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6082064185056434,\n          \"Y\": 0.01937177146703478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6473883259106232,\n          \"Y\": 0.003986036761488827\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41803790766612176,\n          \"Y\": 0.12845256076352055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44780397778571973,\n          \"Y\": 0.10736495208197308\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4809764939266371,\n          \"Y\": 0.09020954496650124\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5093542072990245,\n          \"Y\": 0.07315535239775298\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5415842459214427,\n          \"Y\": 0.057809987131930925\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5724465907125911,\n          \"Y\": 0.03884289353433087\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6082064185056434,\n          \"Y\": 0.01937177146703478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6473883259106232,\n          \"Y\": 0.003986036761488827\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41803790766612176,\n          \"Y\": 0.12845256076352055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44780397778571973,\n          \"Y\": 0.10736495208197308\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4809764939266371,\n          \"Y\": 0.09020954496650124\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5093542072990245,\n          \"Y\": 0.07315535239775298\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5415842459214427,\n          \"Y\": 0.057809987131930925\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5724465907125911,\n          \"Y\": 0.03884289353433087\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6082064185056434,\n          \"Y\": 0.01937177146703478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6492517832954655,\n          \"Y\": 0.0048949932936631566\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.33464603871916826,\n          \"Y\": 0.18583574218298587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36359669099640607,\n          \"Y\": 0.1653097592726341\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3920805717870425,\n          \"Y\": 0.1441522273290616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41803790766612176,\n          \"Y\": 0.12845256076352055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44780397778571973,\n          \"Y\": 0.10736495208197308\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4809764939266371,\n          \"Y\": 0.09020954496650124\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5093542072990245,\n          \"Y\": 0.07315535239775298\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5415842459214427,\n          \"Y\": 0.057809987131930925\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5724465907125911,\n          \"Y\": 0.03884289353433087\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6082064185056434,\n          \"Y\": 0.01937177146703478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6492517832954655,\n          \"Y\": 0.0048949932936631566\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3293591389097297,\n          \"Y\": 0.18344673624041274\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.35247994933481797,\n          \"Y\": 0.15873754415980354\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.37008711605074174,\n          \"Y\": 0.13602816168861173\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.38240567796362623,\n          \"Y\": 0.11276789376583789\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3930867613704837,\n          \"Y\": 0.09382074636949778\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40365081309577455,\n          \"Y\": 0.07763276152062928\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41498549669967033,\n          \"Y\": 0.06178897644151429\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4308093564917972,\n          \"Y\": 0.04503603250538034\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44833172406843447,\n          \"Y\": 0.030666998473786254\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46942913505901224,\n          \"Y\": 0.016279967568723908\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4912621058841393,\n          \"Y\": 0.002186730037256057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3293591389097297,\n          \"Y\": 0.18344673624041274\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.35247994933481797,\n          \"Y\": 0.15873754415980354\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.37008711605074174,\n          \"Y\": 0.13602816168861173\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.38240567796362623,\n          \"Y\": 0.11276789376583789\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3930867613704837,\n          \"Y\": 0.09382074636949778\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40365081309577455,\n          \"Y\": 0.07763276152062928\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41498549669967033,\n          \"Y\": 0.06178897644151429\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4308093564917972,\n          \"Y\": 0.04503603250538034\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44833172406843447,\n          \"Y\": 0.030666998473786254\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46942913505901224,\n          \"Y\": 0.016279967568723908\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4912621058841393,\n          \"Y\": 0.002186730037256057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3293591389097297,\n          \"Y\": 0.18344673624041274\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.35247994933481797,\n          \"Y\": 0.15873754415980354\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.37008711605074174,\n          \"Y\": 0.13602816168861173\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.38240567796362623,\n          \"Y\": 0.11276789376583789\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3930867613704837,\n          \"Y\": 0.09382074636949778\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40365081309577455,\n          \"Y\": 0.07763276152062928\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41498549669967033,\n          \"Y\": 0.06178897644151429\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4308093564917972,\n          \"Y\": 0.04503603250538034\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44833172406843447,\n          \"Y\": 0.030666998473786254\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46942913505901224,\n          \"Y\": 0.016279967568723908\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4912621058841393,\n          \"Y\": 0.002186730037256057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24818384827981851,\n          \"Y\": 0.25981957629693375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.27907728430321327,\n          \"Y\": 0.23340706107468834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3048932533577885,\n          \"Y\": 0.20990989266838433\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3293591389097297,\n          \"Y\": 0.18344673624041274\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.35247994933481797,\n          \"Y\": 0.15873754415980354\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.37008711605074174,\n          \"Y\": 0.13602816168861173\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.38240567796362623,\n          \"Y\": 0.11276789376583789\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3930867613704837,\n          \"Y\": 0.09382074636949778\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40365081309577455,\n          \"Y\": 0.07763276152062928\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41498549669967033,\n          \"Y\": 0.06178897644151429\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4308093564917972,\n          \"Y\": 0.04503603250538034\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44833172406843447,\n          \"Y\": 0.030666998473786254\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46002490954717734,\n          \"Y\": 0.019427797263168622\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47564668383188824,\n          \"Y\": 0.006994707719981971\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2551502948489095,\n          \"Y\": 0.259149555800849\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2878549546621706,\n          \"Y\": 0.23589388960439478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.316791753728334,\n          \"Y\": 0.211416681662516\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34299372706277254,\n          \"Y\": 0.18438739665768075\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36888656783710616,\n          \"Y\": 0.16454854283838455\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39708716757104184,\n          \"Y\": 0.14254296670263522\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4237561963765269,\n          \"Y\": 0.12308080977069805\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45094798986020806,\n          \"Y\": 0.1050743880359111\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4864228329855015,\n          \"Y\": 0.0884033917422711\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5227204354397034,\n          \"Y\": 0.07295579265949186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5610130295377457,\n          \"Y\": 0.05727810706739815\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6020298355848356,\n          \"Y\": 0.03770742564471537\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6373126020330481,\n          \"Y\": 0.02113013047405573\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6727948461237295,\n          \"Y\": 0.0030681659851870165\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2551502948489095,\n          \"Y\": 0.259149555800849\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2878549546621706,\n          \"Y\": 0.23589388960439478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.316791753728334,\n          \"Y\": 0.211416681662516\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34299372706277254,\n          \"Y\": 0.18438739665768075\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36888656783710616,\n          \"Y\": 0.16454854283838455\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39708716757104184,\n          \"Y\": 0.14254296670263522\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4237561963765269,\n          \"Y\": 0.12308080977069805\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45094798986020806,\n          \"Y\": 0.1050743880359111\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4864228329855015,\n          \"Y\": 0.0884033917422711\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5227204354397034,\n          \"Y\": 0.07295579265949186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5610130295377457,\n          \"Y\": 0.05727810706739815\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6020298355848356,\n          \"Y\": 0.03770742564471537\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6373126020330481,\n          \"Y\": 0.02113013047405573\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6727948461237295,\n          \"Y\": 0.0030681659851870165\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2551502948489095,\n          \"Y\": 0.259149555800849\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2878549546621706,\n          \"Y\": 0.23589388960439478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.316791753728334,\n          \"Y\": 0.211416681662516\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34299372706277254,\n          \"Y\": 0.18438739665768075\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36888656783710616,\n          \"Y\": 0.16454854283838455\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39708716757104184,\n          \"Y\": 0.14254296670263522\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4237561963765269,\n          \"Y\": 0.12308080977069805\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45094798986020806,\n          \"Y\": 0.1050743880359111\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4787262459990884,\n          \"Y\": 0.09069648974665899\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067841150752334,\n          \"Y\": 0.0761035733266365\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5359464647177236,\n          \"Y\": 0.05698914672564042\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5633484128967676,\n          \"Y\": 0.04104945024256901\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5915407613758468,\n          \"Y\": 0.02350182530887189\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6174522779247366,\n          \"Y\": 0.006649060454341656\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2551502948489095,\n          \"Y\": 0.259149555800849\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2878549546621706,\n          \"Y\": 0.23589388960439478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.316791753728334,\n          \"Y\": 0.211416681662516\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34299372706277254,\n          \"Y\": 0.18438739665768075\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36888656783710616,\n          \"Y\": 0.16454854283838455\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39708716757104184,\n          \"Y\": 0.14254296670263522\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4237561963765269,\n          \"Y\": 0.12308080977069805\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45094798986020806,\n          \"Y\": 0.1050743880359111\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4787262459990884,\n          \"Y\": 0.09069648974665899\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067841150752334,\n          \"Y\": 0.0761035733266365\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5359464647177236,\n          \"Y\": 0.05698914672564042\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5633484128967676,\n          \"Y\": 0.04104945024256901\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5915407613758468,\n          \"Y\": 0.02350182530887189\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6174522779247366,\n          \"Y\": 0.006649060454341656\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2551502948489095,\n          \"Y\": 0.259149555800849\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2878549546621706,\n          \"Y\": 0.23589388960439478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.316791753728334,\n          \"Y\": 0.211416681662516\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34299372706277254,\n          \"Y\": 0.18438739665768075\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36888656783710616,\n          \"Y\": 0.16454854283838455\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39708716757104184,\n          \"Y\": 0.14254296670263522\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4237561963765269,\n          \"Y\": 0.12308080977069805\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45094798986020806,\n          \"Y\": 0.1050743880359111\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4787262459990884,\n          \"Y\": 0.09069648974665899\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067841150752334,\n          \"Y\": 0.0761035733266365\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5359464647177236,\n          \"Y\": 0.05698914672564042\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5633484128967676,\n          \"Y\": 0.04104945024256901\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5937286629360872,\n          \"Y\": 0.02327867868417936\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6203490212074908,\n          \"Y\": 0.0017833418009145924\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2551502948489095,\n          \"Y\": 0.259149555800849\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2878549546621706,\n          \"Y\": 0.23589388960439478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.316791753728334,\n          \"Y\": 0.211416681662516\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34299372706277254,\n          \"Y\": 0.18438739665768075\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36888656783710616,\n          \"Y\": 0.16454854283838455\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39708716757104184,\n          \"Y\": 0.14254296670263522\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4237561963765269,\n          \"Y\": 0.12308080977069805\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45094798986020806,\n          \"Y\": 0.1050743880359111\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4787262459990884,\n          \"Y\": 0.09069648974665899\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067841150752334,\n          \"Y\": 0.0761035733266365\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5359464647177236,\n          \"Y\": 0.05698914672564042\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5633484128967676,\n          \"Y\": 0.04104945024256901\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5937286629360872,\n          \"Y\": 0.02327867868417936\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6203490212074908,\n          \"Y\": 0.0017833418009145924\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2551502948489095,\n          \"Y\": 0.259149555800849\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2878549546621706,\n          \"Y\": 0.23589388960439478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.316791753728334,\n          \"Y\": 0.211416681662516\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34299372706277254,\n          \"Y\": 0.18438739665768075\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36888656783710616,\n          \"Y\": 0.16454854283838455\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39708716757104184,\n          \"Y\": 0.14254296670263522\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4237561963765269,\n          \"Y\": 0.12308080977069805\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45094798986020806,\n          \"Y\": 0.1050743880359111\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4787262459990884,\n          \"Y\": 0.09069648974665899\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067841150752334,\n          \"Y\": 0.0761035733266365\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5359464647177236,\n          \"Y\": 0.05698914672564042\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5633484128967676,\n          \"Y\": 0.04104945024256901\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5937286629360872,\n          \"Y\": 0.02327867868417936\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6203490212074908,\n          \"Y\": 0.0017833418009145924\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2551502948489095,\n          \"Y\": 0.259149555800849\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2878549546621706,\n          \"Y\": 0.23589388960439478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.316791753728334,\n          \"Y\": 0.211416681662516\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34299372706277254,\n          \"Y\": 0.18438739665768075\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36888656783710616,\n          \"Y\": 0.16454854283838455\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39708716757104184,\n          \"Y\": 0.14254296670263522\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4237561963765269,\n          \"Y\": 0.12308080977069805\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45094798986020806,\n          \"Y\": 0.1050743880359111\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4787262459990884,\n          \"Y\": 0.09069648974665899\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067841150752334,\n          \"Y\": 0.0761035733266365\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5359464647177236,\n          \"Y\": 0.05698914672564042\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5633484128967676,\n          \"Y\": 0.04104945024256901\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5937286629360872,\n          \"Y\": 0.02327867868417936\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6203490212074908,\n          \"Y\": 0.0017833418009145924\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2551502948489095,\n          \"Y\": 0.259149555800849\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2878549546621706,\n          \"Y\": 0.23589388960439478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.316791753728334,\n          \"Y\": 0.211416681662516\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34299372706277254,\n          \"Y\": 0.18438739665768075\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36888656783710616,\n          \"Y\": 0.16454854283838455\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39708716757104184,\n          \"Y\": 0.14254296670263522\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4237561963765269,\n          \"Y\": 0.12308080977069805\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45094798986020806,\n          \"Y\": 0.1050743880359111\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4787262459990884,\n          \"Y\": 0.09069648974665899\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067841150752334,\n          \"Y\": 0.0761035733266365\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5359464647177236,\n          \"Y\": 0.05698914672564042\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5633484128967676,\n          \"Y\": 0.04104945024256901\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5937286629360872,\n          \"Y\": 0.02327867868417936\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6203490212074908,\n          \"Y\": 0.0017833418009145924\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2551502948489095,\n          \"Y\": 0.259149555800849\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2878549546621706,\n          \"Y\": 0.23589388960439478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.316791753728334,\n          \"Y\": 0.211416681662516\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34299372706277254,\n          \"Y\": 0.18438739665768075\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36888656783710616,\n          \"Y\": 0.16454854283838455\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39708716757104184,\n          \"Y\": 0.14254296670263522\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4237561963765269,\n          \"Y\": 0.12308080977069805\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45094798986020806,\n          \"Y\": 0.1050743880359111\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4787262459990884,\n          \"Y\": 0.09069648974665899\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067841150752334,\n          \"Y\": 0.0761035733266365\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5359464647177236,\n          \"Y\": 0.05698914672564042\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5633484128967676,\n          \"Y\": 0.04104945024256901\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5937286629360872,\n          \"Y\": 0.02327867868417936\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6203490212074908,\n          \"Y\": 0.0017833418009145924\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2551502948489095,\n          \"Y\": 0.259149555800849\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2878549546621706,\n          \"Y\": 0.23589388960439478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.316791753728334,\n          \"Y\": 0.211416681662516\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34299372706277254,\n          \"Y\": 0.18438739665768075\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36888656783710616,\n          \"Y\": 0.16454854283838455\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39708716757104184,\n          \"Y\": 0.14254296670263522\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4237561963765269,\n          \"Y\": 0.12308080977069805\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45094798986020806,\n          \"Y\": 0.1050743880359111\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4787262459990884,\n          \"Y\": 0.09069648974665899\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067841150752334,\n          \"Y\": 0.0761035733266365\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5359464647177236,\n          \"Y\": 0.05698914672564042\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5633484128967676,\n          \"Y\": 0.04104945024256901\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5937286629360872,\n          \"Y\": 0.02327867868417936\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6203490212074908,\n          \"Y\": 0.0017833418009145924\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2551502948489095,\n          \"Y\": 0.259149555800849\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2878549546621706,\n          \"Y\": 0.23589388960439478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.316791753728334,\n          \"Y\": 0.211416681662516\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34299372706277254,\n          \"Y\": 0.18438739665768075\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36888656783710616,\n          \"Y\": 0.16454854283838455\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39708716757104184,\n          \"Y\": 0.14254296670263522\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4237561963765269,\n          \"Y\": 0.12308080977069805\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45094798986020806,\n          \"Y\": 0.1050743880359111\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4787262459990884,\n          \"Y\": 0.09069648974665899\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067841150752334,\n          \"Y\": 0.0761035733266365\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5359464647177236,\n          \"Y\": 0.05698914672564042\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5633484128967676,\n          \"Y\": 0.04104945024256901\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5937286629360872,\n          \"Y\": 0.02327867868417936\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6203490212074908,\n          \"Y\": 0.0017833418009145924\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2551502948489095,\n          \"Y\": 0.259149555800849\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2878549546621706,\n          \"Y\": 0.23589388960439478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.316791753728334,\n          \"Y\": 0.211416681662516\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34299372706277254,\n          \"Y\": 0.18438739665768075\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36888656783710616,\n          \"Y\": 0.16454854283838455\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39708716757104184,\n          \"Y\": 0.14254296670263522\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4237561963765269,\n          \"Y\": 0.12308080977069805\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45094798986020806,\n          \"Y\": 0.1050743880359111\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4787262459990884,\n          \"Y\": 0.09069648974665899\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067841150752334,\n          \"Y\": 0.0761035733266365\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5359464647177236,\n          \"Y\": 0.05698914672564042\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5633484128967676,\n          \"Y\": 0.04104945024256901\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5937286629360872,\n          \"Y\": 0.02327867868417936\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.622996122483022,\n          \"Y\": 0.010954541289445702\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2551502948489095,\n          \"Y\": 0.259149555800849\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2878549546621706,\n          \"Y\": 0.23589388960439478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.316791753728334,\n          \"Y\": 0.211416681662516\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34299372706277254,\n          \"Y\": 0.18438739665768075\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36888656783710616,\n          \"Y\": 0.16454854283838455\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39708716757104184,\n          \"Y\": 0.14254296670263522\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4237561963765269,\n          \"Y\": 0.12308080977069805\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45094798986020806,\n          \"Y\": 0.1050743880359111\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4787262459990884,\n          \"Y\": 0.09069648974665899\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067841150752334,\n          \"Y\": 0.0761035733266365\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5359464647177236,\n          \"Y\": 0.05698914672564042\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.56580306284154,\n          \"Y\": 0.038549400727790784\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5966462694771552,\n          \"Y\": 0.019157783993890173\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6264354724162736,\n          \"Y\": 0.0014514179560782998\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2551502948489095,\n          \"Y\": 0.259149555800849\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2878549546621706,\n          \"Y\": 0.23589388960439478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.316791753728334,\n          \"Y\": 0.211416681662516\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34299372706277254,\n          \"Y\": 0.18438739665768075\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36888656783710616,\n          \"Y\": 0.16454854283838455\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39708716757104184,\n          \"Y\": 0.14254296670263522\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4237561963765269,\n          \"Y\": 0.12308080977069805\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45094798986020806,\n          \"Y\": 0.1050743880359111\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4787262459990884,\n          \"Y\": 0.09069648974665899\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067841150752334,\n          \"Y\": 0.0761035733266365\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5359464647177236,\n          \"Y\": 0.05698914672564042\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.56580306284154,\n          \"Y\": 0.038549400727790784\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5966462694771552,\n          \"Y\": 0.019157783993890173\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6264354724162736,\n          \"Y\": 0.0014514179560782998\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2551502948489095,\n          \"Y\": 0.259149555800849\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2878549546621706,\n          \"Y\": 0.23589388960439478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.316791753728334,\n          \"Y\": 0.211416681662516\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34299372706277254,\n          \"Y\": 0.18438739665768075\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36888656783710616,\n          \"Y\": 0.16454854283838455\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39708716757104184,\n          \"Y\": 0.14254296670263522\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4237561963765269,\n          \"Y\": 0.12308080977069805\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45094798986020806,\n          \"Y\": 0.1050743880359111\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4787262459990884,\n          \"Y\": 0.09069648974665899\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067841150752334,\n          \"Y\": 0.0761035733266365\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5359464647177236,\n          \"Y\": 0.05698914672564042\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.56580306284154,\n          \"Y\": 0.038549400727790784\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5966462694771552,\n          \"Y\": 0.019157783993890173\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6264354724162736,\n          \"Y\": 0.0014514179560782998\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2551502948489095,\n          \"Y\": 0.259149555800849\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2878549546621706,\n          \"Y\": 0.23589388960439478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.316791753728334,\n          \"Y\": 0.211416681662516\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34299372706277254,\n          \"Y\": 0.18438739665768075\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36888656783710616,\n          \"Y\": 0.16454854283838455\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39708716757104184,\n          \"Y\": 0.14254296670263522\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4237561963765269,\n          \"Y\": 0.12308080977069805\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45094798986020806,\n          \"Y\": 0.1050743880359111\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4787262459990884,\n          \"Y\": 0.09069648974665899\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067841150752334,\n          \"Y\": 0.0761035733266365\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5359464647177236,\n          \"Y\": 0.05698914672564042\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.56580306284154,\n          \"Y\": 0.038549400727790784\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5966462694771552,\n          \"Y\": 0.019157783993890173\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6264354724162736,\n          \"Y\": 0.0014514179560782998\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2551502948489095,\n          \"Y\": 0.259149555800849\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2878549546621706,\n          \"Y\": 0.23589388960439478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.316791753728334,\n          \"Y\": 0.211416681662516\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34299372706277254,\n          \"Y\": 0.18438739665768075\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36888656783710616,\n          \"Y\": 0.16454854283838455\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39708716757104184,\n          \"Y\": 0.14254296670263522\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4237561963765269,\n          \"Y\": 0.12308080977069805\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45094798986020806,\n          \"Y\": 0.1050743880359111\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4787262459990884,\n          \"Y\": 0.09069648974665899\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067841150752334,\n          \"Y\": 0.0761035733266365\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5359464647177236,\n          \"Y\": 0.05698914672564042\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.56580306284154,\n          \"Y\": 0.038549400727790784\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5966462694771552,\n          \"Y\": 0.019157783993890173\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6264354724162736,\n          \"Y\": 0.0014514179560782998\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2551502948489095,\n          \"Y\": 0.259149555800849\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2878549546621706,\n          \"Y\": 0.23589388960439478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.32090451932580033,\n          \"Y\": 0.21504016063456188\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3582946318994006,\n          \"Y\": 0.19129224719193172\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39442706329205796,\n          \"Y\": 0.17223562305774093\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4276512192742732,\n          \"Y\": 0.153686847639388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4569933254503359,\n          \"Y\": 0.13588955631417038\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4905397058700153,\n          \"Y\": 0.11476891802687318\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5206773934577983,\n          \"Y\": 0.09525240545256695\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5488819091524848,\n          \"Y\": 0.0815354254108916\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5757963154128435,\n          \"Y\": 0.06421690493525276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6056071191548458,\n          \"Y\": 0.04562338372534841\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6321207379814785,\n          \"Y\": 0.025922375148819846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6601016016047784,\n          \"Y\": 0.007055312282303536\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2551502948489095,\n          \"Y\": 0.259149555800849\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2878549546621706,\n          \"Y\": 0.23589388960439478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.32090451932580033,\n          \"Y\": 0.21504016063456188\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3582946318994006,\n          \"Y\": 0.19129224719193172\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39442706329205796,\n          \"Y\": 0.17223562305774093\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4276512192742732,\n          \"Y\": 0.153686847639388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4569933254503359,\n          \"Y\": 0.13588955631417038\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4905397058700153,\n          \"Y\": 0.11476891802687318\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5206773934577983,\n          \"Y\": 0.09525240545256695\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5488819091524848,\n          \"Y\": 0.0815354254108916\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5757963154128435,\n          \"Y\": 0.06421690493525276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6056071191548458,\n          \"Y\": 0.04562338372534841\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6321207379814785,\n          \"Y\": 0.025922375148819846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6601016016047784,\n          \"Y\": 0.007055312282303536\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2172941645078076,\n          \"Y\": 0.2876197243053505\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2551502948489095,\n          \"Y\": 0.259149555800849\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2878549546621706,\n          \"Y\": 0.23589388960439478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.32090451932580033,\n          \"Y\": 0.21504016063456188\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3582946318994006,\n          \"Y\": 0.19129224719193172\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39442706329205796,\n          \"Y\": 0.17223562305774093\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4276512192742732,\n          \"Y\": 0.153686847639388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4569933254503359,\n          \"Y\": 0.13588955631417038\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4905397058700153,\n          \"Y\": 0.11476891802687318\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5206773934577983,\n          \"Y\": 0.09525240545256695\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5488819091524848,\n          \"Y\": 0.0815354254108916\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5757963154128435,\n          \"Y\": 0.06421690493525276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6056071191548458,\n          \"Y\": 0.04562338372534841\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6321207379814785,\n          \"Y\": 0.025922375148819846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6601016016047784,\n          \"Y\": 0.007055312282303536\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44507747140895276,\n          \"Y\": 0.13165575968899776\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47586863595852386,\n          \"Y\": 0.11695152377508879\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067728781448166,\n          \"Y\": 0.09939207754506565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5367931987098093,\n          \"Y\": 0.07729903551624528\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5655596785333227,\n          \"Y\": 0.05755559850475021\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5947990783235746,\n          \"Y\": 0.03861236488339499\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6260591931026698,\n          \"Y\": 0.021419994164212364\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6626276040142571,\n          \"Y\": 0.006082371086596023\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44507747140895276,\n          \"Y\": 0.13165575968899776\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47586863595852386,\n          \"Y\": 0.11695152377508879\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067728781448166,\n          \"Y\": 0.09939207754506565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5367931987098093,\n          \"Y\": 0.07729903551624528\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5655596785333227,\n          \"Y\": 0.05755559850475021\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5947990783235746,\n          \"Y\": 0.03861236488339499\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6260591931026698,\n          \"Y\": 0.021419994164212364\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6626276040142571,\n          \"Y\": 0.006082371086596023\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44507747140895276,\n          \"Y\": 0.13165575968899776\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47586863595852386,\n          \"Y\": 0.11695152377508879\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067728781448166,\n          \"Y\": 0.09939207754506565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5367931987098093,\n          \"Y\": 0.07729903551624528\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5655596785333227,\n          \"Y\": 0.05755559850475021\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5947990783235746,\n          \"Y\": 0.03861236488339499\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6260591931026698,\n          \"Y\": 0.021419994164212364\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6626276040142571,\n          \"Y\": 0.006082371086596023\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44507747140895276,\n          \"Y\": 0.13165575968899776\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47586863595852386,\n          \"Y\": 0.11695152377508879\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067728781448166,\n          \"Y\": 0.09939207754506565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5367931987098093,\n          \"Y\": 0.07729903551624528\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5655596785333227,\n          \"Y\": 0.05755559850475021\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5963252842546677,\n          \"Y\": 0.03855695898885321\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.628616487850507,\n          \"Y\": 0.01919348839431484\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.663645648049156,\n          \"Y\": 0.001040740449111413\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44507747140895276,\n          \"Y\": 0.13165575968899776\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47586863595852386,\n          \"Y\": 0.11695152377508879\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067728781448166,\n          \"Y\": 0.09939207754506565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5367931987098093,\n          \"Y\": 0.07729903551624528\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5655596785333227,\n          \"Y\": 0.05755559850475021\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5963252842546677,\n          \"Y\": 0.03855695898885321\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.628616487850507,\n          \"Y\": 0.01919348839431484\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.663645648049156,\n          \"Y\": 0.001040740449111413\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44507747140895276,\n          \"Y\": 0.13165575968899776\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47586863595852386,\n          \"Y\": 0.11695152377508879\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067728781448166,\n          \"Y\": 0.09939207754506565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5367931987098093,\n          \"Y\": 0.07729903551624528\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5655596785333227,\n          \"Y\": 0.05755559850475021\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5963252842546677,\n          \"Y\": 0.03855695898885321\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.628616487850507,\n          \"Y\": 0.01919348839431484\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.663645648049156,\n          \"Y\": 0.001040740449111413\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44507747140895276,\n          \"Y\": 0.13165575968899776\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47586863595852386,\n          \"Y\": 0.11695152377508879\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067728781448166,\n          \"Y\": 0.09939207754506565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5367931987098093,\n          \"Y\": 0.07729903551624528\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5655596785333227,\n          \"Y\": 0.05755559850475021\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5963252842546677,\n          \"Y\": 0.03855695898885321\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.628616487850507,\n          \"Y\": 0.01919348839431484\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.663645648049156,\n          \"Y\": 0.001040740449111413\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44507747140895276,\n          \"Y\": 0.13165575968899776\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47586863595852386,\n          \"Y\": 0.11695152377508879\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067728781448166,\n          \"Y\": 0.09939207754506565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5367931987098093,\n          \"Y\": 0.07729903551624528\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5655596785333227,\n          \"Y\": 0.05755559850475021\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5963252842546677,\n          \"Y\": 0.03855695898885321\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.628616487850507,\n          \"Y\": 0.01919348839431484\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.663645648049156,\n          \"Y\": 0.001040740449111413\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44507747140895276,\n          \"Y\": 0.13165575968899776\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47586863595852386,\n          \"Y\": 0.11695152377508879\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067728781448166,\n          \"Y\": 0.09939207754506565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5367931987098093,\n          \"Y\": 0.07729903551624528\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5655596785333227,\n          \"Y\": 0.05755559850475021\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5963252842546677,\n          \"Y\": 0.03855695898885321\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.628616487850507,\n          \"Y\": 0.01919348839431484\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6590931276417477,\n          \"Y\": 0.004568267006669983\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44507747140895276,\n          \"Y\": 0.13165575968899776\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47586863595852386,\n          \"Y\": 0.11695152377508879\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067728781448166,\n          \"Y\": 0.09939207754506565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5367931987098093,\n          \"Y\": 0.07729903551624528\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5655596785333227,\n          \"Y\": 0.05755559850475021\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5963252842546677,\n          \"Y\": 0.03855695898885321\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.628616487850507,\n          \"Y\": 0.01919348839431484\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6590931276417477,\n          \"Y\": 0.004568267006669983\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44507747140895276,\n          \"Y\": 0.13165575968899776\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47586863595852386,\n          \"Y\": 0.11695152377508879\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5067728781448166,\n          \"Y\": 0.09939207754506565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5367931987098093,\n          \"Y\": 0.07729903551624528\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5655596785333227,\n          \"Y\": 0.05755559850475021\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5963252842546677,\n          \"Y\": 0.03855695898885321\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.628616487850507,\n          \"Y\": 0.01919348839431484\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6590931276417477,\n          \"Y\": 0.004568267006669983\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009275479073758,\n          \"Y\": 0.09417905128200302\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5332162585842555,\n          \"Y\": 0.07660485970140102\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5669446414046941,\n          \"Y\": 0.05872091709082222\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6062165506279763,\n          \"Y\": 0.03948069496351521\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6471926133673755,\n          \"Y\": 0.021877300612510794\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6885262971416679,\n          \"Y\": 0.004801673874014544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009275479073758,\n          \"Y\": 0.09417905128200302\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5332162585842555,\n          \"Y\": 0.07660485970140102\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5669446414046941,\n          \"Y\": 0.05872091709082222\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6062165506279763,\n          \"Y\": 0.03948069496351521\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6471926133673755,\n          \"Y\": 0.021877300612510794\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6885262971416679,\n          \"Y\": 0.004801673874014544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009275479073758,\n          \"Y\": 0.09417905128200302\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5332162585842555,\n          \"Y\": 0.07660485970140102\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5669446414046941,\n          \"Y\": 0.05872091709082222\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6062165506279763,\n          \"Y\": 0.03948069496351521\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6471926133673755,\n          \"Y\": 0.021877300612510794\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6885262971416679,\n          \"Y\": 0.004801673874014544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009275479073758,\n          \"Y\": 0.09417905128200302\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5332162585842555,\n          \"Y\": 0.07660485970140102\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5669446414046941,\n          \"Y\": 0.05872091709082222\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6062165506279763,\n          \"Y\": 0.03948069496351521\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6471926133673755,\n          \"Y\": 0.021877300612510794\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6885262971416679,\n          \"Y\": 0.004801673874014544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009275479073758,\n          \"Y\": 0.09417905128200302\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5332162585842555,\n          \"Y\": 0.07660485970140102\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5669446414046941,\n          \"Y\": 0.05872091709082222\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6062165506279763,\n          \"Y\": 0.03948069496351521\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6471926133673755,\n          \"Y\": 0.021877300612510794\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6885262971416679,\n          \"Y\": 0.004801673874014544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009275479073758,\n          \"Y\": 0.09417905128200302\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5332162585842555,\n          \"Y\": 0.07660485970140102\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5669446414046941,\n          \"Y\": 0.05872091709082222\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6062165506279763,\n          \"Y\": 0.03948069496351521\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6471926133673755,\n          \"Y\": 0.021877300612510794\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6885262971416679,\n          \"Y\": 0.004801673874014544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009275479073758,\n          \"Y\": 0.09417905128200302\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5332162585842555,\n          \"Y\": 0.07660485970140102\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5669446414046941,\n          \"Y\": 0.05872091709082222\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6062165506279763,\n          \"Y\": 0.03948069496351521\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6471926133673755,\n          \"Y\": 0.021877300612510794\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6885262971416679,\n          \"Y\": 0.004801673874014544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009275479073758,\n          \"Y\": 0.09417905128200302\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5332162585842555,\n          \"Y\": 0.07660485970140102\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5669446414046941,\n          \"Y\": 0.05872091709082222\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6062165506279763,\n          \"Y\": 0.03948069496351521\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6471926133673755,\n          \"Y\": 0.021877300612510794\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6865217295968901,\n          \"Y\": 0.005897318607085478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009275479073758,\n          \"Y\": 0.09417905128200302\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5332162585842555,\n          \"Y\": 0.07660485970140102\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5669446414046941,\n          \"Y\": 0.05872091709082222\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6062165506279763,\n          \"Y\": 0.03948069496351521\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6471926133673755,\n          \"Y\": 0.021877300612510794\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6865217295968901,\n          \"Y\": 0.005897318607085478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009275479073758,\n          \"Y\": 0.09417905128200302\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5332162585842555,\n          \"Y\": 0.07660485970140102\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5669446414046941,\n          \"Y\": 0.05872091709082222\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6062165506279763,\n          \"Y\": 0.03948069496351521\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6471926133673755,\n          \"Y\": 0.021877300612510794\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6865217295968901,\n          \"Y\": 0.005897318607085478\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009275479073758,\n          \"Y\": 0.09417905128200302\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5332162585842555,\n          \"Y\": 0.07660485970140102\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5669446414046941,\n          \"Y\": 0.05872091709082222\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6062165506279763,\n          \"Y\": 0.03948069496351521\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6459119500981602,\n          \"Y\": 0.021149249550155166\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6895746898997234,\n          \"Y\": 0.005666529100881178\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5022815971698137,\n          \"Y\": 0.09341616163371447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5337806003354174,\n          \"Y\": 0.07837732391954734\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5612209495235924,\n          \"Y\": 0.06017694254778223\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5878322370350959,\n          \"Y\": 0.03904349844969769\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6076874106020332,\n          \"Y\": 0.023170073261030447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6271692697721637,\n          \"Y\": 0.0015852375155021546\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5022815971698137,\n          \"Y\": 0.09341616163371447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5337806003354174,\n          \"Y\": 0.07837732391954734\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5612209495235924,\n          \"Y\": 0.06017694254778223\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5878322370350959,\n          \"Y\": 0.03904349844969769\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6076874106020332,\n          \"Y\": 0.023170073261030447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6271692697721637,\n          \"Y\": 0.0015852375155021546\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5022815971698137,\n          \"Y\": 0.09341616163371447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5337806003354174,\n          \"Y\": 0.07837732391954734\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5612209495235924,\n          \"Y\": 0.06017694254778223\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5878322370350959,\n          \"Y\": 0.03904349844969769\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6076874106020332,\n          \"Y\": 0.023170073261030447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6271692697721637,\n          \"Y\": 0.0015852375155021546\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5022815971698137,\n          \"Y\": 0.09341616163371447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5337806003354174,\n          \"Y\": 0.07837732391954734\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5612209495235924,\n          \"Y\": 0.06017694254778223\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5878322370350959,\n          \"Y\": 0.03904349844969769\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6076874106020332,\n          \"Y\": 0.023170073261030447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6297535969032434,\n          \"Y\": 0.009865244950396028\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5022815971698137,\n          \"Y\": 0.09341616163371447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5337806003354174,\n          \"Y\": 0.07837732391954734\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5612209495235924,\n          \"Y\": 0.06017694254778223\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5878322370350959,\n          \"Y\": 0.03904349844969769\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6076874106020332,\n          \"Y\": 0.023170073261030447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6297535969032434,\n          \"Y\": 0.009865244950396028\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5022815971698137,\n          \"Y\": 0.09341616163371447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5337806003354174,\n          \"Y\": 0.07837732391954734\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5612209495235924,\n          \"Y\": 0.06017694254778223\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5878322370350959,\n          \"Y\": 0.03904349844969769\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6076874106020332,\n          \"Y\": 0.023170073261030447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6297535969032434,\n          \"Y\": 0.009865244950396028\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5022815971698137,\n          \"Y\": 0.09341616163371447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5337806003354174,\n          \"Y\": 0.07837732391954734\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5612209495235924,\n          \"Y\": 0.06017694254778223\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5878322370350959,\n          \"Y\": 0.03904349844969769\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6076874106020332,\n          \"Y\": 0.023170073261030447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6297535969032434,\n          \"Y\": 0.009865244950396028\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5022815971698137,\n          \"Y\": 0.09341616163371447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5337806003354174,\n          \"Y\": 0.07837732391954734\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5612209495235924,\n          \"Y\": 0.06017694254778223\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5878322370350959,\n          \"Y\": 0.03904349844969769\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6076874106020332,\n          \"Y\": 0.023170073261030447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6265656449162522,\n          \"Y\": 0.00579889247232937\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5022815971698137,\n          \"Y\": 0.09341616163371447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5337806003354174,\n          \"Y\": 0.07837732391954734\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5612209495235924,\n          \"Y\": 0.06017694254778223\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5878322370350959,\n          \"Y\": 0.03904349844969769\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6076874106020332,\n          \"Y\": 0.023170073261030447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6265656449162522,\n          \"Y\": 0.00579889247232937\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5022815971698137,\n          \"Y\": 0.09341616163371447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5337806003354174,\n          \"Y\": 0.07837732391954734\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5612209495235924,\n          \"Y\": 0.06017694254778223\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5878322370350959,\n          \"Y\": 0.03904349844969769\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6076874106020332,\n          \"Y\": 0.023170073261030447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6265656449162522,\n          \"Y\": 0.00579889247232937\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5022815971698137,\n          \"Y\": 0.09341616163371447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5337806003354174,\n          \"Y\": 0.07837732391954734\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5612209495235924,\n          \"Y\": 0.06017694254778223\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5878322370350959,\n          \"Y\": 0.03904349844969769\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6076874106020332,\n          \"Y\": 0.023170073261030447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6265656449162522,\n          \"Y\": 0.00579889247232937\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5022815971698137,\n          \"Y\": 0.09341616163371447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5337806003354174,\n          \"Y\": 0.07837732391954734\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5612209495235924,\n          \"Y\": 0.06017694254778223\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5878322370350959,\n          \"Y\": 0.03904349844969769\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6076874106020332,\n          \"Y\": 0.023170073261030447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6265656449162522,\n          \"Y\": 0.00579889247232937\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5022815971698137,\n          \"Y\": 0.09341616163371447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5342797506718355,\n          \"Y\": 0.0766418497861995\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5685144270555744,\n          \"Y\": 0.06149793288578658\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6012506808919086,\n          \"Y\": 0.04627109525506609\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6357277604664702,\n          \"Y\": 0.030308807707984994\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6703995687369659,\n          \"Y\": 0.016959805788405162\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5022815971698137,\n          \"Y\": 0.09341616163371447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5342797506718355,\n          \"Y\": 0.0766418497861995\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5685144270555744,\n          \"Y\": 0.06149793288578658\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.602832006942389,\n          \"Y\": 0.04151620934904375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6338129772298717,\n          \"Y\": 0.025196991312764615\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6629435638035519,\n          \"Y\": 0.011272669114022497\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5022815971698137,\n          \"Y\": 0.09341616163371447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5342797506718355,\n          \"Y\": 0.0766418497861995\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5685144270555744,\n          \"Y\": 0.06149793288578658\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.602832006942389,\n          \"Y\": 0.04151620934904375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6338129772298717,\n          \"Y\": 0.025196991312764615\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6629435638035519,\n          \"Y\": 0.011272669114022497\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5022815971698137,\n          \"Y\": 0.09341616163371447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5342797506718355,\n          \"Y\": 0.0766418497861995\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5685144270555744,\n          \"Y\": 0.06149793288578658\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.602832006942389,\n          \"Y\": 0.04151620934904375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6338129772298717,\n          \"Y\": 0.025196991312764615\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6629435638035519,\n          \"Y\": 0.011272669114022497\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34314833639629005,\n          \"Y\": 0.1858854513352741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3760897877558494,\n          \"Y\": 0.16651277407500978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40925175675206993,\n          \"Y\": 0.1490808173994662\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43936179673711145,\n          \"Y\": 0.12803136729313846\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47108137441040415,\n          \"Y\": 0.11220855714379221\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5022815971698137,\n          \"Y\": 0.09341616163371447\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5342797506718355,\n          \"Y\": 0.0766418497861995\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5685144270555744,\n          \"Y\": 0.06149793288578658\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.602832006942389,\n          \"Y\": 0.04151620934904375\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6338129772298717,\n          \"Y\": 0.025196991312764615\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6629435638035519,\n          \"Y\": 0.011272669114022497\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3419467973814976,\n          \"Y\": 0.1820015907506381\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3713804139568171,\n          \"Y\": 0.16387822435958885\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40218193859824725,\n          \"Y\": 0.14802015377733915\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43785322848478614,\n          \"Y\": 0.13216418371542726\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47294524222147616,\n          \"Y\": 0.11618104863376423\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5068066934784046,\n          \"Y\": 0.09770113149698681\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5428429655612316,\n          \"Y\": 0.07618012659151654\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.570731458581952,\n          \"Y\": 0.055923879500868905\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5942699462639898,\n          \"Y\": 0.03861264106385154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6168788952064779,\n          \"Y\": 0.021385912135437286\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6416209040003239,\n          \"Y\": 0.007370847613644524\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3419467973814976,\n          \"Y\": 0.1820015907506381\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3713804139568171,\n          \"Y\": 0.16387822435958885\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40218193859824725,\n          \"Y\": 0.14802015377733915\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43785322848478614,\n          \"Y\": 0.13216418371542726\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47294524222147616,\n          \"Y\": 0.11618104863376423\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5068066934784046,\n          \"Y\": 0.09770113149698681\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5428429655612316,\n          \"Y\": 0.07618012659151654\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.570731458581952,\n          \"Y\": 0.055923879500868905\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5942699462639898,\n          \"Y\": 0.03861264106385154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6168788952064779,\n          \"Y\": 0.021385912135437286\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6416209040003239,\n          \"Y\": 0.007370847613644524\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3419467973814976,\n          \"Y\": 0.1820015907506381\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3713804139568171,\n          \"Y\": 0.16387822435958885\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40218193859824725,\n          \"Y\": 0.14802015377733915\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43785322848478614,\n          \"Y\": 0.13216418371542726\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47294524222147616,\n          \"Y\": 0.11618104863376423\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5068066934784046,\n          \"Y\": 0.09770113149698681\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5428429655612316,\n          \"Y\": 0.07618012659151654\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.570731458581952,\n          \"Y\": 0.055923879500868905\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5942699462639898,\n          \"Y\": 0.03861264106385154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6168788952064779,\n          \"Y\": 0.021385912135437286\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6416209040003239,\n          \"Y\": 0.007370847613644524\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3419467973814976,\n          \"Y\": 0.1820015907506381\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3713804139568171,\n          \"Y\": 0.16387822435958885\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40218193859824725,\n          \"Y\": 0.14802015377733915\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43785322848478614,\n          \"Y\": 0.13216418371542726\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47294524222147616,\n          \"Y\": 0.11618104863376423\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5068066934784046,\n          \"Y\": 0.09770113149698681\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5428429655612316,\n          \"Y\": 0.07618012659151654\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.570731458581952,\n          \"Y\": 0.055923879500868905\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5942699462639898,\n          \"Y\": 0.03861264106385154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6168788952064779,\n          \"Y\": 0.021385912135437286\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6416209040003239,\n          \"Y\": 0.007370847613644524\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3419467973814976,\n          \"Y\": 0.1820015907506381\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3713804139568171,\n          \"Y\": 0.16387822435958885\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40218193859824725,\n          \"Y\": 0.14802015377733915\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43785322848478614,\n          \"Y\": 0.13216418371542726\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47294524222147616,\n          \"Y\": 0.11618104863376423\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5068066934784046,\n          \"Y\": 0.09770113149698681\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5436733468243418,\n          \"Y\": 0.07706202057035039\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5835526093764752,\n          \"Y\": 0.05678556957751198\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6241349546499799,\n          \"Y\": 0.038176764689027705\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6633273576677234,\n          \"Y\": 0.02241240343566652\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7069282985188999,\n          \"Y\": 0.00865209210683719\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3419467973814976,\n          \"Y\": 0.1820015907506381\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3713804139568171,\n          \"Y\": 0.16387822435958885\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40218193859824725,\n          \"Y\": 0.14802015377733915\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43785322848478614,\n          \"Y\": 0.13216418371542726\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47294524222147616,\n          \"Y\": 0.11618104863376423\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5068066934784046,\n          \"Y\": 0.09770113149698681\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5436733468243418,\n          \"Y\": 0.07706202057035039\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5835526093764752,\n          \"Y\": 0.05678556957751198\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6220981589125236,\n          \"Y\": 0.03729891891765083\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.656181308034505,\n          \"Y\": 0.020675885220531258\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6938532433850554,\n          \"Y\": 0.010871486442345271\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3419467973814976,\n          \"Y\": 0.1820015907506381\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3713804139568171,\n          \"Y\": 0.16387822435958885\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40218193859824725,\n          \"Y\": 0.14802015377733915\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43785322848478614,\n          \"Y\": 0.13216418371542726\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47294524222147616,\n          \"Y\": 0.11618104863376423\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5068066934784046,\n          \"Y\": 0.09770113149698681\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5436733468243418,\n          \"Y\": 0.07706202057035039\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5835526093764752,\n          \"Y\": 0.05678556957751198\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6220981589125236,\n          \"Y\": 0.03729891891765083\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.656181308034505,\n          \"Y\": 0.020675885220531258\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6938532433850554,\n          \"Y\": 0.010871486442345271\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3419467973814976,\n          \"Y\": 0.1820015907506381\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3713804139568171,\n          \"Y\": 0.16387822435958885\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40218193859824725,\n          \"Y\": 0.14802015377733915\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43785322848478614,\n          \"Y\": 0.13216418371542726\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47294524222147616,\n          \"Y\": 0.11618104863376423\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5068066934784046,\n          \"Y\": 0.09770113149698681\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5436733468243418,\n          \"Y\": 0.07706202057035039\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5835526093764752,\n          \"Y\": 0.05678556957751198\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6220981589125236,\n          \"Y\": 0.03729891891765083\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.656181308034505,\n          \"Y\": 0.020675885220531258\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6938532433850554,\n          \"Y\": 0.010871486442345271\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3419467973814976,\n          \"Y\": 0.1820015907506381\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3713804139568171,\n          \"Y\": 0.16387822435958885\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40218193859824725,\n          \"Y\": 0.14802015377733915\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43785322848478614,\n          \"Y\": 0.13216418371542726\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47294524222147616,\n          \"Y\": 0.11618104863376423\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5068066934784046,\n          \"Y\": 0.09770113149698681\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5436733468243418,\n          \"Y\": 0.07706202057035039\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5835526093764752,\n          \"Y\": 0.05678556957751198\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6220981589125236,\n          \"Y\": 0.03729891891765083\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.656181308034505,\n          \"Y\": 0.020675885220531258\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6938532433850554,\n          \"Y\": 0.010871486442345271\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3419467973814976,\n          \"Y\": 0.1820015907506381\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3713804139568171,\n          \"Y\": 0.16387822435958885\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40218193859824725,\n          \"Y\": 0.14802015377733915\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43785322848478614,\n          \"Y\": 0.13216418371542726\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47294524222147616,\n          \"Y\": 0.11618104863376423\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5068066934784046,\n          \"Y\": 0.09770113149698681\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5436733468243418,\n          \"Y\": 0.07706202057035039\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5835526093764752,\n          \"Y\": 0.05678556957751198\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6220981589125236,\n          \"Y\": 0.03729891891765083\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.656181308034505,\n          \"Y\": 0.020675885220531258\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6938532433850554,\n          \"Y\": 0.010871486442345271\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3419467973814976,\n          \"Y\": 0.1820015907506381\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3713804139568171,\n          \"Y\": 0.16387822435958885\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40218193859824725,\n          \"Y\": 0.14802015377733915\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43785322848478614,\n          \"Y\": 0.13216418371542726\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47294524222147616,\n          \"Y\": 0.11618104863376423\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5068066934784046,\n          \"Y\": 0.09770113149698681\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5436733468243418,\n          \"Y\": 0.07706202057035039\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5835526093764752,\n          \"Y\": 0.05678556957751198\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6220981589125236,\n          \"Y\": 0.03729891891765083\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.656181308034505,\n          \"Y\": 0.020675885220531258\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6852216663618013,\n          \"Y\": 0.003955146350262749\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3419467973814976,\n          \"Y\": 0.1820015907506381\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3713804139568171,\n          \"Y\": 0.16387822435958885\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40218193859824725,\n          \"Y\": 0.14802015377733915\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43785322848478614,\n          \"Y\": 0.13216418371542726\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47294524222147616,\n          \"Y\": 0.11618104863376423\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5068066934784046,\n          \"Y\": 0.09770113149698681\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5436733468243418,\n          \"Y\": 0.07706202057035039\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5835526093764752,\n          \"Y\": 0.05678556957751198\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6220981589125236,\n          \"Y\": 0.03729891891765083\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.656181308034505,\n          \"Y\": 0.020675885220531258\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6852216663618013,\n          \"Y\": 0.003955146350262749\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3419467973814976,\n          \"Y\": 0.1820015907506381\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3713804139568171,\n          \"Y\": 0.16387822435958885\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40218193859824725,\n          \"Y\": 0.14802015377733915\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43785322848478614,\n          \"Y\": 0.13216418371542726\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47294524222147616,\n          \"Y\": 0.11618104863376423\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5068066934784046,\n          \"Y\": 0.09770113149698681\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5436733468243418,\n          \"Y\": 0.07706202057035039\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5835526093764752,\n          \"Y\": 0.05678556957751198\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6220981589125236,\n          \"Y\": 0.03729891891765083\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.656181308034505,\n          \"Y\": 0.020675885220531258\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6852216663618013,\n          \"Y\": 0.003955146350262749\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3419467973814976,\n          \"Y\": 0.1820015907506381\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3713804139568171,\n          \"Y\": 0.16387822435958885\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40218193859824725,\n          \"Y\": 0.14802015377733915\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43785322848478614,\n          \"Y\": 0.13216418371542726\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47294524222147616,\n          \"Y\": 0.11618104863376423\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5068066934784046,\n          \"Y\": 0.09770113149698681\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5436733468243418,\n          \"Y\": 0.07706202057035039\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5835526093764752,\n          \"Y\": 0.05678556957751198\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6220981589125236,\n          \"Y\": 0.03729891891765083\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.656181308034505,\n          \"Y\": 0.020675885220531258\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6852216663618013,\n          \"Y\": 0.003955146350262749\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3419467973814976,\n          \"Y\": 0.1820015907506381\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3713804139568171,\n          \"Y\": 0.16387822435958885\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40218193859824725,\n          \"Y\": 0.14802015377733915\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43785322848478614,\n          \"Y\": 0.13216418371542726\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47294524222147616,\n          \"Y\": 0.11618104863376423\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5068066934784046,\n          \"Y\": 0.09770113149698681\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5436733468243418,\n          \"Y\": 0.07706202057035039\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5835526093764752,\n          \"Y\": 0.05678556957751198\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6220981589125236,\n          \"Y\": 0.03729891891765083\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.656181308034505,\n          \"Y\": 0.020675885220531258\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6852216663618013,\n          \"Y\": 0.003955146350262749\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3419467973814976,\n          \"Y\": 0.1820015907506381\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3713804139568171,\n          \"Y\": 0.16387822435958885\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40218193859824725,\n          \"Y\": 0.14802015377733915\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43785322848478614,\n          \"Y\": 0.13216418371542726\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.476151183390649,\n          \"Y\": 0.11321114136223365\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5153314981249475,\n          \"Y\": 0.09715646588211191\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5538817122471563,\n          \"Y\": 0.08010077673122463\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5978936801002322,\n          \"Y\": 0.06105526143880218\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6467943841292383,\n          \"Y\": 0.045721605122369544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7002333759121572,\n          \"Y\": 0.02933783970983177\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7545409559575499,\n          \"Y\": 0.015026509906687135\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3419467973814976,\n          \"Y\": 0.1820015907506381\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3713804139568171,\n          \"Y\": 0.16387822435958885\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40218193859824725,\n          \"Y\": 0.14802015377733915\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43785322848478614,\n          \"Y\": 0.13216418371542726\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.476151183390649,\n          \"Y\": 0.11321114136223365\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5153314981249475,\n          \"Y\": 0.09715646588211191\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5538817122471563,\n          \"Y\": 0.08010077673122463\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5978936801002322,\n          \"Y\": 0.06105526143880218\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6467943841292383,\n          \"Y\": 0.045721605122369544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7002333759121572,\n          \"Y\": 0.02933783970983177\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7545409559575499,\n          \"Y\": 0.015026509906687135\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2792028284649037,\n          \"Y\": 0.23129325601047276\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31067044314662895,\n          \"Y\": 0.20671471457917712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3419467973814976,\n          \"Y\": 0.1820015907506381\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3713804139568171,\n          \"Y\": 0.16387822435958885\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40218193859824725,\n          \"Y\": 0.14802015377733915\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43785322848478614,\n          \"Y\": 0.13216418371542726\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.476151183390649,\n          \"Y\": 0.11321114136223365\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5153314981249475,\n          \"Y\": 0.09715646588211191\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5538817122471563,\n          \"Y\": 0.08010077673122463\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5978936801002322,\n          \"Y\": 0.06105526143880218\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6467943841292383,\n          \"Y\": 0.045721605122369544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7002333759121572,\n          \"Y\": 0.02933783970983177\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7545409559575499,\n          \"Y\": 0.015026509906687135\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2998988460116584,\n          \"Y\": 0.2001706445609565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3226667075287177,\n          \"Y\": 0.17688660530645267\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34627376278915456,\n          \"Y\": 0.1556572102087902\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3691691168761392,\n          \"Y\": 0.1383536366179508\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39527251322488854,\n          \"Y\": 0.11773796062857746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4190178144978661,\n          \"Y\": 0.10244285269823544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43938812941378375,\n          \"Y\": 0.08709368594846295\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4614002454415714,\n          \"Y\": 0.06813248171592413\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4819985312263175,\n          \"Y\": 0.048667803768636\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009562963052225,\n          \"Y\": 0.03242844509604144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5194763303336528,\n          \"Y\": 0.017097562926434016\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.54121189327279,\n          \"Y\": 0.0017151581055048406\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2998988460116584,\n          \"Y\": 0.2001706445609565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3226667075287177,\n          \"Y\": 0.17688660530645267\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34627376278915456,\n          \"Y\": 0.1556572102087902\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3691691168761392,\n          \"Y\": 0.1383536366179508\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39527251322488854,\n          \"Y\": 0.11773796062857746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4190178144978661,\n          \"Y\": 0.10244285269823544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43938812941378375,\n          \"Y\": 0.08709368594846295\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4614002454415714,\n          \"Y\": 0.06813248171592413\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4819985312263175,\n          \"Y\": 0.048667803768636\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009562963052225,\n          \"Y\": 0.03242844509604144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5194763303336528,\n          \"Y\": 0.017097562926434016\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.54121189327279,\n          \"Y\": 0.0017151581055048406\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2998988460116584,\n          \"Y\": 0.2001706445609565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3226667075287177,\n          \"Y\": 0.17688660530645267\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34627376278915456,\n          \"Y\": 0.1556572102087902\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3691691168761392,\n          \"Y\": 0.1383536366179508\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39527251322488854,\n          \"Y\": 0.11773796062857746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4190178144978661,\n          \"Y\": 0.10244285269823544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43938812941378375,\n          \"Y\": 0.08709368594846295\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4614002454415714,\n          \"Y\": 0.06813248171592413\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4819985312263175,\n          \"Y\": 0.048667803768636\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009562963052225,\n          \"Y\": 0.03242844509604144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5194763303336528,\n          \"Y\": 0.017097562926434016\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.54121189327279,\n          \"Y\": 0.0017151581055048406\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2998988460116584,\n          \"Y\": 0.2001706445609565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3226667075287177,\n          \"Y\": 0.17688660530645267\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34627376278915456,\n          \"Y\": 0.1556572102087902\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3691691168761392,\n          \"Y\": 0.1383536366179508\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39527251322488854,\n          \"Y\": 0.11773796062857746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4190178144978661,\n          \"Y\": 0.10244285269823544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43938812941378375,\n          \"Y\": 0.08709368594846295\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4614002454415714,\n          \"Y\": 0.06813248171592413\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4819985312263175,\n          \"Y\": 0.048667803768636\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009562963052225,\n          \"Y\": 0.03242844509604144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5194763303336528,\n          \"Y\": 0.017097562926434016\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.54121189327279,\n          \"Y\": 0.0017151581055048406\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2998988460116584,\n          \"Y\": 0.2001706445609565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3226667075287177,\n          \"Y\": 0.17688660530645267\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34627376278915456,\n          \"Y\": 0.1556572102087902\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3691691168761392,\n          \"Y\": 0.1383536366179508\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39527251322488854,\n          \"Y\": 0.11773796062857746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4190178144978661,\n          \"Y\": 0.10244285269823544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43938812941378375,\n          \"Y\": 0.08709368594846295\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4614002454415714,\n          \"Y\": 0.06813248171592413\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4819985312263175,\n          \"Y\": 0.048667803768636\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009562963052225,\n          \"Y\": 0.03242844509604144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5209918842493634,\n          \"Y\": 0.01704883201691912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5371293002447183,\n          \"Y\": 0.0006284409238416777\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2998988460116584,\n          \"Y\": 0.2001706445609565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3226667075287177,\n          \"Y\": 0.17688660530645267\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34627376278915456,\n          \"Y\": 0.1556572102087902\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3691691168761392,\n          \"Y\": 0.1383536366179508\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39527251322488854,\n          \"Y\": 0.11773796062857746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4190178144978661,\n          \"Y\": 0.10244285269823544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43938812941378375,\n          \"Y\": 0.08709368594846295\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4614002454415714,\n          \"Y\": 0.06813248171592413\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4819985312263175,\n          \"Y\": 0.048667803768636\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009562963052225,\n          \"Y\": 0.03242844509604144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5209918842493634,\n          \"Y\": 0.01704883201691912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5371293002447183,\n          \"Y\": 0.0006284409238416777\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2998988460116584,\n          \"Y\": 0.2001706445609565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3226667075287177,\n          \"Y\": 0.17688660530645267\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34627376278915456,\n          \"Y\": 0.1556572102087902\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3691691168761392,\n          \"Y\": 0.1383536366179508\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39527251322488854,\n          \"Y\": 0.11773796062857746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4190178144978661,\n          \"Y\": 0.10244285269823544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43938812941378375,\n          \"Y\": 0.08709368594846295\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4614002454415714,\n          \"Y\": 0.06813248171592413\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4819985312263175,\n          \"Y\": 0.048667803768636\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009562963052225,\n          \"Y\": 0.03242844509604144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5209918842493634,\n          \"Y\": 0.01704883201691912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5371293002447183,\n          \"Y\": 0.0006284409238416777\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2998988460116584,\n          \"Y\": 0.2001706445609565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3226667075287177,\n          \"Y\": 0.17688660530645267\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34627376278915456,\n          \"Y\": 0.1556572102087902\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3691691168761392,\n          \"Y\": 0.1383536366179508\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39527251322488854,\n          \"Y\": 0.11773796062857746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4190178144978661,\n          \"Y\": 0.10244285269823544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43938812941378375,\n          \"Y\": 0.08709368594846295\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4614002454415714,\n          \"Y\": 0.06813248171592413\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4819985312263175,\n          \"Y\": 0.048667803768636\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009562963052225,\n          \"Y\": 0.03242844509604144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5209918842493634,\n          \"Y\": 0.01704883201691912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5371293002447183,\n          \"Y\": 0.0006284409238416777\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2998988460116584,\n          \"Y\": 0.2001706445609565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3226667075287177,\n          \"Y\": 0.17688660530645267\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34627376278915456,\n          \"Y\": 0.1556572102087902\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3691691168761392,\n          \"Y\": 0.1383536366179508\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39527251322488854,\n          \"Y\": 0.11773796062857746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4190178144978661,\n          \"Y\": 0.10244285269823544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43938812941378375,\n          \"Y\": 0.08709368594846295\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4614002454415714,\n          \"Y\": 0.06813248171592413\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4819985312263175,\n          \"Y\": 0.048667803768636\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009562963052225,\n          \"Y\": 0.03242844509604144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5209918842493634,\n          \"Y\": 0.01704883201691912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5371293002447183,\n          \"Y\": 0.0006284409238416777\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2998988460116584,\n          \"Y\": 0.2001706445609565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3226667075287177,\n          \"Y\": 0.17688660530645267\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34627376278915456,\n          \"Y\": 0.1556572102087902\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3691691168761392,\n          \"Y\": 0.1383536366179508\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39527251322488854,\n          \"Y\": 0.11773796062857746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4190178144978661,\n          \"Y\": 0.10244285269823544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43938812941378375,\n          \"Y\": 0.08709368594846295\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4614002454415714,\n          \"Y\": 0.06813248171592413\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4819985312263175,\n          \"Y\": 0.048667803768636\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009562963052225,\n          \"Y\": 0.03242844509604144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5209918842493634,\n          \"Y\": 0.01704883201691912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5371293002447183,\n          \"Y\": 0.0006284409238416777\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2998988460116584,\n          \"Y\": 0.2001706445609565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3226667075287177,\n          \"Y\": 0.17688660530645267\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34627376278915456,\n          \"Y\": 0.1556572102087902\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3691691168761392,\n          \"Y\": 0.1383536366179508\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39527251322488854,\n          \"Y\": 0.11773796062857746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4190178144978661,\n          \"Y\": 0.10244285269823544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43938812941378375,\n          \"Y\": 0.08709368594846295\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4614002454415714,\n          \"Y\": 0.06813248171592413\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4819985312263175,\n          \"Y\": 0.048667803768636\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009562963052225,\n          \"Y\": 0.03242844509604144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5209918842493634,\n          \"Y\": 0.01704883201691912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5373099601982263,\n          \"Y\": 0.003009552303436719\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2998988460116584,\n          \"Y\": 0.2001706445609565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3226667075287177,\n          \"Y\": 0.17688660530645267\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34627376278915456,\n          \"Y\": 0.1556572102087902\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3691691168761392,\n          \"Y\": 0.1383536366179508\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39527251322488854,\n          \"Y\": 0.11773796062857746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4190178144978661,\n          \"Y\": 0.10244285269823544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43938812941378375,\n          \"Y\": 0.08709368594846295\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4614002454415714,\n          \"Y\": 0.06813248171592413\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4819985312263175,\n          \"Y\": 0.048667803768636\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009562963052225,\n          \"Y\": 0.03242844509604144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5209918842493634,\n          \"Y\": 0.01704883201691912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5373099601982263,\n          \"Y\": 0.003009552303436719\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2998988460116584,\n          \"Y\": 0.2001706445609565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3226667075287177,\n          \"Y\": 0.17688660530645267\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34627376278915456,\n          \"Y\": 0.1556572102087902\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3691691168761392,\n          \"Y\": 0.1383536366179508\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39527251322488854,\n          \"Y\": 0.11773796062857746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4190178144978661,\n          \"Y\": 0.10244285269823544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43938812941378375,\n          \"Y\": 0.08709368594846295\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4614002454415714,\n          \"Y\": 0.06813248171592413\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4819985312263175,\n          \"Y\": 0.048667803768636\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009562963052225,\n          \"Y\": 0.03242844509604144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5209918842493634,\n          \"Y\": 0.01704883201691912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5373099601982263,\n          \"Y\": 0.003009552303436719\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2998988460116584,\n          \"Y\": 0.2001706445609565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3226667075287177,\n          \"Y\": 0.17688660530645267\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34627376278915456,\n          \"Y\": 0.1556572102087902\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3691691168761392,\n          \"Y\": 0.1383536366179508\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39527251322488854,\n          \"Y\": 0.11773796062857746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4190178144978661,\n          \"Y\": 0.10244285269823544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43938812941378375,\n          \"Y\": 0.08709368594846295\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4614002454415714,\n          \"Y\": 0.06813248171592413\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4819985312263175,\n          \"Y\": 0.048667803768636\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009562963052225,\n          \"Y\": 0.03242844509604144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5209918842493634,\n          \"Y\": 0.01704883201691912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5394968597247236,\n          \"Y\": 0.0017290815776572054\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2998988460116584,\n          \"Y\": 0.2001706445609565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3226667075287177,\n          \"Y\": 0.17688660530645267\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34627376278915456,\n          \"Y\": 0.1556572102087902\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3691691168761392,\n          \"Y\": 0.1383536366179508\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39527251322488854,\n          \"Y\": 0.11773796062857746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4190178144978661,\n          \"Y\": 0.10244285269823544\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43938812941378375,\n          \"Y\": 0.08709368594846295\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4614002454415714,\n          \"Y\": 0.06813248171592413\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4819985312263175,\n          \"Y\": 0.048667803768636\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5009562963052225,\n          \"Y\": 0.03242844509604144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5209918842493634,\n          \"Y\": 0.01704883201691912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5394968597247236,\n          \"Y\": 0.0017290815776572054\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2998988460116584,\n          \"Y\": 0.2001706445609565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3226667075287177,\n          \"Y\": 0.17688660530645267\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34627376278915456,\n          \"Y\": 0.1556572102087902\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3691691168761392,\n          \"Y\": 0.1383536366179508\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39255235704970204,\n          \"Y\": 0.11885713911515158\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4165548074960653,\n          \"Y\": 0.10012401660646739\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43860652309292497,\n          \"Y\": 0.08373322746420633\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4584304660814772,\n          \"Y\": 0.0670386548254166\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4781069424974416,\n          \"Y\": 0.04925746861639335\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5000863360827517,\n          \"Y\": 0.034862502335241116\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5179401576662823,\n          \"Y\": 0.0187401653369316\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5387734050433184,\n          \"Y\": 0.0001721262217898832\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2998988460116584,\n          \"Y\": 0.2001706445609565\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3226667075287177,\n          \"Y\": 0.17688660530645267\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.34627376278915456,\n          \"Y\": 0.1556572102087902\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3691691168761392,\n          \"Y\": 0.1383536366179508\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39255235704970204,\n          \"Y\": 0.11885713911515158\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4165548074960653,\n          \"Y\": 0.10012401660646739\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43860652309292497,\n          \"Y\": 0.08373322746420633\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4584304660814772,\n          \"Y\": 0.0670386548254166\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4781069424974416,\n          \"Y\": 0.04925746861639335\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5000863360827517,\n          \"Y\": 0.034862502335241116\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5179401576662823,\n          \"Y\": 0.0187401653369316\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5387734050433184,\n          \"Y\": 0.0001721262217898832\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3014433759410433,\n          \"Y\": 0.2018309918003907\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3267021865145535,\n          \"Y\": 0.17634166401071308\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3428860173228706,\n          \"Y\": 0.15515881281904498\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3577224922700596,\n          \"Y\": 0.13249517286182802\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.37254554564898534,\n          \"Y\": 0.1120957105880586\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.384716039542933,\n          \"Y\": 0.09248033722769283\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39637263471680767,\n          \"Y\": 0.07720785227164881\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40625278670593457,\n          \"Y\": 0.060356925648269055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4191801766937926,\n          \"Y\": 0.04577491558643439\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.430963776903801,\n          \"Y\": 0.02864993838754987\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44290912716013786,\n          \"Y\": 0.014830889886285533\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45688536465237234,\n          \"Y\": 0.004972459439000463\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3014433759410433,\n          \"Y\": 0.2018309918003907\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3267021865145535,\n          \"Y\": 0.17634166401071308\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3428860173228706,\n          \"Y\": 0.15515881281904498\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3577224922700596,\n          \"Y\": 0.13249517286182802\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.37254554564898534,\n          \"Y\": 0.1120957105880586\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.384716039542933,\n          \"Y\": 0.09248033722769283\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39637263471680767,\n          \"Y\": 0.07720785227164881\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40625278670593457,\n          \"Y\": 0.060356925648269055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4191801766937926,\n          \"Y\": 0.04577491558643439\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.430963776903801,\n          \"Y\": 0.02864993838754987\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44290912716013786,\n          \"Y\": 0.014830889886285533\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45688536465237234,\n          \"Y\": 0.004972459439000463\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3014433759410433,\n          \"Y\": 0.2018309918003907\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3267021865145535,\n          \"Y\": 0.17634166401071308\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3428860173228706,\n          \"Y\": 0.15515881281904498\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3577224922700596,\n          \"Y\": 0.13249517286182802\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.37254554564898534,\n          \"Y\": 0.1120957105880586\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.384716039542933,\n          \"Y\": 0.09248033722769283\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39637263471680767,\n          \"Y\": 0.07720785227164881\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40625278670593457,\n          \"Y\": 0.060356925648269055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4191801766937926,\n          \"Y\": 0.04577491558643439\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.430963776903801,\n          \"Y\": 0.02864993838754987\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44290912716013786,\n          \"Y\": 0.014830889886285533\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45688536465237234,\n          \"Y\": 0.004972459439000463\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3014433759410433,\n          \"Y\": 0.2018309918003907\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3267021865145535,\n          \"Y\": 0.17634166401071308\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3428860173228706,\n          \"Y\": 0.15515881281904498\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3577224922700596,\n          \"Y\": 0.13249517286182802\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.37254554564898534,\n          \"Y\": 0.1120957105880586\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.384716039542933,\n          \"Y\": 0.09248033722769283\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39637263471680767,\n          \"Y\": 0.07720785227164881\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40625278670593457,\n          \"Y\": 0.060356925648269055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4191801766937926,\n          \"Y\": 0.04577491558643439\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.430963776903801,\n          \"Y\": 0.02864993838754987\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44290912716013786,\n          \"Y\": 0.014830889886285533\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45688536465237234,\n          \"Y\": 0.004972459439000463\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3014433759410433,\n          \"Y\": 0.2018309918003907\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3267021865145535,\n          \"Y\": 0.17634166401071308\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3428860173228706,\n          \"Y\": 0.15515881281904498\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3577224922700596,\n          \"Y\": 0.13249517286182802\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.37254554564898534,\n          \"Y\": 0.1120957105880586\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.384716039542933,\n          \"Y\": 0.09248033722769283\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39637263471680767,\n          \"Y\": 0.07720785227164881\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40625278670593457,\n          \"Y\": 0.060356925648269055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4191801766937926,\n          \"Y\": 0.04577491558643439\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.430963776903801,\n          \"Y\": 0.02864993838754987\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44290912716013786,\n          \"Y\": 0.014830889886285533\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45688536465237234,\n          \"Y\": 0.004972459439000463\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3014433759410433,\n          \"Y\": 0.2018309918003907\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3267021865145535,\n          \"Y\": 0.17634166401071308\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3428860173228706,\n          \"Y\": 0.15515881281904498\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3577224922700596,\n          \"Y\": 0.13249517286182802\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.37254554564898534,\n          \"Y\": 0.1120957105880586\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.384716039542933,\n          \"Y\": 0.09248033722769283\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39637263471680767,\n          \"Y\": 0.07720785227164881\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40625278670593457,\n          \"Y\": 0.060356925648269055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4191801766937926,\n          \"Y\": 0.04577491558643439\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.430963776903801,\n          \"Y\": 0.02864993838754987\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44290912716013786,\n          \"Y\": 0.014830889886285533\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45688536465237234,\n          \"Y\": 0.004972459439000463\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3014433759410433,\n          \"Y\": 0.2018309918003907\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3267021865145535,\n          \"Y\": 0.17634166401071308\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3428860173228706,\n          \"Y\": 0.15515881281904498\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3577224922700596,\n          \"Y\": 0.13249517286182802\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.37254554564898534,\n          \"Y\": 0.1120957105880586\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.384716039542933,\n          \"Y\": 0.09248033722769283\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39637263471680767,\n          \"Y\": 0.07720785227164881\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40625278670593457,\n          \"Y\": 0.060356925648269055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4191801766937926,\n          \"Y\": 0.04577491558643439\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.430963776903801,\n          \"Y\": 0.02864993838754987\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44290912716013786,\n          \"Y\": 0.014830889886285533\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45688536465237234,\n          \"Y\": 0.004972459439000463\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3014433759410433,\n          \"Y\": 0.2018309918003907\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3267021865145535,\n          \"Y\": 0.17634166401071308\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3428860173228706,\n          \"Y\": 0.15515881281904498\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3577224922700596,\n          \"Y\": 0.13249517286182802\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.37254554564898534,\n          \"Y\": 0.1120957105880586\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.384716039542933,\n          \"Y\": 0.09248033722769283\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39637263471680767,\n          \"Y\": 0.07720785227164881\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40625278670593457,\n          \"Y\": 0.060356925648269055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4191801766937926,\n          \"Y\": 0.04577491558643439\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.430963776903801,\n          \"Y\": 0.02864993838754987\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.44290912716013786,\n          \"Y\": 0.014830889886285533\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.45688536465237234,\n          \"Y\": 0.004972459439000463\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3014433759410433,\n          \"Y\": 0.2018309918003907\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3267021865145535,\n          \"Y\": 0.17634166401071308\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3428860173228706,\n          \"Y\": 0.15515881281904498\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3577224922700596,\n          \"Y\": 0.13249517286182802\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.37254554564898534,\n          \"Y\": 0.1120957105880586\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.384716039542933,\n          \"Y\": 0.09248033722769283\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39637263471680767,\n          \"Y\": 0.07720785227164881\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40625278670593457,\n          \"Y\": 0.060356925648269055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4191801766937926,\n          \"Y\": 0.04577491558643439\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.430963776903801,\n          \"Y\": 0.02864993838754987\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4428669458278141,\n          \"Y\": 0.011127313331630515\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46029093028383206,\n          \"Y\": 0.00043301488999437227\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.24784520708305846,\n          \"Y\": 0.25618837319980126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.274785990313542,\n          \"Y\": 0.22731348972380414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3014433759410433,\n          \"Y\": 0.2018309918003907\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3267021865145535,\n          \"Y\": 0.17634166401071308\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3428860173228706,\n          \"Y\": 0.15515881281904498\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3577224922700596,\n          \"Y\": 0.13249517286182802\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.37254554564898534,\n          \"Y\": 0.1120957105880586\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.384716039542933,\n          \"Y\": 0.09248033722769283\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.39637263471680767,\n          \"Y\": 0.07720785227164881\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40625278670593457,\n          \"Y\": 0.060356925648269055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4191801766937926,\n          \"Y\": 0.04577491558643439\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.430963776903801,\n          \"Y\": 0.02864993838754987\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4428669458278141,\n          \"Y\": 0.011127313331630515\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46029093028383206,\n          \"Y\": 0.00043301488999437227\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28604713275182275,\n          \"Y\": 0.2370240911764912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3234113043396357,\n          \"Y\": 0.21473896068229345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36004916499749484,\n          \"Y\": 0.19308319487910808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.396387489516233,\n          \"Y\": 0.17631333678545638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4309246754539237,\n          \"Y\": 0.16033646676681154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4665747749954334,\n          \"Y\": 0.14626315402252738\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5075227355985902,\n          \"Y\": 0.12910653915020032\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5448800769633616,\n          \"Y\": 0.10726854636275815\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5808653262896497,\n          \"Y\": 0.08449838452347357\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6170106651128199,\n          \"Y\": 0.06649805685084739\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6554601343951676,\n          \"Y\": 0.04551892273729057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6982710026880471,\n          \"Y\": 0.026818231485974904\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7417008274819702,\n          \"Y\": 0.0034970780008706064\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28604713275182275,\n          \"Y\": 0.2370240911764912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3234113043396357,\n          \"Y\": 0.21473896068229345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36004916499749484,\n          \"Y\": 0.19308319487910808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.396387489516233,\n          \"Y\": 0.17631333678545638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4309246754539237,\n          \"Y\": 0.16033646676681154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4665747749954334,\n          \"Y\": 0.14626315402252738\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5075227355985902,\n          \"Y\": 0.12910653915020032\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5448800769633616,\n          \"Y\": 0.10726854636275815\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5808653262896497,\n          \"Y\": 0.08449838452347357\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6170106651128199,\n          \"Y\": 0.06649805685084739\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6554601343951676,\n          \"Y\": 0.04551892273729057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6982710026880471,\n          \"Y\": 0.026818231485974904\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7417008274819702,\n          \"Y\": 0.0034970780008706064\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28604713275182275,\n          \"Y\": 0.2370240911764912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3234113043396357,\n          \"Y\": 0.21473896068229345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36004916499749484,\n          \"Y\": 0.19308319487910808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.396387489516233,\n          \"Y\": 0.17631333678545638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4309246754539237,\n          \"Y\": 0.16033646676681154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4665747749954334,\n          \"Y\": 0.14626315402252738\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5075227355985902,\n          \"Y\": 0.12910653915020032\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5448800769633616,\n          \"Y\": 0.10726854636275815\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5808653262896497,\n          \"Y\": 0.08449838452347357\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6170106651128199,\n          \"Y\": 0.06649805685084739\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6554601343951676,\n          \"Y\": 0.04551892273729057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6982710026880471,\n          \"Y\": 0.026818231485974904\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7417008274819702,\n          \"Y\": 0.0034970780008706064\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28604713275182275,\n          \"Y\": 0.2370240911764912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3234113043396357,\n          \"Y\": 0.21473896068229345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36004916499749484,\n          \"Y\": 0.19308319487910808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.396387489516233,\n          \"Y\": 0.17631333678545638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4309246754539237,\n          \"Y\": 0.16033646676681154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4665747749954334,\n          \"Y\": 0.14626315402252738\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5075227355985902,\n          \"Y\": 0.12910653915020032\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5448800769633616,\n          \"Y\": 0.10726854636275815\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5808653262896497,\n          \"Y\": 0.08449838452347357\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6170106651128199,\n          \"Y\": 0.06649805685084739\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6554601343951676,\n          \"Y\": 0.04551892273729057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6982710026880471,\n          \"Y\": 0.026818231485974904\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7417008274819702,\n          \"Y\": 0.0034970780008706064\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28604713275182275,\n          \"Y\": 0.2370240911764912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3234113043396357,\n          \"Y\": 0.21473896068229345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36004916499749484,\n          \"Y\": 0.19308319487910808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.396387489516233,\n          \"Y\": 0.17631333678545638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4309246754539237,\n          \"Y\": 0.16033646676681154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4665747749954334,\n          \"Y\": 0.14626315402252738\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5075227355985902,\n          \"Y\": 0.12910653915020032\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5448800769633616,\n          \"Y\": 0.10726854636275815\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5808653262896497,\n          \"Y\": 0.08449838452347357\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6170106651128199,\n          \"Y\": 0.06649805685084739\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6554601343951676,\n          \"Y\": 0.04551892273729057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6982710026880471,\n          \"Y\": 0.026818231485974904\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7417008274819702,\n          \"Y\": 0.0034970780008706064\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28604713275182275,\n          \"Y\": 0.2370240911764912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3234113043396357,\n          \"Y\": 0.21473896068229345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36004916499749484,\n          \"Y\": 0.19308319487910808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.396387489516233,\n          \"Y\": 0.17631333678545638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4309246754539237,\n          \"Y\": 0.16033646676681154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4665747749954334,\n          \"Y\": 0.14626315402252738\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5075227355985902,\n          \"Y\": 0.12910653915020032\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5448800769633616,\n          \"Y\": 0.10726854636275815\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5808653262896497,\n          \"Y\": 0.08449838452347357\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6170106651128199,\n          \"Y\": 0.06649805685084739\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6554601343951676,\n          \"Y\": 0.04551892273729057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6982710026880471,\n          \"Y\": 0.026818231485974904\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7417008274819702,\n          \"Y\": 0.0034970780008706064\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28604713275182275,\n          \"Y\": 0.2370240911764912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3234113043396357,\n          \"Y\": 0.21473896068229345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36004916499749484,\n          \"Y\": 0.19308319487910808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.396387489516233,\n          \"Y\": 0.17631333678545638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4309246754539237,\n          \"Y\": 0.16033646676681154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4665747749954334,\n          \"Y\": 0.14626315402252738\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5075227355985902,\n          \"Y\": 0.12910653915020032\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5448800769633616,\n          \"Y\": 0.10726854636275815\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5808653262896497,\n          \"Y\": 0.08449838452347357\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6170106651128199,\n          \"Y\": 0.06649805685084739\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6554601343951676,\n          \"Y\": 0.04551892273729057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6887874241714173,\n          \"Y\": 0.023591821478897834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7210839397589422,\n          \"Y\": 0.005520746600371489\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28604713275182275,\n          \"Y\": 0.2370240911764912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3234113043396357,\n          \"Y\": 0.21473896068229345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36004916499749484,\n          \"Y\": 0.19308319487910808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.396387489516233,\n          \"Y\": 0.17631333678545638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4309246754539237,\n          \"Y\": 0.16033646676681154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4665747749954334,\n          \"Y\": 0.14626315402252738\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5075227355985902,\n          \"Y\": 0.12910653915020032\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5448800769633616,\n          \"Y\": 0.10726854636275815\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5808653262896497,\n          \"Y\": 0.08449838452347357\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6170106651128199,\n          \"Y\": 0.06649805685084739\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6554601343951676,\n          \"Y\": 0.04551892273729057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6887874241714173,\n          \"Y\": 0.023591821478897834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7210839397589422,\n          \"Y\": 0.005520746600371489\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28604713275182275,\n          \"Y\": 0.2370240911764912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3234113043396357,\n          \"Y\": 0.21473896068229345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36004916499749484,\n          \"Y\": 0.19308319487910808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.396387489516233,\n          \"Y\": 0.17631333678545638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4309246754539237,\n          \"Y\": 0.16033646676681154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4665747749954334,\n          \"Y\": 0.14626315402252738\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5075227355985902,\n          \"Y\": 0.12910653915020032\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5448800769633616,\n          \"Y\": 0.10726854636275815\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5808653262896497,\n          \"Y\": 0.08449838452347357\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6170106651128199,\n          \"Y\": 0.06649805685084739\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6554601343951676,\n          \"Y\": 0.04551892273729057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6887874241714173,\n          \"Y\": 0.023591821478897834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7210839397589422,\n          \"Y\": 0.005520746600371489\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28604713275182275,\n          \"Y\": 0.2370240911764912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3234113043396357,\n          \"Y\": 0.21473896068229345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36004916499749484,\n          \"Y\": 0.19308319487910808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.396387489516233,\n          \"Y\": 0.17631333678545638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4309246754539237,\n          \"Y\": 0.16033646676681154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4665747749954334,\n          \"Y\": 0.14626315402252738\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5075227355985902,\n          \"Y\": 0.12910653915020032\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5448800769633616,\n          \"Y\": 0.10726854636275815\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5808653262896497,\n          \"Y\": 0.08449838452347357\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6170106651128199,\n          \"Y\": 0.06649805685084739\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6554601343951676,\n          \"Y\": 0.04551892273729057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6887874241714173,\n          \"Y\": 0.023591821478897834\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7210839397589422,\n          \"Y\": 0.005520746600371489\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28604713275182275,\n          \"Y\": 0.2370240911764912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3234113043396357,\n          \"Y\": 0.21473896068229345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36004916499749484,\n          \"Y\": 0.19308319487910808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.396387489516233,\n          \"Y\": 0.17631333678545638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4309246754539237,\n          \"Y\": 0.16033646676681154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4665747749954334,\n          \"Y\": 0.14626315402252738\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5075227355985902,\n          \"Y\": 0.12910653915020032\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5448800769633616,\n          \"Y\": 0.10726854636275815\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5808653262896497,\n          \"Y\": 0.08449838452347357\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6170106651128199,\n          \"Y\": 0.06649805685084739\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6554601343951676,\n          \"Y\": 0.04551892273729057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6956486618833144,\n          \"Y\": 0.02502516421295808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7361595495302435,\n          \"Y\": 0.0037575930738195026\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28604713275182275,\n          \"Y\": 0.2370240911764912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3234113043396357,\n          \"Y\": 0.21473896068229345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36004916499749484,\n          \"Y\": 0.19308319487910808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.396387489516233,\n          \"Y\": 0.17631333678545638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4309246754539237,\n          \"Y\": 0.16033646676681154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4665747749954334,\n          \"Y\": 0.14626315402252738\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5075227355985902,\n          \"Y\": 0.12910653915020032\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5448800769633616,\n          \"Y\": 0.10726854636275815\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5808653262896497,\n          \"Y\": 0.08449838452347357\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6170106651128199,\n          \"Y\": 0.06649805685084739\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6554601343951676,\n          \"Y\": 0.04551892273729057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6956486618833144,\n          \"Y\": 0.02502516421295808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7361595495302435,\n          \"Y\": 0.0037575930738195026\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28604713275182275,\n          \"Y\": 0.2370240911764912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3234113043396357,\n          \"Y\": 0.21473896068229345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36004916499749484,\n          \"Y\": 0.19308319487910808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.396387489516233,\n          \"Y\": 0.17631333678545638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4309246754539237,\n          \"Y\": 0.16033646676681154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4665747749954334,\n          \"Y\": 0.14626315402252738\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5075227355985902,\n          \"Y\": 0.12910653915020032\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5448800769633616,\n          \"Y\": 0.10726854636275815\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5808653262896497,\n          \"Y\": 0.08449838452347357\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6170106651128199,\n          \"Y\": 0.06649805685084739\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6554601343951676,\n          \"Y\": 0.04551892273729057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6956486618833144,\n          \"Y\": 0.02502516421295808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7361595495302435,\n          \"Y\": 0.0037575930738195026\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28604713275182275,\n          \"Y\": 0.2370240911764912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3234113043396357,\n          \"Y\": 0.21473896068229345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36004916499749484,\n          \"Y\": 0.19308319487910808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.396387489516233,\n          \"Y\": 0.17631333678545638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4309246754539237,\n          \"Y\": 0.16033646676681154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4665747749954334,\n          \"Y\": 0.14626315402252738\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5075227355985902,\n          \"Y\": 0.12910653915020032\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5448800769633616,\n          \"Y\": 0.10726854636275815\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5808653262896497,\n          \"Y\": 0.08449838452347357\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6170106651128199,\n          \"Y\": 0.06649805685084739\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6554601343951676,\n          \"Y\": 0.04551892273729057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6956486618833144,\n          \"Y\": 0.02502516421295808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7361595495302435,\n          \"Y\": 0.0037575930738195026\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28604713275182275,\n          \"Y\": 0.2370240911764912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3234113043396357,\n          \"Y\": 0.21473896068229345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36004916499749484,\n          \"Y\": 0.19308319487910808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.396387489516233,\n          \"Y\": 0.17631333678545638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4309246754539237,\n          \"Y\": 0.16033646676681154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4665747749954334,\n          \"Y\": 0.14626315402252738\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5075227355985902,\n          \"Y\": 0.12910653915020032\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5448800769633616,\n          \"Y\": 0.10726854636275815\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5808653262896497,\n          \"Y\": 0.08449838452347357\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6170106651128199,\n          \"Y\": 0.06649805685084739\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6554601343951676,\n          \"Y\": 0.04551892273729057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6956486618833144,\n          \"Y\": 0.02502516421295808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7361595495302435,\n          \"Y\": 0.0037575930738195026\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28604713275182275,\n          \"Y\": 0.2370240911764912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3234113043396357,\n          \"Y\": 0.21473896068229345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36004916499749484,\n          \"Y\": 0.19308319487910808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.396387489516233,\n          \"Y\": 0.17631333678545638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4309246754539237,\n          \"Y\": 0.16033646676681154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4665747749954334,\n          \"Y\": 0.14626315402252738\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5075227355985902,\n          \"Y\": 0.12910653915020032\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5448800769633616,\n          \"Y\": 0.10726854636275815\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5808653262896497,\n          \"Y\": 0.08449838452347357\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6170106651128199,\n          \"Y\": 0.06649805685084739\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6554601343951676,\n          \"Y\": 0.04551892273729057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6956486618833144,\n          \"Y\": 0.02502516421295808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7361595495302435,\n          \"Y\": 0.0037575930738195026\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28604713275182275,\n          \"Y\": 0.2370240911764912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3234113043396357,\n          \"Y\": 0.21473896068229345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36004916499749484,\n          \"Y\": 0.19308319487910808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.396387489516233,\n          \"Y\": 0.17631333678545638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4309246754539237,\n          \"Y\": 0.16033646676681154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4665747749954334,\n          \"Y\": 0.14626315402252738\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5075227355985902,\n          \"Y\": 0.12910653915020032\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5448800769633616,\n          \"Y\": 0.10726854636275815\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5808653262896497,\n          \"Y\": 0.08449838452347357\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6170106651128199,\n          \"Y\": 0.06649805685084739\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6554601343951676,\n          \"Y\": 0.04551892273729057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6956486618833144,\n          \"Y\": 0.02502516421295808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7361595495302435,\n          \"Y\": 0.0037575930738195026\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28604713275182275,\n          \"Y\": 0.2370240911764912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3234113043396357,\n          \"Y\": 0.21473896068229345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36004916499749484,\n          \"Y\": 0.19308319487910808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.396387489516233,\n          \"Y\": 0.17631333678545638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4309246754539237,\n          \"Y\": 0.16033646676681154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4665747749954334,\n          \"Y\": 0.14626315402252738\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5075227355985902,\n          \"Y\": 0.12910653915020032\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5448800769633616,\n          \"Y\": 0.10726854636275815\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5808653262896497,\n          \"Y\": 0.08449838452347357\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6170106651128199,\n          \"Y\": 0.06649805685084739\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6554601343951676,\n          \"Y\": 0.04551892273729057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6956486618833144,\n          \"Y\": 0.02502516421295808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7333448337808445,\n          \"Y\": 0.006967699727372403\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28604713275182275,\n          \"Y\": 0.2370240911764912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3234113043396357,\n          \"Y\": 0.21473896068229345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36004916499749484,\n          \"Y\": 0.19308319487910808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.396387489516233,\n          \"Y\": 0.17631333678545638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4309246754539237,\n          \"Y\": 0.16033646676681154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4665747749954334,\n          \"Y\": 0.14626315402252738\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5075227355985902,\n          \"Y\": 0.12910653915020032\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5448800769633616,\n          \"Y\": 0.10726854636275815\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5808653262896497,\n          \"Y\": 0.08449838452347357\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6170106651128199,\n          \"Y\": 0.06649805685084739\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6554601343951676,\n          \"Y\": 0.04551892273729057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6956486618833144,\n          \"Y\": 0.02502516421295808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7333448337808445,\n          \"Y\": 0.006967699727372403\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28604713275182275,\n          \"Y\": 0.2370240911764912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3234113043396357,\n          \"Y\": 0.21473896068229345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36004916499749484,\n          \"Y\": 0.19308319487910808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.396387489516233,\n          \"Y\": 0.17631333678545638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4309246754539237,\n          \"Y\": 0.16033646676681154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4665747749954334,\n          \"Y\": 0.14626315402252738\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5075227355985902,\n          \"Y\": 0.12910653915020032\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5448800769633616,\n          \"Y\": 0.10726854636275815\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5808653262896497,\n          \"Y\": 0.08449838452347357\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6170106651128199,\n          \"Y\": 0.06649805685084739\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6554601343951676,\n          \"Y\": 0.04551892273729057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6956486618833144,\n          \"Y\": 0.02502516421295808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7333448337808445,\n          \"Y\": 0.006967699727372403\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28604713275182275,\n          \"Y\": 0.2370240911764912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3234113043396357,\n          \"Y\": 0.21473896068229345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.36004916499749484,\n          \"Y\": 0.19308319487910808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.396387489516233,\n          \"Y\": 0.17631333678545638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4309246754539237,\n          \"Y\": 0.16033646676681154\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4665747749954334,\n          \"Y\": 0.14626315402252738\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5075227355985902,\n          \"Y\": 0.12910653915020032\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5448800769633616,\n          \"Y\": 0.10726854636275815\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5808653262896497,\n          \"Y\": 0.08449838452347357\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6170106651128199,\n          \"Y\": 0.06649805685084739\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6554601343951676,\n          \"Y\": 0.04551892273729057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6956486618833144,\n          \"Y\": 0.02502516421295808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7333448337808445,\n          \"Y\": 0.006967699727372403\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5702660437595304,\n          \"Y\": 0.08157170202677755\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6064287845870358,\n          \"Y\": 0.06391686916007347\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6403558844097974,\n          \"Y\": 0.04511090676027414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6791069170320125,\n          \"Y\": 0.02364673331820956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7214472789708484,\n          \"Y\": 0.0011167267298162198\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5702660437595304,\n          \"Y\": 0.08157170202677755\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6064287845870358,\n          \"Y\": 0.06391686916007347\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6403558844097974,\n          \"Y\": 0.04511090676027414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6791069170320125,\n          \"Y\": 0.02364673331820956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7214472789708484,\n          \"Y\": 0.0011167267298162198\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5702660437595304,\n          \"Y\": 0.08157170202677755\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6064287845870358,\n          \"Y\": 0.06391686916007347\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6403558844097974,\n          \"Y\": 0.04511090676027414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6791069170320125,\n          \"Y\": 0.02364673331820956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7214472789708484,\n          \"Y\": 0.0011167267298162198\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5702660437595304,\n          \"Y\": 0.08157170202677755\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6064287845870358,\n          \"Y\": 0.06391686916007347\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6403558844097974,\n          \"Y\": 0.04511090676027414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6791069170320125,\n          \"Y\": 0.02364673331820956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7214472789708484,\n          \"Y\": 0.0011167267298162198\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5702660437595304,\n          \"Y\": 0.08157170202677755\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6064287845870358,\n          \"Y\": 0.06391686916007347\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6403558844097974,\n          \"Y\": 0.04511090676027414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6791069170320125,\n          \"Y\": 0.02364673331820956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.7214472789708484,\n          \"Y\": 0.0011167267298162198\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5708803142128502,\n          \"Y\": 0.07961095708327097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6053027595345777,\n          \"Y\": 0.06321349120342193\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6336672440490879,\n          \"Y\": 0.046269816175405126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6603830318184294,\n          \"Y\": 0.025726396340543342\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.685121257463999,\n          \"Y\": 0.0035077130384635474\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5708803142128502,\n          \"Y\": 0.07961095708327097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6053027595345777,\n          \"Y\": 0.06321349120342193\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6336672440490879,\n          \"Y\": 0.046269816175405126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6603830318184294,\n          \"Y\": 0.025726396340543342\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.685121257463999,\n          \"Y\": 0.0035077130384635474\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5708803142128502,\n          \"Y\": 0.07961095708327097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6053027595345777,\n          \"Y\": 0.06321349120342193\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6336672440490879,\n          \"Y\": 0.046269816175405126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6603830318184294,\n          \"Y\": 0.025726396340543342\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.685121257463999,\n          \"Y\": 0.0035077130384635474\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5708803142128502,\n          \"Y\": 0.07961095708327097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6053027595345777,\n          \"Y\": 0.06321349120342193\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6336672440490879,\n          \"Y\": 0.046269816175405126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6603830318184294,\n          \"Y\": 0.025726396340543342\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.685121257463999,\n          \"Y\": 0.0035077130384635474\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5708803142128502,\n          \"Y\": 0.07961095708327097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6053027595345777,\n          \"Y\": 0.06321349120342193\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6336672440490879,\n          \"Y\": 0.046269816175405126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6603830318184294,\n          \"Y\": 0.025726396340543342\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.685121257463999,\n          \"Y\": 0.0035077130384635474\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5708803142128502,\n          \"Y\": 0.07961095708327097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6053027595345777,\n          \"Y\": 0.06321349120342193\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6336672440490879,\n          \"Y\": 0.046269816175405126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6603830318184294,\n          \"Y\": 0.025726396340543342\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6863205629512481,\n          \"Y\": 0.005165502724970121\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5708803142128502,\n          \"Y\": 0.07961095708327097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6053027595345777,\n          \"Y\": 0.06321349120342193\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6336672440490879,\n          \"Y\": 0.046269816175405126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6603830318184294,\n          \"Y\": 0.025726396340543342\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6863205629512481,\n          \"Y\": 0.005165502724970121\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5708803142128502,\n          \"Y\": 0.07961095708327097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6053027595345777,\n          \"Y\": 0.06321349120342193\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6336672440490879,\n          \"Y\": 0.046269816175405126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6603830318184294,\n          \"Y\": 0.025726396340543342\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6863205629512481,\n          \"Y\": 0.005165502724970121\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5708803142128502,\n          \"Y\": 0.07961095708327097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6053027595345777,\n          \"Y\": 0.06321349120342193\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6336672440490879,\n          \"Y\": 0.046269816175405126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6603830318184294,\n          \"Y\": 0.025726396340543342\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6863205629512481,\n          \"Y\": 0.005165502724970121\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5708803142128502,\n          \"Y\": 0.07961095708327097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6053027595345777,\n          \"Y\": 0.06321349120342193\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6336672440490879,\n          \"Y\": 0.046269816175405126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6603830318184294,\n          \"Y\": 0.025726396340543342\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.690695025115444,\n          \"Y\": 0.0023579360924105286\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5708803142128502,\n          \"Y\": 0.07961095708327097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6053027595345777,\n          \"Y\": 0.06321349120342193\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6336672440490879,\n          \"Y\": 0.046269816175405126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6603830318184294,\n          \"Y\": 0.025726396340543342\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.690695025115444,\n          \"Y\": 0.0023579360924105286\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5708803142128502,\n          \"Y\": 0.07961095708327097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6053027595345777,\n          \"Y\": 0.06321349120342193\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6336672440490879,\n          \"Y\": 0.046269816175405126\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6603830318184294,\n          \"Y\": 0.025726396340543342\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.690695025115444,\n          \"Y\": 0.0023579360924105286\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5708803142128502,\n          \"Y\": 0.07961095708327097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6035383921759153,\n          \"Y\": 0.06061469006676752\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6309219559983303,\n          \"Y\": 0.043692434219421025\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6568164231360494,\n          \"Y\": 0.02741607288708269\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6848415801861084,\n          \"Y\": 0.007372619787926273\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5708803142128502,\n          \"Y\": 0.07961095708327097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6035383921759153,\n          \"Y\": 0.06061469006676752\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6309219559983303,\n          \"Y\": 0.043692434219421025\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6568164231360494,\n          \"Y\": 0.02741607288708269\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6848415801861084,\n          \"Y\": 0.007372619787926273\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5708803142128502,\n          \"Y\": 0.07961095708327097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6035383921759153,\n          \"Y\": 0.06061469006676752\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6309219559983303,\n          \"Y\": 0.043692434219421025\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6568164231360494,\n          \"Y\": 0.02741607288708269\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6848415801861084,\n          \"Y\": 0.007372619787926273\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5708803142128502,\n          \"Y\": 0.07961095708327097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6035383921759153,\n          \"Y\": 0.06061469006676752\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6309219559983303,\n          \"Y\": 0.043692434219421025\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6568164231360494,\n          \"Y\": 0.02741607288708269\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6848415801861084,\n          \"Y\": 0.007372619787926273\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5708803142128502,\n          \"Y\": 0.07961095708327097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6035383921759153,\n          \"Y\": 0.06061469006676752\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6309219559983303,\n          \"Y\": 0.043692434219421025\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6568164231360494,\n          \"Y\": 0.02741607288708269\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.681043550460873,\n          \"Y\": 0.014069719699924923\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5708803142128502,\n          \"Y\": 0.07961095708327097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6035383921759153,\n          \"Y\": 0.06061469006676752\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6309219559983303,\n          \"Y\": 0.043692434219421025\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6547590361208603,\n          \"Y\": 0.026370798262019598\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6772568148482645,\n          \"Y\": 0.008179268678566179\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5708803142128502,\n          \"Y\": 0.07961095708327097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6035383921759153,\n          \"Y\": 0.06061469006676752\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6309219559983303,\n          \"Y\": 0.043692434219421025\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6547590361208603,\n          \"Y\": 0.026370798262019598\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6772568148482645,\n          \"Y\": 0.008179268678566179\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5708803142128502,\n          \"Y\": 0.07961095708327097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6035383921759153,\n          \"Y\": 0.06061469006676752\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6309219559983303,\n          \"Y\": 0.043692434219421025\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6547590361208603,\n          \"Y\": 0.026370798262019598\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6772568148482645,\n          \"Y\": 0.008179268678566179\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5708803142128502,\n          \"Y\": 0.07961095708327097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6035383921759153,\n          \"Y\": 0.06061469006676752\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6309219559983303,\n          \"Y\": 0.043692434219421025\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6547590361208603,\n          \"Y\": 0.026370798262019598\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6772568148482645,\n          \"Y\": 0.008179268678566179\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.2857447358062829,\n          \"Y\": 0.23487566804894558\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3225955447557907,\n          \"Y\": 0.21506239154706405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3612373237593007,\n          \"Y\": 0.19531861403579637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3965231451619146,\n          \"Y\": 0.1794114915716545\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.43044478100195704,\n          \"Y\": 0.1608260209432863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4652724707928147,\n          \"Y\": 0.14050491233515047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4994711542299102,\n          \"Y\": 0.11815671627034956\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5344525995238006,\n          \"Y\": 0.0980627582594388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5708803142128502,\n          \"Y\": 0.07961095708327097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6035383921759153,\n          \"Y\": 0.06061469006676752\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6309219559983303,\n          \"Y\": 0.043692434219421025\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6547590361208603,\n          \"Y\": 0.026370798262019598\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6772568148482645,\n          \"Y\": 0.008179268678566179\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.38156640560502736,\n          \"Y\": 0.1735921790984511\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41074776942340757,\n          \"Y\": 0.15333287011718144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4418377158382337,\n          \"Y\": 0.13627433065616407\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47666117343521264,\n          \"Y\": 0.11839403159752551\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5141588940896763,\n          \"Y\": 0.09780291858801503\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5509783146076754,\n          \"Y\": 0.08038237273133282\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5862125197674879,\n          \"Y\": 0.06178057292013678\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6181896423666559,\n          \"Y\": 0.041236245274847254\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.648062503653634,\n          \"Y\": 0.01973664096781251\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6755142096756601,\n          \"Y\": 0.0014442975240974917\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.38156640560502736,\n          \"Y\": 0.1735921790984511\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41074776942340757,\n          \"Y\": 0.15333287011718144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4418377158382337,\n          \"Y\": 0.13627433065616407\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47666117343521264,\n          \"Y\": 0.11839403159752551\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5141588940896763,\n          \"Y\": 0.09780291858801503\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5509783146076754,\n          \"Y\": 0.08038237273133282\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5862125197674879,\n          \"Y\": 0.06178057292013678\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6181896423666559,\n          \"Y\": 0.041236245274847254\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.648062503653634,\n          \"Y\": 0.01973664096781251\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6755142096756601,\n          \"Y\": 0.0014442975240974917\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.38156640560502736,\n          \"Y\": 0.1735921790984511\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41074776942340757,\n          \"Y\": 0.15333287011718144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4418377158382337,\n          \"Y\": 0.13627433065616407\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47666117343521264,\n          \"Y\": 0.11839403159752551\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5141588940896763,\n          \"Y\": 0.09780291858801503\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5509783146076754,\n          \"Y\": 0.08038237273133282\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5862125197674879,\n          \"Y\": 0.06178057292013678\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6181896423666559,\n          \"Y\": 0.041236245274847254\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.648062503653634,\n          \"Y\": 0.01973664096781251\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6755142096756601,\n          \"Y\": 0.0014442975240974917\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.38156640560502736,\n          \"Y\": 0.1735921790984511\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41074776942340757,\n          \"Y\": 0.15333287011718144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4418377158382337,\n          \"Y\": 0.13627433065616407\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47666117343521264,\n          \"Y\": 0.11839403159752551\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5141588940896763,\n          \"Y\": 0.09780291858801503\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5509783146076754,\n          \"Y\": 0.08038237273133282\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5862125197674879,\n          \"Y\": 0.06178057292013678\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6181896423666559,\n          \"Y\": 0.041236245274847254\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.648062503653634,\n          \"Y\": 0.01973664096781251\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6755142096756601,\n          \"Y\": 0.0014442975240974917\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.38156640560502736,\n          \"Y\": 0.1735921790984511\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41074776942340757,\n          \"Y\": 0.15333287011718144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4418377158382337,\n          \"Y\": 0.13627433065616407\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47666117343521264,\n          \"Y\": 0.11839403159752551\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5141588940896763,\n          \"Y\": 0.09780291858801503\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5509783146076754,\n          \"Y\": 0.08038237273133282\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5862125197674879,\n          \"Y\": 0.06178057292013678\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6181896423666559,\n          \"Y\": 0.041236245274847254\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6545119385865543,\n          \"Y\": 0.01904915810483982\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6936469683298314,\n          \"Y\": 0.0010696601969186863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.38156640560502736,\n          \"Y\": 0.1735921790984511\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41074776942340757,\n          \"Y\": 0.15333287011718144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4418377158382337,\n          \"Y\": 0.13627433065616407\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47666117343521264,\n          \"Y\": 0.11839403159752551\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5141588940896763,\n          \"Y\": 0.09780291858801503\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5509783146076754,\n          \"Y\": 0.08038237273133282\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5862125197674879,\n          \"Y\": 0.06178057292013678\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6181896423666559,\n          \"Y\": 0.041236245274847254\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6545119385865543,\n          \"Y\": 0.01904915810483982\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6936469683298314,\n          \"Y\": 0.0010696601969186863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.38156640560502736,\n          \"Y\": 0.1735921790984511\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41074776942340757,\n          \"Y\": 0.15333287011718144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4418377158382337,\n          \"Y\": 0.13627433065616407\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47666117343521264,\n          \"Y\": 0.11839403159752551\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5141588940896763,\n          \"Y\": 0.09780291858801503\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5509783146076754,\n          \"Y\": 0.08038237273133282\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5862125197674879,\n          \"Y\": 0.06178057292013678\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6181896423666559,\n          \"Y\": 0.041236245274847254\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6545119385865543,\n          \"Y\": 0.01904915810483982\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6936469683298314,\n          \"Y\": 0.0010696601969186863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.38156640560502736,\n          \"Y\": 0.1735921790984511\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41074776942340757,\n          \"Y\": 0.15333287011718144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4418377158382337,\n          \"Y\": 0.13627433065616407\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47666117343521264,\n          \"Y\": 0.11839403159752551\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5141588940896763,\n          \"Y\": 0.09780291858801503\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5509783146076754,\n          \"Y\": 0.08038237273133282\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5862125197674879,\n          \"Y\": 0.06178057292013678\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6181896423666559,\n          \"Y\": 0.041236245274847254\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6545119385865543,\n          \"Y\": 0.01904915810483982\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6936469683298314,\n          \"Y\": 0.0010696601969186863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.38156640560502736,\n          \"Y\": 0.1735921790984511\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41074776942340757,\n          \"Y\": 0.15333287011718144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4418377158382337,\n          \"Y\": 0.13627433065616407\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47666117343521264,\n          \"Y\": 0.11839403159752551\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5141588940896763,\n          \"Y\": 0.09780291858801503\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5509783146076754,\n          \"Y\": 0.08038237273133282\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5862125197674879,\n          \"Y\": 0.06178057292013678\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6181896423666559,\n          \"Y\": 0.041236245274847254\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6545119385865543,\n          \"Y\": 0.01904915810483982\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6936469683298314,\n          \"Y\": 0.0010696601969186863\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.38156640560502736,\n          \"Y\": 0.1735921790984511\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41074776942340757,\n          \"Y\": 0.15333287011718144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4418377158382337,\n          \"Y\": 0.13627433065616407\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47666117343521264,\n          \"Y\": 0.11839403159752551\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5141588940896763,\n          \"Y\": 0.09780291858801503\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5509783146076754,\n          \"Y\": 0.08038237273133282\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5877050572596199,\n          \"Y\": 0.06218939842479358\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6262336260207828,\n          \"Y\": 0.04785154793890249\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6631281341503751,\n          \"Y\": 0.027310287322521724\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6962618209629883,\n          \"Y\": 0.005283848519034972\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.38156640560502736,\n          \"Y\": 0.1735921790984511\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41074776942340757,\n          \"Y\": 0.15333287011718144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4418377158382337,\n          \"Y\": 0.13627433065616407\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47666117343521264,\n          \"Y\": 0.11839403159752551\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5141588940896763,\n          \"Y\": 0.09780291858801503\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5509783146076754,\n          \"Y\": 0.08038237273133282\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5877050572596199,\n          \"Y\": 0.06218939842479358\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6262336260207828,\n          \"Y\": 0.04785154793890249\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6631281341503751,\n          \"Y\": 0.027310287322521724\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6962618209629883,\n          \"Y\": 0.005283848519034972\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.38156640560502736,\n          \"Y\": 0.1735921790984511\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41074776942340757,\n          \"Y\": 0.15333287011718144\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4418377158382337,\n          \"Y\": 0.13627433065616407\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47666117343521264,\n          \"Y\": 0.11839403159752551\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5141588940896763,\n          \"Y\": 0.09780291858801503\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5509783146076754,\n          \"Y\": 0.08038237273133282\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5877050572596199,\n          \"Y\": 0.06218939842479358\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6262336260207828,\n          \"Y\": 0.04785154793890249\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6631281341503751,\n          \"Y\": 0.027310287322521724\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.702729493133634,\n          \"Y\": 0.008471373018400074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3782143382970573,\n          \"Y\": 0.1681582901929449\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40585800052882914,\n          \"Y\": 0.1477519496774359\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.42978460467961566,\n          \"Y\": 0.12933958441345061\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4528739532496861,\n          \"Y\": 0.10983389112587244\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47673371599372877,\n          \"Y\": 0.0906694800948818\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5025065772732288,\n          \"Y\": 0.07214529494671035\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5313728586780839,\n          \"Y\": 0.05309923010390435\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5566456778813921,\n          \"Y\": 0.03739639994782584\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5806667706910098,\n          \"Y\": 0.023133773464972546\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6094140718249482,\n          \"Y\": 0.00788367303243808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3782143382970573,\n          \"Y\": 0.1681582901929449\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40585800052882914,\n          \"Y\": 0.1477519496774359\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.42978460467961566,\n          \"Y\": 0.12933958441345061\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4567009311701835,\n          \"Y\": 0.10904001661872884\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.488745935479984,\n          \"Y\": 0.09097627258326996\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5226995926137651,\n          \"Y\": 0.075277949820104\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5609775917545126,\n          \"Y\": 0.05916375787805751\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6073914226312319,\n          \"Y\": 0.041929981804032734\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6500033602375986,\n          \"Y\": 0.025475005181643345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6948239572273156,\n          \"Y\": 0.008539698760850242\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3782143382970573,\n          \"Y\": 0.1681582901929449\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40585800052882914,\n          \"Y\": 0.1477519496774359\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.42978460467961566,\n          \"Y\": 0.12933958441345061\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4567009311701835,\n          \"Y\": 0.10904001661872884\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.488745935479984,\n          \"Y\": 0.09097627258326996\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5226995926137651,\n          \"Y\": 0.075277949820104\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5609775917545126,\n          \"Y\": 0.05916375787805751\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6073914226312319,\n          \"Y\": 0.041929981804032734\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6500033602375986,\n          \"Y\": 0.025475005181643345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6948239572273156,\n          \"Y\": 0.008539698760850242\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3782143382970573,\n          \"Y\": 0.1681582901929449\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40585800052882914,\n          \"Y\": 0.1477519496774359\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.42978460467961566,\n          \"Y\": 0.12933958441345061\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4567009311701835,\n          \"Y\": 0.10904001661872884\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.488745935479984,\n          \"Y\": 0.09097627258326996\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5226995926137651,\n          \"Y\": 0.075277949820104\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5609775917545126,\n          \"Y\": 0.05916375787805751\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6073914226312319,\n          \"Y\": 0.041929981804032734\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6500033602375986,\n          \"Y\": 0.025475005181643345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6975307039508771,\n          \"Y\": 0.004821307382239775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3782143382970573,\n          \"Y\": 0.1681582901929449\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40585800052882914,\n          \"Y\": 0.1477519496774359\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.42978460467961566,\n          \"Y\": 0.12933958441345061\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4567009311701835,\n          \"Y\": 0.10904001661872884\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.488745935479984,\n          \"Y\": 0.09097627258326996\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5226995926137651,\n          \"Y\": 0.075277949820104\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5609775917545126,\n          \"Y\": 0.05916375787805751\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6073914226312319,\n          \"Y\": 0.041929981804032734\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6500033602375986,\n          \"Y\": 0.025475005181643345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6975307039508771,\n          \"Y\": 0.004821307382239775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3782143382970573,\n          \"Y\": 0.1681582901929449\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40585800052882914,\n          \"Y\": 0.1477519496774359\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.42978460467961566,\n          \"Y\": 0.12933958441345061\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4567009311701835,\n          \"Y\": 0.10904001661872884\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.488745935479984,\n          \"Y\": 0.09097627258326996\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5226995926137651,\n          \"Y\": 0.075277949820104\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5609775917545126,\n          \"Y\": 0.05916375787805751\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6073914226312319,\n          \"Y\": 0.041929981804032734\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6500033602375986,\n          \"Y\": 0.025475005181643345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6975307039508771,\n          \"Y\": 0.004821307382239775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3782143382970573,\n          \"Y\": 0.1681582901929449\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40585800052882914,\n          \"Y\": 0.1477519496774359\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.42978460467961566,\n          \"Y\": 0.12933958441345061\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4567009311701835,\n          \"Y\": 0.10904001661872884\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.488745935479984,\n          \"Y\": 0.09097627258326996\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5226995926137651,\n          \"Y\": 0.075277949820104\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5609775917545126,\n          \"Y\": 0.05916375787805751\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6073914226312319,\n          \"Y\": 0.041929981804032734\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6500033602375986,\n          \"Y\": 0.025475005181643345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6975307039508771,\n          \"Y\": 0.004821307382239775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3782143382970573,\n          \"Y\": 0.1681582901929449\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40585800052882914,\n          \"Y\": 0.1477519496774359\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.42978460467961566,\n          \"Y\": 0.12933958441345061\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4567009311701835,\n          \"Y\": 0.10904001661872884\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.488745935479984,\n          \"Y\": 0.09097627258326996\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5226995926137651,\n          \"Y\": 0.075277949820104\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5609775917545126,\n          \"Y\": 0.05916375787805751\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6073914226312319,\n          \"Y\": 0.041929981804032734\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6500033602375986,\n          \"Y\": 0.025475005181643345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6975307039508771,\n          \"Y\": 0.004821307382239775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3782143382970573,\n          \"Y\": 0.1681582901929449\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40585800052882914,\n          \"Y\": 0.1477519496774359\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.42978460467961566,\n          \"Y\": 0.12933958441345061\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4567009311701835,\n          \"Y\": 0.10904001661872884\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.488745935479984,\n          \"Y\": 0.09097627258326996\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5226995926137651,\n          \"Y\": 0.075277949820104\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5609775917545126,\n          \"Y\": 0.05916375787805751\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6073914226312319,\n          \"Y\": 0.041929981804032734\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6500033602375986,\n          \"Y\": 0.025475005181643345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6975307039508771,\n          \"Y\": 0.004821307382239775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3782143382970573,\n          \"Y\": 0.1681582901929449\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40585800052882914,\n          \"Y\": 0.1477519496774359\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.42978460467961566,\n          \"Y\": 0.12933958441345061\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4567009311701835,\n          \"Y\": 0.10904001661872884\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.488745935479984,\n          \"Y\": 0.09097627258326996\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5226995926137651,\n          \"Y\": 0.075277949820104\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5609775917545126,\n          \"Y\": 0.05916375787805751\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6073914226312319,\n          \"Y\": 0.041929981804032734\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6500033602375986,\n          \"Y\": 0.025475005181643345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6975307039508771,\n          \"Y\": 0.004821307382239775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3782143382970573,\n          \"Y\": 0.1681582901929449\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40585800052882914,\n          \"Y\": 0.1477519496774359\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.42978460467961566,\n          \"Y\": 0.12933958441345061\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4567009311701835,\n          \"Y\": 0.10904001661872884\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.488745935479984,\n          \"Y\": 0.09097627258326996\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5226995926137651,\n          \"Y\": 0.075277949820104\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5609775917545126,\n          \"Y\": 0.05916375787805751\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6073914226312319,\n          \"Y\": 0.041929981804032734\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6500033602375986,\n          \"Y\": 0.025475005181643345\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6975307039508771,\n          \"Y\": 0.004821307382239775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3782143382970573,\n          \"Y\": 0.1681582901929449\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40585800052882914,\n          \"Y\": 0.1477519496774359\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.42970792281028836,\n          \"Y\": 0.1289040094482714\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4551449050852421,\n          \"Y\": 0.10816191676732405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.48231370941269813,\n          \"Y\": 0.09038155453018343\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5098450084383118,\n          \"Y\": 0.07290321278949374\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5360454825937537,\n          \"Y\": 0.05469415581528559\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5559314769527912,\n          \"Y\": 0.03758895958161651\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5746989272782822,\n          \"Y\": 0.021160304120237002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5962120773994956,\n          \"Y\": 0.007806573176749161\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3782143382970573,\n          \"Y\": 0.1681582901929449\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40585800052882914,\n          \"Y\": 0.1477519496774359\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.42970792281028836,\n          \"Y\": 0.1289040094482714\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4551449050852421,\n          \"Y\": 0.10816191676732405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.48231370941269813,\n          \"Y\": 0.09038155453018343\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5098450084383118,\n          \"Y\": 0.07290321278949374\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5360454825937537,\n          \"Y\": 0.05469415581528559\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5559314769527912,\n          \"Y\": 0.03758895958161651\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5746989272782822,\n          \"Y\": 0.021160304120237002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5962120773994956,\n          \"Y\": 0.007806573176749161\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3782143382970573,\n          \"Y\": 0.1681582901929449\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40585800052882914,\n          \"Y\": 0.1477519496774359\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.42970792281028836,\n          \"Y\": 0.1289040094482714\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4551449050852421,\n          \"Y\": 0.10816191676732405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.48231370941269813,\n          \"Y\": 0.09038155453018343\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5098450084383118,\n          \"Y\": 0.07290321278949374\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5360454825937537,\n          \"Y\": 0.05469415581528559\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5559314769527912,\n          \"Y\": 0.03758895958161651\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5746989272782822,\n          \"Y\": 0.021160304120237002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5962120773994956,\n          \"Y\": 0.007806573176749161\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3782143382970573,\n          \"Y\": 0.1681582901929449\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.40585800052882914,\n          \"Y\": 0.1477519496774359\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.42970792281028836,\n          \"Y\": 0.1289040094482714\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4551449050852421,\n          \"Y\": 0.10816191676732405\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.48231370941269813,\n          \"Y\": 0.09038155453018343\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5098450084383118,\n          \"Y\": 0.07290321278949374\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5360454825937537,\n          \"Y\": 0.05469415581528559\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5559314769527912,\n          \"Y\": 0.03758895958161651\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5746989272782822,\n          \"Y\": 0.021160304120237002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5962120773994956,\n          \"Y\": 0.007806573176749161\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.38282795152784793,\n          \"Y\": 0.1698215723870893\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41193858893908264,\n          \"Y\": 0.15108997020485557\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4407968938716116,\n          \"Y\": 0.134433703079847\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47146516125427496,\n          \"Y\": 0.11619398714032034\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5049158063103905,\n          \"Y\": 0.09757718727280426\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5382439826842788,\n          \"Y\": 0.07628177145656294\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5690563375663207,\n          \"Y\": 0.058195345062633595\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.604561949062135,\n          \"Y\": 0.03841307443326778\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6412332238252006,\n          \"Y\": 0.017855708648847647\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6738692278344038,\n          \"Y\": 0.00047825105033353493\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.38282795152784793,\n          \"Y\": 0.1698215723870893\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41193858893908264,\n          \"Y\": 0.15108997020485557\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4407968938716116,\n          \"Y\": 0.134433703079847\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47146516125427496,\n          \"Y\": 0.11619398714032034\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5049158063103905,\n          \"Y\": 0.09757718727280426\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5382439826842788,\n          \"Y\": 0.07628177145656294\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5690563375663207,\n          \"Y\": 0.058195345062633595\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6002146128697411,\n          \"Y\": 0.04100047206541155\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6363577981721181,\n          \"Y\": 0.026855953264606984\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6770789346611286,\n          \"Y\": 0.015065741348282693\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.38282795152784793,\n          \"Y\": 0.1698215723870893\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41193858893908264,\n          \"Y\": 0.15108997020485557\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4407968938716116,\n          \"Y\": 0.134433703079847\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47146516125427496,\n          \"Y\": 0.11619398714032034\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5049158063103905,\n          \"Y\": 0.09757718727280426\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5382439826842788,\n          \"Y\": 0.07628177145656294\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5690563375663207,\n          \"Y\": 0.058195345062633595\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6002146128697411,\n          \"Y\": 0.04100047206541155\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6314536830286597,\n          \"Y\": 0.023253523572415592\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6622300617658394,\n          \"Y\": 0.002513257505690168\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.38282795152784793,\n          \"Y\": 0.1698215723870893\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41193858893908264,\n          \"Y\": 0.15108997020485557\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4407968938716116,\n          \"Y\": 0.134433703079847\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47146516125427496,\n          \"Y\": 0.11619398714032034\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5049158063103905,\n          \"Y\": 0.09757718727280426\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5382439826842788,\n          \"Y\": 0.07628177145656294\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5690563375663207,\n          \"Y\": 0.058195345062633595\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6002146128697411,\n          \"Y\": 0.04100047206541155\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6314536830286597,\n          \"Y\": 0.023253523572415592\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6622300617658394,\n          \"Y\": 0.002513257505690168\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.38282795152784793,\n          \"Y\": 0.1698215723870893\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.41193858893908264,\n          \"Y\": 0.15108997020485557\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4407968938716116,\n          \"Y\": 0.134433703079847\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.47146516125427496,\n          \"Y\": 0.11619398714032034\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5049158063103905,\n          \"Y\": 0.09757718727280426\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5382439826842788,\n          \"Y\": 0.07628177145656294\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5690563375663207,\n          \"Y\": 0.058195345062633595\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6002146128697411,\n          \"Y\": 0.04100047206541155\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6314536830286597,\n          \"Y\": 0.023253523572415592\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6622300617658394,\n          \"Y\": 0.002513257505690168\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3775526490581649,\n          \"Y\": 0.1694845991351741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4013004900222111,\n          \"Y\": 0.14545598553937017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4258939455980504,\n          \"Y\": 0.12752035891218327\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.446146711823753,\n          \"Y\": 0.10834077336401017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46665494241961936,\n          \"Y\": 0.08732110497878912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49449430889822127,\n          \"Y\": 0.07025627214070655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5237265487457912,\n          \"Y\": 0.053799476478384047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5489693920552101,\n          \"Y\": 0.036311726415789336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5767422385845212,\n          \"Y\": 0.018518092338331727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6071754471405173,\n          \"Y\": 0.0006580918434104348\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3775526490581649,\n          \"Y\": 0.1694845991351741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4013004900222111,\n          \"Y\": 0.14545598553937017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4258939455980504,\n          \"Y\": 0.12752035891218327\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.446146711823753,\n          \"Y\": 0.10834077336401017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46665494241961936,\n          \"Y\": 0.08732110497878912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49449430889822127,\n          \"Y\": 0.07025627214070655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5237265487457912,\n          \"Y\": 0.053799476478384047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5489693920552101,\n          \"Y\": 0.036311726415789336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5767422385845212,\n          \"Y\": 0.018518092338331727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6071754471405173,\n          \"Y\": 0.0006580918434104348\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3775526490581649,\n          \"Y\": 0.1694845991351741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4013004900222111,\n          \"Y\": 0.14545598553937017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4258939455980504,\n          \"Y\": 0.12752035891218327\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.446146711823753,\n          \"Y\": 0.10834077336401017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46665494241961936,\n          \"Y\": 0.08732110497878912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49449430889822127,\n          \"Y\": 0.07025627214070655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5237265487457912,\n          \"Y\": 0.053799476478384047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5489693920552101,\n          \"Y\": 0.036311726415789336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5767422385845212,\n          \"Y\": 0.018518092338331727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6071754471405173,\n          \"Y\": 0.0006580918434104348\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3775526490581649,\n          \"Y\": 0.1694845991351741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4013004900222111,\n          \"Y\": 0.14545598553937017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4258939455980504,\n          \"Y\": 0.12752035891218327\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.446146711823753,\n          \"Y\": 0.10834077336401017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46665494241961936,\n          \"Y\": 0.08732110497878912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49449430889822127,\n          \"Y\": 0.07025627214070655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5237265487457912,\n          \"Y\": 0.053799476478384047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5489693920552101,\n          \"Y\": 0.036311726415789336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5767422385845212,\n          \"Y\": 0.018518092338331727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6071754471405173,\n          \"Y\": 0.0006580918434104348\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3775526490581649,\n          \"Y\": 0.1694845991351741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4013004900222111,\n          \"Y\": 0.14545598553937017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4258939455980504,\n          \"Y\": 0.12752035891218327\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.446146711823753,\n          \"Y\": 0.10834077336401017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46665494241961936,\n          \"Y\": 0.08732110497878912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49449430889822127,\n          \"Y\": 0.07025627214070655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5237265487457912,\n          \"Y\": 0.053799476478384047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5489693920552101,\n          \"Y\": 0.036311726415789336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5767422385845212,\n          \"Y\": 0.018518092338331727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6071754471405173,\n          \"Y\": 0.0006580918434104348\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3775526490581649,\n          \"Y\": 0.1694845991351741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4013004900222111,\n          \"Y\": 0.14545598553937017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4258939455980504,\n          \"Y\": 0.12752035891218327\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.446146711823753,\n          \"Y\": 0.10834077336401017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46665494241961936,\n          \"Y\": 0.08732110497878912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49449430889822127,\n          \"Y\": 0.07025627214070655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5237265487457912,\n          \"Y\": 0.053799476478384047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5517432734346004,\n          \"Y\": 0.03629582486875252\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5815243246158537,\n          \"Y\": 0.022428465550001855\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6117193959258399,\n          \"Y\": 0.006837506973981472\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3775526490581649,\n          \"Y\": 0.1694845991351741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4013004900222111,\n          \"Y\": 0.14545598553937017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4258939455980504,\n          \"Y\": 0.12752035891218327\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.446146711823753,\n          \"Y\": 0.10834077336401017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46665494241961936,\n          \"Y\": 0.08732110497878912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49449430889822127,\n          \"Y\": 0.07025627214070655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5237265487457912,\n          \"Y\": 0.053799476478384047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5517432734346004,\n          \"Y\": 0.03629582486875252\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5815243246158537,\n          \"Y\": 0.022428465550001855\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6117193959258399,\n          \"Y\": 0.006837506973981472\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3775526490581649,\n          \"Y\": 0.1694845991351741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4013004900222111,\n          \"Y\": 0.14545598553937017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4258939455980504,\n          \"Y\": 0.12752035891218327\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.446146711823753,\n          \"Y\": 0.10834077336401017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46665494241961936,\n          \"Y\": 0.08732110497878912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49449430889822127,\n          \"Y\": 0.07025627214070655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5237265487457912,\n          \"Y\": 0.053799476478384047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5517432734346004,\n          \"Y\": 0.03629582486875252\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5815243246158537,\n          \"Y\": 0.022428465550001855\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6117193959258399,\n          \"Y\": 0.006837506973981472\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3775526490581649,\n          \"Y\": 0.1694845991351741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4013004900222111,\n          \"Y\": 0.14545598553937017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4258939455980504,\n          \"Y\": 0.12752035891218327\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.446146711823753,\n          \"Y\": 0.10834077336401017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46665494241961936,\n          \"Y\": 0.08732110497878912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49449430889822127,\n          \"Y\": 0.07025627214070655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5237265487457912,\n          \"Y\": 0.053799476478384047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5517432734346004,\n          \"Y\": 0.03629582486875252\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5815243246158537,\n          \"Y\": 0.022428465550001855\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6117193959258399,\n          \"Y\": 0.006837506973981472\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3775526490581649,\n          \"Y\": 0.1694845991351741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4013004900222111,\n          \"Y\": 0.14545598553937017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4258939455980504,\n          \"Y\": 0.12752035891218327\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.446146711823753,\n          \"Y\": 0.10834077336401017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46665494241961936,\n          \"Y\": 0.08732110497878912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49449430889822127,\n          \"Y\": 0.07025627214070655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5237265487457912,\n          \"Y\": 0.053799476478384047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5564083061500829,\n          \"Y\": 0.03858759135731976\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5881802519775663,\n          \"Y\": 0.023096965551105984\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6181808125656785,\n          \"Y\": 0.0040711102216721\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3775526490581649,\n          \"Y\": 0.1694845991351741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4013004900222111,\n          \"Y\": 0.14545598553937017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4258939455980504,\n          \"Y\": 0.12752035891218327\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.446146711823753,\n          \"Y\": 0.10834077336401017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46665494241961936,\n          \"Y\": 0.08732110497878912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49449430889822127,\n          \"Y\": 0.07025627214070655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5237265487457912,\n          \"Y\": 0.053799476478384047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5564083061500829,\n          \"Y\": 0.03858759135731976\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5881802519775663,\n          \"Y\": 0.023096965551105984\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6181808125656785,\n          \"Y\": 0.0040711102216721\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3775526490581649,\n          \"Y\": 0.1694845991351741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4013004900222111,\n          \"Y\": 0.14545598553937017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4258939455980504,\n          \"Y\": 0.12752035891218327\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.446146711823753,\n          \"Y\": 0.10834077336401017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46665494241961936,\n          \"Y\": 0.08732110497878912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49449430889822127,\n          \"Y\": 0.07025627214070655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5237265487457912,\n          \"Y\": 0.053799476478384047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5564083061500829,\n          \"Y\": 0.03858759135731976\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5881802519775663,\n          \"Y\": 0.023096965551105984\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6181808125656785,\n          \"Y\": 0.0040711102216721\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3775526490581649,\n          \"Y\": 0.1694845991351741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4013004900222111,\n          \"Y\": 0.14545598553937017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4258939455980504,\n          \"Y\": 0.12752035891218327\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.446146711823753,\n          \"Y\": 0.10834077336401017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46665494241961936,\n          \"Y\": 0.08732110497878912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49449430889822127,\n          \"Y\": 0.07025627214070655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5237265487457912,\n          \"Y\": 0.053799476478384047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5564083061500829,\n          \"Y\": 0.03858759135731976\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5903190852663619,\n          \"Y\": 0.02250634762532965\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6291920146277327,\n          \"Y\": 0.007344262886394795\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3775526490581649,\n          \"Y\": 0.1694845991351741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4013004900222111,\n          \"Y\": 0.14545598553937017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4258939455980504,\n          \"Y\": 0.12752035891218327\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.446146711823753,\n          \"Y\": 0.10834077336401017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46665494241961936,\n          \"Y\": 0.08732110497878912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49449430889822127,\n          \"Y\": 0.07025627214070655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5237265487457912,\n          \"Y\": 0.053799476478384047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5564083061500829,\n          \"Y\": 0.03858759135731976\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5903190852663619,\n          \"Y\": 0.02250634762532965\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6291920146277327,\n          \"Y\": 0.007344262886394795\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3775526490581649,\n          \"Y\": 0.1694845991351741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4013004900222111,\n          \"Y\": 0.14545598553937017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4258939455980504,\n          \"Y\": 0.12752035891218327\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.446146711823753,\n          \"Y\": 0.10834077336401017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46665494241961936,\n          \"Y\": 0.08732110497878912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49449430889822127,\n          \"Y\": 0.07025627214070655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5237265487457912,\n          \"Y\": 0.053799476478384047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5564083061500829,\n          \"Y\": 0.03858759135731976\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5903190852663619,\n          \"Y\": 0.02250634762532965\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6291920146277327,\n          \"Y\": 0.007344262886394795\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3775526490581649,\n          \"Y\": 0.1694845991351741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4013004900222111,\n          \"Y\": 0.14545598553937017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4258939455980504,\n          \"Y\": 0.12752035891218327\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.446146711823753,\n          \"Y\": 0.10834077336401017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46665494241961936,\n          \"Y\": 0.08732110497878912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49449430889822127,\n          \"Y\": 0.07025627214070655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5237265487457912,\n          \"Y\": 0.053799476478384047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5564083061500829,\n          \"Y\": 0.03858759135731976\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5903190852663619,\n          \"Y\": 0.02250634762532965\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6291920146277327,\n          \"Y\": 0.007344262886394795\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3775526490581649,\n          \"Y\": 0.1694845991351741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4013004900222111,\n          \"Y\": 0.14545598553937017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4258939455980504,\n          \"Y\": 0.12752035891218327\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.446146711823753,\n          \"Y\": 0.10834077336401017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46665494241961936,\n          \"Y\": 0.08732110497878912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49449430889822127,\n          \"Y\": 0.07025627214070655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5237265487457912,\n          \"Y\": 0.053799476478384047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5564083061500829,\n          \"Y\": 0.03858759135731976\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5903190852663619,\n          \"Y\": 0.02250634762532965\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6205951111366921,\n          \"Y\": 0.004388063310678893\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3775526490581649,\n          \"Y\": 0.1694845991351741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4013004900222111,\n          \"Y\": 0.14545598553937017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4258939455980504,\n          \"Y\": 0.12752035891218327\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.446146711823753,\n          \"Y\": 0.10834077336401017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46665494241961936,\n          \"Y\": 0.08732110497878912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49449430889822127,\n          \"Y\": 0.07025627214070655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5237265487457912,\n          \"Y\": 0.053799476478384047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5564083061500829,\n          \"Y\": 0.03858759135731976\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5903190852663619,\n          \"Y\": 0.02250634762532965\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6205951111366921,\n          \"Y\": 0.004388063310678893\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3775526490581649,\n          \"Y\": 0.1694845991351741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4013004900222111,\n          \"Y\": 0.14545598553937017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4258939455980504,\n          \"Y\": 0.12752035891218327\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.446146711823753,\n          \"Y\": 0.10834077336401017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46665494241961936,\n          \"Y\": 0.08732110497878912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49449430889822127,\n          \"Y\": 0.07025627214070655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5237265487457912,\n          \"Y\": 0.053799476478384047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5564083061500829,\n          \"Y\": 0.03858759135731976\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5903190852663619,\n          \"Y\": 0.02250634762532965\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6205951111366921,\n          \"Y\": 0.004388063310678893\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3775526490581649,\n          \"Y\": 0.1694845991351741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4013004900222111,\n          \"Y\": 0.14545598553937017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4258939455980504,\n          \"Y\": 0.12752035891218327\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.446146711823753,\n          \"Y\": 0.10834077336401017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46665494241961936,\n          \"Y\": 0.08732110497878912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49449430889822127,\n          \"Y\": 0.07025627214070655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5237265487457912,\n          \"Y\": 0.053799476478384047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5564083061500829,\n          \"Y\": 0.03858759135731976\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5903190852663619,\n          \"Y\": 0.02250634762532965\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6205951111366921,\n          \"Y\": 0.004388063310678893\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3775526490581649,\n          \"Y\": 0.1694845991351741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4013004900222111,\n          \"Y\": 0.14545598553937017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4258939455980504,\n          \"Y\": 0.12752035891218327\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.446146711823753,\n          \"Y\": 0.10834077336401017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46665494241961936,\n          \"Y\": 0.08732110497878912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49449430889822127,\n          \"Y\": 0.07025627214070655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5237265487457912,\n          \"Y\": 0.053799476478384047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5564083061500829,\n          \"Y\": 0.03858759135731976\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5903190852663619,\n          \"Y\": 0.02250634762532965\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6205951111366921,\n          \"Y\": 0.004388063310678893\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3775526490581649,\n          \"Y\": 0.1694845991351741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4013004900222111,\n          \"Y\": 0.14545598553937017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4258939455980504,\n          \"Y\": 0.12752035891218327\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.446146711823753,\n          \"Y\": 0.10834077336401017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46665494241961936,\n          \"Y\": 0.08732110497878912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49449430889822127,\n          \"Y\": 0.07025627214070655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5237265487457912,\n          \"Y\": 0.053799476478384047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5564083061500829,\n          \"Y\": 0.03858759135731976\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5903190852663619,\n          \"Y\": 0.02250634762532965\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6205951111366921,\n          \"Y\": 0.004388063310678893\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.010257539405063914,\n          \"Y\": 0.9287357058770148\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.015374881739881472,\n          \"Y\": 0.913031356948891\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01702494589338526,\n          \"Y\": 0.8958209258372534\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01840256376164657,\n          \"Y\": 0.8749172752945775\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01817745608694796,\n          \"Y\": 0.8583583757868019\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017670993430082285,\n          \"Y\": 0.8447613513312131\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016544567221656564,\n          \"Y\": 0.8234327939171653\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.017748212460411642,\n          \"Y\": 0.8066149754818942\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02098624123979211,\n          \"Y\": 0.7859505841421761\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02644716805431388,\n          \"Y\": 0.7660098680505538\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.025479960956679468,\n          \"Y\": 0.7466404153202828\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.02303563641976475,\n          \"Y\": 0.7312149819178336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.016216098751713377,\n          \"Y\": 0.7128933533489029\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.01235694754958596,\n          \"Y\": 0.6882287351984667\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.006763928456459557,\n          \"Y\": 0.6625817738819002\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": 0.0019668047857608504,\n          \"Y\": 0.6370582145685727\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.005937056124430612,\n          \"Y\": 0.6065879770514311\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.01912921545239656,\n          \"Y\": 0.5750469394506992\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.03259520085509389,\n          \"Y\": 0.5407671382927453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.05094237680498244,\n          \"Y\": 0.5015892159460326\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.07209798297935455,\n          \"Y\": 0.45839774945219186\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.09531195753995325,\n          \"Y\": 0.4147654752394703\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.12071723292987079,\n          \"Y\": 0.37270831689522954\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.1513174723551429,\n          \"Y\": 0.34112733521655947\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.18588407299531767,\n          \"Y\": 0.314447626960074\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.21998249049949375,\n          \"Y\": 0.2856631857445848\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.25252478140599094,\n          \"Y\": 0.2600838242330022\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.28484686462029984,\n          \"Y\": 0.23340314414559948\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.31815184783861084,\n          \"Y\": 0.21014286128804882\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3504821407986397,\n          \"Y\": 0.18937284952443742\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.3775526490581649,\n          \"Y\": 0.1694845991351741\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4013004900222111,\n          \"Y\": 0.14545598553937017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.4258939455980504,\n          \"Y\": 0.12752035891218327\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.446146711823753,\n          \"Y\": 0.10834077336401017\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.46665494241961936,\n          \"Y\": 0.08732110497878912\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.49449430889822127,\n          \"Y\": 0.07025627214070655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5237265487457912,\n          \"Y\": 0.053799476478384047\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5564083061500829,\n          \"Y\": 0.03858759135731976\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.5903190852663619,\n          \"Y\": 0.02250634762532965\n         },\n         {\n          \"Outlier\": \"\\\"inferred: SMC\\\"\",\n          \"X\": -0.6205951111366921,\n          \"Y\": 0.004388063310678893\n         }\n        ]\n       },\n       \"encoding\": {\n        \"color\": {\n         \"field\": \"Outlier\"\n        },\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"circle\",\n       \"width\": 400\n      },\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAiUAAAG/CAYAAACHeKdTAAAAAXNSR0IArs4c6QAAIABJREFUeF7snQt8FNX593+zmwtXFQQRhVZAEEWxVRG14gWtFwwBhRCttfp/q62KVUQUAmJRhIC21YIWa8ULFTUYromgiFdAi4KgKIKiqAhKAAUChCS7O+/nTEjIZnPZ2edscnbym/fzf4vk/Gae832emfw4c+Ycy7ZtGzxIgARIgARIgARIoIEJWDQlDZwBXp4ESIAESIAESMAhQFPCQiABEiABEiABEjCCAE2JEWlgECRAAiRAAiRAAjQlrAESIAESIAESIAEjCNCUGJEGBkECJEACJEACJEBTwhogARIgARIgARIwgkBcTEkwGMTf/vY3zJ49Gx988EFER9VXyCNHjsTq1asRCAQwadIk9O7d2wggDIIESIAESIAESKBhCMTFlDz++OM4+uijcccdd+D777+P6NmSJUvw7LPP4vnnn8eWLVuQnp6OVatWNQwBXpUESIAESIAESMAIAnExJeU969ChQ7Wm5L777sMJJ5yAa6+91ml6xhlnYPHixWjdurURUBgECZAACZAACZBA/RNoEFNy6623ol+/fkhLS3N6fPHFF2PatGno2rUrli1bhuXLl4eRaNu2LS644IL6p8MrkgAJkAAJJDQBNV2gS5cuCd2HxhR8g5iSMWPG4OSTT8Y111zjsD7zzDOxaNEiHHnkkdWynzx5sjMHxdTj66+/RufOnU0ND4xPlhryIz8ZAZma9WcOP2VwcnNz8dprr6GwsBDHH388brrpJhx33HF1Brl7927s27cPxxxzDN577z307dsXeXl5aN68ecWff/vb39Z5Hq83qFdTopLYokULLFy4EPPnz8eTTz6JHTt2OCMla9asqZE1TYmsDPlQIz8ZAZma9Ud+MgIytc76UwbkqaeewkUXXYRf/OIXePXVVx1z8vrrr+Oss86qNdBhw4Zh7969jl69EejTp4/zj3H1FkDNvVRmpVmzZrLOekAdF1Ny1113ORNX33//fZx99tm48sornUmv3bt3h5rkquBff/312LVrl2NKJk6ciAsvvJCmJE4FpfOmjEeIjE9GlfzIT0ZApm4s9bdixQrHeIwaNQrZ2dkOtIKCApx00knOiMn//vc/ZGZmOr/fHnnkEcesKOMxfPhwfPPNN3jooYeQmpqK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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"a = (\\\\(x,d) -> zip x (Prelude.repeat $ T.pack \\\"inferred: SMC\\\")) =<< sSMC\\n\",\n    \"\\n\",\n    \"plot $ zip positions (Prelude.repeat $ T.pack \\\"prior\\\") <> take 10000 a\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": []\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"sRMSMC <- sampleIOfixed $ runPopulationT $ rmsmcBasic\\n\",\n    \"    MCMCConfig {numMCMCSteps = 50, numBurnIn = 0, proposal = SingleSiteMH}\\n\",\n    \"    SMCConfig {numSteps = numPoints, numParticles = 10, resampler = resampleSystematic} \\n\",\n    \"    $ P.toListM $ model observations\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.004040813897471044,\n          \"Y\": 0.9449190340942227\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.012150145221787412,\n          \"Y\": 0.9274840162884911\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.016860379454206022,\n          \"Y\": 0.9084312248689684\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.01641581595718638,\n          \"Y\": 0.8887040051034267\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.015828991403087755,\n          \"Y\": 0.8674914294672441\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.013970393980576864,\n          \"Y\": 0.8491059059946388\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.013001848439189199,\n          \"Y\": 0.8269556146407302\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.01410869793872522,\n          \"Y\": 0.8038747409690314\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.01891146561873628,\n          \"Y\": 0.7845426338677167\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.018379957973462722,\n          \"Y\": 0.7690718944391366\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.019385135042090187,\n          \"Y\": 0.7533513585553672\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.021669742734900348,\n          \"Y\": 0.7352018223991866\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.021156808398970484,\n          \"Y\": 0.7192462544141534\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.01993478817383033,\n          \"Y\": 0.7047315558870912\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.012857449682167671,\n          \"Y\": 0.6860649039570736\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": 0.0036585006460101623,\n          \"Y\": 0.6652639227003978\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.006704504890859797,\n          \"Y\": 0.6407731335881577\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.01875148718315546,\n          \"Y\": 0.6119187708433766\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.03144164055357166,\n          \"Y\": 0.5811819303837852\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.05337633763916294,\n          \"Y\": 0.5490664469820896\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.07909088956959608,\n          \"Y\": 0.5147636649156484\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.10852176412035312,\n          \"Y\": 0.4771049794440802\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.1415041339372596,\n          \"Y\": 0.4358158404651159\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.17802868429398142,\n          \"Y\": 0.3982038738682732\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.21934710951238376,\n          \"Y\": 0.3670200926908218\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.26185119674488966,\n          \"Y\": 0.3397953088971217\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.3048405327299023,\n          \"Y\": 0.3115994429918755\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.3390203782102853,\n          \"Y\": 0.2796626489022578\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.3763687877889552,\n          \"Y\": 0.25260454272789823\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.4139616671134319,\n          \"Y\": 0.22373706411803673\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.4536834468207761,\n          \"Y\": 0.20157554577872092\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.49218501672059023,\n          \"Y\": 0.1788270187745313\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.5348912174560139,\n          \"Y\": 0.1577231534193479\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.5830061761886975,\n          \"Y\": 0.1372253105135145\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.6318383342252785,\n          \"Y\": 0.11904963434534747\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.684053191400329,\n          \"Y\": 0.09799287602519839\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.7356802946475065,\n          \"Y\": 0.07233980458833347\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.7811584193497797,\n          \"Y\": 0.04963154818166052\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.8289870413375418,\n          \"Y\": 0.026265300163843604\n         },\n         {\n          \"Outlier\": \"\\\"prior\\\"\",\n          \"X\": -0.8814219602100856,\n          \"Y\": 0.0033672219692231498\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.009410967595545772,\n          \"Y\": 0.9467274097909931\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.010296375679498098,\n          \"Y\": 0.9435472970911881\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.013319936905183356,\n          \"Y\": 0.9394485502705697\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02000789756456543,\n          \"Y\": 0.936721606646251\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02389206252136242,\n          \"Y\": 0.9346229075164824\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02189748247339938,\n          \"Y\": 0.9267714299246226\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.025824833951295978,\n          \"Y\": 0.9169967796038087\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02665853998923309,\n          \"Y\": 0.9062276765688088\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02730757135572791,\n          \"Y\": 0.8925575772247655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.027829366700922935,\n          \"Y\": 0.8730234043625444\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02554265602614982,\n          \"Y\": 0.8533462490277748\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.026558886333323508,\n          \"Y\": 0.8282144476945056\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.028682203652753403,\n          \"Y\": 0.8009355034550913\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.028799803056951748,\n          \"Y\": 0.7712901966819744\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02445263550073632,\n          \"Y\": 0.7417673628129733\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.013314444247533929,\n          \"Y\": 0.7053208537289923\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.004083245717426246,\n          \"Y\": 0.6696806573230097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.019158169877899145,\n          \"Y\": 0.6349986344372018\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.036960310690805256,\n          \"Y\": 0.6000666768403518\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.059586848859735995,\n          \"Y\": 0.5619649140933167\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.08308217602610972,\n          \"Y\": 0.5205112809185841\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.11234924187526288,\n          \"Y\": 0.47958323069046094\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.14697041449342838,\n          \"Y\": 0.44006703115257023\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.1813128555878352,\n          \"Y\": 0.4040391131089684\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.22041937520295213,\n          \"Y\": 0.3701126625100612\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.2625104990211642,\n          \"Y\": 0.3405094174447242\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.30314619862637304,\n          \"Y\": 0.31110513366839554\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.34074549829404593,\n          \"Y\": 0.2835629444636712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.37500688705405216,\n          \"Y\": 0.25418547331478214\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.41213544214135023,\n          \"Y\": 0.2235086902748926\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.4473691337423051,\n          \"Y\": 0.19861365649752036\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.48520152357181007,\n          \"Y\": 0.1767311422549989\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5204931838329226,\n          \"Y\": 0.15624517757883935\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.557164057796764,\n          \"Y\": 0.1340274260229287\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5957461822970941,\n          \"Y\": 0.11349416261367107\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.6300704933177195,\n          \"Y\": 0.09498835318727497\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.6668629394068296,\n          \"Y\": 0.07426423253518108\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.6995413651893544,\n          \"Y\": 0.053175213056351714\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.7310712572464292,\n          \"Y\": 0.030648100417335865\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.765367004688498,\n          \"Y\": 0.01014859535350203\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.009410967595545772,\n          \"Y\": 0.9467274097909931\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.010296375679498098,\n          \"Y\": 0.9435472970911881\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.013319936905183356,\n          \"Y\": 0.9394485502705697\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02000789756456543,\n          \"Y\": 0.936721606646251\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02389206252136242,\n          \"Y\": 0.9346229075164824\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02189748247339938,\n          \"Y\": 0.9267714299246226\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.025824833951295978,\n          \"Y\": 0.9169967796038087\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02665853998923309,\n          \"Y\": 0.9062276765688088\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02730757135572791,\n          \"Y\": 0.8925575772247655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.027829366700922935,\n          \"Y\": 0.8730234043625444\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02554265602614982,\n          \"Y\": 0.8533462490277748\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.026695831399355243,\n          \"Y\": 0.8282144476945056\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.028956093784816873,\n          \"Y\": 0.8009355034550913\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.029210638255046953,\n          \"Y\": 0.7712901966819744\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02500041576486326,\n          \"Y\": 0.7417673628129733\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.013999169577692604,\n          \"Y\": 0.7053208537289923\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.0032615753212358357,\n          \"Y\": 0.6696806573230097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.018199554415677,\n          \"Y\": 0.6349986344372018\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.035864750162551376,\n          \"Y\": 0.6000666768403518\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.05835434326545038,\n          \"Y\": 0.5619649140933167\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.08171272536579237,\n          \"Y\": 0.5205112809185841\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.11084284614891379,\n          \"Y\": 0.47958323069046094\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.14532707370104755,\n          \"Y\": 0.44006703115257023\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.17953256972942264,\n          \"Y\": 0.4040391131089684\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.21850214427850784,\n          \"Y\": 0.3701126625100612\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.26045632303068816,\n          \"Y\": 0.3405094174447242\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.3009550775698653,\n          \"Y\": 0.31110513366839554\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.33841743217150644,\n          \"Y\": 0.2835629444636712\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.37254187586548093,\n          \"Y\": 0.25418547331478214\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.4095334858867472,\n          \"Y\": 0.2235086902748926\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.4415557145926518,\n          \"Y\": 0.19861365649752036\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.47617664152710654,\n          \"Y\": 0.1767311422549989\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5123310712421772,\n          \"Y\": 0.15624517757883935\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5498647146599768,\n          \"Y\": 0.1340274260229287\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5893096086142648,\n          \"Y\": 0.11349416261367107\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.6287103315896534,\n          \"Y\": 0.09498835318727497\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.6705791896335266,\n          \"Y\": 0.07426423253518108\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.7122961578346972,\n          \"Y\": 0.053175213056351714\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.7528645923104179,\n          \"Y\": 0.030648100417335865\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.7961988821711328,\n          \"Y\": 0.007728701760656348\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.009410967595545772,\n          \"Y\": 0.9467274097909931\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.010296375679498098,\n          \"Y\": 0.9435472970911881\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.013319936905183356,\n          \"Y\": 0.9394485502705697\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02000789756456543,\n          \"Y\": 0.936721606646251\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02389206252136242,\n          \"Y\": 0.9346229075164824\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02189748247339938,\n          \"Y\": 0.9267714299246226\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.025824833951295978,\n          \"Y\": 0.9169967796038087\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02665853998923309,\n          \"Y\": 0.9062276765688088\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02730757135572791,\n          \"Y\": 0.8925575772247655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.027829366700922935,\n          \"Y\": 0.8730234043625444\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02554265602614982,\n          \"Y\": 0.8533462490277748\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.026695831399355243,\n          \"Y\": 0.8282144476945056\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.028956093784816873,\n          \"Y\": 0.8009355034550913\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.029381177840480673,\n          \"Y\": 0.7712901966819744\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.0253414949357307,\n          \"Y\": 0.7417673628129733\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.01451078833399376,\n          \"Y\": 0.7053208537289923\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.002579416979500964,\n          \"Y\": 0.6696806573230097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.01734685648850841,\n          \"Y\": 0.6349986344372018\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.03484151264994907,\n          \"Y\": 0.6001399712730898\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.057160566167414356,\n          \"Y\": 0.5621115029587929\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.08034840868232263,\n          \"Y\": 0.5206305308216507\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.10930798988001032,\n          \"Y\": 0.47967514163111785\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.14362167784671037,\n          \"Y\": 0.44013160313081756\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.17765663428965173,\n          \"Y\": 0.40392207495040333\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.21645566925330323,\n          \"Y\": 0.3696338324815025\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.25917259124496944,\n          \"Y\": 0.33966879554617185\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.300205638911785,\n          \"Y\": 0.3099027198998496\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.33909784371030016,\n          \"Y\": 0.2819987388251316\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.3751152591754063,\n          \"Y\": 0.25329561587825766\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.4125495823633271,\n          \"Y\": 0.2232931810403832\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.4464612743908316,\n          \"Y\": 0.19907249546502606\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.48003296544324797,\n          \"Y\": 0.1775016695486978\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5141333712302704,\n          \"Y\": 0.15732739319873149\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5463204442774224,\n          \"Y\": 0.13269033167737498\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5831563313299571,\n          \"Y\": 0.1102503960789711\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.6196911304334671,\n          \"Y\": 0.09061347846972317\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.6586768647106479,\n          \"Y\": 0.06698735081299483\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.6989259294800346,\n          \"Y\": 0.04560832102023001\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.7348706567397809,\n          \"Y\": 0.025049728624555425\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.7695444713456311,\n          \"Y\": 0.007264473587541998\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.009410967595545772,\n          \"Y\": 0.9467274097909931\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.010296375679498098,\n          \"Y\": 0.9435472970911881\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.013319936905183356,\n          \"Y\": 0.9394485502705697\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02000789756456543,\n          \"Y\": 0.936721606646251\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02389206252136242,\n          \"Y\": 0.9346229075164824\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02189748247339938,\n          \"Y\": 0.9267714299246226\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.025824833951295978,\n          \"Y\": 0.9169967796038087\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02665853998923309,\n          \"Y\": 0.9062276765688088\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02730757135572791,\n          \"Y\": 0.8925575772247655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.027829366700922935,\n          \"Y\": 0.8730234043625444\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02554265602614982,\n          \"Y\": 0.8533462490277748\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.026695831399355243,\n          \"Y\": 0.8282144476945056\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.028956093784816873,\n          \"Y\": 0.8009355034550913\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.029381177840480673,\n          \"Y\": 0.7712901966819744\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.0253414949357307,\n          \"Y\": 0.7417673628129733\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.01451078833399376,\n          \"Y\": 0.7053208537289923\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.002579416979500964,\n          \"Y\": 0.6696806573230097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.01734685648850841,\n          \"Y\": 0.6349986344372018\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.03484151264994907,\n          \"Y\": 0.6000666768403518\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.057160566167414356,\n          \"Y\": 0.5619649140933167\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.08034840868232263,\n          \"Y\": 0.5204106475234365\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.10930798988001032,\n          \"Y\": 0.4793819639001656\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.14362167784671037,\n          \"Y\": 0.4397651309671272\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.17765663428965173,\n          \"Y\": 0.4034823083539749\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.21645566925330323,\n          \"Y\": 0.369120771452336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.25823930842004983,\n          \"Y\": 0.3390824400842673\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.2983390732619457,\n          \"Y\": 0.30924307000520695\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.3362979952355412,\n          \"Y\": 0.2812657944977509\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.37138212787572766,\n          \"Y\": 0.2524893771181389\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.4078831682387289,\n          \"Y\": 0.22241364784752637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.44086157744131377,\n          \"Y\": 0.19811966783943116\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.47349998566881046,\n          \"Y\": 0.17647554749036481\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5066671086309131,\n          \"Y\": 0.15622797670766042\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5417468521070992,\n          \"Y\": 0.13151762075356585\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5776838115990157,\n          \"Y\": 0.10900439072242388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.6123208243633929,\n          \"Y\": 0.08917487731289964\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.6458628119496247,\n          \"Y\": 0.06535615385589497\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.6806681300280625,\n          \"Y\": 0.043784528262853825\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.7139736288783997,\n          \"Y\": 0.02303334006690291\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.7493344552256145,\n          \"Y\": 0.0019189563796947404\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.009410967595545772,\n          \"Y\": 0.9467274097909931\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.010296375679498098,\n          \"Y\": 0.9435472970911881\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.013319936905183356,\n          \"Y\": 0.9394485502705697\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02000789756456543,\n          \"Y\": 0.936721606646251\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02389206252136242,\n          \"Y\": 0.9346229075164824\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02189748247339938,\n          \"Y\": 0.9267714299246226\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.025824833951295978,\n          \"Y\": 0.9169967796038087\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02665853998923309,\n          \"Y\": 0.9062276765688088\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02730757135572791,\n          \"Y\": 0.8925575772247655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.027829366700922935,\n          \"Y\": 0.8730234043625444\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02554265602614982,\n          \"Y\": 0.8533462490277748\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.026695831399355243,\n          \"Y\": 0.8282144476945056\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.028956093784816873,\n          \"Y\": 0.8009355034550913\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.029381177840480673,\n          \"Y\": 0.7712901966819744\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.0253414949357307,\n          \"Y\": 0.7417673628129733\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.01451078833399376,\n          \"Y\": 0.7053208537289923\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.002579416979500964,\n          \"Y\": 0.6696806573230097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.01734685648850841,\n          \"Y\": 0.6349986344372018\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.03484151264994907,\n          \"Y\": 0.6000666768403518\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.057160566167414356,\n          \"Y\": 0.5619649140933167\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.08034840868232263,\n          \"Y\": 0.5204106475234365\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.10930798988001032,\n          \"Y\": 0.4793819639001656\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.14362167784671037,\n          \"Y\": 0.4397651309671272\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.17765663428965173,\n          \"Y\": 0.4034823083539749\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.21645566925330323,\n          \"Y\": 0.369120771452336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.25823930842004983,\n          \"Y\": 0.3390824400842673\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.2983390732619457,\n          \"Y\": 0.30924307000520695\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.3362979952355412,\n          \"Y\": 0.2812657944977509\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.37138212787572766,\n          \"Y\": 0.2524893771181389\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.4078831682387289,\n          \"Y\": 0.22241364784752637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.44086157744131377,\n          \"Y\": 0.19811966783943116\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.47349998566881046,\n          \"Y\": 0.17647554749036481\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5066671086309131,\n          \"Y\": 0.15622797670766042\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5417468521070992,\n          \"Y\": 0.13151762075356585\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.581475409588668,\n          \"Y\": 0.10900439072242388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.620902879121212,\n          \"Y\": 0.08917487731289964\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.6595613643117261,\n          \"Y\": 0.06535615385589497\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.7017144773193058,\n          \"Y\": 0.043784528262853825\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.7454691108218506,\n          \"Y\": 0.024307077617078482\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.7879528316704993,\n          \"Y\": 0.007602964329964303\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.009410967595545772,\n          \"Y\": 0.9467274097909931\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.010296375679498098,\n          \"Y\": 0.9435472970911881\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.013319936905183356,\n          \"Y\": 0.9394485502705697\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02000789756456543,\n          \"Y\": 0.936721606646251\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02389206252136242,\n          \"Y\": 0.9346229075164824\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02189748247339938,\n          \"Y\": 0.9267714299246226\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.025824833951295978,\n          \"Y\": 0.9169967796038087\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02665853998923309,\n          \"Y\": 0.9062276765688088\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02730757135572791,\n          \"Y\": 0.8925575772247655\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.027829366700922935,\n          \"Y\": 0.8730234043625444\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02554265602614982,\n          \"Y\": 0.8533462490277748\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.026695831399355243,\n          \"Y\": 0.8282144476945056\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.028956093784816873,\n          \"Y\": 0.8009355034550913\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.029381177840480673,\n          \"Y\": 0.7712901966819744\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.0253414949357307,\n          \"Y\": 0.7417673628129733\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.01451078833399376,\n          \"Y\": 0.7053208537289923\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.002579416979500964,\n          \"Y\": 0.6696806573230097\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.01734685648850841,\n          \"Y\": 0.6349986344372018\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.03484151264994907,\n          \"Y\": 0.6000666768403518\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.057160566167414356,\n          \"Y\": 0.5619649140933167\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.08034840868232263,\n          \"Y\": 0.5204106475234365\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.10930798988001032,\n          \"Y\": 0.4793819639001656\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.14362167784671037,\n          \"Y\": 0.4397651309671272\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.17765663428965173,\n          \"Y\": 0.4034823083539749\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.21645566925330323,\n          \"Y\": 0.369120771452336\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.25823930842004983,\n          \"Y\": 0.3390824400842673\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.2983390732619457,\n          \"Y\": 0.30924307000520695\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.3362979952355412,\n          \"Y\": 0.2812657944977509\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.37138212787572766,\n          \"Y\": 0.2524893771181389\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.4078831682387289,\n          \"Y\": 0.22241364784752637\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.44086157744131377,\n          \"Y\": 0.19811966783943116\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.47349998566881046,\n          \"Y\": 0.17647554749036481\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5066671086309131,\n          \"Y\": 0.15622797670766042\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5401137909618443,\n          \"Y\": 0.13151762075356585\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5782092872981581,\n          \"Y\": 0.10900439072242388\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.6170948426633659,\n          \"Y\": 0.08917487731289964\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.6590270224484086,\n          \"Y\": 0.06535615385589497\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.7022225327256573,\n          \"Y\": 0.043784528262853825\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.7411137054932654,\n          \"Y\": 0.023183783084886167\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.7827725337012837,\n          \"Y\": 0.004589249932374272\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.009410967595545772,\n          \"Y\": 0.9453479854092705\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.010296375679498098,\n          \"Y\": 0.9421678727094654\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.013319936905183356,\n          \"Y\": 0.938069125888847\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02000789756456543,\n          \"Y\": 0.9353831185539387\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02389206252136242,\n          \"Y\": 0.9332695323410425\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02189748247339938,\n          \"Y\": 0.925403167666055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.025824833951295978,\n          \"Y\": 0.9158334402964013\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02665853998923309,\n          \"Y\": 0.9052692602125616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.027253470185046123,\n          \"Y\": 0.8918040838196785\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.027721164359559358,\n          \"Y\": 0.8724748339086177\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.025380352514104455,\n          \"Y\": 0.8530026015250082\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02647942671662809,\n          \"Y\": 0.8280757231428991\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.028685587931407935,\n          \"Y\": 0.801001701854645\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.028886031230956226,\n          \"Y\": 0.7715613180326883\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.024556257667299963,\n          \"Y\": 0.7419704889840638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.013435460406656736,\n          \"Y\": 0.7054559847204596\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.003944835565744275,\n          \"Y\": 0.6697638993916774\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.01900236573365801,\n          \"Y\": 0.6350299875830699\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.036787112554004964,\n          \"Y\": 0.6000461410634202\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.05939625673037654,\n          \"Y\": 0.5618924893935856\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.0828741899041911,\n          \"Y\": 0.5202863339009057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.11212386176078509,\n          \"Y\": 0.4790079877771239\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.14672764038639144,\n          \"Y\": 0.4391414923435746\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.181497099837004,\n          \"Y\": 0.40260900722991133\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.22029008065491024,\n          \"Y\": 0.3679523064448994\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.2626524309966449,\n          \"Y\": 0.33761881119345766\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.3024473349139499,\n          \"Y\": 0.30735709141416484\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.3414314795054989,\n          \"Y\": 0.27895746620647627\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.37697298258267903,\n          \"Y\": 0.2507108269377487\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.4157389037420603,\n          \"Y\": 0.22675393092941498\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.4541264304284575,\n          \"Y\": 0.20145170753150235\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.4964873196168898,\n          \"Y\": 0.17988754561893905\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.535945660057487,\n          \"Y\": 0.15887277374519315\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5773686144882101,\n          \"Y\": 0.13638570866897337\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.6176176868566647,\n          \"Y\": 0.11285862993784762\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.6591466683586606,\n          \"Y\": 0.09346473659093016\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.6986526505595524,\n          \"Y\": 0.07053000363965028\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.7348081995928503,\n          \"Y\": 0.05024020505045808\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.7690050130800572,\n          \"Y\": 0.0359804581206518\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.8019557002845479,\n          \"Y\": 0.020699618292371484\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.009410967595545772,\n          \"Y\": 0.9453479854092705\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.010296375679498098,\n          \"Y\": 0.9421678727094654\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.013319936905183356,\n          \"Y\": 0.938069125888847\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02000789756456543,\n          \"Y\": 0.9353831185539387\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02389206252136242,\n          \"Y\": 0.9332695323410425\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02189748247339938,\n          \"Y\": 0.925403167666055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.025824833951295978,\n          \"Y\": 0.9158334402964013\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02665853998923309,\n          \"Y\": 0.9052692602125616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.027253470185046123,\n          \"Y\": 0.8918040838196785\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.027721164359559358,\n          \"Y\": 0.8724748339086177\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.025380352514104455,\n          \"Y\": 0.8530026015250082\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02647942671662809,\n          \"Y\": 0.8280757231428991\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.028685587931407935,\n          \"Y\": 0.801001701854645\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.028886031230956226,\n          \"Y\": 0.7715613180326883\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.024556257667299963,\n          \"Y\": 0.7419704889840638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.013435460406656736,\n          \"Y\": 0.7054559847204596\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.003944835565744275,\n          \"Y\": 0.6697638993916774\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.01900236573365801,\n          \"Y\": 0.6350299875830699\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.036787112554004964,\n          \"Y\": 0.6000461410634202\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.05939625673037654,\n          \"Y\": 0.5618924893935856\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.0828741899041911,\n          \"Y\": 0.5202863339009057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.11212386176078509,\n          \"Y\": 0.4790079877771239\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.14672764038639144,\n          \"Y\": 0.439067652397251\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.181497099837004,\n          \"Y\": 0.40246132733726414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.22029008065491024,\n          \"Y\": 0.3677307866059286\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.2626524309966449,\n          \"Y\": 0.33732345140816333\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.3024473349139499,\n          \"Y\": 0.3069878916825469\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.3414314795054989,\n          \"Y\": 0.27851442652853475\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.37697298258267903,\n          \"Y\": 0.2501939473134836\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.4116255875517516,\n          \"Y\": 0.2261632113588263\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.44589979804784013,\n          \"Y\": 0.20078714801459008\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.4841473710459637,\n          \"Y\": 0.17914914615570318\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5207360327452443,\n          \"Y\": 0.15806053433563372\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5581846033588332,\n          \"Y\": 0.13549962931309034\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5944592919101538,\n          \"Y\": 0.1117826903145483\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.627995466239501,\n          \"Y\": 0.09219893670021453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.6563777957263693,\n          \"Y\": 0.06919752220619217\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.6874332403527487,\n          \"Y\": 0.04981964787347274\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.7225863881185116,\n          \"Y\": 0.033352482279871754\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.7614175293384061,\n          \"Y\": 0.015864223787796724\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.009410967595545772,\n          \"Y\": 0.9453479854092705\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.010296375679498098,\n          \"Y\": 0.9421678727094654\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.013319936905183356,\n          \"Y\": 0.938069125888847\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02000789756456543,\n          \"Y\": 0.9353831185539387\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02389206252136242,\n          \"Y\": 0.9332695323410425\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02189748247339938,\n          \"Y\": 0.925403167666055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.025824833951295978,\n          \"Y\": 0.9158334402964013\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02665853998923309,\n          \"Y\": 0.9052692602125616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.027253470185046123,\n          \"Y\": 0.8918040838196785\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.027721164359559358,\n          \"Y\": 0.8724748339086177\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.025380352514104455,\n          \"Y\": 0.8530026015250082\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02647942671662809,\n          \"Y\": 0.8280757231428991\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.028685587931407935,\n          \"Y\": 0.801001701854645\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.028886031230956226,\n          \"Y\": 0.7715613180326883\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.024556257667299963,\n          \"Y\": 0.7419704889840638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.013435460406656736,\n          \"Y\": 0.7054559847204596\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.003944835565744275,\n          \"Y\": 0.6697638993916774\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.01900236573365801,\n          \"Y\": 0.6350299875830699\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.036787112554004964,\n          \"Y\": 0.6000461410634202\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.05939625673037654,\n          \"Y\": 0.5618924893935856\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.0828741899041911,\n          \"Y\": 0.5202863339009057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.11212386176078509,\n          \"Y\": 0.4790079877771239\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.14672764038639144,\n          \"Y\": 0.439067652397251\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.181497099837004,\n          \"Y\": 0.40246132733726414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.22029008065491024,\n          \"Y\": 0.3677307866059286\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.2626524309966449,\n          \"Y\": 0.33732345140816333\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.3024473349139499,\n          \"Y\": 0.3069878916825469\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.3414314795054989,\n          \"Y\": 0.27851442652853475\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.37697298258267903,\n          \"Y\": 0.2501235385962399\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.4116255875517516,\n          \"Y\": 0.22602239392433898\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.44589979804784013,\n          \"Y\": 0.20057592186285914\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.4841473710459637,\n          \"Y\": 0.17886751128672862\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5207360327452443,\n          \"Y\": 0.1571962040076392\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5581846033588332,\n          \"Y\": 0.13405260352607587\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5944592919101538,\n          \"Y\": 0.10975296906851387\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.627995466239501,\n          \"Y\": 0.08958651999516015\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.6563777957263693,\n          \"Y\": 0.06600241004211783\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.6814974730168428,\n          \"Y\": 0.04604184025037844\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.7092979458768159,\n          \"Y\": 0.02779000519706246\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.7407764121909206,\n          \"Y\": 0.008517077245272436\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.009410967595545772,\n          \"Y\": 0.9453479854092705\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.010296375679498098,\n          \"Y\": 0.9421678727094654\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.013319936905183356,\n          \"Y\": 0.938069125888847\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02000789756456543,\n          \"Y\": 0.9353831185539387\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02389206252136242,\n          \"Y\": 0.9332695323410425\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02189748247339938,\n          \"Y\": 0.925403167666055\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.025824833951295978,\n          \"Y\": 0.9158334402964013\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02665853998923309,\n          \"Y\": 0.9052692602125616\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.027253470185046123,\n          \"Y\": 0.8918040838196785\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.027721164359559358,\n          \"Y\": 0.8724748339086177\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.025380352514104455,\n          \"Y\": 0.8530026015250082\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.02647942671662809,\n          \"Y\": 0.8280757231428991\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.028685587931407935,\n          \"Y\": 0.801001701854645\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.028886031230956226,\n          \"Y\": 0.7715613180326883\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.024556257667299963,\n          \"Y\": 0.7419704889840638\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": 0.013435460406656736,\n          \"Y\": 0.7054559847204596\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.003944835565744275,\n          \"Y\": 0.6697638993916774\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.01900236573365801,\n          \"Y\": 0.6350299875830699\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.036787112554004964,\n          \"Y\": 0.6000461410634202\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.05939625673037654,\n          \"Y\": 0.5618924893935856\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.0828741899041911,\n          \"Y\": 0.5202863339009057\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.11212386176078509,\n          \"Y\": 0.4790079877771239\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.14672764038639144,\n          \"Y\": 0.439067652397251\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.181497099837004,\n          \"Y\": 0.40246132733726414\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.22029008065491024,\n          \"Y\": 0.3677307866059286\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.2626524309966449,\n          \"Y\": 0.33732345140816333\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.3024473349139499,\n          \"Y\": 0.3069878916825469\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.3414314795054989,\n          \"Y\": 0.27851442652853475\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.37697298258267903,\n          \"Y\": 0.2501939473134836\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.4109810964891817,\n          \"Y\": 0.2261632113588263\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.44461081592270035,\n          \"Y\": 0.20078714801459008\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.4822138978582541,\n          \"Y\": 0.17914914615570318\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5199044134217659,\n          \"Y\": 0.15806053433563372\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.554823027174373,\n          \"Y\": 0.13549962931309034\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.5885677588647118,\n          \"Y\": 0.1117826903145483\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.6195739763330772,\n          \"Y\": 0.09219893670021453\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.6514124667588541,\n          \"Y\": 0.06919752220619217\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.6815954439468591,\n          \"Y\": 0.04981964787347274\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.7158761242742477,\n          \"Y\": 0.03215050827917672\n         },\n         {\n          \"Outlier\": \"\\\"inferred: RMSMC\\\"\",\n          \"X\": -0.7538347980557679,\n          \"Y\": 0.013460275786406652\n         }\n        ]\n       },\n       \"encoding\": {\n        \"color\": {\n         \"field\": \"Outlier\"\n        },\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"circle\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"a = (\\\\(x,d) -> zip x (Prelude.repeat $ T.pack \\\"inferred: RMSMC\\\")) =<< sRMSMC\\n\",\n    \"\\n\",\n    \"plot $ zip positions (Prelude.repeat $ T.pack \\\"prior\\\") <> take 10000 a\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The good results are if the inferred distribution is close to prior, as observed samples are only modified by a small noise from prior.\\n\",\n    \"\\n\",\n    \"And it works! Look how few particles it needed.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Particle Marginal Metropolis Hastings (PMMH)\\n\",\n    \"\\n\",\n    \"PMMH is fundamentally an MCMC technique. It performs a random walk through parameter space, but to estimate the likelihood at each step, it uses an unbiased estimate from a population of samples. We'll reuse the regression with outliers example from `tutorials/MCMC.ipynb`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -10,\n          \"Y\": 30.14316922289284\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -9.9,\n          \"Y\": -0.26284958638081857\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -9.8,\n          \"Y\": 18.535731623658606\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -9.700000000000001,\n          \"Y\": -68.99193947945726\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -9.600000000000001,\n          \"Y\": -8.043397861176732\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -9.500000000000002,\n          \"Y\": 32.14739624905583\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -9.400000000000002,\n          \"Y\": -23.81048273352878\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -9.300000000000002,\n          \"Y\": 17.786702036490702\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -9.200000000000003,\n          \"Y\": 23.375038991852755\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -9.100000000000003,\n          \"Y\": 25.793440850750983\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -9.000000000000004,\n          \"Y\": 24.42143345836998\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -8.900000000000004,\n          \"Y\": 21.51934491681228\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -8.800000000000004,\n          \"Y\": 31.353977381067146\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -8.700000000000005,\n          \"Y\": 18.278561094651828\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -8.600000000000005,\n          \"Y\": 33.00501809401699\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -8.500000000000005,\n          \"Y\": 6.437669090883507\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -8.400000000000006,\n          \"Y\": -37.03228429479993\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -8.300000000000006,\n          \"Y\": 13.11298520672979\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -8.200000000000006,\n          \"Y\": 21.21403593146131\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -8.100000000000007,\n          \"Y\": 11.824928463235018\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -8.000000000000007,\n          \"Y\": 21.72725799674079\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -7.9000000000000075,\n          \"Y\": 29.057062960826705\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -7.800000000000008,\n          \"Y\": 20.649998496823716\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -7.700000000000008,\n          \"Y\": 8.660181503529154\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -7.6000000000000085,\n          \"Y\": 15.408422855489516\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -7.500000000000009,\n          \"Y\": 0.3644817992929184\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -7.400000000000009,\n          \"Y\": -21.224596735432097\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -7.30000000000001,\n          \"Y\": -5.08262280552811\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -7.20000000000001,\n          \"Y\": -22.40271677868227\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -7.10000000000001,\n          \"Y\": 30.244036005466885\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -7.000000000000011,\n          \"Y\": 40.6554142943223\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -6.900000000000011,\n          \"Y\": 0.7924834976117429\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -6.800000000000011,\n          \"Y\": -3.0689825793534142\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -6.700000000000012,\n          \"Y\": 2.0777625946734073\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -6.600000000000012,\n          \"Y\": 12.550388887411348\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -6.500000000000012,\n          \"Y\": 4.46724475614298\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -6.400000000000013,\n          \"Y\": -1.5461624315036717\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -6.300000000000013,\n          \"Y\": 24.71362894119821\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -6.2000000000000135,\n          \"Y\": 42.412216707046596\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -6.100000000000014,\n          \"Y\": 18.557621556888908\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -6.000000000000014,\n          \"Y\": 9.641681498947396\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -5.900000000000015,\n          \"Y\": 14.163347001302109\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -5.800000000000015,\n          \"Y\": 20.84295190897201\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -5.700000000000015,\n          \"Y\": 4.130260844964003\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -5.600000000000016,\n          \"Y\": 10.475034728856496\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -5.500000000000016,\n          \"Y\": 19.404328857643684\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -5.400000000000016,\n          \"Y\": 6.909511750502322\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -5.300000000000017,\n          \"Y\": 24.44453706966264\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -5.200000000000017,\n          \"Y\": -14.86585011237548\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -5.100000000000017,\n          \"Y\": -27.7443807834266\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -5.000000000000018,\n          \"Y\": 18.14228368221277\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -4.900000000000018,\n          \"Y\": 26.622225089502074\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -4.8000000000000185,\n          \"Y\": 7.975229527386173\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -4.700000000000019,\n          \"Y\": -2.236758643252085\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -4.600000000000019,\n          \"Y\": 25.095015724308034\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -4.5000000000000195,\n          \"Y\": 17.18991809253406\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -4.40000000000002,\n          \"Y\": -24.744360068281004\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -4.30000000000002,\n          \"Y\": -7.931801457689884\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -4.200000000000021,\n          \"Y\": 8.09920420163646\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -4.100000000000021,\n          \"Y\": 14.383701713795746\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -4.000000000000021,\n          \"Y\": 7.20943981411068\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -3.9000000000000217,\n          \"Y\": -7.806116027860427\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -3.800000000000022,\n          \"Y\": 16.98021084694896\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -3.7000000000000224,\n          \"Y\": 14.379488244709558\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -3.6000000000000227,\n          \"Y\": 10.476203691783232\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -3.500000000000023,\n          \"Y\": 18.54439155366095\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -3.4000000000000234,\n          \"Y\": 17.443166242574943\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -3.300000000000024,\n          \"Y\": 28.868081826988078\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -3.200000000000024,\n          \"Y\": -0.36221408177898484\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -3.1000000000000245,\n          \"Y\": 18.75847005425409\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -3.000000000000025,\n          \"Y\": -6.3470305289160835\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -2.9000000000000252,\n          \"Y\": 10.805876165134304\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -2.8000000000000256,\n          \"Y\": 43.073138049536766\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -2.700000000000026,\n          \"Y\": 21.39560142763903\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -2.6000000000000263,\n          \"Y\": 20.17816530884579\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -2.5000000000000266,\n          \"Y\": 10.593481420961691\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -2.400000000000027,\n          \"Y\": 24.67140741709269\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -2.3000000000000274,\n          \"Y\": 3.7143759689601357\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -2.2000000000000277,\n          \"Y\": 4.205664689951466\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -2.100000000000028,\n          \"Y\": 5.696299360450189\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -2.0000000000000284,\n          \"Y\": 14.405714990070868\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -1.9000000000000288,\n          \"Y\": 13.570785875314327\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -1.8000000000000291,\n          \"Y\": 25.768223310681986\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -1.7000000000000295,\n          \"Y\": -37.59090989382119\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -1.6000000000000298,\n          \"Y\": 23.64144553913516\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -1.5000000000000302,\n          \"Y\": -8.576305123038889\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -1.4000000000000306,\n          \"Y\": -10.36508656039852\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -1.300000000000031,\n          \"Y\": 5.5494955124482335\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -1.2000000000000313,\n          \"Y\": -4.881619552621354\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -1.1000000000000316,\n          \"Y\": 5.697048084463994\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -1.000000000000032,\n          \"Y\": 3.6802215741202695\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -0.9000000000000323,\n          \"Y\": -31.588506775217645\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -0.8000000000000327,\n          \"Y\": -4.276114964288603\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -0.700000000000033,\n          \"Y\": 4.706472715938526\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -0.6000000000000334,\n          \"Y\": 24.61942267029316\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -0.5000000000000338,\n          \"Y\": -17.830933767956402\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -0.4000000000000341,\n          \"Y\": -5.40950732388878\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -0.30000000000003446,\n          \"Y\": 3.45113720087071\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -0.20000000000003482,\n          \"Y\": -0.6945661730385604\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -0.10000000000003517,\n          \"Y\": -11.881720947448017\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -3.552713678800501e-14,\n          \"Y\": 15.275164463456829\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 0.09999999999996412,\n          \"Y\": 3.130005271532676\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 0.19999999999996376,\n          \"Y\": 7.217065710866146\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 0.2999999999999634,\n          \"Y\": 17.70645751790601\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 0.39999999999996305,\n          \"Y\": 13.888934006536498\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 0.4999999999999627,\n          \"Y\": 21.884620845377007\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 0.5999999999999623,\n          \"Y\": 9.545267231818897\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 0.699999999999962,\n          \"Y\": 3.703565536648379\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 0.7999999999999616,\n          \"Y\": 11.858526678970597\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 0.8999999999999613,\n          \"Y\": -2.745279389040704\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 0.9999999999999609,\n          \"Y\": 8.1754196030146\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 1.0999999999999606,\n          \"Y\": -3.0892286454167217\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 1.1999999999999602,\n          \"Y\": -1.6888315159113967\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 1.2999999999999599,\n          \"Y\": -26.34560770532998\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 1.3999999999999595,\n          \"Y\": 7.322340575226373\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 1.4999999999999591,\n          \"Y\": 1.9729072168157065\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 1.5999999999999588,\n          \"Y\": 4.3653523448307645\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 1.6999999999999584,\n          \"Y\": 13.227480313783765\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 1.799999999999958,\n          \"Y\": 12.226379085662112\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 1.8999999999999577,\n          \"Y\": 7.283550315220926\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 1.9999999999999574,\n          \"Y\": -8.322354413220943\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 2.099999999999957,\n          \"Y\": -6.278804583310366\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 2.1999999999999567,\n          \"Y\": 0.41427397930309406\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 2.2999999999999563,\n          \"Y\": -6.593316457144327\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 2.399999999999956,\n          \"Y\": 10.882276064502353\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 2.4999999999999556,\n          \"Y\": 4.7901246139126625\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 2.5999999999999552,\n          \"Y\": -14.966747660332494\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 2.699999999999955,\n          \"Y\": -0.20721316523803424\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 2.7999999999999545,\n          \"Y\": -12.56576752329331\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 2.899999999999954,\n          \"Y\": -28.61214419700161\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 2.999999999999954,\n          \"Y\": 8.248524918035386\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 3.0999999999999535,\n          \"Y\": -3.622542781911439\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 3.199999999999953,\n          \"Y\": 4.494708619120168\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 3.2999999999999527,\n          \"Y\": 3.860145108336754\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 3.3999999999999524,\n          \"Y\": -1.2940361660477206\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 3.499999999999952,\n          \"Y\": -13.140490329409484\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 3.5999999999999517,\n          \"Y\": -35.32932042223501\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 3.6999999999999513,\n          \"Y\": 11.866841248128683\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 3.799999999999951,\n          \"Y\": -10.99204883957837\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 3.8999999999999506,\n          \"Y\": 9.661220540277904\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 3.9999999999999503,\n          \"Y\": -11.548148095443524\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 4.09999999999995,\n          \"Y\": -24.714424629770342\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 4.1999999999999496,\n          \"Y\": -17.618320611698103\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 4.299999999999949,\n          \"Y\": 21.41545900080303\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 4.399999999999949,\n          \"Y\": 41.510023167064915\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 4.4999999999999485,\n          \"Y\": -10.860842878493102\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 4.599999999999948,\n          \"Y\": -17.678231065336824\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 4.699999999999948,\n          \"Y\": -18.253167364985977\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 4.799999999999947,\n          \"Y\": -9.378753061533567\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 4.899999999999947,\n          \"Y\": -4.690038562027151\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 4.999999999999947,\n          \"Y\": -0.9358718826342507\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 5.099999999999946,\n          \"Y\": 8.693733167616339\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 5.199999999999946,\n          \"Y\": -11.56589951591252\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 5.299999999999946,\n          \"Y\": 1.6720822524528287\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 5.399999999999945,\n          \"Y\": -14.993796469246613\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 5.499999999999945,\n          \"Y\": -12.054460619537675\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 5.599999999999945,\n          \"Y\": 34.62535634020814\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 5.699999999999944,\n          \"Y\": 39.28048699796905\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 5.799999999999944,\n          \"Y\": -18.522573806115407\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 5.8999999999999435,\n          \"Y\": 2.8254226810055205\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 5.999999999999943,\n          \"Y\": -7.598929518634544\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 6.099999999999945,\n          \"Y\": -18.100980640560156\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 6.1999999999999424,\n          \"Y\": -25.830275802284074\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 6.29999999999994,\n          \"Y\": 8.34770023404953\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 6.399999999999942,\n          \"Y\": 2.6439493039811115\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 6.499999999999943,\n          \"Y\": -22.37132300541551\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 6.599999999999941,\n          \"Y\": -15.051462287577962\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 6.699999999999939,\n          \"Y\": 4.3207686658048425\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 6.79999999999994,\n          \"Y\": -8.60953644756132\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 6.899999999999942,\n          \"Y\": -3.1913795194640606\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 6.99999999999994,\n          \"Y\": -19.490448624441953\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 7.0999999999999375,\n          \"Y\": -21.056095484822293\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 7.199999999999939,\n          \"Y\": -0.40330975452223106\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 7.29999999999994,\n          \"Y\": -48.28017130034681\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 7.399999999999938,\n          \"Y\": -19.761363998873605\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 7.499999999999936,\n          \"Y\": -27.496292304878267\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 7.5999999999999375,\n          \"Y\": -17.935428564824285\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 7.699999999999939,\n          \"Y\": -23.81440736389056\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 7.799999999999937,\n          \"Y\": 6.610475555129508\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 7.899999999999935,\n          \"Y\": -33.59846198877505\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 7.999999999999936,\n          \"Y\": 10.913894309977062\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 8.099999999999937,\n          \"Y\": 22.467791024883127\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 8.199999999999935,\n          \"Y\": 12.316122841847735\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 8.299999999999933,\n          \"Y\": -16.009405184781222\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 8.399999999999935,\n          \"Y\": -34.4150409769924\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 8.499999999999936,\n          \"Y\": -25.738038864954476\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 8.599999999999934,\n          \"Y\": -14.077826822779741\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 8.699999999999932,\n          \"Y\": -9.172720756633\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 8.799999999999933,\n          \"Y\": -18.18037822337765\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 8.899999999999935,\n          \"Y\": -30.72733727472214\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 8.999999999999932,\n          \"Y\": -22.567123894072513\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 9.09999999999993,\n          \"Y\": 31.120217815149882\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 9.199999999999932,\n          \"Y\": -23.4759662318214\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 9.299999999999933,\n          \"Y\": -19.285316135497098\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 9.399999999999931,\n          \"Y\": 1.3453810777338207\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 9.499999999999929,\n          \"Y\": 30.106740007028108\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 9.59999999999993,\n          \"Y\": -8.245762291377288\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 9.699999999999932,\n          \"Y\": -31.37003628215042\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 9.79999999999993,\n          \"Y\": -27.560708350871\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 9.899999999999928,\n          \"Y\": 7.612568009425738\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 9.999999999999929,\n          \"Y\": -13.529703374498748\n         }\n        ]\n       },\n       \"encoding\": {\n        \"color\": {\n         \"field\": \"Outlier\"\n        },\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"circle\",\n       \"width\": 400\n      },\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAgMAAAG/CAYAAADFO9TEAAAAAXNSR0IArs4c6QAAIABJREFUeF7snQl0FMe19/+zSSBWSWiXWCS0gMQuJPbNYGxC8IptjBOcFzuJ/ezYTpyQE3/xW/KeA4ljx0tCvD7igHds44RgAwYDErsQm0AsAqEFrSCxSCDNTM93qlsjpkezdHd1z/RIVefkBGvqVv/rV9U9d6qr7jU4HA4HWGEEGAFGgBFgBBiBHkvAwJyBHjv2rOOMACPACDACjABPgDkDbCIwAowAI8AIMAI9nABzBnr4BGDdZwQYAUaAEWAEmDPA5gAjwAgwAowAI9DDCTBnoIdPANZ9RoARYAQYAUaAOQNsDjACjAAjwAgwAj2cQECdgR/+8IcoKyuD2Wzmsf/pT39CdnY2li9fjuLiYthsNqxYsQL5+fk9fFhY9xkBRoARYAQYgcARCKgzMH36dKxbtw6xsbGdPdyyZQtWr16NNWvWoLq6GosWLUJRUVHgCLArMQKMACPACDACPZxAQJ2BUaNG4e2338bZs2f5X/+pqal4/vnnkZmZiaVLl/JDkZubi02bNiEqKqqHDw3rPiPACDACjAAjEBgCAXUGbr31Vv7LPi0tDS+//DLeeOMNrF27FgsWLMDChQv5Hs+dOxerVq1Ceno6CgoKUFhYKCIRExODWbNmBYYOuwojwAgwAoxAtyFAAu6S7x9WuhIIqDPgevlPP/0U27Ztw8CBA5GTk4MlS5bwH+fl5WHjxo2Ijo72OF4rV67k9xjotZBVD7LiodfC9NGNDOPH+NERoLNm808//IhjQb7Hvv76a1y9ehXDhw/Ho48+iqFDh/oVefnyZbS0tCAxMRG7du3CnDlz8I9//AN9+vTp/Pe8efP8tqNmhYA5A3a7Hb/+9a/xwgsvwGQy8SsDBOCECROwfv16vPnmm2hsbORXBg4dOuS1j8wZoBt+9jBh/OgI0Fmz+cf40RGgs1Zz/pEvfvLa+5ZbbsHgwYPx1Vdf8d9pmzdvxqRJk3wKffrpp3Ht2jXenqyAk/105EcwWfWuqqrinYSIiAi6zsq0DpgzQHT97ne/472f+Ph4Htonn3yC/v37Y9myZWhubuadAeIszJ49mzkDMgdSanU1bwap15RTj+mTQ6trXcaP8aMjQGfdU+bf3r17+S/8X/3qV/z3Gin19fUYOXIkv0KwZ88e3H///fyXuvOHL/nC/9nPfoby8nL8/ve/R3h4OB544AF+VdzpDJDvxocffhh/+ctfMGXKFH5z/auvvso7Dvfddx/++7//m78W+RFNbD/66CN+392dd95JN3DByE1gtVrR3t7OL4e4luvXr6NXr14wGAw+O8VWBujGvKfcrHSUvFszfnRkGT/Gj44AnbVa8498wZMv9jNnzoj2IDzyyCN49913+VcAkydP5l8ZfPHFF/yP3cjISPzhD3/A4sWL+c/IK3Hy33V1dZ3OQN++fTv/TeoTh+Nvf/sbX5f8+/XXX8dDDz3EH88n++eee+453HbbbbwDQlsCujJAK5bYM2eAjqJaNwOdCvZly/hpRYCuXXZ/MH5SCJBf6P/xH/+B2tpaxMXFdZo888wzfPwcsidgxowZHp2BZ599lv87eSXu/prA1Rk4cOAAfvOb3+Cxxx5DWFgYvz+B7C147733eGeArKi/8847UuRKqsOcAUmYpFdiDxPprDzVZPwYPzoCdNZs/jF+Ugh8/PHH/GuAzz77DHfddVenydSpU1FRUYHKykqMGzcOycnJ/Ktx4jQkJCTwKwFSnYHdu3fzrwXIagB5pUBKSkoK5s+fzzsDpB0SpE+twpwBtUh2tMMeJnRAGT/Gj44AnTWbf4yfFAJtbW38KTjyepu80ye/9D/44AO8+OKLeOmll0BWCMhR+uPHj2Pfvn38Uj/ZQO90BsjxRrK/4Msvv+SPzzv3DLiuDJBN9+TIPXEmyCrCf/3Xf/H/TzYsMmeAvSaQMk991mEPOzqEjB/jR0eAzprNP/3wO3HiBL+Ev2PHDpBjhuQd/i9+8Qv+FzvZ+7ZhwwZ+fwDZI0d+4f/nf/4n/2qBvOf/0Y9+hLfeeotf9idf8p6cAbIX4Mknn+RP2hmNRowZM4ZfiSCbEpkzwJwBujsB4KM/sjgIyjEyfsrZEUvGj/GjI0BnrcX8I5sFyQoBiY3jvgGeOAJkFaFfv35dhF+5coU/TeevkE335DQB2VCoZWGvCVSmq8VkU1Mi00dHk/Fj/OgI0Fmz+de9+dH1js6aOQN0/LpYs5uVDijjx/jREaCzZvOP8aMjELrWzBlQeezYw4QOKOPH+NERoLNm84/xoyMQutbMGVB57NjDhA4o48f40RGgs2bzj/GjIxC61swZUHns2MOEDijjx/jREaCzZvOP8aMjELrWzBlQeezYw4QOKOPH+NERoLNm84/xoyMQutbMGVB57NjDhA4o48f40RGgs2bzj/GjIxC61swZUHns2MOEDijjx/jREaCzZvOP8ZNL4MjZehSdrEFl/RXeNCW2PyZkJmB0aqzcpiTVJ3EHjhw5wmcuVLMwZ0BNmiyoCjVN9jCmQ8j4MX50BOise9r823zgHHaXVHmENjk7GfNyh3n87H/+53/4LIQk0dArr7zCRyc8ePAgn7nXWd544w1kZmZ2sW9sbOQzFZJERlKL+/ViY7s6KswZkEpTYr2edjNIxCK5GuMnGZXHiowf40dHgM66J80/siLwxc6TPoHdOT3T4wrB888/j9mzZ/O5DD788EP84Ac/wBNPPIFZs2Z1ae/QoUMoLS1FdnY2Ro0aBVdngEQm/Pbbb/lwyKQ9ktuAlL1796K6uhpTpkxBfHw83K/nKSIicwbo5n4X6550M6iMjm9OK3728gJw9Sf4axhjR8A0dJoi+VrpUyTGgxHTR0eS8WP8pBL4v42HO18NeLMhrwx+cPsYj98TUVFRKC8v53MOkBwGnpwB4iisXr2az4FAUiMvX74cubm5nSsDkydPxqOPPsqHPP7oo494x+D//b//h+bmZj7vAUmMtGbNGj5Msuv13MMmE4HMGZA68hLrsYeJRFBeqmnBjyvbCmvRatEVLRMehjFtjmyxWuiTLcKHAdNHR5PxY/ykEvjvv+2UVPX5ZdP91rv33nv5OiTlsbP89re/hclkQlNTExoaGvgkRRzH4emnn+50BshrBLK6QDIZRkRE8CsEJJERyYRIkhuRVMskdwJJhuSvMGfAHyGZn+vlYeJorgDXeEr4JTwoA4aBg/l/60WfN6xa6LPufAlczSHRJY0JY2GZ/jOZo9sz+cmGxJwVNZGJ2tLi/lBTbE/Sp7YzQH7Jjx8/vnM4yAbBv/71r3z2Q5LKmOwpIO/6SVZE556BsrIyPqvhli1b+FcMxIEgzsAjjzzS2Q7Zm+B0NnyNNXMG1LwTdPJla68ugq3wFVHPzFOfgilpQs90Brb/HlzdMbEzEJcDy8xfyh79nvSwkw1HggHjJwESc6boIAWIH81rAneJ5Mva02uC/Px8vPfee/xGwp/85Cd8lsNf/vKXvDOwfft2FBUVYcaMGXxz5HXD5s2bMW3aNOzfvx8DBgzAyZMn+f8n+wb8FeYM+CMk83M9POysu14DV7Vf/OWXPBGWKU/2SGfAfnw9bMfWiZ2jnHtgGnmHzNFlKwOygbkZ6OH+8NUHpo9uhHsSP5oNhFKdgf/93//Fxo0bkZ6ejpycHLz99tt46623+FcFe/bswR133MGnNiavB0hZu3Yt1q9fj5deegnDhg3DuXPn+D0DKSkpfgeWOQN+EcmroIebwbp9Jbi6ErdfwtmwzFzeI50BAsJ25GNwtUd5Jsb4UTCPvk/ewHbU1sP4si8zRUMnycjb+DouV4Jr6HjtFpMBwwD/D1dJF5RZic0/mcA0dkaVHi2U0wvyzr9Pnz68ic1mg9lsFpmTEwVkb0Hv3r07/06cg8uXL2PgwIGSL8WcAcmopFXUw81qO/Q+7Ke+Egk2ZdwG89gHe6wzIG30/NfSw/gyZ8D/OCmt4Wl8uQsHYS34k6hJy9SnYUy6+X5X6fXk2rH5J5eYuL4W/AIddIiOgHdr5gyoTFaLySZbYnsLrHv/Cq7mMG9qTBgDS/5PgLA+zBmQDVP7hwmlJJG5Luafjw6Foj5fr93UHDspbYUiPyn9ClQdvfMLFAdP12HOgMr01Zps9qoDcDQKAS0MgzJhSs6Vr5SzCjZGS6etWvrki5FmwfRJ4+StFuOnPj9fr93oribfmo2vfGauFnrnR9c7OmvmDNDx62KtxmSzn9sB2/63RW2bJz4C0zBh1yhNUUMfzfX92TJ9/gj5/pzxU5+frXgt7Ke/FjVsSp8P87ildBdTYM3GVwE0FxO986PrHZ11UJwBclTi008/xZdffsnvgiRRlYqLi/nNEStWrAA5TuGtrFy5kq+v16LGZLMV/gn26oPih0/SeJinPk3dbTX0UYvw0QDTR0eX8VOfn6P9Gmx7Vok3oE56DIYwIfRrIAsbXzraWvDjzhfCXrYVXONpXpxxUDpMaXNgHDKVTmyArQPuDFRWVuLHP/4x6uvr+UQLJFgCCbdIjj+QWMqLFi3iz072ZGdAy2VJLW4GNecs00dHk/HTkJ+947Wb6eZrN7qrybdm4yufmauF2vzshz+A7eRGj6LMmbfDNGaJx89cEwc9/PDD+N3vfsfXI9+PzmOAv/rVr/h4AkoKCVJEQhmTo4fffPONpCYC7gzcfffdICC+//3v884ASaBAAiosXSosuZG4y5s2beLjKHsqPWFlwH7sM9iOfyHqvnnknTDl3C1pUH1VUvtmoBbk1gDTR0eU8esO/IQz44ChS2fY+OpnfMmKgHXvGz4FWfJ/7HGFwFviIBIcqKqqij8+SFIVkxVzcmQwPDyc/wFNEg+RMMOnT5/mww8nJSXx9bZu3cqvrJMohqT+zJkzsW3bNv7/d+6UFjY5oM7AqlWreHAkQxOJkkScgccffxwLFizgwy2SMnfuXJB6JMhCQUEBH2PZvZCkDt29RJz5AuZLpXw3bVFZaB1+Z3fvMusfI9CjCRjsbehT+iEsF4UYIdbobLRkPQCHKbxHc1Gz8+S1dFpamipNWrf+tvPVgLcGySsDy5zfeHTqPCUOcnUGSE4CEpJ4/vz5/Gr6Aw88AJLBkKQ5JsmIhg8fjmXLlmHevHm48847eefg3Xff5ZMVHTlyhA9tTEIYu4Y49tXxgDkDZPnju9/9Ll5++WXek3nyySf5ZQyyd4BEVlqyRFhOycvL4yMuRUdHe9TdE1YGVJmpXhphvyzo6DJ+jB8dAe/WvuKDOK3Y/KOjrya/to+/L0lM+H3vSapHKrk6AyTzIPlRTFYESJbBrKysLs7AyJEj8dxzz/FRCUn52c9+xn+3knTGcktAnYF164SQsGQ549VXX8Uf//hH3psh4RNJsgWSp5msDBDvx1thzoDcIRbXV/NmoFPi2Zrpo6PK+IUuPyl7hdj46md8A+EMkBX0Y8eEvCqenIGYmBiQvQVk9cBZyCv3cePGyQYVMGfAVdmNGzc6XxOQlIxkqYN4QcQZeOGFF3x6NcwZkD3GIgP2MGH86AjQWbP5552fdder4KoOiCoYk3NhmfLTzr8xfvqZfzSvCbz1wn1lwNUZIF/wZD8dcQBIYiPyap18Tvbf7dq1i29y7969fMIi8ipBbgmKM+BJ5PXr1/kOkOUQX4U5A3KHmK0M0BFj/Bg/NQl4b4skFyPRDl0LSS5mTJ7InAGVhkBNZ4pmA6ESZ4D8UCbpjEeMGIGGhgZ+nwDZf0c2I5K9ASR/AflxTV6/k1wFcotunAGpwpkzIJWU53pq3gx0Spg+xk8LAnRtBvv+cFw6B3uDEHnUFJMJQ9QwUYeCrc8f3Z6mT+nRQn8cvX1OkhaRV+vuP5rJPry2tjb07as89gVzBpSOihe7nnYzqIyP5U6gBMrmHx1Axo/xk0uABR2SS0yl+mxlgA4ke9gxfnQE6KzZ/GP86AjQWet9/tH1js6arQzQ8etirffJxvTRDTjjx/jREaCzZvOve/Oj6x2dNXMG6PgxZ4DxU5kAXXPsy4LxoyNAZ83mHx2/YFozZ0Bl+uxmoAPK+DF+dATorNn8Y/zoCISuNXMGVB479jChA8r4MX50BOis2fxj/OgIhK41cwZUHjv2MKEDyvgxfnQE6KzZ/GP86AiErjVzBlQeO/YwoQPK+DF+dATorNn8Y/zoCISuNXMGVB479jChA8r4MX50BOis2fxj/OgIhK41cwZUHjv2MKEDyvgxfnQE6KyDNf8cF8+A64g8aCSRB6OHe+xIsPRJpcr0SSWlv3rMGVB5TNjNQAeU8WP86AjQWQdj/tkr98G2+3WRcPPkJ2BKyevSmWDok0OU6ZNDS191mTOg8niwm4EOKOPH+NERoLMOxvyz7XoN9qr9IuGm5IkwT3mSOQN0wxly/FTurqzmmDMgC5f/ysF4mPhXdbMG0yeHVte6jB/jR0egq7V1+0pwdSWiD4xx2bDMXB5yX2bs/lB7dgSuPeYMqMya3Qx0QBk/xo+OAJ11MOaf7fAHsJ/cKF4ZyLwd5jFLmDNAN5whx0/l7spqjjkDPnC13LDyn/bpZZEMNRgPE8niAJYVUA4sD3XZ+NIBZPw88LO3w7r3r+AuHOI/NCaOhSX/J4ApLOS+zNj40t0fwbRmzoAH+ldb2/Dp9lJU1l/hP02J7Y97Z2ahX0S437FiN4NfRD4rMH6MHx0BOms2/xg/OgKha82cAQ9jt3HvGewvrRF9MjErAbfnez7u41qRPUzobgbGj/GjI0BnzeYf40dHIHStu6UzUN14lR+RpEH9FI3M3zcdxbmaZpHtsISB+N6to/y2xx4mfhGxlQE6RIwf46chAbqm2fOPjl8wrbuVM1B76Ro+2nocl1vaeKYD+oTj/jkjER/VVxbjddtLUVLeILLJHhqDe2Zm+W2H3Qx+EbEvMzpEjB/jpyEBuqbZ84+OXzCtu5Uz8GXhKRw6UyfiOXZ4HBZNzZDFuKy6CWu3HBPZLJ2bg7SkSL/tsJvBLyL2ZUaHiPFj/DQkQNc0e/7R8QumdbdyBmiW909WXMT5usv8WAyJG4DYyD6obOjYQBjTH5H9ekkaJ3YzSMLktRLjx/jREaCzZvOP8aMjELrW3coZWF9wCofLxCsDY9LicMc03ysDZDWBrCq4FrKaQFYV5Bb2MJFLTFyf8WP86AjQWbP5py9+9mOfgas7yosyxo2CKeduKoF6H1+qzlEadytnoObiNXz4TQmuXm/nsfTrHYYHbslGQrTvPQNkn8HJyosilJkp0fx+A7lF75ON6ZM7osxZoSPG+DF+ygjYjn8J+7FPRcamnHthHrlIWYMhEGdFccdUMOxWzgDhwTkcqG7oOE0Q0w9Gg8EvpjWbjuKs2+mB1ISBeEjC6QH3xtmXrV/cPiswfowfHQE6azb/9MPPuuMP4GqFVQFnMcaPgmXGLxSL1Pv4Ku6YCoYBdQY2btyIFStWICwsDAMGDMDf//539OrVC8uXL0dxcTFsNhv/eX5+fpeukUnBNZRiw4YN+O7DPweZFGqVbcXl2HmkUtTc9NEpmD1uqOxL0E62jXvLcLrqEn/d9OQo3J6fJluDLwNafaqK8dAY00dHmPFj/OgI0FmrOf+sO/8Iruaw2BlIGAPL9J93/o27XAVHo/CK1zAoA8YByT47oKY+OlL6sw6oMzB//nx89NFHGDhwIB577DFMmTIFCQkJWL16NdasWYPq6mosWrQIRUVFIlLc+UJY977B/62srAxpaWmw5P8YxiFTVSP6rz1ncKa6iW9veFIkFkzyH2DI08VpJtu3h85jx+EKUbMzxgzGrLFDVOsnjT7VRPhoiOmjo8z4MX50BOis1Zx/9jNbYDv4nkiQefz3YRo+l/8bd6EY1oKXRZ9bpj0DY+I4r51QUx8dKf1ZB9QZcHafrAAsXrwYTzzxBLZv347MzEwsXbqU/zg3NxebNm1CVFRUJy1r4SvgqgUHwekMGJMmwDL1Kd0RpZlsar6u8AaGRl8gYDN9dJQZP8aPjgCdtdrzz352O7j647woY+xImFJndgq07X4d9sp9IsGmlDyYJz/BnAEFwxhwZ+D999/Hc889h1mzZuGdd97hHYIFCxZg4cKFvPy5c+di1apVSE9Pv+kMuKT47HQGvKT4VMBAVROam0HNjYzMGVB1WDsboxlfbRSJW2X66CgzfqHDT07qZ2ev9D6+dPTprAPuDBC5DocDzz77LP+KoKmpCTk5OViyREjXmZeXB7K3IDo6GgUFBSgsLESW4wTSHac7e0rsbgyeg+tDb6PrvQbWfU59AvPFE3zLtugRaMlYLPkqpVWXsaOkXlR/RnYsspIHSG6jp1Vst3Gov3yD73bsgF4IMxt7GgLWX0agRxKIKPsS4dUFor63JU1Da5r30wbku4e8ZmalK4GAOQPt7e38r/9//vOf/AbCN954A6dPn8bs2bOxfv16vPnmm2hsbORXBg4dElJ5uhbb/rf5zSQlJSUYNfdBmCc+orvxtB39BFeLPkJERESnNtOI78I8SoZDUHER5bVCXoSh8QORNTha1X7q3TOWo49klXx/yzG0We08o3CLCQ/OzeGzTGpV5OjTSoOvdpk+OuqMXwjxa7sK695V4GqFaLHG+BxY8h8Dwr3npNH7+NLRp7MOmDNAZL7yyiv48MMPkZycjIqKCn4z4eDBg7Fs2TI0NzfzzsALL7zAOwjeysqVK/nTB3osZNnq2rn9ImfAqLPXGXq/GeTo+6LgJI6UiVdSRqfF4s5pmZpNDzn6NBPho2Gmj4464xeC/GxCLhqYQz/FPB19OuuAOgNEqt1uR0tLC/r3F/96u379On/M0OAnLoCunYHCV3Dt9E6xM6CzjY7d6WFHE35a6W3TnfgpZUBjx/jR0AMYv+7Nj653dNYBdwbo5AJ6dgbs5wtxZdvLImfAnP9jmFQ8AknLrzs9TP65+wwOnqoRIRmfkYCFk5UdC5XCtjvxk9JfteswfnREGb/uzY+ud3TWzBmg49fFurLoKySGX+P/bhiUqWpwJDWkdqeHSUNzKz759jgaL1/n0Qwa0BuLZ41EzMCbezbUYObaRnfipzYbKe0xflIoea/D+HVvfnS9o7NmzgAdvy7W7GalA6qEH3EKSNHSCXD2Sok+OiLyrJk+ebzcazN+jB8dgdC1Zs6AymPHHiZ0QBk/xo+OAJ01m3+MHx2B0LVmzoDKY9fTHiZbD5bjbI0Qxjk1IRJzxsvP58CW4dWbhD1t/qlHTmiJ8aMjyvjR8QumNXMGVKbfk24GktyJJHlyLSS5E0nypLT0JH5KGfmyY/zoqDJ+jB8dgdC17pHOQLtNCFITZjapPnI96WGydssxlHUkd3KCTEuKxNK5OYq59iR+iiH5MGT86KgyfowfHYHQte5RzkBrmxWf7ziJsgvCsnZaYiTumpGJiHCLaiPYkx4mH3xT0plu2QmQpF1ecku2Yp4hwW/oYFj3vQnHBSFSpiFxLCx5PwKMZsX9VsswJPilpqrVXdXbYfzokDJ+dPyCad2jnIGv9pVh34kLIt55IxJxW556sap70s2wv/QCNu4tE/G8PT8NE7MSFc/pUOA35Np+2Eo3iPpozvoOTKPvV9xvtQxDgV8qcwYUDzcbX8XoeEO986PrHZ11j3IGAhGxTu+TTW19xadrcb7uMj8Lh8QNwLj0eP7f9tNfg6vrSD0aNxKm9PmSZqra+iRdVEYloi+54mM4OtKqOk0NsSMRNutXMlrSpmoo8GPOgPKxZ+OrnB1zBnyz61HOwKfbS3G8vEFEZOTQGNw7M4tuhrlYB/tmdTSfB9d4ildkHJQBw8Ahor4FQp/91NewHVor/uU8dilMGf4dgkDo8zjY1lZwjUJmTOOgdMDiOXAR0ZdS809w1QdEzRiTcmGZ+lPV5hFpyNEizFVDnxjJ7QaNn0SFTJ9EUF6qMX7dmx9d7+ise5QzcKryIj7cKvxajbLVINpaiWmjUpA8IheGKHXeYwbzZuWqi2AtfEU0IyxTn4IxaULn3+TqO1PdhPMdWRSHxA/E8KRIvzPOuuNFcLVHxF+W8aNhmfGsX1u5+vw2KKGCo/EU2ne8CNiEVMgw90LYjGdhGJTRxZroG2Kuh23PX8TOzqTHYRo8ScLV/FdxXKuHdffrcDQJJzUMkUNhmfwEDH1j/RoHg59fUS4VmD45tLrWZfy6Nz+63tFZ9yhngKAi0eoaT+xEdOm76B1mRphFOFFgmfJTGJNz6WgG+Z2Udddr4Kr2i7+EkyfCMuVJRc7A4bI6rC8QVhmc5Y5pGRiTFueTk3Xni+Bq3JyBhNGwTNenM2Db+wZIXgnXQvJJkLwS7sX5MOYaSuFoOCl8Wcdkwhij3uqSrWg17GVbxXrS5sA84WG/85N9WfhF5LMC48f40REIXese5wyQobLuehVcldsyb3Iu7xDQlmA+TEgKZa6uROwMuKVQlqPv423HUVpxUdRe1uBo3Dd7pE9M9tJ/wXbkQ1Ed8+gHYMpa4BevHH1+G5NYQQo3Z1OB0CdHjzdnRWLXA14tEPxoOsX00dDT/wY9vY8vHX06657pDEj40lSKNZiTzXbofdhPfSX+RZlxG8xjH+z8mxx9azYfxdkLzaL2UhMH4qF5o/zisZduAFd3jK9njMuBKes7fm1IBTn6JDUooZLtwLuwn/1WzC11Fsy5/9bF2ps+28G/g6s72tHfUTCP/56EK3uuYt2zClzFbrFTN3gyLJMe89tmMPj5FeVSgemTQ6trXcave/Oj6x2ddc9wBuztsO79K7iOc+EwGABbG2AwdtIzuX1pKsUazJvV0d4CG+lnzWHhSylhDMz5P4EhrI8iZ4CEGi44WilCQfZY0IYc9sU2GPwcV2v5vRaOK9W8NEP/JJC9FoZ+wskI1+JJn73kc9hKPhfVM2ffBVP2XYqmkaPhBNq3/wHgbIK90Yywmb+AIWaE3/aCwc+vKOYMyEHksy4bXzqUeudH1zs66x7hDNgOfwAQ4FScAAAgAElEQVT7yY03STk4GMy94LC3838zJefCnPdjwBxORzNIv2y7iHb5EpHyZear0//YdbozsBAJKPTdKenUjPTmDDj1OK7UdDgDCV4lenqYWHf8HlytsAriLMb4HFhm/FI5q7YrolMhCO8vqS29P+yYPknDKGv+0bWorjUbX3V5BrK1HuEM0LyDlTsY7GaQS0xcPxT5WQteBnehWOwMJI6DZdozdDAUWIciPwXd1MyE8aNDy/jR8QumdY9wBmy7XoPdbZe9KXkizC677NUaBHYz0JEMRX72s9thO/COqOPm3B/ClDqTDoYC61Dkp6CbmpkwfhRoORvqvlqByBsVfCN6CtPt7JXex5eCPrVpj3AG7JX7YNv9uvhhPfkJmFLyqAG6N6D3ycb00Q25N372yv1wNJYKD8FBWTClTKS7kEJrSePrEBJ1waB+oi5/siXp89eIhp8zfcrh2o98hCsHP0FExM2AXXoJ082cAf/j2iOcAYLBcfEMuI5z4caYTBiih/unI6NGRd1lVDZcRV1dHXJzhmNw3AAZ1oGryh52dKxDmZ/D2grbHrLBVEiwZEwYC/Okn8DgJdoiHSnP1qHMTwsectvUM7/2b1egpfyAyBnQS5hu5gz4n2k9xhnwhuLbQ+dxtiOLYWpiJGaNFYfv9Y8QOF7eiE+3n+Crtra28jfDvTNHYOTQQVLMA1pHzw8TAkJrfZeuXkdl/RWeeUpsf0T16y2Lv9b6ZInxUNmXPhIimoSKdi0kRLR57FLay0q2DzV+JAqkKLx35FDJfdWiop75WQtfxbXTO0TOgBZhumm46pkfTb/UsO3RzsDOIxXYVnxexHH2uCGYPnqwX7Y7Dld0pkJuaGrBDauw9Op0BqQE5/F7EQ0q6P1m0FIfSV29drN41//SeTl8KmupRUt9UjX4qudLXyA30nrTGEr87FUHYNv1qqgr5ik/5U8fBavomZ+9Yg+ubH1R/JpAxTDdajDXMz81+kfTRo92BtZuOYay6iYRv7SkSCydm+OTaeHRSnxzUIgbT0pVw1VE9DLzvzKdzsCwhIH43q3+g/PQDJ4SW+fNQPpd0fELeXBsf5B+66FoebOu216KErdEVdlDY3CPjERVWupTg7/PlYEAbqTtDs5AIDceSx17vc+/iuItSApv4bujdphuqYyUOstqtB/KbfRoZ+D9LcdAEvG4FpKI50E/zoC7E9F4uRVtVjuSBvXrdAb69LLAZBKCGg1PjMRCjc/nS52E5GFyzdEXXxQIcfWd5c5pmRid5j8RjtTrKK2n5cNOjRTWWupTyszVzpc+PfzSDSV+elhJcZ8TocRPjfmsdht656d2f+W016Odgf2lNdi494yI1+35wzExy3vQGVL5g29KOgPxkP92OByw2R3oHW5GS0sL+vfrhxvtVhhIpMOOonXkPqmDTm6G/edv4KRbzoHMwdG430/OAanXoKmn5c1KxpqMOSnhjlZEWaswYsggTJs5Gz0lqE+w34FrOb40885p66pPD3ssmDOgxqjebEPv80/d3sprLaDOwI4dO/Cb3/wG4eHh6NevH9asWYNevXph+fLlKC4uhs1mw4oVK5Cfn++1FytXruTrq1WKT9fiXO1l/gs9NWEgxqV3DUHrfq19Jy7gq31loj/flpeGvBGJ/Aa4XWdacLbGLaZ/wkA8pIPXBry+shbFOQfU4u6tHS1v1qvX20FeFbRWHcXUKx+jT7gBCVF9YbaEwTLjFzDGsnC/oTy+amh3nX96OH3BnAE1RpU5A1IoBtQZWLBgAd566y0kJSXhqaeewrhx45CcnIzVq1fzjkF1dTUWLVqEoqKigDkDUiB5qlN0soZ3IkgZFj8AEzKF1QT+l3f5DZysFGf7y0yJxv1zfGf7U6pFjh3RV95sDHjOAakatXQGnBquF/4Zjso9MBlvrtyYhkzh8zj4K4HQ50+Dr8+ZPhp6Xk6zBDEuA3MG6MYz1Pip21t5rQXUGXCVtmzZMtx///3Ys2cPMjMzsXSpcLwpNzcXmzZtQlRUlMeeqL0yIA+X/9rkYXyV64P1hadEle+YmoExw+P8N6BxDeeXxZeFp3Cq6hJ/tYzkKCyamsH/W2m2QbVkB+LLjOZdcCD00bBk+mjoaX+0lU4d09fd+dH2j8Y+KM7AO++8g6+//hoff/wxHn/8cZAVg4ULF/L9mDt3LlatWoX09HQUFBSgsLCwS/8WL15M0+eA2FY0tODCpVb+WolRERgcczNzYEAEKLhIr8rt6H1ug8jy+rDv4EZK4MPqKpAv2STi1DqE1+4V1W+Lz0drxj2S22AVGQFGIPQIkNfBaWlpoSc8AIoD7gz8+te/RlNTE1577TWYzWY899xzyMnJwZIlS/ju5uXlYePGjYiOjvbY/VBYGUhNTQ3A0Cm7hK9fjtadL4KrOSJq2JgwGpbpzyq7mAIr2l+2JAAUiQZJCokC6Snwk+NaHay7XoejWYgxYRg4BJYpT8DQ1//KDa0+BUhkmTB9snB1qcz4MX50BELXOqDOwMsvv8yH6yWbBJ1lw4YNWL9+Pd588000NjbyKwOHDgnhUj0VpzOwaf/ZzqA/JGjMrRP18QWst4eJ++uAnAQzvDkr1h0vgqt1cwbiR8MyQz/OwMa9ZaKUyrfn3/TyyWZQknLZtZCUy942hTqu1QvOQF/pRyr1Nr7u9wjTR/cwZvwYPzoCoWsdUGegb9++/KZBk0lIkHLvvffyrwnI/oHm5mbeGXjhhRcwe/Zsn87ApNuWYPshceTAmWOHYOYY/5EDfQ6VrQ22fW+AnMcmhUQaM+f9GDCHSx5hPT1Mth4s77JRMDO+F+6f7zmJDglVS45TuRYSqpaErHUvWgUt8sWPhI4mkR9dy4wxgztDSH+4tQSnKoV9EM6SkRKFB+ZkSx4/fxX1NL6etDJ9/kbQ9+eMH+NHRyB0rQPqDPjCdP36df6YoevZfE/1ycpA8vjvdK4KOOuQ1QESWta9XGlp4yMEkpIc0w/9+3j/Yrcdeh/2U1+JmjBl3Abz2Aclj7CeHiZrNh/tcoQwsrcDT943w2t/7Ke/Bld3nP/cGDcSpvSujsCRsnrNghb54rdm01GfRzZJqGEScti1eJsXkgfUraKexleyM9Am5GKQGktBKRspdiHJT0rHAlSH8aMDrXd+dL2js9aNMyC1G8QZGDLxuzjldnQvIyUaD7gd3TtX0wzyBeLoaJwcJCNn/UmoYE+FZpe5sz09TbaPth3vElwopq8Bj90zTSpuj/U8tatW0CJf/D7aelx0ZLOt3caP5SMLx/E6/a0cUHW6w1hP4+vPGXBcb4Jt959FiXbMk/8dht7BCz0dSvzUmC9qt8H40RHVOz+63tFZh6QzMO+uZfjnbvG74YWT0zE+Qxww6LMdpTh2rkFEKGdYDO6ekeXZGdj1KriOVwTOCsbkXFim/FQyZT1NNk+/4PPT+mP+tDGS++OpoqcVh9TEgXhonodcDK0XwTUKY2UclA5EeN4YKsWZcu4JaLfaUd14FVY7h7jIPhgSN4B3BGMj+4DsKSirJq8KDHy+Bdc9BVSdDkFnwHbwPdjPbBF12zR8Lszjv68GCkVt6On+8OdMKeqgxkaMHx1gvfOj6x2ddUg6AyQCIfmSP18rRPkbEj8Q5EvevciNRU8cAatbljLiCBCHQGrR22Rzf7dvaGvyuoFQah897UXwFG7ZUVeC9u0rRc2GzVwOQ5z3d/hOfnxkyI4ojuTXv3MTYGlFI/5ReAYV9Zf58M99e4fx7ZPPyWZBrYvexte9v6761FjpUptnKPFTu+9qtMf40VHUOz+63tFZh6wzIKXb/9pzBgdOCrHonSU3MwELJg33au64dBZcg5DExxiTCUOUvFMKep9saunzFrTIFax1z1/AVewRsTYOngTLpMe98if6Lrb39pkzQq6TJ2WuSK2jFj+p15NbT+QMkFcEleJ4CsaUfFgm/7vcZlWrH0r8VOu0ig0xfnQw9c6Prnd01t3aGWi+doOPRU+WlEkhWQVJutqBfXvRUfNhrffJFkh9Sn6ZEn17zrb6zCZJojsePlMnGgUS3ZFEedS6BJKfkr646uNqj8K64w+iZvgcDPHBS60dSvyU8NfahvGjI6x3fnS9o7Pu1s6AE83V1nb+n/0ihCVlLYveJ1sg9dmK/gZ72Tci3Ka0W2CesMzrEBB9u8+2grzecC3k/f/SjtTSFy5ewwdbjqHlhpWvQtJFL5mbg8TovloOLd92IPkp6Yy7PkdLAxwdezYMg9Jh6NP1dZqS6yi1CTV+SvuplR3jR0dW7/zoekdn3SOcATpE8qz1PtkCqc/RelHYzX5RSBNtjB4Ofje7j02ERF/1NTO2FYvjSMweNwTTR9+MI2HnHKiqF47MJcf2FyUdkjdi8moHkp88ZUJtpk8JtZs2jB/jR0cgdK2ZM6Dy2Hl7mNQ3t6KyI0xuStwAxA6MUPnK0poLysPuhhAeGL0G+BXp1EeOCZ7tiBmQmhjZGVjIbwMaVwgKPxl9YvpkwPJQlfFj/OgIhK41cwZUHjtPDxOSHfDDb0pEV3rglmw+W2CgC3vY0RHXJT97O6x7/wruwiG0tLSgX/pUWEg6ZpP2r8Xk0tQlP5dOMH1yR1Rcn/Gj4xdMa+YMqEzf083w6fZSHC8XxzsYOTQG9870HO9AZUmi5tjNSkdXj/xshz+A/eRGvmOtra2IiIiAKfN2mMcIyb/0VPTIz5UP00c3Wxg/On7BtGbOgMr0Pd0MwTwK5949Pd6sHCfEiDQaDR7feZO0o6T4C1Wt8lB2ac7RdgXl5eUYljla60vJat/11IbTGTDGZcMyc7msdgJRWY/zjzkD6o08G1/1WAa6JeYMqEzc083w9b6z2HuiWnSl/BFJmJ8nL4aBGlJPnS6Dpa8QBTA5pj8sZqMazSpqo81qx+c7SzuTC5GkQmOTw5GVIcSBIJEGPy842RlSmYQ8vmtaJsIsQqKrQBUS1te6+89wNJ7if3n3GTyWP6sfzLC+rn237XoN9qr9/J86VwaSJ8I85clAIZJ8HfZlIRmVx4qMX/fmR9c7OmvmDNDx62Lt6Wa93mbDZztLO4/LkWNyd0/P4iPoBbKQeAtvfrEHJosQZ4Fc/8FbcpAU0y+QMjqvtenAOewpqRJdOy02HEtvz+P/RtJU7zkudqImjUwKeLpq17C+nV+2QQ7r6wrNXrkPtt2vi5wB8+QnYEoROJJyuaUNlR2nL1Ji+2OAj4RdWk4G9mVGR5fx69786HpHZ82cATp+kpwBZyWrjeP/Gaxf4+sLTmH30XP8O2VnGZMWhzumaR+sxxNmT69PInsDT943na+ul9crrsvwTdfacdEYA2NUKobd9lP0CgvsKoW36eq4eIaPnFlXV4eEnBkwRN+Msnm2I2GXqy1J2JXqJWGXyreEqDn2ZUZHl/Hr3vzoekdnzZwBOn6ynAGVLyW7OfLlWlJ2QeQMkLj/37s1OBHpPv32BI6fbxT1I76fET+6eyr/t0++PYETbp+PGDIIi2eNkN13GgPyioCE9a260Q9rq1LBGcJg6D0Q4bFpfCAk8ktbL8XTl4XchF20fXFcreWbMPQTJw4jf2NfZnR0Gb/uzY+ud3TWzBmQyc9W8gUc9cIxQUNsNszZd4bML59/7DqNwsNnRc5AoBL8eMJcWnERH287LvpoWuZAzJkkOCfEESAOgWshjgBxCAJZnGF9/1E/DIebI2EymWCIToMhvB9Gp8XizmmZgZTj81rB3MBKnACS6MtxWXj1YxiQzGf8dHUK2JcZ3VRh/Lo3P7re0VkzZ0AGP3vpP2E78rHIwjz6PpiyFnb+Tc83a0NzK95avwc2WHi9Uf174/7ZIxETpABIREPNxWuo6HiXPTi2P65frhdlVST7HFzfdZP8EsEojmv1+PvGIpRWX0WvflGAOZyXEcyVFU8cPM0/JQm7lDC2HngX3NlvRabG1Fmw5P5bSNwfRKSe71+mT8msFNvofXzpe6i8BeYMyGBHkr6QX4muhSR9IclfnCVQk+2fu07jTEeEvuGJkVgoMX0v0dc3Mo6XGxvZR0bvA1M1UPyU9Oafu0+j4JB4ZWV8RjwWTtY+dbJUvZ74kc2Dn24/geqGjoRdMf1w78wRqm8ilJKYSs/jy75spc4y7/Vcx5eEIyfFV/hx+ivKa0Hv809eb9StzZwBGTytO/8Iruaw2BlIGAPL9J8H1BnYerAcBUcrRTqmjUrBnPFD/fZG7zeDnvVdvHIdb6/fgzZOOAVCVlTumz0S0f17++UeqAq++GmdsIuPgnh+F99Vx5ULcLRdhbF/IkxjloCsoLEvW/pZoOf7wzm+w+L68adbuEvn+A4bo4aBnG4JdpKsUJh/9DNEeQvMGZDBzn56E2zFa0QWpuG3wBAhvMM2xmTi3GWjaJlbRvOSq67ZdBRkh7hrITvDyQ5xfyUUHiapqYGPv+CPm/Nzwq9/tLAxbtCA4OSX8KVV6fgeL29ERUfujMFxAzByqPx9GeQ0g3Xni3A0nQe/idBohCEqFYawvjDn3APTyDuCvgxvr9gNR72wD8UQOwKmwZNFOJXykzp/aOuFgr7BTTtgL9sqfk6mzYF5wsO03ae21zs/6g5SNMCcAZnw7Ge+AVffsenNYAZXuVvUQv2Qu5GSL95UKPMSfqt/tPU4TlYKS3DOkpkSjfvnjPRrq/ebgenzO4Q+KyjhV3y6FmRzqWv57pR0kM2lskt7C9o3Pw/uUhkMlj6AUTh6aYzLgWXmL4PqDNjLtsFW9H+iLpkn/ACmtNmdf1PCTzYjCoNQ0JdS+Qm4OnEuFr1ExNQ7P4qpQW3KnAEKhK6R35zNXI5IQ+zC/6Bo1b/p4TN1WF94SlTxjqkZGDNc2Avgq+j9ZmD6/I2g+uP74daSziiQztZJNMgH5mQrEmMteIlPmuRajIljYZn2s6A6A7aCl2G/UCzSZUocB/O0Z5gzoGikuxqR+3dw/dcgKzCuhazAmCc9ptJVlDej9+eL8p7RWzJngIKhpw1TV8KTEHPH7yhalWZ6uuoSymuFVwVD4wciXWIGRL3fDFroIzkFSDGE08cD0EKftBGXVkuJvrWbj6GsYzOq8yppiZFYOi9H2kXdapHVM9vBv4n+ah6/DOSVmjd9ZD9DVYMwTiRMdr8I9TMuWnf8HlztMbGTEp8Dy4xfMmdA0UjfNOKayvlw3bW1tYiLTwB3+H04OLtw3xlNME9/FmR1INhFyf0RbM2Buj5zBihIu2aLczZzKSoXCXN/StGqtqZ6vxnU1OeaU4B/KA3K6JJToPnaDdHRxYF9hVDN3oqa+rQYaSX6th+qwPbD50VyZo4ZgpljByuWaC/fCUd9qfBlEJsF01AhqqQnfcSpXbP5GFwTVj00L4d3ctUstpLPYS/5XNSkKfsumLPvYs4ABWiuugjWwlf4Fpzhui0TfwhYhD01xkHpQC91x1KpXCX3h9JrhZodcwZoRswljzw/6RPHoip2PoYN108QGvfueboZSJjkLwpO4lTHPoSMlGg+kE4wwiZ70tdus4OEUj5VeYnvDlnCJiGUw8y+QwG75hRwcjC55BQoq27C2i3iX4okoiDJHdGTnAHS1417yzpXB8iqwO35aTR3hix+n+04iWPn6kU2OcNicfcM9e8j4sA7jweTY8HuaZ71/mWhR33WXa+Bc0uUZUyeCAtLlKXJPaRVowF1Bux2O1588UWsW7cO+/bt4/tE0tMuX74cxcXFsNlsWLFiBfLz8732d+XKlXx9vRY93qyurDzp23zgLHaXiBMCTc5OwrzcwO/q96zvHHa7JTSanJ2MebnDfE4Df+fe120/gZJycTjk7KGDcM9M7+GOQ3F89XSveOKnlxwUhBMbX/mzhaXQls9MjxYBdQb+/Oc/Iz4+Hk899RSqqoSQpVu2bMHq1auxZs0aVFdXY9GiRSgqKmLOgAazhUT7q6ysRN5Y8Zed3h/GSvU5cwq4ojSm5POvCkhR0i77sqCbmJ74bdhzBkUna0QNT8hMwHcm3Uy2RHdV79YOWzscl87wFQxRw3Guokrzo8E0fdHj/LMdWgv7qa/5bnVm9cyYD/PYpTRd1cRWj/w06aiCRgPqDDj1JScndzoDzz//PDIzM7F0qTBxcnNzsWnTJkRFRXnsDlsZkD/KdU0tfA6Apqs3+Js1KS6KD5YT1xGBUC8Jgbz9MlOqz5lTwJUYiRZJlodJIUvj+0sviIBOzEr0uUSu94eJVH1kgx9Xc4TvuzFhNMgGv0AUT/rIvg0yxsRZJSUhui+fjMrf/g1avdzFMtgKXuKDI/HOQHg/1AxZjCFjZ9E2rZm91PHVTICnhq2tsO5ZxQdkI8+XvmmTYSEnBzr2DARUi5+L6ZKfTgAF3Rl4/PHHsWDBAixcKMT3nzt3LlatWoX09HQUFBSgsLCwC6rFixfrBF9oyNhRUo/SqssisVnJAzAjO5b/29naq9hyWMg05yxzx8QjNT44eQDcqZ6ru4bNh8S/HOeNTcCwuL5+B8B4/SIsV4XNcdZ+Q8D1ju60aW2zY8uhC6htvsH/LX5gL8wdm4iIcH2kJfbbOYUVepV/jd4V34isrw++BTeGzlfYojpmV69b+Yb69RZyZ2hd+pz8CGF14lXI9rgJaMm8X+tLd8v2DQ7h9IDDoN/7h7yWTkvTZj9MqA9q0J2B5557Djk5OViyZAnPMi8vDxs3bkR09M2HtitktjIgf8q5Loc7l/HcE+xUNVwVRaBLjgmOI+DNcyfHzlwTGpHjZ2qV1hvCl1BEL/9fQnr/ZSFFn7+9FGpx9dSOFH1aXt+17YAdDba1CZftSG5F0z898dP7+IaiPpq5QWsbdGdgw4YNWL9+Pd588000NjbyKwOHDokDloSuM+CAde9bcNQK+QwM8WNgyX+U/It23GTZk5MCR8qE3dpOZ0BvqXedHWIPO1lD26WyFH7Wwj+Bqz4osjUmjYdl6tN0F5dgLUWfhGZUqWLd/za4cztEbTX1z0b8bSptUG67CuveVZ2xDYwkpkH+Y0C4ckdbT/xC8ctW7/xUmdgKGwmoM/Dzn/+c3xy4e/duTJ48GXfddReefPJJLFu2DM3Nzbwz8MILL2D27JvhQd37FUorAyTdMUl77FpIumNn0haFYybbjKQB/uCbEpBfwMQZGBQ1AEtuyUaw0gE7O3C9zcb/s3e4kPiHFL3frN1BH/kCJF+ErsUy8REYh83o/FNrmxVV9cK79OTYfogI979qImViqsWPRDjkGoQ4BsaYLP5Yr9ziuFzFn493XKvjTQ1941CTcheGjJoitymP9UkeE5LPRHT/p98K87iHFLfvzs9WtLozeZoxYUzQ4/+rNb6KAfkx1Ls+rfotpd2AOgO+BF2/fh29evWCweD7V3MoOQPBXI51Z22zcyBOATnFkT92BMwmo5T5IbnO4bI6nKsR9iUMSxiAMWneQyNfu96Oz3aUorxWqD80fgDunpGFvr3DmDMgmbjnilIfdiRQDEksJHyZZsKYNKGzwfN1l/H+lhJYbcI7YIvZhAfnZmNI3ABKdeo4eySgkW3fWyIt5rxHOwMbyRXJNQl7SoyRQ1Sdf1rc/67jazu2Dvbj68XOxsg7+KRQwSpS5x/TFywC3q+rG2dAKpqQcgYKXwF56LoW8tC1TH1KandVr6fFzXrgZA3+tUc4nuUsCyYNR25mgkf9vnbxa6FPTYg9Qd/nO0/i6FlxEKBRqbG4azp9ECA1+FkL/gTugttrjsTxsEyjf82hhj7nfLOSNL6VQjwVZzGm5MEy+QnFU9JVnxbOhmJhHYZq8qPVQuwdzRXgGoU8LsZBGTh3yabro6Nq9FlpG8wZUErOi53rzUByu5Mc767Fkv8TGIeoswypRLoWNyt5BUFyJbgWkiuBvIrwVLyd7ydfNuXl5cgZkaGkawGx0YKfmsJd9V1uETauDegTLusSUuIvkGN5opWFaM87tK9ebxeFe26ooT/Hr+WXoJrjy10ohrXgZfH9P+0ZGBPHyRoP18oiZ0BDp0ipQDX5KdXgtLNXF8HWESbZ+be6ofdicN4i2qa7pT1zBlQeVvebwVFXAnvHu01TTBYMQU7WIedmJcv5pJDle19lzeajOHtBSJrkLKmJA/HQPOE8v3tZt6MUJecaOv9ss3Gwchx6h5n5PQ2ZQ+Nxz4ws9Jf5JabyUHpsTg6/QOhxvwbRFxWbSHVuf8PuMyg65RYEKCMB35ksBAEioWdJCFrXQkLPkhC0ruVcTTMf7tk158DMrIGYPlFZAiRn27ajn8J+4kvRtUwjFsE86l5q5GqPr+NKNbiGjl+mMRkw9E+i0uiqz35uB2xuez/MEx+ByWXvB9XFFBirzU+BhE4T1zDJzj82R6QhTuOssjSag2nLnAGV6evpZvDUNSn6rrS24dNvT4AcNySFHOO7d1YW+kd4/oW580gFthWLE93MHjcE00d7TnRDVhHIaoKz1De3ok8vC/8/52kHf8F/VB42yc1J4Se5MQ0qEn0n6jmqiH6XrlzHJ9tPoO5SC68wLqoPFs8cgaj+vfn/tu56FVzVAZF6Y3IuLFPECbo+23kSx9xeNyQMMOHRO+lXxmwH3hVvnMv9N1VohsL4pqbeDBNOToWINlImjVeFg6RGbnTELul1cy+JnvgF7OioJFj6r8ScAT9jxNWXgKvv2GgVmwljrO80nHq6GZQ6A0oi8209WC5KdDNn/FCfZC9eud4Z12B/aQ1qLwnR57zFQdDLrRQK41t4pgXkV7lrcY8rIYXnpatCMKaofuJMjlKX6T29bojsDTx5n5DBUI8lFMbX1RkIBkNH60XYdv8Z3EVhn5AxejjMk/8dhohoVTdg0vbNduh92E99JWrmUuQEJMwL3p4t2j5pac+cAR90uYrdfJhN10LCbBoHT/Zq1R0eJlLeGas5KcnJgmMdrw2czkDOsBj+hIHeSiiM76Eqq6ZZAD2l7jZl3t4lA6CnnANDoi1YtnCS3oa1UysVgssAACAASURBVE8ojG+wnQFb0d9gLxNHsDSl3QLzhGW6cgbQ3sLv2SJhknmnJWEMquNuw9AM3z/odDs5NRbGnAEfgMkZZLmnAbrDw8T1y9mJR8sv57ILTVi7WUgl7HQGls7LAUmlq4fS1m7j40SFW8yqPOzarMKRvXCL+mFbyfwzRkRhzWbxu/qH5uVgaLxKOeVtbbDufQNcTTHgIKm7x8GS/+MuEfZIzoFPt5fiQqPwuilxUD9MHNobY7LpTyVoNS+6w/2rFRtnu75WhnTJjxMijMJoUeX+1ZpvsNpnzoAvZ2D7SnB1N99t8/MpLhuWmd4jlOnyZnDpoxR9rl/OTlOtv5wvX2tDZcMVXLhwAfljsjCgr7wd8FrcQCRIE9ns6FxyJ0vtEwb3wsisdMmXI/sjymuFJXuSGOpwWb2ovbunZ6KPnw2aki/mErTpams7SAhnUsiej34RvjeByrmG3LqupxqkzD+57atZn+nzT9O65y/gKvaIKhoHT4Jl0uO6/7LV+/j6p69dDeYM+GCrJIKg3iebVH3OL2eCJyWmf8C+nKXq0+6WuNnyV/vKsO+EOKthakwYHlqQL+nyh8/UYX2hsJOclPrmFvSymEWnJPJGJOK2PPUSp+iJnydITJ+kqeO1kh74kRNS7dtXijSGzVzOn5TSgz5fhPWuj2520FkzZ8AXPwcH6763wNUIuRKMCWNhyXsUMHiP3qf3ycb0Sb9haDfAfbT1OE5WXuy8IDmdYTQIy+XOomRjXyg/7CTNP3vHsq5JnRDI0kdcnQiJcq4nt64kfnIbVVK/9SK4xtPCc3FQOhAhJJbTjT4vfdK7PiVDoZYNcwbUItnRjt4nG9MnfcA/3X4Cx8sbRQbx/Y340V1TJTWyZtNRnHXZ1V9z8So4DkhyyQg5cugg3DtzRGd7hceqcPZCE//fqYmRmJqTLOlazkqhPL6O9muw7SGJfY4KXzLxo2Ce9BgMYf5TVfMGNuH0A8zi0w9yAIYyPzn91Kou46cVWe3bZc6AyowDejNwNj5Gu+vKBYnRDuPNxD/u3QuoPgVs9aTvyNl6rNteChP5Od9RZmQNxKx8z8GU3LtLjlsWHK3s/HPLDSuut1kxaEBE599IlEYSrZGUXSVV2HLgnKiZubnDMCVbukMQLH7kNMj5jlwTQ+IHgGw49VR86bMVr4X99NciM1P6fJjHLfU5kxxtVwQnomN/D9nXwzsR4fLTXAeLn9RbRa4+7tJZODrC8RoGZcAYdTNGgdRryqknV5+cttWoq3d9avRRaRvMGVBKzotdICeb7chHsJduED88s74D8+j7vfbKXZ/t8IfiX2JjHlCZiLzmAsnPm7KrJOjS9lI+jG67zY6+vcIwfXQKMgdH48rFWlmxzf+56zTOdPzSH54YiUnZyaisF4K1pMQOwKABQiAfUsiJCrJ507WQExVk86bUEgx+B0/V4p+7hSVjZ1k4OR3jM+K7yPalT2r8AvdG1cwOGAx+UseW1JOjjwSGIgGiXAsJDEUCRGlV5OjTSoOvdvWuLxhMnNdkzoDK9AM52dq/XQFH/XFRDwyxIxE261dee+Wqz378C9iOfSaqa865G6aRd6pMRXpzgeTnSRXXVI6NBUdxoNIKhPWBwSL8ip+YlYDb84fLehj76jVZJSDOBikpsf356IvvbzmGM9ViZ2B4UiQenKudM9B4uRUVdYKOwXH9RasWUkftw63HccplbwSxy0iJxgNzRspzBna9xoc6di0kxDEJdeyruDoRXFMFDO1XgF4DYBq9BJb8R0lyYqldUW18JV9QZkU594fUSJEyJfisLkefmteV2pbe9Unthxb1mDOgMtVATjZr4avgqt3CwiblwjJVHBbWtYuu+qw7fg+uVjjf7yzG+BxYZvxSZSrSmwskP3dVJKYEiS3xQU0myluFJWZD1DAYeg2Ac6OfGvpI6ua1m4/Czjn4a5DXEEvnjeKjMG7af1Yk69aJqZg08mY8+1OVl0BSDJNCUgpnpAivGJxFjj73sNCkDdfXFlJHTc6Khi99JLSutfBPostapj4No58Qu87sgI4rF+C4JmRbNPQeCEPkUJiyFsI8+j6pXelezoCCo9GSQXmpKGf+0V5Lib3e9Snpk1o2zBlQi2RHO4GcbOSsLznz61rIWV9y5tdbETkDO1/q3G/grM+fmJj+M5WpSG8ukPzcVTkTm3xRl4YT14QvWeeXSvbQGNwzM0uVLwtfQZ3IUUbXuAbk6KGzHC6rw/qCm0cVyd/vmJaBMWlxnXV2FZXAbhEcmSFx/TE47mbcePf+etog6b6hUcrIbT9cge2HxLkpZo4dgpljuuam8De+jsuV4sQ+A1L8SiB7Zqw7X4Lj4hk42oSw1oboVH7PgL+4IO6N+9PnV4zGFeTo8xSO15RxG8xjH9RMpRx9monw0bDe9QWDifOazBlQmX6gJxtXfwJcY0fuhEEkd8LNnemeuuaqjzu7DdYD/yd2JnJ/AGPqbJWpSG8u0PxclTmXm8+2DsBHNUIaZUN4Pxii07B0bg7SkiJVcQaUhnt2P6pI9GWmROP+juX4kvIG/H3jQURE3NygSBwY4sh4Kkp1eGpr04FzONORxnp4chRuzR3m8ZpajS93uRrWHX+A4+Jp4fVOx4kCY9IEWKZKj0WvlT7pd4C4JnFwXFNFn7tslL5nxXZDiBRZXcQ3yrPgI0UqP23hrx964xdqzp4/vlp+zpwBlemG2s3And8Fe8e+A1PsSBiH0GeUo0EaTH62Q2thPyXsZm+2hqOqrS+flnfo5LsR2ZGsRw19nmL2T8hMwHcmCSmCvRX3o4qkXmrCQDx0q3C64eNtx3GwtFLkDGQNjsZ9s7u+uyf1PQVVUjsIUiAfxmQuk1j0rsWS/xNZc1qN8aWZ/6629sp9sO1+XdRc/ZC7kZLfdU+P7eB7sNcchsFggDF+NMzjv3/TziG8joJB+t4JpX3QEz9PfdC7PqXc1bBjzoAaFF3a0PtkY/p8DLi1VUhscqEjyFTiWJAvE3RsIiSWavBrukpi9p9AzUVhSTshui8fa8DpcHhTSNJEk3TRroWkiSbpokkhv/RLyi6InAFfQY08hVu+Z0YWInppF+xHDX6+blkSHc/eUMpXMcVk8VHx5BSt9cnRYtv1GuxuGyovR6QhduF/iJqxH/sMtuNfiP5mHnknTDl3y7mcKnX1xI85A/KGlDkD8nj5ra3pzeBMEHOhmN8gbUzwnCDGl0hN9fml47+CLvRxNkGoh3gNauojiXxIGdhX+rLtht2nO08ckJMG35l8M08CiVGwZf8pkTNAYhSQWAW+SpvVxiccCg/zHp/Cm729vADkVRWPK3YETEOn+byWmvz8zyb5NfSkz9NRyyvhSYi543eijpHQwMQJci3ECSIhggNd9MSPOQPyRp85A/J4+a2t5c0gNXUscwb8DpPiClqOr2JRHYZ2O4d3v9yDxlZhWTgjORp3TsuAyeQ9fDbNNbmyrbAWrRY1YZnwMIxpc7w2q2d+RLTW+rjzhSLnyTjEezRLT/f7pahcJMwVnxayFrwMjvxAcCl8Jslpz9AMryJbrfkpEuVipHd9tP2jsWfOAA09D7ZaTjalQVlcZWqpTw2UTB8dxUDyIzv4ndEvnar9nUYJpD4lJLXUZy/bCpub82Se8DBM3pwne3uX11ZVsfMxbLg4BbT93A7Y9r8t6q554iMwDZuhBAGVjZb8XIVxNUfAdbwOMsZkwZgwWpLuQOmTJEZnlZgzoPKAaDnZ1AgioqU+NVAyfXQUA8nPuv334Orc4lTE5cAy03ucikDqU0JSS31KnCf3PnjTR+KNcPXCXgljbBaMSdpFGfTFVUt+zuuSV1O2fW+KnZ+8H/l9RUUMAqFPybzTgw1zBlQeBbUnm/30JnB1QpRBg9kCe8VekWISnY3seJda1NYn9bpS6zF9Ukl5rhdIfvbj62E7tk78UM65B6aRd3jtRCD1KSGppT4lzpNUZ0BJX7Ww0ZKfU6+t8BXYO45LOv9mSpoAs4QjpIHQpwXXQLTJnAGVKfubbA5bGx8chf9yjx4OgzncqwL7qa9AAoe4FvI+1tAnlv+TMSYTxug0WT3wp09WYxpUZvrooAaan+3Ix+LcFn6i/Tn1kbDPogQ6kUPpOq6StZb8lDhPzBnoOrA0r0u1HF+VpmDQmgm6M+BwOLB8+XIUFxfDZrNhxYoVyM/P9wpk5cqVfH29Fl+Tjbt4BtadfwTaWwT5YX1gmf5zGKM9ny+37ngRXO0RsTMQPxqWGc8q7r7ebwamT/HQ8oahwG9oeBMf9tm1kMBAJChOsIvW/EhyMUfHqxVDXI7PpGKeWGitj5Z/IPTZjn4C+4l/iKSaRnwX5lGL/coPhD6/InRaIejOwJYtW7B69WqsWbMG1dXVWLRoEYqKhIhZngpxBn75EyGcpkFCqNJAc/c12ch7LvK+y7WQo1jmvB95lEkiqjlzuzsrkBzvlhm/UNwtvd8MTJ/ioQ0ZZyCldoPkhETk+KVrQic5xzCVkGTzTwm1mzaB4kc2THI1h/kLGxPGgGyYlFICpU+KFr3VCboz8PzzzyMzMxNLlwo5y3Nzc7Fp0yZERYkTsJDPHFeqsf/1H2DMcCE1qqFvPCzTnoKh/81ELsEG7GuyyV3esp/8F0iKYddiHvMATJkLFHdT7zeDUn224rXg6oRVFGPcaJjHCfNJ7aJUn9o6vLUXCvpSKj8B53Yu3lMOgbMXmrFm81FRVx+aNwqpiQM1wxkK/FJTU1XvP3kl6dybZIwbCZLDQEnpqfyUsNKbTdCdgccffxwLFizAwoULeTZz587FqlWrkJ5+M5iKE5rtwDs4tfldpKXdfE9uSp0Jc+4PdcPV58rAgXdgP7tdpNWfftuJf3QGFCGBRMwjvkvV1+54s9pKPoe95HMx1+y7YM6+i4qVJ2O98Cs8WomzNc28RBKSeOooIaGPXvT5clYGX9ndGfbZWc+UMR/msWIHzldCJ9UHtqPBUOCntjNgP/kVbIfFe5PMYx6EKVO+Q9AT+Wk1FwPdbtCdgeeeew45OTlYsmQJ3/e8vDxs3LgR0dHRKCgoQGFhYSeTyY7dGORoQEJCQuffbJHpuDqK5CzXfzG11qFPyd9gut7Ii7X3HoSW7GWwR9zMOqf/XuhPYd+jb8HSdFokzBqZjmshMi/kEj1c3oS9J4U55Cz5mYMwZmik3KaCUt9gu44+Jz+E5aIQudAaPQItmQ/AYe4t0rPhQDWqL7aK/pYUHYHv5OpnJdATQI5z4NtjdahoEPYGDY7pg1k5cTAatc8NoGRA+x59B5YmIdmZs1gjM3FtlH5+ZCnplycbskfN9cekWu12h3aC7gxs2LAB69evx5tvvonGxkZ+ZeDQISE2vHsh79xPffM38cqAj3fuwRggKZ4x11zJSzMO9J+eVe0+SNGn9jXltKdEXyAjsCnRJ6f/Uuq+v6UEZ6oviaoOT4rCg3OzQ2JloPOXrY+wz6RzG/eWYX/pBVE/J2Yl4vZ8/ydovK2c+OOrxvhuKTqHXceqRJeakpOMuRN8h4X2p418roY+9+tYd74IEsTHtZAgPpbp8jcqa6FPChepdfSuT2o/tKgXdGeA4zgsW7YMzc3NvDPwwgsvYPZszyl0HRfLcOiNH2Lk8I486WF9ETb953yKWb2UYE028gpFtKHGy6uTYOmTOj5K9NnPfgvbgXdFlzDn/htMqbOkXlZyPSX6JDcuseL7W4515idwmpA8BQ/OzdHky4Jcg2uuEB8FHNhxD0rU7Kwmh9+Vljas21Eq2kBIEin17+P9OC65zq6SKpA8Da6F5GcgeRr8FTn6vLW1ZvMxnL3QJPo4NTESD83L8Xd5v5+roc/9IvaTG0FCH7sW85glMGXe7lePewUt9MkW4cNA7/rU7KvctoLuDDgFX79+Hb169eJTcPoqL658AT97WAhqYhyUDpjC5PZZ0/rBmGz2o5/CduJL8c08YhFMo+7t0tdg6JMDXKk+rnIfuIaOhDkxI2BMyZNzWcl1leqTfAEJFfccr8am/WdFNW+dmIpJI5M0cQa4CwdhLfiT6HqWaU/DmDheglpxFSX8Wm5Y+Ub6SMym6GvlxJ9gJfrc2/x42wmUVohf42QNHoT7Zo/wd3m/n6uhz9NFyGZlZzRJY1yO4k3KWunzC0ZiBb3rk9gNTarpxhmQ2rtQjjMgtY9y68k5paD1zcBV7hUnYknxHjPCUz+11ieXrXt9vejbd+ICznVsICRpivNGJPJStdBn3fWa5KOA/vhqoc/9mr5WTgKh79jZeny2U/wO/u7pmchJFYKF0ZRA8GP6aAiEri1zBlQeu2DcrORXG/n15lrIrzby6y2QX2ZqLNcHg5+cKdAT9clxNv2xDAQ/XysngdJXXtuM83VX+MsNieuPofHqHIcMBD9/jHx9zvTR0AuuLXMGVOYfjJtBTuIOLfWpsZFPS31qDHV31/ePXadxukrYnJieHIXvTkkHieFgP/21CJ8pfb6iWA6B4udt5cTfHAiUPn86vH3O9CklJ9jpnR9d7+ismTNAxy9gv7ztRz4UxYA3jX5AdG2yedDRKCxNGgZl8lG5PBUtbwbrjt+Dq3XLYhefA8sM71nsArlyocZQa8kv2Pq2HixHwVHhpIuzxA7sg36WdmTWrUOSvRxR/Xvz6WLN+T+BIayvbMndmZ9sGAoMaPnVN7eisu4yf+WUuAGIHRihQIV3E1p9qorx0Jje9Wndf1/tM2dAZfpaTDb78S9gO/aZSKk5526YRt4pW70W+pwiSOAfEgDItZDAPyYZwX+01CcbVgg+TGj4kWh/JOqfszRdvYHWG1YkxfTj/2Ry2DBn/DBMHq08qRCNPjXGz18b3VnfqapL+PCbEhGCB27JRkZy12iv/jh5+7w781PKJFTsmDOg8khpcTOo8Yvb2U0t9LkiJFkWHR3JlQzxo2EeK+SRkFq01idVR0982H287ThKKy52dr264SoMRiAxWnAGSElLjMRSiiNyqo6vrQ3WvW+AqynmtRkTxsGS/2PARyZQf+Ovqj5/F1PwOY2+T7eX4nh5g+iqI4fG4N6ZWQqUeDah0aeaCB8N6V1fIBh4uwZzBlSmr8Vks+58CVyNOBCTMWEsLNN/Jlu9Fvpkiwjhm7U78ztcVof1Bac6R+dC41X0jQhD/4ib5/rJPoIlt2QrHnI1+ZGz8eSMvGshZ+PJGXmlRU19SjX4sqPR9/dNRztPoDivQU6ifO/WUapJpdGnmogQfr4EggFzBgJEWYubgTu7DdYD/yfqgSX3BzCmeg7OpNXDJBAIteCnpm6t9JFYEaJz3h5iREjpB62+M9VNOF8rvCq4er0dR8rqRZedn5eK/BHKwwHT6nMVo+YpB2e7auqTMl5y69Do+3rfWew9US26JBlLMqZqFRp9amkI5edfIBgwZyBAlLW6Gbjzu2CvP873whQ7EsYhUxT1SCt9isR4MOqJ+uwnvoTt6KciGuZR98I0YpFsrGrzI+GAXeMZkHDANEVNfdZdr4KrOiCSY0zOhWXKTxVLpNXnuFwJrkFYXTHGZKieZp1G3/U2Gz7bWYqyaiE6YlpSJO6enoXe4WbFvNwNafSpJsJHQ3rXFwgGzBkIEGUlk83RKrynNUREa65SiT7NRblcoLvqIxtAuTohHa8xbhTIBlBnad/+ezjqxKcwDHE5CJsp/RSGs63uys/THOSq9oMERHItlilPwpg8UfGUpeHHVR+EtdAtUuPUp2FMkh+p0VsHaPQ527TaOP6fFrNRMSct9akuKoSeL1r23V/bbM+AP0IyP5dzszpaGmDd9TocTUIcdUPkMFimPAFDnxiZV5VeXY4+6a2qV7M76rOf+AdsRz8RQTKPWgxTRzpqa8FL4C647QlJHAvLNPGeEJtdeIibTd4f4t2Rn6/ZxV0sA9cgHKk1xmTCSJmnhIafmpEa2Zetes8U15ZoxlcbRfpplTkDKo+FnMlmK1oNe9lWkQJT2hyYJzyssqqbzcnRp5kIHw13R33WHX/ojBHh7LoxfhQsM37B/ydX9g2sRX8TUbFMWAZj2i383/jl3R2lKOtIfkN29N89w/PybnfkF8h5SMNPiz0M7n2n0RcIjkxfIChrcw3mDKjMVc7NEIiHB3uYqDvAcsbXeWXrzj92ZpTsdAYSxsAy/eed4uzndohyOpiGzej87Ot9Zdh7QpzKN39EIubndc3WqUSfuoR8t9ad9akZqZGtDGgzK/U+/7TptbRWmTMgjZPkWnImm23PKtgrdotXBgZPhnnSY5KvJ7eiHH1y21ajfnfUZz+9Gbbiv4vwmMd9D6b0eZKQyTkSFgr8omKFTYgD+/aS1P9AVqLh52i/BnJPc7Ude0PiR/H3spJIjcwZ0GbUacZXG0X6aZU5AyqPhZzJxtUfh3X7HwCHXVBhMMEy8xcwxo5UWdXN5uTo00yEj4bV0mc78A7sFw7zVzIljoE594eqdEepPu7cdtjrhOhvprhsGIfNlKznk29P4MR5cUrcEUMGYfGsrilxleqTLIaiIolo+M6Xe9BqM/GtJET3xb0zRyDcIvx3hMQUxRQS/Jqqws8upFyGyeL3enIrqKJP7kVl1Gf6ZMDSWVXmDKg8IHJvBsf1ZjgunhF8gejhMPRWJ7uZt27J1acyHr/NqaGPHNMjx/VcCzmmR47r0RY19MnVcLLyIj7aKhwrdZb754xEZkrX0yfB0Ce1P//acwY7issQESHEw7fZHYCDg9ksOAODY/vjnpkj0C8iTGqTqtfTMz/SWaaPbsj1zo+ud3TWzBmg49fFWu+TrSfo03IvRrD41TW1oLJeSImbEtsfcZF9PM7cYOmTchuR1x0lZRc6nQGSNKfdakdyR+4D0gaJY3B7fte9EFLaV6OOnvkxZ4B+hPU+vvQ9VN4CcwaUswu5h3FPeZhYC/4E7sJB0fgYE8fDMu1p6tHW+8NEz/rIiYh9Jec7nYGqhqswmwyIj7qZ/VDt8LhyB1zP/HrK/St3zOTU1/v4yumL2nWZM6AyUb1PtpDQN7gj3K3ChDNceQGs+94Ujawl70cwDp1GPdohwS9VvfCy1MBcGiivvYy31u9FeK/e/F/rmq6hX0QvRLhEwMseOoh/VRCsotfxJTkYSLjqpqYmRGdNB8nBoMeiV35OVnrXF8wx7T7OAGcD1/Hu3Rg9HDCqF2JTzgDpfbIFW5/9/C44Gk7wSA0xI2ByDavcdhX1X72AAW1C/HRjfA4s+Y8B4Tez5kkdC67mMLiGUqGdmCwYE8ZINfVZL9j8/HVC7/pKTpyCuY+w18Fqs+OznULAIGdZOjeHD5MbrKJHfsQRIEmZSGltbeVXVkgyJj06BHrk5zqX9K4vWPOefx47HA5HMAXIvfbKlSuxfPlykZnj0jlYC/4Ixw3hnaqhV39Ypv0chqhhcpunrq/3yRZMffaybbAViRMumSf8AKY0IeGSrXgNrh7+onMZmfzNlH4rzOMeoh4XtRoIJj8pfdCrvtYbVlTUX0F1dTUmjxvReXKg+doN0V6IYB831CM/684XwdUcETkDxoTRsEx/VsqUCGidYPHjqovEkSiTJnjsd7D0BXQQFF6sWzgDtn1vwV6+U4TANHQ6zHmPKsSi3Ezvky2Y+vylYiYb/66d2y9yBoxx2bDMFDt/ykeH3tIfP7I65WgUEtUYBmWAX6UKYPGnL4BSOi9VXtuMtZuPwc45+F+2/fr2wdJ5ORgar+3JGSV91SM/644XwdW6OQPxo2GZId0ZcLQ0wnHxtDAvo9Nh6DNICR6/NsHgx53bAev+t0XaLBMfgdElcJfzw2Do8wtNJxW6hTOg5e5xueOk98kWTH3WHb8HVytOyMO/CpghJOSx7n4d105+K3YGUvJgmfyE3GHQrL4vflokzpHbkWCOrzetn+88iaNnhVTIzmXuUamxuGt6ptzuaV5fj/zsp76C7dD7In7msQ/ClHGbJB7kniP3nmsh9xy599QuweBHkkORJFGuhSSHskztumE4GPrUZqxVe93CGbDtfxsknKtrIeFczRMf0Yqb13b1PtmCqc9+/AuQ7H2uhWTvM428k/8Td6EYlzf9r8gZsEx7BsbEcQEfR28X9MUvEIlq/IEI5vh60+YaQdHpDAT71ICS8fXHXsvPiUPA1ZV0bCCcJtkRIJpse/4Ce8Ue8fNx8CSYJz2uumS5849rPCVeSRuUIVuTnB+DcvXJFhPCBt3CGSA5xMlxMpIFkBSS9Y8cIzMMSAn40Oh9sgVbH9kIJQrXOmaJaIzOH9uN5N43+L/x+eD7d5wsCPhIer6gT2dg+0r+ge1aAv2aI9jj64naht2nUXSqlv/I6QxMyIjHdyan62RUb8pQym9b8Xmc7UgklZoYidnjhmjSNyX65HxZ0oqWo4+r3MevBroWsgpoTMmTJcN2bB3sx9eLnZ2Rd8Ccc0+XduTokyWiG1TuFs6Acxy4jlTAxsjAbxx0atD7ZGP66O5aX/yIo0N2frsWsuOb7PwOVNHj+F66egOffnsCtZeu8c5AanIs7p01AlH9ukdugp1HKrGtuFw0xLPHDcX00er/GFEyvraD78F+Zot4Xg6fC/P476s+LeXosxa+Cq76gNh5TsqFZepPZeuyHfxb5yZLsrnSPH6Zxzbk6JMtIsQNfDoDf/nLX5CZmYlbbhFSqdIWu92OF198EevWrcO+ffv45shhBnI6oLi4GDabDStWrEB+fr7XS3k6TUCrS017vU82po9utH3xc9jaYNv3JhwXivmLGBLHwZz3IxgUxktQolTP40tyE5w/fx5jc/S3V4DGmV+75RjKqptEw0WOR5JjkmoXReN7/RLad70uCnseNuUJoHeU2vJkhUu2frsSXL3bSlpsNiyztNswrIif6pT02aBPZ+D555/Hb3/7W9x333146aWXkJREt2T75z//GfHx8XjqqadQVVXFE9myZQtWr16NNWvW8MeOFi1ahKKiIuYMaDRfKo3YEAAAIABJREFU9H4zdBd95TXNON8RPnhIbH8MTQjMzvnuwk+j6e+3WSX8PvimBKerLonaTk+OwpJbsv1eT24FJfqc13DcuAwD+Y9eA+ReVnJ9OfrsRz6ErfRforbNWQtgGv2A5OvJrShHn9y2Q72+T2eA/GonX9K/+tWvcOXKFRDnYPr06Z19njRpkqL+JycndzoDpE2y+rB06VK+rdzcXGzatAlRUZ69VrYyoAh5p5Heb4buoO/Y2fouwXTunp6JnNRYusGTYN0d+EnopmZVlPDbX3oBG/eWiTSR/Aokz4LaRYk+tTX4ak+WPrsVtn1vwN6xkmbiV9J+rEm2R6dmWfoCCU4H15K0Z6ClpQXz589HYWGhSLK3eEV33insDneWhIQErFq1qvO/XZ2Bxx9/HAsWLMDChQv5z+fOncvXTU9PR0FBQZdrkjqLFy/WATomgRHwTGBTcQ3K66+JPhwa2xe3jktgyHRC4NK1dtQ1XefVxEX2RlRfaZkSd5U2oLKhhbdLiemDKVkx/L9Lq67gwqVW/t+JURHISu6vk54yGa4EyHdWWlrwEmHpeTT8OgNkyf6ZZ57hv5QfeeQR0crAQw95jgx344awG9xZjEYjwsJu3myuzsBzzz2HnJwcLFkibLLKy8vDxv/f3rmAR1Wd6/+dyQTCLYQEAoFwkRACJIhITAS5GE21B5GiFS3FU45tbaun1p5a5X/01FPP8UGotV57aKme8ihWqqBiSzlS1AKJeAEJchMQkUuAkAAxXAJkLv9n7SGQnWSSPfOtmdk7edfz+KiZ9a79rd/3rTXfrL33WitWIC2t6fGs6nOuDMjCye6ZcVuwr+GrdPXeitWrdG2BnyzCW1fv3H8Mi98136v+1jW5GNo/tcV73qvL9mL1pn2mC0waNQCTLovOmwPN9YT+bd2/LdWwOz9Z72TqFpOB5557Dj/5yU9w+eWXQz1MqL6odZSGycDy5cuxbNkyLFiwAFVVVcbKQFlZWcjLMBmQecDug6Et2Ldqwx68vyX4TEx9GZeXieIx0X/LpS3wk0V46+olqz/Dti+DryHXl149uiArIwWVlZXIHzkEOf2b/hhRuyjuPv/6YL0uq28PYzfF1oo6pGlvRbVRbWDvFAzqE9l9e/q3NdItf253frLeydQtJgOPPPIIevbsibvuugvq17203HfffcbDgevWrcPYsWNx00034Z577sGsWbNQXV1tJANz5sxBUVFwr/rmCpMBmRfsPhjagn3+QABvrt1x4aEy9TDZtAk5cLuMx7e0lsDxPaY92fccD2CwTU8tVB23g38br9zUnDqLmtPnkNmr24V9EKZeNRSXDelt8pVaTVCrCg2LWk1QqwotlS17KqGOb25Ybp44DHmXBG8xhFPswK8le2lfON60V91WbxPEytza2lokJSXB1cqEyWRA5hEO1rbDT72jrd7VblgqL7kFmVdMlXUyimo7xN/bH3+BD7cFT8ZU5WDVSSR63OiV0vlCMqBWBm67ZoSJxMZdh/GX94P7+9eXG8dlY3R2nxaJvfredny2r8pUZ9iAnri1aDj+9sHn+Pz8a4lD+vXA5CtbPsvCDvyYDERxgMSxadskA1YZMBmwSqr5epxM2g6/uvefgf+AedOW6s6D0XvKL2WdjKJaEn9HqoMP7qWndBFZePpsHV5fs+PCjoGnauuQ1NGDBLfrQjIwOCMFt183ssl11O0FteSvilrqHzGo9V/3oZ4hUSsRasOihkVtVKQ2LApVJPxE0CyKaZ9FUDasxmRAs1M4GGRAyc86v+a2ma3p2A+9vvGY9UZiXDMS/1ZWn4L6dX20Jvj0f1pyJ+NXdS9hUnDO6zPaK918AGs/DT4YWL9d8oRLB2jbUjjUMySHj57EF4eCzxHUl1BJSP3nkfCLpYtpXyxp670WkwG9PG1xT7SlLnGwyhxuJ37eTX+Cb8f/mTp0LHUMMorvlXUyiupI+KmlebVE37CopXm1RN9a8fn82F95wqjWv1c3JCQ0/+zTcrVcf+AYTpw4gdHDB+KGVpbrW7tuw89DPUPy2nvbsWP/UVNTzd2eaFghEn7h2CqtS/ukBOOnZzKgmT0Hgwwo+VnnF6irNTZtqT++VR3bur/XdRg81Hyv23qL0a8ZiX8jfVWzvOoEFr+zFafO1Bkd65KUiG9dm4t+PbuF7Ggk9kVKrezzCrxVutMkb+7BRSYDkRJuqoulf/VZHZuWmAxo5mz3YKN9Mofbkl/AH+yUy90mV6bUmxmffnHE5LhLB6cbb2i0VN4s2YFPdzfSZaVj2vjQulj7d8e+o9hbEXwGYWDv7sgZ0Pz+KvX9jLV94Y4WW9rnr4P3wwXGTodqA73k7PHwFP4AcCeG2702XZ/JgGb32nIwNOgj7ZM5nPxiz+9A5Qm88s4W1J71Ghfv1NGDGdfmGa8CtlQiWVGgf2PnX3VwlSo9onx6pXfTYvh2BM9AqH8mJCFnMjyjoncGgoxifNRMBjRz52QiA0p+5NccgXN1PuyvrDE+6t8rGR0SE1oF9Zf3d2LjrgpTvdHZvXHjuKEhtYy/VrG2WMEKv2MnarHkH58ZR1qr0ie1K265ehhSu3WSXTyEuuHpiPXJgDvKpyNGpSNRbpTJgGbAVgaD5kuG1RztCwtXk8rk5xx+FcfVWwjb0PAX6K1FI9C7R+hXE+nf6Pt3+bpd2LDT/EDomKF9cMPY1h8IjcQ6tReH2pOj4cqAu18+Eq/6SSTNtVkNkwHNrm2rk0mgcjt8R4K7qCWkD4Or13DN5ILNtVV+UYHVTKNtiV9ldfDgH7UZkKQcPhbcn6BPauv7E8SS3+nzDzZ2TrJ+7zqW9kXC3Ip9kdy+icSWeo1//4eoW/dbUzKQOPZf4e5fKGm2zWmZDGh2qZXBoPmSYTUXiX3+fR+g7oP/MV0n8cq74R4Q2RHWLRkciX1hARBWpn0ygFb4VX112thXQP1blZ7dOxv7Cqh/R7tYsU9qw4nT57B09XbsOxK87TEgPRnfnDQc3Tq3fnKiVfu8GxbCf2iT0b47YxQ8Y/5FarYlvRX73li7A5sbPRA6cnA6bmrlgVBLBoSo5K/cAX/VDlRUVCAjdyLcvVp++FRyLadqmQxo9pyVwaD5kmE1F4l93vefga/RTncJmfnwjNO/zBaJfWEBEFamfTKAVvhJ9hWQWReblakVH+7Gx58dNJl6xbC++KfC1o/WtcLPu2UpfNuWmdpPGPENePK+KcXTqt6KfV8eroY69MnnDxjtqZ0f1WFPg/qktNq+tIIV+6TXcKqeyYBmz9k92CKx79w/5iJwZJuJlCt9BDpc/f8004vNZCwxOhJ+kuuFq20L9sV6Gbkh41jwk/TPin3N7Uzp7p2LxEmzww2nsOtbsU81qm6RNFwZCedWSdhGNRBYtU9yDadqmQxo9pzdgy0S+7yf/hm+z5abf2kMuwGeS2/TTI/JgBRoJP6VXjMcvRX7It1XIBw7QtW1Yp/0OuoWwdYvzQcX5Q7qadwqaK1Ysa+u5Cn4D35iasrd93Ikjv9pa82LP29s30fbD5rOcigY3ld8DUkDVvhJ2neylsmAZu/ZPdgisi/gQ92HC+A/VGbQcmdchkS1aYer9de7wsUbkX3hXkRQn/YJ4Fl8QHT/kRq88s5WnDkX3FcgqYPaVyAX/dOTZRe3oI6Ff3eXH8fLq7aYrJlZnIesfj1atdCKfb49a+D9+HlTW54rvo+ESya22r60QkP7Ptx+EG9/tNvU5PUFWSiMY0JghZ+UgVP1TAY0e87uwUb7ZA4nv9jwi2RfAZllQXWs/Ft98gxU0qOKSnJSuiZZMt+qfWqLan9l8O0fd69hUFtVx6I0tE8ldLsOHDNdNjsz1Ujs4lWs8ouXffG8LpMBzfTtHmy0T+Zw8iM/GQGZ2knxpx4S3H3wuKnDWX17GA8LxqvYnV+8uKjrMhnQTN/uwUb7ZA4nP/KTEZCpnRR/7285AHV8c8NSPOYSjMvLlEEQqO3OT9A1sZTJgBihuQG7Bxvtkzmc/NoHv5O150zL+F07Nd0DIHAyeAiSq2u6DEoYaqfF39pP92HPoWqjh5dkpGDCpQPC6K3+qnbnp7/H1ltkMmCdlaWadg822mfJjSErxZqff+/78J1/rTMhfQTcA8e12IFY2xcuTSfY5+6UipdXbYXPHzwNMsHtxsziXAzKCL4HHzhZgbr3n0Ogem8wGUgZiMRxP4ara+9wcYRdP178znl9UAdGqaIOiOrgaf7h4XjZZxWk3e2z2o9o1GMyoJmq3YON9skcHkt+/i/eQ936P5oMTsy/A+7BRbZJVsKlGUt+4dqm6iv7yg6cw5Y9lSZ53iW9cPPEYcbfvOv/CN8X7134PFB3Ggn9C5E48f5ILhmWZtl7n+C0v6OhUb+0rxzRLyx9JJUPVNbgT6vMb3d8uzgXmb2avt0RqX8PVp3AvvNHOQ/o3R19e7Z8ImUk/aj37+DBgyOVt2kdkwHN7o10MGg2g18WUQIaS//Wrf3Nhdc567tjvNY54Wf0bxT9W/r5qQtL2/WXUV+8/3zdSON/6zf1CdTVInDsC8BXB1fHbnD3L4Bn/E/hThkoti5wtgaBo58b7bjShsDVMRkfbCvHm6u3oHPni9syX3fF4KgnBOHs+xDJ+Ni+twqv/WO7idn0q4dj+MCeYo6NG4jEPu1G2LRBJgOaHWP3YKN9MofHkl/dml/Bf9j8Prq7Tx4SJz7AZEDmxhb5bT/ix4Ydh0x1xuRk4IYrhxh/8374O/j2vg9/9X7g9NHgF3bnHsbtAvclE5F4xfdF1gUqP8O5NY8bSYZREhLRYeL9eGWTF5/uKjclA0P69cC3i6P7dH44OyZGMj5UIqASgoZFJQIqIdBdIrFPtw12bY/JgGbP2D3YaJ/M4bHk59v2JrxbXjcZ7Mm7GQkjpjEZkLmxRX49evXFktXbcejoSaNeRlpX3DJpOHp0C+4F4D+yHXVrHkegagcCZ04ALhdcqVlwdewKHdv+1icbDY1MGDgOr54YH5dkIJyzIiIZH+EkG1K3R2Kf9JpO0TMZ0Owpuwcb7ZM5PNb8vJsWw394s2G0u89IeEZ9q8UOxNq+cGk6yT61MZAqzW4IdLYG59b82jgZ0NWhC+D2BH/ED5oAT8Gd4WIx1Q91tsD6njOxbM1W08rA1/IvwdjcyF7VU29MqNLcmxINDVJHSb/63jYcrak1/pyW3Am3Fo1o9mjpSPy78uMvjFsgDYt6FkLdAmlcVm/ahz0Hz7+d0DcFk0aF93ZCJPaJnOkgMZMBzc6ye7DRPpnDyY/86gkEju9BXcmTCNQGv5xcnVKQOP7f4OpxiQiSd8Mf4dt98QFFI8nIKoJnzB14891PcMoXfM1xcN8eGJsb/gOENafPYsk/tjd4OyAZt1w9DMmdgw8m1peKY6eM/+yd2sX4d8Xx8//fI/j/zZVIxofabVIda7xjf/CWS07/NOM44w6J5jcWSrccwDuN9i24dswluCqMfQsisU/kTAeJY5oMrFmzBr/4xS/QsWNHdOvWDYsWLUJSUhJmz56NjRs3wuv1Yu7cuSgsLAyJcN68eUZ9uxa7Bxvtk0UO+ZGfiUDAD//5B/3caUMAl1sG6MKri88iUL3PaMuVMgCJ4+4xXl3UEX+tHaF85Pgp/Pm9bTh+Irgyom6P3FY0AuktJAH1nZbYFzzQGHCFIKjOc1DnOjQs6jwHda6D1SKxz+o1nFovpsnA5MmT8Yc//AH9+vXDvffei9GjRyMzMxMLFy40EoPy8nJMnToVGzZsYDIQpYiy+2CgfTLHk18b4ncquKkRulzc1EiHf1u7Rx/OMwKNaeuwL5QHdZx1EE37ZJEXf3VMk4GG3Z01axZuu+02fPDBB8jJycHMmTONj/Pz87Fy5UqkpqY2S4crA7KgsftgoH30r4yATN0e4u/1NZ+1uI9Ca8lCS4SjyU8dh/x/jU5B/HpBFsI5Fjma9skiL/7qqCQD06aZn3bOyMjA/PnzL/T2hRdewNtvv41XX30Vd999N9SKwZQpU4zPi4uLjbrZ2dkoKSlBaWlpE0rTp0+PPzlaQAIkQAIOJHDg6Gn8bb35gb3J+f2QmRbcv+C9zRXYdTB4omJ9ye6bjKKR0d9hsTWc2/d/hfJjwQcZ+6V2wvD+3VuTmD4PBALIysoKS9NeKkclGThzJnivqb643W506BB86OXBBx/E8ePH8eyzz8Lj8eChhx5CXl4eZsyYYXxeUFCAFStWIC0trVkftJWVgcDZE402FYnOjluNIdo9M6Z9sqmH/MjPCoGvTp7F/soafLjtII6fqEXHDgkY0i8V/1SYhfLKE3jl3a04fSa4z0HnpETMuCYX/Xq1Pkcx/qzQt2edqCQDobr65JNPoqKiwnhIsL4sX74cy5Ytw4IFC1BVVWWsDJSVlYWk1RaSAXXOuHftrxHwBl/tcXk6wDPh58a549EuHKwywuRHfjICMrXO+PtH2V6s2RR8SLG+TBw1AFdfNhB1Xh/Kq4JnEfTr2Q2JIc4i4I8NmT/tpI5pMtC1a1fjocGEhOArI7fccotxm0A9P1BdXW0kA3PmzEFRUei919tCMhBqUxFP4Y+iHhs6J5NoGEv7ZFTJj/ysEli0cjO+OH+iYL1mcEYKbj+/7bLVdhrWY/xFQs0empgmAy11uba21njN0OUK9WJJUN0WkoFQm4okTor+K5McrLKBR37kJyMgU+uMv8XvbMXOA8dMBg3NTMW3rs2N2Eid9kVsRAtCu9sXjT5bbdM2yYBVg9tCMtDcpiLuzHwk9LvcwOBKy47acah2Hwy0z+pIaL4e+bVvfvuO1JhO/xuQ3vRkwXpCG3cdhnqNsGG5cVw2Rmf3iRgi4y9idHEXMhnQ7AIrgyFw4jC8656Dv35TkcTOCNQeBzwXdwBLVM8QZFyq2brgEa12PsKT9slcTn7tl9/WPZVYuuYzE4BvThyG3Et6hYTy2b6j+PJwcAfFQX1SMGxA8w9uW6WqK/7+vn4Pdh8MbjCU1bcH1LbLOoou+3TYYrc2mAxo9kg4wRY4WWFc3bt5Cfz7PzRZ4lbno4/9V83WMRmQAg3Hv9JrRaKnfZFQu6hxMj91foD6cm9Y1Je7OkcgVkUHv9Wb9mJ1mfnBxkmXDcCkUfKjoXXYFyuWsb4OkwHNxCMJtlg+QxCJfZoRtdgc7ZPRJr/2y0+yWZCMmt5k6uW/b7mwKlDfslodmPk169sOh+qP3ceHLj9E0g6TgUiotaCJJNi8G1+Cb9ffTa0mZH8NntH/rNk6rgxIgUbiX+k1w9HTvnBoNa3rZH6rNuzB+1sOmDo1Li8TxWP0LLFbIauD3+J3t2Hn+UOL6q/pSXBfOCVRJQbXXD7IijlN6uiwL6ILO0DUZpMB3+er4K/YZrjA3XsEEoYUx8QdkQSbOvXM+8H/QO0/YNjbaxg8V95tnIKmu0Rin24bWmqP9slok1/75ef1+fFmyQ7sOhC8156d2QPTxudAfZHqKht2HMKew18ZzV3SpzvG5GSYmtYRfxt2HsLydZ9faPdYTS0SEtzo3uXiM1VFowdiwqXhHV+sGtRhny6WdmunTSYDvp1vw1v2som157KZSBh6fdT5i4Lt3MmgfR26Rs1OkX1Rs+piw7RPBpn8yE9GILTaytkAuuJvy54j+PJ80rHzwFGcPB3cDbG+DO6bgtu/NjLsruqyL+wLO0DQJpOBurVPwH9okwm/O2MUEifcF3WX2D3YaJ8sBMiP/GQEZOp4xp+VUwOjYZ+V61qlGg37rF7b7vXaZjKw5nH4D282JwN9RiJx4v1R94fdgy1e9vkOrEegaofB39UzBwmZ+c36Il72WQ0M2meVVPP17M5v+eqNqEUnw/jmlsFlvZer48nv5VVbsLs8eAuivmT164GZxRcf7IuGfet3HMLfPrh420Bde/KVQ5Df6BaFFbrRsM/KdZ1Qp00mA77PlsP76Z9N/D2X3oaEYTdE3Sd2D7Z42Ofbswbej583++OK7yPhkolN/BEP+8IJCtoXDq2mde3MTy2Dv/6PzejcOXh6nyrhHpEro9O6Op78SjfvxzuffGky8trLB+Gqkf0v/C1a9pV9XoEvz2+dPCgjBZcNiewExWjZ17rn7F+jTSYDCrtv+1vwHd5ieCChTx4Shk+NiTfsHmzxsM9b+hR85Z+Y+KvdFj1X/ZTJgOaojId/w+mCne1Ty9Gbdh4wJQPZmamYIdieNxw2VurGm5862KjhZkDqYKOGJd72tcbQ7va1Zn80P2+zyUA0obXUtt2DLR72hbOPQjzsCydWaF84tJy1MqCWwTfvKjclA42XwWW9l6udHn/qpNbAseCSvyt1iHFiayyL3fnFkkXjazEZ0Ezf7sEWD/t8W16Hd9ubJtKeEdOQkHczVwYYf5oJRN6cWgb/S8k2UzLQeBk88tb1KNX4HTBwEJaV7IR6yh4BYGj/NHxj/FCtrxBGam1L84v/6G54S36DwNng0ciujt3gGf8zuNOyIr1c2Lp4zH9hGxknAZMBzeDtHmzxss/7yYvwnX/DIyFjFDyXf6dZ8vGyz2oYtHv7/D4Eju0+/8suC3AHjyO3WuzOb8nf1+OEN9HojtrcpvEyuNV+Rque4vfFMRfe39poc6HcTBRr2r9fYntL/vV+tAC+L0tMzScMGg9PwQ8klwxLa/f4C6szmiszGdAM1O7BRvtkDm/P/PzHvoC35EkEzgQ3nUFSdySO/ze4Uwdbhtqe+VmG1EJFxa/081PYc/5huvqql2Sk4J+vC/+9ex02NWyjJf+Gc7tQt1317dk9/qLVbyvtMhmwQimMOnYPNtoXhjObqdqe+Xk/+gN8X65t9MtuAjwFd1qG2p75WYbUSjKwfu+ZuB9IFMrEFlcG1r8A3xerzfEzeBI8+d/TgcZSG3aPP0udiFIlJgOawdo92GifzOHtmZ+OX3btmZ8s8oJqxa/W3Q1LVzc6qnjSMOQOCn1UsY5rW2mjJf8GvjqAutKnUX9aq6trbyRedS9c3TOtNK2ljt3jT0snI2yEyUCE4CLJjDVfKqLm7D4YaF9Ebr0giia/uo+eh//LNSYD3YMmIrHg+5aNjqZ9lo1o5Zf34MHWb3vouGY4bdTz21dRg31HgrdrBqR3x4DeyeE0Y7luoOYg/FU7jfrunkPhSu7botaKfwPVweOJXSnhny1g2XAAh48Ft3fvk3pxe3cr9oVzjbZUl8mAZm/aPdik9lndSTBSrFL7Ir2uVV17tk9N4nWlTyFwqio4mXfpicSrfhrWpN6e+VmNsZbqxZKf/1AZ6tb+xmRO4oSfwZ1xWUgTY2lfKCOOVJ/Gq+9uw7ETtUaV1G6dcOs1I5Ce0pkHFbUQXEwGdIzQBm3YYTBEazIJZyfBSLG2ZX6RMglHFwt+gWN7gslAavhH48bCvnB4Na5L+y4SqVv3HPz7PzIhcvcvQOLYH9s6GXirdCfUjoUNi9qxcOpVQ5kMMBmQTA/hadvyZBLOToLhUbtYuy3zi5RJODryC4dW07rk1yAZWD0P/oqt5mSgdy4SJ822dTLw0srNId+2sLt/ZdErU3NlQMavidruwSaxT8cDZK3hltjXWts6Pqd9MopSfr7d71z4gnL3zkVC1rUygxqppfZpNaaZxmJpn3fjIvh2rTRZkZB9HTyjb7d1MvBmyQ58uvuIycZLs9IxbXwOVwa4MhDtIdo+ftmGs5NgpMRjOdlFYiPti4SanvHh2/k2vGUvmwzwXDYTCUOvlxnVQE3/NoBxtgZ16+bDfyS4OuBOz0Xi2LuAjqEfVrQDvwOVNVj8zjacPltn2N25YyK+de0IZPZKZjLAZEDbXNFqQ3YYDC0ZKbXP6k6CrYIKUUFqX6TXtaqjfVZJNV9Pwq9u7RPwn9/Fsr51d8YoJE64T2YUk4EW+QXqgg/iuRKDRztHc35prX2rn3t9fhw4UqN2a0b/9OQLWzVL4s/qtZ1aj7cJNHvO7sFG+2QOJ7/48atb8zj8hzebDHD3GYnEiffLjGIyQH7aCDi3oZgmAytWrMDcuXPRoUMHdO/eHS+99BKSkpIwe/ZsbNy4EV6v1/i8sLAwJNF58+YZ9e1a+GUh8wz5kV8oAt7tf4Vv86umjxNG3grP8CkyaEwGyE8bAec2FNNk4Prrr8ef//xnpKSk4K677sK4ceOQkZGBhQsXYtGiRSgvL8fUqVOxYcMGJgNRiil+2crAkl98+Xm3LUPg/BPurt658Iz4hsygRmr6V4aT/GT84qmOaTJQ31G1AjB9+nT8+Mc/xurVq5GTk4OZM2caH+fn52PlypVITU1tlgtXBmThwsFKfjICMjXjj/xkBGRqu8efrHcydVSSgWnTppmsUr/+58+fb/ztT3/6Ex566CFcffXVeOGFF4yEYPLkyZgyJbjUV1xcbNTNzs5mMiDzbbNquw8G2idzOvmRn4yATC2NP/VKYP2JjOokRvVKoM4itU+nLXZrKyrJwJkzZ0z9dLvdxnMC9SUQCODnP/+5cYvg+PHjyMvLw4wZM4yPCwoKoJ4tSEtLQ0lJCUpLS5swU6sKLCRAAiRAAm2HwPb9X2HtNvP+ABNGpGN4/+7aOqm+e7KysrS115Yaikoy0Bygc+fOGb/+//rXvxqJwe9//3vs2rULRUVFWLZsGRYsWICqqipjZaCsrCwkY94mkIWf3TNj2kf/ygjI1Iy/+PF75Z2t2HXgmMmA7MxUzLg217JR+yq+wt6KGqP+wN7JGNDbnEjY3b+WOxqFijFLBpTtTz/9NBYvXozMzEzs27fPeJhwwIABmDVrFqqrq41kYM6cOUaCEKowGZBFgd0HQ3uzT/cDce2Nn2w0NFWTn4yohN+iv2/BFwePmwwY3LcHbv9aniWjtn5Z2erRzhL7LBnh4EoxTQYUJ5/Ph1OnTiE52byLVW1trfGaocvlahEnkwFZtNl9MLQn+6Lxqlx74icbCc2ryU9GVcJv7af78N7GvSYDikYPxIRLrR2q8QvLAAAdcklEQVR1/Op72/DZvqMm/bABabi1aMSFv0nsk5GxvzrmyYAUCZMBGUG7D4b2ZF80NtFpT/xkI4HJgB35vfPJl9hdHrxVkNUvFddePsiymS0dUFTfiN3Hh+XORqEikwHNUO0ebLRP5nCd/KKxva5O+2Sk+GVLftEgELrNVev34P2tB0wVxuVmojj/4lHbdh8fsSVmvhqTAc307R5stE/mcJ38onHwjk77ZKSYDJBfNAiEbtPn8+PNkp3YeSB4q2BoZhqmjR+KhAT3BZHdx0dsiTEZiCpvuwcb7ZO5Xzc/3Ufy6rZPRqupmvbJiJJf2+Yn651MzZUBGb8mag5WGVDyIz8ZAZma8Rc+v9rzRwV36pho+yOC7e7f8OnrUzAZ0MfSaMnuwUb7ZA4nP/KTEZCp7RR/J2vPGa/y7a34yujUwN7dMWZgEvKGD5V1MopqO/GLYjcjaprJQETYQovsHmy0T+Zw8iM/GQGZ2k7x938f7sZHnx00dWhwzw64/YbQp87Kei9X24mfvDd6W2AyoJcnVwaEPO0+WGmfzMHk13b4NfcqX49OwD23TmjSyROnz2L/keDOgP3Tk9Gtc0cZiAjVdo+/CLulRcZkQAvGi43YPdhon8zh5Ed+MgIytZ3iT90iULv+NSwZyQm486Zxpr+pg4fU7oLqXABV1MZyaldBdRBRrIud+MW6761dj8lAa4TC/NzuwUb7wnRoo+rkR34yAjK1neLv8/Lj+NOqLaYOTRreA5MKzNsHv752B7Z8YT6AKG9wOm6ekCODEYHaTvwiMD+qEiYDmvHaPdhon8zh5OdQfnWn4a/aZRjv7pkNJHZutiP0b3j+PVZTi/2V55f/eyWjuuoQBg8ebGrEys6A4V018tp292/kPZMrmQzIGZpasHuw0T6Zw8nPefwCVTtxbs2vAe/5o9U9Segw8edw9Wz61Dv9q9+/f/tgN9bvMD9omJ/TF5OvjP1Rwnb3r4y+TM1kQMavidruwUb7ZA4nP+fx8374e/j2lpoMTxh4FTyFP+T4lbnTEr+vTp7FktXbUV51wqjfr2c33DJpOLp3jf1DhHYfv5rdEVZzTAbCwtV6ZbsHG+1r3Yct1SA/5/GrWz0P/oqtJsPdvXOROGm2pS8zWY/1qp0cfzWnzhowkrvEPgmo94Ld+emNlvBaYzIQHq9Wa9s92Ghfqy5ssQL5OY+fd/3/wvfFP8wrA4Ovhif/u0wGZO4kP8384tkckwHN9PllIQNKfuQnI9BUHThxGHWlTyNQU2586Eruh8Sr7oWrWx9+mWmGzfGrGWgMm2MyYBG2f986+Cq2GbUTeo+Ae8DYZpUcDBaBhqhGfuQnIxBaHag5dD4ZyAhZifEno09+Mn7xVDMZsEDft/s9eDf80VTTM+YOJGQV8ZeFBX7hVOFkEg6tpnXJj/xkBGRqxp+MXzzVTAYs0K9b+xv4D5WZarozLkPihJ8xGbDAL5wqTptMvNveQuBI8OE0V3ouPCOmhtNd7XWdxk87AGGD5CcDSH4yfvFUMxmwQL9uza/gP2zeacvdJw+JEx9gMmCBXzhVnDSZ+D5bDu+nfzavGF16GxKG3RBOl7XWdRI/rR3X1Bj5yUCSn4xfPNVMBizQ9259A76tb5hqJuTeBE/uTUwGLPALp4qTJpO6NY/Df3izecWoz0gkTrw/nC5rreskflo7rqkx8pOBJD8Zv3iqmQxYpO/d9MqFid/dZyQ8o2Y0q+RgsAg0RDUn8atb+wT8hzaZk4GMUUiccJ8MgkDtJH6CbkZNSn4ytOQn4xdPNZMBzfQ5GGRAncTPt+tteDe+bOqwZ/RMJGRfL4MgUDuJn6CbUZOSnwwt+cn4xVPNZEAzfQ4GGVCn8fPt+jsClduNTrt6DUdC9tdkAIRqp/ETdle7nPxkSMlPxi+eaiYDmulzMMiAkh/5yQjI1Iw/8pMRcK6ayYBm33EykQElP/KTEZCpGX/kJyPgXHVckoEXX3wRS5YswVtvvYVAIIDZs2dj48aN8Hq9mDt3LgoLC0MSnTdvnlHfroWTicwz5Ed+MgIyNeOP/GQEnKuOeTKwf/9+/PCHP8SRI0ewfv16rFq1CgsXLsSiRYtQXl6OqVOnYsOGDUwGohRTnOxkYMmP/GQEZGrGX9vmJ+udTB3zZODmm2/Go48+iu985ztGMvDwww8jJycHM2fONHqSn5+PlStXIjU1tdmecWVA5nBOJuQnIyBTM/7IT0ZAprZ7/Ml6J1NHJRmYNm2ayaqMjAzMnz/f+EeVO+64A+PHjzeSgbvvvhuTJ0/GlClTjM+Ki4uNetnZ2SgpKUFpaWmTHk6fPl3Wa6pJgARIgATaHQF1WzorK6vd9dtKh6OSDJw5c8Z0bbfbjYqKCtx444148sknUVdXh3vuuQeLFy82nh3Iy8vDjBnBTXwKCgqwYsUKpKWlcWXAigfDrGP3zJj2henQRtXJj/xkBGRqxp+MXzzVUUkGmuuQelZg6dKlxkfqQcFnnnkGTzzxBDp37oxly5ZhwYIFqKqqMlYGysrMhwI1bI+3CWThwsFKfjICMjXjj/xkBGRqu8efrHcydcySgYZmqpWD+tsEfr8fs2bNQnV1tZEMzJkzB0VFTY8GrtczGZA53O6DgfbRvzICMjXjj/xkBJyrjksy0Byu2tpaJCUlweVytUiTyYAs2DjZkZ+MgEzN+CM/GQGZ2u7xJ+udTG2bZMBqN5gMWCXVfD27DwbaR//KCMjUjD/ykxFwrprJgGbfcTKRASU/8pMRkKkZf+QnI+BcNZMBzb7jZCIDSn7kJyMgUzP+yE9GwLlqJgOafcfJRAaU/MhPRkCmZvyRn4yAc9VMBjT7jpOJDCj5kZ+MgEzN+CM/GQHnqpkMaPYdJxMZUPIjPxkBmZrxR34yAs5VMxnQ7DtOJjKg5Ed+MgIyNeOP/GQEnKtmMqDZd5xMZEDJj/xkBGRqxh/5yQg4V81kQLPvOJnIgJIf+ckIyNSMP/KTEXCumsmAZt9xMpEBJT/ykxGQqRl/5Ccj4Fw1kwHNvuNkIgNKfuQnIyBTM/7IT0bAuWomA5p9x8lEBpT8yE9GQKZm/JGfjIBz1UwGNPuOk4kMKPmRn4yATM34Iz8ZAeeqmQxo9h0nExlQ8iM/GQGZmvFHfjICzlUzGdDsO04mMqDkR34yAjI144/8ZAScq2YyoNl3nExkQMmP/GQEZGrGH/nJCDhXzWRAs+84mciAkh/5yQjI1Iw/8pMRcK6ayYBm33EykQElP/KTEZCpGX/kJyPgXDWTAc2+42QiA0p+5CcjIFMz/shPRsC5aiYDmn3HyUQGlPzIT0ZApmb8AYFTlQZEV5deYcMkv7CR2UbAZECzKzgYZEDJj/xkBGTq9hx/gZNHULfuOQSOfxlMBnoMQuLYH8PVNd0y1PbMzzIkm1ZkMqDZMRwMMqDkR34yAjJ1e44/74aF8O1+1wQwIesaeMb8i2Wo7ZmfZUg2rchkQLNjOBhkQMmP/GQEZOr2HH91q+fBX7HVBNDdOxeJk2Zbhtqe+VmGZNOKTAY0O4aDQQaU/MhPRkCmbs/xV/fBfPj3rTMnAwPGIvHKuyxDbc/8LEOyaUUmA5odw8EgA0p+5CcjIFO35/gLVG7HudWPA35vEKLbgw6T7oer13DLUNszP8uQbFoxpsnA9773PezevRsej8fA8dRTTyE3NxezZ8/Gxo0b4fV6MXfuXBQWFobENW/ePKO+XQsHg8wz5Ed+MgIydbuPv7M18FftDOYCPYcCHZPDAtru+YVFy16VY5oMTJgwAUuXLkV6+sWnU1etWoWFCxdi0aJFKC8vx9SpU7FhwwYmA1GKEw5WGVjyIz8ZAZma8de2+cl6J1PHNBkYOXIknn/+eaiAVr/+Bw8ejIcffhg5OTmYOXOm0ZP8/HysXLkSqampzfaMKwMyh3MyIT8ZAZma8Ud+MgIytd3jT9Y7mToqycC0adNMVmVkZGD+/Pm47rrrjC/7rKwsPPnkk/j973+Pl19+GZMnT8aUKVMMTXFxsVE3OzsbJSUlKC0tbdLD6dOny3pNNQmQAAmQQLsjEAgEjO8flqYEopIMnDlzxnQlt9uNDh06mP62ZMkSvPfee0hJSUFeXh5mzJhhfF5QUIAVK1YgLS2NKwNRiFi7Z8a0T+Z08iM/GQGZmvEn4xdPdVSSgeY65PP58OCDD2LOnDlISEgwVgZOnDiBMWPGYNmyZViwYAGqqqqMlYGysrKQTHibQBYuHKzkJyMgUzP+yE9GQKa2e/zJeidTxywZUGY+9thj+Mtf/oI+ffoYicBrr72G5ORkzJo1C9XV1UYyoJKFoqIiJgMyv4ZU230w0D6Z48mP/GQEZGrGn4xfPNUxTQZUR+vq6nDu3Dl06dLF1O/a2lokJSXB5XK1yIMrA7Jw4WAlPxkBmZrxR34yAjK13eNP1juZOubJgMxcgMmAjKDdBwPto39lBGRqxh/5yQg4V81kQLPvOJnIgJIf+ckIyNSMP/KTEXCumsmAZt9xMpEBJT/ykxGQqRl/5Ccj4Fw1kwHNvuNkIgNKfuQnIyBTM/7IT0bAuWomA5p9x8lEBpT8yE9GQKZm/JGfjIBz1UwGNPuOk4kMKPmRn4yATM34Iz8ZAeeqmQxo9h0nExlQ8iM/GQGZmvFHfjICzlUzGdDsO04mMqDkR34yAjI144/8ZAScq2YyoNl3nExkQMmP/GQEZGrGH/nJCDhXzWRAs+84mciAkh/5yQjI1Iw/8pMRcK6ayYBm33EykQElP/KTEZCpGX/kJyPgXDWTAc2+42QiA0p+5CcjIFMz/shPRsC5aiYDmn3HyUQGlPzIT0ZApmb8kZ+MgHPVTAY0+46TiQwo+ZGfjIBMzfgjPxkB56qZDGj2HScTGVDyIz8ZAZma8Ud+MgLOVTMZ0Ow7TiYyoORHfjICMjXjj/xkBJyrZjKg2XecTGRAyY/8ZARkasYf+ckIOFfNZECz7ziZyICSH/nJCMjUjD/ykxFwrprJgGbfcTKRASU/8pMRkKkZf+QnI+BcNZMBzb7jZCIDSn7kJyMgUzP+yE9GwLlqJgOafcfJRAaU/MhPRkCmZvyRn4yAc9VMBjT7jpOJDCj5kZ+MgEzN+CM/GQHnqpkMaPYdJxMZUPIjPxkBmZrxR34yAs5VMxnQ7DtOJjKg5Ed+MgIyNeOP/GQEnKtmMqDZd5xMZEDJj/xkBGRqxh/5yQg4Vx3TZKC6uhp33nknjh49is6dO+OVV15B165dMXv2bGzcuBFerxdz585FYWFhSKLz5s0z6tu1cDKReYb8yE9GQKZm/JGfjIBz1TFNBn7yk5/gmmuuwbRp0/D6669j+PDhKC8vx8KFC7Fo0SLjv6dOnYoNGzYwGYhSTHGyk4ElP/KTEZCpGX9tm5+sdzJ1TJOBSy+9FK+99hpWr16NMWPGGP88/PDDyMnJwcyZM42e5OfnY+XKlUhNTW22Z1wZkDmckwn5yQjI1Iw/8pMRkKntHn+y3snUUUkG1C//hiUjIwPz589Heno67rrrLowdOxaPPPIIHn30USxduhSTJ0/GlClTDElxcbFRNzs7m8mAzLfNqu0+GGifzOnkR34yAjI140/GL57qqCQDZ86cMfXJ7XajQ4cO6NevH/bt24eEhAS88cYbePfdd5GcnIy8vDzMmDHD0BQUFGDFihVIS0tDSUkJSktLm/CZPn16PJnx2iRAAiRAAg4kEAgEkJWV5UDLo29yVJKBUGbfdNNN+OUvf4lRo0bh2WefxfHjx41bBcuWLcOCBQtQVVVlrAyUlZWF7DlvE8iCgpk7+ckIyNSMP/KTEZCp7R5/st7J1DFNBrZv344f/OAH6Nu3Lw4dOmQ8RKieDZg1axbUmwYqGZgzZw6KioqYDMj8GlJt98FA+2SOJz/ykxGQqRl/Mn7xVMc0Gajv6MmTJ41XChuW2tpaJCUlweVytciDKwOycOFgJT8ZAZma8Ud+MgIytd3jT9Y7mTouyYDEZCYDEnqA3QcD7aN/ZQRkasYf+ckIOFfNZECz7ziZyICSH/nJCMjUjD/ykxFwrprJgGbfcTKRASU/8pMRkKkZf+QnI+BcNZMBzb7jZCIDSn7kJyMgUzP+yE9GwLlqJgOafcfJRAaU/MhPRkCmZvyRn4yAc9VMBjT7jpOJDCj5kZ+MgEzN+CM/GQHnqpkMaPYdJxMZUPIjPxkBmZrxR34yAs5VMxnQ7DtOJjKg5Ed+MgIyNeOP/GQEnKtmMqDZd5xMZEDJj/xkBGRqxh/5yQg4V81kQLPvOJnIgJIf+ckIyNSMP/KTEXCumsmAZt9xMpEBJT/ykxGQqRl/5Ccj4Fw1kwHNvuNkIgNKfuQnIyBTM/7IT0bAuWomA5p9x8lEBpT8yE9GQKZm/JGfjIBz1UwGNPuOk4kMKPmRn4yATM34Iz8ZAeeqmQxo9h0nExlQ8iM/GQGZmvFHfjICzlUzGdDsO04mMqDkR34yAjI144/8ZAScq2YyoNl3nExkQMmP/GQEZGrGH/nJCDhXzWRAs+84mciAkh/5yQjI1Iw/8pMRcK6ayYBm33EykQElP/KTEZCpGX/kJyPgXDWTAc2+42QiA0p+5CcjIFMz/shPRsC5aiYDmn3HyUQGlPzIT0ZApmb8kZ+MgHPVTAY0+46TiQwo+ZGfjIBMzfgjPxkB56rbRDIQOFNjeMCVlBx3T3AykbmA/MhPRkCmZvyRn4yAc9WOTgYCp4+h7oPfIlC1K5gM9MxG4pX/Clfn1Lh5hJOJDD35kZ+MgEzN+CM/GQHnqh2dDHg/eRG+z1eZ6CcMKYbn8u/EzSOcTGToyY/8ZARkasYf+ckIOFft6GSgbvU8+Cu2mui7e+cicdLsuHmEk4kMPfmRn4yATM34Iz8ZAeeqY5oMXH/99fD5fAatkydP4sYbb8SDDz6I2bNnY+PGjfB6vZg7dy4KCwtDEp03b55RXxXvB/8D374PzCsDA66E58q74+YRTiYy9ORHfjICMjXjj/xkBJyrjmky0BDT9OnT8V//9V8oLy/HwoULsWjRIuO/p06dig0bNlhKBvwVW1C3+lemuomTHoC7d17cPMLJRIae/MhPRkCmZvyRn4yAc9VxSQbeeustrFu3Do899hgefvhh5OTkYObMmQbF/Px8rFy5EqmpzT8E2HBlQNUPnKqE//wDhO6e2XB16RVXb3AykeEnP/KTEZCpGX/kJyPgXHVUkoFp06aZiGRkZGD+/PkX/jZ+/HgsX74c3bt3x913343JkydjypQpxufFxcVG3ezsbJSUlKC0tNT8yz8xEXV1dc4lTstJgARIgATiQqBXr1747ne/G5dr2/2iUUkGzpw5Y+q32+1Ghw4djL+pL/fnnnsOr7zyivH/Dz30EPLy8jBjxgzj/wsKCrBixQqkpaU1y67xyoDdANM+mUfIj/xkBGRqxh/5yQg4Vx2VZKAlHOrLPysr60J2plYIli1bhgULFqCqqspYGSgrKwvZBAerLNjIj/xkBGRqxh/5yQjI1HaPP1nvZOqYJwPqwcEf/ehHuPbaaw3L/X4/Zs2aherqaiMZmDNnDoqKipgMyPxKfuQXJQKyZu0+GdM++ldGwLnqmCcDoVDV1tYiKSkJLperRZocrLJgIz/ykxGQqRl/5CcjIFPbPf5kvZOpbZMMWO2GeqhQPYBo10L7ZJ4hP/KTEZCpGX/kJyPgXLXjkgHnoqblJEACJEACJGBPAkwG7OkXWkUCJEACJEACMSPAZCBmqHkhEiABEiABErAngTaVDKg3Eu69914kJyfj2WefNYgHAoGwzj7Q4aY9e/YYdnTp0gU1NTV44oknMGzYMB1Na2lDMXnggQeMVzhPnTplvNap9nqwW9m+fbuxGdXmzZvRuXNn25h38OBBfO973zNi6+zZs8YmWfH2r4r9O++8E1999ZXxIO7zzz+P9PR0MguTgF1jzu5jNt5znjrz5te//jWWLl2Kjz76KG5zf5jhZqvqbSoZUF/AalJevXo1Fi9ebIBetWpVWGcf6PCO2lVRvR6pXqP829/+Ztjy4osv6mhaSxuvv/461qxZg6eeeso4IOrQoUPGLpB2Kmpwq4Osdu/ebZxV0bVrV9uY98gjjxjJ0ze/+U288cYbxj4Z6nyNeJb/+I//wKBBg/D9738fr732muHf+oQ4nnbVX9uOzBpzsXPM2X3MxnvO++1vf4s+ffoYP8IOHDgQt7nfDmMtUhvaVDKgIKingdUOh/XJQLhnH0QKsqHu8ccfh3pVUl1bTchHjhzBf//3f+toWksb6gvj5ptvRmVlJXr27IkbbrhBS7s6G3n00UcxdOhQ/OY3vzESOjslAw37+cc//hHq1+SvfmU+MEsnCyttTZw40djVs1+/fsaJoOPGjcOnn35qRRrzOnZh1rjjdo45u49Zu8x5mZmZF5KBeMz9MR9MGi/oyGSgpbMPGicDLZ19IOWofo1t2bLF1MwLL7xgLB2rL1i1TKuWlFVWr85aiHUJZZ/a5KlHjx64/fbbjaRpwIABUL/cYl1C2acye7Xk99JLL+HKK6+MWzIQyr76rbI//vhj45fIX//615AHa8WK6YgRI4zl0fqkaeDAgdi7d2+sLm/5OnZi1tDoTZs22SLmQoFUt8vsMGZD2afmOTvMeQ2TgWjO/ZYD3kEVHZkMtHT2QeNkINyzD8Lx3blz54wdFBsWdb9WLR//9Kc/xYQJE7B161bcc889ePfdd8NpWkvdUPapcyDU/eVrrrkGx48fh/pVqe7Lx7qEsq+wsBD333+/sWqhBrR65uLrX/96qxtS6bY/lH3qOurWgFr1Ub/G1eEn8S5XXXUVlixZAnUo2OnTp6EYxsOnLXGwG7OGttol5kLxs8uYDWWfXea8hslANOf+eI/3aFzfkclASyAaJwPhnn2gA7I6X0Etm40ePRrqwZpbb70V6heRXcrTTz9tmKJ+1aovDPXveCQrzfFQD0rV26c+V881qIRAJQet7U4ZK74ffvgh/vM//9N4XqBTp06xumyL11F8VLx9+9vfNlYqVNw3PCk03kbakVk9EyfEnJ3HrOJolzmvYTIQj7k/3uNMcv02lQyo8w6OHTuG8vJyqGVTtfStfp2Hc/aBBGa9du3atXjwwQeRm5tr3E/+93//d+OXrV2KuqesvjTUF5k6v/2ZZ57B2LFj7WKeyY543iYIBUQth+7bt+/CyZpDhgwxnt6PZzl8+LBx8mdKSopxzoe6xaImRrsUOzILxcaOMWf3MRvvOe++++4zHjRet26dMZfddNNNxopsrOd+u4y3SOxoU8lASwCsnn0QCcRQGvWal3rN0S6/aBvbqV4rVK/s2dU+nb5oL22pWwR2eg2zvXCPVT/tPmbtOOfFY+6PVTzovE67SQZ0QmNbJEACJEACJNCWCDAZaEveZF9IgARIgARIIAICTAYigEYJCZAACZAACbQlAkwG2pI32RcSIAESIAESiIAAk4EIoFFCAiRAAiRAAm2JAJOBtuRN9oUESIAESIAEIiDAZCACaJSQgJ0IqLM4KioqjH013G63cTaB2hRJvW99yy232MlU2kICJGBTAkwGbOoYmkUCVgmUlpYaW0qr7ZHVbo1qK2y1CZI6N0OdZMhCAiRAAq0RYDLQGiF+TgIOIKB2YFOHZKmjstWJlOqgJ5UUsJAACZCAFQJMBqxQYh0SsDkBdXjXZZddhp07d+KKK64wtmVVtwxYSIAESMAKASYDViixDgnYnIA6YXHMmDHGrQF1gqHaK57bTNvcaTSPBGxEgMmAjZxBU0ggUgK/+MUvjKOe1aFT6njq3/3ud/jhD38YaXPUkQAJtDMCTAbamcPZ3bZHoKysDAUFBXj00UfxwAMP4I477jCOV1YnZmZkZLS9DrNHJEAC2gkwGdCOlA2SQOwIeL1e4xmBQCCA9evXw+PxGMd4Dxs2DJMmTcJrr70WO2N4JRIgAccSYDLgWNfRcBIgARIgARLQQ4DJgB6ObIUESIAESIAEHEuAyYBjXUfDSYAESIAESEAPASYDejiyFRIgARIgARJwLAEmA451HQ0nARIgARIgAT0EmAzo4chWSIAESIAESMCxBP4/40VhkcRQB58AAAAASUVORK5CYII=\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"paramPrior = do\\n\",\n    \"    slope <- normal 0 2\\n\",\n    \"    intercept <- normal 0 2\\n\",\n    \"    noise <- gamma 7 7\\n\",\n    \"    prob_outlier <- uniform 0 0.5 \\n\",\n    \"    return (slope, intercept, noise, prob_outlier)\\n\",\n    \"\\n\",\n    \"forward (slope, intercept, noise, probOutlier) x = do\\n\",\n    \"    isOutlier <- bernoulli probOutlier\\n\",\n    \"    let meanParams = if isOutlier\\n\",\n    \"                    then (0, 20)\\n\",\n    \"                    else (x*slope + intercept, sqrt noise)\\n\",\n    \"    return (meanParams, isOutlier)\\n\",\n    \"\\n\",\n    \"regressionWithOutliersData :: (MonadDistribution m, Traversable t) => t Double -> m (t ((Double, Double), Bool))\\n\",\n    \"regressionWithOutliersData xs = do\\n\",\n    \"    params <- paramPrior\\n\",\n    \"\\n\",\n    \"    forM xs \\\\x -> do\\n\",\n    \"        ((mu, std), isOutlier) <- forward params x\\n\",\n    \"        y <- normal mu std\\n\",\n    \"        return ((x, y), isOutlier)\\n\",\n    \"        \\n\",\n    \"range = [-10,-9.9..10] :: [Double]\\n\",\n    \"samples <- sampleIOfixed $ regressionWithOutliersData range\\n\",\n    \"plot (fmap (second (T.pack . show)) samples)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"regressionWithOutliers xs ys params = do\\n\",\n    \"    \\n\",\n    \"    outliers <- forM (zip xs ys) \\\\(x, y) -> do\\n\",\n    \"        ((mu, std), isOutlier) <- forward params x\\n\",\n    \"        factor $ normalPdf mu std y\\n\",\n    \"        return isOutlier\\n\",\n    \"    return (params, outliers)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": []\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"mhRuns <- sampleIOfixed $ pmmh \\n\",\n    \"    MCMCConfig {numMCMCSteps = 20, numBurnIn = 10, proposal = SingleSiteMH}\\n\",\n    \"    SMCConfig {numSteps = 200, numParticles = 100, resampler = resampleSystematic}\\n\",\n    \"    paramPrior\\n\",\n    \"    (regressionWithOutliers range (snd . fst <$> samples))\\n\",\n    \"    \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"m = (\\\\((_,a), b) -> (a,b)) <$> head mhRuns\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"outlierProb s = (\\\\(x, y) ->   ln (exp (x / (x+y))) )\\n\",\n    \"        <$> foldr\\n\",\n    \"              (\\\\(lb, d) li -> [ if b then (num1+d, num2) else (num1,num2+d) | (b,(num1, num2)) <- zip lb li])\\n\",\n    \"              (Prelude.repeat (0 :: Log Double,0 :: Log Double)) \\n\",\n    \"              s\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"Outlier\": 0,\n          \"X\": -10,\n          \"Y\": 30.14316922289284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -9.9,\n          \"Y\": -0.26284958638081857\n         },\n         {\n          \"Outlier\": 0.5437623578186656,\n          \"X\": -9.8,\n          \"Y\": 18.535731623658606\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -9.700000000000001,\n          \"Y\": -68.99193947945726\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -9.600000000000001,\n          \"Y\": -8.043397861176732\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -9.500000000000002,\n          \"Y\": 32.14739624905583\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -9.400000000000002,\n          \"Y\": -23.81048273352878\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -9.300000000000002,\n          \"Y\": 17.786702036490702\n         },\n         {\n          \"Outlier\": 0.09018386763657092,\n          \"X\": -9.200000000000003,\n          \"Y\": 23.375038991852755\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -9.100000000000003,\n          \"Y\": 25.793440850750983\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -9.000000000000004,\n          \"Y\": 24.42143345836998\n         },\n         {\n          \"Outlier\": 0.10477368795464265,\n          \"X\": -8.900000000000004,\n          \"Y\": 21.51934491681228\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -8.800000000000004,\n          \"Y\": 31.353977381067146\n         },\n         {\n          \"Outlier\": 0.651195197772548,\n          \"X\": -8.700000000000005,\n          \"Y\": 18.278561094651828\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -8.600000000000005,\n          \"Y\": 33.00501809401699\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -8.500000000000005,\n          \"Y\": 6.437669090883507\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -8.400000000000006,\n          \"Y\": -37.03228429479993\n         },\n         {\n          \"Outlier\": 0.5437623578186656,\n          \"X\": -8.300000000000006,\n          \"Y\": 13.11298520672979\n         },\n         {\n          \"Outlier\": 0.10477368795464265,\n          \"X\": -8.200000000000006,\n          \"Y\": 21.21403593146131\n         },\n         {\n          \"Outlier\": 0.4389886698640229,\n          \"X\": -8.100000000000007,\n          \"Y\": 11.824928463235018\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -8.000000000000007,\n          \"Y\": 21.72725799674079\n         },\n         {\n          \"Outlier\": 0.34880480222745197,\n          \"X\": -7.9000000000000075,\n          \"Y\": 29.057062960826705\n         },\n         {\n          \"Outlier\": 0.09018386763657092,\n          \"X\": -7.800000000000008,\n          \"Y\": 20.649998496823716\n         },\n         {\n          \"Outlier\": 0.5464215098179054,\n          \"X\": -7.700000000000008,\n          \"Y\": 8.660181503529154\n         },\n         {\n          \"Outlier\": 0.19495755559121355,\n          \"X\": -7.6000000000000085,\n          \"Y\": 15.408422855489516\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -7.500000000000009,\n          \"Y\": 0.3644817992929184\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -7.400000000000009,\n          \"Y\": -21.224596735432097\n         },\n         {\n          \"Outlier\": 0.5437623578186656,\n          \"X\": -7.30000000000001,\n          \"Y\": -5.08262280552811\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -7.20000000000001,\n          \"Y\": -22.40271677868227\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -7.10000000000001,\n          \"Y\": 30.244036005466885\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -7.000000000000011,\n          \"Y\": 40.6554142943223\n         },\n         {\n          \"Outlier\": 0.8282496477499643,\n          \"X\": -6.900000000000011,\n          \"Y\": 0.7924834976117429\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -6.800000000000011,\n          \"Y\": -3.0689825793534142\n         },\n         {\n          \"Outlier\": 0.8229455500225836,\n          \"X\": -6.700000000000012,\n          \"Y\": 2.0777625946734073\n         },\n         {\n          \"Outlier\": 0.5610113301359771,\n          \"X\": -6.600000000000012,\n          \"Y\": 12.550388887411348\n         },\n         {\n          \"Outlier\": 0.718171862067941,\n          \"X\": -6.500000000000012,\n          \"Y\": 4.46724475614298\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -6.400000000000013,\n          \"Y\": -1.5461624315036717\n         },\n         {\n          \"Outlier\": 0.17705444997741634,\n          \"X\": -6.300000000000013,\n          \"Y\": 24.71362894119821\n         },\n         {\n          \"Outlier\": 0.4562376421813345,\n          \"X\": -6.2000000000000135,\n          \"Y\": 42.412216707046596\n         },\n         {\n          \"Outlier\": 0.4562376421813345,\n          \"X\": -6.100000000000014,\n          \"Y\": 18.557621556888908\n         },\n         {\n          \"Outlier\": 0.7380657801133934,\n          \"X\": -6.000000000000014,\n          \"Y\": 9.641681498947396\n         },\n         {\n          \"Outlier\": 0.5610113301359771,\n          \"X\": -5.900000000000015,\n          \"Y\": 14.163347001302109\n         },\n         {\n          \"Outlier\": 0.17705444997741634,\n          \"X\": -5.800000000000015,\n          \"Y\": 20.84295190897201\n         },\n         {\n          \"Outlier\": 0.4389886698640229,\n          \"X\": -5.700000000000015,\n          \"Y\": 4.130260844964003\n         },\n         {\n          \"Outlier\": 0.7327616823860127,\n          \"X\": -5.600000000000016,\n          \"Y\": 10.475034728856496\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -5.500000000000016,\n          \"Y\": 19.404328857643684\n         },\n         {\n          \"Outlier\": 0.34880480222745197,\n          \"X\": -5.400000000000016,\n          \"Y\": 6.909511750502322\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -5.300000000000017,\n          \"Y\": 24.44453706966264\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -5.200000000000017,\n          \"Y\": -14.86585011237548\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -5.100000000000017,\n          \"Y\": -27.7443807834266\n         },\n         {\n          \"Outlier\": 0.28182813793205896,\n          \"X\": -5.000000000000018,\n          \"Y\": 18.14228368221277\n         },\n         {\n          \"Outlier\": 0.17175035225003563,\n          \"X\": -4.900000000000018,\n          \"Y\": 26.622225089502074\n         },\n         {\n          \"Outlier\": 0.19495755559121355,\n          \"X\": -4.8000000000000185,\n          \"Y\": 7.975229527386173\n         },\n         {\n          \"Outlier\": 0.7327616823860127,\n          \"X\": -4.700000000000019,\n          \"Y\": -2.236758643252085\n         },\n         {\n          \"Outlier\": 0.09018386763657092,\n          \"X\": -4.600000000000019,\n          \"Y\": 25.095015724308034\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -4.5000000000000195,\n          \"Y\": 17.18991809253406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -4.40000000000002,\n          \"Y\": -24.744360068281004\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -4.30000000000002,\n          \"Y\": -7.931801457689884\n         },\n         {\n          \"Outlier\": 0.2672383176139873,\n          \"X\": -4.200000000000021,\n          \"Y\": 8.09920420163646\n         },\n         {\n          \"Outlier\": 0.30039958311344106,\n          \"X\": -4.100000000000021,\n          \"Y\": 14.383701713795746\n         },\n         {\n          \"Outlier\": 0.43236209927257174,\n          \"X\": -4.000000000000021,\n          \"Y\": 7.20943981411068\n         },\n         {\n          \"Outlier\": 0.6996004168865589,\n          \"X\": -3.9000000000000217,\n          \"Y\": -7.806116027860427\n         },\n         {\n          \"Outlier\": 0.2765240402046783,\n          \"X\": -3.800000000000022,\n          \"Y\": 16.98021084694896\n         },\n         {\n          \"Outlier\": 0.2672383176139873,\n          \"X\": -3.7000000000000224,\n          \"Y\": 14.379488244709558\n         },\n         {\n          \"Outlier\": 0.30039958311344106,\n          \"X\": -3.6000000000000227,\n          \"Y\": 10.476203691783232\n         },\n         {\n          \"Outlier\": 0.5822277210455,\n          \"X\": -3.500000000000023,\n          \"Y\": 18.54439155366095\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -3.4000000000000234,\n          \"Y\": 17.443166242574943\n         },\n         {\n          \"Outlier\": 0.718171862067941,\n          \"X\": -3.300000000000024,\n          \"Y\": 28.868081826988078\n         },\n         {\n          \"Outlier\": 0.6279879944313701,\n          \"X\": -3.200000000000024,\n          \"Y\": -0.36221408177898484\n         },\n         {\n          \"Outlier\": 0.5822277210455,\n          \"X\": -3.1000000000000245,\n          \"Y\": 18.75847005425409\n         },\n         {\n          \"Outlier\": 0.5278500646365234,\n          \"X\": -3.000000000000025,\n          \"Y\": -6.3470305289160835\n         },\n         {\n          \"Outlier\": 0.3110077785682023,\n          \"X\": -2.9000000000000252,\n          \"Y\": 10.805876165134304\n         },\n         {\n          \"Outlier\": 0.9098161323634291,\n          \"X\": -2.8000000000000256,\n          \"Y\": 43.073138049536766\n         },\n         {\n          \"Outlier\": 0.4376661969999524,\n          \"X\": -2.700000000000026,\n          \"Y\": 21.39560142763903\n         },\n         {\n          \"Outlier\": 0.526527591772453,\n          \"X\": -2.6000000000000263,\n          \"Y\": 20.17816530884579\n         },\n         {\n          \"Outlier\": 0.17705444997741634,\n          \"X\": -2.5000000000000266,\n          \"Y\": 10.593481420961691\n         },\n         {\n          \"Outlier\": 0.4250671891135359,\n          \"X\": -2.400000000000027,\n          \"Y\": 24.67140741709269\n         },\n         {\n          \"Outlier\": 0.5988083537952268,\n          \"X\": -2.3000000000000274,\n          \"Y\": 3.7143759689601357\n         },\n         {\n          \"Outlier\": 0.383288540590976,\n          \"X\": -2.2000000000000277,\n          \"Y\": 4.205664689951466\n         },\n         {\n          \"Outlier\": 0.5464215098179054,\n          \"X\": -2.100000000000028,\n          \"Y\": 5.696299360450189\n         },\n         {\n          \"Outlier\": 0.22612800865901214,\n          \"X\": -2.0000000000000284,\n          \"Y\": 14.405714990070868\n         },\n         {\n          \"Outlier\": 0.7393882529774638,\n          \"X\": -1.9000000000000288,\n          \"Y\": 13.570785875314327\n         },\n         {\n          \"Outlier\": 0.4376661969999524,\n          \"X\": -1.8000000000000291,\n          \"Y\": 25.768223310681986\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -1.7000000000000295,\n          \"Y\": -37.59090989382119\n         },\n         {\n          \"Outlier\": 0.12466760600009497,\n          \"X\": -1.6000000000000298,\n          \"Y\": 23.64144553913516\n         },\n         {\n          \"Outlier\": 0.7884618116590596,\n          \"X\": -1.5000000000000302,\n          \"Y\": -8.576305123038889\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -1.4000000000000306,\n          \"Y\": -10.36508656039852\n         },\n         {\n          \"Outlier\": 0.30039958311344106,\n          \"X\": -1.300000000000031,\n          \"Y\": 5.5494955124482335\n         },\n         {\n          \"Outlier\": 0.47745403309085727,\n          \"X\": -1.2000000000000313,\n          \"Y\": -4.881619552621354\n         },\n         {\n          \"Outlier\": 0.6651166785230349,\n          \"X\": -1.1000000000000316,\n          \"Y\": 5.697048084463994\n         },\n         {\n          \"Outlier\": 0.48806222854561865,\n          \"X\": -1.000000000000032,\n          \"Y\": 3.6802215741202695\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -0.9000000000000323,\n          \"Y\": -31.588506775217645\n         },\n         {\n          \"Outlier\": 0.5676379007274283,\n          \"X\": -0.8000000000000327,\n          \"Y\": -4.276114964288603\n         },\n         {\n          \"Outlier\": 0.5119377714543814,\n          \"X\": -0.700000000000033,\n          \"Y\": 4.706472715938526\n         },\n         {\n          \"Outlier\": 0.40318245863642843,\n          \"X\": -0.6000000000000334,\n          \"Y\": 24.61942267029316\n         },\n         {\n          \"Outlier\": 0.8952263120453574,\n          \"X\": -0.5000000000000338,\n          \"Y\": -17.830933767956402\n         },\n         {\n          \"Outlier\": 0.4051732710680835,\n          \"X\": -0.4000000000000341,\n          \"Y\": -5.40950732388878\n         },\n         {\n          \"Outlier\": 0.5769236233181192,\n          \"X\": -0.30000000000003446,\n          \"Y\": 3.45113720087071\n         },\n         {\n          \"Outlier\": 0.5437623578186656,\n          \"X\": -0.20000000000003482,\n          \"Y\": -0.6945661730385604\n         },\n         {\n          \"Outlier\": 0.875332393999905,\n          \"X\": -0.10000000000003517,\n          \"Y\": -11.881720947448017\n         },\n         {\n          \"Outlier\": 0.8050424444087865,\n          \"X\": -3.552713678800501e-14,\n          \"Y\": 15.275164463456829\n         },\n         {\n          \"Outlier\": 0.3720120055686299,\n          \"X\": 0.09999999999996412,\n          \"Y\": 3.130005271532676\n         },\n         {\n          \"Outlier\": 0.2115381883409404,\n          \"X\": 0.19999999999996376,\n          \"Y\": 7.217065710866146\n         },\n         {\n          \"Outlier\": 0.2115381883409404,\n          \"X\": 0.2999999999999634,\n          \"Y\": 17.70645751790601\n         },\n         {\n          \"Outlier\": 0.3328925090453099,\n          \"X\": 0.39999999999996305,\n          \"Y\": 13.888934006536498\n         },\n         {\n          \"Outlier\": 0.9098161323634291,\n          \"X\": 0.4999999999999627,\n          \"Y\": 21.884620845377007\n         },\n         {\n          \"Outlier\": 0.47745403309085727,\n          \"X\": 0.5999999999999623,\n          \"Y\": 9.545267231818897\n         },\n         {\n          \"Outlier\": 0.22612800865901214,\n          \"X\": 0.699999999999962,\n          \"Y\": 3.703565536648379\n         },\n         {\n          \"Outlier\": 0.7068953270455948,\n          \"X\": 0.7999999999999616,\n          \"Y\": 11.858526678970597\n         },\n         {\n          \"Outlier\": 0.3348833214769651,\n          \"X\": 0.8999999999999613,\n          \"Y\": -2.745279389040704\n         },\n         {\n          \"Outlier\": 0.8050424444087865,\n          \"X\": 0.9999999999999609,\n          \"Y\": 8.1754196030146\n         },\n         {\n          \"Outlier\": 0.29840877068178584,\n          \"X\": 1.0999999999999606,\n          \"Y\": -3.0892286454167217\n         },\n         {\n          \"Outlier\": 0.09018386763657092,\n          \"X\": 1.1999999999999602,\n          \"Y\": -1.6888315159113967\n         },\n         {\n          \"Outlier\": 0.7234759597953216,\n          \"X\": 1.2999999999999599,\n          \"Y\": -26.34560770532998\n         },\n         {\n          \"Outlier\": 0.5822277210455,\n          \"X\": 1.3999999999999595,\n          \"Y\": 7.322340575226373\n         },\n         {\n          \"Outlier\": 0.8952263120453574,\n          \"X\": 1.4999999999999591,\n          \"Y\": 1.9729072168157065\n         },\n         {\n          \"Outlier\": 0.10477368795464265,\n          \"X\": 1.5999999999999588,\n          \"Y\": 4.3653523448307645\n         },\n         {\n          \"Outlier\": 0.5046428612953455,\n          \"X\": 1.6999999999999584,\n          \"Y\": 13.227480313783765\n         },\n         {\n          \"Outlier\": 0.875332393999905,\n          \"X\": 1.799999999999958,\n          \"Y\": 12.226379085662112\n         },\n         {\n          \"Outlier\": 0.43236209927257174,\n          \"X\": 1.8999999999999577,\n          \"Y\": 7.283550315220926\n         },\n         {\n          \"Outlier\": 0.12135432070436945,\n          \"X\": 1.9999999999999574,\n          \"Y\": -8.322354413220943\n         },\n         {\n          \"Outlier\": 0.3348833214769651,\n          \"X\": 2.099999999999957,\n          \"Y\": -6.278804583310366\n         },\n         {\n          \"Outlier\": 0.12466760600009497,\n          \"X\": 2.1999999999999567,\n          \"Y\": 0.41427397930309406\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 2.2999999999999563,\n          \"Y\": -6.593316457144327\n         },\n         {\n          \"Outlier\": 0.7884618116590596,\n          \"X\": 2.399999999999956,\n          \"Y\": 10.882276064502353\n         },\n         {\n          \"Outlier\": 0.19495755559121355,\n          \"X\": 2.4999999999999556,\n          \"Y\": 4.7901246139126625\n         },\n         {\n          \"Outlier\": 0.4396570094316077,\n          \"X\": 2.5999999999999552,\n          \"Y\": -14.966747660332494\n         },\n         {\n          \"Outlier\": 0.4250671891135359,\n          \"X\": 2.699999999999955,\n          \"Y\": -0.20721316523803424\n         },\n         {\n          \"Outlier\": 0.30039958311344106,\n          \"X\": 2.7999999999999545,\n          \"Y\": -12.56576752329331\n         },\n         {\n          \"Outlier\": 0.3720120055686299,\n          \"X\": 2.899999999999954,\n          \"Y\": -28.61214419700161\n         },\n         {\n          \"Outlier\": 0.5623338030000476,\n          \"X\": 2.999999999999954,\n          \"Y\": 8.248524918035386\n         },\n         {\n          \"Outlier\": 0.2294412939547376,\n          \"X\": 3.0999999999999535,\n          \"Y\": -3.622542781911439\n         },\n         {\n          \"Outlier\": 0.30172205597751134,\n          \"X\": 3.199999999999953,\n          \"Y\": 4.494708619120168\n         },\n         {\n          \"Outlier\": 0.17705444997741634,\n          \"X\": 3.2999999999999527,\n          \"Y\": 3.860145108336754\n         },\n         {\n          \"Outlier\": 0.12135432070436945,\n          \"X\": 3.3999999999999524,\n          \"Y\": -1.2940361660477206\n         },\n         {\n          \"Outlier\": 0.10477368795464265,\n          \"X\": 3.499999999999952,\n          \"Y\": -13.140490329409484\n         },\n         {\n          \"Outlier\": 0.5769236233181192,\n          \"X\": 3.5999999999999517,\n          \"Y\": -35.32932042223501\n         },\n         {\n          \"Outlier\": 0.6996004168865589,\n          \"X\": 3.6999999999999513,\n          \"Y\": 11.866841248128683\n         },\n         {\n          \"Outlier\": 0.3110077785682023,\n          \"X\": 3.799999999999951,\n          \"Y\": -10.99204883957837\n         },\n         {\n          \"Outlier\": 0.48806222854561865,\n          \"X\": 3.8999999999999506,\n          \"Y\": 9.661220540277904\n         },\n         {\n          \"Outlier\": 0.12466760600009497,\n          \"X\": 3.9999999999999503,\n          \"Y\": -11.548148095443524\n         },\n         {\n          \"Outlier\": 0.12135432070436945,\n          \"X\": 4.09999999999995,\n          \"Y\": -24.714424629770342\n         },\n         {\n          \"Outlier\": 0.30039958311344106,\n          \"X\": 4.1999999999999496,\n          \"Y\": -17.618320611698103\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 4.299999999999949,\n          \"Y\": 21.41545900080303\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 4.399999999999949,\n          \"Y\": 41.510023167064915\n         },\n         {\n          \"Outlier\": 0.09018386763657092,\n          \"X\": 4.4999999999999485,\n          \"Y\": -10.860842878493102\n         },\n         {\n          \"Outlier\": 0.17705444997741634,\n          \"X\": 4.599999999999948,\n          \"Y\": -17.678231065336824\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 4.699999999999948,\n          \"Y\": -18.253167364985977\n         },\n         {\n          \"Outlier\": 0.3003995831134411,\n          \"X\": 4.799999999999947,\n          \"Y\": -9.378753061533567\n         },\n         {\n          \"Outlier\": 0.7738719913409878,\n          \"X\": 4.899999999999947,\n          \"Y\": -4.690038562027151\n         },\n         {\n          \"Outlier\": 0.1047736879546426,\n          \"X\": 4.999999999999947,\n          \"Y\": -0.9358718826342507\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 5.099999999999946,\n          \"Y\": 8.693733167616339\n         },\n         {\n          \"Outlier\": 0.36670790784124924,\n          \"X\": 5.199999999999946,\n          \"Y\": -11.56589951591252\n         },\n         {\n          \"Outlier\": 0.7393882529774638,\n          \"X\": 5.299999999999946,\n          \"Y\": 1.6720822524528287\n         },\n         {\n          \"Outlier\": 0.31631187629558294,\n          \"X\": 5.399999999999945,\n          \"Y\": -14.993796469246613\n         },\n         {\n          \"Outlier\": 0.03448373836352408,\n          \"X\": 5.499999999999945,\n          \"Y\": -12.054460619537675\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 5.599999999999945,\n          \"Y\": 34.62535634020814\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 5.699999999999944,\n          \"Y\": 39.28048699796905\n         },\n         {\n          \"Outlier\": 0.039787836090904784,\n          \"X\": 5.799999999999944,\n          \"Y\": -18.522573806115407\n         },\n         {\n          \"Outlier\": 0.7194943349320113,\n          \"X\": 5.8999999999999435,\n          \"Y\": 2.8254226810055205\n         },\n         {\n          \"Outlier\": 0.17042787938596518,\n          \"X\": 5.999999999999943,\n          \"Y\": -7.598929518634544\n         },\n         {\n          \"Outlier\": 0.33090169661365465,\n          \"X\": 6.099999999999945,\n          \"Y\": -18.100980640560156\n         },\n         {\n          \"Outlier\": 0.22082391093163142,\n          \"X\": 6.1999999999999424,\n          \"Y\": -25.830275802284074\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 6.29999999999994,\n          \"Y\": 8.34770023404953\n         },\n         {\n          \"Outlier\": 0.9098161323634291,\n          \"X\": 6.399999999999942,\n          \"Y\": 2.6439493039811115\n         },\n         {\n          \"Outlier\": 0.2553076492951555,\n          \"X\": 6.499999999999943,\n          \"Y\": -22.37132300541551\n         },\n         {\n          \"Outlier\": 0.1392574263181667,\n          \"X\": 6.599999999999941,\n          \"Y\": -15.051462287577962\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 6.699999999999939,\n          \"Y\": 4.3207686658048425\n         },\n         {\n          \"Outlier\": 0.4867397556815484,\n          \"X\": 6.79999999999994,\n          \"Y\": -8.60953644756132\n         },\n         {\n          \"Outlier\": 0.965516261636476,\n          \"X\": 6.899999999999942,\n          \"Y\": -3.1913795194640606\n         },\n         {\n          \"Outlier\": 0.28580976279536935,\n          \"X\": 6.99999999999994,\n          \"Y\": -19.490448624441953\n         },\n         {\n          \"Outlier\": 0.1047736879546426,\n          \"X\": 7.0999999999999375,\n          \"Y\": -21.056095484822293\n         },\n         {\n          \"Outlier\": 0.9854101796819283,\n          \"X\": 7.199999999999939,\n          \"Y\": -0.40330975452223106\n         },\n         {\n          \"Outlier\": 0.28182813793205896,\n          \"X\": 7.29999999999994,\n          \"Y\": -48.28017130034681\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 7.399999999999938,\n          \"Y\": -19.761363998873605\n         },\n         {\n          \"Outlier\": 0.12466760600009497,\n          \"X\": 7.499999999999936,\n          \"Y\": -27.496292304878267\n         },\n         {\n          \"Outlier\": 0.26591584474991686,\n          \"X\": 7.5999999999999375,\n          \"Y\": -17.935428564824285\n         },\n         {\n          \"Outlier\": 0.33222416947772515,\n          \"X\": 7.699999999999939,\n          \"Y\": -23.81440736389056\n         },\n         {\n          \"Outlier\": 0.8952263120453574,\n          \"X\": 7.799999999999937,\n          \"Y\": 6.610475555129508\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 7.899999999999935,\n          \"Y\": -33.59846198877505\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 7.999999999999936,\n          \"Y\": 10.913894309977062\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 8.099999999999937,\n          \"Y\": 22.467791024883127\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 8.199999999999935,\n          \"Y\": 12.316122841847735\n         },\n         {\n          \"Outlier\": 0.3129985909998576,\n          \"X\": 8.299999999999933,\n          \"Y\": -16.009405184781222\n         },\n         {\n          \"Outlier\": 0.1956258951587983,\n          \"X\": 8.399999999999935,\n          \"Y\": -34.4150409769924\n         },\n         {\n          \"Outlier\": 0.13726661388651148,\n          \"X\": 8.499999999999936,\n          \"Y\": -25.738038864954476\n         },\n         {\n          \"Outlier\": 0.6598125807956543,\n          \"X\": 8.599999999999934,\n          \"Y\": -14.077826822779741\n         },\n         {\n          \"Outlier\": 0.26591584474991686,\n          \"X\": 8.699999999999932,\n          \"Y\": -9.172720756633\n         },\n         {\n          \"Outlier\": 0.40517327106808354,\n          \"X\": 8.799999999999933,\n          \"Y\": -18.18037822337765\n         },\n         {\n          \"Outlier\": 0.14655233647720253,\n          \"X\": 8.899999999999935,\n          \"Y\": -30.72733727472214\n         },\n         {\n          \"Outlier\": 0.19363508272714317,\n          \"X\": 8.999999999999932,\n          \"Y\": -22.567123894072513\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 9.09999999999993,\n          \"Y\": 31.120217815149882\n         },\n         {\n          \"Outlier\": 0.059681754136357165,\n          \"X\": 9.199999999999932,\n          \"Y\": -23.4759662318214\n         },\n         {\n          \"Outlier\": 0.2732107549089527,\n          \"X\": 9.299999999999933,\n          \"Y\": -19.285316135497098\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 9.399999999999931,\n          \"Y\": 1.3453810777338207\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 9.499999999999929,\n          \"Y\": 30.106740007028108\n         },\n         {\n          \"Outlier\": 0.7811669015000237,\n          \"X\": 9.59999999999993,\n          \"Y\": -8.245762291377288\n         },\n         {\n          \"Outlier\": 0.16047381722768955,\n          \"X\": 9.699999999999932,\n          \"Y\": -31.37003628215042\n         },\n         {\n          \"Outlier\": 0.2785148526363334,\n          \"X\": 9.79999999999993,\n          \"Y\": -27.560708350871\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 9.899999999999928,\n          \"Y\": 7.612568009425738\n         },\n         {\n          \"Outlier\": 0.6425494022072435,\n          \"X\": 9.999999999999929,\n          \"Y\": -13.529703374498748\n         }\n        ]\n       },\n       \"encoding\": {\n        \"color\": {\n         \"field\": \"Outlier\",\n         \"scale\": {\n          \"scheme\": \"viridis\"\n         },\n         \"type\": \"quantitative\"\n        },\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"circle\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plot $ take 1000 (zip (fst <$> samples) (outlierProb m))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"As the above plot shows, this works nicely: the `slope`, `intercept`, `noise` and `prob_outlier` variables are inferred by a random walk through the space, while the score to determine whether to accept a new proposed step in this walk is determined by a particle filter which guesses which points are outliers after each observation.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# $SMC^2$\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The culmination of monad-bayes is $SMC^2$, which combines all the previous piece together into one inference algorithm.\\n\",\n    \"\\n\",\n    \"It is $RMSMC$, but with the $MCMC$ walk performed using $PMMH$.\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Haskell - nixpkgs\",\n   \"language\": \"haskell\",\n   \"name\": \"ihaskell_nixpkgs\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": \"ihaskell\",\n   \"file_extension\": \".hs\",\n   \"mimetype\": \"text/x-haskell\",\n   \"name\": \"haskell\",\n   \"pygments_lexer\": \"Haskell\",\n   \"version\": \"9.0.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 4\n}\n"
  },
  {
    "path": "notebooks/tutorials/Bayesian.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"id\": \"1323d9af-17b2-4e43-ba81-b5b3979b3528\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \":e TupleSections\\n\",\n    \":e BlockArguments \\n\",\n    \"\\n\",\n    \"import Control.Monad.Bayes.Class\\n\",\n    \"import Control.Monad.Bayes.Sampler.Strict\\n\",\n    \"import Control.Monad.Bayes.Weighted\\n\",\n    \"import Control.Monad.Bayes.Enumerator\\n\",\n    \"import Control.Monad\\n\",\n    \"import Control.Arrow\\n\",\n    \"import Data.Bifunctor (bimap)\\n\",\n    \"import Numeric.Log\\n\",\n    \"import qualified Data.Text as T\\n\",\n    \"\\n\",\n    \"\\n\",\n    \":l ../plotting.hs\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"bb6b1d04-808f-4700-9e5b-b880f64432bc\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Bayesian Models\\n\",\n    \"\\n\",\n    \"Monad-Bayes exports a `Bayesian` datatype to make using Bayesian models easier. The idea is that you specify your model as a prior, generative model and a likelihood. \\n\",\n    \"\\n\",\n    \"```\\n\",\n    \"data Bayesian m z o = Bayesian\\n\",\n    \"  { prior :: m z,                      -- prior over latent variable Z; p(z)\\n\",\n    \"    generative :: z -> m o,            -- distribution over observations given Z=z\\n\",\n    \"    likelihood :: z -> o -> Log Double -- p(o|z)\\n\",\n    \"  }\\n\",\n    \"```\\n\",\n    \"\\n\",\n    \"Likelihood is the PDF of the generative model and is a function from the problem domain to positive real numbers. Generative model allows for drawing samples from the distribution.\\n\",\n    \"Likelihood and generative model are separated because you can't always get the density from a distribution definition.\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"Once you've defined Bayesian model, a number of standard operations, like obtaining the posterior or the posterior predictive, are automated for you.\\n\",\n    \"\\n\",\n    \"Here's a simple example:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"id\": \"5df6eb5a-8545-43fa-83d7-bd25f74804cc\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model :: MonadDistribution m => Bayesian m Bool Double\\n\",\n    \"model = Bayesian {\\n\",\n    \"    prior = bernoulli 0.5,\\n\",\n    \"    generative = \\\\x -> normal (if x then 2 else (-2)) 1,\\n\",\n    \"    likelihood  = \\\\x y -> normalPdf (if x then 2 else (-2)) 1 y\\n\",\n    \"    }\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"a31299a8-2294-4182-823d-d85bd2136945\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Prior\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"id\": \"07c4584c-8351-4e0b-814b-d3746b6b6962\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"X\": \"True\",\n          \"Y\": 0.50094\n         },\n         {\n          \"X\": \"False\",\n          \"Y\": 0.49906\n         }\n        ]\n       },\n       \"encoding\": {\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"nominal\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"bar\",\n       \"width\": 400\n      },\n      \"image/png\": \"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4MCB+OdXXnnledf94mGQED2MJz0mm4AqePVxMUSVFHUeCKj6SJkhNjY2WkVFhVVWVsb8ysvLraOjI35qNLreeeed+OevvfZa/PXQ0FD88yghnmtdVDM8PDznPJYvX24///nPPZwRPUIAAhCAQBoR+M3f/E276aab5nSUMRv9wS/JV3NzsxUWFlpNTU185+LiYuvv77fc3Nz46/fff98+/vGP2w9+8IP4629+85vxzy+//PLzrktym9wuyQTUxJ7kh+V2EHBBAH2k/zEtiCH29fVZb2+vdXZ22sTERJwQx8bGbGpqyrKysmzp0qXxi2z2799va9eutQcffNA2bNhgK1asOOu69MdIhxEBBM8cQODcBNBH+k/HghjizMyM1dfX2+TkZGyIra2tVlZWZg0NDVZaWmp1dXXx05+f/exn7aqrrrIPfehD9vTTT8evOD3buvTHSIcYIjMAgfMTwBDTf0IWxBBPbjtKhNnZ2ZaRkXFOElFNZIinX8q69Ed78XWI4C++M2fHOgH0obO6UJULaogXalM87oUhEL3wKXoGgAsCEDiTAPpI/6nAENP/jOgQAhCAAARSQABDTAHki+EhPvjgg/hFU9ErhbkgAIG5BNCHj4nAEH2cU1p3ee+999qLL75o1dXV8b/r+c53vmOf//zn07pnmoNAqgigj1SR/uUfB0P85Rle1Hd4+eWX7Z//+Z/tzjvvtC996Uv293//9/b7v//78b8tveSSSy5qNmweAujD1wxgiL7OK+26/cY3vmHR00HRmy9EhvjYY4/Z7bffbl/+8pcteichLghczATQh6/TxxB9nVfadRv9O9M/+IM/sD/8wz+M38A9egei6D1qo/8j4ILAxU4AffiaAAzR13mlZbfRJ5p89atftZ/85Ce2bt26+I0Xli1blpa90hQEUk0AfaSaePjjYYjh7Fj5/wlEafDmm2+OP/9y79699id/8if2u7/7u/CBwEVPIDLD6G/sp1/R20ffcccdFz2bdASAIabjqTjqKTLBRx55JH5f2uj9aKM3do8+7Plf/uVfzvsORY62SKsQCCbwxhtv2D/+4z+eWh99oEH08XfPP/988D1ZuHAEMMSFY3tR3Pm5556L9/lbv/Vb8T+16OnpsT//8z+P3+j7V37lVy4KBmwSAvMhcPfdd8cvOjvfW1rO537UJo8Ahpg8lhflnf793//d/vZv/zb+FJPo3yBGL7D54z/+Y4tebp6ZmXlRMmHTEDhJIPqgg+jj7k5ex44di/+8EH0g+qWXXgqoNCOAIabZgXhs55/+6Z/s3XfftT/7sz+LP/T57bffPvXh0B73Q88QSBaB6P1LP/3pT5+6XfRBBrfddpt97nOfS9ZDcJ8kEsAQkwjzYrrV//zP/9grr7xyzi1XVlZeTDjYKwTOSiBKhFFC/PCHPwwhBwQwRAeHlI4tRi8W2Llz5zlbi/6RPhcELnYC0StMo89+/Zu/+ZuLHYWL/WOILo4p/ZuM3q3mxIkTFv3N5Atf+EL8odDRBz5zQeBiJhD94njrrbdafn6+rV69+hQKfmFMz6nAENPzXNx09fOf/9w2bdpkP/zhD+O3cIv+lvhHf/RH8atNuSBwMRN466234leSRm92/4uvKI1eeMaVfgQwxPQ7E1cd9fb2WvSPj4uKimxsbCx+C7fo/UzP93Sqqw3SLAQCCdx44432r//6r4GrWXYhCGCIF4L6InrM6F1qfvrTn8bvTPPMM8/YX//1X9uf/umfWkdHh0WvqOOCwMVKAEP0d/IYor8zS6uO33vvPbv++uttcHAw/neIeXl5Fv3bxO9///v8O8S0OimaSTWB6H19z/Xq0uifY3ClHwEMMf3OxF1H0Qtpor+RTE5O2ne/+137xCc+YatWrXK3DxqGQDIJ/M7v/I7t27fvrLeMzJIr/QhgiOl3Jm46it6q7dFHH437jd7CLfo74m/8xm+46Z9GIbCQBHjKdCHpLsy9McSF4XpR3PV0wd9///3xp1x88pOfvCj2ziYhkIhAZ2dn/L6+XH4IYIh+zirtOsUQ0+5IaAgCEPglCGCIvwS8i30phnixTwD7h8DiIoAhLq7zTOluohcGnHz3jTfffDN+Ic3ll18e98C/v0rpUfBgEIBAEghgiEmAeLHe4r/+67/mfLTN6RwKCwsvVizsGwIQcEoAQ3R6cLQNAQhAAALJJYAhJpcnd4MABCAAAacEMESnB0fbEIAABCCQXAIYYnJ5cjcIQAACEHBKAEN0enC0DQEIQAACySWAISaXJ3eDwAUlEH3w7Ntvvx1/SHNmZqb97//+b/wJJNddd138QbVcEIDAuQlgiEwHBBYRgeHh4fijuJ544glrbGy06C31nnrqqfjTR3791399Ee2UrUAg+QQwxOQz5Y4QuKAEHnjggfhTFp5++mm75ZZb4g9sjoyRCwIQOD8BDJEJgcAiI3D8+HH77d/+bYveOGHDhg32yiuv8NmUi+yM2c7CEMAQF4Yrd4XABSPw/vvvx59JGT1NGn0m37/927/Fn1fJBQEIkBCZAQhcVAQefvhhe/zxx23Xrl1211132Ze//GW7++67LyoGbBYCIQRIiCHUWAOBNCUwNjZmxcXF9sgjj9hf/dVf2R133GHf+MY37D//8z/tqquuStOuaQsC6UEAQ0yPc6ALCPzSBKanp+O/Gc7Oztprr71mWVlZ9tOf/tSiTyXZuHGjPffcc7/0Y3ADCCxmAhjiYj5d9gYBCEAAAjIBDFFGRSEEIAABCCxmAhjiYj5d9gYBCEAAAjIBDFFGRSEEIAABCCxmAhjiYj5d9gYBCEAAAjIBDFFGRSEEIAABCCxmAhjiYj5d9gYBCEAAAjKB/wv0QMCkVGafGgAAAABJRU5ErkJggg==\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"sampler $ \\n\",\n    \"    plot . fmap (first (T.pack . show)) . toEmpirical <$> \\n\",\n    \"    replicateM 100000 (prior model)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"1730423b-8190-481b-a215-a129ea9fdbc9\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Prior predictive\\n\",\n    \"\\n\",\n    \"Prior predictive model is an application of the generative distribution to the prior distribution.\\n\",\n    \"\\n\",\n    \"Similarly as in `Sampling.ipynb` example we need to introduce a constant weight by mapping samples to a pair (value, score) with `(,constWeight) <$> `.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"id\": \"c0de2347-77b2-4433-8bd0-e854791c23b8\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"X\": -5.990666102955002,\n          \"Y\": 4\n         },\n         {\n          \"X\": -5.871272770673965,\n          \"Y\": 1\n         },\n         {\n          \"X\": -5.751879438392927,\n          \"Y\": 7\n         },\n         {\n          \"X\": -5.63248610611189,\n          \"Y\": 2\n         },\n         {\n          \"X\": -5.513092773830853,\n          \"Y\": 8\n         },\n         {\n          \"X\": -5.393699441549815,\n          \"Y\": 8\n         },\n         {\n          \"X\": -5.274306109268778,\n          \"Y\": 11\n         },\n         {\n          \"X\": -5.154912776987741,\n          \"Y\": 17\n         },\n         {\n          \"X\": -5.035519444706703,\n          \"Y\": 22\n         },\n         {\n          \"X\": -4.916126112425666,\n          \"Y\": 34\n         },\n         {\n          \"X\": -4.796732780144629,\n          \"Y\": 44\n         },\n         {\n          \"X\": -4.6773394478635915,\n          \"Y\": 70\n         },\n         {\n          \"X\": -4.5579461155825545,\n          \"Y\": 104\n         },\n         {\n          \"X\": -4.4385527833015175,\n          \"Y\": 131\n         },\n         {\n          \"X\": -4.31915945102048,\n          \"Y\": 169\n         },\n         {\n          \"X\": -4.199766118739443,\n          \"Y\": 203\n         },\n         {\n          \"X\": -4.080372786458406,\n          \"Y\": 318\n         },\n         {\n          \"X\": -3.960979454177368,\n          \"Y\": 349\n         },\n         {\n          \"X\": -3.841586121896331,\n          \"Y\": 443\n         },\n         {\n          \"X\": -3.7221927896152938,\n          \"Y\": 520\n         },\n         {\n          \"X\": -3.6027994573342568,\n          \"Y\": 662\n         },\n         {\n          \"X\": -3.4834061250532193,\n          \"Y\": 822\n         },\n         {\n          \"X\": -3.364012792772182,\n          \"Y\": 962\n         },\n         {\n          \"X\": -3.244619460491145,\n          \"Y\": 1103\n         },\n         {\n          \"X\": -3.1252261282101075,\n          \"Y\": 1185\n         },\n         {\n          \"X\": -3.00583279592907,\n          \"Y\": 1457\n         },\n         {\n          \"X\": -2.886439463648033,\n          \"Y\": 1551\n         },\n         {\n          \"X\": -2.7670461313669956,\n          \"Y\": 1827\n         },\n         {\n          \"X\": -2.647652799085958,\n          \"Y\": 1887\n         },\n         {\n          \"X\": -2.528259466804921,\n          \"Y\": 2082\n         },\n         {\n          \"X\": -2.4088661345238838,\n          \"Y\": 2209\n         },\n         {\n          \"X\": -2.2894728022428468,\n          \"Y\": 2328\n         },\n         {\n          \"X\": -2.1700794699618093,\n          \"Y\": 2355\n         },\n         {\n          \"X\": -2.050686137680772,\n          \"Y\": 2394\n         },\n         {\n          \"X\": -1.9312928053997345,\n          \"Y\": 2440\n         },\n         {\n          \"X\": -1.8118994731186975,\n          \"Y\": 2381\n         },\n         {\n          \"X\": -1.6925061408376605,\n          \"Y\": 2252\n         },\n         {\n          \"X\": -1.5731128085566226,\n          \"Y\": 2121\n         },\n         {\n          \"X\": -1.4537194762755856,\n          \"Y\": 2022\n         },\n         {\n          \"X\": -1.3343261439945486,\n          \"Y\": 1937\n         },\n         {\n          \"X\": -1.2149328117135116,\n          \"Y\": 1768\n         },\n         {\n          \"X\": -1.0955394794324738,\n          \"Y\": 1544\n         },\n         {\n          \"X\": -0.9761461471514368,\n          \"Y\": 1414\n         },\n         {\n          \"X\": -0.8567528148703998,\n          \"Y\": 1324\n         },\n         {\n          \"X\": -0.7373594825893619,\n          \"Y\": 1171\n         },\n         {\n          \"X\": -0.6179661503083249,\n          \"Y\": 999\n         },\n         {\n          \"X\": -0.4985728180272879,\n          \"Y\": 858\n         },\n         {\n          \"X\": -0.37917948574625004,\n          \"Y\": 782\n         },\n         {\n          \"X\": -0.25978615346521305,\n          \"Y\": 707\n         },\n         {\n          \"X\": -0.14039282118417606,\n          \"Y\": 669\n         },\n         {\n          \"X\": -0.020999488903138186,\n          \"Y\": 607\n         },\n         {\n          \"X\": 0.0983938433778988,\n          \"Y\": 640\n         },\n         {\n          \"X\": 0.2177871756589358,\n          \"Y\": 624\n         },\n         {\n          \"X\": 0.3371805079399737,\n          \"Y\": 739\n         },\n         {\n          \"X\": 0.45657384022101066,\n          \"Y\": 845\n         },\n         {\n          \"X\": 0.5759671725020477,\n          \"Y\": 947\n         },\n         {\n          \"X\": 0.6953605047830855,\n          \"Y\": 1102\n         },\n         {\n          \"X\": 0.8147538370641225,\n          \"Y\": 1243\n         },\n         {\n          \"X\": 0.9341471693451595,\n          \"Y\": 1433\n         },\n         {\n          \"X\": 1.0535405016261965,\n          \"Y\": 1539\n         },\n         {\n          \"X\": 1.1729338339072344,\n          \"Y\": 1692\n         },\n         {\n          \"X\": 1.2923271661882714,\n          \"Y\": 1830\n         },\n         {\n          \"X\": 1.4117204984693084,\n          \"Y\": 1934\n         },\n         {\n          \"X\": 1.5311138307503462,\n          \"Y\": 2166\n         },\n         {\n          \"X\": 1.6505071630313832,\n          \"Y\": 2309\n         },\n         {\n          \"X\": 1.7699004953124202,\n          \"Y\": 2269\n         },\n         {\n          \"X\": 1.889293827593458,\n          \"Y\": 2358\n         },\n         {\n          \"X\": 2.008687159874495,\n          \"Y\": 2471\n         },\n         {\n          \"X\": 2.128080492155534,\n          \"Y\": 2322\n         },\n         {\n          \"X\": 2.247473824436571,\n          \"Y\": 2363\n         },\n         {\n          \"X\": 2.366867156717608,\n          \"Y\": 2134\n         },\n         {\n          \"X\": 2.486260488998645,\n          \"Y\": 2122\n         },\n         {\n          \"X\": 2.605653821279682,\n          \"Y\": 1995\n         },\n         {\n          \"X\": 2.725047153560719,\n          \"Y\": 1837\n         },\n         {\n          \"X\": 2.8444404858417576,\n          \"Y\": 1745\n         },\n         {\n          \"X\": 2.9638338181227946,\n          \"Y\": 1526\n         },\n         {\n          \"X\": 3.0832271504038316,\n          \"Y\": 1270\n         },\n         {\n          \"X\": 3.2026204826848685,\n          \"Y\": 1117\n         },\n         {\n          \"X\": 3.3220138149659055,\n          \"Y\": 979\n         },\n         {\n          \"X\": 3.4414071472469425,\n          \"Y\": 858\n         },\n         {\n          \"X\": 3.5608004795279795,\n          \"Y\": 749\n         },\n         {\n          \"X\": 3.6801938118090183,\n          \"Y\": 568\n         },\n         {\n          \"X\": 3.7995871440900553,\n          \"Y\": 468\n         },\n         {\n          \"X\": 3.9189804763710923,\n          \"Y\": 341\n         },\n         {\n          \"X\": 4.038373808652129,\n          \"Y\": 298\n         },\n         {\n          \"X\": 4.157767140933166,\n          \"Y\": 242\n         },\n         {\n          \"X\": 4.277160473214203,\n          \"Y\": 163\n         },\n         {\n          \"X\": 4.396553805495242,\n          \"Y\": 139\n         },\n         {\n          \"X\": 4.515947137776279,\n          \"Y\": 92\n         },\n         {\n          \"X\": 4.635340470057316,\n          \"Y\": 76\n         },\n         {\n          \"X\": 4.754733802338353,\n          \"Y\": 58\n         },\n         {\n          \"X\": 4.87412713461939,\n          \"Y\": 28\n         },\n         {\n          \"X\": 4.993520466900427,\n          \"Y\": 26\n         },\n         {\n          \"X\": 5.112913799181466,\n          \"Y\": 18\n         },\n         {\n          \"X\": 5.232307131462503,\n          \"Y\": 14\n         },\n         {\n          \"X\": 5.35170046374354,\n          \"Y\": 10\n         },\n         {\n          \"X\": 5.471093796024577,\n          \"Y\": 7\n         },\n         {\n          \"X\": 5.590487128305614,\n          \"Y\": 5\n         },\n         {\n          \"X\": 5.709880460586651,\n          \"Y\": 3\n         },\n         {\n          \"X\": 5.829273792867688,\n          \"Y\": 0\n         }\n        ]\n       },\n       \"encoding\": {\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"bar\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"constWeight = 1 :: Log Double\\n\",\n    \"\\n\",\n    \"sampler $ plot . histogramToList . histogram 100 <$> replicateM 100000 ((,constWeight) <$>  priorPredictive model)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"e43b4b99-dfa0-4fa7-86a8-37742e60cd25\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Posterior\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"7b9fd255-e24a-47a9-a7e4-330db726b31c\",\n   \"metadata\": {},\n   \"source\": [\n    \"Posterior distribution is computed using `likelihood` and observations $os = \\\\{o_{1}, \\\\dots o_{n} \\\\}$.\\n\",\n    \"Factors are computed for posterior for `model`, and in the considered example yield following: \\n\",\n    \"- $ \\\\prod_{i=1}^{n} \\\\text{likelihood}(\\\\text{True}, o_{i}) $ for `True` \\n\",\n    \"- $ \\\\prod_{i=1}^{n} \\\\text{likelihood}(\\\\text{False}, o_{i}) $ for `False`.\\n\",\n    \"\\n\",\n    \"Note that factors do not have to sum up to 1. Empirical distribution is obtained by normalizing factors to 1.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"5106188a-c959-455a-b155-e5a5e4a34cb0\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Observations\\n\",\n    \"\\n\",\n    \"In our example, we experiment how observed data change the a priori model given the likelihood function. Observations should be in the domain of the likelihood function.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"bab96b4a-eba8-445f-b612-d1acbaac902c\",\n   \"metadata\": {},\n   \"source\": [\n    \"Taking symmetrical and evenly distributed points, we do not change the posterior distribution:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"id\": \"e7de370d-616e-44b3-9fd3-ddea14e6d27e\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[(True,0.5005199999999994),(False,0.49948000000000126)]\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"observations1 = [-3..3]\\n\",\n    \"sampler $ toEmpiricalWeighted <$> replicateM 100000 (runWeightedT $ posterior model observations1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"616dd80b-6d54-4044-abf0-eef08f31e525\",\n   \"metadata\": {},\n   \"source\": [\n    \"On the other hand, if the observations are unevenly distributed adjustments to posterior are well visible:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"id\": \"cb53e65b-d75b-4c47-9ba4-14dbe4fecbea\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[(True,0.7669770523099223),(False,0.23302294769007775)]\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"observations2 = [-2.3, -2, 0, 0.3, 2, 2.3]\\n\",\n    \"sampler $ toEmpiricalWeighted <$> replicateM 100000 (runWeightedT $ posterior model observations2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"id\": \"064ba891-8d4c-4a2f-9aa3-530c64cce610\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"X\": \"True\",\n          \"Y\": 0.7858490286459617\n         },\n         {\n          \"X\": \"False\",\n          \"Y\": 0.21415097135403988\n         }\n        ]\n       },\n       \"encoding\": {\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"nominal\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"bar\",\n       \"width\": 400\n      },\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAb4AAAHOCAYAAADnr2woAAAAAXNSR0IArs4c6QAAIABJREFUeF7tnX1QZmX5+K+VRUXRxnwLk5lWBqRQbEwWqyX9YmoyZpvEommp5eYqlogkm81aa9sLac0IKrZGGSM1KrZuMTASmbqQpey0DjmC2TrWWIqmtqhsiPKbc37CuO7LuXie8zznfvmcv5C9zn2u63Pd93y8HuB5Fs3Ozs4KFwQgAAEIQMATAosQnyedpkwIQAACEAgJID42AgQgAAEIeEUA8XnVboqFAAQgAAHExx6AAAQgAAGvCCA+r9pNsRCAAAQggPjYAxCAAAQg4BWBjIhvdHRUGhsbJScnR4qLi6WtrS38eu6anp6WlStXyvbt22Xbtm1yySWXyPLly70CT7EQgAAEIJAMgYyIr6qqSjo7O6WkpEQaGhqkurpaamtr5yu866675MEHH5Sbb75ZJicnpby8XJ5++ulkCPBUCEAAAhDwikDs4puZmZGysjIZHx8PQfb29srAwEA49c1df/7zn2Xt2rVy7733ytjYmFx++eXy0EMPeQWeYiEAAQhAIBkCsYtvYmJCampqZGRkJKxoaGhIOjo6pLu7e77CN954Q1asWCH//e9/5bnnnpN169bJ2WefPR8/PDy8A41DDz1UTj755GQI8VQIQAACELCWQPDmZEVFRTvkH7v4gp/fBS9dBpNccPX19Ul/f7+0t7fPPzj4+pVXXpE1a9ZIEH/sscfKli1bJC8vb5dwW1tbpaWlxVrwJA4BCEAAAskQ2Lp1qxx11FGZFV+wemVlpfT09EhhYaE0NzdLRUWF1NfXhz/Py8/Pl+9+97uy//77y5VXXilzNn7sscfkgAMOQHzJ7A2eCgEIQMBJAlkTX/BSZVNTkxQUFIRTXFdXl+Tm5kppaakMDg6GX5977rmyZMkS+fe//y3Lli2Ta665ZrfQmfic3I8UBQEIQCDjBLImvrlKpqamdvvyZRATTICBGBcvXrzH4hFfxvcGD4AABCDgJIGsiy8uiogvLpKsAwEIQMAvAojPr35TLQQgAAHvCSA+77cAAHwm8Pnv3Otz+dTuGIFfrtG92xfic6zxlAOBhRD49DfuXEg4sRAwmsBvv1+vyg/xqTARBAE3CSA+N/vqa1WIz9fOUzcEFkAA8S0AFqHGE0B8xreIBCGQPAHEl3wPyCA+AogvPpasBAFnCSA+Z1vrZWGIz8u2UzQEFkYA8S2MF9FmE0B8ZveH7CBgBAHEZ0QbSCImAogvJpAsAwGXCSA+l7vrX22Iz7+eUzEEFkwA8S0YGTcYTADxGdwcUoOAKQQQnymdII84CCC+OCiyBgQcJ4D4HG+wZ+UhPs8aTrkQSIUA4kuFGveYSgDxmdoZ8oKAQQQQn0HNIJW0CSC+tBGyAATcJ4D43O+xTxUiPp+6Ta0QSJEA4ksRHLcZSQDxGdkWkoKAWQQQn1n9IJv0CCC+9PhxNwS8IID4vGizN0UiPm9aTaEQSJ0A4kudHXeaRwDxmdcTMoKAcQQQn3EtIaE0CCC+NOBxKwR8IYD4fOm0H3UiPj/6TJUQSIsA4ksLHzcbRgDxGdYQ0oGAiQQQn4ldIadUCSC+VMlxHwQ8IoD4PGq2B6UiPg+aTIkQSJcA4kuXIPebRADxmdQNcoGAoQQQn6GNIa2UCCC+lLBxEwT8IoD4/Oq369UiPtc7TH0QiIEA4osBIksYQwDxGdMKEoGAuQQQn7m9IbOFE0B8C2fGHRDwjgDi867lTheM+JxuL8VBIB4CiC8ejqxiBgHEZ0YfyAICRhNAfEa3h+QWSADxLRAY4RDwkQDi87Hr7taM+NztLZVBIDYCiC82lCxkAAHEZ0ATSAECphNAfKZ3iPwWQgDxLYQWsRDwlADi87TxjpaN+BxtLGVBIE4CiC9OmqyVNAHEl3QHeD4ELCCA+CxoEimqCSA+NSoCIeAvAcTnb+9drBzxudhVaoJAzAQQX8xAWS5RAsaJb3R0VBobGyUnJ0eKi4ulra0t/Hru6u7ulp///Ofz//3Pf/5TNm/eLPn5+bsE2draKi0tLYlC5uEQsJ0A4rO9g+T/TgLGia+qqko6OzulpKREGhoapLq6Wmpra3fZtZGREbnpppvk9ttv321XER8bHgLpE0B86TNkBXMIGCW+mZkZKSsrk/Hx8ZBQb2+vDAwMhFPfu6/Z2Vk55ZRT5M4775RDDz0U8Zmzp8jEQQKIz8GmelySUeKbmJiQmpoaCSa54BoaGpKOjg4JXt5897Vx40Z55JFH5Lvf/e78PwXxw8PDO8XW1dV53GJKh0D6BK647dH0F2EFCBhC4MaVFapMggGrqKhoh9hFs8F3Y7ymp6elvLxcxsbGwlX7+vqkv79f2tvbd3rKqaeeGr7MefTRR+8xA17qjLFBLOUtASY+b1vvZOFGTXwB4crKSunp6ZHCwkJpbm6WiooKqa+vl8nJyfAXWBYtWiSvvfaaHHfccfLUU09FNgXxRSIiAAKRBBBfJCICLCJgnPiClyqbmpqkoKBA8vLypKurS3Jzc6W0tFQGBwflyCOPlMcff1xWrVolmzZtikSN+CIREQCBSAKILxIRARYRME58c+ympqZC8aV7Ib50CXI/BEQQH7vAJQLGii8uyIgvLpKs4zMBxOdz992rHfG511MqgkDsBBBf7EhZMEECiC9B+DwaArYQQHy2dIo8NQQQn4YSMRDwnADi83wDOFY+4nOsoZQDgUwQQHyZoMqaSRFAfEmR57kQsIgA4rOoWaQaSQDxRSIiAAIQQHzsAZcIID6XukktEMgQAcSXIbAsmwgBxJcIdh4KAbsIID67+kW2eyaA+NghEIBAJAHEF4mIAIsIID6LmkWqEEiKAOJLijzPzQQBxJcJqqwJAccIID7HGup5OYjP8w1A+RDQEEB8GkrE2EIA8dnSKfKEQIIEEF+C8Hl07AQQX+xIWRAC7hFAfO711OeKEJ/P3ad2CCgJID4lKMKsIID4rGgTSUIgWQKIL1n+PD1eAogvXp6sBgEnCSA+J9vqbVGIz9vWUzgE9AQQn54VkeYTQHzm94gMIZA4AcSXeAtIIEYCiC9GmCwFAVcJID5XO+tnXYjPz75TNQQWRADxLQgXwYYTQHyGN4j0IGACAcRnQhfIIS4CiC8ukqwDAYcJID6Hm+thaYjPw6ZTMgQWSgDxLZQY8SYTQHwmd4fcIGAIAcRnSCNIIxYCiC8WjCwCAbcJID63++tbdYjPt45TLwRSIID4UoDGLcYSQHzGtobEIGAOAcRnTi/IJH0CiC99hqwAAecJID7nW+xVgYjPq3ZTLARSI4D4UuPGXWYSQHxm9oWsIGAUAcRnVDtIJk0CiC9NgNwOAR8IID4fuuxPjYjPn15TKQRSJoD4UkbHjQYSQHwGNoWUIGAaAcRnWkfIJx0CiC8detwLAU8IID5PGu1JmYjPk0ZTJgTSIYD40qHHvaYRQHymdYR8IGAgAcRnYFNIKWUCiC9ldNwIAX8IID5/eu1DpYjPhy5TIwTSJID40gTI7UYRQHxGtYNkIGAmAcRnZl/IKjUCiC81btwFAa8IID6v2u18scaJb3R0VBobGyUnJ0eKi4ulra0t/PqdV3d3t/zsZz+TyclJaWpqknPOOWe3jWptbZWWlhbnG0mBEMgkAcSXSbqsnW0CxomvqqpKOjs7paSkRBoaGqS6ulpqa2vnuTz//PNy9tlnywMPPCCvv/663HHHHWHc7i7El+0txfNcJID4XOyqvzUZJb6ZmRkpKyuT8fHxsCO9vb0yMDAQTn1zVyC6Z555Rj74wQ/Kq6++KnV1dZKXl4f4/N3DVJ4FAogvC5B5RNYIGCW+iYkJqampkZGRkRDA0NCQdHR0SPDS5tx1ww03SE9Pj6xevVq2bt0qv/nNb8Lpby5+eHh4J3iBHLkgAIHUCVxx26Op38ydEDCMwI0rK1QZzc7OSlFR0Q6xi2aD78Z4TU9PS3l5uYyNjYWr9vX1SX9/v7S3t88/5Sc/+Yk8++yzct1114XfO+644+T++++Xgw8+eJeZ8FJnjA1iKW8JMPF523onCzdq4gsIV1ZWhhNdYWGhNDc3S0VFhdTX14e/yJKfny+PPfaYrF27VjZs2CBvvPFG+LPA4KXRvffeG/E5uUUpygQCiM+ELpBDXASME1/wUmXwm5oFBQXhz+66urokNzdXSktLZXBwUI488ki5+uqr5YknnpCXXnpJvvCFL8iqVat2y4OJL66twjo+E0B8PnffvdqNE98c4qmpqT3+0sr//ve/8M8cFi9evMeuID73Ni0VZZ8A4ss+c56YOQLGii+ukhFfXCRZx2cCiM/n7rtXO+Jzr6dUBIHYCSC+2JGyYIIEEF+C8Hk0BGwhgPhs6RR5agggPg0lYiDgOQHE5/kGcKx8xOdYQykHApkggPgyQZU1kyKA+JIiz3MhYBEBxGdRs0g1kgDii0REAAQggPjYAy4RQHwudZNaIJAhAogvQ2BZNhECiC8R7DwUAnYRQHx29Yts90wA8bFDIACBSAKILxIRARYRQHwWNYtUIZAUAcSXFHmemwkCiC8TVFkTAo4RQHyONdTzchCf5xuA8iGgIYD4NJSIsYUA4rOlU+QJgQQJIL4E4fPo2AkgvtiRsiAE3COA+Nzrqc8VIT6fu0/tEFASQHxKUIRZQQDxWdEmkoRAsgQQX7L8eXq8BBBfvDxZDQJOEkB8TrbV26IQn7etp3AI6AkgPj0rIs0ngPjM7xEZQiBxAogv8RaQQIwEEF+MMFkKAq4SQHyudtbPuhCfn32naggsiADiWxAugg0ngPgMbxDpQcAEAojPhC6QQ1wEEF9cJFkHAg4TQHwON9fD0hCfh02nZAgslADiWygx4k0mgPhM7g65QcAQAojPkEaQRiwEEF8sGFkEAm4TQHxu99e36hCfbx2nXgikQADxpQCNW4wlgPiMbQ2JQcAcAojPnF6QSfoEEF/6DFkBAs4TQHzOt9irAhGfV+2mWAikRgDxpcaNu8wkgPjM7AtZQcAoAojPqHaQTJoEEF+aALkdAj4QQHw+dNmfGhGfP72mUgikTADxpYyOGw0kgPgMbAopQcA0AojPtI6QTzoEEF869LgXAp4QQHyeNNqTMhGfJ42mTAikQwDxpUOPe00jgPhM6wj5QMBAAojPwKaQUsoEEF/K6LgRAv4QQHz+9NqHShGfD12mRgikSQDxpQmQ240igPiMagfJQMBMAojPzL6QVWoEEF9q3LgLAl4RQHxetdv5Yo0T3+joqDQ2NkpOTo4UFxdLW1tb+PXcFfz7eeedJ4cddlj4reOPP15++MMf7rZRra2t0tLS4nwjKRACmSSA+DJJl7WzTcA48VVVVUlnZ6eUlJRIQ0ODVFdXS21t7TyX3//+93LPPffILbfcomKF+FSYCILAHgkgPjaISwSMEt/MzIyUlZXJ+Ph4yLi3t1cGBgbCqW/uCqT34IMPykknnST77befnHbaaTtMhO9uDuJzabtSS1IEEF9S5HluJggYJb6JiQmpqamRkZGRsNahoSHp6OiQ7u7u+drvvfdeufnmm+Xzn/+8bNmyRf7+97+HgpyLHx4e3olTXV1dJtixJgS8IXDFbY96UyuFuk/gxpUVqiJnZ2elqKhoh9hFs8F3Y7ymp6elvLxcxsbGwlX7+vqkv79f2tvbd/uUY445Rv7whz/IoYceussYJr4YG8RS3hJg4vO29U4WbtTEFxCurKyUnp4eKSwslObmZqmoqJD6+nqZnJyU/Px8ue+++2TRokVy+umny/bt26W0tDR8aXSfffZBfE5uUYoygQDiM6EL5BAXAePEF7xU2dTUJAUFBZKXlyddXV2Sm5sbCm5wcFDeeustWbFiRSjGf/zjH3LZZZfJBRdcsFseTHxxbRXW8ZkA4vO5++7Vbpz45hBPTU2F4tvdtW3btnAC3GuvvfbYFcTn3qalouwTQHzZZ84TM0fAWPHFVTLii4sk6/hMAPH53H33akd87vWUiiAQOwHEFztSFkyQAOJLED6PhoAtBBCfLZ0iTw0BxKehRAwEPCeA+DzfAI6Vj/gcayjlQCATBBBfJqiyZlIEEF9S5HkuBCwigPgsahapRhJAfJGICIAABBAfe8AlAojPpW5SCwQyRADxZQgsyyZCAPElgp2HQsAuAojPrn6R7Z4JID52CAQgEEkA8UUiIsAiAojPomaRKgSSIoD4kiLPczNBAPFlgiprQsAxAojPsYZ6Xg7i83wDUD4ENAQQn4YSMbYQQHy2dIo8IZAgAcSXIHweHTsBxBc7UhaEgHsEEJ97PfW5IsTnc/epHQJKAohPCYowKwggPivaRJIQSJYA4kuWP0+PlwDii5cnq0HASQKIz8m2elsU4vO29RQOAT0BxKdnRaT5BBCf+T0iQwgkTgDxJd4CEoiRAOKLESZLQcBVAojP1c76WRfi87PvVA2BBRFAfAvCRbDhBBCf4Q0iPQiYQADxmdAFcoiLAOKLiyTrQMBhAojP4eZ6WBri87DplAyBhRJAfAslRrzJBBCfyd0hNwgYQgDxGdII0oiFAOKLBSOLQMBtAojP7f76Vh3i863j1AuBFAggvhSgcYuxBBCfsa0hMQiYQwDxmdMLMkmfAOJLnyErQMB5AojP+RZ7VSDi86rdFAuB1AggvtS4cZeZBBCfmX0hKwgYRQDxGdUOkkmTAOJLEyC3Q8AHAojPhy77UyPi86fXVAqBlAkgvpTRcaOBBBCfgU0hJQiYRgDxmdYR8kmHAOJLhx73QsATAojPk0Z7Uibi86TRlAmBdAggvnToca9pBBCfaR0hHwgYSADxGdgUUkqZAOJLGR03QsAfAojPn177UCni86HL1AiBNAkgvjQBcrtRBBCfUe0gGQiYSQDxmdkXskqNAOJLjRt3QcArAojPq3Y7X2zGxHfLLbfI0UcfLaeccsqCII6OjkpjY6Pk5ORIcXGxtLW1hV+/+9q+fXu49ne+8x2prq7e7TNaW1ulpaVlQTkQDAEI7EgA8bEjXCKQMfFde+21oZRWrFghP/7xj+X973+/iltVVZV0dnZKSUmJNDQ0hFKrra3d6d6rrrpKHn74YbnmmmvkzDPPRHwqugRBIDUCiC81btxlJoGMiW92dlbuuOMOWb16tWzbtk0CEQZSm7tOPPHEnYjMzMxIWVmZjI+Ph//W29srAwMD4dT3zmvTpk1y5513Sn5+vixbtgzxmbm3yMohAojPoWZSimRMfHNsX3vtNTn99NNleHh4B9yBGN99TUxMSE1NjYyMjIT/NDQ0JB0dHdLd3T0fGqy3fPly2bBhg6xbt24H8QXx735OcGNdXR2thgAE0iBwxW2PpnE3t0LALAI3rqxQJRR4qqioaIfYRbO7stc7QjZv3ixXXnllKKOLL754h4nv/PPP3+nB09PTUl5eLmNjY+G/9fX1SX9/v7S3t8/HXnHFFXLIIYeEa61fv16OPfZYWbVqlRx00EG7LISf8an6SxAE9kiAiY8N4hKBjE18N910k3zta1+T448/XoJfdFm6dKmKW2VlpfT09EhhYaE0NzdLRUWF1NfXy+TkZPjSZvBvzz77bLhW8FLoUUcdJWvWrAnjd3UhPhV2giCA+NgD3hDImPjWrl0bTmaXXnqp7LXXXmqgwXTY1NQkBQUFkpeXJ11dXZKbmyulpaUyODgoRx555Pxawc8P+RmfGi2BEEiZABNfyui40UACGRNfurVOTU2F4kv3YuJLlyD3Q0AE8bELXCJgrPjigoz44iLJOj4TQHw+d9+92hGfez2lIgjETgDxxY6UBRMkgPgShM+jIWALAcRnS6fIU0MA8WkoEQMBzwkgPs83gGPlIz7HGko5EMgEAcSXCaqsmRQBxJcUeZ4LAYsIID6LmkWqkQQQXyQiAiAAAcTHHnCJAOJzqZvUAoEMEUB8GQLLsokQQHyJYOehELCLAOKzq19ku2cCiI8dAgEIRBJAfJGICLCIAOKzqFmkCoGkCCC+pMjz3EwQQHyZoMqaEHCMAOJzrKGel4P4PN8AlA8BDQHEp6FEjC0EEJ8tnSJPCCRIAPElCJ9Hx04A8cWOlAUh4B4BxOdeT32uCPH53H1qh4CSAOJTgiLMCgKIz4o2kSQEkiWA+JLlz9PjJYD44uXJahBwkgDic7Kt3haF+LxtPYVDQE8A8elZEWk+AcRnfo/IEAKJE0B8ibeABGIkgPhihMlSEHCVAOJztbN+1oX4/Ow7VUNgQQQQ34JwEWw4AcRneINIDwImEEB8JnSBHOIigPjiIsk6EHCYAOJzuLkelob4PGw6JUNgoQQQ30KJEW8yAcRncnfIDQKGEEB8hjSCNGIhgPhiwcgiEHCbAOJzu7++VYf4fOs49UIgBQKILwVo3GIsAcRnbGtIDALmEEB85vSCTNIngPjSZ8gKEHCeAOJzvsVeFYj4vGo3xUIgNQKILzVu3GUmAcRnZl/ICgJGEUB8RrWDZNIkgPjSBMjtEPCBAOLzocv+1Ij4/Ok1lUIgZQKIL2V03GggAcRnYFNICQKmEUB8pnWEfNIhgPjSoce9EPCEAOLzpNGelIn4PGk0ZUIgHQKILx163GsaAcRnWkfIBwIGEkB8BjaFlFImgPhSRseNEPCHAOLzp9c+VIr4fOgyNUIgTQKIL02A3G4UAcRnVDtIBgJmEkB8ZvaFrFIjgPhS48ZdEPCKAOLzqt3OF2uc+EZHR6WxsVFycnKkuLhY2trawq/nru3bt8vFF18sExMT8uqrr8rq1avlrLPO2m2jWltbpaWlxflGUiAEMkkA8WWSLmtnm4Bx4quqqpLOzk4pKSmRhoYGqa6ultra2nkuGzZskPHx8VB4zz33nCxbtkyeeuopxJftncPzvCKA+Lxqt/PFGiW+mZkZKSsrC8UWXL29vTIwMBBOfbu6Nm/eHE6HmzZtQnzOb1UKTJIA4kuSPs+Om4BR4gtevqypqZGRkZGwzqGhIeno6JDu7u6d6j755JNl69atctddd8mJJ544Hz88PLxTbF1dXdzcWA8CXhG44rZHvaqXYt0mcOPKClWBs7OzUlRUtEPsotnguzFe09PTUl5eLmNjY+GqfX190t/fL+3t7bt8yjPPPCOnnHKKPP7447LPPvvsMoaf8cXYIJbylgATn7etd7Jwoya+gHBlZaX09PRIYWGhNDc3S0VFhdTX18vk5KTk5+fL+vXrZd9995ULLrhA3nzzTVmyZEkovgMOOADxOblFKcoEAojPhC6QQ1wEjBNf8FJlU1OTFBQUSF5ennR1dUlubq6UlpbK4OBg+BueK1askMMPP1z+9a9/yRlnnCFr1qzZLQ8mvri2Cuv4TADx+dx992o3TnxziKempkLx7e4KJsDg3xcvXrzHriA+9zYtFWWfAOLLPnOemDkCxoovrpIRX1wkWcdnAojP5+67Vzvic6+nVASB2AkgvtiRsmCCBBBfgvB5NARsIYD4bOkUeWoIID4NJWIg4DkBxOf5BnCsfMTnWEMpBwKZIID4MkGVNZMigPiSIs9zIWARAcRnUbNINZIA4otERAAEIID42AMuEUB8LnWTWiCQIQKIL0NgWTYRAogvEew8FAJ2EUB8dvWLbPdMAPGxQyAAgUgCiC8SEQEWEUB8FjWLVCGQFAHElxR5npsJAogvE1RZEwKOEUB8jjXU83IQn+cbgPIhoCGA+DSUiLGFAOKzpVPkCYEECSC+BOHz6NgJIL7YkbIgBNwjgPjc66nPFSE+n7tP7RBQEkB8SlCEWUEA8VnRJpKEQLIEEF+y/Hl6vAQQX7w8WQ0CThJAfE621duiEJ+3radwCOgJID49KyLNJ4D4zO8RGUIgcQKIL/EWkECMBBBfjDBZCgKuEkB8rnbWz7oQn599p2oILIgA4lsQLoINJ4D4DG8Q6UHABAKIz4QukENcBBBfXCRZBwIOE0B8DjfXw9IQn4dNp2QILJQA4lsoMeJNJoD4TO4OuUHAEAKIz5BGkEYsBBBfLBhZBAJuE0B8bvfXt+oQn28dp14IpEAA8aUAjVuMJYD4jG0NiUHAHAKIz5xekEn6BBBf+gxZAQLOE0B8zrfYqwIRn1ftplgIpEYA8aXGjbvMJID4zOwLWUHAKAKIz6h2kEyaBBBfmgC5HQI+EEB8PnTZnxoRnz+9plIIpEwA8aWMjhsNJID4DGwKKUHANAKIz7SOkE86BBBfOvS4FwKeEEB8njTakzIRnyeNpkwIpEMA8aVDj3tNI4D43u7I5Ov/M6035AOBlAkcsN8+Kd+7qxsRX6w4WSxhAojv7QZwsBPeiTw+VgLag619KOdDS4o4Gwhoz8fWrVvlqKOO2qGkRbOzs7OmF9na2iotLS2RaXKwIxERYBEB7cHWlsT50JIizgYC2vOB+GzoJjlC4G0C2oOtBYb4tKSIs4GA9nwgPhu6SY4QQHzsAQhEEjBOfKOjo9LY2Cg5OTlSXFwsbW1t4ddz18zMjFx66aXy9NNPy9TUlHz961+X5cuX77ZQXuqM3AMEOEhAe7C1pTPxaUkRZwMB7fnI2sRXVVUlnZ2dUlJSIg0NDVJdXS21tbXzLO+77z4ZHByU66+/Xl588UVZunSpBMnt7kJ8NmxDcoybgPZga5+L+LSkiLOBgPZ8ZEV8wTRXVlYm4+PjIbve3l4ZGBgIp75dXcHUV19fL4888gjis2G3kWPWCGgPtjYhxKclRZwNBLTnIyvim5iYkJqaGhkZGQnZDQ0NSUdHh3R3d+/E8oUXXpC6ujoJJrrKysr5+OHh4Z1ig7io64rbHo0K4d8hYA2BG1dWxJor5yNWnCyWMAHt+Qj+cKGoqGiHbGP/c4bp6WkpLy+XsbGx8EF9fX3S398v7e3tOzz4ySeflAsvvDCcBE844YQ9IuSlzoR3GI9PhID2/2i1yTHxaUkRZwMB7fnIysQXAAumt56eHiksLJTm5mapqKgIX86cnJyU/Px82bZtm5x++unyq1/9SpYsWRLJGPFFIiLAQQLag60tHfFpSRFnAwEKvcwfAAARuklEQVTt+cia+IKXKpuamqSgoEDy8vKkq6tLcnNzpbS0NPyllkB4waT3zvEz+FlgIMVdXYjPhm1IjnET0B5s7XMRn5YUcTYQ0J6PrIlvDlrwpwqB+NK9EF+6BLnfRgLag62tDfFpSRFnAwHt+ci6+OKCh/jiIsk6NhHQHmxtTYhPS4o4Gwhozwfis6Gb5AiBtwloD7YWGOLTkiLOBgLa84H4bOgmOUIA8bEHIBBJAPG9jYj/o43cKwRYREB7sLUlcT60pIizgYD2fDDx2dBNcoQAEx97AAKRBBAfE1/kJiHAPgLag62tjIlPS4o4GwhozwcTnw3dJEcIMPGxByAQSQDxMfFFbhIC7COgPdjaypj4tKSIs4GA9nww8dnQTXKEABMfewACkQQQHxNf5CYhwD4C2oOtrYyJT0uKOBsIaM8HE58N3SRHCDDxsQcgEEkA8THxRW4SAuwjoD3Y2sqY+LSkiLOBgPZ8MPHZ0E1yhAATH3sAApEEEB8TX+QmIcA+AtqDra2MiU9LijgbCGjPBxOfDd0kRwgw8bEHIBBJAPEx8UVuEgLsI6A92NrKmPi0pIizgYD2fDDx2dBNcoQAEx97AAKRBBAfE1/kJiHAPgLag62tjIlPS4o4GwhozwcTnw3dJEcIMPGxByAQSQDxMfFFbhIC7COgPdjaypj4tKSIs4GA9nww8dnQTXKEABMfewACkQQQHxNf5CYhwD4C2oOtrYyJT0uKOBsIaM8HE58N3SRHCDDxsQcgEEkA8THxRW4SAuwjoD3Y2sqY+LSkiLOBgPZ8MPHZ0E1yhAATH3sAApEEEB8TX+QmIcA+AtqDra2MiU9LijgbCGjPBxOfDd0kRwgw8bEHIBBJAPEx8UVuEgLsI6A92NrKmPi0pIizgYD2fDDx2dBNcoQAEx97AAKRBBAfE1/kJiHAPgLag62tjIlPS4o4GwhozwcTnw3dJEcIMPGxByAQSQDxMfFFbhIC7COgPdjaypj4tKSIs4GA9nww8dnQTXKEABMfewACkQQQHxNf5CYhwD4C2oOtrYyJT0uKOBsIaM8HE58N3SRHCDDxsQcgEEkA8THxRW4SAuwjoD3Y2sqY+LSkiLOBgPZ8MPHZ0E1yhAATH3sAApEEEB8TX+QmIcA+AtqDra2MiU9LijgbCGjPBxOfDd0kRwgw8bEHIBBJAPEx8UVuEgLsI6A92NrKmPi0pIizgYD2fDDx2dBNcoQAEx97AAKRBBAfE1/kJiHAPgLag62tjIlPS4o4Gwhoz0fWJr7R0VFpbGyUnJwcKS4ulra2tvDrd15PPPGEXHrppbJy5Uo577zz9si5tbVVWlpaInvBwY5ERIBFBLQHW1sS50NLijgbCGjPR9bEV1VVJZ2dnVJSUiINDQ1SXV0ttbW18yynp6floosuksMPPzyMWbVqFeKzYaeRY1YJaA+2NinEpyVFnA0EtOcjK+KbmZmRsrIyGR8fD9n19vbKwMBAOPW9+1q3bp0ccsghiM+GXUaOWSegPdjaxBCflhRxNhDQno+siG9iYkJqampkZGQkZDc0NCQdHR3S3d2tEl8QPzw8vFNsXV1dZC+uuO3RyBgCIGALgRtXVsSaKucjVpwsljAB7fmYnZ2VoqKiHbJdNBt8N8YreBmzvLxcxsbGwlX7+vqkv79f2tvbVeLbVSr8jC/GBrGUNQS0/0erLYiJT0uKOBsIaM9HVia+AFhlZaX09PRIYWGhNDc3S0VFhdTX18vk5KTk5+fLokWLQq681GnD9iLHpAhoD7Y2P8SnJUWcDQS05yNr4gteqmxqapKCggLJy8uTrq4uyc3NldLSUhkcHJSXX35ZvvrVr8ozzzwTfv+II46QjRs3ynve855d8mbis2EbkmPcBLQHW/tcxKclRZwNBLTnI2vim4M2NTUVii/dC/GlS5D7bSSgPdja2hCflhRxNhDQno+siy8ueIgvLpKsYxMB7cHW1oT4tKSIs4GA9nwgPhu6SY4QeJuA9mBrgSE+LSnibCCgPR+Iz4ZukiMEEB97AAKRBBDf24j4P9rIvUKARQS0B1tbEudDS4o4GwhozwcTnw3dJEcIMPGxByAQSQDxMfFFbhIC7COgPdjaypj4tKSIs4GA9nww8dnQTXKEABMfewACkQQQHxNf5CYhwD4C2oOtrYyJT0uKOBsIaM8HE58N3SRHCDDxsQcgEEkA8THxRW4SAuwjoD3Y2sqY+LSkiLOBgPZ8MPHZ0E1yhAATH3sAApEEEB8TX+QmIcA+AtqDra2MiU9LijgbCGjPBxOfDd0kRwgw8bEHIBBJAPEx8UVuEgLsI6A92NrKmPi0pIizgYD2fDDx2dBNcoQAEx97AAKRBBAfE1/kJiHAPgLag62tjIlPS4o4GwhozwcTnw3dJEcIMPGxByAQSQDxMfFFbhIC7COgPdjaypj4tKSIs4GA9nww8dnQTXKEABMfewACkQQQHxNf5CYhwD4C2oOtrYyJT0uKOBsIaM8HE58N3SRHCDDxsQcgEEkA8THxRW4SAuwjoD3Y2sqY+LSkiLOBgPZ8MPHZ0E1yhAATH3sAApEEEB8TX+QmIcA+AtqDra2MiU9LijgbCGjPBxOfDd0kRwgw8bEHIBBJAPEx8UVuEgLsI6A92NrKmPi0pIizgYD2fDDx2dBNcoQAEx97AAKRBBAfE1/kJiHAPgLag62tjIlPS4o4GwhozwcTnw3dJEcIMPGxByAQSQDxMfFFbhIC7COgPdjaypj4tKSIs4GA9nww8dnQTXKEABMfewACkQQQHxNf5CYhwD4C2oOtrYyJT0uKOBsIaM8HE58N3SRHCDDxsQcgEEkA8THxRW4SAuwjoD3Y2sqY+LSkiLOBgPZ8MPHZ0E1yhAATH3sAApEEEB8TX+QmIcA+AtqDra2MiU9LijgbCGjPBxOfDd0kRwgw8bEHIBBJAPEx8UVuEgLsI6A92NrKmPi0pIizgYD2fDDx2dBNcoQAEx97AAKRBBAfE1/kJiHAPgLag62tjIlPS4o4GwhozwcTnw3dJEcIMPGxByAQSQDxMfFFbhIC7COgPdjaypj4tKSIs4GA9nxkbeIbHR2VxsZGycnJkeLiYmlrawu/nrtmZ2elpaVF/vKXv8jMzIz84Ac/kMrKyt2ybm1tDeOjLg52FCH+3SYC2oOtrYnzoSVFnA0EtOcja+KrqqqSzs5OKSkpkYaGBqmurpba2tp5loODg3L77bfLHXfcIc8++6ycddZZsnnzZsRnw24jx6wR0B5sbUKIT0uKOBsIaM9HVsQXTHBlZWUyPj4esuvt7ZWBgYFw6pu7rr32Wjn66KPlvPPOC791wgknhDHvfe97d8mbic+GbUiOcRPQHmztcxGflhRxNhDQno+siG9iYkJqampkZGQkZDc0NCQdHR3S3d09z/Kyyy4LY84888zwe5/85CfDmOBl0SB+eHh4B+777befvP766zb0ghwhAAEIQMAgAh/60Ifk05/+9A4ZLZoNfuAW4zU9PS3l5eUyNjYWrtrX1yf9/f3S3t4+/5RvfvObcswxx8i5554bfm/p0qVhzMEHHxxjJiyVKQLaCTxTz2ddCJhMgPNhcnf+f26xiy9YNPhFlZ6eHiksLJTm5mapqKiQ+vp6mZyclPz8/FCGGzdulPXr18uLL74YTnxbtmwxnxYZhgQ42GwECOyeAOfD/N2REfEFL1U2NTVJQUGB5OXlSVdXl+Tm5kppaakEv9hyxBFHyAUXXCCvvPJKKL7vfe978n//93/m0yJDxMcegEAEAcRn/hbJiPjmyp6amgrFt7sr+Pd9991XFi1aZD4pMpwnwMFmM0CAic/mPZBR8dkMhtx3TyD4BaRly5aBCAIQ2AUBzof52wLxmd8jMoQABCAAgRgJIL4YYfqw1BtvvCHBS9QHHnigD+VSIwQWRIDzsSBciQUjvsTQ2/fgyy+/XH77299KXV1d+Hcxf/zjH+Ub3/iGfYWQMQQyQIDzkQGoGVoS8WUIrGvLPvTQQ/K73/1OvvzlL8tNN90k119/vZx66qnhn6bsvfferpVLPRBYEAHOx4JwJR6M+BJvgR0JbNiwQYKXcYI3GwjEd8MNN8gXv/hFufXWWyV4Zx0uCPhMgPNhV/cRn139Sizb4O8tP/WpT8kZZ5wRvqF48O48wfuxBgeeCwK+E+B82LUDEJ9d/Uo02+CTNIL3XH3hhRfCNyM4//zzZZ999kk0Jx4OAVMIcD5M6UR0HogvmhERbxMIprvPfvaz4eco3nbbbXLOOefIJz7xCfhAwHsCgfSCn4G/8wreBvmiiy7yno2JABCfiV0xMKdAduvWrQvfgzV479XgjcaDj5q6//77eecdA/tFStkl8Le//U1+8YtfzD80eJP+4CPa7r333uwmwtNUBBCfChNBd999dwjhuOOOC/+E4Z577pGvfOUr4RtWH3TQQQCCAATeReCSSy4Jf/mLt2Q0b2sgPvN6YmRGjz32mFx33XWyePHi8G/4gl90Wb58uQS/xr3XXnsZmTNJQSBbBN566y0JPpJt7tq2bVv4Y4HgA7b333//bKXBc5QEEJ8SFGEiv/71r+Xll1+WL33pS+EHDT///PPzHyYMHwj4TCB4f86LL754HkHw5vzBR7GtXr3aZyzG1o74jG2NGYn95z//kYcffni3yZx55plmJEoWEEiQQDDhBRPfIYcckmAWPFpLAPFpSXkaF/zQ/sYbb9xt9cEfs3NBwHcCwW90Bp9D+u1vf9t3FFbUj/isaJM5SQbv3vLmm29K8DONtWvXhh8inJOTY06CZAKBBAgE/4P4uc99ToqLi+V973vffAb8j2ECzVA8EvEpIBEi8vrrr8tpp50mW7duDd+6LPhZ32c+85nwtzu5IOAzgeeeey78zc3gTdvf/RucwS+AcZlHAPGZ1xMjM9q4caMEf6R7wgknyJYtW8K3Lgver3NPL4MaWQhJQSBmAieffLI88MADMa/KcpkkgPgySdehtYN3bXnppZfCd2r55S9/Kd/61rfkwgsvlI6ODgl+g40LAr4SQHz2dR7x2dezRDKenJyUj33sYzI4OBj+HV9RUZEEf9v317/+lb/jS6QjPNQUAsH71u7utzmDP3PgMo8A4jOvJ8ZmFPxCS/AzjFdeeUX+9Kc/yUc+8hE57LDDjM2XxCCQDQIf//jHpbOzc5ePCqTIZR4BxGdeT4zLKHiLsu9///thXsFblwU/51uyZIlxeZIQBJIgwEudSVBP75mILz1+Xtz9zoPd2NgYfirDiSee6EXtFAmBKALr168P37eWyx4CiM+eXiWWKeJLDD0PhgAEMkAA8WUAqmtLIj7XOko9EPCbAOLzu/+q6oMf0M+9G8VTTz0V/kLLgQceGN7L3y+pEBIEAQgYRADxGdQMU1N58sknd/jIlXfmecwxx5iaNnlBAAIQ2CUBxMfGgAAEIAABrwggPq/aTbEQgAAEIID42AMQgAAEIOAVAcTnVbspFgIQgAAEEB97AAIQgAAEvCKA+LxqN8W6QiD4gNPnn38+/DDgvfbaS1599dXwEzM++tGPhh+IygUBCOyeAOJjd0DAQgLDw8PhR0S1t7fLZZddJsFbyf30pz8NPy3jAx/4gIUVkTIEskcA8WWPNU+CQKwErrrqqvBTAbq6uuTss88OPxg4ECAXBCCwZwKIjx0CAUsJbN++XT784Q9L8AYDFRUV8vDDD/PZiJb2krSzSwDxZZc3T4NAbASmp6fDz0QMXt4MPhNu06ZN4eclckEAAkx87AEIOElgzZo18qMf/Uja2tpk5cqVcuutt8oll1ziZK0UBYE4CTDxxUmTtSCQJQJbtmyRpUuXyrp16+Tqq6+Wiy66SDZs2CBPPPGEFBQUZCkLHgMBOwkgPjv7RtYeE5iZmQl/pjc7OysjIyOyePFieemllyT4FI2TTjpJ7r77bo/pUDoEogkgvmhGREAAAhCAgEMEEJ9DzaQUCEAAAhCIJoD4ohkRAQEIQAACDhFAfA41k1IgAAEIQCCaAOKLZkQEBCAAAQg4RADxOdRMSoEABCAAgWgCiC+aEREQgAAEIOAQgf8HjcoYSnqQw8EAAAAASUVORK5CYII=\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"sampler $ \\n\",\n    \"    plot . fmap (bimap (T.pack . show) (ln . exp)) . toEmpiricalWeighted <$> \\n\",\n    \"    replicateM 1000 (runWeightedT $ posterior model observations2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"22d6ba01-5509-4268-8888-280b40d7cb5c\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Excercise\\n\",\n    \"\\n\",\n    \"Change the observations lists and see how the posterior is affected.\\n\",\n    \"Change standard deviation of `likelihood` and see how posterior changes.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"dd0b08c8-e604-43be-9029-6708c61b4d1b\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Posterior predictive\\n\",\n    \"\\n\",\n    \"Analoguosly to prior predictive is generated by `generative` applied to `posterior`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"id\": \"3021a681-2370-4157-b5c7-fc9bbe2f7849\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"X\": -6.5236444797796205,\n          \"Y\": 1.2000820346917839e-12\n         },\n         {\n          \"X\": -6.396991310288549,\n          \"Y\": 0\n         },\n         {\n          \"X\": -6.270338140797477,\n          \"Y\": 0\n         },\n         {\n          \"X\": -6.143684971306406,\n          \"Y\": 0\n         },\n         {\n          \"X\": -6.017031801815335,\n          \"Y\": 0\n         },\n         {\n          \"X\": -5.890378632324263,\n          \"Y\": 1.2000820346917839e-12\n         },\n         {\n          \"X\": -5.763725462833192,\n          \"Y\": 3.6002461040753516e-12\n         },\n         {\n          \"X\": -5.637072293342121,\n          \"Y\": 6.000410173458919e-12\n         },\n         {\n          \"X\": -5.510419123851049,\n          \"Y\": 4.8003281387671354e-12\n         },\n         {\n          \"X\": -5.383765954359978,\n          \"Y\": 3.6002461040753516e-12\n         },\n         {\n          \"X\": -5.257112784868907,\n          \"Y\": 1.0800738312226055e-11\n         },\n         {\n          \"X\": -5.130459615377835,\n          \"Y\": 2.2801558659143882e-11\n         },\n         {\n          \"X\": -5.003806445886764,\n          \"Y\": 4.320295324890418e-11\n         },\n         {\n          \"X\": -4.877153276395693,\n          \"Y\": 3.6002461040753487e-11\n         },\n         {\n          \"X\": -4.750500106904621,\n          \"Y\": 5.6403855630513785e-11\n         },\n         {\n          \"X\": -4.62384693741355,\n          \"Y\": 9.720664481003459e-11\n         },\n         {\n          \"X\": -4.497193767922479,\n          \"Y\": 1.57210746544624e-10\n         },\n         {\n          \"X\": -4.370540598431408,\n          \"Y\": 1.6561132078746653e-10\n         },\n         {\n          \"X\": -4.2438874289403365,\n          \"Y\": 2.5681755542404247e-10\n         },\n         {\n          \"X\": -4.117234259449265,\n          \"Y\": 3.4442354395654305e-10\n         },\n         {\n          \"X\": -3.9905810899581935,\n          \"Y\": 4.0562772772582427e-10\n         },\n         {\n          \"X\": -3.863927920467122,\n          \"Y\": 4.932337162583237e-10\n         },\n         {\n          \"X\": -3.7372747509760504,\n          \"Y\": 7.296498770925958e-10\n         },\n         {\n          \"X\": -3.6106215814849794,\n          \"Y\": 8.052550452781753e-10\n         },\n         {\n          \"X\": -3.483968411993908,\n          \"Y\": 1.008068909141079e-09\n         },\n         {\n          \"X\": -3.3573152425028363,\n          \"Y\": 1.226483839454975e-09\n         },\n         {\n          \"X\": -3.2306620730117652,\n          \"Y\": 1.3980955704158935e-09\n         },\n         {\n          \"X\": -3.1040089035206937,\n          \"Y\": 1.6429123054930078e-09\n         },\n         {\n          \"X\": -2.977355734029622,\n          \"Y\": 1.911730681263957e-09\n         },\n         {\n          \"X\": -2.850702564538551,\n          \"Y\": 2.1001435607105596e-09\n         },\n         {\n          \"X\": -2.7240493950474796,\n          \"Y\": 2.3377598035795235e-09\n         },\n         {\n          \"X\": -2.5973962255564085,\n          \"Y\": 2.5477741596505775e-09\n         },\n         {\n          \"X\": -2.470743056065337,\n          \"Y\": 2.7217860546808794e-09\n         },\n         {\n          \"X\": -2.344089886574266,\n          \"Y\": 2.906598688023407e-09\n         },\n         {\n          \"X\": -2.217436717083194,\n          \"Y\": 2.8861972934336473e-09\n         },\n         {\n          \"X\": -2.090783547592123,\n          \"Y\": 3.0170062352150467e-09\n         },\n         {\n          \"X\": -1.9641303781010517,\n          \"Y\": 3.1310140285107617e-09\n         },\n         {\n          \"X\": -1.8374772086099798,\n          \"Y\": 3.0109582427108273e-09\n         },\n         {\n          \"X\": -1.7108240391189087,\n          \"Y\": 2.941353484698706e-09\n         },\n         {\n          \"X\": -1.5841708696278376,\n          \"Y\": 2.762157094961661e-09\n         },\n         {\n          \"X\": -1.4575177001367665,\n          \"Y\": 2.604946348417043e-09\n         },\n         {\n          \"X\": -1.3308645306456945,\n          \"Y\": 2.4479294391173596e-09\n         },\n         {\n          \"X\": -1.2042113611546235,\n          \"Y\": 2.2530844005985607e-09\n         },\n         {\n          \"X\": -1.0775581916635524,\n          \"Y\": 2.1027375620248778e-09\n         },\n         {\n          \"X\": -0.9509050221724804,\n          \"Y\": 1.875109649923317e-09\n         },\n         {\n          \"X\": -0.8242518526814093,\n          \"Y\": 1.659336303254499e-09\n         },\n         {\n          \"X\": -0.6975986831903382,\n          \"Y\": 1.5367851887236598e-09\n         },\n         {\n          \"X\": -0.5709455136992663,\n          \"Y\": 1.5119235581542422e-09\n         },\n         {\n          \"X\": -0.4442923442081952,\n          \"Y\": 1.410834681177463e-09\n         },\n         {\n          \"X\": -0.3176391747171241,\n          \"Y\": 1.4613878894705825e-09\n         },\n         {\n          \"X\": -0.19098600522605214,\n          \"Y\": 1.540457572611739e-09\n         },\n         {\n          \"X\": -0.06433283573498105,\n          \"Y\": 1.576898798395013e-09\n         },\n         {\n          \"X\": 0.06232033375609003,\n          \"Y\": 1.7621061220711967e-09\n         },\n         {\n          \"X\": 0.188973503247162,\n          \"Y\": 2.3371603014648102e-09\n         },\n         {\n          \"X\": 0.3156266727382331,\n          \"Y\": 2.69897702940749e-09\n         },\n         {\n          \"X\": 0.44227984222930417,\n          \"Y\": 3.2753740378280713e-09\n         },\n         {\n          \"X\": 0.5689330117203761,\n          \"Y\": 3.581694482346584e-09\n         },\n         {\n          \"X\": 0.6955861812114472,\n          \"Y\": 4.3484798012282575e-09\n         },\n         {\n          \"X\": 0.8222393507025183,\n          \"Y\": 5.130913768891697e-09\n         },\n         {\n          \"X\": 0.9488925201935894,\n          \"Y\": 5.596226553724365e-09\n         },\n         {\n          \"X\": 1.0755456896846614,\n          \"Y\": 6.241701406596872e-09\n         },\n         {\n          \"X\": 1.2021988591757324,\n          \"Y\": 7.435009210711222e-09\n         },\n         {\n          \"X\": 1.3288520286668035,\n          \"Y\": 8.030607531686927e-09\n         },\n         {\n          \"X\": 1.4555051981578755,\n          \"Y\": 8.58684105717161e-09\n         },\n         {\n          \"X\": 1.5821583676489466,\n          \"Y\": 9.42635204894e-09\n         },\n         {\n          \"X\": 1.7088115371400177,\n          \"Y\": 9.668585306468487e-09\n         },\n         {\n          \"X\": 1.8354647066310887,\n          \"Y\": 9.818792905971791e-09\n         },\n         {\n          \"X\": 1.9621178761221598,\n          \"Y\": 9.891712416103428e-09\n         },\n         {\n          \"X\": 2.0887710456132327,\n          \"Y\": 1.0178590128491209e-08\n         },\n         {\n          \"X\": 2.2154242151043038,\n          \"Y\": 9.75504230321895e-09\n         },\n         {\n          \"X\": 2.342077384595375,\n          \"Y\": 9.729935745151944e-09\n         },\n         {\n          \"X\": 2.468730554086446,\n          \"Y\": 9.267743875193853e-09\n         },\n         {\n          \"X\": 2.595383723577517,\n          \"Y\": 8.40711073803051e-09\n         },\n         {\n          \"X\": 2.722036893068588,\n          \"Y\": 7.434914046049696e-09\n         },\n         {\n          \"X\": 2.848690062559661,\n          \"Y\": 6.9089715733387646e-09\n         },\n         {\n          \"X\": 2.975343232050732,\n          \"Y\": 6.402951163988095e-09\n         },\n         {\n          \"X\": 3.101996401541803,\n          \"Y\": 5.566224502857067e-09\n         },\n         {\n          \"X\": 3.228649571032874,\n          \"Y\": 4.8251237458553e-09\n         },\n         {\n          \"X\": 3.3553027405239453,\n          \"Y\": 3.836989403186276e-09\n         },\n         {\n          \"X\": 3.4819559100150164,\n          \"Y\": 3.470423437357471e-09\n         },\n         {\n          \"X\": 3.6086090795060874,\n          \"Y\": 2.637681188898582e-09\n         },\n         {\n          \"X\": 3.7352622489971603,\n          \"Y\": 2.3826787778872478e-09\n         },\n         {\n          \"X\": 3.8619154184882314,\n          \"Y\": 1.8368142418161086e-09\n         },\n         {\n          \"X\": 3.9885685879793025,\n          \"Y\": 1.466263863315244e-09\n         },\n         {\n          \"X\": 4.1152217574703736,\n          \"Y\": 9.881343426689672e-10\n         },\n         {\n          \"X\": 4.241874926961445,\n          \"Y\": 7.610228203619858e-10\n         },\n         {\n          \"X\": 4.368528096452516,\n          \"Y\": 6.33521614856312e-10\n         },\n         {\n          \"X\": 4.495181265943589,\n          \"Y\": 4.821139333183243e-10\n         },\n         {\n          \"X\": 4.62183443543466,\n          \"Y\": 2.9484653773186803e-10\n         },\n         {\n          \"X\": 4.748487604925731,\n          \"Y\": 2.2312710963492739e-10\n         },\n         {\n          \"X\": 4.875140774416802,\n          \"Y\": 1.354700308497772e-10\n         },\n         {\n          \"X\": 5.001793943907873,\n          \"Y\": 9.164149145720218e-11\n         },\n         {\n          \"X\": 5.128447113398944,\n          \"Y\": 5.976619008078404e-11\n         },\n         {\n          \"X\": 5.255100282890017,\n          \"Y\": 4.7812952064627226e-11\n         },\n         {\n          \"X\": 5.381753452381088,\n          \"Y\": 2.3906476032313613e-11\n         },\n         {\n          \"X\": 5.508406621872159,\n          \"Y\": 2.3906476032313613e-11\n         },\n         {\n          \"X\": 5.63505979136323,\n          \"Y\": 1.1953238016156808e-11\n         },\n         {\n          \"X\": 5.761712960854301,\n          \"Y\": 3.187530137641815e-11\n         },\n         {\n          \"X\": 5.888366130345372,\n          \"Y\": 7.968825344104538e-12\n         },\n         {\n          \"X\": 6.015019299836443,\n          \"Y\": 0\n         }\n        ]\n       },\n       \"encoding\": {\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"bar\",\n       \"width\": 400\n      },\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAewAAAG/CAYAAACaMOQ5AAAAAXNSR0IArs4c6QAAIABJREFUeF7snQucFNWV/8+8dAaBQUAQgYCwgBEclywvicSAEJUlQOKiAZIlJkAQcIOEgCuRxAQICSxPXZbXhuWxoOBmSXhsCGsiQvzzZkUDqNGgooijMogMMsPM/3MuztCP6u661XVO1Uz/6vPho9N97j11f/ec++1zq7o6q7KyspJwQAEoAAWgABSAAqFWIAvADvX84OSgABSAAlAAChgFAGwEAhSAAlAACkCBGqAAgF0DJgmnCAWgABSAAlAAwEYMQAEoAAWgABSoAQoA2DVgknCKUAAKQAEoAAUAbMQAFIACUAAKQIEaoIAYsM+cOUOjRo2ikpISys/Pp+XLl1OTJk2iJFm3bh0tXbrUvDZ06FAaPXo0JWpnY3vkyBGaMGEC5eTkULt27WjhwoWUnZ1NU6ZMoUOHDlF5eTnNmjWLunfvTk623O7o0aP04IMPmjEMHz7cnKPTazVgjnGKUAAKQAEoUAsUEAP2j370I2rdujWNHDmSNmzYQDt37qRFixZVS3b27Fnq1asX7dmzh3Jzc6lHjx60ZcsWYxPbbsaMGa5tuT33u2LFCmrfvj2NGzeO+vTpQ4WFhbRy5Upas2YNnTx5kgYOHEgHDhxwtP3qV79KDzzwADVt2tT0MWbMGLp48WLca7Vg/jEEKAAFoAAUqCEKiAH7S1/6EnFV3Lx5czp37hz17NmTXnzxxWpZnn32WfP+smXLzGuTJk0yNvPnz49rV/WaG9uDBw9Sx44d6fjx46bfzZs30/bt26lBgwbUoUOH6mq5S5cutHXrVgPsWFuuyPmYPn06NW7c2AC76nB6rYbMNU4TCkABKAAFarACYsC++eabae/evVS3bl0jT6tWrejEiRPVUj399NPm/Tlz5lTDkSvaefPmxbWbPXu2a9t9+/ZR//79af/+/abfXbt20eLFi02Fza8PGDDAvN63b18D5PHjx8fZrl271grY7GP37t1RYXDdddfRl7/85RocGjh1KAAFoAAUCEIBfgBp27Zt41yLAfuLX/wibdy4kZo1a0bnz5+vvl5cdQa///3vzftLliwxL02ePNnYzJ07N65d1WtubHmbu6ioiI4dO2b65Sp627ZtVL9+ferUqZO5Vs5Ht27daNOmTdS7d+8426qt+3Qq7F/84hfmmrnm8frrr1ObNm3UXGr744Fp+9T2hzHKha/2XGr7Q+zIxE6Y5lEM2D/84Q+pc+fONGzYMLMtzdenudItLS0116z5GjZXuVwJ8w1hvB3O17oXLFgQ147B6daWfTD4+cNAy5YtzVZ7165dTaXPgOab3IqLi01/hw8fdrS9//77rSpspzABsGtH8oQpWWUU1f8QFARYgvCJ2JGJWG1dtf0li1UxYJ86dcpUs3ztmO/8Xr16NbVo0cJcD7799tvpm9/8prnBjCHNAOftaoZronY2trw9PXHiRFPdFxQU0KpVq8wd4yNGjDDnwsCeOXOmqa6dbLk6f+ihh8wWfl5eHt1www3085//nP75n/856jX+AMBb7QC2TGI69aqdPNr+ABa5WNKeS21/iB2Z2AnTPIoBu0o63g6vU6dOQiXLysrMewzGyMOpnY0t98XVPAM78uDX+GtmWVlZca/H2qYz/aiw01EvcVvt5NH2h0VXJm6gq4yuyA9dXcWBLTOc8PcKYMvMkfYCoe0PYJGJG+gqoyvyQ1dXAFtGbwKwZYTVXiC0/QEsMnEDXWV0RX7o6gpgy+gNYAvpqr1AaPsDWIQCB98wEBEW+SEia8JvwwDYMnoD2EK6ai8Q2v4AbKHAAbBFhEV+iMgKYMvImrhXbInLKK69QGj7A7Bl4ga6yuiK/NDVFRW2jN6osIV01V4gtP0BLEKBgwpbRFjkh4isqLBlZEWFrflkNcBMJoozYdFF7CB2vCoQpvxAhe11FlO0w5a4jLDayaPtD2CRiRvoKqMr8kNXVwBbRm9siQvpqr1AaPsDWIQCB1viIsIiP0RkxZa4jKzYEseWuP+Rpb0IavsL4kNJED4zQVeM0f/8TxarqLBl9EaFLaSr9gKh7Q9gEQocVNgiwiI/RGRFhS0jKypsVNj+R5b2IqjtL4gPJUH4zARdMUb/8x8VtoymSXvFTWcyomsvENr+ABaZuIGuMroiP3R1xZa4jN7YEhfSVXuB0PYHsAgFDrbERYRFfojIii1xGVmxJY4tcf8jS3sR1PYXxIeSIHxmgq4Yo//5jy1xGU2xJf766wRg+x9c2ougtr8g4BmEz0zQFWP0P/8BbBlNAWwAWySytBdBbX9BwDMIn5mgK8YosgRgS1xGVmyJo8L2P7K0F0Ftf0HAMwifmaArxuh//qPCltEUFTYqbJHI0l4Etf0FAc8gfGaCrhijyBKACltGVlTYqLD9jyztRVDbXxDwDMJnJuiKMfqf/6iwZTRFhY0KWySytBdBbX9BwDMIn5mgK8YosgSgwpaRFRU2Kmz/I0t7EdT2FwQ8g/CZCbpijP7nPypsGU1RYaPCFoks7UVQ218Q8AzCZyboijGKLAGosGVkRYWNCtv/yNJeBLX9BQHPIHxmgq4Yo//5jwpbRlNU2KiwRSJLexHU9hcEPIPwue/wUfrc5z4XFyNNG14jEjdBjDETYidMY8SzxIVSBz/+ISOsdvJo+8OiKxM3Qej6vdm/pXc+PB81oEXfv4taX99AbJDa8artL4h5DNMYAWyh1AGwZYTVTh5tf5m+IMlEzeVetecSwJaZTe151PaHLXGZuMGWOLbERSJLe4HQ9hcEPIPwCWCLpIf6B68w5YdIhV1ZWUlTpkyhQ4cOUXl5Oc2aNYu6d+8eNXtHjhyhCRMmUE5ODrVr144WLlxI2dnZju2cbLndunXraOnSpabfoUOH0ujRo+nMmTM0atQoKikpofz8fFq+fDk1adLEyvbSpUs0Z84ceuaZZ2jv3r2mfzdjihwgKmwkq1cFtBcIbX9BwDMInwC21wxI3k47XrX9qVfYO3bsoJUrV9KaNWvo5MmTNHDgQDpw4EDULPTq1YtWrFhB7du3p3HjxlGfPn2osLDQsZ2Tbb9+/Yhf37NnD+Xm5lKPHj1oy5YttGjRImrdujWNHDmSNmzYQDt37qQZM2a4tuX2Tz75JF1//fX0/e9/n95++21z3m7GBGDLJGhkr9rJo+0vCLBkwhiD0BXAllkPtONV2586sKdNm0YdOnSg4cOHmxnr0qULbd++nRo2bGj+5qq7Y8eOdPz4cfP35s2bzfsNGjSIa7d161YD21jbwYMHm6p52bJlpo9JkyZRz549af78+eb15s2b07lz56Jec2P74osvVkdZixYtqoGdakyxoYkKG8nqVQHtBULbXxDwDMIngO01A1BhJ8pJkS3xsWPHUv/+/WnAgAFG+b59+9LixYvN1jcfp0+fNu/v37/f/L1r1y7zPlfYse2mT59O48ePj7MdNGiQ2a7mrWs+2K5p06Y0b94883rdunXN661ataLZs2e7tj1x4oQjsJONic9/9+7dcVE2ZMgQmYhFr1AACoRegV8883LcXeJT7u1INzSsE/pzxwkGqwBfgm3btm3cSYgAe+rUqdSpUydzXZmPbt260bZt26hRo0bm74sXL1JRUREdO3bM/M1VNL9fv379uHabNm2i3r17x9nyNvvGjRtpyZIlpo/Jkyeb6+Rz5841rzdr1ozOnz8f9ZobW75eXnVEVtipxhSrLCpsmYDXrga1/bFq2j61/QUxxiB8osLGGuBVAdUKm68lM2j5hrDi4mJTYR8+fJjKysrMdnhBQYEBKYO1ZcuWZju7a9eupip2audky33yP67S+WY13g7na9YLFiygzp0707Bhw8xWO58LV99ubbnSdwJ2ojElmhAA22uoJm+nDRdtf0GAJRPGGISuADbWAK8KqAK7oqKCRowYYe7YZmDPnDnTVMnr1683N2/xndu8hTxx4kRTCTPAV61aZe4Yd2rnZJuXl2duMGNI801nvJXO4D916pSp7Pl6OPtfvXo1caVsY/uDH/zA3CT3wgsv0G233UZf+9rX6KGHHnI8NwC7jdeY9NROGy7a/oIASyaMMQhdAWxPKZ6ykXa8avtLFqsiW+JVipeWlpqvVmVlZSWcBLZhYEceido52XLVzgcDPPLg7fA6daKvFdnYJjphN2PitqiwU+adJwPt5NH2FwRYMmGMGrpu2nWcXnz9dHVcv/jae3Sh7FJUnONJZ57SPqqRdrxq+wsM2OlPTc3tAcCWmTvt5NH2pwGW2JnJhDFq6MrAXr7lcNLAB7DTXxe041XbH4CdfoxY9wBgW0vmqoF28mj70wALgO0q1FIaXbhYHmWz5YVXaeX/XPlaqFMHAHZKWVMaaOektj8AO2UI+G8AYPuvKWBWOzQNYh4lfH5yoYy+8fh/WU0KgG0ll6OxNkC1/QHY6ceIdQ8AtrVkrhpoJ4+2PwmwpBI2E8YooSuArf8VRIl5rEn5IXrTWSohavP7ALbM7GrDRdtfpi9IMlFzuVe/59IW2HzrbYdWjangqtzqYf70O3f4OmS/x5jq5LT9ScxjTRojgJ1qtjy+D2B7FC5FM+0FQttfpi9IMlETDmDHju3qvBy6oXG96pfv6tqG/v62y0+D9Hpox6u2v0zPDwDba2akaAdgywirvUBo+8v0BUkmasIJ7Nixjhn4BQDbRQBo56S2v2RrAIDtIkC8mADYXlRL3UY7ebT9AdipY8CrhR9z+W+brvzqYNmlCtq+73WvpxPXDsB2J6Uf8+jOk8wHPTe+E40RwHajngcbANuDaC6aZHKyupDHk4m2pkF8KPHL58/X/on+9NJbnnRO1QjATqVQMAANU34A2O5ixNoKwLaWzFUD7eTR9ucXWFyJ+ZlRJozRL10B7OjIyoTYCdMYAWyblc3CFsC2EMvCVDt5tP35BRYLSX2/e9qN75qqK4ANYLuJ73RtsCWeroKW7QFsS8Fcmmsv9Nr+AGyXgeDBzI+5BLABbA+hZ90EwLaWLL0GAHZ6+iVq7ceia3Nm2v4AbJvZsbP1Yy4BbADbLuq8WQPY3nTz3ArA9ixd0oZ+LLo2Z6btD8C2mR07Wz/mEsAGsO2izps1gO1NN8+tAGzP0gHYr79Obdro/c64HyCzne2a6hPABrBtY92LPYDtRbU02gDYaYiXpKn2Qq/tDxW2TNz4pSuADWDLReiVngFsDZUjfADYMoJrA1Tbn19gsVE/E8boVdd9x96hp/9wtFrOk8Uf08fnP7WR17UtvoftTirteNX2lyxW8bUudzFibQVgW0vmqoF28mj78woWV+IlMMqEMXrVlYH90/94PkI5/gmPynTkTtgWwHYnq3a8avsDsN3Fga9WALavclZ3pp082v68giUdtTNhjF51BbCTR1YmxE6YxogKO52VLklbAFtGWO3k0fbnFSzpqJ0JY/SqK4ANYIcpPwDsdFY6AFv1bmavi246UxymZE1nHMnaZsIYvcYOgA1ghyk/AGyhVRAVtoyw2smj7c8rWNJROxPG6FVXVWB/tTP1j/k97Kwsvmbu/tCeS21/XufRvYLxlmEaI4CdzkyiwkaFLRA/2guEtr8gFl2vPjWBHRtKz/z0H+iqvByrCNOeS21/XufRSsQY4zCNEcBOZyYBbABbIH60Fwhtf0Esul59AtjYEg9TfgDYAgsud4ktcRlhtZNH259XsKSjdiaM0auuADaAHab8ALDTWelQYaPCFogf7QVC259XeKYrtZdxAtgAtpe4kYpVADtdZRO0R4UtI6x28mj7CwJmmTBGr7oC2AB2mPIDwJbhCrbEhXTVTh5tf17Bko7cmTBGr7oC2AB2mPJDBNiVlZU0ZcoUOnToEJWXl9OsWbOoe/fuUTN/5MgRmjBhAuXk5FC7du1o4cKFlJ2d7djOyZbbrVu3jpYuXWr6HTp0KI0ePZrOnDlDo0aNopKSEsrPz6fly5dTkyZNrGyd/PGYuP+33nqLLl26ZM63U6dOCaMZFXY6CEncVjt5tP15BUs6amfCGL3qCmAD2GHKDxFg79ixg1auXElr1qyhkydP0sCBA+nAgQNRM9+rVy9asWIFtW/fnsaNG0d9+vShwsJCx3ZOtv369SN+fc+ePZSbm0s9evSgLVu20KJFi6h169Y0cuRI2rBhA+3cuZNmzJjh2pbbO/n75JNPaN++fab/Y8eO0ZgxY+iPf/wjgK34M5BeF13ADIuu19gBsBE7tR7Y06ZNow4dOtDw4cPNbHfp0oW2b99ODRs2NH9z1d2xY0c6fvy4+Xvz5s3m/QYNGsS127p1qwForO3gwYNN1bxs2TLTx6RJk6hnz540f/5883rz5s3p3LlzUa+5sT148KDjuV133XV0/fXXm+qdD/5//jDClb7TgQo7HUyiwsbvYfsfP14WXgAbwPYSN+lGbyKfIhX22LFjqX///jRgwABz3n379qXFixebrW8+Tp8+bd7fv3+/+XvXrl3mfa6wY9tNnz6dxo8fH2c7aNAg2rt3L82ZM8f0wXZNmzalefPmmdfr1q1rXm/VqhXNnj3btS1X0U7nxhX7T37yE1q7di0999xz9N3vfpfeffdduvbaawHsdKPTor128mj781oJWkgYZ5oJY/SqK4ANYIcpP0SAPXXqVHN9l68r89GtWzfatm0bNWrUyPx98eJFKioqMlvLfHAVze/Xr18/rt2mTZuod+/ecba8zb5x40ZasmSJ6WPy5MnmOvncuXPN682aNaPz589HvebGlrfunc6Nt8KfeuopsxPwpS99iX7+85/T0aNHiR8dyB84du/eHRfZQ4YMSWcdRVsoAAUCVuDlN8/Q0t+9GnEWcj+vGTvUOQ/8HeXlZgesANwHoQDfM9W2bds41yLA5mvJDFq+Iay4uNhU2IcPH6aysjKzHV5QUGBAymBt2bKl2c7u2rWrqYqd2jnZcp/8j6t0vlmNt8P5mvWCBQuoc+fONGzYMLPVzufC1bdbW670nfzddttt9Morr5h++Ka0Rx55xPSd6MCWuEyYa3/a1fbntRJMR+1MGKNXXVFho8IOU36IALuiooJGjBhh7thmYM+cOdNUyevXrye+IY3v3OaKdOLEiaYSZoCvWrXKXA92audkm5eXZ24AY0jzTWe8jc3gP3XqlKns+Xo4+1+9ejW1aNHCytbJH1frd999tznfDz74wHwY4ev0AHabdFhh3VY7ebT9eQWLtZARDTJhjF51BbAB7DDlhwiwq6a4tLTUfLUq2S/OsA0DO/JI1M7Jlqt2PhjgkQcDtk6dOlGv2dhyQyd/Z8+eNVv3qQ5U2KkU8va+dvJo+/MKFm9qXm6VCWP0Ok4AG8AOU36IAjudRaSmtwWwZWZQO3m0/XkFSzpqZ8IYveoKYAPYYcoPADudlS5JWwBbRljt5NH25xUs6aidCWP0qiuADWCHKT8A7HRWOgAbP/4hED/aC4S2P6/wTFdqL+MEsAFsL3EjFasAdrrKJmiPCltGWO3k0fYXBMwyYYxedQWwAeww5QeALcMV/PiHkK7ayaPtzytY0pE7E8boVVcAG8AOU34A2OmsdNgSx5a4QPxoLxDa/rzCM12pvYwTwAawvcSNVKwC2Okqiy1xIQWdu9VOHm1/QcAsE8boVVcAG8AOU34A2EK4wTVsGWG1k0fbn1ewpKN2JozRq64ANoAdpvwAsNNZ6bAlji1xgfjRXiC0/XmFZ7pSexkngA1ge4kbqVgFsNNVFlviQgpiS1xL2DAtSJJj9jJOABvA9hI36cZxIp8AdrrKAthCCgLYWsKGaUGSHLPbcR55/XT1aRx78wNa9bsXI05L79e6nvnpP9BVeTlWkrgdo1WnSYy1/QWxOxOmMQLYfkVuTD+4hi0jrHbyaPvL9AVJJmou9+p2Lr85YxOVnLuQ4FQA7Ehh3Grq57xq+9T2lyxWAWw/IymiLwBbRljt5NH2ZwMWvxTOhDHa6Apgu4+sTIidMI0RwHYfm1aWALaVXK6NtZNH258NWFyLlsIwE8ZooyuA7T6yMiF2wjRGANt9bFpZAthWcrk21k4ebX82YHEtGoCNLXG/giWmH+SHjLC46UxG14S9AtgygmsvENr+AGyZuLHRFRW2+zlAfrjXysYSwLZRywdbANsHER260F4gtP3ZgMUvhTNhjDa6AtjuIysTYidMY8SWuPvYtLIEsK3kcm2snTza/mzA4lo0bInXqC3xSqqkLMqizu2vp+wsviudqG7+VTTpGz1STrl2vGr7y/T8ALBTpoA3AwDbm26pWmkvENr+Mn1BSjX/6bzvdi6DrrCrgB051jtubQVgfyaI23lMJ1Yi22r7S7YGANh+zWpMPwC2jLDayaPtD8CWiRsbXQFs93OA/HCvlY0lrmHbqOWDLYDtg4gOXWgvENr+bMDil8KZMEYbXQFs95GVCbETpjGiwnYfm1aWALaVXK6NtZNH258NWFyLlsIwE8ZooyuA7T6yMiF2wjRGANt9bFpZAthWcrk21k4ebX82YHEtGoBtFHA7lwC2+8hyq6n7HlNbavvU9pcsVgHs1PHhyQLA9iRbykbayaPtzwYsKcVyaZAJY7TRFcB2GTgWH4Lc95jaUjtetf0B2KljwHcLANt3Sa2qJL+8hylZ/RpTbD+ZMEYAWyZ6MiF2wjRGVNgycUwAtoyw2smj7c8GLH4pnAljtNEVFbb7yMqE2AnTGAFs97FpZQlgW8nl2lg7ebT92YDFtWgpDDNhjDa6AtjuIysTYidMYwSw3cemlSWAbSWXa2Pt5NH2ZwMW16IB2FaXUwBs95GF/HCvlY1lIl0BbBsVLWwBbAuxLEy1FwhtfwC2RTBYmrqdSwDbvbBuNXXfY2pLbZ/a/pKtASLArqyspClTptChQ4eovLycZs2aRd27d4+aiSNHjtCECRMoJyeH2rVrRwsXLqTs7GzHdk623G7dunW0dOlS0+/QoUNp9OjRdObMGRo1ahSVlJRQfn4+LV++nJo0aWJl6+Tv0qVLpt8LFy7Q2bNn6Xvf+x4NHjw4YXQB2KkTz4uFdvJo+wOwvUSFuzZu5xLAdqdnELEahE+3ceNetdSWqhX2jh07aOXKlbRmzRo6efIkDRw4kA4cOBB1lr169aIVK1ZQ+/btady4cdSnTx8qLCx0bOdk269fP+LX9+zZQ7m5udSjRw/asmULLVq0iFq3bk0jR46kDRs20M6dO2nGjBmubbm9kz8G9nPPPUdPPvkkffzxx1RUVERvvPEGgN2mTero89FCO3m0/WX6guRjqMR1lWguyy9VRNl+e9ZvqeTchQSnwj/GUSl5moRniSeXVzsntf2pV9jTpk2jDh060PDhw43yXbp0oe3bt1PDhg3N31x1d+zYkY4fP27+3rx5s3m/QYMGce22bt1qABpry9UtV9jLli0zfUyaNIl69uxJ8+fPN683b96czp07F/WaG9uDBw86nhuP5fHHH6f//u//pmPHjtH48ePNh4FEBypsmTVNO3m0/QHYMnGTTNf/+N2LtPGPR106BrAjhUJ+uAwbSzPVCnvs2LHUv39/GjBggDnNvn370uLFi83WNx+nT5827+/fv9/8vWvXLvM+V9ix7aZPn27gGGs7aNAg2rt3L82ZM8f0wXZNmzalefPmmdfr1q1rXm/VqhXNnj3bte2+ffscz413DO677z6z1X7q1Cnj7+tf/3r1+e/evTtuSoYMGWI5TTCHAlBAW4Hf7nubdhx+16XbYID9d20b0T/20d3NcikIzAQU4MvKbdu2jetZ5Br21KlTqVOnTua6Mh/dunWjbdu2UaNGjczfFy9eNFvKXKnywVU0v1+/fv24dps2baLevXvH2fI2+8aNG2nJkiWmj8mTJ5vr5HPnzjWvN2vWjM6fPx/1mhtb3rp3Ojfeuufr44899pg5/1tuuYUOHz5MBQUFjtOFClsgigN4shIqiNoxjzyKRHOJCtv7HCM/vGuXrKVqhc3Xkhm0fENYcXGxqbAZbmVlZWY7nCHHcGWwtmzZ0mxnd+3a1VTFTu2cbLlP/seVN9+sxtvhfM16wYIF1LlzZxo2bJjZaudz4WrYrS1X+k7+Xn31Vbrmmmvo4YcfpqpPP//3f/9H9erVA7BlYtaxV+0FQttfMrBIyZwJYwSwZaInE2InTGMUqbArKipoxIgRpiJlYM+cOdNUyevXrye+IY3v3OYt5IkTJ5pKmAG+atUqc8e4Uzsn27y8PHODGUOabzrjrXQGP29Xc2XP18PZ/+rVq6lFixZWtk7+PvzwQ9PvjTfeSO+++y7dfvvt9OijjybMAlTYtWOBCFOyyijq/kcx/PQfJl1RYXuf2TDNo/dRJG8ZpjGKALtq+KWlpearVVlZfN3H+WCb2G3lRO2cbLlq54MBHnnwdnidOnWiXrOx5YZO/vgOcT5f/pCQ7ACwZdJHO3m0/aHClokbVNgyuiI/dHUVBbbMUGpGrwC2zDxpLxDa/gBsmbgBsGV0RX7o6gpgy+iNH/8Q0lV7gdD2B2ALBQ5uOhMRFvkhImvCGyQBbBm9AWwhXbUXCG1/ALZQ4ADYIsIiP0RkBbBlZE3cK7bEZRTXXiC0/QHYMnGDLXEZXZEfurqiwpbRGxW2kK7aC4S2PwBbKHBQYYsIi/wQkRUVtoysqLDb4FnivoeW9iKo7S+IDyWosH0PU9NhJsROmMaIClsmjlFhC+mqnTza/oJYBDNhjAC2TEJmQuyEaYwAtkwcA9hCumonj7Y/AFsocLAlLiIs8kNEVmyJy8iKLXFsifsfWdqLoLa/ID6UoML2P07DNo8yIwzXtj8qbKFZxl3iMsJqw0XbXxCLYCaMEcCuHfmY6fkBYMvEMbbEhXTVhou2v0xfkITCJukNUniWuHfVkR/etUvWMpGuALaM3gC2kK7aC4S2PwBbKHBwDVtEWOSHiKy4hi0jK65h4xq2/5GlvQhq+wviQwm2xP2P07DNo8wIcQ1bStdQ9Ytr2DLToQ0XbX9BLIKZMEYAu3bkY6bnB7ZInzrMAAAgAElEQVTEZeIYW+JCumrDRdtfpi9IQmGDa9hCwiI/ZITFNWwZXRP2igpbRnDtBULbH4AtEzeRup58/2N65e0Pqh09f+Qt2nf0HZeOs4io0qWtN7NKqqQsYj9VRyXd9LnG1L/H31S/0qBuPnVud32cA+141faX6fmBCttbTqVsBWCnlMiTgfYCoe0v0xckT0HhslHVXDKwx8zd6rJVrFkQwI4/1Z9+5w4A2+MM2jYL0xoAYNvOnkt7ANulUJZm2smj7Q/AtgwIC3MA20Isl6bID5dCWZphS9xSsHTNAex0FXRur71AaPsDsGXiJlJXVNj+aYz88E/LyJ4AbBldE/YKYMsIrr1AaPsDsGXiBsCW0RX5oasrtsRl9MZd4kK6ai8Q2v4AbKHAiXhwCips/zRGfvinJSpsGS1d9YoK25VM1kbaC4S2PwDbOiRcN8A1bNdSuTZEfriWysoQW+JWcqVvDGCnr6FTD9oLhLY/AFsmbrAlLqMr8kNXV2yJy+iNLXEhXbUXCG1/ALZQ4GBLXERY5IeIrHiWuIysiXtFhS2juPYCoe0PwJaJG1TYMroiP3R1RYUtozcqbCFdtRcIbX8AtlDgoMIWERb5ISIrKmwZWVFh49e6/I8s7UVQ218QH0pQYfsfp0HPo8yI4nsNU36gwhaadWyJywirnTza/oJYBDNhjAB27cjHTM8PEWBXVlbSlClT6NChQ1ReXk6zZs2i7t27R0XMkSNHaMKECZSTk0Pt2rWjhQsXUnZ2tmM7J1tut27dOlq6dKnpd+jQoTR69Gg6c+YMjRo1ikpKSig/P5+WL19OTZo0sbJ18rd+/Xr61a9+VT2Gt956iw4cOEB169Z1zAQAu3YsEJkAs0wYI4BdO/IRwGa6+nzs2LGDVq5cSWvWrKGTJ0/SwIEDDdwij169etGKFSuoffv2NG7cOOrTpw8VFhY6tnOy7devH/Hre/bsodzcXOrRowdt2bKFFi1aRK1bt6aRI0fShg0baOfOnTRjxgzXttzeyd+9995bffr79++nJ554wpxrogPA9jmoPutOGy7a/jJ9QZKJmsu94nvY/quL/PBf02RrgEiFPW3aNOrQoQMNHz7cjKZLly60fft2atiwofmbq+6OHTvS8ePHzd+bN2827zdo0CCu3datWw1AY20HDx5squZly5aZPiZNmkQ9e/ak+fPnm9ebN29O586di3rNje3Bgwcdz413APjgzzd33nknPfXUU3TdddcB2G3ayERsgl61FwhtfwC2XDgB2P5ri/zwX1N1YI8dO5b69+9PAwYMMKPp27cvLV682Gx983H69GnzPleqfOzatcu8zxV2bLvp06fT+PHj42wHDRpEe/fupTlz5pg+2K5p06Y0b94883rVVnWrVq1o9uzZrm337dvneG5r1641fjZt2mT64qq96uDz3717d9zMDRkyRGY20SsUgAKeFTh95gLN2HDEY/tw/Lzmg/e0p5taFHocA5qFXQEuDNu2bRt3miIV9tSpU6lTp07mujIf3bp1o23btlGjRo3M3xcvXqSioiI6duyY+ZuraH6/fv36ce0YkL17946z5W32jRs30pIlS0wfkydPNtfJ586da15v1qwZnT9/Puo1N7a8de90brxVzgdvxfN2OO8gJDuwJS6TEtqf6LX9sWraPrX9BTHGSJ94lrh/uZkJsROmMYoAm68lM2j5hrDi4mJTYR8+fJjKysrMdnhBQYEBKYO1ZcuWZju7a9eupip2audky33yP67S+WY13g7na9YLFiygzp0707Bhw8xWO58LV99ubbnSd/J3//330yeffEK33norvfbaaykjHsBOKZEnA+3k0fYXBMwyYYwAtqd0S9koE2InTGMUAXZFRQWNGDHC3LHNwJ45c6apkvlOa74hje/c5i3kiRMnmkqYAb5q1Spzx7hTOyfbvLw8c4MZQ5pvOuOtdAb/qVOnTGXP18PZ/+rVq6lFixZWton8vfzyyzRmzBh6/vnnUwYygJ1SIk8G2smj7Q/A9hQWrhrVnmvYlTTy7ztTuxaX7wni4+bWl++n0Y5XbX+ZPkYRYFcFUWlpqflqVVYWX/dxPtiGgR15JGrnZMtVOx8M8MiDt8Pr1KkT9ZqNLTd08udqZSDCk87cCmVpp71AaPvL9AXJMhyszGsPsKOH3biwDv3qka8C2FbR4N44TGuAKLDdS1L7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sc3AnjlzpqmS169fT3xDGt+5zVvIEydONJUwA3zVqlXmjnGndk62vOXMN4gxpPmmM95KZ/CfOnXKVPZ8PZz9r169mlq0aGFla3NuAPYUr3ngqZ128mj7A1g8hYWrRtpzqe0PseMqDKyNwjSPIsCuUqS0tNR8tarqzj0npdiGgR15JGrnZFt1nZgBHnnwdnidOtEPjbex5b5szg1b4tZ54KmBdvJo+8Oi6yksXDXSnkttf4gdV2FgbRSmeRQFtrUytagB34h2++23q45I26e2PxZT26e2P4xRLmW051LbH2JHJnbCNI8Atswco1coAAWgABSAAr4qAGD7Kic6gwJQAApAASggowCALaMreoUCUAAKQAEo4KsCALavcqbu7KWXXjLPUK863n//ffPd8TvvvDN1YxcWL774orn7nm+Yu+2226ofLOOiqScTfnoc3/Vfr1490/6BBx6ofsKdpw4tGvEDevgbAI8++qhFK3vTCxcumEfd8gN/+Ol5jzzyiHncruTBj9R97LHH6Oqrrzba8mN+Y2/O9Nv/0aNH6cEHHzTP4q96SqHfPhI9699vP5H9sc/vf//75jkP/M0S6eOdd96h7373u+aX6T799FPzUKibbrpJ1C0/E4J/s+Gqq64yD6Dib8dIxwsPiHOD166f/exn5vHSkgdr+pe//MV8K4gPfqolP+9D8tBYT9euXUu/+tWvqofx1ltvmUd5Vz38K3J8ALbkbKfo++OPPzYLPycb303vx1H1fXR+NCsHNP8gSuzd8n74qeqDoXLLLbfQfffd52e3Kfv6zW9+Yx6iovGh5Ne//rV5NC6Dmr82yDcTvvbaaynPMR0D/poifxjieWTY8LMFvv3tb6fTZdK2/DAj/rDFTwvk5/uPGTNGxNePfvSjuGf9S0OU9WNgPvfcc+arpdLH448/bkBy7733EscOP1uCf1tB8rjrrrvoqaeeMl9n5Q9dvA5861vfknRp+v7BD35AL7zwgvnQXPVkSymn/IjqZ555xvyYk9ahvZ7yc0WeeOKJhPECYGvNvIMfroQ50fifH8fbb79tqiN+0hxXS/fcc4+pQCWPhx56iP72b//WfCho27ateaqd9PHBBx+YB+PwI2t5Ea56PK20X+6fP/nyDsnzzz+v4c744GcT3H///eZZA9IHP2SocePGYsD+0pe+FPesf65ipA++05cXQg1g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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"sampler $ plot . histogramToList . histogram 100 <$> replicateM 100000 (runWeightedT $ posteriorPredictive model observations2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"d3c062c3-e5f8-4a72-b631-0635a6730b25\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Regression\\n\",\n    \"\\n\",\n    \"The classical example of linear regression:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"id\": \"080d34a0-3324-4bf2-bb25-72b06db1f342\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"range :: [Double]\\n\",\n    \"range = [-10,-9.9..10] \\n\",\n    \"\\n\",\n    \"\\n\",\n    \"regression :: MonadDistribution m => Bayesian m (Double, Double, Double) [Double]\\n\",\n    \"regression = Bayesian {\\n\",\n    \"    prior = do \\n\",\n    \"            slope <- normal 0 2\\n\",\n    \"            intercept <- normal 0 2\\n\",\n    \"            noise <- gamma 4 4\\n\",\n    \"            return (slope, intercept, noise),\\n\",\n    \"    \\n\",\n    \"    generative = \\\\(slope, intercept, noise) -> do\\n\",\n    \"            forM range \\\\x -> normal (x*slope + intercept) (sqrt noise),\\n\",\n    \"            \\n\",\n    \"    likelihood = \\\\(slope, intercept, noise) ys -> Prelude.sum [normalPdf (x*slope + intercept) (sqrt noise) y | (x,y) <- zip range ys] \\n\",\n    \"                \\n\",\n    \"    }\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"da26e20a-6112-408e-90c3-9af694e9bfb6\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Prior predictive\\n\",\n    \"\\n\",\n    \"`prior` distribution has three independent parameters. `generative` combines them into a new distribution.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"id\": \"0621fc17-5c64-409b-9d08-d52b067b8dcd\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -10,\n          \"Y\": -24.696066745861014\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.9,\n          \"Y\": -21.381259313040246\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.8,\n          \"Y\": -32.73005432786171\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.700000000000001,\n          \"Y\": -22.657276541487107\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.600000000000001,\n          \"Y\": -30.19731332469662\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.500000000000002,\n          \"Y\": -26.94191144606625\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.400000000000002,\n          \"Y\": -29.621782489998168\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.300000000000002,\n          \"Y\": -20.473278582744076\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.200000000000003,\n          \"Y\": -20.75628633100779\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.100000000000003,\n          \"Y\": -26.689333441022768\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.000000000000004,\n          \"Y\": -18.2370766625895\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.900000000000004,\n          \"Y\": -20.800840383026074\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.800000000000004,\n          \"Y\": -22.59667318866466\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.700000000000005,\n          \"Y\": -20.657903522473575\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.600000000000005,\n          \"Y\": -27.590236656692873\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.500000000000005,\n          \"Y\": -20.060901971997946\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.400000000000006,\n          \"Y\": -20.363465003267542\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.300000000000006,\n          \"Y\": -17.976596844148816\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.200000000000006,\n          \"Y\": -25.936642514956873\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.100000000000007,\n          \"Y\": -20.84529549153013\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.000000000000007,\n          \"Y\": -22.554423352626788\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.9000000000000075,\n          \"Y\": -21.21360523641598\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.800000000000008,\n          \"Y\": -14.3652122284511\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.700000000000008,\n          \"Y\": -22.764237189775677\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.6000000000000085,\n          \"Y\": -24.104606694350913\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.500000000000009,\n          \"Y\": -16.19150562230182\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.400000000000009,\n          \"Y\": -17.189187562495917\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.30000000000001,\n          \"Y\": -13.36509411590376\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.20000000000001,\n          \"Y\": -11.749890163374976\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.10000000000001,\n          \"Y\": -7.8401043738294725\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.000000000000011,\n          \"Y\": -11.80097376182295\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.900000000000011,\n          \"Y\": -16.54381413023416\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.800000000000011,\n          \"Y\": -9.447631219614676\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.700000000000012,\n          \"Y\": -17.972692486597523\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.600000000000012,\n          \"Y\": -7.215547942625641\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.500000000000012,\n          \"Y\": -12.342877144768519\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.400000000000013,\n          \"Y\": -14.417874954220588\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.300000000000013,\n          \"Y\": -15.062932481636377\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.2000000000000135,\n          \"Y\": -14.008502402456015\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.100000000000014,\n          \"Y\": -21.609612064222155\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.000000000000014,\n          \"Y\": -3.382078735201878\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.900000000000015,\n          \"Y\": -13.116977497216707\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.800000000000015,\n          \"Y\": -17.478757632067765\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.700000000000015,\n          \"Y\": -16.27212080976474\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.600000000000016,\n          \"Y\": -10.03953346938355\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.500000000000016,\n          \"Y\": -9.12915901717275\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.400000000000016,\n          \"Y\": -11.202335781461699\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.300000000000017,\n          \"Y\": -12.770601823882581\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.200000000000017,\n          \"Y\": -16.533469530786192\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.100000000000017,\n          \"Y\": -20.400193136182107\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.000000000000018,\n          \"Y\": -9.472177577814106\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.900000000000018,\n          \"Y\": -18.19037863545404\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.8000000000000185,\n          \"Y\": -11.436494344462007\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.700000000000019,\n          \"Y\": -8.767450710978649\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.600000000000019,\n          \"Y\": -2.26356720097605\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.5000000000000195,\n          \"Y\": -12.186952681793706\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.40000000000002,\n          \"Y\": -9.830370794113218\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.30000000000002,\n          \"Y\": -0.9954506297705308\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.200000000000021,\n          \"Y\": -11.964060798738288\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.100000000000021,\n          \"Y\": -1.5320531197877703\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.000000000000021,\n          \"Y\": -10.91854471730393\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.9000000000000217,\n          \"Y\": -12.18235042465571\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.800000000000022,\n          \"Y\": -6.377524604385539\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.7000000000000224,\n          \"Y\": -10.706161682039268\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.6000000000000227,\n          \"Y\": -8.20315270083335\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.500000000000023,\n          \"Y\": -7.2747642197247435\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.4000000000000234,\n          \"Y\": -14.1891288953255\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.300000000000024,\n          \"Y\": -14.733617972023097\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.200000000000024,\n          \"Y\": -4.517513125835107\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.1000000000000245,\n          \"Y\": -8.233892536840202\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.000000000000025,\n          \"Y\": -0.08440505904882123\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.9000000000000252,\n          \"Y\": -9.383294890693119\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.8000000000000256,\n          \"Y\": -10.443429838168191\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.700000000000026,\n          \"Y\": 0.9517159555199584\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.6000000000000263,\n          \"Y\": -0.03889378059487658\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.5000000000000266,\n          \"Y\": -9.590716305496027\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.400000000000027,\n          \"Y\": -5.24144084714031\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.3000000000000274,\n          \"Y\": -3.416300048010222\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.2000000000000277,\n          \"Y\": -5.921966234116257\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.100000000000028,\n          \"Y\": -1.986713963352214\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.0000000000000284,\n          \"Y\": -7.1783973322317465\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.9000000000000288,\n          \"Y\": -4.421293274590913\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.8000000000000291,\n          \"Y\": -1.3198522416368355\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.7000000000000295,\n          \"Y\": -5.13330862095895\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.6000000000000298,\n          \"Y\": -8.304718415284588\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.5000000000000302,\n          \"Y\": 2.4322583648929665\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.4000000000000306,\n          \"Y\": -0.9075133454733146\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.300000000000031,\n          \"Y\": -3.4210367564944795\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.2000000000000313,\n          \"Y\": -6.0185764726709134\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.1000000000000316,\n          \"Y\": -2.653576919771158\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.000000000000032,\n          \"Y\": -3.971966134615479\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.9000000000000323,\n          \"Y\": 1.3931793752460457\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.8000000000000327,\n          \"Y\": -1.6720322703456505\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.700000000000033,\n          \"Y\": 5.464366619345535\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.6000000000000334,\n          \"Y\": -1.9240571018418877\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.5000000000000338,\n          \"Y\": -8.93628410392278\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.4000000000000341,\n          \"Y\": -5.785500318757535\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.30000000000003446,\n          \"Y\": -6.348760671441806\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.20000000000003482,\n          \"Y\": 3.534102095700111\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.10000000000003517,\n          \"Y\": 2.0474856290031456\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.552713678800501e-14,\n          \"Y\": 5.8790228189787035\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.09999999999996412,\n          \"Y\": -2.2907430777160593\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.19999999999996376,\n          \"Y\": -5.668596585592506\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.2999999999999634,\n          \"Y\": -0.15608673045361787\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.39999999999996305,\n          \"Y\": 2.535293077355314\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.4999999999999627,\n          \"Y\": 4.969692427138009\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.5999999999999623,\n          \"Y\": -1.448339308781924\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.699999999999962,\n          \"Y\": -0.31843594750021853\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.7999999999999616,\n          \"Y\": 1.230794222807322\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.8999999999999613,\n          \"Y\": 2.775401943795419\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.9999999999999609,\n          \"Y\": 2.9746625486363563\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.0999999999999606,\n          \"Y\": 4.7517860788276165\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.1999999999999602,\n          \"Y\": -7.938683953155905\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.2999999999999599,\n          \"Y\": 0.9392067152273382\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.3999999999999595,\n          \"Y\": -1.9112693986647988\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.4999999999999591,\n          \"Y\": 7.995758513407569\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.5999999999999588,\n          \"Y\": 2.9420539907849754\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.6999999999999584,\n          \"Y\": -0.5963301351835262\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.799999999999958,\n          \"Y\": 0.7722775033874285\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.8999999999999577,\n          \"Y\": 2.160919953802293\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.9999999999999574,\n          \"Y\": 6.658270824728535\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.099999999999957,\n          \"Y\": 2.4788217207966485\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.1999999999999567,\n          \"Y\": 0.44219554899480995\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.2999999999999563,\n          \"Y\": 2.1636696172205445\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.399999999999956,\n          \"Y\": 11.088227243765683\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.4999999999999556,\n          \"Y\": -1.6594851528379229\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.5999999999999552,\n          \"Y\": 3.664345812260441\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.699999999999955,\n          \"Y\": 1.6410871024421039\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.7999999999999545,\n          \"Y\": 6.745395209778488\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.899999999999954,\n          \"Y\": 2.081611836962877\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.999999999999954,\n          \"Y\": 4.716006524790677\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.0999999999999535,\n          \"Y\": 7.817608997573727\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.199999999999953,\n          \"Y\": 6.9502956424929065\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.2999999999999527,\n          \"Y\": 14.183825887851718\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.3999999999999524,\n          \"Y\": 6.723951106137135\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.499999999999952,\n          \"Y\": 4.598697838940964\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.5999999999999517,\n          \"Y\": 4.184679977051012\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.6999999999999513,\n          \"Y\": 4.834379380539673\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.799999999999951,\n          \"Y\": 6.934437085966483\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.8999999999999506,\n          \"Y\": 11.95622948079815\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.9999999999999503,\n          \"Y\": 8.924504221156031\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.09999999999995,\n          \"Y\": 7.318822344359841\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.1999999999999496,\n          \"Y\": 8.980768639999756\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.299999999999949,\n          \"Y\": 1.754130997966758\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.399999999999949,\n          \"Y\": 14.077113306709183\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.4999999999999485,\n          \"Y\": 5.229970296582034\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.599999999999948,\n          \"Y\": 15.827885593655012\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.699999999999948,\n          \"Y\": 12.973975802909859\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.799999999999947,\n          \"Y\": 6.700514010279003\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.899999999999947,\n          \"Y\": 16.76667139509806\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.999999999999947,\n          \"Y\": 8.435014802876584\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.099999999999946,\n          \"Y\": 10.07976788408538\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.199999999999946,\n          \"Y\": 17.885265342077933\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.299999999999946,\n          \"Y\": 11.349302586110902\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.399999999999945,\n          \"Y\": 11.114806895058242\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.499999999999945,\n          \"Y\": 8.667313872580895\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.599999999999945,\n          \"Y\": 18.349935446393147\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.699999999999944,\n          \"Y\": 10.657730791650907\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.799999999999944,\n          \"Y\": 8.820069761153336\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.8999999999999435,\n          \"Y\": 8.800472286449592\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.999999999999943,\n          \"Y\": 7.37552442281961\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.099999999999945,\n          \"Y\": 16.531044018723648\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.1999999999999424,\n          \"Y\": 12.844810815162809\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.29999999999994,\n          \"Y\": 16.98437916984567\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.399999999999942,\n          \"Y\": 16.00921557272676\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.499999999999943,\n          \"Y\": 17.04351123412836\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.599999999999941,\n          \"Y\": 10.099819885019928\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.699999999999939,\n          \"Y\": 13.311530286628537\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.79999999999994,\n          \"Y\": 13.98160192264979\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.899999999999942,\n          \"Y\": 18.482932402259515\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.99999999999994,\n          \"Y\": 15.576864220558743\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.0999999999999375,\n          \"Y\": 16.129895721765994\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.199999999999939,\n          \"Y\": 14.764662452334697\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.29999999999994,\n          \"Y\": 10.884328321195783\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.399999999999938,\n          \"Y\": 14.830012347745212\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.499999999999936,\n          \"Y\": 17.121410098573666\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.5999999999999375,\n          \"Y\": 15.156932707079505\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.699999999999939,\n          \"Y\": 16.22971683198343\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.799999999999937,\n          \"Y\": 18.46429831454368\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.899999999999935,\n          \"Y\": 13.684335970515946\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.999999999999936,\n          \"Y\": 17.45623113177597\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.099999999999937,\n          \"Y\": 18.052853709956302\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.199999999999935,\n          \"Y\": 20.9522265576577\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.299999999999933,\n          \"Y\": 17.792706420018572\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.399999999999935,\n          \"Y\": 12.693025163426196\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.499999999999936,\n          \"Y\": 18.608483628616618\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.599999999999934,\n          \"Y\": 22.533013844212288\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.699999999999932,\n          \"Y\": 19.063530901564054\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.799999999999933,\n          \"Y\": 14.10848168296044\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.899999999999935,\n          \"Y\": 17.273137735808355\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.999999999999932,\n          \"Y\": 18.494979089256088\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.09999999999993,\n          \"Y\": 19.79060185819667\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.199999999999932,\n          \"Y\": 20.264105066531886\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.299999999999933,\n          \"Y\": 22.546130321808807\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.399999999999931,\n          \"Y\": 16.72624887015287\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.499999999999929,\n          \"Y\": 25.425511145903716\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.59999999999993,\n          \"Y\": 19.27111904716608\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.699999999999932,\n          \"Y\": 16.306940960065084\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.79999999999993,\n          \"Y\": 20.457019593367335\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.899999999999928,\n          \"Y\": 20.01341122289898\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.999999999999929,\n          \"Y\": 25.114459749239604\n         }\n        ]\n       },\n       \"encoding\": {\n        \"color\": {\n         \"field\": \"Outlier\"\n        },\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"circle\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"ys <- sampler $ priorPredictive regression\\n\",\n    \"\\n\",\n    \"plot (fmap (second (T.pack . show)) (zip (zip range ys) (Prelude.repeat \\\"N/A\\\")))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"a9c0dd92-a771-4e98-a33e-327c788b4599\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Posterior predictive\\n\",\n    \"\\n\",\n    \"`posterior` distribution is computed base on the observed samples. Let's see what happens if the model sees samples of the same value only.\\n\",\n    \"\\n\",\n    \"To explore the space of possible parameters we use Monte Carlo Markov Chain inference algorithm.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"id\": \"693d83bf-14c9-4e1b-870e-a15b8f8edc1d\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": []\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"import Control.Monad.Bayes.Inference.MCMC\\n\",\n    \"\\n\",\n    \"observations = [replicate 100 1]\\n\",\n    \"\\n\",\n    \"ys <- sampleIOfixed $ mcmc MCMCConfig {numMCMCSteps = 5000, numBurnIn = 300, proposal = SingleSiteMH} \\n\",\n    \"    $ posteriorPredictive regression observations\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"22fa414e-49ef-4f72-b684-23ed0c24a05e\",\n   \"metadata\": {},\n   \"source\": [\n    \"`ys` is a **list of lists** containing values generated for arguments from `range`. Let's see how an example of generated samples look like:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"id\": \"a72a7dc0-209c-449c-9ffb-617328a7ffc5\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -10,\n          \"Y\": -5.17625056645207\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.9,\n          \"Y\": -6.74198785888861\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.8,\n          \"Y\": -4.46996514840461\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.700000000000001,\n          \"Y\": -0.9145123000823716\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.600000000000001,\n          \"Y\": -6.6376245868525885\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.500000000000002,\n          \"Y\": -1.1877157127876954\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.400000000000002,\n          \"Y\": -7.083563289259863\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.300000000000002,\n          \"Y\": -7.59464378610835\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.200000000000003,\n          \"Y\": -8.8143641113504\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.100000000000003,\n          \"Y\": -7.189303776465281\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.000000000000004,\n          \"Y\": -6.457479489578328\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.900000000000004,\n          \"Y\": -13.743197427077128\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.800000000000004,\n          \"Y\": 0.2498447171475906\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.700000000000005,\n          \"Y\": -9.221283755583197\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.600000000000005,\n          \"Y\": -1.7419194473527906\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.500000000000005,\n          \"Y\": -2.7199972063866724\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.400000000000006,\n          \"Y\": 0.7705292360894669\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.300000000000006,\n          \"Y\": -4.6060190698938\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.200000000000006,\n          \"Y\": -4.581555676499136\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.100000000000007,\n          \"Y\": -5.722579265373266\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.000000000000007,\n          \"Y\": -8.2120363115473\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.9000000000000075,\n          \"Y\": -3.1004974386468875\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.800000000000008,\n          \"Y\": -1.3487799605604054\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.700000000000008,\n          \"Y\": -3.6654498865503182\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.6000000000000085,\n          \"Y\": -4.9904538923435515\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.500000000000009,\n          \"Y\": -6.854763496260949\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.400000000000009,\n          \"Y\": -4.323421532043624\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.30000000000001,\n          \"Y\": -2.03483996899133\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.20000000000001,\n          \"Y\": -3.17169458392855\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.10000000000001,\n          \"Y\": -6.922057391997367\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.000000000000011,\n          \"Y\": -10.032064082188356\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.900000000000011,\n          \"Y\": -4.046272839718915\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.800000000000011,\n          \"Y\": 2.7473076505967553\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.700000000000012,\n          \"Y\": -7.852385118535792\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.600000000000012,\n          \"Y\": 0.14172754917420116\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.500000000000012,\n          \"Y\": -4.32198723067437\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.400000000000013,\n          \"Y\": -4.953825058020628\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.300000000000013,\n          \"Y\": -2.7877595733046876\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.2000000000000135,\n          \"Y\": -10.027152586262392\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.100000000000014,\n          \"Y\": -4.477758517334158\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.000000000000014,\n          \"Y\": -4.9159878914108965\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.900000000000015,\n          \"Y\": -7.1469770912052635\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.800000000000015,\n          \"Y\": 2.112997024380019\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.700000000000015,\n          \"Y\": -1.8571837510706082\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.600000000000016,\n          \"Y\": -0.22827753672871287\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.500000000000016,\n          \"Y\": -3.626386684194655\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.400000000000016,\n          \"Y\": 0.6090869856742809\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.300000000000017,\n          \"Y\": -2.7227553911429068\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.200000000000017,\n          \"Y\": -4.0874670462028\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.100000000000017,\n          \"Y\": -6.247248288824204\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.000000000000018,\n          \"Y\": 2.236653807265935\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.900000000000018,\n          \"Y\": 2.9092838062669824\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.8000000000000185,\n          \"Y\": 1.2021304587300752\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.700000000000019,\n          \"Y\": 2.5975153753961857\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.600000000000019,\n          \"Y\": 2.461936898176616\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.5000000000000195,\n          \"Y\": -0.7845340844908039\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.40000000000002,\n          \"Y\": -0.7670671298779603\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.30000000000002,\n          \"Y\": -0.15192989948132352\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.200000000000021,\n          \"Y\": 1.7064879395086088\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.100000000000021,\n          \"Y\": -1.6996791293795637\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.000000000000021,\n          \"Y\": 0.3554764109974138\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.9000000000000217,\n          \"Y\": 1.358804127746921\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.800000000000022,\n          \"Y\": -0.035656060154032276\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.7000000000000224,\n          \"Y\": 5.535628846793199\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.6000000000000227,\n          \"Y\": -1.2378477221745832\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.500000000000023,\n          \"Y\": 0.8660235246768853\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.4000000000000234,\n          \"Y\": -0.6788861027206263\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.300000000000024,\n          \"Y\": -0.05257396604366652\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.200000000000024,\n          \"Y\": -0.4120268364764729\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.1000000000000245,\n          \"Y\": 1.2506447833544743\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.000000000000025,\n          \"Y\": -0.2815836842423026\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.9000000000000252,\n          \"Y\": -0.7076114080210056\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.8000000000000256,\n          \"Y\": -1.6873575170045618\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.700000000000026,\n          \"Y\": 2.224069228264313\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.6000000000000263,\n          \"Y\": -1.9416158618364738\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.5000000000000266,\n          \"Y\": -0.023422730951444537\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.400000000000027,\n          \"Y\": -0.09214285162821245\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.3000000000000274,\n          \"Y\": -0.538716149627507\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.2000000000000277,\n          \"Y\": 3.2479158300787687\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.100000000000028,\n          \"Y\": 9.180241759206082\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.0000000000000284,\n          \"Y\": 5.00300068732531\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.9000000000000288,\n          \"Y\": -1.0236500714956085\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.8000000000000291,\n          \"Y\": 0.8534822715156205\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.7000000000000295,\n          \"Y\": 2.9331000883958755\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.6000000000000298,\n          \"Y\": -3.4994950826063462\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.5000000000000302,\n          \"Y\": -6.324060883026326\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.4000000000000306,\n          \"Y\": -3.9121683283550994\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.300000000000031,\n          \"Y\": 1.8253885072217224\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.2000000000000313,\n          \"Y\": -0.8524676805201556\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.1000000000000316,\n          \"Y\": 3.4974242753111646\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.000000000000032,\n          \"Y\": 11.40614255244902\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.9000000000000323,\n          \"Y\": -4.656479782548988\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.8000000000000327,\n          \"Y\": 6.292338705191222\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.700000000000033,\n          \"Y\": 1.9865704673786286\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.6000000000000334,\n          \"Y\": -0.7567695194357884\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.5000000000000338,\n          \"Y\": -0.14908749626789985\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.4000000000000341,\n          \"Y\": -0.8032689320157922\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.30000000000003446,\n          \"Y\": -0.04581563857222459\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.20000000000003482,\n          \"Y\": 3.9037999665042955\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.10000000000003517,\n          \"Y\": 6.954410784799855\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.552713678800501e-14,\n          \"Y\": 3.1290086055648576\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.09999999999996412,\n          \"Y\": -3.2902600000697304\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.19999999999996376,\n          \"Y\": 4.2142647787930185\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.2999999999999634,\n          \"Y\": -1.963960848110677\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.39999999999996305,\n          \"Y\": 3.4763117868643394\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.4999999999999627,\n          \"Y\": 4.059504625211241\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.5999999999999623,\n          \"Y\": -0.44764800660599935\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.699999999999962,\n          \"Y\": 4.782648767426403\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.7999999999999616,\n          \"Y\": 6.681911362779827\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.8999999999999613,\n          \"Y\": 5.279049396925319\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.9999999999999609,\n          \"Y\": 3.3213434528719357\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.0999999999999606,\n          \"Y\": 1.9921686871831845\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.1999999999999602,\n          \"Y\": 5.539169790758686\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.2999999999999599,\n          \"Y\": 6.028876475541786\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.3999999999999595,\n          \"Y\": 8.290037634450846\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.4999999999999591,\n          \"Y\": 6.732232238157904\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.5999999999999588,\n          \"Y\": 6.366514078646105\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.6999999999999584,\n          \"Y\": 3.3111810467676595\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.799999999999958,\n          \"Y\": 6.626677031782874\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.8999999999999577,\n          \"Y\": 0.5225570638884749\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.9999999999999574,\n          \"Y\": 7.270967385312421\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.099999999999957,\n          \"Y\": 5.299908805015013\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.1999999999999567,\n          \"Y\": 4.527777175927255\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.2999999999999563,\n          \"Y\": 0.007799090015922161\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.399999999999956,\n          \"Y\": 4.800813117419075\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.4999999999999556,\n          \"Y\": 2.4473647327899632\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.5999999999999552,\n          \"Y\": 7.02514440331092\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.699999999999955,\n          \"Y\": 11.4047060781164\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.7999999999999545,\n          \"Y\": 3.9759479492539893\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.899999999999954,\n          \"Y\": 10.619939356516722\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.999999999999954,\n          \"Y\": 0.8326485717768604\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.0999999999999535,\n          \"Y\": 4.389378696040785\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.199999999999953,\n          \"Y\": 11.608895400913633\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.2999999999999527,\n          \"Y\": 0.8204624747684086\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.3999999999999524,\n          \"Y\": 6.598297407357292\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.499999999999952,\n          \"Y\": 4.747817248223881\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.5999999999999517,\n          \"Y\": 9.072575719322346\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.6999999999999513,\n          \"Y\": 9.577247559272129\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.799999999999951,\n          \"Y\": 6.722104451236058\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.8999999999999506,\n          \"Y\": 8.741040621583716\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.9999999999999503,\n          \"Y\": 7.32485173582382\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.09999999999995,\n          \"Y\": 9.244400583636214\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.1999999999999496,\n          \"Y\": 11.906301064957326\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.299999999999949,\n          \"Y\": 9.363329258428571\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.399999999999949,\n          \"Y\": 8.966407025153561\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.4999999999999485,\n          \"Y\": 2.5251367682053543\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.599999999999948,\n          \"Y\": 7.169731951914051\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.699999999999948,\n          \"Y\": 6.287824035082818\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.799999999999947,\n          \"Y\": 4.560974852036324\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.899999999999947,\n          \"Y\": 1.6202806580452247\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.999999999999947,\n          \"Y\": 15.157703108721682\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.099999999999946,\n          \"Y\": 6.537262710032024\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.199999999999946,\n          \"Y\": 5.028946607403666\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.299999999999946,\n          \"Y\": 13.87566718271566\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.399999999999945,\n          \"Y\": 18.06905909274711\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.499999999999945,\n          \"Y\": 4.286513087332971\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.599999999999945,\n          \"Y\": 3.847412015791491\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.699999999999944,\n          \"Y\": 9.85551453312075\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.799999999999944,\n          \"Y\": 8.473275165706236\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.8999999999999435,\n          \"Y\": 12.265452527287497\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.999999999999943,\n          \"Y\": 11.525190450414279\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.099999999999945,\n          \"Y\": 16.13291984478301\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.1999999999999424,\n          \"Y\": 9.89259319386118\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.29999999999994,\n          \"Y\": 9.379616950741632\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.399999999999942,\n          \"Y\": 16.92620218414739\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.499999999999943,\n          \"Y\": 12.974295234944249\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.599999999999941,\n          \"Y\": 8.212353736992618\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.699999999999939,\n          \"Y\": 9.422963783231628\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.79999999999994,\n          \"Y\": 11.085897157743593\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.899999999999942,\n          \"Y\": 4.144920281466468\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.99999999999994,\n          \"Y\": 10.192109718231327\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.0999999999999375,\n          \"Y\": 6.405515503864371\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.199999999999939,\n          \"Y\": 8.795674422411013\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.29999999999994,\n          \"Y\": 8.474547691225151\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.399999999999938,\n          \"Y\": 9.733116273962844\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.499999999999936,\n          \"Y\": 7.9346056603251025\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.5999999999999375,\n          \"Y\": 4.262583016163337\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.699999999999939,\n          \"Y\": 14.16220629504127\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.799999999999937,\n          \"Y\": 8.499430686907544\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.899999999999935,\n          \"Y\": 8.040945595498638\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.999999999999936,\n          \"Y\": 10.26934577508566\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.099999999999937,\n          \"Y\": 7.476732510658916\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.199999999999935,\n          \"Y\": 13.25979119613538\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.299999999999933,\n          \"Y\": 7.72167768418044\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.399999999999935,\n          \"Y\": 17.676635606102522\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.499999999999936,\n          \"Y\": 14.999377871971395\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.599999999999934,\n          \"Y\": 4.346728328525292\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.699999999999932,\n          \"Y\": 6.008369118820892\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.799999999999933,\n          \"Y\": 20.75013082269247\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.899999999999935,\n          \"Y\": 16.608071055134527\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.999999999999932,\n          \"Y\": 13.774647248099143\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.09999999999993,\n          \"Y\": 13.229869207551848\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.199999999999932,\n          \"Y\": 15.295264674478819\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.299999999999933,\n          \"Y\": 15.789827880287193\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.399999999999931,\n          \"Y\": 14.634278015358738\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.499999999999929,\n          \"Y\": 8.35853398606148\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.59999999999993,\n          \"Y\": 13.0317043147681\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.699999999999932,\n          \"Y\": 8.949309677231202\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.79999999999993,\n          \"Y\": 8.574310183314578\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.899999999999928,\n          \"Y\": 8.86781223853769\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.999999999999929,\n          \"Y\": 12.19571432039153\n         }\n        ]\n       },\n       \"encoding\": {\n        \"color\": {\n         \"field\": \"Outlier\"\n        },\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"circle\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plot (fmap (second (T.pack . show)) (zip (zip range $ head ys) (Prelude.repeat \\\"N/A\\\")))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"fde6d7a2-01bb-4d66-bd34-1ba72bba575a\",\n   \"metadata\": {},\n   \"source\": [\n    \"Given the observations, we expect the model have average value of `slope` to be 0 and `intercept` 1.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"id\": \"f1fc13c3-3062-4395-b3fd-6b82916b64f9\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"avg l = Prelude.sum l / fromIntegral (length l)\\n\",\n    \"\\n\",\n    \"avX   = avg range\\n\",\n    \"avSqr = Prelude.sum $ map (\\\\a -> (a-avX)**2) range\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"id\": \"90c589fb-3882-4f18-a5ae-37a474acbd8d\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"slopeValue l = covXY / avSqr\\n\",\n    \"  where\\n\",\n    \"    avY   = avg l\\n\",\n    \"    covXY = Prelude.sum $ (\\\\(x,y) -> (x - avX) * (y - avY)) <$> zip range l\\n\",\n    \"    \\n\",\n    \"interceptValue l = avg l - slopeValue l * avX\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"id\": \"087733c4-feca-476c-8958-2fecbcd4ad52\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"\\\"Average slope for 100 observations: 0.6482984353867459\\\"\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"\\\"Average intercept for 100 observations: 1.2220350681014394\\\"\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"nObservations = length $ head observations\\n\",\n    \"\\n\",\n    \"print $ \\\"Average slope for \\\" <> show nObservations <> \\\" observations: \\\" <> (show . avg $ slopeValue <$> ys)\\n\",\n    \"\\n\",\n    \"print $ \\\"Average intercept for \\\" <> show nObservations <> \\\" observations: \\\" <> (show . avg $ interceptValue <$> ys)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"5a2d7a24-ef39-49b3-b4dc-2de622908604\",\n   \"metadata\": {},\n   \"source\": [\n    \"Slope and intercept average values differ a bit from the expected 0 and 1. Let's how they behave given more observations of the same kind.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"id\": \"31b3536b-a6bf-44f7-bd58-798a6d0f69cd\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": []\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"observations1 = [replicate 200 1]\\n\",\n    \"\\n\",\n    \"ys1 <- sampleIOfixed $ mcmc MCMCConfig {numMCMCSteps = 5000, numBurnIn = 300, proposal = SingleSiteMH} \\n\",\n    \"    $ posteriorPredictive regression observations1\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"id\": \"6a5aacc2-0ccb-4446-8bd1-678475278983\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"\\\"Average slope for 200 observations: 0.20039201335018098\\\"\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"\\\"Average intercept for 200 observations: 1.1534663432408423\\\"\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"nObservations = length $ head observations1\\n\",\n    \"\\n\",\n    \"print $ \\\"Average slope for \\\" <> show nObservations <> \\\" observations: \\\" <> (show . avg $ slopeValue <$> ys1)\\n\",\n    \"print $ \\\"Average intercept for \\\" <> show nObservations <> \\\" observations: \\\" <> (show . avg $ interceptValue <$> ys1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"fbf34420-34d7-40c6-9377-8df70afd0255\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Excercise\\n\",\n    \"\\n\",\n    \"To better understand how the Bayesian model works here, you may do following:\\n\",\n    \"1. play with prior: change it to be constant, randomize `noise` only\\n\",\n    \"2. play with observations: empirically check the limit where new observations change posterior insignificantly given the inference parameters\\n\",\n    \"3. change inference paramers.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"271502db-ff8f-4196-8f06-f733963a0fc6\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Haskell - nixpkgs\",\n   \"language\": \"haskell\",\n   \"name\": \"ihaskell_nixpkgs\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": \"ihaskell\",\n   \"file_extension\": \".hs\",\n   \"mimetype\": \"text/x-haskell\",\n   \"name\": \"haskell\",\n   \"pygments_lexer\": \"Haskell\",\n   \"version\": \"9.0.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "notebooks/tutorials/Introduction.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \":e ImportQualifiedPost\\n\",\n    \":e FlexibleContexts\\n\",\n    \":e BlockArguments\\n\",\n    \":e TupleSections\\n\",\n    \":e FlexibleContexts\\n\",\n    \":e OverloadedStrings\\n\",\n    \":e LambdaCase\\n\",\n    \"\\n\",\n    \"import Control.Arrow (first)\\n\",\n    \"import Data.Text (pack)\\n\",\n    \"import Control.Monad\\n\",\n    \"import Numeric.Log\\n\",\n    \"\\n\",\n    \"import Control.Monad.Bayes.Class\\n\",\n    \"import Control.Monad.Bayes.Enumerator\\n\",\n    \"import Control.Monad.Bayes.Weighted\\n\",\n    \"import Control.Monad.Bayes.Sampler.Strict\\n\",\n    \"import Control.Monad.Bayes.Integrator\\n\",\n    \"\\n\",\n    \":l ../plotting.hs\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Introduction to Monad-Bayes\\n\",\n    \"\\n\",\n    \"This serves as an interactive alternative to [the user guide](https://monad-bayes.netlify.app/probprog.html). This isn't intended as a tutorial to Haskell, but if you're familiar with probabilistic programming, the general flow of the code should look familiar.\\n\",\n    \"\\n\",\n    \"To get a sense of how probabilistic programming with monad-bayes works, consider the following:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model :: MonadMeasure m => Double -> m Double\\n\",\n    \"model observation = do\\n\",\n    \"    mean <- uniformD [-1, 0, 1]\\n\",\n    \"    factor (normalPdf mean 1 observation)\\n\",\n    \"    return mean\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The idea of monad-bayes, and probabilistic programming languages in general is to define distributions as programs. `model` corresponds to the distribution that you would express mathematically as:\\n\",\n    \"\\n\",\n    \"$$ P(m | o) = \\\\frac{P(m)P(o|m)}{P(o)} = \\\\frac{1/3 * \\\\mathbb{N}(o; m, 1)}{\\\\sum_{m' \\\\in \\\\{-1,0,1\\\\}} 1/3 * \\\\mathbb{N}(o; m', 1) } $$\\n\",\n    \"\\n\",\n    \"As a program, you can think of `model` as doing the following:\\n\",\n    \"\\n\",\n    \"- first draw from the prior over possible values of `mean` (that's the line `mean <- uniformD [-1, 0, 1]`)\\n\",\n    \"- then score a draw higher according to the likelihood placed on `observation` (the argument to `model`) by a normal with $\\\\mu$=`mean`\\n\",\n    \"\\n\",\n    \"- then return the `mean`\\n\",\n    \"\\n\",\n    \"To orient you on the relationship between the mathematical view of a distribution and the programming one, here are some notes:\\n\",\n    \"\\n\",\n    \"- a distribution over values of type `a` has type `MonadMeasure m => m a`\\n\",\n    \"- a joint distribution over values of types `a` and `b` is a distribution over a tuple: `MonadMeasure m => m (a, b)`\\n\",\n    \"- a conditional distribution over values of type `a` conditioned on values of type `b` is a function into a distribution: \\n\",\n    \"    `MonadMeasure m => b -> m a`\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"For example, if the value observed is $0.3$, then we can calculate the distribution over the mean:\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[(0.0,0.44090549839518783),(1.0,0.36098289073731515),(-1.0,0.198111610867497)]\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"inferredDistribution = enumerator $ model 0.3\\n\",\n    \"inferredDistribution\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"X\": \"0.0\",\n          \"Y\": 0.44090549839518783\n         },\n         {\n          \"X\": \"1.0\",\n          \"Y\": 0.36098289073731515\n         },\n         {\n          \"X\": \"-1.0\",\n          \"Y\": 0.198111610867497\n         }\n        ]\n       },\n       \"encoding\": {\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"nominal\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"bar\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plot (first (pack . show) <$> inferredDistribution)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"To produce this plot, we performed *inference*, to obtain the exact form of the distribution represented by `model`. Because the only random variable in `model` had a support that was small and discrete (the set $\\\\{-1, 0, 1\\\\}$), performing this inference exactly was straightforward.\\n\",\n    \"\\n\",\n    \"`enumerate` is an exact inference method offered by monad-bayes targeted as discrete distributions.\\n\",\n    \"\\n\",\n    \"You are encouraged to change `model` in a number of ways and observe how the results change:\\n\",\n    \"- try changing the prior (currently `uniformD [-1, 0, 1]`)\\n\",\n    \"- try changing the score (currently `factor (normalPdf mean 1 observation)`)\\n\",\n    \"- try changing the types of the observation and latent variable (i.e. `mean`)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Distributions as programs\\n\",\n    \"\\n\",\n    \"If you are familiar with Haskell, then it should be clear that the class of distributions you can express in this way is very broad, since we have monadic control flow. For example, you could build:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"lengthDist :: MonadMeasure m => Double -> m Int\\n\",\n    \"lengthDist observation = do\\n\",\n    \"    means <- replicateM 3 (model observation)\\n\",\n    \"    return (length $ filter (>=1) means)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Exact inference for continuous distributions\\n\",\n    \"\\n\",\n    \"`enumerate` only works for discrete random variables (like categorical or bernoulli distributions).\\n\",\n    \"\\n\",\n    \"For continuous distributions, there is almost a (near) exact inference algorithm, which performs numerical integration. It is defined in `Control.Monad.Bayes.Integrator`, which also provides `histogram`:\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Given an observation, this is the probability on how many (out of 3) independent draws from the posterior of the model conditioned on the observation will be greater or equal to 1. Consider the hassle of defining this with an equation, and you'll see why probabilistic programming is appealing as a way of accelerating modelling and inference.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[(1,0.4228030765220977),(2,0.3090938161626379),(0,0.19278121201287118),(3,7.532189530239404e-2)]\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"enumerator $ lengthDist 0.5\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"X\": -4.3,\n          \"Y\": 1.130592323995006e-05\n         },\n         {\n          \"X\": -4.1000000000000005,\n          \"Y\": 2.6962655231994744e-05\n         },\n         {\n          \"X\": -3.9000000000000004,\n          \"Y\": 6.453120955372455e-05\n         },\n         {\n          \"X\": -3.7,\n          \"Y\": 0.00011893668061056686\n         },\n         {\n          \"X\": -3.5,\n          \"Y\": 0.00025201490031562045\n         },\n         {\n          \"X\": -3.3000000000000003,\n          \"Y\": 0.0004717412175174998\n         },\n         {\n          \"X\": -3.1,\n          \"Y\": 0.0009386806724130974\n         },\n         {\n          \"X\": -2.9000000000000004,\n          \"Y\": 0.0016579159951963904\n         },\n         {\n          \"X\": -2.7,\n          \"Y\": 0.0027804948691254813\n         },\n         {\n          \"X\": -2.5,\n          \"Y\": 0.004448368834902848\n         },\n         {\n          \"X\": -2.3000000000000003,\n          \"Y\": 0.00681568286985589\n         },\n         {\n          \"X\": -2.1,\n          \"Y\": 0.011045176260450752\n         },\n         {\n          \"X\": -1.9000000000000001,\n          \"Y\": 0.01607186189903378\n         },\n         {\n          \"X\": -1.7000000000000002,\n          \"Y\": 0.022441046003227313\n         },\n         {\n          \"X\": -1.5,\n          \"Y\": 0.03011723227393387\n         },\n         {\n          \"X\": -1.3,\n          \"Y\": 0.03888527634021224\n         },\n         {\n          \"X\": -1.1,\n          \"Y\": 0.04831693653557609\n         },\n         {\n          \"X\": -0.9,\n          \"Y\": 0.05777073830312829\n         },\n         {\n          \"X\": -0.7000000000000001,\n          \"Y\": 0.06644067264567828\n         },\n         {\n          \"X\": -0.5,\n          \"Y\": 0.07345895150629281\n         },\n         {\n          \"X\": -0.30000000000000004,\n          \"Y\": 0.07803999760903894\n         },\n         {\n          \"X\": -0.1,\n          \"Y\": 0.07963311467629174\n         },\n         {\n          \"X\": 0.1,\n          \"Y\": 0.07803999760903894\n         },\n         {\n          \"X\": 0.30000000000000004,\n          \"Y\": 0.07345895150629281\n         },\n         {\n          \"X\": 0.5,\n          \"Y\": 0.06644067264567828\n         },\n         {\n          \"X\": 0.7000000000000001,\n          \"Y\": 0.05777073830312829\n         },\n         {\n          \"X\": 0.9,\n          \"Y\": 0.04831693653557609\n         },\n         {\n          \"X\": 1.1,\n          \"Y\": 0.03888527634021224\n         },\n         {\n          \"X\": 1.3,\n          \"Y\": 0.03011723227393387\n         },\n         {\n          \"X\": 1.5,\n          \"Y\": 0.022441046003227313\n         },\n         {\n          \"X\": 1.7000000000000002,\n          \"Y\": 0.01607186189903378\n         },\n         {\n          \"X\": 1.9000000000000001,\n          \"Y\": 0.011045176260450752\n         },\n         {\n          \"X\": 2.1,\n          \"Y\": 0.00681568286985589\n         },\n         {\n          \"X\": 2.3000000000000003,\n          \"Y\": 0.004448368834902848\n         },\n         {\n          \"X\": 2.5,\n          \"Y\": 0.0027804948691254813\n         },\n         {\n          \"X\": 2.7,\n          \"Y\": 0.0016579159951963904\n         },\n         {\n          \"X\": 2.9000000000000004,\n          \"Y\": 0.0009386806724130974\n         },\n         {\n          \"X\": 3.1,\n          \"Y\": 0.0004717412175174998\n         },\n         {\n          \"X\": 3.3000000000000003,\n          \"Y\": 0.00025201490031562045\n         },\n         {\n          \"X\": 3.5,\n          \"Y\": 0.00011893668061056686\n         },\n         {\n          \"X\": 3.7,\n          \"Y\": 6.453120955372455e-05\n         },\n         {\n          \"X\": 3.9000000000000004,\n          \"Y\": 2.6962655231994744e-05\n         },\n         {\n          \"X\": 4.1000000000000005,\n          \"Y\": 1.130592323995006e-05\n         },\n         {\n          \"X\": 4.3,\n          \"Y\": 5.5621114130316836e-06\n         },\n         {\n          \"X\": 4.5,\n          \"Y\": 2.05165127372887e-06\n         }\n        ]\n       },\n       \"encoding\": {\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"bar\",\n       \"width\": 400\n      },\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAcUAAAG/CAYAAAApeMwjAAAAAXNSR0IArs4c6QAAIABJREFUeF7tnX9wVcd5/l8hyUgJsR3hH4MdNTFEyKkUXGNJuCnUEaixTTH12AVXQIamtScYklYhJHhCTceNw+C0zaTCNi0tDaNCqRsyDvkCcqhc1zFKXEeycDFBih27OBF2FNUjYxthWZa+swsiuujeu2f33T1399zn/ANXZ989ez77vPuc3XPuuQWjo6OjhA0EQAAEQAAEQIAKYIpQAQiAAAiAAAicIQBThBJAAARAAARA4CwBmCKkAAIgAAIgAAIwRWgABEAABEAABFIJYKYIRYAACIAACIAAZorQAAiAAAiAAAjEMFMU3/JYv349dXV10fDwMG3evJnmzJmTcuQjR45QU1MTFRYWUkVFBTU3N9N7771Hd911F50+fZpOnjxJn/3sZ+nWW29Fn4EACIAACIBALAScLJ+2tbXRjh07aOfOndTb20uLFy+mzs7OlBOaN28ebd++nWbOnElr1qyh+fPnS1N88skn6aGHHqI333yTZs2aRS+//HIsIHAQEAABEAABEHBiihs3bqTKykpavny5JFxTU0MHDx6ksrIy+VnMHquqqqinp0d+3rdvn9wvyt9333303e9+l7q7u+lzn/sc/eAHP0AvgQAIgAAIgEAsBJyY4urVq2nhwoW0aNEieRINDQ20detWuUwqtr6+Prm/o6NDfj506JDcL2aXS5cupTfeeINee+01uv/+++m22247V6a9vT0FyqWXXkqf/OQnYwGFg4AACIAACCSHgLjNN2PGjAkn5MQUN2zYQNXV1dTY2CgPWFdXR62trTR16lT5eWhoSC6Nitmg2A4cOCD3i6XUgYEBuvfee2WZj3/843T48GEqLS1N2xMPPPCAvHfp6/bSSy/R9OnTfW0eoX28rvGB3yt9J9OexG9cdiH6l9e94Jen/JyY4v79+2nv3r20bds26u/vlzNFYW6Dg4NUVFRExcXF8sGbPXv2UHl5Oa1bt45qa2vphRdeoPe///30hS98gcZc/LnnnqMPfOADMEWmQNOF+zCoZzsttE/d6f/a9jztfvxoSsHGBVW0rKEag7oaX9YS0B8PYKj8nJjiyMgIrVy5Us76hClu2rSJ6uvradWqVTR37lxasWIFiaXQtWvX0rRp0+RMsKWlhV5/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qNXNeoVDFYXeWborDVOEKXJNTxUPU3SbvyEu78IU3WkC9xSZbGGKMEWVqXH3wxSZSZolPNRJAUzRnSZgiky2MEWYItf0VPEwRWaSwhTdATSpGV/JMKH265gQruTwlQzzpytxUaG+qIAp8saQJPLDTNGdJjBTZLLFoK4e1PGVDPOLBpU8Q7hoDPGenYp7XPvxlYy4SI87DpKKBx2mCFNULX9y9ydxpsPLOnvRoY5/mCna08CEmkIVhUMkE6o+drw/7eE+9uFL5Ewby6fmMyHwU19UqPSHmZj5aBDq+AdTNO9zZWSoolCemMUCWP4zNz3RDeDnlh9M0TzZQx3/YIrmfa6MDFUUyhOzWACDuttBHTNtc77IX16ih8rPiSmOjo7S+vXrqauri4aHh2nz5s00Z86cFMJHjhyhpqYmKiwspIqKCmpubpb/P3bsGN19991011130fLly7P2Cp4+DV+0MEXzQRszRfXyKOeeY6iDOm9UsBcdKj8nptjW1kY7duygnTt3Um9vLy1evJg6OztTaM+bN4+2b99OM2fOpDVr1tD8+fPplltuoc985jN0+eWXy7+vWrUKpmhPo17e84QpwhR3P340RZuNC6poWUO1/BvH1LjxoQ7qDocMrapD5efEFDdu3EiVlZXnZno1NTV08OBBKisrk1DF7LGqqop6enrk53379sn9YrYotvvvv58uueQSmKKWBPUL+yBamCJMEaaon7siwof8zdbyUNvnxBRXr15NCxcupEWLFklmDQ0NtHXrVrlMKra+vj65v6OjQ34+dOiQ3L9r166MpijKtLe3T+iDJUuWmCkKUV4QaO3spceePZHSlptmX0E3X3el/Bv2g08u9eFFkqARTgiI23wzZsyYULcTU9ywYQNVV1dTY2OjPGBdXR21trbS1KlT5eehoSGaNWsWdXd3y88HDhyQ+7ds2YKZopPuT1+pD1dymClipoiZolnS+5C/mClG7Lv9+/fT3r17adu2bdTf3y9niocPH6bBwUEqKiqi4uJi+eDNnj17qLy8nNatW0e1tbV0xx13wBQjMrZRzIekginCFGGKZtnsQ/7CFCP23cjICK1cuZIGBgakKW7atInq6+vlPcK5c+fSihUr5FLo2rVradq0aVRaWkotLS1y5vj5z3+ejh8/Lo3ziiuukOZ60UUXpT0ynj6N2CEZivmQVDBFmCJM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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"import Data.List\\n\",\n    \"import Data.Ord\\n\",\n    \"import qualified Data.Text as T\\n\",\n    \"\\n\",\n    \"plot $ Control.Monad.Bayes.Integrator.histogram 45 0.2 (normal 0 1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This will work for any distribution in principle, but in practice it is unfeasibly slow for complex distributions. That said, quite a few interesting distributions can be expressed, like this mixture of Gaussians:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"X\": -24.8,\n          \"Y\": 5.3095963671804324e-06\n         },\n         {\n          \"X\": -24.6,\n          \"Y\": 6.165627647681546e-06\n         },\n         {\n          \"X\": -24.400000000000002,\n          \"Y\": 7.142426872944732e-06\n         },\n         {\n          \"X\": -24.200000000000003,\n          \"Y\": 8.254377982243924e-06\n         },\n         {\n          \"X\": -24,\n          \"Y\": 9.517217568292708e-06\n         },\n         {\n          \"X\": -23.8,\n          \"Y\": 1.0948119678973923e-05\n         },\n         {\n          \"X\": -23.6,\n          \"Y\": 1.951916511397483e-05\n         },\n         {\n          \"X\": -23.400000000000002,\n          \"Y\": 1.53873326738432e-05\n         },\n         {\n          \"X\": -23.200000000000003,\n          \"Y\": 1.756447251953682e-05\n         },\n         {\n          \"X\": -23,\n          \"Y\": 2.0007057866674773e-05\n         },\n         {\n          \"X\": -22.8,\n          \"Y\": 2.2741709649609795e-05\n         },\n         {\n          \"X\": -22.6,\n          \"Y\": 2.5797043317974205e-05\n         },\n         {\n          \"X\": -22.400000000000002,\n          \"Y\": 2.920375038464111e-05\n         },\n         {\n          \"X\": -22.200000000000003,\n          \"Y\": 5.1043211362140733e-05\n         },\n         {\n          \"X\": -22,\n          \"Y\": 3.947883961364423e-05\n         },\n         {\n          \"X\": -21.8,\n          \"Y\": 4.438883568868708e-05\n         },\n         {\n          \"X\": -21.6,\n          \"Y\": 4.981604384789415e-05\n         },\n         {\n          \"X\": -21.400000000000002,\n          \"Y\": 5.5803886480783915e-05\n         },\n         {\n          \"X\": -21.200000000000003,\n          \"Y\": 9.627310649706154e-05\n         },\n         {\n          \"X\": -21,\n          \"Y\": 7.353406698112101e-05\n         },\n         {\n          \"X\": -20.8,\n          \"Y\": 8.186283113755633e-05\n         },\n         {\n          \"X\": -20.6,\n          \"Y\": 9.097940195119327e-05\n         },\n         {\n          \"X\": -20.400000000000002,\n          \"Y\": 0.00015542877950402179\n         },\n         {\n          \"X\": -20.200000000000003,\n          \"Y\": 0.0001176030725961721\n         },\n         {\n          \"X\": -20,\n          \"Y\": 0.00012994936307383746\n         },\n         {\n          \"X\": -19.8,\n          \"Y\": 0.00022043035575747914\n         },\n         {\n          \"X\": -19.6,\n          \"Y\": 0.0001656444511166623\n         },\n         {\n          \"X\": -19.400000000000002,\n          \"Y\": 0.00018204250426452149\n         },\n         {\n          \"X\": -19.200000000000003,\n          \"Y\": 0.00030672846672537724\n         },\n         {\n          \"X\": -19,\n          \"Y\": 0.00022900418687446427\n         },\n         {\n          \"X\": -18.8,\n          \"Y\": 0.00025038660506084855\n         },\n         {\n          \"X\": -18.6,\n          \"Y\": 0.0004192169646104488\n         },\n         {\n          \"X\": -18.400000000000002,\n          \"Y\": 0.00031107530922898813\n         },\n         {\n          \"X\": -18.2,\n          \"Y\": 0.0005185837672412176\n         },\n         {\n          \"X\": -18,\n          \"Y\": 0.0003832048398221772\n         },\n         {\n          \"X\": -17.8,\n          \"Y\": 0.00041558110144749964\n         },\n         {\n          \"X\": -17.6,\n          \"Y\": 0.0006888181760479613\n         },\n         {\n          \"X\": -17.400000000000002,\n          \"Y\": 0.0005061612922303652\n         },\n         {\n          \"X\": -17.2,\n          \"Y\": 0.000835656696506249\n         },\n         {\n          \"X\": -17,\n          \"Y\": 0.0006117199264780828\n         },\n         {\n          \"X\": -16.8,\n          \"Y\": 0.001006103121920774\n         },\n         {\n          \"X\": -16.6,\n          \"Y\": 0.0007337779924051356\n         },\n         {\n          \"X\": -16.400000000000002,\n          \"Y\": 0.0012024350560064876\n         },\n         {\n          \"X\": -16.2,\n          \"Y\": 0.0008738440118643176\n         },\n         {\n          \"X\": -16,\n          \"Y\": 0.0014268870141138828\n         },\n         {\n          \"X\": -15.8,\n          \"Y\": 0.0010333804232739619\n         },\n         {\n          \"X\": -15.600000000000001,\n          \"Y\": 0.0016815964699223697\n         },\n         {\n          \"X\": -15.4,\n          \"Y\": 0.0012137652729090045\n         },\n         {\n          \"X\": -15.200000000000001,\n          \"Y\": 0.0019685429326754145\n         },\n         {\n          \"X\": -15,\n          \"Y\": 0.0014162493419906026\n         },\n         {\n          \"X\": -14.8,\n          \"Y\": 0.0022894803727306276\n         },\n         {\n          \"X\": -14.600000000000001,\n          \"Y\": 0.0016419090158662855\n         },\n         {\n          \"X\": -14.4,\n          \"Y\": 0.002645863614316109\n         },\n         {\n          \"X\": -14.200000000000001,\n          \"Y\": 0.0018915954247418377\n         },\n         {\n          \"X\": -14,\n          \"Y\": 0.0030387696830687394\n         },\n         {\n          \"X\": -13.8,\n          \"Y\": 0.003292322586302597\n         },\n         {\n          \"X\": -13.600000000000001,\n          \"Y\": 0.002342373597746243\n         },\n         {\n          \"X\": -13.4,\n          \"Y\": 0.00374472560044742\n         },\n         {\n          \"X\": -13.200000000000001,\n          \"Y\": 0.0026563505776088787\n         },\n         {\n          \"X\": -13,\n          \"Y\": 0.004234089126490092\n         },\n         {\n          \"X\": -12.8,\n          \"Y\": 0.004545075472352339\n         },\n         {\n          \"X\": -12.600000000000001,\n          \"Y\": 0.003209076685363121\n         },\n         {\n          \"X\": -12.4,\n          \"Y\": 0.0050912499414268765\n         },\n         {\n          \"X\": -12.200000000000001,\n          \"Y\": 0.0035843756991705495\n         },\n         {\n          \"X\": -12,\n          \"Y\": 0.005670273981989368\n         },\n         {\n          \"X\": -11.8,\n          \"Y\": 0.006032222334389711\n         },\n         {\n          \"X\": -11.600000000000001,\n          \"Y\": 0.004227504911733166\n         },\n         {\n          \"X\": -11.4,\n          \"Y\": 0.006657082448059182\n         },\n         {\n          \"X\": -11.200000000000001,\n          \"Y\": 0.004652199290268652\n         },\n         {\n          \"X\": -11,\n          \"Y\": 0.007304984998232411\n         },\n         {\n          \"X\": -10.8,\n          \"Y\": 0.007702575045606567\n         },\n         {\n          \"X\": -10.600000000000001,\n          \"Y\": 0.005358481300238634\n         },\n         {\n          \"X\": -10.4,\n          \"Y\": 0.008375725553296841\n         },\n         {\n          \"X\": -10.200000000000001,\n          \"Y\": 0.005810273443431885\n         },\n         {\n          \"X\": -10,\n          \"Y\": 0.009056025256592605\n         },\n         {\n          \"X\": -9.8,\n          \"Y\": 0.009464504364960952\n         },\n         {\n          \"X\": -9.600000000000001,\n          \"Y\": 0.0065357322362273405\n         },\n         {\n          \"X\": -9.4,\n          \"Y\": 0.010140142190877145\n         },\n         {\n          \"X\": -9.200000000000001,\n          \"Y\": 0.006982288056300124\n         },\n         {\n          \"X\": -9,\n          \"Y\": 0.010801803976785741\n         },\n         {\n          \"X\": -8.8,\n          \"Y\": 0.011188334576243604\n         },\n         {\n          \"X\": -8.6,\n          \"Y\": 0.007668627394691908\n         },\n         {\n          \"X\": -8.4,\n          \"Y\": 0.011808672869082982\n         },\n         {\n          \"X\": -8.200000000000001,\n          \"Y\": 0.008070364799286928\n         },\n         {\n          \"X\": -8,\n          \"Y\": 0.012391059176428562\n         },\n         {\n          \"X\": -7.800000000000001,\n          \"Y\": 0.012718425893634153\n         },\n         {\n          \"X\": -7.6000000000000005,\n          \"Y\": 0.008651553198501605\n         },\n         {\n          \"X\": -7.4,\n          \"Y\": 0.013221056792861181\n         },\n         {\n          \"X\": -7.2,\n          \"Y\": 0.008967019281621344\n         },\n         {\n          \"X\": -7,\n          \"Y\": 0.013662649695284454\n         },\n         {\n          \"X\": -6.800000000000001,\n          \"Y\": 0.013895057367178457\n         },\n         {\n          \"X\": -6.6000000000000005,\n          \"Y\": 0.009379571751890135\n         },\n         {\n          \"X\": -6.4,\n          \"Y\": 0.014223355365981644\n         },\n         {\n          \"X\": -6.2,\n          \"Y\": 0.009572616707840676\n         },\n         {\n          \"X\": -6,\n          \"Y\": 0.014472770164764372\n         },\n         {\n          \"X\": -5.800000000000001,\n          \"Y\": 0.014582570750033136\n         },\n         {\n          \"X\": -5.6000000000000005,\n          \"Y\": 0.009767512178953679\n         },\n         {\n          \"X\": -5.4,\n          \"Y\": 0.014696779267426735\n         },\n         {\n          \"X\": -5.2,\n          \"Y\": 0.009814530455681262\n         },\n         {\n          \"X\": -5,\n          \"Y\": 0.014723268976915527\n         },\n         {\n          \"X\": -4.800000000000001,\n          \"Y\": 0.014696779267426735\n         },\n         {\n          \"X\": -4.6000000000000005,\n          \"Y\": 0.009767512178953679\n         },\n         {\n          \"X\": -4.4,\n          \"Y\": 0.014582570750033136\n         },\n         {\n          \"X\": -4.2,\n          \"Y\": 0.014472770164764372\n         },\n         {\n          \"X\": -4,\n          \"Y\": 0.009572616707840676\n         },\n         {\n          \"X\": -3.8000000000000003,\n          \"Y\": 0.014223355365981644\n         },\n         {\n          \"X\": -3.6,\n          \"Y\": 0.009379571751890135\n         },\n         {\n          \"X\": -3.4000000000000004,\n          \"Y\": 0.013895057367178457\n         },\n         {\n          \"X\": -3.2,\n          \"Y\": 0.013662649695284454\n         },\n         {\n          \"X\": -3,\n          \"Y\": 0.008967019281621344\n         },\n         {\n          \"X\": -2.8000000000000003,\n          \"Y\": 0.013221056792861181\n         },\n         {\n          \"X\": -2.6,\n          \"Y\": 0.008651553198501605\n         },\n         {\n          \"X\": -2.4000000000000004,\n          \"Y\": 0.012718425893634153\n         },\n         {\n          \"X\": -2.2,\n          \"Y\": 0.012391059176428562\n         },\n         {\n          \"X\": -2,\n          \"Y\": 0.008070364799286928\n         },\n         {\n          \"X\": -1.8,\n          \"Y\": 0.011808672869082982\n         },\n         {\n          \"X\": -1.6,\n          \"Y\": 0.007668627394691908\n         },\n         {\n          \"X\": -1.4000000000000001,\n          \"Y\": 0.011188334576243604\n         },\n         {\n          \"X\": -1.2000000000000002,\n          \"Y\": 0.010801803976785741\n         },\n         {\n          \"X\": -1,\n          \"Y\": 0.006982288056300124\n         },\n         {\n          \"X\": -0.8,\n          \"Y\": 0.010140142190877145\n         },\n         {\n          \"X\": -0.6000000000000001,\n          \"Y\": 0.0065357322362273405\n         },\n         {\n          \"X\": -0.4,\n          \"Y\": 0.009464504364960952\n         },\n         {\n          \"X\": -0.2,\n          \"Y\": 0.009056025256592605\n         },\n         {\n          \"X\": 0,\n          \"Y\": 0.005810273443431885\n         },\n         {\n          \"X\": 0.2,\n          \"Y\": 0.008375725553296841\n         },\n         {\n          \"X\": 0.4,\n          \"Y\": 0.005358481300238634\n         },\n         {\n          \"X\": 0.6000000000000001,\n          \"Y\": 0.007702575045606567\n         },\n         {\n          \"X\": 0.8,\n          \"Y\": 0.007304984998232411\n         },\n         {\n          \"X\": 1,\n          \"Y\": 0.004652199290268652\n         },\n         {\n          \"X\": 1.2000000000000002,\n          \"Y\": 0.006657082448059182\n         },\n         {\n          \"X\": 1.4000000000000001,\n          \"Y\": 0.004227504911733166\n         },\n         {\n          \"X\": 1.6,\n          \"Y\": 0.006032222334389711\n         },\n         {\n          \"X\": 1.8,\n          \"Y\": 0.005670273981989368\n         },\n         {\n          \"X\": 2,\n          \"Y\": 0.0035843756991705495\n         },\n         {\n          \"X\": 2.2,\n          \"Y\": 0.0050912499414268765\n         },\n         {\n          \"X\": 2.4000000000000004,\n          \"Y\": 0.0032090766853715828\n         },\n         {\n          \"X\": 2.6,\n          \"Y\": 0.004545075472404506\n         },\n         {\n          \"X\": 2.8000000000000003,\n          \"Y\": 0.004234089126669467\n         },\n         {\n          \"X\": 3,\n          \"Y\": 0.002656350578426903\n         },\n         {\n          \"X\": 3.2,\n          \"Y\": 0.0037447256036590893\n         },\n         {\n          \"X\": 3.4000000000000004,\n          \"Y\": 0.0023423736094486908\n         },\n         {\n          \"X\": 3.6,\n          \"Y\": 0.0032923226260335938\n         },\n         {\n          \"X\": 3.8000000000000003,\n          \"Y\": 0.0030387698092297524\n         },\n         {\n          \"X\": 4,\n          \"Y\": 0.0018915958944567674\n         },\n         {\n          \"X\": 4.2,\n          \"Y\": 0.0026458651255221624\n         },\n         {\n          \"X\": 4.4,\n          \"Y\": 0.0016419135353878634\n         },\n         {\n          \"X\": 4.6000000000000005,\n          \"Y\": 0.0022894929933032497\n         },\n         {\n          \"X\": 4.800000000000001,\n          \"Y\": 0.0014162890889872167\n         },\n         {\n          \"X\": 5,\n          \"Y\": 0.0019686515763010747\n         },\n         {\n          \"X\": 5.2,\n          \"Y\": 0.0012140419610368388\n         },\n         {\n          \"X\": 5.4,\n          \"Y\": 0.001682256247895249\n         },\n         {\n          \"X\": 5.6000000000000005,\n          \"Y\": 0.0010348602959120942\n         },\n         {\n          \"X\": 5.800000000000001,\n          \"Y\": 0.0014305303394102473\n         },\n         {\n          \"X\": 6,\n          \"Y\": 0.0008817023236705112\n         },\n         {\n          \"X\": 6.2,\n          \"Y\": 0.001220669132895143\n         },\n         {\n          \"X\": 6.4,\n          \"Y\": 0.0007709761855503958\n         },\n         {\n          \"X\": 6.6000000000000005,\n          \"Y\": 0.0010775432999527918\n         },\n         {\n          \"X\": 6.800000000000001,\n          \"Y\": 0.0007415719645205989\n         },\n         {\n          \"X\": 7,\n          \"Y\": 0.0010868554817407183\n         },\n         {\n          \"X\": 7.2,\n          \"Y\": 0.0009382280004843571\n         },\n         {\n          \"X\": 7.4,\n          \"Y\": 0.0013961737025615243\n         },\n         {\n          \"X\": 7.6000000000000005,\n          \"Y\": 0.001522551128616199\n         },\n         {\n          \"X\": 7.800000000000001,\n          \"Y\": 0.0022142478680458356\n         },\n         {\n          \"X\": 8,\n          \"Y\": 0.0029898582096525832\n         },\n         {\n          \"X\": 8.200000000000001,\n          \"Y\": 0.0040797108205224576\n         },\n         {\n          \"X\": 8.4,\n          \"Y\": 0.005585183695811193\n         },\n         {\n          \"X\": 8.6,\n          \"Y\": 0.007060207346670868\n         },\n         {\n          \"X\": 8.8,\n          \"Y\": 0.008867014272076047\n         },\n         {\n          \"X\": 9,\n          \"Y\": 0.01085140149296492\n         },\n         {\n          \"X\": 9.200000000000001,\n          \"Y\": 0.012566493408287312\n         },\n         {\n          \"X\": 9.4,\n          \"Y\": 0.014152923036878371\n         },\n         {\n          \"X\": 9.600000000000001,\n          \"Y\": 0.01540374307780132\n         },\n         {\n          \"X\": 9.8,\n          \"Y\": 0.015963490067288637\n         },\n         {\n          \"X\": 10,\n          \"Y\": 0.017178328407119536\n         },\n         {\n          \"X\": 10.200000000000001,\n          \"Y\": 0.015338741501547862\n         },\n         {\n          \"X\": 10.4,\n          \"Y\": 0.014078257987712901\n         },\n         {\n          \"X\": 10.600000000000001,\n          \"Y\": 0.012466313735160347\n         },\n         {\n          \"X\": 10.8,\n          \"Y\": 0.010618207093220663\n         },\n         {\n          \"X\": 11,\n          \"Y\": 0.008734283191698645\n         },\n         {\n          \"X\": 11.200000000000001,\n          \"Y\": 0.006865624628090803\n         },\n         {\n          \"X\": 11.4,\n          \"Y\": 0.0052157827750486385\n         },\n         {\n          \"X\": 11.600000000000001,\n          \"Y\": 0.0038130243469821565\n         },\n         {\n          \"X\": 11.8,\n          \"Y\": 0.00251075328202501\n         },\n         {\n          \"X\": 12,\n          \"Y\": 0.0018820862395857992\n         },\n         {\n          \"X\": 12.200000000000001,\n          \"Y\": 0.0011361737775533406\n         },\n         {\n          \"X\": 12.4,\n          \"Y\": 0.0007331525698315374\n         },\n         {\n          \"X\": 12.600000000000001,\n          \"Y\": 0.0004548084179036016\n         },\n         {\n          \"X\": 12.8,\n          \"Y\": 0.0002712058431011442\n         },\n         {\n          \"X\": 13,\n          \"Y\": 0.00014741651056205293\n         },\n         {\n          \"X\": 13.200000000000001,\n          \"Y\": 8.682751070586094e-05\n         },\n         {\n          \"X\": 13.4,\n          \"Y\": 5.671735825923499e-05\n         },\n         {\n          \"X\": 13.600000000000001,\n          \"Y\": 2.918219656762929e-05\n         },\n         {\n          \"X\": 13.8,\n          \"Y\": 1.7375529374486354e-05\n         },\n         {\n          \"X\": 14,\n          \"Y\": 1.1897703278608336e-05\n         },\n         {\n          \"X\": 14.200000000000001,\n          \"Y\": 8.622299511077096e-06\n         },\n         {\n          \"X\": 14.4,\n          \"Y\": 6.825405620560989e-06\n         },\n         {\n          \"X\": 14.600000000000001,\n          \"Y\": 5.586284495014563e-06\n         },\n         {\n          \"X\": 14.8,\n          \"Y\": 4.669861980384239e-06\n         },\n         {\n          \"X\": 15,\n          \"Y\": 3.948313554694825e-06\n         },\n         {\n          \"X\": 15.200000000000001,\n          \"Y\": 3.3534425460400294e-06\n         },\n         {\n          \"X\": 15.4,\n          \"Y\": 2.8527159283821076e-06\n         },\n         {\n          \"X\": 15.600000000000001,\n          \"Y\": 2.4233690209484857e-06\n         },\n         {\n          \"X\": 15.8,\n          \"Y\": 2.054328147189825e-06\n         },\n         {\n          \"X\": 16,\n          \"Y\": 1.7371920198927467e-06\n         },\n         {\n          \"X\": 16.2,\n          \"Y\": 1.46513697892469e-06\n         },\n         {\n          \"X\": 16.400000000000002,\n          \"Y\": 6.430045608227638e-07\n         },\n         {\n          \"X\": 16.6,\n          \"Y\": 1.1289058668345064e-06\n         },\n         {\n          \"X\": 16.8,\n          \"Y\": 9.45432750205755e-07\n         },\n         {\n          \"X\": 17,\n          \"Y\": 7.894740185842172e-07\n         },\n         {\n          \"X\": 17.2,\n          \"Y\": 6.572915930046536e-07\n         },\n         {\n          \"X\": 17.400000000000002,\n          \"Y\": 5.455944919957147e-07\n         },\n         {\n          \"X\": 17.6,\n          \"Y\": 4.5149403031157523e-07\n         },\n         {\n          \"X\": 17.8,\n          \"Y\": 1.9525799762733373e-07\n         },\n         {\n          \"X\": 18,\n          \"Y\": 3.378964915674886e-07\n         },\n         {\n          \"X\": 18.2,\n          \"Y\": 2.774244639758001e-07\n         },\n         {\n          \"X\": 18.400000000000002,\n          \"Y\": 2.270377464987253e-07\n         },\n         {\n          \"X\": 18.6,\n          \"Y\": 1.8519131251684698e-07\n         },\n         {\n          \"X\": 18.8,\n          \"Y\": 7.920249677766002e-08\n         },\n         {\n          \"X\": 19,\n          \"Y\": 1.3557216891866329e-07\n         },\n         {\n          \"X\": 19.200000000000003,\n          \"Y\": 1.0965115492621583e-07\n         },\n         {\n          \"X\": 19.400000000000002,\n          \"Y\": 8.837751973876313e-08\n         },\n         {\n          \"X\": 19.6,\n          \"Y\": 7.097930240632512e-08\n         },\n         {\n          \"X\": 19.8,\n          \"Y\": 2.999435665118401e-08\n         },\n         {\n          \"X\": 20,\n          \"Y\": 5.074307876946539e-08\n         },\n         {\n          \"X\": 20.200000000000003,\n          \"Y\": 4.03840509672416e-08\n         },\n         {\n          \"X\": 20.400000000000002,\n          \"Y\": 1.6945424661950835e-08\n         },\n         {\n          \"X\": 20.6,\n          \"Y\": 2.8470764678943016e-08\n         },\n         {\n          \"X\": 20.8,\n          \"Y\": 2.244466737896972e-08\n         },\n         {\n          \"X\": 21,\n          \"Y\": 9.348942461918773e-09\n         },\n         {\n          \"X\": 21.200000000000003,\n          \"Y\": 1.5595477957054267e-08\n         },\n         {\n          \"X\": 21.400000000000002,\n          \"Y\": 1.2173775578461567e-08\n         },\n         {\n          \"X\": 21.6,\n          \"Y\": 5.032087529533858e-09\n         },\n         {\n          \"X\": 21.8,\n          \"Y\": 8.332006961460162e-09\n         },\n         {\n          \"X\": 22,\n          \"Y\": 6.437450105521275e-09\n         },\n         {\n          \"X\": 22.200000000000003,\n          \"Y\": 2.6398048870269847e-09\n         },\n         {\n          \"X\": 22.400000000000002,\n          \"Y\": 4.337201860213885e-09\n         },\n         {\n          \"X\": 22.6,\n          \"Y\": 1.7697821375641629e-09\n         },\n         {\n          \"X\": 22.8,\n          \"Y\": 2.8938473215601114e-09\n         },\n         {\n          \"X\": 23,\n          \"Y\": 2.197451537277538e-09\n         },\n         {\n          \"X\": 23.200000000000003,\n          \"Y\": 8.890601143487822e-10\n         },\n         {\n          \"X\": 23.400000000000002,\n          \"Y\": 1.4418071583810853e-09\n         },\n         {\n          \"X\": 23.6,\n          \"Y\": 5.802653553133105e-10\n         },\n         {\n          \"X\": 23.8,\n          \"Y\": 9.362400492222958e-10\n         },\n         {\n          \"X\": 24,\n          \"Y\": 3.747638369657277e-10\n         },\n         {\n          \"X\": 24.200000000000003,\n          \"Y\": 6.015208610865836e-10\n         },\n         {\n          \"X\": 24.400000000000002,\n          \"Y\": 2.3944960617131523e-10\n         },\n         {\n          \"X\": 24.6,\n          \"Y\": 3.822842156214353e-10\n         },\n         {\n          \"X\": 24.8,\n          \"Y\": 2.8084119923931763e-10\n         },\n         {\n          \"X\": 25,\n          \"Y\": 1.1073367866069837e-10\n         }\n        ]\n       },\n       \"encoding\": {\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"bar\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"model2 = do\\n\",\n    \"    p <- bernoulli 0.2\\n\",\n    \"    if p then normal 10 1 else normal (-5) 5\\n\",\n    \"\\n\",\n    \"plot $ Control.Monad.Bayes.Integrator.histogram 250 0.2 model2\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Or this normal distribution restricted to the positive reals (i.e. $p(x) \\\\propto N(x;0,4)\\\\cdot I[x>0]$)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"X\": -24.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -24,\n          \"Y\": 0\n         },\n         {\n          \"X\": -23.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -23,\n          \"Y\": 0\n         },\n         {\n          \"X\": -22.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -22,\n          \"Y\": 0\n         },\n         {\n          \"X\": -21.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -21,\n          \"Y\": 0\n         },\n         {\n          \"X\": -20.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -20,\n          \"Y\": 0\n         },\n         {\n          \"X\": -19.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -19,\n          \"Y\": 0\n         },\n         {\n          \"X\": -18.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -18,\n          \"Y\": 0\n         },\n         {\n          \"X\": -17.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -17,\n          \"Y\": 0\n         },\n         {\n          \"X\": -16.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -16,\n          \"Y\": 0\n         },\n         {\n          \"X\": -15.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -15,\n          \"Y\": 0\n         },\n         {\n          \"X\": -14.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -14,\n          \"Y\": 0\n         },\n         {\n          \"X\": -13.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -13,\n          \"Y\": 0\n         },\n         {\n          \"X\": -12.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -12,\n          \"Y\": 0\n         },\n         {\n          \"X\": -11.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -11,\n          \"Y\": 0\n         },\n         {\n          \"X\": -10.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -10,\n          \"Y\": 0\n         },\n         {\n          \"X\": -9.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -9,\n          \"Y\": 0\n         },\n         {\n          \"X\": -8.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -8,\n          \"Y\": 0\n         },\n         {\n          \"X\": -7.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -7,\n          \"Y\": 0\n         },\n         {\n          \"X\": -6.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -6,\n          \"Y\": 0\n         },\n         {\n          \"X\": -5.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -4.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -4,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3,\n          \"Y\": 0\n         },\n         {\n          \"X\": -2.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -2,\n          \"Y\": 0\n         },\n         {\n          \"X\": -1.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -1,\n          \"Y\": 0\n         },\n         {\n          \"X\": -0.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": 0,\n          \"Y\": 0.09847923259850619\n         },\n         {\n          \"X\": 0.5,\n          \"Y\": 0.09688712321071996\n         },\n         {\n          \"X\": 1,\n          \"Y\": 0.0938735457320932\n         },\n         {\n          \"X\": 1.5,\n          \"Y\": 0.08957959553646837\n         },\n         {\n          \"X\": 2,\n          \"Y\": 0.08419940071719337\n         },\n         {\n          \"X\": 2.5,\n          \"Y\": 0.07796444369864483\n         },\n         {\n          \"X\": 3,\n          \"Y\": 0.07112607677780432\n         },\n         {\n          \"X\": 3.5,\n          \"Y\": 0.07141720800224513\n         },\n         {\n          \"X\": 4,\n          \"Y\": 0.055733279426873776\n         },\n         {\n          \"X\": 4.5,\n          \"Y\": 0.04857122789700993\n         },\n         {\n          \"X\": 5,\n          \"Y\": 0.04171858464689489\n         },\n         {\n          \"X\": 5.5,\n          \"Y\": 0.035313819914731925\n         },\n         {\n          \"X\": 6,\n          \"Y\": 0.029455693707741988\n         },\n         {\n          \"X\": 6.5,\n          \"Y\": 0.02420521543207655\n         },\n         {\n          \"X\": 7,\n          \"Y\": 0.01958961252353236\n         },\n         {\n          \"X\": 7.5,\n          \"Y\": 0.015607537144417724\n         },\n         {\n          \"X\": 8,\n          \"Y\": 0.012234833688048747\n         },\n         {\n          \"X\": 8.5,\n          \"Y\": 0.009430329724680782\n         },\n         {\n          \"X\": 9,\n          \"Y\": 0.0071412649856702265\n         },\n         {\n          \"X\": 9.5,\n          \"Y\": 0.0047307925595266595\n         },\n         {\n          \"X\": 10,\n          \"Y\": 0.004029192470264292\n         },\n         {\n          \"X\": 10.5,\n          \"Y\": 0.00257568309521291\n         },\n         {\n          \"X\": 11,\n          \"Y\": 0.002113460657256411\n         },\n         {\n          \"X\": 11.5,\n          \"Y\": 0.0012980250065589738\n         },\n         {\n          \"X\": 12,\n          \"Y\": 0.0009156464715116446\n         },\n         {\n          \"X\": 12.5,\n          \"Y\": 0.0006330594154629887\n         },\n         {\n          \"X\": 13,\n          \"Y\": 0.00042845707476134315\n         },\n         {\n          \"X\": 13.5,\n          \"Y\": 0.00028350200739059056\n         },\n         {\n          \"X\": 14,\n          \"Y\": 0.0001831453366031207\n         },\n         {\n          \"X\": 14.5,\n          \"Y\": 0.00010205277856315487\n         },\n         {\n          \"X\": 15,\n          \"Y\": 6.730544243028251e-05\n         },\n         {\n          \"X\": 15.5,\n          \"Y\": 4.899427881498245e-05\n         },\n         {\n          \"X\": 16,\n          \"Y\": 2.5399813650379086e-05\n         },\n         {\n          \"X\": 16.5,\n          \"Y\": 1.5627846530421348e-05\n         },\n         {\n          \"X\": 17,\n          \"Y\": 9.384658289544393e-06\n         },\n         {\n          \"X\": 17.5,\n          \"Y\": 5.493599502781822e-06\n         },\n         {\n          \"X\": 18,\n          \"Y\": 3.130827261430701e-06\n         },\n         {\n          \"X\": 18.5,\n          \"Y\": 1.5138117814231015e-06\n         },\n         {\n          \"X\": 19,\n          \"Y\": 1.0370383982854682e-06\n         },\n         {\n          \"X\": 19.5,\n          \"Y\": 4.7630049019556284e-07\n         },\n         {\n          \"X\": 20,\n          \"Y\": 3.0976739338026207e-07\n         },\n         {\n          \"X\": 20.5,\n          \"Y\": 1.344913840194566e-07\n         },\n         {\n          \"X\": 21,\n          \"Y\": 7.28402989686893e-08\n         },\n         {\n          \"X\": 21.5,\n          \"Y\": 3.846088400234724e-08\n         },\n         {\n          \"X\": 22,\n          \"Y\": 1.977832080262644e-08\n         },\n         {\n          \"X\": 22.5,\n          \"Y\": 9.89503402994438e-09\n         },\n         {\n          \"X\": 23,\n          \"Y\": 4.810830756000415e-09\n         },\n         {\n          \"X\": 23.5,\n          \"Y\": 2.2703683583527174e-09\n         },\n         {\n          \"X\": 24,\n          \"Y\": 8.918881098938926e-10\n         },\n         {\n          \"X\": 24.5,\n          \"Y\": 5.430293326052203e-10\n         },\n         {\n          \"X\": 25,\n          \"Y\": 2.0204098332974636e-10\n         }\n        ]\n       },\n       \"encoding\": {\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"bar\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"model3 :: MonadMeasure m => m Double\\n\",\n    \"model3 = do\\n\",\n    \"\\n\",\n    \"    x <- normal 0 4\\n\",\n    \"    condition (x > 0)\\n\",\n    \"    return x\\n\",\n    \"\\n\",\n    \"plot $ Control.Monad.Bayes.Integrator.histogram 100 0.5 model3\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Or this unusual distribution with $p(x) \\\\propto N(x;0,4)*e^{cos(x)}$:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"X\": -19.900000000000002,\n          \"Y\": 0.001156262886841532\n         },\n         {\n          \"X\": -19.8,\n          \"Y\": 0.001354012903533711\n         },\n         {\n          \"X\": -19.700000000000003,\n          \"Y\": 0\n         },\n         {\n          \"X\": -19.6,\n          \"Y\": 0.001559897607835023\n         },\n         {\n          \"X\": -19.5,\n          \"Y\": 0.0017632040272647213\n         },\n         {\n          \"X\": -19.400000000000002,\n          \"Y\": 0\n         },\n         {\n          \"X\": -19.3,\n          \"Y\": 0.0019510745222390512\n         },\n         {\n          \"X\": -19.200000000000003,\n          \"Y\": 0\n         },\n         {\n          \"X\": -19.1,\n          \"Y\": 0.002109936666272357\n         },\n         {\n          \"X\": -19,\n          \"Y\": 0.002227374182915131\n         },\n         {\n          \"X\": -18.900000000000002,\n          \"Y\": 0\n         },\n         {\n          \"X\": -18.8,\n          \"Y\": 0.002294056566030615\n         },\n         {\n          \"X\": -18.7,\n          \"Y\": 0.002305263703786686\n         },\n         {\n          \"X\": -18.6,\n          \"Y\": 0\n         },\n         {\n          \"X\": -18.5,\n          \"Y\": 0.00226161392888563\n         },\n         {\n          \"X\": -18.400000000000002,\n          \"Y\": 0.0021688166333168066\n         },\n         {\n          \"X\": -18.3,\n          \"Y\": 0\n         },\n         {\n          \"X\": -18.2,\n          \"Y\": 0.0020365454489922863\n         },\n         {\n          \"X\": -18.1,\n          \"Y\": 0\n         },\n         {\n          \"X\": -18,\n          \"Y\": 0.0018767582502326862\n         },\n         {\n          \"X\": -17.900000000000002,\n          \"Y\": 0.0017018942662864512\n         },\n         {\n          \"X\": -17.8,\n          \"Y\": 0\n         },\n         {\n          \"X\": -17.7,\n          \"Y\": 0.0015233365030816496\n         },\n         {\n          \"X\": -17.6,\n          \"Y\": 0.001350381261261749\n         },\n         {\n          \"X\": -17.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -17.400000000000002,\n          \"Y\": 0.0011897784691130644\n         },\n         {\n          \"X\": -17.3,\n          \"Y\": 0.001045761930007302\n         },\n         {\n          \"X\": -17.2,\n          \"Y\": 0\n         },\n         {\n          \"X\": -17.1,\n          \"Y\": 0.0009204108174068761\n         },\n         {\n          \"X\": -17,\n          \"Y\": 0.0008141722022182503\n         },\n         {\n          \"X\": -16.900000000000002,\n          \"Y\": 0\n         },\n         {\n          \"X\": -16.8,\n          \"Y\": 0.0007264072729664774\n         },\n         {\n          \"X\": -16.7,\n          \"Y\": 0\n         },\n         {\n          \"X\": -16.6,\n          \"Y\": 0.000655874541151163\n         },\n         {\n          \"X\": -16.5,\n          \"Y\": 0.0006011113365011507\n         },\n         {\n          \"X\": -16.400000000000002,\n          \"Y\": 0\n         },\n         {\n          \"X\": -16.3,\n          \"Y\": 0.000560709935132182\n         },\n         {\n          \"X\": -16.2,\n          \"Y\": 0.0005335047831996477\n         },\n         {\n          \"X\": -16.1,\n          \"Y\": 0\n         },\n         {\n          \"X\": -16,\n          \"Y\": 0.0005186952975732348\n         },\n         {\n          \"X\": -15.9,\n          \"Y\": 0.0005159289268464203\n         },\n         {\n          \"X\": -15.8,\n          \"Y\": 0\n         },\n         {\n          \"X\": -15.700000000000001,\n          \"Y\": 0.0005253652835879647\n         },\n         {\n          \"X\": -15.600000000000001,\n          \"Y\": 0.0005477366276902922\n         },\n         {\n          \"X\": -15.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -15.4,\n          \"Y\": 0.0005844138495995048\n         },\n         {\n          \"X\": -15.3,\n          \"Y\": 0.0006374803669493952\n         },\n         {\n          \"X\": -15.200000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": -15.100000000000001,\n          \"Y\": 0.0007098083145886206\n         },\n         {\n          \"X\": -15,\n          \"Y\": 0\n         },\n         {\n          \"X\": -14.9,\n          \"Y\": 0.0008051210901373436\n         },\n         {\n          \"X\": -14.8,\n          \"Y\": 0.0009280129383938439\n         },\n         {\n          \"X\": -14.700000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": -14.600000000000001,\n          \"Y\": 0.0010838799877914424\n         },\n         {\n          \"X\": -14.5,\n          \"Y\": 0.001278700157673131\n         },\n         {\n          \"X\": -14.4,\n          \"Y\": 0\n         },\n         {\n          \"X\": -14.3,\n          \"Y\": 0.0015185870291939054\n         },\n         {\n          \"X\": -14.200000000000001,\n          \"Y\": 0.0018090445807295702\n         },\n         {\n          \"X\": -14.100000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": -14,\n          \"Y\": 0.002153878515478712\n         },\n         {\n          \"X\": -13.9,\n          \"Y\": 0.0025537884202021543\n         },\n         {\n          \"X\": -13.8,\n          \"Y\": 0\n         },\n         {\n          \"X\": -13.700000000000001,\n          \"Y\": 0.00300477802702303\n         },\n         {\n          \"X\": -13.600000000000001,\n          \"Y\": 0.0034966649448083887\n         },\n         {\n          \"X\": -13.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -13.4,\n          \"Y\": 0.004012106116885054\n         },\n         {\n          \"X\": -13.3,\n          \"Y\": 0.00452661566441389\n         },\n         {\n          \"X\": -13.200000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": -13.100000000000001,\n          \"Y\": 0.005009967305289213\n         },\n         {\n          \"X\": -13,\n          \"Y\": 0\n         },\n         {\n          \"X\": -12.9,\n          \"Y\": 0.005429106369633845\n         },\n         {\n          \"X\": -12.8,\n          \"Y\": 0.005752281429944365\n         },\n         {\n          \"X\": -12.700000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": -12.600000000000001,\n          \"Y\": 0.005953665306063443\n         },\n         {\n          \"X\": -12.5,\n          \"Y\": 0.006017446312588966\n         },\n         {\n          \"X\": -12.4,\n          \"Y\": 0\n         },\n         {\n          \"X\": -12.3,\n          \"Y\": 0.0059403842942642344\n         },\n         {\n          \"X\": -12.200000000000001,\n          \"Y\": 0.005732181546606902\n         },\n         {\n          \"X\": -12.100000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": -12,\n          \"Y\": 0.005413605491718834\n         },\n         {\n          \"X\": -11.9,\n          \"Y\": 0.005012900245328253\n         },\n         {\n          \"X\": -11.8,\n          \"Y\": 0\n         },\n         {\n          \"X\": -11.700000000000001,\n          \"Y\": 0.004561417551090564\n         },\n         {\n          \"X\": -11.600000000000001,\n          \"Y\": 0.004089464998123666\n         },\n         {\n          \"X\": -11.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -11.4,\n          \"Y\": 0.0036231368673916957\n         },\n         {\n          \"X\": -11.3,\n          \"Y\": 0.0031824963794949788\n         },\n         {\n          \"X\": -11.200000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": -11.100000000000001,\n          \"Y\": 0.0027810828451118367\n         },\n         {\n          \"X\": -11,\n          \"Y\": 0.00242644316013039\n         },\n         {\n          \"X\": -10.9,\n          \"Y\": 0\n         },\n         {\n          \"X\": -10.8,\n          \"Y\": 0.0021212756920568556\n         },\n         {\n          \"X\": -10.700000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": -10.600000000000001,\n          \"Y\": 0.0018648000123744752\n         },\n         {\n          \"X\": -10.5,\n          \"Y\": 0.001654069421817784\n         },\n         {\n          \"X\": -10.4,\n          \"Y\": 0\n         },\n         {\n          \"X\": -10.3,\n          \"Y\": 0.0014850666765360016\n         },\n         {\n          \"X\": -10.200000000000001,\n          \"Y\": 0.0013535280645435369\n         },\n         {\n          \"X\": -10.100000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": -10,\n          \"Y\": 0.001255511006135172\n         },\n         {\n          \"X\": -9.9,\n          \"Y\": 0.0011877562727703832\n         },\n         {\n          \"X\": -9.8,\n          \"Y\": 0\n         },\n         {\n          \"X\": -9.700000000000001,\n          \"Y\": 0.0011479064738874533\n         },\n         {\n          \"X\": -9.600000000000001,\n          \"Y\": 0.0011346378543831766\n         },\n         {\n          \"X\": -9.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -9.4,\n          \"Y\": 0.0011477507553396948\n         },\n         {\n          \"X\": -9.3,\n          \"Y\": 0.0011882501735408163\n         },\n         {\n          \"X\": -9.200000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": -9.1,\n          \"Y\": 0.0012584336498282212\n         },\n         {\n          \"X\": -9,\n          \"Y\": 0.0013619890589598798\n         },\n         {\n          \"X\": -8.9,\n          \"Y\": 0\n         },\n         {\n          \"X\": -8.8,\n          \"Y\": 0.0015040883772681306\n         },\n         {\n          \"X\": -8.700000000000001,\n          \"Y\": 0.001691443428590112\n         },\n         {\n          \"X\": -8.6,\n          \"Y\": 0\n         },\n         {\n          \"X\": -8.5,\n          \"Y\": 0.0019322648854741787\n         },\n         {\n          \"X\": -8.4,\n          \"Y\": 0\n         },\n         {\n          \"X\": -8.3,\n          \"Y\": 0.0022360374444147144\n         },\n         {\n          \"X\": -8.200000000000001,\n          \"Y\": 0.0026129970656184405\n         },\n         {\n          \"X\": -8.1,\n          \"Y\": 0\n         },\n         {\n          \"X\": -8,\n          \"Y\": 0.0030731813545692966\n         },\n         {\n          \"X\": -7.9,\n          \"Y\": 0.003624939290830121\n         },\n         {\n          \"X\": -7.800000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": -7.7,\n          \"Y\": 0.004272853956866564\n         },\n         {\n          \"X\": -7.6000000000000005,\n          \"Y\": 0.005015170968237787\n         },\n         {\n          \"X\": -7.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -7.4,\n          \"Y\": 0.005841037743875676\n         },\n         {\n          \"X\": -7.300000000000001,\n          \"Y\": 0.006728110927228744\n         },\n         {\n          \"X\": -7.2,\n          \"Y\": 0\n         },\n         {\n          \"X\": -7.1000000000000005,\n          \"Y\": 0.007641300256573755\n         },\n         {\n          \"X\": -7,\n          \"Y\": 0.008533467933319789\n         },\n         {\n          \"X\": -6.9,\n          \"Y\": 0\n         },\n         {\n          \"X\": -6.800000000000001,\n          \"Y\": 0.009348677639421031\n         },\n         {\n          \"X\": -6.7,\n          \"Y\": 0.010028044267644583\n         },\n         {\n          \"X\": -6.6000000000000005,\n          \"Y\": 0\n         },\n         {\n          \"X\": -6.5,\n          \"Y\": 0.010517469503292456\n         },\n         {\n          \"X\": -6.4,\n          \"Y\": 0.010775804195815733\n         },\n         {\n          \"X\": -6.300000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": -6.2,\n          \"Y\": 0.010781572042988952\n         },\n         {\n          \"X\": -6.1000000000000005,\n          \"Y\": 0\n         },\n         {\n          \"X\": -6,\n          \"Y\": 0.010536558117554922\n         },\n         {\n          \"X\": -5.9,\n          \"Y\": 0.010065325178841338\n         },\n         {\n          \"X\": -5.800000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": -5.7,\n          \"Y\": 0.009410820878581305\n         },\n         {\n          \"X\": -5.6000000000000005,\n          \"Y\": 0.00862726945097449\n         },\n         {\n          \"X\": -5.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -5.4,\n          \"Y\": 0.007772128772908578\n         },\n         {\n          \"X\": -5.300000000000001,\n          \"Y\": 0.006898875367178023\n         },\n         {\n          \"X\": -5.2,\n          \"Y\": 0\n         },\n         {\n          \"X\": -5.1000000000000005,\n          \"Y\": 0.006051855421235253\n         },\n         {\n          \"X\": -5,\n          \"Y\": 0.005263683779545624\n         },\n         {\n          \"X\": -4.9,\n          \"Y\": 0\n         },\n         {\n          \"X\": -4.800000000000001,\n          \"Y\": 0.004554981264913124\n         },\n         {\n          \"X\": -4.7,\n          \"Y\": 0.003935805483336922\n         },\n         {\n          \"X\": -4.6000000000000005,\n          \"Y\": 0\n         },\n         {\n          \"X\": -4.5,\n          \"Y\": 0.0034079960551787673\n         },\n         {\n          \"X\": -4.4,\n          \"Y\": 0.0029677530449326124\n         },\n         {\n          \"X\": -4.3,\n          \"Y\": 0\n         },\n         {\n          \"X\": -4.2,\n          \"Y\": 0.002607982242270454\n         },\n         {\n          \"X\": -4.1000000000000005,\n          \"Y\": 0\n         },\n         {\n          \"X\": -4,\n          \"Y\": 0.0023201700810518175\n         },\n         {\n          \"X\": -3.9000000000000004,\n          \"Y\": 0.00209573221926412\n         },\n         {\n          \"X\": -3.8000000000000003,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.7,\n          \"Y\": 0.0019268924639906835\n         },\n         {\n          \"X\": -3.6,\n          \"Y\": 0.0018071998276895217\n         },\n         {\n          \"X\": -3.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.4000000000000004,\n          \"Y\": 0.0017317998237324002\n         },\n         {\n          \"X\": -3.3000000000000003,\n          \"Y\": 0.0016975608408589552\n         },\n         {\n          \"X\": -3.2,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.1,\n          \"Y\": 0.0017031317296692908\n         },\n         {\n          \"X\": -3,\n          \"Y\": 0.001748980593888839\n         },\n         {\n          \"X\": -2.9000000000000004,\n          \"Y\": 0\n         },\n         {\n          \"X\": -2.8000000000000003,\n          \"Y\": 0.0018374401513802643\n         },\n         {\n          \"X\": -2.7,\n          \"Y\": 0.0019727615305498544\n         },\n         {\n          \"X\": -2.6,\n          \"Y\": 0\n         },\n         {\n          \"X\": -2.5,\n          \"Y\": 0.002161153921626808\n         },\n         {\n          \"X\": -2.4000000000000004,\n          \"Y\": 0.0024107598103611616\n         },\n         {\n          \"X\": -2.3000000000000003,\n          \"Y\": 0\n         },\n         {\n          \"X\": -2.2,\n          \"Y\": 0.0027314836107976705\n         },\n         {\n          \"X\": -2.1,\n          \"Y\": 0\n         },\n         {\n          \"X\": -2,\n          \"Y\": 0.003134557664074391\n         },\n         {\n          \"X\": -1.9000000000000001,\n          \"Y\": 0.0036317016381808157\n         },\n         {\n          \"X\": -1.8,\n          \"Y\": 0\n         },\n         {\n          \"X\": -1.7000000000000002,\n          \"Y\": 0.004233724850104972\n         },\n         {\n          \"X\": -1.6,\n          \"Y\": 0.004948459210805355\n         },\n         {\n          \"X\": -1.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": -1.4000000000000001,\n          \"Y\": 0.005778019902262646\n         },\n         {\n          \"X\": -1.3,\n          \"Y\": 0.0067155894966732235\n         },\n         {\n          \"X\": -1.2000000000000002,\n          \"Y\": 0\n         },\n         {\n          \"X\": -1.1,\n          \"Y\": 0.007742199105428649\n         },\n         {\n          \"X\": -1,\n          \"Y\": 0.008824278705883445\n         },\n         {\n          \"X\": -0.9,\n          \"Y\": 0\n         },\n         {\n          \"X\": -0.8,\n          \"Y\": 0.009912952514267758\n         },\n         {\n          \"X\": -0.7000000000000001,\n          \"Y\": 0.010946014246054729\n         },\n         {\n          \"X\": -0.6000000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": -0.5,\n          \"Y\": 0.011853110223874704\n         },\n         {\n          \"X\": -0.4,\n          \"Y\": 0.01256388160990049\n         },\n         {\n          \"X\": -0.30000000000000004,\n          \"Y\": 0\n         },\n         {\n          \"X\": -0.2,\n          \"Y\": 0.013017849545896217\n         },\n         {\n          \"X\": -0.1,\n          \"Y\": 0\n         },\n         {\n          \"X\": 0,\n          \"Y\": 0.01317401305631529\n         },\n         {\n          \"X\": 0.1,\n          \"Y\": 0.013017849545896217\n         },\n         {\n          \"X\": 0.2,\n          \"Y\": 0\n         },\n         {\n          \"X\": 0.30000000000000004,\n          \"Y\": 0.01256388160990049\n         },\n         {\n          \"X\": 0.4,\n          \"Y\": 0.01185311022387471\n         },\n         {\n          \"X\": 0.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": 0.6000000000000001,\n          \"Y\": 0.010946014246054729\n         },\n         {\n          \"X\": 0.7000000000000001,\n          \"Y\": 0.009912952514267758\n         },\n         {\n          \"X\": 0.8,\n          \"Y\": 0\n         },\n         {\n          \"X\": 0.9,\n          \"Y\": 0.008824278705883445\n         },\n         {\n          \"X\": 1,\n          \"Y\": 0.007742199105428649\n         },\n         {\n          \"X\": 1.1,\n          \"Y\": 0\n         },\n         {\n          \"X\": 1.2000000000000002,\n          \"Y\": 0.0067155894966732235\n         },\n         {\n          \"X\": 1.3,\n          \"Y\": 0.005778019902262656\n         },\n         {\n          \"X\": 1.4000000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": 1.5,\n          \"Y\": 0.004948459210805355\n         },\n         {\n          \"X\": 1.6,\n          \"Y\": 0.004233724850104972\n         },\n         {\n          \"X\": 1.7000000000000002,\n          \"Y\": 0\n         },\n         {\n          \"X\": 1.8,\n          \"Y\": 0.0036317016381808157\n         },\n         {\n          \"X\": 1.9000000000000001,\n          \"Y\": 0.003134557664074391\n         },\n         {\n          \"X\": 2,\n          \"Y\": 0\n         },\n         {\n          \"X\": 2.1,\n          \"Y\": 0.0027314836107976675\n         },\n         {\n          \"X\": 2.2,\n          \"Y\": 0\n         },\n         {\n          \"X\": 2.3000000000000003,\n          \"Y\": 0.002410759810361158\n         },\n         {\n          \"X\": 2.4000000000000004,\n          \"Y\": 0.0021611539216268064\n         },\n         {\n          \"X\": 2.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": 2.6,\n          \"Y\": 0.001972761530549856\n         },\n         {\n          \"X\": 2.7,\n          \"Y\": 0.0018374401513802643\n         },\n         {\n          \"X\": 2.8000000000000003,\n          \"Y\": 0\n         },\n         {\n          \"X\": 2.9000000000000004,\n          \"Y\": 0.0017489805938888383\n         },\n         {\n          \"X\": 3,\n          \"Y\": 0.0017031317296692908\n         },\n         {\n          \"X\": 3.1,\n          \"Y\": 0\n         },\n         {\n          \"X\": 3.2,\n          \"Y\": 0.0016975608408589552\n         },\n         {\n          \"X\": 3.3000000000000003,\n          \"Y\": 0.0017317998237324002\n         },\n         {\n          \"X\": 3.4000000000000004,\n          \"Y\": 0\n         },\n         {\n          \"X\": 3.5,\n          \"Y\": 0.0018071998276895217\n         },\n         {\n          \"X\": 3.6,\n          \"Y\": 0.0019268924639906835\n         },\n         {\n          \"X\": 3.7,\n          \"Y\": 0\n         },\n         {\n          \"X\": 3.8000000000000003,\n          \"Y\": 0.00209573221926412\n         },\n         {\n          \"X\": 3.9000000000000004,\n          \"Y\": 0.0023201700810518175\n         },\n         {\n          \"X\": 4,\n          \"Y\": 0\n         },\n         {\n          \"X\": 4.1000000000000005,\n          \"Y\": 0.002607982242270454\n         },\n         {\n          \"X\": 4.2,\n          \"Y\": 0\n         },\n         {\n          \"X\": 4.3,\n          \"Y\": 0.0029677530449326124\n         },\n         {\n          \"X\": 4.4,\n          \"Y\": 0.0034079960551787673\n         },\n         {\n          \"X\": 4.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": 4.6000000000000005,\n          \"Y\": 0.003935805483336922\n         },\n         {\n          \"X\": 4.7,\n          \"Y\": 0.004554981264913124\n         },\n         {\n          \"X\": 4.800000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": 4.9,\n          \"Y\": 0.005263683779545624\n         },\n         {\n          \"X\": 5,\n          \"Y\": 0.006051855421235253\n         },\n         {\n          \"X\": 5.1000000000000005,\n          \"Y\": 0\n         },\n         {\n          \"X\": 5.2,\n          \"Y\": 0.006898875367178023\n         },\n         {\n          \"X\": 5.300000000000001,\n          \"Y\": 0.007772128772908578\n         },\n         {\n          \"X\": 5.4,\n          \"Y\": 0\n         },\n         {\n          \"X\": 5.5,\n          \"Y\": 0.00862726945097449\n         },\n         {\n          \"X\": 5.6000000000000005,\n          \"Y\": 0.009410820878581295\n         },\n         {\n          \"X\": 5.7,\n          \"Y\": 0\n         },\n         {\n          \"X\": 5.800000000000001,\n          \"Y\": 0.010065325178841338\n         },\n         {\n          \"X\": 5.9,\n          \"Y\": 0.010536558117554922\n         },\n         {\n          \"X\": 6,\n          \"Y\": 0\n         },\n         {\n          \"X\": 6.1000000000000005,\n          \"Y\": 0.010781572042988952\n         },\n         {\n          \"X\": 6.2,\n          \"Y\": 0\n         },\n         {\n          \"X\": 6.300000000000001,\n          \"Y\": 0.010775804195815733\n         },\n         {\n          \"X\": 6.4,\n          \"Y\": 0.01051746950329246\n         },\n         {\n          \"X\": 6.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": 6.6000000000000005,\n          \"Y\": 0.010028044267644583\n         },\n         {\n          \"X\": 6.7,\n          \"Y\": 0.009348677639421028\n         },\n         {\n          \"X\": 6.800000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": 6.9,\n          \"Y\": 0.008533467933319789\n         },\n         {\n          \"X\": 7,\n          \"Y\": 0.007641300256573755\n         },\n         {\n          \"X\": 7.1000000000000005,\n          \"Y\": 0\n         },\n         {\n          \"X\": 7.2,\n          \"Y\": 0.006728110927228744\n         },\n         {\n          \"X\": 7.300000000000001,\n          \"Y\": 0.005841037743875676\n         },\n         {\n          \"X\": 7.4,\n          \"Y\": 0\n         },\n         {\n          \"X\": 7.5,\n          \"Y\": 0.005015170968237779\n         },\n         {\n          \"X\": 7.6000000000000005,\n          \"Y\": 0.004272853956866571\n         },\n         {\n          \"X\": 7.7,\n          \"Y\": 0\n         },\n         {\n          \"X\": 7.800000000000001,\n          \"Y\": 0.003624939290830121\n         },\n         {\n          \"X\": 7.9,\n          \"Y\": 0.0030731813545692966\n         },\n         {\n          \"X\": 8,\n          \"Y\": 0\n         },\n         {\n          \"X\": 8.1,\n          \"Y\": 0.0026129970656184453\n         },\n         {\n          \"X\": 8.200000000000001,\n          \"Y\": 0.0022360374444147144\n         },\n         {\n          \"X\": 8.3,\n          \"Y\": 0\n         },\n         {\n          \"X\": 8.4,\n          \"Y\": 0.0019322648854741787\n         },\n         {\n          \"X\": 8.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": 8.6,\n          \"Y\": 0.0016914434285901097\n         },\n         {\n          \"X\": 8.700000000000001,\n          \"Y\": 0.0015040883772681288\n         },\n         {\n          \"X\": 8.8,\n          \"Y\": 0\n         },\n         {\n          \"X\": 8.9,\n          \"Y\": 0.0013619890589598787\n         },\n         {\n          \"X\": 9,\n          \"Y\": 0.0012584336498282212\n         },\n         {\n          \"X\": 9.1,\n          \"Y\": 0\n         },\n         {\n          \"X\": 9.200000000000001,\n          \"Y\": 0.0011882501735408163\n         },\n         {\n          \"X\": 9.3,\n          \"Y\": 0.0011477507553396948\n         },\n         {\n          \"X\": 9.4,\n          \"Y\": 0\n         },\n         {\n          \"X\": 9.5,\n          \"Y\": 0.0011346378543831764\n         },\n         {\n          \"X\": 9.600000000000001,\n          \"Y\": 0.0011479064738874538\n         },\n         {\n          \"X\": 9.700000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": 9.8,\n          \"Y\": 0.0011877562727703832\n         },\n         {\n          \"X\": 9.9,\n          \"Y\": 0.0012555110061351709\n         },\n         {\n          \"X\": 10,\n          \"Y\": 0\n         },\n         {\n          \"X\": 10.100000000000001,\n          \"Y\": 0.0013535280645435369\n         },\n         {\n          \"X\": 10.200000000000001,\n          \"Y\": 0.0014850666765359973\n         },\n         {\n          \"X\": 10.3,\n          \"Y\": 0\n         },\n         {\n          \"X\": 10.4,\n          \"Y\": 0.0016540694218177886\n         },\n         {\n          \"X\": 10.5,\n          \"Y\": 0.0018648000123744752\n         },\n         {\n          \"X\": 10.600000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": 10.700000000000001,\n          \"Y\": 0.0021212756920568556\n         },\n         {\n          \"X\": 10.8,\n          \"Y\": 0\n         },\n         {\n          \"X\": 10.9,\n          \"Y\": 0.00242644316013039\n         },\n         {\n          \"X\": 11,\n          \"Y\": 0.0027810828451118323\n         },\n         {\n          \"X\": 11.100000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": 11.200000000000001,\n          \"Y\": 0.0031824963794949788\n         },\n         {\n          \"X\": 11.3,\n          \"Y\": 0.0036231368673916835\n         },\n         {\n          \"X\": 11.4,\n          \"Y\": 0\n         },\n         {\n          \"X\": 11.5,\n          \"Y\": 0.00408946499812368\n         },\n         {\n          \"X\": 11.600000000000001,\n          \"Y\": 0.004561417551090551\n         },\n         {\n          \"X\": 11.700000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": 11.8,\n          \"Y\": 0.005012900245328253\n         },\n         {\n          \"X\": 11.9,\n          \"Y\": 0.005413605491718834\n         },\n         {\n          \"X\": 12,\n          \"Y\": 0\n         },\n         {\n          \"X\": 12.100000000000001,\n          \"Y\": 0.005732181546606894\n         },\n         {\n          \"X\": 12.200000000000001,\n          \"Y\": 0.0059403842942642344\n         },\n         {\n          \"X\": 12.3,\n          \"Y\": 0\n         },\n         {\n          \"X\": 12.4,\n          \"Y\": 0.006017446312588966\n         },\n         {\n          \"X\": 12.5,\n          \"Y\": 0.005953665306063443\n         },\n         {\n          \"X\": 12.600000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": 12.700000000000001,\n          \"Y\": 0.005752281429944362\n         },\n         {\n          \"X\": 12.8,\n          \"Y\": 0.005429106369633851\n         },\n         {\n          \"X\": 12.9,\n          \"Y\": 0\n         },\n         {\n          \"X\": 13,\n          \"Y\": 0.005009967305289222\n         },\n         {\n          \"X\": 13.100000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": 13.200000000000001,\n          \"Y\": 0.00452661566441389\n         },\n         {\n          \"X\": 13.3,\n          \"Y\": 0.004012106116885044\n         },\n         {\n          \"X\": 13.4,\n          \"Y\": 0\n         },\n         {\n          \"X\": 13.5,\n          \"Y\": 0.003496664944808404\n         },\n         {\n          \"X\": 13.600000000000001,\n          \"Y\": 0.00300477802702303\n         },\n         {\n          \"X\": 13.700000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": 13.8,\n          \"Y\": 0.0025537884202021543\n         },\n         {\n          \"X\": 13.9,\n          \"Y\": 0.002153878515478723\n         },\n         {\n          \"X\": 14,\n          \"Y\": 0\n         },\n         {\n          \"X\": 14.100000000000001,\n          \"Y\": 0.0018090445807295765\n         },\n         {\n          \"X\": 14.200000000000001,\n          \"Y\": 0.0015185870291939\n         },\n         {\n          \"X\": 14.3,\n          \"Y\": 0\n         },\n         {\n          \"X\": 14.4,\n          \"Y\": 0.001278700157673131\n         },\n         {\n          \"X\": 14.5,\n          \"Y\": 0.0010838799877914424\n         },\n         {\n          \"X\": 14.600000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": 14.700000000000001,\n          \"Y\": 0.0009280129383938467\n         },\n         {\n          \"X\": 14.8,\n          \"Y\": 0.0008051210901373395\n         },\n         {\n          \"X\": 14.9,\n          \"Y\": 0\n         },\n         {\n          \"X\": 15,\n          \"Y\": 0.0007098083145886206\n         },\n         {\n          \"X\": 15.100000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": 15.200000000000001,\n          \"Y\": 0.0006374803669493941\n         },\n         {\n          \"X\": 15.3,\n          \"Y\": 0.0005844138495995058\n         },\n         {\n          \"X\": 15.4,\n          \"Y\": 0\n         },\n         {\n          \"X\": 15.5,\n          \"Y\": 0.0005477366276902926\n         },\n         {\n          \"X\": 15.600000000000001,\n          \"Y\": 0.0005253652835879645\n         },\n         {\n          \"X\": 15.700000000000001,\n          \"Y\": 0\n         },\n         {\n          \"X\": 15.8,\n          \"Y\": 0.0005159289268464206\n         },\n         {\n          \"X\": 15.9,\n          \"Y\": 0.0005186952975732348\n         },\n         {\n          \"X\": 16,\n          \"Y\": 0\n         },\n         {\n          \"X\": 16.1,\n          \"Y\": 0.0005335047831996493\n         },\n         {\n          \"X\": 16.2,\n          \"Y\": 0.0005607099351321832\n         },\n         {\n          \"X\": 16.3,\n          \"Y\": 0\n         },\n         {\n          \"X\": 16.400000000000002,\n          \"Y\": 0.0006011113365011507\n         },\n         {\n          \"X\": 16.5,\n          \"Y\": 0.000655874541151163\n         },\n         {\n          \"X\": 16.6,\n          \"Y\": 0\n         },\n         {\n          \"X\": 16.7,\n          \"Y\": 0.0007264072729664819\n         },\n         {\n          \"X\": 16.8,\n          \"Y\": 0\n         },\n         {\n          \"X\": 16.900000000000002,\n          \"Y\": 0.0008141722022182556\n         },\n         {\n          \"X\": 17,\n          \"Y\": 0.0009204108174068761\n         },\n         {\n          \"X\": 17.1,\n          \"Y\": 0\n         },\n         {\n          \"X\": 17.2,\n          \"Y\": 0.001045761930007302\n         },\n         {\n          \"X\": 17.3,\n          \"Y\": 0.0011897784691130644\n         },\n         {\n          \"X\": 17.400000000000002,\n          \"Y\": 0\n         },\n         {\n          \"X\": 17.5,\n          \"Y\": 0.001350381261261749\n         },\n         {\n          \"X\": 17.6,\n          \"Y\": 0.0015233365030816344\n         },\n         {\n          \"X\": 17.7,\n          \"Y\": 0\n         },\n         {\n          \"X\": 17.8,\n          \"Y\": 0.0017018942662864512\n         },\n         {\n          \"X\": 17.900000000000002,\n          \"Y\": 0.0018767582502326862\n         },\n         {\n          \"X\": 18,\n          \"Y\": 0\n         },\n         {\n          \"X\": 18.1,\n          \"Y\": 0.002036545448992291\n         },\n         {\n          \"X\": 18.2,\n          \"Y\": 0\n         },\n         {\n          \"X\": 18.3,\n          \"Y\": 0.0021688166333168066\n         },\n         {\n          \"X\": 18.400000000000002,\n          \"Y\": 0.002261613928885639\n         },\n         {\n          \"X\": 18.5,\n          \"Y\": 0\n         },\n         {\n          \"X\": 18.6,\n          \"Y\": 0.0023052637037866875\n         },\n         {\n          \"X\": 18.7,\n          \"Y\": 0.0022940565660306165\n         },\n         {\n          \"X\": 18.8,\n          \"Y\": 0\n         },\n         {\n          \"X\": 18.900000000000002,\n          \"Y\": 0.002227374182915131\n         },\n         {\n          \"X\": 19,\n          \"Y\": 0.002109936666272357\n         },\n         {\n          \"X\": 19.1,\n          \"Y\": 0\n         },\n         {\n          \"X\": 19.200000000000003,\n          \"Y\": 0.0019510745222390512\n         },\n         {\n          \"X\": 19.3,\n          \"Y\": 0\n         },\n         {\n          \"X\": 19.400000000000002,\n          \"Y\": 0.0017632040272647213\n         },\n         {\n          \"X\": 19.5,\n          \"Y\": 0.001559897607835034\n         },\n         {\n          \"X\": 19.6,\n          \"Y\": 0\n         },\n         {\n          \"X\": 19.700000000000003,\n          \"Y\": 0.0013540129035337185\n         },\n         {\n          \"X\": 19.8,\n          \"Y\": 0.0011562628868415214\n         },\n         {\n          \"X\": 19.900000000000002,\n          \"Y\": 0\n         },\n         {\n          \"X\": 20,\n          \"Y\": 0.0009744269454590605\n         }\n        ]\n       },\n       \"encoding\": {\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"bar\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"\\n\",\n    \"model4 :: MonadMeasure m => m Double\\n\",\n    \"model4 = do\\n\",\n    \"\\n\",\n    \"    x <- normal 0 10\\n\",\n    \"    factor $ Exp (cos x )\\n\",\n    \"    return x\\n\",\n    \"\\n\",\n    \"plot $ Control.Monad.Bayes.Integrator.histogram 400 0.1 model4\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can also plot CDFs, as in:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"X\": -3.4000000000000004,\n          \"Y\": 6.950317017405424e-05\n         },\n         {\n          \"X\": -3.3000000000000003,\n          \"Y\": 0.00010164148887630666\n         },\n         {\n          \"X\": -3.2,\n          \"Y\": 0.00014714278717500919\n         },\n         {\n          \"X\": -3.1,\n          \"Y\": 0.0002116359331091854\n         },\n         {\n          \"X\": -3,\n          \"Y\": 0.0003008830961431438\n         },\n         {\n          \"X\": -2.9000000000000004,\n          \"Y\": 0.0004245565559178024\n         },\n         {\n          \"X\": -2.8000000000000003,\n          \"Y\": 0.000592958914929261\n         },\n         {\n          \"X\": -2.7,\n          \"Y\": 0.0008210921898807828\n         },\n         {\n          \"X\": -2.6,\n          \"Y\": 0.0011295218764828085\n         },\n         {\n          \"X\": -2.5,\n          \"Y\": 0.0015370833432355548\n         },\n         {\n          \"X\": -2.4000000000000004,\n          \"Y\": 0.0020767346995768524\n         },\n         {\n          \"X\": -2.3000000000000003,\n          \"Y\": 0.0027750550507635594\n         },\n         {\n          \"X\": -2.2,\n          \"Y\": 0.003682003095772265\n         },\n         {\n          \"X\": -2.1,\n          \"Y\": 0.004836377479561093\n         },\n         {\n          \"X\": -2,\n          \"Y\": 0.0063037376968154545\n         },\n         {\n          \"X\": -1.9000000000000001,\n          \"Y\": 0.00815563985387498\n         },\n         {\n          \"X\": -1.8,\n          \"Y\": 0.010445470950775741\n         },\n         {\n          \"X\": -1.7000000000000002,\n          \"Y\": 0.013287292043947026\n         },\n         {\n          \"X\": -1.6,\n          \"Y\": 0.016729364345415422\n         },\n         {\n          \"X\": -1.5,\n          \"Y\": 0.020920698541232886\n         },\n         {\n          \"X\": -1.4000000000000001,\n          \"Y\": 0.025949070122595248\n         },\n         {\n          \"X\": -1.3,\n          \"Y\": 0.0319278845185567\n         },\n         {\n          \"X\": -1.2000000000000002,\n          \"Y\": 0.038977618089017146\n         },\n         {\n          \"X\": -1.1,\n          \"Y\": 0.04717377520148923\n         },\n         {\n          \"X\": -1,\n          \"Y\": 0.05669628899414307\n         },\n         {\n          \"X\": -0.9,\n          \"Y\": 0.06763582816867231\n         },\n         {\n          \"X\": -0.8,\n          \"Y\": 0.07996363197165399\n         },\n         {\n          \"X\": -0.7000000000000001,\n          \"Y\": 0.09399792755350353\n         },\n         {\n          \"X\": -0.6000000000000001,\n          \"Y\": 0.10961956296236852\n         },\n         {\n          \"X\": -0.5,\n          \"Y\": 0.1270642721005723\n         },\n         {\n          \"X\": -0.4,\n          \"Y\": 0.14594054174594856\n         },\n         {\n          \"X\": -0.30000000000000004,\n          \"Y\": 0.1667455754322485\n         },\n         {\n          \"X\": -0.2,\n          \"Y\": 0.18898965850078664\n         },\n         {\n          \"X\": -0.1,\n          \"Y\": 0.21300741023510444\n         },\n         {\n          \"X\": 0,\n          \"Y\": 0.23837738025618643\n         },\n         {\n          \"X\": 0.1,\n          \"Y\": 0.26529176788222536\n         },\n         {\n          \"X\": 0.2,\n          \"Y\": 0.29324552125305514\n         },\n         {\n          \"X\": 0.30000000000000004,\n          \"Y\": 0.32243763790607055\n         },\n         {\n          \"X\": 0.4,\n          \"Y\": 0.3522145494355974\n         },\n         {\n          \"X\": 0.5,\n          \"Y\": 0.38302771430139804\n         },\n         {\n          \"X\": 0.6000000000000001,\n          \"Y\": 0.41380020335761064\n         },\n         {\n          \"X\": 0.7000000000000001,\n          \"Y\": 0.4453312940716577\n         },\n         {\n          \"X\": 0.8,\n          \"Y\": 0.47627118275475033\n         },\n         {\n          \"X\": 0.9,\n          \"Y\": 0.5076247482728029\n         },\n         {\n          \"X\": 1,\n          \"Y\": 0.5378594530580645\n         },\n         {\n          \"X\": 1.1,\n          \"Y\": 0.5681276391528831\n         },\n         {\n          \"X\": 1.2000000000000002,\n          \"Y\": 0.597067457157867\n         },\n         {\n          \"X\": 1.3,\n          \"Y\": 0.6256058513648695\n         },\n         {\n          \"X\": 1.4000000000000001,\n          \"Y\": 0.6525978918543351\n         },\n         {\n          \"X\": 1.5,\n          \"Y\": 0.6788978994261632\n         },\n         {\n          \"X\": 1.6,\n          \"Y\": 0.7035287765151896\n         },\n         {\n          \"X\": 1.7000000000000002,\n          \"Y\": 0.7270983751452831\n         },\n         {\n          \"X\": 1.8,\n          \"Y\": 0.7491904916216832\n         },\n         {\n          \"X\": 1.9000000000000001,\n          \"Y\": 0.7700751600787092\n         },\n         {\n          \"X\": 2,\n          \"Y\": 0.7895590499347593\n         },\n         {\n          \"X\": 2.1,\n          \"Y\": 0.8076546744364452\n         },\n         {\n          \"X\": 2.2,\n          \"Y\": 0.8244722667497988\n         },\n         {\n          \"X\": 2.3000000000000003,\n          \"Y\": 0.8399754533832623\n         },\n         {\n          \"X\": 2.4000000000000004,\n          \"Y\": 0.854374010814152\n         },\n         {\n          \"X\": 2.5,\n          \"Y\": 0.8675029404443491\n         },\n         {\n          \"X\": 2.6,\n          \"Y\": 0.8796500039536462\n         },\n         {\n          \"X\": 2.7,\n          \"Y\": 0.8906621206366212\n         },\n         {\n          \"X\": 2.8000000000000003,\n          \"Y\": 0.9008027011551201\n         },\n         {\n          \"X\": 2.9000000000000004,\n          \"Y\": 0.9099942009284938\n         },\n         {\n          \"X\": 3,\n          \"Y\": 0.918454890673649\n         },\n         {\n          \"X\": 3.1,\n          \"Y\": 0.9260988435620305\n         },\n         {\n          \"X\": 3.2,\n          \"Y\": 0.9330649684929808\n         },\n         {\n          \"X\": 3.3000000000000003,\n          \"Y\": 0.939388711836513\n         },\n         {\n          \"X\": 3.4000000000000004,\n          \"Y\": 0.9451029311503909\n         },\n         {\n          \"X\": 3.5,\n          \"Y\": 0.9503124607308405\n         }\n        ]\n       },\n       \"encoding\": {\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"bar\",\n       \"width\": 400\n      },\n      \"image/png\": \"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fNXt6R/72MfSvtc0nR++RwG15XnCCScgBAoYVSDuOSo2lZ/RqOMMBVAABVAg1goAv1iHl8GhAAqgAApMpQDwY16gAAqgAArknALAL+dCzoBRAAVQAAWAH3MABVAABVAg5xQAfjkXcgaMAiiAAigA/JgDKBBBBdR7SN966y1RL1NWbztS7/ZULx1QL3j4sz/7swiOiFNGAbcKAD+3etMbChhRoKenR9SLrdXr5dRPZNXX13svGVDvk1W/9MCBAigwvQLAjxmCAhFVQP1si3o7TUtLi1xxxRXeS90VBDlQAAXSKwD80muEBQqEUgH1svff+73f895pW1VV5f1+mdoC5UABFEivAPBLrxEWKBBKBdQvVZx33nneVqf6hQf1O2Z5eXmhPFdOCgXCpgDwC1tEOB8U8KmAelu9+rHRpqYmWbp0qfz7v/+7fOMb3/DZGjMUyG0FgF9ux5/RR1SBjRs3yoIFC7wf7Pzud78rX/va17yfl9q6dav3+34cKIAC0ysA/JghKBAxBUZHR71rfGNjY95vQc6YMUPeeecdKS8vly996UuiftOMAwVQAPgxB1AABVAABVAgQQEqPyYECqAACqBAzikA/HIu5AwYBVAABVAA+DEHUAAFUAAFck4B4JdzIWfAKIACKIACwI85gAIogAIokHMK/H8eXyfYQ9db4QAAAABJRU5ErkJggg==\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plot $ plotCdf 70 0.1 0 (normal 0 1 + gamma 1 1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Expressing distributions with code\\n\",\n    \"\\n\",\n    \"If you are familiar with Haskell, then it should be clear that the class of distributions you can express by writing probabilistic programs is very broad, since `m` is a monad. For example, you can use `fmap` to apply a function to the support of the distribution, like:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"mapped :: MonadMeasure m => m Bool\\n\",\n    \"mapped = fmap (> 0) (model 0.5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"And you can use the standard set of monadic and applicative combinators, like `when`, `filterM` or `replicateM`:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"lengthDist :: MonadMeasure m => Double -> m Int\\n\",\n    \"lengthDist observation = do\\n\",\n    \"    means <- replicateM 3 (model observation)\\n\",\n    \"    return (length $ filter (>=1) means)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Given an observation, this is the probability on how many (out of 3) independent draws from the posterior of the model conditioned on the observation will be greater or equal to 1. Consider the hassle of defining this with an equation, and you'll see why probabilistic programming is appealing as a way of accelerating modelling and inference.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[(1,0.4228030765220977),(2,0.3090938161626379),(0,0.19278121201287118),(3,7.532189530239404e-2)]\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"enumerate $ lengthDist 0.5\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"X\": \"2\",\n          \"Y\": 0.4197137519723297\n         },\n         {\n          \"X\": \"1\",\n          \"Y\": 0.31507728008413355\n         },\n         {\n          \"X\": \"3\",\n          \"Y\": 0.18636658869600853\n         },\n         {\n          \"X\": \"0\",\n          \"Y\": 0.07884237924752768\n         }\n        ]\n       },\n       \"encoding\": {\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"nominal\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"bar\",\n       \"width\": 400\n      },\n      \"image/png\": \"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o6CHLymdcRiiDmeiYIgm9gAF2IQMl5NAD/t6vPrqq+/5sJi0vO1CCwWvIWqRXn8cOsT1s0tlJgU4FVrpH4se6WecSgQ6xFRoMTZtBDDEtKFdtjAFWIezbxT08CWlMw5D1OFMFI5MTewBCrAJGTgytSXDVfXgyNSoWElOiw5RR10MUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM44OUYczUegQTewBCrAJGegQbclAh2hUj6xNiw5RR3oMUYezbxT08CWlM85Ehzg7OysFBQWSm5u76l1fuHBBNm3aJDk5OZfH+Mxzgw8fPiz79+/XIUqUdRHAENeFLeVJFOCUkaV1AnqkFW/Ki2fUEKempqSpqUny8vJkfHxc2tvbpbm5edlNvPHGG3L27Fm5/fbb5fvf/7588IMfFJ95Vy6CIaa8L9QnYIg6yCnAOpx9o6CHLymdcRk1xK6uLpmZmZHOzk6ZnJyU8vJycV1fYWHh5bt/9tln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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plot $ fmap (first (pack . show)) $ enumerate $ lengthDist 0.99\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"X\": \"1\",\n          \"Y\": 0.43338893548101054\n         },\n         {\n          \"X\": \"0\",\n          \"Y\": 0.38211546660576284\n         },\n         {\n          \"X\": \"2\",\n          \"Y\": 0.16384748050615444\n         },\n         {\n          \"X\": \"3\",\n          \"Y\": 0.020648117407072838\n         }\n        ]\n       },\n       \"encoding\": {\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"nominal\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"bar\",\n       \"width\": 400\n      },\n      \"image/png\": \"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xzj/BMwCcbl197jT3Q3m5+endDbunalX3kVyh5gSPpPB2gueQDTRIfiw4aytovWhnY9x/gmYB6L/U1g5I49M00147fm1FzyBaOMIHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLRP9OsnVF7wROINksEHzactVW0PrTzMc4/AQLR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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plot $ fmap (first (pack . show)) $ enumerator $ lengthDist 0.001\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Exact sampling is pretty limited. For models with continuous random variables, or large discrete ones, it is a no-go. \\n\",\n    \"\\n\",\n    \"The broader goal is to be able to define your distribution of interest, like `model`, and then apply different inference technique, usually approximate, to it. This is what monad-bayes (and other probabilistic programming languages) enable. See the following tutorials for details.\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Haskell - nixpkgs\",\n   \"language\": \"haskell\",\n   \"name\": \"ihaskell_nixpkgs\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": \"ihaskell\",\n   \"file_extension\": \".hs\",\n   \"mimetype\": \"text/x-haskell\",\n   \"name\": \"haskell\",\n   \"pygments_lexer\": \"Haskell\",\n   \"version\": \"9.0.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 4\n}\n"
  },
  {
    "path": "notebooks/tutorials/Lazy.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"id\": \"043dfea4-1d1a-42c7-8dbe-404e1c3442e4\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import qualified Control.Monad.Bayes.Sampler.Lazy as Lazy\\n\",\n    \"import qualified Control.Monad.Bayes.Inference.Lazy.MH as Lazy\\n\",\n    \"import qualified Control.Monad.Bayes.Inference.Lazy.WIS as Lazy\\n\",\n    \"import qualified Control.Monad.Bayes.Sampler.Strict as Strict\\n\",\n    \"\\n\",\n    \"import Control.Monad.Bayes.Class\\n\",\n    \"import qualified Data.Text as T\\n\",\n    \"import Numeric.Log\\n\",\n    \"import Control.Arrow (first, second)\\n\",\n    \"import Statistics.Distribution\\n\",\n    \"import qualified Statistics.Distribution.Poisson as S\\n\",\n    \"import Control.Monad.Bayes.Enumerator\\n\",\n    \"\\n\",\n    \":l ../plotting.hs\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"6cc366b0-9a2d-41b5-9a18-6f2dd022d383\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Lazy Sampling\\n\",\n    \"\\n\",\n    \"The sampler defined in `Control.Monad.Bayes.Sampler.Strict` fares poorly with infinite data structures. For example, `finiteList` defined below is a distribution over a small finite set, but because it is defined as the marginal of an infinite list, running it with a strict sampling monad will not terminate.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"id\": \"54b733d5-7914-4fd0-888c-21fa7992f38a\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"finiteList :: MonadDistribution m => m [Double]\\n\",\n    \"finiteList = do\\n\",\n    \"    infiniteList <- sequence $ repeat random\\n\",\n    \"    return (take 3 infiniteList)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"id\": \"df4ce909-5303-4c57-a6c9-ae0813873789\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"-- Code below will not terminate:\\n\",\n    \"-- Strict.sampler finiteList\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"e5728ea8-fbba-42be-93ec-6df139dcbdcd\",\n   \"metadata\": {},\n   \"source\": [\n    \"One solution is to use a streaming library, such as `pipes`, and indeed this proves useful in many situations. But another is to define a lazy sampler, which is the approach taken by [LazyPPL](https://lazyppl.bitbucket.io/). \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"id\": \"b38c604a-3dc1-4fc3-b4c2-429a32528cb8\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[0.8503508027827793,0.21861861054454101,0.975152268854938]\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"Lazy.sampler finiteList\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"daee5898-3b3d-4876-ad21-14ae16f2fe7e\",\n   \"metadata\": {},\n   \"source\": [\n    \"`Control.Monad.Bayes.Sampler.Lazy` is simply a port of LazyPPL, with some refactoring. In particular, what LazyPPL calls the `Prob` monad, we now call `SamplerT`, and `Meas` is built modularly as `WeightedT SamplerT`. \\n\",\n    \"\\n\",\n    \"LazyPPL also comes with a number of inference algorithms that make special use of the sampler's laziness, including weighted importance sampling and Metropolis-Hastings. Monad-Bayes has these also, as shown below:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"id\": \"bbefc916-65fd-4a99-a5e0-7273c4f3d29b\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model :: MonadMeasure m => m Bool\\n\",\n    \"model = do\\n\",\n    \"  -- Prior belief: it is Sunday with prob. 1/7\\n\",\n    \"  sunday <- bernoulli (1/7)\\n\",\n    \"  -- I know the rates of buses on the different days:\\n\",\n    \"  let rate = if sunday then 3 else 10 \\n\",\n    \"  -- observe 4 buses\\n\",\n    \"  factor $ Exp $ logProbability (S.poisson rate) 4\\n\",\n    \"  -- score $ poissonPdf rate 4\\n\",\n    \"  return sunday\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"id\": \"de863302-a371-49f0-81a6-f8e45ab740bb\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"xws <- Lazy.lwis 10000 model\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"id\": \"634c7c3e-2731-43a5-af60-14bb168a3863\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"X\": \"True\",\n          \"Y\": 0.59\n         },\n         {\n          \"X\": \"False\",\n          \"Y\": 0.41\n         }\n        ]\n       },\n       \"encoding\": {\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"nominal\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"bar\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plot $ first (T.pack . show) <$> toEmpirical (take 10000 xws)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"id\": \"d500e37c-0926-4956-ad03-f58b7d8efce6\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"X\": \"(True,0.16803135574154085)\",\n          \"Y\": 0.6333\n         },\n         {\n          \"X\": \"(False,1.891663740103538e-2)\",\n          \"Y\": 0.3667\n         }\n        ]\n       },\n       \"encoding\": {\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"nominal\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"bar\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"xws <- Lazy.mh 0.5 model\\n\",\n    \"\\n\",\n    \"plot $ first (T.pack . show) <$> toEmpirical (take 10000 xws)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Haskell - nixpkgs\",\n   \"language\": \"haskell\",\n   \"name\": \"ihaskell_nixpkgs\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": \"ihaskell\",\n   \"file_extension\": \".hs\",\n   \"mimetype\": \"text/x-haskell\",\n   \"name\": \"haskell\",\n   \"pygments_lexer\": \"Haskell\",\n   \"version\": \"9.0.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "notebooks/tutorials/MCMC.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \":e ImportQualifiedPost\\n\",\n    \":e FlexibleContexts\\n\",\n    \":e BlockArguments\\n\",\n    \":e TupleSections\\n\",\n    \":e FlexibleContexts\\n\",\n    \":e OverloadedStrings\\n\",\n    \":e LambdaCase\\n\",\n    \"\\n\",\n    \"import qualified Data.Text as T\\n\",\n    \"import Control.Arrow (first,second)\\n\",\n    \"import Control.Monad\\n\",\n    \"import Graphics.Vega.VegaLite hiding (runDensityT)\\n\",\n    \"import qualified Graphics.Vega.VegaLite as VL\\n\",\n    \"import IHaskell.Display.Hvega (vlShow)\\n\",\n    \"\\n\",\n    \"import Control.Monad.Bayes.Class\\n\",\n    \"import Control.Monad.Bayes.Enumerator\\n\",\n    \"\\n\",\n    \"import Control.Monad.Bayes.Weighted\\n\",\n    \"import Control.Monad.Bayes.Sampler.Strict\\n\",\n    \"import Control.Monad.Bayes.Traced.Static\\n\",\n    \"import Control.Monad.Bayes.Inference.MCMC\\n\",\n    \"\\n\",\n    \":l ../plotting.hs\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# MCMC\\n\",\n    \"\\n\",\n    \"Following [wikipedia](https://en.wikipedia.org/wiki/Markov_chain_Monte_Carlo):\\n\",\n    \"\\n\",\n    \"> Markov chain Monte Carlo (MCMC) is a powerful class of methods to sample from probability distributions known only up to an (unknown) normalization constant.\\n\",\n    \"\\n\",\n    \"Markov Chain is a stochastic process where new state depends only on the previous state (Markov property for discrete-time process). Transition between states is governed by transition kernell $T$. In the limit of long simulation, probability distribution of steps of the Markov process converges to the stationary distribution $\\\\pi_{\\\\star}$. Reasonable  assumptions of existence of the stationary distribution, non-periodicy of MC and availibility of all states must be held.\\n\",\n    \"\\n\",\n    \"If we want to **sample** from a complicated distribution $\\\\pi$, we can construct a Markov process which stationary distribution $\\\\pi_{\\\\star} = \\\\pi$. The question is how to construct transition kernell to achieve $\\\\pi$ as a stationary distribution.\\n\",\n    \"\\n\",\n    \"## Metropolis-Hastings\\n\",\n    \"MH is a classical and most widely use algorithm with many flavours. Here we present a general outline.\\n\",\n    \"\\n\",\n    \"The algoritm is used to generate next point of the Markov Chain, namely $x_{i+1}$, in the space state.\\n\",\n    \"MH algorithms consist of proposal and acceptance/rejection steps:\\n\",\n    \"1. **Proposal**: draw next candidate\\\\\\n\",\n    \"    We construct transition kernel:\\n\",\n    \"\\n\",\n    \"    $$ \\n\",\n    \"    T(x_{i+1}|x_{i}) = q(x_{i+1}|x_{i})\\\\times p_{acc}(x_{i+1}|x_{i})\\n\",\n    \"    $$\\n\",\n    \"    where $q$ is proposal distribution for the next state of the chain and $p_{acc}$ is probability of sample being accepted.\\n\",\n    \"\\n\",\n    \"    Proposal distribution $q$ should be simple to draw from, for example uniform distribution around current point $\\\\mathcal{U}(x_i - \\\\delta, x_{i}+\\\\delta)$, where $\\\\delta$ is a small positive number. \\n\",\n    \" \\n\",\n    \"2. **Acceptance/rejection** assess if the candidate might have been drawn from sampled distribution $\\\\pi$\\\\\\n\",\n    \"    Having symmetric proposal distribution and adding constraint of microscopic reversibility on the transition kernell:\\n\",\n    \"\\n\",\n    \"    $$ \\n\",\n    \"    \\\\pi(x_{i})T(x_{i+1}|x_{i}) = \\\\pi(x_{i+1})T(x_{i}|x_{i+1})\\n\",\n    \"    $$\\n\",\n    \"\\n\",\n    \"    we have acceptance probability:\\n\",\n    \"    $$\\n\",\n    \"    p_{acc}(x_{i+1}|x_{i}) = min\\\\left\\\\{1, \\\\frac{\\\\pi_{x+1}}{\\\\pi_{x}}\\\\right\\\\}\\n\",\n    \"    $$\\n\",\n    \"\\n\",\n    \"For details on MCMC see the series of blog posts starting with https://www.tweag.io/blog/2019-10-25-mcmc-intro1/ or an online book https://bookdown.org/rdpeng/advstatcomp/markov-chain-monte-carlo.html.\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"## `monad-bayes` implementation\\n\",\n    \"There are several versions of Metropolis-Hastings algorith for MCMC defined in monad-bayes. The standard version is found in `Control.Monad.Bayes.Inference.MCMC` - Traced MH.\\n\",\n    \"Implementatio of a single step of of MH algorithm is `mhTransWithBool`.\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Linear regression\\n\",\n    \"\\n\",\n    \"We'll start with the example of a simple regression. Function `regressionData` defines a distribution of a linear regression values given a list of arguments.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"paramPriorRegression = do\\n\",\n    \"    slope <- normal 0 2\\n\",\n    \"    intercept <- normal 0 2\\n\",\n    \"    noise <- gamma 4 4\\n\",\n    \"    return (slope, intercept, noise)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"regressionData :: (MonadDistribution m, Traversable t) => t Double -> m (t (Double, Double))\\n\",\n    \"regressionData xs = do\\n\",\n    \"    (slope, intercept, noise) <- paramPriorRegression\\n\",\n    \"    forM xs \\\\x -> do\\n\",\n    \"        y <- normal (x*slope + intercept) (sqrt noise)\\n\",\n    \"        return (x, y)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"range = [-10,-9.9..10] :: [Double]\\n\",\n    \"regressionSamples <- sampleIOfixed $ regressionData range\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -10,\n          \"Y\": 24.57864936391078\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -9.9,\n          \"Y\": 38.294498409280365\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -9.8,\n          \"Y\": 26.301690856119443\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -9.700000000000001,\n          \"Y\": 28.558284447764866\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -9.600000000000001,\n          \"Y\": 23.195769246319948\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -9.500000000000002,\n          \"Y\": 29.319038347154173\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -9.400000000000002,\n          \"Y\": 29.786080440510776\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -9.300000000000002,\n          \"Y\": 27.56660652064134\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -9.200000000000003,\n          \"Y\": 27.577242127315213\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -9.100000000000003,\n          \"Y\": 33.153907631508574\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -9.000000000000004,\n          \"Y\": 30.083599819996856\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -8.900000000000004,\n          \"Y\": 23.119721320813433\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -8.800000000000004,\n          \"Y\": 31.191041902991987\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -8.700000000000005,\n          \"Y\": 26.589308682033725\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -8.600000000000005,\n          \"Y\": 32.921926427807016\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -8.500000000000005,\n          \"Y\": 32.70229229815947\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -8.400000000000006,\n          \"Y\": 19.394506109909656\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -8.300000000000006,\n          \"Y\": 32.27291522848526\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -8.200000000000006,\n          \"Y\": 28.64721000519075\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -8.100000000000007,\n          \"Y\": 25.79253712162261\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -8.000000000000007,\n          \"Y\": 27.68797532534977\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -7.9000000000000075,\n          \"Y\": 22.079901350454247\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -7.800000000000008,\n          \"Y\": 21.25658020864288\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -7.700000000000008,\n          \"Y\": 28.112113874853225\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -7.6000000000000085,\n          \"Y\": 23.657829423215986\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -7.500000000000009,\n          \"Y\": 26.44252808237886\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -7.400000000000009,\n          \"Y\": 15.694603973012033\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -7.30000000000001,\n          \"Y\": 17.839513408053318\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -7.20000000000001,\n          \"Y\": 20.452854225610146\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -7.10000000000001,\n          \"Y\": 20.139288022425166\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -7.000000000000011,\n          \"Y\": 21.23396373514547\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -6.900000000000011,\n          \"Y\": 17.320206263082085\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -6.800000000000011,\n          \"Y\": 19.89843133273544\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -6.700000000000012,\n          \"Y\": 15.764273491799775\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -6.600000000000012,\n          \"Y\": 20.798807821690723\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -6.500000000000012,\n          \"Y\": 18.728021703264186\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -6.400000000000013,\n          \"Y\": 7.885719830482385\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -6.300000000000013,\n          \"Y\": 18.85912922874157\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -6.2000000000000135,\n          \"Y\": 15.123788006831436\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -6.100000000000014,\n          \"Y\": 17.10995200455398\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -6.000000000000014,\n          \"Y\": 14.624114456535843\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -5.900000000000015,\n          \"Y\": 14.845108837556172\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -5.800000000000015,\n          \"Y\": 14.269557147602468\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -5.700000000000015,\n          \"Y\": 13.861095746942324\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -5.600000000000016,\n          \"Y\": 13.692211160545364\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -5.500000000000016,\n          \"Y\": 23.739370754539276\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -5.400000000000016,\n          \"Y\": 11.308333171220132\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -5.300000000000017,\n          \"Y\": 27.08980446608318\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -5.200000000000017,\n          \"Y\": 15.88679842771568\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -5.100000000000017,\n          \"Y\": 22.961734902847223\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -5.000000000000018,\n          \"Y\": 16.299525923838925\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -4.900000000000018,\n          \"Y\": 15.308171860934474\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -4.8000000000000185,\n          \"Y\": 29.02455599307806\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -4.700000000000019,\n          \"Y\": 10.749377104496931\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -4.600000000000019,\n          \"Y\": 11.27400546222972\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -4.5000000000000195,\n          \"Y\": 22.50722014898807\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -4.40000000000002,\n          \"Y\": 14.872396898873859\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -4.30000000000002,\n          \"Y\": 12.33515917932203\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -4.200000000000021,\n          \"Y\": 11.582055626013798\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -4.100000000000021,\n          \"Y\": 23.943604970811563\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -4.000000000000021,\n          \"Y\": 15.789328270738938\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -3.9000000000000217,\n          \"Y\": 12.904946954760849\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -3.800000000000022,\n          \"Y\": 7.426966312329666\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -3.7000000000000224,\n          \"Y\": 15.51136598116963\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -3.6000000000000227,\n          \"Y\": 5.11123343053363\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -3.500000000000023,\n          \"Y\": 13.432712523791547\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -3.4000000000000234,\n          \"Y\": 11.241708914656906\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -3.300000000000024,\n          \"Y\": 15.300584697969027\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -3.200000000000024,\n          \"Y\": 6.832401443016748\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -3.1000000000000245,\n          \"Y\": 7.255676920155957\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -3.000000000000025,\n          \"Y\": 11.929815035881218\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -2.9000000000000252,\n          \"Y\": 4.207732498665361\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -2.8000000000000256,\n          \"Y\": 19.30618112216324\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -2.700000000000026,\n          \"Y\": 14.42052477335049\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -2.6000000000000263,\n          \"Y\": 6.5390713397756315\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -2.5000000000000266,\n          \"Y\": 8.668423810434627\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -2.400000000000027,\n          \"Y\": 2.7167038170804414\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -2.3000000000000274,\n          \"Y\": 9.69108166357378\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -2.2000000000000277,\n          \"Y\": 11.965742234290293\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -2.100000000000028,\n          \"Y\": 9.419874051581413\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -2.0000000000000284,\n          \"Y\": 3.2081644713774073\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -1.9000000000000288,\n          \"Y\": 1.4087628728947221\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -1.8000000000000291,\n          \"Y\": 10.760742900504018\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -1.7000000000000295,\n          \"Y\": 12.93271063217119\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -1.6000000000000298,\n          \"Y\": 3.45947791097803\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -1.5000000000000302,\n          \"Y\": 9.959864604913854\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -1.4000000000000306,\n          \"Y\": 0.757296063587316\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -1.300000000000031,\n          \"Y\": -3.180315182028453\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -1.2000000000000313,\n          \"Y\": 4.437373365223296\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -1.1000000000000316,\n          \"Y\": 1.658197062714779\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -1.000000000000032,\n          \"Y\": 8.864952001575826\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -0.9000000000000323,\n          \"Y\": 1.2698523563653445\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -0.8000000000000327,\n          \"Y\": 0.5973684788411564\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -0.700000000000033,\n          \"Y\": -4.555365575462204\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -0.6000000000000334,\n          \"Y\": 6.2469449541721325\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -0.5000000000000338,\n          \"Y\": 5.767062936848807\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -0.4000000000000341,\n          \"Y\": 10.173383557699086\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -0.30000000000003446,\n          \"Y\": -4.548849292729719\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -0.20000000000003482,\n          \"Y\": 1.425004325853201\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -0.10000000000003517,\n          \"Y\": 3.8745173498347683\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": -3.552713678800501e-14,\n          \"Y\": -0.15546257425564614\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 0.09999999999996412,\n          \"Y\": 4.956019987386602\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 0.19999999999996376,\n          \"Y\": 4.962872610201469\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 0.2999999999999634,\n          \"Y\": 4.637451686696391\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 0.39999999999996305,\n          \"Y\": 0.9640110776827278\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 0.4999999999999627,\n          \"Y\": 9.02600284216226\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 0.5999999999999623,\n          \"Y\": 7.6481555413632805\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 0.699999999999962,\n          \"Y\": -1.2776766744840604\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 0.7999999999999616,\n          \"Y\": -1.011569749593121\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 0.8999999999999613,\n          \"Y\": -7.172733709218706\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 0.9999999999999609,\n          \"Y\": 9.030710040554313\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 1.0999999999999606,\n          \"Y\": -0.2873863465351798\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 1.1999999999999602,\n          \"Y\": -0.0761996977400099\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 1.2999999999999599,\n          \"Y\": 2.958613875892526\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 1.3999999999999595,\n          \"Y\": -2.0380371379167297\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 1.4999999999999591,\n          \"Y\": -4.208793003410444\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 1.5999999999999588,\n          \"Y\": 3.090366258779815\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 1.6999999999999584,\n          \"Y\": -11.074287645445791\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 1.799999999999958,\n          \"Y\": -4.227175584211664\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 1.8999999999999577,\n          \"Y\": -6.025452600463005\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 1.9999999999999574,\n          \"Y\": -3.6913770293879176\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 2.099999999999957,\n          \"Y\": -7.62696530095745\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 2.1999999999999567,\n          \"Y\": -1.0070407313158323\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 2.2999999999999563,\n          \"Y\": -0.21160285598304895\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 2.399999999999956,\n          \"Y\": -6.938935480005792\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 2.4999999999999556,\n          \"Y\": 0.6807052586522895\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 2.5999999999999552,\n          \"Y\": -6.413300609057294\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 2.699999999999955,\n          \"Y\": -6.536288487970634\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 2.7999999999999545,\n          \"Y\": -14.394025296298128\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 2.899999999999954,\n          \"Y\": -8.28023513622189\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 2.999999999999954,\n          \"Y\": -3.4124362461292495\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 3.0999999999999535,\n          \"Y\": -5.3562809471748025\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 3.199999999999953,\n          \"Y\": -7.526017621519014\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 3.2999999999999527,\n          \"Y\": -14.00346965318624\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 3.3999999999999524,\n          \"Y\": -5.942935566955495\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 3.499999999999952,\n          \"Y\": -7.9805889243735315\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 3.5999999999999517,\n          \"Y\": -6.232785013070575\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 3.6999999999999513,\n          \"Y\": -2.6255801288971146\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 3.799999999999951,\n          \"Y\": -16.150956461350795\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 3.8999999999999506,\n          \"Y\": -9.852019711110866\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 3.9999999999999503,\n          \"Y\": -10.820545824863508\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 4.09999999999995,\n          \"Y\": -9.641144263319418\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 4.1999999999999496,\n          \"Y\": -16.824573051695413\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 4.299999999999949,\n          \"Y\": -7.584368869801537\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 4.399999999999949,\n          \"Y\": -15.921597577697376\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 4.4999999999999485,\n          \"Y\": -10.564144416396802\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 4.599999999999948,\n          \"Y\": -8.719322820788562\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 4.699999999999948,\n          \"Y\": -13.706770144040625\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 4.799999999999947,\n          \"Y\": -14.71638534254468\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 4.899999999999947,\n          \"Y\": -8.11320601142597\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 4.999999999999947,\n          \"Y\": -9.079761935368413\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 5.099999999999946,\n          \"Y\": -7.741729875490136\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 5.199999999999946,\n          \"Y\": -7.709427648269321\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 5.299999999999946,\n          \"Y\": -10.164452904568247\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 5.399999999999945,\n          \"Y\": -17.037300164945133\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 5.499999999999945,\n          \"Y\": -9.530200659868438\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 5.599999999999945,\n          \"Y\": -6.805904336249347\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 5.699999999999944,\n          \"Y\": -18.518345122128725\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 5.799999999999944,\n          \"Y\": -16.66401480644169\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 5.8999999999999435,\n          \"Y\": -13.035777619073194\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 5.999999999999943,\n          \"Y\": -10.453747100452984\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 6.099999999999945,\n          \"Y\": -10.966412014185101\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 6.1999999999999424,\n          \"Y\": -9.074186841328956\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 6.29999999999994,\n          \"Y\": -10.953103638117929\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 6.399999999999942,\n          \"Y\": -8.6614528465355\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 6.499999999999943,\n          \"Y\": -11.767577514991192\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 6.599999999999941,\n          \"Y\": -15.749273101756014\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 6.699999999999939,\n          \"Y\": -20.535868312369907\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 6.79999999999994,\n          \"Y\": -18.238578928251155\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 6.899999999999942,\n          \"Y\": -22.60243906276875\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 6.99999999999994,\n          \"Y\": -21.86297579565081\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 7.0999999999999375,\n          \"Y\": -17.08344647050758\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 7.199999999999939,\n          \"Y\": -19.369295599963984\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 7.29999999999994,\n          \"Y\": -18.678956845823837\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 7.399999999999938,\n          \"Y\": -15.61678580989824\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 7.499999999999936,\n          \"Y\": -26.27818766241228\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 7.5999999999999375,\n          \"Y\": -19.420291255188108\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 7.699999999999939,\n          \"Y\": -17.74467794634894\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 7.799999999999937,\n          \"Y\": -16.946636703176477\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 7.899999999999935,\n          \"Y\": -26.71150723727269\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 7.999999999999936,\n          \"Y\": -24.113700090735545\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 8.099999999999937,\n          \"Y\": -18.385630502824597\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 8.199999999999935,\n          \"Y\": -16.16025577987224\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 8.299999999999933,\n          \"Y\": -22.192371003190164\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 8.399999999999935,\n          \"Y\": -21.633943313778616\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 8.499999999999936,\n          \"Y\": -33.4081634879886\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 8.599999999999934,\n          \"Y\": -13.971218302650211\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 8.699999999999932,\n          \"Y\": -30.517273136049173\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 8.799999999999933,\n          \"Y\": -18.20026092214388\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 8.899999999999935,\n          \"Y\": -29.619423062052164\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 8.999999999999932,\n          \"Y\": -20.757216839068352\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 9.09999999999993,\n          \"Y\": -28.846849347810682\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 9.199999999999932,\n          \"Y\": -28.75698430739407\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 9.299999999999933,\n          \"Y\": -26.74093489476592\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 9.399999999999931,\n          \"Y\": -28.4891432150645\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 9.499999999999929,\n          \"Y\": -23.961935678746933\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 9.59999999999993,\n          \"Y\": -31.757248852429687\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 9.699999999999932,\n          \"Y\": -23.795671636576557\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 9.79999999999993,\n          \"Y\": -25.698267857158072\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 9.899999999999928,\n          \"Y\": -32.23329810811726\n         },\n         {\n          \"Outlier\": \"\\\"N/A\\\"\",\n          \"X\": 9.999999999999929,\n          \"Y\": -27.44784410052699\n         }\n        ]\n       },\n       \"encoding\": {\n        \"color\": {\n         \"field\": \"Outlier\"\n        },\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"circle\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plot (zip regressionSamples (Prelude.repeat $ T.pack \\\"N/A\\\"))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Function`regression` computes paramteres of the model, namely `(slope, intercept, noise)` and their score.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"regression :: (MonadMeasure m) => [Double] -> [Double] -> m (Double, Double, Double)\\n\",\n    \"regression xs ys = do\\n\",\n    \"    params@(slope, intercept, noise) <- paramPriorRegression\\n\",\n    \"    forM_ (zip xs ys) \\\\(x, y) -> factor $ normalPdf (slope * x + intercept) (sqrt noise) y\\n\",\n    \"    return (slope, intercept, noise)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": []\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"mcmcConfig = MCMCConfig {numMCMCSteps = 1000, numBurnIn = 0, proposal = SingleSiteMH}\\n\",\n    \"mhRunsRegression <- sampleIOfixed . unweighted . mcmc mcmcConfig $ uncurry regression (unzip regressionSamples)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"MCMC solver puts new points at the beginning of the list. Last (in the list, so first from the simulation start) `numBurnIn` points are removed as distributions from which they were drawn are not considered convergent to the stationary distribution $\\\\pi$.\\n\",\n    \"\\n\",\n    \"Let's se how the intercept and slope evolve during the simulations:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"\\\"Slope\\\"\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"Outlier\": 1,\n          \"X\": 1001,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 1000,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 999,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 998,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 997,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 996,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 995,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 994,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 993,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 992,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 991,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 990,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 989,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 988,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 987,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 986,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 985,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 984,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 983,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 982,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 981,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 980,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 979,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 978,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 977,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 976,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 975,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 974,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 973,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 972,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 971,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 970,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 969,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 968,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 967,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 966,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 965,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 964,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 963,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 962,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 961,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 960,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 959,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 958,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 957,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 956,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 955,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 954,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 953,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 952,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 951,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 950,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 949,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 948,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 947,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 946,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 945,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 944,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 943,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 942,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 941,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 940,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 939,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 938,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 937,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 936,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 935,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 934,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 933,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 932,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 931,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 930,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 929,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 928,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 927,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 926,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 925,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 924,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 923,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 922,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 921,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 920,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 919,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 918,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 917,\n          \"Y\": -2.823624445842976\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 916,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 915,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 914,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 913,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 912,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 911,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 910,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 909,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 908,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 907,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 906,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 905,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 904,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 903,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 902,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 901,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 900,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 899,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 898,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 897,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 896,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 895,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 894,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 893,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 892,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 891,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 890,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 889,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 888,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 887,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 886,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 885,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 884,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 883,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 882,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 881,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 880,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 879,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 878,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 877,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 876,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 875,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 874,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 873,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 872,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 871,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 870,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 869,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 868,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 867,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 866,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 865,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 864,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 863,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 862,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 861,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 860,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 859,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 858,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 857,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 856,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 855,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 854,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 853,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 852,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 851,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 850,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 849,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 848,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 847,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 846,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 845,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 844,\n          \"Y\": -2.8121213968098955\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 843,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 842,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 841,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 840,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 839,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 838,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 837,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 836,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 835,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 834,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 833,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 832,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 831,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 830,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 829,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 828,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 827,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 826,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 825,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 824,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 823,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 822,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 821,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 820,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 819,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 818,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 817,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 816,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 815,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 814,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 813,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 812,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 811,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 810,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 809,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 808,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 807,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 806,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 805,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 804,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 803,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 802,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 801,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 800,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 799,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 798,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 797,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 796,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 795,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 794,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 793,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 792,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 791,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 790,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 789,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 788,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 787,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 786,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 785,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 784,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 783,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 782,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 781,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 780,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 779,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 778,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 777,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 776,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 775,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 774,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 773,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 772,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 771,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 770,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 769,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 768,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 767,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 766,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 765,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 764,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 763,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 762,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 761,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 760,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 759,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 758,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 757,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 756,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 755,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 754,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 753,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 752,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 751,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 750,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 749,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 748,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 747,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 746,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 745,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 744,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 743,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 742,\n          \"Y\": -2.789610545041284\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 741,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 740,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 739,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 738,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 737,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 736,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 735,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 734,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 733,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 732,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 731,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 730,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 729,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 728,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 727,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 726,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 725,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 724,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 723,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 722,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 721,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 720,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 719,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 718,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 717,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 716,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 715,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 714,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 713,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 712,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 711,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 710,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 709,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 708,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 707,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 706,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 705,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 704,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 703,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 702,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 701,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 700,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 699,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 698,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 697,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 696,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 695,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 694,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 693,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 692,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 691,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 690,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 689,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 688,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 687,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 686,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 685,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 684,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 683,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 682,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 681,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 680,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 679,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 678,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 677,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 676,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 675,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 674,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 673,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 672,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 671,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 670,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 669,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 668,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 667,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 666,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 665,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 664,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 663,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 662,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 661,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 660,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 659,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 658,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 657,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 656,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 655,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 654,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 653,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 652,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 651,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 650,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 649,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 648,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 647,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 646,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 645,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 644,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 643,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 642,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 641,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 640,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 639,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 638,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 637,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 636,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 635,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 634,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 633,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 632,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 631,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 630,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 629,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 628,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 627,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 626,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 625,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 624,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 623,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 622,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 621,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 620,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 619,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 618,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 617,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 616,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 615,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 614,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 613,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 612,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 611,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 610,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 609,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 608,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 607,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 606,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 605,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 604,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 603,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 602,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 601,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 600,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 599,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 598,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 597,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 596,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 595,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 594,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 593,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 592,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 591,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 590,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 589,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 588,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 587,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 586,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 585,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 584,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 583,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 582,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 581,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 580,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 579,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 578,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 577,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 576,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 575,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 574,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 573,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 572,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 571,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 570,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 569,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 568,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 567,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 566,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 565,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 564,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 563,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 562,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 561,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 560,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 559,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 558,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 557,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 556,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 555,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 554,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 553,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 552,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 551,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 550,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 549,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 548,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 547,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 546,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 545,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 544,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 543,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 542,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 541,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 540,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 539,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 538,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 537,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 536,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 535,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 534,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 533,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 532,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 531,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 530,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 529,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 528,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 527,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 526,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 525,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 524,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 523,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 522,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 521,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 520,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 519,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 518,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 517,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 516,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 515,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 514,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 513,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 512,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 511,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 510,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 509,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 508,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 507,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 506,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 505,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 504,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 503,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 502,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 501,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 500,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 499,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 498,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 497,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 496,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 495,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 494,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 493,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 492,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 491,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 490,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 489,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 488,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 487,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 486,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 485,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 484,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 483,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 482,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 481,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 480,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 479,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 478,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 477,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 476,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 475,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 474,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 473,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 472,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 471,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 470,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 469,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 468,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 467,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 466,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 465,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 464,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 463,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 462,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 461,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 460,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 459,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 458,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 457,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 456,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 455,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 454,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 453,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 452,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 451,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 450,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 449,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 448,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 447,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 446,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 445,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 444,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 443,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 442,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 441,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 440,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 439,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 438,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 437,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 436,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 435,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 434,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 433,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 432,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 431,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 430,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 429,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 428,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 427,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 426,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 425,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 424,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 423,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 422,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 421,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 420,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 419,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 418,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 417,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 416,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 415,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 414,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 413,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 412,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 411,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 410,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 409,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 408,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 407,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 406,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 405,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 404,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 403,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 402,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 401,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 400,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 399,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 398,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 397,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 396,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 395,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 394,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 393,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 392,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 391,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 390,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 389,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 388,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 387,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 386,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 385,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 384,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 383,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 382,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 381,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 380,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 379,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 378,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 377,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 376,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 375,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 374,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 373,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 372,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 371,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 370,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 369,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 368,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 367,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 366,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 365,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 364,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 363,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 362,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 361,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 360,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 359,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 358,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 357,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 356,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 355,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 354,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 353,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 352,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 351,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 350,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 349,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 348,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 347,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 346,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 345,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 344,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 343,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 342,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 341,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 340,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 339,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 338,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 337,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 336,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 335,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 334,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 333,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 332,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 331,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 330,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 329,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 328,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 327,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 326,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 325,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 324,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 323,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 322,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 321,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 320,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 319,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 318,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 317,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 316,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 315,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 314,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 313,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 312,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 311,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 310,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 309,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 308,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 307,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 306,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 305,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 304,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 303,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 302,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 301,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 300,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 299,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 298,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 297,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 296,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 295,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 294,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 293,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 292,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 291,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 290,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 289,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 288,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 287,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 286,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 285,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 284,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 283,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 282,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 281,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 280,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 279,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 278,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 277,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 276,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 275,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 274,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 273,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 272,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 271,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 270,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 269,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 268,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 267,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 266,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 265,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 264,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 263,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 262,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 261,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 260,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 259,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 258,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 257,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 256,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 255,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 254,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 253,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 252,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 251,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 250,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 249,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 248,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 247,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 246,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 245,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 244,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 243,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 242,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 241,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 240,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 239,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 238,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 237,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 236,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 235,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 234,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 233,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 232,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 231,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 230,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 229,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 228,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 227,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 226,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 225,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 224,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 223,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 222,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 221,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 220,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 219,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 218,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 217,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 216,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 215,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 214,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 213,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 212,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 211,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 210,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 209,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 208,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 207,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 206,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 205,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 204,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 203,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 202,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 201,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 200,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 199,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 198,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 197,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 196,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 195,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 194,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 193,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 192,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 191,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 190,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 189,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 188,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 187,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 186,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 185,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 184,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 183,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 182,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 181,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 180,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 179,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 178,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 177,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 176,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 175,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 174,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 173,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 172,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 171,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 170,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 169,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 168,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 167,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 166,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 165,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 164,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 163,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 162,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 161,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 160,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 159,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 158,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 157,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 156,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 155,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 154,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 153,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 152,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 151,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 150,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 149,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 148,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 147,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 146,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 145,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 144,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 143,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 142,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 141,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 140,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 139,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 138,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 137,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 136,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 135,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 134,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 133,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 132,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 131,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 130,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 129,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 128,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 127,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 126,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 125,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 124,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 123,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 122,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 121,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 120,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 119,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 118,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 117,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 116,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 115,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 114,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 113,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 112,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 111,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 110,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 109,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 108,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 107,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 106,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 105,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 104,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 103,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 102,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 101,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 100,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 99,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 98,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 97,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 96,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 95,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 94,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 93,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 92,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 91,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 90,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 89,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 88,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 87,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 86,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 85,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 84,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 83,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 82,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 81,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 80,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 79,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 78,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 77,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 76,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 75,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 74,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 73,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 72,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 71,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 70,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 69,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 68,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 67,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 66,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 65,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 64,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 63,\n          \"Y\": -2.779155643098428\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 62,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 61,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 60,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 59,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 58,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 57,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 56,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 55,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 54,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 53,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 52,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 51,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 50,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 49,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 48,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 47,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 46,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 45,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 44,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 43,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 42,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 41,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 40,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 39,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 38,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 37,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 36,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 35,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 34,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 33,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 32,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 31,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 30,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 29,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 28,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 27,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 26,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 25,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 24,\n          \"Y\": -2.8108182040295433\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 23,\n          \"Y\": -3.351193305487453\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 22,\n          \"Y\": -3.351193305487453\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 21,\n          \"Y\": -3.351193305487453\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 20,\n          \"Y\": -3.351193305487453\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 19,\n          \"Y\": -3.351193305487453\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 18,\n          \"Y\": -3.351193305487453\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 17,\n          \"Y\": -3.351193305487453\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 16,\n          \"Y\": -3.351193305487453\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 15,\n          \"Y\": -3.351193305487453\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 14,\n          \"Y\": -3.351193305487453\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 13,\n          \"Y\": -3.351193305487453\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 12,\n          \"Y\": -3.351193305487453\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 11,\n          \"Y\": -3.351193305487453\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 10,\n          \"Y\": -3.351193305487453\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 9,\n          \"Y\": -3.351193305487453\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 8,\n          \"Y\": -3.351193305487453\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 7,\n          \"Y\": -3.351193305487453\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 6,\n          \"Y\": -3.351193305487453\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 5,\n          \"Y\": -3.351193305487453\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 4,\n          \"Y\": -3.351193305487453\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 3,\n          \"Y\": -3.351193305487453\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 2,\n          \"Y\": -3.351193305487453\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 1,\n          \"Y\": -3.351193305487453\n         }\n        ]\n       },\n       \"encoding\": {\n        \"color\": {},\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"line\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"print \\\"Slope\\\"\\n\",\n    \"l = length mhRunsRegression\\n\",\n    \"xs = reverse $ fromIntegral <$> [1..l] ::[Double]\\n\",\n    \"plot (xs, (\\\\(x,_,_) -> x) <$> mhRunsRegression) \\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"\\\"Intercept\\\"\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"Outlier\": 1,\n          \"X\": 1001,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 1000,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 999,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 998,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 997,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 996,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 995,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 994,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 993,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 992,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 991,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 990,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 989,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 988,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 987,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 986,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 985,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 984,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 983,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 982,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 981,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 980,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 979,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 978,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 977,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 976,\n          \"Y\": 1.7617903982284406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 975,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 974,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 973,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 972,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 971,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 970,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 969,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 968,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 967,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 966,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 965,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 964,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 963,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 962,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 961,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 960,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 959,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 958,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 957,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 956,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 955,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 954,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 953,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 952,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 951,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 950,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 949,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 948,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 947,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 946,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 945,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 944,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 943,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 942,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 941,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 940,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 939,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 938,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 937,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 936,\n          \"Y\": 1.8287906177483493\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 935,\n          \"Y\": 1.7001514943530478\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 934,\n          \"Y\": 1.7001514943530478\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 933,\n          \"Y\": 1.7001514943530478\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 932,\n          \"Y\": 1.7001514943530478\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 931,\n          \"Y\": 1.7001514943530478\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 930,\n          \"Y\": 1.7001514943530478\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 929,\n          \"Y\": 1.7001514943530478\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 928,\n          \"Y\": 1.7001514943530478\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 927,\n          \"Y\": 1.7001514943530478\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 926,\n          \"Y\": 1.7001514943530478\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 925,\n          \"Y\": 1.7001514943530478\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 924,\n          \"Y\": 1.7001514943530478\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 923,\n          \"Y\": 1.7001514943530478\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 922,\n          \"Y\": 1.7001514943530478\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 921,\n          \"Y\": 1.7001514943530478\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 920,\n          \"Y\": 1.7001514943530478\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 919,\n          \"Y\": 1.7001514943530478\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 918,\n          \"Y\": 1.7001514943530478\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 917,\n          \"Y\": 1.7001514943530478\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 916,\n          \"Y\": 1.7001514943530478\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 915,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 914,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 913,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 912,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 911,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 910,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 909,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 908,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 907,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 906,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 905,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 904,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 903,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 902,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 901,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 900,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 899,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 898,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 897,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 896,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 895,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 894,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 893,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 892,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 891,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 890,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 889,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 888,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 887,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 886,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 885,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 884,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 883,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 882,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 881,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 880,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 879,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 878,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 877,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 876,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 875,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 874,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 873,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 872,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 871,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 870,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 869,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 868,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 867,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 866,\n          \"Y\": 2.017287381040768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 865,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 864,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 863,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 862,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 861,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 860,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 859,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 858,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 857,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 856,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 855,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 854,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 853,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 852,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 851,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 850,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 849,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 848,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 847,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 846,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 845,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 844,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 843,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 842,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 841,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 840,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 839,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 838,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 837,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 836,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 835,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 834,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 833,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 832,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 831,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 830,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 829,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 828,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 827,\n          \"Y\": 1.6254911344857144\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 826,\n          \"Y\": 1.4191618565767918\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 825,\n          \"Y\": 1.4191618565767918\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 824,\n          \"Y\": 1.4191618565767918\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 823,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 822,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 821,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 820,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 819,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 818,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 817,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 816,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 815,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 814,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 813,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 812,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 811,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 810,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 809,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 808,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 807,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 806,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 805,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 804,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 803,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 802,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 801,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 800,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 799,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 798,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 797,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 796,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 795,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 794,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 793,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 792,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 791,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 790,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 789,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 788,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 787,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 786,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 785,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 784,\n          \"Y\": 2.47421581651972\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 783,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 782,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 781,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 780,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 779,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 778,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 777,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 776,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 775,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 774,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 773,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 772,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 771,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 770,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 769,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 768,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 767,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 766,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 765,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 764,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 763,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 762,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 761,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 760,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 759,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 758,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 757,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 756,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 755,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 754,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 753,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 752,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 751,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 750,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 749,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 748,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 747,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 746,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 745,\n          \"Y\": 1.4676519131057528\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 744,\n          \"Y\": 2.048241495785841\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 743,\n          \"Y\": 2.048241495785841\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 742,\n          \"Y\": 2.048241495785841\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 741,\n          \"Y\": 2.048241495785841\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 740,\n          \"Y\": 2.048241495785841\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 739,\n          \"Y\": 1.5017180402196402\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 738,\n          \"Y\": 1.5017180402196402\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 737,\n          \"Y\": 1.5017180402196402\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 736,\n          \"Y\": 1.5017180402196402\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 735,\n          \"Y\": 1.5017180402196402\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 734,\n          \"Y\": 1.5017180402196402\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 733,\n          \"Y\": 1.5017180402196402\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 732,\n          \"Y\": 1.5017180402196402\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 731,\n          \"Y\": 1.5017180402196402\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 730,\n          \"Y\": 1.5017180402196402\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 729,\n          \"Y\": 1.5017180402196402\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 728,\n          \"Y\": 1.891843416488586\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 727,\n          \"Y\": 1.891843416488586\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 726,\n          \"Y\": 1.891843416488586\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 725,\n          \"Y\": 1.891843416488586\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 724,\n          \"Y\": 1.891843416488586\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 723,\n          \"Y\": 1.891843416488586\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 722,\n          \"Y\": 1.891843416488586\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 721,\n          \"Y\": 1.7497018785898255\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 720,\n          \"Y\": 1.7497018785898255\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 719,\n          \"Y\": 1.7497018785898255\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 718,\n          \"Y\": 1.7497018785898255\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 717,\n          \"Y\": 1.7497018785898255\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 716,\n          \"Y\": 1.7497018785898255\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 715,\n          \"Y\": 1.7497018785898255\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 714,\n          \"Y\": 1.7497018785898255\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 713,\n          \"Y\": 1.7497018785898255\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 712,\n          \"Y\": 1.7497018785898255\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 711,\n          \"Y\": 1.7497018785898255\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 710,\n          \"Y\": 2.2946001483092227\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 709,\n          \"Y\": 2.2946001483092227\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 708,\n          \"Y\": 2.2946001483092227\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 707,\n          \"Y\": 2.2946001483092227\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 706,\n          \"Y\": 2.2946001483092227\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 705,\n          \"Y\": 2.2946001483092227\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 704,\n          \"Y\": 1.658811912435686\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 703,\n          \"Y\": 1.658811912435686\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 702,\n          \"Y\": 1.658811912435686\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 701,\n          \"Y\": 1.658811912435686\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 700,\n          \"Y\": 1.658811912435686\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 699,\n          \"Y\": 1.658811912435686\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 698,\n          \"Y\": 1.658811912435686\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 697,\n          \"Y\": 1.658811912435686\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 696,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 695,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 694,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 693,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 692,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 691,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 690,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 689,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 688,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 687,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 686,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 685,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 684,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 683,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 682,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 681,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 680,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 679,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 678,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 677,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 676,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 675,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 674,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 673,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 672,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 671,\n          \"Y\": 1.7652097877311717\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 670,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 669,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 668,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 667,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 666,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 665,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 664,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 663,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 662,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 661,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 660,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 659,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 658,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 657,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 656,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 655,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 654,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 653,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 652,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 651,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 650,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 649,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 648,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 647,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 646,\n          \"Y\": 1.8469835673638269\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 645,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 644,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 643,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 642,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 641,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 640,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 639,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 638,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 637,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 636,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 635,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 634,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 633,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 632,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 631,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 630,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 629,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 628,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 627,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 626,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 625,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 624,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 623,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 622,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 621,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 620,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 619,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 618,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 617,\n          \"Y\": 2.087905156221181\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 616,\n          \"Y\": 2.0388835361098283\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 615,\n          \"Y\": 2.0388835361098283\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 614,\n          \"Y\": 2.0388835361098283\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 613,\n          \"Y\": 2.0388835361098283\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 612,\n          \"Y\": 2.0388835361098283\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 611,\n          \"Y\": 2.0388835361098283\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 610,\n          \"Y\": 2.0388835361098283\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 609,\n          \"Y\": 2.0388835361098283\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 608,\n          \"Y\": 2.0388835361098283\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 607,\n          \"Y\": 2.0388835361098283\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 606,\n          \"Y\": 2.0388835361098283\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 605,\n          \"Y\": 2.0388835361098283\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 604,\n          \"Y\": 2.0388835361098283\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 603,\n          \"Y\": 2.0388835361098283\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 602,\n          \"Y\": 2.0388835361098283\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 601,\n          \"Y\": 2.0388835361098283\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 600,\n          \"Y\": 2.0388835361098283\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 599,\n          \"Y\": 2.0388835361098283\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 598,\n          \"Y\": 2.0388835361098283\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 597,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 596,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 595,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 594,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 593,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 592,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 591,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 590,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 589,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 588,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 587,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 586,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 585,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 584,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 583,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 582,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 581,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 580,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 579,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 578,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 577,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 576,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 575,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 574,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 573,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 572,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 571,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 570,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 569,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 568,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 567,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 566,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 565,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 564,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 563,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 562,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 561,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 560,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 559,\n          \"Y\": 1.7160317487364638\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 558,\n          \"Y\": 1.5493630413376596\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 557,\n          \"Y\": 1.8671317303862804\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 556,\n          \"Y\": 1.8671317303862804\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 555,\n          \"Y\": 1.8671317303862804\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 554,\n          \"Y\": 1.8671317303862804\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 553,\n          \"Y\": 1.8671317303862804\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 552,\n          \"Y\": 1.8671317303862804\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 551,\n          \"Y\": 1.8671317303862804\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 550,\n          \"Y\": 1.8671317303862804\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 549,\n          \"Y\": 1.8671317303862804\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 548,\n          \"Y\": 1.8671317303862804\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 547,\n          \"Y\": 1.8671317303862804\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 546,\n          \"Y\": 1.8671317303862804\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 545,\n          \"Y\": 1.8671317303862804\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 544,\n          \"Y\": 1.8671317303862804\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 543,\n          \"Y\": 1.3142115128659677\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 542,\n          \"Y\": 1.3142115128659677\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 541,\n          \"Y\": 1.3142115128659677\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 540,\n          \"Y\": 1.3142115128659677\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 539,\n          \"Y\": 1.7552043632871244\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 538,\n          \"Y\": 1.7552043632871244\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 537,\n          \"Y\": 1.7552043632871244\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 536,\n          \"Y\": 1.7552043632871244\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 535,\n          \"Y\": 1.7552043632871244\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 534,\n          \"Y\": 1.7552043632871244\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 533,\n          \"Y\": 1.7552043632871244\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 532,\n          \"Y\": 1.7552043632871244\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 531,\n          \"Y\": 1.7552043632871244\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 530,\n          \"Y\": 1.7552043632871244\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 529,\n          \"Y\": 1.7552043632871244\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 528,\n          \"Y\": 1.7552043632871244\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 527,\n          \"Y\": 1.7552043632871244\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 526,\n          \"Y\": 1.7552043632871244\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 525,\n          \"Y\": 1.7552043632871244\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 524,\n          \"Y\": 1.7552043632871244\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 523,\n          \"Y\": 1.9093972904713568\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 522,\n          \"Y\": 1.9093972904713568\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 521,\n          \"Y\": 1.9093972904713568\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 520,\n          \"Y\": 1.9093972904713568\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 519,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 518,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 517,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 516,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 515,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 514,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 513,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 512,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 511,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 510,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 509,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 508,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 507,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 506,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 505,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 504,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 503,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 502,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 501,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 500,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 499,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 498,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 497,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 496,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 495,\n          \"Y\": 2.0013081290944768\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 494,\n          \"Y\": 1.3485580071926517\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 493,\n          \"Y\": 1.3485580071926517\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 492,\n          \"Y\": 1.3485580071926517\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 491,\n          \"Y\": 1.3485580071926517\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 490,\n          \"Y\": 1.3485580071926517\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 489,\n          \"Y\": 1.3485580071926517\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 488,\n          \"Y\": 1.3485580071926517\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 487,\n          \"Y\": 1.3485580071926517\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 486,\n          \"Y\": 1.3485580071926517\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 485,\n          \"Y\": 1.3485580071926517\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 484,\n          \"Y\": 1.3267836505401627\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 483,\n          \"Y\": 1.3267836505401627\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 482,\n          \"Y\": 1.3267836505401627\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 481,\n          \"Y\": 1.3267836505401627\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 480,\n          \"Y\": 1.2269337425750118\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 479,\n          \"Y\": 1.2269337425750118\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 478,\n          \"Y\": 1.2269337425750118\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 477,\n          \"Y\": 1.794878565178167\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 476,\n          \"Y\": 1.794878565178167\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 475,\n          \"Y\": 1.794878565178167\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 474,\n          \"Y\": 1.794878565178167\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 473,\n          \"Y\": 2.0665018567601443\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 472,\n          \"Y\": 2.0665018567601443\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 471,\n          \"Y\": 2.0665018567601443\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 470,\n          \"Y\": 2.0665018567601443\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 469,\n          \"Y\": 2.0665018567601443\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 468,\n          \"Y\": 2.0665018567601443\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 467,\n          \"Y\": 2.0665018567601443\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 466,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 465,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 464,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 463,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 462,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 461,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 460,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 459,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 458,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 457,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 456,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 455,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 454,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 453,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 452,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 451,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 450,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 449,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 448,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 447,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 446,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 445,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 444,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 443,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 442,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 441,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 440,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 439,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 438,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 437,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 436,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 435,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 434,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 433,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 432,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 431,\n          \"Y\": 1.6433515625028146\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 430,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 429,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 428,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 427,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 426,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 425,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 424,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 423,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 422,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 421,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 420,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 419,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 418,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 417,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 416,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 415,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 414,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 413,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 412,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 411,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 410,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 409,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 408,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 407,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 406,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 405,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 404,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 403,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 402,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 401,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 400,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 399,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 398,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 397,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 396,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 395,\n          \"Y\": 2.2296557820519336\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 394,\n          \"Y\": 1.8147052322565385\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 393,\n          \"Y\": 1.8147052322565385\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 392,\n          \"Y\": 1.8147052322565385\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 391,\n          \"Y\": 1.8147052322565385\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 390,\n          \"Y\": 1.30462588195755\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 389,\n          \"Y\": 1.30462588195755\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 388,\n          \"Y\": 1.30462588195755\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 387,\n          \"Y\": 1.30462588195755\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 386,\n          \"Y\": 1.30462588195755\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 385,\n          \"Y\": 1.6560496747938094\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 384,\n          \"Y\": 1.6560496747938094\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 383,\n          \"Y\": 1.6560496747938094\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 382,\n          \"Y\": 1.6560496747938094\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 381,\n          \"Y\": 1.6560496747938094\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 380,\n          \"Y\": 1.6560496747938094\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 379,\n          \"Y\": 1.6560496747938094\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 378,\n          \"Y\": 1.6560496747938094\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 377,\n          \"Y\": 1.6560496747938094\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 376,\n          \"Y\": 1.6560496747938094\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 375,\n          \"Y\": 1.6560496747938094\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 374,\n          \"Y\": 1.6560496747938094\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 373,\n          \"Y\": 1.6560496747938094\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 372,\n          \"Y\": 1.6560496747938094\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 371,\n          \"Y\": 1.6560496747938094\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 370,\n          \"Y\": 1.6560496747938094\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 369,\n          \"Y\": 1.6560496747938094\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 368,\n          \"Y\": 1.6560496747938094\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 367,\n          \"Y\": 1.6560496747938094\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 366,\n          \"Y\": 1.6078459291993832\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 365,\n          \"Y\": 1.7776754548531566\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 364,\n          \"Y\": 1.7776754548531566\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 363,\n          \"Y\": 1.7776754548531566\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 362,\n          \"Y\": 1.7776754548531566\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 361,\n          \"Y\": 1.7776754548531566\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 360,\n          \"Y\": 1.7776754548531566\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 359,\n          \"Y\": 1.7776754548531566\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 358,\n          \"Y\": 1.7776754548531566\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 357,\n          \"Y\": 1.7776754548531566\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 356,\n          \"Y\": 1.7776754548531566\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 355,\n          \"Y\": 1.7776754548531566\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 354,\n          \"Y\": 1.7776754548531566\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 353,\n          \"Y\": 1.7776754548531566\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 352,\n          \"Y\": 1.52594575733393\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 351,\n          \"Y\": 1.52594575733393\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 350,\n          \"Y\": 2.489442576493648\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 349,\n          \"Y\": 2.489442576493648\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 348,\n          \"Y\": 2.489442576493648\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 347,\n          \"Y\": 2.489442576493648\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 346,\n          \"Y\": 2.489442576493648\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 345,\n          \"Y\": 2.489442576493648\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 344,\n          \"Y\": 2.489442576493648\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 343,\n          \"Y\": 2.489442576493648\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 342,\n          \"Y\": 2.489442576493648\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 341,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 340,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 339,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 338,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 337,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 336,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 335,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 334,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 333,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 332,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 331,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 330,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 329,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 328,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 327,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 326,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 325,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 324,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 323,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 322,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 321,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 320,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 319,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 318,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 317,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 316,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 315,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 314,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 313,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 312,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 311,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 310,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 309,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 308,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 307,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 306,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 305,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 304,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 303,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 302,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 301,\n          \"Y\": 1.8828997947595156\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 300,\n          \"Y\": 1.3422258844770831\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 299,\n          \"Y\": 1.3422258844770831\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 298,\n          \"Y\": 1.3422258844770831\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 297,\n          \"Y\": 1.3422258844770831\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 296,\n          \"Y\": 1.3422258844770831\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 295,\n          \"Y\": 1.3422258844770831\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 294,\n          \"Y\": 1.3422258844770831\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 293,\n          \"Y\": 1.3422258844770831\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 292,\n          \"Y\": 1.3422258844770831\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 291,\n          \"Y\": 1.3422258844770831\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 290,\n          \"Y\": 1.3422258844770831\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 289,\n          \"Y\": 1.3422258844770831\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 288,\n          \"Y\": 1.3422258844770831\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 287,\n          \"Y\": 1.3422258844770831\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 286,\n          \"Y\": 1.3422258844770831\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 285,\n          \"Y\": 2.344535984885695\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 284,\n          \"Y\": 2.344535984885695\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 283,\n          \"Y\": 2.344535984885695\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 282,\n          \"Y\": 2.344535984885695\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 281,\n          \"Y\": 2.344535984885695\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 280,\n          \"Y\": 2.344535984885695\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 279,\n          \"Y\": 2.344535984885695\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 278,\n          \"Y\": 2.344535984885695\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 277,\n          \"Y\": 1.296164254389404\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 276,\n          \"Y\": 1.296164254389404\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 275,\n          \"Y\": 1.296164254389404\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 274,\n          \"Y\": 1.296164254389404\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 273,\n          \"Y\": 1.296164254389404\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 272,\n          \"Y\": 1.296164254389404\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 271,\n          \"Y\": 1.296164254389404\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 270,\n          \"Y\": 1.296164254389404\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 269,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 268,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 267,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 266,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 265,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 264,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 263,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 262,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 261,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 260,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 259,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 258,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 257,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 256,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 255,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 254,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 253,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 252,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 251,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 250,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 249,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 248,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 247,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 246,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 245,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 244,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 243,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 242,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 241,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 240,\n          \"Y\": 1.858996607673116\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 239,\n          \"Y\": 2.2333897375156417\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 238,\n          \"Y\": 1.246649510892441\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 237,\n          \"Y\": 1.246649510892441\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 236,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 235,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 234,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 233,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 232,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 231,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 230,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 229,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 228,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 227,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 226,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 225,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 224,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 223,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 222,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 221,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 220,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 219,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 218,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 217,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 216,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 215,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 214,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 213,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 212,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 211,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 210,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 209,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 208,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 207,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 206,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 205,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 204,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 203,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 202,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 201,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 200,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 199,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 198,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 197,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 196,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 195,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 194,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 193,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 192,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 191,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 190,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 189,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 188,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 187,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 186,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 185,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 184,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 183,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 182,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 181,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 180,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 179,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 178,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 177,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 176,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 175,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 174,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 173,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 172,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 171,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 170,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 169,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 168,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 167,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 166,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 165,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 164,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 163,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 162,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 161,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 160,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 159,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 158,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 157,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 156,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 155,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 154,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 153,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 152,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 151,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 150,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 149,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 148,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 147,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 146,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 145,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 144,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 143,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 142,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 141,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 140,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 139,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 138,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 137,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 136,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 135,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 134,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 133,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 132,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 131,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 130,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 129,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 128,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 127,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 126,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 125,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 124,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 123,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 122,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 121,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 120,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 119,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 118,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 117,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 116,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 115,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 114,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 113,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 112,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 111,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 110,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 109,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 108,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 107,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 106,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 105,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 104,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 103,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 102,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 101,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 100,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 99,\n          \"Y\": 1.4201427917391793\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 98,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 97,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 96,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 95,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 94,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 93,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 92,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 91,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 90,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 89,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 88,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 87,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 86,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 85,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 84,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 83,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 82,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 81,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 80,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 79,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 78,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 77,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 76,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 75,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 74,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 73,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 72,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 71,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 70,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 69,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 68,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 67,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 66,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 65,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 64,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 63,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 62,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 61,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 60,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 59,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 58,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 57,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 56,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 55,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 54,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 53,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 52,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 51,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 50,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 49,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 48,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 47,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 46,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 45,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 44,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 43,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 42,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 41,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 40,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 39,\n          \"Y\": 1.7142197811374518\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 38,\n          \"Y\": 1.858600127811928\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 37,\n          \"Y\": 1.858600127811928\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 36,\n          \"Y\": 1.858600127811928\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 35,\n          \"Y\": 1.858600127811928\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 34,\n          \"Y\": 1.858600127811928\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 33,\n          \"Y\": 1.858600127811928\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 32,\n          \"Y\": 1.858600127811928\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 31,\n          \"Y\": 1.858600127811928\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 30,\n          \"Y\": 1.4431168371690295\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 29,\n          \"Y\": 1.4431168371690295\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 28,\n          \"Y\": 1.4431168371690295\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 27,\n          \"Y\": 1.4431168371690295\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 26,\n          \"Y\": 1.4431168371690295\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 25,\n          \"Y\": 1.4431168371690295\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 24,\n          \"Y\": 1.4431168371690295\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 23,\n          \"Y\": 1.4431168371690295\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 22,\n          \"Y\": 1.4431168371690295\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 21,\n          \"Y\": 1.4431168371690295\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 20,\n          \"Y\": 1.5802552971615031\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 19,\n          \"Y\": 1.5802552971615031\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 18,\n          \"Y\": 1.3145215619778121\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 17,\n          \"Y\": 2.2234710547460788\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 16,\n          \"Y\": 2.2234710547460788\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 15,\n          \"Y\": 2.2234710547460788\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 14,\n          \"Y\": 2.2234710547460788\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 13,\n          \"Y\": 2.2234710547460788\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 12,\n          \"Y\": 2.2234710547460788\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 11,\n          \"Y\": 2.2234710547460788\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 10,\n          \"Y\": 2.2234710547460788\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 9,\n          \"Y\": 2.529685152521397\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 8,\n          \"Y\": 2.529685152521397\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 7,\n          \"Y\": 2.529685152521397\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 6,\n          \"Y\": 2.529685152521397\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 5,\n          \"Y\": 2.529685152521397\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 4,\n          \"Y\": 2.529685152521397\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 3,\n          \"Y\": 2.529685152521397\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 2,\n          \"Y\": 2.529685152521397\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 1,\n          \"Y\": 2.529685152521397\n         }\n        ]\n       },\n       \"encoding\": {\n        \"color\": {},\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"line\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"print \\\"Intercept\\\"\\n\",\n    \"l = length mhRunsRegression\\n\",\n    \"xs = reverse $ fromIntegral <$> [1..l] ::[Double]\\n\",\n    \"plot (xs, (\\\\(_,x,_) -> x) <$> mhRunsRegression) \\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This is a sample from the MCMC walk. Since this is an easy inference problem, it wasn't hard to generate good samples.\\n\",\n    \"\\n\",\n    \"We can also view the posterior predictive, as follows:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -10,\n          \"Y\": 34.30944810257017\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.9,\n          \"Y\": 27.24085149708539\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.8,\n          \"Y\": 38.505594739738974\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.700000000000001,\n          \"Y\": 24.670936444125363\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.600000000000001,\n          \"Y\": 21.818485342895272\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.500000000000002,\n          \"Y\": 37.53521801611909\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.400000000000002,\n          \"Y\": 24.81836033904785\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.300000000000002,\n          \"Y\": 26.1468516568216\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.200000000000003,\n          \"Y\": 46.21426014304069\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.100000000000003,\n          \"Y\": 23.366630457628382\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -9.000000000000004,\n          \"Y\": 17.26103440266769\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.900000000000004,\n          \"Y\": 36.996524465235666\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.800000000000004,\n          \"Y\": 40.521391215856795\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.700000000000005,\n          \"Y\": 31.30239997365902\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.600000000000005,\n          \"Y\": 23.959440654739563\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.500000000000005,\n          \"Y\": 27.74437564349818\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.400000000000006,\n          \"Y\": 18.965794903862403\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.300000000000006,\n          \"Y\": 21.058539751786654\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.200000000000006,\n          \"Y\": 37.814198368799225\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.100000000000007,\n          \"Y\": 31.215922756108043\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -8.000000000000007,\n          \"Y\": 24.90491777484204\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.9000000000000075,\n          \"Y\": 37.0399759154341\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.800000000000008,\n          \"Y\": 23.986058255244796\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.700000000000008,\n          \"Y\": 20.63702948447236\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.6000000000000085,\n          \"Y\": 17.834350368718596\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.500000000000009,\n          \"Y\": 30.889289474711006\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.400000000000009,\n          \"Y\": 25.55914094504301\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.30000000000001,\n          \"Y\": 38.17677226102148\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.20000000000001,\n          \"Y\": 23.968277250518753\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.10000000000001,\n          \"Y\": 28.822417229203452\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -7.000000000000011,\n          \"Y\": 13.757426417546313\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.900000000000011,\n          \"Y\": 30.75120251034535\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.800000000000011,\n          \"Y\": 26.871153315875464\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.700000000000012,\n          \"Y\": 12.37861745653536\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.600000000000012,\n          \"Y\": 33.117194179468406\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.500000000000012,\n          \"Y\": 9.516020271152541\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.400000000000013,\n          \"Y\": 17.630803136855665\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.300000000000013,\n          \"Y\": 36.21084742871229\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.2000000000000135,\n          \"Y\": 14.251021837486869\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.100000000000014,\n          \"Y\": 20.062215187158685\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -6.000000000000014,\n          \"Y\": 18.083116343489216\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.900000000000015,\n          \"Y\": 15.28740704322962\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.800000000000015,\n          \"Y\": 17.070638420024245\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.700000000000015,\n          \"Y\": 13.511563137515212\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.600000000000016,\n          \"Y\": 13.26658019005712\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.500000000000016,\n          \"Y\": 23.608852195580432\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.400000000000016,\n          \"Y\": 24.35149718263962\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.300000000000017,\n          \"Y\": 21.703168581725432\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.200000000000017,\n          \"Y\": 17.1774381779952\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.100000000000017,\n          \"Y\": 14.187270317166158\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -5.000000000000018,\n          \"Y\": 19.76926076295428\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.900000000000018,\n          \"Y\": 13.718309147013098\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.8000000000000185,\n          \"Y\": 20.042551878916267\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.700000000000019,\n          \"Y\": 15.388665012999017\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.600000000000019,\n          \"Y\": 16.719625210279844\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.5000000000000195,\n          \"Y\": 12.684268185800466\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.40000000000002,\n          \"Y\": 20.972001504282858\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.30000000000002,\n          \"Y\": 26.949964928714074\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.200000000000021,\n          \"Y\": 11.60909265617898\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.100000000000021,\n          \"Y\": 13.175012961884832\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -4.000000000000021,\n          \"Y\": 12.141710305404924\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.9000000000000217,\n          \"Y\": 31.50777579637058\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.800000000000022,\n          \"Y\": 10.122434264175412\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.7000000000000224,\n          \"Y\": 14.394935513223766\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.6000000000000227,\n          \"Y\": 17.8050754658001\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.500000000000023,\n          \"Y\": 13.128129937914753\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.4000000000000234,\n          \"Y\": 10.447725487357562\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.300000000000024,\n          \"Y\": 2.3216247096763745\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.200000000000024,\n          \"Y\": -2.3935463334637976\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.1000000000000245,\n          \"Y\": 19.175108843091987\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.000000000000025,\n          \"Y\": 17.66358075057135\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.9000000000000252,\n          \"Y\": 1.1571654749816656\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.8000000000000256,\n          \"Y\": 16.326339805358813\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.700000000000026,\n          \"Y\": 9.01821962277669\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.6000000000000263,\n          \"Y\": 12.504975994167143\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.5000000000000266,\n          \"Y\": 14.12775355293637\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.400000000000027,\n          \"Y\": 8.286012562357495\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.3000000000000274,\n          \"Y\": 6.290269992341997\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.2000000000000277,\n          \"Y\": 9.138818479389405\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.100000000000028,\n          \"Y\": 16.526642178010842\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -2.0000000000000284,\n          \"Y\": 10.581307935901794\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.9000000000000288,\n          \"Y\": 14.932795437535695\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.8000000000000291,\n          \"Y\": 4.71114648257332\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.7000000000000295,\n          \"Y\": 7.416810754656249\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.6000000000000298,\n          \"Y\": 7.5050755000615075\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.5000000000000302,\n          \"Y\": 12.042999790643961\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.4000000000000306,\n          \"Y\": 12.465550257656759\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.300000000000031,\n          \"Y\": 6.2763293540898575\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.2000000000000313,\n          \"Y\": 14.799162604951395\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.1000000000000316,\n          \"Y\": 8.228323269351655\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -1.000000000000032,\n          \"Y\": 7.924289350621528\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.9000000000000323,\n          \"Y\": -3.997254163811429\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.8000000000000327,\n          \"Y\": -1.8524902509807584\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.700000000000033,\n          \"Y\": 3.426322847759426\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.6000000000000334,\n          \"Y\": -3.106050261897967\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.5000000000000338,\n          \"Y\": -4.781485585909262\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.4000000000000341,\n          \"Y\": 16.84527197689767\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.30000000000003446,\n          \"Y\": 7.372377811427535\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.20000000000003482,\n          \"Y\": -2.8116008367068375\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -0.10000000000003517,\n          \"Y\": 4.007360365629696\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": -3.552713678800501e-14,\n          \"Y\": 3.540259043365712\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.09999999999996412,\n          \"Y\": 0.15385328307732515\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.19999999999996376,\n          \"Y\": 2.9727983467794257\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.2999999999999634,\n          \"Y\": -0.3615413178577145\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.39999999999996305,\n          \"Y\": -3.6587266575239252\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.4999999999999627,\n          \"Y\": -3.4334709451498187\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.5999999999999623,\n          \"Y\": -2.236111483844569\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.699999999999962,\n          \"Y\": 8.592489656527107\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.7999999999999616,\n          \"Y\": 3.818271678583908\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.8999999999999613,\n          \"Y\": -2.394229774870067\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 0.9999999999999609,\n          \"Y\": -10.141157923513603\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.0999999999999606,\n          \"Y\": 0.7542522253411339\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.1999999999999602,\n          \"Y\": -0.038618187230164525\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.2999999999999599,\n          \"Y\": -4.726387546002522\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.3999999999999595,\n          \"Y\": 1.3121290948912852\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.4999999999999591,\n          \"Y\": -3.478432861044001\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.5999999999999588,\n          \"Y\": 0.9176670311917343\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.6999999999999584,\n          \"Y\": -11.732814125277214\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.799999999999958,\n          \"Y\": -3.91662715975036\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.8999999999999577,\n          \"Y\": -7.6658409698277366\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 1.9999999999999574,\n          \"Y\": -3.0064736806234347\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.099999999999957,\n          \"Y\": -7.633426766279966\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.1999999999999567,\n          \"Y\": -1.8353625186801565\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.2999999999999563,\n          \"Y\": -12.962838281711724\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.399999999999956,\n          \"Y\": -6.874329709778972\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.4999999999999556,\n          \"Y\": -6.865995937830962\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.5999999999999552,\n          \"Y\": -7.282490114073971\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.699999999999955,\n          \"Y\": -10.940058951874157\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.7999999999999545,\n          \"Y\": -2.8634238348035304\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.899999999999954,\n          \"Y\": -14.5410594919809\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 2.999999999999954,\n          \"Y\": -6.903380049422234\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.0999999999999535,\n          \"Y\": -0.020859891889068116\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.199999999999953,\n          \"Y\": -17.26560271809112\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.2999999999999527,\n          \"Y\": -7.852826303734025\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.3999999999999524,\n          \"Y\": -7.180158292066604\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.499999999999952,\n          \"Y\": 1.9056213946149931\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.5999999999999517,\n          \"Y\": -20.565516571186564\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.6999999999999513,\n          \"Y\": -9.40184128156832\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.799999999999951,\n          \"Y\": -6.134616264543523\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.8999999999999506,\n          \"Y\": -1.344224483494365\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 3.9999999999999503,\n          \"Y\": -15.08419036718375\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.09999999999995,\n          \"Y\": -5.634321124484247\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.1999999999999496,\n          \"Y\": -6.399374422093152\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.299999999999949,\n          \"Y\": -12.635575801687034\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.399999999999949,\n          \"Y\": -17.97391945574281\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.4999999999999485,\n          \"Y\": -6.065455879541104\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.599999999999948,\n          \"Y\": -4.832412280989314\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.699999999999948,\n          \"Y\": -23.24206254329853\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.799999999999947,\n          \"Y\": -9.357452307456455\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.899999999999947,\n          \"Y\": -21.82506319969983\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 4.999999999999947,\n          \"Y\": -11.843968928601074\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.099999999999946,\n          \"Y\": -17.08269653889447\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.199999999999946,\n          \"Y\": -10.738847657227115\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.299999999999946,\n          \"Y\": -13.587572774398549\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.399999999999945,\n          \"Y\": -4.339898860449246\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.499999999999945,\n          \"Y\": -11.825243839048284\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.599999999999945,\n          \"Y\": -19.100335230738146\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.699999999999944,\n          \"Y\": -13.909073281212025\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.799999999999944,\n          \"Y\": -29.523186095150173\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.8999999999999435,\n          \"Y\": -19.940887518753886\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 5.999999999999943,\n          \"Y\": -24.137053483958532\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.099999999999945,\n          \"Y\": -16.177412372433064\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.1999999999999424,\n          \"Y\": -11.621861497627325\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.29999999999994,\n          \"Y\": -14.597257000044214\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.399999999999942,\n          \"Y\": -16.49469138575554\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.499999999999943,\n          \"Y\": -17.89162526935495\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.599999999999941,\n          \"Y\": -19.953612663648663\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.699999999999939,\n          \"Y\": -26.736893263134277\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.79999999999994,\n          \"Y\": -28.95533737137772\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.899999999999942,\n          \"Y\": -11.224080374306551\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 6.99999999999994,\n          \"Y\": -9.879582955928694\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.0999999999999375,\n          \"Y\": -12.271446635835595\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.199999999999939,\n          \"Y\": -18.111073939488563\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.29999999999994,\n          \"Y\": -12.938979400261417\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.399999999999938,\n          \"Y\": -18.42237381905723\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.499999999999936,\n          \"Y\": -19.824818093181428\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.5999999999999375,\n          \"Y\": -18.734945476464684\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.699999999999939,\n          \"Y\": -30.514553276196345\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.799999999999937,\n          \"Y\": -18.72577871443827\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.899999999999935,\n          \"Y\": -22.826908504247566\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 7.999999999999936,\n          \"Y\": -17.13314378191\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.099999999999937,\n          \"Y\": -23.706409239116628\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.199999999999935,\n          \"Y\": -22.3317613559741\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.299999999999933,\n          \"Y\": -31.81928076819391\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.399999999999935,\n          \"Y\": -26.620202580420756\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.499999999999936,\n          \"Y\": -17.747629012694816\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.599999999999934,\n          \"Y\": -28.82125577870797\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.699999999999932,\n          \"Y\": -23.810830550294764\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.799999999999933,\n          \"Y\": -23.161876110781726\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.899999999999935,\n          \"Y\": -20.966647381889807\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 8.999999999999932,\n          \"Y\": -25.161472279354456\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.09999999999993,\n          \"Y\": -32.99039763218319\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.199999999999932,\n          \"Y\": -29.31726942102719\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.299999999999933,\n          \"Y\": -21.378083562836963\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.399999999999931,\n          \"Y\": -23.73444157889014\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.499999999999929,\n          \"Y\": -20.21159541976074\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.59999999999993,\n          \"Y\": -25.082521718832254\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.699999999999932,\n          \"Y\": -22.019587638620745\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.79999999999993,\n          \"Y\": -29.517670888640144\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.899999999999928,\n          \"Y\": -33.19577101992945\n         },\n         {\n          \"Outlier\": \"\\\"\\\\\\\"N/A\\\\\\\"\\\"\",\n          \"X\": 9.999999999999929,\n          \"Y\": -35.382569991486605\n         }\n        ]\n       },\n       \"encoding\": {\n        \"color\": {\n         \"field\": \"Outlier\"\n        },\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"circle\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"posteriorPredictive :: MonadMeasure m => [Double] -> [Double] -> m [Double]\\n\",\n    \"posteriorPredictive xs ys = do\\n\",\n    \"    (slope, intercept, noise) <- regression xs ys\\n\",\n    \"    forM xs \\\\x -> do\\n\",\n    \"            let y' = x * slope + intercept\\n\",\n    \"            normal y' (sqrt noise)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"predictive <- head <$> (sampleIOfixed . unweighted . mcmc mcmcConfig $ uncurry posteriorPredictive (unzip regressionSamples))\\n\",\n    \"plot (fmap (second (T.pack . show)) (zip (zip range predictive) (Prelude.repeat \\\"N/A\\\")))\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Linear regression with outliers\\n\",\n    \"\\n\",\n    \"Inspired by the tutorials on probabilistic programming language Gen (https://www.gen.dev/tutorials/iterative-inference/tutorial), we'll make the inference problem harder by using the example of a regression with outliers. The idea is that each datapoint $(x,y)$ has $y$ either linearly dependent on $x$, or randomly sampler (an outlier). So the goal of inference is to *jointly* work out what the linear relationship is and which points flout it.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"paramPrior = do\\n\",\n    \"    slope <- normal 0 2\\n\",\n    \"    intercept <- normal 0 2\\n\",\n    \"    noise <- gamma 4 4\\n\",\n    \"    prob_outlier <- uniform 0 0.5 \\n\",\n    \"    return (slope, intercept, noise, prob_outlier)\\n\",\n    \"\\n\",\n    \"forward (slope, intercept, noise, probOutlier) x = do\\n\",\n    \"    isOutlier <- bernoulli probOutlier\\n\",\n    \"    let meanParams = if isOutlier\\n\",\n    \"                    then (0, 20)\\n\",\n    \"                    else (x*slope + intercept, sqrt noise)\\n\",\n    \"    return (meanParams, isOutlier)\\n\",\n    \"\\n\",\n    \"regressionWithOutliersData :: (MonadDistribution m, Traversable t) => t Double -> m (t ((Double, Double), Bool))\\n\",\n    \"regressionWithOutliersData xs = do\\n\",\n    \"    params <- paramPrior\\n\",\n    \"\\n\",\n    \"    forM xs \\\\x -> do\\n\",\n    \"        ((mu, std), isOutlier) <- forward params x\\n\",\n    \"        y <- normal mu std\\n\",\n    \"        return ((x, y), isOutlier)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This is our model. It describes a process for getting $y$ from $x$. Specifically, you start by drawing values for the slope $s$, bias $b$ and noise $n$. Then for each input $x$, you flip a coin. If it lands one way, you draw a $y$ value from a normal with mean $x*slope + bias$ and std $n$, and otherwise you draw from a centered normal with large variance.\\n\",\n    \"\\n\",\n    \"Given a list of $x$ values, this gives a distribution over lists of $y$ values, from which we can sample:\\n\",\n    \"\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -10,\n          \"Y\": 30.14316922289284\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -9.9,\n          \"Y\": -0.26284958638081857\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -9.8,\n          \"Y\": 23.786459587439385\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -9.700000000000001,\n          \"Y\": -68.99193947945726\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -9.600000000000001,\n          \"Y\": -8.043397861176732\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -9.500000000000002,\n          \"Y\": 31.37356835946967\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -9.400000000000002,\n          \"Y\": -23.81048273352878\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -9.300000000000002,\n          \"Y\": 22.735033981928762\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -9.200000000000003,\n          \"Y\": 23.375038991852755\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -9.100000000000003,\n          \"Y\": 27.169089429019078\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -9.000000000000004,\n          \"Y\": 24.42143345836998\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -8.900000000000004,\n          \"Y\": 24.425641978269297\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -8.800000000000004,\n          \"Y\": 30.050736689827513\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -8.700000000000005,\n          \"Y\": 18.278561094651828\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -8.600000000000005,\n          \"Y\": 30.770220409890687\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -8.500000000000005,\n          \"Y\": 6.437669090883507\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -8.400000000000006,\n          \"Y\": -37.03228429479993\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -8.300000000000006,\n          \"Y\": 13.11298520672979\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -8.200000000000006,\n          \"Y\": 23.38808489858207\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -8.100000000000007,\n          \"Y\": 11.824928463235018\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -8.000000000000007,\n          \"Y\": 23.442573379452057\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -7.9000000000000075,\n          \"Y\": 29.057062960826705\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -7.800000000000008,\n          \"Y\": 22.567508920540522\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -7.700000000000008,\n          \"Y\": 8.660181503529154\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -7.6000000000000085,\n          \"Y\": 19.25862039466749\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -7.500000000000009,\n          \"Y\": 0.3644817992929184\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -7.400000000000009,\n          \"Y\": -21.224596735432097\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -7.30000000000001,\n          \"Y\": -5.08262280552811\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -7.20000000000001,\n          \"Y\": -22.40271677868227\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -7.10000000000001,\n          \"Y\": 27.315599934341897\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -7.000000000000011,\n          \"Y\": 40.6554142943223\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -6.900000000000011,\n          \"Y\": 0.7924834976117429\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -6.800000000000011,\n          \"Y\": -3.0689825793534142\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -6.700000000000012,\n          \"Y\": 2.0777625946734073\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -6.600000000000012,\n          \"Y\": 16.360935345131573\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -6.500000000000012,\n          \"Y\": 4.46724475614298\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -6.400000000000013,\n          \"Y\": -1.5461624315036717\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -6.300000000000013,\n          \"Y\": 24.71362894119821\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -6.2000000000000135,\n          \"Y\": 42.412216707046596\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -6.100000000000014,\n          \"Y\": 19.25819017706044\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -6.000000000000014,\n          \"Y\": 13.924560064643464\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -5.900000000000015,\n          \"Y\": 16.44450463396404\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -5.800000000000015,\n          \"Y\": 20.22565144666506\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -5.700000000000015,\n          \"Y\": 4.130260844964003\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -5.600000000000016,\n          \"Y\": 13.920685536449982\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -5.500000000000016,\n          \"Y\": 19.404328857643684\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -5.400000000000016,\n          \"Y\": 11.591361762658316\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -5.300000000000017,\n          \"Y\": 21.716931658828592\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -5.200000000000017,\n          \"Y\": -14.86585011237548\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -5.100000000000017,\n          \"Y\": -27.7443807834266\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -5.000000000000018,\n          \"Y\": 17.665401268686168\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -4.900000000000018,\n          \"Y\": 22.498750208363987\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -4.8000000000000185,\n          \"Y\": 11.477829247049517\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -4.700000000000019,\n          \"Y\": -2.236758643252085\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -4.600000000000019,\n          \"Y\": 25.095015724308034\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -4.5000000000000195,\n          \"Y\": 17.18991809253406\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -4.40000000000002,\n          \"Y\": -24.744360068281004\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -4.30000000000002,\n          \"Y\": -7.931801457689884\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -4.200000000000021,\n          \"Y\": 10.813897350066041\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -4.100000000000021,\n          \"Y\": 14.36412464187282\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -4.000000000000021,\n          \"Y\": 10.048413936752135\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -3.9000000000000217,\n          \"Y\": -7.806116027860427\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -3.800000000000022,\n          \"Y\": 15.513453565319507\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -3.7000000000000224,\n          \"Y\": 13.87073636869106\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -3.6000000000000227,\n          \"Y\": 11.46674012488362\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -3.500000000000023,\n          \"Y\": 16.059440743337102\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -3.4000000000000234,\n          \"Y\": 15.293100956976737\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -3.300000000000024,\n          \"Y\": 21.84763262761431\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -3.200000000000024,\n          \"Y\": -0.36221408177898484\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -3.1000000000000245,\n          \"Y\": 15.693632661329104\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -3.000000000000025,\n          \"Y\": -6.3470305289160835\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -2.9000000000000252,\n          \"Y\": 10.805876165134304\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -2.8000000000000256,\n          \"Y\": 43.073138049536766\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -2.700000000000026,\n          \"Y\": 16.743971720184916\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -2.6000000000000263,\n          \"Y\": 20.17816530884579\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -2.5000000000000266,\n          \"Y\": 10.185237062991554\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -2.400000000000027,\n          \"Y\": 24.67140741709269\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -2.3000000000000274,\n          \"Y\": 3.7143759689601357\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -2.2000000000000277,\n          \"Y\": 6.083699392485441\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -2.100000000000028,\n          \"Y\": 6.832165636012283\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -2.0000000000000284,\n          \"Y\": 14.405714990070868\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -1.9000000000000288,\n          \"Y\": 11.188926560244449\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -1.8000000000000291,\n          \"Y\": 25.768223310681986\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -1.7000000000000295,\n          \"Y\": -37.59090989382119\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -1.6000000000000298,\n          \"Y\": 23.64144553913516\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -1.5000000000000302,\n          \"Y\": -8.576305123038889\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -1.4000000000000306,\n          \"Y\": -3.413990873751257\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -1.300000000000031,\n          \"Y\": 5.764515053668303\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -1.2000000000000313,\n          \"Y\": -4.881619552621354\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -1.1000000000000316,\n          \"Y\": 5.6052889213735035\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -1.000000000000032,\n          \"Y\": 4.303828323139834\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -0.9000000000000323,\n          \"Y\": -31.588506775217645\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -0.8000000000000327,\n          \"Y\": -4.276114964288603\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -0.700000000000033,\n          \"Y\": 4.535423923547052\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -0.6000000000000334,\n          \"Y\": 24.61942267029316\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -0.5000000000000338,\n          \"Y\": -17.830933767956402\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -0.4000000000000341,\n          \"Y\": -1.7450293908309056\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -0.30000000000003446,\n          \"Y\": 3.3108205257662364\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": -0.20000000000003482,\n          \"Y\": 0.7651432133855662\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -0.10000000000003517,\n          \"Y\": -11.881720947448017\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": -3.552713678800501e-14,\n          \"Y\": 15.275164463456829\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 0.09999999999996412,\n          \"Y\": 2.6322100577194067\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 0.19999999999996376,\n          \"Y\": 4.898150793977379\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 0.2999999999999634,\n          \"Y\": 17.70645751790601\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 0.39999999999996305,\n          \"Y\": 8.552044532855996\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 0.4999999999999627,\n          \"Y\": 21.884620845377007\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 0.5999999999999623,\n          \"Y\": 9.545267231818897\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 0.699999999999962,\n          \"Y\": 2.2310373255180265\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 0.7999999999999616,\n          \"Y\": 6.8744523688958274\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 0.8999999999999613,\n          \"Y\": -1.783436689012548\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 0.9999999999999609,\n          \"Y\": 4.47640686579331\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 1.0999999999999606,\n          \"Y\": -2.229919825404161\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 1.1999999999999602,\n          \"Y\": -1.6888315159113967\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 1.2999999999999599,\n          \"Y\": -26.34560770532998\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 1.3999999999999595,\n          \"Y\": 7.322340575226373\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 1.4999999999999591,\n          \"Y\": 1.9729072168157065\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 1.5999999999999588,\n          \"Y\": 1.513234082565413\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 1.6999999999999584,\n          \"Y\": 13.227480313783765\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 1.799999999999958,\n          \"Y\": 12.226379085662112\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 1.8999999999999577,\n          \"Y\": 2.850573235675812\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 1.9999999999999574,\n          \"Y\": -6.392989857152452\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 2.099999999999957,\n          \"Y\": -5.3213737430909305\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 2.1999999999999567,\n          \"Y\": 0.41427397930309406\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 2.2999999999999563,\n          \"Y\": -5.750652275493272\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 2.399999999999956,\n          \"Y\": 4.340182272052314\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 2.4999999999999556,\n          \"Y\": 4.7901246139126625\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 2.5999999999999552,\n          \"Y\": -11.012677316789915\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 2.699999999999955,\n          \"Y\": -2.5092360333006916\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 2.7999999999999545,\n          \"Y\": -9.854893391572105\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 2.899999999999954,\n          \"Y\": -28.61214419700161\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 2.999999999999954,\n          \"Y\": 8.248524918035386\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 3.0999999999999535,\n          \"Y\": -3.622542781911439\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 3.199999999999953,\n          \"Y\": 4.494708619120168\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 3.2999999999999527,\n          \"Y\": 3.860145108336754\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 3.3999999999999524,\n          \"Y\": -4.0035470084411795\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 3.499999999999952,\n          \"Y\": -11.04990869937726\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 3.5999999999999517,\n          \"Y\": -35.32932042223501\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 3.6999999999999513,\n          \"Y\": 11.866841248128683\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 3.799999999999951,\n          \"Y\": -10.162451780099051\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 3.8999999999999506,\n          \"Y\": 9.661220540277904\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 3.9999999999999503,\n          \"Y\": -10.73292544867606\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 4.09999999999995,\n          \"Y\": -18.550653995894045\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 4.1999999999999496,\n          \"Y\": -14.52608532847757\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 4.299999999999949,\n          \"Y\": 21.41545900080303\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 4.399999999999949,\n          \"Y\": 41.510023167064915\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 4.4999999999999485,\n          \"Y\": -10.944888800178278\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 4.599999999999948,\n          \"Y\": -17.678231065336824\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 4.699999999999948,\n          \"Y\": -18.253167364985977\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 4.799999999999947,\n          \"Y\": -10.446879435653443\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 4.899999999999947,\n          \"Y\": -4.690038562027151\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 4.999999999999947,\n          \"Y\": -5.757921683446889\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 5.099999999999946,\n          \"Y\": 8.693733167616339\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 5.199999999999946,\n          \"Y\": -12.216077387002828\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 5.299999999999946,\n          \"Y\": 1.6720822524528287\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 5.399999999999945,\n          \"Y\": -14.464965977547303\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 5.499999999999945,\n          \"Y\": -12.869809983276069\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 5.599999999999945,\n          \"Y\": 34.62535634020814\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 5.699999999999944,\n          \"Y\": 39.28048699796905\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 5.799999999999944,\n          \"Y\": -18.522573806115407\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 5.8999999999999435,\n          \"Y\": 2.8254226810055205\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 5.999999999999943,\n          \"Y\": -7.598929518634544\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 6.099999999999945,\n          \"Y\": -17.140071943688035\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 6.1999999999999424,\n          \"Y\": -21.78017043908215\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 6.29999999999994,\n          \"Y\": 8.34770023404953\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 6.399999999999942,\n          \"Y\": 2.6439493039811115\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 6.499999999999943,\n          \"Y\": -20.126788491353174\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 6.599999999999941,\n          \"Y\": -15.051462287577962\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 6.699999999999939,\n          \"Y\": 4.3207686658048425\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 6.79999999999994,\n          \"Y\": -8.60953644756132\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 6.899999999999942,\n          \"Y\": -9.408044612231928\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 6.99999999999994,\n          \"Y\": -19.056725876851928\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 7.0999999999999375,\n          \"Y\": -20.094495666483716\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 7.199999999999939,\n          \"Y\": -0.40330975452223106\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 7.29999999999994,\n          \"Y\": -48.28017130034681\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 7.399999999999938,\n          \"Y\": -19.705987406023656\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 7.499999999999936,\n          \"Y\": -27.496292304878267\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 7.5999999999999375,\n          \"Y\": -18.884286907276728\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 7.699999999999939,\n          \"Y\": -22.442972670784375\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 7.799999999999937,\n          \"Y\": 6.610475555129508\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 7.899999999999935,\n          \"Y\": -28.406701583023757\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 7.999999999999936,\n          \"Y\": 10.913894309977062\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 8.099999999999937,\n          \"Y\": 22.467791024883127\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 8.199999999999935,\n          \"Y\": 12.316122841847735\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 8.299999999999933,\n          \"Y\": -18.61774741315339\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 8.399999999999935,\n          \"Y\": -29.49760626562651\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 8.499999999999936,\n          \"Y\": -25.738038864954476\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 8.599999999999934,\n          \"Y\": -17.85703560203325\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 8.699999999999932,\n          \"Y\": -9.172720756633\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 8.799999999999933,\n          \"Y\": -20.500224282886077\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 8.899999999999935,\n          \"Y\": -27.955994289017063\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 8.999999999999932,\n          \"Y\": -23.309509588194302\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 9.09999999999993,\n          \"Y\": 31.120217815149882\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 9.199999999999932,\n          \"Y\": -24.086143061403874\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 9.299999999999933,\n          \"Y\": -21.7596596113579\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 9.399999999999931,\n          \"Y\": 1.3453810777338207\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 9.499999999999929,\n          \"Y\": 30.106740007028108\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 9.59999999999993,\n          \"Y\": -8.245762291377288\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 9.699999999999932,\n          \"Y\": -29.313469546701562\n         },\n         {\n          \"Outlier\": \"\\\"False\\\"\",\n          \"X\": 9.79999999999993,\n          \"Y\": -27.209848874368774\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 9.899999999999928,\n          \"Y\": 7.612568009425738\n         },\n         {\n          \"Outlier\": \"\\\"True\\\"\",\n          \"X\": 9.999999999999929,\n          \"Y\": -13.529703374498748\n         }\n        ]\n       },\n       \"encoding\": {\n        \"color\": {\n         \"field\": \"Outlier\"\n        },\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"circle\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"range = [-10,-9.9..10] :: [Double]\\n\",\n    \"samples <- sampleIOfixed $ regressionWithOutliersData range\\n\",\n    \"plot (fmap (second (T.pack . show)) samples)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<!-- This is our dataset, with outliers shown in orange.\\n\",\n    \"\\n\",\n    \"Given this dataset of $(x,y)$ pairs, we now consider the problem of inference. That is, we want to infer the slope, bias, noise and *for each datapoint*, whether it's an outlier.\\n\",\n    \"\\n\",\n    \"Our first attempt will be to average a large number of samples, weighted by how likely they are. TODO: add the conditioning\\n\",\n    \" -->\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<!-- Why did this result in a bad guess? Simply because there are so many more bad guesses than good ones, so that even if you weight the good guesses higher, if you have almost none, then it doesn't matter.\\n\",\n    \"\\n\",\n    \"The classic solution to this problem (the solution space is too large for independent sampling) is to use a Markov Chain method, where each sample depends on the last. You can do so in a clever way, to obtain unbiased samples from the true posterior distribution in the limit of a sufficiently long chain. Monad-bayes implements the standard Markov Chain Monte Carlo approach with Metropolis Hastings transitions.\\n\",\n    \"\\n\",\n    \"Here's how it goes: -->\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"regressionWithOutliers :: (MonadMeasure m) =>\\n\",\n    \"    [Double] -> [Double] -> m ((Double, Double, Double, Double), [Bool])\\n\",\n    \"regressionWithOutliers xs ys = do\\n\",\n    \"    params <- paramPrior\\n\",\n    \"    \\n\",\n    \"    outliers <- forM (zip xs ys) \\\\(x, y) -> do\\n\",\n    \"        ((mu, std), isOutlier) <- forward params x\\n\",\n    \"        factor $ normalPdf mu std y\\n\",\n    \"        return isOutlier\\n\",\n    \"    return (params, outliers)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": []\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"\\n\",\n    \"mhRuns <- sampleIOfixed . unweighted . mcmc mcmcConfig $ regressionWithOutliers range (snd . fst <$> samples)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"outlierProb s = (\\\\(x, y) ->  x / (x+y) ) <$> \\n\",\n    \"  foldr \\n\",\n    \"    (\\\\(_,lb) li -> [ if b then (num1+1, num2) else (num1,num2+1) | (b,(num1, num2)) <- zip lb li]) \\n\",\n    \"    (Prelude.repeat (0,0)) s\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"Outlier\": 0.7472527472527473,\n          \"X\": -10,\n          \"Y\": 30.14316922289284\n         },\n         {\n          \"Outlier\": 0.6463536463536463,\n          \"X\": -9.9,\n          \"Y\": -0.26284958638081857\n         },\n         {\n          \"Outlier\": 0.8171828171828172,\n          \"X\": -9.8,\n          \"Y\": 23.786459587439385\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -9.700000000000001,\n          \"Y\": -68.99193947945726\n         },\n         {\n          \"Outlier\": 0.7112887112887113,\n          \"X\": -9.600000000000001,\n          \"Y\": -8.043397861176732\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -9.500000000000002,\n          \"Y\": 31.37356835946967\n         },\n         {\n          \"Outlier\": 0.058941058941058944,\n          \"X\": -9.400000000000002,\n          \"Y\": -23.81048273352878\n         },\n         {\n          \"Outlier\": 0.34665334665334663,\n          \"X\": -9.300000000000002,\n          \"Y\": 22.735033981928762\n         },\n         {\n          \"Outlier\": 0.12687312687312688,\n          \"X\": -9.200000000000003,\n          \"Y\": 23.375038991852755\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -9.100000000000003,\n          \"Y\": 27.169089429019078\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -9.000000000000004,\n          \"Y\": 24.42143345836998\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -8.900000000000004,\n          \"Y\": 24.425641978269297\n         },\n         {\n          \"Outlier\": 0.4355644355644356,\n          \"X\": -8.800000000000004,\n          \"Y\": 30.050736689827513\n         },\n         {\n          \"Outlier\": 0.41858141858141856,\n          \"X\": -8.700000000000005,\n          \"Y\": 18.278561094651828\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -8.600000000000005,\n          \"Y\": 30.770220409890687\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -8.500000000000005,\n          \"Y\": 6.437669090883507\n         },\n         {\n          \"Outlier\": 0.5364635364635365,\n          \"X\": -8.400000000000006,\n          \"Y\": -37.03228429479993\n         },\n         {\n          \"Outlier\": 0.8561438561438561,\n          \"X\": -8.300000000000006,\n          \"Y\": 13.11298520672979\n         },\n         {\n          \"Outlier\": 0.04595404595404595,\n          \"X\": -8.200000000000006,\n          \"Y\": 23.38808489858207\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -8.100000000000007,\n          \"Y\": 11.824928463235018\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -8.000000000000007,\n          \"Y\": 23.442573379452057\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -7.9000000000000075,\n          \"Y\": 29.057062960826705\n         },\n         {\n          \"Outlier\": 0.0969030969030969,\n          \"X\": -7.800000000000008,\n          \"Y\": 22.567508920540522\n         },\n         {\n          \"Outlier\": 0.7472527472527473,\n          \"X\": -7.700000000000008,\n          \"Y\": 8.660181503529154\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -7.6000000000000085,\n          \"Y\": 19.25862039466749\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -7.500000000000009,\n          \"Y\": 0.3644817992929184\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -7.400000000000009,\n          \"Y\": -21.224596735432097\n         },\n         {\n          \"Outlier\": 0.45854145854145856,\n          \"X\": -7.30000000000001,\n          \"Y\": -5.08262280552811\n         },\n         {\n          \"Outlier\": 0.44755244755244755,\n          \"X\": -7.20000000000001,\n          \"Y\": -22.40271677868227\n         },\n         {\n          \"Outlier\": 0.19480519480519481,\n          \"X\": -7.10000000000001,\n          \"Y\": 27.315599934341897\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -7.000000000000011,\n          \"Y\": 40.6554142943223\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -6.900000000000011,\n          \"Y\": 0.7924834976117429\n         },\n         {\n          \"Outlier\": 0.37462537462537465,\n          \"X\": -6.800000000000011,\n          \"Y\": -3.0689825793534142\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -6.700000000000012,\n          \"Y\": 2.0777625946734073\n         },\n         {\n          \"Outlier\": 0.6943056943056943,\n          \"X\": -6.600000000000012,\n          \"Y\": 16.360935345131573\n         },\n         {\n          \"Outlier\": 0.24075924075924077,\n          \"X\": -6.500000000000012,\n          \"Y\": 4.46724475614298\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -6.400000000000013,\n          \"Y\": -1.5461624315036717\n         },\n         {\n          \"Outlier\": 0.24075924075924077,\n          \"X\": -6.300000000000013,\n          \"Y\": 24.71362894119821\n         },\n         {\n          \"Outlier\": 0.5194805194805194,\n          \"X\": -6.2000000000000135,\n          \"Y\": 42.412216707046596\n         },\n         {\n          \"Outlier\": 0.4955044955044955,\n          \"X\": -6.100000000000014,\n          \"Y\": 19.25819017706044\n         },\n         {\n          \"Outlier\": 0.2597402597402597,\n          \"X\": -6.000000000000014,\n          \"Y\": 13.924560064643464\n         },\n         {\n          \"Outlier\": 0.16383616383616384,\n          \"X\": -5.900000000000015,\n          \"Y\": 16.44450463396404\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -5.800000000000015,\n          \"Y\": 20.22565144666506\n         },\n         {\n          \"Outlier\": 0.17782217782217782,\n          \"X\": -5.700000000000015,\n          \"Y\": 4.130260844964003\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -5.600000000000016,\n          \"Y\": 13.920685536449982\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -5.500000000000016,\n          \"Y\": 19.404328857643684\n         },\n         {\n          \"Outlier\": 0.03496503496503497,\n          \"X\": -5.400000000000016,\n          \"Y\": 11.591361762658316\n         },\n         {\n          \"Outlier\": 0.06493506493506493,\n          \"X\": -5.300000000000017,\n          \"Y\": 21.716931658828592\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -5.200000000000017,\n          \"Y\": -14.86585011237548\n         },\n         {\n          \"Outlier\": 0.995004995004995,\n          \"X\": -5.100000000000017,\n          \"Y\": -27.7443807834266\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -5.000000000000018,\n          \"Y\": 17.665401268686168\n         },\n         {\n          \"Outlier\": 0.09290709290709291,\n          \"X\": -4.900000000000018,\n          \"Y\": 22.498750208363987\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -4.8000000000000185,\n          \"Y\": 11.477829247049517\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -4.700000000000019,\n          \"Y\": -2.236758643252085\n         },\n         {\n          \"Outlier\": 0.2057942057942058,\n          \"X\": -4.600000000000019,\n          \"Y\": 25.095015724308034\n         },\n         {\n          \"Outlier\": 0.18081918081918083,\n          \"X\": -4.5000000000000195,\n          \"Y\": 17.18991809253406\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -4.40000000000002,\n          \"Y\": -24.744360068281004\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -4.30000000000002,\n          \"Y\": -7.931801457689884\n         },\n         {\n          \"Outlier\": 0.7212787212787213,\n          \"X\": -4.200000000000021,\n          \"Y\": 10.813897350066041\n         },\n         {\n          \"Outlier\": 0.14985014985014986,\n          \"X\": -4.100000000000021,\n          \"Y\": 14.36412464187282\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -4.000000000000021,\n          \"Y\": 10.048413936752135\n         },\n         {\n          \"Outlier\": 0.7472527472527473,\n          \"X\": -3.9000000000000217,\n          \"Y\": -7.806116027860427\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -3.800000000000022,\n          \"Y\": 15.513453565319507\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -3.7000000000000224,\n          \"Y\": 13.87073636869106\n         },\n         {\n          \"Outlier\": 0.2867132867132867,\n          \"X\": -3.6000000000000227,\n          \"Y\": 11.46674012488362\n         },\n         {\n          \"Outlier\": 0.03696303696303696,\n          \"X\": -3.500000000000023,\n          \"Y\": 16.059440743337102\n         },\n         {\n          \"Outlier\": 0.15184815184815184,\n          \"X\": -3.4000000000000234,\n          \"Y\": 15.293100956976737\n         },\n         {\n          \"Outlier\": 0.2977022977022977,\n          \"X\": -3.300000000000024,\n          \"Y\": 21.84763262761431\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -3.200000000000024,\n          \"Y\": -0.36221408177898484\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -3.1000000000000245,\n          \"Y\": 15.693632661329104\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -3.000000000000025,\n          \"Y\": -6.3470305289160835\n         },\n         {\n          \"Outlier\": 0.1968031968031968,\n          \"X\": -2.9000000000000252,\n          \"Y\": 10.805876165134304\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -2.8000000000000256,\n          \"Y\": 43.073138049536766\n         },\n         {\n          \"Outlier\": 0.14985014985014986,\n          \"X\": -2.700000000000026,\n          \"Y\": 16.743971720184916\n         },\n         {\n          \"Outlier\": 0.17482517482517482,\n          \"X\": -2.6000000000000263,\n          \"Y\": 20.17816530884579\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -2.5000000000000266,\n          \"Y\": 10.185237062991554\n         },\n         {\n          \"Outlier\": 0.3336663336663337,\n          \"X\": -2.400000000000027,\n          \"Y\": 24.67140741709269\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -2.3000000000000274,\n          \"Y\": 3.7143759689601357\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -2.2000000000000277,\n          \"Y\": 6.083699392485441\n         },\n         {\n          \"Outlier\": 0.17082917082917082,\n          \"X\": -2.100000000000028,\n          \"Y\": 6.832165636012283\n         },\n         {\n          \"Outlier\": 0.2987012987012987,\n          \"X\": -2.0000000000000284,\n          \"Y\": 14.405714990070868\n         },\n         {\n          \"Outlier\": 0.16283716283716285,\n          \"X\": -1.9000000000000288,\n          \"Y\": 11.188926560244449\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": -1.8000000000000291,\n          \"Y\": 25.768223310681986\n         },\n         {\n          \"Outlier\": 0.6873126873126874,\n          \"X\": -1.7000000000000295,\n          \"Y\": -37.59090989382119\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -1.6000000000000298,\n          \"Y\": 23.64144553913516\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -1.5000000000000302,\n          \"Y\": -8.576305123038889\n         },\n         {\n          \"Outlier\": 0.34765234765234765,\n          \"X\": -1.4000000000000306,\n          \"Y\": -3.413990873751257\n         },\n         {\n          \"Outlier\": 0.23476523476523475,\n          \"X\": -1.300000000000031,\n          \"Y\": 5.764515053668303\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -1.2000000000000313,\n          \"Y\": -4.881619552621354\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -1.1000000000000316,\n          \"Y\": 5.6052889213735035\n         },\n         {\n          \"Outlier\": 0.5154845154845155,\n          \"X\": -1.000000000000032,\n          \"Y\": 4.303828323139834\n         },\n         {\n          \"Outlier\": 0.20679320679320679,\n          \"X\": -0.9000000000000323,\n          \"Y\": -31.588506775217645\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -0.8000000000000327,\n          \"Y\": -4.276114964288603\n         },\n         {\n          \"Outlier\": 0.15584415584415584,\n          \"X\": -0.700000000000033,\n          \"Y\": 4.535423923547052\n         },\n         {\n          \"Outlier\": 0.39760239760239763,\n          \"X\": -0.6000000000000334,\n          \"Y\": 24.61942267029316\n         },\n         {\n          \"Outlier\": 0.5614385614385614,\n          \"X\": -0.5000000000000338,\n          \"Y\": -17.830933767956402\n         },\n         {\n          \"Outlier\": 0.1798201798201798,\n          \"X\": -0.4000000000000341,\n          \"Y\": -1.7450293908309056\n         },\n         {\n          \"Outlier\": 0.11388611388611389,\n          \"X\": -0.30000000000003446,\n          \"Y\": 3.3108205257662364\n         },\n         {\n          \"Outlier\": 0.6753246753246753,\n          \"X\": -0.20000000000003482,\n          \"Y\": 0.7651432133855662\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": -0.10000000000003517,\n          \"Y\": -11.881720947448017\n         },\n         {\n          \"Outlier\": 0.6413586413586414,\n          \"X\": -3.552713678800501e-14,\n          \"Y\": 15.275164463456829\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 0.09999999999996412,\n          \"Y\": 2.6322100577194067\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 0.19999999999996376,\n          \"Y\": 4.898150793977379\n         },\n         {\n          \"Outlier\": 0.7932067932067932,\n          \"X\": 0.2999999999999634,\n          \"Y\": 17.70645751790601\n         },\n         {\n          \"Outlier\": 0.22077922077922077,\n          \"X\": 0.39999999999996305,\n          \"Y\": 8.552044532855996\n         },\n         {\n          \"Outlier\": 0.9300699300699301,\n          \"X\": 0.4999999999999627,\n          \"Y\": 21.884620845377007\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 0.5999999999999623,\n          \"Y\": 9.545267231818897\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 0.699999999999962,\n          \"Y\": 2.2310373255180265\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 0.7999999999999616,\n          \"Y\": 6.8744523688958274\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 0.8999999999999613,\n          \"Y\": -1.783436689012548\n         },\n         {\n          \"Outlier\": 0.5304695304695305,\n          \"X\": 0.9999999999999609,\n          \"Y\": 4.47640686579331\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 1.0999999999999606,\n          \"Y\": -2.229919825404161\n         },\n         {\n          \"Outlier\": 0.04995004995004995,\n          \"X\": 1.1999999999999602,\n          \"Y\": -1.6888315159113967\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 1.2999999999999599,\n          \"Y\": -26.34560770532998\n         },\n         {\n          \"Outlier\": 0.07192807192807193,\n          \"X\": 1.3999999999999595,\n          \"Y\": 7.322340575226373\n         },\n         {\n          \"Outlier\": 0.6753246753246753,\n          \"X\": 1.4999999999999591,\n          \"Y\": 1.9729072168157065\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 1.5999999999999588,\n          \"Y\": 1.513234082565413\n         },\n         {\n          \"Outlier\": 0.20279720279720279,\n          \"X\": 1.6999999999999584,\n          \"Y\": 13.227480313783765\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 1.799999999999958,\n          \"Y\": 12.226379085662112\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 1.8999999999999577,\n          \"Y\": 2.850573235675812\n         },\n         {\n          \"Outlier\": 0.11288711288711288,\n          \"X\": 1.9999999999999574,\n          \"Y\": -6.392989857152452\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 2.099999999999957,\n          \"Y\": -5.3213737430909305\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 2.1999999999999567,\n          \"Y\": 0.41427397930309406\n         },\n         {\n          \"Outlier\": 0.13586413586413587,\n          \"X\": 2.2999999999999563,\n          \"Y\": -5.750652275493272\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 2.399999999999956,\n          \"Y\": 4.340182272052314\n         },\n         {\n          \"Outlier\": 0.5794205794205795,\n          \"X\": 2.4999999999999556,\n          \"Y\": 4.7901246139126625\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 2.5999999999999552,\n          \"Y\": -11.012677316789915\n         },\n         {\n          \"Outlier\": 0.13686313686313686,\n          \"X\": 2.699999999999955,\n          \"Y\": -2.5092360333006916\n         },\n         {\n          \"Outlier\": 0.38461538461538464,\n          \"X\": 2.7999999999999545,\n          \"Y\": -9.854893391572105\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 2.899999999999954,\n          \"Y\": -28.61214419700161\n         },\n         {\n          \"Outlier\": 0.10589410589410589,\n          \"X\": 2.999999999999954,\n          \"Y\": 8.248524918035386\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 3.0999999999999535,\n          \"Y\": -3.622542781911439\n         },\n         {\n          \"Outlier\": 0.5264735264735265,\n          \"X\": 3.199999999999953,\n          \"Y\": 4.494708619120168\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 3.2999999999999527,\n          \"Y\": 3.860145108336754\n         },\n         {\n          \"Outlier\": 0.07292707292707293,\n          \"X\": 3.3999999999999524,\n          \"Y\": -4.0035470084411795\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 3.499999999999952,\n          \"Y\": -11.04990869937726\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 3.5999999999999517,\n          \"Y\": -35.32932042223501\n         },\n         {\n          \"Outlier\": 0.4405594405594406,\n          \"X\": 3.6999999999999513,\n          \"Y\": 11.866841248128683\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 3.799999999999951,\n          \"Y\": -10.162451780099051\n         },\n         {\n          \"Outlier\": 0.981018981018981,\n          \"X\": 3.8999999999999506,\n          \"Y\": 9.661220540277904\n         },\n         {\n          \"Outlier\": 0.45354645354645357,\n          \"X\": 3.9999999999999503,\n          \"Y\": -10.73292544867606\n         },\n         {\n          \"Outlier\": 0.03896103896103896,\n          \"X\": 4.09999999999995,\n          \"Y\": -18.550653995894045\n         },\n         {\n          \"Outlier\": 0.04795204795204795,\n          \"X\": 4.1999999999999496,\n          \"Y\": -14.52608532847757\n         },\n         {\n          \"Outlier\": 0.6403596403596403,\n          \"X\": 4.299999999999949,\n          \"Y\": 21.41545900080303\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 4.399999999999949,\n          \"Y\": 41.510023167064915\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 4.4999999999999485,\n          \"Y\": -10.944888800178278\n         },\n         {\n          \"Outlier\": 0.1088911088911089,\n          \"X\": 4.599999999999948,\n          \"Y\": -17.678231065336824\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 4.699999999999948,\n          \"Y\": -18.253167364985977\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 4.799999999999947,\n          \"Y\": -10.446879435653443\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 4.899999999999947,\n          \"Y\": -4.690038562027151\n         },\n         {\n          \"Outlier\": 0.11688311688311688,\n          \"X\": 4.999999999999947,\n          \"Y\": -5.757921683446889\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 5.099999999999946,\n          \"Y\": 8.693733167616339\n         },\n         {\n          \"Outlier\": 0.13286713286713286,\n          \"X\": 5.199999999999946,\n          \"Y\": -12.216077387002828\n         },\n         {\n          \"Outlier\": 0.8861138861138861,\n          \"X\": 5.299999999999946,\n          \"Y\": 1.6720822524528287\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 5.399999999999945,\n          \"Y\": -14.464965977547303\n         },\n         {\n          \"Outlier\": 0.1878121878121878,\n          \"X\": 5.499999999999945,\n          \"Y\": -12.869809983276069\n         },\n         {\n          \"Outlier\": 0.7472527472527473,\n          \"X\": 5.599999999999945,\n          \"Y\": 34.62535634020814\n         },\n         {\n          \"Outlier\": 0.18081918081918083,\n          \"X\": 5.699999999999944,\n          \"Y\": 39.28048699796905\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 5.799999999999944,\n          \"Y\": -18.522573806115407\n         },\n         {\n          \"Outlier\": 0.04395604395604396,\n          \"X\": 5.8999999999999435,\n          \"Y\": 2.8254226810055205\n         },\n         {\n          \"Outlier\": 0.08191808191808192,\n          \"X\": 5.999999999999943,\n          \"Y\": -7.598929518634544\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 6.099999999999945,\n          \"Y\": -17.140071943688035\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 6.1999999999999424,\n          \"Y\": -21.78017043908215\n         },\n         {\n          \"Outlier\": 0.13986013986013987,\n          \"X\": 6.29999999999994,\n          \"Y\": 8.34770023404953\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 6.399999999999942,\n          \"Y\": 2.6439493039811115\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 6.499999999999943,\n          \"Y\": -20.126788491353174\n         },\n         {\n          \"Outlier\": 0.1108891108891109,\n          \"X\": 6.599999999999941,\n          \"Y\": -15.051462287577962\n         },\n         {\n          \"Outlier\": 0.3386613386613387,\n          \"X\": 6.699999999999939,\n          \"Y\": 4.3207686658048425\n         },\n         {\n          \"Outlier\": 0.6513486513486514,\n          \"X\": 6.79999999999994,\n          \"Y\": -8.60953644756132\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 6.899999999999942,\n          \"Y\": -9.408044612231928\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 6.99999999999994,\n          \"Y\": -19.056725876851928\n         },\n         {\n          \"Outlier\": 0.06493506493506493,\n          \"X\": 7.0999999999999375,\n          \"Y\": -20.094495666483716\n         },\n         {\n          \"Outlier\": 0.24075924075924077,\n          \"X\": 7.199999999999939,\n          \"Y\": -0.40330975452223106\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 7.29999999999994,\n          \"Y\": -48.28017130034681\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 7.399999999999938,\n          \"Y\": -19.705987406023656\n         },\n         {\n          \"Outlier\": 0.38461538461538464,\n          \"X\": 7.499999999999936,\n          \"Y\": -27.496292304878267\n         },\n         {\n          \"Outlier\": 0.25774225774225773,\n          \"X\": 7.5999999999999375,\n          \"Y\": -18.884286907276728\n         },\n         {\n          \"Outlier\": 0.06493506493506493,\n          \"X\": 7.699999999999939,\n          \"Y\": -22.442972670784375\n         },\n         {\n          \"Outlier\": 1,\n          \"X\": 7.799999999999937,\n          \"Y\": 6.610475555129508\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 7.899999999999935,\n          \"Y\": -28.406701583023757\n         },\n         {\n          \"Outlier\": 0.5174825174825175,\n          \"X\": 7.999999999999936,\n          \"Y\": 10.913894309977062\n         },\n         {\n          \"Outlier\": 0.15884115884115885,\n          \"X\": 8.099999999999937,\n          \"Y\": 22.467791024883127\n         },\n         {\n          \"Outlier\": 0.26073926073926074,\n          \"X\": 8.199999999999935,\n          \"Y\": 12.316122841847735\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 8.299999999999933,\n          \"Y\": -18.61774741315339\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 8.399999999999935,\n          \"Y\": -29.49760626562651\n         },\n         {\n          \"Outlier\": 0.030969030969030968,\n          \"X\": 8.499999999999936,\n          \"Y\": -25.738038864954476\n         },\n         {\n          \"Outlier\": 0.08691308691308691,\n          \"X\": 8.599999999999934,\n          \"Y\": -17.85703560203325\n         },\n         {\n          \"Outlier\": 0.4325674325674326,\n          \"X\": 8.699999999999932,\n          \"Y\": -9.172720756633\n         },\n         {\n          \"Outlier\": 0.3596403596403596,\n          \"X\": 8.799999999999933,\n          \"Y\": -20.500224282886077\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 8.899999999999935,\n          \"Y\": -27.955994289017063\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 8.999999999999932,\n          \"Y\": -23.309509588194302\n         },\n         {\n          \"Outlier\": 0.3966033966033966,\n          \"X\": 9.09999999999993,\n          \"Y\": 31.120217815149882\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 9.199999999999932,\n          \"Y\": -24.086143061403874\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 9.299999999999933,\n          \"Y\": -21.7596596113579\n         },\n         {\n          \"Outlier\": 0.3856143856143856,\n          \"X\": 9.399999999999931,\n          \"Y\": 1.3453810777338207\n         },\n         {\n          \"Outlier\": 0.2817182817182817,\n          \"X\": 9.499999999999929,\n          \"Y\": 30.106740007028108\n         },\n         {\n          \"Outlier\": 0.7592407592407593,\n          \"X\": 9.59999999999993,\n          \"Y\": -8.245762291377288\n         },\n         {\n          \"Outlier\": 0,\n          \"X\": 9.699999999999932,\n          \"Y\": -29.313469546701562\n         },\n         {\n          \"Outlier\": 0.23276723276723277,\n          \"X\": 9.79999999999993,\n          \"Y\": -27.209848874368774\n         },\n         {\n          \"Outlier\": 0.6093906093906094,\n          \"X\": 9.899999999999928,\n          \"Y\": 7.612568009425738\n         },\n         {\n          \"Outlier\": 0.9590409590409591,\n          \"X\": 9.999999999999929,\n          \"Y\": -13.529703374498748\n         }\n        ]\n       },\n       \"encoding\": {\n        \"color\": {\n         \"field\": \"Outlier\",\n         \"scale\": {\n          \"scheme\": \"viridis\"\n         },\n         \"type\": \"quantitative\"\n        },\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"circle\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plot  $ take 5000 (zip (fst <$> samples) (outlierProb mhRuns))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Running MCMC gives us a list of samples. The results make sense: points that are very near the line are probably not outliers and ones very far are. \\n\",\n    \"\\n\",\n    \"It would be nice to make our approach more sample efficient though. The `SingleSiteMH` proposal is very naive. Two ways to improve on this would be to use customizable proposals, as in `Gen`, or to use Hamiltonian Monte Carlo as in `Stan`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Haskell - nixpkgs\",\n   \"language\": \"haskell\",\n   \"name\": \"ihaskell_nixpkgs\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": \"ihaskell\",\n   \"file_extension\": \".hs\",\n   \"mimetype\": \"text/x-haskell\",\n   \"name\": \"haskell\",\n   \"pygments_lexer\": \"Haskell\",\n   \"version\": \"9.0.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 4\n}\n"
  },
  {
    "path": "notebooks/tutorials/SMC.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \":e ImportQualifiedPost\\n\",\n    \":e FlexibleContexts\\n\",\n    \":e BlockArguments\\n\",\n    \":e TupleSections\\n\",\n    \":e FlexibleContexts\\n\",\n    \":e OverloadedStrings\\n\",\n    \":e LambdaCase\\n\",\n    \":e PackageImports\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"import Control.Monad.Bayes.Class\\n\",\n    \"import Control.Monad.Bayes.Enumerator\\n\",\n    \"import Control.Monad.Bayes.Weighted\\n\",\n    \"import Control.Monad.Bayes.Sampler.Strict\\n\",\n    \"import Control.Monad.Bayes.Density.Free\\n\",\n    \"import Control.Monad.Bayes.Population\\n\",\n    \"import Control.Monad.Bayes.Sequential.Coroutine\\n\",\n    \"import Control.Monad.Bayes.Inference.SMC\\n\",\n    \"\\n\",\n    \"import qualified Graphics.Vega.VegaLite as VL\\n\",\n    \"import IHaskell.Display.Hvega (vlShow)\\n\",\n    \"import Control.Applicative\\n\",\n    \"import qualified Data.Text as T\\n\",\n    \"import Pipes (Producer, (>->))\\n\",\n    \"import qualified Pipes as P\\n\",\n    \"import Pipes.Prelude (unfoldr)\\n\",\n    \"import qualified Pipes.Prelude as P\\n\",\n    \"import Data.Ord\\n\",\n    \"import Data.List\\n\",\n    \"import Control.Monad\\n\",\n    \"import Control.Arrow (first)\\n\",\n    \"import Numeric.Log\\n\",\n    \"import Data.Vector qualified as V\\n\",\n    \"\\n\",\n    \"import \\\"matrix\\\" Data.Matrix hiding ((!))\\n\",\n    \"import Data.Vector.Generic as VG (Vector, map, mapM, null, sum, (!))\\n\",\n    \"\\n\",\n    \":l ../plotting.hs\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Sequential Inference\\n\",\n    \"\\n\",\n    \"This tutorial discusses particle filters, and sequential Monte Carlo more generally.\\n\",\n    \"\\n\",\n    \"These techniques are relevant when performing inference on models where there is a large series of factor statements, some of which can be performed earlier than others. This situation often arises in time series models where the factor statements are the result of incoming observations, but the technique works for *any* probabilistic program.\\n\",\n    \"\\n\",\n    \"As a motivating example, consider the following program:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"ex :: MonadMeasure m => Int -> m [Bool]\\n\",\n    \"ex n = replicateM n do\\n\",\n    \"    x <- bernoulli 0.5\\n\",\n    \"    condition x\\n\",\n    \"    return x\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"What distribution does this represent? It is the distribution over all lists of Booleans of length $n$, which for e.g. $n=4$, places all the weight on the sequence `[True,True,True,True]`. Function `condition` give a default score of 1 if x else 0 and effectively filters out all `False` values.\\n\",\n    \"\\n\",\n    \"Function `normalForm` computes all possible combinations of discrete variable values, here a sequence of $n$ booleans, filters out ones with weight 0 and aggregates weights of equal values. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[([True,True,True,True],6.25e-2)]\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"normalForm $ ex 4\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[([True,True],0.25),([True,False],0.0),([False,True],0.0),([False,False],0.0)]\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"explicit $ ex 2\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"**This is inefficient**\\n\",\n    \"\\n\",\n    \"However, the naive approach to exactly inferring this distribution will not work. Why? Because it first constructs all $2^n$ possible solutions, and then throws away all but one. This has complexity exponential in $n$ and for e.g. $n=100$, it is hopeless. \\n\",\n    \"\\n\",\n    \"Now if we look at the structure of the program, it's clear that this is unnecessary. Each time a `condition` statement is made, we should throw away all possibilities with $0$ probability mass. If we do this, the size of the set of possible solutions never explodes.\\n\",\n    \"\\n\",\n    \"We can perform this *sequential enumeration* with monad-bayes, as follows:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[([True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True,True],1.0)]\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"enumerate $ sis removeZeros 100 $ ex 100\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"`sis` (Sequential Importance Sampling) is an inference method which performs a step of inference at each `factor` statement in the program. In the present case, we have used it in conjunction with exact inference, but the idea generalizes naturally to approximate inference methods.\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Random walk example\\n\",\n    \"\\n\",\n    \"To motivate sis with approximate inferece methods, let's examine a problem for which exact inference is no longer feasible, a non-linear state space model. Here we will make use of the [pipes](https://hackage.haskell.org/package/pipes-4.3.16/docs/Pipes-Prelude.html) library, which offers an elegant way to represent distributions over discrete random walks as infinite streams. See the `examples/Streaming` notebook for more info.\\n\",\n    \"\\n\",\n    \"A `Producer` represents a stream of data, and a `Pipe` maps one stream to another. Both are parametrized by a monad `m`, which in our case will be `MonadDistribution m => m`. \\n\",\n    \"\\n\",\n    \"For example, a 2D random walk with a Gaussian `transition` kernel can be written as follows:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"-- how to move from one latent state to the next \\n\",\n    \"-- for multivariate normal distribution\\n\",\n    \"transition :: MonadDistribution m => V.Vector Double -> m (V.Vector Double)\\n\",\n    \"transition vector = mvNormal (fmap (+0.5) vector) (identity (V.length vector))\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"-- For 2D case: a Markovian random walk starting at (0,0),\\n\",\n    \"-- with `transition` as the kernel\\n\",\n    \"-- a Producer is an infinite stream of values\\n\",\n    \"prior :: MonadDistribution m => Producer (V.Vector Double) m r\\n\",\n    \"prior = P.unfoldr (\\\\s -> Right . (s,) <$> transition s) (V.fromList [0,0])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"It's straightforward to take the first `n` steps of this infinite stream, and convert it into a distribution over finite list, from which we can then sample:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0,\n          \"Y\": 0\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.976725852798596,\n          \"Y\": 1.6137193880196077\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0.20408138974710444,\n          \"Y\": 1.7919034094222825\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0.4831200523092556,\n          \"Y\": 1.907099116274424\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.09176882753590254,\n          \"Y\": 1.8955141804642897\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -1.2218589977848304,\n          \"Y\": 2.1822412112642686\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.7668458940561108,\n          \"Y\": 2.212530442551486\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.6690157871149474,\n          \"Y\": 3.6065228326525913\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0.11244333089173442,\n          \"Y\": 2.9159986959761524\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 1.2687408682854557,\n          \"Y\": 3.1217227285265796\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.9374928178780935,\n          \"Y\": 4.807186806397708\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 1.7506468484445976,\n          \"Y\": 6.528258479316207\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.736589222593742,\n          \"Y\": 6.949265904332787\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 3.641180710652565,\n          \"Y\": 6.681148574533908\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 3.256520244565894,\n          \"Y\": 7.874942228007868\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 3.532287597906861,\n          \"Y\": 8.830585157823975\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.1806733831668645,\n          \"Y\": 8.017622208601368\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.009761220323491,\n          \"Y\": 7.84268801368802\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.141654233585815,\n          \"Y\": 7.1758683184915455\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.109134026193262,\n          \"Y\": 6.295985176823156\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.405745472992563,\n          \"Y\": 6.200693454492153\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.01763593390225182,\n          \"Y\": 6.26472827677569\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.7129309873545127,\n          \"Y\": 6.073043706411563\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -1.3881353873773867,\n          \"Y\": 5.511813869639958\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -2.0112168014112006,\n          \"Y\": 4.863763667368105\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -2.6313526403453142,\n          \"Y\": 6.526587675025231\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -3.647308978418825,\n          \"Y\": 9.059358389741346\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -3.522248228389822,\n          \"Y\": 10.81130328807151\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -3.1756973573574925,\n          \"Y\": 11.004220161318386\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0.11010814466808982,\n          \"Y\": 10.321234798745154\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.39187980161433855,\n          \"Y\": 12.364011379280585\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0.03081207681047786,\n          \"Y\": 12.291837576109366\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.14240533533610533,\n          \"Y\": 14.912448411461696\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0.7434588861709679,\n          \"Y\": 15.226819972736129\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.08616212989934202,\n          \"Y\": 16.246907651854926\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -1.2965615882985957,\n          \"Y\": 16.938548777168933\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -1.0233599219588343,\n          \"Y\": 18.172882376939775\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -1.593063313624189,\n          \"Y\": 17.761804204307506\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": -0.9071992020452398,\n          \"Y\": 16.80832237549457\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 1.537278546495295,\n          \"Y\": 18.239554653824978\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 1.293986040876521,\n          \"Y\": 18.531479436575104\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0.33734706739165166,\n          \"Y\": 19.17952773388102\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 1.5526873356861643,\n          \"Y\": 19.89809726940538\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 0.9653041361138308,\n          \"Y\": 18.978715147896484\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.1754309252424315,\n          \"Y\": 20.733465934111884\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 1.9042944402780204,\n          \"Y\": 21.96238995944239\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 1.1670764368639701,\n          \"Y\": 20.42119386858742\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 1.3725692433059047,\n          \"Y\": 20.078416515233386\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.685773076792982,\n          \"Y\": 19.780304063644362\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 2.304412655375019,\n          \"Y\": 18.3267445924497\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 3.3005017878405236,\n          \"Y\": 19.282099858122923\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 5.293682460243824,\n          \"Y\": 18.09075163407331\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 5.48617010881213,\n          \"Y\": 18.88912742921528\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 5.460178753240708,\n          \"Y\": 20.05661588255413\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 6.694373042710004,\n          \"Y\": 21.28417138017432\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 7.176262338621055,\n          \"Y\": 23.610823147215058\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 9.263967259279326,\n          \"Y\": 23.793471620769253\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 9.570548244239397,\n          \"Y\": 22.80525709268169\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 12.224205146716235,\n          \"Y\": 23.467270848547056\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 12.998028549367675,\n          \"Y\": 24.976179113989346\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 13.469190861482701,\n          \"Y\": 25.033371366639106\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 15.202761232337336,\n          \"Y\": 23.705490410204654\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 15.45147544674246,\n          \"Y\": 23.62245393809943\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 15.948845956272837,\n          \"Y\": 23.316292902745392\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 17.16913170577638,\n          \"Y\": 24.777353392198744\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 17.210423055711384,\n          \"Y\": 26.565764557732845\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 17.498127213076074,\n          \"Y\": 26.891514119480085\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 16.154587096331557,\n          \"Y\": 26.96269886332814\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 17.365461967568603,\n          \"Y\": 27.809691065821152\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 17.798709082450195,\n          \"Y\": 26.878326604248347\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 18.711785330404158,\n          \"Y\": 27.40681326568193\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 19.69126789860091,\n          \"Y\": 29.24772788318292\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 18.611842559840028,\n          \"Y\": 29.623895863932383\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 18.839415485737106,\n          \"Y\": 30.176998016059404\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 17.872071800282136,\n          \"Y\": 31.31449032366575\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 17.234433457755895,\n          \"Y\": 31.92462627820767\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 18.316980583807805,\n          \"Y\": 31.971459033847758\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 18.20614845743506,\n          \"Y\": 33.38337742068083\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 19.469906680607902,\n          \"Y\": 35.00768028137768\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 21.166533013229724,\n          \"Y\": 36.2275881565787\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 20.934551476362326,\n          \"Y\": 37.71788456932134\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 23.091390514827275,\n          \"Y\": 37.35456321648551\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 23.202579247316468,\n          \"Y\": 38.33182657807645\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 24.814982095085746,\n          \"Y\": 39.896259204044675\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 26.862289553534435,\n          \"Y\": 41.594015899000084\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 29.13108856747485,\n          \"Y\": 43.24237558248829\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 29.96573917639689,\n          \"Y\": 43.08564704913662\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 30.38129760060132,\n          \"Y\": 42.60313904655006\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 30.127208744625026,\n          \"Y\": 43.46925607531138\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 30.55395052376439,\n          \"Y\": 44.113573468167885\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 31.939391547518845,\n          \"Y\": 43.2108558967726\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 32.61564963693414,\n          \"Y\": 44.322174851055706\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 33.968317987343596,\n          \"Y\": 43.58458105865007\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 33.869346145845,\n          \"Y\": 44.815191784044025\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 35.656369696990275,\n          \"Y\": 45.33590548300918\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 36.36554153078791,\n          \"Y\": 43.511280010066635\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 38.89653663422507,\n          \"Y\": 42.455163627123405\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 40.62441756480252,\n          \"Y\": 41.727621228442274\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 41.91827352178923,\n          \"Y\": 41.3009998512681\n         },\n         {\n          \"Outlier\": \"\\\"Latent\\\"\",\n          \"X\": 41.57668178338979,\n          \"Y\": 41.469615373408814\n         }\n        ]\n       },\n       \"encoding\": {\n        \"color\": {\n         \"field\": \"Outlier\"\n        },\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"circle\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"-- convert the stream to a list, taking only the first 100 steps\\n\",\n    \"toList :: Monad m => P.Producer a m () -> m [a]\\n\",\n    \"toList prod = P.toListM (prod >-> P.take 100)\\n\",\n    \"\\n\",\n    \"randomWalkPrior <- sampleIOfixed $ toList prior\\n\",\n    \"\\n\",\n    \"plot \\n\",\n    \"    (zip \\n\",\n    \"        (fmap (\\\\v -> (v V.! 0, v V.! 1)) $ randomWalkPrior) \\n\",\n    \"        (replicate 100 (T.pack \\\"Latent\\\")))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can also produce a stream of observations from `prior`, each a noisy perturbation of the datapoint in question, by using a `Pipe`:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"observationModel = (`mvNormal` fromLists [[20,0],[0,20]])\\n\",\n    \"\\n\",\n    \"observations :: MonadDistribution m => P.Pipe (V.Vector Double) (V.Vector Double) m ()\\n\",\n    \"observations = P.mapM observationModel\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 0,\n          \"Y\": 0\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -0.976725852798596,\n          \"Y\": 1.6137193880196077\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 0.20408138974710444,\n          \"Y\": 1.7919034094222825\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 0.4831200523092556,\n          \"Y\": 1.907099116274424\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -0.09176882753590254,\n          \"Y\": 1.8955141804642897\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -1.2218589977848304,\n          \"Y\": 2.1822412112642686\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -0.7668458940561108,\n          \"Y\": 2.212530442551486\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -0.6690157871149474,\n          \"Y\": 3.6065228326525913\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 0.11244333089173442,\n          \"Y\": 2.9159986959761524\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 1.2687408682854557,\n          \"Y\": 3.1217227285265796\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 2.9374928178780935,\n          \"Y\": 4.807186806397708\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 1.7506468484445976,\n          \"Y\": 6.528258479316207\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 2.736589222593742,\n          \"Y\": 6.949265904332787\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 3.641180710652565,\n          \"Y\": 6.681148574533908\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 3.256520244565894,\n          \"Y\": 7.874942228007868\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 3.532287597906861,\n          \"Y\": 8.830585157823975\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 2.1806733831668645,\n          \"Y\": 8.017622208601368\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 2.009761220323491,\n          \"Y\": 7.84268801368802\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 2.141654233585815,\n          \"Y\": 7.1758683184915455\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 2.109134026193262,\n          \"Y\": 6.295985176823156\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 2.405745472992563,\n          \"Y\": 6.200693454492153\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -0.01763593390225182,\n          \"Y\": 6.26472827677569\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -0.7129309873545127,\n          \"Y\": 6.073043706411563\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -1.3881353873773867,\n          \"Y\": 5.511813869639958\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -2.0112168014112006,\n          \"Y\": 4.863763667368105\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -2.6313526403453142,\n          \"Y\": 6.526587675025231\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -3.647308978418825,\n          \"Y\": 9.059358389741346\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -3.522248228389822,\n          \"Y\": 10.81130328807151\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -3.1756973573574925,\n          \"Y\": 11.004220161318386\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 0.11010814466808982,\n          \"Y\": 10.321234798745154\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -0.39187980161433855,\n          \"Y\": 12.364011379280585\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 0.03081207681047786,\n          \"Y\": 12.291837576109366\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -0.14240533533610533,\n          \"Y\": 14.912448411461696\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 0.7434588861709679,\n          \"Y\": 15.226819972736129\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -0.08616212989934202,\n          \"Y\": 16.246907651854926\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -1.2965615882985957,\n          \"Y\": 16.938548777168933\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -1.0233599219588343,\n          \"Y\": 18.172882376939775\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -1.593063313624189,\n          \"Y\": 17.761804204307506\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -0.9071992020452398,\n          \"Y\": 16.80832237549457\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 1.537278546495295,\n          \"Y\": 18.239554653824978\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 1.293986040876521,\n          \"Y\": 18.531479436575104\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 0.33734706739165166,\n          \"Y\": 19.17952773388102\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 1.5526873356861643,\n          \"Y\": 19.89809726940538\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 0.9653041361138308,\n          \"Y\": 18.978715147896484\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 2.1754309252424315,\n          \"Y\": 20.733465934111884\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 1.9042944402780204,\n          \"Y\": 21.96238995944239\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 1.1670764368639701,\n          \"Y\": 20.42119386858742\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 1.3725692433059047,\n          \"Y\": 20.078416515233386\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 2.685773076792982,\n          \"Y\": 19.780304063644362\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 2.304412655375019,\n          \"Y\": 18.3267445924497\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 3.3005017878405236,\n          \"Y\": 19.282099858122923\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 5.293682460243824,\n          \"Y\": 18.09075163407331\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 5.48617010881213,\n          \"Y\": 18.88912742921528\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 5.460178753240708,\n          \"Y\": 20.05661588255413\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 6.694373042710004,\n          \"Y\": 21.28417138017432\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 7.176262338621055,\n          \"Y\": 23.610823147215058\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 9.263967259279326,\n          \"Y\": 23.793471620769253\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 9.570548244239397,\n          \"Y\": 22.80525709268169\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 12.224205146716235,\n          \"Y\": 23.467270848547056\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 12.998028549367675,\n          \"Y\": 24.976179113989346\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 13.469190861482701,\n          \"Y\": 25.033371366639106\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 15.202761232337336,\n          \"Y\": 23.705490410204654\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 15.45147544674246,\n          \"Y\": 23.62245393809943\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 15.948845956272837,\n          \"Y\": 23.316292902745392\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 17.16913170577638,\n          \"Y\": 24.777353392198744\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 17.210423055711384,\n          \"Y\": 26.565764557732845\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 17.498127213076074,\n          \"Y\": 26.891514119480085\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 16.154587096331557,\n          \"Y\": 26.96269886332814\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 17.365461967568603,\n          \"Y\": 27.809691065821152\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 17.798709082450195,\n          \"Y\": 26.878326604248347\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 18.711785330404158,\n          \"Y\": 27.40681326568193\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 19.69126789860091,\n          \"Y\": 29.24772788318292\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 18.611842559840028,\n          \"Y\": 29.623895863932383\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 18.839415485737106,\n          \"Y\": 30.176998016059404\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 17.872071800282136,\n          \"Y\": 31.31449032366575\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 17.234433457755895,\n          \"Y\": 31.92462627820767\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 18.316980583807805,\n          \"Y\": 31.971459033847758\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 18.20614845743506,\n          \"Y\": 33.38337742068083\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 19.469906680607902,\n          \"Y\": 35.00768028137768\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 21.166533013229724,\n          \"Y\": 36.2275881565787\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 20.934551476362326,\n          \"Y\": 37.71788456932134\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 23.091390514827275,\n          \"Y\": 37.35456321648551\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 23.202579247316468,\n          \"Y\": 38.33182657807645\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 24.814982095085746,\n          \"Y\": 39.896259204044675\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 26.862289553534435,\n          \"Y\": 41.594015899000084\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 29.13108856747485,\n          \"Y\": 43.24237558248829\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 29.96573917639689,\n          \"Y\": 43.08564704913662\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 30.38129760060132,\n          \"Y\": 42.60313904655006\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 30.127208744625026,\n          \"Y\": 43.46925607531138\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 30.55395052376439,\n          \"Y\": 44.113573468167885\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 31.939391547518845,\n          \"Y\": 43.2108558967726\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 32.61564963693414,\n          \"Y\": 44.322174851055706\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 33.968317987343596,\n          \"Y\": 43.58458105865007\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 33.869346145845,\n          \"Y\": 44.815191784044025\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 35.656369696990275,\n          \"Y\": 45.33590548300918\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 36.36554153078791,\n          \"Y\": 43.511280010066635\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 38.89653663422507,\n          \"Y\": 42.455163627123405\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 40.62441756480252,\n          \"Y\": 41.727621228442274\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 41.91827352178923,\n          \"Y\": 41.3009998512681\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 41.57668178338979,\n          \"Y\": 41.469615373408814\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -6.604118781978018,\n          \"Y\": 4.980704518942615\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 2.0679366950141507,\n          \"Y\": 0.17451457924113445\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -0.784087752073494,\n          \"Y\": 0.07100629439754713\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -4.323929154875499,\n          \"Y\": -0.38077826919822977\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -7.381753687797518,\n          \"Y\": 0.9417284666753574\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -1.42304651410346,\n          \"Y\": 0.0816307940533405\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -2.5654043328228697,\n          \"Y\": 6.210585953818649\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 0.5897076543852038,\n          \"Y\": -1.7176629642729448\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 3.047495145047877,\n          \"Y\": 1.5999565612526332\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 6.495558484534547,\n          \"Y\": 8.423279254534474\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -4.606311692571564,\n          \"Y\": 10.267985338488014\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 3.9238472119348433,\n          \"Y\": 6.174992944554853\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 4.545977363428388,\n          \"Y\": 3.5141407760809513\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -0.31514116770032263,\n          \"Y\": 9.78388811758532\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 2.253721363157317,\n          \"Y\": 9.91263935707983\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -4.748382906620191,\n          \"Y\": 2.958836345023265\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -0.8197370229315197,\n          \"Y\": 4.999224728270691\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 0.3635367296473775,\n          \"Y\": 2.6245117017982134\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -0.23984853265825468,\n          \"Y\": 1.0048433069385636\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 1.1995527645890707,\n          \"Y\": 3.6337596616730496\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -10.668013626958995,\n          \"Y\": 4.250997908098581\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -5.363157919279252,\n          \"Y\": 3.1714208401318422\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -5.968604839170517,\n          \"Y\": 1.327079596866934\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -6.410708159469776,\n          \"Y\": 0.3775772819154639\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -7.0206165611920675,\n          \"Y\": 10.064070721348244\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -9.41091548605336,\n          \"Y\": 15.617414676577361\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -5.324088279154697,\n          \"Y\": 14.65822618324197\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -4.20849359530951,\n          \"Y\": 9.437985795745169\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 9.282803591886768,\n          \"Y\": 5.713748787116422\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -4.370918176377746,\n          \"Y\": 17.220741415088963\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -0.7376122317241958,\n          \"Y\": 9.805172341609724\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -2.979907717582027,\n          \"Y\": 21.775497539450214\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 1.5832319234135985,\n          \"Y\": 14.082292796366653\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -5.2027870663201385,\n          \"Y\": 17.552722782275595\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -7.735301045218452,\n          \"Y\": 17.10395281882828\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -2.3108345707945404,\n          \"Y\": 20.222588471668395\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -5.807218921010465,\n          \"Y\": 14.098416923295684\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -0.7618537374879171,\n          \"Y\": 11.261635857734632\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 7.788769650899518,\n          \"Y\": 20.972919729872174\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -1.7868265929641516,\n          \"Y\": 17.309013993417466\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -5.220301485898842,\n          \"Y\": 19.193571550033354\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 3.5364460012905883,\n          \"Y\": 20.15700041236707\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -3.310238167983752,\n          \"Y\": 13.550427449921857\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 4.141087682384249,\n          \"Y\": 24.590131253494373\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -1.2731962753789046,\n          \"Y\": 23.993313276255467\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -3.6287126769627465,\n          \"Y\": 12.833883530325284\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -0.1499997724530746,\n          \"Y\": 16.652178964593464\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 5.009327345786954,\n          \"Y\": 16.509149124349253\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -1.2557905531438727,\n          \"Y\": 11.043720512284752\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 4.522990701558552,\n          \"Y\": 20.363155248365302\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 9.978208760205773,\n          \"Y\": 11.718160652925963\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 3.9184454167996794,\n          \"Y\": 19.425128755629302\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 3.1338652555422057,\n          \"Y\": 21.874226540939016\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 8.743595433131716,\n          \"Y\": 23.310342982718993\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 6.613379511783457,\n          \"Y\": 29.453206424820713\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 14.276694600226666,\n          \"Y\": 22.191583975422777\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 8.398971127738657,\n          \"Y\": 17.137973920956128\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 19.20199471253909,\n          \"Y\": 23.52980463549172\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 13.448780631034062,\n          \"Y\": 27.97924577772778\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 12.869062488518232,\n          \"Y\": 22.99588266591196\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 18.985885270003877,\n          \"Y\": 16.858839219909573\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 14.078977035598177,\n          \"Y\": 21.098072040226764\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 15.439716007869933,\n          \"Y\": 20.01719218637296\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 19.170061754501454,\n          \"Y\": 27.614286072559228\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 15.117724258951394,\n          \"Y\": 30.539303290406707\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 16.26100718476508,\n          \"Y\": 25.78649290764824\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 9.253565172498794,\n          \"Y\": 24.97379399439062\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 19.33371616749645,\n          \"Y\": 28.514495168201634\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 17.066933989930615,\n          \"Y\": 21.408434592512798\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 19.646042223081434,\n          \"Y\": 27.00572282708338\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 20.856096563432388,\n          \"Y\": 33.40356573919262\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 12.627863052890977,\n          \"Y\": 28.69393425751238\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 17.39351164662902,\n          \"Y\": 29.86137590774749\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 12.277255031672343,\n          \"Y\": 33.02795028594141\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 12.784398464884404,\n          \"Y\": 31.80703328591086\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 19.83966340565432,\n          \"Y\": 29.898000751077628\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 15.5852562689874,\n          \"Y\": 36.04968203962917\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 21.621779068212916,\n          \"Y\": 38.41141266831211\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 24.821382327425248,\n          \"Y\": 38.2272061743515\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 17.89301206380918,\n          \"Y\": 40.65632835011219\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 28.344160911928352,\n          \"Y\": 33.85699410658533\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 21.35257366568323,\n          \"Y\": 39.48894985586034\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 28.177396019269384,\n          \"Y\": 43.09211399634357\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 31.73475141345314,\n          \"Y\": 45.252789984896225\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 34.772599220945175,\n          \"Y\": 46.72963652879966\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 30.62769158799761,\n          \"Y\": 40.30539629581213\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 29.588104969184702,\n          \"Y\": 38.691737684694466\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 27.00890971452523,\n          \"Y\": 44.24046417461117\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 29.79958802111487,\n          \"Y\": 44.11466307683677\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 34.51376316212833,\n          \"Y\": 37.84042978242134\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 32.727641686552495,\n          \"Y\": 45.94475737219482\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 36.428898424490455,\n          \"Y\": 38.7874871543542\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 31.289634478945427,\n          \"Y\": 46.8519715527927\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 39.625090443853026,\n          \"Y\": 44.90782626194713\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 36.59181457568985,\n          \"Y\": 34.939864323554914\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 45.448427757297324,\n          \"Y\": 36.55211598374231\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 44.387787092318824,\n          \"Y\": 36.96542712969508\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 44.174649333133374,\n          \"Y\": 37.583644450910434\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 38.154560849062484,\n          \"Y\": 39.81900341290482\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 38.660476984766554,\n          \"Y\": 43.314041616491615\n         }\n        ]\n       },\n       \"encoding\": {\n        \"color\": {\n         \"field\": \"Outlier\"\n        },\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"circle\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"randomWalkObserved <- sampleIOfixed $ toList $ P.each randomWalkPrior >-> observations\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"plot \\n\",\n    \"    (zip \\n\",\n    \"        (fmap (\\\\v -> (v V.! 0, v V.! 1)) $ randomWalkPrior <> randomWalkObserved) \\n\",\n    \"        (replicate 100 (T.pack \\\"Prior\\\") <> replicate 100 (T.pack \\\"Observed\\\")))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Conditioning\\n\",\n    \"\\n\",\n    \"But most interestingly, we can update our prior, based on a stream of incoming observations. `conditioning` below takes two `Producer`s, the stream corresponding to the prior (see `prior` above) and the stream corresponding to the observations (`P.each observedVectors`, where `P.each` lifts a list to a stream), and a likelihood, and returns a posterior, also expressed as a stream.  \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"-- take the original random walk as a prior and condition on the observations\\n\",\n    \"-- to obtain a posterior random walk\\n\",\n    \"conditioning :: MonadMeasure m => \\n\",\n    \"    P.Producer (V.Vector Double) m () -> \\n\",\n    \"    P.Producer (V.Vector Double) m () -> \\n\",\n    \"    ((V.Vector Double, V.Vector Double) -> m ()) ->\\n\",\n    \"    P.Producer (V.Vector Double) m ()\\n\",\n    \"conditioning prior observations observationModel = \\n\",\n    \"    P.zip prior observations\\n\",\n    \"    >-> P.chain observationModel\\n\",\n    \"    >-> P.map fst \\n\",\n    \"\\n\",\n    \"\\n\",\n    \"posterior :: MonadMeasure m => m [V.Vector Double]\\n\",\n    \"posterior = toList $ conditioning \\n\",\n    \"    prior\\n\",\n    \"    (P.each randomWalkObserved)\\n\",\n    \"    (\\\\(v, v') -> do\\n\",\n    \"        prediction <- observationModel v\\n\",\n    \"        let (x, y, x', y') = (prediction V.! 0, prediction V.! 1, v' V.! 0, v' V.! 1)\\n\",\n    \"        factor $ normalPdf x 2 x' * normalPdf y 2 y' )\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Sequential Monte Carlo\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can then use an inference method of our liking, but in this tutorial, we would like to see how SMC behaves.\\n\",\n    \"\\n\",\n    \"Following [Scibor et al](https://dl.acm.org/doi/pdf/10.1145/3236778):\\n\",\n    \"> Within the context of SMC, recall\\n\",\n    \"that a sample in a population is called a particle. The algorithm starts by initialising a population\\n\",\n    \"of size n, then repeatedly runs the program to the next `score`, resamples the population, runs to\\n\",\n    \"the next score and so on.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {\n    \"tags\": []\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": []\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"particles <- sampleIOfixed $ runPopulationT $ \\n\",\n    \"    smc SMCConfig {\\n\",\n    \"        numSteps = 100, \\n\",\n    \"        numParticles = 1000, \\n\",\n    \"        resampler = resampleMultinomial} \\n\",\n    \"    posterior\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Distribution is generated over whole paths. We may compare realizations of prior and inferred (here 5 paths) with the observed path.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 0,\n          \"Y\": 0\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -0.976725852798596,\n          \"Y\": 1.6137193880196077\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 0.20408138974710444,\n          \"Y\": 1.7919034094222825\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 0.4831200523092556,\n          \"Y\": 1.907099116274424\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -0.09176882753590254,\n          \"Y\": 1.8955141804642897\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -1.2218589977848304,\n          \"Y\": 2.1822412112642686\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -0.7668458940561108,\n          \"Y\": 2.212530442551486\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -0.6690157871149474,\n          \"Y\": 3.6065228326525913\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 0.11244333089173442,\n          \"Y\": 2.9159986959761524\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 1.2687408682854557,\n          \"Y\": 3.1217227285265796\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 2.9374928178780935,\n          \"Y\": 4.807186806397708\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 1.7506468484445976,\n          \"Y\": 6.528258479316207\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 2.736589222593742,\n          \"Y\": 6.949265904332787\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 3.641180710652565,\n          \"Y\": 6.681148574533908\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 3.256520244565894,\n          \"Y\": 7.874942228007868\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 3.532287597906861,\n          \"Y\": 8.830585157823975\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 2.1806733831668645,\n          \"Y\": 8.017622208601368\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 2.009761220323491,\n          \"Y\": 7.84268801368802\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 2.141654233585815,\n          \"Y\": 7.1758683184915455\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 2.109134026193262,\n          \"Y\": 6.295985176823156\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 2.405745472992563,\n          \"Y\": 6.200693454492153\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -0.01763593390225182,\n          \"Y\": 6.26472827677569\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -0.7129309873545127,\n          \"Y\": 6.073043706411563\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -1.3881353873773867,\n          \"Y\": 5.511813869639958\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -2.0112168014112006,\n          \"Y\": 4.863763667368105\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -2.6313526403453142,\n          \"Y\": 6.526587675025231\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -3.647308978418825,\n          \"Y\": 9.059358389741346\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -3.522248228389822,\n          \"Y\": 10.81130328807151\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -3.1756973573574925,\n          \"Y\": 11.004220161318386\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 0.11010814466808982,\n          \"Y\": 10.321234798745154\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -0.39187980161433855,\n          \"Y\": 12.364011379280585\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 0.03081207681047786,\n          \"Y\": 12.291837576109366\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -0.14240533533610533,\n          \"Y\": 14.912448411461696\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 0.7434588861709679,\n          \"Y\": 15.226819972736129\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -0.08616212989934202,\n          \"Y\": 16.246907651854926\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -1.2965615882985957,\n          \"Y\": 16.938548777168933\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -1.0233599219588343,\n          \"Y\": 18.172882376939775\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -1.593063313624189,\n          \"Y\": 17.761804204307506\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": -0.9071992020452398,\n          \"Y\": 16.80832237549457\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 1.537278546495295,\n          \"Y\": 18.239554653824978\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 1.293986040876521,\n          \"Y\": 18.531479436575104\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 0.33734706739165166,\n          \"Y\": 19.17952773388102\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 1.5526873356861643,\n          \"Y\": 19.89809726940538\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 0.9653041361138308,\n          \"Y\": 18.978715147896484\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 2.1754309252424315,\n          \"Y\": 20.733465934111884\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 1.9042944402780204,\n          \"Y\": 21.96238995944239\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 1.1670764368639701,\n          \"Y\": 20.42119386858742\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 1.3725692433059047,\n          \"Y\": 20.078416515233386\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 2.685773076792982,\n          \"Y\": 19.780304063644362\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 2.304412655375019,\n          \"Y\": 18.3267445924497\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 3.3005017878405236,\n          \"Y\": 19.282099858122923\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 5.293682460243824,\n          \"Y\": 18.09075163407331\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 5.48617010881213,\n          \"Y\": 18.88912742921528\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 5.460178753240708,\n          \"Y\": 20.05661588255413\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 6.694373042710004,\n          \"Y\": 21.28417138017432\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 7.176262338621055,\n          \"Y\": 23.610823147215058\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 9.263967259279326,\n          \"Y\": 23.793471620769253\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 9.570548244239397,\n          \"Y\": 22.80525709268169\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 12.224205146716235,\n          \"Y\": 23.467270848547056\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 12.998028549367675,\n          \"Y\": 24.976179113989346\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 13.469190861482701,\n          \"Y\": 25.033371366639106\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 15.202761232337336,\n          \"Y\": 23.705490410204654\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 15.45147544674246,\n          \"Y\": 23.62245393809943\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 15.948845956272837,\n          \"Y\": 23.316292902745392\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 17.16913170577638,\n          \"Y\": 24.777353392198744\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 17.210423055711384,\n          \"Y\": 26.565764557732845\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 17.498127213076074,\n          \"Y\": 26.891514119480085\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 16.154587096331557,\n          \"Y\": 26.96269886332814\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 17.365461967568603,\n          \"Y\": 27.809691065821152\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 17.798709082450195,\n          \"Y\": 26.878326604248347\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 18.711785330404158,\n          \"Y\": 27.40681326568193\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 19.69126789860091,\n          \"Y\": 29.24772788318292\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 18.611842559840028,\n          \"Y\": 29.623895863932383\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 18.839415485737106,\n          \"Y\": 30.176998016059404\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 17.872071800282136,\n          \"Y\": 31.31449032366575\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 17.234433457755895,\n          \"Y\": 31.92462627820767\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 18.316980583807805,\n          \"Y\": 31.971459033847758\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 18.20614845743506,\n          \"Y\": 33.38337742068083\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 19.469906680607902,\n          \"Y\": 35.00768028137768\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 21.166533013229724,\n          \"Y\": 36.2275881565787\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 20.934551476362326,\n          \"Y\": 37.71788456932134\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 23.091390514827275,\n          \"Y\": 37.35456321648551\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 23.202579247316468,\n          \"Y\": 38.33182657807645\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 24.814982095085746,\n          \"Y\": 39.896259204044675\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 26.862289553534435,\n          \"Y\": 41.594015899000084\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 29.13108856747485,\n          \"Y\": 43.24237558248829\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 29.96573917639689,\n          \"Y\": 43.08564704913662\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 30.38129760060132,\n          \"Y\": 42.60313904655006\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 30.127208744625026,\n          \"Y\": 43.46925607531138\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 30.55395052376439,\n          \"Y\": 44.113573468167885\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 31.939391547518845,\n          \"Y\": 43.2108558967726\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 32.61564963693414,\n          \"Y\": 44.322174851055706\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 33.968317987343596,\n          \"Y\": 43.58458105865007\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 33.869346145845,\n          \"Y\": 44.815191784044025\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 35.656369696990275,\n          \"Y\": 45.33590548300918\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 36.36554153078791,\n          \"Y\": 43.511280010066635\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 38.89653663422507,\n          \"Y\": 42.455163627123405\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 40.62441756480252,\n          \"Y\": 41.727621228442274\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 41.91827352178923,\n          \"Y\": 41.3009998512681\n         },\n         {\n          \"Outlier\": \"\\\"Prior\\\"\",\n          \"X\": 41.57668178338979,\n          \"Y\": 41.469615373408814\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -6.604118781978018,\n          \"Y\": 4.980704518942615\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 2.0679366950141507,\n          \"Y\": 0.17451457924113445\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -0.784087752073494,\n          \"Y\": 0.07100629439754713\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -4.323929154875499,\n          \"Y\": -0.38077826919822977\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -7.381753687797518,\n          \"Y\": 0.9417284666753574\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -1.42304651410346,\n          \"Y\": 0.0816307940533405\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -2.5654043328228697,\n          \"Y\": 6.210585953818649\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 0.5897076543852038,\n          \"Y\": -1.7176629642729448\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 3.047495145047877,\n          \"Y\": 1.5999565612526332\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 6.495558484534547,\n          \"Y\": 8.423279254534474\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -4.606311692571564,\n          \"Y\": 10.267985338488014\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 3.9238472119348433,\n          \"Y\": 6.174992944554853\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 4.545977363428388,\n          \"Y\": 3.5141407760809513\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -0.31514116770032263,\n          \"Y\": 9.78388811758532\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 2.253721363157317,\n          \"Y\": 9.91263935707983\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -4.748382906620191,\n          \"Y\": 2.958836345023265\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -0.8197370229315197,\n          \"Y\": 4.999224728270691\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 0.3635367296473775,\n          \"Y\": 2.6245117017982134\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -0.23984853265825468,\n          \"Y\": 1.0048433069385636\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 1.1995527645890707,\n          \"Y\": 3.6337596616730496\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -10.668013626958995,\n          \"Y\": 4.250997908098581\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -5.363157919279252,\n          \"Y\": 3.1714208401318422\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -5.968604839170517,\n          \"Y\": 1.327079596866934\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -6.410708159469776,\n          \"Y\": 0.3775772819154639\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -7.0206165611920675,\n          \"Y\": 10.064070721348244\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -9.41091548605336,\n          \"Y\": 15.617414676577361\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -5.324088279154697,\n          \"Y\": 14.65822618324197\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -4.20849359530951,\n          \"Y\": 9.437985795745169\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 9.282803591886768,\n          \"Y\": 5.713748787116422\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -4.370918176377746,\n          \"Y\": 17.220741415088963\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -0.7376122317241958,\n          \"Y\": 9.805172341609724\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -2.979907717582027,\n          \"Y\": 21.775497539450214\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 1.5832319234135985,\n          \"Y\": 14.082292796366653\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -5.2027870663201385,\n          \"Y\": 17.552722782275595\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -7.735301045218452,\n          \"Y\": 17.10395281882828\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -2.3108345707945404,\n          \"Y\": 20.222588471668395\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -5.807218921010465,\n          \"Y\": 14.098416923295684\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -0.7618537374879171,\n          \"Y\": 11.261635857734632\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 7.788769650899518,\n          \"Y\": 20.972919729872174\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -1.7868265929641516,\n          \"Y\": 17.309013993417466\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -5.220301485898842,\n          \"Y\": 19.193571550033354\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 3.5364460012905883,\n          \"Y\": 20.15700041236707\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -3.310238167983752,\n          \"Y\": 13.550427449921857\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 4.141087682384249,\n          \"Y\": 24.590131253494373\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -1.2731962753789046,\n          \"Y\": 23.993313276255467\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -3.6287126769627465,\n          \"Y\": 12.833883530325284\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -0.1499997724530746,\n          \"Y\": 16.652178964593464\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 5.009327345786954,\n          \"Y\": 16.509149124349253\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": -1.2557905531438727,\n          \"Y\": 11.043720512284752\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 4.522990701558552,\n          \"Y\": 20.363155248365302\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 9.978208760205773,\n          \"Y\": 11.718160652925963\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 3.9184454167996794,\n          \"Y\": 19.425128755629302\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 3.1338652555422057,\n          \"Y\": 21.874226540939016\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 8.743595433131716,\n          \"Y\": 23.310342982718993\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 6.613379511783457,\n          \"Y\": 29.453206424820713\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 14.276694600226666,\n          \"Y\": 22.191583975422777\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 8.398971127738657,\n          \"Y\": 17.137973920956128\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 19.20199471253909,\n          \"Y\": 23.52980463549172\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 13.448780631034062,\n          \"Y\": 27.97924577772778\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 12.869062488518232,\n          \"Y\": 22.99588266591196\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 18.985885270003877,\n          \"Y\": 16.858839219909573\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 14.078977035598177,\n          \"Y\": 21.098072040226764\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 15.439716007869933,\n          \"Y\": 20.01719218637296\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 19.170061754501454,\n          \"Y\": 27.614286072559228\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 15.117724258951394,\n          \"Y\": 30.539303290406707\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 16.26100718476508,\n          \"Y\": 25.78649290764824\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 9.253565172498794,\n          \"Y\": 24.97379399439062\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 19.33371616749645,\n          \"Y\": 28.514495168201634\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 17.066933989930615,\n          \"Y\": 21.408434592512798\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 19.646042223081434,\n          \"Y\": 27.00572282708338\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 20.856096563432388,\n          \"Y\": 33.40356573919262\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 12.627863052890977,\n          \"Y\": 28.69393425751238\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 17.39351164662902,\n          \"Y\": 29.86137590774749\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 12.277255031672343,\n          \"Y\": 33.02795028594141\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 12.784398464884404,\n          \"Y\": 31.80703328591086\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 19.83966340565432,\n          \"Y\": 29.898000751077628\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 15.5852562689874,\n          \"Y\": 36.04968203962917\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 21.621779068212916,\n          \"Y\": 38.41141266831211\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 24.821382327425248,\n          \"Y\": 38.2272061743515\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 17.89301206380918,\n          \"Y\": 40.65632835011219\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 28.344160911928352,\n          \"Y\": 33.85699410658533\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 21.35257366568323,\n          \"Y\": 39.48894985586034\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 28.177396019269384,\n          \"Y\": 43.09211399634357\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 31.73475141345314,\n          \"Y\": 45.252789984896225\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 34.772599220945175,\n          \"Y\": 46.72963652879966\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 30.62769158799761,\n          \"Y\": 40.30539629581213\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 29.588104969184702,\n          \"Y\": 38.691737684694466\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 27.00890971452523,\n          \"Y\": 44.24046417461117\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 29.79958802111487,\n          \"Y\": 44.11466307683677\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 34.51376316212833,\n          \"Y\": 37.84042978242134\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 32.727641686552495,\n          \"Y\": 45.94475737219482\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 36.428898424490455,\n          \"Y\": 38.7874871543542\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 31.289634478945427,\n          \"Y\": 46.8519715527927\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 39.625090443853026,\n          \"Y\": 44.90782626194713\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 36.59181457568985,\n          \"Y\": 34.939864323554914\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 45.448427757297324,\n          \"Y\": 36.55211598374231\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 44.387787092318824,\n          \"Y\": 36.96542712969508\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 44.174649333133374,\n          \"Y\": 37.583644450910434\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 38.154560849062484,\n          \"Y\": 39.81900341290482\n         },\n         {\n          \"Outlier\": \"\\\"Observed\\\"\",\n          \"X\": 38.660476984766554,\n          \"Y\": 43.314041616491615\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0,\n          \"Y\": 0\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.4959834833661376,\n          \"Y\": 1.3545122401020775\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.46692867593012344,\n          \"Y\": 1.2568136970723294\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.866384280379635,\n          \"Y\": -0.3790080315332305\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.0216593626524055,\n          \"Y\": 1.1571646856516027\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.8117064980987132,\n          \"Y\": 1.4925861552150301\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.722727721700016,\n          \"Y\": 3.4863260958686197\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.37547781732650076,\n          \"Y\": 2.5409261013823894\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2817038765883308,\n          \"Y\": 4.159156266975698\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.1667041295923471,\n          \"Y\": 5.130870216791928\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.3063259837784219,\n          \"Y\": 6.0494478042882385\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.9886298127833987,\n          \"Y\": 6.241715204795343\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.38496827432593106,\n          \"Y\": 5.080720182682791\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.0462180841414912,\n          \"Y\": 5.942526622696139\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2251744493459894,\n          \"Y\": 6.5612141945954665\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.814146491805117,\n          \"Y\": 6.9248379196231085\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7561087684322328,\n          \"Y\": 6.62553822183286\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.43914666664058133,\n          \"Y\": 5.968357481439281\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.12399654710156549,\n          \"Y\": 6.12794282548626\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.42208439701240297,\n          \"Y\": 6.0998614517598835\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.0537808269584867,\n          \"Y\": 6.1962556328145055\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.6736031774198217,\n          \"Y\": 6.750007721251283\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7833668854997602,\n          \"Y\": 7.681301119927426\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.0611405381121775,\n          \"Y\": 8.167752558749864\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.2383582402513835,\n          \"Y\": 9.359656490408558\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.735982039185112,\n          \"Y\": 10.804738228768336\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.1205816100690718,\n          \"Y\": 11.348794078362255\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.0551680452461532,\n          \"Y\": 11.034241068055147\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.3524152565281415,\n          \"Y\": 11.214208812917592\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.38392332366332016,\n          \"Y\": 12.52097689413072\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2673468302718842,\n          \"Y\": 14.07716588278852\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.4399510387629983,\n          \"Y\": 15.953255031302792\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.8232951752429258,\n          \"Y\": 16.74054808359849\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.1597296904624903,\n          \"Y\": 14.680518334121674\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.96472904813252,\n          \"Y\": 15.13940147107535\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.4250433824874331,\n          \"Y\": 16.12393699144529\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.4703277914016233,\n          \"Y\": 14.578669365055553\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.6564802222940759,\n          \"Y\": 15.118393817361142\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2934887231854395,\n          \"Y\": 15.847674814809938\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.4154694944684096,\n          \"Y\": 16.308982707174362\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.2290237130424866,\n          \"Y\": 16.07176229204904\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 3.113541805788172,\n          \"Y\": 16.39959240449963\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.727374183344879,\n          \"Y\": 16.539569187571324\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 3.115556283090038,\n          \"Y\": 18.66480697731124\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.747380851426324,\n          \"Y\": 18.083826913156145\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 4.017539334489981,\n          \"Y\": 17.34819318803999\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 3.2106775079187786,\n          \"Y\": 18.72699096758819\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 4.064433069759858,\n          \"Y\": 18.930938861615648\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 4.886199754552055,\n          \"Y\": 18.822292641259693\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.693570082393493,\n          \"Y\": 18.352523954726017\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 4.764219023719597,\n          \"Y\": 19.071723695171766\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.109648787640866,\n          \"Y\": 20.161076174063425\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 6.684585131049911,\n          \"Y\": 21.81265734233153\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.07453949257289,\n          \"Y\": 22.80841644425841\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 7.412231069790365,\n          \"Y\": 23.795701704568753\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.875225307277638,\n          \"Y\": 24.134979184688905\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 9.786720807812639,\n          \"Y\": 24.798570393123562\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.839675266822008,\n          \"Y\": 24.11060847582407\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 11.951885850540787,\n          \"Y\": 23.54370832545031\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.362900938006847,\n          \"Y\": 24.116558302935186\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.403537769403211,\n          \"Y\": 25.84854640696169\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.087572364941128,\n          \"Y\": 26.388585481883272\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.123642440895985,\n          \"Y\": 26.737432791961233\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 16.27403404057166,\n          \"Y\": 27.717366941234275\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.54855755489548,\n          \"Y\": 27.76578014438041\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.02936531710395,\n          \"Y\": 26.575680729713927\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.846636670428634,\n          \"Y\": 28.658403537125473\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.75069874240183,\n          \"Y\": 26.464358097759444\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 18.642413159085244,\n          \"Y\": 29.585749042045443\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 18.114534945239527,\n          \"Y\": 29.96056288469767\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.89063941029048,\n          \"Y\": 30.40967128533151\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 19.177413425943513,\n          \"Y\": 29.790316975358717\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 19.421545582612655,\n          \"Y\": 29.849565902325587\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 20.428695873575105,\n          \"Y\": 30.063955131069637\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 20.271184767571977,\n          \"Y\": 33.586006703235064\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 21.23012653905654,\n          \"Y\": 34.19202362990785\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 22.383839376835358,\n          \"Y\": 36.099918931011395\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 24.849517743655664,\n          \"Y\": 37.18137630871274\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 23.018234864790475,\n          \"Y\": 37.3878341474434\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 25.368665864726108,\n          \"Y\": 38.69565105530858\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 26.194861372477984,\n          \"Y\": 40.551406609263104\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 27.776889871741783,\n          \"Y\": 40.59409860728754\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 27.309304890413063,\n          \"Y\": 40.72390802396453\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 30.788805704227972,\n          \"Y\": 41.58481755616034\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.244979307217676,\n          \"Y\": 42.071660279644924\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 30.32538655373424,\n          \"Y\": 41.84495076984768\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 30.893989422839287,\n          \"Y\": 41.51912265716761\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 31.430885488062984,\n          \"Y\": 42.08569337266744\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.793607076579164,\n          \"Y\": 41.84192456391744\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 34.7225274242704,\n          \"Y\": 41.03590208891771\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 35.117703749646374,\n          \"Y\": 42.82520646262462\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 35.668789570173224,\n          \"Y\": 42.2452814758927\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 37.080852175953844,\n          \"Y\": 42.54964434552788\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 36.70290290306099,\n          \"Y\": 42.681481194621675\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 38.1939543748931,\n          \"Y\": 41.28917454255082\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 38.599813330117975,\n          \"Y\": 41.0425825970788\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 38.43535967863466,\n          \"Y\": 42.189364919518475\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 39.571556813508664,\n          \"Y\": 41.6516274116565\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 41.86921905756014,\n          \"Y\": 42.912380505387745\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 40.56176494375606,\n          \"Y\": 42.15780010331323\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0,\n          \"Y\": 0\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.4959834833661376,\n          \"Y\": 1.3545122401020775\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.46692867593012344,\n          \"Y\": 1.2568136970723294\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.866384280379635,\n          \"Y\": -0.3790080315332305\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.0216593626524055,\n          \"Y\": 1.1571646856516027\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.8117064980987132,\n          \"Y\": 1.4925861552150301\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.722727721700016,\n          \"Y\": 3.4863260958686197\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.37547781732650076,\n          \"Y\": 2.5409261013823894\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2817038765883308,\n          \"Y\": 4.159156266975698\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.1667041295923471,\n          \"Y\": 5.130870216791928\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.3063259837784219,\n          \"Y\": 6.0494478042882385\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.9886298127833987,\n          \"Y\": 6.241715204795343\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.38496827432593106,\n          \"Y\": 5.080720182682791\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.0462180841414912,\n          \"Y\": 5.942526622696139\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2251744493459894,\n          \"Y\": 6.5612141945954665\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.814146491805117,\n          \"Y\": 6.9248379196231085\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7561087684322328,\n          \"Y\": 6.62553822183286\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.43914666664058133,\n          \"Y\": 5.968357481439281\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.12399654710156549,\n          \"Y\": 6.12794282548626\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.42208439701240297,\n          \"Y\": 6.0998614517598835\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.0537808269584867,\n          \"Y\": 6.1962556328145055\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.6736031774198217,\n          \"Y\": 6.750007721251283\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7833668854997602,\n          \"Y\": 7.681301119927426\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.0611405381121775,\n          \"Y\": 8.167752558749864\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.2383582402513835,\n          \"Y\": 9.359656490408558\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.735982039185112,\n          \"Y\": 10.804738228768336\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.1205816100690718,\n          \"Y\": 11.348794078362255\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.0551680452461532,\n          \"Y\": 11.034241068055147\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.3524152565281415,\n          \"Y\": 11.214208812917592\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.38392332366332016,\n          \"Y\": 12.52097689413072\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2673468302718842,\n          \"Y\": 14.07716588278852\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.4399510387629983,\n          \"Y\": 15.953255031302792\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.8232951752429258,\n          \"Y\": 16.74054808359849\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.1597296904624903,\n          \"Y\": 14.680518334121674\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.96472904813252,\n          \"Y\": 15.13940147107535\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.4250433824874331,\n          \"Y\": 16.12393699144529\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.4703277914016233,\n          \"Y\": 14.578669365055553\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.6564802222940759,\n          \"Y\": 15.118393817361142\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2934887231854395,\n          \"Y\": 15.847674814809938\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.4154694944684096,\n          \"Y\": 16.308982707174362\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.2290237130424866,\n          \"Y\": 16.07176229204904\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 3.113541805788172,\n          \"Y\": 16.39959240449963\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.727374183344879,\n          \"Y\": 16.539569187571324\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 3.115556283090038,\n          \"Y\": 18.66480697731124\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.747380851426324,\n          \"Y\": 18.083826913156145\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 4.017539334489981,\n          \"Y\": 17.34819318803999\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 3.2106775079187786,\n          \"Y\": 18.72699096758819\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 4.064433069759858,\n          \"Y\": 18.930938861615648\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 4.886199754552055,\n          \"Y\": 18.822292641259693\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.693570082393493,\n          \"Y\": 18.352523954726017\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 4.764219023719597,\n          \"Y\": 19.071723695171766\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.109648787640866,\n          \"Y\": 20.161076174063425\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 6.684585131049911,\n          \"Y\": 21.81265734233153\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.07453949257289,\n          \"Y\": 22.80841644425841\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 7.412231069790365,\n          \"Y\": 23.795701704568753\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.875225307277638,\n          \"Y\": 24.134979184688905\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 9.786720807812639,\n          \"Y\": 24.798570393123562\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.839675266822008,\n          \"Y\": 24.11060847582407\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 11.951885850540787,\n          \"Y\": 23.54370832545031\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.362900938006847,\n          \"Y\": 24.116558302935186\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.403537769403211,\n          \"Y\": 25.84854640696169\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.087572364941128,\n          \"Y\": 26.388585481883272\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.123642440895985,\n          \"Y\": 26.737432791961233\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 16.27403404057166,\n          \"Y\": 27.717366941234275\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.54855755489548,\n          \"Y\": 27.76578014438041\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.02936531710395,\n          \"Y\": 26.575680729713927\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.846636670428634,\n          \"Y\": 28.658403537125473\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.75069874240183,\n          \"Y\": 26.464358097759444\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 18.642413159085244,\n          \"Y\": 29.585749042045443\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 18.114534945239527,\n          \"Y\": 29.96056288469767\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.89063941029048,\n          \"Y\": 30.40967128533151\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 19.177413425943513,\n          \"Y\": 29.790316975358717\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 19.421545582612655,\n          \"Y\": 29.849565902325587\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 20.428695873575105,\n          \"Y\": 30.063955131069637\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 20.271184767571977,\n          \"Y\": 33.586006703235064\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 21.23012653905654,\n          \"Y\": 34.19202362990785\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 22.383839376835358,\n          \"Y\": 36.099918931011395\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 24.849517743655664,\n          \"Y\": 37.18137630871274\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 23.018234864790475,\n          \"Y\": 37.3878341474434\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 25.368665864726108,\n          \"Y\": 38.69565105530858\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 26.194861372477984,\n          \"Y\": 40.551406609263104\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 27.776889871741783,\n          \"Y\": 40.59409860728754\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 27.309304890413063,\n          \"Y\": 40.72390802396453\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 30.788805704227972,\n          \"Y\": 41.58481755616034\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.244979307217676,\n          \"Y\": 42.071660279644924\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 30.32538655373424,\n          \"Y\": 41.84495076984768\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 31.38541255625376,\n          \"Y\": 42.555891150999805\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.126310224968,\n          \"Y\": 42.5289072319434\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.7961367160771,\n          \"Y\": 43.6302990958513\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 33.52062185359709,\n          \"Y\": 41.838957567052745\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 34.00499099918828,\n          \"Y\": 41.4238466550717\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 34.97176205418849,\n          \"Y\": 41.582768517165796\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 37.11733194220762,\n          \"Y\": 40.388388912652786\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 39.30399129001337,\n          \"Y\": 41.02016527304278\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 39.846536186239405,\n          \"Y\": 41.76965920514953\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 43.07081880036374,\n          \"Y\": 41.728010760953346\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 44.01200563791459,\n          \"Y\": 40.49836682902172\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 44.8445525967339,\n          \"Y\": 39.042447260935184\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 46.316377810937674,\n          \"Y\": 37.8485091389301\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 47.09604547880665,\n          \"Y\": 37.378853477272365\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0,\n          \"Y\": 0\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.4959834833661376,\n          \"Y\": 1.3545122401020775\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.46692867593012344,\n          \"Y\": 1.2568136970723294\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.866384280379635,\n          \"Y\": -0.3790080315332305\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.0216593626524055,\n          \"Y\": 1.1571646856516027\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.8117064980987132,\n          \"Y\": 1.4925861552150301\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.722727721700016,\n          \"Y\": 3.4863260958686197\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.37547781732650076,\n          \"Y\": 2.5409261013823894\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2817038765883308,\n          \"Y\": 4.159156266975698\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.1667041295923471,\n          \"Y\": 5.130870216791928\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.3063259837784219,\n          \"Y\": 6.0494478042882385\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.9886298127833987,\n          \"Y\": 6.241715204795343\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.38496827432593106,\n          \"Y\": 5.080720182682791\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.0462180841414912,\n          \"Y\": 5.942526622696139\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2251744493459894,\n          \"Y\": 6.5612141945954665\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.814146491805117,\n          \"Y\": 6.9248379196231085\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7561087684322328,\n          \"Y\": 6.62553822183286\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.43914666664058133,\n          \"Y\": 5.968357481439281\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.12399654710156549,\n          \"Y\": 6.12794282548626\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.42208439701240297,\n          \"Y\": 6.0998614517598835\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.0537808269584867,\n          \"Y\": 6.1962556328145055\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.6736031774198217,\n          \"Y\": 6.750007721251283\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7833668854997602,\n          \"Y\": 7.681301119927426\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.0611405381121775,\n          \"Y\": 8.167752558749864\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.2383582402513835,\n          \"Y\": 9.359656490408558\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.735982039185112,\n          \"Y\": 10.804738228768336\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.1205816100690718,\n          \"Y\": 11.348794078362255\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.0551680452461532,\n          \"Y\": 11.034241068055147\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.3524152565281415,\n          \"Y\": 11.214208812917592\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.38392332366332016,\n          \"Y\": 12.52097689413072\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2673468302718842,\n          \"Y\": 14.07716588278852\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.4399510387629983,\n          \"Y\": 15.953255031302792\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.8232951752429258,\n          \"Y\": 16.74054808359849\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.1597296904624903,\n          \"Y\": 14.680518334121674\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.96472904813252,\n          \"Y\": 15.13940147107535\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.4250433824874331,\n          \"Y\": 16.12393699144529\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.4703277914016233,\n          \"Y\": 14.578669365055553\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.6564802222940759,\n          \"Y\": 15.118393817361142\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2934887231854395,\n          \"Y\": 15.847674814809938\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.4154694944684096,\n          \"Y\": 16.308982707174362\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.2290237130424866,\n          \"Y\": 16.07176229204904\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 3.113541805788172,\n          \"Y\": 16.39959240449963\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.727374183344879,\n          \"Y\": 16.539569187571324\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 3.115556283090038,\n          \"Y\": 18.66480697731124\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.747380851426324,\n          \"Y\": 18.083826913156145\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 4.017539334489981,\n          \"Y\": 17.34819318803999\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 3.2106775079187786,\n          \"Y\": 18.72699096758819\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 4.064433069759858,\n          \"Y\": 18.930938861615648\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 4.886199754552055,\n          \"Y\": 18.822292641259693\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.693570082393493,\n          \"Y\": 18.352523954726017\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 4.764219023719597,\n          \"Y\": 19.071723695171766\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.109648787640866,\n          \"Y\": 20.161076174063425\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 6.684585131049911,\n          \"Y\": 21.81265734233153\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.07453949257289,\n          \"Y\": 22.80841644425841\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 7.412231069790365,\n          \"Y\": 23.795701704568753\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.875225307277638,\n          \"Y\": 24.134979184688905\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 9.786720807812639,\n          \"Y\": 24.798570393123562\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.839675266822008,\n          \"Y\": 24.11060847582407\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 11.951885850540787,\n          \"Y\": 23.54370832545031\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.362900938006847,\n          \"Y\": 24.116558302935186\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.403537769403211,\n          \"Y\": 25.84854640696169\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.087572364941128,\n          \"Y\": 26.388585481883272\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.123642440895985,\n          \"Y\": 26.737432791961233\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 16.27403404057166,\n          \"Y\": 27.717366941234275\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.54855755489548,\n          \"Y\": 27.76578014438041\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.02936531710395,\n          \"Y\": 26.575680729713927\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.846636670428634,\n          \"Y\": 28.658403537125473\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.75069874240183,\n          \"Y\": 26.464358097759444\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 18.642413159085244,\n          \"Y\": 29.585749042045443\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 18.114534945239527,\n          \"Y\": 29.96056288469767\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.89063941029048,\n          \"Y\": 30.40967128533151\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 19.177413425943513,\n          \"Y\": 29.790316975358717\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 19.421545582612655,\n          \"Y\": 29.849565902325587\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 20.428695873575105,\n          \"Y\": 30.063955131069637\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 20.271184767571977,\n          \"Y\": 33.586006703235064\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 21.23012653905654,\n          \"Y\": 34.19202362990785\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 22.383839376835358,\n          \"Y\": 36.099918931011395\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 24.849517743655664,\n          \"Y\": 37.18137630871274\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 23.018234864790475,\n          \"Y\": 37.3878341474434\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 25.368665864726108,\n          \"Y\": 38.69565105530858\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 26.194861372477984,\n          \"Y\": 40.551406609263104\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 27.776889871741783,\n          \"Y\": 40.59409860728754\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 27.309304890413063,\n          \"Y\": 40.72390802396453\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 30.788805704227972,\n          \"Y\": 41.58481755616034\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.244979307217676,\n          \"Y\": 42.071660279644924\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 30.32538655373424,\n          \"Y\": 41.84495076984768\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 31.38541255625376,\n          \"Y\": 42.555891150999805\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.126310224968,\n          \"Y\": 42.5289072319434\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.7961367160771,\n          \"Y\": 43.6302990958513\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 33.52062185359709,\n          \"Y\": 41.838957567052745\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 34.00499099918828,\n          \"Y\": 41.4238466550717\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 34.97176205418849,\n          \"Y\": 41.582768517165796\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 37.11733194220762,\n          \"Y\": 40.388388912652786\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 39.30399129001337,\n          \"Y\": 41.02016527304278\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 39.846536186239405,\n          \"Y\": 41.76965920514953\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 41.41289090018148,\n          \"Y\": 40.40980685025504\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 41.341374038004815,\n          \"Y\": 38.877159633685075\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 42.151979000825584,\n          \"Y\": 39.606699247527324\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 42.68088796888283,\n          \"Y\": 39.14346319779684\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 43.925889140270286,\n          \"Y\": 40.27833386283229\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0,\n          \"Y\": 0\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.4959834833661376,\n          \"Y\": 1.3545122401020775\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.46692867593012344,\n          \"Y\": 1.2568136970723294\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.866384280379635,\n          \"Y\": -0.3790080315332305\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.0216593626524055,\n          \"Y\": 1.1571646856516027\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.8117064980987132,\n          \"Y\": 1.4925861552150301\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.722727721700016,\n          \"Y\": 3.4863260958686197\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.37547781732650076,\n          \"Y\": 2.5409261013823894\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2817038765883308,\n          \"Y\": 4.159156266975698\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.1667041295923471,\n          \"Y\": 5.130870216791928\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.3063259837784219,\n          \"Y\": 6.0494478042882385\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.9886298127833987,\n          \"Y\": 6.241715204795343\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.38496827432593106,\n          \"Y\": 5.080720182682791\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.0462180841414912,\n          \"Y\": 5.942526622696139\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2251744493459894,\n          \"Y\": 6.5612141945954665\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.814146491805117,\n          \"Y\": 6.9248379196231085\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7561087684322328,\n          \"Y\": 6.62553822183286\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.43914666664058133,\n          \"Y\": 5.968357481439281\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.12399654710156549,\n          \"Y\": 6.12794282548626\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.42208439701240297,\n          \"Y\": 6.0998614517598835\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.0537808269584867,\n          \"Y\": 6.1962556328145055\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.6736031774198217,\n          \"Y\": 6.750007721251283\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7833668854997602,\n          \"Y\": 7.681301119927426\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.0611405381121775,\n          \"Y\": 8.167752558749864\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.2383582402513835,\n          \"Y\": 9.359656490408558\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.735982039185112,\n          \"Y\": 10.804738228768336\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.1205816100690718,\n          \"Y\": 11.348794078362255\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.0551680452461532,\n          \"Y\": 11.034241068055147\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.3524152565281415,\n          \"Y\": 11.214208812917592\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.38392332366332016,\n          \"Y\": 12.52097689413072\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2673468302718842,\n          \"Y\": 14.07716588278852\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.024963119400584516,\n          \"Y\": 13.93326448589509\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.01668690681705276,\n          \"Y\": 14.83684373655884\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.17911547602422,\n          \"Y\": 15.084074410502849\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.9108705892057958,\n          \"Y\": 13.887471102911695\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.6784610809277485,\n          \"Y\": 14.659133933032681\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.4018452726915647,\n          \"Y\": 15.608512892237467\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2912375493838337,\n          \"Y\": 15.997567490220362\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.1050679766955862,\n          \"Y\": 15.752401275473284\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.19917206731955894,\n          \"Y\": 15.377820080513631\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.9741543649500806,\n          \"Y\": 13.614632058863588\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.4990785318155075,\n          \"Y\": 13.854551762050791\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.2200996415571056,\n          \"Y\": 15.738329159979111\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.7352628450603202,\n          \"Y\": 15.3303445791598\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.094012160536499,\n          \"Y\": 16.38408247206461\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.5673766000647635,\n          \"Y\": 16.97018692648492\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.0469033151093625,\n          \"Y\": 16.616370658076875\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.3963907566016593,\n          \"Y\": 18.314095401143472\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 4.166301538985277,\n          \"Y\": 19.69339124841146\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.312289793343187,\n          \"Y\": 20.895979091356306\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 7.225390520072812,\n          \"Y\": 20.05514728382199\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.274950352304558,\n          \"Y\": 21.748224816446445\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.077144277369639,\n          \"Y\": 22.20028425004137\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 11.648130476884795,\n          \"Y\": 22.14028530286502\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.150662300936114,\n          \"Y\": 22.530497385437407\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.386758213852861,\n          \"Y\": 21.407269138905697\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.750381749456752,\n          \"Y\": 21.999311217832176\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.02714510943885,\n          \"Y\": 23.182960884690576\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.27298822179917,\n          \"Y\": 23.531086350970302\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.988745103331425,\n          \"Y\": 24.324866195918368\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.97399897741783,\n          \"Y\": 23.871020803936624\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.137869876167708,\n          \"Y\": 24.144965731455162\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.565176995801204,\n          \"Y\": 25.12036070475441\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.600256218729754,\n          \"Y\": 24.678147688007876\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.237482795901055,\n          \"Y\": 26.542536752281652\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.015954839425017,\n          \"Y\": 28.450372658629945\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.32787978081421,\n          \"Y\": 26.75434260574275\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 18.229555681882005,\n          \"Y\": 27.282709577031078\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 18.10563921397335,\n          \"Y\": 27.752039881712587\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.123756040356,\n          \"Y\": 29.56098407271677\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.460570214108486,\n          \"Y\": 30.819617268587045\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 16.315799863680635,\n          \"Y\": 32.82542887662225\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 16.901473532111954,\n          \"Y\": 34.409088099712484\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.42628716729539,\n          \"Y\": 34.29954984262977\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 18.4645589421396,\n          \"Y\": 35.705103134817925\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 19.854679777751464,\n          \"Y\": 34.847546859528244\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 21.061631904164262,\n          \"Y\": 35.128817736081885\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 21.742962935562577,\n          \"Y\": 34.7043175359872\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 22.665780613197352,\n          \"Y\": 34.79885327766628\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 22.948111911315912,\n          \"Y\": 35.993516839684936\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 23.387651560179787,\n          \"Y\": 36.74307978279117\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 23.653409918697086,\n          \"Y\": 38.22971702186132\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 26.070568899608688,\n          \"Y\": 38.94807029034141\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 27.878580768011403,\n          \"Y\": 38.44185309899433\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 29.191471700552917,\n          \"Y\": 38.697472562659584\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 29.348002508807642,\n          \"Y\": 38.99777212620182\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 30.66538491817076,\n          \"Y\": 39.44463741855792\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 31.838701070645463,\n          \"Y\": 40.6532118676781\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.54565337408032,\n          \"Y\": 41.106613014512725\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 35.80016973266396,\n          \"Y\": 39.93602216733599\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 37.024230065322435,\n          \"Y\": 39.611212346613435\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 37.22509072925038,\n          \"Y\": 39.32867188584064\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 38.60571810176744,\n          \"Y\": 39.82400773293471\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 38.01245930720338,\n          \"Y\": 41.786165891712976\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 40.33399764927648,\n          \"Y\": 42.008472387625936\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 39.79674808754906,\n          \"Y\": 41.90460204710545\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 41.21137926317559,\n          \"Y\": 42.596290047005986\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 42.18496312014487,\n          \"Y\": 43.08261415850917\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 43.63661001006544,\n          \"Y\": 43.36339026973433\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 44.29745808099413,\n          \"Y\": 44.78221762225468\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0,\n          \"Y\": 0\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.4959834833661376,\n          \"Y\": 1.3545122401020775\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.46692867593012344,\n          \"Y\": 1.2568136970723294\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.866384280379635,\n          \"Y\": -0.3790080315332305\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.0216593626524055,\n          \"Y\": 1.1571646856516027\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.8117064980987132,\n          \"Y\": 1.4925861552150301\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.722727721700016,\n          \"Y\": 3.4863260958686197\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.37547781732650076,\n          \"Y\": 2.5409261013823894\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2817038765883308,\n          \"Y\": 4.159156266975698\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.1667041295923471,\n          \"Y\": 5.130870216791928\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.3063259837784219,\n          \"Y\": 6.0494478042882385\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.9886298127833987,\n          \"Y\": 6.241715204795343\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.38496827432593106,\n          \"Y\": 5.080720182682791\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.0462180841414912,\n          \"Y\": 5.942526622696139\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2251744493459894,\n          \"Y\": 6.5612141945954665\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.814146491805117,\n          \"Y\": 6.9248379196231085\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.7561087684322328,\n          \"Y\": 6.62553822183286\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.43914666664058133,\n          \"Y\": 5.968357481439281\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.12399654710156549,\n          \"Y\": 6.12794282548626\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.42208439701240297,\n          \"Y\": 6.0998614517598835\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.0537808269584867,\n          \"Y\": 6.1962556328145055\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.6736031774198217,\n          \"Y\": 6.750007721251283\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.7833668854997602,\n          \"Y\": 7.681301119927426\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.0611405381121775,\n          \"Y\": 8.167752558749864\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.2383582402513835,\n          \"Y\": 9.359656490408558\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.735982039185112,\n          \"Y\": 10.804738228768336\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -2.1205816100690718,\n          \"Y\": 11.348794078362255\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.0551680452461532,\n          \"Y\": 11.034241068055147\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -1.3524152565281415,\n          \"Y\": 11.214208812917592\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.38392332366332016,\n          \"Y\": 12.52097689413072\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.2673468302718842,\n          \"Y\": 14.07716588278852\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.024963119400584516,\n          \"Y\": 13.93326448589509\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.01668690681705276,\n          \"Y\": 14.83684373655884\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.17911547602422,\n          \"Y\": 15.084074410502849\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.9108705892057958,\n          \"Y\": 13.887471102911695\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.6784610809277485,\n          \"Y\": 14.659133933032681\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.4018452726915647,\n          \"Y\": 15.608512892237467\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.2912375493838337,\n          \"Y\": 15.997567490220362\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.1050679766955862,\n          \"Y\": 15.752401275473284\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.19917206731955894,\n          \"Y\": 15.377820080513631\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.9741543649500806,\n          \"Y\": 13.614632058863588\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": -0.4990785318155075,\n          \"Y\": 13.854551762050791\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.2200996415571056,\n          \"Y\": 15.738329159979111\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 0.7352628450603202,\n          \"Y\": 15.3303445791598\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.094012160536499,\n          \"Y\": 16.38408247206461\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 1.5673766000647635,\n          \"Y\": 16.97018692648492\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.0469033151093625,\n          \"Y\": 16.616370658076875\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 2.3963907566016593,\n          \"Y\": 18.314095401143472\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 4.166301538985277,\n          \"Y\": 19.69339124841146\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 5.312289793343187,\n          \"Y\": 20.895979091356306\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 7.225390520072812,\n          \"Y\": 20.05514728382199\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 8.274950352304558,\n          \"Y\": 21.748224816446445\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 10.077144277369639,\n          \"Y\": 22.20028425004137\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 11.648130476884795,\n          \"Y\": 22.14028530286502\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.150662300936114,\n          \"Y\": 22.530497385437407\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.386758213852861,\n          \"Y\": 21.407269138905697\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 12.750381749456752,\n          \"Y\": 21.999311217832176\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.02714510943885,\n          \"Y\": 23.182960884690576\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.27298822179917,\n          \"Y\": 23.531086350970302\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 13.988745103331425,\n          \"Y\": 24.324866195918368\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 14.97399897741783,\n          \"Y\": 23.871020803936624\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.137869876167708,\n          \"Y\": 24.144965731455162\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.565176995801204,\n          \"Y\": 25.12036070475441\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.600256218729754,\n          \"Y\": 24.678147688007876\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.237482795901055,\n          \"Y\": 26.542536752281652\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.015954839425017,\n          \"Y\": 28.450372658629945\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.32787978081421,\n          \"Y\": 26.75434260574275\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 18.229555681882005,\n          \"Y\": 27.282709577031078\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 18.10563921397335,\n          \"Y\": 27.752039881712587\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.123756040356,\n          \"Y\": 29.56098407271677\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 15.460570214108486,\n          \"Y\": 30.819617268587045\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 16.315799863680635,\n          \"Y\": 32.82542887662225\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 16.901473532111954,\n          \"Y\": 34.409088099712484\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 17.42628716729539,\n          \"Y\": 34.29954984262977\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 18.4645589421396,\n          \"Y\": 35.705103134817925\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 19.854679777751464,\n          \"Y\": 34.847546859528244\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 21.061631904164262,\n          \"Y\": 35.128817736081885\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 22.265669317998004,\n          \"Y\": 36.25282068300822\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 22.35839233579931,\n          \"Y\": 36.79521681982773\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 23.530034470726942,\n          \"Y\": 37.81481503722004\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 24.79990792503274,\n          \"Y\": 38.164587201161694\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 25.800458739095653,\n          \"Y\": 39.85911422057112\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 24.796759275791104,\n          \"Y\": 41.70901349837008\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 27.333671371269205,\n          \"Y\": 41.84934201926996\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 28.69925643311348,\n          \"Y\": 43.467359851059534\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 28.916638028062533,\n          \"Y\": 45.45708168972819\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 29.973577906836102,\n          \"Y\": 46.41633625757215\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.05606284604073,\n          \"Y\": 45.28473893333061\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.88988156762814,\n          \"Y\": 44.8538155889555\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 31.19806934467899,\n          \"Y\": 43.66015178077464\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.81704478887686,\n          \"Y\": 44.28486876827402\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 32.52189150648387,\n          \"Y\": 43.67878912795227\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 33.63905056412499,\n          \"Y\": 43.38602829802608\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 34.2299330139971,\n          \"Y\": 44.002045551626516\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 34.5801094897995,\n          \"Y\": 43.55850184725563\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 35.61480024416932,\n          \"Y\": 41.49485106639062\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 37.1027658095741,\n          \"Y\": 41.92963421495869\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 41.14763144259741,\n          \"Y\": 42.5867872280412\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 40.25689869478788,\n          \"Y\": 43.699882941801995\n         },\n         {\n          \"Outlier\": \"\\\"Inferred\\\"\",\n          \"X\": 41.73373040718483,\n          \"Y\": 43.61522453002227\n         }\n        ]\n       },\n       \"encoding\": {\n        \"color\": {\n         \"field\": \"Outlier\"\n        },\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"circle\",\n       \"width\": 400\n      },\n      \"image/png\": \"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JQJMIqLSrKwUI8AIMAKMACMQfgSYRIQfY5bACDACjAAjwAhEJQIRSyJyc3PxwAMPIDk5GW+88YZqHK13c9RkUToAi+7s+Oqrr9CmTRs126effop33nlH/X3UqFG48847w+oQXbt2Rf369VUZdKrn4sWLwyZPURRV33Xr1qnne7z00kvo06dP2ORVrvjdd9/Fe++9h6SkJPXjW2+9Vb1fJZxJlH3dbjdeeeUV9ej3X375RVefDYQXHfJGB8DRK9YDBgzA008/DSPsTv509913IysrC8XFxXjkkUdw5ZVXwgi702F29AYY6VxaWoq3334bZ5xxhhonHnzwQbVftWvXDq+//nqtJ+cGwra672uSbWS//uijj/DFF1+occwIW1fGgXBv1qwZJkyYoLut//a3v6kHFVqtVlXka6+9hk6dOgmLYXXxj2gqE7EkgggEnTNBx2h7T8fUejdHdYb86aefsGTJErXeN998U5VBb5Ocf/75WLNmjeq455xzDhYsWIBGjRqFxRdosDn77LOxZcuWsNRftdKlS5di+vTp+OSTT3DgwAEMGzYMv/32myGyJ02ahLPOOkt99deIJNK+NJA3btxYJb/79+9X1dXDZwPhlpOTo+JLRJQOfOvWrRvmzZuHnTt3ht3uJJP865///CeOHTuG3r17qxeeGWH3xx9/XD2ThkjTZ599pvbr999/X+3L9JMIxT333IOBAwfi6quvDgSjpu+rk00PIUb163379mHs2LHIzs7Gr7/+qtrAqD5OpIXeCDn33HNV0qy3rcl+RMS9FzmSYYzUT5MjmCBzxJIIsg3t/P3vf/9bTiK03s1Rm30HDRqk1k0k4rvvvlNnIujpidLf//53nHfeebjqqqvC4iLHjx/H0KFD8fzzz4NmXKgtqampYZFFlU6ePBnt27cvnwHo2bOnGnDT09PDJtNb8X333Qd6OqO7VGjWhwYZI5JI+9ITmpdE6OmzweBGBJVOiiUy9e9//9tQu9NsxHXXXafOwhht91dffVXtS0899ZT61EqH3FGiWSnydZqNCFfyyqbZD6P6NcWm5557DjfffLNKIozq4xS76FqDe++9V30QIxKht63poYNmL4mM0oxpZmamYfqFy0ciud7TnkTQ1GfllJGRoc4QVEci6Omqprs5qhrpySefxObNm30+pqeTevXqqZ9VHmRmzZqlBj7qEJSo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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"inferredVectors = fst =<< particles\\n\",\n    \"\\n\",\n    \"plot \\n\",\n    \"    (zip \\n\",\n    \"        (fmap (\\\\v -> (v V.! 0, v V.! 1)) $ randomWalkPrior <> randomWalkObserved <> inferredVectors) \\n\",\n    \"        (replicate 100 (T.pack \\\"Prior\\\") <> replicate 100 (T.pack \\\"Observed\\\") <> replicate 500 (T.pack \\\"Inferred\\\")))\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can see here that `SMC` has done a pretty good job.\\n\",\n    \"\\n\",\n    \"The intuition of how SMC does well is that it is searching the space of solutions with some backtracking (because it has a whole population of guesses to rely on), and moreover, this search results in unbiased sampling from the distribution of interest. So if it makes a series of guesses the leads it astray, it can throw away this possiblity at a later stage. \"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Haskell - nixpkgs\",\n   \"language\": \"haskell\",\n   \"name\": \"ihaskell_nixpkgs\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": \"ihaskell\",\n   \"file_extension\": \".hs\",\n   \"mimetype\": \"text/x-haskell\",\n   \"name\": \"haskell\",\n   \"pygments_lexer\": \"Haskell\",\n   \"version\": \"9.0.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 4\n}\n"
  },
  {
    "path": "notebooks/tutorials/Sampling.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \":e ImportQualifiedPost\\n\",\n    \":e FlexibleContexts\\n\",\n    \":e BlockArguments\\n\",\n    \":e TupleSections\\n\",\n    \":e FlexibleContexts\\n\",\n    \":e OverloadedStrings\\n\",\n    \":e LambdaCase\\n\",\n    \"\\n\",\n    \"import Control.Monad.Bayes.Class\\n\",\n    \"import Control.Monad.Bayes.Enumerator\\n\",\n    \"import Control.Monad.Bayes.Weighted\\n\",\n    \"import Control.Monad.Bayes.Sampler.Strict\\n\",\n    \"\\n\",\n    \"import Control.Monad\\n\",\n    \"import Data.List\\n\",\n    \"import Data.Ord\\n\",\n    \"import Control.Arrow (first)\\n\",\n    \"import Data.Text (pack, Text)\\n\",\n    \"import Numeric.Log\\n\",\n    \"import Control.Arrow (second)\\n\",\n    \"\\n\",\n    \":l ../plotting.hs\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"tags\": []\n   },\n   \"source\": [\n    \"# Sampling\\n\",\n    \"\\n\",\n    \"Before discussing inference, we should understand how to sample from models. This notebook explains how to do that.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"tags\": []\n   },\n   \"source\": [\n    \"## Discrete distribution\\n\",\n    \"We'll start with a very simple model, namely:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model :: MonadDistribution m => m Bool\\n\",\n    \"model = bernoulli 0.7\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"To take a sample, do:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"False\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"sampler model\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Or with a fixed seed:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"True\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"sampleIOfixed model\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"To take multiple samples, you could rerun `sampler` many times, but it's somewhat more in the probabilistic programming spirit to instead define a distribution over multiple draws from `model` and then just sample once, as follows:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[False,True,True,True,True,True,False,False,True,True]\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"multipleDraws :: MonadDistribution m => m [Bool]\\n\",\n    \"multipleDraws = replicateM 10 model\\n\",\n    \"\\n\",\n    \"draws <- sampler multipleDraws\\n\",\n    \"\\n\",\n    \"draws\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We convert a list of samples to an empirical distribution, where `toEmpirical` function returns list of distribution values with share of their occurence in the :\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[(True,0.7),(False,0.3)]\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"emp = toEmpirical draws :: [(Bool, Double)]\\n\",\n    \"\\n\",\n    \"emp\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"X\": \"True\",\n          \"Y\": 0.7\n         },\n         {\n          \"X\": \"False\",\n          \"Y\": 0.3\n         }\n        ]\n       },\n       \"encoding\": {\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"nominal\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"bar\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plot $ first (pack . show) <$> emp\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"In fact, we could lean even further into the spirit of probabilistic programming, and transform `model` into a distribution over plots, and sample from that:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"X\": \"True\",\n          \"Y\": 0.9\n         },\n         {\n          \"X\": \"False\",\n          \"Y\": 0.1\n         }\n        ]\n       },\n       \"encoding\": {\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"nominal\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"bar\",\n       \"width\": 400\n      },\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAb4AAAHOCAYAAADnr2woAAAAAXNSR0IArs4c6QAAIABJREFUeF7tnX9UX2Udxz+MoaJox5w/MDmnyYFRTOyYDKuhxvzJMVsSommpKTrFGiLJsjNzOjPSOmegYluUcaSOis0VwZHIX4Msx07zkGdgNo95loo/GyoL0W/n3oLj3Nh9+H7v5T4/XvevyZ77PJ/P6/3c8/L58t33m5ZIJBLCBQEIQAACEHCEQBricyRp2oQABCAAAZ8A4mMjQAACEICAUwQQn1Nx0ywEIAABCCA+9gAEIAABCDhFAPE5FTfNQgACEIAA4mMPQAACEICAUwQiEd/g4KDU1tZKenq65OXlSVNTk//nyWtiYkIuv/xyefHFF+X999/3/37hwoVOgadZCEAAAhCIh0Ak4istLZXW1lbJz8+XmpoaKSsrk4qKiqkO29raZNOmTdLc3CxDQ0OybNkyeeyxx+IhwKoQgAAEIOAUgdDF553mCgsLZXh42AfZ2dkpPT09/qlu8rr55pvliCOOkOrqav9H3p+3b9++y6nQqRRoFgIQgAAEZo1A6OIbGRmR8vJyGRgY8Jvo6+uTlpYWaW9vn2rq0UcflRtvvNH/2eOPPy6XXnqpvPTSS3LwwQf74/v7+3cBcOihh8rJJ588a1BYCAI2Eli+bpONbdGTowTWVBcrde59OFlubu4uY0MX3/j4uBQVFfkvYXpXV1eXdHd3+y9rfvi67777/JPgiSeeKLfeeqts3bpV0tLS9thIY2OjNDQ0KDXJIAhAYM8EvvTd+0ADAWsI/O7WKqVetm3bJkcffXS04vNmLykpkY6ODsnJyZH6+nopLi6WqqoqGR0dlaysLP9NLc8++6yccsop4r0RZsWKFfL73/9+2iYQn1K+DILAXgkgPjaITQS0E5/3UmVdXZ1kZ2dLZmameG9mycjIkIKCAunt7ZUDDzxQzjjjDP/vX3/9dVm7dq0sWLAA8dm0K+lFOwKIT7tIKCgFAtqJb7KXsbExX3zTXTt27JCDDjoosHVOfIGIGACBQAKILxARAwwioK34wmKI+MIiyTwuE0B8LqdvX++Iz75M6QgCoRNAfKEjZcIYCSC+GOGzNARMIYD4TEmKOlUIID4VSoyBgOMEEJ/jG8Cy9hGfZYHSDgSiIID4oqDKnHERQHxxkWddCBhEAPEZFBalBhJAfIGIGAABCCA+9oBNBBCfTWnSCwQiIoD4IgLLtLEQQHyxYGdRCJhFAPGZlRfV7p0A4mOHQAACgQQQXyAiBhhEAPEZFBalQiAuAogvLvKsGwUBxBcFVeaEgGUEEJ9lgTreDuJzfAPQPgRUCCA+FUqMMYUA4jMlKeqEQIwEEF+M8Fk6dAKIL3SkTAgB+wggPvsydbkjxOdy+vQOAUUCiE8RFMOMIID4jIiJIiEQLwHEFy9/Vg+XAOILlyezQcBKAojPylidbQrxORs9jUNAnQDiU2fFSP0JID79M6JCCMROAPHFHgEFhEgA8YUIk6kgYCsBxGdrsm72hfjczJ2uITAjAohvRrgYrDkBxKd5QJQHAR0IID4dUqCGsAggvrBIMg8ELCaA+CwO18HWEJ+DodMyBGZKAPHNlBjjdSaA+HROh9ogoAkBxKdJEJQRCgHEFwpGJoGA3QQQn935utYd4nMtcfqFQBIEEF8S0LhFWwKIT9toKAwC+hBAfPpkQSWpE0B8qTNkBghYTwDxWR+xUw0iPqfiplkIJEcA8SXHjbv0JID49MyFqiCgFQHEp1UcFJMiAcSXIkBuh4ALBBCfCym70yPicydrOoVA0gQQX9LouFFDAohPw1AoCQK6EUB8uiVCPakQQHyp0ONeCDhCAPE5ErQjbWonvsHBQamtrZX09HTJy8uTpqYm/8+T1/j4uFRXV8vOnTtlx44dcsUVV8jSpUunjauxsVEaGhociZM2IRANAcQXDVdmjYeAduIrLS2V1tZWyc/Pl5qaGikrK5OKioopOvfff788/vjjcuedd8ro6KgUFRXJ888/j/ji2T+s6ggBxOdI0I60qZX4JiYmpLCwUIaHh338nZ2d0tPT45/6Jq+//OUvsmrVKnnooYdkaGhIrr76anniiScQnyMbljbjIYD44uHOqtEQ0Ep8IyMjUl5eLgMDA363fX190tLSIu3t7VPdv/fee3LuuefKv//9b3n55Zdl9erVcs4550yN7+/v341UZWVlNPSYFQKOEFi+bpMjndKmCwTWVBcrtZlIJCQ3N3eXsWkJ76chXt7v77yXLr2TnHd1dXVJd3e3NDc3T63i/fmtt96SlStXijf+mGOOkS1btkhmZuYeK+F3fCEGxFTOEuDE52z0Vjau1YnPI1xSUiIdHR2Sk5Mj9fX1UlxcLFVVVf7v87KysuSWW26RAw44QK655hqZtPHTTz8tBx54IOKzcovSlA4EEJ8OKVBDWAS0E5/3UmVdXZ1kZ2f7p7i2tjbJyMiQgoIC6e3t9f98/vnny/z58+Wll16SxYsXy/XXXz8tD058YW0V5nGZAOJzOX37etdOfJOIx8bGpn350hvjnQA9Mc6dO3evqSA++zYtHc0+AcQ3+8xZMToC2oovrJYRX1gkmcdlAojP5fTt6x3x2ZcpHUEgdAKIL3SkTBgjAcQXI3yWhoApBBCfKUlRpwoBxKdCiTEQcJwA4nN8A1jWPuKzLFDagUAUBBBfFFSZMy4CiC8u8qwLAYMIID6DwqLUQAKILxARAyAAAcTHHrCJAOKzKU16gUBEBBBfRGCZNhYCiC8W7CwKAbMIID6z8qLavRNAfOwQCEAgkADiC0TEAIMIID6DwqJUCMRFAPHFRZ51oyCA+KKgypwQsIwA4rMsUMfbQXyObwDah4AKAcSnQokxphBAfKYkRZ0QiJEA4osRPkuHTgDxhY6UCSFgHwHEZ1+mLneE+FxOn94hoEgA8SmCYpgRBBCfETFRJATiJYD44uXP6uESQHzh8mQ2CFhJAPFZGauzTSE+Z6OncQioE0B86qwYqT8BxKd/RlQIgdgJIL7YI6CAEAkgvhBhMhUEbCWA+GxN1s2+EJ+budM1BGZEAPHNCBeDNSeA+DQPiPIgoAMBxKdDCtQQFgHEFxZJ5oGAxQQQn8XhOtga4nMwdFqGwEwJIL6ZEmO8zgQQn87pUBsENCGA+DQJgjJCIYD4QsHIJBCwmwDisztf17pDfK4lTr8QSIIA4ksCGrdoSwDxaRsNhUFAHwKIT58sqCR1AogvdYbMAAHrCSA+6yN2qkHE51TcNAuB5AggvuS4cZeeBBCfnrlQFQS0IoD4tIqDYlIkgPhSBMjtEHCBAOJzIWV3ekR87mRNpxBImgDiSxodN2pIAPFpGAolQUA3AohPt0SoJxUCiC8VetwLAUcIID5HgnakTe3ENzg4KLW1tZKeni55eXnS1NTk/3nyam9vl1/84hdT//3iiy/K5s2bJSsra4+RNTY2SkNDgyNx0iYEoiGA+KLhyqzxENBOfKWlpdLa2ir5+flSU1MjZWVlUlFRsUc6AwMDcscdd8g999wzLT3EF8/GYlW7CCA+u/J0vRutxDcxMSGFhYUyPDzs59LZ2Sk9PT3+qe+jVyKRkCVLlsh9990nhx56KOJzfSfTf6QEEF+keJl8lgloJb6RkREpLy8X7yTnXX19fdLS0iLey5sfvTZs2CBPPfWU3HLLLXtFxolvlncUy1lJAPFZGauzTWklvvHxcSkqKpKhoSE/kK6uLunu7pbm5ubdAjr11FP9lzkXLFgw9XeeKPv7+3cbW1lZ6WzANA6BMAgsX7cpjGmYAwJaEFhTXaxUh/fKYm5u7i5j0xLeT0O+SkpKpKOjQ3JycqS+vl6Ki4ulqqpKRkdH/TewpKWlyTvvvCPHHnusPPfcc4Grc+ILRMQACAQS4MQXiIgBBhHQ6sTncfNObHV1dZKdnS2ZmZnS1tYmGRkZUlBQIL29vXLUUUfJM888I8uWLZONGzcGokZ8gYgYAIFAAogvEBEDDCKgnfgm2Y2NjfniS/VCfKkS5H4IiCA+doFNBLQVX1iQEV9YJJnHZQKIz+X07esd8dmXKR1BIHQCiC90pEwYIwHEFyN8loaAKQQQnylJUacKAcSnQokxEHCcAOJzfANY1j7isyxQ2oFAFAQQXxRUmTMuAogvLvKsCwGDCCA+g8Ki1EACiC8QEQMgAAHExx6wiQDisylNeoFARAQQX0RgmTYWAogvFuwsCgGzCCA+s/Ki2r0TQHzsEAhAIJAA4gtExACDCCA+g8KiVAjERQDxxUWedaMggPiioMqcELCMAOKzLFDH20F8jm8A2oeACgHEp0KJMaYQQHymJEWdEIiRAOKLET5Lh04A8YWOlAkhYB8BxGdfpi53hPhcTp/eIaBIAPEpgmKYEQQQnxExUSQE4iWA+OLlz+rhEkB84fJkNghYSQDxWRmrs00hPmejp3EIqBNAfOqsGKk/AcSnf0ZUCIHYCSC+2COggBAJIL4QYTIVBGwlgPhsTdbNvhCfm7nTNQRmRADxzQgXgzUngPg0D4jyIKADAcSnQwrUEBYBxBcWSeaBgMUEEJ/F4TrYGuJzMHRahsBMCSC+mRJjvM4EEJ/O6VAbBDQhgPg0CYIyQiGA+ELByCQQsJsA4rM7X9e6Q3yuJU6/EEiCAOJLAhq3aEsA8WkbDYVBQB8CiE+fLKgkdQKIL3WGzAAB6wkgPusjdqpBxOdU3DQLgeQIIL7kuHGXngQQn565UBUEtCKA+LSKg2JSJID4UgTI7RBwgQDicyFld3pEfO5kTacQSJoA4ksaHTdqSADxaRgKJUFANwKIT7dEqCcVAogvFXrcCwFHCCA+R4J2pE3E50jQtAmBVAggvlToca9uBLQT3+DgoNTW1kp6errk5eVJU1OT/+cPX+3t7fLzn/9cRkdHpa6uTs4777xpuTY2NkpDQ4Nu3KkHAkYRQHxGxUWxAQS0E19paam0trZKfn6+1NTUSFlZmVRUVEy18corr8g555wjjz32mLz77rty7733+uOmuxAfzwAEUieA+FJnyAz6ENBKfBMTE1JYWCjDw8M+oc7OTunp6fFPfZOXJ7oXXnhBPvWpT8nbb78tlZWVkpmZifj02VNUYiEBxGdhqA63pJX4RkZGpLy8XAYGBvxI+vr6pKWlRbyXNiev22+/XTo6OmTFihWybds2+e1vf+uf/ibH9/f37xanJ0cuCEAgeQLL121K/mbuhIBmBNZUFytVlEgkJDc3d5exaQnvpyFe4+PjUlRUJENDQ/6sXV1d0t3dLc3NzVOr/PSnP5Xt27fLTTfd5P/s2GOPlUceeUQOOeSQPVbCS50hBsRUzhLgxOds9FY2rtWJzyNcUlLin+hycnKkvr5eiouLpaqqyn8jS1ZWljz99NOyatUqWb9+vbz33nv+7wK9l0b32WcfxGflFqUpHQggPh1SoIawCGgnPu+lSu+dmtnZ2f7v7tra2iQjI0MKCgqkt7dXjjrqKLnuuutk69at8sYbb8jXv/51WbZs2bQ8OPGFtVWYx2UCiM/l9O3rXTvxTSIeGxvb65tW/vOf//j/zGHu3Ll7TQXx2bdp6Wj2CSC+2WfOitER0FZ8YbWM+MIiyTwuE0B8LqdvX++Iz75M6QgCoRNAfKEjZcIYCSC+GOGzNARMIYD4TEmKOlUIID4VSoyBgOMEEJ/jG8Cy9hGfZYHSDgSiIID4oqDKnHERQHxxkWddCBhEAPEZFBalBhJAfIGIGAABCCA+9oBNBBCfTWnSCwQiIoD4IgLLtLEQQHyxYGdRCJhFAPGZlRfV7p0A4mOHQAACgQQQXyAiBhhEAPEZFBalQiAuAogvLvKsGwUBxBcFVeaEgGUEEJ9lgTreDuJzfAPQPgRUCCA+FUqMMYUA4jMlKeqEQIwEEF+M8Fk6dAKIL3SkTAgB+wggPvsydbkjxOdy+vQOAUUCiE8RFMOMIID4jIiJIiEQLwHEFy9/Vg+XAOILlyezQcBKAojPylidbQrxORs9jUNAnQDiU2fFSP0JID79M6JCCMROAPHFHgEFhEgA8YUIk6kgYCsBxGdrsm72hfjczJ2uITAjAohvRrgYrDkBxKd5QJQHAR0IID4dUqCGsAggvrBIMg8ELCaA+CwO18HWEJ+DodMyBGZKAPHNlBjjdSaA+HROh9ogoAkBxKdJEJQRCgHEFwpGJoGA3QQQn935utYd4nMtcfqFQBIEEF8S0LhFWwKIT9toKAwC+hBAfPpkQSWpE0B8qTNkBghYTwDxWR+xUw0iPqfiplkIJEcA8SXHjbv0JID49MyFqiCgFQHEp1UcFJMiAcSXIkBuh4ALBBCfCym70yPicydrOoVA0gQQX9LouFFDAohPw1AoCQK6EUB8uiVCPakQQHyp0ONeCDhCAPE5ErQjbWonvsHBQamtrZX09HTJy8uTpqYm/8+Tl/f3F1xwgRx22GH+j4477jj50Y9+NG1cjY2N0tDQ4EictAmBaAggvmi4Mms8BLQTX2lpqbS2tkp+fr7U1NRIWVmZVFRUTNH54x//KA8++KDcddddSsQQnxImBkFgrwQQHxvEJgJaiW9iYkIKCwtleHjYZ9zZ2Sk9PT3+qW/y8qT3+OOPy0knnST777+/nHbaabucCD8aDuKzabvSS1wEEF9c5Fk3CgJaiW9kZETKy8tlYGDA77Wvr09aWlqkvb19qveHHnpI7rzzTvna174mW7ZskX/84x++IKe7EF8U24Y5XSOA+FxL3O5+tRLf+Pi4FBUVydDQkE+9q6tLuru7pbm5edoUFi5cKI8++qgceuihvij7+/t3G1tZWWl3inQHgYgJLF+3KeIVmB4Cs0dgTXWx0mKJREJyc3N3GZuW8H4a8lVSUiIdHR2Sk5Mj9fX1UlxcLFVVVTI6OipZWVny8MMPS1pampx++umyc+dOKSgo8F8a3XffffdYCSe+kANiOicJcOJzMnZrm9bqxOdR9k5sdXV1kp2dLZmZmdLW1iYZGRm+4Hp7e+WDDz6Qc8891xfjP//5T7nqqqvkoosu4qVOa7cojelAAPHpkAI1hEVAO/FNNjY2NuaLb7prx44d/glwzpw5e2XBiS+srcI8LhNAfC6nb1/v2oovLNSILyySzOMyAcTncvr29Y747MuUjiAQOgHEFzpSJoyRAOKLET5LQ8AUAojPlKSoU4UA4lOhxBgIOE4A8Tm+ASxrH/FZFijtQCAKAogvCqrMGRcBxBcXedaFgEEEEJ9BYVFqIAHEF4iIARCAAOJjD9hEAPHZlCa9QCAiAogvIrBMGwsBxBcLdhaFgFkEEJ9ZeVHt3gkgPnYIBCAQSADxBSJigEEEEJ9BYVEqBOIigPjiIs+6URBAfFFQZU4IWEYA8VkWqOPtID7HNwDtQ0CFAOJTocQYUwggPlOSok4IxEgA8cUIn6VDJ4D4QkfKhBCwjwDisy9TlzuKTHx33XWXLFiwQJYsWRIrX76WKFb8LG4JAcRnSZC04ROITHw33HCD3Hzzzf63pf/kJz+RT3ziE7EgR3yxYGdRywggPssCdbydyMSXSCTk3nvvlRUrVoj3bemeCEtLS6dwn3DCCbOCHvHNCmYWsZwA4rM8YMfai0x8kxzfeecdOf3006W/v38XtJ4YZ+NCfLNBmTVsJ4D4bE/Yrf4iFd/mzZvlmmuu8aV32WWX7XLiu/DCC2eFNOKbFcwsYjkBxGd5wI61F5n47rjjDvn2t78txx13nHhvdFm0aFEsaBFfLNhZ1DICiM+yQB1vJzLxrVq1SubNmydXXnmlzJkzJzbMiC829CxsEQHEZ1GYtBLduzp1YYv4dEmCOkwmgPhMTo/aP0ogshOfLqgRny5JUIfJBBCfyelRO+JjD0AAAjMmgPhmjIwbNCbAiU/jcCgNAroQQHy6JEEdYRBAfGFQZA4IWE4A8VkesGPtIT7HAqddCCRDAPElQ417dCWA+HRNhrogoBEBxKdRGJSSMgHElzJCJoCA/QQQn/0Zu9Qh4nMpbXqFQJIEEF+S4LhNSwKIT8tYKAoCehFAfHrlQTWpEUB8qfHjbgg4QQDxORGzM00iPmeiplEIJE8A8SXPjjv1I4D49MuEiiCgHQHEp10kFJQCAcSXAjxuhYArBBCfK0m70SficyNnuoRASgQQX0r4uFkzAtqJb3BwUGprayU9PV3y8vKkqanJ//NHr507d8qSJUvk5ptvlrKysmmx8u0Mmu04yjGSAOIzMjaKnoaAduIrLS2V1tZWyc/Pl5qaGl9qFRUVu5V/7bXXypNPPinXX3+9nHXWWYiPLQ6BCAkgvgjhMvWsE9BKfBMTE1JYWCjDw8M+iM7OTunp6fFPfR++Nm7cKPfdd59kZWXJ4sWLEd+sbxsWdI0A4nMtcbv71Up8IyMjUl5eLgMDAz71vr4+aWlpkfb29qkU3nnnHVm6dKmsX79eVq9evYv4vPH9/f27JVZZWWl3inQHgYgJLF+3KeIVmB4Cs0dgTXWx0mKJREJyc3N3GZuW8H4a4jU+Pi5FRUUyNDTkz9rV1SXd3d3S3Nw8tcry5ctl3rx54r0kunbtWjnmmGNk2bJlcvDBB++xEn7HF2JATOUsAU58zkZvZeNanfg8wiUlJdLR0SE5OTlSX18vxcXFUlVVJaOjo/5Lm97fbd++3Q/Deyn06KOPlpUrV/rj93QhPiv3LU3NMgHEN8vAWS5SAtqJz3upsq6uTrKzsyUzM1Pa2tokIyNDCgoKpLe3V4466qgpICtWrOB3fJFuDyaHwP8IID52gk0EtBPfJNyxsTFffKlenPhSJcj9EEB87AG7CGgrvrAwI76wSDKPywQ48bmcvn29Iz77MqUjCIROAPGFjpQJYySA+GKEz9IQMIUA4jMlKepUIYD4VCgxBgKOE0B8jm8Ay9pHfJYFSjsQiIIA4ouCKnPGRQDxxUWedSFgEAHEZ1BYlBpIAPEFImIABCCA+NgDNhFAfDalSS8QiIgA4osILNPGQgDxxYKdRSFgFgHEZ1ZeVLt3AoiPHQIBCAQSQHyBiBhgEAHEZ1BYlAqBuAggvrjIs24UBBBfFFSZEwKWEUB8lgXqeDuIz/ENQPsQUCGA+FQoMcYUAojPlKSoEwIxEkB8McJn6dAJIL7QkTIhBOwjgPjsy9TljhCfy+nTOwQUCSA+RVAMM4IA4jMiJoqEQLwEEF+8/Fk9XAKIL1yezAYBKwkgPitjdbYpxOds9DQOAXUCiE+dFSP1J4D49M+ICiEQOwHEF3sEFBAiAcQXIkymgoCtBBCfrcm62RficzN3uobAjAggvhnhYrDmBBCf5gFRHgR0IID4dEiBGsIigPjCIsk8ELCYAOKzOFwHW0N8DoZOyxCYKQHEN1NijNeZAOLTOR1qg4AmBBCfJkFQRigEEF8oGJkEAnYTQHx25+tad4jPtcTpFwJJEEB8SUDjFm0JID5to6EwCOhDAPHpkwWVpE4A8aXOkBkgYD0BxGd9xE41iPiciptmIZAcAcSXHDfu0pMA4tMzF6qCgFYEEJ9WcVBMigQQX4oAuR0CLhBAfC6k7E6PiM+drOkUAkkTQHxJo+NGDQkgPg1DoSQI6EYA8emWCPWkQgDxpUKPeyHgCAHE50jQjrSpnfgGBweltrZW0tPTJS8vT5qamvw/T147d+6Uyy67TEZGRuTtt9+WFStWyNlnnz1tXI2NjdLQ0OBInLQJgWgIIL5ouDJrPAS0E19paam0trZKfn6+1NTUSFlZmVRUVEzRWb9+vQwPD/vCe/nll2Xx4sXy3HPPIb549g+rOkIA8TkStCNtaiW+iYkJKSws9MXmXZ2dndLT0+Of+vZ0bd682T8dbty4EfE5smFpMx4CiC8e7qwaDQGtxOe9fFleXi4DAwN+t319fdLS0iLt7e27dX/yySfLtm3b5P7775cTTjgB8UWzP5gVAj4BxMdGsImAVuIbHx+XoqIiGRoa8hl3dXVJd3e3NDc375H5Cy+8IEuWLJFnnnlG9t13X1+U/f39u42trKy0KTN6gcCsE1i+btOsr8mCEIiKwJrqYqWpE4mE5Obm7jI2LeH9NOSrpKREOjo6JCcnR+rr66W4uFiqqqpkdHRUsrKyZO3atbLffvvJRRddJO+//77Mnz/fF9+BBx64x0p4c0vIATGdkwQ48TkZu7VNa3Xi8yh7J7a6ujrJzs6WzMxMaWtrk4yMDCkoKJDe3l7/HZ7nnnuuHH744fKvf/1LzjzzTFm5ciUvdVq7RWlMBwKIT4cUqCEsAtqJb7KxsbExX3zTXd4J0Pv7uXPn7pUFJ76wtgrzuEwA8bmcvn29ayu+sFAjvrBIMo/LBBCfy+nb1zvisy9TOoJA6AQQX+hImTBGAogvRvgsDQFTCCA+U5KiThUCiE+FEmMg4DgBxOf4BrCsfcRnWaC0A4EoCCC+KKgyZ1wEEF9c5FkXAgYRQHwGhUWpgQQQXyAiBkAAAoiPPWATAcRnU5r0AoGICCC+iMAybSwEEF8s2FkUAmYRQHxm5UW1eyeA+NghEIBAIAHEF4iIAQYRQHwGhUWpEIiLAOKLizzrRkEA8UVBlTkhYBkBxGdZoI63g/gc3wC0DwEVAohPhRJjTCGA+ExJijohECMBxBcjfJYOnQDiCx0pE0LAPgKIz75MXe4I8bmcPr1DQJEA4lMExTAjCCA+I2KiSAjESwDxxcuf1cMlgPjC5clsELCSAOKzMlZnm0J8zkZP4xBQJ4D41FkxUn8CiE//jKgQArETQHyxR0ABIRJAfCHCZCoI2EoA8dmarJt9IT43c6drCMyIAOKbES4Ga04A8WkeEOVBQAcCiE+HFKghLAKILyySzAMBiwkgPovDdbA1xOdg6LQMgZkSQHwzJcZ4nQkgPp3ToTYIaEIA8WkSBGWEQgDxhYKRSSBgNwHEZ3e+rnWH+FxLnH4hkAQBxJcENG7RlgDi0zYaCoOAPgQQnz5ZUEnqBBBf6gyZAQLWE0B81kfsVIOIz6m4aRYCyRFAfMlx4y49CSA+PXOhKghoRQC7gXy3AAASPklEQVTxaRUHxaRIAPGlCJDbIeACAcTnQsru9Ij43MmaTiGQNAHElzQ6btSQAOLTMBRKgoBuBBCfbolQTyoEEF8q9LgXAo4QQHyOBO1Im4jPkaBpEwKpEEB8qdDjXt0IaCe+wcFBqa2tlfT0dMnLy5Ompib/z5PXxMSEXHnllfL888/L2NiYfOc735GlS5dOy7WxsVEaGhp04049EDCKAOIzKi6KDSCgnfhKS0ultbVV8vPzpaamRsrKyqSiomKqjYcfflh6e3vltttuk9dee00WLVok27ZtQ3xsdQhESADxRQiXqWedgFbi805zhYWFMjw87IPo7OyUnp4e/9S3p8s79VVVVclTTz2F+GZ967CgSwQQn0tp29+rVuIbGRmR8vJyGRgY8Mn39fVJS0uLtLe375bEq6++KpWVleK9lFlSUjI1vr+/f7ex3jguCEAgeQLL121K/mbuhIBmBNZUFytVlEgkJDc3d5exaQnvpyFe4+PjUlRUJENDQ/6sXV1d0t3dLc3Nzbus8uyzz8rFF1/snwSPP/74vVbA7/hCDIipnCXAic/Z6K1sXKsTn0fYO711dHRITk6O1NfXS3Fxsf9y5ujoqGRlZcmOHTvk9NNPl1//+tcyf/78wFAQXyAiBkAgkADiC0TEAIMIaCc+76XKuro6yc7OlszMTGlra5OMjAwpKCjw39TiCc876X34+On9LtCT4p4uxGfQbqRUbQkgPm2jobAkCGgnvskevH+q4Ikv1QvxpUqQ+yEggvjYBTYR0FZ8YUFGfGGRZB6XCSA+l9O3r3fEZ1+mdASB0AkgvtCRMmGMBBBfjPBZGgKmEEB8piRFnSoEEJ8KJcZAwHECiM/xDWBZ+4jPskBpBwJREEB8UVBlzrgIIL64yLMuBAwigPgMCotSAwkgvkBEDIAABBAfe8AmAojPpjTpBQIREUB8EYFl2lgIIL5YsLMoBMwigPjMyotq904A8bFDIACBQAKILxARAwwigPgMCotSIRAXAcQXF3nWjYIA4ouCKnNCwDICiM+yQB1vB/E5vgFoHwIqBBCfCiXGmEIA8ZmSFHVCIEYCiC9G+CwdOgHEFzpSJoSAfQQQn32ZutwR4nM5fXqHgCIBxKcIimFGEEB8RsREkRCIlwDii5c/q4dLAPGFy5PZIGAlAcRnZazONoX4nI2exiGgTgDxqbNipP4EEJ/+GVEhBGIngPhij4ACQiSA+EKEyVQQsJUA4rM1WTf7Qnxu5k7XEJgRAcQ3I1wM1pwA4tM8IMqDgA4EEJ8OKVBDWAQQX1gkmQcCFhNAfBaH62BriM/B0GkZAjMlgPhmSozxOhNAfDqnQ20Q0IQA4tMkCMoIhQDiCwUjk0DAbgKIz+58XesO8bmWOP1CIAkCiC8JaNyiLQHEp200FAYBfQggPn2yoJLUCSC+1BkyAwSsJ4D4rI/YqQYRn1Nx0ywEkiOA+JLjxl16EkB8euZCVRDQigDi0yoOikmRAOJLESC3Q8AFAojPhZTd6RHxuZM1nUIgaQKIL2l03KghAcSnYSiUBAHdCCA+3RKhnlQIIL5U6HEvBBwhgPgcCdqRNrUT3+DgoNTW1kp6errk5eVJU1OT/+cPX1u3bpUrr7xSqqur5YILLthrVI2NjdLQ0OBInLQJgWgIIL5ouDJrPAS0E19paam0trZKfn6+1NTUSFlZmVRUVEzRGR8fl0suuUQOP/xwf8yyZcsQXzx7h1UdIoD4HArbgVa1Et/ExIQUFhbK8PCwj76zs1N6enr8U99Hr9WrV8u8efMQnwOblBbjJ4D44s+ACsIjoJX4RkZGpLy8XAYGBvwO+/r6pKWlRdrb2yMX30Mb/ydbLgjYQGBp6YJQ20B8oeJkspgJaCU+72XMoqIiGRoa8rF0dXVJd3e3NDc3K4nPE2V/f/9uYysrKwMxL1+3KXAMAyBgCoE11cWhlsrzESpOJouZgOrzkUgkJDc3d5dq0xLeT0O+SkpKpKOjQ3JycqS+vl6Ki4ulqqpKRkdHJSsrS9LS0vwVw36pk/+jDTlIpouVgOr/0aoWyfOhSopxJhBQfT62bdsmRx99dPTi805sdXV1kp2dLZmZmdLW1iYZGRlSUFAgvb298uabb8q3vvUteeGFF/yfH3nkkbJhwwb52Mc+tkfequ/q5ME2YbtSoyoB1QdbdT6eD1VSjDOBgOrzMWvim4Q2Njbmiy/VC/GlSpD7TSSg+mCr9ob4VEkxzgQCqs/HrIsvLHiILyySzGMSAdUHW7UnxKdKinEmEFB9PhCfCWlSIwT+T0D1wVYFhvhUSTHOBAKqzwfiMyFNaoQA4mMPQCCQAOL7PyL+jzZwrzDAIAKqD7ZqSzwfqqQYZwIB1eeDE58JaVIjBDjxsQcgEEgA8XHiC9wkDDCPgOqDrdoZJz5VUowzgYDq88GJz4Q0qRECnPjYAxAIJID4OPEFbhIGmEdA9cFW7YwTnyopxplAQPX54MRnQprUCAFOfOwBCAQSQHyc+AI3CQPMI6D6YKt2xolPlRTjTCCg+nxw4jMhTWqEACc+9gAEAgkgPk58gZuEAeYRUH2wVTvjxKdKinEmEFB9PjjxmZAmNUKAEx97AAKBBBAfJ77ATcIA8wioPtiqnXHiUyXFOBMIqD4fnPhMSJMaIcCJjz0AgUACiI8TX+AmYYB5BFQfbNXOOPGpkmKcCQRUnw9OfCakSY0Q4MTHHoBAIAHEx4kvcJMwwDwCqg+2amec+FRJMc4EAqrPByc+E9KkRghw4mMPQCCQAOLjxBe4SRhgHgHVB1u1M058qqQYZwIB1eeDE58JaVIjBDjxsQcgEEgA8XHiC9wkDDCPgOqDrdoZJz5VUowzgYDq88GJz4Q0qRECnPjYAxAIJID4OPEFbhIGmEdA9cFW7YwTnyopxplAQPX54MRnQprUCAFOfOwBCAQSQHyc+AI3CQPMI6D6YKt2xolPlRTjTCCg+nxw4jMhTWqEACc+9gAEAgkgPk58gZuEAeYRUH2wVTvjxKdKinEmEFB9PjjxmZAmNUKAEx97AAKBBBAfJ77ATcIA8wioPtiqnXHiUyXFOBMIqD4fnPhMSJMaIcCJjz0AgUACiI8TX+AmYYB5BFQfbNXOOPGpkmKcCQRUnw9OfCakSY0Q4MTHHoBAIAHEx4kvcJMwwDwCqg+2amec+FRJMc4EAqrPByc+E9KkRghw4mMPQCCQAOLjxBe4SRhgHgHVB1u1M058qqQYZwIB1eeDE58JaVIjBDjxsQcgEEhAO/ENDg5KbW2tpKenS15enjQ1Nfl/nrwSiYQ0NDTIX//6V5mYmJAf/vCHUlJSMm2jjY2N/vigi/+jDSLE35tEQPXBVu2J50OVFONMIKD6fMzaia+0tFRaW1slPz9fampqpKysTCoqKqZY9vb2yj333CP33nuvbN++Xc4++2zZvHkz4jNht1HjrBFQfbBVC0J8qqQYZwIB1edjVsTnneAKCwtleHjYZ9fZ2Sk9PT3+qW/yuuGGG2TBggVywQUX+D86/vjj/TEf//jH98ibE58J25Aawyag+mCrrov4VEkxzgQCqs/HrIhvZGREysvLZWBgwGfX19cnLS0t0t7ePsXyqquu8secddZZ/s9OOeUUf4z3sqg3vr+/fxfu+++/v7z77rsmZEGNEIAABCCgEYFPf/rT8qUvfWmXitIS3i/cQrzGx8elqKhIhoaG/Fm7urqku7tbmpubp1b53ve+JwsXLpTzzz/f/9miRYv8MYccckiIlTBVVARUT+BRrc+8ENCZAM+Hzun8r7bQxedN6r1RpaOjQ3JycqS+vl6Ki4ulqqpKRkdHJSsry5fhhg0bZO3atfLaa6/5J74tW7boT4sKfQI82GwECExPgOdD/90Rifi8lyrr6uokOztbMjMzpa2tTTIyMqSgoEC8N7YceeSRctFFF8lbb73li+8HP/iBfPGLX9SfFhUiPvYABAIIID79t0gk4ptse2xszBffdJf39/vtt5+kpaXpT4oKpwjwYLMZIMCJz+Q9EKn4TAZD7dMT8N6AtHjxYhBBAAJ7IMDzof+2QHz6Z0SFEIAABCAQIgHEFyJMF6Z67733xHuJ+qCDDnKhXXqEwIwI8HzMCFdsgxFfbOjNW/jqq6+W3/3ud1JZWen/u5g//elP8t3vfte8RqgYAhEQ4PmIAGpEUyK+iMDaNu0TTzwhf/jDH+TSSy+VO+64Q2677TY59dRT/X+ass8++9jWLv1AYEYEeD5mhCv2wYgv9gjMKGD9+vXivYzjfdiAJ77bb79dvvGNb8jdd98t3ifrcEHAZQI8H2alj/jMyiu2ar1/b3nGGWfImWee6X+guPfpPN7nsXoPPBcEXCfA82HWDkB8ZuUVa7XeN2l4n7n66quv+h9GcOGFF8q+++4ba00sDgFdCPB86JJEcB2IL5gRI/5PwDvdfeUrX/G/R3HdunVy3nnnyYknnggfCDhPwJOe9zvwD1/exyBfcsklzrPREQDi0zEVDWvyZLd69Wr/M1i9z171Pmjc+6qpRx55hE/e0TAvSppdAn//+9/ll7/85dSi3of0e1/R9tBDD81uIaymRADxKWFi0AMPPOBDOPbYY/1/wvDggw/K5Zdf7n9g9cEHHwwgCEDgIwSuuOIK/81ffCSjflsD8emXiZYVPf3003LTTTfJ3Llz/X/D573RZenSpeK9jXvOnDla1kxREJgtAh988IF4X8k2ee3YscP/tYD3BdsHHHDAbJXBOooEEJ8iKIaJ/OY3v5E333xTvvnNb/pfNPzKK69MfZkwfCDgMgHv8zkvu+yyKQTeh/N7X8W2YsUKl7Fo2zvi0zYaPQp7/fXX5cknn5y2mLPOOkuPQqkCAjES8E543olv3rx5MVbB0qoEEJ8qKUfHeb+0X7NmzbTde/+YnQsCrhPw3tHpfQ/pjTfe6DoKI/pHfEbEpE+R3qe3vP/+++L9TmPVqlX+lwinp6frUyCVQCAGAt7/IH71q1+VvLw8OeKII6Yq4H8MYwhDYUnEpwCJISLvvvuunHbaabJt2zb/o8u83/V9+ctf9t/dyQUBlwm8/PLL/js3vQ9t/+g7OL03gHHpRwDx6ZeJlhVt2LBBvH+ke/zxx8uWLVv8jy7zPq9zby+DatkIRUEgZAInn3yyPPbYYyHPynRREkB8UdK1aG7vU1veeOMN/5NafvWrX8n3v/99ufjii6WlpUW8d7BxQcBVAojPvOQRn3mZxVLx6OiofP7zn5fe3l7/3/Hl5uaK92/7/va3v/Hv+GJJhEV1IeB9bu107+b0/pkDl34EEJ9+mWhbkfeGFu93GG+99Zb8+c9/ls9+9rNy2GGHaVsvhUFgNgh84QtfkNbW1j0u5UmRSz8CiE+/TLSryPuIsltvvdWvy/voMu/3fPPnz9euTgqCQBwEeKkzDuqprYn4UuPnxN0ffrBra2v9b2U44YQTnOidJiEQRGDt2rX+59ZymUMA8ZmTVWyVIr7Y0LMwBCAQAQHEFwFU26ZEfLYlSj8QcJsA4nM7f6XuvV/QT34axXPPPee/oeWggw7y7+XfLykhZBAEIKARAcSnURi6lvLss8/u8pUrH65z4cKFupZNXRCAAAT2SADxsTEgAAEIQMApAojPqbhpFgIQgAAEEB97AAIQgAAEnCKA+JyKm2YhAAEIQADxsQcgAAEIQMApAojPqbhp1hYC3hecvvLKK/6XAc+ZM0fefvtt/xszPve5z/lfiMoFAQhMTwDxsTsgYCCB/v5+/yuimpub5aqrrhLvo+R+9rOf+d+W8clPftLAjigZArNHAPHNHmtWgkCoBK699lr/WwHa2trknHPO8b8Y2BMgFwQgsHcCiI8dAgFDCezcuVM+85nPiPcBA8XFxfLkk0/y3YiGZknZs0sA8c0ub1aDQGgExsfH/e9E9F7e9L4TbuPGjf73JXJBAAKc+NgDELCSwMqVK+XHP/6xNDU1SXV1tdx9991yxRVXWNkrTUEgTAKc+MKkyVwQmCUCW7ZskUWLFsnq1avluuuuk0suuUTWr18vW7dulezs7FmqgmUgYCYBxGdmblTtMIGJiQn/d3qJREIGBgZk7ty58sYbb4j3LRonnXSSPPDAAw7ToXUIBBNAfMGMGAEBCEAAAhYRQHwWhUkrEIAABCAQTADxBTNiBAQgAAEIWEQA8VkUJq1AAAIQgEAwAcQXzIgREIAABCBgEQHEZ1GYtAIBCEAAAsEEEF8wI0ZAAAIQgIBFBP4L/wkASpFjhnAAAAAASUVORK5CYII=\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"distributionOverPlots :: MonadDistribution m => m VegaLiteLab -- the type of plots\\n\",\n    \"distributionOverPlots = plot . fmap (first (pack . show)) . toEmpirical <$> replicateM 10 model\\n\",\n    \"\\n\",\n    \"sampler distributionOverPlots\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[(True,0.7),(False,0.3)]\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<style>/* Styles used for the Hoogle display in the pager */\\n\",\n       \".hoogle-doc {\\n\",\n       \"display: block;\\n\",\n       \"padding-bottom: 1.3em;\\n\",\n       \"padding-left: 0.4em;\\n\",\n       \"}\\n\",\n       \".hoogle-code {\\n\",\n       \"display: block;\\n\",\n       \"font-family: monospace;\\n\",\n       \"white-space: pre;\\n\",\n       \"}\\n\",\n       \".hoogle-text {\\n\",\n       \"display: block;\\n\",\n       \"}\\n\",\n       \".hoogle-name {\\n\",\n       \"color: green;\\n\",\n       \"font-weight: bold;\\n\",\n       \"}\\n\",\n       \".hoogle-head {\\n\",\n       \"font-weight: bold;\\n\",\n       \"}\\n\",\n       \".hoogle-sub {\\n\",\n       \"display: block;\\n\",\n       \"margin-left: 0.4em;\\n\",\n       \"}\\n\",\n       \".hoogle-package {\\n\",\n       \"font-weight: bold;\\n\",\n       \"font-style: italic;\\n\",\n       \"}\\n\",\n       \".hoogle-module {\\n\",\n       \"font-weight: bold;\\n\",\n       \"}\\n\",\n       \".hoogle-class {\\n\",\n       \"font-weight: bold;\\n\",\n       \"}\\n\",\n       \".get-type {\\n\",\n       \"color: green;\\n\",\n       \"font-weight: bold;\\n\",\n       \"font-family: monospace;\\n\",\n       \"display: block;\\n\",\n       \"white-space: pre-wrap;\\n\",\n       \"}\\n\",\n       \".show-type {\\n\",\n       \"color: green;\\n\",\n       \"font-weight: bold;\\n\",\n       \"font-family: monospace;\\n\",\n       \"margin-left: 1em;\\n\",\n       \"}\\n\",\n       \".mono {\\n\",\n       \"font-family: monospace;\\n\",\n       \"display: block;\\n\",\n       \"}\\n\",\n       \".err-msg {\\n\",\n       \"color: red;\\n\",\n       \"font-style: italic;\\n\",\n       \"font-family: monospace;\\n\",\n       \"white-space: pre;\\n\",\n       \"display: block;\\n\",\n       \"}\\n\",\n       \"#unshowable {\\n\",\n       \"color: red;\\n\",\n       \"font-weight: bold;\\n\",\n       \"}\\n\",\n       \".err-msg.in.collapse {\\n\",\n       \"padding-top: 0.7em;\\n\",\n       \"}\\n\",\n       \".highlight-code {\\n\",\n       \"white-space: pre;\\n\",\n       \"font-family: monospace;\\n\",\n       \"}\\n\",\n       \".suggestion-warning { \\n\",\n       \"font-weight: bold;\\n\",\n       \"color: rgb(200, 130, 0);\\n\",\n       \"}\\n\",\n       \".suggestion-error { \\n\",\n       \"font-weight: bold;\\n\",\n       \"color: red;\\n\",\n       \"}\\n\",\n       \".suggestion-name {\\n\",\n       \"font-weight: bold;\\n\",\n       \"}\\n\",\n       \"</style><span class='get-type'>toEmpirical <$> replicateM 10 model :: forall {f :: * -> *} {b}. (Fractional b, Ord b, MonadDistribution f) => f [(Bool, b)]</span>\"\n      ],\n      \"text/plain\": [\n       \"toEmpirical <$> replicateM 10 model :: forall {f :: * -> *} {b}. (Fractional b, Ord b, MonadDistribution f) => f [(Bool, b)]\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"sampler $ toEmpirical <$> replicateM 10 model\\n\",\n    \":t toEmpirical <$> replicateM 10 model\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"tags\": []\n   },\n   \"source\": [\n    \"## Continuous distributions\\n\",\n    \"\\n\",\n    \"Consider normal distribution:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model2 :: MonadDistribution m => m Double\\n\",\n    \"model2 = normal 0 1\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Sampling is no different to before:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"-4.521959900261888e-2\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"sampler model2\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"And as before, to obtain multiple draws:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[-0.6216690402229845,-0.47608570111519477,0.4670018245275328,-0.731326261945339,1.8293339635456327,-0.31691850879028954,-0.1522034252473077,-0.4871801689979811,0.4312750347264313,0.6641920998609923]\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"multipleDraws2 :: MonadDistribution m => m [Double]\\n\",\n    \"multipleDraws2 = replicateM 10 model2\\n\",\n    \"\\n\",\n    \"draws2 <- sampler multipleDraws2\\n\",\n    \"\\n\",\n    \"draws2\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We'd like to view a histogram of samples, which in the limit of many samples should tend to the PDF of a normal distribution.\\n\",\n    \"\\n\",\n    \"Again, we could generate a histogram from a drawn list of samples:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"X\": -4.306541355732829,\n          \"Y\": 2\n         },\n         {\n          \"X\": -4.217784111853617,\n          \"Y\": 0\n         },\n         {\n          \"X\": -4.129026867974405,\n          \"Y\": 2\n         },\n         {\n          \"X\": -4.040269624095192,\n          \"Y\": 1\n         },\n         {\n          \"X\": -3.9515123802159797,\n          \"Y\": 1\n         },\n         {\n          \"X\": -3.8627551363367676,\n          \"Y\": 3\n         },\n         {\n          \"X\": -3.773997892457555,\n          \"Y\": 1\n         },\n         {\n          \"X\": -3.6852406485783424,\n          \"Y\": 5\n         },\n         {\n          \"X\": -3.5964834046991303,\n          \"Y\": 4\n         },\n         {\n          \"X\": -3.5077261608199177,\n          \"Y\": 5\n         },\n         {\n          \"X\": -3.418968916940705,\n          \"Y\": 6\n         },\n         {\n          \"X\": -3.330211673061493,\n          \"Y\": 14\n         },\n         {\n          \"X\": -3.2414544291822804,\n          \"Y\": 19\n         },\n         {\n          \"X\": -3.152697185303068,\n          \"Y\": 25\n         },\n         {\n          \"X\": -3.0639399414238557,\n          \"Y\": 33\n         },\n         {\n          \"X\": -2.975182697544643,\n          \"Y\": 40\n         },\n         {\n          \"X\": -2.8864254536654306,\n          \"Y\": 46\n         },\n         {\n          \"X\": -2.7976682097862184,\n          \"Y\": 77\n         },\n         {\n          \"X\": -2.7089109659070063,\n          \"Y\": 101\n         },\n         {\n          \"X\": -2.6201537220277933,\n          \"Y\": 123\n         },\n         {\n          \"X\": -2.531396478148581,\n          \"Y\": 158\n         },\n         {\n          \"X\": -2.442639234269369,\n          \"Y\": 182\n         },\n         {\n          \"X\": -2.353881990390156,\n          \"Y\": 194\n         },\n         {\n          \"X\": -2.2651247465109443,\n          \"Y\": 277\n         },\n         {\n          \"X\": -2.1763675026317317,\n          \"Y\": 357\n         },\n         {\n          \"X\": -2.087610258752519,\n          \"Y\": 390\n         },\n         {\n          \"X\": -1.998853014873307,\n          \"Y\": 491\n         },\n         {\n          \"X\": -1.9100957709940944,\n          \"Y\": 577\n         },\n         {\n          \"X\": -1.8213385271148819,\n          \"Y\": 705\n         },\n         {\n          \"X\": -1.7325812832356697,\n          \"Y\": 776\n         },\n         {\n          \"X\": -1.6438240393564572,\n          \"Y\": 920\n         },\n         {\n          \"X\": -1.555066795477245,\n          \"Y\": 1079\n         },\n         {\n          \"X\": -1.4663095515980324,\n          \"Y\": 1244\n         },\n         {\n          \"X\": -1.3775523077188199,\n          \"Y\": 1382\n         },\n         {\n          \"X\": -1.2887950638396077,\n          \"Y\": 1574\n         },\n         {\n          \"X\": -1.2000378199603952,\n          \"Y\": 1733\n         },\n         {\n          \"X\": -1.111280576081183,\n          \"Y\": 1915\n         },\n         {\n          \"X\": -1.0225233322019704,\n          \"Y\": 2145\n         },\n         {\n          \"X\": -0.9337660883227579,\n          \"Y\": 2254\n         },\n         {\n          \"X\": -0.8450088444435457,\n          \"Y\": 2408\n         },\n         {\n          \"X\": -0.7562516005643332,\n          \"Y\": 2597\n         },\n         {\n          \"X\": -0.6674943566851206,\n          \"Y\": 2891\n         },\n         {\n          \"X\": -0.5787371128059084,\n          \"Y\": 2999\n         },\n         {\n          \"X\": -0.48997986892669587,\n          \"Y\": 3226\n         },\n         {\n          \"X\": -0.4012226250474833,\n          \"Y\": 3222\n         },\n         {\n          \"X\": -0.3124653811682707,\n          \"Y\": 3378\n         },\n         {\n          \"X\": -0.22370813728905858,\n          \"Y\": 3471\n         },\n         {\n          \"X\": -0.13495089340984556,\n          \"Y\": 3423\n         },\n         {\n          \"X\": -0.04619364953063343,\n          \"Y\": 3501\n         },\n         {\n          \"X\": 0.042563594348578704,\n          \"Y\": 3515\n         },\n         {\n          \"X\": 0.13132083822779173,\n          \"Y\": 3579\n         },\n         {\n          \"X\": 0.22007808210700386,\n          \"Y\": 3360\n         },\n         {\n          \"X\": 0.308835325986216,\n          \"Y\": 3356\n         },\n         {\n          \"X\": 0.397592569865429,\n          \"Y\": 3313\n         },\n         {\n          \"X\": 0.48634981374464115,\n          \"Y\": 3107\n         },\n         {\n          \"X\": 0.5751070576238533,\n          \"Y\": 3060\n         },\n         {\n          \"X\": 0.6638643015030663,\n          \"Y\": 2801\n         },\n         {\n          \"X\": 0.7526215453822784,\n          \"Y\": 2607\n         },\n         {\n          \"X\": 0.8413787892614906,\n          \"Y\": 2564\n         },\n         {\n          \"X\": 0.9301360331407027,\n          \"Y\": 2189\n         },\n         {\n          \"X\": 1.0188932770199157,\n          \"Y\": 2099\n         },\n         {\n          \"X\": 1.1076505208991279,\n          \"Y\": 1908\n         },\n         {\n          \"X\": 1.19640776477834,\n          \"Y\": 1762\n         },\n         {\n          \"X\": 1.285165008657553,\n          \"Y\": 1609\n         },\n         {\n          \"X\": 1.3739222525367651,\n          \"Y\": 1419\n         },\n         {\n          \"X\": 1.4626794964159773,\n          \"Y\": 1220\n         },\n         {\n          \"X\": 1.5514367402951903,\n          \"Y\": 1053\n         },\n         {\n          \"X\": 1.6401939841744024,\n          \"Y\": 900\n         },\n         {\n          \"X\": 1.7289512280536146,\n          \"Y\": 790\n         },\n         {\n          \"X\": 1.8177084719328276,\n          \"Y\": 704\n         },\n         {\n          \"X\": 1.9064657158120397,\n          \"Y\": 536\n         },\n         {\n          \"X\": 1.9952229596912519,\n          \"Y\": 487\n         },\n         {\n          \"X\": 2.083980203570464,\n          \"Y\": 426\n         },\n         {\n          \"X\": 2.172737447449677,\n          \"Y\": 311\n         },\n         {\n          \"X\": 2.261494691328889,\n          \"Y\": 282\n         },\n         {\n          \"X\": 2.3502519352081013,\n          \"Y\": 218\n         },\n         {\n          \"X\": 2.4390091790873143,\n          \"Y\": 169\n         },\n         {\n          \"X\": 2.5277664229665264,\n          \"Y\": 161\n         },\n         {\n          \"X\": 2.6165236668457386,\n          \"Y\": 125\n         },\n         {\n          \"X\": 2.7052809107249516,\n          \"Y\": 88\n         },\n         {\n          \"X\": 2.7940381546041637,\n          \"Y\": 82\n         },\n         {\n          \"X\": 2.882795398483376,\n          \"Y\": 52\n         },\n         {\n          \"X\": 2.971552642362589,\n          \"Y\": 46\n         },\n         {\n          \"X\": 3.060309886241801,\n          \"Y\": 28\n         },\n         {\n          \"X\": 3.149067130121013,\n          \"Y\": 22\n         },\n         {\n          \"X\": 3.237824374000226,\n          \"Y\": 18\n         },\n         {\n          \"X\": 3.3265816178794383,\n          \"Y\": 17\n         },\n         {\n          \"X\": 3.4153388617586504,\n          \"Y\": 11\n         },\n         {\n          \"X\": 3.5040961056378634,\n          \"Y\": 7\n         },\n         {\n          \"X\": 3.5928533495170756,\n          \"Y\": 7\n         },\n         {\n          \"X\": 3.681610593396287,\n          \"Y\": 5\n         },\n         {\n          \"X\": 3.7703678372755,\n          \"Y\": 3\n         },\n         {\n          \"X\": 3.859125081154711,\n          \"Y\": 0\n         },\n         {\n          \"X\": 3.947882325033924,\n          \"Y\": 2\n         },\n         {\n          \"X\": 4.036639568913137,\n          \"Y\": 3\n         },\n         {\n          \"X\": 4.125396812792348,\n          \"Y\": 0\n         },\n         {\n          \"X\": 4.214154056671561,\n          \"Y\": 0\n         },\n         {\n          \"X\": 4.302911300550774,\n          \"Y\": 0\n         },\n         {\n          \"X\": 4.391668544429986,\n          \"Y\": 1\n         },\n         {\n          \"X\": 4.480425788309199,\n          \"Y\": 0\n         }\n        ]\n       },\n       \"encoding\": {\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"bar\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"constWeight = 1 :: Log Double\\n\",\n    \"\\n\",\n    \"samples <- sampler $  replicateM 100000 ((,constWeight) <$> model2)\\n\",\n    \"plot . histogramToList . histogram 100 $ samples\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Note, that the type of histogram is:\\n\",\n    \"```haskell\\n\",\n    \"histogram :: Int -> [(Double, Log Double)] -> Histogram\\n\",\n    \"```\\n\",\n    \"because it is used in more general context for weighted samples (see next chapter).\\\\\\n\",\n    \"That is why we need to introduce a constant weight for our simple example by mapping samples to a pair (value, score) with `(,constWeight) <$> `.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[0.40485488235651435,1.1348389537359198,-1.092972060021726]\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"sampler $ replicateM 3 model2\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"but it's nicer to apply a `histogram` function to multiple draws to define a distribution over histograms from which we'll sample.\\\\\\n\",\n    \"In that approach a distribution is composed and transformed first and the sampling is clearly split from the distribution definition.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"X\": -4.118259020372659,\n          \"Y\": 1\n         },\n         {\n          \"X\": -4.031956574996215,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.9456541296197702,\n          \"Y\": 1\n         },\n         {\n          \"X\": -3.8593516842433253,\n          \"Y\": 4\n         },\n         {\n          \"X\": -3.773049238866881,\n          \"Y\": 3\n         },\n         {\n          \"X\": -3.6867467934904363,\n          \"Y\": 4\n         },\n         {\n          \"X\": -3.6004443481139914,\n          \"Y\": 8\n         },\n         {\n          \"X\": -3.514141902737547,\n          \"Y\": 10\n         },\n         {\n          \"X\": -3.4278394573611024,\n          \"Y\": 6\n         },\n         {\n          \"X\": -3.3415370119846575,\n          \"Y\": 12\n         },\n         {\n          \"X\": -3.255234566608213,\n          \"Y\": 18\n         },\n         {\n          \"X\": -3.1689321212317685,\n          \"Y\": 24\n         },\n         {\n          \"X\": -3.0826296758553235,\n          \"Y\": 33\n         },\n         {\n          \"X\": -2.9963272304788795,\n          \"Y\": 37\n         },\n         {\n          \"X\": -2.9100247851024346,\n          \"Y\": 52\n         },\n         {\n          \"X\": -2.82372233972599,\n          \"Y\": 78\n         },\n         {\n          \"X\": -2.7374198943495456,\n          \"Y\": 83\n         },\n         {\n          \"X\": -2.6511174489731006,\n          \"Y\": 123\n         },\n         {\n          \"X\": -2.564815003596656,\n          \"Y\": 150\n         },\n         {\n          \"X\": -2.4785125582202117,\n          \"Y\": 168\n         },\n         {\n          \"X\": -2.3922101128437667,\n          \"Y\": 183\n         },\n         {\n          \"X\": -2.3059076674673222,\n          \"Y\": 237\n         },\n         {\n          \"X\": -2.2196052220908777,\n          \"Y\": 292\n         },\n         {\n          \"X\": -2.133302776714433,\n          \"Y\": 372\n         },\n         {\n          \"X\": -2.047000331337988,\n          \"Y\": 409\n         },\n         {\n          \"X\": -1.9606978859615434,\n          \"Y\": 529\n         },\n         {\n          \"X\": -1.8743954405850989,\n          \"Y\": 608\n         },\n         {\n          \"X\": -1.7880929952086544,\n          \"Y\": 669\n         },\n         {\n          \"X\": -1.7017905498322095,\n          \"Y\": 800\n         },\n         {\n          \"X\": -1.615488104455765,\n          \"Y\": 945\n         },\n         {\n          \"X\": -1.5291856590793205,\n          \"Y\": 1048\n         },\n         {\n          \"X\": -1.4428832137028755,\n          \"Y\": 1211\n         },\n         {\n          \"X\": -1.356580768326431,\n          \"Y\": 1314\n         },\n         {\n          \"X\": -1.2702783229499865,\n          \"Y\": 1558\n         },\n         {\n          \"X\": -1.1839758775735416,\n          \"Y\": 1742\n         },\n         {\n          \"X\": -1.0976734321970971,\n          \"Y\": 1866\n         },\n         {\n          \"X\": -1.0113709868206526,\n          \"Y\": 2032\n         },\n         {\n          \"X\": -0.9250685414442077,\n          \"Y\": 2263\n         },\n         {\n          \"X\": -0.8387660960677632,\n          \"Y\": 2402\n         },\n         {\n          \"X\": -0.7524636506913187,\n          \"Y\": 2570\n         },\n         {\n          \"X\": -0.6661612053148742,\n          \"Y\": 2739\n         },\n         {\n          \"X\": -0.5798587599384293,\n          \"Y\": 2982\n         },\n         {\n          \"X\": -0.4935563145619848,\n          \"Y\": 3109\n         },\n         {\n          \"X\": -0.4072538691855403,\n          \"Y\": 3251\n         },\n         {\n          \"X\": -0.32095142380909536,\n          \"Y\": 3365\n         },\n         {\n          \"X\": -0.23464897843265087,\n          \"Y\": 3330\n         },\n         {\n          \"X\": -0.14834653305620638,\n          \"Y\": 3397\n         },\n         {\n          \"X\": -0.06204408767976144,\n          \"Y\": 3386\n         },\n         {\n          \"X\": 0.024258357696683497,\n          \"Y\": 3396\n         },\n         {\n          \"X\": 0.11056080307312754,\n          \"Y\": 3450\n         },\n         {\n          \"X\": 0.19686324844957248,\n          \"Y\": 3272\n         },\n         {\n          \"X\": 0.28316569382601653,\n          \"Y\": 3240\n         },\n         {\n          \"X\": 0.36946813920246147,\n          \"Y\": 3233\n         },\n         {\n          \"X\": 0.4557705845789064,\n          \"Y\": 3054\n         },\n         {\n          \"X\": 0.5420730299553504,\n          \"Y\": 3001\n         },\n         {\n          \"X\": 0.6283754753317954,\n          \"Y\": 2743\n         },\n         {\n          \"X\": 0.7146779207082403,\n          \"Y\": 2671\n         },\n         {\n          \"X\": 0.8009803660846844,\n          \"Y\": 2507\n         },\n         {\n          \"X\": 0.8872828114611293,\n          \"Y\": 2346\n         },\n         {\n          \"X\": 0.9735852568375742,\n          \"Y\": 2081\n         },\n         {\n          \"X\": 1.0598877022140183,\n          \"Y\": 2007\n         },\n         {\n          \"X\": 1.1461901475904632,\n          \"Y\": 1781\n         },\n         {\n          \"X\": 1.2324925929669082,\n          \"Y\": 1612\n         },\n         {\n          \"X\": 1.3187950383433522,\n          \"Y\": 1502\n         },\n         {\n          \"X\": 1.4050974837197971,\n          \"Y\": 1285\n         },\n         {\n          \"X\": 1.491399929096242,\n          \"Y\": 1133\n         },\n         {\n          \"X\": 1.5777023744726861,\n          \"Y\": 990\n         },\n         {\n          \"X\": 1.664004819849131,\n          \"Y\": 843\n         },\n         {\n          \"X\": 1.750307265225576,\n          \"Y\": 766\n         },\n         {\n          \"X\": 1.83660971060202,\n          \"Y\": 655\n         },\n         {\n          \"X\": 1.922912155978465,\n          \"Y\": 536\n         },\n         {\n          \"X\": 2.00921460135491,\n          \"Y\": 463\n         },\n         {\n          \"X\": 2.095517046731354,\n          \"Y\": 361\n         },\n         {\n          \"X\": 2.181819492107799,\n          \"Y\": 336\n         },\n         {\n          \"X\": 2.268121937484244,\n          \"Y\": 275\n         },\n         {\n          \"X\": 2.354424382860688,\n          \"Y\": 209\n         },\n         {\n          \"X\": 2.440726828237133,\n          \"Y\": 159\n         },\n         {\n          \"X\": 2.5270292736135778,\n          \"Y\": 143\n         },\n         {\n          \"X\": 2.613331718990022,\n          \"Y\": 127\n         },\n         {\n          \"X\": 2.6996341643664667,\n          \"Y\": 90\n         },\n         {\n          \"X\": 2.785936609742911,\n          \"Y\": 83\n         },\n         {\n          \"X\": 2.8722390551193557,\n          \"Y\": 59\n         },\n         {\n          \"X\": 2.9585415004958007,\n          \"Y\": 40\n         },\n         {\n          \"X\": 3.0448439458722447,\n          \"Y\": 33\n         },\n         {\n          \"X\": 3.1311463912486897,\n          \"Y\": 24\n         },\n         {\n          \"X\": 3.2174488366251346,\n          \"Y\": 11\n         },\n         {\n          \"X\": 3.3037512820015786,\n          \"Y\": 15\n         },\n         {\n          \"X\": 3.3900537273780236,\n          \"Y\": 11\n         },\n         {\n          \"X\": 3.4763561727544685,\n          \"Y\": 9\n         },\n         {\n          \"X\": 3.5626586181309126,\n          \"Y\": 6\n         },\n         {\n          \"X\": 3.6489610635073575,\n          \"Y\": 4\n         },\n         {\n          \"X\": 3.7352635088838024,\n          \"Y\": 3\n         },\n         {\n          \"X\": 3.8215659542602465,\n          \"Y\": 5\n         },\n         {\n          \"X\": 3.9078683996366905,\n          \"Y\": 1\n         },\n         {\n          \"X\": 3.9941708450131355,\n          \"Y\": 1\n         },\n         {\n          \"X\": 4.08047329038958,\n          \"Y\": 2\n         },\n         {\n          \"X\": 4.166775735766025,\n          \"Y\": 0\n         },\n         {\n          \"X\": 4.2530781811424685,\n          \"Y\": 1\n         },\n         {\n          \"X\": 4.339380626518913,\n          \"Y\": 0\n         },\n         {\n          \"X\": 4.425683071895358,\n          \"Y\": 0\n         }\n        ]\n       },\n       \"encoding\": {\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"bar\",\n       \"width\": 400\n      },\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAcsAAAG/CAYAAAA3sfyQAAAAAXNSR0IArs4c6QAAIABJREFUeF7tnXt81cWZ/58kXELKzYBoBAoFklRBCghBsYhctvZHKaVdwSJV6hZ26yILC1iKSLtuW8DWtgpVVi4/+QFbtOC2dBEKtXaXkroiCEpVEBW8xMIalXsEk5zfayZwcpKcy8w8M9/znXM+55/WwzzznXnP55nPeeb7zTk5kUgkQniBAAiAAAiAAAgkJJADs4Q6QAAEQAAEQCA5AZglFAICIAACIAACKQjALCEREAABEAABEIBZQgMgAAIgAAIgwCOAypLHD9EgAAIgAAJZQABmmQWLjCmCAAiAAAjwCDgzy61bt9LixYupRYsW1K5dO1q7di21atUqOtoVK1bQypUrqU2bNvK9O+64gyZNmkT79++nmTNnUl5eHhUXF9OSJUsoNzeX5s6dS3v37qXq6mrZ7+DBg3kzRzQIgAAIgAAIKBJwZpY33XQTPfHEE9S+fXu68847aciQIXTbbbdFh7VgwQK6+uqracKECQ2GOnToUFq1ahWVlJTQtGnTaMSIEdJsV69eTevWraOKigoaO3Ys7dmzR3GKaAYCIAACIAACPALOzPLisEQlOH78eLrrrrto5MiR0dFOnz6d+vXrRwUFBdSzZ08qKyuTVWPv3r3p4MGDst3mzZtp+/bt0nBLS0tl5SleAwcOlO8XFhbyZo9oEAABEAABEFAg4NQsf/nLX9L8+fPpxhtvlNWiOE69+BLvv/POOzRq1Chav369NNLbb7+dRo8eTbt375bNdu7cScuWLZOVpXh/zJgx8n0RI94Xx7SiTXl5eYOpXnrppfKaeIEACIAACICADgHxpXaigGv8cmqW4mLiwnPmzKGioiL5v/FelZWVNGzYMHlPsm/fvnTgwAHZbMuWLSTufbZt25b69OlDEydOlO+LKlS836FDh7j93X///fIeZ1hfb775JvXo0SOswyOMj7c04Ad+PAK8aOjPDT8nZnn+/HlZBYpjVPGAz6OPPkqHDh2in/zkJ3Tq1Clpfg8++CCNGzeOunfvLk1y9uzZ9Mwzz8gHdzZu3Ehdu3aV5jpo0CBq3bo1bdq0iZYvX07CWEVluW/fvoREYJZuxMLr1V40NgMeS/ADPx4BXrSv+nNilgLlQw89RI8//jh16dKF3n77bfmwjzA9YX6HDx+mbdu20T333EO9evWiI0eOyGPVAQMGyCPVWbNmyUpUPD27Zs0a+WTs5MmT6fjx49IsFy5cSMOHD4dZ8jSbMNpXMTvCod0t+GkjaxAAfuDHI8CLTqQ/Z2YphltTU0NnzpyRleTF17x582jRokXyP8UR7cmTJ+U9ycavqqqqBn9qIv5dvJefn085OTlJaaCydCMWXq/2orGZ8liCH/jxCPCifdWfU7NsjLS2tlYex4onW12+YJY8ur6KmTdre9E+8Ot4WWc69O6HTSZ9TWmRPRCGPfnAD88cGC4ukbfPRARqluZ49SJhlnq8GrfGZpX5/IRZTvrhbxpMtO2nWtK/3zuON3kL0dAfDyL4ueEHs+RxNYqGmI2wRYPAj88PZmnOEPozZycifeUHs+Stu1G0r2IxmqyDIPDjQRX8YJbmDKE/c3YwSx4769E4huUhxWaQ+fxgluZrjPwwZwez5LGzHg2z5CHFZpD5/GCW5muM/DBnB7PksbMeDbPkIcVm4C+/V9+qjDv4K7t1pMoTZ+W/ib97Lux4OU1fsq1BWzzgo7buyA81Tola+coP9yx5624U7atYjCbrIAj8EkP9bflrtGLz3gYNxl5fQlPH9Kf/t+0l2vhfryYMhlmqiRX6U+MEs+RxCiQalSUPMzYDf/nFM8vc3BzKy82hmtoI1dZGYJa85fX2aU7mtK2F+7q/oLK0JgH1jnwVi/oM3bYEP73KUnU1UFmqkYL+1DihsuRxCiQalSUPMzaDcPP700tv06tvfdBkkH//5f4Ur7JUnQ3MUo0U8kONE8ySxymQaJglDzM2g3DzE2b54/XPNhjk0L6fpu9MvA5myVs6pWjkhxKmhI185YdjWN66G0X7KhajyToIynZ+MEsHotLoMtv1p4EqblNf+cEsuStvEO+rWAym6iQk2/nBLJ3ISrnTbNefMqgEDX3lB7PkrrxBvK9iMZiqk5Bs5xfPLK/o2IauKSmiN//6Eb18+H0j7rhnqYYt2/WnRilxK1/5wSy5K28Q76tYDKbqJCTb+cUzSxugYZZqFLNdf2qUYJZcToHE4wEfHmZsBuHmB7PkrQ83GvnBI+grP1SWvHU3ivZVLEaTdRCU7fxglg5EpdFltutPA1Xcpr7yg1lyV94g3lexGEzVSUi284NZOpGVcqfZrj9lUAka+soPZsldeYN4X8ViMFUnIdnOD2bpRFbKnWa7/pRBwSy5qNzH454ljzE2g3Dzg1ny1ocbjfzgEfSVHypL3robRfsqFqPJOgjKdn6uzDInh6igZfPoik0Z059GXfMZByuYvMtsX18ucPDjEUzED2bJ42oUDTEbYYsGZTs/V2bZeFVm3FwGs4wj1WzXHy97ydtfbYFZclfeIB7JZgAtJiQb+T229cUogXffP0m7Xn2PB1EhGmYZH1I26k9BLspNfOUHs1ReYnsNfRWLPQK8nrKR3+xHnqbX3mn6SyM8ksmjv/L5Eurf6/Joo2tKi1xeDicHluhmY35YQie7wTGsTZrMviBmHsBs5JcOs6xfpQi1/1Q+jRlSHH2ruEsHGlBSb6S8FW0YnY3rC342CfD6glny+FmNxmbAw5mN/NJrlk3X6747hsEseTJ2Fp2N+WETJszSJk1mXxAzD2A28oNZ8jRjMzob9Qd+RLhnaVMFin0h2RRBJWiWjfxgljzN2IzORv2BH8zSpgaU+0KyKaOK2zAb+cEseZqxGZ2N+gM/mKVNDSj3hWRTRgWzvEAAZsnTjM1o5C+Ppq/8cAzLW3ejaF/FYjRZB0HZyA9m6UBIhl1mo/4MUWXUh12YpU0VKPaFZFMEhXuWUQIwS55mbEYjf3k0feUHs+Stu1G0r2IxmqyDoGzkB7N0ICTDLrNRf4aoUFnaBOeiL/zqCI8qNoPw8YNZ8tbEZjTyg0fTV36oLHnrbhTtq1iMJusgKBv5wSwdCMmwy2zUnyEqVJY2wbnoC5Uljyo2g/Dxg1ny1sRmNPKDR9NXfqgseetuFO2rWIwm6yAoG/nBLB0IybDLbNSfISpUljbBuegLlSWPKjaD8PGDWfLWxGY08oNH01d+qCx5624U7atYjCbrICgb+P3l8Pt0+uy5KL3HfvcSvVd5ygFNsy7xReo9zMAFEJUN+eESYyJ+MEuX1BP0DTHzoGcDP2GW85Y/EwMqh4giPHAWo2GWMEtTOfmavzBL0xVnxPkqFsaUrYZmAz+YJczINGmyIT9M2ajEobJUoRRQG4iZBzob+MEsYZamWZIN+WHKRiUOZqlCKaA2EDMPdDbwg1nCLE2zJBvyw5SNShzMUoVSQG0gZh7obOAHs4RZmmZJNuSHKRuVOJilCqWA2kDMPNDZwC/sZrng9huof/Fl0YVs3iyXt6gx0dmwvtZgxekI/Hh0YZY8flajIWYezmzgF1azFM/jiudyY1/9iy+nf/27YbxFhVmCnzUCvI5gljx+VqOzYbO3CqxRZ9nAD2aJY1jTHMqG/DBloxIHs1ShFFAbiJkHOhv4wSxhlqZZkg35YcpGJS5ws9y6dSstXryYWrRoQe3ataO1a9dSq1atomM9fvw4TZ06lU6cOEH5+fm0cuVK6tSpE+3fv59mzpxJeXl5VFxcTEuWLKHc3FyaO3cu7d27l6qrq2W/gwcPTjhvfN2diiQSt0GypZ8fzBJmaapC5K8pubq4wM3ypptuoieeeILat29Pd955Jw0ZMoRuu+226Czuvfde6t69O02ZMoU2bNhAO3bsoKVLl9LQoUNp1apVVFJSQtOmTaMRI0ZIs129ejWtW7eOKioqaOzYsbRnzx6YJU8TCaORbDywNvjBLGGWpiq0oT/Ta6vE+To+59/gIyrB8ePH01133UUjR46Msrzhhhto/fr11LlzZzp9+rQ00xdeeIF69+5NBw8elO02b95M27dvl4ZbWlpKkyZNku8PHDhQvl9YWBh3bVBZqkgWlSWPklt+MEuYpak+fTUj0/najgu8shQT+OUvf0nz58+nG2+8UVaL4jj14uuqq66iXbt2UevWreVb3bp1o+eff55Gjx5Nu3fvlu/t3LmTli1bJitL8f6YMWPk+6NGjZLvi2Na0aa8vLwJL2HQeIGArwRe/+spWrr5QMzww/HdsPGehs3JIcrLrX9GdtZXrqLOHQp8RY9xZzmBSCRCPXv2bELBeWUpLjxnzhwqKiqS/3vxdf3119PGjRvl+2fPnpX3IMXRat++fenAgbpNYsuWLSTufbZt25b69OlDEydOlO+XlZXJ9zt06BB3WVFZ8tSOT6bp5+dTZdmY1pJ/uok+U9TeGCL0Z4xOBoKfG35OzPL8+fOyChTHqOIBn0cffZQOHTpEP/nJT+jUqVPS/O6++27q378/3XrrrbLdU089JatFYZrCRLt27SrNddCgQbL63LRpEy1fvpwqKytlZblv376ERGCWbsTC69VedKZuBj9cs5M+OFklQVWdq6aKypNeVJYwS3vattFTpuaHDTYqfQR+DPvQQw/R448/Tl26dKG3335bPuwjTE+Y3+HDh+no0aOyUhT3I8WTseJpWdFWHKnOmjVLVpzi6dk1a9bIJ2MnT54s2wmzXLhwIQ0fPhxmqbLyBm2QbAbQYkJM+QmzfO7VigQXD+8xLMySpxfb0ab6sz2ORP35Oj4nleVFSDU1NXTmzBlZSV58zZs3jxYtWhT9b3EEW1DQ9P5GVVVVgz81kZ+2q6rkn5nkiJskSV6oLHmy91XMvFnbizblB7OsWwNTfvZWMHlPGB+PtK/8nJplY6S1tbXyOFY82eryBbPk0fVVzLxZ24s25QezhFnaUKGp/mxcW6UPX8cXqFmqgLTRBmbJo+irmHmzthdtyg9mCbO0oUJT/dm4tkofvo4PZqmyupbb+CoWyxiMu8tUfjBLmKVxUsQEZmp+2GCj0kfgD/ioDMpVG1SWPLJItvTwg1nCLHnKAz+X/FBZ2qCr2QfMSBNYo+aZyg9mic2elxng55IfzNIGXc0+MnWz18Rg3DxT+cEssdkbJwWOYW2gk33gGNYaSn5HmbrZ88mo9ZCp/GCWMEu1DEjeKlPzwwYblT5gliqUAmoDMfNAZyo/mCXMkpcZ4OeSH45hbdDV7CNTN3tNDMbNM5UfzBKbvXFS4BjWBjocw1qjaKmjTN3sLeFJ2U2m8oNZwixTil+hQabmh8LUrTTBMawVjHY6gZh5HDOVH8wSZsnLDPBzyQ/HsDboavaRqZu9Jgbj5pnKD2aJzd44KXAMawMdjmGtUbTUUaZu9pbwpOwmU/nBLGGWKcWv0CBT80Nh6laa4BjWCkY7nUDMPI6Zyg9mCbPkZQb4ueSHY1gbdDX7yNTNXhODcfNM5QezxGZvnBQ4hrWBDsew1iha6ihTN3tLeFJ2k6n8YJYwy5TiV2iQqfmhMHUrTXAMawWjnU4gZh7HTOUHs4RZ8jID/FzywzGsDbqafWTqZq+Jwbh5pvKDWWKzN04KHMPaQIdjWGsULXWUqZu9JTwpu8lUfjBLmGVK8Ss0yNT8UJi6lSY4hrWC0U4nEDOPY6byg1nCLHmZAX4u+eEY1gZdzT4ydbPXxGDcPFP5wSyx2RsnBY5hbaDDMaw1ipY6ytTN3hKelN1kKj+YJcwypfgVGmRqfihM3UoTHMNawWinE4iZxzFT+cEsYZa8zAA/l/xwDGuDrmYfmbrZa2Iwbp6p/GCW2OyNkwLHsDbQ4RjWGkVLHWXqZm8JT8puMoXfJ9W1Dea66N/L6fkD7yWYfw4RRVKycd1AjECMJPErQl+6tpguaZMfbXLLiN5aw8qU9dWatMXG4MeDiWNYHj+r0RAzD2em8Huv8hT9w0+3KMLwxSwbTmd4/+40a8JgxTmistQClaBxpuSHDRYmfcAsTag5ioGYeWAzhR/MMr4OMmV9eSo3jwY/c3YiEmbJ42c1GmLm4cwUfjBLmCUvE8AvSH54wMcF7RR9ZspmnwZ08pKZwg9mic3eRQ5lSn64YKPSJypLFUoBtYGYeaAzhR/MEmbJywTwC5IfKksXtFFZOqUKs3SKN2nnqZ+GbRiOB3yCX6tMyY/gydVdEZVlusjHuS7EzFuMTOGHyhKVES8TwC9IfqgsXdBGZemUKszSKV6rlWX/XpfRzTdeGe2z22XtqF3r+r/BjHexTFnfdK0S+PHIo7Lk8bMaDTHzcGYKv2yoLBuv9Lr5X4FZ8uSfMjpT8iPlRB01gFk6AmvSLcRsQq0+JlP4wSxxjMjLBPALkh+OYV3QxjGsU6owS6d4rR7DorIMfq0yJT+CJ1d3RVSW6SIf57oQM28xMoUfKktURrxMAL8g+aGydEEblaVTqjBLp3hRWSJ/nQrM1/yFWTqVBT75ucDra7I1ZoHKEvmB/HBBgNcnjmF5/KxGZ8pmbxWKRmeZwg9mCbPUkL1y00zJD+UJW24Is7QMlNMdxMyhh++G5dHjRet+g0/jq+FPR3j8VaKxv6hQStwGZsnjZzUaYubhzBR+qCxRWfIyAfyC5Id7li5op+gzUzb7NKCTl8wUfjBLbPYucihT8sMFG5U+UVmqUAqoDcTMA50p/GCWMEteJoBfkPxQWbqgjcrSKVWfzfLh3+ym94+flXzOna+mvxx+X5FVDhGJO4bpfeGeZeacbKRLSb7mL8wyDYrxVSxpQBX3kj7zE2b5u+feMEAJszSA5iTEZ/05AaLZqa/8YJaaC22jua9isTF3G334zA9miS9St5EDyfrwOT9cs1HpH/csVSgF1AZi5oH2mR/MEmbJU3/qaJ/zI/Xs3LeAWbpnrHwFiFkZFY5howRwDMtTjb1o5C+Ppa/8nB3D7tixgxYsWEAtW7akNm3a0Lp166hVq1ZRyitWrKCVK1fKfxOvO+64gyZNmkT79++nmTNnUl5eHhUXF9OSJUsoNzeX5s6dS3v37qXq6mpavHgxDR48OOGK3X///bJ9WF++iiUsPH3mh8oSlaXrPPI5P1yzUek/8Mpy9OjRJAyxc+fONGPGDOrfvz9985vfjI5VGOnVV19NEyZMaDD+oUOH0qpVq6ikpISmTZtGI0aMoHbt2tHq1aul4VZUVNDYsWNpz549MEuVlTdog2QzgBYTkowfzBJmyVNX6mjkb2pGyVoEbpaxg5k8eTLdcsstJAz04mv69OnUr18/KigooJ49e1JZWZmsGnv37k0HDx6UzTZv3kzbt2+n9u3bU2lpqaw8xWvgwIHy/cLCwrhzRmXpRiy8Xu1F+7wZZK1ZRiJEObk07vMl1LJFs6gYvvE3fZoIw+f1tady857Az5ydiEybWYoqcdu2bfSrX/2qwQzmz59P77zzDo0aNYrWr19PI0eOpNtvv10a6u7du2XbnTt30rJly2RlKd4fM2aMfF/EiPfFMa1oU15e3oTO+PHjecQQDQIOCDyx8wj9+VXVv62MHYDn9yylWYo51L9Gfq6IxpZ1cUAZXYKAOYFIJCILuMYvZ/csxYXuuece+uijj2jp0qXUrFn9p8nGg6isrKRhw4bJe5J9+/alAwcOyCZbtmyhrVu3Utu2balPnz40ceJE+b6oQsX7HTp0iEsElaW5UJJ9suL1ai/a50/O2V1ZNjTLvx12JX3zi32bCMPn9bWncvOewM+cXbL9z5lZ/vznP6djx47Jh3EuvoRjnzp1Sprfgw8+SOPGjaPu3btLk5w9ezY988wz8sGdjRs3UteuXWnOnDk0aNAgat26NW3atImWL19OwlhFZblv376ERGCWbsTC69VetM+bAcyyXgcwS3s5EduTz/nhhoher4EfwwqDEw/1iKdaxevmm2+mr3/969L8Dh8+LI9mReXZq1cvOnLkiDxWHTBggDxSnTVrFhUVFcmnZ9esWSP7EPc9jx8/Ls1y4cKFNHz4cJilngaUWyPZlFHFbYgHfOJgiXMMC7Pk6SxRNPKXxzVws0w03Hnz5tGiRYvkP4tK8+TJk/KeZONXVVVVgz81Ef8u3svPz6ecRvc+GseisnQjFl6v9qJ93gxQWaKytJcJ8XvyOT9cs1HpPxRmWVtbS4cOHZJPtrp8wSx5dJFs7vjBLGGWPHWljkb+pmaUrEUozJI3BfVomKU6q3gtkWzu+MEsYZY8daWORv6mZgSzvEAAZulGLLxe7UX7vBnALGGW9jIBx7AuWKKydEHVsE+fN3vDKVsN85kfzBJmaTUZ4nTmc364ZqPSP8xShVJAbSBmHmif+cEsYZY89aeO9jk/Us/OfQuYpXvGyleAmJVRxW3oMz+YJcySp/7U0T7nR+rZuW8Bs3TPWPkKELMyKu/NsupcNT25o+4bqcRr98H36I2KjwwAZN7X3eHvLA1koBCC/UUBUpImMEseP6vREDMPp0/8hFlO+JcneROW0TBLCxCtdOGT/qxM2HInvvJz9nV3lvlqdYenYbVwNWnsq5h5s7YXHcsPZnmBK77Bx57AUvSE/OWhRmXJ42c1GmLm4fSJH8wSZslTu360T/mhPzv3ETBL94yVrwAxK6OK29AnfjBLmCVP7frRPuWH/uzcR8As3TNWvgLErIwKZhklgHuWPNXYi0b+8lj6yg/3LHnrbhTtq1iMJusgyCd+qCwTV5ajr+1F42+8MqqQju0K5P/3aX0dyJvdJfjxEKKy5PGzGg0x83D6xA9mmdgsY1UgfknotwsnwCx5qQF+DvmhsrQAV7cLnzZ73bkF0d4nfjBLmGUQORF7DZ/yI2g2KtdDZalCKaA2EDMPtE/8YJYwS57a9aN9yg/92bmPgFm6Z6x8BYhZGVXchj7xg1nCLHlq14/2KT/0Z+c+AmbpnrHyFSBmZVQwyyiBzHsaNnZxcc+SlxM4hnXPD/cs7TFW7glmqYwKZgmz5InFQTTylwfVV34wS966G0X7KhajyToI8okfjmFxDOsgBZJ26VN+BM1G5Xo4hlWhFFAbiJkH2id+MEuYJU/t+tE+5Yf+7NxHwCzdM1a+AsSsjArHsDiG5YnFQTTylwfVV344huWtu1G0r2IxmqyDoLDze3jDTvqEWsiZ19RE6L9ePGKBAh7wsQDRShdh1x/Gx1tmVJY8flajIWYezrDzE2b5uxcqeJNsEg2ztAzUuLuw6w/jM15aGQiz5PGzGg0x83CGnR/MMs76xvk9y9hW+NMRXk7ERoc9P3wdH45h7WlUuSdfxaI8QccNw84PZgmzdJwCSbsPe374Oj6YZRpU7atY0oAq7iXDzg9mCbNMZ66EPT98HR/MMg2q9lUsaUAFs4wSwD1L6E+NAPYXNU6JWuGeJY+f1WiImYcz7PxQWaKy5CmcFx32/PB1fKgsebo0ivZVLEaTdRAUdn4wS5ilA9krdxn2/PB1fDBLZQnaa+irWOwR4PUUdn4wS5glT+G86LDnh6/jg1nydGkU7atYjCbrICjs/GCWMEsHslfuMuz54ev4YJbKErTX0Fex2CPA6yns/GCWMEuewnnRYc8PX8cHs+Tp0ijaV7EYTdZBUNj5wSxhlg5kr9xl2PPD1/HBLJUlaK+hr2KxR4DXU9j5wSxhljyF86LDnh++jg9mydOlUbSvYjGarIOgsPODWcIsHcheucuw54ev44NZKkvQXkNfxWKPAK+nsPODWcIseQrnRYc9P3wdH8ySp0ujaF/FYjRZB0Fh5wezhFk6kL1yl2HPD1/HB7NUlqC9hr6KxR4BXk9h5wezhFnyFM6LDnt++Do+mCVPl0bRvorFaLIOgsLOD2YJs3Qge+Uuw54fvo4PZqksQXsNfRWLPQK8nsLOD2YJs+QpnBcd9vzwdXwwS54ujaJ9FYvRZB0EhZ0fzBJm6UD2yl2GPT98HR/MUlmC9hr6KhZ7BHg9hZ0fzBJmyVM4Lzrs+eHr+GCWPF0aRfsqFqPJOggKOz+YpaZZXvipzm6XtZOB58+fp9HXldK4oaUO1MPvMuz6w/h4a5yIH8ySx9UoGmI2whYNCjs/mKWZWcZGfWt0P5ilYZqEPT98HR/M0lCQnDBfxcKZs83YsPODWcIsbepdt6+w54ev44NZ6irRQntfxWJh6la6CDs/mCXM0orQDTsJe374Oj6YpaEgOWG+ioUzZ5uxYecHs4RZ2tS7bl9hzw9fxwez1FWihfa+isXC1K10EUZ+r75VGZ3bf/zxJfqfg+9bmWt9JxeegrHcq253ESISI9F+RSJEOQki40wN9yy1CUcDwpgfsbPxdXzOzHLHjh20YMECatmyJbVp04bWrVtHrVq1ijI7fvw4TZ06lU6cOEH5+fm0cuVK6tSpE+3fv59mzpxJeXl5VFxcTEuWLKHc3FyaO3cu7d27l6qrq2nx4sU0ePDghGq6//77ZfuwvnwVS1h4hpHf+O8/SR+fr76AyIWxuehTf0VhlkRh1F8mmJG+Gt1EBP407OjRo2nFihXUuXNnmjFjBvXv35+++c1vRmd37733Uvfu3WnKlCm0YcMGEua6dOlSGjp0KK1atYpKSkpo2rRpNGLECGrXrh2tXr1aGm5FRQWNHTuW9uzZA7N0oxVsBgZcYZYpoKGyNFCVWQjM3IzbxajAzTJ2uJMnT6ZbbrmFhIFefN1www20fv16aaanT5+mIUOG0AsvvEC9e/emgwcPymabN2+m7du3U/v27am0tJQmTZok3x84cKB8v7CwMC4VVJZuxMLr1V50GDcDmKVNs4zQDZ/rRgNKLo92OnLAZ+wJiNlTGPWHypK5qDHhaTNLUSVu27aNfvWrXzWYzVVXXUW7du2i1q1by/e7detGzz//vDTU3bt3y/d27txJy5Ytk5WleH/MmDHy/VGjRsn3xTGtaFNeXt6E1Pjx4+3RQ08gkILA3Y/tofPVtRdauTgyddGn/rIGdQwbO7Lja46PAAAgAElEQVR2Bc3pXyf10x8sIkDAgEAkEqGePXs2iXR2z1Jc6Z577qGPPvpIHq82a9aswcWvv/562rhxIxUVFdHZs2flPUhxtNq3b186cOCAbLtlyxbaunUrtW3blvr06UMTJ06U75eVlcn3O3ToEBcFKksDhSh8suL1ai86jJ/sUVmmWF/NY9jY3jq0bUWr5421JyBmT2HUX+yUMD7eAgdeWf785z+nY8eOyYdxLr6EY586dUqa39133y3vY956663yuPWpp56S1aIwTWGiXbt2pTlz5tCgQYNk9blp0yZavnw5VVZWyspy3759CYnALN2IhdervegwbgYwS5ilPYXzegpjfmSCmTurLIXBCTMUT7WK180330xf//rXpfkdPnyYjh49KitFcT9SPBm7du1a6tKlizxSnTVrlqw4xdOza9askX2I+56inTDLhQsX0vDhw2GWvJxKGI1k0wcLs4RZ6qvGTQTyl8c18Moy0XDnzZtHixYtiv6zOIItKCho0ryqqqrBn5qIBuI98WcmOYn+XutCL6gs3YiF16u96DBuBjBLmKU9hfN6CmN+oLLUXNPa2lo6dOiQfLLV5QtmyaOLZNPnB7OEWeqrxk0E8pfHNTSVJW8aatEwSzVOiVoh2fT5wSxhlvqqcROB/OVxhVny+FmNhph5OMPID2YJs+Sp2l50GPMDx7D21tdqT6gseTiRbPr8YJYwS33VuIlA/vK4orLk8bMaDTHzcIaRH8wSZslTtb3oMOYHKkt762u1J1SWPJxINn1+MEuYpb5q3EQgf3lcUVny+FmNhph5OMPID2YJs+Sp2l50GPMDlaW99bXaEypLHk4kmz4/mCXMUl81biKQvzyuqCx5/KxGQ8w8nGHkB7OEWfJUbS86jPmBytLe+lrtCZUlDyeSTZ8fzBJmqa8aNxHIXx5XVJY8flajIWYezjDwe+mNYw0mcd/qP9H56poL77n4OS0XfeqvQzp+ogu/OqK3TmHIj2Qj9nV8zr5IXW957bZGZcnj6auYebPWi9763Ov0yG/2JAhyYWwu+tSbs2gNsyRCfujrBsewPGbOomGWPLTYDFLzg1mmZtSgBX7PUhOYeXPkrzk7EYljWB4/q9EQMw9nGPjBLDXXEGapCcy8eRjyA8ew5usXaCQqSx5uJFtqfjDL1IxQWWoystQc+csDicqSx89qNMTMwxkGfjBLzTVEZakJzLx5GPIDlaX5+gUaicqShxvJlpofzDI1I1SWmowsNUf+8kCisuTxsxoNMfNwhoEfzFJzDVFZagIzbx6G/EBlab5+gUaisuThRrKl5gezTM0IlaUmI0vNkb88kKgsefysRkPMPJxh4Aez1FxDVJaawMybhyE/UFmar1+gkagsebiRbKn5wSxTM7JVWbZq0Yz+z7W9ot31uKI9DftcN80B2GuO/OCx9JVf0m/weeSRR6i0tJRGjhzJoxNwNMySB9xXMfNmrRcNs9TjRYaVZQ7lUER+b1D9a87Xr4VZJsGP/NXUZqPmRsew3/ve9+gHP/gBTZgwgX72s59R586deaMIKBpmyQONZEvND2aZmpGNyhJmqck5yTfQ6PfkJsLX/SVpZRmJRGjdunX03e9+l06ePEnCPIcOHRoleO2117qhyewVZskD6KuYebPWi4ZZ6vFCZanJi9Ec+cuAx/26uzNnztBNN91E5eXljT4sNjwe4Q3RXjTMkscSyRaf34nTH0f/4Q8vHKbHtr6UALSLLz130ae+ToL+InVUlvprhPzVZxYbYXQMKzrYs2cP/fM//7M0yilTpjSoLL/xjW/wRuUoGmbJA4tki8/v7x94iv76wekL/5jMNlwYm4s+9XUCs8SvjuirpmGEr/tL0mPYX/ziF/RP//RPNGDAABIP+5SVlXE5BRIPs+Rh9lXMvFmnjoZZBv8TXagsU+uycQvkrz4zdmV53333UceOHenOO++k3Nxc3ggCjIZZ8mAj2VBZJlIQKktUlrzdxV9++PFn7sobxMOMDKDFhKSLHypLVJZChunSn2rWYHyqpOK3M75nybtseqJRWfK4I9lQWaKyTJxDyI/s3F9QWfLW3SgayWaELRqULn6oLFFZorLk5a7P/GCW/LXX7iFdm73qQDE+VJaoLFFZqu4Xuu183V9glrorbaG9r2KxMHUrXaSLHypLVJY+V0ZWks9CJ+nKX9Wh456lKqkA2vkqlgDQKF0iXfxgljBLmKVSiiZtlK78VR05zFKVVADtfBVLAGiULpEufjBLmCXMUilFYZZ8TMH0gKdheZzTZUaqo07X+GCWMEuYpWqWZt49X9yz5K+9dg/p2uxVB4rxxScFs4RZwixVdxGYJZ9UAD2gsuRBhlnCLBMpCN/ggy8l4O0u/vJDZcldeYN4mJEBtJiQdPFDZYnKEpUlL3d95gez5K+9dg/p2uxVB4rxobIMZ2VZV9feOqo39et1eXSIV3brqCptK+2QHzyMvvKDWfLW3SjaV7EYTdZBULr4obJMd2XZ9BC4V+dC+vldf+NAZZl3zy1QSEkulq78VZ0//nRElVQA7XwVSwBolC6RLn4wS5ilz8eISskVQKN05a/q1GCWqqQCaOerWAJAo3SJdPGDWcIsYZZKKZq0UbryV3XkMEtVUgG081UsAaBRukS6+MEsYZYwS6UUhVnyMQXTA/50hMc5XWakOup0jQ9mCbOEWapmaeJ26cpf1ZGjslQlFUA7X8USABqlSwTF78zHnzQYz4yl2+jYh2cuvJfsLw5zqM5WbL5c9Kk/vvT+nSUe8FFZsaDyQ2Us8dr4Oj48DWu64ow4X8XCmLLV0KD4/c/L79KP1pUnGDvMUmtRIxGiHGH4cV5JPgfkUA5Foh88YJYqzIPKD5WxwCxNKQUUh2NYHmgkWx0/mGVTHaGy9PcbaHi7gr1oX/cXVJb2NKDck69iUZ6g44ZB8YNZwiwzqTJynJbK3QeVv8oDatQw8HuWNTU19MADD9CTTz5Ju3btajLuFStW0MqVK6lNmzby3+644w6aNGkS7d+/n2bOnEl5eXlUXFxMS5YsodzcXJo7dy7t3buXqqurafHixTR48OCELFBZmsqkLs5XMfNm3TQaZgmzhFnazip/9xdnleXDDz9Ml19+Oc2YMYPefffdJsQXLFhAV199NU2YMKHBvw0dOpRWrVpFJSUlNG3aNBoxYgS1a9eOVq9eTevWraOKigoaO3Ys7dmzB2ZpX8cwyximMEuYJczS/ibj64dxZ2Z5EXGXLl3imuX06dOpX79+VFBQQD179qSysjJZNfbu3ZsOHjwowzdv3kzbt2+n9u3bU2lpqaw8xWvgwIHy/cLCwrgricqSJ3BfxcybNSpLFX64Z+lvZaSyvkG08XV/SZtZzp8/n9555x0aNWoUrV+/nkaOHEm33347jR49mnbv3i3XbOfOnbRs2TJZWYr3x4wZI98XMeJ9cUwb7wWz5EneVzHzZg2zVOEXNrNsU9CC+hfXf6n6F8t60tU9OqlMxbgN8sMYndcnV2kzy1jclZWVNGzYMHlPsm/fvnTgwAH5z1u2bKGtW7dS27ZtqU+fPjRx4kT5vqhCxfsdOnSQhlpe3vTx/vHjx/NWFNFZT2D/kY9o5e9fT8ABfzqiJRBHfzrSeAzTx3yWehXVPQeBFwiYEIhEIvK0s/ErULMUgzh16pQ0vwcffJDGjRtH3bt3lyY5e/ZseuaZZ+SDOxs3bqSuXbvSnDlzaNCgQdS6dWvatGkTLV++nISxispy3759CTmgsjSRSH0MPjnXscA9y6Y6Cltl2XiEC6cOR2X55pvUo0cP3ibgMNrX/cWZWQrzEw/hPPvss3TdddfRV7/6VXnPUZjf4cOHadu2bXTPPfdQr1696MiRI/JYdcCAAbJKnDVrFhUVFVGrVq1ozZo18snYyZMn0/Hjx6VZLly4kIYPHw6zdCRoX8VsGwfMEmYZT1PID16m+crPmVkmwjlv3jxatGiR/GdRaZ48eVLek2z8qqqqkmYZ+xLv5efnU06ibwK50BiVZXaKmTfrptEwS5glzNJ2Vvn7gFSgZllbW0uHDh2ST7a6fMEseXR9/eTHmzXMUoUfjmH93exV1jeINr7uL4GaZRALIa4Bs+SR9lXMvFnDLFX4wSxhlio6SdbG1/0FZsldeYN4X8ViMFUnIUHxwzEsjmFxDGs/hYPKX9ORB/51d6YDtRGHypJH0Vcx82aNylKFHypLVJYqOkFlyaUUUDzMkgcaZlnHD5UlKktUlry9JJP44RjWvhZS9ggzSokoaYOg+MEsYZaZtNnzss5edFD5azpiHMOaknMQ56tYHKAw6jIofjBLmCXM0ihFQ/Fh13TkMEtTcg7igtrsTYeO8eEYNpF2cM8S9yxN95WLcb7uLziG5a68QbyvYjGYqpOQoPihskRlicrSfgoHlb+mI0dlaUrOQZyvYnGAwqjLoPjBLGGWMEujFMUxrH1sbnrE07A8rkGZkekogxofzBJmCbM0zdLEcUHlr+nIUVmaknMQ56tYHKAw6jIofjBLmCXM0ihFUVnax+amR1SWPK5BmZHpKIMaH8wSZgmzNM1SVJb2yTnoEWbJgxqUGZmOMqjxwSxhljBL0yyFWdon56BHmCUPalBmZDrKoMYHs4RZwixNsxRmaZ+cgx5hljyoQZmR6SiDGh/MEmYJszTNUpilfXIOeoRZ8qAGZUamo3Q5vreOnYgO66XXj9HyzXsTDDPZn+fniJ82N51egjgXfeoPEV9KgC8l0FdNwwiX+csdm4jH07A2KFrqw1exWJo+uxuX/L776DP08pH368YYiRDlCJOK94JZai1kMpZJPgfkUA5Foh88Ulv1wqnD6eoenbSGptvYpf50x4LK1wYxNTPHN/jYZ52yRyRbSkRJG7jkB7NMvjap7SrRZ4skHzxglryEaBTtMj9sDNTX8cEsbay+Zh++ikVzms6au+QHs4RZphKuS/2lurbKv2N8KpQSt8ExLI+f1WiImYfTJT+Ypd9m2aFdAbVsnicn0bljG/re5KE8scWJdqk/G4PF+HgUYZY8flajIWYeTpf8YJZ+m2Xs6Ad99gqYJS/VnES7zF8bA4ZZ2qBoqQ9fxWJp+uxuXPKDWcIsUwnUpf5SXVvl3zE+FUo4hpUE8KcjbsTC69VetMvNAGYJs0ylVJf6S3VtlX/H+FQowSxhljydyOhsTjaYJcwyVQplc36kYqPy777yw9OwKqtruY2vYrGMwbg7l/xgljDLVMJ0qb9U11b5d4xPhRIqS1SWPJ2gssSXEiRVUNj/zjJ28HjAx8Jm4KALX80claUDMaTq0lexpJpXUP/ukh8qS1SWqXTsUn+prq3y7xifCiVUlqgseTrJusry4Dsf0OG/Ho9S+/WOg/TeB6fq/htfd9dETagss/uevoXtxdtnIlBZ2lh9zT7wyU8TWKPmNvkJs5zzyNPxBwSzhFnGUYZN/fEyIX40xsejir+z5PGzGg0x83Da5Aez1FsLVJaoLPUU07S1zfzljiVePMzSBVXDPn0Vi+F0rYfZ5Aez1FsemCXMUk8xMEsuL6fx+FICHl6bZsQbiftjJpil3grBLGGWeoqBWXJ5OY2HWfLwwiwv8MM9S9yzxD1L3maSQfzwgI91KaTuMJvMKDUN/RY2+aGy1OOPyhKVpZ5iUFlyeTmNR2XJw2vTjHgjwTFsPYEkv5DsAnKCPmGWMEuu3HzdX1BZclfeIN5XsRhM1UmITX6oLPWWCGYJs9RTDCpLLi+n8agseXhtmhFvJKgsUVnmUISERYuXjlVHqHPHtjS8f7cowuuv7kpdLm3LlmQ25QcbVpwOfOWHytKFGlL06atY0oAq7iVt8kNlqbeqOnbVoOdkD0slOWHOIVOzbDqvZbP+D8xSb7mdtLaZvy4GiL+zdEHVsE9fxWI4XethNvnBLPWWB2aJY1g9xeAYlsvLaTyOYXl4bZoRbyQ4hsUxLCpL3RzKpvzVZaPSHpWlCqWA2kDMPNA2+aGy1FsLVJaoLPUUg8qSy8tpPCpLHl6bZsQbCSpLVJaoLHVzKJvyV5eNSntUliqUAmoDMfNA2+SHylJvLVBZorLUUwwqSy4vp/GoLHl4bZoRbySoLFFZorLUzaFsyl9dNirtUVmqUAqoDcTMA22THypLvbVAZYnKUk8xqCy5vJzGo7Lk4bVpRryRoLJEZYnKUjeHsil/ddmotEdlqUIpoDYQMw80l9/9v/wzfXCySg6i6twndOToifgDwq+ONOGCyhKVJS97/eWHb/DhrrxBPHezN7ikVkimj0+Y5c7976RmArOEWcZRSabnR+rE4LXwlZ8zs6ypqaEHHniAnnzySdq1a1cTusePH6epU6fSiRMnKD8/n1auXEmdOnWi/fv308yZMykvL4+Ki4tpyZIllJubS3PnzqW9e/dSdXU1LV68mAYPHpxwxXAMm51iVp01zFKVVNN2qCz9rYzMV91uJMyyEc+HH36YLr/8cpoxYwa9++67TWjfe++91L17d5oyZQpt2LCBduzYQUuXLqWhQ4fSqlWrqKSkhKZNm0YjRoygdu3a0erVq2ndunVUUVFBY8eOpT179sAs7Wo42puvYlbFAbNUJQWzjEcq0/PDXB1qkb7yc1ZZXsTWpUuXuGZ5ww030Pr166lz5850+vRpGjJkCL3wwgvUu3dvOnjwoAzfvHkzbd++ndq3b0+lpaU0adIk+f7AgQPl+4WFhXFXB5WlmmgTtfJVzKqzhlmqkoJZwizNtZJp+0vazPKqq66Sx7OtW7eWTLt160bPP/88jR49mnbv3i3f27lzJy1btkxWluL9MWPGyPdHjRol3xfHtPFeMEuewGGWF/jhnmUTIeEYFsewvN3FX35pM8vrr7+eNm7cSEVFRXT27Fl5D1Icrfbt25cOHDgg12PLli20detWatu2LfXp04cmTpwo3y8rK5Pvd+jQQRpqeXl5k/UbP348d00Rn6EEVv/hDdr75oepZwezzCiz/PYXi6lj2/zonC5tV///U4sBLbKFQCQSoZ49ezaZbqBmKQZx6tQpaX5333039e/fn2699VZ53PrUU0/JalGYpjDRrl270pw5c2jQoEGy+ty0aRMtX76cKisrZWW5b9++hGuHypIna1SWqCwTKcjnyjJ2Tl8Y1IOmf22QUaJken4YQdEI8pWfM7OcPXu2rBSfffZZuu666+irX/2qvOcozO/w4cN09OhRWSmK+5Hiydi1a9eSuL8pqsRZs2bJirNVq1a0Zs0a+WTs5MmTZTthlgsXLqThw4fDLDUEqtPUVzGrzhH3LFVJNW0Hs/T3GNF81e1G+rq/ODPLRHjnzZtHixYtiv6zOIItKCho0ryqqkqaZexLvCf+zCQnR/y0euIXKkueuH0Vs+qsYZaqpGCW8Uhlen6Yq0Mt0ld+gZplbW0tHTp0SD7Z6vIFs+TR9VXMqrOGWaqSglnCLM21kijS1/0lULO0jz1+jzBLHmlfxaw6a5ilKimYJczSXCswS/vsrPcIs+QhzTSz/N/jZ+hb92/Wh4KnYZswwz1L3LPUT6SGEb7uL6gsuStvEO+rWAym6iRElx/M0t4ywCxhllw16eYv93q68fjVEV1iDtv7KhaHSLS61uUHs9TCm7QxzBJmyVWTbv5yr6cbD7PUJeawva9icYhEq2tdfjBLLbwwyxS4dPVnj75aTxifGqdErWCWPH5WoyFmHk5dfjBLHu/YaFSWqCy5atLNX+71dONhlrrEHLb3VSwOkWh1rcsPZqmFF5UlKkt7gonTk27+Oh2MxvjwgE/QK0H4ZMpFrptsMEsu8fp4VJbIX66adPOXez3deFSWusQctvdVLA6RaHWtyw9mqYUXlSUqS3uC0ajcnF5Uo3OYpQYs1011N3vX42ncf6aND2ZpT0GoLFFZctXk6/6CY1juyhvE+yoWg6k6CdHlB7O0twwwS5glV026+cu9nm48KktdYg7b+yoWh0i0utblB7PUwotjWBzD2hMMjmGdsmR3jq+74yHUNSPe1fSjdccHs9RnnCgiUyrLvj060U1l9T/we01pEX0qv7kSKF39KXVqsRHGx4OJypLHz2o0xMzDqcsPZsnjHRudKWbZmMjj3/8azNKeTJL2pJu/AQ0rehmYZdDEk1zPV7GEBaEuP5ilvZWDWeKeJVdNuvnLvZ5uPMxSl5jD9r6KxSESra51+cEstfAmbQyzhFly1aSbv9zr6cbDLHWJOWzvq1gcItHqWpcfzFILL8wyBS5d/dmjr9YTxqfGKVErmCWPn9VoiJmHU4Xff/75tehFTlWdp/VPv6x/UfyeZRNmqCxRWeonUsMIlfzlXoMTD7Pk0LMc66tYLGMw7k6F3/L/3Euxhml0MZglzDKOcFT0Z6Q3S0EYHw8kzJLHz2o0xMzDqcIPZsljnCgalSUqS66yVPKXew1OPMySQ89yrK9isYzBuDsVfjBLY7xJA2GWMEuuslTyl3sNTjzMkkPPcqyvYrGMwbg7FX4wS2O8WWmWXx5SQs2b5cq5t2iWR5P+pk9CDir6c0NfrVeMT41TolYwSx4/q9EQMw+nCj+YJY9xth3Dxs736yN6wyzdyEf2qpK/Di+fsmuYZUpEwTXwVSzBEUp+JRV+MEs3q5Wpx7AwSzd6iderSv4GN5qmV4JZppN+o2v7KpawIFThB7N0s1owS38rIzeK0O9VJX/1e7UXAbO0x5Ldk69iYU/cUgcq/GCWlmA36gZmCbPkKkslf7nX4MTDLDn0LMf6KhbLGIy7U+EHszTGmzQQZgmz5CpLJX+51+DEwyw59CzH+ioWyxiMu1PhB7M0xguzxAM+bsRzoVeV/HU6gBSdwyzTSb/RtX0VS1gQqvCDWbpZLVSWqCy5ylLJX+41OPEwSw49y7G+isUyBuPuVPjBLI3xorJEZelGPKgsnXI16vz++++nuXPnGsUGEaSy2QcxjkTXyITxwSzdKAiVJSpLrrJ83V9yIhHxbdGZ9YJZ8tbTVzHHzhpmydNAomiYJcySqyxf9xeYJXflDeJ9FYvBVJ2ExONXXVNLvy2v/1mu5155j155633e9fGrI034wSxhlryk8pcfzJK78gbxMEsDaDEhiczyq/du4HXcOBpmCbOMoyjkLy/NfOUHs+Stu1G0r2IxmqyDIJilA6iKXWZDZdmmoCW1KWgRJfLo7NEN6CB/FcWSoJmv/GCWvHU3ivZVLEaTdRAEs3QAVbHLbDDLWBQtmufRk/96M8xSUR8qzXzd/2CWKqtruY2vYrGMwbg7mKUxOnYgzNLfe27sxbfUga/7H8zSkgB0uvFVLDpzdNkWZumSbvK+YZYwS676fN3/YJbclTeI91UsBlN1EgKzdIJVqVOYJcxSSShJGvm6/8EsuStvEO+rWAym6iTkIr9f/fEVuvhnwrWRCP3y6ZftXg9PwzbhCbOEWXKTzNf9D2bJXXmDeF/FYjBVJyGxZrl2+34n15CdwixhlnjAx3p++br/wSytSyF1h76KJfXMgmkBswyGc7yroLJEZclVn6/7H8ySu/IG8b6KxWCqTkJglk6wKnUKs4RZKgkF9yy5mIKJx3fD8jj7YubiniWOYXlrrRsNs4RZ6mqmcXtf9pfG40ZlyV15g3hfxWIwVSchqCydYFXqFGYJs1QSCipLLqZg4lFZ8jj7YuaoLHnrbBINs4RZmugmNsaX/QWVJXelLcT7KhYLU7fSBSpLKxiNOoFZwiyNhBMT5Ov+h2NY7sobxPsqFoOpOgmBWTrBqtRptpll82a59C/fvKEBm9Y5Z6hHjx5KvNLRCPsLj3oifmkzyxUrVtDKlSupTZs2cmZ33HEHTZo0ifbv308zZ86kvLw8Ki4upiVLllBubi7NnTuX9u7dS9XV1bR48WIaPHhwQiI4hnUjFl6vdqL/Y8cB+vDDD6mwsJBefOMYvfDaUTsdx+sFf2fZhEq2mWVjAN8eO4CuvCwPZsnIOl/NPG1muWDBArr66qtpwoQJDbAPHTqUVq1aRSUlJTRt2jQaMWIEtWvXjlavXk3r1q2jiooKGjt2LO3ZswdmyRBsstAwi/nWH/yaTp0972jmjbqFWcIsGxGAWfJTL8z7i5hd6CrL6dOnU79+/aigoIB69uxJZWVlsmrs3bs3HTx4UK7I5s2bafv27dS+fXsqLS2Vlad4DRw4UL4vqot4L1SWPEGHWcwwS97acqNRWaKy5GoozPtLKM1y/vz59M4779CoUaNo/fr1NHLkSLr99ttp9OjRtHv3brkeO3fupGXLlsnKUrw/ZswY+b6IEe+LY1qYJVe6TePDLGaYpf311ukRZgmz1NFLvLZh3l9CaZaxECsrK2nYsGHynmTfvn3pwIED8p+3bNlCW7dupbZt21KfPn1o4sSJ8n1RhYr3O3ToIA21vLy8yZqMHz+eu6aIDyGBe9bupTMfVwczMhzDNuGc7WZ585BP09DelwWjP1wlLQTEjzOI087Gr7Tds3zwwQdp3Lhx1L17d2mSs2fPpmeeeUY+uLNx40bq2rUrzZkzhwYNGkStW7emTZs20fLly0kYq6gs9+3blxAkjmF5GgvzJz9Ulry15UZnu1niniVXQf7+6U3azHLbtm10zz33UK9evejIkSPyWHXAgAGySpw1axYVFRVRq1ataM2aNfLJ2MmTJ9Px48elWS5cuJCGDx8Os+TrNm4PMMsLWFBZorJsRABmyd90wry/hPYYVpS7J0+elPckG7+qqqqkWca+xHv5+fmUk5OTdMVQWfIEHWYxo7LkrS03GpUl7llyNRTm/SW0ZsmFnigeZskjG2Yxwyx5a8uNznazbNWyOeXlkjztatWiGa24+0tcpNbjw5y/yczIOgjDDkP3pyOG81AKg1kqYUrYKMzJBrPkrS03OtvNMpbf5YWtYZYGggrz/oLK0mBBXYb4KhaXTFT7hlmqknLTDmZZzxVmaaYxX/e/tD3gY4ZZLQqVpRqnRK3CLGaYJUEZYbQAABK6SURBVG9tudEwS5glV0Nh3l9QWXJX13K8r2KxjMGoO5ilETZrQTBLmCVXTL7uf6gsuStvEO+rWAymaj0EZmkdqVaHMEuYpZZg4jT2df+DWXJX3iDeV7EYTJUd8vTuw/THfW9F+3nlyP9SdY3YsgN44e8sm0CGWcIsuZnn6/4Hs+SuvEG8r2IxmCo7RJjlQ0/uYvdj1AHMEmaZRDh4wMcoqxL+qodZb/aj8Kcj9pka9wizVEcHs7zISnwRR0AVdZLlQWWJylI9e+O39HX/Q2XJXXmDeF/FYjBVdgjMEmYZiX5IMLZqtg7jdYDK0gyrr/sfzNJsvVlRvoqFNWmN4HW//0u09eH3jtOuAxUa0Rab4hgWx7A4hrWYUHVd+br/wSytSyF1h76KJfXM7LSY9uDv6O1jJ+o6S2cxAbOEWSaRdGGbfJp9y7UNWvTtmf6f78L+wtuHcM+Sx89qNMScHCfMMh4f3LNM7yenRmsSZznmTbqehvTpYnWvMOkM+4sJtfoYmCWPn9VoiBlmqS8omCXMUk012F/UOCVqBbPk8bMaDTHDLPUFBbMMu1l+cXBP6nnFJdGl/WJZT/1lthCB/YUHEWbJ42c1GmKGWeoLCmYZdrOMXdMru3WkH397pP4yW4jA/sKDCLPk8bMaDTHDLPUFBbOEWaqpBvuLGiccwxIRfnXEjVh4vapH4wGfeKxgljBLtRyCWapxglnCLHlKCcHfQcEsYZYXCeRQDoXySwlSfHbBMWzibchXM8ffWbKtRb8DX8WiP1O1iD0H/0rHz3wcbbx2+3764ERV3X/j7ywvcEFlmV4xNNIyzFItueO08nX/g1kaL7l5oK9iMZ9x8khhlv+yekf8RjBLmGUYv+4OZmm8Hfi6/8EsjZfcPNBXsZjPGGbJZ4fK0qfK8vLCT9HY60uiy96rcyGJo9kgXthfeJTxNCyPn9VoiLkhTlSWKvKCWfpklo1XVPwZCcyyjoqv+x8qS5V9ynIbX8ViGUO0O5ilClmYJcxSRSf+mpHa7Ny3QmXpnrHyFWCWqCyVxRJtCLOEWaqpBvuLGqdErWCWPH5WoyFmohOn659+ffH1Y/STJ/4nPmM84HOBC8wSZqm2DWF/UeMEs8TfWfKUEtA9hQWr/ov2vX4s9VhhljBLD5+GxT3LxKntq5njnmXq7dp6C1/FYhMEzFKXJipLVJZqmsH+osYJlSUqS55SUFnW88OPPzfRknGhn4xlks8Bvn6DDypLVJbsjTiIDvDdsDzKQXwyRWWpu0aoLP2sLOs+XrT7VD41b5YrF72kaweaN2mIrgCU2weRv8qDidPQ1/HhGJaz6oaxvorFcLpxw2CWujRhlj6bZexqD+nTFWbZo4duAgTWHk/DBoY69YVglkQwy9Q6adgCZgmzVNMM9hc1TrhniXuWPKU4umf55nsf0fceq//+1zNV56m6pjb1WI1vkqXuOmUL3LPEPctEIlH+7NJUwKgs36QeqCxTbj+BNMA9Sx5mW59MX6/4MDqQivdP0gNPPKc/MJjlBWbKu7M+Y40I4+XI2gd8YJaN5WVrf9GQrVZTHMNq4XLb2Fex6FL52a+eoz/uPVIXlrRKS9Kz8e6sO9o47VFZorJ0UFn2K76cpnypX7Tn/ObN6LLCT1kQbF0X2bK/WAPWqCOYpSuyBv1mqpg/OvUxVZ37JErksa0v0v+8UgGzNNBI0xBUlhlxzzLOMq68ewzM0kqO2OkEZmmHo5VeMtksb1+4KYZRzM6AypKpHZhlpprl348ZQO1at4zq44bPfZqllUzdX1hQNIJhlhqwXDfNVDGLyhJmKdTjwthc9KmvdONTcdyzrIOdYhm/dF0xfXvsAP2FiYnI1P2FBUUjGGapAct100wS85mP649dj5/+mL790y2oLFPtiEYCg1lmamVZL4cc6tWlkK4puTz61oQbr6QWzfO0FJNJ+4vWxC01hllaAmmjm0wSs7gv+R87DiTAgmNYG3pRKknsXShpT6gsL+BR/uzSiJhyXN11nvzXm2GWAWn74mVglgEDT3Y5mKXGYhjvzhrXSNQUT8M2IWO8HDiGNfrMA7O0kMeaXcAsNYG5bA6z1KBrvDtrXANmqQzLeDlgljDLCyrzdf/Dd8MqbxP2GvoqlngEcAwbj4rmWZuStFz0qXThBo1glsEew977jc9TswtfwC6ufE1pUcpFy6T9JeVkHTRAZekAqmmXvov5iWdejk79hUNH6ZUjlQlQ4J6lqUaaxsEsM/8Bn9hVb5w7RJ/reRld3aNTtNEtI3rHlZfv+4u9nDHrCWZpxs1JlG9i/vWfDtCTOw5GWZw483HdvpXyBbNMiUi5Acwyu81SrH/961P5zenx738NZqmcP+oNYZbqrJy39NEs/++WFw24wCwNoKWu0u11qt0TjmEvIFP+7GL6NGzy3IFZaktXOQBmqYzKfUOYpQZj491Z4xqJmuJp2CZkjJcDD/jUsVQ22eRmmZebS70/c2l0fYZ97tP0hUF1vxHp2/5iIVOtdgGztIqT15kPYr7v8b/QuU+q5UQ/qa6h89UKP6fVBAsqS55SYqOVd1l7l4zTE8wyHJVl46WZ/rVBMEtLyodZWgJpo5swmuWrb9U/pPPee+/R/336TTp59tyF6ZpukTBLG3rRLEnsXRJmmZil8mcXN8ewjQcmHv759GXt5NsnTpygu79xo1MdcDoP4/4XOx+YJWd1LceGRSzf+bc/RGd28sw5qqg8lWCmMMumYJIxUd5JNZTlok+NyzM/NiX9ibYkU8uhHIpEnyYz1aH+PFNGKC9HMGYZO97mzXKpV+fC6Fvjb7ySBn32ipRTCqpBWPa/RPP12iwjkQjNnTuX9u7dS9XV1bR48WIaPHhwwrXFjz/Xo4n97taXD/8v/cefXpP/mJebQ4fe/YCqztUdtSZ/mW5SqCxTkVX/d+XdWb1Lg5amSoBZXoCtvIz2cqd7UXtqW1D/qyY/mpLeqhNmaZB4qiFPP/00rV69mtatW0cVFRU0duxY2rNnT9aa5emq8yQqwcavKzq2oXf+9yS99u4H0X/a9KeDdPjoifislBPXdIu0l/CqWrHaDg/4NMFpqgSYZfrMMnYRe1zRnr41uh+9+Pox2vfGMRIPChXkN6dTZ89Rq5bNaMKNV1F1Td3fhXXu2IYK27aKhouK1cYLZmmDYoI+vve971FpaSlNmjRJthg4cCBt376dCgvrjxpiQ9NdWSZ6IEY87i0emnn9jcPUvXt3OeTnLvw4csvmefTRqSo6c66GSroWUn6LZrT/jWPULC+XLrvkU/TsyxW07/Wj1LJFM6qNRKjy+NmYKedQ87wceYNfGOl/v/i22mrALFMU1BGinIZ/31YfgGNYNZFdaIWnYetAKOeciw+aihdvLO1IhD5zxSV0VbeO9MHJKvrkkxoaNagH1dTU0tGPztIlbfKpa6e2tOe1v8r957L2BSROAz+pidCV3TpSzysuobMXfhS+oGVzOnDoDWrf4TJq1kzsW/W/qHJFhzb08flqqqlt+kfcYu8M6uX1Mew//uM/0ujRo2nMmDGS16hRo2jZsmVUXFxMO3fupPLy8gYcmzdvTp98Uv/TUUFBvngdsdYRmRUNX3k5EaoV92BitPBxbTPZSPzb+do64TTLqaVmORE6d+G/m+fWUC3VfaprmVvdoOdcqqXzkbo+Gr9a5KgcsQZNB9cDARDwiUDs/nJxT2qWUyP3uOraun0pP7eGzl3Yh5rnVMu7zLWRuj0wP7eaai78f7HP1VAuRWpz5AeH3JhvNxH73MV28fbOoJhdeuml9Hd/93dNLufFd8POnz+f+vTpQxMnTpQTKCsro61bt1KHDh3i8kt3ZZlqUTG+VISS/zv4gR+PAC8a+stOfl6Y5VNPPUWbNm2i5cuXU2Vlpaws9+3bl3DFIObsFDNv1vaioT8eS/ADPx4BXnQi/XlhlrW1tTR58mQ6fvy4NMuFCxfS8OHDYZY8TYAf+DkiwOsWZgl+PAK8aK/N8uLUq6qqKD8/n3ISPnRR1xLJ5kYsvF7tRWN9eSzBD/x4BHjRvurPi8pSd2nEQz+f//zndcMCa4/x8VCDH/jxCPCiob/s5JeRZslbSkSDAAiAAAiAQEMCMEsoAgRAAARAAARSEIBZQiIgAAIgAAIgALNsSKBfv37UsWNH+WZeXh5t27YtrSJ59dVX5Zct7N+/nwoKCtI6ltiLv/HGGyS+DEI8THXu3Dl69NFHqaSkJDTjE7+M8q1vfUt+U4gYn/iSis9+9rOhGZ8YyObNm+V3Gv/2t7+lnj17pn1s4mnyqVOnyl+lEA/KrVy5kjp16pT2ccUOIGzMYscWds2FPWcvsgzTnif2XfHNcBfzYMCAAfTjH/84bk5kVWVZU1NDffv2pZdffjkUG4QYz5e//GUSIhffddu6detQjEsM4rvf/S7ddNNN8k90nnjiCfn1gqtWrQrN+O677z75RRV/+7d/S7/+9a/l3+GK7w8Oy+vPf/6zZPbf//3foTHye++9V37N4pQpU2jDhg20Y8cOWrp0aViQURiZxcIJu+bCnrOCZdj2vD/84Q/05JNP0iOPPJIyD7LKLD/44AP5tXk/+tGP5N9sii83aN++fUpIrhr88Ic/lNXaz372MxJfFh8ms4yd809/+lPJ6wc/+IErFKx+H3vsMRKfVhN9ImR1zgwWGvvFL34Riqr3hhtuoPXr11Pnzp3p9OnTNGTIEHrppZeYM7QfHiZmiWYXZs2JMYc1Z8O25wmjFB9ohw0bJk/2vvCFL8gTx3ivjDXLcePGNZhvUVERiU/WX/nKV+i2226TP/UljqHEp9lLLrnEfsZf6FFc8y9/+UuD/kWF9u6779IDDzxAa9eupWuvvTZtZplofOKrBF955RW69dZbKTc3l37/+98n/HpBZ/CI5JrF43fxqw6ff/55mjFjhjzyTPTF+ukcX5g2/quuuop27doV/VDWrVs3euutt1ziMeo7TMziTSDdmksGNQw5m2h8L774Yij2vNjx/eY3v6GHH35Y7nPiW+HEKZ/YS7LKLD/++OMG8xUbfosWLRq8d9ddd8lPFOPHjzdKapWg8+fPk/gGotiXuF8kfo/z7rvvlvdPxb1B8Unwi1/8YsovXFC5pk6bROOL7UMcca5YsSKhiHSup9s22fjEuMQxoqiWxJcfp+OVil+YNv7rr7+eNm7cSOKD49mzZ6UGxT2bsL3CxKwxmzBoTmW90pmzicYXlj0vGT9xa+ePf/xj3P0kYyvLeEDET6+I75mdPn26/GdRZc6ePZvE8VSQL/FQykMPPRS95IMPPigNU5hnqm8nCmqc4r7WrFmzSFQjBw8elDfBd+/eHdTlU17nueeeo+9///vyfmWrVvW/uZcyMOAGYdr4hb769+8vP0WLT88iF8SDUWF7hYlZLJuway7MORvWPe93v/ud3HPF8xmiwBIPCYr9rmXL+h/LvqiBrDJL8bNdYqM4c+YMiYpA/EamKMHT/UrnMWyiuYtz/Dlz5sinOA8dOiTvV4r7vWF5felLX6K33347ejTcq1cveawelpc4XhfH7eLoSfyUXO/evUnc50rn6+jRo/KXe8R9enEPWoyxS5cu6RxSg2uHkVnsAMOuubDnbCzLsOx5Yg+ZMGECde3aVe4nomgR30Me75VVZnkRgDiCatasWZNj2dDsGiEaiPgzg7Zt24am4g0RGm+HIvQfpj9T8hZkSAeOnNVfmJMnT8p7+eJ2XaJXVpqlPkpEgAAIgAAIZDMBmGU2rz7mDgIgAAIgoEQAZqmECY1AAARAAASymQDMMptXH3MHARAAARBQIgCzVMKERiAAAiAAAtlMAGaZzauPuYMACIAACCgRgFkqYUIjEPCbgPh+2mPHjpH4MnDxeLz4bljxpQ7XXXcd3XzzzX5PDqMHgQAIwCwDgIxLgEC6CZSXl8tvqhJfDyj+8HrmzJnySxzE9+6KXyLBCwRAIDkBmCUUAgJZQkB8taP4VqE1a9bQ1772Nfml1sI08QIBEEhNAGaZmhFagEBGEBDffSl+/Py1116jQYMG0bPPPpv0G0syYtKYBAhYIgCztAQS3YBA2AmI70O+5ppr5NGr+AWSP/3pT/gaw7AvGsYXGgIwy9AsBQYCAm4JLFiwQP4U3JIlS2jq1Kn0b//2b/QP//APbi+K3kEgQwjALDNkITENEEhGQPywbVlZGYlfqv/Od75Dd9xxh/x5s1dffVX+viVeIAACyQnALKEQEMhwAtXV1fIepfhNQfGbpOIXdz788EP5233ix883bNiQ4QQwPRDgE4BZ8hmiBxAAARAAgQwnALPM8AXG9EAABEAABPgEYJZ8hugBBEAABEAgwwnALDN8gTE9EAABEAABPgGYJZ8hegABEAABEMhwAjDLDF9gTA8EQAAEQIBP4P8Dw5dGVjzFe3gAAAAASUVORK5CYII=\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"sampler $ plot . histogramToList . histogram 100 <$> replicateM 100000 ((,constWeight) <$>  model2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Mixture model:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model3 = do\\n\",\n    \"    p <- bernoulli 0.7\\n\",\n    \"    if p then normal 0 1 else normal 3 1\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"X\": -4.062200110756421,\n          \"Y\": 2\n         },\n         {\n          \"X\": -4.006272440638702,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.950344770520982,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.8944171004032624,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.8384894302855432,\n          \"Y\": 1\n         },\n         {\n          \"X\": -3.7825617601678236,\n          \"Y\": 1\n         },\n         {\n          \"X\": -3.726634090050104,\n          \"Y\": 1\n         },\n         {\n          \"X\": -3.670706419932385,\n          \"Y\": 5\n         },\n         {\n          \"X\": -3.6147787498146653,\n          \"Y\": 3\n         },\n         {\n          \"X\": -3.5588510796969457,\n          \"Y\": 4\n         },\n         {\n          \"X\": -3.5029234095792265,\n          \"Y\": 4\n         },\n         {\n          \"X\": -3.446995739461507,\n          \"Y\": 5\n         },\n         {\n          \"X\": -3.3910680693437874,\n          \"Y\": 4\n         },\n         {\n          \"X\": -3.335140399226068,\n          \"Y\": 8\n         },\n         {\n          \"X\": -3.2792127291083486,\n          \"Y\": 6\n         },\n         {\n          \"X\": -3.223285058990629,\n          \"Y\": 13\n         },\n         {\n          \"X\": -3.1673573888729094,\n          \"Y\": 17\n         },\n         {\n          \"X\": -3.11142971875519,\n          \"Y\": 14\n         },\n         {\n          \"X\": -3.0555020486374707,\n          \"Y\": 16\n         },\n         {\n          \"X\": -2.999574378519751,\n          \"Y\": 22\n         },\n         {\n          \"X\": -2.9436467084020315,\n          \"Y\": 20\n         },\n         {\n          \"X\": -2.8877190382843123,\n          \"Y\": 32\n         },\n         {\n          \"X\": -2.8317913681665923,\n          \"Y\": 28\n         },\n         {\n          \"X\": -2.775863698048873,\n          \"Y\": 35\n         },\n         {\n          \"X\": -2.719936027931154,\n          \"Y\": 42\n         },\n         {\n          \"X\": -2.664008357813434,\n          \"Y\": 30\n         },\n         {\n          \"X\": -2.6080806876957148,\n          \"Y\": 48\n         },\n         {\n          \"X\": -2.552153017577995,\n          \"Y\": 63\n         },\n         {\n          \"X\": -2.4962253474602756,\n          \"Y\": 80\n         },\n         {\n          \"X\": -2.4402976773425564,\n          \"Y\": 73\n         },\n         {\n          \"X\": -2.384370007224837,\n          \"Y\": 87\n         },\n         {\n          \"X\": -2.3284423371071172,\n          \"Y\": 105\n         },\n         {\n          \"X\": -2.272514666989398,\n          \"Y\": 129\n         },\n         {\n          \"X\": -2.2165869968716785,\n          \"Y\": 123\n         },\n         {\n          \"X\": -2.160659326753959,\n          \"Y\": 141\n         },\n         {\n          \"X\": -2.1047316566362397,\n          \"Y\": 167\n         },\n         {\n          \"X\": -2.04880398651852,\n          \"Y\": 199\n         },\n         {\n          \"X\": -1.9928763164008005,\n          \"Y\": 208\n         },\n         {\n          \"X\": -1.9369486462830814,\n          \"Y\": 238\n         },\n         {\n          \"X\": -1.8810209761653618,\n          \"Y\": 262\n         },\n         {\n          \"X\": -1.8250933060476422,\n          \"Y\": 288\n         },\n         {\n          \"X\": -1.769165635929923,\n          \"Y\": 348\n         },\n         {\n          \"X\": -1.7132379658122034,\n          \"Y\": 383\n         },\n         {\n          \"X\": -1.6573102956944838,\n          \"Y\": 441\n         },\n         {\n          \"X\": -1.6013826255767643,\n          \"Y\": 441\n         },\n         {\n          \"X\": -1.545454955459045,\n          \"Y\": 461\n         },\n         {\n          \"X\": -1.4895272853413255,\n          \"Y\": 551\n         },\n         {\n          \"X\": -1.433599615223606,\n          \"Y\": 542\n         },\n         {\n          \"X\": -1.3776719451058868,\n          \"Y\": 634\n         },\n         {\n          \"X\": -1.3217442749881672,\n          \"Y\": 691\n         },\n         {\n          \"X\": -1.2658166048704476,\n          \"Y\": 666\n         },\n         {\n          \"X\": -1.209888934752728,\n          \"Y\": 769\n         },\n         {\n          \"X\": -1.1539612646350088,\n          \"Y\": 800\n         },\n         {\n          \"X\": -1.0980335945172892,\n          \"Y\": 829\n         },\n         {\n          \"X\": -1.0421059243995696,\n          \"Y\": 919\n         },\n         {\n          \"X\": -0.98617825428185,\n          \"Y\": 947\n         },\n         {\n          \"X\": -0.9302505841641309,\n          \"Y\": 1010\n         },\n         {\n          \"X\": -0.8743229140464113,\n          \"Y\": 1043\n         },\n         {\n          \"X\": -0.8183952439286917,\n          \"Y\": 1082\n         },\n         {\n          \"X\": -0.7624675738109725,\n          \"Y\": 1143\n         },\n         {\n          \"X\": -0.7065399036932529,\n          \"Y\": 1257\n         },\n         {\n          \"X\": -0.6506122335755333,\n          \"Y\": 1272\n         },\n         {\n          \"X\": -0.5946845634578137,\n          \"Y\": 1324\n         },\n         {\n          \"X\": -0.5387568933400946,\n          \"Y\": 1315\n         },\n         {\n          \"X\": -0.482829223222375,\n          \"Y\": 1409\n         },\n         {\n          \"X\": -0.4269015531046554,\n          \"Y\": 1414\n         },\n         {\n          \"X\": -0.37097388298693623,\n          \"Y\": 1502\n         },\n         {\n          \"X\": -0.31504621286921664,\n          \"Y\": 1500\n         },\n         {\n          \"X\": -0.25911854275149704,\n          \"Y\": 1487\n         },\n         {\n          \"X\": -0.20319087263377744,\n          \"Y\": 1563\n         },\n         {\n          \"X\": -0.1472632025160583,\n          \"Y\": 1623\n         },\n         {\n          \"X\": -0.09133553239833869,\n          \"Y\": 1546\n         },\n         {\n          \"X\": -0.03540786228061865,\n          \"Y\": 1657\n         },\n         {\n          \"X\": 0.0205198078371005,\n          \"Y\": 1476\n         },\n         {\n          \"X\": 0.07644747795482054,\n          \"Y\": 1553\n         },\n         {\n          \"X\": 0.1323751480725397,\n          \"Y\": 1535\n         },\n         {\n          \"X\": 0.18830281819025885,\n          \"Y\": 1582\n         },\n         {\n          \"X\": 0.2442304883079789,\n          \"Y\": 1494\n         },\n         {\n          \"X\": 0.30015815842569804,\n          \"Y\": 1521\n         },\n         {\n          \"X\": 0.3560858285434172,\n          \"Y\": 1489\n         },\n         {\n          \"X\": 0.41201349866113723,\n          \"Y\": 1480\n         },\n         {\n          \"X\": 0.4679411687788564,\n          \"Y\": 1433\n         },\n         {\n          \"X\": 0.5238688388965755,\n          \"Y\": 1416\n         },\n         {\n          \"X\": 0.5797965090142956,\n          \"Y\": 1332\n         },\n         {\n          \"X\": 0.6357241791320147,\n          \"Y\": 1364\n         },\n         {\n          \"X\": 0.6916518492497348,\n          \"Y\": 1268\n         },\n         {\n          \"X\": 0.7475795193674539,\n          \"Y\": 1265\n         },\n         {\n          \"X\": 0.8035071894851731,\n          \"Y\": 1144\n         },\n         {\n          \"X\": 0.8594348596028931,\n          \"Y\": 1172\n         },\n         {\n          \"X\": 0.9153625297206123,\n          \"Y\": 1106\n         },\n         {\n          \"X\": 0.9712901998383314,\n          \"Y\": 1101\n         },\n         {\n          \"X\": 1.0272178699560515,\n          \"Y\": 1048\n         },\n         {\n          \"X\": 1.0831455400737706,\n          \"Y\": 941\n         },\n         {\n          \"X\": 1.1390732101914898,\n          \"Y\": 937\n         },\n         {\n          \"X\": 1.1950008803092098,\n          \"Y\": 936\n         },\n         {\n          \"X\": 1.250928550426929,\n          \"Y\": 848\n         },\n         {\n          \"X\": 1.3068562205446481,\n          \"Y\": 824\n         },\n         {\n          \"X\": 1.3627838906623682,\n          \"Y\": 795\n         },\n         {\n          \"X\": 1.4187115607800873,\n          \"Y\": 766\n         },\n         {\n          \"X\": 1.4746392308978074,\n          \"Y\": 736\n         },\n         {\n          \"X\": 1.5305669010155265,\n          \"Y\": 735\n         },\n         {\n          \"X\": 1.5864945711332457,\n          \"Y\": 654\n         },\n         {\n          \"X\": 1.6424222412509657,\n          \"Y\": 626\n         },\n         {\n          \"X\": 1.6983499113686849,\n          \"Y\": 651\n         },\n         {\n          \"X\": 1.754277581486404,\n          \"Y\": 616\n         },\n         {\n          \"X\": 1.810205251604124,\n          \"Y\": 633\n         },\n         {\n          \"X\": 1.8661329217218432,\n          \"Y\": 597\n         },\n         {\n          \"X\": 1.9220605918395623,\n          \"Y\": 622\n         },\n         {\n          \"X\": 1.9779882619572824,\n          \"Y\": 629\n         },\n         {\n          \"X\": 2.0339159320750015,\n          \"Y\": 643\n         },\n         {\n          \"X\": 2.0898436021927216,\n          \"Y\": 650\n         },\n         {\n          \"X\": 2.1457712723104407,\n          \"Y\": 640\n         },\n         {\n          \"X\": 2.20169894242816,\n          \"Y\": 608\n         },\n         {\n          \"X\": 2.25762661254588,\n          \"Y\": 632\n         },\n         {\n          \"X\": 2.313554282663599,\n          \"Y\": 611\n         },\n         {\n          \"X\": 2.3694819527813182,\n          \"Y\": 639\n         },\n         {\n          \"X\": 2.4254096228990383,\n          \"Y\": 601\n         },\n         {\n          \"X\": 2.4813372930167574,\n          \"Y\": 631\n         },\n         {\n          \"X\": 2.5372649631344766,\n          \"Y\": 680\n         },\n         {\n          \"X\": 2.5931926332521966,\n          \"Y\": 666\n         },\n         {\n          \"X\": 2.6491203033699158,\n          \"Y\": 691\n         },\n         {\n          \"X\": 2.705047973487635,\n          \"Y\": 687\n         },\n         {\n          \"X\": 2.760975643605355,\n          \"Y\": 686\n         },\n         {\n          \"X\": 2.816903313723074,\n          \"Y\": 652\n         },\n         {\n          \"X\": 2.872830983840794,\n          \"Y\": 699\n         },\n         {\n          \"X\": 2.9287586539585133,\n          \"Y\": 678\n         },\n         {\n          \"X\": 2.9846863240762325,\n          \"Y\": 686\n         },\n         {\n          \"X\": 3.0406139941939525,\n          \"Y\": 706\n         },\n         {\n          \"X\": 3.0965416643116717,\n          \"Y\": 684\n         },\n         {\n          \"X\": 3.152469334429391,\n          \"Y\": 664\n         },\n         {\n          \"X\": 3.208397004547111,\n          \"Y\": 656\n         },\n         {\n          \"X\": 3.26432467466483,\n          \"Y\": 637\n         },\n         {\n          \"X\": 3.320252344782549,\n          \"Y\": 639\n         },\n         {\n          \"X\": 3.376180014900269,\n          \"Y\": 641\n         },\n         {\n          \"X\": 3.4321076850179884,\n          \"Y\": 629\n         },\n         {\n          \"X\": 3.4880353551357084,\n          \"Y\": 592\n         },\n         {\n          \"X\": 3.5439630252534275,\n          \"Y\": 578\n         },\n         {\n          \"X\": 3.5998906953711467,\n          \"Y\": 568\n         },\n         {\n          \"X\": 3.6558183654888667,\n          \"Y\": 492\n         },\n         {\n          \"X\": 3.711746035606586,\n          \"Y\": 526\n         },\n         {\n          \"X\": 3.767673705724305,\n          \"Y\": 465\n         },\n         {\n          \"X\": 3.823601375842025,\n          \"Y\": 479\n         },\n         {\n          \"X\": 3.8795290459597442,\n          \"Y\": 505\n         },\n         {\n          \"X\": 3.9354567160774625,\n          \"Y\": 403\n         },\n         {\n          \"X\": 3.9913843861951825,\n          \"Y\": 406\n         },\n         {\n          \"X\": 4.047312056312903,\n          \"Y\": 365\n         },\n         {\n          \"X\": 4.103239726430621,\n          \"Y\": 379\n         },\n         {\n          \"X\": 4.159167396548341,\n          \"Y\": 353\n         },\n         {\n          \"X\": 4.215095066666061,\n          \"Y\": 306\n         },\n         {\n          \"X\": 4.271022736783779,\n          \"Y\": 274\n         },\n         {\n          \"X\": 4.326950406901499,\n          \"Y\": 270\n         },\n         {\n          \"X\": 4.382878077019219,\n          \"Y\": 252\n         },\n         {\n          \"X\": 4.4388057471369375,\n          \"Y\": 216\n         },\n         {\n          \"X\": 4.494733417254658,\n          \"Y\": 208\n         },\n         {\n          \"X\": 4.550661087372378,\n          \"Y\": 213\n         },\n         {\n          \"X\": 4.606588757490096,\n          \"Y\": 198\n         },\n         {\n          \"X\": 4.662516427607816,\n          \"Y\": 165\n         },\n         {\n          \"X\": 4.718444097725536,\n          \"Y\": 162\n         },\n         {\n          \"X\": 4.774371767843254,\n          \"Y\": 123\n         },\n         {\n          \"X\": 4.830299437960974,\n          \"Y\": 133\n         },\n         {\n          \"X\": 4.886227108078694,\n          \"Y\": 105\n         },\n         {\n          \"X\": 4.942154778196413,\n          \"Y\": 89\n         },\n         {\n          \"X\": 4.998082448314133,\n          \"Y\": 94\n         },\n         {\n          \"X\": 5.054010118431853,\n          \"Y\": 88\n         },\n         {\n          \"X\": 5.109937788549571,\n          \"Y\": 69\n         },\n         {\n          \"X\": 5.165865458667291,\n          \"Y\": 71\n         },\n         {\n          \"X\": 5.221793128785011,\n          \"Y\": 58\n         },\n         {\n          \"X\": 5.277720798902731,\n          \"Y\": 37\n         },\n         {\n          \"X\": 5.333648469020449,\n          \"Y\": 41\n         },\n         {\n          \"X\": 5.389576139138169,\n          \"Y\": 28\n         },\n         {\n          \"X\": 5.445503809255889,\n          \"Y\": 22\n         },\n         {\n          \"X\": 5.501431479373608,\n          \"Y\": 20\n         },\n         {\n          \"X\": 5.557359149491328,\n          \"Y\": 22\n         },\n         {\n          \"X\": 5.613286819609048,\n          \"Y\": 25\n         },\n         {\n          \"X\": 5.669214489726766,\n          \"Y\": 26\n         },\n         {\n          \"X\": 5.725142159844486,\n          \"Y\": 13\n         },\n         {\n          \"X\": 5.781069829962206,\n          \"Y\": 11\n         },\n         {\n          \"X\": 5.836997500079924,\n          \"Y\": 16\n         },\n         {\n          \"X\": 5.892925170197644,\n          \"Y\": 8\n         },\n         {\n          \"X\": 5.948852840315364,\n          \"Y\": 10\n         },\n         {\n          \"X\": 6.004780510433083,\n          \"Y\": 11\n         },\n         {\n          \"X\": 6.060708180550803,\n          \"Y\": 6\n         },\n         {\n          \"X\": 6.116635850668523,\n          \"Y\": 10\n         },\n         {\n          \"X\": 6.172563520786241,\n          \"Y\": 6\n         },\n         {\n          \"X\": 6.228491190903961,\n          \"Y\": 4\n         },\n         {\n          \"X\": 6.284418861021681,\n          \"Y\": 4\n         },\n         {\n          \"X\": 6.340346531139399,\n          \"Y\": 3\n         },\n         {\n          \"X\": 6.396274201257119,\n          \"Y\": 1\n         },\n         {\n          \"X\": 6.4522018713748395,\n          \"Y\": 3\n         },\n         {\n          \"X\": 6.508129541492558,\n          \"Y\": 3\n         },\n         {\n          \"X\": 6.564057211610278,\n          \"Y\": 3\n         },\n         {\n          \"X\": 6.619984881727998,\n          \"Y\": 1\n         },\n         {\n          \"X\": 6.675912551845716,\n          \"Y\": 0\n         },\n         {\n          \"X\": 6.731840221963436,\n          \"Y\": 2\n         },\n         {\n          \"X\": 6.787767892081156,\n          \"Y\": 1\n         },\n         {\n          \"X\": 6.843695562198876,\n          \"Y\": 2\n         },\n         {\n          \"X\": 6.8996232323165945,\n          \"Y\": 0\n         },\n         {\n          \"X\": 6.9555509024343145,\n          \"Y\": 0\n         },\n         {\n          \"X\": 7.0114785725520345,\n          \"Y\": 1\n         },\n         {\n          \"X\": 7.067406242669753,\n          \"Y\": 0\n         }\n        ]\n       },\n       \"encoding\": {\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"bar\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"sampler $ \\n\",\n    \"    plot . histogramToList . histogram 200\\n\",\n    \"    <$> replicateM 100000 (runWeightedT model3)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Weighted Sampling\\n\",\n    \"\\n\",\n    \"For models with factor statements, we cannot just sample. For example, consider a distribution which is conditioned to positive values only:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model4 = do\\n\",\n    \"    p <- bernoulli 0.7\\n\",\n    \"    out <- if p then normal 0 1 else normal 3 1\\n\",\n    \"    condition (out > 0)\\n\",\n    \"    return out\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"`condition` is a special case of `factor` statement for binary factors.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Here, we use `runWeightedT` to convert `model4` into a distribution over pairs of numbers and their weights. We then sample from that. To view \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"X\": -4.265869358608886,\n          \"Y\": 0\n         },\n         {\n          \"X\": -4.208461706073316,\n          \"Y\": 0\n         },\n         {\n          \"X\": -4.151054053537747,\n          \"Y\": 0\n         },\n         {\n          \"X\": -4.093646401002177,\n          \"Y\": 0\n         },\n         {\n          \"X\": -4.036238748466607,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.978831095931037,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.9214234433954673,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.8640157908598973,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.8066081383243278,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.7492004857887578,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.6917928332531877,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.634385180717618,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.576977528182048,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.5195698756464786,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.4621622231109086,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.4047545705753386,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.347346918039769,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.2899392655041995,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.2325316129686295,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.1751239604330594,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.1177163078974894,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.06030865536192,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.0029010028263503,\n          \"Y\": 0\n         },\n         {\n          \"X\": -2.9454933502907803,\n          \"Y\": 0\n         },\n         {\n          \"X\": -2.8880856977552103,\n          \"Y\": 0\n         },\n         {\n          \"X\": -2.8306780452196403,\n          \"Y\": 0\n         },\n         {\n          \"X\": -2.7732703926840707,\n          \"Y\": 0\n         },\n         {\n          \"X\": -2.715862740148501,\n          \"Y\": 0\n         },\n         {\n          \"X\": -2.658455087612931,\n          \"Y\": 0\n         },\n         {\n          \"X\": -2.601047435077361,\n          \"Y\": 0\n         },\n         {\n          \"X\": -2.543639782541791,\n          \"Y\": 0\n         },\n         {\n          \"X\": -2.4862321300062216,\n          \"Y\": 0\n         },\n         {\n          \"X\": -2.428824477470652,\n          \"Y\": 0\n         },\n         {\n          \"X\": -2.371416824935082,\n          \"Y\": 0\n         },\n         {\n          \"X\": -2.314009172399512,\n          \"Y\": 0\n         },\n         {\n          \"X\": -2.2566015198639424,\n          \"Y\": 0\n         },\n         {\n          \"X\": -2.1991938673283724,\n          \"Y\": 0\n         },\n         {\n          \"X\": -2.141786214792803,\n          \"Y\": 0\n         },\n         {\n          \"X\": -2.084378562257233,\n          \"Y\": 0\n         },\n         {\n          \"X\": -2.026970909721663,\n          \"Y\": 0\n         },\n         {\n          \"X\": -1.9695632571860933,\n          \"Y\": 0\n         },\n         {\n          \"X\": -1.9121556046505233,\n          \"Y\": 0\n         },\n         {\n          \"X\": -1.8547479521149537,\n          \"Y\": 0\n         },\n         {\n          \"X\": -1.7973402995793837,\n          \"Y\": 0\n         },\n         {\n          \"X\": -1.7399326470438141,\n          \"Y\": 0\n         },\n         {\n          \"X\": -1.682524994508244,\n          \"Y\": 0\n         },\n         {\n          \"X\": -1.625117341972674,\n          \"Y\": 0\n         },\n         {\n          \"X\": -1.5677096894371045,\n          \"Y\": 0\n         },\n         {\n          \"X\": -1.5103020369015345,\n          \"Y\": 0\n         },\n         {\n          \"X\": -1.452894384365965,\n          \"Y\": 0\n         },\n         {\n          \"X\": -1.395486731830395,\n          \"Y\": 0\n         },\n         {\n          \"X\": -1.3380790792948254,\n          \"Y\": 0\n         },\n         {\n          \"X\": -1.2806714267592554,\n          \"Y\": 0\n         },\n         {\n          \"X\": -1.2232637742236854,\n          \"Y\": 0\n         },\n         {\n          \"X\": -1.1658561216881158,\n          \"Y\": 0\n         },\n         {\n          \"X\": -1.1084484691525458,\n          \"Y\": 0\n         },\n         {\n          \"X\": -1.0510408166169762,\n          \"Y\": 0\n         },\n         {\n          \"X\": -0.9936331640814062,\n          \"Y\": 0\n         },\n         {\n          \"X\": -0.9362255115458362,\n          \"Y\": 0\n         },\n         {\n          \"X\": -0.8788178590102667,\n          \"Y\": 0\n         },\n         {\n          \"X\": -0.8214102064746966,\n          \"Y\": 0\n         },\n         {\n          \"X\": -0.7640025539391271,\n          \"Y\": 0\n         },\n         {\n          \"X\": -0.7065949014035571,\n          \"Y\": 0\n         },\n         {\n          \"X\": -0.6491872488679875,\n          \"Y\": 0\n         },\n         {\n          \"X\": -0.5917795963324175,\n          \"Y\": 0\n         },\n         {\n          \"X\": -0.5343719437968475,\n          \"Y\": 0\n         },\n         {\n          \"X\": -0.47696429126127793,\n          \"Y\": 0\n         },\n         {\n          \"X\": -0.4195566387257079,\n          \"Y\": 0\n         },\n         {\n          \"X\": -0.36214898619013836,\n          \"Y\": 0\n         },\n         {\n          \"X\": -0.30474133365456835,\n          \"Y\": 0\n         },\n         {\n          \"X\": -0.24733368111899878,\n          \"Y\": 0\n         },\n         {\n          \"X\": -0.18992602858342877,\n          \"Y\": 0\n         },\n         {\n          \"X\": -0.13251837604785877,\n          \"Y\": 0\n         },\n         {\n          \"X\": -0.07511072351228876,\n          \"Y\": 0\n         },\n         {\n          \"X\": -0.017703070976719637,\n          \"Y\": 292\n         },\n         {\n          \"X\": 0.03970458155885037,\n          \"Y\": 1629\n         },\n         {\n          \"X\": 0.09711223409442038,\n          \"Y\": 1602\n         },\n         {\n          \"X\": 0.1545198866299904,\n          \"Y\": 1645\n         },\n         {\n          \"X\": 0.2119275391655604,\n          \"Y\": 1542\n         },\n         {\n          \"X\": 0.2693351917011295,\n          \"Y\": 1527\n         },\n         {\n          \"X\": 0.3267428442366995,\n          \"Y\": 1558\n         },\n         {\n          \"X\": 0.38415049677226953,\n          \"Y\": 1504\n         },\n         {\n          \"X\": 0.44155814930783954,\n          \"Y\": 1544\n         },\n         {\n          \"X\": 0.49896580184340866,\n          \"Y\": 1403\n         },\n         {\n          \"X\": 0.5563734543789787,\n          \"Y\": 1439\n         },\n         {\n          \"X\": 0.6137811069145487,\n          \"Y\": 1349\n         },\n         {\n          \"X\": 0.6711887594501187,\n          \"Y\": 1366\n         },\n         {\n          \"X\": 0.7285964119856887,\n          \"Y\": 1290\n         },\n         {\n          \"X\": 0.7860040645212578,\n          \"Y\": 1225\n         },\n         {\n          \"X\": 0.8434117170568278,\n          \"Y\": 1171\n         },\n         {\n          \"X\": 0.9008193695923978,\n          \"Y\": 1131\n         },\n         {\n          \"X\": 0.9582270221279678,\n          \"Y\": 1056\n         },\n         {\n          \"X\": 1.0156346746635379,\n          \"Y\": 969\n         },\n         {\n          \"X\": 1.073042327199107,\n          \"Y\": 1048\n         },\n         {\n          \"X\": 1.130449979734677,\n          \"Y\": 956\n         },\n         {\n          \"X\": 1.187857632270247,\n          \"Y\": 950\n         },\n         {\n          \"X\": 1.245265284805817,\n          \"Y\": 849\n         },\n         {\n          \"X\": 1.302672937341387,\n          \"Y\": 842\n         },\n         {\n          \"X\": 1.3600805898769561,\n          \"Y\": 802\n         },\n         {\n          \"X\": 1.4174882424125261,\n          \"Y\": 799\n         },\n         {\n          \"X\": 1.4748958949480961,\n          \"Y\": 708\n         },\n         {\n          \"X\": 1.5323035474836662,\n          \"Y\": 730\n         },\n         {\n          \"X\": 1.5897112000192353,\n          \"Y\": 725\n         },\n         {\n          \"X\": 1.6471188525548053,\n          \"Y\": 674\n         },\n         {\n          \"X\": 1.7045265050903753,\n          \"Y\": 668\n         },\n         {\n          \"X\": 1.7619341576259453,\n          \"Y\": 614\n         },\n         {\n          \"X\": 1.8193418101615153,\n          \"Y\": 638\n         },\n         {\n          \"X\": 1.8767494626970844,\n          \"Y\": 638\n         },\n         {\n          \"X\": 1.9341571152326544,\n          \"Y\": 622\n         },\n         {\n          \"X\": 1.9915647677682244,\n          \"Y\": 664\n         },\n         {\n          \"X\": 2.0489724203037945,\n          \"Y\": 668\n         },\n         {\n          \"X\": 2.1063800728393645,\n          \"Y\": 619\n         },\n         {\n          \"X\": 2.1637877253749336,\n          \"Y\": 636\n         },\n         {\n          \"X\": 2.2211953779105036,\n          \"Y\": 641\n         },\n         {\n          \"X\": 2.2786030304460736,\n          \"Y\": 640\n         },\n         {\n          \"X\": 2.3360106829816436,\n          \"Y\": 674\n         },\n         {\n          \"X\": 2.3934183355172136,\n          \"Y\": 658\n         },\n         {\n          \"X\": 2.4508259880527827,\n          \"Y\": 678\n         },\n         {\n          \"X\": 2.5082336405883527,\n          \"Y\": 634\n         },\n         {\n          \"X\": 2.5656412931239228,\n          \"Y\": 688\n         },\n         {\n          \"X\": 2.6230489456594928,\n          \"Y\": 653\n         },\n         {\n          \"X\": 2.680456598195062,\n          \"Y\": 724\n         },\n         {\n          \"X\": 2.737864250730632,\n          \"Y\": 677\n         },\n         {\n          \"X\": 2.795271903266202,\n          \"Y\": 721\n         },\n         {\n          \"X\": 2.852679555801772,\n          \"Y\": 662\n         },\n         {\n          \"X\": 2.910087208337342,\n          \"Y\": 685\n         },\n         {\n          \"X\": 2.967494860872911,\n          \"Y\": 722\n         },\n         {\n          \"X\": 3.024902513408481,\n          \"Y\": 696\n         },\n         {\n          \"X\": 3.082310165944051,\n          \"Y\": 681\n         },\n         {\n          \"X\": 3.139717818479621,\n          \"Y\": 678\n         },\n         {\n          \"X\": 3.197125471015191,\n          \"Y\": 678\n         },\n         {\n          \"X\": 3.25453312355076,\n          \"Y\": 683\n         },\n         {\n          \"X\": 3.31194077608633,\n          \"Y\": 700\n         },\n         {\n          \"X\": 3.3693484286219,\n          \"Y\": 638\n         },\n         {\n          \"X\": 3.42675608115747,\n          \"Y\": 647\n         },\n         {\n          \"X\": 3.48416373369304,\n          \"Y\": 567\n         },\n         {\n          \"X\": 3.5415713862286093,\n          \"Y\": 641\n         },\n         {\n          \"X\": 3.5989790387641794,\n          \"Y\": 548\n         },\n         {\n          \"X\": 3.6563866912997494,\n          \"Y\": 566\n         },\n         {\n          \"X\": 3.7137943438353185,\n          \"Y\": 539\n         },\n         {\n          \"X\": 3.7712019963708885,\n          \"Y\": 486\n         },\n         {\n          \"X\": 3.8286096489064585,\n          \"Y\": 498\n         },\n         {\n          \"X\": 3.8860173014420285,\n          \"Y\": 452\n         },\n         {\n          \"X\": 3.9434249539775985,\n          \"Y\": 423\n         },\n         {\n          \"X\": 4.0008326065131685,\n          \"Y\": 396\n         },\n         {\n          \"X\": 4.0582402590487385,\n          \"Y\": 400\n         },\n         {\n          \"X\": 4.1156479115843085,\n          \"Y\": 368\n         },\n         {\n          \"X\": 4.173055564119877,\n          \"Y\": 331\n         },\n         {\n          \"X\": 4.230463216655447,\n          \"Y\": 309\n         },\n         {\n          \"X\": 4.287870869191017,\n          \"Y\": 314\n         },\n         {\n          \"X\": 4.345278521726587,\n          \"Y\": 275\n         },\n         {\n          \"X\": 4.402686174262157,\n          \"Y\": 261\n         },\n         {\n          \"X\": 4.460093826797727,\n          \"Y\": 229\n         },\n         {\n          \"X\": 4.517501479333297,\n          \"Y\": 216\n         },\n         {\n          \"X\": 4.574909131868867,\n          \"Y\": 164\n         },\n         {\n          \"X\": 4.632316784404437,\n          \"Y\": 185\n         },\n         {\n          \"X\": 4.689724436940007,\n          \"Y\": 159\n         },\n         {\n          \"X\": 4.747132089475575,\n          \"Y\": 141\n         },\n         {\n          \"X\": 4.804539742011145,\n          \"Y\": 120\n         },\n         {\n          \"X\": 4.861947394546715,\n          \"Y\": 139\n         },\n         {\n          \"X\": 4.919355047082285,\n          \"Y\": 105\n         },\n         {\n          \"X\": 4.976762699617855,\n          \"Y\": 109\n         },\n         {\n          \"X\": 5.034170352153425,\n          \"Y\": 77\n         },\n         {\n          \"X\": 5.091578004688995,\n          \"Y\": 78\n         },\n         {\n          \"X\": 5.148985657224565,\n          \"Y\": 69\n         },\n         {\n          \"X\": 5.206393309760135,\n          \"Y\": 74\n         },\n         {\n          \"X\": 5.263800962295703,\n          \"Y\": 60\n         },\n         {\n          \"X\": 5.321208614831273,\n          \"Y\": 43\n         },\n         {\n          \"X\": 5.378616267366843,\n          \"Y\": 45\n         },\n         {\n          \"X\": 5.436023919902413,\n          \"Y\": 40\n         },\n         {\n          \"X\": 5.493431572437983,\n          \"Y\": 34\n         },\n         {\n          \"X\": 5.550839224973553,\n          \"Y\": 24\n         },\n         {\n          \"X\": 5.608246877509123,\n          \"Y\": 24\n         },\n         {\n          \"X\": 5.665654530044693,\n          \"Y\": 18\n         },\n         {\n          \"X\": 5.7230621825802634,\n          \"Y\": 11\n         },\n         {\n          \"X\": 5.7804698351158335,\n          \"Y\": 17\n         },\n         {\n          \"X\": 5.837877487651402,\n          \"Y\": 13\n         },\n         {\n          \"X\": 5.895285140186972,\n          \"Y\": 12\n         },\n         {\n          \"X\": 5.952692792722542,\n          \"Y\": 6\n         },\n         {\n          \"X\": 6.010100445258112,\n          \"Y\": 12\n         },\n         {\n          \"X\": 6.067508097793682,\n          \"Y\": 3\n         },\n         {\n          \"X\": 6.124915750329252,\n          \"Y\": 2\n         },\n         {\n          \"X\": 6.182323402864822,\n          \"Y\": 2\n         },\n         {\n          \"X\": 6.239731055400392,\n          \"Y\": 7\n         },\n         {\n          \"X\": 6.297138707935962,\n          \"Y\": 1\n         },\n         {\n          \"X\": 6.35454636047153,\n          \"Y\": 3\n         },\n         {\n          \"X\": 6.4119540130071,\n          \"Y\": 3\n         },\n         {\n          \"X\": 6.46936166554267,\n          \"Y\": 2\n         },\n         {\n          \"X\": 6.52676931807824,\n          \"Y\": 2\n         },\n         {\n          \"X\": 6.58417697061381,\n          \"Y\": 1\n         },\n         {\n          \"X\": 6.64158462314938,\n          \"Y\": 3\n         },\n         {\n          \"X\": 6.69899227568495,\n          \"Y\": 2\n         },\n         {\n          \"X\": 6.75639992822052,\n          \"Y\": 1\n         },\n         {\n          \"X\": 6.81380758075609,\n          \"Y\": 1\n         },\n         {\n          \"X\": 6.87121523329166,\n          \"Y\": 0\n         },\n         {\n          \"X\": 6.928622885827228,\n          \"Y\": 0\n         },\n         {\n          \"X\": 6.986030538362798,\n          \"Y\": 1\n         },\n         {\n          \"X\": 7.043438190898368,\n          \"Y\": 0\n         },\n         {\n          \"X\": 7.100845843433938,\n          \"Y\": 0\n         },\n         {\n          \"X\": 7.158253495969508,\n          \"Y\": 0\n         }\n        ]\n       },\n       \"encoding\": {\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"bar\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"sampler $ \\n\",\n    \"    plot . histogramToList . histogram 200\\n\",\n    \"    <$> replicateM 100000 (runWeightedT model4)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We could ignore the `condition` statement using `unweighted`, as in:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"X\": -4.424718428568858,\n          \"Y\": 1\n         },\n         {\n          \"X\": -4.368596691690609,\n          \"Y\": 0\n         },\n         {\n          \"X\": -4.312474954812361,\n          \"Y\": 0\n         },\n         {\n          \"X\": -4.256353217934112,\n          \"Y\": 0\n         },\n         {\n          \"X\": -4.200231481055864,\n          \"Y\": 0\n         },\n         {\n          \"X\": -4.144109744177615,\n          \"Y\": 0\n         },\n         {\n          \"X\": -4.087988007299367,\n          \"Y\": 0\n         },\n         {\n          \"X\": -4.0318662704211174,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.975744533542869,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.919622796664621,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.863501059786372,\n          \"Y\": 0\n         },\n         {\n          \"X\": -3.8073793229081234,\n          \"Y\": 2\n         },\n         {\n          \"X\": -3.751257586029875,\n          \"Y\": 1\n         },\n         {\n          \"X\": -3.6951358491516264,\n          \"Y\": 1\n         },\n         {\n          \"X\": -3.6390141122733777,\n          \"Y\": 5\n         },\n         {\n          \"X\": -3.5828923753951294,\n          \"Y\": 1\n         },\n         {\n          \"X\": -3.5267706385168807,\n          \"Y\": 2\n         },\n         {\n          \"X\": -3.470648901638632,\n          \"Y\": 3\n         },\n         {\n          \"X\": -3.4145271647603836,\n          \"Y\": 3\n         },\n         {\n          \"X\": -3.358405427882135,\n          \"Y\": 5\n         },\n         {\n          \"X\": -3.302283691003886,\n          \"Y\": 5\n         },\n         {\n          \"X\": -3.246161954125638,\n          \"Y\": 9\n         },\n         {\n          \"X\": -3.190040217247389,\n          \"Y\": 12\n         },\n         {\n          \"X\": -3.1339184803691404,\n          \"Y\": 14\n         },\n         {\n          \"X\": -3.077796743490892,\n          \"Y\": 12\n         },\n         {\n          \"X\": -3.0216750066126434,\n          \"Y\": 20\n         },\n         {\n          \"X\": -2.9655532697343947,\n          \"Y\": 18\n         },\n         {\n          \"X\": -2.9094315328561464,\n          \"Y\": 18\n         },\n         {\n          \"X\": -2.8533097959778977,\n          \"Y\": 29\n         },\n         {\n          \"X\": -2.797188059099649,\n          \"Y\": 23\n         },\n         {\n          \"X\": -2.7410663222214007,\n          \"Y\": 45\n         },\n         {\n          \"X\": -2.684944585343152,\n          \"Y\": 48\n         },\n         {\n          \"X\": -2.628822848464903,\n          \"Y\": 53\n         },\n         {\n          \"X\": -2.572701111586655,\n          \"Y\": 61\n         },\n         {\n          \"X\": -2.516579374708406,\n          \"Y\": 56\n         },\n         {\n          \"X\": -2.4604576378301575,\n          \"Y\": 84\n         },\n         {\n          \"X\": -2.404335900951909,\n          \"Y\": 88\n         },\n         {\n          \"X\": -2.348214164073661,\n          \"Y\": 104\n         },\n         {\n          \"X\": -2.292092427195412,\n          \"Y\": 126\n         },\n         {\n          \"X\": -2.2359706903171634,\n          \"Y\": 149\n         },\n         {\n          \"X\": -2.179848953438915,\n          \"Y\": 138\n         },\n         {\n          \"X\": -2.1237272165606664,\n          \"Y\": 176\n         },\n         {\n          \"X\": -2.0676054796824177,\n          \"Y\": 203\n         },\n         {\n          \"X\": -2.0114837428041694,\n          \"Y\": 207\n         },\n         {\n          \"X\": -1.9553620059259207,\n          \"Y\": 231\n         },\n         {\n          \"X\": -1.899240269047672,\n          \"Y\": 255\n         },\n         {\n          \"X\": -1.8431185321694237,\n          \"Y\": 298\n         },\n         {\n          \"X\": -1.786996795291175,\n          \"Y\": 331\n         },\n         {\n          \"X\": -1.7308750584129262,\n          \"Y\": 370\n         },\n         {\n          \"X\": -1.674753321534678,\n          \"Y\": 430\n         },\n         {\n          \"X\": -1.6186315846564292,\n          \"Y\": 375\n         },\n         {\n          \"X\": -1.562509847778181,\n          \"Y\": 466\n         },\n         {\n          \"X\": -1.5063881108999322,\n          \"Y\": 517\n         },\n         {\n          \"X\": -1.4502663740216835,\n          \"Y\": 533\n         },\n         {\n          \"X\": -1.3941446371434352,\n          \"Y\": 559\n         },\n         {\n          \"X\": -1.3380229002651864,\n          \"Y\": 679\n         },\n         {\n          \"X\": -1.2819011633869377,\n          \"Y\": 687\n         },\n         {\n          \"X\": -1.2257794265086894,\n          \"Y\": 694\n         },\n         {\n          \"X\": -1.1696576896304407,\n          \"Y\": 745\n         },\n         {\n          \"X\": -1.113535952752192,\n          \"Y\": 813\n         },\n         {\n          \"X\": -1.0574142158739437,\n          \"Y\": 920\n         },\n         {\n          \"X\": -1.001292478995695,\n          \"Y\": 932\n         },\n         {\n          \"X\": -0.9451707421174462,\n          \"Y\": 970\n         },\n         {\n          \"X\": -0.8890490052391979,\n          \"Y\": 1060\n         },\n         {\n          \"X\": -0.8329272683609492,\n          \"Y\": 1003\n         },\n         {\n          \"X\": -0.7768055314827005,\n          \"Y\": 1133\n         },\n         {\n          \"X\": -0.7206837946044522,\n          \"Y\": 1218\n         },\n         {\n          \"X\": -0.6645620577262035,\n          \"Y\": 1213\n         },\n         {\n          \"X\": -0.6084403208479547,\n          \"Y\": 1327\n         },\n         {\n          \"X\": -0.5523185839697065,\n          \"Y\": 1375\n         },\n         {\n          \"X\": -0.4961968470914577,\n          \"Y\": 1327\n         },\n         {\n          \"X\": -0.44007511021320855,\n          \"Y\": 1472\n         },\n         {\n          \"X\": -0.38395337333496027,\n          \"Y\": 1518\n         },\n         {\n          \"X\": -0.327831636456712,\n          \"Y\": 1462\n         },\n         {\n          \"X\": -0.2717098995784637,\n          \"Y\": 1542\n         },\n         {\n          \"X\": -0.21558816270021453,\n          \"Y\": 1557\n         },\n         {\n          \"X\": -0.15946642582196624,\n          \"Y\": 1561\n         },\n         {\n          \"X\": -0.10334468894371795,\n          \"Y\": 1557\n         },\n         {\n          \"X\": -0.04722295206546878,\n          \"Y\": 1613\n         },\n         {\n          \"X\": 0.008898784812779503,\n          \"Y\": 1568\n         },\n         {\n          \"X\": 0.06502052169102779,\n          \"Y\": 1580\n         },\n         {\n          \"X\": 0.12114225856927696,\n          \"Y\": 1498\n         },\n         {\n          \"X\": 0.17726399544752525,\n          \"Y\": 1588\n         },\n         {\n          \"X\": 0.23338573232577353,\n          \"Y\": 1543\n         },\n         {\n          \"X\": 0.2895074692040227,\n          \"Y\": 1470\n         },\n         {\n          \"X\": 0.345629206082271,\n          \"Y\": 1542\n         },\n         {\n          \"X\": 0.4017509429605193,\n          \"Y\": 1480\n         },\n         {\n          \"X\": 0.45787267983876845,\n          \"Y\": 1393\n         },\n         {\n          \"X\": 0.5139944167170167,\n          \"Y\": 1339\n         },\n         {\n          \"X\": 0.570116153595265,\n          \"Y\": 1401\n         },\n         {\n          \"X\": 0.6262378904735142,\n          \"Y\": 1242\n         },\n         {\n          \"X\": 0.6823596273517625,\n          \"Y\": 1390\n         },\n         {\n          \"X\": 0.7384813642300108,\n          \"Y\": 1198\n         },\n         {\n          \"X\": 0.7946031011082599,\n          \"Y\": 1241\n         },\n         {\n          \"X\": 0.8507248379865082,\n          \"Y\": 1247\n         },\n         {\n          \"X\": 0.9068465748647565,\n          \"Y\": 1120\n         },\n         {\n          \"X\": 0.9629683117430057,\n          \"Y\": 1076\n         },\n         {\n          \"X\": 1.019090048621254,\n          \"Y\": 1042\n         },\n         {\n          \"X\": 1.0752117854995022,\n          \"Y\": 932\n         },\n         {\n          \"X\": 1.1313335223777505,\n          \"Y\": 957\n         },\n         {\n          \"X\": 1.1874552592559997,\n          \"Y\": 944\n         },\n         {\n          \"X\": 1.243576996134248,\n          \"Y\": 888\n         },\n         {\n          \"X\": 1.2996987330124963,\n          \"Y\": 874\n         },\n         {\n          \"X\": 1.3558204698907454,\n          \"Y\": 800\n         },\n         {\n          \"X\": 1.4119422067689937,\n          \"Y\": 766\n         },\n         {\n          \"X\": 1.468063943647242,\n          \"Y\": 740\n         },\n         {\n          \"X\": 1.5241856805254912,\n          \"Y\": 740\n         },\n         {\n          \"X\": 1.5803074174037395,\n          \"Y\": 693\n         },\n         {\n          \"X\": 1.6364291542819878,\n          \"Y\": 688\n         },\n         {\n          \"X\": 1.692550891160237,\n          \"Y\": 670\n         },\n         {\n          \"X\": 1.7486726280384852,\n          \"Y\": 640\n         },\n         {\n          \"X\": 1.8047943649167335,\n          \"Y\": 660\n         },\n         {\n          \"X\": 1.8609161017949827,\n          \"Y\": 635\n         },\n         {\n          \"X\": 1.917037838673231,\n          \"Y\": 641\n         },\n         {\n          \"X\": 1.9731595755514793,\n          \"Y\": 624\n         },\n         {\n          \"X\": 2.0292813124297284,\n          \"Y\": 610\n         },\n         {\n          \"X\": 2.0854030493079767,\n          \"Y\": 622\n         },\n         {\n          \"X\": 2.141524786186225,\n          \"Y\": 623\n         },\n         {\n          \"X\": 2.197646523064474,\n          \"Y\": 619\n         },\n         {\n          \"X\": 2.2537682599427225,\n          \"Y\": 640\n         },\n         {\n          \"X\": 2.3098899968209707,\n          \"Y\": 593\n         },\n         {\n          \"X\": 2.36601173369922,\n          \"Y\": 601\n         },\n         {\n          \"X\": 2.422133470577468,\n          \"Y\": 649\n         },\n         {\n          \"X\": 2.4782552074557165,\n          \"Y\": 662\n         },\n         {\n          \"X\": 2.5343769443339657,\n          \"Y\": 655\n         },\n         {\n          \"X\": 2.590498681212214,\n          \"Y\": 702\n         },\n         {\n          \"X\": 2.6466204180904622,\n          \"Y\": 715\n         },\n         {\n          \"X\": 2.7027421549687114,\n          \"Y\": 681\n         },\n         {\n          \"X\": 2.7588638918469597,\n          \"Y\": 714\n         },\n         {\n          \"X\": 2.814985628725208,\n          \"Y\": 677\n         },\n         {\n          \"X\": 2.871107365603457,\n          \"Y\": 706\n         },\n         {\n          \"X\": 2.9272291024817054,\n          \"Y\": 686\n         },\n         {\n          \"X\": 2.9833508393599537,\n          \"Y\": 665\n         },\n         {\n          \"X\": 3.039472576238203,\n          \"Y\": 678\n         },\n         {\n          \"X\": 3.095594313116451,\n          \"Y\": 647\n         },\n         {\n          \"X\": 3.1517160499946995,\n          \"Y\": 681\n         },\n         {\n          \"X\": 3.2078377868729486,\n          \"Y\": 642\n         },\n         {\n          \"X\": 3.263959523751197,\n          \"Y\": 657\n         },\n         {\n          \"X\": 3.320081260629445,\n          \"Y\": 613\n         },\n         {\n          \"X\": 3.3762029975076944,\n          \"Y\": 628\n         },\n         {\n          \"X\": 3.4323247343859427,\n          \"Y\": 645\n         },\n         {\n          \"X\": 3.488446471264191,\n          \"Y\": 625\n         },\n         {\n          \"X\": 3.54456820814244,\n          \"Y\": 594\n         },\n         {\n          \"X\": 3.6006899450206884,\n          \"Y\": 604\n         },\n         {\n          \"X\": 3.6568116818989385,\n          \"Y\": 530\n         },\n         {\n          \"X\": 3.7129334187771867,\n          \"Y\": 506\n         },\n         {\n          \"X\": 3.769055155655435,\n          \"Y\": 478\n         },\n         {\n          \"X\": 3.8251768925336833,\n          \"Y\": 474\n         },\n         {\n          \"X\": 3.8812986294119316,\n          \"Y\": 440\n         },\n         {\n          \"X\": 3.93742036629018,\n          \"Y\": 402\n         },\n         {\n          \"X\": 3.99354210316843,\n          \"Y\": 414\n         },\n         {\n          \"X\": 4.049663840046678,\n          \"Y\": 368\n         },\n         {\n          \"X\": 4.1057855769249265,\n          \"Y\": 362\n         },\n         {\n          \"X\": 4.161907313803175,\n          \"Y\": 349\n         },\n         {\n          \"X\": 4.218029050681423,\n          \"Y\": 294\n         },\n         {\n          \"X\": 4.274150787559671,\n          \"Y\": 300\n         },\n         {\n          \"X\": 4.330272524437921,\n          \"Y\": 275\n         },\n         {\n          \"X\": 4.38639426131617,\n          \"Y\": 252\n         },\n         {\n          \"X\": 4.442515998194418,\n          \"Y\": 251\n         },\n         {\n          \"X\": 4.498637735072666,\n          \"Y\": 237\n         },\n         {\n          \"X\": 4.554759471950915,\n          \"Y\": 211\n         },\n         {\n          \"X\": 4.610881208829163,\n          \"Y\": 182\n         },\n         {\n          \"X\": 4.667002945707413,\n          \"Y\": 168\n         },\n         {\n          \"X\": 4.723124682585661,\n          \"Y\": 145\n         },\n         {\n          \"X\": 4.7792464194639095,\n          \"Y\": 134\n         },\n         {\n          \"X\": 4.835368156342158,\n          \"Y\": 133\n         },\n         {\n          \"X\": 4.891489893220406,\n          \"Y\": 99\n         },\n         {\n          \"X\": 4.947611630098654,\n          \"Y\": 110\n         },\n         {\n          \"X\": 5.003733366976904,\n          \"Y\": 89\n         },\n         {\n          \"X\": 5.059855103855153,\n          \"Y\": 73\n         },\n         {\n          \"X\": 5.115976840733401,\n          \"Y\": 70\n         },\n         {\n          \"X\": 5.172098577611649,\n          \"Y\": 61\n         },\n         {\n          \"X\": 5.2282203144898975,\n          \"Y\": 48\n         },\n         {\n          \"X\": 5.284342051368146,\n          \"Y\": 60\n         },\n         {\n          \"X\": 5.340463788246396,\n          \"Y\": 41\n         },\n         {\n          \"X\": 5.396585525124644,\n          \"Y\": 39\n         },\n         {\n          \"X\": 5.4527072620028925,\n          \"Y\": 39\n         },\n         {\n          \"X\": 5.508828998881141,\n          \"Y\": 35\n         },\n         {\n          \"X\": 5.564950735759389,\n          \"Y\": 27\n         },\n         {\n          \"X\": 5.621072472637637,\n          \"Y\": 19\n         },\n         {\n          \"X\": 5.677194209515887,\n          \"Y\": 25\n         },\n         {\n          \"X\": 5.733315946394136,\n          \"Y\": 19\n         },\n         {\n          \"X\": 5.789437683272384,\n          \"Y\": 20\n         },\n         {\n          \"X\": 5.845559420150632,\n          \"Y\": 14\n         },\n         {\n          \"X\": 5.9016811570288805,\n          \"Y\": 9\n         },\n         {\n          \"X\": 5.957802893907129,\n          \"Y\": 6\n         },\n         {\n          \"X\": 6.013924630785379,\n          \"Y\": 7\n         },\n         {\n          \"X\": 6.070046367663627,\n          \"Y\": 6\n         },\n         {\n          \"X\": 6.126168104541875,\n          \"Y\": 3\n         },\n         {\n          \"X\": 6.182289841420124,\n          \"Y\": 6\n         },\n         {\n          \"X\": 6.238411578298372,\n          \"Y\": 1\n         },\n         {\n          \"X\": 6.29453331517662,\n          \"Y\": 3\n         },\n         {\n          \"X\": 6.35065505205487,\n          \"Y\": 5\n         },\n         {\n          \"X\": 6.406776788933119,\n          \"Y\": 1\n         },\n         {\n          \"X\": 6.462898525811367,\n          \"Y\": 5\n         },\n         {\n          \"X\": 6.519020262689615,\n          \"Y\": 0\n         },\n         {\n          \"X\": 6.5751419995678635,\n          \"Y\": 2\n         },\n         {\n          \"X\": 6.631263736446112,\n          \"Y\": 0\n         },\n         {\n          \"X\": 6.68738547332436,\n          \"Y\": 2\n         },\n         {\n          \"X\": 6.74350721020261,\n          \"Y\": 1\n         }\n        ]\n       },\n       \"encoding\": {\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"bar\",\n       \"width\": 400\n      },\n      \"image/png\": \"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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"sampler . unweighted $ plot . histogramToList . histogram 200 <$> replicateM 100000 (runWeightedT $ unweighted model4)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"But obviously, we'd like to take samples from the posterior. We can do so as follows:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[(4.22455827914325,1.0),(0.906234848690838,1.0),(2.6860029976528135,1.0),(-0.17404924439421926,0.0),(-1.1044111213397145,0.0),(-0.5604681812378783,0.0),(-0.1850630831580971,0.0),(3.354382098966137,1.0),(2.641529507690727,1.0),(0.7142981214125107,1.0)]\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"draws4 <- sampler $ replicateM 10 $ runWeightedT model4\\n\",\n    \"draws4\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"application/vnd.vegalite.v4+json\": {\n       \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.json\",\n       \"data\": {\n        \"values\": [\n         {\n          \"X\": -22.842799802410326,\n          \"Y\": 0.5651872960063646\n         },\n         {\n          \"X\": -22.618977555338,\n          \"Y\": 0\n         },\n         {\n          \"X\": -22.39515530826567,\n          \"Y\": 0\n         },\n         {\n          \"X\": -22.171333061193344,\n          \"Y\": 0\n         },\n         {\n          \"X\": -21.947510814121017,\n          \"Y\": 0\n         },\n         {\n          \"X\": -21.723688567048686,\n          \"Y\": 0\n         },\n         {\n          \"X\": -21.49986631997636,\n          \"Y\": 0\n         },\n         {\n          \"X\": -21.276044072904032,\n          \"Y\": 0.44956216495009277\n         },\n         {\n          \"X\": -21.052221825831705,\n          \"Y\": 0\n         },\n         {\n          \"X\": -20.828399578759377,\n          \"Y\": 0\n         },\n         {\n          \"X\": -20.60457733168705,\n          \"Y\": 0\n         },\n         {\n          \"X\": -20.380755084614723,\n          \"Y\": 0\n         },\n         {\n          \"X\": -20.156932837542396,\n          \"Y\": 0\n         },\n         {\n          \"X\": -19.93311059047007,\n          \"Y\": 0\n         },\n         {\n          \"X\": -19.70928834339774,\n          \"Y\": 2.0687075203995375\n         },\n         {\n          \"X\": -19.48546609632541,\n          \"Y\": 4.339858032002964\n         },\n         {\n          \"X\": -19.261643849253083,\n          \"Y\": 0\n         },\n         {\n          \"X\": -19.037821602180756,\n          \"Y\": 0\n         },\n         {\n          \"X\": -18.81399935510843,\n          \"Y\": 8.123148756505628\n         },\n         {\n          \"X\": -18.5901771080361,\n          \"Y\": 7.82393823497889\n         },\n         {\n          \"X\": -18.366354860963774,\n          \"Y\": 4.750111874678893\n         },\n         {\n          \"X\": -18.142532613891447,\n          \"Y\": 4.322394361536562\n         },\n         {\n          \"X\": -17.91871036681912,\n          \"Y\": 14.558395289295394\n         },\n         {\n          \"X\": -17.694888119746793,\n          \"Y\": 2.793615142217626\n         },\n         {\n          \"X\": -17.471065872674465,\n          \"Y\": 2.5293823056503517\n         },\n         {\n          \"X\": -17.247243625602138,\n          \"Y\": 3.917679517980818\n         },\n         {\n          \"X\": -17.023421378529807,\n          \"Y\": 4.700100876648693\n         },\n         {\n          \"X\": -16.79959913145748,\n          \"Y\": 3.111510893131353\n         },\n         {\n          \"X\": -16.575776884385153,\n          \"Y\": 3.7208314513304197\n         },\n         {\n          \"X\": -16.351954637312826,\n          \"Y\": 5.899405014149403\n         },\n         {\n          \"X\": -16.1281323902405,\n          \"Y\": 2.8030587284845763\n         },\n         {\n          \"X\": -15.904310143168171,\n          \"Y\": 4.4849334652679875\n         },\n         {\n          \"X\": -15.680487896095844,\n          \"Y\": 3.6916894041523993\n         },\n         {\n          \"X\": -15.456665649023517,\n          \"Y\": 6.16174027489882\n         },\n         {\n          \"X\": -15.232843401951188,\n          \"Y\": 9.12472870011728\n         },\n         {\n          \"X\": -15.00902115487886,\n          \"Y\": 6.068944530998471\n         },\n         {\n          \"X\": -14.785198907806533,\n          \"Y\": 13.621247367763253\n         },\n         {\n          \"X\": -14.561376660734204,\n          \"Y\": 14.820722997393482\n         },\n         {\n          \"X\": -14.337554413661877,\n          \"Y\": 24.270452897658643\n         },\n         {\n          \"X\": -14.11373216658955,\n          \"Y\": 29.906150722818847\n         },\n         {\n          \"X\": -13.889909919517223,\n          \"Y\": 54.65893457599302\n         },\n         {\n          \"X\": -13.666087672444895,\n          \"Y\": 74.35004726562961\n         },\n         {\n          \"X\": -13.442265425372566,\n          \"Y\": 97.50029363161545\n         },\n         {\n          \"X\": -13.21844317830024,\n          \"Y\": 133.2435347634858\n         },\n         {\n          \"X\": -12.994620931227912,\n          \"Y\": 153.67966743690567\n         },\n         {\n          \"X\": -12.770798684155585,\n          \"Y\": 146.1827696205524\n         },\n         {\n          \"X\": -12.546976437083257,\n          \"Y\": 252.15076905023312\n         },\n         {\n          \"X\": -12.323154190010928,\n          \"Y\": 223.9218805775959\n         },\n         {\n          \"X\": -12.099331942938601,\n          \"Y\": 201.7504372793475\n         },\n         {\n          \"X\": -11.875509695866274,\n          \"Y\": 242.87041129443276\n         },\n         {\n          \"X\": -11.651687448793947,\n          \"Y\": 233.26776877306673\n         },\n         {\n          \"X\": -11.42786520172162,\n          \"Y\": 213.62637221569526\n         },\n         {\n          \"X\": -11.20404295464929,\n          \"Y\": 199.2272986148573\n         },\n         {\n          \"X\": -10.980220707576963,\n          \"Y\": 181.5139443350445\n         },\n         {\n          \"X\": -10.756398460504636,\n          \"Y\": 161.67880499843506\n         },\n         {\n          \"X\": -10.532576213432309,\n          \"Y\": 120.96154559492571\n         },\n         {\n          \"X\": -10.308753966359982,\n          \"Y\": 120.2768278269716\n         },\n         {\n          \"X\": -10.084931719287653,\n          \"Y\": 110.65477434269435\n         },\n         {\n          \"X\": -9.861109472215325,\n          \"Y\": 105.14968794000318\n         },\n         {\n          \"X\": -9.637287225142998,\n          \"Y\": 105.32719766435925\n         },\n         {\n          \"X\": -9.413464978070671,\n          \"Y\": 101.40255815754203\n         },\n         {\n          \"X\": -9.189642730998344,\n          \"Y\": 125.1977999599531\n         },\n         {\n          \"X\": -8.965820483926015,\n          \"Y\": 149.3173714894611\n         },\n         {\n          \"X\": -8.741998236853687,\n          \"Y\": 175.30457064935766\n         },\n         {\n          \"X\": -8.51817598978136,\n          \"Y\": 219.06088557122433\n         },\n         {\n          \"X\": -8.294353742709033,\n          \"Y\": 287.1911932581536\n         },\n         {\n          \"X\": -8.070531495636706,\n          \"Y\": 418.44333043573374\n         },\n         {\n          \"X\": -7.846709248564377,\n          \"Y\": 537.5326407260524\n         },\n         {\n          \"X\": -7.62288700149205,\n          \"Y\": 731.2557797637198\n         },\n         {\n          \"X\": -7.399064754419722,\n          \"Y\": 957.9513790260437\n         },\n         {\n          \"X\": -7.175242507347395,\n          \"Y\": 1189.0720818409345\n         },\n         {\n          \"X\": -6.951420260275068,\n          \"Y\": 1477.9954678948889\n         },\n         {\n          \"X\": -6.727598013202741,\n          \"Y\": 1772.693177059477\n         },\n         {\n          \"X\": -6.503775766130413,\n          \"Y\": 2166.7207798931513\n         },\n         {\n          \"X\": -6.279953519058083,\n          \"Y\": 2137.567572013035\n         },\n         {\n          \"X\": -6.056131271985755,\n          \"Y\": 2268.101636620837\n         },\n         {\n          \"X\": -5.832309024913428,\n          \"Y\": 2203.9294468416347\n         },\n         {\n          \"X\": -5.608486777841101,\n          \"Y\": 1957.904143590563\n         },\n         {\n          \"X\": -5.384664530768774,\n          \"Y\": 1741.9374720073022\n         },\n         {\n          \"X\": -5.1608422836964465,\n          \"Y\": 1676.8221548815127\n         },\n         {\n          \"X\": -4.937020036624119,\n          \"Y\": 1371.9753119020352\n         },\n         {\n          \"X\": -4.713197789551792,\n          \"Y\": 1150.4812551114735\n         },\n         {\n          \"X\": -4.489375542479465,\n          \"Y\": 1000.4558768529924\n         },\n         {\n          \"X\": -4.265553295407138,\n          \"Y\": 781.0420827272407\n         },\n         {\n          \"X\": -4.041731048334807,\n          \"Y\": 656.425198095446\n         },\n         {\n          \"X\": -3.8179088012624796,\n          \"Y\": 612.0626584390457\n         },\n         {\n          \"X\": -3.5940865541901523,\n          \"Y\": 575.3175532743659\n         },\n         {\n          \"X\": -3.370264307117825,\n          \"Y\": 550.9977986135556\n         },\n         {\n          \"X\": -3.146442060045498,\n          \"Y\": 550.0229468532232\n         },\n         {\n          \"X\": -2.9226198129731706,\n          \"Y\": 567.371914038189\n         },\n         {\n          \"X\": -2.6987975659008434,\n          \"Y\": 618.4035360573534\n         },\n         {\n          \"X\": -2.474975318828516,\n          \"Y\": 710.1690524342496\n         },\n         {\n          \"X\": -2.251153071756189,\n          \"Y\": 843.7111069292761\n         },\n         {\n          \"X\": -2.0273308246838617,\n          \"Y\": 1069.3291273657564\n         },\n         {\n          \"X\": -1.803508577611531,\n          \"Y\": 1334.1799971484531\n         },\n         {\n          \"X\": -1.5796863305392037,\n          \"Y\": 1632.091652938732\n         },\n         {\n          \"X\": -1.3558640834668765,\n          \"Y\": 2088.180952417543\n         },\n         {\n          \"X\": -1.1320418363945493,\n          \"Y\": 2611.9334318513947\n         },\n         {\n          \"X\": -0.908219589322222,\n          \"Y\": 3260.4838066853945\n         },\n         {\n          \"X\": -0.6843973422498948,\n          \"Y\": 3799.7843546170266\n         },\n         {\n          \"X\": -0.46057509517756756,\n          \"Y\": 4290.4941356038735\n         },\n         {\n          \"X\": -0.23675284810524033,\n          \"Y\": 4752.75132377283\n         },\n         {\n          \"X\": -0.012930601032913103,\n          \"Y\": 4773.632933935296\n         },\n         {\n          \"X\": 0.21089164603941413,\n          \"Y\": 4802.474435476092\n         },\n         {\n          \"X\": 0.4347138931117449,\n          \"Y\": 4489.091512776677\n         },\n         {\n          \"X\": 0.6585361401840721,\n          \"Y\": 4072.283855938352\n         },\n         {\n          \"X\": 0.8823583872563994,\n          \"Y\": 3260.177115952519\n         },\n         {\n          \"X\": 1.1061806343287266,\n          \"Y\": 2779.035079621072\n         },\n         {\n          \"X\": 1.3300028814010538,\n          \"Y\": 2176.991236301665\n         },\n         {\n          \"X\": 1.553825128473381,\n          \"Y\": 1814.7844291946233\n         },\n         {\n          \"X\": 1.7776473755457083,\n          \"Y\": 1356.4062797960905\n         },\n         {\n          \"X\": 2.0014696226180355,\n          \"Y\": 1099.9199931943251\n         },\n         {\n          \"X\": 2.2252918696903627,\n          \"Y\": 871.8518467630896\n         },\n         {\n          \"X\": 2.44911411676269,\n          \"Y\": 722.647020990324\n         },\n         {\n          \"X\": 2.6729363638350208,\n          \"Y\": 618.8397879243232\n         },\n         {\n          \"X\": 2.896758610907348,\n          \"Y\": 575.9344154646544\n         },\n         {\n          \"X\": 3.120580857979675,\n          \"Y\": 545.3298210412927\n         },\n         {\n          \"X\": 3.3444031050520024,\n          \"Y\": 546.9202605021705\n         },\n         {\n          \"X\": 3.5682253521243297,\n          \"Y\": 578.464107940347\n         },\n         {\n          \"X\": 3.792047599196657,\n          \"Y\": 588.7622731534417\n         },\n         {\n          \"X\": 4.015869846268984,\n          \"Y\": 698.3629534754714\n         },\n         {\n          \"X\": 4.239692093341311,\n          \"Y\": 768.2105721241956\n         },\n         {\n          \"X\": 4.463514340413639,\n          \"Y\": 954.3706485592971\n         },\n         {\n          \"X\": 4.687336587485966,\n          \"Y\": 1103.6977020723532\n         },\n         {\n          \"X\": 4.911158834558297,\n          \"Y\": 1399.939813693509\n         },\n         {\n          \"X\": 5.134981081630624,\n          \"Y\": 1613.9747339674761\n         },\n         {\n          \"X\": 5.358803328702951,\n          \"Y\": 1805.982971939544\n         },\n         {\n          \"X\": 5.582625575775278,\n          \"Y\": 2136.595376725489\n         },\n         {\n          \"X\": 5.8064478228476055,\n          \"Y\": 2219.846610918295\n         },\n         {\n          \"X\": 6.030270069919933,\n          \"Y\": 2198.247299165407\n         },\n         {\n          \"X\": 6.25409231699226,\n          \"Y\": 2207.205843536388\n         },\n         {\n          \"X\": 6.477914564064587,\n          \"Y\": 1932.4079782945\n         },\n         {\n          \"X\": 6.701736811136914,\n          \"Y\": 1837.8596051007985\n         },\n         {\n          \"X\": 6.925559058209245,\n          \"Y\": 1509.9541410112358\n         },\n         {\n          \"X\": 7.1493813052815725,\n          \"Y\": 1264.5913007337067\n         },\n         {\n          \"X\": 7.3732035523539,\n          \"Y\": 955.3791020084158\n         },\n         {\n          \"X\": 7.597025799426227,\n          \"Y\": 738.9068387956111\n         },\n         {\n          \"X\": 7.820848046498554,\n          \"Y\": 522.4334059272857\n         },\n         {\n          \"X\": 8.044670293570881,\n          \"Y\": 385.61301476042195\n         },\n         {\n          \"X\": 8.268492540643209,\n          \"Y\": 296.6211210432971\n         },\n         {\n          \"X\": 8.492314787715536,\n          \"Y\": 269.8331604679822\n         },\n         {\n          \"X\": 8.716137034787863,\n          \"Y\": 169.918034982686\n         },\n         {\n          \"X\": 8.93995928186019,\n          \"Y\": 148.06606176262508\n         },\n         {\n          \"X\": 9.163781528932521,\n          \"Y\": 110.31798286636354\n         },\n         {\n          \"X\": 9.387603776004848,\n          \"Y\": 113.6431873536555\n         },\n         {\n          \"X\": 9.611426023077176,\n          \"Y\": 100.92640387889041\n         },\n         {\n          \"X\": 9.835248270149503,\n          \"Y\": 109.45722767832254\n         },\n         {\n          \"X\": 10.05907051722183,\n          \"Y\": 97.45361962728197\n         },\n         {\n          \"X\": 10.282892764294164,\n          \"Y\": 111.66698878495313\n         },\n         {\n          \"X\": 10.506715011366492,\n          \"Y\": 119.87081429690616\n         },\n         {\n          \"X\": 10.730537258438819,\n          \"Y\": 146.30913569441122\n         },\n         {\n          \"X\": 10.954359505511146,\n          \"Y\": 151.51013799914887\n         },\n         {\n          \"X\": 11.178181752583473,\n          \"Y\": 197.77596501990487\n         },\n         {\n          \"X\": 11.4020039996558,\n          \"Y\": 193.78412092295815\n         },\n         {\n          \"X\": 11.625826246728128,\n          \"Y\": 237.18895731727562\n         },\n         {\n          \"X\": 11.849648493800455,\n          \"Y\": 260.46813837982273\n         },\n         {\n          \"X\": 12.073470740872782,\n          \"Y\": 187.67569619232503\n         },\n         {\n          \"X\": 12.29729298794511,\n          \"Y\": 222.4272067542196\n         },\n         {\n          \"X\": 12.521115235017437,\n          \"Y\": 205.97451188803967\n         },\n         {\n          \"X\": 12.744937482089764,\n          \"Y\": 200.5860698690712\n         },\n         {\n          \"X\": 12.968759729162091,\n          \"Y\": 145.9769251167198\n         },\n         {\n          \"X\": 13.192581976234418,\n          \"Y\": 103.52405527038997\n         },\n         {\n          \"X\": 13.416404223306746,\n          \"Y\": 108.05326531274945\n         },\n         {\n          \"X\": 13.640226470379073,\n          \"Y\": 64.7013127028666\n         },\n         {\n          \"X\": 13.8640487174514,\n          \"Y\": 43.657503740975066\n         },\n         {\n          \"X\": 14.087870964523727,\n          \"Y\": 30.690622608579325\n         },\n         {\n          \"X\": 14.311693211596054,\n          \"Y\": 32.99220168412673\n         },\n         {\n          \"X\": 14.535515458668382,\n          \"Y\": 17.77364360530488\n         },\n         {\n          \"X\": 14.759337705740716,\n          \"Y\": 13.194314156356667\n         },\n         {\n          \"X\": 14.983159952813043,\n          \"Y\": 8.07512664814914\n         },\n         {\n          \"X\": 15.20698219988537,\n          \"Y\": 7.149438276443698\n         },\n         {\n          \"X\": 15.430804446957698,\n          \"Y\": 8.426814402370677\n         },\n         {\n          \"X\": 15.654626694030025,\n          \"Y\": 6.645675323843104\n         },\n         {\n          \"X\": 15.878448941102352,\n          \"Y\": 5.614160212905122\n         },\n         {\n          \"X\": 16.10227118817468,\n          \"Y\": 2.378011712614433\n         },\n         {\n          \"X\": 16.326093435247007,\n          \"Y\": 3.471594782806771\n         },\n         {\n          \"X\": 16.549915682319334,\n          \"Y\": 2.6179325969870044\n         },\n         {\n          \"X\": 16.77373792939166,\n          \"Y\": 6.7469142437904885\n         },\n         {\n          \"X\": 16.99756017646399,\n          \"Y\": 3.7791641744264495\n         },\n         {\n          \"X\": 17.221382423536316,\n          \"Y\": 3.9525780642898423\n         },\n         {\n          \"X\": 17.445204670608643,\n          \"Y\": 2.373881125937457\n         },\n         {\n          \"X\": 17.66902691768097,\n          \"Y\": 0\n         },\n         {\n          \"X\": 17.892849164753297,\n          \"Y\": 3.4534677683567336\n         },\n         {\n          \"X\": 18.116671411825624,\n          \"Y\": 4.107939892728238\n         },\n         {\n          \"X\": 18.34049365889795,\n          \"Y\": 9.416950016355077\n         },\n         {\n          \"X\": 18.56431590597028,\n          \"Y\": 5.202114883682357\n         },\n         {\n          \"X\": 18.788138153042606,\n          \"Y\": 8.13062146105124\n         },\n         {\n          \"X\": 19.011960400114933,\n          \"Y\": 0\n         },\n         {\n          \"X\": 19.235782647187268,\n          \"Y\": 2.48356260163596\n         },\n         {\n          \"X\": 19.459604894259595,\n          \"Y\": 4.778556709905142\n         },\n         {\n          \"X\": 19.683427141331922,\n          \"Y\": 2.067113298630091\n         },\n         {\n          \"X\": 19.90724938840425,\n          \"Y\": 3.290158732154683\n         },\n         {\n          \"X\": 20.131071635476577,\n          \"Y\": 0\n         },\n         {\n          \"X\": 20.354893882548904,\n          \"Y\": 1.0597666013075362\n         },\n         {\n          \"X\": 20.57871612962123,\n          \"Y\": 0.7790652984532493\n         },\n         {\n          \"X\": 20.80253837669356,\n          \"Y\": 0.6468429751884207\n         },\n         {\n          \"X\": 21.026360623765886,\n          \"Y\": 0\n         },\n         {\n          \"X\": 21.250182870838213,\n          \"Y\": 0\n         },\n         {\n          \"X\": 21.47400511791054,\n          \"Y\": 0\n         },\n         {\n          \"X\": 21.697827364982867,\n          \"Y\": 0\n         }\n        ]\n       },\n       \"encoding\": {\n        \"x\": {\n         \"field\": \"X\",\n         \"type\": \"quantitative\"\n        },\n        \"y\": {\n         \"field\": \"Y\",\n         \"type\": \"quantitative\"\n        }\n       },\n       \"height\": 400,\n       \"mark\": \"bar\",\n       \"width\": 400\n      },\n      \"image/png\": \"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hyopiCWPlA/WEEseZEwGdvKDWPL8pmqN8aFKCmKpRGrXrl20dOlSatmyJaWnp9OGDRsoOTm5zrasrIymTp1KFy5coKSkJFqzZg21a9eOjh8/TjNmzKCEhATq2rUrLV++nOLj42nu3Ll09OhRqqyslPX2798/bDsglkouClsIk4Gd/CCWPL+pWmN8qJKCWCqRuv/+++mll16ijIwMevzxx2nAgAH0pS99qc524cKFlJ2dTVOmTKHNmzfTvn37aMWKFVRYWEhr166lbt260bRp02jo0KFSbNetW0cbN26kkpISKioqosOHD0MslTzhvhAmA/fM6ltEih/Ekuc3VetI+RftUyXAKxfOv8a/ZykywTFjxtDXvvY1GjZsWF0vBg0aRJs2baIOHTrQpUuXpJgeOXKEevToQSdPnpTltm/fTnv27JGCm5ubSxMmTJDn+/btK8+3adMmJBVklmaChVerPmtMVqFZQiz1xVhTNSH+eJxt5WdULH/605/SggUL6L777pPZolhOrT26d+9OBw8epNTUVHmqc+fOdOjQIRoxYgQVFxfLc/v376eVK1fKzFKcHzlypDw/fPhweV4s04oyBw4caOQ9IdA4QCCWCDz38xP01rny4C4HAkRxca4x3NezPT14dyfXdjAAAdsJBAIBysnJadQNo2IpriYuPHv2bMrKypL/rD0GDhxIW7ZskecvX74s70GKpdX8/Hw6ceKELLZz504S9z7T0tIoLy+Pxo0bJ88XFBTI85mZmSH9gsySF662/vLj9VqfdaT4IbPU58OmaoqUf1V7h/apkgpdztdl2GvXrsksUCyjig0+L7zwAp06dYq+973vUXl5uRS/OXPmUO/evWn8+PGy3I4dO2S2KERTiGinTp2kuPbr109mn9u2baNVq1ZRaWmpzCyPHTsWlgjE0kyw8GrVZ43JIDRLiKW+GINYmmNp6/g1llk+99xz9OKLL1LHjh3pnXfekZt9hOgJ8Tt9+jSdO3dOZorifqTYGSt2y4qyYkl15syZMuMUu2fXr18vd8ZOmjRJlhNiuXjxYhoyZAjE0lA82xrMhnC4rjZS/CCWrl3lySBS/lVtLNqnSioKMsvaJlRVVdFHH30kM8naY968ebRkyZK6/xZLsCkpKY1aXVFREfSoiSggzonHTOIc7sEgszQTLLxa9VljMkBmqS+a3NeE+HPPrL6F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\"\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"model5 :: MonadMeasure m => m Double\\n\",\n    \"model5 = do\\n\",\n    \"    x <- normal 0 5\\n\",\n    \"    (factor . Exp) (cos x)\\n\",\n    \"    return x\\n\",\n    \"\\n\",\n    \"sampler $ \\n\",\n    \"    plot . histogramToList . histogram 200\\n\",\n    \"    <$> replicateM 100000 (runWeightedT model5)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Haskell - nixpkgs\",\n   \"language\": \"haskell\",\n   \"name\": \"ihaskell_nixpkgs\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": \"ihaskell\",\n   \"file_extension\": \".hs\",\n   \"mimetype\": \"text/x-haskell\",\n   \"name\": \"haskell\",\n   \"pygments_lexer\": \"Haskell\",\n   \"version\": \"9.0.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 4\n}\n"
  },
  {
    "path": "plots.py",
    "content": "import matplotlib.pyplot as plt\nimport pandas as pd\nimport re\n\nbenchmark_pattern = \"(?P<system>(MonadBayes|Anglican|WebPPL))_(?P<model>(LR|HMM|LDA))(?P<length>[0-9]+)_(?P<alg>(SMC(?P<smcparam>[0-9]+$)|MH(?P<mhparam>[0-9]+$)|RMSMC(?P<rmsmcparam>[0-9]+-[0-9]+$)))\"\nbenchmark_reg = re.compile(benchmark_pattern)\nrmsmc_pattern = \"(?P<particles>[0-9]+)-(?P<steps>[0-9]+)\"\nrmsmc_reg = re.compile(rmsmc_pattern)\n\n\ndef unpack_name(benchmark_name):\n    m = benchmark_reg.match(benchmark_name)\n    if m is None:\n        return None\n\n    def lookup(property_name):\n        return m.expand(\"\\g<\" + property_name + \">\")\n\n    system = lookup(\"system\")\n    model = lookup(\"model\")\n    length = int(lookup(\"length\"))\n    alg = lookup(\"alg\")\n    if alg[:3] == \"SMC\":\n        alg_name = \"SMC\"\n        particles = int(lookup(\"smcparam\"))\n        steps = 0\n    elif alg[:2] == \"MH\":\n        alg_name = \"MH\"\n        particles = 0\n        steps = int(lookup(\"mhparam\"))\n    elif alg[:5] == \"RMSMC\":\n        alg_name = \"RMSMC\"\n        t = rmsmc_reg.match(lookup(\"rmsmcparam\"))\n        particles = int(t.expand(\"\\g<particles>\"))\n        steps = int(t.expand(\"\\g<steps>\"))\n    else:\n        raise ValueError(\"Unrecognized algorithm: \" + alg)\n    return system, model, length, alg_name, particles, steps\n\n\ndef unpack_names(series):\n    x = list(filter(lambda y: y is not None, [unpack_name(name) for name in series]))\n    systems = [y[0] for y in x]\n    models = [y[1] for y in x]\n    lengths = [y[2] for y in x]\n    algs = [y[3] for y in x]\n    particless = [y[4] for y in x]\n    stepss = [y[5] for y in x]\n    return pd.DataFrame(\n        {\n            \"system\": systems,\n            \"model\": models,\n            \"length\": lengths,\n            \"alg\": algs,\n            \"particles\": particless,\n            \"steps\": stepss,\n        }\n    )\n\n\ndef style(system):\n    if system == \"MonadBayes\":\n        return \"ro\"\n    elif system == \"Anglican\":\n        return \"bs\"\n    else:\n        return \"gX\"\n\n\nmodels = [\"LR\", \"HMM\", \"LDA\"]\nalgs = [\"MH\", \"SMC\", \"RMSMC\"]\nsystems = [\"MonadBayes\", \"Anglican\", \"WebPPL\"]\n\n\n# plot execution time vs. dataset size\n\nbenchmarks = pd.read_csv(\"speed-length.csv\")\nresults = unpack_names(benchmarks[\"Name\"])\nresults[\"time\"] = benchmarks[\"Mean\"]\nresults[\"timeLB\"] = benchmarks[\"MeanLB\"]\nresults[\"timeUB\"] = benchmarks[\"MeanUB\"]\n\n\nmhsteps = 100\nsmcsize = 100\nrmsize, rmsteps = 10, 1\n\nfig, subplots = plt.subplots(nrows=len(models), ncols=len(algs), figsize=(12, 8))\nlines = []\nfor i in range(len(models)):\n    model = models[i]\n    for j in range(len(algs)):\n        alg = algs[j]\n        subplot = subplots[i, j]\n        data = results.loc[(results[\"model\"] == model) & (results[\"alg\"] == alg)]\n        if alg == \"MH\":\n            data = data.loc[data[\"steps\"] == mhsteps]\n        elif alg == \"SMC\":\n            data = data.loc[data[\"particles\"] == smcsize]\n        else:\n            data = data.loc[(data[\"steps\"] == rmsteps) & (data[\"particles\"] == rmsize)]\n        for system in systems:\n            t = data.loc[data[\"system\"] == system]\n            xs = t[\"length\"]\n            ys = t[\"time\"]\n            if model == \"LDA\":\n                # LDA has 5 documents\n                xs = xs * 5\n            (line,) = subplot.plot(xs, ys, style(system), label=system)\n            lines.append((line, system))\n        if i == len(models) - 1:\n            subplot.set_xlabel(\"Dataset size\")\n        if j == 0:\n            subplot.set_ylabel(\"Execution time [s]\")\n\npad = 5\nalgnames = [\n    \"MH\" + str(mhsteps),\n    \"SMC\" + str(smcsize),\n    \"RMSMC\" + str(rmsize) + \"-\" + str(rmsteps),\n]\nfor ax, col in zip(subplots[0], algnames):\n    ax.annotate(\n        col,\n        xy=(0.5, 1),\n        xytext=(0, pad),\n        xycoords=\"axes fraction\",\n        textcoords=\"offset points\",\n        size=\"large\",\n        ha=\"center\",\n        va=\"baseline\",\n    )\n\nfor ax, row in zip(subplots[:, 0], models):\n    ax.annotate(\n        row,\n        xy=(0, 0.5),\n        xytext=(-ax.yaxis.labelpad - pad, 0),\n        xycoords=ax.yaxis.label,\n        textcoords=\"offset points\",\n        size=\"large\",\n        ha=\"right\",\n        va=\"center\",\n    )\n\na, b = zip(*lines[:3])\nb = (\"Ours\", b[1], b[2])\nplt.figlegend(a, b, \"upper right\")\nplt.savefig(\"length.pdf\")\n\n\n# plot execution time vs. # samples\n\nbenchmarks = pd.read_csv(\"speed-samples.csv\")\nresults = unpack_names(benchmarks[\"Name\"])\nresults[\"time\"] = benchmarks[\"Mean\"]\nresults[\"timeLB\"] = benchmarks[\"MeanLB\"]\nresults[\"timeUB\"] = benchmarks[\"MeanUB\"]\n\nlrlength = 50\nhmmlength = 20\nldalength = 10\nrmparticles = 10\nfig, subplots = plt.subplots(nrows=len(models), ncols=len(algs), figsize=(12, 8))\nlines = []\nfor i in range(len(models)):\n    model = models[i]\n    for j in range(len(algs)):\n        alg = algs[j]\n        subplot = subplots[i, j]\n        data = results.loc[(results[\"model\"] == model) & (results[\"alg\"] == alg)]\n        if model == \"LR\":\n            data = data.loc[data[\"length\"] == lrlength]\n        elif model == \"HMM\":\n            data = data.loc[data[\"length\"] == hmmlength]\n        else:\n            data = data.loc[data[\"length\"] == ldalength]\n        for system in systems:\n            t = data.loc[data[\"system\"] == system]\n            if alg == \"MH\":\n                xs = t[\"steps\"]\n                if i == len(models) - 1:\n                    subplot.set_xlabel(\"Number of steps\")\n            elif alg == \"SMC\":\n                xs = t[\"particles\"]\n                if i == len(models) - 1:\n                    subplot.set_xlabel(\"Number of particles\")\n            else:\n                t = t.loc[t[\"particles\"] == rmparticles]\n                xs = t[\"steps\"]\n                if i == len(models) - 1:\n                    subplot.set_xlabel(\"Number of rejuvenation steps\")\n            ys = t[\"time\"]\n            (line,) = subplot.plot(xs, ys, style(system), label=system)\n            lines.append((line, system))\n        if j == 0:\n            subplot.set_ylabel(\"Execution time [s]\")\n\npad = 5\nalgnames = [\"MH\", \"SMC\", \"RMSMC\" + str(rmsize)]\nfor ax, col in zip(subplots[0], algnames):\n    ax.annotate(\n        col,\n        xy=(0.5, 1),\n        xytext=(0, pad),\n        xycoords=\"axes fraction\",\n        textcoords=\"offset points\",\n        size=\"large\",\n        ha=\"center\",\n        va=\"baseline\",\n    )\n\nmodelnames = [\"LR\" + str(lrlength), \"HMM\" + str(hmmlength), \"LDA\" + str(ldalength * 5)]\nfor ax, row in zip(subplots[:, 0], modelnames):\n    ax.annotate(\n        row,\n        xy=(0, 0.5),\n        xytext=(-ax.yaxis.labelpad - pad, 0),\n        xycoords=ax.yaxis.label,\n        textcoords=\"offset points\",\n        size=\"large\",\n        ha=\"right\",\n        va=\"center\",\n    )\n\na, b = zip(*lines[:3])\nb = (\"Ours\", b[1], b[2])\nplt.figlegend(a, b, \"upper right\")\nplt.savefig(\"samples.pdf\")\n"
  },
  {
    "path": "profile.sh",
    "content": "#!/usr/bin/env sh\n# Generates profiling information for selected models and inference algorithms.\n\nstack build --profile\nfor model in LR100 HMM100 LDA50\ndo\n  for alg in SMC MH RMSMC\n  do\n    echo \"Profiling $alg on $model\"\n    stack exec --profile -- example -a $alg -m $model +RTS -p >/dev/null\n    file=$model-$alg\n    mv example.prof $file.prof\n    sed 's/no location info/no_location_info/' $file.prof  | awk '$8 !~ /0\\.0/' >$file-small.prof\n  done\ndone\n"
  },
  {
    "path": "regenerate_notebooks.sh",
    "content": "#!/usr/bin/env sh\n# Regenerates the notebook html files in `docs/docs/notebooks/`\n\nnix --print-build-logs develop .#default-jupyter --command jupyter-nbconvert --to html notebooks/examples/*.ipynb --output-dir docs/docs/notebooks/\n"
  },
  {
    "path": "shell.nix",
    "content": "(\n  import\n    (\n      let\n        lock = builtins.fromJSON (builtins.readFile ./flake.lock);\n      in\n      fetchTarball {\n        url = \"https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz\";\n        sha256 = lock.nodes.flake-compat.locked.narHash;\n      }\n    )\n    { src = ./.; }\n).shellNix\n"
  },
  {
    "path": "src/Control/Applicative/List.hs",
    "content": "{-# LANGUAGE StandaloneDeriving #-}\n\nmodule Control.Applicative.List where\n\n-- base\nimport Control.Applicative\nimport Data.Functor.Compose\n\n-- * Applicative ListT\n\n-- | _Applicative_ transformer adding a list/nondeterminism/choice effect.\n--   It is not a valid monad transformer, but it is a valid 'Applicative'.\nnewtype ListT m a = ListT {getListT :: Compose m [] a}\n  deriving newtype (Functor, Applicative, Alternative)\n\nlistT :: m [a] -> ListT m a\nlistT = ListT . Compose\n\nlift :: (Functor m) => m a -> ListT m a\nlift = ListT . Compose . fmap pure\n\nrunListT :: ListT m a -> m [a]\nrunListT = getCompose . getListT\n"
  },
  {
    "path": "src/Control/Monad/Bayes/Class.hs",
    "content": "{-# LANGUAGE ImportQualifiedPost #-}\n{-# LANGUAGE RankNTypes #-}\n{-# LANGUAGE RecordWildCards #-}\n{-# OPTIONS_GHC -Wno-deprecations #-}\n\n-- |\n-- Module      : Control.Monad.Bayes.Class\n-- Description : Types for probabilistic modelling\n-- Copyright   : (c) Adam Scibior, 2015-2020\n-- License     : MIT\n-- Maintainer  : leonhard.markert@tweag.io\n-- Stability   : experimental\n-- Portability : GHC\n--\n-- This module defines 'MonadMeasure', which can be used to represent any probabilistic program,\n-- such as the following:\n--\n-- @\n-- import Control.Monad (when)\n-- import Control.Monad.Bayes.Class\n--\n-- model :: MonadMeasure m => m Bool\n-- model = do\n--   rain <- bernoulli 0.3\n--   sprinkler <-\n--     bernoulli $\n--     if rain\n--       then 0.1\n--       else 0.4\n--   let wetProb =\n--     case (rain, sprinkler) of\n--       (True,  True)  -> 0.98\n--       (True,  False) -> 0.80\n--       (False, True)  -> 0.90\n--       (False, False) -> 0.00\n--   score wetProb\n--   return rain\n-- @\nmodule Control.Monad.Bayes.Class\n  ( MonadDistribution,\n    random,\n    uniform,\n    normal,\n    gamma,\n    beta,\n    bernoulli,\n    categorical,\n    logCategorical,\n    uniformD,\n    geometric,\n    poisson,\n    dirichlet,\n    MonadFactor,\n    score,\n    factor,\n    condition,\n    MonadMeasure,\n    discrete,\n    normalPdf,\n    Bayesian (..),\n    poissonPdf,\n    posterior,\n    priorPredictive,\n    posteriorPredictive,\n    independent,\n    mvNormal,\n    Histogram,\n    histogram,\n    histogramToList,\n    Distribution,\n    Measure,\n    Kernel,\n    Log (ln, Exp),\n    MonadUniformRange,\n    uniformR,\n  )\nwhere\n\nimport Control.Arrow (Arrow (second))\nimport Control.Monad (replicateM, when)\nimport Control.Monad.Cont (ContT)\nimport Control.Monad.Except (ExceptT)\nimport Control.Monad.Identity (IdentityT)\nimport Control.Monad.Reader (ReaderT)\nimport Control.Monad.State (StateT)\nimport Control.Monad.Trans.Class (lift)\nimport Control.Monad.Writer (WriterT)\nimport Data.Histogram qualified as H\nimport Data.Histogram.Fill qualified as H\nimport Data.Matrix\n  ( Matrix,\n    cholDecomp,\n    colVector,\n    getCol,\n    multStd,\n  )\nimport Data.Vector qualified as V\nimport Data.Vector.Generic as VG (Vector, map, mapM, null, sum, (!))\nimport Numeric.Log (Log (..))\nimport Statistics.Distribution\n  ( ContDistr (logDensity, quantile),\n    DiscreteDistr (logProbability, probability),\n  )\nimport Statistics.Distribution.Beta (betaDistr)\nimport Statistics.Distribution.Gamma (gammaDistr)\nimport Statistics.Distribution.Geometric (geometric0)\nimport Statistics.Distribution.Normal (normalDistr)\nimport Statistics.Distribution.Poisson qualified as Poisson\nimport Statistics.Distribution.Uniform (uniformDistr)\nimport System.Random (UniformRange)\n\n-- | Monads that can draw random variables.\nclass (Monad m) => MonadDistribution m where\n  -- | Draw from a uniform distribution.\n  random ::\n    -- | \\(\\sim \\mathcal{U}(0, 1)\\)\n    m Double\n\n  -- | Draw from a uniform distribution.\n  --\n  -- See also 'MonadUniformRange.uniformR' for types other than 'Double'.\n  uniform ::\n    -- | lower bound a\n    Double ->\n    -- | upper bound b\n    Double ->\n    -- | \\(\\sim \\mathcal{U}(a, b)\\).\n    m Double\n  uniform a b = draw (uniformDistr a b)\n\n  -- | Draw from a normal distribution.\n  normal ::\n    -- | mean μ\n    Double ->\n    -- | standard deviation σ\n    Double ->\n    -- | \\(\\sim \\mathcal{N}(\\mu, \\sigma^2)\\)\n    m Double\n  normal m s = draw (normalDistr m s)\n\n  -- | Draw from a gamma distribution.\n  gamma ::\n    -- | shape k\n    Double ->\n    -- | scale θ\n    Double ->\n    -- | \\(\\sim \\Gamma(k, \\theta)\\)\n    m Double\n  gamma shape scale = draw (gammaDistr shape scale)\n\n  -- | Draw from a beta distribution.\n  beta ::\n    -- | shape α\n    Double ->\n    -- | shape β\n    Double ->\n    -- | \\(\\sim \\mathrm{Beta}(\\alpha, \\beta)\\)\n    m Double\n  beta a b = draw (betaDistr a b)\n\n  -- | Draw from a Bernoulli distribution.\n  bernoulli ::\n    -- | probability p\n    Double ->\n    -- | \\(\\sim \\mathrm{B}(1, p)\\)\n    m Bool\n  bernoulli p = fmap (< p) random\n\n  -- | Draw from a categorical distribution.\n  categorical ::\n    (Vector v Double) =>\n    -- | event probabilities\n    v Double ->\n    -- | outcome category\n    m Int\n  categorical ps = if VG.null ps then error \"empty input list\" else fromPMF (ps !)\n\n  -- | Draw from a categorical distribution in the log domain.\n  logCategorical ::\n    (Vector v (Log Double), Vector v Double) =>\n    -- | event probabilities\n    v (Log Double) ->\n    -- | outcome category\n    m Int\n  logCategorical = categorical . VG.map (exp . ln)\n\n  -- | Draw from a discrete uniform distribution.\n  uniformD ::\n    -- | observable outcomes @xs@\n    [a] ->\n    -- | \\(\\sim \\mathcal{U}\\{\\mathrm{xs}\\}\\)\n    m a\n  uniformD xs = do\n    let n = Prelude.length xs\n    i <- categorical $ V.replicate n (1 / fromIntegral n)\n    return (xs !! i)\n\n  -- | Draw from a geometric distribution.\n  geometric ::\n    -- | success rate p\n    Double ->\n    -- | \\(\\sim\\) number of failed Bernoulli trials with success probability p before first success\n    m Int\n  geometric = discrete . geometric0\n\n  -- | Draw from a Poisson distribution.\n  poisson ::\n    -- | parameter λ\n    Double ->\n    -- | \\(\\sim \\mathrm{Pois}(\\lambda)\\)\n    m Int\n  poisson = discrete . Poisson.poisson\n\n  -- | Draw from a Dirichlet distribution.\n  dirichlet ::\n    (Vector v Double) =>\n    -- | concentration parameters @as@\n    v Double ->\n    -- | \\(\\sim \\mathrm{Dir}(\\mathrm{as})\\)\n    m (v Double)\n  dirichlet as = do\n    xs <- VG.mapM (`gamma` 1) as\n    let s = VG.sum xs\n    let ys = VG.map (/ s) xs\n    return ys\n\n-- | Draw from a continuous distribution using the inverse cumulative density\n-- function.\ndraw :: (ContDistr d, MonadDistribution m) => d -> m Double\ndraw d = fmap (quantile d) random\n\n-- | Draw from a discrete distribution using a sequence of draws from\n-- Bernoulli.\nfromPMF :: (MonadDistribution m) => (Int -> Double) -> m Int\nfromPMF p = f 0 1\n  where\n    f i r = do\n      when (r < 0) $ error \"fromPMF: total PMF above 1\"\n      let q = p i\n      when (q < 0 || q > 1) $ error \"fromPMF: invalid probability value\"\n      b <- bernoulli (q / r)\n      if b then pure i else f (i + 1) (r - q)\n\n-- | Draw from a discrete distributions using the probability mass function.\ndiscrete :: (DiscreteDistr d, MonadDistribution m) => d -> m Int\ndiscrete = fromPMF . probability\n\n-- | Monads that can score different execution paths.\nclass (Monad m) => MonadFactor m where\n  -- | Record a likelihood.\n  score ::\n    -- | likelihood of the execution path\n    Log Double ->\n    m ()\n\n-- | Synonym for 'score'.\nfactor ::\n  (MonadFactor m) =>\n  -- | likelihood of the execution path\n  Log Double ->\n  m ()\nfactor = score\n\n-- | synonym for pretty type signatures, but note that (A -> Distribution B) won't work as intended: for that, use Kernel\n-- Also note that the use of RankNTypes means performance may take a hit: really the main point of these signatures is didactic\ntype Distribution a = forall m. (MonadDistribution m) => m a\n\ntype Measure a = forall m. (MonadMeasure m) => m a\n\ntype Kernel a b = forall m. (MonadMeasure m) => a -> m b\n\n-- | Hard conditioning.\ncondition :: (MonadFactor m) => Bool -> m ()\ncondition b = score $ if b then 1 else 0\n\nindependent :: (Applicative m) => Int -> m a -> m [a]\nindependent = replicateM\n\n-- | Monads that support both sampling and scoring.\nclass (MonadDistribution m, MonadFactor m) => MonadMeasure m\n\n-- | Probability density function of the normal distribution.\nnormalPdf ::\n  -- | mean μ\n  Double ->\n  -- | standard deviation σ\n  Double ->\n  -- | sample x\n  Double ->\n  -- | relative likelihood of observing sample x in \\(\\mathcal{N}(\\mu, \\sigma^2)\\)\n  Log Double\nnormalPdf mu sigma x = Exp $ logDensity (normalDistr mu sigma) x\n\npoissonPdf :: Double -> Integer -> Log Double\npoissonPdf rate n = Exp $ logProbability (Poisson.poisson rate) (fromIntegral n)\n\n-- | multivariate normal\nmvNormal :: (MonadDistribution m) => V.Vector Double -> Matrix Double -> m (V.Vector Double)\nmvNormal mu bigSigma = do\n  let n = length mu\n  ss <- replicateM n (normal 0 1)\n  let bigL = cholDecomp bigSigma\n  let ts = (colVector mu) + bigL `multStd` (colVector $ V.fromList ss)\n  return $ getCol 1 ts\n\n-- | a useful datatype for expressing bayesian models\ndata Bayesian m z o = Bayesian\n  { prior :: m z, -- prior over latent variable Z; p(z)\n    generative :: z -> m o, -- distribution over observations given Z=z; p(o|Z=z)\n    likelihood :: z -> o -> Log Double -- p(o|z)\n  }\n\n-- | p(z|o)\nposterior :: (MonadMeasure m, Foldable f, Functor f) => Bayesian m z o -> f o -> m z\nposterior Bayesian {..} os = do\n  z <- prior\n  factor $ product $ fmap (likelihood z) os\n  return z\n\npriorPredictive :: (Monad m) => Bayesian m a b -> m b\npriorPredictive bm = prior bm >>= generative bm\n\nposteriorPredictive ::\n  (MonadMeasure m, Foldable f, Functor f) =>\n  Bayesian m a b ->\n  f b ->\n  m b\nposteriorPredictive bm os = posterior bm os >>= generative bm\n\n-- helper funcs\n--------------------\n\ntype Histogram = H.Histogram H.BinD Double\n\nhistogram :: Int -> [(Double, Log Double)] -> Histogram\nhistogram n v = H.fillBuilder buildr $ fmap (second (ln . exp)) v\n  where\n    v1 = fmap fst v\n    mi = Prelude.minimum v1\n    ma = Prelude.maximum v1\n    bins = H.binD mi n ma\n    buildr = H.mkWeighted bins\n\nhistogramToList :: Histogram -> [(Double, Double)]\nhistogramToList = H.asList\n\n-- | Monads that can efficiently draw uniform variables of\n-- 'UniformRange' types.\nclass (Monad m) => MonadUniformRange m where\n  -- | Draw from a uniform distribution for some 'UniformRange' type.\n  uniformR ::\n    (UniformRange a) =>\n    -- | lower bound l (inclusive for discrete types)\n    a ->\n    -- | upper bound u (inclusive for discrete types)\n    a ->\n    -- | \\(\\sim \\mathcal{U}(l, u)\\).\n    m a\n\n----------------------------------------------------------------------------\n-- Instances that lift probabilistic effects to standard tranformers.\n\ninstance (MonadDistribution m) => MonadDistribution (IdentityT m) where\n  random = lift random\n  bernoulli = lift . bernoulli\n\ninstance (MonadFactor m) => MonadFactor (IdentityT m) where\n  score = lift . score\n\ninstance (MonadMeasure m) => MonadMeasure (IdentityT m)\n\ninstance (MonadUniformRange m) => MonadUniformRange (IdentityT m) where\n  uniformR l u = lift $ uniformR l u\n\ninstance (MonadDistribution m) => MonadDistribution (ExceptT e m) where\n  random = lift random\n  uniformD = lift . uniformD\n\ninstance (MonadFactor m) => MonadFactor (ExceptT e m) where\n  score = lift . score\n\ninstance (MonadMeasure m) => MonadMeasure (ExceptT e m)\n\ninstance (MonadDistribution m) => MonadDistribution (ReaderT r m) where\n  random = lift random\n  bernoulli = lift . bernoulli\n\ninstance (MonadUniformRange m) => MonadUniformRange (ExceptT e m) where\n  uniformR l u = lift $ uniformR l u\n\ninstance (MonadFactor m) => MonadFactor (ReaderT r m) where\n  score = lift . score\n\ninstance (MonadMeasure m) => MonadMeasure (ReaderT r m)\n\ninstance (MonadUniformRange m) => MonadUniformRange (ReaderT r m) where\n  uniformR l u = lift $ uniformR l u\n\ninstance (Monoid w, MonadDistribution m) => MonadDistribution (WriterT w m) where\n  random = lift random\n  bernoulli = lift . bernoulli\n  categorical = lift . categorical\n\ninstance (Monoid w, MonadFactor m) => MonadFactor (WriterT w m) where\n  score = lift . score\n\ninstance (Monoid w, MonadMeasure m) => MonadMeasure (WriterT w m)\n\ninstance (Monoid w, MonadUniformRange m) => MonadUniformRange (WriterT w m) where\n  uniformR l u = lift $ uniformR l u\n\ninstance (MonadDistribution m) => MonadDistribution (StateT s m) where\n  random = lift random\n  bernoulli = lift . bernoulli\n  categorical = lift . categorical\n  uniformD = lift . uniformD\n\ninstance (MonadFactor m) => MonadFactor (StateT s m) where\n  score = lift . score\n\ninstance (MonadMeasure m) => MonadMeasure (StateT s m)\n\ninstance (MonadUniformRange m) => MonadUniformRange (StateT s m) where\n  uniformR l u = lift $ uniformR l u\n\ninstance (MonadDistribution m) => MonadDistribution (ContT r m) where\n  random = lift random\n\ninstance (MonadFactor m) => MonadFactor (ContT r m) where\n  score = lift . score\n\ninstance (MonadMeasure m) => MonadMeasure (ContT r m)\n\ninstance (MonadUniformRange m) => MonadUniformRange (ContT r m) where\n  uniformR l u = lift $ uniformR l u\n"
  },
  {
    "path": "src/Control/Monad/Bayes/Density/Free.hs",
    "content": "{-# LANGUAGE DerivingStrategies #-}\n{-# LANGUAGE GeneralizedNewtypeDeriving #-}\n{-# LANGUAGE MultiParamTypeClasses #-}\n{-# LANGUAGE RankNTypes #-}\n\n-- |\n-- Module      : Control.Monad.Bayes.Density.Free\n-- Description : Free monad transformer over random sampling\n-- Copyright   : (c) Adam Scibior, 2015-2020\n-- License     : MIT\n-- Maintainer  : leonhard.markert@tweag.io\n-- Stability   : experimental\n-- Portability : GHC\n--\n-- 'DensityT' is a free monad transformer over random sampling.\nmodule Control.Monad.Bayes.Density.Free\n  ( DensityT (..),\n    hoist,\n    interpret,\n    withRandomness,\n    runDensityT,\n    traced,\n  )\nwhere\n\nimport Control.Monad.Bayes.Class (MonadDistribution (random))\nimport Control.Monad.RWS\nimport Control.Monad.State (evalStateT)\nimport Control.Monad.Trans.Free.Church (FT, MonadFree (..), hoistFT, iterT, iterTM, liftF)\nimport Control.Monad.Writer (WriterT (..))\nimport Data.Functor.Identity (Identity, runIdentity)\n\n-- | Random sampling functor.\nnewtype SamF a = Random (Double -> a) deriving (Functor)\n\n-- | Free monad transformer over random sampling.\n--\n-- Uses the Church-encoded version of the free monad for efficiency.\nnewtype DensityT m a = DensityT {getDensityT :: FT SamF m a}\n  deriving newtype (Functor, Applicative, Monad, MonadTrans)\n\ninstance MonadFree SamF (DensityT m) where\n  wrap = DensityT . wrap . fmap getDensityT\n\ninstance (Monad m) => MonadDistribution (DensityT m) where\n  random = DensityT $ liftF (Random id)\n\n-- | Hoist 'DensityT' through a monad transform.\nhoist :: (Monad m, Monad n) => (forall x. m x -> n x) -> DensityT m a -> DensityT n a\nhoist f (DensityT m) = DensityT (hoistFT f m)\n\n-- | Execute random sampling in the transformed monad.\ninterpret :: (MonadDistribution m) => DensityT m a -> m a\ninterpret (DensityT m) = iterT f m\n  where\n    f (Random k) = random >>= k\n\n-- | Execute computation with supplied values for random choices.\nwithRandomness :: (Monad m) => [Double] -> DensityT m a -> m a\nwithRandomness randomness (DensityT m) = evalStateT (iterTM f m) randomness\n  where\n    f (Random k) = do\n      xs <- get\n      case xs of\n        [] -> error \"DensityT: the list of randomness was too short\"\n        y : ys -> put ys >> k y\n\n-- | Execute computation with supplied values for a subset of random choices.\n-- Return the output value and a record of all random choices used, whether\n-- taken as input or drawn using the transformed monad.\nrunDensityT :: (MonadDistribution m) => [Double] -> DensityT m a -> m (a, [Double])\nrunDensityT randomness (DensityT m) =\n  runWriterT $ evalStateT (iterTM f $ hoistFT lift m) randomness\n  where\n    f (Random k) = do\n      -- This block runs in StateT [Double] (WriterT [Double]) m.\n      -- StateT propagates consumed randomness while WriterT records\n      -- randomness used, whether old or new.\n      xs <- get\n      x <- case xs of\n        [] -> random\n        y : ys -> put ys >> return y\n      tell [x]\n      k x\n\n-- | Like 'density', but use an arbitrary sampling monad.\ntraced :: (MonadDistribution m) => [Double] -> DensityT Identity a -> m (a, [Double])\ntraced randomness m = runDensityT randomness $ hoist (return . runIdentity) m\n"
  },
  {
    "path": "src/Control/Monad/Bayes/Density/State.hs",
    "content": "{-# LANGUAGE DerivingStrategies #-}\n{-# LANGUAGE FlexibleInstances #-}\n{-# LANGUAGE GeneralizedNewtypeDeriving #-}\n{-# LANGUAGE MultiParamTypeClasses #-}\n\n-- |\n-- Slower than Control.Monad.Bayes.Density.Free, so not used by default,\n-- but more elementary to understand. Just uses standard\n-- monad transformer techniques.\nmodule Control.Monad.Bayes.Density.State where\n\nimport Control.Monad.Bayes.Class (MonadDistribution (random))\nimport Control.Monad.State (MonadState (get, put), StateT, evalStateT)\nimport Control.Monad.Writer\n\nnewtype DensityT m a = DensityT {getDensityT :: WriterT [Double] (StateT [Double] m) a} deriving newtype (Functor, Applicative, Monad)\n\ninstance MonadTrans DensityT where\n  lift = DensityT . lift . lift\n\ninstance (Monad m) => MonadState [Double] (DensityT m) where\n  get = DensityT $ lift $ get\n  put = DensityT . lift . put\n\ninstance (Monad m) => MonadWriter [Double] (DensityT m) where\n  tell = DensityT . tell\n  listen = DensityT . listen . getDensityT\n  pass = DensityT . pass . getDensityT\n\ninstance (MonadDistribution m) => MonadDistribution (DensityT m) where\n  random = do\n    trace <- get\n    x <- case trace of\n      [] -> random\n      r : xs -> put xs >> pure r\n    tell [x]\n    pure x\n\nrunDensityT :: (Monad m) => DensityT m b -> [Double] -> m (b, [Double])\nrunDensityT (DensityT m) = evalStateT (runWriterT m)\n"
  },
  {
    "path": "src/Control/Monad/Bayes/Enumerator.hs",
    "content": "{-# LANGUAGE DerivingStrategies #-}\n{-# LANGUAGE GeneralizedNewtypeDeriving #-}\n{-# LANGUAGE ImportQualifiedPost #-}\n\n-- |\n-- Module      : Control.Monad.Bayes.Enumerator\n-- Description : Exhaustive enumeration of discrete random variables\n-- Copyright   : (c) Adam Scibior, 2015-2020\n-- License     : MIT\n-- Maintainer  : leonhard.markert@tweag.io\n-- Stability   : experimental\n-- Portability : GHC\nmodule Control.Monad.Bayes.Enumerator\n  ( Enumerator,\n    logExplicit,\n    explicit,\n    evidence,\n    mass,\n    compact,\n    enumerator,\n    enumerate,\n    expectation,\n    normalForm,\n    toEmpirical,\n    toEmpiricalWeighted,\n    normalizeWeights,\n    enumerateToDistribution,\n    removeZeros,\n    fromList,\n  )\nwhere\n\nimport Control.Applicative (Alternative)\nimport Control.Arrow (second)\nimport Control.Monad (MonadPlus)\nimport Control.Monad.Bayes.Class\n  ( MonadDistribution (bernoulli, categorical, logCategorical, random),\n    MonadFactor (..),\n    MonadMeasure,\n  )\nimport Control.Monad.Writer (WriterT (..))\nimport Data.AEq (AEq, (===), (~==))\nimport Data.List (sortOn)\nimport Data.Map qualified as Map\nimport Data.Maybe (fromMaybe)\nimport Data.Monoid (Product (..))\nimport Data.Ord (Down (Down))\nimport Data.Vector qualified as VV\nimport Data.Vector.Generic qualified as V\nimport Numeric.Log as Log (Log (..), sum)\n\n-- | An exact inference transformer that integrates\n-- discrete random variables by enumerating all execution paths.\nnewtype Enumerator a = Enumerator (WriterT (Product (Log Double)) [] a)\n  deriving newtype (Functor, Applicative, Monad, Alternative, MonadPlus)\n\ninstance MonadDistribution Enumerator where\n  random = error \"Infinitely supported random variables not supported in Enumerator\"\n  bernoulli p = fromList [(True, (Exp . log) p), (False, (Exp . log) (1 - p))]\n  categorical v = fromList $ zip [0 ..] $ map (Exp . log) (V.toList v)\n\ninstance MonadFactor Enumerator where\n  score w = fromList [((), w)]\n\ninstance MonadMeasure Enumerator\n\n-- | Construct Enumerator from a list of values and associated weights.\nfromList :: [(a, Log Double)] -> Enumerator a\nfromList = Enumerator . WriterT . map (second Product)\n\n-- | Returns the posterior as a list of weight-value pairs without any post-processing,\n-- such as normalization or aggregation\nlogExplicit :: Enumerator a -> [(a, Log Double)]\nlogExplicit (Enumerator m) = map (second getProduct) $ runWriterT m\n\n-- | Same as `toList`, only weights are converted from log-domain.\nexplicit :: Enumerator a -> [(a, Double)]\nexplicit = map (second (exp . ln)) . logExplicit\n\n-- | Returns the model evidence, that is sum of all weights.\nevidence :: Enumerator a -> Log Double\nevidence = Log.sum . map snd . logExplicit\n\n-- | Normalized probability mass of a specific value.\nmass :: (Ord a) => Enumerator a -> a -> Double\nmass d = f\n  where\n    f a = fromMaybe 0 $ lookup a m\n    m = enumerator d\n\n-- | Aggregate weights of equal values.\n-- The resulting list is sorted ascendingly according to values.\ncompact :: (Num r, Ord a, Ord r) => [(a, r)] -> [(a, r)]\ncompact = sortOn (Down . snd) . Map.toAscList . Map.fromListWith (+)\n\n-- | Aggregate and normalize of weights.\n-- The resulting list is sorted ascendingly according to values.\n--\n-- > enumerator = compact . explicit\nenumerator, enumerate :: (Ord a) => Enumerator a -> [(a, Double)]\nenumerator d = filter ((/= 0) . snd) $ compact (zip xs ws)\n  where\n    (xs, ws) = second (map (exp . ln) . normalize) $ unzip (logExplicit d)\n\n-- | deprecated synonym\nenumerate = enumerator\n\n-- | Expectation of a given function computed using normalized weights.\nexpectation :: (a -> Double) -> Enumerator a -> Double\nexpectation f = Prelude.sum . map (\\(x, w) -> f x * (exp . ln) w) . normalizeWeights . logExplicit\n\nnormalize :: (Fractional b) => [b] -> [b]\nnormalize xs = map (/ z) xs\n  where\n    z = Prelude.sum xs\n\n-- | Divide all weights by their sum.\nnormalizeWeights :: (Fractional b) => [(a, b)] -> [(a, b)]\nnormalizeWeights ls = zip xs ps\n  where\n    (xs, ws) = unzip ls\n    ps = normalize ws\n\n-- | 'compact' followed by removing values with zero weight.\nnormalForm :: (Ord a) => Enumerator a -> [(a, Double)]\nnormalForm = filter ((/= 0) . snd) . compact . explicit\n\ntoEmpirical :: (Fractional b, Ord a, Ord b) => [a] -> [(a, b)]\ntoEmpirical ls = normalizeWeights $ compact (zip ls (repeat 1))\n\ntoEmpiricalWeighted :: (Fractional b, Ord a, Ord b) => [(a, b)] -> [(a, b)]\ntoEmpiricalWeighted = normalizeWeights . compact\n\nenumerateToDistribution :: (MonadDistribution n) => Enumerator a -> n a\nenumerateToDistribution model = do\n  let samples = logExplicit model\n  let (support, logprobs) = unzip samples\n  i <- logCategorical $ VV.fromList logprobs\n  return $ support !! i\n\nremoveZeros :: Enumerator a -> Enumerator a\nremoveZeros (Enumerator (WriterT a)) = Enumerator $ WriterT $ filter ((\\(Product x) -> x /= 0) . snd) a\n\ninstance (Ord a) => Eq (Enumerator a) where\n  p == q = normalForm p == normalForm q\n\ninstance (Ord a) => AEq (Enumerator a) where\n  p === q = xs == ys && ps === qs\n    where\n      (xs, ps) = unzip (normalForm p)\n      (ys, qs) = unzip (normalForm q)\n  p ~== q = xs == ys && ps ~== qs\n    where\n      (xs, ps) = unzip $ filter (not . (~== 0) . snd) $ normalForm p\n      (ys, qs) = unzip $ filter (not . (~== 0) . snd) $ normalForm q\n"
  },
  {
    "path": "src/Control/Monad/Bayes/Inference/Lazy/MH.hs",
    "content": "{-# LANGUAGE ImportQualifiedPost #-}\n{-# LANGUAGE RankNTypes #-}\n{-# LANGUAGE ScopedTypeVariables #-}\n{-# OPTIONS_GHC -Wno-name-shadowing #-}\n\nmodule Control.Monad.Bayes.Inference.Lazy.MH where\n\nimport Control.Monad.Bayes.Class (Log (ln))\nimport Control.Monad.Bayes.Sampler.Lazy\n  ( Sampler,\n    Tree (..),\n    Trees (..),\n    randomTree,\n    runSampler,\n  )\nimport Control.Monad.Bayes.Weighted (WeightedT, runWeightedT)\nimport Control.Monad.Extra (iterateM)\nimport Control.Monad.State.Lazy (MonadState (get, put), runState)\nimport System.Random (RandomGen (split), getStdGen, newStdGen)\nimport System.Random qualified as R\n\nmh :: forall a. Double -> WeightedT Sampler a -> IO [(a, Log Double)]\nmh p m = do\n  -- Top level: produce a stream of samples.\n  -- Split the random number generator in two\n  -- One part is used as the first seed for the simulation,\n  -- and one part is used for the randomness in the MH algorithm.\n  g <- newStdGen >> getStdGen\n  let (g1, g2) = split g\n  let t = randomTree g1\n  let (x, w) = runSampler (runWeightedT m) t\n  -- Now run step over and over to get a stream of (tree,result,weight)s.\n  let (samples, _) = runState (iterateM step (t, x, w)) g2\n  -- The stream of seeds is used to produce a stream of result/weight pairs.\n  return $ map (\\(_, x, w) -> (x, w)) samples\n  where\n    --   where\n    {- NB There are three kinds of randomness in the step function.\n    1. The start tree 't', which is the source of randomness for simulating the\n    program m to start with. This is sort-of the point in the \"state space\".\n    2. The randomness needed to propose a new tree ('g1')\n    3. The randomness needed to decide whether to accept or reject that ('g2')\n    The tree t is an argument and result,\n    but we use a state monad ('get'/'put') to deal with the other randomness '(g,g1,g2)' -}\n\n    -- step :: RandomGen g => (Tree, a, Log Double) -> State g (Tree, a, Log Double)\n    step (t, x, w) = do\n      -- Randomly change some sites\n      g <- get\n      let (g1, g2) = split g\n      let t' = mutateTree p g1 t\n      -- Rerun the model with the new tree, to get a new\n      -- weight w'.\n      let (x', w') = runSampler (runWeightedT m) t'\n      -- MH acceptance ratio. This is the probability of either\n      -- returning the new seed or the old one.\n      let ratio = w' / w\n      let (r, g2') = R.random g2\n      put g2'\n      if r < min 1 (exp $ ln ratio)\n        then return (t', x', w')\n        else return (t, x, w)\n\n-- Replace the labels of a tree randomly, with probability p\nmutateTree :: forall g. (RandomGen g) => Double -> g -> Tree -> Tree\nmutateTree p g (Tree a ts) =\n  let (a', g') = (R.random g :: (Double, g))\n      (a'', g'') = R.random g'\n   in Tree\n        { currentUniform = if a' < p then a'' else a,\n          lazyUniforms = mutateTrees p g'' ts\n        }\n\nmutateTrees :: (RandomGen g) => Double -> g -> Trees -> Trees\nmutateTrees p g (Trees t ts) =\n  let (g1, g2) = split g\n   in Trees\n        { headTree = mutateTree p g1 t,\n          tailTrees = mutateTrees p g2 ts\n        }\n"
  },
  {
    "path": "src/Control/Monad/Bayes/Inference/Lazy/WIS.hs",
    "content": "module Control.Monad.Bayes.Inference.Lazy.WIS where\n\nimport Control.Monad (guard)\nimport Control.Monad.Bayes.Sampler.Lazy (SamplerT, weightedSamples)\nimport Control.Monad.Bayes.Weighted (WeightedT)\nimport Data.Maybe (mapMaybe)\nimport Numeric.Log (Log (Exp))\nimport System.Random (Random (randoms), getStdGen, newStdGen)\n\n-- | Weighted Importance Sampling\n\n-- | Likelihood weighted importance sampling first draws n weighted samples,\n--    and then samples a stream of results from that regarded as an empirical distribution\nlwis :: Int -> WeightedT (SamplerT IO) a -> IO [a]\nlwis n m = do\n  xws <- weightedSamples m\n  let xws' = take n $ accumulate xws 0\n  let max' = snd $ last xws'\n  _ <- newStdGen\n  rs <- randoms <$> getStdGen\n  return $ take 1 =<< fmap (\\r -> mapMaybe (\\(a, p) -> guard (p >= Exp (log r) * max') >> Just a) xws') rs\n  where\n    accumulate :: (Num t) => [(a, t)] -> t -> [(a, t)]\n    accumulate ((x, w) : xws) a = (x, w + a) : (x, w + a) : accumulate xws (w + a)\n    accumulate [] _ = []\n"
  },
  {
    "path": "src/Control/Monad/Bayes/Inference/MCMC.hs",
    "content": "{-# LANGUAGE RankNTypes #-}\n{-# LANGUAGE RecordWildCards #-}\n\n-- |\n-- Module      : Control.Monad.Bayes.Inference.MCMC\n-- Description : Markov Chain Monte Carlo (MCMC)\n-- Copyright   : (c) Adam Scibior, 2015-2020\n-- License     : MIT\n-- Maintainer  : tweag.io\n-- Stability   : experimental\n-- Portability : GHC\nmodule Control.Monad.Bayes.Inference.MCMC where\n\nimport Control.Monad.Bayes.Class (MonadDistribution)\nimport Control.Monad.Bayes.Traced.Basic qualified as Basic\nimport Control.Monad.Bayes.Traced.Common\n  ( MHResult (MHResult, trace),\n    Trace (probDensity),\n    burnIn,\n    mhTransWithBool,\n  )\nimport Control.Monad.Bayes.Traced.Dynamic qualified as Dynamic\nimport Control.Monad.Bayes.Traced.Static qualified as Static\nimport Control.Monad.Bayes.Weighted (WeightedT, unweighted)\nimport Pipes ((>->))\nimport Pipes qualified as P\nimport Pipes.Prelude qualified as P\n\ndata Proposal = SingleSiteMH\n\ndata MCMCConfig = MCMCConfig {proposal :: Proposal, numMCMCSteps :: Int, numBurnIn :: Int}\n\ndefaultMCMCConfig :: MCMCConfig\ndefaultMCMCConfig = MCMCConfig {proposal = SingleSiteMH, numMCMCSteps = 1, numBurnIn = 0}\n\nmcmc :: (MonadDistribution m) => MCMCConfig -> Static.TracedT (WeightedT m) a -> m [a]\nmcmc (MCMCConfig {..}) m = burnIn numBurnIn $ unweighted $ Static.mh numMCMCSteps m\n\nmcmcBasic :: (MonadDistribution m) => MCMCConfig -> Basic.TracedT (WeightedT m) a -> m [a]\nmcmcBasic (MCMCConfig {..}) m = burnIn numBurnIn $ unweighted $ Basic.mh numMCMCSteps m\n\nmcmcDynamic :: (MonadDistribution m) => MCMCConfig -> Dynamic.TracedT (WeightedT m) a -> m [a]\nmcmcDynamic (MCMCConfig {..}) m = burnIn numBurnIn $ unweighted $ Dynamic.mh numMCMCSteps m\n\n-- -- | draw iid samples until you get one that has non-zero likelihood\nindependentSamples :: (Monad m) => Static.TracedT m a -> P.Producer (MHResult a) m (Trace a)\nindependentSamples (Static.TracedT _w d) =\n  P.repeatM d\n    >-> P.takeWhile' ((== 0) . probDensity)\n    >-> P.map (MHResult False)\n\n-- | convert a probabilistic program into a producer of samples\nmcmcP :: (MonadDistribution m) => MCMCConfig -> Static.TracedT m a -> P.Producer (MHResult a) m ()\nmcmcP MCMCConfig {..} m@(Static.TracedT w _) = do\n  initialValue <- independentSamples m >-> P.drain\n  ( P.unfoldr (fmap (Right . (\\k -> (k, trace k))) . mhTransWithBool w) initialValue\n      >-> P.drop numBurnIn\n    )\n"
  },
  {
    "path": "src/Control/Monad/Bayes/Inference/PMMH.hs",
    "content": "{-# LANGUAGE RankNTypes #-}\n\n-- |\n-- Module      : Control.Monad.Bayes.Inference.PMMH\n-- Description : Particle Marginal Metropolis-Hastings (PMMH)\n-- Copyright   : (c) Adam Scibior, 2015-2020\n-- License     : MIT\n-- Maintainer  : leonhard.markert@tweag.io\n-- Stability   : experimental\n-- Portability : GHC\n--\n-- Particle Marginal Metropolis-Hastings (PMMH) sampling.\n--\n-- Christophe Andrieu, Arnaud Doucet, and Roman Holenstein. 2010. Particle Markov chain Monte Carlo Methods. /Journal of the Royal Statistical Society/ 72 (2010), 269-342. <http://www.stats.ox.ac.uk/~doucet/andrieu_doucet_holenstein_PMCMC.pdf>\nmodule Control.Monad.Bayes.Inference.PMMH\n  ( pmmh,\n    pmmhBayesianModel,\n  )\nwhere\n\nimport Control.Monad.Bayes.Class (Bayesian (generative), MonadDistribution, MonadMeasure, prior)\nimport Control.Monad.Bayes.Inference.MCMC (MCMCConfig, mcmc)\nimport Control.Monad.Bayes.Inference.SMC (SMCConfig (), smc)\nimport Control.Monad.Bayes.Population as Pop\n  ( PopulationT,\n    hoist,\n    pushEvidence,\n    runPopulationT,\n  )\nimport Control.Monad.Bayes.Sequential.Coroutine (SequentialT)\nimport Control.Monad.Bayes.Traced.Static (TracedT)\nimport Control.Monad.Bayes.Weighted\nimport Control.Monad.Trans (lift)\nimport Numeric.Log (Log)\n\n-- | Particle Marginal Metropolis-Hastings sampling.\npmmh ::\n  (MonadDistribution m) =>\n  MCMCConfig ->\n  SMCConfig (WeightedT m) ->\n  TracedT (WeightedT m) a1 ->\n  (a1 -> SequentialT (PopulationT (WeightedT m)) a2) ->\n  m [[(a2, Log Double)]]\npmmh mcmcConf smcConf param model =\n  mcmc\n    mcmcConf\n    ( param\n        >>= runPopulationT\n          . pushEvidence\n          . Pop.hoist lift\n          . smc smcConf\n          . model\n    )\n\n-- | Particle Marginal Metropolis-Hastings sampling from a Bayesian model\npmmhBayesianModel ::\n  (MonadMeasure m) =>\n  MCMCConfig ->\n  SMCConfig (WeightedT m) ->\n  (forall m'. (MonadMeasure m') => Bayesian m' a1 a2) ->\n  m [[(a2, Log Double)]]\npmmhBayesianModel mcmcConf smcConf bm = pmmh mcmcConf smcConf (prior bm) (generative bm)\n"
  },
  {
    "path": "src/Control/Monad/Bayes/Inference/RMSMC.hs",
    "content": "{-# LANGUAGE ImportQualifiedPost #-}\n{-# LANGUAGE RecordWildCards #-}\n\n-- |\n-- Module      : Control.Monad.Bayes.Inference.RMSMC\n-- Description : Resample-Move Sequential Monte Carlo (RM-SMC)\n-- Copyright   : (c) Adam Scibior, 2015-2020\n-- License     : MIT\n-- Maintainer  : leonhard.markert@tweag.io\n-- Stability   : experimental\n-- Portability : GHC\n--\n-- Resample-move Sequential Monte Carlo (RM-SMC) sampling.\n--\n-- Walter Gilks and Carlo Berzuini. 2001. Following a moving target - Monte Carlo inference for dynamic Bayesian models. /Journal of the Royal Statistical Society/ 63 (2001), 127-146. <http://www.mathcs.emory.edu/~whalen/Papers/BNs/MonteCarlo-DBNs.pdf>\nmodule Control.Monad.Bayes.Inference.RMSMC\n  ( rmsmc,\n    rmsmcDynamic,\n    rmsmcBasic,\n  )\nwhere\n\nimport Control.Monad.Bayes.Class (MonadDistribution)\nimport Control.Monad.Bayes.Inference.MCMC (MCMCConfig (..))\nimport Control.Monad.Bayes.Inference.SMC\nimport Control.Monad.Bayes.Population\n  ( PopulationT,\n    spawn,\n    withParticles,\n  )\nimport Control.Monad.Bayes.Sequential.Coroutine as Seq\nimport Control.Monad.Bayes.Sequential.Coroutine qualified as S\nimport Control.Monad.Bayes.Traced.Basic qualified as TrBas\nimport Control.Monad.Bayes.Traced.Dynamic qualified as TrDyn\nimport Control.Monad.Bayes.Traced.Static as Tr\n  ( TracedT,\n    marginal,\n    mhStep,\n  )\nimport Control.Monad.Bayes.Traced.Static qualified as TrStat\nimport Data.Monoid (Endo (..))\n\n-- | Resample-move Sequential Monte Carlo.\nrmsmc ::\n  (MonadDistribution m) =>\n  MCMCConfig ->\n  SMCConfig m ->\n  -- | model\n  SequentialT (TracedT (PopulationT m)) a ->\n  PopulationT m a\nrmsmc (MCMCConfig {..}) (SMCConfig {..}) =\n  marginal\n    . S.sequentially (composeCopies numMCMCSteps mhStep . TrStat.hoist resampler) numSteps\n    . S.hoistFirst (TrStat.hoist (spawn numParticles >>))\n\n-- | Resample-move Sequential Monte Carlo with a more efficient\n-- tracing representation.\nrmsmcBasic ::\n  (MonadDistribution m) =>\n  MCMCConfig ->\n  SMCConfig m ->\n  -- | model\n  SequentialT (TrBas.TracedT (PopulationT m)) a ->\n  PopulationT m a\nrmsmcBasic (MCMCConfig {..}) (SMCConfig {..}) =\n  TrBas.marginal\n    . S.sequentially (composeCopies numMCMCSteps TrBas.mhStep . TrBas.hoist resampler) numSteps\n    . S.hoistFirst (TrBas.hoist (withParticles numParticles))\n\n-- | A variant of resample-move Sequential Monte Carlo\n-- where only random variables since last resampling are considered\n-- for rejuvenation.\nrmsmcDynamic ::\n  (MonadDistribution m) =>\n  MCMCConfig ->\n  SMCConfig m ->\n  -- | model\n  SequentialT (TrDyn.TracedT (PopulationT m)) a ->\n  PopulationT m a\nrmsmcDynamic (MCMCConfig {..}) (SMCConfig {..}) =\n  TrDyn.marginal\n    . S.sequentially (TrDyn.freeze . composeCopies numMCMCSteps TrDyn.mhStep . TrDyn.hoist resampler) numSteps\n    . S.hoistFirst (TrDyn.hoist (withParticles numParticles))\n\n-- | Apply a function a given number of times.\ncomposeCopies :: Int -> (a -> a) -> (a -> a)\ncomposeCopies k = withEndo (mconcat . replicate k)\n\nwithEndo :: (Endo a -> Endo b) -> (a -> a) -> b -> b\nwithEndo f = appEndo . f . Endo\n"
  },
  {
    "path": "src/Control/Monad/Bayes/Inference/SMC.hs",
    "content": "{-# LANGUAGE RankNTypes #-}\n{-# LANGUAGE RecordWildCards #-}\n\n-- |\n-- Module      : Control.Monad.Bayes.Inference.SMC\n-- Description : Sequential Monte Carlo (SMC)\n-- Copyright   : (c) Adam Scibior, 2015-2020\n-- License     : MIT\n-- Maintainer  : leonhard.markert@tweag.io\n-- Stability   : experimental\n-- Portability : GHC\n--\n-- Sequential Monte Carlo (SMC) sampling.\n--\n-- Arnaud Doucet and Adam M. Johansen. 2011. A tutorial on particle filtering and smoothing: fifteen years later. In /The Oxford Handbook of Nonlinear Filtering/, Dan Crisan and Boris Rozovskii (Eds.). Oxford University Press, Chapter 8.\nmodule Control.Monad.Bayes.Inference.SMC\n  ( smc,\n    smcPush,\n    SMCConfig (..),\n  )\nwhere\n\nimport Control.Monad.Bayes.Class (MonadDistribution, MonadMeasure)\nimport Control.Monad.Bayes.Population\n  ( PopulationT,\n    pushEvidence,\n    withParticles,\n  )\nimport Control.Monad.Bayes.Sequential.Coroutine as Coroutine\n\ndata SMCConfig m = SMCConfig\n  { resampler :: forall x. PopulationT m x -> PopulationT m x,\n    numSteps :: Int,\n    numParticles :: Int\n  }\n\n-- | Sequential importance resampling.\n-- Basically an SMC template that takes a custom resampler.\nsmc ::\n  (MonadDistribution m) =>\n  SMCConfig m ->\n  Coroutine.SequentialT (PopulationT m) a ->\n  PopulationT m a\nsmc SMCConfig {..} =\n  Coroutine.sequentially resampler numSteps\n    . Coroutine.hoistFirst (withParticles numParticles)\n\n-- | Sequential Monte Carlo with multinomial resampling at each timestep.\n-- Weights are normalized at each timestep and the total weight is pushed\n-- as a score into the transformed monad.\nsmcPush ::\n  (MonadMeasure m) => SMCConfig m -> Coroutine.SequentialT (PopulationT m) a -> PopulationT m a\nsmcPush config = smc config {resampler = (pushEvidence . resampler config)}\n"
  },
  {
    "path": "src/Control/Monad/Bayes/Inference/SMC2.hs",
    "content": "{-# LANGUAGE DerivingStrategies #-}\n{-# LANGUAGE GeneralizedNewtypeDeriving #-}\n\n-- |\n-- Module      : Control.Monad.Bayes.Inference.SMC2\n-- Description : Sequential Monte Carlo squared (SMC²)\n-- Copyright   : (c) Adam Scibior, 2015-2020\n-- License     : MIT\n-- Maintainer  : leonhard.markert@tweag.io\n-- Stability   : experimental\n-- Portability : GHC\n--\n-- Sequential Monte Carlo squared (SMC²) sampling.\n--\n-- Nicolas Chopin, Pierre E. Jacob, and Omiros Papaspiliopoulos. 2013. SMC²: an efficient algorithm for sequential analysis of state space models. /Journal of the Royal Statistical Society Series B: Statistical Methodology/ 75 (2013), 397-426. Issue 3. <https://doi.org/10.1111/j.1467-9868.2012.01046.x>\nmodule Control.Monad.Bayes.Inference.SMC2\n  ( smc2,\n    SMC2,\n  )\nwhere\n\nimport Control.Monad.Bayes.Class\n  ( MonadDistribution (random),\n    MonadFactor (..),\n    MonadMeasure,\n    MonadUniformRange (uniformR),\n  )\nimport Control.Monad.Bayes.Inference.MCMC\nimport Control.Monad.Bayes.Inference.RMSMC (rmsmc)\nimport Control.Monad.Bayes.Inference.SMC (SMCConfig (SMCConfig, numParticles, numSteps, resampler), smcPush)\nimport Control.Monad.Bayes.Population as Pop (PopulationT, resampleMultinomial, runPopulationT)\nimport Control.Monad.Bayes.Sequential.Coroutine (SequentialT)\nimport Control.Monad.Bayes.Traced\nimport Control.Monad.Trans (MonadTrans (..))\nimport Numeric.Log (Log)\n\n-- | Helper monad transformer for preprocessing the model for 'smc2'.\nnewtype SMC2 m a = SMC2 (SequentialT (TracedT (PopulationT m)) a)\n  deriving newtype (Functor, Applicative, Monad)\n\nsetup :: SMC2 m a -> SequentialT (TracedT (PopulationT m)) a\nsetup (SMC2 m) = m\n\ninstance MonadTrans SMC2 where\n  lift = SMC2 . lift . lift . lift\n\ninstance (MonadDistribution m) => MonadDistribution (SMC2 m) where\n  random = lift random\n\ninstance (MonadUniformRange m) => MonadUniformRange (SMC2 m) where\n  uniformR l u = lift $ uniformR l u\n\ninstance (Monad m) => MonadFactor (SMC2 m) where\n  score = SMC2 . score\n\ninstance (MonadDistribution m) => MonadMeasure (SMC2 m)\n\n-- | Sequential Monte Carlo squared.\nsmc2 ::\n  (MonadDistribution m) =>\n  -- | number of time steps\n  Int ->\n  -- | number of inner particles\n  Int ->\n  -- | number of outer particles\n  Int ->\n  -- | number of MH transitions\n  Int ->\n  -- | model parameters\n  SequentialT (TracedT (PopulationT m)) b ->\n  -- | model\n  (b -> SequentialT (PopulationT (SMC2 m)) a) ->\n  PopulationT m [(a, Log Double)]\nsmc2 k n p t param m =\n  rmsmc\n    MCMCConfig {numMCMCSteps = t, proposal = SingleSiteMH, numBurnIn = 0}\n    SMCConfig {numParticles = p, numSteps = k, resampler = resampleMultinomial}\n    (param >>= setup . runPopulationT . smcPush (SMCConfig {numSteps = k, numParticles = n, resampler = resampleMultinomial}) . m)\n"
  },
  {
    "path": "src/Control/Monad/Bayes/Inference/TUI.hs",
    "content": "{-# LANGUAGE DerivingStrategies #-}\n{-# LANGUAGE ImportQualifiedPost #-}\n{-# OPTIONS_GHC -Wno-type-defaults #-}\n\nmodule Control.Monad.Bayes.Inference.TUI where\n\nimport Brick\nimport Brick qualified as B\nimport Brick.BChan qualified as B\nimport Brick.Widgets.Border\nimport Brick.Widgets.Border.Style\nimport Brick.Widgets.Center\nimport Brick.Widgets.ProgressBar qualified as B\nimport Control.Arrow (Arrow (..))\nimport Control.Concurrent (forkIO)\nimport Control.Foldl qualified as Fold\nimport Control.Monad (void)\nimport Control.Monad.Bayes.Enumerator (toEmpirical)\nimport Control.Monad.Bayes.Inference.MCMC\nimport Control.Monad.Bayes.Sampler.Strict (SamplerIO, sampleIO)\nimport Control.Monad.Bayes.Traced (TracedT)\nimport Control.Monad.Bayes.Traced.Common hiding (burnIn)\nimport Control.Monad.Bayes.Weighted\nimport Data.Maybe (listToMaybe)\nimport Data.Scientific (FPFormat (Exponent), formatScientific, fromFloatDigits)\nimport Data.Text qualified as T\nimport Data.Text.Lazy qualified as TL\nimport Data.Text.Lazy.IO qualified as TL\nimport GHC.Float (double2Float)\nimport Graphics.Vty\nimport Graphics.Vty qualified as V\nimport Graphics.Vty.Platform.Unix qualified as V\nimport Numeric.Log (Log (ln))\nimport Pipes (runEffect, (>->))\nimport Pipes qualified as P\nimport Pipes.Prelude qualified as P\nimport Text.Pretty.Simple (pShow, pShowNoColor)\n\ndata MCMCData a = MCMCData\n  { numSteps :: Int,\n    numSuccesses :: Int,\n    samples :: [a],\n    lk :: [Double],\n    totalSteps :: Int\n  }\n  deriving stock (Show)\n\n-- | Brick is a terminal user interface (TUI)\n-- which we use to display inference algorithms in progress\n\n-- | draw the brick app\ndrawUI :: ([a] -> Widget n) -> MCMCData a -> [Widget n]\ndrawUI handleSamples state = [ui]\n  where\n    completionBar =\n      updateAttrMap\n        ( B.mapAttrNames\n            [ (doneAttr, B.progressCompleteAttr),\n              (toDoAttr, B.progressIncompleteAttr)\n            ]\n        )\n        $ toBar\n        $ fromIntegral\n        $ numSteps state\n\n    likelihoodBar =\n      updateAttrMap\n        ( B.mapAttrNames\n            [ (doneAttr, B.progressCompleteAttr),\n              (toDoAttr, B.progressIncompleteAttr)\n            ]\n        )\n        $ B.progressBar\n          (Just $ \"Mean likelihood for last 1000 samples: \" <> take 10 (maybe \"(error)\" show (listToMaybe $ lk state <> [0])))\n          (double2Float (Fold.fold Fold.mean $ take 1000 $ lk state) / double2Float (maximum $ 0 : lk state))\n\n    displayStep c = Just $ \"Step \" <> show c\n    numFailures = numSteps state - numSuccesses state\n    toBar v = B.progressBar (displayStep v) (v / fromIntegral (totalSteps state))\n    displaySuccessesAndFailures =\n      withBorderStyle unicode $\n        borderWithLabel (str \"Successes and failures\") $\n          center (str (show $ numSuccesses state))\n            <+> vBorder\n            <+> center (str (show numFailures))\n    warning =\n      if numSteps state > 1000 && (fromIntegral (numSuccesses state) / fromIntegral (numSteps state)) < 0.1\n        then withAttr (attrName \"highlight\") $ str \"Warning: acceptance rate is rather low.\\nThis probably means that your proposal isn't good.\"\n        else str \"\"\n\n    ui =\n      (str \"Progress: \" <+> completionBar)\n        <=> (str \"Likelihood: \" <+> likelihoodBar)\n        <=> str \"\\n\"\n        <=> displaySuccessesAndFailures\n        <=> warning\n        <=> handleSamples (samples state)\n\nnoVisual :: b -> Widget n\nnoVisual = const emptyWidget\n\nshowEmpirical :: (Show a, Ord a) => [a] -> Widget n\nshowEmpirical =\n  txt\n    . T.pack\n    . TL.unpack\n    . pShow\n    . (fmap (second (formatScientific Exponent (Just 3) . fromFloatDigits)))\n    . toEmpirical\n\nshowVal :: (Show a) => [a] -> Widget n\nshowVal = txt . T.pack . (\\case [] -> \"\"; a -> maybe \"(error)\" show $ listToMaybe a)\n\n-- | handler for events received by the TUI\nappEvent :: B.BrickEvent n s -> B.EventM n s ()\nappEvent (B.VtyEvent (V.EvKey (V.KChar 'q') [])) = B.halt\nappEvent (B.VtyEvent _) = pure ()\nappEvent (B.AppEvent d) = put d\nappEvent _ = error \"unknown event\"\n\ndoneAttr, toDoAttr :: B.AttrName\ndoneAttr = B.attrName \"theBase\" <> B.attrName \"done\"\ntoDoAttr = B.attrName \"theBase\" <> B.attrName \"remaining\"\n\ntheMap :: B.AttrMap\ntheMap =\n  B.attrMap\n    V.defAttr\n    [ (B.attrName \"theBase\", bg V.brightBlack),\n      (doneAttr, V.black `on` V.white),\n      (toDoAttr, V.white `on` V.black),\n      (attrName \"highlight\", fg yellow)\n    ]\n\ntui :: (Show a) => Int -> TracedT (WeightedT SamplerIO) a -> ([a] -> Widget ()) -> IO ()\ntui burnIn distribution visualizer = void do\n  eventChan <- B.newBChan 10\n  initialVty <- buildVty\n  _ <- forkIO $ run (mcmcP MCMCConfig {numBurnIn = burnIn, proposal = SingleSiteMH, numMCMCSteps = -1} distribution) eventChan n\n  samples <-\n    B.customMain\n      initialVty\n      buildVty\n      (Just eventChan)\n      ( ( B.App\n            { B.appDraw = drawUI visualizer,\n              B.appChooseCursor = B.showFirstCursor,\n              B.appHandleEvent = appEvent,\n              B.appStartEvent = return (),\n              B.appAttrMap = const theMap\n            }\n        )\n      )\n      (initialState n)\n  TL.writeFile \"data/tui_output.txt\" (pShowNoColor samples)\n  return samples\n  where\n    buildVty = V.mkVty V.defaultConfig\n    n = 100000\n    initialState n = MCMCData {numSteps = 0, samples = [], lk = [], numSuccesses = 0, totalSteps = n}\n\n    run prod chan i =\n      runEffect $\n        P.hoist (sampleIO . unweighted) prod\n          >-> P.scan\n            ( \\mcmcdata@(MCMCData ns nsc smples lk _) a ->\n                mcmcdata\n                  { numSteps = ns + 1,\n                    numSuccesses = nsc + if success a then 1 else 0,\n                    samples = output (trace a) : smples,\n                    lk = exp (ln (probDensity (trace a))) : lk\n                  }\n            )\n            (initialState i)\n            id\n          >-> P.take i\n          >-> P.mapM_ (B.writeBChan chan)\n"
  },
  {
    "path": "src/Control/Monad/Bayes/Integrator.hs",
    "content": "{-# LANGUAGE ApplicativeDo #-}\n{-# LANGUAGE DerivingStrategies #-}\n{-# LANGUAGE FlexibleContexts #-}\n{-# LANGUAGE GeneralizedNewtypeDeriving #-}\n{-# LANGUAGE ImportQualifiedPost #-}\n{-# OPTIONS_GHC -Wno-type-defaults #-}\n{-# OPTIONS_GHC -Wno-unused-top-binds #-}\n\n-- |\n-- This is adapted from https://jtobin.io/giry-monad-implementation\n-- but brought into the monad-bayes framework (i.e. Integrator is an instance of MonadMeasure)\n-- It's largely for debugging other inference methods and didactic use,\n-- because brute force integration of measures is\n-- only practical for small programs\nmodule Control.Monad.Bayes.Integrator\n  ( probability,\n    variance,\n    expectation,\n    cdf,\n    empirical,\n    enumeratorWith,\n    histogram,\n    plotCdf,\n    volume,\n    normalize,\n    Integrator,\n    momentGeneratingFunction,\n    cumulantGeneratingFunction,\n    integrator,\n    runIntegrator,\n  )\nwhere\n\nimport Control.Applicative (Applicative (..))\nimport Control.Foldl (Fold)\nimport Control.Foldl qualified as Foldl\nimport Control.Monad.Bayes.Class (MonadDistribution (bernoulli, random, uniformD))\nimport Control.Monad.Bayes.Weighted (WeightedT, runWeightedT)\nimport Control.Monad.Cont\n  ( Cont,\n    ContT (ContT),\n    cont,\n    runCont,\n  )\nimport Data.Foldable (Foldable (..))\nimport Data.Set (Set, elems)\nimport Numeric.Integration.TanhSinh (Result (result), trap)\nimport Numeric.Log (Log (ln))\nimport Statistics.Distribution qualified as Statistics\nimport Statistics.Distribution.Uniform qualified as Statistics\n-- Prelude exports liftA2 from GHC 9.6 on, see https://github.com/haskell/core-libraries-committee/blob/main/guides/export-lifta2-prelude.md\n-- import Control.Applicative further up can be removed once we don't support GHC <= 9.4 anymore\n\nimport Prelude hiding (Applicative (..), Foldable (..))\n\nnewtype Integrator a = Integrator {getIntegrator :: Cont Double a}\n  deriving newtype (Functor, Applicative, Monad)\n\nrunIntegrator :: (a -> Double) -> Integrator a -> Double\nrunIntegrator f (Integrator a) = runCont a f\n\nintegrator :: ((a -> Double) -> Double) -> Integrator a\nintegrator = Integrator . cont\n\ninstance MonadDistribution Integrator where\n  random = fromDensityFunction $ Statistics.density $ Statistics.uniformDistr 0 1\n  bernoulli p = Integrator $ cont (\\f -> p * f True + (1 - p) * f False)\n  uniformD ls = fromMassFunction (const (1 / fromIntegral (length ls))) ls\n\nfromDensityFunction :: (Double -> Double) -> Integrator Double\nfromDensityFunction d = Integrator $\n  cont $ \\f ->\n    integralWithQuadrature (\\x -> f x * d x)\n  where\n    integralWithQuadrature = result . last . (\\z -> trap z 0 1)\n\nfromMassFunction :: (Foldable f) => (a -> Double) -> f a -> Integrator a\nfromMassFunction f support = Integrator $ cont \\g ->\n  foldl' (\\acc x -> acc + f x * g x) 0 support\n\nempirical :: (Foldable f) => f a -> Integrator a\nempirical = Integrator . cont . flip weightedAverage\n  where\n    weightedAverage :: (Foldable f, Fractional r) => (a -> r) -> f a -> r\n    weightedAverage f = Foldl.fold (weightedAverageFold f)\n\n    weightedAverageFold :: (Fractional r) => (a -> r) -> Fold a r\n    weightedAverageFold f = Foldl.premap f averageFold\n\n    averageFold :: (Fractional a) => Fold a a\n    averageFold = (/) <$> Foldl.sum <*> Foldl.genericLength\n\nexpectation :: Integrator Double -> Double\nexpectation = runIntegrator id\n\nvariance :: Integrator Double -> Double\nvariance nu = runIntegrator (^ 2) nu - expectation nu ^ 2\n\nmomentGeneratingFunction :: Integrator Double -> Double -> Double\nmomentGeneratingFunction nu t = runIntegrator (\\x -> exp (t * x)) nu\n\ncumulantGeneratingFunction :: Integrator Double -> Double -> Double\ncumulantGeneratingFunction nu = log . momentGeneratingFunction nu\n\nnormalize :: WeightedT Integrator a -> Integrator a\nnormalize m =\n  let m' = runWeightedT m\n      z = runIntegrator (ln . exp . snd) m'\n   in do\n        (x, d) <- runWeightedT m\n        Integrator $ cont $ \\f -> (f () * (ln $ exp d)) / z\n        return x\n\ncdf :: Integrator Double -> Double -> Double\ncdf nu x = runIntegrator (negativeInfinity `to` x) nu\n  where\n    negativeInfinity :: Double\n    negativeInfinity = negate (1 / 0)\n\n    to :: (Num a, Ord a) => a -> a -> a -> a\n    to a b k\n      | k >= a && k <= b = 1\n      | otherwise = 0\n\nvolume :: Integrator Double -> Double\nvolume = runIntegrator (const 1)\n\ncontaining :: (Num a, Eq b) => [b] -> b -> a\ncontaining xs x\n  | x `elem` xs = 1\n  | otherwise = 0\n\ninstance (Num a) => Num (Integrator a) where\n  (+) = liftA2 (+)\n  (-) = liftA2 (-)\n  (*) = liftA2 (*)\n  abs = fmap abs\n  signum = fmap signum\n  fromInteger = pure . fromInteger\n\nprobability :: (Ord a) => (a, a) -> Integrator a -> Double\nprobability (lower, upper) = runIntegrator (\\x -> if x < upper && x >= lower then 1 else 0)\n\nenumeratorWith :: (Ord a) => Set a -> Integrator a -> [(a, Double)]\nenumeratorWith ls meas =\n  [ ( val,\n      runIntegrator\n        (\\x -> if x == val then 1 else 0)\n        meas\n    )\n    | val <- elems ls\n  ]\n\nhistogram ::\n  (Enum a, Ord a, Fractional a) =>\n  Int ->\n  a ->\n  WeightedT Integrator a ->\n  [(a, Double)]\nhistogram nBins binSize model = do\n  x <- take nBins [1 ..]\n  let transform k = (k - (fromIntegral nBins / 2)) * binSize\n  return\n    ( (fst)\n        (transform x, transform (x + 1)),\n      probability (transform x, transform (x + 1)) $ normalize model\n    )\n\nplotCdf :: Int -> Double -> Double -> Integrator Double -> [(Double, Double)]\nplotCdf nBins binSize middlePoint model = do\n  x <- take nBins [1 ..]\n  let transform k = (k - (fromIntegral nBins / 2)) * binSize + middlePoint\n  return (transform x, cdf model (transform x))\n"
  },
  {
    "path": "src/Control/Monad/Bayes/Population.hs",
    "content": "{-# LANGUAGE DerivingStrategies #-}\n{-# LANGUAGE GeneralizedNewtypeDeriving #-}\n{-# LANGUAGE ImportQualifiedPost #-}\n{-# LANGUAGE NamedFieldPuns #-}\n{-# LANGUAGE RankNTypes #-}\n{-# OPTIONS_GHC -Wno-deprecations #-}\n\n-- |\n-- Module      : Control.Monad.Bayes.Population\n-- Description : Representation of distributions using multiple samples\n-- Copyright   : (c) Adam Scibior, 2015-2020\n-- License     : MIT\n-- Maintainer  : leonhard.markert@tweag.io\n-- Stability   : experimental\n-- Portability : GHC\n--\n-- 'PopulationT' turns a single sample into a collection of weighted samples.\nmodule Control.Monad.Bayes.Population\n  ( PopulationT (..),\n    runPopulationT,\n    explicitPopulation,\n    fromWeightedList,\n    spawn,\n    multinomial,\n    resampleMultinomial,\n    systematic,\n    resampleSystematic,\n    stratified,\n    resampleStratified,\n    extractEvidence,\n    pushEvidence,\n    proper,\n    evidence,\n    hoist,\n    collapse,\n    popAvg,\n    withParticles,\n  )\nwhere\n\nimport Control.Applicative (Alternative)\nimport Control.Arrow (second)\nimport Control.Monad (forM, replicateM)\nimport Control.Monad.Bayes.Class\n  ( MonadDistribution (..),\n    MonadFactor (..),\n    MonadMeasure,\n    MonadUniformRange (..),\n    factor,\n  )\nimport Control.Monad.Bayes.Weighted\n  ( WeightedT,\n    applyWeight,\n    extractWeight,\n    runWeightedT,\n    weightedT,\n  )\nimport Control.Monad.IO.Class\nimport Control.Monad.Trans.Class\nimport Data.Functor.Compose\nimport Data.List (unfoldr)\nimport Data.List qualified\nimport Data.Maybe (catMaybes)\nimport Data.Vector ((!))\nimport Data.Vector qualified as V\nimport Numeric.Log (Log, ln, sum)\nimport Numeric.Log qualified as Log\nimport Prelude hiding (all, sum)\n\n-- | The old-fashioned, broken list transformer, adding a list/nondeterminism/choice effect.\n--   It is not a valid monad transformer, but it is a valid 'Applicative'.\nnewtype ListT m a = ListT {getListT :: Compose m [] a}\n  deriving newtype (Functor, Applicative, Alternative)\n\nlistT :: m [a] -> ListT m a\nlistT = ListT . Compose\n\nrunListT :: ListT m a -> m [a]\nrunListT = getCompose . getListT\n\n-- | This monad instance is _unlawful_,\n-- it is only by accident and careful construction that it can be used here.\ninstance (Monad m) => Monad (ListT m) where\n  ma >>= f = ListT $ Compose $ do\n    as <- runListT ma\n    fmap concat $ forM as $ runListT . f\n\ninstance MonadTrans ListT where\n  lift = ListT . Compose . fmap pure\n\ninstance (MonadIO m) => MonadIO (ListT m) where\n  liftIO = lift . liftIO\n\ninstance (MonadDistribution m) => MonadDistribution (ListT m) where\n  random = lift random\n  bernoulli = lift . bernoulli\n  categorical = lift . categorical\n\ninstance (MonadUniformRange m) => MonadUniformRange (ListT m) where\n  uniformR l u = lift $ uniformR l u\n\ninstance (MonadFactor m) => MonadFactor (ListT m) where\n  score = lift . score\n\ninstance (MonadMeasure m) => MonadMeasure (ListT m)\n\n-- | A collection of weighted samples, or particles.\nnewtype PopulationT m a = PopulationT {getPopulationT :: WeightedT (ListT m) a}\n  deriving newtype (Functor, Applicative, Monad, MonadIO, MonadDistribution, MonadFactor, MonadMeasure, MonadUniformRange)\n\ninstance MonadTrans PopulationT where\n  lift = PopulationT . lift . lift\n\n-- | Explicit representation of the weighted sample with weights in the log\n-- domain.\nrunPopulationT :: PopulationT m a -> m [(a, Log Double)]\nrunPopulationT = runListT . runWeightedT . getPopulationT\n\n-- | Explicit representation of the weighted sample.\nexplicitPopulation :: (Functor m) => PopulationT m a -> m [(a, Double)]\nexplicitPopulation = fmap (map (second (exp . ln))) . runPopulationT\n\n-- | Initialize 'PopulationT' with a concrete weighted sample.\nfromWeightedList :: (Monad m) => m [(a, Log Double)] -> PopulationT m a\nfromWeightedList = PopulationT . weightedT . listT\n\n-- | Increase the sample size by a given factor.\n-- The weights are adjusted such that their sum is preserved.\n-- It is therefore safe to use 'spawn' in arbitrary places in the program\n-- without introducing bias.\nspawn :: (Monad m) => Int -> PopulationT m ()\nspawn n = fromWeightedList $ pure $ replicate n ((), 1 / fromIntegral n)\n\nwithParticles :: (Monad m) => Int -> PopulationT m a -> PopulationT m a\nwithParticles n = (spawn n >>)\n\nresampleGeneric ::\n  (MonadDistribution m) =>\n  -- | resampler\n  (V.Vector Double -> m [Int]) ->\n  PopulationT m a ->\n  PopulationT m a\nresampleGeneric resampler m = fromWeightedList $ do\n  pop <- runPopulationT m\n  let (xs, ps) = unzip pop\n  let n = length xs\n  let z = Log.sum ps\n  if z > 0\n    then do\n      let weights = V.fromList (map (exp . ln . (/ z)) ps)\n      ancestors <- resampler weights\n      let xvec = V.fromList xs\n      let offsprings = map (xvec V.!) ancestors\n      return $ map (,z / fromIntegral n) offsprings\n    else -- if all weights are zero do not resample\n      return pop\n\n-- | Systematic sampler.\n-- Sample \\(n\\) values from \\((0,1]\\) as follows\n-- \\[\n-- \\begin{aligned}\n-- u^{(1)} &\\sim U\\left(0, \\frac{1}{n}\\right] \\\\\n-- u^{(i)} &=u^{(1)}+\\frac{i-1}{n}, \\quad i=2,3, \\ldots, n\n-- \\end{aligned}\n-- \\]\n-- and then pick integers \\(m\\) according to\n-- \\[\n-- Q^{(m-1)}<u^{(n)} \\leq Q^{(m)}\n-- \\]\n-- where\n-- \\[\n-- Q^{(m)}=\\sum_{k=1}^{m} w^{(k)}\n-- \\]\n-- and \\(w^{(k)}\\) are the weights. See also [Comparison of Resampling Schemes for Particle Filtering](https://arxiv.org/abs/cs/0507025).\nsystematic :: Double -> V.Vector Double -> [Int]\nsystematic u ps = f 0 (u / fromIntegral n) 0 0 []\n  where\n    prob i = ps V.! i\n    n = length ps\n    inc = 1 / fromIntegral n\n    f i _ _ _ acc | i == n = acc\n    f i v j q acc =\n      if v < q\n        then f (i + 1) (v + inc) j q (j - 1 : acc)\n        else f i v (j + 1) (q + prob j) acc\n\n-- | Resample the population using the underlying monad and a systematic resampling scheme.\n-- The total weight is preserved.\nresampleSystematic ::\n  (MonadDistribution m) =>\n  PopulationT m a ->\n  PopulationT m a\nresampleSystematic = resampleGeneric (\\ps -> (`systematic` ps) <$> random)\n\n-- | Stratified sampler.\n--\n-- Sample \\(n\\) values from \\((0,1]\\) as follows\n-- \\[\n-- u^{(i)} \\sim U\\left(\\frac{i-1}{n}, \\frac{i}{n}\\right], \\quad i=1,2, \\ldots, n\n-- \\]\n-- and then pick integers \\(m\\) according to\n-- \\[\n-- Q^{(m-1)}<u^{(n)} \\leq Q^{(m)}\n-- \\]\n-- where\n-- \\[\n-- Q^{(m)}=\\sum_{k=1}^{m} w^{(k)}\n-- \\]\n-- and \\(w^{(k)}\\) are the weights.\n--\n-- The conditional variance of stratified sampling is always smaller than that of multinomial sampling and it is also unbiased - see  [Comparison of Resampling Schemes for Particle Filtering](https://arxiv.org/abs/cs/0507025).\nstratified :: (MonadDistribution m) => V.Vector Double -> m [Int]\nstratified weights = do\n  let bigN = V.length weights\n  dithers <- V.replicateM bigN (uniform 0.0 1.0)\n  let positions =\n        V.map (/ fromIntegral bigN) $\n          V.zipWith (+) dithers (V.map fromIntegral $ V.fromList [0 .. bigN - 1])\n      cumulativeSum = V.scanl (+) 0.0 weights\n      coalg (i, j)\n        | i < bigN =\n            if (positions ! i) < (cumulativeSum ! j)\n              then Just (Just j, (i + 1, j))\n              else Just (Nothing, (i, j + 1))\n        | otherwise =\n            Nothing\n  return $ map (\\i -> i - 1) $ catMaybes $ unfoldr coalg (0, 0)\n\n-- | Resample the population using the underlying monad and a stratified resampling scheme.\n-- The total weight is preserved.\nresampleStratified ::\n  (MonadDistribution m) =>\n  PopulationT m a ->\n  PopulationT m a\nresampleStratified = resampleGeneric stratified\n\n-- | Multinomial sampler.  Sample from \\(0, \\ldots, n - 1\\) \\(n\\)\n-- times drawn at random according to the weights where \\(n\\) is the\n-- length of vector of weights.\nmultinomial :: (MonadDistribution m) => V.Vector Double -> m [Int]\nmultinomial ps = replicateM (V.length ps) (categorical ps)\n\n-- | Resample the population using the underlying monad and a multinomial resampling scheme.\n-- The total weight is preserved.\nresampleMultinomial ::\n  (MonadDistribution m) =>\n  PopulationT m a ->\n  PopulationT m a\nresampleMultinomial = resampleGeneric multinomial\n\n-- | Separate the sum of weights into the 'WeightedT' transformer.\n-- Weights are normalized after this operation.\nextractEvidence ::\n  (Monad m) =>\n  PopulationT m a ->\n  PopulationT (WeightedT m) a\nextractEvidence m = fromWeightedList $ do\n  pop <- lift $ runPopulationT m\n  let (xs, ps) = unzip pop\n  let z = sum ps\n  let ws = map (if z > 0 then (/ z) else const (1 / fromIntegral (length ps))) ps\n  factor z\n  return $ zip xs ws\n\n-- | Push the evidence estimator as a score to the transformed monad.\n-- Weights are normalized after this operation.\npushEvidence ::\n  (MonadFactor m) =>\n  PopulationT m a ->\n  PopulationT m a\npushEvidence = hoist applyWeight . extractEvidence\n\n-- | A properly weighted single sample, that is one picked at random according\n-- to the weights, with the sum of all weights.\nproper ::\n  (MonadDistribution m) =>\n  PopulationT m a ->\n  WeightedT m a\nproper m = do\n  pop <- runPopulationT $ extractEvidence m\n  let (xs, ps) = unzip pop\n  index <- logCategorical $ V.fromList ps\n  let x = xs !! index\n  return x\n\n-- | Model evidence estimator, also known as pseudo-marginal likelihood.\nevidence :: (Monad m) => PopulationT m a -> m (Log Double)\nevidence = extractWeight . runPopulationT . extractEvidence\n\n-- | Picks one point from the population and uses model evidence as a 'score'\n-- in the transformed monad.\n-- This way a single sample can be selected from a population without\n-- introducing bias.\ncollapse ::\n  (MonadMeasure m) =>\n  PopulationT m a ->\n  m a\ncollapse = applyWeight . proper\n\n-- | PopulationT average of a function, computed using unnormalized weights.\npopAvg :: (Monad m) => (a -> Double) -> PopulationT m a -> m Double\npopAvg f p = do\n  xs <- explicitPopulation p\n  let ys = map (\\(x, w) -> f x * w) xs\n  let t = Data.List.sum ys\n  return t\n\n-- | Applies a transformation to the inner monad.\nhoist ::\n  (Monad n) =>\n  (forall x. m x -> n x) ->\n  PopulationT m a ->\n  PopulationT n a\nhoist f = fromWeightedList . f . runPopulationT\n"
  },
  {
    "path": "src/Control/Monad/Bayes/Sampler/Lazy.hs",
    "content": "{-# LANGUAGE BangPatterns #-}\n{-# LANGUAGE DeriveFunctor #-}\n{-# LANGUAGE GeneralizedNewtypeDeriving #-}\n{-# LANGUAGE RankNTypes #-}\n{-# LANGUAGE ScopedTypeVariables #-}\n\n-- | This is a port of the implementation of LazyPPL: https://lazyppl.bitbucket.io/\nmodule Control.Monad.Bayes.Sampler.Lazy where\n\nimport Control.Monad (ap)\nimport Control.Monad.Bayes.Class (MonadDistribution (random))\nimport Control.Monad.Bayes.Weighted (WeightedT, runWeightedT)\nimport Control.Monad.IO.Class\nimport Control.Monad.Identity (Identity (runIdentity))\nimport Control.Monad.Trans\nimport Numeric.Log (Log (..))\nimport System.Random\n  ( RandomGen (split),\n    getStdGen,\n    newStdGen,\n  )\nimport System.Random qualified as R\n\n-- | A 'Tree' is a lazy, infinitely wide and infinitely deep tree, labelled by Doubles.\n--\n--   Our source of randomness will be a Tree, populated by uniform [0,1] choices for each label.\n--   Often people just use a list or stream instead of a tree.\n--   But a tree allows us to be lazy about how far we are going all the time.\ndata Tree = Tree\n  { currentUniform :: Double,\n    lazyUniforms :: Trees\n  }\n\n-- | An infinite stream of 'Tree's.\ndata Trees = Trees\n  { headTree :: Tree,\n    tailTrees :: Trees\n  }\n\n-- | A probability distribution over @a@ is a function 'Tree -> a'.\n--   The idea is that it uses up bits of the tree as it runs.\ntype Sampler = SamplerT Identity\n\nrunSampler :: Sampler a -> Tree -> a\nrunSampler = (runIdentity .) . runSamplerT\n\nnewtype SamplerT m a = SamplerT {runSamplerT :: Tree -> m a}\n  deriving (Functor)\n\n-- | Split a tree in two (bijectively).\nsplitTree :: Tree -> (Tree, Tree)\nsplitTree (Tree r (Trees t ts)) = (t, Tree r ts)\n\n-- | Generate a tree with uniform random labels.\n--\n-- Preliminary for the simulation methods. This uses 'split' to split a random seed.\nrandomTree :: (RandomGen g) => g -> Tree\nrandomTree g = let (a, g') = R.random g in Tree a (randomTrees g')\n\nrandomTrees :: (RandomGen g) => g -> Trees\nrandomTrees g = let (g1, g2) = split g in Trees (randomTree g1) (randomTrees g2)\n\ninstance (Monad m) => Applicative (SamplerT m) where\n  pure = lift . pure\n  (<*>) = ap\n\n-- | Sequencing is done by splitting the tree\n--   and using different bits for different computations.\ninstance (Monad m) => Monad (SamplerT m) where\n  return = pure\n  (SamplerT m) >>= f = SamplerT \\g -> do\n    let (g1, g2) = splitTree g\n    a <- m g1\n    let SamplerT m' = f a\n    m' g2\n\ninstance MonadTrans SamplerT where\n  lift = SamplerT . const\n\ninstance (MonadIO m) => MonadIO (SamplerT m) where\n  liftIO = lift . liftIO\n\n-- | Sampling gets the label at the head of the tree and discards the rest.\ninstance (Monad m) => MonadDistribution (SamplerT m) where\n  random = SamplerT \\(Tree r _) -> pure r\n\n-- | Runs a 'SamplerT' by creating a new 'StdGen'.\nrunSamplerTIO :: (MonadIO m) => SamplerT m a -> m a\nrunSamplerTIO m = liftIO newStdGen *> (runSamplerT m =<< randomTree <$> liftIO getStdGen)\n\n-- | Draw a stream of independent samples.\nindependent :: (Monad m) => m a -> m [a]\nindependent = sequence . repeat\n\n-- | Runs a probability measure and gets out a stream of @(result,weight)@ pairs\nweightedSamples :: (MonadIO m) => WeightedT (SamplerT m) a -> m [(a, Log Double)]\nweightedSamples = runSamplerTIO . sequence . repeat . runWeightedT\n"
  },
  {
    "path": "src/Control/Monad/Bayes/Sampler/Strict.hs",
    "content": "{-# LANGUAGE ApplicativeDo #-}\n{-# LANGUAGE DerivingStrategies #-}\n{-# LANGUAGE GeneralizedNewtypeDeriving #-}\n{-# LANGUAGE ImportQualifiedPost #-}\n{-# LANGUAGE UnboxedTuples #-}\n{-# LANGUAGE UndecidableInstances #-}\n\n-- |\n-- Module      : Control.Monad.Bayes.Sampler\n-- Description : Pseudo-random sampling monads\n-- Copyright   : (c) Adam Scibior, 2015-2020\n-- License     : MIT\n-- Maintainer  : leonhard.markert@tweag.io\n-- Stability   : experimental\n-- Portability : GHC\n--\n-- 'SamplerIO' and 'SamplerST' are instances of 'MonadDistribution'. Apply a 'MonadFactor'\n-- transformer to obtain a 'MonadMeasure' that can execute probabilistic models.\nmodule Control.Monad.Bayes.Sampler.Strict\n  ( SamplerT (..),\n    SamplerIO,\n    SamplerST,\n    sampleIO,\n    sampleIOfixed,\n    sampleWith,\n    sampleSTfixed,\n    sampleMean,\n    sampler,\n  )\nwhere\n\nimport Control.Foldl qualified as F hiding (random)\nimport Control.Monad.Bayes.Class\n  ( MonadDistribution\n      ( bernoulli,\n        beta,\n        categorical,\n        gamma,\n        geometric,\n        normal,\n        random,\n        uniform\n      ),\n    MonadUniformRange\n      ( uniformR\n      ),\n  )\nimport Control.Monad.Primitive (PrimMonad)\nimport Control.Monad.Reader (MonadIO, ReaderT (..))\nimport Control.Monad.ST (ST)\nimport Control.Monad.Trans (MonadTrans)\nimport Numeric.Log (Log (ln))\nimport System.Random.MWC.Distributions qualified as MWC\nimport System.Random.Stateful (IOGenM (..), STGenM, StatefulGen, StdGen, initStdGen, mkStdGen, newIOGenM, newSTGenM, uniformDouble01M, uniformRM)\n\n-- | The sampling interpretation of a probabilistic program\n-- Here m is typically IO or ST\nnewtype SamplerT g m a = SamplerT {runSamplerT :: ReaderT g m a} deriving (Functor, Applicative, Monad, MonadIO, MonadTrans, PrimMonad)\n\n-- | convenient type synonym to show specializations of SamplerT\n-- to particular pairs of monad and RNG\ntype SamplerIO = SamplerT (IOGenM StdGen) IO\n\n-- | convenient type synonym to show specializations of SamplerT\n-- to particular pairs of monad and RNG\ntype SamplerST s = SamplerT (STGenM StdGen s) (ST s)\n\ninstance (StatefulGen g m) => MonadDistribution (SamplerT g m) where\n  random = SamplerT (ReaderT uniformDouble01M)\n\n  uniform a b = SamplerT (ReaderT $ uniformRM (a, b))\n  normal m s = SamplerT (ReaderT (MWC.normal m s))\n  gamma shape scale = SamplerT (ReaderT $ MWC.gamma shape scale)\n  beta a b = SamplerT (ReaderT $ MWC.beta a b)\n\n  bernoulli p = SamplerT (ReaderT $ MWC.bernoulli p)\n  categorical ps = SamplerT (ReaderT $ MWC.categorical ps)\n  geometric p = SamplerT (ReaderT $ MWC.geometric0 p)\n\ninstance (StatefulGen g m) => MonadUniformRange (SamplerT g m) where\n  uniformR l u = SamplerT (ReaderT $ uniformRM (l, u))\n\n-- | Sample with a random number generator of your choice e.g. the one\n-- from `System.Random`.\n--\n-- >>> import Control.Monad.Bayes.Class\n-- >>> import System.Random.Stateful hiding (random)\n-- >>> newIOGenM (mkStdGen 1729) >>= sampleWith random\n-- 4.690861245089605e-2\nsampleWith :: SamplerT g m a -> g -> m a\nsampleWith (SamplerT m) = runReaderT m\n\n-- | initialize random seed using system entropy, and sample\nsampleIO, sampler :: SamplerIO a -> IO a\nsampleIO x = initStdGen >>= newIOGenM >>= sampleWith x\nsampler = sampleIO\n\n-- | Run the sampler with a fixed random seed\nsampleIOfixed :: SamplerIO a -> IO a\nsampleIOfixed x = newIOGenM (mkStdGen 1729) >>= sampleWith x\n\n-- | Run the sampler with a fixed random seed\nsampleSTfixed :: SamplerST s b -> ST s b\nsampleSTfixed x = newSTGenM (mkStdGen 1729) >>= sampleWith x\n\nsampleMean :: [(Double, Log Double)] -> Double\nsampleMean samples =\n  let z = F.premap (ln . exp . snd) F.sum\n      w = (F.premap (\\(x, y) -> x * ln (exp y)) F.sum)\n      s = (/) <$> w <*> z\n   in F.fold s samples\n"
  },
  {
    "path": "src/Control/Monad/Bayes/Sequential/Coroutine.hs",
    "content": "{-# LANGUAGE DerivingStrategies #-}\n{-# LANGUAGE GeneralizedNewtypeDeriving #-}\n{-# LANGUAGE RankNTypes #-}\n\n-- |\n-- Module      : Control.Monad.Bayes.Sequential\n-- Description : Suspendable probabilistic computation\n-- Copyright   : (c) Adam Scibior, 2015-2020\n-- License     : MIT\n-- Maintainer  : leonhard.markert@tweag.io\n-- Stability   : experimental\n-- Portability : GHC\n--\n-- 'SequentialT' represents a computation that can be suspended.\nmodule Control.Monad.Bayes.Sequential.Coroutine\n  ( SequentialT,\n    suspend,\n    finish,\n    advance,\n    finished,\n    hoistFirst,\n    hoist,\n    sequentially,\n    sis,\n  )\nwhere\n\nimport Control.Monad.Bayes.Class\n  ( MonadDistribution (bernoulli, categorical, random),\n    MonadFactor (..),\n    MonadMeasure,\n  )\nimport Control.Monad.Coroutine\n  ( Coroutine (..),\n    bounce,\n    mapMonad,\n    pogoStick,\n  )\nimport Control.Monad.Coroutine.SuspensionFunctors\n  ( Await (..),\n    await,\n  )\nimport Control.Monad.Trans (MonadIO, MonadTrans (..))\nimport Data.Either (isRight)\n\n-- | Represents a computation that can be suspended at certain points.\n-- The intermediate monadic effects can be extracted, which is particularly\n-- useful for implementation of Sequential Monte Carlo related methods.\n-- All the probabilistic effects are lifted from the transformed monad, but\n-- also `suspend` is inserted after each `factor`.\nnewtype SequentialT m a = SequentialT {runSequentialT :: Coroutine (Await ()) m a}\n  deriving newtype (Functor, Applicative, Monad, MonadTrans, MonadIO)\n\nextract :: Await () a -> a\nextract (Await f) = f ()\n\ninstance (MonadDistribution m) => MonadDistribution (SequentialT m) where\n  random = lift random\n  bernoulli = lift . bernoulli\n  categorical = lift . categorical\n\n-- | Execution is 'suspend'ed after each 'score'.\ninstance (MonadFactor m) => MonadFactor (SequentialT m) where\n  score w = lift (score w) >> suspend\n\ninstance (MonadMeasure m) => MonadMeasure (SequentialT m)\n\n-- | A point where the computation is paused.\nsuspend :: (Monad m) => SequentialT m ()\nsuspend = SequentialT await\n\n-- | Remove the remaining suspension points.\nfinish :: (Monad m) => SequentialT m a -> m a\nfinish = pogoStick extract . runSequentialT\n\n-- | Execute to the next suspension point.\n-- If the computation is finished, do nothing.\n--\n-- > finish = finish . advance\nadvance :: (Monad m) => SequentialT m a -> SequentialT m a\nadvance = SequentialT . bounce extract . runSequentialT\n\n-- | Return True if no more suspension points remain.\nfinished :: (Monad m) => SequentialT m a -> m Bool\nfinished = fmap isRight . resume . runSequentialT\n\n-- | Transform the inner monad.\n-- This operation only applies to computation up to the first suspension.\nhoistFirst :: (forall x. m x -> m x) -> SequentialT m a -> SequentialT m a\nhoistFirst f = SequentialT . Coroutine . f . resume . runSequentialT\n\n-- | Transform the inner monad.\n-- The transformation is applied recursively through all the suspension points.\nhoist ::\n  (Monad m, Monad n) =>\n  (forall x. m x -> n x) ->\n  SequentialT m a ->\n  SequentialT n a\nhoist f = SequentialT . mapMonad f . runSequentialT\n\n-- | Apply a function a given number of times.\ncomposeCopies :: Int -> (a -> a) -> (a -> a)\ncomposeCopies k f = foldr (.) id (replicate k f)\n\n-- | Sequential importance sampling.\n-- Applies a given transformation after each time step.\nsequentially,\n  sis ::\n    (Monad m) =>\n    -- | transformation\n    (forall x. m x -> m x) ->\n    -- | number of time steps\n    Int ->\n    SequentialT m a ->\n    m a\nsequentially f k = finish . composeCopies k (advance . hoistFirst f)\n\n-- | synonym\nsis = sequentially\n"
  },
  {
    "path": "src/Control/Monad/Bayes/Traced/Basic.hs",
    "content": "{-# LANGUAGE RankNTypes #-}\n\n-- |\n-- Module      : Control.Monad.Bayes.Traced.Basic\n-- Description : Distributions on full execution traces of full programs\n-- Copyright   : (c) Adam Scibior, 2015-2020\n-- License     : MIT\n-- Maintainer  : leonhard.markert@tweag.io\n-- Stability   : experimental\n-- Portability : GHC\nmodule Control.Monad.Bayes.Traced.Basic\n  ( TracedT,\n    hoist,\n    marginal,\n    mhStep,\n    mh,\n  )\nwhere\n\nimport Control.Applicative (Applicative (..))\nimport Control.Monad.Bayes.Class\n  ( MonadDistribution (random),\n    MonadFactor (..),\n    MonadMeasure,\n  )\nimport Control.Monad.Bayes.Density.Free (DensityT)\nimport Control.Monad.Bayes.Traced.Common\n  ( Trace (..),\n    bind,\n    mhTrans',\n    scored,\n    singleton,\n  )\nimport Control.Monad.Bayes.Weighted (WeightedT)\nimport Data.Functor.Identity (Identity)\nimport Data.List.NonEmpty as NE (NonEmpty ((:|)), toList)\n-- Prelude exports liftA2 from GHC 9.6 on, see https://github.com/haskell/core-libraries-committee/blob/main/guides/export-lifta2-prelude.md\n-- import Control.Applicative further up can be removed once we don't support GHC <= 9.4 anymore\n\nimport Prelude hiding (Applicative (..))\n\n-- | Tracing monad that records random choices made in the program.\ndata TracedT m a = TracedT\n  { -- | Run the program with a modified trace.\n    model :: WeightedT (DensityT Identity) a,\n    -- | Record trace and output.\n    traceDist :: m (Trace a)\n  }\n\ninstance (Monad m) => Functor (TracedT m) where\n  fmap f (TracedT m d) = TracedT (fmap f m) (fmap (fmap f) d)\n\ninstance (Monad m) => Applicative (TracedT m) where\n  pure x = TracedT (pure x) (pure (pure x))\n  (TracedT mf df) <*> (TracedT mx dx) = TracedT (mf <*> mx) (liftA2 (<*>) df dx)\n\ninstance (Monad m) => Monad (TracedT m) where\n  (TracedT mx dx) >>= f = TracedT my dy\n    where\n      my = mx >>= model . f\n      dy = dx `bind` (traceDist . f)\n\ninstance (MonadDistribution m) => MonadDistribution (TracedT m) where\n  random = TracedT random (fmap singleton random)\n\ninstance (MonadFactor m) => MonadFactor (TracedT m) where\n  score w = TracedT (score w) (score w >> pure (scored w))\n\ninstance (MonadMeasure m) => MonadMeasure (TracedT m)\n\nhoist :: (forall x. m x -> m x) -> TracedT m a -> TracedT m a\nhoist f (TracedT m d) = TracedT m (f d)\n\n-- | Discard the trace and supporting infrastructure.\nmarginal :: (Monad m) => TracedT m a -> m a\nmarginal (TracedT _ d) = fmap output d\n\n-- | A single step of the Trace Metropolis-Hastings algorithm.\nmhStep :: (MonadDistribution m) => TracedT m a -> TracedT m a\nmhStep (TracedT m d) = TracedT m d'\n  where\n    d' = d >>= mhTrans' m\n\n-- | Full run of the Trace Metropolis-Hastings algorithm with a specified\n-- number of steps.\nmh :: (MonadDistribution m) => Int -> TracedT m a -> m [a]\nmh n (TracedT m d) = fmap (map output . NE.toList) (f n)\n  where\n    f k\n      | k <= 0 = fmap (:| []) d\n      | otherwise = do\n          (x :| xs) <- f (k - 1)\n          y <- mhTrans' m x\n          return (y :| x : xs)\n"
  },
  {
    "path": "src/Control/Monad/Bayes/Traced/Common.hs",
    "content": "-- |\n-- Module      : Control.Monad.Bayes.Traced.Common\n-- Description : Numeric code for Trace MCMC\n-- Copyright   : (c) Adam Scibior, 2015-2020\n-- License     : MIT\n-- Maintainer  : leonhard.markert@tweag.io\n-- Stability   : experimental\n-- Portability : GHC\nmodule Control.Monad.Bayes.Traced.Common\n  ( Trace (..),\n    singleton,\n    scored,\n    bind,\n    mhTrans,\n    mhTransWithBool,\n    mhTransFree,\n    mhTrans',\n    burnIn,\n    MHResult (..),\n  )\nwhere\n\nimport Control.Monad.Bayes.Class\n  ( MonadDistribution (bernoulli, random),\n    discrete,\n  )\nimport Control.Monad.Bayes.Density.Free qualified as Free\nimport Control.Monad.Bayes.Density.State qualified as State\nimport Control.Monad.Bayes.Weighted as WeightedT\n  ( WeightedT,\n    hoist,\n    runWeightedT,\n  )\nimport Control.Monad.Writer (WriterT (WriterT, runWriterT))\nimport Data.Functor.Identity (Identity (runIdentity))\nimport Numeric.Log (Log, ln)\nimport Statistics.Distribution.DiscreteUniform (discreteUniformAB)\n\ndata MHResult a = MHResult\n  { success :: Bool,\n    trace :: Trace a\n  }\n\n-- | Collection of random variables sampler during the program's execution.\ndata Trace a = Trace\n  { -- | Sequence of random variables sampler during the program's execution.\n    variables :: [Double],\n    --\n    output :: a,\n    -- | The probability of observing this particular sequence.\n    probDensity :: Log Double\n  }\n\ninstance Functor Trace where\n  fmap f t = t {output = f (output t)}\n\ninstance Applicative Trace where\n  pure x = Trace {variables = [], output = x, probDensity = 1}\n  tf <*> tx =\n    Trace\n      { variables = variables tf ++ variables tx,\n        output = output tf (output tx),\n        probDensity = probDensity tf * probDensity tx\n      }\n\ninstance Monad Trace where\n  t >>= f =\n    let t' = f (output t)\n     in t' {variables = variables t ++ variables t', probDensity = probDensity t * probDensity t'}\n\nsingleton :: Double -> Trace Double\nsingleton u = Trace {variables = [u], output = u, probDensity = 1}\n\nscored :: Log Double -> Trace ()\nscored w = Trace {variables = [], output = (), probDensity = w}\n\nbind :: (Monad m) => m (Trace a) -> (a -> m (Trace b)) -> m (Trace b)\nbind dx f = do\n  t1 <- dx\n  t2 <- f (output t1)\n  return $ t2 {variables = variables t1 ++ variables t2, probDensity = probDensity t1 * probDensity t2}\n\n-- | A single Metropolis-corrected transition of single-site Trace MCMC.\nmhTrans :: (MonadDistribution m) => (WeightedT (State.DensityT m)) a -> Trace a -> m (Trace a)\nmhTrans m t@Trace {variables = us, probDensity = p} = do\n  let n = length us\n  us' <- do\n    i <- discrete $ discreteUniformAB 0 (n - 1)\n    u' <- random\n    case splitAt i us of\n      (xs, _ : ys) -> return $ xs ++ (u' : ys)\n      _ -> error \"impossible\"\n  ((b, q), vs) <- State.runDensityT (runWeightedT m) us'\n  let ratio = (exp . ln) $ min 1 (q * fromIntegral n / (p * fromIntegral (length vs)))\n  accept <- bernoulli ratio\n  return $ if accept then Trace vs b q else t\n\nmhTransFree :: (MonadDistribution m) => WeightedT (Free.DensityT m) a -> Trace a -> m (Trace a)\nmhTransFree m t = trace <$> mhTransWithBool m t\n\n-- | A single Metropolis-corrected transition of single-site Trace MCMC.\nmhTransWithBool :: (MonadDistribution m) => WeightedT (Free.DensityT m) a -> Trace a -> m (MHResult a)\nmhTransWithBool m t@Trace {variables = us, probDensity = p} = do\n  let n = length us\n  us' <- do\n    i <- discrete $ discreteUniformAB 0 (n - 1)\n    u' <- random\n    case splitAt i us of\n      (xs, _ : ys) -> return $ xs ++ (u' : ys)\n      _ -> error \"impossible\"\n  ((b, q), vs) <- runWriterT $ runWeightedT $ WeightedT.hoist (WriterT . Free.runDensityT us') m\n  let ratio = (exp . ln) $ min 1 (q * fromIntegral n / (p * fromIntegral (length vs)))\n  accept <- bernoulli ratio\n  return if accept then MHResult True (Trace vs b q) else MHResult False t\n\n-- | A variant of 'mhTrans' with an external sampling monad.\nmhTrans' :: (MonadDistribution m) => WeightedT (Free.DensityT Identity) a -> Trace a -> m (Trace a)\nmhTrans' m = mhTransFree (WeightedT.hoist (Free.hoist (return . runIdentity)) m)\n\n-- | burn in an MCMC chain for n steps (which amounts to dropping samples of the end of the list)\nburnIn :: (Functor m) => Int -> m [a] -> m [a]\nburnIn n = fmap dropEnd\n  where\n    dropEnd ls = let len = length ls in take (len - n) ls\n"
  },
  {
    "path": "src/Control/Monad/Bayes/Traced/Dynamic.hs",
    "content": "{-# LANGUAGE RankNTypes #-}\n\n-- |\n-- Module      : Control.Monad.Bayes.Traced.Dynamic\n-- Description : Distributions on execution traces that can be dynamically frozen\n-- Copyright   : (c) Adam Scibior, 2015-2020\n-- License     : MIT\n-- Maintainer  : leonhard.markert@tweag.io\n-- Stability   : experimental\n-- Portability : GHC\nmodule Control.Monad.Bayes.Traced.Dynamic\n  ( TracedT,\n    hoist,\n    marginal,\n    freeze,\n    mhStep,\n    mh,\n  )\nwhere\n\nimport Control.Monad (join)\nimport Control.Monad.Bayes.Class\n  ( MonadDistribution (random),\n    MonadFactor (..),\n    MonadMeasure,\n  )\nimport Control.Monad.Bayes.Density.Free (DensityT)\nimport Control.Monad.Bayes.Traced.Common\n  ( Trace (..),\n    bind,\n    mhTransFree,\n    scored,\n    singleton,\n  )\nimport Control.Monad.Bayes.Weighted (WeightedT)\nimport Control.Monad.Trans (MonadTrans (..))\nimport Data.List.NonEmpty as NE (NonEmpty ((:|)), toList)\n\n-- | A tracing monad where only a subset of random choices are traced and this\n-- subset can be adjusted dynamically.\nnewtype TracedT m a = TracedT {runTraced :: m (WeightedT (DensityT m) a, Trace a)}\n\npushM :: (Monad m) => m (WeightedT (DensityT m) a) -> WeightedT (DensityT m) a\npushM = join . lift . lift\n\ninstance (Monad m) => Functor (TracedT m) where\n  fmap f (TracedT c) = TracedT $ do\n    (m, t) <- c\n    let m' = fmap f m\n    let t' = fmap f t\n    return (m', t')\n\ninstance (Monad m) => Applicative (TracedT m) where\n  pure x = TracedT $ pure (pure x, pure x)\n  (TracedT cf) <*> (TracedT cx) = TracedT $ do\n    (mf, tf) <- cf\n    (mx, tx) <- cx\n    return (mf <*> mx, tf <*> tx)\n\ninstance (Monad m) => Monad (TracedT m) where\n  (TracedT cx) >>= f = TracedT $ do\n    (mx, tx) <- cx\n    let m = mx >>= pushM . fmap fst . runTraced . f\n    t <- return tx `bind` (fmap snd . runTraced . f)\n    return (m, t)\n\ninstance MonadTrans TracedT where\n  lift m = TracedT $ fmap ((,) (lift $ lift m) . pure) m\n\ninstance (MonadDistribution m) => MonadDistribution (TracedT m) where\n  random = TracedT $ fmap ((,) random . singleton) random\n\ninstance (MonadFactor m) => MonadFactor (TracedT m) where\n  score w = TracedT $ fmap (score w,) (score w >> pure (scored w))\n\ninstance (MonadMeasure m) => MonadMeasure (TracedT m)\n\nhoist :: (forall x. m x -> m x) -> TracedT m a -> TracedT m a\nhoist f (TracedT c) = TracedT (f c)\n\n-- | Discard the trace and supporting infrastructure.\nmarginal :: (Monad m) => TracedT m a -> m a\nmarginal (TracedT c) = fmap (output . snd) c\n\n-- | Freeze all traced random choices to their current values and stop tracing\n-- them.\nfreeze :: (Monad m) => TracedT m a -> TracedT m a\nfreeze (TracedT c) = TracedT $ do\n  (_, t) <- c\n  let x = output t\n  return (return x, pure x)\n\n-- | A single step of the Trace Metropolis-Hastings algorithm.\nmhStep :: (MonadDistribution m) => TracedT m a -> TracedT m a\nmhStep (TracedT c) = TracedT $ do\n  (m, t) <- c\n  t' <- mhTransFree m t\n  return (m, t')\n\n-- | Full run of the Trace Metropolis-Hastings algorithm with a specified\n-- number of steps.\nmh :: (MonadDistribution m) => Int -> TracedT m a -> m [a]\nmh n (TracedT c) = do\n  (m, t) <- c\n  let f k\n        | k <= 0 = return (t :| [])\n        | otherwise = do\n            (x :| xs) <- f (k - 1)\n            y <- mhTransFree m x\n            return (y :| x : xs)\n  fmap (map output . NE.toList) (f n)\n"
  },
  {
    "path": "src/Control/Monad/Bayes/Traced/Static.hs",
    "content": "{-# LANGUAGE RankNTypes #-}\n{-# LANGUAGE RecordWildCards #-}\n\n-- |\n-- Module      : Control.Monad.Bayes.Traced.Static\n-- Description : Distributions on execution traces of full programs\n-- Copyright   : (c) Adam Scibior, 2015-2020\n-- License     : MIT\n-- Maintainer  : leonhard.markert@tweag.io\n-- Stability   : experimental\n-- Portability : GHC\nmodule Control.Monad.Bayes.Traced.Static\n  ( TracedT (..),\n    hoist,\n    marginal,\n    mhStep,\n    mh,\n  )\nwhere\n\nimport Control.Applicative (Applicative (..))\nimport Control.Monad.Bayes.Class\n  ( MonadDistribution (random),\n    MonadFactor (..),\n    MonadMeasure,\n  )\nimport Control.Monad.Bayes.Density.Free (DensityT)\nimport Control.Monad.Bayes.Traced.Common\n  ( Trace (..),\n    bind,\n    mhTransFree,\n    scored,\n    singleton,\n  )\nimport Control.Monad.Bayes.Weighted (WeightedT)\nimport Control.Monad.Trans (MonadTrans (..))\nimport Data.List.NonEmpty as NE (NonEmpty ((:|)), toList)\n-- Prelude exports liftA2 from GHC 9.6 on, see https://github.com/haskell/core-libraries-committee/blob/main/guides/export-lifta2-prelude.md\n-- import Control.Applicative further up can be removed once we don't support GHC <= 9.4 anymore\n\nimport Prelude hiding (Applicative (..))\n\n-- | A tracing monad where only a subset of random choices are traced.\n--\n-- The random choices that are not to be traced should be lifted from the\n-- transformed monad.\ndata TracedT m a = TracedT\n  { model :: WeightedT (DensityT m) a,\n    traceDist :: m (Trace a)\n  }\n\ninstance (Monad m) => Functor (TracedT m) where\n  fmap f (TracedT m d) = TracedT (fmap f m) (fmap (fmap f) d)\n\ninstance (Monad m) => Applicative (TracedT m) where\n  pure x = TracedT (pure x) (pure (pure x))\n  (TracedT mf df) <*> (TracedT mx dx) = TracedT (mf <*> mx) (liftA2 (<*>) df dx)\n\ninstance (Monad m) => Monad (TracedT m) where\n  (TracedT mx dx) >>= f = TracedT my dy\n    where\n      my = mx >>= model . f\n      dy = dx `bind` (traceDist . f)\n\ninstance MonadTrans TracedT where\n  lift m = TracedT (lift $ lift m) (fmap pure m)\n\ninstance (MonadDistribution m) => MonadDistribution (TracedT m) where\n  random = TracedT random (fmap singleton random)\n\ninstance (MonadFactor m) => MonadFactor (TracedT m) where\n  score w = TracedT (score w) (score w >> pure (scored w))\n\ninstance (MonadMeasure m) => MonadMeasure (TracedT m)\n\nhoist :: (forall x. m x -> m x) -> TracedT m a -> TracedT m a\nhoist f (TracedT m d) = TracedT m (f d)\n\n-- | Discard the trace and supporting infrastructure.\nmarginal :: (Monad m) => TracedT m a -> m a\nmarginal (TracedT _ d) = fmap output d\n\n-- | A single step of the Trace Metropolis-Hastings algorithm.\nmhStep :: (MonadDistribution m) => TracedT m a -> TracedT m a\nmhStep (TracedT m d) = TracedT m d'\n  where\n    d' = d >>= mhTransFree m\n\n-- $setup\n-- >>> import Control.Monad.Bayes.Class\n-- >>> import Control.Monad.Bayes.Sampler.Strict\n-- >>> import Control.Monad.Bayes.Weighted\n\n-- | Full run of the Trace Metropolis-Hastings algorithm with a specified\n-- number of steps. Newest samples are at the head of the list.\n--\n-- For example:\n--\n-- * I have forgotten what day it is.\n-- * There are ten buses per hour in the week and three buses per hour at the weekend.\n-- * I observe four buses in a given hour.\n-- * What is the probability that it is the weekend?\n--\n-- >>> :{\n--  let\n--    bus = do x <- bernoulli (2/7)\n--             let rate = if x then 3 else 10\n--             factor $ poissonPdf rate 4\n--             return x\n--    mhRunBusSingleObs = do\n--      let nSamples = 2\n--      sampleIOfixed $ unweighted $ mh nSamples bus\n--  in mhRunBusSingleObs\n-- :}\n-- [True,True,True]\n--\n-- Of course, it will need to be run more than twice to get a reasonable estimate.\nmh :: (MonadDistribution m) => Int -> TracedT m a -> m [a]\nmh n (TracedT m d) = fmap (map output . NE.toList) (f n)\n  where\n    f k\n      | k <= 0 = fmap (:| []) d\n      | otherwise = do\n          (x :| xs) <- f (k - 1)\n          y <- mhTransFree m x\n          return (y :| x : xs)\n"
  },
  {
    "path": "src/Control/Monad/Bayes/Traced.hs",
    "content": "-- |\n-- Module      : Control.Monad.Bayes.Traced\n-- Description : Distributions on execution traces\n-- Copyright   : (c) Adam Scibior, 2015-2020\n-- License     : MIT\n-- Maintainer  : leonhard.markert@tweag.io\n-- Stability   : experimental\n-- Portability : GHC\nmodule Control.Monad.Bayes.Traced\n  ( module Control.Monad.Bayes.Traced.Static,\n  )\nwhere\n\nimport Control.Monad.Bayes.Traced.Static\n"
  },
  {
    "path": "src/Control/Monad/Bayes/Weighted.hs",
    "content": "{-# LANGUAGE DerivingStrategies #-}\n{-# LANGUAGE GeneralizedNewtypeDeriving #-}\n{-# LANGUAGE RankNTypes #-}\n\n-- |\n-- Module      : Control.Monad.Bayes.Weighted\n-- Description : Probability monad accumulating the likelihood\n-- Copyright   : (c) Adam Scibior, 2015-2020\n-- License     : MIT\n-- Maintainer  : leonhard.markert@tweag.io\n-- Stability   : experimental\n-- Portability : GHC\n--\n-- 'WeightedT' is an instance of 'MonadFactor'. Apply a 'MonadDistribution' transformer to\n-- obtain a 'MonadMeasure' that can execute probabilistic models.\nmodule Control.Monad.Bayes.Weighted\n  ( WeightedT,\n    weightedT,\n    extractWeight,\n    unweighted,\n    applyWeight,\n    hoist,\n    runWeightedT,\n  )\nwhere\n\nimport Control.Monad.Bayes.Class\n  ( MonadDistribution,\n    MonadFactor (..),\n    MonadMeasure,\n    MonadUniformRange,\n    factor,\n  )\nimport Control.Monad.State (MonadIO, MonadTrans, StateT (..), lift, mapStateT, modify)\nimport Numeric.Log (Log)\n\n-- | Execute the program using the prior distribution, while accumulating likelihood.\nnewtype WeightedT m a = WeightedT (StateT (Log Double) m a)\n  -- StateT is more efficient than WriterT\n  deriving newtype (Functor, Applicative, Monad, MonadIO, MonadTrans, MonadDistribution, MonadUniformRange)\n\ninstance (Monad m) => MonadFactor (WeightedT m) where\n  score w = WeightedT (modify (* w))\n\ninstance (MonadDistribution m) => MonadMeasure (WeightedT m)\n\n-- | Obtain an explicit value of the likelihood for a given value.\nrunWeightedT :: WeightedT m a -> m (a, Log Double)\nrunWeightedT (WeightedT m) = runStateT m 1\n\n-- | Compute the sample and discard the weight.\n--\n-- This operation introduces bias.\nunweighted :: (Functor m) => WeightedT m a -> m a\nunweighted = fmap fst . runWeightedT\n\n-- | Compute the weight and discard the sample.\nextractWeight :: (Functor m) => WeightedT m a -> m (Log Double)\nextractWeight = fmap snd . runWeightedT\n\n-- | Embed a random variable with explicitly given likelihood.\n--\n-- > runWeightedT . weightedT = id\nweightedT :: (Monad m) => m (a, Log Double) -> WeightedT m a\nweightedT m = WeightedT $ do\n  (x, w) <- lift m\n  modify (* w)\n  return x\n\n-- | Use the weight as a factor in the transformed monad.\napplyWeight :: (MonadFactor m) => WeightedT m a -> m a\napplyWeight m = do\n  (x, w) <- runWeightedT m\n  factor w\n  return x\n\n-- | Apply a transformation to the transformed monad.\nhoist :: (forall x. m x -> n x) -> WeightedT m a -> WeightedT n a\nhoist t (WeightedT m) = WeightedT $ mapStateT t m\n"
  },
  {
    "path": "src/Math/Integrators/StormerVerlet.hs",
    "content": "module Math.Integrators.StormerVerlet\n  ( integrateV,\n    stormerVerlet2H,\n    Integrator,\n  )\nwhere\n\nimport Control.Lens\nimport Control.Monad.Primitive\nimport Data.Vector (Vector, (!))\nimport Data.Vector qualified as V\nimport Data.Vector.Mutable\nimport Linear (V2 (..))\n\n-- | Integrator function\n-- -   \\Phi [h] |->  y_0 -> y_1\ntype Integrator a =\n  -- | Step\n  Double ->\n  -- | Initial value\n  a ->\n  -- | Next value\n  a\n\n-- | Störmer-Verlet integration scheme for systems of the form\n-- \\(\\mathbb{H}(p,q) = T(p) + V(q)\\)\nstormerVerlet2H ::\n  (Applicative f, Num (f a), Fractional a) =>\n  -- | Step size\n  a ->\n  -- | \\(\\frac{\\partial H}{\\partial q}\\)\n  (f a -> f a) ->\n  -- | \\(\\frac{\\partial H}{\\partial p}\\)\n  (f a -> f a) ->\n  -- | Current \\((p, q)\\) as a 2-dimensional vector\n  V2 (f a) ->\n  -- | New \\((p, q)\\) as a 2-dimensional vector\n  V2 (f a)\nstormerVerlet2H hh nablaQ nablaP prev =\n  V2 qNew pNew\n  where\n    h2 = hh / 2\n    hhs = pure hh\n    hh2s = pure h2\n    qsPrev = prev ^. _1\n    psPrev = prev ^. _2\n    pp2 = psPrev - hh2s * nablaQ qsPrev\n    qNew = qsPrev + hhs * nablaP pp2\n    pNew = pp2 - hh2s * nablaQ qNew\n\n-- |\n-- Integrate ODE equation using fixed steps set by a vector, and returns a vector\n-- of solutions corrensdonded to times that was requested.\n-- It takes Vector of time points as a parameter and returns a vector of results\nintegrateV ::\n  (PrimMonad m) =>\n  -- | Internal integrator\n  Integrator a ->\n  -- | initial  value\n  a ->\n  -- | vector of time points\n  Vector Double ->\n  -- | vector of solution\n  m (Vector a)\nintegrateV integrator initial times = do\n  out <- new (V.length times)\n  write out 0 initial\n  compute initial 1 out\n  V.unsafeFreeze out\n  where\n    compute y i out\n      | i == V.length times = return ()\n      | otherwise = do\n          let h = (times ! i) - (times ! (i - 1))\n              y' = integrator h y\n          write out i y'\n          compute y' (i + 1) out\n"
  },
  {
    "path": "test/Spec.hs",
    "content": "{-# LANGUAGE ImportQualifiedPost #-}\n\nimport Data.AEq (AEq ((~==)))\nimport Test.Hspec (context, describe, hspec, it, shouldBe)\nimport Test.Hspec.QuickCheck (prop)\nimport Test.QuickCheck (ioProperty, property, (==>))\nimport TestAdvanced qualified\nimport TestBenchmarks qualified\nimport TestDistribution qualified\nimport TestEnumerator qualified\nimport TestInference qualified\nimport TestIntegrator qualified\nimport TestPipes (hmms)\nimport TestPipes qualified\nimport TestPopulation qualified\nimport TestSSMFixtures qualified\nimport TestSampler qualified\nimport TestSequential qualified\nimport TestStormerVerlet qualified\nimport TestWeighted qualified\n\nmain :: IO ()\nmain = hspec do\n  describe \"Stormer Verlet\" $\n    it \"conserves energy\" $\n      do\n        p1 <- TestStormerVerlet.passed1\n        p1 `shouldBe` True\n  describe \"Distribution\" $\n    it \"gives correct mean, variance and covariance\" $\n      do\n        p1 <- TestDistribution.passed1\n        p1 `shouldBe` True\n        p2 <- TestDistribution.passed2\n        p2 `shouldBe` True\n        p3 <- TestDistribution.passed3\n        p3 `shouldBe` True\n  describe \"Weighted\" $\n    it \"accumulates likelihood correctly\" $\n      do\n        passed <- TestWeighted.passed\n        passed `shouldBe` True\n  describe \"Enumerator\" do\n    it \"sorts samples and aggregates weights\" $\n      TestEnumerator.passed2 `shouldBe` True\n    it \"gives correct answer for the sprinkler model\" $\n      TestEnumerator.passed3 `shouldBe` True\n    it \"computes expectation correctly\" $\n      TestEnumerator.passed4 `shouldBe` True\n  describe \"Integrator Expectation\" do\n    prop \"expectation numerically\" $\n      \\mean var ->\n        var > 0 ==> property $ TestIntegrator.normalExpectation mean (sqrt var) ~== mean\n  describe \"Integrator Variance\" do\n    prop \"variance numerically\" $\n      \\mean var ->\n        -- Because of rounding issues, require the variance to be a bit bigger than 0\n        -- See https://github.com/tweag/monad-bayes/issues/275\n        var > 0.1 ==> property $ TestIntegrator.normalVariance mean (sqrt var) ~== var\n  describe \"SamplerT mean and variance\" do\n    it \"gets right mean and variance\" $\n      TestSampler.testMeanAndVariance `shouldBe` True\n  describe \"Integrator Volume\" do\n    prop \"volume sums to 1\" $\n      property $ \\case\n        [] -> True\n        ls -> (TestIntegrator.volumeIsOne ls)\n\n  describe \"Integrator\" do\n    it \"\" $\n      all\n        (== True)\n        [ TestIntegrator.passed1,\n          TestIntegrator.passed2,\n          TestIntegrator.passed3,\n          TestIntegrator.passed4,\n          TestIntegrator.passed5,\n          TestIntegrator.passed6,\n          TestIntegrator.passed7,\n          TestIntegrator.passed8,\n          TestIntegrator.passed9,\n          TestIntegrator.passed10,\n          TestIntegrator.passed11,\n          TestIntegrator.passed12,\n          TestIntegrator.passed13,\n          TestIntegrator.passed14\n        ]\n        `shouldBe` True\n\n  describe \"Population\" do\n    context \"controlling population\" do\n      it \"preserves the population when not explicitly altered\" do\n        popSize <- TestPopulation.popSize\n        popSize `shouldBe` 5\n      it \"multiplies the number of samples when spawn invoked twice\" do\n        manySize <- TestPopulation.manySize\n        manySize `shouldBe` 15\n      it \"correctly computes population average\" $\n        TestPopulation.popAvgCheck `shouldBe` True\n    context \"distribution-preserving transformations\" do\n      it \"collapse preserves the distribution\" do\n        TestPopulation.transCheck1 `shouldBe` True\n        TestPopulation.transCheck2 `shouldBe` True\n      it \"resample preserves the distribution\" do\n        TestPopulation.resampleCheck 1 `shouldBe` True\n        TestPopulation.resampleCheck 2 `shouldBe` True\n  describe \"Sequential\" do\n    it \"stops at every factor\" do\n      TestSequential.checkTwoSync 0 `shouldBe` True\n      TestSequential.checkTwoSync 1 `shouldBe` True\n      TestSequential.checkTwoSync 2 `shouldBe` True\n    it \"preserves the distribution\" $\n      TestSequential.checkPreserve `shouldBe` True\n    it \"produces correct intermediate weights\" do\n      TestSequential.checkSync 0 `shouldBe` True\n      TestSequential.checkSync 1 `shouldBe` True\n      TestSequential.checkSync 2 `shouldBe` True\n  describe \"SMC\" do\n    it \"terminates\" $\n      seq TestInference.checkTerminateSMC () `shouldBe` ()\n    it \"preserves the distribution on the sprinkler model\" $\n      TestInference.checkPreserveSMC `shouldBe` True\n    prop \"number of particles is equal to its second parameter\" $\n      \\observations particles ->\n        observations >= 0 && particles >= 1 ==> ioProperty do\n          checkParticles <- TestInference.checkParticles observations particles\n          return $ checkParticles == particles\n  describe \"SMC with systematic resampling\" $\n    prop \"number of particles is equal to its second parameter\" $\n      \\observations particles ->\n        observations >= 0 && particles >= 1 ==> ioProperty do\n          checkParticles <- TestInference.checkParticlesSystematic observations particles\n          return $ checkParticles == particles\n  describe \"Equivalent Expectations\" do\n    prop \"Gamma Normal\" $\n      ioProperty . TestInference.testGammaNormal\n    prop \"Normal Normal\" $\n      \\n -> ioProperty (TestInference.testNormalNormal [max (-3) $ min 3 n])\n    prop \"Beta Bernoulli\" $\n      ioProperty . TestInference.testBetaBernoulli\n  describe \"Pipes: Urn\" do\n    it \"Distributions are equivalent\" do\n      TestPipes.urns 10 `shouldBe` True\n  describe \"Pipes: HMM\" do\n    prop \"pipe model is equivalent to standard model\" $\n      \\num -> property $ hmms $ take 5 num\n\n  describe \"SMC with stratified resampling\" $\n    prop \"number of particles is equal to its second parameter\" $\n      \\observations particles ->\n        observations >= 0 && particles >= 1 ==> ioProperty do\n          checkParticles <- TestInference.checkParticlesStratified observations particles\n          return $ checkParticles == particles\n\n  describe \"Expectation from all inference methods\" $\n    it \"gives correct answer for the sprinkler model\" do\n      passed1 <- TestAdvanced.passed1\n      passed1 `shouldBe` True\n      passed2 <- TestAdvanced.passed2\n      passed2 `shouldBe` True\n      passed3 <- TestAdvanced.passed3\n      passed3 `shouldBe` True\n      passed4 <- TestAdvanced.passed4\n      passed4 `shouldBe` True\n      passed5 <- TestAdvanced.passed5\n      passed5 `shouldBe` True\n      passed6 <- TestAdvanced.passed6\n      passed6 `shouldBe` True\n      passed7 <- TestAdvanced.passed7\n      passed7 `shouldBe` True\n\n  TestBenchmarks.test\n  TestSSMFixtures.test\n"
  },
  {
    "path": "test/TestAdvanced.hs",
    "content": "module TestAdvanced where\n\nimport Control.Arrow\nimport Control.Monad (join)\nimport Control.Monad.Bayes.Class\nimport Control.Monad.Bayes.Enumerator\nimport Control.Monad.Bayes.Inference.MCMC\nimport Control.Monad.Bayes.Inference.PMMH\nimport Control.Monad.Bayes.Inference.RMSMC\nimport Control.Monad.Bayes.Inference.SMC\nimport Control.Monad.Bayes.Inference.SMC2\nimport Control.Monad.Bayes.Population\nimport Control.Monad.Bayes.Sampler.Strict\n\nmcmcConfig :: MCMCConfig\nmcmcConfig = MCMCConfig {numMCMCSteps = 0, numBurnIn = 0, proposal = SingleSiteMH}\n\nsmcConfig :: (MonadDistribution m) => SMCConfig m\nsmcConfig = SMCConfig {numSteps = 0, numParticles = 1000, resampler = resampleMultinomial}\n\npassed1, passed2, passed3, passed4, passed5, passed6, passed7 :: IO Bool\npassed1 = do\n  sample <- sampleIOfixed $ mcmc MCMCConfig {numMCMCSteps = 10000, numBurnIn = 5000, proposal = SingleSiteMH} random\n  return $ abs (0.5 - (expectation id $ fromList $ toEmpirical sample)) < 0.01\npassed2 = do\n  sample <- sampleIOfixed $ runPopulationT $ smc (SMCConfig {numSteps = 0, numParticles = 10000, resampler = resampleMultinomial}) random\n  return $ close 0.5 sample\npassed3 = do\n  sample <- sampleIOfixed $ runPopulationT $ rmsmcDynamic mcmcConfig smcConfig random\n  return $ close 0.5 sample\npassed4 = do\n  sample <- sampleIOfixed $ runPopulationT $ rmsmcBasic mcmcConfig smcConfig random\n  return $ close 0.5 sample\npassed5 = do\n  sample <- sampleIOfixed $ runPopulationT $ rmsmc mcmcConfig smcConfig random\n  return $ close 0.5 sample\npassed6 = do\n  sample <-\n    fmap join $\n      sampleIOfixed $\n        pmmh\n          mcmcConfig {numMCMCSteps = 100}\n          smcConfig {numSteps = 0, numParticles = 100}\n          random\n          (normal 0)\n  return $ close 0.0 sample\n\nclose :: Double -> [(Double, Log Double)] -> Bool\n\npassed7 = do\n  sample <- fmap join $ sampleIOfixed $ fmap (fmap (\\(x, y) -> fmap (second (* y)) x)) $ runPopulationT $ smc2 0 100 100 100 random (normal 0)\n  return $ close 0.0 sample\n\nclose n sample = abs (n - (expectation id $ fromList $ toEmpiricalWeighted sample)) < 0.01\n"
  },
  {
    "path": "test/TestBenchmarks.hs",
    "content": "module TestBenchmarks where\n\nimport Control.Monad (forM_)\nimport Data.Maybe (fromJust)\nimport Helper\nimport Paths_monad_bayes (getDataDir)\nimport System.IO (readFile')\nimport System.IO.Error (catchIOError, isDoesNotExistError)\nimport Test.Hspec\n\nfixtureToFilename :: Model -> Alg -> String\nfixtureToFilename model alg = \"/test/fixtures/\" ++ fromJust (serializeModel model) ++ \"-\" ++ show alg ++ \".txt\"\n\nmodels :: [Model]\nmodels = [LR 10, HMM 10, LDA (5, 10)]\n\nalgs :: [Alg]\nalgs = [minBound .. maxBound]\n\ntest :: SpecWith ()\ntest = describe \"Benchmarks\" $ forM_ models $ \\model -> forM_ algs $ testFixture model\n\ntestFixture :: Model -> Alg -> SpecWith ()\ntestFixture model alg = do\n  dataDir <- runIO getDataDir\n  let filename = dataDir <> fixtureToFilename model alg\n  it (\"should agree with the fixture \" ++ filename) $ do\n    fixture <- catchIOError (readFile' filename) $ \\e ->\n      if isDoesNotExistError e\n        then return \"\"\n        else ioError e\n    sampled <- runAlgFixed model alg\n    -- Reset in case of fixture update or creation\n    writeFile filename sampled\n    fixture `shouldBe` sampled\n"
  },
  {
    "path": "test/TestDistribution.hs",
    "content": "{-# LANGUAGE ImportQualifiedPost #-}\n{-# LANGUAGE Trustworthy #-}\n\nmodule TestDistribution\n  ( passed1,\n    passed2,\n    passed3,\n  )\nwhere\n\nimport Control.Monad (replicateM)\nimport Control.Monad.Bayes.Class (mvNormal)\nimport Control.Monad.Bayes.Sampler.Strict\nimport Data.Matrix (fromList)\nimport Data.Vector qualified as V\n\n-- Test the sampled covariance is approximately the same as the\n-- specified covariance.\npassed1 :: IO Bool\npassed1 = sampleIOfixed $ do\n  let mu = (V.fromList [0.0, 0.0])\n      sigma11 = 2.0\n      sigma12 = 1.0\n      bigSigma = (fromList 2 2 [sigma11, sigma12, sigma12, sigma11])\n      nSamples = 200000\n      nSamples' = fromIntegral nSamples\n  ss <- replicateM nSamples $ (mvNormal mu bigSigma)\n  let xbar = (/ nSamples') $ sum $ fmap (V.! 0) ss\n      ybar = (/ nSamples') $ sum $ fmap (V.! 1) ss\n  let term1 = (/ nSamples') $ sum $ zipWith (*) (fmap (V.! 0) ss) (fmap (V.! 1) ss)\n  let term2 = xbar * ybar\n  return $ abs (sigma12 - (term1 - term2)) < 2e-2\n\n-- Test the sampled means are approximately the same as the specified\n-- means.\npassed2 :: IO Bool\npassed2 = sampleIOfixed $ do\n  let mu = (V.fromList [0.0, 0.0])\n      sigma11 = 2.0\n      sigma12 = 1.0\n      bigSigma = (fromList 2 2 [sigma11, sigma12, sigma12, sigma11])\n      nSamples = 100000\n      nSamples' = fromIntegral nSamples\n  ss <- replicateM nSamples $ (mvNormal mu bigSigma)\n  let xbar = (/ nSamples') $ sum $ fmap (V.! 0) ss\n      ybar = (/ nSamples') $ sum $ fmap (V.! 1) ss\n  return $ abs xbar < 1e-2 && abs ybar < 1e-2\n\n-- Test the sampled variances are approximately the same as the\n-- specified variances.\npassed3 :: IO Bool\npassed3 = sampleIOfixed $ do\n  let mu = (V.fromList [0.0, 0.0])\n      sigma11 = 2.0\n      sigma12 = 1.0\n      bigSigma = (fromList 2 2 [sigma11, sigma12, sigma12, sigma11])\n      nSamples = 200000\n      nSamples' = fromIntegral nSamples\n  ss <- replicateM nSamples $ (mvNormal mu bigSigma)\n  let xbar = (/ nSamples') $ sum $ fmap (V.! 0) ss\n      ybar = (/ nSamples') $ sum $ fmap (V.! 1) ss\n  let xbar2 = (/ nSamples') $ sum $ fmap (\\x -> x * x) $ fmap (V.! 0) ss\n      ybar2 = (/ nSamples') $ sum $ fmap (\\x -> x * x) $ fmap (V.! 1) ss\n  let xvar = xbar2 - xbar * xbar\n  let yvar = ybar2 - ybar * ybar\n  return $ abs (xvar - sigma11) < 1e-2 && abs (yvar - sigma11) < 2e-2\n"
  },
  {
    "path": "test/TestEnumerator.hs",
    "content": "{-# LANGUAGE ImportQualifiedPost #-}\n\nmodule TestEnumerator (passed1, passed2, passed3, passed4) where\n\nimport Control.Monad.Bayes.Class\n  ( MonadDistribution (categorical, uniformD),\n  )\nimport Control.Monad.Bayes.Enumerator\n  ( enumerator,\n    evidence,\n    expectation,\n  )\nimport Data.AEq (AEq ((~==)))\nimport Data.Vector qualified as V\nimport Numeric.Log (Log (ln))\nimport Sprinkler (hard, soft)\n\nunnorm :: (MonadDistribution m) => m Int\nunnorm = categorical $ V.fromList [0.5, 0.8]\n\npassed1 :: Bool\npassed1 = (exp . ln) (evidence unnorm) ~== 1\n\nagg :: (MonadDistribution m) => m Int\nagg = do\n  x <- uniformD [0, 1]\n  y <- uniformD [2, 1]\n  return (x + y)\n\npassed2 :: Bool\npassed2 = enumerator agg ~== [(2, 0.5), (1, 0.25), (3, 0.25)]\n\npassed3 :: Bool\npassed3 = enumerator Sprinkler.hard ~== enumerator Sprinkler.soft\n\npassed4 :: Bool\npassed4 =\n  expectation (^ (2 :: Int)) (fmap (fromIntegral . (+ 1)) $ categorical $ V.fromList [0.5, 0.5]) ~== 2.5\n"
  },
  {
    "path": "test/TestInference.hs",
    "content": "{-# LANGUAGE ImportQualifiedPost #-}\n{-# LANGUAGE Rank2Types #-}\n{-# LANGUAGE TypeFamilies #-}\n{-# OPTIONS_GHC -Wno-missing-export-lists #-}\n\nmodule TestInference where\n\nimport ConjugatePriors\n  ( betaBernoulli',\n    betaBernoulliAnalytic,\n    gammaNormal',\n    gammaNormalAnalytic,\n    normalNormal',\n    normalNormalAnalytic,\n  )\nimport Control.Monad (replicateM)\nimport Control.Monad.Bayes.Class (MonadMeasure, posterior)\nimport Control.Monad.Bayes.Enumerator (enumerator)\nimport Control.Monad.Bayes.Inference.SMC\nimport Control.Monad.Bayes.Integrator (normalize)\nimport Control.Monad.Bayes.Integrator qualified as Integrator\nimport Control.Monad.Bayes.Population\nimport Control.Monad.Bayes.Sampler.Strict (SamplerT, sampleIOfixed)\nimport Control.Monad.Bayes.Sampler.Strict qualified as Sampler\nimport Control.Monad.Bayes.Weighted (WeightedT)\nimport Control.Monad.Bayes.Weighted qualified as WeightedT\nimport Data.AEq (AEq ((~==)))\nimport Numeric.Log (Log)\nimport Sprinkler (soft)\nimport System.Random.Stateful (IOGenM, StdGen)\n\nsprinkler :: (MonadMeasure m) => m Bool\nsprinkler = Sprinkler.soft\n\n-- | Count the number of particles produced by SMC\ncheckParticles :: Int -> Int -> IO Int\ncheckParticles observations particles =\n  sampleIOfixed (fmap length (runPopulationT $ smc SMCConfig {numSteps = observations, numParticles = particles, resampler = resampleMultinomial} Sprinkler.soft))\n\ncheckParticlesSystematic :: Int -> Int -> IO Int\ncheckParticlesSystematic observations particles =\n  sampleIOfixed (fmap length (runPopulationT $ smc SMCConfig {numSteps = observations, numParticles = particles, resampler = resampleSystematic} Sprinkler.soft))\n\ncheckParticlesStratified :: Int -> Int -> IO Int\ncheckParticlesStratified observations particles =\n  sampleIOfixed (fmap length (runPopulationT $ smc SMCConfig {numSteps = observations, numParticles = particles, resampler = resampleStratified} Sprinkler.soft))\n\ncheckTerminateSMC :: IO [(Bool, Log Double)]\ncheckTerminateSMC = sampleIOfixed (runPopulationT $ smc SMCConfig {numSteps = 2, numParticles = 5, resampler = resampleMultinomial} sprinkler)\n\ncheckPreserveSMC :: Bool\ncheckPreserveSMC =\n  (enumerator . collapse . smc SMCConfig {numSteps = 2, numParticles = 2, resampler = resampleMultinomial}) sprinkler\n    ~== enumerator sprinkler\n\nexpectationNearNumeric ::\n  WeightedT Integrator.Integrator Double ->\n  WeightedT Integrator.Integrator Double ->\n  Double\nexpectationNearNumeric x y =\n  let e1 = Integrator.expectation $ normalize x\n      e2 = Integrator.expectation $ normalize y\n   in (abs (e1 - e2))\n\nexpectationNearSampling ::\n  WeightedT (SamplerT (IOGenM StdGen) IO) Double ->\n  WeightedT (SamplerT (IOGenM StdGen) IO) Double ->\n  IO Double\nexpectationNearSampling x y = do\n  e1 <- sampleIOfixed $ fmap Sampler.sampleMean $ replicateM 10 $ WeightedT.runWeightedT x\n  e2 <- sampleIOfixed $ fmap Sampler.sampleMean $ replicateM 10 $ WeightedT.runWeightedT y\n  return (abs (e1 - e2))\n\ntestNormalNormal :: [Double] -> IO Bool\ntestNormalNormal n = do\n  let e =\n        expectationNearNumeric\n          (posterior (normalNormal' 1 (1, 10)) n)\n          (normalNormalAnalytic 1 (1, 10) n)\n  return (e < 1e-0)\n\ntestGammaNormal :: [Double] -> IO Bool\ntestGammaNormal n = do\n  let e =\n        expectationNearNumeric\n          (posterior (gammaNormal' (1, 1)) n)\n          (gammaNormalAnalytic (1, 1) n)\n  return (e < 1e-1)\n\ntestBetaBernoulli :: [Bool] -> IO Bool\ntestBetaBernoulli bs = do\n  let e =\n        expectationNearNumeric\n          (posterior (betaBernoulli' (1, 1)) bs)\n          (betaBernoulliAnalytic (1, 1) bs)\n  return (e < 1e-1)\n"
  },
  {
    "path": "test/TestIntegrator.hs",
    "content": "{-# LANGUAGE BlockArguments #-}\n\nmodule TestIntegrator where\n\nimport Control.Monad (replicateM)\nimport Control.Monad.Bayes.Class\n  ( MonadDistribution (bernoulli, gamma, normal, random, uniformD),\n    MonadFactor (score),\n    MonadMeasure,\n    condition,\n    factor,\n    normalPdf,\n  )\nimport Control.Monad.Bayes.Integrator\nimport Control.Monad.Bayes.Sampler.Strict\nimport Control.Monad.Bayes.Weighted (runWeightedT)\nimport Control.Monad.ST (runST)\nimport Data.AEq (AEq ((~==)))\nimport Data.List (sortOn)\nimport Data.Set (fromList)\nimport Numeric.Log (Log (Exp, ln))\nimport Sprinkler (hard, soft)\nimport Statistics.Distribution (Distribution (cumulative))\nimport Statistics.Distribution.Normal (normalDistr)\n\nnormalExpectation :: Double -> Double -> Double\nnormalExpectation mean std = expectation (normal mean std)\n\nnormalVariance :: Double -> Double -> Double\nnormalVariance mean std = variance (normal mean std)\n\nvolumeIsOne :: [Double] -> Bool\nvolumeIsOne = (~== 1.0) . volume . uniformD\n\nagg :: (MonadDistribution m) => m Int\nagg = do\n  x <- uniformD [0, 1]\n  y <- uniformD [2, 1]\n  return (x + y)\n\nwithin :: (Ord a, Num a) => a -> a -> a -> Bool\nwithin n x y = abs (x - y) < n\n\npassed1,\n  passed2,\n  passed3,\n  passed4,\n  passed5,\n  passed6,\n  passed7,\n  passed8,\n  passed9,\n  passed10,\n  passed11,\n  passed12,\n  passed13,\n  passed14 ::\n    Bool\n-- enumerator from Integrator works\npassed1 =\n  sortOn fst (enumeratorWith (fromList [3, 1, 2]) agg)\n    ~== sortOn fst [(2, 0.5), (1, 0.25), (3, 0.25)]\n-- hard and soft sprinkers are equivalent under enumerator from Integrator\npassed2 =\n  enumeratorWith (fromList [True, False]) (normalize (Sprinkler.hard))\n    ~== enumeratorWith (fromList [True, False]) (normalize (Sprinkler.soft))\n-- expectation is as expected\npassed3 =\n  expectation (fmap ((** 2) . (+ 1)) $ uniformD [0, 1]) == 2.5\n-- distribution is normalized\npassed4 = volume (uniformD [1, 2]) ~== 1.0\n-- enumerator is as expected\npassed5 =\n  sortOn fst (enumeratorWith (fromList [0, 1 :: Int]) (empirical [0 :: Int, 1, 1, 1]))\n    == sortOn fst [(1, 0.75), (0, 0.25)]\n-- normalization works right for enumerator, when there is conditioning\npassed6 =\n  sortOn fst [(2, 0.5), (3, 0.5), (1, 0.0)]\n    == sortOn\n      fst\n      ( enumeratorWith (fromList [1, 2, 3]) $\n          normalize $ do\n            x <- uniformD [1 :: Int, 2, 3]\n            condition (x > 1)\n            return x\n      )\n-- soft factor statements work with enumerator and normalization\npassed7 =\n  sortOn fst [(True, 0.75), (False, 0.25)]\n    ~== sortOn\n      fst\n      ( enumeratorWith (fromList [True, False]) $ normalize do\n          x <- bernoulli 0.5\n          factor $ if x then 0.3 else 0.1\n          return x\n      )\n-- volume of weight remains 1\npassed8 =\n  1\n    == ( volume $\n           fmap (ln . exp . snd) $ runWeightedT do\n             x <- bernoulli 0.5\n             factor $ if x then 0.2 else 0.1\n             return x\n       )\n-- normal probability in positive region is half\npassed9 = probability (1, 1000) (normal 1 10) - 0.5 < 0.05\n-- cdf as expected\npassed10 = cdf (normal 5 5) 5 - 0.5 < 0.05\n-- cdf as expected\npassed11 =\n  (within 0.001)\n    ( cdf\n        ( do\n            x <- normal 0 1\n            return x\n        )\n        3\n    )\n    (cumulative (normalDistr 0 1) 3)\n-- volume as expected\npassed12 =\n  volume\n    ( do\n        x <- gamma 2 3\n        return x\n    )\n    ~== 1\n-- normalization preserves volume\npassed13 =\n  (volume . normalize)\n    ( do\n        x <- gamma 2 3\n        factor (normalPdf 0 1 x)\n        return x\n    )\n    ~== 1\n-- sampler and integrator agree on a non-trivial model\npassed14 =\n  let sample = runST $ sampleSTfixed $ fmap sampleMean $ replicateM 10000 $ runWeightedT $ model1\n      quadrature = expectation $ normalize $ model1\n   in abs (sample - quadrature) < 0.01\n\nmodel1 :: (MonadMeasure m) => m Double\nmodel1 = do\n  x <- random\n  y <- random\n  score (Exp $ log (f x + y))\n  return x\n  where\n    f x = cos (x ** 4) + x ** 3\n"
  },
  {
    "path": "test/TestPipes.hs",
    "content": "{-# OPTIONS_GHC -Wno-monomorphism-restriction #-}\n\nmodule TestPipes where\n\nimport BetaBin (urn, urnP)\nimport Control.Monad.Bayes.Class ()\nimport Control.Monad.Bayes.Enumerator (enumerator)\nimport Data.AEq (AEq ((~==)))\nimport Data.List (sort)\nimport HMM (hmm, hmmPosterior)\nimport Pipes.Prelude (toListM)\n\nurns :: Int -> Bool\nurns n = enumerator (urn n) ~== enumerator (urnP n)\n\nhmms :: [Double] -> Bool\nhmms observations =\n  let hmmWithoutPipe = hmm observations\n      hmmWithPipe = reverse . init <$> toListM (hmmPosterior observations)\n   in -- Sort enumerator again although it is already sorted, see https://github.com/tweag/monad-bayes/issues/283\n      sort (enumerator hmmWithPipe) ~== sort (enumerator hmmWithoutPipe)\n"
  },
  {
    "path": "test/TestPopulation.hs",
    "content": "module TestPopulation (weightedSampleSize, popSize, manySize, sprinkler, sprinklerExact, transCheck1, transCheck2, resampleCheck, popAvgCheck) where\n\nimport Control.Monad.Bayes.Class (MonadDistribution, MonadMeasure)\nimport Control.Monad.Bayes.Enumerator (enumerator, expectation)\nimport Control.Monad.Bayes.Population as Population\n  ( PopulationT,\n    collapse,\n    popAvg,\n    pushEvidence,\n    resampleMultinomial,\n    runPopulationT,\n    spawn,\n  )\nimport Control.Monad.Bayes.Sampler.Strict (sampleIOfixed)\nimport Data.AEq (AEq ((~==)))\nimport Sprinkler (soft)\n\nweightedSampleSize :: (MonadDistribution m) => PopulationT m a -> m Int\nweightedSampleSize = fmap length . runPopulationT\n\npopSize :: IO Int\npopSize =\n  sampleIOfixed (weightedSampleSize $ spawn 5 >> sprinkler)\n\nmanySize :: IO Int\nmanySize =\n  sampleIOfixed (weightedSampleSize $ spawn 5 >> sprinkler >> spawn 3)\n\nsprinkler :: (MonadMeasure m) => m Bool\nsprinkler = Sprinkler.soft\n\nsprinklerExact :: [(Bool, Double)]\nsprinklerExact = enumerator Sprinkler.soft\n\ntransCheck1 :: Bool\ntransCheck1 =\n  enumerator (collapse sprinkler)\n    ~== sprinklerExact\n\ntransCheck2 :: Bool\ntransCheck2 =\n  enumerator (collapse (spawn 2 >> sprinkler))\n    ~== sprinklerExact\n\nresampleCheck :: Int -> Bool\nresampleCheck n =\n  (enumerator . collapse . resampleMultinomial) (spawn n >> sprinkler)\n    ~== sprinklerExact\n\npopAvgCheck :: Bool\npopAvgCheck = expectation f Sprinkler.soft ~== expectation id (popAvg f $ pushEvidence Sprinkler.soft)\n  where\n    f True = 10\n    f False = 4\n"
  },
  {
    "path": "test/TestSSMFixtures.hs",
    "content": "module TestSSMFixtures where\n\nimport Control.Monad.Bayes.Sampler.Strict (sampleIOfixed)\nimport NonlinearSSM\nimport NonlinearSSM.Algorithms\nimport Paths_monad_bayes (getDataDir)\nimport System.IO (readFile')\nimport System.IO.Error (catchIOError, isDoesNotExistError)\nimport Test.Hspec\n\nfixtureToFilename :: Alg -> FilePath\nfixtureToFilename alg = \"/test/fixtures/SSM-\" ++ show alg ++ \".txt\"\n\ntestFixture :: Alg -> SpecWith ()\ntestFixture alg = do\n  dataDir <- runIO getDataDir\n  let filename = dataDir <> fixtureToFilename alg\n  it (\"should agree with the fixture \" ++ filename) $ do\n    ys <- sampleIOfixed $ generateData t\n    fixture <- catchIOError (readFile' filename) $ \\e ->\n      if isDoesNotExistError e\n        then return \"\"\n        else ioError e\n    sampled <- sampleIOfixed $ runAlgFixed (map fst ys) alg\n    -- Reset in case of fixture update or creation\n    writeFile filename sampled\n    fixture `shouldBe` sampled\n\ntest :: SpecWith ()\ntest = describe \"TestSSMFixtures\" $ mapM_ testFixture algs\n"
  },
  {
    "path": "test/TestSampler.hs",
    "content": "module TestSampler where\n\nimport Control.Foldl qualified as Fold\nimport Control.Monad (replicateM)\nimport Control.Monad.Bayes.Class (MonadDistribution (normal))\nimport Control.Monad.Bayes.Sampler.Strict (sampleSTfixed)\nimport Control.Monad.ST (runST)\n\ntestMeanAndVariance :: Bool\ntestMeanAndVariance = isDiff\n  where\n    m = runST (sampleSTfixed (foldWith Fold.mean (normal 2 4)))\n    v = runST (sampleSTfixed (foldWith Fold.variance (normal 2 4)))\n    foldWith f = fmap (Fold.fold f) . replicateM 100000\n    isDiff = abs (2 - m) < 0.01 && abs (16 - v) < 0.1\n"
  },
  {
    "path": "test/TestSequential.hs",
    "content": "module TestSequential (twoSync, finishedTwoSync, checkTwoSync, checkPreserve, pFinished, isFinished, checkSync) where\n\nimport Control.Monad.Bayes.Class\n  ( MonadDistribution (uniformD),\n    MonadMeasure,\n    factor,\n  )\nimport Control.Monad.Bayes.Enumerator as Dist (enumerator, mass)\nimport Control.Monad.Bayes.Sequential.Coroutine (advance, finish, finished)\nimport Data.AEq (AEq ((~==)))\nimport Sprinkler (soft)\n\ntwoSync :: (MonadMeasure m) => m Int\ntwoSync = do\n  x <- uniformD [0, 1]\n  factor (fromIntegral x)\n  y <- uniformD [0, 1]\n  factor (fromIntegral y)\n  return (x + y)\n\nfinishedTwoSync :: (MonadMeasure m) => Int -> m Bool\nfinishedTwoSync n = finished (run n twoSync)\n  where\n    run 0 d = d\n    run k d = run (k - 1) (advance d)\n\ncheckTwoSync :: Int -> Bool\ncheckTwoSync 0 = mass (finishedTwoSync 0) False ~== 1\ncheckTwoSync 1 = mass (finishedTwoSync 1) False ~== 1\ncheckTwoSync 2 = mass (finishedTwoSync 2) True ~== 1\ncheckTwoSync _ = error \"Unexpected argument\"\n\nsprinkler :: (MonadMeasure m) => m Bool\nsprinkler = Sprinkler.soft\n\ncheckPreserve :: Bool\ncheckPreserve = enumerator (finish sprinkler) ~== enumerator sprinkler\n\npFinished :: Int -> Double\npFinished 0 = 0.8267716535433071\npFinished 1 = 0.9988062077198566\npFinished 2 = 1\npFinished _ = error \"Unexpected argument\"\n\nisFinished :: (MonadMeasure m) => Int -> m Bool\nisFinished n = finished (run n sprinkler)\n  where\n    run 0 d = d\n    run k d = run (k - 1) (advance d)\n\ncheckSync :: Int -> Bool\ncheckSync n = mass (isFinished n) True ~== pFinished n\n"
  },
  {
    "path": "test/TestStormerVerlet.hs",
    "content": "module TestStormerVerlet\n  ( passed1,\n  )\nwhere\n\nimport Control.Lens\nimport Control.Monad.ST\nimport Data.Maybe (fromJust)\nimport Data.Vector qualified as V\nimport Linear qualified as L\nimport Linear.V\nimport Math.Integrators.StormerVerlet\nimport Statistics.Function (square)\n\ngConst :: Double\ngConst = 6.67384e-11\n\nnStepsTwoPlanets :: Int\nnStepsTwoPlanets = 44\n\nstepTwoPlanets :: Double\nstepTwoPlanets = 24 * 60 * 60 * 100\n\nsunMass, jupiterMass :: Double\nsunMass = 1.9889e30\njupiterMass = 1.8986e27\n\njupiterPerihelion :: Double\njupiterPerihelion = 7.405736e11\n\njupiterV :: [Double]\njupiterV = [-1.0965244901087316e02, -1.3710001990210707e04, 0.0]\n\njupiterQ :: [Double]\njupiterQ = [negate jupiterPerihelion, 0.0, 0.0]\n\nsunV :: [Double]\nsunV = [0.0, 0.0, 0.0]\n\nsunQ :: [Double]\nsunQ = [0.0, 0.0, 0.0]\n\ntm :: V.Vector Double\ntm = V.enumFromStepN 0 stepTwoPlanets nStepsTwoPlanets\n\nkeplerP :: L.V2 (L.V3 Double) -> L.V2 (L.V3 Double)\nkeplerP (L.V2 p1 p2) = L.V2 dHdP1 dHdP2\n  where\n    dHdP1 = p1 / pure jupiterMass\n    dHdP2 = p2 / pure sunMass\n\nkeplerQ :: L.V2 (L.V3 Double) -> L.V2 (L.V3 Double)\nkeplerQ (L.V2 q1 q2) = L.V2 dHdQ1 dHdQ2\n  where\n    r = q2 L.^-^ q1\n    ri = r `L.dot` r\n    rr = ri * (sqrt ri)\n    q1' = pure gConst * r / pure rr\n    q2' = negate q1'\n    dHdQ1 = q1' * pure sunMass * pure jupiterMass\n    dHdQ2 = q2' * pure sunMass * pure jupiterMass\n\nlistToV3 :: [a] -> L.V3 a\nlistToV3 [x, y, z] = fromV . fromJust . fromVector . V.fromList $ [x, y, z]\nlistToV3 xs = error $ \"Only supply 3 elements not: \" ++ show (length xs)\n\ninitPQ2s :: L.V2 (L.V2 (L.V3 Double))\ninitPQ2s =\n  L.V2\n    (L.V2 (listToV3 jupiterQ) (listToV3 sunQ))\n    (L.V2 (pure jupiterMass * listToV3 jupiterV) (pure sunMass * listToV3 sunV))\n\nresult2 :: V.Vector (L.V2 (L.V2 (L.V3 Double)))\nresult2 = runST $ integrateV (\\h -> stormerVerlet2H (pure h) keplerQ keplerP) initPQ2s tm\n\nenergy :: (L.V2 (L.V2 (L.V3 Double))) -> Double\nenergy x = keJ + keS + peJ + peS\n  where\n    qs = x ^. _1\n    ps = x ^. _2\n    qJ = qs ^. _1\n    qS = qs ^. _2\n    pJ = ps ^. _1\n    pS = ps ^. _2\n    keJ = (* 0.5) $ (/ jupiterMass) $ sum $ fmap square pJ\n    keS = (* 0.5) $ (/ sunMass) $ sum $ fmap square pS\n    r = qJ L.^-^ qS\n    ri = r `L.dot` r\n    peJ = 0.5 * gConst * sunMass * jupiterMass / (sqrt ri)\n    peS = 0.5 * gConst * sunMass * jupiterMass / (sqrt ri)\n\nenergies :: V.Vector Double\nenergies = fmap energy result2\n\ndiffs :: V.Vector Double\ndiffs = V.zipWith (\\x y -> abs (x - y) / x) energies (V.tail energies)\n\npassed1 :: IO Bool\npassed1 = return $ V.all (< 1.0e-3) diffs\n"
  },
  {
    "path": "test/TestWeighted.hs",
    "content": "{-# LANGUAGE TypeFamilies #-}\n\nmodule TestWeighted (check, passed, result, model) where\n\nimport Control.Monad (unless, when)\nimport Control.Monad.Bayes.Class\n  ( MonadDistribution (normal, uniformD),\n    MonadMeasure,\n    factor,\n  )\nimport Control.Monad.Bayes.Sampler.Strict (sampleIOfixed)\nimport Control.Monad.Bayes.Weighted (runWeightedT)\nimport Data.AEq (AEq ((~==)))\nimport Data.Bifunctor (second)\nimport Numeric.Log (Log (Exp, ln))\n\nmodel :: (MonadMeasure m) => m (Int, Double)\nmodel = do\n  n <- uniformD [0, 1, 2]\n  unless (n == 0) (factor 0.5)\n  x <- if n == 0 then return 1 else normal 0 1\n  when (n == 2) (factor $ (Exp . log) (x * x))\n  return (n, x)\n\nresult :: (MonadDistribution m) => m ((Int, Double), Double)\nresult = second (exp . ln) <$> runWeightedT model\n\npassed :: IO Bool\npassed = fmap check (sampleIOfixed result)\n\ncheck :: ((Int, Double), Double) -> Bool\ncheck ((0, 1), 1) = True\ncheck ((1, _), y) = y ~== 0.5\ncheck ((2, x), y) = y ~== 0.5 * x * x\ncheck _ = False\n"
  },
  {
    "path": "test/fixtures/HMM10-MH.txt",
    "content": "[\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,2,1,1,1,1,1,1,0]\",\"[1,1,1,2,1,2,1,1,2,0]\",\"[1,1,1,2,1,2,1,1,2,0]\",\"[1,1,1,2,1,2,1,1,2,0]\",\"[1,1,1,2,1,2,1,1,2,0]\",\"[1,1,1,2,1,2,1,1,2,0]\",\"[1,1,1,2,1,2,1,1,2,0]\",\"[1,1,1,2,1,2,1,1,2,0]\",\"[1,1,1,2,1,2,1,1,2,0]\",\"[1,1,1,2,1,2,1,1,2,0]\",\"[1,1,1,2,1,2,1,1,2,0]\",\"[1,2,1,1,1,2,1,1,2,0]\",\"[1,2,1,1,1,2,1,1,2,0]\",\"[1,2,1,1,1,2,1,1,2,0]\",\"[1,2,1,1,1,2,1,1,2,0]\",\"[1,2,1,1,1,2,1,1,2,0]\",\"[1,2,1,1,1,1,1,2,2,0]\",\"[1,2,1,1,1,1,1,2,2,0]\",\"[1,2,1,1,1,1,1,2,2,0]\",\"[1,2,1,1,1,1,1,2,2,0]\",\"[1,2,1,1,1,1,1,2,2,0]\",\"[1,2,1,1,1,1,1,2,2,0]\",\"[1,2,1,1,1,1,1,2,2,0]\",\"[1,2,1,1,1,1,1,2,2,0]\",\"[1,2,1,1,1,1,1,2,2,0]\",\"[1,2,1,1,1,1,1,2,2,0]\",\"[1,2,1,1,1,1,1,2,2,0]\",\"[2,2,1,1,1,1,1,2,2,0]\",\"[2,2,1,1,1,2,1,1,2,0]\",\"[2,2,1,1,1,2,1,1,2,0]\",\"[2,2,1,1,1,2,1,1,2,0]\",\"[2,2,1,1,1,2,1,1,2,0]\",\"[2,2,1,1,1,2,1,1,2,0]\",\"[2,1,2,1,1,2,1,1,2,0]\",\"[2,1,2,1,1,2,1,1,2,0]\",\"[2,1,2,1,1,2,1,1,2,0]\",\"[2,1,2,1,1,2,1,1,2,0]\",\"[1,1,2,1,1,2,1,1,2,0]\",\"[1,2,1,1,1,2,1,1,2,0]\",\"[1,2,1,1,1,2,1,1,2,0]\",\"[1,1,1,1,1,2,1,1,2,0]\",\"[1,1,1,1,1,2,1,1,2,0]\",\"[1,1,1,1,1,2,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[1,1,1,1,1,0,1,1,2,0]\",\"[0,1,1,1,1,0,1,1,2,0]\",\"[0,1,1,1,1,0,1,1,2,0]\",\"[0,1,1,1,1,0,1,1,2,0]\",\"[0,1,1,1,1,0,1,1,2,0]\",\"[0,1,1,1,1,0,1,1,2,0]\",\"[0,1,1,1,1,0,1,1,2,0]\",\"[0,1,1,1,1,0,1,1,2,0]\",\"[0,1,1,1,1,0,1,1,2,0]\"]"
  },
  {
    "path": "test/fixtures/HMM10-RMSMC.txt",
    "content": "[(\"[2,1,1,1,0,1,1,2,1,1]\",2.4438034074800498e-8),(\"[1,1,1,1,1,2,1,1,1,0]\",2.4438034074800498e-8),(\"[1,1,2,2,0,2,1,1,1,2]\",2.4438034074800498e-8),(\"[1,1,2,2,0,2,1,1,1,2]\",2.4438034074800498e-8),(\"[1,1,1,2,0,2,1,1,1,2]\",2.4438034074800498e-8),(\"[1,1,2,2,0,2,1,1,1,2]\",2.4438034074800498e-8),(\"[1,1,2,1,2,1,2,1,1,2]\",2.4438034074800498e-8),(\"[1,1,2,1,2,1,2,1,1,2]\",2.4438034074800498e-8),(\"[1,1,2,1,2,1,2,1,1,2]\",2.4438034074800498e-8),(\"[1,2,1,1,2,2,0,1,1,1]\",2.4438034074800498e-8)]"
  },
  {
    "path": "test/fixtures/HMM10-SMC.txt",
    "content": "[(\"[1,1,0,1,1,2,1,1,1,2]\",2.964810681340389e-9),(\"[1,1,0,1,1,2,1,1,1,2]\",2.964810681340389e-9),(\"[1,1,0,1,1,2,1,1,1,2]\",2.964810681340389e-9),(\"[1,2,0,2,1,2,1,1,1,0]\",2.964810681340389e-9),(\"[1,2,0,2,1,2,1,1,1,0]\",2.964810681340389e-9),(\"[1,1,1,1,0,1,1,1,1,1]\",2.964810681340389e-9),(\"[1,1,1,1,0,1,1,1,1,1]\",2.964810681340389e-9),(\"[1,1,1,1,0,1,1,1,1,1]\",2.964810681340389e-9),(\"[1,1,1,1,1,0,2,0,1,2]\",2.964810681340389e-9),(\"[1,1,1,1,1,0,2,0,1,2]\",2.964810681340389e-9),(\"[1,1,1,1,1,1,2,0,1,1]\",2.964810681340389e-9),(\"[1,1,2,1,1,1,2,0,1,1]\",2.964810681340389e-9),(\"[1,1,2,1,1,1,2,0,1,1]\",2.964810681340389e-9),(\"[1,1,1,1,1,1,1,0,1,1]\",2.964810681340389e-9),(\"[1,1,1,1,1,1,1,0,1,1]\",2.964810681340389e-9),(\"[1,1,1,1,1,1,1,0,1,1]\",2.964810681340389e-9),(\"[1,1,1,1,2,1,2,1,1,2]\",2.964810681340389e-9),(\"[1,1,1,1,2,1,2,1,1,2]\",2.964810681340389e-9),(\"[1,1,1,1,2,1,2,1,1,2]\",2.964810681340389e-9),(\"[1,1,1,1,1,2,2,1,1,0]\",2.964810681340389e-9),(\"[1,1,1,1,1,2,2,1,1,0]\",2.964810681340389e-9),(\"[1,1,1,1,1,2,2,1,1,0]\",2.964810681340389e-9),(\"[1,1,1,1,1,2,2,1,1,2]\",2.964810681340389e-9),(\"[1,1,1,1,1,2,2,1,1,2]\",2.964810681340389e-9),(\"[1,1,1,1,1,2,2,1,1,2]\",2.964810681340389e-9),(\"[1,2,0,1,1,1,2,1,2,0]\",2.964810681340389e-9),(\"[1,2,0,1,1,1,2,1,2,0]\",2.964810681340389e-9),(\"[1,2,1,1,0,2,2,1,2,0]\",2.964810681340389e-9),(\"[1,2,1,1,0,2,2,1,2,0]\",2.964810681340389e-9),(\"[1,1,1,1,0,2,2,1,2,0]\",2.964810681340389e-9),(\"[1,2,2,1,1,1,1,1,2,0]\",2.964810681340389e-9),(\"[1,2,2,1,1,1,1,1,2,0]\",2.964810681340389e-9),(\"[1,1,1,1,1,1,2,1,1,0]\",2.964810681340389e-9),(\"[1,1,1,2,1,0,0,1,1,0]\",2.964810681340389e-9),(\"[1,1,1,2,1,0,0,1,1,0]\",2.964810681340389e-9),(\"[1,1,1,2,1,0,0,1,1,0]\",2.964810681340389e-9),(\"[1,1,1,1,2,0,1,1,1,0]\",2.964810681340389e-9),(\"[1,1,1,1,2,0,1,1,1,0]\",2.964810681340389e-9),(\"[1,1,1,1,1,2,0,1,2,2]\",2.964810681340389e-9),(\"[1,1,1,1,1,2,0,1,2,2]\",2.964810681340389e-9),(\"[1,1,1,1,1,2,0,1,1,1]\",2.964810681340389e-9),(\"[2,1,1,1,1,0,1,1,1,1]\",2.964810681340389e-9),(\"[1,1,1,1,1,0,1,1,1,1]\",2.964810681340389e-9),(\"[1,1,1,1,1,2,2,0,1,2]\",2.964810681340389e-9),(\"[1,1,1,1,1,2,2,0,1,2]\",2.964810681340389e-9),(\"[1,1,1,1,1,2,2,0,1,2]\",2.964810681340389e-9),(\"[1,1,1,1,1,2,2,0,1,2]\",2.964810681340389e-9),(\"[1,1,1,1,2,1,2,0,1,2]\",2.964810681340389e-9),(\"[2,1,1,1,2,1,2,0,1,2]\",2.964810681340389e-9),(\"[1,1,1,2,0,2,1,2,1,0]\",2.964810681340389e-9),(\"[1,1,1,2,0,1,1,1,1,2]\",2.964810681340389e-9),(\"[1,1,1,2,0,1,1,1,1,2]\",2.964810681340389e-9),(\"[1,1,1,1,0,0,1,1,1,1]\",2.964810681340389e-9),(\"[1,1,1,1,0,0,1,1,1,1]\",2.964810681340389e-9),(\"[1,1,1,1,0,0,1,1,1,1]\",2.964810681340389e-9),(\"[1,1,1,1,1,1,1,2,1,0]\",2.964810681340389e-9),(\"[1,2,0,1,1,1,1,2,1,0]\",2.964810681340389e-9),(\"[1,2,0,1,1,1,1,2,1,0]\",2.964810681340389e-9),(\"[1,1,1,1,2,1,2,1,1,1]\",2.964810681340389e-9),(\"[1,1,2,1,1,1,1,1,2,2]\",2.964810681340389e-9),(\"[1,1,2,1,1,1,1,1,2,2]\",2.964810681340389e-9),(\"[1,1,2,1,1,1,1,2,1,1]\",2.964810681340389e-9),(\"[1,1,2,1,1,1,1,2,1,1]\",2.964810681340389e-9),(\"[1,2,1,1,2,1,1,1,2,0]\",2.964810681340389e-9),(\"[1,2,1,1,2,1,1,1,2,0]\",2.964810681340389e-9),(\"[1,2,1,1,2,1,1,1,2,0]\",2.964810681340389e-9),(\"[1,1,1,1,2,1,1,1,2,0]\",2.964810681340389e-9),(\"[1,1,0,1,0,1,0,1,1,2]\",2.964810681340389e-9),(\"[1,1,0,1,0,1,0,1,1,2]\",2.964810681340389e-9),(\"[1,1,0,1,0,1,0,1,1,2]\",2.964810681340389e-9),(\"[0,1,1,1,1,0,1,1,2,0]\",2.964810681340389e-9),(\"[1,1,1,1,1,0,1,1,2,0]\",2.964810681340389e-9),(\"[1,1,2,1,2,2,0,1,1,1]\",2.964810681340389e-9),(\"[1,1,1,1,0,1,1,1,1,0]\",2.964810681340389e-9),(\"[1,1,1,1,0,1,1,1,1,0]\",2.964810681340389e-9),(\"[1,1,1,1,2,1,0,0,1,1]\",2.964810681340389e-9),(\"[1,1,1,1,2,1,0,0,1,1]\",2.964810681340389e-9),(\"[1,1,2,1,2,2,1,2,1,2]\",2.964810681340389e-9),(\"[1,1,2,1,2,2,1,2,1,2]\",2.964810681340389e-9),(\"[1,1,1,1,2,2,1,2,1,2]\",2.964810681340389e-9),(\"[1,1,1,1,2,2,1,2,1,2]\",2.964810681340389e-9),(\"[1,1,1,1,1,1,2,2,1,2]\",2.964810681340389e-9),(\"[1,1,1,1,1,1,2,2,1,2]\",2.964810681340389e-9),(\"[1,1,1,1,1,1,2,2,1,2]\",2.964810681340389e-9),(\"[1,1,1,1,1,2,0,1,1,2]\",2.964810681340389e-9),(\"[1,1,1,2,2,2,0,1,1,2]\",2.964810681340389e-9),(\"[1,1,1,2,2,2,0,1,1,2]\",2.964810681340389e-9),(\"[1,1,1,2,2,2,0,1,1,2]\",2.964810681340389e-9),(\"[1,1,1,1,2,2,0,1,1,2]\",2.964810681340389e-9),(\"[1,1,1,1,2,2,0,1,1,2]\",2.964810681340389e-9),(\"[1,1,1,1,1,1,2,1,2,0]\",2.964810681340389e-9),(\"[1,1,1,1,1,1,2,1,2,0]\",2.964810681340389e-9),(\"[1,1,1,1,1,1,2,1,2,0]\",2.964810681340389e-9),(\"[1,1,1,1,1,2,1,2,1,0]\",2.964810681340389e-9),(\"[1,1,1,1,1,2,1,2,1,0]\",2.964810681340389e-9),(\"[1,2,1,1,1,2,1,2,1,0]\",2.964810681340389e-9),(\"[2,1,1,1,2,1,1,2,1,0]\",2.964810681340389e-9),(\"[1,1,1,1,1,1,0,2,1,0]\",2.964810681340389e-9),(\"[1,1,1,1,1,1,0,2,1,0]\",2.964810681340389e-9),(\"[2,2,2,1,1,1,1,1,2,1]\",2.964810681340389e-9)]"
  },
  {
    "path": "test/fixtures/LDA10-MH.txt",
    "content": "[\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.4089582472383573e-2),(\\\"wolf\\\",7.763677263154158e-2),(\\\"python\\\",0.694917073788123),(\\\"prolog\\\",0.21335657110795198)]),(\\\"topic2\\\",[(\\\"bear\\\",0.28727305543035053),(\\\"wolf\\\",0.35728080053205036),(\\\"python\\\",0.26593974632470524),(\\\"prolog\\\",8.950639771289397e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.4089582472383573e-2),(\\\"wolf\\\",7.763677263154158e-2),(\\\"python\\\",0.694917073788123),(\\\"prolog\\\",0.21335657110795198)]),(\\\"topic2\\\",[(\\\"bear\\\",0.28727305543035053),(\\\"wolf\\\",0.35728080053205036),(\\\"python\\\",0.26593974632470524),(\\\"prolog\\\",8.950639771289397e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.4089582472383573e-2),(\\\"wolf\\\",7.763677263154158e-2),(\\\"python\\\",0.694917073788123),(\\\"prolog\\\",0.21335657110795198)]),(\\\"topic2\\\",[(\\\"bear\\\",0.28727305543035053),(\\\"wolf\\\",0.35728080053205036),(\\\"python\\\",0.26593974632470524),(\\\"prolog\\\",8.950639771289397e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.4089582472383573e-2),(\\\"wolf\\\",7.763677263154158e-2),(\\\"python\\\",0.694917073788123),(\\\"prolog\\\",0.21335657110795198)]),(\\\"topic2\\\",[(\\\"bear\\\",0.28727305543035053),(\\\"wolf\\\",0.35728080053205036),(\\\"python\\\",0.26593974632470524),(\\\"prolog\\\",8.950639771289397e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.23848662278652338),(\\\"topic2\\\",0.7615133772134766)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.4089582472383573e-2),(\\\"wolf\\\",7.763677263154158e-2),(\\\"python\\\",0.694917073788123),(\\\"prolog\\\",0.21335657110795198)]),(\\\"topic2\\\",[(\\\"bear\\\",0.28727305543035053),(\\\"wolf\\\",0.35728080053205036),(\\\"python\\\",0.26593974632470524),(\\\"prolog\\\",8.950639771289397e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.23848662278652338),(\\\"topic2\\\",0.7615133772134766)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.4089582472383573e-2),(\\\"wolf\\\",7.763677263154158e-2),(\\\"python\\\",0.694917073788123),(\\\"prolog\\\",0.21335657110795198)]),(\\\"topic2\\\",[(\\\"bear\\\",0.28727305543035053),(\\\"wolf\\\",0.35728080053205036),(\\\"python\\\",0.26593974632470524),(\\\"prolog\\\",8.950639771289397e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.23848662278652338),(\\\"topic2\\\",0.7615133772134766)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.4089582472383573e-2),(\\\"wolf\\\",7.763677263154158e-2),(\\\"python\\\",0.694917073788123),(\\\"prolog\\\",0.21335657110795198)]),(\\\"topic2\\\",[(\\\"bear\\\",0.28727305543035053),(\\\"wolf\\\",0.35728080053205036),(\\\"python\\\",0.26593974632470524),(\\\"prolog\\\",8.950639771289397e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.23848662278652338),(\\\"topic2\\\",0.7615133772134766)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.4089582472383573e-2),(\\\"wolf\\\",7.763677263154158e-2),(\\\"python\\\",0.694917073788123),(\\\"prolog\\\",0.21335657110795198)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.23848662278652338),(\\\"topic2\\\",0.7615133772134766)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.8296104002428423e-2),(\\\"wolf\\\",0.10081565364081875),(\\\"python\\\",0.6038329057458999),(\\\"prolog\\\",0.2770553366108529)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.23848662278652338),(\\\"topic2\\\",0.7615133772134766)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.8296104002428423e-2),(\\\"wolf\\\",0.10081565364081875),(\\\"python\\\",0.6038329057458999),(\\\"prolog\\\",0.2770553366108529)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.23848662278652338),(\\\"topic2\\\",0.7615133772134766)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.8296104002428423e-2),(\\\"wolf\\\",0.10081565364081875),(\\\"python\\\",0.6038329057458999),(\\\"prolog\\\",0.2770553366108529)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.23848662278652338),(\\\"topic2\\\",0.7615133772134766)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.8296104002428423e-2),(\\\"wolf\\\",0.10081565364081875),(\\\"python\\\",0.6038329057458999),(\\\"prolog\\\",0.2770553366108529)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.908222771066056e-2),(\\\"wolf\\\",6.2180645190366916e-2),(\\\"python\\\",0.629777629439783),(\\\"prolog\\\",0.28895949765918966)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.908222771066056e-2),(\\\"wolf\\\",6.2180645190366916e-2),(\\\"python\\\",0.629777629439783),(\\\"prolog\\\",0.28895949765918966)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.908222771066056e-2),(\\\"wolf\\\",6.2180645190366916e-2),(\\\"python\\\",0.629777629439783),(\\\"prolog\\\",0.28895949765918966)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.908222771066056e-2),(\\\"wolf\\\",6.2180645190366916e-2),(\\\"python\\\",0.629777629439783),(\\\"prolog\\\",0.28895949765918966)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.908222771066056e-2),(\\\"wolf\\\",6.2180645190366916e-2),(\\\"python\\\",0.629777629439783),(\\\"prolog\\\",0.28895949765918966)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.908222771066056e-2),(\\\"wolf\\\",6.2180645190366916e-2),(\\\"python\\\",0.629777629439783),(\\\"prolog\\\",0.28895949765918966)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.908222771066056e-2),(\\\"wolf\\\",6.2180645190366916e-2),(\\\"python\\\",0.629777629439783),(\\\"prolog\\\",0.28895949765918966)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.908222771066056e-2),(\\\"wolf\\\",6.2180645190366916e-2),(\\\"python\\\",0.629777629439783),(\\\"prolog\\\",0.28895949765918966)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.908222771066056e-2),(\\\"wolf\\\",6.2180645190366916e-2),(\\\"python\\\",0.629777629439783),(\\\"prolog\\\",0.28895949765918966)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.908222771066056e-2),(\\\"wolf\\\",6.2180645190366916e-2),(\\\"python\\\",0.629777629439783),(\\\"prolog\\\",0.28895949765918966)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.908222771066056e-2),(\\\"wolf\\\",6.2180645190366916e-2),(\\\"python\\\",0.629777629439783),(\\\"prolog\\\",0.28895949765918966)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.908222771066056e-2),(\\\"wolf\\\",6.2180645190366916e-2),(\\\"python\\\",0.629777629439783),(\\\"prolog\\\",0.28895949765918966)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.908222771066056e-2),(\\\"wolf\\\",6.2180645190366916e-2),(\\\"python\\\",0.629777629439783),(\\\"prolog\\\",0.28895949765918966)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.908222771066056e-2),(\\\"wolf\\\",6.2180645190366916e-2),(\\\"python\\\",0.629777629439783),(\\\"prolog\\\",0.28895949765918966)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",6.917861644240221e-2),(\\\"topic2\\\",0.9308213835575978)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35658871266764597),(\\\"topic2\\\",0.6434112873323541)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.23848662278652338),(\\\"topic2\\\",0.7615133772134766)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.23848662278652338),(\\\"topic2\\\",0.7615133772134766)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.23848662278652338),(\\\"topic2\\\",0.7615133772134766)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.23848662278652338),(\\\"topic2\\\",0.7615133772134766)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.23848662278652338),(\\\"topic2\\\",0.7615133772134766)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.174895228495006),(\\\"topic2\\\",0.8251047715049941)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.174895228495006),(\\\"topic2\\\",0.8251047715049941)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.174895228495006),(\\\"topic2\\\",0.8251047715049941)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.174895228495006),(\\\"topic2\\\",0.8251047715049941)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",4.693396178537035e-2),(\\\"topic2\\\",0.9530660382146297)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.174895228495006),(\\\"topic2\\\",0.8251047715049941)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.174895228495006),(\\\"topic2\\\",0.8251047715049941)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.174895228495006),(\\\"topic2\\\",0.8251047715049941)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.174895228495006),(\\\"topic2\\\",0.8251047715049941)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.174895228495006),(\\\"topic2\\\",0.8251047715049941)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.7441949161510276),(\\\"wolf\\\",0.12823178053541068),(\\\"python\\\",9.54485299393893e-2),(\\\"prolog\\\",3.2124773374172376e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",2.141341558601777e-2),(\\\"wolf\\\",6.977696823752828e-2),(\\\"python\\\",0.7067146619593686),(\\\"prolog\\\",0.20209495421708534)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.1018154566299667e-2),(\\\"wolf\\\",0.5213588834570013),(\\\"python\\\",0.3636361209382676),(\\\"prolog\\\",0.10398684103843148)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.1018154566299667e-2),(\\\"wolf\\\",0.5213588834570013),(\\\"python\\\",0.3636361209382676),(\\\"prolog\\\",0.10398684103843148)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.1018154566299667e-2),(\\\"wolf\\\",0.5213588834570013),(\\\"python\\\",0.3636361209382676),(\\\"prolog\\\",0.10398684103843148)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.1018154566299667e-2),(\\\"wolf\\\",0.5213588834570013),(\\\"python\\\",0.3636361209382676),(\\\"prolog\\\",0.10398684103843148)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.1018154566299667e-2),(\\\"wolf\\\",0.5213588834570013),(\\\"python\\\",0.3636361209382676),(\\\"prolog\\\",0.10398684103843148)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.1018154566299667e-2),(\\\"wolf\\\",0.5213588834570013),(\\\"python\\\",0.3636361209382676),(\\\"prolog\\\",0.10398684103843148)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.1018154566299667e-2),(\\\"wolf\\\",0.5213588834570013),(\\\"python\\\",0.3636361209382676),(\\\"prolog\\\",0.10398684103843148)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.1018154566299667e-2),(\\\"wolf\\\",0.5213588834570013),(\\\"python\\\",0.3636361209382676),(\\\"prolog\\\",0.10398684103843148)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.1018154566299667e-2),(\\\"wolf\\\",0.5213588834570013),(\\\"python\\\",0.3636361209382676),(\\\"prolog\\\",0.10398684103843148)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.1018154566299667e-2),(\\\"wolf\\\",0.5213588834570013),(\\\"python\\\",0.3636361209382676),(\\\"prolog\\\",0.10398684103843148)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.1018154566299667e-2),(\\\"wolf\\\",0.5213588834570013),(\\\"python\\\",0.3636361209382676),(\\\"prolog\\\",0.10398684103843148)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.1018154566299667e-2),(\\\"wolf\\\",0.5213588834570013),(\\\"python\\\",0.3636361209382676),(\\\"prolog\\\",0.10398684103843148)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.1018154566299667e-2),(\\\"wolf\\\",0.5213588834570013),(\\\"python\\\",0.3636361209382676),(\\\"prolog\\\",0.10398684103843148)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.1018154566299667e-2),(\\\"wolf\\\",0.5213588834570013),(\\\"python\\\",0.3636361209382676),(\\\"prolog\\\",0.10398684103843148)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.1018154566299667e-2),(\\\"wolf\\\",0.5213588834570013),(\\\"python\\\",0.3636361209382676),(\\\"prolog\\\",0.10398684103843148)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.1018154566299667e-2),(\\\"wolf\\\",0.5213588834570013),(\\\"python\\\",0.3636361209382676),(\\\"prolog\\\",0.10398684103843148)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",5.2449539316739855e-3),(\\\"topic2\\\",0.9947550460683261)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",8.794233725304898e-3),(\\\"topic2\\\",0.9912057662746951)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8676891481331068),(\\\"topic2\\\",0.13231085186689318)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.1018154566299667e-2),(\\\"wolf\\\",0.5213588834570013),(\\\"python\\\",0.3636361209382676),(\\\"prolog\\\",0.10398684103843148)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.2346165122377453),(\\\"topic2\\\",0.7653834877622547)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.952217831915492),(\\\"topic2\\\",4.778216808450798e-2)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8996063324850888),(\\\"topic2\\\",0.10039366751491115)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.1018154566299667e-2),(\\\"wolf\\\",0.5213588834570013),(\\\"python\\\",0.3636361209382676),(\\\"prolog\\\",0.10398684103843148)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.2346165122377453),(\\\"topic2\\\",0.7653834877622547)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.952217831915492),(\\\"topic2\\\",4.778216808450798e-2)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8996063324850888),(\\\"topic2\\\",0.10039366751491115)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",1.1018154566299667e-2),(\\\"wolf\\\",0.5213588834570013),(\\\"python\\\",0.3636361209382676),(\\\"prolog\\\",0.10398684103843148)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.2346165122377453),(\\\"topic2\\\",0.7653834877622547)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.952217831915492),(\\\"topic2\\\",4.778216808450798e-2)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8996063324850888),(\\\"topic2\\\",0.10039366751491115)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",6.964362003984619e-3),(\\\"wolf\\\",0.3295408479286923),(\\\"python\\\",0.5977667227866645),(\\\"prolog\\\",6.572806728065864e-2)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.2346165122377453),(\\\"topic2\\\",0.7653834877622547)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.952217831915492),(\\\"topic2\\\",4.778216808450798e-2)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8996063324850888),(\\\"topic2\\\",0.10039366751491115)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",6.964362003984619e-3),(\\\"wolf\\\",0.3295408479286923),(\\\"python\\\",0.5977667227866645),(\\\"prolog\\\",6.572806728065864e-2)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.2346165122377453),(\\\"topic2\\\",0.7653834877622547)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.952217831915492),(\\\"topic2\\\",4.778216808450798e-2)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8996063324850888),(\\\"topic2\\\",0.10039366751491115)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",6.964362003984619e-3),(\\\"wolf\\\",0.3295408479286923),(\\\"python\\\",0.5977667227866645),(\\\"prolog\\\",6.572806728065864e-2)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.2346165122377453),(\\\"topic2\\\",0.7653834877622547)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.952217831915492),(\\\"topic2\\\",4.778216808450798e-2)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8996063324850888),(\\\"topic2\\\",0.10039366751491115)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",6.964362003984619e-3),(\\\"wolf\\\",0.3295408479286923),(\\\"python\\\",0.5977667227866645),(\\\"prolog\\\",6.572806728065864e-2)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.2346165122377453),(\\\"topic2\\\",0.7653834877622547)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.952217831915492),(\\\"topic2\\\",4.778216808450798e-2)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8996063324850888),(\\\"topic2\\\",0.10039366751491115)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",6.964362003984619e-3),(\\\"wolf\\\",0.3295408479286923),(\\\"python\\\",0.5977667227866645),(\\\"prolog\\\",6.572806728065864e-2)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.2346165122377453),(\\\"topic2\\\",0.7653834877622547)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.952217831915492),(\\\"topic2\\\",4.778216808450798e-2)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8996063324850888),(\\\"topic2\\\",0.10039366751491115)])])\",\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",6.964362003984619e-3),(\\\"wolf\\\",0.3295408479286923),(\\\"python\\\",0.5977667227866645),(\\\"prolog\\\",6.572806728065864e-2)]),(\\\"topic2\\\",[(\\\"bear\\\",0.67206655938002),(\\\"wolf\\\",0.11580338655540852),(\\\"python\\\",0.18311885626694854),(\\\"prolog\\\",2.9011197797622974e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",3.801790281431827e-2),(\\\"topic2\\\",0.9619820971856817)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",6.842555675627451e-2),(\\\"topic2\\\",0.9315744432437254)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.2346165122377453),(\\\"topic2\\\",0.7653834877622547)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.952217831915492),(\\\"topic2\\\",4.778216808450798e-2)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.961812709661957),(\\\"topic2\\\",3.818729033804298e-2)])])\"]"
  },
  {
    "path": "test/fixtures/LDA10-RMSMC.txt",
    "content": "[(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.2781038843406247),(\\\"wolf\\\",0.24113305845206004),(\\\"python\\\",9.91752372000113e-2),(\\\"prolog\\\",0.38158782000730385)]),(\\\"topic2\\\",[(\\\"bear\\\",0.17566639841583537),(\\\"wolf\\\",0.4102949762997866),(\\\"python\\\",4.180482337961342e-2),(\\\"prolog\\\",0.3722338019047647)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.9493543715937027),(\\\"topic2\\\",5.0645628406297175e-2)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.21960032583483474),(\\\"topic2\\\",0.7803996741651653)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.15452401070056435),(\\\"topic2\\\",0.8454759892994357)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.32518687685958453),(\\\"topic2\\\",0.6748131231404155)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.48687311065156597),(\\\"topic2\\\",0.5131268893484341)])])\",8.797732649220901e-36),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.2781038843406247),(\\\"wolf\\\",0.24113305845206004),(\\\"python\\\",9.91752372000113e-2),(\\\"prolog\\\",0.38158782000730385)]),(\\\"topic2\\\",[(\\\"bear\\\",0.17566639841583537),(\\\"wolf\\\",0.4102949762997866),(\\\"python\\\",4.180482337961342e-2),(\\\"prolog\\\",0.3722338019047647)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.8667701657488383),(\\\"topic2\\\",0.13322983425116178)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.21960032583483474),(\\\"topic2\\\",0.7803996741651653)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.15452401070056435),(\\\"topic2\\\",0.8454759892994357)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.32518687685958453),(\\\"topic2\\\",0.6748131231404155)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.48687311065156597),(\\\"topic2\\\",0.5131268893484341)])])\",8.797732649220901e-36),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.16315227606498015),(\\\"wolf\\\",0.1414629911201733),(\\\"python\\\",0.4715226263920085),(\\\"prolog\\\",0.2238621064228381)]),(\\\"topic2\\\",[(\\\"bear\\\",0.17566639841583537),(\\\"wolf\\\",0.4102949762997866),(\\\"python\\\",4.180482337961342e-2),(\\\"prolog\\\",0.3722338019047647)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.9493543715937027),(\\\"topic2\\\",5.0645628406297175e-2)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.21960032583483474),(\\\"topic2\\\",0.7803996741651653)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.15452401070056435),(\\\"topic2\\\",0.8454759892994357)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.32518687685958453),(\\\"topic2\\\",0.6748131231404155)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.48687311065156597),(\\\"topic2\\\",0.5131268893484341)])])\",8.797732649220901e-36),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.16315227606498015),(\\\"wolf\\\",0.1414629911201733),(\\\"python\\\",0.4715226263920085),(\\\"prolog\\\",0.2238621064228381)]),(\\\"topic2\\\",[(\\\"bear\\\",0.27478658473370615),(\\\"wolf\\\",0.6418049000124093),(\\\"python\\\",6.539329516329537e-2),(\\\"prolog\\\",1.8015220090589205e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.9493543715937027),(\\\"topic2\\\",5.0645628406297175e-2)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.21960032583483474),(\\\"topic2\\\",0.7803996741651653)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.15452401070056435),(\\\"topic2\\\",0.8454759892994357)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.32518687685958453),(\\\"topic2\\\",0.6748131231404155)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.48687311065156597),(\\\"topic2\\\",0.5131268893484341)])])\",8.797732649220901e-36),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.16315227606498015),(\\\"wolf\\\",0.1414629911201733),(\\\"python\\\",0.4715226263920085),(\\\"prolog\\\",0.2238621064228381)]),(\\\"topic2\\\",[(\\\"bear\\\",0.27478658473370615),(\\\"wolf\\\",0.6418049000124093),(\\\"python\\\",6.539329516329537e-2),(\\\"prolog\\\",1.8015220090589205e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.5510622572104782),(\\\"topic2\\\",0.44893774278952187)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.11510795718182044),(\\\"topic2\\\",0.8848920428181795)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.4686001824195545),(\\\"topic2\\\",0.5313998175804455)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.6717889660960497),(\\\"topic2\\\",0.32821103390395034)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.2670680718669392),(\\\"topic2\\\",0.7329319281330607)])])\",8.797732649220901e-36),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.16315227606498015),(\\\"wolf\\\",0.1414629911201733),(\\\"python\\\",0.4715226263920085),(\\\"prolog\\\",0.2238621064228381)]),(\\\"topic2\\\",[(\\\"bear\\\",0.27478658473370615),(\\\"wolf\\\",0.6418049000124093),(\\\"python\\\",6.539329516329537e-2),(\\\"prolog\\\",1.8015220090589205e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.9493543715937027),(\\\"topic2\\\",5.0645628406297175e-2)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.21960032583483474),(\\\"topic2\\\",0.7803996741651653)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.15452401070056435),(\\\"topic2\\\",0.8454759892994357)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.32518687685958453),(\\\"topic2\\\",0.6748131231404155)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.9645145666946825),(\\\"topic2\\\",3.548543330531747e-2)])])\",8.797732649220901e-36),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.16315227606498015),(\\\"wolf\\\",0.1414629911201733),(\\\"python\\\",0.4715226263920085),(\\\"prolog\\\",0.2238621064228381)]),(\\\"topic2\\\",[(\\\"bear\\\",0.27478658473370615),(\\\"wolf\\\",0.6418049000124093),(\\\"python\\\",6.539329516329537e-2),(\\\"prolog\\\",1.8015220090589205e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.9493543715937027),(\\\"topic2\\\",5.0645628406297175e-2)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.21960032583483474),(\\\"topic2\\\",0.7803996741651653)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.15452401070056435),(\\\"topic2\\\",0.8454759892994357)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.32518687685958453),(\\\"topic2\\\",0.6748131231404155)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.7650916587070631),(\\\"topic2\\\",0.2349083412929369)])])\",8.797732649220901e-36),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.16315227606498015),(\\\"wolf\\\",0.1414629911201733),(\\\"python\\\",0.4715226263920085),(\\\"prolog\\\",0.2238621064228381)]),(\\\"topic2\\\",[(\\\"bear\\\",0.27478658473370615),(\\\"wolf\\\",0.6418049000124093),(\\\"python\\\",6.539329516329537e-2),(\\\"prolog\\\",1.8015220090589205e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.9493543715937027),(\\\"topic2\\\",5.0645628406297175e-2)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.21960032583483474),(\\\"topic2\\\",0.7803996741651653)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.15452401070056435),(\\\"topic2\\\",0.8454759892994357)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.32518687685958453),(\\\"topic2\\\",0.6748131231404155)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.7650916587070631),(\\\"topic2\\\",0.2349083412929369)])])\",8.797732649220901e-36),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.16315227606498015),(\\\"wolf\\\",0.1414629911201733),(\\\"python\\\",0.4715226263920085),(\\\"prolog\\\",0.2238621064228381)]),(\\\"topic2\\\",[(\\\"bear\\\",0.27478658473370615),(\\\"wolf\\\",0.6418049000124093),(\\\"python\\\",6.539329516329537e-2),(\\\"prolog\\\",1.8015220090589205e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.9493543715937027),(\\\"topic2\\\",5.0645628406297175e-2)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.21960032583483474),(\\\"topic2\\\",0.7803996741651653)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.15452401070056435),(\\\"topic2\\\",0.8454759892994357)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.32518687685958453),(\\\"topic2\\\",0.6748131231404155)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.52776415174419),(\\\"topic2\\\",0.4722358482558099)])])\",8.797732649220901e-36),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.16315227606498015),(\\\"wolf\\\",0.1414629911201733),(\\\"python\\\",0.4715226263920085),(\\\"prolog\\\",0.2238621064228381)]),(\\\"topic2\\\",[(\\\"bear\\\",0.27478658473370615),(\\\"wolf\\\",0.6418049000124093),(\\\"python\\\",6.539329516329537e-2),(\\\"prolog\\\",1.8015220090589205e-2)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.9493543715937027),(\\\"topic2\\\",5.0645628406297175e-2)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.21960032583483474),(\\\"topic2\\\",0.7803996741651653)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.15452401070056435),(\\\"topic2\\\",0.8454759892994357)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.32518687685958453),(\\\"topic2\\\",0.6748131231404155)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.52776415174419),(\\\"topic2\\\",0.4722358482558099)])])\",8.797732649220901e-36)]"
  },
  {
    "path": "test/fixtures/LDA10-SMC.txt",
    "content": "[(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.2634772352592057),(\\\"topic2\\\",0.7365227647407943)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.20068470549098844),(\\\"topic2\\\",0.7993152945090116)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.41454269168514973),(\\\"topic2\\\",0.5854573083148503)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8355127529929074),(\\\"topic2\\\",0.16448724700709264)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.2634772352592057),(\\\"topic2\\\",0.7365227647407943)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.20068470549098844),(\\\"topic2\\\",0.7993152945090116)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.41454269168514973),(\\\"topic2\\\",0.5854573083148503)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8355127529929074),(\\\"topic2\\\",0.16448724700709264)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.2634772352592057),(\\\"topic2\\\",0.7365227647407943)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.20068470549098844),(\\\"topic2\\\",0.7993152945090116)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.41454269168514973),(\\\"topic2\\\",0.5854573083148503)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8355127529929074),(\\\"topic2\\\",0.16448724700709264)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.2634772352592057),(\\\"topic2\\\",0.7365227647407943)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.20068470549098844),(\\\"topic2\\\",0.7993152945090116)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.41454269168514973),(\\\"topic2\\\",0.5854573083148503)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8355127529929074),(\\\"topic2\\\",0.16448724700709264)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.697550756779644),(\\\"topic2\\\",0.30244924322035605)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.965171190101216),(\\\"topic2\\\",3.482880989878406e-2)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.7060492271797333),(\\\"topic2\\\",0.2939507728202666)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.697550756779644),(\\\"topic2\\\",0.30244924322035605)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.965171190101216),(\\\"topic2\\\",3.482880989878406e-2)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.7060492271797333),(\\\"topic2\\\",0.2939507728202666)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.697550756779644),(\\\"topic2\\\",0.30244924322035605)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.965171190101216),(\\\"topic2\\\",3.482880989878406e-2)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.7060492271797333),(\\\"topic2\\\",0.2939507728202666)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.697550756779644),(\\\"topic2\\\",0.30244924322035605)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.965171190101216),(\\\"topic2\\\",3.482880989878406e-2)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.7060492271797333),(\\\"topic2\\\",0.2939507728202666)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.697550756779644),(\\\"topic2\\\",0.30244924322035605)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.965171190101216),(\\\"topic2\\\",3.482880989878406e-2)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.7060492271797333),(\\\"topic2\\\",0.2939507728202666)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.697550756779644),(\\\"topic2\\\",0.30244924322035605)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.965171190101216),(\\\"topic2\\\",3.482880989878406e-2)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.7060492271797333),(\\\"topic2\\\",0.2939507728202666)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.697550756779644),(\\\"topic2\\\",0.30244924322035605)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.965171190101216),(\\\"topic2\\\",3.482880989878406e-2)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.7060492271797333),(\\\"topic2\\\",0.2939507728202666)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.697550756779644),(\\\"topic2\\\",0.30244924322035605)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.965171190101216),(\\\"topic2\\\",3.482880989878406e-2)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.7060492271797333),(\\\"topic2\\\",0.2939507728202666)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",2.844753859121769e-2),(\\\"topic2\\\",0.9715524614087824)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.37965567186815763),(\\\"topic2\\\",0.6203443281318423)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.3540083496835881),(\\\"topic2\\\",0.6459916503164119)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",2.844753859121769e-2),(\\\"topic2\\\",0.9715524614087824)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.37965567186815763),(\\\"topic2\\\",0.6203443281318423)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.3540083496835881),(\\\"topic2\\\",0.6459916503164119)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",2.844753859121769e-2),(\\\"topic2\\\",0.9715524614087824)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.37965567186815763),(\\\"topic2\\\",0.6203443281318423)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.3540083496835881),(\\\"topic2\\\",0.6459916503164119)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.2652913724654582),(\\\"topic2\\\",0.7347086275345417)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.47764843231101173),(\\\"topic2\\\",0.5223515676889883)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.6925579943073733),(\\\"topic2\\\",0.3074420056926267)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.2652913724654582),(\\\"topic2\\\",0.7347086275345417)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.47764843231101173),(\\\"topic2\\\",0.5223515676889883)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.6925579943073733),(\\\"topic2\\\",0.3074420056926267)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.2652913724654582),(\\\"topic2\\\",0.7347086275345417)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.47764843231101173),(\\\"topic2\\\",0.5223515676889883)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.6925579943073733),(\\\"topic2\\\",0.3074420056926267)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.2652913724654582),(\\\"topic2\\\",0.7347086275345417)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.47764843231101173),(\\\"topic2\\\",0.5223515676889883)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.2292417221473923),(\\\"topic2\\\",0.7707582778526078)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.2652913724654582),(\\\"topic2\\\",0.7347086275345417)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.47764843231101173),(\\\"topic2\\\",0.5223515676889883)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.9646060460810639),(\\\"topic2\\\",3.5393953918936e-2)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.2652913724654582),(\\\"topic2\\\",0.7347086275345417)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.47764843231101173),(\\\"topic2\\\",0.5223515676889883)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.9646060460810639),(\\\"topic2\\\",3.5393953918936e-2)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1285103528481879),(\\\"topic2\\\",0.8714896471518121)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.6791784514707125),(\\\"topic2\\\",0.32082154852928735)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.3870992946622541),(\\\"topic2\\\",0.6129007053377459)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1285103528481879),(\\\"topic2\\\",0.8714896471518121)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.6791784514707125),(\\\"topic2\\\",0.32082154852928735)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8509047569221565),(\\\"topic2\\\",0.14909524307784347)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1285103528481879),(\\\"topic2\\\",0.8714896471518121)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.6791784514707125),(\\\"topic2\\\",0.32082154852928735)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8509047569221565),(\\\"topic2\\\",0.14909524307784347)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1285103528481879),(\\\"topic2\\\",0.8714896471518121)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.6791784514707125),(\\\"topic2\\\",0.32082154852928735)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8509047569221565),(\\\"topic2\\\",0.14909524307784347)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1285103528481879),(\\\"topic2\\\",0.8714896471518121)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.6791784514707125),(\\\"topic2\\\",0.32082154852928735)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8509047569221565),(\\\"topic2\\\",0.14909524307784347)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1285103528481879),(\\\"topic2\\\",0.8714896471518121)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.6791784514707125),(\\\"topic2\\\",0.32082154852928735)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8509047569221565),(\\\"topic2\\\",0.14909524307784347)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1285103528481879),(\\\"topic2\\\",0.8714896471518121)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.18895435275112443),(\\\"topic2\\\",0.8110456472488755)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.10735220295140778),(\\\"topic2\\\",0.8926477970485922)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1285103528481879),(\\\"topic2\\\",0.8714896471518121)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.4512829757824692),(\\\"topic2\\\",0.5487170242175309)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8642486394294454),(\\\"topic2\\\",0.13575136057055465)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1285103528481879),(\\\"topic2\\\",0.8714896471518121)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.4512829757824692),(\\\"topic2\\\",0.5487170242175309)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8642486394294454),(\\\"topic2\\\",0.13575136057055465)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1285103528481879),(\\\"topic2\\\",0.8714896471518121)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.4512829757824692),(\\\"topic2\\\",0.5487170242175309)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8642486394294454),(\\\"topic2\\\",0.13575136057055465)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1285103528481879),(\\\"topic2\\\",0.8714896471518121)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.4512829757824692),(\\\"topic2\\\",0.5487170242175309)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8642486394294454),(\\\"topic2\\\",0.13575136057055465)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1285103528481879),(\\\"topic2\\\",0.8714896471518121)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.4512829757824692),(\\\"topic2\\\",0.5487170242175309)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.9930888003417866),(\\\"topic2\\\",6.911199658213415e-3)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1285103528481879),(\\\"topic2\\\",0.8714896471518121)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.4512829757824692),(\\\"topic2\\\",0.5487170242175309)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.9930888003417866),(\\\"topic2\\\",6.911199658213415e-3)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1285103528481879),(\\\"topic2\\\",0.8714896471518121)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.4512829757824692),(\\\"topic2\\\",0.5487170242175309)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.9930888003417866),(\\\"topic2\\\",6.911199658213415e-3)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1285103528481879),(\\\"topic2\\\",0.8714896471518121)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.4512829757824692),(\\\"topic2\\\",0.5487170242175309)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.9930888003417866),(\\\"topic2\\\",6.911199658213415e-3)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1285103528481879),(\\\"topic2\\\",0.8714896471518121)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.4512829757824692),(\\\"topic2\\\",0.5487170242175309)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.9039948939737742),(\\\"topic2\\\",9.600510602622578e-2)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1285103528481879),(\\\"topic2\\\",0.8714896471518121)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.4512829757824692),(\\\"topic2\\\",0.5487170242175309)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35729424423731515),(\\\"topic2\\\",0.6427057557626848)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1285103528481879),(\\\"topic2\\\",0.8714896471518121)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.4512829757824692),(\\\"topic2\\\",0.5487170242175309)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35729424423731515),(\\\"topic2\\\",0.6427057557626848)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1285103528481879),(\\\"topic2\\\",0.8714896471518121)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.4512829757824692),(\\\"topic2\\\",0.5487170242175309)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35729424423731515),(\\\"topic2\\\",0.6427057557626848)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1285103528481879),(\\\"topic2\\\",0.8714896471518121)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.4512829757824692),(\\\"topic2\\\",0.5487170242175309)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35729424423731515),(\\\"topic2\\\",0.6427057557626848)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1285103528481879),(\\\"topic2\\\",0.8714896471518121)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.4512829757824692),(\\\"topic2\\\",0.5487170242175309)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35729424423731515),(\\\"topic2\\\",0.6427057557626848)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1285103528481879),(\\\"topic2\\\",0.8714896471518121)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.4512829757824692),(\\\"topic2\\\",0.5487170242175309)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.35729424423731515),(\\\"topic2\\\",0.6427057557626848)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.5808491374569021),(\\\"topic2\\\",0.4191508625430979)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.9446461959958755),(\\\"topic2\\\",5.535380400412449e-2)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.5808491374569021),(\\\"topic2\\\",0.4191508625430979)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.9446461959958755),(\\\"topic2\\\",5.535380400412449e-2)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.5808491374569021),(\\\"topic2\\\",0.4191508625430979)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8641637601451785),(\\\"topic2\\\",0.1358362398548215)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.5808491374569021),(\\\"topic2\\\",0.4191508625430979)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8641637601451785),(\\\"topic2\\\",0.1358362398548215)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.5808491374569021),(\\\"topic2\\\",0.4191508625430979)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8641637601451785),(\\\"topic2\\\",0.1358362398548215)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.323491635727712),(\\\"topic2\\\",0.676508364272288)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.9172894215885682),(\\\"topic2\\\",8.271057841143187e-2)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.323491635727712),(\\\"topic2\\\",0.676508364272288)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.9172894215885682),(\\\"topic2\\\",8.271057841143187e-2)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.323491635727712),(\\\"topic2\\\",0.676508364272288)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.7744969569641502),(\\\"topic2\\\",0.2255030430358497)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.323491635727712),(\\\"topic2\\\",0.676508364272288)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.7744969569641502),(\\\"topic2\\\",0.2255030430358497)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.323491635727712),(\\\"topic2\\\",0.676508364272288)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.7744969569641502),(\\\"topic2\\\",0.2255030430358497)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.323491635727712),(\\\"topic2\\\",0.676508364272288)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.6080285452173136),(\\\"topic2\\\",0.3919714547826863)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.323491635727712),(\\\"topic2\\\",0.676508364272288)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.6080285452173136),(\\\"topic2\\\",0.3919714547826863)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.323491635727712),(\\\"topic2\\\",0.676508364272288)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.6080285452173136),(\\\"topic2\\\",0.3919714547826863)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.323491635727712),(\\\"topic2\\\",0.676508364272288)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.6080285452173136),(\\\"topic2\\\",0.3919714547826863)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.323491635727712),(\\\"topic2\\\",0.676508364272288)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.6080285452173136),(\\\"topic2\\\",0.3919714547826863)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.3839328816817768),(\\\"topic2\\\",0.6160671183182231)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.5245975070005406),(\\\"topic2\\\",0.47540249299945947)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.3839328816817768),(\\\"topic2\\\",0.6160671183182231)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.5245975070005406),(\\\"topic2\\\",0.47540249299945947)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.3839328816817768),(\\\"topic2\\\",0.6160671183182231)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.5245975070005406),(\\\"topic2\\\",0.47540249299945947)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.3839328816817768),(\\\"topic2\\\",0.6160671183182231)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.5078739049652533),(\\\"topic2\\\",0.4921260950347467)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.3839328816817768),(\\\"topic2\\\",0.6160671183182231)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.5078739049652533),(\\\"topic2\\\",0.4921260950347467)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.3839328816817768),(\\\"topic2\\\",0.6160671183182231)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.5078739049652533),(\\\"topic2\\\",0.4921260950347467)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.3839328816817768),(\\\"topic2\\\",0.6160671183182231)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.5078739049652533),(\\\"topic2\\\",0.4921260950347467)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.3839328816817768),(\\\"topic2\\\",0.6160671183182231)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.5078739049652533),(\\\"topic2\\\",0.4921260950347467)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.3839328816817768),(\\\"topic2\\\",0.6160671183182231)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.5078739049652533),(\\\"topic2\\\",0.4921260950347467)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",9.298735878604396e-2),(\\\"topic2\\\",0.907012641213956)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.3839328816817768),(\\\"topic2\\\",0.6160671183182231)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.5078739049652533),(\\\"topic2\\\",0.4921260950347467)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.11200527806845688),(\\\"topic2\\\",0.8879947219315432)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.9445201216105829),(\\\"topic2\\\",5.5479878389417044e-2)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.5388215809473412),(\\\"topic2\\\",0.4611784190526587)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.11200527806845688),(\\\"topic2\\\",0.8879947219315432)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.9445201216105829),(\\\"topic2\\\",5.5479878389417044e-2)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.5388215809473412),(\\\"topic2\\\",0.4611784190526587)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.11200527806845688),(\\\"topic2\\\",0.8879947219315432)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.9445201216105829),(\\\"topic2\\\",5.5479878389417044e-2)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.33854346795237344),(\\\"topic2\\\",0.6614565320476266)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.11200527806845688),(\\\"topic2\\\",0.8879947219315432)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.9445201216105829),(\\\"topic2\\\",5.5479878389417044e-2)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.33854346795237344),(\\\"topic2\\\",0.6614565320476266)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.11200527806845688),(\\\"topic2\\\",0.8879947219315432)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.3143392883693011),(\\\"topic2\\\",0.685660711630699)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.7848587293144608),(\\\"topic2\\\",0.2151412706855392)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.47240464061393594),(\\\"topic2\\\",0.5275953593860641)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.11200527806845688),(\\\"topic2\\\",0.8879947219315432)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.3143392883693011),(\\\"topic2\\\",0.685660711630699)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.7848587293144608),(\\\"topic2\\\",0.2151412706855392)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.6507409151431025),(\\\"topic2\\\",0.34925908485689744)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1763598910823267),(\\\"topic2\\\",0.8236401089176733)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.7823253440734026),(\\\"topic2\\\",0.2176746559265975)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.9937415482106086),(\\\"topic2\\\",6.2584517893913665e-3)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.6507409151431025),(\\\"topic2\\\",0.34925908485689744)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1763598910823267),(\\\"topic2\\\",0.8236401089176733)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.7823253440734026),(\\\"topic2\\\",0.2176746559265975)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8008272802252768),(\\\"topic2\\\",0.19917271977472314)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.6507409151431025),(\\\"topic2\\\",0.34925908485689744)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1763598910823267),(\\\"topic2\\\",0.8236401089176733)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.7823253440734026),(\\\"topic2\\\",0.2176746559265975)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8008272802252768),(\\\"topic2\\\",0.19917271977472314)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.6507409151431025),(\\\"topic2\\\",0.34925908485689744)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.1763598910823267),(\\\"topic2\\\",0.8236401089176733)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.7823253440734026),(\\\"topic2\\\",0.2176746559265975)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8008272802252768),(\\\"topic2\\\",0.19917271977472314)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.6507409151431025),(\\\"topic2\\\",0.34925908485689744)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",6.015301862198376e-2),(\\\"topic2\\\",0.9398469813780163)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.6133192521509675),(\\\"topic2\\\",0.3866807478490325)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.7874320225653269),(\\\"topic2\\\",0.21256797743467318)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.6507409151431025),(\\\"topic2\\\",0.34925908485689744)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",6.015301862198376e-2),(\\\"topic2\\\",0.9398469813780163)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.6133192521509675),(\\\"topic2\\\",0.3866807478490325)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.7874320225653269),(\\\"topic2\\\",0.21256797743467318)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.6507409151431025),(\\\"topic2\\\",0.34925908485689744)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",6.015301862198376e-2),(\\\"topic2\\\",0.9398469813780163)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.6133192521509675),(\\\"topic2\\\",0.3866807478490325)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8058502581083504),(\\\"topic2\\\",0.19414974189164957)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.6507409151431025),(\\\"topic2\\\",0.34925908485689744)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",6.015301862198376e-2),(\\\"topic2\\\",0.9398469813780163)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.6133192521509675),(\\\"topic2\\\",0.3866807478490325)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8058502581083504),(\\\"topic2\\\",0.19414974189164957)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.6507409151431025),(\\\"topic2\\\",0.34925908485689744)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",6.015301862198376e-2),(\\\"topic2\\\",0.9398469813780163)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.6133192521509675),(\\\"topic2\\\",0.3866807478490325)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8058502581083504),(\\\"topic2\\\",0.19414974189164957)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.6507409151431025),(\\\"topic2\\\",0.34925908485689744)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",6.015301862198376e-2),(\\\"topic2\\\",0.9398469813780163)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.6133192521509675),(\\\"topic2\\\",0.3866807478490325)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8058502581083504),(\\\"topic2\\\",0.19414974189164957)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.6507409151431025),(\\\"topic2\\\",0.34925908485689744)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.11049756649934124),(\\\"topic2\\\",0.8895024335006588)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.707057945542015),(\\\"topic2\\\",0.29294205445798505)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.7950291577206223),(\\\"topic2\\\",0.20497084227937762)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.6507409151431025),(\\\"topic2\\\",0.34925908485689744)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.11049756649934124),(\\\"topic2\\\",0.8895024335006588)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.5034586205941756),(\\\"topic2\\\",0.49654137940582455)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",8.936715899518691e-2),(\\\"topic2\\\",0.9106328410048131)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.6507409151431025),(\\\"topic2\\\",0.34925908485689744)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.11049756649934124),(\\\"topic2\\\",0.8895024335006588)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.5034586205941756),(\\\"topic2\\\",0.49654137940582455)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",8.936715899518691e-2),(\\\"topic2\\\",0.9106328410048131)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.6507409151431025),(\\\"topic2\\\",0.34925908485689744)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.11049756649934124),(\\\"topic2\\\",0.8895024335006588)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.32075379988749575),(\\\"topic2\\\",0.6792462001125041)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8836485209177353),(\\\"topic2\\\",0.11635147908226473)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.6507409151431025),(\\\"topic2\\\",0.34925908485689744)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.11049756649934124),(\\\"topic2\\\",0.8895024335006588)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.32075379988749575),(\\\"topic2\\\",0.6792462001125041)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8836485209177353),(\\\"topic2\\\",0.11635147908226473)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.6507409151431025),(\\\"topic2\\\",0.34925908485689744)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.11049756649934124),(\\\"topic2\\\",0.8895024335006588)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.32075379988749575),(\\\"topic2\\\",0.6792462001125041)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8836485209177353),(\\\"topic2\\\",0.11635147908226473)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.6507409151431025),(\\\"topic2\\\",0.34925908485689744)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.11049756649934124),(\\\"topic2\\\",0.8895024335006588)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.32075379988749575),(\\\"topic2\\\",0.6792462001125041)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8836485209177353),(\\\"topic2\\\",0.11635147908226473)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.6507409151431025),(\\\"topic2\\\",0.34925908485689744)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.11049756649934124),(\\\"topic2\\\",0.8895024335006588)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.32075379988749575),(\\\"topic2\\\",0.6792462001125041)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8836485209177353),(\\\"topic2\\\",0.11635147908226473)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.6507409151431025),(\\\"topic2\\\",0.34925908485689744)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.11049756649934124),(\\\"topic2\\\",0.8895024335006588)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.32075379988749575),(\\\"topic2\\\",0.6792462001125041)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.8836485209177353),(\\\"topic2\\\",0.11635147908226473)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.5126775929912853),(\\\"wolf\\\",9.583969035940434e-2),(\\\"python\\\",0.11063230119114982),(\\\"prolog\\\",0.28085041545816053)]),(\\\"topic2\\\",[(\\\"bear\\\",0.1948611183111976),(\\\"wolf\\\",0.5036273719863957),(\\\"python\\\",0.14809948543424897),(\\\"prolog\\\",0.15341202426815767)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6530116082745558),(\\\"topic2\\\",0.34698839172544416)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.6507409151431025),(\\\"topic2\\\",0.34925908485689744)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.11049756649934124),(\\\"topic2\\\",0.8895024335006588)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.32075379988749575),(\\\"topic2\\\",0.6792462001125041)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",0.7404063685886478),(\\\"topic2\\\",0.25959363141135217)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.22414695309814184),(\\\"wolf\\\",0.36397967833281775),(\\\"python\\\",3.543477605736618e-2),(\\\"prolog\\\",0.37643859251167416)]),(\\\"topic2\\\",[(\\\"bear\\\",0.41133940400109575),(\\\"wolf\\\",0.13799674144155313),(\\\"python\\\",0.26930098135747826),(\\\"prolog\\\",0.18136287319987282)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6967249670088582),(\\\"topic2\\\",0.3032750329911418)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.4608178279094073),(\\\"topic2\\\",0.5391821720905928)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.856205109713736),(\\\"topic2\\\",0.14379489028626394)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.25991281762756324),(\\\"topic2\\\",0.7400871823724368)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",3.242694194982843e-2),(\\\"topic2\\\",0.9675730580501716)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.22414695309814184),(\\\"wolf\\\",0.36397967833281775),(\\\"python\\\",3.543477605736618e-2),(\\\"prolog\\\",0.37643859251167416)]),(\\\"topic2\\\",[(\\\"bear\\\",0.41133940400109575),(\\\"wolf\\\",0.13799674144155313),(\\\"python\\\",0.26930098135747826),(\\\"prolog\\\",0.18136287319987282)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6967249670088582),(\\\"topic2\\\",0.3032750329911418)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.4608178279094073),(\\\"topic2\\\",0.5391821720905928)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.856205109713736),(\\\"topic2\\\",0.14379489028626394)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.25991281762756324),(\\\"topic2\\\",0.7400871823724368)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",3.242694194982843e-2),(\\\"topic2\\\",0.9675730580501716)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.22414695309814184),(\\\"wolf\\\",0.36397967833281775),(\\\"python\\\",3.543477605736618e-2),(\\\"prolog\\\",0.37643859251167416)]),(\\\"topic2\\\",[(\\\"bear\\\",0.41133940400109575),(\\\"wolf\\\",0.13799674144155313),(\\\"python\\\",0.26930098135747826),(\\\"prolog\\\",0.18136287319987282)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6967249670088582),(\\\"topic2\\\",0.3032750329911418)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.4608178279094073),(\\\"topic2\\\",0.5391821720905928)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.856205109713736),(\\\"topic2\\\",0.14379489028626394)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.25991281762756324),(\\\"topic2\\\",0.7400871823724368)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",3.242694194982843e-2),(\\\"topic2\\\",0.9675730580501716)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.22414695309814184),(\\\"wolf\\\",0.36397967833281775),(\\\"python\\\",3.543477605736618e-2),(\\\"prolog\\\",0.37643859251167416)]),(\\\"topic2\\\",[(\\\"bear\\\",0.41133940400109575),(\\\"wolf\\\",0.13799674144155313),(\\\"python\\\",0.26930098135747826),(\\\"prolog\\\",0.18136287319987282)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6967249670088582),(\\\"topic2\\\",0.3032750329911418)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.4608178279094073),(\\\"topic2\\\",0.5391821720905928)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.856205109713736),(\\\"topic2\\\",0.14379489028626394)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.25991281762756324),(\\\"topic2\\\",0.7400871823724368)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",3.242694194982843e-2),(\\\"topic2\\\",0.9675730580501716)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.22414695309814184),(\\\"wolf\\\",0.36397967833281775),(\\\"python\\\",3.543477605736618e-2),(\\\"prolog\\\",0.37643859251167416)]),(\\\"topic2\\\",[(\\\"bear\\\",0.41133940400109575),(\\\"wolf\\\",0.13799674144155313),(\\\"python\\\",0.26930098135747826),(\\\"prolog\\\",0.18136287319987282)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6967249670088582),(\\\"topic2\\\",0.3032750329911418)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.4608178279094073),(\\\"topic2\\\",0.5391821720905928)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.856205109713736),(\\\"topic2\\\",0.14379489028626394)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.25991281762756324),(\\\"topic2\\\",0.7400871823724368)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",3.242694194982843e-2),(\\\"topic2\\\",0.9675730580501716)])])\",6.62470063222773e-33),(\"(fromList [(\\\"topic1\\\",[(\\\"bear\\\",0.22414695309814184),(\\\"wolf\\\",0.36397967833281775),(\\\"python\\\",3.543477605736618e-2),(\\\"prolog\\\",0.37643859251167416)]),(\\\"topic2\\\",[(\\\"bear\\\",0.41133940400109575),(\\\"wolf\\\",0.13799674144155313),(\\\"python\\\",0.26930098135747826),(\\\"prolog\\\",0.18136287319987282)])],[(\\\"bear prolog prolog wolf prolog bear wolf bear bear prolog\\\",[(\\\"topic1\\\",0.6967249670088582),(\\\"topic2\\\",0.3032750329911418)]),(\\\"wolf prolog bear wolf wolf python bear bear wolf bear\\\",[(\\\"topic1\\\",0.4608178279094073),(\\\"topic2\\\",0.5391821720905928)]),(\\\"wolf prolog wolf wolf wolf wolf prolog python python bear\\\",[(\\\"topic1\\\",0.856205109713736),(\\\"topic2\\\",0.14379489028626394)]),(\\\"bear prolog prolog bear wolf bear python wolf prolog wolf\\\",[(\\\"topic1\\\",0.25991281762756324),(\\\"topic2\\\",0.7400871823724368)]),(\\\"bear bear prolog bear python bear wolf python prolog prolog\\\",[(\\\"topic1\\\",3.242694194982843e-2),(\\\"topic2\\\",0.9675730580501716)])])\",6.62470063222773e-33)]"
  },
  {
    "path": "test/fixtures/LR10-MH.txt",
    "content": "[\"2.950544941215132e-6\",\"2.950544941215132e-6\",\"2.950544941215132e-6\",\"2.950544941215132e-6\",\"2.950544941215132e-6\",\"2.950544941215132e-6\",\"2.950544941215132e-6\",\"2.950544941215132e-6\",\"2.950544941215132e-6\",\"2.950544941215132e-6\",\"2.950544941215132e-6\",\"2.950544941215132e-6\",\"4.417248310074391e-5\",\"4.417248310074391e-5\",\"4.417248310074391e-5\",\"4.417248310074391e-5\",\"4.417248310074391e-5\",\"4.417248310074391e-5\",\"4.417248310074391e-5\",\"4.417248310074391e-5\",\"3.542845305464785e-4\",\"3.542845305464785e-4\",\"3.542845305464785e-4\",\"3.542845305464785e-4\",\"3.542845305464785e-4\",\"3.542845305464785e-4\",\"3.542845305464785e-4\",\"3.542845305464785e-4\",\"3.542845305464785e-4\",\"3.542845305464785e-4\",\"1.283996726025695e-6\",\"5.8758436338617424e-6\",\"5.8758436338617424e-6\",\"5.8758436338617424e-6\",\"5.8758436338617424e-6\",\"5.8758436338617424e-6\",\"5.8758436338617424e-6\",\"5.8758436338617424e-6\",\"5.8758436338617424e-6\",\"5.8758436338617424e-6\",\"5.8758436338617424e-6\",\"5.8758436338617424e-6\",\"5.8758436338617424e-6\",\"5.8758436338617424e-6\",\"0.21036341524185248\",\"0.21036341524185248\",\"0.21036341524185248\",\"0.11759542598406439\",\"0.11759542598406439\",\"0.11759542598406439\",\"0.11759542598406439\",\"0.11759542598406439\",\"0.11759542598406439\",\"4.7312512236572256e-2\",\"4.7312512236572256e-2\",\"4.7312512236572256e-2\",\"4.7312512236572256e-2\",\"0.4947233726255189\",\"0.4947233726255189\",\"0.38932500660802716\",\"0.38932500660802716\",\"0.38932500660802716\",\"0.38932500660802716\",\"0.7207054705150296\",\"0.6553804082004575\",\"0.6553804082004575\",\"0.6553804082004575\",\"0.6553804082004575\",\"0.8884089778243283\",\"0.8884089778243283\",\"0.8884089778243283\",\"7.972233473120037e-3\",\"7.972233473120037e-3\",\"7.972233473120037e-3\",\"7.972233473120037e-3\",\"7.972233473120037e-3\",\"7.972233473120037e-3\",\"7.972233473120037e-3\",\"7.972233473120037e-3\",\"7.972233473120037e-3\",\"0.9255022758580312\",\"0.6388734801405944\",\"2.2127051202286738e-5\",\"2.2127051202286738e-5\",\"5.340807350374084e-6\",\"5.340807350374084e-6\",\"5.340807350374084e-6\",\"5.340807350374084e-6\",\"5.340807350374084e-6\",\"5.340807350374084e-6\",\"5.340807350374084e-6\",\"5.340807350374084e-6\",\"5.340807350374084e-6\",\"5.181558495552509e-6\",\"5.181558495552509e-6\",\"5.1274144757719514e-6\",\"5.1274144757719514e-6\",\"5.1274144757719514e-6\",\"5.1274144757719514e-6\",\"5.1274144757719514e-6\",\"5.1274144757719514e-6\"]"
  },
  {
    "path": "test/fixtures/LR10-RMSMC.txt",
    "content": "[(\"5.333997036871341e-6\",6.253483531321334e-5),(\"4.7394126422869915e-6\",6.253483531321334e-5),(\"7.798412010176118e-6\",6.253483531321334e-5),(\"3.6537314189667804e-3\",6.253483531321334e-5),(\"2.8719951155583437e-3\",6.253483531321334e-5),(\"8.106430574751586e-3\",6.253483531321334e-5),(\"0.8083297132912659\",6.253483531321334e-5),(\"0.3178833271596258\",6.253483531321334e-5),(\"0.3487591395231385\",6.253483531321334e-5),(\"2.027192522287899e-2\",6.253483531321334e-5)]"
  },
  {
    "path": "test/fixtures/LR10-SMC.txt",
    "content": "[(\"2.324831917751426e-5\",8.615785653338886e-6),(\"4.0753397495054896e-8\",8.615785653338886e-6),(\"7.274125904873279e-9\",8.615785653338886e-6),(\"1.3743372716534289e-5\",8.615785653338886e-6),(\"4.254983717992536e-6\",8.615785653338886e-6),(\"1.2272127506266697e-6\",8.615785653338886e-6),(\"1.214022726807993e-7\",8.615785653338886e-6),(\"8.847449654106116e-8\",8.615785653338886e-6),(\"1.6000818494452112e-3\",8.615785653338886e-6),(\"2.0279043319035277e-3\",8.615785653338886e-6),(\"3.5018249880037834e-5\",8.615785653338886e-6),(\"0.16426780827561477\",8.615785653338886e-6),(\"0.10773403426050324\",8.615785653338886e-6),(\"0.3304703458482792\",8.615785653338886e-6),(\"0.10913515995295375\",8.615785653338886e-6),(\"3.8113707417415554e-7\",8.615785653338886e-6),(\"1.1707029254682367e-4\",8.615785653338886e-6),(\"2.047893831024706e-3\",8.615785653338886e-6),(\"1.8725448138433734e-3\",8.615785653338886e-6),(\"6.053601828693627e-2\",8.615785653338886e-6),(\"0.1757594676547173\",8.615785653338886e-6),(\"1.3511280746237259e-3\",8.615785653338886e-6),(\"0.23723482733424164\",8.615785653338886e-6),(\"0.16151469556914314\",8.615785653338886e-6),(\"7.191080175022858e-3\",8.615785653338886e-6),(\"1.6108325498387603e-7\",8.615785653338886e-6),(\"1.6659054333722745e-7\",8.615785653338886e-6),(\"4.28535218704211e-4\",8.615785653338886e-6),(\"4.305836021545625e-4\",8.615785653338886e-6),(\"4.7576965500979653e-4\",8.615785653338886e-6),(\"4.4539756971784895e-4\",8.615785653338886e-6),(\"3.96355147105004e-4\",8.615785653338886e-6),(\"2.91792488057767e-3\",8.615785653338886e-6),(\"0.1387157529569227\",8.615785653338886e-6),(\"0.12679393576798442\",8.615785653338886e-6),(\"0.23010548225976238\",8.615785653338886e-6),(\"0.25223594655800285\",8.615785653338886e-6),(\"6.97387528630698e-5\",8.615785653338886e-6),(\"9.333831289852731e-5\",8.615785653338886e-6),(\"8.375626668711192e-5\",8.615785653338886e-6),(\"1.5213683176568195e-2\",8.615785653338886e-6),(\"3.5712314627571923e-4\",8.615785653338886e-6),(\"7.636217014509781e-4\",8.615785653338886e-6),(\"2.0872090258618442e-4\",8.615785653338886e-6),(\"5.196909883379355e-4\",8.615785653338886e-6),(\"5.701798151154428e-4\",8.615785653338886e-6),(\"5.093049208576314e-4\",8.615785653338886e-6),(\"1.4278233878183234e-2\",8.615785653338886e-6),(\"0.409063870280768\",8.615785653338886e-6),(\"2.413899012911671e-2\",8.615785653338886e-6),(\"4.9820455672153804e-2\",8.615785653338886e-6),(\"2.3987373289798696e-3\",8.615785653338886e-6),(\"2.3730997104438635e-3\",8.615785653338886e-6),(\"1.5421674679073712e-2\",8.615785653338886e-6),(\"6.127942201533583e-4\",8.615785653338886e-6),(\"0.29100637723657274\",8.615785653338886e-6),(\"6.466851911961999e-4\",8.615785653338886e-6),(\"6.899429519546635e-4\",8.615785653338886e-6),(\"6.796536628553891e-4\",8.615785653338886e-6),(\"1.5687561944396283e-2\",8.615785653338886e-6),(\"1.0114194783259966e-2\",8.615785653338886e-6),(\"8.650936462496627e-4\",8.615785653338886e-6),(\"8.659503706938266e-4\",8.615785653338886e-6),(\"0.9866480964309671\",8.615785653338886e-6),(\"0.9844641052458803\",8.615785653338886e-6),(\"0.9877580766923669\",8.615785653338886e-6),(\"0.3570814146622049\",8.615785653338886e-6),(\"0.3333232242467457\",8.615785653338886e-6),(\"0.28788395991944565\",8.615785653338886e-6),(\"0.6235083846866266\",8.615785653338886e-6),(\"2.9830083243998794e-2\",8.615785653338886e-6),(\"0.6715098168079819\",8.615785653338886e-6),(\"0.5092770566793119\",8.615785653338886e-6),(\"0.14931145218944078\",8.615785653338886e-6),(\"0.9476390701984468\",8.615785653338886e-6),(\"0.19844654340805706\",8.615785653338886e-6),(\"0.8692525556246279\",8.615785653338886e-6),(\"0.2857288027412788\",8.615785653338886e-6),(\"0.9128866108374706\",8.615785653338886e-6),(\"0.5972931052418653\",8.615785653338886e-6),(\"3.185136062093685e-2\",8.615785653338886e-6),(\"0.7815143883956358\",8.615785653338886e-6),(\"9.045285261453962e-4\",8.615785653338886e-6),(\"1.0570963598552236e-4\",8.615785653338886e-6),(\"0.9988704519081596\",8.615785653338886e-6),(\"0.9983306238100842\",8.615785653338886e-6),(\"0.999817180959221\",8.615785653338886e-6),(\"0.999632323087958\",8.615785653338886e-6),(\"0.9978593357863148\",8.615785653338886e-6),(\"0.9932458970319142\",8.615785653338886e-6),(\"0.9997633989820984\",8.615785653338886e-6),(\"0.25474879877870016\",8.615785653338886e-6),(\"0.12254684366442331\",8.615785653338886e-6),(\"6.952221863096741e-2\",8.615785653338886e-6),(\"0.38421927032809844\",8.615785653338886e-6),(\"0.13255536658985864\",8.615785653338886e-6),(\"0.1506084845751688\",8.615785653338886e-6),(\"0.3502412842110343\",8.615785653338886e-6),(\"1.28565002377979e-2\",8.615785653338886e-6),(\"0.3782237084074611\",8.615785653338886e-6)]"
  },
  {
    "path": "test/fixtures/SSM-PMMH.txt",
    "content": "[[([74405.69500410178,143777.3515026691,195290.64675632896,483878.28639985673,600603.4104497777],1.0),([74405.69500410178,143777.3515026691,195290.64675632896,483878.28639985673,600603.4104497777],1.0),([74405.69500410178,143777.3515026691,195290.64675632896,483878.28639985673,600603.4104497777],1.0)],[([157620.04097610444,26661.523636563594,321204.4219216401,421274.0528523404,487363.3134055787],1.0),([157620.04097610444,26661.523636563594,321204.4219216401,421274.0528523404,487363.3134055787],1.0),([157620.04097610444,26661.523636563594,321204.4219216401,421274.0528523404,487363.3134055787],1.0)],[([-1.2600621067470811e67,-1.3171618074660135e67,3.55155213532486e66,-9.486041679240111e66,-1.4476178361450074e67],1.0),([-1.2600621067470811e67,-1.3171618074660135e67,3.55155213532486e66,-9.486041679240111e66,-1.4476178361450074e67],1.0),([-1.2600621067470811e67,-1.3171618074660135e67,3.55155213532486e66,-9.486041679240111e66,-1.4476178361450074e67],1.0)]]"
  },
  {
    "path": "test/fixtures/SSM-RMSMC.txt",
    "content": "[([-2.660097878548362e12,4.2406657192899927e11,5.124397279021509e11,-1.5388049692223555e12,5.100591467413694e11],1.7934178371940385e-141),([85360.89249769927,82937.71043376798,236528.18865034508,184344.32920611685,257818.8194711436],1.7934178371940385e-141),([111456.98861817457,175718.5311026478,-123025.40752936345,-216315.66615773254,-216313.3788230968],1.7934178371940385e-141),([19634.90868499715,3982.228157420627,71064.25154723959,-61863.47069790381,-124170.21806752698],1.7934178371940385e-141),([-1.5475119433556266e13,7.505784271326075e13,1.8087989772377637e13,2.3121907140178836e13,6.957846697896459e13],1.7934178371940385e-141),([3.3114425601587117e13,-7.174858488587559e12,-5.3895766067097984e13,-5.574198391310134e13,-7.085806871739197e13],1.7934178371940385e-141),([1.7797637411011798e9,2.257078068208236e9,1.7822875201019692e9,-3.1059378475534713e8,-2.022387835329388e8],1.7934178371940385e-141),([-362.4859209624216,597.209862141266,354.2417236032639,699.0287190356412,-719.9079388224256],1.7934178371940385e-141),([-6962602.171312882,4072501.6094401204,-1935864.3227236385,6378383.05623946,2107530.9972696295],1.7934178371940385e-141),([535.0932822165735,229.4681249747279,-318.4034398226934,-425.6731795563692,-736.158075205745],1.7934178371940385e-141)]"
  },
  {
    "path": "test/fixtures/SSM-RMSMCBasic.txt",
    "content": "[([-2.660097878548362e12,4.2406657192899927e11,5.124397279021509e11,-1.5388049692223555e12,5.100591467413694e11],1.7934178371940385e-141),([85360.89249769927,82937.71043376798,236528.18865034508,184344.32920611685,257818.8194711436],1.7934178371940385e-141),([111456.98861817457,175718.5311026478,-123025.40752936345,-216315.66615773254,-216313.3788230968],1.7934178371940385e-141),([19634.90868499715,3982.228157420627,71064.25154723959,-61863.47069790381,-124170.21806752698],1.7934178371940385e-141),([-1.5475119433556266e13,7.505784271326075e13,1.8087989772377637e13,2.3121907140178836e13,6.957846697896459e13],1.7934178371940385e-141),([3.3114425601587117e13,-7.174858488587559e12,-5.3895766067097984e13,-5.574198391310134e13,-7.085806871739197e13],1.7934178371940385e-141),([1.7797637411011798e9,2.257078068208236e9,1.7822875201019692e9,-3.1059378475534713e8,-2.022387835329388e8],1.7934178371940385e-141),([-362.4859209624216,597.209862141266,354.2417236032639,699.0287190356412,-719.9079388224256],1.7934178371940385e-141),([-6962602.171312882,4072501.6094401204,-1935864.3227236385,6378383.05623946,2107530.9972696295],1.7934178371940385e-141),([535.0932822165735,229.4681249747279,-318.4034398226934,-425.6731795563692,-736.158075205745],1.7934178371940385e-141)]"
  },
  {
    "path": "test/fixtures/SSM-RMSMCDynamic.txt",
    "content": "[([61234.923743603955,79039.83817954235,354024.81636628765,225755.73057039993,-78843.37322818518],0.0),([61234.923743603955,-205024.66324964678,-438520.7645656072,-526045.6062936985,17959.08713788638],0.0),([61234.923743603955,130707.33129683959,260276.7204227042,538891.1815485102,432537.1717560617],0.0),([61234.923743603955,425968.16738967673,72802.89417099475,97062.29318414515,-90904.59187690681],0.0),([61234.923743603955,-80888.00179367141,122235.67304475381,48742.27626015559,-149682.32933231423],0.0),([61234.923743603955,43.833902800088254,-417728.0201965655,49565.634594935604,-303943.3354524304],0.0),([61234.923743603955,350501.69936972257,118986.06426751378,99950.78931739656,-60488.53431816819],0.0),([61234.923743603955,-117376.5868812376,116017.94360094423,378976.39475725644,74865.6296219704],0.0),([61234.923743603955,156368.9791422615,-586653.2615030725,-238480.82081038723,51581.15175237715],0.0),([61234.923743603955,-150776.59937461224,-30862.03908288705,200382.13919586508,-107135.36343350058],0.0)]"
  },
  {
    "path": "test/fixtures/SSM-SMC.txt",
    "content": "[([-1.6946443595984358e8,-2.0398900541476977e8,5.988104418627801e8,5.186441087015647e7,-1.1107580460544899e9],3.747925572660412e-147),([-1.6946443595984358e8,1.762322765772586e8,1.3143034131110222e9,2.917359439754021e7,-4.678360689283452e8],3.747925572660412e-147),([-1.6946443595984358e8,-4.978125179866476e8,-6.568379081060445e8,-1.0039010467494124e9,-4.5194462919398534e8],3.747925572660412e-147),([-1.6946443595984358e8,-2.0398900541476977e8,6.65407483202134e8,-1.3610874802534976e9,1.7804869696064534e9],3.747925572660412e-147),([-1.6946443595984358e8,-4.978125179866476e8,-6.568379081060445e8,-1.0039010467494124e9,-4.5194462919398534e8],3.747925572660412e-147),([-1.6946443595984358e8,-7.848111477226721e8,-1.536250656089418e9,-1.2593852525318892e9,9.33478070563457e8],3.747925572660412e-147),([-1.6946443595984358e8,1.762322765772586e8,1.3143034131110222e9,2.917359439754021e7,-4.678360689283452e8],3.747925572660412e-147),([-1.6946443595984358e8,-4.978125179866476e8,-6.568379081060445e8,7.201669253635451e8,-6.528627637915363e8],3.747925572660412e-147),([-1.6946443595984358e8,-4.978125179866476e8,-6.568379081060445e8,7.201669253635451e8,-6.528627637915363e8],3.747925572660412e-147),([-1.6946443595984358e8,-7.848111477226721e8,-1.536250656089418e9,-1.2593852525318892e9,9.33478070563457e8],3.747925572660412e-147)]"
  },
  {
    "path": "test/fixtures/SSM-SMC2.txt",
    "content": "[([([-9090.483553160731,-18364.240866577857,38447.317849110055,-3829.950678281628,-18689.938602553048],0.3333333333333341),([-9090.483553160731,-18364.240866577857,38447.317849110055,-3829.950678281628,-18689.938602553048],0.3333333333333341),([-9090.483553160731,-18364.240866577857,38447.317849110055,25131.836867847727,47603.03068211828],0.3333333333333341)],9.474658864966518e-180),([([-2.2418721864335723e9,2.4219211687208967e9,5.4463793547824545e9,7.074651672385337e8,2.595090695345872e8],0.3333333333333341),([-2.2418721864335723e9,2.4219211687208967e9,5.4463793547824545e9,7.074651672385337e8,2.595090695345872e8],0.3333333333333341),([-2.2418721864335723e9,2.4219211687208967e9,5.4463793547824545e9,7.074651672385337e8,2.595090695345872e8],0.3333333333333341)],9.474658864966518e-180)]"
  }
]